diff --git a/batch-tool/docs/usage-details.md b/batch-tool/docs/usage-details.md index b79f905..a5b0361 100644 --- a/batch-tool/docs/usage-details.md +++ b/batch-tool/docs/usage-details.md @@ -3,11 +3,11 @@ * [数据库表导出](#数据库表导出) * [数据库表导入](#数据库表导入) * [使用yaml配置](#使用yaml配置) + * [TPC-H数据集](#TPC-H数据集) * [常见问题排查](#常见问题排查) - -# 常见导入导出场景 +# 常见使用场景 以下省略 `java -jar batch-tool.jar -h 127.0.0.1 -u polardbx_root -p "123456" -P 8527` 等数据库连接信息配置 ,仅展示命令行功能参数的设置 ## 数据库表导出 @@ -103,6 +103,17 @@ c_custkey|c_name|c_address|c_nationkey|c_phone|c_acctbal|c_mktsegment|c_comment ### 导入Excel文件 `-D sbtest_auto -o import -s , -t "sbtest1" -format XLSX -f "sbtest1_0.xlsx"` +### 导入TPC-H数据集 + +`-D tpch_auto -o import -benchmark TPCH -scale 100` +> 1. 使用 -scale 指定导入数据集的规模,单位:G +> 2. 可以使用 -t "lineitem;orders" 来指定表进行导入 + +### 更新TPC-H数据集 + +`-D tpch_auto -o update -benchmark TPCH -scale 100 -F 3` +> 1. 使用 -F 来指定更新的轮数 + ## 使用yaml配置 当有很多配置项需要设置时,使用命令行参数会很不方便编辑,此时建议使用yaml格式的配置文件,示例如下: @@ -134,6 +145,29 @@ mask: >- 如果配置值包含[yaml特殊字符](https://yaml.org/spec/1.2.2/#53-indicator-characters)的话, 需要用引号括起来。 +## TPC-H数据集 + +### 导入 TPC-H + +`-o import -benchmark tpch -scale ${规格}` + +其中规格的单位为GB,比如要导入 TPC-H 100G,则输入`-scale 100`。 + +根据经验来看,当数据库不成为瓶颈的时候,4C16G的客户端配置可以在30分钟内完成 TPC-H 100G 的导入 +(使用参数`-pro 1 -con 80 -ringsize 8192 -minConn 81 -maxConn 81 -batchSize 500`)。 + +### 更新 TPC-H + +` -o update -benchmark tpch -scale ${规格} -F ${更新轮数} ` + +可以通过设置 并发数 和 BatchSize 来对更新性能进行调优。 + +### 回滚 TPC-H 更新 + +` -o delete -benchmark tpch -scale ${规格} -F ${回滚轮数} ` + +回滚轮数需要与之前更新轮数一致,且确保之前的更新已完整执行 + # 常见问题排查 1. 报错 **the server time zone value '' is unrecognized** @@ -207,3 +241,14 @@ mask: >- **解决**:Linux系统上,可以通过`locale`命令查看编码; 如果是数据库`character_set_server`变量的问题,BatchTool可以加上`-connParam "useUnicode=true&characterEncoding=utf-8"` +12. 使用`-con`指定了消费者线程数不生效 + + **原因**:消费者线程数会设置为`-con`和CPU核数的最大值 + + **解决**:当前可通过`-fcon`参数强制设置消费者线程数;后续可能会修改这个行为 + +13. 导出视图的相关问题 + + **原因**:BatchTool 在 v1.4.0 以前的版本,在导出整库时会默认导出所有表和视图的数据,无法控制是否导出视图 + + **解决**:自v1.4.0开始,可指定参数`-withView true`来导出视图数据 diff --git a/batch-tool/pom.xml b/batch-tool/pom.xml index 8684037..13246ca 100644 --- a/batch-tool/pom.xml +++ b/batch-tool/pom.xml @@ -6,7 +6,7 @@ com.alibaba.polardbx batch-tool - 1.3.7 + 1.4.0 UTF-8 diff --git a/batch-tool/src/main/java/BatchTool.java b/batch-tool/src/main/java/BatchTool.java index 90a66cc..671fdd2 100644 --- a/batch-tool/src/main/java/BatchTool.java +++ b/batch-tool/src/main/java/BatchTool.java @@ -74,6 +74,9 @@ public void doBatchOp(BaseOperateCommand command, DataSourceConfig dataSourceCon } finally { commandExecutor.close(); } + if (commandExecutor.hasFatalException()) { + throw new RuntimeException("Fatal exception occurred during batch operation."); + } } private void addHooks() { diff --git a/batch-tool/src/main/java/BatchToolLauncher.java b/batch-tool/src/main/java/BatchToolLauncher.java index d600509..779f163 100644 --- a/batch-tool/src/main/java/BatchToolLauncher.java +++ b/batch-tool/src/main/java/BatchToolLauncher.java @@ -45,7 +45,7 @@ public static void main(String[] args) { handleCmd(commandLine); } catch (Throwable e) { // 主线程异常 - logger.error(e.getMessage(), e); + logger.error(e.getMessage()); System.exit(1); } } diff --git a/batch-tool/src/main/java/cmd/CommandUtil.java b/batch-tool/src/main/java/cmd/CommandUtil.java index 0ef7fb3..891b2de 100644 --- a/batch-tool/src/main/java/cmd/CommandUtil.java +++ b/batch-tool/src/main/java/cmd/CommandUtil.java @@ -118,6 +118,7 @@ import static cmd.FlagOption.ARG_SHORT_WITH_HEADER; import static cmd.FlagOption.ARG_SHORT_WITH_LAST_SEP; import static cmd.FlagOption.ARG_TRIM_RIGHT; +import static cmd.FlagOption.ARG_WITH_VIEW; /** * 从命令行输入解析配置 @@ -239,7 +240,10 @@ private static int getMinConnNum(ConfigResult result) { if (result.hasOption(ARG_SHORT_MIN_CONN_NUM)) { return Integer.parseInt(result.getOptionValue(ARG_SHORT_MIN_CONN_NUM)); } else { - return DatasourceConstant.MIN_CONN_NUM; + int pro = getProducerParallelism(result); + int con = getConsumerParallelism(result); + int maxParallelism = Math.max(pro, con); + return Math.min(maxParallelism + 1, DatasourceConstant.MIN_CONN_NUM); } } @@ -332,23 +336,31 @@ private static BaseOperateCommand parseImportCommand(ConfigResult result) { } private static BaseOperateCommand parseDeleteCommand(ConfigResult result) { - requireOnlyOneArg(result, ARG_SHORT_FROM_FILE, ARG_SHORT_DIRECTORY); + requireOnlyOneArg(result, ARG_SHORT_FROM_FILE, ARG_SHORT_DIRECTORY, ARG_SHORT_BENCHMARK); ProducerExecutionContext producerExecutionContext = new ProducerExecutionContext(); ConsumerExecutionContext consumerExecutionContext = new ConsumerExecutionContext(); configureCommonContext(result, producerExecutionContext, consumerExecutionContext); + if (producerExecutionContext.getBenchmarkMode() == BenchmarkMode.TPCH) { + setUpdateBatchSize(result); + } + consumerExecutionContext.setWhereCondition(getWhereCondition(result)); return new DeleteCommand(getDbName(result), producerExecutionContext, consumerExecutionContext); } private static BaseOperateCommand parseUpdateCommand(ConfigResult result) { - requireOnlyOneArg(result, ARG_SHORT_FROM_FILE, ARG_SHORT_DIRECTORY); + requireOnlyOneArg(result, ARG_SHORT_FROM_FILE, ARG_SHORT_DIRECTORY, ARG_SHORT_BENCHMARK); ProducerExecutionContext producerExecutionContext = new ProducerExecutionContext(); ConsumerExecutionContext consumerExecutionContext = new ConsumerExecutionContext(); configureCommonContext(result, producerExecutionContext, consumerExecutionContext); + if (producerExecutionContext.getBenchmarkMode() == BenchmarkMode.TPCH) { + setUpdateBatchSize(result); + } + consumerExecutionContext.setWhereCondition(getWhereCondition(result)); consumerExecutionContext.setFuncSqlForUpdateEnabled(getFuncEnabled(result)); return new UpdateCommand(getDbName(result), producerExecutionContext, consumerExecutionContext); @@ -403,6 +415,10 @@ private static boolean getWithLastSep(ConfigResult result) { return result.getBooleanFlag(ARG_SHORT_WITH_LAST_SEP); } + private static boolean getWithView(ConfigResult result) { + return result.getBooleanFlag(ARG_WITH_VIEW); + } + private static boolean getEmptyAsNull(ConfigResult result) { return result.getBooleanFlag(ARG_EMPTY_AS_NULL); } @@ -439,6 +455,7 @@ private static ExportCommand parseExportCommand(ConfigResult result) { exportConfig.setParallelism(getProducerParallelism(result)); exportConfig.setQuoteEncloseMode(getQuoteEncloseMode(result)); exportConfig.setWithLastSep(getWithLastSep(result)); + exportConfig.setWithView(getWithView(result)); setDir(result, exportConfig); setFilenamePrefix(result, exportConfig); setFileNum(result, exportConfig); @@ -553,6 +570,12 @@ private static void configureGlobalVar(ConfigResult result) { setPerfMode(result); } + private static void setUpdateBatchSize(ConfigResult result) { + if (result.hasOption(ARG_SHORT_BATCH_SIZE)) { + GlobalVar.setTpchUpdateBatchSize(Integer.parseInt(result.getOptionValue(ARG_SHORT_BATCH_SIZE))); + } + } + /** * 配置生产者 */ @@ -571,6 +594,7 @@ private static void configureProducerContext(ConfigResult result, producerExecutionContext.setParallelism(getProducerParallelism(result)); producerExecutionContext.setReadBlockSizeInMb(getReadBlockSizeInMb(result)); producerExecutionContext.setWithHeader(getWithHeader(result)); + producerExecutionContext.setWithView(getWithView(result)); producerExecutionContext.setCompressMode(getCompressMode(result)); producerExecutionContext.setEncryptionConfig(getEncryptionConfig(result)); producerExecutionContext.setFileFormat(getFileFormat(result)); @@ -579,6 +603,7 @@ private static void configureProducerContext(ConfigResult result, producerExecutionContext.setQuoteEncloseMode(getQuoteEncloseMode(result)); producerExecutionContext.setTrimRight(getTrimRight(result)); producerExecutionContext.setBenchmarkMode(getBenchmarkMode(result)); + producerExecutionContext.setBenchmarkRound(getBenchmarkRound(result)); producerExecutionContext.setScale(getScale(result)); producerExecutionContext.validate(); @@ -603,6 +628,7 @@ private static void configureConsumerContext(ConfigResult result, consumerExecutionContext.setTpsLimit(getTpsLimit(result)); consumerExecutionContext.setUseColumns(getUseColumns(result)); consumerExecutionContext.setEmptyStrAsNull(getEmptyAsNull(result)); + consumerExecutionContext.setMaxRetry(getMaxErrorCount(result)); consumerExecutionContext.validate(); } @@ -671,6 +697,14 @@ private static BenchmarkMode getBenchmarkMode(ConfigResult result) { } } + private static int getBenchmarkRound(ConfigResult result) { + if (result.hasOption(ARG_SHORT_FILE_NUM)) { + return Integer.parseInt(result.getOptionValue(ARG_SHORT_FILE_NUM)); + } else { + return 0; + } + } + private static int getScale(ConfigResult result) { if (result.hasOption(ARG_SHORT_SCALE)) { return Integer.parseInt(result.getOptionValue(ARG_SHORT_SCALE)); @@ -777,7 +811,8 @@ private static void setGlobalDdlConfig(ConfigResult result) { private static int getMaxErrorCount(ConfigResult result) { if (result.hasOption(ARG_SHORT_MAX_ERROR)) { - return Integer.parseInt(result.getOptionValue(ARG_SHORT_MAX_ERROR)); + int maxError = Integer.parseInt(result.getOptionValue(ARG_SHORT_MAX_ERROR)); + return Math.max(0, maxError); } return ConfigConstant.DEFAULT_MAX_ERROR_COUNT; } diff --git a/batch-tool/src/main/java/cmd/ConfigArgOption.java b/batch-tool/src/main/java/cmd/ConfigArgOption.java index dfb94d5..a3a4e64 100644 --- a/batch-tool/src/main/java/cmd/ConfigArgOption.java +++ b/batch-tool/src/main/java/cmd/ConfigArgOption.java @@ -17,26 +17,6 @@ package cmd; public class ConfigArgOption { - protected final String argShort; - protected final String argLong; - protected final String desc; - protected final String argName; - - protected ConfigArgOption(String argShort, String argLong, String desc, String argName) { - this.argShort = argShort; - this.argLong = argLong; - this.desc = desc; - this.argName = argName; - } - - private static ConfigArgOption of(String argShort, String argLong, String desc) { - return new ConfigArgOption(argShort, argLong, desc, null); - } - - private static ConfigArgOption of(String argShort, String argLong, String desc, String argName) { - return new ConfigArgOption(argShort, argLong, desc, argName); - } - public static final ConfigArgOption ARG_SHORT_HELP = of("help", "help", "Help message."); public static final ConfigArgOption ARG_SHORT_VERSION = @@ -72,7 +52,7 @@ private static ConfigArgOption of(String argShort, String argLong, String desc, public static final ConfigArgOption ARG_SHORT_LINE = of("L", "line", "Max line limit of one single export file.", "line count"); public static final ConfigArgOption ARG_SHORT_FILE_NUM = - of("F", "filenum", "Fixed number of exported files.", "file count"); + of("F", "filenum", "Fixed number of exported files, or benchmark round.", "count"); public static final ConfigArgOption ARG_SHORT_HISTORY_FILE = of("H", "historyFile", "History file name.", "filepath"); public static final ConfigArgOption ARG_SHORT_WHERE = @@ -81,13 +61,13 @@ private static ConfigArgOption of(String argShort, String argLong, String desc, of("dir", "directory", "Directory path including files to import.", "directory path"); public static final ConfigArgOption ARG_SHORT_CHARSET = of("cs", "charset", "The charset of files.", "charset"); - public static final ConfigArgOption ARG_SHORT_PRODUCER = + public static final ConfigArgOption ARG_SHORT_PRODUCER = of("pro", "producer", "Configure number of producer threads (export / import).", "producer count"); public static final ConfigArgOption ARG_SHORT_CONSUMER = of("con", "consumer", "Configure number of consumer threads.", "consumer count"); public static final ConfigArgOption ARG_SHORT_FORCE_CONSUMER = of("fcon", "forceConsumer", "Configure if allow force consumer parallelism.", "parallelism"); - public static final ConfigArgOption ARG_SHORT_MAX_CONN_NUM = + public static final ConfigArgOption ARG_SHORT_MAX_CONN_NUM = of("maxConn", "maxConnection", "Max connection count (druid).", "max connection"); public static final ConfigArgOption ARG_SHORT_MAX_WAIT = of("maxWait", "connMaxWait", "Max wait time when getting a connection.", "wait time(ms)"); @@ -103,7 +83,7 @@ private static ConfigArgOption of(String argShort, String argLong, String desc, of("readsize", "readSize", "Read block size.", "size(MB)"); public static final ConfigArgOption ARG_SHORT_RING_BUFFER_SIZE = of("ringsize", "ringSize", "Ring buffer size.", "size (power of 2)"); - public static final ConfigArgOption ARG_SHORT_QUOTE_ENCLOSE_MODE = + public static final ConfigArgOption ARG_SHORT_QUOTE_ENCLOSE_MODE = of("quote", "quoteMode", "The mode of how field values are enclosed by double-quotes when exporting table (default FORCE).", "AUTO | FORCE | NONE"); @@ -133,6 +113,25 @@ private static ConfigArgOption of(String argShort, String argLong, String desc, public static final ConfigArgOption ARG_SHORT_SCALE = of("scale", "scale", "The size scale benchmark data (GB for tpch).", "size"); + protected final String argShort; + protected final String argLong; + protected final String desc; + protected final String argName; + protected ConfigArgOption(String argShort, String argLong, String desc, String argName) { + this.argShort = argShort; + this.argLong = argLong; + this.desc = desc; + this.argName = argName; + } + + private static ConfigArgOption of(String argShort, String argLong, String desc) { + return new ConfigArgOption(argShort, argLong, desc, null); + } + + private static ConfigArgOption of(String argShort, String argLong, String desc, String argName) { + return new ConfigArgOption(argShort, argLong, desc, argName); + } + public boolean hasArg() { return argName != null; } diff --git a/batch-tool/src/main/java/cmd/FlagOption.java b/batch-tool/src/main/java/cmd/FlagOption.java index f078219..9e40193 100644 --- a/batch-tool/src/main/java/cmd/FlagOption.java +++ b/batch-tool/src/main/java/cmd/FlagOption.java @@ -70,4 +70,6 @@ private static FlagOption of(String argShort, String argLong, String desc, Boole of("dropTableIfExists", "dropTableIfExists", "Add 'drop table if exists xxx' when exporting DDL (default false).", false); + public static final FlagOption ARG_WITH_VIEW = + of("withView", "withView", "Export views into files, or (default false).", false); } diff --git a/batch-tool/src/main/java/datasource/DataSourceConfig.java b/batch-tool/src/main/java/datasource/DataSourceConfig.java index 1393bfd..e5064e3 100644 --- a/batch-tool/src/main/java/datasource/DataSourceConfig.java +++ b/batch-tool/src/main/java/datasource/DataSourceConfig.java @@ -210,7 +210,6 @@ public String toString() { ", port='" + port + '\'' + ", dbName='" + dbName + '\'' + ", username='" + username + '\'' + - ", password='" + password + '\'' + ", maxConnectionNum=" + maxConnectionNum + ", minConnectionNum=" + minConnectionNum + ", loadBalanceEnabled=" + loadBalanceEnabled + diff --git a/batch-tool/src/main/java/exec/BaseExecutor.java b/batch-tool/src/main/java/exec/BaseExecutor.java index 11b5a1f..d6c380e 100644 --- a/batch-tool/src/main/java/exec/BaseExecutor.java +++ b/batch-tool/src/main/java/exec/BaseExecutor.java @@ -89,7 +89,6 @@ protected void checkTableExists(List tableNames) { throw new RuntimeException(String.format("Table [%s] does not exist", tableName)); } } catch (SQLException | DatabaseException e) { - e.printStackTrace(); throw new RuntimeException(e.getMessage()); } } @@ -339,6 +338,10 @@ public void close() { } + public boolean hasFatalException() { + return false; + } + protected String getSchemaName() { return dataSourceConfig.getDbName(); } diff --git a/batch-tool/src/main/java/exec/DeleteExecutor.java b/batch-tool/src/main/java/exec/DeleteExecutor.java index ed760f0..d1fe1ba 100644 --- a/batch-tool/src/main/java/exec/DeleteExecutor.java +++ b/batch-tool/src/main/java/exec/DeleteExecutor.java @@ -18,12 +18,29 @@ import cmd.BaseOperateCommand; import com.alibaba.druid.pool.DruidDataSource; +import com.lmax.disruptor.EventFactory; +import com.lmax.disruptor.RingBuffer; +import com.lmax.disruptor.WorkerPool; import datasource.DataSourceConfig; +import model.config.BenchmarkMode; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import util.SyncUtil; +import worker.MyThreadPool; +import worker.MyWorkerPool; import worker.delete.DeleteConsumer; import worker.delete.DeleteInConsumer; import worker.delete.ShardedDeleteInConsumer; +import worker.tpch.consumer.TpchDeleteConsumer; +import worker.tpch.consumer.TpchInsert2Consumer; +import worker.tpch.model.BatchDeleteSqlEvent; +import worker.tpch.model.BatchInsertSql2Event; +import worker.tpch.pruducer.TpchUDeleteProducer; +import worker.tpch.pruducer.TpchUInsertProducer; + +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.atomic.AtomicInteger; public class DeleteExecutor extends WriteDbExecutor { private static final Logger logger = LoggerFactory.getLogger(DeleteExecutor.class); @@ -36,6 +53,11 @@ public DeleteExecutor(DataSourceConfig dataSourceConfig, @Override public void execute() { + if (producerExecutionContext.getBenchmarkMode() != BenchmarkMode.NONE) { + handleBenchmark(); + return; + } + configurePkList(); for (String tableName : tableNames) { if (command.isShardingEnabled()) { @@ -47,6 +69,155 @@ public void execute() { } } + private void handleBenchmark() { + switch (producerExecutionContext.getBenchmarkMode()) { + case TPCH: + handleTpchRollback(); + break; + default: + throw new UnsupportedOperationException("Not support " + producerExecutionContext.getBenchmarkMode()); + } + } + + /** + * Rollback TPC-H already updated data + * 1. delete inserted rows + * 2. insert deleted rows + */ + private void handleTpchRollback() { + checkTpchUpdateTablesExist(); + final int totalRound = producerExecutionContext.getBenchmarkRound(); + if (totalRound <= 0) { + throw new IllegalArgumentException("Use `-F` to set TPC-H rollback round"); + } + + if (!consumerExecutionContext.isForceParallelism()) { + // TPC-H update parallelism has a default limit + int curParallelism = consumerExecutionContext.getParallelism(); + consumerExecutionContext.setParallelism(Math.min(4, curParallelism)); + consumerExecutionContext.setForceParallelism(true); + } + + for (int curRound = 1; curRound <= totalRound; curRound++) { + logger.info("Starting TPC-H rollback round-{}, total round: {}", curRound, totalRound); + long startTime = System.currentTimeMillis(); + doTpchDeleteForRollback(curRound); + if (hasFatalException()) { + logger.warn("Terminating TPC-H rollback due to fatal exception..."); + break; + } + doTpchInsertForRollback(curRound); + if (hasFatalException()) { + logger.warn("Terminating TPC-H rollback due to fatal exception..."); + break; + } + long endTime = System.currentTimeMillis(); + logger.info("TPC-H rollback round-{} ended, elapsed time: {}s", curRound, (endTime - startTime) / 1000); + } + } + + /** + * 通过删除的方式回滚掉之前插入的数据 + */ + private void doTpchDeleteForRollback(int curRound) { + final int producerParallelism = 1; + AtomicInteger emittedDataCounter = SyncUtil.newRemainDataCounter(); + + ThreadPoolExecutor producerThreadPool = + MyThreadPool.createExecutorExact(TpchUDeleteProducer.class.getSimpleName(), + producerParallelism); + producerExecutionContext.setProducerExecutor(producerThreadPool); + producerExecutionContext.setEmittedDataCounter(emittedDataCounter); + + int consumerParallelism = getConsumerNum(consumerExecutionContext); + consumerExecutionContext.setParallelism(consumerParallelism); + consumerExecutionContext.setDataSource(dataSource); + consumerExecutionContext.setEmittedDataCounter(emittedDataCounter); + ThreadPoolExecutor consumerThreadPool = + MyThreadPool.createExecutorExact(TpchDeleteConsumer.class.getSimpleName(), + consumerParallelism); + EventFactory factory = BatchDeleteSqlEvent::new; + RingBuffer ringBuffer = MyWorkerPool.createRingBuffer(factory); + TpchUDeleteProducer tpchProducer = + new TpchUDeleteProducer(producerExecutionContext, ringBuffer, curRound, true); + CountDownLatch countDownLatch = SyncUtil.newMainCountDownLatch(1); + producerExecutionContext.setCountDownLatch(countDownLatch); + + TpchDeleteConsumer[] consumers = new TpchDeleteConsumer[consumerParallelism]; + try { + for (int i = 0; i < consumerParallelism; i++) { + consumers[i] = new TpchDeleteConsumer(consumerExecutionContext); + } + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + // 开启线程工作 + WorkerPool workerPool = MyWorkerPool.createWorkerPool(ringBuffer, consumers); + workerPool.start(consumerThreadPool); + try { + tpchProducer.produce(); + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + waitAndShutDown(countDownLatch, emittedDataCounter, producerThreadPool, consumerThreadPool, + workerPool); + } + + /** + * 通过插入的方式回滚掉之前删除的数据 + */ + private void doTpchInsertForRollback(int curRound) { + final int producerParallelism = 1; + AtomicInteger emittedDataCounter = SyncUtil.newRemainDataCounter(); + + ThreadPoolExecutor producerThreadPool = + MyThreadPool.createExecutorExact(TpchUInsertProducer.class.getSimpleName(), + producerParallelism); + producerExecutionContext.setProducerExecutor(producerThreadPool); + producerExecutionContext.setEmittedDataCounter(emittedDataCounter); + + int consumerParallelism = getConsumerNum(consumerExecutionContext); + consumerExecutionContext.setParallelism(consumerParallelism); + consumerExecutionContext.setDataSource(dataSource); + consumerExecutionContext.setEmittedDataCounter(emittedDataCounter); + ThreadPoolExecutor consumerThreadPool = + MyThreadPool.createExecutorExact(TpchInsert2Consumer.class.getSimpleName(), + consumerParallelism); + EventFactory factory = BatchInsertSql2Event::new; + RingBuffer ringBuffer = MyWorkerPool.createRingBuffer(factory); + TpchUInsertProducer tpchProducer = + new TpchUInsertProducer(producerExecutionContext, ringBuffer, curRound, true); + CountDownLatch countDownLatch = SyncUtil.newMainCountDownLatch(1); + producerExecutionContext.setCountDownLatch(countDownLatch); + + TpchInsert2Consumer[] consumers = new TpchInsert2Consumer[consumerParallelism]; + try { + for (int i = 0; i < consumerParallelism; i++) { + consumers[i] = new TpchInsert2Consumer(consumerExecutionContext); + } + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + // 开启线程工作 + WorkerPool workerPool = MyWorkerPool.createWorkerPool(ringBuffer, consumers); + workerPool.start(consumerThreadPool); + try { + tpchProducer.produce(); + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + waitAndShutDown(countDownLatch, emittedDataCounter, producerThreadPool, consumerThreadPool, + workerPool); + } + private void doDefaultDelete(String tableName) { if (consumerExecutionContext.isWhereInEnabled()) { // 使用delete ... in (...) diff --git a/batch-tool/src/main/java/exec/ImportExecutor.java b/batch-tool/src/main/java/exec/ImportExecutor.java index 3914232..9e84d48 100644 --- a/batch-tool/src/main/java/exec/ImportExecutor.java +++ b/batch-tool/src/main/java/exec/ImportExecutor.java @@ -38,9 +38,9 @@ import worker.insert.ImportConsumer; import worker.insert.ProcessOnlyImportConsumer; import worker.insert.ShardedImportConsumer; -import worker.tpch.BatchInsertSqlEvent; -import worker.tpch.TpchConsumer; -import worker.tpch.TpchProducer; +import worker.tpch.consumer.TpchInsertConsumer; +import worker.tpch.model.BatchInsertSqlEvent; +import worker.tpch.pruducer.TpchImportProducer; import java.sql.Connection; import java.sql.SQLException; @@ -178,14 +178,13 @@ private void handleBenchmark(List tableNames) { default: throw new UnsupportedOperationException("Not support " + producerExecutionContext.getBenchmarkMode()); } - } private void handleTpchImport(List tableNames) { int producerParallelism = producerExecutionContext.getParallelism(); AtomicInteger emittedDataCounter = SyncUtil.newRemainDataCounter(); - ThreadPoolExecutor producerThreadPool = MyThreadPool.createExecutorExact(TpchProducer.class.getSimpleName(), + ThreadPoolExecutor producerThreadPool = MyThreadPool.createExecutorExact(TpchImportProducer.class.getSimpleName(), producerParallelism); producerExecutionContext.setProducerExecutor(producerThreadPool); producerExecutionContext.setEmittedDataCounter(emittedDataCounter); @@ -194,19 +193,19 @@ private void handleTpchImport(List tableNames) { consumerExecutionContext.setParallelism(consumerParallelism); consumerExecutionContext.setDataSource(dataSource); consumerExecutionContext.setEmittedDataCounter(emittedDataCounter); - ThreadPoolExecutor consumerThreadPool = MyThreadPool.createExecutorExact(TpchConsumer.class.getSimpleName(), + ThreadPoolExecutor consumerThreadPool = MyThreadPool.createExecutorExact(TpchInsertConsumer.class.getSimpleName(), consumerParallelism); EventFactory factory = BatchInsertSqlEvent::new; RingBuffer ringBuffer = MyWorkerPool.createRingBuffer(factory); - TpchProducer tpchProducer = new TpchProducer(producerExecutionContext, tableNames, ringBuffer); + TpchImportProducer tpchProducer = new TpchImportProducer(producerExecutionContext, tableNames, ringBuffer); CountDownLatch countDownLatch = SyncUtil.newMainCountDownLatch(tpchProducer.getWorkerCount()); producerExecutionContext.setCountDownLatch(countDownLatch); - TpchConsumer[] consumers = new TpchConsumer[consumerParallelism]; + TpchInsertConsumer[] consumers = new TpchInsertConsumer[consumerParallelism]; try { for (int i = 0; i < consumerParallelism; i++) { - consumers[i] = new TpchConsumer(consumerExecutionContext); + consumers[i] = new TpchInsertConsumer(consumerExecutionContext); } } catch (Exception e) { logger.error(e.getMessage()); @@ -226,16 +225,8 @@ private void handleTpchImport(List tableNames) { throw new RuntimeException(e); } - waitForFinish(countDownLatch, emittedDataCounter, producerExecutionContext, consumerExecutionContext); - if (producerExecutionContext.getException() != null || consumerExecutionContext.getException() != null) { - producerThreadPool.shutdownNow(); - consumerThreadPool.shutdownNow(); - workerPool.halt(); - } else { - workerPool.drainAndHalt(); - consumerThreadPool.shutdown(); - producerThreadPool.shutdown(); - } + waitAndShutDown(countDownLatch, emittedDataCounter, producerThreadPool, consumerThreadPool, + workerPool); } /** diff --git a/batch-tool/src/main/java/exec/UpdateExecutor.java b/batch-tool/src/main/java/exec/UpdateExecutor.java index 67cc0e0..0fcc326 100644 --- a/batch-tool/src/main/java/exec/UpdateExecutor.java +++ b/batch-tool/src/main/java/exec/UpdateExecutor.java @@ -18,11 +18,24 @@ import cmd.BaseOperateCommand; import com.alibaba.druid.pool.DruidDataSource; +import com.lmax.disruptor.EventFactory; +import com.lmax.disruptor.RingBuffer; +import com.lmax.disruptor.WorkerPool; import datasource.DataSourceConfig; +import model.config.BenchmarkMode; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import util.SyncUtil; +import worker.MyThreadPool; +import worker.MyWorkerPool; import worker.common.BaseWorkHandler; +import worker.tpch.consumer.TpchDeleteConsumer; +import worker.tpch.consumer.TpchInsert2Consumer; +import worker.tpch.model.BatchDeleteSqlEvent; +import worker.tpch.model.BatchInsertSql2Event; +import worker.tpch.pruducer.TpchUDeleteProducer; +import worker.tpch.pruducer.TpchUInsertProducer; import worker.update.ReplaceConsumer; import worker.update.ShardedReplaceConsumer; import worker.update.UpdateConsumer; @@ -30,6 +43,10 @@ import worker.update.UpdateWithFuncInConsumer; import worker.util.UpdateUtil; +import java.util.concurrent.CountDownLatch; +import java.util.concurrent.ThreadPoolExecutor; +import java.util.concurrent.atomic.AtomicInteger; + public class UpdateExecutor extends WriteDbExecutor { private static final Logger logger = LoggerFactory.getLogger(UpdateExecutor.class); @@ -41,6 +58,11 @@ public UpdateExecutor(DataSourceConfig dataSourceConfig, @Override public void execute() { + if (producerExecutionContext.getBenchmarkMode() != BenchmarkMode.NONE) { + handleBenchmark(); + return; + } + configureFieldMetaInfo(); configurePkList(); @@ -66,11 +88,149 @@ public void execute() { logger.info("更新 {} 数据完成", tableNames); } + private void handleBenchmark() { + switch (producerExecutionContext.getBenchmarkMode()) { + case TPCH: + handleTpchUpdate(); + break; + default: + throw new UnsupportedOperationException("Not support " + producerExecutionContext.getBenchmarkMode()); + } + } + + private void handleTpchUpdate() { + checkTpchUpdateTablesExist(); + final int totalRound = producerExecutionContext.getBenchmarkRound(); + if (totalRound <= 0) { + throw new IllegalArgumentException("Use `-F` to set TPC-H update round"); + } + + if (!consumerExecutionContext.isForceParallelism()) { + // TPC-H update parallelism has a default limit + int curParallelism = consumerExecutionContext.getParallelism(); + consumerExecutionContext.setParallelism(Math.min(4, curParallelism)); + consumerExecutionContext.setForceParallelism(true); + } + + logger.debug("producer config {}", producerExecutionContext); + logger.debug("consumer config {}", consumerExecutionContext); + + for (int curRound = 1; curRound <= totalRound; curRound++) { + logger.info("Starting TPC-H update round-{}, total round: {}", curRound, totalRound); + long startTime = System.currentTimeMillis(); + doTpchDelete(curRound); + if (hasFatalException()) { + logger.warn("Terminating TPC-H update due to fatal exception..."); + break; + } + doTpchInsert(curRound); + if (hasFatalException()) { + logger.warn("Terminating TPC-H update due to fatal exception..."); + break; + } + long endTime = System.currentTimeMillis(); + logger.info("TPC-H update round-{} ended, elapsed time: {}s", curRound, (endTime - startTime) / 1000); + } + } + + private void doTpchDelete(int curRound) { + final int producerParallelism = 1; + AtomicInteger emittedDataCounter = SyncUtil.newRemainDataCounter(); + + ThreadPoolExecutor producerThreadPool = MyThreadPool.createExecutorExact(TpchUDeleteProducer.class.getSimpleName(), + producerParallelism); + producerExecutionContext.setProducerExecutor(producerThreadPool); + producerExecutionContext.setEmittedDataCounter(emittedDataCounter); + + int consumerParallelism = getConsumerNum(consumerExecutionContext); + consumerExecutionContext.setParallelism(consumerParallelism); + consumerExecutionContext.setDataSource(dataSource); + consumerExecutionContext.setEmittedDataCounter(emittedDataCounter); + ThreadPoolExecutor consumerThreadPool = MyThreadPool.createExecutorExact(TpchDeleteConsumer.class.getSimpleName(), + consumerParallelism); + EventFactory factory = BatchDeleteSqlEvent::new; + RingBuffer ringBuffer = MyWorkerPool.createRingBuffer(factory); + TpchUDeleteProducer tpchProducer = new TpchUDeleteProducer(producerExecutionContext, ringBuffer, curRound); + CountDownLatch countDownLatch = SyncUtil.newMainCountDownLatch(1); + producerExecutionContext.setCountDownLatch(countDownLatch); + + TpchDeleteConsumer[] consumers = new TpchDeleteConsumer[consumerParallelism]; + try { + for (int i = 0; i < consumerParallelism; i++) { + consumers[i] = new TpchDeleteConsumer(consumerExecutionContext); + } + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + // 开启线程工作 + WorkerPool workerPool = MyWorkerPool.createWorkerPool(ringBuffer, consumers); + workerPool.start(consumerThreadPool); + try { + tpchProducer.produce(); + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + waitAndShutDown(countDownLatch, emittedDataCounter, producerThreadPool, consumerThreadPool, + workerPool); + } + + private void doTpchInsert(int curRound) { + final int producerParallelism = 1; + AtomicInteger emittedDataCounter = SyncUtil.newRemainDataCounter(); + + ThreadPoolExecutor producerThreadPool = + MyThreadPool.createExecutorExact(TpchUInsertProducer.class.getSimpleName(), + producerParallelism); + producerExecutionContext.setProducerExecutor(producerThreadPool); + producerExecutionContext.setEmittedDataCounter(emittedDataCounter); + + int consumerParallelism = getConsumerNum(consumerExecutionContext); + consumerExecutionContext.setParallelism(consumerParallelism); + consumerExecutionContext.setDataSource(dataSource); + consumerExecutionContext.setEmittedDataCounter(emittedDataCounter); + ThreadPoolExecutor consumerThreadPool = + MyThreadPool.createExecutorExact(TpchInsert2Consumer.class.getSimpleName(), + consumerParallelism); + EventFactory factory = BatchInsertSql2Event::new; + RingBuffer ringBuffer = MyWorkerPool.createRingBuffer(factory); + TpchUInsertProducer tpchProducer = new TpchUInsertProducer(producerExecutionContext, ringBuffer, curRound); + CountDownLatch countDownLatch = SyncUtil.newMainCountDownLatch(1); + producerExecutionContext.setCountDownLatch(countDownLatch); + + TpchInsert2Consumer[] consumers = new TpchInsert2Consumer[consumerParallelism]; + try { + for (int i = 0; i < consumerParallelism; i++) { + consumers[i] = new TpchInsert2Consumer(consumerExecutionContext); + } + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + // 开启线程工作 + WorkerPool workerPool = MyWorkerPool.createWorkerPool(ringBuffer, consumers); + workerPool.start(consumerThreadPool); + try { + tpchProducer.produce(); + } catch (Exception e) { + logger.error(e.getMessage()); + throw new RuntimeException(e); + } + + waitAndShutDown(countDownLatch, emittedDataCounter, producerThreadPool, consumerThreadPool, + workerPool); + } + private void doShardingUpdate() { configureTopology(); configurePartitionKey(); for (String tableName : tableNames) { - String toUpdateColumns = UpdateUtil.formatToReplaceColumns(consumerExecutionContext.getTableFieldMetaInfo(tableName)); + String toUpdateColumns = + UpdateUtil.formatToReplaceColumns(consumerExecutionContext.getTableFieldMetaInfo(tableName)); consumerExecutionContext.setToUpdateColumns(toUpdateColumns); configureCommonContextAndRun(ShardedReplaceConsumer.class, producerExecutionContext, consumerExecutionContext, tableName, useBlockReader()); @@ -104,7 +264,8 @@ private void doUpdateWithFunc() { */ private void doDefaultUpdate(Class clazz) { for (String tableName : tableNames) { - String toUpdateColumns = UpdateUtil.formatToReplaceColumns(consumerExecutionContext.getTableFieldMetaInfo(tableName)); + String toUpdateColumns = + UpdateUtil.formatToReplaceColumns(consumerExecutionContext.getTableFieldMetaInfo(tableName)); consumerExecutionContext.setToUpdateColumns(toUpdateColumns); configureCommonContextAndRun(clazz, producerExecutionContext, diff --git a/batch-tool/src/main/java/exec/WriteDbExecutor.java b/batch-tool/src/main/java/exec/WriteDbExecutor.java index 1aa8ff4..a02ee72 100644 --- a/batch-tool/src/main/java/exec/WriteDbExecutor.java +++ b/batch-tool/src/main/java/exec/WriteDbExecutor.java @@ -19,6 +19,7 @@ import cmd.BaseOperateCommand; import cmd.WriteDbCommand; import com.alibaba.druid.pool.DruidDataSource; +import com.lmax.disruptor.WorkerPool; import datasource.DataSourceConfig; import exception.DatabaseException; import model.ConsumerExecutionContext; @@ -34,6 +35,7 @@ import util.DbUtil; import worker.common.BaseWorkHandler; import worker.common.ReadFileWithBlockProducer; +import worker.tpch.model.TpchTableModel; import java.sql.Connection; import java.sql.SQLException; @@ -41,7 +43,9 @@ import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; +import java.util.concurrent.CountDownLatch; import java.util.concurrent.ScheduledThreadPoolExecutor; +import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicInteger; @@ -194,6 +198,11 @@ protected void onWorkFinished() { producerExecutionContext.saveToHistoryFile(true); } + @Override + public boolean hasFatalException() { + return producerExecutionContext.getException() != null || consumerExecutionContext.getException() != null; + } + protected boolean useBlockReader() { if (GlobalVar.IN_PERF_MODE) { return true; @@ -209,4 +218,32 @@ protected boolean useBlockReader() { } return true; } + + protected void waitAndShutDown(CountDownLatch countDownLatch, AtomicInteger emittedDataCounter, + ThreadPoolExecutor producerThreadPool, ThreadPoolExecutor consumerThreadPool, + WorkerPool workerPool) { + waitForFinish(countDownLatch, emittedDataCounter, producerExecutionContext, consumerExecutionContext); + if (producerExecutionContext.getException() != null || consumerExecutionContext.getException() != null) { + producerThreadPool.shutdownNow(); + consumerThreadPool.shutdownNow(); + workerPool.halt(); + } else { + workerPool.drainAndHalt(); + consumerThreadPool.shutdown(); + producerThreadPool.shutdown(); + } + } + + protected void checkTpchUpdateTablesExist() { + final String[] tables = {TpchTableModel.LINEITEM.getName(), TpchTableModel.ORDERS.getName()}; + try (Connection conn = dataSource.getConnection()) { + for (String table : tables) { + if (!DbUtil.checkTableExists(conn, table)) { + throw new RuntimeException("TPC-H update table: " + table + " does not exist"); + } + } + } catch (SQLException | DatabaseException e) { + throw new RuntimeException(e); + } + } } diff --git a/batch-tool/src/main/java/exec/export/BaseExportExecutor.java b/batch-tool/src/main/java/exec/export/BaseExportExecutor.java index 0e0761e..a57a255 100644 --- a/batch-tool/src/main/java/exec/export/BaseExportExecutor.java +++ b/batch-tool/src/main/java/exec/export/BaseExportExecutor.java @@ -50,7 +50,12 @@ public void preCheck() { } else { // 设置整库操作的目标表 try (Connection conn = dataSource.getConnection()) { - List tableNames = DbUtil.getAllTablesInDb(conn, command.getDbName()); + List tableNames; + if (config.isWithView()) { + tableNames = DbUtil.getAllTablesInDb(conn, command.getDbName()); + } else { + tableNames = DbUtil.getAllBaseTablesInDb(conn, command.getDbName()); + } command.setTableNames(tableNames); } catch (SQLException | DatabaseException e) { throw new RuntimeException(e); diff --git a/batch-tool/src/main/java/model/ConsumerExecutionContext.java b/batch-tool/src/main/java/model/ConsumerExecutionContext.java index bc56095..45f3560 100644 --- a/batch-tool/src/main/java/model/ConsumerExecutionContext.java +++ b/batch-tool/src/main/java/model/ConsumerExecutionContext.java @@ -147,6 +147,8 @@ public class ConsumerExecutionContext extends BaseConfig { */ private String useColumns = null; + private int maxRetry; + private volatile Exception exception; public ConsumerExecutionContext() { @@ -433,6 +435,14 @@ public void setEmptyStrAsNull(boolean emptyStrAsNull) { this.emptyStrAsNull = emptyStrAsNull; } + public int getMaxRetry() { + return maxRetry; + } + + public void setMaxRetry(int maxRetry) { + this.maxRetry = maxRetry; + } + @Override public void validate() { super.validate(); diff --git a/batch-tool/src/main/java/model/ProducerExecutionContext.java b/batch-tool/src/main/java/model/ProducerExecutionContext.java index b362710..6cb3ba1 100644 --- a/batch-tool/src/main/java/model/ProducerExecutionContext.java +++ b/batch-tool/src/main/java/model/ProducerExecutionContext.java @@ -66,14 +66,19 @@ public class ProducerExecutionContext extends BaseConfig { private int maxErrorCount; - private AtomicInteger emittedDataCounter; + private volatile AtomicInteger emittedDataCounter; - private CountDownLatch countDownLatch; + private volatile CountDownLatch countDownLatch; private volatile Exception exception; protected BenchmarkMode benchmarkMode; + /** + * eg. TPC-H update round + */ + protected int benchmarkRound = 0; + /** * Benchmark 数据集的规模 */ @@ -272,6 +277,14 @@ public void setBenchmarkMode(BenchmarkMode benchmarkMode) { this.benchmarkMode = benchmarkMode; } + public int getBenchmarkRound() { + return benchmarkRound; + } + + public void setBenchmarkRound(int benchmarkRound) { + this.benchmarkRound = benchmarkRound; + } + public int getScale() { return scale; } diff --git a/batch-tool/src/main/java/model/config/BaseConfig.java b/batch-tool/src/main/java/model/config/BaseConfig.java index 97922ca..d46595e 100644 --- a/batch-tool/src/main/java/model/config/BaseConfig.java +++ b/batch-tool/src/main/java/model/config/BaseConfig.java @@ -89,6 +89,8 @@ int bitCount() { private boolean isWithLastSep = false; + private boolean isWithView = false; + public BaseConfig(boolean shardingEnabled) { this.shardingEnabled = shardingEnabled; } @@ -187,6 +189,14 @@ public void setWithLastSep(boolean withLastSep) { isWithLastSep = withLastSep; } + public boolean isWithView() { + return isWithView; + } + + public void setWithView(boolean withView) { + isWithView = withView; + } + /** * 目前 压缩模式、加密、特殊文件格式三者配置互不兼容 */ @@ -213,6 +223,7 @@ public String toString() { ", charset='" + charset + '\'' + ", isWithHeader='" + isWithHeader + '\'' + ", isWithLastSep='" + isWithLastSep + '\'' + + ", isWithView='" + isWithView + '\'' + ", quoteEncloseMode='" + quoteEncloseMode + '\'' + ", compressMode='" + compressMode + '\'' + ", ddlMode='" + ddlMode + '\'' + diff --git a/batch-tool/src/main/java/model/config/GlobalVar.java b/batch-tool/src/main/java/model/config/GlobalVar.java index 4de9c17..21fc63d 100644 --- a/batch-tool/src/main/java/model/config/GlobalVar.java +++ b/batch-tool/src/main/java/model/config/GlobalVar.java @@ -17,6 +17,7 @@ package model.config; import model.stat.DebugInfo; +import worker.tpch.generator.BaseOrderLineUpdateGenerator; public class GlobalVar { @@ -45,4 +46,22 @@ public class GlobalVar { public static final boolean DEBUG_MODE = false; public static final DebugInfo DEBUG_INFO = new DebugInfo(); + + /** + * delete 10 rows in one sql + */ + public static int TPCH_UPDATE_DELETE_BATCH_NUM = 10; + /** + * insert 20 rows in one sql + */ + public static int TPCH_UPDATE_INSERT_BATCH_NUM = 20; + + public static void setTpchUpdateBatchSize(int batchSize) { + if (batchSize >= BaseOrderLineUpdateGenerator.SCALE_BASE) { + throw new IllegalArgumentException( + "TPC-H update batch size should be less than " + BaseOrderLineUpdateGenerator.SCALE_BASE); + } + TPCH_UPDATE_DELETE_BATCH_NUM = batchSize / 2; + TPCH_UPDATE_INSERT_BATCH_NUM = batchSize; + } } diff --git a/batch-tool/src/main/java/util/DataSourceUtil.java b/batch-tool/src/main/java/util/DataSourceUtil.java index 1cf36c5..d4a0e0d 100644 --- a/batch-tool/src/main/java/util/DataSourceUtil.java +++ b/batch-tool/src/main/java/util/DataSourceUtil.java @@ -17,7 +17,6 @@ package util; import javax.validation.constraints.NotNull; - import java.sql.Connection; import java.sql.SQLException; import java.sql.Statement; @@ -28,11 +27,13 @@ public class DataSourceUtil { * 1. 手动拼接Batch,无需rewriteBatch */ public static String URL_PATTERN = "jdbc:mysql://%s:%s/%s?allowPublicKeyRetrieval=true&useSSL=false&connectTimeout=1000" - + "&socketTimeout=600000&maintainTimeStats=false&zeroDateTimeBehavior=convertToNull"; + + "&socketTimeout=600000&maintainTimeStats=false&zeroDateTimeBehavior=convertToNull" + + "&useLocalSessionState=true&readOnlyPropagatesToServer=false"; public static String LOAD_BALANCE_URL_PATTERN = "jdbc:mysql:loadbalance://%s/%s?" + "loadBalanceAutoCommitStatementThreshold=5&allowPublicKeyRetrieval=true&useSSL=false&connectTimeout=1000" - + "&socketTimeout=600000&loadBalanceBlacklistTimeout=900000"; + + "&socketTimeout=600000&loadBalanceBlacklistTimeout=900000" + + "&useLocalSessionState=true&readOnlyPropagatesToServer=false"; public static Statement createStreamingStatement(@NotNull Connection conn) throws SQLException { Statement stmt = conn.createStatement(); diff --git a/batch-tool/src/main/java/util/DbUtil.java b/batch-tool/src/main/java/util/DbUtil.java index 66685c8..7b01a19 100644 --- a/batch-tool/src/main/java/util/DbUtil.java +++ b/batch-tool/src/main/java/util/DbUtil.java @@ -490,6 +490,9 @@ public static void useDb(Connection conn, String dbName) throws SQLException { } } + /** + * include base table, views, orc tables, etc. + */ public static List getAllTablesInDb(Connection conn, String dbName) throws DatabaseException { List allTables = new ArrayList<>(); try (Statement stmt = conn.createStatement()) { @@ -503,6 +506,20 @@ public static List getAllTablesInDb(Connection conn, String dbName) thro } } + public static List getAllBaseTablesInDb(Connection conn, String dbName) throws DatabaseException { + List allTables = new ArrayList<>(); + try (Statement stmt = conn.createStatement()) { + ResultSet rs = stmt.executeQuery(String.format("SELECT TABLE_NAME FROM information_schema.tables " + + "WHERE TABLE_SCHEMA = '%s' AND TABLE_TYPE = 'BASE TABLE';", dbName)); + while (rs.next()) { + allTables.add(rs.getString(1)); + } + return allTables; + } catch (SQLException e) { + throw new DatabaseException("Failed to query information_schema.tables in:" + dbName, e); + } + } + public static String getShowCreateDatabase(Connection conn, String dbName) throws DatabaseException { try (Statement stmt = conn.createStatement()) { // FIXME show create database does not contain charset, collation and mode diff --git a/batch-tool/src/main/java/worker/common/reader/CipherLineReader.java b/batch-tool/src/main/java/worker/common/reader/CipherLineReader.java index 043585c..7be870c 100644 --- a/batch-tool/src/main/java/worker/common/reader/CipherLineReader.java +++ b/batch-tool/src/main/java/worker/common/reader/CipherLineReader.java @@ -58,6 +58,9 @@ public CipherLineReader(ProducerExecutionContext context, protected void readData() { try { String line; + if (context.isWithHeader()) { + readLine(); + } while ((line = readLine()) != null) { appendToLineBuffer(line); } @@ -98,7 +101,6 @@ private String readLine() throws IOException { try { decryptedData = cipher.decrypt(data); } catch (Exception e) { - e.printStackTrace(); logger.error("Failed to decrypted file {}: {}", fileList.get(localProcessingFileIndex).getName(), e.getMessage()); throw new RuntimeException(e); diff --git a/batch-tool/src/main/java/worker/common/reader/CsvReader.java b/batch-tool/src/main/java/worker/common/reader/CsvReader.java index 77f5ccd..e78f477 100644 --- a/batch-tool/src/main/java/worker/common/reader/CsvReader.java +++ b/batch-tool/src/main/java/worker/common/reader/CsvReader.java @@ -64,6 +64,10 @@ public CsvReader(ProducerExecutionContext context, @Override protected void readData() { try { + if (context.isWithHeader()) { + // skip header + reader.readNext(); + } for (String[] fields; (fields = reader.readNext()) != null; ) { localProcessingBlockIndex++; String line = String.join(ConfigConstant.MAGIC_CSV_SEP1, fields); diff --git a/batch-tool/src/main/java/worker/ddl/DdlExportWorker.java b/batch-tool/src/main/java/worker/ddl/DdlExportWorker.java index 486d156..36c70e4 100644 --- a/batch-tool/src/main/java/worker/ddl/DdlExportWorker.java +++ b/batch-tool/src/main/java/worker/ddl/DdlExportWorker.java @@ -57,6 +57,7 @@ public DdlExportWorker(DataSource druid, String dbName, ExportConfig config) { this.dbName = dbName; this.config = config; try (Connection conn = druid.getConnection()) { + // default include views when exporting ddl this.tableNames = DbUtil.getAllTablesInDb(conn, dbName); } catch (SQLException | DatabaseException e) { throw new RuntimeException(e); diff --git a/batch-tool/src/main/java/worker/tpch/consumer/TpchDeleteConsumer.java b/batch-tool/src/main/java/worker/tpch/consumer/TpchDeleteConsumer.java new file mode 100644 index 0000000..7efee76 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/consumer/TpchDeleteConsumer.java @@ -0,0 +1,150 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.consumer; + +import com.lmax.disruptor.WorkHandler; +import model.ConsumerExecutionContext; +import model.config.GlobalVar; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import worker.tpch.model.BatchDeleteSqlEvent; + +import java.sql.Connection; +import java.sql.SQLException; +import java.sql.Statement; + +import static worker.tpch.model.TpchTableModel.LINEITEM; +import static worker.tpch.model.TpchTableModel.ORDERS; + +/** + * delete orders & lineitem with the same orderkey in a transaction + */ +public class TpchDeleteConsumer implements WorkHandler { + + private static final Logger logger = LoggerFactory.getLogger(TpchDeleteConsumer.class); + + private static final String DELETE_ORDERS_SQL = "delete from " + ORDERS.getName() + " where O_ORDERKEY in "; + private static final String DELETE_LINEITEM_SQL = "delete from " + LINEITEM.getName() + " where L_ORDERKEY in "; + + protected final ConsumerExecutionContext consumerContext; + + private final StringBuilder deleteOrdersBuilder = + new StringBuilder(GlobalVar.TPCH_UPDATE_DELETE_BATCH_NUM * 8 + 24); + private final StringBuilder deleteLineitemBuilder = + new StringBuilder(GlobalVar.TPCH_UPDATE_DELETE_BATCH_NUM * 8 + 24); + private final int maxRetry; + + public TpchDeleteConsumer(ConsumerExecutionContext consumerContext) { + this.consumerContext = consumerContext; + this.maxRetry = consumerContext.getMaxRetry(); + } + + @Override + public void onEvent(BatchDeleteSqlEvent event) { + if (consumerContext.getException() != null) { + // fail fast on exception + consumerContext.getEmittedDataCounter().getAndDecrement(); + return; + } + String values = event.getValues(); + try { + deleteInTrx(values); + } finally { + consumerContext.getEmittedDataCounter().decrementAndGet(); + } + } + + private void deleteInTrx(String values) { + Connection conn = null; + String sql = null; + Exception finalException = null; + try { + conn = consumerContext.getDataSource().getConnection(); + conn.setAutoCommit(false); + + int retry = 0; + while (retry <= maxRetry) { + try { + doDelete(conn, values); + break; + } catch (Exception e) { + retry++; + try { + conn.rollback(); + } catch (SQLException e1) { + logger.error("rollback failed", e1); + finalException = e1; + break; + } + if (retry > maxRetry) { + finalException = e; + } + } + } + } catch (Exception e) { + consumerContext.setException(e); + throw new RuntimeException(e); + } finally { + if (conn != null) { + try { + conn.setAutoCommit(true); + conn.close(); + } catch (SQLException e) { + logger.warn(e.getMessage(), e); + } + } + if (finalException != null && consumerContext.getException() == null) { + consumerContext.setException(finalException); + } + } + } + + private void doDelete(Connection conn, String values) throws SQLException { + String sql = null; + try (Statement stmt = conn.createStatement();) { + sql = buildDeleteOrdersSql(values); + stmt.execute(sql); + sql = buildDeleteLineitemSql(values); + stmt.execute(sql); + stmt.close(); + conn.commit(); + } catch (SQLException e) { + if (sql == null) { + logger.error(e.getMessage()); + } else { + if (GlobalVar.DEBUG_MODE) { + logger.error(sql + ", due to " + e.getMessage()); + } else { + logger.error(sql.substring(0, Math.min(32, sql.length())) + ", due to" + e.getMessage()); + } + } + throw e; + } + } + + private String buildDeleteOrdersSql(String pkValue) { + deleteOrdersBuilder.setLength(0); + deleteOrdersBuilder.append(DELETE_ORDERS_SQL).append('(').append(pkValue).append(");"); + return deleteOrdersBuilder.toString(); + } + + private String buildDeleteLineitemSql(String pkValue) { + deleteLineitemBuilder.setLength(0); + deleteLineitemBuilder.append(DELETE_LINEITEM_SQL).append('(').append(pkValue).append(");"); + return deleteLineitemBuilder.toString(); + } +} diff --git a/batch-tool/src/main/java/worker/tpch/consumer/TpchInsert2Consumer.java b/batch-tool/src/main/java/worker/tpch/consumer/TpchInsert2Consumer.java new file mode 100644 index 0000000..6f72520 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/consumer/TpchInsert2Consumer.java @@ -0,0 +1,95 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.consumer; + +import com.lmax.disruptor.WorkHandler; +import model.ConsumerExecutionContext; +import model.config.GlobalVar; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import worker.tpch.model.BatchInsertSql2Event; + +import java.sql.Connection; +import java.sql.SQLException; +import java.sql.Statement; + +/** + * insert orders & lineitem with the same orderkey in a transaction + */ +public class TpchInsert2Consumer implements WorkHandler { + + private static final Logger logger = LoggerFactory.getLogger(TpchInsert2Consumer.class); + + protected final ConsumerExecutionContext consumerContext; + + public TpchInsert2Consumer(ConsumerExecutionContext consumerContext) { + this.consumerContext = consumerContext; + } + + @Override + public void onEvent(BatchInsertSql2Event event) { + if (consumerContext.getException() != null) { + // fail fast on exception + consumerContext.getEmittedDataCounter().getAndDecrement(); + return; + } + String sql1 = event.getSql1(); + String sql2 = event.getSql2(); + try { + insertInTrx(sql1, sql2); + } finally { + consumerContext.getEmittedDataCounter().decrementAndGet(); + } + } + + private void insertInTrx(String sql1, String sql2) { + Connection conn = null; + String sql = null; + try { + conn = consumerContext.getDataSource().getConnection(); + conn.setAutoCommit(false); + try (Statement stmt = conn.createStatement()) { + sql = sql1; + stmt.execute(sql); + sql = sql2; + stmt.execute(sql); + } + conn.commit(); + } catch (SQLException e) { + if (sql == null) { + logger.error(e.getMessage()); + } else { + if (GlobalVar.DEBUG_MODE) { + logger.error(sql + ", due to " + e.getMessage()); + } else { + logger.error(sql.substring(0, Math.min(32, sql.length())) + ", due to " + e.getMessage()); + } + } + consumerContext.setException(e); + throw new RuntimeException(e); + } finally { + if (conn != null) { + try { + conn.setAutoCommit(true); + conn.close(); + } catch (SQLException e) { + logger.warn(e.getMessage(), e); + } + } + } + } +} diff --git a/batch-tool/src/main/java/worker/tpch/TpchConsumer.java b/batch-tool/src/main/java/worker/tpch/consumer/TpchInsertConsumer.java similarity index 66% rename from batch-tool/src/main/java/worker/tpch/TpchConsumer.java rename to batch-tool/src/main/java/worker/tpch/consumer/TpchInsertConsumer.java index 30051e3..5862216 100644 --- a/batch-tool/src/main/java/worker/tpch/TpchConsumer.java +++ b/batch-tool/src/main/java/worker/tpch/consumer/TpchInsertConsumer.java @@ -14,39 +14,49 @@ * limitations under the License. */ -package worker.tpch; +package worker.tpch.consumer; import com.lmax.disruptor.WorkHandler; import model.ConsumerExecutionContext; import model.config.GlobalVar; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import worker.tpch.model.BatchInsertSqlEvent; import java.sql.Connection; import java.sql.SQLException; import java.sql.Statement; -public class TpchConsumer implements WorkHandler { +public class TpchInsertConsumer implements WorkHandler { - private static final Logger logger = LoggerFactory.getLogger(TpchConsumer.class); + private static final Logger logger = LoggerFactory.getLogger(TpchInsertConsumer.class); protected final ConsumerExecutionContext consumerContext; - public TpchConsumer(ConsumerExecutionContext consumerContext) { + public TpchInsertConsumer(ConsumerExecutionContext consumerContext) { this.consumerContext = consumerContext; } @Override public void onEvent(BatchInsertSqlEvent event) { + if (consumerContext.getException() != null) { + // fail fast on exception + consumerContext.getEmittedDataCounter().getAndDecrement(); + return; + } String sql = event.getSql(); try (Connection conn = consumerContext.getDataSource().getConnection(); Statement stmt = conn.createStatement()) { stmt.execute(sql); } catch (SQLException e) { - if (GlobalVar.DEBUG_MODE) { - logger.error(sql + ", due to " + e.getMessage()); + if (sql == null) { + logger.error(e.getMessage()); } else { - logger.error(sql.substring(0, Math.min(32, sql.length())) + ", due to" + e.getMessage()); + if (GlobalVar.DEBUG_MODE) { + logger.error(sql + ", due to " + e.getMessage()); + } else { + logger.error(sql.substring(0, Math.min(32, sql.length())) + ", due to" + e.getMessage()); + } } consumerContext.setException(e); throw new RuntimeException(e); diff --git a/batch-tool/src/main/java/worker/tpch/generator/BaseOrderLineBatchInsertGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/BaseOrderLineBatchInsertGenerator.java new file mode 100644 index 0000000..2d580dd --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/BaseOrderLineBatchInsertGenerator.java @@ -0,0 +1,139 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import com.google.common.annotations.VisibleForTesting; +import io.airlift.tpch.CustomerGenerator; +import io.airlift.tpch.Distributions; +import io.airlift.tpch.RandomBoundedInt; +import io.airlift.tpch.RandomBoundedLong; +import io.airlift.tpch.RandomString; +import io.airlift.tpch.RandomText; +import io.airlift.tpch.TextPool; +import model.config.GlobalVar; +import worker.tpch.model.TpchTableModel; + +import javax.annotation.concurrent.NotThreadSafe; + +import static worker.tpch.generator.LineItemGenerator.COMMIT_DATE_MAX; +import static worker.tpch.generator.LineItemGenerator.COMMIT_DATE_MIN; +import static worker.tpch.generator.LineItemGenerator.RECEIPT_DATE_MAX; +import static worker.tpch.generator.LineItemGenerator.RECEIPT_DATE_MIN; +import static worker.tpch.generator.LineItemGenerator.createDiscountRandom; +import static worker.tpch.generator.LineItemGenerator.createPartKeyRandom; +import static worker.tpch.generator.LineItemGenerator.createQuantityRandom; +import static worker.tpch.generator.LineItemGenerator.createShipDateRandom; +import static worker.tpch.generator.LineItemGenerator.createTaxRandom; +import static worker.tpch.generator.OrderGenerator.CLERK_SCALE_BASE; +import static worker.tpch.generator.OrderGenerator.LINE_COUNT_MAX; + +/** + * 需要注意与 BatchDeleteGenerator 调用方法的不同 + */ +@NotThreadSafe +public abstract class BaseOrderLineBatchInsertGenerator extends BaseOrderLineUpdateGenerator { + + protected final RandomBoundedInt orderDateRandom = OrderGenerator.createOrderDateRandom(); + protected final RandomBoundedInt lineCountRandom = OrderGenerator.createLineCountRandom(); + + protected final RandomBoundedLong customerKeyRandom; + protected final RandomString orderPriorityRandom; + protected final RandomBoundedInt clerkRandom; + protected final RandomText ordersCommentRandom; + + protected final RandomBoundedInt lineQuantityRandom = createQuantityRandom(); + protected final RandomBoundedInt lineDiscountRandom = createDiscountRandom(); + protected final RandomBoundedInt lineTaxRandom = createTaxRandom(); + protected final RandomBoundedLong linePartKeyRandom; + protected final RandomBoundedInt lineShipDateRandom = createShipDateRandom(); + protected final RandomBoundedInt supplierNumberRandom = new RandomBoundedInt(2095021727, 0, 3, LINE_COUNT_MAX); + protected final RandomBoundedInt lineCommitDateRandom = + new RandomBoundedInt(904914315, COMMIT_DATE_MIN, COMMIT_DATE_MAX, LINE_COUNT_MAX); + protected final RandomBoundedInt lineReceiptDateRandom = + new RandomBoundedInt(373135028, RECEIPT_DATE_MIN, RECEIPT_DATE_MAX, LINE_COUNT_MAX); + + protected final RandomString returnedFlagRandom; + protected final RandomString shipInstructionsRandom; + protected final RandomString shipModeRandom; + protected final RandomText lineCommentRandom; + + protected final long maxCustomerKey; + protected StringBuilder orderStringBuilder = + new StringBuilder(GlobalVar.TPCH_UPDATE_INSERT_BATCH_NUM * TpchTableModel.ORDERS.getRowStrLen() + 32); + protected StringBuilder lineitemStringBuilder = + new StringBuilder(GlobalVar.TPCH_UPDATE_INSERT_BATCH_NUM * TpchTableModel.LINEITEM.getRowStrLen() + 32); + + public BaseOrderLineBatchInsertGenerator(double scaleFactor, int round) { + super(scaleFactor, round, GlobalVar.TPCH_UPDATE_INSERT_BATCH_NUM); + + // initialize randoms + maxCustomerKey = (long) (CustomerGenerator.SCALE_BASE * scaleFactor); + customerKeyRandom = new RandomBoundedLong(851767375, + scaleFactor >= 30000, 1, maxCustomerKey); + Distributions distributions = Distributions.getDefaultDistributions(); + orderPriorityRandom = new RandomString(591449447, distributions.getOrderPriorities()); + TextPool orderTextPool = TextPool.getDefaultTestPool(); + ordersCommentRandom = new RandomText(276090261, orderTextPool, OrderGenerator.COMMENT_AVERAGE_LENGTH); + clerkRandom = + new RandomBoundedInt(1171034773, 1, Math.max((int) (scaleFactor * CLERK_SCALE_BASE), CLERK_SCALE_BASE)); + linePartKeyRandom = createPartKeyRandom(scaleFactor); + + returnedFlagRandom = new RandomString(717419739, distributions.getReturnFlags(), LINE_COUNT_MAX); + shipInstructionsRandom = new RandomString(1371272478, distributions.getShipInstructions(), LINE_COUNT_MAX); + shipModeRandom = new RandomString(675466456, distributions.getShipModes(), LINE_COUNT_MAX); + TextPool lineTextPool = TextPool.getDefaultTestPool(); + lineCommentRandom = + new RandomText(1095462486, lineTextPool, LineItemGenerator.COMMENT_AVERAGE_LENGTH, LINE_COUNT_MAX); + + advanceRandoms(); + } + + protected abstract void advanceRandoms(); + + public String getInsertOrdersSqls() { + return orderStringBuilder.toString(); + } + + public String getInsertLineitemSqls() { + return lineitemStringBuilder.toString(); + } + + public abstract void nextBatch(); + + @VisibleForTesting + public abstract void nextRow(); + + public boolean hasData() { + return curIdx < count; + } + + public void close() { + this.lineitemStringBuilder = null; + this.orderStringBuilder = null; + } + + @VisibleForTesting + public String getLineitemRows() { + return lineitemStringBuilder.toString(); + } + + @VisibleForTesting + public String getOrderRow() { + return orderStringBuilder.toString(); + } + +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/BaseOrderLineUpdateGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/BaseOrderLineUpdateGenerator.java new file mode 100644 index 0000000..21ad05d --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/BaseOrderLineUpdateGenerator.java @@ -0,0 +1,92 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import com.google.common.base.Preconditions; + +import static worker.tpch.generator.OrderGenerator.ORDER_KEY_SPARSE_BITS; +import static worker.tpch.generator.OrderGenerator.ORDER_KEY_SPARSE_KEEP; + +/** + * Update / Rollback: delete first, then insert + */ +public class BaseOrderLineUpdateGenerator { + + public static final int SCALE_BASE = 1_500; + public static final int MAX_UPDATE_ROUND = 100; + + protected final double scaleFactor; + protected final long count; + protected final long startIndex; + protected final long endIndex; + /** + * the n-th round of update, starting from 1 + */ + protected final int round; + protected int curIdx = 0; + protected int batchSize; + + public BaseOrderLineUpdateGenerator(double scaleFactor, int round, int batchSize) { + Preconditions.checkArgument(scaleFactor > 0, + "Scale factor should be positive"); + Preconditions.checkArgument(round <= MAX_UPDATE_ROUND && round >= 1, + "Update round should not be greater than " + MAX_UPDATE_ROUND); + this.scaleFactor = scaleFactor; + this.round = round; + this.count = (long) (SCALE_BASE * scaleFactor); + this.startIndex = (round - 1) * count; + this.endIndex = round * count; + this.batchSize = batchSize; + } + + public void setBatchSize(int batchSize) { + this.batchSize = batchSize; + } + + public int getRound() { + return round; + } + + public long getCount() { + return count; + } + + static long makeDeleteOrderKey(long orderIndex) { + long lowBits = orderIndex & ((1 << ORDER_KEY_SPARSE_KEEP) - 1); + + long key = orderIndex; + key >>= ORDER_KEY_SPARSE_KEEP; + key <<= ORDER_KEY_SPARSE_BITS; + key <<= ORDER_KEY_SPARSE_KEEP; + key += lowBits; + + return key; + } + + static long makeInsertOrderKey(long orderIndex) { + long lowBits = orderIndex & ((1 << ORDER_KEY_SPARSE_KEEP) - 1); + + long key = orderIndex; + key >>= ORDER_KEY_SPARSE_KEEP; + key <<= ORDER_KEY_SPARSE_BITS; + key += 1; + key <<= ORDER_KEY_SPARSE_KEEP; + key += lowBits; + + return key; + } +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/BatchDeleteGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/BatchDeleteGenerator.java new file mode 100644 index 0000000..2345e5f --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/BatchDeleteGenerator.java @@ -0,0 +1,53 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import com.google.common.annotations.VisibleForTesting; +import model.config.GlobalVar; + +public abstract class BatchDeleteGenerator extends BaseOrderLineUpdateGenerator { + + protected StringBuilder stringBuilder = new StringBuilder(128); + + public BatchDeleteGenerator(double scaleFactor, int round) { + super(scaleFactor, round, GlobalVar.TPCH_UPDATE_DELETE_BATCH_NUM); + } + + public abstract String getBatchDeleteKeys(); + + public void next() { + curIdx += batchSize; + } + + @VisibleForTesting + public abstract String getAllDeleteOrderkey(); + + public void close() { + this.stringBuilder = null; + } + + /** + * @return whether there is data in current batch + */ + public boolean hasData() { + return curIdx < count; + } + + public int getBatchSize() { + return batchSize; + } +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/CustomerGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/CustomerGenerator.java index ca79a8a..dc1b52a 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/CustomerGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/CustomerGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 diff --git a/batch-tool/src/main/java/worker/tpch/generator/LineItemGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/LineItemGenerator.java index bf9eaf3..252dcbb 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/LineItemGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/LineItemGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 @@ -48,16 +46,16 @@ public class LineItemGenerator extends TableRowGenerator { private static final int DISCOUNT_MAX = 10; private static final int PART_KEY_MIN = 1; - private static final int SHIP_DATE_MIN = 1; - private static final int SHIP_DATE_MAX = 121; - private static final int COMMIT_DATE_MIN = 30; - private static final int COMMIT_DATE_MAX = 90; - private static final int RECEIPT_DATE_MIN = 1; - private static final int RECEIPT_DATE_MAX = 30; + public static final int SHIP_DATE_MIN = 1; + public static final int SHIP_DATE_MAX = 121; + public static final int COMMIT_DATE_MIN = 30; + public static final int COMMIT_DATE_MAX = 90; + public static final int RECEIPT_DATE_MIN = 1; + public static final int RECEIPT_DATE_MAX = 30; static final int ITEM_SHIP_DAYS = SHIP_DATE_MAX + RECEIPT_DATE_MAX; - private static final int COMMENT_AVERAGE_LENGTH = 27; + public static final int COMMENT_AVERAGE_LENGTH = 27; private final RandomBoundedInt orderDateRandom = createOrderDateRandom(); private final RandomBoundedInt lineCountRandom = createLineCountRandom(); diff --git a/batch-tool/src/main/java/worker/tpch/generator/NationGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/NationGenerator.java index 45a223b..2a60a9f 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/NationGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/NationGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 diff --git a/batch-tool/src/main/java/worker/tpch/generator/OrderGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/OrderGenerator.java index eb07180..017381a 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/OrderGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/OrderGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 @@ -51,12 +49,12 @@ public class OrderGenerator extends TableRowGenerator { static final int LINE_COUNT_MAX = 7; private static final int ORDER_DATE_MIN = MIN_GENERATE_DATE; private static final int ORDER_DATE_MAX = ORDER_DATE_MIN + (TOTAL_DATE_RANGE - ITEM_SHIP_DAYS - 1); - private static final int CLERK_SCALE_BASE = 1000; + public static final int CLERK_SCALE_BASE = 1000; private static final int LINE_COUNT_MIN = 1; - private static final int COMMENT_AVERAGE_LENGTH = 49; + public static final int COMMENT_AVERAGE_LENGTH = 49; - private static final int ORDER_KEY_SPARSE_BITS = 2; - private static final int ORDER_KEY_SPARSE_KEEP = 3; + protected static final int ORDER_KEY_SPARSE_BITS = 2; + protected static final int ORDER_KEY_SPARSE_KEEP = 3; private final RandomBoundedInt orderDateRandom = createOrderDateRandom(); private final RandomBoundedInt lineCountRandom = createLineCountRandom(); @@ -110,11 +108,11 @@ public OrderGenerator(Distributions distributions, TextPool textPool, linePartKeyRandom.advanceRows(startIndex); } - static RandomBoundedInt createLineCountRandom() { + public static RandomBoundedInt createLineCountRandom() { return new RandomBoundedInt(1434868289, LINE_COUNT_MIN, LINE_COUNT_MAX); } - static RandomBoundedInt createOrderDateRandom() { + public static RandomBoundedInt createOrderDateRandom() { return new RandomBoundedInt(1066728069, ORDER_DATE_MIN, ORDER_DATE_MAX); } diff --git a/batch-tool/src/main/java/worker/tpch/generator/OrderLineDeleteForRollbackGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/OrderLineDeleteForRollbackGenerator.java new file mode 100644 index 0000000..ee7215d --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/OrderLineDeleteForRollbackGenerator.java @@ -0,0 +1,55 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import javax.annotation.concurrent.NotThreadSafe; + +@NotThreadSafe +public class OrderLineDeleteForRollbackGenerator extends BatchDeleteGenerator { + + private StringBuilder stringBuilder = new StringBuilder(128); + + public OrderLineDeleteForRollbackGenerator(double scaleFactor, int round) { + super(scaleFactor, round); + } + + @Override + public String getBatchDeleteKeys() { + stringBuilder.setLength(0); + long start = startIndex + curIdx + 1; + long remain = Math.min(endIndex - start + 1, batchSize); + if (remain <= 0) { + throw new IllegalStateException("No more data in this batch"); + } + for (long i = start; remain > 0; i++, remain--) { + stringBuilder.append(makeInsertOrderKey(i)).append(","); + } + stringBuilder.setLength(stringBuilder.length() - 1); + return stringBuilder.toString(); + } + + @Override + public String getAllDeleteOrderkey() { + long left = count; + for (long i = startIndex + 1; left > 0; i++, left--) { + stringBuilder.append(makeInsertOrderKey(i)).append(","); + } + stringBuilder.setLength(stringBuilder.length() - 1); + return stringBuilder.toString(); + } + +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/OrderLineDeleteGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/OrderLineDeleteGenerator.java new file mode 100644 index 0000000..e59c819 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/OrderLineDeleteGenerator.java @@ -0,0 +1,52 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import javax.annotation.concurrent.NotThreadSafe; + +@NotThreadSafe +public class OrderLineDeleteGenerator extends BatchDeleteGenerator { + + public OrderLineDeleteGenerator(double scaleFactor, int round) { + super(scaleFactor, round); + } + + @Override + public String getBatchDeleteKeys() { + stringBuilder.setLength(0); + long start = startIndex + curIdx + 1; + long remain = Math.min(endIndex - start + 1, batchSize); + if (remain <= 0) { + throw new IllegalStateException("No more data in this batch"); + } + for (long i = start; remain > 0; i++, remain--) { + stringBuilder.append(makeDeleteOrderKey(i)).append(","); + } + stringBuilder.setLength(stringBuilder.length() - 1); + return stringBuilder.toString(); + } + + @Override + public String getAllDeleteOrderkey() { + long left = count; + for (long i = startIndex + 1; left > 0; i++, left--) { + stringBuilder.append(makeDeleteOrderKey(i)).append(","); + } + stringBuilder.setLength(stringBuilder.length() - 1); + return stringBuilder.toString(); + } +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/OrderLineInsertForRollbackGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/OrderLineInsertForRollbackGenerator.java new file mode 100644 index 0000000..774f198 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/OrderLineInsertForRollbackGenerator.java @@ -0,0 +1,356 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import io.airlift.tpch.GenerateUtils; +import worker.tpch.model.TpchTableModel; + +import javax.annotation.concurrent.NotThreadSafe; + +import static io.airlift.tpch.GenerateUtils.GENERATED_DATE_EPOCH_OFFSET; +import static io.airlift.tpch.GenerateUtils.toEpochDate; +import static worker.tpch.generator.OrderGenerator.CUSTOMER_MORTALITY; +import static worker.tpch.generator.PartSupplierGenerator.selectPartSupplier; +import static worker.tpch.util.StringBufferUtil.appendClerk; +import static worker.tpch.util.StringBufferUtil.appendDecimalWithFrac2; +import static worker.tpch.util.StringBufferUtil.formatDateByDays; + +@NotThreadSafe +public class OrderLineInsertForRollbackGenerator extends BaseOrderLineBatchInsertGenerator { + + public OrderLineInsertForRollbackGenerator(double scaleFactor, int round) { + super(scaleFactor, round); + } + + @Override + protected void advanceRandoms() { + orderDateRandom.advanceRows(startIndex); + lineCountRandom.advanceRows(startIndex); + customerKeyRandom.advanceRows(startIndex); + orderPriorityRandom.advanceRows(startIndex); + clerkRandom.advanceRows(startIndex); + ordersCommentRandom.advanceRows(startIndex); + + supplierNumberRandom.advanceRows(startIndex); + + lineQuantityRandom.advanceRows(startIndex); + lineDiscountRandom.advanceRows(startIndex); + lineShipDateRandom.advanceRows(startIndex); + lineTaxRandom.advanceRows(startIndex); + linePartKeyRandom.advanceRows(startIndex); + lineCommitDateRandom.advanceRows(startIndex); + lineReceiptDateRandom.advanceRows(startIndex); + returnedFlagRandom.advanceRows(startIndex); + shipInstructionsRandom.advanceRows(startIndex); + shipModeRandom.advanceRows(startIndex); + lineCommentRandom.advanceRows(startIndex); + } + + @Override + public void nextBatch() { + long start = startIndex + curIdx + 1; + long remain = Math.min(endIndex - start + 1, batchSize); + if (remain <= 0) { + throw new IllegalStateException("No more data in this batch"); + } + orderStringBuilder.setLength(0); + lineitemStringBuilder.setLength(0); + orderStringBuilder.append("INSERT INTO ").append(TpchTableModel.ORDERS.getName()).append(" VALUES "); + lineitemStringBuilder.append("INSERT INTO ").append(TpchTableModel.LINEITEM.getName()).append(" VALUES "); + + for (long i = start; remain > 0; i++, remain--) { + long orderKey = makeDeleteOrderKey(i); + int orderDate = orderDateRandom.nextValue(); + + // generate customer key, taking into account customer mortality rate + long customerKey = customerKeyRandom.nextValue(); + int delta = 1; + while (customerKey % CUSTOMER_MORTALITY == 0) { + customerKey += delta; + customerKey = Math.min(customerKey, maxCustomerKey); + delta *= -1; + } + + long totalPrice = 0; + int shippedCount = 0; + + int lineCount = lineCountRandom.nextValue(); + for (int lineNumber = 0; lineNumber < lineCount; lineNumber++) { + int quantity = lineQuantityRandom.nextValue(); + int discount = lineDiscountRandom.nextValue(); + int tax = lineTaxRandom.nextValue(); + + long partKey = linePartKeyRandom.nextValue(); + + long partPrice = PartGenerator.calculatePartPrice(partKey); + long extendedPrice = partPrice * quantity; + long discountedPrice = extendedPrice * (100 - discount); + totalPrice += ((discountedPrice / 100) * (100 + tax)) / 100; + + int shipDate = lineShipDateRandom.nextValue(); + shipDate += orderDate; + if (GenerateUtils.isInPast(shipDate)) { + shippedCount++; + } + int commitDate = lineCommitDateRandom.nextValue(); + commitDate += orderDate; + int receiptDate = lineReceiptDateRandom.nextValue(); + receiptDate += shipDate; + + shipDate = toEpochDate(shipDate); + commitDate = toEpochDate(commitDate); + receiptDate = toEpochDate(receiptDate); + + String returnedFlag; + if (GenerateUtils.isInPast(receiptDate + GENERATED_DATE_EPOCH_OFFSET)) { + returnedFlag = returnedFlagRandom.nextValue(); + } else { + returnedFlag = "N"; + } + String status; + if (GenerateUtils.isInPast(shipDate + GENERATED_DATE_EPOCH_OFFSET)) { + status = "F"; + } else { + status = "O"; + } + String shipInstructions = shipInstructionsRandom.nextValue(); + String shipMode = shipModeRandom.nextValue(); + String comment = lineCommentRandom.nextValue(); + + int supplierNumber = supplierNumberRandom.nextValue(); + long supplierKey = selectPartSupplier(partKey, supplierNumber, scaleFactor); + lineitemStringBuilder.append('(').append(orderKey) + .append(',').append(partKey) + .append(',').append(supplierKey) + .append(',').append(lineNumber + 1) + .append(',').append(quantity) + .append(","); + + appendDecimalWithFrac2(lineitemStringBuilder, extendedPrice); + lineitemStringBuilder.append(','); + appendDecimalWithFrac2(lineitemStringBuilder, discount); + lineitemStringBuilder.append(','); + appendDecimalWithFrac2(lineitemStringBuilder, tax); + lineitemStringBuilder.append(",\"").append(returnedFlag) + .append("\",\"").append(status) + .append("\",\""); + + formatDateByDays(lineitemStringBuilder, shipDate); + lineitemStringBuilder.append("\",\""); + formatDateByDays(lineitemStringBuilder, commitDate); + lineitemStringBuilder.append("\",\""); + formatDateByDays(lineitemStringBuilder, receiptDate); + lineitemStringBuilder.append("\",\"").append(shipInstructions) + .append("\",\"").append(shipMode) + .append("\",\"").append(comment).append("\"),"); + } + + char orderStatus; + if (shippedCount == lineCount) { + orderStatus = 'F'; + } else if (shippedCount > 0) { + orderStatus = 'P'; + } else { + orderStatus = 'O'; + } + + orderStringBuilder.append('(').append(orderKey) + .append(',').append(customerKey) + .append(",\"").append(orderStatus) + .append("\","); + + appendDecimalWithFrac2(orderStringBuilder, totalPrice); + + orderStringBuilder.append(",\""); + formatDateByDays(orderStringBuilder, orderDate - GENERATED_DATE_EPOCH_OFFSET); + + orderStringBuilder.append("\",\"").append(orderPriorityRandom.nextValue()).append("\",\""); + appendClerk(orderStringBuilder, clerkRandom.nextValue()); + orderStringBuilder.append("\",").append(0) + .append(",\"").append(ordersCommentRandom.nextValue()).append("\"),"); + + orderDateRandom.rowFinished(); + lineCountRandom.rowFinished(); + customerKeyRandom.rowFinished(); + orderPriorityRandom.rowFinished(); + clerkRandom.rowFinished(); + ordersCommentRandom.rowFinished(); + + lineQuantityRandom.rowFinished(); + lineDiscountRandom.rowFinished(); + lineShipDateRandom.rowFinished(); + lineTaxRandom.rowFinished(); + linePartKeyRandom.rowFinished(); + + supplierNumberRandom.rowFinished(); + lineCommitDateRandom.rowFinished(); + lineReceiptDateRandom.rowFinished(); + + returnedFlagRandom.rowFinished(); + shipInstructionsRandom.rowFinished(); + shipModeRandom.rowFinished(); + + lineCommentRandom.rowFinished(); + curIdx++; + } + + orderStringBuilder.setCharAt(orderStringBuilder.length() - 1, ';'); + lineitemStringBuilder.setCharAt(lineitemStringBuilder.length() - 1, ';'); + } + + @Override + public void nextRow() { + orderStringBuilder.setLength(0); + lineitemStringBuilder.setLength(0); + + long orderKey = makeDeleteOrderKey(startIndex + curIdx + 1); + int orderDate = orderDateRandom.nextValue(); + + // generate customer key, taking into account customer mortality rate + long customerKey = customerKeyRandom.nextValue(); + int delta = 1; + while (customerKey % CUSTOMER_MORTALITY == 0) { + customerKey += delta; + customerKey = Math.min(customerKey, maxCustomerKey); + delta *= -1; + } + + long totalPrice = 0; + int shippedCount = 0; + + int lineCount = lineCountRandom.nextValue(); + for (long lineNumber = 0; lineNumber < lineCount; lineNumber++) { + int quantity = lineQuantityRandom.nextValue(); + int discount = lineDiscountRandom.nextValue(); + int tax = lineTaxRandom.nextValue(); + + long partKey = linePartKeyRandom.nextValue(); + + long partPrice = PartGenerator.calculatePartPrice(partKey); + long extendedPrice = partPrice * quantity; + long discountedPrice = extendedPrice * (100 - discount); + totalPrice += ((discountedPrice / 100) * (100 + tax)) / 100; + + int shipDate = lineShipDateRandom.nextValue(); + shipDate += orderDate; + if (GenerateUtils.isInPast(shipDate)) { + shippedCount++; + } + int commitDate = lineCommitDateRandom.nextValue(); + commitDate += orderDate; + int receiptDate = lineReceiptDateRandom.nextValue(); + receiptDate += shipDate; + + shipDate = toEpochDate(shipDate); + commitDate = toEpochDate(commitDate); + receiptDate = toEpochDate(receiptDate); + + String returnedFlag; + if (GenerateUtils.isInPast(receiptDate + GENERATED_DATE_EPOCH_OFFSET)) { + returnedFlag = returnedFlagRandom.nextValue(); + } else { + returnedFlag = "N"; + } + String status; + if (GenerateUtils.isInPast(shipDate + GENERATED_DATE_EPOCH_OFFSET)) { + status = "F"; + } else { + status = "O"; + } + String shipInstructions = shipInstructionsRandom.nextValue(); + String shipMode = shipModeRandom.nextValue(); + String comment = lineCommentRandom.nextValue(); + + int supplierNumber = supplierNumberRandom.nextValue(); + long supplierKey = selectPartSupplier(partKey, supplierNumber, scaleFactor); + lineitemStringBuilder.append(orderKey) + .append('|').append(partKey) + .append('|').append(supplierKey) + .append('|').append(lineNumber + 1) + .append('|').append(quantity) + .append("|"); + appendDecimalWithFrac2(lineitemStringBuilder, extendedPrice); + lineitemStringBuilder.append('|'); + appendDecimalWithFrac2(lineitemStringBuilder, discount); + lineitemStringBuilder.append('|'); + appendDecimalWithFrac2(lineitemStringBuilder, tax); + lineitemStringBuilder.append('|').append(returnedFlag) + .append('|').append(status) + .append('|'); + + formatDateByDays(lineitemStringBuilder, shipDate); + lineitemStringBuilder.append('|'); + formatDateByDays(lineitemStringBuilder, commitDate); + lineitemStringBuilder.append('|'); + formatDateByDays(lineitemStringBuilder, receiptDate); + lineitemStringBuilder.append('|').append(shipInstructions) + .append('|').append(shipMode) + .append('|').append(comment).append('|'); + if (lineNumber < lineCount - 1) { + lineitemStringBuilder.append('\n'); + } + } + + char orderStatus; + if (shippedCount == lineCount) { + orderStatus = 'F'; + } else if (shippedCount > 0) { + orderStatus = 'P'; + } else { + orderStatus = 'O'; + } + + orderStringBuilder.append(orderKey) + .append('|').append(customerKey) + .append('|').append(orderStatus) + .append('|'); + + appendDecimalWithFrac2(orderStringBuilder, totalPrice); + + orderStringBuilder.append("|"); + formatDateByDays(orderStringBuilder, orderDate - GENERATED_DATE_EPOCH_OFFSET); + + orderStringBuilder.append("|").append(orderPriorityRandom.nextValue()).append("|"); + appendClerk(orderStringBuilder, clerkRandom.nextValue()); + orderStringBuilder.append("|").append(0) + .append("|").append(ordersCommentRandom.nextValue()).append("|"); + + orderDateRandom.rowFinished(); + lineCountRandom.rowFinished(); + customerKeyRandom.rowFinished(); + orderPriorityRandom.rowFinished(); + clerkRandom.rowFinished(); + ordersCommentRandom.rowFinished(); + + lineQuantityRandom.rowFinished(); + lineDiscountRandom.rowFinished(); + lineShipDateRandom.rowFinished(); + lineTaxRandom.rowFinished(); + linePartKeyRandom.rowFinished(); + + supplierNumberRandom.rowFinished(); + lineCommitDateRandom.rowFinished(); + lineReceiptDateRandom.rowFinished(); + + returnedFlagRandom.rowFinished(); + shipInstructionsRandom.rowFinished(); + shipModeRandom.rowFinished(); + + lineCommentRandom.rowFinished(); + this.curIdx++; + } +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/OrderLineInsertGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/OrderLineInsertGenerator.java new file mode 100644 index 0000000..7e61e20 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/generator/OrderLineInsertGenerator.java @@ -0,0 +1,398 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.generator; + +import io.airlift.tpch.GenerateUtils; +import worker.tpch.model.TpchTableModel; + +import javax.annotation.concurrent.NotThreadSafe; + +import static io.airlift.tpch.GenerateUtils.GENERATED_DATE_EPOCH_OFFSET; +import static io.airlift.tpch.GenerateUtils.toEpochDate; +import static worker.tpch.generator.OrderGenerator.CUSTOMER_MORTALITY; +import static worker.tpch.generator.PartSupplierGenerator.selectPartSupplier; +import static worker.tpch.util.StringBufferUtil.appendClerk; +import static worker.tpch.util.StringBufferUtil.appendDecimalWithFrac2; +import static worker.tpch.util.StringBufferUtil.formatDateByDays; + +@NotThreadSafe +public class OrderLineInsertGenerator extends BaseOrderLineBatchInsertGenerator { + + private static final int STEPS = 101; + private static final int PROCS = 100; + + public OrderLineInsertGenerator(double scaleFactor, int round) { + super(scaleFactor, round); + } + + @Override + protected void advanceRandoms() { + + long rowcount = (long) (OrderGenerator.SCALE_BASE * scaleFactor); + long extra = rowcount % PROCS; + rowcount /= PROCS; + + for (int i = 0; i < STEPS - 1; i++) { + orderDateRandom.advanceRows(rowcount); + lineCountRandom.advanceRows(rowcount); + customerKeyRandom.advanceRows(rowcount); + orderPriorityRandom.advanceRows(rowcount); + clerkRandom.advanceRows(rowcount); + ordersCommentRandom.advanceRows(rowcount); + + supplierNumberRandom.advanceRows(rowcount); + + lineQuantityRandom.advanceRows(rowcount); + lineDiscountRandom.advanceRows(rowcount); + lineShipDateRandom.advanceRows(rowcount); + lineTaxRandom.advanceRows(rowcount); + linePartKeyRandom.advanceRows(rowcount); + lineCommitDateRandom.advanceRows(rowcount); + lineReceiptDateRandom.advanceRows(rowcount); + returnedFlagRandom.advanceRows(rowcount); + shipInstructionsRandom.advanceRows(rowcount); + shipModeRandom.advanceRows(rowcount); + lineCommentRandom.advanceRows(rowcount); + } + + if (extra != 0) { + orderDateRandom.advanceRows(extra); + lineCountRandom.advanceRows(extra); + customerKeyRandom.advanceRows(extra); + orderPriorityRandom.advanceRows(extra); + clerkRandom.advanceRows(extra); + ordersCommentRandom.advanceRows(extra); + } + + if (startIndex != 0) { + orderDateRandom.advanceRows(startIndex); + lineCountRandom.advanceRows(startIndex); + customerKeyRandom.advanceRows(startIndex); + orderPriorityRandom.advanceRows(startIndex); + clerkRandom.advanceRows(startIndex); + ordersCommentRandom.advanceRows(startIndex); + + supplierNumberRandom.advanceRows(startIndex); + + lineQuantityRandom.advanceRows(startIndex); + lineDiscountRandom.advanceRows(startIndex); + lineTaxRandom.advanceRows(startIndex); + linePartKeyRandom.advanceRows(startIndex); + lineShipDateRandom.advanceRows(startIndex); + lineCommitDateRandom.advanceRows(startIndex); + lineReceiptDateRandom.advanceRows(startIndex); + returnedFlagRandom.advanceRows(startIndex); + shipInstructionsRandom.advanceRows(startIndex); + shipModeRandom.advanceRows(startIndex); + lineCommentRandom.advanceRows(startIndex); + } + } + + @Override + public void nextBatch() { + long start = startIndex + curIdx + 1; + long remain = Math.min(endIndex - start + 1, batchSize); + if (remain <= 0) { + throw new IllegalStateException("No more data in this batch"); + } + orderStringBuilder.setLength(0); + lineitemStringBuilder.setLength(0); + orderStringBuilder.append("INSERT INTO ").append(TpchTableModel.ORDERS.getName()).append(" VALUES "); + lineitemStringBuilder.append("INSERT INTO ").append(TpchTableModel.LINEITEM.getName()).append(" VALUES "); + + for (long i = start; remain > 0; i++, remain--) { + long orderKey = makeInsertOrderKey(i); + int orderDate = orderDateRandom.nextValue(); + + // generate customer key, taking into account customer mortality rate + long customerKey = customerKeyRandom.nextValue(); + int delta = 1; + while (customerKey % CUSTOMER_MORTALITY == 0) { + customerKey += delta; + customerKey = Math.min(customerKey, maxCustomerKey); + delta *= -1; + } + + long totalPrice = 0; + int shippedCount = 0; + + int lineCount = lineCountRandom.nextValue(); + for (int lineNumber = 0; lineNumber < lineCount; lineNumber++) { + int quantity = lineQuantityRandom.nextValue(); + int discount = lineDiscountRandom.nextValue(); + int tax = lineTaxRandom.nextValue(); + + long partKey = linePartKeyRandom.nextValue(); + + long partPrice = PartGenerator.calculatePartPrice(partKey); + long extendedPrice = partPrice * quantity; + long discountedPrice = extendedPrice * (100 - discount); + totalPrice += ((discountedPrice / 100) * (100 + tax)) / 100; + + int shipDate = lineShipDateRandom.nextValue(); + shipDate += orderDate; + if (GenerateUtils.isInPast(shipDate)) { + shippedCount++; + } + int commitDate = lineCommitDateRandom.nextValue(); + commitDate += orderDate; + int receiptDate = lineReceiptDateRandom.nextValue(); + receiptDate += shipDate; + + shipDate = toEpochDate(shipDate); + commitDate = toEpochDate(commitDate); + receiptDate = toEpochDate(receiptDate); + + String returnedFlag; + if (GenerateUtils.isInPast(receiptDate + GENERATED_DATE_EPOCH_OFFSET)) { + returnedFlag = returnedFlagRandom.nextValue(); + } else { + returnedFlag = "N"; + } + String status; + if (GenerateUtils.isInPast(shipDate + GENERATED_DATE_EPOCH_OFFSET)) { + status = "F"; + } else { + status = "O"; + } + String shipInstructions = shipInstructionsRandom.nextValue(); + String shipMode = shipModeRandom.nextValue(); + String comment = lineCommentRandom.nextValue(); + + int supplierNumber = supplierNumberRandom.nextValue(); + long supplierKey = selectPartSupplier(partKey, supplierNumber, scaleFactor); + lineitemStringBuilder.append('(').append(orderKey) + .append(',').append(partKey) + .append(',').append(supplierKey) + .append(',').append(lineNumber + 1) + .append(',').append(quantity) + .append(","); + + appendDecimalWithFrac2(lineitemStringBuilder, extendedPrice); + lineitemStringBuilder.append(','); + appendDecimalWithFrac2(lineitemStringBuilder, discount); + lineitemStringBuilder.append(','); + appendDecimalWithFrac2(lineitemStringBuilder, tax); + lineitemStringBuilder.append(",\"").append(returnedFlag) + .append("\",\"").append(status) + .append("\",\""); + + formatDateByDays(lineitemStringBuilder, shipDate); + lineitemStringBuilder.append("\",\""); + formatDateByDays(lineitemStringBuilder, commitDate); + lineitemStringBuilder.append("\",\""); + formatDateByDays(lineitemStringBuilder, receiptDate); + lineitemStringBuilder.append("\",\"").append(shipInstructions) + .append("\",\"").append(shipMode) + .append("\",\"").append(comment).append("\"),"); + } + + char orderStatus; + if (shippedCount == lineCount) { + orderStatus = 'F'; + } else if (shippedCount > 0) { + orderStatus = 'P'; + } else { + orderStatus = 'O'; + } + + orderStringBuilder.append('(').append(orderKey) + .append(',').append(customerKey) + .append(",\"").append(orderStatus) + .append("\","); + + appendDecimalWithFrac2(orderStringBuilder, totalPrice); + + orderStringBuilder.append(",\""); + formatDateByDays(orderStringBuilder, orderDate - GENERATED_DATE_EPOCH_OFFSET); + + orderStringBuilder.append("\",\"").append(orderPriorityRandom.nextValue()).append("\",\""); + appendClerk(orderStringBuilder, clerkRandom.nextValue()); + orderStringBuilder.append("\",").append(0) + .append(",\"").append(ordersCommentRandom.nextValue()).append("\"),"); + + orderDateRandom.rowFinished(); + lineCountRandom.rowFinished(); + customerKeyRandom.rowFinished(); + orderPriorityRandom.rowFinished(); + clerkRandom.rowFinished(); + ordersCommentRandom.rowFinished(); + + lineQuantityRandom.rowFinished(); + lineDiscountRandom.rowFinished(); + lineShipDateRandom.rowFinished(); + lineTaxRandom.rowFinished(); + linePartKeyRandom.rowFinished(); + + supplierNumberRandom.rowFinished(); + lineCommitDateRandom.rowFinished(); + lineReceiptDateRandom.rowFinished(); + + returnedFlagRandom.rowFinished(); + shipInstructionsRandom.rowFinished(); + shipModeRandom.rowFinished(); + + lineCommentRandom.rowFinished(); + curIdx++; + } + + orderStringBuilder.setCharAt(orderStringBuilder.length() - 1, ';'); + lineitemStringBuilder.setCharAt(lineitemStringBuilder.length() - 1, ';'); + } + + @Override + public void nextRow() { + orderStringBuilder.setLength(0); + lineitemStringBuilder.setLength(0); + + long orderKey = makeInsertOrderKey(startIndex + curIdx + 1); + int orderDate = orderDateRandom.nextValue(); + + // generate customer key, taking into account customer mortality rate + long customerKey = customerKeyRandom.nextValue(); + int delta = 1; + while (customerKey % CUSTOMER_MORTALITY == 0) { + customerKey += delta; + customerKey = Math.min(customerKey, maxCustomerKey); + delta *= -1; + } + + long totalPrice = 0; + int shippedCount = 0; + + int lineCount = lineCountRandom.nextValue(); + for (long lineNumber = 0; lineNumber < lineCount; lineNumber++) { + int quantity = lineQuantityRandom.nextValue(); + int discount = lineDiscountRandom.nextValue(); + int tax = lineTaxRandom.nextValue(); + + long partKey = linePartKeyRandom.nextValue(); + + long partPrice = PartGenerator.calculatePartPrice(partKey); + long extendedPrice = partPrice * quantity; + long discountedPrice = extendedPrice * (100 - discount); + totalPrice += ((discountedPrice / 100) * (100 + tax)) / 100; + + int shipDate = lineShipDateRandom.nextValue(); + shipDate += orderDate; + if (GenerateUtils.isInPast(shipDate)) { + shippedCount++; + } + int commitDate = lineCommitDateRandom.nextValue(); + commitDate += orderDate; + int receiptDate = lineReceiptDateRandom.nextValue(); + receiptDate += shipDate; + + shipDate = toEpochDate(shipDate); + commitDate = toEpochDate(commitDate); + receiptDate = toEpochDate(receiptDate); + + String returnedFlag; + if (GenerateUtils.isInPast(receiptDate + GENERATED_DATE_EPOCH_OFFSET)) { + returnedFlag = returnedFlagRandom.nextValue(); + } else { + returnedFlag = "N"; + } + String status; + if (GenerateUtils.isInPast(shipDate + GENERATED_DATE_EPOCH_OFFSET)) { + status = "F"; + } else { + status = "O"; + } + String shipInstructions = shipInstructionsRandom.nextValue(); + String shipMode = shipModeRandom.nextValue(); + String comment = lineCommentRandom.nextValue(); + + int supplierNumber = supplierNumberRandom.nextValue(); + long supplierKey = selectPartSupplier(partKey, supplierNumber, scaleFactor); + lineitemStringBuilder.append(orderKey) + .append('|').append(partKey) + .append('|').append(supplierKey) + .append('|').append(lineNumber + 1) + .append('|').append(quantity) + .append("|"); + appendDecimalWithFrac2(lineitemStringBuilder, extendedPrice); + lineitemStringBuilder.append('|'); + appendDecimalWithFrac2(lineitemStringBuilder, discount); + lineitemStringBuilder.append('|'); + appendDecimalWithFrac2(lineitemStringBuilder, tax); + lineitemStringBuilder.append('|').append(returnedFlag) + .append('|').append(status) + .append('|'); + + formatDateByDays(lineitemStringBuilder, shipDate); + lineitemStringBuilder.append('|'); + formatDateByDays(lineitemStringBuilder, commitDate); + lineitemStringBuilder.append('|'); + formatDateByDays(lineitemStringBuilder, receiptDate); + lineitemStringBuilder.append('|').append(shipInstructions) + .append('|').append(shipMode) + .append('|').append(comment).append('|'); + if (lineNumber < lineCount - 1) { + lineitemStringBuilder.append('\n'); + } + } + + char orderStatus; + if (shippedCount == lineCount) { + orderStatus = 'F'; + } else if (shippedCount > 0) { + orderStatus = 'P'; + } else { + orderStatus = 'O'; + } + + orderStringBuilder.append(orderKey) + .append('|').append(customerKey) + .append('|').append(orderStatus) + .append('|'); + + appendDecimalWithFrac2(orderStringBuilder, totalPrice); + + orderStringBuilder.append("|"); + formatDateByDays(orderStringBuilder, orderDate - GENERATED_DATE_EPOCH_OFFSET); + + orderStringBuilder.append("|").append(orderPriorityRandom.nextValue()).append("|"); + appendClerk(orderStringBuilder, clerkRandom.nextValue()); + orderStringBuilder.append("|").append(0) + .append("|").append(ordersCommentRandom.nextValue()).append("|"); + + orderDateRandom.rowFinished(); + lineCountRandom.rowFinished(); + customerKeyRandom.rowFinished(); + orderPriorityRandom.rowFinished(); + clerkRandom.rowFinished(); + ordersCommentRandom.rowFinished(); + + lineQuantityRandom.rowFinished(); + lineDiscountRandom.rowFinished(); + lineShipDateRandom.rowFinished(); + lineTaxRandom.rowFinished(); + linePartKeyRandom.rowFinished(); + + supplierNumberRandom.rowFinished(); + lineCommitDateRandom.rowFinished(); + lineReceiptDateRandom.rowFinished(); + + returnedFlagRandom.rowFinished(); + shipInstructionsRandom.rowFinished(); + shipModeRandom.rowFinished(); + + lineCommentRandom.rowFinished(); + this.curIdx++; + } +} diff --git a/batch-tool/src/main/java/worker/tpch/generator/PartGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/PartGenerator.java index 6b230e3..c581253 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/PartGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/PartGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 diff --git a/batch-tool/src/main/java/worker/tpch/generator/PartSupplierGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/PartSupplierGenerator.java index a922d15..6eaf6c4 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/PartSupplierGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/PartSupplierGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 diff --git a/batch-tool/src/main/java/worker/tpch/generator/RegionGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/RegionGenerator.java index 71334af..d0126df 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/RegionGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/RegionGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 diff --git a/batch-tool/src/main/java/worker/tpch/generator/SupplierGenerator.java b/batch-tool/src/main/java/worker/tpch/generator/SupplierGenerator.java index 8869156..5908c54 100644 --- a/batch-tool/src/main/java/worker/tpch/generator/SupplierGenerator.java +++ b/batch-tool/src/main/java/worker/tpch/generator/SupplierGenerator.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 diff --git a/batch-tool/src/main/java/worker/tpch/model/BatchDeleteSqlEvent.java b/batch-tool/src/main/java/worker/tpch/model/BatchDeleteSqlEvent.java new file mode 100644 index 0000000..d5294f0 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/model/BatchDeleteSqlEvent.java @@ -0,0 +1,37 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.model; + +/** + * batch delete values, "1,2,3" + */ +public class BatchDeleteSqlEvent { + + public String getValues() { + return values; + } + + public void setValues(String values) { + this.values = values; + } + + /** + * separated by , + */ + private String values; + +} diff --git a/batch-tool/src/main/java/worker/tpch/model/BatchInsertSql2Event.java b/batch-tool/src/main/java/worker/tpch/model/BatchInsertSql2Event.java new file mode 100644 index 0000000..0fbd562 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/model/BatchInsertSql2Event.java @@ -0,0 +1,49 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.model; + +/** + * two batch insert SQL in a transaction + */ +public class BatchInsertSql2Event { + + /** + * insert into orders + */ + private String sql1; + /** + * insert into lineitem + */ + private String sql2; + + public String getSql1() { + return sql1; + } + + public void setSql1(String sql1) { + this.sql1 = sql1; + } + + public String getSql2() { + return sql2; + } + + public void setSql2(String sql2) { + this.sql2 = sql2; + } + +} diff --git a/batch-tool/src/main/java/worker/tpch/BatchInsertSqlEvent.java b/batch-tool/src/main/java/worker/tpch/model/BatchInsertSqlEvent.java similarity index 96% rename from batch-tool/src/main/java/worker/tpch/BatchInsertSqlEvent.java rename to batch-tool/src/main/java/worker/tpch/model/BatchInsertSqlEvent.java index a455c1d..50bb9f2 100644 --- a/batch-tool/src/main/java/worker/tpch/BatchInsertSqlEvent.java +++ b/batch-tool/src/main/java/worker/tpch/model/BatchInsertSqlEvent.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package worker.tpch; +package worker.tpch.model; /** * batch insert SQL diff --git a/batch-tool/src/main/java/worker/tpch/TpchTableModel.java b/batch-tool/src/main/java/worker/tpch/model/TpchTableModel.java similarity index 98% rename from batch-tool/src/main/java/worker/tpch/TpchTableModel.java rename to batch-tool/src/main/java/worker/tpch/model/TpchTableModel.java index 595872b..719396e 100644 --- a/batch-tool/src/main/java/worker/tpch/TpchTableModel.java +++ b/batch-tool/src/main/java/worker/tpch/model/TpchTableModel.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package worker.tpch; +package worker.tpch.model; public enum TpchTableModel { diff --git a/batch-tool/src/main/java/worker/tpch/TpchProducer.java b/batch-tool/src/main/java/worker/tpch/pruducer/TpchImportProducer.java similarity index 95% rename from batch-tool/src/main/java/worker/tpch/TpchProducer.java rename to batch-tool/src/main/java/worker/tpch/pruducer/TpchImportProducer.java index bbb0b26..8a4888b 100644 --- a/batch-tool/src/main/java/worker/tpch/TpchProducer.java +++ b/batch-tool/src/main/java/worker/tpch/pruducer/TpchImportProducer.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package worker.tpch; +package worker.tpch.pruducer; import com.lmax.disruptor.RingBuffer; import model.ProducerExecutionContext; @@ -30,6 +30,8 @@ import worker.tpch.generator.RegionGenerator; import worker.tpch.generator.SupplierGenerator; import worker.tpch.generator.TableRowGenerator; +import worker.tpch.model.BatchInsertSqlEvent; +import worker.tpch.model.TpchTableModel; import java.util.ArrayList; import java.util.HashMap; @@ -42,9 +44,9 @@ import static model.config.GlobalVar.EMIT_BATCH_SIZE; -public class TpchProducer implements Producer { +public class TpchImportProducer implements Producer { - private static final Logger logger = LoggerFactory.getLogger(TpchProducer.class); + private static final Logger logger = LoggerFactory.getLogger(TpchImportProducer.class); private final ProducerExecutionContext context; private final RingBuffer ringBuffer; @@ -54,14 +56,14 @@ public class TpchProducer implements Producer { private Map> tableGeneratorsMap; - public TpchProducer(ProducerExecutionContext context, List tableNames, - RingBuffer ringBuffer) { + public TpchImportProducer(ProducerExecutionContext context, List tableNames, + RingBuffer ringBuffer) { this.context = context; this.ringBuffer = ringBuffer; this.scale = context.getScale(); if (scale <= 0) { - throw new IllegalArgumentException("Scale must be a positive integer"); + throw new IllegalArgumentException("TPC-H scale must be a positive integer"); } this.executor = context.getProducerExecutor(); @@ -315,9 +317,9 @@ protected void emitLineBuffer() { BatchInsertSqlEvent event; try { event = ringBuffer.get(sequence); - sqlBuffer.setCharAt(sqlBuffer.length() - 1, ';'); // 最后一个逗号替换为分号 + // 最后一个逗号替换为分号 + sqlBuffer.setCharAt(sqlBuffer.length() - 1, ';'); String sql = sqlBuffer.toString(); -// System.out.println(sql); event.setSql(sql); refreshBuffer(); } finally { diff --git a/batch-tool/src/main/java/worker/tpch/pruducer/TpchUDeleteProducer.java b/batch-tool/src/main/java/worker/tpch/pruducer/TpchUDeleteProducer.java new file mode 100644 index 0000000..a76a9b7 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/pruducer/TpchUDeleteProducer.java @@ -0,0 +1,105 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.pruducer; + +import com.lmax.disruptor.RingBuffer; +import model.ProducerExecutionContext; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import worker.common.Producer; +import worker.tpch.generator.BatchDeleteGenerator; +import worker.tpch.generator.OrderLineDeleteForRollbackGenerator; +import worker.tpch.generator.OrderLineDeleteGenerator; +import worker.tpch.model.BatchDeleteSqlEvent; + +import java.util.concurrent.ThreadPoolExecutor; + +public class TpchUDeleteProducer implements Producer { + + private static final Logger logger = LoggerFactory.getLogger(TpchUDeleteProducer.class); + + private final ProducerExecutionContext context; + private final RingBuffer ringBuffer; + private final ThreadPoolExecutor executor; + private final int scale; + private final boolean forRollbackInsert; + private final BatchDeleteGenerator generator; + + public TpchUDeleteProducer(ProducerExecutionContext context, + RingBuffer ringBuffer, + int curRound) { + this(context, ringBuffer, curRound, false); + } + + /** + * @param curRound the n-th round of update, starting from 1 + */ + public TpchUDeleteProducer(ProducerExecutionContext context, + RingBuffer ringBuffer, + int curRound, boolean forRollbackInsert) { + this.context = context; + this.ringBuffer = ringBuffer; + this.executor = context.getProducerExecutor(); + + this.scale = context.getScale(); + if (scale <= 0) { + throw new IllegalArgumentException("TPC-H scale must be a positive integer"); + } + + this.forRollbackInsert = forRollbackInsert; + if (forRollbackInsert) { + this.generator = new OrderLineDeleteForRollbackGenerator(scale, curRound); + } else { + this.generator = new OrderLineDeleteGenerator(scale, curRound); + } + } + + @Override + public void produce() { + executor.submit(() -> { + try { + while (generator.hasData()) { + String batchDeleteOrderkey = generator.getBatchDeleteKeys(); + long sequence = ringBuffer.next(); + BatchDeleteSqlEvent event; + try { + event = ringBuffer.get(sequence); + event.setValues(batchDeleteOrderkey); + } finally { + context.getEmittedDataCounter().getAndIncrement(); + ringBuffer.publish(sequence); + } + generator.next(); + } + logger.info("TPC-H round-{} delete producer has finished, delete orders: {}", generator.getRound(), + getOrdersCount()); + } catch (Exception e) { + logger.error("TPC-H round-{} delete producer failed, due to: {}", generator.getRound(), + e.getMessage(), e); + context.setException(e); + } finally { + context.getCountDownLatch().countDown(); + generator.close(); + } + + }); + } + + public long getOrdersCount() { + return generator.getCount(); + } +} diff --git a/batch-tool/src/main/java/worker/tpch/pruducer/TpchUInsertProducer.java b/batch-tool/src/main/java/worker/tpch/pruducer/TpchUInsertProducer.java new file mode 100644 index 0000000..c7d4699 --- /dev/null +++ b/batch-tool/src/main/java/worker/tpch/pruducer/TpchUInsertProducer.java @@ -0,0 +1,106 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 worker.tpch.pruducer; + +import com.lmax.disruptor.RingBuffer; +import model.ProducerExecutionContext; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import worker.common.Producer; +import worker.tpch.generator.BaseOrderLineBatchInsertGenerator; +import worker.tpch.generator.OrderLineInsertForRollbackGenerator; +import worker.tpch.generator.OrderLineInsertGenerator; +import worker.tpch.model.BatchInsertSql2Event; + +import java.util.concurrent.ThreadPoolExecutor; + +public class TpchUInsertProducer implements Producer { + + private static final Logger logger = LoggerFactory.getLogger(TpchUInsertProducer.class); + + private final ProducerExecutionContext context; + private final RingBuffer ringBuffer; + private final ThreadPoolExecutor executor; + private final int scale; + private final boolean forRollbackInsert; + private final BaseOrderLineBatchInsertGenerator generator; + + public TpchUInsertProducer(ProducerExecutionContext context, + RingBuffer ringBuffer, + int curRound) { + this(context, ringBuffer, curRound, false); + } + + /** + * @param curRound the n-th round of update, starting from 1 + */ + public TpchUInsertProducer(ProducerExecutionContext context, + RingBuffer ringBuffer, + int curRound, boolean forRollbackInsert) { + this.context = context; + this.ringBuffer = ringBuffer; + this.executor = context.getProducerExecutor(); + + this.scale = context.getScale(); + if (scale <= 0) { + throw new IllegalArgumentException("TPC-H scale must be a positive integer"); + } + this.forRollbackInsert = forRollbackInsert; + if (forRollbackInsert) { + this.generator = new OrderLineInsertForRollbackGenerator(scale, curRound); + } else { + this.generator = new OrderLineInsertGenerator(scale, curRound); + } + } + + @Override + public void produce() { + executor.submit(() -> { + try { + while (generator.hasData()) { + generator.nextBatch(); + + String insertOrdersSqls = generator.getInsertOrdersSqls(); + String insertLineitemSqls = generator.getInsertLineitemSqls(); + long sequence = ringBuffer.next(); + BatchInsertSql2Event event; + try { + event = ringBuffer.get(sequence); + event.setSql1(insertOrdersSqls); + event.setSql2(insertLineitemSqls); + } finally { + context.getEmittedDataCounter().getAndIncrement(); + ringBuffer.publish(sequence); + } + } + logger.info("TPC-H round-{} insert producer has finished, insert orders: {}", generator.getRound(), + getOrdersCount()); + } catch (Exception e) { + logger.error("TPC-H round-{} insert producer failed, due to: {}", generator.getRound(), + e.getMessage(), e); + context.setException(e); + } finally { + context.getCountDownLatch().countDown(); + generator.close(); + } + }); + } + + public long getOrdersCount() { + return generator.getCount(); + } +} diff --git a/batch-tool/src/main/java/worker/tpch/util/RandomAlphaNumeric.java b/batch-tool/src/main/java/worker/tpch/util/RandomAlphaNumeric.java index 0d84922..ac4e6f5 100644 --- a/batch-tool/src/main/java/worker/tpch/util/RandomAlphaNumeric.java +++ b/batch-tool/src/main/java/worker/tpch/util/RandomAlphaNumeric.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 @@ -18,6 +16,9 @@ import io.airlift.tpch.AbstractRandomInt; +/** + * port from io.airlift.tpch + */ public class RandomAlphaNumeric extends AbstractRandomInt { private static final char[] ALPHA_NUMERIC = diff --git a/batch-tool/src/main/java/worker/tpch/util/RandomPhoneNumber.java b/batch-tool/src/main/java/worker/tpch/util/RandomPhoneNumber.java index e3859cb..c303f29 100644 --- a/batch-tool/src/main/java/worker/tpch/util/RandomPhoneNumber.java +++ b/batch-tool/src/main/java/worker/tpch/util/RandomPhoneNumber.java @@ -1,6 +1,4 @@ /* - * Copyright [2013-2021], Alibaba Group Holding Limited - * * Licensed 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 @@ -18,6 +16,9 @@ import io.airlift.tpch.AbstractRandomInt; +/** + * port from io.airlift.tpch + */ public class RandomPhoneNumber extends AbstractRandomInt { // limited by country codes in phone numbers diff --git a/batch-tool/src/test/java/tpch/TpchUpdateTest.java b/batch-tool/src/test/java/tpch/TpchUpdateTest.java new file mode 100644 index 0000000..4af3adf --- /dev/null +++ b/batch-tool/src/test/java/tpch/TpchUpdateTest.java @@ -0,0 +1,316 @@ +/* + * Copyright [2013-2021], Alibaba Group Holding Limited + * + * Licensed 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 tpch; + +import org.junit.Assert; +import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import worker.tpch.generator.OrderLineDeleteForRollbackGenerator; +import worker.tpch.generator.OrderLineDeleteGenerator; +import worker.tpch.generator.OrderLineInsertForRollbackGenerator; +import worker.tpch.generator.OrderLineInsertGenerator; + +import java.io.BufferedReader; +import java.io.File; +import java.io.FileReader; +import java.io.IOException; + +public class TpchUpdateTest { + + private static final Logger logger = LoggerFactory.getLogger(TpchUpdateTest.class); + + private static final File TPCH_RESOURCE_DIR = new File(TpchUpdateTest.class.getResource("/").getPath() + "tpch/"); + + @Test + public void testGenDelete1G() throws IOException { + testDelete(1, 3); + } + + @Test + public void testInsertForRollback1G() throws IOException { + testInsertForRollback(1, 3); + } + + @Test + public void testGenDelete10G() throws IOException { + testDelete(10, 2); + } + + @Test + public void testInsertForRollback10G() throws IOException { + testInsertForRollback(10, 2); + } + + @Test + public void testGenInsert1G() throws IOException { + testInsert(1, 2); + } + + @Test + public void testDeleteForRollback1G() throws IOException { + testDeleteForRollback(1, 2); + } + + @Test + public void testGenInsert5G() throws IOException { + testInsert(5, 3); + } + + @Test + public void testDeleteForRollback5G() throws IOException { + testDeleteForRollback(5, 3); + } + + @Test + public void testDeleteBatch1G() { + final int batchSize = 40; + OrderLineDeleteGenerator generator = new OrderLineDeleteGenerator(1, 1); + generator.setBatchSize(batchSize); + int round = 1500 / batchSize; + int remain = 1500 % batchSize; + for (int i = 0; i < round; i++) { + Assert.assertTrue(generator.hasData()); + String batchKeys = generator.getBatchDeleteKeys(); + String[] split = batchKeys.split(","); + Assert.assertEquals(batchSize, split.length); + generator.next(); + } + String batchKeys = generator.getBatchDeleteKeys(); + String[] split = batchKeys.split(","); + Assert.assertEquals(remain, split.length); + generator.next(); + Assert.assertFalse(generator.hasData()); + } + + @Test + public void testInsertBatch1G() { + final int batchSize = 40; + final int expectOrdersRows = 1500; + final int expectLineitemRows = 5822; + OrderLineInsertGenerator generator = new OrderLineInsertGenerator(1, 1); + generator.setBatchSize(batchSize); + int round = 1500 / batchSize; + int remain = 1500 % batchSize; + int curOrdersRows = 0; + int curLineitemRows = 0; + + for (int i = 0; i < round; i++) { + Assert.assertTrue(generator.hasData()); + generator.nextBatch(); + String insertOrdersSql = generator.getInsertOrdersSqls(); + String insertLineitemSql = generator.getInsertLineitemSqls(); + + String[] ordersRows = insertOrdersSql.split("\\),\\("); + String[] lineitemRows = insertLineitemSql.split("\\),\\("); + curOrdersRows += ordersRows.length; + curLineitemRows += lineitemRows.length; + } + Assert.assertTrue(generator.hasData()); + generator.nextBatch(); + String insertOrdersSql = generator.getInsertOrdersSqls(); + String insertLineitemSql = generator.getInsertLineitemSqls(); + + String[] ordersRows = insertOrdersSql.split("\\),\\("); + String[] lineitemRows = insertLineitemSql.split("\\),\\("); + curOrdersRows += ordersRows.length; + curLineitemRows += lineitemRows.length; + + Assert.assertEquals("Orders row count does not match", expectOrdersRows, curOrdersRows); + Assert.assertEquals("Lineitem row count does not match", expectLineitemRows, curLineitemRows); + Assert.assertFalse(generator.hasData()); + } + + private void testDelete(int scale, int round) throws IOException { + File deleteFileDir = new File(TPCH_RESOURCE_DIR, String.format("delete-%dg-%d", scale, round)); + if (!deleteFileDir.exists() || !deleteFileDir.isDirectory()) { + Assert.fail(deleteFileDir.getAbsolutePath() + " not exists or not directory"); + } + for (int i = 1; i <= round; i++) { + OrderLineDeleteGenerator generator = new OrderLineDeleteGenerator(scale, i); + String batchDeleteOrderkey = generator.getAllDeleteOrderkey(); + String[] keys = batchDeleteOrderkey.split(","); + int idx = 0; + + File deletePart = new File(deleteFileDir, "delete." + i); + if (!deletePart.exists() || !deletePart.isFile()) { + Assert.fail(deletePart.getAbsolutePath() + " not exists or not file"); + } + try (BufferedReader reader = new BufferedReader(new FileReader(deletePart))) { + String line = null; + int lineIdx = 1; + while ((line = reader.readLine()) != null) { + String deleteKey = line.substring(0, line.length() - 1); + Assert.assertTrue(idx < keys.length); + Assert.assertEquals("Failed in file: " + deletePart.getName() + ", at line: " + lineIdx, + deleteKey, keys[idx]); + idx++; + lineIdx++; + } + } + logger.info("{} checked successfully", deletePart.getName()); + } + } + + private void testInsertForRollback(int scale, int round) throws IOException { + File deleteFileDir = new File(TPCH_RESOURCE_DIR, String.format("delete-%dg-%d", scale, round)); + if (!deleteFileDir.exists() || !deleteFileDir.isDirectory()) { + Assert.fail(deleteFileDir.getAbsolutePath() + " not exists or not directory"); + } + for (int i = 1; i <= round; i++) { + OrderLineInsertForRollbackGenerator generator = + new OrderLineInsertForRollbackGenerator(scale, i); + + File deletePart = new File(deleteFileDir, "delete." + i); + if (!deletePart.exists() || !deletePart.isFile()) { + Assert.fail(deletePart.getAbsolutePath() + " not exists or not file"); + } + try (BufferedReader reader = new BufferedReader(new FileReader(deletePart))) { + String line = null; + int lineIdx = 1; + while ((line = reader.readLine()) != null) { + String expectedInsertKey = line.substring(0, line.length() - 1); + generator.nextRow(); + // check orders + String orderRow = generator.getOrderRow(); + String[] actualParts = orderRow.split("\\|"); + + Assert.assertEquals("Failed in file: " + deletePart.getName() + ", at line: " + lineIdx, + expectedInsertKey, actualParts[0]); + lineIdx++; + } + } + logger.info("{} checked for rollback successfully", deletePart.getName()); + } + } + + private void testInsert(int scale, int round) throws IOException { + File insertFileDir = new File(TPCH_RESOURCE_DIR, String.format("insert-%dg-%d", scale, round)); + if (!insertFileDir.exists() || !insertFileDir.isDirectory()) { + Assert.fail(insertFileDir.getAbsolutePath() + " not exists or not directory"); + } + for (int i = 1; i <= round; i++) { + OrderLineInsertGenerator insertGenerator = new OrderLineInsertGenerator(scale, i); + + File insertLineitemPart = new File(insertFileDir, "lineitem.tbl.u" + i); + File insertOrdersPart = new File(insertFileDir, "orders.tbl.u" + i); + if (!insertLineitemPart.exists() || !insertLineitemPart.isFile()) { + Assert.fail(insertLineitemPart.getAbsolutePath() + " not exists or not file"); + } + if (!insertOrdersPart.exists() || !insertOrdersPart.isFile()) { + Assert.fail(insertOrdersPart.getAbsolutePath() + " not exists or not file"); + } + + try (BufferedReader orderReader = new BufferedReader(new FileReader(insertOrdersPart)); + BufferedReader lineitemReader = new BufferedReader(new FileReader(insertLineitemPart))) { + int orderFileLineIdx = 1; + int lineitemFileLineIdx = 1; + String[] expectedParts; + String[] actualParts; + while (insertGenerator.hasData()) { + insertGenerator.nextRow(); + // check orders + String orderRow = insertGenerator.getOrderRow(); + String orderStrLine = orderReader.readLine(); + Assert.assertNotNull(orderStrLine); + orderStrLine = orderStrLine.substring(0, orderStrLine.length() - 1); + expectedParts = orderStrLine.split("\\|"); + actualParts = orderRow.split("\\|"); + Assert.assertEquals( + "Failed in file: " + insertOrdersPart.getName() + ", at line: " + orderFileLineIdx, + expectedParts.length, actualParts.length); + for (int j = 0; j < expectedParts.length; j++) { + String actualValues = actualParts[j]; + if (actualValues.startsWith("\"")) { + actualValues = actualValues.substring(1, actualValues.length() - 1); + + Assert.assertEquals( + "Failed in file: " + insertOrdersPart.getName() + ", at line: " + orderFileLineIdx + + ", field: " + + j, expectedParts[j], actualValues); + + } + } + orderFileLineIdx++; + + // check lineitem + String lineitemRowCollect = insertGenerator.getLineitemRows(); + String[] lineitemRows = lineitemRowCollect.split("\n"); + for (String lineitemRow : lineitemRows) { + String lineitemStrLine = lineitemReader.readLine(); + Assert.assertNotNull(lineitemStrLine); + expectedParts = lineitemStrLine.split("\\|"); + actualParts = lineitemRow.split("\\|"); + for (int j = 0; j < expectedParts.length; j++) { + String actualValues = actualParts[j]; + if (actualValues.startsWith("\"")) { + actualValues = actualValues.substring(1, actualValues.length() - 1); + + Assert.assertEquals( + "Failed in file: " + insertLineitemPart.getName() + ", at line: " + + lineitemFileLineIdx + ", field: " + + j, expectedParts[j], actualValues); + + } + } + lineitemFileLineIdx++; + } + + } + + Assert.assertNull(orderReader.readLine()); + Assert.assertNull(lineitemReader.readLine()); + + logger.info("{} checked successfully", insertOrdersPart.getName()); + logger.info("{} checked successfully", insertLineitemPart.getName()); + } + } + } + + private void testDeleteForRollback(int scale, int round) throws IOException { + File insertFileDir = new File(TPCH_RESOURCE_DIR, String.format("insert-%dg-%d", scale, round)); + if (!insertFileDir.exists() || !insertFileDir.isDirectory()) { + Assert.fail(insertFileDir.getAbsolutePath() + " not exists or not directory"); + } + for (int i = 1; i <= round; i++) { + OrderLineDeleteForRollbackGenerator generator = + new OrderLineDeleteForRollbackGenerator(scale, i); + String batchDeleteOrderkey = generator.getAllDeleteOrderkey(); + String[] keys = batchDeleteOrderkey.split(","); + int idx = 0; + + File insertOrdersPart = new File(insertFileDir, "orders.tbl.u" + i); + if (!insertOrdersPart.exists() || !insertOrdersPart.isFile()) { + Assert.fail(insertOrdersPart.getAbsolutePath() + " not exists or not file"); + } + + try (BufferedReader orderReader = new BufferedReader(new FileReader(insertOrdersPart))) { + String line = null; + while ((line = orderReader.readLine()) != null) { + String actualOrderKey = keys[idx]; + String expectOrderKey = line.substring(0, line.indexOf('|')); + + Assert.assertEquals( + "Failed at index: " + idx, expectOrderKey, actualOrderKey); + idx++; + } + } + Assert.assertEquals("Expected all keys are matched", keys.length, idx); + logger.info("{} checked for rollback successfully", insertOrdersPart.getName()); + } + } +} diff --git a/batch-tool/src/test/resources/tpch/delete-10g-2/delete.1 b/batch-tool/src/test/resources/tpch/delete-10g-2/delete.1 new file mode 100644 index 0000000..e569fb8 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/delete-10g-2/delete.1 @@ -0,0 +1,15000 @@ +1| +2| +3| +4| +5| +6| +7| +32| +33| +34| +35| +36| +37| +38| +39| +64| +65| +66| +67| +68| +69| +70| +71| +96| +97| +98| +99| +100| +101| +102| +103| +128| +129| +130| +131| +132| +133| +134| +135| +160| +161| +162| +163| +164| +165| +166| +167| +192| +193| +194| +195| +196| +197| +198| +199| +224| +225| +226| +227| +228| +229| +230| +231| +256| +257| +258| +259| +260| +261| +262| +263| +288| +289| +290| +291| +292| +293| +294| +295| +320| +321| +322| +323| +324| +325| +326| +327| +352| +353| +354| +355| +356| +357| +358| +359| +384| +385| +386| +387| +388| +389| +390| +391| +416| +417| +418| +419| +420| +421| +422| +423| +448| +449| +450| +451| +452| +453| +454| +455| +480| +481| +482| +483| +484| +485| +486| +487| +512| +513| +514| +515| +516| +517| +518| +519| +544| +545| +546| +547| +548| +549| +550| +551| +576| +577| +578| +579| +580| +581| +582| +583| +608| +609| +610| +611| +612| +613| +614| +615| +640| +641| +642| +643| +644| +645| +646| +647| +672| +673| +674| +675| +676| +677| +678| +679| +704| +705| +706| +707| +708| +709| +710| +711| +736| +737| +738| +739| +740| +741| +742| +743| +768| +769| +770| +771| +772| +773| +774| +775| +800| +801| +802| +803| +804| +805| +806| +807| +832| +833| +834| +835| +836| +837| +838| +839| +864| +865| +866| +867| +868| +869| +870| +871| +896| +897| +898| +899| +900| +901| +902| +903| +928| +929| +930| +931| +932| +933| +934| +935| +960| +961| +962| +963| +964| +965| +966| +967| +992| +993| +994| +995| +996| +997| +998| +999| +1024| +1025| +1026| +1027| +1028| +1029| +1030| +1031| +1056| +1057| +1058| +1059| +1060| +1061| +1062| +1063| +1088| +1089| +1090| +1091| +1092| +1093| +1094| +1095| +1120| +1121| +1122| +1123| +1124| +1125| +1126| +1127| +1152| +1153| +1154| +1155| +1156| +1157| +1158| +1159| +1184| +1185| +1186| +1187| +1188| +1189| +1190| +1191| +1216| +1217| +1218| +1219| +1220| +1221| +1222| +1223| +1248| +1249| +1250| +1251| +1252| +1253| +1254| +1255| +1280| +1281| +1282| +1283| +1284| +1285| +1286| +1287| +1312| +1313| +1314| +1315| +1316| +1317| +1318| +1319| +1344| +1345| +1346| +1347| +1348| +1349| +1350| +1351| +1376| +1377| +1378| +1379| +1380| +1381| +1382| +1383| +1408| +1409| +1410| +1411| +1412| +1413| +1414| +1415| +1440| +1441| +1442| +1443| +1444| +1445| +1446| +1447| +1472| +1473| +1474| +1475| +1476| +1477| +1478| +1479| +1504| +1505| +1506| +1507| +1508| +1509| +1510| +1511| +1536| +1537| +1538| +1539| +1540| +1541| +1542| +1543| +1568| +1569| +1570| +1571| +1572| +1573| +1574| +1575| +1600| +1601| +1602| +1603| +1604| +1605| +1606| +1607| +1632| +1633| +1634| +1635| +1636| +1637| +1638| +1639| +1664| +1665| +1666| +1667| +1668| +1669| +1670| +1671| +1696| +1697| +1698| +1699| +1700| +1701| +1702| +1703| +1728| +1729| +1730| +1731| +1732| +1733| +1734| +1735| +1760| +1761| +1762| +1763| +1764| +1765| +1766| +1767| +1792| +1793| +1794| +1795| +1796| +1797| +1798| +1799| +1824| +1825| +1826| +1827| +1828| +1829| +1830| +1831| +1856| +1857| +1858| +1859| +1860| +1861| +1862| +1863| +1888| +1889| +1890| +1891| +1892| +1893| +1894| +1895| +1920| +1921| +1922| +1923| +1924| +1925| +1926| +1927| +1952| +1953| +1954| +1955| +1956| +1957| +1958| +1959| +1984| +1985| +1986| +1987| +1988| +1989| +1990| +1991| +2016| +2017| +2018| +2019| +2020| +2021| +2022| +2023| +2048| +2049| +2050| +2051| +2052| +2053| +2054| +2055| +2080| +2081| +2082| +2083| +2084| +2085| +2086| +2087| +2112| +2113| +2114| +2115| +2116| +2117| +2118| +2119| +2144| +2145| +2146| +2147| +2148| +2149| +2150| +2151| +2176| +2177| +2178| +2179| +2180| +2181| +2182| +2183| +2208| +2209| +2210| +2211| +2212| +2213| +2214| +2215| +2240| +2241| +2242| +2243| +2244| +2245| +2246| +2247| +2272| +2273| +2274| +2275| +2276| +2277| +2278| +2279| +2304| +2305| +2306| +2307| +2308| +2309| +2310| +2311| +2336| +2337| +2338| +2339| +2340| +2341| +2342| +2343| +2368| +2369| +2370| +2371| +2372| +2373| +2374| +2375| +2400| +2401| +2402| +2403| +2404| +2405| +2406| +2407| +2432| +2433| +2434| +2435| +2436| +2437| +2438| +2439| +2464| +2465| +2466| +2467| +2468| +2469| +2470| +2471| +2496| +2497| +2498| +2499| +2500| +2501| +2502| +2503| +2528| +2529| +2530| +2531| +2532| +2533| +2534| +2535| +2560| +2561| +2562| +2563| +2564| +2565| +2566| +2567| +2592| +2593| +2594| +2595| +2596| +2597| +2598| +2599| +2624| +2625| +2626| +2627| +2628| +2629| +2630| +2631| +2656| +2657| +2658| +2659| +2660| +2661| +2662| +2663| +2688| +2689| +2690| +2691| +2692| +2693| +2694| +2695| +2720| +2721| +2722| +2723| +2724| +2725| +2726| +2727| +2752| +2753| +2754| +2755| +2756| +2757| +2758| +2759| +2784| +2785| +2786| +2787| +2788| +2789| +2790| +2791| +2816| +2817| +2818| +2819| +2820| +2821| +2822| +2823| +2848| +2849| +2850| +2851| +2852| +2853| +2854| +2855| +2880| +2881| +2882| +2883| +2884| +2885| +2886| +2887| +2912| +2913| +2914| +2915| +2916| +2917| +2918| +2919| +2944| +2945| +2946| +2947| +2948| +2949| +2950| +2951| +2976| +2977| +2978| +2979| +2980| +2981| +2982| +2983| +3008| +3009| +3010| +3011| +3012| +3013| +3014| +3015| +3040| +3041| +3042| +3043| +3044| +3045| +3046| +3047| +3072| +3073| +3074| +3075| +3076| +3077| +3078| +3079| +3104| +3105| +3106| +3107| +3108| +3109| +3110| +3111| +3136| +3137| +3138| +3139| +3140| +3141| +3142| +3143| +3168| +3169| +3170| +3171| +3172| +3173| +3174| +3175| +3200| +3201| +3202| +3203| +3204| +3205| +3206| +3207| +3232| +3233| +3234| +3235| +3236| +3237| +3238| +3239| +3264| +3265| +3266| +3267| +3268| +3269| +3270| +3271| +3296| +3297| +3298| +3299| +3300| +3301| +3302| +3303| +3328| +3329| +3330| +3331| +3332| +3333| +3334| +3335| +3360| +3361| +3362| +3363| +3364| +3365| +3366| +3367| +3392| +3393| +3394| +3395| +3396| +3397| +3398| +3399| +3424| +3425| +3426| +3427| +3428| +3429| +3430| +3431| +3456| +3457| +3458| +3459| +3460| +3461| +3462| +3463| +3488| +3489| +3490| +3491| +3492| +3493| +3494| +3495| +3520| +3521| +3522| +3523| +3524| +3525| +3526| +3527| +3552| +3553| +3554| +3555| +3556| +3557| +3558| +3559| +3584| +3585| +3586| +3587| +3588| +3589| +3590| +3591| +3616| +3617| +3618| +3619| +3620| +3621| +3622| +3623| +3648| +3649| +3650| +3651| +3652| +3653| +3654| +3655| +3680| +3681| +3682| +3683| +3684| +3685| +3686| +3687| +3712| +3713| +3714| +3715| +3716| +3717| +3718| +3719| +3744| +3745| +3746| +3747| +3748| +3749| +3750| +3751| +3776| +3777| +3778| +3779| +3780| +3781| +3782| +3783| +3808| +3809| +3810| +3811| +3812| +3813| +3814| +3815| +3840| +3841| +3842| +3843| +3844| +3845| +3846| +3847| +3872| +3873| +3874| +3875| +3876| +3877| +3878| +3879| +3904| +3905| +3906| +3907| +3908| +3909| +3910| +3911| +3936| +3937| +3938| +3939| +3940| +3941| +3942| +3943| +3968| +3969| +3970| +3971| +3972| +3973| +3974| +3975| +4000| +4001| +4002| +4003| +4004| +4005| +4006| +4007| +4032| +4033| +4034| +4035| +4036| +4037| +4038| +4039| +4064| +4065| +4066| +4067| +4068| +4069| +4070| +4071| +4096| +4097| +4098| +4099| +4100| +4101| +4102| +4103| +4128| +4129| +4130| +4131| +4132| +4133| +4134| +4135| +4160| +4161| +4162| +4163| +4164| +4165| +4166| +4167| +4192| +4193| +4194| +4195| +4196| +4197| +4198| +4199| +4224| +4225| +4226| +4227| +4228| +4229| +4230| +4231| +4256| +4257| +4258| +4259| +4260| +4261| +4262| +4263| +4288| +4289| +4290| +4291| +4292| +4293| +4294| +4295| +4320| +4321| +4322| +4323| +4324| +4325| +4326| +4327| +4352| +4353| +4354| +4355| +4356| +4357| +4358| +4359| +4384| +4385| +4386| +4387| +4388| +4389| +4390| +4391| +4416| +4417| +4418| +4419| +4420| +4421| +4422| +4423| +4448| +4449| +4450| +4451| +4452| +4453| +4454| +4455| +4480| +4481| +4482| +4483| +4484| +4485| +4486| +4487| +4512| +4513| +4514| +4515| +4516| +4517| +4518| +4519| +4544| +4545| +4546| +4547| +4548| +4549| +4550| +4551| +4576| +4577| +4578| +4579| +4580| +4581| +4582| +4583| +4608| +4609| +4610| +4611| +4612| +4613| +4614| +4615| +4640| +4641| +4642| +4643| +4644| +4645| +4646| +4647| +4672| +4673| +4674| +4675| +4676| +4677| +4678| +4679| +4704| +4705| +4706| +4707| +4708| +4709| +4710| +4711| +4736| +4737| +4738| +4739| +4740| +4741| +4742| +4743| +4768| +4769| +4770| +4771| +4772| +4773| +4774| +4775| +4800| +4801| +4802| +4803| +4804| +4805| +4806| +4807| +4832| +4833| +4834| +4835| +4836| +4837| +4838| +4839| +4864| +4865| +4866| +4867| +4868| +4869| +4870| +4871| +4896| +4897| +4898| +4899| +4900| +4901| +4902| +4903| +4928| +4929| +4930| +4931| +4932| +4933| +4934| +4935| +4960| +4961| +4962| +4963| +4964| +4965| +4966| +4967| +4992| +4993| +4994| +4995| +4996| +4997| +4998| +4999| +5024| +5025| +5026| +5027| +5028| +5029| +5030| +5031| +5056| +5057| +5058| +5059| +5060| +5061| +5062| +5063| +5088| +5089| +5090| +5091| +5092| +5093| +5094| +5095| +5120| +5121| +5122| +5123| +5124| +5125| +5126| +5127| +5152| +5153| +5154| +5155| +5156| +5157| +5158| +5159| +5184| +5185| +5186| +5187| +5188| +5189| +5190| +5191| +5216| +5217| +5218| +5219| +5220| +5221| +5222| +5223| +5248| +5249| +5250| +5251| +5252| +5253| +5254| +5255| +5280| +5281| +5282| +5283| +5284| +5285| +5286| +5287| +5312| +5313| +5314| +5315| +5316| +5317| +5318| +5319| +5344| +5345| +5346| +5347| +5348| +5349| +5350| +5351| +5376| +5377| +5378| +5379| +5380| +5381| +5382| +5383| +5408| +5409| +5410| +5411| +5412| +5413| +5414| +5415| +5440| +5441| +5442| +5443| +5444| +5445| +5446| +5447| +5472| +5473| +5474| +5475| +5476| +5477| +5478| +5479| +5504| +5505| +5506| +5507| +5508| +5509| +5510| +5511| +5536| +5537| +5538| +5539| +5540| +5541| +5542| +5543| +5568| +5569| +5570| +5571| +5572| +5573| +5574| +5575| +5600| +5601| +5602| +5603| +5604| +5605| +5606| +5607| +5632| +5633| +5634| +5635| +5636| +5637| +5638| +5639| +5664| +5665| +5666| +5667| +5668| +5669| +5670| +5671| +5696| +5697| +5698| +5699| +5700| +5701| +5702| +5703| +5728| +5729| +5730| +5731| +5732| +5733| +5734| +5735| +5760| +5761| +5762| +5763| +5764| +5765| +5766| +5767| +5792| +5793| +5794| +5795| +5796| +5797| +5798| +5799| +5824| +5825| +5826| +5827| +5828| +5829| +5830| +5831| +5856| +5857| +5858| +5859| +5860| +5861| +5862| +5863| +5888| +5889| +5890| +5891| +5892| +5893| +5894| +5895| +5920| +5921| +5922| +5923| +5924| +5925| +5926| +5927| +5952| +5953| +5954| +5955| +5956| +5957| +5958| +5959| +5984| +5985| +5986| +5987| +5988| +5989| +5990| +5991| +6016| +6017| +6018| +6019| +6020| +6021| +6022| +6023| +6048| +6049| +6050| +6051| +6052| +6053| +6054| +6055| +6080| +6081| +6082| +6083| +6084| +6085| +6086| +6087| +6112| +6113| +6114| +6115| +6116| +6117| +6118| +6119| +6144| +6145| +6146| +6147| +6148| +6149| +6150| +6151| +6176| +6177| +6178| +6179| +6180| +6181| +6182| +6183| +6208| +6209| +6210| +6211| +6212| +6213| +6214| +6215| +6240| +6241| +6242| +6243| +6244| +6245| +6246| +6247| +6272| +6273| +6274| +6275| +6276| +6277| +6278| +6279| +6304| +6305| +6306| +6307| +6308| +6309| +6310| +6311| +6336| +6337| +6338| +6339| +6340| +6341| +6342| +6343| +6368| +6369| +6370| +6371| +6372| +6373| +6374| +6375| +6400| +6401| +6402| +6403| +6404| +6405| +6406| +6407| +6432| +6433| +6434| +6435| +6436| +6437| +6438| +6439| +6464| +6465| +6466| +6467| +6468| +6469| +6470| +6471| +6496| +6497| +6498| +6499| +6500| +6501| +6502| +6503| +6528| +6529| +6530| +6531| +6532| +6533| +6534| +6535| +6560| +6561| +6562| +6563| +6564| +6565| +6566| +6567| +6592| +6593| +6594| +6595| +6596| +6597| +6598| +6599| +6624| +6625| +6626| +6627| +6628| +6629| +6630| +6631| +6656| +6657| +6658| +6659| +6660| +6661| +6662| +6663| +6688| +6689| +6690| +6691| +6692| +6693| +6694| +6695| +6720| +6721| +6722| +6723| +6724| +6725| +6726| +6727| +6752| +6753| +6754| +6755| +6756| +6757| +6758| +6759| +6784| +6785| +6786| +6787| +6788| +6789| +6790| +6791| +6816| +6817| +6818| +6819| +6820| +6821| +6822| +6823| +6848| +6849| +6850| +6851| +6852| +6853| +6854| +6855| +6880| +6881| +6882| +6883| +6884| +6885| +6886| +6887| +6912| +6913| +6914| +6915| +6916| +6917| +6918| +6919| +6944| +6945| +6946| +6947| +6948| +6949| +6950| +6951| +6976| +6977| +6978| +6979| +6980| +6981| +6982| +6983| +7008| +7009| +7010| +7011| +7012| +7013| +7014| +7015| +7040| +7041| +7042| +7043| +7044| +7045| +7046| +7047| +7072| +7073| +7074| +7075| +7076| +7077| +7078| +7079| +7104| +7105| +7106| +7107| +7108| +7109| +7110| +7111| +7136| +7137| +7138| +7139| +7140| +7141| +7142| +7143| +7168| +7169| +7170| +7171| +7172| +7173| +7174| +7175| +7200| +7201| +7202| +7203| +7204| +7205| +7206| +7207| +7232| +7233| +7234| +7235| +7236| +7237| +7238| +7239| +7264| +7265| +7266| +7267| +7268| +7269| +7270| +7271| +7296| +7297| +7298| +7299| +7300| +7301| +7302| +7303| +7328| +7329| +7330| +7331| +7332| +7333| +7334| +7335| +7360| +7361| +7362| +7363| +7364| +7365| +7366| +7367| +7392| +7393| +7394| +7395| +7396| +7397| +7398| +7399| +7424| +7425| +7426| +7427| +7428| +7429| +7430| +7431| +7456| +7457| +7458| +7459| +7460| +7461| +7462| +7463| +7488| +7489| +7490| +7491| +7492| +7493| +7494| +7495| +7520| +7521| +7522| +7523| +7524| +7525| +7526| +7527| +7552| +7553| +7554| +7555| +7556| +7557| +7558| +7559| +7584| +7585| +7586| +7587| +7588| +7589| +7590| +7591| +7616| +7617| +7618| +7619| +7620| +7621| +7622| +7623| +7648| +7649| +7650| +7651| +7652| +7653| +7654| +7655| +7680| +7681| +7682| +7683| +7684| +7685| +7686| +7687| +7712| +7713| +7714| +7715| +7716| +7717| +7718| +7719| +7744| +7745| +7746| +7747| +7748| +7749| +7750| +7751| +7776| +7777| +7778| +7779| +7780| +7781| +7782| +7783| +7808| +7809| +7810| +7811| +7812| +7813| +7814| +7815| +7840| +7841| +7842| +7843| +7844| +7845| +7846| +7847| +7872| +7873| +7874| +7875| +7876| +7877| +7878| +7879| +7904| +7905| +7906| +7907| +7908| +7909| +7910| +7911| +7936| +7937| +7938| +7939| +7940| +7941| +7942| +7943| +7968| +7969| +7970| +7971| +7972| +7973| +7974| +7975| +8000| +8001| +8002| +8003| +8004| +8005| +8006| +8007| +8032| +8033| +8034| +8035| +8036| +8037| +8038| +8039| +8064| +8065| +8066| +8067| +8068| +8069| +8070| +8071| +8096| +8097| +8098| +8099| +8100| +8101| +8102| +8103| +8128| +8129| +8130| +8131| +8132| +8133| +8134| +8135| +8160| +8161| +8162| +8163| +8164| +8165| +8166| +8167| +8192| +8193| +8194| +8195| +8196| +8197| +8198| +8199| +8224| +8225| +8226| +8227| +8228| +8229| +8230| +8231| +8256| +8257| +8258| +8259| +8260| +8261| +8262| +8263| +8288| +8289| +8290| +8291| +8292| +8293| +8294| +8295| +8320| +8321| +8322| +8323| +8324| +8325| +8326| +8327| +8352| +8353| +8354| +8355| +8356| +8357| +8358| +8359| +8384| +8385| +8386| +8387| +8388| +8389| +8390| +8391| +8416| +8417| +8418| +8419| +8420| +8421| +8422| +8423| +8448| +8449| +8450| +8451| +8452| +8453| +8454| +8455| +8480| +8481| +8482| +8483| +8484| +8485| +8486| +8487| +8512| +8513| +8514| +8515| +8516| +8517| +8518| +8519| +8544| +8545| +8546| +8547| +8548| +8549| +8550| +8551| +8576| +8577| +8578| +8579| +8580| +8581| +8582| +8583| +8608| +8609| +8610| +8611| +8612| +8613| +8614| +8615| +8640| +8641| +8642| +8643| +8644| +8645| +8646| +8647| +8672| +8673| +8674| +8675| +8676| +8677| +8678| +8679| +8704| +8705| +8706| +8707| +8708| +8709| +8710| +8711| +8736| +8737| +8738| +8739| +8740| +8741| +8742| +8743| +8768| +8769| +8770| +8771| +8772| +8773| +8774| +8775| +8800| +8801| +8802| +8803| +8804| +8805| +8806| +8807| +8832| +8833| +8834| +8835| +8836| +8837| +8838| +8839| +8864| +8865| +8866| +8867| +8868| +8869| +8870| +8871| +8896| +8897| +8898| +8899| +8900| +8901| +8902| +8903| +8928| +8929| +8930| +8931| +8932| +8933| +8934| +8935| +8960| +8961| +8962| +8963| +8964| +8965| +8966| +8967| +8992| +8993| +8994| +8995| +8996| +8997| +8998| +8999| +9024| +9025| +9026| +9027| +9028| +9029| +9030| +9031| +9056| +9057| +9058| +9059| +9060| +9061| +9062| +9063| +9088| +9089| +9090| +9091| +9092| +9093| +9094| +9095| +9120| +9121| +9122| +9123| +9124| +9125| +9126| +9127| +9152| +9153| +9154| +9155| +9156| +9157| +9158| +9159| +9184| +9185| +9186| +9187| +9188| +9189| +9190| +9191| +9216| +9217| +9218| +9219| +9220| +9221| +9222| +9223| +9248| +9249| +9250| +9251| +9252| +9253| +9254| +9255| +9280| +9281| +9282| +9283| +9284| +9285| +9286| +9287| +9312| +9313| +9314| +9315| +9316| +9317| +9318| +9319| +9344| +9345| +9346| +9347| +9348| +9349| +9350| +9351| +9376| +9377| +9378| +9379| +9380| +9381| +9382| +9383| +9408| +9409| +9410| +9411| +9412| +9413| +9414| +9415| +9440| +9441| +9442| +9443| +9444| +9445| +9446| +9447| +9472| +9473| +9474| +9475| +9476| +9477| +9478| +9479| +9504| +9505| +9506| +9507| +9508| +9509| +9510| +9511| +9536| +9537| +9538| +9539| +9540| +9541| +9542| +9543| +9568| +9569| +9570| +9571| +9572| +9573| +9574| +9575| +9600| +9601| +9602| +9603| +9604| +9605| +9606| +9607| +9632| +9633| +9634| +9635| +9636| +9637| +9638| +9639| +9664| +9665| +9666| +9667| +9668| +9669| +9670| +9671| +9696| +9697| +9698| +9699| +9700| +9701| +9702| +9703| +9728| +9729| +9730| +9731| +9732| +9733| +9734| +9735| +9760| +9761| +9762| +9763| +9764| +9765| +9766| +9767| +9792| +9793| +9794| +9795| +9796| +9797| +9798| +9799| +9824| +9825| +9826| +9827| +9828| +9829| +9830| +9831| +9856| +9857| +9858| +9859| +9860| +9861| +9862| +9863| +9888| +9889| +9890| +9891| +9892| +9893| +9894| +9895| +9920| +9921| +9922| +9923| +9924| +9925| +9926| +9927| +9952| +9953| +9954| +9955| +9956| +9957| +9958| +9959| +9984| +9985| +9986| +9987| +9988| +9989| +9990| +9991| +10016| +10017| +10018| +10019| +10020| +10021| +10022| +10023| +10048| +10049| +10050| +10051| +10052| +10053| +10054| +10055| +10080| +10081| +10082| +10083| +10084| +10085| +10086| +10087| +10112| +10113| +10114| +10115| +10116| +10117| +10118| +10119| +10144| +10145| +10146| +10147| +10148| +10149| +10150| +10151| +10176| +10177| +10178| +10179| +10180| +10181| +10182| +10183| +10208| +10209| +10210| +10211| +10212| +10213| +10214| +10215| +10240| +10241| +10242| +10243| +10244| +10245| +10246| +10247| +10272| +10273| +10274| +10275| +10276| +10277| +10278| +10279| +10304| +10305| +10306| +10307| +10308| +10309| +10310| +10311| +10336| +10337| +10338| +10339| +10340| +10341| +10342| +10343| +10368| +10369| +10370| +10371| +10372| +10373| +10374| +10375| +10400| +10401| +10402| +10403| +10404| +10405| +10406| +10407| +10432| +10433| +10434| +10435| +10436| +10437| +10438| +10439| +10464| +10465| +10466| +10467| +10468| +10469| +10470| +10471| +10496| +10497| +10498| +10499| +10500| +10501| +10502| +10503| +10528| +10529| +10530| +10531| +10532| +10533| +10534| +10535| +10560| +10561| +10562| +10563| +10564| +10565| +10566| +10567| +10592| +10593| +10594| +10595| +10596| +10597| +10598| +10599| +10624| +10625| +10626| +10627| +10628| +10629| +10630| +10631| +10656| +10657| +10658| +10659| +10660| +10661| +10662| +10663| +10688| +10689| +10690| +10691| +10692| +10693| +10694| +10695| +10720| +10721| +10722| +10723| +10724| +10725| +10726| +10727| +10752| +10753| +10754| +10755| +10756| +10757| +10758| +10759| +10784| +10785| +10786| +10787| +10788| +10789| +10790| +10791| +10816| +10817| +10818| +10819| +10820| +10821| +10822| +10823| +10848| +10849| +10850| +10851| +10852| +10853| +10854| +10855| +10880| +10881| +10882| +10883| +10884| +10885| +10886| +10887| +10912| +10913| +10914| +10915| +10916| +10917| +10918| +10919| +10944| +10945| +10946| +10947| +10948| +10949| +10950| +10951| +10976| +10977| +10978| +10979| +10980| +10981| +10982| +10983| +11008| +11009| +11010| +11011| +11012| +11013| +11014| +11015| +11040| +11041| +11042| +11043| +11044| +11045| +11046| +11047| +11072| +11073| +11074| +11075| +11076| +11077| +11078| +11079| +11104| +11105| +11106| +11107| +11108| +11109| +11110| +11111| +11136| +11137| +11138| +11139| +11140| +11141| +11142| +11143| +11168| +11169| +11170| +11171| +11172| +11173| +11174| +11175| +11200| +11201| +11202| +11203| +11204| +11205| +11206| +11207| +11232| +11233| +11234| +11235| +11236| +11237| +11238| +11239| +11264| +11265| +11266| +11267| +11268| +11269| +11270| +11271| +11296| +11297| +11298| +11299| +11300| +11301| +11302| +11303| +11328| +11329| +11330| +11331| +11332| +11333| +11334| +11335| +11360| +11361| +11362| +11363| +11364| +11365| +11366| +11367| +11392| +11393| +11394| +11395| +11396| +11397| +11398| +11399| +11424| +11425| +11426| +11427| +11428| +11429| +11430| +11431| +11456| +11457| +11458| +11459| +11460| +11461| +11462| +11463| +11488| +11489| +11490| +11491| +11492| +11493| +11494| +11495| +11520| +11521| +11522| +11523| +11524| +11525| +11526| +11527| +11552| +11553| +11554| +11555| +11556| +11557| +11558| +11559| +11584| +11585| +11586| +11587| +11588| +11589| +11590| +11591| +11616| +11617| +11618| +11619| +11620| +11621| +11622| +11623| +11648| +11649| +11650| +11651| +11652| +11653| +11654| +11655| +11680| +11681| +11682| +11683| +11684| +11685| +11686| +11687| +11712| +11713| +11714| +11715| +11716| +11717| +11718| +11719| +11744| +11745| +11746| +11747| +11748| +11749| +11750| +11751| +11776| +11777| +11778| +11779| +11780| +11781| +11782| +11783| +11808| +11809| +11810| +11811| +11812| +11813| +11814| +11815| +11840| +11841| +11842| +11843| +11844| +11845| +11846| +11847| +11872| +11873| +11874| +11875| +11876| +11877| +11878| +11879| +11904| +11905| +11906| +11907| +11908| +11909| +11910| +11911| +11936| +11937| +11938| +11939| +11940| +11941| +11942| +11943| +11968| +11969| +11970| +11971| +11972| +11973| +11974| +11975| +12000| +12001| +12002| +12003| +12004| +12005| +12006| +12007| +12032| +12033| +12034| +12035| +12036| +12037| +12038| +12039| +12064| +12065| +12066| +12067| +12068| +12069| +12070| +12071| +12096| +12097| +12098| +12099| +12100| +12101| +12102| +12103| +12128| +12129| +12130| +12131| +12132| +12133| +12134| +12135| +12160| +12161| +12162| +12163| +12164| +12165| +12166| +12167| +12192| +12193| +12194| +12195| +12196| +12197| +12198| +12199| +12224| +12225| +12226| +12227| +12228| +12229| +12230| +12231| +12256| +12257| +12258| +12259| +12260| +12261| +12262| +12263| +12288| +12289| +12290| +12291| +12292| +12293| +12294| +12295| +12320| +12321| +12322| +12323| +12324| +12325| +12326| +12327| +12352| +12353| +12354| +12355| +12356| +12357| +12358| +12359| +12384| +12385| +12386| +12387| +12388| +12389| +12390| +12391| +12416| +12417| +12418| +12419| +12420| +12421| +12422| +12423| +12448| +12449| +12450| +12451| +12452| +12453| +12454| +12455| +12480| +12481| +12482| +12483| +12484| +12485| +12486| +12487| +12512| +12513| +12514| +12515| +12516| +12517| +12518| +12519| +12544| +12545| +12546| +12547| +12548| +12549| +12550| +12551| +12576| +12577| +12578| +12579| +12580| +12581| +12582| +12583| +12608| +12609| +12610| +12611| +12612| +12613| +12614| +12615| +12640| +12641| +12642| +12643| +12644| +12645| +12646| +12647| +12672| +12673| +12674| +12675| +12676| +12677| +12678| +12679| +12704| +12705| +12706| +12707| +12708| +12709| +12710| +12711| +12736| +12737| +12738| +12739| +12740| +12741| +12742| +12743| +12768| +12769| +12770| +12771| +12772| +12773| +12774| +12775| +12800| +12801| +12802| +12803| +12804| +12805| +12806| +12807| +12832| +12833| +12834| +12835| +12836| +12837| +12838| +12839| +12864| +12865| +12866| +12867| +12868| +12869| +12870| +12871| +12896| +12897| +12898| +12899| +12900| +12901| +12902| +12903| +12928| +12929| +12930| +12931| +12932| +12933| +12934| +12935| +12960| +12961| +12962| +12963| +12964| +12965| +12966| +12967| +12992| +12993| +12994| +12995| +12996| +12997| +12998| +12999| +13024| +13025| +13026| +13027| +13028| +13029| +13030| +13031| +13056| +13057| +13058| +13059| +13060| +13061| +13062| +13063| +13088| +13089| +13090| +13091| +13092| +13093| +13094| +13095| +13120| +13121| +13122| +13123| +13124| +13125| +13126| +13127| +13152| +13153| +13154| +13155| +13156| +13157| +13158| +13159| +13184| +13185| +13186| +13187| +13188| +13189| +13190| +13191| +13216| +13217| +13218| +13219| +13220| +13221| +13222| +13223| +13248| +13249| +13250| +13251| +13252| +13253| +13254| +13255| +13280| +13281| +13282| +13283| +13284| +13285| +13286| +13287| +13312| +13313| +13314| +13315| +13316| +13317| +13318| +13319| +13344| +13345| +13346| +13347| +13348| +13349| +13350| +13351| +13376| +13377| +13378| +13379| +13380| +13381| +13382| +13383| +13408| +13409| +13410| +13411| +13412| +13413| +13414| +13415| +13440| +13441| +13442| +13443| +13444| +13445| +13446| +13447| +13472| +13473| +13474| +13475| +13476| +13477| +13478| +13479| +13504| +13505| +13506| +13507| +13508| +13509| +13510| +13511| +13536| +13537| +13538| +13539| +13540| +13541| +13542| +13543| +13568| +13569| +13570| +13571| +13572| +13573| +13574| +13575| +13600| +13601| +13602| +13603| +13604| +13605| +13606| +13607| +13632| +13633| +13634| +13635| +13636| +13637| +13638| +13639| +13664| +13665| +13666| +13667| +13668| +13669| +13670| +13671| +13696| +13697| +13698| +13699| +13700| +13701| +13702| +13703| +13728| +13729| +13730| +13731| +13732| +13733| +13734| +13735| +13760| +13761| +13762| +13763| +13764| +13765| +13766| +13767| +13792| +13793| +13794| +13795| +13796| +13797| +13798| +13799| +13824| +13825| +13826| +13827| +13828| +13829| +13830| +13831| +13856| +13857| +13858| +13859| +13860| +13861| +13862| +13863| +13888| +13889| +13890| +13891| +13892| +13893| +13894| +13895| +13920| +13921| +13922| +13923| +13924| +13925| +13926| +13927| +13952| +13953| +13954| +13955| +13956| +13957| +13958| +13959| +13984| +13985| +13986| +13987| +13988| +13989| +13990| +13991| +14016| +14017| +14018| +14019| +14020| +14021| +14022| +14023| +14048| +14049| +14050| +14051| +14052| +14053| +14054| +14055| +14080| +14081| +14082| +14083| +14084| +14085| +14086| +14087| +14112| +14113| +14114| +14115| +14116| +14117| +14118| +14119| +14144| +14145| +14146| +14147| +14148| +14149| +14150| +14151| +14176| +14177| +14178| +14179| +14180| +14181| +14182| +14183| +14208| +14209| +14210| +14211| +14212| +14213| +14214| +14215| +14240| +14241| +14242| +14243| +14244| +14245| +14246| +14247| +14272| +14273| +14274| +14275| +14276| +14277| +14278| +14279| +14304| +14305| +14306| +14307| +14308| +14309| +14310| +14311| +14336| +14337| +14338| +14339| +14340| +14341| +14342| +14343| +14368| +14369| +14370| +14371| +14372| +14373| +14374| +14375| +14400| +14401| +14402| +14403| +14404| +14405| +14406| +14407| +14432| +14433| +14434| +14435| +14436| +14437| +14438| +14439| +14464| +14465| +14466| +14467| +14468| +14469| +14470| +14471| +14496| +14497| +14498| +14499| +14500| +14501| +14502| +14503| +14528| +14529| +14530| +14531| +14532| +14533| +14534| +14535| +14560| +14561| +14562| +14563| +14564| +14565| +14566| +14567| +14592| +14593| +14594| +14595| +14596| +14597| +14598| +14599| +14624| +14625| +14626| +14627| +14628| +14629| +14630| +14631| +14656| +14657| +14658| +14659| +14660| +14661| +14662| +14663| +14688| +14689| +14690| +14691| +14692| +14693| +14694| +14695| +14720| +14721| +14722| +14723| +14724| +14725| +14726| +14727| +14752| +14753| +14754| +14755| +14756| +14757| +14758| +14759| +14784| +14785| +14786| +14787| +14788| +14789| +14790| +14791| +14816| +14817| +14818| +14819| +14820| +14821| +14822| +14823| +14848| +14849| +14850| +14851| +14852| +14853| +14854| +14855| +14880| +14881| +14882| +14883| +14884| +14885| +14886| +14887| +14912| +14913| +14914| +14915| +14916| +14917| +14918| +14919| +14944| +14945| +14946| +14947| +14948| +14949| +14950| +14951| +14976| +14977| +14978| +14979| +14980| +14981| +14982| +14983| +15008| +15009| +15010| +15011| +15012| +15013| +15014| +15015| +15040| +15041| +15042| +15043| +15044| +15045| +15046| +15047| +15072| +15073| +15074| +15075| +15076| +15077| +15078| +15079| +15104| +15105| +15106| +15107| +15108| +15109| +15110| +15111| +15136| +15137| +15138| +15139| +15140| +15141| +15142| +15143| +15168| +15169| +15170| +15171| +15172| +15173| +15174| +15175| +15200| +15201| +15202| +15203| +15204| +15205| +15206| +15207| +15232| +15233| +15234| +15235| +15236| +15237| +15238| +15239| +15264| +15265| +15266| +15267| +15268| +15269| +15270| +15271| +15296| +15297| +15298| +15299| +15300| +15301| +15302| +15303| +15328| +15329| +15330| +15331| +15332| +15333| +15334| +15335| +15360| +15361| +15362| +15363| +15364| +15365| +15366| +15367| +15392| +15393| +15394| +15395| +15396| +15397| +15398| +15399| +15424| +15425| +15426| +15427| +15428| +15429| +15430| +15431| +15456| +15457| +15458| +15459| +15460| +15461| +15462| +15463| +15488| +15489| +15490| +15491| +15492| +15493| +15494| +15495| +15520| +15521| +15522| +15523| +15524| +15525| +15526| +15527| +15552| +15553| +15554| +15555| +15556| +15557| +15558| +15559| +15584| +15585| +15586| +15587| +15588| +15589| +15590| +15591| +15616| +15617| +15618| +15619| +15620| +15621| +15622| +15623| +15648| +15649| +15650| +15651| +15652| +15653| +15654| +15655| +15680| +15681| +15682| +15683| +15684| +15685| +15686| +15687| +15712| +15713| +15714| +15715| +15716| +15717| +15718| +15719| +15744| +15745| +15746| +15747| +15748| +15749| +15750| +15751| +15776| +15777| +15778| +15779| +15780| +15781| +15782| +15783| +15808| +15809| +15810| +15811| +15812| +15813| +15814| +15815| +15840| +15841| +15842| +15843| +15844| +15845| +15846| +15847| +15872| +15873| +15874| +15875| +15876| +15877| +15878| +15879| +15904| +15905| +15906| +15907| +15908| +15909| +15910| +15911| +15936| +15937| +15938| +15939| +15940| +15941| +15942| +15943| +15968| +15969| +15970| +15971| +15972| +15973| +15974| +15975| +16000| +16001| +16002| +16003| +16004| +16005| +16006| +16007| +16032| +16033| +16034| +16035| +16036| +16037| +16038| +16039| +16064| +16065| +16066| +16067| +16068| +16069| +16070| +16071| +16096| +16097| +16098| +16099| +16100| +16101| +16102| +16103| +16128| +16129| +16130| +16131| +16132| +16133| +16134| +16135| +16160| +16161| +16162| +16163| +16164| +16165| +16166| +16167| +16192| +16193| +16194| +16195| +16196| +16197| +16198| +16199| +16224| +16225| +16226| +16227| +16228| +16229| +16230| +16231| +16256| +16257| +16258| +16259| +16260| +16261| +16262| +16263| +16288| +16289| +16290| +16291| +16292| +16293| +16294| +16295| +16320| +16321| +16322| +16323| +16324| +16325| +16326| +16327| +16352| +16353| +16354| +16355| +16356| +16357| +16358| +16359| +16384| +16385| +16386| +16387| +16388| +16389| +16390| +16391| +16416| +16417| +16418| +16419| +16420| +16421| +16422| +16423| +16448| +16449| +16450| +16451| +16452| +16453| +16454| +16455| +16480| +16481| +16482| +16483| +16484| +16485| +16486| +16487| +16512| +16513| +16514| +16515| +16516| +16517| +16518| +16519| +16544| +16545| +16546| +16547| +16548| +16549| +16550| +16551| +16576| +16577| +16578| +16579| +16580| +16581| +16582| +16583| +16608| +16609| +16610| +16611| +16612| +16613| +16614| +16615| +16640| +16641| +16642| +16643| +16644| +16645| +16646| +16647| +16672| +16673| +16674| +16675| +16676| +16677| +16678| +16679| +16704| +16705| +16706| +16707| +16708| +16709| +16710| +16711| +16736| +16737| +16738| +16739| +16740| +16741| +16742| +16743| +16768| +16769| +16770| +16771| +16772| +16773| +16774| +16775| +16800| +16801| +16802| +16803| +16804| +16805| +16806| +16807| +16832| +16833| +16834| +16835| +16836| +16837| +16838| +16839| +16864| +16865| +16866| +16867| +16868| +16869| +16870| +16871| +16896| +16897| +16898| +16899| +16900| +16901| +16902| +16903| +16928| +16929| +16930| +16931| +16932| +16933| +16934| +16935| +16960| +16961| +16962| +16963| +16964| +16965| +16966| +16967| +16992| +16993| +16994| +16995| +16996| +16997| +16998| +16999| +17024| +17025| +17026| +17027| +17028| +17029| +17030| +17031| +17056| +17057| +17058| +17059| +17060| +17061| +17062| +17063| +17088| +17089| +17090| +17091| +17092| +17093| +17094| +17095| +17120| +17121| +17122| +17123| +17124| +17125| +17126| +17127| +17152| +17153| +17154| +17155| +17156| +17157| +17158| +17159| +17184| +17185| +17186| +17187| +17188| +17189| +17190| +17191| +17216| +17217| +17218| +17219| +17220| +17221| +17222| +17223| +17248| +17249| +17250| +17251| +17252| +17253| +17254| +17255| +17280| +17281| +17282| +17283| +17284| +17285| +17286| +17287| +17312| +17313| +17314| +17315| +17316| +17317| +17318| +17319| +17344| +17345| +17346| +17347| +17348| +17349| +17350| +17351| +17376| +17377| +17378| +17379| +17380| +17381| +17382| +17383| +17408| +17409| +17410| +17411| +17412| +17413| +17414| +17415| +17440| +17441| +17442| +17443| +17444| +17445| +17446| +17447| +17472| +17473| +17474| +17475| +17476| +17477| +17478| +17479| +17504| +17505| +17506| +17507| +17508| +17509| +17510| +17511| +17536| +17537| +17538| +17539| +17540| +17541| +17542| +17543| +17568| +17569| +17570| +17571| +17572| +17573| +17574| +17575| +17600| +17601| +17602| +17603| +17604| +17605| +17606| +17607| +17632| +17633| +17634| +17635| +17636| +17637| +17638| +17639| +17664| +17665| +17666| +17667| +17668| +17669| +17670| +17671| +17696| +17697| +17698| +17699| +17700| +17701| +17702| +17703| +17728| +17729| +17730| +17731| +17732| +17733| +17734| +17735| +17760| +17761| +17762| +17763| +17764| +17765| +17766| +17767| +17792| +17793| +17794| +17795| +17796| +17797| +17798| +17799| +17824| +17825| +17826| +17827| +17828| +17829| +17830| +17831| +17856| +17857| +17858| +17859| +17860| +17861| +17862| +17863| +17888| +17889| +17890| +17891| +17892| +17893| +17894| +17895| +17920| +17921| +17922| +17923| +17924| +17925| +17926| +17927| +17952| +17953| +17954| +17955| +17956| +17957| +17958| +17959| +17984| +17985| +17986| +17987| +17988| +17989| +17990| +17991| +18016| +18017| +18018| +18019| +18020| +18021| +18022| +18023| +18048| +18049| +18050| +18051| +18052| +18053| +18054| +18055| +18080| +18081| +18082| +18083| +18084| +18085| +18086| +18087| +18112| +18113| +18114| +18115| +18116| +18117| +18118| +18119| +18144| +18145| +18146| +18147| +18148| +18149| +18150| +18151| +18176| +18177| +18178| +18179| +18180| +18181| +18182| +18183| +18208| +18209| +18210| +18211| +18212| +18213| +18214| +18215| +18240| +18241| +18242| +18243| +18244| +18245| +18246| +18247| +18272| +18273| +18274| +18275| +18276| +18277| +18278| +18279| +18304| +18305| +18306| +18307| +18308| +18309| +18310| +18311| +18336| +18337| +18338| +18339| +18340| +18341| +18342| +18343| +18368| +18369| +18370| +18371| +18372| +18373| +18374| +18375| +18400| +18401| +18402| +18403| +18404| +18405| +18406| +18407| +18432| +18433| +18434| +18435| +18436| +18437| +18438| +18439| +18464| +18465| +18466| +18467| +18468| +18469| +18470| +18471| +18496| +18497| +18498| +18499| +18500| +18501| +18502| +18503| +18528| +18529| +18530| +18531| +18532| +18533| +18534| +18535| +18560| +18561| +18562| +18563| +18564| +18565| +18566| +18567| +18592| +18593| +18594| +18595| +18596| +18597| +18598| +18599| +18624| +18625| +18626| +18627| +18628| +18629| +18630| +18631| +18656| +18657| +18658| +18659| +18660| +18661| +18662| +18663| +18688| +18689| +18690| +18691| +18692| +18693| +18694| +18695| +18720| +18721| +18722| +18723| +18724| +18725| +18726| +18727| +18752| +18753| +18754| +18755| +18756| +18757| +18758| +18759| +18784| +18785| +18786| +18787| +18788| +18789| +18790| +18791| +18816| +18817| +18818| +18819| +18820| +18821| +18822| +18823| +18848| +18849| +18850| +18851| +18852| +18853| +18854| +18855| +18880| +18881| +18882| +18883| +18884| +18885| +18886| +18887| +18912| +18913| +18914| +18915| +18916| +18917| +18918| +18919| +18944| +18945| +18946| +18947| +18948| +18949| +18950| +18951| +18976| +18977| +18978| +18979| +18980| +18981| +18982| +18983| +19008| +19009| +19010| +19011| +19012| +19013| +19014| +19015| +19040| +19041| +19042| +19043| +19044| +19045| +19046| +19047| +19072| +19073| +19074| +19075| +19076| +19077| +19078| +19079| +19104| +19105| +19106| +19107| +19108| +19109| +19110| +19111| +19136| +19137| +19138| +19139| +19140| +19141| +19142| +19143| +19168| +19169| +19170| +19171| +19172| +19173| +19174| +19175| +19200| +19201| +19202| +19203| +19204| +19205| +19206| +19207| +19232| +19233| +19234| +19235| +19236| +19237| +19238| +19239| +19264| +19265| +19266| +19267| +19268| +19269| +19270| +19271| +19296| +19297| +19298| +19299| +19300| +19301| +19302| +19303| +19328| +19329| +19330| +19331| +19332| +19333| +19334| +19335| +19360| +19361| +19362| +19363| +19364| +19365| +19366| +19367| +19392| +19393| +19394| +19395| +19396| +19397| +19398| +19399| +19424| +19425| +19426| +19427| +19428| +19429| +19430| +19431| +19456| +19457| +19458| +19459| +19460| +19461| +19462| +19463| +19488| +19489| +19490| +19491| +19492| +19493| +19494| +19495| +19520| +19521| +19522| +19523| +19524| +19525| +19526| +19527| +19552| +19553| +19554| +19555| +19556| +19557| +19558| +19559| +19584| +19585| +19586| +19587| +19588| +19589| +19590| +19591| +19616| +19617| +19618| +19619| +19620| +19621| +19622| +19623| +19648| +19649| +19650| +19651| +19652| +19653| +19654| +19655| +19680| +19681| +19682| +19683| +19684| +19685| +19686| +19687| +19712| +19713| +19714| +19715| +19716| +19717| +19718| +19719| +19744| +19745| +19746| +19747| +19748| +19749| +19750| +19751| +19776| +19777| +19778| +19779| +19780| +19781| +19782| +19783| +19808| +19809| +19810| +19811| +19812| +19813| +19814| +19815| +19840| +19841| +19842| +19843| +19844| +19845| +19846| +19847| +19872| +19873| +19874| +19875| +19876| +19877| +19878| +19879| +19904| +19905| +19906| +19907| +19908| +19909| +19910| +19911| +19936| +19937| +19938| +19939| +19940| +19941| +19942| +19943| +19968| +19969| +19970| +19971| +19972| +19973| +19974| +19975| +20000| +20001| +20002| +20003| +20004| +20005| +20006| +20007| +20032| +20033| +20034| +20035| +20036| +20037| +20038| +20039| +20064| +20065| +20066| +20067| +20068| +20069| +20070| +20071| +20096| +20097| +20098| +20099| +20100| +20101| +20102| +20103| +20128| +20129| +20130| +20131| +20132| +20133| +20134| +20135| +20160| +20161| +20162| +20163| +20164| +20165| +20166| +20167| +20192| +20193| +20194| +20195| +20196| +20197| +20198| +20199| +20224| +20225| +20226| +20227| +20228| +20229| +20230| +20231| +20256| +20257| +20258| +20259| +20260| +20261| +20262| +20263| +20288| +20289| +20290| +20291| +20292| +20293| +20294| +20295| +20320| +20321| +20322| +20323| +20324| +20325| +20326| +20327| +20352| +20353| +20354| +20355| +20356| +20357| +20358| +20359| +20384| +20385| +20386| +20387| +20388| +20389| +20390| +20391| +20416| +20417| +20418| +20419| +20420| +20421| +20422| +20423| +20448| +20449| +20450| +20451| +20452| +20453| +20454| +20455| +20480| +20481| +20482| +20483| +20484| +20485| +20486| +20487| +20512| +20513| +20514| +20515| +20516| +20517| +20518| +20519| +20544| +20545| +20546| +20547| +20548| +20549| +20550| +20551| +20576| +20577| +20578| +20579| +20580| +20581| +20582| +20583| +20608| +20609| +20610| +20611| +20612| +20613| +20614| +20615| +20640| +20641| +20642| +20643| +20644| +20645| +20646| +20647| +20672| +20673| +20674| +20675| +20676| +20677| +20678| +20679| +20704| +20705| +20706| +20707| +20708| +20709| +20710| +20711| +20736| +20737| +20738| +20739| +20740| +20741| +20742| +20743| +20768| +20769| +20770| +20771| +20772| +20773| +20774| +20775| +20800| +20801| +20802| +20803| +20804| +20805| +20806| +20807| +20832| +20833| +20834| +20835| +20836| +20837| +20838| +20839| +20864| +20865| +20866| +20867| +20868| +20869| +20870| +20871| +20896| +20897| +20898| +20899| +20900| +20901| +20902| +20903| +20928| +20929| +20930| +20931| +20932| +20933| +20934| +20935| +20960| +20961| +20962| +20963| +20964| +20965| +20966| +20967| +20992| +20993| +20994| +20995| +20996| +20997| +20998| +20999| +21024| +21025| +21026| +21027| +21028| +21029| +21030| +21031| +21056| +21057| +21058| +21059| +21060| +21061| +21062| +21063| +21088| +21089| +21090| +21091| +21092| +21093| +21094| +21095| +21120| +21121| +21122| +21123| +21124| +21125| +21126| +21127| +21152| +21153| +21154| +21155| +21156| +21157| +21158| +21159| +21184| +21185| +21186| +21187| +21188| +21189| +21190| +21191| +21216| +21217| +21218| +21219| +21220| +21221| +21222| +21223| +21248| +21249| +21250| +21251| +21252| +21253| +21254| +21255| +21280| +21281| +21282| +21283| +21284| +21285| +21286| +21287| +21312| +21313| +21314| +21315| +21316| +21317| +21318| +21319| +21344| +21345| +21346| +21347| +21348| +21349| +21350| +21351| +21376| +21377| +21378| +21379| +21380| +21381| +21382| +21383| +21408| +21409| +21410| +21411| +21412| +21413| +21414| +21415| +21440| +21441| +21442| +21443| +21444| +21445| +21446| +21447| +21472| +21473| +21474| +21475| +21476| +21477| +21478| +21479| +21504| +21505| +21506| +21507| +21508| +21509| +21510| +21511| +21536| +21537| +21538| +21539| +21540| +21541| +21542| +21543| +21568| +21569| +21570| +21571| +21572| +21573| +21574| +21575| +21600| +21601| +21602| +21603| +21604| +21605| +21606| +21607| +21632| +21633| +21634| +21635| +21636| +21637| +21638| +21639| +21664| +21665| +21666| +21667| +21668| +21669| +21670| +21671| +21696| +21697| +21698| +21699| +21700| +21701| +21702| +21703| +21728| +21729| +21730| +21731| +21732| +21733| +21734| +21735| +21760| +21761| +21762| +21763| +21764| +21765| +21766| +21767| +21792| +21793| +21794| +21795| +21796| +21797| +21798| +21799| +21824| +21825| +21826| +21827| +21828| +21829| +21830| +21831| +21856| +21857| +21858| +21859| +21860| +21861| +21862| +21863| +21888| +21889| +21890| +21891| +21892| +21893| +21894| +21895| +21920| +21921| +21922| +21923| +21924| +21925| +21926| +21927| +21952| +21953| +21954| +21955| +21956| +21957| +21958| +21959| +21984| +21985| +21986| +21987| +21988| +21989| +21990| +21991| +22016| +22017| +22018| +22019| +22020| +22021| +22022| +22023| +22048| +22049| +22050| +22051| +22052| +22053| +22054| +22055| +22080| +22081| +22082| +22083| +22084| +22085| +22086| +22087| +22112| +22113| +22114| +22115| +22116| +22117| +22118| +22119| +22144| +22145| +22146| +22147| +22148| +22149| +22150| +22151| +22176| +22177| +22178| +22179| +22180| +22181| +22182| +22183| +22208| +22209| +22210| +22211| +22212| +22213| +22214| +22215| +22240| +22241| +22242| +22243| +22244| +22245| +22246| +22247| +22272| +22273| +22274| +22275| +22276| +22277| +22278| +22279| +22304| +22305| +22306| +22307| +22308| +22309| +22310| +22311| +22336| +22337| +22338| +22339| +22340| +22341| +22342| +22343| +22368| +22369| +22370| +22371| +22372| +22373| +22374| +22375| +22400| +22401| +22402| +22403| +22404| +22405| +22406| +22407| +22432| +22433| +22434| +22435| +22436| +22437| +22438| +22439| +22464| +22465| +22466| +22467| +22468| +22469| +22470| +22471| +22496| +22497| +22498| +22499| +22500| +22501| +22502| +22503| +22528| +22529| +22530| +22531| +22532| +22533| +22534| +22535| +22560| +22561| +22562| +22563| +22564| +22565| +22566| +22567| +22592| +22593| +22594| +22595| +22596| +22597| +22598| +22599| +22624| +22625| +22626| +22627| +22628| +22629| +22630| +22631| +22656| +22657| +22658| +22659| +22660| +22661| +22662| +22663| +22688| +22689| +22690| +22691| +22692| +22693| +22694| +22695| +22720| +22721| +22722| +22723| +22724| +22725| +22726| +22727| +22752| +22753| +22754| +22755| +22756| +22757| +22758| +22759| +22784| +22785| +22786| +22787| +22788| +22789| +22790| +22791| +22816| +22817| +22818| +22819| +22820| +22821| +22822| +22823| +22848| +22849| +22850| +22851| +22852| +22853| +22854| +22855| +22880| +22881| +22882| +22883| +22884| +22885| +22886| +22887| +22912| +22913| +22914| +22915| +22916| +22917| +22918| +22919| +22944| +22945| +22946| +22947| +22948| +22949| +22950| +22951| +22976| +22977| +22978| +22979| +22980| +22981| +22982| +22983| +23008| +23009| +23010| +23011| +23012| +23013| +23014| +23015| +23040| +23041| +23042| +23043| +23044| +23045| +23046| +23047| +23072| +23073| +23074| +23075| +23076| +23077| +23078| +23079| +23104| +23105| +23106| +23107| +23108| +23109| +23110| +23111| +23136| +23137| +23138| +23139| +23140| +23141| +23142| +23143| +23168| +23169| +23170| +23171| +23172| +23173| +23174| +23175| +23200| +23201| +23202| +23203| +23204| +23205| +23206| +23207| +23232| +23233| +23234| +23235| +23236| +23237| +23238| +23239| +23264| +23265| +23266| +23267| +23268| +23269| +23270| +23271| +23296| +23297| +23298| +23299| +23300| +23301| +23302| +23303| +23328| +23329| +23330| +23331| +23332| +23333| +23334| +23335| +23360| +23361| +23362| +23363| +23364| +23365| +23366| +23367| +23392| +23393| +23394| +23395| +23396| +23397| +23398| +23399| +23424| +23425| +23426| +23427| +23428| +23429| +23430| +23431| +23456| +23457| +23458| +23459| +23460| +23461| +23462| +23463| +23488| +23489| +23490| +23491| +23492| +23493| +23494| +23495| +23520| +23521| +23522| +23523| +23524| +23525| +23526| +23527| +23552| +23553| +23554| +23555| +23556| +23557| +23558| +23559| +23584| +23585| +23586| +23587| +23588| +23589| +23590| +23591| +23616| +23617| +23618| +23619| +23620| +23621| +23622| +23623| +23648| +23649| +23650| +23651| +23652| +23653| +23654| +23655| +23680| +23681| +23682| +23683| +23684| +23685| +23686| +23687| +23712| +23713| +23714| +23715| +23716| +23717| +23718| +23719| +23744| +23745| +23746| +23747| +23748| +23749| +23750| +23751| +23776| +23777| +23778| +23779| +23780| +23781| +23782| +23783| +23808| +23809| +23810| +23811| +23812| +23813| +23814| +23815| +23840| +23841| +23842| +23843| +23844| +23845| +23846| +23847| +23872| +23873| +23874| +23875| +23876| +23877| +23878| +23879| +23904| +23905| +23906| +23907| +23908| +23909| +23910| +23911| +23936| +23937| +23938| +23939| +23940| +23941| +23942| +23943| +23968| +23969| +23970| +23971| +23972| +23973| +23974| +23975| +24000| +24001| +24002| +24003| +24004| +24005| +24006| +24007| +24032| +24033| +24034| +24035| +24036| +24037| +24038| +24039| +24064| +24065| +24066| +24067| +24068| +24069| +24070| +24071| +24096| +24097| +24098| +24099| +24100| +24101| +24102| +24103| +24128| +24129| +24130| +24131| +24132| +24133| +24134| +24135| +24160| +24161| +24162| +24163| +24164| +24165| +24166| +24167| +24192| +24193| +24194| +24195| +24196| +24197| +24198| +24199| +24224| +24225| +24226| +24227| +24228| +24229| +24230| +24231| +24256| +24257| +24258| +24259| +24260| +24261| +24262| +24263| +24288| +24289| +24290| +24291| +24292| +24293| +24294| +24295| +24320| +24321| +24322| +24323| +24324| +24325| +24326| +24327| +24352| +24353| +24354| +24355| +24356| +24357| +24358| +24359| +24384| +24385| +24386| +24387| +24388| +24389| +24390| +24391| +24416| +24417| +24418| +24419| +24420| +24421| +24422| +24423| +24448| +24449| +24450| +24451| +24452| +24453| +24454| +24455| +24480| +24481| +24482| +24483| +24484| +24485| +24486| +24487| +24512| +24513| +24514| +24515| +24516| +24517| +24518| +24519| +24544| +24545| +24546| +24547| +24548| +24549| +24550| +24551| +24576| +24577| +24578| +24579| +24580| +24581| +24582| +24583| +24608| +24609| +24610| +24611| +24612| +24613| +24614| +24615| +24640| +24641| +24642| +24643| +24644| +24645| +24646| +24647| +24672| +24673| +24674| +24675| +24676| +24677| +24678| +24679| +24704| +24705| +24706| +24707| +24708| +24709| +24710| +24711| +24736| +24737| +24738| +24739| +24740| +24741| +24742| +24743| +24768| +24769| +24770| +24771| +24772| +24773| +24774| +24775| +24800| +24801| +24802| +24803| +24804| +24805| +24806| +24807| +24832| +24833| +24834| +24835| +24836| +24837| +24838| +24839| +24864| +24865| +24866| +24867| +24868| +24869| +24870| +24871| +24896| +24897| +24898| +24899| +24900| +24901| +24902| +24903| +24928| +24929| +24930| +24931| +24932| +24933| +24934| +24935| +24960| +24961| +24962| +24963| +24964| +24965| +24966| +24967| +24992| +24993| +24994| +24995| +24996| +24997| +24998| +24999| +25024| +25025| +25026| +25027| +25028| +25029| +25030| +25031| +25056| +25057| +25058| +25059| +25060| +25061| +25062| +25063| +25088| +25089| +25090| +25091| +25092| +25093| +25094| +25095| +25120| +25121| +25122| +25123| +25124| +25125| +25126| +25127| +25152| +25153| +25154| +25155| +25156| +25157| +25158| +25159| +25184| +25185| +25186| +25187| +25188| +25189| +25190| +25191| +25216| +25217| +25218| +25219| +25220| +25221| +25222| +25223| +25248| +25249| +25250| +25251| +25252| +25253| +25254| +25255| +25280| +25281| +25282| +25283| +25284| +25285| +25286| +25287| +25312| +25313| +25314| +25315| +25316| +25317| +25318| +25319| +25344| +25345| +25346| +25347| +25348| +25349| +25350| +25351| +25376| +25377| +25378| +25379| +25380| +25381| +25382| +25383| +25408| +25409| +25410| +25411| +25412| +25413| +25414| +25415| +25440| +25441| +25442| +25443| +25444| +25445| +25446| +25447| +25472| +25473| +25474| +25475| +25476| +25477| +25478| +25479| +25504| +25505| +25506| +25507| +25508| +25509| +25510| +25511| +25536| +25537| +25538| +25539| +25540| +25541| +25542| +25543| +25568| +25569| +25570| +25571| +25572| +25573| +25574| +25575| +25600| +25601| +25602| +25603| +25604| +25605| +25606| +25607| +25632| +25633| +25634| +25635| +25636| +25637| +25638| +25639| +25664| +25665| +25666| +25667| +25668| +25669| +25670| +25671| +25696| +25697| +25698| +25699| +25700| +25701| +25702| +25703| +25728| +25729| +25730| +25731| +25732| +25733| +25734| +25735| +25760| +25761| +25762| +25763| +25764| +25765| +25766| +25767| +25792| +25793| +25794| +25795| +25796| +25797| +25798| +25799| +25824| +25825| +25826| +25827| +25828| +25829| +25830| +25831| +25856| +25857| +25858| +25859| +25860| +25861| +25862| +25863| +25888| +25889| +25890| +25891| +25892| +25893| +25894| +25895| +25920| +25921| +25922| +25923| +25924| +25925| +25926| +25927| +25952| +25953| +25954| +25955| +25956| +25957| +25958| +25959| +25984| +25985| +25986| +25987| +25988| +25989| +25990| +25991| +26016| +26017| +26018| +26019| +26020| +26021| +26022| +26023| +26048| +26049| +26050| +26051| +26052| +26053| +26054| +26055| +26080| +26081| +26082| +26083| +26084| +26085| +26086| +26087| +26112| +26113| +26114| +26115| +26116| +26117| +26118| +26119| +26144| +26145| +26146| +26147| +26148| +26149| +26150| +26151| +26176| +26177| +26178| +26179| +26180| +26181| +26182| +26183| +26208| +26209| +26210| +26211| +26212| +26213| +26214| +26215| +26240| +26241| +26242| +26243| +26244| +26245| +26246| +26247| +26272| +26273| +26274| +26275| +26276| +26277| +26278| +26279| +26304| +26305| +26306| +26307| +26308| +26309| +26310| +26311| +26336| +26337| +26338| +26339| +26340| +26341| +26342| +26343| +26368| +26369| +26370| +26371| +26372| +26373| +26374| +26375| +26400| +26401| +26402| +26403| +26404| +26405| +26406| +26407| +26432| +26433| +26434| +26435| +26436| +26437| +26438| +26439| +26464| +26465| +26466| +26467| +26468| +26469| +26470| +26471| +26496| +26497| +26498| +26499| +26500| +26501| +26502| +26503| +26528| +26529| +26530| +26531| +26532| +26533| +26534| +26535| +26560| +26561| +26562| +26563| +26564| +26565| +26566| +26567| +26592| +26593| +26594| +26595| +26596| +26597| +26598| +26599| +26624| +26625| +26626| +26627| +26628| +26629| +26630| +26631| +26656| +26657| +26658| +26659| +26660| +26661| +26662| +26663| +26688| +26689| +26690| +26691| +26692| +26693| +26694| +26695| +26720| +26721| +26722| +26723| +26724| +26725| +26726| +26727| +26752| +26753| +26754| +26755| +26756| +26757| +26758| +26759| +26784| +26785| +26786| +26787| +26788| +26789| +26790| +26791| +26816| +26817| +26818| +26819| +26820| +26821| +26822| +26823| +26848| +26849| +26850| +26851| +26852| +26853| +26854| +26855| +26880| +26881| +26882| +26883| +26884| +26885| +26886| +26887| +26912| +26913| +26914| +26915| +26916| +26917| +26918| +26919| +26944| +26945| +26946| +26947| +26948| +26949| +26950| +26951| +26976| +26977| +26978| +26979| +26980| +26981| +26982| +26983| +27008| +27009| +27010| +27011| +27012| +27013| +27014| +27015| +27040| +27041| +27042| +27043| +27044| +27045| +27046| +27047| +27072| +27073| +27074| +27075| +27076| +27077| +27078| +27079| +27104| +27105| +27106| +27107| +27108| +27109| +27110| +27111| +27136| +27137| +27138| +27139| +27140| +27141| +27142| +27143| +27168| +27169| +27170| +27171| +27172| +27173| +27174| +27175| +27200| +27201| +27202| +27203| +27204| +27205| +27206| +27207| +27232| +27233| +27234| +27235| +27236| +27237| +27238| +27239| +27264| +27265| +27266| +27267| +27268| +27269| +27270| +27271| +27296| +27297| +27298| +27299| +27300| +27301| +27302| +27303| +27328| +27329| +27330| +27331| +27332| +27333| +27334| +27335| +27360| +27361| +27362| +27363| +27364| +27365| +27366| +27367| +27392| +27393| +27394| +27395| +27396| +27397| +27398| +27399| +27424| +27425| +27426| +27427| +27428| +27429| +27430| +27431| +27456| +27457| +27458| +27459| +27460| +27461| +27462| +27463| +27488| +27489| +27490| +27491| +27492| +27493| +27494| +27495| +27520| +27521| +27522| +27523| +27524| +27525| +27526| +27527| +27552| +27553| +27554| +27555| +27556| +27557| +27558| +27559| +27584| +27585| +27586| +27587| +27588| +27589| +27590| +27591| +27616| +27617| +27618| +27619| +27620| +27621| +27622| +27623| +27648| +27649| +27650| +27651| +27652| +27653| +27654| +27655| +27680| +27681| +27682| +27683| +27684| +27685| +27686| +27687| +27712| +27713| +27714| +27715| +27716| +27717| +27718| +27719| +27744| +27745| +27746| +27747| +27748| +27749| +27750| +27751| +27776| +27777| +27778| +27779| +27780| +27781| +27782| +27783| +27808| +27809| +27810| +27811| +27812| +27813| +27814| +27815| +27840| +27841| +27842| +27843| +27844| +27845| +27846| +27847| +27872| +27873| +27874| +27875| +27876| +27877| +27878| +27879| +27904| +27905| +27906| +27907| +27908| +27909| +27910| +27911| +27936| +27937| +27938| +27939| +27940| +27941| +27942| +27943| +27968| +27969| +27970| +27971| +27972| +27973| +27974| +27975| +28000| +28001| +28002| +28003| +28004| +28005| +28006| +28007| +28032| +28033| +28034| +28035| +28036| +28037| +28038| +28039| +28064| +28065| +28066| +28067| +28068| +28069| +28070| +28071| +28096| +28097| +28098| +28099| +28100| +28101| +28102| +28103| +28128| +28129| +28130| +28131| +28132| +28133| +28134| +28135| +28160| +28161| +28162| +28163| +28164| +28165| +28166| +28167| +28192| +28193| +28194| +28195| +28196| +28197| +28198| +28199| +28224| +28225| +28226| +28227| +28228| +28229| +28230| +28231| +28256| +28257| +28258| +28259| +28260| +28261| +28262| +28263| +28288| +28289| +28290| +28291| +28292| +28293| +28294| +28295| +28320| +28321| +28322| +28323| +28324| +28325| +28326| +28327| +28352| +28353| +28354| +28355| +28356| +28357| +28358| +28359| +28384| +28385| +28386| +28387| +28388| +28389| +28390| +28391| +28416| +28417| +28418| +28419| +28420| +28421| +28422| +28423| +28448| +28449| +28450| +28451| +28452| +28453| +28454| +28455| +28480| +28481| +28482| +28483| +28484| +28485| +28486| +28487| +28512| +28513| +28514| +28515| +28516| +28517| +28518| +28519| +28544| +28545| +28546| +28547| +28548| +28549| +28550| +28551| +28576| +28577| +28578| +28579| +28580| +28581| +28582| +28583| +28608| +28609| +28610| +28611| +28612| +28613| +28614| +28615| +28640| +28641| +28642| +28643| +28644| +28645| +28646| +28647| +28672| +28673| +28674| +28675| +28676| +28677| +28678| +28679| +28704| +28705| +28706| +28707| +28708| +28709| +28710| +28711| +28736| +28737| +28738| +28739| +28740| +28741| +28742| +28743| +28768| +28769| +28770| +28771| +28772| +28773| +28774| +28775| +28800| +28801| +28802| +28803| +28804| +28805| +28806| +28807| +28832| +28833| +28834| +28835| +28836| +28837| +28838| +28839| +28864| +28865| +28866| +28867| +28868| +28869| +28870| +28871| +28896| +28897| +28898| +28899| +28900| +28901| +28902| +28903| +28928| +28929| +28930| +28931| +28932| +28933| +28934| +28935| +28960| +28961| +28962| +28963| +28964| +28965| +28966| +28967| +28992| +28993| +28994| +28995| +28996| +28997| +28998| +28999| +29024| +29025| +29026| +29027| +29028| +29029| +29030| +29031| +29056| +29057| +29058| +29059| +29060| +29061| +29062| +29063| +29088| +29089| +29090| +29091| +29092| +29093| +29094| +29095| +29120| +29121| +29122| +29123| +29124| +29125| +29126| +29127| +29152| +29153| +29154| +29155| +29156| +29157| +29158| +29159| +29184| +29185| +29186| +29187| +29188| +29189| +29190| +29191| +29216| +29217| +29218| +29219| +29220| +29221| +29222| +29223| +29248| +29249| +29250| +29251| +29252| +29253| +29254| +29255| +29280| +29281| +29282| +29283| +29284| +29285| +29286| +29287| +29312| +29313| +29314| +29315| +29316| +29317| +29318| +29319| +29344| +29345| +29346| +29347| +29348| +29349| +29350| +29351| +29376| +29377| +29378| +29379| +29380| +29381| +29382| +29383| +29408| +29409| +29410| +29411| +29412| +29413| +29414| +29415| +29440| +29441| +29442| +29443| +29444| +29445| +29446| +29447| +29472| +29473| +29474| +29475| +29476| +29477| +29478| +29479| +29504| +29505| +29506| +29507| +29508| +29509| +29510| +29511| +29536| +29537| +29538| +29539| +29540| +29541| +29542| +29543| +29568| +29569| +29570| +29571| +29572| +29573| +29574| +29575| +29600| +29601| +29602| +29603| +29604| +29605| +29606| +29607| +29632| +29633| +29634| +29635| +29636| +29637| +29638| +29639| +29664| +29665| +29666| +29667| +29668| +29669| +29670| +29671| +29696| +29697| +29698| +29699| +29700| +29701| +29702| +29703| +29728| +29729| +29730| +29731| +29732| +29733| +29734| +29735| +29760| +29761| +29762| +29763| +29764| +29765| +29766| +29767| +29792| +29793| +29794| +29795| +29796| +29797| +29798| +29799| +29824| +29825| +29826| +29827| +29828| +29829| +29830| +29831| +29856| +29857| +29858| +29859| +29860| +29861| +29862| +29863| +29888| +29889| +29890| +29891| +29892| +29893| +29894| +29895| +29920| +29921| +29922| +29923| +29924| +29925| +29926| +29927| +29952| +29953| +29954| +29955| +29956| +29957| +29958| +29959| +29984| +29985| +29986| +29987| +29988| +29989| +29990| +29991| +30016| +30017| +30018| +30019| +30020| +30021| +30022| +30023| +30048| +30049| +30050| +30051| +30052| +30053| +30054| +30055| +30080| +30081| +30082| +30083| +30084| +30085| +30086| +30087| +30112| +30113| +30114| +30115| +30116| +30117| +30118| +30119| +30144| +30145| +30146| +30147| +30148| +30149| +30150| +30151| +30176| +30177| +30178| +30179| +30180| +30181| +30182| +30183| +30208| +30209| +30210| +30211| +30212| +30213| +30214| +30215| +30240| +30241| +30242| +30243| +30244| +30245| +30246| +30247| +30272| +30273| +30274| +30275| +30276| +30277| +30278| +30279| +30304| +30305| +30306| +30307| +30308| +30309| +30310| +30311| +30336| +30337| +30338| +30339| +30340| +30341| +30342| +30343| +30368| +30369| +30370| +30371| +30372| +30373| +30374| +30375| +30400| +30401| +30402| +30403| +30404| +30405| +30406| +30407| +30432| +30433| +30434| +30435| +30436| +30437| +30438| +30439| +30464| +30465| +30466| +30467| +30468| +30469| +30470| +30471| +30496| +30497| +30498| +30499| +30500| +30501| +30502| +30503| +30528| +30529| +30530| +30531| +30532| +30533| +30534| +30535| +30560| +30561| +30562| +30563| +30564| +30565| +30566| +30567| +30592| +30593| +30594| +30595| +30596| +30597| +30598| +30599| +30624| +30625| +30626| +30627| +30628| +30629| +30630| +30631| +30656| +30657| +30658| +30659| +30660| +30661| +30662| +30663| +30688| +30689| +30690| +30691| +30692| +30693| +30694| +30695| +30720| +30721| +30722| +30723| +30724| +30725| +30726| +30727| +30752| +30753| +30754| +30755| +30756| +30757| +30758| +30759| +30784| +30785| +30786| +30787| +30788| +30789| +30790| +30791| +30816| +30817| +30818| +30819| +30820| +30821| +30822| +30823| +30848| +30849| +30850| +30851| +30852| +30853| +30854| +30855| +30880| +30881| +30882| +30883| +30884| +30885| +30886| +30887| +30912| +30913| +30914| +30915| +30916| +30917| +30918| +30919| +30944| +30945| +30946| +30947| +30948| +30949| +30950| +30951| +30976| +30977| +30978| +30979| +30980| +30981| +30982| +30983| +31008| +31009| +31010| +31011| +31012| +31013| +31014| +31015| +31040| +31041| +31042| +31043| +31044| +31045| +31046| +31047| +31072| +31073| +31074| +31075| +31076| +31077| +31078| +31079| +31104| +31105| +31106| +31107| +31108| +31109| +31110| +31111| +31136| +31137| +31138| +31139| +31140| +31141| +31142| +31143| +31168| +31169| +31170| +31171| +31172| +31173| +31174| +31175| +31200| +31201| +31202| +31203| +31204| +31205| +31206| +31207| +31232| +31233| +31234| +31235| +31236| +31237| +31238| +31239| +31264| +31265| +31266| +31267| +31268| +31269| +31270| +31271| +31296| +31297| +31298| +31299| +31300| +31301| +31302| +31303| +31328| +31329| +31330| +31331| +31332| +31333| +31334| +31335| +31360| +31361| +31362| +31363| +31364| +31365| +31366| +31367| +31392| +31393| +31394| +31395| +31396| +31397| +31398| +31399| +31424| +31425| +31426| +31427| +31428| +31429| +31430| +31431| +31456| +31457| +31458| +31459| +31460| +31461| +31462| +31463| +31488| +31489| +31490| +31491| +31492| +31493| +31494| +31495| +31520| +31521| +31522| +31523| +31524| +31525| +31526| +31527| +31552| +31553| +31554| +31555| +31556| +31557| +31558| +31559| +31584| +31585| +31586| +31587| +31588| +31589| +31590| +31591| +31616| +31617| +31618| +31619| +31620| +31621| +31622| +31623| +31648| +31649| +31650| +31651| +31652| +31653| +31654| +31655| +31680| +31681| +31682| +31683| +31684| +31685| +31686| +31687| +31712| +31713| +31714| +31715| +31716| +31717| +31718| +31719| +31744| +31745| +31746| +31747| +31748| +31749| +31750| +31751| +31776| +31777| +31778| +31779| +31780| +31781| +31782| +31783| +31808| +31809| +31810| +31811| +31812| +31813| +31814| +31815| +31840| +31841| +31842| +31843| +31844| +31845| +31846| +31847| +31872| +31873| +31874| +31875| +31876| +31877| +31878| +31879| +31904| +31905| +31906| +31907| +31908| +31909| +31910| +31911| +31936| +31937| +31938| +31939| +31940| +31941| +31942| +31943| +31968| +31969| +31970| +31971| +31972| +31973| +31974| +31975| +32000| +32001| +32002| +32003| +32004| +32005| +32006| +32007| +32032| +32033| +32034| +32035| +32036| +32037| +32038| +32039| +32064| +32065| +32066| +32067| +32068| +32069| +32070| +32071| +32096| +32097| +32098| +32099| +32100| +32101| +32102| +32103| +32128| +32129| +32130| +32131| +32132| +32133| +32134| +32135| +32160| +32161| +32162| +32163| +32164| +32165| +32166| +32167| +32192| +32193| +32194| +32195| +32196| +32197| +32198| +32199| +32224| +32225| +32226| +32227| +32228| +32229| +32230| +32231| +32256| +32257| +32258| +32259| +32260| +32261| +32262| +32263| +32288| +32289| +32290| +32291| +32292| +32293| +32294| +32295| +32320| +32321| +32322| +32323| +32324| +32325| +32326| +32327| +32352| +32353| +32354| +32355| +32356| +32357| +32358| +32359| +32384| +32385| +32386| +32387| +32388| +32389| +32390| +32391| +32416| +32417| +32418| +32419| +32420| +32421| +32422| +32423| +32448| +32449| +32450| +32451| +32452| +32453| +32454| +32455| +32480| +32481| +32482| +32483| +32484| +32485| +32486| +32487| +32512| +32513| +32514| +32515| +32516| +32517| +32518| +32519| +32544| +32545| +32546| +32547| +32548| +32549| +32550| +32551| +32576| +32577| +32578| +32579| +32580| +32581| +32582| +32583| +32608| +32609| +32610| +32611| +32612| +32613| +32614| +32615| +32640| +32641| +32642| +32643| +32644| +32645| +32646| +32647| +32672| +32673| +32674| +32675| +32676| +32677| +32678| +32679| +32704| +32705| +32706| +32707| +32708| +32709| +32710| +32711| +32736| +32737| +32738| +32739| +32740| +32741| +32742| +32743| +32768| +32769| +32770| +32771| +32772| +32773| +32774| +32775| +32800| +32801| +32802| +32803| +32804| +32805| +32806| +32807| +32832| +32833| +32834| +32835| +32836| +32837| +32838| +32839| +32864| +32865| +32866| +32867| +32868| +32869| +32870| +32871| +32896| +32897| +32898| +32899| +32900| +32901| +32902| +32903| +32928| +32929| +32930| +32931| +32932| +32933| +32934| +32935| +32960| +32961| +32962| +32963| +32964| +32965| +32966| +32967| +32992| +32993| +32994| +32995| +32996| +32997| +32998| +32999| +33024| +33025| +33026| +33027| +33028| +33029| +33030| +33031| +33056| +33057| +33058| +33059| +33060| +33061| +33062| +33063| +33088| +33089| +33090| +33091| +33092| +33093| +33094| +33095| +33120| +33121| +33122| +33123| +33124| +33125| +33126| +33127| +33152| +33153| +33154| +33155| +33156| +33157| +33158| +33159| +33184| +33185| +33186| +33187| +33188| +33189| +33190| +33191| +33216| +33217| +33218| +33219| +33220| +33221| +33222| +33223| +33248| +33249| +33250| +33251| +33252| +33253| +33254| +33255| +33280| +33281| +33282| +33283| +33284| +33285| +33286| +33287| +33312| +33313| +33314| +33315| +33316| +33317| +33318| +33319| +33344| +33345| +33346| +33347| +33348| +33349| +33350| +33351| +33376| +33377| +33378| +33379| +33380| +33381| +33382| +33383| +33408| +33409| +33410| +33411| +33412| +33413| +33414| +33415| +33440| +33441| +33442| +33443| +33444| +33445| +33446| +33447| +33472| +33473| +33474| +33475| +33476| +33477| +33478| +33479| +33504| +33505| +33506| +33507| +33508| +33509| +33510| +33511| +33536| +33537| +33538| +33539| +33540| +33541| +33542| +33543| +33568| +33569| +33570| +33571| +33572| +33573| +33574| +33575| +33600| +33601| +33602| +33603| +33604| +33605| +33606| +33607| +33632| +33633| +33634| +33635| +33636| +33637| +33638| +33639| +33664| +33665| +33666| +33667| +33668| +33669| +33670| +33671| +33696| +33697| +33698| +33699| +33700| +33701| +33702| +33703| +33728| +33729| +33730| +33731| +33732| +33733| +33734| +33735| +33760| +33761| +33762| +33763| +33764| +33765| +33766| +33767| +33792| +33793| +33794| +33795| +33796| +33797| +33798| +33799| +33824| +33825| +33826| +33827| +33828| +33829| +33830| +33831| +33856| +33857| +33858| +33859| +33860| +33861| +33862| +33863| +33888| +33889| +33890| +33891| +33892| +33893| +33894| +33895| +33920| +33921| +33922| +33923| +33924| +33925| +33926| +33927| +33952| +33953| +33954| +33955| +33956| +33957| +33958| +33959| +33984| +33985| +33986| +33987| +33988| +33989| +33990| +33991| +34016| +34017| +34018| +34019| +34020| +34021| +34022| +34023| +34048| +34049| +34050| +34051| +34052| +34053| +34054| +34055| +34080| +34081| +34082| +34083| +34084| +34085| +34086| +34087| +34112| +34113| +34114| +34115| +34116| +34117| +34118| +34119| +34144| +34145| +34146| +34147| +34148| +34149| +34150| +34151| +34176| +34177| +34178| +34179| +34180| +34181| +34182| +34183| +34208| +34209| +34210| +34211| +34212| +34213| +34214| +34215| +34240| +34241| +34242| +34243| +34244| +34245| +34246| +34247| +34272| +34273| +34274| +34275| +34276| +34277| +34278| +34279| +34304| +34305| +34306| +34307| +34308| +34309| +34310| +34311| +34336| +34337| +34338| +34339| +34340| +34341| +34342| +34343| +34368| +34369| +34370| +34371| +34372| +34373| +34374| +34375| +34400| +34401| +34402| +34403| +34404| +34405| +34406| +34407| +34432| +34433| +34434| +34435| +34436| +34437| +34438| +34439| +34464| +34465| +34466| +34467| +34468| +34469| +34470| +34471| +34496| +34497| +34498| +34499| +34500| +34501| +34502| +34503| +34528| +34529| +34530| +34531| +34532| +34533| +34534| +34535| +34560| +34561| +34562| +34563| +34564| +34565| +34566| +34567| +34592| +34593| +34594| +34595| +34596| +34597| +34598| +34599| +34624| +34625| +34626| +34627| +34628| +34629| +34630| +34631| +34656| +34657| +34658| +34659| +34660| +34661| +34662| +34663| +34688| +34689| +34690| +34691| +34692| +34693| +34694| +34695| +34720| +34721| +34722| +34723| +34724| +34725| +34726| +34727| +34752| +34753| +34754| +34755| +34756| +34757| +34758| +34759| +34784| +34785| +34786| +34787| +34788| +34789| +34790| +34791| +34816| +34817| +34818| +34819| +34820| +34821| +34822| +34823| +34848| +34849| +34850| +34851| +34852| +34853| +34854| +34855| +34880| +34881| +34882| +34883| +34884| +34885| +34886| +34887| +34912| +34913| +34914| +34915| +34916| +34917| +34918| +34919| +34944| +34945| +34946| +34947| +34948| +34949| +34950| +34951| +34976| +34977| +34978| +34979| +34980| +34981| +34982| +34983| +35008| +35009| +35010| +35011| +35012| +35013| +35014| +35015| +35040| +35041| +35042| +35043| +35044| +35045| +35046| +35047| +35072| +35073| +35074| +35075| +35076| +35077| +35078| +35079| +35104| +35105| +35106| +35107| +35108| +35109| +35110| +35111| +35136| +35137| +35138| +35139| +35140| +35141| +35142| +35143| +35168| +35169| +35170| +35171| +35172| +35173| +35174| +35175| +35200| +35201| +35202| +35203| +35204| +35205| +35206| +35207| +35232| +35233| +35234| +35235| +35236| +35237| +35238| +35239| +35264| +35265| +35266| +35267| +35268| +35269| +35270| +35271| +35296| +35297| +35298| +35299| +35300| +35301| +35302| +35303| +35328| +35329| +35330| +35331| +35332| +35333| +35334| +35335| +35360| +35361| +35362| +35363| +35364| +35365| +35366| +35367| +35392| +35393| +35394| +35395| +35396| +35397| +35398| +35399| +35424| +35425| +35426| +35427| +35428| +35429| +35430| +35431| +35456| +35457| +35458| +35459| +35460| +35461| +35462| +35463| +35488| +35489| +35490| +35491| +35492| +35493| +35494| +35495| +35520| +35521| +35522| +35523| +35524| +35525| +35526| +35527| +35552| +35553| +35554| +35555| +35556| +35557| +35558| +35559| +35584| +35585| +35586| +35587| +35588| +35589| +35590| +35591| +35616| +35617| +35618| +35619| +35620| +35621| +35622| +35623| +35648| +35649| +35650| +35651| +35652| +35653| +35654| +35655| +35680| +35681| +35682| +35683| +35684| +35685| +35686| +35687| +35712| +35713| +35714| +35715| +35716| +35717| +35718| +35719| +35744| +35745| +35746| +35747| +35748| +35749| +35750| +35751| +35776| +35777| +35778| +35779| +35780| +35781| +35782| +35783| +35808| +35809| +35810| +35811| +35812| +35813| +35814| +35815| +35840| +35841| +35842| +35843| +35844| +35845| +35846| +35847| +35872| +35873| +35874| +35875| +35876| +35877| +35878| +35879| +35904| +35905| +35906| +35907| +35908| +35909| +35910| +35911| +35936| +35937| +35938| +35939| +35940| +35941| +35942| +35943| +35968| +35969| +35970| +35971| +35972| +35973| +35974| +35975| +36000| +36001| +36002| +36003| +36004| +36005| +36006| +36007| +36032| +36033| +36034| +36035| +36036| +36037| +36038| +36039| +36064| +36065| +36066| +36067| +36068| +36069| +36070| +36071| +36096| +36097| +36098| +36099| +36100| +36101| +36102| +36103| +36128| +36129| +36130| +36131| +36132| +36133| +36134| +36135| +36160| +36161| +36162| +36163| +36164| +36165| +36166| +36167| +36192| +36193| +36194| +36195| +36196| +36197| +36198| +36199| +36224| +36225| +36226| +36227| +36228| +36229| +36230| +36231| +36256| +36257| +36258| +36259| +36260| +36261| +36262| +36263| +36288| +36289| +36290| +36291| +36292| +36293| +36294| +36295| +36320| +36321| +36322| +36323| +36324| +36325| +36326| +36327| +36352| +36353| +36354| +36355| +36356| +36357| +36358| +36359| +36384| +36385| +36386| +36387| +36388| +36389| +36390| +36391| +36416| +36417| +36418| +36419| +36420| +36421| +36422| +36423| +36448| +36449| +36450| +36451| +36452| +36453| +36454| +36455| +36480| +36481| +36482| +36483| +36484| +36485| +36486| +36487| +36512| +36513| +36514| +36515| +36516| +36517| +36518| +36519| +36544| +36545| +36546| +36547| +36548| +36549| +36550| +36551| +36576| +36577| +36578| +36579| +36580| +36581| +36582| +36583| +36608| +36609| +36610| +36611| +36612| +36613| +36614| +36615| +36640| +36641| +36642| +36643| +36644| +36645| +36646| +36647| +36672| +36673| +36674| +36675| +36676| +36677| +36678| +36679| +36704| +36705| +36706| +36707| +36708| +36709| +36710| +36711| +36736| +36737| +36738| +36739| +36740| +36741| +36742| +36743| +36768| +36769| +36770| +36771| +36772| +36773| +36774| +36775| +36800| +36801| +36802| +36803| +36804| +36805| +36806| +36807| +36832| +36833| +36834| +36835| +36836| +36837| +36838| +36839| +36864| +36865| +36866| +36867| +36868| +36869| +36870| +36871| +36896| +36897| +36898| +36899| +36900| +36901| +36902| +36903| +36928| +36929| +36930| +36931| +36932| +36933| +36934| +36935| +36960| +36961| +36962| +36963| +36964| +36965| +36966| +36967| +36992| +36993| +36994| +36995| +36996| +36997| +36998| +36999| +37024| +37025| +37026| +37027| +37028| +37029| +37030| +37031| +37056| +37057| +37058| +37059| +37060| +37061| +37062| +37063| +37088| +37089| +37090| +37091| +37092| +37093| +37094| +37095| +37120| +37121| +37122| +37123| +37124| +37125| +37126| +37127| +37152| +37153| +37154| +37155| +37156| +37157| +37158| +37159| +37184| +37185| +37186| +37187| +37188| +37189| +37190| +37191| +37216| +37217| +37218| +37219| +37220| +37221| +37222| +37223| +37248| +37249| +37250| +37251| +37252| +37253| +37254| +37255| +37280| +37281| +37282| +37283| +37284| +37285| +37286| +37287| +37312| +37313| +37314| +37315| +37316| +37317| +37318| +37319| +37344| +37345| +37346| +37347| +37348| +37349| +37350| +37351| +37376| +37377| +37378| +37379| +37380| +37381| +37382| +37383| +37408| +37409| +37410| +37411| +37412| +37413| +37414| +37415| +37440| +37441| +37442| +37443| +37444| +37445| +37446| +37447| +37472| +37473| +37474| +37475| +37476| +37477| +37478| +37479| +37504| +37505| +37506| +37507| +37508| +37509| +37510| +37511| +37536| +37537| +37538| +37539| +37540| +37541| +37542| +37543| +37568| +37569| +37570| +37571| +37572| +37573| +37574| +37575| +37600| +37601| +37602| +37603| +37604| +37605| +37606| +37607| +37632| +37633| +37634| +37635| +37636| +37637| +37638| +37639| +37664| +37665| +37666| +37667| +37668| +37669| +37670| +37671| +37696| +37697| +37698| +37699| +37700| +37701| +37702| +37703| +37728| +37729| +37730| +37731| +37732| +37733| +37734| +37735| +37760| +37761| +37762| +37763| +37764| +37765| +37766| +37767| +37792| +37793| +37794| +37795| +37796| +37797| +37798| +37799| +37824| +37825| +37826| +37827| +37828| +37829| +37830| +37831| +37856| +37857| +37858| +37859| +37860| +37861| +37862| +37863| +37888| +37889| +37890| +37891| +37892| +37893| +37894| +37895| +37920| +37921| +37922| +37923| +37924| +37925| +37926| +37927| +37952| +37953| +37954| +37955| +37956| +37957| +37958| +37959| +37984| +37985| +37986| +37987| +37988| +37989| +37990| +37991| +38016| +38017| +38018| +38019| +38020| +38021| +38022| +38023| +38048| +38049| +38050| +38051| +38052| +38053| +38054| +38055| +38080| +38081| +38082| +38083| +38084| +38085| +38086| +38087| +38112| +38113| +38114| +38115| +38116| +38117| +38118| +38119| +38144| +38145| +38146| +38147| +38148| +38149| +38150| +38151| +38176| +38177| +38178| +38179| +38180| +38181| +38182| +38183| +38208| +38209| +38210| +38211| +38212| +38213| +38214| +38215| +38240| +38241| +38242| +38243| +38244| +38245| +38246| +38247| +38272| +38273| +38274| +38275| +38276| +38277| +38278| +38279| +38304| +38305| +38306| +38307| +38308| +38309| +38310| +38311| +38336| +38337| +38338| +38339| +38340| +38341| +38342| +38343| +38368| +38369| +38370| +38371| +38372| +38373| +38374| +38375| +38400| +38401| +38402| +38403| +38404| +38405| +38406| +38407| +38432| +38433| +38434| +38435| +38436| +38437| +38438| +38439| +38464| +38465| +38466| +38467| +38468| +38469| +38470| +38471| +38496| +38497| +38498| +38499| +38500| +38501| +38502| +38503| +38528| +38529| +38530| +38531| +38532| +38533| +38534| +38535| +38560| +38561| +38562| +38563| +38564| +38565| +38566| +38567| +38592| +38593| +38594| +38595| +38596| +38597| +38598| +38599| +38624| +38625| +38626| +38627| +38628| +38629| +38630| +38631| +38656| +38657| +38658| +38659| +38660| +38661| +38662| +38663| +38688| +38689| +38690| +38691| +38692| +38693| +38694| +38695| +38720| +38721| +38722| +38723| +38724| +38725| +38726| +38727| +38752| +38753| +38754| +38755| +38756| +38757| +38758| +38759| +38784| +38785| +38786| +38787| +38788| +38789| +38790| +38791| +38816| +38817| +38818| +38819| +38820| +38821| +38822| +38823| +38848| +38849| +38850| +38851| +38852| +38853| +38854| +38855| +38880| +38881| +38882| +38883| +38884| +38885| +38886| +38887| +38912| +38913| +38914| +38915| +38916| +38917| +38918| +38919| +38944| +38945| +38946| +38947| +38948| +38949| +38950| +38951| +38976| +38977| +38978| +38979| +38980| +38981| +38982| +38983| +39008| +39009| +39010| +39011| +39012| +39013| +39014| +39015| +39040| +39041| +39042| +39043| +39044| +39045| +39046| +39047| +39072| +39073| +39074| +39075| +39076| +39077| +39078| +39079| +39104| +39105| +39106| +39107| +39108| +39109| +39110| +39111| +39136| +39137| +39138| +39139| +39140| +39141| +39142| +39143| +39168| +39169| +39170| +39171| +39172| +39173| +39174| +39175| +39200| +39201| +39202| +39203| +39204| +39205| +39206| +39207| +39232| +39233| +39234| +39235| +39236| +39237| +39238| +39239| +39264| +39265| +39266| +39267| +39268| +39269| +39270| +39271| +39296| +39297| +39298| +39299| +39300| +39301| +39302| +39303| +39328| +39329| +39330| +39331| +39332| +39333| +39334| +39335| +39360| +39361| +39362| +39363| +39364| +39365| +39366| +39367| +39392| +39393| +39394| +39395| +39396| +39397| +39398| +39399| +39424| +39425| +39426| +39427| +39428| +39429| +39430| +39431| +39456| +39457| +39458| +39459| +39460| +39461| +39462| +39463| +39488| +39489| +39490| +39491| +39492| +39493| +39494| +39495| +39520| +39521| +39522| +39523| +39524| +39525| +39526| +39527| +39552| +39553| +39554| +39555| +39556| +39557| +39558| +39559| +39584| +39585| +39586| +39587| +39588| +39589| +39590| +39591| +39616| +39617| +39618| +39619| +39620| +39621| +39622| +39623| +39648| +39649| +39650| +39651| +39652| +39653| +39654| +39655| +39680| +39681| +39682| +39683| +39684| +39685| +39686| +39687| +39712| +39713| +39714| +39715| +39716| +39717| +39718| +39719| +39744| +39745| +39746| +39747| +39748| +39749| +39750| +39751| +39776| +39777| +39778| +39779| +39780| +39781| +39782| +39783| +39808| +39809| +39810| +39811| +39812| +39813| +39814| +39815| +39840| +39841| +39842| +39843| +39844| +39845| +39846| +39847| +39872| +39873| +39874| +39875| +39876| +39877| +39878| +39879| +39904| +39905| +39906| +39907| +39908| +39909| +39910| +39911| +39936| +39937| +39938| +39939| +39940| +39941| +39942| +39943| +39968| +39969| +39970| +39971| +39972| +39973| +39974| +39975| +40000| +40001| +40002| +40003| +40004| +40005| +40006| +40007| +40032| +40033| +40034| +40035| +40036| +40037| +40038| +40039| +40064| +40065| +40066| +40067| +40068| +40069| +40070| +40071| +40096| +40097| +40098| +40099| +40100| +40101| +40102| +40103| +40128| +40129| +40130| +40131| +40132| +40133| +40134| +40135| +40160| +40161| +40162| +40163| +40164| +40165| +40166| +40167| +40192| +40193| +40194| +40195| +40196| +40197| +40198| +40199| +40224| +40225| +40226| +40227| +40228| +40229| +40230| +40231| +40256| +40257| +40258| +40259| +40260| +40261| +40262| +40263| +40288| +40289| +40290| +40291| +40292| +40293| +40294| +40295| +40320| +40321| +40322| +40323| +40324| +40325| +40326| +40327| +40352| +40353| +40354| +40355| +40356| +40357| +40358| +40359| +40384| +40385| +40386| +40387| +40388| +40389| +40390| +40391| +40416| +40417| +40418| +40419| +40420| +40421| +40422| +40423| +40448| +40449| +40450| +40451| +40452| +40453| +40454| +40455| +40480| +40481| +40482| +40483| +40484| +40485| +40486| +40487| +40512| +40513| +40514| +40515| +40516| +40517| +40518| +40519| +40544| +40545| +40546| +40547| +40548| +40549| +40550| +40551| +40576| +40577| +40578| +40579| +40580| +40581| +40582| +40583| +40608| +40609| +40610| +40611| +40612| +40613| +40614| +40615| +40640| +40641| +40642| +40643| +40644| +40645| +40646| +40647| +40672| +40673| +40674| +40675| +40676| +40677| +40678| +40679| +40704| +40705| +40706| +40707| +40708| +40709| +40710| +40711| +40736| +40737| +40738| +40739| +40740| +40741| +40742| +40743| +40768| +40769| +40770| +40771| +40772| +40773| +40774| +40775| +40800| +40801| +40802| +40803| +40804| +40805| +40806| +40807| +40832| +40833| +40834| +40835| +40836| +40837| +40838| +40839| +40864| +40865| +40866| +40867| +40868| +40869| +40870| +40871| +40896| +40897| +40898| +40899| +40900| +40901| +40902| +40903| +40928| +40929| +40930| +40931| +40932| +40933| +40934| +40935| +40960| +40961| +40962| +40963| +40964| +40965| +40966| +40967| +40992| +40993| +40994| +40995| +40996| +40997| +40998| +40999| +41024| +41025| +41026| +41027| +41028| +41029| +41030| +41031| +41056| +41057| +41058| +41059| +41060| +41061| +41062| +41063| +41088| +41089| +41090| +41091| +41092| +41093| +41094| +41095| +41120| +41121| +41122| +41123| +41124| +41125| +41126| +41127| +41152| +41153| +41154| +41155| +41156| +41157| +41158| +41159| +41184| +41185| +41186| +41187| +41188| +41189| +41190| +41191| +41216| +41217| +41218| +41219| +41220| +41221| +41222| +41223| +41248| +41249| +41250| +41251| +41252| +41253| +41254| +41255| +41280| +41281| +41282| +41283| +41284| +41285| +41286| +41287| +41312| +41313| +41314| +41315| +41316| +41317| +41318| +41319| +41344| +41345| +41346| +41347| +41348| +41349| +41350| +41351| +41376| +41377| +41378| +41379| +41380| +41381| +41382| +41383| +41408| +41409| +41410| +41411| +41412| +41413| +41414| +41415| +41440| +41441| +41442| +41443| +41444| +41445| +41446| +41447| +41472| +41473| +41474| +41475| +41476| +41477| +41478| +41479| +41504| +41505| +41506| +41507| +41508| +41509| +41510| +41511| +41536| +41537| +41538| +41539| +41540| +41541| +41542| +41543| +41568| +41569| +41570| +41571| +41572| +41573| +41574| +41575| +41600| +41601| +41602| +41603| +41604| +41605| +41606| +41607| +41632| +41633| +41634| +41635| +41636| +41637| +41638| +41639| +41664| +41665| +41666| +41667| +41668| +41669| +41670| +41671| +41696| +41697| +41698| +41699| +41700| +41701| +41702| +41703| +41728| +41729| +41730| +41731| +41732| +41733| +41734| +41735| +41760| +41761| +41762| +41763| +41764| +41765| +41766| +41767| +41792| +41793| +41794| +41795| +41796| +41797| +41798| +41799| +41824| +41825| +41826| +41827| +41828| +41829| +41830| +41831| +41856| +41857| +41858| +41859| +41860| +41861| +41862| +41863| +41888| +41889| +41890| +41891| +41892| +41893| +41894| +41895| +41920| +41921| +41922| +41923| +41924| +41925| +41926| +41927| +41952| +41953| +41954| +41955| +41956| +41957| +41958| +41959| +41984| +41985| +41986| +41987| +41988| +41989| +41990| +41991| +42016| +42017| +42018| +42019| +42020| +42021| +42022| +42023| +42048| +42049| +42050| +42051| +42052| +42053| +42054| +42055| +42080| +42081| +42082| +42083| +42084| +42085| +42086| +42087| +42112| +42113| +42114| +42115| +42116| +42117| +42118| +42119| +42144| +42145| +42146| +42147| +42148| +42149| +42150| +42151| +42176| +42177| +42178| +42179| +42180| +42181| +42182| +42183| +42208| +42209| +42210| +42211| +42212| +42213| +42214| +42215| +42240| +42241| +42242| +42243| +42244| +42245| +42246| +42247| +42272| +42273| +42274| +42275| +42276| +42277| +42278| +42279| +42304| +42305| +42306| +42307| +42308| +42309| +42310| +42311| +42336| +42337| +42338| +42339| +42340| +42341| +42342| +42343| +42368| +42369| +42370| +42371| +42372| +42373| +42374| +42375| +42400| +42401| +42402| +42403| +42404| +42405| +42406| +42407| +42432| +42433| +42434| +42435| +42436| +42437| +42438| +42439| +42464| +42465| +42466| +42467| +42468| +42469| +42470| +42471| +42496| +42497| +42498| +42499| +42500| +42501| +42502| +42503| +42528| +42529| +42530| +42531| +42532| +42533| +42534| +42535| +42560| +42561| +42562| +42563| +42564| +42565| +42566| +42567| +42592| +42593| +42594| +42595| +42596| +42597| +42598| +42599| +42624| +42625| +42626| +42627| +42628| +42629| +42630| +42631| +42656| +42657| +42658| +42659| +42660| +42661| +42662| +42663| +42688| +42689| +42690| +42691| +42692| +42693| +42694| +42695| +42720| +42721| +42722| +42723| +42724| +42725| +42726| +42727| +42752| +42753| +42754| +42755| +42756| +42757| +42758| +42759| +42784| +42785| +42786| +42787| +42788| +42789| +42790| +42791| +42816| +42817| +42818| +42819| +42820| +42821| +42822| +42823| +42848| +42849| +42850| +42851| +42852| +42853| +42854| +42855| +42880| +42881| +42882| +42883| +42884| +42885| +42886| +42887| +42912| +42913| +42914| +42915| +42916| +42917| +42918| +42919| +42944| +42945| +42946| +42947| +42948| +42949| +42950| +42951| +42976| +42977| +42978| +42979| +42980| +42981| +42982| +42983| +43008| +43009| +43010| +43011| +43012| +43013| +43014| +43015| +43040| +43041| +43042| +43043| +43044| +43045| +43046| +43047| +43072| +43073| +43074| +43075| +43076| +43077| +43078| +43079| +43104| +43105| +43106| +43107| +43108| +43109| +43110| +43111| +43136| +43137| +43138| +43139| +43140| +43141| +43142| +43143| +43168| +43169| +43170| +43171| +43172| +43173| +43174| +43175| +43200| +43201| +43202| +43203| +43204| +43205| +43206| +43207| +43232| +43233| +43234| +43235| +43236| +43237| +43238| +43239| +43264| +43265| +43266| +43267| +43268| +43269| +43270| +43271| +43296| +43297| +43298| +43299| +43300| +43301| +43302| +43303| +43328| +43329| +43330| +43331| +43332| +43333| +43334| +43335| +43360| +43361| +43362| +43363| +43364| +43365| +43366| +43367| +43392| +43393| +43394| +43395| +43396| +43397| +43398| +43399| +43424| +43425| +43426| +43427| +43428| +43429| +43430| +43431| +43456| +43457| +43458| +43459| +43460| +43461| +43462| +43463| +43488| +43489| +43490| +43491| +43492| +43493| +43494| +43495| +43520| +43521| +43522| +43523| +43524| +43525| +43526| +43527| +43552| +43553| +43554| +43555| +43556| +43557| +43558| +43559| +43584| +43585| +43586| +43587| +43588| +43589| +43590| +43591| +43616| +43617| +43618| +43619| +43620| +43621| +43622| +43623| +43648| +43649| +43650| +43651| +43652| +43653| +43654| +43655| +43680| +43681| +43682| +43683| +43684| +43685| +43686| +43687| +43712| +43713| +43714| +43715| +43716| +43717| +43718| +43719| +43744| +43745| +43746| +43747| +43748| +43749| +43750| +43751| +43776| +43777| +43778| +43779| +43780| +43781| +43782| +43783| +43808| +43809| +43810| +43811| +43812| +43813| +43814| +43815| +43840| +43841| +43842| +43843| +43844| +43845| +43846| +43847| +43872| +43873| +43874| +43875| +43876| +43877| +43878| +43879| +43904| +43905| +43906| +43907| +43908| +43909| +43910| +43911| +43936| +43937| +43938| +43939| +43940| +43941| +43942| +43943| +43968| +43969| +43970| +43971| +43972| +43973| +43974| +43975| +44000| +44001| +44002| +44003| +44004| +44005| +44006| +44007| +44032| +44033| +44034| +44035| +44036| +44037| +44038| +44039| +44064| +44065| +44066| +44067| +44068| +44069| +44070| +44071| +44096| +44097| +44098| +44099| +44100| +44101| +44102| +44103| +44128| +44129| +44130| +44131| +44132| +44133| +44134| +44135| +44160| +44161| +44162| +44163| +44164| +44165| +44166| +44167| +44192| +44193| +44194| +44195| +44196| +44197| +44198| +44199| +44224| +44225| +44226| +44227| +44228| +44229| +44230| +44231| +44256| +44257| +44258| +44259| +44260| +44261| +44262| +44263| +44288| +44289| +44290| +44291| +44292| +44293| +44294| +44295| +44320| +44321| +44322| +44323| +44324| +44325| +44326| +44327| +44352| +44353| +44354| +44355| +44356| +44357| +44358| +44359| +44384| +44385| +44386| +44387| +44388| +44389| +44390| +44391| +44416| +44417| +44418| +44419| +44420| +44421| +44422| +44423| +44448| +44449| +44450| +44451| +44452| +44453| +44454| +44455| +44480| +44481| +44482| +44483| +44484| +44485| +44486| +44487| +44512| +44513| +44514| +44515| +44516| +44517| +44518| +44519| +44544| +44545| +44546| +44547| +44548| +44549| +44550| +44551| +44576| +44577| +44578| +44579| +44580| +44581| +44582| +44583| +44608| +44609| +44610| +44611| +44612| +44613| +44614| +44615| +44640| +44641| +44642| +44643| +44644| +44645| +44646| +44647| +44672| +44673| +44674| +44675| +44676| +44677| +44678| +44679| +44704| +44705| +44706| +44707| +44708| +44709| +44710| +44711| +44736| +44737| +44738| +44739| +44740| +44741| +44742| +44743| +44768| +44769| +44770| +44771| +44772| +44773| +44774| +44775| +44800| +44801| +44802| +44803| +44804| +44805| +44806| +44807| +44832| +44833| +44834| +44835| +44836| +44837| +44838| +44839| +44864| +44865| +44866| +44867| +44868| +44869| +44870| +44871| +44896| +44897| +44898| +44899| +44900| +44901| +44902| +44903| +44928| +44929| +44930| +44931| +44932| +44933| +44934| +44935| +44960| +44961| +44962| +44963| +44964| +44965| +44966| +44967| +44992| +44993| +44994| +44995| +44996| +44997| +44998| +44999| +45024| +45025| +45026| +45027| +45028| +45029| +45030| +45031| +45056| +45057| +45058| +45059| +45060| +45061| +45062| +45063| +45088| +45089| +45090| +45091| +45092| +45093| +45094| +45095| +45120| +45121| +45122| +45123| +45124| +45125| +45126| +45127| +45152| +45153| +45154| +45155| +45156| +45157| +45158| +45159| +45184| +45185| +45186| +45187| +45188| +45189| +45190| +45191| +45216| +45217| +45218| +45219| +45220| +45221| +45222| +45223| +45248| +45249| +45250| +45251| +45252| +45253| +45254| +45255| +45280| +45281| +45282| +45283| +45284| +45285| +45286| +45287| +45312| +45313| +45314| +45315| +45316| +45317| +45318| +45319| +45344| +45345| +45346| +45347| +45348| +45349| +45350| +45351| +45376| +45377| +45378| +45379| +45380| +45381| +45382| +45383| +45408| +45409| +45410| +45411| +45412| +45413| +45414| +45415| +45440| +45441| +45442| +45443| +45444| +45445| +45446| +45447| +45472| +45473| +45474| +45475| +45476| +45477| +45478| +45479| +45504| +45505| +45506| +45507| +45508| +45509| +45510| +45511| +45536| +45537| +45538| +45539| +45540| +45541| +45542| +45543| +45568| +45569| +45570| +45571| +45572| +45573| +45574| +45575| +45600| +45601| +45602| +45603| +45604| +45605| +45606| +45607| +45632| +45633| +45634| +45635| +45636| +45637| +45638| +45639| +45664| +45665| +45666| +45667| +45668| +45669| +45670| +45671| +45696| +45697| +45698| +45699| +45700| +45701| +45702| +45703| +45728| +45729| +45730| +45731| +45732| +45733| +45734| +45735| +45760| +45761| +45762| +45763| +45764| +45765| +45766| +45767| +45792| +45793| +45794| +45795| +45796| +45797| +45798| +45799| +45824| +45825| +45826| +45827| +45828| +45829| +45830| +45831| +45856| +45857| +45858| +45859| +45860| +45861| +45862| +45863| +45888| +45889| +45890| +45891| +45892| +45893| +45894| +45895| +45920| +45921| +45922| +45923| +45924| +45925| +45926| +45927| +45952| +45953| +45954| +45955| +45956| +45957| +45958| +45959| +45984| +45985| +45986| +45987| +45988| +45989| +45990| +45991| +46016| +46017| +46018| +46019| +46020| +46021| +46022| +46023| +46048| +46049| +46050| +46051| +46052| +46053| +46054| +46055| +46080| +46081| +46082| +46083| +46084| +46085| +46086| +46087| +46112| +46113| +46114| +46115| +46116| +46117| +46118| +46119| +46144| +46145| +46146| +46147| +46148| +46149| +46150| +46151| +46176| +46177| +46178| +46179| +46180| +46181| +46182| +46183| +46208| +46209| +46210| +46211| +46212| +46213| +46214| +46215| +46240| +46241| +46242| +46243| +46244| +46245| +46246| +46247| +46272| +46273| +46274| +46275| +46276| +46277| +46278| +46279| +46304| +46305| +46306| +46307| +46308| +46309| +46310| +46311| +46336| +46337| +46338| +46339| +46340| +46341| +46342| +46343| +46368| +46369| +46370| +46371| +46372| +46373| +46374| +46375| +46400| +46401| +46402| +46403| +46404| +46405| +46406| +46407| +46432| +46433| +46434| +46435| +46436| +46437| +46438| +46439| +46464| +46465| +46466| +46467| +46468| +46469| +46470| +46471| +46496| +46497| +46498| +46499| +46500| +46501| +46502| +46503| +46528| +46529| +46530| +46531| +46532| +46533| +46534| +46535| +46560| +46561| +46562| +46563| +46564| +46565| +46566| +46567| +46592| +46593| +46594| +46595| +46596| +46597| +46598| +46599| +46624| +46625| +46626| +46627| +46628| +46629| +46630| +46631| +46656| +46657| +46658| +46659| +46660| +46661| +46662| +46663| +46688| +46689| +46690| +46691| +46692| +46693| +46694| +46695| +46720| +46721| +46722| +46723| +46724| +46725| +46726| +46727| +46752| +46753| +46754| +46755| +46756| +46757| +46758| +46759| +46784| +46785| +46786| +46787| +46788| +46789| +46790| +46791| +46816| +46817| +46818| +46819| +46820| +46821| +46822| +46823| +46848| +46849| +46850| +46851| +46852| +46853| +46854| +46855| +46880| +46881| +46882| +46883| +46884| +46885| +46886| +46887| +46912| +46913| +46914| +46915| +46916| +46917| +46918| +46919| +46944| +46945| +46946| +46947| +46948| +46949| +46950| +46951| +46976| +46977| +46978| +46979| +46980| +46981| +46982| +46983| +47008| +47009| +47010| +47011| +47012| +47013| +47014| +47015| +47040| +47041| +47042| +47043| +47044| +47045| +47046| +47047| +47072| +47073| +47074| +47075| +47076| +47077| +47078| +47079| +47104| +47105| +47106| +47107| +47108| +47109| +47110| +47111| +47136| +47137| +47138| +47139| +47140| +47141| +47142| +47143| +47168| +47169| +47170| +47171| +47172| +47173| +47174| +47175| +47200| +47201| +47202| +47203| +47204| +47205| +47206| +47207| +47232| +47233| +47234| +47235| +47236| +47237| +47238| +47239| +47264| +47265| +47266| +47267| +47268| +47269| +47270| +47271| +47296| +47297| +47298| +47299| +47300| +47301| +47302| +47303| +47328| +47329| +47330| +47331| +47332| +47333| +47334| +47335| +47360| +47361| +47362| +47363| +47364| +47365| +47366| +47367| +47392| +47393| +47394| +47395| +47396| +47397| +47398| +47399| +47424| +47425| +47426| +47427| +47428| +47429| +47430| +47431| +47456| +47457| +47458| +47459| +47460| +47461| +47462| +47463| +47488| +47489| +47490| +47491| +47492| +47493| +47494| +47495| +47520| +47521| +47522| +47523| +47524| +47525| +47526| +47527| +47552| +47553| +47554| +47555| +47556| +47557| +47558| +47559| +47584| +47585| +47586| +47587| +47588| +47589| +47590| +47591| +47616| +47617| +47618| +47619| +47620| +47621| +47622| +47623| +47648| +47649| +47650| +47651| +47652| +47653| +47654| +47655| +47680| +47681| +47682| +47683| +47684| +47685| +47686| +47687| +47712| +47713| +47714| +47715| +47716| +47717| +47718| +47719| +47744| +47745| +47746| +47747| +47748| +47749| +47750| +47751| +47776| +47777| +47778| +47779| +47780| +47781| +47782| +47783| +47808| +47809| +47810| +47811| +47812| +47813| +47814| +47815| +47840| +47841| +47842| +47843| +47844| +47845| +47846| +47847| +47872| +47873| +47874| +47875| +47876| +47877| +47878| +47879| +47904| +47905| +47906| +47907| +47908| +47909| +47910| +47911| +47936| +47937| +47938| +47939| +47940| +47941| +47942| +47943| +47968| +47969| +47970| +47971| +47972| +47973| +47974| +47975| +48000| +48001| +48002| +48003| +48004| +48005| +48006| +48007| +48032| +48033| +48034| +48035| +48036| +48037| +48038| +48039| +48064| +48065| +48066| +48067| +48068| +48069| +48070| +48071| +48096| +48097| +48098| +48099| +48100| +48101| +48102| +48103| +48128| +48129| +48130| +48131| +48132| +48133| +48134| +48135| +48160| +48161| +48162| +48163| +48164| +48165| +48166| +48167| +48192| +48193| +48194| +48195| +48196| +48197| +48198| +48199| +48224| +48225| +48226| +48227| +48228| +48229| +48230| +48231| +48256| +48257| +48258| +48259| +48260| +48261| +48262| +48263| +48288| +48289| +48290| +48291| +48292| +48293| +48294| +48295| +48320| +48321| +48322| +48323| +48324| +48325| +48326| +48327| +48352| +48353| +48354| +48355| +48356| +48357| +48358| +48359| +48384| +48385| +48386| +48387| +48388| +48389| +48390| +48391| +48416| +48417| +48418| +48419| +48420| +48421| +48422| +48423| +48448| +48449| +48450| +48451| +48452| +48453| +48454| +48455| +48480| +48481| +48482| +48483| +48484| +48485| +48486| +48487| +48512| +48513| +48514| +48515| +48516| +48517| +48518| +48519| +48544| +48545| +48546| +48547| +48548| +48549| +48550| +48551| +48576| +48577| +48578| +48579| +48580| +48581| +48582| +48583| +48608| +48609| +48610| +48611| +48612| +48613| +48614| +48615| +48640| +48641| +48642| +48643| +48644| +48645| +48646| +48647| +48672| +48673| +48674| +48675| +48676| +48677| +48678| +48679| +48704| +48705| +48706| +48707| +48708| +48709| +48710| +48711| +48736| +48737| +48738| +48739| +48740| +48741| +48742| +48743| +48768| +48769| +48770| +48771| +48772| +48773| +48774| +48775| +48800| +48801| +48802| +48803| +48804| +48805| +48806| +48807| +48832| +48833| +48834| +48835| +48836| +48837| +48838| +48839| +48864| +48865| +48866| +48867| +48868| +48869| +48870| +48871| +48896| +48897| +48898| +48899| +48900| +48901| +48902| +48903| +48928| +48929| +48930| +48931| +48932| +48933| +48934| +48935| +48960| +48961| +48962| +48963| +48964| +48965| +48966| +48967| +48992| +48993| +48994| +48995| +48996| +48997| +48998| +48999| +49024| +49025| +49026| +49027| +49028| +49029| +49030| +49031| +49056| +49057| +49058| +49059| +49060| +49061| +49062| +49063| +49088| +49089| +49090| +49091| +49092| +49093| +49094| +49095| +49120| +49121| +49122| +49123| +49124| +49125| +49126| +49127| +49152| +49153| +49154| +49155| +49156| +49157| +49158| +49159| +49184| +49185| +49186| +49187| +49188| +49189| +49190| +49191| +49216| +49217| +49218| +49219| +49220| +49221| +49222| +49223| +49248| +49249| +49250| +49251| +49252| +49253| +49254| +49255| +49280| +49281| +49282| +49283| +49284| +49285| +49286| +49287| +49312| +49313| +49314| +49315| +49316| +49317| +49318| +49319| +49344| +49345| +49346| +49347| +49348| +49349| +49350| +49351| +49376| +49377| +49378| +49379| +49380| +49381| +49382| +49383| +49408| +49409| +49410| +49411| +49412| +49413| +49414| +49415| +49440| +49441| +49442| +49443| +49444| +49445| +49446| +49447| +49472| +49473| +49474| +49475| +49476| +49477| +49478| +49479| +49504| +49505| +49506| +49507| +49508| +49509| +49510| +49511| +49536| +49537| +49538| +49539| +49540| +49541| +49542| +49543| +49568| +49569| +49570| +49571| +49572| +49573| +49574| +49575| +49600| +49601| +49602| +49603| +49604| +49605| +49606| +49607| +49632| +49633| +49634| +49635| +49636| +49637| +49638| +49639| +49664| +49665| +49666| +49667| +49668| +49669| +49670| +49671| +49696| +49697| +49698| +49699| +49700| +49701| +49702| +49703| +49728| +49729| +49730| +49731| +49732| +49733| +49734| +49735| +49760| +49761| +49762| +49763| +49764| +49765| +49766| +49767| +49792| +49793| +49794| +49795| +49796| +49797| +49798| +49799| +49824| +49825| +49826| +49827| +49828| +49829| +49830| +49831| +49856| +49857| +49858| +49859| +49860| +49861| +49862| +49863| +49888| +49889| +49890| +49891| +49892| +49893| +49894| +49895| +49920| +49921| +49922| +49923| +49924| +49925| +49926| +49927| +49952| +49953| +49954| +49955| +49956| +49957| +49958| +49959| +49984| +49985| +49986| +49987| +49988| +49989| +49990| +49991| +50016| +50017| +50018| +50019| +50020| +50021| +50022| +50023| +50048| +50049| +50050| +50051| +50052| +50053| +50054| +50055| +50080| +50081| +50082| +50083| +50084| +50085| +50086| +50087| +50112| +50113| +50114| +50115| +50116| +50117| +50118| +50119| +50144| +50145| +50146| +50147| +50148| +50149| +50150| +50151| +50176| +50177| +50178| +50179| +50180| +50181| +50182| +50183| +50208| +50209| +50210| +50211| +50212| +50213| +50214| +50215| +50240| +50241| +50242| +50243| +50244| +50245| +50246| +50247| +50272| +50273| +50274| +50275| +50276| +50277| +50278| +50279| +50304| +50305| +50306| +50307| +50308| +50309| +50310| +50311| +50336| +50337| +50338| +50339| +50340| +50341| +50342| +50343| +50368| +50369| +50370| +50371| +50372| +50373| +50374| +50375| +50400| +50401| +50402| +50403| +50404| +50405| +50406| +50407| +50432| +50433| +50434| +50435| +50436| +50437| +50438| +50439| +50464| +50465| +50466| +50467| +50468| +50469| +50470| +50471| +50496| +50497| +50498| +50499| +50500| +50501| +50502| +50503| +50528| +50529| +50530| +50531| +50532| +50533| +50534| +50535| +50560| +50561| +50562| +50563| +50564| +50565| +50566| +50567| +50592| +50593| +50594| +50595| +50596| +50597| +50598| +50599| +50624| +50625| +50626| +50627| +50628| +50629| +50630| +50631| +50656| +50657| +50658| +50659| +50660| +50661| +50662| +50663| +50688| +50689| +50690| +50691| +50692| +50693| +50694| +50695| +50720| +50721| +50722| +50723| +50724| +50725| +50726| +50727| +50752| +50753| +50754| +50755| +50756| +50757| +50758| +50759| +50784| +50785| +50786| +50787| +50788| +50789| +50790| +50791| +50816| +50817| +50818| +50819| +50820| +50821| +50822| +50823| +50848| +50849| +50850| +50851| +50852| +50853| +50854| +50855| +50880| +50881| +50882| +50883| +50884| +50885| +50886| +50887| +50912| +50913| +50914| +50915| +50916| +50917| +50918| +50919| +50944| +50945| +50946| +50947| +50948| +50949| +50950| +50951| +50976| +50977| +50978| +50979| +50980| +50981| +50982| +50983| +51008| +51009| +51010| +51011| +51012| +51013| +51014| +51015| +51040| +51041| +51042| +51043| +51044| +51045| +51046| +51047| +51072| +51073| +51074| +51075| +51076| +51077| +51078| +51079| +51104| +51105| +51106| +51107| +51108| +51109| +51110| +51111| +51136| +51137| +51138| +51139| +51140| +51141| +51142| +51143| +51168| +51169| +51170| +51171| +51172| +51173| +51174| +51175| +51200| +51201| +51202| +51203| +51204| +51205| +51206| +51207| +51232| +51233| +51234| +51235| +51236| +51237| +51238| +51239| +51264| +51265| +51266| +51267| +51268| +51269| +51270| +51271| +51296| +51297| +51298| +51299| +51300| +51301| +51302| +51303| +51328| +51329| +51330| +51331| +51332| +51333| +51334| +51335| +51360| +51361| +51362| +51363| +51364| +51365| +51366| +51367| +51392| +51393| +51394| +51395| +51396| +51397| +51398| +51399| +51424| +51425| +51426| +51427| +51428| +51429| +51430| +51431| +51456| +51457| +51458| +51459| +51460| +51461| +51462| +51463| +51488| +51489| +51490| +51491| +51492| +51493| +51494| +51495| +51520| +51521| +51522| +51523| +51524| +51525| +51526| +51527| +51552| +51553| +51554| +51555| +51556| +51557| +51558| +51559| +51584| +51585| +51586| +51587| +51588| +51589| +51590| +51591| +51616| +51617| +51618| +51619| +51620| +51621| +51622| +51623| +51648| +51649| +51650| +51651| +51652| +51653| +51654| +51655| +51680| +51681| +51682| +51683| +51684| +51685| +51686| +51687| +51712| +51713| +51714| +51715| +51716| +51717| +51718| +51719| +51744| +51745| +51746| +51747| +51748| +51749| +51750| +51751| +51776| +51777| +51778| +51779| +51780| +51781| +51782| +51783| +51808| +51809| +51810| +51811| +51812| +51813| +51814| +51815| +51840| +51841| +51842| +51843| +51844| +51845| +51846| +51847| +51872| +51873| +51874| +51875| +51876| +51877| +51878| +51879| +51904| +51905| +51906| +51907| +51908| +51909| +51910| +51911| +51936| +51937| +51938| +51939| +51940| +51941| +51942| +51943| +51968| +51969| +51970| +51971| +51972| +51973| +51974| +51975| +52000| +52001| +52002| +52003| +52004| +52005| +52006| +52007| +52032| +52033| +52034| +52035| +52036| +52037| +52038| +52039| +52064| +52065| +52066| +52067| +52068| +52069| +52070| +52071| +52096| +52097| +52098| +52099| +52100| +52101| +52102| +52103| +52128| +52129| +52130| +52131| +52132| +52133| +52134| +52135| +52160| +52161| +52162| +52163| +52164| +52165| +52166| +52167| +52192| +52193| +52194| +52195| +52196| +52197| +52198| +52199| +52224| +52225| +52226| +52227| +52228| +52229| +52230| +52231| +52256| +52257| +52258| +52259| +52260| +52261| +52262| +52263| +52288| +52289| +52290| +52291| +52292| +52293| +52294| +52295| +52320| +52321| +52322| +52323| +52324| +52325| +52326| +52327| +52352| +52353| +52354| +52355| +52356| +52357| +52358| +52359| +52384| +52385| +52386| +52387| +52388| +52389| +52390| +52391| +52416| +52417| +52418| +52419| +52420| +52421| +52422| +52423| +52448| +52449| +52450| +52451| +52452| +52453| +52454| +52455| +52480| +52481| +52482| +52483| +52484| +52485| +52486| +52487| +52512| +52513| +52514| +52515| +52516| +52517| +52518| +52519| +52544| +52545| +52546| +52547| +52548| +52549| +52550| +52551| +52576| +52577| +52578| +52579| +52580| +52581| +52582| +52583| +52608| +52609| +52610| +52611| +52612| +52613| +52614| +52615| +52640| +52641| +52642| +52643| +52644| +52645| +52646| +52647| +52672| +52673| +52674| +52675| +52676| +52677| +52678| +52679| +52704| +52705| +52706| +52707| +52708| +52709| +52710| +52711| +52736| +52737| +52738| +52739| +52740| +52741| +52742| +52743| +52768| +52769| +52770| +52771| +52772| +52773| +52774| +52775| +52800| +52801| +52802| +52803| +52804| +52805| +52806| +52807| +52832| +52833| +52834| +52835| +52836| +52837| +52838| +52839| +52864| +52865| +52866| +52867| +52868| +52869| +52870| +52871| +52896| +52897| +52898| +52899| +52900| +52901| +52902| +52903| +52928| +52929| +52930| +52931| +52932| +52933| +52934| +52935| +52960| +52961| +52962| +52963| +52964| +52965| +52966| +52967| +52992| +52993| +52994| +52995| +52996| +52997| +52998| +52999| +53024| +53025| +53026| +53027| +53028| +53029| +53030| +53031| +53056| +53057| +53058| +53059| +53060| +53061| +53062| +53063| +53088| +53089| +53090| +53091| +53092| +53093| +53094| +53095| +53120| +53121| +53122| +53123| +53124| +53125| +53126| +53127| +53152| +53153| +53154| +53155| +53156| +53157| +53158| +53159| +53184| +53185| +53186| +53187| +53188| +53189| +53190| +53191| +53216| +53217| +53218| +53219| +53220| +53221| +53222| +53223| +53248| +53249| +53250| +53251| +53252| +53253| +53254| +53255| +53280| +53281| +53282| +53283| +53284| +53285| +53286| +53287| +53312| +53313| +53314| +53315| +53316| +53317| +53318| +53319| +53344| +53345| +53346| +53347| +53348| +53349| +53350| +53351| +53376| +53377| +53378| +53379| +53380| +53381| +53382| +53383| +53408| +53409| +53410| +53411| +53412| +53413| +53414| +53415| +53440| +53441| +53442| +53443| +53444| +53445| +53446| +53447| +53472| +53473| +53474| +53475| +53476| +53477| +53478| +53479| +53504| +53505| +53506| +53507| +53508| +53509| +53510| +53511| +53536| +53537| +53538| +53539| +53540| +53541| +53542| +53543| +53568| +53569| +53570| +53571| +53572| +53573| +53574| +53575| +53600| +53601| +53602| +53603| +53604| +53605| +53606| +53607| +53632| +53633| +53634| +53635| +53636| +53637| +53638| +53639| +53664| +53665| +53666| +53667| +53668| +53669| +53670| +53671| +53696| +53697| +53698| +53699| +53700| +53701| +53702| +53703| +53728| +53729| +53730| +53731| +53732| +53733| +53734| +53735| +53760| +53761| +53762| +53763| +53764| +53765| +53766| +53767| +53792| +53793| +53794| +53795| +53796| +53797| +53798| +53799| +53824| +53825| +53826| +53827| +53828| +53829| +53830| +53831| +53856| +53857| +53858| +53859| +53860| +53861| +53862| +53863| +53888| +53889| +53890| +53891| +53892| +53893| +53894| +53895| +53920| +53921| +53922| +53923| +53924| +53925| +53926| +53927| +53952| +53953| +53954| +53955| +53956| +53957| +53958| +53959| +53984| +53985| +53986| +53987| +53988| +53989| +53990| +53991| +54016| +54017| +54018| +54019| +54020| +54021| +54022| +54023| +54048| +54049| +54050| +54051| +54052| +54053| +54054| +54055| +54080| +54081| +54082| +54083| +54084| +54085| +54086| +54087| +54112| +54113| +54114| +54115| +54116| +54117| +54118| +54119| +54144| +54145| +54146| +54147| +54148| +54149| +54150| +54151| +54176| +54177| +54178| +54179| +54180| +54181| +54182| +54183| +54208| +54209| +54210| +54211| +54212| +54213| +54214| +54215| +54240| +54241| +54242| +54243| +54244| +54245| +54246| +54247| +54272| +54273| +54274| +54275| +54276| +54277| +54278| +54279| +54304| +54305| +54306| +54307| +54308| +54309| +54310| +54311| +54336| +54337| +54338| +54339| +54340| +54341| +54342| +54343| +54368| +54369| +54370| +54371| +54372| +54373| +54374| +54375| +54400| +54401| +54402| +54403| +54404| +54405| +54406| +54407| +54432| +54433| +54434| +54435| +54436| +54437| +54438| +54439| +54464| +54465| +54466| +54467| +54468| +54469| +54470| +54471| +54496| +54497| +54498| +54499| +54500| +54501| +54502| +54503| +54528| +54529| +54530| +54531| +54532| +54533| +54534| +54535| +54560| +54561| +54562| +54563| +54564| +54565| +54566| +54567| +54592| +54593| +54594| +54595| +54596| +54597| +54598| +54599| +54624| +54625| +54626| +54627| +54628| +54629| +54630| +54631| +54656| +54657| +54658| +54659| +54660| +54661| +54662| +54663| +54688| +54689| +54690| +54691| +54692| +54693| +54694| +54695| +54720| +54721| +54722| +54723| +54724| +54725| +54726| +54727| +54752| +54753| +54754| +54755| +54756| +54757| +54758| +54759| +54784| +54785| +54786| +54787| +54788| +54789| +54790| +54791| +54816| +54817| +54818| +54819| +54820| +54821| +54822| +54823| +54848| +54849| +54850| +54851| +54852| +54853| +54854| +54855| +54880| +54881| +54882| +54883| +54884| +54885| +54886| +54887| +54912| +54913| +54914| +54915| +54916| +54917| +54918| +54919| +54944| +54945| +54946| +54947| +54948| +54949| +54950| +54951| +54976| +54977| +54978| +54979| +54980| +54981| +54982| +54983| +55008| +55009| +55010| +55011| +55012| +55013| +55014| +55015| +55040| +55041| +55042| +55043| +55044| +55045| +55046| +55047| +55072| +55073| +55074| +55075| +55076| +55077| +55078| +55079| +55104| +55105| +55106| +55107| +55108| +55109| +55110| +55111| +55136| +55137| +55138| +55139| +55140| +55141| +55142| +55143| +55168| +55169| +55170| +55171| +55172| +55173| +55174| +55175| +55200| +55201| +55202| +55203| +55204| +55205| +55206| +55207| +55232| +55233| +55234| +55235| +55236| +55237| +55238| +55239| +55264| +55265| +55266| +55267| +55268| +55269| +55270| +55271| +55296| +55297| +55298| +55299| +55300| +55301| +55302| +55303| +55328| +55329| +55330| +55331| +55332| +55333| +55334| +55335| +55360| +55361| +55362| +55363| +55364| +55365| +55366| +55367| +55392| +55393| +55394| +55395| +55396| +55397| +55398| +55399| +55424| +55425| +55426| +55427| +55428| +55429| +55430| +55431| +55456| +55457| +55458| +55459| +55460| +55461| +55462| +55463| +55488| +55489| +55490| +55491| +55492| +55493| +55494| +55495| +55520| +55521| +55522| +55523| +55524| +55525| +55526| +55527| +55552| +55553| +55554| +55555| +55556| +55557| +55558| +55559| +55584| +55585| +55586| +55587| +55588| +55589| +55590| +55591| +55616| +55617| +55618| +55619| +55620| +55621| +55622| +55623| +55648| +55649| +55650| +55651| +55652| +55653| +55654| +55655| +55680| +55681| +55682| +55683| +55684| +55685| +55686| +55687| +55712| +55713| +55714| +55715| +55716| +55717| +55718| +55719| +55744| +55745| +55746| +55747| +55748| +55749| +55750| +55751| +55776| +55777| +55778| +55779| +55780| +55781| +55782| +55783| +55808| +55809| +55810| +55811| +55812| +55813| +55814| +55815| +55840| +55841| +55842| +55843| +55844| +55845| +55846| +55847| +55872| +55873| +55874| +55875| +55876| +55877| +55878| +55879| +55904| +55905| +55906| +55907| +55908| +55909| +55910| +55911| +55936| +55937| +55938| +55939| +55940| +55941| +55942| +55943| +55968| +55969| +55970| +55971| +55972| +55973| +55974| +55975| +56000| +56001| +56002| +56003| +56004| +56005| +56006| +56007| +56032| +56033| +56034| +56035| +56036| +56037| +56038| +56039| +56064| +56065| +56066| +56067| +56068| +56069| +56070| +56071| +56096| +56097| +56098| +56099| +56100| +56101| +56102| +56103| +56128| +56129| +56130| +56131| +56132| +56133| +56134| +56135| +56160| +56161| +56162| +56163| +56164| +56165| +56166| +56167| +56192| +56193| +56194| +56195| +56196| +56197| +56198| +56199| +56224| +56225| +56226| +56227| +56228| +56229| +56230| +56231| +56256| +56257| +56258| +56259| +56260| +56261| +56262| +56263| +56288| +56289| +56290| +56291| +56292| +56293| +56294| +56295| +56320| +56321| +56322| +56323| +56324| +56325| +56326| +56327| +56352| +56353| +56354| +56355| +56356| +56357| +56358| +56359| +56384| +56385| +56386| +56387| +56388| +56389| +56390| +56391| +56416| +56417| +56418| +56419| +56420| +56421| +56422| +56423| +56448| +56449| +56450| +56451| +56452| +56453| +56454| +56455| +56480| +56481| +56482| +56483| +56484| +56485| +56486| +56487| +56512| +56513| +56514| +56515| +56516| +56517| +56518| +56519| +56544| +56545| +56546| +56547| +56548| +56549| +56550| +56551| +56576| +56577| +56578| +56579| +56580| +56581| +56582| +56583| +56608| +56609| +56610| +56611| +56612| +56613| +56614| +56615| +56640| +56641| +56642| +56643| +56644| +56645| +56646| +56647| +56672| +56673| +56674| +56675| +56676| +56677| +56678| +56679| +56704| +56705| +56706| +56707| +56708| +56709| +56710| +56711| +56736| +56737| +56738| +56739| +56740| +56741| +56742| +56743| +56768| +56769| +56770| +56771| +56772| +56773| +56774| +56775| +56800| +56801| +56802| +56803| +56804| +56805| +56806| +56807| +56832| +56833| +56834| +56835| +56836| +56837| +56838| +56839| +56864| +56865| +56866| +56867| +56868| +56869| +56870| +56871| +56896| +56897| +56898| +56899| +56900| +56901| +56902| +56903| +56928| +56929| +56930| +56931| +56932| +56933| +56934| +56935| +56960| +56961| +56962| +56963| +56964| +56965| +56966| +56967| +56992| +56993| +56994| +56995| +56996| +56997| +56998| +56999| +57024| +57025| +57026| +57027| +57028| +57029| +57030| +57031| +57056| +57057| +57058| +57059| +57060| +57061| +57062| +57063| +57088| +57089| +57090| +57091| +57092| +57093| +57094| +57095| +57120| +57121| +57122| +57123| +57124| +57125| +57126| +57127| +57152| +57153| +57154| +57155| +57156| +57157| +57158| +57159| +57184| +57185| +57186| +57187| +57188| +57189| +57190| +57191| +57216| +57217| +57218| +57219| +57220| +57221| +57222| +57223| +57248| +57249| +57250| +57251| +57252| +57253| +57254| +57255| +57280| +57281| +57282| +57283| +57284| +57285| +57286| +57287| +57312| +57313| +57314| +57315| +57316| +57317| +57318| +57319| +57344| +57345| +57346| +57347| +57348| +57349| +57350| +57351| +57376| +57377| +57378| +57379| +57380| +57381| +57382| +57383| +57408| +57409| +57410| +57411| +57412| +57413| +57414| +57415| +57440| +57441| +57442| +57443| +57444| +57445| +57446| +57447| +57472| +57473| +57474| +57475| +57476| +57477| +57478| +57479| +57504| +57505| +57506| +57507| +57508| +57509| +57510| +57511| +57536| +57537| +57538| +57539| +57540| +57541| +57542| +57543| +57568| +57569| +57570| +57571| +57572| +57573| +57574| +57575| +57600| +57601| +57602| +57603| +57604| +57605| +57606| +57607| +57632| +57633| +57634| +57635| +57636| +57637| +57638| +57639| +57664| +57665| +57666| +57667| +57668| +57669| +57670| +57671| +57696| +57697| +57698| +57699| +57700| +57701| +57702| +57703| +57728| +57729| +57730| +57731| +57732| +57733| +57734| +57735| +57760| +57761| +57762| +57763| +57764| +57765| +57766| +57767| +57792| +57793| +57794| +57795| +57796| +57797| +57798| +57799| +57824| +57825| +57826| +57827| +57828| +57829| +57830| +57831| +57856| +57857| +57858| +57859| +57860| +57861| +57862| +57863| +57888| +57889| +57890| +57891| +57892| +57893| +57894| +57895| +57920| +57921| +57922| +57923| +57924| +57925| +57926| +57927| +57952| +57953| +57954| +57955| +57956| +57957| +57958| +57959| +57984| +57985| +57986| +57987| +57988| +57989| +57990| +57991| +58016| +58017| +58018| +58019| +58020| +58021| +58022| +58023| +58048| +58049| +58050| +58051| +58052| +58053| +58054| +58055| +58080| +58081| +58082| +58083| +58084| +58085| +58086| +58087| +58112| +58113| +58114| +58115| +58116| +58117| +58118| +58119| +58144| +58145| +58146| +58147| +58148| +58149| +58150| +58151| +58176| +58177| +58178| +58179| +58180| +58181| +58182| +58183| +58208| +58209| +58210| +58211| +58212| +58213| +58214| +58215| +58240| +58241| +58242| +58243| +58244| +58245| +58246| +58247| +58272| +58273| +58274| +58275| +58276| +58277| +58278| +58279| +58304| +58305| +58306| +58307| +58308| +58309| +58310| +58311| +58336| +58337| +58338| +58339| +58340| +58341| +58342| +58343| +58368| +58369| +58370| +58371| +58372| +58373| +58374| +58375| +58400| +58401| +58402| +58403| +58404| +58405| +58406| +58407| +58432| +58433| +58434| +58435| +58436| +58437| +58438| +58439| +58464| +58465| +58466| +58467| +58468| +58469| +58470| +58471| +58496| +58497| +58498| +58499| +58500| +58501| +58502| +58503| +58528| +58529| +58530| +58531| +58532| +58533| +58534| +58535| +58560| +58561| +58562| +58563| +58564| +58565| +58566| +58567| +58592| +58593| +58594| +58595| +58596| +58597| +58598| +58599| +58624| +58625| +58626| +58627| +58628| +58629| +58630| +58631| +58656| +58657| +58658| +58659| +58660| +58661| +58662| +58663| +58688| +58689| +58690| +58691| +58692| +58693| +58694| +58695| +58720| +58721| +58722| +58723| +58724| +58725| +58726| +58727| +58752| +58753| +58754| +58755| +58756| +58757| +58758| +58759| +58784| +58785| +58786| +58787| +58788| +58789| +58790| +58791| +58816| +58817| +58818| +58819| +58820| +58821| +58822| +58823| +58848| +58849| +58850| +58851| +58852| +58853| +58854| +58855| +58880| +58881| +58882| +58883| +58884| +58885| +58886| +58887| +58912| +58913| +58914| +58915| +58916| +58917| +58918| +58919| +58944| +58945| +58946| +58947| +58948| +58949| +58950| +58951| +58976| +58977| +58978| +58979| +58980| +58981| +58982| +58983| +59008| +59009| +59010| +59011| +59012| +59013| +59014| +59015| +59040| +59041| +59042| +59043| +59044| +59045| +59046| +59047| +59072| +59073| +59074| +59075| +59076| +59077| +59078| +59079| +59104| +59105| +59106| +59107| +59108| +59109| +59110| +59111| +59136| +59137| +59138| +59139| +59140| +59141| +59142| +59143| +59168| +59169| +59170| +59171| +59172| +59173| +59174| +59175| +59200| +59201| +59202| +59203| +59204| +59205| +59206| +59207| +59232| +59233| +59234| +59235| +59236| +59237| +59238| +59239| +59264| +59265| +59266| +59267| +59268| +59269| +59270| +59271| +59296| +59297| +59298| +59299| +59300| +59301| +59302| +59303| +59328| +59329| +59330| +59331| +59332| +59333| +59334| +59335| +59360| +59361| +59362| +59363| +59364| +59365| +59366| +59367| +59392| +59393| +59394| +59395| +59396| +59397| +59398| +59399| +59424| +59425| +59426| +59427| +59428| +59429| +59430| +59431| +59456| +59457| +59458| +59459| +59460| +59461| +59462| +59463| +59488| +59489| +59490| +59491| +59492| +59493| +59494| +59495| +59520| +59521| +59522| +59523| +59524| +59525| +59526| +59527| +59552| +59553| +59554| +59555| +59556| +59557| +59558| +59559| +59584| +59585| +59586| +59587| +59588| +59589| +59590| +59591| +59616| +59617| +59618| +59619| +59620| +59621| +59622| +59623| +59648| +59649| +59650| +59651| +59652| +59653| +59654| +59655| +59680| +59681| +59682| +59683| +59684| +59685| +59686| +59687| +59712| +59713| +59714| +59715| +59716| +59717| +59718| +59719| +59744| +59745| +59746| +59747| +59748| +59749| +59750| +59751| +59776| +59777| +59778| +59779| +59780| +59781| +59782| +59783| +59808| +59809| +59810| +59811| +59812| +59813| +59814| +59815| +59840| +59841| +59842| +59843| +59844| +59845| +59846| +59847| +59872| +59873| +59874| +59875| +59876| +59877| +59878| +59879| +59904| +59905| +59906| +59907| +59908| +59909| +59910| +59911| +59936| +59937| +59938| +59939| +59940| +59941| +59942| +59943| +59968| +59969| +59970| +59971| +59972| +59973| +59974| +59975| +60000| diff --git a/batch-tool/src/test/resources/tpch/delete-10g-2/delete.2 b/batch-tool/src/test/resources/tpch/delete-10g-2/delete.2 new file mode 100644 index 0000000..90afa79 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/delete-10g-2/delete.2 @@ -0,0 +1,15000 @@ +60001| +60002| +60003| +60004| +60005| +60006| +60007| +60032| +60033| +60034| +60035| +60036| +60037| +60038| +60039| +60064| +60065| +60066| +60067| +60068| +60069| +60070| +60071| +60096| +60097| +60098| +60099| +60100| +60101| +60102| +60103| +60128| +60129| +60130| +60131| +60132| +60133| +60134| +60135| +60160| +60161| +60162| +60163| +60164| +60165| +60166| +60167| +60192| +60193| +60194| +60195| +60196| +60197| +60198| +60199| +60224| +60225| +60226| +60227| +60228| +60229| +60230| +60231| +60256| +60257| +60258| +60259| +60260| +60261| +60262| +60263| +60288| +60289| +60290| +60291| +60292| +60293| +60294| +60295| +60320| +60321| +60322| +60323| +60324| +60325| +60326| +60327| +60352| +60353| +60354| +60355| +60356| +60357| +60358| +60359| +60384| +60385| +60386| +60387| +60388| +60389| +60390| +60391| +60416| +60417| +60418| +60419| +60420| +60421| +60422| +60423| +60448| +60449| +60450| +60451| +60452| +60453| +60454| +60455| +60480| +60481| +60482| +60483| +60484| +60485| +60486| +60487| +60512| +60513| +60514| +60515| +60516| +60517| +60518| +60519| +60544| +60545| +60546| +60547| +60548| +60549| +60550| +60551| +60576| +60577| +60578| +60579| +60580| +60581| +60582| +60583| +60608| +60609| +60610| +60611| +60612| +60613| +60614| +60615| +60640| +60641| +60642| +60643| +60644| +60645| +60646| +60647| +60672| +60673| +60674| +60675| +60676| +60677| +60678| +60679| +60704| +60705| +60706| +60707| +60708| +60709| +60710| +60711| +60736| +60737| +60738| +60739| +60740| +60741| +60742| +60743| +60768| +60769| +60770| +60771| +60772| +60773| +60774| +60775| +60800| +60801| +60802| +60803| +60804| +60805| +60806| +60807| +60832| +60833| +60834| +60835| +60836| +60837| +60838| +60839| +60864| +60865| +60866| +60867| +60868| +60869| +60870| +60871| +60896| +60897| +60898| +60899| +60900| +60901| +60902| +60903| +60928| +60929| +60930| +60931| +60932| +60933| +60934| +60935| +60960| +60961| +60962| +60963| +60964| +60965| +60966| +60967| +60992| +60993| +60994| +60995| +60996| +60997| +60998| +60999| +61024| +61025| +61026| +61027| +61028| +61029| +61030| +61031| +61056| +61057| +61058| +61059| +61060| +61061| +61062| +61063| +61088| +61089| +61090| +61091| +61092| +61093| +61094| +61095| +61120| +61121| +61122| +61123| +61124| +61125| +61126| +61127| +61152| +61153| +61154| +61155| +61156| +61157| +61158| +61159| +61184| +61185| +61186| +61187| +61188| +61189| +61190| +61191| +61216| +61217| +61218| +61219| +61220| +61221| +61222| +61223| +61248| +61249| +61250| +61251| +61252| +61253| +61254| +61255| +61280| +61281| +61282| +61283| +61284| +61285| +61286| +61287| +61312| +61313| +61314| +61315| +61316| +61317| +61318| +61319| +61344| +61345| +61346| +61347| +61348| +61349| +61350| +61351| +61376| +61377| +61378| +61379| +61380| +61381| +61382| +61383| +61408| +61409| +61410| +61411| +61412| +61413| +61414| +61415| +61440| +61441| +61442| +61443| +61444| +61445| +61446| +61447| +61472| +61473| +61474| +61475| +61476| +61477| +61478| +61479| +61504| +61505| +61506| +61507| +61508| +61509| +61510| +61511| +61536| +61537| +61538| +61539| +61540| +61541| +61542| +61543| +61568| +61569| +61570| +61571| +61572| +61573| +61574| +61575| +61600| +61601| +61602| +61603| +61604| +61605| +61606| +61607| +61632| +61633| +61634| +61635| +61636| +61637| +61638| +61639| +61664| +61665| +61666| +61667| +61668| +61669| +61670| +61671| +61696| +61697| +61698| +61699| +61700| +61701| +61702| +61703| +61728| +61729| +61730| +61731| +61732| +61733| +61734| +61735| +61760| +61761| +61762| +61763| +61764| +61765| +61766| +61767| +61792| +61793| +61794| +61795| +61796| +61797| +61798| +61799| +61824| +61825| +61826| +61827| +61828| +61829| +61830| +61831| +61856| +61857| +61858| +61859| +61860| +61861| +61862| +61863| +61888| +61889| +61890| +61891| +61892| +61893| +61894| +61895| +61920| +61921| +61922| +61923| +61924| +61925| +61926| +61927| +61952| +61953| +61954| +61955| +61956| +61957| +61958| +61959| +61984| +61985| +61986| +61987| +61988| +61989| +61990| +61991| +62016| +62017| +62018| +62019| +62020| +62021| +62022| +62023| +62048| +62049| +62050| +62051| +62052| +62053| +62054| +62055| +62080| +62081| +62082| +62083| +62084| +62085| +62086| +62087| +62112| +62113| +62114| +62115| +62116| +62117| +62118| +62119| +62144| +62145| +62146| +62147| +62148| +62149| +62150| +62151| +62176| +62177| +62178| +62179| +62180| +62181| +62182| +62183| +62208| +62209| +62210| +62211| +62212| +62213| +62214| +62215| +62240| +62241| +62242| +62243| +62244| +62245| +62246| +62247| +62272| +62273| +62274| +62275| +62276| +62277| +62278| +62279| +62304| +62305| +62306| +62307| +62308| +62309| +62310| +62311| +62336| +62337| +62338| +62339| +62340| +62341| +62342| +62343| +62368| +62369| +62370| +62371| +62372| +62373| +62374| +62375| +62400| +62401| +62402| +62403| +62404| +62405| +62406| +62407| +62432| +62433| +62434| +62435| +62436| +62437| +62438| +62439| +62464| +62465| +62466| +62467| +62468| +62469| +62470| +62471| +62496| +62497| +62498| +62499| +62500| +62501| +62502| +62503| +62528| +62529| +62530| +62531| +62532| +62533| +62534| +62535| +62560| +62561| +62562| +62563| +62564| +62565| +62566| +62567| +62592| +62593| +62594| +62595| +62596| +62597| +62598| +62599| +62624| +62625| +62626| +62627| +62628| +62629| +62630| +62631| +62656| +62657| +62658| +62659| +62660| +62661| +62662| +62663| +62688| +62689| +62690| +62691| +62692| +62693| +62694| +62695| +62720| +62721| +62722| +62723| +62724| +62725| +62726| +62727| +62752| +62753| +62754| +62755| +62756| +62757| +62758| +62759| +62784| +62785| +62786| +62787| +62788| +62789| +62790| +62791| +62816| +62817| +62818| +62819| +62820| +62821| +62822| +62823| +62848| +62849| +62850| +62851| +62852| +62853| +62854| +62855| +62880| +62881| +62882| +62883| +62884| +62885| +62886| +62887| +62912| +62913| +62914| +62915| +62916| +62917| +62918| +62919| +62944| +62945| +62946| +62947| +62948| +62949| +62950| +62951| +62976| +62977| +62978| +62979| +62980| +62981| +62982| +62983| +63008| +63009| +63010| +63011| +63012| +63013| +63014| +63015| +63040| +63041| +63042| +63043| +63044| +63045| +63046| +63047| +63072| +63073| +63074| +63075| +63076| +63077| +63078| +63079| +63104| +63105| +63106| +63107| +63108| +63109| +63110| +63111| +63136| +63137| +63138| +63139| +63140| +63141| +63142| +63143| +63168| +63169| +63170| +63171| +63172| +63173| +63174| +63175| +63200| +63201| +63202| +63203| +63204| +63205| +63206| +63207| +63232| +63233| +63234| +63235| +63236| +63237| +63238| +63239| +63264| +63265| +63266| +63267| +63268| +63269| +63270| +63271| +63296| +63297| +63298| +63299| +63300| +63301| +63302| +63303| +63328| +63329| +63330| +63331| +63332| +63333| +63334| +63335| +63360| +63361| +63362| +63363| +63364| +63365| +63366| +63367| +63392| +63393| +63394| +63395| +63396| +63397| +63398| +63399| +63424| +63425| +63426| +63427| +63428| +63429| +63430| +63431| +63456| +63457| +63458| +63459| +63460| +63461| +63462| +63463| +63488| +63489| +63490| +63491| +63492| +63493| +63494| +63495| +63520| +63521| +63522| +63523| +63524| +63525| +63526| +63527| +63552| +63553| +63554| +63555| +63556| +63557| +63558| +63559| +63584| +63585| +63586| +63587| +63588| +63589| +63590| +63591| +63616| +63617| +63618| +63619| +63620| +63621| +63622| +63623| +63648| +63649| +63650| +63651| +63652| +63653| +63654| +63655| +63680| +63681| +63682| +63683| +63684| +63685| +63686| +63687| +63712| +63713| +63714| +63715| +63716| +63717| +63718| +63719| +63744| +63745| +63746| +63747| +63748| +63749| +63750| +63751| +63776| +63777| +63778| +63779| +63780| +63781| +63782| +63783| +63808| +63809| +63810| +63811| +63812| +63813| +63814| +63815| +63840| +63841| +63842| +63843| +63844| +63845| +63846| +63847| +63872| +63873| +63874| +63875| +63876| +63877| +63878| +63879| +63904| +63905| +63906| +63907| +63908| +63909| +63910| +63911| +63936| +63937| +63938| +63939| +63940| +63941| +63942| +63943| +63968| +63969| +63970| +63971| +63972| +63973| +63974| +63975| +64000| +64001| +64002| +64003| +64004| +64005| +64006| +64007| +64032| +64033| +64034| +64035| +64036| +64037| +64038| +64039| +64064| +64065| +64066| +64067| +64068| +64069| +64070| +64071| +64096| +64097| +64098| +64099| +64100| +64101| +64102| +64103| +64128| +64129| +64130| +64131| +64132| +64133| +64134| +64135| +64160| +64161| +64162| +64163| +64164| +64165| +64166| +64167| +64192| +64193| +64194| +64195| +64196| +64197| +64198| +64199| +64224| +64225| +64226| +64227| +64228| +64229| +64230| +64231| +64256| +64257| +64258| +64259| +64260| +64261| +64262| +64263| +64288| +64289| +64290| +64291| +64292| +64293| +64294| +64295| +64320| +64321| +64322| +64323| +64324| +64325| +64326| +64327| +64352| +64353| +64354| +64355| +64356| +64357| +64358| +64359| +64384| +64385| +64386| +64387| +64388| +64389| +64390| +64391| +64416| +64417| +64418| +64419| +64420| +64421| +64422| +64423| +64448| +64449| +64450| +64451| +64452| +64453| +64454| +64455| +64480| +64481| +64482| +64483| +64484| +64485| +64486| +64487| +64512| +64513| +64514| +64515| +64516| +64517| +64518| +64519| +64544| +64545| +64546| +64547| +64548| +64549| +64550| +64551| +64576| +64577| +64578| +64579| +64580| +64581| +64582| +64583| +64608| +64609| +64610| +64611| +64612| +64613| +64614| +64615| +64640| +64641| +64642| +64643| +64644| +64645| +64646| +64647| +64672| +64673| +64674| +64675| +64676| +64677| +64678| +64679| +64704| +64705| +64706| +64707| +64708| +64709| +64710| +64711| +64736| +64737| +64738| +64739| +64740| +64741| +64742| +64743| +64768| +64769| +64770| +64771| +64772| +64773| +64774| +64775| +64800| +64801| +64802| +64803| +64804| +64805| +64806| +64807| +64832| +64833| +64834| +64835| +64836| +64837| +64838| +64839| +64864| +64865| +64866| +64867| +64868| +64869| +64870| +64871| +64896| +64897| +64898| +64899| +64900| +64901| +64902| +64903| +64928| +64929| +64930| +64931| +64932| +64933| +64934| +64935| +64960| +64961| +64962| +64963| +64964| +64965| +64966| +64967| +64992| +64993| +64994| +64995| +64996| +64997| +64998| +64999| +65024| +65025| +65026| +65027| +65028| +65029| +65030| +65031| +65056| +65057| +65058| +65059| +65060| +65061| +65062| +65063| +65088| +65089| +65090| +65091| +65092| +65093| +65094| +65095| +65120| +65121| +65122| +65123| +65124| +65125| +65126| +65127| +65152| +65153| +65154| +65155| +65156| +65157| +65158| +65159| +65184| +65185| +65186| +65187| +65188| +65189| +65190| +65191| +65216| +65217| +65218| +65219| +65220| +65221| +65222| +65223| +65248| +65249| +65250| +65251| +65252| +65253| +65254| +65255| +65280| +65281| +65282| +65283| +65284| +65285| +65286| +65287| +65312| +65313| +65314| +65315| +65316| +65317| +65318| +65319| +65344| +65345| +65346| +65347| +65348| +65349| +65350| +65351| +65376| +65377| +65378| +65379| +65380| +65381| +65382| +65383| +65408| +65409| +65410| +65411| +65412| +65413| +65414| +65415| +65440| +65441| +65442| +65443| +65444| +65445| +65446| +65447| +65472| +65473| +65474| +65475| +65476| +65477| +65478| +65479| +65504| +65505| +65506| +65507| +65508| +65509| +65510| +65511| +65536| +65537| +65538| +65539| +65540| +65541| +65542| +65543| +65568| +65569| +65570| +65571| +65572| +65573| +65574| +65575| +65600| +65601| +65602| +65603| +65604| +65605| +65606| +65607| +65632| +65633| +65634| +65635| +65636| +65637| +65638| +65639| +65664| +65665| +65666| +65667| +65668| +65669| +65670| +65671| +65696| +65697| +65698| +65699| +65700| +65701| +65702| +65703| +65728| +65729| +65730| +65731| +65732| +65733| +65734| +65735| +65760| +65761| +65762| +65763| +65764| +65765| +65766| +65767| +65792| +65793| +65794| +65795| +65796| +65797| +65798| +65799| +65824| +65825| +65826| +65827| +65828| +65829| +65830| +65831| +65856| +65857| +65858| +65859| +65860| +65861| +65862| +65863| +65888| +65889| +65890| +65891| +65892| +65893| +65894| +65895| +65920| +65921| +65922| +65923| +65924| +65925| +65926| +65927| +65952| +65953| +65954| +65955| +65956| +65957| +65958| +65959| +65984| +65985| +65986| +65987| +65988| +65989| +65990| +65991| +66016| +66017| +66018| +66019| +66020| +66021| +66022| +66023| +66048| +66049| +66050| +66051| +66052| +66053| +66054| +66055| +66080| +66081| +66082| +66083| +66084| +66085| +66086| +66087| +66112| +66113| +66114| +66115| +66116| +66117| +66118| +66119| +66144| +66145| +66146| +66147| +66148| +66149| +66150| +66151| +66176| +66177| +66178| +66179| +66180| +66181| +66182| +66183| +66208| +66209| +66210| +66211| +66212| +66213| +66214| +66215| +66240| +66241| +66242| +66243| +66244| +66245| +66246| +66247| +66272| +66273| +66274| +66275| +66276| +66277| +66278| +66279| +66304| +66305| +66306| +66307| +66308| +66309| +66310| +66311| +66336| +66337| +66338| +66339| +66340| +66341| +66342| +66343| +66368| +66369| +66370| +66371| +66372| +66373| +66374| +66375| +66400| +66401| +66402| +66403| +66404| +66405| +66406| +66407| +66432| +66433| +66434| +66435| +66436| +66437| +66438| +66439| +66464| +66465| +66466| +66467| +66468| +66469| +66470| +66471| +66496| +66497| +66498| +66499| +66500| +66501| +66502| +66503| +66528| +66529| +66530| +66531| +66532| +66533| +66534| +66535| +66560| +66561| +66562| +66563| +66564| +66565| +66566| +66567| +66592| +66593| +66594| +66595| +66596| +66597| +66598| +66599| +66624| +66625| +66626| +66627| +66628| +66629| +66630| +66631| +66656| +66657| +66658| +66659| +66660| +66661| +66662| +66663| +66688| +66689| +66690| +66691| +66692| +66693| +66694| +66695| +66720| +66721| +66722| +66723| +66724| +66725| +66726| +66727| +66752| +66753| +66754| +66755| +66756| +66757| +66758| +66759| +66784| +66785| +66786| +66787| +66788| +66789| +66790| +66791| +66816| +66817| +66818| +66819| +66820| +66821| +66822| +66823| +66848| +66849| +66850| +66851| +66852| +66853| +66854| +66855| +66880| +66881| +66882| +66883| +66884| +66885| +66886| +66887| +66912| +66913| +66914| +66915| +66916| +66917| +66918| +66919| +66944| +66945| +66946| +66947| +66948| +66949| +66950| +66951| +66976| +66977| +66978| +66979| +66980| +66981| +66982| +66983| +67008| +67009| +67010| +67011| +67012| +67013| +67014| +67015| +67040| +67041| +67042| +67043| +67044| +67045| +67046| +67047| +67072| +67073| +67074| +67075| +67076| +67077| +67078| +67079| +67104| +67105| +67106| +67107| +67108| +67109| +67110| +67111| +67136| +67137| +67138| +67139| +67140| +67141| +67142| +67143| +67168| +67169| +67170| +67171| +67172| +67173| +67174| +67175| +67200| +67201| +67202| +67203| +67204| +67205| +67206| +67207| +67232| +67233| +67234| +67235| +67236| +67237| +67238| +67239| +67264| +67265| +67266| +67267| +67268| +67269| +67270| +67271| +67296| +67297| +67298| +67299| +67300| +67301| +67302| +67303| +67328| +67329| +67330| +67331| +67332| +67333| +67334| +67335| +67360| +67361| +67362| +67363| +67364| +67365| +67366| +67367| +67392| +67393| +67394| +67395| +67396| +67397| +67398| +67399| +67424| +67425| +67426| +67427| +67428| +67429| +67430| +67431| +67456| +67457| +67458| +67459| +67460| +67461| +67462| +67463| +67488| +67489| +67490| +67491| +67492| +67493| +67494| +67495| +67520| +67521| +67522| +67523| +67524| +67525| +67526| +67527| +67552| +67553| +67554| +67555| +67556| +67557| +67558| +67559| +67584| +67585| +67586| +67587| +67588| +67589| +67590| +67591| +67616| +67617| +67618| +67619| +67620| +67621| +67622| +67623| +67648| +67649| +67650| +67651| +67652| +67653| +67654| +67655| +67680| +67681| +67682| +67683| +67684| +67685| +67686| +67687| +67712| +67713| +67714| +67715| +67716| +67717| +67718| +67719| +67744| +67745| +67746| +67747| +67748| +67749| +67750| +67751| +67776| +67777| +67778| +67779| +67780| +67781| +67782| +67783| +67808| +67809| +67810| +67811| +67812| +67813| +67814| +67815| +67840| +67841| +67842| +67843| +67844| +67845| +67846| +67847| +67872| +67873| +67874| +67875| +67876| +67877| +67878| +67879| +67904| +67905| +67906| +67907| +67908| +67909| +67910| +67911| +67936| +67937| +67938| +67939| +67940| +67941| +67942| +67943| +67968| +67969| +67970| +67971| +67972| +67973| +67974| +67975| +68000| +68001| +68002| +68003| +68004| +68005| +68006| +68007| +68032| +68033| +68034| +68035| +68036| +68037| +68038| +68039| +68064| +68065| +68066| +68067| +68068| +68069| +68070| +68071| +68096| +68097| +68098| +68099| +68100| +68101| +68102| +68103| +68128| +68129| +68130| +68131| +68132| +68133| +68134| +68135| +68160| +68161| +68162| +68163| +68164| +68165| +68166| +68167| +68192| +68193| +68194| +68195| +68196| +68197| +68198| +68199| +68224| +68225| +68226| +68227| +68228| +68229| +68230| +68231| +68256| +68257| +68258| +68259| +68260| +68261| +68262| +68263| +68288| +68289| +68290| +68291| +68292| +68293| +68294| +68295| +68320| +68321| +68322| +68323| +68324| +68325| +68326| +68327| +68352| +68353| +68354| +68355| +68356| +68357| +68358| +68359| +68384| +68385| +68386| +68387| +68388| +68389| +68390| +68391| +68416| +68417| +68418| +68419| +68420| +68421| +68422| +68423| +68448| +68449| +68450| +68451| +68452| +68453| +68454| +68455| +68480| +68481| +68482| +68483| +68484| +68485| +68486| +68487| +68512| +68513| +68514| +68515| +68516| +68517| +68518| +68519| +68544| +68545| +68546| +68547| +68548| +68549| +68550| +68551| +68576| +68577| +68578| +68579| +68580| +68581| +68582| +68583| +68608| +68609| +68610| +68611| +68612| +68613| +68614| +68615| +68640| +68641| +68642| +68643| +68644| +68645| +68646| +68647| +68672| +68673| +68674| +68675| +68676| +68677| +68678| +68679| +68704| +68705| +68706| +68707| +68708| +68709| +68710| +68711| +68736| +68737| +68738| +68739| +68740| +68741| +68742| +68743| +68768| +68769| +68770| +68771| +68772| +68773| +68774| +68775| +68800| +68801| +68802| +68803| +68804| +68805| +68806| +68807| +68832| +68833| +68834| +68835| +68836| +68837| +68838| +68839| +68864| +68865| +68866| +68867| +68868| +68869| +68870| +68871| +68896| +68897| +68898| +68899| +68900| +68901| +68902| +68903| +68928| +68929| +68930| +68931| +68932| +68933| +68934| +68935| +68960| +68961| +68962| +68963| +68964| +68965| +68966| +68967| +68992| +68993| +68994| +68995| +68996| +68997| +68998| +68999| +69024| +69025| +69026| +69027| +69028| +69029| +69030| +69031| +69056| +69057| +69058| +69059| +69060| +69061| +69062| +69063| +69088| +69089| +69090| +69091| +69092| +69093| +69094| +69095| +69120| +69121| +69122| +69123| +69124| +69125| +69126| +69127| +69152| +69153| +69154| +69155| +69156| +69157| +69158| +69159| +69184| +69185| +69186| +69187| +69188| +69189| +69190| +69191| +69216| +69217| +69218| +69219| +69220| +69221| +69222| +69223| +69248| +69249| +69250| +69251| +69252| +69253| +69254| +69255| +69280| +69281| +69282| +69283| +69284| +69285| +69286| +69287| +69312| +69313| +69314| +69315| +69316| +69317| +69318| +69319| +69344| +69345| +69346| +69347| +69348| +69349| +69350| +69351| +69376| +69377| +69378| +69379| +69380| +69381| +69382| +69383| +69408| +69409| +69410| +69411| +69412| +69413| +69414| +69415| +69440| +69441| +69442| +69443| +69444| +69445| +69446| +69447| +69472| +69473| +69474| +69475| +69476| +69477| +69478| +69479| +69504| +69505| +69506| +69507| +69508| +69509| +69510| +69511| +69536| +69537| +69538| +69539| +69540| +69541| +69542| +69543| +69568| +69569| +69570| +69571| +69572| +69573| +69574| +69575| +69600| +69601| +69602| +69603| +69604| +69605| +69606| +69607| +69632| +69633| +69634| +69635| +69636| +69637| +69638| +69639| +69664| +69665| +69666| +69667| +69668| +69669| +69670| +69671| +69696| +69697| +69698| +69699| +69700| +69701| +69702| +69703| +69728| +69729| +69730| +69731| +69732| +69733| +69734| +69735| +69760| +69761| +69762| +69763| +69764| +69765| +69766| +69767| +69792| +69793| +69794| +69795| +69796| +69797| +69798| +69799| +69824| +69825| +69826| +69827| +69828| +69829| +69830| +69831| +69856| +69857| +69858| +69859| +69860| +69861| +69862| +69863| +69888| +69889| +69890| +69891| +69892| +69893| +69894| +69895| +69920| +69921| +69922| +69923| +69924| +69925| +69926| +69927| +69952| +69953| +69954| +69955| +69956| +69957| +69958| +69959| +69984| +69985| +69986| +69987| +69988| +69989| +69990| +69991| +70016| +70017| +70018| +70019| +70020| +70021| +70022| +70023| +70048| +70049| +70050| +70051| +70052| +70053| +70054| +70055| +70080| +70081| +70082| +70083| +70084| +70085| +70086| +70087| +70112| +70113| +70114| +70115| +70116| +70117| +70118| +70119| +70144| +70145| +70146| +70147| +70148| +70149| +70150| +70151| +70176| +70177| +70178| +70179| +70180| +70181| +70182| +70183| +70208| +70209| +70210| +70211| +70212| +70213| +70214| +70215| +70240| +70241| +70242| +70243| +70244| +70245| +70246| +70247| +70272| +70273| +70274| +70275| +70276| +70277| +70278| +70279| +70304| +70305| +70306| +70307| +70308| +70309| +70310| +70311| +70336| +70337| +70338| +70339| +70340| +70341| +70342| +70343| +70368| +70369| +70370| +70371| +70372| +70373| +70374| +70375| +70400| +70401| +70402| +70403| +70404| +70405| +70406| +70407| +70432| +70433| +70434| +70435| +70436| +70437| +70438| +70439| +70464| +70465| +70466| +70467| +70468| +70469| +70470| +70471| +70496| +70497| +70498| +70499| +70500| +70501| +70502| +70503| +70528| +70529| +70530| +70531| +70532| +70533| +70534| +70535| +70560| +70561| +70562| +70563| +70564| +70565| +70566| +70567| +70592| +70593| +70594| +70595| +70596| +70597| +70598| +70599| +70624| +70625| +70626| +70627| +70628| +70629| +70630| +70631| +70656| +70657| +70658| +70659| +70660| +70661| +70662| +70663| +70688| +70689| +70690| +70691| +70692| +70693| +70694| +70695| +70720| +70721| +70722| +70723| +70724| +70725| +70726| +70727| +70752| +70753| +70754| +70755| +70756| +70757| +70758| +70759| +70784| +70785| +70786| +70787| +70788| +70789| +70790| +70791| +70816| +70817| +70818| +70819| +70820| +70821| +70822| +70823| +70848| +70849| +70850| +70851| +70852| +70853| +70854| +70855| +70880| +70881| +70882| +70883| +70884| +70885| +70886| +70887| +70912| +70913| +70914| +70915| +70916| +70917| +70918| +70919| +70944| +70945| +70946| +70947| +70948| +70949| +70950| +70951| +70976| +70977| +70978| +70979| +70980| +70981| +70982| +70983| +71008| +71009| +71010| +71011| +71012| +71013| +71014| +71015| +71040| +71041| +71042| +71043| +71044| +71045| +71046| +71047| +71072| +71073| +71074| +71075| +71076| +71077| +71078| +71079| +71104| +71105| +71106| +71107| +71108| +71109| +71110| +71111| +71136| +71137| +71138| +71139| +71140| +71141| +71142| +71143| +71168| +71169| +71170| +71171| +71172| +71173| +71174| +71175| +71200| +71201| +71202| +71203| +71204| +71205| +71206| +71207| +71232| +71233| +71234| +71235| +71236| +71237| +71238| +71239| +71264| +71265| +71266| +71267| +71268| +71269| +71270| +71271| +71296| +71297| +71298| +71299| +71300| +71301| +71302| +71303| +71328| +71329| +71330| +71331| +71332| +71333| +71334| +71335| +71360| +71361| +71362| +71363| +71364| +71365| +71366| +71367| +71392| +71393| +71394| +71395| +71396| +71397| +71398| +71399| +71424| +71425| +71426| +71427| +71428| +71429| +71430| +71431| +71456| +71457| +71458| +71459| +71460| +71461| +71462| +71463| +71488| +71489| +71490| +71491| +71492| +71493| +71494| +71495| +71520| +71521| +71522| +71523| +71524| +71525| +71526| +71527| +71552| +71553| +71554| +71555| +71556| +71557| +71558| +71559| +71584| +71585| +71586| +71587| +71588| +71589| +71590| +71591| +71616| +71617| +71618| +71619| +71620| +71621| +71622| +71623| +71648| +71649| +71650| +71651| +71652| +71653| +71654| +71655| +71680| +71681| +71682| +71683| +71684| +71685| +71686| +71687| +71712| +71713| +71714| +71715| +71716| +71717| +71718| +71719| +71744| +71745| +71746| +71747| +71748| +71749| +71750| +71751| +71776| +71777| +71778| +71779| +71780| +71781| +71782| +71783| +71808| +71809| +71810| +71811| +71812| +71813| +71814| +71815| +71840| +71841| +71842| +71843| +71844| +71845| +71846| +71847| +71872| +71873| +71874| +71875| +71876| +71877| +71878| +71879| +71904| +71905| +71906| +71907| +71908| +71909| +71910| +71911| +71936| +71937| +71938| +71939| +71940| +71941| +71942| +71943| +71968| +71969| +71970| +71971| +71972| +71973| +71974| +71975| +72000| +72001| +72002| +72003| +72004| +72005| +72006| +72007| +72032| +72033| +72034| +72035| +72036| +72037| +72038| +72039| +72064| +72065| +72066| +72067| +72068| +72069| +72070| +72071| +72096| +72097| +72098| +72099| +72100| +72101| +72102| +72103| +72128| +72129| +72130| +72131| +72132| +72133| +72134| +72135| +72160| +72161| +72162| +72163| +72164| +72165| +72166| +72167| +72192| +72193| +72194| +72195| +72196| +72197| +72198| +72199| +72224| +72225| +72226| +72227| +72228| +72229| +72230| +72231| +72256| +72257| +72258| +72259| +72260| +72261| +72262| +72263| +72288| +72289| +72290| +72291| +72292| +72293| +72294| +72295| +72320| +72321| +72322| +72323| +72324| +72325| +72326| +72327| +72352| +72353| +72354| +72355| +72356| +72357| +72358| +72359| +72384| +72385| +72386| +72387| +72388| +72389| +72390| +72391| +72416| +72417| +72418| +72419| +72420| +72421| +72422| +72423| +72448| +72449| +72450| +72451| +72452| +72453| +72454| +72455| +72480| +72481| +72482| +72483| +72484| +72485| +72486| +72487| +72512| +72513| +72514| +72515| +72516| +72517| +72518| +72519| +72544| +72545| +72546| +72547| +72548| +72549| +72550| +72551| +72576| +72577| +72578| +72579| +72580| +72581| +72582| +72583| +72608| +72609| +72610| +72611| +72612| +72613| +72614| +72615| +72640| +72641| +72642| +72643| +72644| +72645| +72646| +72647| +72672| +72673| +72674| +72675| +72676| +72677| +72678| +72679| +72704| +72705| +72706| +72707| +72708| +72709| +72710| +72711| +72736| +72737| +72738| +72739| +72740| +72741| +72742| +72743| +72768| +72769| +72770| +72771| +72772| +72773| +72774| +72775| +72800| +72801| +72802| +72803| +72804| +72805| +72806| +72807| +72832| +72833| +72834| +72835| +72836| +72837| +72838| +72839| +72864| +72865| +72866| +72867| +72868| +72869| +72870| +72871| +72896| +72897| +72898| +72899| +72900| +72901| +72902| +72903| +72928| +72929| +72930| +72931| +72932| +72933| +72934| +72935| +72960| +72961| +72962| +72963| +72964| +72965| +72966| +72967| +72992| +72993| +72994| +72995| +72996| +72997| +72998| +72999| +73024| +73025| +73026| +73027| +73028| +73029| +73030| +73031| +73056| +73057| +73058| +73059| +73060| +73061| +73062| +73063| +73088| +73089| +73090| +73091| +73092| +73093| +73094| +73095| +73120| +73121| +73122| +73123| +73124| +73125| +73126| +73127| +73152| +73153| +73154| +73155| +73156| +73157| +73158| +73159| +73184| +73185| +73186| +73187| +73188| +73189| +73190| +73191| +73216| +73217| +73218| +73219| +73220| +73221| +73222| +73223| +73248| +73249| +73250| +73251| +73252| +73253| +73254| +73255| +73280| +73281| +73282| +73283| +73284| +73285| +73286| +73287| +73312| +73313| +73314| +73315| +73316| +73317| +73318| +73319| +73344| +73345| +73346| +73347| +73348| +73349| +73350| +73351| +73376| +73377| +73378| +73379| +73380| +73381| +73382| +73383| +73408| +73409| +73410| +73411| +73412| +73413| +73414| +73415| +73440| +73441| +73442| +73443| +73444| +73445| +73446| +73447| +73472| +73473| +73474| +73475| +73476| +73477| +73478| +73479| +73504| +73505| +73506| +73507| +73508| +73509| +73510| +73511| +73536| +73537| +73538| +73539| +73540| +73541| +73542| +73543| +73568| +73569| +73570| +73571| +73572| +73573| +73574| +73575| +73600| +73601| +73602| +73603| +73604| +73605| +73606| +73607| +73632| +73633| +73634| +73635| +73636| +73637| +73638| +73639| +73664| +73665| +73666| +73667| +73668| +73669| +73670| +73671| +73696| +73697| +73698| +73699| +73700| +73701| +73702| +73703| +73728| +73729| +73730| +73731| +73732| +73733| +73734| +73735| +73760| +73761| +73762| +73763| +73764| +73765| +73766| +73767| +73792| +73793| +73794| +73795| +73796| +73797| +73798| +73799| +73824| +73825| +73826| +73827| +73828| +73829| +73830| +73831| +73856| +73857| +73858| +73859| +73860| +73861| +73862| +73863| +73888| +73889| +73890| +73891| +73892| +73893| +73894| +73895| +73920| +73921| +73922| +73923| +73924| +73925| +73926| +73927| +73952| +73953| +73954| +73955| +73956| +73957| +73958| +73959| +73984| +73985| +73986| +73987| +73988| +73989| +73990| +73991| +74016| +74017| +74018| +74019| +74020| +74021| +74022| +74023| +74048| +74049| +74050| +74051| +74052| +74053| +74054| +74055| +74080| +74081| +74082| +74083| +74084| +74085| +74086| +74087| +74112| +74113| +74114| +74115| +74116| +74117| +74118| +74119| +74144| +74145| +74146| +74147| +74148| +74149| +74150| +74151| +74176| +74177| +74178| +74179| +74180| +74181| +74182| +74183| +74208| +74209| +74210| +74211| +74212| +74213| +74214| +74215| +74240| +74241| +74242| +74243| +74244| +74245| +74246| +74247| +74272| +74273| +74274| +74275| +74276| +74277| +74278| +74279| +74304| +74305| +74306| +74307| +74308| +74309| +74310| +74311| +74336| +74337| +74338| +74339| +74340| +74341| +74342| +74343| +74368| +74369| +74370| +74371| +74372| +74373| +74374| +74375| +74400| +74401| +74402| +74403| +74404| +74405| +74406| +74407| +74432| +74433| +74434| +74435| +74436| +74437| +74438| +74439| +74464| +74465| +74466| +74467| +74468| +74469| +74470| +74471| +74496| +74497| +74498| +74499| +74500| +74501| +74502| +74503| +74528| +74529| +74530| +74531| +74532| +74533| +74534| +74535| +74560| +74561| +74562| +74563| +74564| +74565| +74566| +74567| +74592| +74593| +74594| +74595| +74596| +74597| +74598| +74599| +74624| +74625| +74626| +74627| +74628| +74629| +74630| +74631| +74656| +74657| +74658| +74659| +74660| +74661| +74662| +74663| +74688| +74689| +74690| +74691| +74692| +74693| +74694| +74695| +74720| +74721| +74722| +74723| +74724| +74725| +74726| +74727| +74752| +74753| +74754| +74755| +74756| +74757| +74758| +74759| +74784| +74785| +74786| +74787| +74788| +74789| +74790| +74791| +74816| +74817| +74818| +74819| +74820| +74821| +74822| +74823| +74848| +74849| +74850| +74851| +74852| +74853| +74854| +74855| +74880| +74881| +74882| +74883| +74884| +74885| +74886| +74887| +74912| +74913| +74914| +74915| +74916| +74917| +74918| +74919| +74944| +74945| +74946| +74947| +74948| +74949| +74950| +74951| +74976| +74977| +74978| +74979| +74980| +74981| +74982| +74983| +75008| +75009| +75010| +75011| +75012| +75013| +75014| +75015| +75040| +75041| +75042| +75043| +75044| +75045| +75046| +75047| +75072| +75073| +75074| +75075| +75076| +75077| +75078| +75079| +75104| +75105| +75106| +75107| +75108| +75109| +75110| +75111| +75136| +75137| +75138| +75139| +75140| +75141| +75142| +75143| +75168| +75169| +75170| +75171| +75172| +75173| +75174| +75175| +75200| +75201| +75202| +75203| +75204| +75205| +75206| +75207| +75232| +75233| +75234| +75235| +75236| +75237| +75238| +75239| +75264| +75265| +75266| +75267| +75268| +75269| +75270| +75271| +75296| +75297| +75298| +75299| +75300| +75301| +75302| +75303| +75328| +75329| +75330| +75331| +75332| +75333| +75334| +75335| +75360| +75361| +75362| +75363| +75364| +75365| +75366| +75367| +75392| +75393| +75394| +75395| +75396| +75397| +75398| +75399| +75424| +75425| +75426| +75427| +75428| +75429| +75430| +75431| +75456| +75457| +75458| +75459| +75460| +75461| +75462| +75463| +75488| +75489| +75490| +75491| +75492| +75493| +75494| +75495| +75520| +75521| +75522| +75523| +75524| +75525| +75526| +75527| +75552| +75553| +75554| +75555| +75556| +75557| +75558| +75559| +75584| +75585| +75586| +75587| +75588| +75589| +75590| +75591| +75616| +75617| +75618| +75619| +75620| +75621| +75622| +75623| +75648| +75649| +75650| +75651| +75652| +75653| +75654| +75655| +75680| +75681| +75682| +75683| +75684| +75685| +75686| +75687| +75712| +75713| +75714| +75715| +75716| +75717| +75718| +75719| +75744| +75745| +75746| +75747| +75748| +75749| +75750| +75751| +75776| +75777| +75778| +75779| +75780| +75781| +75782| +75783| +75808| +75809| +75810| +75811| +75812| +75813| +75814| +75815| +75840| +75841| +75842| +75843| +75844| +75845| +75846| +75847| +75872| +75873| +75874| +75875| +75876| +75877| +75878| +75879| +75904| +75905| +75906| +75907| +75908| +75909| +75910| +75911| +75936| +75937| +75938| +75939| +75940| +75941| +75942| +75943| +75968| +75969| +75970| +75971| +75972| +75973| +75974| +75975| +76000| +76001| +76002| +76003| +76004| +76005| +76006| +76007| +76032| +76033| +76034| +76035| +76036| +76037| +76038| +76039| +76064| +76065| +76066| +76067| +76068| +76069| +76070| +76071| +76096| +76097| +76098| +76099| +76100| +76101| +76102| +76103| +76128| +76129| +76130| +76131| +76132| +76133| +76134| +76135| +76160| +76161| +76162| +76163| +76164| +76165| +76166| +76167| +76192| +76193| +76194| +76195| +76196| +76197| +76198| +76199| +76224| +76225| +76226| +76227| +76228| +76229| +76230| +76231| +76256| +76257| +76258| +76259| +76260| +76261| +76262| +76263| +76288| +76289| +76290| +76291| +76292| +76293| +76294| +76295| +76320| +76321| +76322| +76323| +76324| +76325| +76326| +76327| +76352| +76353| +76354| +76355| +76356| +76357| +76358| +76359| +76384| +76385| +76386| +76387| +76388| +76389| +76390| +76391| +76416| +76417| +76418| +76419| +76420| +76421| +76422| +76423| +76448| +76449| +76450| +76451| +76452| +76453| +76454| +76455| +76480| +76481| +76482| +76483| +76484| +76485| +76486| +76487| +76512| +76513| +76514| +76515| +76516| +76517| +76518| +76519| +76544| +76545| +76546| +76547| +76548| +76549| +76550| +76551| +76576| +76577| +76578| +76579| +76580| +76581| +76582| +76583| +76608| +76609| +76610| +76611| +76612| +76613| +76614| +76615| +76640| +76641| +76642| +76643| +76644| +76645| +76646| +76647| +76672| +76673| +76674| +76675| +76676| +76677| +76678| +76679| +76704| +76705| +76706| +76707| +76708| +76709| +76710| +76711| +76736| +76737| +76738| +76739| +76740| +76741| +76742| +76743| +76768| +76769| +76770| +76771| +76772| +76773| +76774| +76775| +76800| +76801| +76802| +76803| +76804| +76805| +76806| +76807| +76832| +76833| +76834| +76835| +76836| +76837| +76838| +76839| +76864| +76865| +76866| +76867| +76868| +76869| +76870| +76871| +76896| +76897| +76898| +76899| +76900| +76901| +76902| +76903| +76928| +76929| +76930| +76931| +76932| +76933| +76934| +76935| +76960| +76961| +76962| +76963| +76964| +76965| +76966| +76967| +76992| +76993| +76994| +76995| +76996| +76997| +76998| +76999| +77024| +77025| +77026| +77027| +77028| +77029| +77030| +77031| +77056| +77057| +77058| +77059| +77060| +77061| +77062| +77063| +77088| +77089| +77090| +77091| +77092| +77093| +77094| +77095| +77120| +77121| +77122| +77123| +77124| +77125| +77126| +77127| +77152| +77153| +77154| +77155| +77156| +77157| +77158| +77159| +77184| +77185| +77186| +77187| +77188| +77189| +77190| +77191| +77216| +77217| +77218| +77219| +77220| +77221| +77222| +77223| +77248| +77249| +77250| +77251| +77252| +77253| +77254| +77255| +77280| +77281| +77282| +77283| +77284| +77285| +77286| +77287| +77312| +77313| +77314| +77315| +77316| +77317| +77318| +77319| +77344| +77345| +77346| +77347| +77348| +77349| +77350| +77351| +77376| +77377| +77378| +77379| +77380| +77381| +77382| +77383| +77408| +77409| +77410| +77411| +77412| +77413| +77414| +77415| +77440| +77441| +77442| +77443| +77444| +77445| +77446| +77447| +77472| +77473| +77474| +77475| +77476| +77477| +77478| +77479| +77504| +77505| +77506| +77507| +77508| +77509| +77510| +77511| +77536| +77537| +77538| +77539| +77540| +77541| +77542| +77543| +77568| +77569| +77570| +77571| +77572| +77573| +77574| +77575| +77600| +77601| +77602| +77603| +77604| +77605| +77606| +77607| +77632| +77633| +77634| +77635| +77636| +77637| +77638| +77639| +77664| +77665| +77666| +77667| +77668| +77669| +77670| +77671| +77696| +77697| +77698| +77699| +77700| +77701| +77702| +77703| +77728| +77729| +77730| +77731| +77732| +77733| +77734| +77735| +77760| +77761| +77762| +77763| +77764| +77765| +77766| +77767| +77792| +77793| +77794| +77795| +77796| +77797| +77798| +77799| +77824| +77825| +77826| +77827| +77828| +77829| +77830| +77831| +77856| +77857| +77858| +77859| +77860| +77861| +77862| +77863| +77888| +77889| +77890| +77891| +77892| +77893| +77894| +77895| +77920| +77921| +77922| +77923| +77924| +77925| +77926| +77927| +77952| +77953| +77954| +77955| +77956| +77957| +77958| +77959| +77984| +77985| +77986| +77987| +77988| +77989| +77990| +77991| +78016| +78017| +78018| +78019| +78020| +78021| +78022| +78023| +78048| +78049| +78050| +78051| +78052| +78053| +78054| +78055| +78080| +78081| +78082| +78083| +78084| +78085| +78086| +78087| +78112| +78113| +78114| +78115| +78116| +78117| +78118| +78119| +78144| +78145| +78146| +78147| +78148| +78149| +78150| +78151| +78176| +78177| +78178| +78179| +78180| +78181| +78182| +78183| +78208| +78209| +78210| +78211| +78212| +78213| +78214| +78215| +78240| +78241| +78242| +78243| +78244| +78245| +78246| +78247| +78272| +78273| +78274| +78275| +78276| +78277| +78278| +78279| +78304| +78305| +78306| +78307| +78308| +78309| +78310| +78311| +78336| +78337| +78338| +78339| +78340| +78341| +78342| +78343| +78368| +78369| +78370| +78371| +78372| +78373| +78374| +78375| +78400| +78401| +78402| +78403| +78404| +78405| +78406| +78407| +78432| +78433| +78434| +78435| +78436| +78437| +78438| +78439| +78464| +78465| +78466| +78467| +78468| +78469| +78470| +78471| +78496| +78497| +78498| +78499| +78500| +78501| +78502| +78503| +78528| +78529| +78530| +78531| +78532| +78533| +78534| +78535| +78560| +78561| +78562| +78563| +78564| +78565| +78566| +78567| +78592| +78593| +78594| +78595| +78596| +78597| +78598| +78599| +78624| +78625| +78626| +78627| +78628| +78629| +78630| +78631| +78656| +78657| +78658| +78659| +78660| +78661| +78662| +78663| +78688| +78689| +78690| +78691| +78692| +78693| +78694| +78695| +78720| +78721| +78722| +78723| +78724| +78725| +78726| +78727| +78752| +78753| +78754| +78755| +78756| +78757| +78758| +78759| +78784| +78785| +78786| +78787| +78788| +78789| +78790| +78791| +78816| +78817| +78818| +78819| +78820| +78821| +78822| +78823| +78848| +78849| +78850| +78851| +78852| +78853| +78854| +78855| +78880| +78881| +78882| +78883| +78884| +78885| +78886| +78887| +78912| +78913| +78914| +78915| +78916| +78917| +78918| +78919| +78944| +78945| +78946| +78947| +78948| +78949| +78950| +78951| +78976| +78977| +78978| +78979| +78980| +78981| +78982| +78983| +79008| +79009| +79010| +79011| +79012| +79013| +79014| +79015| +79040| +79041| +79042| +79043| +79044| +79045| +79046| +79047| +79072| +79073| +79074| +79075| +79076| +79077| +79078| +79079| +79104| +79105| +79106| +79107| +79108| +79109| +79110| +79111| +79136| +79137| +79138| +79139| +79140| +79141| +79142| +79143| +79168| +79169| +79170| +79171| +79172| +79173| +79174| +79175| +79200| +79201| +79202| +79203| +79204| +79205| +79206| +79207| +79232| +79233| +79234| +79235| +79236| +79237| +79238| +79239| +79264| +79265| +79266| +79267| +79268| +79269| +79270| +79271| +79296| +79297| +79298| +79299| +79300| +79301| +79302| +79303| +79328| +79329| +79330| +79331| +79332| +79333| +79334| +79335| +79360| +79361| +79362| +79363| +79364| +79365| +79366| +79367| +79392| +79393| +79394| +79395| +79396| +79397| +79398| +79399| +79424| +79425| +79426| +79427| +79428| +79429| +79430| +79431| +79456| +79457| +79458| +79459| +79460| +79461| +79462| +79463| +79488| +79489| +79490| +79491| +79492| +79493| +79494| +79495| +79520| +79521| +79522| +79523| +79524| +79525| +79526| +79527| +79552| +79553| +79554| +79555| +79556| +79557| +79558| +79559| +79584| +79585| +79586| +79587| +79588| +79589| +79590| +79591| +79616| +79617| +79618| +79619| +79620| +79621| +79622| +79623| +79648| +79649| +79650| +79651| +79652| +79653| +79654| +79655| +79680| +79681| +79682| +79683| +79684| +79685| +79686| +79687| +79712| +79713| +79714| +79715| +79716| +79717| +79718| +79719| +79744| +79745| +79746| +79747| +79748| +79749| +79750| +79751| +79776| +79777| +79778| +79779| +79780| +79781| +79782| +79783| +79808| +79809| +79810| +79811| +79812| +79813| +79814| +79815| +79840| +79841| +79842| +79843| +79844| +79845| +79846| +79847| +79872| +79873| +79874| +79875| +79876| +79877| +79878| +79879| +79904| +79905| +79906| +79907| +79908| +79909| +79910| +79911| +79936| +79937| +79938| +79939| +79940| +79941| +79942| +79943| +79968| +79969| +79970| +79971| +79972| +79973| +79974| +79975| +80000| +80001| +80002| +80003| +80004| +80005| +80006| +80007| +80032| +80033| +80034| +80035| +80036| +80037| +80038| +80039| +80064| +80065| +80066| +80067| +80068| +80069| +80070| +80071| +80096| +80097| +80098| +80099| +80100| +80101| +80102| +80103| +80128| +80129| +80130| +80131| +80132| +80133| +80134| +80135| +80160| +80161| +80162| +80163| +80164| +80165| +80166| +80167| +80192| +80193| +80194| +80195| +80196| +80197| +80198| +80199| +80224| +80225| +80226| +80227| +80228| +80229| +80230| +80231| +80256| +80257| +80258| +80259| +80260| +80261| +80262| +80263| +80288| +80289| +80290| +80291| +80292| +80293| +80294| +80295| +80320| +80321| +80322| +80323| +80324| +80325| +80326| +80327| +80352| +80353| +80354| +80355| +80356| +80357| +80358| +80359| +80384| +80385| +80386| +80387| +80388| +80389| +80390| +80391| +80416| +80417| +80418| +80419| +80420| +80421| +80422| +80423| +80448| +80449| +80450| +80451| +80452| +80453| +80454| +80455| +80480| +80481| +80482| +80483| +80484| +80485| +80486| +80487| +80512| +80513| +80514| +80515| +80516| +80517| +80518| +80519| +80544| +80545| +80546| +80547| +80548| +80549| +80550| +80551| +80576| +80577| +80578| +80579| +80580| +80581| +80582| +80583| +80608| +80609| +80610| +80611| +80612| +80613| +80614| +80615| +80640| +80641| +80642| +80643| +80644| +80645| +80646| +80647| +80672| +80673| +80674| +80675| +80676| +80677| +80678| +80679| +80704| +80705| +80706| +80707| +80708| +80709| +80710| +80711| +80736| +80737| +80738| +80739| +80740| +80741| +80742| +80743| +80768| +80769| +80770| +80771| +80772| +80773| +80774| +80775| +80800| +80801| +80802| +80803| +80804| +80805| +80806| +80807| +80832| +80833| +80834| +80835| +80836| +80837| +80838| +80839| +80864| +80865| +80866| +80867| +80868| +80869| +80870| +80871| +80896| +80897| +80898| +80899| +80900| +80901| +80902| +80903| +80928| +80929| +80930| +80931| +80932| +80933| +80934| +80935| +80960| +80961| +80962| +80963| +80964| +80965| +80966| +80967| +80992| +80993| +80994| +80995| +80996| +80997| +80998| +80999| +81024| +81025| +81026| +81027| +81028| +81029| +81030| +81031| +81056| +81057| +81058| +81059| +81060| +81061| +81062| +81063| +81088| +81089| +81090| +81091| +81092| +81093| +81094| +81095| +81120| +81121| +81122| +81123| +81124| +81125| +81126| +81127| +81152| +81153| +81154| +81155| +81156| +81157| +81158| +81159| +81184| +81185| +81186| +81187| +81188| +81189| +81190| +81191| +81216| +81217| +81218| +81219| +81220| +81221| +81222| +81223| +81248| +81249| +81250| +81251| +81252| +81253| +81254| +81255| +81280| +81281| +81282| +81283| +81284| +81285| +81286| +81287| +81312| +81313| +81314| +81315| +81316| +81317| +81318| +81319| +81344| +81345| +81346| +81347| +81348| +81349| +81350| +81351| +81376| +81377| +81378| +81379| +81380| +81381| +81382| +81383| +81408| +81409| +81410| +81411| +81412| +81413| +81414| +81415| +81440| +81441| +81442| +81443| +81444| +81445| +81446| +81447| +81472| +81473| +81474| +81475| +81476| +81477| +81478| +81479| +81504| +81505| +81506| +81507| +81508| +81509| +81510| +81511| +81536| +81537| +81538| +81539| +81540| +81541| +81542| +81543| +81568| +81569| +81570| +81571| +81572| +81573| +81574| +81575| +81600| +81601| +81602| +81603| +81604| +81605| +81606| +81607| +81632| +81633| +81634| +81635| +81636| +81637| +81638| +81639| +81664| +81665| +81666| +81667| +81668| +81669| +81670| +81671| +81696| +81697| +81698| +81699| +81700| +81701| +81702| +81703| +81728| +81729| +81730| +81731| +81732| +81733| +81734| +81735| +81760| +81761| +81762| +81763| +81764| +81765| +81766| +81767| +81792| +81793| +81794| +81795| +81796| +81797| +81798| +81799| +81824| +81825| +81826| +81827| +81828| +81829| +81830| +81831| +81856| +81857| +81858| +81859| +81860| +81861| +81862| +81863| +81888| +81889| +81890| +81891| +81892| +81893| +81894| +81895| +81920| +81921| +81922| +81923| +81924| +81925| +81926| +81927| +81952| +81953| +81954| +81955| +81956| +81957| +81958| +81959| +81984| +81985| +81986| +81987| +81988| +81989| +81990| +81991| +82016| +82017| +82018| +82019| +82020| +82021| +82022| +82023| +82048| +82049| +82050| +82051| +82052| +82053| +82054| +82055| +82080| +82081| +82082| +82083| +82084| +82085| +82086| +82087| +82112| +82113| +82114| +82115| +82116| +82117| +82118| +82119| +82144| +82145| +82146| +82147| +82148| +82149| +82150| +82151| +82176| +82177| +82178| +82179| +82180| +82181| +82182| +82183| +82208| +82209| +82210| +82211| +82212| +82213| +82214| +82215| +82240| +82241| +82242| +82243| +82244| +82245| +82246| +82247| +82272| +82273| +82274| +82275| +82276| +82277| +82278| +82279| +82304| +82305| +82306| +82307| +82308| +82309| +82310| +82311| +82336| +82337| +82338| +82339| +82340| +82341| +82342| +82343| +82368| +82369| +82370| +82371| +82372| +82373| +82374| +82375| +82400| +82401| +82402| +82403| +82404| +82405| +82406| +82407| +82432| +82433| +82434| +82435| +82436| +82437| +82438| +82439| +82464| +82465| +82466| +82467| +82468| +82469| +82470| +82471| +82496| +82497| +82498| +82499| +82500| +82501| +82502| +82503| +82528| +82529| +82530| +82531| +82532| +82533| +82534| +82535| +82560| +82561| +82562| +82563| +82564| +82565| +82566| +82567| +82592| +82593| +82594| +82595| +82596| +82597| +82598| +82599| +82624| +82625| +82626| +82627| +82628| +82629| +82630| +82631| +82656| +82657| +82658| +82659| +82660| +82661| +82662| +82663| +82688| +82689| +82690| +82691| +82692| +82693| +82694| +82695| +82720| +82721| +82722| +82723| +82724| +82725| +82726| +82727| +82752| +82753| +82754| +82755| +82756| +82757| +82758| +82759| +82784| +82785| +82786| +82787| +82788| +82789| +82790| +82791| +82816| +82817| +82818| +82819| +82820| +82821| +82822| +82823| +82848| +82849| +82850| +82851| +82852| +82853| +82854| +82855| +82880| +82881| +82882| +82883| +82884| +82885| +82886| +82887| +82912| +82913| +82914| +82915| +82916| +82917| +82918| +82919| +82944| +82945| +82946| +82947| +82948| +82949| +82950| +82951| +82976| +82977| +82978| +82979| +82980| +82981| +82982| +82983| +83008| +83009| +83010| +83011| +83012| +83013| +83014| +83015| +83040| +83041| +83042| +83043| +83044| +83045| +83046| +83047| +83072| +83073| +83074| +83075| +83076| +83077| +83078| +83079| +83104| +83105| +83106| +83107| +83108| +83109| +83110| +83111| +83136| +83137| +83138| +83139| +83140| +83141| +83142| +83143| +83168| +83169| +83170| +83171| +83172| +83173| +83174| +83175| +83200| +83201| +83202| +83203| +83204| +83205| +83206| +83207| +83232| +83233| +83234| +83235| +83236| +83237| +83238| +83239| +83264| +83265| +83266| +83267| +83268| +83269| +83270| +83271| +83296| +83297| +83298| +83299| +83300| +83301| +83302| +83303| +83328| +83329| +83330| +83331| +83332| +83333| +83334| +83335| +83360| +83361| +83362| +83363| +83364| +83365| +83366| +83367| +83392| +83393| +83394| +83395| +83396| +83397| +83398| +83399| +83424| +83425| +83426| +83427| +83428| +83429| +83430| +83431| +83456| +83457| +83458| +83459| +83460| +83461| +83462| +83463| +83488| +83489| +83490| +83491| +83492| +83493| +83494| +83495| +83520| +83521| +83522| +83523| +83524| +83525| +83526| +83527| +83552| +83553| +83554| +83555| +83556| +83557| +83558| +83559| +83584| +83585| +83586| +83587| +83588| +83589| +83590| +83591| +83616| +83617| +83618| +83619| +83620| +83621| +83622| +83623| +83648| +83649| +83650| +83651| +83652| +83653| +83654| +83655| +83680| +83681| +83682| +83683| +83684| +83685| +83686| +83687| +83712| +83713| +83714| +83715| +83716| +83717| +83718| +83719| +83744| +83745| +83746| +83747| +83748| +83749| +83750| +83751| +83776| +83777| +83778| +83779| +83780| +83781| +83782| +83783| +83808| +83809| +83810| +83811| +83812| +83813| +83814| +83815| +83840| +83841| +83842| +83843| +83844| +83845| +83846| +83847| +83872| +83873| +83874| +83875| +83876| +83877| +83878| +83879| +83904| +83905| +83906| +83907| +83908| +83909| +83910| +83911| +83936| +83937| +83938| +83939| +83940| +83941| +83942| +83943| +83968| +83969| +83970| +83971| +83972| +83973| +83974| +83975| +84000| +84001| +84002| +84003| +84004| +84005| +84006| +84007| +84032| +84033| +84034| +84035| +84036| +84037| +84038| +84039| +84064| +84065| +84066| +84067| +84068| +84069| +84070| +84071| +84096| +84097| +84098| +84099| +84100| +84101| +84102| +84103| +84128| +84129| +84130| +84131| +84132| +84133| +84134| +84135| +84160| +84161| +84162| +84163| +84164| +84165| +84166| +84167| +84192| +84193| +84194| +84195| +84196| +84197| +84198| +84199| +84224| +84225| +84226| +84227| +84228| +84229| +84230| +84231| +84256| +84257| +84258| +84259| +84260| +84261| +84262| +84263| +84288| +84289| +84290| +84291| +84292| +84293| +84294| +84295| +84320| +84321| +84322| +84323| +84324| +84325| +84326| +84327| +84352| +84353| +84354| +84355| +84356| +84357| +84358| +84359| +84384| +84385| +84386| +84387| +84388| +84389| +84390| +84391| +84416| +84417| +84418| +84419| +84420| +84421| +84422| +84423| +84448| +84449| +84450| +84451| +84452| +84453| +84454| +84455| +84480| +84481| +84482| +84483| +84484| +84485| +84486| +84487| +84512| +84513| +84514| +84515| +84516| +84517| +84518| +84519| +84544| +84545| +84546| +84547| +84548| +84549| +84550| +84551| +84576| +84577| +84578| +84579| +84580| +84581| +84582| +84583| +84608| +84609| +84610| +84611| +84612| +84613| +84614| +84615| +84640| +84641| +84642| +84643| +84644| +84645| +84646| +84647| +84672| +84673| +84674| +84675| +84676| +84677| +84678| +84679| +84704| +84705| +84706| +84707| +84708| +84709| +84710| +84711| +84736| +84737| +84738| +84739| +84740| +84741| +84742| +84743| +84768| +84769| +84770| +84771| +84772| +84773| +84774| +84775| +84800| +84801| +84802| +84803| +84804| +84805| +84806| +84807| +84832| +84833| +84834| +84835| +84836| +84837| +84838| +84839| +84864| +84865| +84866| +84867| +84868| +84869| +84870| +84871| +84896| +84897| +84898| +84899| +84900| +84901| +84902| +84903| +84928| +84929| +84930| +84931| +84932| +84933| +84934| +84935| +84960| +84961| +84962| +84963| +84964| +84965| +84966| +84967| +84992| +84993| +84994| +84995| +84996| +84997| +84998| +84999| +85024| +85025| +85026| +85027| +85028| +85029| +85030| +85031| +85056| +85057| +85058| +85059| +85060| +85061| +85062| +85063| +85088| +85089| +85090| +85091| +85092| +85093| +85094| +85095| +85120| +85121| +85122| +85123| +85124| +85125| +85126| +85127| +85152| +85153| +85154| +85155| +85156| +85157| +85158| +85159| +85184| +85185| +85186| +85187| +85188| +85189| +85190| +85191| +85216| +85217| +85218| +85219| +85220| +85221| +85222| +85223| +85248| +85249| +85250| +85251| +85252| +85253| +85254| +85255| +85280| +85281| +85282| +85283| +85284| +85285| +85286| +85287| +85312| +85313| +85314| +85315| +85316| +85317| +85318| +85319| +85344| +85345| +85346| +85347| +85348| +85349| +85350| +85351| +85376| +85377| +85378| +85379| +85380| +85381| +85382| +85383| +85408| +85409| +85410| +85411| +85412| +85413| +85414| +85415| +85440| +85441| +85442| +85443| +85444| +85445| +85446| +85447| +85472| +85473| +85474| +85475| +85476| +85477| +85478| +85479| +85504| +85505| +85506| +85507| +85508| +85509| +85510| +85511| +85536| +85537| +85538| +85539| +85540| +85541| +85542| +85543| +85568| +85569| +85570| +85571| +85572| +85573| +85574| +85575| +85600| +85601| +85602| +85603| +85604| +85605| +85606| +85607| +85632| +85633| +85634| +85635| +85636| +85637| +85638| +85639| +85664| +85665| +85666| +85667| +85668| +85669| +85670| +85671| +85696| +85697| +85698| +85699| +85700| +85701| +85702| +85703| +85728| +85729| +85730| +85731| +85732| +85733| +85734| +85735| +85760| +85761| +85762| +85763| +85764| +85765| +85766| +85767| +85792| +85793| +85794| +85795| +85796| +85797| +85798| +85799| +85824| +85825| +85826| +85827| +85828| +85829| +85830| +85831| +85856| +85857| +85858| +85859| +85860| +85861| +85862| +85863| +85888| +85889| +85890| +85891| +85892| +85893| +85894| +85895| +85920| +85921| +85922| +85923| +85924| +85925| +85926| +85927| +85952| +85953| +85954| +85955| +85956| +85957| +85958| +85959| +85984| +85985| +85986| +85987| +85988| +85989| +85990| +85991| +86016| +86017| +86018| +86019| +86020| +86021| +86022| +86023| +86048| +86049| +86050| +86051| +86052| +86053| +86054| +86055| +86080| +86081| +86082| +86083| +86084| +86085| +86086| +86087| +86112| +86113| +86114| +86115| +86116| +86117| +86118| +86119| +86144| +86145| +86146| +86147| +86148| +86149| +86150| +86151| +86176| +86177| +86178| +86179| +86180| +86181| +86182| +86183| +86208| +86209| +86210| +86211| +86212| +86213| +86214| +86215| +86240| +86241| +86242| +86243| +86244| +86245| +86246| +86247| +86272| +86273| +86274| +86275| +86276| +86277| +86278| +86279| +86304| +86305| +86306| +86307| +86308| +86309| +86310| +86311| +86336| +86337| +86338| +86339| +86340| +86341| +86342| +86343| +86368| +86369| +86370| +86371| +86372| +86373| +86374| +86375| +86400| +86401| +86402| +86403| +86404| +86405| +86406| +86407| +86432| +86433| +86434| +86435| +86436| +86437| +86438| +86439| +86464| +86465| +86466| +86467| +86468| +86469| +86470| +86471| +86496| +86497| +86498| +86499| +86500| +86501| +86502| +86503| +86528| +86529| +86530| +86531| +86532| +86533| +86534| +86535| +86560| +86561| +86562| +86563| +86564| +86565| +86566| +86567| +86592| +86593| +86594| +86595| +86596| +86597| +86598| +86599| +86624| +86625| +86626| +86627| +86628| +86629| +86630| +86631| +86656| +86657| +86658| +86659| +86660| +86661| +86662| +86663| +86688| +86689| +86690| +86691| +86692| +86693| +86694| +86695| +86720| +86721| +86722| +86723| +86724| +86725| +86726| +86727| +86752| +86753| +86754| +86755| +86756| +86757| +86758| +86759| +86784| +86785| +86786| +86787| +86788| +86789| +86790| +86791| +86816| +86817| +86818| +86819| +86820| +86821| +86822| +86823| +86848| +86849| +86850| +86851| +86852| +86853| +86854| +86855| +86880| +86881| +86882| +86883| +86884| +86885| +86886| +86887| +86912| +86913| +86914| +86915| +86916| +86917| +86918| +86919| +86944| +86945| +86946| +86947| +86948| +86949| +86950| +86951| +86976| +86977| +86978| +86979| +86980| +86981| +86982| +86983| +87008| +87009| +87010| +87011| +87012| +87013| +87014| +87015| +87040| +87041| +87042| +87043| +87044| +87045| +87046| +87047| +87072| +87073| +87074| +87075| +87076| +87077| +87078| +87079| +87104| +87105| +87106| +87107| +87108| +87109| +87110| +87111| +87136| +87137| +87138| +87139| +87140| +87141| +87142| +87143| +87168| +87169| +87170| +87171| +87172| +87173| +87174| +87175| +87200| +87201| +87202| +87203| +87204| +87205| +87206| +87207| +87232| +87233| +87234| +87235| +87236| +87237| +87238| +87239| +87264| +87265| +87266| +87267| +87268| +87269| +87270| +87271| +87296| +87297| +87298| +87299| +87300| +87301| +87302| +87303| +87328| +87329| +87330| +87331| +87332| +87333| +87334| +87335| +87360| +87361| +87362| +87363| +87364| +87365| +87366| +87367| +87392| +87393| +87394| +87395| +87396| +87397| +87398| +87399| +87424| +87425| +87426| +87427| +87428| +87429| +87430| +87431| +87456| +87457| +87458| +87459| +87460| +87461| +87462| +87463| +87488| +87489| +87490| +87491| +87492| +87493| +87494| +87495| +87520| +87521| +87522| +87523| +87524| +87525| +87526| +87527| +87552| +87553| +87554| +87555| +87556| +87557| +87558| +87559| +87584| +87585| +87586| +87587| +87588| +87589| +87590| +87591| +87616| +87617| +87618| +87619| +87620| +87621| +87622| +87623| +87648| +87649| +87650| +87651| +87652| +87653| +87654| +87655| +87680| +87681| +87682| +87683| +87684| +87685| +87686| +87687| +87712| +87713| +87714| +87715| +87716| +87717| +87718| +87719| +87744| +87745| +87746| +87747| +87748| +87749| +87750| +87751| +87776| +87777| +87778| +87779| +87780| +87781| +87782| +87783| +87808| +87809| +87810| +87811| +87812| +87813| +87814| +87815| +87840| +87841| +87842| +87843| +87844| +87845| +87846| +87847| +87872| +87873| +87874| +87875| +87876| +87877| +87878| +87879| +87904| +87905| +87906| +87907| +87908| +87909| +87910| +87911| +87936| +87937| +87938| +87939| +87940| +87941| +87942| +87943| +87968| +87969| +87970| +87971| +87972| +87973| +87974| +87975| +88000| +88001| +88002| +88003| +88004| +88005| +88006| +88007| +88032| +88033| +88034| +88035| +88036| +88037| +88038| +88039| +88064| +88065| +88066| +88067| +88068| +88069| +88070| +88071| +88096| +88097| +88098| +88099| +88100| +88101| +88102| +88103| +88128| +88129| +88130| +88131| +88132| +88133| +88134| +88135| +88160| +88161| +88162| +88163| +88164| +88165| +88166| +88167| +88192| +88193| +88194| +88195| +88196| +88197| +88198| +88199| +88224| +88225| +88226| +88227| +88228| +88229| +88230| +88231| +88256| +88257| +88258| +88259| +88260| +88261| +88262| +88263| +88288| +88289| +88290| +88291| +88292| +88293| +88294| +88295| +88320| +88321| +88322| +88323| +88324| +88325| +88326| +88327| +88352| +88353| +88354| +88355| +88356| +88357| +88358| +88359| +88384| +88385| +88386| +88387| +88388| +88389| +88390| +88391| +88416| +88417| +88418| +88419| +88420| +88421| +88422| +88423| +88448| +88449| +88450| +88451| +88452| +88453| +88454| +88455| +88480| +88481| +88482| +88483| +88484| +88485| +88486| +88487| +88512| +88513| +88514| +88515| +88516| +88517| +88518| +88519| +88544| +88545| +88546| +88547| +88548| +88549| +88550| +88551| +88576| +88577| +88578| +88579| +88580| +88581| +88582| +88583| +88608| +88609| +88610| +88611| +88612| +88613| +88614| +88615| +88640| +88641| +88642| +88643| +88644| +88645| +88646| +88647| +88672| +88673| +88674| +88675| +88676| +88677| +88678| +88679| +88704| +88705| +88706| +88707| +88708| +88709| +88710| +88711| +88736| +88737| +88738| +88739| +88740| +88741| +88742| +88743| +88768| +88769| +88770| +88771| +88772| +88773| +88774| +88775| +88800| +88801| +88802| +88803| +88804| +88805| +88806| +88807| +88832| +88833| +88834| +88835| +88836| +88837| +88838| +88839| +88864| +88865| +88866| +88867| +88868| +88869| +88870| +88871| +88896| +88897| +88898| +88899| +88900| +88901| +88902| +88903| +88928| +88929| +88930| +88931| +88932| +88933| +88934| +88935| +88960| +88961| +88962| +88963| +88964| +88965| +88966| +88967| +88992| +88993| +88994| +88995| +88996| +88997| +88998| +88999| +89024| +89025| +89026| +89027| +89028| +89029| +89030| +89031| +89056| +89057| +89058| +89059| +89060| +89061| +89062| +89063| +89088| +89089| +89090| +89091| +89092| +89093| +89094| +89095| +89120| +89121| +89122| +89123| +89124| +89125| +89126| +89127| +89152| +89153| +89154| +89155| +89156| +89157| +89158| +89159| +89184| +89185| +89186| +89187| +89188| +89189| +89190| +89191| +89216| +89217| +89218| +89219| +89220| +89221| +89222| +89223| +89248| +89249| +89250| +89251| +89252| +89253| +89254| +89255| +89280| +89281| +89282| +89283| +89284| +89285| +89286| +89287| +89312| +89313| +89314| +89315| +89316| +89317| +89318| +89319| +89344| +89345| +89346| +89347| +89348| +89349| +89350| +89351| +89376| +89377| +89378| +89379| +89380| +89381| +89382| +89383| +89408| +89409| +89410| +89411| +89412| +89413| +89414| +89415| +89440| +89441| +89442| +89443| +89444| +89445| +89446| +89447| +89472| +89473| +89474| +89475| +89476| +89477| +89478| +89479| +89504| +89505| +89506| +89507| +89508| +89509| +89510| +89511| +89536| +89537| +89538| +89539| +89540| +89541| +89542| +89543| +89568| +89569| +89570| +89571| +89572| +89573| +89574| +89575| +89600| +89601| +89602| +89603| +89604| +89605| +89606| +89607| +89632| +89633| +89634| +89635| +89636| +89637| +89638| +89639| +89664| +89665| +89666| +89667| +89668| +89669| +89670| +89671| +89696| +89697| +89698| +89699| +89700| +89701| +89702| +89703| +89728| +89729| +89730| +89731| +89732| +89733| +89734| +89735| +89760| +89761| +89762| +89763| +89764| +89765| +89766| +89767| +89792| +89793| +89794| +89795| +89796| +89797| +89798| +89799| +89824| +89825| +89826| +89827| +89828| +89829| +89830| +89831| +89856| +89857| +89858| +89859| +89860| +89861| +89862| +89863| +89888| +89889| +89890| +89891| +89892| +89893| +89894| +89895| +89920| +89921| +89922| +89923| +89924| +89925| +89926| +89927| +89952| +89953| +89954| +89955| +89956| +89957| +89958| +89959| +89984| +89985| +89986| +89987| +89988| +89989| +89990| +89991| +90016| +90017| +90018| +90019| +90020| +90021| +90022| +90023| +90048| +90049| +90050| +90051| +90052| +90053| +90054| +90055| +90080| +90081| +90082| +90083| +90084| +90085| +90086| +90087| +90112| +90113| +90114| +90115| +90116| +90117| +90118| +90119| +90144| +90145| +90146| +90147| +90148| +90149| +90150| +90151| +90176| +90177| +90178| +90179| +90180| +90181| +90182| +90183| +90208| +90209| +90210| +90211| +90212| +90213| +90214| +90215| +90240| +90241| +90242| +90243| +90244| +90245| +90246| +90247| +90272| +90273| +90274| +90275| +90276| +90277| +90278| +90279| +90304| +90305| +90306| +90307| +90308| +90309| +90310| +90311| +90336| +90337| +90338| +90339| +90340| +90341| +90342| +90343| +90368| +90369| +90370| +90371| +90372| +90373| +90374| +90375| +90400| +90401| +90402| +90403| +90404| +90405| +90406| +90407| +90432| +90433| +90434| +90435| +90436| +90437| +90438| +90439| +90464| +90465| +90466| +90467| +90468| +90469| +90470| +90471| +90496| +90497| +90498| +90499| +90500| +90501| +90502| +90503| +90528| +90529| +90530| +90531| +90532| +90533| +90534| +90535| +90560| +90561| +90562| +90563| +90564| +90565| +90566| +90567| +90592| +90593| +90594| +90595| +90596| +90597| +90598| +90599| +90624| +90625| +90626| +90627| +90628| +90629| +90630| +90631| +90656| +90657| +90658| +90659| +90660| +90661| +90662| +90663| +90688| +90689| +90690| +90691| +90692| +90693| +90694| +90695| +90720| +90721| +90722| +90723| +90724| +90725| +90726| +90727| +90752| +90753| +90754| +90755| +90756| +90757| +90758| +90759| +90784| +90785| +90786| +90787| +90788| +90789| +90790| +90791| +90816| +90817| +90818| +90819| +90820| +90821| +90822| +90823| +90848| +90849| +90850| +90851| +90852| +90853| +90854| +90855| +90880| +90881| +90882| +90883| +90884| +90885| +90886| +90887| +90912| +90913| +90914| +90915| +90916| +90917| +90918| +90919| +90944| +90945| +90946| +90947| +90948| +90949| +90950| +90951| +90976| +90977| +90978| +90979| +90980| +90981| +90982| +90983| +91008| +91009| +91010| +91011| +91012| +91013| +91014| +91015| +91040| +91041| +91042| +91043| +91044| +91045| +91046| +91047| +91072| +91073| +91074| +91075| +91076| +91077| +91078| +91079| +91104| +91105| +91106| +91107| +91108| +91109| +91110| +91111| +91136| +91137| +91138| +91139| +91140| +91141| +91142| +91143| +91168| +91169| +91170| +91171| +91172| +91173| +91174| +91175| +91200| +91201| +91202| +91203| +91204| +91205| +91206| +91207| +91232| +91233| +91234| +91235| +91236| +91237| +91238| +91239| +91264| +91265| +91266| +91267| +91268| +91269| +91270| +91271| +91296| +91297| +91298| +91299| +91300| +91301| +91302| +91303| +91328| +91329| +91330| +91331| +91332| +91333| +91334| +91335| +91360| +91361| +91362| +91363| +91364| +91365| +91366| +91367| +91392| +91393| +91394| +91395| +91396| +91397| +91398| +91399| +91424| +91425| +91426| +91427| +91428| +91429| +91430| +91431| +91456| +91457| +91458| +91459| +91460| +91461| +91462| +91463| +91488| +91489| +91490| +91491| +91492| +91493| +91494| +91495| +91520| +91521| +91522| +91523| +91524| +91525| +91526| +91527| +91552| +91553| +91554| +91555| +91556| +91557| +91558| +91559| +91584| +91585| +91586| +91587| +91588| +91589| +91590| +91591| +91616| +91617| +91618| +91619| +91620| +91621| +91622| +91623| +91648| +91649| +91650| +91651| +91652| +91653| +91654| +91655| +91680| +91681| +91682| +91683| +91684| +91685| +91686| +91687| +91712| +91713| +91714| +91715| +91716| +91717| +91718| +91719| +91744| +91745| +91746| +91747| +91748| +91749| +91750| +91751| +91776| +91777| +91778| +91779| +91780| +91781| +91782| +91783| +91808| +91809| +91810| +91811| +91812| +91813| +91814| +91815| +91840| +91841| +91842| +91843| +91844| +91845| +91846| +91847| +91872| +91873| +91874| +91875| +91876| +91877| +91878| +91879| +91904| +91905| +91906| +91907| +91908| +91909| +91910| +91911| +91936| +91937| +91938| +91939| +91940| +91941| +91942| +91943| +91968| +91969| +91970| +91971| +91972| +91973| +91974| +91975| +92000| +92001| +92002| +92003| +92004| +92005| +92006| +92007| +92032| +92033| +92034| +92035| +92036| +92037| +92038| +92039| +92064| +92065| +92066| +92067| +92068| +92069| +92070| +92071| +92096| +92097| +92098| +92099| +92100| +92101| +92102| +92103| +92128| +92129| +92130| +92131| +92132| +92133| +92134| +92135| +92160| +92161| +92162| +92163| +92164| +92165| +92166| +92167| +92192| +92193| +92194| +92195| +92196| +92197| +92198| +92199| +92224| +92225| +92226| +92227| +92228| +92229| +92230| +92231| +92256| +92257| +92258| +92259| +92260| +92261| +92262| +92263| +92288| +92289| +92290| +92291| +92292| +92293| +92294| +92295| +92320| +92321| +92322| +92323| +92324| +92325| +92326| +92327| +92352| +92353| +92354| +92355| +92356| +92357| +92358| +92359| +92384| +92385| +92386| +92387| +92388| +92389| +92390| +92391| +92416| +92417| +92418| +92419| +92420| +92421| +92422| +92423| +92448| +92449| +92450| +92451| +92452| +92453| +92454| +92455| +92480| +92481| +92482| +92483| +92484| +92485| +92486| +92487| +92512| +92513| +92514| +92515| +92516| +92517| +92518| +92519| +92544| +92545| +92546| +92547| +92548| +92549| +92550| +92551| +92576| +92577| +92578| +92579| +92580| +92581| +92582| +92583| +92608| +92609| +92610| +92611| +92612| +92613| +92614| +92615| +92640| +92641| +92642| +92643| +92644| +92645| +92646| +92647| +92672| +92673| +92674| +92675| +92676| +92677| +92678| +92679| +92704| +92705| +92706| +92707| +92708| +92709| +92710| +92711| +92736| +92737| +92738| +92739| +92740| +92741| +92742| +92743| +92768| +92769| +92770| +92771| +92772| +92773| +92774| +92775| +92800| +92801| +92802| +92803| +92804| +92805| +92806| +92807| +92832| +92833| +92834| +92835| +92836| +92837| +92838| +92839| +92864| +92865| +92866| +92867| +92868| +92869| +92870| +92871| +92896| +92897| +92898| +92899| +92900| +92901| +92902| +92903| +92928| +92929| +92930| +92931| +92932| +92933| +92934| +92935| +92960| +92961| +92962| +92963| +92964| +92965| +92966| +92967| +92992| +92993| +92994| +92995| +92996| +92997| +92998| +92999| +93024| +93025| +93026| +93027| +93028| +93029| +93030| +93031| +93056| +93057| +93058| +93059| +93060| +93061| +93062| +93063| +93088| +93089| +93090| +93091| +93092| +93093| +93094| +93095| +93120| +93121| +93122| +93123| +93124| +93125| +93126| +93127| +93152| +93153| +93154| +93155| +93156| +93157| +93158| +93159| +93184| +93185| +93186| +93187| +93188| +93189| +93190| +93191| +93216| +93217| +93218| +93219| +93220| +93221| +93222| +93223| +93248| +93249| +93250| +93251| +93252| +93253| +93254| +93255| +93280| +93281| +93282| +93283| +93284| +93285| +93286| +93287| +93312| +93313| +93314| +93315| +93316| +93317| +93318| +93319| +93344| +93345| +93346| +93347| +93348| +93349| +93350| +93351| +93376| +93377| +93378| +93379| +93380| +93381| +93382| +93383| +93408| +93409| +93410| +93411| +93412| +93413| +93414| +93415| +93440| +93441| +93442| +93443| +93444| +93445| +93446| +93447| +93472| +93473| +93474| +93475| +93476| +93477| +93478| +93479| +93504| +93505| +93506| +93507| +93508| +93509| +93510| +93511| +93536| +93537| +93538| +93539| +93540| +93541| +93542| +93543| +93568| +93569| +93570| +93571| +93572| +93573| +93574| +93575| +93600| +93601| +93602| +93603| +93604| +93605| +93606| +93607| +93632| +93633| +93634| +93635| +93636| +93637| +93638| +93639| +93664| +93665| +93666| +93667| +93668| +93669| +93670| +93671| +93696| +93697| +93698| +93699| +93700| +93701| +93702| +93703| +93728| +93729| +93730| +93731| +93732| +93733| +93734| +93735| +93760| +93761| +93762| +93763| +93764| +93765| +93766| +93767| +93792| +93793| +93794| +93795| +93796| +93797| +93798| +93799| +93824| +93825| +93826| +93827| +93828| +93829| +93830| +93831| +93856| +93857| +93858| +93859| +93860| +93861| +93862| +93863| +93888| +93889| +93890| +93891| +93892| +93893| +93894| +93895| +93920| +93921| +93922| +93923| +93924| +93925| +93926| +93927| +93952| +93953| +93954| +93955| +93956| +93957| +93958| +93959| +93984| +93985| +93986| +93987| +93988| +93989| +93990| +93991| +94016| +94017| +94018| +94019| +94020| +94021| +94022| +94023| +94048| +94049| +94050| +94051| +94052| +94053| +94054| +94055| +94080| +94081| +94082| +94083| +94084| +94085| +94086| +94087| +94112| +94113| +94114| +94115| +94116| +94117| +94118| +94119| +94144| +94145| +94146| +94147| +94148| +94149| +94150| +94151| +94176| +94177| +94178| +94179| +94180| +94181| +94182| +94183| +94208| +94209| +94210| +94211| +94212| +94213| +94214| +94215| +94240| +94241| +94242| +94243| +94244| +94245| +94246| +94247| +94272| +94273| +94274| +94275| +94276| +94277| +94278| +94279| +94304| +94305| +94306| +94307| +94308| +94309| +94310| +94311| +94336| +94337| +94338| +94339| +94340| +94341| +94342| +94343| +94368| +94369| +94370| +94371| +94372| +94373| +94374| +94375| +94400| +94401| +94402| +94403| +94404| +94405| +94406| +94407| +94432| +94433| +94434| +94435| +94436| +94437| +94438| +94439| +94464| +94465| +94466| +94467| +94468| +94469| +94470| +94471| +94496| +94497| +94498| +94499| +94500| +94501| +94502| +94503| +94528| +94529| +94530| +94531| +94532| +94533| +94534| +94535| +94560| +94561| +94562| +94563| +94564| +94565| +94566| +94567| +94592| +94593| +94594| +94595| +94596| +94597| +94598| +94599| +94624| +94625| +94626| +94627| +94628| +94629| +94630| +94631| +94656| +94657| +94658| +94659| +94660| +94661| +94662| +94663| +94688| +94689| +94690| +94691| +94692| +94693| +94694| +94695| +94720| +94721| +94722| +94723| +94724| +94725| +94726| +94727| +94752| +94753| +94754| +94755| +94756| +94757| +94758| +94759| +94784| +94785| +94786| +94787| +94788| +94789| +94790| +94791| +94816| +94817| +94818| +94819| +94820| +94821| +94822| +94823| +94848| +94849| +94850| +94851| +94852| +94853| +94854| +94855| +94880| +94881| +94882| +94883| +94884| +94885| +94886| +94887| +94912| +94913| +94914| +94915| +94916| +94917| +94918| +94919| +94944| +94945| +94946| +94947| +94948| +94949| +94950| +94951| +94976| +94977| +94978| +94979| +94980| +94981| +94982| +94983| +95008| +95009| +95010| +95011| +95012| +95013| +95014| +95015| +95040| +95041| +95042| +95043| +95044| +95045| +95046| +95047| +95072| +95073| +95074| +95075| +95076| +95077| +95078| +95079| +95104| +95105| +95106| +95107| +95108| +95109| +95110| +95111| +95136| +95137| +95138| +95139| +95140| +95141| +95142| +95143| +95168| +95169| +95170| +95171| +95172| +95173| +95174| +95175| +95200| +95201| +95202| +95203| +95204| +95205| +95206| +95207| +95232| +95233| +95234| +95235| +95236| +95237| +95238| +95239| +95264| +95265| +95266| +95267| +95268| +95269| +95270| +95271| +95296| +95297| +95298| +95299| +95300| +95301| +95302| +95303| +95328| +95329| +95330| +95331| +95332| +95333| +95334| +95335| +95360| +95361| +95362| +95363| +95364| +95365| +95366| +95367| +95392| +95393| +95394| +95395| +95396| +95397| +95398| +95399| +95424| +95425| +95426| +95427| +95428| +95429| +95430| +95431| +95456| +95457| +95458| +95459| +95460| +95461| +95462| +95463| +95488| +95489| +95490| +95491| +95492| +95493| +95494| +95495| +95520| +95521| +95522| +95523| +95524| +95525| +95526| +95527| +95552| +95553| +95554| +95555| +95556| +95557| +95558| +95559| +95584| +95585| +95586| +95587| +95588| +95589| +95590| +95591| +95616| +95617| +95618| +95619| +95620| +95621| +95622| +95623| +95648| +95649| +95650| +95651| +95652| +95653| +95654| +95655| +95680| +95681| +95682| +95683| +95684| +95685| +95686| +95687| +95712| +95713| +95714| +95715| +95716| +95717| +95718| +95719| +95744| +95745| +95746| +95747| +95748| +95749| +95750| +95751| +95776| +95777| +95778| +95779| +95780| +95781| +95782| +95783| +95808| +95809| +95810| +95811| +95812| +95813| +95814| +95815| +95840| +95841| +95842| +95843| +95844| +95845| +95846| +95847| +95872| +95873| +95874| +95875| +95876| +95877| +95878| +95879| +95904| +95905| +95906| +95907| +95908| +95909| +95910| +95911| +95936| +95937| +95938| +95939| +95940| +95941| +95942| +95943| +95968| +95969| +95970| +95971| +95972| +95973| +95974| +95975| +96000| +96001| +96002| +96003| +96004| +96005| +96006| +96007| +96032| +96033| +96034| +96035| +96036| +96037| +96038| +96039| +96064| +96065| +96066| +96067| +96068| +96069| +96070| +96071| +96096| +96097| +96098| +96099| +96100| +96101| +96102| +96103| +96128| +96129| +96130| +96131| +96132| +96133| +96134| +96135| +96160| +96161| +96162| +96163| +96164| +96165| +96166| +96167| +96192| +96193| +96194| +96195| +96196| +96197| +96198| +96199| +96224| +96225| +96226| +96227| +96228| +96229| +96230| +96231| +96256| +96257| +96258| +96259| +96260| +96261| +96262| +96263| +96288| +96289| +96290| +96291| +96292| +96293| +96294| +96295| +96320| +96321| +96322| +96323| +96324| +96325| +96326| +96327| +96352| +96353| +96354| +96355| +96356| +96357| +96358| +96359| +96384| +96385| +96386| +96387| +96388| +96389| +96390| +96391| +96416| +96417| +96418| +96419| +96420| +96421| +96422| +96423| +96448| +96449| +96450| +96451| +96452| +96453| +96454| +96455| +96480| +96481| +96482| +96483| +96484| +96485| +96486| +96487| +96512| +96513| +96514| +96515| +96516| +96517| +96518| +96519| +96544| +96545| +96546| +96547| +96548| +96549| +96550| +96551| +96576| +96577| +96578| +96579| +96580| +96581| +96582| +96583| +96608| +96609| +96610| +96611| +96612| +96613| +96614| +96615| +96640| +96641| +96642| +96643| +96644| +96645| +96646| +96647| +96672| +96673| +96674| +96675| +96676| +96677| +96678| +96679| +96704| +96705| +96706| +96707| +96708| +96709| +96710| +96711| +96736| +96737| +96738| +96739| +96740| +96741| +96742| +96743| +96768| +96769| +96770| +96771| +96772| +96773| +96774| +96775| +96800| +96801| +96802| +96803| +96804| +96805| +96806| +96807| +96832| +96833| +96834| +96835| +96836| +96837| +96838| +96839| +96864| +96865| +96866| +96867| +96868| +96869| +96870| +96871| +96896| +96897| +96898| +96899| +96900| +96901| +96902| +96903| +96928| +96929| +96930| +96931| +96932| +96933| +96934| +96935| +96960| +96961| +96962| +96963| +96964| +96965| +96966| +96967| +96992| +96993| +96994| +96995| +96996| +96997| +96998| +96999| +97024| +97025| +97026| +97027| +97028| +97029| +97030| +97031| +97056| +97057| +97058| +97059| +97060| +97061| +97062| +97063| +97088| +97089| +97090| +97091| +97092| +97093| +97094| +97095| +97120| +97121| +97122| +97123| +97124| +97125| +97126| +97127| +97152| +97153| +97154| +97155| +97156| +97157| +97158| +97159| +97184| +97185| +97186| +97187| +97188| +97189| +97190| +97191| +97216| +97217| +97218| +97219| +97220| +97221| +97222| +97223| +97248| +97249| +97250| +97251| +97252| +97253| +97254| +97255| +97280| +97281| +97282| +97283| +97284| +97285| +97286| +97287| +97312| +97313| +97314| +97315| +97316| +97317| +97318| +97319| +97344| +97345| +97346| +97347| +97348| +97349| +97350| +97351| +97376| +97377| +97378| +97379| +97380| +97381| +97382| +97383| +97408| +97409| +97410| +97411| +97412| +97413| +97414| +97415| +97440| +97441| +97442| +97443| +97444| +97445| +97446| +97447| +97472| +97473| +97474| +97475| +97476| +97477| +97478| +97479| +97504| +97505| +97506| +97507| +97508| +97509| +97510| +97511| +97536| +97537| +97538| +97539| +97540| +97541| +97542| +97543| +97568| +97569| +97570| +97571| +97572| +97573| +97574| +97575| +97600| +97601| +97602| +97603| +97604| +97605| +97606| +97607| +97632| +97633| +97634| +97635| +97636| +97637| +97638| +97639| +97664| +97665| +97666| +97667| +97668| +97669| +97670| +97671| +97696| +97697| +97698| +97699| +97700| +97701| +97702| +97703| +97728| +97729| +97730| +97731| +97732| +97733| +97734| +97735| +97760| +97761| +97762| +97763| +97764| +97765| +97766| +97767| +97792| +97793| +97794| +97795| +97796| +97797| +97798| +97799| +97824| +97825| +97826| +97827| +97828| +97829| +97830| +97831| +97856| +97857| +97858| +97859| +97860| +97861| +97862| +97863| +97888| +97889| +97890| +97891| +97892| +97893| +97894| +97895| +97920| +97921| +97922| +97923| +97924| +97925| +97926| +97927| +97952| +97953| +97954| +97955| +97956| +97957| +97958| +97959| +97984| +97985| +97986| +97987| +97988| +97989| +97990| +97991| +98016| +98017| +98018| +98019| +98020| +98021| +98022| +98023| +98048| +98049| +98050| +98051| +98052| +98053| +98054| +98055| +98080| +98081| +98082| +98083| +98084| +98085| +98086| +98087| +98112| +98113| +98114| +98115| +98116| +98117| +98118| +98119| +98144| +98145| +98146| +98147| +98148| +98149| +98150| +98151| +98176| +98177| +98178| +98179| +98180| +98181| +98182| +98183| +98208| +98209| +98210| +98211| +98212| +98213| +98214| +98215| +98240| +98241| +98242| +98243| +98244| +98245| +98246| +98247| +98272| +98273| +98274| +98275| +98276| +98277| +98278| +98279| +98304| +98305| +98306| +98307| +98308| +98309| +98310| +98311| +98336| +98337| +98338| +98339| +98340| +98341| +98342| +98343| +98368| +98369| +98370| +98371| +98372| +98373| +98374| +98375| +98400| +98401| +98402| +98403| +98404| +98405| +98406| +98407| +98432| +98433| +98434| +98435| +98436| +98437| +98438| +98439| +98464| +98465| +98466| +98467| +98468| +98469| +98470| +98471| +98496| +98497| +98498| +98499| +98500| +98501| +98502| +98503| +98528| +98529| +98530| +98531| +98532| +98533| +98534| +98535| +98560| +98561| +98562| +98563| +98564| +98565| +98566| +98567| +98592| +98593| +98594| +98595| +98596| +98597| +98598| +98599| +98624| +98625| +98626| +98627| +98628| +98629| +98630| +98631| +98656| +98657| +98658| +98659| +98660| +98661| +98662| +98663| +98688| +98689| +98690| +98691| +98692| +98693| +98694| +98695| +98720| +98721| +98722| +98723| +98724| +98725| +98726| +98727| +98752| +98753| +98754| +98755| +98756| +98757| +98758| +98759| +98784| +98785| +98786| +98787| +98788| +98789| +98790| +98791| +98816| +98817| +98818| +98819| +98820| +98821| +98822| +98823| +98848| +98849| +98850| +98851| +98852| +98853| +98854| +98855| +98880| +98881| +98882| +98883| +98884| +98885| +98886| +98887| +98912| +98913| +98914| +98915| +98916| +98917| +98918| +98919| +98944| +98945| +98946| +98947| +98948| +98949| +98950| +98951| +98976| +98977| +98978| +98979| +98980| +98981| +98982| +98983| +99008| +99009| +99010| +99011| +99012| +99013| +99014| +99015| +99040| +99041| +99042| +99043| +99044| +99045| +99046| +99047| +99072| +99073| +99074| +99075| +99076| +99077| +99078| +99079| +99104| +99105| +99106| +99107| +99108| +99109| +99110| +99111| +99136| +99137| +99138| +99139| +99140| +99141| +99142| +99143| +99168| +99169| +99170| +99171| +99172| +99173| +99174| +99175| +99200| +99201| +99202| +99203| +99204| +99205| +99206| +99207| +99232| +99233| +99234| +99235| +99236| +99237| +99238| +99239| +99264| +99265| +99266| +99267| +99268| +99269| +99270| +99271| +99296| +99297| +99298| +99299| +99300| +99301| +99302| +99303| +99328| +99329| +99330| +99331| +99332| +99333| +99334| +99335| +99360| +99361| +99362| +99363| +99364| +99365| +99366| +99367| +99392| +99393| +99394| +99395| +99396| +99397| +99398| +99399| +99424| +99425| +99426| +99427| +99428| +99429| +99430| +99431| +99456| +99457| +99458| +99459| +99460| +99461| +99462| +99463| +99488| +99489| +99490| +99491| +99492| +99493| +99494| +99495| +99520| +99521| +99522| +99523| +99524| +99525| +99526| +99527| +99552| +99553| +99554| +99555| +99556| +99557| +99558| +99559| +99584| +99585| +99586| +99587| +99588| +99589| +99590| +99591| +99616| +99617| +99618| +99619| +99620| +99621| +99622| +99623| +99648| +99649| +99650| +99651| +99652| +99653| +99654| +99655| +99680| +99681| +99682| +99683| +99684| +99685| +99686| +99687| +99712| +99713| +99714| +99715| +99716| +99717| +99718| +99719| +99744| +99745| +99746| +99747| +99748| +99749| +99750| +99751| +99776| +99777| +99778| +99779| +99780| +99781| +99782| +99783| +99808| +99809| +99810| +99811| +99812| +99813| +99814| +99815| +99840| +99841| +99842| +99843| +99844| +99845| +99846| +99847| +99872| +99873| +99874| +99875| +99876| +99877| +99878| +99879| +99904| +99905| +99906| +99907| +99908| +99909| +99910| +99911| +99936| +99937| +99938| +99939| +99940| +99941| +99942| +99943| +99968| +99969| +99970| +99971| +99972| +99973| +99974| +99975| +100000| +100001| +100002| +100003| +100004| +100005| +100006| +100007| +100032| +100033| +100034| +100035| +100036| +100037| +100038| +100039| +100064| +100065| +100066| +100067| +100068| +100069| +100070| +100071| +100096| +100097| +100098| +100099| +100100| +100101| +100102| +100103| +100128| +100129| +100130| +100131| +100132| +100133| +100134| +100135| +100160| +100161| +100162| +100163| +100164| +100165| +100166| +100167| +100192| +100193| +100194| +100195| +100196| +100197| +100198| +100199| +100224| +100225| +100226| +100227| +100228| +100229| +100230| +100231| +100256| +100257| +100258| +100259| +100260| +100261| +100262| +100263| +100288| +100289| +100290| +100291| +100292| +100293| +100294| +100295| +100320| +100321| +100322| +100323| +100324| +100325| +100326| +100327| +100352| +100353| +100354| +100355| +100356| +100357| +100358| +100359| +100384| +100385| +100386| +100387| +100388| +100389| +100390| +100391| +100416| +100417| +100418| +100419| +100420| +100421| +100422| +100423| +100448| +100449| +100450| +100451| +100452| +100453| +100454| +100455| +100480| +100481| +100482| +100483| +100484| +100485| +100486| +100487| +100512| +100513| +100514| +100515| +100516| +100517| +100518| +100519| +100544| +100545| +100546| +100547| +100548| +100549| +100550| +100551| +100576| +100577| +100578| +100579| +100580| +100581| +100582| +100583| +100608| +100609| +100610| +100611| +100612| +100613| +100614| +100615| +100640| +100641| +100642| +100643| +100644| +100645| +100646| +100647| +100672| +100673| +100674| +100675| +100676| +100677| +100678| +100679| +100704| +100705| +100706| +100707| +100708| +100709| +100710| +100711| +100736| +100737| +100738| +100739| +100740| +100741| +100742| +100743| +100768| +100769| +100770| +100771| +100772| +100773| +100774| +100775| +100800| +100801| +100802| +100803| +100804| +100805| +100806| +100807| +100832| +100833| +100834| +100835| +100836| +100837| +100838| +100839| +100864| +100865| +100866| +100867| +100868| +100869| +100870| +100871| +100896| +100897| +100898| +100899| +100900| +100901| +100902| +100903| +100928| +100929| +100930| +100931| +100932| +100933| +100934| +100935| +100960| +100961| +100962| +100963| +100964| +100965| +100966| +100967| +100992| +100993| +100994| +100995| +100996| +100997| +100998| +100999| +101024| +101025| +101026| +101027| +101028| +101029| +101030| +101031| +101056| +101057| +101058| +101059| +101060| +101061| +101062| +101063| +101088| +101089| +101090| +101091| +101092| +101093| +101094| +101095| +101120| +101121| +101122| +101123| +101124| +101125| +101126| +101127| +101152| +101153| +101154| +101155| +101156| +101157| +101158| +101159| +101184| +101185| +101186| +101187| +101188| +101189| +101190| +101191| +101216| +101217| +101218| +101219| +101220| +101221| +101222| +101223| +101248| +101249| +101250| +101251| +101252| +101253| +101254| +101255| +101280| +101281| +101282| +101283| +101284| +101285| +101286| +101287| +101312| +101313| +101314| +101315| +101316| +101317| +101318| +101319| +101344| +101345| +101346| +101347| +101348| +101349| +101350| +101351| +101376| +101377| +101378| +101379| +101380| +101381| +101382| +101383| +101408| +101409| +101410| +101411| +101412| +101413| +101414| +101415| +101440| +101441| +101442| +101443| +101444| +101445| +101446| +101447| +101472| +101473| +101474| +101475| +101476| +101477| +101478| +101479| +101504| +101505| +101506| +101507| +101508| +101509| +101510| +101511| +101536| +101537| +101538| +101539| +101540| +101541| +101542| +101543| +101568| +101569| +101570| +101571| +101572| +101573| +101574| +101575| +101600| +101601| +101602| +101603| +101604| +101605| +101606| +101607| +101632| +101633| +101634| +101635| +101636| +101637| +101638| +101639| +101664| +101665| +101666| +101667| +101668| +101669| +101670| +101671| +101696| +101697| +101698| +101699| +101700| +101701| +101702| +101703| +101728| +101729| +101730| +101731| +101732| +101733| +101734| +101735| +101760| +101761| +101762| +101763| +101764| +101765| +101766| +101767| +101792| +101793| +101794| +101795| +101796| +101797| +101798| +101799| +101824| +101825| +101826| +101827| +101828| +101829| +101830| +101831| +101856| +101857| +101858| +101859| +101860| +101861| +101862| +101863| +101888| +101889| +101890| +101891| +101892| +101893| +101894| +101895| +101920| +101921| +101922| +101923| +101924| +101925| +101926| +101927| +101952| +101953| +101954| +101955| +101956| +101957| +101958| +101959| +101984| +101985| +101986| +101987| +101988| +101989| +101990| +101991| +102016| +102017| +102018| +102019| +102020| +102021| +102022| +102023| +102048| +102049| +102050| +102051| +102052| +102053| +102054| +102055| +102080| +102081| +102082| +102083| +102084| +102085| +102086| +102087| +102112| +102113| +102114| +102115| +102116| +102117| +102118| +102119| +102144| +102145| +102146| +102147| +102148| +102149| +102150| +102151| +102176| +102177| +102178| +102179| +102180| +102181| +102182| +102183| +102208| +102209| +102210| +102211| +102212| +102213| +102214| +102215| +102240| +102241| +102242| +102243| +102244| +102245| +102246| +102247| +102272| +102273| +102274| +102275| +102276| +102277| +102278| +102279| +102304| +102305| +102306| +102307| +102308| +102309| +102310| +102311| +102336| +102337| +102338| +102339| +102340| +102341| +102342| +102343| +102368| +102369| +102370| +102371| +102372| +102373| +102374| +102375| +102400| +102401| +102402| +102403| +102404| +102405| +102406| +102407| +102432| +102433| +102434| +102435| +102436| +102437| +102438| +102439| +102464| +102465| +102466| +102467| +102468| +102469| +102470| +102471| +102496| +102497| +102498| +102499| +102500| +102501| +102502| +102503| +102528| +102529| +102530| +102531| +102532| +102533| +102534| +102535| +102560| +102561| +102562| +102563| +102564| +102565| +102566| +102567| +102592| +102593| +102594| +102595| +102596| +102597| +102598| +102599| +102624| +102625| +102626| +102627| +102628| +102629| +102630| +102631| +102656| +102657| +102658| +102659| +102660| +102661| +102662| +102663| +102688| +102689| +102690| +102691| +102692| +102693| +102694| +102695| +102720| +102721| +102722| +102723| +102724| +102725| +102726| +102727| +102752| +102753| +102754| +102755| +102756| +102757| +102758| +102759| +102784| +102785| +102786| +102787| +102788| +102789| +102790| +102791| +102816| +102817| +102818| +102819| +102820| +102821| +102822| +102823| +102848| +102849| +102850| +102851| +102852| +102853| +102854| +102855| +102880| +102881| +102882| +102883| +102884| +102885| +102886| +102887| +102912| +102913| +102914| +102915| +102916| +102917| +102918| +102919| +102944| +102945| +102946| +102947| +102948| +102949| +102950| +102951| +102976| +102977| +102978| +102979| +102980| +102981| +102982| +102983| +103008| +103009| +103010| +103011| +103012| +103013| +103014| +103015| +103040| +103041| +103042| +103043| +103044| +103045| +103046| +103047| +103072| +103073| +103074| +103075| +103076| +103077| +103078| +103079| +103104| +103105| +103106| +103107| +103108| +103109| +103110| +103111| +103136| +103137| +103138| +103139| +103140| +103141| +103142| +103143| +103168| +103169| +103170| +103171| +103172| +103173| +103174| +103175| +103200| +103201| +103202| +103203| +103204| +103205| +103206| +103207| +103232| +103233| +103234| +103235| +103236| +103237| +103238| +103239| +103264| +103265| +103266| +103267| +103268| +103269| +103270| +103271| +103296| +103297| +103298| +103299| +103300| +103301| +103302| +103303| +103328| +103329| +103330| +103331| +103332| +103333| +103334| +103335| +103360| +103361| +103362| +103363| +103364| +103365| +103366| +103367| +103392| +103393| +103394| +103395| +103396| +103397| +103398| +103399| +103424| +103425| +103426| +103427| +103428| +103429| +103430| +103431| +103456| +103457| +103458| +103459| +103460| +103461| +103462| +103463| +103488| +103489| +103490| +103491| +103492| +103493| +103494| +103495| +103520| +103521| +103522| +103523| +103524| +103525| +103526| +103527| +103552| +103553| +103554| +103555| +103556| +103557| +103558| +103559| +103584| +103585| +103586| +103587| +103588| +103589| +103590| +103591| +103616| +103617| +103618| +103619| +103620| +103621| +103622| +103623| +103648| +103649| +103650| +103651| +103652| +103653| +103654| +103655| +103680| +103681| +103682| +103683| +103684| +103685| +103686| +103687| +103712| +103713| +103714| +103715| +103716| +103717| +103718| +103719| +103744| +103745| +103746| +103747| +103748| +103749| +103750| +103751| +103776| +103777| +103778| +103779| +103780| +103781| +103782| +103783| +103808| +103809| +103810| +103811| +103812| +103813| +103814| +103815| +103840| +103841| +103842| +103843| +103844| +103845| +103846| +103847| +103872| +103873| +103874| +103875| +103876| +103877| +103878| +103879| +103904| +103905| +103906| +103907| +103908| +103909| +103910| +103911| +103936| +103937| +103938| +103939| +103940| +103941| +103942| +103943| +103968| +103969| +103970| +103971| +103972| +103973| +103974| +103975| +104000| +104001| +104002| +104003| +104004| +104005| +104006| +104007| +104032| +104033| +104034| +104035| +104036| +104037| +104038| +104039| +104064| +104065| +104066| +104067| +104068| +104069| +104070| +104071| +104096| +104097| +104098| +104099| +104100| +104101| +104102| +104103| +104128| +104129| +104130| +104131| +104132| +104133| +104134| +104135| +104160| +104161| +104162| +104163| +104164| +104165| +104166| +104167| +104192| +104193| +104194| +104195| +104196| +104197| +104198| +104199| +104224| +104225| +104226| +104227| +104228| +104229| +104230| +104231| +104256| +104257| +104258| +104259| +104260| +104261| +104262| +104263| +104288| +104289| +104290| +104291| +104292| +104293| +104294| +104295| +104320| +104321| +104322| +104323| +104324| +104325| +104326| +104327| +104352| +104353| +104354| +104355| +104356| +104357| +104358| +104359| +104384| +104385| +104386| +104387| +104388| +104389| +104390| +104391| +104416| +104417| +104418| +104419| +104420| +104421| +104422| +104423| +104448| +104449| +104450| +104451| +104452| +104453| +104454| +104455| +104480| +104481| +104482| +104483| +104484| +104485| +104486| +104487| +104512| +104513| +104514| +104515| +104516| +104517| +104518| +104519| +104544| +104545| +104546| +104547| +104548| +104549| +104550| +104551| +104576| +104577| +104578| +104579| +104580| +104581| +104582| +104583| +104608| +104609| +104610| +104611| +104612| +104613| +104614| +104615| +104640| +104641| +104642| +104643| +104644| +104645| +104646| +104647| +104672| +104673| +104674| +104675| +104676| +104677| +104678| +104679| +104704| +104705| +104706| +104707| +104708| +104709| +104710| +104711| +104736| +104737| +104738| +104739| +104740| +104741| +104742| +104743| +104768| +104769| +104770| +104771| +104772| +104773| +104774| +104775| +104800| +104801| +104802| +104803| +104804| +104805| +104806| +104807| +104832| +104833| +104834| +104835| +104836| +104837| +104838| +104839| +104864| +104865| +104866| +104867| +104868| +104869| +104870| +104871| +104896| +104897| +104898| +104899| +104900| +104901| +104902| +104903| +104928| +104929| +104930| +104931| +104932| +104933| +104934| +104935| +104960| +104961| +104962| +104963| +104964| +104965| +104966| +104967| +104992| +104993| +104994| +104995| +104996| +104997| +104998| +104999| +105024| +105025| +105026| +105027| +105028| +105029| +105030| +105031| +105056| +105057| +105058| +105059| +105060| +105061| +105062| +105063| +105088| +105089| +105090| +105091| +105092| +105093| +105094| +105095| +105120| +105121| +105122| +105123| +105124| +105125| +105126| +105127| +105152| +105153| +105154| +105155| +105156| +105157| +105158| +105159| +105184| +105185| +105186| +105187| +105188| +105189| +105190| +105191| +105216| +105217| +105218| +105219| +105220| +105221| +105222| +105223| +105248| +105249| +105250| +105251| +105252| +105253| +105254| +105255| +105280| +105281| +105282| +105283| +105284| +105285| +105286| +105287| +105312| +105313| +105314| +105315| +105316| +105317| +105318| +105319| +105344| +105345| +105346| +105347| +105348| +105349| +105350| +105351| +105376| +105377| +105378| +105379| +105380| +105381| +105382| +105383| +105408| +105409| +105410| +105411| +105412| +105413| +105414| +105415| +105440| +105441| +105442| +105443| +105444| +105445| +105446| +105447| +105472| +105473| +105474| +105475| +105476| +105477| +105478| +105479| +105504| +105505| +105506| +105507| +105508| +105509| +105510| +105511| +105536| +105537| +105538| +105539| +105540| +105541| +105542| +105543| +105568| +105569| +105570| +105571| +105572| +105573| +105574| +105575| +105600| +105601| +105602| +105603| +105604| +105605| +105606| +105607| +105632| +105633| +105634| +105635| +105636| +105637| +105638| +105639| +105664| +105665| +105666| +105667| +105668| +105669| +105670| +105671| +105696| +105697| +105698| +105699| +105700| +105701| +105702| +105703| +105728| +105729| +105730| +105731| +105732| +105733| +105734| +105735| +105760| +105761| +105762| +105763| +105764| +105765| +105766| +105767| +105792| +105793| +105794| +105795| +105796| +105797| +105798| +105799| +105824| +105825| +105826| +105827| +105828| +105829| +105830| +105831| +105856| +105857| +105858| +105859| +105860| +105861| +105862| +105863| +105888| +105889| +105890| +105891| +105892| +105893| +105894| +105895| +105920| +105921| +105922| +105923| +105924| +105925| +105926| +105927| +105952| +105953| +105954| +105955| +105956| +105957| +105958| +105959| +105984| +105985| +105986| +105987| +105988| +105989| +105990| +105991| +106016| +106017| +106018| +106019| +106020| +106021| +106022| +106023| +106048| +106049| +106050| +106051| +106052| +106053| +106054| +106055| +106080| +106081| +106082| +106083| +106084| +106085| +106086| +106087| +106112| +106113| +106114| +106115| +106116| +106117| +106118| +106119| +106144| +106145| +106146| +106147| +106148| +106149| +106150| +106151| +106176| +106177| +106178| +106179| +106180| +106181| +106182| +106183| +106208| +106209| +106210| +106211| +106212| +106213| +106214| +106215| +106240| +106241| +106242| +106243| +106244| +106245| +106246| +106247| +106272| +106273| +106274| +106275| +106276| +106277| +106278| +106279| +106304| +106305| +106306| +106307| +106308| +106309| +106310| +106311| +106336| +106337| +106338| +106339| +106340| +106341| +106342| +106343| +106368| +106369| +106370| +106371| +106372| +106373| +106374| +106375| +106400| +106401| +106402| +106403| +106404| +106405| +106406| +106407| +106432| +106433| +106434| +106435| +106436| +106437| +106438| +106439| +106464| +106465| +106466| +106467| +106468| +106469| +106470| +106471| +106496| +106497| +106498| +106499| +106500| +106501| +106502| +106503| +106528| +106529| +106530| +106531| +106532| +106533| +106534| +106535| +106560| +106561| +106562| +106563| +106564| +106565| +106566| +106567| +106592| +106593| +106594| +106595| +106596| +106597| +106598| +106599| +106624| +106625| +106626| +106627| +106628| +106629| +106630| +106631| +106656| +106657| +106658| +106659| +106660| +106661| +106662| +106663| +106688| +106689| +106690| +106691| +106692| +106693| +106694| +106695| +106720| +106721| +106722| +106723| +106724| +106725| +106726| +106727| +106752| +106753| +106754| +106755| +106756| +106757| +106758| +106759| +106784| +106785| +106786| +106787| +106788| +106789| +106790| +106791| +106816| +106817| +106818| +106819| +106820| +106821| +106822| +106823| +106848| +106849| +106850| +106851| +106852| +106853| +106854| +106855| +106880| +106881| +106882| +106883| +106884| +106885| +106886| +106887| +106912| +106913| +106914| +106915| +106916| +106917| +106918| +106919| +106944| +106945| +106946| +106947| +106948| +106949| +106950| +106951| +106976| +106977| +106978| +106979| +106980| +106981| +106982| +106983| +107008| +107009| +107010| +107011| +107012| +107013| +107014| +107015| +107040| +107041| +107042| +107043| +107044| +107045| +107046| +107047| +107072| +107073| +107074| +107075| +107076| +107077| +107078| +107079| +107104| +107105| +107106| +107107| +107108| +107109| +107110| +107111| +107136| +107137| +107138| +107139| +107140| +107141| +107142| +107143| +107168| +107169| +107170| +107171| +107172| +107173| +107174| +107175| +107200| +107201| +107202| +107203| +107204| +107205| +107206| +107207| +107232| +107233| +107234| +107235| +107236| +107237| +107238| +107239| +107264| +107265| +107266| +107267| +107268| +107269| +107270| +107271| +107296| +107297| +107298| +107299| +107300| +107301| +107302| +107303| +107328| +107329| +107330| +107331| +107332| +107333| +107334| +107335| +107360| +107361| +107362| +107363| +107364| +107365| +107366| +107367| +107392| +107393| +107394| +107395| +107396| +107397| +107398| +107399| +107424| +107425| +107426| +107427| +107428| +107429| +107430| +107431| +107456| +107457| +107458| +107459| +107460| +107461| +107462| +107463| +107488| +107489| +107490| +107491| +107492| +107493| +107494| +107495| +107520| +107521| +107522| +107523| +107524| +107525| +107526| +107527| +107552| +107553| +107554| +107555| +107556| +107557| +107558| +107559| +107584| +107585| +107586| +107587| +107588| +107589| +107590| +107591| +107616| +107617| +107618| +107619| +107620| +107621| +107622| +107623| +107648| +107649| +107650| +107651| +107652| +107653| +107654| +107655| +107680| +107681| +107682| +107683| +107684| +107685| +107686| +107687| +107712| +107713| +107714| +107715| +107716| +107717| +107718| +107719| +107744| +107745| +107746| +107747| +107748| +107749| +107750| +107751| +107776| +107777| +107778| +107779| +107780| +107781| +107782| +107783| +107808| +107809| +107810| +107811| +107812| +107813| +107814| +107815| +107840| +107841| +107842| +107843| +107844| +107845| +107846| +107847| +107872| +107873| +107874| +107875| +107876| +107877| +107878| +107879| +107904| +107905| +107906| +107907| +107908| +107909| +107910| +107911| +107936| +107937| +107938| +107939| +107940| +107941| +107942| +107943| +107968| +107969| +107970| +107971| +107972| +107973| +107974| +107975| +108000| +108001| +108002| +108003| +108004| +108005| +108006| +108007| +108032| +108033| +108034| +108035| +108036| +108037| +108038| +108039| +108064| +108065| +108066| +108067| +108068| +108069| +108070| +108071| +108096| +108097| +108098| +108099| +108100| +108101| +108102| +108103| +108128| +108129| +108130| +108131| +108132| +108133| +108134| +108135| +108160| +108161| +108162| +108163| +108164| +108165| +108166| +108167| +108192| +108193| +108194| +108195| +108196| +108197| +108198| +108199| +108224| +108225| +108226| +108227| +108228| +108229| +108230| +108231| +108256| +108257| +108258| +108259| +108260| +108261| +108262| +108263| +108288| +108289| +108290| +108291| +108292| +108293| +108294| +108295| +108320| +108321| +108322| +108323| +108324| +108325| +108326| +108327| +108352| +108353| +108354| +108355| +108356| +108357| +108358| +108359| +108384| +108385| +108386| +108387| +108388| +108389| +108390| +108391| +108416| +108417| +108418| +108419| +108420| +108421| +108422| +108423| +108448| +108449| +108450| +108451| +108452| +108453| +108454| +108455| +108480| +108481| +108482| +108483| +108484| +108485| +108486| +108487| +108512| +108513| +108514| +108515| +108516| +108517| +108518| +108519| +108544| +108545| +108546| +108547| +108548| +108549| +108550| +108551| +108576| +108577| +108578| +108579| +108580| +108581| +108582| +108583| +108608| +108609| +108610| +108611| +108612| +108613| +108614| +108615| +108640| +108641| +108642| +108643| +108644| +108645| +108646| +108647| +108672| +108673| +108674| +108675| +108676| +108677| +108678| +108679| +108704| +108705| +108706| +108707| +108708| +108709| +108710| +108711| +108736| +108737| +108738| +108739| +108740| +108741| +108742| +108743| +108768| +108769| +108770| +108771| +108772| +108773| +108774| +108775| +108800| +108801| +108802| +108803| +108804| +108805| +108806| +108807| +108832| +108833| +108834| +108835| +108836| +108837| +108838| +108839| +108864| +108865| +108866| +108867| +108868| +108869| +108870| +108871| +108896| +108897| +108898| +108899| +108900| +108901| +108902| +108903| +108928| +108929| +108930| +108931| +108932| +108933| +108934| +108935| +108960| +108961| +108962| +108963| +108964| +108965| +108966| +108967| +108992| +108993| +108994| +108995| +108996| +108997| +108998| +108999| +109024| +109025| +109026| +109027| +109028| +109029| +109030| +109031| +109056| +109057| +109058| +109059| +109060| +109061| +109062| +109063| +109088| +109089| +109090| +109091| +109092| +109093| +109094| +109095| +109120| +109121| +109122| +109123| +109124| +109125| +109126| +109127| +109152| +109153| +109154| +109155| +109156| +109157| +109158| +109159| +109184| +109185| +109186| +109187| +109188| +109189| +109190| +109191| +109216| +109217| +109218| +109219| +109220| +109221| +109222| +109223| +109248| +109249| +109250| +109251| +109252| +109253| +109254| +109255| +109280| +109281| +109282| +109283| +109284| +109285| +109286| +109287| +109312| +109313| +109314| +109315| +109316| +109317| +109318| +109319| +109344| +109345| +109346| +109347| +109348| +109349| +109350| +109351| +109376| +109377| +109378| +109379| +109380| +109381| +109382| +109383| +109408| +109409| +109410| +109411| +109412| +109413| +109414| +109415| +109440| +109441| +109442| +109443| +109444| +109445| +109446| +109447| +109472| +109473| +109474| +109475| +109476| +109477| +109478| +109479| +109504| +109505| +109506| +109507| +109508| +109509| +109510| +109511| +109536| +109537| +109538| +109539| +109540| +109541| +109542| +109543| +109568| +109569| +109570| +109571| +109572| +109573| +109574| +109575| +109600| +109601| +109602| +109603| +109604| +109605| +109606| +109607| +109632| +109633| +109634| +109635| +109636| +109637| +109638| +109639| +109664| +109665| +109666| +109667| +109668| +109669| +109670| +109671| +109696| +109697| +109698| +109699| +109700| +109701| +109702| +109703| +109728| +109729| +109730| +109731| +109732| +109733| +109734| +109735| +109760| +109761| +109762| +109763| +109764| +109765| +109766| +109767| +109792| +109793| +109794| +109795| +109796| +109797| +109798| +109799| +109824| +109825| +109826| +109827| +109828| +109829| +109830| +109831| +109856| +109857| +109858| +109859| +109860| +109861| +109862| +109863| +109888| +109889| +109890| +109891| +109892| +109893| +109894| +109895| +109920| +109921| +109922| +109923| +109924| +109925| +109926| +109927| +109952| +109953| +109954| +109955| +109956| +109957| +109958| +109959| +109984| +109985| +109986| +109987| +109988| +109989| +109990| +109991| +110016| +110017| +110018| +110019| +110020| +110021| +110022| +110023| +110048| +110049| +110050| +110051| +110052| +110053| +110054| +110055| +110080| +110081| +110082| +110083| +110084| +110085| +110086| +110087| +110112| +110113| +110114| +110115| +110116| +110117| +110118| +110119| +110144| +110145| +110146| +110147| +110148| +110149| +110150| +110151| +110176| +110177| +110178| +110179| +110180| +110181| +110182| +110183| +110208| +110209| +110210| +110211| +110212| +110213| +110214| +110215| +110240| +110241| +110242| +110243| +110244| +110245| +110246| +110247| +110272| +110273| +110274| +110275| +110276| +110277| +110278| +110279| +110304| +110305| +110306| +110307| +110308| +110309| +110310| +110311| +110336| +110337| +110338| +110339| +110340| +110341| +110342| +110343| +110368| +110369| +110370| +110371| +110372| +110373| +110374| +110375| +110400| +110401| +110402| +110403| +110404| +110405| +110406| +110407| +110432| +110433| +110434| +110435| +110436| +110437| +110438| +110439| +110464| +110465| +110466| +110467| +110468| +110469| +110470| +110471| +110496| +110497| +110498| +110499| +110500| +110501| +110502| +110503| +110528| +110529| +110530| +110531| +110532| +110533| +110534| +110535| +110560| +110561| +110562| +110563| +110564| +110565| +110566| +110567| +110592| +110593| +110594| +110595| +110596| +110597| +110598| +110599| +110624| +110625| +110626| +110627| +110628| +110629| +110630| +110631| +110656| +110657| +110658| +110659| +110660| +110661| +110662| +110663| +110688| +110689| +110690| +110691| +110692| +110693| +110694| +110695| +110720| +110721| +110722| +110723| +110724| +110725| +110726| +110727| +110752| +110753| +110754| +110755| +110756| +110757| +110758| +110759| +110784| +110785| +110786| +110787| +110788| +110789| +110790| +110791| +110816| +110817| +110818| +110819| +110820| +110821| +110822| +110823| +110848| +110849| +110850| +110851| +110852| +110853| +110854| +110855| +110880| +110881| +110882| +110883| +110884| +110885| +110886| +110887| +110912| +110913| +110914| +110915| +110916| +110917| +110918| +110919| +110944| +110945| +110946| +110947| +110948| +110949| +110950| +110951| +110976| +110977| +110978| +110979| +110980| +110981| +110982| +110983| +111008| +111009| +111010| +111011| +111012| +111013| +111014| +111015| +111040| +111041| +111042| +111043| +111044| +111045| +111046| +111047| +111072| +111073| +111074| +111075| +111076| +111077| +111078| +111079| +111104| +111105| +111106| +111107| +111108| +111109| +111110| +111111| +111136| +111137| +111138| +111139| +111140| +111141| +111142| +111143| +111168| +111169| +111170| +111171| +111172| +111173| +111174| +111175| +111200| +111201| +111202| +111203| +111204| +111205| +111206| +111207| +111232| +111233| +111234| +111235| +111236| +111237| +111238| +111239| +111264| +111265| +111266| +111267| +111268| +111269| +111270| +111271| +111296| +111297| +111298| +111299| +111300| +111301| +111302| +111303| +111328| +111329| +111330| +111331| +111332| +111333| +111334| +111335| +111360| +111361| +111362| +111363| +111364| +111365| +111366| +111367| +111392| +111393| +111394| +111395| +111396| +111397| +111398| +111399| +111424| +111425| +111426| +111427| +111428| +111429| +111430| +111431| +111456| +111457| +111458| +111459| +111460| +111461| +111462| +111463| +111488| +111489| +111490| +111491| +111492| +111493| +111494| +111495| +111520| +111521| +111522| +111523| +111524| +111525| +111526| +111527| +111552| +111553| +111554| +111555| +111556| +111557| +111558| +111559| +111584| +111585| +111586| +111587| +111588| +111589| +111590| +111591| +111616| +111617| +111618| +111619| +111620| +111621| +111622| +111623| +111648| +111649| +111650| +111651| +111652| +111653| +111654| +111655| +111680| +111681| +111682| +111683| +111684| +111685| +111686| +111687| +111712| +111713| +111714| +111715| +111716| +111717| +111718| +111719| +111744| +111745| +111746| +111747| +111748| +111749| +111750| +111751| +111776| +111777| +111778| +111779| +111780| +111781| +111782| +111783| +111808| +111809| +111810| +111811| +111812| +111813| +111814| +111815| +111840| +111841| +111842| +111843| +111844| +111845| +111846| +111847| +111872| +111873| +111874| +111875| +111876| +111877| +111878| +111879| +111904| +111905| +111906| +111907| +111908| +111909| +111910| +111911| +111936| +111937| +111938| +111939| +111940| +111941| +111942| +111943| +111968| +111969| +111970| +111971| +111972| +111973| +111974| +111975| +112000| +112001| +112002| +112003| +112004| +112005| +112006| +112007| +112032| +112033| +112034| +112035| +112036| +112037| +112038| +112039| +112064| +112065| +112066| +112067| +112068| +112069| +112070| +112071| +112096| +112097| +112098| +112099| +112100| +112101| +112102| +112103| +112128| +112129| +112130| +112131| +112132| +112133| +112134| +112135| +112160| +112161| +112162| +112163| +112164| +112165| +112166| +112167| +112192| +112193| +112194| +112195| +112196| +112197| +112198| +112199| +112224| +112225| +112226| +112227| +112228| +112229| +112230| +112231| +112256| +112257| +112258| +112259| +112260| +112261| +112262| +112263| +112288| +112289| +112290| +112291| +112292| +112293| +112294| +112295| +112320| +112321| +112322| +112323| +112324| +112325| +112326| +112327| +112352| +112353| +112354| +112355| +112356| +112357| +112358| +112359| +112384| +112385| +112386| +112387| +112388| +112389| +112390| +112391| +112416| +112417| +112418| +112419| +112420| +112421| +112422| +112423| +112448| +112449| +112450| +112451| +112452| +112453| +112454| +112455| +112480| +112481| +112482| +112483| +112484| +112485| +112486| +112487| +112512| +112513| +112514| +112515| +112516| +112517| +112518| +112519| +112544| +112545| +112546| +112547| +112548| +112549| +112550| +112551| +112576| +112577| +112578| +112579| +112580| +112581| +112582| +112583| +112608| +112609| +112610| +112611| +112612| +112613| +112614| +112615| +112640| +112641| +112642| +112643| +112644| +112645| +112646| +112647| +112672| +112673| +112674| +112675| +112676| +112677| +112678| +112679| +112704| +112705| +112706| +112707| +112708| +112709| +112710| +112711| +112736| +112737| +112738| +112739| +112740| +112741| +112742| +112743| +112768| +112769| +112770| +112771| +112772| +112773| +112774| +112775| +112800| +112801| +112802| +112803| +112804| +112805| +112806| +112807| +112832| +112833| +112834| +112835| +112836| +112837| +112838| +112839| +112864| +112865| +112866| +112867| +112868| +112869| +112870| +112871| +112896| +112897| +112898| +112899| +112900| +112901| +112902| +112903| +112928| +112929| +112930| +112931| +112932| +112933| +112934| +112935| +112960| +112961| +112962| +112963| +112964| +112965| +112966| +112967| +112992| +112993| +112994| +112995| +112996| +112997| +112998| +112999| +113024| +113025| +113026| +113027| +113028| +113029| +113030| +113031| +113056| +113057| +113058| +113059| +113060| +113061| +113062| +113063| +113088| +113089| +113090| +113091| +113092| +113093| +113094| +113095| +113120| +113121| +113122| +113123| +113124| +113125| +113126| +113127| +113152| +113153| +113154| +113155| +113156| +113157| +113158| +113159| +113184| +113185| +113186| +113187| +113188| +113189| +113190| +113191| +113216| +113217| +113218| +113219| +113220| +113221| +113222| +113223| +113248| +113249| +113250| +113251| +113252| +113253| +113254| +113255| +113280| +113281| +113282| +113283| +113284| +113285| +113286| +113287| +113312| +113313| +113314| +113315| +113316| +113317| +113318| +113319| +113344| +113345| +113346| +113347| +113348| +113349| +113350| +113351| +113376| +113377| +113378| +113379| +113380| +113381| +113382| +113383| +113408| +113409| +113410| +113411| +113412| +113413| +113414| +113415| +113440| +113441| +113442| +113443| +113444| +113445| +113446| +113447| +113472| +113473| +113474| +113475| +113476| +113477| +113478| +113479| +113504| +113505| +113506| +113507| +113508| +113509| +113510| +113511| +113536| +113537| +113538| +113539| +113540| +113541| +113542| +113543| +113568| +113569| +113570| +113571| +113572| +113573| +113574| +113575| +113600| +113601| +113602| +113603| +113604| +113605| +113606| +113607| +113632| +113633| +113634| +113635| +113636| +113637| +113638| +113639| +113664| +113665| +113666| +113667| +113668| +113669| +113670| +113671| +113696| +113697| +113698| +113699| +113700| +113701| +113702| +113703| +113728| +113729| +113730| +113731| +113732| +113733| +113734| +113735| +113760| +113761| +113762| +113763| +113764| +113765| +113766| +113767| +113792| +113793| +113794| +113795| +113796| +113797| +113798| +113799| +113824| +113825| +113826| +113827| +113828| +113829| +113830| +113831| +113856| +113857| +113858| +113859| +113860| +113861| +113862| +113863| +113888| +113889| +113890| +113891| +113892| +113893| +113894| +113895| +113920| +113921| +113922| +113923| +113924| +113925| +113926| +113927| +113952| +113953| +113954| +113955| +113956| +113957| +113958| +113959| +113984| +113985| +113986| +113987| +113988| +113989| +113990| +113991| +114016| +114017| +114018| +114019| +114020| +114021| +114022| +114023| +114048| +114049| +114050| +114051| +114052| +114053| +114054| +114055| +114080| +114081| +114082| +114083| +114084| +114085| +114086| +114087| +114112| +114113| +114114| +114115| +114116| +114117| +114118| +114119| +114144| +114145| +114146| +114147| +114148| +114149| +114150| +114151| +114176| +114177| +114178| +114179| +114180| +114181| +114182| +114183| +114208| +114209| +114210| +114211| +114212| +114213| +114214| +114215| +114240| +114241| +114242| +114243| +114244| +114245| +114246| +114247| +114272| +114273| +114274| +114275| +114276| +114277| +114278| +114279| +114304| +114305| +114306| +114307| +114308| +114309| +114310| +114311| +114336| +114337| +114338| +114339| +114340| +114341| +114342| +114343| +114368| +114369| +114370| +114371| +114372| +114373| +114374| +114375| +114400| +114401| +114402| +114403| +114404| +114405| +114406| +114407| +114432| +114433| +114434| +114435| +114436| +114437| +114438| +114439| +114464| +114465| +114466| +114467| +114468| +114469| +114470| +114471| +114496| +114497| +114498| +114499| +114500| +114501| +114502| +114503| +114528| +114529| +114530| +114531| +114532| +114533| +114534| +114535| +114560| +114561| +114562| +114563| +114564| +114565| +114566| +114567| +114592| +114593| +114594| +114595| +114596| +114597| +114598| +114599| +114624| +114625| +114626| +114627| +114628| +114629| +114630| +114631| +114656| +114657| +114658| +114659| +114660| +114661| +114662| +114663| +114688| +114689| +114690| +114691| +114692| +114693| +114694| +114695| +114720| +114721| +114722| +114723| +114724| +114725| +114726| +114727| +114752| +114753| +114754| +114755| +114756| +114757| +114758| +114759| +114784| +114785| +114786| +114787| +114788| +114789| +114790| +114791| +114816| +114817| +114818| +114819| +114820| +114821| +114822| +114823| +114848| +114849| +114850| +114851| +114852| +114853| +114854| +114855| +114880| +114881| +114882| +114883| +114884| +114885| +114886| +114887| +114912| +114913| +114914| +114915| +114916| +114917| +114918| +114919| +114944| +114945| +114946| +114947| +114948| +114949| +114950| +114951| +114976| +114977| +114978| +114979| +114980| +114981| +114982| +114983| +115008| +115009| +115010| +115011| +115012| +115013| +115014| +115015| +115040| +115041| +115042| +115043| +115044| +115045| +115046| +115047| +115072| +115073| +115074| +115075| +115076| +115077| +115078| +115079| +115104| +115105| +115106| +115107| +115108| +115109| +115110| +115111| +115136| +115137| +115138| +115139| +115140| +115141| +115142| +115143| +115168| +115169| +115170| +115171| +115172| +115173| +115174| +115175| +115200| +115201| +115202| +115203| +115204| +115205| +115206| +115207| +115232| +115233| +115234| +115235| +115236| +115237| +115238| +115239| +115264| +115265| +115266| +115267| +115268| +115269| +115270| +115271| +115296| +115297| +115298| +115299| +115300| +115301| +115302| +115303| +115328| +115329| +115330| +115331| +115332| +115333| +115334| +115335| +115360| +115361| +115362| +115363| +115364| +115365| +115366| +115367| +115392| +115393| +115394| +115395| +115396| +115397| +115398| +115399| +115424| +115425| +115426| +115427| +115428| +115429| +115430| +115431| +115456| +115457| +115458| +115459| +115460| +115461| +115462| +115463| +115488| +115489| +115490| +115491| +115492| +115493| +115494| +115495| +115520| +115521| +115522| +115523| +115524| +115525| +115526| +115527| +115552| +115553| +115554| +115555| +115556| +115557| +115558| +115559| +115584| +115585| +115586| +115587| +115588| +115589| +115590| +115591| +115616| +115617| +115618| +115619| +115620| +115621| +115622| +115623| +115648| +115649| +115650| +115651| +115652| +115653| +115654| +115655| +115680| +115681| +115682| +115683| +115684| +115685| +115686| +115687| +115712| +115713| +115714| +115715| +115716| +115717| +115718| +115719| +115744| +115745| +115746| +115747| +115748| +115749| +115750| +115751| +115776| +115777| +115778| +115779| +115780| +115781| +115782| +115783| +115808| +115809| +115810| +115811| +115812| +115813| +115814| +115815| +115840| +115841| +115842| +115843| +115844| +115845| +115846| +115847| +115872| +115873| +115874| +115875| +115876| +115877| +115878| +115879| +115904| +115905| +115906| +115907| +115908| +115909| +115910| +115911| +115936| +115937| +115938| +115939| +115940| +115941| +115942| +115943| +115968| +115969| +115970| +115971| +115972| +115973| +115974| +115975| +116000| +116001| +116002| +116003| +116004| +116005| +116006| +116007| +116032| +116033| +116034| +116035| +116036| +116037| +116038| +116039| +116064| +116065| +116066| +116067| +116068| +116069| +116070| +116071| +116096| +116097| +116098| +116099| +116100| +116101| +116102| +116103| +116128| +116129| +116130| +116131| +116132| +116133| +116134| +116135| +116160| +116161| +116162| +116163| +116164| +116165| +116166| +116167| +116192| +116193| +116194| +116195| +116196| +116197| +116198| +116199| +116224| +116225| +116226| +116227| +116228| +116229| +116230| +116231| +116256| +116257| +116258| +116259| +116260| +116261| +116262| +116263| +116288| +116289| +116290| +116291| +116292| +116293| +116294| +116295| +116320| +116321| +116322| +116323| +116324| +116325| +116326| +116327| +116352| +116353| +116354| +116355| +116356| +116357| +116358| +116359| +116384| +116385| +116386| +116387| +116388| +116389| +116390| +116391| +116416| +116417| +116418| +116419| +116420| +116421| +116422| +116423| +116448| +116449| +116450| +116451| +116452| +116453| +116454| +116455| +116480| +116481| +116482| +116483| +116484| +116485| +116486| +116487| +116512| +116513| +116514| +116515| +116516| +116517| +116518| +116519| +116544| +116545| +116546| +116547| +116548| +116549| +116550| +116551| +116576| +116577| +116578| +116579| +116580| +116581| +116582| +116583| +116608| +116609| +116610| +116611| +116612| +116613| +116614| +116615| +116640| +116641| +116642| +116643| +116644| +116645| +116646| +116647| +116672| +116673| +116674| +116675| +116676| +116677| +116678| +116679| +116704| +116705| +116706| +116707| +116708| +116709| +116710| +116711| +116736| +116737| +116738| +116739| +116740| +116741| +116742| +116743| +116768| +116769| +116770| +116771| +116772| +116773| +116774| +116775| +116800| +116801| +116802| +116803| +116804| +116805| +116806| +116807| +116832| +116833| +116834| +116835| +116836| +116837| +116838| +116839| +116864| +116865| +116866| +116867| +116868| +116869| +116870| +116871| +116896| +116897| +116898| +116899| +116900| +116901| +116902| +116903| +116928| +116929| +116930| +116931| +116932| +116933| +116934| +116935| +116960| +116961| +116962| +116963| +116964| +116965| +116966| +116967| +116992| +116993| +116994| +116995| +116996| +116997| +116998| +116999| +117024| +117025| +117026| +117027| +117028| +117029| +117030| +117031| +117056| +117057| +117058| +117059| +117060| +117061| +117062| +117063| +117088| +117089| +117090| +117091| +117092| +117093| +117094| +117095| +117120| +117121| +117122| +117123| +117124| +117125| +117126| +117127| +117152| +117153| +117154| +117155| +117156| +117157| +117158| +117159| +117184| +117185| +117186| +117187| +117188| +117189| +117190| +117191| +117216| +117217| +117218| +117219| +117220| +117221| +117222| +117223| +117248| +117249| +117250| +117251| +117252| +117253| +117254| +117255| +117280| +117281| +117282| +117283| +117284| +117285| +117286| +117287| +117312| +117313| +117314| +117315| +117316| +117317| +117318| +117319| +117344| +117345| +117346| +117347| +117348| +117349| +117350| +117351| +117376| +117377| +117378| +117379| +117380| +117381| +117382| +117383| +117408| +117409| +117410| +117411| +117412| +117413| +117414| +117415| +117440| +117441| +117442| +117443| +117444| +117445| +117446| +117447| +117472| +117473| +117474| +117475| +117476| +117477| +117478| +117479| +117504| +117505| +117506| +117507| +117508| +117509| +117510| +117511| +117536| +117537| +117538| +117539| +117540| +117541| +117542| +117543| +117568| +117569| +117570| +117571| +117572| +117573| +117574| +117575| +117600| +117601| +117602| +117603| +117604| +117605| +117606| +117607| +117632| +117633| +117634| +117635| +117636| +117637| +117638| +117639| +117664| +117665| +117666| +117667| +117668| +117669| +117670| +117671| +117696| +117697| +117698| +117699| +117700| +117701| +117702| +117703| +117728| +117729| +117730| +117731| +117732| +117733| +117734| +117735| +117760| +117761| +117762| +117763| +117764| +117765| +117766| +117767| +117792| +117793| +117794| +117795| +117796| +117797| +117798| +117799| +117824| +117825| +117826| +117827| +117828| +117829| +117830| +117831| +117856| +117857| +117858| +117859| +117860| +117861| +117862| +117863| +117888| +117889| +117890| +117891| +117892| +117893| +117894| +117895| +117920| +117921| +117922| +117923| +117924| +117925| +117926| +117927| +117952| +117953| +117954| +117955| +117956| +117957| +117958| +117959| +117984| +117985| +117986| +117987| +117988| +117989| +117990| +117991| +118016| +118017| +118018| +118019| +118020| +118021| +118022| +118023| +118048| +118049| +118050| +118051| +118052| +118053| +118054| +118055| +118080| +118081| +118082| +118083| +118084| +118085| +118086| +118087| +118112| +118113| +118114| +118115| +118116| +118117| +118118| +118119| +118144| +118145| +118146| +118147| +118148| +118149| +118150| +118151| +118176| +118177| +118178| +118179| +118180| +118181| +118182| +118183| +118208| +118209| +118210| +118211| +118212| +118213| +118214| +118215| +118240| +118241| +118242| +118243| +118244| +118245| +118246| +118247| +118272| +118273| +118274| +118275| +118276| +118277| +118278| +118279| +118304| +118305| +118306| +118307| +118308| +118309| +118310| +118311| +118336| +118337| +118338| +118339| +118340| +118341| +118342| +118343| +118368| +118369| +118370| +118371| +118372| +118373| +118374| +118375| +118400| +118401| +118402| +118403| +118404| +118405| +118406| +118407| +118432| +118433| +118434| +118435| +118436| +118437| +118438| +118439| +118464| +118465| +118466| +118467| +118468| +118469| +118470| +118471| +118496| +118497| +118498| +118499| +118500| +118501| +118502| +118503| +118528| +118529| +118530| +118531| +118532| +118533| +118534| +118535| +118560| +118561| +118562| +118563| +118564| +118565| +118566| +118567| +118592| +118593| +118594| +118595| +118596| +118597| +118598| +118599| +118624| +118625| +118626| +118627| +118628| +118629| +118630| +118631| +118656| +118657| +118658| +118659| +118660| +118661| +118662| +118663| +118688| +118689| +118690| +118691| +118692| +118693| +118694| +118695| +118720| +118721| +118722| +118723| +118724| +118725| +118726| +118727| +118752| +118753| +118754| +118755| +118756| +118757| +118758| +118759| +118784| +118785| +118786| +118787| +118788| +118789| +118790| +118791| +118816| +118817| +118818| +118819| +118820| +118821| +118822| +118823| +118848| +118849| +118850| +118851| +118852| +118853| +118854| +118855| +118880| +118881| +118882| +118883| +118884| +118885| +118886| +118887| +118912| +118913| +118914| +118915| +118916| +118917| +118918| +118919| +118944| +118945| +118946| +118947| +118948| +118949| +118950| +118951| +118976| +118977| +118978| +118979| +118980| +118981| +118982| +118983| +119008| +119009| +119010| +119011| +119012| +119013| +119014| +119015| +119040| +119041| +119042| +119043| +119044| +119045| +119046| +119047| +119072| +119073| +119074| +119075| +119076| +119077| +119078| +119079| +119104| +119105| +119106| +119107| +119108| +119109| +119110| +119111| +119136| +119137| +119138| +119139| +119140| +119141| +119142| +119143| +119168| +119169| +119170| +119171| +119172| +119173| +119174| +119175| +119200| +119201| +119202| +119203| +119204| +119205| +119206| +119207| +119232| +119233| +119234| +119235| +119236| +119237| +119238| +119239| +119264| +119265| +119266| +119267| +119268| +119269| +119270| +119271| +119296| +119297| +119298| +119299| +119300| +119301| +119302| +119303| +119328| +119329| +119330| +119331| +119332| +119333| +119334| +119335| +119360| +119361| +119362| +119363| +119364| +119365| +119366| +119367| +119392| +119393| +119394| +119395| +119396| +119397| +119398| +119399| +119424| +119425| +119426| +119427| +119428| +119429| +119430| +119431| +119456| +119457| +119458| +119459| +119460| +119461| +119462| +119463| +119488| +119489| +119490| +119491| +119492| +119493| +119494| +119495| +119520| +119521| +119522| +119523| +119524| +119525| +119526| +119527| +119552| +119553| +119554| +119555| +119556| +119557| +119558| +119559| +119584| +119585| +119586| +119587| +119588| +119589| +119590| +119591| +119616| +119617| +119618| +119619| +119620| +119621| +119622| +119623| +119648| +119649| +119650| +119651| +119652| +119653| +119654| +119655| +119680| +119681| +119682| +119683| +119684| +119685| +119686| +119687| +119712| +119713| +119714| +119715| +119716| +119717| +119718| +119719| +119744| +119745| +119746| +119747| +119748| +119749| +119750| +119751| +119776| +119777| +119778| +119779| +119780| +119781| +119782| +119783| +119808| +119809| +119810| +119811| +119812| +119813| +119814| +119815| +119840| +119841| +119842| +119843| +119844| +119845| +119846| +119847| +119872| +119873| +119874| +119875| +119876| +119877| +119878| +119879| +119904| +119905| +119906| +119907| +119908| +119909| +119910| +119911| +119936| +119937| +119938| +119939| +119940| +119941| +119942| +119943| +119968| +119969| +119970| +119971| +119972| +119973| +119974| +119975| +120000| diff --git a/batch-tool/src/test/resources/tpch/delete-1g-3/delete.1 b/batch-tool/src/test/resources/tpch/delete-1g-3/delete.1 new file mode 100644 index 0000000..8a0e388 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/delete-1g-3/delete.1 @@ -0,0 +1,1500 @@ +1| +2| +3| +4| +5| +6| +7| +32| +33| +34| +35| +36| +37| +38| +39| +64| +65| +66| +67| +68| +69| +70| +71| +96| +97| +98| +99| +100| +101| +102| +103| +128| +129| +130| +131| +132| +133| +134| +135| +160| +161| +162| +163| +164| +165| +166| +167| +192| +193| +194| +195| +196| +197| +198| +199| +224| +225| +226| +227| +228| +229| +230| +231| +256| +257| +258| +259| +260| +261| +262| +263| +288| +289| +290| +291| +292| +293| +294| +295| +320| +321| +322| +323| +324| +325| +326| +327| +352| +353| +354| +355| +356| +357| +358| +359| +384| +385| +386| +387| +388| +389| +390| +391| +416| +417| +418| +419| +420| +421| +422| +423| +448| +449| +450| +451| +452| +453| +454| +455| +480| +481| +482| +483| +484| +485| +486| +487| +512| +513| +514| +515| +516| +517| +518| +519| +544| +545| +546| +547| +548| +549| +550| +551| +576| +577| +578| +579| +580| +581| +582| +583| +608| +609| +610| +611| +612| +613| +614| +615| +640| +641| +642| +643| +644| +645| +646| +647| +672| +673| +674| +675| +676| +677| +678| +679| +704| +705| +706| +707| +708| +709| +710| +711| +736| +737| +738| +739| +740| +741| +742| +743| +768| +769| +770| +771| +772| +773| +774| +775| +800| +801| +802| +803| +804| +805| +806| +807| +832| +833| +834| +835| +836| +837| +838| +839| +864| +865| +866| +867| +868| +869| +870| +871| +896| +897| +898| +899| +900| +901| +902| +903| +928| +929| +930| +931| +932| +933| +934| +935| +960| +961| +962| +963| +964| +965| +966| +967| +992| +993| +994| +995| +996| +997| +998| +999| +1024| +1025| +1026| +1027| +1028| +1029| +1030| +1031| +1056| +1057| +1058| +1059| +1060| +1061| +1062| +1063| +1088| +1089| +1090| +1091| +1092| +1093| +1094| +1095| +1120| +1121| +1122| +1123| +1124| +1125| +1126| +1127| +1152| +1153| +1154| +1155| +1156| +1157| +1158| +1159| +1184| +1185| +1186| +1187| +1188| +1189| +1190| +1191| +1216| +1217| +1218| +1219| +1220| +1221| +1222| +1223| +1248| +1249| +1250| +1251| +1252| +1253| +1254| +1255| +1280| +1281| +1282| +1283| +1284| +1285| +1286| +1287| +1312| +1313| +1314| +1315| +1316| +1317| +1318| +1319| +1344| +1345| +1346| +1347| +1348| +1349| +1350| +1351| +1376| +1377| +1378| +1379| +1380| +1381| +1382| +1383| +1408| +1409| +1410| +1411| +1412| +1413| +1414| +1415| +1440| +1441| +1442| +1443| +1444| +1445| +1446| +1447| +1472| +1473| +1474| +1475| +1476| +1477| +1478| +1479| +1504| +1505| +1506| +1507| +1508| +1509| +1510| +1511| +1536| +1537| +1538| +1539| +1540| +1541| +1542| +1543| +1568| +1569| +1570| +1571| +1572| +1573| +1574| +1575| +1600| +1601| +1602| +1603| +1604| +1605| +1606| +1607| +1632| +1633| +1634| +1635| +1636| +1637| +1638| +1639| +1664| +1665| +1666| +1667| +1668| +1669| +1670| +1671| +1696| +1697| +1698| +1699| +1700| +1701| +1702| +1703| +1728| +1729| +1730| +1731| +1732| +1733| +1734| +1735| +1760| +1761| +1762| +1763| +1764| +1765| +1766| +1767| +1792| +1793| +1794| +1795| +1796| +1797| +1798| +1799| +1824| +1825| +1826| +1827| +1828| +1829| +1830| +1831| +1856| +1857| +1858| +1859| +1860| +1861| +1862| +1863| +1888| +1889| +1890| +1891| +1892| +1893| +1894| +1895| +1920| +1921| +1922| +1923| +1924| +1925| +1926| +1927| +1952| +1953| +1954| +1955| +1956| +1957| +1958| +1959| +1984| +1985| +1986| +1987| +1988| +1989| +1990| +1991| +2016| +2017| +2018| +2019| +2020| +2021| +2022| +2023| +2048| +2049| +2050| +2051| +2052| +2053| +2054| +2055| +2080| +2081| +2082| +2083| +2084| +2085| +2086| +2087| +2112| +2113| +2114| +2115| +2116| +2117| +2118| +2119| +2144| +2145| +2146| +2147| +2148| +2149| +2150| +2151| +2176| +2177| +2178| +2179| +2180| +2181| +2182| +2183| +2208| +2209| +2210| +2211| +2212| +2213| +2214| +2215| +2240| +2241| +2242| +2243| +2244| +2245| +2246| +2247| +2272| +2273| +2274| +2275| +2276| +2277| +2278| +2279| +2304| +2305| +2306| +2307| +2308| +2309| +2310| +2311| +2336| +2337| +2338| +2339| +2340| +2341| +2342| +2343| +2368| +2369| +2370| +2371| +2372| +2373| +2374| +2375| +2400| +2401| +2402| +2403| +2404| +2405| +2406| +2407| +2432| +2433| +2434| +2435| +2436| +2437| +2438| +2439| +2464| +2465| +2466| +2467| +2468| +2469| +2470| +2471| +2496| +2497| +2498| +2499| +2500| +2501| +2502| +2503| +2528| +2529| +2530| +2531| +2532| +2533| +2534| +2535| +2560| +2561| +2562| +2563| +2564| +2565| +2566| +2567| +2592| +2593| +2594| +2595| +2596| +2597| +2598| +2599| +2624| +2625| +2626| +2627| +2628| +2629| +2630| +2631| +2656| +2657| +2658| +2659| +2660| +2661| +2662| +2663| +2688| +2689| +2690| +2691| +2692| +2693| +2694| +2695| +2720| +2721| +2722| +2723| +2724| +2725| +2726| +2727| +2752| +2753| +2754| +2755| +2756| +2757| +2758| +2759| +2784| +2785| +2786| +2787| +2788| +2789| +2790| +2791| +2816| +2817| +2818| +2819| +2820| +2821| +2822| +2823| +2848| +2849| +2850| +2851| +2852| +2853| +2854| +2855| +2880| +2881| +2882| +2883| +2884| +2885| +2886| +2887| +2912| +2913| +2914| +2915| +2916| +2917| +2918| +2919| +2944| +2945| +2946| +2947| +2948| +2949| +2950| +2951| +2976| +2977| +2978| +2979| +2980| +2981| +2982| +2983| +3008| +3009| +3010| +3011| +3012| +3013| +3014| +3015| +3040| +3041| +3042| +3043| +3044| +3045| +3046| +3047| +3072| +3073| +3074| +3075| +3076| +3077| +3078| +3079| +3104| +3105| +3106| +3107| +3108| +3109| +3110| +3111| +3136| +3137| +3138| +3139| +3140| +3141| +3142| +3143| +3168| +3169| +3170| +3171| +3172| +3173| +3174| +3175| +3200| +3201| +3202| +3203| +3204| +3205| +3206| +3207| +3232| +3233| +3234| +3235| +3236| +3237| +3238| +3239| +3264| +3265| +3266| +3267| +3268| +3269| +3270| +3271| +3296| +3297| +3298| +3299| +3300| +3301| +3302| +3303| +3328| +3329| +3330| +3331| +3332| +3333| +3334| +3335| +3360| +3361| +3362| +3363| +3364| +3365| +3366| +3367| +3392| +3393| +3394| +3395| +3396| +3397| +3398| +3399| +3424| +3425| +3426| +3427| +3428| +3429| +3430| +3431| +3456| +3457| +3458| +3459| +3460| +3461| +3462| +3463| +3488| +3489| +3490| +3491| +3492| +3493| +3494| +3495| +3520| +3521| +3522| +3523| +3524| +3525| +3526| +3527| +3552| +3553| +3554| +3555| +3556| +3557| +3558| +3559| +3584| +3585| +3586| +3587| +3588| +3589| +3590| +3591| +3616| +3617| +3618| +3619| +3620| +3621| +3622| +3623| +3648| +3649| +3650| +3651| +3652| +3653| +3654| +3655| +3680| +3681| +3682| +3683| +3684| +3685| +3686| +3687| +3712| +3713| +3714| +3715| +3716| +3717| +3718| +3719| +3744| +3745| +3746| +3747| +3748| +3749| +3750| +3751| +3776| +3777| +3778| +3779| +3780| +3781| +3782| +3783| +3808| +3809| +3810| +3811| +3812| +3813| +3814| +3815| +3840| +3841| +3842| +3843| +3844| +3845| +3846| +3847| +3872| +3873| +3874| +3875| +3876| +3877| +3878| +3879| +3904| +3905| +3906| +3907| +3908| +3909| +3910| +3911| +3936| +3937| +3938| +3939| +3940| +3941| +3942| +3943| +3968| +3969| +3970| +3971| +3972| +3973| +3974| +3975| +4000| +4001| +4002| +4003| +4004| +4005| +4006| +4007| +4032| +4033| +4034| +4035| +4036| +4037| +4038| +4039| +4064| +4065| +4066| +4067| +4068| +4069| +4070| +4071| +4096| +4097| +4098| +4099| +4100| +4101| +4102| +4103| +4128| +4129| +4130| +4131| +4132| +4133| +4134| +4135| +4160| +4161| +4162| +4163| +4164| +4165| +4166| +4167| +4192| +4193| +4194| +4195| +4196| +4197| +4198| +4199| +4224| +4225| +4226| +4227| +4228| +4229| +4230| +4231| +4256| +4257| +4258| +4259| +4260| +4261| +4262| +4263| +4288| +4289| +4290| +4291| +4292| +4293| +4294| +4295| +4320| +4321| +4322| +4323| +4324| +4325| +4326| +4327| +4352| +4353| +4354| +4355| +4356| +4357| +4358| +4359| +4384| +4385| +4386| +4387| +4388| +4389| +4390| +4391| +4416| +4417| +4418| +4419| +4420| +4421| +4422| +4423| +4448| +4449| +4450| +4451| +4452| +4453| +4454| +4455| +4480| +4481| +4482| +4483| +4484| +4485| +4486| +4487| +4512| +4513| +4514| +4515| +4516| +4517| +4518| +4519| +4544| +4545| +4546| +4547| +4548| +4549| +4550| +4551| +4576| +4577| +4578| +4579| +4580| +4581| +4582| +4583| +4608| +4609| +4610| +4611| +4612| +4613| +4614| +4615| +4640| +4641| +4642| +4643| +4644| +4645| +4646| +4647| +4672| +4673| +4674| +4675| +4676| +4677| +4678| +4679| +4704| +4705| +4706| +4707| +4708| +4709| +4710| +4711| +4736| +4737| +4738| +4739| +4740| +4741| +4742| +4743| +4768| +4769| +4770| +4771| +4772| +4773| +4774| +4775| +4800| +4801| +4802| +4803| +4804| +4805| +4806| +4807| +4832| +4833| +4834| +4835| +4836| +4837| +4838| +4839| +4864| +4865| +4866| +4867| +4868| +4869| +4870| +4871| +4896| +4897| +4898| +4899| +4900| +4901| +4902| +4903| +4928| +4929| +4930| +4931| +4932| +4933| +4934| +4935| +4960| +4961| +4962| +4963| +4964| +4965| +4966| +4967| +4992| +4993| +4994| +4995| +4996| +4997| +4998| +4999| +5024| +5025| +5026| +5027| +5028| +5029| +5030| +5031| +5056| +5057| +5058| +5059| +5060| +5061| +5062| +5063| +5088| +5089| +5090| +5091| +5092| +5093| +5094| +5095| +5120| +5121| +5122| +5123| +5124| +5125| +5126| +5127| +5152| +5153| +5154| +5155| +5156| +5157| +5158| +5159| +5184| +5185| +5186| +5187| +5188| +5189| +5190| +5191| +5216| +5217| +5218| +5219| +5220| +5221| +5222| +5223| +5248| +5249| +5250| +5251| +5252| +5253| +5254| +5255| +5280| +5281| +5282| +5283| +5284| +5285| +5286| +5287| +5312| +5313| +5314| +5315| +5316| +5317| +5318| +5319| +5344| +5345| +5346| +5347| +5348| +5349| +5350| +5351| +5376| +5377| +5378| +5379| +5380| +5381| +5382| +5383| +5408| +5409| +5410| +5411| +5412| +5413| +5414| +5415| +5440| +5441| +5442| +5443| +5444| +5445| +5446| +5447| +5472| +5473| +5474| +5475| +5476| +5477| +5478| +5479| +5504| +5505| +5506| +5507| +5508| +5509| +5510| +5511| +5536| +5537| +5538| +5539| +5540| +5541| +5542| +5543| +5568| +5569| +5570| +5571| +5572| +5573| +5574| +5575| +5600| +5601| +5602| +5603| +5604| +5605| +5606| +5607| +5632| +5633| +5634| +5635| +5636| +5637| +5638| +5639| +5664| +5665| +5666| +5667| +5668| +5669| +5670| +5671| +5696| +5697| +5698| +5699| +5700| +5701| +5702| +5703| +5728| +5729| +5730| +5731| +5732| +5733| +5734| +5735| +5760| +5761| +5762| +5763| +5764| +5765| +5766| +5767| +5792| +5793| +5794| +5795| +5796| +5797| +5798| +5799| +5824| +5825| +5826| +5827| +5828| +5829| +5830| +5831| +5856| +5857| +5858| +5859| +5860| +5861| +5862| +5863| +5888| +5889| +5890| +5891| +5892| +5893| +5894| +5895| +5920| +5921| +5922| +5923| +5924| +5925| +5926| +5927| +5952| +5953| +5954| +5955| +5956| +5957| +5958| +5959| +5984| +5985| +5986| +5987| +5988| diff --git a/batch-tool/src/test/resources/tpch/delete-1g-3/delete.2 b/batch-tool/src/test/resources/tpch/delete-1g-3/delete.2 new file mode 100644 index 0000000..228efa4 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/delete-1g-3/delete.2 @@ -0,0 +1,1500 @@ +5989| +5990| +5991| +6016| +6017| +6018| +6019| +6020| +6021| +6022| +6023| +6048| +6049| +6050| +6051| +6052| +6053| +6054| +6055| +6080| +6081| +6082| +6083| +6084| +6085| +6086| +6087| +6112| +6113| +6114| +6115| +6116| +6117| +6118| +6119| +6144| +6145| +6146| +6147| +6148| +6149| +6150| +6151| +6176| +6177| +6178| +6179| +6180| +6181| +6182| +6183| +6208| +6209| +6210| +6211| +6212| +6213| +6214| +6215| +6240| +6241| +6242| +6243| +6244| +6245| +6246| +6247| +6272| +6273| +6274| +6275| +6276| +6277| +6278| +6279| +6304| +6305| +6306| +6307| +6308| +6309| +6310| +6311| +6336| +6337| +6338| +6339| +6340| +6341| +6342| +6343| +6368| +6369| +6370| +6371| +6372| +6373| +6374| +6375| +6400| +6401| +6402| +6403| +6404| +6405| +6406| +6407| +6432| +6433| +6434| +6435| +6436| +6437| +6438| +6439| +6464| +6465| +6466| +6467| +6468| +6469| +6470| +6471| +6496| +6497| +6498| +6499| +6500| +6501| +6502| +6503| +6528| +6529| +6530| +6531| +6532| +6533| +6534| +6535| +6560| +6561| +6562| +6563| +6564| +6565| +6566| +6567| +6592| +6593| +6594| +6595| +6596| +6597| +6598| +6599| +6624| +6625| +6626| +6627| +6628| +6629| +6630| +6631| +6656| +6657| +6658| +6659| +6660| +6661| +6662| +6663| +6688| +6689| +6690| +6691| +6692| +6693| +6694| +6695| +6720| +6721| +6722| +6723| +6724| +6725| +6726| +6727| +6752| +6753| +6754| +6755| +6756| +6757| +6758| +6759| +6784| +6785| +6786| +6787| +6788| +6789| +6790| +6791| +6816| +6817| +6818| +6819| +6820| +6821| +6822| +6823| +6848| +6849| +6850| +6851| +6852| +6853| +6854| +6855| +6880| +6881| +6882| +6883| +6884| +6885| +6886| +6887| +6912| +6913| +6914| +6915| +6916| +6917| +6918| +6919| +6944| +6945| +6946| +6947| +6948| +6949| +6950| +6951| +6976| +6977| +6978| +6979| +6980| +6981| +6982| +6983| +7008| +7009| +7010| +7011| +7012| +7013| +7014| +7015| +7040| +7041| +7042| +7043| +7044| +7045| +7046| +7047| +7072| +7073| +7074| +7075| +7076| +7077| +7078| +7079| +7104| +7105| +7106| +7107| +7108| +7109| +7110| +7111| +7136| +7137| +7138| +7139| +7140| +7141| +7142| +7143| +7168| +7169| +7170| +7171| +7172| +7173| +7174| +7175| +7200| +7201| +7202| +7203| +7204| +7205| +7206| +7207| +7232| +7233| +7234| +7235| +7236| +7237| +7238| +7239| +7264| +7265| +7266| +7267| +7268| +7269| +7270| +7271| +7296| +7297| +7298| +7299| +7300| +7301| +7302| +7303| +7328| +7329| +7330| +7331| +7332| +7333| +7334| +7335| +7360| +7361| +7362| +7363| +7364| +7365| +7366| +7367| +7392| +7393| +7394| +7395| +7396| +7397| +7398| +7399| +7424| +7425| +7426| +7427| +7428| +7429| +7430| +7431| +7456| +7457| +7458| +7459| +7460| +7461| +7462| +7463| +7488| +7489| +7490| +7491| +7492| +7493| +7494| +7495| +7520| +7521| +7522| +7523| +7524| +7525| +7526| +7527| +7552| +7553| +7554| +7555| +7556| +7557| +7558| +7559| +7584| +7585| +7586| +7587| +7588| +7589| +7590| +7591| +7616| +7617| +7618| +7619| +7620| +7621| +7622| +7623| +7648| +7649| +7650| +7651| +7652| +7653| +7654| +7655| +7680| +7681| +7682| +7683| +7684| +7685| +7686| +7687| +7712| +7713| +7714| +7715| +7716| +7717| +7718| +7719| +7744| +7745| +7746| +7747| +7748| +7749| +7750| +7751| +7776| +7777| +7778| +7779| +7780| +7781| +7782| +7783| +7808| +7809| +7810| +7811| +7812| +7813| +7814| +7815| +7840| +7841| +7842| +7843| +7844| +7845| +7846| +7847| +7872| +7873| +7874| +7875| +7876| +7877| +7878| +7879| +7904| +7905| +7906| +7907| +7908| +7909| +7910| +7911| +7936| +7937| +7938| +7939| +7940| +7941| +7942| +7943| +7968| +7969| +7970| +7971| +7972| +7973| +7974| +7975| +8000| +8001| +8002| +8003| +8004| +8005| +8006| +8007| +8032| +8033| +8034| +8035| +8036| +8037| +8038| +8039| +8064| +8065| +8066| +8067| +8068| +8069| +8070| +8071| +8096| +8097| +8098| +8099| +8100| +8101| +8102| +8103| +8128| +8129| +8130| +8131| +8132| +8133| +8134| +8135| +8160| +8161| +8162| +8163| +8164| +8165| +8166| +8167| +8192| +8193| +8194| +8195| +8196| +8197| +8198| +8199| +8224| +8225| +8226| +8227| +8228| +8229| +8230| +8231| +8256| +8257| +8258| +8259| +8260| +8261| +8262| +8263| +8288| +8289| +8290| +8291| +8292| +8293| +8294| +8295| +8320| +8321| +8322| +8323| +8324| +8325| +8326| +8327| +8352| +8353| +8354| +8355| +8356| +8357| +8358| +8359| +8384| +8385| +8386| +8387| +8388| +8389| +8390| +8391| +8416| +8417| +8418| +8419| +8420| +8421| +8422| +8423| +8448| +8449| +8450| +8451| +8452| +8453| +8454| +8455| +8480| +8481| +8482| +8483| +8484| +8485| +8486| +8487| +8512| +8513| +8514| +8515| +8516| +8517| +8518| +8519| +8544| +8545| +8546| +8547| +8548| +8549| +8550| +8551| +8576| +8577| +8578| +8579| +8580| +8581| +8582| +8583| +8608| +8609| +8610| +8611| +8612| +8613| +8614| +8615| +8640| +8641| +8642| +8643| +8644| +8645| +8646| +8647| +8672| +8673| +8674| +8675| +8676| +8677| +8678| +8679| +8704| +8705| +8706| +8707| +8708| +8709| +8710| +8711| +8736| +8737| +8738| +8739| +8740| +8741| +8742| +8743| +8768| +8769| +8770| +8771| +8772| +8773| +8774| +8775| +8800| +8801| +8802| +8803| +8804| +8805| +8806| +8807| +8832| +8833| +8834| +8835| +8836| +8837| +8838| +8839| +8864| +8865| +8866| +8867| +8868| +8869| +8870| +8871| +8896| +8897| +8898| +8899| +8900| +8901| +8902| +8903| +8928| +8929| +8930| +8931| +8932| +8933| +8934| +8935| +8960| +8961| +8962| +8963| +8964| +8965| +8966| +8967| +8992| +8993| +8994| +8995| +8996| +8997| +8998| +8999| +9024| +9025| +9026| +9027| +9028| +9029| +9030| +9031| +9056| +9057| +9058| +9059| +9060| +9061| +9062| +9063| +9088| +9089| +9090| +9091| +9092| +9093| +9094| +9095| +9120| +9121| +9122| +9123| +9124| +9125| +9126| +9127| +9152| +9153| +9154| +9155| +9156| +9157| +9158| +9159| +9184| +9185| +9186| +9187| +9188| +9189| +9190| +9191| +9216| +9217| +9218| +9219| +9220| +9221| +9222| +9223| +9248| +9249| +9250| +9251| +9252| +9253| +9254| +9255| +9280| +9281| +9282| +9283| +9284| +9285| +9286| +9287| +9312| +9313| +9314| +9315| +9316| +9317| +9318| +9319| +9344| +9345| +9346| +9347| +9348| +9349| +9350| +9351| +9376| +9377| +9378| +9379| +9380| +9381| +9382| +9383| +9408| +9409| +9410| +9411| +9412| +9413| +9414| +9415| +9440| +9441| +9442| +9443| +9444| +9445| +9446| +9447| +9472| +9473| +9474| +9475| +9476| +9477| +9478| +9479| +9504| +9505| +9506| +9507| +9508| +9509| +9510| +9511| +9536| +9537| +9538| +9539| +9540| +9541| +9542| +9543| +9568| +9569| +9570| +9571| +9572| +9573| +9574| +9575| +9600| +9601| +9602| +9603| +9604| +9605| +9606| +9607| +9632| +9633| +9634| +9635| +9636| +9637| +9638| +9639| +9664| +9665| +9666| +9667| +9668| +9669| +9670| +9671| +9696| +9697| +9698| +9699| +9700| +9701| +9702| +9703| +9728| +9729| +9730| +9731| +9732| +9733| +9734| +9735| +9760| +9761| +9762| +9763| +9764| +9765| +9766| +9767| +9792| +9793| +9794| +9795| +9796| +9797| +9798| +9799| +9824| +9825| +9826| +9827| +9828| +9829| +9830| +9831| +9856| +9857| +9858| +9859| +9860| +9861| +9862| +9863| +9888| +9889| +9890| +9891| +9892| +9893| +9894| +9895| +9920| +9921| +9922| +9923| +9924| +9925| +9926| +9927| +9952| +9953| +9954| +9955| +9956| +9957| +9958| +9959| +9984| +9985| +9986| +9987| +9988| +9989| +9990| +9991| +10016| +10017| +10018| +10019| +10020| +10021| +10022| +10023| +10048| +10049| +10050| +10051| +10052| +10053| +10054| +10055| +10080| +10081| +10082| +10083| +10084| +10085| +10086| +10087| +10112| +10113| +10114| +10115| +10116| +10117| +10118| +10119| +10144| +10145| +10146| +10147| +10148| +10149| +10150| +10151| +10176| +10177| +10178| +10179| +10180| +10181| +10182| +10183| +10208| +10209| +10210| +10211| +10212| +10213| +10214| +10215| +10240| +10241| +10242| +10243| +10244| +10245| +10246| +10247| +10272| +10273| +10274| +10275| +10276| +10277| +10278| +10279| +10304| +10305| +10306| +10307| +10308| +10309| +10310| +10311| +10336| +10337| +10338| +10339| +10340| +10341| +10342| +10343| +10368| +10369| +10370| +10371| +10372| +10373| +10374| +10375| +10400| +10401| +10402| +10403| +10404| +10405| +10406| +10407| +10432| +10433| +10434| +10435| +10436| +10437| +10438| +10439| +10464| +10465| +10466| +10467| +10468| +10469| +10470| +10471| +10496| +10497| +10498| +10499| +10500| +10501| +10502| +10503| +10528| +10529| +10530| +10531| +10532| +10533| +10534| +10535| +10560| +10561| +10562| +10563| +10564| +10565| +10566| +10567| +10592| +10593| +10594| +10595| +10596| +10597| +10598| +10599| +10624| +10625| +10626| +10627| +10628| +10629| +10630| +10631| +10656| +10657| +10658| +10659| +10660| +10661| +10662| +10663| +10688| +10689| +10690| +10691| +10692| +10693| +10694| +10695| +10720| +10721| +10722| +10723| +10724| +10725| +10726| +10727| +10752| +10753| +10754| +10755| +10756| +10757| +10758| +10759| +10784| +10785| +10786| +10787| +10788| +10789| +10790| +10791| +10816| +10817| +10818| +10819| +10820| +10821| +10822| +10823| +10848| +10849| +10850| +10851| +10852| +10853| +10854| +10855| +10880| +10881| +10882| +10883| +10884| +10885| +10886| +10887| +10912| +10913| +10914| +10915| +10916| +10917| +10918| +10919| +10944| +10945| +10946| +10947| +10948| +10949| +10950| +10951| +10976| +10977| +10978| +10979| +10980| +10981| +10982| +10983| +11008| +11009| +11010| +11011| +11012| +11013| +11014| +11015| +11040| +11041| +11042| +11043| +11044| +11045| +11046| +11047| +11072| +11073| +11074| +11075| +11076| +11077| +11078| +11079| +11104| +11105| +11106| +11107| +11108| +11109| +11110| +11111| +11136| +11137| +11138| +11139| +11140| +11141| +11142| +11143| +11168| +11169| +11170| +11171| +11172| +11173| +11174| +11175| +11200| +11201| +11202| +11203| +11204| +11205| +11206| +11207| +11232| +11233| +11234| +11235| +11236| +11237| +11238| +11239| +11264| +11265| +11266| +11267| +11268| +11269| +11270| +11271| +11296| +11297| +11298| +11299| +11300| +11301| +11302| +11303| +11328| +11329| +11330| +11331| +11332| +11333| +11334| +11335| +11360| +11361| +11362| +11363| +11364| +11365| +11366| +11367| +11392| +11393| +11394| +11395| +11396| +11397| +11398| +11399| +11424| +11425| +11426| +11427| +11428| +11429| +11430| +11431| +11456| +11457| +11458| +11459| +11460| +11461| +11462| +11463| +11488| +11489| +11490| +11491| +11492| +11493| +11494| +11495| +11520| +11521| +11522| +11523| +11524| +11525| +11526| +11527| +11552| +11553| +11554| +11555| +11556| +11557| +11558| +11559| +11584| +11585| +11586| +11587| +11588| +11589| +11590| +11591| +11616| +11617| +11618| +11619| +11620| +11621| +11622| +11623| +11648| +11649| +11650| +11651| +11652| +11653| +11654| +11655| +11680| +11681| +11682| +11683| +11684| +11685| +11686| +11687| +11712| +11713| +11714| +11715| +11716| +11717| +11718| +11719| +11744| +11745| +11746| +11747| +11748| +11749| +11750| +11751| +11776| +11777| +11778| +11779| +11780| +11781| +11782| +11783| +11808| +11809| +11810| +11811| +11812| +11813| +11814| +11815| +11840| +11841| +11842| +11843| +11844| +11845| +11846| +11847| +11872| +11873| +11874| +11875| +11876| +11877| +11878| +11879| +11904| +11905| +11906| +11907| +11908| +11909| +11910| +11911| +11936| +11937| +11938| +11939| +11940| +11941| +11942| +11943| +11968| +11969| +11970| +11971| +11972| +11973| +11974| +11975| +12000| diff --git a/batch-tool/src/test/resources/tpch/delete-1g-3/delete.3 b/batch-tool/src/test/resources/tpch/delete-1g-3/delete.3 new file mode 100644 index 0000000..2145650 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/delete-1g-3/delete.3 @@ -0,0 +1,1500 @@ +12001| +12002| +12003| +12004| +12005| +12006| +12007| +12032| +12033| +12034| +12035| +12036| +12037| +12038| +12039| +12064| +12065| +12066| +12067| +12068| +12069| +12070| +12071| +12096| +12097| +12098| +12099| +12100| +12101| +12102| +12103| +12128| +12129| +12130| +12131| +12132| +12133| +12134| +12135| +12160| +12161| +12162| +12163| +12164| +12165| +12166| +12167| +12192| +12193| +12194| +12195| +12196| +12197| +12198| +12199| +12224| +12225| +12226| +12227| +12228| +12229| +12230| +12231| +12256| +12257| +12258| +12259| +12260| +12261| +12262| +12263| +12288| +12289| +12290| +12291| +12292| +12293| +12294| +12295| +12320| +12321| +12322| +12323| +12324| +12325| +12326| +12327| +12352| +12353| +12354| +12355| +12356| +12357| +12358| +12359| +12384| +12385| +12386| +12387| +12388| +12389| +12390| +12391| +12416| +12417| +12418| +12419| +12420| +12421| +12422| +12423| +12448| +12449| +12450| +12451| +12452| +12453| +12454| +12455| +12480| +12481| +12482| +12483| +12484| +12485| +12486| +12487| +12512| +12513| +12514| +12515| +12516| +12517| +12518| +12519| +12544| +12545| +12546| +12547| +12548| +12549| +12550| +12551| +12576| +12577| +12578| +12579| +12580| +12581| +12582| +12583| +12608| +12609| +12610| +12611| +12612| +12613| +12614| +12615| +12640| +12641| +12642| +12643| +12644| +12645| +12646| +12647| +12672| +12673| +12674| +12675| +12676| +12677| +12678| +12679| +12704| +12705| +12706| +12707| +12708| +12709| +12710| +12711| +12736| +12737| +12738| +12739| +12740| +12741| +12742| +12743| +12768| +12769| +12770| +12771| +12772| +12773| +12774| +12775| +12800| +12801| +12802| +12803| +12804| +12805| +12806| +12807| +12832| +12833| +12834| +12835| +12836| +12837| +12838| +12839| +12864| +12865| +12866| +12867| +12868| +12869| +12870| +12871| +12896| +12897| +12898| +12899| +12900| +12901| +12902| +12903| +12928| +12929| +12930| +12931| +12932| +12933| +12934| +12935| +12960| +12961| +12962| +12963| +12964| +12965| +12966| +12967| +12992| +12993| +12994| +12995| +12996| +12997| +12998| +12999| +13024| +13025| +13026| +13027| +13028| +13029| +13030| +13031| +13056| +13057| +13058| +13059| +13060| +13061| +13062| +13063| +13088| +13089| +13090| +13091| +13092| +13093| +13094| +13095| +13120| +13121| +13122| +13123| +13124| +13125| +13126| +13127| +13152| +13153| +13154| +13155| +13156| +13157| +13158| +13159| +13184| +13185| +13186| +13187| +13188| +13189| +13190| +13191| +13216| +13217| +13218| +13219| +13220| +13221| +13222| +13223| +13248| +13249| +13250| +13251| +13252| +13253| +13254| +13255| +13280| +13281| +13282| +13283| +13284| +13285| +13286| +13287| +13312| +13313| +13314| +13315| +13316| +13317| +13318| +13319| +13344| +13345| +13346| +13347| +13348| +13349| +13350| +13351| +13376| +13377| +13378| +13379| +13380| +13381| +13382| +13383| +13408| +13409| +13410| +13411| +13412| +13413| +13414| +13415| +13440| +13441| +13442| +13443| +13444| +13445| +13446| +13447| +13472| +13473| +13474| +13475| +13476| +13477| +13478| +13479| +13504| +13505| +13506| +13507| +13508| +13509| +13510| +13511| +13536| +13537| +13538| +13539| +13540| +13541| +13542| +13543| +13568| +13569| +13570| +13571| +13572| +13573| +13574| +13575| +13600| +13601| +13602| +13603| +13604| +13605| +13606| +13607| +13632| +13633| +13634| +13635| +13636| +13637| +13638| +13639| +13664| +13665| +13666| +13667| +13668| +13669| +13670| +13671| +13696| +13697| +13698| +13699| +13700| +13701| +13702| +13703| +13728| +13729| +13730| +13731| +13732| +13733| +13734| +13735| +13760| +13761| +13762| +13763| +13764| +13765| +13766| +13767| +13792| +13793| +13794| +13795| +13796| +13797| +13798| +13799| +13824| +13825| +13826| +13827| +13828| +13829| +13830| +13831| +13856| +13857| +13858| +13859| +13860| +13861| +13862| +13863| +13888| +13889| +13890| +13891| +13892| +13893| +13894| +13895| +13920| +13921| +13922| +13923| +13924| +13925| +13926| +13927| +13952| +13953| +13954| +13955| +13956| +13957| +13958| +13959| +13984| +13985| +13986| +13987| +13988| +13989| +13990| +13991| +14016| +14017| +14018| +14019| +14020| +14021| +14022| +14023| +14048| +14049| +14050| +14051| +14052| +14053| +14054| +14055| +14080| +14081| +14082| +14083| +14084| +14085| +14086| +14087| +14112| +14113| +14114| +14115| +14116| +14117| +14118| +14119| +14144| +14145| +14146| +14147| +14148| +14149| +14150| +14151| +14176| +14177| +14178| +14179| +14180| +14181| +14182| +14183| +14208| +14209| +14210| +14211| +14212| +14213| +14214| +14215| +14240| +14241| +14242| +14243| +14244| +14245| +14246| +14247| +14272| +14273| +14274| +14275| +14276| +14277| +14278| +14279| +14304| +14305| +14306| +14307| +14308| +14309| +14310| +14311| +14336| +14337| +14338| +14339| +14340| +14341| +14342| +14343| +14368| +14369| +14370| +14371| +14372| +14373| +14374| +14375| +14400| +14401| +14402| +14403| +14404| +14405| +14406| +14407| +14432| +14433| +14434| +14435| +14436| +14437| +14438| +14439| +14464| +14465| +14466| +14467| +14468| +14469| +14470| +14471| +14496| +14497| +14498| +14499| +14500| +14501| +14502| +14503| +14528| +14529| +14530| +14531| +14532| +14533| +14534| +14535| +14560| +14561| +14562| +14563| +14564| +14565| +14566| +14567| +14592| +14593| +14594| +14595| +14596| +14597| +14598| +14599| +14624| +14625| +14626| +14627| +14628| +14629| +14630| +14631| +14656| +14657| +14658| +14659| +14660| +14661| +14662| +14663| +14688| +14689| +14690| +14691| +14692| +14693| +14694| +14695| +14720| +14721| +14722| +14723| +14724| +14725| +14726| +14727| +14752| +14753| +14754| +14755| +14756| +14757| +14758| +14759| +14784| +14785| +14786| +14787| +14788| +14789| +14790| +14791| +14816| +14817| +14818| +14819| +14820| +14821| +14822| +14823| +14848| +14849| +14850| +14851| +14852| +14853| +14854| +14855| +14880| +14881| +14882| +14883| +14884| +14885| +14886| +14887| +14912| +14913| +14914| +14915| +14916| +14917| +14918| +14919| +14944| +14945| +14946| +14947| +14948| +14949| +14950| +14951| +14976| +14977| +14978| +14979| +14980| +14981| +14982| +14983| +15008| +15009| +15010| +15011| +15012| +15013| +15014| +15015| +15040| +15041| +15042| +15043| +15044| +15045| +15046| +15047| +15072| +15073| +15074| +15075| +15076| +15077| +15078| +15079| +15104| +15105| +15106| +15107| +15108| +15109| +15110| +15111| +15136| +15137| +15138| +15139| +15140| +15141| +15142| +15143| +15168| +15169| +15170| +15171| +15172| +15173| +15174| +15175| +15200| +15201| +15202| +15203| +15204| +15205| +15206| +15207| +15232| +15233| +15234| +15235| +15236| +15237| +15238| +15239| +15264| +15265| +15266| +15267| +15268| +15269| +15270| +15271| +15296| +15297| +15298| +15299| +15300| +15301| +15302| +15303| +15328| +15329| +15330| +15331| +15332| +15333| +15334| +15335| +15360| +15361| +15362| +15363| +15364| +15365| +15366| +15367| +15392| +15393| +15394| +15395| +15396| +15397| +15398| +15399| +15424| +15425| +15426| +15427| +15428| +15429| +15430| +15431| +15456| +15457| +15458| +15459| +15460| +15461| +15462| +15463| +15488| +15489| +15490| +15491| +15492| +15493| +15494| +15495| +15520| +15521| +15522| +15523| +15524| +15525| +15526| +15527| +15552| +15553| +15554| +15555| +15556| +15557| +15558| +15559| +15584| +15585| +15586| +15587| +15588| +15589| +15590| +15591| +15616| +15617| +15618| +15619| +15620| +15621| +15622| +15623| +15648| +15649| +15650| +15651| +15652| +15653| +15654| +15655| +15680| +15681| +15682| +15683| +15684| +15685| +15686| +15687| +15712| +15713| +15714| +15715| +15716| +15717| +15718| +15719| +15744| +15745| +15746| +15747| +15748| +15749| +15750| +15751| +15776| +15777| +15778| +15779| +15780| +15781| +15782| +15783| +15808| +15809| +15810| +15811| +15812| +15813| +15814| +15815| +15840| +15841| +15842| +15843| +15844| +15845| +15846| +15847| +15872| +15873| +15874| +15875| +15876| +15877| +15878| +15879| +15904| +15905| +15906| +15907| +15908| +15909| +15910| +15911| +15936| +15937| +15938| +15939| +15940| +15941| +15942| +15943| +15968| +15969| +15970| +15971| +15972| +15973| +15974| +15975| +16000| +16001| +16002| +16003| +16004| +16005| +16006| +16007| +16032| +16033| +16034| +16035| +16036| +16037| +16038| +16039| +16064| +16065| +16066| +16067| +16068| +16069| +16070| +16071| +16096| +16097| +16098| +16099| +16100| +16101| +16102| +16103| +16128| +16129| +16130| +16131| +16132| +16133| +16134| +16135| +16160| +16161| +16162| +16163| +16164| +16165| +16166| +16167| +16192| +16193| +16194| +16195| +16196| +16197| +16198| +16199| +16224| +16225| +16226| +16227| +16228| +16229| +16230| +16231| +16256| +16257| +16258| +16259| +16260| +16261| +16262| +16263| +16288| +16289| +16290| +16291| +16292| +16293| +16294| +16295| +16320| +16321| +16322| +16323| +16324| +16325| +16326| +16327| +16352| +16353| +16354| +16355| +16356| +16357| +16358| +16359| +16384| +16385| +16386| +16387| +16388| +16389| +16390| +16391| +16416| +16417| +16418| +16419| +16420| +16421| +16422| +16423| +16448| +16449| +16450| +16451| +16452| +16453| +16454| +16455| +16480| +16481| +16482| +16483| +16484| +16485| +16486| +16487| +16512| +16513| +16514| +16515| +16516| +16517| +16518| +16519| +16544| +16545| +16546| +16547| +16548| +16549| +16550| +16551| +16576| +16577| +16578| +16579| +16580| +16581| +16582| +16583| +16608| +16609| +16610| +16611| +16612| +16613| +16614| +16615| +16640| +16641| +16642| +16643| +16644| +16645| +16646| +16647| +16672| +16673| +16674| +16675| +16676| +16677| +16678| +16679| +16704| +16705| +16706| +16707| +16708| +16709| +16710| +16711| +16736| +16737| +16738| +16739| +16740| +16741| +16742| +16743| +16768| +16769| +16770| +16771| +16772| +16773| +16774| +16775| +16800| +16801| +16802| +16803| +16804| +16805| +16806| +16807| +16832| +16833| +16834| +16835| +16836| +16837| +16838| +16839| +16864| +16865| +16866| +16867| +16868| +16869| +16870| +16871| +16896| +16897| +16898| +16899| +16900| +16901| +16902| +16903| +16928| +16929| +16930| +16931| +16932| +16933| +16934| +16935| +16960| +16961| +16962| +16963| +16964| +16965| +16966| +16967| +16992| +16993| +16994| +16995| +16996| +16997| +16998| +16999| +17024| +17025| +17026| +17027| +17028| +17029| +17030| +17031| +17056| +17057| +17058| +17059| +17060| +17061| +17062| +17063| +17088| +17089| +17090| +17091| +17092| +17093| +17094| +17095| +17120| +17121| +17122| +17123| +17124| +17125| +17126| +17127| +17152| +17153| +17154| +17155| +17156| +17157| +17158| +17159| +17184| +17185| +17186| +17187| +17188| +17189| +17190| +17191| +17216| +17217| +17218| +17219| +17220| +17221| +17222| +17223| +17248| +17249| +17250| +17251| +17252| +17253| +17254| +17255| +17280| +17281| +17282| +17283| +17284| +17285| +17286| +17287| +17312| +17313| +17314| +17315| +17316| +17317| +17318| +17319| +17344| +17345| +17346| +17347| +17348| +17349| +17350| +17351| +17376| +17377| +17378| +17379| +17380| +17381| +17382| +17383| +17408| +17409| +17410| +17411| +17412| +17413| +17414| +17415| +17440| +17441| +17442| +17443| +17444| +17445| +17446| +17447| +17472| +17473| +17474| +17475| +17476| +17477| +17478| +17479| +17504| +17505| +17506| +17507| +17508| +17509| +17510| +17511| +17536| +17537| +17538| +17539| +17540| +17541| +17542| +17543| +17568| +17569| +17570| +17571| +17572| +17573| +17574| +17575| +17600| +17601| +17602| +17603| +17604| +17605| +17606| +17607| +17632| +17633| +17634| +17635| +17636| +17637| +17638| +17639| +17664| +17665| +17666| +17667| +17668| +17669| +17670| +17671| +17696| +17697| +17698| +17699| +17700| +17701| +17702| +17703| +17728| +17729| +17730| +17731| +17732| +17733| +17734| +17735| +17760| +17761| +17762| +17763| +17764| +17765| +17766| +17767| +17792| +17793| +17794| +17795| +17796| +17797| +17798| +17799| +17824| +17825| +17826| +17827| +17828| +17829| +17830| +17831| +17856| +17857| +17858| +17859| +17860| +17861| +17862| +17863| +17888| +17889| +17890| +17891| +17892| +17893| +17894| +17895| +17920| +17921| +17922| +17923| +17924| +17925| +17926| +17927| +17952| +17953| +17954| +17955| +17956| +17957| +17958| +17959| +17984| +17985| +17986| +17987| +17988| diff --git a/batch-tool/src/test/resources/tpch/insert-1g-2/lineitem.tbl.u1 b/batch-tool/src/test/resources/tpch/insert-1g-2/lineitem.tbl.u1 new file mode 100644 index 0000000..5c8c37e --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-1g-2/lineitem.tbl.u1 @@ -0,0 +1,5822 @@ +9|127857|5394|1|45|84818.25|0.09|0.05|N|O|1998-10-20|1998-09-10|1998-11-15|COLLECT COD|SHIP|es haggle blithely above the silent ac| +9|92115|9643|2|47|52034.17|0.08|0.02|N|O|1998-09-08|1998-08-31|1998-09-15|COLLECT COD|AIR|counts. furio| +10|183288|843|1|13|17826.64|0.01|0.07|N|O|1996-10-29|1996-11-29|1996-10-31|DELIVER IN PERSON|AIR|ackages haggle slyly. bold, exp| +10|117623|135|2|39|63984.18|0.03|0.02|N|O|1997-01-06|1996-11-26|1997-02-03|TAKE BACK RETURN|TRUCK| final platel| +10|83486|1011|3|34|49962.32|0.04|0.00|N|O|1996-10-13|1996-11-14|1996-11-04|COLLECT COD|REG AIR|ar instructio| +11|82555|5064|1|21|32288.55|0.04|0.08|A|F|1993-06-26|1993-08-23|1993-07-07|NONE|RAIL|cajole slyly ironic deposits. fluffil| +11|87018|9527|2|30|30150.30|0.01|0.03|A|F|1993-10-08|1993-08-28|1993-10-28|COLLECT COD|TRUCK|have to cajole furiously: special, fina| +11|101742|6763|3|46|80212.04|0.09|0.08|R|F|1993-09-20|1993-08-30|1993-09-26|NONE|AIR|g packages| +11|169644|2161|4|32|54836.48|0.04|0.03|R|F|1993-08-07|1993-08-28|1993-08-11|COLLECT COD|FOB|ven excuses cajole ideas| +11|198586|1106|5|23|38745.34|0.10|0.04|A|F|1993-10-09|1993-07-15|1993-11-08|COLLECT COD|SHIP| express pinto b| +11|29905|4910|6|34|62386.60|0.00|0.00|R|F|1993-08-27|1993-08-19|1993-09-01|NONE|TRUCK| pinto beans. blithely final accounts hagg| +12|125294|7807|1|45|59368.05|0.04|0.04|N|O|1997-01-16|1996-12-29|1997-01-28|NONE|AIR|ter the quickly even deposits. blithel| +12|8865|8866|2|43|76275.98|0.02|0.06|N|O|1996-12-01|1997-01-31|1996-12-18|TAKE BACK RETURN|SHIP|ep. carefully ironic account| +12|188770|3807|3|47|87362.19|0.03|0.04|N|O|1997-01-22|1997-01-27|1997-02-10|COLLECT COD|AIR|l pinto beans| +12|50885|5896|4|15|27538.20|0.01|0.05|N|O|1997-02-21|1997-02-09|1997-03-08|DELIVER IN PERSON|TRUCK|arefully slyly silent t| +12|13708|1212|5|37|60002.90|0.02|0.04|N|O|1996-11-30|1997-01-17|1996-12-16|COLLECT COD|AIR|un fluffily ent| +12|187676|7677|6|24|42328.08|0.00|0.01|N|O|1997-02-22|1997-02-18|1997-03-10|NONE|FOB|ously final | +12|70403|404|7|9|12360.60|0.00|0.02|N|O|1996-12-12|1997-01-23|1996-12-13|NONE|MAIL|carefully after the sil| +13|56430|1441|1|15|20796.45|0.04|0.00|N|O|1996-06-25|1996-06-27|1996-07-25|NONE|MAIL|ole. furiously regula| +13|6889|4390|2|7|12571.16|0.03|0.05|N|O|1996-06-13|1996-06-07|1996-07-09|NONE|RAIL|y final dolphins unwind careful| +13|175317|2869|3|19|26453.89|0.07|0.04|N|O|1996-04-21|1996-06-21|1996-04-27|NONE|SHIP| gifts. blithely special| +14|45209|218|1|25|28855.00|0.00|0.08|A|F|1994-03-20|1994-02-08|1994-04-11|TAKE BACK RETURN|TRUCK|ly at the fluffily ev| +14|19724|4727|2|40|65748.80|0.04|0.00|A|F|1994-02-26|1994-01-29|1994-03-11|NONE|SHIP|lithely ironic packag| +14|100474|2985|3|1|1474.47|0.03|0.07|R|F|1994-04-03|1994-02-02|1994-04-11|NONE|SHIP|egular foxes| +15|114768|9791|1|24|42786.24|0.08|0.03|N|O|1996-11-11|1996-08-13|1996-11-20|DELIVER IN PERSON|FOB|eans impress carefully about the carefu| +15|105019|40|2|22|22528.22|0.00|0.07|N|O|1996-08-03|1996-08-20|1996-08-13|NONE|RAIL|hely pending| +40|15926|5927|1|42|77360.64|0.02|0.07|N|O|1996-10-22|1996-11-26|1996-10-30|NONE|FOB|uests. even deposits according to th| +40|52949|5455|2|21|39940.74|0.02|0.03|N|O|1997-01-04|1996-11-04|1997-01-11|COLLECT COD|TRUCK|s. even dependencies after the instr| +41|97714|5242|1|35|59909.85|0.08|0.01|A|F|1993-10-19|1993-12-19|1993-11-07|COLLECT COD|REG AIR|g to the regular a| +41|76989|4511|2|32|62911.36|0.00|0.05|R|F|1993-10-12|1993-11-25|1993-11-09|DELIVER IN PERSON|SHIP|l pinto beans. instructions are quickly.| +41|149911|4940|3|31|60788.21|0.09|0.03|R|F|1993-12-04|1993-10-25|1993-12-10|NONE|TRUCK|ular theodolites sleep bl| +41|138617|8618|4|33|54635.13|0.05|0.05|R|F|1993-09-29|1993-10-31|1993-10-01|TAKE BACK RETURN|MAIL|o the carefully slow requests. dogged| +42|154523|4524|1|4|6310.08|0.00|0.04|A|F|1992-06-14|1992-04-28|1992-07-04|COLLECT COD|SHIP|ymptotes. blithely regular theo| +42|60952|8471|2|22|42084.90|0.00|0.01|R|F|1992-05-10|1992-06-14|1992-05-15|NONE|TRUCK| packages. furiously final foxes haggle. | +42|14224|4225|3|49|55772.78|0.03|0.03|A|F|1992-04-25|1992-04-29|1992-04-30|COLLECT COD|TRUCK| slyly final forges nag quickly. pinto b| +42|49351|1856|4|44|57215.40|0.04|0.00|R|F|1992-07-11|1992-05-07|1992-07-29|NONE|TRUCK|y final requests ea| +43|46871|1880|1|1|1817.87|0.02|0.05|A|F|1992-11-25|1992-10-24|1992-11-28|COLLECT COD|MAIL|ven foxes. blithely final deposits ought| +43|150410|411|2|34|49653.94|0.09|0.03|R|F|1992-10-07|1992-11-14|1992-10-28|DELIVER IN PERSON|TRUCK|nding asymptotes use. carefully unusual ide| +43|132805|5319|3|30|55134.00|0.01|0.02|A|F|1992-11-08|1992-11-17|1992-12-03|TAKE BACK RETURN|REG AIR|press asymp| +43|46445|6446|4|1|1391.44|0.02|0.07|A|F|1992-11-24|1992-11-11|1992-12-07|TAKE BACK RETURN|FOB|es cajole across the final, regular reques| +43|194440|6960|5|7|10741.08|0.05|0.00|R|F|1992-12-13|1992-11-17|1993-01-10|NONE|FOB|ly carefully final deposits. even t| +43|140056|5085|6|8|8768.40|0.08|0.00|R|F|1992-12-04|1992-10-18|1992-12-24|TAKE BACK RETURN|TRUCK|urts use f| +43|120544|3057|7|26|40678.04|0.08|0.07|A|F|1992-11-14|1992-11-26|1992-11-29|TAKE BACK RETURN|SHIP|nic deposits kindle.| +44|174167|6685|1|2|2482.32|0.01|0.02|N|O|1995-10-31|1995-11-09|1995-11-20|NONE|MAIL|ly bold platelets. fluffily special dugout| +44|11434|6437|2|12|16145.16|0.00|0.05|N|O|1995-10-28|1995-10-07|1995-11-09|DELIVER IN PERSON|SHIP|symptotes wake against t| +44|159158|9159|3|20|24343.00|0.03|0.04|N|O|1995-11-11|1995-11-01|1995-12-11|NONE|SHIP|eve around | +45|94314|1842|1|42|54949.02|0.08|0.03|N|O|1996-12-28|1996-11-07|1997-01-25|COLLECT COD|SHIP| fluffily along the r| +45|119096|9097|2|9|10035.81|0.07|0.03|N|O|1996-11-22|1996-11-04|1996-12-04|COLLECT COD|FOB|ithely quickly unusual | +46|186969|9488|1|13|26727.48|0.01|0.01|N|O|1998-03-03|1998-04-19|1998-03-27|NONE|FOB|gular tithes are slyly acc| +46|176034|6035|2|47|52171.41|0.03|0.07|N|O|1998-04-13|1998-05-10|1998-05-11|DELIVER IN PERSON|AIR|furiously regular pinto beans. carefull| +46|198920|1440|3|43|86813.56|0.07|0.03|N|O|1998-03-17|1998-04-15|1998-04-04|DELIVER IN PERSON|REG AIR|sly bold packag| +46|43597|8606|4|3|4621.77|0.08|0.06|N|O|1998-05-02|1998-04-09|1998-05-11|NONE|FOB|endencies wake a| +47|46607|1616|1|8|12428.80|0.03|0.00|N|O|1996-03-26|1996-03-03|1996-04-11|COLLECT COD|SHIP| foxes mold according to the furiously f| +72|135140|167|1|16|18802.24|0.06|0.02|A|F|1992-03-03|1992-04-10|1992-03-26|COLLECT COD|FOB|ng the permanent ideas. bold theodolite| +72|96396|1415|2|4|5569.56|0.03|0.04|A|F|1992-06-02|1992-04-02|1992-06-12|TAKE BACK RETURN|FOB|c accounts. furiously regul| +72|119301|9302|3|32|42249.60|0.01|0.05|R|F|1992-06-06|1992-04-21|1992-06-11|DELIVER IN PERSON|AIR|ructions. quickly pending accounts cajo| +72|88707|1216|4|16|27131.20|0.02|0.04|R|F|1992-02-24|1992-04-25|1992-03-10|NONE|TRUCK|ironic accounts above the bold request| +73|171715|4233|1|44|78615.24|0.05|0.01|N|O|1998-06-13|1998-07-30|1998-06-20|TAKE BACK RETURN|MAIL|inal pinto beans. fluffy, unu| +74|96564|6565|1|37|57740.72|0.07|0.03|R|F|1995-02-06|1994-12-24|1995-02-25|COLLECT COD|AIR|totes? bold acc| +74|139574|7114|2|34|54861.38|0.04|0.06|R|F|1994-11-30|1995-01-07|1994-12-22|DELIVER IN PERSON|AIR|iously even requests. carefu| +74|14661|4662|3|36|56723.76|0.06|0.07|A|F|1994-11-30|1995-01-25|1994-12-03|TAKE BACK RETURN|SHIP|s use. regular theodolites engag| +74|192843|401|4|21|40652.64|0.07|0.08|R|F|1995-01-31|1995-01-11|1995-02-25|NONE|REG AIR|lar pinto beans cajole | +75|185055|5056|1|8|9120.40|0.04|0.05|R|F|1992-11-01|1992-11-10|1992-11-16|COLLECT COD|AIR|g requests af| +75|17693|195|2|11|17717.59|0.07|0.08|R|F|1992-11-16|1992-10-18|1992-11-28|DELIVER IN PERSON|RAIL|deposits about the fluffily| +76|179378|9379|1|48|69953.76|0.05|0.02|N|O|1998-10-05|1998-08-15|1998-10-25|NONE|SHIP|ct special packages. slyly eve| +76|192849|2850|2|13|25243.92|0.06|0.07|N|O|1998-09-15|1998-08-03|1998-09-22|NONE|TRUCK|structions sleep iro| +76|11952|6955|3|36|67102.20|0.09|0.08|N|O|1998-10-09|1998-07-29|1998-10-20|DELIVER IN PERSON|RAIL|nto beans. slyly e| +76|69049|6568|4|26|26469.04|0.07|0.06|N|O|1998-07-13|1998-08-28|1998-07-18|COLLECT COD|FOB|de of the carefully ironic fo| +77|59516|2022|1|49|72299.99|0.04|0.07|N|O|1998-08-21|1998-08-04|1998-08-27|TAKE BACK RETURN|MAIL|nstructions| +77|70770|771|2|29|50482.33|0.03|0.06|N|O|1998-07-20|1998-07-14|1998-08-15|NONE|TRUCK|luffily. slyly ironic in| +77|20852|3355|3|29|51412.65|0.03|0.02|N|O|1998-06-22|1998-07-07|1998-07-13|DELIVER IN PERSON|REG AIR|ial asymptotes use furiousl| +77|56337|6338|4|23|29746.59|0.04|0.08|N|O|1998-07-05|1998-07-22|1998-07-18|TAKE BACK RETURN|FOB|t the silently ironic platelets wake | +77|45012|7517|5|1|957.01|0.05|0.00|N|O|1998-07-17|1998-07-23|1998-08-11|DELIVER IN PERSON|RAIL|longside of the bold| +77|105088|7599|6|27|29513.16|0.06|0.05|N|O|1998-06-22|1998-07-08|1998-07-09|DELIVER IN PERSON|REG AIR|arefully express foxes. | +77|5980|981|7|33|62237.34|0.09|0.07|N|O|1998-07-12|1998-08-23|1998-07-14|TAKE BACK RETURN|SHIP|ges among the ironic foxes wake regul| +78|91292|6311|1|41|52614.89|0.05|0.04|R|F|1992-08-11|1992-06-07|1992-08-18|TAKE BACK RETURN|FOB|sual, bold requests boost blithely. b| +78|143390|8419|2|44|63069.16|0.00|0.03|R|F|1992-08-21|1992-06-29|1992-08-27|TAKE BACK RETURN|RAIL|he final requests cajole alongs| +78|145948|5949|3|36|71781.84|0.07|0.02|A|F|1992-08-03|1992-06-09|1992-08-04|COLLECT COD|TRUCK|en packages after the slyly regular reque| +78|139330|1844|4|48|65727.84|0.10|0.05|R|F|1992-06-18|1992-07-23|1992-06-22|COLLECT COD|FOB|lly special asympto| +78|103638|6149|5|4|6566.52|0.00|0.05|R|F|1992-05-16|1992-07-05|1992-06-09|COLLECT COD|REG AIR|ccounts use quickly express, regular pl| +78|33947|6451|6|23|43261.62|0.05|0.03|A|F|1992-05-19|1992-06-11|1992-05-27|TAKE BACK RETURN|TRUCK|ully. permanently final platelets wake. sl| +79|5506|5507|1|16|22584.00|0.03|0.01|N|O|1995-07-04|1995-09-09|1995-07-05|COLLECT COD|TRUCK|s cajole carefully| +79|131056|8596|2|36|39133.80|0.01|0.05|N|O|1995-09-09|1995-09-10|1995-09-14|TAKE BACK RETURN|FOB|se among the quickly ironi| +79|53996|6502|3|44|85799.56|0.00|0.07|N|O|1995-08-08|1995-08-12|1995-08-26|NONE|MAIL| engage fin| +79|96959|4487|4|16|31295.20|0.03|0.08|N|O|1995-09-19|1995-08-29|1995-10-05|COLLECT COD|RAIL|ally regular accounts thrash depos| +79|180360|5397|5|28|40330.08|0.08|0.06|N|O|1995-07-01|1995-09-07|1995-07-21|TAKE BACK RETURN|FOB|counts. pending decoys | +79|95737|5738|6|36|62378.28|0.01|0.00|N|O|1995-07-23|1995-08-04|1995-08-13|TAKE BACK RETURN|RAIL|ccounts breach express, spe| +104|48289|8290|1|39|48253.92|0.02|0.04|N|O|1998-02-23|1998-03-20|1998-03-23|TAKE BACK RETURN|TRUCK|ss the furiously expres| +104|179202|6754|2|46|58935.20|0.06|0.08|N|O|1998-05-30|1998-03-11|1998-05-31|TAKE BACK RETURN|AIR|s solve carefully. quickly dogged acc| +104|31916|1917|3|31|57285.21|0.08|0.05|N|O|1998-02-13|1998-03-25|1998-02-17|TAKE BACK RETURN|TRUCK|c, bold instructions detect| +104|9947|2448|4|32|59422.08|0.02|0.07|N|O|1998-05-02|1998-03-12|1998-05-10|NONE|RAIL|ld deposits. c| +105|185672|8191|1|33|58003.11|0.05|0.03|A|F|1994-01-05|1993-10-30|1994-01-27|COLLECT COD|SHIP| are about the| +105|173361|3362|2|19|27252.84|0.02|0.07|R|F|1993-12-08|1993-11-01|1993-12-28|NONE|REG AIR| foxes beyond the quickly ironic requests | +105|75939|8447|3|48|91916.64|0.07|0.00|A|F|1993-11-27|1993-11-14|1993-12-20|NONE|TRUCK|are carefully | +105|106084|6085|4|22|23981.76|0.08|0.00|A|F|1993-10-28|1993-12-17|1993-11-01|NONE|TRUCK|usly regular instructions snooze sil| +106|114709|7221|1|18|31026.60|0.09|0.01|N|O|1998-02-09|1998-01-22|1998-02-15|DELIVER IN PERSON|FOB|lar foxes. caref| +106|100775|8306|2|36|63927.72|0.08|0.03|N|O|1997-11-30|1998-01-24|1997-12-05|COLLECT COD|MAIL| carefully special foxes.| +106|120619|3132|3|6|9837.66|0.10|0.00|N|O|1997-12-07|1998-01-30|1998-01-05|TAKE BACK RETURN|FOB|rs. blithely silent deposits along the fu| +106|37144|9648|4|5|5405.70|0.02|0.06|N|O|1998-01-23|1997-12-27|1998-02-20|NONE|REG AIR|lites. ironic warthogs hagg| +106|69380|4393|5|34|45878.92|0.05|0.03|N|O|1997-11-27|1998-01-28|1997-12-23|DELIVER IN PERSON|REG AIR|ironic foxes cajole qui| +106|65785|8292|6|28|49021.84|0.05|0.06|N|O|1998-02-20|1998-01-13|1998-03-16|TAKE BACK RETURN|RAIL|nal requests. slyly special fox| +107|67178|2191|1|47|53822.99|0.04|0.03|A|F|1994-03-25|1994-02-15|1994-04-10|NONE|TRUCK| thin accounts doze fluff| +107|55259|7765|2|6|7285.50|0.03|0.03|A|F|1994-04-11|1994-03-11|1994-05-07|COLLECT COD|AIR|y regular notorn| +107|121689|9226|3|25|42767.00|0.03|0.02|A|F|1994-02-04|1994-02-22|1994-02-06|COLLECT COD|REG AIR|ly final theodol| +107|16452|3956|4|25|34211.25|0.01|0.07|A|F|1994-01-23|1994-02-23|1994-02-14|COLLECT COD|MAIL|s wake carefully b| +108|163523|8556|1|26|41249.52|0.06|0.03|N|O|1996-09-29|1996-12-08|1996-10-15|TAKE BACK RETURN|RAIL|cording to t| +108|125904|8417|2|5|9649.50|0.07|0.01|N|O|1996-09-14|1996-11-22|1996-09-28|NONE|MAIL|egrate furiously unusual realms. fur| +108|57723|5239|3|36|60505.92|0.05|0.07|N|O|1996-12-05|1996-12-01|1996-12-25|NONE|SHIP|ickly even| +108|136939|4479|4|48|94844.64|0.10|0.08|N|O|1996-11-25|1996-11-28|1996-12-17|NONE|REG AIR|final asymptotes. fluffily regula| +108|132854|5368|5|50|94342.50|0.05|0.07|N|O|1996-12-04|1996-11-06|1996-12-14|DELIVER IN PERSON|FOB|fully final instru| +108|62316|2317|6|1|1278.31|0.04|0.06|N|O|1996-10-26|1996-10-25|1996-11-25|DELIVER IN PERSON|AIR|s after the | +109|74716|7224|1|26|43958.46|0.08|0.04|A|F|1993-12-16|1993-12-23|1993-12-26|TAKE BACK RETURN|TRUCK| accounts ru| +109|145657|8172|2|42|71511.30|0.08|0.08|R|F|1993-11-22|1993-12-02|1993-11-28|COLLECT COD|FOB|e slyly final foxes| +109|40705|706|3|29|47725.30|0.04|0.03|R|F|1994-01-10|1994-01-02|1994-01-15|TAKE BACK RETURN|MAIL|gside of the carefully final de| +109|118355|3378|4|23|31587.05|0.06|0.07|A|F|1993-11-27|1993-12-29|1993-12-02|TAKE BACK RETURN|MAIL|s. pending, busy packages affix carefully | +109|191037|6076|5|35|39481.05|0.00|0.00|R|F|1994-02-11|1993-12-23|1994-02-14|TAKE BACK RETURN|TRUCK|nusual ideas believe busy| +109|155553|3099|6|21|33779.55|0.09|0.08|R|F|1993-12-21|1993-12-19|1993-12-22|TAKE BACK RETURN|RAIL|jole blithely according to the s| +110|173656|1208|1|8|13837.20|0.00|0.08|N|O|1998-08-13|1998-09-16|1998-09-03|DELIVER IN PERSON|RAIL|its nag slyly. final requests run car| +110|26536|4043|2|23|33638.19|0.08|0.03|N|O|1998-08-05|1998-08-22|1998-08-09|COLLECT COD|SHIP|posits. depths about the final, r| +110|181203|1204|3|28|35957.60|0.01|0.00|N|O|1998-09-20|1998-09-01|1998-10-12|NONE|REG AIR|deposits nag. f| +110|64952|9965|4|12|23003.40|0.00|0.02|N|O|1998-07-09|1998-08-05|1998-08-02|DELIVER IN PERSON|AIR|ly unusual pinto beans. blith| +110|48098|5611|5|50|52304.50|0.06|0.07|N|O|1998-07-07|1998-09-03|1998-07-16|COLLECT COD|MAIL| quickly regular dept| +110|179193|9194|6|7|8905.33|0.09|0.08|N|O|1998-07-11|1998-08-17|1998-08-10|TAKE BACK RETURN|AIR| even theodolites. furi| +110|92482|10|7|13|19168.24|0.03|0.03|N|O|1998-10-07|1998-08-25|1998-10-12|COLLECT COD|AIR| the regular theodolites? furiously| +111|132713|5227|1|12|20948.52|0.09|0.00|R|F|1994-09-27|1994-10-10|1994-10-21|NONE|MAIL|ular platelets use slyly bo| +111|105414|435|2|16|22710.56|0.00|0.05|R|F|1994-09-09|1994-11-21|1994-09-28|COLLECT COD|FOB|iously busy dependencies sleep furiou| +111|88264|5789|3|3|3756.78|0.08|0.04|R|F|1994-10-16|1994-11-15|1994-11-07|NONE|TRUCK|ully unusual packages. b| +111|38663|3670|4|33|52854.78|0.04|0.07|A|F|1994-10-27|1994-11-07|1994-11-20|DELIVER IN PERSON|AIR|are fluffily along the special idea| +111|8808|1309|5|12|20601.60|0.00|0.07|R|F|1994-12-13|1994-11-07|1995-01-07|TAKE BACK RETURN|SHIP|ole blithely blithely silent accoun| +136|161318|8867|1|24|33103.44|0.07|0.06|R|F|1992-06-29|1992-07-21|1992-07-15|NONE|TRUCK| instructions detect blit| +136|60706|5719|2|28|46667.60|0.08|0.00|R|F|1992-09-12|1992-07-11|1992-10-09|COLLECT COD|SHIP|iously ironic ideas detect furiously blithe| +136|74727|7235|3|2|3403.44|0.05|0.05|A|F|1992-09-14|1992-07-30|1992-09-23|COLLECT COD|RAIL|nding packages sleep blithely around t| +136|129675|4700|4|38|64777.46|0.09|0.07|A|F|1992-08-19|1992-07-21|1992-09-16|NONE|MAIL|busily even accounts cajole special foxe| +136|36102|1109|5|24|24914.40|0.06|0.03|R|F|1992-08-11|1992-08-04|1992-08-27|TAKE BACK RETURN|FOB|gular requests | +136|164054|1603|6|15|16770.75|0.07|0.00|A|F|1992-06-04|1992-08-12|1992-07-02|NONE|SHIP|posits cajole slyly slyly | +137|98499|6027|1|41|61397.09|0.09|0.03|R|F|1993-10-16|1993-11-25|1993-11-13|DELIVER IN PERSON|TRUCK|ar, special requests. carefu| +137|71954|9476|2|50|96297.50|0.08|0.06|A|F|1993-10-19|1993-11-28|1993-11-04|DELIVER IN PERSON|FOB| above the fluffily regular foxes. iron| +137|114899|9922|3|12|22966.68|0.01|0.08|R|F|1994-02-02|1993-12-15|1994-02-19|TAKE BACK RETURN|RAIL|inal packages | +137|101078|6099|4|45|48558.15|0.00|0.05|R|F|1993-11-16|1994-01-02|1993-11-30|NONE|AIR| blithely after the fluffi| +137|5875|8376|5|21|37398.27|0.10|0.05|R|F|1993-11-15|1993-11-26|1993-11-16|COLLECT COD|SHIP|. accounts are quic| +137|125138|5139|6|40|46525.20|0.04|0.07|A|F|1994-01-08|1993-12-30|1994-02-07|TAKE BACK RETURN|FOB|nic foxes. carefu| +137|179045|9046|7|12|13488.48|0.02|0.06|R|F|1994-01-28|1993-11-22|1994-02-20|COLLECT COD|TRUCK|ets. carefully regular theodolite| +138|8583|3584|1|44|65629.52|0.01|0.05|N|O|1997-04-28|1997-04-16|1997-05-12|COLLECT COD|TRUCK|the fluffily ironic | +138|48279|784|2|27|33136.29|0.07|0.02|N|O|1997-03-30|1997-04-02|1997-04-07|NONE|FOB|slyly deposits. final pinto beans cajo| +138|12919|423|3|17|31142.47|0.08|0.04|N|O|1997-01-25|1997-03-07|1997-01-26|COLLECT COD|MAIL|ds: fluffily unusual platelets| +138|127454|4991|4|17|25184.65|0.06|0.08|N|O|1997-04-17|1997-04-03|1997-04-24|DELIVER IN PERSON|MAIL|latelets wake f| +139|125309|334|1|37|49369.10|0.04|0.04|A|F|1993-07-18|1993-07-13|1993-08-17|TAKE BACK RETURN|AIR|y final deposits. | +139|56938|6939|2|27|51163.11|0.03|0.04|A|F|1993-08-06|1993-07-11|1993-08-24|NONE|AIR|iously unusual dependencies use slyly? bli| +139|142041|7070|3|16|17328.64|0.04|0.04|A|F|1993-05-28|1993-07-05|1993-06-21|NONE|MAIL|lyly ironic requests cajole caref| +140|29630|7137|1|6|9357.78|0.05|0.03|A|F|1992-06-22|1992-04-22|1992-06-30|NONE|RAIL|ole bravely| +140|181820|6857|2|38|72269.16|0.04|0.00|A|F|1992-05-26|1992-05-19|1992-05-31|TAKE BACK RETURN|AIR|ecial requests are alongside of the quick| +140|33492|3493|3|41|58445.09|0.08|0.08|R|F|1992-05-29|1992-04-26|1992-06-25|NONE|RAIL|sual deposits nag. careful| +140|98431|8432|4|30|42882.90|0.08|0.08|A|F|1992-06-01|1992-04-12|1992-06-18|NONE|SHIP|cial packages haggle furiously| +141|77396|9904|1|5|6866.95|0.08|0.00|N|O|1996-11-25|1997-01-02|1996-12-24|TAKE BACK RETURN|FOB|avely alongside of the | +142|167701|5250|1|46|81360.20|0.03|0.08|R|F|1995-05-20|1995-06-11|1995-06-02|TAKE BACK RETURN|MAIL|dolphins wake final, even dependencies| +142|139683|2197|2|28|48235.04|0.05|0.01|N|O|1995-07-15|1995-05-12|1995-07-26|NONE|REG AIR|ly final foxes cajole f| +142|37168|9672|3|3|3315.48|0.05|0.07|N|F|1995-06-07|1995-07-06|1995-07-07|NONE|TRUCK|kages. slyly final deposits haggle f| +142|81877|6894|4|22|40895.14|0.02|0.03|N|F|1995-06-15|1995-05-14|1995-06-26|DELIVER IN PERSON|MAIL|arthogs use express f| +143|85274|291|1|47|59185.69|0.05|0.03|N|O|1995-08-27|1995-11-16|1995-09-16|COLLECT COD|AIR|lar excuses haggle slyly. i| +143|184563|2118|2|8|13180.48|0.10|0.04|N|O|1995-11-13|1995-11-10|1995-12-10|NONE|REG AIR|furiously after the care| +168|85210|227|1|41|49003.61|0.06|0.06|N|O|1997-09-26|1997-09-05|1997-09-29|DELIVER IN PERSON|SHIP| slyly slyly regular requests. fin| +168|117255|9767|2|16|20356.00|0.08|0.08|N|O|1997-07-23|1997-08-04|1997-08-16|COLLECT COD|AIR|ly regular, quiet f| +168|94597|9616|3|39|62072.01|0.04|0.05|N|O|1997-07-31|1997-07-26|1997-08-10|DELIVER IN PERSON|RAIL|inal dependencies use blithely fur| +169|50945|3451|1|5|9479.70|0.09|0.08|A|F|1992-04-19|1992-06-07|1992-05-01|COLLECT COD|REG AIR| furiously along the slyly ironic p| +169|27676|7677|2|39|62543.13|0.01|0.00|R|F|1992-05-22|1992-06-03|1992-06-06|TAKE BACK RETURN|REG AIR|yly carefully | +169|134125|6639|3|7|8113.84|0.01|0.02|A|F|1992-06-29|1992-05-02|1992-07-29|TAKE BACK RETURN|AIR|lar instructions use b| +170|134687|9714|1|38|65423.84|0.00|0.08|A|F|1994-02-10|1994-04-22|1994-03-10|TAKE BACK RETURN|SHIP|l foxes sleep slyly. quickl| +170|82735|7752|2|10|17177.30|0.00|0.03|R|F|1994-03-18|1994-03-25|1994-04-05|DELIVER IN PERSON|AIR| pinto beans are furiously fl| +170|117779|7780|3|26|46716.02|0.01|0.03|A|F|1994-03-15|1994-04-20|1994-03-17|DELIVER IN PERSON|REG AIR|ular packages wake. re| +170|110200|201|4|16|19363.20|0.07|0.01|A|F|1994-03-14|1994-03-04|1994-03-20|COLLECT COD|FOB|. dependencies are blithe| +171|152898|5414|1|46|89740.94|0.04|0.07|N|O|1996-05-30|1996-06-21|1996-06-04|TAKE BACK RETURN|SHIP|uests boost along the blithel| +171|152923|7954|2|28|55325.76|0.09|0.02|N|O|1996-06-18|1996-07-15|1996-07-18|DELIVER IN PERSON|RAIL|ly unusual reques| +171|170472|473|3|8|12339.76|0.00|0.00|N|O|1996-06-13|1996-07-10|1996-07-12|NONE|AIR|ts doubt fluffily quiet plat| +171|121930|1931|4|41|80029.13|0.00|0.04|N|O|1996-05-30|1996-05-22|1996-06-14|TAKE BACK RETURN|REG AIR| quickly ironic pa| +171|74838|7346|5|43|77951.69|0.03|0.04|N|O|1996-06-14|1996-07-07|1996-06-26|TAKE BACK RETURN|TRUCK|osits are carefully. fluffily ironic no| +171|193216|5736|6|14|18328.94|0.10|0.03|N|O|1996-08-09|1996-06-30|1996-09-06|COLLECT COD|SHIP| special deposits. fluf| +172|685|686|1|36|57084.48|0.08|0.04|R|F|1995-03-30|1995-05-07|1995-04-15|COLLECT COD|AIR|ccounts. carefully| +172|106232|8743|2|13|16096.99|0.09|0.01|N|O|1995-06-27|1995-06-22|1995-07-26|TAKE BACK RETURN|TRUCK|pains cajole carefully b| +172|25060|65|3|17|16746.02|0.03|0.04|N|O|1995-06-24|1995-05-23|1995-07-18|COLLECT COD|TRUCK|g to the never| +172|175186|2738|4|31|39096.58|0.00|0.06|R|F|1995-04-25|1995-05-22|1995-05-21|DELIVER IN PERSON|AIR| the fluffily regul| +172|136693|4233|5|26|44971.94|0.05|0.01|N|O|1995-07-08|1995-06-26|1995-07-10|TAKE BACK RETURN|REG AIR|ly careful instru| +172|186130|1167|6|2|2432.26|0.10|0.01|N|O|1995-06-28|1995-05-23|1995-06-29|NONE|TRUCK|ans integrate. slyly regular courts sleep | +173|11406|8910|1|35|46109.00|0.08|0.00|N|O|1997-01-13|1996-12-30|1997-01-18|NONE|SHIP|olites. express excuses are slyly b| +173|88818|8819|2|41|74079.21|0.10|0.02|N|O|1996-11-18|1997-01-06|1996-12-13|NONE|MAIL|ts nag. furiously s| +173|152586|2587|3|37|60627.46|0.03|0.01|N|O|1996-12-04|1996-12-01|1996-12-25|DELIVER IN PERSON|MAIL|y regular, regular pa| +173|105421|5422|4|4|5705.68|0.03|0.04|N|O|1997-01-15|1996-12-26|1997-02-10|DELIVER IN PERSON|TRUCK|efully regular deposi| +173|198900|6458|5|30|59967.00|0.04|0.07|N|O|1997-02-08|1997-01-27|1997-02-09|DELIVER IN PERSON|FOB|g along the carefully | +173|109452|1963|6|33|48227.85|0.10|0.07|N|O|1997-02-28|1996-11-30|1997-03-29|TAKE BACK RETURN|REG AIR|ully unusual ideas. slyly iron| +173|147885|400|7|15|28993.20|0.02|0.00|N|O|1996-10-31|1996-12-13|1996-11-28|NONE|RAIL|eodolites use depen| +174|88204|3221|1|31|36958.20|0.06|0.08|N|O|1997-03-09|1997-02-16|1997-03-30|TAKE BACK RETURN|REG AIR| instructions. slyly thin p| +175|102822|7843|1|15|27372.30|0.05|0.02|N|O|1995-11-18|1995-11-09|1995-11-24|NONE|AIR|ructions. quickl| +200|149777|4806|1|4|7307.08|0.03|0.06|R|F|1993-07-24|1993-08-29|1993-08-10|TAKE BACK RETURN|RAIL|es must have to im| +200|96051|8561|2|21|21988.05|0.05|0.08|R|F|1993-10-23|1993-09-22|1993-11-22|COLLECT COD|MAIL|tions. daringly bold deposits ser| +200|117190|2213|3|15|18107.85|0.07|0.05|R|F|1993-10-17|1993-10-14|1993-11-03|DELIVER IN PERSON|REG AIR|xes integrate quietly among t| +200|197008|2047|4|24|26520.00|0.10|0.08|A|F|1993-11-12|1993-08-26|1993-11-20|DELIVER IN PERSON|MAIL|requests wake. quickly blithe accounts wa| +200|106690|4221|5|29|49204.01|0.01|0.03|A|F|1993-07-20|1993-08-19|1993-08-04|TAKE BACK RETURN|AIR|ithely across the regular| +200|136868|4408|6|37|70479.82|0.03|0.05|A|F|1993-10-08|1993-09-14|1993-10-12|TAKE BACK RETURN|MAIL| pending instructions. final pla| +200|139494|4521|7|33|50605.17|0.10|0.02|A|F|1993-10-05|1993-08-20|1993-10-30|COLLECT COD|RAIL|express requests sleep fluffily silent theo| +201|59303|4314|1|39|49229.70|0.05|0.05|N|O|1998-08-12|1998-08-12|1998-08-31|NONE|FOB|nstructions. re| +201|89153|4170|2|41|46828.15|0.01|0.01|N|O|1998-08-01|1998-07-08|1998-08-17|TAKE BACK RETURN|TRUCK|ic theodolites sleep slyly bold reques| +201|177791|309|3|24|44850.96|0.08|0.00|N|O|1998-06-26|1998-08-07|1998-07-26|TAKE BACK RETURN|SHIP|sts. silent, pending c| +201|116956|9468|4|13|25648.35|0.10|0.06|N|O|1998-05-28|1998-06-19|1998-06-27|NONE|REG AIR|y even accou| +201|75349|5350|5|30|39730.20|0.08|0.02|N|O|1998-07-08|1998-07-05|1998-07-27|COLLECT COD|TRUCK|eans hang across the unusual do| +202|47169|9674|1|38|42414.08|0.05|0.00|N|O|1996-07-04|1996-06-22|1996-07-18|DELIVER IN PERSON|MAIL|ve slyly. slyly regular depo| +203|11534|9038|1|42|60712.26|0.07|0.02|R|F|1994-01-05|1994-01-07|1994-01-22|COLLECT COD|RAIL|gular realms cajole furiously final a| +203|37087|7088|2|39|39939.12|0.10|0.05|R|F|1993-12-28|1994-01-25|1994-01-02|DELIVER IN PERSON|MAIL|inments. final deposits are. fluffily | +203|117899|5433|3|9|17252.01|0.04|0.05|A|F|1993-12-12|1994-01-10|1994-01-04|TAKE BACK RETURN|FOB|es above the depos| +204|21362|6367|1|27|34650.72|0.01|0.08|A|F|1992-06-15|1992-07-22|1992-07-06|COLLECT COD|SHIP|ckly furiously ironic re| +205|42927|7936|1|15|28048.80|0.00|0.02|R|F|1993-01-04|1993-01-06|1993-01-22|TAKE BACK RETURN|MAIL|e. slyly bold instruction| +205|74089|9104|2|40|42523.20|0.01|0.03|A|F|1993-02-05|1992-12-21|1993-02-16|TAKE BACK RETURN|RAIL|instructions. unusual requests use | +205|198727|1247|3|1|1825.72|0.07|0.07|R|F|1992-12-06|1992-12-19|1992-12-21|TAKE BACK RETURN|FOB|unusual packages. furiously | +205|196951|6952|4|21|43006.95|0.05|0.07|R|F|1992-11-29|1992-12-22|1992-12-21|DELIVER IN PERSON|REG AIR|fily silent dependencies about| +205|154328|4329|5|12|16587.84|0.10|0.02|R|F|1992-11-15|1993-01-08|1992-11-27|TAKE BACK RETURN|TRUCK|ccording to the slyly ir| +205|176965|9483|6|2|4083.92|0.08|0.06|R|F|1992-12-28|1993-01-04|1993-01-14|DELIVER IN PERSON|FOB|al deposits. instructions | +206|175889|8407|1|13|25543.44|0.00|0.07|A|F|1992-05-18|1992-06-10|1992-06-08|TAKE BACK RETURN|MAIL|hely regular pinto beans sublate fluff| +206|161994|9543|2|24|49343.76|0.09|0.00|A|F|1992-04-26|1992-06-21|1992-05-16|TAKE BACK RETURN|AIR|boost blithely. fluffily final packages | +206|22659|2660|3|40|63266.00|0.05|0.07|A|F|1992-04-04|1992-05-12|1992-04-11|COLLECT COD|AIR|y regular theodolites. regu| +207|59967|9968|1|26|50100.96|0.02|0.00|R|F|1994-03-18|1994-05-04|1994-04-01|DELIVER IN PERSON|MAIL| regular ideas acc| +207|51814|1815|2|45|79461.45|0.10|0.04|A|F|1994-05-19|1994-05-04|1994-06-11|NONE|FOB|tes are slyly against the slyly blith| +207|25488|7991|3|2|2826.96|0.08|0.05|A|F|1994-04-24|1994-04-27|1994-05-23|NONE|REG AIR|ronic pint| +207|174102|6620|4|49|57628.90|0.08|0.03|R|F|1994-03-05|1994-05-02|1994-03-29|TAKE BACK RETURN|SHIP|: finally | +232|46967|6968|1|23|44021.08|0.09|0.02|R|F|1995-03-02|1995-05-10|1995-03-11|COLLECT COD|REG AIR|ing pinto beans according to the| +232|166843|1876|2|9|17188.56|0.08|0.04|A|F|1995-04-01|1995-04-15|1995-04-12|DELIVER IN PERSON|REG AIR|al, silent foxes.| +232|126647|4184|3|41|68619.24|0.10|0.04|A|F|1995-05-27|1995-05-02|1995-06-16|TAKE BACK RETURN|FOB|arefully during| +233|18657|8658|1|19|29937.35|0.02|0.01|A|F|1995-03-02|1995-02-04|1995-03-10|NONE|FOB|old accounts along the furiously sp| +233|157689|2720|2|27|47160.36|0.08|0.00|A|F|1995-01-27|1995-01-28|1995-02-16|NONE|REG AIR|blithely ironic accounts. furiously ironic | +233|65071|2590|3|15|15541.05|0.01|0.08|R|F|1995-04-11|1995-02-17|1995-05-06|NONE|REG AIR|es haggle furiously carefully even requ| +233|32443|2444|4|18|24757.92|0.08|0.08|R|F|1995-02-16|1995-01-27|1995-03-17|COLLECT COD|AIR|wake above| +233|59226|9227|5|45|53334.90|0.04|0.05|A|F|1995-02-23|1995-03-02|1995-03-10|TAKE BACK RETURN|FOB|pendencies. slyly enticing theodol| +234|107391|4922|1|4|5593.56|0.03|0.05|N|O|1998-08-02|1998-07-02|1998-08-09|DELIVER IN PERSON|FOB|arefully after the even deposits. qui| +234|114120|1654|2|2|2268.24|0.06|0.00|N|O|1998-07-02|1998-06-12|1998-07-23|TAKE BACK RETURN|TRUCK|blithely pending requests. fluffil| +234|12926|2927|3|10|18389.20|0.04|0.05|N|O|1998-06-17|1998-06-27|1998-07-10|COLLECT COD|AIR| cajole agai| +234|42311|9824|4|26|32586.06|0.01|0.07|N|O|1998-04-21|1998-07-08|1998-05-10|COLLECT COD|TRUCK|lly pending packages cajole careful| +235|4178|9179|1|25|27054.25|0.04|0.01|R|F|1993-01-14|1993-01-30|1993-01-23|TAKE BACK RETURN|TRUCK|nt deposits. carefully regular| +235|14372|1876|2|19|24441.03|0.09|0.03|A|F|1993-01-22|1993-03-19|1993-02-08|NONE|TRUCK|n ideas. furiously special instructions h| +235|150011|2527|3|14|14854.14|0.06|0.04|R|F|1993-03-02|1993-03-04|1993-03-08|TAKE BACK RETURN|TRUCK|theodolites. furiously regular orbits sle| +235|19821|2323|4|23|40038.86|0.05|0.06|A|F|1993-03-20|1993-01-29|1993-04-01|TAKE BACK RETURN|AIR|ains cajole fluffily! carefully | +235|129273|4298|5|49|63811.23|0.01|0.05|A|F|1993-02-01|1993-02-26|1993-03-02|DELIVER IN PERSON|SHIP|x blithely gifts. even, final ex| +235|89864|7389|6|17|31515.62|0.05|0.01|A|F|1993-04-14|1993-03-21|1993-04-17|TAKE BACK RETURN|FOB|ly blithely | +235|142821|364|7|11|20502.02|0.02|0.03|A|F|1993-02-11|1993-02-09|1993-03-07|COLLECT COD|FOB|. pending requests are of the express| +236|176540|6541|1|18|29097.72|0.05|0.04|N|O|1997-12-10|1997-11-08|1998-01-03|TAKE BACK RETURN|AIR|ges. blithely regular pa| +236|96853|6854|2|24|44396.40|0.10|0.00|N|O|1997-09-24|1997-11-16|1997-10-08|COLLECT COD|FOB|ar, final dependencies.| +236|199958|7516|3|48|98781.60|0.02|0.01|N|O|1997-12-29|1997-10-26|1998-01-26|COLLECT COD|RAIL| dolphins. furiously final requests wa| +236|80003|2512|4|19|18677.00|0.05|0.01|N|O|1997-09-24|1997-11-09|1997-10-04|COLLECT COD|FOB|refully according t| +237|132121|7148|1|6|6918.72|0.01|0.04|N|O|1998-03-02|1997-12-17|1998-03-17|NONE|RAIL|ironic foxes | +237|143111|3112|2|46|53089.06|0.01|0.01|N|O|1998-03-10|1998-01-29|1998-04-01|DELIVER IN PERSON|FOB|usly. slyly slow d| +238|163669|6186|1|19|32920.54|0.09|0.06|N|O|1996-01-25|1995-11-26|1996-01-29|TAKE BACK RETURN|RAIL| the carefully ironic ideas. permanently| +238|179633|7185|2|30|51378.90|0.05|0.07|N|O|1995-12-24|1995-12-02|1995-12-25|COLLECT COD|TRUCK|ep slyly even tithe| +238|90292|293|3|14|17952.06|0.10|0.03|N|O|1995-11-12|1995-12-09|1995-11-14|NONE|MAIL|aggle against the pinto| +239|140427|2942|1|37|54294.54|0.06|0.01|N|O|1997-07-30|1997-07-05|1997-07-31|TAKE BACK RETURN|TRUCK|hless requests sleep b| +239|154781|7297|2|35|64252.30|0.10|0.07|N|O|1997-09-04|1997-07-03|1997-10-02|COLLECT COD|RAIL|c ideas! final sentiments wake silently b| +239|193300|5820|3|27|37619.10|0.01|0.06|N|O|1997-09-08|1997-06-20|1997-09-13|COLLECT COD|FOB|deposits are qu| +264|49406|1911|1|46|62348.40|0.06|0.03|N|O|1997-06-29|1997-05-01|1997-07-27|TAKE BACK RETURN|SHIP|final packages sleep furio| +264|161124|6157|2|39|46219.68|0.04|0.01|N|O|1997-04-28|1997-04-21|1997-05-28|NONE|REG AIR|l, express requests | +264|9577|4578|3|20|29731.40|0.07|0.08|N|O|1997-04-06|1997-05-14|1997-04-23|DELIVER IN PERSON|REG AIR|nto beans. bold | +264|156768|6769|4|35|63866.60|0.05|0.00|N|O|1997-06-20|1997-04-10|1997-07-05|DELIVER IN PERSON|SHIP| even packages alongside of the fluffily | +264|189598|7153|5|6|10125.54|0.00|0.06|N|O|1997-03-21|1997-04-26|1997-04-14|COLLECT COD|FOB|usly instructions. pend| +264|160750|3267|6|47|85105.25|0.00|0.05|N|O|1997-06-27|1997-05-10|1997-07-24|COLLECT COD|TRUCK|otes are c| +265|69414|4427|1|34|47035.94|0.07|0.01|R|F|1995-05-04|1995-06-03|1995-05-30|DELIVER IN PERSON|SHIP|to beans. express, regular| +266|157513|5059|1|35|54967.85|0.02|0.02|N|O|1998-05-25|1998-08-02|1998-06-19|NONE|MAIL|sits. final theodolit| +266|111865|6888|2|25|46921.50|0.08|0.06|N|O|1998-07-15|1998-07-20|1998-08-07|TAKE BACK RETURN|SHIP|quests cajole sly| +266|110850|5873|3|33|61408.05|0.03|0.08|N|O|1998-05-30|1998-08-04|1998-06-05|DELIVER IN PERSON|REG AIR|ng requests at t| +267|79820|4835|1|29|52194.78|0.05|0.02|R|F|1993-10-03|1993-09-29|1993-10-22|COLLECT COD|FOB|uffily careful waters! slyly fin| +267|129117|9118|2|38|43552.18|0.02|0.01|A|F|1993-09-23|1993-08-29|1993-10-23|NONE|AIR|usly stealthy theodolites promi| +267|64814|9827|3|40|71152.40|0.05|0.01|A|F|1993-07-24|1993-09-01|1993-08-12|COLLECT COD|MAIL|ending packages wake furiously accordi| +267|121762|9299|4|47|83836.72|0.09|0.01|A|F|1993-10-26|1993-09-18|1993-11-17|NONE|RAIL|out the sau| +267|39817|9818|5|20|35136.20|0.10|0.02|A|F|1993-10-21|1993-09-26|1993-11-12|TAKE BACK RETURN|REG AIR|ar pinto beans. fur| +267|197454|2493|6|8|12411.60|0.00|0.08|A|F|1993-09-07|1993-09-22|1993-09-11|DELIVER IN PERSON|TRUCK|. carefully even f| +268|160357|2874|1|29|41103.15|0.08|0.00|A|F|1994-12-04|1994-10-31|1994-12-22|NONE|MAIL| deposits. pa| +268|115258|5259|2|32|40744.00|0.01|0.08|A|F|1994-11-03|1994-11-25|1994-11-24|NONE|AIR| accounts around the careful| +268|136988|2015|3|49|99224.02|0.01|0.00|A|F|1994-10-08|1994-11-16|1994-10-14|TAKE BACK RETURN|REG AIR|carefully between the furi| +268|152226|4742|4|36|46015.92|0.07|0.08|A|F|1994-10-13|1994-11-26|1994-11-09|NONE|AIR|symptotes eat above the theodolite| +268|53200|5706|5|42|48434.40|0.05|0.01|R|F|1994-10-18|1994-11-13|1994-11-02|COLLECT COD|RAIL|e fluffily ironic braids ca| +268|127798|5335|6|48|87637.92|0.10|0.04|R|F|1994-10-03|1994-12-10|1994-11-02|COLLECT COD|TRUCK|ular excuses cajole unusual packages. fur| +268|99898|4917|7|20|37957.80|0.10|0.07|R|F|1994-11-03|1994-12-04|1994-11-24|COLLECT COD|FOB|ons serve stealthily across the bold, i| +269|172257|4775|1|12|15951.00|0.02|0.08|N|O|1997-06-01|1997-06-14|1997-06-25|DELIVER IN PERSON|MAIL|l accounts use! silent accoun| +269|109966|2477|2|27|53350.92|0.03|0.03|N|O|1997-06-20|1997-06-20|1997-07-10|TAKE BACK RETURN|RAIL|y even packages across the care| +269|197996|3035|3|18|37691.82|0.03|0.03|N|O|1997-06-08|1997-05-20|1997-06-22|DELIVER IN PERSON|RAIL|ly special asymptotes ca| +269|117932|5466|4|28|54598.04|0.09|0.03|N|O|1997-04-23|1997-07-06|1997-05-20|TAKE BACK RETURN|SHIP|ckly regular requests ha| +269|77606|5128|5|31|49091.60|0.07|0.03|N|O|1997-08-11|1997-06-10|1997-09-02|DELIVER IN PERSON|RAIL|mong the express asymptotes. careful, fina| +269|123298|3299|6|49|64743.21|0.10|0.00|N|O|1997-05-21|1997-07-06|1997-05-25|DELIVER IN PERSON|FOB|ar requests. | +270|100310|5331|1|8|10482.48|0.09|0.07|R|F|1992-03-21|1992-04-16|1992-04-05|COLLECT COD|FOB|nent deposits are blithely across the ca| +270|100955|8486|2|33|64546.35|0.04|0.01|A|F|1992-04-30|1992-04-24|1992-05-17|NONE|MAIL|iously. blithe| +270|150578|3094|3|46|74914.22|0.01|0.00|R|F|1992-07-10|1992-06-01|1992-08-06|DELIVER IN PERSON|MAIL|al accounts| +270|149825|2340|4|23|43120.86|0.04|0.08|A|F|1992-04-20|1992-05-09|1992-05-04|NONE|SHIP|mas? even platelets wak| +270|105294|2825|5|42|54570.18|0.05|0.05|A|F|1992-07-06|1992-05-29|1992-07-27|TAKE BACK RETURN|TRUCK|lyly stealthy gifts. furiously pending| +271|146871|4414|1|29|55618.23|0.01|0.05|N|O|1997-10-29|1997-09-10|1997-11-27|COLLECT COD|SHIP|al accounts sleep carefully acr| +271|56110|8616|2|43|45842.73|0.03|0.02|N|O|1997-09-16|1997-08-30|1997-10-16|COLLECT COD|TRUCK|foxes. pending | +271|31776|9286|3|9|15369.93|0.05|0.05|N|O|1997-10-01|1997-08-21|1997-10-09|NONE|RAIL|ideas are f| +296|36761|6762|1|45|76399.20|0.03|0.01|N|O|1997-04-09|1997-05-14|1997-04-13|TAKE BACK RETURN|RAIL| after the blithely special depe| +296|28607|8608|2|11|16891.60|0.09|0.04|N|O|1997-03-12|1997-04-19|1997-04-07|COLLECT COD|REG AIR|. slyly regular accounts hagg| +296|190730|731|3|33|60084.09|0.08|0.02|N|O|1997-04-12|1997-05-03|1997-04-30|TAKE BACK RETURN|REG AIR| deposits cajole blithely after the idl| +296|189569|9570|4|45|74635.20|0.04|0.07|N|O|1997-05-20|1997-05-08|1997-06-16|NONE|TRUCK|onic reques| +296|71911|4419|5|15|28243.65|0.08|0.00|N|O|1997-05-12|1997-04-21|1997-06-04|NONE|FOB| requests haggle blithely according to the| +296|195092|2650|6|16|18993.44|0.08|0.07|N|O|1997-04-10|1997-05-12|1997-05-08|DELIVER IN PERSON|REG AIR|aggle above the furiously pending instru| +296|107627|138|7|10|16346.20|0.08|0.06|N|O|1997-06-02|1997-03-27|1997-06-06|COLLECT COD|FOB|ely express asymptotes d| +297|73182|704|1|15|17327.70|0.04|0.08|N|O|1995-12-20|1995-10-25|1996-01-14|DELIVER IN PERSON|FOB|ckages. special, final | +297|155204|5205|2|16|20147.20|0.03|0.06|N|O|1995-10-06|1995-10-20|1995-10-19|NONE|RAIL|lieve blith| +297|110686|5709|3|47|79743.96|0.07|0.00|N|O|1995-11-04|1995-10-26|1995-11-13|TAKE BACK RETURN|AIR|above the fin| +298|142004|2005|1|21|21966.00|0.06|0.05|A|F|1994-11-29|1994-12-08|1994-12-18|TAKE BACK RETURN|TRUCK|slyly. accounts haggle according to| +298|52601|2602|2|6|9321.60|0.02|0.02|A|F|1994-09-18|1994-10-21|1994-10-18|DELIVER IN PERSON|REG AIR|oss the quickly ironic p| +298|50609|8125|3|14|21834.40|0.07|0.00|A|F|1994-11-21|1994-12-03|1994-12-17|TAKE BACK RETURN|RAIL|xcuses are slyly agai| +298|180496|8051|4|30|47294.70|0.09|0.02|A|F|1994-10-09|1994-11-24|1994-10-27|TAKE BACK RETURN|RAIL|nd the bold, even instructions. regular| +298|190788|3308|5|45|84545.10|0.05|0.05|A|F|1994-11-03|1994-11-07|1994-11-21|NONE|SHIP|posits. final, express ideas around the ev| +299|95788|3316|1|14|24972.92|0.03|0.03|R|F|1994-02-10|1994-02-02|1994-02-17|DELIVER IN PERSON|TRUCK|onic, even ide| +300|23577|6080|1|23|34513.11|0.10|0.02|R|F|1993-12-25|1994-01-20|1994-01-17|TAKE BACK RETURN|MAIL|nto beans haggle | +301|163089|5606|1|39|44931.12|0.08|0.07|A|F|1994-10-18|1994-10-02|1994-11-15|TAKE BACK RETURN|TRUCK|ackages. unusual, special instructions| +301|26540|4047|2|6|8799.24|0.00|0.03|A|F|1994-08-14|1994-10-18|1994-08-31|TAKE BACK RETURN|RAIL|its. express deposits about the slyly bol| +301|55927|3443|3|11|20712.12|0.01|0.08|R|F|1994-09-10|1994-10-07|1994-09-25|TAKE BACK RETURN|TRUCK|encies are: sl| +301|161446|1447|4|30|45223.20|0.00|0.07|R|F|1994-08-12|1994-11-03|1994-08-13|COLLECT COD|RAIL|arefully specia| +301|16594|1597|5|8|12084.72|0.00|0.06|R|F|1994-11-24|1994-09-28|1994-11-29|TAKE BACK RETURN|FOB|ly silent accounts| +302|111233|6256|1|44|54746.12|0.08|0.02|R|F|1995-02-02|1994-12-11|1995-02-03|COLLECT COD|FOB|lyly across the quick frets. sly| +303|52249|9765|1|42|50452.08|0.04|0.08|A|F|1992-04-20|1992-05-23|1992-05-12|TAKE BACK RETURN|AIR|ove the unusual r| +303|148303|818|2|30|40539.00|0.00|0.02|R|F|1992-05-21|1992-05-11|1992-06-14|COLLECT COD|TRUCK|efully final theodolites acc| +303|115726|749|3|16|27867.52|0.05|0.07|A|F|1992-08-06|1992-07-07|1992-08-19|COLLECT COD|FOB|ses: quickly ex| +303|1181|8682|4|43|46533.74|0.02|0.02|R|F|1992-07-09|1992-06-11|1992-08-02|COLLECT COD|MAIL|blithely even ideas. foxes imp| +303|36192|6193|5|43|48512.17|0.00|0.07|R|F|1992-06-10|1992-06-15|1992-06-22|TAKE BACK RETURN|AIR|ake quickly furiously pend| +303|64796|7303|6|2|3521.58|0.07|0.06|R|F|1992-05-29|1992-06-29|1992-06-02|DELIVER IN PERSON|MAIL|g to the ideas sleep | +303|24079|9084|7|11|11033.77|0.08|0.02|A|F|1992-06-04|1992-06-12|1992-07-01|DELIVER IN PERSON|AIR|osits. quickly ex| +328|94815|2343|1|9|16288.29|0.00|0.00|A|F|1992-12-22|1992-11-21|1993-01-07|NONE|SHIP|nts are blithely sl| +328|144540|2083|2|14|22183.56|0.07|0.02|R|F|1992-12-23|1992-10-15|1993-01-12|NONE|SHIP| beans. carefully reg| +328|83402|3403|3|1|1385.40|0.05|0.03|A|F|1992-09-30|1992-11-19|1992-10-14|COLLECT COD|MAIL|cording to the unusual dependencies ar| +329|70967|8489|1|49|94960.04|0.05|0.06|A|F|1993-05-09|1993-06-28|1993-05-30|TAKE BACK RETURN|RAIL|ets. furiously enticing inst| +329|135747|3287|2|32|57047.68|0.04|0.03|R|F|1993-05-21|1993-06-13|1993-06-20|TAKE BACK RETURN|REG AIR|ing accounts | +330|106993|4524|1|12|23999.88|0.07|0.04|N|O|1996-12-10|1997-02-14|1997-01-02|COLLECT COD|REG AIR|ounts above the| +331|107502|7503|1|6|9057.00|0.05|0.01|R|F|1993-03-01|1993-02-15|1993-03-26|NONE|REG AIR|y pending pattern| +331|175442|7960|2|27|40970.88|0.06|0.08|R|F|1993-04-03|1993-03-20|1993-04-20|DELIVER IN PERSON|TRUCK| slyly regular excuses sleep care| +332|84119|6628|1|1|1103.11|0.06|0.06|A|F|1992-07-27|1992-06-11|1992-08-15|TAKE BACK RETURN|TRUCK|ecial packa| +332|173391|8426|2|48|70290.72|0.02|0.07|R|F|1992-07-14|1992-07-19|1992-07-17|TAKE BACK RETURN|TRUCK|rint slyly. carefully thin accounts are. f| +332|176322|8840|3|4|5593.28|0.05|0.08|A|F|1992-08-25|1992-06-19|1992-09-23|DELIVER IN PERSON|AIR|ing theodolites; pac| +332|27184|7185|4|33|36668.94|0.06|0.01|R|F|1992-07-07|1992-07-29|1992-07-09|TAKE BACK RETURN|MAIL|al packages. carefully final ideas above | +332|77857|7858|5|3|5504.55|0.10|0.06|R|F|1992-06-30|1992-07-09|1992-07-16|COLLECT COD|SHIP|around the qui| +332|127384|7385|6|40|56455.20|0.10|0.00|R|F|1992-06-06|1992-07-16|1992-07-05|COLLECT COD|MAIL|ounts sleep furiously packages. b| +333|157870|386|1|15|28918.05|0.00|0.02|N|O|1997-01-14|1997-01-09|1997-01-25|NONE|RAIL|nusual foxes. accounts must x-ray carefu| +334|168968|8969|1|14|28517.44|0.04|0.00|R|F|1992-11-29|1992-11-30|1992-12-24|DELIVER IN PERSON|FOB|y. carefully ironic reque| +334|36974|1981|2|44|84082.68|0.04|0.05|R|F|1992-10-17|1992-12-20|1992-11-10|DELIVER IN PERSON|SHIP|ding to the express, specia| +334|12710|7713|3|34|55172.14|0.08|0.08|R|F|1992-11-15|1992-12-01|1992-11-29|NONE|SHIP|r sentiments. slyly ironic tithes hag| +335|148716|6259|1|9|15882.39|0.00|0.01|N|O|1996-09-20|1996-11-01|1996-09-29|DELIVER IN PERSON|TRUCK|usual requests wake fluffily blithely | +335|58675|3686|2|4|6534.68|0.08|0.05|N|O|1996-11-29|1996-09-28|1996-12-05|COLLECT COD|TRUCK| are along | +335|145797|826|3|48|88453.92|0.08|0.02|N|O|1996-11-02|1996-10-03|1996-11-14|DELIVER IN PERSON|REG AIR|nts run furiously unusual, pending theodol| +335|194191|6711|4|6|7711.14|0.05|0.02|N|O|1996-10-22|1996-09-27|1996-11-11|TAKE BACK RETURN|REG AIR|ithely unusual courts wake packages. sile| +335|162319|7352|5|5|6906.55|0.02|0.05|N|O|1996-11-15|1996-11-15|1996-11-16|DELIVER IN PERSON|AIR|sly slyly express packages. even, bol| +360|86793|4318|1|22|39155.38|0.06|0.05|N|O|1996-11-20|1997-02-01|1996-12-13|NONE|RAIL|accounts. carefully e| +360|116079|6080|2|34|37232.38|0.06|0.03|N|O|1997-01-17|1997-01-21|1997-02-07|NONE|TRUCK|yly bold pinto beans. carefully re| +361|36326|6327|1|49|61853.68|0.07|0.03|A|F|1992-08-09|1992-08-22|1992-09-06|NONE|MAIL| regular requests. fluffily silent reque| +361|116260|1283|2|43|54879.18|0.02|0.05|R|F|1992-06-26|1992-08-01|1992-07-13|NONE|RAIL|about the ironic, ex| +362|62680|199|1|5|8213.40|0.09|0.05|R|F|1995-03-21|1995-02-09|1995-04-09|COLLECT COD|RAIL| requests could have to wake bra| +362|50983|984|2|13|25141.74|0.06|0.00|A|F|1995-01-19|1995-03-07|1995-02-14|DELIVER IN PERSON|FOB|re. regular, even requests| +362|70051|2559|3|28|28589.40|0.09|0.03|A|F|1995-03-26|1995-02-04|1995-03-31|NONE|RAIL|ending waters integrate slyly speci| +362|145316|5317|4|19|25864.89|0.08|0.05|R|F|1994-12-26|1995-03-12|1995-01-01|TAKE BACK RETURN|TRUCK|s. accounts haggle furio| +362|109492|4513|5|32|48047.68|0.05|0.07|R|F|1995-04-06|1995-02-04|1995-04-11|NONE|AIR|slyly silent deposits according to the bl| +363|65466|5467|1|28|40080.88|0.06|0.08|A|F|1993-01-07|1992-11-15|1993-01-22|COLLECT COD|MAIL|le carefully ac| +363|81515|1516|2|39|58363.89|0.10|0.01|R|F|1992-11-20|1992-11-08|1992-12-07|COLLECT COD|MAIL|pendencies cajole slyly. fina| +363|12512|5014|3|44|62678.44|0.04|0.04|A|F|1992-10-04|1992-11-21|1992-10-21|NONE|TRUCK|s. deposits amon| +363|79896|4911|4|32|60028.48|0.10|0.07|A|F|1992-12-30|1992-12-06|1993-01-15|DELIVER IN PERSON|SHIP|nal packages use regular| +363|7591|5092|5|12|17983.08|0.01|0.01|A|F|1992-10-06|1992-12-15|1992-10-16|COLLECT COD|SHIP|quickly ironic requests are. slyly final | +363|167581|5130|6|21|34620.18|0.08|0.08|A|F|1992-09-20|1992-11-01|1992-09-28|COLLECT COD|MAIL|ly dogged packages; blithely pe| +364|48657|6170|1|37|59409.05|0.04|0.03|N|O|1997-06-26|1997-07-17|1997-07-24|TAKE BACK RETURN|MAIL|carefully.| +364|176415|3967|2|17|25353.97|0.06|0.04|N|O|1997-07-08|1997-07-19|1997-07-27|NONE|REG AIR|ts. regular, | +364|198389|5947|3|17|25285.46|0.08|0.03|N|O|1997-06-30|1997-06-28|1997-07-06|COLLECT COD|MAIL|ely final asymptotes. caref| +364|114821|4822|4|16|29373.12|0.08|0.04|N|O|1997-09-22|1997-07-26|1997-10-08|DELIVER IN PERSON|MAIL| furiously carefully regular ins| +364|189536|9537|5|49|79650.97|0.02|0.05|N|O|1997-06-30|1997-06-24|1997-07-01|NONE|AIR|lly regular requests w| +364|129645|9646|6|32|53588.48|0.04|0.08|N|O|1997-06-03|1997-08-10|1997-06-06|NONE|SHIP|yly bold ideas. f| +364|136365|1392|7|32|44843.52|0.10|0.05|N|O|1997-06-30|1997-08-16|1997-07-04|COLLECT COD|REG AIR|phins against the slyly ironic packa| +365|81668|6685|1|27|44540.82|0.00|0.02|N|O|1996-06-24|1996-08-29|1996-07-22|TAKE BACK RETURN|RAIL|t the platelets. ironic decoys | +365|181491|9046|2|27|42457.23|0.02|0.07|N|O|1996-10-10|1996-08-29|1996-11-01|DELIVER IN PERSON|AIR|nal platelets| +365|111626|4138|3|19|31114.78|0.04|0.04|N|O|1996-07-17|1996-09-08|1996-08-12|DELIVER IN PERSON|SHIP| according | +365|85543|8052|4|17|25985.18|0.04|0.04|N|O|1996-08-26|1996-08-23|1996-09-17|COLLECT COD|REG AIR| instructions. bravely special platelets ha| +365|113975|1509|5|6|11933.82|0.08|0.08|N|O|1996-09-16|1996-09-03|1996-10-01|COLLECT COD|FOB|l platelets. blithely regular excus| +365|161199|3716|6|34|42846.46|0.04|0.02|N|O|1996-08-29|1996-07-29|1996-09-24|COLLECT COD|SHIP|eposits. quickly bold inst| +366|11736|1737|1|23|37897.79|0.03|0.05|A|F|1994-07-26|1994-08-14|1994-08-12|DELIVER IN PERSON|FOB|ons wake ruthlessly above the ca| +366|33561|1071|2|19|28396.64|0.07|0.01|A|F|1994-09-02|1994-08-09|1994-09-30|NONE|MAIL|ly special a| +366|50429|2935|3|6|8276.52|0.10|0.06|R|F|1994-09-18|1994-07-08|1994-10-08|DELIVER IN PERSON|SHIP|ts. slyly bold accounts are blit| +366|154673|7189|4|10|17276.70|0.07|0.03|R|F|1994-09-18|1994-07-12|1994-09-29|COLLECT COD|REG AIR|sual instructions use carefully ironic ide| +367|159227|9228|1|32|41159.04|0.09|0.03|N|O|1998-01-29|1998-02-03|1998-02-08|DELIVER IN PERSON|MAIL|eposits. fluffily bold packages sl| +367|111560|4072|2|24|37717.44|0.04|0.06|N|O|1998-01-29|1998-01-24|1998-02-23|DELIVER IN PERSON|FOB|ts wake slyly. carefully pendi| +367|173025|3026|3|9|9882.18|0.00|0.08|N|O|1998-03-06|1998-01-25|1998-04-01|NONE|RAIL|rate quickly slyly pending theodolites. fl| +367|17390|9892|4|25|32684.75|0.02|0.05|N|O|1998-02-23|1998-02-07|1998-02-27|DELIVER IN PERSON|SHIP|en deposits against the sentiments nag quic| +367|64649|9662|5|16|25818.24|0.05|0.06|N|O|1998-03-25|1998-01-25|1998-04-22|DELIVER IN PERSON|REG AIR|y. carefully even| +392|185224|5225|1|20|26184.40|0.06|0.05|R|F|1993-02-03|1993-02-10|1993-02-12|TAKE BACK RETURN|REG AIR|ests. ideas| +392|58234|8235|2|26|30997.98|0.05|0.01|A|F|1993-01-30|1993-01-25|1993-02-23|NONE|FOB|furiously f| +392|135170|5171|3|32|38565.44|0.09|0.08|A|F|1993-02-24|1993-01-10|1993-03-02|COLLECT COD|REG AIR| dependencies cajole after the always| +393|187610|5165|1|11|18673.71|0.00|0.07|R|F|1994-04-04|1994-03-23|1994-04-17|COLLECT COD|SHIP|dolites cajole dugouts; expre| +393|147513|28|2|33|51496.83|0.01|0.07|R|F|1994-01-17|1994-02-09|1994-01-21|TAKE BACK RETURN|FOB|deposits. furiously | +393|45968|977|3|41|78472.36|0.08|0.04|R|F|1994-01-18|1994-02-28|1994-02-16|COLLECT COD|AIR|deas use slyly across the fluffily| +393|182166|7203|4|10|12481.60|0.02|0.03|R|F|1994-05-01|1994-03-27|1994-05-25|NONE|AIR|ial platelets. quiet, final idea| +394|34171|6675|1|17|18787.89|0.02|0.06|R|F|1994-04-07|1994-03-29|1994-05-03|NONE|TRUCK|slyly special ins| +394|103901|6412|2|48|91435.20|0.05|0.04|R|F|1994-03-09|1994-04-25|1994-04-03|DELIVER IN PERSON|MAIL|the bold, enticing packages.| +394|57522|2533|3|22|32549.44|0.03|0.07|R|F|1994-06-09|1994-04-09|1994-06-23|DELIVER IN PERSON|AIR|s according to| +394|169541|4574|4|23|37042.42|0.09|0.08|A|F|1994-05-15|1994-05-13|1994-06-09|TAKE BACK RETURN|FOB|oys about the final, special dolphins d| +395|138292|806|1|25|33257.25|0.10|0.05|R|F|1992-04-05|1992-06-01|1992-05-04|NONE|RAIL|thely final p| +395|65478|5479|2|48|69286.56|0.06|0.02|A|F|1992-04-18|1992-05-07|1992-05-01|NONE|TRUCK|timents. packages are evenly bold | +395|73590|8605|3|8|12508.72|0.06|0.05|R|F|1992-05-03|1992-05-09|1992-05-21|TAKE BACK RETURN|SHIP|ronic requests.| +395|12909|413|4|23|41903.70|0.09|0.06|A|F|1992-04-14|1992-05-14|1992-04-16|DELIVER IN PERSON|REG AIR| the slyly iro| +395|145714|8229|5|16|28155.36|0.03|0.05|A|F|1992-05-15|1992-05-09|1992-06-05|COLLECT COD|AIR|uctions sleep ruthlessl| +395|199128|4167|6|46|56447.52|0.09|0.08|A|F|1992-07-03|1992-05-04|1992-07-28|NONE|MAIL| ironic ideas. fur| +395|141122|1123|7|43|50014.16|0.06|0.00|A|F|1992-06-13|1992-05-06|1992-07-08|COLLECT COD|REG AIR|nusual instructions grow. carefully sil| +396|23278|785|1|30|36038.10|0.10|0.02|A|F|1993-10-27|1993-12-26|1993-11-17|DELIVER IN PERSON|REG AIR|ickly against the unusual| +396|17629|131|2|46|71144.52|0.06|0.02|A|F|1994-01-25|1993-12-29|1994-02-05|DELIVER IN PERSON|SHIP|y unusual deposits. careful| +396|74296|9311|3|13|16513.77|0.04|0.06|R|F|1993-12-01|1993-12-12|1993-12-13|DELIVER IN PERSON|AIR| accounts in| +396|90781|782|4|49|86817.22|0.04|0.04|A|F|1994-01-29|1993-12-22|1994-02-17|NONE|FOB| final theodolites | +396|147873|5416|5|28|53784.36|0.01|0.07|R|F|1994-01-29|1994-01-03|1994-02-15|TAKE BACK RETURN|AIR| nag among the carefully pending ideas.| +396|97522|2541|6|26|39507.52|0.10|0.01|R|F|1994-02-04|1993-12-11|1994-02-15|TAKE BACK RETURN|TRUCK|e stealthily according to the fluffil| +397|87889|2906|1|24|45045.12|0.01|0.02|N|O|1998-08-16|1998-08-06|1998-08-24|TAKE BACK RETURN|MAIL|s lose furiously. regular instru| +398|99302|6830|1|25|32532.50|0.01|0.02|N|O|1995-06-19|1995-05-07|1995-07-19|COLLECT COD|TRUCK|as. fluffily fina| +399|33596|8603|1|12|18355.08|0.02|0.05|N|O|1995-09-13|1995-08-04|1995-09-22|DELIVER IN PERSON|FOB|ntegrate ideas. special, bo| +399|38399|903|2|22|29422.58|0.07|0.06|N|F|1995-06-09|1995-08-15|1995-07-02|DELIVER IN PERSON|AIR| the slyly regular| +399|167775|5324|3|30|55283.10|0.07|0.07|N|O|1995-09-13|1995-07-01|1995-10-09|DELIVER IN PERSON|REG AIR|above the furiously even | +424|23033|5536|1|34|32505.02|0.10|0.03|N|O|1997-11-30|1997-12-31|1997-12-27|DELIVER IN PERSON|REG AIR|ins sleep furiously blithely ironic de| +425|150267|5298|1|27|35566.02|0.09|0.08|N|O|1996-11-01|1996-12-05|1996-11-09|TAKE BACK RETURN|RAIL|carefully unusual deposi| +425|136734|6735|2|36|63746.28|0.04|0.03|N|O|1996-10-25|1996-11-28|1996-11-18|NONE|TRUCK|ial deposits eat furio| +425|79069|9070|3|45|47162.70|0.04|0.07|N|O|1997-01-10|1996-11-09|1997-01-13|COLLECT COD|FOB|s sleep carefully above the theodo| +425|104871|2402|4|7|13131.09|0.08|0.01|N|O|1996-09-16|1996-11-22|1996-09-29|DELIVER IN PERSON|SHIP|ccounts eat blithely final requests| +425|151028|8574|5|39|42081.78|0.09|0.03|N|O|1996-11-03|1996-10-15|1996-11-09|NONE|REG AIR|es haggle furiously| +425|112848|382|6|14|26051.76|0.03|0.00|N|O|1997-01-03|1996-11-08|1997-01-26|DELIVER IN PERSON|SHIP|efully regular escapades across the bold | +426|132819|7846|1|24|44443.44|0.04|0.05|N|O|1996-06-12|1996-08-11|1996-07-05|COLLECT COD|MAIL|ect. slyly express foxes sha| +426|82175|9700|2|43|49758.31|0.08|0.08|N|O|1996-08-22|1996-08-04|1996-09-02|TAKE BACK RETURN|RAIL|refully bold som| +427|142998|2999|1|30|61229.70|0.00|0.03|N|O|1996-06-19|1996-05-09|1996-07-15|DELIVER IN PERSON|AIR| stealthy pinto beans. carefully even dep| +427|158005|5551|2|8|8504.00|0.08|0.04|N|O|1996-06-19|1996-04-19|1996-07-01|DELIVER IN PERSON|AIR| packages sleep blithely final theo| +427|175091|5092|3|9|10494.81|0.02|0.02|N|O|1996-04-22|1996-04-21|1996-04-25|TAKE BACK RETURN|TRUCK|efully regular platelets are slyly.| +427|154174|6690|4|2|2456.34|0.01|0.00|N|O|1996-05-25|1996-05-25|1996-06-07|TAKE BACK RETURN|AIR|h blithely | +427|198139|659|5|23|28453.99|0.03|0.05|N|O|1996-05-08|1996-05-29|1996-06-05|DELIVER IN PERSON|TRUCK|y unusual platelet| +428|142004|4519|1|12|12552.00|0.10|0.00|N|O|1995-07-22|1995-09-22|1995-08-18|TAKE BACK RETURN|RAIL|y regular a| +428|60649|8168|2|36|57947.04|0.03|0.00|N|O|1995-10-20|1995-08-08|1995-11-10|NONE|TRUCK|al deposits. per| +428|124071|9096|3|45|49278.15|0.05|0.02|N|O|1995-08-18|1995-09-06|1995-09-15|COLLECT COD|TRUCK|eep ironic, regular excuses.| +429|76471|8979|1|18|26054.46|0.00|0.08|R|F|1994-04-04|1994-03-11|1994-04-18|TAKE BACK RETURN|REG AIR| deposits haggle blithely. carefull| +429|37693|5203|2|50|81534.50|0.02|0.03|A|F|1994-02-09|1994-04-25|1994-02-16|COLLECT COD|FOB|nts are sly| +429|103925|1456|3|37|71370.04|0.10|0.00|R|F|1994-03-05|1994-03-27|1994-03-26|COLLECT COD|REG AIR|close deposits are slyly acro| +429|53535|3536|4|23|34236.19|0.09|0.07|R|F|1994-03-27|1994-03-16|1994-04-05|DELIVER IN PERSON|RAIL| furiously express accounts. r| +429|155313|2859|5|22|30102.82|0.09|0.07|R|F|1994-03-04|1994-04-09|1994-03-29|NONE|AIR|the carefully regular ep| +429|141388|8931|6|36|51457.68|0.01|0.01|A|F|1994-02-10|1994-03-24|1994-03-05|DELIVER IN PERSON|AIR|ly final requests cajole slyly fl| +429|103397|8418|7|29|40611.31|0.07|0.06|A|F|1994-04-07|1994-04-15|1994-04-26|COLLECT COD|REG AIR| the unusual foxes eat reg| +430|177535|7536|1|16|25800.48|0.01|0.01|R|F|1993-02-24|1993-03-05|1993-02-28|TAKE BACK RETURN|AIR|ckly ruthless dependencies| +431|105665|8176|1|50|83533.00|0.01|0.00|N|O|1996-11-01|1996-09-16|1996-11-09|TAKE BACK RETURN|FOB|into beans. express accounts wake before t| +431|103598|1129|2|47|75274.73|0.08|0.05|N|O|1996-07-23|1996-09-30|1996-08-03|TAKE BACK RETURN|FOB|al foxes after the regular, express foxes w| +456|1493|1494|1|31|43229.19|0.02|0.00|A|F|1993-09-18|1993-09-27|1993-10-14|NONE|RAIL|ans. blithely special de| +456|91739|6758|2|10|17307.30|0.10|0.07|R|F|1993-08-30|1993-09-23|1993-09-21|COLLECT COD|REG AIR|heodolites s| +456|57215|9721|3|9|10549.89|0.01|0.01|A|F|1993-09-12|1993-09-02|1993-10-03|TAKE BACK RETURN|REG AIR|r, final packages above the do| +456|198829|8830|4|49|94463.18|0.04|0.06|R|F|1993-10-09|1993-08-04|1993-10-12|NONE|AIR|gedly express requests at t| +457|38860|1364|1|6|10793.16|0.09|0.07|N|O|1997-12-14|1997-12-10|1997-12-16|DELIVER IN PERSON|AIR|ts wake slyly blithely special deposits.| +457|104381|9402|2|30|41561.40|0.08|0.06|N|O|1997-09-30|1997-12-01|1997-10-29|NONE|RAIL|eposits sleep. dependencies | +457|121229|1230|3|33|41257.26|0.03|0.06|N|O|1997-12-29|1997-11-21|1998-01-24|DELIVER IN PERSON|FOB|lly. ironic requests wake even t| +457|93724|3725|4|35|60120.20|0.02|0.08|N|O|1997-12-11|1997-12-13|1998-01-06|DELIVER IN PERSON|FOB|carefully above the blithely special deposi| +457|19039|1541|5|2|1916.06|0.10|0.07|N|O|1997-09-26|1997-11-22|1997-10-16|TAKE BACK RETURN|MAIL| furiously. ironic dependencies| +457|179085|4120|6|11|12804.88|0.00|0.02|N|O|1997-12-31|1997-10-24|1998-01-28|TAKE BACK RETURN|TRUCK|quickly pending excuses. enticing| +458|149529|4558|1|16|25256.32|0.00|0.05|N|O|1996-11-09|1996-09-06|1996-12-01|TAKE BACK RETURN|REG AIR|e slyly idle, sly theo| +459|125897|922|1|14|26920.46|0.04|0.08|R|F|1994-05-13|1994-04-25|1994-05-14|DELIVER IN PERSON|REG AIR|ckages wake blithely above the car| +459|141237|6266|2|36|46016.28|0.02|0.00|R|F|1994-05-24|1994-05-01|1994-06-04|NONE|SHIP|iously even packages wak| +459|154808|2354|3|19|35393.20|0.06|0.08|R|F|1994-04-05|1994-05-05|1994-04-13|NONE|AIR|furiously bo| +459|54359|6865|4|39|51220.65|0.08|0.08|R|F|1994-05-01|1994-03-14|1994-05-05|TAKE BACK RETURN|FOB|unusual instru| +459|5482|483|5|44|61049.12|0.06|0.01|A|F|1994-05-16|1994-04-06|1994-05-23|DELIVER IN PERSON|AIR|the dependencie| +459|134309|9336|6|3|4029.90|0.08|0.00|R|F|1994-02-10|1994-03-15|1994-03-11|COLLECT COD|RAIL|silent, express deposits grow silently a| +459|129979|7516|7|28|56251.16|0.00|0.07|R|F|1994-04-30|1994-03-20|1994-05-17|TAKE BACK RETURN|AIR|s against the furiously idle idea| +460|142998|541|1|4|8163.96|0.08|0.01|R|F|1994-11-01|1994-11-09|1994-11-29|DELIVER IN PERSON|RAIL|oxes integrate furiously special| +460|154032|9063|2|35|38011.05|0.00|0.03|R|F|1994-11-12|1994-11-27|1994-12-01|DELIVER IN PERSON|RAIL|inal deposits| +460|6510|1511|3|20|28330.20|0.03|0.04|A|F|1994-10-30|1994-10-25|1994-11-18|NONE|TRUCK|- fluffily unusual requests use sly| +460|8913|6414|4|29|52835.39|0.08|0.05|A|F|1994-10-29|1994-11-05|1994-11-06|COLLECT COD|MAIL|slyly pending ac| +461|62157|4664|1|35|39170.25|0.09|0.05|N|O|1996-03-09|1996-04-03|1996-03-24|COLLECT COD|TRUCK|fully final braids.| +461|68919|1426|2|44|83068.04|0.02|0.04|N|O|1996-02-05|1996-03-31|1996-03-01|DELIVER IN PERSON|MAIL|s. slow ideas nag carefully even, fina| +461|113215|5727|3|7|8597.47|0.05|0.07|N|O|1996-04-27|1996-02-22|1996-05-08|COLLECT COD|RAIL|pendencies. carefully expres| +461|194896|7416|4|20|39817.80|0.07|0.07|N|O|1996-03-12|1996-04-01|1996-03-29|NONE|FOB|sts sleep quickly. furiously close | +461|929|930|5|16|29278.72|0.00|0.03|N|O|1996-03-21|1996-03-07|1996-04-16|NONE|RAIL|iously regular theodolit| +461|10619|8123|6|23|35181.03|0.08|0.04|N|O|1996-04-07|1996-04-08|1996-04-30|COLLECT COD|RAIL|ons will are. f| +462|127668|181|1|18|30521.88|0.02|0.07|N|O|1996-05-01|1996-02-19|1996-05-19|COLLECT COD|SHIP|ructions. | +463|61655|1656|1|44|71132.60|0.04|0.08|N|O|1997-12-25|1998-01-20|1997-12-27|NONE|MAIL|furiously quickly final p| +463|23500|8505|2|47|66904.50|0.02|0.05|N|O|1998-01-14|1998-02-15|1998-02-12|NONE|TRUCK|packages sleep pending, ir| +463|149105|4134|3|7|8078.70|0.10|0.00|N|O|1998-02-15|1998-01-27|1998-03-02|NONE|RAIL|egularly among the fluffily regular depo| +463|2926|2927|4|9|16460.28|0.05|0.08|N|O|1997-12-26|1998-03-10|1998-01-09|DELIVER IN PERSON|AIR|y final packages haggle about| +488|176400|8918|1|46|67914.40|0.05|0.00|N|O|1997-12-08|1997-12-30|1998-01-05|NONE|RAIL|riously packages-- account| +489|166329|1362|1|32|44650.24|0.10|0.04|N|O|1998-02-06|1998-02-05|1998-02-26|DELIVER IN PERSON|MAIL|silently above the speci| +490|96334|6335|1|47|62525.51|0.03|0.04|N|O|1996-08-18|1996-07-23|1996-08-19|COLLECT COD|AIR|equests. unusual pinto beans poach. furio| +490|81961|4470|2|37|71889.52|0.09|0.03|N|O|1996-08-08|1996-08-30|1996-08-31|NONE|AIR|haggle dolphins. bold dependencies acr| +491|121950|9487|1|23|45354.85|0.01|0.01|R|F|1994-03-18|1994-04-29|1994-04-12|TAKE BACK RETURN|AIR|ey players against the bold instruct| +491|6067|6068|2|30|29191.80|0.07|0.07|R|F|1994-04-13|1994-05-04|1994-05-05|NONE|REG AIR|osits. doggedly| +491|161794|4311|3|23|42683.17|0.04|0.01|R|F|1994-05-07|1994-06-04|1994-05-28|COLLECT COD|REG AIR|ounts are stealthily. carefully | +491|57327|7328|4|31|39813.92|0.06|0.05|R|F|1994-05-18|1994-04-18|1994-06-15|TAKE BACK RETURN|MAIL|se dependencies. carefully pending platel| +491|83298|823|5|20|25625.80|0.02|0.03|A|F|1994-07-08|1994-04-30|1994-07-17|DELIVER IN PERSON|TRUCK|cording to the f| +492|6842|6843|1|49|85693.16|0.03|0.01|A|F|1994-07-04|1994-07-22|1994-07-29|COLLECT COD|REG AIR|uriously blithely even accounts. caref| +492|185013|7532|2|14|15372.14|0.07|0.05|R|F|1994-05-30|1994-06-29|1994-06-16|NONE|REG AIR|oost blithely inside the ironic| +492|104477|4478|3|13|19259.11|0.02|0.05|R|F|1994-05-02|1994-07-16|1994-05-27|DELIVER IN PERSON|RAIL|ly regular frets use across the furio| +492|140327|2842|4|27|36917.64|0.10|0.08|A|F|1994-06-18|1994-05-24|1994-07-18|TAKE BACK RETURN|RAIL| the carefully regular pinto beans ma| +493|73197|3198|1|30|35105.70|0.04|0.05|A|F|1993-10-26|1993-12-01|1993-11-23|TAKE BACK RETURN|RAIL|ckly after the stealthy accounts. | +493|12911|7914|2|49|89371.59|0.05|0.00|R|F|1993-10-18|1993-10-28|1993-11-06|COLLECT COD|TRUCK|olites wake furiously final reques| +493|186974|4529|3|41|84499.77|0.10|0.02|A|F|1993-09-21|1993-12-01|1993-10-11|DELIVER IN PERSON|REG AIR|ests. pending account| +493|66347|6348|4|7|9193.38|0.04|0.05|R|F|1993-11-16|1993-10-27|1993-12-11|COLLECT COD|SHIP|inal packages wake reque| +493|92380|4890|5|16|21958.08|0.02|0.06|A|F|1993-12-31|1993-11-07|1994-01-19|TAKE BACK RETURN|FOB|round the carefully | +493|26773|4280|6|20|33995.40|0.03|0.06|A|F|1993-10-04|1993-11-27|1993-10-10|NONE|AIR|ronic deposits cajole | +494|27127|4634|1|7|7378.84|0.09|0.06|R|F|1994-08-25|1994-06-30|1994-08-28|NONE|FOB|gular packages sleep blithely above the e| +495|86243|6244|1|12|14750.88|0.08|0.02|A|F|1993-11-13|1993-09-16|1993-12-07|NONE|RAIL|oost fluffily. | +495|77937|7938|2|2|3829.86|0.00|0.06|A|F|1993-11-21|1993-09-02|1993-12-01|COLLECT COD|AIR|tions. ironic instructions cajole above | +495|83467|5976|3|7|10153.22|0.05|0.08|R|F|1993-09-10|1993-09-22|1993-09-23|COLLECT COD|MAIL|its sleep according to the care| +495|22280|2281|4|33|39675.24|0.01|0.08|A|F|1993-08-27|1993-09-27|1993-09-16|DELIVER IN PERSON|FOB|ckages eat against the regular dep| +520|1744|9245|1|30|49372.20|0.00|0.04|N|O|1996-02-24|1996-04-27|1996-02-26|TAKE BACK RETURN|SHIP| ironic pinto beans haggle even pin| +520|101256|1257|2|5|6286.25|0.00|0.08|N|O|1996-05-28|1996-03-25|1996-06-26|NONE|FOB|slyly regular foxes. sometimes pending p| +521|6679|6680|1|42|66598.14|0.07|0.08|R|F|1993-09-02|1993-08-11|1993-09-17|COLLECT COD|SHIP|, bold packages kindle among the | +521|53363|8374|2|49|64501.64|0.01|0.06|R|F|1993-05-26|1993-08-03|1993-06-10|TAKE BACK RETURN|MAIL|ounts wake careful| +521|59821|9822|3|19|33835.58|0.05|0.08|R|F|1993-07-24|1993-06-26|1993-08-18|COLLECT COD|AIR|regular requests. careful| +521|5752|8253|4|50|82887.50|0.08|0.04|A|F|1993-06-20|1993-08-04|1993-07-05|TAKE BACK RETURN|FOB|was furiously unusual asymptotes.| +522|15528|5529|1|48|69288.96|0.02|0.08|A|F|1992-11-18|1992-11-16|1992-12-10|DELIVER IN PERSON|SHIP|lites. fur| +522|174599|2151|2|10|16735.90|0.00|0.02|R|F|1992-08-31|1992-10-30|1992-09-27|TAKE BACK RETURN|SHIP|ckly ironic pinto beans are. furiously unu| +523|68074|8075|1|24|25009.68|0.03|0.00|R|F|1993-05-07|1993-04-27|1993-05-26|COLLECT COD|TRUCK|al foxes after the fluffil| +523|109979|7510|2|25|49724.25|0.06|0.07|A|F|1993-03-17|1993-05-07|1993-03-26|TAKE BACK RETURN|AIR| deposits | +523|16661|4165|3|9|14198.94|0.10|0.03|A|F|1993-03-22|1993-05-07|1993-03-26|NONE|FOB|ly final dinos. courts eat permanent pl| +524|88600|6125|1|1|1588.60|0.10|0.02|N|O|1995-06-25|1995-05-14|1995-07-11|DELIVER IN PERSON|MAIL|ly regular deposits. slyly regular pinto| +524|99306|6834|2|40|52212.00|0.00|0.03|N|O|1995-07-13|1995-05-16|1995-07-27|COLLECT COD|TRUCK| of the theodolit| +525|20062|7569|1|44|43210.64|0.10|0.07|N|O|1996-08-16|1996-09-12|1996-08-17|TAKE BACK RETURN|FOB|carefully unusual packages run| +526|168772|3805|1|7|12885.39|0.04|0.05|A|F|1993-09-10|1993-09-09|1993-10-03|TAKE BACK RETURN|RAIL|es above the | +526|136242|8756|2|9|11504.16|0.10|0.07|R|F|1993-08-18|1993-09-11|1993-09-04|NONE|RAIL|y silent deposits. regular court| +526|8250|8251|3|29|33589.25|0.09|0.01|A|F|1993-09-24|1993-08-02|1993-10-09|COLLECT COD|AIR|ans are. pint| +526|43584|8593|4|36|54992.88|0.03|0.05|A|F|1993-07-26|1993-08-19|1993-08-01|COLLECT COD|MAIL|sts. regular instructions above t| +526|109312|9313|5|28|36996.68|0.01|0.03|A|F|1993-08-09|1993-09-07|1993-08-22|DELIVER IN PERSON|MAIL|ress, final platelets affix fu| +527|117050|9562|1|10|10670.50|0.02|0.07|N|O|1998-10-19|1998-08-28|1998-10-25|DELIVER IN PERSON|REG AIR|g boldly even as| +527|58660|6176|2|29|46941.14|0.07|0.01|N|O|1998-10-18|1998-08-30|1998-11-06|NONE|MAIL|ole unusual,| +527|83117|5626|3|27|29702.97|0.03|0.05|N|O|1998-10-08|1998-09-12|1998-11-06|DELIVER IN PERSON|RAIL| unusual t| +527|138793|1307|4|23|42131.17|0.02|0.07|N|O|1998-09-01|1998-09-01|1998-09-15|DELIVER IN PERSON|FOB|, regular requests-- fluffily| +527|78648|1156|5|16|26026.24|0.01|0.04|N|O|1998-08-29|1998-10-07|1998-09-28|DELIVER IN PERSON|TRUCK|s. ironic platelets kindle. re| +527|23090|8095|6|10|10130.90|0.02|0.04|N|O|1998-10-16|1998-08-12|1998-11-08|NONE|TRUCK|uests are slyly about the slyly expres| +527|57588|5104|7|16|24729.28|0.04|0.01|N|O|1998-10-11|1998-08-15|1998-10-20|TAKE BACK RETURN|MAIL|ess accounts sleep. deposits alongs| +552|72038|2039|1|8|8080.24|0.02|0.04|A|F|1993-12-07|1994-02-08|1993-12-13|COLLECT COD|FOB|l packages haggle qu| +552|138807|1321|2|26|47990.80|0.02|0.08|A|F|1993-12-09|1993-12-21|1994-01-06|TAKE BACK RETURN|TRUCK|sual ideas. slyly | +552|117947|2970|3|1|1964.94|0.08|0.07|A|F|1994-02-06|1993-12-30|1994-02-16|DELIVER IN PERSON|TRUCK|inal, bold dep| +552|122500|2501|4|36|54810.00|0.04|0.00|A|F|1994-01-24|1993-12-26|1994-01-27|TAKE BACK RETURN|REG AIR|hang carefully. slyly regular depo| +552|45919|928|5|27|50352.57|0.01|0.02|R|F|1994-03-09|1994-02-03|1994-04-08|DELIVER IN PERSON|TRUCK|he pending instru| +553|14028|1532|1|38|35796.76|0.00|0.02|N|O|1996-06-01|1996-06-20|1996-06-05|COLLECT COD|RAIL|s nag along the carefully express ideas| +553|158685|8686|2|26|45335.68|0.06|0.06|N|O|1996-07-14|1996-05-02|1996-07-16|NONE|RAIL| thinly after the pending pinto be| +553|13502|8505|3|32|45296.00|0.02|0.03|N|O|1996-06-24|1996-06-21|1996-07-05|DELIVER IN PERSON|SHIP|the fluffily blithe| +553|125377|402|4|8|11218.96|0.08|0.02|N|O|1996-04-28|1996-05-23|1996-04-30|TAKE BACK RETURN|SHIP|furiously quietly final theodolites;| +553|199844|7402|5|1|1943.84|0.01|0.06|N|O|1996-06-26|1996-05-21|1996-07-20|COLLECT COD|MAIL|the pending, unusua| +554|9925|7426|1|24|44038.08|0.09|0.01|A|F|1992-11-24|1992-11-26|1992-12-09|TAKE BACK RETURN|RAIL|t dependencies boost requests. express, ev| +554|2228|4729|2|6|6781.32|0.01|0.08|A|F|1992-12-14|1992-12-24|1993-01-10|DELIVER IN PERSON|TRUCK|ven deposits | +554|42797|310|3|5|8698.95|0.03|0.05|A|F|1992-10-12|1992-12-06|1992-10-31|NONE|MAIL|s. furiously pending packages | +554|86661|1678|4|13|21419.58|0.10|0.04|R|F|1992-12-28|1992-11-10|1993-01-12|TAKE BACK RETURN|MAIL|ounts. ironic, even foxes| +554|97245|7246|5|21|26087.04|0.09|0.03|R|F|1992-11-25|1992-11-10|1992-12-24|NONE|MAIL|ins. boldly even a| +555|11052|1053|1|10|9630.50|0.08|0.06|A|F|1994-06-16|1994-07-28|1994-07-12|COLLECT COD|SHIP|ly silent ideas integrate furiously above t| +555|137816|7817|2|41|76006.21|0.00|0.05|A|F|1994-08-01|1994-08-03|1994-08-10|COLLECT COD|MAIL|ts mold furiously. slyly ironic foxes b| +556|178198|8199|1|39|49771.41|0.10|0.00|A|F|1993-05-02|1993-06-19|1993-05-30|NONE|REG AIR|c pinto beans solve furiousl| +556|165690|723|2|11|19312.59|0.03|0.02|R|F|1993-06-18|1993-05-12|1993-07-17|NONE|MAIL|lly silent packages; furiously bold deposit| +556|141764|9307|3|7|12640.32|0.10|0.08|A|F|1993-06-18|1993-05-07|1993-06-27|COLLECT COD|MAIL|cingly even requests are. quickly | +556|13512|6014|4|22|31361.22|0.01|0.05|R|F|1993-06-07|1993-05-18|1993-07-02|NONE|REG AIR|al pinto beans unwind slyly | +556|81832|6849|5|36|65297.88|0.04|0.01|A|F|1993-06-24|1993-06-02|1993-06-28|NONE|FOB| blithely unusual | +556|145459|5460|6|44|66195.80|0.02|0.06|R|F|1993-05-31|1993-05-24|1993-06-07|NONE|RAIL|y regular dependenc| +556|128424|3449|7|46|66811.32|0.08|0.08|A|F|1993-05-11|1993-05-31|1993-06-09|TAKE BACK RETURN|SHIP|ross the bold depo| +557|16735|4239|1|35|57810.55|0.02|0.07|N|O|1998-06-19|1998-05-12|1998-06-21|TAKE BACK RETURN|MAIL|ng realms s| +557|53215|3216|2|1|1168.21|0.06|0.08|N|O|1998-05-15|1998-05-11|1998-05-30|COLLECT COD|SHIP|equests after the carefully | +558|32496|6|1|23|32855.27|0.06|0.01|R|F|1995-03-05|1995-02-15|1995-03-20|COLLECT COD|REG AIR|kages. bold T| +558|159862|2378|2|46|88405.56|0.01|0.05|A|F|1995-04-22|1995-02-24|1995-05-16|COLLECT COD|REG AIR|g to the blithely silent fox| +558|199857|4896|3|8|15654.80|0.08|0.08|R|F|1995-04-06|1995-01-29|1995-04-08|TAKE BACK RETURN|REG AIR|regular, idle dependencies.| +558|183845|3846|4|4|7715.36|0.03|0.03|R|F|1995-03-05|1995-02-07|1995-03-13|NONE|TRUCK|above the carefull| +558|80352|353|5|38|50629.30|0.04|0.06|R|F|1995-03-31|1995-01-26|1995-04-04|NONE|REG AIR|its are slyly careful ideas. blithely| +558|76054|8562|6|16|16480.80|0.08|0.08|A|F|1995-02-11|1995-02-06|1995-02-21|TAKE BACK RETURN|MAIL|sly theodolites. slyly silent deposi| +559|5020|5021|1|9|8325.18|0.05|0.08|A|F|1994-01-04|1994-01-23|1994-01-19|TAKE BACK RETURN|TRUCK|r deposits cajole furious| +559|163789|1338|2|1|1852.78|0.01|0.01|A|F|1994-02-10|1994-01-13|1994-03-07|TAKE BACK RETURN|MAIL|lly ironic packages cajole fluffi| +559|195492|8012|3|26|41274.74|0.04|0.05|A|F|1994-02-16|1994-01-11|1994-03-16|DELIVER IN PERSON|SHIP|ly blithely regular| +584|81499|6516|1|36|53297.64|0.02|0.03|N|O|1995-07-30|1995-10-04|1995-08-21|NONE|REG AIR|dle. furiously final pinto beans u| +584|144542|4543|2|35|55528.90|0.09|0.05|N|O|1995-10-20|1995-10-15|1995-11-10|TAKE BACK RETURN|SHIP|ly enticing platelets use acc| +585|196983|6984|1|39|81119.22|0.02|0.08|N|O|1998-02-25|1998-02-27|1998-03-25|COLLECT COD|FOB|uickly expres| +585|77802|7803|2|9|16018.20|0.06|0.05|N|O|1998-01-13|1998-03-02|1998-01-23|TAKE BACK RETURN|TRUCK| slyly pending accounts cajo| +585|13463|5965|3|26|35787.96|0.00|0.03|N|O|1998-03-02|1998-02-05|1998-03-05|DELIVER IN PERSON|REG AIR|ests wake carefully-- bold d| +585|65595|608|4|4|6242.36|0.09|0.01|N|O|1998-01-19|1998-01-07|1998-02-10|TAKE BACK RETURN|AIR|ounts. express ideas sleep furiousl| +586|53170|5676|1|49|55035.33|0.10|0.04|N|O|1995-12-06|1996-01-15|1995-12-14|NONE|REG AIR|in fluffily according to the re| +586|17319|2322|2|1|1236.31|0.07|0.06|N|O|1995-12-19|1996-01-27|1996-01-05|NONE|AIR| express deposits. regular| +586|68743|6262|3|3|5135.22|0.05|0.07|N|O|1995-12-25|1996-01-14|1996-01-08|NONE|FOB| the pains. quickly expr| +586|161753|6786|4|26|47183.50|0.06|0.02|N|O|1995-12-28|1996-02-18|1996-01-13|COLLECT COD|TRUCK|ide of the| +586|179922|2440|5|9|18017.28|0.01|0.03|N|O|1996-02-04|1995-12-26|1996-02-18|NONE|SHIP| requests cajole quickly about the| +586|135276|7790|6|17|22291.59|0.10|0.02|N|O|1996-03-18|1996-01-17|1996-04-01|NONE|REG AIR|ect against the regul| +587|164287|1836|1|31|41889.68|0.04|0.07|A|F|1994-10-08|1994-09-26|1994-10-19|DELIVER IN PERSON|RAIL|e the pending requests. fluffily quick | +587|164822|9855|2|12|22641.84|0.04|0.06|R|F|1994-08-06|1994-09-03|1994-08-21|TAKE BACK RETURN|SHIP|ly. ironic, ironic | +588|118642|3665|1|40|66425.60|0.03|0.01|N|O|1996-04-18|1996-03-09|1996-05-10|DELIVER IN PERSON|MAIL|ts sleep slyly special, final pinto bean| +589|56155|3671|1|16|17778.40|0.00|0.02|R|F|1992-05-29|1992-04-08|1992-06-21|NONE|RAIL|yly unusual pinto b| +589|192208|2209|2|29|37705.80|0.06|0.01|A|F|1992-03-04|1992-03-22|1992-03-18|TAKE BACK RETURN|SHIP|x furiously according to the slyly pend| +589|33603|8610|3|19|29195.40|0.05|0.02|R|F|1992-05-14|1992-03-24|1992-05-19|NONE|TRUCK|ven account| +589|158130|8131|4|38|45148.94|0.06|0.02|A|F|1992-05-09|1992-05-02|1992-05-21|NONE|REG AIR|regular platelets. quickly final depos| +589|85474|491|5|33|48162.51|0.08|0.03|A|F|1992-04-01|1992-04-08|1992-04-20|DELIVER IN PERSON|REG AIR|totes. slyly ironic deposits daz| +590|15243|7745|1|41|47487.84|0.07|0.00|R|F|1993-09-02|1993-10-22|1993-09-05|DELIVER IN PERSON|FOB|hely regular excuses nag. express, even a| +590|187442|7443|2|10|15294.40|0.10|0.01|R|F|1993-10-08|1993-11-14|1993-11-03|COLLECT COD|FOB|lly among the account| +590|130390|391|3|4|5681.56|0.03|0.06|R|F|1993-09-12|1993-10-09|1993-09-23|DELIVER IN PERSON|AIR|ly ironic | +591|78265|5787|1|20|24865.20|0.03|0.04|R|F|1993-12-30|1993-11-22|1994-01-05|NONE|MAIL|ages are among the carefu| +591|192840|5360|2|20|38656.80|0.02|0.00|A|F|1994-02-11|1993-11-24|1994-03-01|DELIVER IN PERSON|REG AIR|ly regular instr| +616|158840|8841|1|7|13291.88|0.06|0.01|N|O|1997-10-29|1997-12-23|1997-11-12|COLLECT COD|MAIL| packages? final accounts boost blithely f| +616|10306|2808|2|9|10946.70|0.05|0.00|N|O|1997-10-13|1997-12-23|1997-10-17|DELIVER IN PERSON|SHIP|are blithely| +617|90569|3079|1|4|6238.24|0.00|0.06|A|F|1994-07-04|1994-07-19|1994-07-13|DELIVER IN PERSON|FOB| above the packages ca| +617|177811|5363|2|13|24554.53|0.08|0.02|A|F|1994-07-11|1994-08-12|1994-07-15|NONE|MAIL| carefully accordi| +617|56851|9357|3|7|12654.95|0.07|0.01|R|F|1994-08-07|1994-07-02|1994-08-27|NONE|REG AIR|st fluffily after| +617|82565|7582|4|29|44879.24|0.07|0.07|R|F|1994-06-24|1994-08-16|1994-07-09|NONE|SHIP|s. carefully even theodolites wake| +617|69282|1789|5|35|43794.80|0.05|0.04|R|F|1994-06-29|1994-07-17|1994-06-30|NONE|MAIL|ual pinto | +618|26318|3825|1|28|34840.68|0.04|0.05|A|F|1992-09-09|1992-11-16|1992-09-18|NONE|FOB|nal deposits sleep carefully atop the s| +618|126437|8950|2|11|16097.73|0.07|0.02|R|F|1992-09-27|1992-11-08|1992-10-18|TAKE BACK RETURN|SHIP|ronic foxes use always. blit| +618|17108|4612|3|29|29727.90|0.10|0.04|A|F|1992-10-02|1992-10-24|1992-10-24|NONE|FOB|e ironic courts. slyly bold theodoli| +619|163490|1039|1|29|45051.21|0.06|0.08|R|F|1993-07-18|1993-07-12|1993-07-30|NONE|SHIP|platelets; unusual requests agai| +619|163916|6433|2|45|89095.95|0.01|0.04|R|F|1993-05-30|1993-07-23|1993-06-21|COLLECT COD|SHIP|lly along the flu| +620|141960|4475|1|19|38037.24|0.05|0.06|N|O|1995-11-30|1995-10-21|1995-12-21|TAKE BACK RETURN|TRUCK|lar pinto bean| +620|106932|1953|2|44|85312.92|0.00|0.08|N|O|1995-09-18|1995-10-11|1995-09-24|TAKE BACK RETURN|MAIL|s. slyly express requ| +621|54115|6621|1|50|53455.50|0.04|0.05|A|F|1992-07-12|1992-08-24|1992-07-19|NONE|RAIL|. fluffily final packages wake pending,| +621|106908|6909|2|27|51702.30|0.10|0.07|A|F|1992-09-15|1992-08-04|1992-10-05|DELIVER IN PERSON|FOB|xpress excuses| +621|199420|1940|3|38|57737.96|0.00|0.03|A|F|1992-08-23|1992-08-19|1992-08-28|COLLECT COD|MAIL|uriously ironic| +621|41130|8643|4|15|16066.95|0.07|0.00|R|F|1992-07-29|1992-09-15|1992-08-01|COLLECT COD|MAIL|s nod slyly about t| +622|117345|9857|1|13|17710.42|0.09|0.04|N|O|1997-08-25|1997-08-22|1997-09-04|COLLECT COD|AIR|y even dependencie| +622|17258|9760|2|24|28206.00|0.02|0.05|N|O|1997-09-19|1997-08-25|1997-10-13|DELIVER IN PERSON|TRUCK| the carefully final instructions-- | +622|42470|7479|3|40|56498.80|0.04|0.08|N|O|1997-09-06|1997-09-18|1997-09-12|TAKE BACK RETURN|FOB|gular requests sleep fu| +622|185287|324|4|31|42540.68|0.00|0.07|N|O|1997-08-14|1997-08-09|1997-09-04|TAKE BACK RETURN|TRUCK|s ironic reques| +622|102901|2902|5|19|36174.10|0.03|0.01|N|O|1997-07-23|1997-08-02|1997-08-03|TAKE BACK RETURN|TRUCK|carefully unusual a| +623|2392|2393|1|39|50481.21|0.00|0.04|A|F|1995-04-02|1995-05-29|1995-04-04|TAKE BACK RETURN|AIR|ajole slowly among the carefully final fox| +623|194888|7408|2|42|83280.96|0.10|0.04|N|O|1995-06-19|1995-05-02|1995-07-15|COLLECT COD|FOB| theodolites. slyl| +648|66613|9120|1|6|9477.66|0.08|0.01|N|O|1997-02-14|1997-01-30|1997-02-21|TAKE BACK RETURN|MAIL|ts. fluffily thin r| +648|156878|6879|2|46|89004.02|0.03|0.05|N|O|1997-04-01|1997-03-04|1997-04-04|DELIVER IN PERSON|RAIL|sleep slyly! carefully ironic asymptote| +648|37255|4765|3|17|20268.25|0.04|0.07|N|O|1997-01-23|1997-01-12|1997-02-13|TAKE BACK RETURN|REG AIR|, express packages grow over | +648|133313|853|4|41|55198.71|0.01|0.02|N|O|1996-12-24|1997-02-24|1997-01-04|DELIVER IN PERSON|RAIL| packages cajole. careful| +648|184332|4333|5|22|31159.26|0.10|0.04|N|O|1997-02-04|1997-01-14|1997-02-25|DELIVER IN PERSON|MAIL|g instruct| +648|51209|6220|6|8|9281.60|0.00|0.05|N|O|1997-02-07|1997-01-21|1997-02-18|DELIVER IN PERSON|RAIL|tructions nag fluf| +649|20181|182|1|36|39642.48|0.02|0.08|R|F|1994-03-19|1994-01-24|1994-04-05|TAKE BACK RETURN|MAIL|s boost blithely a| +649|172880|432|2|21|41010.48|0.10|0.05|A|F|1994-02-22|1994-02-21|1994-02-26|DELIVER IN PERSON|TRUCK|lithely even requests| +649|190477|8035|3|36|56428.92|0.00|0.06|A|F|1994-03-19|1994-03-18|1994-03-20|TAKE BACK RETURN|RAIL|ffily quickly ir| +650|40725|5734|1|36|59965.92|0.10|0.07|A|F|1994-11-24|1994-12-09|1994-11-26|TAKE BACK RETURN|TRUCK|nag against the slyly ironic pinto bea| +650|63132|3133|2|19|20807.47|0.01|0.05|A|F|1994-12-19|1994-11-23|1995-01-09|NONE|FOB|structions past the caref| +650|51526|4032|3|28|41370.56|0.07|0.08|A|F|1994-12-11|1994-12-15|1994-12-24|COLLECT COD|REG AIR|ackages. even foxes use! bo| +650|187933|7934|4|15|30313.95|0.09|0.04|A|F|1995-01-18|1994-12-04|1995-01-24|TAKE BACK RETURN|SHIP|le furious| +650|178181|3216|5|47|59181.46|0.06|0.02|R|F|1994-10-31|1994-12-10|1994-11-03|TAKE BACK RETURN|FOB|posits. closely iron| +650|75319|7827|6|37|47889.47|0.08|0.07|R|F|1994-11-02|1994-11-06|1994-12-02|COLLECT COD|TRUCK|refully. quickly special depths h| +650|79363|9364|7|7|9396.52|0.10|0.08|A|F|1994-10-14|1994-11-30|1994-11-04|NONE|RAIL|gage carefully express pearls. quickly fina| +651|47090|4603|1|19|19704.71|0.07|0.03|A|F|1992-11-12|1992-09-11|1992-12-06|COLLECT COD|AIR| packages nag busily along the ironic | +651|28098|5605|2|50|51304.50|0.04|0.08|A|F|1992-11-10|1992-10-31|1992-12-07|TAKE BACK RETURN|SHIP|wly bold request| +652|100363|2874|1|9|12270.24|0.09|0.04|A|F|1994-08-27|1994-09-07|1994-08-28|NONE|RAIL|riously even waters sle| +652|194764|2322|2|7|13011.32|0.04|0.02|A|F|1994-09-10|1994-08-06|1994-09-28|NONE|AIR|yly at the fluffily re| +652|197365|2404|3|11|16085.96|0.06|0.06|A|F|1994-08-18|1994-09-25|1994-08-28|DELIVER IN PERSON|TRUCK|xes sleep furiously | +652|104526|2057|4|13|19896.76|0.04|0.05|R|F|1994-07-08|1994-08-07|1994-08-01|DELIVER IN PERSON|SHIP|carefully brav| +653|67857|5376|1|2|3649.70|0.03|0.04|N|O|1997-07-10|1997-09-19|1997-08-08|TAKE BACK RETURN|MAIL|ent packages. furiousl| +653|65327|2846|2|37|47815.84|0.05|0.02|N|O|1997-07-17|1997-08-29|1997-08-12|TAKE BACK RETURN|SHIP|thely. bold, ironic | +653|141945|1946|3|40|79477.60|0.02|0.05|N|O|1997-09-27|1997-08-24|1997-10-13|DELIVER IN PERSON|SHIP|atelets. final, final requests sleep. packa| +653|69044|6563|4|31|31404.24|0.01|0.08|N|O|1997-10-31|1997-09-12|1997-11-18|NONE|SHIP|ests. slyly final accounts | +653|7390|4891|5|9|11676.51|0.09|0.05|N|O|1997-08-29|1997-09-26|1997-09-10|DELIVER IN PERSON|RAIL|ccounts detect ag| +654|137729|243|1|6|10600.32|0.00|0.00|N|O|1997-12-31|1997-12-07|1998-01-03|DELIVER IN PERSON|SHIP|e quickly final pac| +655|175397|7915|1|31|45644.09|0.04|0.00|N|O|1996-05-08|1996-07-10|1996-05-14|NONE|MAIL|he blithely enticing packages c| +655|95465|2993|2|32|46734.72|0.10|0.06|N|O|1996-05-25|1996-07-13|1996-06-24|NONE|MAIL|es wake quickly reg| +655|70388|389|3|17|23092.46|0.05|0.02|N|O|1996-04-23|1996-05-29|1996-05-18|DELIVER IN PERSON|SHIP|st furiously carefully ironic | +655|8091|8092|4|48|47956.32|0.06|0.08|N|O|1996-06-05|1996-05-29|1996-07-01|COLLECT COD|SHIP|furiously even accounts.| +680|26310|8813|1|37|45743.47|0.01|0.01|N|O|1996-05-20|1996-06-05|1996-06-12|COLLECT COD|SHIP|y final asymptotes are slyly pinto beans. i| +681|180200|201|1|34|43526.80|0.06|0.02|N|O|1997-07-30|1997-06-22|1997-08-22|NONE|MAIL| furiously bold | +681|17367|7368|2|30|38530.80|0.02|0.04|N|O|1997-09-15|1997-06-30|1997-09-24|COLLECT COD|FOB| carefully after the blithely ironic | +681|76619|4141|3|9|14360.49|0.08|0.08|N|O|1997-07-23|1997-07-23|1997-07-28|NONE|SHIP|encies cajole furiously carefully special r| +681|123627|8652|4|11|18156.82|0.08|0.02|N|O|1997-07-24|1997-07-11|1997-08-21|NONE|REG AIR| even ideas are carefully dogged, | +682|182504|7541|1|13|20624.50|0.05|0.02|R|F|1993-09-21|1993-08-18|1993-10-11|TAKE BACK RETURN|RAIL|t the even requests wake according to th| +682|135921|5922|2|22|43052.24|0.05|0.03|A|F|1993-09-22|1993-09-05|1993-10-12|DELIVER IN PERSON|REG AIR|y blithely unusual deposits. regular dep| +682|22433|9940|3|43|58283.49|0.05|0.02|R|F|1993-07-14|1993-08-30|1993-07-17|DELIVER IN PERSON|AIR|y express theodolites ar| +683|150301|5332|1|5|6756.50|0.00|0.05|R|F|1992-07-14|1992-07-27|1992-07-26|TAKE BACK RETURN|TRUCK|hely silent re| +683|103840|8861|2|26|47939.84|0.07|0.04|A|F|1992-07-23|1992-09-13|1992-08-12|DELIVER IN PERSON|REG AIR|structions. even, final| +684|32755|7762|1|3|5063.25|0.05|0.02|R|F|1993-02-17|1993-03-03|1993-03-17|TAKE BACK RETURN|RAIL|ly. finally special acc| +684|98424|5952|2|36|51207.12|0.04|0.04|A|F|1993-03-26|1993-02-21|1993-04-23|TAKE BACK RETURN|REG AIR|across the asymptotes. carefully | +684|9482|4483|3|45|62616.60|0.00|0.03|A|F|1993-03-26|1993-02-28|1993-03-28|DELIVER IN PERSON|RAIL|regular pinto b| +685|72699|7714|1|12|20060.28|0.07|0.05|R|F|1994-11-28|1995-02-06|1994-12-26|COLLECT COD|FOB| foxes. furio| +685|41542|9055|2|16|23736.64|0.04|0.07|R|F|1995-03-01|1994-12-31|1995-03-28|COLLECT COD|MAIL|the slyly sp| +685|180801|3320|3|21|39517.80|0.03|0.06|A|F|1994-12-03|1995-01-19|1994-12-06|TAKE BACK RETURN|REG AIR|ross the slyly silent | +686|193200|758|1|14|18104.80|0.08|0.01|A|F|1993-05-12|1993-04-24|1993-05-30|COLLECT COD|RAIL|carefully silent dugo| +687|98398|908|1|40|55855.60|0.01|0.03|R|F|1993-11-29|1994-01-14|1993-12-14|NONE|FOB| quickly final theodolites haggle bl| +687|167090|2123|2|40|46283.60|0.01|0.03|R|F|1993-12-22|1994-01-19|1993-12-27|NONE|MAIL|to the slyly ironic platelet| +712|6974|9475|1|29|54548.13|0.08|0.01|N|O|1995-09-05|1995-09-21|1995-10-03|NONE|REG AIR|longside of the busily special foxes | +712|9588|4589|2|7|10483.06|0.09|0.06|N|O|1995-11-07|1995-09-08|1995-12-05|TAKE BACK RETURN|SHIP|onic escapades | +712|136917|1944|3|44|85972.04|0.02|0.03|N|O|1995-08-03|1995-10-14|1995-08-22|DELIVER IN PERSON|MAIL|uick instructions| +712|152713|5229|4|14|24719.94|0.05|0.05|N|O|1995-11-12|1995-08-18|1995-12-05|COLLECT COD|AIR|st after the | +712|35178|185|5|49|54545.33|0.03|0.08|N|O|1995-07-31|1995-10-02|1995-08-12|TAKE BACK RETURN|FOB|above the even packages sleep| +713|81954|6971|1|42|81309.90|0.09|0.04|A|F|1993-10-05|1993-09-24|1993-10-29|COLLECT COD|REG AIR|s. silent requests detect about th| +713|198898|8899|2|44|87863.16|0.09|0.07|A|F|1993-09-20|1993-08-27|1993-10-16|NONE|AIR|long the furiously ironic plat| +713|76666|4188|3|32|52565.12|0.05|0.04|R|F|1993-11-03|1993-09-19|1993-11-11|TAKE BACK RETURN|FOB|nst the final pinto beans| +713|109783|4804|4|47|84260.66|0.07|0.04|A|F|1993-09-24|1993-09-20|1993-09-26|TAKE BACK RETURN|FOB|e furiously final instructions. sl| +713|106388|6389|5|49|68324.62|0.06|0.05|R|F|1993-07-22|1993-10-16|1993-08-07|COLLECT COD|MAIL|careful dependencies cajole| +713|55786|3302|6|40|69671.20|0.06|0.08|R|F|1993-09-24|1993-10-04|1993-10-02|DELIVER IN PERSON|RAIL| blithely unusual accounts detect | +713|187448|5003|7|37|56811.28|0.10|0.03|A|F|1993-09-12|1993-09-24|1993-09-28|COLLECT COD|FOB|nal foxes. quickly ironic excuses caj| +714|38395|3402|1|5|6666.95|0.10|0.07|R|F|1995-02-07|1995-01-01|1995-02-22|TAKE BACK RETURN|MAIL| carefully express pack| +714|98604|1114|2|30|48078.00|0.09|0.07|R|F|1994-11-28|1994-11-20|1994-12-03|NONE|SHIP|ccounts. deposits al| +715|117109|7110|1|10|11261.00|0.09|0.06|N|O|1995-09-07|1995-08-18|1995-09-22|NONE|FOB|l packages haggle | +715|40471|7984|2|27|38109.69|0.03|0.05|N|O|1995-07-13|1995-07-27|1995-07-15|DELIVER IN PERSON|TRUCK|y even deposits e| +716|181507|4026|1|31|49243.50|0.01|0.01|N|O|1995-08-08|1995-09-23|1995-09-01|DELIVER IN PERSON|MAIL| regular packages. qu| +716|174446|9481|2|25|38011.00|0.07|0.03|N|O|1995-10-20|1995-10-09|1995-11-19|COLLECT COD|MAIL|r requests are slyly across t| +717|57636|7637|1|26|41434.38|0.10|0.03|N|O|1996-02-06|1996-01-29|1996-02-28|DELIVER IN PERSON|TRUCK|s. quickly regular theodolites abo| +717|78032|540|2|7|7070.21|0.10|0.03|N|O|1996-02-04|1995-12-31|1996-02-17|DELIVER IN PERSON|MAIL|al package| +717|78996|6518|3|18|35549.82|0.00|0.07|N|O|1996-02-18|1995-12-10|1996-03-15|NONE|SHIP|ar deposits. ironic acco| +717|78690|8691|4|27|45054.63|0.02|0.00|N|O|1995-11-25|1996-01-24|1995-11-30|DELIVER IN PERSON|SHIP|. bold, regul| +717|131146|8686|5|42|49439.88|0.00|0.08|N|O|1995-11-12|1996-01-26|1995-11-19|DELIVER IN PERSON|RAIL| fluffily ironi| +717|160204|7753|6|17|21491.40|0.05|0.02|N|O|1996-01-16|1996-01-15|1996-02-14|COLLECT COD|MAIL|usly silent requests. fluffily even waters| +718|91432|1433|1|17|24198.31|0.05|0.03|N|O|1995-07-12|1995-07-21|1995-07-15|NONE|SHIP|tipliers detect furi| +718|89576|7101|2|41|64188.37|0.08|0.08|N|O|1995-09-09|1995-08-02|1995-10-08|DELIVER IN PERSON|AIR|accounts print slyly | +718|91462|3972|3|12|17441.52|0.07|0.07|N|F|1995-06-17|1995-06-15|1995-07-12|TAKE BACK RETURN|FOB|. fluffily regular foxes m| +718|575|3076|4|5|7377.85|0.04|0.07|N|F|1995-06-09|1995-06-27|1995-07-02|TAKE BACK RETURN|SHIP|s above the | +719|21737|4240|1|37|61373.01|0.07|0.01|N|O|1997-10-13|1997-09-03|1997-11-12|NONE|RAIL|the quickly ironi| +719|124333|9358|2|21|28503.93|0.10|0.04|N|O|1997-08-19|1997-09-11|1997-09-17|NONE|RAIL|nt courts. | +719|58819|3830|3|34|60445.54|0.02|0.01|N|O|1997-10-25|1997-10-14|1997-11-13|DELIVER IN PERSON|REG AIR| blithely ironic instructions. ca| +719|159427|1943|4|41|60943.22|0.06|0.07|N|O|1997-08-19|1997-09-17|1997-09-08|NONE|RAIL|l Tiresias agains| +719|79749|2257|5|5|8643.70|0.01|0.00|N|O|1997-10-07|1997-10-11|1997-10-19|NONE|AIR|lly final waters around the fluffily final| +719|127989|7990|6|42|84713.16|0.02|0.08|N|O|1997-11-13|1997-08-29|1997-11-28|TAKE BACK RETURN|TRUCK|furiously bold requ| +744|61754|1755|1|22|37746.50|0.00|0.05|R|F|1993-12-01|1993-12-30|1993-12-04|COLLECT COD|FOB|y across t| +744|86771|4296|2|12|21093.24|0.03|0.02|A|F|1994-01-17|1994-02-11|1994-02-04|NONE|SHIP|final, regular requests f| +745|164100|9133|1|47|54712.70|0.10|0.05|N|O|1998-07-21|1998-07-28|1998-08-05|TAKE BACK RETURN|MAIL|xpress, fina| +745|22364|4867|2|13|16722.68|0.07|0.00|N|O|1998-10-03|1998-07-06|1998-10-20|NONE|AIR|xes integrat| +745|58344|3355|3|30|39070.20|0.03|0.00|N|O|1998-08-29|1998-08-20|1998-09-27|COLLECT COD|AIR|kages. blithely fina| +745|186299|8818|4|23|31861.67|0.04|0.00|N|O|1998-09-08|1998-07-05|1998-09-16|NONE|AIR|t the regular accounts. final theodolites m| +745|121310|1311|5|50|66565.50|0.04|0.06|N|O|1998-08-30|1998-08-13|1998-09-18|COLLECT COD|TRUCK|nic dependencies play again| +745|45913|8418|6|15|27883.65|0.03|0.08|N|O|1998-06-25|1998-08-26|1998-06-28|TAKE BACK RETURN|MAIL|e along the even, r| +746|79659|4674|1|42|68823.30|0.07|0.07|N|O|1996-06-30|1996-08-31|1996-07-08|COLLECT COD|RAIL|sual warhorses. even waters wake a| +747|106|107|1|10|10061.00|0.10|0.02|N|O|1998-04-25|1998-05-15|1998-05-04|COLLECT COD|SHIP|carefully. blithely pendi| +747|180274|275|2|45|60942.15|0.09|0.07|N|O|1998-06-14|1998-05-09|1998-07-11|DELIVER IN PERSON|SHIP|refully across the furiously | +747|58515|1021|3|3|4420.53|0.10|0.02|N|O|1998-07-14|1998-06-15|1998-08-10|NONE|REG AIR|l requests. f| +747|49367|1872|4|50|65818.00|0.00|0.07|N|O|1998-05-06|1998-05-26|1998-05-12|NONE|FOB|long the requests haggle acros| +747|95889|8399|5|49|92359.12|0.00|0.07|N|O|1998-07-15|1998-06-13|1998-07-24|NONE|FOB|ully final theodolites. instr| +747|2815|7816|6|11|18895.91|0.09|0.04|N|O|1998-06-27|1998-06-03|1998-07-14|DELIVER IN PERSON|AIR|he furiously | +748|95304|7814|1|37|48074.10|0.02|0.08|A|F|1995-05-27|1995-07-18|1995-05-28|NONE|SHIP|c dolphins nag furi| +748|171784|6819|2|12|22269.36|0.06|0.06|N|O|1995-07-07|1995-06-18|1995-07-26|COLLECT COD|REG AIR|eposits use blithely| +748|168592|3625|3|2|3321.18|0.06|0.01|N|O|1995-08-22|1995-07-07|1995-08-27|TAKE BACK RETURN|MAIL|ss theodolites haggle careful| +748|114672|9695|4|13|21926.71|0.01|0.02|N|O|1995-08-10|1995-06-09|1995-09-02|NONE|SHIP|requests. asymptotes wa| +749|159469|9470|1|11|16813.06|0.06|0.01|N|O|1998-08-04|1998-06-04|1998-08-16|TAKE BACK RETURN|SHIP| haggle regular id| +750|35594|601|1|45|68831.55|0.10|0.05|N|O|1995-08-08|1995-08-01|1995-08-22|TAKE BACK RETURN|REG AIR|tions after the furiously final ac| +750|13008|3009|2|28|25788.00|0.06|0.06|N|O|1995-09-02|1995-06-16|1995-09-17|NONE|AIR|ages along the furiously | +751|131057|3571|1|49|53314.45|0.07|0.08|N|O|1996-08-19|1996-09-15|1996-09-15|DELIVER IN PERSON|AIR|ests. ironic requests af| +751|72903|2904|2|16|30014.40|0.04|0.07|N|O|1996-12-12|1996-10-26|1996-12-23|DELIVER IN PERSON|MAIL|the grouches detect slyly | +751|65948|5949|3|33|63160.02|0.08|0.02|N|O|1996-10-17|1996-09-25|1996-11-05|DELIVER IN PERSON|FOB|kages: idle foxes affix s| +751|171697|9249|4|4|7074.76|0.02|0.08|N|O|1996-12-07|1996-09-23|1996-12-15|COLLECT COD|AIR|o beans. blithely even pa| +751|102725|7746|5|12|20732.64|0.05|0.02|N|O|1996-10-30|1996-09-15|1996-11-06|DELIVER IN PERSON|FOB|. slowly unu| +776|29585|2088|1|38|57554.04|0.05|0.04|N|O|1996-09-15|1996-09-03|1996-10-15|COLLECT COD|RAIL|dependencie| +776|33299|809|2|11|13555.19|0.01|0.05|N|O|1996-10-09|1996-09-25|1996-10-18|DELIVER IN PERSON|SHIP|lyly regular re| +776|54204|6710|3|28|32429.60|0.10|0.00|N|O|1996-08-18|1996-09-15|1996-09-12|DELIVER IN PERSON|TRUCK|s. blithel| +777|92666|7685|1|7|11610.62|0.02|0.02|N|O|1996-09-26|1996-11-12|1996-10-15|DELIVER IN PERSON|FOB|, ironic frays. slowly final ideas| +777|28557|6064|2|49|72791.95|0.03|0.06|N|O|1996-10-13|1996-10-22|1996-10-17|NONE|TRUCK| slyly regular, close foxes. slyly final | +777|155811|5812|3|26|48537.06|0.04|0.01|N|O|1996-10-19|1996-10-18|1996-11-06|COLLECT COD|MAIL|t even pinto beans; slyly pendi| +777|112022|4534|4|18|18612.36|0.05|0.03|N|O|1996-10-25|1996-10-16|1996-11-06|TAKE BACK RETURN|SHIP|luffily even foxes| +777|145018|7533|5|31|32953.31|0.09|0.01|N|O|1996-11-11|1996-10-23|1996-12-09|DELIVER IN PERSON|FOB|es about the evenly final ideas | +777|107289|2310|6|14|18147.92|0.03|0.00|N|O|1996-10-30|1996-11-01|1996-11-14|DELIVER IN PERSON|FOB| use carefull| +777|192186|2187|7|34|43458.12|0.03|0.05|N|O|1996-08-26|1996-10-01|1996-09-22|DELIVER IN PERSON|REG AIR|onic accounts boos| +778|63392|3393|1|21|28463.19|0.01|0.01|N|O|1996-01-16|1995-12-31|1996-02-08|NONE|TRUCK|ions maintain furiously: quickly bold instr| +778|26138|3645|2|9|9577.17|0.07|0.07|N|O|1996-02-15|1996-01-06|1996-02-25|DELIVER IN PERSON|SHIP|yly. express, regular deposits about th| +778|86918|9427|3|3|5714.73|0.00|0.00|N|O|1995-12-05|1995-12-07|1996-01-02|NONE|FOB| beans boost slyly among | +778|17864|366|4|24|42764.64|0.08|0.07|N|O|1995-11-28|1995-12-16|1995-11-29|TAKE BACK RETURN|AIR|ans. furiously even accounts wake sly| +778|35759|8263|5|49|83042.75|0.00|0.07|N|O|1996-01-15|1995-12-04|1996-01-26|TAKE BACK RETURN|AIR|lly quickly even foxes. carefully final | +779|192688|5208|1|48|85472.64|0.07|0.06|A|F|1995-03-25|1995-04-14|1995-04-11|DELIVER IN PERSON|AIR|eans. express, ironic requests boost fluff| +779|92935|463|2|46|88684.78|0.09|0.02|R|F|1995-03-07|1995-03-19|1995-03-12|DELIVER IN PERSON|SHIP|e even, final requests-- even, ir| +779|152690|5206|3|9|15684.21|0.10|0.04|R|F|1995-02-24|1995-04-13|1995-02-28|COLLECT COD|FOB|unusual instructions. blithely | +779|57931|7932|4|35|66112.55|0.03|0.05|A|F|1995-04-26|1995-03-17|1995-05-15|TAKE BACK RETURN|TRUCK|ackages sleep blithely ab| +779|40265|2770|5|30|36157.80|0.10|0.05|A|F|1995-04-10|1995-04-17|1995-04-30|COLLECT COD|RAIL|ges cajole carefully unusual accou| +779|124498|9523|6|1|1522.49|0.02|0.06|R|F|1995-04-25|1995-04-03|1995-05-11|TAKE BACK RETURN|AIR|y regular the| +779|28295|798|7|43|52601.47|0.06|0.05|R|F|1995-04-03|1995-04-20|1995-04-04|COLLECT COD|FOB|es haggle furiously. even accoun| +780|152521|2522|1|26|40911.52|0.00|0.00|R|F|1993-01-02|1992-12-23|1993-01-18|TAKE BACK RETURN|REG AIR|ly unusual deposits sl| +780|5966|967|2|20|37439.20|0.02|0.06|A|F|1992-12-31|1992-12-09|1993-01-19|TAKE BACK RETURN|AIR|wake among the regular platelets. fu| +780|65192|2711|3|40|46287.60|0.04|0.08|R|F|1992-12-18|1993-01-10|1992-12-27|DELIVER IN PERSON|FOB|ely even accounts poac| +780|69306|6825|4|26|33157.80|0.10|0.07|R|F|1993-01-20|1992-12-17|1993-02-14|DELIVER IN PERSON|RAIL|ag furiously| +780|10432|7936|5|32|42957.76|0.03|0.08|R|F|1992-10-31|1992-12-19|1992-11-12|TAKE BACK RETURN|REG AIR|blithely ironic instructions. slyly pending| +781|190638|5677|1|42|72602.46|0.06|0.05|A|F|1994-01-25|1994-02-11|1994-02-12|COLLECT COD|REG AIR|unusual accounts sleep ca| +781|43701|3702|2|2|3289.40|0.01|0.06|R|F|1994-02-01|1994-02-13|1994-02-12|COLLECT COD|SHIP|jole quietly after the carefu| +782|39274|1778|1|29|35184.83|0.01|0.08|A|F|1995-04-06|1995-03-22|1995-04-17|COLLECT COD|RAIL|p according to th| +782|63876|1395|2|3|5519.61|0.08|0.05|A|F|1995-04-02|1995-03-28|1995-04-20|COLLECT COD|MAIL|ithely according to the deposit| +782|163037|3038|3|23|25300.69|0.08|0.00|A|F|1995-02-25|1995-02-27|1995-03-21|DELIVER IN PERSON|REG AIR|usly regular asymptotes haggle blithely. r| +783|153509|1055|1|29|45312.50|0.08|0.01|R|F|1994-06-19|1994-05-11|1994-07-05|COLLECT COD|AIR|sly special dolphins.| +783|16958|6959|2|23|43123.85|0.01|0.05|A|F|1994-04-14|1994-04-25|1994-04-21|DELIVER IN PERSON|REG AIR|y even packages after the quickly pending| +783|196721|4279|3|9|16359.48|0.03|0.02|R|F|1994-07-06|1994-04-23|1994-07-29|COLLECT COD|FOB|ckages. even asym| +783|73740|8755|4|29|49698.46|0.01|0.08|A|F|1994-06-24|1994-06-06|1994-07-06|COLLECT COD|RAIL|posits between the fur| +783|137781|2808|5|40|72751.20|0.04|0.05|R|F|1994-07-18|1994-05-27|1994-07-22|DELIVER IN PERSON|TRUCK|y final acc| +783|83084|609|6|18|19207.44|0.07|0.07|R|F|1994-04-07|1994-05-01|1994-04-13|COLLECT COD|FOB|side of the furiously pending theodo| +808|118832|1344|1|26|48121.58|0.03|0.08|A|F|1992-02-29|1992-04-19|1992-03-22|COLLECT COD|AIR|counts. decoys can sleep-- expre| +808|194506|7026|2|6|9603.00|0.01|0.06|A|F|1992-03-18|1992-04-26|1992-04-15|TAKE BACK RETURN|FOB|carefully final package| +809|34969|4970|1|45|85678.20|0.00|0.00|R|F|1994-10-12|1994-08-05|1994-10-24|COLLECT COD|FOB|s. carefully| +809|123099|5612|2|29|32540.61|0.09|0.06|R|F|1994-09-25|1994-07-30|1994-10-09|TAKE BACK RETURN|MAIL|es cajole across the slyly silent depos| +809|111679|4191|3|35|59173.45|0.06|0.07|R|F|1994-09-12|1994-08-22|1994-10-02|COLLECT COD|TRUCK|rding to the r| +809|180088|5125|4|43|50227.44|0.00|0.05|R|F|1994-09-20|1994-08-19|1994-10-16|TAKE BACK RETURN|SHIP|ages doubt blithely furiously even d| +810|67651|158|1|42|67983.30|0.01|0.06|N|O|1998-03-19|1998-03-24|1998-04-04|COLLECT COD|FOB|ess deposits im| +810|5807|808|2|25|42820.00|0.05|0.04|N|O|1998-02-12|1998-03-03|1998-03-11|NONE|RAIL|thely. even pains unwind fluffily reg| +810|193609|1167|3|24|40862.40|0.01|0.07|N|O|1998-01-03|1998-03-26|1998-01-09|COLLECT COD|TRUCK|riously alongside of th| +810|177174|4726|4|11|13762.87|0.00|0.03|N|O|1998-01-08|1998-02-27|1998-01-15|TAKE BACK RETURN|SHIP|nal accounts haggle. accounts around the r| +811|27254|7255|1|10|11812.50|0.06|0.06|N|O|1997-06-11|1997-06-10|1997-06-21|DELIVER IN PERSON|AIR|een the quickly pending accounts. s| +812|134007|6521|1|35|36435.00|0.07|0.04|R|F|1993-02-25|1993-02-14|1993-03-18|NONE|RAIL|arefully about the fluffil| +812|45772|3285|2|7|12024.39|0.10|0.03|R|F|1993-04-03|1993-03-31|1993-04-21|NONE|TRUCK|orges alongside of the regular | +812|81068|3577|3|44|46158.64|0.03|0.03|A|F|1993-04-11|1993-02-17|1993-05-04|NONE|MAIL|uffily ironic pa| +812|95480|3008|4|13|19181.24|0.10|0.06|R|F|1993-01-22|1993-03-15|1993-01-30|COLLECT COD|AIR|al packages thrash above the| +812|122829|5342|5|12|22221.84|0.08|0.06|A|F|1993-05-04|1993-03-10|1993-05-13|TAKE BACK RETURN|REG AIR|lly. carefully regular p| +813|114573|7085|1|19|30163.83|0.07|0.02|R|F|1993-03-17|1993-02-18|1993-03-18|COLLECT COD|MAIL|s-- unusual instructions will nag | +813|24169|9174|2|25|27329.00|0.02|0.06|A|F|1992-12-27|1993-01-28|1993-01-15|NONE|TRUCK|nstructions among the carefully busy foxes | +813|198656|8657|3|20|35093.00|0.01|0.02|R|F|1993-02-24|1993-01-12|1993-02-28|TAKE BACK RETURN|RAIL| deposits. quickly ironic accoun| +814|96403|6404|1|30|41982.00|0.10|0.00|N|O|1998-08-09|1998-07-10|1998-09-06|COLLECT COD|TRUCK|y regular instruc| +815|109950|7481|1|39|76438.05|0.03|0.08|N|O|1995-09-11|1995-08-10|1995-10-11|DELIVER IN PERSON|REG AIR| of the excuses boost slyly furiously e| +815|113655|8678|2|21|35041.65|0.04|0.08|N|O|1995-07-25|1995-07-26|1995-08-08|DELIVER IN PERSON|RAIL|nding ideas are quickly furio| +815|192244|7283|3|48|64139.52|0.09|0.07|N|O|1995-08-29|1995-08-17|1995-09-02|NONE|FOB|onic asymptotes. care| +815|29525|9526|4|6|8727.12|0.03|0.07|N|O|1995-07-17|1995-08-05|1995-08-08|COLLECT COD|MAIL|ial platelets! special pl| +840|113595|8618|1|48|77212.32|0.10|0.03|N|O|1997-06-26|1997-07-13|1997-07-16|DELIVER IN PERSON|TRUCK|ideas. bold theodo| +840|180776|777|2|48|89124.96|0.06|0.01|N|O|1997-08-03|1997-07-23|1997-09-02|NONE|AIR|s? even ideas haggle| +840|96246|8756|3|25|31056.00|0.07|0.02|N|O|1997-05-05|1997-06-28|1997-06-03|DELIVER IN PERSON|FOB|furiously bold ideas | +840|190753|754|4|50|92187.50|0.02|0.03|N|O|1997-05-09|1997-07-28|1997-05-11|NONE|FOB|ites sleep blithely special instructions. d| +840|181191|1192|5|24|30532.56|0.05|0.05|N|O|1997-07-25|1997-07-15|1997-07-27|COLLECT COD|SHIP|uffily final pinto beans.| +840|64984|2503|6|15|29234.70|0.01|0.02|N|O|1997-05-04|1997-07-04|1997-05-14|COLLECT COD|REG AIR| furiously silent packages. regula| +840|178689|1207|7|18|31818.24|0.10|0.08|N|O|1997-06-13|1997-07-23|1997-07-09|COLLECT COD|MAIL| sleep blithely across the s| +841|9848|2349|1|44|77344.96|0.01|0.02|A|F|1992-04-11|1992-03-19|1992-04-23|DELIVER IN PERSON|MAIL|hely bold accounts wa| +841|106421|1442|2|28|39967.76|0.08|0.01|A|F|1992-04-03|1992-03-24|1992-04-18|DELIVER IN PERSON|AIR|thely even deposi| +841|10137|5140|3|44|46073.72|0.01|0.03|A|F|1992-02-03|1992-03-24|1992-02-13|NONE|MAIL|s use blithely along th| +841|166828|9345|4|23|43580.86|0.09|0.04|R|F|1992-05-17|1992-04-05|1992-06-05|COLLECT COD|REG AIR|xpress dolphins integrate express depo| +841|70093|5108|5|39|41460.51|0.01|0.06|A|F|1992-05-17|1992-04-07|1992-06-08|DELIVER IN PERSON|FOB|s. slyly pending platelets sleep bo| +841|37829|2836|6|19|33569.58|0.01|0.06|A|F|1992-03-28|1992-04-03|1992-04-19|COLLECT COD|MAIL|are deposits. quickly ironic pinto| +842|62172|4679|1|21|23817.57|0.01|0.08|A|F|1993-06-23|1993-07-09|1993-07-07|COLLECT COD|SHIP|ously according to the furiousl| +842|113963|1497|2|46|90940.16|0.00|0.04|A|F|1993-08-08|1993-07-11|1993-08-17|DELIVER IN PERSON|FOB|ts. deposits after the fluff| +842|161362|6395|3|10|14233.60|0.10|0.05|R|F|1993-08-06|1993-06-07|1993-08-28|TAKE BACK RETURN|TRUCK|n packages are slyly across the slyl| +842|197533|7534|4|34|55438.02|0.02|0.08|R|F|1993-08-03|1993-07-01|1993-08-21|NONE|FOB|carefully express foxes sleep. furiously| +843|94601|9620|1|26|41485.60|0.06|0.01|N|O|1996-08-06|1996-08-12|1996-09-03|COLLECT COD|REG AIR|uickly bold platel| +843|154853|7369|2|33|62959.05|0.00|0.03|N|O|1996-09-12|1996-08-11|1996-09-24|TAKE BACK RETURN|FOB| the furiously final theodolites. c| +843|198573|6131|3|5|8357.85|0.05|0.08|N|O|1996-08-13|1996-08-24|1996-09-04|TAKE BACK RETURN|RAIL|carefully unusual theodolites| +843|12680|5182|4|1|1592.68|0.00|0.01|N|O|1996-06-25|1996-07-28|1996-07-06|TAKE BACK RETURN|RAIL|haggle ruthlessly even accounts: expr| +844|114435|4436|1|42|60876.06|0.10|0.04|N|O|1997-07-02|1997-04-18|1997-07-25|NONE|AIR| final, special asymptotes sle| +844|107293|9804|2|42|54612.18|0.01|0.04|N|O|1997-06-22|1997-04-26|1997-06-30|COLLECT COD|SHIP|use furious| +844|62159|2160|3|21|23544.15|0.00|0.02|N|O|1997-04-09|1997-06-06|1997-04-20|TAKE BACK RETURN|FOB|yly special requests sleep fluffily. slyly| +844|90141|2651|4|9|10180.26|0.06|0.07|N|O|1997-05-30|1997-05-19|1997-06-07|TAKE BACK RETURN|AIR|ggle carefully furiou| +844|191081|8639|5|34|39850.72|0.09|0.01|N|O|1997-07-01|1997-06-05|1997-07-31|DELIVER IN PERSON|SHIP|final, regular platele| +844|94287|4288|6|33|42282.24|0.00|0.01|N|O|1997-04-23|1997-05-09|1997-05-20|COLLECT COD|RAIL|its cajole carefully carefully final d| +845|62260|7273|1|42|51334.92|0.04|0.07|R|F|1995-04-11|1995-05-23|1995-04-15|NONE|FOB|ckly final somas wake slyly furiously | +845|195948|987|2|9|18395.46|0.08|0.04|R|F|1995-05-16|1995-05-07|1995-06-10|COLLECT COD|SHIP|slyly pending instructions. unusual request| +845|93849|1377|3|48|88456.32|0.06|0.02|N|O|1995-06-29|1995-05-12|1995-07-24|NONE|SHIP|s. slyly ironic instructi| +845|110134|2646|4|5|5720.65|0.08|0.08|N|O|1995-07-03|1995-05-14|1995-07-05|DELIVER IN PERSON|MAIL|ag. pending packages detect around the ide| +845|8241|742|5|3|3447.72|0.01|0.08|N|F|1995-05-23|1995-05-13|1995-06-18|NONE|AIR|arefully express requests.| +846|169038|6587|1|7|7749.21|0.04|0.02|N|O|1996-11-12|1996-12-25|1996-12-08|COLLECT COD|FOB|express pinto beans up| +846|19909|7413|2|6|10973.40|0.03|0.02|N|O|1997-01-06|1996-12-30|1997-01-20|DELIVER IN PERSON|AIR|ally around the qui| +846|7390|4891|3|25|32434.75|0.06|0.08|N|O|1997-01-21|1997-01-04|1997-02-18|NONE|SHIP|nding dependencies w| +846|190069|70|4|18|20863.08|0.04|0.07|N|O|1997-01-25|1997-01-12|1997-02-18|NONE|TRUCK|ounts. silent, regular asymptot| +846|84149|4150|5|42|47591.88|0.09|0.05|N|O|1997-02-04|1996-11-29|1997-03-06|TAKE BACK RETURN|TRUCK|urious, unusual foxes detect slyly. | +847|20141|7648|1|39|41384.46|0.09|0.03|A|F|1992-08-14|1992-07-25|1992-08-28|COLLECT COD|TRUCK|s according to the slyly ironic| +847|95582|601|2|22|34706.76|0.08|0.05|A|F|1992-06-27|1992-07-14|1992-07-06|COLLECT COD|TRUCK|sual instructi| +847|31368|6375|3|36|46776.96|0.08|0.03|A|F|1992-08-07|1992-07-11|1992-08-29|DELIVER IN PERSON|RAIL|dly pending escapades nag fluffily | +872|171411|1412|1|34|50401.94|0.04|0.03|N|O|1998-07-26|1998-06-17|1998-08-12|COLLECT COD|REG AIR|s. theodolites a| +873|155901|3447|1|15|29353.50|0.00|0.03|A|F|1994-11-27|1994-11-20|1994-12-09|NONE|TRUCK|y silent dolphins | +874|13642|8645|1|1|1555.64|0.05|0.06|A|F|1994-10-05|1994-08-04|1994-10-16|NONE|SHIP|ts cajole blithely. | +874|72173|4681|2|8|9161.36|0.02|0.07|A|F|1994-09-15|1994-09-19|1994-10-01|DELIVER IN PERSON|MAIL|ust affix quickly alongside of the blith| +874|5306|5307|3|33|39972.90|0.10|0.06|A|F|1994-07-21|1994-07-27|1994-08-14|NONE|FOB|slyly pending notornis. ironic depos| +874|172010|9562|4|25|27050.25|0.01|0.05|A|F|1994-08-11|1994-08-14|1994-08-28|NONE|MAIL|beans haggle blithely s| +874|161476|3993|5|39|59961.33|0.00|0.02|A|F|1994-07-29|1994-09-13|1994-08-04|DELIVER IN PERSON|REG AIR|above the bold, regular excuses| +874|115094|5095|6|7|7763.63|0.04|0.03|A|F|1994-09-16|1994-09-08|1994-10-12|NONE|RAIL|heodolites are quickly furi| +874|178339|857|7|7|9921.31|0.03|0.02|R|F|1994-08-02|1994-08-16|1994-08-09|NONE|SHIP|blithely. regular accounts haggle f| +875|128508|6045|1|23|35339.50|0.04|0.07|A|F|1993-11-25|1993-09-24|1993-12-19|NONE|AIR|iously blithely special dependencies. re| +875|31385|6392|2|12|15796.56|0.09|0.05|A|F|1993-11-01|1993-11-05|1993-11-07|TAKE BACK RETURN|RAIL|ndencies cajole eve| +875|87188|4713|3|21|24678.78|0.07|0.00|R|F|1993-10-01|1993-10-28|1993-10-20|TAKE BACK RETURN|REG AIR|lyly unusual frets. req| +875|158181|8182|4|25|30979.50|0.04|0.01|A|F|1993-11-30|1993-10-25|1993-12-17|TAKE BACK RETURN|AIR|l foxes. blithely | +875|131717|1718|5|12|20984.52|0.05|0.05|A|F|1993-08-18|1993-10-24|1993-08-25|TAKE BACK RETURN|MAIL|its nag slyly fluffily final p| +876|169788|9789|1|18|33440.04|0.06|0.06|A|F|1992-10-21|1992-10-28|1992-10-29|DELIVER IN PERSON|AIR|riously even packages cajo| +876|17075|2078|2|37|36706.59|0.03|0.03|A|F|1993-01-15|1992-12-10|1993-01-21|COLLECT COD|FOB|egrate caref| +876|174122|4123|3|16|19137.92|0.02|0.03|R|F|1992-12-31|1992-12-05|1993-01-05|TAKE BACK RETURN|TRUCK|excuses. expres| +876|53447|963|4|40|56017.60|0.05|0.04|A|F|1992-10-27|1992-10-28|1992-11-10|COLLECT COD|MAIL| quickly final instructions ab| +876|71761|6776|5|16|27724.16|0.09|0.08|A|F|1993-01-17|1992-12-04|1993-02-03|NONE|REG AIR|ng to the blithely final ex| +876|75036|51|6|13|13143.39|0.08|0.05|A|F|1993-01-02|1992-11-25|1993-01-05|COLLECT COD|MAIL|ions wake carefully final | +876|118611|1123|7|19|30962.59|0.02|0.00|A|F|1992-12-23|1992-11-20|1992-12-27|NONE|FOB| furiously unusual ac| +877|84098|4099|1|26|28134.34|0.03|0.03|N|O|1997-09-09|1997-10-18|1997-09-29|DELIVER IN PERSON|RAIL|c decoys are alongside o| +877|30786|3290|2|23|39485.94|0.01|0.05|N|O|1997-10-14|1997-10-19|1997-10-17|DELIVER IN PERSON|FOB|efully enticingly daring instruct| +878|142160|2161|1|11|13223.76|0.05|0.02|N|O|1996-09-07|1996-08-24|1996-09-20|NONE|REG AIR|fully final, pending dep| +878|71058|1059|2|17|17493.85|0.05|0.02|N|O|1996-07-30|1996-09-15|1996-08-19|DELIVER IN PERSON|REG AIR|excuses wake | +878|64235|9248|3|28|33578.44|0.04|0.02|N|O|1996-09-17|1996-09-30|1996-09-25|COLLECT COD|AIR|usly express war| +878|195296|2854|4|43|59825.47|0.08|0.00|N|O|1996-09-24|1996-09-13|1996-10-06|TAKE BACK RETURN|MAIL|rave epitaphs. ca| +879|147172|9687|1|39|47547.63|0.01|0.00|A|F|1993-04-25|1993-04-18|1993-05-07|NONE|REG AIR|usual requests unwind | +879|111131|8665|2|29|33121.77|0.09|0.00|R|F|1993-04-27|1993-03-31|1993-05-05|COLLECT COD|RAIL|p carefully along the even acco| +879|162987|2988|3|4|8199.92|0.01|0.04|A|F|1993-04-17|1993-04-20|1993-04-24|DELIVER IN PERSON|MAIL|s affix. slyly regular somas| +879|108986|8987|4|29|57854.42|0.01|0.06|R|F|1993-04-20|1993-03-13|1993-04-30|TAKE BACK RETURN|AIR|ss asymptotes. silent deposits hagg| +879|114940|9963|5|15|29324.10|0.02|0.01|R|F|1993-05-26|1993-04-13|1993-06-08|COLLECT COD|AIR|nts sleep slyly pending ex| +879|182011|4530|6|22|24046.22|0.06|0.04|R|F|1993-02-19|1993-04-07|1993-03-03|NONE|SHIP|e bold, regular f| +904|166195|6196|1|28|35313.32|0.07|0.06|N|O|1997-03-11|1997-05-08|1997-04-02|TAKE BACK RETURN|AIR|sly unusual ideas. daringly regula| +904|33773|8780|2|35|59736.95|0.10|0.08|N|O|1997-03-24|1997-04-23|1997-04-18|TAKE BACK RETURN|SHIP|rate carefully after| +904|22074|4577|3|1|996.07|0.06|0.03|N|O|1997-06-15|1997-05-03|1997-06-19|COLLECT COD|SHIP|lly unusual courts. regular| +905|61083|8602|1|8|8352.64|0.07|0.00|N|O|1998-02-04|1998-02-06|1998-02-19|COLLECT COD|TRUCK|ronic requests. blithely regular pla| +905|11433|8937|2|34|45710.62|0.08|0.03|N|O|1998-02-19|1998-02-12|1998-03-17|DELIVER IN PERSON|TRUCK|mptotes grow blithely pending accounts.| +905|146761|1790|3|22|39770.72|0.07|0.03|N|O|1998-01-15|1998-01-22|1998-01-25|TAKE BACK RETURN|RAIL|ions wake carefu| +905|196876|1915|4|47|92724.89|0.08|0.05|N|O|1998-01-21|1998-02-13|1998-02-19|DELIVER IN PERSON|SHIP|lyly permanent platele| +905|88517|8518|5|18|27099.18|0.04|0.06|N|O|1998-03-11|1997-12-19|1998-04-05|NONE|SHIP|g the blithely regular packages. | +905|102340|2341|6|11|14765.74|0.04|0.02|N|O|1997-12-06|1997-12-26|1998-01-03|COLLECT COD|AIR|y about the slyly special| +906|62962|481|1|1|1924.96|0.10|0.00|A|F|1994-01-13|1993-12-27|1994-02-06|TAKE BACK RETURN|TRUCK| sleep quickly | +906|423|5424|2|30|39702.60|0.10|0.03|A|F|1993-11-08|1994-01-23|1993-11-28|TAKE BACK RETURN|MAIL|kly unusual frays | +906|108324|8325|3|7|9326.24|0.10|0.04|A|F|1993-11-24|1993-11-27|1993-12-06|NONE|SHIP|gular packages p| +906|190695|8253|4|14|24999.66|0.04|0.08|A|F|1993-11-03|1994-01-12|1993-11-25|TAKE BACK RETURN|AIR|lly special, silent deposit| +907|137861|2888|1|47|89246.42|0.02|0.06|N|O|1996-11-02|1996-09-25|1996-11-08|NONE|REG AIR|riously blithely| +907|13811|3812|2|19|32771.39|0.07|0.06|N|O|1996-08-01|1996-09-15|1996-08-10|DELIVER IN PERSON|MAIL|sleep brave pac| +907|115690|3224|3|17|28996.73|0.02|0.08|N|O|1996-09-03|1996-08-13|1996-09-24|TAKE BACK RETURN|RAIL| furiously regu| +907|198491|6049|4|43|68348.07|0.05|0.01|N|O|1996-07-17|1996-09-20|1996-08-07|DELIVER IN PERSON|SHIP|ep regular ideas. regular, i| +907|26817|1822|5|3|5231.43|0.10|0.02|N|O|1996-09-21|1996-09-12|1996-10-07|TAKE BACK RETURN|RAIL|d packages affix. regularly ev| +908|168503|3536|1|27|42430.50|0.03|0.08|R|F|1993-08-06|1993-08-21|1993-08-12|COLLECT COD|FOB|s. final excuses sleep: slyly regular | +908|23103|5606|2|19|19495.90|0.07|0.04|R|F|1993-09-04|1993-08-14|1993-09-09|DELIVER IN PERSON|MAIL|nusual packages boost slow requests| +908|90415|416|3|25|35135.25|0.06|0.03|A|F|1993-07-16|1993-08-22|1993-07-18|TAKE BACK RETURN|MAIL|ptotes wake-- slyly even dependencies a| +908|189698|7253|4|44|78658.36|0.00|0.06|A|F|1993-07-17|1993-09-08|1993-07-27|NONE|SHIP| bold dugout| +909|62753|272|1|49|84071.75|0.04|0.02|R|F|1993-06-09|1993-06-05|1993-07-06|COLLECT COD|REG AIR|s haggle carefully slyly ex| +909|88760|3777|2|3|5246.28|0.10|0.05|A|F|1993-06-21|1993-05-01|1993-07-21|NONE|MAIL|ly bold accounts sleep fluffily. fluffily e| +909|176320|3872|3|31|43285.92|0.02|0.00|A|F|1993-06-05|1993-06-07|1993-06-25|COLLECT COD|FOB|impress. quickly regular pinto beans are c| +909|2805|2806|4|50|85390.00|0.02|0.01|A|F|1993-05-22|1993-06-07|1993-05-28|NONE|RAIL|press deposits. f| +909|137647|161|5|45|75808.80|0.01|0.04|A|F|1993-05-14|1993-06-22|1993-05-31|DELIVER IN PERSON|MAIL|uickly bold packages cajole| +910|187926|445|1|46|92640.32|0.08|0.08|R|F|1994-02-19|1994-01-12|1994-03-17|COLLECT COD|FOB|ickly slyly special foxes. daring court| +910|59265|6781|2|36|44073.36|0.05|0.02|R|F|1993-12-21|1994-01-16|1994-01-15|COLLECT COD|SHIP|nto beans wake blithely about the sly| +910|63858|8871|3|41|74695.85|0.02|0.01|A|F|1994-01-31|1994-01-24|1994-02-12|NONE|SHIP|y final accounts sleep ironic, sile| +911|186969|2006|1|41|84294.36|0.02|0.03|A|F|1994-10-18|1994-12-03|1994-10-21|COLLECT COD|AIR|ultipliers haggle furiously ir| +911|179921|4956|2|40|80036.80|0.03|0.01|A|F|1994-11-05|1994-11-19|1994-11-21|TAKE BACK RETURN|SHIP|sly special| +911|120586|587|3|39|62656.62|0.06|0.03|A|F|1994-11-05|1994-11-27|1994-11-16|TAKE BACK RETURN|FOB|eposits cajole | +911|77200|7201|4|49|57682.80|0.04|0.01|R|F|1994-11-03|1994-11-29|1994-11-19|TAKE BACK RETURN|AIR|. ironic platelets about the slow, final r| +911|93097|8116|5|48|52324.32|0.00|0.06|A|F|1994-10-08|1994-11-09|1994-10-21|TAKE BACK RETURN|FOB|ong the furiously bold p| +911|78524|8525|6|44|66110.88|0.05|0.07|A|F|1994-12-13|1994-11-08|1994-12-28|NONE|TRUCK| eat quickly along the bl| +911|143703|3704|7|15|26200.50|0.00|0.02|R|F|1994-09-25|1994-11-11|1994-10-20|COLLECT COD|RAIL|ainst the bold a| +936|8964|3965|1|36|67426.56|0.08|0.03|N|O|1998-05-17|1998-07-04|1998-05-24|NONE|REG AIR|s affix accounts. express theodol| +937|103650|1181|1|47|77721.55|0.01|0.05|N|O|1996-09-16|1996-07-17|1996-10-14|TAKE BACK RETURN|AIR|iously pending pack| +937|45444|453|2|25|34736.00|0.01|0.07|N|O|1996-06-26|1996-07-11|1996-07-03|DELIVER IN PERSON|AIR|slyly above the even instructions. careful| +938|95250|5251|1|27|33621.75|0.04|0.08|N|O|1998-02-15|1998-03-26|1998-02-19|NONE|SHIP|lyly ironic gi| +939|32720|7727|1|16|26443.52|0.04|0.04|R|F|1992-07-15|1992-07-22|1992-08-08|DELIVER IN PERSON|AIR|ly accordin| +939|124855|9880|2|34|63914.90|0.00|0.02|A|F|1992-05-17|1992-07-20|1992-06-11|DELIVER IN PERSON|SHIP|he pending d| +939|25910|3417|3|36|66092.76|0.10|0.07|A|F|1992-05-23|1992-07-04|1992-06-05|COLLECT COD|MAIL|efully express requests. quickly fi| +939|58167|673|4|14|15752.24|0.06|0.00|R|F|1992-05-17|1992-07-15|1992-06-02|DELIVER IN PERSON|SHIP|uriously sly instructions| +939|6066|1067|5|19|18469.14|0.08|0.01|A|F|1992-07-25|1992-07-03|1992-07-31|COLLECT COD|RAIL|usly above | +939|147119|9634|6|32|37315.52|0.10|0.03|A|F|1992-08-21|1992-07-08|1992-09-17|COLLECT COD|AIR| sleep carefully. carefully reg| +940|123319|856|1|20|26846.20|0.03|0.06|N|O|1997-09-04|1997-07-31|1997-09-20|TAKE BACK RETURN|RAIL| accounts cajole bold accounts-- package| +941|113850|6362|1|15|27957.75|0.06|0.00|R|F|1994-07-20|1994-06-09|1994-07-24|DELIVER IN PERSON|AIR|gle slyly bold| +941|66004|3523|2|42|40740.00|0.00|0.05|A|F|1994-08-11|1994-07-18|1994-08-29|NONE|TRUCK|nal deposits along the furiously qui| +941|128460|973|3|5|7442.30|0.01|0.00|R|F|1994-08-02|1994-06-14|1994-08-14|NONE|SHIP| sleep blithely. furiously | +941|13173|5675|4|1|1086.17|0.06|0.07|R|F|1994-08-18|1994-07-05|1994-09-03|DELIVER IN PERSON|AIR|final, unusual packages are quickl| +941|190204|2724|5|11|14236.20|0.08|0.05|R|F|1994-05-14|1994-07-06|1994-05-21|NONE|TRUCK|hely express accoun| +941|146408|1437|6|25|36360.00|0.03|0.04|A|F|1994-06-03|1994-06-10|1994-06-11|TAKE BACK RETURN|TRUCK|fully pending packages wake quickly.| +941|78485|3500|7|1|1463.48|0.00|0.07|A|F|1994-07-23|1994-06-09|1994-08-04|COLLECT COD|REG AIR|ual grouches. slyly final deposits boo| +942|87285|4810|1|50|63614.00|0.00|0.05|A|F|1993-04-23|1993-06-13|1993-04-30|COLLECT COD|MAIL|special accounts. fu| +942|192674|2675|2|42|74200.14|0.01|0.01|R|F|1993-07-19|1993-04-30|1993-07-20|TAKE BACK RETURN|RAIL| the accounts. ca| +942|62159|7172|3|16|17938.40|0.10|0.03|A|F|1993-04-18|1993-04-27|1993-05-10|TAKE BACK RETURN|REG AIR|nal foxes thrash quickly carefully final id| +943|178768|6320|1|30|55402.80|0.03|0.04|R|F|1992-09-28|1992-08-11|1992-10-10|TAKE BACK RETURN|AIR|olites boost abov| +943|147922|437|2|37|72887.04|0.01|0.00|A|F|1992-08-16|1992-10-05|1992-08-21|TAKE BACK RETURN|FOB|lar ideas along the slyly express account| +943|122060|7085|3|3|3246.18|0.04|0.03|R|F|1992-08-19|1992-09-28|1992-09-17|DELIVER IN PERSON|RAIL|s foxes. blithely silent accounts subl| +968|196095|1134|1|49|58363.41|0.10|0.07|N|O|1996-09-01|1996-09-12|1996-09-19|DELIVER IN PERSON|RAIL|l theodolites sleep slyly regular, stealthy| +969|72079|7094|1|30|31532.10|0.02|0.07|R|F|1992-07-06|1992-08-08|1992-07-26|DELIVER IN PERSON|AIR|es. bold theodolites sleep| +970|76317|8825|1|10|12933.10|0.03|0.03|A|F|1993-08-07|1993-05-27|1993-08-18|DELIVER IN PERSON|TRUCK|s. blithely regular deposits abo| +970|45068|77|2|48|48626.88|0.10|0.03|R|F|1993-05-29|1993-05-26|1993-06-23|TAKE BACK RETURN|SHIP|tructions above the d| +970|43922|6427|3|9|16793.28|0.02|0.02|A|F|1993-05-21|1993-05-19|1993-05-28|NONE|FOB| regular requests. slyly pending instr| +970|189662|4699|4|44|77073.04|0.10|0.04|A|F|1993-05-14|1993-07-11|1993-06-02|NONE|RAIL| slyly around the regular packages. a| +971|1611|6612|1|44|66554.84|0.01|0.03|A|F|1993-11-30|1993-10-20|1993-12-28|NONE|FOB|ckages. furiously regular pinto b| +971|72301|9823|2|21|26739.30|0.06|0.00|A|F|1993-12-15|1993-10-19|1994-01-14|NONE|MAIL|y. carefully even pearls sleep fu| +971|151880|6911|3|3|5795.64|0.09|0.04|R|F|1993-10-25|1993-11-24|1993-11-10|COLLECT COD|RAIL|along the sl| +971|46238|3751|4|48|56843.04|0.10|0.03|A|F|1993-09-09|1993-11-11|1993-09-26|DELIVER IN PERSON|REG AIR|symptotes. fluf| +971|108979|8980|5|26|51687.22|0.05|0.04|A|F|1993-09-08|1993-11-15|1993-09-25|NONE|AIR|uffily accounts. accounts are car| +972|71755|4263|1|5|8633.75|0.10|0.00|R|F|1992-09-10|1992-07-25|1992-10-03|NONE|SHIP|lace of the bold foxes use furiou| +972|174680|9715|2|18|31584.24|0.03|0.02|R|F|1992-08-13|1992-08-01|1992-08-27|NONE|RAIL|r the fluffily blithe ideas. furiousl| +973|57707|7708|1|3|4994.10|0.06|0.05|A|F|1994-07-07|1994-09-19|1994-07-21|TAKE BACK RETURN|MAIL|y bold foxes solve blithely? dogged dep| +973|68861|3874|2|47|86003.42|0.01|0.05|R|F|1994-08-18|1994-09-11|1994-09-02|TAKE BACK RETURN|MAIL|ions. pains wake carefully a| +973|142689|7718|3|13|22511.84|0.00|0.03|R|F|1994-10-09|1994-08-03|1994-10-17|COLLECT COD|AIR|il the pendin| +973|162094|7127|4|40|46243.60|0.04|0.07|R|F|1994-09-05|1994-09-20|1994-09-13|DELIVER IN PERSON|REG AIR|he slyly final foxe| +974|12057|7060|1|2|1938.10|0.06|0.04|N|O|1995-06-18|1995-04-23|1995-07-13|TAKE BACK RETURN|AIR|nusual dependencies. quickly regular | +975|175786|3338|1|29|53991.62|0.01|0.00|N|O|1997-07-22|1997-05-23|1997-08-13|COLLECT COD|TRUCK|fter the fluffily reg| +975|32875|7882|2|11|19886.57|0.09|0.04|N|O|1997-04-26|1997-06-17|1997-04-29|NONE|AIR|totes. fluffily| +975|121436|1437|3|3|4372.29|0.04|0.07|N|O|1997-05-12|1997-05-31|1997-06-10|TAKE BACK RETURN|SHIP|integrate d| +1000|57683|5199|1|49|80393.32|0.10|0.05|R|F|1992-06-20|1992-06-23|1992-07-07|NONE|TRUCK|lent requests. theo| +1000|75592|607|2|20|31351.80|0.05|0.02|A|F|1992-06-03|1992-07-20|1992-06-15|COLLECT COD|TRUCK|ccounts sleep. quickly unus| +1000|74065|6573|3|38|39484.28|0.00|0.03|A|F|1992-06-14|1992-08-20|1992-06-23|NONE|MAIL|lar pinto beans. even | +1000|199138|6696|4|15|18556.95|0.06|0.00|A|F|1992-09-21|1992-07-13|1992-10-09|TAKE BACK RETURN|SHIP|ake furiously alongsi| +1000|98410|5938|5|31|43660.71|0.09|0.01|A|F|1992-08-22|1992-08-19|1992-08-28|COLLECT COD|MAIL|ly regular inst| +1000|164513|7030|6|41|64677.91|0.07|0.00|R|F|1992-09-12|1992-08-12|1992-10-01|COLLECT COD|SHIP|bold asymptotes. regular instructions wake| +1000|168910|8911|7|29|57388.39|0.00|0.08|R|F|1992-06-21|1992-06-24|1992-07-18|DELIVER IN PERSON|RAIL|n theodolites engage furiously against t| +1001|57728|7729|1|36|60685.92|0.06|0.06|A|F|1994-08-02|1994-05-27|1994-08-27|DELIVER IN PERSON|TRUCK|sts nag furiously busy pinto beans.| +1001|20505|8012|2|37|52743.50|0.05|0.03|A|F|1994-05-25|1994-06-21|1994-06-11|TAKE BACK RETURN|REG AIR|l instructions ca| +1001|14433|4434|3|44|59286.92|0.08|0.05|R|F|1994-07-02|1994-07-04|1994-07-19|TAKE BACK RETURN|REG AIR| regular requests sleep furiously blit| +1001|162583|7616|4|33|54304.14|0.07|0.00|R|F|1994-08-01|1994-06-23|1994-08-23|COLLECT COD|RAIL|tes. pinto beans sleep. express ideas c| +1002|154890|7406|1|4|7779.56|0.00|0.08|A|F|1995-04-18|1995-05-29|1995-05-01|NONE|REG AIR|ly against the furiously special a| +1002|28483|3488|2|23|32464.04|0.05|0.07|A|F|1995-04-09|1995-06-27|1995-04-29|COLLECT COD|FOB|besides the furiously regular ideas.| +1002|110481|8015|3|21|31321.08|0.01|0.05|A|F|1995-04-29|1995-05-16|1995-05-12|TAKE BACK RETURN|REG AIR|ges after the enticingly even| +1003|121456|1457|1|13|19206.85|0.07|0.03|N|O|1997-05-24|1997-05-17|1997-05-30|NONE|FOB|uriously ironic accounts. fluffily expre| +1003|96215|8725|2|34|41181.14|0.09|0.07|N|O|1997-04-16|1997-05-30|1997-05-15|DELIVER IN PERSON|REG AIR|es sleep ev| +1003|68943|8944|3|7|13383.58|0.09|0.01|N|O|1997-07-29|1997-05-19|1997-08-01|NONE|REG AIR|above the furio| +1003|109627|7158|4|33|54008.46|0.01|0.06|N|O|1997-07-10|1997-06-19|1997-07-20|DELIVER IN PERSON|FOB|accounts. qu| +1003|89095|4112|5|19|20597.71|0.08|0.06|N|O|1997-05-23|1997-06-29|1997-06-21|COLLECT COD|RAIL|iously even Tiresias wake | +1004|153007|553|1|7|7420.00|0.01|0.07|R|F|1994-03-30|1994-04-13|1994-04-26|TAKE BACK RETURN|RAIL|ggle quickly across the slyly even | +1004|185622|8141|2|9|15368.58|0.04|0.06|A|F|1994-01-24|1994-03-31|1994-02-22|NONE|MAIL| pending accounts use alongside of the| +1004|148014|529|3|12|12744.12|0.05|0.02|R|F|1994-01-31|1994-03-10|1994-02-20|DELIVER IN PERSON|RAIL|the express platelets boost blithel| +1004|69108|1615|4|14|15079.40|0.00|0.08|R|F|1994-02-09|1994-04-18|1994-03-09|TAKE BACK RETURN|REG AIR|ts. carefully pending pac| +1005|29055|1558|1|24|23617.20|0.10|0.02|N|O|1996-11-01|1996-11-14|1996-11-07|TAKE BACK RETURN|REG AIR|counts haggl| +1005|121208|6233|2|6|7375.20|0.08|0.01|N|O|1997-01-02|1996-10-28|1997-01-21|DELIVER IN PERSON|RAIL|ckages wake| +1005|128555|1068|3|47|74426.85|0.01|0.02|N|O|1996-12-12|1996-11-27|1997-01-06|DELIVER IN PERSON|MAIL|ts. quickly regular ideas al| +1005|23690|6193|4|48|77457.12|0.08|0.04|N|O|1996-10-08|1996-12-09|1996-10-31|DELIVER IN PERSON|TRUCK| the quickly final deposits. packages bo| +1006|155614|5615|1|36|60105.96|0.07|0.08|N|O|1995-10-10|1995-09-06|1995-10-29|COLLECT COD|AIR|ross the express theodolites run t| +1007|95345|7855|1|29|38869.86|0.10|0.03|N|O|1997-05-28|1997-06-01|1997-06-12|COLLECT COD|TRUCK|hely pending platelets nag slyly after the| +1007|61618|1619|2|5|7898.05|0.04|0.04|N|O|1997-07-04|1997-06-01|1997-07-15|COLLECT COD|TRUCK| slyly. ironic accounts haggle | +1007|198622|1142|3|28|48177.36|0.01|0.01|N|O|1997-06-03|1997-07-04|1997-07-03|TAKE BACK RETURN|FOB|ress ideas. foxes boost. quietly regular| +1007|30102|7612|4|7|7224.70|0.08|0.05|N|O|1997-06-01|1997-06-19|1997-06-12|NONE|AIR|ons wake slyly afte| +1007|109428|1939|5|32|45997.44|0.10|0.04|N|O|1997-04-30|1997-05-21|1997-05-07|DELIVER IN PERSON|TRUCK|oxes cajole ruthlessly aroun| +1007|141848|4363|6|2|3779.68|0.09|0.04|N|O|1997-05-07|1997-06-17|1997-05-12|TAKE BACK RETURN|RAIL|s. pending| +1032|175440|7958|1|42|63648.48|0.02|0.04|N|O|1996-04-09|1996-06-11|1996-04-25|DELIVER IN PERSON|FOB|l accounts. dependencies along the blithely| +1032|11925|4427|2|46|84498.32|0.00|0.08|N|O|1996-06-26|1996-06-01|1996-07-22|TAKE BACK RETURN|MAIL|eas impress | +1032|18281|5785|3|27|32380.56|0.04|0.07|N|O|1996-07-13|1996-06-05|1996-08-12|NONE|REG AIR|n the quickly regular packages| +1032|43948|8957|4|19|35946.86|0.04|0.02|N|O|1996-06-24|1996-05-10|1996-07-18|COLLECT COD|FOB|ly quiet ide| +1032|32470|7477|5|30|42074.10|0.06|0.01|N|O|1996-06-13|1996-05-29|1996-07-04|NONE|SHIP|ing deposits sleep furiously final foxes| +1032|119927|4950|6|20|38938.40|0.00|0.02|N|O|1996-04-13|1996-05-27|1996-04-21|COLLECT COD|REG AIR|althily. even, unusual| +1032|197710|7711|7|15|27115.65|0.08|0.01|N|O|1996-05-15|1996-05-05|1996-05-20|TAKE BACK RETURN|FOB|ending reque| +1033|97474|5002|1|17|25014.99|0.06|0.08|N|O|1998-06-14|1998-06-24|1998-07-14|TAKE BACK RETURN|REG AIR|cies. carefully special accounts a| +1033|39137|1641|2|40|43045.20|0.03|0.01|N|O|1998-04-28|1998-05-06|1998-05-13|NONE|REG AIR|nic grouches. dependencies detect | +1033|164104|4105|3|22|25698.20|0.09|0.02|N|O|1998-03-31|1998-05-04|1998-04-30|DELIVER IN PERSON|MAIL|thely permanen| +1033|89221|9222|4|37|44778.14|0.03|0.08|N|O|1998-06-06|1998-06-08|1998-06-16|DELIVER IN PERSON|FOB|ing to the blithely| +1033|133053|8080|5|8|8688.40|0.01|0.07|N|O|1998-04-02|1998-06-19|1998-04-29|TAKE BACK RETURN|TRUCK|ual deposits. thin, even frets hag| +1033|20325|326|6|48|59775.36|0.07|0.08|N|O|1998-06-30|1998-05-27|1998-07-18|COLLECT COD|AIR|onic dugouts. pending packages on the bus| +1034|63315|5822|1|42|53689.02|0.08|0.00|A|F|1993-04-18|1993-01-29|1993-04-23|DELIVER IN PERSON|REG AIR|riously pending platelets wake furious| +1034|130670|671|2|44|74829.48|0.07|0.06|R|F|1993-01-24|1993-03-14|1993-02-03|NONE|FOB| blithely regular re| +1034|162998|2999|3|12|24731.88|0.01|0.00|R|F|1992-12-29|1993-01-30|1993-01-25|DELIVER IN PERSON|SHIP|nding dinos boost furiously. blithely regu| +1034|91303|8831|4|21|27180.30|0.06|0.07|R|F|1993-02-28|1993-03-05|1993-03-16|COLLECT COD|AIR|s hinder blit| +1034|114022|9045|5|8|8288.16|0.02|0.04|A|F|1993-01-01|1993-02-26|1993-01-28|DELIVER IN PERSON|AIR|y bold foxes. bold courts| +1035|85544|3069|1|8|12236.32|0.09|0.07|N|O|1997-10-05|1997-11-04|1997-10-27|COLLECT COD|FOB|furiously. slyly regular requests accor| +1035|131811|6838|2|21|38699.01|0.08|0.02|N|O|1997-11-07|1997-09-20|1997-12-04|TAKE BACK RETURN|TRUCK|le slyly bo| +1035|135818|5819|3|15|27807.15|0.06|0.03|N|O|1997-11-21|1997-10-04|1997-11-22|NONE|AIR|dolites cajole furiously. packages alon| +1036|169353|1870|1|9|12801.15|0.07|0.04|N|O|1997-11-04|1997-11-02|1997-11-16|DELIVER IN PERSON|FOB|egular Tiresias | +1036|115364|2898|2|1|1379.36|0.00|0.03|N|O|1997-11-08|1997-11-28|1997-11-17|DELIVER IN PERSON|MAIL|s use carefully across | +1036|110990|3502|3|15|30014.85|0.00|0.04|N|O|1997-12-02|1997-11-02|1997-12-30|NONE|AIR|carefully even instructions sle| +1036|196357|1396|4|48|69760.80|0.06|0.02|N|O|1997-11-06|1997-11-18|1997-12-02|TAKE BACK RETURN|SHIP|ly. ironic, unusual hockey players alo| +1036|160461|8010|5|15|22821.90|0.09|0.07|N|O|1997-11-22|1997-11-18|1997-12-20|COLLECT COD|MAIL|endencies haggle | +1036|61471|6484|6|34|48703.98|0.10|0.05|N|O|1997-12-26|1997-11-24|1998-01-15|TAKE BACK RETURN|RAIL|c depths. express, | +1036|143048|591|7|46|50187.84|0.00|0.00|N|O|1997-12-15|1997-12-15|1997-12-30|DELIVER IN PERSON|AIR|ites against | +1037|7230|4731|1|6|6823.38|0.02|0.07|N|O|1996-09-16|1996-08-21|1996-10-06|TAKE BACK RETURN|AIR|after the slyly final accounts. special| +1037|103715|8736|2|49|84216.79|0.08|0.06|N|O|1996-07-14|1996-07-25|1996-08-02|NONE|SHIP| according to the carefu| +1037|127596|109|3|30|48707.70|0.04|0.02|N|O|1996-09-23|1996-08-20|1996-10-22|NONE|SHIP|ss the furiously unusu| +1037|98384|3403|4|48|66354.24|0.09|0.01|N|O|1996-09-14|1996-08-18|1996-09-24|NONE|FOB|es along the even somas hinder evenly | +1037|129391|6928|5|42|59656.38|0.05|0.06|N|O|1996-08-08|1996-08-06|1996-09-04|TAKE BACK RETURN|MAIL|yers. special| +1038|49120|1625|1|47|50248.64|0.10|0.05|R|F|1995-02-06|1995-03-04|1995-02-16|NONE|FOB|t furiously at the | +1039|63481|3482|1|41|59223.68|0.03|0.01|R|F|1993-05-07|1993-06-13|1993-05-17|DELIVER IN PERSON|TRUCK|ckly careful, express foxes. blithely even | +1039|118443|5977|2|22|32151.68|0.07|0.00|A|F|1993-04-25|1993-06-24|1993-05-18|DELIVER IN PERSON|TRUCK|sly unusual| +1039|65132|5133|3|8|8777.04|0.02|0.01|R|F|1993-05-01|1993-07-04|1993-05-21|COLLECT COD|REG AIR|ffily ironic accounts cajole| +1039|71642|1643|4|7|11295.48|0.02|0.07|A|F|1993-05-06|1993-07-06|1993-05-25|NONE|MAIL|pendencies across the| +1039|83503|8520|5|13|19324.50|0.00|0.06|R|F|1993-05-01|1993-06-30|1993-05-07|DELIVER IN PERSON|TRUCK|xes. even dependencies above| +1039|34274|1784|6|32|38664.64|0.10|0.08|R|F|1993-05-02|1993-06-10|1993-05-30|COLLECT COD|TRUCK|e carefully special packag| +1064|100156|157|1|20|23123.00|0.01|0.07|R|F|1993-05-30|1993-05-05|1993-06-03|DELIVER IN PERSON|FOB| blithely furiously bold theodolite| +1064|109008|4029|2|38|38646.00|0.10|0.01|A|F|1993-04-29|1993-04-19|1993-05-07|COLLECT COD|REG AIR|oss the furiously regul| +1064|81747|1748|3|7|12101.18|0.05|0.05|R|F|1993-06-03|1993-04-29|1993-06-27|COLLECT COD|FOB|accounts sleep blithely| +1065|45011|5012|1|4|3824.04|0.03|0.06|A|F|1994-05-20|1994-03-30|1994-06-14|DELIVER IN PERSON|REG AIR|kages. notornis across th| +1065|88767|8768|2|38|66718.88|0.07|0.03|R|F|1994-04-07|1994-05-07|1994-05-01|DELIVER IN PERSON|TRUCK| always slyly ironic platele| +1065|97076|2095|3|11|11803.77|0.08|0.08|A|F|1994-06-21|1994-03-27|1994-07-04|TAKE BACK RETURN|AIR|e fluffily final dependencies. requests ar| +1065|151954|6985|4|17|34101.15|0.10|0.01|A|F|1994-06-05|1994-04-19|1994-06-27|NONE|AIR|nos are quickly around the express| +1065|74405|4406|5|39|53796.60|0.04|0.04|A|F|1994-05-14|1994-04-17|1994-05-21|TAKE BACK RETURN|SHIP| slyly along | +1065|113151|5663|6|17|19790.55|0.02|0.08|R|F|1994-04-22|1994-03-28|1994-05-01|DELIVER IN PERSON|RAIL|fully according to the| +1066|196795|4353|1|47|88914.13|0.06|0.03|R|F|1994-08-19|1994-09-04|1994-09-11|DELIVER IN PERSON|SHIP|y. carefully special p| +1066|129467|9468|2|50|74823.00|0.02|0.05|R|F|1994-10-07|1994-09-16|1994-10-15|NONE|SHIP|y regular requests cajole arou| +1066|139121|1635|3|32|37123.84|0.04|0.00|A|F|1994-09-05|1994-10-19|1994-09-15|NONE|SHIP| the blithely ironic platelets. ironic req| +1066|196941|6942|4|40|81517.60|0.07|0.06|R|F|1994-11-08|1994-09-30|1994-11-22|DELIVER IN PERSON|RAIL|c ideas sleep stealthily accordi| +1067|83680|3681|1|35|58228.80|0.06|0.00|R|F|1995-04-18|1995-06-02|1995-05-09|DELIVER IN PERSON|REG AIR|s. slyly express theodolites about the | +1068|144583|7098|1|13|21158.54|0.10|0.08|N|O|1995-09-26|1995-11-14|1995-10-08|COLLECT COD|TRUCK|y slyly unusual foxes. | +1068|3200|8201|2|36|39715.20|0.05|0.04|N|O|1995-10-22|1995-11-17|1995-11-12|TAKE BACK RETURN|MAIL|ly furiously pending pinto b| +1068|167874|2907|3|43|83500.41|0.04|0.08|N|O|1995-11-25|1995-10-19|1995-12-13|TAKE BACK RETURN|TRUCK|ole. bold deposits c| +1068|53405|5911|4|13|17659.20|0.03|0.03|N|O|1995-09-27|1995-10-12|1995-10-20|TAKE BACK RETURN|FOB|sly. brave requests ha| +1068|176928|9446|5|17|34083.64|0.07|0.04|N|O|1995-12-28|1995-12-08|1996-01-03|COLLECT COD|AIR| slyly final ex| +1068|18667|1169|6|33|52326.78|0.03|0.03|N|O|1996-01-01|1995-10-16|1996-01-25|TAKE BACK RETURN|MAIL|ckly regula| +1069|66736|9243|1|43|73217.39|0.10|0.03|R|F|1994-12-20|1994-12-24|1994-12-31|NONE|TRUCK|arefully even accounts| +1069|22681|7686|2|49|78580.32|0.10|0.08|A|F|1994-12-29|1995-02-11|1994-12-31|COLLECT COD|MAIL|slyly special deposits ought to haggle.| +1069|188894|1413|3|45|89230.05|0.00|0.05|A|F|1995-02-16|1994-12-13|1995-02-25|COLLECT COD|TRUCK|as boost blithely ironic platelets. bl| +1069|131649|6676|4|36|60503.04|0.04|0.02|A|F|1995-02-03|1994-12-20|1995-02-28|DELIVER IN PERSON|FOB|uriously regular pinto be| +1070|44218|6723|1|50|58110.50|0.09|0.06|R|F|1992-05-28|1992-05-28|1992-06-10|COLLECT COD|MAIL|ns after the slyly ironic ideas haggl| +1070|166129|3678|2|46|54975.52|0.02|0.01|A|F|1992-06-05|1992-04-05|1992-06-21|TAKE BACK RETURN|AIR|es above the quickly| +1071|94502|4503|1|32|47888.00|0.03|0.08|R|F|1993-03-02|1993-03-18|1993-03-26|NONE|REG AIR|even foxes; pending id| +1071|86241|1258|2|30|36817.20|0.04|0.00|R|F|1993-02-06|1993-03-15|1993-03-07|COLLECT COD|FOB|leep furiously. instruc| +1071|42298|9811|3|16|19844.64|0.06|0.00|A|F|1993-04-27|1993-03-04|1993-05-21|COLLECT COD|REG AIR|requests haggle slyly final| +1071|86687|9196|4|11|18410.48|0.00|0.06|A|F|1993-03-21|1993-03-04|1993-04-08|NONE|MAIL| instructions. regular asymptotes accordin| +1096|23489|996|1|21|29662.08|0.10|0.08|A|F|1994-04-12|1994-05-30|1994-04-16|NONE|REG AIR|ackages are b| +1096|169971|2488|2|32|65311.04|0.06|0.06|A|F|1994-06-01|1994-05-13|1994-06-14|TAKE BACK RETURN|SHIP|he ironic, regular pinto bea| +1096|87108|7109|3|9|9855.90|0.03|0.02|A|F|1994-05-10|1994-05-02|1994-06-01|COLLECT COD|AIR|nt regularly slyly express dep| +1096|12893|2894|4|50|90294.50|0.07|0.03|R|F|1994-06-08|1994-06-09|1994-07-06|DELIVER IN PERSON|MAIL|oost along | +1096|90853|854|5|24|44252.40|0.07|0.08|R|F|1994-06-22|1994-05-27|1994-07-11|NONE|MAIL|final packages could sleep ironic p| +1096|149980|9981|6|27|54809.46|0.01|0.03|A|F|1994-04-21|1994-06-09|1994-05-01|COLLECT COD|FOB|packages hin| +1096|107168|4699|7|18|21152.88|0.10|0.06|R|F|1994-06-02|1994-05-29|1994-07-01|DELIVER IN PERSON|RAIL|osits. requests against the express p| +1097|156922|1953|1|43|85093.56|0.02|0.00|A|F|1994-02-04|1994-01-18|1994-02-15|DELIVER IN PERSON|FOB|fluffily silent patterns na| +1097|172203|4721|2|35|44632.00|0.03|0.06|A|F|1994-01-26|1994-02-19|1994-02-15|NONE|SHIP|s according to the carefull| +1097|199769|7327|3|8|14950.08|0.02|0.01|A|F|1994-04-07|1994-01-29|1994-04-21|TAKE BACK RETURN|FOB|s integrate slyly about the blithely final | +1097|111081|3593|4|47|51327.76|0.07|0.08|R|F|1994-03-10|1994-02-18|1994-03-16|COLLECT COD|TRUCK|hins. ironic fret| +1097|125687|5688|5|17|29115.56|0.05|0.02|A|F|1994-01-25|1994-02-21|1994-02-21|NONE|AIR|y regular accounts. final, express platele| +1097|17644|146|6|11|17178.04|0.05|0.04|R|F|1993-12-24|1994-02-15|1994-01-03|TAKE BACK RETURN|REG AIR|refully regular theodolites. qui| +1097|132908|448|7|19|36877.10|0.10|0.02|R|F|1994-01-14|1994-02-03|1994-01-31|DELIVER IN PERSON|MAIL|posits sleep furiously re| +1098|172837|389|1|46|87852.18|0.00|0.03|R|F|1994-08-30|1994-09-27|1994-09-09|TAKE BACK RETURN|RAIL|ven requests boost carefully across the | +1098|67898|405|2|28|52244.92|0.08|0.01|A|F|1994-10-24|1994-08-19|1994-11-10|TAKE BACK RETURN|REG AIR|wind regular requests. bli| +1098|149021|4050|3|43|46010.86|0.06|0.03|A|F|1994-07-26|1994-09-07|1994-08-11|COLLECT COD|AIR|ithely special request| +1098|193735|6255|4|42|76806.66|0.08|0.04|R|F|1994-09-18|1994-08-30|1994-10-06|COLLECT COD|TRUCK|furiously along the even pinto| +1098|87659|7660|5|21|34579.65|0.01|0.00|R|F|1994-08-15|1994-09-27|1994-09-12|COLLECT COD|AIR|es cajole slyly regular package| +1099|12486|4988|1|24|33563.52|0.10|0.08|A|F|1994-06-12|1994-06-05|1994-06-13|NONE|FOB|e furiously. f| +1099|51903|6914|2|22|40807.80|0.04|0.02|A|F|1994-07-02|1994-07-04|1994-07-30|COLLECT COD|AIR|ly against the quietly pe| +1099|132108|4622|3|50|57005.00|0.03|0.05|A|F|1994-05-19|1994-06-26|1994-05-29|COLLECT COD|MAIL|e carefully slyly| +1099|134932|7446|4|22|43272.46|0.10|0.04|A|F|1994-08-09|1994-05-28|1994-08-29|DELIVER IN PERSON|TRUCK|boost special,| +1100|116507|1530|1|48|73128.00|0.10|0.05|N|O|1997-07-04|1997-08-16|1997-07-30|NONE|REG AIR|regular waters. pending idea| +1100|118914|8915|2|50|96645.50|0.08|0.02|N|O|1997-10-19|1997-08-12|1997-11-15|TAKE BACK RETURN|MAIL|dly even instructions cajole quic| +1100|186287|8806|3|2|2746.56|0.09|0.03|N|O|1997-08-28|1997-07-28|1997-09-25|TAKE BACK RETURN|REG AIR| special accounts. silent pac| +1100|113938|1472|4|37|72221.41|0.06|0.00|N|O|1997-09-26|1997-07-30|1997-10-03|NONE|REG AIR|nticing frays among| +1100|141756|1757|5|26|46741.50|0.10|0.01|N|O|1997-09-27|1997-08-05|1997-10-12|COLLECT COD|AIR|dencies. furiously final| +1100|77945|7946|6|21|40381.74|0.00|0.06|N|O|1997-09-10|1997-09-07|1997-10-02|DELIVER IN PERSON|SHIP|inal deposits do haggle slyly ironic| +1101|101189|1190|1|30|35705.40|0.05|0.04|A|F|1994-02-24|1994-02-03|1994-03-18|TAKE BACK RETURN|FOB|arefully alongs| +1101|82569|7586|2|38|58959.28|0.09|0.03|A|F|1993-12-29|1994-01-09|1994-01-07|COLLECT COD|FOB|uests serve inside the slyly | +1102|12430|9934|1|6|8054.58|0.00|0.05|R|F|1994-04-02|1994-04-16|1994-04-30|TAKE BACK RETURN|REG AIR|y final req| +1102|102125|9656|2|20|22542.40|0.08|0.04|A|F|1994-04-07|1994-05-05|1994-04-09|NONE|FOB|de of the ironic packages.| +1102|5983|984|3|9|17000.82|0.07|0.01|R|F|1994-05-03|1994-03-22|1994-05-04|TAKE BACK RETURN|TRUCK|ly regular requests sleep. blithely regular| +1102|144330|6845|4|48|65967.84|0.08|0.03|A|F|1994-06-03|1994-04-29|1994-06-26|COLLECT COD|SHIP|e furiously bold instructions. fluffily ex| +1102|148673|8674|5|2|3443.34|0.08|0.06|R|F|1994-03-07|1994-04-26|1994-03-20|DELIVER IN PERSON|RAIL| pending, unusual ideas integrat| +1102|132095|4609|6|36|40575.24|0.09|0.08|R|F|1994-04-03|1994-04-01|1994-04-28|COLLECT COD|RAIL|excuses. regular de| +1103|160652|653|1|44|75356.60|0.07|0.00|A|F|1995-02-20|1995-04-01|1995-02-26|COLLECT COD|TRUCK|lly bold epitaphs run furio| +1103|76561|4083|2|33|50739.48|0.05|0.08|N|F|1995-06-15|1995-05-06|1995-06-24|TAKE BACK RETURN|MAIL|nal requests according to th| +1103|155801|832|3|16|29708.80|0.04|0.03|R|F|1995-04-30|1995-03-17|1995-05-03|TAKE BACK RETURN|RAIL|thely special req| +1128|161230|1231|1|27|34863.21|0.08|0.05|N|O|1998-07-24|1998-05-17|1998-08-12|COLLECT COD|RAIL|y. furiously regular accou| +1128|181694|9249|2|42|74578.98|0.03|0.04|N|O|1998-04-26|1998-05-27|1998-05-07|COLLECT COD|FOB|gular instructions wake furiously furi| +1128|126599|6600|3|3|4876.77|0.00|0.03|N|O|1998-04-23|1998-05-28|1998-05-10|TAKE BACK RETURN|RAIL|es detect furiously regular accou| +1128|147097|2126|4|27|30890.43|0.10|0.08|N|O|1998-04-30|1998-05-03|1998-05-08|COLLECT COD|SHIP|he furiously ironic requests. furi| +1128|51472|8988|5|22|31316.34|0.00|0.06|N|O|1998-07-11|1998-05-01|1998-07-30|DELIVER IN PERSON|RAIL|ously ironic packages. i| +1129|101016|1017|1|43|43731.43|0.05|0.05|R|F|1995-03-22|1995-01-03|1995-04-08|TAKE BACK RETURN|RAIL| carefully express req| +1129|175489|8007|2|19|29725.12|0.01|0.05|R|F|1995-01-24|1995-03-03|1995-01-25|NONE|REG AIR|eposits are. quickly regular| +1129|38717|1221|3|36|59605.56|0.00|0.08|A|F|1994-12-07|1995-01-03|1994-12-28|NONE|SHIP|sual frets cajole alongside of the slyly ir| +1129|106989|2010|4|34|67863.32|0.10|0.00|A|F|1995-03-16|1995-02-18|1995-04-08|NONE|MAIL|late quickly brave| +1129|150275|5306|5|15|19879.05|0.09|0.00|R|F|1995-03-03|1995-01-18|1995-03-16|TAKE BACK RETURN|REG AIR|ounts use. even instructions bre| +1130|40280|281|1|21|25625.88|0.04|0.03|N|O|1997-10-22|1997-12-13|1997-10-29|NONE|MAIL|ly final pinto beans| +1130|175411|5412|2|20|29728.20|0.02|0.04|N|O|1997-10-18|1997-12-02|1997-11-02|TAKE BACK RETURN|FOB|accounts would boost unus| +1130|129783|4808|3|35|63447.30|0.10|0.02|N|O|1997-11-06|1997-10-26|1997-11-20|TAKE BACK RETURN|SHIP|carefully regular dolphins. blithely ir| +1130|59150|6666|4|50|55457.50|0.03|0.06|N|O|1997-10-12|1997-11-02|1997-10-20|NONE|TRUCK|. final, silent deposits sleep | +1130|129196|6733|5|35|42881.65|0.08|0.00|N|O|1998-01-06|1997-12-20|1998-01-09|TAKE BACK RETURN|FOB|ruthless theodolites sleep careful| +1130|182823|7860|6|4|7623.28|0.01|0.01|N|O|1997-10-16|1997-11-24|1997-10-29|COLLECT COD|TRUCK|ironic packages sleep | +1131|60828|8347|1|6|10732.92|0.01|0.00|N|O|1998-04-01|1998-03-23|1998-04-16|NONE|RAIL|ost furiously alongsid| +1131|123301|8326|2|6|7945.80|0.10|0.00|N|O|1998-01-20|1998-03-07|1998-01-23|DELIVER IN PERSON|TRUCK|hinder quickly against the bold, silent req| +1131|114027|9050|3|38|39558.76|0.01|0.00|N|O|1998-03-31|1998-02-19|1998-04-04|COLLECT COD|RAIL|after the the| +1131|44882|9891|4|30|54806.40|0.00|0.05|N|O|1998-02-15|1998-03-11|1998-03-02|NONE|REG AIR|pending frets. slyly bol| +1132|131973|9513|1|12|24059.64|0.06|0.07|R|F|1993-03-19|1993-04-22|1993-03-31|COLLECT COD|AIR|s theodoli| +1132|55361|5362|2|47|61868.92|0.05|0.03|A|F|1993-04-23|1993-03-31|1993-05-08|TAKE BACK RETURN|TRUCK| wake slyly blith| +1132|37335|7336|3|27|34352.91|0.07|0.01|A|F|1993-06-03|1993-03-27|1993-06-16|DELIVER IN PERSON|REG AIR|carefully ruthless e| +1132|88527|1036|4|16|24248.32|0.08|0.04|R|F|1993-02-22|1993-05-10|1993-03-15|NONE|RAIL|e carefully aft| +1133|195011|50|1|2|2212.02|0.07|0.08|A|F|1993-06-27|1993-07-08|1993-07-03|COLLECT COD|SHIP|ing accounts behind the carefull| +1133|145585|8100|2|9|14675.22|0.05|0.05|R|F|1993-08-22|1993-07-08|1993-09-07|DELIVER IN PERSON|REG AIR|e thinly express reques| +1134|179713|9714|1|21|37646.91|0.10|0.05|R|F|1994-09-06|1994-08-06|1994-09-12|COLLECT COD|TRUCK|fluffily special dependencies. ca| +1134|22465|9972|2|16|22199.36|0.00|0.08|R|F|1994-09-07|1994-07-25|1994-09-28|DELIVER IN PERSON|AIR|nal packages. | +1134|158185|701|3|3|3729.54|0.03|0.07|R|F|1994-05-12|1994-07-13|1994-06-03|DELIVER IN PERSON|REG AIR| nag furiously regular deposits. bold,| +1135|101174|6195|1|17|19977.89|0.04|0.03|N|O|1997-08-20|1997-08-25|1997-08-25|NONE|FOB|ly unusual excuses across the p| +1135|29946|7453|2|22|41270.68|0.08|0.02|N|O|1997-08-18|1997-08-01|1997-08-22|COLLECT COD|REG AIR|e according| +1135|99861|9862|3|26|48382.36|0.06|0.03|N|O|1997-09-28|1997-07-17|1997-10-28|COLLECT COD|SHIP|refully unusual packages against the sly| +1160|87490|2507|1|41|60577.09|0.07|0.01|R|F|1992-05-27|1992-05-04|1992-06-11|TAKE BACK RETURN|TRUCK| among the pending deposits. | +1160|35248|255|2|43|50879.32|0.05|0.07|R|F|1992-04-19|1992-04-06|1992-05-18|COLLECT COD|REG AIR|lly ironic deposits. regular, | +1160|4877|9878|3|46|81966.02|0.09|0.07|A|F|1992-05-20|1992-05-12|1992-05-29|TAKE BACK RETURN|AIR|its wake slyly | +1161|28240|3245|1|23|26869.52|0.00|0.04|N|O|1995-10-01|1995-10-06|1995-10-12|NONE|RAIL|e blithely regular accounts| +1161|20521|8028|2|45|64868.40|0.06|0.05|N|O|1995-08-26|1995-10-21|1995-08-29|COLLECT COD|AIR|tly ironic grouches wake c| +1161|81080|1081|3|31|32893.48|0.03|0.03|N|O|1995-08-23|1995-10-03|1995-09-10|TAKE BACK RETURN|RAIL|blithely regu| +1161|107640|2661|4|4|6590.56|0.04|0.01|N|O|1995-08-03|1995-09-24|1995-08-26|NONE|TRUCK|ages. ideas with the foxes sleep aft| +1161|101806|1807|5|49|88582.20|0.04|0.01|N|O|1995-08-19|1995-08-31|1995-09-04|NONE|FOB|nts. blithely final request| +1162|181952|1953|1|19|38645.05|0.07|0.00|N|O|1998-02-18|1998-03-12|1998-03-04|COLLECT COD|TRUCK|realms; theodolites use across the | +1162|57376|9882|2|8|10666.96|0.01|0.01|N|O|1998-02-13|1998-03-24|1998-03-04|COLLECT COD|TRUCK| to the final instruc| +1162|102931|7952|3|15|29008.95|0.05|0.04|N|O|1998-01-10|1998-03-28|1998-01-12|COLLECT COD|AIR|endencies. blithely final ideas | +1162|145746|775|4|35|62710.90|0.03|0.04|N|O|1998-02-28|1998-03-05|1998-03-11|DELIVER IN PERSON|AIR|structions dazzle | +1162|138113|627|5|33|37986.63|0.02|0.07|N|O|1998-01-03|1998-03-11|1998-01-16|COLLECT COD|RAIL|ve dependencie| +1162|59208|9209|6|33|38517.60|0.09|0.06|N|O|1998-02-26|1998-02-23|1998-03-11|DELIVER IN PERSON|REG AIR|pendencies sleep bl| +1163|43184|3185|1|16|18034.88|0.02|0.07|N|O|1995-06-21|1995-06-29|1995-07-07|TAKE BACK RETURN|AIR|gle slyly express pinto | +1163|181849|4368|2|21|40547.64|0.10|0.06|A|F|1995-05-28|1995-08-21|1995-06-10|COLLECT COD|SHIP|al deposits. quiet requests wake caref| +1163|128233|746|3|14|17657.22|0.09|0.05|N|O|1995-09-07|1995-08-02|1995-09-11|TAKE BACK RETURN|FOB| bold depths sleep furiousl| +1163|7094|4595|4|16|16017.44|0.04|0.04|N|O|1995-08-07|1995-08-23|1995-08-24|DELIVER IN PERSON|FOB|ounts cajole slyly pending depos| +1163|17070|4574|5|9|8883.63|0.05|0.05|N|F|1995-06-10|1995-07-10|1995-06-28|DELIVER IN PERSON|RAIL| warhorses. even, ironic foxes af| +1164|94776|9795|1|41|72601.57|0.00|0.08|N|O|1997-10-20|1997-12-11|1997-11-18|NONE|RAIL|gle blithely fl| +1164|99767|7295|2|39|68903.64|0.10|0.02|N|O|1997-11-18|1997-11-08|1997-12-07|TAKE BACK RETURN|SHIP|e blithely car| +1165|109669|4690|1|12|20143.92|0.00|0.01|N|O|1997-08-31|1997-09-13|1997-09-07|NONE|TRUCK|onic gifts cajole furiously| +1165|1821|4322|2|7|12059.74|0.09|0.02|N|O|1997-08-31|1997-09-03|1997-09-02|TAKE BACK RETURN|SHIP|usual deposits sleep. bold, final| +1165|193043|3044|3|49|55665.96|0.00|0.07|N|O|1997-08-25|1997-09-05|1997-09-15|DELIVER IN PERSON|MAIL|e furiously across the pending| +1166|90581|5600|1|15|23573.70|0.09|0.02|N|O|1996-07-24|1996-07-16|1996-08-22|DELIVER IN PERSON|FOB|counts use slyly b| +1166|193444|1002|2|4|6149.76|0.02|0.00|N|O|1996-04-27|1996-07-17|1996-05-12|TAKE BACK RETURN|SHIP|e furiously silent packages. requests wake | +1166|12297|9801|3|34|41115.86|0.10|0.06|N|O|1996-04-26|1996-07-16|1996-05-06|COLLECT COD|TRUCK|lithely final de| +1166|71524|4032|4|37|55334.24|0.08|0.02|N|O|1996-05-24|1996-05-24|1996-05-29|NONE|SHIP|ffily quickly pending ideas. quickly ironi| +1167|8993|6494|1|3|5705.97|0.00|0.01|A|F|1995-04-12|1995-02-25|1995-04-18|DELIVER IN PERSON|TRUCK|riously regular| +1167|142889|432|2|18|34773.84|0.09|0.03|R|F|1995-02-13|1995-03-29|1995-03-14|COLLECT COD|REG AIR|regular ideas boost about the e| +1167|127540|2565|3|16|25080.64|0.01|0.08|R|F|1995-03-12|1995-04-14|1995-04-07|DELIVER IN PERSON|MAIL|ular, regular platelets. ironic,| +1167|164742|9775|4|25|45168.50|0.06|0.02|A|F|1995-05-04|1995-03-10|1995-05-07|NONE|RAIL|egular deposits. slyly ironic accoun| +1192|101193|6214|1|20|23883.80|0.09|0.00|R|F|1993-04-03|1993-03-21|1993-04-25|TAKE BACK RETURN|MAIL| integrate f| +1192|149577|2092|2|11|17892.27|0.06|0.04|A|F|1993-04-19|1993-02-04|1993-04-23|NONE|MAIL|press accounts engage | +1193|199025|1545|1|25|28100.50|0.00|0.07|N|O|1998-02-26|1998-03-22|1998-03-28|DELIVER IN PERSON|MAIL|equests breach silent multi| +1193|6058|3559|2|14|13496.70|0.09|0.01|N|O|1998-03-30|1998-02-16|1998-04-20|TAKE BACK RETURN|SHIP| blithe pinto beans nod slow pint| +1193|5950|951|3|17|31551.15|0.03|0.04|N|O|1998-01-31|1998-04-02|1998-02-03|NONE|REG AIR|ickly unusual accounts grow| +1193|197967|487|4|44|90858.24|0.07|0.08|N|O|1998-02-17|1998-03-23|1998-03-17|COLLECT COD|SHIP|r the deposits. excuses use carefull| +1193|16760|6761|5|16|26828.16|0.03|0.01|N|O|1998-02-05|1998-02-08|1998-02-07|NONE|REG AIR|ts use alongsid| +1193|71190|6205|6|24|27868.56|0.09|0.02|N|O|1998-01-24|1998-03-06|1998-01-26|NONE|REG AIR| requests shall have to lose alongside of | +1194|160148|149|1|33|39868.62|0.04|0.00|N|O|1996-11-10|1996-12-29|1996-11-24|DELIVER IN PERSON|MAIL|es are quickly. fina| +1194|4388|1889|2|49|63326.62|0.05|0.02|N|O|1996-10-10|1996-12-12|1996-10-15|COLLECT COD|TRUCK|accounts. fluf| +1194|142916|5431|3|20|39178.20|0.03|0.05|N|O|1996-11-03|1996-12-23|1996-11-22|TAKE BACK RETURN|REG AIR|al request| +1194|182716|2717|4|43|77344.53|0.06|0.04|N|O|1996-10-20|1996-11-18|1996-11-11|DELIVER IN PERSON|MAIL|ckages wake blith| +1195|192646|204|1|7|12170.48|0.07|0.06|A|F|1994-11-06|1994-10-07|1994-11-21|DELIVER IN PERSON|MAIL| the fluffily even ideas. car| +1195|192303|2304|2|23|32091.90|0.05|0.07|A|F|1994-09-02|1994-10-10|1994-09-06|TAKE BACK RETURN|SHIP|ronic ideas must boost acc| +1196|24388|1895|1|6|7874.28|0.03|0.08|R|F|1995-01-01|1995-02-01|1995-01-08|DELIVER IN PERSON|FOB|kages haggle carefully | +1196|78783|8784|2|9|15856.02|0.08|0.00|R|F|1995-02-14|1995-01-13|1995-03-07|DELIVER IN PERSON|FOB|es. deposits wake daringly outside the| +1196|92348|9876|3|28|37529.52|0.09|0.01|R|F|1994-11-14|1994-12-12|1994-12-03|NONE|RAIL|r packages ar| +1196|91875|4385|4|22|41071.14|0.04|0.07|R|F|1995-02-24|1995-02-05|1995-03-16|COLLECT COD|RAIL|ymptotes solve theodolit| +1196|137451|9965|5|41|61026.45|0.04|0.06|A|F|1995-01-22|1994-12-22|1995-01-25|COLLECT COD|FOB| deposits. final pinto beans| +1197|26159|6160|1|11|11936.65|0.06|0.06|R|F|1995-04-19|1995-03-06|1995-05-02|DELIVER IN PERSON|MAIL|s sleep furious| +1197|51209|3715|2|36|41767.20|0.09|0.00|A|F|1995-04-19|1995-02-15|1995-05-02|TAKE BACK RETURN|TRUCK|e fluffily according t| +1197|54674|7180|3|38|61889.46|0.07|0.04|A|F|1995-02-20|1995-03-27|1995-02-27|DELIVER IN PERSON|SHIP|efully slyly r| +1197|94449|6959|4|27|38972.88|0.00|0.08|A|F|1995-04-13|1995-02-21|1995-04-20|NONE|REG AIR|osits wake s| +1197|193083|641|5|44|51747.52|0.01|0.03|A|F|1995-03-31|1995-02-27|1995-04-19|TAKE BACK RETURN|TRUCK| slyly. furiously regular depos| +1197|139454|9455|6|28|41816.60|0.02|0.06|R|F|1995-02-13|1995-02-24|1995-02-16|TAKE BACK RETURN|AIR|o the carefully final packages nag across| +1198|59868|4879|1|26|47524.36|0.05|0.05|R|F|1993-08-17|1993-07-29|1993-08-24|TAKE BACK RETURN|RAIL|c packages along the blithely bold th| +1198|197121|7122|2|39|47506.68|0.06|0.06|A|F|1993-06-22|1993-07-29|1993-07-09|COLLECT COD|MAIL|ly across the fluffily even requests. slyly| +1198|196015|6016|3|33|36663.33|0.07|0.07|R|F|1993-09-13|1993-08-18|1993-09-18|DELIVER IN PERSON|SHIP|r asymptotes. carefully| +1199|20166|167|1|24|26067.84|0.00|0.00|A|F|1994-02-05|1994-03-16|1994-02-25|DELIVER IN PERSON|FOB|tructions. care| +1199|122534|5047|2|30|46695.90|0.08|0.06|A|F|1994-01-09|1994-02-17|1994-01-22|DELIVER IN PERSON|REG AIR|e furiously regular asymptotes cajole aft| +1199|12325|2326|3|28|34644.96|0.02|0.05|A|F|1994-02-25|1994-03-17|1994-03-22|COLLECT COD|SHIP|efully brave requests cajole. ir| +1199|132353|9893|4|47|65111.45|0.01|0.05|R|F|1994-01-31|1994-01-24|1994-02-24|TAKE BACK RETURN|FOB|sits are carefully. furiously perma| +1199|44873|7378|5|15|27268.05|0.09|0.07|A|F|1994-04-09|1994-01-23|1994-04-25|TAKE BACK RETURN|MAIL|express, final| +1199|166185|3734|6|4|5004.72|0.05|0.05|A|F|1994-04-15|1994-01-29|1994-05-01|NONE|AIR|theodolites could have to a| +1224|196360|8880|1|8|11650.88|0.04|0.03|A|F|1993-11-06|1993-10-15|1993-11-14|DELIVER IN PERSON|AIR|ely furiously special instructions. theodol| +1224|10115|7619|2|40|41004.40|0.07|0.08|R|F|1993-08-24|1993-11-09|1993-08-30|COLLECT COD|REG AIR|sits. quickly ironic de| +1224|189815|4852|3|48|91430.88|0.10|0.05|R|F|1993-12-11|1993-10-11|1993-12-30|DELIVER IN PERSON|AIR|ymptotes-- deposit| +1224|5455|456|4|3|4081.35|0.05|0.07|R|F|1993-10-22|1993-10-06|1993-11-04|TAKE BACK RETURN|TRUCK|tes above the pending foxes boost finally | +1224|67127|4646|5|42|45953.04|0.04|0.03|A|F|1993-09-10|1993-10-23|1993-09-17|NONE|FOB|lithely carefully silent deposits. | +1224|192176|9734|6|41|51994.97|0.01|0.01|A|F|1993-08-28|1993-10-06|1993-09-22|DELIVER IN PERSON|TRUCK|ly ironic courts cajole quickly specia| +1224|92258|7277|7|46|57511.50|0.03|0.04|R|F|1993-12-14|1993-11-01|1994-01-05|COLLECT COD|MAIL|sts are accordin| +1225|168247|5796|1|15|19728.60|0.08|0.06|N|O|1998-06-11|1998-08-12|1998-06-13|NONE|MAIL|osits wake fluffily. final instr| +1225|118700|1212|2|2|3437.40|0.02|0.03|N|O|1998-08-23|1998-08-10|1998-09-21|COLLECT COD|SHIP|ding foxes nag alongside of the dolphins. b| +1225|190620|621|3|43|73556.66|0.00|0.08|N|O|1998-08-24|1998-07-25|1998-08-25|COLLECT COD|TRUCK|sits. slyly regular | +1225|134239|6753|4|47|59841.81|0.07|0.08|N|O|1998-08-19|1998-08-22|1998-09-03|COLLECT COD|RAIL|egrate furiously after th| +1226|126007|1032|1|2|2066.00|0.00|0.07|N|O|1997-09-26|1997-10-02|1997-10-15|TAKE BACK RETURN|RAIL| beans. express, silent acco| +1226|183951|1506|2|15|30524.25|0.02|0.01|N|O|1997-08-20|1997-09-13|1997-09-16|TAKE BACK RETURN|FOB|ic theodolites hag| +1227|169659|4692|1|36|62231.40|0.08|0.03|R|F|1992-12-29|1992-12-24|1993-01-01|COLLECT COD|MAIL|ular deposits. fluffil| +1227|44300|6805|2|40|49772.00|0.02|0.06|A|F|1993-03-01|1992-12-14|1993-03-29|COLLECT COD|REG AIR|wake slyly final packages. f| +1228|44838|4839|1|19|33873.77|0.04|0.03|R|F|1992-03-05|1992-03-09|1992-03-22|DELIVER IN PERSON|TRUCK|gle quickly| +1228|178813|1331|2|40|75672.40|0.04|0.00|A|F|1992-05-10|1992-03-19|1992-05-18|NONE|AIR|dencies are fluffily u| +1228|105916|5917|3|34|65344.94|0.01|0.04|R|F|1992-02-17|1992-04-07|1992-03-18|DELIVER IN PERSON|AIR|ironic the| +1228|114687|2221|4|10|17016.80|0.08|0.08|R|F|1992-04-14|1992-04-18|1992-04-22|NONE|TRUCK|s detect blithe| +1228|134254|1794|5|21|27053.25|0.07|0.05|R|F|1992-02-02|1992-03-24|1992-02-14|NONE|AIR|ress platelets cajole furiously above the | +1228|195540|5541|6|24|39252.96|0.06|0.01|A|F|1992-04-30|1992-03-28|1992-05-23|COLLECT COD|AIR|dependencies against| +1229|149862|9863|1|28|53532.08|0.05|0.08|A|F|1992-11-05|1993-01-04|1992-11-29|COLLECT COD|RAIL|ng theodolites sleep along the ruthlessly| +1229|123629|6142|2|43|71062.66|0.03|0.02|A|F|1992-12-29|1992-12-12|1993-01-05|TAKE BACK RETURN|MAIL|sly final | +1230|88977|3994|1|29|57013.13|0.05|0.02|N|O|1998-08-15|1998-06-27|1998-09-12|NONE|RAIL|ld slyly theodolites; blithely bold theod| +1230|22471|7476|2|38|52951.86|0.08|0.01|N|O|1998-08-06|1998-06-08|1998-08-27|NONE|RAIL|lar, regular foxes| +1230|53853|6359|3|19|34330.15|0.10|0.01|N|O|1998-07-10|1998-07-31|1998-08-09|TAKE BACK RETURN|REG AIR|kages do eat above the pending d| +1230|96272|3800|4|4|5073.08|0.05|0.00|N|O|1998-08-30|1998-06-10|1998-09-20|TAKE BACK RETURN|SHIP|quests sleep pending accounts. excuses| +1231|14476|6978|1|23|31980.81|0.10|0.06|R|F|1993-06-01|1993-07-04|1993-06-16|TAKE BACK RETURN|AIR|sly careful| +1231|93926|6436|2|29|55677.68|0.01|0.02|R|F|1993-05-09|1993-07-19|1993-05-24|TAKE BACK RETURN|TRUCK|ages. slyly express packages across| +1256|41688|4193|1|17|27704.56|0.07|0.05|N|O|1997-06-19|1997-05-15|1997-07-19|TAKE BACK RETURN|REG AIR| detect carefully toward the bold ac| +1256|37813|5323|2|11|19258.91|0.00|0.00|N|O|1997-03-15|1997-05-16|1997-03-29|TAKE BACK RETURN|REG AIR|tructions snoo| +1256|109211|4232|3|19|23183.99|0.09|0.01|N|O|1997-05-31|1997-04-17|1997-06-04|DELIVER IN PERSON|REG AIR| alongside of the slyly | +1256|102381|9912|4|48|66402.24|0.05|0.04|N|O|1997-06-05|1997-04-30|1997-06-12|COLLECT COD|RAIL|. furiously qu| +1256|111056|8590|5|41|43749.05|0.05|0.04|N|O|1997-06-27|1997-04-09|1997-07-17|TAKE BACK RETURN|REG AIR|its. fluffily ir| +1256|103760|6271|6|15|26456.40|0.00|0.00|N|O|1997-07-01|1997-05-28|1997-07-04|TAKE BACK RETURN|REG AIR|ar foxes. slyly ironic deposits cajole | +1257|94383|6893|1|32|44076.16|0.00|0.08|N|O|1997-05-14|1997-04-23|1997-06-07|COLLECT COD|SHIP| deposits. carefully bold foxes s| +1257|85575|5576|2|22|34332.54|0.03|0.07|N|O|1997-05-24|1997-04-02|1997-06-08|COLLECT COD|MAIL|ual, even packages. slowl| +1258|142384|2385|1|36|51349.68|0.04|0.07|R|F|1995-05-28|1995-06-11|1995-06-01|COLLECT COD|REG AIR|ding theodolites cajole furi| +1258|31987|6994|2|46|88273.08|0.02|0.08|N|O|1995-08-17|1995-06-20|1995-09-05|NONE|FOB|e. blithely final requests unwind packag| +1258|195869|3427|3|21|41262.06|0.04|0.05|A|F|1995-05-24|1995-06-30|1995-06-16|DELIVER IN PERSON|AIR| the accounts. even, unusual | +1258|159334|9335|4|34|47373.22|0.03|0.05|R|F|1995-05-11|1995-06-26|1995-05-14|TAKE BACK RETURN|FOB|y bold accounts| +1258|117881|7882|5|11|20887.68|0.06|0.04|N|O|1995-08-19|1995-07-10|1995-09-10|NONE|MAIL|sual, even ideas haggle regular accounts. c| +1258|15605|5606|6|4|6082.40|0.00|0.00|N|O|1995-08-25|1995-07-14|1995-08-29|TAKE BACK RETURN|AIR|cies. packages d| +1258|72389|4897|7|12|16336.56|0.05|0.04|N|O|1995-08-19|1995-06-20|1995-08-26|NONE|REG AIR|ter the finally final accounts | +1259|39906|9907|1|23|42455.70|0.04|0.06|N|O|1996-03-22|1996-03-12|1996-03-26|NONE|REG AIR|ackages boost slyly. fur| +1259|99590|4609|2|10|15895.90|0.10|0.03|N|O|1996-04-01|1996-02-24|1996-05-01|NONE|SHIP|ckly unusual requests. requ| +1259|197767|287|3|37|68996.12|0.09|0.08|N|O|1996-01-04|1996-03-13|1996-01-28|NONE|AIR| deposits cajole car| +1259|54420|6926|4|9|12369.78|0.03|0.01|N|O|1996-01-27|1996-01-21|1996-02-12|COLLECT COD|RAIL|ct. blithely unu| +1259|27569|7570|5|20|29931.20|0.05|0.01|N|O|1996-02-12|1996-03-14|1996-03-05|COLLECT COD|FOB|dolites nag s| +1259|138060|3087|6|2|2196.12|0.10|0.02|N|O|1996-01-03|1996-02-22|1996-01-06|COLLECT COD|TRUCK|osits around the quickl| +1259|158152|3183|7|15|18152.25|0.06|0.04|N|O|1996-04-18|1996-01-26|1996-05-02|NONE|SHIP|ic theodolites. quickly unusual ideas cajo| +1260|48706|3715|1|9|14892.30|0.04|0.03|N|O|1996-12-03|1996-12-06|1996-12-23|NONE|REG AIR|y near the fluffily expres| +1260|197955|7956|2|37|75959.15|0.05|0.03|N|O|1996-11-26|1996-11-10|1996-12-04|COLLECT COD|SHIP| carefully pending theodol| +1260|25241|2748|3|44|51314.56|0.04|0.02|N|O|1996-11-19|1996-11-25|1996-11-24|TAKE BACK RETURN|TRUCK|s foxes. even, special platelets wake bold| +1260|9976|4977|4|23|43377.31|0.07|0.05|N|O|1996-11-08|1996-12-31|1996-11-17|TAKE BACK RETURN|MAIL| stealthy accounts along the unusual| +1260|60804|8323|5|13|22942.40|0.01|0.08|N|O|1997-01-04|1996-12-18|1997-01-11|NONE|RAIL| furiously bold instruc| +1260|132770|7797|6|28|50477.56|0.08|0.00|N|O|1996-11-30|1996-11-26|1996-12-22|TAKE BACK RETURN|REG AIR|lithely asymp| +1261|192667|225|1|10|17596.60|0.02|0.05|N|O|1998-10-21|1998-09-30|1998-10-27|COLLECT COD|RAIL|slyly fluffily final requests. final inst| +1262|73835|3836|1|2|3617.66|0.03|0.05|R|F|1994-09-12|1994-11-01|1994-09-20|TAKE BACK RETURN|AIR|lyly regular accounts should wake furiously| +1262|144161|9190|2|49|59052.84|0.08|0.08|R|F|1994-11-24|1994-11-23|1994-12-23|DELIVER IN PERSON|REG AIR|ronic asymptotes? attainm| +1262|103484|1015|3|45|66936.60|0.00|0.00|R|F|1994-12-01|1994-10-10|1994-12-20|TAKE BACK RETURN|REG AIR|. blithely regular | +1262|42439|9952|4|40|55257.20|0.01|0.07|A|F|1994-12-19|1994-10-30|1994-12-22|TAKE BACK RETURN|MAIL|ts. silently silent packages| +1262|67439|2452|5|49|68915.07|0.01|0.07|R|F|1994-09-27|1994-10-03|1994-09-30|COLLECT COD|RAIL|ely pending requests. furi| +1263|195954|8474|1|44|90197.80|0.05|0.03|A|F|1993-10-17|1993-12-17|1993-11-15|COLLECT COD|FOB|s. ironic accounts ca| +1263|192594|5114|2|26|43851.34|0.09|0.05|R|F|1993-11-07|1993-11-15|1993-11-15|TAKE BACK RETURN|FOB|al instructions unwind furiously quic| +1263|122407|9944|3|50|71470.00|0.07|0.05|R|F|1993-11-09|1993-12-07|1993-11-21|TAKE BACK RETURN|REG AIR|ely. carefully final | +1263|80591|592|4|34|53434.06|0.07|0.00|A|F|1993-12-23|1993-12-03|1994-01-01|TAKE BACK RETURN|AIR|e ironic dependencies sleep fluffily qu| +1263|80079|7604|5|5|5295.35|0.06|0.05|A|F|1993-11-22|1993-11-26|1993-12-10|NONE|REG AIR|ns according to the furiously s| +1288|181832|9387|1|45|86122.35|0.05|0.02|N|O|1995-06-19|1995-05-20|1995-07-13|NONE|REG AIR|y ironic accounts. fluffily regular real| +1288|43522|1035|2|48|70344.96|0.08|0.03|A|F|1995-04-25|1995-05-18|1995-05-21|DELIVER IN PERSON|MAIL|ts! even, special reque| +1288|72822|344|3|1|1794.82|0.01|0.08|R|F|1995-03-24|1995-05-08|1995-04-06|COLLECT COD|SHIP| packages: quickly express courts th| +1288|104418|1949|4|5|7112.05|0.04|0.04|A|F|1995-03-30|1995-05-11|1995-04-21|TAKE BACK RETURN|RAIL|pending deposits above | +1288|137307|4847|5|33|44361.90|0.09|0.00|N|F|1995-05-29|1995-05-12|1995-06-19|DELIVER IN PERSON|RAIL| according | +1288|111639|1640|6|29|47868.27|0.04|0.08|A|F|1995-05-09|1995-03-31|1995-05-25|DELIVER IN PERSON|FOB| regular depos| +1289|91900|1901|1|7|13243.30|0.08|0.00|N|O|1998-09-29|1998-09-04|1998-10-25|DELIVER IN PERSON|REG AIR|hes against the furiously silent | +1289|156817|6818|2|11|20611.91|0.07|0.03|N|O|1998-09-12|1998-08-21|1998-10-01|DELIVER IN PERSON|MAIL|ly pending accounts. slyly ironic sauter| +1289|22550|57|3|45|66264.75|0.10|0.08|N|O|1998-07-13|1998-09-15|1998-08-10|DELIVER IN PERSON|REG AIR| wake slyly according to the s| +1290|123755|3756|1|44|78265.00|0.10|0.03|N|O|1998-02-06|1998-01-16|1998-02-23|DELIVER IN PERSON|SHIP|ithely even | +1290|144299|9328|2|35|47015.15|0.04|0.04|N|O|1998-03-07|1998-02-19|1998-03-28|COLLECT COD|SHIP|elets affix! slyly pending dolphi| +1290|22205|7210|3|4|4508.80|0.02|0.00|N|O|1998-01-06|1998-01-03|1998-01-27|DELIVER IN PERSON|TRUCK|ndle slyly carefully final | +1290|195548|5549|4|14|23009.56|0.07|0.00|N|O|1997-12-14|1998-01-08|1997-12-26|TAKE BACK RETURN|MAIL|s cajole closely regular, pend| +1291|121671|6696|1|50|84633.50|0.03|0.06|N|O|1996-01-27|1995-12-16|1996-01-28|COLLECT COD|RAIL|thely final pin| +1291|119858|4881|2|3|5633.55|0.01|0.01|N|O|1995-12-23|1995-12-12|1995-12-30|COLLECT COD|RAIL|ly around the fo| +1291|43619|1132|3|6|9375.66|0.04|0.01|N|O|1996-01-05|1995-11-29|1996-01-07|NONE|AIR| ironic, unusu| +1291|98467|977|4|19|27843.74|0.09|0.06|N|O|1996-01-17|1995-12-28|1996-01-23|DELIVER IN PERSON|AIR|earls. carefully final tithes wak| +1291|118236|5770|5|29|36372.67|0.02|0.00|N|O|1995-11-21|1995-12-26|1995-11-25|TAKE BACK RETURN|REG AIR|about the theodolites sleep bold ideas.| +1292|17311|4815|1|21|25794.51|0.09|0.05|N|O|1996-12-18|1996-12-19|1996-12-25|TAKE BACK RETURN|FOB|furious warhorses | +1292|136537|4077|2|4|6294.12|0.07|0.07|N|O|1996-12-16|1996-11-21|1997-01-05|NONE|TRUCK|theodolites integrat| +1292|172821|2822|3|26|49239.32|0.01|0.07|N|O|1997-01-13|1996-12-30|1997-01-23|NONE|RAIL|ular reque| +1293|68347|8348|1|13|17099.42|0.00|0.06|N|O|1998-07-26|1998-08-23|1998-08-23|TAKE BACK RETURN|MAIL|ronic deposits. slyly silent packages| +1293|93464|8483|2|26|37893.96|0.05|0.05|N|O|1998-08-19|1998-09-08|1998-09-08|TAKE BACK RETURN|REG AIR|kly final dolphins. final, silent requests | +1293|48751|6264|3|38|64590.50|0.04|0.00|N|O|1998-10-20|1998-09-28|1998-10-22|DELIVER IN PERSON|REG AIR| the carefully final sheaves. slyly| +1294|198726|8727|1|13|23721.36|0.00|0.00|A|F|1994-08-06|1994-07-28|1994-08-10|COLLECT COD|AIR| permanent| +1294|176827|6828|2|32|60922.24|0.04|0.05|R|F|1994-08-08|1994-06-13|1994-08-09|TAKE BACK RETURN|MAIL|ess packages| +1294|118059|3082|3|35|37696.75|0.10|0.01|R|F|1994-08-09|1994-07-20|1994-08-19|TAKE BACK RETURN|RAIL| dependenc| +1294|13440|5942|4|14|18948.16|0.08|0.03|R|F|1994-08-01|1994-06-19|1994-08-05|DELIVER IN PERSON|RAIL|ts are furiously. blithely bold r| +1294|75066|5067|5|44|45806.64|0.05|0.04|A|F|1994-07-30|1994-06-19|1994-08-02|DELIVER IN PERSON|SHIP|cial, regular foxes are carefully slyl| +1294|18215|5719|6|19|21530.99|0.06|0.01|R|F|1994-05-17|1994-08-01|1994-06-01|NONE|MAIL|fluffily fi| +1295|52133|7144|1|4|4340.52|0.06|0.06|N|O|1997-06-25|1997-05-30|1997-06-27|DELIVER IN PERSON|REG AIR|en deposits cajole furiously s| +1295|194237|4238|2|17|22630.91|0.03|0.00|N|O|1997-04-03|1997-06-17|1997-04-14|DELIVER IN PERSON|SHIP|nts. furiously even pinto beans shall| +1295|129088|6625|3|39|43566.12|0.06|0.01|N|O|1997-03-29|1997-04-30|1997-03-30|NONE|SHIP|ironic foxes. q| +1295|180030|5067|4|22|24420.66|0.00|0.00|N|O|1997-06-05|1997-06-11|1997-07-04|NONE|MAIL|ven, ironic platelets. regular packages are| +1295|155473|3019|5|46|70309.62|0.04|0.07|N|O|1997-04-28|1997-06-16|1997-05-24|COLLECT COD|AIR|deas. carefully fi| +1295|32708|7715|6|48|78753.60|0.05|0.06|N|O|1997-06-27|1997-05-31|1997-07-12|TAKE BACK RETURN|REG AIR|y requests. fur| +1320|126763|4300|1|10|17897.60|0.04|0.06|N|O|1997-11-05|1997-12-25|1997-11-13|NONE|RAIL|sly even asymptotes| +1321|3213|5714|1|31|34602.51|0.07|0.03|R|F|1995-04-30|1995-04-29|1995-05-26|NONE|FOB| closely regular ex| +1321|184402|1957|2|25|37160.00|0.00|0.05|N|F|1995-06-06|1995-06-06|1995-06-30|NONE|MAIL|en foxes. unusu| +1321|30467|2971|3|37|51706.02|0.06|0.06|N|O|1995-06-22|1995-04-20|1995-06-30|NONE|TRUCK|ular pinto beans haggle fluffily about t| +1321|56014|1025|4|32|31040.32|0.09|0.03|N|O|1995-06-24|1995-05-04|1995-07-09|NONE|REG AIR|to beans are q| +1321|16677|6678|5|37|58965.79|0.08|0.06|N|O|1995-06-24|1995-05-17|1995-07-11|DELIVER IN PERSON|TRUCK|y fluffy, silent instructions. furiously ex| +1322|177851|5403|1|19|36648.15|0.04|0.00|A|F|1992-12-08|1992-12-02|1992-12-17|DELIVER IN PERSON|SHIP|escapades. fluffily| +1322|131697|4211|2|15|25930.35|0.08|0.00|A|F|1992-10-17|1992-12-20|1992-11-04|COLLECT COD|TRUCK|xes about the deposits cajole furi| +1322|17731|2734|3|50|82436.50|0.06|0.04|R|F|1993-01-29|1992-11-28|1993-02-13|DELIVER IN PERSON|SHIP|press, unusual packages above the express| +1323|51968|9484|1|28|53758.88|0.04|0.07|N|O|1995-10-16|1995-09-22|1995-10-17|COLLECT COD|RAIL|refully ir| +1323|20822|8329|2|48|83655.36|0.06|0.06|N|O|1995-10-13|1995-09-20|1995-10-21|COLLECT COD|MAIL|thely regular forges nag ca| +1323|146180|8695|3|33|40463.94|0.07|0.01|N|O|1995-11-08|1995-08-26|1995-11-19|TAKE BACK RETURN|REG AIR|ironically. fluf| +1324|20205|7712|1|15|16878.00|0.00|0.07|R|F|1993-05-27|1993-06-30|1993-06-17|DELIVER IN PERSON|AIR|al platelets should have | +1324|170867|8419|2|34|65887.24|0.02|0.00|R|F|1993-07-11|1993-06-05|1993-07-26|COLLECT COD|REG AIR|ts. ironic, fina| +1324|150079|5110|3|24|27097.68|0.01|0.05|R|F|1993-05-14|1993-07-09|1993-05-16|TAKE BACK RETURN|MAIL|mptotes. furi| +1324|175001|5002|4|15|16140.00|0.10|0.02|A|F|1993-08-29|1993-07-29|1993-09-15|DELIVER IN PERSON|MAIL|e special,| +1324|38341|8342|5|42|53732.28|0.10|0.08|R|F|1993-07-21|1993-07-05|1993-07-29|COLLECT COD|FOB| across the slyly final asym| +1324|191026|1027|6|37|41329.74|0.08|0.01|A|F|1993-06-18|1993-07-10|1993-06-26|TAKE BACK RETURN|SHIP|ns unwind. express acco| +1325|153549|8580|1|25|40063.50|0.07|0.04|N|O|1997-01-28|1996-11-17|1997-02-09|DELIVER IN PERSON|TRUCK|gular requests according to the furiou| +1325|91714|4224|2|13|22174.23|0.07|0.08|N|O|1996-12-14|1996-12-25|1996-12-31|TAKE BACK RETURN|RAIL|regular deposits a| +1325|32356|7363|3|36|46380.60|0.03|0.01|N|O|1996-12-13|1996-12-30|1996-12-31|COLLECT COD|AIR|s dependencie| +1325|191077|8635|4|6|7008.42|0.10|0.01|N|O|1996-11-05|1996-12-11|1996-11-12|DELIVER IN PERSON|TRUCK|nts kindle carefully slyly express th| +1325|25825|8328|5|16|28013.12|0.08|0.05|N|O|1996-12-17|1996-11-17|1997-01-13|COLLECT COD|MAIL| could have to| +1326|108054|5585|1|43|45668.15|0.09|0.05|A|F|1993-03-17|1993-02-19|1993-03-23|DELIVER IN PERSON|TRUCK|sly. quickly unusual accounts| +1327|97136|7137|1|11|12464.43|0.07|0.07|R|F|1993-05-14|1993-05-23|1993-05-28|NONE|REG AIR|d slyly. slyly unusual de| +1327|160733|5766|2|17|30493.41|0.02|0.08|A|F|1993-06-17|1993-05-13|1993-06-30|DELIVER IN PERSON|FOB|ole blithely. fluffily special packa| +1327|37608|5118|3|25|38640.00|0.10|0.00|R|F|1993-05-03|1993-04-20|1993-05-22|DELIVER IN PERSON|FOB|e ironic instructions. furiously f| +1327|61155|3662|4|45|50226.75|0.02|0.04|A|F|1993-04-26|1993-05-08|1993-05-18|DELIVER IN PERSON|MAIL|s haggle until the | +1327|30597|8107|5|23|35134.57|0.04|0.01|A|F|1993-03-20|1993-05-13|1993-04-04|DELIVER IN PERSON|SHIP|r ideas sleep closely. | +1352|154928|7444|1|1|1982.92|0.01|0.06|N|O|1997-08-19|1997-07-04|1997-09-07|NONE|TRUCK|ys. ironic, even ideas haggle carefully | +1352|64622|4623|2|45|71397.90|0.07|0.08|N|O|1997-08-23|1997-08-12|1997-08-31|NONE|TRUCK|es. bold pinto | +1352|86054|6055|3|11|11440.55|0.00|0.00|N|O|1997-09-12|1997-08-20|1997-09-25|NONE|SHIP|side of the packages use | +1353|173724|3725|1|50|89886.00|0.07|0.02|A|F|1993-07-14|1993-08-14|1993-07-22|TAKE BACK RETURN|RAIL|ts nag regular theodolites. car| +1353|170812|5847|2|31|58367.11|0.02|0.03|A|F|1993-10-05|1993-09-16|1993-10-08|COLLECT COD|AIR|ts cajole quickly carefully regular| +1353|31824|1825|3|11|19314.02|0.06|0.04|A|F|1993-07-22|1993-08-20|1993-08-15|NONE|TRUCK| express instructions. fluff| +1354|22552|5055|1|11|16220.05|0.00|0.06|N|O|1998-03-04|1998-03-29|1998-03-28|NONE|MAIL|cajole. furiously ironic deposits was fl| +1354|22165|2166|2|30|32614.80|0.03|0.03|N|O|1998-05-29|1998-03-12|1998-06-28|TAKE BACK RETURN|TRUCK|eep slyly fluffily iron| +1355|73539|8554|1|5|7562.65|0.09|0.06|R|F|1994-12-07|1994-12-15|1994-12-30|NONE|AIR|dencies haggl| +1355|168750|6299|2|36|65475.00|0.09|0.00|R|F|1995-01-05|1994-12-12|1995-01-30|DELIVER IN PERSON|SHIP|nts against the furiously ironic deposits | +1355|174654|4655|3|13|22472.45|0.10|0.08|A|F|1995-01-24|1994-11-07|1995-02-16|NONE|REG AIR|ages. enticingly fina| +1355|4592|7093|4|18|26938.62|0.07|0.05|A|F|1995-01-03|1994-11-13|1995-01-26|COLLECT COD|RAIL|ess deposits wake slyly special packa| +1355|170972|973|5|2|4085.94|0.09|0.00|A|F|1995-01-04|1994-11-16|1995-01-26|COLLECT COD|TRUCK|ymptotes. carefully dar| +1355|122836|5349|6|4|7435.32|0.03|0.02|R|F|1994-11-15|1994-11-01|1994-11-28|NONE|RAIL|hithout the blithely even deposits integr| +1356|4356|9357|1|9|11343.15|0.06|0.04|N|O|1997-02-28|1997-04-26|1997-03-30|TAKE BACK RETURN|FOB|ldly carefully final packages. q| +1357|61439|3946|1|11|15404.73|0.10|0.00|A|F|1992-12-18|1992-11-26|1993-01-08|NONE|AIR| quickly about the requests. regular reque| +1357|199045|6603|2|28|32033.12|0.08|0.05|A|F|1993-01-31|1993-01-25|1993-02-15|COLLECT COD|RAIL|y special, unus| +1357|147114|7115|3|2|2322.22|0.04|0.01|A|F|1993-02-08|1992-12-14|1993-02-09|TAKE BACK RETURN|RAIL|ts nag across the bli| +1358|38274|3281|1|36|43641.72|0.10|0.01|N|O|1997-02-06|1996-12-19|1997-03-03|NONE|TRUCK| dependencies. final asympt| +1358|61025|3532|2|46|45356.92|0.07|0.07|N|O|1997-03-04|1997-01-18|1997-04-02|NONE|AIR|sts detect bravely after the furiously iron| +1358|35247|7751|3|32|37831.68|0.10|0.07|N|O|1997-02-09|1997-01-12|1997-02-11|COLLECT COD|RAIL| pending excuses. dep| +1358|185830|8349|4|8|15326.64|0.07|0.08|N|O|1996-12-27|1996-12-29|1997-01-13|NONE|RAIL|kly according to the blithely r| +1358|42797|310|5|46|80030.34|0.02|0.02|N|O|1997-03-10|1996-12-12|1997-03-16|DELIVER IN PERSON|FOB|telets. express packages wake about the| +1359|145367|5368|1|35|49432.60|0.04|0.06|N|O|1998-05-26|1998-06-23|1998-06-01|TAKE BACK RETURN|REG AIR|ideas. special reque| +1359|169164|1681|2|47|57958.52|0.00|0.06|N|O|1998-09-09|1998-06-29|1998-09-24|COLLECT COD|AIR| along the fluffily | +1359|132743|2744|3|3|5327.22|0.00|0.02|N|O|1998-06-30|1998-08-15|1998-07-05|NONE|AIR|ests. blithely regular theodolites integra| +1359|195905|8425|4|3|6002.70|0.05|0.04|N|O|1998-07-01|1998-07-25|1998-07-28|NONE|TRUCK|ly. packages are carefully u| +1384|1675|4176|1|48|75680.16|0.00|0.07|N|O|1996-09-19|1996-07-07|1996-09-29|DELIVER IN PERSON|TRUCK|regular requests boost | +1384|144686|9715|2|36|62304.48|0.05|0.02|N|O|1996-06-07|1996-07-10|1996-06-23|NONE|MAIL|ggle. quickly bold theodolites boost busi| +1384|122687|5200|3|38|64967.84|0.01|0.01|N|O|1996-09-12|1996-07-01|1996-09-28|DELIVER IN PERSON|FOB| ideas. express ideas detect furiously quic| +1384|198696|8697|4|8|14357.52|0.03|0.06|N|O|1996-09-04|1996-07-28|1996-09-08|TAKE BACK RETURN|TRUCK|s print around the daringly unusual depo| +1384|67355|7356|5|43|56861.05|0.10|0.04|N|O|1996-08-16|1996-07-19|1996-09-06|NONE|TRUCK|counts. even platelets afte| +1384|28972|3977|6|23|43722.31|0.10|0.04|N|O|1996-06-30|1996-07-16|1996-07-14|TAKE BACK RETURN|RAIL|e the final platelets are furi| +1384|124902|4903|7|29|55880.10|0.03|0.03|N|O|1996-05-24|1996-07-02|1996-05-30|COLLECT COD|TRUCK|latelets. stealthy| +1385|19158|4161|1|13|14002.95|0.03|0.00|R|F|1992-11-13|1992-10-13|1992-11-19|COLLECT COD|MAIL|ly. fluffily regular deposits abou| +1385|175915|8433|2|24|47781.84|0.05|0.06|A|F|1992-11-03|1992-10-10|1992-11-08|NONE|MAIL|ts near the final epitaphs integr| +1385|187982|7983|3|47|97289.06|0.08|0.06|R|F|1992-08-30|1992-10-29|1992-09-02|NONE|RAIL|ly ironic pe| +1385|198160|680|4|48|60391.68|0.07|0.05|A|F|1992-09-15|1992-10-20|1992-10-13|COLLECT COD|SHIP|r the blithely bo| +1385|73536|1058|5|33|49814.49|0.07|0.06|R|F|1992-11-11|1992-11-07|1992-11-19|NONE|TRUCK| to the slyly final requests. ironic plat| +1386|197435|7436|1|31|47505.33|0.10|0.02|N|O|1996-01-01|1996-02-09|1996-01-16|NONE|SHIP|heodolites integr| +1386|89018|4035|2|6|6042.06|0.03|0.01|N|O|1996-02-26|1996-01-14|1996-03-22|NONE|FOB|cial ideas. furiously express pi| +1386|122580|2581|3|7|11218.06|0.00|0.08|N|O|1996-01-04|1996-02-02|1996-02-01|TAKE BACK RETURN|MAIL|ress platelets detect | +1386|192999|8038|4|41|85771.59|0.08|0.07|N|O|1996-02-14|1996-01-13|1996-02-29|NONE|REG AIR|quickly. fluffily unusual requests cajol| +1387|175249|284|1|11|14566.64|0.06|0.01|R|F|1993-11-04|1993-09-01|1993-11-18|DELIVER IN PERSON|TRUCK|detect quickly bold foxes. even| +1388|59838|2344|1|14|25169.62|0.10|0.07|N|O|1995-09-05|1995-08-30|1995-09-11|TAKE BACK RETURN|MAIL|nt foxes detect quickly regular deposits. r| +1388|96749|1768|2|14|24440.36|0.10|0.00|N|O|1995-10-20|1995-08-15|1995-11-04|DELIVER IN PERSON|AIR|ely over t| +1389|69673|9674|1|16|26282.72|0.07|0.03|R|F|1994-06-05|1994-06-02|1994-07-01|COLLECT COD|MAIL| regular deposits. fluff| +1389|185725|3280|2|36|65185.92|0.06|0.07|A|F|1994-05-24|1994-05-05|1994-06-22|TAKE BACK RETURN|TRUCK| carefully carefully sil| +1389|75914|3436|3|39|73706.49|0.09|0.02|A|F|1994-05-06|1994-05-18|1994-05-22|NONE|FOB|deposits boost q| +1389|76744|1759|4|41|70550.34|0.00|0.01|A|F|1994-06-13|1994-05-14|1994-06-14|DELIVER IN PERSON|MAIL|p thinly special packa| +1389|23050|557|5|46|44760.30|0.03|0.04|A|F|1994-05-25|1994-05-22|1994-06-14|TAKE BACK RETURN|TRUCK|ding requests. multipliers| +1390|63045|8058|1|22|22176.88|0.04|0.05|N|O|1996-01-18|1996-01-12|1996-02-09|NONE|TRUCK|ic packages use carefully accordin| +1390|193940|8979|2|40|81357.60|0.09|0.00|N|O|1996-02-15|1996-01-05|1996-02-22|NONE|FOB|xpress depos| +1391|19956|4959|1|30|56278.50|0.10|0.02|A|F|1994-01-23|1993-12-28|1994-02-08|COLLECT COD|REG AIR|old. furiously regul| +1391|192108|4628|2|23|27602.30|0.08|0.02|R|F|1993-12-23|1994-01-21|1994-01-19|COLLECT COD|RAIL|ual packages nod blithely about the| +1416|71071|1072|1|14|14588.98|0.07|0.04|N|O|1996-01-09|1996-01-13|1996-01-16|DELIVER IN PERSON|MAIL|nstructions. requests sleep fu| +1416|81070|1071|2|30|31532.10|0.09|0.06|N|O|1995-12-29|1996-01-20|1996-01-15|DELIVER IN PERSON|RAIL|yly even escapad| +1416|128639|3664|3|20|33352.60|0.04|0.04|N|O|1996-01-26|1996-02-04|1996-02-17|DELIVER IN PERSON|FOB|ss, regular hockey players.| +1416|22130|9637|4|16|16834.08|0.04|0.02|N|O|1996-03-09|1996-02-03|1996-04-07|TAKE BACK RETURN|TRUCK|in place of the furiously final re| +1416|134384|6898|5|12|17020.56|0.00|0.08|N|O|1996-02-02|1996-03-01|1996-02-09|NONE|SHIP|eas are finally ag| +1417|110450|7984|1|47|68641.15|0.05|0.04|N|O|1998-03-24|1998-04-25|1998-04-13|TAKE BACK RETURN|SHIP|e even warhorses x-ray | +1417|117286|7287|2|32|41704.96|0.10|0.04|N|O|1998-06-27|1998-04-25|1998-07-08|DELIVER IN PERSON|SHIP| dependencies solve ent| +1417|23487|3488|3|22|31030.56|0.01|0.02|N|O|1998-06-20|1998-05-10|1998-06-23|COLLECT COD|FOB|gular request| +1417|142437|2438|4|20|29588.60|0.00|0.07|N|O|1998-05-22|1998-05-28|1998-06-09|COLLECT COD|AIR|deposits. ironic| +1417|137169|9683|5|22|26535.52|0.01|0.02|N|O|1998-05-10|1998-05-03|1998-06-05|DELIVER IN PERSON|RAIL|n accounts. bold fox| +1417|193370|5890|6|31|45364.47|0.04|0.00|N|O|1998-07-01|1998-05-10|1998-07-14|COLLECT COD|RAIL|uffily special inst| +1417|159688|4719|7|11|19224.48|0.07|0.05|N|O|1998-05-09|1998-05-06|1998-05-28|COLLECT COD|REG AIR| integrate about the re| +1418|74839|2361|1|7|12696.81|0.04|0.07|N|O|1996-09-13|1996-08-15|1996-10-12|TAKE BACK RETURN|AIR|o the regular ideas n| +1418|8750|8751|2|34|56397.50|0.10|0.07|N|O|1996-07-01|1996-08-16|1996-07-17|DELIVER IN PERSON|RAIL|ckages. furiously express a| +1418|53962|6468|3|50|95798.00|0.04|0.01|N|O|1996-08-01|1996-07-23|1996-08-14|NONE|SHIP|carefully quiet packages. blithely regula| +1419|110847|5870|1|38|70597.92|0.02|0.03|N|O|1996-09-15|1996-06-20|1996-09-25|NONE|SHIP|deas grow whithout the blithely ironic r| +1419|196820|6821|2|48|92007.36|0.02|0.06|N|O|1996-09-05|1996-08-09|1996-09-23|NONE|MAIL|ly regular ideas. eve| +1419|148152|3181|3|24|28803.60|0.09|0.06|N|O|1996-08-27|1996-06-20|1996-09-03|TAKE BACK RETURN|TRUCK|ages wake despite the close deposits. qui| +1419|189866|2385|4|34|66499.24|0.05|0.04|N|O|1996-05-21|1996-08-11|1996-06-12|TAKE BACK RETURN|AIR|ly. fluffily final | +1419|63741|6248|5|47|80122.78|0.05|0.05|N|O|1996-08-30|1996-08-02|1996-09-20|NONE|REG AIR|ngage furiously furiou| +1419|90201|5220|6|19|22632.80|0.07|0.05|N|O|1996-07-14|1996-07-11|1996-08-09|DELIVER IN PERSON|MAIL|cajole blithely along the ironic id| +1420|17625|127|1|12|18511.44|0.10|0.03|N|O|1998-03-02|1998-03-31|1998-03-23|COLLECT COD|TRUCK|. quickly silent | +1421|4073|9074|1|47|45922.29|0.05|0.04|N|O|1997-06-19|1997-08-17|1997-06-28|NONE|TRUCK|le slyly across t| +1421|41866|6875|2|35|63275.10|0.05|0.06|N|O|1997-07-03|1997-07-15|1997-08-02|DELIVER IN PERSON|FOB|wake slyly furiously exp| +1421|29597|9598|3|1|1526.59|0.07|0.02|N|O|1997-09-02|1997-08-28|1997-10-02|TAKE BACK RETURN|RAIL|the carefull| +1421|33177|3178|4|21|23313.57|0.07|0.07|N|O|1997-09-10|1997-07-24|1997-09-23|NONE|FOB|ticingly daring | +1422|168313|830|1|38|52489.78|0.01|0.05|R|F|1993-06-14|1993-08-11|1993-07-11|DELIVER IN PERSON|MAIL| carefully pending pinto| +1422|30414|415|2|36|48398.76|0.10|0.05|A|F|1993-06-16|1993-06-29|1993-07-04|TAKE BACK RETURN|FOB|ckly bold sauternes. carefully bold pains | +1423|82015|4524|1|37|36889.37|0.08|0.05|A|F|1995-04-11|1995-04-16|1995-05-09|TAKE BACK RETURN|FOB|r accounts are asymptotes. spec| +1423|16160|1163|2|12|12913.92|0.08|0.05|A|F|1995-05-06|1995-04-08|1995-05-21|NONE|MAIL|use carefully i| +1423|523|524|3|15|21352.80|0.04|0.02|R|F|1995-03-25|1995-05-22|1995-04-19|COLLECT COD|FOB|ld requests cajole| +1423|182835|7872|4|32|61370.56|0.06|0.06|A|F|1995-05-31|1995-05-28|1995-06-06|DELIVER IN PERSON|MAIL|eat furiously. even pinto| +1423|100155|2666|5|7|8086.05|0.01|0.05|N|O|1995-07-01|1995-05-15|1995-07-25|COLLECT COD|REG AIR|nts poach q| +1423|101984|9515|6|22|43691.56|0.04|0.05|R|F|1995-04-20|1995-05-11|1995-05-12|COLLECT COD|RAIL| furiously unusua| +1423|39736|7246|7|40|67029.20|0.02|0.05|N|F|1995-06-12|1995-04-07|1995-06-27|TAKE BACK RETURN|TRUCK| regular theodolites haggle | +1448|41157|8670|1|26|28551.90|0.00|0.04|A|F|1992-08-14|1992-07-15|1992-09-02|TAKE BACK RETURN|SHIP| packages hag| +1448|119865|2377|2|9|16963.74|0.04|0.07|R|F|1992-07-06|1992-08-23|1992-08-01|COLLECT COD|RAIL|eas. deposits haggle fu| +1449|158549|3580|1|44|70731.76|0.04|0.06|A|F|1994-06-04|1994-05-31|1994-06-23|COLLECT COD|SHIP|re against the blithely brave requests. pin| +1449|119640|9641|2|3|4978.92|0.06|0.01|A|F|1994-05-14|1994-05-16|1994-05-21|DELIVER IN PERSON|SHIP|posits sleep. carefully unu| +1449|188899|1418|3|32|63612.48|0.06|0.08|R|F|1994-05-12|1994-06-05|1994-05-19|TAKE BACK RETURN|MAIL|otes. carefully iro| +1449|13541|6043|4|9|13090.86|0.04|0.07|R|F|1994-07-22|1994-06-05|1994-07-31|DELIVER IN PERSON|REG AIR|g theodolites. bl| +1449|171783|4301|5|12|22257.36|0.00|0.07|A|F|1994-08-05|1994-06-01|1994-08-21|COLLECT COD|AIR| deposits cajole| +1450|107484|9995|1|37|55184.76|0.04|0.00|N|O|1998-07-21|1998-09-20|1998-07-27|DELIVER IN PERSON|RAIL|es. furiously eve| +1450|67472|7473|2|16|23031.52|0.10|0.04|N|O|1998-09-27|1998-10-02|1998-10-09|NONE|AIR|erve furiously around the furio| +1450|185888|925|3|34|67111.92|0.10|0.04|N|O|1998-10-08|1998-09-07|1998-10-16|NONE|FOB|ole about the carefully ironic a| +1450|17602|7603|4|33|50146.80|0.02|0.06|N|O|1998-11-07|1998-08-31|1998-11-11|COLLECT COD|MAIL|nst the blithely even packages. even acco| +1451|59653|7169|1|50|80632.50|0.06|0.08|A|F|1993-06-09|1993-08-09|1993-06-16|TAKE BACK RETURN|FOB|osely regular theodol| +1451|175236|2788|2|16|20979.68|0.07|0.02|R|F|1993-08-01|1993-07-26|1993-08-24|DELIVER IN PERSON|AIR|ss the blithely unu| +1451|191033|3553|3|15|16860.45|0.08|0.02|R|F|1993-06-13|1993-07-27|1993-07-13|DELIVER IN PERSON|FOB| silent dolphins nag q| +1451|87852|2869|4|3|5519.55|0.03|0.04|R|F|1993-06-19|1993-08-01|1993-07-13|NONE|FOB|riously. furiously final patterns a| +1451|117707|2730|5|23|39668.10|0.07|0.05|A|F|1993-09-03|1993-07-15|1993-09-21|TAKE BACK RETURN|MAIL|ckages cajole slyly about the speci| +1451|85377|5378|6|20|27247.40|0.07|0.02|A|F|1993-06-16|1993-07-19|1993-07-11|TAKE BACK RETURN|AIR|ess packages snooze blithely against th| +1451|119435|6969|7|33|47996.19|0.07|0.03|A|F|1993-08-16|1993-07-25|1993-08-23|COLLECT COD|RAIL| pearls. bold accounts int| +1452|131492|9032|1|49|74651.01|0.03|0.05|N|O|1996-08-31|1996-07-19|1996-09-24|TAKE BACK RETURN|RAIL|riously silent foxes sleep furiously s| +1452|180407|408|2|1|1487.40|0.04|0.05|N|O|1996-08-25|1996-08-18|1996-08-26|COLLECT COD|MAIL|inal theodolites. ev| +1452|93350|3351|3|34|45673.90|0.09|0.01|N|O|1996-06-08|1996-08-24|1996-06-22|DELIVER IN PERSON|AIR|ggle carefully | +1452|127846|2871|4|19|35602.96|0.08|0.02|N|O|1996-08-11|1996-08-12|1996-08-26|TAKE BACK RETURN|REG AIR|o beans nag b| +1452|106853|1874|5|16|29757.60|0.10|0.05|N|O|1996-09-18|1996-08-19|1996-09-23|TAKE BACK RETURN|REG AIR|he quickly regular dependencies. carefully | +1453|128879|6416|1|25|47696.75|0.00|0.08|N|O|1996-06-14|1996-07-09|1996-06-29|COLLECT COD|RAIL|ly after the furiously r| +1453|56033|3549|2|16|15824.48|0.07|0.04|N|O|1996-07-27|1996-06-23|1996-08-14|NONE|TRUCK| regular acco| +1453|146223|8738|3|44|55845.68|0.02|0.01|N|O|1996-07-31|1996-07-23|1996-08-04|COLLECT COD|REG AIR|iously! quickly regular platelets a| +1453|161951|6984|4|15|30194.25|0.06|0.03|N|O|1996-07-24|1996-07-02|1996-08-18|DELIVER IN PERSON|FOB|s. blithel| +1453|103591|1122|5|31|49432.29|0.06|0.03|N|O|1996-06-18|1996-07-27|1996-06-23|DELIVER IN PERSON|AIR|y unusual packages. reg| +1453|50686|8202|6|8|13093.44|0.06|0.00|N|O|1996-06-12|1996-07-14|1996-07-09|TAKE BACK RETURN|REG AIR|areful instruction| +1453|68316|823|7|8|10274.48|0.07|0.00|N|O|1996-06-15|1996-07-02|1996-07-09|NONE|TRUCK| even packag| +1454|175982|5983|1|6|12347.88|0.02|0.03|R|F|1994-11-18|1994-09-07|1994-11-23|DELIVER IN PERSON|SHIP|gle excuses-- even, | +1454|117583|5117|2|14|22408.12|0.09|0.08|A|F|1994-08-17|1994-08-29|1994-08-25|TAKE BACK RETURN|FOB| special pa| +1454|15429|5430|3|34|45710.28|0.08|0.08|R|F|1994-10-23|1994-10-04|1994-11-17|COLLECT COD|SHIP|ests haggle according to the blith| +1455|170201|5236|1|39|49576.80|0.09|0.08|N|O|1997-05-30|1997-05-06|1997-06-11|TAKE BACK RETURN|TRUCK|g platelets. p| +1455|167987|3020|2|26|53429.48|0.00|0.01|N|O|1997-05-17|1997-05-27|1997-06-02|DELIVER IN PERSON|FOB|quests engage quickly about the slyly ir| +1455|145283|7798|3|7|9297.96|0.07|0.06|N|O|1997-07-08|1997-06-07|1997-07-10|COLLECT COD|MAIL|ng to the slyly enticing instructi| +1455|164301|9334|4|3|4095.90|0.03|0.02|N|O|1997-04-16|1997-05-03|1997-04-19|NONE|REG AIR| blithely pend| +1480|89543|4560|1|38|58236.52|0.03|0.01|A|F|1992-08-25|1992-07-13|1992-09-03|NONE|FOB|ar accounts sleep slyly according to | +1480|140425|426|2|47|68874.74|0.07|0.04|A|F|1992-09-14|1992-07-13|1992-09-20|NONE|SHIP|ts sleep slyly. theodolite| +1480|114295|6807|3|29|37969.41|0.00|0.02|R|F|1992-08-06|1992-06-25|1992-08-16|DELIVER IN PERSON|REG AIR| pending packages wake tithes. slyly exp| +1480|148322|3351|4|4|5481.28|0.09|0.00|A|F|1992-06-20|1992-07-30|1992-07-14|NONE|MAIL|ully final courts x-ray careful| +1480|36513|6514|5|42|60879.42|0.04|0.05|R|F|1992-06-20|1992-07-05|1992-07-17|TAKE BACK RETURN|MAIL|he grouches wake slyly expre| +1480|72041|4549|6|24|24312.96|0.04|0.00|R|F|1992-08-21|1992-07-09|1992-08-30|DELIVER IN PERSON|MAIL|c packages cajole. pending ideas mo| +1481|16404|1407|1|2|2640.80|0.06|0.02|A|F|1992-05-22|1992-03-17|1992-05-23|COLLECT COD|TRUCK|s. regular orbits haggle s| +1481|87606|2623|2|26|41433.60|0.06|0.08|R|F|1992-05-15|1992-05-04|1992-05-28|TAKE BACK RETURN|REG AIR|slyly ironic foxes use along th| +1481|193944|6464|3|44|89669.36|0.04|0.08|R|F|1992-03-25|1992-03-18|1992-04-17|COLLECT COD|REG AIR| quick, stealthy ex| +1481|9270|9271|4|42|49529.34|0.06|0.04|R|F|1992-02-23|1992-04-29|1992-03-18|DELIVER IN PERSON|AIR|riously fluffily ironic accou| +1482|140527|3042|1|41|64268.32|0.07|0.05|A|F|1992-10-22|1992-09-23|1992-11-19|DELIVER IN PERSON|AIR|sly final foxes are eve| +1482|27886|7887|2|46|83438.48|0.05|0.06|A|F|1992-08-14|1992-11-03|1992-08-20|COLLECT COD|FOB|uests do sleep among the sp| +1482|78574|1082|3|16|24841.12|0.08|0.00|A|F|1992-10-06|1992-10-07|1992-10-25|COLLECT COD|RAIL| accounts haggle slyly furiously bold | +1482|177413|4965|4|17|25336.97|0.00|0.00|R|F|1992-10-14|1992-10-18|1992-10-22|COLLECT COD|TRUCK|ending deco| +1483|153371|5887|1|41|58399.17|0.02|0.06|N|O|1996-12-08|1996-12-25|1996-12-18|COLLECT COD|TRUCK| packages integrate ab| +1483|102567|2568|2|24|37669.44|0.08|0.02|N|O|1996-10-29|1997-01-01|1996-11-01|NONE|AIR|ously special platelets. furiously pe| +1483|36624|1631|3|4|6242.48|0.05|0.07|N|O|1996-11-03|1996-12-18|1996-11-27|COLLECT COD|SHIP|ular, silent accou| +1483|134676|2216|4|9|15396.03|0.02|0.00|N|O|1996-11-14|1996-12-17|1996-12-03|DELIVER IN PERSON|MAIL|ounts about the slyly regular deposits wa| +1483|96719|6720|5|22|37745.62|0.09|0.00|N|O|1997-01-23|1996-11-23|1997-02-03|DELIVER IN PERSON|AIR|shall haggle| +1484|26059|8562|1|24|23641.20|0.00|0.01|N|O|1997-03-23|1997-03-10|1997-04-08|TAKE BACK RETURN|REG AIR|f the furiously ironic deposits. blit| +1484|157028|9544|2|20|21700.40|0.02|0.03|N|O|1997-02-21|1997-02-26|1997-03-04|TAKE BACK RETURN|FOB|bold platelets. slyly pending packag| +1484|164444|9477|3|46|69388.24|0.10|0.04|N|O|1997-03-29|1997-03-04|1997-04-03|TAKE BACK RETURN|REG AIR|old instruction| +1484|5869|5870|4|3|5324.58|0.10|0.05|N|O|1997-03-07|1997-02-26|1997-03-26|DELIVER IN PERSON|AIR|e unusual packages. | +1484|32106|4610|5|6|6228.60|0.06|0.05|N|O|1997-03-07|1997-03-03|1997-03-10|TAKE BACK RETURN|SHIP|r pinto beans. carefully even deposi| +1485|74161|4162|1|1|1135.16|0.05|0.01|R|F|1993-05-26|1993-05-22|1993-06-23|NONE|TRUCK| slyly ironic packages are ironic e| +1485|8768|1269|2|14|23474.64|0.00|0.04|A|F|1993-03-30|1993-05-01|1993-04-19|DELIVER IN PERSON|MAIL|furiously accor| +1486|167742|2775|1|50|90487.00|0.09|0.02|N|O|1998-09-06|1998-09-29|1998-09-18|NONE|SHIP|ckages believe blithely| +1486|39626|2130|2|12|18787.44|0.09|0.04|N|O|1998-09-13|1998-09-05|1998-09-20|COLLECT COD|RAIL|fily even packages wake quickly. fluff| +1486|187713|232|3|41|73829.11|0.04|0.08|N|O|1998-11-06|1998-09-12|1998-12-03|COLLECT COD|REG AIR|deposits cajole carefully. | +1486|88262|8263|4|18|22504.68|0.03|0.00|N|O|1998-09-19|1998-10-06|1998-10-08|DELIVER IN PERSON|FOB|inal accounts eat carefully regular | +1487|73480|1002|1|21|30523.08|0.01|0.05|R|F|1993-11-07|1993-09-21|1993-11-21|DELIVER IN PERSON|MAIL|deas sleep slyly. furiously regular th| +1487|171652|6687|2|26|44814.90|0.01|0.05|R|F|1993-10-13|1993-09-18|1993-10-17|NONE|RAIL|slyly bold accounts. sly| +1487|144754|7269|3|28|50365.00|0.09|0.03|A|F|1993-08-19|1993-08-23|1993-09-06|COLLECT COD|REG AIR|der among the carefully bold| +1487|73092|3093|4|1|1065.09|0.00|0.05|A|F|1993-08-25|1993-09-27|1993-09-08|COLLECT COD|SHIP|ending courts| +1487|43405|5910|5|10|13484.00|0.05|0.04|A|F|1993-09-16|1993-09-27|1993-09-30|TAKE BACK RETURN|SHIP| are always special courts. re| +1487|98149|8150|6|31|35561.34|0.03|0.02|A|F|1993-09-28|1993-09-10|1993-10-11|NONE|MAIL|nic packages haggle. depo| +1512|7343|2344|1|23|28757.82|0.00|0.08|N|O|1996-11-16|1996-11-25|1996-12-08|NONE|REG AIR| beans use furiously requests. carefully| +1512|5123|2624|2|5|5140.60|0.07|0.01|N|O|1996-11-02|1997-01-04|1996-12-01|DELIVER IN PERSON|SHIP|ular accounts. fox| +1512|101688|6709|3|39|65897.52|0.01|0.04|N|O|1996-11-02|1996-12-21|1996-12-02|COLLECT COD|SHIP|ackages nag quickly. carefully regular fo| +1513|91585|9113|1|46|72522.68|0.02|0.04|N|O|1997-12-31|1998-02-24|1998-01-01|TAKE BACK RETURN|SHIP|quests play blithely final pinto beans| +1513|58433|939|2|14|19480.02|0.05|0.08|N|O|1998-04-07|1998-02-05|1998-04-13|DELIVER IN PERSON|TRUCK|en ideas haggle. even deposits nag fluffi| +1514|123162|3163|1|44|52147.04|0.06|0.01|N|O|1996-12-06|1997-01-04|1996-12-27|TAKE BACK RETURN|RAIL|carefully final deposits run furiously arou| +1515|100164|165|1|18|20954.88|0.07|0.04|A|F|1992-04-22|1992-03-22|1992-05-06|TAKE BACK RETURN|MAIL|ully unusual, regu| +1516|2982|5483|1|38|71629.24|0.01|0.01|N|O|1996-04-09|1996-04-23|1996-04-14|COLLECT COD|AIR|ackages are about the stealt| +1516|116515|6516|2|21|32161.71|0.09|0.05|N|O|1996-04-27|1996-05-21|1996-04-29|DELIVER IN PERSON|SHIP|s nod around the blithely regular packages| +1516|50806|807|3|36|63244.80|0.05|0.07|N|O|1996-05-30|1996-04-20|1996-06-27|DELIVER IN PERSON|MAIL|egular instructions nag furiously alongside| +1516|87400|2417|4|45|62433.00|0.06|0.05|N|O|1996-06-04|1996-04-29|1996-06-11|COLLECT COD|REG AIR|ages haggle f| +1516|125948|3485|5|40|78957.60|0.03|0.04|N|O|1996-04-01|1996-04-10|1996-04-26|COLLECT COD|FOB|ole idly. even, bold requests| +1517|154573|4574|1|43|69985.51|0.02|0.08|R|F|1993-09-10|1993-08-17|1993-10-08|DELIVER IN PERSON|MAIL|quests. slyly regular platelets integrate | +1517|106471|1492|2|31|45801.57|0.04|0.06|R|F|1993-07-10|1993-07-09|1993-08-03|DELIVER IN PERSON|AIR|ar dependencies wake against the spe| +1517|46551|6552|3|33|49419.15|0.00|0.03|R|F|1993-07-31|1993-08-20|1993-08-15|TAKE BACK RETURN|RAIL| unusual dependencie| +1517|168092|5641|4|47|54524.23|0.07|0.08|A|F|1993-08-07|1993-07-13|1993-09-02|TAKE BACK RETURN|RAIL|regular dependencies nag permanently| +1517|117602|5136|5|44|71262.40|0.06|0.03|A|F|1993-07-13|1993-09-02|1993-07-15|DELIVER IN PERSON|MAIL|uests. ironic req| +1517|127807|2832|6|22|40365.60|0.08|0.00|R|F|1993-06-18|1993-08-13|1993-07-09|COLLECT COD|MAIL| foxes. quickly silent theodolites| +1518|93166|3167|1|47|54480.52|0.01|0.08|A|F|1993-07-18|1993-06-17|1993-08-13|DELIVER IN PERSON|RAIL|ong the bravely bold request| +1519|158299|3330|1|1|1357.29|0.04|0.02|N|O|1997-10-13|1997-10-03|1997-11-12|DELIVER IN PERSON|MAIL|. express requests above the final reques| +1519|117791|303|2|20|36175.80|0.02|0.03|N|O|1997-10-02|1997-11-11|1997-10-20|TAKE BACK RETURN|SHIP|accounts. bli| +1519|107664|175|3|3|5014.98|0.03|0.02|N|O|1997-09-29|1997-11-18|1997-10-19|NONE|TRUCK|ep blithel| +1519|107982|3003|4|27|53729.46|0.07|0.06|N|O|1997-11-27|1997-11-21|1997-12-06|DELIVER IN PERSON|FOB|sts nag doggedly ironi| +1519|37816|5326|5|35|61383.35|0.03|0.04|N|O|1997-10-24|1997-11-23|1997-11-23|NONE|TRUCK|e carefully. deposits | +1544|24570|2077|1|7|10461.99|0.04|0.00|N|O|1997-06-01|1997-04-26|1997-06-20|NONE|MAIL|luffily regular| +1544|134366|1906|2|36|50412.96|0.00|0.00|N|O|1997-06-01|1997-04-24|1997-06-17|COLLECT COD|TRUCK|ly about the blithely ironic| +1544|86056|1073|3|27|28135.35|0.08|0.03|N|O|1997-03-23|1997-05-11|1997-04-21|DELIVER IN PERSON|TRUCK|final requests sleep u| +1544|130735|736|4|49|86520.77|0.05|0.04|N|O|1997-05-19|1997-05-25|1997-06-11|TAKE BACK RETURN|AIR|pinto beans| +1544|55797|808|5|30|52583.70|0.00|0.06|N|O|1997-04-23|1997-04-28|1997-04-28|DELIVER IN PERSON|MAIL| after the unusual, e| +1545|60493|8012|1|3|4360.47|0.02|0.00|R|F|1994-05-11|1994-06-19|1994-06-01|NONE|TRUCK|usly final deposits. | +1545|100152|7683|2|4|4608.60|0.04|0.05|A|F|1994-05-08|1994-06-11|1994-05-16|DELIVER IN PERSON|MAIL|he final packages. blithely unusual | +1545|44315|1828|3|9|11333.79|0.01|0.04|R|F|1994-07-21|1994-07-21|1994-07-25|TAKE BACK RETURN|FOB|arefully. unusual p| +1545|190391|5430|4|12|17776.68|0.03|0.01|R|F|1994-06-12|1994-06-26|1994-07-11|DELIVER IN PERSON|AIR|are furiously. blithely regular requests ag| +1545|87780|2797|5|29|51265.62|0.09|0.02|R|F|1994-08-15|1994-06-06|1994-09-01|COLLECT COD|TRUCK| carefully ironic dol| +1546|158576|3607|1|7|11441.99|0.04|0.02|A|F|1992-06-15|1992-07-11|1992-07-10|NONE|AIR| requests. ironic theodolit| +1546|174213|9248|2|21|27031.41|0.08|0.03|A|F|1992-05-19|1992-08-06|1992-05-21|DELIVER IN PERSON|RAIL|ckages through the fluffily| +1546|193017|5537|3|5|5550.05|0.06|0.00|A|F|1992-06-01|1992-08-04|1992-06-06|DELIVER IN PERSON|TRUCK|carefully final theodolites around th| +1546|32986|2987|4|39|74840.22|0.10|0.02|R|F|1992-06-21|1992-08-02|1992-07-12|COLLECT COD|TRUCK|rate blithely e| +1546|180476|2995|5|27|42024.69|0.00|0.01|R|F|1992-06-19|1992-06-13|1992-07-03|COLLECT COD|TRUCK|ular, final theodolite| +1547|162291|9840|1|5|6766.45|0.00|0.08|N|O|1996-12-07|1996-12-05|1996-12-25|TAKE BACK RETURN|REG AIR| furiously regular packages. furiously| +1547|23730|3731|2|2|3307.46|0.10|0.08|N|O|1996-12-20|1996-10-24|1997-01-01|DELIVER IN PERSON|AIR|even waters s| +1547|15591|5592|3|3|4519.77|0.08|0.06|N|O|1996-09-21|1996-11-10|1996-10-18|DELIVER IN PERSON|AIR|ep blithely regular accounts. even, ironic | +1547|37323|4833|4|8|10082.56|0.09|0.03|N|O|1996-12-12|1996-10-27|1997-01-05|DELIVER IN PERSON|REG AIR|olphins x-ray carefully qui| +1547|76132|8640|5|16|17730.08|0.03|0.01|N|O|1996-12-05|1996-11-09|1996-12-26|TAKE BACK RETURN|MAIL|und the quickly regular | +1548|83891|3892|1|34|63746.26|0.02|0.01|A|F|1992-09-29|1992-10-07|1992-10-08|COLLECT COD|MAIL| even dugouts wake. carefully unusual fox| +1548|144615|7130|2|10|16596.10|0.06|0.04|A|F|1992-09-08|1992-10-08|1992-09-09|NONE|SHIP|structions sleep caref| +1549|35358|7862|1|16|20693.60|0.02|0.04|N|O|1998-11-04|1998-08-19|1998-11-21|COLLECT COD|REG AIR| sleep blithely fluffily unusual package| +1550|180831|8386|1|10|19118.30|0.00|0.08|N|O|1998-02-09|1998-04-13|1998-02-25|TAKE BACK RETURN|MAIL|riously silent requests. | +1551|31219|6226|1|15|17253.15|0.03|0.04|N|O|1997-09-20|1997-08-20|1997-09-30|NONE|AIR|en packages. carefully| +1551|83552|1077|2|40|61422.00|0.05|0.07|N|O|1997-06-14|1997-07-11|1997-06-23|DELIVER IN PERSON|SHIP| deposits wake carefully after t| +1551|55257|5258|3|36|43641.00|0.03|0.08|N|O|1997-07-15|1997-08-14|1997-08-04|TAKE BACK RETURN|TRUCK|refully even grou| +1551|90510|3020|4|4|6002.04|0.02|0.02|N|O|1997-06-30|1997-08-30|1997-07-02|DELIVER IN PERSON|REG AIR|e carefully ironic request| +1551|196212|1251|5|13|17006.73|0.06|0.00|N|O|1997-09-22|1997-08-14|1997-10-21|DELIVER IN PERSON|RAIL|ate. slyly regular platelets cajole th| +1576|52435|7446|1|14|19424.02|0.04|0.04|R|F|1992-12-06|1993-01-09|1992-12-19|DELIVER IN PERSON|MAIL|ess grouche| +1576|73917|3918|2|36|68072.76|0.08|0.00|R|F|1993-01-03|1992-12-26|1993-01-07|DELIVER IN PERSON|REG AIR|ar requests after the furiously| +1576|109562|9563|3|32|50289.92|0.03|0.06|R|F|1992-11-05|1992-11-22|1992-11-10|DELIVER IN PERSON|MAIL|deas. carefully pending dependencies agai| +1577|84375|1900|1|2|2718.74|0.02|0.08|A|F|1994-03-13|1994-01-22|1994-03-29|NONE|FOB|gage. expres| +1577|74970|9985|2|37|71963.89|0.04|0.06|R|F|1994-01-27|1994-02-07|1994-02-07|NONE|TRUCK|quickly ab| +1578|120920|5945|1|28|54345.76|0.06|0.04|N|O|1996-08-05|1996-07-21|1996-08-21|TAKE BACK RETURN|MAIL|eposits are sly| +1578|87550|59|2|41|63039.55|0.05|0.07|N|O|1996-08-28|1996-07-19|1996-09-01|NONE|AIR|ly regular grouches haggle s| +1578|45911|920|3|19|35281.29|0.01|0.02|N|O|1996-09-01|1996-06-10|1996-09-27|NONE|SHIP|ial, special dependencies. ne| +1578|16071|6072|4|25|24676.75|0.03|0.04|N|O|1996-07-27|1996-06-03|1996-08-07|COLLECT COD|RAIL|uses believe outside the quickly| +1578|99803|9804|5|40|72112.00|0.09|0.00|N|O|1996-06-24|1996-07-19|1996-07-20|NONE|FOB|l patterns wake. quickly spe| +1578|175191|5192|6|13|16460.47|0.03|0.03|N|O|1996-05-31|1996-06-06|1996-06-14|DELIVER IN PERSON|TRUCK|olites sleep carefully carefully| +1579|113618|8641|1|34|55474.74|0.05|0.07|A|F|1992-05-22|1992-07-08|1992-06-13|COLLECT COD|RAIL|lyly unusual packages acco| +1579|162982|531|2|32|65439.36|0.08|0.06|A|F|1992-09-10|1992-08-04|1992-09-23|DELIVER IN PERSON|TRUCK|en sentiments haggle carefully. re| +1579|23052|3053|3|10|9750.50|0.03|0.06|A|F|1992-08-10|1992-07-11|1992-09-09|TAKE BACK RETURN|MAIL|ajole furiously even, pending| +1579|30026|2530|4|35|33460.70|0.10|0.04|R|F|1992-08-18|1992-06-14|1992-08-30|NONE|REG AIR|lose packages are fl| +1579|35573|5574|5|13|19611.41|0.10|0.00|A|F|1992-08-21|1992-06-15|1992-08-26|TAKE BACK RETURN|FOB|uiet pinto beans. furiously regular accou| +1579|72683|7698|6|34|56293.12|0.00|0.07|A|F|1992-05-20|1992-07-14|1992-05-23|DELIVER IN PERSON|SHIP| accounts wake carefully. sl| +1580|61908|6921|1|23|43007.70|0.01|0.04|N|O|1998-07-27|1998-07-12|1998-08-22|COLLECT COD|FOB|p slyly against th| +1580|72188|7203|2|39|45247.02|0.05|0.01|N|O|1998-06-18|1998-07-21|1998-06-27|COLLECT COD|RAIL|eodolites. r| +1580|57694|2705|3|41|67719.29|0.00|0.00|N|O|1998-07-30|1998-07-23|1998-08-13|COLLECT COD|REG AIR|cajole during the carefully even dependen| +1580|55217|5218|4|5|5861.05|0.03|0.04|N|O|1998-06-19|1998-07-29|1998-07-18|COLLECT COD|RAIL|e excuses haggle furi| +1581|11933|6936|1|10|18449.30|0.00|0.05|R|F|1994-08-04|1994-05-15|1994-08-20|DELIVER IN PERSON|SHIP|ias! packages was at the quickl| +1582|72655|177|1|20|32553.00|0.10|0.07|N|O|1998-08-07|1998-10-09|1998-08-11|NONE|SHIP|nal platelets. ironically re| +1582|112324|2325|2|48|64143.36|0.09|0.06|N|O|1998-08-15|1998-08-29|1998-08-29|NONE|RAIL|ronic instr| +1582|26313|6314|3|24|29743.44|0.02|0.00|N|O|1998-10-11|1998-10-11|1998-10-14|NONE|MAIL|regular deposits integrate furiously accord| +1582|37162|2169|4|16|17586.56|0.03|0.03|N|O|1998-11-22|1998-09-21|1998-12-16|NONE|REG AIR|luffily regular packages are slyly bold p| +1582|165558|5559|5|25|40588.75|0.08|0.03|N|O|1998-09-30|1998-10-02|1998-10-05|COLLECT COD|TRUCK|ajole blithely | +1582|129224|1737|6|36|45115.92|0.07|0.07|N|O|1998-09-04|1998-08-28|1998-10-02|COLLECT COD|RAIL|ly across th| +1582|59883|7399|7|17|31328.96|0.00|0.07|N|O|1998-08-14|1998-08-31|1998-08-30|NONE|MAIL|ly. ironic, regular instructions breach fl| +1583|39311|4318|1|7|8752.17|0.05|0.02|N|O|1997-09-06|1997-09-01|1997-09-12|COLLECT COD|FOB|structions before the furiously final| +1583|85484|7993|2|7|10286.36|0.01|0.08|N|O|1997-07-22|1997-07-19|1997-08-08|NONE|FOB|ly about the furiously regular ideas.| +1583|125553|3090|3|36|56827.80|0.06|0.07|N|O|1997-09-04|1997-07-21|1997-09-11|TAKE BACK RETURN|SHIP|ven foxes ha| +1583|154090|4091|4|43|49195.87|0.00|0.02|N|O|1997-09-13|1997-08-22|1997-09-23|COLLECT COD|SHIP|rthogs. furiously final packages| +1608|62743|7756|1|48|81875.52|0.05|0.06|R|F|1992-10-22|1992-11-08|1992-11-02|NONE|MAIL|efully regular acc| +1608|111322|6345|2|25|33333.00|0.05|0.01|A|F|1993-01-08|1992-12-25|1993-01-15|TAKE BACK RETURN|FOB|y ironic platelets boost carefully slyl| +1608|177895|5447|3|30|59186.70|0.09|0.01|A|F|1992-09-27|1992-11-22|1992-10-04|TAKE BACK RETURN|TRUCK|e. unusual| +1608|70061|5076|4|8|8248.48|0.08|0.04|A|F|1992-11-17|1992-11-17|1992-11-22|COLLECT COD|AIR|nst the packages. regular foxes de| +1608|113586|3587|5|28|44788.24|0.03|0.05|A|F|1992-11-26|1992-11-25|1992-12-06|DELIVER IN PERSON|REG AIR|egular packages.| +1608|24552|7055|6|42|62015.10|0.00|0.03|R|F|1993-01-08|1992-12-16|1993-02-07|TAKE BACK RETURN|MAIL|y even deposits. slyly ironic| +1608|44149|9158|7|48|52470.72|0.03|0.05|A|F|1992-10-23|1992-12-13|1992-10-26|COLLECT COD|FOB|ts. slyly regular | +1609|1796|6797|1|4|6791.16|0.09|0.08|A|F|1992-07-08|1992-07-14|1992-07-16|COLLECT COD|REG AIR|nly unusual requests| +1610|174994|4995|1|33|68276.67|0.04|0.05|N|O|1995-08-15|1995-09-26|1995-09-03|DELIVER IN PERSON|REG AIR|nto beans hagg| +1610|108423|8424|2|18|25765.56|0.00|0.08|N|O|1995-10-08|1995-10-01|1995-10-31|COLLECT COD|AIR| bold theodolites slee| +1611|50448|7964|1|44|61531.36|0.04|0.01|A|F|1994-07-04|1994-06-10|1994-07-29|NONE|TRUCK| of the eve| +1611|71525|1526|2|13|19454.76|0.00|0.07|A|F|1994-04-17|1994-04-28|1994-05-05|NONE|RAIL|yly furious accounts boost re| +1611|116335|3869|3|8|10810.64|0.09|0.05|R|F|1994-06-02|1994-04-17|1994-06-28|TAKE BACK RETURN|AIR|usly ironic id| +1611|27071|9574|4|44|43915.08|0.08|0.01|R|F|1994-04-10|1994-04-25|1994-04-26|COLLECT COD|SHIP|nic deposits boost final deposits| +1611|173568|3569|5|43|70587.08|0.10|0.03|A|F|1994-05-13|1994-05-20|1994-06-12|COLLECT COD|REG AIR|across the blith| +1611|147387|9902|6|39|55940.82|0.03|0.01|A|F|1994-06-08|1994-05-09|1994-06-20|NONE|SHIP| cajole fluffily unusual dependencie| +1611|118010|5544|7|10|10280.10|0.03|0.00|A|F|1994-06-19|1994-05-10|1994-06-25|NONE|AIR|dolites. final, bold accounts abou| +1612|183721|3722|1|9|16242.48|0.02|0.06|R|F|1993-07-17|1993-07-11|1993-07-23|TAKE BACK RETURN|MAIL|usual deposits. ironic braids | +1612|191225|6264|2|22|28956.84|0.09|0.06|R|F|1993-09-22|1993-07-21|1993-10-03|NONE|AIR|ly even mult| +1612|115498|521|3|9|13621.41|0.10|0.02|A|F|1993-09-24|1993-08-22|1993-10-11|DELIVER IN PERSON|RAIL| quickly express | +1613|193979|3980|1|1|2072.97|0.08|0.05|N|O|1995-12-03|1995-12-31|1995-12-25|COLLECT COD|AIR|ding ideas insi| +1613|3571|3572|2|48|70779.36|0.09|0.01|N|O|1996-01-05|1995-12-07|1996-01-29|NONE|TRUCK|oss the the| +1614|49141|1646|1|39|42515.46|0.02|0.05|R|F|1995-04-04|1995-01-29|1995-04-12|COLLECT COD|AIR|. even, unusual ide| +1614|112780|2781|2|45|80675.10|0.04|0.05|A|F|1995-02-06|1995-02-28|1995-02-11|DELIVER IN PERSON|AIR|unwind blit| +1614|93090|5600|3|11|11913.99|0.02|0.02|A|F|1994-12-26|1995-01-30|1995-01-21|COLLECT COD|AIR|al accounts b| +1615|97495|7496|1|5|7462.45|0.08|0.06|R|F|1993-01-05|1992-11-23|1993-01-26|DELIVER IN PERSON|FOB| blithely carefully regular packages. ev| +1615|186703|9222|2|3|5369.10|0.05|0.08|A|F|1993-01-30|1992-12-23|1993-02-26|NONE|FOB| unusual asymptotes sleep special deposi| +1615|104660|9681|3|11|18311.26|0.01|0.00|R|F|1992-12-11|1992-12-06|1992-12-26|TAKE BACK RETURN|AIR|ithely even Tiresias| +1640|95903|8413|1|18|34180.20|0.03|0.04|R|F|1994-12-30|1994-12-18|1995-01-26|NONE|TRUCK| asymptotes affix | +1640|41200|8713|2|10|11412.00|0.08|0.06|R|F|1995-01-07|1994-11-10|1995-01-24|TAKE BACK RETURN|MAIL|ages wake blithely even depen| +1640|44662|9671|3|49|78726.34|0.08|0.06|A|F|1994-11-14|1994-11-28|1994-12-07|COLLECT COD|SHIP|es wake after the slyl| +1640|28934|3939|4|40|74517.20|0.07|0.05|R|F|1995-01-13|1994-12-14|1995-01-27|COLLECT COD|FOB|y. regular foxes cajole. deposits de| +1640|87882|5407|5|15|28048.20|0.00|0.00|A|F|1994-09-25|1994-11-30|1994-10-13|COLLECT COD|RAIL|sly bold instructions| +1641|19144|4147|1|7|7441.98|0.07|0.00|N|O|1997-04-06|1997-03-05|1997-04-08|TAKE BACK RETURN|MAIL| final depend| +1641|141638|6667|2|27|45350.01|0.05|0.08|N|O|1997-03-30|1997-01-21|1997-04-11|COLLECT COD|FOB|urts integ| +1641|109524|4545|3|36|55206.72|0.07|0.01|N|O|1997-02-25|1997-01-24|1997-03-09|COLLECT COD|FOB|rets nod. enticingly final a| +1641|157325|4871|4|37|51145.84|0.02|0.06|N|O|1997-04-12|1997-01-23|1997-05-06|DELIVER IN PERSON|FOB| packages was thin, special packages| +1641|148757|3786|5|45|81258.75|0.01|0.04|N|O|1997-03-19|1997-01-21|1997-04-14|TAKE BACK RETURN|REG AIR|e furiously regul| +1641|145779|808|6|42|76640.34|0.07|0.06|N|O|1997-03-13|1997-02-20|1997-04-07|DELIVER IN PERSON|TRUCK|y excuses. daringly quick accounts sleep. s| +1642|154485|2031|1|11|16934.28|0.03|0.00|R|F|1994-06-02|1994-06-13|1994-07-01|DELIVER IN PERSON|RAIL|e daringly furiously furious f| +1642|16811|4315|2|12|20733.72|0.05|0.05|R|F|1994-07-17|1994-05-06|1994-07-19|TAKE BACK RETURN|REG AIR|ironic theodol| +1642|128108|8109|3|2|2272.20|0.02|0.04|R|F|1994-06-19|1994-07-05|1994-06-28|TAKE BACK RETURN|FOB|al excuses cajole across the blithely | +1642|108913|1424|4|49|94173.59|0.07|0.07|R|F|1994-07-15|1994-07-01|1994-07-28|COLLECT COD|FOB|c asymptotes among the ironic, regula| +1642|93602|6112|5|18|28720.80|0.03|0.01|A|F|1994-06-08|1994-05-11|1994-07-02|TAKE BACK RETURN|REG AIR|ar, bold courts boost furiously agai| +1642|157713|7714|6|50|88535.50|0.06|0.04|A|F|1994-05-25|1994-06-24|1994-06-10|NONE|AIR|hely regular instructions wake a| +1642|67061|9568|7|25|25701.50|0.00|0.00|R|F|1994-05-08|1994-05-20|1994-05-24|NONE|TRUCK|lar ideas. furiously regular courts along| +1643|86778|6779|1|10|17647.70|0.02|0.03|N|O|1995-09-06|1995-07-02|1995-09-29|TAKE BACK RETURN|SHIP| ironic requests wake furiousl| +1643|68753|1260|2|30|51652.50|0.02|0.07|N|O|1995-09-25|1995-07-21|1995-10-22|DELIVER IN PERSON|SHIP|ss foxes grow| +1643|121419|6444|3|7|10082.87|0.03|0.07|N|O|1995-09-18|1995-07-18|1995-10-12|DELIVER IN PERSON|SHIP|lithely bold packages wake fluffily. | +1643|82338|9863|4|10|13203.30|0.06|0.01|N|O|1995-08-05|1995-08-03|1995-08-20|NONE|REG AIR|gouts. carefully re| +1644|151182|6213|1|4|4932.72|0.05|0.03|A|F|1994-02-28|1994-05-25|1994-03-21|NONE|AIR| cajole over | +1644|105023|2554|2|24|24672.48|0.04|0.02|A|F|1994-05-16|1994-05-23|1994-06-13|DELIVER IN PERSON|MAIL|haggle carefully. asympt| +1644|114445|6957|3|44|64215.36|0.01|0.01|R|F|1994-05-18|1994-04-25|1994-06-07|NONE|RAIL|ly even dependencies haggle blithely slyl| +1644|73825|1347|4|17|30579.94|0.08|0.00|A|F|1994-02-28|1994-05-13|1994-03-02|DELIVER IN PERSON|TRUCK|uctions haggle carefully i| +1644|175830|8348|5|10|19058.30|0.07|0.02|A|F|1994-04-04|1994-05-25|1994-04-15|COLLECT COD|AIR|nal deposits| +1645|128672|8673|1|18|30612.06|0.09|0.07|N|O|1997-07-26|1997-08-25|1997-08-03|DELIVER IN PERSON|SHIP|cajole slyly fi| +1646|40696|697|1|16|26187.04|0.09|0.08|A|F|1994-10-30|1994-10-03|1994-11-22|COLLECT COD|FOB|ckly unusual a| +1647|163178|727|1|49|60817.33|0.03|0.02|R|F|1992-06-04|1992-06-01|1992-06-24|NONE|REG AIR|he slyly unusual dep| +1647|131140|8680|2|30|35134.20|0.02|0.01|R|F|1992-06-05|1992-05-18|1992-06-20|COLLECT COD|FOB|ar warthogs alongsid| +1647|53700|3701|3|23|38035.10|0.00|0.02|R|F|1992-07-29|1992-07-04|1992-08-25|COLLECT COD|FOB|ss asymptotes wake blithely amo| +1647|120064|65|4|2|2168.12|0.00|0.04|R|F|1992-07-05|1992-06-05|1992-07-15|NONE|AIR|quickly regular ideas. instructions sle| +1672|116384|8896|1|46|64417.48|0.03|0.04|A|F|1993-12-19|1994-01-07|1994-01-15|DELIVER IN PERSON|MAIL|eodolites along the de| +1672|54771|4772|2|44|75933.88|0.08|0.08|A|F|1993-11-08|1994-01-09|1993-12-01|DELIVER IN PERSON|MAIL|e courts are carefully slyly ironic depo| +1673|50611|8127|1|7|10931.27|0.09|0.01|R|F|1992-06-03|1992-07-01|1992-06-04|TAKE BACK RETURN|TRUCK|s-- furiously ironic dependenci| +1674|87941|2958|1|9|17360.46|0.10|0.04|R|F|1993-06-02|1993-06-06|1993-06-26|DELIVER IN PERSON|TRUCK|ainst the carefully unusual de| +1675|91280|6299|1|25|31782.00|0.01|0.07|N|O|1997-11-19|1997-12-13|1997-11-25|DELIVER IN PERSON|RAIL|nal pinto beans alongsid| +1675|130503|8043|2|15|23002.50|0.03|0.07|N|O|1997-11-04|1997-11-16|1997-12-04|TAKE BACK RETURN|REG AIR|ithes sleep idly. bl| +1676|135491|518|1|25|38162.25|0.05|0.00|N|O|1996-02-05|1996-03-24|1996-03-04|DELIVER IN PERSON|REG AIR|ages wake slyly quickly regular packag| +1676|196120|1159|2|43|52293.16|0.03|0.01|N|O|1996-02-06|1996-03-18|1996-03-03|TAKE BACK RETURN|RAIL|ge furiously. | +1676|176601|4153|3|3|5032.80|0.01|0.06|N|O|1996-01-26|1996-03-31|1996-02-05|COLLECT COD|REG AIR|lithe accoun| +1676|128558|8559|4|11|17452.05|0.00|0.03|N|O|1996-01-28|1996-03-27|1996-02-22|DELIVER IN PERSON|FOB|the regular, express deposits. final | +1677|45396|405|1|28|37558.92|0.02|0.03|N|O|1998-04-21|1998-03-31|1998-05-09|DELIVER IN PERSON|RAIL| regular excuses haggle alongsi| +1677|158574|3605|2|30|48977.10|0.09|0.03|N|O|1998-03-12|1998-05-13|1998-04-02|COLLECT COD|FOB| beans at the requests cajole accord| +1677|151017|1018|3|45|48060.45|0.05|0.05|N|O|1998-03-04|1998-04-20|1998-03-07|TAKE BACK RETURN|RAIL|ic, bold dolphins. enticing theodolit| +1678|66183|8690|1|43|49414.74|0.03|0.01|R|F|1993-09-03|1993-08-20|1993-10-02|NONE|MAIL| evenly even, iro| +1678|131458|1459|2|36|53620.20|0.03|0.02|R|F|1993-08-07|1993-08-21|1993-08-28|DELIVER IN PERSON|TRUCK|hless packages ought to haggle slyly. furi| +1678|4482|4483|3|19|26343.12|0.10|0.04|A|F|1993-07-01|1993-08-16|1993-07-10|NONE|AIR|ly final packages are quickly express a| +1678|116904|9416|4|46|88361.40|0.06|0.05|A|F|1993-08-22|1993-07-06|1993-09-13|DELIVER IN PERSON|RAIL|ccording to the dolph| +1678|194518|4519|5|50|80625.50|0.02|0.00|R|F|1993-09-07|1993-07-09|1993-09-09|TAKE BACK RETURN|REG AIR|boost carefully pendin| +1679|134231|1771|1|33|41752.59|0.08|0.03|N|O|1995-12-30|1995-12-27|1996-01-24|NONE|FOB|refully ironic p| +1679|19070|1572|2|47|46486.29|0.03|0.03|N|O|1996-01-02|1995-12-16|1996-01-04|NONE|FOB|ironic, ironic pac| +1679|95022|5023|3|31|31527.62|0.06|0.08|N|O|1995-11-22|1996-01-14|1995-11-27|COLLECT COD|RAIL|ronic pinto be| +1679|18170|3173|4|7|7617.19|0.00|0.02|N|O|1996-01-27|1995-11-29|1996-02-23|TAKE BACK RETURN|AIR|ake furiously express requests. sil| +1679|168063|580|5|32|36193.92|0.09|0.07|N|O|1996-02-02|1995-12-29|1996-03-01|NONE|FOB|dencies cajole b| +1679|29413|1916|6|1|1342.41|0.01|0.02|N|O|1996-01-10|1995-12-19|1996-01-29|TAKE BACK RETURN|REG AIR|e the furiously regular | +1704|156619|9135|1|33|55295.13|0.09|0.00|A|F|1994-06-05|1994-06-24|1994-06-14|NONE|TRUCK|r deposits wake. furi| +1704|90427|2937|2|43|60949.06|0.09|0.07|A|F|1994-05-22|1994-06-06|1994-06-04|COLLECT COD|SHIP|counts are blithely. quickly ironic pains | +1704|193476|5996|3|15|23542.05|0.06|0.00|R|F|1994-05-24|1994-06-07|1994-06-12|DELIVER IN PERSON|REG AIR|he carefully unusual deposits. qu| +1704|143542|8571|4|28|44395.12|0.09|0.07|A|F|1994-06-30|1994-05-06|1994-07-01|TAKE BACK RETURN|FOB| during the even requests integrate final | +1705|16678|6679|1|15|23920.05|0.00|0.05|A|F|1994-08-30|1994-06-18|1994-09-04|NONE|MAIL| daring theodoli| +1705|95810|829|2|23|41533.63|0.02|0.03|A|F|1994-07-08|1994-07-19|1994-07-10|NONE|RAIL|blithely final ideas wake quickly a| +1705|74984|7492|3|50|97949.00|0.08|0.07|R|F|1994-08-28|1994-06-20|1994-09-26|COLLECT COD|FOB|ons. final packages dazzle. final p| +1705|49884|9885|4|34|62351.92|0.06|0.00|A|F|1994-08-27|1994-08-13|1994-09-18|NONE|TRUCK|ding accounts pr| +1706|36368|6369|1|12|15652.32|0.04|0.02|A|F|1993-04-27|1993-05-09|1993-05-20|DELIVER IN PERSON|MAIL|hely silent requests use| +1706|31729|6736|2|4|6642.88|0.02|0.05|A|F|1993-04-23|1993-05-06|1993-05-03|NONE|FOB|kages among| +1706|62953|472|3|20|38319.00|0.05|0.07|A|F|1993-05-08|1993-04-02|1993-06-01|TAKE BACK RETURN|FOB|egular foxes. blithely | +1706|41069|6078|4|25|25251.50|0.07|0.05|A|F|1993-05-24|1993-05-07|1993-06-13|COLLECT COD|AIR|le blithely regular theodolit| +1707|177996|514|1|41|85033.59|0.10|0.05|A|F|1993-09-16|1993-09-24|1993-09-26|NONE|FOB|luffy depos| +1708|171752|1753|1|26|47417.50|0.02|0.08|A|F|1994-06-02|1994-04-30|1994-06-22|TAKE BACK RETURN|SHIP|uffily idle gifts. sly package| +1709|97973|483|1|1|1970.97|0.04|0.06|N|O|1997-03-30|1997-02-12|1997-04-04|NONE|RAIL|he furiously unusual asympto| +1710|114579|2113|1|42|66929.94|0.02|0.06|N|O|1996-09-30|1996-09-23|1996-10-28|NONE|SHIP|sly unusual pint| +1710|127496|9|2|9|13711.41|0.02|0.08|N|O|1996-09-21|1996-10-07|1996-10-15|COLLECT COD|SHIP|ckages caj| +1710|13151|5653|3|10|10641.50|0.01|0.01|N|O|1996-09-14|1996-08-29|1996-10-13|DELIVER IN PERSON|RAIL| the special, even packages are furiou| +1710|13161|8164|4|30|32224.80|0.00|0.05|N|O|1996-07-18|1996-09-17|1996-07-29|COLLECT COD|TRUCK|could boost quickly among the fur| +1710|181927|1928|5|25|50223.00|0.06|0.06|N|O|1996-09-10|1996-09-09|1996-10-07|NONE|FOB|furiously about the blithely quick acc| +1710|36483|1490|6|33|46842.84|0.06|0.00|N|O|1996-07-24|1996-08-19|1996-08-04|NONE|AIR|beans: carefully regular epita| +1710|158530|6076|7|8|12708.24|0.00|0.06|N|O|1996-10-28|1996-09-07|1996-11-22|COLLECT COD|AIR|l foxes haggle quickly. carefully even | +1711|198244|5802|1|43|57716.32|0.08|0.06|A|F|1994-03-21|1994-04-02|1994-04-14|TAKE BACK RETURN|AIR|ajole boldly even, final tithes. careful| +1711|84398|1923|2|47|64972.33|0.01|0.07|A|F|1994-05-07|1994-04-09|1994-05-30|TAKE BACK RETURN|SHIP|ependencies boost carefully. excuses haggle| +1711|76501|1516|3|42|62055.00|0.07|0.00|A|F|1994-03-27|1994-03-22|1994-04-10|DELIVER IN PERSON|TRUCK|hely ruthless excuses; b| +1711|137196|9710|4|33|40695.27|0.10|0.03|R|F|1994-01-29|1994-03-09|1994-02-02|COLLECT COD|REG AIR|ons boost slyly. bold accou| +1711|40177|2682|5|7|7820.19|0.10|0.03|R|F|1994-01-24|1994-02-25|1994-02-14|DELIVER IN PERSON|FOB|usly ironic instructions sleep care| +1711|52014|2015|6|45|43470.45|0.02|0.05|A|F|1994-01-23|1994-02-17|1994-01-27|TAKE BACK RETURN|REG AIR|ackages. even ide| +1736|144782|7297|1|26|47496.28|0.03|0.06|A|F|1994-11-04|1994-10-05|1994-11-29|COLLECT COD|SHIP|ounts. special, pending ideas wake blithe| +1736|135546|8060|2|47|74332.38|0.05|0.07|R|F|1994-08-05|1994-10-16|1994-08-31|NONE|MAIL| bold ideas sleep fluffily against the d| +1737|130424|425|1|12|17453.04|0.01|0.03|N|O|1995-07-13|1995-06-28|1995-07-26|COLLECT COD|SHIP| blithely ironic p| +1737|28834|8835|2|8|14102.64|0.04|0.03|N|O|1995-07-14|1995-07-12|1995-07-19|COLLECT COD|REG AIR|dolites haggle! | +1737|1475|8976|3|34|46799.98|0.04|0.07|N|O|1995-09-10|1995-06-28|1995-10-02|TAKE BACK RETURN|REG AIR| packages use fluffily among th| +1737|185531|8050|4|33|53345.49|0.03|0.07|A|F|1995-05-27|1995-07-14|1995-06-13|NONE|MAIL| requests. blith| +1737|14946|2450|5|29|53967.26|0.07|0.08|R|F|1995-05-29|1995-08-17|1995-06-09|TAKE BACK RETURN|MAIL| carefully unusual fo| +1737|189477|9478|6|47|73624.09|0.02|0.08|N|O|1995-08-29|1995-06-28|1995-08-31|DELIVER IN PERSON|TRUCK|etect slyl| +1738|109556|9557|1|6|9393.30|0.10|0.02|R|F|1994-10-07|1994-09-11|1994-10-21|TAKE BACK RETURN|FOB|slyly final packages cajol| +1738|96330|8840|2|17|22547.61|0.01|0.07|A|F|1994-10-08|1994-08-26|1994-11-03|TAKE BACK RETURN|AIR|ly even accounts los| +1738|8841|3842|3|46|80492.64|0.05|0.01|R|F|1994-11-02|1994-08-26|1994-11-10|NONE|REG AIR|y busy instructions: theodolites haggle bl| +1738|186560|6561|4|16|26344.96|0.03|0.07|R|F|1994-10-13|1994-09-28|1994-11-03|NONE|SHIP|gainst the| +1739|109645|9646|1|40|66185.60|0.09|0.05|N|O|1997-09-12|1997-08-31|1997-09-17|TAKE BACK RETURN|SHIP|into the iro| +1740|116500|1523|1|35|53077.50|0.07|0.00|N|O|1997-08-26|1997-07-30|1997-09-19|TAKE BACK RETURN|FOB|gular packages are after the boldly bold d| +1740|6528|6529|2|39|55946.28|0.00|0.00|N|O|1997-06-02|1997-08-16|1997-06-16|COLLECT COD|FOB|des cajole quickly. furiously final f| +1741|140501|502|1|19|29288.50|0.00|0.00|N|O|1996-11-06|1996-09-24|1996-11-14|TAKE BACK RETURN|REG AIR| instructions are quickly| +1741|185235|7754|2|33|43567.59|0.04|0.05|N|O|1996-08-11|1996-10-11|1996-08-15|TAKE BACK RETURN|FOB|according to the slyly | +1741|32814|324|3|13|22708.53|0.03|0.02|N|O|1996-11-04|1996-09-02|1996-11-22|DELIVER IN PERSON|MAIL|ic packages. s| +1741|95995|3523|4|50|99549.50|0.09|0.02|N|O|1996-08-10|1996-09-12|1996-08-12|TAKE BACK RETURN|MAIL| requests grow. slyly special dep| +1742|156923|4469|1|6|11879.52|0.04|0.06|A|F|1993-10-28|1993-10-20|1993-11-04|TAKE BACK RETURN|SHIP| beans affix quickly about th| +1742|193046|3047|2|19|21641.76|0.02|0.02|A|F|1993-12-13|1993-10-06|1993-12-26|TAKE BACK RETURN|SHIP|rding to the ironic accounts. stealt| +1742|111206|8740|3|45|54774.00|0.06|0.04|A|F|1993-12-12|1993-10-18|1993-12-26|TAKE BACK RETURN|REG AIR|slyly unusual ideas. ironic dolphins ar| +1742|39175|4182|4|41|45680.97|0.08|0.02|R|F|1993-10-19|1993-11-11|1993-11-10|TAKE BACK RETURN|MAIL|lly unusual ideas. | +1742|2719|7720|5|16|25947.36|0.04|0.03|A|F|1993-11-23|1993-10-14|1993-12-07|NONE|FOB| slyly unusual platelets. blithely spe| +1742|83351|3352|6|16|21349.60|0.07|0.08|R|F|1993-09-23|1993-10-16|1993-10-18|DELIVER IN PERSON|SHIP| about the carefully ironic ac| +1742|65013|7520|7|28|27384.28|0.06|0.00|A|F|1993-09-04|1993-11-09|1993-09-14|COLLECT COD|FOB|eposits use slyly after the requ| +1743|62059|2060|1|27|27568.35|0.00|0.00|N|O|1997-06-17|1997-04-17|1997-06-27|TAKE BACK RETURN|AIR|lyly. final orbits use blit| +1743|20412|5417|2|37|49299.17|0.01|0.01|N|O|1997-05-06|1997-04-28|1997-05-24|COLLECT COD|AIR|ans integrate fluffily a| +1743|51209|8725|3|35|40607.00|0.06|0.01|N|O|1997-03-27|1997-05-17|1997-04-18|TAKE BACK RETURN|REG AIR|uffily even pinto beans. furiously ironic a| +1743|67855|362|4|16|29165.60|0.04|0.06|N|O|1997-04-04|1997-04-02|1997-04-22|TAKE BACK RETURN|TRUCK| blithely careful dolphins. spe| +1768|84931|2456|1|33|63225.69|0.06|0.00|R|F|1992-09-13|1992-11-16|1992-09-21|DELIVER IN PERSON|AIR|y unusual asymptotes above the carefully| +1768|30930|3434|2|3|5582.79|0.07|0.01|R|F|1992-09-29|1992-10-08|1992-10-08|TAKE BACK RETURN|RAIL|riously ironic theodolites accordi| +1769|165154|2703|1|27|32917.05|0.07|0.05|A|F|1994-09-22|1994-07-27|1994-10-16|COLLECT COD|SHIP|y according to the regular, special| +1769|132002|7029|2|39|40326.00|0.02|0.06|R|F|1994-08-21|1994-07-10|1994-09-12|COLLECT COD|TRUCK|structions use at the fluffily| +1770|18170|672|1|35|38085.95|0.06|0.06|N|O|1995-07-11|1995-07-20|1995-07-19|DELIVER IN PERSON|REG AIR|ealms serve among the asymptotes. slyly r| +1770|172056|4574|2|48|54146.40|0.01|0.01|N|O|1995-09-04|1995-08-14|1995-09-10|TAKE BACK RETURN|RAIL|sts. express pinto beans wake| +1770|139993|2507|3|1|2032.99|0.01|0.08|N|F|1995-06-02|1995-07-30|1995-06-29|NONE|REG AIR|! blithely special packages haggle care| +1770|52417|9933|4|41|56145.81|0.10|0.00|N|O|1995-08-25|1995-07-05|1995-09-13|NONE|FOB| ironic, unusual p| +1770|159917|4948|5|49|96868.59|0.05|0.05|N|F|1995-06-17|1995-07-20|1995-07-16|COLLECT COD|RAIL|uickly unusual reque| +1771|145705|734|1|6|10504.20|0.04|0.05|A|F|1995-03-13|1995-02-13|1995-03-22|COLLECT COD|RAIL|y regular deposits. slyly c| +1771|55516|527|2|2|2943.02|0.05|0.08|A|F|1995-03-25|1995-01-06|1995-04-09|TAKE BACK RETURN|RAIL|packages thrash blithely above the slyly fi| +1772|88575|1084|1|44|68797.08|0.04|0.05|N|O|1996-03-10|1996-03-22|1996-04-03|NONE|RAIL|ckly along the pending theodolites| +1773|42413|9926|1|7|9487.87|0.01|0.04|N|O|1997-05-15|1997-03-16|1997-06-05|NONE|MAIL| courts. pending pinto beans| +1774|142993|5508|1|5|10179.95|0.09|0.04|R|F|1994-09-06|1994-09-08|1994-09-10|NONE|SHIP|s are across the blithely even re| +1774|68584|3597|2|21|32604.18|0.00|0.02|A|F|1994-07-25|1994-08-07|1994-08-12|DELIVER IN PERSON|AIR|lly. carefully | +1774|76939|6940|3|32|61309.76|0.02|0.05|R|F|1994-07-28|1994-08-22|1994-08-18|NONE|FOB| slyly even pack| +1774|110005|2517|4|18|18270.00|0.03|0.01|R|F|1994-10-07|1994-08-01|1994-10-19|COLLECT COD|AIR|packages wake quickly against the blith| +1774|45192|7697|5|9|10234.71|0.04|0.00|A|F|1994-09-05|1994-08-30|1994-09-30|COLLECT COD|MAIL|t fluffily. blithely special excuses | +1774|130092|5119|6|4|4488.36|0.02|0.02|A|F|1994-07-03|1994-08-26|1994-07-04|NONE|AIR| above the carefu| +1775|29037|4042|1|20|19320.60|0.02|0.06|N|O|1996-07-15|1996-05-04|1996-07-29|DELIVER IN PERSON|TRUCK| dinos; quietly special ideas detect acro| +1775|23940|8945|2|33|61510.02|0.06|0.05|N|O|1996-07-03|1996-05-05|1996-07-11|NONE|REG AIR|ts. carefully final packa| +1775|155056|87|3|44|48886.20|0.10|0.00|N|O|1996-06-08|1996-05-04|1996-06-13|COLLECT COD|TRUCK|players above the unusual th| +1775|17858|2861|4|6|10655.10|0.03|0.01|N|O|1996-04-19|1996-04-23|1996-05-16|TAKE BACK RETURN|FOB|sly even t| +1775|125247|2784|5|20|25444.80|0.03|0.05|N|O|1996-06-26|1996-05-31|1996-07-10|NONE|RAIL|sly ironic dep| +1775|22669|7674|6|20|31833.20|0.02|0.00|N|O|1996-06-20|1996-06-15|1996-07-04|NONE|FOB|ithes cajole along the carefully | +1800|69365|1872|1|25|33359.00|0.06|0.04|A|F|1993-12-20|1993-10-10|1993-12-29|NONE|MAIL|pending dolphins. ideas are slyly carefu| +1800|6436|6437|2|3|4027.29|0.04|0.07|A|F|1993-12-31|1993-10-25|1994-01-24|DELIVER IN PERSON|MAIL|ep regular deposits. qu| +1800|161396|1397|3|17|24775.63|0.01|0.03|R|F|1993-12-02|1993-11-28|1993-12-10|NONE|REG AIR|quests. ironic requests above the hockey| +1800|169132|9133|4|12|14413.56|0.06|0.02|R|F|1993-10-26|1993-10-22|1993-11-13|DELIVER IN PERSON|FOB|ily according to the packages. furiousl| +1800|198917|8918|5|32|64509.12|0.03|0.02|R|F|1993-11-12|1993-10-21|1993-12-02|COLLECT COD|MAIL|bout the fu| +1800|187529|5084|6|46|74359.92|0.03|0.05|A|F|1993-09-30|1993-11-22|1993-10-15|NONE|RAIL|uests boost quickly ir| +1800|190728|8286|7|9|16368.48|0.05|0.07|A|F|1993-12-13|1993-10-20|1994-01-09|COLLECT COD|MAIL|structions use across the unusual saut| +1801|149786|4815|1|45|82610.10|0.05|0.03|N|O|1995-08-16|1995-08-09|1995-08-18|NONE|TRUCK|ut the quickly silent| +1801|39026|6536|2|44|42460.88|0.01|0.04|N|O|1995-06-20|1995-07-19|1995-06-26|TAKE BACK RETURN|AIR|fully ironic the| +1801|102119|4630|3|8|8968.88|0.10|0.03|N|O|1995-06-27|1995-07-16|1995-07-15|COLLECT COD|FOB|the final, daring foxes. careful| +1802|89169|9170|1|27|31270.32|0.10|0.06|N|O|1997-02-14|1996-12-27|1997-02-16|DELIVER IN PERSON|RAIL|posits. special depo| +1803|24313|1820|1|23|28458.13|0.03|0.00|A|F|1994-08-20|1994-09-03|1994-09-04|TAKE BACK RETURN|TRUCK|e slyly special packages. permanently e| +1803|18765|3768|2|14|23572.64|0.10|0.01|A|F|1994-09-14|1994-09-03|1994-10-11|COLLECT COD|SHIP| regular instructions sleep furi| +1804|12309|7312|1|19|23204.70|0.09|0.06|R|F|1992-11-21|1992-11-11|1992-11-25|TAKE BACK RETURN|TRUCK|ly. furiously special water| +1805|74533|2055|1|6|9045.18|0.07|0.07|N|O|1996-03-15|1996-02-15|1996-04-02|NONE|AIR|o unwind quickly pending pinto beans; p| +1806|81228|1229|1|1|1209.22|0.04|0.08|N|O|1995-11-18|1995-09-22|1995-12-03|DELIVER IN PERSON|REG AIR| dependencies pl| +1806|188225|8226|2|33|43336.26|0.10|0.07|N|O|1995-10-26|1995-10-08|1995-10-27|COLLECT COD|SHIP|usual requ| +1806|93141|669|3|24|27219.36|0.00|0.04|N|O|1995-11-02|1995-09-17|1995-11-15|DELIVER IN PERSON|REG AIR|ngside of the even ideas. b| +1806|6273|6274|4|48|56604.96|0.06|0.05|N|O|1995-08-24|1995-10-17|1995-08-30|NONE|RAIL|slyly ironic asy| +1807|197538|5096|1|23|37617.19|0.10|0.01|N|O|1997-09-29|1997-09-18|1997-10-18|TAKE BACK RETURN|MAIL|ironic excuses. special foxes against the f| +1807|11259|6262|2|44|51491.00|0.02|0.03|N|O|1997-10-25|1997-08-20|1997-11-16|NONE|AIR| deposits: carefully regular requests beli| +1807|28395|8396|3|50|66169.50|0.07|0.05|N|O|1997-08-14|1997-09-16|1997-09-06|DELIVER IN PERSON|SHIP| theodolites sleep silently instead of the | +1832|34724|4725|1|27|44785.44|0.01|0.04|A|F|1994-02-24|1994-04-10|1994-03-07|NONE|FOB|e according| +1832|189937|4974|2|9|18242.37|0.05|0.03|R|F|1994-04-28|1994-05-02|1994-05-26|COLLECT COD|TRUCK|lyly final notornis. | +1832|58688|1194|3|1|1646.68|0.10|0.02|A|F|1994-03-17|1994-04-05|1994-03-29|COLLECT COD|REG AIR|the furiously pending pinto beans| +1832|169078|9079|4|25|28676.75|0.04|0.04|R|F|1994-05-25|1994-04-13|1994-06-12|TAKE BACK RETURN|RAIL|e slyly final| +1832|88364|8365|5|12|16228.32|0.00|0.01|A|F|1994-05-13|1994-03-30|1994-06-05|NONE|RAIL|osits nag carefully carefully eve| +1832|128798|6335|6|47|85859.13|0.07|0.00|R|F|1994-03-29|1994-04-05|1994-04-22|DELIVER IN PERSON|MAIL|e final accounts? regular packages ac| +1833|67107|7108|1|22|23630.20|0.06|0.05|A|F|1993-11-22|1993-12-01|1993-11-25|NONE|SHIP|lly regular theodolites| +1833|61003|1004|2|29|27956.00|0.07|0.04|A|F|1993-12-15|1993-12-19|1994-01-08|DELIVER IN PERSON|FOB|usual accounts snooze quic| +1834|46765|4278|1|11|18829.36|0.01|0.01|A|F|1993-09-19|1993-10-02|1993-10-15|DELIVER IN PERSON|MAIL|ular excuses. quickly even deposits hagg| +1834|179071|1589|2|18|20701.26|0.08|0.05|R|F|1993-10-05|1993-10-07|1993-10-26|DELIVER IN PERSON|TRUCK| fluffily p| +1835|184997|2552|1|15|31229.85|0.02|0.00|A|F|1993-06-10|1993-07-23|1993-07-06|DELIVER IN PERSON|AIR|cuses haggle qui| +1835|31611|9121|2|34|52448.74|0.08|0.04|R|F|1993-07-30|1993-06-14|1993-08-14|TAKE BACK RETURN|REG AIR|thely. blithely even pinto beans are arou| +1835|75343|7851|3|43|56688.62|0.02|0.07|R|F|1993-07-17|1993-07-01|1993-07-26|NONE|MAIL|y final instructions. carefully final dol| +1835|83471|3472|4|1|1454.47|0.01|0.03|R|F|1993-06-18|1993-06-28|1993-06-21|TAKE BACK RETURN|TRUCK|ial dolphins| +1835|95550|5551|5|22|34002.10|0.06|0.04|A|F|1993-07-19|1993-07-24|1993-07-26|COLLECT COD|AIR| regular foxes ar| +1836|2367|4868|1|49|62198.64|0.00|0.08|R|F|1995-03-28|1995-04-13|1995-04-25|NONE|TRUCK|special platelets. carefully even package| +1836|168621|3654|2|17|28723.54|0.03|0.04|A|F|1995-04-17|1995-03-14|1995-05-09|TAKE BACK RETURN|MAIL|hely final p| +1836|197158|7159|3|43|53971.45|0.03|0.04|R|F|1995-03-23|1995-04-26|1995-04-16|TAKE BACK RETURN|FOB|e slyly bold packages. furiously i| +1836|24563|9568|4|11|16363.16|0.05|0.04|A|F|1995-02-07|1995-03-29|1995-03-08|TAKE BACK RETURN|MAIL| pending deposits nag sly| +1837|153364|3365|1|28|39686.08|0.01|0.04|N|O|1997-09-14|1997-07-01|1997-10-10|DELIVER IN PERSON|SHIP|nusual depend| +1837|182755|2756|2|35|64321.25|0.08|0.06|N|O|1997-09-06|1997-07-28|1997-09-21|DELIVER IN PERSON|RAIL|ccording to the bold a| +1837|150933|5964|3|9|17855.37|0.10|0.04|N|O|1997-09-07|1997-07-30|1997-10-05|DELIVER IN PERSON|SHIP|ously ironic theodolit| +1837|123920|3921|4|14|27214.88|0.10|0.08|N|O|1997-08-15|1997-08-06|1997-09-07|NONE|AIR|equests print final theodolites| +1837|113580|1114|5|3|4780.74|0.10|0.01|N|O|1997-07-15|1997-07-21|1997-08-10|DELIVER IN PERSON|MAIL|the carefully pending escapades use blithe| +1837|126854|6855|6|40|75234.00|0.08|0.07|N|O|1997-07-24|1997-08-10|1997-08-21|TAKE BACK RETURN|AIR|ly even theodolites. furiously fina| +1837|31632|1633|7|26|40654.38|0.07|0.02|N|O|1997-07-26|1997-08-04|1997-08-10|COLLECT COD|TRUCK|affix. regular requests haggle s| +1838|29438|9439|1|5|6837.15|0.08|0.03|N|O|1996-06-09|1996-07-11|1996-06-26|COLLECT COD|TRUCK|sual packages boost furiously across t| +1838|152851|5367|2|10|19038.50|0.08|0.03|N|O|1996-08-13|1996-06-08|1996-08-29|DELIVER IN PERSON|RAIL|n theodolites. packages in| +1838|151627|1628|3|21|35251.02|0.04|0.02|N|O|1996-05-02|1996-07-25|1996-05-17|COLLECT COD|REG AIR|sits detect | +1838|179264|1782|4|18|24178.68|0.02|0.00|N|O|1996-05-06|1996-06-18|1996-05-15|COLLECT COD|RAIL|press, regular deposits dazzle bli| +1838|75502|5503|5|37|54667.50|0.00|0.05|N|O|1996-07-17|1996-07-02|1996-07-25|COLLECT COD|TRUCK|t the furiously unusual ideas. reg| +1838|148001|516|6|46|48254.00|0.01|0.06|N|O|1996-07-08|1996-07-17|1996-08-01|DELIVER IN PERSON|REG AIR|leep carefully outside the requ| +1838|45828|8333|7|5|8869.10|0.03|0.00|N|O|1996-08-17|1996-07-27|1996-08-31|NONE|FOB|xes accordi| +1839|16635|1638|1|48|74478.24|0.10|0.06|N|O|1995-07-23|1995-08-23|1995-08-19|DELIVER IN PERSON|FOB|theodolites. regular asymptotes | +1839|175290|325|2|38|51881.02|0.07|0.07|N|O|1995-07-24|1995-08-14|1995-08-10|DELIVER IN PERSON|TRUCK|aggle. carefull| +1864|158457|6003|1|5|7577.25|0.10|0.01|R|F|1993-07-13|1993-07-07|1993-07-25|NONE|AIR|lites among the even ideas are furiou| +1864|173527|6045|2|21|33610.92|0.01|0.08|R|F|1993-05-21|1993-06-10|1993-05-24|DELIVER IN PERSON|TRUCK|oxes cajol| +1864|62083|7096|3|33|34487.64|0.09|0.04|A|F|1993-08-21|1993-07-03|1993-08-29|COLLECT COD|AIR|ly along the| +1864|22052|2053|4|2|1948.10|0.04|0.03|A|F|1993-06-03|1993-07-18|1993-06-27|NONE|AIR|ly silent deposits alongsi| +1864|12652|5154|5|2|3129.30|0.05|0.05|A|F|1993-06-08|1993-07-09|1993-06-30|TAKE BACK RETURN|REG AIR|t instructions haggle. unusual pinto bean| +1864|26264|8767|6|1|1190.26|0.05|0.02|R|F|1993-08-15|1993-06-05|1993-09-13|NONE|RAIL| bold instru| +1864|4782|2283|7|30|50603.40|0.08|0.02|A|F|1993-08-25|1993-06-04|1993-09-20|DELIVER IN PERSON|RAIL|kly regular de| +1865|158870|8871|1|20|38577.40|0.01|0.04|N|O|1997-09-27|1997-11-03|1997-10-19|NONE|AIR|quests. bl| +1865|120698|3211|2|8|13749.52|0.02|0.06|N|O|1997-11-26|1997-10-19|1997-12-17|TAKE BACK RETURN|SHIP| deposits. quickly even asy| +1866|76988|6989|1|4|7859.92|0.04|0.02|N|O|1996-11-07|1996-10-15|1996-12-03|COLLECT COD|AIR|y pending deposits i| +1866|133002|8029|2|20|20700.00|0.05|0.00|N|O|1996-11-05|1996-09-24|1996-11-25|DELIVER IN PERSON|REG AIR|y pending d| +1866|164380|9413|3|16|23110.08|0.08|0.01|N|O|1996-09-18|1996-10-04|1996-10-01|DELIVER IN PERSON|RAIL|uriously regular packages. dependencies h| +1867|25763|3270|1|19|32086.44|0.08|0.07|N|O|1998-01-25|1998-03-11|1998-02-23|DELIVER IN PERSON|FOB|xpress pla| +1867|194889|2447|2|21|41661.48|0.05|0.05|N|O|1998-02-13|1998-02-17|1998-03-13|COLLECT COD|RAIL| pearls are carefully even, ironic p| +1868|60822|5835|1|40|71312.80|0.10|0.02|A|F|1994-03-20|1994-05-16|1994-03-26|NONE|TRUCK|ndencies must sleep permanently above the | +1868|34289|9296|2|6|7339.68|0.06|0.06|R|F|1994-03-24|1994-05-19|1994-04-18|NONE|AIR|fully bold deposits sleep quickly. even pac| +1868|82147|4656|3|16|18066.24|0.01|0.02|A|F|1994-06-01|1994-05-13|1994-06-13|TAKE BACK RETURN|RAIL|. slyly special plat| +1868|43310|8319|4|7|8773.17|0.01|0.01|A|F|1994-05-11|1994-05-12|1994-06-02|NONE|RAIL|ronic epitaphs| +1868|108895|3916|5|35|66636.15|0.06|0.03|R|F|1994-03-07|1994-04-24|1994-03-25|COLLECT COD|RAIL|ly regular pinto beans. furiously ironic | +1868|189372|9373|6|9|13152.33|0.02|0.06|A|F|1994-04-05|1994-05-11|1994-04-16|TAKE BACK RETURN|AIR| nag blithely after the qui| +1868|168197|3230|7|11|13917.09|0.07|0.01|A|F|1994-05-18|1994-04-13|1994-06-14|TAKE BACK RETURN|FOB|e bold requests solve about the slyly iron| +1869|74735|9750|1|18|30775.14|0.03|0.06|R|F|1992-11-28|1992-12-15|1992-12-13|TAKE BACK RETURN|TRUCK|gular, ironic deposi| +1869|55390|401|2|37|49779.43|0.07|0.08|A|F|1993-01-28|1992-11-24|1993-02-08|NONE|REG AIR|al deposits! quickly unusual ideas nag flu| +1870|192569|5089|1|48|79754.88|0.05|0.07|A|F|1994-10-27|1994-08-28|1994-11-17|NONE|MAIL|le furiously even f| +1870|105025|5026|2|24|24720.48|0.03|0.06|A|F|1994-08-04|1994-08-25|1994-08-20|DELIVER IN PERSON|REG AIR|ke silently ca| +1870|144042|9071|3|35|38011.40|0.00|0.01|R|F|1994-08-03|1994-08-31|1994-08-22|COLLECT COD|FOB|n foxes: slyly final theodolites| +1871|144731|7246|1|19|33738.87|0.01|0.02|R|F|1992-09-02|1992-08-22|1992-09-21|TAKE BACK RETURN|MAIL|usly quickly| +1871|81698|4207|2|6|10078.14|0.04|0.02|R|F|1992-06-09|1992-07-29|1992-07-06|COLLECT COD|MAIL|g, unusual depths must| +1896|19249|1751|1|13|15187.12|0.08|0.07|R|F|1994-05-10|1994-04-13|1994-05-23|COLLECT COD|REG AIR| the request| +1896|102861|392|2|27|50324.22|0.05|0.08|R|F|1994-03-25|1994-03-21|1994-04-05|DELIVER IN PERSON|FOB|c ideas along the fluffily unusual excuse| +1896|178754|6306|3|49|89804.75|0.09|0.04|R|F|1994-01-28|1994-03-27|1994-02-14|COLLECT COD|REG AIR|es are quickly. accounts sleep? carefull| +1897|133784|6298|1|6|10906.68|0.01|0.00|N|O|1996-04-10|1996-06-25|1996-05-06|DELIVER IN PERSON|REG AIR| integrate| +1898|90815|5834|1|20|36116.20|0.04|0.05|A|F|1992-05-24|1992-05-05|1992-05-29|NONE|FOB| furiously unusual accoun| +1898|114718|4719|2|41|71041.11|0.04|0.05|A|F|1992-04-25|1992-05-13|1992-05-11|TAKE BACK RETURN|TRUCK|sly slyly pending excuses. ruthlessly ir| +1898|63827|3828|3|18|32234.76|0.09|0.00|R|F|1992-04-16|1992-05-18|1992-04-30|DELIVER IN PERSON|SHIP|mas x-ray pack| +1899|142416|9959|1|26|37918.66|0.05|0.02|N|O|1997-11-05|1997-12-25|1997-11-18|DELIVER IN PERSON|AIR|are carefully quickly ironic the| +1900|90191|2701|1|33|38979.27|0.01|0.08|N|O|1996-03-22|1996-04-26|1996-03-30|DELIVER IN PERSON|SHIP|nic gifts are always instead of| +1900|25045|5046|2|19|18430.76|0.05|0.06|N|O|1996-04-12|1996-05-23|1996-05-03|TAKE BACK RETURN|AIR|old forges | +1900|124224|6737|3|31|38694.82|0.05|0.00|N|O|1996-06-09|1996-05-19|1996-06-16|DELIVER IN PERSON|FOB|dolites nag s| +1900|19671|7175|4|9|14316.03|0.05|0.05|N|O|1996-06-01|1996-04-12|1996-06-02|COLLECT COD|TRUCK|lites try to use after the fluff| +1900|194748|2306|5|8|14741.92|0.09|0.01|N|O|1996-05-05|1996-05-19|1996-06-03|NONE|SHIP|al deposit| +1900|113786|1320|6|32|57592.96|0.03|0.07|N|O|1996-05-19|1996-05-06|1996-06-14|COLLECT COD|FOB| ironic packages. unusual, final asymptote| +1901|99757|2267|1|17|29864.75|0.01|0.01|R|F|1993-05-11|1993-06-12|1993-05-17|COLLECT COD|TRUCK| quickly special packa| +1902|131937|6964|1|8|15751.44|0.08|0.07|R|F|1994-08-01|1994-06-30|1994-08-27|COLLECT COD|RAIL|le around the t| +1902|59749|2255|2|18|30757.32|0.02|0.01|A|F|1994-07-07|1994-08-20|1994-07-21|COLLECT COD|TRUCK| the quickly even ideas use caref| +1902|190737|738|3|31|56659.63|0.03|0.03|R|F|1994-08-17|1994-08-21|1994-08-28|TAKE BACK RETURN|RAIL|et theodolites wake quickly! care| +1902|105571|5572|4|9|14189.13|0.08|0.08|A|F|1994-08-30|1994-08-05|1994-09-19|DELIVER IN PERSON|RAIL|c ideas. s| +1902|125007|7520|5|2|2064.00|0.05|0.02|A|F|1994-07-17|1994-07-21|1994-07-27|DELIVER IN PERSON|REG AIR|thely deposits: blithely final accounts| +1902|177178|9696|6|3|3765.51|0.06|0.08|R|F|1994-08-21|1994-07-13|1994-09-08|TAKE BACK RETURN|AIR|kly pending instructio| +1903|149175|1690|1|35|42845.95|0.06|0.01|N|O|1996-04-25|1996-05-21|1996-05-07|TAKE BACK RETURN|RAIL|ntly regula| +1903|168264|781|2|22|29309.72|0.09|0.00|N|O|1996-05-10|1996-04-02|1996-05-22|DELIVER IN PERSON|RAIL| accounts. bold, regular requests are close| +1903|5988|5989|3|38|71971.24|0.05|0.03|N|O|1996-04-11|1996-04-18|1996-05-06|COLLECT COD|SHIP|ymptotes affix express, unusual asympt| +1903|27132|2137|4|49|51897.37|0.09|0.08|N|O|1996-04-27|1996-04-04|1996-05-08|NONE|MAIL| the furiously final pinto beans lose care| +1928|131471|1472|1|24|36059.28|0.02|0.00|A|F|1995-02-09|1994-11-24|1995-02-19|DELIVER IN PERSON|TRUCK|nts wake blithely regular waters| +1928|20961|962|2|20|37639.20|0.01|0.00|A|F|1994-12-15|1994-11-25|1995-01-10|NONE|MAIL|s the slyly ironic| +1928|78431|939|3|46|64833.78|0.02|0.08|R|F|1994-11-10|1995-01-01|1994-11-28|COLLECT COD|TRUCK|heaves was quic| +1928|188851|8852|4|45|87293.25|0.06|0.05|R|F|1994-10-31|1994-12-20|1994-11-02|TAKE BACK RETURN|REG AIR|he fluffily pending dolphins affix ca| +1928|7054|2055|5|11|10571.55|0.04|0.03|A|F|1994-10-24|1995-01-10|1994-10-28|COLLECT COD|TRUCK|according to the carefully bold ins| +1928|144713|2256|6|23|40427.33|0.09|0.02|R|F|1995-02-08|1994-12-02|1995-02-19|NONE|FOB|alms lose never along the f| +1929|82563|7580|1|17|26274.52|0.06|0.02|N|O|1997-05-08|1997-04-01|1997-05-14|NONE|REG AIR|latelets nag f| +1929|28863|6370|2|34|60923.24|0.08|0.08|N|O|1997-05-16|1997-04-14|1997-06-09|NONE|SHIP| quickly regular asymptotes sle| +1930|161918|6951|1|40|79196.40|0.08|0.08|N|O|1996-09-04|1996-08-20|1996-09-15|COLLECT COD|RAIL|usly even requ| +1930|152994|5510|2|27|55268.73|0.07|0.04|N|O|1996-10-09|1996-09-08|1996-10-29|DELIVER IN PERSON|SHIP|y silent tithes. accounts are slyly r| +1930|156829|1860|3|2|3771.64|0.06|0.02|N|O|1996-11-06|1996-08-21|1996-11-19|TAKE BACK RETURN|MAIL|ng deposits sleep fluffily ideas. regular d| +1930|24931|4932|4|46|85372.78|0.10|0.05|N|O|1996-08-27|1996-10-05|1996-09-06|DELIVER IN PERSON|AIR|nusual accounts detect fluffily final depen| +1930|5361|2862|5|29|36724.44|0.09|0.06|N|O|1996-09-30|1996-08-30|1996-10-19|DELIVER IN PERSON|MAIL|. foxes dete| +1931|41361|3866|1|7|9116.52|0.07|0.07|A|F|1993-05-21|1993-03-21|1993-06-08|NONE|TRUCK|ans breach carefully carefully pend| +1931|145563|8078|2|24|38605.44|0.01|0.07|R|F|1993-05-15|1993-03-01|1993-06-10|COLLECT COD|MAIL|after the quickly ironic requests b| +1932|161010|8559|1|33|35343.33|0.02|0.08|A|F|1992-05-17|1992-06-10|1992-06-07|COLLECT COD|REG AIR| the quiet deposits. e| +1933|142041|4556|1|25|27076.00|0.05|0.08|A|F|1992-03-12|1992-03-08|1992-03-19|DELIVER IN PERSON|SHIP|pinto beans wake b| +1933|77362|2377|2|39|52235.04|0.08|0.04|R|F|1992-03-12|1992-03-16|1992-04-09|DELIVER IN PERSON|FOB|ending ideas | +1933|22854|361|3|7|12437.95|0.00|0.06|A|F|1992-03-25|1992-03-17|1992-03-31|NONE|MAIL|arefully special f| +1933|91035|1036|4|39|40015.17|0.00|0.03|R|F|1992-03-16|1992-03-23|1992-03-27|DELIVER IN PERSON|FOB|unts cajole. even, ironic ideas after| +1933|21789|1790|5|1|1710.78|0.03|0.07|R|F|1992-03-08|1992-02-04|1992-03-21|COLLECT COD|MAIL|osits cajole slyly furiously final account| +1934|164002|6519|1|15|15990.00|0.00|0.07|A|F|1993-04-03|1993-02-12|1993-04-14|COLLECT COD|TRUCK|pending ideas| +1934|170064|5099|2|36|40826.16|0.07|0.08|A|F|1992-12-05|1993-02-27|1992-12-21|COLLECT COD|TRUCK|ickly regular | +1934|53127|643|3|9|9721.08|0.07|0.01|R|F|1993-02-22|1993-01-30|1993-03-05|DELIVER IN PERSON|REG AIR| requests. excuses sleep among t| +1934|92919|447|4|17|32502.47|0.05|0.04|A|F|1993-02-15|1993-01-30|1993-02-18|TAKE BACK RETURN|SHIP|to the furiously final i| +1934|88918|3935|5|18|34324.38|0.08|0.06|A|F|1993-04-04|1993-02-20|1993-04-09|COLLECT COD|REG AIR|fully slyly ironic deposits. furiously enti| +1934|39857|9858|6|4|7187.40|0.01|0.00|R|F|1993-03-14|1993-02-12|1993-03-29|COLLECT COD|FOB|ipliers integrate slyly? unus| +1934|74091|4092|7|37|39408.33|0.02|0.02|R|F|1993-02-02|1993-02-13|1993-02-07|NONE|FOB|lyly. final, pen| +1935|39102|1606|1|28|29150.80|0.06|0.02|N|O|1997-11-19|1997-10-13|1997-11-27|TAKE BACK RETURN|REG AIR|le slyly quickly silent asymptotes. blit| +1935|174093|6611|2|38|44349.42|0.03|0.07|N|O|1997-11-07|1997-10-29|1997-12-05|TAKE BACK RETURN|TRUCK|side of the regular deposits affix| +1935|171064|8616|3|46|52212.76|0.09|0.06|N|O|1997-11-19|1997-09-30|1997-12-08|NONE|TRUCK|s after the accounts impress courts. furi| +1960|149961|4990|1|46|92504.16|0.03|0.01|R|F|1994-01-09|1994-01-03|1994-01-31|TAKE BACK RETURN|REG AIR|en pinto beans are | +1960|181268|1269|2|38|51271.88|0.09|0.06|A|F|1994-02-12|1994-01-13|1994-02-21|DELIVER IN PERSON|REG AIR|ly final patterns above| +1960|165578|611|3|3|4930.71|0.02|0.05|R|F|1993-11-21|1993-12-10|1993-11-23|TAKE BACK RETURN|RAIL|ithely unusual notorn| +1960|59860|7376|4|26|47316.36|0.00|0.07|R|F|1994-01-08|1994-01-24|1994-01-26|TAKE BACK RETURN|FOB|carefully bold dependencies to| +1960|57896|2907|5|29|53762.81|0.10|0.01|A|F|1994-02-08|1994-01-04|1994-02-21|COLLECT COD|FOB|y. regularly even depos| +1961|23371|878|1|12|15532.44|0.10|0.08|R|F|1994-06-13|1994-05-24|1994-07-11|TAKE BACK RETURN|SHIP|sual asymptote| +1961|191460|1461|2|50|77573.00|0.02|0.07|R|F|1994-07-02|1994-06-02|1994-07-16|TAKE BACK RETURN|MAIL|across the gifts. fur| +1961|55343|5344|3|42|54530.28|0.09|0.06|R|F|1994-05-05|1994-06-01|1994-05-17|NONE|FOB|l packages. deposits alongside of the | +1961|134079|9106|4|14|15582.98|0.10|0.01|A|F|1994-07-22|1994-06-09|1994-07-24|NONE|SHIP|ptotes among the slyly | +1961|62312|9831|5|14|17840.34|0.09|0.06|R|F|1994-07-06|1994-05-26|1994-07-29|COLLECT COD|AIR|ly bold escapades. close| +1961|72702|5210|6|13|21771.10|0.01|0.06|A|F|1994-07-10|1994-07-07|1994-07-31|DELIVER IN PERSON|FOB|en theodolites x-ray| +1961|93488|1016|7|22|32592.56|0.09|0.07|A|F|1994-07-06|1994-05-22|1994-07-24|DELIVER IN PERSON|SHIP|lyly about the accounts; quickly regular| +1962|49716|2221|1|33|54968.43|0.06|0.08|N|O|1995-07-21|1995-07-18|1995-08-09|COLLECT COD|SHIP|silent epitaphs are blithely s| +1963|122553|90|1|24|37813.20|0.08|0.00|N|O|1996-02-02|1996-01-28|1996-02-29|TAKE BACK RETURN|RAIL|refully fi| +1963|134482|6996|2|38|57626.24|0.08|0.02|N|O|1996-02-21|1996-02-01|1996-02-23|DELIVER IN PERSON|MAIL|ly even instructions. bl| +1963|22326|9833|3|13|16228.16|0.06|0.06|N|O|1996-03-24|1996-01-21|1996-04-22|NONE|SHIP|s boost about the special, final e| +1963|26750|4257|4|15|25151.25|0.04|0.08|N|O|1996-01-18|1996-01-10|1996-02-04|NONE|FOB|express, eve| +1964|107652|7653|1|10|16596.50|0.03|0.05|N|O|1998-07-16|1998-08-14|1998-07-17|NONE|AIR|lly even depo| +1964|98155|3174|2|5|5765.75|0.10|0.05|N|O|1998-07-07|1998-08-25|1998-07-14|TAKE BACK RETURN|FOB|heodolites. quickly regular account| +1964|83408|933|3|17|23653.80|0.01|0.08|N|O|1998-06-22|1998-07-25|1998-07-18|COLLECT COD|FOB|gular ideas-- instructio| +1964|30802|8312|4|13|22526.40|0.07|0.03|N|O|1998-08-27|1998-07-10|1998-09-09|COLLECT COD|FOB|he theodol| +1964|88192|5717|5|36|42486.84|0.04|0.03|N|O|1998-07-22|1998-08-13|1998-08-21|COLLECT COD|RAIL|ar pinto beans. furiously iron| +1964|28381|884|6|37|48447.06|0.05|0.00|N|O|1998-08-12|1998-07-30|1998-08-18|COLLECT COD|FOB|gular accounts cajole| +1965|10486|7990|1|19|26533.12|0.10|0.05|N|O|1998-03-02|1998-04-06|1998-03-06|COLLECT COD|RAIL|sly. quickly even dependencies boost. bli| +1965|31903|4407|2|28|51377.20|0.05|0.03|N|O|1998-02-16|1998-03-23|1998-03-11|DELIVER IN PERSON|FOB|ly ironic theodol| +1966|159117|1633|1|41|48220.51|0.06|0.06|A|F|1992-12-17|1992-11-23|1993-01-14|DELIVER IN PERSON|SHIP|as are carefully bold packag| +1966|73263|8278|2|35|43269.10|0.10|0.01|A|F|1993-01-05|1992-12-22|1993-01-16|NONE|MAIL|equests lose pending | +1967|110545|3057|1|14|21777.56|0.02|0.02|N|O|1995-08-17|1995-07-11|1995-09-03|DELIVER IN PERSON|SHIP|s sleep thinly special, regular re| +1967|119213|4236|2|20|24644.20|0.03|0.06|N|O|1995-06-24|1995-07-09|1995-07-04|COLLECT COD|TRUCK|leep slyly dolphins. silent,| +1967|198885|6443|3|19|37693.72|0.10|0.08|N|O|1995-07-05|1995-07-25|1995-07-22|DELIVER IN PERSON|MAIL|g above the deposits. ironic deposits are c| +1967|57721|227|4|40|67148.80|0.01|0.02|N|O|1995-08-21|1995-07-22|1995-09-18|COLLECT COD|RAIL|ending waters cajole special| +1967|113852|6364|5|13|24256.05|0.09|0.04|N|O|1995-07-17|1995-08-04|1995-07-22|COLLECT COD|SHIP|o beans. blithely special instructions n| +1992|117428|9940|1|7|10117.94|0.03|0.03|A|F|1993-10-03|1993-09-24|1993-10-13|DELIVER IN PERSON|AIR|ress excuses maintai| +1992|11366|6369|2|12|15328.32|0.02|0.03|R|F|1993-11-22|1993-09-19|1993-12-01|DELIVER IN PERSON|SHIP|rding to the quickly bold sauternes.| +1992|16057|1060|3|24|23353.20|0.06|0.08|R|F|1993-11-28|1993-10-14|1993-12-06|NONE|MAIL|ke furiously. fluffi| +1992|59087|1593|4|10|10460.80|0.10|0.01|A|F|1993-10-17|1993-10-02|1993-11-12|COLLECT COD|AIR|old theodolites was. slyly expres| +1992|67441|4960|5|28|39436.32|0.07|0.03|A|F|1993-10-18|1993-10-07|1993-10-19|NONE|AIR|es sleep after the slyly final accounts. c| +1992|66640|9147|6|42|67478.88|0.07|0.00|A|F|1993-12-09|1993-10-21|1993-12-18|DELIVER IN PERSON|MAIL|nto beans affix carefu| +1993|41060|8573|1|19|19020.14|0.04|0.06|N|F|1995-06-17|1995-05-21|1995-07-10|DELIVER IN PERSON|SHIP|rnes haggle slyly regular ideas| +1993|95358|377|2|3|4060.05|0.02|0.06|A|F|1995-02-25|1995-05-24|1995-03-22|TAKE BACK RETURN|FOB|posits cajole blithe| +1994|182832|2833|1|23|44041.09|0.03|0.02|N|O|1995-10-16|1995-10-05|1995-11-06|DELIVER IN PERSON|AIR|the unusual, f| +1994|56544|4060|2|8|12004.32|0.00|0.00|N|O|1995-11-30|1995-10-19|1995-12-11|NONE|AIR|nst the ca| +1994|120814|8351|3|33|60548.73|0.02|0.08|N|O|1995-10-17|1995-09-26|1995-10-26|TAKE BACK RETURN|AIR|y requests.| +1994|104639|9660|4|46|75606.98|0.10|0.03|N|O|1995-08-10|1995-09-19|1995-08-16|DELIVER IN PERSON|REG AIR|s throughout the ironic d| +1994|59162|4173|5|46|51573.36|0.02|0.07|N|O|1995-09-16|1995-09-29|1995-10-01|COLLECT COD|RAIL|e deposits wake. flu| +1994|127712|5249|6|6|10438.26|0.01|0.00|N|O|1995-10-29|1995-09-16|1995-11-02|DELIVER IN PERSON|REG AIR|inal accounts. regular asymptotes | +1994|38819|8820|7|9|15820.29|0.05|0.07|N|O|1995-08-14|1995-10-03|1995-09-10|TAKE BACK RETURN|SHIP|s the even pinto beans. | +1995|29817|2320|1|43|75112.83|0.03|0.03|A|F|1993-09-10|1993-08-06|1993-09-23|NONE|SHIP| sleep blithely along t| +1995|121424|1425|2|2|2890.84|0.02|0.02|R|F|1993-09-13|1993-08-14|1993-09-21|TAKE BACK RETURN|REG AIR|ions cajole furiously| +1995|164278|1827|3|13|17449.51|0.01|0.06|R|F|1993-07-16|1993-06-22|1993-08-02|NONE|REG AIR|ests was carefully expres| +1995|13788|6290|4|46|78281.88|0.04|0.03|R|F|1993-08-02|1993-08-11|1993-08-08|COLLECT COD|MAIL|sly after the ironic asymptotes. even, pend| +1995|131572|1573|5|3|4810.71|0.08|0.05|R|F|1993-08-01|1993-07-28|1993-08-07|DELIVER IN PERSON|FOB| bold, ironic packages can affix. even,| +1995|123849|8874|6|50|93642.00|0.00|0.05|A|F|1993-08-24|1993-06-19|1993-09-22|NONE|RAIL|olites x-ray final braids. slyly regu| +1995|117604|5138|7|48|77836.80|0.02|0.05|A|F|1993-08-03|1993-07-28|1993-08-19|TAKE BACK RETURN|SHIP| regular, final requests wake| +1996|163912|3913|1|19|37542.29|0.05|0.04|R|F|1994-03-20|1994-05-12|1994-03-21|DELIVER IN PERSON|TRUCK|the furiously even accounts c| +1997|18758|8759|1|44|73777.00|0.09|0.04|N|O|1995-07-27|1995-05-29|1995-07-28|COLLECT COD|REG AIR|e furiously qu| +1997|59504|2010|2|30|43905.00|0.05|0.05|A|F|1995-04-23|1995-07-03|1995-05-15|DELIVER IN PERSON|TRUCK|use carefully regular dependencies. c| +1997|83566|6075|3|30|46486.80|0.03|0.02|A|F|1995-04-28|1995-07-09|1995-05-16|NONE|REG AIR|ns sleep throug| +1998|189826|9827|1|36|68969.52|0.09|0.06|A|F|1993-12-28|1993-12-23|1993-12-30|DELIVER IN PERSON|SHIP|its inside the exp| +1999|185153|190|1|22|27239.30|0.02|0.02|N|O|1998-07-26|1998-09-09|1998-08-07|NONE|RAIL|gle fluffily ironic dolphins. furiousl| +1999|54451|1967|2|23|32325.35|0.01|0.08|N|O|1998-10-06|1998-09-08|1998-10-12|DELIVER IN PERSON|RAIL|final requests nag| +1999|150131|5162|3|1|1181.13|0.03|0.06|N|O|1998-08-23|1998-09-19|1998-08-26|TAKE BACK RETURN|RAIL|e special requests. slyly silent| +1999|37251|4761|4|19|22576.75|0.05|0.02|N|O|1998-07-31|1998-07-30|1998-08-07|DELIVER IN PERSON|FOB|ly pending braids. ironic pl| +2024|198736|3775|1|49|89901.77|0.06|0.02|R|F|1995-06-08|1995-04-19|1995-06-10|TAKE BACK RETURN|SHIP|s sleep blithely against the ideas. ca| +2024|150774|8320|2|4|7299.08|0.01|0.02|R|F|1995-03-18|1995-05-11|1995-04-14|DELIVER IN PERSON|SHIP|hy dependencies nag slyly against the sl| +2025|56364|6365|1|16|21125.76|0.03|0.07|R|F|1993-12-23|1994-01-30|1994-01-21|DELIVER IN PERSON|REG AIR|er. silent, regu| +2025|105661|3192|2|7|11666.62|0.09|0.00|R|F|1994-01-27|1994-02-16|1994-02-12|TAKE BACK RETURN|FOB|uests. deposits boost carefu| +2025|35145|5146|3|42|45365.88|0.08|0.00|A|F|1994-03-06|1994-01-31|1994-03-29|TAKE BACK RETURN|AIR|sleep quickly ironic theodolites. regular | +2025|77397|7398|4|38|52226.82|0.00|0.00|A|F|1994-01-29|1994-01-08|1994-01-31|TAKE BACK RETURN|FOB|thely requests. slyly express packages wake| +2025|195947|8467|5|17|34729.98|0.09|0.08|R|F|1994-03-05|1994-02-02|1994-03-16|COLLECT COD|SHIP|oss the final packa| +2025|77110|7111|6|9|9783.99|0.10|0.01|A|F|1994-03-08|1994-01-31|1994-03-12|DELIVER IN PERSON|RAIL|blithely ironic deposits. | +2025|177112|4664|7|23|27349.53|0.09|0.01|R|F|1994-01-05|1994-02-26|1994-01-19|DELIVER IN PERSON|SHIP|ts was carefully acr| +2026|119577|7111|1|31|49493.67|0.02|0.07|A|F|1995-02-24|1995-01-14|1995-03-01|COLLECT COD|AIR|s affix qu| +2026|130462|2976|2|20|29849.20|0.08|0.03|R|F|1995-03-25|1995-02-03|1995-04-18|COLLECT COD|TRUCK|ructions. slyly regular sen| +2026|69380|6899|3|8|10795.04|0.09|0.01|R|F|1995-02-09|1995-02-13|1995-02-24|COLLECT COD|REG AIR|se around the sp| +2026|59131|6647|4|31|33794.03|0.02|0.08|A|F|1995-03-28|1995-02-09|1995-04-13|DELIVER IN PERSON|SHIP|regular pinto beans print carefully along | +2026|884|5885|5|1|1784.88|0.08|0.04|A|F|1995-03-04|1995-01-12|1995-03-19|COLLECT COD|RAIL|lar instructions boost furiously blit| +2027|162984|533|1|29|59362.42|0.08|0.04|R|F|1994-03-06|1994-03-27|1994-03-13|COLLECT COD|AIR|carefully bold request| +2027|57352|2363|2|18|23568.30|0.10|0.07|R|F|1993-12-31|1994-03-05|1994-01-18|COLLECT COD|REG AIR|l patterns cajole around the | +2027|107536|47|3|10|15435.30|0.01|0.01|A|F|1994-02-14|1994-03-22|1994-03-03|COLLECT COD|AIR|uriously final deposits: thin pea| +2027|151458|6489|4|46|69434.70|0.05|0.08|R|F|1994-01-15|1994-03-08|1994-02-03|NONE|REG AIR|inal deposits sleep above the furi| +2027|152752|5268|5|30|54142.50|0.06|0.03|A|F|1994-03-08|1994-02-06|1994-04-05|TAKE BACK RETURN|FOB| deposits are daringly alongside| +2027|87623|2640|6|42|67646.04|0.05|0.02|R|F|1994-03-13|1994-03-27|1994-03-20|NONE|TRUCK|ns. unusual deposits inside the a| +2027|72438|7453|7|37|52185.91|0.06|0.02|R|F|1994-04-09|1994-02-02|1994-04-23|TAKE BACK RETURN|AIR|sublate. ironic, unusual excuses boost. f| +2028|49923|2428|1|44|82408.48|0.02|0.01|N|O|1997-11-02|1997-11-02|1997-11-17|COLLECT COD|MAIL|e of the e| +2029|60719|720|1|22|36953.62|0.04|0.00|N|O|1998-08-15|1998-09-18|1998-08-28|NONE|RAIL| packages. quickly ironic accounts sub| +2029|89085|6610|2|32|34370.56|0.05|0.01|N|O|1998-08-29|1998-09-06|1998-09-20|TAKE BACK RETURN|REG AIR|cing requests wake slyly. fluffily unusual | +2029|44462|6967|3|25|35161.50|0.01|0.06|N|O|1998-08-31|1998-08-20|1998-09-21|COLLECT COD|TRUCK| deposits above the fluffily even foxes | +2030|186356|3911|1|32|46155.20|0.07|0.01|N|O|1998-07-01|1998-09-04|1998-07-22|COLLECT COD|SHIP|thin requests affix blithely; packa| +2031|150728|5759|1|20|35574.40|0.06|0.02|A|F|1995-03-07|1995-03-13|1995-03-23|TAKE BACK RETURN|SHIP|accounts sleep.| +2031|84334|6843|2|7|9228.31|0.09|0.06|A|F|1995-02-03|1995-03-18|1995-02-16|COLLECT COD|AIR|oxes nag. bravely busy platelets acco| +2031|191990|9548|3|19|39557.81|0.05|0.00|R|F|1995-01-15|1995-04-07|1995-02-02|COLLECT COD|MAIL| at the slyly ev| +2031|161740|9289|4|27|48646.98|0.04|0.08|R|F|1995-02-19|1995-03-18|1995-02-28|DELIVER IN PERSON|REG AIR|blithely even | +2056|63789|1308|1|11|19280.58|0.04|0.03|N|O|1995-09-22|1995-10-23|1995-10-14|NONE|AIR|requests. accounts dou| +2056|97214|4742|2|8|9689.68|0.05|0.02|N|O|1995-10-02|1995-11-13|1995-10-12|TAKE BACK RETURN|SHIP| to the fluffily special | +2056|71849|9371|3|20|36416.80|0.10|0.02|N|O|1995-09-26|1995-10-28|1995-10-05|COLLECT COD|MAIL|uriously final dependencies nag a| +2057|99062|6590|1|50|53053.00|0.00|0.03|N|O|1997-01-09|1996-12-18|1997-01-26|NONE|MAIL|ent foxes wake quickly packages. fur| +2057|123077|8102|2|3|3300.21|0.01|0.06|N|O|1997-01-06|1996-11-04|1997-01-26|NONE|MAIL|cajole furio| +2058|87124|2141|1|3|3333.36|0.10|0.08|A|F|1992-07-31|1992-09-28|1992-08-15|DELIVER IN PERSON|FOB|y ironic requests hag| +2058|80369|370|2|42|56673.12|0.01|0.03|A|F|1992-08-13|1992-10-11|1992-08-17|COLLECT COD|TRUCK| the final, final | +2058|152608|154|3|9|14945.40|0.07|0.08|R|F|1992-08-05|1992-09-30|1992-08-21|COLLECT COD|MAIL|according to the furiously express de| +2058|68593|3606|4|49|76517.91|0.04|0.06|A|F|1992-10-21|1992-09-01|1992-11-03|NONE|RAIL|ng to the furiously sil| +2058|25806|811|5|34|58881.20|0.04|0.03|R|F|1992-08-25|1992-10-07|1992-09-14|COLLECT COD|FOB|jole after the ironic packages| +2058|116581|9093|6|12|19170.96|0.01|0.06|R|F|1992-09-27|1992-09-08|1992-10-12|DELIVER IN PERSON|SHIP|ges sleep? fluffily unusual packages boos| +2058|165146|5147|7|40|48445.60|0.07|0.02|R|F|1992-08-28|1992-09-04|1992-09-13|NONE|RAIL|rious deposits. furiously iro| +2059|5982|3483|1|38|71743.24|0.06|0.02|N|O|1998-08-07|1998-07-19|1998-09-04|NONE|REG AIR|; quickly regular requests across| +2059|127417|4954|2|31|44776.71|0.08|0.01|N|O|1998-06-30|1998-07-22|1998-07-01|COLLECT COD|AIR|l requests above the furiously| +2059|95512|5513|3|33|49747.83|0.06|0.02|N|O|1998-07-20|1998-06-16|1998-07-25|TAKE BACK RETURN|FOB|tions sleep furio| +2059|68994|8995|4|37|72630.63|0.02|0.06|N|O|1998-08-03|1998-06-14|1998-08-16|COLLECT COD|REG AIR|l deposits haggle after| +2059|176608|6609|5|41|69068.60|0.04|0.07|N|O|1998-08-27|1998-06-30|1998-09-20|DELIVER IN PERSON|MAIL|ily among the final, regular depos| +2059|50652|3158|6|1|1602.65|0.05|0.04|N|O|1998-06-18|1998-06-30|1998-07-11|TAKE BACK RETURN|REG AIR|s haggle carefully al| +2060|92385|7404|1|12|16528.56|0.04|0.04|R|F|1992-11-09|1992-09-29|1992-11-29|COLLECT COD|RAIL|ages. theo| +2060|109266|9267|2|32|40808.32|0.07|0.02|A|F|1992-09-24|1992-10-07|1992-10-24|NONE|FOB|pinto beans about the furiously regular| +2060|27406|4913|3|43|57336.20|0.09|0.03|R|F|1992-11-03|1992-10-04|1992-11-26|TAKE BACK RETURN|AIR| carefully ironic accounts. asymptotes ha| +2060|9465|9466|4|37|50855.02|0.08|0.07|A|F|1992-09-24|1992-10-09|1992-10-24|DELIVER IN PERSON|REG AIR|t the quickly regular asymptotes. bli| +2061|16269|6270|1|31|36743.06|0.08|0.01|A|F|1994-08-02|1994-09-29|1994-08-08|COLLECT COD|SHIP| are furiously-- furiously special dependen| +2061|16504|6505|2|50|71025.00|0.09|0.07|A|F|1994-08-16|1994-09-01|1994-09-04|COLLECT COD|RAIL|n deposits against the din| +2061|169354|9355|3|14|19926.90|0.02|0.00|A|F|1994-08-03|1994-08-07|1994-08-05|COLLECT COD|REG AIR| slyly regular inst| +2061|123243|5756|4|10|12662.40|0.04|0.00|A|F|1994-09-02|1994-09-23|1994-09-07|TAKE BACK RETURN|SHIP|ending, exp| +2062|51526|1527|1|43|63533.36|0.06|0.02|A|F|1992-10-04|1992-11-03|1992-10-17|TAKE BACK RETURN|REG AIR|kages cajole quickly aft| +2063|10906|5909|1|23|41788.70|0.02|0.02|N|O|1997-03-02|1997-04-07|1997-03-18|TAKE BACK RETURN|REG AIR|edly regular foxes promise | +2063|84540|4541|2|46|70128.84|0.03|0.02|N|O|1997-05-13|1997-04-13|1997-05-26|NONE|REG AIR|sts haggle | +2063|56321|6322|3|39|49815.48|0.04|0.04|N|O|1997-03-21|1997-04-04|1997-04-08|DELIVER IN PERSON|REG AIR|s. fluffily silen| +2088|41075|1076|1|25|25401.75|0.03|0.01|N|O|1997-06-22|1997-08-23|1997-07-13|DELIVER IN PERSON|FOB|. slyly bo| +2088|130719|720|2|27|47242.17|0.05|0.08|N|O|1997-08-24|1997-08-24|1997-09-07|NONE|AIR| across the furiously regular | +2088|188360|879|3|6|8690.16|0.07|0.07|N|O|1997-08-09|1997-07-24|1997-08-16|DELIVER IN PERSON|AIR|kages wake| +2089|146167|1196|1|36|43673.76|0.02|0.06|R|F|1994-11-27|1994-09-08|1994-12-19|NONE|SHIP|the blithely iro| +2089|19401|9402|2|32|42252.80|0.06|0.08|R|F|1994-08-17|1994-09-29|1994-08-21|NONE|RAIL|furiously even| +2090|109982|2493|1|38|75695.24|0.09|0.04|N|O|1997-09-30|1997-11-14|1997-10-07|TAKE BACK RETURN|REG AIR|s haggle quickly. daringly pe| +2091|136125|1152|1|30|34833.60|0.08|0.02|R|F|1994-05-31|1994-08-20|1994-06-25|DELIVER IN PERSON|REG AIR|ter the quic| +2091|40592|593|2|31|47510.29|0.00|0.04|A|F|1994-09-06|1994-06-28|1994-09-18|NONE|RAIL|equests use slyly inside the | +2091|28423|3428|3|4|5405.68|0.00|0.00|R|F|1994-05-31|1994-07-13|1994-06-07|DELIVER IN PERSON|AIR|ackages. ironic, ironic packages sle| +2091|103958|1489|4|22|43162.90|0.01|0.02|R|F|1994-09-06|1994-07-12|1994-09-18|DELIVER IN PERSON|REG AIR|side of the carefully express packages. fi| +2091|17776|2779|5|28|47425.56|0.00|0.07|A|F|1994-06-26|1994-06-28|1994-07-12|TAKE BACK RETURN|MAIL|warhorses. blithel| +2091|145842|3385|6|9|16990.56|0.07|0.03|R|F|1994-06-27|1994-08-03|1994-07-24|NONE|SHIP|ng the final orbits. furiously even depos| +2092|192928|5448|1|7|14146.44|0.04|0.02|N|O|1996-02-03|1995-11-15|1996-02-15|COLLECT COD|SHIP|nal pinto beans. regular, final de| +2092|124963|7476|2|14|27831.44|0.01|0.04|N|O|1995-10-18|1996-01-05|1995-10-26|COLLECT COD|FOB|. carefully bold ideas a| +2092|48075|3084|3|2|2046.14|0.07|0.05|N|O|1995-12-02|1995-11-17|1995-12-15|DELIVER IN PERSON|REG AIR|tes sleep blithely abou| +2092|185846|3401|4|43|83069.12|0.10|0.03|N|O|1995-10-19|1995-12-04|1995-10-30|DELIVER IN PERSON|AIR|e final, furious reque| +2092|108480|991|5|49|72935.52|0.08|0.05|N|O|1996-01-17|1996-01-09|1996-02-02|DELIVER IN PERSON|MAIL|le carefully since the quickly ev| +2092|13704|3705|6|26|42060.20|0.05|0.04|N|O|1996-02-02|1996-01-13|1996-02-10|COLLECT COD|MAIL|pinto beans wake among the c| +2093|33125|5629|1|20|21162.40|0.05|0.01|N|O|1998-10-17|1998-09-10|1998-10-23|NONE|AIR|s sleep after the ironic requests.| +2093|125126|5127|2|6|6906.72|0.02|0.03|N|O|1998-10-10|1998-08-12|1998-10-13|COLLECT COD|TRUCK|uffily. blithely bold p| +2094|23400|8405|1|39|51612.60|0.03|0.01|R|F|1994-07-25|1994-08-02|1994-08-22|COLLECT COD|FOB|riously carefully even ideas. brai| +2094|76151|8659|2|13|14652.95|0.03|0.06|R|F|1994-07-05|1994-08-19|1994-07-07|DELIVER IN PERSON|RAIL|ts affix furiously against the ironic| +2094|69485|9486|3|46|66906.08|0.05|0.01|R|F|1994-07-29|1994-07-27|1994-08-19|DELIVER IN PERSON|AIR|e according to the blit| +2094|25046|7549|4|17|16507.68|0.07|0.07|R|F|1994-10-03|1994-07-08|1994-10-05|NONE|RAIL|onic excuses. slyly regula| +2095|151025|1026|1|30|32280.60|0.06|0.00|N|O|1998-05-22|1998-04-13|1998-06-18|NONE|TRUCK|sly. regular, ironic accounts aft| +2095|63694|6201|2|12|19892.28|0.03|0.07|N|O|1998-03-14|1998-04-24|1998-03-26|NONE|AIR|egular requests. slyly even waters are car| +2095|94787|7297|3|28|49889.84|0.04|0.08|N|O|1998-03-24|1998-06-01|1998-04-15|COLLECT COD|RAIL|the carefully regular foxe| +2095|78033|541|4|22|22242.66|0.03|0.08|N|O|1998-03-12|1998-04-15|1998-03-29|COLLECT COD|RAIL|platelets. slyly regu| +2095|84157|6666|5|3|3423.45|0.06|0.00|N|O|1998-03-14|1998-05-25|1998-04-04|TAKE BACK RETURN|REG AIR|ld theodolites haggle quickly blith| +2095|14707|7209|6|11|17838.70|0.08|0.07|N|O|1998-04-20|1998-04-04|1998-05-07|NONE|REG AIR|eep finally along the slyly careful pac| +2120|194101|6621|1|23|27487.30|0.04|0.05|N|O|1997-10-04|1997-11-12|1997-10-06|NONE|SHIP| courts. slyly ironic theo| +2120|45617|626|2|4|6250.44|0.00|0.07|N|O|1997-11-23|1997-12-22|1997-12-14|TAKE BACK RETURN|FOB| careful a| +2120|73119|641|3|49|53513.39|0.06|0.08|N|O|1997-12-13|1997-12-10|1997-12-24|DELIVER IN PERSON|SHIP|es. furiously express accounts nag slyly | +2120|110796|5819|4|12|21681.48|0.08|0.03|N|O|1997-11-23|1997-11-14|1997-12-02|COLLECT COD|SHIP| accounts. blithely | +2120|134857|4858|5|21|39728.85|0.09|0.02|N|O|1997-11-20|1997-11-28|1997-12-06|COLLECT COD|SHIP|s haggle carefully about the fur| +2120|128625|3650|6|6|9921.72|0.09|0.08|N|O|1997-10-04|1997-12-17|1997-10-17|TAKE BACK RETURN|MAIL|rding to the furiously stealthy | +2121|64542|7049|1|39|58755.06|0.06|0.05|N|O|1998-03-24|1998-03-08|1998-03-27|DELIVER IN PERSON|SHIP| regular deposits nag qu| +2122|4173|4174|1|3|3231.51|0.08|0.01|N|O|1997-02-15|1997-02-22|1997-03-09|DELIVER IN PERSON|REG AIR|de of the slyly bold decoys. car| +2123|151879|9425|1|45|86889.15|0.05|0.02|N|O|1998-11-12|1998-09-23|1998-12-04|TAKE BACK RETURN|RAIL|fully. carefully pend| +2123|15828|5829|2|21|36620.22|0.01|0.01|N|O|1998-10-16|1998-10-15|1998-11-15|DELIVER IN PERSON|TRUCK|the carefully unusu| +2124|39300|4307|1|40|49572.00|0.08|0.05|R|F|1994-08-23|1994-07-30|1994-09-19|COLLECT COD|RAIL|l theodolites cajole furi| +2124|111429|6452|2|43|61938.06|0.02|0.08|R|F|1994-07-14|1994-08-06|1994-07-25|COLLECT COD|MAIL|slyly among the | +2124|177759|5311|3|30|55102.50|0.05|0.01|R|F|1994-09-10|1994-08-17|1994-10-06|DELIVER IN PERSON|FOB|ar, final requests among the blithel| +2124|193967|3968|4|20|41219.20|0.01|0.03|R|F|1994-08-20|1994-09-10|1994-08-31|NONE|RAIL|rts cajole slyly. f| +2125|9296|1797|1|37|44595.73|0.04|0.02|A|F|1993-06-18|1993-05-25|1993-07-13|COLLECT COD|TRUCK|refully theodolite| +2126|131887|1888|1|11|21107.68|0.03|0.01|N|O|1996-02-26|1996-01-31|1996-03-22|TAKE BACK RETURN|MAIL|. carefully unusual ex| +2126|8799|6300|2|36|61480.44|0.09|0.01|N|O|1995-12-29|1996-01-19|1996-01-20|NONE|FOB|s wake according to the requ| +2126|71185|6200|3|28|32373.04|0.05|0.02|N|O|1995-12-05|1996-01-23|1995-12-27|NONE|MAIL| Tiresias-- ironic theodolit| +2126|196736|9256|4|46|84305.58|0.03|0.03|N|O|1995-12-22|1996-02-04|1996-01-06|TAKE BACK RETURN|RAIL|ter the even request| +2127|53916|1432|1|20|37398.20|0.07|0.08|N|O|1996-08-25|1996-08-07|1996-09-14|COLLECT COD|SHIP|platelets haggle blithely about the | +2152|154294|4295|1|38|51235.02|0.09|0.06|N|O|1998-06-15|1998-05-31|1998-06-23|COLLECT COD|AIR|y pending deposits? quickly f| +2152|12229|7232|2|11|12553.42|0.06|0.04|N|O|1998-06-19|1998-05-29|1998-07-17|NONE|FOB|uests. dependencies print slyly furious| +2152|117990|5524|3|44|88351.56|0.09|0.01|N|O|1998-05-09|1998-05-25|1998-06-06|DELIVER IN PERSON|AIR|is must have to affix blith| +2152|55929|5930|4|41|77281.72|0.05|0.01|N|O|1998-06-19|1998-06-06|1998-07-18|COLLECT COD|MAIL| even requests wake | +2152|194045|4046|5|34|38727.36|0.01|0.00|N|O|1998-06-17|1998-05-03|1998-06-21|DELIVER IN PERSON|SHIP|tes. furiously regular packages integra| +2153|17041|4545|1|15|14370.60|0.06|0.04|A|F|1993-08-22|1993-09-03|1993-09-12|DELIVER IN PERSON|SHIP|nal foxes ha| +2153|193330|8369|2|19|27043.27|0.08|0.02|R|F|1993-08-10|1993-08-05|1993-09-04|NONE|TRUCK|ounts. regular reques| +2153|86804|1821|3|15|26862.00|0.03|0.04|A|F|1993-08-16|1993-08-27|1993-08-28|DELIVER IN PERSON|MAIL|are slyly a| +2153|103043|3044|4|18|18828.72|0.10|0.00|R|F|1993-09-26|1993-07-30|1993-10-05|COLLECT COD|TRUCK|eep furiously regular pinto beans. final, | +2153|32206|4710|5|23|26178.60|0.08|0.01|A|F|1993-06-16|1993-09-12|1993-06-20|NONE|MAIL|nts affix alo| +2153|75029|2551|6|7|7028.14|0.01|0.04|A|F|1993-08-30|1993-09-08|1993-09-27|DELIVER IN PERSON|AIR|eposits are furiously. quickly un| +2153|10465|7969|7|33|45390.18|0.09|0.05|R|F|1993-08-03|1993-09-02|1993-08-11|NONE|RAIL| ideas. even re| +2154|68634|1141|1|22|35257.86|0.05|0.00|N|O|1996-06-09|1996-05-23|1996-07-07|DELIVER IN PERSON|TRUCK|ncies boost carefully. excuses haggle pendi| +2154|125322|5323|2|7|9431.24|0.08|0.07|N|O|1996-05-02|1996-06-04|1996-05-09|DELIVER IN PERSON|SHIP|nic, bold instructions| +2154|85162|5163|3|37|42444.92|0.04|0.07|N|O|1996-07-04|1996-06-23|1996-07-08|NONE|SHIP|l accounts. even | +2154|115481|504|4|47|70334.56|0.10|0.06|N|O|1996-06-09|1996-06-11|1996-06-29|NONE|REG AIR|ng the slyly fluffy reques| +2155|88565|8566|1|14|21749.84|0.03|0.00|N|O|1997-03-10|1997-04-20|1997-04-05|DELIVER IN PERSON|TRUCK|deposits. slyly regular deposits alongs| +2155|97683|7684|2|10|16806.80|0.08|0.02|N|O|1997-03-13|1997-04-20|1997-03-19|NONE|SHIP|iously after the blithely regular | +2155|155828|8344|3|9|16954.38|0.06|0.04|N|O|1997-05-26|1997-04-12|1997-06-23|DELIVER IN PERSON|TRUCK|unusual packages haggle care| +2155|195983|1022|4|16|33263.68|0.00|0.07|N|O|1997-06-02|1997-05-20|1997-06-03|DELIVER IN PERSON|AIR| final orbits. even t| +2155|77970|5492|5|21|40907.37|0.04|0.06|N|O|1997-04-09|1997-04-07|1997-05-05|COLLECT COD|FOB|ccounts. quickly final| +2155|32952|7959|6|47|88592.65|0.01|0.03|N|O|1997-02-27|1997-05-17|1997-03-26|TAKE BACK RETURN|REG AIR|. final, busy excuses slee| +2156|43960|6465|1|12|22847.52|0.04|0.04|R|F|1993-02-11|1993-01-13|1993-02-24|TAKE BACK RETURN|TRUCK|es sleep carefully about the | +2156|34712|7216|2|14|23053.94|0.07|0.07|R|F|1992-12-04|1993-01-11|1992-12-09|TAKE BACK RETURN|AIR|, special packages s| +2156|187910|429|3|40|79916.40|0.09|0.02|A|F|1993-01-01|1992-11-26|1993-01-16|DELIVER IN PERSON|SHIP|lphins. special instructions sleep furio| +2156|194840|7360|4|38|73523.92|0.07|0.06|A|F|1993-01-08|1992-11-21|1993-01-21|COLLECT COD|REG AIR|even platelets. requests hagg| +2157|169149|9150|1|38|46289.32|0.01|0.00|N|O|1996-02-21|1996-03-20|1996-03-16|COLLECT COD|RAIL|dependencie| +2157|76202|1217|2|20|23564.00|0.02|0.02|N|O|1996-03-28|1996-03-04|1996-04-21|DELIVER IN PERSON|MAIL|ts wake sly| +2157|118748|3771|3|43|75969.82|0.02|0.03|N|O|1996-05-06|1996-02-23|1996-05-20|NONE|MAIL|ites wake slyly about t| +2158|69211|4224|1|44|51929.24|0.03|0.00|R|F|1993-10-23|1993-09-13|1993-10-25|DELIVER IN PERSON|SHIP|ter the regul| +2158|16133|1136|2|38|39866.94|0.05|0.08|R|F|1993-09-08|1993-09-11|1993-09-30|COLLECT COD|FOB|y express requests affix. ca| +2158|141809|4324|3|2|3701.60|0.07|0.05|R|F|1993-07-29|1993-09-11|1993-08-11|DELIVER IN PERSON|TRUCK|ckly. foxes solve blithely. ironic theodo| +2158|168919|1436|4|36|71564.76|0.08|0.02|A|F|1993-09-28|1993-08-16|1993-10-20|DELIVER IN PERSON|AIR|ts. furiously regular instr| +2158|14374|1878|5|47|60553.39|0.04|0.03|R|F|1993-09-22|1993-08-02|1993-10-20|NONE|AIR|ironic frays wake. bl| +2158|175642|8160|6|26|44658.64|0.01|0.08|R|F|1993-08-01|1993-09-22|1993-08-03|COLLECT COD|RAIL| beans. regular theodolites wake according | +2158|6078|3579|7|8|7872.56|0.02|0.05|R|F|1993-09-19|1993-08-26|1993-09-20|TAKE BACK RETURN|FOB|ly ironic p| +2159|136704|9218|1|11|19147.70|0.02|0.08|N|O|1997-08-29|1997-07-12|1997-09-13|COLLECT COD|MAIL| attainments across t| +2159|169046|1563|2|15|16725.60|0.10|0.00|N|O|1997-09-01|1997-09-08|1997-09-26|TAKE BACK RETURN|SHIP|s. carefully ironic deposits sl| +2159|155523|554|3|18|28413.36|0.10|0.08|N|O|1997-07-20|1997-07-17|1997-08-03|NONE|REG AIR|counts. slyly final i| +2159|67875|382|4|32|58971.84|0.08|0.05|N|O|1997-06-24|1997-08-05|1997-07-11|DELIVER IN PERSON|RAIL|old express, ironic i| +2184|116262|3796|1|41|52408.66|0.02|0.08|A|F|1993-01-22|1992-11-20|1993-02-10|DELIVER IN PERSON|MAIL|latelets. quickly even depo| +2184|199841|7399|2|19|36875.96|0.03|0.08|R|F|1992-10-21|1992-11-01|1992-10-26|TAKE BACK RETURN|TRUCK| wake; furiously regul| +2184|127623|2648|3|22|36313.64|0.04|0.04|A|F|1992-12-06|1992-10-29|1992-12-09|NONE|RAIL|against the silent, bold request| +2184|143629|8658|4|37|61886.94|0.08|0.06|A|F|1993-01-17|1992-11-16|1993-01-18|NONE|RAIL|sts unwind eve| +2184|166773|1806|5|43|79110.11|0.07|0.07|A|F|1992-12-26|1992-11-25|1993-01-09|COLLECT COD|MAIL|al courts haggle sl| +2185|190363|364|1|31|45054.16|0.01|0.00|A|F|1993-02-08|1993-01-19|1993-02-25|COLLECT COD|RAIL|the asymptotes. furiously ironic pa| +2185|30028|7538|2|32|30656.64|0.03|0.08|A|F|1993-02-11|1993-01-16|1993-02-14|NONE|TRUCK|es cajole slyly ironic packages. ca| +2185|75735|5736|3|44|75272.12|0.03|0.01|A|F|1993-01-10|1993-01-23|1993-01-30|DELIVER IN PERSON|RAIL| haggle furiously after the stealthily b| +2185|71997|7012|4|44|86635.56|0.08|0.02|A|F|1992-12-19|1993-01-17|1992-12-29|NONE|MAIL|ously ironic foxes haggle. f| +2185|46200|8705|5|3|3438.60|0.06|0.03|R|F|1993-02-05|1993-01-18|1993-02-24|TAKE BACK RETURN|REG AIR| requests are fluff| +2185|70925|5940|6|35|66357.20|0.03|0.07|A|F|1993-02-23|1992-12-08|1993-03-08|DELIVER IN PERSON|REG AIR|ironic pinto beans accord| +2186|68655|6174|1|39|63322.35|0.00|0.04|N|O|1998-02-20|1998-01-16|1998-03-20|DELIVER IN PERSON|RAIL|pending accounts about the carefully ironi| +2186|69370|1877|2|27|36162.99|0.02|0.07|N|O|1997-12-16|1997-12-14|1998-01-02|DELIVER IN PERSON|REG AIR|. evenly fina| +2187|169893|7442|1|9|17666.01|0.09|0.06|N|O|1997-01-02|1997-02-25|1997-01-22|NONE|MAIL|he silent, ruthless inst| +2187|190637|5676|2|42|72560.46|0.01|0.04|N|O|1997-02-19|1997-01-13|1997-03-16|DELIVER IN PERSON|AIR|s hinder blithely. slyly ironic dugouts wa| +2187|25829|834|3|7|12283.74|0.07|0.08|N|O|1997-02-28|1997-02-19|1997-03-05|NONE|REG AIR| poach. slyly final accounts cajole sly| +2188|33939|6443|1|50|93646.50|0.10|0.08|R|F|1993-06-27|1993-05-25|1993-07-21|COLLECT COD|SHIP|ully. slyly regular theo| +2188|8188|3189|2|31|33981.58|0.00|0.06|R|F|1993-06-04|1993-06-12|1993-06-27|NONE|TRUCK|slyly express pinto beans. slyly unusual| +2188|8409|5910|3|37|48743.80|0.10|0.05|R|F|1993-06-28|1993-07-09|1993-07-10|NONE|FOB|t the ideas. furiously ironic excuses a| +2189|52586|2587|1|6|9231.48|0.02|0.00|N|O|1997-06-06|1997-06-23|1997-06-09|DELIVER IN PERSON|FOB|efully ironic theodoli| +2189|4637|9638|2|8|12333.04|0.01|0.00|N|O|1997-07-04|1997-05-15|1997-07-19|DELIVER IN PERSON|REG AIR|egular instructions. careful| +2189|131968|4482|3|13|25999.48|0.00|0.07|N|O|1997-06-24|1997-05-10|1997-07-16|COLLECT COD|AIR|foxes are above th| +2189|173359|911|4|14|20052.90|0.04|0.00|N|O|1997-06-15|1997-05-18|1997-07-13|COLLECT COD|RAIL|ly special foxes shall sl| +2189|37006|2013|5|16|15088.00|0.01|0.03|N|O|1997-07-05|1997-05-08|1997-07-15|COLLECT COD|FOB|xes. accou| +2190|146793|6794|1|26|47834.54|0.05|0.05|N|O|1996-11-03|1996-10-10|1996-11-18|NONE|REG AIR|c deposits | +2190|147860|7861|2|25|47696.50|0.07|0.07|N|O|1996-10-21|1996-12-01|1996-11-14|DELIVER IN PERSON|REG AIR|ites cajole. sl| +2191|96350|1369|1|27|36351.45|0.03|0.00|R|F|1994-01-01|1993-12-26|1994-01-03|DELIVER IN PERSON|MAIL|ts haggle: slyly special| +2191|145627|656|2|4|6690.48|0.08|0.00|R|F|1993-12-13|1993-11-08|1993-12-17|TAKE BACK RETURN|REG AIR| furiously spe| +2191|146967|1996|3|8|16111.68|0.05|0.03|R|F|1993-12-19|1993-12-10|1994-01-14|TAKE BACK RETURN|REG AIR|ully furious dolphins. carefully even| +2216|26844|9347|1|25|44271.00|0.01|0.08|N|F|1995-06-02|1995-07-04|1995-06-29|DELIVER IN PERSON|FOB|ly ironic ideas sleep flu| +2216|151060|3576|2|28|31109.68|0.07|0.03|N|F|1995-06-13|1995-05-18|1995-07-09|DELIVER IN PERSON|AIR|sly ironic depo| +2216|50128|129|3|10|10781.20|0.04|0.04|N|O|1995-06-19|1995-06-10|1995-07-01|COLLECT COD|FOB|ending packages cajole slyly. furious| +2216|100175|2686|4|28|32904.76|0.02|0.03|N|O|1995-08-04|1995-06-14|1995-09-01|DELIVER IN PERSON|FOB|ding packages. regular, dogged| +2216|38188|3195|5|14|15766.52|0.10|0.04|N|O|1995-07-15|1995-06-25|1995-07-16|NONE|TRUCK|he close, even deposits a| +2216|13732|3733|6|40|65829.20|0.01|0.05|A|F|1995-05-29|1995-05-29|1995-06-07|NONE|RAIL|ccounts. quick| +2216|183467|8504|7|16|24807.36|0.08|0.07|A|F|1995-04-22|1995-06-09|1995-05-13|COLLECT COD|REG AIR|oxes boost quickly furiousl| +2217|120502|3015|1|47|71557.50|0.01|0.07|N|O|1997-01-12|1997-01-22|1997-02-03|TAKE BACK RETURN|FOB|ke carefully. furiously iro| +2217|75421|2943|2|42|58649.64|0.10|0.00|N|O|1996-11-30|1997-01-22|1996-12-08|TAKE BACK RETURN|REG AIR|deposits. slyly brave requ| +2218|125185|5186|1|20|24203.60|0.05|0.00|N|O|1995-08-04|1995-07-20|1995-08-15|COLLECT COD|SHIP|breach carefully about the excuses. ca| +2218|173527|3528|2|43|68822.36|0.01|0.03|N|O|1995-07-27|1995-08-13|1995-08-20|COLLECT COD|RAIL|ttainments are acr| +2218|56686|9192|3|22|36138.96|0.04|0.01|N|O|1995-08-09|1995-07-27|1995-08-16|DELIVER IN PERSON|TRUCK| furiously. regular dep| +2219|164615|2164|1|42|70543.62|0.08|0.02|N|O|1997-11-25|1997-10-11|1997-11-30|NONE|MAIL|thely slyly | +2219|78730|6252|2|39|66640.47|0.00|0.01|N|O|1997-12-04|1997-11-22|1997-12-10|NONE|RAIL|ely slyly express ideas. ca| +2219|13073|3074|3|9|8874.63|0.04|0.04|N|O|1997-12-02|1997-10-10|1997-12-23|NONE|TRUCK|nal accounts bo| +2220|43286|5791|1|15|18439.20|0.07|0.06|R|F|1995-02-02|1995-03-12|1995-02-26|COLLECT COD|REG AIR|posits integrate. ironic theodolites | +2220|92075|7094|2|31|33079.17|0.05|0.02|A|F|1995-03-30|1995-04-24|1995-04-23|NONE|TRUCK|ests wake about the ideas?| +2220|97236|7237|3|41|50562.43|0.08|0.03|A|F|1995-04-14|1995-04-23|1995-04-22|COLLECT COD|RAIL|ly regular packages use deposits.| +2221|131356|1357|1|25|34683.75|0.08|0.06|N|O|1996-12-25|1996-12-14|1997-01-10|COLLECT COD|REG AIR|ns sleep along t| +2222|41834|6843|1|49|87015.67|0.04|0.02|R|F|1993-05-21|1993-05-11|1993-06-02|DELIVER IN PERSON|TRUCK| beans cajole theodolites. blithely ir| +2222|91772|1773|2|39|68787.03|0.01|0.05|R|F|1993-04-12|1993-04-23|1993-04-22|COLLECT COD|REG AIR|e furiously express accounts boost ex| +2222|8991|6492|3|12|22799.88|0.06|0.01|A|F|1993-05-14|1993-04-16|1993-06-10|TAKE BACK RETURN|RAIL| deposits. deposits wake a| +2222|102276|7297|4|45|57522.15|0.02|0.04|A|F|1993-04-21|1993-04-30|1993-04-28|DELIVER IN PERSON|RAIL|cording to the even, close deposits boost a| +2223|143206|8235|1|41|51217.20|0.09|0.01|N|O|1996-09-07|1996-08-21|1996-09-18|DELIVER IN PERSON|FOB| pending theodol| +2223|53322|3323|2|46|58664.72|0.08|0.08|N|O|1996-07-21|1996-09-07|1996-08-08|NONE|MAIL| cajole along the sly| +2223|177271|7272|3|50|67413.50|0.03|0.07|N|O|1996-08-14|1996-09-12|1996-09-07|TAKE BACK RETURN|FOB|egular frets. furiously special theodolit| +2223|184788|7307|4|21|39328.38|0.07|0.06|N|O|1996-09-04|1996-09-18|1996-09-16|DELIVER IN PERSON|REG AIR|lar deposits are | +2223|124527|9552|5|45|69818.40|0.04|0.01|N|O|1996-08-08|1996-09-16|1996-09-03|TAKE BACK RETURN|TRUCK|quickly exp| +2223|119253|4276|6|10|12722.50|0.02|0.04|N|O|1996-09-19|1996-09-30|1996-10-14|COLLECT COD|REG AIR|out the blithely regular deposits.| +2223|75816|8324|7|17|30460.77|0.08|0.03|N|O|1996-10-26|1996-08-30|1996-11-21|DELIVER IN PERSON|TRUCK|s cajole fluffily | +2248|34554|7058|1|5|7442.75|0.07|0.05|R|F|1993-07-08|1993-08-08|1993-07-11|NONE|FOB|ly, bold pinto beans. even,| +2248|138347|861|2|38|52642.92|0.01|0.05|A|F|1993-07-29|1993-08-02|1993-08-02|DELIVER IN PERSON|FOB|above the slyly express depos| +2248|197429|9949|3|49|74794.58|0.05|0.05|A|F|1993-09-10|1993-08-13|1993-09-18|NONE|TRUCK|xes sleep carefully across t| +2248|182941|5460|4|23|46550.62|0.09|0.00|R|F|1993-08-15|1993-08-14|1993-08-16|TAKE BACK RETURN|RAIL|al foxes haggle about the packages. careful| +2248|85707|3232|5|40|67708.00|0.01|0.01|R|F|1993-06-07|1993-08-27|1993-06-15|TAKE BACK RETURN|RAIL|t carefully across t| +2249|50695|8211|1|21|34559.49|0.06|0.02|N|O|1996-06-25|1996-05-07|1996-07-10|DELIVER IN PERSON|FOB|carefully special, reg| +2249|20905|5910|2|36|65732.40|0.09|0.08|N|O|1996-04-04|1996-04-15|1996-04-25|NONE|RAIL|usly regular instructions a| +2249|141930|4445|3|13|25635.09|0.05|0.03|N|O|1996-05-31|1996-05-12|1996-06-19|TAKE BACK RETURN|REG AIR|ans. slyly pending ideas impress | +2249|3429|5930|4|2|2664.84|0.06|0.08|N|O|1996-05-09|1996-05-11|1996-05-21|NONE|TRUCK|ven packages are blithely. carefully bold| +2249|25321|326|5|6|7477.92|0.00|0.06|N|O|1996-04-09|1996-04-17|1996-04-14|TAKE BACK RETURN|TRUCK|sits detect at | +2249|161657|6690|6|37|63590.05|0.06|0.01|N|O|1996-04-26|1996-05-10|1996-05-26|DELIVER IN PERSON|RAIL| cajole fluffily about the slyly iron| +2250|70119|7641|1|37|40297.07|0.08|0.02|N|O|1995-11-13|1995-11-06|1995-11-21|COLLECT COD|MAIL|lithely. furiously | +2250|79496|7018|2|5|7377.45|0.06|0.00|N|O|1995-10-11|1995-11-17|1995-10-30|COLLECT COD|RAIL| haggle furiously against the ca| +2250|76367|8875|3|11|14776.96|0.08|0.03|N|O|1995-11-07|1995-12-28|1995-11-10|DELIVER IN PERSON|SHIP| attainments haggle finally bold deposi| +2250|88440|949|4|36|51423.84|0.10|0.05|N|O|1995-10-20|1995-12-09|1995-11-07|COLLECT COD|REG AIR|counts dou| +2250|8587|6088|5|18|26920.44|0.10|0.07|N|O|1995-11-04|1995-12-07|1995-11-05|NONE|AIR|lyly against the c| +2251|14796|2300|1|1|1710.79|0.00|0.02|N|F|1995-06-11|1995-05-09|1995-06-26|TAKE BACK RETURN|MAIL|inst the even requests na| +2251|61162|8681|2|5|5615.80|0.03|0.02|A|F|1995-04-05|1995-04-30|1995-04-26|DELIVER IN PERSON|RAIL| furiously ironic deposits w| +2251|148272|8273|3|3|3960.81|0.04|0.03|A|F|1995-05-11|1995-05-20|1995-05-30|COLLECT COD|TRUCK|. unusual pinto beans after th| +2252|112588|2589|1|26|41615.08|0.03|0.05|N|O|1997-03-11|1997-01-24|1997-03-12|NONE|AIR|g carefully carefully express pac| +2252|57356|2367|2|7|9193.45|0.03|0.05|N|O|1996-12-27|1997-02-24|1997-01-01|DELIVER IN PERSON|SHIP|special packages haggle carefully carefully| +2253|60575|576|1|35|53744.95|0.00|0.04|N|O|1998-06-25|1998-08-30|1998-07-15|TAKE BACK RETURN|RAIL|longside of the slyly special | +2253|76118|1133|2|27|29540.97|0.05|0.05|N|O|1998-09-10|1998-07-29|1998-10-10|DELIVER IN PERSON|RAIL|y: idle pinto beans dazzle quickly | +2253|113309|8332|3|9|11900.70|0.03|0.01|N|O|1998-08-05|1998-09-01|1998-08-18|COLLECT COD|SHIP| regular p| +2254|147824|2853|1|40|74872.80|0.09|0.08|A|F|1994-01-02|1993-12-05|1994-01-14|DELIVER IN PERSON|SHIP|r requests--| +2254|66269|1282|2|22|27175.72|0.07|0.03|A|F|1994-02-04|1993-11-30|1994-02-05|NONE|SHIP|s sleep after the blithely i| +2254|181002|1003|3|18|19494.00|0.06|0.05|R|F|1993-11-10|1994-01-15|1993-11-14|NONE|MAIL|al, bold theodolites. carefu| +2254|86530|6531|4|11|16681.83|0.08|0.06|R|F|1993-12-22|1993-12-17|1994-01-05|DELIVER IN PERSON|TRUCK|hely ironic foxes integrate flu| +2254|94322|9341|5|42|55285.44|0.08|0.01|A|F|1994-01-05|1994-01-01|1994-01-28|COLLECT COD|FOB|the sentiments. furiously iron| +2254|69672|9673|6|8|13133.36|0.09|0.05|R|F|1993-12-23|1994-01-15|1994-01-08|NONE|FOB|ts nag regular accoun| +2254|164464|2013|7|3|4585.38|0.00|0.02|R|F|1994-01-23|1993-12-03|1994-02-01|DELIVER IN PERSON|TRUCK|al instructions-- excuses haggle alway| +2255|140359|360|1|42|58772.70|0.08|0.00|R|F|1992-02-21|1992-04-08|1992-03-09|NONE|AIR|e fluffily. blithe| +2255|199325|4364|2|48|68367.36|0.05|0.08|A|F|1992-02-02|1992-04-01|1992-02-10|DELIVER IN PERSON|SHIP|un accounts. | +2255|54102|1618|3|45|47524.50|0.05|0.00|R|F|1992-03-28|1992-03-27|1992-04-07|TAKE BACK RETURN|FOB| the furiously regular excuses. unusu| +2255|84376|4377|4|18|24486.66|0.10|0.04|R|F|1992-04-02|1992-03-08|1992-04-07|TAKE BACK RETURN|RAIL|ular requests. quickly| +2255|106567|9078|5|8|12588.48|0.02|0.05|R|F|1992-05-22|1992-04-22|1992-05-30|NONE|RAIL| around the exp| +2255|61641|6654|6|43|68913.52|0.04|0.02|R|F|1992-05-30|1992-04-12|1992-06-23|COLLECT COD|SHIP| regular accounts wake along the per| +2255|190050|2570|7|36|41041.80|0.02|0.06|A|F|1992-03-11|1992-04-29|1992-03-30|NONE|AIR|ccounts. unusual requests sleep careful| +2280|161038|3555|1|10|10990.30|0.06|0.03|N|O|1996-09-22|1996-10-11|1996-10-06|DELIVER IN PERSON|MAIL|cajole fluffily ir| +2280|154012|4013|2|6|6396.06|0.02|0.03|N|O|1996-11-12|1996-11-02|1996-12-07|NONE|SHIP|sy sauternes wake s| +2280|69546|9547|3|27|40919.58|0.00|0.03|N|O|1996-10-31|1996-11-06|1996-11-17|NONE|AIR|ly unusual idea| +2280|49444|9445|4|48|66885.12|0.10|0.05|N|O|1996-10-25|1996-10-13|1996-11-17|NONE|RAIL|efully regular pinto beans. | +2280|185|7686|5|20|21703.60|0.06|0.00|N|O|1996-10-11|1996-10-04|1996-10-27|COLLECT COD|REG AIR|ly against the carefully i| +2280|101361|3872|6|22|29971.92|0.03|0.07|N|O|1996-11-18|1996-09-18|1996-12-15|COLLECT COD|MAIL|bits wake blithely after the furiously | +2281|174390|9425|1|29|42467.31|0.03|0.03|R|F|1994-02-20|1994-02-15|1994-03-13|DELIVER IN PERSON|SHIP|platelets. instructions wake| +2281|162968|5485|2|8|16247.68|0.02|0.05|R|F|1994-01-26|1994-02-11|1994-02-20|NONE|RAIL|ular ideas. bold pinto beans detect| +2281|192830|388|3|8|15382.64|0.02|0.00|A|F|1994-04-15|1994-03-13|1994-05-14|DELIVER IN PERSON|MAIL| blithely ironic requests against| +2281|88142|5667|4|4|4520.56|0.02|0.04|A|F|1994-04-27|1994-03-29|1994-05-05|TAKE BACK RETURN|MAIL|t the caref| +2281|198295|815|5|32|44585.28|0.07|0.07|A|F|1994-04-09|1994-03-03|1994-04-30|COLLECT COD|SHIP| sleep closely. blithely ironic inst| +2282|114691|2225|1|30|51170.70|0.06|0.00|N|O|1997-07-11|1997-05-11|1997-08-01|COLLECT COD|MAIL|ke regular asym| +2282|198349|8350|2|47|68024.98|0.09|0.08|N|O|1997-07-04|1997-07-06|1997-07-25|COLLECT COD|AIR|inal platelets. blithely regular accounts a| +2282|37410|7411|3|19|25600.79|0.08|0.01|N|O|1997-06-06|1997-05-07|1997-06-10|DELIVER IN PERSON|MAIL|en pinto beans. even exc| +2282|136284|6285|4|43|56772.04|0.00|0.05|N|O|1997-07-04|1997-05-16|1997-07-15|TAKE BACK RETURN|TRUCK|egrate bli| +2283|169118|9119|1|15|17806.65|0.06|0.03|N|O|1997-06-22|1997-05-31|1997-07-20|DELIVER IN PERSON|SHIP|rges wake al| +2283|164869|9902|2|18|34809.48|0.08|0.00|N|O|1997-05-21|1997-06-05|1997-06-05|DELIVER IN PERSON|REG AIR|y bold requests sleep express package| +2283|149975|9976|3|49|99223.53|0.00|0.04|N|O|1997-04-29|1997-05-21|1997-05-27|DELIVER IN PERSON|TRUCK|cajole at the asym| +2283|13567|6069|4|37|54780.72|0.03|0.03|N|O|1997-05-05|1997-04-29|1997-05-07|DELIVER IN PERSON|AIR| express requests| +2284|28028|8029|1|48|45888.96|0.02|0.06|N|O|1996-06-16|1996-07-31|1996-06-19|NONE|TRUCK| pinto beans. accounts among | +2284|61402|6415|2|1|1363.40|0.02|0.00|N|O|1996-09-12|1996-08-29|1996-10-07|TAKE BACK RETURN|RAIL|ouches are after the| +2284|182852|7889|3|42|81263.70|0.06|0.01|N|O|1996-08-18|1996-08-21|1996-09-06|NONE|TRUCK|sly slyly pend| +2284|182440|4959|4|50|76122.00|0.03|0.03|N|O|1996-10-02|1996-08-04|1996-10-19|NONE|TRUCK| packages promise furio| +2284|59542|7058|5|22|33033.88|0.03|0.04|N|O|1996-08-09|1996-07-19|1996-08-14|DELIVER IN PERSON|TRUCK|g requests after the blithely special | +2284|114739|9762|6|9|15783.57|0.08|0.07|N|O|1996-08-13|1996-09-08|1996-09-01|NONE|TRUCK|ons across the regular excuse| +2284|17575|2578|7|42|62687.94|0.06|0.06|N|O|1996-09-25|1996-08-05|1996-10-06|NONE|TRUCK|lithely fluffily express instru| +2285|181691|1692|1|38|67362.22|0.00|0.08|N|O|1996-08-17|1996-05-30|1996-09-09|COLLECT COD|TRUCK|nts. quickly bold foxes alon| +2285|74505|4506|2|37|54741.50|0.03|0.06|N|O|1996-05-10|1996-07-05|1996-05-17|COLLECT COD|FOB|usly final asymptotes. final courts | +2286|37115|2122|1|15|15781.65|0.06|0.01|N|O|1997-01-22|1996-12-01|1997-02-10|COLLECT COD|AIR|. blithely ironic instructions use carefu| +2286|179389|4424|2|20|29367.60|0.09|0.02|N|O|1996-11-29|1996-11-16|1996-12-13|COLLECT COD|AIR| foxes nag about the slyly r| +2287|56529|6530|1|9|13369.68|0.06|0.03|N|O|1996-07-27|1996-08-30|1996-07-31|NONE|TRUCK|he slyly ironic instru| +2287|78448|3463|2|18|25675.92|0.00|0.08|N|O|1996-09-03|1996-08-18|1996-09-30|COLLECT COD|MAIL|ully regular pinto beans haggle | +2287|68723|3736|3|34|57518.48|0.08|0.06|N|O|1996-09-26|1996-08-27|1996-10-22|NONE|RAIL| accounts. excuses against the bl| +2312|53158|5664|1|29|32223.35|0.10|0.07|R|F|1993-04-13|1993-03-23|1993-05-07|COLLECT COD|MAIL| packages sleep carefully requests.| +2312|17499|2502|2|33|46744.17|0.10|0.05|R|F|1993-03-03|1993-04-29|1993-03-16|DELIVER IN PERSON|TRUCK|cial excuses unwind care| +2312|98552|3571|3|46|71325.30|0.07|0.04|R|F|1993-02-20|1993-04-04|1993-03-01|NONE|RAIL| the carefully ironi| +2312|148909|8910|4|19|37200.10|0.05|0.08|R|F|1993-05-15|1993-03-29|1993-06-02|COLLECT COD|MAIL|along the final deposits. slyl| +2313|39964|2468|1|16|30463.36|0.01|0.00|R|F|1992-09-14|1992-09-08|1992-10-07|TAKE BACK RETURN|SHIP|special waters wake slyly bo| +2313|62416|9935|2|50|68920.50|0.10|0.05|A|F|1992-11-14|1992-09-16|1992-11-20|TAKE BACK RETURN|AIR|furiously regular packages. fluffily iron| +2314|37345|7346|1|39|50011.26|0.00|0.06|N|O|1998-09-10|1998-07-16|1998-10-09|NONE|SHIP|ges use above the blithe| +2314|43564|6069|2|29|43719.24|0.03|0.04|N|O|1998-10-02|1998-08-15|1998-10-12|NONE|TRUCK|integrate according to the ir| +2314|178694|6246|3|13|23044.97|0.03|0.02|N|O|1998-09-27|1998-08-13|1998-10-13|NONE|SHIP|counts. special | +2315|171250|6285|1|7|9248.75|0.01|0.01|N|O|1996-03-09|1996-01-26|1996-03-19|NONE|TRUCK|ng the ironic ideas. quiet deposits boost| +2315|186025|3580|2|1|1111.02|0.10|0.04|N|O|1996-01-10|1996-02-03|1996-02-01|DELIVER IN PERSON|RAIL|gular dugouts doze after th| +2315|117548|5082|3|43|67318.22|0.05|0.01|N|O|1995-12-02|1996-01-01|1995-12-25|NONE|FOB| requests nag according t| +2315|25721|3228|4|33|54341.76|0.01|0.05|N|O|1995-12-12|1996-01-31|1995-12-24|COLLECT COD|MAIL|t the quickly regular | +2315|90892|3402|5|40|75315.60|0.02|0.02|N|O|1996-03-03|1996-01-31|1996-03-14|DELIVER IN PERSON|RAIL|ss packages boost car| +2315|10277|278|6|42|49865.34|0.08|0.05|N|O|1996-02-22|1996-02-12|1996-03-19|DELIVER IN PERSON|SHIP|nic excuses wake slyly accordi| +2315|113585|1119|7|4|6394.32|0.01|0.07|N|O|1995-11-19|1996-02-08|1995-12-14|NONE|RAIL|ual braids. pinto beans d| +2316|17866|5370|1|1|1783.86|0.02|0.06|N|O|1995-09-25|1995-10-08|1995-10-07|COLLECT COD|SHIP|wake slyly wi| +2316|58263|8264|2|49|59841.74|0.04|0.07|N|O|1995-11-08|1995-10-08|1995-11-28|DELIVER IN PERSON|TRUCK|are alongside of t| +2316|12609|113|3|26|39561.60|0.03|0.03|N|O|1995-11-01|1995-11-20|1995-11-29|TAKE BACK RETURN|FOB|silently. carefully unusual| +2316|103505|8526|4|40|60340.00|0.03|0.01|N|O|1995-12-21|1995-10-28|1996-01-06|COLLECT COD|MAIL|erve carefu| +2316|195277|7797|5|16|21956.32|0.09|0.08|N|O|1995-10-05|1995-10-18|1995-10-10|NONE|MAIL|refully under the blithely regular foxes.| +2316|11850|6853|6|28|49331.80|0.04|0.08|N|O|1995-12-15|1995-10-03|1995-12-21|TAKE BACK RETURN|MAIL|cording to the fluffily special| +2316|147935|5478|7|20|39658.60|0.10|0.07|N|O|1995-12-16|1995-11-04|1996-01-12|COLLECT COD|TRUCK|le carefully. | +2317|130021|2535|1|7|7357.14|0.05|0.04|N|O|1995-12-08|1996-02-03|1996-01-03|TAKE BACK RETURN|FOB|tions along the pending, pend| +2317|47872|2881|2|20|36397.40|0.04|0.07|N|O|1996-02-20|1996-02-04|1996-02-29|DELIVER IN PERSON|MAIL|al deposits. pending dep| +2317|173383|8418|3|43|62624.34|0.01|0.06|N|O|1996-03-16|1996-01-09|1996-04-02|NONE|RAIL|s eat carefully dolphins. slyly fin| +2318|77952|5474|1|29|55968.55|0.03|0.01|A|F|1993-09-18|1993-08-14|1993-09-27|NONE|MAIL|ffy requests are carefull| +2318|134017|9044|2|32|33632.32|0.10|0.00|R|F|1993-07-06|1993-07-26|1993-07-08|TAKE BACK RETURN|AIR| quickly ironic theodolites are. | +2319|168781|3814|1|32|59192.96|0.02|0.01|N|O|1997-01-16|1997-01-05|1997-01-31|DELIVER IN PERSON|AIR| regular platelets! pending, ir| +2319|96366|8876|2|27|36783.72|0.04|0.06|N|O|1997-01-06|1996-12-07|1997-01-29|TAKE BACK RETURN|AIR| deposits. | +2319|18780|3783|3|9|15289.02|0.04|0.06|N|O|1997-01-30|1996-12-29|1997-01-31|TAKE BACK RETURN|TRUCK|ess deposits dou| +2319|26234|3741|4|36|41768.28|0.05|0.06|N|O|1996-11-07|1997-01-11|1996-11-25|NONE|RAIL|s haggle according to the | +2319|107551|5082|5|16|24936.80|0.03|0.05|N|O|1997-01-07|1996-11-29|1997-01-13|DELIVER IN PERSON|REG AIR|carefully. pinto beans at | +2319|194884|7404|6|37|73218.56|0.08|0.02|N|O|1996-12-28|1997-01-04|1997-01-06|NONE|TRUCK|n deposits wake fluffily| +2319|198884|3923|7|23|45606.24|0.08|0.03|N|O|1997-02-06|1996-12-05|1997-02-26|COLLECT COD|REG AIR|al pinto beans haggle fluffily fi| +2344|31080|6087|1|1|1011.08|0.09|0.08|N|O|1996-05-27|1996-06-19|1996-06-03|NONE|RAIL| frays. bold, final ac| +2344|159221|4252|2|23|29445.06|0.02|0.01|N|O|1996-05-14|1996-06-06|1996-06-10|NONE|AIR|ounts about the blithely final requests sno| +2345|3591|6092|1|19|28397.21|0.09|0.03|N|O|1996-06-16|1996-06-03|1996-07-11|DELIVER IN PERSON|FOB|ld instructions sleep qui| +2345|142475|2476|2|14|21244.58|0.02|0.00|N|O|1996-05-06|1996-06-11|1996-05-26|DELIVER IN PERSON|TRUCK|ests boost-- even packages wake carefu| +2345|172022|2023|3|22|24068.44|0.06|0.01|N|O|1996-07-24|1996-06-20|1996-07-28|COLLECT COD|AIR|uriously-- fluffily| +2346|10071|7575|1|50|49053.50|0.07|0.01|R|F|1992-05-17|1992-05-12|1992-05-19|COLLECT COD|MAIL|ts should h| +2346|53671|3672|2|24|38992.08|0.08|0.00|R|F|1992-06-15|1992-06-21|1992-07-13|TAKE BACK RETURN|MAIL|g, regular | +2347|130326|2840|1|34|46114.88|0.10|0.01|R|F|1992-10-14|1992-09-19|1992-10-29|NONE|TRUCK|affix blithely spe| +2347|182670|5189|2|32|56085.44|0.03|0.02|R|F|1992-10-26|1992-10-19|1992-11-18|COLLECT COD|RAIL|efully even deposits across the blithely r| +2347|121883|9420|3|36|68575.68|0.09|0.01|R|F|1992-08-18|1992-08-25|1992-09-02|COLLECT COD|RAIL| beans was carefully atop the carefully eve| +2347|86724|9233|4|33|56453.76|0.04|0.00|R|F|1992-11-09|1992-09-13|1992-11-10|COLLECT COD|FOB|mong the special packages. furiously s| +2347|164258|1807|5|24|31734.00|0.05|0.03|R|F|1992-10-03|1992-08-26|1992-10-06|NONE|SHIP|special, ironic accounts. fluff| +2348|151978|7009|1|8|16239.76|0.06|0.01|R|F|1993-02-11|1993-04-01|1993-03-03|DELIVER IN PERSON|RAIL|y players against| +2349|164034|4035|1|43|47215.29|0.05|0.08|R|F|1992-04-12|1992-04-02|1992-04-17|NONE|SHIP| are after the carefully regular courts| +2349|108426|3447|2|21|30122.82|0.03|0.02|R|F|1992-04-05|1992-02-25|1992-04-23|TAKE BACK RETURN|SHIP|pades above the| +2349|100805|3316|3|38|68620.40|0.04|0.03|A|F|1992-02-24|1992-04-04|1992-02-27|NONE|MAIL|ven excuses.| +2350|153571|3572|1|20|32491.40|0.10|0.07|A|F|1993-09-05|1993-09-21|1993-09-21|NONE|SHIP|ts wake furiously regular | +2350|56010|3526|2|2|1932.02|0.02|0.08|R|F|1993-10-16|1993-08-24|1993-10-24|COLLECT COD|AIR| ironic foxes. blithely| +2350|148088|5631|3|3|3408.24|0.07|0.07|R|F|1993-09-26|1993-09-07|1993-10-09|NONE|AIR|ven ideas. blithely ironic accounts d| +2350|103130|661|4|3|3399.39|0.07|0.08|R|F|1993-10-10|1993-10-11|1993-10-26|DELIVER IN PERSON|SHIP|atelets; furiously ironic packag| +2350|105246|5247|5|26|32532.24|0.04|0.07|R|F|1993-09-22|1993-09-23|1993-10-12|NONE|TRUCK|ld excuses. slyly ironic account| +2351|103214|745|1|24|29213.04|0.03|0.05|N|O|1996-05-14|1996-03-25|1996-05-28|NONE|AIR|ic instructions detect furiousl| +2351|110912|8446|2|26|49995.66|0.09|0.02|N|O|1996-05-14|1996-04-05|1996-05-31|TAKE BACK RETURN|TRUCK|the carefully final accounts cajole| +2376|132079|2080|1|44|48887.08|0.10|0.01|R|F|1993-02-01|1993-02-06|1993-02-12|DELIVER IN PERSON|REG AIR|y regular theodolites. fluffily quiet | +2376|50152|7668|2|10|11021.50|0.01|0.03|A|F|1993-01-14|1993-01-31|1993-01-19|TAKE BACK RETURN|FOB| about the final packages. bold,| +2376|98447|957|3|49|70826.56|0.10|0.00|R|F|1993-01-03|1993-03-24|1993-01-08|DELIVER IN PERSON|TRUCK|arefully unusual foxes sleep at the specia| +2376|185766|5767|4|44|81477.44|0.09|0.05|R|F|1993-01-22|1993-02-07|1993-02-18|COLLECT COD|AIR|y express grouches a| +2376|159610|9611|5|14|23374.54|0.10|0.05|A|F|1993-02-01|1993-03-07|1993-02-28|COLLECT COD|REG AIR|quickly pending inst| +2376|154840|7356|6|44|83372.96|0.00|0.00|R|F|1993-01-23|1993-02-20|1993-02-01|COLLECT COD|RAIL|ideas cajole quickly regular th| +2377|158078|3109|1|6|6816.42|0.00|0.02|N|O|1997-01-17|1996-12-05|1997-02-13|TAKE BACK RETURN|REG AIR|inal packages ar| +2378|70446|2954|1|13|18413.72|0.01|0.08|N|O|1995-11-03|1995-11-11|1995-11-30|COLLECT COD|REG AIR|eep slyly s| +2379|173250|8285|1|25|33081.25|0.06|0.01|A|F|1992-07-12|1992-05-12|1992-07-21|TAKE BACK RETURN|REG AIR|ic foxes sleep furiously about| +2379|6336|8837|2|2|2484.66|0.04|0.07|A|F|1992-04-25|1992-06-29|1992-05-09|NONE|FOB|ngside of th| +2379|75256|271|3|39|48018.75|0.01|0.08|R|F|1992-07-15|1992-06-18|1992-07-22|TAKE BACK RETURN|RAIL|use about the carefully ex| +2380|38222|5732|1|7|8121.54|0.02|0.07|N|O|1998-04-15|1998-04-08|1998-05-04|NONE|MAIL|arefully bra| +2380|186957|1994|2|23|47010.85|0.05|0.01|N|O|1998-04-15|1998-03-21|1998-05-08|NONE|RAIL|e stealthy, ironic in| +2381|89721|2230|1|1|1710.72|0.10|0.05|R|F|1995-02-24|1995-03-30|1995-03-23|NONE|REG AIR|s! blithely regu| +2381|128309|822|2|26|34769.80|0.03|0.04|R|F|1995-04-04|1995-04-01|1995-04-20|DELIVER IN PERSON|SHIP|sits. waters haggle blith| +2381|79827|9828|3|28|50590.96|0.07|0.08|R|F|1995-04-17|1995-04-13|1995-05-15|TAKE BACK RETURN|TRUCK|according to the carefully regular| +2381|50024|7540|4|16|15584.32|0.09|0.01|N|F|1995-05-27|1995-04-10|1995-06-22|TAKE BACK RETURN|AIR|gular deposits. regular | +2382|105398|419|1|28|39294.92|0.08|0.07|R|F|1994-11-13|1994-11-10|1994-11-29|NONE|TRUCK|cial accounts boost along the carefully s| +2382|20976|3479|2|8|15175.76|0.06|0.05|R|F|1994-11-16|1994-11-09|1994-11-21|DELIVER IN PERSON|RAIL|he furious| +2382|133815|3816|3|42|77650.02|0.10|0.03|R|F|1994-09-29|1994-12-18|1994-10-13|NONE|FOB|ions boost carefull| +2382|24723|2230|4|25|41193.00|0.07|0.07|A|F|1994-11-02|1994-10-30|1994-11-26|NONE|RAIL|cajole fluffily. re| +2382|115443|2977|5|40|58337.60|0.01|0.03|A|F|1994-12-21|1994-12-08|1995-01-18|COLLECT COD|REG AIR|ly express i| +2382|48898|8899|6|23|42478.47|0.00|0.07|A|F|1994-10-17|1994-10-27|1994-10-26|NONE|RAIL|quests. express accounts c| +2382|23395|8400|7|40|52735.60|0.02|0.00|R|F|1994-10-25|1994-11-25|1994-11-16|NONE|FOB|tructions about the silent deposits wak| +2383|183564|1119|1|47|77435.32|0.03|0.08|A|F|1993-08-26|1993-08-08|1993-09-09|NONE|RAIL|nto beans are. packages mold bu| +2383|151144|3660|2|34|40634.76|0.03|0.06|R|F|1993-07-29|1993-08-12|1993-08-18|NONE|TRUCK|ilent deposits. silent, bold theodolite| +2383|62963|2964|3|17|32741.32|0.08|0.06|R|F|1993-08-08|1993-09-22|1993-08-29|COLLECT COD|TRUCK|slyly around the fluffily special| +2408|158320|5866|1|49|67537.68|0.03|0.05|A|F|1994-05-10|1994-06-15|1994-05-12|DELIVER IN PERSON|RAIL|eans. final| +2408|82447|9972|2|16|22871.04|0.06|0.02|A|F|1994-06-28|1994-06-21|1994-07-04|NONE|FOB|lose pinto beans. carefully idle pinto bean| +2408|74135|1657|3|50|55456.50|0.10|0.00|A|F|1994-06-23|1994-06-29|1994-07-10|COLLECT COD|TRUCK|iously regular ideas cajole quickly. slyl| +2409|183782|3783|1|36|67168.08|0.00|0.01|N|O|1996-11-17|1996-12-13|1996-11-27|COLLECT COD|MAIL|erve furiously. s| +2409|13892|1396|2|44|79459.16|0.07|0.04|N|O|1997-02-13|1996-12-15|1997-03-06|NONE|TRUCK|arefully. furious| +2410|85753|8262|1|41|71288.75|0.03|0.01|A|F|1992-09-12|1992-09-13|1992-10-03|NONE|FOB|ctions. furiously pendi| +2410|48806|6319|2|23|40360.40|0.01|0.06|A|F|1992-12-04|1992-10-16|1993-01-02|TAKE BACK RETURN|FOB|ld requests. furiously even pinto beans al| +2411|166081|6082|1|29|33265.32|0.01|0.00|N|O|1998-08-31|1998-08-28|1998-09-12|DELIVER IN PERSON|TRUCK|equests haggle. furiously regular pinto bea| +2411|112555|5067|2|3|4702.65|0.02|0.06|N|O|1998-10-23|1998-07-30|1998-11-08|COLLECT COD|MAIL|. regular accounts nag c| +2411|99533|7061|3|22|33715.66|0.06|0.01|N|O|1998-09-19|1998-09-12|1998-10-17|TAKE BACK RETURN|FOB|after the final instruct| +2412|139286|6826|1|23|30481.44|0.10|0.07|N|O|1997-11-25|1998-02-03|1997-11-28|TAKE BACK RETURN|REG AIR|l packages. slyly e| +2412|164963|9996|2|4|8111.84|0.06|0.06|N|O|1998-01-04|1998-02-10|1998-01-24|TAKE BACK RETURN|AIR|ly. blithely regular ideas | +2412|129197|9198|3|40|49047.60|0.05|0.00|N|O|1997-12-03|1998-02-22|1997-12-08|TAKE BACK RETURN|MAIL| according to the careful| +2412|197842|362|4|15|29097.60|0.06|0.04|N|O|1998-02-25|1998-02-05|1998-03-23|DELIVER IN PERSON|MAIL| furiously regular deposits. fluffily i| +2412|121835|4348|5|45|83557.35|0.04|0.04|N|O|1998-02-02|1997-12-30|1998-02-13|NONE|AIR|use beneath the express accounts. furio| +2413|94356|6866|1|12|16204.20|0.09|0.00|N|O|1997-04-01|1997-05-24|1997-04-16|TAKE BACK RETURN|SHIP|c deposits wake quickly among the quick| +2413|27560|2565|2|29|43139.24|0.09|0.06|N|O|1997-04-20|1997-04-18|1997-05-02|TAKE BACK RETURN|AIR| across the ironic pinto bea| +2413|198924|8925|3|10|20229.20|0.08|0.02|N|O|1997-06-27|1997-05-15|1997-07-14|TAKE BACK RETURN|SHIP|ave to cajole eve| +2413|105662|683|4|44|73377.04|0.01|0.07|N|O|1997-04-15|1997-04-01|1997-05-08|NONE|RAIL|otes cajole. stealthil| +2413|48409|3418|5|12|16288.80|0.05|0.04|N|O|1997-04-02|1997-04-07|1997-04-27|DELIVER IN PERSON|FOB|iously final theodolites| +2413|7640|141|6|30|46429.20|0.09|0.08|N|O|1997-04-02|1997-05-01|1997-05-02|NONE|FOB|ges. furiously silent accounts sleep furiou| +2413|195847|886|7|49|95199.16|0.07|0.05|N|O|1997-03-07|1997-05-22|1997-03-30|DELIVER IN PERSON|MAIL|furiously t| +2414|197353|4911|1|38|55113.30|0.09|0.01|A|F|1994-11-22|1994-10-27|1994-11-24|NONE|TRUCK| after the furiously even pi| +2415|10854|8358|1|39|68829.15|0.10|0.04|N|O|1998-01-04|1997-11-21|1998-01-05|DELIVER IN PERSON|SHIP|s lose slyly. ironic accounts are-- unu| +2415|17784|7785|2|35|59562.30|0.07|0.01|N|O|1997-12-03|1997-11-17|1997-12-06|DELIVER IN PERSON|REG AIR|ar pinto beans. quickly regula| +2415|83052|5561|3|20|20701.00|0.05|0.00|N|O|1997-12-22|1997-11-04|1998-01-06|COLLECT COD|FOB|posits are aft| +2440|134509|7023|1|49|75631.50|0.03|0.05|N|O|1995-07-27|1995-07-21|1995-07-28|COLLECT COD|MAIL|gular foxes detect blithely quickly| +2440|85282|299|2|19|24078.32|0.06|0.04|N|O|1995-06-24|1995-07-07|1995-07-15|DELIVER IN PERSON|MAIL|ronic patterns sleep quickly. silen| +2440|134147|9174|3|35|41339.90|0.01|0.03|N|O|1995-09-07|1995-07-15|1995-09-14|COLLECT COD|MAIL|uietly regular | +2440|5432|433|4|34|45472.62|0.02|0.01|N|O|1995-06-27|1995-06-28|1995-07-05|COLLECT COD|AIR|le-- ironic theodolites | +2440|82038|4547|5|18|18360.54|0.03|0.02|N|O|1995-09-20|1995-08-08|1995-09-23|TAKE BACK RETURN|MAIL|ar dependenc| +2441|147156|4699|1|25|30078.75|0.02|0.02|N|O|1995-12-29|1995-12-28|1996-01-05|TAKE BACK RETURN|RAIL|nts sleep. quietly special packages us| +2441|39551|4558|2|42|62603.10|0.00|0.04|N|O|1996-01-02|1995-12-27|1996-02-01|DELIVER IN PERSON|REG AIR|boost about the bold ideas. furiously p| +2441|122815|352|3|14|25729.34|0.07|0.00|N|O|1996-01-31|1995-11-18|1996-02-28|COLLECT COD|SHIP|he carefully regu| +2441|150942|5973|4|34|67759.96|0.07|0.02|N|O|1995-11-13|1996-01-01|1995-11-25|TAKE BACK RETURN|TRUCK|equests. packages nag slyly abou| +2441|80172|2681|5|7|8065.19|0.04|0.05|N|O|1996-01-08|1995-11-24|1996-02-04|DELIVER IN PERSON|FOB|oss the slyly regular in| +2441|39212|4219|6|45|51804.45|0.08|0.06|N|O|1996-01-30|1995-11-29|1996-02-16|COLLECT COD|REG AIR|lites unwind against the furiously e| +2441|35991|3501|7|4|7707.96|0.06|0.04|N|O|1995-11-28|1995-11-15|1995-12-11|COLLECT COD|REG AIR|aggle according to the furiously specia| +2442|89786|7311|1|20|35515.60|0.09|0.06|N|O|1997-01-05|1997-01-26|1997-01-11|NONE|MAIL|g to the unusual, final pint| +2442|20779|8286|2|12|20397.24|0.01|0.07|N|O|1997-02-10|1996-12-20|1997-02-25|TAKE BACK RETURN|SHIP|tegrate slyly. unusual deposits h| +2442|29214|1717|3|21|24007.41|0.02|0.07|N|O|1996-11-27|1997-01-07|1996-12-18|DELIVER IN PERSON|AIR|tions again| +2442|187980|7981|4|33|68243.34|0.10|0.00|N|O|1997-01-14|1997-01-02|1997-01-27|TAKE BACK RETURN|SHIP|ooze furiously ruthlessly| +2442|177563|2598|5|4|6562.24|0.10|0.00|N|O|1996-12-06|1996-12-17|1996-12-30|DELIVER IN PERSON|MAIL|regular packages wake slyl| +2442|92385|4895|6|19|26170.22|0.03|0.06|N|O|1997-01-06|1996-12-10|1997-01-29|DELIVER IN PERSON|TRUCK|nt accounts x-ray quickly silent, qui| +2442|104730|4731|7|19|32959.87|0.08|0.08|N|O|1997-01-02|1997-01-25|1997-01-15|DELIVER IN PERSON|SHIP|leep slyly a| +2443|188104|3141|1|22|26226.20|0.04|0.00|N|O|1997-06-15|1997-08-14|1997-06-29|NONE|FOB|frets. slyly final excuses use after the| +2443|60620|3127|2|7|11064.34|0.09|0.06|N|O|1997-07-17|1997-08-21|1997-08-04|NONE|SHIP| excuses. | +2443|32232|4736|3|36|41912.28|0.09|0.00|N|O|1997-09-08|1997-08-02|1997-09-12|TAKE BACK RETURN|FOB| wake after the slyly | +2443|110559|8093|4|24|37669.20|0.09|0.04|N|O|1997-09-12|1997-07-29|1997-09-27|TAKE BACK RETURN|SHIP|nis haggle. quickly expre| +2443|156837|6838|5|19|35982.77|0.05|0.06|N|O|1997-06-09|1997-08-20|1997-06-26|TAKE BACK RETURN|FOB|accounts along the blithely pending deposit| +2444|49157|6670|1|40|44246.00|0.05|0.08|A|F|1995-02-05|1994-12-10|1995-02-17|DELIVER IN PERSON|AIR|inal deposits cajole. carefully even| +2444|175241|7759|2|44|57914.56|0.08|0.05|R|F|1995-02-11|1994-12-15|1995-02-23|TAKE BACK RETURN|REG AIR|ss deposits. theodolites nag furiously bold| +2444|65431|5432|3|35|48875.05|0.05|0.01|A|F|1994-12-08|1995-01-04|1994-12-14|COLLECT COD|TRUCK|the packages. | +2444|86066|8575|4|7|7364.42|0.09|0.08|R|F|1994-12-17|1994-12-01|1994-12-31|COLLECT COD|RAIL|ffix fluffily fluffily final foxes. | +2445|157517|7518|1|14|22043.14|0.09|0.07|A|F|1994-01-01|1994-01-10|1994-01-03|COLLECT COD|AIR| blithely final i| +2445|186529|9048|2|28|45234.56|0.01|0.00|R|F|1993-12-05|1993-12-29|1993-12-07|COLLECT COD|REG AIR|gle quickly regular instructions. carefu| +2445|181349|8904|3|20|28606.80|0.10|0.05|A|F|1994-02-19|1994-01-03|1994-02-22|TAKE BACK RETURN|AIR|y ironic deposits| +2445|119480|1992|4|37|55480.76|0.10|0.00|R|F|1994-01-18|1994-01-01|1994-02-07|NONE|TRUCK|en foxes. blithely regular reque| +2445|97522|32|5|27|41027.04|0.04|0.02|A|F|1994-01-05|1993-12-23|1994-01-20|NONE|FOB| deposits across t| +2445|36035|1042|6|32|31072.96|0.09|0.03|R|F|1994-02-13|1994-01-26|1994-03-04|NONE|RAIL|sly final instructions are against t| +2446|85459|2984|1|5|7222.25|0.04|0.03|A|F|1994-08-27|1994-08-02|1994-08-29|NONE|AIR|es in place of the furiously regular r| +2446|98516|6044|2|17|25746.67|0.08|0.01|A|F|1994-09-13|1994-07-30|1994-10-04|TAKE BACK RETURN|RAIL|y special Tires| +2446|152526|7557|3|9|14206.68|0.01|0.02|R|F|1994-06-29|1994-07-23|1994-07-19|NONE|REG AIR|olites. furiou| +2446|91989|4499|4|6|11885.88|0.06|0.02|A|F|1994-08-22|1994-08-31|1994-09-08|TAKE BACK RETURN|SHIP|xes. pending, quiet theodolites grow furi| +2447|178292|810|1|1|1370.29|0.01|0.07|R|F|1992-06-18|1992-05-14|1992-07-16|COLLECT COD|TRUCK|he slyly pending as| +2447|139257|9258|2|50|64812.50|0.01|0.06|R|F|1992-03-31|1992-06-06|1992-04-21|TAKE BACK RETURN|SHIP|totes are quickly-- unusual reque| +2447|76833|9341|3|3|5429.49|0.09|0.05|R|F|1992-06-30|1992-05-11|1992-07-08|DELIVER IN PERSON|FOB|es are accor| +2447|117350|7351|4|14|19142.90|0.07|0.03|R|F|1992-07-17|1992-04-29|1992-07-22|NONE|AIR|deposits nag slyly silent accounts: furi| +2447|93897|1425|5|7|13236.23|0.03|0.06|A|F|1992-06-18|1992-06-10|1992-06-28|DELIVER IN PERSON|AIR|y. blithely regular instructions are | +2447|113107|641|6|16|17921.60|0.07|0.05|R|F|1992-06-12|1992-05-04|1992-06-23|TAKE BACK RETURN|FOB|egular pinto| +2472|188453|3490|1|46|70906.70|0.08|0.05|N|O|1998-06-25|1998-08-06|1998-06-27|NONE|SHIP|packages. ironic i| +2472|121642|9179|2|35|58227.40|0.06|0.07|N|O|1998-08-16|1998-07-18|1998-09-07|TAKE BACK RETURN|SHIP|regular instructions. express packages | +2472|35169|7673|3|28|30916.48|0.08|0.08|N|O|1998-08-29|1998-07-16|1998-09-01|NONE|FOB|tructions wake quic| +2472|82092|9617|4|3|3222.27|0.07|0.06|N|O|1998-08-20|1998-07-09|1998-08-27|COLLECT COD|FOB|uriously. ideas ag| +2472|109742|9743|5|14|24524.36|0.06|0.04|N|O|1998-09-06|1998-08-23|1998-10-01|DELIVER IN PERSON|TRUCK|ar deposit| +2472|23836|8841|6|11|19358.13|0.06|0.01|N|O|1998-09-23|1998-07-26|1998-10-16|TAKE BACK RETURN|AIR| the regular instructi| +2472|8514|1015|7|10|14225.10|0.10|0.01|N|O|1998-06-22|1998-08-18|1998-07-20|NONE|MAIL|ular asymptotes print blithe| +2473|87210|9719|1|44|52677.24|0.05|0.00|N|O|1997-07-17|1997-07-24|1997-08-09|COLLECT COD|REG AIR|ily blithe| +2473|134820|4821|2|25|46370.50|0.04|0.01|N|O|1997-08-25|1997-07-17|1997-08-28|TAKE BACK RETURN|FOB|s nod express pi| +2473|108849|6380|3|9|16720.56|0.06|0.04|N|O|1997-07-13|1997-08-09|1997-07-30|COLLECT COD|REG AIR|oxes affix | +2473|10548|8052|4|28|40839.12|0.04|0.01|N|O|1997-09-02|1997-06-24|1997-09-19|DELIVER IN PERSON|AIR|ccounts sleep furiously even, final foxes| +2474|168050|8051|1|26|29069.30|0.03|0.04|A|F|1993-10-23|1993-10-24|1993-11-18|NONE|AIR| sauternes; slyly final accounts| +2474|10627|3129|2|50|76881.00|0.03|0.07|R|F|1993-09-14|1993-10-26|1993-10-14|TAKE BACK RETURN|RAIL|l accounts. instructions around t| +2474|3714|6215|3|13|21030.23|0.02|0.01|R|F|1993-11-02|1993-11-18|1993-11-15|COLLECT COD|RAIL|kly pending packages. pending| +2475|166491|9008|1|45|70087.05|0.07|0.02|N|O|1995-09-07|1995-06-19|1995-09-26|DELIVER IN PERSON|FOB|y regular pinto beans cajole acro| +2475|8830|3831|2|17|29560.11|0.06|0.01|N|O|1995-08-17|1995-08-17|1995-09-16|NONE|RAIL|eep furiously furiously even| +2475|5396|2897|3|5|6506.95|0.02|0.02|N|F|1995-06-13|1995-07-27|1995-07-07|DELIVER IN PERSON|SHIP|ic requests cajole acro| +2475|76772|6773|4|47|82192.19|0.05|0.02|N|O|1995-09-05|1995-08-06|1995-09-17|NONE|SHIP| pending, final sentiments sleep| +2476|126265|1290|1|45|58106.70|0.04|0.02|N|O|1996-06-06|1996-04-17|1996-06-15|TAKE BACK RETURN|AIR|ecial excuses n| +2476|120014|7551|2|21|21714.21|0.08|0.04|N|O|1996-04-26|1996-06-08|1996-05-24|TAKE BACK RETURN|MAIL|kages nag carefully pendin| +2476|70867|868|3|23|42270.78|0.10|0.02|N|O|1996-04-03|1996-04-18|1996-04-17|NONE|FOB|cuses poach. express deposits will nag | +2477|20696|8203|1|3|4850.07|0.04|0.07|N|O|1996-04-25|1996-02-26|1996-05-06|COLLECT COD|TRUCK|ing dolphins nod blithely p| +2477|28435|3440|2|29|39539.47|0.02|0.06|N|O|1996-02-17|1996-03-10|1996-03-15|TAKE BACK RETURN|MAIL|y final packages. special depo| +2477|91583|1584|3|8|12596.64|0.06|0.01|N|O|1996-01-20|1996-02-20|1996-01-21|NONE|MAIL|as. regular excuses unwin| +2478|121121|6146|1|14|15989.68|0.10|0.06|N|O|1997-09-12|1997-09-17|1997-10-05|TAKE BACK RETURN|SHIP|dencies according| +2479|189754|4791|1|33|60843.75|0.04|0.00|R|F|1992-07-01|1992-05-14|1992-07-20|TAKE BACK RETURN|TRUCK|cuses. final ide| +2479|195067|106|2|24|27889.44|0.09|0.06|A|F|1992-06-26|1992-05-30|1992-07-26|COLLECT COD|TRUCK|special instructions. deposits hang aroun| +2479|86062|1079|3|1|1048.06|0.09|0.00|A|F|1992-05-21|1992-07-11|1992-06-11|TAKE BACK RETURN|TRUCK|. special, final instruct| +2479|42838|7847|4|21|37397.43|0.08|0.07|R|F|1992-06-08|1992-06-29|1992-06-10|DELIVER IN PERSON|FOB|ts solve regular asymptotes. regular grouch| +2504|111848|4360|1|33|61374.72|0.01|0.06|N|O|1995-12-06|1996-01-09|1995-12-29|TAKE BACK RETURN|MAIL|ake slyly accordin| +2504|27745|7746|2|28|46836.72|0.07|0.05|N|O|1996-02-04|1996-01-16|1996-03-02|COLLECT COD|RAIL|l theodolites sleep package| +2504|101989|1990|3|22|43801.56|0.04|0.05|N|O|1995-11-30|1995-12-08|1995-12-13|NONE|RAIL|lyly. fluffy foxes against t| +2504|112822|5334|4|19|34861.58|0.01|0.07|N|O|1996-01-06|1995-12-25|1996-02-03|TAKE BACK RETURN|TRUCK|the carefully regular pinto beans. carefu| +2505|174806|2358|1|46|86516.80|0.10|0.04|A|F|1992-12-13|1993-01-05|1992-12-18|DELIVER IN PERSON|SHIP|ly idle pinto beans | +2505|155638|3184|2|25|42340.75|0.05|0.04|R|F|1992-10-30|1992-12-24|1992-11-07|DELIVER IN PERSON|SHIP| according to the furiously unusual accoun| +2505|197014|2053|3|10|11110.10|0.10|0.08|R|F|1993-01-17|1992-12-23|1993-02-07|NONE|AIR|ly final requests. blithely even idea| +2505|6754|6755|4|23|38197.25|0.09|0.07|A|F|1993-01-19|1992-12-27|1993-02-06|TAKE BACK RETURN|REG AIR|elets. carefully special| +2505|100105|7636|5|42|46414.20|0.10|0.07|R|F|1992-11-20|1993-01-03|1992-11-23|TAKE BACK RETURN|MAIL|hs wake to the final plate| +2505|55780|8286|6|12|20829.36|0.09|0.04|A|F|1992-11-08|1993-01-07|1992-11-20|NONE|REG AIR| accounts | +2505|84699|9716|7|12|20204.28|0.00|0.03|R|F|1992-12-28|1992-12-06|1993-01-19|NONE|SHIP|. ideas wake. requests wake furiously si| +2506|131390|1391|1|5|7106.95|0.08|0.04|A|F|1992-04-19|1992-04-07|1992-05-01|NONE|FOB|ily ironic ideas slee| +2506|58571|1077|2|13|19884.41|0.00|0.05|R|F|1992-04-29|1992-03-31|1992-05-05|DELIVER IN PERSON|MAIL|l requests nag ironic, | +2506|1192|8693|3|44|48100.36|0.02|0.02|A|F|1992-02-28|1992-04-11|1992-03-26|NONE|RAIL|es. blithely final| +2506|32300|4804|4|15|18484.50|0.00|0.01|R|F|1992-05-19|1992-04-24|1992-06-08|NONE|TRUCK|ecial deposits u| +2506|59769|2275|5|1|1728.76|0.03|0.05|A|F|1992-06-04|1992-04-07|1992-06-17|DELIVER IN PERSON|RAIL| regular grouches. slyly specia| +2506|128880|6417|6|23|43904.24|0.01|0.05|A|F|1992-06-14|1992-05-11|1992-06-18|TAKE BACK RETURN|FOB|uffily ironic dugouts are. carefull| +2507|106315|1336|1|7|9249.17|0.04|0.02|N|O|1996-12-10|1997-01-27|1997-01-08|DELIVER IN PERSON|FOB|he carefully regula| +2507|31318|6325|2|44|54969.64|0.08|0.08|N|O|1997-02-16|1997-02-21|1997-03-07|DELIVER IN PERSON|MAIL|xes haggle furiously furiously pending a| +2507|148035|8036|3|49|53068.47|0.06|0.04|N|O|1997-02-12|1997-02-18|1997-03-13|COLLECT COD|MAIL|en packages| +2507|12195|4697|4|7|7750.33|0.01|0.04|N|O|1996-12-05|1997-02-20|1996-12-29|DELIVER IN PERSON|SHIP|quests. packages alongside of the depend| +2508|159548|2064|1|2|3215.08|0.10|0.02|N|O|1997-12-19|1997-10-31|1998-01-08|NONE|TRUCK|ccounts. idly reg| +2508|122642|179|2|9|14981.76|0.08|0.01|N|O|1997-09-18|1997-11-05|1997-10-17|NONE|FOB|ages. fluffily regular pinto beans int| +2509|18882|6386|1|30|54026.40|0.03|0.03|A|F|1993-05-23|1993-04-25|1993-06-22|TAKE BACK RETURN|MAIL|ly. carefully| +2510|40594|595|1|13|19949.67|0.01|0.00|N|O|1998-09-15|1998-08-05|1998-09-20|COLLECT COD|RAIL|cial dependencies cajole blith| +2510|51521|1522|2|1|1472.52|0.04|0.03|N|O|1998-08-01|1998-07-04|1998-08-08|TAKE BACK RETURN|FOB|tect blithely | +2510|98279|5807|3|38|48536.26|0.10|0.06|N|O|1998-09-02|1998-07-12|1998-09-21|COLLECT COD|TRUCK|uctions wake slowly alongsi| +2510|160202|5235|4|3|3786.60|0.04|0.01|N|O|1998-07-27|1998-07-24|1998-08-24|COLLECT COD|RAIL|ularly regular pinto beans| +2510|114111|6623|5|44|49504.84|0.10|0.08|N|O|1998-06-26|1998-08-10|1998-07-01|COLLECT COD|AIR|ly ironic packages. iro| +2510|58642|1148|6|4|6402.56|0.02|0.02|N|O|1998-07-23|1998-07-23|1998-07-30|TAKE BACK RETURN|SHIP| fluffily bold| +2510|185278|2833|7|19|25902.13|0.06|0.02|N|O|1998-09-05|1998-06-29|1998-09-08|NONE|MAIL|carefully bold pinto bean| +2511|163035|8068|1|33|36234.99|0.01|0.00|N|O|1998-07-28|1998-07-07|1998-08-25|COLLECT COD|FOB|: quickly regula| +2511|113627|6139|2|50|82031.00|0.10|0.02|N|O|1998-06-15|1998-06-12|1998-07-10|DELIVER IN PERSON|FOB| ought to sleep always furiously e| +2511|125399|424|3|30|42731.70|0.09|0.04|N|O|1998-06-11|1998-07-06|1998-06-13|TAKE BACK RETURN|AIR|egular asymptotes | +2511|174154|1706|4|39|47897.85|0.01|0.03|N|O|1998-08-11|1998-07-12|1998-08-14|COLLECT COD|REG AIR|ffix among the even depende| +2511|5035|5036|5|46|43241.38|0.06|0.03|N|O|1998-08-16|1998-07-08|1998-08-18|COLLECT COD|AIR|. slyly regular gifts engage| +2511|18301|3304|6|18|21947.40|0.00|0.01|N|O|1998-08-07|1998-06-09|1998-08-10|NONE|MAIL|l packages. idly even s| +2536|154339|6855|1|30|41799.90|0.01|0.05|R|F|1993-10-16|1993-10-30|1993-11-03|NONE|MAIL|ckages haggle carefully always| +2537|160759|760|1|17|30935.75|0.06|0.03|N|O|1998-06-21|1998-06-07|1998-07-01|COLLECT COD|TRUCK|. regular deposits alongside of the furio| +2537|73114|3115|2|11|11958.21|0.04|0.01|N|O|1998-04-18|1998-06-02|1998-04-26|TAKE BACK RETURN|FOB|ites. slyly even warthogs sleep sly| +2537|12914|2915|3|20|36538.20|0.08|0.06|N|O|1998-04-29|1998-05-11|1998-05-24|DELIVER IN PERSON|SHIP|pinto beans | +2537|44356|9365|4|8|10402.80|0.01|0.03|N|O|1998-07-05|1998-05-10|1998-08-03|DELIVER IN PERSON|RAIL|ly regular packages. fluffily regular foxe| +2538|109335|6866|1|21|28230.93|0.03|0.01|R|F|1994-01-31|1994-03-20|1994-02-26|DELIVER IN PERSON|TRUCK|s along the regul| +2538|192089|4609|2|11|12991.88|0.09|0.01|A|F|1994-05-16|1994-04-02|1994-06-10|TAKE BACK RETURN|SHIP|ter the idly bold requests. unusu| +2538|31715|4219|3|39|64221.69|0.00|0.06|R|F|1994-05-23|1994-04-22|1994-06-09|NONE|FOB|nal theodolites detect furiously abou| +2538|22992|7997|4|15|28724.85|0.10|0.07|R|F|1994-03-18|1994-03-11|1994-04-07|COLLECT COD|REG AIR| pending, even packages. silent, s| +2539|170475|476|1|34|52545.98|0.09|0.01|A|F|1994-07-14|1994-06-06|1994-08-09|TAKE BACK RETURN|MAIL|equests. accounts wake blithely. furio| +2539|157968|7969|2|33|66856.68|0.07|0.08|R|F|1994-07-12|1994-05-13|1994-07-24|DELIVER IN PERSON|TRUCK|eodolites kindle fluffily blithely unu| +2539|153737|3738|3|39|69838.47|0.05|0.05|A|F|1994-07-19|1994-05-06|1994-07-31|TAKE BACK RETURN|TRUCK|n requests. carefully unusual accounts a| +2539|53483|5989|4|15|21547.20|0.06|0.04|A|F|1994-05-28|1994-06-08|1994-06-14|DELIVER IN PERSON|RAIL| special ideas nag blithely final w| +2540|46700|4213|1|13|21407.10|0.02|0.05|A|F|1994-08-22|1994-09-01|1994-09-06|DELIVER IN PERSON|TRUCK|r requests d| +2540|75661|676|2|16|26186.56|0.07|0.02|A|F|1994-09-26|1994-07-29|1994-10-18|DELIVER IN PERSON|REG AIR|press pinto beans cajole abov| +2540|24923|9928|3|31|57285.52|0.00|0.01|R|F|1994-07-15|1994-09-02|1994-08-12|DELIVER IN PERSON|SHIP|efully ironic theodolites according to t| +2540|73039|3040|4|44|44529.32|0.04|0.05|A|F|1994-08-31|1994-07-16|1994-09-25|NONE|RAIL|uffily. slyly even pinto beans | +2540|154312|9343|5|1|1366.31|0.03|0.01|R|F|1994-06-25|1994-08-30|1994-07-24|TAKE BACK RETURN|MAIL|lar pinto beans hang courts. slyly specia| +2541|143326|3327|1|33|45187.56|0.06|0.03|N|O|1996-12-07|1997-02-04|1996-12-28|TAKE BACK RETURN|REG AIR|nic, express escap| +2541|74866|2388|2|49|90202.14|0.02|0.08|N|O|1997-02-19|1997-01-11|1997-03-17|COLLECT COD|SHIP|g fluffily. carefully pending inst| +2541|56411|1422|3|16|21878.56|0.07|0.05|N|O|1997-01-17|1997-01-17|1997-02-05|DELIVER IN PERSON|REG AIR|le slowly abov| +2541|83906|1431|4|11|20788.90|0.07|0.00|N|O|1997-01-14|1997-02-17|1997-01-20|NONE|REG AIR|ckages. slyly pending deposits above | +2542|11877|9381|1|21|37566.27|0.00|0.05|N|O|1996-08-05|1996-07-21|1996-08-23|DELIVER IN PERSON|SHIP|ctions use blithely! fluffil| +2542|15850|3354|2|44|77697.40|0.02|0.07|N|O|1996-05-29|1996-06-25|1996-06-06|DELIVER IN PERSON|RAIL|ly even platelets lose careful| +2543|192272|7311|1|49|66849.23|0.03|0.02|N|O|1998-09-06|1998-08-13|1998-10-01|TAKE BACK RETURN|MAIL|eep fluffily. slyly even foxes are fu| +2543|107775|2796|2|18|32089.86|0.08|0.01|N|O|1998-06-02|1998-08-16|1998-06-12|NONE|RAIL|uffy frets. regul| +2543|172168|7203|3|18|22322.88|0.10|0.03|N|O|1998-09-17|1998-07-03|1998-09-19|NONE|REG AIR|s. ruthless dependencie| +2543|18187|3190|4|6|6631.08|0.01|0.05|N|O|1998-06-29|1998-07-08|1998-07-14|TAKE BACK RETURN|TRUCK|al requests.| +2543|59121|6637|5|26|28083.12|0.05|0.00|N|O|1998-07-21|1998-07-24|1998-08-02|COLLECT COD|TRUCK|around the theodolites | +2568|79835|2343|1|8|14518.64|0.00|0.02|R|F|1992-10-04|1992-10-03|1992-11-02|NONE|SHIP|integrate furiously along the slyly | +2568|184326|4327|2|37|52181.84|0.07|0.00|A|F|1992-08-08|1992-09-04|1992-08-12|DELIVER IN PERSON|AIR|pths. unusual accounts boost busil| +2568|154240|9271|3|32|41415.68|0.08|0.06|R|F|1992-10-13|1992-10-13|1992-10-28|COLLECT COD|REG AIR|es cajole pa| +2568|104592|4593|4|25|39914.75|0.08|0.06|A|F|1992-10-05|1992-10-28|1992-10-06|COLLECT COD|MAIL|ts nag along the| +2569|28838|6345|1|29|51238.07|0.06|0.07|N|O|1996-07-15|1996-06-21|1996-08-12|COLLECT COD|RAIL|ly special pinto beans. blithely even re| +2569|79038|4053|2|15|15255.45|0.05|0.08|N|O|1996-05-22|1996-06-16|1996-06-21|DELIVER IN PERSON|FOB| sometimes beside| +2569|177627|145|3|21|35797.02|0.06|0.00|N|O|1996-07-01|1996-05-19|1996-07-19|NONE|RAIL|al packages grow| +2569|165931|964|4|27|53917.11|0.00|0.04|N|O|1996-05-14|1996-04-30|1996-06-11|DELIVER IN PERSON|REG AIR|he slyly ironic deposits. ironic, | +2569|195745|5746|5|35|64425.90|0.07|0.05|N|O|1996-04-17|1996-05-04|1996-05-09|DELIVER IN PERSON|AIR|ss the express accounts hinder| +2570|127294|4831|1|27|35674.83|0.07|0.02|N|O|1996-01-09|1995-12-28|1996-01-29|NONE|MAIL|c requests after the| +2571|16954|4458|1|18|33677.10|0.09|0.06|R|F|1995-05-27|1995-06-27|1995-05-29|TAKE BACK RETURN|AIR|nts cajole c| +2572|59529|4540|1|7|10419.64|0.10|0.04|A|F|1994-09-04|1994-08-26|1994-09-25|TAKE BACK RETURN|MAIL|g quickly accor| +2572|95938|957|2|20|38678.60|0.01|0.01|A|F|1994-11-07|1994-09-10|1994-11-29|NONE|AIR| brave, pe| +2573|183719|6238|1|11|19829.81|0.03|0.07|R|F|1994-12-14|1994-12-28|1994-12-16|TAKE BACK RETURN|TRUCK|ages integrate care| +2573|152840|5356|2|44|83284.96|0.06|0.00|A|F|1995-01-04|1994-12-26|1995-01-17|COLLECT COD|REG AIR|against the carefully fi| +2573|175262|5263|3|38|50815.88|0.00|0.01|R|F|1994-12-20|1994-11-16|1995-01-05|NONE|TRUCK|quickly express instructions use closely.| +2573|27823|5330|4|6|10504.92|0.01|0.03|A|F|1994-11-19|1994-12-07|1994-11-25|TAKE BACK RETURN|TRUCK| instructions. furious| +2573|11808|1809|5|21|36115.80|0.02|0.03|R|F|1995-01-19|1994-11-11|1995-02-13|NONE|SHIP|cies: furiously final deposits detect | +2573|50738|739|6|46|77681.58|0.03|0.07|R|F|1994-11-11|1994-11-26|1994-11-17|TAKE BACK RETURN|AIR|as. silent, special deposits across the bl| +2573|149239|9240|7|43|55393.89|0.05|0.03|R|F|1995-01-09|1994-12-14|1995-01-21|NONE|AIR|ndencies cajole aro| +2574|58955|1461|1|19|36365.05|0.08|0.02|R|F|1993-08-10|1993-07-22|1993-08-20|TAKE BACK RETURN|FOB|aphs. blithely ironic packages above th| +2574|43681|8690|2|40|64987.20|0.03|0.08|A|F|1993-08-21|1993-08-13|1993-09-20|TAKE BACK RETURN|TRUCK|longside of the | +2575|86768|9277|1|45|78964.20|0.01|0.06|A|F|1992-02-18|1992-03-23|1992-02-21|TAKE BACK RETURN|FOB|y final packages poach fluffily unus| +2575|104845|9866|2|6|11099.04|0.02|0.01|R|F|1992-05-19|1992-03-05|1992-05-28|NONE|REG AIR|s was quickly pending acc| +2575|125522|547|3|33|51068.16|0.10|0.00|A|F|1992-03-21|1992-03-08|1992-04-08|TAKE BACK RETURN|AIR|the furiously ironic packages. | +2600|95784|3312|1|35|62292.30|0.09|0.06|A|F|1995-05-27|1995-06-27|1995-06-08|TAKE BACK RETURN|TRUCK|press instructions wake slyly slyly bol| +2600|41258|6267|2|3|3597.75|0.02|0.07|A|F|1995-05-27|1995-05-14|1995-06-07|DELIVER IN PERSON|RAIL| alongside of the blithe| +2600|9818|7319|3|1|1727.81|0.08|0.02|A|F|1995-05-01|1995-06-16|1995-05-07|COLLECT COD|AIR|nag quickly. | +2600|506|5507|4|31|43601.50|0.03|0.04|N|O|1995-07-02|1995-05-24|1995-07-25|COLLECT COD|SHIP|lly regular realms might a| +2600|91821|9349|5|13|23566.66|0.07|0.05|R|F|1995-05-01|1995-06-28|1995-05-07|TAKE BACK RETURN|TRUCK|express pinto beans wake regular, iro| +2600|25349|7852|6|35|44601.90|0.05|0.02|N|O|1995-07-23|1995-05-18|1995-08-07|DELIVER IN PERSON|AIR|bove the slyly ironic in| +2601|84961|9978|1|18|35027.28|0.00|0.01|R|F|1992-09-26|1992-08-28|1992-09-28|COLLECT COD|TRUCK|beans promise furiously| +2602|31933|1934|1|38|70867.34|0.02|0.08|A|F|1993-07-09|1993-07-17|1993-07-14|TAKE BACK RETURN|MAIL|y ironic hockey players print ca| +2602|84053|6562|2|41|42519.05|0.07|0.06|A|F|1993-08-08|1993-08-14|1993-08-30|TAKE BACK RETURN|SHIP|ounts across the pending| +2602|70404|7926|3|3|4123.20|0.04|0.03|A|F|1993-09-20|1993-07-28|1993-09-27|COLLECT COD|REG AIR|lar pinto beans wake quickl| +2603|138351|5891|1|40|55574.00|0.08|0.00|R|F|1994-05-10|1994-04-30|1994-05-30|COLLECT COD|FOB|g instructions. furiously | +2603|56609|6610|2|31|48533.60|0.02|0.07|R|F|1994-05-11|1994-04-09|1994-05-21|DELIVER IN PERSON|REG AIR|ideas solve slyl| +2603|19080|6584|3|6|5994.48|0.05|0.05|R|F|1994-05-12|1994-03-19|1994-05-26|NONE|REG AIR|y ironic fo| +2603|70911|8433|4|41|77158.31|0.03|0.04|A|F|1994-02-24|1994-03-19|1994-03-25|DELIVER IN PERSON|SHIP|s cajole fluffily against the express, fi| +2603|198420|3459|5|32|48589.44|0.04|0.02|R|F|1994-05-23|1994-04-28|1994-06-02|COLLECT COD|REG AIR| ironic theodolites haggle quickly around | +2603|42074|4579|6|13|13208.91|0.02|0.05|A|F|1994-04-09|1994-04-05|1994-05-01|COLLECT COD|MAIL|. final, regular d| +2604|153475|5991|1|50|76423.50|0.06|0.07|A|F|1994-12-13|1994-12-13|1994-12-14|DELIVER IN PERSON|MAIL| around the slyly special | +2604|45373|2886|2|13|17138.81|0.08|0.01|A|F|1994-12-23|1994-12-12|1995-01-17|DELIVER IN PERSON|MAIL|ily quickly | +2605|99967|4986|1|23|45240.08|0.02|0.03|N|O|1998-04-30|1998-05-02|1998-05-14|TAKE BACK RETURN|TRUCK|carefully even deposits about the carefull| +2606|123107|644|1|3|3390.30|0.08|0.00|N|O|1997-11-04|1997-10-01|1997-11-27|TAKE BACK RETURN|AIR|ccounts breach busil| +2606|48814|3823|2|48|84614.88|0.09|0.07|N|O|1997-07-31|1997-09-13|1997-08-07|NONE|FOB|xpress warthogs wake slyly again| +2606|11519|6522|3|12|17166.12|0.03|0.03|N|O|1997-09-23|1997-09-17|1997-10-21|COLLECT COD|AIR| even instructions haggle quickly exp| +2606|192890|2891|4|16|31726.24|0.06|0.06|N|O|1997-09-16|1997-10-03|1997-10-05|TAKE BACK RETURN|MAIL|st carefully blithely pending theodoli| +2606|102141|7162|5|30|34294.20|0.10|0.05|N|O|1997-08-26|1997-08-15|1997-09-20|NONE|TRUCK|ly express acco| +2606|70894|5909|6|30|55946.70|0.01|0.08|N|O|1997-10-29|1997-10-13|1997-11-11|COLLECT COD|FOB|refully slyly p| +2606|114306|6818|7|49|64694.70|0.10|0.08|N|O|1997-10-26|1997-08-19|1997-11-01|TAKE BACK RETURN|RAIL|ial instructions would sublate unusual t| +2607|130981|6008|1|46|92551.08|0.05|0.04|A|F|1992-07-14|1992-09-02|1992-08-09|DELIVER IN PERSON|SHIP|egular packages. pinto beans slee| +2607|196951|9471|2|7|14335.65|0.06|0.01|R|F|1992-07-24|1992-07-19|1992-07-27|NONE|REG AIR| the quickly regular deposits. f| +2607|144656|2199|3|14|23809.10|0.06|0.08|A|F|1992-07-18|1992-08-01|1992-08-08|DELIVER IN PERSON|AIR|use. quick| +2632|32897|407|1|37|67705.93|0.00|0.03|A|F|1992-04-18|1992-05-19|1992-04-24|TAKE BACK RETURN|REG AIR|ets. slyly reg| +2633|118514|8515|1|30|45975.30|0.00|0.03|N|O|1995-10-05|1995-12-17|1995-10-30|TAKE BACK RETURN|AIR|! furiously pending deposits amo| +2633|49888|4897|2|47|86380.36|0.10|0.03|N|O|1995-11-06|1995-12-21|1995-11-16|TAKE BACK RETURN|RAIL|final asymptotes. sly e| +2633|62011|2012|3|11|10703.11|0.00|0.00|N|O|1995-12-30|1995-10-30|1996-01-06|COLLECT COD|FOB|ly regular, e| +2633|17177|4681|4|49|53614.33|0.01|0.01|N|O|1995-10-14|1995-12-21|1995-10-25|COLLECT COD|FOB|ckly regular | +2633|91244|6263|5|25|30881.00|0.05|0.01|N|O|1996-01-15|1995-11-25|1996-02-12|NONE|AIR|the slyly express instr| +2633|133549|1089|6|20|31650.80|0.04|0.03|N|O|1995-11-29|1995-11-03|1995-12-18|DELIVER IN PERSON|REG AIR|lphins detect arou| +2633|141782|9325|7|16|29180.48|0.07|0.03|N|O|1996-01-10|1995-12-05|1996-01-30|NONE|TRUCK|es wake slowly along the final, ironic| +2634|123010|3011|1|7|7231.07|0.00|0.07|R|F|1993-01-01|1992-12-17|1993-01-16|NONE|REG AIR|sits are carefully. furiously specia| +2634|22587|2588|2|14|21134.12|0.04|0.08|R|F|1992-11-18|1992-12-24|1992-12-15|DELIVER IN PERSON|MAIL|es integrate furiously among the p| +2634|11289|6292|3|46|55212.88|0.02|0.02|R|F|1992-11-09|1992-11-09|1992-11-13|TAKE BACK RETURN|REG AIR|enticing asymptotes wake da| +2634|123081|3082|4|18|19873.44|0.09|0.08|A|F|1992-10-28|1992-11-22|1992-11-10|TAKE BACK RETURN|RAIL| accounts. furiously unusual foxe| +2634|16799|1802|5|17|29168.43|0.02|0.06|A|F|1992-12-28|1992-11-21|1993-01-13|COLLECT COD|TRUCK|sits sleep. busily regular packages abou| +2634|125614|639|6|35|57386.35|0.05|0.01|A|F|1993-01-05|1992-12-08|1993-01-23|TAKE BACK RETURN|TRUCK|ar requests. so| +2634|179105|4140|7|2|2368.20|0.05|0.03|R|F|1992-11-09|1992-12-19|1992-11-29|COLLECT COD|REG AIR|y ironic foxes sleep carefully| +2635|14859|4860|1|35|62084.75|0.01|0.05|A|F|1993-09-01|1993-08-04|1993-09-06|COLLECT COD|MAIL|ts cajole fluffily. unusual f| +2635|119389|6923|2|9|12675.42|0.04|0.01|R|F|1993-09-11|1993-08-08|1993-09-20|DELIVER IN PERSON|REG AIR|uickly final deposits haggle| +2636|156280|6281|1|14|18707.92|0.08|0.03|N|O|1996-11-16|1996-09-30|1996-11-23|DELIVER IN PERSON|SHIP|ix above the fluffily bold p| +2637|59356|1862|1|35|46037.25|0.07|0.06|A|F|1993-12-30|1993-12-18|1994-01-12|DELIVER IN PERSON|RAIL|ingly regular requests. furiously r| +2638|78888|1396|1|3|5600.64|0.03|0.06|N|O|1996-10-09|1996-10-31|1996-10-28|NONE|MAIL|sual foxes are about t| +2638|65026|5027|2|3|2973.06|0.08|0.02|N|O|1996-11-20|1996-11-05|1996-12-14|DELIVER IN PERSON|REG AIR|g instructions sleep carefully against the | +2638|79812|9813|3|20|35836.20|0.07|0.05|N|O|1996-10-16|1996-11-13|1996-10-20|NONE|REG AIR|s integrate furiously quickly even| +2638|196291|6292|4|24|33294.96|0.03|0.02|N|O|1996-09-12|1996-10-05|1996-09-17|NONE|SHIP|olites affix slowly against the furiously| +2639|85008|25|1|15|14895.00|0.03|0.02|A|F|1992-01-05|1992-03-02|1992-01-24|DELIVER IN PERSON|FOB|pinto beans breach slyly according to th| +2639|120363|364|2|36|49800.96|0.04|0.04|R|F|1992-04-20|1992-02-21|1992-04-24|NONE|AIR| hinder idly| +2639|137949|2976|3|33|65569.02|0.00|0.05|A|F|1992-03-27|1992-02-18|1992-04-10|NONE|AIR|endencies. blithely ironic plate| +2664|898|8399|1|2|3597.78|0.01|0.08|N|O|1996-08-05|1996-10-16|1996-08-30|DELIVER IN PERSON|TRUCK|ts. unusual packages dazzle. slyly p| +2664|88430|3447|2|49|69503.07|0.10|0.04|N|O|1996-11-01|1996-09-07|1996-11-06|NONE|AIR|ly regular deposits are. regular| +2664|28226|729|3|13|15004.86|0.07|0.02|N|O|1996-08-12|1996-09-01|1996-08-31|TAKE BACK RETURN|SHIP|pths are finally final requ| +2665|146240|8755|1|34|43732.16|0.05|0.01|N|O|1996-06-20|1996-06-01|1996-07-15|TAKE BACK RETURN|MAIL|are quickly carefully regu| +2665|43738|8747|2|4|6726.92|0.09|0.05|N|O|1996-06-10|1996-05-31|1996-06-24|NONE|TRUCK|gular packa| +2665|95346|2874|3|32|42922.88|0.07|0.05|N|O|1996-04-05|1996-04-30|1996-04-28|TAKE BACK RETURN|AIR| carefully regular pat| +2665|69190|9191|4|44|51004.36|0.00|0.03|N|O|1996-04-10|1996-06-05|1996-04-15|COLLECT COD|FOB|t notornis. c| +2665|74586|7094|5|20|31211.60|0.07|0.06|N|O|1996-03-21|1996-05-25|1996-03-27|TAKE BACK RETURN|FOB|ns against the regular excuses cajole sly| +2665|153811|3812|6|26|48485.06|0.01|0.03|N|O|1996-05-09|1996-04-09|1996-05-17|TAKE BACK RETURN|RAIL|ss requests impress furiously acc| +2665|99295|4314|7|37|47888.73|0.09|0.02|N|O|1996-06-04|1996-06-07|1996-06-21|NONE|REG AIR|ithely final ide| +2666|47427|2436|1|33|45355.86|0.01|0.08|A|F|1995-04-21|1995-05-02|1995-04-26|NONE|SHIP|dependencies. quickly final ideas n| +2666|93741|6251|2|31|53776.94|0.02|0.05|R|F|1995-04-25|1995-06-17|1995-05-24|COLLECT COD|FOB|among the qu| +2666|95811|8321|3|49|88533.69|0.00|0.01|A|F|1995-04-26|1995-06-17|1995-05-07|TAKE BACK RETURN|RAIL|nic accounts. regular deposits sleep| +2666|81425|8950|4|1|1406.42|0.05|0.03|N|O|1995-07-01|1995-05-10|1995-07-29|COLLECT COD|MAIL|! fluffily final ideas| +2666|105484|5485|5|10|14894.80|0.05|0.04|N|F|1995-06-07|1995-06-23|1995-06-27|TAKE BACK RETURN|RAIL| regular theodolites. requests bo| +2667|107208|2229|1|23|27949.60|0.02|0.08|A|F|1992-11-25|1992-11-26|1992-12-03|DELIVER IN PERSON|REG AIR|ly pending foxes unwind sl| +2667|39779|9780|2|32|55000.64|0.01|0.00|A|F|1992-09-28|1992-10-18|1992-10-12|COLLECT COD|AIR|en requests boo| +2667|149448|1963|3|18|26953.92|0.08|0.06|A|F|1992-10-01|1992-11-01|1992-10-19|COLLECT COD|AIR|ost quickly. furiously careful requests a| +2667|168615|6164|4|28|47141.08|0.02|0.03|R|F|1992-10-22|1992-11-27|1992-11-08|NONE|AIR|c, busy requests wake furiously. carefully | +2667|102011|9542|5|13|13169.13|0.10|0.05|R|F|1992-09-22|1992-11-23|1992-10-11|NONE|RAIL|ans wake final| +2667|93365|5875|6|17|23092.12|0.10|0.05|R|F|1992-11-06|1992-11-27|1992-11-10|DELIVER IN PERSON|RAIL|lar instructio| +2667|181818|4337|7|26|49395.06|0.10|0.08|A|F|1992-11-03|1992-10-09|1992-12-01|TAKE BACK RETURN|SHIP|the final, regular asymptotes-- e| +2668|13308|3309|1|40|48852.00|0.00|0.03|N|O|1996-01-09|1996-03-13|1996-01-23|COLLECT COD|SHIP|pains impress blit| +2668|62476|9995|2|23|33084.81|0.08|0.08|N|O|1996-03-15|1996-03-08|1996-03-26|NONE|SHIP|ding packages. blithely regular ideas us| +2668|22744|2745|3|40|66669.60|0.04|0.04|N|O|1996-04-10|1996-02-15|1996-04-20|NONE|FOB|usly above the express,| +2668|51947|1948|4|25|47473.50|0.00|0.00|N|O|1996-03-12|1996-02-14|1996-03-27|COLLECT COD|RAIL|uctions integr| +2669|15398|5399|1|42|55162.38|0.03|0.08|A|F|1992-08-17|1992-07-27|1992-08-22|NONE|RAIL|around the care| +2670|159612|2128|1|25|41790.25|0.10|0.06|A|F|1993-01-24|1993-02-17|1993-02-06|COLLECT COD|SHIP| packages. ironic packages use. packages ab| +2670|185078|2633|2|12|13956.84|0.04|0.03|R|F|1992-12-01|1993-01-08|1992-12-18|NONE|MAIL|osits about the unusual ide| +2670|2185|9686|3|1|1087.18|0.00|0.00|A|F|1993-02-02|1993-01-11|1993-02-14|COLLECT COD|AIR|cial pinto | +2670|114801|7313|4|42|76263.60|0.01|0.03|A|F|1992-12-11|1993-02-08|1992-12-29|TAKE BACK RETURN|SHIP|lly enticing deposits. sometimes bold packa| +2670|52068|4574|5|27|27541.62|0.04|0.06|R|F|1992-12-13|1993-02-18|1993-01-09|DELIVER IN PERSON|SHIP|int daringly slyly pending att| +2670|99143|1653|6|48|54822.72|0.08|0.01|A|F|1993-01-23|1993-02-17|1993-02-19|DELIVER IN PERSON|AIR|ns. ironic| +2670|88235|8236|7|33|40366.59|0.03|0.00|A|F|1993-01-20|1993-01-10|1993-02-10|COLLECT COD|MAIL|kly express foxes. | +2671|163169|5686|1|45|55447.20|0.00|0.06|N|O|1997-09-08|1997-09-19|1997-09-29|COLLECT COD|SHIP|ly regular requests. ironi| +2671|177874|7875|2|13|25374.31|0.01|0.05|N|O|1997-10-05|1997-09-28|1997-10-12|COLLECT COD|FOB|iments use above the express, even request| +2671|122887|2888|3|27|51566.76|0.02|0.00|N|O|1997-11-17|1997-09-15|1997-11-25|DELIVER IN PERSON|TRUCK|al theodolites cajole| +2671|149919|4948|4|34|66942.94|0.09|0.07|N|O|1997-09-14|1997-10-27|1997-09-18|DELIVER IN PERSON|RAIL|sual requests. bold packages na| +2696|32256|9766|1|17|20200.25|0.02|0.00|R|F|1994-02-11|1994-01-14|1994-02-13|COLLECT COD|RAIL|g requests| +2696|111247|1248|2|5|6291.20|0.01|0.07|A|F|1994-04-14|1994-01-17|1994-05-09|TAKE BACK RETURN|SHIP|tions haggle. regu| +2696|123284|821|3|9|11765.52|0.09|0.05|R|F|1994-03-30|1994-03-13|1994-04-25|NONE|FOB|l, even deposits nag along the furious| +2696|26010|1015|4|26|24336.26|0.09|0.02|A|F|1994-02-14|1994-03-09|1994-02-17|DELIVER IN PERSON|AIR|p blithely. s| +2697|18056|3059|1|9|8766.45|0.03|0.07|N|O|1998-09-24|1998-07-29|1998-10-06|COLLECT COD|AIR|c pearls nag slyly express asympt| +2697|58748|6264|2|49|83630.26|0.05|0.01|N|O|1998-08-28|1998-08-09|1998-09-08|DELIVER IN PERSON|MAIL|lyly. pending packages wake. slyly| +2697|175848|883|3|33|63486.72|0.05|0.03|N|O|1998-08-22|1998-08-20|1998-09-20|TAKE BACK RETURN|AIR|nic packages. fluffily bold packages| +2697|72663|185|4|41|67062.06|0.06|0.07|N|O|1998-09-04|1998-08-23|1998-09-11|COLLECT COD|MAIL|instructions. deposi| +2697|37355|2362|5|15|19385.25|0.02|0.04|N|O|1998-09-17|1998-07-21|1998-10-14|TAKE BACK RETURN|TRUCK|sual dependencies. bold theodolites snooz| +2698|176606|4158|1|25|42065.00|0.00|0.08|A|F|1992-11-23|1992-11-05|1992-11-30|COLLECT COD|TRUCK|. blithely ironic packages acros| +2698|5502|8003|2|46|64745.00|0.00|0.08|R|F|1992-11-24|1992-10-22|1992-12-17|TAKE BACK RETURN|RAIL|se along the final packages. deposits | +2698|64260|9273|3|42|51418.92|0.10|0.04|R|F|1992-12-07|1992-10-05|1993-01-03|COLLECT COD|RAIL|l accounts. carefully ex| +2698|5281|7782|4|47|55755.16|0.06|0.08|A|F|1992-09-18|1992-10-14|1992-10-18|COLLECT COD|MAIL|blithely final requests after t| +2698|156655|9171|5|46|78735.90|0.08|0.02|A|F|1992-09-08|1992-09-23|1992-09-10|NONE|REG AIR|ect carefu| +2698|93214|8233|6|5|6036.05|0.06|0.01|A|F|1992-10-27|1992-11-02|1992-11-20|TAKE BACK RETURN|AIR|ial, regular pinto beans wake f| +2698|33919|6423|7|4|7411.64|0.09|0.03|A|F|1992-10-16|1992-09-24|1992-11-07|COLLECT COD|MAIL|y. ironic requests run | +2699|65457|470|1|8|11379.60|0.00|0.03|N|O|1996-08-22|1996-07-27|1996-09-02|NONE|RAIL|ost blithely. daringly silent dependen| +2699|131898|1899|2|18|34738.02|0.01|0.04|N|O|1996-07-31|1996-08-24|1996-08-27|TAKE BACK RETURN|SHIP|ly final pinto b| +2699|4616|2117|3|25|38015.25|0.10|0.07|N|O|1996-09-08|1996-08-24|1996-09-15|TAKE BACK RETURN|FOB|. slyly bold deposits a| +2700|96729|9239|1|37|63851.64|0.03|0.02|R|F|1994-11-18|1994-10-06|1994-12-07|DELIVER IN PERSON|SHIP|e fluffily regular reque| +2700|119623|7157|2|7|11498.34|0.09|0.06|A|F|1994-09-30|1994-09-25|1994-10-18|DELIVER IN PERSON|RAIL|deas haggle blithely express accou| +2700|88999|9000|3|15|29819.85|0.04|0.07|R|F|1994-10-19|1994-10-06|1994-11-17|NONE|RAIL|ithely brave packa| +2701|166631|1664|1|15|25464.45|0.00|0.01|R|F|1993-09-26|1993-10-20|1993-10-13|NONE|FOB|lar accoun| +2701|155414|5415|2|20|29388.20|0.05|0.04|R|F|1993-09-20|1993-09-05|1993-09-25|NONE|TRUCK|cajole alon| +2701|33030|540|3|31|29853.93|0.10|0.07|A|F|1993-10-05|1993-09-07|1993-10-28|TAKE BACK RETURN|RAIL|nic theodolite| +2701|122768|7793|4|50|89538.00|0.01|0.03|R|F|1993-08-22|1993-09-28|1993-09-10|COLLECT COD|TRUCK|ironic pinto beans detect carefully. fl| +2701|147749|264|5|33|59292.42|0.09|0.06|R|F|1993-08-28|1993-10-29|1993-09-01|TAKE BACK RETURN|TRUCK|uctions cajole after the deposits| +2702|132362|9902|1|15|20915.40|0.04|0.04|N|O|1997-02-27|1997-02-12|1997-03-08|NONE|AIR|xes haggle blithely instructions. re| +2703|190424|2944|1|24|36346.08|0.02|0.08|N|O|1998-04-11|1998-06-02|1998-05-03|DELIVER IN PERSON|AIR|e furiously pinto beans. de| +2703|51855|6866|2|50|90342.50|0.00|0.07|N|O|1998-07-05|1998-06-07|1998-07-18|TAKE BACK RETURN|FOB|ely even depen| +2703|112431|4943|3|12|17321.16|0.03|0.00|N|O|1998-04-02|1998-06-16|1998-04-14|DELIVER IN PERSON|RAIL|se furiously among the ironic packages. | +2703|14073|9076|4|27|26650.89|0.10|0.08|N|O|1998-06-04|1998-04-30|1998-06-21|NONE|FOB|counts cajole slyly ironic platelets. sl| +2703|124724|9749|5|17|29728.24|0.10|0.03|N|O|1998-07-08|1998-05-31|1998-07-12|COLLECT COD|SHIP|ns. dolphins are | +2703|26976|1981|6|17|32350.49|0.05|0.01|N|O|1998-06-05|1998-06-09|1998-06-13|TAKE BACK RETURN|AIR|structions. furiously reg| +2703|169829|9830|7|23|43672.86|0.00|0.01|N|O|1998-07-09|1998-06-23|1998-07-29|NONE|FOB|r packages. carefully expr| +2728|107837|5368|1|34|62724.22|0.09|0.02|N|O|1997-04-22|1997-05-24|1997-05-18|DELIVER IN PERSON|RAIL|egular accounts. unusual ideas wake a| +2728|4533|4534|2|7|10062.71|0.01|0.00|N|O|1997-07-10|1997-05-28|1997-07-25|COLLECT COD|TRUCK|ven accounts. | +2728|183668|1223|3|1|1751.66|0.06|0.03|N|O|1997-05-08|1997-06-21|1997-05-29|NONE|TRUCK|iously about the carefully | +2728|99324|9325|4|22|29113.04|0.04|0.03|N|O|1997-06-15|1997-05-20|1997-06-22|COLLECT COD|FOB|quests according to the even, regul| +2729|173788|8823|1|22|40959.16|0.04|0.02|A|F|1993-04-29|1993-03-10|1993-05-01|NONE|MAIL|are quickly across the carefully fi| +2729|48632|8633|2|7|11064.41|0.09|0.07|A|F|1993-01-30|1993-03-22|1993-02-05|TAKE BACK RETURN|AIR| sleep blithely s| +2730|37736|2743|1|38|63601.74|0.10|0.02|A|F|1994-08-27|1994-09-06|1994-09-06|DELIVER IN PERSON|FOB|above the regular deposits n| +2730|27059|2064|2|42|41414.10|0.09|0.01|R|F|1994-06-29|1994-08-16|1994-07-08|COLLECT COD|AIR|sts thrash furiously ironic foxes. reques| +2730|176854|4406|3|25|48271.25|0.10|0.00|R|F|1994-09-07|1994-07-22|1994-09-13|DELIVER IN PERSON|AIR|ic platelets use bold ac| +2730|171389|3907|4|36|52573.68|0.03|0.08|R|F|1994-07-27|1994-08-12|1994-08-11|TAKE BACK RETURN|TRUCK|s lose. furio| +2730|129358|9359|5|13|18035.55|0.07|0.06|A|F|1994-09-04|1994-07-24|1994-09-25|NONE|RAIL|ide of the furiously final accounts. quickl| +2731|20142|7649|1|6|6372.84|0.02|0.03|N|O|1997-12-31|1998-02-15|1998-01-24|TAKE BACK RETURN|SHIP|ss requests. fluffily ironic| +2732|69809|9810|1|37|65815.60|0.08|0.05|A|F|1992-07-20|1992-07-30|1992-07-31|NONE|RAIL|long the regular packages. regular| +2733|26819|6820|1|25|43645.25|0.10|0.02|A|F|1993-02-16|1993-03-09|1993-02-21|NONE|MAIL| to the slyly slow accounts. even hock| +2733|132873|5387|2|27|51458.49|0.08|0.01|R|F|1993-05-18|1993-04-05|1993-06-11|COLLECT COD|TRUCK|ans above the slyly ironic multipliers u| +2733|191495|6534|3|8|12691.92|0.06|0.05|A|F|1993-04-16|1993-03-15|1993-04-17|NONE|MAIL|ccounts instead of the | +2733|40994|8507|4|28|54179.72|0.08|0.05|R|F|1993-04-22|1993-03-10|1993-05-04|NONE|RAIL|as alongside of the foxes de| +2734|185524|5525|1|22|35409.44|0.08|0.00|A|F|1993-07-17|1993-08-28|1993-08-16|NONE|AIR|all sleep sly| +2734|97004|4532|2|15|15015.00|0.10|0.03|R|F|1993-07-07|1993-08-06|1993-07-11|NONE|MAIL|lithely unusual foxes cajole furiously| +2734|141318|3833|3|39|53013.09|0.07|0.06|A|F|1993-08-16|1993-08-11|1993-08-21|COLLECT COD|REG AIR| ironic, ironic platelet| +2734|114878|2412|4|27|51107.49|0.10|0.08|R|F|1993-10-10|1993-08-03|1993-10-12|NONE|TRUCK|rouches. quickly even platelets| +2734|143798|6313|5|28|51570.12|0.06|0.05|R|F|1993-09-13|1993-08-19|1993-10-02|DELIVER IN PERSON|MAIL|riously regular accounts wake carefully wit| +2734|616|8117|6|17|25782.37|0.06|0.07|A|F|1993-06-14|1993-07-27|1993-06-27|TAKE BACK RETURN|SHIP|ular foxes boost slyly| +2735|33603|8610|1|36|55317.60|0.09|0.04|A|F|1994-05-03|1994-05-21|1994-06-01|TAKE BACK RETURN|SHIP|ng the pinto beans. f| +2735|157981|3012|2|9|18350.82|0.03|0.03|R|F|1994-06-12|1994-04-20|1994-06-14|TAKE BACK RETURN|FOB|posits about the silent plat| +2735|186256|1293|3|9|12080.25|0.00|0.07|A|F|1994-07-02|1994-05-29|1994-07-13|NONE|TRUCK|r requests cajole flu| +2735|188553|3590|4|46|75511.30|0.05|0.05|A|F|1994-06-19|1994-05-30|1994-07-09|NONE|SHIP|s across t| +2735|10038|7542|5|46|43609.38|0.09|0.03|A|F|1994-04-25|1994-05-27|1994-05-16|TAKE BACK RETURN|AIR|ully final | +2760|36542|9046|1|5|7392.70|0.01|0.05|N|O|1996-10-30|1996-11-10|1996-11-28|COLLECT COD|SHIP|ages. fluffi| +2760|152391|4907|2|45|64952.55|0.06|0.08|N|O|1996-12-03|1996-10-28|1996-12-28|COLLECT COD|AIR|kly pending foxes unwind carefu| +2760|24115|1622|3|8|8312.88|0.05|0.05|N|O|1996-09-21|1996-10-29|1996-10-14|DELIVER IN PERSON|TRUCK|n deposits according to the | +2760|97538|2557|4|3|4606.59|0.04|0.00|N|O|1996-11-07|1996-11-18|1996-12-06|DELIVER IN PERSON|FOB|y during the even pinto beans. expr| +2761|191373|3893|1|49|71754.13|0.07|0.00|N|O|1998-04-16|1998-04-24|1998-05-03|COLLECT COD|SHIP|tes haggle furiously. special, regular dep| +2762|68017|8018|1|43|42355.43|0.10|0.03|N|O|1997-05-15|1997-04-09|1997-05-29|DELIVER IN PERSON|FOB|use about the furiously | +2762|157157|2188|2|3|3642.45|0.09|0.08|N|O|1997-06-07|1997-04-01|1997-06-25|NONE|REG AIR|hely among the permanent | +2762|122335|9872|3|43|58365.19|0.09|0.07|N|O|1997-03-27|1997-05-18|1997-04-21|COLLECT COD|MAIL|s blithely express, final wat| +2763|32390|7397|1|14|18513.46|0.02|0.01|N|O|1997-06-06|1997-05-29|1997-06-16|COLLECT COD|REG AIR|usly ironic requests. ironic, even depos| +2763|178578|8579|2|5|8282.85|0.07|0.03|N|O|1997-07-14|1997-06-13|1997-07-24|COLLECT COD|REG AIR|uietly bold ideas haggle. ideas detect| +2763|146660|1689|3|50|85333.00|0.04|0.02|N|O|1997-08-19|1997-05-31|1997-08-30|COLLECT COD|SHIP|special packages. | +2763|110272|7806|4|7|8975.89|0.05|0.04|N|O|1997-07-04|1997-06-13|1997-07-08|DELIVER IN PERSON|MAIL|c accounts above the furiously final f| +2763|126867|6868|5|20|37877.20|0.03|0.01|N|O|1997-06-06|1997-07-15|1997-06-18|COLLECT COD|RAIL|ide of the quickly express asymptotes.| +2764|31552|9062|1|28|41539.40|0.04|0.07|N|O|1997-10-01|1997-12-01|1997-10-05|DELIVER IN PERSON|AIR|posits cajole slyl| +2764|82684|209|2|35|58333.80|0.04|0.04|N|O|1997-12-29|1997-11-10|1998-01-26|DELIVER IN PERSON|TRUCK|ites. blithely ironic dependencies us| +2764|61805|6818|3|38|67138.40|0.03|0.03|N|O|1998-01-13|1997-11-05|1998-02-12|NONE|REG AIR|ular instr| +2764|143389|932|4|46|65889.48|0.04|0.00|N|O|1998-01-05|1997-10-24|1998-01-25|COLLECT COD|SHIP| express accounts. slyly stealthy re| +2765|55314|2830|1|6|7615.86|0.01|0.00|R|F|1992-03-31|1992-03-28|1992-04-26|COLLECT COD|RAIL|ver after the blithely iron| +2765|55021|7527|2|41|40016.82|0.00|0.06|R|F|1992-05-16|1992-04-16|1992-06-08|NONE|RAIL|fter the ironic accounts. silent ide| +2765|129070|6607|3|31|34071.17|0.00|0.05|A|F|1992-03-23|1992-03-05|1992-04-02|TAKE BACK RETURN|FOB|al theodolites haggle depe| +2765|66446|6447|4|16|22599.04|0.05|0.02|A|F|1992-03-13|1992-04-10|1992-04-12|NONE|SHIP|heodolites boo| +2765|151993|4509|5|23|47034.77|0.07|0.05|A|F|1992-04-26|1992-03-27|1992-05-03|TAKE BACK RETURN|MAIL|ongside of the | +2765|140900|8443|6|2|3881.80|0.03|0.07|R|F|1992-02-20|1992-03-16|1992-03-08|NONE|AIR|as wake blithely. regular | +2765|97497|2516|7|7|10461.43|0.04|0.00|R|F|1992-01-27|1992-04-01|1992-01-28|COLLECT COD|SHIP|ions. slyly e| +2766|22202|9709|1|3|3372.60|0.01|0.03|A|F|1993-06-03|1993-07-30|1993-06-24|TAKE BACK RETURN|REG AIR|ests are bold, unusual | +2766|133760|8787|2|37|66369.12|0.01|0.05|R|F|1993-08-09|1993-06-26|1993-08-13|DELIVER IN PERSON|REG AIR|its wake furiou| +2767|35783|3293|1|7|12031.46|0.05|0.06|N|F|1995-06-08|1995-07-30|1995-07-05|COLLECT COD|TRUCK| blithely bold accounts. pending | +2767|197300|7301|2|5|6986.50|0.05|0.01|N|O|1995-08-15|1995-08-18|1995-09-01|NONE|RAIL|nts sleep finally. slyly pend| +2767|8972|3973|3|39|73357.83|0.04|0.00|N|F|1995-06-11|1995-07-01|1995-07-04|TAKE BACK RETURN|SHIP|tructions are quic| +2767|176606|6607|4|49|82447.40|0.06|0.08|N|O|1995-07-19|1995-07-22|1995-07-24|COLLECT COD|REG AIR|s are quickly deposits. sly| +2792|32923|5427|1|10|18559.20|0.02|0.08|A|F|1993-04-16|1993-05-31|1993-05-06|COLLECT COD|FOB|ously fluffily even | +2792|123661|6174|2|13|21900.58|0.06|0.07|R|F|1993-07-21|1993-05-06|1993-07-31|NONE|AIR|ests nag quickl| +2792|156701|1732|3|50|87885.00|0.06|0.00|R|F|1993-07-21|1993-06-20|1993-07-28|TAKE BACK RETURN|FOB| the slyly silent deposits.| +2792|66190|6191|4|32|36998.08|0.07|0.04|A|F|1993-05-30|1993-06-12|1993-06-07|DELIVER IN PERSON|TRUCK|ress plate| +2793|80479|480|1|12|17513.64|0.03|0.06|N|O|1995-10-19|1995-09-05|1995-10-25|COLLECT COD|AIR|usly final dolphins. silent instru| +2793|8365|8366|2|19|24193.84|0.04|0.05|N|O|1995-09-15|1995-08-31|1995-09-22|TAKE BACK RETURN|REG AIR|carefully regular instructions: blith| +2794|158636|1152|1|38|64395.94|0.03|0.05|A|F|1992-05-10|1992-03-11|1992-05-30|TAKE BACK RETURN|TRUCK|pecial, ironic foxes haggle bravely ca| +2794|181717|1718|2|11|19785.81|0.06|0.08|A|F|1992-01-19|1992-02-24|1992-02-12|COLLECT COD|TRUCK|lly express requests nag | +2794|115561|8073|3|1|1576.56|0.02|0.07|A|F|1992-03-05|1992-02-15|1992-03-27|COLLECT COD|FOB|g stealthily ironi| +2794|17322|4826|4|45|55769.40|0.02|0.00|A|F|1992-01-25|1992-02-14|1992-01-28|NONE|MAIL|e even, speci| +2794|129258|9259|5|7|9010.75|0.04|0.05|A|F|1992-02-26|1992-03-13|1992-03-04|COLLECT COD|SHIP|lly special pinto beans use| +2795|109826|9827|1|31|56910.42|0.10|0.05|A|F|1993-11-02|1993-10-21|1993-11-08|NONE|AIR|gular instru| +2795|36462|1469|2|9|12586.14|0.01|0.07|R|F|1993-11-08|1993-10-22|1993-11-16|COLLECT COD|TRUCK|. express foxes c| +2795|508|8009|3|16|22536.00|0.04|0.03|R|F|1993-11-23|1993-10-31|1993-12-22|COLLECT COD|AIR|ctions. slyly special platelets acros| +2795|123203|740|4|18|22071.60|0.00|0.08|A|F|1993-11-27|1993-10-01|1993-11-30|COLLECT COD|FOB|tes against the unusual pac| +2795|65571|8078|5|49|75291.93|0.03|0.03|A|F|1993-10-29|1993-10-09|1993-11-28|TAKE BACK RETURN|FOB|ve the regular d| +2796|20823|3326|1|48|83703.36|0.07|0.02|A|F|1993-03-26|1993-03-11|1993-04-03|TAKE BACK RETURN|RAIL|nts detect above the regular epitaphs. i| +2796|167818|335|2|29|54688.49|0.09|0.01|A|F|1993-04-03|1993-02-24|1993-05-02|TAKE BACK RETURN|TRUCK|ans. blithely express requests | +2796|108891|3912|3|31|58896.59|0.08|0.04|R|F|1993-03-10|1993-02-26|1993-04-06|DELIVER IN PERSON|AIR|y; blithely re| +2797|39822|7332|1|11|19380.02|0.04|0.01|R|F|1994-06-04|1994-07-12|1994-06-22|DELIVER IN PERSON|REG AIR|l foxes haggle carefully aroun| +2797|75249|7757|2|11|13466.64|0.03|0.02|A|F|1994-07-19|1994-07-12|1994-08-01|DELIVER IN PERSON|TRUCK| carefully even foxes cajole carefully | +2797|93704|8723|3|14|23767.80|0.07|0.07|R|F|1994-05-31|1994-08-13|1994-06-25|DELIVER IN PERSON|SHIP|es. silent | +2797|77260|2275|4|14|17321.64|0.10|0.04|R|F|1994-05-22|1994-07-18|1994-05-25|COLLECT COD|RAIL|g requests dazzle against the final pa| +2797|97570|2589|5|19|29783.83|0.09|0.06|A|F|1994-06-06|1994-06-19|1994-06-11|TAKE BACK RETURN|MAIL|he slyly unus| +2797|43328|5833|6|22|27969.04|0.03|0.03|A|F|1994-08-21|1994-06-30|1994-09-13|NONE|TRUCK|ng the unusua| +2798|76685|9193|1|50|83084.00|0.04|0.08|A|F|1992-08-11|1992-06-05|1992-08-17|NONE|RAIL|s. carefully unusual dol| +2798|43084|5589|2|25|25677.00|0.08|0.08|A|F|1992-05-19|1992-06-03|1992-06-16|COLLECT COD|RAIL|quests. ir| +2798|106172|1193|3|46|54195.82|0.10|0.00|A|F|1992-05-10|1992-06-24|1992-06-02|NONE|MAIL|es. even, even pinto be| +2798|19642|9643|4|38|59342.32|0.01|0.08|A|F|1992-07-19|1992-06-25|1992-07-23|TAKE BACK RETURN|SHIP|would cajole across the eve| +2798|120617|3130|5|29|47490.69|0.06|0.05|R|F|1992-06-16|1992-07-12|1992-07-08|COLLECT COD|RAIL|ffily busy pa| +2799|124385|6898|1|34|47918.92|0.01|0.00|R|F|1993-12-13|1993-12-18|1993-12-30|TAKE BACK RETURN|SHIP|nal accounts haggle care| +2799|131950|4464|2|10|19819.50|0.03|0.01|A|F|1993-12-05|1993-12-29|1993-12-13|TAKE BACK RETURN|TRUCK|special theodolites. quickly final | +2799|83378|5887|3|2|2722.74|0.06|0.06|R|F|1993-12-12|1993-12-15|1994-01-03|TAKE BACK RETURN|AIR| pinto beans. asymptotes are above the flu| +2824|115880|5881|1|2|3791.76|0.06|0.01|N|O|1997-04-13|1997-02-25|1997-05-05|DELIVER IN PERSON|AIR|r, even ideas wake special, express requ| +2824|192629|5149|2|15|25824.30|0.10|0.04|N|O|1997-05-05|1997-04-14|1997-05-12|DELIVER IN PERSON|TRUCK|al courts wake furiously qui| +2824|112911|445|3|32|61565.12|0.04|0.05|N|O|1997-04-24|1997-04-09|1997-05-06|NONE|FOB|fluffily ironic foxes across the sl| +2824|85629|3154|4|22|35521.64|0.06|0.08|N|O|1997-04-18|1997-04-14|1997-04-25|DELIVER IN PERSON|TRUCK|ily ironic pla| +2824|155002|5003|5|8|8456.00|0.09|0.01|N|O|1997-04-09|1997-03-02|1997-05-07|TAKE BACK RETURN|SHIP|mptotes. furiously careful deposit| +2824|103825|1356|6|12|21945.84|0.05|0.03|N|O|1997-02-04|1997-03-08|1997-02-10|DELIVER IN PERSON|RAIL|lar pinto beans| +2825|183816|3817|1|29|55094.49|0.05|0.02|N|O|1996-04-10|1996-03-03|1996-04-15|NONE|RAIL| the slyly even warhorses wake c| +2825|188043|5598|2|43|48634.72|0.10|0.04|N|O|1996-03-04|1996-01-19|1996-03-22|COLLECT COD|TRUCK|dolites are furiously alongside o| +2825|23028|8033|3|47|44697.94|0.09|0.00|N|O|1996-03-04|1996-03-16|1996-03-24|DELIVER IN PERSON|FOB|blithely fina| +2825|25816|8319|4|24|41803.44|0.01|0.07|N|O|1996-01-23|1996-01-31|1996-02-08|NONE|AIR|sual pinto be| +2825|77122|7123|5|10|10991.20|0.04|0.01|N|O|1996-03-29|1996-02-27|1996-04-23|COLLECT COD|MAIL|ackages. blithely fin| +2825|173487|8522|6|29|45253.92|0.06|0.06|N|O|1996-03-17|1996-03-14|1996-04-11|NONE|FOB|equests affix furiously| +2826|125843|8356|1|29|54196.36|0.04|0.06|N|O|1997-07-05|1997-04-08|1997-08-03|TAKE BACK RETURN|SHIP|y special deposits haggle slyly across the | +2826|43300|813|2|35|43515.50|0.06|0.04|N|O|1997-05-20|1997-06-02|1997-05-29|NONE|SHIP| accounts. ironic instructions aga| +2827|10681|8185|1|5|7958.40|0.02|0.02|N|O|1998-08-04|1998-07-20|1998-08-30|TAKE BACK RETURN|TRUCK|lly bravely enticing instructi| +2827|111563|6586|2|45|70855.20|0.07|0.01|N|O|1998-06-28|1998-07-22|1998-07-17|COLLECT COD|AIR|ly fluffily regular pi| +2828|127858|2883|1|9|16972.65|0.07|0.05|A|F|1994-08-07|1994-09-01|1994-08-14|COLLECT COD|MAIL| the accounts. regu| +2828|97915|425|2|21|40171.11|0.00|0.03|A|F|1994-08-23|1994-10-12|1994-09-19|DELIVER IN PERSON|AIR|kages wake blithely along | +2828|44693|2206|3|8|13101.52|0.10|0.01|A|F|1994-10-23|1994-08-25|1994-10-29|TAKE BACK RETURN|REG AIR|ly furiously special pinto bea| +2828|149532|7075|4|21|33212.13|0.00|0.05|R|F|1994-11-01|1994-08-26|1994-11-21|COLLECT COD|AIR| slyly regu| +2828|171089|1090|5|48|55683.84|0.02|0.00|R|F|1994-08-29|1994-09-08|1994-09-27|DELIVER IN PERSON|AIR|s after the furiously even requests | +2828|89494|4511|6|36|53405.64|0.07|0.08|R|F|1994-11-19|1994-09-09|1994-11-21|TAKE BACK RETURN|TRUCK| wake after the pending platelets. i| +2828|109255|6786|7|35|44248.75|0.04|0.00|A|F|1994-09-09|1994-09-13|1994-09-25|NONE|RAIL|sly. quickly express | +2829|43349|5854|1|30|38770.20|0.07|0.02|A|F|1994-07-22|1994-06-25|1994-08-15|DELIVER IN PERSON|REG AIR|its are fluffily slyly express de| +2830|100489|490|1|29|43194.92|0.08|0.06|N|O|1998-07-25|1998-06-28|1998-08-04|DELIVER IN PERSON|MAIL|y final courts af| +2830|102089|7110|2|13|14184.04|0.08|0.06|N|O|1998-06-20|1998-07-16|1998-07-03|NONE|MAIL|atelets. bold accounts boost | +2830|9585|4586|3|30|44837.40|0.04|0.05|N|O|1998-08-25|1998-07-19|1998-09-10|DELIVER IN PERSON|RAIL|instructions sleep quickly p| +2830|91338|8866|4|8|10634.64|0.09|0.05|N|O|1998-06-06|1998-08-06|1998-06-23|DELIVER IN PERSON|MAIL|longside of the bravely final ide| +2831|82401|2402|1|30|41502.00|0.10|0.07|A|F|1995-04-25|1995-05-02|1995-05-19|NONE|MAIL|en packages.| +2831|107445|7446|2|21|30501.24|0.09|0.08|R|F|1995-05-13|1995-03-22|1995-06-06|NONE|MAIL| express pinto beans. furiously ironic | +2831|20462|5467|3|3|4147.38|0.03|0.05|A|F|1995-02-13|1995-04-08|1995-03-12|NONE|RAIL| excuses cajole. slyly re| +2831|104327|9348|4|1|1331.32|0.06|0.00|R|F|1995-05-26|1995-04-30|1995-06-11|NONE|REG AIR|yly. ideas could | +2831|23374|8379|5|6|7784.22|0.08|0.01|R|F|1995-02-24|1995-04-19|1995-03-19|COLLECT COD|FOB|eposits. unusual pinto | +2831|41901|9414|6|44|81087.60|0.09|0.06|A|F|1995-05-10|1995-03-23|1995-06-06|TAKE BACK RETURN|AIR|e of the quickly even requests. fi| +2856|10381|382|1|50|64569.00|0.05|0.02|A|F|1993-10-14|1993-08-12|1993-10-16|NONE|AIR|olites integrate according to the furio| +2856|62412|4919|2|26|35734.66|0.03|0.00|R|F|1993-08-17|1993-08-18|1993-09-13|COLLECT COD|FOB|uriously along the carefully final ideas. f| +2856|157547|7548|3|7|11231.78|0.10|0.00|R|F|1993-10-21|1993-09-08|1993-10-22|DELIVER IN PERSON|AIR|packages. ac| +2856|85444|5445|4|40|57177.60|0.04|0.08|R|F|1993-08-14|1993-09-17|1993-08-20|DELIVER IN PERSON|TRUCK|ress accoun| +2856|52267|4773|5|46|56085.96|0.03|0.04|A|F|1993-08-25|1993-09-08|1993-08-29|NONE|AIR| instructions dazzle slyly. fl| +2856|47560|5073|6|2|3015.12|0.10|0.05|R|F|1993-10-13|1993-09-30|1993-10-14|NONE|SHIP| cajole express ideas. bl| +2857|81886|6903|1|43|80318.84|0.08|0.07|N|O|1998-03-17|1998-03-04|1998-03-29|NONE|SHIP|regular escapades affix quickly at the ca| +2857|41286|1287|2|5|6136.40|0.09|0.03|N|O|1998-02-21|1998-04-04|1998-03-01|DELIVER IN PERSON|SHIP|ts maintain furiously with the furio| +2858|184531|9568|1|32|51696.96|0.04|0.02|R|F|1992-04-25|1992-04-19|1992-05-10|NONE|AIR|e dolphins. furiousl| +2859|94011|6521|1|11|11055.11|0.08|0.00|N|O|1996-05-25|1996-08-11|1996-05-30|TAKE BACK RETURN|MAIL|le furiously bl| +2859|33801|6305|2|25|43370.00|0.05|0.06|N|O|1996-09-01|1996-08-19|1996-09-04|NONE|AIR|atelets. blithely ev| +2860|79550|2058|1|2|3059.10|0.01|0.06|A|F|1992-05-12|1992-03-25|1992-06-03|DELIVER IN PERSON|SHIP|deas wake instead of the unusual, ex| +2860|186370|8889|2|8|11650.96|0.10|0.02|R|F|1992-05-19|1992-04-03|1992-06-12|TAKE BACK RETURN|TRUCK|gularly quickly regu| +2860|113219|8242|3|10|12322.10|0.02|0.05|R|F|1992-04-05|1992-05-06|1992-04-18|NONE|REG AIR| haggle carefully outsi| +2860|61820|4327|4|50|89091.00|0.05|0.06|R|F|1992-04-30|1992-04-08|1992-05-21|COLLECT COD|FOB|uffily. brave platelets wake quickl| +2860|6863|1864|5|28|49556.08|0.01|0.08|A|F|1992-05-23|1992-05-13|1992-06-21|TAKE BACK RETURN|SHIP|quickly even deposits affix.| +2860|142850|7879|6|46|87071.10|0.07|0.04|R|F|1992-05-08|1992-04-01|1992-05-16|TAKE BACK RETURN|TRUCK|the slyly ironic accoun| +2860|75227|242|7|46|55302.12|0.04|0.07|R|F|1992-03-11|1992-03-29|1992-03-22|NONE|TRUCK|e fluffily spec| +2861|126868|1893|1|36|68214.96|0.05|0.04|N|O|1996-06-03|1996-07-26|1996-06-12|NONE|AIR|ecial, regular theodolites nag furiously| +2861|64362|4363|2|25|33159.00|0.10|0.03|N|O|1996-07-07|1996-07-26|1996-08-06|DELIVER IN PERSON|REG AIR|yly. furiously special plate| +2861|116029|8541|3|42|43890.84|0.03|0.07|N|O|1996-06-03|1996-08-15|1996-06-17|NONE|FOB|inal requests cajole furiously agains| +2861|86075|3600|4|34|36076.38|0.05|0.05|N|O|1996-09-17|1996-08-01|1996-09-24|COLLECT COD|SHIP| ironic deposits are slyly | +2861|47140|2149|5|47|51095.58|0.03|0.07|N|O|1996-09-07|1996-06-27|1996-09-13|COLLECT COD|MAIL|ously deposits. blithely| +2861|65496|509|6|16|23383.84|0.09|0.06|N|O|1996-07-29|1996-08-06|1996-08-06|DELIVER IN PERSON|FOB|ts haggle boldly acro| +2861|177242|9760|7|9|11873.16|0.06|0.00|N|O|1996-05-27|1996-07-19|1996-06-17|TAKE BACK RETURN|AIR|cial requests nag f| +2862|94936|9955|1|24|46342.32|0.10|0.05|N|O|1997-01-10|1996-12-21|1997-02-08|NONE|AIR|ular packages haggle across th| +2862|174367|1919|2|7|10089.52|0.03|0.08|N|O|1997-01-20|1996-12-13|1997-01-25|TAKE BACK RETURN|SHIP|cording to the even instructions. | +2862|182137|2138|3|14|17067.82|0.03|0.07|N|O|1996-12-15|1997-01-04|1996-12-26|NONE|REG AIR|ss requests| +2862|164059|9092|4|11|12353.55|0.02|0.00|N|O|1996-12-31|1996-11-21|1997-01-08|NONE|AIR|uriously regular accounts wake nev| +2863|40312|5321|1|18|22541.58|0.04|0.04|N|O|1995-06-30|1995-05-31|1995-07-14|COLLECT COD|AIR|egular foxes. special ideas nag quickly. re| +2888|39692|4699|1|42|68530.98|0.06|0.06|N|O|1997-02-19|1997-02-17|1997-02-21|TAKE BACK RETURN|REG AIR|ts are furiously aft| +2888|90220|7748|2|39|47198.58|0.01|0.03|N|O|1997-03-23|1997-02-04|1997-04-11|DELIVER IN PERSON|RAIL|posits. carefully regular acc| +2888|121708|6733|3|36|62269.20|0.01|0.01|N|O|1997-03-09|1997-03-01|1997-03-21|TAKE BACK RETURN|AIR|ckages wake fluffily. fluffily iron| +2888|138567|8568|4|29|46561.24|0.08|0.06|N|O|1997-01-25|1997-02-27|1997-02-01|NONE|FOB| among the quickly| +2888|84538|9555|5|17|25883.01|0.06|0.04|N|O|1997-04-04|1997-02-18|1997-04-16|TAKE BACK RETURN|AIR|re deposits. final, ironic theodol| +2888|23849|8854|6|2|3545.68|0.01|0.05|N|O|1997-01-27|1997-02-10|1997-02-14|TAKE BACK RETURN|SHIP|encies wake| +2888|29225|1728|7|42|48477.24|0.01|0.08|N|O|1997-03-07|1997-02-24|1997-03-21|DELIVER IN PERSON|AIR| ironic pinto beans. quickly| +2889|184374|6893|1|13|18958.81|0.03|0.04|A|F|1994-01-21|1993-11-23|1994-02-07|COLLECT COD|RAIL|inal ideas sleep regular foxes. final id| +2889|160511|3028|2|46|72289.46|0.04|0.01|R|F|1994-01-10|1993-12-03|1994-02-07|TAKE BACK RETURN|FOB|y regular packages wake blithely deposits| +2889|101219|1220|3|6|7321.26|0.10|0.07|R|F|1994-02-13|1993-12-22|1994-03-07|DELIVER IN PERSON|REG AIR|sometimes after the c| +2889|179410|1928|4|40|59576.40|0.06|0.08|R|F|1993-12-26|1993-12-06|1994-01-01|TAKE BACK RETURN|REG AIR|ts mold carefully after the furi| +2889|142606|5121|5|12|19783.20|0.05|0.07|A|F|1993-11-24|1993-12-16|1993-12-15|TAKE BACK RETURN|MAIL|g blithely even packages.| +2889|178650|3685|6|21|36301.65|0.09|0.07|A|F|1994-02-11|1993-12-17|1994-02-20|COLLECT COD|RAIL|xes after th| +2890|5991|8492|1|35|66394.65|0.10|0.08|N|O|1995-11-25|1995-11-24|1995-12-06|DELIVER IN PERSON|AIR|ar deposits. f| +2891|41643|1644|1|17|26938.88|0.07|0.08|R|F|1993-01-25|1993-01-30|1993-01-27|NONE|FOB|etect carefully ca| +2891|92611|139|2|30|48108.30|0.00|0.06|A|F|1992-12-05|1993-01-09|1992-12-12|NONE|AIR|grate blithely| +2891|101945|6966|3|17|33097.98|0.00|0.06|A|F|1992-12-21|1993-01-24|1993-01-01|NONE|SHIP|usual deposits. special| +2891|181539|1540|4|35|56718.55|0.04|0.08|R|F|1993-01-15|1993-01-21|1993-02-11|TAKE BACK RETURN|RAIL|sts cajole fluffily| +2891|113174|708|5|41|48673.97|0.07|0.08|R|F|1993-03-12|1993-02-05|1993-04-07|DELIVER IN PERSON|REG AIR|ly. carefully regular excuse| +2892|56570|6571|1|15|22898.55|0.03|0.07|R|F|1993-09-22|1993-10-01|1993-10-16|COLLECT COD|RAIL|ess packag| +2893|96650|1669|1|10|16466.50|0.06|0.00|R|F|1994-01-03|1994-01-21|1994-01-23|TAKE BACK RETURN|TRUCK|efully fina| +2893|186175|8694|2|14|17656.38|0.01|0.00|A|F|1994-01-24|1993-12-27|1994-02-15|NONE|RAIL|al account| +2893|38500|6010|3|6|8631.00|0.06|0.05|R|F|1993-11-09|1993-12-27|1993-11-14|DELIVER IN PERSON|AIR|ully unusual platelets. | +2894|161374|6407|1|40|57414.80|0.01|0.04|A|F|1994-01-27|1994-01-24|1994-02-17|COLLECT COD|MAIL| special packages. slyly i| +2894|199592|7150|2|28|47364.52|0.06|0.04|A|F|1994-01-30|1994-02-01|1994-02-18|COLLECT COD|TRUCK| the furiously ironic foxes nag quic| +2894|126559|4096|3|38|60250.90|0.01|0.01|A|F|1993-12-17|1993-12-17|1994-01-13|TAKE BACK RETURN|TRUCK| final deposits grow. carefully ir| +2895|177657|5209|1|7|12142.55|0.01|0.06|A|F|1993-08-07|1993-08-17|1993-08-18|TAKE BACK RETURN|RAIL|nic foxes cajole reg| +2895|70394|5409|2|48|65490.72|0.09|0.00|A|F|1993-06-17|1993-07-12|1993-06-24|TAKE BACK RETURN|RAIL|gside of the slyly regular depo| +2895|100647|648|3|39|64257.96|0.09|0.01|R|F|1993-07-10|1993-07-12|1993-08-05|TAKE BACK RETURN|SHIP|ts breach about the slyly express reques| +2920|31079|3583|1|5|5050.35|0.10|0.03|N|O|1996-07-18|1996-06-21|1996-07-21|COLLECT COD|REG AIR|ccounts across the reg| +2920|141250|1251|2|48|61980.00|0.10|0.07|N|O|1996-05-19|1996-06-08|1996-06-09|DELIVER IN PERSON|MAIL| slyly pending p| +2921|179743|2261|1|21|38277.54|0.10|0.00|N|O|1997-04-19|1997-04-05|1997-04-20|NONE|RAIL|ly pending packages mold furiously careful| +2921|133312|852|2|13|17489.03|0.08|0.02|N|O|1997-03-18|1997-05-05|1997-04-08|COLLECT COD|TRUCK|unusual theodoli| +2921|171615|4133|3|5|8433.05|0.05|0.08|N|O|1997-04-06|1997-03-14|1997-04-10|COLLECT COD|MAIL|ly blithe packages: carefully bold p| +2921|128611|3636|4|41|67224.01|0.01|0.03|N|O|1997-04-30|1997-03-15|1997-05-03|DELIVER IN PERSON|REG AIR|on the quick| +2921|150260|2776|5|24|31446.24|0.00|0.06|N|O|1997-02-20|1997-03-11|1997-03-17|NONE|TRUCK|fter the blit| +2921|5447|7948|6|28|37868.32|0.09|0.04|N|O|1997-03-27|1997-04-05|1997-04-12|COLLECT COD|REG AIR|bold foxes. blithe, pending deposits sleep| +2922|25591|5592|1|15|22748.85|0.00|0.04|N|O|1995-11-23|1995-12-26|1995-12-01|COLLECT COD|FOB|ress pinto beans haggle fluffily about| +2922|95065|2593|2|39|41342.34|0.05|0.06|N|O|1995-12-11|1995-12-10|1995-12-19|TAKE BACK RETURN|FOB|aggle; fluffily ironic deposits caj| +2922|142441|7470|3|6|8900.64|0.05|0.07|N|O|1996-02-20|1995-12-01|1996-03-06|TAKE BACK RETURN|SHIP|riously eve| +2922|190669|3189|4|3|5278.98|0.10|0.01|N|O|1996-02-17|1995-12-21|1996-03-11|TAKE BACK RETURN|REG AIR|ns grow against the slyly spec| +2922|159382|4413|5|20|28827.60|0.01|0.01|N|O|1996-01-12|1996-01-12|1996-01-31|NONE|FOB|inal deposits nag carefully against | +2923|99032|1542|1|14|14434.42|0.01|0.00|A|F|1993-03-22|1993-01-19|1993-04-12|DELIVER IN PERSON|AIR|ely unusual accounts boost ca| +2924|23256|3257|1|38|44811.50|0.05|0.08|N|O|1997-07-23|1997-06-30|1997-08-04|TAKE BACK RETURN|TRUCK| furiously ironic pains; express, iron| +2924|61065|3572|2|6|6156.36|0.01|0.03|N|O|1997-06-11|1997-06-25|1997-07-08|TAKE BACK RETURN|REG AIR|lent deposits. pend| +2925|172810|362|1|49|92257.69|0.07|0.01|N|O|1998-05-25|1998-05-21|1998-06-14|NONE|SHIP|ey players| +2925|16996|9498|2|19|36346.81|0.03|0.01|N|O|1998-05-29|1998-05-22|1998-06-16|NONE|MAIL|deposits sleep carefully unusua| +2925|36126|6127|3|9|9559.08|0.05|0.07|N|O|1998-07-26|1998-05-03|1998-08-22|COLLECT COD|REG AIR|s the slyly pending deposits boost careful| +2926|21604|4107|1|35|53396.00|0.10|0.05|A|F|1993-04-13|1993-02-01|1993-04-15|DELIVER IN PERSON|AIR|pecial ideas cajole.| +2926|83198|5707|2|24|28348.56|0.02|0.04|R|F|1993-03-13|1993-02-02|1993-03-17|NONE|RAIL|tegrate ab| +2926|92420|4930|3|11|15536.62|0.10|0.00|A|F|1992-12-30|1993-02-14|1993-01-16|NONE|REG AIR| cajole furiously theodolites. rut| +2926|86179|3704|4|30|34955.10|0.05|0.06|A|F|1992-12-27|1993-02-13|1993-01-07|NONE|RAIL|bold warhorses nag blithely e| +2926|3921|6422|5|26|47447.92|0.04|0.02|A|F|1993-01-29|1993-02-02|1993-02-02|COLLECT COD|SHIP|ounts. bold foxes about the fluffily bold t| +2926|100185|186|6|5|5925.90|0.02|0.04|A|F|1992-12-30|1993-02-03|1993-01-03|COLLECT COD|TRUCK|engage. blithely ironic sauternes grow s| +2927|106588|9099|1|3|4783.74|0.03|0.04|R|F|1993-07-13|1993-07-04|1993-08-09|NONE|MAIL|ial requests cajole ruthlessly never pen| +2927|23042|8047|2|11|10615.44|0.10|0.02|R|F|1993-08-03|1993-05-27|1993-08-25|DELIVER IN PERSON|MAIL|packages sleep fluffily regular deposits| +2927|63108|5615|3|3|3213.30|0.03|0.07|R|F|1993-05-02|1993-07-02|1993-06-01|COLLECT COD|MAIL|ly. special deposits detect. regul| +2927|50243|7759|4|31|36990.44|0.05|0.08|R|F|1993-04-25|1993-06-11|1993-05-15|COLLECT COD|FOB| wake furiously according to the unus| +2927|24614|9619|5|27|41542.47|0.04|0.01|A|F|1993-07-05|1993-07-06|1993-07-30|NONE|SHIP|riously ironic packages-- c| +2927|75375|2897|6|5|6751.85|0.02|0.03|R|F|1993-04-15|1993-05-14|1993-04-18|DELIVER IN PERSON|MAIL|sual accounts| +2952|198246|3285|1|17|22852.08|0.02|0.03|N|O|1995-11-05|1995-10-23|1995-11-25|TAKE BACK RETURN|REG AIR| wake slyly across the pa| +2952|108937|1448|2|39|75891.27|0.10|0.08|N|O|1995-11-05|1995-10-22|1995-11-07|TAKE BACK RETURN|FOB|riously. regular r| +2952|100082|2593|3|30|32462.40|0.05|0.07|N|O|1995-12-29|1995-11-05|1996-01-04|COLLECT COD|SHIP|furiously. idly pe| +2952|62123|9642|4|40|43404.80|0.04|0.03|N|O|1995-12-22|1995-12-15|1995-12-29|NONE|REG AIR| blithely bold w| +2952|91801|4311|5|43|77090.40|0.02|0.03|N|O|1995-10-07|1995-12-16|1995-11-01|TAKE BACK RETURN|FOB|ular requests wake around the final, | +2952|90410|2920|6|22|30809.02|0.02|0.03|N|O|1995-10-20|1995-10-24|1995-10-21|TAKE BACK RETURN|AIR| pending requ| +2952|107316|2337|7|10|13233.10|0.06|0.03|N|O|1995-12-03|1995-12-06|1995-12-15|DELIVER IN PERSON|AIR|r pinto beans wil| +2953|48471|5984|1|37|52520.39|0.03|0.08|N|O|1996-01-24|1995-11-19|1996-02-03|DELIVER IN PERSON|MAIL|usual accounts haggle| +2954|127819|2844|1|49|90493.69|0.02|0.08|R|F|1993-06-03|1993-05-20|1993-06-29|TAKE BACK RETURN|MAIL|inal instructions wake fluffily at | +2954|52444|2445|2|14|19550.16|0.09|0.04|R|F|1993-03-18|1993-04-14|1993-04-17|NONE|RAIL|above the carefully ironic e| +2954|23461|968|3|46|63685.16|0.09|0.07|R|F|1993-04-19|1993-05-13|1993-04-25|NONE|AIR|ross the special, slow | +2954|107310|9821|4|15|19759.65|0.01|0.04|A|F|1993-05-09|1993-04-12|1993-05-29|TAKE BACK RETURN|FOB|y bold foxes. fluffy ideas cajole. unus| +2954|151839|1840|5|37|69960.71|0.07|0.00|A|F|1993-04-30|1993-05-18|1993-05-12|NONE|AIR|usly special instruction| +2954|150909|910|6|13|25478.70|0.09|0.06|A|F|1993-03-12|1993-05-23|1993-04-04|TAKE BACK RETURN|TRUCK|t requests affix blithely about th| +2954|113114|3115|7|48|54101.28|0.07|0.04|A|F|1993-05-13|1993-04-22|1993-06-02|TAKE BACK RETURN|REG AIR|nts are furiously about the excuses? care| +2955|95080|2608|1|47|50528.76|0.09|0.03|R|F|1992-07-18|1992-06-28|1992-08-01|DELIVER IN PERSON|FOB|l depths. excuses in| +2955|3492|993|2|3|4186.47|0.00|0.07|A|F|1992-06-17|1992-06-25|1992-07-09|NONE|TRUCK|s are fluffily. carefully express requ| +2955|86207|3732|3|22|26250.40|0.02|0.06|R|F|1992-07-19|1992-07-03|1992-07-21|NONE|REG AIR|ial theodo| +2955|77146|2161|4|14|15723.96|0.05|0.04|A|F|1992-08-15|1992-07-03|1992-09-05|COLLECT COD|RAIL| ironic warhorses.| +2955|185160|5161|5|17|21167.72|0.10|0.04|R|F|1992-05-29|1992-08-03|1992-06-09|TAKE BACK RETURN|SHIP|yly silent accounts. unusual,| +2955|179721|2239|6|4|7202.88|0.01|0.04|A|F|1992-07-25|1992-07-29|1992-08-04|DELIVER IN PERSON|REG AIR|ctions. unusual, special deposits us| +2955|170275|276|7|28|37667.56|0.09|0.00|R|F|1992-06-22|1992-06-17|1992-07-20|NONE|TRUCK|ng, express instru| +2956|7159|4660|1|18|19190.70|0.00|0.00|N|O|1998-03-08|1998-01-05|1998-04-02|COLLECT COD|TRUCK|n accounts. furiously bold deposits affix s| +2956|117893|2916|2|9|17198.01|0.03|0.07|N|O|1997-12-07|1998-01-24|1998-01-02|NONE|TRUCK|kages cajole against the even excuses. sl| +2956|21780|1781|3|43|73176.54|0.08|0.07|N|O|1998-02-08|1997-12-28|1998-02-11|DELIVER IN PERSON|FOB|lar attain| +2956|51265|1266|4|2|2432.52|0.04|0.03|N|O|1997-12-09|1998-02-04|1997-12-27|COLLECT COD|REG AIR|even requests. asymptotes hang| +2956|4272|4273|5|38|44698.26|0.03|0.06|N|O|1998-01-08|1998-02-08|1998-01-12|COLLECT COD|SHIP|ajole blithely doggedly bold p| +2956|195205|5206|6|27|35105.40|0.05|0.08|N|O|1998-02-11|1998-01-14|1998-03-13|DELIVER IN PERSON|AIR|equests. decoys above the qui| +2957|27641|2646|1|34|53333.76|0.07|0.01|R|F|1994-01-08|1993-12-15|1994-01-20|TAKE BACK RETURN|MAIL|ckages. furiously even excuses serve| +2957|152120|4636|2|49|57433.88|0.08|0.08|R|F|1993-12-09|1993-12-24|1994-01-06|TAKE BACK RETURN|FOB|ully. unusual, unu| +2957|78615|6137|3|42|66931.62|0.10|0.01|A|F|1994-01-24|1994-01-25|1994-02-07|DELIVER IN PERSON|TRUCK|r accounts. deposits wake slyly ir| +2957|70949|950|4|44|84477.36|0.03|0.05|R|F|1993-11-05|1994-01-01|1993-11-19|NONE|REG AIR|theodolites cajole. quick| +2958|28668|3673|1|16|25546.56|0.02|0.07|A|F|1994-09-04|1994-08-31|1994-09-16|NONE|AIR|counts. special i| +2959|11753|4255|1|49|81572.75|0.08|0.05|N|O|1996-11-12|1996-10-06|1996-11-23|NONE|REG AIR|cajole aft| +2959|117367|9879|2|13|17996.68|0.04|0.02|N|O|1996-09-19|1996-10-14|1996-09-27|DELIVER IN PERSON|TRUCK|usual packages| +2959|178933|6485|3|18|36214.74|0.09|0.06|N|O|1996-09-20|1996-10-24|1996-10-04|COLLECT COD|SHIP|uests cajole slyly along the bravely regu| +2959|119351|9352|4|45|61665.75|0.10|0.03|N|O|1996-11-23|1996-09-27|1996-12-19|NONE|REG AIR|ut the busily pending instr| +2959|120678|679|5|15|25480.05|0.04|0.05|N|O|1996-09-18|1996-10-10|1996-10-15|NONE|FOB|leep quickly. express, bold foxe| +2959|26258|6259|6|2|2368.50|0.02|0.05|N|O|1996-09-25|1996-10-22|1996-10-20|TAKE BACK RETURN|MAIL|counts haggle carefully final inst| +2984|128735|6272|1|20|35274.60|0.03|0.00|N|O|1998-01-10|1997-12-23|1998-01-18|COLLECT COD|MAIL|ar theodolites. even, final asymptotes sl| +2984|47014|9519|2|34|32674.34|0.02|0.08|N|O|1998-01-31|1997-11-21|1998-02-28|DELIVER IN PERSON|MAIL|sts use carefully even requests. sil| +2984|162730|7763|3|5|8963.65|0.08|0.04|N|O|1997-11-08|1997-11-15|1997-12-06|TAKE BACK RETURN|AIR|egular instructions. thin requests ab| +2984|198937|6495|4|22|44790.46|0.03|0.04|N|O|1998-01-28|1997-12-18|1998-02-27|DELIVER IN PERSON|SHIP|he, bold deposits. instru| +2984|123784|1321|5|6|10846.68|0.00|0.02|N|O|1997-11-09|1997-12-13|1997-12-05|NONE|TRUCK| instructions after the | +2985|66754|1767|1|41|70550.75|0.03|0.04|R|F|1993-03-22|1993-01-16|1993-03-28|NONE|FOB|sleep closely. quickl| +2985|126814|9327|2|48|88358.88|0.00|0.02|R|F|1992-12-10|1993-02-27|1992-12-17|COLLECT COD|SHIP|p blithely within the carefully| +2985|147341|9856|3|36|49980.24|0.08|0.01|A|F|1993-01-11|1993-03-02|1993-02-01|TAKE BACK RETURN|SHIP|lly. slyly pending instructions| +2985|154469|9500|4|4|6093.84|0.08|0.08|R|F|1993-01-22|1993-01-13|1993-01-28|TAKE BACK RETURN|FOB|ully blithely ironic packages. ironic, even| +2985|157110|7111|5|24|28010.64|0.10|0.04|A|F|1993-02-11|1993-01-29|1993-03-07|NONE|FOB|ffix furiously. slyly pending ins| +2985|135992|8506|6|10|20279.90|0.06|0.04|A|F|1993-03-02|1993-01-21|1993-03-06|DELIVER IN PERSON|REG AIR|. even pinto beans| +2985|8628|8629|7|40|61464.80|0.10|0.05|R|F|1993-01-29|1993-02-09|1993-02-17|TAKE BACK RETURN|FOB|ly pending sauternes. ideas sublate. care| +2986|198004|8005|1|22|24244.00|0.05|0.02|R|F|1994-08-31|1994-10-03|1994-09-07|TAKE BACK RETURN|REG AIR| fluffily bold excuses thrash carefull| +2986|49027|1532|2|33|32208.66|0.04|0.02|A|F|1994-11-09|1994-09-23|1994-11-20|TAKE BACK RETURN|MAIL|slyly final ideas. deposits e| +2986|188173|692|3|25|31529.25|0.05|0.05|R|F|1994-12-02|1994-10-20|1994-12-15|DELIVER IN PERSON|REG AIR|ar instructions are ironicall| +2986|14687|4688|4|35|56058.80|0.00|0.07|R|F|1994-11-14|1994-11-05|1994-12-07|TAKE BACK RETURN|MAIL|le slyly. carefully final gifts sleep| +2986|36626|6627|5|22|34377.64|0.06|0.03|R|F|1994-08-18|1994-10-28|1994-09-08|COLLECT COD|RAIL|cording to the slyly final platelets wa| +2986|164644|4645|6|37|63219.68|0.02|0.00|R|F|1994-08-31|1994-11-05|1994-09-18|COLLECT COD|AIR|quests abo| +2987|166717|4266|1|1|1783.71|0.08|0.08|N|O|1996-12-28|1997-02-05|1997-01-20|TAKE BACK RETURN|RAIL|iously furiously regular ideas. quickly un| +2988|128456|3481|1|28|41564.60|0.07|0.03|A|F|1994-11-19|1994-10-30|1994-12-13|NONE|MAIL|ronic depos| +2989|47796|5309|1|32|55801.28|0.05|0.02|N|O|1997-07-07|1997-08-20|1997-08-04|DELIVER IN PERSON|FOB|regular sentiments afte| +2989|107210|2231|2|5|6086.05|0.10|0.05|N|O|1997-10-20|1997-10-01|1997-11-09|TAKE BACK RETURN|FOB|es. ironic depos| +2990|114872|4873|1|25|47171.75|0.01|0.02|R|F|1992-08-08|1992-06-20|1992-08-29|TAKE BACK RETURN|TRUCK| ironic packages are blithely. quickly bold| +2990|49925|9926|2|39|73121.88|0.08|0.05|R|F|1992-07-19|1992-06-24|1992-08-09|TAKE BACK RETURN|FOB|nag carefully final packages? slyl| +2990|83769|1294|3|12|21033.12|0.05|0.06|R|F|1992-06-20|1992-06-26|1992-06-28|COLLECT COD|AIR|lithely even| +2991|116609|9121|1|30|48768.00|0.03|0.00|N|O|1998-08-20|1998-07-03|1998-08-29|DELIVER IN PERSON|MAIL|he packages. regular packages nag s| +3016|25815|8318|1|31|53965.11|0.01|0.05|N|O|1996-02-12|1996-01-02|1996-03-11|NONE|TRUCK|packages. bold grouches cajole. final| +3016|66138|8645|2|21|23186.73|0.02|0.00|N|O|1995-12-27|1995-12-26|1996-01-08|TAKE BACK RETURN|MAIL| asymptotes. ironic platelets doze. r| +3016|173355|907|3|29|41422.15|0.02|0.00|N|O|1996-02-17|1995-12-24|1996-03-10|COLLECT COD|REG AIR| regular accounts wake blith| +3016|170326|7878|4|7|9774.24|0.06|0.02|N|O|1995-12-24|1996-01-23|1995-12-26|COLLECT COD|TRUCK|. quickly final excuse| +3017|170998|6033|1|41|84828.59|0.03|0.06|N|O|1995-10-03|1995-09-30|1995-10-20|NONE|AIR|furiously unusual frets was slyly| +3017|148073|8074|2|39|43721.73|0.08|0.06|N|O|1995-09-20|1995-10-15|1995-10-05|NONE|MAIL|oxes nag. carefully spe| +3018|118137|5671|1|27|31188.51|0.00|0.08|A|F|1993-09-18|1993-12-08|1993-09-27|DELIVER IN PERSON|AIR|blithely above the fluffily even| +3018|122219|4732|2|11|13653.31|0.01|0.07|A|F|1993-11-28|1993-11-18|1993-12-01|DELIVER IN PERSON|FOB|ugh the final, ironic sentiments? slyly iro| +3018|118456|5990|3|1|1474.45|0.04|0.02|R|F|1993-09-28|1993-11-29|1993-10-13|DELIVER IN PERSON|REG AIR|ckly express Tiresias. quickly final asymp| +3019|49715|2220|1|4|6658.84|0.04|0.00|A|F|1993-11-17|1994-01-01|1993-12-12|COLLECT COD|SHIP|bits. quickly ironic foxes a| +3020|42236|2237|1|32|37703.36|0.04|0.00|N|O|1998-03-21|1998-03-20|1998-04-09|TAKE BACK RETURN|FOB|ites sleep instructions. quickly even| +3020|45301|2814|2|13|16201.90|0.03|0.00|N|O|1998-03-05|1998-02-26|1998-03-09|TAKE BACK RETURN|AIR| accounts haggle. bold, ironi| +3020|170828|829|3|16|30381.12|0.08|0.08|N|O|1998-02-09|1998-02-10|1998-03-06|COLLECT COD|RAIL|y even ideas wake bli| +3020|95784|803|4|48|85429.44|0.01|0.03|N|O|1998-04-09|1998-02-28|1998-04-21|DELIVER IN PERSON|FOB|ckages wake carefully sly, q| +3020|31760|4264|5|34|57519.84|0.02|0.05|N|O|1998-01-14|1998-02-06|1998-02-04|NONE|RAIL|g deposits wa| +3021|74021|4022|1|25|24875.50|0.07|0.02|R|F|1994-10-01|1994-11-16|1994-10-28|TAKE BACK RETURN|RAIL|ironic deposits haggle after| +3021|59029|9030|2|12|11856.24|0.00|0.08|R|F|1994-11-22|1994-11-18|1994-12-16|TAKE BACK RETURN|SHIP|g deposits | +3022|193256|8295|1|49|66113.25|0.07|0.03|R|F|1992-05-20|1992-05-25|1992-05-21|TAKE BACK RETURN|TRUCK|e furiously special theodolites; ir| +3022|41768|4273|2|31|53002.56|0.07|0.01|A|F|1992-07-01|1992-07-17|1992-07-16|NONE|MAIL|s haggle along the special accounts. bol| +3023|164277|4278|1|30|40238.10|0.10|0.01|N|O|1998-10-03|1998-09-18|1998-10-17|NONE|AIR|lly bold dependencies sleep platelets| +3023|192501|5021|2|44|70114.00|0.08|0.02|N|O|1998-09-13|1998-08-30|1998-09-17|NONE|FOB|ckages haggle slyly. finally | +3023|148788|6331|3|43|78981.54|0.06|0.03|N|O|1998-08-19|1998-09-11|1998-09-06|TAKE BACK RETURN|SHIP|osits sleep slyly. busily ironic pinto bean| +3023|77372|4894|4|12|16192.44|0.02|0.03|N|O|1998-07-22|1998-08-08|1998-08-01|TAKE BACK RETURN|RAIL|ate careful| +3048|90282|7810|1|18|22901.04|0.10|0.00|A|F|1994-09-04|1994-09-14|1994-09-21|DELIVER IN PERSON|SHIP|endencies. furiously special| +3048|161310|6343|2|38|52109.78|0.04|0.06|A|F|1994-09-25|1994-09-12|1994-10-15|NONE|SHIP|ly bold accounts cajole furio| +3048|123887|8912|3|48|91722.24|0.05|0.07|R|F|1994-09-29|1994-08-30|1994-10-23|TAKE BACK RETURN|SHIP|ke fluffily ironic excuses-- blithely regul| +3048|157422|4968|4|41|60656.22|0.04|0.00|R|F|1994-08-24|1994-10-06|1994-09-04|COLLECT COD|SHIP|ual request| +3048|188553|3590|5|1|1641.55|0.01|0.03|R|F|1994-10-09|1994-10-13|1994-10-27|TAKE BACK RETURN|TRUCK|ously bold warhorses will d| +3048|6226|8727|6|2|2264.44|0.04|0.07|A|F|1994-08-18|1994-09-05|1994-08-22|DELIVER IN PERSON|REG AIR| realms nag. daringly pending| +3048|33763|6267|7|14|23754.64|0.06|0.06|R|F|1994-08-01|1994-09-07|1994-08-04|NONE|REG AIR|ounts. quickl| +3049|47426|2435|1|40|54936.80|0.08|0.08|N|O|1995-12-04|1995-12-08|1995-12-11|NONE|MAIL|ully ironic dependencies use about| +3049|73928|3929|2|18|34234.56|0.06|0.01|N|O|1996-02-26|1996-01-07|1996-03-13|TAKE BACK RETURN|TRUCK|al dolphins| +3049|94746|7256|3|27|46999.98|0.08|0.01|N|O|1996-02-20|1996-01-14|1996-03-13|TAKE BACK RETURN|REG AIR|inal, even| +3050|9058|6559|1|36|34813.80|0.02|0.07|N|O|1996-01-17|1996-01-08|1996-01-31|NONE|RAIL|t quickly sly| +3050|25861|5862|2|35|62540.10|0.07|0.03|N|O|1995-12-24|1996-01-23|1995-12-31|TAKE BACK RETURN|SHIP| requests sleep according to the qui| +3050|42667|2668|3|2|3219.32|0.05|0.02|N|O|1996-02-17|1996-01-16|1996-03-18|DELIVER IN PERSON|FOB|ross the ironic instructions. blithely f| +3050|100080|81|4|17|18361.36|0.04|0.07|N|O|1996-01-06|1996-02-14|1996-01-22|NONE|SHIP|sits. even pinto beans sleep after th| +3051|90553|3063|1|17|26240.35|0.04|0.05|N|O|1998-02-12|1998-02-22|1998-02-21|TAKE BACK RETURN|FOB|y final ide| +3051|119001|9002|2|30|30600.00|0.06|0.03|N|O|1998-04-23|1998-03-30|1998-05-01|TAKE BACK RETURN|REG AIR|ove the ideas. bold| +3052|107905|416|1|48|91819.20|0.06|0.07|N|O|1996-04-21|1996-05-14|1996-05-06|NONE|FOB|ctions haggle blithely after| +3052|149115|1630|2|16|18625.76|0.04|0.04|N|O|1996-04-03|1996-05-28|1996-04-28|DELIVER IN PERSON|FOB|old theodolites run.| +3052|164263|9296|3|37|49108.62|0.10|0.01|N|O|1996-05-07|1996-06-02|1996-05-19|NONE|RAIL|requests x-ray fluffily about the always | +3053|98367|8368|1|20|27307.20|0.05|0.05|N|O|1997-08-28|1997-06-16|1997-09-02|TAKE BACK RETURN|REG AIR|usly special deposits sleep blithely after | +3053|41106|6115|2|28|29318.80|0.06|0.02|N|O|1997-05-26|1997-07-31|1997-06-25|NONE|REG AIR|t unusual foxes. slyly regular reques| +3053|68076|8077|3|41|42806.87|0.00|0.02|N|O|1997-05-17|1997-06-28|1997-06-12|COLLECT COD|FOB|egular, even decoys. slyly bold asy| +3053|146587|4130|4|32|52274.56|0.09|0.06|N|O|1997-07-26|1997-06-21|1997-08-24|COLLECT COD|SHIP|equests? carefully special foxes| +3053|71511|9033|5|39|57817.89|0.07|0.01|N|O|1997-07-25|1997-06-24|1997-08-18|TAKE BACK RETURN|MAIL| special theodolites. | +3053|73144|8159|6|24|26811.36|0.05|0.00|N|O|1997-07-18|1997-06-29|1997-08-09|NONE|AIR|ly ironic theodol| +3054|98270|8271|1|17|21560.59|0.09|0.00|A|F|1992-12-21|1993-01-13|1993-01-08|DELIVER IN PERSON|RAIL|ing reques| +3054|20107|7614|2|33|33894.30|0.09|0.05|A|F|1993-01-12|1993-01-19|1993-02-08|NONE|TRUCK|e. foxes haggle across the quickly final co| +3054|135088|5089|3|43|48292.44|0.08|0.06|A|F|1992-12-18|1993-02-27|1993-01-08|DELIVER IN PERSON|REG AIR|solve slyly carefully express requests.| +3054|21132|8639|4|26|27381.38|0.10|0.00|R|F|1993-01-31|1993-01-31|1993-02-12|COLLECT COD|RAIL|l theodolites sleep b| +3055|7951|2952|1|26|48332.70|0.09|0.01|R|F|1993-04-21|1993-05-26|1993-04-25|NONE|FOB|gular accounts. s| +3055|24177|9182|2|18|19821.06|0.02|0.01|A|F|1993-04-08|1993-06-24|1993-04-09|COLLECT COD|SHIP|es. special idea| +3055|127652|165|3|16|26874.40|0.09|0.05|R|F|1993-05-08|1993-05-15|1993-05-28|DELIVER IN PERSON|REG AIR|ithely regular accounts wake per| +3055|41587|9100|4|39|59614.62|0.06|0.03|R|F|1993-07-24|1993-06-05|1993-08-06|DELIVER IN PERSON|TRUCK|latelets! fluffily final platelets wake d| +3055|137467|9981|5|40|60178.40|0.07|0.01|A|F|1993-06-01|1993-07-02|1993-06-28|DELIVER IN PERSON|AIR|omise carefully fluffily | +3055|193512|1070|6|39|62614.89|0.01|0.00|R|F|1993-06-11|1993-06-22|1993-07-02|COLLECT COD|RAIL|fluffily. furiously ironic| +3080|25504|509|1|42|60039.00|0.09|0.00|A|F|1994-10-19|1994-09-04|1994-11-15|NONE|SHIP|g the fluffily express accounts | +3080|39634|7144|2|35|55077.05|0.03|0.00|R|F|1994-10-23|1994-08-14|1994-11-01|TAKE BACK RETURN|RAIL|. bold, regular deposits wake furiou| +3080|117669|2692|3|15|25299.90|0.06|0.07|A|F|1994-09-05|1994-09-18|1994-10-03|TAKE BACK RETURN|SHIP|lites maintain acr| +3080|46927|1936|4|42|78704.64|0.02|0.02|A|F|1994-08-18|1994-08-15|1994-09-17|COLLECT COD|SHIP|iously: silent, bold| +3080|87599|108|5|36|57117.24|0.08|0.08|R|F|1994-10-30|1994-09-05|1994-11-03|DELIVER IN PERSON|MAIL|Tiresias cajole. regular, special ide| +3080|67245|4764|6|17|20608.08|0.00|0.01|A|F|1994-10-11|1994-09-22|1994-10-16|NONE|RAIL|al sheaves. final, even | +3080|170325|5360|7|48|66975.36|0.08|0.07|A|F|1994-07-23|1994-08-04|1994-07-28|TAKE BACK RETURN|FOB| pinto beans are quickly alongside of the| +3081|46977|4490|1|32|61567.04|0.10|0.00|N|O|1997-05-23|1997-05-31|1997-06-15|NONE|FOB|ing, regular foxes. sometimes regular f| +3081|138095|609|2|38|43057.42|0.00|0.05|N|O|1997-04-30|1997-05-31|1997-05-04|NONE|REG AIR|der the quickl| +3082|20722|5727|1|46|75565.12|0.09|0.06|N|O|1996-04-22|1996-06-27|1996-05-09|NONE|SHIP|e after the decoy| +3082|68104|5623|2|22|23586.20|0.06|0.06|N|O|1996-08-03|1996-06-10|1996-08-12|DELIVER IN PERSON|AIR|nst the qui| +3082|21445|1446|3|18|24595.92|0.04|0.06|N|O|1996-05-21|1996-06-20|1996-06-10|DELIVER IN PERSON|TRUCK|ully slow depths according to the reques| +3083|193570|1128|1|17|28280.69|0.00|0.00|A|F|1992-12-26|1992-12-25|1993-01-24|DELIVER IN PERSON|AIR|ously ironic| +3084|181780|4299|1|40|74471.20|0.01|0.06|R|F|1993-06-25|1993-07-08|1993-07-02|COLLECT COD|AIR|ly final requests. ironic, iron| +3084|162801|7834|2|28|52186.40|0.03|0.08|R|F|1993-06-27|1993-05-31|1993-07-09|TAKE BACK RETURN|RAIL|le carefull| +3084|183524|3525|3|39|62693.28|0.03|0.04|A|F|1993-05-29|1993-07-15|1993-06-22|DELIVER IN PERSON|AIR|ly final patte| +3084|72937|2938|4|25|47748.25|0.00|0.08|R|F|1993-07-21|1993-06-28|1993-08-02|TAKE BACK RETURN|REG AIR|sy theodolites are after the ironic theodol| +3084|45471|480|5|13|18414.11|0.02|0.06|R|F|1993-05-31|1993-06-07|1993-06-19|TAKE BACK RETURN|MAIL| furiously even requests| +3084|29218|6725|6|44|50477.24|0.08|0.01|R|F|1993-06-07|1993-07-12|1993-06-22|COLLECT COD|SHIP|osits. accounts sleep be| +3085|38921|6431|1|10|18599.20|0.06|0.07|A|F|1994-07-05|1994-06-26|1994-07-11|DELIVER IN PERSON|REG AIR|ests. furiousl| +3085|145180|5181|2|6|7351.08|0.02|0.03|R|F|1994-06-21|1994-07-28|1994-07-11|DELIVER IN PERSON|SHIP|ly pending requests. fl| +3085|31831|4335|3|1|1762.83|0.05|0.07|R|F|1994-06-24|1994-07-13|1994-07-12|COLLECT COD|TRUCK|ing to the regular, ironic theodolit| +3085|174223|4224|4|18|23349.96|0.04|0.05|A|F|1994-07-25|1994-08-12|1994-07-27|NONE|TRUCK|regular, ev| +3085|157213|9729|5|24|30485.04|0.08|0.05|R|F|1994-05-30|1994-07-06|1994-06-02|NONE|MAIL|ves. furiously even packages play furiously| +3086|34270|1780|1|3|3612.81|0.10|0.06|N|O|1998-11-03|1998-08-21|1998-11-16|NONE|AIR|ar pinto beans are carefully. b| +3086|167507|24|2|21|33064.50|0.02|0.07|N|O|1998-07-25|1998-08-18|1998-08-15|NONE|SHIP| regular de| +3086|82229|7246|3|4|4844.88|0.03|0.05|N|O|1998-09-06|1998-08-27|1998-09-09|TAKE BACK RETURN|RAIL|sual accounts affix about the furiously r| +3086|10369|7873|4|19|24307.84|0.05|0.05|N|O|1998-09-28|1998-10-17|1998-09-29|TAKE BACK RETURN|REG AIR|lithely bes| +3087|139502|7042|1|24|36996.00|0.03|0.02|N|O|1997-12-23|1998-01-03|1998-01-19|COLLECT COD|SHIP|ackages haggle silently. | +3087|927|5928|2|3|5483.76|0.00|0.02|N|O|1997-12-10|1998-01-12|1998-01-05|NONE|AIR|c packages haggle sly| +3087|170659|3177|3|8|13837.20|0.07|0.02|N|O|1998-01-21|1998-01-31|1998-02-03|DELIVER IN PERSON|SHIP| requests detect amon| +3087|60580|581|4|34|52379.72|0.01|0.01|N|O|1998-01-02|1998-01-16|1998-01-11|NONE|SHIP|s frets. special courts cajol| +3087|158014|3045|5|37|39664.37|0.02|0.06|N|O|1998-02-20|1998-02-17|1998-03-20|DELIVER IN PERSON|FOB|riously sp| +3087|124724|4725|6|17|29728.24|0.09|0.02|N|O|1998-01-13|1998-01-02|1998-01-15|COLLECT COD|FOB| carefully regular requests use| +3087|25146|7649|7|28|29991.92|0.03|0.05|N|O|1998-01-24|1998-02-02|1998-02-20|TAKE BACK RETURN|FOB|ent deposits use. bold, final depo| +3112|16294|8796|1|6|7261.74|0.02|0.07|N|O|1996-06-11|1996-06-07|1996-06-19|COLLECT COD|AIR|es after the ironic | +3112|47312|9817|2|45|56668.95|0.00|0.00|N|O|1996-03-27|1996-05-19|1996-04-10|NONE|MAIL|luffily blithely regular din| +3113|60061|62|1|45|45947.70|0.09|0.08|A|F|1992-12-07|1992-12-02|1992-12-24|TAKE BACK RETURN|TRUCK|nst the carefully regular packages. theod| +3113|42589|102|2|40|61263.20|0.03|0.07|A|F|1993-01-09|1992-12-19|1993-01-14|DELIVER IN PERSON|RAIL| deposits unwind furiously depos| +3113|185846|883|3|15|28977.60|0.09|0.08|R|F|1992-12-31|1992-12-29|1993-01-15|COLLECT COD|SHIP| furiously final foxes. | +3113|102923|7944|4|27|51999.84|0.09|0.08|R|F|1993-01-23|1992-12-13|1993-02-22|TAKE BACK RETURN|AIR|lly carefully r| +3113|21875|9382|5|43|77265.41|0.08|0.07|A|F|1992-12-13|1992-11-23|1993-01-08|COLLECT COD|TRUCK|sts. permanent, express plat| +3113|36925|4435|6|6|11171.52|0.09|0.07|A|F|1992-10-09|1992-11-08|1992-10-19|NONE|REG AIR|d foxes across the| +3113|191531|1532|7|39|63278.67|0.06|0.02|A|F|1992-11-03|1992-11-23|1992-11-16|DELIVER IN PERSON|SHIP|efully bold pinto beans. quickly bold pi| +3114|60387|2894|1|36|48505.68|0.08|0.02|N|O|1996-10-01|1996-09-09|1996-10-13|TAKE BACK RETURN|AIR|ravely behind t| +3114|123010|8035|2|27|27891.27|0.03|0.00|N|O|1996-09-27|1996-08-16|1996-10-01|DELIVER IN PERSON|TRUCK|y final deposits ar| +3114|27223|2228|3|25|28755.50|0.00|0.01|N|O|1996-08-25|1996-07-25|1996-08-30|NONE|AIR|y even excuses haggle slyly. carefully reg| +3114|134275|4276|4|18|23566.86|0.09|0.02|N|O|1996-07-27|1996-08-02|1996-07-30|TAKE BACK RETURN|TRUCK|d the fluffily final deposits. sly Tiresi| +3115|90527|528|1|2|3035.04|0.05|0.08|R|F|1995-03-08|1995-05-22|1995-03-13|NONE|MAIL|ecial ideas nag carefully along the fi| +3115|84089|6598|2|8|8584.64|0.00|0.08|R|F|1995-04-06|1995-05-15|1995-04-07|DELIVER IN PERSON|TRUCK|c ideas eat furiously. furiou| +3115|78848|8849|3|34|62112.56|0.08|0.00|R|F|1995-03-23|1995-04-26|1995-04-18|COLLECT COD|AIR|packages. escapades was quick| +3115|182411|7448|4|17|25387.97|0.02|0.07|A|F|1995-05-21|1995-04-25|1995-06-15|DELIVER IN PERSON|RAIL|silent requests haggle caref| +3116|38582|3589|1|19|28891.02|0.00|0.00|N|O|1998-04-24|1998-05-26|1998-05-06|TAKE BACK RETURN|REG AIR| packages nag furiously about th| +3116|36798|1805|2|24|41634.96|0.10|0.06|N|O|1998-05-26|1998-05-23|1998-06-11|COLLECT COD|TRUCK|ost about the slyl| +3116|62991|5498|3|43|84021.57|0.04|0.07|N|O|1998-06-05|1998-05-23|1998-06-09|TAKE BACK RETURN|AIR|osits print | +3116|75531|3053|4|43|64780.79|0.05|0.01|N|O|1998-03-18|1998-05-24|1998-03-31|NONE|REG AIR|ate fluffily. slyl| +3116|41291|6300|5|12|14787.48|0.05|0.06|N|O|1998-04-30|1998-06-05|1998-05-09|COLLECT COD|MAIL|even platelets. packages unwi| +3117|126185|3722|1|32|38757.76|0.09|0.08|A|F|1995-02-01|1994-12-21|1995-02-03|NONE|RAIL|ully. fluffily ironic theodol| +3117|178047|565|2|11|12375.44|0.01|0.01|A|F|1994-11-20|1995-02-10|1994-12-09|TAKE BACK RETURN|TRUCK|quick ideas| +3118|2670|2671|1|27|42462.09|0.07|0.02|N|O|1998-01-09|1998-01-12|1998-01-12|DELIVER IN PERSON|SHIP|ss, regular requests. care| +3118|60481|8000|2|50|72074.00|0.02|0.06|N|O|1998-02-06|1997-12-21|1998-02-19|TAKE BACK RETURN|MAIL|nal accounts. requests integrate around the| +3118|103045|8066|3|36|37729.44|0.09|0.05|N|O|1998-01-01|1998-01-10|1998-01-08|DELIVER IN PERSON|MAIL|inst the excuses. accounts nod. dep| +3118|65120|2639|4|10|10851.20|0.09|0.01|N|O|1998-01-11|1998-01-09|1998-02-01|DELIVER IN PERSON|MAIL|carefully regular foxes. q| +3118|70351|352|5|38|50211.30|0.02|0.06|N|O|1997-12-05|1997-12-25|1997-12-14|NONE|RAIL|y even accounts. platelets haggle carefull| +3118|184208|6727|6|19|24551.80|0.03|0.02|N|O|1997-12-28|1997-12-11|1998-01-12|NONE|MAIL| against the care| +3118|167629|146|7|1|1696.62|0.00|0.03|N|O|1997-11-19|1998-02-01|1997-12-12|COLLECT COD|MAIL|nts. furiously sp| +3119|131216|8756|1|2|2494.42|0.09|0.08|N|O|1997-05-04|1997-03-25|1997-05-21|DELIVER IN PERSON|RAIL|ackages about the| +3119|139916|9917|2|26|50853.66|0.01|0.06|N|O|1997-03-31|1997-02-09|1997-04-17|DELIVER IN PERSON|FOB| ironic instructions hagg| +3119|166319|1352|3|10|13853.10|0.02|0.03|N|O|1997-01-07|1997-02-23|1997-01-20|COLLECT COD|REG AIR|ly even as| +3144|155178|209|1|37|45627.29|0.07|0.03|N|O|1996-05-27|1996-07-22|1996-06-21|COLLECT COD|FOB| instructions wake furiously alongside of t| +3144|63688|8701|2|37|61112.16|0.10|0.08|N|O|1996-06-03|1996-06-27|1996-07-02|TAKE BACK RETURN|REG AIR|depths. re| +3144|192451|9|3|46|70998.70|0.06|0.07|N|O|1996-08-24|1996-07-29|1996-09-13|TAKE BACK RETURN|RAIL|g packages. ironic, even deposits wake sly| +3144|116222|3756|4|29|35908.38|0.06|0.05|N|O|1996-08-21|1996-06-24|1996-09-13|TAKE BACK RETURN|TRUCK|uickly behind the | +3144|140085|86|5|14|15751.12|0.05|0.00|N|O|1996-08-18|1996-06-23|1996-09-02|NONE|MAIL|usly carefully spe| +3145|127572|5109|1|45|71980.65|0.07|0.07|R|F|1992-10-10|1992-09-26|1992-10-24|DELIVER IN PERSON|FOB|ld dolphins. quickly ironic ideas cajole| +3146|127869|7870|1|39|73977.54|0.06|0.07|R|F|1995-05-19|1995-04-09|1995-06-13|TAKE BACK RETURN|MAIL|nstructions. ironic ideas affix ca| +3147|188443|3480|1|10|15314.40|0.05|0.06|R|F|1993-07-13|1993-06-14|1993-08-02|TAKE BACK RETURN|SHIP|final, final reque| +3147|158567|3598|2|22|35762.32|0.01|0.03|R|F|1993-04-25|1993-06-08|1993-05-10|TAKE BACK RETURN|FOB|ar accounts. slyl| +3147|34893|7397|3|20|36557.80|0.00|0.08|A|F|1993-05-15|1993-05-20|1993-05-27|DELIVER IN PERSON|AIR|le throughout the ironic reque| +3147|36235|3745|4|42|49191.66|0.07|0.08|R|F|1993-04-21|1993-06-28|1993-04-30|NONE|TRUCK|ously express | +3147|403|2904|5|3|3910.20|0.08|0.05|R|F|1993-06-17|1993-06-28|1993-06-30|TAKE BACK RETURN|REG AIR|. regular packages ar| +3147|166017|8534|6|8|8664.08|0.02|0.04|A|F|1993-05-26|1993-05-20|1993-06-19|TAKE BACK RETURN|SHIP|g at the slyly special requests. regula| +3148|37360|9864|1|21|27244.56|0.04|0.07|N|O|1998-01-03|1998-02-19|1998-01-10|TAKE BACK RETURN|RAIL|es haggle. furiously even ideas l| +3148|102260|9791|2|46|58063.96|0.07|0.06|N|O|1997-12-17|1998-02-15|1998-01-14|DELIVER IN PERSON|REG AIR|press foxes hang about the packag| +3148|81359|6376|3|2|2680.70|0.04|0.08|N|O|1998-01-20|1998-01-07|1998-02-12|DELIVER IN PERSON|FOB| requests nag above the requests.| +3148|188553|8554|4|17|27906.35|0.02|0.02|N|O|1998-02-04|1998-02-08|1998-03-03|COLLECT COD|AIR|stealthy pinto beans. qui| +3149|2812|2813|1|37|63447.97|0.05|0.01|A|F|1993-11-16|1993-09-11|1993-11-23|NONE|TRUCK|re carefully blithely fi| +3150|178236|5788|1|16|21027.68|0.07|0.00|N|O|1997-12-25|1997-11-20|1998-01-13|TAKE BACK RETURN|SHIP|lyly asymptotes. c| +3151|78415|8416|1|29|40408.89|0.10|0.03|N|O|1996-07-03|1996-06-01|1996-07-20|NONE|RAIL|ely final deposits wake along the f| +3151|107815|5346|2|43|78380.83|0.09|0.06|N|O|1996-08-04|1996-06-09|1996-08-29|DELIVER IN PERSON|REG AIR|ly fluffily unusual deposits. car| +3151|42927|7936|3|36|67317.12|0.05|0.02|N|O|1996-06-10|1996-07-08|1996-07-08|COLLECT COD|MAIL|slyly around the fluffily busy p| +3151|64320|1839|4|31|39813.92|0.08|0.07|N|O|1996-06-06|1996-06-18|1996-06-18|DELIVER IN PERSON|MAIL|bout the furiously| +3151|13260|764|5|10|11732.60|0.10|0.00|N|O|1996-07-01|1996-05-12|1996-07-30|TAKE BACK RETURN|MAIL|s affix bli| +3176|176900|9418|1|19|37561.10|0.01|0.04|A|F|1994-02-27|1994-03-25|1994-03-03|NONE|AIR|odolites nod quickly. bold theodolites snoo| +3176|143158|5673|2|27|32431.05|0.09|0.02|A|F|1994-04-14|1994-03-23|1994-04-18|NONE|FOB|xpress packages. fluff| +3176|54799|2315|3|18|31568.22|0.00|0.06|R|F|1994-05-14|1994-04-12|1994-06-03|NONE|RAIL|ic accounts poach sometimes a| +3176|3054|8055|4|49|46895.45|0.05|0.06|A|F|1994-02-12|1994-04-20|1994-02-18|COLLECT COD|AIR|riously sp| +3176|124886|2423|5|5|9554.40|0.04|0.08|A|F|1994-04-06|1994-04-04|1994-04-16|TAKE BACK RETURN|REG AIR|e carefully across the request| +3177|113827|3828|1|7|12885.74|0.01|0.04|N|O|1996-09-28|1996-09-01|1996-10-27|TAKE BACK RETURN|RAIL|ate slyly fur| +3177|81770|6787|2|42|73574.34|0.10|0.01|N|O|1996-10-09|1996-09-01|1996-10-11|DELIVER IN PERSON|FOB|lyly ironic foxes. sil| +3178|41261|8774|1|33|39674.58|0.04|0.05|N|O|1996-12-16|1996-11-07|1997-01-09|TAKE BACK RETURN|REG AIR| against the regular deposits. blithe| +3178|65172|185|2|20|22743.40|0.00|0.08|N|O|1996-08-30|1996-11-19|1996-09-03|NONE|AIR|refully regular packages. slyly pending c| +3178|140974|8517|3|49|98733.53|0.03|0.08|N|O|1996-12-13|1996-11-07|1997-01-05|NONE|AIR|y pending requests. unusu| +3178|137144|7145|4|23|27166.22|0.10|0.05|N|O|1996-12-17|1996-11-07|1997-01-03|COLLECT COD|TRUCK|ole blithely? special dolphins| +3179|67916|5435|1|29|54633.39|0.06|0.08|R|F|1993-01-31|1992-11-11|1993-02-25|TAKE BACK RETURN|AIR|es believe fluf| +3180|5676|5677|1|8|12653.36|0.07|0.01|R|F|1994-12-15|1994-12-17|1995-01-14|DELIVER IN PERSON|RAIL|luffy accounts are slyly slyly final d| +3180|193856|8895|2|12|23398.20|0.01|0.07|R|F|1994-09-29|1994-10-28|1994-10-07|COLLECT COD|FOB|ously about the even, final requests. furi| +3180|129983|5008|3|9|18116.82|0.01|0.05|A|F|1994-12-18|1994-12-18|1995-01-11|COLLECT COD|RAIL| across the quickly final ideas. blit| +3180|12159|2160|4|41|43917.15|0.03|0.02|R|F|1994-12-05|1994-12-02|1994-12-12|COLLECT COD|AIR| fluffily special| +3181|51409|8925|1|25|34010.00|0.02|0.06|A|F|1993-02-20|1993-03-13|1993-03-03|DELIVER IN PERSON|TRUCK| packages. carefull| +3181|25120|5121|2|19|19857.28|0.06|0.02|A|F|1993-02-19|1993-04-03|1993-03-05|TAKE BACK RETURN|SHIP|ckly above the carefully ironic reque| +3182|83409|8426|1|42|58480.80|0.03|0.08|R|F|1994-04-09|1994-05-08|1994-05-04|NONE|MAIL|fully. ironic, final dol| +3182|51383|8899|2|1|1334.38|0.06|0.03|R|F|1994-06-18|1994-04-06|1994-07-04|COLLECT COD|RAIL|g to the i| +3182|179959|2477|3|41|83596.95|0.06|0.03|R|F|1994-05-05|1994-04-29|1994-05-10|TAKE BACK RETURN|RAIL| the deposits. blithel| +3182|168136|653|4|31|37328.03|0.10|0.07|R|F|1994-07-05|1994-04-23|1994-07-18|TAKE BACK RETURN|FOB|ickly about the furio| +3182|61176|8695|5|2|2274.34|0.07|0.01|A|F|1994-05-31|1994-05-21|1994-06-03|DELIVER IN PERSON|RAIL|ost furiou| +3182|175214|5215|6|9|11602.89|0.05|0.06|R|F|1994-03-15|1994-04-30|1994-04-02|DELIVER IN PERSON|TRUCK|iously beyond the quic| +3183|91820|6839|1|43|77908.26|0.02|0.07|R|F|1994-05-14|1994-04-29|1994-06-08|DELIVER IN PERSON|RAIL|, special pinto beans: carefully blithe | +3183|4457|9458|2|20|27229.00|0.00|0.04|A|F|1994-05-20|1994-05-03|1994-05-23|COLLECT COD|TRUCK|r the blithely regular foxes. blithely f| +3208|30479|2983|1|27|38055.69|0.10|0.05|N|O|1998-04-17|1998-05-23|1998-05-02|TAKE BACK RETURN|MAIL|yly even pinto bea| +3208|44002|1515|2|12|11352.00|0.10|0.07|N|O|1998-07-26|1998-06-30|1998-08-10|DELIVER IN PERSON|TRUCK|e of the r| +3208|128040|5577|3|19|20292.76|0.09|0.04|N|O|1998-06-14|1998-06-16|1998-07-14|NONE|RAIL|use. carefully special the| +3208|162716|2717|4|16|28459.36|0.06|0.03|N|O|1998-04-30|1998-05-26|1998-05-23|DELIVER IN PERSON|SHIP|ounts cajol| +3208|163607|1156|5|23|38423.80|0.07|0.05|N|O|1998-04-28|1998-06-06|1998-05-27|NONE|MAIL|ic deposits cajole above the| +3208|140340|5369|6|17|23465.78|0.09|0.03|N|O|1998-04-24|1998-05-31|1998-05-12|TAKE BACK RETURN|MAIL|nts wake. even excuses doze| +3209|20004|5|1|32|29568.00|0.02|0.01|N|O|1998-01-01|1997-11-30|1998-01-19|TAKE BACK RETURN|RAIL|ly pending dol| +3210|161360|8909|1|2|2842.72|0.06|0.00|N|O|1996-10-24|1996-08-31|1996-10-29|DELIVER IN PERSON|REG AIR|uests doze fur| +3210|170996|8548|2|31|64076.69|0.05|0.00|N|O|1996-09-07|1996-09-12|1996-09-09|TAKE BACK RETURN|TRUCK|. accounts sleep quickly past the| +3210|118228|3251|3|21|26170.62|0.10|0.00|N|O|1996-08-20|1996-10-05|1996-09-03|NONE|AIR|y special somas are slyly. slyly| +3210|46296|1305|4|41|50933.89|0.01|0.03|N|O|1996-09-24|1996-08-19|1996-10-01|COLLECT COD|TRUCK|nst the slyly ironic| +3211|79689|7211|1|6|10012.08|0.08|0.03|A|F|1994-09-25|1994-10-25|1994-10-10|NONE|RAIL|sits nag slyly.| +3212|35046|7550|1|39|38260.56|0.09|0.03|R|F|1995-02-25|1995-03-14|1995-03-10|TAKE BACK RETURN|RAIL| are blithely. packages along the bold,| +3212|12429|9933|2|25|33535.50|0.00|0.04|A|F|1995-03-07|1995-03-18|1995-03-10|TAKE BACK RETURN|FOB|ct. slyly dogged packages are| +3212|83666|6175|3|3|4948.98|0.10|0.06|R|F|1995-02-04|1995-03-29|1995-02-07|COLLECT COD|SHIP|pecial deposits wake da| +3212|160956|3473|4|16|32271.20|0.10|0.05|R|F|1995-03-16|1995-03-20|1995-04-13|DELIVER IN PERSON|MAIL| according | +3212|173617|3618|5|12|20287.32|0.05|0.04|R|F|1995-02-12|1995-04-17|1995-03-11|COLLECT COD|REG AIR|as. bold, regular f| +3213|82407|7424|1|17|23619.80|0.00|0.02|N|O|1995-08-28|1995-08-10|1995-09-01|NONE|TRUCK|eas mold slyly regular packages. | +3213|1221|1222|2|49|54988.78|0.08|0.07|N|O|1995-07-27|1995-07-12|1995-08-10|DELIVER IN PERSON|REG AIR|quests boost. | +3213|106240|6241|3|10|12462.40|0.02|0.00|N|O|1995-08-05|1995-08-25|1995-08-31|NONE|RAIL| alongside of the quickly silent| +3213|167298|7299|4|21|28671.09|0.04|0.06|N|O|1995-07-07|1995-07-15|1995-07-13|COLLECT COD|SHIP|after the carefully even deposits | +3213|169255|4288|5|5|6621.25|0.03|0.03|N|O|1995-07-13|1995-07-29|1995-07-26|TAKE BACK RETURN|MAIL|s. furiously bold packages haggle qu| +3213|58939|1445|6|36|68325.48|0.03|0.04|N|O|1995-06-21|1995-08-20|1995-07-12|TAKE BACK RETURN|MAIL|ts among the furiously ironi| +3214|98972|6500|1|17|33506.49|0.01|0.05|N|O|1997-11-18|1997-10-12|1997-11-25|DELIVER IN PERSON|MAIL|ar deposits are| +3214|19450|6954|2|6|8216.70|0.04|0.00|N|O|1997-12-05|1997-10-28|1997-12-07|COLLECT COD|SHIP|es. even foxes after the pending requ| +3214|87082|9591|3|33|35279.64|0.01|0.02|N|O|1997-12-18|1997-10-23|1998-01-07|NONE|TRUCK|egular, fin| +3214|175723|3275|4|10|17987.20|0.10|0.02|N|O|1997-11-25|1997-11-06|1997-12-05|NONE|AIR|grate furiously even foxes. ironic c| +3215|124914|2451|1|45|87250.95|0.05|0.08|N|O|1995-11-19|1995-12-14|1995-11-29|DELIVER IN PERSON|FOB|to beans. slyly even dolphins| +3215|18597|6101|2|31|46983.29|0.07|0.00|N|O|1995-11-07|1995-12-03|1995-12-05|COLLECT COD|FOB|ironic packages use carefully in place| +3215|153370|8401|3|42|59781.54|0.09|0.08|N|O|1995-11-22|1996-01-28|1995-12-06|DELIVER IN PERSON|FOB|ecial requests engage furiously unusu| +3215|78407|5929|4|13|18010.20|0.05|0.07|N|O|1995-12-29|1996-01-10|1996-01-12|TAKE BACK RETURN|FOB|t excuses. permanent epitaphs haggle c| +3240|101476|3987|1|18|26594.46|0.01|0.06|R|F|1993-04-17|1993-02-22|1993-04-28|NONE|TRUCK|even excuses are evenly. slyly bold pi| +3240|107015|4546|2|9|9198.09|0.08|0.02|A|F|1993-05-13|1993-04-09|1993-05-21|DELIVER IN PERSON|REG AIR|xes. special, ironic instructi| +3240|199328|9329|3|11|15700.52|0.04|0.05|R|F|1993-02-05|1993-02-22|1993-02-13|DELIVER IN PERSON|TRUCK| pinto beans grow quickly carefully sl| +3240|101647|6668|4|49|80783.36|0.02|0.06|R|F|1993-03-12|1993-03-15|1993-03-20|NONE|REG AIR|cajole. quickly even packag| +3240|176439|6440|5|26|39401.18|0.02|0.08|R|F|1993-01-26|1993-02-26|1993-02-17|DELIVER IN PERSON|TRUCK|egrate carefully along the bli| +3241|151017|1018|1|49|52332.49|0.09|0.01|N|O|1997-06-02|1997-05-03|1997-06-25|DELIVER IN PERSON|REG AIR|nts sleep along the pending dependenci| +3241|138095|8096|2|49|55521.41|0.01|0.07|N|O|1997-04-06|1997-05-22|1997-05-05|COLLECT COD|FOB|ly unusual requests. blithely express d| +3241|150055|5086|3|36|39781.80|0.09|0.03|N|O|1997-03-26|1997-05-28|1997-03-29|TAKE BACK RETURN|TRUCK| even deposits sleep clos| +3241|172701|5219|4|48|85137.60|0.06|0.06|N|O|1997-04-04|1997-04-14|1997-04-14|COLLECT COD|REG AIR|tect furiously. furiously reg| +3242|12691|195|1|37|59336.53|0.08|0.03|R|F|1993-12-28|1994-01-16|1994-01-24|TAKE BACK RETURN|TRUCK|nal ideas. foxes haggle brave ideas. s| +3242|88868|6393|2|15|27852.90|0.08|0.02|A|F|1994-01-31|1994-01-23|1994-02-15|TAKE BACK RETURN|FOB|pending instructions. furiously silent req| +3242|188539|8540|3|21|34178.13|0.06|0.04|A|F|1993-12-11|1993-12-19|1993-12-18|DELIVER IN PERSON|REG AIR|quests sleep. inst| +3242|172263|2264|4|49|65427.74|0.07|0.01|R|F|1994-01-07|1993-12-08|1994-01-19|DELIVER IN PERSON|TRUCK| cajole sometimes s| +3243|44398|4399|1|23|30874.97|0.04|0.01|N|O|1995-12-04|1996-01-03|1995-12-09|NONE|REG AIR|s. express requests cajole thinly quickly b| +3243|181284|3803|2|41|55976.48|0.05|0.02|N|O|1996-01-28|1996-01-08|1996-01-29|TAKE BACK RETURN|FOB|refully even accounts. carefully iro| +3244|105757|8268|1|3|5288.25|0.06|0.03|A|F|1993-09-01|1993-06-20|1993-10-01|DELIVER IN PERSON|MAIL|ffily. fin| +3244|55830|3346|2|23|41074.09|0.03|0.02|A|F|1993-07-24|1993-08-01|1993-07-28|NONE|TRUCK|express pi| +3244|122565|7590|3|28|44451.68|0.06|0.03|R|F|1993-05-27|1993-07-25|1993-06-06|DELIVER IN PERSON|MAIL| foxes according to the ironic foxes b| +3245|129588|4613|1|13|21028.54|0.03|0.03|N|O|1995-07-02|1995-07-23|1995-07-25|DELIVER IN PERSON|RAIL|en theodolites abo| +3245|174949|2501|2|14|28335.16|0.06|0.06|N|O|1995-07-27|1995-07-07|1995-08-16|NONE|REG AIR|ly bold accounts. caref| +3245|158851|3882|3|8|15278.80|0.01|0.06|N|O|1995-08-21|1995-08-30|1995-08-31|DELIVER IN PERSON|RAIL| theodolites according to the sl| +3246|50000|7513|1|45|42750.00|0.04|0.01|R|F|1993-09-24|1993-09-30|1993-09-26|NONE|REG AIR|ests. furiously unusual foxes wake. ruthles| +3247|45793|5794|1|28|48686.12|0.02|0.06|N|O|1997-11-04|1997-11-19|1997-11-15|TAKE BACK RETURN|FOB|en accounts boos| +3247|32921|5425|2|43|79718.56|0.05|0.07|N|O|1997-12-06|1997-10-29|1997-12-26|COLLECT COD|TRUCK|ost carefully above the ironic foxes. blith| +3247|92437|9965|3|49|70042.07|0.08|0.03|N|O|1997-12-19|1997-11-16|1997-12-24|TAKE BACK RETURN|MAIL|arefully even requests. ironic deposits| +3272|27798|5305|1|26|44870.54|0.03|0.03|N|O|1998-06-26|1998-06-20|1998-07-03|DELIVER IN PERSON|MAIL| ideas. blith| +3272|191279|6318|2|40|54810.80|0.03|0.07|N|O|1998-06-27|1998-06-04|1998-07-25|DELIVER IN PERSON|MAIL|iously furiously special a| +3272|9691|2192|3|21|33614.49|0.01|0.00|N|O|1998-07-16|1998-06-11|1998-07-30|TAKE BACK RETURN|MAIL|es. dogged packages hinder. | +3272|61825|4332|4|38|67899.16|0.07|0.02|N|O|1998-07-20|1998-07-26|1998-08-03|TAKE BACK RETURN|AIR| requests nag blithely expr| +3272|86606|9115|5|42|66889.20|0.00|0.04|N|O|1998-05-16|1998-06-19|1998-05-20|NONE|RAIL| use slyly. | +3272|181374|8929|6|26|37839.62|0.03|0.00|N|O|1998-08-14|1998-06-29|1998-08-29|COLLECT COD|MAIL|ly even dependencies | +3273|113062|3063|1|23|24726.38|0.08|0.05|A|F|1992-09-26|1992-11-05|1992-10-09|NONE|RAIL|et requests haggle carefully furiously| +3273|29744|2247|2|19|31801.06|0.02|0.03|R|F|1992-12-19|1992-11-19|1992-12-27|DELIVER IN PERSON|MAIL|r asymptotes. slyly final asymp| +3273|91178|6197|3|45|52612.65|0.06|0.07|R|F|1993-01-03|1992-11-21|1993-01-08|TAKE BACK RETURN|REG AIR|uctions above the slyly even | +3273|23669|3670|4|31|49372.46|0.06|0.06|R|F|1992-12-29|1992-11-03|1993-01-14|DELIVER IN PERSON|MAIL|re regular, pending fra| +3273|199740|9741|5|7|12878.18|0.06|0.02|A|F|1992-10-08|1992-11-03|1992-11-07|TAKE BACK RETURN|AIR|ly. ironic multipliers according to the dog| +3273|16575|9077|6|32|47730.24|0.05|0.00|A|F|1992-12-28|1992-11-23|1993-01-11|DELIVER IN PERSON|TRUCK|ial excuses are slyly about the unusual acc| +3273|163159|708|7|49|59885.35|0.06|0.00|R|F|1992-12-09|1992-10-23|1993-01-05|DELIVER IN PERSON|AIR|ckages. boldly r| +3274|197603|5161|1|44|74826.40|0.02|0.08|N|O|1997-01-09|1997-02-19|1997-01-13|COLLECT COD|FOB|lithely regular notornis. furious| +3274|107782|7783|2|8|14318.24|0.00|0.04|N|O|1997-01-16|1997-02-10|1997-02-05|COLLECT COD|SHIP|deas lose al| +3275|77132|4654|1|47|52129.11|0.04|0.06|N|O|1995-10-01|1995-08-22|1995-10-05|DELIVER IN PERSON|MAIL|fily pending t| +3275|145731|8246|2|29|51525.17|0.08|0.01|N|O|1995-08-21|1995-08-07|1995-09-03|COLLECT COD|AIR|ges run along the b| +3275|96784|4312|3|13|23150.14|0.10|0.02|N|O|1995-06-21|1995-09-12|1995-06-29|NONE|SHIP|ously bold hockey players. carefully pe| +3275|38895|6405|4|40|73355.60|0.05|0.02|N|O|1995-08-28|1995-07-21|1995-09-08|TAKE BACK RETURN|FOB|uriously about the quick| +3275|107133|2154|5|30|34203.90|0.00|0.08|N|O|1995-09-05|1995-07-23|1995-09-13|COLLECT COD|AIR|into beans after the carefull| +3275|182906|5425|6|5|9944.50|0.02|0.01|N|O|1995-09-14|1995-07-21|1995-09-21|NONE|MAIL| the even accounts boost bli| +3275|90977|978|7|3|5903.91|0.10|0.02|N|O|1995-07-06|1995-08-04|1995-07-13|NONE|FOB| requests. carefully ironic d| +3276|34139|9146|1|12|12877.56|0.01|0.01|R|F|1993-09-20|1993-11-09|1993-09-22|DELIVER IN PERSON|RAIL|ing tithes. regular deposits haggle. fluffi| +3276|167535|7536|2|37|59293.61|0.01|0.01|R|F|1993-11-21|1993-10-09|1993-12-07|DELIVER IN PERSON|RAIL|y final excuses cajole furiously b| +3276|151980|1981|3|42|85343.16|0.04|0.03|R|F|1993-10-02|1993-10-18|1993-10-25|TAKE BACK RETURN|MAIL|ealms around the deposits use closely a| +3276|118874|8875|4|42|79500.54|0.06|0.05|R|F|1993-11-07|1993-11-08|1993-12-02|COLLECT COD|FOB| ironic requests are boldly carefully b| +3276|101985|9516|5|30|59609.40|0.08|0.08|R|F|1993-09-14|1993-10-29|1993-09-15|NONE|REG AIR|ross the blit| +3276|54816|4817|6|31|54895.11|0.02|0.06|R|F|1993-10-20|1993-11-12|1993-10-31|TAKE BACK RETURN|FOB|ect furiousl| +3276|88167|8168|7|27|31189.32|0.04|0.05|A|F|1993-12-03|1993-11-15|1993-12-05|NONE|FOB|. blithely en| +3277|20200|7707|1|22|24644.40|0.08|0.04|R|F|1994-04-27|1994-04-01|1994-05-06|TAKE BACK RETURN|RAIL| furiously unusual ideas. ironic pac| +3277|94064|6574|2|34|35974.04|0.01|0.06|R|F|1994-04-04|1994-04-02|1994-04-13|DELIVER IN PERSON|TRUCK|usly express theodolites. slyly pending | +3278|85912|929|1|11|20877.01|0.01|0.03|A|F|1992-08-17|1992-07-15|1992-08-22|TAKE BACK RETURN|AIR|e ruthlessly ironi| +3278|120702|3215|2|34|58571.80|0.07|0.08|A|F|1992-06-23|1992-07-02|1992-06-25|NONE|AIR|arefully slyly idle accounts. furiousl| +3279|38105|3112|1|50|52155.00|0.09|0.06|A|F|1993-01-07|1992-12-06|1993-01-26|NONE|SHIP|he furiously even asy| +3279|18754|3757|2|41|68582.75|0.03|0.08|A|F|1992-09-29|1992-11-30|1992-10-26|COLLECT COD|SHIP|aggle carefully carefully bra| +3279|182878|433|3|47|92160.89|0.05|0.01|R|F|1992-09-26|1992-11-05|1992-10-26|DELIVER IN PERSON|AIR|nic ideas wake final | +3279|23390|8395|4|10|13133.90|0.08|0.05|R|F|1992-09-28|1992-11-10|1992-10-02|TAKE BACK RETURN|FOB|. furiously even packages abov| +3304|140275|276|1|32|42088.64|0.09|0.04|N|O|1997-11-16|1997-10-12|1997-11-24|NONE|REG AIR|es. final ideas about the slyly i| +3305|186583|4138|1|43|71791.94|0.03|0.04|N|O|1996-05-24|1996-05-28|1996-06-13|DELIVER IN PERSON|AIR|ckages kin| +3305|96533|6534|2|45|68828.85|0.03|0.00|N|O|1996-05-06|1996-06-01|1996-05-09|DELIVER IN PERSON|FOB|r platelets wake furiously abov| +3306|107758|7759|1|18|31783.50|0.03|0.01|N|O|1996-08-18|1996-08-21|1996-09-03|COLLECT COD|MAIL|ideas breach careful| +3306|77057|9565|2|47|48600.35|0.02|0.02|N|O|1996-08-06|1996-09-22|1996-08-25|COLLECT COD|FOB|ages above the fluffily regular accounts | +3306|96502|9012|3|32|47952.00|0.03|0.07|N|O|1996-10-25|1996-09-25|1996-11-19|NONE|TRUCK|s. carefully silent | +3306|98116|626|4|25|27852.75|0.09|0.00|N|O|1996-10-09|1996-08-05|1996-10-30|NONE|REG AIR|nts sleep against the| +3306|28577|8578|5|38|57211.66|0.00|0.04|N|O|1996-09-12|1996-09-17|1996-09-28|DELIVER IN PERSON|FOB|aters. unusual, unusual depos| +3306|90376|2886|6|14|19129.18|0.09|0.01|N|O|1996-07-14|1996-08-10|1996-07-31|COLLECT COD|RAIL|deposits. packages nag f| +3307|63573|3574|1|14|21511.98|0.02|0.01|A|F|1993-12-10|1994-01-16|1993-12-20|NONE|FOB|le carefully about the f| +3307|66588|1601|2|9|13991.22|0.07|0.07|A|F|1994-03-07|1994-01-10|1994-03-21|COLLECT COD|RAIL|n dependenc| +3308|61552|6565|1|26|39352.30|0.08|0.08|A|F|1994-04-09|1994-04-12|1994-05-01|DELIVER IN PERSON|FOB|ular requests nod slyly against the| +3308|89062|9063|2|9|9459.54|0.01|0.08|R|F|1994-03-25|1994-04-14|1994-04-19|DELIVER IN PERSON|MAIL|ccounts wake idly| +3308|54801|2317|3|7|12290.60|0.08|0.06|R|F|1994-05-29|1994-03-08|1994-06-06|COLLECT COD|REG AIR| the sly dependenc| +3309|2595|2596|1|49|73381.91|0.03|0.07|N|O|1996-07-17|1996-06-24|1996-08-14|NONE|MAIL|nal excuses. accounts sl| +3309|9641|4642|2|36|55823.04|0.06|0.03|N|O|1996-07-09|1996-07-28|1996-07-28|COLLECT COD|RAIL| final theodolites wake quickly packages.| +3309|33900|8907|3|42|77023.80|0.10|0.05|N|O|1996-08-31|1996-08-11|1996-09-03|COLLECT COD|TRUCK|e pending, final asy| +3309|151227|3743|4|18|23007.96|0.04|0.01|N|O|1996-07-31|1996-07-06|1996-08-27|NONE|TRUCK|y even instr| +3310|81883|9408|1|8|14919.04|0.08|0.02|N|O|1997-06-10|1997-07-05|1997-07-07|TAKE BACK RETURN|MAIL|thlessly ruthless excuses. fluffily iron| +3310|1181|1182|2|49|53026.82|0.04|0.08|N|O|1997-08-05|1997-07-24|1997-08-06|TAKE BACK RETURN|RAIL|its mold abo| +3310|33412|922|3|38|51125.58|0.07|0.06|N|O|1997-07-30|1997-07-27|1997-08-26|NONE|SHIP|nstructions. carefully reg| +3310|142574|2575|4|10|16165.70|0.09|0.07|N|O|1997-07-19|1997-06-07|1997-07-25|DELIVER IN PERSON|REG AIR|deposits. furiou| +3310|33069|5573|5|30|30061.80|0.10|0.02|N|O|1997-06-04|1997-07-07|1997-06-18|NONE|AIR|lets doubt carefully. carefully pending gif| +3311|109099|9100|1|9|9972.81|0.01|0.03|N|O|1995-07-01|1995-04-28|1995-07-11|COLLECT COD|AIR|-- fluffily| +3311|22021|9528|2|28|26404.56|0.06|0.02|N|O|1995-07-11|1995-05-24|1995-07-20|DELIVER IN PERSON|MAIL|ly unusual asymptotes.| +3311|94691|2219|3|21|35399.49|0.09|0.00|N|F|1995-06-17|1995-06-09|1995-07-05|DELIVER IN PERSON|SHIP|packages? carefully idle instructio| +3311|71291|8813|4|38|47967.02|0.02|0.03|A|F|1995-05-09|1995-05-15|1995-05-12|NONE|SHIP|egular accounts cajol| +3311|186711|1748|5|45|80896.95|0.04|0.06|N|F|1995-06-04|1995-05-27|1995-07-03|COLLECT COD|MAIL|nal requests nag slyly across| +3336|132688|228|1|37|63665.16|0.05|0.07|R|F|1994-11-06|1994-09-19|1994-11-30|COLLECT COD|TRUCK| daring asymptotes. express, even r| +3336|74998|7506|2|22|43405.78|0.04|0.00|A|F|1994-07-31|1994-10-05|1994-08-30|TAKE BACK RETURN|MAIL|yly ironic packages-- regular theodo| +3336|88682|8683|3|27|45108.36|0.05|0.02|R|F|1994-09-03|1994-09-16|1994-09-17|DELIVER IN PERSON|MAIL|deposits cajole blithely. f| +3337|114422|1956|1|19|27291.98|0.01|0.05|N|O|1995-09-10|1995-07-22|1995-09-17|COLLECT COD|REG AIR|riously among the careful| +3338|184538|2093|1|37|60033.61|0.10|0.02|N|O|1995-10-09|1995-09-07|1995-10-21|TAKE BACK RETURN|AIR|st furiously among the e| +3338|117257|2280|2|19|24210.75|0.03|0.01|N|O|1995-08-26|1995-10-07|1995-09-01|NONE|REG AIR|leep regularly? | +3338|134947|4948|3|16|31711.04|0.02|0.07|N|O|1995-10-09|1995-09-13|1995-10-22|DELIVER IN PERSON|FOB|. even instructio| +3338|38011|8012|4|39|37011.39|0.08|0.01|N|O|1995-09-30|1995-09-18|1995-10-21|NONE|SHIP|usual, express platelets wake slyly slyly| +3339|116926|6927|1|24|46630.08|0.08|0.03|R|F|1992-12-24|1993-01-07|1993-01-22|NONE|SHIP| ironic dependencies haggle s| +3339|170899|8451|2|10|19698.90|0.10|0.03|R|F|1993-03-14|1993-01-18|1993-03-19|DELIVER IN PERSON|TRUCK|oost furiously special deposits. request| +3339|89059|6584|3|4|4192.20|0.09|0.03|R|F|1993-01-17|1993-01-17|1993-01-31|NONE|AIR|ding, ironic pinto | +3339|14165|1669|4|3|3237.48|0.08|0.08|A|F|1993-02-16|1993-02-11|1993-03-05|NONE|TRUCK| express foxes. slyly regula| +3339|61186|8705|5|45|51623.10|0.06|0.03|A|F|1993-02-28|1992-12-23|1993-03-02|NONE|FOB|y even escapades use furiously regu| +3339|141391|1392|6|33|47268.87|0.09|0.03|A|F|1993-03-16|1992-12-25|1993-04-06|COLLECT COD|RAIL|ts unwind. special foxes boost ex| +3339|148835|1350|7|30|56514.90|0.03|0.02|A|F|1993-03-03|1993-01-18|1993-04-02|DELIVER IN PERSON|REG AIR|s cajole slyly i| +3340|59626|9627|1|19|30126.78|0.02|0.01|N|O|1995-09-27|1995-12-09|1995-10-13|NONE|FOB|ross the regular the| +3340|122708|5221|2|1|1730.70|0.01|0.00|N|O|1995-11-08|1995-10-25|1995-11-19|TAKE BACK RETURN|MAIL|l theodolites cajole carefu| +3340|144585|2128|3|17|27702.86|0.01|0.08|N|O|1995-09-26|1995-10-23|1995-10-17|NONE|RAIL|es wake furiously among the regular c| +3340|32517|2518|4|44|63778.44|0.06|0.04|N|O|1995-11-13|1995-11-09|1995-12-05|NONE|AIR|ake according to the pending p| +3340|108429|8430|5|24|34498.08|0.08|0.03|N|O|1996-01-01|1995-12-02|1996-01-22|DELIVER IN PERSON|TRUCK| asymptotes u| +3341|164738|4739|1|20|36054.60|0.00|0.02|N|O|1997-12-09|1998-01-01|1997-12-11|TAKE BACK RETURN|MAIL|hely blithely bold requests| +3342|134876|4877|1|35|66880.45|0.09|0.00|A|F|1995-03-24|1995-05-30|1995-03-30|NONE|FOB|ses wake carefully sauternes. slyly ev| +3342|50834|835|2|33|58899.39|0.06|0.03|N|F|1995-06-09|1995-06-06|1995-07-01|COLLECT COD|AIR|s. furiously silent | +3343|119453|6987|1|49|72150.05|0.02|0.03|A|F|1994-08-31|1994-10-04|1994-09-11|TAKE BACK RETURN|REG AIR|cial requests sleep furious| +3343|32582|92|2|47|71185.26|0.02|0.01|R|F|1994-09-06|1994-10-28|1994-10-01|DELIVER IN PERSON|AIR|silent theodolites boost. | +3343|196962|2001|3|18|37061.28|0.01|0.00|A|F|1994-10-18|1994-10-11|1994-11-07|NONE|REG AIR|platelets are! foxes ar| +3368|121882|4395|1|47|89482.36|0.02|0.00|R|F|1994-04-08|1994-05-03|1994-04-24|NONE|RAIL|fully final packages boost depend| +3368|69174|1681|2|45|51442.65|0.06|0.02|A|F|1994-06-17|1994-05-31|1994-06-23|COLLECT COD|RAIL|latelets haggle | +3369|98894|6422|1|8|15143.12|0.09|0.02|N|O|1997-07-01|1997-04-30|1997-07-17|DELIVER IN PERSON|REG AIR|ironic, final deposits impress quickly| +3370|176304|8822|1|38|52451.40|0.07|0.07|A|F|1994-05-04|1994-04-11|1994-06-03|DELIVER IN PERSON|SHIP|regular the| +3370|140573|574|2|35|56474.95|0.03|0.06|A|F|1994-04-26|1994-04-21|1994-05-13|TAKE BACK RETURN|FOB|ar dugouts run slyl| +3370|6209|8710|3|35|39032.00|0.07|0.00|A|F|1994-04-30|1994-04-17|1994-05-12|TAKE BACK RETURN|SHIP|packages. even sentiments cajole st| +3371|177539|5091|1|31|50112.43|0.10|0.07|N|O|1996-01-06|1996-03-23|1996-01-30|COLLECT COD|TRUCK|the carefully unusu| +3371|84000|4001|2|20|19680.00|0.03|0.08|N|O|1996-01-09|1996-02-11|1996-02-07|DELIVER IN PERSON|FOB| the ironic re| +3371|184022|6541|3|25|27650.50|0.06|0.07|N|O|1996-04-08|1996-02-08|1996-04-11|DELIVER IN PERSON|MAIL|final deposits. bold, unus| +3372|140536|537|1|39|61484.67|0.08|0.03|R|F|1993-05-25|1993-04-20|1993-06-02|COLLECT COD|REG AIR|tructions. al| +3372|180964|3483|2|16|32719.36|0.02|0.01|R|F|1993-04-11|1993-03-28|1993-05-08|NONE|REG AIR|int fluffily furiously even instruc| +3372|52479|2480|3|18|25766.46|0.00|0.06|R|F|1993-05-02|1993-03-13|1993-05-22|COLLECT COD|AIR|l packages around the| +3373|108429|940|1|22|31623.24|0.04|0.01|N|O|1995-12-21|1995-11-20|1995-12-24|COLLECT COD|SHIP|hely bold, regular packages. furio| +3373|153337|8368|2|47|65345.51|0.04|0.01|N|O|1995-09-09|1995-10-28|1995-10-04|NONE|FOB|ily regular asympt| +3373|130885|3399|3|4|7663.52|0.04|0.05|N|O|1995-08-30|1995-11-18|1995-09-11|TAKE BACK RETURN|RAIL|. furiously e| +3373|179967|7519|4|40|81878.40|0.06|0.03|N|O|1995-08-28|1995-10-28|1995-09-11|NONE|SHIP|structions boo| +3374|28883|3888|1|4|7247.52|0.03|0.03|R|F|1993-03-25|1993-03-01|1993-04-08|NONE|TRUCK|nstructions. bold requests us| +3374|23840|6343|2|22|38804.48|0.05|0.02|R|F|1993-01-17|1993-03-16|1993-01-20|COLLECT COD|RAIL|e express, ironi| +3374|76466|6467|3|23|33176.58|0.03|0.04|A|F|1993-05-01|1993-03-23|1993-05-30|NONE|AIR| frets haggle. quickly fi| +3374|150902|5933|4|20|39058.00|0.07|0.00|R|F|1993-02-10|1993-03-12|1993-03-07|DELIVER IN PERSON|MAIL| detect never| +3374|2469|4970|5|27|37029.42|0.06|0.05|R|F|1993-04-02|1993-03-10|1993-04-23|TAKE BACK RETURN|TRUCK|sts thrash quickly ironic pinto beans| +3374|92754|282|6|43|75110.25|0.10|0.03|A|F|1993-04-13|1993-03-29|1993-04-19|NONE|MAIL|ages at the ironic deposits use qu| +3375|165832|5833|1|46|87300.18|0.05|0.01|A|F|1992-04-11|1992-03-16|1992-04-27|DELIVER IN PERSON|RAIL|dolites wake after th| +3375|133604|1144|2|39|63866.40|0.07|0.08|A|F|1992-04-26|1992-03-11|1992-05-01|DELIVER IN PERSON|AIR|refully even foxes after the quickly bo| +3375|71559|6574|3|9|13774.95|0.03|0.05|R|F|1992-03-02|1992-04-26|1992-03-17|DELIVER IN PERSON|SHIP|lar dolphins. id| +3400|99510|4529|1|13|19623.63|0.02|0.01|A|F|1993-07-11|1993-08-24|1993-07-31|NONE|AIR|er the bold requests. furious| +3400|54247|1763|2|3|3603.72|0.10|0.05|A|F|1993-07-26|1993-09-17|1993-08-06|COLLECT COD|MAIL|posits. slyly final grouches eat accoun| +3400|114788|7300|3|6|10816.68|0.04|0.08|A|F|1993-08-05|1993-09-15|1993-08-29|DELIVER IN PERSON|MAIL|are carefully| +3401|46277|3790|1|19|23242.13|0.09|0.07|R|F|1992-04-10|1992-05-01|1992-04-21|COLLECT COD|SHIP|ng, final asymptotes believe foxes; sly| +3401|170528|5563|2|20|31970.40|0.02|0.00|A|F|1992-04-07|1992-05-30|1992-04-10|TAKE BACK RETURN|SHIP|slyly even accounts. furiously final pinto | +3401|49031|9032|3|15|14700.45|0.09|0.00|A|F|1992-07-13|1992-05-13|1992-07-14|COLLECT COD|REG AIR|cial deposits affix abo| +3401|57068|7069|4|29|29726.74|0.04|0.03|R|F|1992-06-24|1992-05-27|1992-07-14|NONE|RAIL|sts could eat slyly. slowly even p| +3401|141836|9379|5|34|63846.22|0.03|0.02|A|F|1992-05-25|1992-05-13|1992-06-08|DELIVER IN PERSON|SHIP|usual escapades. furiously i| +3401|30277|2781|6|24|28974.48|0.07|0.06|R|F|1992-05-22|1992-05-02|1992-05-26|TAKE BACK RETURN|SHIP|counts. regularly ironic theodolite| +3402|104901|9922|1|47|89577.30|0.10|0.06|A|F|1992-09-09|1992-08-17|1992-09-17|NONE|REG AIR|deposits use s| +3403|80367|7892|1|20|26947.20|0.10|0.00|R|F|1993-02-08|1993-03-17|1993-03-08|TAKE BACK RETURN|SHIP|, regular tithes. q| +3403|116398|8910|2|8|11315.12|0.05|0.06|A|F|1993-04-25|1993-02-17|1993-05-04|COLLECT COD|REG AIR|e final, ironic foxes affix furio| +3403|95862|5863|3|18|33441.48|0.04|0.08|A|F|1993-04-13|1993-03-07|1993-05-12|COLLECT COD|MAIL|ithely express platelets about the | +3403|142223|2224|4|29|36691.38|0.04|0.02|A|F|1993-04-18|1993-02-03|1993-04-22|NONE|SHIP|ideas. ironi| +3403|125880|8393|5|44|83858.72|0.06|0.01|R|F|1993-01-20|1993-01-30|1993-02-05|DELIVER IN PERSON|AIR|ugouts. rut| +3403|64246|6753|6|18|21784.32|0.00|0.01|A|F|1993-02-02|1993-03-02|1993-02-16|COLLECT COD|RAIL|cajole fluffily. ideas about the idly| +3403|169410|4443|7|19|28108.79|0.03|0.04|R|F|1993-03-28|1993-02-26|1993-04-08|COLLECT COD|SHIP| affix furiously. ruthlessly express cou| +3404|70796|5811|1|36|63604.44|0.05|0.07|A|F|1993-07-04|1993-06-23|1993-08-02|COLLECT COD|SHIP|ckages. furiously express| +3404|60013|7532|2|37|36001.37|0.06|0.04|R|F|1993-06-06|1993-06-05|1993-07-02|NONE|RAIL|egrate enticingly? unusual requests can| +3404|36243|6244|3|28|33018.72|0.01|0.06|A|F|1993-06-14|1993-05-29|1993-07-05|TAKE BACK RETURN|SHIP|equests. instructions above the unus| +3404|126456|6457|4|46|68192.70|0.00|0.08|R|F|1993-04-07|1993-06-10|1993-04-24|DELIVER IN PERSON|MAIL|y special theodolites about the asymptotes | +3404|139941|4968|5|28|55466.32|0.04|0.06|A|F|1993-05-15|1993-06-20|1993-05-24|TAKE BACK RETURN|MAIL|unusual deposits are q| +3404|173973|3974|6|15|30704.55|0.03|0.01|A|F|1993-04-10|1993-05-30|1993-04-20|DELIVER IN PERSON|FOB|ly always ironic dolphins. slyly expre| +3405|157940|5486|1|49|97899.06|0.08|0.03|A|F|1993-03-28|1993-02-15|1993-04-14|TAKE BACK RETURN|SHIP|gular deposits| +3406|75894|3416|1|47|87884.83|0.01|0.00|R|F|1992-06-19|1992-05-05|1992-07-12|TAKE BACK RETURN|TRUCK| against the slyly even | +3406|146723|6724|2|10|17697.20|0.00|0.00|A|F|1992-05-16|1992-06-20|1992-05-24|NONE|AIR|y about the carefully even theodol| +3407|169686|4719|1|20|35113.60|0.01|0.00|R|F|1992-04-24|1992-06-07|1992-05-14|DELIVER IN PERSON|TRUCK|refully along th| +3407|109125|4146|2|3|3402.36|0.07|0.01|A|F|1992-07-02|1992-06-04|1992-07-10|NONE|TRUCK|der the special pinto beans are blit| +3407|56308|8814|3|29|36664.70|0.05|0.07|A|F|1992-03-25|1992-05-04|1992-04-01|TAKE BACK RETURN|REG AIR|ctions: requests sublate slyly furious| +3407|152863|409|4|35|67055.10|0.03|0.03|R|F|1992-05-26|1992-05-21|1992-06-10|NONE|TRUCK|ding requests are | +3407|161741|4258|5|39|70306.86|0.02|0.03|A|F|1992-04-23|1992-06-18|1992-05-20|COLLECT COD|RAIL| blithely fina| +3432|128093|5630|1|28|31390.52|0.03|0.06|R|F|1993-06-06|1993-05-19|1993-06-28|DELIVER IN PERSON|REG AIR|deposits. carefully ironic ideas are re| +3433|63565|1084|1|41|62670.96|0.08|0.00|A|F|1993-07-20|1993-09-05|1993-07-31|COLLECT COD|TRUCK|ts. carefully express accounts ca| +3433|127750|7751|2|24|42666.00|0.10|0.05|R|F|1993-11-02|1993-09-03|1993-11-21|DELIVER IN PERSON|RAIL|sleep above | +3433|85104|2629|3|3|3267.30|0.07|0.08|A|F|1993-10-31|1993-09-28|1993-11-12|COLLECT COD|FOB|according to the unusual, | +3433|130978|979|4|13|26116.61|0.04|0.06|R|F|1993-09-14|1993-08-15|1993-09-25|NONE|REG AIR|special theodolites| +3433|146599|9114|5|31|51013.29|0.05|0.07|R|F|1993-08-20|1993-08-12|1993-08-27|NONE|MAIL|ans. slyly expr| +3434|99469|1979|1|14|20558.44|0.03|0.00|R|F|1994-11-20|1994-10-17|1994-12-12|NONE|FOB|ts sleep furiously even pi| +3434|164758|4759|2|28|51037.00|0.01|0.04|A|F|1994-09-28|1994-11-23|1994-10-05|NONE|TRUCK|gle careful| +3435|100269|270|1|36|45693.36|0.08|0.08|A|F|1993-11-23|1993-11-24|1993-12-23|TAKE BACK RETURN|SHIP| the blithely ironic deposits sleep aroun| +3435|10928|5931|2|17|31261.64|0.07|0.00|R|F|1993-10-10|1993-11-04|1993-10-19|COLLECT COD|RAIL|jole across the quickly pending package| +3435|58410|3421|3|22|30105.02|0.02|0.04|R|F|1993-09-25|1993-11-09|1993-10-13|NONE|FOB|theodolites. fox| +3436|164193|1742|1|49|61602.31|0.06|0.06|N|O|1997-07-08|1997-07-13|1997-07-23|TAKE BACK RETURN|AIR|the quickly even ac| +3436|190618|5657|2|1|1708.61|0.09|0.06|N|O|1997-07-05|1997-08-03|1997-07-25|TAKE BACK RETURN|SHIP| pending asymptote| +3436|105563|5564|3|16|25096.96|0.10|0.04|N|O|1997-08-26|1997-08-18|1997-09-19|COLLECT COD|FOB|arefully bold notornis-| +3437|117492|5026|1|32|48303.68|0.05|0.03|N|O|1996-02-10|1996-02-01|1996-02-22|COLLECT COD|REG AIR|ully final asymptotes nag blithely. slyly | +3437|76630|6631|2|50|80331.50|0.07|0.07|N|O|1996-01-08|1996-02-12|1996-02-07|DELIVER IN PERSON|FOB|egular packages. pending, ironic pack| +3437|113784|8807|3|43|77304.54|0.05|0.08|N|O|1995-12-08|1996-01-31|1995-12-30|NONE|SHIP|r the furiously ironic requests | +3437|161823|6856|4|10|18848.20|0.09|0.07|N|O|1996-02-09|1996-01-20|1996-03-02|COLLECT COD|TRUCK|lithely even depo| +3437|145927|5928|5|49|96673.08|0.02|0.02|N|O|1996-02-24|1996-01-15|1996-03-06|NONE|FOB|nts are. unusual accounts are.| +3437|187412|4967|6|32|47981.12|0.04|0.07|N|O|1996-02-07|1996-02-20|1996-02-16|TAKE BACK RETURN|MAIL|to sleep blithely. regula| +3437|28071|8072|7|36|35966.52|0.10|0.01|N|O|1996-02-20|1996-02-21|1996-02-25|COLLECT COD|RAIL|ons cajole carefully fluffily re| +3438|187272|2309|1|17|23107.59|0.08|0.08|N|O|1996-05-14|1996-06-02|1996-06-06|COLLECT COD|REG AIR|side the quickly fin| +3438|65474|487|2|13|18713.11|0.09|0.04|N|O|1996-06-24|1996-04-25|1996-07-03|NONE|MAIL|pendencies. furiously bold i| +3438|7015|9516|3|23|21206.23|0.03|0.05|N|O|1996-07-05|1996-05-05|1996-08-04|NONE|TRUCK|nstructions. ironic instructions accor| +3438|99867|7395|4|37|69073.82|0.03|0.01|N|O|1996-04-18|1996-04-18|1996-05-10|TAKE BACK RETURN|RAIL|. unusual deposits | +3439|68855|3868|1|46|83897.10|0.06|0.00|R|F|1992-07-08|1992-06-16|1992-07-20|TAKE BACK RETURN|AIR|gular deposits sleep blithely regular req| +3439|37305|4815|2|24|29815.20|0.03|0.04|R|F|1992-05-30|1992-06-15|1992-06-25|COLLECT COD|TRUCK|into beans boost carefull| +3439|179469|9470|3|21|32517.66|0.03|0.02|R|F|1992-06-07|1992-05-21|1992-06-10|TAKE BACK RETURN|SHIP|side of the| +3464|164269|9302|1|26|34664.76|0.10|0.05|R|F|1995-05-05|1995-05-08|1995-05-12|TAKE BACK RETURN|AIR| requests eat slyly ab| +3464|66203|8710|2|29|33906.80|0.02|0.01|R|F|1995-04-25|1995-05-03|1995-04-28|DELIVER IN PERSON|RAIL|long the pending instructions. ironic | +3464|70886|5901|3|1|1856.88|0.09|0.06|R|F|1995-04-08|1995-05-12|1995-05-02|COLLECT COD|FOB|. sometimes ironic packages haggle fu| +3464|172046|4564|4|33|36895.32|0.05|0.01|N|O|1995-06-26|1995-05-20|1995-07-14|TAKE BACK RETURN|AIR|onic account| +3464|168606|3639|5|11|18420.60|0.07|0.08|R|F|1995-04-12|1995-06-13|1995-04-22|DELIVER IN PERSON|AIR|ffix slyly. regular requests are fluf| +3464|159009|4040|6|21|22428.00|0.02|0.04|N|F|1995-05-22|1995-06-01|1995-06-21|TAKE BACK RETURN|FOB|ake according to| +3464|61208|1209|7|11|12861.20|0.07|0.08|N|O|1995-07-17|1995-05-09|1995-07-30|COLLECT COD|AIR| quickly. | +3465|112492|26|1|36|54161.64|0.07|0.06|R|F|1994-11-19|1994-10-02|1994-12-03|TAKE BACK RETURN|AIR|ual requests. even theodolites unwind fur| +3465|49828|2333|2|4|7111.28|0.03|0.03|R|F|1994-11-14|1994-09-24|1994-11-29|COLLECT COD|RAIL|y alongside of the fluff| +3465|46067|8572|3|9|9117.54|0.05|0.03|R|F|1994-08-16|1994-11-01|1994-08-24|NONE|TRUCK|ial deposits detect blithely. regular| +3465|44283|4284|4|26|31909.28|0.10|0.01|A|F|1994-12-07|1994-10-25|1994-12-20|DELIVER IN PERSON|TRUCK|eas across the regularly express accounts u| +3465|62128|4635|5|38|41424.56|0.00|0.01|R|F|1994-08-22|1994-10-24|1994-09-18|DELIVER IN PERSON|AIR|sly regular accounts. express,| +3465|176463|8981|6|8|12315.68|0.02|0.00|R|F|1994-11-09|1994-09-20|1994-11-21|COLLECT COD|SHIP|ccording to the blithely ironic theod| +3465|13587|6089|7|15|22508.70|0.08|0.02|A|F|1994-11-17|1994-09-15|1994-12-13|NONE|REG AIR|kages sleep blith| +3466|143449|992|1|17|25371.48|0.01|0.06|N|O|1996-12-23|1997-01-24|1997-01-22|TAKE BACK RETURN|FOB|leep quickly foxes. quickly express accou| +3466|142138|4653|2|35|41304.55|0.02|0.08|N|O|1997-01-11|1997-01-23|1997-01-20|DELIVER IN PERSON|FOB|out the special packages. furi| +3466|110846|8380|3|29|53848.36|0.08|0.05|N|O|1997-03-23|1997-01-24|1997-04-08|COLLECT COD|SHIP|ven, unusual instruct| +3466|184921|2476|4|6|12035.52|0.05|0.01|N|O|1997-02-08|1997-03-06|1997-02-10|TAKE BACK RETURN|SHIP|g the furiously| +3466|158099|8100|5|16|18513.44|0.10|0.03|N|O|1997-02-16|1997-03-04|1997-02-26|TAKE BACK RETURN|TRUCK|s integrate carefull| +3466|167534|5083|6|46|73670.38|0.06|0.01|N|O|1997-02-09|1997-02-06|1997-03-10|TAKE BACK RETURN|TRUCK|ven notornis. even accounts| +3467|70894|5909|1|27|50352.03|0.04|0.07|N|O|1997-01-26|1997-02-18|1997-02-10|NONE|REG AIR|dolites: quickly pending dependencies | +3467|99893|4912|2|35|66251.15|0.06|0.05|N|O|1997-03-13|1997-01-26|1997-03-22|DELIVER IN PERSON|FOB|ing instru| +3468|138691|3718|1|33|57079.77|0.01|0.07|R|F|1994-11-22|1994-09-18|1994-12-17|COLLECT COD|REG AIR|en requests use slyly. quickly regular i| +3468|170979|3497|2|2|4099.94|0.00|0.07|R|F|1994-10-18|1994-10-06|1994-11-01|DELIVER IN PERSON|AIR|ronic requests. slyly ir| +3469|60101|5114|1|37|39260.70|0.03|0.07|N|O|1996-02-13|1996-01-10|1996-02-21|TAKE BACK RETURN|SHIP|asymptotes are abou| +3470|91378|8906|1|40|54774.80|0.10|0.06|N|O|1995-08-29|1995-07-17|1995-09-15|NONE|MAIL|fily unusual foxes. careful| +3470|181155|8710|2|24|29667.60|0.08|0.01|R|F|1995-05-31|1995-06-25|1995-06-10|COLLECT COD|REG AIR| haggle slyly quic| +3470|63625|8638|3|30|47658.60|0.08|0.07|N|O|1995-08-14|1995-07-14|1995-09-05|COLLECT COD|SHIP|usual, final dependencies. slyly eve| +3470|130738|739|4|44|77824.12|0.04|0.08|N|O|1995-08-14|1995-08-13|1995-08-24|TAKE BACK RETURN|AIR|even requests-- ironic accounts abou| +3470|110343|5366|5|38|51426.92|0.09|0.03|R|F|1995-06-04|1995-07-24|1995-06-16|COLLECT COD|FOB|al dependencies-- sly deposits wake. fluff| +3471|68453|960|1|48|68229.60|0.05|0.03|N|O|1996-04-26|1996-03-18|1996-05-03|NONE|SHIP|arefully final asymptotes. regular depo| +3471|74690|2212|2|5|8323.45|0.03|0.03|N|O|1996-04-05|1996-03-24|1996-04-17|COLLECT COD|SHIP| blithely regular platelets. final| +3496|14655|9658|1|44|69064.60|0.10|0.07|N|O|1996-02-20|1996-04-23|1996-03-20|COLLECT COD|AIR|ously daring requests wake fu| +3496|98560|6088|2|27|42081.12|0.06|0.05|N|O|1996-04-28|1996-03-21|1996-05-17|TAKE BACK RETURN|TRUCK|s sleep fluffily dependencies. special p| +3496|89094|4111|3|6|6498.54|0.05|0.00|N|O|1996-02-14|1996-03-26|1996-02-20|NONE|FOB|ely. ironic instructions are ironic, i| +3496|186767|9286|4|34|63027.84|0.03|0.08|N|O|1996-04-08|1996-02-26|1996-04-23|TAKE BACK RETURN|AIR| ironic, express req| +3496|186687|1724|5|19|33699.92|0.05|0.04|N|O|1996-03-16|1996-04-16|1996-04-11|COLLECT COD|RAIL|olphins affix slyly fluffily | +3496|44700|4701|6|15|24670.50|0.04|0.07|N|O|1996-03-21|1996-03-01|1996-03-24|COLLECT COD|MAIL|the slyly final deposits| +3496|60167|5180|7|30|33814.80|0.08|0.05|N|O|1996-03-14|1996-03-05|1996-03-21|COLLECT COD|TRUCK|ithely unusua| +3497|15570|8072|1|48|71307.36|0.02|0.00|R|F|1993-01-09|1993-02-26|1993-02-06|NONE|REG AIR|ily thin deposits d| +3497|77449|9957|2|16|22823.04|0.06|0.00|A|F|1992-12-20|1993-02-16|1992-12-31|NONE|REG AIR|y unusual packages cajole| +3497|79250|4265|3|14|17209.50|0.01|0.01|R|F|1993-03-25|1993-03-05|1993-04-12|COLLECT COD|RAIL|wake blithely furiously fi| +3497|147570|5113|4|13|21028.41|0.07|0.07|A|F|1993-01-10|1993-01-17|1993-01-27|COLLECT COD|MAIL|onic, even deposits. fluffily re| +3497|7228|7229|5|37|42003.14|0.05|0.07|A|F|1993-02-04|1993-02-24|1993-02-17|COLLECT COD|TRUCK|t deposits w| +3497|74227|6735|6|50|60061.00|0.00|0.02|R|F|1993-02-20|1993-02-27|1993-02-22|TAKE BACK RETURN|AIR|ounts. furiously ironic| +3497|119518|2030|7|14|21525.14|0.08|0.02|A|F|1993-04-11|1993-01-20|1993-04-30|NONE|REG AIR|sts boost evenly even notornis. final, f| +3498|128651|6188|1|31|52069.15|0.10|0.07|R|F|1994-11-13|1994-10-08|1994-11-16|NONE|MAIL|tornis accor| +3498|27424|4931|2|13|17568.46|0.10|0.06|A|F|1994-08-25|1994-09-17|1994-09-21|COLLECT COD|FOB|dolphins across the ideas cajole| +3498|102105|4616|3|11|12178.10|0.06|0.01|A|F|1994-10-14|1994-11-02|1994-10-29|COLLECT COD|AIR|y special courts. furiou| +3499|50815|5826|1|6|10594.86|0.06|0.03|N|O|1998-01-08|1998-01-07|1998-01-23|COLLECT COD|SHIP|sly ironic platelets. furiously eve| +3499|42826|2827|2|2|3537.64|0.00|0.03|N|O|1998-03-13|1998-03-03|1998-04-10|NONE|AIR|s. blithely pending deposits solve. fluffil| +3499|161191|1192|3|17|21287.23|0.03|0.01|N|O|1998-01-03|1998-02-26|1998-01-30|NONE|TRUCK|t blithely along the| +3500|114993|16|1|50|100399.50|0.02|0.01|A|F|1993-08-29|1993-08-07|1993-09-27|NONE|RAIL|out the care| +3500|78277|8278|2|44|55231.88|0.03|0.05|R|F|1993-08-22|1993-07-19|1993-09-07|NONE|AIR|gle along the s| +3500|785|8286|3|37|62373.86|0.05|0.08|A|F|1993-08-23|1993-07-25|1993-08-28|TAKE BACK RETURN|SHIP|ld account| +3500|180967|8522|4|16|32767.36|0.02|0.08|A|F|1993-07-08|1993-07-13|1993-07-13|COLLECT COD|REG AIR|each doggedly according to the f| +3500|96501|1520|5|22|32945.00|0.04|0.05|R|F|1993-07-14|1993-08-09|1993-07-25|TAKE BACK RETURN|MAIL|regular pinto | +3500|86782|1799|6|42|74288.76|0.01|0.00|A|F|1993-08-29|1993-07-15|1993-09-19|COLLECT COD|TRUCK|oost slyly express deposit| +3501|22748|5251|1|7|11695.18|0.08|0.07|N|O|1997-11-11|1997-11-13|1997-12-06|COLLECT COD|REG AIR|finally re| +3502|45128|5129|1|43|46144.16|0.02|0.02|N|O|1998-08-01|1998-07-31|1998-08-03|NONE|REG AIR| bold deposits. slyly pendi| +3502|64631|7138|2|7|11169.41|0.00|0.07|N|O|1998-09-11|1998-09-01|1998-09-21|TAKE BACK RETURN|AIR|nstructions. even excuses cajole fluffil| +3503|193512|6032|1|22|35321.22|0.04|0.01|R|F|1995-05-16|1995-05-16|1995-06-14|COLLECT COD|SHIP|y about the quickly f| +3503|145163|5164|2|40|48326.40|0.02|0.06|N|O|1995-07-01|1995-07-12|1995-07-18|NONE|RAIL|ongside of the blithely regul| +3503|140050|5079|3|7|7630.35|0.03|0.01|N|O|1995-08-01|1995-06-29|1995-08-28|TAKE BACK RETURN|REG AIR| deposits. care| +3503|8713|6214|4|12|19460.52|0.08|0.01|N|O|1995-07-09|1995-07-03|1995-07-16|COLLECT COD|SHIP|, unusual requests after the theod| +3528|41677|6686|1|32|51797.44|0.10|0.02|R|F|1992-08-25|1992-11-18|1992-09-10|COLLECT COD|AIR|ckly regul| +3529|55661|672|1|45|72749.70|0.03|0.00|N|O|1998-06-10|1998-06-07|1998-06-14|DELIVER IN PERSON|MAIL|kages sublate. regular deposits| +3529|90417|2927|2|13|18296.33|0.09|0.05|N|O|1998-03-31|1998-05-10|1998-04-07|NONE|MAIL|ily regular pinto b| +3529|24674|2181|3|40|63946.80|0.06|0.04|N|O|1998-04-27|1998-05-16|1998-05-07|TAKE BACK RETURN|TRUCK|riously bold deposits haggle. fin| +3529|83912|1437|4|3|5687.73|0.00|0.06|N|O|1998-04-06|1998-04-22|1998-04-26|DELIVER IN PERSON|TRUCK|he regular, special courts nag fluffily fox| +3529|100906|5927|5|43|81996.70|0.09|0.07|N|O|1998-05-09|1998-04-30|1998-05-24|NONE|REG AIR|cuses. regular foxes cajole| +3530|17363|9865|1|3|3841.08|0.03|0.02|A|F|1994-09-13|1994-08-11|1994-10-10|TAKE BACK RETURN|MAIL|iously even requests. slyly regular| +3530|18710|8711|2|32|52118.72|0.09|0.08|R|F|1994-09-02|1994-06-29|1994-09-27|NONE|FOB|usual requests affix regular| +3530|49225|1730|3|14|16439.08|0.07|0.04|R|F|1994-09-10|1994-07-18|1994-10-02|NONE|MAIL|lets. regular platelets among the| +3530|113284|818|4|42|54485.76|0.04|0.03|R|F|1994-08-11|1994-08-11|1994-08-26|DELIVER IN PERSON|FOB|ilent packages after the quickly regular pa| +3530|159358|1874|5|48|68032.80|0.07|0.06|A|F|1994-07-15|1994-08-14|1994-08-05|COLLECT COD|MAIL|s can sleep quickly a| +3531|43397|910|1|1|1340.39|0.08|0.07|A|F|1993-10-21|1993-11-20|1993-11-16|COLLECT COD|SHIP|the bold pla| +3531|166620|4169|2|39|65778.18|0.03|0.01|R|F|1993-12-28|1993-11-10|1994-01-20|DELIVER IN PERSON|MAIL| pinto beans. ironic| +3532|97880|2899|1|26|48824.88|0.00|0.01|N|O|1997-04-01|1997-02-21|1997-05-01|DELIVER IN PERSON|AIR|ay snooze against the unusual inst| +3532|65406|5407|2|5|6857.00|0.04|0.07|N|O|1996-12-28|1997-02-02|1997-01-09|COLLECT COD|FOB|lar instructions. always even deposit| +3532|64452|4453|3|50|70822.50|0.07|0.06|N|O|1997-01-12|1997-02-20|1997-01-31|TAKE BACK RETURN|RAIL|nusual deposits. final, reg| +3533|36202|1209|1|13|14796.60|0.07|0.01|R|F|1994-09-11|1994-07-10|1994-10-01|NONE|AIR|. enticingly even grouches detect furiously| +3533|40829|5838|2|15|26547.30|0.00|0.08|A|F|1994-09-21|1994-08-15|1994-10-01|DELIVER IN PERSON|RAIL|y regular platelets. furiously fi| +3534|164356|6873|1|46|65336.10|0.01|0.05|N|O|1997-12-01|1997-12-01|1997-12-25|TAKE BACK RETURN|MAIL|ccounts are carefully. | +3534|118360|5894|2|12|16540.32|0.10|0.07|N|O|1997-12-20|1997-11-04|1998-01-16|COLLECT COD|FOB|oxes cajole carefully pending instructi| +3534|60247|248|3|2|2414.48|0.01|0.01|N|O|1997-12-14|1997-11-27|1997-12-16|NONE|REG AIR|uffily express foxes use across the bli| +3534|170521|8073|4|27|42971.04|0.09|0.05|N|O|1997-11-19|1997-11-26|1997-12-08|NONE|MAIL|s cajole among the requests. ironic pinto| +3535|81079|1080|1|36|38162.52|0.04|0.04|R|F|1992-09-15|1992-09-20|1992-10-14|TAKE BACK RETURN|REG AIR|ole among the silent, even deposits. | +3535|89903|4920|2|19|35965.10|0.02|0.03|A|F|1992-10-02|1992-10-12|1992-10-12|TAKE BACK RETURN|RAIL|ironic foxes. carefully sil| +3535|184562|7081|3|17|27991.52|0.10|0.07|R|F|1992-11-06|1992-09-30|1992-12-01|COLLECT COD|TRUCK|gouts. carefully express depe| +3535|133169|709|4|13|15628.08|0.02|0.03|A|F|1992-09-06|1992-09-17|1992-09-24|NONE|TRUCK|counts print according to| +3535|168699|6248|5|29|51263.01|0.04|0.05|A|F|1992-08-18|1992-10-09|1992-09-10|NONE|FOB|rouches are quickly quick instructions. spe| +3560|81012|1013|1|16|15888.16|0.03|0.04|R|F|1992-10-02|1992-11-06|1992-10-10|DELIVER IN PERSON|AIR|nto beans use quickly. slyly| +3560|166751|4300|2|16|29084.00|0.02|0.05|A|F|1992-12-28|1992-11-15|1993-01-13|NONE|AIR|thily pending requests are! furiously bold | +3560|180739|3258|3|11|20017.03|0.06|0.08|A|F|1992-09-22|1992-11-24|1992-09-27|DELIVER IN PERSON|FOB|iously. carefully express accoun| +3561|174002|4003|1|46|49496.00|0.10|0.00|N|O|1998-03-23|1998-03-10|1998-04-03|NONE|AIR|ent depend| +3561|41644|6653|2|9|14270.76|0.03|0.01|N|O|1998-03-31|1998-02-16|1998-04-30|TAKE BACK RETURN|SHIP|y pending grouches are. e| +3561|104552|7063|3|28|43583.40|0.07|0.00|N|O|1998-03-17|1998-03-16|1998-03-30|DELIVER IN PERSON|TRUCK|ously even pack| +3561|2302|2303|4|47|56602.10|0.07|0.08|N|O|1997-12-24|1998-03-19|1997-12-25|NONE|REG AIR|ecial pinto | +3562|178821|8822|1|27|51295.14|0.04|0.06|A|F|1995-03-05|1995-03-08|1995-03-31|NONE|AIR|gular accounts wake furiously alongsi| +3562|37245|4755|2|48|56747.52|0.06|0.02|A|F|1995-03-04|1995-04-07|1995-04-03|TAKE BACK RETURN|AIR|the fluffily regular requests wake as| +3562|171387|1388|3|22|32084.36|0.04|0.06|R|F|1995-01-25|1995-04-09|1995-02-23|COLLECT COD|AIR| packages sl| +3562|93802|1330|4|39|70036.20|0.01|0.05|A|F|1995-05-24|1995-04-14|1995-06-11|NONE|REG AIR|ic foxes nag. foxes are fluff| +3563|151107|3623|1|47|54430.70|0.08|0.03|N|O|1997-09-23|1997-11-06|1997-09-28|COLLECT COD|TRUCK| instructions cajole s| +3563|46776|4289|2|6|10336.62|0.01|0.05|N|O|1997-12-12|1997-10-28|1998-01-03|DELIVER IN PERSON|REG AIR|al courts wake idly about | +3563|157938|454|3|41|81833.13|0.06|0.02|N|O|1997-10-07|1997-12-13|1997-11-05|NONE|RAIL|r accounts: special, final package| +3563|55055|5056|4|17|17170.85|0.02|0.02|N|O|1997-10-17|1997-10-16|1997-10-18|DELIVER IN PERSON|TRUCK|ly regular| +3564|156314|1345|1|16|21924.96|0.00|0.02|N|O|1995-07-25|1995-06-01|1995-08-20|NONE|REG AIR|nts wake before the furiously regular accou| +3564|161474|1475|2|49|75238.03|0.10|0.07|N|O|1995-07-23|1995-05-27|1995-08-16|NONE|SHIP|ent excuses. even theodolites haggle. bl| +3564|77396|7397|3|49|67296.11|0.02|0.05|N|O|1995-06-27|1995-05-01|1995-07-09|COLLECT COD|FOB|unts. quickly ironic acco| +3564|187121|7122|4|30|36243.60|0.02|0.03|N|O|1995-06-24|1995-06-21|1995-07-20|COLLECT COD|FOB|e furiously bold packages. carefully iron| +3565|75572|5573|1|2|3095.14|0.10|0.04|R|F|1992-07-28|1992-08-09|1992-08-12|DELIVER IN PERSON|AIR|nos. slyly unusual dugouts detect carefully| +3565|127210|9723|2|26|32167.46|0.03|0.03|R|F|1992-07-06|1992-07-27|1992-07-15|NONE|AIR|t the slyly| +3565|2213|9714|3|31|34571.51|0.02|0.04|R|F|1992-06-09|1992-08-03|1992-07-07|COLLECT COD|RAIL|theodolites| +3565|177256|7257|4|6|7999.50|0.05|0.08|A|F|1992-09-15|1992-07-13|1992-10-07|DELIVER IN PERSON|FOB|s. carefully final foxes nag fluffily ac| +3565|141047|3562|5|47|51137.88|0.04|0.04|R|F|1992-06-21|1992-07-13|1992-06-30|TAKE BACK RETURN|TRUCK|ously unusual ideas. unusual, regul| +3565|164268|9301|6|44|58619.44|0.00|0.00|A|F|1992-09-27|1992-08-15|1992-10-27|DELIVER IN PERSON|AIR|efully evenly | +3565|49341|1846|7|11|14193.74|0.06|0.03|A|F|1992-08-04|1992-08-11|1992-08-27|DELIVER IN PERSON|TRUCK|s haggle carefully until the even| +3566|59568|7084|1|7|10692.92|0.08|0.01|A|F|1994-05-15|1994-05-12|1994-05-26|NONE|FOB|ly. ironic packages sublate furiously | +3566|144819|9848|2|27|50322.87|0.09|0.03|R|F|1994-07-13|1994-06-09|1994-07-22|DELIVER IN PERSON|FOB|le. special, regular packages bo| +3566|161032|6065|3|49|53558.47|0.04|0.07|A|F|1994-05-16|1994-06-02|1994-06-09|DELIVER IN PERSON|AIR|packages. fluffily bo| +3566|58720|1226|4|34|57076.48|0.04|0.00|A|F|1994-04-26|1994-05-10|1994-05-19|DELIVER IN PERSON|RAIL|boost blithely accord| +3566|91745|6764|5|11|19104.14|0.06|0.07|R|F|1994-07-10|1994-05-31|1994-08-05|DELIVER IN PERSON|TRUCK|. ironic instruc| +3566|150162|7708|6|32|38789.12|0.01|0.07|A|F|1994-05-09|1994-05-18|1994-05-15|COLLECT COD|SHIP|ly special foxes sleep blithe| +3567|34031|6535|1|25|24125.75|0.08|0.00|N|O|1998-05-25|1998-04-18|1998-06-15|DELIVER IN PERSON|SHIP|refully fu| +3592|18810|3813|1|19|32847.39|0.00|0.00|A|F|1994-10-24|1994-11-08|1994-10-31|COLLECT COD|SHIP|ins haggle slyly even dolphin| +3592|126458|6459|2|1|1484.45|0.09|0.06|A|F|1994-10-10|1994-11-01|1994-10-11|NONE|RAIL|ly pending instructions. slyly express a| +3592|171587|1588|3|47|77953.26|0.06|0.00|A|F|1994-11-17|1994-11-13|1994-12-04|NONE|RAIL| packages boost along the carefully pendi| +3592|60173|174|4|12|13598.04|0.08|0.06|A|F|1994-11-19|1994-11-17|1994-12-16|COLLECT COD|MAIL|lar theodoli| +3592|113796|8819|5|9|16288.11|0.02|0.03|A|F|1994-11-10|1994-11-27|1994-11-11|TAKE BACK RETURN|RAIL|s: slyly special accounts detect slyly | +3593|81916|6933|1|11|20877.01|0.04|0.04|N|O|1996-12-14|1996-10-04|1996-12-20|NONE|AIR|eposits cajole slyly furiously fi| +3593|155718|749|2|31|54985.01|0.05|0.01|N|O|1996-12-11|1996-11-09|1997-01-09|COLLECT COD|AIR|sly pending accounts slee| +3593|143391|3392|3|17|24384.63|0.07|0.02|N|O|1996-10-10|1996-10-01|1996-10-22|COLLECT COD|FOB|as. slyly regular packages wake. pint| +3593|157678|5224|4|6|10414.02|0.07|0.06|N|O|1996-10-10|1996-10-09|1996-10-31|COLLECT COD|AIR|entiments. quickly unusu| +3593|88166|5691|5|22|25391.52|0.00|0.03|N|O|1996-10-30|1996-11-15|1996-11-29|COLLECT COD|AIR|r, bold requests. blithely bold pinto be| +3593|4895|7396|6|35|62996.15|0.01|0.05|N|O|1996-09-06|1996-10-05|1996-09-15|COLLECT COD|SHIP|ct slyly slyly ironic pa| +3594|55381|392|1|9|12027.42|0.02|0.07|A|F|1992-10-07|1992-07-30|1992-10-19|COLLECT COD|RAIL|s cajole fluffily furi| +3594|181534|9089|2|14|22617.42|0.01|0.07|R|F|1992-09-15|1992-08-29|1992-10-03|TAKE BACK RETURN|MAIL|slyly even packages. quickly pending packag| +3594|41527|4032|3|20|29370.40|0.04|0.08|R|F|1992-08-07|1992-08-23|1992-08-16|TAKE BACK RETURN|MAIL|uriously after the furiously regular | +3594|136433|8947|4|7|10286.01|0.04|0.03|A|F|1992-08-21|1992-08-23|1992-09-20|NONE|REG AIR|l asymptotes. slyly ironi| +3595|139579|7119|1|4|6474.28|0.09|0.01|A|F|1992-10-03|1992-11-01|1992-10-27|TAKE BACK RETURN|REG AIR|ests maintain quickly pending| +3595|99149|9150|2|23|26407.22|0.02|0.03|A|F|1992-10-07|1992-11-18|1992-10-27|DELIVER IN PERSON|FOB|lyly final accou| +3595|195881|920|3|28|55352.64|0.10|0.02|R|F|1992-09-26|1992-10-25|1992-10-25|COLLECT COD|REG AIR|nstructions wake| +3595|160215|216|4|47|59934.87|0.00|0.03|R|F|1992-10-23|1992-11-01|1992-10-28|NONE|TRUCK|ly bold accounts across the do| +3595|124597|7110|5|50|81079.50|0.10|0.00|A|F|1992-12-08|1992-12-05|1992-12-25|DELIVER IN PERSON|MAIL|refully regular deposits haggle furio| +3595|88531|1040|6|2|3039.06|0.08|0.00|R|F|1992-12-09|1992-11-30|1992-12-15|DELIVER IN PERSON|SHIP|efully ironic requests haggle slyly b| +3595|137055|2082|7|21|22933.05|0.06|0.04|R|F|1992-12-01|1992-11-24|1992-12-26|TAKE BACK RETURN|MAIL|kly regular | +3596|83143|8160|1|31|34910.34|0.02|0.05|N|O|1995-10-31|1995-09-28|1995-11-08|DELIVER IN PERSON|MAIL|y silent accounts are final f| +3596|168817|8818|2|36|67889.16|0.03|0.00|N|O|1995-10-09|1995-10-06|1995-10-27|DELIVER IN PERSON|SHIP|counts against the| +3596|101340|1341|3|46|61701.64|0.06|0.07|N|O|1995-09-13|1995-11-03|1995-10-11|TAKE BACK RETURN|TRUCK|l sublate q| +3596|10881|3383|4|43|77050.84|0.10|0.03|N|O|1995-12-14|1995-10-19|1995-12-19|DELIVER IN PERSON|FOB|d accounts. fluffily un| +3597|12611|2612|1|8|12188.88|0.09|0.01|R|F|1993-06-19|1993-06-01|1993-07-14|COLLECT COD|SHIP|l epitaphs boost slyly blithely special| +3597|151687|9233|2|14|24341.52|0.09|0.02|A|F|1993-05-24|1993-04-21|1993-06-11|NONE|TRUCK|into beans. carefully final instr| +3597|194516|4517|3|43|69251.93|0.10|0.07|A|F|1993-07-04|1993-05-09|1993-07-21|NONE|REG AIR|gular deposits doz| +3598|198859|8860|1|20|39157.00|0.00|0.07|A|F|1994-01-29|1993-12-16|1994-02-04|DELIVER IN PERSON|RAIL|ily even ideas boost f| +3598|6991|4492|2|40|75919.60|0.01|0.01|R|F|1993-10-22|1994-01-14|1993-10-30|NONE|SHIP|nts. dolphins cajole final excuses. q| +3598|94787|2315|3|15|26726.70|0.06|0.04|R|F|1994-01-18|1993-12-24|1994-02-17|DELIVER IN PERSON|TRUCK| the bold requests. slyly express tithe| +3598|79147|9148|4|4|4504.56|0.05|0.06|R|F|1994-01-29|1993-11-27|1994-02-08|DELIVER IN PERSON|AIR| regular courts after the packages sleep| +3598|15138|5139|5|11|11584.43|0.01|0.01|A|F|1994-01-31|1993-12-26|1994-02-19|NONE|TRUCK|uests sleep carefull| +3598|12905|409|6|41|74533.90|0.09|0.03|A|F|1994-01-09|1994-01-01|1994-01-23|DELIVER IN PERSON|MAIL|ackages wake fluffily alongside of the reg| +3599|60156|157|1|34|37949.10|0.10|0.07|N|O|1998-02-19|1998-02-23|1998-03-11|COLLECT COD|TRUCK|s. instructions detect pend| +3624|29433|1936|1|44|59946.92|0.01|0.06|R|F|1992-09-04|1992-08-09|1992-09-07|COLLECT COD|SHIP|en deposits wake careful| +3624|73760|6268|2|4|6935.04|0.05|0.04|A|F|1992-05-30|1992-07-23|1992-06-22|DELIVER IN PERSON|AIR|ven, silent| +3624|83355|3356|3|17|22751.95|0.02|0.00|A|F|1992-06-22|1992-07-30|1992-06-29|NONE|REG AIR|inal theodolites x| +3624|134120|6634|4|10|11541.20|0.01|0.06|A|F|1992-09-09|1992-07-02|1992-09-12|TAKE BACK RETURN|MAIL|express deposits about the packages detec| +3624|140728|8271|5|32|56599.04|0.10|0.00|A|F|1992-06-19|1992-06-26|1992-07-14|DELIVER IN PERSON|REG AIR|ding theodolites: special, i| +3624|15407|7909|6|23|30415.20|0.08|0.02|A|F|1992-08-07|1992-08-09|1992-08-17|NONE|RAIL| the quickl| +3624|131874|6901|7|29|55270.23|0.02|0.02|R|F|1992-06-23|1992-07-22|1992-06-28|TAKE BACK RETURN|TRUCK|sits according to the furiou| +3625|2561|62|1|48|70250.88|0.08|0.03|N|O|1995-11-19|1995-10-22|1995-12-07|COLLECT COD|SHIP|ully blithely re| +3625|40007|7520|2|7|6629.00|0.08|0.04|N|O|1995-12-06|1995-10-30|1995-12-30|TAKE BACK RETURN|MAIL|special theodoli| +3625|187528|47|3|4|6462.08|0.04|0.08|N|O|1995-12-12|1995-09-27|1996-01-06|DELIVER IN PERSON|SHIP|inal foxes cajole slyl| +3625|173456|8491|4|4|6117.80|0.05|0.00|N|O|1995-09-17|1995-09-24|1995-10-17|NONE|AIR|to beans sleep unusual frays. pending, | +3625|72195|4703|5|47|54857.93|0.04|0.08|N|O|1995-10-28|1995-09-19|1995-11-25|COLLECT COD|FOB| wake carefully according to the bl| +3626|186537|9056|1|44|71435.32|0.01|0.07|A|F|1993-06-28|1993-07-20|1993-07-07|COLLECT COD|RAIL|structions. furiously pend| +3626|111628|4140|2|20|32792.40|0.07|0.08|R|F|1993-09-20|1993-08-31|1993-09-28|COLLECT COD|MAIL|sts about the furiously pend| +3626|123809|1346|3|22|40321.60|0.03|0.04|A|F|1993-08-28|1993-08-20|1993-09-03|NONE|SHIP|gside of the| +3626|54836|9847|4|18|32234.94|0.09|0.03|R|F|1993-09-09|1993-08-19|1993-09-19|NONE|MAIL|s cajole even deposits. e| +3626|17861|363|5|45|80048.70|0.02|0.05|R|F|1993-09-07|1993-08-14|1993-09-15|COLLECT COD|TRUCK|ndencies cajole caref| +3626|181063|6100|6|13|14872.78|0.10|0.02|A|F|1993-09-25|1993-07-16|1993-10-18|DELIVER IN PERSON|FOB|fully even packages unwind. furiously pe| +3626|123866|8891|7|19|35907.34|0.03|0.02|A|F|1993-07-13|1993-07-20|1993-07-25|COLLECT COD|RAIL|endencies. slyly unusual | +3627|12607|2608|1|27|41029.20|0.07|0.01|R|F|1992-10-08|1992-10-12|1992-10-26|DELIVER IN PERSON|RAIL|uests. blith| +3627|70376|7898|2|38|51162.06|0.08|0.05|R|F|1992-11-08|1992-10-01|1992-12-07|NONE|REG AIR|ans sleep along the| +3627|195820|8340|3|27|51727.14|0.01|0.02|R|F|1992-11-27|1992-10-23|1992-12-14|COLLECT COD|MAIL|ies integrate. bold, unusual packag| +3627|134521|4522|4|12|18666.24|0.09|0.00|A|F|1992-08-22|1992-09-23|1992-08-23|TAKE BACK RETURN|REG AIR|posits cajole up| +3628|33523|1033|1|32|46608.64|0.04|0.01|R|F|1993-04-28|1993-05-14|1993-05-16|TAKE BACK RETURN|SHIP|al packages grow carefully quickly sile| +3628|9902|7403|2|30|54357.00|0.02|0.07|R|F|1993-04-22|1993-04-14|1993-04-25|DELIVER IN PERSON|TRUCK|olites wake slyly. special, ironi| +3629|76670|1685|1|13|21406.71|0.06|0.05|N|O|1996-01-10|1996-03-05|1996-01-25|NONE|TRUCK|s cajole ironic packages. furiously even p| +3629|191094|6133|2|23|27257.07|0.09|0.02|N|O|1996-02-03|1996-02-04|1996-02-24|TAKE BACK RETURN|RAIL|lar tithes. fluffily even ideas engag| +3629|105084|5085|3|15|16336.20|0.04|0.01|N|O|1995-12-23|1996-02-26|1996-01-09|TAKE BACK RETURN|REG AIR|bout the final, bold accounts wak| +3630|650|5651|1|15|23259.75|0.02|0.00|A|F|1993-10-14|1993-09-14|1993-10-22|TAKE BACK RETURN|RAIL|according to the blithely final hockey p| +3630|117343|4877|2|6|8162.04|0.09|0.01|A|F|1993-11-12|1993-10-02|1993-11-22|NONE|RAIL| to the carefully expre| +3630|169421|4454|3|38|56635.96|0.07|0.03|R|F|1993-08-17|1993-11-10|1993-08-19|DELIVER IN PERSON|SHIP|ts haggle furiously slyly s| +3630|57201|7202|4|36|41695.20|0.04|0.01|R|F|1993-09-21|1993-11-06|1993-10-19|NONE|FOB|ly unusual acco| +3630|174436|4437|5|27|40781.61|0.04|0.03|R|F|1993-10-31|1993-09-24|1993-11-18|COLLECT COD|AIR|ording to the final asymptotes. fluff| +3631|176894|6895|1|30|59126.70|0.01|0.07|N|O|1996-08-22|1996-07-02|1996-09-12|NONE|REG AIR|uickly ironic escapades wake regular pack| +3631|56289|8795|2|11|13698.08|0.00|0.05|N|O|1996-05-24|1996-07-02|1996-06-01|COLLECT COD|SHIP|ons alongside of the somas integrate| +3631|37966|7967|3|19|36175.24|0.00|0.04|N|O|1996-09-02|1996-07-10|1996-09-03|TAKE BACK RETURN|SHIP|furiously daring accounts. slyly spe| +3631|86220|1237|4|8|9649.76|0.01|0.04|N|O|1996-08-08|1996-08-03|1996-08-16|COLLECT COD|RAIL|endencies boost fluf| +3656|137405|7406|1|1|1442.40|0.10|0.01|N|O|1997-01-03|1996-12-16|1997-02-02|DELIVER IN PERSON|REG AIR|ggedly. even| +3656|154959|7475|2|33|66460.35|0.09|0.05|N|O|1997-02-17|1996-12-29|1997-03-05|DELIVER IN PERSON|SHIP|the regular courts. blith| +3656|188672|1191|3|33|58102.11|0.05|0.00|N|O|1997-01-30|1997-01-02|1997-02-25|TAKE BACK RETURN|REG AIR|ke silently. carefully ironic platelets h| +3656|3733|3734|4|23|37644.79|0.07|0.01|N|O|1997-02-27|1997-01-13|1997-03-13|TAKE BACK RETURN|TRUCK|ccounts are carefully ironi| +3656|134048|1588|5|44|47609.76|0.03|0.03|N|O|1996-11-28|1997-01-05|1996-12-18|COLLECT COD|TRUCK|ily. regular, expre| +3656|131478|6505|6|25|37736.75|0.02|0.07|N|O|1997-02-05|1997-01-27|1997-02-14|DELIVER IN PERSON|TRUCK|nts. ironic deposits lose blithely. f| +3656|138068|5608|7|4|4424.24|0.03|0.01|N|O|1997-03-12|1996-12-30|1997-04-11|DELIVER IN PERSON|REG AIR| unusual dolphins. re| +3657|104663|9684|1|36|60035.76|0.06|0.03|R|F|1993-05-22|1993-04-04|1993-06-15|DELIVER IN PERSON|FOB|lly alongside of the carefully unusual| +3657|62408|9927|2|23|31519.20|0.00|0.08|R|F|1993-02-11|1993-03-26|1993-03-04|TAKE BACK RETURN|FOB|leep. ideas across| +3657|80708|8233|3|27|45594.90|0.04|0.02|A|F|1993-02-24|1993-04-19|1993-02-25|NONE|RAIL| beans about the pinto bean| +3657|47440|7441|4|13|18036.72|0.09|0.07|R|F|1993-02-27|1993-03-11|1993-03-21|NONE|RAIL|e furiously above the pending, pending pack| +3657|119214|4237|5|23|28363.83|0.09|0.05|R|F|1993-04-01|1993-04-15|1993-04-05|NONE|AIR|jole furiously reques| +3658|140594|5623|1|5|8172.95|0.09|0.04|N|O|1996-01-28|1996-03-06|1996-01-31|NONE|REG AIR|ickly. slyly regular ideas breach furiousl| +3658|157244|9760|2|41|53350.84|0.02|0.01|N|O|1996-02-28|1996-04-15|1996-03-14|NONE|TRUCK|ke bold id| +3659|166762|9279|1|26|47547.76|0.03|0.00|R|F|1993-11-01|1993-12-12|1993-11-14|NONE|MAIL| quickly around the careful| +3659|167395|9912|2|7|10236.73|0.03|0.04|R|F|1994-01-04|1993-11-13|1994-02-01|DELIVER IN PERSON|MAIL|y regular | +3660|36923|1930|1|49|91136.08|0.07|0.02|R|F|1992-04-21|1992-04-03|1992-05-21|TAKE BACK RETURN|TRUCK|ly final instructions. quickly pe| +3661|168252|5801|1|18|23764.50|0.07|0.05|R|F|1993-09-06|1993-09-11|1993-09-07|COLLECT COD|REG AIR|luffily express re| +3661|9998|7499|2|39|74411.61|0.09|0.07|R|F|1993-08-07|1993-09-25|1993-08-08|COLLECT COD|FOB|integrate blithely about the | +3661|31533|4037|3|10|14645.30|0.10|0.07|R|F|1993-08-21|1993-09-04|1993-08-29|TAKE BACK RETURN|REG AIR|ggle quickly | +3662|120273|274|1|33|42677.91|0.07|0.01|N|O|1998-08-13|1998-07-20|1998-08-29|TAKE BACK RETURN|SHIP|dependencies. slyly express patterns s| +3662|12419|7422|2|27|35948.07|0.03|0.08|N|O|1998-07-02|1998-06-29|1998-07-29|DELIVER IN PERSON|MAIL|egular theodolites| +3662|112397|9931|3|18|25369.02|0.10|0.00|N|O|1998-06-03|1998-07-21|1998-06-12|TAKE BACK RETURN|AIR|ly fluffily even accounts. | +3662|40615|3120|4|4|6222.44|0.06|0.07|N|O|1998-07-26|1998-06-26|1998-08-05|TAKE BACK RETURN|TRUCK|ct quickly express, silent | +3662|8988|8989|5|14|26557.72|0.03|0.04|N|O|1998-06-30|1998-07-05|1998-07-19|TAKE BACK RETURN|SHIP| blithely unusual acc| +3663|67157|2170|1|15|16862.25|0.05|0.04|N|O|1997-06-08|1997-07-13|1997-06-24|COLLECT COD|REG AIR|heodolites use| +3663|95657|3185|2|22|36358.30|0.02|0.05|N|O|1997-05-31|1997-08-10|1997-06-13|NONE|FOB|er the regularly express pinto beans. | +3663|102322|2323|3|9|11918.88|0.01|0.05|N|O|1997-07-05|1997-07-27|1997-07-07|NONE|MAIL|ly unusual the| +3663|116471|6472|4|2|2974.94|0.03|0.08|N|O|1997-07-12|1997-07-26|1997-07-23|COLLECT COD|AIR| about the evenly final requests | +3688|185724|8243|1|19|34384.68|0.09|0.01|N|O|1998-04-07|1998-04-28|1998-04-26|DELIVER IN PERSON|FOB|ely unusual asymptotes sleep carefull| +3688|57212|9718|2|20|23384.20|0.07|0.08|N|O|1998-02-21|1998-05-04|1998-03-05|NONE|AIR|heodolites p| +3688|154045|6561|3|26|28575.04|0.03|0.02|N|O|1998-05-23|1998-03-13|1998-06-19|COLLECT COD|TRUCK| ironic ideas; accounts cajole along| +3688|28572|1075|4|11|16506.27|0.04|0.01|N|O|1998-05-15|1998-03-31|1998-05-19|COLLECT COD|AIR|lent accounts haggle | +3688|9498|6999|5|25|35187.25|0.02|0.05|N|O|1998-03-21|1998-03-11|1998-03-26|DELIVER IN PERSON|RAIL|le furiously deposi| +3688|30502|503|6|49|70192.50|0.08|0.08|N|O|1998-05-05|1998-04-20|1998-06-01|DELIVER IN PERSON|RAIL|the packages. silent deposits doubt fluffi| +3689|176125|8643|1|47|56452.64|0.08|0.01|A|F|1995-05-12|1995-05-04|1995-05-15|NONE|MAIL|nstructions haggle carefully. furiously re| +3689|122526|7551|2|37|57295.24|0.10|0.08|R|F|1995-05-11|1995-05-30|1995-06-10|TAKE BACK RETURN|REG AIR| blithely regular requests. care| +3689|94042|6552|3|32|33153.28|0.02|0.00|A|F|1995-05-06|1995-05-28|1995-05-20|COLLECT COD|MAIL|nts sleep ruthlessly according to the fi| +3689|149145|1660|4|18|21494.52|0.09|0.02|N|F|1995-06-06|1995-05-07|1995-06-18|TAKE BACK RETURN|REG AIR|ress requests must have to integ| +3689|79396|9397|5|2|2750.78|0.07|0.06|R|F|1995-04-15|1995-05-21|1995-04-19|COLLECT COD|MAIL|slyly ironic asymptotes are carefully ironi| +3689|3282|5783|6|43|50967.04|0.08|0.06|N|O|1995-06-24|1995-04-22|1995-07-04|DELIVER IN PERSON|AIR|ely silent foxes. packages dazzle | +3690|178593|3628|1|26|43461.34|0.00|0.06|N|O|1998-09-16|1998-10-09|1998-10-03|TAKE BACK RETURN|SHIP|ly final requests acro| +3690|6012|3513|2|12|11016.12|0.03|0.07|N|O|1998-09-14|1998-09-06|1998-10-09|TAKE BACK RETURN|FOB|lar requests must | +3690|35803|810|3|25|43470.00|0.00|0.03|N|O|1998-10-28|1998-10-10|1998-11-19|COLLECT COD|MAIL|r accounts. furiously special packages caj| +3691|56585|6586|1|12|18498.96|0.03|0.00|A|F|1992-05-11|1992-06-06|1992-06-09|DELIVER IN PERSON|FOB|r unusual foxes sl| +3692|112534|7557|1|50|77326.50|0.06|0.05|R|F|1992-11-22|1992-11-09|1992-11-30|DELIVER IN PERSON|REG AIR|requests. ironic ideas| +3692|151424|6455|2|12|17705.04|0.08|0.03|R|F|1992-11-05|1992-11-09|1992-11-12|TAKE BACK RETURN|MAIL|ages wake fluffi| +3692|177393|7394|3|26|38230.14|0.00|0.01|R|F|1992-11-05|1992-11-14|1992-11-19|DELIVER IN PERSON|MAIL|refully express packag| +3692|34513|7017|4|38|55005.38|0.08|0.03|A|F|1993-01-21|1992-11-26|1993-02-11|NONE|RAIL|pinto beans?| +3693|67479|4998|1|31|44840.57|0.08|0.06|A|F|1993-02-25|1993-02-02|1993-03-17|TAKE BACK RETURN|SHIP|fily ruthless packages haggle slyly regul| +3693|105455|476|2|33|48194.85|0.08|0.07|R|F|1993-02-04|1993-02-09|1993-02-11|DELIVER IN PERSON|SHIP|ffily final accounts boo| +3694|94656|2184|1|36|59423.40|0.01|0.06|A|F|1994-04-08|1994-03-31|1994-04-14|COLLECT COD|TRUCK|sual ideas| +3694|78859|1367|2|38|69838.30|0.03|0.03|R|F|1994-03-07|1994-03-20|1994-03-28|DELIVER IN PERSON|RAIL|tions detect furiously.| +3695|152368|2369|1|42|59655.12|0.07|0.02|N|O|1998-06-16|1998-06-01|1998-07-16|DELIVER IN PERSON|FOB|ructions. special, regular accounts| +3720|156260|6261|1|23|30273.98|0.01|0.03|N|O|1997-06-18|1997-08-10|1997-07-10|NONE|REG AIR|regular asymptotes.| +3720|47659|5172|2|8|12853.20|0.02|0.02|N|O|1997-07-08|1997-08-02|1997-07-24|NONE|AIR|onic packages above the| +3721|99138|6666|1|43|48896.59|0.01|0.08|N|O|1996-04-28|1996-03-22|1996-05-10|TAKE BACK RETURN|MAIL| about the furio| +3721|4003|9004|2|18|16326.00|0.00|0.07|N|O|1996-01-22|1996-02-27|1996-02-18|COLLECT COD|FOB|ironic accounts. fluffily even | +3721|74571|9586|3|17|26274.69|0.00|0.06|N|O|1996-05-03|1996-03-16|1996-05-20|TAKE BACK RETURN|FOB|uiet instructions cajole quickly after the | +3722|185370|7889|1|26|37839.62|0.07|0.03|N|O|1998-05-03|1998-04-06|1998-05-22|NONE|SHIP| run furiously final pearls. regular | +3722|110849|850|2|19|35336.96|0.01|0.01|N|O|1998-03-21|1998-03-22|1998-04-08|DELIVER IN PERSON|FOB|aids are furiously around the blithe| +3722|36758|9262|3|1|1694.75|0.09|0.03|N|O|1998-04-11|1998-03-15|1998-05-02|DELIVER IN PERSON|RAIL|cajole carefully carefully unus| +3722|185485|3040|4|23|36121.04|0.02|0.07|N|O|1998-03-24|1998-02-26|1998-04-20|TAKE BACK RETURN|FOB|de the pending foxes. idly final instructi| +3723|154168|4169|1|27|32998.32|0.05|0.04|N|O|1998-02-15|1998-02-05|1998-02-25|NONE|SHIP| quiet instructions boost accordi| +3723|86302|1319|2|35|45090.50|0.08|0.05|N|O|1998-01-06|1998-02-17|1998-01-27|NONE|RAIL| quickly regular dolphins. dependencies | +3723|66755|9262|3|10|17217.50|0.05|0.01|N|O|1998-03-12|1998-02-05|1998-03-20|TAKE BACK RETURN|AIR|ending, expre| +3723|146387|1416|4|46|65935.48|0.00|0.08|N|O|1998-01-28|1998-02-14|1998-02-26|TAKE BACK RETURN|MAIL|nto beans believe! express forges use fur| +3723|123349|8374|5|37|50776.58|0.00|0.07|N|O|1998-02-14|1998-03-04|1998-03-06|COLLECT COD|REG AIR|y special foxes use blithely accordi| +3723|123380|5893|6|20|28067.60|0.01|0.03|N|O|1998-03-02|1998-03-23|1998-03-31|NONE|AIR|uickly carefully bold accounts. a| +3723|41090|6099|7|5|5155.45|0.00|0.07|N|O|1998-04-03|1998-03-24|1998-04-12|NONE|RAIL|y regular dependencies sleep quickly. regul| +3724|186853|6854|1|42|81473.70|0.09|0.02|A|F|1993-07-26|1993-06-29|1993-07-27|NONE|AIR|y blithely fin| +3725|24990|4991|1|39|74684.61|0.09|0.00|N|O|1998-01-11|1997-12-09|1998-02-10|COLLECT COD|MAIL|ely. final acco| +3725|199241|4280|2|41|54949.84|0.00|0.07|N|O|1997-10-09|1997-11-30|1997-10-21|NONE|RAIL|final instructions wake| +3725|31565|6572|3|35|52379.60|0.10|0.02|N|O|1998-01-10|1997-11-03|1998-01-23|NONE|MAIL|ecial warhorses after the fu| +3726|101412|8943|1|18|25441.38|0.04|0.01|R|F|1993-09-08|1993-10-18|1993-09-19|DELIVER IN PERSON|SHIP| carefully final excuses nag carefully ca| +3726|30480|5487|2|37|52187.76|0.10|0.06|A|F|1993-09-01|1993-10-27|1993-09-24|NONE|FOB|posits boost slyly special | +3726|60878|3385|3|48|88265.76|0.06|0.05|A|F|1993-11-04|1993-10-17|1993-11-17|DELIVER IN PERSON|SHIP| accounts detect blithely after| +3726|176127|1162|4|20|24062.40|0.02|0.00|A|F|1993-08-29|1993-10-31|1993-09-09|NONE|AIR|ng the slyly final deposits hagg| +3726|150033|7579|5|31|33573.93|0.04|0.02|R|F|1993-08-28|1993-10-29|1993-09-09|TAKE BACK RETURN|SHIP|leep; accounts use after the dari| +3727|51150|8666|1|15|16517.25|0.00|0.00|R|F|1994-11-13|1994-12-01|1994-11-21|TAKE BACK RETURN|REG AIR| wake stealthily across the| +3727|67014|2027|2|37|36297.37|0.02|0.08|A|F|1994-12-22|1994-12-15|1995-01-06|NONE|AIR|y regular pi| +3727|99121|1631|3|17|19042.04|0.02|0.00|R|F|1995-01-24|1994-12-08|1995-02-10|DELIVER IN PERSON|MAIL|quests. carefully regular p| +3727|121601|6626|4|20|32452.00|0.04|0.06|R|F|1994-10-21|1994-12-17|1994-11-01|TAKE BACK RETURN|AIR|ickly regul| +3752|135915|942|1|50|97545.50|0.10|0.05|R|F|1993-05-02|1993-03-24|1993-05-06|NONE|SHIP| even ideas cajole furiously sp| +3753|46645|4158|1|49|77990.36|0.02|0.01|R|F|1994-05-12|1994-06-03|1994-05-20|TAKE BACK RETURN|SHIP|ly ironic dependencie| +3753|146444|1473|2|27|40241.88|0.04|0.05|A|F|1994-04-11|1994-06-06|1994-04-18|TAKE BACK RETURN|TRUCK|ounts. platelets s| +3753|74875|4876|3|36|66595.32|0.09|0.06|A|F|1994-03-27|1994-04-26|1994-04-03|NONE|SHIP|ys. regular, ironic foxes | +3753|8740|1241|4|36|59354.64|0.07|0.03|R|F|1994-06-18|1994-05-30|1994-06-29|TAKE BACK RETURN|FOB|long the quiet,| +3754|183088|3089|1|12|14052.96|0.04|0.01|N|O|1997-03-05|1997-02-09|1997-04-04|DELIVER IN PERSON|SHIP|hind the ironic pinto beans wake alongs| +3755|99767|7295|1|26|45935.76|0.01|0.00|N|O|1995-11-25|1995-10-12|1995-11-30|NONE|FOB|ns. pending deposits abo| +3755|169383|9384|2|13|18880.94|0.07|0.07|N|O|1995-10-05|1995-10-09|1995-10-11|TAKE BACK RETURN|TRUCK|efully special ideas run. ironic | +3755|5506|5507|3|12|16938.00|0.09|0.06|N|O|1995-12-25|1995-12-05|1996-01-18|NONE|FOB|nts. regular pinto beans haggle care| +3755|128048|561|4|48|51649.92|0.03|0.00|N|O|1995-09-15|1995-10-19|1995-09-18|TAKE BACK RETURN|RAIL|ges. sometimes ironic pinto beans along th| +3755|90870|3380|5|38|70713.06|0.04|0.05|N|O|1995-12-24|1995-10-16|1996-01-10|DELIVER IN PERSON|TRUCK|ckages. ca| +3756|100011|12|1|5|5055.05|0.01|0.03|R|F|1993-12-17|1994-02-07|1993-12-18|NONE|REG AIR|bove the platelets sleep above the | +3756|70410|5425|2|22|30369.02|0.04|0.02|R|F|1993-12-17|1994-02-27|1994-01-07|NONE|TRUCK|y according | +3756|164338|9371|3|6|8413.98|0.10|0.00|R|F|1994-03-15|1994-02-19|1994-04-11|COLLECT COD|MAIL| quick foxes. bl| +3756|23604|1111|4|41|62631.60|0.05|0.05|R|F|1994-02-22|1994-01-25|1994-02-27|COLLECT COD|AIR|uests try to sl| +3756|110378|5401|5|7|9718.59|0.02|0.03|R|F|1994-03-16|1994-03-01|1994-04-10|COLLECT COD|REG AIR|eodolites. fluffily regu| +3757|135361|388|1|7|9774.52|0.09|0.03|A|F|1993-03-08|1993-03-07|1993-03-13|DELIVER IN PERSON|TRUCK| haggle carefully | +3758|162763|2764|1|23|41992.48|0.02|0.04|A|F|1994-09-26|1994-11-13|1994-09-28|DELIVER IN PERSON|RAIL|efully regul| +3758|157603|7604|2|50|83030.00|0.09|0.03|R|F|1995-01-15|1994-11-27|1995-02-05|DELIVER IN PERSON|AIR|ic requests. fluffily brave dependenc| +3758|33100|610|3|2|2066.20|0.00|0.01|R|F|1994-12-20|1994-12-05|1994-12-26|DELIVER IN PERSON|AIR|olites sleep carefully along | +3758|105345|5346|4|25|33758.50|0.00|0.04|A|F|1994-11-13|1994-12-16|1994-11-17|TAKE BACK RETURN|SHIP|r deposits along the closely final pinto be| +3759|114363|4364|1|12|16528.32|0.07|0.04|A|F|1994-08-02|1994-08-31|1994-08-28|DELIVER IN PERSON|SHIP|arefully unusual pi| +3759|83008|3009|2|37|36667.00|0.01|0.05|R|F|1994-09-20|1994-08-10|1994-09-21|TAKE BACK RETURN|MAIL| deposits are blithely | +3759|100729|730|3|23|39783.56|0.09|0.07|A|F|1994-07-26|1994-08-08|1994-08-18|DELIVER IN PERSON|SHIP|eposits cajole carefully blithely spec| +3759|145106|135|4|26|29928.60|0.10|0.00|R|F|1994-07-27|1994-09-30|1994-08-01|DELIVER IN PERSON|SHIP|courts around the blithely fina| +3759|184024|4025|5|25|27700.50|0.09|0.02|R|F|1994-10-24|1994-09-15|1994-11-10|TAKE BACK RETURN|TRUCK|lithely pending accounts accord| +3759|89125|9126|6|43|47907.16|0.06|0.06|R|F|1994-10-15|1994-09-11|1994-10-28|DELIVER IN PERSON|FOB|eodolites: re| +3784|35310|317|1|48|59774.88|0.09|0.03|A|F|1993-08-06|1993-07-08|1993-08-18|TAKE BACK RETURN|AIR|tealthy foxe| +3784|45197|206|2|43|49114.17|0.00|0.07|R|F|1993-08-15|1993-06-14|1993-09-03|NONE|MAIL|oss the regular requests solve quickly | +3784|13647|3648|3|12|18727.68|0.07|0.04|R|F|1993-07-11|1993-07-04|1993-08-02|TAKE BACK RETURN|FOB|ly ironic requests doze fluffily. fi| +3785|26131|1136|1|35|36999.55|0.01|0.08|R|F|1993-11-28|1994-02-03|1993-12-05|COLLECT COD|FOB|g requests. bold platelets haggle| +3785|173570|1122|2|45|73960.65|0.00|0.08|A|F|1994-01-11|1993-12-29|1994-01-19|DELIVER IN PERSON|MAIL|ing accounts along the fo| +3785|182386|2387|3|16|23494.08|0.02|0.07|A|F|1994-01-12|1994-01-18|1994-01-22|TAKE BACK RETURN|AIR|iously ironic p| +3785|154998|7514|4|36|73907.64|0.00|0.08|R|F|1993-12-31|1994-01-27|1994-01-23|NONE|FOB|yly bold accounts.| +3785|50722|723|5|18|30108.96|0.10|0.07|A|F|1994-01-06|1994-02-09|1994-02-05|COLLECT COD|MAIL|slyly unusual a| +3785|74615|7123|6|37|58815.57|0.07|0.07|A|F|1994-02-03|1994-01-07|1994-02-12|COLLECT COD|REG AIR|slyly under the packages. re| +3785|50584|585|7|4|6138.32|0.09|0.06|A|F|1994-01-10|1993-12-30|1994-01-11|NONE|AIR| daringly | +3786|155167|7683|1|40|48886.40|0.01|0.06|R|F|1992-09-02|1992-08-21|1992-09-17|COLLECT COD|MAIL|slyly regular packages wake bl| +3786|90769|8297|2|16|28156.16|0.07|0.02|A|F|1992-08-13|1992-08-15|1992-09-04|DELIVER IN PERSON|TRUCK|equests alongside of the unusual, regul| +3787|105004|2535|1|27|27243.00|0.08|0.04|R|F|1994-04-21|1994-04-04|1994-05-11|NONE|RAIL|sits nag. ca| +3787|191024|1025|2|5|5575.10|0.03|0.04|A|F|1994-06-07|1994-05-26|1994-06-25|NONE|RAIL|ts. permanent, enti| +3787|127346|9859|3|17|23346.78|0.06|0.01|A|F|1994-04-22|1994-05-23|1994-05-07|COLLECT COD|RAIL|refully final requests affix alon| +3787|88132|5657|4|2|2240.26|0.01|0.00|R|F|1994-04-28|1994-04-29|1994-05-28|NONE|SHIP| blithely unusual accounts doubt. p| +3788|77830|338|1|11|19886.13|0.04|0.06|R|F|1995-04-07|1995-02-15|1995-04-17|TAKE BACK RETURN|FOB|ial deposits wake furiously iron| +3788|83543|6052|2|46|70220.84|0.02|0.04|A|F|1995-02-22|1995-01-17|1995-02-24|TAKE BACK RETURN|AIR|egular ideas. special requests above | +3788|98687|6215|3|41|69112.88|0.10|0.02|R|F|1995-02-05|1995-02-12|1995-02-16|NONE|MAIL|carefully final pi| +3788|24443|9448|4|4|5469.76|0.08|0.05|A|F|1994-12-20|1995-01-20|1994-12-22|DELIVER IN PERSON|TRUCK|g packages. packages across the fl| +3788|9499|2000|5|36|50705.64|0.03|0.05|R|F|1995-02-17|1995-02-02|1995-03-05|DELIVER IN PERSON|FOB|larly. even co| +3789|86329|8838|1|30|39459.60|0.05|0.08|N|O|1995-12-15|1995-12-17|1995-12-18|COLLECT COD|REG AIR|ecial pinto | +3789|127551|5088|2|26|41042.30|0.02|0.06|N|O|1996-01-20|1995-11-25|1996-02-07|COLLECT COD|SHIP|y special accounts alongside of the bli| +3789|149355|9356|3|35|49152.25|0.05|0.08|N|O|1996-01-13|1995-12-08|1996-01-19|COLLECT COD|RAIL|aphs. furiously ironic | +3790|90239|7767|1|45|55315.35|0.08|0.04|A|F|1995-04-17|1995-06-02|1995-05-03|COLLECT COD|TRUCK|ress ideas wake ironic ideas| +3790|46070|8575|2|28|28449.96|0.08|0.04|R|F|1995-06-11|1995-06-01|1995-06-17|DELIVER IN PERSON|MAIL|sleep among the ironic, ironic ide| +3790|95889|5890|3|50|94244.00|0.01|0.01|A|F|1995-05-20|1995-06-13|1995-05-21|DELIVER IN PERSON|MAIL|ticingly express| +3790|195995|1034|4|29|60638.71|0.06|0.02|R|F|1995-03-19|1995-05-13|1995-04-16|TAKE BACK RETURN|FOB|ockey players wake blithely unu| +3790|86837|4362|5|16|29181.28|0.09|0.02|N|F|1995-06-11|1995-05-31|1995-06-24|COLLECT COD|TRUCK|ct slyly final realms. furi| +3790|60827|5840|6|35|62573.70|0.05|0.03|N|F|1995-06-17|1995-05-20|1995-06-25|NONE|AIR|equests. slyly caref| +3790|104059|4060|7|27|28702.35|0.10|0.03|N|O|1995-06-20|1995-06-10|1995-06-24|DELIVER IN PERSON|MAIL|ng to the carefully ironi| +3791|115221|244|1|3|3708.66|0.09|0.05|N|O|1997-10-16|1997-12-08|1997-10-28|DELIVER IN PERSON|SHIP|t asymptotes are about| +3791|113637|6149|2|36|59422.68|0.03|0.00|N|O|1997-12-27|1997-12-07|1998-01-26|NONE|FOB|tructions. blithely unusual ideas affi| +3816|119192|4215|1|18|21801.42|0.03|0.02|R|F|1993-01-12|1993-02-02|1993-01-13|NONE|AIR|jole busily quickly r| +3817|115325|7837|1|30|40209.60|0.08|0.06|N|O|1995-07-14|1995-06-03|1995-07-25|TAKE BACK RETURN|TRUCK|e carefully carefully regular re| +3817|59654|4665|2|48|77455.20|0.03|0.08|R|F|1995-04-29|1995-06-09|1995-05-20|TAKE BACK RETURN|REG AIR|nding asymptotes. fur| +3817|707|8208|3|49|78777.30|0.09|0.00|N|O|1995-07-30|1995-06-13|1995-08-12|TAKE BACK RETURN|RAIL|l accounts. furiou| +3817|67611|7612|4|19|29993.59|0.10|0.06|A|F|1995-05-08|1995-06-23|1995-05-28|DELIVER IN PERSON|RAIL|tructions. furiously | +3817|129812|9813|5|24|44203.44|0.08|0.06|N|F|1995-06-17|1995-05-29|1995-06-22|COLLECT COD|SHIP|ve the carefully final theodolit| +3817|148696|8697|6|27|47106.63|0.04|0.00|N|F|1995-06-03|1995-06-24|1995-06-22|TAKE BACK RETURN|TRUCK| express packages| +3818|100211|2722|1|49|59349.29|0.02|0.06|N|O|1996-09-16|1996-08-27|1996-10-08|DELIVER IN PERSON|MAIL|latelets run | +3819|152665|7696|1|2|3435.32|0.01|0.03|N|O|1996-10-04|1996-10-30|1996-10-20|COLLECT COD|TRUCK|ously unusual ideas. re| +3819|40355|5364|2|36|46632.60|0.01|0.02|N|O|1996-10-10|1996-11-09|1996-10-17|NONE|MAIL|final, final accounts. slyly| +3819|41579|9092|3|33|50178.81|0.09|0.02|N|O|1996-10-28|1996-10-02|1996-11-12|NONE|REG AIR|. furiously silent dinos| +3819|2532|2533|4|4|5738.12|0.07|0.07|N|O|1996-10-21|1996-10-23|1996-11-12|COLLECT COD|TRUCK|s cajole blithely. express, special asympto| +3819|150507|5538|5|22|34265.00|0.04|0.05|N|O|1996-11-08|1996-10-01|1996-11-27|NONE|RAIL|s. carefully unusual packages abou| +3819|156569|6570|6|42|68273.52|0.03|0.07|N|O|1996-10-08|1996-09-24|1996-10-12|DELIVER IN PERSON|AIR|the carefully special excuses| +3820|199694|2214|1|13|23317.97|0.08|0.03|N|O|1998-02-19|1998-04-06|1998-03-13|NONE|SHIP| furiously bold asym| +3820|42337|9850|2|13|16631.29|0.10|0.03|N|O|1998-05-18|1998-04-19|1998-06-05|TAKE BACK RETURN|AIR|dolites cajole sometimes. slyly iron| +3820|150698|3214|3|8|13989.52|0.02|0.03|N|O|1998-04-16|1998-03-24|1998-04-29|NONE|RAIL|s might wake quick| +3821|80424|5441|1|1|1404.42|0.00|0.08|A|F|1992-09-14|1992-08-28|1992-10-12|NONE|SHIP|ng to the acc| +3821|84072|9089|2|37|39074.59|0.09|0.00|A|F|1992-06-21|1992-08-18|1992-07-01|TAKE BACK RETURN|RAIL|ests. even p| +3822|198870|3909|1|39|76785.93|0.10|0.06|R|F|1993-12-24|1993-12-27|1993-12-29|DELIVER IN PERSON|RAIL|egular packages haggle. ironic re| +3823|150487|8033|1|20|30749.60|0.10|0.04|N|O|1997-10-25|1997-10-14|1997-10-30|DELIVER IN PERSON|AIR|carefully ironic packa| +3823|28055|3060|2|42|41288.10|0.09|0.01|N|O|1997-10-13|1997-09-29|1997-10-24|TAKE BACK RETURN|TRUCK| carefully express instructions. never ir| +3823|113615|8638|3|33|53744.13|0.07|0.04|N|O|1997-10-25|1997-09-12|1997-11-18|TAKE BACK RETURN|TRUCK| final packages along the i| +3823|115173|7685|4|33|39209.61|0.01|0.03|N|O|1997-09-16|1997-10-11|1997-10-12|COLLECT COD|SHIP|lyly even ideas nod. blithely | +3848|10737|3239|1|4|6590.92|0.10|0.00|A|F|1994-01-07|1994-03-03|1994-02-03|DELIVER IN PERSON|TRUCK|aggle fluffily furiously fluff| +3848|47843|2852|2|19|34025.96|0.06|0.04|R|F|1994-03-12|1994-02-16|1994-04-09|NONE|FOB|fully accord| +3848|85165|5166|3|44|50607.04|0.09|0.03|A|F|1994-01-09|1994-03-20|1994-01-17|COLLECT COD|FOB|l excuses boost. slyly even| +3848|159179|9180|4|26|32192.42|0.08|0.01|A|F|1994-04-12|1994-02-05|1994-04-20|TAKE BACK RETURN|SHIP|nts cajole according to t| +3848|107669|5200|5|41|68743.06|0.00|0.03|R|F|1994-03-08|1994-02-22|1994-03-30|DELIVER IN PERSON|REG AIR|refully against the regular platelets. f| +3849|141158|3673|1|40|47966.00|0.00|0.02|A|F|1992-04-09|1992-03-11|1992-05-05|TAKE BACK RETURN|SHIP|r requests sleep blithely fur| +3850|153332|8363|1|37|51257.21|0.06|0.08|N|O|1996-04-07|1996-05-17|1996-04-14|NONE|AIR|uietly regular requests a| +3850|46625|1634|2|1|1571.62|0.02|0.05|N|O|1996-06-02|1996-05-26|1996-06-16|TAKE BACK RETURN|TRUCK|oggedly pending pinto beans. iro| +3850|17832|7833|3|48|83991.84|0.01|0.04|N|O|1996-04-03|1996-06-15|1996-04-17|NONE|RAIL|ns cajole alongside of the carefully iro| +3850|92534|2535|4|37|56481.61|0.02|0.01|N|O|1996-07-13|1996-06-13|1996-07-19|DELIVER IN PERSON|REG AIR|ly. blithely bold packages wak| +3850|3593|8594|5|43|64353.37|0.03|0.05|N|O|1996-06-21|1996-06-10|1996-07-20|TAKE BACK RETURN|FOB|pinto beans. acco| +3850|172790|2791|6|49|91276.71|0.00|0.03|N|O|1996-07-11|1996-04-20|1996-08-01|NONE|MAIL|ly quickly ironic foxes. even, dar| +3851|132093|4607|1|1|1125.09|0.08|0.03|N|O|1998-01-27|1998-02-12|1998-01-28|COLLECT COD|AIR|y even accounts are a| +3851|83151|8168|2|29|32890.35|0.08|0.04|N|O|1997-12-21|1998-02-03|1997-12-28|NONE|SHIP| about the furiously final theodolites. qui| +3851|109938|7469|3|21|40906.53|0.05|0.07|N|O|1998-01-31|1998-03-04|1998-02-23|COLLECT COD|RAIL|its; slyly | +3852|123347|3348|1|32|43850.88|0.07|0.05|N|O|1996-05-17|1996-04-28|1996-06-05|DELIVER IN PERSON|MAIL|ep blithely final, | +3852|92904|7923|2|6|11381.40|0.01|0.05|N|O|1996-04-10|1996-03-29|1996-05-02|TAKE BACK RETURN|RAIL| dependencies are accou| +3853|116748|4282|1|22|38824.28|0.07|0.02|R|F|1993-01-08|1992-12-01|1993-02-04|COLLECT COD|SHIP|ideas are quick| +3853|182412|9967|2|22|32877.02|0.00|0.00|R|F|1992-12-16|1992-11-09|1993-01-08|TAKE BACK RETURN|SHIP|ular instructions are furiously blit| +3853|195117|7637|3|3|3636.33|0.09|0.03|R|F|1993-01-18|1992-11-24|1993-02-08|DELIVER IN PERSON|RAIL|leep slyly abov| +3853|130853|3367|4|3|5651.55|0.00|0.01|R|F|1992-12-16|1992-12-15|1993-01-10|TAKE BACK RETURN|RAIL|ng to the quickly express| +3853|42151|2152|5|41|44819.15|0.04|0.06|R|F|1992-10-02|1992-12-23|1992-10-07|TAKE BACK RETURN|SHIP|riously ironic requests pl| +3853|24213|9218|6|22|25018.62|0.07|0.03|A|F|1992-12-01|1992-11-08|1992-12-16|TAKE BACK RETURN|FOB|ccounts; b| +3853|133870|3871|7|22|41885.14|0.07|0.04|R|F|1993-01-28|1992-12-25|1993-02-03|COLLECT COD|MAIL|onic asymptot| +3854|148196|3225|1|46|57232.74|0.07|0.07|N|O|1996-12-27|1997-01-06|1997-01-02|COLLECT COD|FOB|press requests thra| +3854|116755|4289|2|9|15945.75|0.00|0.05|N|O|1997-01-10|1996-12-17|1997-01-29|DELIVER IN PERSON|RAIL|eodolites: furiously unusual accounts| +3855|59648|4659|1|34|54659.76|0.01|0.00|R|F|1993-11-10|1994-01-19|1993-12-01|DELIVER IN PERSON|REG AIR|s pinto beans. fina| +3855|103810|1341|2|34|61669.54|0.04|0.01|A|F|1993-11-15|1993-12-06|1993-11-19|DELIVER IN PERSON|TRUCK|foxes. quickly even pac| +3855|124564|2101|3|49|77839.44|0.06|0.02|R|F|1994-01-03|1993-12-23|1994-01-12|NONE|TRUCK|ore the unusual| +3855|131439|3953|4|11|16174.73|0.00|0.05|A|F|1994-01-24|1994-01-06|1994-02-20|NONE|FOB|s haggle furiously after the slowly ironi| +3855|93143|5653|5|13|14769.82|0.06|0.04|R|F|1994-01-01|1993-11-24|1994-01-05|TAKE BACK RETURN|MAIL|nic dinos boost slyly among the slyly regu| +3855|38461|8462|6|47|65774.62|0.05|0.05|A|F|1993-11-18|1993-12-18|1993-11-19|NONE|RAIL|lly. blithely special deposits de| +3855|10317|5320|7|46|56456.26|0.07|0.06|A|F|1994-02-21|1993-12-21|1994-02-23|COLLECT COD|FOB|s cajole slyly above the fur| +3880|183507|6026|1|5|7952.50|0.05|0.06|R|F|1993-01-19|1992-12-30|1993-01-24|DELIVER IN PERSON|SHIP|refully regular deposits cajole along the | +3880|189455|4492|2|7|10811.15|0.08|0.01|R|F|1993-02-01|1993-02-10|1993-02-07|DELIVER IN PERSON|FOB|ly blithely regular accounts? special plat| +3880|162632|2633|3|12|20335.56|0.09|0.08|A|F|1992-12-07|1993-01-26|1993-01-06|DELIVER IN PERSON|FOB| against the re| +3881|9969|9970|1|12|22547.52|0.00|0.02|N|O|1995-09-23|1995-10-28|1995-10-10|COLLECT COD|FOB|use furiously express instructi| +3881|143767|8796|2|22|39836.72|0.09|0.05|N|O|1995-11-16|1995-11-21|1995-12-14|NONE|MAIL|ld pinto beans sle| +3881|90379|2889|3|23|31495.51|0.06|0.04|N|O|1996-01-03|1995-10-12|1996-01-08|COLLECT COD|TRUCK| slyly according to the slyly regu| +3881|184212|6731|4|1|1296.21|0.00|0.02|N|O|1995-11-22|1995-11-13|1995-12-05|NONE|RAIL|ckages. slyly even asymptotes c| +3881|46865|6866|5|49|88781.14|0.08|0.03|N|O|1995-10-02|1995-10-19|1995-10-14|NONE|SHIP|ss the iro| +3882|31985|6992|1|47|90098.06|0.10|0.05|N|O|1996-11-12|1996-09-20|1996-12-05|COLLECT COD|AIR|eans use. warhor| +3882|155101|2647|2|44|50868.40|0.10|0.04|N|O|1996-10-20|1996-10-16|1996-11-12|COLLECT COD|REG AIR|encies use| +3882|178996|1514|3|20|41499.80|0.02|0.05|N|O|1996-10-16|1996-09-16|1996-10-26|TAKE BACK RETURN|TRUCK| ideas. pending, ironic deposits | +3882|169758|4791|4|1|1827.75|0.03|0.00|N|O|1996-08-05|1996-10-15|1996-08-16|COLLECT COD|MAIL| carefully ironi| +3883|44184|4185|1|42|47383.56|0.01|0.04|N|O|1995-07-16|1995-08-05|1995-07-29|DELIVER IN PERSON|FOB|inal requests. accounts haggle | +3884|111831|4343|1|47|86613.01|0.04|0.02|N|O|1996-06-27|1996-08-08|1996-06-30|TAKE BACK RETURN|MAIL|s use slyly slyly regular pinto beans| +3884|143584|3585|2|34|55337.72|0.07|0.05|N|O|1996-09-07|1996-08-16|1996-10-03|TAKE BACK RETURN|SHIP|ccounts. closely regular platelets | +3884|1669|9170|3|31|48690.46|0.06|0.04|N|O|1996-07-31|1996-07-11|1996-08-06|TAKE BACK RETURN|RAIL|st the furiously pending requests. pint| +3884|43663|6168|4|14|22493.24|0.04|0.03|N|O|1996-07-02|1996-07-12|1996-07-30|COLLECT COD|TRUCK|rts about the furio| +3884|32918|2919|5|2|3701.82|0.07|0.03|N|O|1996-08-31|1996-06-29|1996-09-23|TAKE BACK RETURN|RAIL|usly unusual ideas sleep. carefully f| +3884|45197|2710|6|47|53682.93|0.10|0.02|N|O|1996-07-28|1996-07-03|1996-08-14|NONE|RAIL|eposits wake slyly. care| +3885|69472|6991|1|11|15856.17|0.00|0.02|N|O|1997-07-07|1997-06-05|1997-08-06|COLLECT COD|SHIP|ke furiously slyly expre| +3886|80286|5303|1|8|10130.24|0.05|0.07|N|O|1996-08-20|1996-07-17|1996-08-30|TAKE BACK RETURN|REG AIR|posits use fluffily above t| +3886|162834|5351|2|19|36039.77|0.02|0.05|N|O|1996-06-15|1996-08-11|1996-06-27|TAKE BACK RETURN|SHIP|e blithely regular packages| +3886|140633|5662|3|36|60250.68|0.09|0.05|N|O|1996-06-17|1996-07-31|1996-06-21|COLLECT COD|FOB|ully furiousl| +3886|6233|8734|4|41|46708.43|0.01|0.07|N|O|1996-05-29|1996-07-27|1996-06-11|DELIVER IN PERSON|SHIP| furiously ironic acco| +3886|152484|7515|5|3|4609.44|0.08|0.02|N|O|1996-09-24|1996-07-31|1996-10-20|TAKE BACK RETURN|REG AIR|e blithely ironic id| +3886|196749|9269|6|38|70138.12|0.10|0.01|N|O|1996-08-07|1996-08-02|1996-08-19|COLLECT COD|TRUCK|olites according to the steal| +3887|142057|4572|1|26|28575.30|0.10|0.02|N|O|1998-08-20|1998-06-30|1998-08-27|DELIVER IN PERSON|TRUCK|inst the quickly final accounts. carefully | +3887|150323|2839|2|41|56306.12|0.03|0.01|N|O|1998-07-09|1998-06-23|1998-07-10|TAKE BACK RETURN|RAIL| excuses x-ray. accou| +3887|66291|8798|3|39|49034.31|0.00|0.05|N|O|1998-06-11|1998-07-09|1998-07-02|TAKE BACK RETURN|REG AIR|deas. accounts alongsi| +3887|137857|5397|4|10|18948.50|0.08|0.03|N|O|1998-08-12|1998-06-05|1998-08-15|NONE|REG AIR|gular pinto beans| +3887|162440|2441|5|3|4507.32|0.05|0.04|N|O|1998-08-23|1998-07-13|1998-08-30|DELIVER IN PERSON|SHIP|of the furiously final platele| +3887|127956|7957|6|44|87293.80|0.03|0.02|N|O|1998-08-01|1998-07-10|1998-08-21|TAKE BACK RETURN|MAIL|structions boost. special, special depende| +3887|156277|8793|7|17|22665.59|0.02|0.01|N|O|1998-06-14|1998-06-05|1998-06-22|DELIVER IN PERSON|RAIL|lly unusual request| +3912|139082|9083|1|14|15695.12|0.05|0.03|R|F|1994-09-30|1994-08-22|1994-10-03|DELIVER IN PERSON|SHIP| even requests will are fur| +3912|134794|4795|2|43|78637.97|0.03|0.06|A|F|1994-09-26|1994-09-23|1994-09-28|DELIVER IN PERSON|RAIL|ayers wake after the som| +3912|73873|8888|3|21|38784.27|0.07|0.06|R|F|1994-08-26|1994-09-15|1994-09-08|NONE|REG AIR|ding excuses use throughout the unusual ex| +3912|177051|2086|4|18|20304.90|0.06|0.05|R|F|1994-10-22|1994-09-12|1994-11-15|NONE|FOB|ajole fluffily. excuses x-ra| +3912|90875|3385|5|8|14926.96|0.02|0.07|A|F|1994-10-19|1994-09-06|1994-11-16|NONE|TRUCK|s haggle. | +3912|124666|7179|6|9|15215.94|0.10|0.01|A|F|1994-09-08|1994-10-16|1994-10-03|NONE|MAIL|kages integrate furiously spe| +3912|52467|9983|7|38|53939.48|0.10|0.05|A|F|1994-10-19|1994-09-01|1994-10-20|NONE|SHIP|y. carefully even packages boost among the | +3913|10601|3103|1|49|74068.40|0.01|0.03|N|O|1996-02-04|1995-12-25|1996-02-22|TAKE BACK RETURN|MAIL|s. final ideas wake furiously. blithely e| +3914|8292|5793|1|13|15603.77|0.10|0.07|N|O|1996-12-06|1996-12-01|1997-01-04|COLLECT COD|RAIL|lyly slyly final dolphins. sp| +3914|153157|8188|2|13|15731.95|0.00|0.04|N|O|1996-12-06|1996-11-17|1996-12-07|COLLECT COD|MAIL|y even foxes| +3914|103951|6462|3|39|76243.05|0.08|0.05|N|O|1996-12-27|1996-12-10|1997-01-22|TAKE BACK RETURN|RAIL| the quickly unusual | +3914|93487|5997|4|37|54777.76|0.09|0.03|N|O|1996-10-23|1996-11-28|1996-10-27|DELIVER IN PERSON|REG AIR|iously express pinto| +3914|20536|8043|5|23|33500.19|0.05|0.05|N|O|1996-10-16|1996-12-02|1996-11-10|TAKE BACK RETURN|RAIL|apades nag across the expre| +3914|138970|6510|6|5|10044.85|0.02|0.08|N|O|1996-10-16|1996-12-12|1996-10-22|COLLECT COD|REG AIR|ts affix quickl| +3914|61913|6926|7|39|73121.49|0.09|0.08|N|O|1996-12-09|1996-11-11|1996-12-12|TAKE BACK RETURN|MAIL|y pending requests. unus| +3915|155019|2565|1|46|49404.46|0.04|0.08|N|O|1995-12-27|1995-11-16|1996-01-19|DELIVER IN PERSON|AIR|final foxes wake alo| +3915|1029|3530|2|18|16740.36|0.03|0.05|N|O|1995-10-30|1995-11-16|1995-11-18|DELIVER IN PERSON|RAIL| boost carefully above the| +3915|79705|7227|3|49|82550.30|0.10|0.04|N|O|1995-11-25|1995-12-13|1995-12-07|TAKE BACK RETURN|RAIL| orbits integrate slyly deposits. | +3915|193684|6204|4|20|35553.60|0.07|0.07|N|O|1995-09-26|1995-11-15|1995-10-13|COLLECT COD|MAIL| quickly above | +3915|43342|5847|5|43|55269.62|0.06|0.04|N|O|1995-10-28|1995-10-27|1995-11-26|DELIVER IN PERSON|RAIL| cajole furiously quickly final grouche| +3915|45762|5763|6|38|64894.88|0.06|0.07|N|O|1995-10-19|1995-11-23|1995-11-03|NONE|TRUCK| regular, ironic pinto beans hin| +3916|177604|5156|1|21|35313.60|0.05|0.06|N|O|1996-10-26|1996-08-18|1996-11-07|DELIVER IN PERSON|SHIP|hless requests after t| +3916|189564|2083|2|36|59528.16|0.02|0.01|N|O|1996-08-16|1996-10-04|1996-08-28|NONE|AIR|otes cajole. | +3916|196128|8648|3|24|29378.88|0.06|0.00|N|O|1996-09-17|1996-09-11|1996-10-03|COLLECT COD|MAIL|c decoys above | +3916|114690|7202|4|18|30684.42|0.02|0.00|N|O|1996-07-15|1996-09-16|1996-07-29|TAKE BACK RETURN|RAIL|excuses. quickly final reque| +3916|181292|3811|5|7|9613.03|0.02|0.06|N|O|1996-10-27|1996-09-12|1996-11-20|DELIVER IN PERSON|RAIL|ccounts: req| +3916|163954|6471|6|28|56502.60|0.02|0.00|N|O|1996-08-16|1996-09-19|1996-08-22|TAKE BACK RETURN|FOB|inal ideas after the evenly unusual dug| +3917|128885|8886|1|9|17224.92|0.04|0.08|R|F|1993-08-31|1993-09-12|1993-09-24|NONE|SHIP| boost against the| +3917|161279|8828|2|6|8041.62|0.04|0.06|R|F|1993-07-31|1993-09-13|1993-08-22|NONE|RAIL|nic accounts nag fluffily alo| +3917|13783|8786|3|45|76355.10|0.10|0.00|A|F|1993-09-21|1993-09-04|1993-10-07|TAKE BACK RETURN|AIR|ironic packages ar| +3918|13163|8166|1|8|8609.28|0.01|0.06|N|O|1997-08-01|1997-05-24|1997-08-12|DELIVER IN PERSON|AIR|ess deposits sle| +3918|18750|1252|2|16|26700.00|0.02|0.05|N|O|1997-06-28|1997-05-06|1997-07-07|TAKE BACK RETURN|AIR|latelets cajole. excuses about the b| +3918|121776|1777|3|21|37753.17|0.03|0.01|N|O|1997-04-22|1997-05-20|1997-05-06|TAKE BACK RETURN|REG AIR|sly ruthless deposit| +3918|81571|1572|4|14|21735.98|0.05|0.00|N|O|1997-06-03|1997-05-18|1997-06-24|NONE|MAIL|usly quick accounts. express depen| +3918|147115|7116|5|14|16269.54|0.10|0.02|N|O|1997-04-08|1997-05-30|1997-05-08|COLLECT COD|AIR|regular, close requests. ironic, u| +3918|154250|4251|6|24|31302.00|0.04|0.04|N|O|1997-06-26|1997-05-12|1997-07-07|TAKE BACK RETURN|TRUCK|ests. furiously | +3918|79472|9473|7|7|10160.29|0.08|0.02|N|O|1997-06-26|1997-06-02|1997-07-25|COLLECT COD|AIR|fy epitaphs. furio| +3919|82115|4624|1|24|26330.64|0.05|0.05|A|F|1992-09-27|1992-09-13|1992-10-13|DELIVER IN PERSON|MAIL|hlessly; furiously s| +3919|98670|1180|2|18|30036.06|0.00|0.01|A|F|1992-08-28|1992-10-06|1992-09-16|NONE|FOB|ounts sleep carefully regular depos| +3919|141603|4118|3|13|21379.80|0.10|0.02|R|F|1992-08-21|1992-09-11|1992-08-25|TAKE BACK RETURN|AIR| blithely special fre| +3919|112758|292|4|7|12395.25|0.01|0.01|A|F|1992-09-01|1992-10-04|1992-09-12|DELIVER IN PERSON|TRUCK|s sleep. fl| +3944|73933|8948|1|18|34324.74|0.08|0.08|A|F|1992-08-03|1992-06-11|1992-08-15|NONE|REG AIR|packages use. fluffily regular depos| +3944|185152|2707|2|42|51960.30|0.01|0.01|R|F|1992-05-12|1992-07-09|1992-06-02|DELIVER IN PERSON|REG AIR|carefully above the carefully pending acc| +3944|36598|9102|3|3|4603.77|0.03|0.00|A|F|1992-05-21|1992-06-10|1992-06-13|TAKE BACK RETURN|REG AIR| packages boost blith| +3945|57041|9547|1|22|21956.88|0.08|0.00|A|F|1992-02-10|1992-02-29|1992-03-08|TAKE BACK RETURN|TRUCK|ccounts af| +3946|75278|7786|1|11|13785.97|0.08|0.01|R|F|1993-11-19|1993-12-18|1993-11-23|DELIVER IN PERSON|AIR|e against the carefully even acco| +3947|96600|4128|1|3|4789.80|0.08|0.00|N|O|1997-05-14|1997-06-14|1997-06-10|DELIVER IN PERSON|RAIL|ve quickly agains| +3948|120608|3121|1|37|60258.20|0.02|0.03|R|F|1995-01-08|1994-12-23|1995-01-16|NONE|FOB| carefully. silent| +3948|43047|3048|2|43|42571.72|0.03|0.06|R|F|1994-11-12|1994-11-09|1994-12-03|DELIVER IN PERSON|TRUCK| deposits wake carefully regula| +3948|79619|7141|3|42|67141.62|0.03|0.03|R|F|1995-01-31|1994-11-27|1995-02-21|NONE|AIR|quests. blithely unusual packa| +3949|196389|1428|1|28|41590.64|0.05|0.00|N|O|1997-08-26|1997-09-10|1997-09-22|DELIVER IN PERSON|AIR|latelets. carefully regular depos| +3949|99928|4947|2|19|36630.48|0.03|0.08|N|O|1997-08-28|1997-09-10|1997-09-08|TAKE BACK RETURN|MAIL|ly pending dolphins about the slyly unu| +3950|55553|564|1|33|49782.15|0.00|0.03|A|F|1993-01-28|1993-03-08|1993-02-27|TAKE BACK RETURN|RAIL|beans. requests sleep blit| +3950|67006|7007|2|43|41839.00|0.05|0.06|R|F|1993-04-21|1993-03-07|1993-04-25|NONE|SHIP|usly unusual deposits| +3951|21544|9051|1|11|16120.94|0.05|0.07|R|F|1994-07-18|1994-07-02|1994-08-07|NONE|MAIL|sly. slyly express dependencies h| +3951|80380|381|2|45|61217.10|0.04|0.05|A|F|1994-06-21|1994-06-19|1994-07-21|TAKE BACK RETURN|MAIL|riously ab| +3951|134704|2244|3|11|19125.70|0.01|0.01|A|F|1994-06-24|1994-06-26|1994-07-18|TAKE BACK RETURN|FOB|fluffily ironic instruc| +3951|158309|8310|4|32|43753.60|0.10|0.05|R|F|1994-05-21|1994-06-12|1994-06-14|DELIVER IN PERSON|AIR|xpress dolphins. furiously specia| +3951|94838|2366|5|17|31158.11|0.00|0.04|R|F|1994-04-30|1994-06-23|1994-05-26|DELIVER IN PERSON|FOB|deposits hinder ironically eve| +3951|129200|1713|6|7|8604.40|0.09|0.02|R|F|1994-06-28|1994-06-19|1994-07-21|COLLECT COD|FOB| carefully silent | +3976|129370|4395|1|50|69968.50|0.08|0.01|R|F|1994-06-03|1994-08-03|1994-06-13|COLLECT COD|SHIP|es use slyly final requests. blithely speci| +3976|114503|7015|2|46|69805.00|0.02|0.06|R|F|1994-07-23|1994-07-17|1994-08-06|NONE|AIR|ve the thinly ironic platelets. regular| +3976|40880|3385|3|31|56447.28|0.00|0.04|R|F|1994-07-12|1994-08-29|1994-08-11|DELIVER IN PERSON|MAIL|ly regular courts haggl| +3976|58469|3480|4|2|2854.92|0.08|0.02|R|F|1994-09-06|1994-08-26|1994-09-20|COLLECT COD|RAIL|unts. bold dep| +3977|163093|642|1|40|46243.60|0.07|0.04|N|O|1997-03-02|1997-03-02|1997-03-08|TAKE BACK RETURN|FOB|y final accounts affix quickly| +3977|98562|8563|2|3|4681.68|0.01|0.01|N|O|1997-04-15|1997-03-22|1997-05-04|TAKE BACK RETURN|AIR| wake caref| +3977|119269|9270|3|25|32206.50|0.04|0.03|N|O|1997-02-12|1997-04-18|1997-02-20|COLLECT COD|SHIP|ept the ironic requests. fl| +3977|143863|3864|4|44|83901.84|0.09|0.01|N|O|1997-02-25|1997-04-16|1997-03-12|COLLECT COD|FOB|y above the furiousl| +3977|98568|6096|5|27|42297.12|0.07|0.01|N|O|1997-02-18|1997-04-14|1997-03-16|COLLECT COD|MAIL|ding warhorses cajole furiously. furi| +3977|16148|8650|6|34|36180.76|0.01|0.07|N|O|1997-01-24|1997-04-03|1997-02-09|DELIVER IN PERSON|REG AIR|usly ironic instru| +3977|197527|2566|7|5|8122.60|0.00|0.05|N|O|1997-04-23|1997-04-19|1997-05-09|COLLECT COD|MAIL|inal requests. express | +3978|34609|4610|1|34|52482.40|0.07|0.05|N|O|1997-02-11|1997-02-04|1997-02-16|NONE|TRUCK|are across the blithely ironic pac| +3978|62671|5178|2|44|71881.48|0.04|0.06|N|O|1996-11-25|1997-01-10|1996-12-14|DELIVER IN PERSON|TRUCK|! furiously bold reques| +3979|198639|8640|1|20|34752.60|0.03|0.06|N|O|1998-09-11|1998-08-16|1998-09-21|NONE|FOB|eep final instructions. blithel| +3979|123653|3654|2|29|48622.85|0.05|0.04|N|O|1998-09-05|1998-07-03|1998-09-27|TAKE BACK RETURN|SHIP|y ironic packages. regular, iro| +3980|167746|7747|1|9|16323.66|0.00|0.02|A|F|1993-06-22|1993-05-10|1993-07-20|DELIVER IN PERSON|REG AIR|ironic deposits mold even | +3980|101749|6770|2|46|80534.04|0.00|0.05|A|F|1993-04-21|1993-04-07|1993-05-12|TAKE BACK RETURN|SHIP|ld packages according to the carefu| +3981|94826|2354|1|18|32774.76|0.10|0.02|N|O|1998-01-25|1998-02-10|1998-02-24|NONE|FOB|structions affix slyly slyly pending d| +3981|128228|8229|2|8|10049.76|0.07|0.05|N|O|1998-01-17|1998-02-16|1998-01-28|NONE|SHIP| quickly. slyly ironic pinto| +3981|127905|5442|3|31|59919.90|0.03|0.01|N|O|1998-01-16|1998-02-17|1998-02-10|TAKE BACK RETURN|REG AIR|lly regular deposits. quick| +3981|91422|8950|4|6|8480.52|0.06|0.04|N|O|1998-02-02|1998-01-24|1998-02-28|TAKE BACK RETURN|RAIL|furiously ironic fret| +3981|129495|4520|5|48|73175.52|0.01|0.01|N|O|1998-03-29|1998-01-22|1998-04-05|COLLECT COD|SHIP|ent ideas. unusual excuses hagg| +3982|26928|1933|1|5|9274.60|0.04|0.00|R|F|1995-05-19|1995-05-24|1995-05-31|COLLECT COD|REG AIR|ptotes sleep before the carefully unusual | +3982|162198|7231|2|38|47887.22|0.01|0.07|A|F|1995-04-17|1995-04-07|1995-05-13|COLLECT COD|TRUCK|usual requests? furious| +3982|49942|9943|3|22|41622.68|0.01|0.05|A|F|1995-03-20|1995-05-04|1995-04-11|NONE|REG AIR| platelets. fu| +3982|171157|8709|4|47|57723.05|0.05|0.05|R|F|1995-05-02|1995-06-02|1995-05-28|TAKE BACK RETURN|FOB|ing excuses| +3983|128256|3281|1|30|38527.50|0.04|0.06|N|O|1997-03-19|1997-02-21|1997-04-15|COLLECT COD|SHIP|the furiously ironic exc| +4008|70317|2825|1|38|48917.78|0.08|0.00|N|O|1998-03-22|1998-06-10|1998-04-07|TAKE BACK RETURN|AIR|ckly even ideas are slyly around the| +4008|5710|8211|2|22|35545.62|0.04|0.02|N|O|1998-04-14|1998-05-04|1998-04-25|DELIVER IN PERSON|TRUCK|y ironic instructio| +4008|167865|2898|3|25|48321.50|0.06|0.04|N|O|1998-04-01|1998-05-15|1998-04-15|COLLECT COD|MAIL|efully. silen| +4008|105979|5980|4|38|75428.86|0.07|0.00|N|O|1998-04-19|1998-04-22|1998-05-01|TAKE BACK RETURN|AIR|nag slyly. final requests use| +4008|173305|8340|5|44|60645.20|0.04|0.02|N|O|1998-07-07|1998-05-24|1998-07-18|COLLECT COD|AIR|furiously about th| +4008|130091|7631|6|12|13453.08|0.09|0.06|N|O|1998-05-28|1998-05-08|1998-06-26|DELIVER IN PERSON|RAIL|s near the slyly final foxes wake furio| +4009|23731|8736|1|5|8273.65|0.03|0.04|R|F|1993-06-17|1993-07-10|1993-07-05|TAKE BACK RETURN|AIR|otes. furiously regular deposits wake bl| +4009|44696|9705|2|15|24610.35|0.03|0.03|R|F|1993-07-16|1993-08-12|1993-08-04|NONE|REG AIR|ly. accounts bo| +4009|49|50|3|32|30369.28|0.01|0.03|R|F|1993-09-04|1993-08-03|1993-10-01|TAKE BACK RETURN|TRUCK|y final package| +4010|94134|9153|1|45|50765.85|0.05|0.07|R|F|1995-04-01|1995-02-16|1995-04-13|NONE|REG AIR|eve furiously alongside of the f| +4010|105712|5713|2|42|72143.82|0.10|0.02|R|F|1995-01-31|1995-01-22|1995-02-16|COLLECT COD|TRUCK|express deposi| +4010|88082|8083|3|35|37452.80|0.10|0.01|A|F|1995-02-06|1995-02-18|1995-03-04|TAKE BACK RETURN|FOB|uctions use. express requests | +4010|181239|8794|4|36|47528.28|0.08|0.00|A|F|1994-12-14|1995-02-10|1994-12-28|NONE|SHIP|pendencies. fur| +4010|77413|4935|5|41|57006.81|0.10|0.03|A|F|1995-04-03|1995-02-18|1995-04-21|DELIVER IN PERSON|MAIL|r deposits wake caref| +4011|17206|9708|1|32|35942.40|0.07|0.02|N|O|1997-02-21|1997-01-09|1997-03-10|NONE|TRUCK|ully ironic sheaves use al| +4012|160720|5753|1|23|40956.56|0.09|0.07|R|F|1992-08-15|1992-08-08|1992-08-24|TAKE BACK RETURN|RAIL|ully about the even, permanent deposits.| +4012|8930|3931|2|4|7355.72|0.08|0.06|A|F|1992-09-12|1992-09-07|1992-09-16|DELIVER IN PERSON|SHIP|ctions cajole blithely against t| +4012|84831|4832|3|37|67185.71|0.06|0.05|R|F|1992-09-13|1992-09-07|1992-09-19|NONE|RAIL|eas. regular notornis n| +4012|149809|4838|4|5|9294.00|0.06|0.02|A|F|1992-07-10|1992-08-25|1992-07-30|NONE|FOB|y against the final requests. blithe| +4013|77389|9897|1|44|60120.72|0.06|0.01|A|F|1993-10-20|1993-10-11|1993-11-16|TAKE BACK RETURN|SHIP|blithely special | +4014|15229|232|1|25|28605.50|0.02|0.05|A|F|1993-11-17|1994-01-11|1993-12-06|DELIVER IN PERSON|REG AIR|. foxes cajole| +4015|182975|5494|1|36|74086.92|0.02|0.00|A|F|1992-10-15|1992-11-05|1992-10-24|NONE|FOB| even deposits. special packa| +4015|46781|6782|2|16|27644.48|0.00|0.06|R|F|1992-12-02|1992-10-22|1992-12-23|TAKE BACK RETURN|TRUCK|even decoys affix| +4015|39922|7432|3|18|33514.56|0.09|0.08|R|F|1992-09-21|1992-10-15|1992-10-06|DELIVER IN PERSON|SHIP|al deposits. bl| +4040|41374|1375|1|15|19730.55|0.05|0.07|N|O|1998-08-19|1998-08-13|1998-09-13|DELIVER IN PERSON|AIR| ironic asymptotes | +4040|172646|198|2|33|56715.12|0.10|0.06|N|O|1998-10-17|1998-10-02|1998-10-24|COLLECT COD|FOB|ag requests. reque| +4040|56851|1862|3|45|81353.25|0.09|0.04|N|O|1998-08-07|1998-08-25|1998-08-22|TAKE BACK RETURN|REG AIR|lent theodolites. slyly bold | +4041|169958|2475|1|43|87201.85|0.06|0.00|R|F|1994-01-04|1993-11-22|1994-01-25|NONE|REG AIR|y deposits. final courts beside| +4041|83896|8913|2|15|28198.35|0.07|0.07|A|F|1993-11-19|1993-12-07|1993-12-10|NONE|RAIL|requests. carefully special de| +4041|34224|6728|3|44|50961.68|0.08|0.07|R|F|1993-10-22|1993-11-29|1993-11-04|DELIVER IN PERSON|TRUCK|s instructions | +4041|198662|6220|4|8|14085.28|0.05|0.04|A|F|1994-01-22|1993-11-15|1994-02-12|TAKE BACK RETURN|REG AIR|osits affi| +4041|99305|4324|5|13|16955.90|0.02|0.00|A|F|1993-12-15|1993-11-10|1994-01-03|NONE|AIR|lar accounts snooze. doggedly | +4042|58743|8744|1|39|66367.86|0.06|0.01|A|F|1992-07-27|1992-09-07|1992-08-13|COLLECT COD|RAIL|ged warhorses sleep blithel| +4042|77396|2411|2|7|9613.73|0.09|0.07|A|F|1992-08-29|1992-07-30|1992-08-30|COLLECT COD|FOB|he slyly even deposits. fluffily fin| +4042|179903|2421|3|42|83281.80|0.09|0.03|A|F|1992-08-18|1992-08-01|1992-09-11|DELIVER IN PERSON|AIR|ideas. packages use carefully sl| +4042|24644|9649|4|25|39216.00|0.02|0.04|A|F|1992-07-16|1992-08-09|1992-07-24|NONE|FOB|structions boost. blithel| +4042|186202|6203|5|9|11593.80|0.03|0.04|A|F|1992-09-24|1992-08-24|1992-10-12|DELIVER IN PERSON|AIR|nic pinto beans boost carefully amo| +4042|86807|6808|6|20|35876.00|0.03|0.07|R|F|1992-07-22|1992-08-14|1992-08-14|COLLECT COD|REG AIR| deposits. pending, silent packages | +4043|3048|8049|1|5|4755.20|0.05|0.05|R|F|1992-03-25|1992-04-12|1992-04-22|COLLECT COD|SHIP|uffily regular foxes beli| +4043|17667|5171|2|22|34862.52|0.08|0.04|A|F|1992-03-17|1992-04-10|1992-03-28|COLLECT COD|FOB|thely above the slyly| +4043|128215|5752|3|26|32323.46|0.08|0.03|R|F|1992-05-02|1992-04-15|1992-05-07|NONE|TRUCK|ully. ironic packages integrate blithel| +4043|93901|1429|4|41|77690.90|0.05|0.01|A|F|1992-03-20|1992-03-07|1992-03-23|TAKE BACK RETURN|REG AIR|ses. expre| +4043|190480|3000|5|31|48684.88|0.05|0.02|A|F|1992-05-08|1992-03-26|1992-05-17|NONE|MAIL|nstruction| +4044|28577|3582|1|37|55706.09|0.03|0.00|A|F|1993-08-06|1993-09-23|1993-08-14|TAKE BACK RETURN|RAIL|ress, pend| +4045|113058|3059|1|25|26776.25|0.00|0.04|N|O|1995-11-26|1995-11-27|1995-12-15|DELIVER IN PERSON|SHIP|quests ought| +4045|162986|2987|2|42|86057.16|0.02|0.03|N|O|1995-12-20|1995-12-25|1995-12-27|NONE|MAIL|s. carefully express pinto beans a| +4045|100153|7684|3|17|19603.55|0.10|0.07|N|O|1995-10-28|1995-11-24|1995-11-24|TAKE BACK RETURN|SHIP|equests are even | +4046|116436|3970|1|23|33405.89|0.08|0.06|N|O|1996-11-13|1997-01-09|1996-12-07|DELIVER IN PERSON|MAIL|refully alongside of the blithely ironi| +4046|127520|33|2|1|1547.52|0.06|0.04|N|O|1997-02-09|1997-01-10|1997-02-18|DELIVER IN PERSON|RAIL|thely silent pa| +4046|25566|5567|3|24|35797.44|0.08|0.02|N|O|1996-12-11|1996-12-26|1996-12-27|DELIVER IN PERSON|REG AIR|s. idly even accounts cajole along the bl| +4046|75829|3351|4|42|75802.44|0.06|0.02|N|O|1997-01-08|1996-12-26|1997-01-10|NONE|MAIL|e: even instructions | +4046|57743|5259|5|28|47620.72|0.00|0.06|N|O|1996-12-24|1996-12-24|1996-12-31|COLLECT COD|FOB| cajole furiously about the furiousl| +4046|80375|7900|6|47|63702.39|0.08|0.06|N|O|1996-11-25|1997-01-07|1996-12-15|NONE|RAIL|ccounts. pending packages nag furiously. b| +4046|47765|2774|7|21|35967.96|0.02|0.01|N|O|1996-12-22|1996-12-15|1997-01-15|NONE|RAIL|yly carefully unusual courts. unusual instr| +4047|183943|1498|1|49|99320.06|0.03|0.05|N|O|1998-10-14|1998-09-23|1998-11-07|DELIVER IN PERSON|AIR| across the carefully close reque| +4047|128677|3702|2|4|6822.68|0.08|0.08|N|O|1998-09-23|1998-09-02|1998-10-22|TAKE BACK RETURN|SHIP|ly across the slyly silen| +4047|60075|7594|3|46|47613.22|0.06|0.00|N|O|1998-07-28|1998-09-07|1998-08-27|NONE|MAIL| theodolites are furiously sometimes fin| +4072|162274|4791|1|18|24052.86|0.04|0.01|N|O|1995-06-19|1995-04-10|1995-07-03|NONE|TRUCK|ges. even, bold accounts do boost f| +4072|133653|3654|2|48|80959.20|0.00|0.07|N|F|1995-06-09|1995-05-12|1995-06-28|DELIVER IN PERSON|MAIL|counts. regular packages caj| +4072|99012|6540|3|1|1011.01|0.03|0.08|R|F|1995-04-24|1995-05-08|1995-05-05|TAKE BACK RETURN|FOB|ide of the qui| +4072|81661|4170|4|21|34495.86|0.01|0.03|A|F|1995-05-28|1995-05-23|1995-06-09|COLLECT COD|RAIL|efully. slyly express | +4072|67642|7643|5|27|43460.28|0.06|0.04|R|F|1995-04-15|1995-03-31|1995-04-29|TAKE BACK RETURN|AIR|ar pinto beans| +4072|57729|7730|6|11|18553.92|0.01|0.07|N|F|1995-06-10|1995-05-23|1995-07-06|NONE|TRUCK| the furiously final | +4073|22235|2236|1|32|37031.36|0.02|0.07|A|F|1992-12-21|1992-12-04|1993-01-03|TAKE BACK RETURN|SHIP|e theodolites boost blithely| +4073|102749|2750|2|2|3503.48|0.08|0.02|A|F|1992-11-05|1992-11-17|1992-11-11|TAKE BACK RETURN|FOB|l accounts. slyly| +4073|101617|9148|3|33|53414.13|0.01|0.05|A|F|1992-11-29|1992-12-24|1992-12-20|TAKE BACK RETURN|TRUCK|ly ironic | +4073|63113|3114|4|19|20446.09|0.05|0.00|R|F|1993-01-18|1992-11-22|1993-01-30|TAKE BACK RETURN|MAIL|careful, regular deposits. | +4073|124298|6811|5|1|1322.29|0.00|0.05|A|F|1992-11-12|1992-11-12|1992-12-12|NONE|AIR|inst the quickly regular dep| +4073|61473|3980|6|9|12910.23|0.08|0.03|A|F|1992-10-12|1992-12-14|1992-11-04|DELIVER IN PERSON|REG AIR| waters among the furiously final theodolit| +4074|54653|4654|1|24|38583.60|0.06|0.06|N|O|1996-09-21|1996-09-13|1996-10-16|TAKE BACK RETURN|SHIP|ven tithes haggle. clos| +4075|80673|5690|1|49|81029.83|0.10|0.01|N|O|1996-06-21|1996-05-13|1996-07-07|DELIVER IN PERSON|FOB|o beans. even, re| +4075|70067|7589|2|11|11407.66|0.04|0.05|N|O|1996-04-16|1996-07-02|1996-05-08|NONE|RAIL|ing theodolites| +4075|8277|778|3|10|11852.70|0.08|0.07|N|O|1996-04-16|1996-06-29|1996-04-18|DELIVER IN PERSON|AIR|y slow foxes nag carefully into the ironi| +4075|100251|5272|4|7|8758.75|0.06|0.04|N|O|1996-06-22|1996-06-10|1996-07-15|DELIVER IN PERSON|SHIP|ong the ironic pains. neve| +4076|178800|8801|1|9|16909.20|0.07|0.01|A|F|1994-11-08|1994-10-25|1994-11-30|TAKE BACK RETURN|MAIL|xcuses after th| +4076|83390|3391|2|50|68669.50|0.07|0.04|A|F|1994-11-04|1994-10-04|1994-11-17|NONE|SHIP| cajole even the| +4077|113465|5977|1|7|10349.22|0.05|0.06|N|O|1997-12-01|1997-10-22|1997-12-23|TAKE BACK RETURN|TRUCK|final foxes| +4077|559|5560|2|35|51084.25|0.03|0.08|N|O|1997-10-12|1997-11-20|1997-10-19|NONE|SHIP| foxes. car| +4077|193682|8721|3|6|10654.08|0.06|0.01|N|O|1997-09-04|1997-09-30|1997-09-15|COLLECT COD|TRUCK|ades haggle regularly slyly i| +4077|198212|732|4|32|41926.72|0.07|0.01|N|O|1997-10-17|1997-10-01|1997-10-30|NONE|RAIL|ts haggle. ironic, even sentiments a| +4077|146260|1289|5|40|52250.40|0.03|0.00|N|O|1997-10-08|1997-09-30|1997-10-11|NONE|TRUCK|ithely ironic foxes can sl| +4078|40566|3071|1|30|45196.80|0.07|0.01|N|O|1997-06-04|1997-04-30|1997-06-08|NONE|RAIL|lithely ironic requests| +4078|189876|7431|2|36|70771.32|0.03|0.04|N|O|1997-06-23|1997-04-29|1997-06-30|COLLECT COD|FOB|uses cajole over the slyly special dug| +4078|36615|4125|3|25|38790.25|0.01|0.07|N|O|1997-06-17|1997-06-11|1997-07-10|COLLECT COD|SHIP|uffily final deposits. fur| +4079|198711|6269|1|6|10858.26|0.08|0.04|N|O|1997-10-25|1997-10-08|1997-10-31|DELIVER IN PERSON|TRUCK|even instructions| +4079|135211|5212|2|35|43617.35|0.09|0.05|N|O|1997-10-23|1997-09-08|1997-11-01|TAKE BACK RETURN|SHIP|xes haggle since the rut| +4079|83464|3465|3|49|70925.54|0.04|0.04|N|O|1997-08-06|1997-09-20|1997-08-12|NONE|MAIL|s alongside of the quickly p| +4079|165933|966|4|43|85953.99|0.10|0.08|N|O|1997-09-17|1997-10-13|1997-10-14|NONE|RAIL|e packages: slyly even id| +4079|28193|5700|5|42|47089.98|0.07|0.05|N|O|1997-10-26|1997-09-01|1997-11-18|TAKE BACK RETURN|TRUCK| slyly against the final, unusual| +4079|28062|565|6|5|4950.30|0.10|0.04|N|O|1997-07-29|1997-09-18|1997-08-05|NONE|TRUCK|tly regular packages. quickly unusua| +4079|22342|9849|7|16|20229.44|0.09|0.05|N|O|1997-09-17|1997-09-24|1997-10-02|COLLECT COD|MAIL|ously bold | +4104|90741|8269|1|26|45025.24|0.08|0.02|N|O|1996-08-02|1996-07-11|1996-08-25|DELIVER IN PERSON|AIR|se carefully carefully ironic re| +4105|16567|9069|1|25|37089.00|0.05|0.01|R|F|1992-04-18|1992-04-29|1992-05-16|TAKE BACK RETURN|AIR|gular requests. furiously even frays afte| +4106|176209|6210|1|32|41126.40|0.09|0.01|N|O|1998-06-15|1998-05-20|1998-06-28|NONE|REG AIR|bold requests. | +4107|191647|9205|1|40|69545.60|0.06|0.07|N|O|1997-11-28|1997-11-10|1997-12-12|TAKE BACK RETURN|AIR|uickly final packages | +4107|199552|7110|2|44|72668.20|0.06|0.05|N|O|1997-12-11|1997-10-15|1997-12-17|COLLECT COD|REG AIR|ole enticingly regular pinto beans. care| +4107|61700|9219|3|42|69791.40|0.05|0.00|N|O|1997-11-29|1997-10-17|1997-12-11|DELIVER IN PERSON|TRUCK|packages. unusual foxes slee| +4107|175841|3393|4|30|57505.20|0.03|0.05|N|O|1997-11-22|1997-11-21|1997-12-15|NONE|AIR|sly unusual packages. silent deposits| +4107|145142|171|5|34|40362.76|0.09|0.01|N|O|1998-01-01|1997-10-10|1998-01-12|COLLECT COD|MAIL|its. furiously even asympt| +4107|186943|9462|6|10|20299.40|0.00|0.08|N|O|1997-10-29|1997-11-06|1997-11-06|DELIVER IN PERSON|TRUCK|y special accounts un| +4108|132027|7054|1|4|4236.08|0.04|0.00|N|O|1998-03-16|1998-01-31|1998-03-19|DELIVER IN PERSON|SHIP|lar theodolites. fu| +4108|173793|8828|2|25|46669.75|0.01|0.01|N|O|1998-02-13|1998-02-14|1998-02-21|COLLECT COD|REG AIR|inal accounts | +4109|127769|7770|1|34|61089.84|0.02|0.03|A|F|1995-02-21|1995-04-01|1995-03-03|NONE|AIR| idle, unusual packages according t| +4109|198974|8975|2|36|74626.92|0.04|0.02|A|F|1995-05-06|1995-03-16|1995-06-04|NONE|FOB|ng to the carefully ironic theodolites.| +4109|148742|6285|3|30|53722.20|0.04|0.01|A|F|1995-03-31|1995-02-09|1995-04-01|DELIVER IN PERSON|REG AIR|oxes hang blithely according to the even| +4110|51455|1456|1|45|63290.25|0.06|0.05|N|O|1997-03-21|1997-05-18|1997-04-10|COLLECT COD|TRUCK|accounts. dep| +4110|198799|8800|2|4|7591.16|0.07|0.06|N|O|1997-04-26|1997-05-31|1997-05-17|DELIVER IN PERSON|RAIL|ic accounts t| +4110|5573|8074|3|1|1478.57|0.09|0.02|N|O|1997-06-06|1997-04-13|1997-06-29|DELIVER IN PERSON|AIR| dependencies | +4110|56028|6029|4|16|15744.32|0.00|0.00|N|O|1997-03-23|1997-05-05|1997-04-21|TAKE BACK RETURN|SHIP|eans. quickly bold deposits are.| +4110|53509|8520|5|11|16087.50|0.03|0.00|N|O|1997-05-03|1997-04-28|1997-05-15|NONE|TRUCK|nd the slyly ironic theodolites cajole bli| +4111|97763|5291|1|46|80994.96|0.02|0.03|N|O|1997-04-18|1997-04-06|1997-04-25|COLLECT COD|TRUCK|n doze carefully. bol| +4111|94515|9534|2|23|34718.73|0.02|0.05|N|O|1997-03-30|1997-04-13|1997-04-02|COLLECT COD|TRUCK|s sleep careful| +4111|97877|387|3|48|89993.76|0.10|0.04|N|O|1997-01-28|1997-04-09|1997-02-24|DELIVER IN PERSON|RAIL|mong the slyly ironic accou| +4111|8242|5743|4|41|47159.84|0.05|0.07|N|O|1997-04-30|1997-04-05|1997-05-17|NONE|AIR|furiously. | +4111|112447|9981|5|26|37945.44|0.09|0.00|N|O|1997-03-03|1997-03-07|1997-04-02|COLLECT COD|TRUCK|sly final request| +4111|88441|3458|6|13|18582.72|0.05|0.01|N|O|1997-05-03|1997-02-27|1997-06-01|NONE|MAIL|the furiously bold pac| +4136|131635|6662|1|9|14999.67|0.10|0.07|N|O|1996-06-06|1996-04-15|1996-06-28|COLLECT COD|REG AIR|yly expres| +4136|175774|809|2|19|35145.63|0.02|0.00|N|O|1996-06-18|1996-05-09|1996-07-05|NONE|REG AIR|ts sleep furiously along the daring| +4136|22325|4828|3|38|47398.16|0.06|0.08|N|O|1996-06-27|1996-05-29|1996-07-21|NONE|RAIL|integrate carefully blithe| +4136|12937|2938|4|22|40698.46|0.06|0.01|N|O|1996-04-26|1996-05-11|1996-05-04|DELIVER IN PERSON|MAIL|ites. furiously even packages cajole| +4136|17370|9872|5|42|54069.54|0.01|0.04|N|O|1996-04-19|1996-04-06|1996-05-13|TAKE BACK RETURN|TRUCK|requests haggle. | +4137|173478|1030|1|17|26374.99|0.10|0.02|A|F|1993-02-17|1992-12-16|1993-03-16|COLLECT COD|MAIL|s wake slyly accounts. quickly regular i| +4137|35191|7695|2|45|50678.55|0.02|0.06|A|F|1992-12-02|1992-12-16|1992-12-24|NONE|RAIL| slyly reg| +4137|49660|9661|3|45|72434.70|0.08|0.02|A|F|1993-01-30|1992-11-27|1993-02-10|TAKE BACK RETURN|MAIL| to the furiously bold | +4138|40589|5598|1|5|7647.90|0.06|0.02|N|O|1995-08-29|1995-08-30|1995-09-24|NONE|FOB|he platelets.| +4138|178067|8068|2|21|24046.26|0.02|0.07|N|O|1995-08-03|1995-09-11|1995-08-10|NONE|FOB|e of the carefully express| +4139|30494|495|1|50|71224.50|0.09|0.01|A|F|1994-08-22|1994-08-27|1994-09-03|TAKE BACK RETURN|MAIL|y even pac| +4140|81252|6269|1|47|57962.75|0.08|0.04|R|F|1992-01-30|1992-02-14|1992-02-25|COLLECT COD|AIR|gular pinto beans doze furi| +4140|1180|1181|2|7|7568.26|0.04|0.01|A|F|1992-04-05|1992-02-11|1992-04-19|DELIVER IN PERSON|FOB|ully express deposits ca| +4140|31917|4421|3|7|12942.37|0.01|0.07|A|F|1992-02-02|1992-03-22|1992-02-24|COLLECT COD|TRUCK|l, regular forges wake. carefully | +4140|18856|1358|4|11|19523.35|0.09|0.06|A|F|1992-01-31|1992-03-29|1992-02-14|DELIVER IN PERSON|RAIL|ependencies. final dugouts eat slyly p| +4140|112452|2453|5|8|11715.60|0.05|0.04|A|F|1992-04-15|1992-02-15|1992-05-14|TAKE BACK RETURN|RAIL|. carefully regula| +4140|180113|5150|6|25|29827.75|0.00|0.04|R|F|1992-03-18|1992-02-07|1992-04-02|TAKE BACK RETURN|REG AIR| express sa| +4141|87895|5420|1|27|50838.03|0.04|0.01|N|O|1998-01-17|1997-11-21|1998-02-16|TAKE BACK RETURN|REG AIR|ending dependencies n| +4141|36499|6500|2|37|53113.13|0.06|0.06|N|O|1998-01-20|1997-12-21|1998-01-26|DELIVER IN PERSON|FOB|arefully behind the requests. even deposi| +4141|31531|1532|3|47|68738.91|0.07|0.06|N|O|1997-11-14|1997-12-31|1997-12-12|DELIVER IN PERSON|RAIL|waters sleep after t| +4142|18307|3310|1|36|44110.80|0.06|0.04|A|F|1994-10-16|1994-11-03|1994-11-08|NONE|RAIL| ironic asy| +4142|71725|6740|2|44|74655.68|0.05|0.00|R|F|1994-11-01|1994-11-17|1994-11-20|TAKE BACK RETURN|FOB|xes. daringly ironic fo| +4142|77510|7511|3|34|50575.34|0.04|0.02|A|F|1994-09-24|1994-11-21|1994-10-02|DELIVER IN PERSON|AIR|e ironic, ironic requests cajole| +4142|97869|2888|4|15|28002.90|0.06|0.01|A|F|1994-10-22|1994-11-15|1994-10-26|TAKE BACK RETURN|AIR|fluffily slyly final foxes. permanent| +4142|80080|7605|5|25|26502.00|0.01|0.00|A|F|1994-12-04|1994-11-01|1994-12-08|TAKE BACK RETURN|RAIL|he blithely| +4143|147555|2584|1|42|67307.10|0.10|0.03|R|F|1995-02-03|1995-03-10|1995-02-06|NONE|REG AIR|regular packages cajole furiously| +4143|148462|8463|2|27|40782.42|0.01|0.00|A|F|1995-05-11|1995-03-14|1995-06-10|DELIVER IN PERSON|TRUCK|g the final accounts. silently regul| +4143|187722|2759|3|26|47052.72|0.08|0.07|R|F|1995-05-04|1995-04-04|1995-05-12|NONE|FOB| the quickly final pinto| +4168|19244|9245|1|8|9305.92|0.05|0.07|N|O|1997-08-01|1997-07-14|1997-08-30|NONE|REG AIR| print fluffily furiously final | +4168|18735|6239|2|35|57880.55|0.05|0.08|N|O|1997-05-26|1997-08-03|1997-06-01|DELIVER IN PERSON|FOB|usual accoun| +4168|79069|9070|3|24|25153.44|0.09|0.01|N|O|1997-08-30|1997-07-26|1997-09-27|TAKE BACK RETURN|RAIL|sits haggle sometimes alongside of the f| +4168|110607|3119|4|31|50145.60|0.06|0.01|N|O|1997-08-28|1997-07-16|1997-09-24|DELIVER IN PERSON|FOB|gside of the iron| +4168|168226|743|5|11|14236.42|0.08|0.05|N|O|1997-06-22|1997-07-29|1997-06-26|COLLECT COD|RAIL|e sly plat| +4168|171549|9101|6|1|1620.54|0.10|0.07|N|O|1997-07-06|1997-06-30|1997-08-05|NONE|SHIP|across the f| +4169|51204|6215|1|34|39276.80|0.03|0.02|N|O|1998-10-26|1998-09-25|1998-11-12|TAKE BACK RETURN|MAIL|y quickly pending requests. regular ide| +4169|179259|9260|2|47|62897.75|0.08|0.08|N|O|1998-10-06|1998-09-25|1998-10-22|DELIVER IN PERSON|SHIP|y even accounts po| +4169|196322|6323|3|13|18438.16|0.02|0.02|N|O|1998-10-15|1998-08-20|1998-11-11|DELIVER IN PERSON|REG AIR|requests cajole blith| +4169|180198|7753|4|48|61353.12|0.00|0.06|N|O|1998-10-22|1998-08-09|1998-11-01|TAKE BACK RETURN|TRUCK| sleep even asymptotes. | +4169|186783|9302|5|24|44874.72|0.00|0.02|N|O|1998-08-01|1998-08-26|1998-08-22|DELIVER IN PERSON|REG AIR|es. slyly final mu| +4170|75199|2721|1|17|19961.23|0.10|0.05|N|O|1998-08-13|1998-09-23|1998-09-08|TAKE BACK RETURN|SHIP|s are slyly deposits. pending escapades | +4170|55603|5604|2|41|63902.60|0.02|0.08|N|O|1998-07-16|1998-09-24|1998-08-06|COLLECT COD|SHIP|furiously even pinto be| +4171|185676|3231|1|36|63420.12|0.03|0.04|R|F|1992-06-18|1992-07-07|1992-06-28|DELIVER IN PERSON|SHIP|sly special dependencies. even, final | +4171|56009|6010|2|36|34740.00|0.03|0.04|R|F|1992-06-05|1992-05-26|1992-06-27|DELIVER IN PERSON|RAIL| deposits haggle after the| +4171|141290|3805|3|33|43932.57|0.09|0.01|R|F|1992-06-05|1992-05-26|1992-07-05|DELIVER IN PERSON|TRUCK|g foxes. carefully u| +4171|49408|4417|4|49|66512.60|0.03|0.04|A|F|1992-04-26|1992-07-01|1992-05-24|DELIVER IN PERSON|REG AIR|refully special| +4171|186463|4018|5|49|75923.54|0.01|0.05|A|F|1992-07-08|1992-05-23|1992-07-18|COLLECT COD|MAIL|regular accounts. fox| +4171|76320|8828|6|8|10370.56|0.02|0.06|A|F|1992-08-13|1992-06-03|1992-08-23|NONE|SHIP|blithely even request| +4172|115265|5266|1|48|61452.48|0.07|0.00|R|F|1995-05-10|1995-05-02|1995-05-14|DELIVER IN PERSON|RAIL|about the f| +4172|47958|5471|2|14|26683.30|0.06|0.06|R|F|1995-04-18|1995-05-10|1995-05-17|DELIVER IN PERSON|RAIL|he packages| +4172|26524|1529|3|3|4351.56|0.05|0.00|N|F|1995-06-13|1995-04-01|1995-06-29|NONE|SHIP| the dolphins: slyly pending| +4172|181064|3583|4|40|45802.40|0.06|0.04|N|O|1995-06-29|1995-04-10|1995-07-19|NONE|SHIP|n theodolites; sly| +4172|128019|5556|5|45|47115.45|0.00|0.07|R|F|1995-05-22|1995-04-22|1995-05-25|TAKE BACK RETURN|MAIL|es. fluffily ev| +4172|6557|1558|6|6|8781.30|0.08|0.04|R|F|1995-03-09|1995-05-11|1995-03-28|COLLECT COD|RAIL|lithely ironic pac| +4172|194560|4561|7|30|49636.80|0.07|0.00|R|F|1995-04-08|1995-04-23|1995-04-12|COLLECT COD|AIR|bold pinto beans alongside| +4173|155580|5581|1|47|76872.26|0.00|0.00|N|O|1997-05-22|1997-06-06|1997-06-02|NONE|SHIP|quick foxes haggle. accounts cajole slyly | +4174|98911|1421|1|8|15279.28|0.03|0.01|A|F|1993-04-11|1993-02-11|1993-04-23|NONE|AIR|ccounts hagg| +4174|183101|8138|2|14|16577.40|0.02|0.08|R|F|1993-01-04|1993-02-14|1993-01-27|NONE|AIR|lyly final, final packages. bold, iro| +4174|168867|6416|3|42|81306.12|0.05|0.07|R|F|1993-01-11|1993-02-09|1993-01-25|DELIVER IN PERSON|SHIP| across the| +4174|132411|4925|4|29|41858.89|0.00|0.07|R|F|1993-01-28|1993-01-29|1993-02-15|COLLECT COD|TRUCK| bold deposits above the car| +4174|24451|6954|5|43|59144.35|0.07|0.06|A|F|1992-12-13|1993-02-09|1992-12-21|DELIVER IN PERSON|SHIP|odolites. fluffil| +4175|189742|7297|1|32|58615.68|0.09|0.01|A|F|1994-01-30|1993-12-29|1994-02-15|DELIVER IN PERSON|AIR|ickly unusual foxes. even accounts hinder | +4175|182065|2066|2|9|10323.54|0.05|0.01|R|F|1994-01-20|1993-11-29|1994-02-12|COLLECT COD|AIR|inal, final requests use c| +4175|153620|3621|3|43|71965.66|0.07|0.06|A|F|1993-11-09|1993-12-07|1993-11-29|NONE|AIR| regular requests. never i| +4175|88390|5915|4|39|53757.21|0.08|0.00|R|F|1994-01-22|1993-12-20|1994-01-28|DELIVER IN PERSON|REG AIR|pending asymptotes. silently express depo| +4200|145574|603|1|43|69641.51|0.07|0.08|N|O|1998-04-20|1998-06-05|1998-05-12|COLLECT COD|RAIL| according| +4200|45611|3124|2|44|68490.84|0.00|0.05|N|O|1998-05-08|1998-05-30|1998-05-30|NONE|REG AIR|the carefully bold dependencies! asymptotes| +4200|171007|1008|3|45|48510.00|0.05|0.03|N|O|1998-06-03|1998-07-13|1998-06-23|COLLECT COD|SHIP|hely express ins| +4200|110966|5989|4|30|59308.80|0.04|0.04|N|O|1998-08-09|1998-06-22|1998-08-10|COLLECT COD|RAIL|lites haggle alongsi| +4201|60246|2753|1|49|59105.76|0.09|0.08|N|O|1997-05-16|1997-04-27|1997-05-20|COLLECT COD|FOB|nto beans. carefully ironic accoun| +4201|143778|6293|2|21|38257.17|0.10|0.01|N|O|1997-07-05|1997-04-11|1997-07-19|DELIVER IN PERSON|REG AIR|ajole slowly. theodolites haggle blithel| +4201|76552|1567|3|1|1528.55|0.03|0.06|N|O|1997-07-01|1997-06-06|1997-07-04|TAKE BACK RETURN|REG AIR|ithely. special, bold inst| +4201|5117|2618|4|25|25552.75|0.00|0.06|N|O|1997-06-07|1997-05-28|1997-06-25|NONE|TRUCK|s, regular accounts accordi| +4201|186269|8788|5|9|12197.34|0.04|0.06|N|O|1997-04-02|1997-05-06|1997-04-18|DELIVER IN PERSON|SHIP|riously fluffily pendi| +4201|15429|2933|6|15|20166.30|0.04|0.02|N|O|1997-05-14|1997-05-04|1997-06-11|TAKE BACK RETURN|TRUCK|earls must | +4201|106363|8874|7|1|1369.36|0.02|0.00|N|O|1997-05-13|1997-05-05|1997-06-02|NONE|RAIL|s instead of the final the| +4202|33109|3110|1|19|19799.90|0.04|0.07|A|F|1994-01-09|1994-03-14|1994-02-01|TAKE BACK RETURN|TRUCK|sublate ca| +4202|52432|4938|2|37|51223.91|0.03|0.01|A|F|1994-04-13|1994-02-10|1994-04-15|DELIVER IN PERSON|RAIL|ironic, final in| +4202|12880|2881|3|48|86058.24|0.08|0.06|A|F|1994-01-19|1994-01-28|1994-01-27|NONE|AIR|ly express instructions haggle quickly.| +4203|47837|7838|1|38|67823.54|0.00|0.01|N|O|1997-10-06|1997-10-11|1997-10-24|COLLECT COD|AIR|ges. final requests nag carefully care| +4203|192822|380|2|49|93826.18|0.00|0.03|N|O|1997-09-17|1997-11-10|1997-10-04|TAKE BACK RETURN|TRUCK|e furiously express asymptotes-- | +4203|144816|9845|3|36|66989.16|0.01|0.00|N|O|1997-12-20|1997-11-09|1998-01-05|TAKE BACK RETURN|RAIL|g somas about t| +4204|154978|4979|1|30|60989.10|0.03|0.01|R|F|1994-07-24|1994-06-28|1994-08-16|TAKE BACK RETURN|FOB|s doubt blithely sly deposits. blithe depos| +4204|99944|4963|2|33|64150.02|0.08|0.00|A|F|1994-08-04|1994-06-11|1994-08-23|TAKE BACK RETURN|AIR|accounts nag about the pending, fin| +4204|150951|3467|3|39|78076.05|0.05|0.03|A|F|1994-06-24|1994-07-15|1994-07-23|DELIVER IN PERSON|REG AIR|yly ironic deposits integrate a| +4204|20043|2546|4|49|47188.96|0.02|0.05|A|F|1994-08-25|1994-06-13|1994-09-10|DELIVER IN PERSON|MAIL|ronic instructions haggle carefully | +4204|56255|8761|5|34|41182.50|0.07|0.03|A|F|1994-06-22|1994-08-02|1994-07-08|DELIVER IN PERSON|FOB|aring packages slee| +4205|130293|7833|1|4|5293.16|0.10|0.07|A|F|1994-06-22|1994-09-04|1994-07-12|TAKE BACK RETURN|FOB|onic, express requ| +4205|24000|4001|2|17|15708.00|0.00|0.06|R|F|1994-09-23|1994-08-13|1994-10-12|COLLECT COD|SHIP|ns after the bold instructi| +4205|159952|9953|3|38|76454.10|0.10|0.01|A|F|1994-07-22|1994-08-22|1994-08-13|DELIVER IN PERSON|TRUCK| platelets across the furiously final r| +4206|166138|3687|1|32|38532.16|0.02|0.00|N|O|1998-02-11|1998-01-07|1998-02-21|COLLECT COD|FOB|l foxes cajole quickly.| +4206|78704|8705|2|44|74038.80|0.01|0.08|N|O|1998-02-02|1998-02-01|1998-02-18|NONE|TRUCK| pinto beans are | +4206|176404|3956|3|11|16284.40|0.04|0.04|N|O|1998-01-06|1998-01-11|1998-01-27|COLLECT COD|REG AIR|enly regular packages along the eve| +4207|103068|599|1|34|36416.04|0.03|0.04|A|F|1992-07-18|1992-08-27|1992-08-15|COLLECT COD|MAIL|nding packages are slyly. pinto beans | +4207|56531|6532|2|11|16362.83|0.03|0.01|R|F|1992-08-18|1992-07-18|1992-08-27|DELIVER IN PERSON|TRUCK|reach blithely express requests. even instr| +4207|111904|6927|3|33|63224.70|0.10|0.04|R|F|1992-06-13|1992-07-14|1992-06-14|COLLECT COD|SHIP| carefully. | +4207|166460|8977|4|37|56479.02|0.10|0.05|A|F|1992-09-10|1992-07-23|1992-09-12|NONE|SHIP|ly dogged | +4207|86297|8806|5|23|29515.67|0.07|0.05|R|F|1992-09-12|1992-07-29|1992-10-05|TAKE BACK RETURN|SHIP|kages poach theodolites. furiously regu| +4232|152256|9802|1|37|48405.25|0.05|0.06|N|O|1997-06-25|1997-08-31|1997-07-17|NONE|REG AIR|ly alongside of the deposits.| +4232|159483|7029|2|39|60156.72|0.03|0.02|N|O|1997-08-16|1997-08-11|1997-09-09|NONE|FOB|ily regular packages.| +4233|5928|929|1|2|3667.84|0.10|0.03|N|O|1996-12-19|1996-09-30|1996-12-27|NONE|AIR|thless requests haggle acco| +4233|28822|8823|2|47|82288.54|0.10|0.05|N|O|1996-09-05|1996-10-27|1996-09-25|COLLECT COD|FOB|furiously ironic foxes. | +4234|198912|6470|1|17|34185.47|0.08|0.02|N|O|1996-03-25|1996-03-01|1996-04-05|TAKE BACK RETURN|FOB|usily regular deposits. close dep| +4234|106388|1409|2|11|15338.18|0.08|0.03|N|O|1995-12-28|1996-03-19|1996-01-10|COLLECT COD|REG AIR|l requests sleep furiously? carefully| +4234|59555|2061|3|28|42407.40|0.01|0.07|N|O|1996-02-24|1996-03-01|1996-02-28|TAKE BACK RETURN|SHIP|to the furiously | +4235|170997|3515|1|25|51699.75|0.07|0.00|R|F|1993-01-07|1993-01-04|1993-01-18|COLLECT COD|REG AIR|are carefully blithely final deposits. fi| +4235|144030|6545|2|24|25776.72|0.00|0.07|R|F|1993-02-09|1993-02-18|1993-03-08|NONE|RAIL|e. slyly ironic hockey players | +4235|100076|5097|3|11|11836.77|0.02|0.08|A|F|1992-12-23|1993-01-21|1992-12-27|DELIVER IN PERSON|FOB|ate blithely. furiously ironic requests ser| +4235|167101|9618|4|8|9344.80|0.09|0.04|A|F|1992-12-18|1993-02-11|1993-01-01|COLLECT COD|AIR|nusual idea| +4235|65208|221|5|12|14078.40|0.03|0.01|A|F|1993-01-27|1993-01-06|1993-01-29|NONE|FOB|to cajole fluffily slyly even foxes. sl| +4235|135072|2612|6|22|24355.54|0.04|0.02|A|F|1993-03-21|1993-01-21|1993-04-16|TAKE BACK RETURN|AIR|usly regular pinto beans| +4235|144334|1877|7|11|15161.63|0.08|0.02|R|F|1992-11-30|1993-02-13|1992-12-10|COLLECT COD|MAIL|usly bold platelets. pinto bean| +4236|14888|9891|1|50|90144.00|0.00|0.01|N|F|1995-06-15|1995-06-16|1995-07-12|COLLECT COD|REG AIR|g, ironic instructions against the bl| +4236|20706|5711|2|43|69948.10|0.05|0.03|N|O|1995-07-23|1995-06-11|1995-08-01|DELIVER IN PERSON|REG AIR|thely along the blithely regular asym| +4236|193933|3934|3|27|54727.11|0.09|0.01|R|F|1995-06-09|1995-05-21|1995-06-14|TAKE BACK RETURN|RAIL|hout the regular, even pinto bean| +4236|15959|5960|4|30|56248.50|0.07|0.08|A|F|1995-06-16|1995-05-16|1995-06-17|TAKE BACK RETURN|FOB|iously special foxes. deposits haggle car| +4236|7050|9551|5|29|27754.45|0.10|0.06|R|F|1995-04-13|1995-05-14|1995-04-28|TAKE BACK RETURN|FOB|sleep silently ironic accounts| +4236|81893|9418|6|38|71245.82|0.02|0.07|A|F|1995-06-03|1995-06-19|1995-06-12|COLLECT COD|RAIL|. express pinto beans hang enticingly re| +4237|189763|7318|1|16|29644.16|0.09|0.04|R|F|1992-03-17|1992-03-31|1992-04-03|DELIVER IN PERSON|REG AIR|uthless accounts a| +4238|168981|4014|1|33|67649.34|0.08|0.03|R|F|1993-05-20|1993-04-13|1993-06-18|DELIVER IN PERSON|MAIL|ts nag of the ironic deposits.| +4239|59485|1991|1|1|1444.48|0.01|0.01|N|O|1996-04-24|1996-03-07|1996-05-16|NONE|TRUCK|tegrate slyly| +4239|153761|1307|2|33|59887.08|0.06|0.00|N|O|1996-03-20|1996-03-09|1996-04-06|DELIVER IN PERSON|RAIL| accounts! | +4239|60875|8394|3|43|78942.41|0.06|0.00|N|O|1996-01-30|1996-03-11|1996-02-15|TAKE BACK RETURN|MAIL|sts. carefully special account| +4239|119874|2386|4|3|5681.61|0.02|0.05|N|O|1996-02-23|1996-04-01|1996-03-06|NONE|AIR|r requests haggle. fu| +4264|133354|894|1|28|38845.80|0.09|0.07|N|O|1997-02-08|1997-03-20|1997-03-05|DELIVER IN PERSON|REG AIR| wake ironic, b| +4264|75967|982|2|17|33030.32|0.01|0.08|N|O|1997-03-12|1997-03-19|1997-04-02|COLLECT COD|RAIL|about the c| +4264|161238|1239|3|37|48071.51|0.09|0.00|N|O|1997-02-25|1997-02-22|1997-03-21|DELIVER IN PERSON|MAIL|uffily even brai| +4264|113562|6074|4|46|72475.76|0.07|0.01|N|O|1997-03-08|1997-02-23|1997-03-22|TAKE BACK RETURN|REG AIR|are after th| +4264|33099|609|5|35|36123.15|0.08|0.06|N|O|1997-03-26|1997-03-14|1997-04-15|TAKE BACK RETURN|RAIL|e quickly furiously pending a| +4264|92292|2293|6|32|41097.28|0.10|0.08|N|O|1997-04-29|1997-03-25|1997-05-17|COLLECT COD|REG AIR|. carefully regular | +4264|139275|9276|7|9|11828.43|0.06|0.02|N|O|1997-04-15|1997-03-27|1997-05-03|DELIVER IN PERSON|REG AIR|lly final platelets cajole blith| +4265|178799|3834|1|37|69478.23|0.02|0.04|N|O|1995-12-26|1995-12-10|1995-12-30|COLLECT COD|SHIP|e quickly around the| +4266|8313|5814|1|5|6106.55|0.07|0.08|A|F|1994-05-05|1994-06-22|1994-05-27|DELIVER IN PERSON|SHIP|uffily until the quickly ironic sauternes| +4266|111178|8712|2|36|42810.12|0.09|0.04|R|F|1994-07-21|1994-07-14|1994-07-26|COLLECT COD|MAIL|es. carefully special requests lose quickly| +4267|29806|4811|1|12|20829.60|0.05|0.05|R|F|1994-12-12|1994-10-12|1995-01-08|NONE|REG AIR| regular cou| +4267|139048|4075|2|49|53264.96|0.00|0.07|R|F|1994-08-25|1994-10-06|1994-09-04|NONE|SHIP|en accounts c| +4267|165509|3058|3|40|62980.00|0.01|0.04|A|F|1994-11-15|1994-11-09|1994-12-15|DELIVER IN PERSON|SHIP|ckages haggle always. fi| +4267|94086|6596|4|7|7560.56|0.02|0.00|R|F|1994-08-15|1994-10-31|1994-09-06|NONE|AIR|t the slyly ironic req| +4267|99278|6806|5|31|39595.37|0.01|0.08|R|F|1994-09-04|1994-10-12|1994-09-09|NONE|SHIP|es sublate | +4268|92629|157|1|5|8108.10|0.04|0.02|A|F|1994-08-16|1994-08-06|1994-09-03|NONE|REG AIR|ently final a| +4268|13444|948|2|33|44795.52|0.08|0.08|R|F|1994-08-05|1994-08-12|1994-09-03|COLLECT COD|AIR|. foxes cajole again| +4268|143352|8381|3|14|19534.90|0.05|0.05|R|F|1994-07-10|1994-08-09|1994-07-21|NONE|TRUCK|usual requests eat | +4268|111724|1725|4|13|22564.36|0.06|0.02|R|F|1994-09-02|1994-09-08|1994-09-08|DELIVER IN PERSON|AIR|er the slyly special accounts. slyly | +4268|137899|5439|5|18|34864.02|0.03|0.02|A|F|1994-10-09|1994-09-09|1994-10-11|NONE|FOB|regularly along the thin, even instruct| +4268|66264|1277|6|5|6151.30|0.03|0.06|R|F|1994-07-20|1994-08-29|1994-08-12|COLLECT COD|FOB|the blithely final foxes wake slyly acros| +4268|94937|7447|7|26|50230.18|0.03|0.02|A|F|1994-10-25|1994-09-11|1994-11-08|NONE|TRUCK| packages haggle al| +4269|191781|4301|1|15|28091.70|0.10|0.03|A|F|1994-11-06|1994-10-20|1994-11-20|COLLECT COD|MAIL| deposits sleep slyly. accounts above the | +4270|197661|181|1|49|86174.34|0.10|0.05|N|O|1998-08-20|1998-06-22|1998-08-22|COLLECT COD|TRUCK|ronic packages integrate f| +4271|42358|2359|1|49|63717.15|0.01|0.07|N|O|1997-10-27|1997-09-09|1997-10-28|COLLECT COD|REG AIR|fully unusual depos| +4271|104638|7149|2|17|27924.71|0.10|0.06|N|O|1997-10-06|1997-08-24|1997-10-19|NONE|MAIL|riously regular dependencies acco| +4271|45946|8451|3|6|11351.64|0.10|0.03|N|O|1997-09-26|1997-10-11|1997-09-28|TAKE BACK RETURN|MAIL|ves haggle sl| +4271|13002|5504|4|38|34770.00|0.09|0.00|N|O|1997-11-12|1997-08-17|1997-12-06|NONE|TRUCK|y among the fluffily even deposits. fu| +4271|123672|3673|5|46|78000.82|0.04|0.04|N|O|1997-08-26|1997-10-10|1997-09-19|NONE|AIR|y unusual instructions. quickly bu| +4271|153204|5720|6|41|51545.20|0.09|0.03|N|O|1997-10-31|1997-08-22|1997-11-14|COLLECT COD|REG AIR|ar sentiments. packages s| +4271|90667|668|7|29|48072.14|0.00|0.03|N|O|1997-09-01|1997-09-16|1997-09-11|COLLECT COD|REG AIR|sauternes boost ironically according | +4296|29796|4801|1|26|44870.54|0.05|0.08|R|F|1994-09-26|1994-10-21|1994-10-09|NONE|AIR|s. final packages affix furi| +4296|174249|9284|2|21|27788.04|0.06|0.07|R|F|1994-09-23|1994-10-20|1994-10-04|DELIVER IN PERSON|AIR|sly across the caref| +4296|611|612|3|19|28720.59|0.07|0.00|R|F|1994-09-11|1994-10-01|1994-09-23|NONE|AIR|packages caj| +4296|63938|1457|4|35|66567.55|0.03|0.01|A|F|1994-09-02|1994-10-24|1994-10-02|NONE|RAIL|thely final frays breach carefully acco| +4297|83555|8572|1|41|63080.55|0.04|0.06|R|F|1993-05-23|1993-04-29|1993-05-26|TAKE BACK RETURN|AIR|ounts across the slyly silent reques| +4297|94874|4875|2|50|93443.50|0.02|0.07|R|F|1993-04-15|1993-04-06|1993-04-19|COLLECT COD|MAIL|n packages. requests boost slyly b| +4297|134794|2334|3|42|76809.18|0.00|0.02|A|F|1993-06-12|1993-03-23|1993-06-13|COLLECT COD|AIR|ld packages. blithely regular | +4297|70353|2861|4|9|11910.15|0.00|0.05|A|F|1993-05-27|1993-04-08|1993-06-15|TAKE BACK RETURN|RAIL| excuses wake carefully blithely even t| +4297|11354|6357|5|6|7592.10|0.10|0.06|R|F|1993-03-16|1993-03-26|1993-04-14|COLLECT COD|FOB|egular theodolites. careful| +4298|13764|8767|1|11|18455.36|0.01|0.08|R|F|1994-03-21|1994-03-17|1994-04-01|NONE|REG AIR|thely quick pint| +4298|122759|7784|2|23|40980.25|0.09|0.04|A|F|1994-04-27|1994-03-26|1994-05-08|COLLECT COD|MAIL|al requests sleep caref| +4298|194870|7390|3|41|80559.67|0.07|0.06|A|F|1994-03-22|1994-04-12|1994-03-27|DELIVER IN PERSON|RAIL|deposits cajole about the regular pack| +4298|171357|3875|4|14|19996.90|0.01|0.02|A|F|1994-03-21|1994-04-15|1994-04-11|TAKE BACK RETURN|AIR|ons above the furiously final request| +4298|190811|3331|5|19|36134.39|0.05|0.00|A|F|1994-03-07|1994-04-18|1994-03-22|DELIVER IN PERSON|AIR|sly ironic packages! ironic, regular accou| +4299|78994|6516|1|24|47351.76|0.00|0.00|N|O|1995-11-30|1995-12-08|1995-12-28|DELIVER IN PERSON|REG AIR|ironic, special pa| +4300|1553|4054|1|31|45091.05|0.04|0.04|N|O|1995-07-20|1995-07-03|1995-08-11|DELIVER IN PERSON|FOB| cajole after the slyly pending depende| +4300|89381|9382|2|17|23296.46|0.02|0.01|A|F|1995-05-26|1995-05-26|1995-06-17|TAKE BACK RETURN|REG AIR|deas boost slyly outside th| +4300|15837|5838|3|17|29798.11|0.08|0.03|R|F|1995-05-17|1995-06-28|1995-06-13|COLLECT COD|TRUCK|, regular packages haggle furiously| +4300|169339|4372|4|22|30983.26|0.04|0.03|N|F|1995-05-25|1995-05-21|1995-06-23|COLLECT COD|RAIL|s, bold deposits. ironic, ironic requests | +4300|71990|7005|5|27|52973.73|0.00|0.06|N|F|1995-06-09|1995-07-06|1995-07-02|DELIVER IN PERSON|REG AIR| sleep: blith| +4301|100769|5790|1|39|69020.64|0.08|0.00|R|F|1994-11-14|1994-12-19|1994-12-03|DELIVER IN PERSON|FOB|entiments. fluffily ironic pinto bea| +4301|11797|4299|2|30|51263.70|0.07|0.00|R|F|1995-01-04|1994-11-06|1995-01-27|TAKE BACK RETURN|AIR|l instructions run slyly about t| +4301|56815|4331|3|13|23033.53|0.09|0.00|A|F|1994-12-13|1994-12-06|1995-01-12|DELIVER IN PERSON|SHIP|ounts sleep | +4301|79617|4632|4|39|62267.79|0.07|0.08|A|F|1995-01-03|1994-12-07|1995-01-31|COLLECT COD|REG AIR|ep regular, regular | +4301|119160|4183|5|16|18866.56|0.07|0.05|A|F|1994-11-18|1994-12-20|1994-12-17|NONE|FOB|fully carefull| +4301|118982|4005|6|42|84041.16|0.01|0.06|A|F|1995-01-21|1994-11-07|1995-02-17|DELIVER IN PERSON|TRUCK|lithely regular packages. caref| +4301|127276|9789|7|38|49524.26|0.08|0.07|A|F|1994-10-08|1994-12-14|1994-11-04|DELIVER IN PERSON|SHIP|ronic instructions hag| +4302|118688|6222|1|25|42667.00|0.06|0.00|N|O|1995-10-29|1995-10-18|1995-11-06|NONE|AIR|oost carefully careful| +4302|179347|4382|2|19|27100.46|0.01|0.00|N|O|1995-11-19|1995-11-15|1995-12-03|DELIVER IN PERSON|FOB|ld accounts. unusual, regular account| +4302|71648|4156|3|4|6478.56|0.01|0.01|N|O|1995-09-21|1995-11-12|1995-09-28|DELIVER IN PERSON|TRUCK|xes nag blithely after the unusual, s| +4302|174028|4029|4|50|55101.00|0.09|0.04|N|O|1995-10-20|1995-12-05|1995-11-08|NONE|SHIP|he carefully | +4302|79254|4269|5|11|13565.75|0.01|0.07|N|O|1995-11-17|1995-10-14|1995-12-09|TAKE BACK RETURN|SHIP|beans. slyly pending| +4303|14536|9539|1|15|21757.95|0.07|0.00|N|O|1996-02-28|1996-02-27|1996-02-29|TAKE BACK RETURN|TRUCK|eas. final foxes over the forge| +4303|95072|2600|2|9|9603.63|0.01|0.04|N|O|1996-02-28|1996-03-27|1996-03-28|NONE|MAIL|olites believe slyly. blithely iron| +4303|67631|2644|3|32|51156.16|0.03|0.07|N|O|1996-04-29|1996-02-06|1996-05-11|TAKE BACK RETURN|FOB|e across the slyly stealthy forges. carefu| +4303|69128|9129|4|41|44981.92|0.05|0.06|N|O|1996-03-21|1996-02-01|1996-04-11|COLLECT COD|AIR|r accounts are after | +4303|22116|7121|5|35|36333.85|0.00|0.00|N|O|1996-02-06|1996-03-19|1996-02-23|COLLECT COD|MAIL| fluffily i| +4303|94060|4061|6|13|13702.78|0.08|0.03|N|O|1996-02-27|1996-02-26|1996-03-20|DELIVER IN PERSON|AIR|to beans sleep carefully above the un| +4328|170176|5211|1|29|36138.93|0.01|0.05|A|F|1992-10-15|1992-07-24|1992-11-11|COLLECT COD|AIR|-ray unusual, busy deposits. final, final a| +4328|140849|5878|2|40|75593.60|0.06|0.02|A|F|1992-07-09|1992-08-25|1992-07-25|DELIVER IN PERSON|TRUCK|ic asymptotes. ironic deposits at the ev| +4329|144933|2476|1|14|27691.02|0.07|0.00|A|F|1992-09-10|1992-08-30|1992-09-28|TAKE BACK RETURN|RAIL| above the fu| +4329|76545|4067|2|31|47167.74|0.01|0.04|R|F|1992-09-11|1992-09-04|1992-09-17|TAKE BACK RETURN|MAIL|ckages. carefully final | +4329|90213|2723|3|6|7219.26|0.10|0.00|A|F|1992-08-19|1992-08-17|1992-08-28|TAKE BACK RETURN|SHIP|g the quickly final requests cajole accord| +4329|1079|1080|4|22|21561.54|0.04|0.06|R|F|1992-09-15|1992-07-31|1992-10-07|COLLECT COD|AIR|al pinto beans. slyly unusual realm| +4329|120331|2844|5|26|35134.58|0.02|0.03|R|F|1992-08-02|1992-08-20|1992-09-01|TAKE BACK RETURN|TRUCK|uests. carefully specia| +4329|188586|6141|6|4|6698.32|0.05|0.04|A|F|1992-10-04|1992-08-13|1992-11-01|NONE|REG AIR|dolphins eat along| +4330|181242|1243|1|27|35727.48|0.01|0.02|A|F|1993-07-15|1993-05-25|1993-07-24|NONE|MAIL|ts above the regular theodoli| +4331|91996|1997|1|16|31807.84|0.01|0.04|R|F|1994-09-24|1994-09-17|1994-09-30|NONE|AIR|ully even dependencies. bold, | +4331|170918|5953|2|37|73589.67|0.09|0.04|R|F|1994-12-08|1994-09-19|1994-12-26|COLLECT COD|FOB|ly across the express accounts. expr| +4331|18132|5636|3|38|39904.94|0.08|0.02|A|F|1994-12-07|1994-10-12|1995-01-01|COLLECT COD|FOB|s. carefully bold packages serve slowly| +4332|148950|8951|1|25|49973.75|0.07|0.06|N|O|1996-02-16|1996-03-30|1996-02-21|DELIVER IN PERSON|SHIP|kages sleep c| +4332|188868|3905|2|32|62619.52|0.10|0.08|N|O|1996-05-04|1996-02-22|1996-05-29|TAKE BACK RETURN|RAIL| ironic package| +4332|97789|2808|3|48|85765.44|0.05|0.05|N|O|1996-01-31|1996-03-26|1996-02-06|COLLECT COD|MAIL|eans along the carefully specia| +4332|136775|4315|4|6|10870.62|0.07|0.03|N|O|1996-03-25|1996-02-17|1996-04-15|COLLECT COD|TRUCK|totes use? furiously special deposits nag s| +4332|166747|4296|5|5|9068.70|0.06|0.02|N|O|1996-03-27|1996-04-04|1996-04-15|NONE|RAIL|lyly special| +4332|109394|4415|6|4|5613.56|0.05|0.07|N|O|1996-03-02|1996-03-26|1996-03-16|DELIVER IN PERSON|REG AIR| requests. express ex| +4332|172752|5270|7|14|25546.50|0.10|0.05|N|O|1996-04-18|1996-03-09|1996-05-01|NONE|SHIP|yly regular deposits. carefully| +4333|32260|9770|1|45|53651.70|0.07|0.06|N|O|1996-05-13|1996-03-14|1996-05-29|TAKE BACK RETURN|RAIL|odolites haggle alongside of the| +4333|183316|871|2|14|19590.34|0.09|0.03|N|O|1996-03-21|1996-04-17|1996-04-13|NONE|TRUCK|tside the fur| +4333|175852|8370|3|47|90608.95|0.03|0.00|N|O|1996-02-17|1996-03-30|1996-02-18|NONE|TRUCK|mise quickly accounts. regular| +4334|23700|6203|1|50|81185.00|0.02|0.04|A|F|1994-06-26|1994-06-23|1994-07-12|TAKE BACK RETURN|AIR|re fluffily slyly express | +4335|130428|429|1|45|65628.90|0.09|0.00|A|F|1994-10-07|1994-09-28|1994-10-29|NONE|MAIL|l accounts | +4335|101622|4133|2|30|48708.60|0.09|0.05|A|F|1994-08-23|1994-11-14|1994-09-20|NONE|RAIL|inal dependencies nag about the c| +4335|155520|551|3|32|50416.64|0.06|0.03|R|F|1994-11-06|1994-10-04|1994-11-08|TAKE BACK RETURN|RAIL|nto beans. quickly | +4335|17270|7271|4|23|27307.21|0.00|0.05|A|F|1994-12-12|1994-10-02|1994-12-26|TAKE BACK RETURN|SHIP|posits snoo| +4335|44633|7138|5|38|59949.94|0.01|0.03|A|F|1994-10-13|1994-10-03|1994-10-17|DELIVER IN PERSON|AIR| of the bold plat| +4335|137892|7893|6|12|23158.68|0.02|0.00|R|F|1994-10-01|1994-09-30|1994-10-08|DELIVER IN PERSON|TRUCK|egular foxes eat at the regularly bold exc| +4335|143979|9008|7|31|62712.07|0.08|0.07|R|F|1994-11-02|1994-09-27|1994-11-25|COLLECT COD|MAIL|ess pinto beans boost abo| +4360|43304|3305|1|43|53633.90|0.02|0.02|N|F|1995-06-14|1995-05-03|1995-06-29|TAKE BACK RETURN|RAIL| regular requests. furiously unu| +4360|9743|2244|2|39|64456.86|0.08|0.03|A|F|1995-05-11|1995-03-27|1995-05-22|NONE|REG AIR|s after the | +4360|137134|9648|3|9|10540.17|0.09|0.00|A|F|1995-03-15|1995-05-20|1995-03-31|NONE|RAIL|ly final pains haggle. carefully| +4360|4370|1871|4|43|54797.91|0.05|0.07|R|F|1995-04-11|1995-04-16|1995-05-10|COLLECT COD|RAIL|riously carefully fina| +4361|44102|1615|1|20|20922.00|0.05|0.02|R|F|1994-02-28|1994-04-21|1994-03-25|TAKE BACK RETURN|SHIP|kages boost fu| +4361|8100|3101|2|23|23186.30|0.10|0.06|A|F|1994-04-22|1994-04-05|1994-05-13|TAKE BACK RETURN|REG AIR|ly furiously regular ide| +4361|132468|7495|3|37|55517.02|0.07|0.07|A|F|1994-03-24|1994-05-21|1994-03-29|NONE|RAIL|s. slyly ironic p| +4361|189065|6620|4|15|17310.90|0.00|0.05|A|F|1994-06-10|1994-04-24|1994-06-13|NONE|SHIP|requests solve slyly unus| +4361|4750|7251|5|37|61225.75|0.01|0.06|R|F|1994-06-10|1994-04-07|1994-06-13|DELIVER IN PERSON|TRUCK|e carefully among t| +4361|19007|1509|6|29|26854.00|0.04|0.00|A|F|1994-05-17|1994-03-26|1994-06-04|NONE|AIR|s the spec| +4362|103057|8078|1|5|5300.25|0.02|0.03|A|F|1995-01-16|1995-01-30|1995-02-02|COLLECT COD|SHIP|pending instructions haggle| +4363|48418|923|1|11|15030.51|0.00|0.04|N|O|1996-02-25|1996-02-24|1996-03-03|COLLECT COD|REG AIR|iet foxes. furious, silent d| +4363|145653|3196|2|46|78137.90|0.04|0.04|N|O|1996-01-24|1996-03-19|1996-01-27|NONE|RAIL|? blithely ironic ideas among the s| +4363|185819|856|3|8|15238.48|0.02|0.00|N|O|1996-03-23|1996-02-12|1996-04-07|NONE|RAIL| nag furiously e| +4363|43847|3848|4|39|69842.76|0.04|0.01|N|O|1996-01-08|1996-02-06|1996-02-06|NONE|REG AIR|n courts boost slyl| +4364|12882|386|1|25|44872.00|0.08|0.08|R|F|1995-02-17|1995-02-17|1995-03-06|TAKE BACK RETURN|SHIP|al requests cajole. regular ideas sleep.| +4364|102642|7663|2|35|57562.40|0.07|0.01|R|F|1995-02-01|1995-02-14|1995-03-02|DELIVER IN PERSON|AIR|s. final, r| +4364|102943|2944|3|33|64216.02|0.01|0.02|R|F|1995-01-24|1995-01-24|1995-02-11|NONE|FOB|ly final, expres| +4364|159258|1774|4|4|5269.00|0.07|0.01|R|F|1995-01-10|1995-01-02|1995-01-28|DELIVER IN PERSON|FOB|epths sleep fluff| +4364|46819|1828|5|47|82993.07|0.00|0.07|R|F|1995-02-09|1995-01-24|1995-03-11|DELIVER IN PERSON|TRUCK|ular packages haggle| +4364|79124|9125|6|34|37506.08|0.09|0.01|R|F|1995-03-09|1995-02-02|1995-03-31|TAKE BACK RETURN|SHIP|lly. entic| +4364|25464|7967|7|43|59746.78|0.07|0.05|R|F|1994-12-06|1995-01-03|1994-12-15|NONE|MAIL|ites. furiously final theodol| +4365|172741|7776|1|16|29019.84|0.02|0.01|N|O|1996-09-14|1996-08-11|1996-09-30|TAKE BACK RETURN|SHIP|ptotes. final packages boost furiously | +4365|51203|6214|2|26|30009.20|0.08|0.05|N|O|1996-07-05|1996-08-20|1996-08-03|DELIVER IN PERSON|RAIL|lly bold courts nag | +4365|161817|1818|3|1|1878.81|0.01|0.06|N|O|1996-08-17|1996-09-03|1996-08-19|COLLECT COD|RAIL|s sleep blithely regular deposits. | +4366|196706|4264|1|8|14421.60|0.04|0.08|N|O|1996-08-03|1996-06-29|1996-08-09|NONE|REG AIR|quickly even requests. blithely regula| +4366|31567|9077|2|16|23976.96|0.00|0.00|N|O|1996-09-06|1996-07-19|1996-09-29|COLLECT COD|MAIL| blithely furiously speci| +4366|137695|209|3|25|43317.25|0.02|0.03|N|O|1996-07-13|1996-06-19|1996-07-15|DELIVER IN PERSON|TRUCK|after the quickly final package| +4366|36478|3988|4|32|45263.04|0.03|0.04|N|O|1996-08-20|1996-07-18|1996-09-19|TAKE BACK RETURN|TRUCK|refully regular dependenc| +4367|148721|6264|1|44|77867.68|0.04|0.01|A|F|1995-04-25|1995-05-04|1995-05-01|DELIVER IN PERSON|MAIL|fluffily final deposits sleep blithely a| +4367|138271|785|2|7|9164.89|0.04|0.05|N|F|1995-05-27|1995-04-16|1995-06-19|TAKE BACK RETURN|FOB|final account| +4367|111410|1411|3|4|5685.64|0.01|0.02|R|F|1995-05-13|1995-04-05|1995-05-31|TAKE BACK RETURN|MAIL|jole furiously fluffily even pa| +4367|51439|8955|4|13|18075.59|0.00|0.05|N|F|1995-05-29|1995-04-28|1995-06-23|COLLECT COD|RAIL| deposits. special deposits wake slyly. u| +4367|125890|3427|5|19|36401.91|0.03|0.08|A|F|1995-05-17|1995-04-04|1995-06-06|TAKE BACK RETURN|TRUCK|uriously even requests. blithely express de| +4392|139948|2462|1|19|37770.86|0.07|0.03|N|O|1998-01-27|1998-02-05|1998-02-19|NONE|RAIL|ajole silently silently express asy| +4392|106022|6023|2|42|43176.84|0.05|0.05|N|O|1998-01-22|1998-01-28|1998-01-25|NONE|RAIL|ly ironic packages affix. furiously regular| +4392|106292|1313|3|1|1298.29|0.07|0.02|N|O|1998-02-28|1998-02-26|1998-03-19|COLLECT COD|SHIP|ly final multip| +4392|33178|8185|4|47|52224.99|0.06|0.05|N|O|1998-03-29|1998-01-20|1998-04-20|TAKE BACK RETURN|TRUCK|regular pack| +4392|10291|7795|5|34|40843.86|0.03|0.00|N|O|1998-03-15|1998-02-03|1998-03-16|COLLECT COD|MAIL|posits. carefully ironic id| +4392|160487|488|6|33|51066.84|0.02|0.02|N|O|1998-04-06|1998-02-10|1998-05-01|DELIVER IN PERSON|FOB|g frays haggle carefully. ac| +4393|41604|4109|1|21|32457.60|0.02|0.02|R|F|1995-03-06|1995-04-10|1995-03-29|NONE|RAIL|e carefully ironic ideas-- thin, un| +4393|31780|9290|2|30|51353.40|0.01|0.04|A|F|1995-03-21|1995-05-23|1995-04-13|DELIVER IN PERSON|REG AIR|structions sleep| +4393|124650|4651|3|14|23445.10|0.01|0.08|N|F|1995-05-29|1995-04-12|1995-06-20|TAKE BACK RETURN|REG AIR|uffily express| +4393|188312|8313|4|10|14003.10|0.06|0.00|A|F|1995-03-26|1995-04-10|1995-04-01|COLLECT COD|MAIL|ites after the pending, ironic idea| +4393|147175|4718|5|26|31776.42|0.05|0.07|A|F|1995-04-09|1995-04-06|1995-04-16|TAKE BACK RETURN|TRUCK|ake furiously. blithely specia| +4393|164704|4705|6|40|70748.00|0.03|0.01|A|F|1995-03-26|1995-05-20|1995-04-09|NONE|FOB|. slyly regular accounts wake carefully. | +4393|165454|5455|7|30|45583.50|0.00|0.04|A|F|1995-06-03|1995-04-27|1995-06-16|DELIVER IN PERSON|FOB|he carefully fi| +4394|178537|3572|1|20|32310.60|0.03|0.07|N|O|1996-07-25|1996-05-10|1996-08-13|NONE|MAIL|uffily even deposits in| +4394|66823|9330|2|30|53694.60|0.05|0.02|N|O|1996-04-17|1996-06-12|1996-05-01|DELIVER IN PERSON|RAIL|e ideas wake slyl| +4394|80305|7830|3|36|46270.80|0.00|0.05|N|O|1996-07-10|1996-06-24|1996-08-02|DELIVER IN PERSON|AIR|yly regular excuses cajole. f| +4394|70554|8076|4|34|51834.70|0.01|0.08|N|O|1996-07-17|1996-06-15|1996-08-09|TAKE BACK RETURN|RAIL| eat furiously: carefully regular | +4394|196002|3560|5|23|25254.00|0.06|0.08|N|O|1996-04-25|1996-05-20|1996-05-12|NONE|MAIL|carefully final theodo| +4394|198533|1053|6|19|30999.07|0.06|0.00|N|O|1996-06-18|1996-05-16|1996-07-16|DELIVER IN PERSON|MAIL|theodolites| +4394|141831|9374|7|16|29965.28|0.10|0.05|N|O|1996-05-21|1996-05-31|1996-06-17|NONE|MAIL| are quickly blithely regul| +4395|152097|4613|1|47|54007.23|0.05|0.00|N|O|1998-03-16|1998-05-09|1998-03-31|DELIVER IN PERSON|AIR|ake slyly inst| +4396|148640|6183|1|35|59102.40|0.05|0.03|A|F|1993-10-01|1993-11-05|1993-10-09|NONE|TRUCK|foxes cajole thinly pending re| +4396|184142|1697|2|9|11035.26|0.01|0.08|R|F|1993-11-07|1993-11-04|1993-11-17|NONE|TRUCK|pecial, special excuses haggle carefull| +4396|59152|1658|3|39|43334.85|0.05|0.02|A|F|1993-12-06|1993-09-08|1993-12-29|TAKE BACK RETURN|AIR|the dependen| +4396|160745|8294|4|44|79452.56|0.10|0.02|A|F|1993-09-17|1993-10-29|1993-09-20|TAKE BACK RETURN|REG AIR|eposits haggle furiou| +4396|37955|5465|5|3|5678.85|0.04|0.07|A|F|1993-09-11|1993-10-19|1993-10-04|TAKE BACK RETURN|TRUCK|ously even th| +4396|96994|6995|6|16|31855.84|0.09|0.04|R|F|1993-08-15|1993-10-07|1993-09-08|NONE|FOB|yly ironic| +4396|171240|1241|7|4|5244.96|0.03|0.07|A|F|1993-10-03|1993-10-10|1993-10-29|TAKE BACK RETURN|REG AIR|enticingly about the furiousl| +4397|14589|9592|1|12|18042.96|0.01|0.00|A|F|1994-12-31|1994-11-27|1995-01-24|DELIVER IN PERSON|MAIL|unts. furi| +4397|182299|4818|2|48|66301.92|0.07|0.06|R|F|1994-09-28|1994-11-10|1994-10-08|TAKE BACK RETURN|AIR| quickly pe| +4397|91139|8667|3|1|1130.13|0.04|0.03|R|F|1994-10-18|1994-11-05|1994-11-08|TAKE BACK RETURN|MAIL|he carefully ironic pinto beans wake f| +4397|159752|4783|4|7|12682.25|0.07|0.04|R|F|1994-11-11|1994-11-03|1994-11-26|DELIVER IN PERSON|RAIL|ely even deposits. furiously pending pack| +4397|143941|8970|5|8|15879.52|0.05|0.03|R|F|1994-12-08|1994-10-24|1994-12-27|DELIVER IN PERSON|REG AIR| carefully unusual requests gr| +4397|12609|5111|6|25|38040.00|0.02|0.08|A|F|1994-12-05|1994-10-16|1994-12-09|TAKE BACK RETURN|SHIP|ealms run slyly bold ideas. always| +4398|126640|1665|1|39|64998.96|0.08|0.06|N|O|1995-07-19|1995-07-12|1995-08-06|DELIVER IN PERSON|SHIP|nd the ironically regular idea| +4398|24839|2346|2|25|44095.75|0.10|0.01|N|O|1995-07-24|1995-06-12|1995-08-14|NONE|FOB|ns. quiet, ironic foxes p| +4398|55619|630|3|43|67708.23|0.06|0.08|R|F|1995-05-26|1995-07-17|1995-06-05|NONE|SHIP|near the accounts are according to the ev| +4398|182270|9825|4|44|59499.88|0.07|0.02|N|O|1995-08-19|1995-07-13|1995-09-01|COLLECT COD|TRUCK|requests. fluffily regular pac| +4399|170756|8308|1|36|65763.00|0.09|0.08|N|O|1995-08-21|1995-11-17|1995-08-27|COLLECT COD|SHIP| across the sil| +4399|90648|649|2|18|29495.52|0.09|0.07|N|O|1995-09-04|1995-11-14|1995-09-05|DELIVER IN PERSON|REG AIR|ounts. ent| +4399|116990|9502|3|26|52181.74|0.06|0.08|N|O|1995-10-12|1995-10-15|1995-10-20|DELIVER IN PERSON|AIR|ckages dazzle reg| +4399|45625|3138|4|37|58112.94|0.00|0.05|N|O|1995-09-17|1995-09-28|1995-10-10|DELIVER IN PERSON|REG AIR|deposits. furiously regular ideas along t| +4399|15973|976|5|12|22667.64|0.00|0.00|N|O|1995-09-12|1995-11-15|1995-10-01|DELIVER IN PERSON|AIR| sleep unusual pinto bean| +4424|177753|271|1|27|49430.25|0.09|0.01|A|F|1995-01-17|1995-01-08|1995-01-28|COLLECT COD|MAIL| quickly p| +4424|87052|2069|2|20|20781.00|0.05|0.00|A|F|1994-12-16|1995-01-23|1994-12-17|DELIVER IN PERSON|SHIP|s alongside of the| +4424|82778|5287|3|13|22890.01|0.06|0.07|R|F|1995-03-21|1995-01-24|1995-04-02|DELIVER IN PERSON|REG AIR|e blithely carefully bold pinto be| +4424|40266|7779|4|29|34981.54|0.00|0.06|A|F|1995-01-18|1995-02-07|1995-02-01|DELIVER IN PERSON|REG AIR|es haggle quickly. furiously even cour| +4424|142190|2191|5|43|52984.17|0.07|0.01|A|F|1994-12-14|1995-01-03|1995-01-07|NONE|MAIL|aggle carefully across| +4424|182619|2620|6|2|3403.22|0.04|0.00|A|F|1995-03-24|1995-02-19|1995-04-10|TAKE BACK RETURN|FOB|fily pendi| +4425|30454|455|1|21|29073.45|0.03|0.02|A|F|1993-11-12|1993-12-11|1993-11-24|NONE|FOB|quests poach blithely theodolites. bli| +4425|38809|8810|2|42|73407.60|0.04|0.06|A|F|1994-01-07|1993-11-27|1994-01-13|TAKE BACK RETURN|FOB|ole regular instructions. carefully p| +4426|188497|3534|1|34|53906.66|0.09|0.05|N|O|1996-02-12|1996-02-10|1996-02-18|NONE|REG AIR| along the slyly pending ideas. q| +4426|68032|5551|2|28|28000.84|0.03|0.02|N|O|1996-02-17|1996-03-22|1996-02-19|COLLECT COD|AIR|ymptotes haggle blithely against| +4427|66396|1409|1|4|5449.56|0.00|0.01|N|O|1998-10-14|1998-09-14|1998-11-05|TAKE BACK RETURN|TRUCK|se boldly. requests nag furiously| +4428|61830|9349|1|39|69881.37|0.07|0.02|A|F|1995-03-01|1995-03-24|1995-03-03|TAKE BACK RETURN|RAIL|ged requests according to th| +4428|171915|1916|2|40|79476.40|0.01|0.05|A|F|1995-05-02|1995-04-27|1995-05-08|NONE|MAIL|s. even asymptotes | +4429|19395|4398|1|46|60461.94|0.06|0.07|R|F|1993-04-30|1993-06-06|1993-05-18|COLLECT COD|FOB|s. furiously special req| +4429|160926|5959|2|18|35764.56|0.07|0.03|A|F|1993-05-30|1993-06-07|1993-06-01|NONE|RAIL|l dependencies. regular, | +4429|83258|5767|3|48|59580.00|0.05|0.07|R|F|1993-05-05|1993-06-23|1993-06-02|DELIVER IN PERSON|AIR|uickly across the package| +4429|102663|5174|4|18|29981.88|0.00|0.01|R|F|1993-07-05|1993-07-19|1993-07-30|NONE|SHIP|ns. bold dependencies haggle furio| +4429|46948|9453|5|48|90957.12|0.07|0.04|A|F|1993-05-27|1993-06-03|1993-06-04|NONE|RAIL|y regular dependen| +4430|62212|4719|1|42|49316.82|0.07|0.08|N|O|1997-11-18|1997-10-19|1997-12-04|COLLECT COD|FOB|l packages| +4430|196278|1317|2|7|9619.89|0.02|0.06|N|O|1997-11-11|1997-11-05|1997-12-05|COLLECT COD|FOB|ts above t| +4430|36192|6193|3|22|24820.18|0.03|0.00|N|O|1997-09-24|1997-11-03|1997-10-19|TAKE BACK RETURN|RAIL|nst the blithel| +4430|78491|999|4|22|32328.78|0.01|0.06|N|O|1997-09-21|1997-11-18|1997-10-19|TAKE BACK RETURN|TRUCK|out the quickly unu| +4430|188901|8902|5|19|37808.10|0.01|0.00|N|O|1997-11-06|1997-10-28|1997-11-22|NONE|SHIP| detect busily f| +4431|119514|2026|1|50|76675.50|0.07|0.05|R|F|1992-05-11|1992-03-31|1992-05-29|TAKE BACK RETURN|AIR|sts after the furiou| +4431|67053|2066|2|21|21421.05|0.07|0.06|A|F|1992-06-01|1992-03-30|1992-06-06|TAKE BACK RETURN|FOB|serve according to the slyly sil| +4431|146108|1137|3|18|20773.80|0.03|0.03|A|F|1992-06-04|1992-05-11|1992-06-29|DELIVER IN PERSON|MAIL|s doubt along the quic| +4456|166347|6348|1|20|28266.80|0.07|0.08|A|F|1993-12-02|1994-01-12|1993-12-25|NONE|TRUCK|nag doggedly blithely special accounts| +4457|157491|5037|1|4|6193.96|0.07|0.00|R|F|1992-11-05|1992-12-03|1992-11-13|NONE|SHIP|even, regular ideas wake a| +4457|139848|2362|2|19|35868.96|0.04|0.00|A|F|1992-12-16|1992-12-12|1993-01-13|TAKE BACK RETURN|RAIL|haggle carefully slyly e| +4457|19936|2438|3|50|92796.50|0.07|0.01|A|F|1993-01-06|1992-12-04|1993-02-02|NONE|MAIL|cording to the furiously f| +4458|70442|7964|1|43|60734.92|0.10|0.04|R|F|1993-01-30|1993-02-12|1993-02-04|TAKE BACK RETURN|AIR|as. blithely unusual platelets wake careful| +4458|109439|4460|2|49|70973.07|0.07|0.06|A|F|1993-02-03|1993-02-22|1993-02-21|DELIVER IN PERSON|MAIL|gle careful| +4458|125318|2855|3|44|59105.64|0.07|0.05|A|F|1992-12-26|1993-01-20|1993-01-06|COLLECT COD|MAIL|y even packages. packag| +4459|16570|6571|1|4|5946.28|0.07|0.03|R|F|1994-01-20|1993-11-11|1994-01-24|NONE|SHIP|ly express accounts along t| +4459|80590|5607|2|37|58111.83|0.06|0.08|R|F|1993-12-09|1993-11-01|1993-12-11|NONE|SHIP|across the slyly| +4459|73938|8953|3|49|93684.57|0.00|0.05|A|F|1993-12-03|1993-11-30|1993-12-27|COLLECT COD|SHIP|to the ironically regular depo| +4459|71633|6648|4|14|22464.82|0.02|0.00|A|F|1993-11-29|1993-12-27|1993-12-15|NONE|AIR| the regular ideas mold about the | +4459|129157|6694|5|7|8303.05|0.05|0.02|R|F|1993-11-03|1993-11-05|1993-11-18|COLLECT COD|SHIP| sleep quickly.| +4460|77444|2459|1|24|34114.56|0.06|0.00|N|O|1996-03-29|1996-01-28|1996-04-24|DELIVER IN PERSON|MAIL|g the final| +4460|193212|770|2|40|52208.40|0.10|0.03|N|O|1996-03-23|1996-03-05|1996-04-02|COLLECT COD|AIR|hely regular| +4460|100050|7581|3|30|31501.50|0.10|0.04|N|O|1996-02-17|1996-02-19|1996-02-24|NONE|AIR|y final epitaphs are slyly regular so| +4460|135679|8193|4|23|39437.41|0.02|0.05|N|O|1996-01-17|1996-01-27|1996-01-30|NONE|REG AIR|ns about the regular packages sleep a| +4460|149866|4895|5|32|61307.52|0.01|0.03|N|O|1996-02-17|1996-03-05|1996-03-06|COLLECT COD|REG AIR|ackages. sly| +4460|196170|6171|6|6|7597.02|0.07|0.01|N|O|1996-02-20|1996-01-31|1996-03-10|TAKE BACK RETURN|REG AIR|nto beans beneath the f| +4461|47140|9645|1|1|1087.14|0.00|0.08|N|O|1998-01-07|1997-12-24|1998-01-24|COLLECT COD|MAIL|yly special accounts. courts are carefu| +4461|70727|5742|2|43|73001.96|0.04|0.05|N|O|1997-10-11|1997-12-11|1997-11-08|DELIVER IN PERSON|MAIL|riously ironic frays en| +4461|97099|9609|3|28|30690.52|0.03|0.04|N|O|1997-11-25|1997-11-06|1997-12-16|DELIVER IN PERSON|FOB| the slyly regular depe| +4461|141533|1534|4|12|18894.36|0.02|0.01|N|O|1998-01-08|1997-12-08|1998-01-15|NONE|MAIL|ly unusual requests. | +4461|136115|1142|5|17|19568.87|0.08|0.00|N|O|1997-12-13|1997-10-28|1997-12-23|NONE|SHIP| pending requests c| +4461|83758|1283|6|23|40060.25|0.09|0.07|N|O|1997-12-08|1997-12-22|1997-12-29|NONE|REG AIR|slyly pending pinto beans. accounts are a| +4462|177786|7787|1|23|42866.94|0.08|0.08|A|F|1992-11-04|1992-08-10|1992-11-30|TAKE BACK RETURN|TRUCK|ithely express accounts. foxes cajole amo| +4462|36052|3562|2|5|4940.25|0.03|0.05|R|F|1992-07-25|1992-09-17|1992-07-31|COLLECT COD|REG AIR|xes! sentiments| +4462|116618|1641|3|19|31057.59|0.05|0.06|A|F|1992-07-11|1992-08-11|1992-07-13|DELIVER IN PERSON|MAIL|ual ideas use. slyly e| +4462|189044|1563|4|37|41922.48|0.09|0.07|R|F|1992-08-12|1992-09-05|1992-08-27|COLLECT COD|REG AIR|ld instruct| +4462|56454|3970|5|48|67701.60|0.09|0.01|R|F|1992-10-23|1992-08-31|1992-11-08|NONE|FOB|uffily final platele| +4463|87966|5491|1|2|3907.92|0.03|0.03|R|F|1994-06-29|1994-05-23|1994-07-27|DELIVER IN PERSON|FOB|y above the even foxes. regular, unusual p| +4488|132163|7190|1|35|41830.60|0.09|0.03|A|F|1993-06-15|1993-06-10|1993-07-02|NONE|SHIP|inal, regula| +4488|62730|5237|2|46|77865.58|0.01|0.02|R|F|1993-08-30|1993-06-08|1993-09-22|DELIVER IN PERSON|RAIL|r ideas wake around the in| +4489|22041|2042|1|31|29854.24|0.01|0.00|N|O|1996-11-14|1996-10-07|1996-12-09|DELIVER IN PERSON|RAIL|ly slow foxes sublate slyly am| +4489|32620|2621|2|48|74525.76|0.02|0.06|N|O|1996-08-22|1996-08-23|1996-09-01|NONE|MAIL|ecial inst| +4489|36215|6216|3|2|2302.42|0.04|0.08|N|O|1996-10-15|1996-08-31|1996-11-14|TAKE BACK RETURN|SHIP|ic ideas. slyly pending requests| +4489|64434|1953|4|19|26570.17|0.02|0.05|N|O|1996-09-17|1996-10-20|1996-10-06|COLLECT COD|AIR|thely silent accounts. s| +4489|138155|3182|5|25|29828.75|0.10|0.07|N|O|1996-07-27|1996-09-04|1996-07-28|NONE|REG AIR| sly theodolites. ev| +4490|176846|4398|1|2|3845.68|0.01|0.08|A|F|1994-01-28|1994-02-28|1994-02-07|NONE|SHIP|efully final requests. carefully ironic p| +4490|45200|7705|2|14|16032.80|0.10|0.02|A|F|1994-03-13|1994-02-05|1994-04-08|NONE|REG AIR|reach. ideas haggle perman| +4491|49786|9787|1|8|13886.24|0.09|0.03|N|O|1995-08-02|1995-08-01|1995-09-01|COLLECT COD|REG AIR|sly express | +4491|138481|6021|2|44|66857.12|0.07|0.05|N|O|1995-08-29|1995-09-21|1995-09-22|COLLECT COD|RAIL|gular accounts use slyly unusual req| +4492|10160|161|1|5|5350.80|0.07|0.07|A|F|1993-06-15|1993-05-31|1993-07-05|COLLECT COD|RAIL|luffily express pinto beans haggle slyl| +4492|144475|9504|2|31|47103.57|0.08|0.00|R|F|1993-07-18|1993-06-01|1993-07-27|DELIVER IN PERSON|MAIL|fully pending plate| +4492|189291|9292|3|41|56591.89|0.07|0.08|A|F|1993-04-25|1993-05-22|1993-05-09|DELIVER IN PERSON|REG AIR|onic requests are. blithely fi| +4492|12562|7565|4|49|72253.44|0.06|0.02|R|F|1993-07-15|1993-06-14|1993-07-21|DELIVER IN PERSON|SHIP|quests according t| +4492|114607|4608|5|48|77836.80|0.04|0.06|A|F|1993-06-26|1993-07-04|1993-07-09|NONE|SHIP|ly bold deposits| +4492|186232|1269|6|34|44819.82|0.03|0.00|R|F|1993-04-20|1993-05-10|1993-05-03|TAKE BACK RETURN|REG AIR|s. even foxes was slyly. carefully re| +4493|14637|7139|1|15|23274.45|0.03|0.01|N|O|1998-09-25|1998-07-04|1998-10-15|COLLECT COD|REG AIR|kages wake across th| +4493|192489|7528|2|47|74329.56|0.10|0.02|N|O|1998-06-20|1998-08-27|1998-07-11|COLLECT COD|SHIP|uctions. ironic, ironic instruction| +4493|161890|1891|3|45|87835.05|0.05|0.04|N|O|1998-08-26|1998-08-17|1998-09-15|DELIVER IN PERSON|RAIL|longside of th| +4493|76069|3591|4|25|26126.50|0.00|0.07|N|O|1998-09-04|1998-08-03|1998-09-15|NONE|MAIL|ecial accounts promise | +4493|80788|5805|5|37|65444.86|0.00|0.06|N|O|1998-09-03|1998-07-11|1998-09-27|COLLECT COD|REG AIR|nic, final requests along| +4494|13537|1041|1|36|52219.08|0.02|0.03|R|F|1994-08-13|1994-09-09|1994-08-15|COLLECT COD|REG AIR|ckly unusual acc| +4494|107648|2669|2|49|81126.36|0.09|0.00|A|F|1994-06-24|1994-08-10|1994-07-02|NONE|FOB|ckly regular ideas engage slyly ar| +4494|27129|9632|3|17|17954.04|0.06|0.07|R|F|1994-07-31|1994-08-29|1994-08-14|DELIVER IN PERSON|RAIL|its cajole slyly| +4494|151673|9219|4|1|1724.67|0.06|0.08|A|F|1994-09-17|1994-09-18|1994-10-10|COLLECT COD|FOB|ccounts against the slyly final dolph| +4495|96381|3909|1|47|64736.86|0.04|0.08|N|O|1998-06-13|1998-04-28|1998-06-20|TAKE BACK RETURN|TRUCK|eas cajole alongside of the blithely spec| +4495|71185|6200|2|23|26592.14|0.02|0.05|N|O|1998-04-05|1998-06-07|1998-04-27|NONE|TRUCK|ornis cajole| +4495|198824|8825|3|25|48070.50|0.09|0.05|N|O|1998-04-14|1998-05-15|1998-04-24|DELIVER IN PERSON|SHIP|its. special pint| +4495|32555|2556|4|14|20825.70|0.07|0.05|N|O|1998-05-12|1998-05-14|1998-06-04|NONE|FOB|press excuses according| +4495|136828|6829|5|22|41026.04|0.04|0.01|N|O|1998-04-09|1998-06-11|1998-04-13|COLLECT COD|REG AIR|le according to the slyly final packages:| +4495|61951|9470|6|13|24868.35|0.05|0.04|N|O|1998-07-18|1998-05-04|1998-07-21|DELIVER IN PERSON|MAIL|ously regular ideas-- permanently b| +4495|196215|6216|7|17|22290.57|0.07|0.08|N|O|1998-06-19|1998-05-16|1998-06-20|DELIVER IN PERSON|RAIL|en excuses use furiously speci| +4520|176321|8839|1|39|54495.48|0.07|0.00|N|O|1998-01-07|1998-01-29|1998-02-05|DELIVER IN PERSON|SHIP|sh ideas. packages snooze furiousl| +4521|113783|3784|1|49|88042.22|0.08|0.00|R|F|1993-05-17|1993-05-25|1993-06-11|DELIVER IN PERSON|TRUCK|ly ironic theodolites wake furiously ab| +4522|26839|4346|1|36|63569.88|0.08|0.08|N|O|1995-12-06|1995-12-15|1995-12-19|TAKE BACK RETURN|MAIL|ress, silent packages haggle bl| +4522|72062|2063|2|27|27919.62|0.07|0.07|N|O|1995-12-06|1995-11-29|1995-12-12|DELIVER IN PERSON|AIR|leep quickly among the slyly regular accoun| +4523|61555|9074|1|45|68244.75|0.07|0.01|A|F|1994-05-26|1994-05-31|1994-06-06|NONE|TRUCK|re slowly furi| +4523|150742|5773|2|43|77087.82|0.05|0.08|A|F|1994-07-26|1994-05-07|1994-08-17|COLLECT COD|RAIL|fluffily before the ironic warthogs. b| +4523|104109|4110|3|43|47863.30|0.09|0.07|A|F|1994-07-24|1994-06-23|1994-08-05|DELIVER IN PERSON|RAIL| beans cajole furiously along| +4523|157234|2265|4|19|24533.37|0.05|0.08|R|F|1994-05-31|1994-06-15|1994-06-24|COLLECT COD|MAIL|beans. regular the| +4524|161216|1217|1|49|62583.29|0.09|0.08|A|F|1992-08-31|1992-06-04|1992-09-14|DELIVER IN PERSON|AIR|thely regular accounts cajole| +4524|142475|4990|2|12|18209.64|0.09|0.07|R|F|1992-07-24|1992-06-15|1992-08-01|COLLECT COD|MAIL|uickly slyly | +4524|168875|8876|3|17|33045.79|0.10|0.04|R|F|1992-07-09|1992-07-29|1992-07-12|DELIVER IN PERSON|FOB|e slyly pending ideas. bold ideas run care| +4524|65940|3459|4|50|95297.00|0.10|0.07|A|F|1992-05-06|1992-07-05|1992-05-13|TAKE BACK RETURN|SHIP|s cajole along the express, even deposits| +4524|43269|3270|5|6|7273.56|0.02|0.06|A|F|1992-07-09|1992-07-11|1992-07-31|NONE|FOB|pecial dependencies wake slyly reques| +4525|144686|2229|1|2|3461.36|0.09|0.05|N|O|1997-05-24|1997-04-16|1997-05-25|TAKE BACK RETURN|FOB|bold packages. slyly ironi| +4526|116064|3598|1|20|21601.20|0.05|0.01|A|F|1994-12-19|1994-11-28|1995-01-06|TAKE BACK RETURN|RAIL|ter the ironic excuses. deposits are blit| +4526|77767|275|2|27|47108.52|0.01|0.05|R|F|1994-11-20|1994-11-26|1994-11-29|NONE|REG AIR|sly deposi| +4526|19614|2116|3|30|46008.30|0.09|0.06|R|F|1994-11-06|1994-12-23|1994-11-08|DELIVER IN PERSON|SHIP|sual ideas cajole furiously pen| +4526|41306|3811|4|41|51139.30|0.10|0.07|R|F|1994-12-14|1994-12-24|1995-01-10|NONE|FOB|nto beans detect alongside of | +4526|27976|2981|5|7|13327.79|0.01|0.06|R|F|1994-12-28|1994-11-27|1995-01-06|NONE|RAIL|urts are unusual, e| +4526|176725|1760|6|14|25224.08|0.07|0.00|R|F|1994-11-22|1994-11-21|1994-12-12|COLLECT COD|MAIL|sts. pending deposits integrate iron| +4527|68030|5549|1|3|2994.09|0.04|0.08|R|F|1993-01-22|1993-01-28|1993-01-24|TAKE BACK RETURN|FOB|foxes. quickly unusua| +4527|165930|8447|2|24|47902.32|0.00|0.00|A|F|1993-01-28|1993-02-01|1993-02-07|NONE|RAIL| accounts. | +4527|171757|4275|3|34|62177.50|0.10|0.00|R|F|1992-12-13|1993-03-05|1992-12-25|DELIVER IN PERSON|SHIP|tions. even deposits haggl| +4552|175755|3307|1|28|51261.00|0.00|0.00|N|O|1995-08-16|1995-06-26|1995-09-14|COLLECT COD|SHIP|regular forges haggl| +4553|63343|3344|1|13|16982.42|0.00|0.00|N|O|1998-01-26|1998-03-01|1998-02-20|COLLECT COD|REG AIR|s boost af| +4554|144174|4175|1|19|23145.23|0.09|0.01|N|F|1995-06-16|1995-05-21|1995-06-26|TAKE BACK RETURN|SHIP|rls haggle. stealthy, regular requests are | +4554|129187|6724|2|39|47431.02|0.00|0.08|R|F|1995-06-05|1995-06-15|1995-06-09|COLLECT COD|FOB| foxes. carefully final pa| +4555|102872|5383|1|43|80619.41|0.07|0.01|A|F|1995-02-17|1995-01-15|1995-02-19|DELIVER IN PERSON|MAIL|carefully accounts. packages cajole| +4555|166203|1236|2|38|48229.60|0.10|0.00|R|F|1995-03-16|1995-01-02|1995-03-29|TAKE BACK RETURN|RAIL|dugouts against the s| +4555|173779|8814|3|38|70405.26|0.10|0.08|R|F|1995-01-08|1994-12-18|1995-01-15|NONE|TRUCK|oost ironical| +4555|101566|4077|4|7|10972.92|0.10|0.06|R|F|1994-12-05|1994-12-20|1994-12-19|COLLECT COD|TRUCK|al, final asymptotes. furiously careful | +4555|15894|8396|5|26|47057.14|0.04|0.00|R|F|1994-12-24|1995-01-15|1994-12-25|COLLECT COD|AIR|usly pending packages along the unusua| +4555|121963|6988|6|16|31759.36|0.05|0.08|R|F|1995-03-07|1995-01-11|1995-04-05|TAKE BACK RETURN|RAIL|arefully regular deposits. foxes wake | +4556|61703|6716|1|29|48276.30|0.07|0.05|R|F|1994-07-30|1994-06-13|1994-08-26|NONE|AIR|r, pending accounts. requests| +4556|42222|9735|2|13|15134.86|0.05|0.04|R|F|1994-09-02|1994-06-15|1994-09-20|COLLECT COD|FOB|ions sleep slyly regular, iro| +4556|22353|9860|3|24|30608.40|0.04|0.01|A|F|1994-05-30|1994-06-29|1994-06-12|TAKE BACK RETURN|FOB| across the fu| +4556|80165|7690|4|27|30919.32|0.07|0.02|A|F|1994-06-18|1994-06-23|1994-06-23|NONE|SHIP| accounts. courts c| +4557|151338|1339|1|45|62519.85|0.09|0.05|N|O|1997-10-28|1997-09-22|1997-11-08|NONE|SHIP|ide of the even instructions boost f| +4557|123448|985|2|42|61800.48|0.01|0.04|N|O|1997-11-10|1997-09-17|1997-11-18|NONE|RAIL|odolites sleep carefully| +4558|182469|4988|1|43|66712.78|0.00|0.01|R|F|1992-12-11|1992-11-23|1993-01-10|COLLECT COD|SHIP|: carefully final foxes cajole dog| +4558|144458|2001|2|13|19531.85|0.03|0.08|R|F|1992-11-05|1992-11-15|1992-11-10|NONE|AIR|cross the slyly regular platelet| +4558|90863|8391|3|25|46346.50|0.08|0.07|A|F|1992-12-19|1992-12-08|1992-12-31|NONE|RAIL|ts. bold deposits after the requests cajole| +4558|118854|3877|4|14|26219.90|0.09|0.00|R|F|1992-12-24|1992-11-27|1992-12-31|DELIVER IN PERSON|REG AIR| ironic orbits alongside of t| +4558|176945|4497|5|30|60658.20|0.04|0.06|R|F|1992-10-19|1992-11-20|1992-10-24|COLLECT COD|RAIL|ke along the even, bold platelets. blithely| +4558|106322|3853|6|20|26566.40|0.09|0.08|R|F|1992-11-07|1993-01-11|1992-11-14|COLLECT COD|FOB|cross the quickly final packages. q| +4559|38111|615|1|16|16785.76|0.09|0.01|N|O|1996-08-16|1996-07-27|1996-08-31|NONE|FOB|ronic, regular accounts use quickl| +4559|124820|4821|2|43|79327.26|0.06|0.06|N|O|1996-06-26|1996-08-21|1996-07-13|NONE|REG AIR|lithely regul| +4584|107731|2752|1|29|50423.17|0.02|0.01|N|O|1998-03-24|1998-05-28|1998-04-12|NONE|RAIL|riously regula| +4584|31587|1588|2|11|16704.38|0.07|0.08|N|O|1998-03-21|1998-05-04|1998-04-14|NONE|AIR|ely about the express as| +4584|70831|8353|3|18|32432.94|0.03|0.02|N|O|1998-04-06|1998-05-01|1998-04-22|TAKE BACK RETURN|REG AIR| express instructions. blithely even| +4584|47661|166|4|46|73998.36|0.07|0.03|N|O|1998-04-04|1998-04-19|1998-04-22|COLLECT COD|AIR|riously regular request| +4584|29988|9989|5|36|69047.28|0.01|0.00|N|O|1998-03-09|1998-04-30|1998-03-16|NONE|MAIL|lyly pending ideas. final p| +4584|5436|437|6|31|41584.33|0.04|0.08|N|O|1998-04-16|1998-04-04|1998-04-28|COLLECT COD|RAIL|ackages according to th| +4584|160286|7835|7|50|67314.00|0.07|0.08|N|O|1998-06-16|1998-04-09|1998-06-20|COLLECT COD|FOB|sly regular packages are fluffily acc| +4585|121654|1655|1|44|73728.60|0.02|0.05|N|O|1996-03-18|1996-04-07|1996-03-28|COLLECT COD|REG AIR|ackages accordin| +4585|29996|7503|2|15|28889.85|0.07|0.05|N|O|1996-02-16|1996-03-19|1996-03-03|NONE|RAIL|to beans boost according to th| +4585|131175|3689|3|11|13267.87|0.04|0.07|N|O|1996-04-30|1996-03-25|1996-05-24|COLLECT COD|MAIL|efully ironic theodolite| +4585|46391|3904|4|12|16048.68|0.02|0.00|N|O|1996-03-23|1996-02-13|1996-04-14|TAKE BACK RETURN|MAIL|instructions. pending, pending excuses | +4585|76760|6761|5|35|60786.60|0.02|0.07|N|O|1996-03-31|1996-03-30|1996-04-09|DELIVER IN PERSON|AIR|ress, final | +4585|103015|3016|6|40|40720.40|0.08|0.07|N|O|1996-01-15|1996-03-13|1996-02-01|DELIVER IN PERSON|REG AIR|s. furiously regular requests nag| +4586|44678|7183|1|18|29208.06|0.02|0.01|N|O|1996-06-07|1996-05-07|1996-06-23|TAKE BACK RETURN|MAIL|lar packages are quickly slyly pend| +4586|95564|3092|2|21|32750.76|0.05|0.07|N|O|1996-05-07|1996-03-28|1996-05-20|DELIVER IN PERSON|TRUCK|ular pinto bea| +4586|143556|1099|3|27|43187.85|0.06|0.01|N|O|1996-02-24|1996-04-09|1996-03-04|COLLECT COD|MAIL|y special deposits alongside of the de| +4586|145667|3210|4|18|30827.88|0.00|0.00|N|O|1996-06-08|1996-03-23|1996-07-04|DELIVER IN PERSON|FOB|bout the final, unu| +4586|20744|745|5|26|43283.24|0.01|0.08|N|O|1996-03-18|1996-03-23|1996-03-24|COLLECT COD|RAIL|each against the ideas. ironi| +4586|39941|7451|6|25|47023.50|0.00|0.00|N|O|1996-05-21|1996-04-29|1996-05-27|NONE|RAIL|to beans. theodolite| +4587|34918|7422|1|22|40764.02|0.04|0.07|N|O|1997-08-21|1997-10-04|1997-09-09|NONE|RAIL|ites cajole furiously after the blithely fi| +4587|56272|3788|2|25|30706.75|0.03|0.08|N|O|1997-09-24|1997-11-11|1997-10-02|NONE|AIR|y pending depend| +4587|154570|9601|3|31|50361.67|0.05|0.06|N|O|1997-12-06|1997-11-12|1998-01-04|DELIVER IN PERSON|FOB|ar accounts. carefu| +4588|137684|198|1|16|27546.88|0.02|0.06|N|O|1998-02-13|1998-02-28|1998-03-10|COLLECT COD|RAIL|ld theodolites| +4588|50588|589|2|43|66158.94|0.00|0.01|N|O|1998-01-04|1998-02-26|1998-01-10|NONE|SHIP| pending pinto beans. even, bold pinto bean| +4588|25728|8231|3|17|28113.24|0.01|0.06|N|O|1998-02-15|1998-02-01|1998-02-28|DELIVER IN PERSON|TRUCK|o beans wake quickly. ironic requests hang | +4588|9159|9160|4|49|52339.35|0.03|0.04|N|O|1998-01-13|1998-03-14|1998-01-27|DELIVER IN PERSON|REG AIR| blithely quick pinto bea| +4588|130409|410|5|13|18712.20|0.03|0.00|N|O|1998-01-05|1998-03-11|1998-01-10|COLLECT COD|FOB|efully even pack| +4589|117094|2117|1|10|11110.90|0.09|0.08|N|O|1997-11-21|1997-12-24|1997-12-04|NONE|AIR|e furiously regular foxes. | +4589|192457|4977|2|35|54230.75|0.00|0.06|N|O|1998-01-10|1998-02-05|1998-01-12|DELIVER IN PERSON|RAIL|icingly. furiously slow account| +4589|13518|3519|3|18|25767.18|0.00|0.04|N|O|1998-03-04|1997-12-22|1998-03-11|NONE|TRUCK|uffily blithel| +4590|156437|3983|1|40|59737.20|0.09|0.02|R|F|1993-06-05|1993-05-07|1993-06-06|TAKE BACK RETURN|TRUCK|g slyly final depo| +4590|23115|3116|2|15|15571.65|0.05|0.06|A|F|1993-06-21|1993-06-10|1993-07-10|DELIVER IN PERSON|MAIL|e furiously dolphins. exc| +4590|77239|2254|3|43|52297.89|0.00|0.00|A|F|1993-06-26|1993-06-22|1993-07-16|NONE|TRUCK|special, final foxes are carefully at the| +4590|154546|2092|4|44|70423.76|0.00|0.04|R|F|1993-04-05|1993-06-18|1993-04-13|COLLECT COD|SHIP|s thrash across the sly reque| +4590|47304|4817|5|7|8759.10|0.05|0.00|R|F|1993-05-31|1993-06-10|1993-06-12|DELIVER IN PERSON|FOB|deposits are fl| +4590|29751|2254|6|10|16807.50|0.00|0.01|A|F|1993-04-08|1993-05-26|1993-04-19|COLLECT COD|AIR|r the blithely special asymptotes-- blit| +4591|81282|8807|1|40|50531.20|0.03|0.08|A|F|1994-08-07|1994-09-09|1994-09-01|DELIVER IN PERSON|FOB|es. quickly ironic packages among t| +4591|100202|5223|2|42|50492.40|0.10|0.02|R|F|1994-11-12|1994-10-25|1994-11-20|DELIVER IN PERSON|REG AIR|ly even accounts. sile| +4591|91749|9277|3|36|62666.64|0.05|0.03|A|F|1994-11-27|1994-10-15|1994-12-05|COLLECT COD|SHIP|uriously even platelets about | +4591|23168|8173|4|6|6546.96|0.08|0.02|A|F|1994-09-17|1994-10-15|1994-09-29|DELIVER IN PERSON|REG AIR|. ironic, final pinto beans nag along the | +4591|178704|8705|5|49|87352.30|0.07|0.02|A|F|1994-11-27|1994-10-10|1994-12-02|NONE|RAIL|lar excuses agai| +4591|71598|6613|6|42|65922.78|0.00|0.04|R|F|1994-10-01|1994-09-19|1994-10-08|TAKE BACK RETURN|REG AIR|ial excuses wake slyly. ironi| +4616|127896|5433|1|42|80803.38|0.05|0.06|N|O|1997-08-24|1997-08-01|1997-09-20|TAKE BACK RETURN|REG AIR|ily special theodolites.| +4616|137030|4570|2|7|7469.21|0.03|0.05|N|O|1997-08-07|1997-08-01|1997-09-06|TAKE BACK RETURN|AIR|arefully regular pinto beans| +4617|191389|3909|1|49|72538.62|0.05|0.01|N|O|1996-11-30|1996-11-03|1996-12-17|NONE|FOB|ely regular requests| +4617|71114|6129|2|13|14106.43|0.09|0.01|N|O|1996-12-21|1996-10-17|1997-01-13|COLLECT COD|RAIL|beans boost according to the ironi| +4617|9357|6858|3|25|31658.75|0.09|0.04|N|O|1996-12-13|1996-11-06|1996-12-24|NONE|TRUCK|bout the carefully pending| +4617|56437|8943|4|2|2786.86|0.06|0.04|N|O|1996-11-26|1996-11-12|1996-12-26|NONE|RAIL|fluffily again| +4617|128750|8751|5|7|12451.25|0.07|0.02|N|O|1996-10-11|1996-11-26|1996-10-12|DELIVER IN PERSON|RAIL|ial packages. accoun| +4618|121264|6289|1|44|56551.44|0.07|0.08|N|O|1996-04-27|1996-06-04|1996-05-25|NONE|FOB|accounts. quickly ironic accou| +4618|75438|5439|2|10|14134.30|0.08|0.07|N|O|1996-06-04|1996-05-16|1996-06-09|TAKE BACK RETURN|MAIL|ts wake furiously final | +4618|80833|834|3|39|70739.37|0.07|0.04|N|O|1996-06-26|1996-05-21|1996-07-08|DELIVER IN PERSON|AIR|ending requests. silent accounts use slyl| +4618|158110|5656|4|33|38547.63|0.05|0.08|N|O|1996-03-23|1996-05-07|1996-04-09|NONE|AIR|ages according t| +4619|138550|8551|1|4|6354.20|0.05|0.04|N|O|1996-07-09|1996-07-10|1996-07-16|TAKE BACK RETURN|REG AIR|y busy instructions wake under| +4619|3327|828|2|19|23376.08|0.06|0.00|N|O|1996-05-27|1996-07-20|1996-06-08|NONE|REG AIR|ncies sleep furiously within the| +4619|113276|810|3|38|48992.26|0.04|0.08|N|O|1996-08-22|1996-05-31|1996-09-07|NONE|REG AIR|nt dependencies. ironic asymptot| +4619|23273|3274|4|49|58617.23|0.02|0.01|N|O|1996-05-05|1996-06-15|1996-06-03|NONE|SHIP| regular ac| +4620|9896|9897|1|37|66817.93|0.01|0.08|R|F|1992-10-30|1992-10-21|1992-11-16|TAKE BACK RETURN|TRUCK|? pending re| +4620|118692|3715|2|12|20528.28|0.01|0.02|A|F|1992-09-19|1992-10-07|1992-09-21|TAKE BACK RETURN|REG AIR|unts. care| +4621|53528|1044|1|7|10370.64|0.01|0.02|R|F|1992-05-24|1992-06-17|1992-05-29|TAKE BACK RETURN|SHIP|sly final accounts haggle slyly fluffily r| +4621|39013|4020|2|50|47600.50|0.00|0.07|A|F|1992-08-24|1992-07-13|1992-09-04|DELIVER IN PERSON|FOB|ly ironic requests th| +4622|9493|4494|1|22|30854.78|0.02|0.02|A|F|1992-07-09|1992-07-14|1992-07-17|COLLECT COD|MAIL|s. fluffily| +4622|145492|5493|2|28|43049.72|0.00|0.00|A|F|1992-05-24|1992-06-06|1992-06-01|TAKE BACK RETURN|FOB|osits. pending packages might nag| +4623|80775|3284|1|35|61451.95|0.05|0.06|N|O|1996-05-13|1996-07-13|1996-06-09|DELIVER IN PERSON|SHIP|nts impress blithely among the regular re| +4623|174727|7245|2|36|64861.92|0.08|0.05|N|O|1996-06-22|1996-08-02|1996-06-28|NONE|AIR|kages against the packages use alon| +4648|157249|9765|1|25|32656.00|0.05|0.08|R|F|1993-12-12|1994-02-13|1993-12-28|COLLECT COD|SHIP|into beans. | +4648|71598|4106|2|49|76909.91|0.09|0.08|A|F|1994-02-09|1994-02-10|1994-03-04|TAKE BACK RETURN|RAIL|tions. unusual, bold ideas x-ray ab| +4648|141360|1361|3|19|26625.84|0.02|0.04|R|F|1994-02-03|1994-02-03|1994-02-15|TAKE BACK RETURN|SHIP|ckages pro| +4648|31975|9485|4|12|22883.64|0.09|0.05|A|F|1994-04-04|1994-01-30|1994-04-05|TAKE BACK RETURN|AIR|carefully. instructions sublate furious| +4649|57945|7946|1|4|7611.76|0.01|0.01|A|F|1994-02-05|1994-02-14|1994-03-04|DELIVER IN PERSON|MAIL|quickly pendin| +4649|68596|8597|2|13|20339.67|0.02|0.00|R|F|1994-01-16|1994-03-07|1994-02-10|TAKE BACK RETURN|SHIP|ses. quickly| +4649|86852|4377|3|35|64359.75|0.07|0.05|R|F|1994-04-10|1994-03-10|1994-05-07|TAKE BACK RETURN|SHIP|e regular the| +4649|111328|8862|4|30|40179.60|0.04|0.03|A|F|1994-03-21|1994-01-20|1994-03-28|DELIVER IN PERSON|AIR|ular foxes. dogged| +4649|86659|1676|5|13|21393.45|0.04|0.01|A|F|1994-01-05|1994-03-08|1994-01-18|COLLECT COD|REG AIR| final requests affix quickly s| +4650|177166|4718|1|29|36051.64|0.03|0.01|N|O|1997-10-22|1997-09-11|1997-11-02|TAKE BACK RETURN|RAIL|usly. slyly ironic ideas boost carefull| +4650|17001|9503|2|41|37638.00|0.00|0.04|N|O|1997-08-03|1997-09-14|1997-08-26|COLLECT COD|FOB|ular accounts affix bli| +4651|157106|2137|1|42|48850.20|0.01|0.04|N|O|1997-06-27|1997-06-16|1997-07-21|TAKE BACK RETURN|SHIP| idle ideas boost carefully. ironic inst| +4652|138807|8808|1|36|66448.80|0.07|0.08|N|O|1996-01-31|1996-02-15|1996-02-26|DELIVER IN PERSON|MAIL|iously pending p| +4652|113844|3845|2|24|44588.16|0.04|0.05|N|O|1996-03-22|1996-01-21|1996-04-21|DELIVER IN PERSON|REG AIR|lar deposits. slyly | +4652|170391|392|3|32|46764.48|0.04|0.05|N|O|1996-02-24|1996-01-15|1996-03-22|COLLECT COD|TRUCK|ses. ironic, bold asymptotes boost carefu| +4652|157609|5155|4|28|46664.80|0.01|0.03|N|O|1995-12-02|1996-02-26|1996-01-01|COLLECT COD|REG AIR|y pending instructions. slyly | +4652|134073|6587|5|25|27676.75|0.08|0.06|N|O|1996-03-25|1996-02-01|1996-04-07|TAKE BACK RETURN|TRUCK| express packages detect blithely deposits?| +4652|153272|3273|6|36|47709.72|0.04|0.03|N|O|1996-03-15|1996-02-18|1996-03-17|DELIVER IN PERSON|SHIP|eodolites boost sl| +4653|97897|7898|1|50|94744.50|0.05|0.06|R|F|1993-05-03|1993-05-26|1993-05-06|TAKE BACK RETURN|SHIP|ly regular instructions affix bold, re| +4653|152618|164|2|43|71836.23|0.01|0.02|A|F|1993-07-09|1993-06-01|1993-07-16|COLLECT COD|REG AIR|s. pending, f| +4653|38201|8202|3|18|20505.60|0.09|0.08|R|F|1993-03-23|1993-04-26|1993-04-14|NONE|FOB|s eat slyly blithely special accounts| +4653|33828|1338|4|14|24665.48|0.09|0.04|A|F|1993-06-14|1993-05-12|1993-07-12|DELIVER IN PERSON|SHIP|the silent, fina| +4654|79528|7050|1|31|46733.12|0.10|0.03|N|O|1998-03-14|1998-04-26|1998-04-03|COLLECT COD|REG AIR|nding saut| +4655|91668|4178|1|27|44810.82|0.00|0.05|R|F|1992-03-17|1992-05-11|1992-03-24|COLLECT COD|SHIP|e carefully regular warhorses| +4655|53442|8453|2|37|51631.28|0.10|0.01|R|F|1992-03-17|1992-05-09|1992-03-23|NONE|REG AIR|lites haggle slyly quiet| +4655|197942|5500|3|24|48958.56|0.01|0.04|A|F|1992-03-09|1992-05-13|1992-03-23|NONE|REG AIR|deas. furiously| +4655|10618|8122|4|50|76430.50|0.06|0.06|R|F|1992-04-25|1992-04-21|1992-05-06|TAKE BACK RETURN|RAIL|en sheaves. carefully regular requests ar| +4655|49212|6725|5|3|3483.63|0.09|0.04|R|F|1992-06-18|1992-04-29|1992-07-02|COLLECT COD|RAIL|ts affix slyly | +4655|96054|6055|6|2|2100.10|0.08|0.05|R|F|1992-04-28|1992-04-07|1992-05-13|TAKE BACK RETURN|TRUCK|y. pending accounts haggle b| +4655|170202|203|7|22|27988.40|0.09|0.02|R|F|1992-05-16|1992-05-12|1992-05-28|TAKE BACK RETURN|RAIL|hely: quickly qu| +4680|181370|8925|1|19|27576.03|0.01|0.03|N|O|1997-07-12|1997-05-13|1997-07-14|DELIVER IN PERSON|TRUCK|the furiously regul| +4680|74901|7409|2|8|15007.20|0.03|0.02|N|O|1997-07-05|1997-06-01|1997-07-12|COLLECT COD|MAIL| doze slyly about the caref| +4680|49402|4411|3|50|67570.00|0.00|0.07|N|O|1997-04-12|1997-06-08|1997-05-01|NONE|MAIL|fily fluffy | +4680|91653|9181|4|45|74009.25|0.03|0.05|N|O|1997-07-15|1997-05-04|1997-07-19|DELIVER IN PERSON|AIR|en excuses. depths wake slyly bl| +4680|1247|3748|5|33|37891.92|0.10|0.08|N|O|1997-07-01|1997-05-31|1997-07-11|TAKE BACK RETURN|MAIL|sleep across the quickly ironic | +4680|150565|566|6|40|64622.40|0.09|0.01|N|O|1997-07-06|1997-05-13|1997-07-16|COLLECT COD|REG AIR| against th| +4680|135837|3377|7|12|22473.96|0.06|0.02|N|O|1997-04-06|1997-05-21|1997-04-15|DELIVER IN PERSON|RAIL|osits. slyly regular | +4681|199091|4130|1|40|47603.60|0.04|0.07|R|F|1993-03-10|1993-03-20|1993-03-18|NONE|RAIL|egrate among the evenly regular platelet| +4681|111149|3661|2|26|30163.64|0.00|0.01|A|F|1993-03-25|1993-04-23|1993-04-15|TAKE BACK RETURN|TRUCK|fily quickly ironic requests. slyly regul| +4681|73174|8189|3|29|33267.93|0.00|0.08|R|F|1993-02-16|1993-04-03|1993-02-19|COLLECT COD|REG AIR| requests. slyly regular mul| +4681|25066|2573|4|2|1982.12|0.04|0.06|R|F|1993-05-18|1993-05-06|1993-06-16|COLLECT COD|SHIP|arefully express reques| +4681|74037|4038|5|32|32352.96|0.07|0.02|A|F|1993-05-08|1993-04-27|1993-06-05|DELIVER IN PERSON|FOB| special deposits. qu| +4681|137880|2907|6|25|47947.00|0.04|0.04|R|F|1993-04-12|1993-05-14|1993-05-10|DELIVER IN PERSON|FOB|s. carefully ironic depths haggle | +4682|107002|4533|1|5|5045.00|0.08|0.02|N|O|1996-06-11|1996-05-06|1996-07-04|COLLECT COD|SHIP|he furiously regular theodolites.| +4683|9225|6726|1|37|41966.14|0.03|0.07|N|O|1995-12-19|1995-11-16|1995-12-27|COLLECT COD|FOB|lowly expr| +4683|28633|8634|2|30|46848.90|0.07|0.08|N|O|1995-09-22|1995-12-05|1995-10-10|TAKE BACK RETURN|AIR|slow packages use carefully ironic sa| +4683|23819|3820|3|9|15685.29|0.05|0.06|N|O|1995-10-09|1995-10-17|1995-10-12|NONE|MAIL|accounts. ironic accounts use| +4683|122459|7484|4|9|13333.05|0.04|0.01|N|O|1995-10-25|1995-10-16|1995-11-12|NONE|TRUCK|regular packages. final requests grow| +4684|61467|3974|1|45|64280.70|0.05|0.05|R|F|1994-08-29|1994-08-28|1994-09-28|NONE|AIR|refully iron| +4684|72541|5049|2|6|9081.24|0.02|0.00|A|F|1994-08-20|1994-10-05|1994-08-31|TAKE BACK RETURN|RAIL|ly. slyly express notornis affix. d| +4684|183296|851|3|50|68964.50|0.06|0.04|R|F|1994-08-08|1994-09-28|1994-08-14|COLLECT COD|RAIL|e blithely against | +4684|55367|2883|4|35|46282.60|0.05|0.08|R|F|1994-11-04|1994-10-03|1994-11-18|NONE|RAIL|lar instructions toward the slyly| +4684|148558|3587|5|7|11245.85|0.09|0.01|A|F|1994-09-08|1994-09-12|1994-10-01|COLLECT COD|AIR|. carefully close instr| +4684|198342|8343|6|9|12963.06|0.04|0.00|R|F|1994-08-13|1994-10-14|1994-09-02|NONE|FOB|e furiously regular requests are bl| +4684|126081|6082|7|16|17713.28|0.03|0.08|A|F|1994-08-12|1994-10-02|1994-08-17|NONE|MAIL|ironic gifts. daring deposits except the| +4685|37555|7556|1|46|68657.30|0.02|0.03|A|F|1994-09-16|1994-09-15|1994-10-12|TAKE BACK RETURN|MAIL| furiously ironic requests mold | +4685|176395|3947|2|16|23542.24|0.08|0.02|A|F|1994-09-03|1994-09-11|1994-09-29|NONE|REG AIR|furiously | +4686|158054|5600|1|37|41145.85|0.06|0.06|N|O|1995-12-22|1995-10-03|1996-01-07|COLLECT COD|SHIP| regular theodolites among the | +4686|198084|3123|2|5|5910.40|0.07|0.02|N|O|1995-11-28|1995-10-21|1995-12-04|COLLECT COD|AIR|unts alongsid| +4686|194439|4440|3|6|9200.58|0.00|0.01|N|O|1995-11-15|1995-11-27|1995-11-27|COLLECT COD|MAIL|he ruthlessly final ideas nod after | +4687|103130|3131|1|11|12464.43|0.03|0.02|N|O|1997-05-05|1997-03-05|1997-05-13|DELIVER IN PERSON|TRUCK|ent requests wake | +4687|93783|8802|2|8|14214.24|0.10|0.00|N|O|1997-02-01|1997-04-06|1997-02-26|DELIVER IN PERSON|RAIL|ions haggle bli| +4712|116377|1400|1|44|61308.28|0.07|0.02|R|F|1993-04-24|1993-03-15|1993-05-02|TAKE BACK RETURN|MAIL|oys affix slyly furiously regular c| +4712|137004|2031|2|27|28107.00|0.04|0.07|A|F|1993-04-04|1993-03-22|1993-04-13|NONE|FOB|final accounts cajole according to th| +4712|18945|1447|3|34|63373.96|0.10|0.06|A|F|1993-05-30|1993-04-13|1993-06-14|NONE|REG AIR|. deposits along| +4713|151453|3969|1|26|39115.70|0.02|0.07|N|O|1996-11-07|1996-12-14|1996-12-02|DELIVER IN PERSON|TRUCK|ic instructions. evenly express | +4713|59699|4710|2|3|4976.07|0.02|0.08|N|O|1997-01-06|1996-11-13|1997-01-22|TAKE BACK RETURN|REG AIR|al, special i| +4713|155937|5938|3|47|93667.71|0.03|0.00|N|O|1997-01-10|1996-11-04|1997-02-04|TAKE BACK RETURN|AIR|n sheaves are carefully spe| +4713|27399|7400|4|42|55708.38|0.07|0.02|N|O|1997-01-16|1996-11-05|1997-01-27|TAKE BACK RETURN|FOB|lent packages print acco| +4714|67565|7566|1|43|65900.08|0.03|0.06|N|O|1998-05-18|1998-06-17|1998-05-24|COLLECT COD|AIR|even deposits do haggle. express deposits | +4714|154276|6792|2|14|18623.78|0.05|0.07|N|O|1998-04-12|1998-05-26|1998-04-24|NONE|AIR|instructions. instructions after the qu| +4714|100963|3474|3|35|68738.60|0.10|0.06|N|O|1998-04-06|1998-05-03|1998-04-09|NONE|FOB|. theodolites by the quickly bold frays eat| +4714|76003|1018|4|31|30349.00|0.10|0.08|N|O|1998-05-06|1998-05-06|1998-05-14|COLLECT COD|SHIP|regular packages nag enticingly quickly | +4715|12828|2829|1|6|10444.92|0.00|0.00|N|O|1995-08-29|1995-09-15|1995-09-17|TAKE BACK RETURN|FOB|sts. special, unusual instruction| +4715|186791|6792|2|33|61967.07|0.08|0.01|N|O|1995-10-14|1995-10-25|1995-11-13|TAKE BACK RETURN|FOB|re slyly unusual pinto beans. even ideas a| +4715|193129|687|3|31|37885.72|0.05|0.03|N|O|1995-09-03|1995-10-22|1995-09-25|DELIVER IN PERSON|FOB|cies. deposits sleep. | +4715|117729|7730|4|37|64628.64|0.10|0.08|N|O|1995-09-07|1995-11-04|1995-09-27|DELIVER IN PERSON|MAIL|ve to use slyly blithely| +4715|58001|5517|5|41|39319.00|0.00|0.02|N|O|1995-10-06|1995-11-01|1995-11-03|TAKE BACK RETURN|TRUCK| detect furiously agai| +4715|17681|2684|6|20|31973.60|0.01|0.04|N|O|1995-10-11|1995-09-22|1995-10-20|NONE|MAIL|riously ironic packages eat furio| +4716|155298|5299|1|19|25712.51|0.03|0.03|R|F|1994-07-14|1994-08-09|1994-07-17|DELIVER IN PERSON|AIR|luffily. slyly final deposi| +4716|87397|7398|2|4|5537.56|0.03|0.04|R|F|1994-07-03|1994-07-02|1994-07-21|NONE|FOB|rding to the quickl| +4717|126846|9359|1|49|91769.16|0.01|0.05|N|O|1995-11-10|1995-11-12|1995-12-06|COLLECT COD|MAIL|lyly above the| +4717|86880|6881|2|1|1866.88|0.10|0.02|N|O|1995-10-30|1995-10-27|1995-11-20|NONE|RAIL|e of the quickly final theodolite| +4717|185431|2986|3|22|33361.46|0.08|0.01|N|O|1995-11-25|1995-11-01|1995-12-06|COLLECT COD|FOB|uickly until the furi| +4718|39006|1510|1|18|17010.00|0.08|0.06|N|O|1996-05-31|1996-06-25|1996-06-04|DELIVER IN PERSON|AIR|above the ironic theo| +4718|171343|1344|2|1|1414.34|0.06|0.03|N|O|1996-06-06|1996-06-23|1996-07-05|NONE|TRUCK|efully special pinto beans. fluffi| +4718|157890|5436|3|37|72071.93|0.01|0.01|N|O|1996-06-02|1996-06-30|1996-06-30|DELIVER IN PERSON|SHIP| escapades are.| +4718|56302|6303|4|37|46557.10|0.02|0.02|N|O|1996-06-16|1996-06-17|1996-07-10|TAKE BACK RETURN|REG AIR|haggle against the pending ideas. car| +4718|60963|5976|5|39|75034.44|0.03|0.05|N|O|1996-05-07|1996-07-19|1996-05-18|TAKE BACK RETURN|REG AIR|nts use blithely regular, bold ideas. | +4718|192418|4938|6|21|31718.61|0.09|0.00|N|O|1996-08-10|1996-06-06|1996-08-26|NONE|RAIL|capades. finally unusual theodo| +4719|158278|3309|1|1|1336.27|0.05|0.03|N|O|1997-03-27|1997-04-10|1997-03-28|COLLECT COD|MAIL|gside of the requests. blithely stealthy as| +4719|162084|7117|2|22|25213.76|0.06|0.05|N|O|1997-06-21|1997-04-13|1997-07-04|TAKE BACK RETURN|TRUCK|unusual requests. ironic, even escapa| +4719|141501|9044|3|37|57072.50|0.04|0.05|N|O|1997-05-28|1997-04-17|1997-06-12|TAKE BACK RETURN|REG AIR|after the attainments. pinto be| +4719|197209|4767|4|16|20899.20|0.07|0.04|N|O|1997-04-06|1997-04-27|1997-04-13|TAKE BACK RETURN|SHIP|ly unusual requests. pending r| +4744|56172|3688|1|28|31588.76|0.05|0.03|R|F|1994-05-08|1994-04-17|1994-05-30|COLLECT COD|SHIP|ully ironic, bold platelets. b| +4744|68758|8759|2|16|27628.00|0.08|0.02|R|F|1994-03-08|1994-03-24|1994-03-23|COLLECT COD|MAIL|use furiously according to | +4744|270|7771|3|49|57343.23|0.10|0.07|R|F|1994-05-01|1994-03-17|1994-05-27|NONE|TRUCK|deposits wake. ironic foxes lose carefull| +4744|125553|5554|4|43|67877.65|0.07|0.00|A|F|1994-02-18|1994-04-04|1994-02-22|NONE|SHIP|ons to the unusu| +4745|164984|17|1|20|40979.60|0.00|0.06|N|O|1996-03-14|1996-04-21|1996-04-06|COLLECT COD|FOB|uffily carefully ironic excuses. enti| +4746|104534|4535|1|39|60002.67|0.09|0.07|N|O|1998-01-28|1998-02-02|1998-02-23|DELIVER IN PERSON|AIR|ruthlessly regula| +4746|91791|6810|2|46|82008.34|0.03|0.01|N|O|1997-12-14|1998-01-04|1997-12-16|DELIVER IN PERSON|SHIP|counts sleep carefully regul| +4746|122395|4908|3|15|21260.85|0.01|0.04|N|O|1998-02-15|1998-01-17|1998-03-15|COLLECT COD|FOB|ld deposits. ir| +4747|76239|8747|1|36|43748.28|0.08|0.08|N|O|1998-03-16|1998-03-29|1998-04-03|COLLECT COD|SHIP|ages haggle at the quickly final| +4747|136161|3701|2|15|17957.40|0.10|0.02|N|O|1998-06-01|1998-04-10|1998-06-02|COLLECT COD|SHIP|express theodolites along the pending packa| +4747|43312|3313|3|38|47701.78|0.07|0.07|N|O|1998-04-25|1998-04-17|1998-05-06|DELIVER IN PERSON|AIR|ly even accounts. quickly silent dependenci| +4747|137641|2668|4|9|15107.76|0.01|0.04|N|O|1998-03-20|1998-04-19|1998-03-25|COLLECT COD|TRUCK| special requests. furious request| +4748|109453|1964|1|30|43873.50|0.04|0.07|A|F|1994-11-08|1994-12-17|1994-11-27|COLLECT COD|REG AIR|slyly close ideas lose carefully ac| +4748|164685|7202|2|33|57739.44|0.04|0.07|A|F|1995-02-17|1994-12-16|1995-02-20|COLLECT COD|REG AIR|xes cajole bold packages. quickly bold theo| +4748|47220|9725|3|44|51357.68|0.09|0.05|A|F|1994-12-17|1994-12-03|1995-01-05|COLLECT COD|REG AIR|s may nod carefully? care| +4748|15303|306|4|17|20711.10|0.07|0.05|A|F|1995-01-10|1995-01-05|1995-01-14|COLLECT COD|FOB|onic requests. even, bold platelets | +4748|194333|1891|5|10|14273.30|0.02|0.00|R|F|1994-11-26|1995-01-14|1994-12-10|TAKE BACK RETURN|SHIP|. ironic, ironic accounts wou| +4748|140370|371|6|43|60645.91|0.02|0.00|A|F|1994-11-21|1995-01-10|1994-11-29|DELIVER IN PERSON|TRUCK|ronic theodolites mold packages. u| +4748|195700|739|7|3|5387.10|0.01|0.05|A|F|1994-12-21|1994-12-25|1995-01-09|NONE|FOB|nto beans. furiously unusual courts cajole | +4749|121359|3872|1|28|38649.80|0.02|0.01|R|F|1992-01-25|1992-03-03|1992-02-21|COLLECT COD|SHIP|ar theodolites believe fluffily| +4749|79758|9759|2|27|46919.25|0.06|0.06|A|F|1992-03-21|1992-03-19|1992-03-31|DELIVER IN PERSON|FOB|. express requests acr| +4749|80487|488|3|34|49894.32|0.10|0.08|R|F|1992-05-06|1992-02-15|1992-05-08|COLLECT COD|AIR|regular ex| +4749|137502|16|4|50|76975.00|0.10|0.02|A|F|1992-04-25|1992-04-01|1992-05-09|DELIVER IN PERSON|FOB|ckly final dolphins are furio| +4749|182578|2579|5|13|21587.41|0.03|0.08|R|F|1992-04-12|1992-03-26|1992-05-07|COLLECT COD|FOB|the slyly idle| +4750|167383|7384|1|40|58015.20|0.00|0.07|R|F|1994-02-11|1993-12-25|1994-02-20|NONE|REG AIR|l deposits. dependencies across the | +4750|2773|2774|2|36|60327.72|0.01|0.00|A|F|1993-12-29|1994-01-29|1993-12-30|DELIVER IN PERSON|FOB| final instructions ha| +4750|4212|4213|3|5|5581.05|0.01|0.08|A|F|1994-01-23|1994-01-04|1994-02-09|COLLECT COD|REG AIR|inal accounts wake theodolites. s| +4750|185319|5320|4|40|56172.40|0.05|0.00|R|F|1994-01-06|1994-02-16|1994-01-11|NONE|REG AIR|uctions sleep quickly blithely silent a| +4750|42116|7125|5|9|9522.99|0.10|0.07|R|F|1994-03-15|1994-01-10|1994-03-23|DELIVER IN PERSON|RAIL|te furiously. sly p| +4751|112261|7284|1|16|20372.16|0.05|0.08|N|O|1997-12-10|1997-10-31|1997-12-23|NONE|RAIL|bold platelets-- packages sl| +4751|165798|3347|2|46|85734.34|0.02|0.02|N|O|1997-12-11|1997-10-16|1997-12-17|DELIVER IN PERSON|RAIL|ly pending packa| +4751|156564|4110|3|25|40514.00|0.00|0.00|N|O|1997-11-02|1997-10-17|1997-11-22|TAKE BACK RETURN|REG AIR|leep furiously even dolphins.| +4751|164132|4133|4|13|15549.69|0.06|0.08|N|O|1997-09-18|1997-10-26|1997-10-13|NONE|FOB|ress deposits impress; excuse| +4751|159638|2154|5|34|57719.42|0.01|0.00|N|O|1997-09-18|1997-11-14|1997-09-26|COLLECT COD|FOB|uses. ironic asymptotes | +4751|22270|7275|6|14|16691.78|0.06|0.01|N|O|1997-11-20|1997-11-06|1997-12-02|COLLECT COD|FOB|. slyly ironic foxes do a| +4751|87184|2201|7|20|23423.60|0.10|0.08|N|O|1997-09-14|1997-11-06|1997-09-22|TAKE BACK RETURN|FOB| ironic dugouts nag carefully final or| +4776|85946|3471|1|32|61822.08|0.08|0.01|R|F|1992-03-20|1992-03-20|1992-03-27|DELIVER IN PERSON|MAIL|he express dep| +4777|3656|8657|1|13|20275.45|0.05|0.02|A|F|1992-12-30|1992-12-08|1993-01-08|COLLECT COD|RAIL|deposits. slyly regular ins| +4777|37653|7654|2|44|69988.60|0.06|0.04|A|F|1992-11-23|1993-01-26|1992-12-09|DELIVER IN PERSON|AIR|ts wake slyly. requests among the furiousl| +4778|170214|5249|1|28|35957.88|0.05|0.08|R|F|1994-01-28|1994-02-26|1994-02-01|DELIVER IN PERSON|MAIL|ites sleep. even, regular| +4778|180507|508|2|23|36512.50|0.04|0.04|A|F|1994-02-18|1994-03-16|1994-03-18|COLLECT COD|SHIP|arefully regular foxes. fluffily| +4779|157870|386|1|31|59763.97|0.09|0.04|N|O|1997-11-17|1997-10-29|1997-12-07|TAKE BACK RETURN|SHIP|xpress exc| +4779|104493|9514|2|12|17969.88|0.09|0.08|N|O|1997-11-16|1997-12-11|1997-11-27|COLLECT COD|FOB|dle carefully. blithely final sauterne| +4779|618|619|3|25|37965.25|0.07|0.07|N|O|1997-11-15|1997-12-18|1997-11-28|TAKE BACK RETURN|FOB|gular packages. carefully final foxes haggl| +4780|1322|6323|1|36|44039.52|0.08|0.03|N|O|1996-05-30|1996-04-21|1996-06-22|TAKE BACK RETURN|MAIL|onic epitaphs. s| +4780|6229|8730|2|12|13622.64|0.04|0.06|N|O|1996-06-01|1996-04-17|1996-07-01|NONE|RAIL|eans run carefully from the carefu| +4780|84874|9891|3|22|40895.14|0.07|0.07|N|O|1996-04-22|1996-04-11|1996-05-22|DELIVER IN PERSON|MAIL|ffix slyly ironic accou| +4780|68105|3118|4|33|35412.30|0.05|0.02|N|O|1996-03-23|1996-05-13|1996-04-17|NONE|AIR|equests across the c| +4781|121672|6697|1|49|82989.83|0.06|0.02|N|F|1995-06-15|1995-05-09|1995-07-01|NONE|REG AIR|kly according to the busy, even i| +4782|130441|442|1|20|29428.80|0.10|0.04|R|F|1995-03-11|1995-03-18|1995-04-08|COLLECT COD|MAIL|theodolites around the caref| +4782|115503|526|2|49|74406.50|0.05|0.07|R|F|1995-03-21|1995-03-31|1995-04-11|COLLECT COD|REG AIR|ys can cajole qu| +4782|46502|6503|3|31|44903.50|0.01|0.04|R|F|1995-04-19|1995-03-20|1995-05-12|COLLECT COD|REG AIR| ironic, final pains are fluffi| +4782|150636|8182|4|29|48912.27|0.06|0.03|A|F|1995-03-30|1995-04-14|1995-04-24|COLLECT COD|RAIL|s haggle according t| +4782|127168|2193|5|12|14341.92|0.03|0.00|A|F|1995-03-13|1995-04-04|1995-04-04|TAKE BACK RETURN|RAIL|osits across the fluffily ironic p| +4782|107510|7511|6|36|54630.36|0.08|0.00|A|F|1995-03-17|1995-03-12|1995-03-22|NONE|REG AIR|is inside the blithely unusual dep| +4782|104415|1946|7|42|59615.22|0.01|0.03|R|F|1995-05-11|1995-04-06|1995-05-16|TAKE BACK RETURN|RAIL|ts promise along the carefully| +4783|87985|3002|1|28|55243.44|0.10|0.08|N|O|1996-10-08|1996-11-05|1996-10-14|NONE|FOB|ts. finally regular hockey playe| +4808|37653|157|1|28|44538.20|0.09|0.08|R|F|1992-06-26|1992-06-01|1992-07-18|COLLECT COD|TRUCK|g the furiously final deposits. fin| +4808|18355|857|2|49|62394.15|0.09|0.08|R|F|1992-03-27|1992-04-24|1992-04-11|COLLECT COD|FOB|t requests. blithely ironic packages ha| +4808|85292|5293|3|32|40873.28|0.09|0.06|A|F|1992-05-23|1992-05-30|1992-06-11|COLLECT COD|SHIP|the pending escapades. final instru| +4808|93663|6173|4|19|31476.54|0.09|0.06|A|F|1992-05-09|1992-05-17|1992-05-22|DELIVER IN PERSON|FOB|nes. even, special accounts are furiously.| +4808|182322|4841|5|10|14043.20|0.05|0.02|R|F|1992-07-03|1992-05-18|1992-07-27|COLLECT COD|FOB|uctions. fluffil| +4809|43264|777|1|9|10865.34|0.05|0.08|N|O|1996-02-29|1996-04-22|1996-03-01|NONE|SHIP| the thinly unusual instructions: care| +4809|129500|7037|2|20|30590.00|0.02|0.00|N|O|1996-05-25|1996-04-08|1996-06-05|NONE|SHIP|its boost above the sly| +4809|93510|6020|3|35|52622.85|0.03|0.02|N|O|1996-04-09|1996-05-19|1996-05-06|TAKE BACK RETURN|RAIL| fluffily enticing instructions amo| +4809|7702|7703|4|44|70826.80|0.09|0.06|N|O|1996-06-15|1996-05-21|1996-07-05|COLLECT COD|MAIL|requests haggle fluffily. never quiet | +4809|34427|1937|5|24|32674.08|0.00|0.05|N|O|1996-03-03|1996-05-10|1996-03-13|TAKE BACK RETURN|SHIP|about the quickly furious p| +4809|3838|8839|6|46|80124.18|0.09|0.07|N|O|1996-04-26|1996-05-17|1996-05-05|COLLECT COD|SHIP|s wake about the regu| +4809|101855|6876|7|17|31566.45|0.06|0.07|N|O|1996-03-05|1996-04-14|1996-03-28|DELIVER IN PERSON|TRUCK| of the express requests. furiously ex| +4810|76603|4125|1|35|55286.00|0.06|0.01|N|O|1997-01-20|1997-02-11|1997-01-21|DELIVER IN PERSON|SHIP|. thinly even ide| +4810|59277|9278|2|11|13598.97|0.05|0.03|N|O|1997-03-08|1997-01-13|1997-03-25|DELIVER IN PERSON|FOB| slyly silent pinto beans slee| +4811|5841|5842|1|45|78607.80|0.03|0.02|R|F|1995-03-19|1995-04-27|1995-04-09|COLLECT COD|AIR|regular foxes sol| +4812|103473|8494|1|50|73823.50|0.00|0.06|N|O|1998-05-01|1998-04-27|1998-05-10|NONE|FOB| quickly express pinto beans. furiousl| +4812|59168|6684|2|26|29306.16|0.09|0.00|N|O|1998-06-16|1998-05-01|1998-07-04|COLLECT COD|TRUCK|ic packages.| +4812|20747|8254|3|27|45028.98|0.07|0.07|N|O|1998-06-02|1998-05-26|1998-06-17|DELIVER IN PERSON|REG AIR|ular accounts. furiously| +4813|69220|6739|1|42|49947.24|0.04|0.08|N|O|1996-11-11|1996-09-11|1996-11-28|DELIVER IN PERSON|REG AIR|arefully express asymptot| +4813|169743|2260|2|24|43505.76|0.07|0.00|N|O|1996-10-20|1996-10-01|1996-11-08|NONE|REG AIR| deposits according to the careful| +4813|60284|7803|3|20|24885.60|0.01|0.08|N|O|1996-12-03|1996-10-09|1997-01-02|NONE|AIR|y regular deposits| +4813|185699|736|4|11|19631.59|0.07|0.06|N|O|1996-10-13|1996-10-31|1996-11-04|COLLECT COD|REG AIR|al, ironic packages. packages about t| +4813|32243|2244|5|36|42308.64|0.08|0.02|N|O|1996-09-24|1996-10-24|1996-09-30|COLLECT COD|TRUCK|quickly thin theodol| +4813|104764|4765|6|28|49525.28|0.09|0.08|N|O|1996-11-25|1996-11-05|1996-11-27|TAKE BACK RETURN|RAIL| ironic ideas hang slyly speci| +4814|90795|5814|1|38|67860.02|0.09|0.07|A|F|1992-07-04|1992-08-16|1992-07-07|TAKE BACK RETURN|FOB|ess excuses are furiously. blithe instruct| +4814|182617|7654|2|25|42490.25|0.02|0.07|A|F|1992-08-23|1992-09-11|1992-09-10|NONE|MAIL|e carefully silent accounts haggl| +4815|69989|2496|1|13|25466.74|0.00|0.04|N|O|1997-02-10|1996-12-18|1997-02-11|NONE|REG AIR|o beans. carefully fina| +4815|102045|2046|2|28|29317.12|0.07|0.00|N|O|1996-12-07|1997-01-05|1996-12-31|DELIVER IN PERSON|FOB|s. pending, fin| +4815|59257|4268|3|26|31622.50|0.03|0.01|N|O|1996-11-21|1996-12-02|1996-12-06|COLLECT COD|TRUCK|eas. slyly final package| +4815|126820|1845|4|40|73872.80|0.09|0.02|N|O|1997-01-08|1996-11-20|1997-01-10|TAKE BACK RETURN|AIR|ully ironic | +4815|60614|8133|5|45|70857.45|0.02|0.06|N|O|1996-11-05|1996-12-07|1996-11-15|COLLECT COD|AIR|encies. carefully quiet| +4815|127185|2210|6|24|29092.32|0.07|0.01|N|O|1996-10-23|1996-12-14|1996-11-12|NONE|SHIP|fluffily bold r| +4815|184059|1614|7|23|26290.15|0.10|0.01|N|O|1996-11-22|1996-11-14|1996-11-27|TAKE BACK RETURN|FOB| final excuses haggle fluffily slo| +4840|71081|8603|1|21|22093.68|0.06|0.00|A|F|1994-08-26|1994-07-28|1994-09-21|NONE|RAIL| deposits believe carefully carefu| +4840|55408|419|2|33|44992.20|0.01|0.06|R|F|1994-07-29|1994-08-18|1994-08-26|DELIVER IN PERSON|MAIL|special instructions. quickly iro| +4840|38100|8101|3|18|18685.80|0.08|0.03|R|F|1994-09-13|1994-08-28|1994-10-05|NONE|AIR| pending ideas sleep final| +4840|135166|7680|4|40|48046.40|0.03|0.07|R|F|1994-09-29|1994-07-18|1994-10-24|TAKE BACK RETURN|AIR|longside of the platelets. foxe| +4840|132993|533|5|41|83065.59|0.07|0.04|A|F|1994-06-25|1994-09-04|1994-07-18|NONE|MAIL|e the even, ironic foxes. slyly iron| +4840|7428|7429|6|3|4006.26|0.00|0.00|A|F|1994-06-12|1994-07-29|1994-07-12|NONE|FOB|fluffily bold accou| +4841|66911|6912|1|7|13145.37|0.07|0.02|A|F|1992-08-03|1992-08-28|1992-08-14|DELIVER IN PERSON|SHIP|the bold foxes. furiously ironic request| +4841|171946|6981|2|10|20179.40|0.01|0.06|A|F|1992-08-22|1992-09-05|1992-09-12|NONE|REG AIR| sleep slyly along the alwa| +4841|94364|1892|3|7|9508.52|0.05|0.06|R|F|1992-10-24|1992-09-19|1992-10-26|DELIVER IN PERSON|AIR|ng to the | +4841|174449|6967|4|13|19804.72|0.05|0.00|A|F|1992-08-11|1992-09-18|1992-08-30|TAKE BACK RETURN|MAIL|mong the theodolites nag furiously agai| +4841|152747|2748|5|12|21596.88|0.10|0.07|R|F|1992-11-03|1992-10-12|1992-11-04|NONE|MAIL| even instructio| +4841|8591|3592|6|29|43488.11|0.00|0.04|R|F|1992-11-17|1992-09-15|1992-12-02|NONE|RAIL|carefully even pinto beans sleep careful| +4841|177545|5097|7|12|19470.48|0.09|0.07|R|F|1992-08-03|1992-09-02|1992-08-05|NONE|REG AIR|e. regular p| +4842|196259|6260|1|45|60986.25|0.03|0.04|N|O|1997-08-10|1997-08-05|1997-08-26|NONE|SHIP| accounts lose quickly blithely final| +4842|109440|6971|2|37|53629.28|0.01|0.06|N|O|1997-07-08|1997-07-31|1997-07-17|DELIVER IN PERSON|TRUCK|fully ironic ideas wake car| +4842|149528|4557|3|4|6310.08|0.03|0.03|N|O|1997-08-09|1997-08-26|1997-08-20|TAKE BACK RETURN|FOB|fully unusual instructions wake | +4842|115578|8090|4|7|11154.99|0.03|0.07|N|O|1997-09-17|1997-07-26|1997-09-18|COLLECT COD|FOB|le according to the daring, fi| +4842|118270|8271|5|40|51530.80|0.05|0.08|N|O|1997-09-23|1997-08-26|1997-10-15|DELIVER IN PERSON|RAIL|cuses cajole quickly. re| +4842|151826|1827|6|3|5633.46|0.02|0.04|N|O|1997-06-13|1997-07-09|1997-06-27|COLLECT COD|AIR|s. regular | +4842|129693|9694|7|2|3445.38|0.03|0.00|N|O|1997-07-09|1997-07-28|1997-07-15|COLLECT COD|SHIP|slyly along the quickly bold requ| +4843|144917|4918|1|27|52971.57|0.01|0.03|N|O|1997-03-10|1997-03-30|1997-03-15|COLLECT COD|AIR|o beans haggle slyly express, pending | +4843|8406|8407|2|50|65720.00|0.08|0.04|N|O|1997-03-04|1997-02-19|1997-03-19|DELIVER IN PERSON|REG AIR|ly enticing accounts impress ironi| +4843|74053|6561|3|38|39027.90|0.02|0.06|N|O|1997-02-08|1997-03-14|1997-03-08|NONE|RAIL|inst the special, express asymptotes are| +4843|7135|9636|4|6|6252.78|0.08|0.05|N|O|1997-02-15|1997-03-10|1997-02-19|COLLECT COD|AIR|s. ruthlessly silent accounts wake furiou| +4844|185646|3201|1|50|86582.00|0.10|0.02|R|F|1992-11-23|1992-09-15|1992-12-04|COLLECT COD|RAIL|ithely darin| +4845|16917|9419|1|38|69688.58|0.01|0.01|A|F|1995-02-05|1995-02-25|1995-02-23|NONE|FOB|carefully at the dolphins. blithe| +4845|121840|4353|2|39|72611.76|0.07|0.02|R|F|1995-04-06|1995-03-10|1995-04-29|NONE|AIR|equests about the f| +4845|159808|9809|3|40|74712.00|0.09|0.03|A|F|1995-04-21|1995-02-15|1995-05-12|NONE|MAIL|kages cajole furiously | +4845|81880|1881|4|29|53994.52|0.00|0.07|R|F|1995-02-21|1995-02-10|1995-03-15|COLLECT COD|SHIP|l attainments. decoys are upon the final| +4845|148368|883|5|38|53821.68|0.08|0.08|A|F|1995-03-11|1995-03-08|1995-03-30|COLLECT COD|REG AIR|furiously ironic packages in| +4846|61979|4486|1|40|77638.80|0.05|0.07|R|F|1993-07-07|1993-08-09|1993-07-12|DELIVER IN PERSON|REG AIR| packages-- unusual, special deposits serve| +4846|68970|3983|2|37|71741.89|0.09|0.03|A|F|1993-08-07|1993-08-23|1993-08-25|DELIVER IN PERSON|SHIP|requests cajole furio| +4846|169028|9029|3|16|17552.32|0.10|0.02|R|F|1993-10-18|1993-08-29|1993-10-25|COLLECT COD|MAIL|lly regular requests | +4846|52029|7040|4|9|8829.18|0.05|0.03|A|F|1993-07-06|1993-09-04|1993-07-09|DELIVER IN PERSON|TRUCK| across the carefully pendi| +4846|42911|5416|5|11|20393.01|0.03|0.03|R|F|1993-07-14|1993-08-12|1993-07-21|COLLECT COD|AIR|carefully special ep| +4846|2545|5046|6|33|47768.82|0.08|0.03|A|F|1993-08-03|1993-09-02|1993-08-30|TAKE BACK RETURN|RAIL|fully regular foxes wake regul| +4846|163630|6147|7|29|49115.27|0.00|0.02|R|F|1993-08-19|1993-09-08|1993-08-21|COLLECT COD|SHIP|r asymptotes wake blithely along | +4847|114693|2227|1|11|18784.59|0.08|0.07|N|O|1997-03-18|1997-03-19|1997-04-05|TAKE BACK RETURN|MAIL|d theodolites. regular ideas eat reques| +4847|29350|1853|2|2|2558.70|0.08|0.01|N|O|1997-04-13|1997-03-05|1997-04-19|COLLECT COD|FOB| despite the furiously regular pinto| +4847|84896|4897|3|43|80878.27|0.01|0.02|N|O|1997-04-02|1997-04-11|1997-04-25|NONE|REG AIR|ickly ironic somas | +4847|40086|7599|4|9|9234.72|0.05|0.04|N|O|1997-03-27|1997-03-31|1997-04-23|TAKE BACK RETURN|TRUCK|after the quickly express asymptotes affix| +4847|115885|3419|5|5|9504.40|0.04|0.08|N|O|1997-05-03|1997-03-22|1997-05-24|NONE|AIR|carefully special idea| +4847|71777|9299|6|14|24482.78|0.00|0.03|N|O|1997-04-25|1997-03-21|1997-05-25|COLLECT COD|FOB|ously. furiously careful pinto beans e| +4872|122252|7277|1|39|49695.75|0.09|0.00|R|F|1994-06-06|1994-07-08|1994-06-25|DELIVER IN PERSON|RAIL|ns sleep carefully unusual pinto| +4872|83786|8803|2|38|67251.64|0.05|0.08|R|F|1994-07-11|1994-07-18|1994-08-04|TAKE BACK RETURN|AIR|de of the theodolites. blithely express | +4872|178897|3932|3|34|67180.26|0.08|0.05|R|F|1994-09-07|1994-08-13|1994-09-22|TAKE BACK RETURN|TRUCK|omise quickly across t| +4872|119067|4090|4|23|24979.38|0.06|0.04|A|F|1994-09-14|1994-08-04|1994-10-08|NONE|AIR|es haggle qu| +4872|146020|1049|5|30|31980.60|0.05|0.07|A|F|1994-06-22|1994-06-27|1994-07-21|DELIVER IN PERSON|FOB| pending theodolites are blithely ironic| +4872|146924|6925|6|45|88691.40|0.08|0.04|A|F|1994-06-18|1994-07-01|1994-06-27|TAKE BACK RETURN|RAIL|express asymptotes cajole. furio| +4873|175072|5073|1|3|3441.21|0.09|0.02|N|O|1996-06-04|1996-06-21|1996-07-03|COLLECT COD|SHIP| packages. frays grow. furiously r| +4873|33631|6135|2|47|73537.61|0.05|0.08|N|O|1996-05-20|1996-07-19|1996-06-15|TAKE BACK RETURN|REG AIR|, ironic requ| +4874|127133|2158|1|16|18562.08|0.01|0.05|R|F|1994-04-04|1994-06-04|1994-04-12|NONE|MAIL|unts. accounts| +4874|118574|6108|2|16|25481.12|0.01|0.02|A|F|1994-05-21|1994-05-19|1994-06-08|DELIVER IN PERSON|RAIL|ickly. sly| +4875|140908|8451|1|20|38978.00|0.01|0.07|N|O|1998-06-16|1998-06-30|1998-07-11|NONE|FOB| blithely final accounts. carefully b| +4875|36041|6042|2|22|21494.88|0.05|0.00|N|O|1998-08-13|1998-07-04|1998-08-31|COLLECT COD|RAIL| requests are until t| +4875|130435|436|3|28|41032.04|0.04|0.05|N|O|1998-08-23|1998-07-24|1998-09-15|NONE|MAIL|s sublate fluffi| +4875|10294|2796|4|8|9634.32|0.00|0.04|N|O|1998-07-06|1998-07-15|1998-07-08|TAKE BACK RETURN|TRUCK|d alongside| +4875|10324|2826|5|49|60481.68|0.08|0.04|N|O|1998-06-26|1998-08-10|1998-07-11|DELIVER IN PERSON|FOB| are quietly. blithely expres| +4875|99411|4430|6|40|56416.40|0.00|0.03|N|O|1998-06-04|1998-07-21|1998-07-02|COLLECT COD|RAIL|lites cajole furiously furiously unu| +4876|24090|1597|1|37|37521.33|0.10|0.01|R|F|1994-08-17|1994-10-27|1994-08-22|NONE|REG AIR|en theodolites. blithely fina| +4876|79865|9866|2|43|79328.98|0.02|0.05|R|F|1994-10-26|1994-10-23|1994-11-05|DELIVER IN PERSON|TRUCK|s. quickly pending foxes wake slyly ag| +4876|76618|4140|3|26|41459.86|0.04|0.05|A|F|1994-09-12|1994-10-02|1994-10-01|TAKE BACK RETURN|AIR|ickly ironic ideas detec| +4876|117882|394|4|42|79794.96|0.05|0.06|R|F|1994-08-27|1994-10-19|1994-09-20|DELIVER IN PERSON|SHIP|rls eat ruthlessl| +4876|39448|9449|5|14|19424.16|0.04|0.03|R|F|1994-11-14|1994-09-25|1994-12-02|COLLECT COD|AIR|oss the regular platelets. careful| +4876|189107|4144|6|1|1196.10|0.07|0.00|R|F|1994-10-14|1994-10-25|1994-11-13|TAKE BACK RETURN|AIR| excuses. thin acco| +4877|131352|6379|1|10|13833.50|0.10|0.00|N|O|1997-08-04|1997-09-05|1997-08-10|TAKE BACK RETURN|FOB|ackages are blithely after the blithely s| +4877|19879|7383|2|32|57563.84|0.01|0.02|N|O|1997-10-23|1997-09-23|1997-10-29|COLLECT COD|FOB| quickly spec| +4877|91685|6704|3|26|43593.68|0.03|0.04|N|O|1997-10-12|1997-07-27|1997-11-03|COLLECT COD|AIR|kly after the blithely pending foxes. alwa| +4877|144287|4288|4|34|45263.52|0.01|0.01|N|O|1997-10-05|1997-09-12|1997-10-16|DELIVER IN PERSON|REG AIR|furiously bold ideas. fluffily regula| +4877|31533|9043|5|11|16109.83|0.10|0.02|N|O|1997-06-29|1997-07-27|1997-07-21|COLLECT COD|AIR|tornis. fu| +4878|98684|6212|1|35|58893.80|0.03|0.04|A|F|1992-11-09|1992-09-13|1992-11-19|DELIVER IN PERSON|REG AIR|nts cajole carefully unusual decoys. car| +4878|175276|5277|2|2|2702.54|0.07|0.06|R|F|1992-08-08|1992-08-30|1992-09-02|NONE|TRUCK|s after the | +4878|62807|7820|3|17|30086.60|0.08|0.01|A|F|1992-08-07|1992-09-23|1992-09-04|COLLECT COD|TRUCK|hrash slyly according to the silent, unu| +4878|181282|3801|4|36|49078.08|0.03|0.01|A|F|1992-10-07|1992-08-30|1992-11-05|TAKE BACK RETURN|AIR|ct blithely final requests. carefully even | +4878|198295|815|5|1|1393.29|0.03|0.00|R|F|1992-11-08|1992-08-24|1992-11-30|COLLECT COD|TRUCK|packages wake slyl| +4878|135990|1017|6|6|12155.94|0.09|0.03|R|F|1992-08-19|1992-09-02|1992-09-12|COLLECT COD|TRUCK|ccounts use. accounts n| +4879|5667|3168|1|14|22017.24|0.04|0.04|N|O|1997-03-09|1997-04-05|1997-03-20|NONE|FOB|zzle fluffily. furiously final requests hag| +4879|36222|8726|2|35|40537.70|0.00|0.07|N|O|1997-03-10|1997-04-23|1997-03-26|NONE|FOB|ly daring deposits haggle blithely a| +4879|174777|4778|3|26|48146.02|0.02|0.06|N|O|1997-05-08|1997-05-12|1997-05-29|NONE|REG AIR|es sleep blithely after the | +4879|63123|642|4|28|30411.36|0.09|0.05|N|O|1997-05-22|1997-05-26|1997-05-25|DELIVER IN PERSON|SHIP|counts according| +4879|97699|5227|5|38|64474.22|0.03|0.05|N|O|1997-03-14|1997-04-15|1997-03-16|COLLECT COD|REG AIR|ously regular deposits cajol| +4904|106976|9487|1|21|41642.37|0.07|0.04|N|O|1995-07-20|1995-07-20|1995-07-25|TAKE BACK RETURN|REG AIR|eodolites nod unusual deposits. | +4904|139312|4339|2|49|66214.19|0.05|0.05|R|F|1995-06-02|1995-07-30|1995-06-14|NONE|TRUCK|out the final dependencies wake carefull| +4905|152702|7733|1|48|84225.60|0.04|0.07|R|F|1994-09-23|1994-10-21|1994-10-15|NONE|SHIP|special foxes. | +4905|59207|4218|2|16|18659.20|0.04|0.03|A|F|1994-11-17|1994-10-23|1994-12-07|NONE|AIR|y unusual platelets. unu| +4906|139814|2328|1|47|87129.07|0.00|0.02|A|F|1994-06-13|1994-05-23|1994-06-24|TAKE BACK RETURN|MAIL|special packages. deposits use slyly foxes;| +4906|40548|3053|2|49|72938.46|0.04|0.00|A|F|1994-08-06|1994-06-03|1994-08-18|COLLECT COD|MAIL|luffily bol| +4906|83679|3680|3|40|66506.80|0.10|0.07|R|F|1994-07-02|1994-06-27|1994-07-07|NONE|MAIL| unusual instructions | +4907|187091|7092|1|40|47123.60|0.06|0.08|A|F|1994-11-18|1994-11-23|1994-12-08|DELIVER IN PERSON|RAIL|y regular requests use carefully blit| +4908|100334|335|1|14|18680.62|0.05|0.08|N|O|1995-08-30|1995-08-15|1995-09-01|DELIVER IN PERSON|REG AIR| dazzle carefully expr| +4909|23025|8030|1|21|19908.42|0.04|0.02|R|F|1993-11-24|1993-11-23|1993-11-30|DELIVER IN PERSON|AIR|pendencies. furio| +4910|119164|4187|1|4|4732.64|0.00|0.04|N|O|1995-12-04|1995-10-03|1995-12-22|COLLECT COD|AIR|ecial theodolites; final dugout| +4910|181512|6549|2|43|68520.93|0.08|0.04|N|O|1995-11-21|1995-10-08|1995-11-27|NONE|TRUCK| carefully final hockey players na| +4911|146920|6921|1|6|11801.52|0.01|0.08|R|F|1994-11-16|1995-01-18|1994-12-08|TAKE BACK RETURN|TRUCK|uriously regular pinto beans. | +4911|71211|6226|2|31|36648.51|0.04|0.08|A|F|1995-01-03|1994-11-23|1995-01-15|TAKE BACK RETURN|TRUCK|ld instructions. furiously| +4911|29336|9337|3|12|15183.96|0.07|0.08|R|F|1995-01-12|1994-12-22|1995-01-27|DELIVER IN PERSON|TRUCK|ole carefully stealth| +4911|36897|4407|4|38|69687.82|0.07|0.06|A|F|1995-02-01|1994-11-20|1995-02-03|NONE|RAIL|ely against th| +4911|123270|807|5|26|33625.02|0.05|0.03|A|F|1994-11-13|1995-01-14|1994-12-05|NONE|FOB|cingly bold accounts cajole a| +4911|196677|1716|6|10|17736.70|0.02|0.04|R|F|1994-12-11|1994-12-18|1995-01-01|NONE|SHIP|he carefully ironi| +4936|39450|6960|1|14|19452.30|0.02|0.01|N|O|1998-04-11|1998-02-23|1998-04-18|TAKE BACK RETURN|FOB| wake requests. close | +4936|31139|3643|2|7|7490.91|0.03|0.02|N|O|1998-04-22|1998-03-13|1998-05-18|TAKE BACK RETURN|MAIL|er even foxes. q| +4936|152805|351|3|47|87316.60|0.10|0.07|N|O|1998-03-07|1998-04-14|1998-03-28|COLLECT COD|RAIL|y along the qu| +4936|185295|5296|4|29|40028.41|0.02|0.07|N|O|1998-03-16|1998-04-08|1998-04-12|COLLECT COD|SHIP|haggle slyly after the| +4937|89349|6874|1|23|30781.82|0.07|0.01|R|F|1993-01-11|1992-10-19|1993-01-28|DELIVER IN PERSON|TRUCK|pades! bold foxes nag quickly slyly iro| +4937|77571|7572|2|24|37165.68|0.03|0.08|A|F|1992-10-23|1992-12-08|1992-11-04|COLLECT COD|TRUCK|e unusual, special dependencies.| +4937|126422|6423|3|41|59385.22|0.04|0.08|R|F|1992-10-20|1992-11-11|1992-10-28|TAKE BACK RETURN|MAIL| regular accounts. pinto beans ar| +4938|71272|8794|1|38|47244.26|0.05|0.07|N|O|1998-03-30|1998-05-18|1998-04-16|NONE|TRUCK|ic packages. sly| +4938|57048|9554|2|33|33166.32|0.05|0.08|N|O|1998-05-08|1998-04-09|1998-05-27|NONE|SHIP|riously above the furiously express pa| +4938|190009|7567|3|3|3297.00|0.02|0.04|N|O|1998-06-03|1998-04-29|1998-07-03|TAKE BACK RETURN|REG AIR|al requests print. ironic, regular req| +4938|80549|8074|4|1|1529.54|0.09|0.08|N|O|1998-06-05|1998-04-16|1998-07-01|NONE|SHIP|packages. slyly regular dep| +4938|180101|2620|5|9|10629.90|0.08|0.01|N|O|1998-03-14|1998-04-17|1998-04-04|COLLECT COD|TRUCK|. slyly express packages are regular, ex| +4938|146871|1900|6|33|63289.71|0.04|0.02|N|O|1998-03-04|1998-04-27|1998-04-01|NONE|TRUCK| slyly pending pinto beans haggle blithely.| +4939|47873|7874|1|18|32775.66|0.02|0.04|A|F|1993-12-01|1993-09-27|1993-12-07|COLLECT COD|AIR|ar braids ab| +4939|194236|6756|2|40|53209.20|0.04|0.02|R|F|1993-11-17|1993-10-16|1993-12-09|TAKE BACK RETURN|MAIL|mong the unusual| +4940|79693|9694|1|14|23417.66|0.05|0.00|R|F|1993-09-09|1993-09-15|1993-09-23|TAKE BACK RETURN|TRUCK|ns. regular depths after the| +4940|187566|7567|2|5|8267.80|0.10|0.08|R|F|1993-10-27|1993-09-10|1993-11-22|DELIVER IN PERSON|REG AIR|the blithely ironic platelets. blith| +4940|11539|4041|3|32|46416.96|0.07|0.04|A|F|1993-10-06|1993-09-18|1993-10-14|COLLECT COD|AIR|lly to the sl| +4941|10298|5301|1|45|54373.05|0.10|0.07|R|F|1992-06-22|1992-07-23|1992-07-15|DELIVER IN PERSON|RAIL|e blithely | +4941|61960|9479|2|48|92254.08|0.07|0.08|R|F|1992-08-28|1992-08-13|1992-09-17|TAKE BACK RETURN|REG AIR|furiously ironic platelets. sly pack| +4941|159429|6975|3|46|68467.32|0.00|0.03|R|F|1992-09-27|1992-07-22|1992-10-04|DELIVER IN PERSON|TRUCK|. blithely final pinto beans| +4941|117970|2993|4|17|33795.49|0.03|0.05|A|F|1992-08-31|1992-08-29|1992-09-21|DELIVER IN PERSON|MAIL|lyly ironic, permanent theodolites| +4941|105931|3462|5|31|60044.83|0.07|0.04|R|F|1992-06-19|1992-08-16|1992-06-23|DELIVER IN PERSON|REG AIR|platelets above the bold requests hagg| +4942|108851|1362|1|49|91132.65|0.04|0.05|R|F|1993-06-07|1993-08-02|1993-06-25|DELIVER IN PERSON|FOB|above the f| +4942|53077|3078|2|19|19571.33|0.00|0.04|R|F|1993-05-22|1993-08-07|1993-06-16|NONE|RAIL|riously unusual instructions use. carefu| +4942|50934|5945|3|19|35813.67|0.09|0.06|R|F|1993-07-03|1993-07-16|1993-07-06|DELIVER IN PERSON|RAIL|ly regular packages. quiet ins| +4942|32749|5253|4|3|5045.22|0.05|0.05|A|F|1993-07-26|1993-07-20|1993-08-06|TAKE BACK RETURN|SHIP| theodolites wake furio| +4942|1359|3860|5|49|61757.15|0.02|0.03|R|F|1993-05-21|1993-06-11|1993-06-13|TAKE BACK RETURN|AIR|taphs use furiously about| +4943|44158|9167|1|21|23145.15|0.03|0.02|N|O|1996-10-13|1996-10-21|1996-10-30|NONE|RAIL|, pending accounts nag. qui| +4943|160709|3226|2|29|51321.30|0.02|0.08|N|O|1996-08-25|1996-09-20|1996-09-06|DELIVER IN PERSON|MAIL|ously unusual deposits. regular depe| +4943|22658|7663|3|46|72709.90|0.02|0.08|N|O|1996-09-25|1996-10-11|1996-10-01|NONE|FOB|nic, final instructions haggle furious| +4968|70244|245|1|44|53426.56|0.04|0.05|A|F|1995-05-08|1995-06-23|1995-05-25|COLLECT COD|REG AIR|s. slyly express theodolites wake| +4968|187297|2334|2|2|2768.58|0.04|0.03|R|F|1995-04-28|1995-07-22|1995-05-09|COLLECT COD|FOB| sleep blithely above th| +4968|86085|8594|3|18|19279.44|0.09|0.08|N|O|1995-08-05|1995-06-16|1995-08-10|NONE|SHIP|uriously express instruc| +4968|16056|8558|4|39|37909.95|0.10|0.01|N|F|1995-06-07|1995-05-30|1995-07-02|DELIVER IN PERSON|AIR|pecial ideas are. slyly ev| +4968|45577|3090|5|50|76128.50|0.01|0.05|N|O|1995-06-18|1995-06-17|1995-06-24|COLLECT COD|SHIP|pending packages at the even packages af| +4968|6911|4412|6|13|23632.83|0.09|0.02|N|O|1995-08-19|1995-06-28|1995-09-06|DELIVER IN PERSON|FOB|e. fluffil| +4969|89652|4669|1|27|44324.55|0.05|0.05|A|F|1994-02-06|1994-02-24|1994-02-28|NONE|MAIL| haggle slyly accordi| +4969|178255|773|2|6|7999.50|0.00|0.00|A|F|1994-04-24|1994-03-18|1994-04-28|COLLECT COD|RAIL|as breach quickly express packag| +4969|128011|8012|3|2|2078.02|0.00|0.02|A|F|1994-02-20|1994-04-04|1994-03-03|NONE|SHIP| the furiously express pinto beans. specia| +4969|70348|2856|4|29|38231.86|0.02|0.01|A|F|1994-05-13|1994-03-14|1994-05-19|TAKE BACK RETURN|AIR|y to the slyly express| +4969|137202|4742|5|25|30980.00|0.04|0.08|A|F|1994-03-18|1994-02-19|1994-03-30|TAKE BACK RETURN|FOB| final excuses haggle busily always| +4970|87224|7225|1|11|13323.42|0.08|0.08|R|F|1993-04-17|1993-04-14|1993-05-09|TAKE BACK RETURN|REG AIR|use furiously among the furiously pendi| +4970|166291|8808|2|18|24431.22|0.10|0.05|R|F|1993-04-04|1993-02-28|1993-04-24|DELIVER IN PERSON|RAIL|e carefully brave | +4970|44163|6668|3|16|17714.56|0.03|0.02|A|F|1993-05-14|1993-04-05|1993-06-11|COLLECT COD|MAIL|kly. final courts sl| +4970|42436|4941|4|36|49623.48|0.02|0.02|R|F|1993-02-16|1993-02-28|1993-02-22|TAKE BACK RETURN|SHIP|deposits. regu| +4970|19165|4168|5|20|21683.20|0.03|0.04|R|F|1993-05-11|1993-04-06|1993-06-09|NONE|AIR|deas. express, | +4971|150210|2726|1|11|13862.31|0.02|0.08|R|F|1994-02-04|1993-12-02|1994-02-06|NONE|AIR|y pending ins| +4971|177720|5272|2|10|17977.20|0.08|0.00|R|F|1993-12-10|1994-01-10|1994-01-06|COLLECT COD|RAIL|as across the | +4971|138354|868|3|29|40378.15|0.08|0.00|R|F|1993-10-28|1993-11-30|1993-11-27|DELIVER IN PERSON|TRUCK|ously pending foxes sl| +4971|99989|2499|4|8|15911.84|0.01|0.02|R|F|1993-11-24|1993-12-18|1993-12-16|COLLECT COD|TRUCK|ets cajole according to| +4971|106732|9243|5|29|50423.17|0.10|0.07|R|F|1994-01-08|1993-11-30|1994-01-18|DELIVER IN PERSON|TRUCK|lithely at the express, unusual requests| +4972|64318|1837|1|22|28210.82|0.08|0.03|N|O|1997-12-07|1997-11-18|1997-12-08|COLLECT COD|REG AIR|fily ironic instructions.| +4972|179456|9457|2|38|58347.10|0.03|0.01|N|O|1997-10-19|1997-10-11|1997-11-10|TAKE BACK RETURN|SHIP|onic accounts sleep according to the ir| +4972|112374|4886|3|3|4159.11|0.03|0.08|N|O|1998-01-02|1997-10-28|1998-01-22|TAKE BACK RETURN|RAIL|ect slyly blithely express instructions. s| +4972|56725|4241|4|23|38679.56|0.05|0.00|N|O|1997-12-02|1997-10-07|1997-12-14|COLLECT COD|AIR|en packages cajole c| +4972|175250|2802|5|36|47709.00|0.07|0.02|N|O|1998-01-04|1997-11-01|1998-01-06|NONE|FOB|. slyly ironic deposits use f| +4972|14907|4908|6|21|38259.90|0.05|0.05|N|O|1997-12-13|1997-12-02|1997-12-17|NONE|AIR|ges. pending wart| +4972|126282|6283|7|5|6541.40|0.10|0.07|N|O|1997-10-26|1997-10-06|1997-11-12|COLLECT COD|REG AIR|ages; furiously u| +4973|7948|449|1|41|76093.54|0.00|0.00|A|F|1993-10-10|1993-09-04|1993-10-19|NONE|FOB|sleep furiously special a| +4973|172400|7435|2|2|2944.80|0.04|0.05|A|F|1993-09-22|1993-08-28|1993-10-19|NONE|FOB|ly express warhorses sleep furiously blith| +4973|126261|1286|3|40|51490.40|0.10|0.00|A|F|1993-08-31|1993-08-06|1993-09-12|NONE|FOB|ts. fluffily special packages x-ra| +4974|197141|9661|1|36|44573.04|0.03|0.01|N|O|1996-03-19|1996-03-28|1996-03-23|DELIVER IN PERSON|AIR|ial, regular courts cajole bravely ev| +4974|142213|9756|2|31|38911.51|0.01|0.01|N|O|1996-03-08|1996-04-12|1996-03-24|DELIVER IN PERSON|FOB|osits are carefully regular a| +4974|164366|1915|3|50|71518.00|0.09|0.01|N|O|1996-04-07|1996-04-09|1996-04-10|DELIVER IN PERSON|FOB|c deposits; c| +4974|92604|132|4|42|67057.20|0.00|0.02|N|O|1996-03-05|1996-04-05|1996-03-19|DELIVER IN PERSON|MAIL| foxes promis| +4974|191255|6294|5|3|4038.75|0.02|0.03|N|O|1996-02-26|1996-03-30|1996-03-05|TAKE BACK RETURN|FOB|unts cajole fluffily dep| +4975|131723|6750|1|13|22811.36|0.08|0.04|A|F|1992-05-18|1992-07-27|1992-05-31|NONE|TRUCK|lithely even requests. quickl| +4975|57302|4818|2|14|17630.20|0.01|0.08|R|F|1992-08-29|1992-07-01|1992-09-26|COLLECT COD|SHIP| cajole quickly du| +4975|73006|528|3|46|45034.00|0.06|0.06|A|F|1992-07-17|1992-06-29|1992-08-04|NONE|MAIL|ing to the quickly| +4975|198186|8187|4|14|17978.52|0.05|0.05|R|F|1992-08-07|1992-07-14|1992-08-09|DELIVER IN PERSON|REG AIR|inal requests. deposits after the sly| +4975|103883|3884|5|3|5660.64|0.04|0.08|A|F|1992-06-02|1992-07-25|1992-06-25|TAKE BACK RETURN|AIR|. ironic, even packages boost special t| +5000|100509|5530|1|1|1509.50|0.00|0.07|R|F|1994-11-06|1994-11-13|1994-11-13|DELIVER IN PERSON|REG AIR| the furiously express in| +5000|54548|2064|2|8|12020.32|0.00|0.00|A|F|1995-01-27|1994-12-02|1995-02-21|COLLECT COD|REG AIR|fter the blithely pe| +5000|187567|86|3|20|33091.20|0.06|0.06|A|F|1994-12-15|1994-11-26|1995-01-14|TAKE BACK RETURN|TRUCK| silent instructions cajole slyl| +5000|25902|907|4|47|85911.30|0.07|0.03|A|F|1995-01-08|1994-11-28|1995-02-01|DELIVER IN PERSON|SHIP|ke regular, final dolphins. slyly clos| +5000|119903|4926|5|2|3845.80|0.02|0.02|A|F|1995-01-21|1994-12-16|1995-02-09|NONE|TRUCK|ggle furiously against the ca| +5000|6886|1887|6|35|62750.80|0.09|0.02|R|F|1994-11-11|1994-12-16|1994-11-21|TAKE BACK RETURN|FOB| against the permanently even packages| +5000|121255|6280|7|17|21696.25|0.07|0.06|R|F|1994-10-14|1994-12-21|1994-10-22|COLLECT COD|AIR| final deposi| +5001|127283|7284|1|28|36687.84|0.10|0.00|N|O|1997-03-01|1997-03-14|1997-03-12|COLLECT COD|AIR|ackages. regular, re| +5002|158464|980|1|22|33494.12|0.10|0.00|A|F|1994-02-26|1994-02-27|1994-03-02|COLLECT COD|FOB| regular sentiments h| +5002|96454|8964|2|22|31909.90|0.01|0.02|R|F|1994-04-01|1994-01-26|1994-04-13|COLLECT COD|MAIL|le carefully upon the slyly pending theod| +5002|99814|7342|3|38|68924.78|0.01|0.07|A|F|1994-03-19|1994-01-31|1994-04-09|DELIVER IN PERSON|FOB|he, final pack| +5002|163726|3727|4|47|84116.84|0.06|0.07|R|F|1994-03-17|1994-01-24|1994-04-16|COLLECT COD|TRUCK|ructions doze caref| +5002|138544|6084|5|21|33233.34|0.06|0.05|A|F|1994-01-29|1994-01-26|1994-02-21|COLLECT COD|SHIP|ages poach blithely above the final c| +5002|94708|9727|6|27|45972.90|0.05|0.02|R|F|1994-01-25|1994-01-16|1994-01-28|COLLECT COD|FOB|ptotes. carefully final packages haggle. | +5003|79248|4263|1|22|26999.28|0.07|0.02|A|F|1995-04-19|1995-02-15|1995-04-28|TAKE BACK RETURN|REG AIR|heodolites use slyly among the unusual, | +5003|113033|3034|2|9|9414.27|0.03|0.02|R|F|1995-04-03|1995-02-12|1995-05-03|COLLECT COD|FOB|ests: regular ac| +5003|130969|5996|3|42|83998.32|0.07|0.07|R|F|1995-01-29|1995-02-20|1995-02-22|COLLECT COD|RAIL|l requests. slyly slo| +5004|94214|1742|1|7|8457.47|0.04|0.02|N|O|1997-06-30|1997-07-26|1997-07-03|NONE|TRUCK| ironic requests. frays | +5004|44212|4213|2|28|32373.88|0.01|0.06|N|O|1997-07-23|1997-07-11|1997-08-17|COLLECT COD|FOB|ly final foxes cajole on the brave dependen| +5004|59376|9377|3|24|32048.88|0.08|0.03|N|O|1997-07-12|1997-06-29|1997-07-23|DELIVER IN PERSON|MAIL|ns haggle slyly unu| +5004|128104|617|4|43|48680.30|0.01|0.01|N|O|1997-08-04|1997-07-24|1997-08-31|COLLECT COD|RAIL|ions sleep across the fu| +5005|194467|4468|1|28|43720.88|0.02|0.00|A|F|1995-04-20|1995-03-28|1995-04-24|DELIVER IN PERSON|RAIL|beans sleep quickly bli| +5005|196528|9048|2|38|61731.76|0.02|0.01|R|F|1995-01-13|1995-02-16|1995-02-11|NONE|FOB|es. blithely pending deposits abou| +5005|35730|3240|3|49|81620.77|0.04|0.00|A|F|1995-01-28|1995-03-28|1995-02-05|COLLECT COD|FOB|s. frays above the pending, fi| +5005|103463|994|4|43|63057.78|0.05|0.02|A|F|1995-02-07|1995-02-26|1995-02-19|DELIVER IN PERSON|FOB|d blithely. quickly sile| +5005|88648|1157|5|10|16366.40|0.05|0.03|A|F|1995-01-01|1995-03-17|1995-01-15|NONE|MAIL|thely final deposits; furiously ironic excu| +5006|35179|7683|1|46|51251.82|0.08|0.00|A|F|1992-05-01|1992-04-09|1992-05-11|COLLECT COD|TRUCK|ial dependencies sleep. patterns wake care| +5006|52987|5493|2|13|25219.74|0.08|0.04|R|F|1992-04-05|1992-04-06|1992-04-22|TAKE BACK RETURN|REG AIR|old. slyly ironic platelets use. blithe| +5006|142576|2577|3|37|59887.09|0.03|0.03|A|F|1992-04-19|1992-04-23|1992-05-02|NONE|FOB|y. blithely careful dolphins over the bli| +5007|165679|5680|1|39|68042.13|0.06|0.04|A|F|1993-10-27|1993-11-12|1993-11-13|TAKE BACK RETURN|RAIL| blithely silent package| +5007|164733|7250|2|48|86291.04|0.00|0.00|R|F|1993-12-23|1993-11-24|1994-01-02|NONE|AIR|ffily even dependencies sl| +5007|55051|62|3|25|25151.25|0.03|0.05|A|F|1993-12-14|1993-11-30|1994-01-09|DELIVER IN PERSON|TRUCK| foxes. pending asymptotes| +5007|40565|566|4|30|45166.80|0.07|0.06|A|F|1993-12-26|1993-12-20|1994-01-12|NONE|AIR|lar frays. fox| +5007|171205|8757|5|41|52324.20|0.08|0.06|R|F|1993-11-20|1993-11-19|1993-12-12|COLLECT COD|RAIL|nal requests wake furiously daring | +5007|40067|7580|6|25|25176.50|0.08|0.08|R|F|1994-01-12|1993-12-12|1994-02-08|NONE|TRUCK|, ironic realms. even deposits according to| +5007|3732|8733|7|13|21264.49|0.01|0.05|R|F|1993-11-21|1993-11-02|1993-12-20|COLLECT COD|TRUCK|packages play blithely regul| +5032|113405|3406|1|6|8510.40|0.10|0.03|R|F|1994-08-01|1994-10-15|1994-08-12|NONE|MAIL| express dependencies. asymptotes pr| +5032|187408|9927|2|38|56825.20|0.01|0.08|R|F|1994-10-03|1994-09-22|1994-10-22|DELIVER IN PERSON|AIR|equests sleep about the quick| +5032|153470|5986|3|31|47227.57|0.10|0.08|A|F|1994-11-05|1994-10-06|1994-11-07|NONE|RAIL|es. even, ironic pint| +5032|169075|9076|4|12|13728.84|0.10|0.00|A|F|1994-10-19|1994-09-30|1994-10-31|TAKE BACK RETURN|AIR|final accounts nag furiously s| +5033|145637|5638|1|35|58892.05|0.00|0.07|R|F|1993-04-07|1993-03-14|1993-04-16|TAKE BACK RETURN|REG AIR|uthlessly re| +5033|108364|5895|2|48|65873.28|0.07|0.08|A|F|1993-05-03|1993-03-13|1993-05-19|TAKE BACK RETURN|RAIL| the ironic deposits. quickly final de| +5033|71412|3920|3|7|9683.87|0.06|0.07|A|F|1993-02-19|1993-03-29|1993-03-19|COLLECT COD|AIR| express excuses w| +5033|15515|3019|4|42|60081.42|0.02|0.04|R|F|1993-03-31|1993-03-29|1993-04-01|COLLECT COD|AIR|lar deposits use furiously bold packages.| +5033|144621|2164|5|29|48302.98|0.02|0.03|A|F|1993-04-25|1993-04-08|1993-05-17|COLLECT COD|MAIL|lar pains poach. blithely ironic theodol| +5033|37666|170|6|10|16036.60|0.10|0.00|A|F|1993-02-28|1993-02-19|1993-03-20|COLLECT COD|FOB|e unusual, i| +5033|46976|4489|7|45|86533.65|0.01|0.05|A|F|1993-04-03|1993-03-29|1993-04-25|COLLECT COD|MAIL|g packages. even, pe| +5034|114544|7056|1|11|17143.94|0.06|0.07|N|O|1997-04-11|1997-01-26|1997-04-25|TAKE BACK RETURN|RAIL|counts. regular pinto beans nag afte| +5035|28398|3403|1|15|19895.85|0.00|0.03|R|F|1994-01-24|1994-02-23|1994-02-15|COLLECT COD|RAIL|le quickly. busy foxes sleep furio| +5035|82701|7718|2|34|57245.80|0.00|0.02|R|F|1994-04-02|1994-03-07|1994-04-03|DELIVER IN PERSON|FOB|. idle requ| +5035|143714|6229|3|38|66792.98|0.08|0.08|R|F|1994-04-11|1994-02-06|1994-04-28|NONE|AIR|lly. furiously ironic foxes grow care| +5035|187133|2170|4|9|10981.17|0.02|0.07|A|F|1994-01-29|1994-02-06|1994-02-25|COLLECT COD|REG AIR|each blithely. even, unusual d| +5035|129160|4185|5|11|13080.76|0.09|0.07|R|F|1993-12-29|1994-02-01|1994-01-18|DELIVER IN PERSON|AIR|s are slyly regular platelets| +5035|183267|822|6|40|54010.40|0.00|0.06|A|F|1994-03-13|1994-01-22|1994-04-06|TAKE BACK RETURN|MAIL|d packages. carefu| +5036|52789|5295|1|45|78380.10|0.04|0.03|N|O|1995-08-18|1995-09-24|1995-09-17|COLLECT COD|SHIP|sly final deposits sleep regular, i| +5036|20915|3418|2|39|71600.49|0.02|0.00|N|O|1995-11-13|1995-09-12|1995-11-23|NONE|REG AIR|g the dolphins. carefully regular depos| +5037|126355|1380|1|18|24864.30|0.05|0.07|N|O|1998-02-08|1998-02-08|1998-02-24|DELIVER IN PERSON|AIR|c deposits| +5037|35010|2520|2|13|12285.13|0.07|0.03|N|O|1998-01-18|1998-02-22|1998-02-03|COLLECT COD|AIR|riously final ideas hi| +5037|3437|8438|3|40|53617.20|0.05|0.07|N|O|1998-02-10|1998-02-17|1998-03-11|TAKE BACK RETURN|REG AIR|ts cajole even| +5037|160064|2581|4|7|7868.42|0.09|0.03|N|O|1998-01-07|1998-02-10|1998-01-16|NONE|RAIL|cajole at t| +5038|119915|4938|1|46|89005.86|0.08|0.00|A|F|1992-12-13|1993-02-13|1992-12-18|TAKE BACK RETURN|TRUCK| instructions sleep daringly orb| +5038|9094|1595|2|27|27083.43|0.02|0.01|R|F|1992-12-28|1993-01-11|1993-01-10|DELIVER IN PERSON|SHIP|as after t| +5038|36780|6781|3|20|34335.60|0.05|0.07|R|F|1993-03-23|1993-01-11|1993-04-22|DELIVER IN PERSON|TRUCK|ions. carefully even theodo| +5038|150872|3388|4|13|24997.31|0.06|0.05|A|F|1992-12-14|1993-01-28|1992-12-27|DELIVER IN PERSON|FOB|s theodolites.| +5038|95925|944|5|3|5762.76|0.08|0.01|R|F|1993-03-03|1993-02-06|1993-03-18|TAKE BACK RETURN|FOB|ter the final theodolites. quickly expres| +5038|198800|3839|6|46|87344.80|0.01|0.01|R|F|1992-12-24|1993-01-26|1993-01-03|NONE|MAIL|refully ironic deposits| +5038|16663|1666|7|13|20535.58|0.03|0.05|A|F|1993-04-09|1993-02-09|1993-05-05|DELIVER IN PERSON|REG AIR|tegrate above the | +5039|45074|5075|1|19|19362.33|0.04|0.04|A|F|1993-02-24|1993-04-27|1993-03-13|DELIVER IN PERSON|SHIP|er bold packages integrate| +5039|146250|6251|2|47|60923.75|0.06|0.06|R|F|1993-03-14|1993-05-02|1993-04-03|TAKE BACK RETURN|MAIL|ake along the carefully bold accounts.| +5039|19935|7439|3|34|63067.62|0.03|0.08|R|F|1993-03-26|1993-05-20|1993-04-05|NONE|SHIP|ar notornis. pending foxes cajole. | +5039|31878|9388|4|11|19908.57|0.03|0.06|R|F|1993-04-18|1993-03-25|1993-04-19|COLLECT COD|TRUCK|ing packages doze blit| +5039|162930|2931|5|25|49823.25|0.02|0.03|A|F|1993-05-07|1993-05-22|1993-05-10|NONE|RAIL|gainst the ca| +5039|156736|6737|6|10|17927.30|0.08|0.00|R|F|1993-03-22|1993-04-26|1993-04-14|NONE|TRUCK|unts are busily unusual pint| +5064|171249|1250|1|40|52809.60|0.07|0.05|A|F|1993-09-19|1993-09-08|1993-09-20|TAKE BACK RETURN|REG AIR|oost quickly alon| +5064|172281|2282|2|32|43304.96|0.00|0.01|R|F|1993-06-17|1993-08-12|1993-07-03|TAKE BACK RETURN|MAIL|ly. ironic, regular deposits are furio| +5065|198111|631|1|29|35064.19|0.05|0.05|R|F|1993-03-25|1993-03-24|1993-04-20|NONE|RAIL|pecial pinto beans above the blithely expre| +5065|36047|1054|2|30|29491.20|0.08|0.00|A|F|1993-02-02|1993-03-12|1993-02-19|COLLECT COD|RAIL|nal packages boost boldly across t| +5066|14480|9483|1|49|68329.52|0.04|0.04|R|F|1993-02-25|1993-04-11|1993-03-01|NONE|REG AIR|fully regular requests. regular accounts a| +5067|89084|6609|1|50|53654.00|0.02|0.04|A|F|1992-12-25|1992-11-29|1993-01-17|DELIVER IN PERSON|RAIL|y enticing theodo| +5067|23780|8785|2|20|34075.60|0.05|0.05|R|F|1992-10-25|1992-12-14|1992-10-29|DELIVER IN PERSON|AIR|te furiously about the quickly pend| +5068|156300|1331|1|40|54252.00|0.10|0.08|A|F|1995-01-07|1995-01-15|1995-01-31|COLLECT COD|REG AIR| carefully special accounts are final| +5068|118296|8297|2|15|19714.35|0.07|0.08|A|F|1994-12-18|1995-03-05|1995-01-02|COLLECT COD|TRUCK|usual, silent notornis solve slyly across| +5068|187858|5413|3|31|60321.35|0.05|0.08|R|F|1995-03-29|1995-02-07|1995-04-09|NONE|SHIP|symptotes across the carefully even depende| +5068|120792|8329|4|40|72511.60|0.01|0.08|R|F|1995-01-03|1995-02-14|1995-02-02|COLLECT COD|FOB| furiously pending deposits are flu| +5069|124075|9100|1|34|37368.38|0.06|0.08|N|O|1997-01-15|1997-02-20|1997-01-21|NONE|TRUCK|er the slyly pending theodolite| +5069|114273|6785|2|11|14159.97|0.00|0.07|N|O|1997-04-05|1997-03-23|1997-04-26|TAKE BACK RETURN|RAIL|requests. de| +5069|176009|1044|3|8|8680.00|0.00|0.06|N|O|1997-01-13|1997-02-03|1997-02-12|TAKE BACK RETURN|TRUCK|ymptotes s| +5070|48778|1283|1|44|75977.88|0.02|0.07|N|O|1998-01-01|1997-12-15|1998-01-16|NONE|RAIL|ss accounts snooze alon| +5070|6279|6280|2|9|10667.43|0.05|0.08|N|O|1998-01-11|1998-01-10|1998-01-30|TAKE BACK RETURN|TRUCK|bold pinto beans are fluffi| +5070|128505|3530|3|49|75141.50|0.10|0.06|N|O|1997-10-31|1997-12-04|1997-11-06|DELIVER IN PERSON|SHIP|lets boost blithely slyly pendi| +5070|173517|6035|4|22|34991.22|0.00|0.01|N|O|1997-11-19|1998-01-16|1997-12-15|NONE|MAIL|ly regular asymptotes are quickly after| +5070|96782|6783|5|44|78266.32|0.10|0.00|N|O|1998-01-04|1997-11-21|1998-02-02|NONE|MAIL|eans against the ca| +5070|12428|2429|6|30|40212.60|0.07|0.01|N|O|1997-12-24|1997-11-25|1998-01-14|COLLECT COD|REG AIR| to the carefully un| +5070|72641|2642|7|27|43568.28|0.08|0.00|N|O|1997-12-02|1997-12-28|1997-12-22|TAKE BACK RETURN|RAIL|about the quickly unu| +5071|76827|4349|1|45|81171.90|0.04|0.00|R|F|1993-10-09|1993-09-20|1993-10-18|COLLECT COD|SHIP|cording to| +5071|27960|463|2|1|1887.96|0.06|0.06|R|F|1993-08-15|1993-10-03|1993-09-13|DELIVER IN PERSON|RAIL|above the depths. forges throu| +5071|121896|9433|3|46|88222.94|0.08|0.08|R|F|1993-09-23|1993-08-26|1993-09-29|TAKE BACK RETURN|AIR| foxes use daringly accounts: reg| +5071|91359|6378|4|47|63466.45|0.09|0.03|R|F|1993-08-05|1993-09-30|1993-08-25|DELIVER IN PERSON|TRUCK|arefully even deposits alongside| +5071|56497|6498|5|43|62500.07|0.07|0.02|A|F|1993-10-02|1993-08-21|1993-10-19|COLLECT COD|SHIP|ggle quickly. pending, e| +5096|110381|382|1|36|50089.68|0.03|0.00|N|O|1996-06-23|1996-05-24|1996-06-24|NONE|MAIL| furiously express i| +5096|160842|3359|2|11|20931.24|0.03|0.08|N|O|1996-07-17|1996-05-27|1996-07-27|DELIVER IN PERSON|AIR|e quickly blithely sile| +5096|57913|419|3|45|84190.95|0.07|0.00|N|O|1996-05-29|1996-06-22|1996-06-11|TAKE BACK RETURN|FOB|erns boost carefully. carefully fin| +5096|135456|2996|4|42|62640.90|0.08|0.06|N|O|1996-07-03|1996-06-12|1996-07-06|COLLECT COD|SHIP| carefully regular pinto| +5096|1186|8687|5|21|22830.78|0.09|0.08|N|O|1996-07-09|1996-05-09|1996-08-06|TAKE BACK RETURN|TRUCK|es according to the blithely special d| +5097|40031|7544|1|27|26217.81|0.03|0.07|N|O|1997-01-10|1997-01-16|1997-01-11|COLLECT COD|REG AIR|s affix furiously furiously pe| +5097|193137|695|2|4|4920.52|0.08|0.05|N|O|1996-11-21|1997-01-01|1996-12-01|TAKE BACK RETURN|MAIL|ress deposits boost care| +5097|50865|3371|3|8|14526.88|0.03|0.02|N|O|1996-10-25|1996-11-19|1996-10-27|TAKE BACK RETURN|REG AIR|counts boost carefully ab| +5097|73623|3624|4|8|12772.96|0.03|0.03|N|O|1996-11-18|1996-12-30|1996-12-13|DELIVER IN PERSON|TRUCK|as mold pending, ironic foxes.| +5097|170938|3456|5|30|60267.90|0.06|0.01|N|O|1997-01-23|1996-11-30|1997-02-11|DELIVER IN PERSON|MAIL|are about the quickly iron| +5098|45908|3421|1|15|27808.50|0.08|0.01|R|F|1994-07-01|1994-06-28|1994-07-17|COLLECT COD|SHIP|kly even requests affix. s| +5098|166626|1659|2|40|67704.80|0.04|0.06|A|F|1994-05-03|1994-06-10|1994-05-09|NONE|RAIL|gular pinto b| +5098|70365|366|3|30|40060.80|0.05|0.03|A|F|1994-06-01|1994-05-09|1994-06-09|TAKE BACK RETURN|TRUCK|ies snooze ideas!| +5098|11886|4388|4|43|77308.84|0.10|0.08|R|F|1994-06-28|1994-06-09|1994-07-06|DELIVER IN PERSON|SHIP|uests nag quickly along the unusual a| +5098|159731|4762|5|9|16116.57|0.01|0.07|R|F|1994-04-07|1994-06-06|1994-04-12|DELIVER IN PERSON|RAIL| to the ruthless excuses| +5099|4576|7077|1|41|60703.37|0.09|0.04|A|F|1994-12-02|1994-12-28|1994-12-08|TAKE BACK RETURN|RAIL|ts use carefully accor| +5099|98518|8519|2|48|72792.48|0.06|0.05|R|F|1994-10-26|1994-12-16|1994-11-07|TAKE BACK RETURN|SHIP|nal escapades a| +5099|176741|6742|3|25|45443.50|0.05|0.00|R|F|1994-11-04|1994-11-22|1994-11-30|DELIVER IN PERSON|TRUCK|ackages. sl| +5100|38014|518|1|46|43792.46|0.06|0.03|N|O|1996-12-04|1997-01-07|1996-12-14|DELIVER IN PERSON|TRUCK|nts. instructions boo| +5100|95299|5300|2|13|16825.77|0.00|0.08|N|O|1997-02-23|1997-01-31|1997-03-05|COLLECT COD|TRUCK|lithe deposits hang finally after th| +5101|195234|5235|1|36|47852.28|0.01|0.04|R|F|1993-10-27|1993-11-19|1993-11-16|TAKE BACK RETURN|TRUCK|fluffily fi| +5101|87752|2769|2|8|13918.00|0.03|0.05|R|F|1993-10-01|1993-10-26|1993-10-19|NONE|AIR| detect quickly. platele| +5101|45468|5469|3|36|50884.56|0.01|0.00|R|F|1993-12-18|1993-12-03|1994-01-10|DELIVER IN PERSON|REG AIR|ending deposits cajole alongside of the | +5101|174490|4491|4|15|23467.35|0.01|0.06|R|F|1993-12-19|1993-10-10|1994-01-05|NONE|RAIL|fully even packages! r| +5102|97093|4621|1|12|13081.08|0.10|0.01|N|O|1996-02-26|1995-12-20|1996-03-04|TAKE BACK RETURN|RAIL|ly pending requests. regular instruction| +5102|36425|6426|2|19|25866.98|0.05|0.05|N|O|1995-12-07|1996-01-07|1995-12-16|DELIVER IN PERSON|FOB|carefully ironic, even packages| +5102|183621|3622|3|35|59661.70|0.05|0.07|N|O|1996-02-22|1995-12-28|1996-03-14|NONE|MAIL|g fluffily above the pending instructi| +5103|107422|9933|1|16|22870.72|0.10|0.03|A|F|1992-07-03|1992-05-13|1992-07-27|TAKE BACK RETURN|TRUCK| pinto beans cajole regular packag| +5103|35897|8401|2|33|60485.37|0.03|0.01|A|F|1992-03-13|1992-04-17|1992-03-31|COLLECT COD|SHIP|bold request| +5103|105724|8235|3|34|58810.48|0.04|0.05|A|F|1992-03-27|1992-05-07|1992-04-19|DELIVER IN PERSON|FOB|ar deposits aff| +5103|93536|1064|4|11|16824.83|0.10|0.01|R|F|1992-03-23|1992-05-02|1992-04-22|TAKE BACK RETURN|FOB|long the quietly pending deposits. special,| +5103|58638|3649|5|15|23949.45|0.09|0.07|R|F|1992-06-28|1992-05-10|1992-07-19|DELIVER IN PERSON|RAIL| cajole blithely. sly| +5128|21697|1698|1|11|17805.59|0.02|0.05|A|F|1993-09-11|1993-08-31|1993-09-17|DELIVER IN PERSON|AIR| the fluffily pending instructi| +5128|46181|3694|2|18|20289.24|0.08|0.01|R|F|1993-07-18|1993-09-05|1993-07-26|TAKE BACK RETURN|SHIP|und the final, express accounts. bo| +5129|64577|2096|1|24|36997.68|0.05|0.02|A|F|1994-03-16|1994-03-27|1994-04-15|DELIVER IN PERSON|FOB|ross the blithely final | +5129|130600|3114|2|34|55440.40|0.09|0.04|A|F|1994-05-07|1994-04-16|1994-05-26|COLLECT COD|REG AIR|al, regular deposits boost during the f| +5129|182147|7184|3|40|49165.60|0.00|0.08|A|F|1994-04-17|1994-04-04|1994-05-05|TAKE BACK RETURN|REG AIR| requests. requests haggle quickly. fluffil| +5129|138290|5830|4|23|30550.67|0.04|0.04|A|F|1994-01-29|1994-03-02|1994-02-05|NONE|MAIL|d requests cajole fu| +5129|27404|4911|5|46|61244.40|0.08|0.02|R|F|1994-03-10|1994-02-25|1994-04-02|NONE|RAIL|y according to the slyly dogged id| +5129|168558|3591|6|44|71568.20|0.04|0.06|R|F|1994-02-12|1994-04-06|1994-02-13|COLLECT COD|SHIP|ial excuses. blithely pending pinto be| +5129|144137|9166|7|17|20079.21|0.06|0.02|R|F|1994-03-02|1994-04-24|1994-03-07|TAKE BACK RETURN|SHIP| carefully special deposits print| +5130|104552|9573|1|22|34244.10|0.03|0.08|N|O|1995-10-23|1995-09-25|1995-11-03|TAKE BACK RETURN|MAIL|c foxes. quickly final excuses nag after | +5130|193072|3073|2|29|33787.03|0.03|0.03|N|O|1995-11-10|1995-09-06|1995-11-16|DELIVER IN PERSON|TRUCK|nts. courts haggle furious| +5130|148472|8473|3|28|42573.16|0.04|0.04|N|O|1995-10-11|1995-09-07|1995-10-29|DELIVER IN PERSON|FOB|sits wake fu| +5131|86967|4492|1|24|46895.04|0.08|0.05|N|O|1995-07-13|1995-07-19|1995-07-15|COLLECT COD|MAIL|its unwind always at | +5131|40755|756|2|3|5087.25|0.07|0.06|N|F|1995-06-12|1995-06-30|1995-07-02|DELIVER IN PERSON|RAIL|eodolites. furiously unusual depo| +5131|166033|6034|3|2|2198.06|0.03|0.01|N|O|1995-06-21|1995-07-05|1995-07-05|TAKE BACK RETURN|RAIL|requests haggle slyly. slyly ironic | +5131|101486|3997|4|50|74374.00|0.06|0.04|N|O|1995-06-27|1995-06-16|1995-07-16|NONE|MAIL|h along the pinto beans. s| +5131|70242|5257|5|38|46065.12|0.01|0.03|N|O|1995-06-27|1995-06-07|1995-07-06|DELIVER IN PERSON|MAIL|the carefully final accounts cajole slyl| +5131|151438|1439|6|45|67024.35|0.09|0.01|N|O|1995-07-17|1995-06-21|1995-08-06|NONE|FOB|uctions wake furiously regular p| +5131|6247|8748|7|12|13838.88|0.04|0.02|N|F|1995-06-13|1995-06-10|1995-06-27|COLLECT COD|FOB|, special instructions. slyly regular excu| +5132|183591|1146|1|34|56936.06|0.07|0.07|N|O|1997-08-03|1997-05-26|1997-08-14|NONE|MAIL|special packages. ironic de| +5132|2403|4904|2|12|15664.80|0.10|0.07|N|O|1997-07-21|1997-05-12|1997-07-23|COLLECT COD|MAIL|y ironic pinto beans use with| +5133|94438|6948|1|35|50135.05|0.09|0.04|N|O|1998-08-01|1998-08-20|1998-08-11|TAKE BACK RETURN|FOB|ilent deposits. blithely ironic exc| +5133|7384|4885|2|39|50363.82|0.00|0.07|N|O|1998-07-20|1998-09-16|1998-08-16|DELIVER IN PERSON|MAIL|silent sheaves integrate| +5133|89740|9741|3|41|70919.34|0.10|0.00|N|O|1998-09-27|1998-10-01|1998-10-15|COLLECT COD|REG AIR|refully regular deposits | +5133|48628|3637|4|3|4729.86|0.02|0.00|N|O|1998-10-29|1998-08-09|1998-11-20|TAKE BACK RETURN|REG AIR| are of the furiously express packages. fu| +5133|84728|4729|5|25|42818.00|0.10|0.07|N|O|1998-09-30|1998-09-11|1998-10-19|COLLECT COD|FOB|uickly regular the| +5133|15772|3276|6|10|16877.70|0.04|0.08|N|O|1998-09-24|1998-09-11|1998-10-08|NONE|RAIL|ly regular excuses acc| +5133|63817|6324|7|11|19588.91|0.04|0.08|N|O|1998-08-20|1998-08-19|1998-08-27|TAKE BACK RETURN|RAIL|ffily. ironic requests wake express request| +5134|170188|2706|1|50|62909.00|0.07|0.03|N|O|1998-03-21|1998-05-08|1998-03-24|DELIVER IN PERSON|AIR| regular asymptote| +5134|147615|5158|2|6|9975.66|0.03|0.00|N|O|1998-04-02|1998-04-07|1998-04-15|TAKE BACK RETURN|RAIL|y regular packages. busily express re| +5134|156860|1891|3|8|15334.88|0.01|0.03|N|O|1998-03-21|1998-03-30|1998-04-07|NONE|TRUCK|s impress slyly to the silently ironic inst| +5134|131881|9421|4|20|38257.60|0.03|0.03|N|O|1998-03-30|1998-03-25|1998-04-17|TAKE BACK RETURN|TRUCK|ies wake along the even accounts. dogged,| +5135|26057|6058|1|40|39322.00|0.05|0.03|R|F|1992-11-12|1992-11-09|1992-11-17|NONE|AIR|uests. requests sleep slyly carefull| +5160|148744|6287|1|2|3585.48|0.03|0.04|A|F|1994-07-11|1994-05-22|1994-07-22|COLLECT COD|AIR|t deposits| +5160|136272|3812|2|39|51022.53|0.07|0.08|A|F|1994-04-03|1994-05-25|1994-04-24|NONE|SHIP|d theodolites. quickly ironic asymp| +5160|107780|7781|3|49|87601.22|0.05|0.00|R|F|1994-03-31|1994-05-14|1994-04-16|COLLECT COD|TRUCK|as. furiously s| +5160|53373|3374|4|20|26527.40|0.08|0.08|A|F|1994-07-08|1994-06-01|1994-07-10|TAKE BACK RETURN|FOB|s wake brave deposits. slyly idle inst| +5160|27969|472|5|18|34145.28|0.10|0.04|A|F|1994-04-18|1994-05-10|1994-05-18|NONE|TRUCK|eposits nag alongside of the slyly e| +5161|137453|7454|1|8|11923.60|0.08|0.08|N|O|1995-10-08|1995-12-12|1995-10-29|TAKE BACK RETURN|REG AIR|ts are accor| +5161|156561|1592|2|41|66319.96|0.02|0.00|N|O|1996-01-18|1995-12-15|1996-01-29|COLLECT COD|REG AIR|sublate alon| +5161|109855|4876|3|26|48486.10|0.02|0.02|N|O|1995-11-27|1995-12-08|1995-12-02|DELIVER IN PERSON|RAIL|blithely against the special sauternes. pa| +5162|164798|2347|1|32|59609.28|0.06|0.05|R|F|1994-07-14|1994-07-08|1994-08-09|DELIVER IN PERSON|FOB|ag carefully above the| +5162|159077|6623|2|35|39762.45|0.09|0.08|R|F|1994-06-17|1994-07-01|1994-07-09|COLLECT COD|SHIP| dolphins det| +5162|192342|2343|3|8|11474.72|0.06|0.08|R|F|1994-08-30|1994-07-31|1994-09-07|NONE|RAIL| of the furio| +5162|84860|4861|4|39|71949.54|0.00|0.00|R|F|1994-06-04|1994-07-19|1994-06-11|DELIVER IN PERSON|FOB|to beans eat blithely quie| +5162|29197|6704|5|30|33785.70|0.05|0.03|R|F|1994-09-06|1994-07-25|1994-10-06|COLLECT COD|AIR|ly pending requests. sl| +5162|107524|7525|6|10|15315.20|0.02|0.04|A|F|1994-08-23|1994-07-28|1994-09-01|DELIVER IN PERSON|MAIL| packages s| +5163|126785|4322|1|16|28988.48|0.03|0.04|A|F|1993-12-01|1993-11-01|1993-12-06|COLLECT COD|RAIL|iously silent deposits. furiously bra| +5163|68983|6502|2|32|62463.36|0.02|0.03|A|F|1993-12-10|1993-10-16|1993-12-31|NONE|RAIL|y final dependencies. t| +5163|180705|3224|3|21|37499.70|0.05|0.01|A|F|1993-09-14|1993-10-25|1993-09-19|DELIVER IN PERSON|MAIL|ag carefully on the slyly special pinto bea| +5163|101970|4481|4|4|7887.88|0.06|0.01|A|F|1993-12-21|1993-10-21|1994-01-03|TAKE BACK RETURN|MAIL|arefully regular ideas na| +5163|197819|7820|5|30|57504.30|0.06|0.06|A|F|1993-12-26|1993-09-30|1994-01-21|DELIVER IN PERSON|REG AIR|ck instructions. even, reg| +5163|129203|6740|6|39|48055.80|0.06|0.05|A|F|1993-12-08|1993-10-15|1993-12-19|TAKE BACK RETURN|FOB|ns are. even deposits sleep fur| +5164|16221|8723|1|1|1137.22|0.07|0.07|N|O|1997-12-17|1998-01-16|1998-01-08|TAKE BACK RETURN|RAIL|. regular accounts x-ray caref| +5164|26267|3774|2|50|59663.00|0.10|0.08|N|O|1997-12-05|1998-01-10|1997-12-16|TAKE BACK RETURN|SHIP|l foxes boost furiously unti| +5164|67347|4866|3|12|15772.08|0.09|0.05|N|O|1998-01-13|1998-01-18|1998-02-10|DELIVER IN PERSON|FOB|nic epitaphs. care| +5164|98256|3275|4|49|61458.25|0.10|0.03|N|O|1997-12-31|1998-02-09|1998-01-19|COLLECT COD|RAIL|ial pinto beans about the | +5164|180764|765|5|24|44274.24|0.04|0.01|N|O|1998-03-12|1997-12-26|1998-03-16|NONE|SHIP|. blithely pending pack| +5164|99066|9067|6|45|47927.70|0.04|0.02|N|O|1997-12-09|1998-01-16|1997-12-20|DELIVER IN PERSON|AIR|quests? final pinto beans after the pending| +5165|109582|7113|1|32|50930.56|0.10|0.03|N|O|1996-03-14|1996-04-15|1996-04-08|TAKE BACK RETURN|RAIL|e blithely bol| +5166|30334|2838|1|9|11378.97|0.09|0.07|A|F|1993-08-17|1993-08-26|1993-08-31|COLLECT COD|FOB|e closely regular packages. fu| +5166|9788|2289|2|42|71306.76|0.03|0.06|A|F|1993-08-23|1993-09-10|1993-09-12|DELIVER IN PERSON|TRUCK|y unusual epitaphs. fluffily expr| +5166|98100|3119|3|14|15373.40|0.02|0.06|R|F|1993-07-18|1993-08-24|1993-08-07|TAKE BACK RETURN|SHIP|uests use! furiou| +5166|155049|2595|4|39|43057.56|0.07|0.06|R|F|1993-08-19|1993-09-07|1993-08-31|COLLECT COD|SHIP|deposits. furiou| +5166|97296|2315|5|47|60784.63|0.08|0.06|A|F|1993-10-27|1993-09-13|1993-11-15|COLLECT COD|AIR|platelets thr| +5166|38236|740|6|49|57537.27|0.10|0.01|A|F|1993-10-17|1993-08-15|1993-10-29|DELIVER IN PERSON|RAIL|y ironic accounts boost| +5167|64748|7255|1|11|18840.14|0.09|0.03|N|O|1998-04-07|1998-03-12|1998-05-06|TAKE BACK RETURN|RAIL|ly. platelets mold regular platelets. | +5167|3179|3180|2|50|54108.50|0.04|0.04|N|O|1998-03-15|1998-02-17|1998-04-09|NONE|AIR|somas. fluffily final pinto beans| +5167|27754|257|3|2|3363.50|0.00|0.05|N|O|1997-12-23|1998-02-05|1998-01-17|COLLECT COD|TRUCK|fily regular Tiresias haggle car| +5167|57901|5417|4|2|3717.80|0.05|0.04|N|O|1998-03-31|1998-01-14|1998-04-05|COLLECT COD|SHIP|ong the daringly regu| +5167|129715|4740|5|40|69788.40|0.07|0.01|N|O|1998-01-16|1998-01-22|1998-01-27|TAKE BACK RETURN|MAIL|egular pinto beans. regular instructi| +5192|94625|9644|1|4|6478.48|0.02|0.02|N|O|1997-12-11|1998-02-07|1997-12-19|NONE|AIR|ffix carefully alongside of| +5192|148340|3369|2|32|44426.88|0.08|0.02|N|O|1997-12-29|1998-01-19|1998-01-20|COLLECT COD|FOB|ial requests boost quickly| +5192|150255|2771|3|40|52210.00|0.04|0.03|N|O|1998-02-26|1998-02-09|1998-03-16|DELIVER IN PERSON|REG AIR| excuses wake carefully furio| +5192|132585|125|4|27|43674.66|0.08|0.07|N|O|1998-02-11|1998-01-14|1998-02-25|NONE|REG AIR|ckly express deposits nag furiously requ| +5192|142173|7202|5|19|23088.23|0.03|0.05|N|O|1998-03-11|1998-01-02|1998-04-04|TAKE BACK RETURN|RAIL|en instructions are f| +5192|91162|3672|6|34|39207.44|0.07|0.06|N|O|1998-03-05|1997-12-30|1998-04-02|COLLECT COD|SHIP| nag fluffily special theodolites. | +5192|154066|6582|7|42|47042.52|0.04|0.02|N|O|1997-11-28|1998-01-10|1997-12-06|DELIVER IN PERSON|FOB|egular deposits shall wake. accounts are qu| +5193|186014|8533|1|6|6600.06|0.02|0.06|N|O|1996-04-12|1996-04-08|1996-04-17|COLLECT COD|TRUCK|s into the furiously bold ac| +5193|124436|4437|2|9|13143.87|0.02|0.08|N|O|1996-03-23|1996-03-04|1996-04-14|TAKE BACK RETURN|TRUCK|inal, ironic deposi| +5193|183414|3415|3|34|50911.94|0.03|0.00|N|O|1996-02-21|1996-04-10|1996-03-06|DELIVER IN PERSON|TRUCK| bold deposits. even excuses cajole a| +5193|31809|6816|4|13|22630.40|0.10|0.04|N|O|1996-04-23|1996-04-22|1996-05-04|COLLECT COD|FOB|ts around the regular, ironic| +5193|1732|9233|5|38|62081.74|0.04|0.01|N|O|1996-03-07|1996-04-18|1996-03-08|DELIVER IN PERSON|REG AIR|l accounts sleep furiously | +5193|95109|7619|6|3|3312.30|0.03|0.01|N|O|1996-03-05|1996-03-12|1996-03-10|TAKE BACK RETURN|REG AIR| decoys alongside of| +5193|87527|5052|7|1|1514.52|0.10|0.00|N|O|1996-04-21|1996-03-28|1996-05-13|DELIVER IN PERSON|MAIL|tes dazzle. unusual, pe| +5194|51175|3681|1|46|51803.82|0.10|0.08|R|F|1994-08-30|1994-09-02|1994-09-21|DELIVER IN PERSON|RAIL|e according t| +5194|97266|7267|2|15|18948.90|0.09|0.02|A|F|1994-08-28|1994-08-15|1994-09-11|COLLECT COD|MAIL|he regular, ironi| +5194|136409|8923|3|11|15899.40|0.10|0.07|A|F|1994-09-25|1994-09-09|1994-10-08|COLLECT COD|REG AIR| slyly even deposits. close pack| +5194|21947|4450|4|20|37378.80|0.01|0.07|A|F|1994-11-01|1994-10-07|1994-11-10|DELIVER IN PERSON|TRUCK|egular ideas according to th| +5194|51488|1489|5|13|18713.24|0.02|0.08|R|F|1994-10-08|1994-09-12|1994-10-23|DELIVER IN PERSON|RAIL|s. silently unusual multiplie| +5194|156720|4266|6|18|31980.96|0.03|0.06|A|F|1994-07-24|1994-08-16|1994-08-20|TAKE BACK RETURN|REG AIR|fily unusual accounts? packages are | +5194|192491|2492|7|24|38003.76|0.05|0.01|A|F|1994-09-16|1994-09-29|1994-10-02|NONE|AIR|sts! regular, ironic attainments wake. slyl| +5195|194873|7393|1|5|9839.35|0.06|0.07|A|F|1994-02-17|1994-01-20|1994-02-28|TAKE BACK RETURN|MAIL|tes cajole? sly| +5195|28923|3928|2|41|75928.72|0.09|0.08|A|F|1994-03-22|1994-01-21|1994-03-26|NONE|REG AIR|ymptotes n| +5195|103858|8879|3|45|83783.25|0.04|0.06|R|F|1994-03-16|1994-02-06|1994-04-14|NONE|RAIL|o the closely regular decoys wake si| +5195|131802|4316|4|34|62349.20|0.00|0.08|R|F|1993-12-29|1994-01-11|1994-01-24|TAKE BACK RETURN|FOB|s. slyly regular instructions wak| +5195|186137|3692|5|27|33024.51|0.04|0.02|R|F|1993-12-01|1994-01-11|1993-12-15|NONE|AIR| blithely regular instructi| +5195|195132|171|6|46|56447.98|0.09|0.07|A|F|1994-03-18|1994-02-03|1994-04-07|COLLECT COD|RAIL|dependencies wake boldly blithely ironic p| +5195|172478|7513|7|12|18605.64|0.10|0.01|A|F|1994-03-17|1994-01-08|1994-04-15|TAKE BACK RETURN|TRUCK|ly final i| +5196|34592|4593|1|32|48850.88|0.08|0.03|A|F|1993-10-24|1993-09-27|1993-11-10|COLLECT COD|AIR| express ideas. regular requests unwind | +5197|107539|7540|1|35|54128.55|0.05|0.05|R|F|1994-08-23|1994-09-18|1994-09-05|DELIVER IN PERSON|RAIL|ular excuses use evenly. quickly f| +5197|1049|8550|2|22|20900.88|0.09|0.00|A|F|1994-10-20|1994-09-14|1994-11-10|TAKE BACK RETURN|RAIL|en requests! packages shall have | +5197|28792|1295|3|12|20649.48|0.08|0.06|R|F|1994-10-13|1994-09-14|1994-10-24|COLLECT COD|TRUCK|xes sleep fluffily slyly| +5197|105187|5188|4|21|25035.78|0.10|0.06|A|F|1994-10-18|1994-09-27|1994-11-01|COLLECT COD|AIR|ages. carefull| +5198|33151|5655|1|47|50955.05|0.09|0.05|R|F|1992-06-17|1992-06-22|1992-07-17|COLLECT COD|RAIL|e above the furiously express instru| +5198|167626|143|2|3|5080.86|0.03|0.08|A|F|1992-08-03|1992-07-30|1992-08-14|TAKE BACK RETURN|REG AIR|al sheaves. tithes boost carefully. | +5198|77959|5481|3|23|44549.85|0.05|0.04|R|F|1992-06-26|1992-08-02|1992-07-22|DELIVER IN PERSON|RAIL|ly bold frets h| +5198|51576|6587|4|9|13748.13|0.04|0.07|A|F|1992-07-12|1992-06-27|1992-07-25|TAKE BACK RETURN|MAIL|ick requests sublate r| +5198|23222|8227|5|9|10306.98|0.03|0.06|A|F|1992-05-21|1992-06-09|1992-05-27|TAKE BACK RETURN|TRUCK|ing frays sleep slyly fo| +5199|107183|7184|1|25|29754.50|0.03|0.01|N|O|1997-01-02|1996-12-03|1997-01-17|COLLECT COD|TRUCK|y pending ideas wake carefully s| +5199|15697|700|2|15|24190.35|0.09|0.07|N|O|1996-10-19|1996-10-22|1996-10-24|COLLECT COD|AIR|rave accounts detect blithely. sly| +5199|16552|1555|3|14|20559.70|0.05|0.01|N|O|1997-01-03|1996-11-20|1997-01-26|TAKE BACK RETURN|FOB|theodolites are quickly fluffily regu| +5224|44325|1838|1|49|62196.68|0.10|0.07|R|F|1993-09-06|1993-09-01|1993-10-03|COLLECT COD|RAIL|dependencies detect. express, p| +5225|84102|6611|1|23|24980.30|0.02|0.06|N|O|1996-02-22|1996-01-13|1996-03-03|TAKE BACK RETURN|MAIL|y packages wake blithely. blithely e| +5225|100065|7596|2|14|14910.84|0.01|0.00|N|O|1996-03-29|1996-01-15|1996-04-03|TAKE BACK RETURN|FOB|es. furiously ironic warhors| +5226|181103|3622|1|17|20129.70|0.04|0.08|N|O|1998-03-13|1998-03-03|1998-04-10|NONE|FOB|ess asympto| +5226|181532|9087|2|8|12908.24|0.08|0.02|N|O|1998-01-28|1998-03-15|1998-02-20|TAKE BACK RETURN|TRUCK| excuses. even, even pint| +5226|196020|8540|3|46|51336.92|0.09|0.00|N|O|1998-04-07|1998-04-03|1998-05-02|NONE|AIR|tructions. regular, regular ideas wake ca| +5226|96810|6811|4|20|36136.20|0.06|0.05|N|O|1998-02-28|1998-04-08|1998-03-06|DELIVER IN PERSON|REG AIR|s cajole furiously. packages haggle e| +5226|83706|1231|5|24|40552.80|0.10|0.03|N|O|1998-04-14|1998-04-13|1998-04-18|NONE|FOB|ag furiously pendin| +5226|31015|8525|6|14|13244.14|0.03|0.01|N|O|1998-04-04|1998-03-19|1998-04-20|TAKE BACK RETURN|AIR|y unusual deposi| +5227|179494|4529|1|16|25175.84|0.01|0.07|N|O|1996-07-29|1996-07-13|1996-08-25|DELIVER IN PERSON|RAIL|ly ironic packages. furiou| +5227|153524|1070|2|31|48903.12|0.10|0.03|N|O|1996-07-28|1996-05-31|1996-08-20|TAKE BACK RETURN|REG AIR| accounts. quickly regular requests sle| +5228|152041|7072|1|10|10930.40|0.00|0.08|N|O|1996-01-09|1996-02-03|1996-02-06|TAKE BACK RETURN|FOB|n dependencies affix. quickly final dolphi| +5228|145823|5824|2|44|82228.08|0.07|0.00|N|O|1996-01-03|1996-03-06|1996-01-17|NONE|SHIP|nts. carefully express packages| +5229|151737|9283|1|31|55450.63|0.08|0.05|A|F|1994-01-31|1994-01-10|1994-02-04|COLLECT COD|RAIL|tect. blithely ev| +5229|37740|244|2|2|3355.48|0.08|0.01|A|F|1994-02-18|1994-03-03|1994-03-20|DELIVER IN PERSON|SHIP|uthless accounts. carefully even fo| +5229|85903|5904|3|48|90667.20|0.10|0.03|A|F|1994-02-12|1994-01-19|1994-02-25|DELIVER IN PERSON|MAIL|y. slyly pending deposits above the | +5230|59805|2311|1|50|88240.00|0.01|0.08|R|F|1994-11-20|1995-01-14|1994-12-08|NONE|RAIL|s. bold instructions was above the| +5230|129793|2306|2|22|40101.38|0.08|0.02|A|F|1995-03-09|1994-12-20|1995-03-30|NONE|REG AIR| the fluffily even deposit| +5230|24927|4928|3|31|57409.52|0.08|0.01|A|F|1995-02-10|1995-02-11|1995-02-25|DELIVER IN PERSON|AIR|egular gro| +5230|136317|1344|4|46|62252.26|0.08|0.00|A|F|1995-02-10|1995-01-11|1995-02-12|NONE|REG AIR| pending dinos wake blithel| +5230|63637|3638|5|37|59223.31|0.05|0.01|A|F|1994-12-14|1994-12-31|1995-01-11|COLLECT COD|FOB|ly ironic requests| +5230|136184|3724|6|7|8541.26|0.00|0.08|A|F|1995-03-07|1995-01-29|1995-03-10|NONE|SHIP|uickly special gi| +5230|29897|7404|7|12|21922.68|0.01|0.01|R|F|1994-11-24|1995-01-10|1994-12-05|DELIVER IN PERSON|FOB| express theodo| +5231|72994|2995|1|37|72778.63|0.01|0.06|N|O|1997-09-12|1997-08-04|1997-09-16|NONE|SHIP| express orbits. | +5231|3679|3680|2|46|72802.82|0.03|0.02|N|O|1997-10-20|1997-08-01|1997-11-06|TAKE BACK RETURN|SHIP|lly ironic accounts? bold in| +5256|197129|9649|1|25|30653.00|0.00|0.02|R|F|1994-06-25|1994-05-16|1994-07-02|COLLECT COD|FOB|unts detect attainments? furio| +5257|184492|2047|1|30|47294.70|0.02|0.05|A|F|1994-05-21|1994-03-14|1994-06-13|TAKE BACK RETURN|REG AIR|nd the blithely brave packages sleep fro| +5257|140634|3149|2|14|23444.82|0.09|0.03|A|F|1994-03-23|1994-04-24|1994-04-16|COLLECT COD|MAIL|epths. furiously final excuses against t| +5257|29769|9770|3|31|52661.56|0.07|0.03|A|F|1994-03-19|1994-04-06|1994-04-13|COLLECT COD|REG AIR|ing theodolites. silent dinos| +5258|4388|6889|1|36|46525.68|0.05|0.02|R|F|1994-07-09|1994-07-26|1994-07-17|NONE|TRUCK| about the ironic, final platel| +5258|138860|3887|2|5|9494.30|0.05|0.01|R|F|1994-08-10|1994-07-28|1994-08-15|TAKE BACK RETURN|AIR|symptotes. slyly regular asymptotes us| +5258|19834|2336|3|12|21045.96|0.08|0.08|R|F|1994-09-21|1994-09-02|1994-10-19|NONE|TRUCK|. foxes alongsi| +5258|142592|7621|4|46|75191.14|0.06|0.08|A|F|1994-07-05|1994-08-02|1994-07-25|NONE|TRUCK|althy deposits alongside| +5259|13783|6285|1|46|78051.88|0.02|0.00|N|O|1997-12-08|1997-10-29|1997-12-13|NONE|SHIP|deposits. bold accounts a| +5260|163515|8548|1|27|42619.77|0.05|0.06|A|F|1994-04-03|1994-02-12|1994-04-15|COLLECT COD|REG AIR|lithely special requests across the bli| +5260|188529|8530|2|28|45290.56|0.08|0.02|A|F|1994-02-28|1994-01-19|1994-03-07|DELIVER IN PERSON|SHIP|y bold, regular asymptotes. bol| +5260|1235|1236|3|47|53402.81|0.02|0.05|R|F|1994-03-14|1994-02-12|1994-04-13|NONE|TRUCK|fully final platelets cajole. blithely| +5261|109977|4998|1|7|13908.79|0.00|0.06|N|O|1996-05-28|1996-05-13|1996-05-31|NONE|MAIL|are blithely alongside of the quickly pe| +5261|169054|4087|2|25|28076.25|0.07|0.00|N|O|1996-04-24|1996-05-09|1996-05-16|COLLECT COD|RAIL|ndencies wake above the fl| +5261|86753|4278|3|34|59151.50|0.07|0.07|N|O|1996-04-11|1996-05-18|1996-05-02|COLLECT COD|RAIL| final idea| +5262|136314|8828|1|11|14853.41|0.00|0.02|R|F|1993-03-06|1993-03-27|1993-03-22|NONE|REG AIR|ts. carefully reg| +5262|25148|7651|2|23|24682.22|0.08|0.08|R|F|1993-05-20|1993-04-15|1993-06-14|TAKE BACK RETURN|FOB|counts are fluffily s| +5262|59649|9650|3|34|54693.76|0.10|0.00|R|F|1993-05-03|1993-03-25|1993-06-01|TAKE BACK RETURN|FOB|ndle across the furiousl| +5263|84901|7410|1|16|30174.40|0.10|0.01|R|F|1994-11-24|1995-01-08|1994-12-10|DELIVER IN PERSON|MAIL|ounts use slyly furiously unu| +5263|121349|6374|2|4|5481.36|0.01|0.01|A|F|1994-12-29|1994-11-28|1995-01-25|TAKE BACK RETURN|RAIL|iously reg| +5288|52556|7567|1|22|33188.10|0.01|0.02|N|O|1995-06-30|1995-09-03|1995-07-30|DELIVER IN PERSON|SHIP|refully. unusual pinto beans eat| +5288|107195|7196|2|16|19235.04|0.00|0.04|N|O|1995-08-30|1995-09-21|1995-09-07|NONE|AIR|s above the | +5288|16461|1464|3|24|33059.04|0.01|0.02|N|O|1995-08-13|1995-09-18|1995-08-28|TAKE BACK RETURN|MAIL|e above the furi| +5288|50201|2707|4|44|50652.80|0.05|0.08|N|O|1995-07-09|1995-08-05|1995-07-27|DELIVER IN PERSON|REG AIR|s breach blithely a| +5289|396|7897|1|2|2592.78|0.08|0.07|A|F|1994-09-25|1994-09-13|1994-10-05|COLLECT COD|REG AIR|ges. packages wake carefully. final | +5289|42229|2230|2|9|10540.98|0.07|0.01|R|F|1994-10-08|1994-07-24|1994-11-07|DELIVER IN PERSON|AIR|arefully ironic deposits haggle blith| +5290|99919|4938|1|17|32621.47|0.00|0.07|A|F|1994-01-31|1994-01-27|1994-02-21|TAKE BACK RETURN|FOB|l deposits. ideas| +5290|134796|4797|2|42|76893.18|0.02|0.05|A|F|1994-01-17|1993-12-14|1994-01-30|NONE|SHIP|ons wake furiously furiously final r| +5291|101804|1805|1|31|55979.80|0.09|0.04|R|F|1993-12-24|1993-12-20|1993-12-25|COLLECT COD|RAIL|g pinto beans along the s| +5291|14816|2320|2|24|41539.44|0.05|0.04|A|F|1993-12-03|1993-11-27|1993-12-17|DELIVER IN PERSON|TRUCK|nal, ironic pi| +5292|162042|4559|1|9|9936.36|0.03|0.08|A|F|1993-02-08|1993-03-15|1993-03-06|TAKE BACK RETURN|FOB|s. furiously ironic packa| +5292|39499|2003|2|30|43154.70|0.04|0.02|R|F|1993-02-08|1993-02-18|1993-03-01|TAKE BACK RETURN|AIR| accounts sleep along the daring theod| +5292|52226|2227|3|47|55376.34|0.02|0.06|A|F|1993-01-22|1993-03-20|1993-02-15|DELIVER IN PERSON|AIR| foxes. carefully ironic Tiresias cajol| +5292|150465|466|4|46|69711.16|0.10|0.07|A|F|1993-03-01|1993-03-10|1993-03-25|COLLECT COD|AIR|ccounts. final deposi| +5292|55341|5342|5|3|3889.02|0.00|0.05|A|F|1993-02-10|1993-02-23|1993-03-02|TAKE BACK RETURN|REG AIR|inal requests are slyl| +5292|115838|861|6|50|92691.50|0.03|0.04|A|F|1993-04-30|1993-04-07|1993-05-17|TAKE BACK RETURN|FOB|ular ideas. furiously ironic e| +5292|74036|4037|7|29|29290.87|0.07|0.05|R|F|1993-03-16|1993-03-22|1993-03-27|NONE|TRUCK|bout the pending requests| +5293|107817|2838|1|4|7299.24|0.03|0.05|A|F|1995-06-02|1995-04-01|1995-06-15|NONE|MAIL| along the careful| +5293|71761|6776|2|8|13862.08|0.07|0.06|A|F|1995-05-23|1995-04-21|1995-06-04|TAKE BACK RETURN|SHIP|eep slyly express asymptot| +5293|75839|8347|3|19|34481.77|0.06|0.05|A|F|1995-03-20|1995-03-31|1995-04-06|NONE|RAIL|ke slyly express packages. si| +5293|14388|1892|4|21|27349.98|0.10|0.08|A|F|1995-04-03|1995-03-28|1995-04-20|DELIVER IN PERSON|RAIL|he fluffily r| +5293|9204|9205|5|35|38962.00|0.09|0.01|R|F|1995-04-21|1995-03-16|1995-05-19|TAKE BACK RETURN|MAIL|ithely bold courts according to the i| +5294|64933|9946|1|13|24673.09|0.08|0.01|N|O|1997-09-19|1997-09-28|1997-10-16|NONE|SHIP|ing request| +5294|128189|702|2|28|34081.04|0.10|0.05|N|O|1997-09-25|1997-10-28|1997-10-06|TAKE BACK RETURN|REG AIR|lites. carefully express requests amo| +5294|66873|9380|3|16|29437.92|0.00|0.00|N|O|1997-12-08|1997-11-09|1997-12-14|TAKE BACK RETURN|FOB|ect fluffily furiously re| +5294|120453|454|4|1|1473.45|0.10|0.02|N|O|1997-10-04|1997-11-10|1997-10-26|DELIVER IN PERSON|AIR|the never final request| +5294|41651|4156|5|28|44594.20|0.03|0.07|N|O|1997-11-30|1997-10-31|1997-12-03|COLLECT COD|MAIL| unusual theodolites integrate above the | +5294|18371|8372|6|22|28366.14|0.05|0.01|N|O|1997-09-18|1997-11-18|1997-10-13|NONE|RAIL|unts cajole around the busily | +5294|156355|3901|7|40|56454.00|0.01|0.07|N|O|1997-08-31|1997-11-02|1997-09-29|TAKE BACK RETURN|SHIP|r the regular,| +5295|52340|4846|1|1|1292.34|0.08|0.04|A|F|1993-02-07|1993-02-25|1993-02-17|NONE|AIR|ts cajole silent deposits. express, sile| +5295|70414|7936|2|43|59529.63|0.08|0.08|A|F|1993-02-08|1993-03-11|1993-02-09|DELIVER IN PERSON|REG AIR|jole carefully afte| +5320|166999|4548|1|12|24791.88|0.05|0.03|A|F|1992-06-05|1992-05-28|1992-06-21|DELIVER IN PERSON|RAIL|uriously even depo| +5321|27883|2888|1|29|52515.52|0.06|0.02|R|F|1992-07-07|1992-08-02|1992-08-04|DELIVER IN PERSON|RAIL|ar asymptotes. even, even packages sleep sl| +5321|21839|4342|2|32|56346.56|0.08|0.02|R|F|1992-08-28|1992-07-26|1992-09-22|COLLECT COD|AIR|lly regular | +5321|33680|6184|3|8|12909.44|0.04|0.01|R|F|1992-07-28|1992-09-07|1992-07-31|TAKE BACK RETURN|TRUCK|! quickly p| +5321|42974|2975|4|21|40256.37|0.02|0.01|A|F|1992-06-27|1992-09-08|1992-07-22|DELIVER IN PERSON|REG AIR|equests according to the final acco| +5321|60000|7516|5|5|4800.00|0.08|0.07|A|F|1992-06-25|1992-08-01|1992-07-14|DELIVER IN PERSON|RAIL|lar packages. brave attainments bo| +5322|66735|6736|1|47|79981.31|0.05|0.07|R|F|1994-04-02|1994-04-24|1994-04-21|COLLECT COD|AIR| accounts are furiously e| +5322|10519|5522|2|11|15724.61|0.02|0.06|A|F|1994-05-19|1994-05-01|1994-06-15|TAKE BACK RETURN|TRUCK|the stealthy platelets; sil| +5322|179171|1689|3|5|6250.85|0.10|0.08|R|F|1994-05-28|1994-05-06|1994-06-13|TAKE BACK RETURN|AIR|thely quiet packages. quickly even instru| +5323|136885|1912|1|19|36515.72|0.00|0.08|R|F|1993-09-10|1993-07-25|1993-10-04|NONE|TRUCK|uriously carefull| +5323|10359|7863|2|32|40619.20|0.05|0.02|A|F|1993-07-16|1993-08-31|1993-07-22|COLLECT COD|AIR|integrate against the doggedly express re| +5323|103227|8248|3|22|27064.84|0.00|0.08|A|F|1993-09-12|1993-08-06|1993-10-02|COLLECT COD|AIR|s. furiously slow accounts| +5323|135990|1017|4|49|99273.51|0.01|0.02|R|F|1993-07-28|1993-09-16|1993-08-21|COLLECT COD|SHIP|gular instructions after the fur| +5323|183666|8703|5|42|73485.72|0.08|0.05|R|F|1993-07-05|1993-08-29|1993-07-12|DELIVER IN PERSON|FOB|nts alongsid| +5323|71383|6398|6|23|31150.74|0.05|0.05|A|F|1993-09-27|1993-07-31|1993-10-24|TAKE BACK RETURN|RAIL| carefully according to| +5324|169442|9443|1|13|19648.72|0.08|0.00|A|F|1992-11-15|1992-12-04|1992-12-09|NONE|REG AIR| express, regular foxes. accounts nag | +5324|6860|6861|2|34|60073.24|0.08|0.02|A|F|1992-11-08|1992-10-27|1992-11-19|TAKE BACK RETURN|RAIL|inal deposits| +5324|88197|5722|3|15|17777.85|0.06|0.06|R|F|1992-09-27|1992-10-10|1992-10-08|DELIVER IN PERSON|MAIL|en, fluffy| +5324|120545|3058|4|29|45400.66|0.04|0.05|A|F|1992-11-18|1992-10-13|1992-12-17|NONE|MAIL|e bold, ironic somas. | +5325|50285|286|1|33|40764.24|0.02|0.05|N|O|1997-10-17|1997-08-04|1997-11-01|TAKE BACK RETURN|REG AIR| slyly regular pinto beans a| +5325|125176|2713|2|7|8408.19|0.09|0.00|N|O|1997-07-19|1997-09-23|1997-07-20|COLLECT COD|AIR|nusual deposit| +5325|17405|9907|3|4|5289.60|0.02|0.07|N|O|1997-09-12|1997-08-12|1997-09-20|TAKE BACK RETURN|TRUCK| ironically accounts. fluffily pending req| +5325|114581|9604|4|45|71801.10|0.07|0.02|N|O|1997-09-30|1997-08-02|1997-10-07|COLLECT COD|MAIL|ironic instructions. | +5325|147505|5048|5|13|20182.50|0.06|0.00|N|O|1997-10-02|1997-08-07|1997-10-16|TAKE BACK RETURN|REG AIR|bold ideas. quickly| +5326|166854|6855|1|11|21129.35|0.01|0.01|N|O|1997-06-27|1997-07-26|1997-07-13|NONE|SHIP|efully even accounts nag. express pinto| +5326|109202|6733|2|29|35124.80|0.02|0.01|N|O|1997-09-25|1997-09-06|1997-10-20|TAKE BACK RETURN|RAIL|ven deposits use quickly acc| +5326|149585|4614|3|48|78459.84|0.03|0.05|N|O|1997-08-20|1997-08-21|1997-09-18|COLLECT COD|AIR|after the slyly unusual instruction| +5327|101589|1590|1|40|63623.20|0.01|0.00|N|O|1996-01-14|1995-12-09|1996-02-06|NONE|SHIP|usly. waters sleep quickly! ins| +5327|191910|6949|2|23|46043.93|0.07|0.04|N|O|1995-12-20|1995-10-29|1996-01-19|DELIVER IN PERSON|MAIL|ily at the fu| +5327|28687|6194|3|2|3231.36|0.01|0.03|N|O|1995-10-18|1995-12-12|1995-10-30|COLLECT COD|AIR|totes wake ironic depo| +5327|131839|6866|4|32|59866.56|0.06|0.02|N|O|1995-12-29|1995-10-20|1996-01-24|DELIVER IN PERSON|TRUCK|nal deposits. furious| +5352|129342|6879|1|41|56224.94|0.09|0.02|A|F|1993-10-25|1993-10-08|1993-10-30|NONE|REG AIR|dencies wake abo| +5353|125218|2755|1|49|60917.29|0.02|0.04|A|F|1992-07-19|1992-08-08|1992-08-11|TAKE BACK RETURN|AIR|nal packages. final, pending pinto beans ac| +5353|135590|8104|2|2|3251.18|0.02|0.06|A|F|1992-07-24|1992-09-28|1992-08-11|DELIVER IN PERSON|SHIP|ic dependencies wak| +5353|53402|3403|3|19|25752.60|0.09|0.02|A|F|1992-08-11|1992-08-03|1992-08-26|COLLECT COD|REG AIR|ickly asymptotes. pe| +5353|118775|8776|4|18|32287.86|0.05|0.07|R|F|1992-08-31|1992-08-21|1992-09-30|NONE|RAIL|le accounts cajole blithely. re| +5353|40286|7799|5|14|17167.92|0.08|0.01|R|F|1992-07-21|1992-09-15|1992-07-31|COLLECT COD|FOB|refully unusual deposits| +5354|149000|1515|1|49|51401.00|0.08|0.00|N|O|1995-09-28|1995-07-20|1995-09-29|NONE|AIR|kages. regular, ironic deposits| +5355|94718|4719|1|40|68508.40|0.04|0.05|A|F|1994-07-18|1994-07-25|1994-08-03|TAKE BACK RETURN|SHIP| packages cajole quickly carefu| +5356|154590|7106|1|50|82229.50|0.02|0.04|A|F|1993-12-13|1993-11-16|1994-01-12|TAKE BACK RETURN|TRUCK|r requests n| +5356|177736|5288|2|5|9068.65|0.00|0.06|A|F|1993-11-18|1993-12-11|1993-11-28|NONE|RAIL|o beans along the foxes lose careful| +5356|198903|8904|3|16|32030.40|0.08|0.05|R|F|1994-01-23|1993-12-17|1994-02-20|COLLECT COD|REG AIR|he furiously express instruction| +5356|150802|3318|4|25|46320.00|0.01|0.00|A|F|1994-01-06|1993-12-02|1994-01-22|COLLECT COD|AIR|deas; carefu| +5356|114634|4635|5|20|32972.60|0.06|0.05|R|F|1994-01-03|1994-01-03|1994-01-05|COLLECT COD|AIR|y accounts cajole furiously bold requests| +5356|53363|3364|6|28|36858.08|0.05|0.08|A|F|1993-12-03|1993-11-21|1993-12-06|DELIVER IN PERSON|FOB|requests. ironic packages hang sile| +5356|65026|5027|7|28|27748.56|0.10|0.02|A|F|1994-01-27|1993-12-30|1994-01-30|COLLECT COD|SHIP| fluffily final accounts. e| +5357|78382|5904|1|6|8162.28|0.05|0.01|N|O|1996-08-12|1996-07-09|1996-09-08|COLLECT COD|REG AIR|ic excuses. carefu| +5357|151184|3700|2|8|9881.44|0.07|0.08|N|O|1996-07-01|1996-07-16|1996-07-05|TAKE BACK RETURN|TRUCK|nstructions; unusual, even requests do | +5357|133436|8463|3|9|13224.87|0.01|0.01|N|O|1996-05-31|1996-06-24|1996-06-30|TAKE BACK RETURN|FOB|telets. furiously regular deposits boost| +5357|49231|1736|4|21|24784.83|0.01|0.00|N|O|1996-06-02|1996-07-31|1996-06-15|NONE|MAIL|the furiously | +5357|23387|894|5|34|44552.92|0.08|0.06|N|O|1996-08-16|1996-08-04|1996-09-11|COLLECT COD|REG AIR|t the ironic requests. s| +5357|59269|4280|6|31|38076.06|0.05|0.01|N|O|1996-09-03|1996-06-28|1996-09-07|COLLECT COD|TRUCK|y unusual dolphins haggle furiously after| +5357|120607|3120|7|44|71614.40|0.02|0.07|N|O|1996-07-27|1996-06-30|1996-08-19|NONE|MAIL|y bold pinto beans haggle blithely| +5358|41478|8991|1|32|45423.04|0.01|0.04|N|O|1998-09-30|1998-09-06|1998-10-07|COLLECT COD|TRUCK|ly. even requests snooze fluffily. flu| +5358|119446|9447|2|7|10258.08|0.01|0.03|N|O|1998-07-13|1998-09-18|1998-08-10|COLLECT COD|FOB|tealthy requests | +5358|128246|759|3|36|45872.64|0.05|0.00|N|O|1998-10-22|1998-08-11|1998-11-16|NONE|FOB|quests. slyly regular a| +5358|14093|4094|4|23|23163.07|0.02|0.07|N|O|1998-08-03|1998-07-29|1998-08-10|NONE|SHIP|ts cajole ruthlessly a| +5358|60029|5042|5|12|11868.24|0.07|0.03|N|O|1998-07-10|1998-08-31|1998-07-22|TAKE BACK RETURN|REG AIR|structions. r| +5358|100433|434|6|17|24368.31|0.10|0.03|N|O|1998-10-12|1998-08-28|1998-10-30|COLLECT COD|TRUCK|sly ironic platelets in place | +5359|55439|7945|1|20|27888.60|0.05|0.08|A|F|1994-06-07|1994-06-27|1994-07-07|NONE|MAIL|ar packages. accounts b| +5359|151286|1287|2|40|53491.20|0.08|0.00|A|F|1994-06-27|1994-07-06|1994-07-08|DELIVER IN PERSON|REG AIR|unts sleep furiously| +5359|52088|4594|3|12|12480.96|0.04|0.08|A|F|1994-06-21|1994-08-02|1994-07-20|COLLECT COD|REG AIR|nal deposits are blithely | +5359|31817|9327|4|17|29729.77|0.04|0.00|R|F|1994-09-09|1994-06-11|1994-09-10|NONE|RAIL|. regular, ironic deposits boost silent| +5359|138688|3715|5|16|27626.88|0.07|0.00|A|F|1994-07-18|1994-06-16|1994-07-30|DELIVER IN PERSON|FOB|refully regular deposits use furiou| +5384|153294|3295|1|44|59280.76|0.03|0.08|N|O|1995-09-27|1995-11-01|1995-10-01|TAKE BACK RETURN|REG AIR|ar ideas. somas haggle quickly about| +5384|4260|4261|2|43|50063.18|0.08|0.05|N|O|1995-11-21|1995-10-09|1995-12-17|TAKE BACK RETURN|MAIL|gular ideas solve fluffily quickly fi| +5384|190794|5833|3|41|77276.39|0.09|0.00|N|O|1995-11-01|1995-10-29|1995-11-24|NONE|TRUCK|furiously even requests ar| +5384|74504|7012|4|42|62097.00|0.09|0.00|N|O|1995-12-29|1995-10-16|1996-01-16|COLLECT COD|MAIL|kly. furiously ironic accounts hagg| +5384|176715|6716|5|34|60918.14|0.00|0.03|N|O|1995-09-21|1995-11-16|1995-10-04|TAKE BACK RETURN|AIR|lly pending excuses. | +5385|51128|3634|1|50|53956.00|0.07|0.01|N|O|1998-01-14|1997-11-28|1998-02-10|COLLECT COD|FOB|latelets was carefully. carefully even acc| +5385|103785|8806|2|49|87650.22|0.03|0.05|N|O|1997-11-28|1998-01-06|1997-12-25|NONE|RAIL|ccording to the packages boost quick| +5385|98836|8837|3|34|62384.22|0.08|0.06|N|O|1997-12-09|1997-12-07|1997-12-10|DELIVER IN PERSON|MAIL|he final packages. unusual ac| +5385|122993|530|4|33|66527.67|0.00|0.02|N|O|1997-11-18|1998-01-19|1997-12-06|NONE|AIR|iously. fluffily ex| +5385|132673|2674|5|7|11939.69|0.07|0.05|N|O|1998-01-06|1998-01-02|1998-01-08|COLLECT COD|FOB|nts are ironically at the quickly e| +5386|148232|8233|1|13|16642.99|0.07|0.03|R|F|1994-05-01|1994-04-11|1994-05-18|NONE|RAIL|n escapades. furiously bold foxes nag furi| +5386|122285|9822|2|26|33989.28|0.08|0.02|R|F|1994-03-06|1994-03-24|1994-04-05|COLLECT COD|TRUCK|ular deposits. quickly regular| +5386|30174|175|3|41|45270.97|0.08|0.04|R|F|1994-03-09|1994-04-08|1994-03-19|TAKE BACK RETURN|AIR|fully final theodolites| +5386|131731|6758|4|32|56407.36|0.07|0.02|R|F|1994-02-24|1994-04-11|1994-03-04|COLLECT COD|REG AIR|es against the | +5386|197909|429|5|7|14048.30|0.05|0.00|R|F|1994-02-07|1994-03-11|1994-02-27|NONE|REG AIR|lar instructions. | +5386|54600|7106|6|4|6218.40|0.10|0.05|R|F|1994-05-08|1994-03-22|1994-06-03|DELIVER IN PERSON|MAIL|riously. carefully| +5387|120423|424|1|44|63510.48|0.06|0.00|N|O|1996-02-06|1996-02-10|1996-03-04|COLLECT COD|REG AIR|lithely blithely unusual theodolites. ruthl| +5388|41527|9040|1|14|20559.28|0.03|0.00|N|O|1997-02-14|1997-02-25|1997-03-02|COLLECT COD|REG AIR|y final accounts. slowly fina| +5388|137543|2570|2|33|52157.82|0.09|0.01|N|O|1997-03-09|1997-01-31|1997-03-26|NONE|FOB|ove the ideas se| +5388|78470|5992|3|39|56490.33|0.06|0.06|N|O|1997-01-27|1997-03-08|1997-02-09|NONE|TRUCK|pecial deposits. bold dug| +5388|42907|5412|4|5|9249.50|0.10|0.00|N|O|1997-02-09|1997-03-22|1997-02-10|TAKE BACK RETURN|RAIL|ss accounts across the furious| +5389|66807|4326|1|22|39023.60|0.05|0.05|A|F|1994-06-18|1994-04-06|1994-07-05|COLLECT COD|REG AIR| according to| +5389|23232|739|2|36|41588.28|0.08|0.00|R|F|1994-04-30|1994-05-23|1994-05-06|TAKE BACK RETURN|MAIL|ounts maintain furiously after the bravel| +5389|48827|1332|3|7|12430.74|0.07|0.01|R|F|1994-06-19|1994-05-30|1994-07-13|DELIVER IN PERSON|MAIL|oze. furiously| +5389|27984|7985|4|45|86039.10|0.05|0.08|R|F|1994-06-12|1994-05-26|1994-07-10|COLLECT COD|AIR|y final frets. carefully ironic deposits| +5390|3665|6166|1|30|47059.80|0.00|0.05|N|O|1998-02-22|1998-02-02|1998-02-26|COLLECT COD|SHIP|y final dugouts dazzle along the car| +5390|191741|1742|2|41|75142.34|0.00|0.07|N|O|1997-12-28|1997-12-15|1997-12-30|TAKE BACK RETURN|TRUCK|ickly. fur| +5390|175764|3316|3|27|49673.52|0.05|0.02|N|O|1998-03-11|1998-01-24|1998-03-30|TAKE BACK RETURN|FOB| express requests. fu| +5390|56541|9047|4|13|19468.02|0.07|0.08|N|O|1998-02-26|1998-01-04|1998-03-26|TAKE BACK RETURN|TRUCK|blithe dinos | +5390|74278|1800|5|7|8765.89|0.02|0.02|N|O|1997-12-19|1997-12-13|1997-12-26|DELIVER IN PERSON|REG AIR|xpress packages cajole. furiously sl| +5390|180951|5988|6|44|89405.80|0.06|0.02|N|O|1998-02-07|1997-12-23|1998-02-13|COLLECT COD|SHIP|g requests. furiously ironic theodolite| +5391|194027|6547|1|3|3363.06|0.02|0.06|N|O|1998-04-30|1998-05-15|1998-05-06|TAKE BACK RETURN|MAIL|ecial instruction| +5391|4826|7327|2|50|86541.00|0.05|0.03|N|O|1998-06-01|1998-04-18|1998-06-18|TAKE BACK RETURN|AIR|the special, regular reques| +5391|98495|3514|3|37|55259.13|0.07|0.00|N|O|1998-05-24|1998-03-26|1998-06-22|DELIVER IN PERSON|REG AIR|ously above the| +5391|194136|4137|4|17|20912.21|0.02|0.04|N|O|1998-04-21|1998-04-12|1998-04-29|DELIVER IN PERSON|SHIP|gular deposits affix| +5391|34672|7176|5|46|73906.82|0.00|0.03|N|O|1998-04-16|1998-05-22|1998-05-08|COLLECT COD|FOB| blithe foxes about the special platel| +5391|117359|4893|6|12|16516.20|0.01|0.05|N|O|1998-03-05|1998-04-05|1998-03-26|NONE|SHIP|ng, pending somas grow according to| +5416|20496|5501|1|38|53826.62|0.01|0.05|A|F|1993-06-11|1993-06-21|1993-06-24|DELIVER IN PERSON|SHIP|g sentimen| +5416|67856|363|2|36|65658.60|0.04|0.00|A|F|1993-05-03|1993-07-01|1993-05-21|DELIVER IN PERSON|SHIP| carefully unusual accounts are blithely| +5416|43964|8973|3|36|68686.56|0.02|0.05|R|F|1993-04-24|1993-06-10|1993-05-16|DELIVER IN PERSON|RAIL|s! regular, even requests cajole qu| +5416|96399|1418|4|42|58606.38|0.04|0.05|R|F|1993-05-24|1993-07-06|1993-06-14|DELIVER IN PERSON|AIR| ideas afte| +5417|148684|8685|1|6|10396.08|0.00|0.06|R|F|1993-09-27|1993-10-27|1993-10-19|TAKE BACK RETURN|FOB|ost slyly foxes. pending, final| +5417|124745|9770|2|28|49552.72|0.08|0.07|R|F|1993-08-28|1993-10-14|1993-09-21|NONE|AIR|ptotes cajole: a| +5418|8985|3986|1|5|9469.90|0.02|0.06|R|F|1993-09-28|1993-11-13|1993-10-15|COLLECT COD|AIR|ent ideas. furiously unusual pinto b| +5418|7364|2365|2|23|29241.28|0.08|0.02|A|F|1993-11-28|1993-12-17|1993-12-15|NONE|RAIL|luffily even accounts. e| +5418|166586|9103|3|3|4957.74|0.08|0.08|A|F|1993-09-27|1993-12-06|1993-10-08|DELIVER IN PERSON|MAIL|special warhorses above | +5418|741|8242|4|37|60744.38|0.06|0.04|R|F|1993-10-28|1993-12-15|1993-11-17|NONE|TRUCK| foxes cajole slyly. final foxes sleep f| +5418|38732|6242|5|36|60146.28|0.10|0.06|A|F|1993-12-14|1993-12-21|1994-01-13|TAKE BACK RETURN|AIR|ic theodolites wake pac| +5418|168364|8365|6|7|10026.52|0.10|0.04|R|F|1993-11-30|1993-10-23|1993-12-04|TAKE BACK RETURN|MAIL|e even packages. final| +5419|57801|2812|1|39|68593.20|0.05|0.03|N|O|1998-07-06|1998-08-01|1998-08-01|COLLECT COD|SHIP|the regular request| +5419|56594|1605|2|42|65124.78|0.02|0.00|N|O|1998-06-21|1998-07-08|1998-07-15|TAKE BACK RETURN|MAIL|the blithel| +5419|161154|3671|3|2|2430.30|0.02|0.05|N|O|1998-07-04|1998-06-29|1998-07-06|DELIVER IN PERSON|REG AIR|althily. quickly unusual sentim| +5419|111565|4077|4|37|58332.72|0.00|0.07|N|O|1998-08-26|1998-07-16|1998-09-17|DELIVER IN PERSON|REG AIR|nstructions. slyly express instruct| +5419|69422|4435|5|50|69571.00|0.08|0.00|N|O|1998-08-06|1998-08-23|1998-08-15|TAKE BACK RETURN|RAIL|ending ideas are according to the fl| +5420|134530|4531|1|32|50064.96|0.04|0.07|N|O|1998-03-05|1998-02-07|1998-03-17|NONE|AIR|silent hocke| +5420|43001|3002|2|29|27376.00|0.02|0.05|N|O|1998-03-04|1998-02-27|1998-04-01|TAKE BACK RETURN|SHIP|s. quickly| +5420|105522|8033|3|9|13747.68|0.05|0.08|N|O|1998-03-23|1998-01-24|1998-04-08|TAKE BACK RETURN|SHIP|riously. blithely regular pack| +5421|6020|3521|1|42|38892.84|0.00|0.01|R|F|1992-11-22|1992-11-19|1992-12-04|NONE|RAIL|elets. regularly regular dep| +5421|173392|5910|2|17|24911.63|0.04|0.07|R|F|1992-10-21|1992-12-04|1992-11-20|TAKE BACK RETURN|REG AIR| according to the frays. quic| +5422|70327|328|1|42|54487.44|0.09|0.01|R|F|1994-02-28|1994-04-18|1994-03-19|COLLECT COD|REG AIR|oxes solve sl| +5422|181040|3559|2|28|31389.12|0.09|0.03|R|F|1994-03-26|1994-04-23|1994-04-19|TAKE BACK RETURN|AIR|uests are furiousl| +5422|130011|5038|3|20|20820.20|0.03|0.07|A|F|1994-02-03|1994-04-19|1994-02-19|DELIVER IN PERSON|AIR|cross the final, furiou| +5422|78649|3664|4|8|13021.12|0.00|0.06|R|F|1994-04-09|1994-04-16|1994-04-27|NONE|REG AIR|pending pinto beans. daring foxes agai| +5422|37020|2027|5|7|6699.14|0.06|0.05|R|F|1994-05-07|1994-04-02|1994-05-31|TAKE BACK RETURN|FOB|sts! furiously unu| +5423|136042|3582|1|9|9702.36|0.09|0.00|N|O|1997-10-31|1997-09-23|1997-11-24|NONE|FOB| instructions. bl| +5423|43629|8638|2|40|62904.80|0.02|0.00|N|O|1997-10-26|1997-08-16|1997-11-05|DELIVER IN PERSON|AIR|fully ironic pinto b| +5423|69851|2358|3|40|72834.00|0.04|0.04|N|O|1997-10-15|1997-08-31|1997-10-16|DELIVER IN PERSON|REG AIR|y after the pending, ironic | +5423|185336|373|4|48|68223.84|0.04|0.05|N|O|1997-10-30|1997-08-23|1997-11-15|DELIVER IN PERSON|REG AIR|the slyly bold dolphins haggle ca| +5423|137668|7669|5|10|17056.60|0.07|0.06|N|O|1997-08-09|1997-10-14|1997-08-26|COLLECT COD|RAIL|lowly among the furiously even depos| +5423|177460|2495|6|37|56886.02|0.06|0.06|N|O|1997-07-31|1997-08-21|1997-08-29|NONE|RAIL|lyly about the ironic ideas. quickl| +5423|167383|9900|7|1|1450.38|0.07|0.02|N|O|1997-08-17|1997-10-14|1997-08-21|COLLECT COD|TRUCK| sleep furiously fluffy th| +5448|192383|4903|1|43|63441.34|0.10|0.02|N|O|1997-05-27|1997-05-05|1997-06-04|COLLECT COD|SHIP|ly ironic accounts | +5448|174645|7163|2|2|3439.28|0.04|0.06|N|O|1997-06-03|1997-05-23|1997-06-13|DELIVER IN PERSON|TRUCK|t the furiously final pinto | +5448|43693|3694|3|32|52374.08|0.04|0.04|N|O|1997-05-11|1997-06-08|1997-05-18|COLLECT COD|FOB|iously fluffily ironic pa| +5448|138201|8202|4|34|42132.80|0.00|0.04|N|O|1997-07-09|1997-05-22|1997-07-26|COLLECT COD|SHIP|deposits. carefully even ideas haggle s| +5449|105000|7511|1|3|3015.00|0.10|0.03|N|O|1998-01-16|1998-01-28|1998-01-23|NONE|TRUCK|ckages! bold, final packages haggle idly | +5449|122656|7681|2|11|18465.15|0.02|0.04|N|O|1998-03-30|1998-03-13|1998-04-11|DELIVER IN PERSON|SHIP|even pinto beans integr| +5450|114881|7393|1|49|92898.12|0.03|0.02|N|O|1998-04-16|1998-05-01|1998-05-14|TAKE BACK RETURN|SHIP|its. quick, ironic platelets are quickly i| +5450|192922|480|2|25|50373.00|0.08|0.06|N|O|1998-05-03|1998-03-28|1998-05-08|DELIVER IN PERSON|AIR|packages use against th| +5451|78201|5723|1|17|20046.40|0.05|0.03|N|O|1997-09-25|1997-11-02|1997-10-16|DELIVER IN PERSON|TRUCK|furiously according to the packages. | +5451|108092|5623|2|20|22001.80|0.01|0.07|N|O|1997-08-28|1997-11-01|1997-09-12|NONE|FOB|y according to the even | +5451|100346|2857|3|15|20195.10|0.08|0.06|N|O|1997-11-25|1997-09-04|1997-12-08|TAKE BACK RETURN|MAIL|ronic pinto beans. furiously regular| +5452|99761|9762|1|19|33454.44|0.04|0.04|R|F|1993-03-01|1993-01-20|1993-03-25|TAKE BACK RETURN|REG AIR|ully. furiously ironic accounts about t| +5452|74364|9379|2|18|24090.48|0.10|0.04|R|F|1993-01-20|1993-01-07|1993-02-16|DELIVER IN PERSON|MAIL|. blithely unusual| +5452|31528|4032|3|33|48164.16|0.09|0.04|R|F|1993-02-05|1993-01-10|1993-02-18|NONE|REG AIR|careful deposits about the regular| +5452|74952|7460|4|44|84785.80|0.01|0.03|A|F|1993-03-28|1993-01-21|1993-04-13|DELIVER IN PERSON|REG AIR|lly careful requests | +5452|111348|1349|5|21|28546.14|0.06|0.05|R|F|1993-03-07|1993-02-09|1993-03-26|COLLECT COD|FOB|ounts. dolp| +5452|21797|9304|6|4|6875.16|0.02|0.03|A|F|1993-02-12|1993-01-20|1993-03-02|COLLECT COD|AIR|eep. express, bold packages sleep requests.| +5453|140734|735|1|45|79862.85|0.02|0.03|N|O|1998-04-08|1998-05-10|1998-04-24|DELIVER IN PERSON|FOB|ely ironic packages ma| +5454|2281|7282|1|12|14199.36|0.05|0.03|N|O|1997-03-10|1997-03-07|1997-03-22|COLLECT COD|FOB|wind. quickly bold instructions affix a| +5455|149045|6588|1|3|3282.12|0.00|0.02|N|O|1998-07-28|1998-07-05|1998-08-17|COLLECT COD|TRUCK|ckages sleep| +5455|187457|7458|2|50|77222.50|0.04|0.01|N|O|1998-07-28|1998-08-14|1998-08-10|COLLECT COD|SHIP|cross the ironic frays.| +5455|185475|5476|3|24|37451.28|0.08|0.07|N|O|1998-09-12|1998-07-19|1998-10-06|DELIVER IN PERSON|FOB|t carefully final dependencie| +5480|15025|7527|1|13|12220.26|0.04|0.00|N|O|1997-01-05|1997-02-05|1997-01-28|DELIVER IN PERSON|REG AIR|foxes cajole even, final deposits. regul| +5480|118016|528|2|21|21714.21|0.00|0.06|N|O|1997-02-28|1997-01-30|1997-03-18|DELIVER IN PERSON|RAIL|ven platelets along the i| +5480|85960|5961|3|30|58378.80|0.01|0.05|N|O|1997-01-13|1997-01-19|1997-01-14|COLLECT COD|REG AIR|y pending packages. | +5480|121967|4480|4|17|33812.32|0.04|0.03|N|O|1996-12-20|1997-03-09|1997-01-17|TAKE BACK RETURN|RAIL|s according to the courts wake bl| +5480|90064|65|5|8|8432.48|0.06|0.06|N|O|1997-01-01|1997-03-16|1997-01-05|COLLECT COD|MAIL|dly. special instruction| +5480|99820|9821|6|31|56414.42|0.08|0.05|N|O|1996-12-22|1997-03-01|1997-01-07|NONE|FOB|yly special requests. furiously regul| +5480|58774|3785|7|48|83172.96|0.02|0.02|N|O|1997-03-06|1997-03-04|1997-03-11|NONE|RAIL|uriously at the p| +5481|12366|2367|1|15|19175.40|0.05|0.06|R|F|1995-04-14|1995-05-19|1995-04-19|NONE|AIR|quests. regular dependencies haggle | +5481|19104|1606|2|22|22508.20|0.05|0.03|N|O|1995-06-23|1995-06-23|1995-06-28|TAKE BACK RETURN|REG AIR| cajole quickly| +5481|75322|337|3|48|62271.36|0.07|0.07|A|F|1995-05-11|1995-05-30|1995-05-19|COLLECT COD|SHIP|ly final foxes. final, iro| +5482|79616|9617|1|46|73398.06|0.09|0.03|N|O|1996-06-02|1996-05-18|1996-06-19|COLLECT COD|RAIL| idle requests about the quickly ir| +5482|98176|5704|2|47|55185.99|0.10|0.06|N|O|1996-04-30|1996-06-30|1996-05-15|DELIVER IN PERSON|FOB|efully regular braids wa| +5482|39865|4872|3|34|61365.24|0.04|0.06|N|O|1996-06-13|1996-07-09|1996-07-04|TAKE BACK RETURN|SHIP|deposits wake? pack| +5483|38003|3010|1|20|18820.00|0.09|0.00|A|F|1993-06-05|1993-07-23|1993-06-23|NONE|TRUCK|deposits lose. bl| +5484|174385|9420|1|5|7296.90|0.03|0.07|N|O|1996-04-30|1996-04-05|1996-05-21|COLLECT COD|MAIL| slyly final pinto beans integrate blithely| +5484|80780|8305|2|46|80995.88|0.07|0.04|N|O|1996-04-15|1996-02-25|1996-04-28|COLLECT COD|TRUCK|lar instructions poach evenl| +5484|61902|4409|3|4|7455.60|0.05|0.06|N|O|1996-04-02|1996-03-24|1996-04-15|NONE|SHIP|final accounts. final, pending | +5484|174412|6930|4|1|1486.41|0.09|0.02|N|O|1996-02-01|1996-04-01|1996-02-23|COLLECT COD|AIR|he bold packages. bl| +5485|80358|7883|1|46|61564.10|0.10|0.04|N|O|1996-09-19|1996-07-22|1996-10-05|DELIVER IN PERSON|MAIL|refully ev| +5485|168411|8412|2|30|44382.30|0.05|0.07|N|O|1996-08-01|1996-08-18|1996-08-19|COLLECT COD|TRUCK|nusual, unusual packages believe sly| +5485|74133|9148|3|15|16606.95|0.04|0.01|N|O|1996-09-05|1996-09-02|1996-09-27|COLLECT COD|AIR|cording to the regular, ir| +5485|152306|9852|4|46|62481.80|0.10|0.03|N|O|1996-07-05|1996-07-21|1996-07-27|NONE|MAIL|carefully pending accounts. depo| +5485|2266|9767|5|18|21028.68|0.01|0.06|N|O|1996-08-30|1996-08-21|1996-09-09|TAKE BACK RETURN|SHIP|carefully ironic pa| +5485|75107|5108|6|28|30298.80|0.03|0.04|N|O|1996-09-22|1996-08-16|1996-10-11|NONE|MAIL| evenly ironic foxes w| +5486|113557|3558|1|27|42404.85|0.03|0.03|R|F|1994-03-29|1994-04-21|1994-04-14|DELIVER IN PERSON|SHIP|ses boost silently furiously ironic decoys| +5487|40816|5825|1|18|31622.58|0.02|0.07|N|O|1998-04-05|1998-04-04|1998-05-01|DELIVER IN PERSON|FOB|riously even instructions above the acc| +5487|186441|6442|2|6|9164.64|0.10|0.02|N|O|1998-04-25|1998-04-20|1998-05-06|NONE|REG AIR|ly unusual packages; ironic gifts us| +5487|103535|8556|3|8|12308.24|0.07|0.01|N|O|1998-02-21|1998-03-19|1998-02-23|TAKE BACK RETURN|FOB|ts wake bold ideas. en| +5487|96634|4162|4|38|61963.94|0.10|0.06|N|O|1998-05-03|1998-03-06|1998-05-07|NONE|REG AIR|. blithely ev| +5487|122558|2559|5|27|42674.85|0.08|0.04|N|O|1998-02-23|1998-03-05|1998-02-24|DELIVER IN PERSON|AIR| across the ironic p| +5487|24875|2382|6|2|3599.74|0.00|0.05|N|O|1998-03-23|1998-02-19|1998-03-28|TAKE BACK RETURN|RAIL|ly even, unusual packages. regular acco| +5512|117100|7101|1|15|16756.50|0.07|0.08|N|O|1996-06-02|1996-05-02|1996-06-06|TAKE BACK RETURN|SHIP|ts. furiously bold pains cajole alongsid| +5512|98859|1369|2|12|22294.20|0.09|0.05|N|O|1996-06-06|1996-05-02|1996-06-27|DELIVER IN PERSON|TRUCK|ost quickly. even request| +5512|122363|4876|3|48|66497.28|0.10|0.03|N|O|1996-02-25|1996-05-03|1996-03-05|TAKE BACK RETURN|AIR|y final deposits sleep furiously | +5512|148157|8158|4|38|45795.70|0.04|0.08|N|O|1996-03-20|1996-04-27|1996-04-11|COLLECT COD|REG AIR|cajole slyly careful, ironic platelets. sp| +5512|63560|8573|5|47|71607.32|0.02|0.02|N|O|1996-03-10|1996-03-29|1996-03-15|TAKE BACK RETURN|FOB| fluffily final courts against the unus| +5512|49862|7375|6|49|88781.14|0.05|0.06|N|O|1996-02-21|1996-04-02|1996-03-08|DELIVER IN PERSON|REG AIR|side of the furiously fi| +5512|21036|6041|7|1|957.03|0.04|0.05|N|O|1996-03-15|1996-05-02|1996-04-13|TAKE BACK RETURN|MAIL|ockey players nag throughout the slyly regu| +5513|146812|1841|1|35|65058.35|0.03|0.00|N|O|1997-08-08|1997-10-10|1997-09-02|TAKE BACK RETURN|SHIP|onic warthogs sleep slyly| +5513|60486|487|2|22|31822.56|0.07|0.04|N|O|1997-08-27|1997-09-19|1997-09-26|COLLECT COD|TRUCK|ts are. quickly | +5513|183595|1150|3|12|20143.08|0.02|0.01|N|O|1997-11-17|1997-09-01|1997-11-19|NONE|REG AIR| accounts snooze slyly after the fluf| +5513|78344|8345|4|45|59505.30|0.07|0.06|N|O|1997-09-06|1997-10-01|1997-09-07|DELIVER IN PERSON|TRUCK|nts sleep blithely carefully ironic| +5513|111448|1449|5|7|10216.08|0.04|0.06|N|O|1997-08-13|1997-09-24|1997-09-12|DELIVER IN PERSON|RAIL|ual, fluffy deposits nag. blithely r| +5513|103095|8116|6|19|20863.71|0.04|0.00|N|O|1997-11-18|1997-09-16|1997-12-09|COLLECT COD|REG AIR|luffily final deposit| +5513|114590|7102|7|29|46533.11|0.06|0.02|N|O|1997-08-18|1997-09-05|1997-09-12|DELIVER IN PERSON|RAIL|ular theodolites. quickly final depen| +5514|102954|2955|1|1|1956.95|0.03|0.05|N|O|1996-01-31|1996-03-12|1996-02-04|COLLECT COD|REG AIR|es could have to are fluffily along the qui| +5514|132515|55|2|19|29402.69|0.04|0.01|N|O|1996-03-14|1996-02-24|1996-03-29|COLLECT COD|TRUCK|carefully acro| +5515|16713|9215|1|17|27705.07|0.05|0.08|N|O|1998-06-01|1998-07-04|1998-06-12|DELIVER IN PERSON|FOB|ckly along the final, regular | +5515|86764|1781|2|28|49021.28|0.05|0.06|N|O|1998-07-22|1998-06-15|1998-08-09|NONE|REG AIR|requests wake quickly special platelets| +5515|30291|5298|3|14|17098.06|0.09|0.06|N|O|1998-07-30|1998-07-04|1998-08-02|COLLECT COD|FOB|kly instructions. furiously even | +5515|96552|9062|4|50|77427.50|0.02|0.00|N|O|1998-04-25|1998-05-26|1998-05-13|DELIVER IN PERSON|MAIL| carefully even pa| +5516|81249|3758|1|5|6151.20|0.09|0.04|N|O|1996-04-28|1996-04-09|1996-05-22|COLLECT COD|SHIP|sts cajole furiously sile| +5516|148770|3799|2|8|14550.16|0.06|0.07|N|O|1996-05-03|1996-04-24|1996-05-23|TAKE BACK RETURN|REG AIR|ingly ironic foxes wake abo| +5516|175965|3517|3|13|26532.48|0.04|0.07|N|O|1996-05-23|1996-03-09|1996-05-25|COLLECT COD|AIR|instructions use. dog| +5516|32256|7263|4|20|23765.00|0.04|0.04|N|O|1996-05-09|1996-04-02|1996-05-20|NONE|MAIL|furious requests. blithel| +5517|48918|6431|1|25|46672.75|0.01|0.08|R|F|1995-04-17|1995-05-21|1995-04-18|TAKE BACK RETURN|MAIL| express deposits are reg| +5517|151036|3552|2|11|11957.33|0.10|0.03|R|F|1995-03-04|1995-04-06|1995-03-31|NONE|RAIL|l packages. carefully even acc| +5517|55219|2735|3|10|11742.10|0.08|0.00|R|F|1995-05-09|1995-05-10|1995-05-15|COLLECT COD|SHIP|encies. express, idle| +5518|102711|7732|1|25|42842.75|0.09|0.02|A|F|1992-12-17|1993-02-06|1993-01-15|NONE|REG AIR|requests. sp| +5518|60540|541|2|35|52518.90|0.02|0.03|A|F|1993-03-03|1993-01-30|1993-03-31|TAKE BACK RETURN|TRUCK| furiously. pending theodolites s| +5518|87195|4720|3|7|8275.33|0.10|0.03|A|F|1992-12-08|1993-02-14|1992-12-17|COLLECT COD|REG AIR| deposits cajole closely ideas.| +5518|78904|6426|4|12|22594.80|0.03|0.01|R|F|1993-01-31|1993-01-13|1993-02-01|DELIVER IN PERSON|TRUCK|ages. special, bold excuses a| +5518|128407|920|5|12|17224.80|0.03|0.06|R|F|1993-03-11|1993-01-14|1993-03-19|DELIVER IN PERSON|FOB|s after the waters believe ruthlessl| +5518|120997|998|6|5|10089.95|0.00|0.02|A|F|1993-04-01|1993-02-12|1993-04-28|NONE|SHIP|lly final d| +5519|10978|5981|1|50|94448.50|0.06|0.03|A|F|1994-06-13|1994-07-16|1994-06-22|TAKE BACK RETURN|AIR|even deposits dazzle according to t| +5519|106316|8827|2|35|46280.85|0.04|0.03|R|F|1994-09-29|1994-07-15|1994-10-13|DELIVER IN PERSON|FOB|orses boost fluf| +5519|46736|1745|3|30|50481.90|0.03|0.02|R|F|1994-08-19|1994-08-19|1994-08-24|TAKE BACK RETURN|SHIP|g the carefully express accou| +5519|77477|7478|4|19|27634.93|0.08|0.06|A|F|1994-09-05|1994-07-17|1994-09-20|NONE|TRUCK|ns. quickly final | +5519|154680|7196|5|34|58979.12|0.02|0.00|A|F|1994-07-12|1994-08-13|1994-08-03|DELIVER IN PERSON|TRUCK|pinto beans| +5544|185521|8040|1|35|56228.20|0.04|0.02|R|F|1992-08-23|1992-08-14|1992-09-16|TAKE BACK RETURN|TRUCK|ully bold pinto beans wake blithely. furiou| +5544|37442|2449|2|14|19312.16|0.10|0.06|A|F|1992-08-17|1992-07-16|1992-09-15|DELIVER IN PERSON|TRUCK|ial packages. express dolphi| +5544|86135|8644|3|15|16816.95|0.00|0.01|A|F|1992-06-09|1992-08-05|1992-06-29|TAKE BACK RETURN|REG AIR|er the permanently | +5544|56134|6135|4|12|13081.56|0.00|0.02|R|F|1992-08-16|1992-08-30|1992-09-13|DELIVER IN PERSON|FOB|ully regula| +5544|32834|2835|5|9|15901.47|0.00|0.05|A|F|1992-07-01|1992-08-29|1992-07-28|COLLECT COD|MAIL|deposits might haggle carefully | +5544|28832|3837|6|17|29934.11|0.06|0.08|A|F|1992-09-10|1992-08-11|1992-09-13|TAKE BACK RETURN|MAIL|use thinly unusual epitaphs. regul| +5544|170703|3221|7|32|56758.40|0.09|0.04|A|F|1992-08-19|1992-08-25|1992-09-04|DELIVER IN PERSON|MAIL| evenly against | +5545|5256|257|1|24|27870.00|0.03|0.00|N|O|1995-06-22|1995-08-15|1995-06-30|TAKE BACK RETURN|SHIP|y ironic theodolites integrate | +5546|128952|1465|1|28|55466.60|0.01|0.06|R|F|1994-05-07|1994-06-19|1994-05-14|NONE|FOB|arefully final dolphins wake fu| +5546|87963|7964|2|20|39019.20|0.00|0.02|A|F|1994-06-18|1994-05-18|1994-06-23|NONE|MAIL|theodolites. carefully final deposits| +5546|193764|6284|3|20|37155.20|0.07|0.08|R|F|1994-05-02|1994-06-27|1994-05-24|COLLECT COD|MAIL|ions sleep de| +5546|182265|4784|4|34|45806.84|0.00|0.07|A|F|1994-06-03|1994-06-03|1994-06-15|NONE|FOB|equests use quickly. ironic, bold instruc| +5547|156113|1144|1|7|8183.77|0.09|0.07|R|F|1992-08-29|1992-08-23|1992-09-22|COLLECT COD|REG AIR|ole blithely pe| +5547|183390|945|2|11|16207.29|0.00|0.07|A|F|1992-09-24|1992-08-14|1992-10-20|TAKE BACK RETURN|RAIL| of the slyly pending platelets; slyly sp| +5547|32360|2361|3|12|15508.32|0.07|0.00|R|F|1992-10-27|1992-08-06|1992-11-01|TAKE BACK RETURN|REG AIR|al accounts haggl| +5547|70870|5885|4|19|34976.53|0.02|0.00|R|F|1992-07-20|1992-08-11|1992-08-11|TAKE BACK RETURN|FOB|refully instead of the quickly ironic| +5547|106190|1211|5|21|25119.99|0.05|0.00|R|F|1992-08-26|1992-09-04|1992-09-24|DELIVER IN PERSON|REG AIR| dinos. finally pending foxes boost sl| +5547|135173|5174|6|37|44702.29|0.03|0.06|A|F|1992-07-23|1992-09-21|1992-07-30|DELIVER IN PERSON|AIR|tions x-ray blithely. special de| +5547|50699|700|7|28|46191.32|0.05|0.07|A|F|1992-09-26|1992-09-24|1992-10-19|DELIVER IN PERSON|RAIL|he instructions-| +5548|83147|8164|1|43|48596.02|0.04|0.07|R|F|1992-12-19|1993-01-05|1993-01-08|DELIVER IN PERSON|AIR|eas haggle against the quickly t| +5548|35651|5652|2|30|47599.50|0.08|0.00|A|F|1993-01-10|1993-01-27|1993-01-22|COLLECT COD|MAIL|furiously eve| +5548|181436|6473|3|13|19726.59|0.03|0.05|A|F|1993-02-09|1993-01-14|1993-03-01|DELIVER IN PERSON|RAIL| ironic, final packages na| +5548|178090|3125|4|20|23361.80|0.05|0.06|R|F|1992-11-29|1993-01-20|1992-12-07|COLLECT COD|AIR|quests use slyly even f| +5548|152943|7974|5|10|19959.40|0.03|0.01|A|F|1992-11-07|1993-01-15|1992-11-19|DELIVER IN PERSON|TRUCK| the quietly enticing i| +5549|154816|9847|1|28|52382.68|0.03|0.02|N|O|1995-09-28|1995-09-06|1995-10-12|COLLECT COD|RAIL|lar deposits. blithely u| +5549|184823|7342|2|48|91575.36|0.00|0.05|N|O|1995-09-02|1995-09-22|1995-09-15|TAKE BACK RETURN|FOB|y regular dinos use qu| +5549|114103|6615|3|23|25693.30|0.06|0.01|N|O|1995-09-06|1995-08-09|1995-10-05|COLLECT COD|REG AIR|ic deposits nag furiously a| +5550|30854|5861|1|29|51760.65|0.07|0.06|R|F|1993-04-08|1993-05-11|1993-04-22|COLLECT COD|FOB|! even requests snooze care| +5551|23383|3384|1|20|26127.60|0.01|0.05|N|O|1998-07-13|1998-06-27|1998-08-03|DELIVER IN PERSON|FOB|al deposits along the instructions try to s| +5551|189659|7214|2|38|66448.70|0.04|0.00|N|O|1998-07-22|1998-06-21|1998-07-23|COLLECT COD|MAIL|aggle across| +5551|197212|7213|3|38|49749.98|0.00|0.01|N|O|1998-05-23|1998-07-07|1998-06-15|DELIVER IN PERSON|AIR|en gifts sleep slyly; fluffily sly dep| +5551|136622|6623|4|43|71320.66|0.06|0.07|N|O|1998-08-05|1998-07-22|1998-08-09|TAKE BACK RETURN|MAIL|lets are among the requests. final deposi| +5551|193443|8482|5|36|55311.84|0.06|0.05|N|O|1998-09-01|1998-07-23|1998-09-14|DELIVER IN PERSON|AIR|n excuses sleep furiously afte| +5576|35804|8308|1|7|12178.60|0.06|0.01|N|O|1998-09-07|1998-08-03|1998-09-29|DELIVER IN PERSON|REG AIR|refully ironic| +5576|141868|4383|2|11|21008.46|0.01|0.06|N|O|1998-09-12|1998-07-28|1998-10-12|NONE|REG AIR|nal, regular instructions above the unusual| +5576|170555|3073|3|28|45515.40|0.03|0.03|N|O|1998-07-31|1998-06-29|1998-08-21|COLLECT COD|FOB|ly even deposits use| +5576|109884|2395|4|5|9469.40|0.05|0.02|N|O|1998-07-24|1998-07-26|1998-08-12|DELIVER IN PERSON|FOB|special dugouts haggle regular excuses| +5577|47423|4936|1|2|2740.84|0.04|0.00|A|F|1992-06-14|1992-05-22|1992-07-08|TAKE BACK RETURN|TRUCK|ters. slyly fina| +5577|29004|9005|2|28|26124.00|0.06|0.06|A|F|1992-05-24|1992-06-18|1992-06-04|TAKE BACK RETURN|SHIP|ly final accounts atop the furiously fina| +5578|172961|2962|1|41|83392.36|0.02|0.01|N|O|1997-08-22|1997-08-07|1997-09-09|TAKE BACK RETURN|FOB|re alongside of the slyly| +5578|142386|2387|2|34|48564.92|0.03|0.07|N|O|1997-08-25|1997-08-02|1997-09-03|TAKE BACK RETURN|TRUCK|leep slyly regular acc| +5578|81298|3807|3|20|25585.80|0.09|0.06|N|O|1997-07-04|1997-06-27|1997-08-03|DELIVER IN PERSON|REG AIR|ironic packages.| +5578|162857|7890|4|13|24958.05|0.02|0.05|N|O|1997-07-10|1997-07-17|1997-07-11|DELIVER IN PERSON|FOB|al platelets | +5579|46639|9144|1|39|61839.57|0.05|0.02|R|F|1992-06-25|1992-06-04|1992-07-08|TAKE BACK RETURN|FOB|deposits wake even, bol| +5579|49215|6728|2|43|50061.03|0.10|0.05|A|F|1992-06-17|1992-06-16|1992-06-22|COLLECT COD|FOB|old requests. slyly regular fo| +5579|154625|9656|3|50|83981.00|0.06|0.01|R|F|1992-08-01|1992-05-03|1992-08-19|NONE|RAIL|he regular i| +5579|172701|2702|4|1|1773.70|0.02|0.04|A|F|1992-06-04|1992-06-01|1992-06-29|NONE|RAIL|s. blithely fina| +5579|180480|5517|5|38|59298.24|0.06|0.00|R|F|1992-04-22|1992-06-19|1992-05-19|COLLECT COD|REG AIR|ans wake furiously quickly darin| +5579|120758|759|6|44|78265.00|0.03|0.03|A|F|1992-04-26|1992-06-02|1992-04-28|DELIVER IN PERSON|SHIP|st. furiously regular ideas about | +5580|138412|5952|1|15|21756.15|0.09|0.08|A|F|1993-08-10|1993-06-02|1993-08-31|NONE|RAIL|to the regular theodolites. pending, f| +5580|73746|8761|2|50|85987.00|0.02|0.04|A|F|1993-05-15|1993-07-04|1993-06-01|NONE|SHIP|quickly pending theodolites| +5580|38333|5843|3|26|33054.58|0.08|0.05|R|F|1993-05-24|1993-07-13|1993-06-23|DELIVER IN PERSON|FOB|wake. even platelets alongside of the fu| +5580|54279|6785|4|18|22198.86|0.03|0.07|A|F|1993-05-10|1993-06-26|1993-06-01|NONE|TRUCK| sleep slyly blithely bold pac| +5580|53785|6291|5|43|74767.54|0.09|0.03|R|F|1993-07-11|1993-06-14|1993-07-18|TAKE BACK RETURN|FOB| requests sleep along the even, final accou| +5580|163997|6514|6|6|12365.94|0.04|0.07|A|F|1993-05-03|1993-06-18|1993-05-24|DELIVER IN PERSON|REG AIR|ckages. accounts eat blithely. qui| +5581|3523|3524|1|22|31383.44|0.04|0.04|N|O|1996-09-24|1996-10-19|1996-10-18|COLLECT COD|FOB| instructions. pending pack| +5581|4798|2299|2|48|81733.92|0.00|0.03|N|O|1996-09-12|1996-11-28|1996-09-24|COLLECT COD|FOB|ecial, even dolphins. carefully express t| +5581|34064|1574|3|42|41918.52|0.07|0.05|N|O|1996-11-11|1996-11-17|1996-11-28|DELIVER IN PERSON|MAIL|y final Tiresias| +5582|188253|5808|1|13|17436.25|0.09|0.08|R|F|1993-10-17|1993-11-20|1993-10-21|DELIVER IN PERSON|FOB|ial foxes. furiously even excuses| +5582|155649|8165|2|25|42616.00|0.05|0.01|A|F|1993-08-30|1993-10-26|1993-09-10|TAKE BACK RETURN|SHIP|uests. ironically bold packages breach sl| +5582|189709|9710|3|44|79142.80|0.06|0.02|A|F|1993-10-04|1993-10-27|1993-10-29|DELIVER IN PERSON|MAIL|y idle deposits. unusual, final req| +5582|24943|7446|4|13|24283.22|0.09|0.04|R|F|1993-11-17|1993-10-13|1993-12-04|DELIVER IN PERSON|REG AIR|uternes. regular excus| +5582|9864|9865|5|20|35477.20|0.08|0.06|R|F|1993-11-14|1993-10-09|1993-12-12|TAKE BACK RETURN|MAIL|run after the quiet th| +5582|172408|2409|6|13|19245.20|0.02|0.05|R|F|1993-09-13|1993-11-13|1993-09-26|NONE|SHIP| unusual asympt| +5583|169308|4341|1|16|22036.80|0.05|0.07|R|F|1994-09-17|1994-09-08|1994-10-03|DELIVER IN PERSON|AIR|inal instructions boost pending gr| +5608|70295|5310|1|34|43019.86|0.01|0.06|N|O|1995-08-14|1995-08-12|1995-09-12|NONE|REG AIR|x fluffily. dependencies hinder| +5608|38165|5675|2|11|12134.76|0.06|0.05|N|O|1995-09-08|1995-08-31|1995-09-12|TAKE BACK RETURN|MAIL|thely regular accoun| +5608|37644|5154|3|31|49030.84|0.01|0.01|N|O|1995-10-05|1995-08-29|1995-10-26|DELIVER IN PERSON|RAIL|ly according to | +5608|66596|4115|4|44|68753.96|0.05|0.05|N|O|1995-10-28|1995-09-11|1995-11-11|DELIVER IN PERSON|TRUCK| instructions. bold in| +5608|62350|2351|5|40|52494.00|0.04|0.05|N|O|1995-09-09|1995-08-27|1995-09-16|TAKE BACK RETURN|FOB|ckages. regular, eve| +5608|101981|9512|6|35|69404.30|0.09|0.04|N|O|1995-08-17|1995-08-27|1995-08-30|NONE|MAIL|uriously. dogged, reg| +5609|95647|666|1|43|70633.52|0.06|0.02|R|F|1995-02-23|1995-04-09|1995-03-24|NONE|MAIL|ests. slyly ironic| +5609|128317|8318|2|44|59193.64|0.07|0.08|R|F|1995-05-03|1995-02-19|1995-05-10|COLLECT COD|AIR|es wake quickly final f| +5609|10520|3022|3|21|30040.92|0.03|0.00|R|F|1995-02-01|1995-02-24|1995-02-25|DELIVER IN PERSON|FOB| accounts. furiously regular| +5609|199548|2068|4|9|14827.86|0.07|0.04|A|F|1995-02-19|1995-03-17|1995-03-14|COLLECT COD|MAIL| accounts shall nag blithely s| +5609|192763|7802|5|1|1855.76|0.06|0.08|A|F|1995-03-21|1995-03-27|1995-03-27|COLLECT COD|FOB|ccording to the furiously | +5610|104851|4852|1|8|14846.80|0.01|0.04|A|F|1995-03-06|1995-01-29|1995-03-07|DELIVER IN PERSON|SHIP|en ideas nag blithely slyly even platel| +5611|73879|3880|1|22|40763.14|0.01|0.01|N|O|1998-05-11|1998-07-02|1998-06-03|NONE|TRUCK|atelets according to the blithely u| +5611|70817|3325|2|34|60785.54|0.02|0.04|N|O|1998-04-20|1998-06-13|1998-04-23|DELIVER IN PERSON|SHIP|ording to the sp| +5611|18807|8808|3|10|17258.00|0.03|0.02|N|O|1998-05-22|1998-06-18|1998-06-09|DELIVER IN PERSON|SHIP|e carefully according to the bold r| +5611|80910|5927|4|40|75636.40|0.02|0.04|N|O|1998-04-26|1998-06-30|1998-05-14|DELIVER IN PERSON|TRUCK|o beans. ironic theodolites believ| +5611|47968|7969|5|40|76638.40|0.05|0.03|N|O|1998-06-02|1998-06-04|1998-06-09|TAKE BACK RETURN|AIR|n foxes. quickly express packages w| +5612|156845|1876|1|16|30429.44|0.06|0.00|A|F|1995-03-12|1995-01-21|1995-03-27|NONE|AIR|uffily after the re| +5612|80734|5751|2|11|18862.03|0.02|0.01|R|F|1995-01-15|1995-02-12|1995-02-10|COLLECT COD|TRUCK|deas wake fluffily blithely ironic p| +5612|91659|6678|3|20|33013.00|0.02|0.07|A|F|1995-03-05|1995-02-04|1995-03-22|COLLECT COD|AIR| quickly along the| +5612|98839|8840|4|11|20216.13|0.10|0.03|R|F|1995-01-10|1995-02-03|1995-02-02|TAKE BACK RETURN|AIR|thely. blithely regular requests h| +5612|174168|6686|5|8|9937.28|0.04|0.06|A|F|1995-02-04|1995-02-25|1995-02-17|COLLECT COD|SHIP|the ideas. blithely unusual instr| +5612|31962|4466|6|33|62500.68|0.07|0.07|R|F|1995-01-05|1995-02-28|1995-01-18|DELIVER IN PERSON|MAIL| carefully fina| +5613|105493|514|1|32|47951.68|0.08|0.06|R|F|1994-06-14|1994-05-16|1994-07-14|DELIVER IN PERSON|RAIL|s. accounts serve furiously unusual| +5613|6644|9145|2|5|7753.20|0.05|0.06|A|F|1994-07-06|1994-05-17|1994-07-23|TAKE BACK RETURN|MAIL|uffily abou| +5614|95668|3196|1|39|64882.74|0.02|0.03|N|O|1998-09-24|1998-08-14|1998-10-09|NONE|SHIP| packages wake bl| +5614|80197|198|2|11|12949.09|0.09|0.08|N|O|1998-07-14|1998-09-07|1998-07-30|NONE|REG AIR|unusual dolph| +5614|54705|2221|3|21|34853.70|0.01|0.06|N|O|1998-10-19|1998-08-26|1998-10-29|TAKE BACK RETURN|TRUCK|ans haggle quickly. re| +5614|19318|4321|4|7|8661.17|0.05|0.02|N|O|1998-07-16|1998-09-22|1998-08-03|DELIVER IN PERSON|SHIP|y blithely special| +5615|68431|5950|1|9|12594.87|0.08|0.00|N|O|1996-03-21|1996-03-26|1996-04-13|TAKE BACK RETURN|TRUCK|tly ironic packages. final theodolite| +5615|119784|4807|2|44|79366.32|0.06|0.01|N|O|1996-04-12|1996-03-11|1996-05-12|NONE|AIR| according to the asympt| +5615|5566|3067|3|1|1471.56|0.01|0.00|N|O|1996-03-11|1996-03-13|1996-04-01|TAKE BACK RETURN|RAIL|ests use quickly quickly final depen| +5615|135760|8274|4|28|50281.28|0.00|0.07|N|O|1996-01-15|1996-02-28|1996-02-12|DELIVER IN PERSON|FOB|heodolites boost furiously furious| +5615|112318|4830|5|39|51882.09|0.07|0.07|N|O|1996-02-12|1996-02-26|1996-02-26|COLLECT COD|TRUCK|its need to wake blithely| +5615|125711|8224|6|39|67731.69|0.06|0.05|N|O|1996-03-28|1996-02-15|1996-04-23|NONE|TRUCK|lent asymptotes. deposits are. slyly regula| +5615|24125|1632|7|41|43013.92|0.06|0.04|N|O|1996-02-01|1996-03-20|1996-02-14|COLLECT COD|SHIP|requests m| +5640|63626|1145|1|10|15896.20|0.02|0.01|A|F|1995-01-25|1995-02-21|1995-02-08|DELIVER IN PERSON|TRUCK|ar accounts about the platelets run fin| +5640|148698|8699|2|37|64627.53|0.05|0.08|R|F|1995-02-09|1995-03-18|1995-02-22|COLLECT COD|RAIL|e enticingly final re| +5640|163260|5777|3|31|41021.06|0.02|0.01|R|F|1995-02-26|1995-02-16|1995-03-11|TAKE BACK RETURN|RAIL|regular dependencies. final, fi| +5640|94138|1666|4|22|24906.86|0.00|0.01|A|F|1995-04-05|1995-01-30|1995-04-09|COLLECT COD|MAIL|quests about the furiously regul| +5640|164579|7096|5|29|47663.53|0.04|0.03|A|F|1995-02-05|1995-01-27|1995-02-23|DELIVER IN PERSON|FOB|ld affix beyond the express theodolite| +5640|62709|228|6|12|20060.40|0.04|0.05|A|F|1995-01-01|1995-02-21|1995-01-20|NONE|FOB|foxes wake fluffily. | +5640|142231|2232|7|43|54748.89|0.02|0.02|R|F|1995-01-12|1995-02-08|1995-02-03|NONE|RAIL|ts: fluffily ev| +5641|60245|5258|1|14|16873.36|0.09|0.00|R|F|1994-09-01|1994-11-13|1994-09-30|NONE|TRUCK| the ideas. silent dep| +5642|25173|2680|1|40|43926.80|0.10|0.03|A|F|1994-08-05|1994-08-21|1994-08-22|TAKE BACK RETURN|FOB| regular deposits. regular, unusual foxe| +5642|70527|3035|2|11|16472.72|0.00|0.04|A|F|1994-07-26|1994-08-19|1994-08-15|NONE|MAIL|ites affix furiously above the b| +5642|142691|2692|3|47|81483.43|0.09|0.00|A|F|1994-08-11|1994-08-08|1994-08-15|DELIVER IN PERSON|AIR| among the blith| +5642|198306|8307|4|29|40724.70|0.03|0.06|R|F|1994-08-22|1994-08-21|1994-09-20|DELIVER IN PERSON|MAIL|nic ideas sleep blithely carefully special | +5643|126064|3601|1|20|21801.20|0.06|0.01|N|O|1995-07-06|1995-08-29|1995-07-11|COLLECT COD|RAIL| express d| +5643|153591|1137|2|12|19735.08|0.10|0.03|N|O|1995-08-15|1995-09-06|1995-09-08|DELIVER IN PERSON|AIR|counts sleep. furiously br| +5643|190828|5867|3|24|46051.68|0.02|0.06|N|O|1995-08-12|1995-09-08|1995-08-27|TAKE BACK RETURN|SHIP|ronic pinto beans haggle carefully furiousl| +5643|39895|2399|4|9|16514.01|0.05|0.03|N|O|1995-07-15|1995-08-03|1995-07-27|NONE|SHIP|tructions. slyly fin| +5644|115340|363|1|27|36594.18|0.03|0.01|A|F|1992-05-28|1992-05-07|1992-06-17|NONE|REG AIR|lyly final requests. slyly unus| +5644|109531|2042|2|21|32351.13|0.06|0.01|R|F|1992-05-20|1992-04-28|1992-06-01|TAKE BACK RETURN|MAIL|ronic instructions cajole among the slyl| +5644|86591|9100|3|22|34706.98|0.03|0.03|R|F|1992-04-19|1992-04-29|1992-05-08|DELIVER IN PERSON|REG AIR|y ironic multipli| +5644|132096|9636|4|24|27074.16|0.07|0.05|R|F|1992-03-27|1992-04-13|1992-04-08|COLLECT COD|RAIL|ng deposits. fluffily sly acc| +5644|127764|277|5|12|21501.12|0.02|0.04|A|F|1992-03-27|1992-04-12|1992-04-22|DELIVER IN PERSON|RAIL|lithely after the carefully unusual ep| +5644|127945|5482|6|10|19729.40|0.03|0.08|A|F|1992-03-16|1992-03-25|1992-04-07|TAKE BACK RETURN|RAIL|usual request| +5644|164392|1941|7|13|18933.07|0.09|0.01|A|F|1992-06-10|1992-04-25|1992-06-26|DELIVER IN PERSON|FOB| Tiresias.| +5645|121899|4412|1|30|57626.70|0.00|0.06|A|F|1992-04-30|1992-02-20|1992-05-12|DELIVER IN PERSON|SHIP|bravely about th| +5645|154625|9656|2|18|30233.16|0.00|0.04|A|F|1992-04-22|1992-02-07|1992-05-15|COLLECT COD|FOB|refully pending pinto beans. | +5645|181669|4188|3|23|40265.18|0.06|0.03|A|F|1992-01-26|1992-02-25|1992-01-28|DELIVER IN PERSON|TRUCK|y bold tithes.| +5646|157182|7183|1|36|44610.48|0.09|0.02|N|O|1998-05-02|1998-04-27|1998-05-03|DELIVER IN PERSON|REG AIR|instructions haggle slyly bold id| +5646|142054|2055|2|25|27401.25|0.06|0.06|N|O|1998-05-17|1998-04-20|1998-06-05|TAKE BACK RETURN|SHIP|riously ironic depo| +5646|97471|2490|3|12|17621.64|0.06|0.00|N|O|1998-03-03|1998-05-19|1998-03-15|COLLECT COD|FOB|press, regular ideas al| +5647|124892|9917|1|21|40254.69|0.04|0.06|R|F|1994-11-27|1994-12-30|1994-12-21|NONE|RAIL|along the blithely| +5647|46788|6789|2|14|24286.92|0.01|0.04|R|F|1994-11-15|1994-11-22|1994-11-21|NONE|MAIL| the quickly ironic accounts caj| +5647|161361|3878|3|12|17068.32|0.09|0.06|R|F|1994-10-22|1995-01-04|1994-11-08|TAKE BACK RETURN|FOB|mong the fluf| +5647|185245|2800|4|29|38576.96|0.08|0.02|A|F|1994-11-15|1994-12-17|1994-11-25|NONE|AIR|s are. quick excuses use furiously a| +5647|195925|5926|5|6|12125.52|0.01|0.02|R|F|1995-02-04|1994-11-16|1995-02-22|DELIVER IN PERSON|REG AIR|osits integr| +5647|101346|8877|6|26|35030.84|0.04|0.00|A|F|1994-12-11|1994-12-19|1994-12-31|NONE|REG AIR|nding accounts grow carefully exp| +5647|105905|3436|7|13|24841.70|0.02|0.00|R|F|1994-11-18|1995-01-02|1994-11-30|TAKE BACK RETURN|FOB| sublate blithely along the eve| +5672|143485|1028|1|30|45854.40|0.10|0.02|A|F|1992-11-03|1992-10-22|1992-11-28|DELIVER IN PERSON|RAIL|gle slyly after the final asy| +5672|145138|2681|2|43|50874.59|0.06|0.04|A|F|1992-10-20|1992-10-14|1992-11-18|NONE|TRUCK|n, ironic ac| +5672|129117|9118|3|25|28652.75|0.01|0.02|A|F|1992-10-02|1992-10-22|1992-10-22|COLLECT COD|AIR|lly. special, ironic packages | +5672|59301|4312|4|42|52932.60|0.04|0.05|A|F|1992-10-04|1992-11-19|1992-10-21|DELIVER IN PERSON|FOB|ut the quickl| +5672|66544|6545|5|36|54379.44|0.03|0.03|A|F|1992-11-19|1992-10-09|1992-11-28|NONE|TRUCK|sual, even ideas use furiously | +5673|126848|1873|1|2|3749.68|0.10|0.00|A|F|1992-12-12|1992-12-20|1992-12-18|NONE|FOB|platelets boost slyl| +5673|125506|531|2|13|19909.50|0.08|0.00|R|F|1993-01-01|1993-01-10|1993-01-03|NONE|AIR|ut the dependencies unwind furi| +5673|177031|9549|3|14|15512.42|0.03|0.06|R|F|1993-02-05|1992-12-25|1993-02-13|DELIVER IN PERSON|FOB| slyly pack| +5673|144682|4683|4|16|27626.88|0.05|0.04|R|F|1993-01-19|1992-12-09|1993-02-10|DELIVER IN PERSON|FOB|n packages. unusual excuses are among t| +5674|23005|3006|1|49|45472.00|0.07|0.07|N|O|1996-02-08|1996-03-03|1996-03-05|NONE|MAIL|eodolites. bl| +5674|40267|2772|2|45|54326.70|0.05|0.08|N|O|1996-04-08|1996-03-01|1996-05-01|NONE|MAIL|ld packages sleep q| +5675|185472|3027|1|27|42051.69|0.06|0.00|N|O|1995-08-13|1995-08-25|1995-08-23|COLLECT COD|REG AIR| ironic packages across the quic| +5675|16638|4142|2|45|69958.35|0.07|0.07|N|O|1995-08-19|1995-08-13|1995-08-31|DELIVER IN PERSON|SHIP|ravely regular pac| +5675|23835|3836|3|6|10552.98|0.09|0.04|N|O|1995-09-17|1995-08-28|1995-10-16|DELIVER IN PERSON|RAIL|regular ideas; ironic requests cajole| +5675|187879|7880|4|16|31469.92|0.00|0.07|N|O|1995-08-31|1995-07-18|1995-09-08|TAKE BACK RETURN|REG AIR|quests sleep.| +5675|74678|7186|5|12|19832.04|0.09|0.01|N|O|1995-09-11|1995-08-20|1995-09-16|DELIVER IN PERSON|AIR|lly special pearls. regula| +5675|105827|3358|6|18|32990.76|0.03|0.01|N|O|1995-07-31|1995-07-27|1995-08-08|TAKE BACK RETURN|RAIL|egular deposits haggle furiously| +5676|116450|1473|1|37|54258.65|0.01|0.08|A|F|1993-04-05|1993-03-29|1993-04-21|DELIVER IN PERSON|SHIP|oxes. slyly bo| +5676|166802|4351|2|29|54195.20|0.05|0.02|R|F|1993-03-15|1993-04-10|1993-04-02|DELIVER IN PERSON|SHIP|ly even foxes. furiously regul| +5676|35593|3103|3|42|64200.78|0.07|0.07|A|F|1993-02-08|1993-04-10|1993-02-24|COLLECT COD|FOB|ly. final warthogs are blithely. sile| +5676|1829|1830|4|48|83079.36|0.06|0.08|A|F|1993-04-09|1993-04-18|1993-05-03|TAKE BACK RETURN|AIR|uests. blithely regular deposits believ| +5676|135147|2687|5|43|50832.02|0.09|0.00|A|F|1993-02-02|1993-04-15|1993-02-11|DELIVER IN PERSON|AIR|c, special reques| +5677|116631|6632|1|39|64257.57|0.06|0.05|A|F|1995-04-05|1995-05-27|1995-05-05|DELIVER IN PERSON|RAIL|capades accordin| +5677|2757|258|2|3|4979.25|0.07|0.02|N|O|1995-06-21|1995-05-09|1995-06-26|TAKE BACK RETURN|FOB|deposits. requ| +5677|132528|68|3|13|20286.76|0.10|0.06|A|F|1995-05-12|1995-05-08|1995-05-24|NONE|SHIP|ts around the regul| +5677|182541|2542|4|47|76306.38|0.05|0.07|A|F|1995-04-11|1995-05-22|1995-04-28|DELIVER IN PERSON|AIR|yly express platelets. carefully even d| +5677|158961|1477|5|9|18179.64|0.10|0.05|N|O|1995-06-22|1995-04-30|1995-07-10|DELIVER IN PERSON|RAIL|ndencies above the fluffily regular package| +5677|56364|1375|6|24|31688.64|0.05|0.03|N|F|1995-06-12|1995-06-01|1995-07-05|TAKE BACK RETURN|RAIL| beans. carefully even account| +5678|163067|8100|1|42|47462.52|0.07|0.01|N|O|1995-11-04|1995-12-28|1995-11-15|DELIVER IN PERSON|FOB|gle slyly furiousl| +5678|58991|6507|2|39|76049.61|0.06|0.05|N|O|1995-12-18|1995-11-23|1995-12-24|COLLECT COD|AIR|nal excuses poach among the | +5678|46783|6784|3|15|25946.70|0.02|0.06|N|O|1996-01-23|1995-11-22|1996-01-26|COLLECT COD|SHIP|kly along the | +5679|154921|7437|1|32|63229.44|0.03|0.03|A|F|1994-11-22|1994-12-15|1994-11-28|DELIVER IN PERSON|SHIP|ss, daring accounts. slyly even accoun| +5704|42223|9736|1|26|30295.72|0.07|0.05|R|F|1994-06-11|1994-07-27|1994-06-26|NONE|MAIL| pinto beans | +5704|29536|7043|2|50|73276.50|0.03|0.08|R|F|1994-08-03|1994-06-12|1994-08-16|NONE|AIR|ular, bold platelets sublate slyly qu| +5704|5547|8048|3|24|34860.96|0.10|0.07|R|F|1994-07-10|1994-07-25|1994-07-17|COLLECT COD|RAIL|g ideas are evenly regular ideas. final,| +5704|12656|2657|4|40|62746.00|0.02|0.01|R|F|1994-05-30|1994-07-21|1994-06-01|NONE|AIR|t the even as| +5704|106273|3804|5|48|61404.96|0.01|0.01|R|F|1994-07-08|1994-07-17|1994-07-15|TAKE BACK RETURN|RAIL|equests wak| +5705|100996|3507|1|1|1996.99|0.08|0.02|N|O|1998-05-18|1998-04-15|1998-05-29|DELIVER IN PERSON|MAIL|. fluffily ironic pinto beans abou| +5705|37650|5160|2|9|14288.85|0.03|0.05|N|O|1998-06-11|1998-04-19|1998-07-08|COLLECT COD|TRUCK|counts. furiously un| +5705|173324|5842|3|17|23754.44|0.07|0.01|N|O|1998-05-10|1998-05-05|1998-06-07|TAKE BACK RETURN|RAIL|thely final deposits. b| +5705|43167|8176|4|33|36635.28|0.03|0.06|N|O|1998-04-28|1998-03-16|1998-05-18|DELIVER IN PERSON|SHIP|inal accounts use carefully fur| +5706|74741|9756|1|40|68629.60|0.08|0.03|N|O|1998-11-02|1998-10-09|1998-11-24|TAKE BACK RETURN|TRUCK|ckly bold tithes cajo| +5706|157951|7952|2|15|30134.25|0.01|0.08|N|O|1998-08-22|1998-08-31|1998-09-08|DELIVER IN PERSON|AIR|he brave accounts-- slyly even accounts b| +5706|77692|200|3|31|51760.39|0.07|0.03|N|O|1998-09-09|1998-08-27|1998-09-22|TAKE BACK RETURN|FOB|luffily dolphins? ironic reques| +5707|93447|3448|1|16|23047.04|0.02|0.06|N|O|1996-02-27|1996-01-02|1996-03-20|NONE|RAIL|ly final instructions | +5707|155594|5595|2|35|57735.65|0.10|0.02|N|O|1995-11-19|1996-01-07|1995-12-09|NONE|TRUCK|eodolites haggl| +5707|51721|6732|3|42|70254.24|0.06|0.06|N|O|1996-02-24|1996-01-04|1996-02-27|NONE|REG AIR|ites haggle furiously accounts. regular in| +5707|73649|6157|4|26|42188.64|0.07|0.05|N|O|1996-02-07|1996-01-13|1996-02-21|DELIVER IN PERSON|RAIL| deposits: even dolphins| +5708|198410|3449|1|47|70895.27|0.09|0.05|N|O|1998-10-02|1998-09-17|1998-10-03|DELIVER IN PERSON|REG AIR|uriously. careful| +5708|75041|2563|2|47|47753.88|0.00|0.07|N|O|1998-09-29|1998-08-29|1998-10-08|NONE|AIR|ove the fluffily final accounts hag| +5709|5949|950|1|23|42663.62|0.02|0.03|N|O|1997-08-01|1997-08-23|1997-08-10|TAKE BACK RETURN|SHIP|ful ideas after the furiously| +5709|184548|4549|2|20|32650.80|0.02|0.02|N|O|1997-07-07|1997-08-23|1997-07-24|COLLECT COD|SHIP|ctions cajole b| +5709|82068|9593|3|47|49352.82|0.09|0.06|N|O|1997-07-15|1997-08-27|1997-08-14|TAKE BACK RETURN|AIR|l asymptotes nag. carefully | +5709|110304|305|4|43|56514.90|0.05|0.03|N|O|1997-08-04|1997-07-24|1997-08-26|DELIVER IN PERSON|REG AIR|cajole near the blithe| +5709|77128|9636|5|47|51940.64|0.06|0.00|N|O|1997-08-01|1997-09-12|1997-08-30|NONE|TRUCK|sits cajole blithely. ironic,| +5709|77443|9951|6|40|56817.60|0.09|0.06|N|O|1997-07-11|1997-07-26|1997-07-25|TAKE BACK RETURN|MAIL|r dependencies.| +5710|80217|5234|1|46|55071.66|0.10|0.02|N|O|1998-01-02|1997-10-22|1998-01-04|TAKE BACK RETURN|RAIL|lly ironic tithes boost blithely care| +5710|1272|8773|2|38|44584.26|0.09|0.07|N|O|1998-01-08|1997-12-04|1998-02-07|DELIVER IN PERSON|MAIL|ly careful foxes are slyly. instructions ab| +5710|175653|5654|3|47|81246.55|0.01|0.05|N|O|1997-12-07|1997-12-06|1998-01-06|DELIVER IN PERSON|REG AIR|ending multipli| +5710|184492|2047|4|20|31529.80|0.09|0.02|N|O|1997-10-30|1997-11-03|1997-11-09|TAKE BACK RETURN|TRUCK| boldly ironic, ironic platelets? foxes de| +5710|151045|1046|5|50|54802.00|0.06|0.03|N|O|1997-12-26|1997-10-18|1997-12-28|DELIVER IN PERSON|AIR|d, express asymp| +5710|1334|6335|6|44|54354.52|0.06|0.04|N|O|1997-12-15|1997-11-09|1998-01-09|DELIVER IN PERSON|FOB|lly regular foxes cajole quickly ca| +5711|149479|4508|1|25|38211.75|0.04|0.04|N|O|1996-08-08|1996-07-16|1996-09-03|DELIVER IN PERSON|AIR|hrough the quick| +5711|92958|486|2|17|33166.15|0.08|0.02|N|O|1996-08-24|1996-08-09|1996-09-13|DELIVER IN PERSON|RAIL|posits use alongside of the eve| +5711|139203|9204|3|22|27328.40|0.07|0.08|N|O|1996-07-06|1996-06-28|1996-07-23|DELIVER IN PERSON|FOB|rts detect silent accoun| +5711|183136|3137|4|27|32916.51|0.07|0.08|N|O|1996-06-02|1996-06-30|1996-06-26|TAKE BACK RETURN|RAIL|oach slyly final asymptotes. regular, i| +5711|164707|2256|5|5|8858.50|0.02|0.04|N|O|1996-06-17|1996-07-30|1996-06-19|TAKE BACK RETURN|REG AIR|fully even theodolites. final, fina| +5711|19913|9914|6|39|71483.49|0.02|0.08|N|O|1996-06-24|1996-08-13|1996-07-19|COLLECT COD|FOB|leep slyly according to t| +5736|70897|898|1|11|20546.79|0.05|0.06|N|O|1996-04-22|1996-04-07|1996-05-02|COLLECT COD|TRUCK|ounts slee| +5736|151383|8929|2|24|34425.12|0.02|0.04|N|O|1996-02-13|1996-04-05|1996-03-09|DELIVER IN PERSON|FOB|lites serve sly| +5736|78099|5621|3|12|12925.08|0.06|0.08|N|O|1996-03-15|1996-03-31|1996-04-01|NONE|TRUCK| ideas. furiously furious instructions| +5737|45221|5222|1|40|46648.80|0.00|0.05|A|F|1993-06-24|1993-06-26|1993-07-04|DELIVER IN PERSON|AIR|after the requests. even deposi| +5738|110016|2528|1|25|25650.25|0.02|0.06|R|F|1993-05-05|1993-06-11|1993-05-10|DELIVER IN PERSON|MAIL| sometimes regular account| +5738|26211|8714|2|28|31841.88|0.00|0.02|A|F|1993-07-12|1993-05-04|1993-08-07|NONE|RAIL|ending, enticing theodolites haggle bl| +5738|120210|7747|3|48|59050.08|0.07|0.00|R|F|1993-05-26|1993-05-23|1993-06-13|DELIVER IN PERSON|TRUCK|pecial requests. final, silent theodolit| +5738|152980|8011|4|31|63022.38|0.02|0.00|A|F|1993-07-21|1993-05-30|1993-07-29|DELIVER IN PERSON|FOB|s affix caref| +5738|131399|3913|5|16|22886.24|0.09|0.00|A|F|1993-07-24|1993-05-05|1993-08-21|COLLECT COD|MAIL|asymptotes c| +5738|10481|482|6|14|19480.72|0.05|0.02|A|F|1993-06-30|1993-06-21|1993-07-09|NONE|AIR|ctions. quickly regular instruct| +5738|149660|4689|7|12|20515.92|0.10|0.00|R|F|1993-05-18|1993-06-12|1993-06-10|TAKE BACK RETURN|REG AIR| wake quickly final requests. slyly | +5739|131604|6631|1|27|44161.20|0.08|0.08|A|F|1994-01-23|1993-11-30|1994-01-27|COLLECT COD|RAIL|uests. accounts wake across the express, f| +5739|58830|6346|2|40|71553.20|0.09|0.07|R|F|1993-12-11|1993-11-04|1993-12-17|COLLECT COD|REG AIR|tions eat. foxes against th| +5740|1306|1307|1|4|4829.20|0.01|0.04|R|F|1994-04-20|1994-06-13|1994-04-28|NONE|AIR|e carefully even deposits. c| +5740|134458|9485|2|41|61190.45|0.05|0.04|A|F|1994-06-04|1994-05-07|1994-06-24|COLLECT COD|AIR|ully ironic| +5740|35181|5182|3|36|40182.48|0.07|0.07|R|F|1994-06-21|1994-05-31|1994-07-10|DELIVER IN PERSON|RAIL|y quickly bold re| +5741|97374|4902|1|43|58968.91|0.03|0.04|A|F|1992-06-20|1992-07-18|1992-07-15|COLLECT COD|RAIL|lly express dependencies boost along| +5742|13903|1407|1|29|52690.10|0.05|0.06|R|F|1993-02-28|1993-01-31|1993-03-29|TAKE BACK RETURN|SHIP|to the sometimes bold deposits. express, ex| +5742|60226|2733|2|26|30841.72|0.01|0.00|A|F|1993-03-04|1993-03-01|1993-04-03|NONE|RAIL|ng the silently bold de| +5742|7288|7289|3|2|2390.56|0.02|0.06|A|F|1993-03-04|1993-03-16|1993-03-22|DELIVER IN PERSON|MAIL|ependencies| +5743|87522|7523|1|45|67928.40|0.09|0.00|R|F|1992-06-15|1992-07-27|1992-07-14|DELIVER IN PERSON|TRUCK|ites nag quickly. furiously fina| +5743|178062|3097|2|30|34201.80|0.01|0.08|A|F|1992-07-10|1992-07-07|1992-07-14|DELIVER IN PERSON|TRUCK|accounts are slyly according to th| +5743|71249|1250|3|4|4880.96|0.07|0.05|A|F|1992-08-10|1992-06-07|1992-09-02|NONE|SHIP| furiously silent d| +5743|71489|1490|4|42|61340.16|0.05|0.00|A|F|1992-07-31|1992-07-13|1992-08-16|NONE|SHIP|iously even asymptotes. blithe| +5743|112414|4926|5|39|55629.99|0.03|0.05|R|F|1992-08-26|1992-06-18|1992-09-24|DELIVER IN PERSON|TRUCK|usly final| +5743|139956|7496|6|38|75846.10|0.03|0.06|A|F|1992-07-13|1992-07-17|1992-08-11|COLLECT COD|SHIP|ar asymptotes are. quick| +5743|40002|7515|7|6|5652.00|0.08|0.03|A|F|1992-08-18|1992-07-08|1992-09-16|NONE|SHIP|ounts hinder above the fluffily reg| +5768|101687|1688|1|39|65858.52|0.10|0.01|N|O|1995-11-03|1995-09-17|1995-11-20|COLLECT COD|FOB|pinto beans haggle | +5768|40688|3193|2|20|32573.60|0.01|0.01|N|O|1995-09-01|1995-08-19|1995-09-17|COLLECT COD|MAIL|y final package| +5768|41900|9413|3|9|16577.10|0.05|0.02|N|O|1995-07-29|1995-10-12|1995-08-26|DELIVER IN PERSON|AIR| special accounts boost slyly. depo| +5768|2824|325|4|3|5180.46|0.09|0.01|N|O|1995-07-21|1995-09-09|1995-07-27|TAKE BACK RETURN|RAIL|deas are slyly slyly bold ideas. bold acc| +5768|55394|2910|5|8|10795.12|0.06|0.02|N|O|1995-08-07|1995-10-12|1995-08-18|COLLECT COD|REG AIR|uriously after the final, r| +5768|198389|909|6|9|13386.42|0.00|0.04|N|O|1995-11-15|1995-10-07|1995-11-27|DELIVER IN PERSON|TRUCK|e blithely silent accounts integrate among| +5768|116868|4402|7|7|13194.02|0.02|0.02|N|O|1995-10-03|1995-09-24|1995-10-14|TAKE BACK RETURN|FOB|pendencies cajole iro| +5769|199822|4861|1|24|46123.68|0.05|0.03|R|F|1994-02-16|1994-01-30|1994-02-19|DELIVER IN PERSON|FOB|ag carefully among the busy dependenci| +5769|195997|5998|2|48|100463.52|0.08|0.07|A|F|1994-01-03|1994-01-13|1994-01-05|DELIVER IN PERSON|MAIL|ctions. slyly final d| +5769|119240|1752|3|29|36517.96|0.01|0.08|R|F|1994-01-20|1994-02-27|1994-01-29|TAKE BACK RETURN|AIR|he quickly even accounts. unusual| +5769|53577|1093|4|10|15305.70|0.06|0.08|A|F|1994-01-14|1994-03-02|1994-02-09|COLLECT COD|RAIL|to beans haggle. slyly ironic accounts b| +5769|61214|1215|5|22|25854.62|0.00|0.00|R|F|1993-12-11|1994-02-28|1993-12-14|TAKE BACK RETURN|AIR|ts. slyly permanent dependencies must have| +5770|17914|2917|1|16|29310.56|0.07|0.01|A|F|1994-03-26|1994-05-13|1994-03-30|NONE|RAIL|ges. special instructions about | +5770|76860|1875|2|17|31226.62|0.08|0.06|R|F|1994-05-17|1994-05-22|1994-06-13|COLLECT COD|RAIL|ng, daring deposits. final foxes cajol| +5770|181252|3771|3|29|38664.25|0.01|0.07|R|F|1994-04-07|1994-04-15|1994-05-01|NONE|FOB|unts are carefully a| +5770|91059|8587|4|1|1050.05|0.07|0.06|R|F|1994-06-22|1994-05-15|1994-07-18|COLLECT COD|REG AIR| along the requests-- furiously regular pin| +5770|14095|4096|5|13|13118.17|0.07|0.08|R|F|1994-06-14|1994-04-22|1994-07-02|NONE|TRUCK|he final r| +5770|94493|2021|6|35|52062.15|0.04|0.05|A|F|1994-04-18|1994-03-25|1994-05-09|TAKE BACK RETURN|RAIL| slyly thin pac| +5771|152245|4761|1|6|7783.44|0.07|0.00|N|O|1996-02-25|1996-03-12|1996-03-24|NONE|REG AIR|cajole furiously after the ironic| +5771|167160|9677|2|42|51540.72|0.08|0.00|N|O|1996-02-06|1996-03-25|1996-02-26|DELIVER IN PERSON|TRUCK|ke bold pinto beans. pending pinto beans h| +5771|45092|2605|3|10|10370.90|0.09|0.07|N|O|1996-01-21|1996-02-16|1996-02-16|NONE|SHIP|en, ironic dinos. p| +5771|60761|5774|4|38|65426.88|0.09|0.02|N|O|1996-03-09|1996-02-07|1996-04-02|COLLECT COD|RAIL|he grouches. blithely final reques| +5771|197489|7490|5|21|33316.08|0.00|0.07|N|O|1996-03-19|1996-03-17|1996-03-27|TAKE BACK RETURN|RAIL|blithely express packages sleep| +5772|140938|5967|1|45|89051.85|0.05|0.03|N|O|1996-11-18|1996-10-13|1996-11-23|DELIVER IN PERSON|REG AIR|ly regular deposits are| +5772|143042|3043|2|13|14105.52|0.01|0.05|N|O|1996-09-05|1996-11-06|1996-10-05|NONE|RAIL|ages. pending pinto beans nag boldly agains| +5772|106196|3727|3|3|3606.57|0.10|0.05|N|O|1996-11-12|1996-10-28|1996-12-10|NONE|FOB|special instructions. quick p| +5772|29793|2296|4|8|13782.32|0.00|0.00|N|O|1996-10-29|1996-09-21|1996-11-09|NONE|FOB|usly according to the slyly| +5772|116250|1273|5|7|8863.75|0.03|0.00|N|O|1996-11-11|1996-10-05|1996-12-02|NONE|SHIP|ously final foxes. bold p| +5773|30782|783|1|7|11989.46|0.01|0.07|A|F|1994-08-25|1994-08-30|1994-09-04|DELIVER IN PERSON|REG AIR|posits. carefull| +5773|150861|862|2|12|22942.32|0.07|0.00|R|F|1994-07-28|1994-09-19|1994-07-31|NONE|SHIP|es. accounts are flu| +5773|112944|7967|3|22|43052.68|0.04|0.08|R|F|1994-07-26|1994-09-10|1994-08-19|NONE|REG AIR|gifts kindle blithely sly| +5773|45313|7818|4|21|26424.51|0.03|0.04|R|F|1994-07-29|1994-09-18|1994-08-10|NONE|REG AIR|oxes-- quickly bold theod| +5773|164230|6747|5|14|18119.22|0.01|0.04|A|F|1994-10-21|1994-09-28|1994-11-18|NONE|REG AIR|efully regular requ| +5774|154158|4159|1|21|25455.15|0.08|0.05|A|F|1992-07-10|1992-08-26|1992-07-29|DELIVER IN PERSON|RAIL| carefully regular pin| +5775|141093|1094|1|37|41961.33|0.05|0.03|N|O|1997-04-13|1997-04-07|1997-04-25|TAKE BACK RETURN|SHIP|dolphins. blithe deposits nag caref| +5775|135710|737|2|21|36659.91|0.04|0.03|N|O|1997-02-17|1997-03-27|1997-02-19|NONE|FOB|ular theodolites affix ideas. | +5775|76503|9011|3|2|2959.00|0.04|0.02|N|O|1997-03-07|1997-03-30|1997-03-12|TAKE BACK RETURN|REG AIR|l pinto beans. carefully ironic accoun| +5775|173934|6452|4|13|26103.09|0.07|0.05|N|O|1997-06-05|1997-04-16|1997-06-08|DELIVER IN PERSON|TRUCK|ial ideas are blith| +5775|104862|2393|5|4|7467.44|0.02|0.06|N|O|1997-02-21|1997-04-29|1997-03-02|COLLECT COD|AIR|sleep furiously. furious| +5775|14517|2021|6|48|68712.48|0.03|0.02|N|O|1997-04-01|1997-04-10|1997-04-28|TAKE BACK RETURN|AIR|ackages cajole furiously. slyly| +5775|178132|5684|7|8|9681.04|0.01|0.06|N|O|1997-05-31|1997-03-24|1997-06-26|DELIVER IN PERSON|REG AIR|inal requests--| +5800|60747|5760|1|28|47816.72|0.03|0.01|A|F|1992-09-05|1992-11-01|1992-09-15|DELIVER IN PERSON|TRUCK|uriously ironic deposit| +5800|173758|1310|2|20|36635.00|0.00|0.01|A|F|1992-10-17|1992-10-30|1992-11-03|DELIVER IN PERSON|REG AIR|lyly speci| +5800|142914|2915|3|20|39138.20|0.01|0.02|R|F|1992-09-05|1992-10-23|1992-09-18|DELIVER IN PERSON|SHIP|lithely final asymptotes. caref| +5800|138907|3934|4|35|68106.50|0.08|0.07|A|F|1992-09-29|1992-10-07|1992-10-09|DELIVER IN PERSON|FOB|uickly even packages cajole| +5801|174758|2310|1|29|53149.75|0.04|0.07|R|F|1992-03-03|1992-05-04|1992-03-08|COLLECT COD|MAIL|hinly special packages nag. e| +5801|146362|8877|2|11|15491.96|0.09|0.00|R|F|1992-02-27|1992-04-14|1992-03-04|TAKE BACK RETURN|FOB|ccounts are fur| +5801|89876|4893|3|24|44780.88|0.00|0.04|A|F|1992-02-16|1992-04-20|1992-02-26|COLLECT COD|FOB|ding dependencies. bold foxes whi| +5801|145138|7653|4|13|15380.69|0.08|0.08|R|F|1992-06-02|1992-03-18|1992-07-02|COLLECT COD|FOB|carefully r| +5801|133594|6108|5|27|43944.93|0.04|0.02|R|F|1992-02-09|1992-04-13|1992-02-23|NONE|REG AIR|ackages. quickly bold | +5801|98916|6444|6|34|65106.94|0.00|0.01|R|F|1992-02-15|1992-04-27|1992-03-08|DELIVER IN PERSON|AIR|lent platelets promise through the slowly| +5801|72788|7803|7|34|59866.52|0.07|0.04|R|F|1992-02-21|1992-04-23|1992-03-12|COLLECT COD|FOB|nag pending courts| +5802|139304|9305|1|2|2686.60|0.06|0.06|N|O|1997-03-03|1997-03-12|1997-03-07|TAKE BACK RETURN|SHIP|ke carefully even packages. blithely expr| +5802|67161|9668|2|9|10153.44|0.00|0.06|N|O|1997-03-29|1997-02-08|1997-04-16|DELIVER IN PERSON|TRUCK|ites might kindle fluffily around the| +5802|171503|6538|3|12|18894.00|0.09|0.05|N|O|1997-04-13|1997-01-25|1997-05-09|COLLECT COD|AIR|le furiously about the ca| +5803|18713|1215|1|45|73426.95|0.08|0.03|N|O|1998-04-05|1998-06-29|1998-04-14|TAKE BACK RETURN|RAIL| deposits. packages are fluffily. furiousl| +5803|95100|2628|2|38|41613.80|0.06|0.07|N|O|1998-04-24|1998-05-20|1998-05-17|COLLECT COD|REG AIR|ly final ideas boost fu| +5803|135183|7697|3|13|15836.34|0.10|0.02|N|O|1998-05-04|1998-06-23|1998-05-17|NONE|TRUCK|al accounts solve daringly furiou| +5803|15514|517|4|12|17154.12|0.07|0.03|N|O|1998-05-15|1998-05-15|1998-06-07|NONE|MAIL|ular, regular accounts cajole blithe| +5803|137427|7428|5|22|32217.24|0.01|0.02|N|O|1998-04-10|1998-05-20|1998-04-29|DELIVER IN PERSON|FOB|odolites thrash. regula| +5803|128131|5668|6|8|9273.04|0.04|0.05|N|O|1998-06-25|1998-06-07|1998-06-28|DELIVER IN PERSON|FOB| according to the unusual, ev| +5803|94564|4565|7|45|70135.20|0.10|0.07|N|O|1998-06-10|1998-06-05|1998-06-29|TAKE BACK RETURN|REG AIR|xpress courts boost final she| +5804|123343|880|1|28|38257.52|0.00|0.07|N|O|1998-01-03|1998-01-11|1998-01-16|DELIVER IN PERSON|RAIL|ave to wake slyly. quickly idle account| +5804|14448|1952|2|34|46322.96|0.09|0.05|N|O|1997-12-12|1998-01-04|1997-12-31|TAKE BACK RETURN|FOB|lly ironic accounts. pending deposits | +5804|19232|9233|3|8|9209.84|0.07|0.03|N|O|1997-12-12|1997-12-30|1997-12-26|DELIVER IN PERSON|FOB|ual hockey players| +5804|18615|3618|4|22|33739.42|0.06|0.03|N|O|1997-10-31|1997-11-17|1997-11-27|DELIVER IN PERSON|AIR| the slyly pending deposits. pend| +5805|113289|3290|1|18|23441.04|0.03|0.03|R|F|1994-07-14|1994-08-31|1994-08-06|TAKE BACK RETURN|FOB|iers. pending Tiresias h| +5806|176617|6618|1|26|44033.86|0.04|0.01|N|O|1998-05-08|1998-07-14|1998-05-24|TAKE BACK RETURN|SHIP|refully unusual, even instruct| +5806|185249|2804|2|42|56038.08|0.10|0.05|N|O|1998-08-12|1998-06-26|1998-08-20|NONE|MAIL|riously regular deposits. fluffily reg| +5806|66332|6333|3|48|62319.84|0.03|0.04|N|O|1998-05-09|1998-06-30|1998-05-10|COLLECT COD|RAIL|fluffily alongside o| +5806|41595|6604|4|32|49170.88|0.09|0.06|N|O|1998-07-28|1998-06-13|1998-08-12|NONE|FOB|riously against the furiously bold soma| +5806|82505|30|5|42|62475.00|0.06|0.06|N|O|1998-06-16|1998-06-03|1998-06-24|DELIVER IN PERSON|TRUCK| furiously ironic theodolites cajol| +5807|129749|7286|1|37|65813.38|0.02|0.07|R|F|1992-08-17|1992-07-26|1992-09-16|DELIVER IN PERSON|REG AIR|l dolphins grow furiously according | +5807|82078|2079|2|42|44522.94|0.01|0.00|R|F|1992-06-22|1992-07-28|1992-07-06|COLLECT COD|AIR|ven deposits sleep at the pending ac| +5832|107477|7478|1|16|23751.52|0.05|0.01|N|O|1997-05-08|1997-04-02|1997-05-23|NONE|REG AIR|lly ironic dugouts. slyly| +5832|162302|7335|2|43|58664.90|0.06|0.01|N|O|1997-05-12|1997-02-21|1997-05-13|DELIVER IN PERSON|REG AIR|ackages doubt carefully. r| +5832|7399|4900|3|21|27434.19|0.03|0.03|N|O|1997-03-23|1997-02-23|1997-04-01|DELIVER IN PERSON|TRUCK|haggle car| +5832|144404|9433|4|24|34761.60|0.10|0.05|N|O|1997-03-11|1997-03-10|1997-03-31|TAKE BACK RETURN|MAIL|aggle unusual hockey players. p| +5833|83509|1034|1|48|71640.00|0.08|0.05|R|F|1995-06-06|1995-04-16|1995-06-16|COLLECT COD|MAIL|theodolites. waters breach among t| +5833|126944|4481|2|40|78837.60|0.00|0.08|R|F|1995-04-22|1995-04-19|1995-04-28|TAKE BACK RETURN|TRUCK|ily daring forges. a| +5833|141791|6820|3|10|18327.90|0.05|0.03|R|F|1995-05-16|1995-05-15|1995-05-28|NONE|RAIL|ornis. blithely bold accounts alongs| +5833|71655|6670|4|50|81332.50|0.03|0.03|A|F|1995-05-11|1995-05-17|1995-06-04|NONE|REG AIR|o beans. blithe| +5833|93490|3491|5|46|68240.54|0.02|0.00|N|O|1995-07-01|1995-05-17|1995-07-23|DELIVER IN PERSON|AIR|structions inte| +5833|72052|2053|6|30|30721.50|0.02|0.00|R|F|1995-05-18|1995-06-03|1995-06-11|TAKE BACK RETURN|RAIL|round the regular| +5834|158385|5931|1|24|34641.12|0.02|0.07|N|O|1997-12-18|1997-10-04|1998-01-04|COLLECT COD|RAIL|efully slowly even sheaves. unusual, iro| +5834|173648|3649|2|17|29267.88|0.05|0.04|N|O|1997-10-09|1997-11-11|1997-10-13|DELIVER IN PERSON|TRUCK| final, regular accounts are furiou| +5834|88092|8093|3|7|7560.63|0.04|0.02|N|O|1997-09-04|1997-11-08|1997-09-12|TAKE BACK RETURN|SHIP|sits cajole slyly carefully quiet a| +5834|156653|4199|4|4|6838.60|0.00|0.05|N|O|1997-11-21|1997-11-03|1997-12-01|TAKE BACK RETURN|TRUCK|inal depos| +5834|60166|7685|5|27|30406.32|0.01|0.04|N|O|1997-12-20|1997-11-06|1997-12-25|DELIVER IN PERSON|TRUCK|e of the express, even package| +5835|35851|858|1|37|66113.45|0.10|0.08|A|F|1992-04-03|1992-04-19|1992-04-28|NONE|TRUCK|en accounts shal| +5835|141679|1680|2|48|82592.16|0.04|0.06|A|F|1992-03-13|1992-03-26|1992-04-04|DELIVER IN PERSON|AIR|ainst the even deposits. carefully e| +5835|195892|5893|3|24|47709.36|0.10|0.02|R|F|1992-03-31|1992-04-09|1992-04-27|TAKE BACK RETURN|TRUCK| slyly fluffily pending excuses. regular | +5835|142422|4937|4|28|41003.76|0.05|0.07|R|F|1992-04-04|1992-03-18|1992-04-12|COLLECT COD|MAIL|nal deposits detect. furiously unusu| +5835|82150|4659|5|39|44153.85|0.10|0.06|R|F|1992-03-24|1992-03-07|1992-03-26|COLLECT COD|AIR|ly regular instructions are q| +5835|87158|7159|6|33|37789.95|0.01|0.08|A|F|1992-05-19|1992-03-20|1992-05-31|NONE|TRUCK|st the regular requests wake fur| +5836|143750|1293|1|8|14350.00|0.00|0.03|A|F|1994-05-23|1994-04-19|1994-05-25|TAKE BACK RETURN|MAIL|ual accounts. quickly final reques| +5836|1426|1427|2|13|17256.46|0.02|0.00|R|F|1994-04-07|1994-05-12|1994-04-24|COLLECT COD|SHIP|e requests wake furio| +5836|156459|1490|3|11|16669.95|0.09|0.04|A|F|1994-06-11|1994-05-27|1994-06-15|TAKE BACK RETURN|SHIP|ly carefully ironic ideas. fi| +5837|49053|6566|1|36|36073.80|0.09|0.03|A|F|1994-06-18|1994-06-28|1994-06-20|NONE|SHIP| bold account| +5837|22103|9610|2|6|6150.60|0.03|0.08|A|F|1994-08-28|1994-07-08|1994-09-25|NONE|FOB|are slyly blithely bold courts| +5837|74736|2258|3|21|35925.33|0.00|0.00|R|F|1994-08-18|1994-07-16|1994-09-17|DELIVER IN PERSON|AIR|lites haggle ag| +5837|71473|3981|4|30|43334.10|0.09|0.05|A|F|1994-07-30|1994-08-19|1994-08-05|COLLECT COD|AIR|lly final asy| +5838|175307|2859|1|23|31792.90|0.10|0.05|A|F|1995-03-13|1995-04-02|1995-04-11|TAKE BACK RETURN|REG AIR| bold accounts cajole blithely furiou| +5839|194412|1970|1|28|42179.48|0.00|0.08|N|O|1997-03-31|1997-01-22|1997-04-18|COLLECT COD|FOB|thely about the ironic, regu| +5839|78420|5942|2|36|50343.12|0.00|0.06|N|O|1997-02-16|1997-01-18|1997-02-26|COLLECT COD|FOB|usly ironic ideas poach slyl| +5864|50069|5080|1|12|12228.72|0.03|0.06|A|F|1992-11-05|1992-11-10|1992-11-07|NONE|RAIL|gs. daringly express pl| +5864|104597|4598|2|50|80079.50|0.02|0.08|R|F|1992-11-05|1992-10-26|1992-11-08|COLLECT COD|RAIL| the final depths. qui| +5864|152926|7957|3|39|77177.88|0.04|0.08|A|F|1992-12-01|1992-11-17|1992-12-02|DELIVER IN PERSON|TRUCK|mong the regular, pe| +5864|20785|8292|4|16|27292.48|0.00|0.01|A|F|1992-09-07|1992-10-30|1992-09-24|NONE|AIR|ag thinly; silent, final pin| +5864|125755|780|5|35|62326.25|0.04|0.07|A|F|1992-10-29|1992-11-18|1992-11-06|DELIVER IN PERSON|RAIL| carefully carefully iro| +5864|159212|6758|6|25|31780.25|0.04|0.02|R|F|1992-12-20|1992-10-22|1992-12-31|DELIVER IN PERSON|FOB|ular platelets cajole aft| +5865|125222|5223|1|29|36169.38|0.02|0.03|N|O|1998-04-10|1998-02-02|1998-04-30|TAKE BACK RETURN|REG AIR|as doubt busily above the r| +5865|1710|1711|2|8|12893.68|0.04|0.02|N|O|1998-04-10|1998-02-22|1998-04-26|DELIVER IN PERSON|AIR|st according to the unusual deposits. i| +5865|137251|9765|3|28|36071.00|0.08|0.00|N|O|1998-01-18|1998-03-05|1998-02-16|NONE|SHIP|slyly express requests. slyly | +5865|174779|9814|4|8|14830.16|0.06|0.07|N|O|1997-12-30|1998-03-17|1998-01-12|TAKE BACK RETURN|RAIL|ckages. ironic foxes wake. idly regular| +5866|736|5737|1|23|37644.79|0.09|0.01|R|F|1993-03-03|1993-03-29|1993-03-04|TAKE BACK RETURN|REG AIR| accounts sleep| +5866|155230|2776|2|46|59120.58|0.08|0.02|A|F|1993-04-20|1993-03-22|1993-05-01|NONE|TRUCK|hily according to the ironic | +5867|173737|1289|1|11|19918.03|0.00|0.02|N|O|1996-01-27|1995-12-20|1996-02-01|NONE|AIR| dependencies. furiously | +5867|190212|7770|2|22|28648.62|0.05|0.03|N|O|1995-12-30|1995-12-15|1996-01-25|COLLECT COD|SHIP|al requests. never ironic deposits sle| +5867|83254|5763|3|23|28456.75|0.06|0.03|N|O|1996-02-18|1996-01-14|1996-03-13|TAKE BACK RETURN|RAIL|egular ideas cajole careful| +5868|43096|8105|1|15|15586.35|0.07|0.01|A|F|1993-07-23|1993-05-29|1993-07-30|COLLECT COD|TRUCK| accounts. blithely bol| +5868|108319|8320|2|7|9291.17|0.08|0.01|A|F|1993-04-12|1993-06-09|1993-04-24|TAKE BACK RETURN|TRUCK|stealthy orbits. quickly | +5868|109172|9173|3|11|12992.87|0.06|0.02|A|F|1993-04-29|1993-06-01|1993-05-16|COLLECT COD|AIR|s. final platelets was | +5868|50484|8000|4|9|12910.32|0.05|0.08|A|F|1993-06-29|1993-06-20|1993-07-27|DELIVER IN PERSON|REG AIR|y around the carefully speci| +5869|47343|7344|1|12|15484.08|0.01|0.07|R|F|1992-06-05|1992-07-08|1992-06-27|TAKE BACK RETURN|FOB|ironic account| +5869|80150|151|2|31|35034.65|0.07|0.00|A|F|1992-08-12|1992-07-14|1992-08-13|DELIVER IN PERSON|SHIP|lyly silent deposits. unusual p| +5869|72054|2055|3|9|9234.45|0.10|0.03|A|F|1992-06-28|1992-06-06|1992-07-18|NONE|SHIP| special, expr| +5869|3736|1237|4|3|4919.19|0.05|0.02|A|F|1992-05-29|1992-06-23|1992-06-10|TAKE BACK RETURN|RAIL|nts. slyly bold foxes according to t| +5870|155672|5673|1|4|6910.68|0.00|0.01|N|O|1997-04-22|1997-01-29|1997-05-20|DELIVER IN PERSON|FOB|r, ironic accounts | +5871|33277|5781|1|38|45990.26|0.00|0.07|N|O|1997-08-01|1997-10-05|1997-08-29|TAKE BACK RETURN|AIR|e blithely. carefully ironic deposits are b| +5871|75416|7924|2|20|27828.20|0.09|0.00|N|O|1997-09-08|1997-09-26|1997-10-08|TAKE BACK RETURN|AIR|jole above the slyly ironic | +5871|103524|8545|3|25|38188.00|0.03|0.01|N|O|1997-09-10|1997-09-06|1997-09-22|DELIVER IN PERSON|FOB| ironic acco| +5871|121344|1345|4|50|68267.00|0.08|0.07|N|O|1997-11-11|1997-10-13|1997-12-09|DELIVER IN PERSON|SHIP|sts sleep quietly. slyly even de| +5896|116177|8689|1|1|1193.17|0.10|0.03|R|F|1993-04-09|1993-05-25|1993-04-17|NONE|RAIL| furiously p| +5896|182380|4899|2|12|17548.56|0.06|0.03|A|F|1993-05-19|1993-04-18|1993-06-17|TAKE BACK RETURN|TRUCK|p. ironic th| +5896|45276|2789|3|44|53735.88|0.01|0.06|A|F|1993-06-25|1993-05-20|1993-07-19|COLLECT COD|REG AIR|ironic ideas. blithely slow requests doz| +5896|143547|8576|4|26|41354.04|0.07|0.04|R|F|1993-05-10|1993-05-26|1993-05-22|DELIVER IN PERSON|REG AIR| fluffily. blithely| +5896|190240|7798|5|42|55870.08|0.08|0.00|A|F|1993-06-21|1993-04-19|1993-07-05|COLLECT COD|MAIL|ending packages. fluffily expr| +5897|170560|3078|1|33|53808.48|0.01|0.07|N|O|1996-12-10|1996-11-29|1996-12-16|NONE|RAIL|even accounts.| +5898|189257|4294|1|36|48465.00|0.01|0.00|N|O|1996-08-09|1996-05-29|1996-08-24|NONE|RAIL|g requests sleep slyly s| +5898|40185|2690|2|15|16877.70|0.07|0.01|N|O|1996-08-05|1996-05-20|1996-08-17|NONE|AIR|ironic pac| +5899|182110|4629|1|47|56029.17|0.08|0.01|A|F|1993-04-21|1993-02-27|1993-05-04|DELIVER IN PERSON|SHIP| slyly iro| +5899|112320|4832|2|34|45298.88|0.05|0.08|A|F|1993-01-25|1993-03-21|1993-02-17|NONE|SHIP|es mold carefully furiously thin requests! | +5899|145725|8240|3|49|86765.28|0.07|0.06|R|F|1993-04-06|1993-04-14|1993-04-28|DELIVER IN PERSON|SHIP|braids are final, f| +5899|192557|115|4|12|19794.60|0.02|0.08|A|F|1993-03-31|1993-02-25|1993-04-11|TAKE BACK RETURN|RAIL|posits. ca| +5900|16569|1572|1|34|50509.04|0.03|0.05|R|F|1992-02-17|1992-03-13|1992-03-08|DELIVER IN PERSON|AIR| instructio| +5900|67071|4590|2|15|15571.05|0.04|0.04|R|F|1992-01-31|1992-03-04|1992-03-01|NONE|RAIL|nto beans lose fur| +5900|55563|3079|3|30|45556.80|0.04|0.04|A|F|1992-01-23|1992-03-25|1992-01-25|DELIVER IN PERSON|SHIP|ely bold excuses cajole furiously bold | +5900|39000|1504|4|48|45072.00|0.09|0.00|R|F|1992-03-05|1992-02-29|1992-04-02|NONE|TRUCK|the theodolites. slyly fi| +5900|56919|9425|5|11|20635.01|0.08|0.02|R|F|1992-02-03|1992-03-29|1992-02-05|COLLECT COD|SHIP|nic foxes nag carefully. theodolit| +5900|22813|5316|6|40|69432.40|0.04|0.08|R|F|1992-02-15|1992-02-23|1992-02-28|DELIVER IN PERSON|RAIL|tructions print blithely unusual the| +5901|12574|5076|1|1|1486.57|0.01|0.07|A|F|1995-04-21|1995-03-06|1995-05-21|DELIVER IN PERSON|FOB|-ray around the bold, bold deposits| +5901|122300|4813|2|50|66115.00|0.09|0.01|R|F|1995-02-03|1995-03-03|1995-02-18|NONE|FOB|along the furiou| +5901|83439|964|3|34|48362.62|0.02|0.00|R|F|1995-03-01|1995-03-18|1995-03-24|COLLECT COD|FOB|deposits haggle. quickly bold theod| +5902|127276|7277|1|45|58647.15|0.03|0.01|N|O|1995-08-02|1995-07-02|1995-08-23|NONE|MAIL|counts wake fluffily quickly ironic pi| +5902|121098|1099|2|10|11190.90|0.07|0.02|N|O|1995-08-20|1995-07-26|1995-09-03|NONE|AIR| excuses. carefully regular ideas| +5902|92985|2986|3|26|51427.48|0.08|0.07|N|O|1995-06-20|1995-06-21|1995-06-21|COLLECT COD|FOB|ndencies. regular packages haggle sly| +5902|198087|607|4|7|8295.56|0.01|0.06|R|F|1995-05-17|1995-08-05|1995-06-10|COLLECT COD|AIR|egular packages. fu| +5902|38269|773|5|8|9658.08|0.03|0.08|R|F|1995-05-26|1995-07-28|1995-06-04|COLLECT COD|AIR|h slyly furiously bold ideas. furiously| +5902|171563|6598|6|22|35960.32|0.09|0.01|N|O|1995-09-07|1995-06-10|1995-09-13|DELIVER IN PERSON|FOB|nusual pinto beans. final, bold decoys al| +5902|53098|614|7|35|36788.15|0.07|0.02|N|O|1995-08-07|1995-07-05|1995-08-10|TAKE BACK RETURN|MAIL|ironic ideas ha| +5903|12513|5015|1|21|29935.71|0.04|0.08|N|O|1996-10-01|1996-10-12|1996-10-09|COLLECT COD|RAIL|fully express deposits play sl| +5903|104869|9890|2|11|20612.46|0.02|0.01|N|O|1996-09-19|1996-10-08|1996-09-20|NONE|RAIL|r asymptotes are finally requests. e| +5928|108350|8351|1|25|33958.75|0.04|0.00|A|F|1993-12-08|1993-10-24|1993-12-17|NONE|RAIL|. final packages haggle. f| +5928|36360|1367|2|22|28519.92|0.09|0.06|A|F|1993-10-06|1993-12-03|1993-10-09|TAKE BACK RETURN|FOB|ithely final instructions. packages caj| +5928|88508|8509|3|42|62853.00|0.04|0.00|R|F|1993-10-31|1993-11-06|1993-11-15|NONE|RAIL|thely bold requests. slyly re| +5928|147737|252|4|3|5354.19|0.03|0.07|R|F|1993-10-08|1993-10-20|1993-10-15|DELIVER IN PERSON|TRUCK|eas. furiously even packages | +5929|24316|9321|1|36|44651.16|0.01|0.08|R|F|1994-10-06|1994-10-06|1994-10-07|DELIVER IN PERSON|FOB|the ruthlessly ruthless a| +5929|70928|5943|2|5|9494.60|0.08|0.01|R|F|1994-08-28|1994-10-05|1994-09-07|TAKE BACK RETURN|SHIP| even packages are alongside of the fluff| +5929|81351|3860|3|8|10658.80|0.07|0.03|A|F|1994-11-11|1994-10-26|1994-11-29|NONE|MAIL|dolites. regular deposits breach slyly a| +5929|64653|2172|4|38|61470.70|0.08|0.07|A|F|1994-10-05|1994-09-01|1994-10-13|TAKE BACK RETURN|TRUCK|refully regular depos| +5929|20481|2984|5|22|30832.56|0.01|0.08|A|F|1994-10-16|1994-10-22|1994-10-23|COLLECT COD|SHIP|eep careful| +5929|14394|1898|6|34|44485.26|0.03|0.03|R|F|1994-09-07|1994-10-23|1994-09-12|NONE|AIR|instructions| +5929|113772|1306|7|18|32143.86|0.08|0.04|R|F|1994-09-08|1994-10-06|1994-10-08|COLLECT COD|RAIL|aringly pendin| +5930|164676|7193|1|23|40035.41|0.01|0.06|N|O|1996-04-12|1996-03-22|1996-04-26|COLLECT COD|REG AIR|y bold pinto beans sleep. | +5930|109044|6575|2|30|31591.20|0.01|0.00|N|O|1996-03-17|1996-04-16|1996-04-04|DELIVER IN PERSON|MAIL|ep carefully above the special| +5930|89346|1855|3|27|36054.18|0.01|0.04|N|O|1996-04-10|1996-03-25|1996-04-17|NONE|FOB| carefully regular instructions ca| +5930|31248|1249|4|45|53065.80|0.09|0.04|N|O|1996-05-19|1996-03-12|1996-06-06|DELIVER IN PERSON|SHIP|jole-- sly| +5930|180561|5598|5|46|75511.76|0.00|0.02|N|O|1996-02-29|1996-04-19|1996-03-09|TAKE BACK RETURN|AIR|ideas. bold instru| +5930|83570|1095|6|7|10874.99|0.07|0.06|N|O|1996-02-04|1996-03-25|1996-02-29|NONE|REG AIR|ost ruthles| +5930|153133|3134|7|43|51003.59|0.03|0.01|N|O|1996-05-01|1996-03-30|1996-05-02|NONE|TRUCK|grouches. blithely final theodolites mai| +5931|97650|5178|1|12|19771.80|0.07|0.00|R|F|1994-05-16|1994-06-13|1994-06-07|DELIVER IN PERSON|SHIP|platelets. silent, express i| +5931|188138|657|2|36|44140.68|0.08|0.08|R|F|1994-06-14|1994-05-09|1994-07-07|TAKE BACK RETURN|REG AIR|requests along the final pack| +5931|23597|8602|3|1|1520.59|0.07|0.00|R|F|1994-05-04|1994-06-13|1994-05-26|DELIVER IN PERSON|REG AIR|slyly regular acco| +5931|192561|5081|4|41|67795.96|0.05|0.08|R|F|1994-05-20|1994-04-19|1994-06-19|DELIVER IN PERSON|TRUCK|eep accounts. final| +5931|170443|2961|5|1|1513.44|0.09|0.05|R|F|1994-06-21|1994-05-17|1994-07-09|DELIVER IN PERSON|REG AIR|s, even orbits. thinly silent pack| +5931|20237|2740|6|44|50918.12|0.03|0.07|A|F|1994-04-15|1994-06-12|1994-05-02|DELIVER IN PERSON|TRUCK|kages abov| +5932|25248|5249|1|39|45756.36|0.04|0.08|A|F|1994-05-28|1994-05-20|1994-06-25|DELIVER IN PERSON|AIR|tornis sleep q| +5932|128353|5890|2|42|58016.70|0.09|0.05|A|F|1994-04-12|1994-05-15|1994-04-26|DELIVER IN PERSON|AIR|aggle slyly against the special | +5932|22465|9972|3|39|54110.94|0.07|0.00|A|F|1994-05-05|1994-04-25|1994-05-18|DELIVER IN PERSON|FOB|oss the careful, ironi| +5932|165510|3059|4|34|53567.34|0.10|0.02|R|F|1994-04-02|1994-06-04|1994-04-07|TAKE BACK RETURN|TRUCK|leep blithely regular excuses.| +5932|124027|9052|5|17|17867.34|0.01|0.05|R|F|1994-06-15|1994-06-12|1994-06-24|NONE|SHIP|odolites. carefully regular dolphi| +5932|110240|241|6|24|30005.76|0.00|0.07|R|F|1994-06-03|1994-06-20|1994-06-08|COLLECT COD|TRUCK| enticing packages nag even, fin| +5932|199189|9190|7|48|61832.64|0.06|0.07|R|F|1994-04-02|1994-06-22|1994-04-14|COLLECT COD|AIR|nal, even theodolites. boldly | +5933|167422|7423|1|24|35746.08|0.08|0.03|N|O|1995-12-07|1995-10-30|1995-12-22|NONE|REG AIR|unts are after the packages! packages | +5933|46973|1982|2|39|74878.83|0.06|0.05|N|O|1995-09-24|1995-11-26|1995-09-29|COLLECT COD|AIR| pinto beans ca| +5933|63707|8720|3|30|50121.00|0.07|0.05|N|O|1995-10-15|1995-12-06|1995-10-25|NONE|MAIL|ccording to the pin| +5933|117236|4770|4|44|55142.12|0.04|0.00|N|O|1995-12-21|1995-11-27|1996-01-07|TAKE BACK RETURN|SHIP| slyly ironic foxes cajo| +5933|176585|4137|5|11|18277.38|0.01|0.08|N|O|1995-10-10|1995-10-25|1995-10-15|TAKE BACK RETURN|MAIL|nal theodolites about t| +5933|54230|4231|6|43|50921.89|0.07|0.02|N|O|1995-10-09|1995-10-14|1995-10-30|DELIVER IN PERSON|AIR|bold, regular accou| +5934|20484|7991|1|6|8426.88|0.03|0.04|A|F|1992-08-23|1992-10-01|1992-08-30|DELIVER IN PERSON|TRUCK|ith the quick| +5934|71054|8576|2|19|19475.95|0.08|0.04|R|F|1992-08-05|1992-09-21|1992-09-02|NONE|FOB|xes dazzle bli| +5934|194743|4744|3|40|73509.60|0.09|0.04|A|F|1992-08-29|1992-10-08|1992-09-26|TAKE BACK RETURN|MAIL| silent instructions. sp| +5934|44967|2480|4|46|87950.16|0.09|0.00|R|F|1992-10-08|1992-09-04|1992-10-20|TAKE BACK RETURN|AIR| ideas solve | +5934|152539|7570|5|3|4774.59|0.07|0.02|R|F|1992-09-29|1992-09-29|1992-10-19|TAKE BACK RETURN|SHIP|fully unusual packages use daringly slyly e| +5934|111038|8572|6|3|3147.09|0.02|0.02|R|F|1992-09-27|1992-09-27|1992-10-22|DELIVER IN PERSON|REG AIR|ully blithely ironic theodolite| +5934|8174|8175|7|2|2164.34|0.09|0.00|R|F|1992-07-21|1992-09-01|1992-08-12|COLLECT COD|FOB|ons are furiously according to the even, | +5935|164765|4766|1|24|43914.24|0.05|0.06|N|O|1996-03-26|1996-03-06|1996-04-12|COLLECT COD|MAIL|even, final theodolites. | +5935|192574|132|2|24|39997.68|0.08|0.03|N|O|1996-01-11|1996-03-10|1996-01-30|NONE|REG AIR| beans. final| +5935|187393|2430|3|39|57735.21|0.09|0.01|N|O|1996-03-24|1996-01-28|1996-04-20|NONE|RAIL|iments cajole care| +5935|100339|340|4|30|40179.90|0.09|0.08|N|O|1996-01-02|1996-03-02|1996-01-22|DELIVER IN PERSON|MAIL|ully final deposits! final| +5935|189778|7333|5|9|16809.93|0.10|0.01|N|O|1996-04-06|1996-03-18|1996-04-26|COLLECT COD|FOB|ending packages affi| +5960|58694|1200|1|34|56191.46|0.10|0.05|N|O|1997-04-25|1997-04-02|1997-05-22|DELIVER IN PERSON|RAIL|ular asymptotes| +5960|61090|3597|2|1|1051.09|0.02|0.04|N|O|1997-05-08|1997-04-08|1997-05-24|NONE|FOB|le slyly. unusual theodolites haggle| +5960|125524|8037|3|36|55782.72|0.09|0.00|N|O|1997-02-12|1997-04-04|1997-02-20|DELIVER IN PERSON|REG AIR| carefully final instructions are flu| +5961|155487|8003|1|42|64784.16|0.08|0.07|N|O|1998-04-13|1998-03-24|1998-04-18|NONE|RAIL|e according to the expres| +5961|69969|9970|2|3|5816.88|0.10|0.02|N|O|1998-05-20|1998-04-21|1998-05-31|DELIVER IN PERSON|RAIL|ndencies boost against the regular package| +5962|88304|3321|1|19|24553.70|0.04|0.01|N|O|1996-11-17|1996-09-26|1996-12-12|DELIVER IN PERSON|MAIL|final requests. slyly final requests hind| +5962|123173|5686|2|45|53827.65|0.04|0.04|N|O|1996-08-10|1996-09-25|1996-09-02|DELIVER IN PERSON|MAIL|close theodolites. slyly pending pac| +5962|166835|4384|3|22|41840.26|0.00|0.05|N|O|1996-10-04|1996-09-23|1996-10-06|NONE|FOB| blithely eve| +5963|90950|3460|1|13|25232.35|0.04|0.05|A|F|1993-12-26|1994-01-05|1993-12-30|NONE|RAIL| regular accounts. | +5963|195542|5543|2|45|73689.30|0.10|0.01|R|F|1993-11-20|1993-12-01|1993-12-11|COLLECT COD|REG AIR|ages. slyly pending ideas| +5963|58350|8351|3|15|19625.25|0.00|0.08|R|F|1994-01-28|1993-12-17|1994-01-30|COLLECT COD|MAIL|cajole according to the blit| +5963|74119|9134|4|5|5465.55|0.04|0.02|R|F|1993-11-13|1994-01-20|1993-11-21|NONE|REG AIR|ructions sleep furiously. bl| +5963|106831|6832|5|25|45945.75|0.04|0.04|R|F|1993-12-18|1994-01-19|1994-01-11|COLLECT COD|REG AIR|eans. slyly express epitaphs wake regu| +5963|93233|3234|6|48|58859.04|0.07|0.00|A|F|1994-02-03|1993-12-14|1994-02-06|TAKE BACK RETURN|FOB|hely regular requests nag blithe| +5963|163055|604|7|6|6708.30|0.00|0.05|A|F|1994-01-27|1994-01-16|1994-01-29|NONE|MAIL|ful instructio| +5964|60830|3337|1|19|34025.77|0.05|0.05|R|F|1992-11-05|1993-01-18|1992-12-01|TAKE BACK RETURN|MAIL|ove the ironic, regular ideas| +5964|162602|2603|2|38|63254.80|0.09|0.01|R|F|1992-11-22|1992-12-21|1992-11-24|COLLECT COD|TRUCK|ould run fluffily about the| +5964|44184|6689|3|18|20307.24|0.07|0.07|R|F|1992-12-06|1992-12-11|1993-01-05|NONE|TRUCK|ess dependen| +5964|192568|2569|4|38|63101.28|0.03|0.05|A|F|1993-01-31|1992-12-21|1993-02-03|DELIVER IN PERSON|RAIL|nal dependencies sleep q| +5964|77808|316|5|44|78575.20|0.09|0.05|A|F|1992-11-15|1992-12-08|1992-11-21|TAKE BACK RETURN|TRUCK|usly bold braids wake slyly in place of t| +5965|171217|1218|1|39|50240.19|0.01|0.08|N|O|1997-04-06|1997-05-13|1997-04-09|COLLECT COD|MAIL|d grouches haggle carefully among the regu| +5965|42423|9936|2|27|36866.34|0.06|0.03|N|O|1997-07-06|1997-06-07|1997-07-25|NONE|FOB|y regular instructions cajole sl| +5966|2321|7322|1|39|47709.48|0.03|0.01|R|F|1992-08-27|1992-06-22|1992-09-07|TAKE BACK RETURN|TRUCK|. even pack| +5967|27282|9785|1|46|55626.88|0.06|0.05|R|F|1994-03-20|1994-03-14|1994-03-30|NONE|RAIL|pinto beans. even, final accounts wake. | +5967|120317|5342|2|27|36107.37|0.07|0.05|R|F|1994-05-21|1994-05-07|1994-06-12|DELIVER IN PERSON|TRUCK|en, special pack| +5967|163295|5812|3|34|46181.86|0.07|0.02|A|F|1994-04-15|1994-04-03|1994-04-27|TAKE BACK RETURN|REG AIR|s. ironic ideas sleep furiously| +5967|84559|7068|4|11|16979.05|0.09|0.08|R|F|1994-05-08|1994-05-05|1994-05-22|TAKE BACK RETURN|RAIL|less instructi| +5967|175316|351|5|26|36174.06|0.03|0.05|A|F|1994-06-02|1994-04-24|1994-06-08|COLLECT COD|SHIP|sts detect slyly furiously unusual| +5992|20635|636|1|33|51335.79|0.06|0.04|N|O|1997-04-21|1997-07-01|1997-05-19|COLLECT COD|AIR|ns haggle. foxes integrate caref| +5993|196282|6283|1|37|50996.36|0.02|0.05|N|O|1998-01-15|1998-02-12|1998-02-05|COLLECT COD|FOB|nusual instruc| +5993|96238|8748|2|8|9873.84|0.02|0.02|N|O|1998-03-01|1998-03-12|1998-03-19|COLLECT COD|FOB|s doze blithely-- dolphins wa| +5993|62709|5216|3|39|65196.30|0.04|0.00|N|O|1997-12-30|1998-03-03|1998-01-10|NONE|REG AIR|nding accounts a| +5993|144054|6569|4|7|7686.35|0.10|0.04|N|O|1998-03-09|1998-03-08|1998-03-14|NONE|TRUCK|s. special packages use carefully | +5993|108550|3571|5|27|42080.85|0.08|0.03|N|O|1998-03-11|1998-01-18|1998-03-27|COLLECT COD|FOB|ronic accounts. blithely special pa| +5993|187340|9859|6|46|65657.64|0.10|0.02|N|O|1998-03-22|1998-03-15|1998-04-20|TAKE BACK RETURN|SHIP|beans. fluffily ironic theodoli| +5993|18184|686|7|8|8817.44|0.04|0.03|N|O|1998-02-28|1998-01-26|1998-03-16|DELIVER IN PERSON|REG AIR|ongside of the evenly ironic d| +5994|2757|5258|1|29|48132.75|0.05|0.03|R|F|1992-12-17|1992-10-28|1993-01-04|NONE|TRUCK|unts sleep| +5994|131989|4503|2|22|44461.56|0.00|0.06|A|F|1992-10-22|1992-11-14|1992-10-31|NONE|FOB|. regular accounts nag quickly af| +5995|22321|7326|1|42|52219.44|0.01|0.06|N|O|1996-10-28|1996-10-17|1996-10-31|COLLECT COD|TRUCK| against the | +5996|175741|776|1|5|9083.70|0.06|0.08|A|F|1994-08-18|1994-07-04|1994-08-24|DELIVER IN PERSON|REG AIR|eas. regular excuses breach c| +5996|77540|48|2|8|12140.32|0.00|0.06|R|F|1994-06-12|1994-06-17|1994-07-06|TAKE BACK RETURN|MAIL|ounts cajole slyly according to the| +5996|199042|1562|3|27|30808.08|0.01|0.04|R|F|1994-06-06|1994-07-10|1994-07-05|DELIVER IN PERSON|AIR|egular, spe| +5996|86497|6498|4|32|47471.68|0.10|0.00|A|F|1994-07-21|1994-07-05|1994-08-14|NONE|TRUCK|ress packages cajole against the express ac| +5996|146898|1927|5|43|83630.27|0.07|0.01|A|F|1994-08-02|1994-06-27|1994-09-01|TAKE BACK RETURN|FOB|ptotes. slyly final requests wake? ironic,| +5996|101235|1236|6|41|50685.43|0.10|0.06|A|F|1994-08-17|1994-07-24|1994-09-01|DELIVER IN PERSON|FOB| print furiously except the special, | diff --git a/batch-tool/src/test/resources/tpch/insert-1g-2/lineitem.tbl.u2 b/batch-tool/src/test/resources/tpch/insert-1g-2/lineitem.tbl.u2 new file mode 100644 index 0000000..8b27b27 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-1g-2/lineitem.tbl.u2 @@ -0,0 +1,6076 @@ +5997|106501|1522|1|40|60300.00|0.02|0.06|N|O|1997-08-15|1997-10-22|1997-09-12|COLLECT COD|AIR|quickly furious, final packag| +5997|155584|3130|2|29|47547.82|0.03|0.03|N|O|1997-11-02|1997-09-24|1997-11-14|TAKE BACK RETURN|SHIP|ses among the blithe| +5997|91063|6082|3|40|42162.40|0.08|0.06|N|O|1997-09-23|1997-10-24|1997-10-23|DELIVER IN PERSON|AIR|lowly final pin| +5997|92242|7261|4|28|34558.72|0.05|0.03|N|O|1997-10-24|1997-11-12|1997-10-29|COLLECT COD|REG AIR|fully even packages a| +5997|99308|4327|5|16|20916.80|0.04|0.03|N|O|1997-08-29|1997-10-16|1997-09-07|COLLECT COD|TRUCK|luffily pending deposits-- furiously ir| +5997|59379|6895|6|33|44166.21|0.07|0.00|N|O|1997-08-18|1997-11-07|1997-09-04|COLLECT COD|FOB|. express pinto bean| +5998|48025|530|1|3|2919.06|0.01|0.08|N|O|1996-04-26|1996-05-04|1996-05-21|COLLECT COD|REG AIR|uick ideas; final depen| +5998|152568|5084|2|9|14585.04|0.06|0.03|N|O|1996-06-19|1996-05-27|1996-07-01|NONE|RAIL|lithely fluffily express requ| +5998|1254|6255|3|44|50831.00|0.07|0.08|N|O|1996-04-10|1996-05-12|1996-04-29|DELIVER IN PERSON|SHIP|nes. ironic deposits around the f| +5998|61687|1688|4|22|36270.96|0.03|0.03|N|O|1996-03-14|1996-05-29|1996-04-11|COLLECT COD|MAIL|ts are blithely special account| +5998|161968|1969|5|5|10149.80|0.01|0.00|N|O|1996-06-05|1996-06-01|1996-06-24|COLLECT COD|FOB|le slyly regular p| +5998|185697|8216|6|39|69524.91|0.07|0.00|N|O|1996-04-01|1996-04-10|1996-04-23|COLLECT COD|RAIL|inal requests about t| +5998|9182|4183|7|19|20732.42|0.08|0.03|N|O|1996-05-05|1996-04-12|1996-05-06|NONE|AIR|y final foxe| +5999|115518|8030|1|30|46005.30|0.09|0.03|A|F|1992-07-10|1992-05-08|1992-08-02|TAKE BACK RETURN|FOB|ke quickly express depo| +6024|156134|3680|1|19|22612.47|0.09|0.01|R|F|1994-04-06|1994-05-25|1994-05-03|DELIVER IN PERSON|RAIL|y regular epitaphs detect even t| +6025|112595|2596|1|8|12860.72|0.09|0.08|N|O|1995-10-25|1995-10-12|1995-11-11|DELIVER IN PERSON|MAIL| excuses sleep. fu| +6025|175284|2836|2|2|2718.56|0.00|0.01|N|O|1995-11-11|1995-10-25|1995-12-05|NONE|TRUCK|ithely special reque| +6026|128852|8853|1|15|28212.75|0.00|0.08|N|O|1998-08-01|1998-08-12|1998-08-25|TAKE BACK RETURN|MAIL|ad of the furiously final packages| +6026|9672|4673|2|26|41123.42|0.08|0.08|N|O|1998-10-26|1998-09-11|1998-11-07|NONE|REG AIR|yly regular requests wa| +6026|151552|1553|3|34|54520.70|0.00|0.08|N|O|1998-07-15|1998-10-09|1998-07-28|DELIVER IN PERSON|MAIL|lithely ironic deposi| +6027|80385|7910|1|42|57345.96|0.10|0.00|R|F|1994-08-03|1994-08-15|1994-09-01|TAKE BACK RETURN|SHIP| silent accoun| +6027|26186|3693|2|8|8897.44|0.04|0.01|A|F|1994-10-23|1994-08-07|1994-11-22|NONE|RAIL|ular instructions. pa| +6027|103515|8536|3|41|62258.91|0.05|0.00|A|F|1994-09-12|1994-09-21|1994-09-18|NONE|REG AIR|ar requests| +6027|165449|2998|4|25|37861.00|0.04|0.03|R|F|1994-07-23|1994-09-03|1994-07-30|TAKE BACK RETURN|REG AIR|ts. furiously silent plate| +6028|19022|1524|1|27|25407.54|0.02|0.02|N|O|1996-12-27|1997-01-10|1997-01-05|DELIVER IN PERSON|REG AIR|l platelets slee| +6029|11962|4464|1|14|26235.44|0.01|0.05|A|F|1993-09-07|1993-09-01|1993-09-21|COLLECT COD|AIR|al decoys. ironi| +6029|32321|9831|2|48|60159.36|0.09|0.02|R|F|1993-09-28|1993-09-26|1993-10-10|COLLECT COD|SHIP|ut the bold, ironic packages. fluffily| +6029|9423|6924|3|42|55961.64|0.00|0.05|R|F|1993-08-19|1993-08-21|1993-09-08|NONE|MAIL|es. requests boost throughou| +6029|163718|6235|4|9|16035.39|0.10|0.08|A|F|1993-09-05|1993-09-13|1993-09-13|TAKE BACK RETURN|SHIP| slyly. blithely pending dependenci| +6029|247|248|5|15|17208.60|0.06|0.00|R|F|1993-09-02|1993-09-11|1993-09-18|DELIVER IN PERSON|AIR| promise according to th| +6030|56227|8733|1|2|2366.44|0.10|0.06|N|O|1998-02-12|1998-03-07|1998-03-05|DELIVER IN PERSON|REG AIR|anent packages cajole against the carefull| +6030|196287|6288|2|20|27665.60|0.05|0.08|N|O|1998-01-28|1998-03-19|1998-01-30|NONE|SHIP|longside of the quick| +6030|190771|772|3|49|91226.73|0.01|0.06|N|O|1998-03-22|1998-02-26|1998-04-09|NONE|AIR| in place of the| +6030|81345|6362|4|25|33158.50|0.03|0.04|N|O|1998-02-09|1998-02-26|1998-02-26|COLLECT COD|RAIL|oxes boost. regular, pen| +6030|149620|7163|5|14|23374.68|0.00|0.01|N|O|1998-04-15|1998-02-13|1998-04-27|DELIVER IN PERSON|AIR|even requests use reg| +6031|182403|2404|1|1|1485.40|0.05|0.08|R|F|1993-05-30|1993-05-07|1993-06-03|NONE|FOB| carefully final platelets sleep aga| +6031|45268|277|2|42|50956.92|0.10|0.01|R|F|1993-05-05|1993-05-26|1993-05-14|DELIVER IN PERSON|AIR|t packages? fluffily fin| +6031|3131|632|3|17|17580.21|0.04|0.01|R|F|1993-06-07|1993-05-26|1993-06-29|NONE|FOB|g, final ideas impress carefully ac| +6031|18168|3171|4|31|33670.96|0.10|0.06|A|F|1993-06-17|1993-05-09|1993-06-24|COLLECT COD|RAIL|leep slyly. the| +6031|141867|9410|5|11|20997.46|0.03|0.08|R|F|1993-06-18|1993-04-29|1993-07-05|DELIVER IN PERSON|FOB| attainmen| +6056|162898|447|1|10|19608.90|0.03|0.01|N|O|1996-12-14|1996-12-28|1996-12-24|TAKE BACK RETURN|TRUCK|packages. slyly unusual packa| +6056|11930|4432|2|38|69993.34|0.07|0.05|N|O|1997-02-11|1997-01-22|1997-02-20|TAKE BACK RETURN|REG AIR| ironic account| +6056|93288|816|3|31|39719.68|0.10|0.03|N|O|1997-01-26|1996-12-06|1997-01-31|DELIVER IN PERSON|TRUCK| instructions above the fl| +6056|75802|5803|4|27|48000.60|0.02|0.01|N|O|1996-12-22|1997-01-15|1997-01-04|DELIVER IN PERSON|AIR| bold requests. slyly eve| +6057|158524|1040|1|5|7912.60|0.09|0.00|A|F|1995-05-02|1995-04-24|1995-05-27|NONE|MAIL| above the furiously special requests| +6057|105330|5331|2|14|18694.62|0.05|0.08|R|F|1995-05-05|1995-05-15|1995-05-24|NONE|TRUCK|side of the evenly final requests cajole s| +6057|67778|2791|3|21|36661.17|0.04|0.01|R|F|1995-03-21|1995-05-16|1995-03-26|NONE|TRUCK|ccounts boost alongside of the carefully un| +6057|130116|5143|4|41|46990.51|0.08|0.07|A|F|1995-06-01|1995-05-25|1995-06-10|DELIVER IN PERSON|REG AIR|cuses cajole quickly around the blithe| +6057|42830|7839|5|47|83323.01|0.03|0.07|A|F|1995-03-19|1995-04-23|1995-03-27|COLLECT COD|TRUCK| accounts. blithely even reque| +6057|27535|2540|6|1|1462.53|0.03|0.02|R|F|1995-02-28|1995-05-20|1995-03-06|DELIVER IN PERSON|MAIL|equests. requests hagg| +6057|168553|6102|7|8|12972.40|0.08|0.01|R|F|1995-02-28|1995-05-10|1995-03-04|NONE|RAIL|s play furiously along the id| +6058|68999|6518|1|41|80687.59|0.06|0.03|N|O|1996-02-04|1996-02-11|1996-02-25|DELIVER IN PERSON|FOB|osits. final, | +6058|62863|2864|2|48|87641.28|0.09|0.04|N|O|1996-03-12|1996-02-14|1996-04-05|COLLECT COD|MAIL|ackages-- slyly even t| +6059|88180|8181|1|47|54904.46|0.03|0.03|N|O|1997-08-04|1997-06-10|1997-08-22|NONE|RAIL|ages. theodolites | +6059|33893|8900|2|44|80383.16|0.00|0.06|N|O|1997-07-08|1997-07-08|1997-07-22|NONE|RAIL|bravely express t| +6059|28139|3144|3|38|40550.94|0.01|0.02|N|O|1997-07-20|1997-06-20|1997-08-01|COLLECT COD|FOB|e fluffily.| +6059|115987|1010|4|36|72107.28|0.00|0.08|N|O|1997-07-10|1997-08-06|1997-08-02|TAKE BACK RETURN|SHIP|ld, ironic requests h| +6059|192665|5185|5|5|8788.30|0.02|0.00|N|O|1997-05-30|1997-07-24|1997-06-12|DELIVER IN PERSON|SHIP|s are slyly across the slyly ironic| +6060|142474|7503|1|32|48527.04|0.02|0.06|N|O|1997-11-12|1997-12-23|1997-11-20|TAKE BACK RETURN|MAIL|ely ironic deposits? carefully regu| +6060|143915|3916|2|38|74438.58|0.07|0.07|N|O|1997-11-11|1997-12-03|1997-11-24|COLLECT COD|SHIP|kages wake slyly. slyly pending deposit| +6060|165626|659|3|2|3383.24|0.03|0.01|N|O|1997-12-02|1997-12-13|1997-12-05|COLLECT COD|RAIL|iet requests. blithely thin deposits cajole| +6060|66776|4295|4|4|6971.08|0.10|0.03|N|O|1998-01-31|1998-01-09|1998-02-24|NONE|MAIL| dependencies. blith| +6060|93236|8255|5|33|40564.59|0.02|0.05|N|O|1998-01-02|1997-12-12|1998-01-03|TAKE BACK RETURN|SHIP|ounts are according to the regu| +6060|15044|2548|6|18|17262.72|0.04|0.03|N|O|1998-01-23|1997-12-16|1998-02-06|NONE|RAIL|avely regular asy| +6060|40049|2554|7|2|1978.08|0.05|0.06|N|O|1998-02-17|1998-01-25|1998-02-22|TAKE BACK RETURN|MAIL|eposits affix. bold de| +6061|97636|5164|1|34|55543.42|0.03|0.01|N|O|1997-02-28|1997-02-22|1997-03-10|DELIVER IN PERSON|REG AIR|iously bold, final plat| +6062|20392|393|1|5|6561.95|0.01|0.08|N|O|1997-05-20|1997-07-04|1997-05-26|COLLECT COD|AIR|nic dolphins cajole| +6062|119767|2279|2|2|3573.52|0.07|0.04|N|O|1997-07-07|1997-07-05|1997-07-11|DELIVER IN PERSON|FOB| ideas. ironic, regular pa| +6062|121450|8987|3|50|73572.50|0.09|0.03|N|O|1997-06-30|1997-06-28|1997-07-25|NONE|TRUCK|lessly. slyly ironic somas wake! doggedl| +6062|198360|5918|4|10|14583.60|0.09|0.05|N|O|1997-05-13|1997-07-07|1997-06-09|NONE|REG AIR|ly above the final foxes. car| +6062|25670|5671|5|7|11169.69|0.01|0.02|N|O|1997-06-09|1997-06-02|1997-06-13|DELIVER IN PERSON|SHIP|s. furiously silent packages | +6062|25162|5163|6|12|13045.92|0.01|0.05|N|O|1997-05-25|1997-07-12|1997-06-22|DELIVER IN PERSON|REG AIR| cajole blithel| +6063|119660|4683|1|36|60467.76|0.01|0.06|A|F|1992-07-18|1992-07-06|1992-07-24|TAKE BACK RETURN|SHIP|ts. final ideas wake along the fu| +6063|116223|6224|2|1|1239.22|0.03|0.01|A|F|1992-06-24|1992-07-22|1992-06-30|DELIVER IN PERSON|FOB|ounts are quickl| +6063|144762|4763|3|13|23487.88|0.02|0.05|A|F|1992-07-02|1992-08-27|1992-07-25|NONE|MAIL|ets. excuses affix | +6063|4294|9295|4|48|57517.92|0.07|0.08|A|F|1992-09-17|1992-08-09|1992-09-26|NONE|RAIL|ans about th| +6063|169193|4226|5|8|10097.52|0.09|0.04|R|F|1992-07-09|1992-08-16|1992-08-05|TAKE BACK RETURN|REG AIR|across the p| +6088|23864|6367|1|7|12515.02|0.06|0.00|R|F|1992-10-22|1992-11-08|1992-11-18|DELIVER IN PERSON|SHIP|y unusual ideas. blithely r| +6088|80715|716|2|2|3391.42|0.03|0.03|A|F|1992-11-17|1992-11-03|1992-11-20|DELIVER IN PERSON|RAIL|slyly regular packages. blithe| +6089|91529|6548|1|42|63861.84|0.06|0.08|A|F|1994-07-14|1994-08-31|1994-07-17|COLLECT COD|REG AIR|fix blithely across the care| +6089|127688|5225|2|49|84068.32|0.00|0.05|A|F|1994-07-13|1994-08-12|1994-07-19|DELIVER IN PERSON|TRUCK|refully. quickly brave requests na| +6089|44978|2491|3|28|53843.16|0.05|0.02|R|F|1994-10-31|1994-09-04|1994-11-17|COLLECT COD|RAIL|ss accounts| +6089|132627|7654|4|31|51448.22|0.09|0.08|A|F|1994-11-04|1994-08-29|1994-11-14|COLLECT COD|RAIL|lly ironic frays. slyly regular | +6089|48158|5671|5|30|33184.50|0.03|0.03|A|F|1994-07-31|1994-08-11|1994-08-14|COLLECT COD|RAIL|ironic deposits sleep slyly even packa| +6090|179814|9815|1|31|58708.11|0.08|0.08|A|F|1993-10-20|1993-11-27|1993-11-03|TAKE BACK RETURN|MAIL|ly fluffily express deposits. slyly| +6090|125854|8367|2|37|69554.45|0.07|0.05|R|F|1994-02-03|1993-11-23|1994-02-15|NONE|MAIL|fully fina| +6090|15776|3280|3|6|10150.62|0.00|0.01|A|F|1994-02-07|1993-12-11|1994-03-07|TAKE BACK RETURN|MAIL|into beans. express accoun| +6090|138459|3486|4|3|4492.35|0.04|0.05|A|F|1993-12-13|1994-01-10|1993-12-22|DELIVER IN PERSON|FOB|lithely final pack| +6090|72381|4889|5|26|35187.88|0.08|0.01|A|F|1994-01-29|1993-11-26|1994-01-30|NONE|AIR|al ideas are quickly r| +6090|106694|9205|6|34|57823.46|0.05|0.03|A|F|1993-10-26|1993-11-25|1993-11-24|DELIVER IN PERSON|SHIP|ges are. fluffily pending courts | +6090|194898|9937|7|6|11957.34|0.05|0.04|R|F|1993-11-25|1993-12-07|1993-12-14|NONE|REG AIR|y alongside of th| +6091|39577|9578|1|40|60662.80|0.02|0.06|A|F|1993-03-03|1993-04-19|1993-03-16|NONE|SHIP|slyly regular sheav| +6091|170524|5559|2|25|39863.00|0.09|0.08|A|F|1993-06-02|1993-03-15|1993-06-22|TAKE BACK RETURN|TRUCK|g accounts; special requests are| +6091|196421|3979|3|20|30348.40|0.06|0.00|A|F|1993-03-22|1993-04-28|1993-04-14|COLLECT COD|REG AIR|tect according to th| +6091|33749|1259|4|35|58895.90|0.03|0.07|R|F|1993-04-11|1993-04-30|1993-05-01|DELIVER IN PERSON|SHIP| the ironic foxes. slyly silent d| +6091|11739|4241|5|21|34665.33|0.01|0.08|A|F|1993-03-28|1993-03-17|1993-04-20|NONE|TRUCK| ironic requests. slyly regular requests| +6091|92360|7379|6|1|1352.36|0.10|0.02|R|F|1993-02-18|1993-04-07|1993-03-08|COLLECT COD|MAIL|posits breach carefully special packages! s| +6092|17459|9961|1|19|26152.55|0.04|0.04|R|F|1993-11-28|1993-10-30|1993-12-13|TAKE BACK RETURN|RAIL|boost slyly final accounts. final accoun| +6092|21115|3618|2|49|50769.39|0.05|0.07|A|F|1993-09-12|1993-10-22|1993-09-18|NONE|TRUCK|al dependencies! regula| +6093|165117|5118|1|48|56741.28|0.10|0.01|R|F|1992-05-29|1992-04-26|1992-06-22|NONE|TRUCK|rls cajole furiously re| +6093|115757|5758|2|35|62046.25|0.09|0.05|A|F|1992-05-17|1992-03-22|1992-06-10|NONE|SHIP|ies against the| +6093|116059|8571|3|6|6450.30|0.05|0.07|R|F|1992-04-26|1992-03-28|1992-05-13|TAKE BACK RETURN|SHIP|hely even packages. pinto beans nag | +6093|191583|9141|4|12|20094.96|0.05|0.05|A|F|1992-06-09|1992-04-15|1992-06-14|TAKE BACK RETURN|MAIL|entiments. fina| +6093|125491|5492|5|24|36395.76|0.03|0.06|A|F|1992-03-05|1992-03-31|1992-03-31|COLLECT COD|REG AIR| are accordi| +6093|115498|3032|6|18|27242.82|0.06|0.06|A|F|1992-04-24|1992-04-26|1992-05-21|DELIVER IN PERSON|REG AIR|de of the regular, regula| +6093|172723|5241|7|7|12570.04|0.06|0.01|R|F|1992-02-18|1992-04-14|1992-03-17|DELIVER IN PERSON|RAIL|le. final requests according to the bl| +6094|143907|6422|1|35|68281.50|0.01|0.03|R|F|1993-10-27|1993-12-04|1993-11-09|TAKE BACK RETURN|REG AIR|iously regula| +6094|35796|5797|2|26|45026.54|0.01|0.02|R|F|1993-11-04|1993-12-13|1993-11-18|TAKE BACK RETURN|SHIP|ronic accounts. even pinto beans sleep.| +6094|12716|220|3|43|70034.53|0.08|0.07|A|F|1993-12-31|1993-12-28|1994-01-14|DELIVER IN PERSON|FOB|odolites haggle slyly package| +6094|107668|179|4|6|10053.96|0.01|0.01|R|F|1993-11-12|1993-11-26|1993-12-05|COLLECT COD|RAIL|. blithely ironic warthogs cajol| +6094|159736|2252|5|31|55667.63|0.00|0.06|A|F|1993-11-10|1993-12-27|1993-11-16|TAKE BACK RETURN|AIR|hely final sh| +6094|70901|3409|6|50|93595.00|0.07|0.01|A|F|1994-01-24|1993-11-26|1994-02-02|COLLECT COD|TRUCK|oxes sublate stealthily. ironic deposits| +6094|27486|4993|7|4|5653.92|0.01|0.02|A|F|1994-01-14|1993-11-30|1994-02-05|DELIVER IN PERSON|RAIL|nic accounts eat carefully | +6095|151551|4067|1|20|32051.00|0.07|0.08|R|F|1992-03-29|1992-03-17|1992-04-21|COLLECT COD|TRUCK|lly ironic request| +6095|107757|268|2|36|63531.00|0.10|0.08|A|F|1992-02-11|1992-02-25|1992-02-18|NONE|TRUCK|d packages. even packages integrate. flu| +6120|9940|2441|1|31|57348.14|0.06|0.03|N|O|1997-06-18|1997-07-26|1997-06-25|NONE|RAIL|blithely reg| +6120|57078|7079|2|17|17596.19|0.06|0.02|N|O|1997-06-22|1997-08-27|1997-07-18|NONE|MAIL|dly slyly fi| +6120|107793|304|3|19|34215.01|0.08|0.01|N|O|1997-07-09|1997-09-14|1997-07-28|TAKE BACK RETURN|SHIP|. slyly final accounts acc| +6120|62767|2768|4|25|43244.00|0.09|0.02|N|O|1997-06-19|1997-09-10|1997-07-08|TAKE BACK RETURN|RAIL|ages across the ironically reg| +6120|121491|1492|5|20|30249.80|0.00|0.00|N|O|1997-08-07|1997-07-19|1997-08-15|NONE|AIR|r deposits boost against the quickly spe| +6120|89219|1728|6|18|21747.78|0.03|0.05|N|O|1997-10-15|1997-09-11|1997-11-07|NONE|REG AIR| shall cajole alongside of t| +6121|124890|7403|1|12|22978.68|0.07|0.01|R|F|1993-05-07|1993-04-26|1993-06-01|DELIVER IN PERSON|REG AIR|sauternes afte| +6122|149833|7376|1|41|77196.03|0.09|0.08|R|F|1995-03-16|1995-03-10|1995-03-27|COLLECT COD|FOB|n deposits. quickl| +6123|12521|2522|1|44|63074.88|0.04|0.00|A|F|1993-04-24|1993-03-06|1993-05-17|TAKE BACK RETURN|SHIP|ctions. care| +6123|33047|5551|2|32|31361.28|0.03|0.05|A|F|1993-03-22|1993-04-06|1993-04-06|NONE|SHIP|across the ironic, even| +6123|17952|2955|3|1|1869.95|0.05|0.06|A|F|1993-05-13|1993-02-27|1993-05-25|NONE|TRUCK| the requests. final pinto b| +6123|105889|8400|4|43|81479.84|0.08|0.03|R|F|1993-05-25|1993-04-04|1993-06-19|TAKE BACK RETURN|AIR|ole across the fur| +6124|195666|8186|1|47|82798.02|0.04|0.00|N|O|1996-08-12|1996-09-20|1996-08-16|DELIVER IN PERSON|SHIP|use. furiously even requests cajole f| +6124|146920|4463|2|15|29503.80|0.00|0.00|N|O|1996-10-28|1996-10-04|1996-11-26|COLLECT COD|MAIL|al, silent packages around| +6124|69184|1691|3|33|38054.94|0.05|0.03|N|O|1996-10-23|1996-10-22|1996-10-25|DELIVER IN PERSON|AIR|among the carefully even tithes. fluffy pa| +6124|161049|6082|4|47|52171.88|0.05|0.01|N|O|1996-11-14|1996-09-21|1996-11-20|COLLECT COD|SHIP|quests. blithely iron| +6124|135119|5120|5|23|26544.53|0.05|0.07|N|O|1996-08-31|1996-09-07|1996-09-22|TAKE BACK RETURN|FOB|lly even pinto beans. regu| +6124|132886|2887|6|14|26864.32|0.09|0.08|N|O|1996-09-25|1996-09-29|1996-09-28|COLLECT COD|SHIP|ests about the furiously pending pa| +6124|9963|2464|7|8|14983.68|0.04|0.08|N|O|1996-10-08|1996-11-05|1996-10-22|COLLECT COD|REG AIR|sly pending warhorses cajole b| +6125|39428|6938|1|23|31450.66|0.03|0.07|N|O|1998-08-15|1998-07-07|1998-08-29|COLLECT COD|REG AIR|to use slyly slyly ironic foxes. bl| +6125|54895|4896|2|26|48097.14|0.07|0.02|N|O|1998-08-01|1998-08-16|1998-08-09|COLLECT COD|REG AIR|requests. blit| +6125|5178|2679|3|46|49825.82|0.06|0.08|N|O|1998-07-12|1998-06-30|1998-07-16|DELIVER IN PERSON|SHIP|are carefully. slyly even pi| +6125|15036|7538|4|50|47551.50|0.07|0.00|N|O|1998-09-03|1998-08-18|1998-09-24|TAKE BACK RETURN|SHIP|ly. blithely even req| +6125|99835|7363|5|9|16513.47|0.06|0.03|N|O|1998-08-08|1998-07-15|1998-08-28|NONE|TRUCK|ss ideas use. realms about the deposits sle| +6125|119239|9240|6|24|30197.52|0.03|0.02|N|O|1998-06-02|1998-08-14|1998-06-21|DELIVER IN PERSON|SHIP|p: slyly regular dependencie| +6125|42570|5075|7|40|60502.80|0.00|0.07|N|O|1998-07-25|1998-08-02|1998-08-08|TAKE BACK RETURN|TRUCK|gedly bold i| +6126|66469|1482|1|10|14354.60|0.06|0.03|A|F|1992-06-23|1992-06-07|1992-07-17|COLLECT COD|RAIL|slyly acro| +6126|135172|2712|2|3|3621.51|0.02|0.05|A|F|1992-05-20|1992-06-16|1992-06-11|TAKE BACK RETURN|MAIL|ly ironic theodol| +6126|31007|6014|3|25|23450.00|0.00|0.07|A|F|1992-06-12|1992-06-20|1992-06-21|TAKE BACK RETURN|TRUCK| the evenly ironic requests play c| +6126|134072|4073|4|33|36500.31|0.09|0.04|A|F|1992-07-19|1992-06-12|1992-08-09|TAKE BACK RETURN|REG AIR|s haggle regularly. furio| +6126|132661|7688|5|23|38954.18|0.07|0.08|R|F|1992-08-03|1992-06-07|1992-08-14|NONE|AIR|c deposits haggle among the | +6127|51630|9146|1|43|68010.09|0.04|0.02|R|F|1994-08-15|1994-06-18|1994-08-28|DELIVER IN PERSON|RAIL|s ought to use along the bold requests. car| +6127|142404|2405|2|7|10124.80|0.06|0.04|R|F|1994-05-23|1994-07-10|1994-06-11|NONE|FOB|uctions are slyly express theodol| +6127|182915|2916|3|29|57939.39|0.05|0.08|R|F|1994-06-27|1994-06-03|1994-06-29|NONE|MAIL|ickly across the d| +6127|45059|7564|4|44|44178.20|0.08|0.06|A|F|1994-07-16|1994-05-27|1994-08-02|COLLECT COD|SHIP|efully final | +6152|27137|7138|1|24|25539.12|0.09|0.05|N|O|1995-11-18|1995-11-03|1995-12-05|NONE|SHIP| furiously fu| +6152|82862|7879|2|30|55345.80|0.02|0.03|N|O|1995-10-06|1995-11-18|1995-10-08|TAKE BACK RETURN|MAIL| within the fu| +6152|50402|7918|3|5|6762.00|0.02|0.07|N|O|1995-12-28|1995-10-30|1996-01-04|TAKE BACK RETURN|MAIL|ts. regular accounts integrat| +6153|179499|4534|1|30|47354.70|0.04|0.08|N|O|1997-08-06|1997-10-11|1997-08-14|DELIVER IN PERSON|REG AIR|ld deposits integrate sly| +6153|34485|1995|2|13|18453.24|0.05|0.01|N|O|1997-08-02|1997-09-26|1997-08-28|NONE|REG AIR|beans above the final ideas ar| +6153|174901|7419|3|12|23710.80|0.04|0.08|N|O|1997-11-05|1997-10-12|1997-11-29|DELIVER IN PERSON|AIR|ndencies hinder blithely after the i| +6154|9778|9779|1|50|84388.50|0.00|0.05|R|F|1993-10-07|1993-08-21|1993-10-21|TAKE BACK RETURN|RAIL|lyly regular asympto| +6155|186392|6393|1|6|8870.34|0.10|0.01|N|O|1996-08-03|1996-06-15|1996-09-02|TAKE BACK RETURN|FOB|osits. furiously final requests c| +6155|76970|1985|2|33|64250.01|0.03|0.02|N|O|1996-08-10|1996-07-12|1996-08-13|TAKE BACK RETURN|MAIL|final theodolites haggle furiously acc| +6155|22523|5026|3|45|65048.40|0.09|0.07|N|O|1996-08-18|1996-06-27|1996-08-27|COLLECT COD|REG AIR|he slyly ironic accounts solve | +6155|128786|6323|4|47|85294.66|0.03|0.07|N|O|1996-05-02|1996-06-08|1996-05-28|DELIVER IN PERSON|FOB|ly regular packages are slyly. blithely sl| +6156|185216|7735|1|8|10409.68|0.08|0.08|R|F|1992-10-28|1992-12-09|1992-11-24|TAKE BACK RETURN|REG AIR|fully special foxes sleep. c| +6156|118793|6327|2|32|57977.28|0.05|0.05|R|F|1992-12-17|1992-10-28|1993-01-14|COLLECT COD|RAIL|. carefully| +6156|152706|5222|3|8|14069.60|0.06|0.01|R|F|1992-12-09|1992-11-07|1993-01-05|TAKE BACK RETURN|REG AIR|ake furiously after the| +6156|129680|4705|4|44|75225.92|0.09|0.02|R|F|1992-10-22|1992-11-05|1992-11-13|COLLECT COD|FOB|unts; carefully express requests after th| +6156|121652|6677|5|5|8368.25|0.02|0.05|R|F|1992-10-05|1992-10-23|1992-11-04|NONE|TRUCK|in the slyly unusual requests. fluffil| +6156|3616|6117|6|3|4558.83|0.04|0.05|A|F|1992-11-02|1992-10-30|1992-11-24|TAKE BACK RETURN|MAIL|r foxes-- blithely regular depo| +6156|169906|7455|7|1|1975.90|0.05|0.07|A|F|1993-01-03|1992-12-01|1993-01-08|NONE|AIR|ructions. even, final ideas| +6157|3092|5593|1|3|2985.27|0.02|0.01|N|O|1996-12-13|1997-02-24|1996-12-30|COLLECT COD|SHIP| blithely exp| +6158|69792|2299|1|23|40521.17|0.03|0.08|N|O|1996-04-29|1996-05-11|1996-05-03|NONE|AIR|ns use furiously special, even foxes. foxes| +6158|188642|8643|2|19|32882.16|0.04|0.01|N|O|1996-07-02|1996-04-20|1996-07-08|COLLECT COD|SHIP|al excuses. busil| +6158|95118|2646|3|27|30053.97|0.01|0.00|N|O|1996-06-25|1996-05-10|1996-07-09|DELIVER IN PERSON|SHIP|sts breach final ide| +6158|35195|202|4|10|11301.90|0.01|0.04|N|O|1996-05-12|1996-05-05|1996-05-28|TAKE BACK RETURN|FOB|oost around th| +6158|106162|8673|5|39|45558.24|0.08|0.04|N|O|1996-04-18|1996-04-28|1996-04-30|COLLECT COD|TRUCK|le slyly slyly pending accounts. furiou| +6158|58485|3496|6|12|17321.76|0.06|0.01|N|O|1996-05-20|1996-05-21|1996-05-25|DELIVER IN PERSON|RAIL|e of the regular, fin| +6158|147098|7099|7|31|35497.79|0.00|0.06|N|O|1996-05-17|1996-05-12|1996-05-28|COLLECT COD|FOB| accounts. furiously bold accounts| +6159|74182|6690|1|44|50871.92|0.05|0.05|A|F|1992-10-19|1992-11-18|1992-10-28|NONE|REG AIR|lar theodolites are. quickly regular| +6159|173416|5934|2|16|23830.56|0.00|0.06|R|F|1993-01-28|1992-12-01|1993-02-16|COLLECT COD|AIR| bold ideas u| +6159|194539|2097|3|29|47372.37|0.02|0.06|A|F|1992-11-22|1992-11-25|1992-12-11|DELIVER IN PERSON|REG AIR|ven accounts use carefully furiously| +6184|79910|4925|1|28|52917.48|0.01|0.01|N|O|1995-10-01|1995-11-03|1995-10-25|NONE|AIR| furiously express ideas. blit| +6184|40287|7800|2|17|20863.76|0.07|0.04|N|O|1995-09-01|1995-11-07|1995-09-16|DELIVER IN PERSON|AIR|y furiously special dependencies. slyly f| +6184|101713|9244|3|41|70303.11|0.04|0.05|N|O|1995-09-02|1995-09-27|1995-09-23|TAKE BACK RETURN|RAIL|jole carefully. special pac| +6184|86608|1625|4|29|46243.40|0.00|0.08|N|O|1995-10-14|1995-10-01|1995-11-09|TAKE BACK RETURN|RAIL|. furiously reg| +6184|17840|5344|5|48|84376.32|0.09|0.06|N|O|1995-11-21|1995-09-09|1995-12-05|NONE|AIR|dencies. carefully ex| +6184|25025|7528|6|45|42750.90|0.05|0.03|N|O|1995-11-03|1995-11-01|1995-11-28|TAKE BACK RETURN|TRUCK| regular instructions sleep. carefu| +6185|64168|1687|1|44|49815.04|0.00|0.08|A|F|1994-12-03|1994-11-19|1994-12-12|DELIVER IN PERSON|RAIL|-- slyly ironic patterns | +6185|66844|6845|2|39|70622.76|0.02|0.00|R|F|1995-01-14|1994-11-10|1995-02-07|TAKE BACK RETURN|RAIL|. blithely fluffy ins| +6185|42102|2103|3|41|42808.10|0.08|0.00|R|F|1994-11-10|1994-12-17|1994-11-21|COLLECT COD|SHIP|oss the bold accounts wake careful| +6185|199424|9425|4|50|76171.00|0.04|0.00|A|F|1994-12-31|1994-10-24|1995-01-03|TAKE BACK RETURN|SHIP|ackages cajol| +6185|118837|1349|5|18|33404.94|0.03|0.00|R|F|1994-10-17|1994-10-24|1994-11-02|DELIVER IN PERSON|TRUCK|r packages sublate pinto beans.| +6185|76832|4354|6|16|28941.28|0.07|0.03|A|F|1994-12-07|1994-12-11|1994-12-25|COLLECT COD|TRUCK|uriously silently ironic tit| +6185|105682|8193|7|42|70882.56|0.01|0.00|A|F|1994-10-10|1994-11-15|1994-10-31|NONE|FOB|yly along the slowly ironic pack| +6186|197362|7363|1|15|21890.40|0.01|0.06|N|O|1998-05-08|1998-04-18|1998-06-07|TAKE BACK RETURN|REG AIR|equests. slyly express asymptotes use| +6186|56692|6693|2|14|23081.66|0.06|0.00|N|O|1998-04-14|1998-04-15|1998-05-01|COLLECT COD|TRUCK|unts. final| +6186|19227|4230|3|34|38971.48|0.03|0.01|N|O|1998-06-17|1998-04-28|1998-06-28|COLLECT COD|SHIP| unusual ideas. final i| +6186|139055|4082|4|48|52514.40|0.04|0.07|N|O|1998-05-31|1998-05-22|1998-06-05|DELIVER IN PERSON|RAIL| slyly even theodolites nag c| +6186|97287|9797|5|27|34675.56|0.00|0.05|N|O|1998-07-09|1998-06-11|1998-07-24|COLLECT COD|SHIP|c requests. slyly daring p| +6187|14660|7162|1|11|17321.26|0.07|0.04|R|F|1993-07-25|1993-09-17|1993-08-20|DELIVER IN PERSON|REG AIR|theodolites serve furiously. qu| +6187|183667|3668|2|9|15755.94|0.03|0.06|R|F|1993-10-15|1993-09-01|1993-10-31|DELIVER IN PERSON|TRUCK|ackages are final reque| +6187|83617|8634|3|23|36814.03|0.10|0.07|A|F|1993-11-01|1993-08-26|1993-11-19|COLLECT COD|REG AIR| platelets affix blithely af| +6187|141283|1284|4|34|45025.52|0.06|0.01|R|F|1993-11-05|1993-08-19|1993-11-11|DELIVER IN PERSON|TRUCK| instructions would sleep daringly | +6187|131682|6709|5|20|34273.60|0.10|0.07|R|F|1993-10-16|1993-10-05|1993-10-29|NONE|MAIL|requests are regular, even deposits| +6188|197545|2584|1|14|22995.56|0.09|0.02|A|F|1993-06-05|1993-05-01|1993-06-15|TAKE BACK RETURN|MAIL|press, regular accounts wake afte| +6188|123926|3927|2|7|13649.44|0.06|0.08|R|F|1993-04-22|1993-05-07|1993-05-17|TAKE BACK RETURN|REG AIR|ly final dependencies about the | +6188|20086|2589|3|17|17103.36|0.03|0.03|A|F|1993-04-07|1993-05-28|1993-04-27|DELIVER IN PERSON|TRUCK|riously ironic excuses. deposits alon| +6188|171998|7033|4|22|45539.78|0.08|0.04|A|F|1993-06-05|1993-05-12|1993-06-07|TAKE BACK RETURN|REG AIR|usual accounts? re| +6188|162220|2221|5|12|15386.64|0.04|0.03|R|F|1993-06-27|1993-05-06|1993-07-23|TAKE BACK RETURN|RAIL|lets haggle. quic| +6188|15623|626|6|32|49235.84|0.01|0.05|R|F|1993-04-01|1993-05-14|1993-04-16|NONE|TRUCK|es-- bold | +6188|169078|9079|7|7|8029.49|0.08|0.05|A|F|1993-05-23|1993-06-15|1993-06-07|DELIVER IN PERSON|FOB| slyly regular dolphins. blithely sly pack| +6189|79610|7132|1|37|58815.57|0.01|0.04|R|F|1995-01-06|1994-12-12|1995-01-31|NONE|SHIP|ess, pending theodolites. ide| +6189|190628|8186|2|13|22342.06|0.03|0.05|R|F|1995-01-26|1994-11-09|1995-02-10|COLLECT COD|FOB|ar pinto beans. unu| +6189|73888|6396|3|30|55856.40|0.06|0.07|R|F|1994-12-07|1994-11-15|1994-12-21|DELIVER IN PERSON|RAIL|en instructions cajole furi| +6189|21070|1071|4|7|6937.49|0.09|0.03|R|F|1994-12-21|1994-11-04|1994-12-25|DELIVER IN PERSON|RAIL|posits hang quickly id| +6189|107571|5102|5|47|74192.79|0.00|0.02|R|F|1995-01-13|1994-12-28|1995-01-29|DELIVER IN PERSON|FOB|al asymptotes sleep against the | +6189|143007|3008|6|16|16800.00|0.06|0.00|A|F|1995-01-27|1994-11-30|1995-02-13|DELIVER IN PERSON|REG AIR|riously furious ideas are blithely r| +6190|160296|7845|1|31|42044.99|0.07|0.07|N|O|1996-12-22|1996-11-17|1997-01-11|DELIVER IN PERSON|REG AIR| unusual ideas. blithely final depos| +6190|84009|4010|2|44|43692.00|0.10|0.03|N|O|1996-09-16|1996-10-20|1996-10-09|NONE|TRUCK|ajole closely above the special a| +6190|128796|6333|3|12|21897.48|0.07|0.03|N|O|1996-11-02|1996-11-03|1996-11-05|TAKE BACK RETURN|TRUCK|ial account| +6191|91357|6376|1|20|26967.00|0.02|0.03|R|F|1994-06-19|1994-07-06|1994-07-10|NONE|REG AIR|the ironic packages haggle quickly along| +6191|21684|4187|2|44|70649.92|0.03|0.04|A|F|1994-07-17|1994-06-29|1994-08-01|NONE|AIR|lar pinto beans after the fi| +6216|71594|9116|1|40|62623.60|0.09|0.07|N|O|1996-04-15|1996-03-10|1996-05-12|COLLECT COD|FOB|sias are unusual depo| +6216|75152|2674|2|15|16907.25|0.04|0.06|N|O|1996-03-29|1996-03-01|1996-04-16|COLLECT COD|TRUCK|ual theodolites. sl| +6216|74903|2425|3|9|16901.10|0.05|0.01|N|O|1996-04-18|1996-02-27|1996-05-08|NONE|SHIP|, even ideas sl| +6216|80083|7608|4|17|18072.36|0.02|0.02|N|O|1996-03-18|1996-02-24|1996-04-01|COLLECT COD|SHIP|rave dolphin| +6216|146090|3633|5|8|9088.72|0.00|0.05|N|O|1996-01-29|1996-02-23|1996-01-31|DELIVER IN PERSON|RAIL|s haggle about the slyly special p| +6217|89961|9962|1|39|76087.44|0.02|0.08|R|F|1993-03-09|1993-04-04|1993-03-11|DELIVER IN PERSON|MAIL|pinto beans. spec| +6217|162893|5410|2|21|41073.69|0.02|0.03|R|F|1993-02-28|1993-04-23|1993-03-22|NONE|AIR| are slyly beneath the silently final packa| +6217|135454|5455|3|1|1489.45|0.09|0.03|A|F|1993-06-18|1993-05-03|1993-07-08|NONE|REG AIR|l requests a| +6217|158637|3668|4|36|61042.68|0.07|0.03|R|F|1993-03-02|1993-05-06|1993-03-08|NONE|FOB|ing to the ironic instru| +6217|2836|7837|5|40|69553.20|0.05|0.07|A|F|1993-04-01|1993-05-18|1993-04-03|COLLECT COD|AIR| carefully silen| +6217|57128|2139|6|26|28213.12|0.05|0.03|A|F|1993-05-06|1993-03-23|1993-05-14|DELIVER IN PERSON|AIR|c deposits will integrate along th| +6217|142724|5239|7|25|44168.00|0.01|0.07|R|F|1993-03-24|1993-04-06|1993-04-08|NONE|FOB| pending foxes| +6218|150774|5805|1|8|14598.16|0.06|0.05|N|O|1997-01-06|1997-01-07|1997-01-31|TAKE BACK RETURN|MAIL| ironic grouches thrash slyl| +6218|57352|7353|2|40|52374.00|0.09|0.07|N|O|1996-12-29|1997-01-05|1997-01-17|TAKE BACK RETURN|SHIP|rash across th| +6218|110862|8396|3|49|91770.14|0.09|0.07|N|O|1997-03-01|1996-12-30|1997-03-26|DELIVER IN PERSON|SHIP| across the quickly ironic requests| +6218|55018|29|4|11|10703.11|0.08|0.03|N|O|1996-12-26|1997-02-06|1996-12-27|DELIVER IN PERSON|RAIL|fully regular ins| +6218|85014|5015|5|14|13986.14|0.01|0.05|N|O|1996-12-07|1997-01-29|1996-12-25|COLLECT COD|REG AIR|blithely furiou| +6218|13929|3930|6|5|9214.60|0.05|0.06|N|O|1997-01-18|1997-02-14|1997-02-16|TAKE BACK RETURN|AIR|hely along the ev| +6218|98513|3532|7|35|52902.85|0.08|0.05|N|O|1996-12-16|1997-01-06|1997-01-10|DELIVER IN PERSON|TRUCK|sts. furiously r| +6219|107577|7578|1|19|30106.83|0.00|0.06|A|F|1994-08-11|1994-10-18|1994-09-04|NONE|MAIL|tect blithely furiously regular ins| +6219|44164|6669|2|48|53191.68|0.10|0.00|R|F|1994-11-12|1994-09-18|1994-12-10|NONE|REG AIR| the ironic, quiet packa| +6220|20991|3494|1|43|82215.57|0.04|0.07|N|O|1997-09-15|1997-09-16|1997-09-24|COLLECT COD|RAIL|latelets are blithely unusual accounts. car| +6221|194307|4308|1|22|30828.60|0.10|0.03|N|F|1995-06-05|1995-07-30|1995-06-26|TAKE BACK RETURN|SHIP|ans wake quickly slyly s| +6222|35807|3317|1|20|34856.00|0.07|0.06|N|O|1995-11-14|1995-11-09|1995-11-20|TAKE BACK RETURN|AIR|ly. even, regula| +6222|199893|4932|2|24|47829.36|0.07|0.05|N|O|1996-01-16|1995-11-05|1996-01-26|DELIVER IN PERSON|RAIL|tructions cajole sly| +6222|191716|4236|3|33|59654.43|0.02|0.08|N|O|1995-10-21|1995-12-13|1995-11-10|NONE|AIR|to the busi| +6222|167742|2775|4|22|39814.28|0.01|0.08|N|O|1995-11-18|1995-11-30|1995-11-24|COLLECT COD|SHIP|ully express escapades slee| +6223|36208|6209|1|22|25172.40|0.08|0.03|R|F|1992-03-22|1992-04-11|1992-04-08|COLLECT COD|TRUCK|rding to the theodolites. f| +6223|132015|9555|2|23|24081.23|0.08|0.02|R|F|1992-05-22|1992-03-19|1992-06-08|NONE|RAIL|maintain caref| +6223|171395|6430|3|18|26395.02|0.05|0.08|A|F|1992-03-11|1992-04-20|1992-04-04|TAKE BACK RETURN|AIR|ng packages might boost quickl| +6223|29573|7080|4|24|36061.68|0.04|0.06|A|F|1992-03-10|1992-05-01|1992-03-28|DELIVER IN PERSON|MAIL|special requests according to| +6248|90588|8116|1|28|44200.24|0.10|0.07|N|O|1997-01-27|1997-02-04|1997-02-24|DELIVER IN PERSON|MAIL|even foxes hag| +6248|106949|1970|2|34|66501.96|0.09|0.06|N|O|1997-02-10|1997-02-14|1997-02-15|TAKE BACK RETURN|MAIL| dependenci| +6248|78531|1039|3|20|30190.60|0.07|0.03|N|O|1997-03-08|1997-02-22|1997-03-19|COLLECT COD|RAIL|ites nod according to t| +6249|87653|162|1|8|13125.20|0.04|0.01|N|F|1995-06-04|1995-05-21|1995-06-22|DELIVER IN PERSON|MAIL|ajole? carefu| +6249|182105|2106|2|16|18993.60|0.09|0.01|N|O|1995-06-24|1995-05-27|1995-06-25|TAKE BACK RETURN|RAIL|l deposits detect slyly. requests above th| +6249|27455|4962|3|4|5529.80|0.01|0.02|N|O|1995-07-04|1995-06-01|1995-08-03|TAKE BACK RETURN|TRUCK| the quickly ironic notorni| +6249|28873|8874|4|4|7207.48|0.03|0.03|R|F|1995-05-07|1995-05-28|1995-05-18|NONE|FOB|ven theodolites. silent in| +6250|93598|8617|1|18|28648.62|0.03|0.04|R|F|1995-01-06|1994-12-27|1995-01-30|COLLECT COD|SHIP| regular deposits-- carefully thin a| +6250|92978|5488|2|16|31535.52|0.09|0.08|A|F|1994-12-04|1994-12-25|1994-12-24|COLLECT COD|RAIL|across the slyly bold pinto beans. | +6250|65400|2919|3|9|12288.60|0.01|0.06|A|F|1994-11-25|1995-01-11|1994-12-23|TAKE BACK RETURN|FOB|egular instructions are regularly. sile| +6250|172916|5434|4|16|31822.56|0.02|0.06|A|F|1994-12-16|1994-12-30|1995-01-04|DELIVER IN PERSON|SHIP|lphins cajole care| +6250|190052|7610|5|25|28551.25|0.08|0.00|R|F|1995-02-01|1995-01-06|1995-02-14|TAKE BACK RETURN|SHIP|oxes. slyly idle dependencies according to | +6250|190492|493|6|47|74377.03|0.09|0.06|A|F|1994-12-05|1994-11-22|1995-01-04|TAKE BACK RETURN|REG AIR|are among the u| +6250|183324|3325|7|4|5629.28|0.06|0.04|A|F|1994-12-08|1994-12-04|1994-12-22|TAKE BACK RETURN|SHIP|accounts ca| +6251|114615|9638|1|33|53777.13|0.05|0.05|N|O|1997-11-05|1997-11-18|1997-11-29|DELIVER IN PERSON|FOB|sts. final deposits grow slyly reg| +6251|133351|3352|2|21|29071.35|0.03|0.02|N|O|1997-12-10|1997-11-18|1998-01-09|DELIVER IN PERSON|MAIL|ual foxes. courts slee| +6251|16406|6407|3|35|46284.00|0.00|0.05|N|O|1998-01-20|1997-12-16|1998-01-27|TAKE BACK RETURN|AIR|lyly special sauternes integrate care| +6252|16075|3579|1|2|1982.14|0.06|0.05|N|O|1996-12-19|1997-01-11|1997-01-17|DELIVER IN PERSON|AIR|e. slyly bold hockey players s| +6252|159861|4892|2|26|49942.36|0.09|0.08|N|O|1997-03-25|1997-01-04|1997-04-09|TAKE BACK RETURN|MAIL|inal pinto beans. bo| +6252|169869|4902|3|37|71737.82|0.03|0.06|N|O|1997-01-04|1996-12-29|1997-01-22|COLLECT COD|MAIL| haggle blithely ironically bold platele| +6252|183656|8693|4|38|66106.70|0.03|0.05|N|O|1997-02-23|1997-01-27|1997-03-20|COLLECT COD|TRUCK|ites. carefully ironi| +6252|103000|531|5|16|16048.00|0.01|0.02|N|O|1997-03-10|1997-02-08|1997-03-16|TAKE BACK RETURN|FOB|lithely final packages. theod| +6252|112208|9742|6|42|51248.40|0.02|0.03|N|O|1996-12-23|1997-02-05|1997-01-05|DELIVER IN PERSON|TRUCK|urts. requests are furiously| +6252|72056|4564|7|26|26729.30|0.03|0.01|N|O|1996-12-07|1997-02-27|1996-12-24|COLLECT COD|REG AIR|he silent so| +6253|41002|8515|1|44|41492.00|0.10|0.02|R|F|1994-11-22|1994-09-28|1994-12-03|DELIVER IN PERSON|MAIL|ly carefully special orbits.| +6253|107638|149|2|21|34558.23|0.01|0.03|R|F|1994-09-08|1994-09-26|1994-09-27|DELIVER IN PERSON|SHIP|ckages are dogged| +6254|154679|4680|1|34|58944.78|0.03|0.08|N|O|1998-07-22|1998-05-29|1998-08-11|NONE|MAIL| about the ca| +6254|78043|8044|2|37|37778.48|0.06|0.08|N|O|1998-06-10|1998-06-06|1998-06-27|COLLECT COD|MAIL|regular, final pint| +6254|61352|6365|3|28|36773.80|0.07|0.00|N|O|1998-04-17|1998-06-26|1998-04-27|TAKE BACK RETURN|AIR|onic theodolites boost across the b| +6254|135461|7975|4|39|58361.94|0.00|0.03|N|O|1998-05-28|1998-06-23|1998-06-25|COLLECT COD|SHIP|quests wake aga| +6254|86274|3799|5|29|36547.83|0.00|0.01|N|O|1998-04-24|1998-06-08|1998-04-26|NONE|SHIP|accounts. bold excuses nag. b| +6254|8|7509|6|3|2724.00|0.05|0.00|N|O|1998-07-03|1998-05-28|1998-07-17|TAKE BACK RETURN|AIR| ironic requests | +6255|84265|6774|1|33|41225.58|0.08|0.04|N|O|1995-12-10|1996-02-25|1995-12-30|DELIVER IN PERSON|REG AIR|iously carefully even deposits! deposits sl| +6255|38542|8543|2|5|7402.70|0.04|0.07|N|O|1996-01-25|1996-02-28|1996-02-10|TAKE BACK RETURN|SHIP| according to the furiously final depo| +6255|175138|2690|3|1|1213.13|0.02|0.00|N|O|1996-04-04|1996-01-18|1996-04-10|COLLECT COD|FOB|lithely final foxes. slyly ironic package| +6255|142690|7719|4|24|41584.56|0.08|0.01|N|O|1996-02-06|1996-01-30|1996-02-19|COLLECT COD|RAIL|efully quiet instructions impress| +6255|188140|5695|5|14|17193.96|0.09|0.04|N|O|1996-02-17|1996-01-12|1996-03-05|TAKE BACK RETURN|FOB|ies among the special r| +6255|58378|8379|6|7|9354.59|0.05|0.00|N|O|1996-03-01|1996-03-02|1996-03-15|TAKE BACK RETURN|TRUCK|ts. unusual accounts nag. ironic, e| +6280|80494|5511|1|10|14744.90|0.08|0.06|A|F|1993-10-24|1993-09-23|1993-11-22|DELIVER IN PERSON|TRUCK|c warthogs boost | +6280|61423|8942|2|41|56761.22|0.09|0.02|A|F|1993-10-08|1993-10-11|1993-10-18|DELIVER IN PERSON|AIR|its boost quickly furiously even ideas. sl| +6281|99256|4275|1|1|1255.25|0.06|0.02|N|O|1995-10-15|1995-10-07|1995-11-07|COLLECT COD|REG AIR|ts wake. furiously ironic Tiresia| +6281|193473|5993|2|40|62658.80|0.04|0.06|N|O|1995-09-19|1995-11-02|1995-10-08|DELIVER IN PERSON|RAIL|es. blithely final foxes affix bl| +6282|164448|1997|1|24|36298.56|0.06|0.04|N|O|1997-08-03|1997-09-01|1997-08-16|TAKE BACK RETURN|MAIL|blithe deposits hinder qui| +6283|12321|9825|1|50|61666.00|0.00|0.02|N|O|1997-11-05|1997-11-18|1997-11-26|TAKE BACK RETURN|FOB|e blithely along| +6283|76699|9207|2|1|1675.69|0.06|0.06|N|O|1997-11-27|1997-12-25|1997-12-10|TAKE BACK RETURN|REG AIR|ts haggle ca| +6284|55549|560|1|14|21063.56|0.05|0.06|N|O|1998-09-18|1998-07-16|1998-10-05|COLLECT COD|FOB| carefully about the furiously unu| +6284|198453|6011|2|40|62058.00|0.08|0.02|N|O|1998-07-07|1998-08-05|1998-07-30|TAKE BACK RETURN|FOB|ously express excuses migh| +6285|148342|3371|1|1|1390.34|0.00|0.01|R|F|1994-01-18|1994-01-18|1994-01-28|COLLECT COD|TRUCK|counts sleep a| +6285|168552|1069|2|9|14584.95|0.00|0.02|A|F|1993-12-27|1994-01-23|1994-01-15|COLLECT COD|AIR|ly unusual instructions. regula| +6285|41626|9139|3|39|61137.18|0.05|0.06|A|F|1994-02-22|1994-02-03|1994-03-04|COLLECT COD|MAIL|ckages-- furiously id| +6285|196295|1334|4|41|57042.89|0.08|0.00|R|F|1994-03-15|1994-01-28|1994-04-04|COLLECT COD|FOB|even deposits cajole n| +6286|105340|2871|1|5|6726.70|0.04|0.02|N|O|1996-03-29|1996-01-25|1996-04-13|DELIVER IN PERSON|SHIP|lithely fur| +6286|33349|5853|2|49|62834.66|0.08|0.07|N|O|1996-02-12|1996-03-10|1996-03-05|NONE|FOB|hely. furiously unusual accounts again| +6286|90946|3456|3|49|94910.06|0.00|0.03|N|O|1996-03-15|1996-02-05|1996-03-24|TAKE BACK RETURN|SHIP|fully express ideas across the acco| +6286|126784|9297|4|39|70620.42|0.01|0.00|N|O|1996-01-03|1996-01-20|1996-01-25|NONE|MAIL|ely according to the even pearl| +6287|119946|9947|1|7|13761.58|0.02|0.01|N|O|1997-07-06|1997-07-22|1997-07-19|NONE|AIR|, final platelets. sly theodolit| +6287|119020|6554|2|45|46755.90|0.08|0.06|N|O|1997-08-21|1997-06-04|1997-09-04|NONE|RAIL|he quickly quiet a| +6287|155059|90|3|10|11140.50|0.01|0.02|N|O|1997-06-11|1997-06-01|1997-07-03|DELIVER IN PERSON|TRUCK|s? deposits nag quickly| +6287|64518|7025|4|30|44475.30|0.02|0.08|N|O|1997-05-23|1997-06-16|1997-06-04|COLLECT COD|RAIL|quests according to th| +6287|153540|6056|5|34|54180.36|0.04|0.03|N|O|1997-08-28|1997-06-29|1997-09-12|COLLECT COD|FOB| nod. foxes hang | +6287|141600|6629|6|38|62380.80|0.00|0.06|N|O|1997-07-23|1997-06-04|1997-08-16|NONE|FOB|l accounts. carefull| +6312|27634|5141|1|23|35917.49|0.04|0.02|R|F|1992-08-30|1992-08-13|1992-09-04|DELIVER IN PERSON|FOB|of the ruthless packages main| +6312|41105|8618|2|40|41844.00|0.06|0.07|R|F|1992-07-14|1992-08-16|1992-08-12|NONE|SHIP|s the furiously even instructions use ca| +6312|41398|8911|3|2|2678.78|0.05|0.01|A|F|1992-07-30|1992-08-16|1992-08-18|NONE|TRUCK|e furiously pendin| +6312|160574|5607|4|23|37595.11|0.10|0.03|R|F|1992-10-22|1992-09-16|1992-11-08|TAKE BACK RETURN|AIR|sits haggle b| +6313|110196|7730|1|47|56690.93|0.09|0.07|N|O|1996-07-20|1996-05-15|1996-08-11|DELIVER IN PERSON|AIR|ep daringly bold th| +6313|54420|6926|2|35|48104.70|0.02|0.03|N|O|1996-05-08|1996-05-09|1996-05-27|DELIVER IN PERSON|FOB|deposits cajole express, ironic| +6313|21041|8548|3|39|37519.56|0.00|0.07|N|O|1996-04-28|1996-05-13|1996-05-16|DELIVER IN PERSON|FOB|s cajole ac| +6313|35544|5545|4|33|48824.82|0.01|0.00|N|O|1996-06-21|1996-05-01|1996-07-04|DELIVER IN PERSON|RAIL|e dependencies. | +6313|183313|868|5|4|5585.24|0.03|0.08|N|O|1996-04-11|1996-05-11|1996-04-27|TAKE BACK RETURN|RAIL|ly regular packages alon| +6314|13279|5781|1|24|28614.48|0.05|0.06|A|F|1993-10-31|1993-09-06|1993-11-07|COLLECT COD|REG AIR|accounts along t| +6315|173685|8720|1|12|21104.16|0.05|0.00|A|F|1992-06-22|1992-07-04|1992-07-06|TAKE BACK RETURN|MAIL| unusual asymptotes. slyly pending | +6315|113444|5956|2|50|72872.00|0.01|0.02|A|F|1992-05-16|1992-06-17|1992-05-29|TAKE BACK RETURN|MAIL|ronic packages. blithely silent depen| +6316|157058|2089|1|46|51292.30|0.04|0.08|N|O|1995-07-09|1995-08-09|1995-07-13|DELIVER IN PERSON|TRUCK| warthogs sleep| +6316|59137|4148|2|39|42749.07|0.06|0.00|N|O|1995-07-01|1995-08-20|1995-07-25|DELIVER IN PERSON|FOB|riously. ironic deposits| +6316|98997|8998|3|15|29939.85|0.10|0.02|N|O|1995-07-24|1995-07-14|1995-08-23|DELIVER IN PERSON|MAIL| dependencies use against the sly| +6316|35553|3063|4|35|52099.25|0.05|0.00|N|F|1995-06-13|1995-08-07|1995-06-29|NONE|AIR|the furiously even deposi| +6316|130356|357|5|42|58226.70|0.08|0.04|N|O|1995-08-04|1995-08-20|1995-08-05|NONE|AIR|ular package| +6316|92767|2768|6|10|17597.60|0.04|0.06|A|F|1995-06-09|1995-08-27|1995-06-12|COLLECT COD|FOB|r requests sleep. ironic, final packag| +6316|133994|6508|7|12|24335.88|0.03|0.02|N|F|1995-06-04|1995-07-03|1995-06-25|DELIVER IN PERSON|REG AIR|ts haggle blithely ironi| +6317|23688|3689|1|4|6446.72|0.04|0.01|N|O|1998-04-23|1998-04-11|1998-05-19|COLLECT COD|SHIP|ithe pinto beans cajole across the specia| +6317|112176|2177|2|38|45150.46|0.03|0.04|N|O|1998-04-20|1998-03-17|1998-05-16|TAKE BACK RETURN|SHIP|ously special ideas run bl| +6317|136615|1642|3|31|51199.91|0.09|0.02|N|O|1998-05-12|1998-04-15|1998-06-02|DELIVER IN PERSON|SHIP|express foxes agains| +6317|83226|5735|4|27|32648.94|0.05|0.04|N|O|1998-03-21|1998-04-13|1998-04-14|TAKE BACK RETURN|SHIP|ronic forges | +6317|169520|9521|5|10|15895.20|0.09|0.01|N|O|1998-03-07|1998-03-30|1998-03-26|COLLECT COD|MAIL|quickly regular| +6317|108667|1178|6|32|53621.12|0.09|0.07|N|O|1998-05-10|1998-03-23|1998-06-05|NONE|FOB|sh quickly. express packages affix quickly | +6317|157726|7727|7|30|53511.60|0.09|0.03|N|O|1998-01-27|1998-03-23|1998-02-10|NONE|AIR|st slyly r| +6318|87417|4942|1|6|8426.46|0.10|0.08|N|O|1998-07-31|1998-09-20|1998-08-10|TAKE BACK RETURN|RAIL|aggle furiously| +6318|12126|4628|2|1|1038.12|0.00|0.07|N|O|1998-10-06|1998-08-14|1998-10-10|TAKE BACK RETURN|RAIL|deposits. bold, unusual accounts de| +6318|189962|4999|3|32|65662.72|0.08|0.03|N|O|1998-09-04|1998-08-01|1998-09-10|COLLECT COD|AIR|iously final ideas. quickly final packages | +6318|91073|6092|4|50|53203.50|0.08|0.03|N|O|1998-10-18|1998-08-18|1998-10-30|COLLECT COD|MAIL|ly ironic deposits according to the| +6318|63567|1086|5|37|56630.72|0.03|0.07|N|O|1998-09-01|1998-08-20|1998-09-09|COLLECT COD|MAIL|ges use careful| +6318|166721|1754|6|5|8938.60|0.08|0.00|N|O|1998-07-05|1998-09-06|1998-07-23|NONE|TRUCK|mpress furiously | +6318|64366|4367|7|17|22616.12|0.09|0.05|N|O|1998-09-26|1998-09-19|1998-10-03|COLLECT COD|AIR|fluffily. final requests ser| +6319|192120|2121|1|22|26666.64|0.02|0.08|A|F|1994-04-14|1994-04-05|1994-04-30|NONE|SHIP|es. unusual deposits against the | +6319|149066|6609|2|36|40142.16|0.09|0.05|A|F|1994-02-06|1994-04-11|1994-02-28|DELIVER IN PERSON|AIR|special excuses| +6319|144324|9353|3|23|31471.36|0.09|0.02|R|F|1994-04-07|1994-03-06|1994-04-23|COLLECT COD|MAIL|ic requests. carefully ironic foxes against| +6319|45538|8043|4|21|31154.13|0.09|0.05|A|F|1994-01-23|1994-02-21|1994-01-25|NONE|SHIP|ily final dependencies. even gro| +6319|153431|8462|5|43|63830.49|0.08|0.05|A|F|1994-03-09|1994-03-16|1994-03-17|DELIVER IN PERSON|REG AIR|instructions boost quickly? regular a| +6344|176460|6461|1|44|67604.24|0.06|0.00|N|O|1995-07-10|1995-06-17|1995-07-25|COLLECT COD|RAIL|osits cajole. quickly fina| +6344|155435|466|2|36|53655.48|0.05|0.08|R|F|1995-05-11|1995-06-08|1995-05-23|COLLECT COD|RAIL|y regular packages cajole | +6345|16626|1629|1|26|40108.12|0.07|0.08|R|F|1994-03-20|1994-03-30|1994-04-12|DELIVER IN PERSON|MAIL|yly unusual foxes cajole about the s| +6346|727|5728|1|22|35809.84|0.05|0.02|A|F|1993-04-12|1993-02-28|1993-04-23|COLLECT COD|REG AIR|lyly silent epitap| +6346|5079|2580|2|41|40346.87|0.08|0.05|R|F|1993-02-22|1993-03-30|1993-03-18|DELIVER IN PERSON|MAIL|y final requests boost deposits. furiously | +6346|160314|7863|3|8|10994.48|0.04|0.03|A|F|1993-01-26|1993-02-19|1993-02-05|DELIVER IN PERSON|FOB|ending packages cajole furious| +6346|196826|4384|4|25|48070.50|0.00|0.06|R|F|1993-02-10|1993-03-01|1993-02-11|TAKE BACK RETURN|SHIP|ges among the fluff| +6346|41573|9086|5|2|3029.14|0.06|0.05|A|F|1993-01-21|1993-04-08|1993-01-26|DELIVER IN PERSON|AIR|packages integrate. ironic, carefu| +6347|13366|5868|1|14|17911.04|0.03|0.07|N|O|1996-09-05|1996-10-16|1996-10-03|NONE|REG AIR|sts. carefully bold pains are| +6347|34846|9853|2|25|44521.00|0.04|0.07|N|O|1996-12-07|1996-10-04|1996-12-20|DELIVER IN PERSON|FOB| unwind again| +6347|45849|858|3|43|77178.12|0.07|0.07|N|O|1996-11-28|1996-10-21|1996-12-27|NONE|FOB|fter the quickly| +6347|172871|7906|4|26|50540.62|0.01|0.04|N|O|1996-10-14|1996-10-03|1996-11-08|DELIVER IN PERSON|REG AIR|sly ironic deposits. fu| +6348|170241|7793|1|18|23602.32|0.07|0.03|N|O|1996-01-27|1995-12-03|1996-02-20|COLLECT COD|SHIP|out the ironic dugouts sleep slyly final pi| +6348|36158|8662|2|42|45954.30|0.03|0.00|N|O|1995-11-20|1995-11-30|1995-12-11|COLLECT COD|SHIP|oxes. deposits hagg| +6348|105023|5024|3|36|37008.72|0.04|0.05|N|O|1995-10-10|1995-12-07|1995-10-20|COLLECT COD|SHIP| cajole carefully carefully| +6348|115320|5321|4|11|14688.52|0.07|0.01|N|O|1995-11-23|1995-12-11|1995-12-15|COLLECT COD|TRUCK| requests boost furio| +6348|179750|7302|5|5|9148.75|0.01|0.07|N|O|1995-12-14|1995-11-09|1995-12-24|DELIVER IN PERSON|FOB|ckages sleep. final foxes wake furiousl| +6348|52505|21|6|38|55385.00|0.07|0.08|N|O|1996-01-25|1995-11-25|1996-02-01|DELIVER IN PERSON|AIR|le furiously near the sp| +6348|39514|4521|7|39|56686.89|0.05|0.08|N|O|1996-02-03|1995-11-28|1996-02-18|TAKE BACK RETURN|RAIL|inal theodolites dou| +6349|95426|445|1|42|59699.64|0.09|0.02|N|O|1997-11-28|1997-11-01|1997-12-08|NONE|MAIL|ole; theodolites use slyly! | +6349|8309|3310|2|26|31649.80|0.03|0.02|N|O|1997-11-05|1997-11-05|1997-11-30|COLLECT COD|AIR|ncies around the furiousl| +6349|37365|9869|3|19|24744.84|0.07|0.02|N|O|1997-11-11|1997-11-14|1997-12-11|DELIVER IN PERSON|FOB|ccounts thrash blith| +6349|193497|1055|4|3|4771.47|0.08|0.04|N|O|1998-01-12|1997-12-17|1998-01-28|NONE|FOB| ideas integrate across| +6349|96278|8788|5|38|48422.26|0.00|0.07|N|O|1998-01-15|1997-10-31|1998-02-04|COLLECT COD|AIR|odolites haggle.| +6350|189597|9598|1|41|69150.19|0.08|0.04|A|F|1992-05-10|1992-03-04|1992-05-24|NONE|TRUCK|. final, unusual deposits sle| +6350|142621|164|2|32|53235.84|0.02|0.03|R|F|1992-03-18|1992-04-09|1992-04-16|COLLECT COD|RAIL|sts after the ruthlessly final packages ar| +6350|30130|131|3|19|20142.47|0.08|0.03|A|F|1992-04-26|1992-02-22|1992-05-12|COLLECT COD|AIR|ideas boost-- thinly bold accounts| +6351|155105|5106|1|2|2320.20|0.06|0.01|A|F|1992-06-22|1992-06-23|1992-07-16|NONE|REG AIR| regular packages. depo| +6351|36141|8645|2|10|10771.40|0.06|0.06|A|F|1992-06-19|1992-07-12|1992-07-01|COLLECT COD|RAIL|; carefully final accounts run s| +6351|6071|8572|3|16|15633.12|0.04|0.07|A|F|1992-06-15|1992-06-27|1992-06-28|COLLECT COD|TRUCK| cajole slyly| +6376|92426|2427|1|19|26949.98|0.08|0.00|N|O|1995-08-09|1995-07-16|1995-09-03|NONE|TRUCK|wake. special instructions slee| +6376|198059|3098|2|24|27769.20|0.00|0.04|N|O|1995-09-02|1995-08-19|1995-09-10|DELIVER IN PERSON|REG AIR| carefully ironic packages detect fluffily | +6377|175306|7824|1|18|24863.40|0.06|0.07|R|F|1992-04-20|1992-04-22|1992-05-11|COLLECT COD|TRUCK| even dolphins main| +6377|157144|7145|2|9|10810.26|0.02|0.08|A|F|1992-04-16|1992-06-04|1992-05-11|COLLECT COD|TRUCK|ar depths detect slyly above the ironic,| +6377|102594|7615|3|20|31931.80|0.04|0.07|A|F|1992-04-15|1992-05-25|1992-05-13|TAKE BACK RETURN|MAIL|fily regular excuses wake furiously aroun| +6377|97261|4789|4|10|12582.60|0.08|0.01|R|F|1992-04-06|1992-04-19|1992-04-26|TAKE BACK RETURN|SHIP|al accounts prom| +6377|54273|4274|5|17|20863.59|0.07|0.04|A|F|1992-06-16|1992-06-17|1992-06-19|NONE|AIR|ly blithely silent packages. ir| +6378|115316|5317|1|26|34614.06|0.00|0.07|N|O|1997-09-21|1997-11-01|1997-10-06|COLLECT COD|REG AIR|lly even asymptotes. requests c| +6378|106888|9399|2|4|7579.52|0.00|0.02|N|O|1997-12-22|1997-10-11|1997-12-30|COLLECT COD|FOB| quickly final excuses| +6378|62005|7018|3|3|2901.00|0.04|0.05|N|O|1997-12-01|1997-11-21|1997-12-27|TAKE BACK RETURN|AIR|l pinto be| +6379|17529|31|1|17|24590.84|0.00|0.03|N|O|1998-07-23|1998-08-14|1998-08-02|DELIVER IN PERSON|TRUCK|ckey players affix. ironic pinto beans s| +6379|1537|1538|2|41|58979.73|0.08|0.06|N|O|1998-07-04|1998-09-02|1998-07-18|TAKE BACK RETURN|REG AIR|fily final packages detect above| +6379|19478|9479|3|33|46116.51|0.09|0.02|N|O|1998-08-28|1998-07-27|1998-09-06|COLLECT COD|MAIL|ccounts believe closely| +6380|125811|8324|1|42|77146.02|0.06|0.02|A|F|1993-03-18|1993-01-14|1993-03-21|DELIVER IN PERSON|MAIL|ithely pending accounts d| +6380|101316|6337|2|22|28980.82|0.08|0.08|R|F|1992-12-26|1993-02-09|1993-01-25|COLLECT COD|AIR|ep blithely. ironic, ir| +6380|11625|1626|3|45|69147.90|0.07|0.00|A|F|1993-01-21|1993-01-30|1993-02-13|TAKE BACK RETURN|SHIP|ickly. theodolites| +6381|123964|1501|1|34|67590.64|0.03|0.02|R|F|1995-03-04|1995-03-31|1995-03-11|COLLECT COD|TRUCK|ly special ideas. a| +6381|51055|6066|2|11|11066.55|0.05|0.06|A|F|1995-02-19|1995-05-09|1995-03-15|TAKE BACK RETURN|MAIL|the slyly regular foxes boost quickly| +6381|80016|5033|3|23|22908.23|0.09|0.01|R|F|1995-05-16|1995-04-24|1995-06-03|DELIVER IN PERSON|TRUCK| pinto beans along the blithely unusua| +6382|174632|9667|1|28|47785.64|0.10|0.06|N|O|1998-08-01|1998-05-30|1998-08-28|DELIVER IN PERSON|FOB|ss, regular ideas. special, | +6382|26226|8729|2|15|17283.30|0.10|0.05|N|O|1998-07-17|1998-05-21|1998-07-18|TAKE BACK RETURN|REG AIR|ular, regular excuses cajole car| +6382|176605|4157|3|40|67264.00|0.00|0.06|N|O|1998-08-07|1998-06-12|1998-08-09|COLLECT COD|FOB|nts above the quickly ironic| +6382|183535|1090|4|18|29133.54|0.07|0.05|N|O|1998-04-25|1998-05-24|1998-05-20|NONE|AIR|t the quickly| +6382|63996|1515|5|42|82319.58|0.03|0.00|N|O|1998-05-16|1998-05-31|1998-06-06|COLLECT COD|REG AIR| regular pinto beans use. furiously| +6383|122132|7157|1|47|54244.11|0.01|0.04|A|F|1994-10-02|1994-09-13|1994-10-28|TAKE BACK RETURN|RAIL|y unusual | +6383|59275|9276|2|33|40730.91|0.03|0.06|R|F|1994-09-17|1994-09-22|1994-09-30|NONE|SHIP|heodolites are. doggedly ironic a| +6408|158430|8431|1|4|5953.72|0.02|0.04|A|F|1992-05-24|1992-05-16|1992-05-30|DELIVER IN PERSON|REG AIR|st above the pending| +6408|130628|629|2|49|81272.38|0.00|0.03|R|F|1992-07-10|1992-06-13|1992-07-30|DELIVER IN PERSON|FOB| special packages mold. slyl| +6408|59729|9730|3|7|11821.04|0.10|0.03|R|F|1992-07-21|1992-06-24|1992-08-06|DELIVER IN PERSON|SHIP| alongside of the bold, ev| +6408|63505|3506|4|17|24964.50|0.09|0.03|A|F|1992-06-24|1992-05-15|1992-07-08|COLLECT COD|TRUCK|l sheaves. even p| +6408|126496|1521|5|1|1522.49|0.08|0.08|A|F|1992-06-29|1992-06-25|1992-07-23|TAKE BACK RETURN|TRUCK|s cajole. car| +6409|75812|827|1|36|64361.16|0.02|0.03|R|F|1994-06-12|1994-03-14|1994-06-13|NONE|FOB|y. furiously reg| +6409|159051|6597|2|16|17760.80|0.01|0.07|A|F|1994-04-16|1994-03-14|1994-05-02|NONE|MAIL|ns haggle. f| +6409|166998|9515|3|31|64014.69|0.10|0.00|R|F|1994-03-06|1994-05-11|1994-04-01|NONE|AIR|y even accounts. final, bold platelets int| +6409|121765|4278|4|2|3573.52|0.05|0.06|A|F|1994-04-20|1994-03-26|1994-04-27|TAKE BACK RETURN|MAIL|ic accounts mold after the accounts. sl| +6410|20510|5515|1|3|4291.53|0.06|0.01|A|F|1993-07-13|1993-08-01|1993-07-14|NONE|SHIP|lar accounts h| +6410|106998|9509|2|48|96239.52|0.04|0.07|A|F|1993-08-28|1993-07-13|1993-09-26|NONE|RAIL|dolites haggle blithely across th| +6410|112619|2620|3|34|55474.74|0.03|0.05|R|F|1993-09-14|1993-07-23|1993-10-07|DELIVER IN PERSON|REG AIR|riously regular brai| +6410|172624|2625|4|32|54291.84|0.03|0.01|A|F|1993-09-08|1993-06-28|1993-09-29|DELIVER IN PERSON|REG AIR|ular packages wake slyly ideas. c| +6410|82187|7204|5|26|30398.68|0.06|0.03|R|F|1993-08-12|1993-07-01|1993-08-19|DELIVER IN PERSON|SHIP|. furiously | +6410|111696|9230|6|39|66599.91|0.09|0.05|R|F|1993-06-24|1993-07-09|1993-07-22|COLLECT COD|AIR|ress requests wake carefully fluffily fin| +6411|43977|1490|1|47|90285.59|0.06|0.07|N|O|1997-03-02|1997-04-09|1997-03-31|NONE|SHIP|lithely bold platelets along the| +6411|115033|2567|2|27|28296.81|0.02|0.03|N|O|1997-01-20|1997-04-04|1997-02-04|NONE|MAIL|l deposits wake quickly furio| +6411|155791|3337|3|8|14774.32|0.09|0.02|N|O|1997-03-04|1997-03-27|1997-03-16|DELIVER IN PERSON|FOB| express, idle pinto beans about | +6412|194395|6915|1|46|68511.94|0.05|0.02|N|O|1997-10-27|1997-09-17|1997-11-05|COLLECT COD|TRUCK|cajole above the carefully s| +6412|181085|6122|2|8|9328.64|0.07|0.00|N|O|1997-08-15|1997-10-03|1997-09-01|DELIVER IN PERSON|REG AIR|s impress bravely blithely ex| +6412|85693|3218|3|30|50360.70|0.10|0.07|N|O|1997-11-30|1997-11-02|1997-12-27|NONE|AIR|ly special depos| +6412|41320|8833|4|8|10090.56|0.10|0.01|N|O|1997-11-11|1997-09-13|1997-12-10|COLLECT COD|RAIL|hrash carefully about the furi| +6412|64510|2029|5|24|35388.24|0.02|0.01|N|O|1997-12-05|1997-11-08|1997-12-19|DELIVER IN PERSON|FOB| asymptotes. even excuses ar| +6412|16989|1992|6|6|11435.88|0.08|0.07|N|O|1997-11-03|1997-10-03|1997-11-10|NONE|TRUCK|s. blithely ir| +6412|122887|2888|7|12|22918.56|0.06|0.04|N|O|1997-11-18|1997-10-17|1997-11-28|NONE|SHIP|ding reque| +6413|159237|6783|1|1|1296.23|0.09|0.05|R|F|1992-10-13|1992-09-12|1992-11-08|NONE|SHIP|he theodolites are carefu| +6414|82342|9867|1|43|56946.62|0.00|0.06|A|F|1995-05-06|1995-03-03|1995-05-09|DELIVER IN PERSON|MAIL|packages. regu| +6414|119349|4372|2|45|61575.30|0.01|0.05|A|F|1995-02-09|1995-04-28|1995-02-20|NONE|RAIL|s. quickly ironic asymptotes kindl| +6414|85326|343|3|25|32783.00|0.00|0.07|A|F|1995-02-18|1995-03-02|1995-03-12|TAKE BACK RETURN|FOB|ual instructions wake above the som| +6414|70069|7591|4|50|51953.00|0.04|0.06|R|F|1995-02-01|1995-04-06|1995-02-09|COLLECT COD|AIR|s final packages detect deposits. orbit| +6415|124086|1623|1|13|14431.04|0.06|0.00|R|F|1993-11-27|1993-12-03|1993-12-24|COLLECT COD|SHIP|y regular instruc| +6415|98405|3424|2|23|32278.20|0.09|0.05|A|F|1994-01-19|1993-12-08|1994-02-09|COLLECT COD|AIR| requests use carefully after the bli| +6415|91858|6877|3|11|20348.35|0.06|0.04|A|F|1993-12-27|1994-01-18|1994-01-25|DELIVER IN PERSON|RAIL|ular packages: final| +6440|76873|6874|1|47|86943.89|0.07|0.06|N|O|1997-12-21|1998-01-17|1997-12-29|COLLECT COD|RAIL|lyly about the quickly ironic| +6440|192246|2247|2|20|26764.80|0.01|0.06|N|O|1998-03-17|1998-02-07|1998-03-31|TAKE BACK RETURN|TRUCK|ly ironic th| +6440|70904|905|3|4|7499.60|0.03|0.02|N|O|1997-11-25|1998-01-09|1997-11-30|DELIVER IN PERSON|FOB|nal instru| +6440|80219|220|4|10|11992.10|0.06|0.06|N|O|1997-12-30|1998-01-31|1998-01-27|COLLECT COD|FOB|mong the carefully express accounts b| +6441|61786|1787|1|44|76902.32|0.10|0.04|A|F|1993-12-02|1993-12-07|1993-12-19|TAKE BACK RETURN|SHIP|structions| +6441|30540|8050|2|40|58821.60|0.05|0.01|R|F|1993-12-31|1993-11-10|1994-01-24|COLLECT COD|RAIL|ly deposits. slyly unusual plate| +6441|84284|4285|3|9|11414.52|0.08|0.00|A|F|1993-11-28|1993-12-24|1993-12-08|COLLECT COD|MAIL|s wake blithely regular,| +6441|157148|2179|4|29|34949.06|0.06|0.08|R|F|1993-09-30|1993-11-21|1993-10-11|DELIVER IN PERSON|SHIP|ideas. fluffily ruthless dependencies | +6441|173263|815|5|39|52114.14|0.06|0.03|A|F|1994-01-18|1993-12-13|1994-01-26|COLLECT COD|AIR|en, regula| +6441|30873|5880|6|47|84781.89|0.10|0.01|A|F|1993-12-20|1993-11-09|1993-12-23|NONE|SHIP|le. final foxe| +6441|68090|8091|7|23|24336.07|0.06|0.04|R|F|1993-10-12|1993-11-15|1993-10-26|COLLECT COD|AIR|special waters. carefu| +6442|186399|8918|1|8|11883.12|0.03|0.07|R|F|1995-02-03|1994-12-16|1995-02-25|DELIVER IN PERSON|AIR|urious requests across the requests cajole | +6443|122241|4754|1|10|12632.40|0.10|0.04|N|O|1996-06-19|1996-04-20|1996-06-28|DELIVER IN PERSON|REG AIR|ong the express| +6443|93206|734|2|50|59960.00|0.05|0.03|N|O|1996-07-18|1996-05-16|1996-08-14|NONE|AIR|olites. ironic accounts hag| +6443|102218|9749|3|3|3660.63|0.03|0.05|N|O|1996-04-09|1996-04-22|1996-05-02|DELIVER IN PERSON|TRUCK|nto beans according to the dolphins b| +6443|173866|6384|4|10|19398.60|0.08|0.05|N|O|1996-06-12|1996-05-17|1996-06-15|TAKE BACK RETURN|SHIP|s breach furiously fi| +6443|156657|4203|5|48|82255.20|0.08|0.06|N|O|1996-04-19|1996-05-25|1996-04-20|TAKE BACK RETURN|MAIL| the ideas. idly even| +6443|131926|9466|6|47|92022.24|0.01|0.08|N|O|1996-03-22|1996-06-06|1996-03-31|NONE|REG AIR|ches. fluffily bold packag| +6443|72434|4942|7|39|54850.77|0.03|0.06|N|O|1996-05-09|1996-06-09|1996-05-20|DELIVER IN PERSON|REG AIR|inal packages-- blithely s| +6444|191623|1624|1|36|61726.32|0.08|0.07|N|O|1996-02-28|1996-02-14|1996-03-19|NONE|TRUCK|ly silent packages. silently silent deposi| +6444|198911|3950|2|24|48237.84|0.09|0.00|N|O|1996-02-01|1996-02-06|1996-02-24|TAKE BACK RETURN|MAIL|kly regular requests. quickly fi| +6444|84479|6988|3|26|38050.22|0.02|0.00|N|O|1996-01-10|1996-01-18|1996-01-26|NONE|SHIP|re never. slyly pend| +6444|32671|181|4|8|12829.36|0.09|0.02|N|O|1996-02-28|1996-02-13|1996-03-24|COLLECT COD|MAIL|ccounts are enticingly about the ironic,| +6444|94508|2036|5|21|31552.50|0.00|0.00|N|O|1996-02-09|1996-01-07|1996-02-15|TAKE BACK RETURN|MAIL|t slyly expr| +6445|61670|4177|1|30|48950.10|0.05|0.05|R|F|1994-10-15|1994-12-02|1994-11-11|TAKE BACK RETURN|RAIL|ructions. accounts a| +6445|74299|1821|2|50|63664.50|0.06|0.04|R|F|1994-11-09|1994-12-09|1994-11-28|TAKE BACK RETURN|REG AIR|riously even instru| +6445|130141|5168|3|42|49187.88|0.09|0.00|R|F|1994-09-29|1994-12-11|1994-10-10|DELIVER IN PERSON|FOB|ests haggle. ironic, special foxes detect| +6445|77717|2732|4|38|64398.98|0.07|0.03|R|F|1994-10-17|1994-11-09|1994-11-02|NONE|RAIL|carefully final, ironic asymptotes. b| +6445|187809|5364|5|16|30348.80|0.07|0.00|A|F|1995-01-01|1994-10-29|1995-01-02|DELIVER IN PERSON|FOB|ests. slyly special dolphins according| +6445|89492|9493|6|23|34074.27|0.03|0.03|R|F|1994-10-19|1994-10-29|1994-11-10|COLLECT COD|MAIL|tes lose slyly against th| +6445|80880|5897|7|49|91183.12|0.10|0.00|A|F|1994-11-14|1994-11-18|1994-12-14|COLLECT COD|TRUCK|ously blithe asymptotes amo| +6446|139944|9945|1|21|41662.74|0.10|0.03|R|F|1993-08-30|1993-07-18|1993-09-04|COLLECT COD|MAIL|epths. requests haggle against the daring, | +6446|33722|1232|2|12|19868.64|0.07|0.08|R|F|1993-06-01|1993-06-14|1993-06-05|COLLECT COD|MAIL|unusual accounts sleep | +6446|160205|5238|3|47|59464.40|0.05|0.04|A|F|1993-06-06|1993-07-10|1993-07-03|DELIVER IN PERSON|TRUCK|l asymptotes sleep carefully| +6446|151211|8757|4|50|63110.50|0.05|0.03|R|F|1993-09-07|1993-07-02|1993-09-30|NONE|TRUCK|lites across the daring| +6446|373|374|5|31|39474.47|0.03|0.06|A|F|1993-06-16|1993-06-23|1993-06-20|NONE|MAIL|lly pending deposits| +6446|56748|1759|6|35|59665.90|0.01|0.02|R|F|1993-08-25|1993-06-14|1993-09-14|DELIVER IN PERSON|SHIP|ly alongside of t| +6446|148120|3149|7|47|54901.64|0.01|0.04|A|F|1993-05-15|1993-07-11|1993-06-06|DELIVER IN PERSON|SHIP|nic packag| +6447|43440|5945|1|31|42886.64|0.10|0.01|R|F|1992-09-06|1992-08-20|1992-09-27|TAKE BACK RETURN|SHIP|es nag slyly blithe r| +6447|79526|4541|2|30|45165.60|0.02|0.01|R|F|1992-10-19|1992-09-04|1992-11-12|TAKE BACK RETURN|MAIL|asymptotes unwind furiously | +6447|184453|6972|3|28|43048.60|0.08|0.03|A|F|1992-09-01|1992-09-23|1992-09-12|TAKE BACK RETURN|MAIL|hely deposits. | +6447|95339|358|4|4|5337.32|0.10|0.08|R|F|1992-09-03|1992-08-19|1992-09-23|COLLECT COD|REG AIR|es are thinly| +6447|154983|4984|5|6|12227.88|0.04|0.04|R|F|1992-09-09|1992-08-06|1992-09-30|DELIVER IN PERSON|REG AIR|es are slyly above the furiously iro| +6472|1380|1381|1|26|33315.88|0.04|0.01|N|O|1997-03-30|1997-03-18|1997-04-22|TAKE BACK RETURN|REG AIR|uickly final multipliers wak| +6473|16665|4169|1|20|31633.20|0.10|0.01|N|O|1997-09-25|1997-09-19|1997-10-13|NONE|RAIL| requests cajole. slyly unusual deposits a| +6473|71857|4365|2|12|21946.20|0.03|0.03|N|O|1997-11-12|1997-10-14|1997-12-03|NONE|REG AIR|le. slyly bold deposits| +6473|94869|4870|3|8|14910.88|0.01|0.06|N|O|1997-09-09|1997-10-14|1997-09-19|COLLECT COD|TRUCK|ccounts haggle furious| +6473|52468|7479|4|33|46875.18|0.05|0.05|N|O|1997-10-04|1997-08-19|1997-10-15|NONE|TRUCK| foxes wake. furiously unusual foxes are.| +6473|24359|1866|5|36|46200.60|0.10|0.06|N|O|1997-09-17|1997-09-11|1997-09-28|DELIVER IN PERSON|FOB|posits nod| +6473|198970|1490|6|10|20689.70|0.07|0.07|N|O|1997-08-12|1997-09-15|1997-08-28|DELIVER IN PERSON|RAIL| the excuses wake blithely regular pin| +6474|45266|7771|1|34|41182.84|0.10|0.07|N|O|1998-05-27|1998-04-03|1998-05-28|COLLECT COD|RAIL|ringly sile| +6474|182083|7120|2|31|36117.48|0.03|0.08|N|O|1998-05-06|1998-03-14|1998-05-17|DELIVER IN PERSON|TRUCK|nst the even, bold | +6474|60441|2948|3|41|57459.04|0.09|0.08|N|O|1998-05-12|1998-05-01|1998-05-20|COLLECT COD|TRUCK|yly against the pinto beans; c| +6474|16913|4417|4|25|45747.75|0.05|0.06|N|O|1998-05-17|1998-04-18|1998-06-15|DELIVER IN PERSON|RAIL|ly foxes. car| +6475|90139|7667|1|7|7903.91|0.09|0.02|A|F|1992-02-17|1992-03-17|1992-03-03|TAKE BACK RETURN|AIR|ce the qui| +6476|127096|7097|1|13|14600.17|0.04|0.08|N|O|1997-01-22|1996-11-05|1997-02-15|COLLECT COD|REG AIR|the silently bold depo| +6476|88056|3073|2|33|34453.65|0.01|0.00|N|O|1996-11-10|1996-11-18|1996-11-24|COLLECT COD|AIR|ccounts. slyly even| +6476|154416|1962|3|14|20585.74|0.04|0.04|N|O|1997-01-12|1996-11-03|1997-01-18|DELIVER IN PERSON|SHIP|ake blithely deposits. blithely regula| +6476|53676|8687|4|13|21185.71|0.01|0.06|N|O|1996-11-23|1996-11-19|1996-12-22|COLLECT COD|MAIL|inst the enti| +6476|124033|9058|5|26|27482.78|0.09|0.05|N|O|1996-11-13|1996-12-17|1996-12-06|NONE|RAIL|equests cajole | +6476|10502|5505|6|46|64975.00|0.03|0.05|N|O|1996-10-10|1996-12-20|1996-11-09|TAKE BACK RETURN|TRUCK| to nag. blithe| +6477|76083|1098|1|2|2118.16|0.03|0.04|R|F|1994-03-22|1994-02-09|1994-04-16|DELIVER IN PERSON|MAIL| asymptotes| +6477|122083|7108|2|45|49728.60|0.09|0.01|R|F|1993-12-16|1994-03-02|1994-01-12|NONE|RAIL| special asymptotes detect bli| +6478|184236|4237|1|31|40927.13|0.10|0.00|R|F|1993-11-06|1993-08-26|1993-11-16|COLLECT COD|SHIP|ss platelets against the caref| +6478|39468|1972|2|18|25334.28|0.06|0.03|A|F|1993-10-17|1993-09-13|1993-10-25|NONE|TRUCK|al pinto b| +6478|134003|1543|3|20|20740.00|0.06|0.05|R|F|1993-07-13|1993-10-06|1993-07-14|COLLECT COD|MAIL|y. packages are excuses; sly| +6478|175823|5824|4|2|3797.64|0.05|0.05|A|F|1993-11-06|1993-08-22|1993-11-09|COLLECT COD|TRUCK|sly. express gifts x-ray into t| +6478|48932|3941|5|18|33856.74|0.09|0.05|A|F|1993-09-09|1993-08-24|1993-09-23|NONE|REG AIR|e carefully final| +6479|125294|2831|1|21|27705.09|0.02|0.08|N|O|1998-06-17|1998-05-19|1998-07-12|COLLECT COD|MAIL|t the fluffily even| +6479|12498|2499|2|2|2820.98|0.07|0.01|N|O|1998-03-18|1998-05-16|1998-04-14|NONE|MAIL|ending accoun| +6479|48611|3620|3|16|24953.76|0.09|0.01|N|O|1998-06-11|1998-05-14|1998-07-05|TAKE BACK RETURN|SHIP|ets. requests wake bli| +6504|94541|4542|1|45|69099.30|0.08|0.06|N|O|1996-05-06|1996-05-09|1996-05-31|TAKE BACK RETURN|SHIP|e asymptotes. furious foxes n| +6504|135891|5892|2|31|59733.59|0.04|0.01|N|O|1996-07-06|1996-05-23|1996-08-05|NONE|FOB|ending, pending accounts. furiously| +6505|93583|1111|1|30|47297.40|0.10|0.06|N|O|1995-07-11|1995-05-30|1995-08-02|NONE|SHIP|, bold platelets use about | +6505|36615|9119|2|17|26377.37|0.01|0.01|N|O|1995-07-07|1995-06-05|1995-07-23|DELIVER IN PERSON|AIR|ously ironic deposits boost blit| +6505|187304|4859|3|39|54260.70|0.06|0.01|N|O|1995-07-13|1995-06-07|1995-08-06|DELIVER IN PERSON|SHIP|ly alongside of the fluffil| +6505|13861|1365|4|28|49696.08|0.00|0.06|N|O|1995-06-23|1995-05-24|1995-06-24|DELIVER IN PERSON|REG AIR| blithely regular waters. quickly even dolp| +6505|154600|4601|5|22|36401.20|0.10|0.00|A|F|1995-06-03|1995-05-29|1995-06-10|TAKE BACK RETURN|AIR|s. furiously ironic packag| +6505|160309|310|6|18|24647.40|0.09|0.02|A|F|1995-04-09|1995-05-15|1995-04-16|NONE|MAIL|y final packages na| +6506|111758|9292|1|39|69020.25|0.07|0.00|R|F|1993-05-22|1993-04-12|1993-06-21|NONE|TRUCK|furiously at the fluffily express ideas. p| +6506|104912|2443|2|33|63258.03|0.03|0.07|A|F|1993-06-09|1993-04-16|1993-06-13|DELIVER IN PERSON|REG AIR|around the blithe| +6506|47477|2486|3|30|42734.10|0.07|0.01|A|F|1993-05-11|1993-03-31|1993-05-31|COLLECT COD|MAIL|ironic excuses alo| +6507|165108|5109|1|47|55135.70|0.08|0.07|N|O|1998-05-25|1998-07-11|1998-06-01|NONE|RAIL|packages wake quickly against the| +6507|159851|2367|2|30|57325.50|0.03|0.08|N|O|1998-08-17|1998-08-08|1998-09-15|COLLECT COD|FOB|uses are ir| +6507|4396|9397|3|38|49414.82|0.08|0.04|N|O|1998-07-18|1998-07-24|1998-08-17|COLLECT COD|SHIP|e along the iro| +6507|80202|7727|4|30|35466.00|0.07|0.07|N|O|1998-08-08|1998-08-06|1998-08-16|COLLECT COD|MAIL|e regularly. ironic pin| +6507|139673|7213|5|37|63368.79|0.00|0.07|N|O|1998-06-12|1998-07-01|1998-06-20|NONE|MAIL|ular accounts grow blithely at the sly| +6507|72469|2470|6|4|5765.84|0.10|0.03|N|O|1998-06-08|1998-08-04|1998-06-09|COLLECT COD|AIR|ave theodolites| +6507|174356|4357|7|50|71517.50|0.04|0.05|N|O|1998-09-02|1998-06-21|1998-09-08|NONE|FOB| final requests m| +6508|186925|6926|1|21|42250.32|0.03|0.00|R|F|1994-06-08|1994-06-26|1994-06-19|DELIVER IN PERSON|FOB|s. final packages affix blithely. carefu| +6508|43317|830|2|11|13863.41|0.06|0.07|A|F|1994-07-10|1994-05-10|1994-07-16|TAKE BACK RETURN|SHIP|foxes use regular| +6508|20734|8241|3|43|71153.39|0.00|0.06|A|F|1994-06-02|1994-05-21|1994-06-18|COLLECT COD|MAIL|ully. even instructions cajole alo| +6508|64365|9378|4|11|14622.96|0.06|0.05|R|F|1994-07-29|1994-06-01|1994-08-10|TAKE BACK RETURN|SHIP|e; slyly final pinto beans sleep| +6508|168251|8252|5|43|56727.75|0.08|0.01|R|F|1994-06-15|1994-06-23|1994-07-05|DELIVER IN PERSON|SHIP|ithely express r| +6508|185120|5121|6|34|40974.08|0.08|0.00|R|F|1994-05-29|1994-05-15|1994-06-07|NONE|FOB|ckages are across the| +6509|54366|9377|1|21|27727.56|0.02|0.08|R|F|1993-09-28|1993-10-22|1993-09-29|TAKE BACK RETURN|REG AIR|accounts are fluffily. fin| +6509|119910|2422|2|22|42458.02|0.02|0.08|R|F|1993-11-28|1993-10-24|1993-12-16|TAKE BACK RETURN|SHIP|pecial instructi| +6509|122002|2003|3|2|2048.00|0.05|0.02|A|F|1993-10-10|1993-10-28|1993-11-06|COLLECT COD|REG AIR|xes. fluffily s| +6509|84273|6782|4|10|12572.70|0.07|0.01|A|F|1993-11-25|1993-10-15|1993-11-27|DELIVER IN PERSON|MAIL|s. furiously pending fox| +6509|174847|7365|5|25|48046.00|0.10|0.00|R|F|1993-09-15|1993-10-22|1993-09-29|TAKE BACK RETURN|TRUCK|sts. slyly even deposits haggle fluffi| +6510|38837|1341|1|29|51499.07|0.00|0.08|N|O|1995-09-25|1995-09-12|1995-10-03|NONE|MAIL|ins. quickly even re| +6510|132585|2586|2|14|22646.12|0.04|0.08|N|O|1995-08-19|1995-07-17|1995-08-21|COLLECT COD|MAIL|t the fluffily quick theodolit| +6510|139681|2195|3|10|17206.80|0.00|0.03|N|O|1995-10-11|1995-08-22|1995-10-30|COLLECT COD|RAIL|thely pending accou| +6511|66809|4328|1|28|49722.40|0.10|0.02|N|O|1996-04-12|1996-03-19|1996-05-05|DELIVER IN PERSON|FOB|t the final,| +6511|52803|319|2|27|47406.60|0.05|0.06|N|O|1996-04-08|1996-03-21|1996-04-22|DELIVER IN PERSON|AIR|tructions integrate according t| +6511|51206|8722|3|15|17358.00|0.03|0.08|N|O|1996-02-06|1996-02-17|1996-02-20|TAKE BACK RETURN|MAIL|ithely even platelets. regu| +6536|157043|4589|1|12|13200.48|0.02|0.05|R|F|1992-07-02|1992-05-09|1992-07-17|TAKE BACK RETURN|MAIL|ts are. furious| +6536|14187|9190|2|10|11011.80|0.10|0.05|R|F|1992-05-12|1992-05-04|1992-05-16|TAKE BACK RETURN|SHIP| theodolites sleep f| +6536|29304|4309|3|9|11099.70|0.09|0.02|R|F|1992-05-18|1992-06-19|1992-06-01|DELIVER IN PERSON|AIR|kly final accounts. quickly re| +6537|21290|3793|1|45|54508.05|0.10|0.02|N|O|1997-10-18|1997-08-05|1997-11-04|TAKE BACK RETURN|AIR|fix slyly ab| +6537|4268|6769|2|2|2344.52|0.06|0.08|N|O|1997-07-23|1997-08-21|1997-08-20|DELIVER IN PERSON|FOB|ent requests except | +6537|117705|217|3|46|79244.20|0.09|0.07|N|O|1997-10-18|1997-08-01|1997-11-15|TAKE BACK RETURN|FOB|cial foxes according | +6538|49502|7015|1|42|60963.00|0.00|0.08|R|F|1992-06-08|1992-05-27|1992-06-22|TAKE BACK RETURN|RAIL|lly instructions| +6538|169872|2389|2|28|54372.36|0.09|0.08|R|F|1992-04-27|1992-05-09|1992-05-07|NONE|AIR|late. blithely fina| +6538|33311|3312|3|32|39817.92|0.10|0.00|R|F|1992-03-24|1992-04-06|1992-04-18|COLLECT COD|REG AIR|to sleep quickly. blithely pendin| +6538|57651|7652|4|30|48259.50|0.06|0.02|R|F|1992-05-23|1992-05-07|1992-06-04|NONE|MAIL|ges sleep blithely. carefull| +6538|125735|5736|5|23|40496.79|0.09|0.03|R|F|1992-03-25|1992-05-02|1992-03-30|COLLECT COD|MAIL|l packages haggle. special ex| +6538|23683|3684|6|3|4820.04|0.10|0.06|R|F|1992-05-18|1992-04-03|1992-06-08|COLLECT COD|MAIL| quickly accounts. car| +6538|36016|8520|7|34|32368.34|0.05|0.00|R|F|1992-05-31|1992-05-09|1992-06-21|COLLECT COD|RAIL|ts sleep furiously alongside| +6539|116091|6092|1|45|49819.05|0.08|0.04|N|O|1997-11-14|1997-12-06|1997-12-09|TAKE BACK RETURN|AIR|along the dolphins cajole whithout the flu| +6539|136715|6716|2|30|52551.30|0.10|0.06|N|O|1998-01-06|1997-12-18|1998-01-21|COLLECT COD|FOB|quickly express accoun| +6539|153356|8387|3|43|60602.05|0.09|0.04|N|O|1998-01-20|1997-12-24|1998-01-29|TAKE BACK RETURN|REG AIR|ag above the accounts. sometimes specia| +6539|44126|9135|4|9|9631.08|0.08|0.01|N|O|1998-02-13|1998-01-11|1998-02-28|DELIVER IN PERSON|FOB|usly furiously | +6539|22092|4595|5|42|42591.78|0.02|0.05|N|O|1997-12-07|1997-12-26|1997-12-18|COLLECT COD|REG AIR|eposits wake furiou| +6539|86848|4373|6|39|71558.76|0.07|0.03|N|O|1998-02-11|1997-12-19|1998-03-04|NONE|RAIL|riously. sent| +6539|43793|3794|7|47|81629.13|0.09|0.05|N|O|1997-11-27|1997-12-13|1997-12-09|TAKE BACK RETURN|RAIL|ole quickl| +6540|20778|3281|1|46|78143.42|0.05|0.01|N|O|1998-06-14|1998-04-22|1998-06-18|TAKE BACK RETURN|TRUCK|eans against the quickly final acco| +6540|7565|2566|2|44|64792.64|0.08|0.05|N|O|1998-03-17|1998-04-27|1998-04-15|DELIVER IN PERSON|RAIL| ideas should cajole accordin| +6540|128151|3176|3|42|49524.30|0.00|0.06|N|O|1998-04-21|1998-04-03|1998-05-07|DELIVER IN PERSON|MAIL|kages integrate furiously acc| +6541|125803|3340|1|30|54864.00|0.10|0.03|A|F|1994-07-11|1994-08-27|1994-07-12|DELIVER IN PERSON|FOB| the quickly express packages. sometimes | +6541|156652|1683|2|45|76889.25|0.08|0.01|A|F|1994-08-24|1994-08-14|1994-08-28|DELIVER IN PERSON|AIR|egular deposits. fluffil| +6542|141869|9412|1|6|11465.16|0.09|0.01|N|O|1997-06-19|1997-05-21|1997-06-29|DELIVER IN PERSON|REG AIR|ronic requests. even dependencies| +6542|179856|7408|2|38|73562.30|0.05|0.06|N|O|1997-04-24|1997-07-20|1997-05-06|DELIVER IN PERSON|FOB| are never final requests. ev| +6542|29391|9392|3|13|17165.07|0.03|0.02|N|O|1997-05-10|1997-07-14|1997-05-21|COLLECT COD|AIR|press theodolites wake. asymptote| +6542|168473|3506|4|45|69366.15|0.09|0.08|N|O|1997-06-09|1997-06-27|1997-06-30|COLLECT COD|REG AIR|platelets cajole across t| +6542|118808|6342|5|2|3653.60|0.07|0.06|N|O|1997-07-20|1997-07-14|1997-08-18|DELIVER IN PERSON|AIR|old pinto beans ha| +6543|136826|9340|1|25|46570.50|0.01|0.02|N|O|1996-07-24|1996-08-09|1996-08-02|COLLECT COD|FOB|al theodolites integrate regular | +6568|27883|5390|1|29|52515.52|0.09|0.05|N|O|1996-11-20|1996-08-26|1996-11-29|NONE|FOB|ically furiousl| +6568|15105|5106|2|29|29582.90|0.02|0.08|N|O|1996-08-10|1996-09-23|1996-08-21|NONE|FOB|ve the regular deposits nod | +6568|58567|1073|3|36|54920.16|0.03|0.04|N|O|1996-08-29|1996-08-27|1996-09-05|TAKE BACK RETURN|FOB|y across the bold requests. q| +6568|120155|2668|4|45|52881.75|0.02|0.05|N|O|1996-11-15|1996-09-12|1996-11-16|COLLECT COD|MAIL|thely final platele| +6568|37427|7428|5|37|50483.54|0.07|0.07|N|O|1996-08-14|1996-09-19|1996-09-13|DELIVER IN PERSON|SHIP|furiously alongside o| +6568|20021|5026|6|13|12233.26|0.08|0.03|N|O|1996-11-16|1996-09-07|1996-12-03|TAKE BACK RETURN|FOB|iously special requests sleep sl| +6569|189547|9548|1|35|57278.90|0.02|0.01|A|F|1993-07-31|1993-09-06|1993-08-25|NONE|TRUCK|ickly alongside of the blithely unusual | +6569|115316|2850|2|50|66565.50|0.06|0.05|R|F|1993-08-10|1993-09-05|1993-08-31|COLLECT COD|FOB|kages haggle against the accounts. unusua| +6570|191041|6080|1|1|1132.04|0.08|0.06|N|O|1997-04-27|1997-04-04|1997-05-04|NONE|TRUCK|iously ironic deposits wake. | +6570|11969|4471|2|35|65833.60|0.00|0.02|N|O|1997-04-01|1997-02-14|1997-04-28|NONE|AIR|fully even courts. pending,| +6570|149181|9182|3|24|29524.32|0.10|0.07|N|O|1997-03-19|1997-02-25|1997-03-25|DELIVER IN PERSON|RAIL|o the sometimes fina| +6570|79060|6582|4|9|9351.54|0.10|0.05|N|O|1997-03-09|1997-02-27|1997-03-13|COLLECT COD|RAIL|old packages | +6570|160147|148|5|18|21728.52|0.00|0.00|N|O|1997-01-22|1997-03-31|1997-02-14|NONE|SHIP|s nag blithely. ironic, | +6570|180557|5594|6|20|32751.00|0.03|0.02|N|O|1997-03-10|1997-02-13|1997-04-04|TAKE BACK RETURN|FOB|nstructions hang slyly. regular instructi| +6570|10351|352|7|37|46669.95|0.05|0.08|N|O|1997-01-30|1997-03-10|1997-02-09|TAKE BACK RETURN|TRUCK|nic packages are | +6571|164510|7027|1|29|45660.79|0.06|0.07|R|F|1994-03-20|1994-03-13|1994-03-21|COLLECT COD|MAIL|r pinto beans. special accou| +6572|18409|8410|1|27|35839.80|0.03|0.03|N|O|1997-11-25|1997-09-28|1997-12-17|DELIVER IN PERSON|REG AIR|se carefully ironi| +6572|199329|4368|2|32|45706.24|0.04|0.04|N|O|1997-10-21|1997-10-02|1997-11-06|NONE|MAIL|old ideas. ironic pinto beans about| +6572|113017|5529|3|13|13390.13|0.04|0.02|N|O|1997-09-09|1997-10-19|1997-09-10|COLLECT COD|SHIP|ly final requests sleep a| +6572|74538|9553|4|20|30250.60|0.10|0.06|N|O|1997-09-13|1997-10-03|1997-09-29|DELIVER IN PERSON|MAIL|ely carefully special foxes. pending, fina| +6572|152311|7342|5|35|47715.85|0.04|0.01|N|O|1997-11-03|1997-10-13|1997-11-29|TAKE BACK RETURN|FOB|pecial inst| +6572|88104|8105|6|44|48052.40|0.09|0.07|N|O|1997-12-24|1997-10-06|1997-12-29|COLLECT COD|SHIP|nts haggle blithely. foxes inte| +6572|155260|7776|7|10|13152.60|0.08|0.03|N|O|1997-10-25|1997-11-11|1997-11-15|DELIVER IN PERSON|REG AIR| ironic requests. s| +6573|42001|2002|1|27|25461.00|0.08|0.08|N|O|1997-06-15|1997-06-02|1997-07-15|TAKE BACK RETURN|TRUCK|. blithely regular pinto beans sl| +6574|115322|2856|1|8|10698.56|0.10|0.07|N|O|1998-09-24|1998-10-23|1998-10-20|DELIVER IN PERSON|REG AIR| requests are according to the| +6575|89686|9687|1|4|6702.72|0.02|0.03|N|O|1997-09-21|1997-09-23|1997-09-28|DELIVER IN PERSON|FOB|y! final requests are. quickly final | +6575|149267|4296|2|13|17111.38|0.10|0.03|N|O|1997-09-25|1997-09-02|1997-10-06|COLLECT COD|RAIL|sleep furiously. permanently ironic depend| +6575|125034|2571|3|30|31770.90|0.02|0.03|N|O|1997-11-05|1997-10-08|1997-11-17|DELIVER IN PERSON|REG AIR|ecial asymptotes haggl| +6575|34656|2166|4|23|36584.95|0.00|0.03|N|O|1997-07-20|1997-10-08|1997-07-29|TAKE BACK RETURN|RAIL|regular packages. unusual patterns impress | +6575|50827|5838|5|10|17778.20|0.02|0.08|N|O|1997-10-27|1997-09-20|1997-11-18|COLLECT COD|MAIL|s sleep after the furiously quie| +6575|49315|9316|6|4|5057.24|0.09|0.04|N|O|1997-09-18|1997-09-26|1997-10-06|NONE|REG AIR|the unusual accounts | +6575|27885|7886|7|15|27193.20|0.10|0.02|N|O|1997-10-23|1997-08-24|1997-10-28|DELIVER IN PERSON|RAIL|ts after the furiously final pin| +6600|62423|2424|1|17|23552.14|0.05|0.03|N|O|1998-03-22|1998-05-11|1998-04-04|NONE|SHIP|counts. special accounts are slyly ironic| +6600|136034|6035|2|30|32100.90|0.03|0.05|N|O|1998-06-01|1998-05-07|1998-06-28|DELIVER IN PERSON|TRUCK| sleep fluffily along the platelets. sl| +6600|109933|2444|3|15|29143.95|0.05|0.01|N|O|1998-04-06|1998-04-04|1998-04-24|COLLECT COD|MAIL|accounts. furiously regular instr| +6600|36124|8628|4|43|45585.16|0.04|0.07|N|O|1998-05-31|1998-03-28|1998-06-22|TAKE BACK RETURN|MAIL|ly regular foxes cajole slyly pend| +6601|131394|1395|1|41|58440.99|0.10|0.05|N|O|1998-08-29|1998-10-17|1998-09-24|COLLECT COD|FOB|e among the final accounts| +6601|138613|8614|2|3|4954.83|0.03|0.03|N|O|1998-11-15|1998-09-21|1998-12-09|NONE|FOB|g ideas. unusual, u| +6602|41014|3519|1|2|1910.02|0.03|0.04|N|O|1996-02-29|1996-02-04|1996-03-03|NONE|SHIP|requests. furiously express reque| +6602|116550|1573|2|9|14098.95|0.02|0.03|N|O|1996-01-16|1996-01-24|1996-01-27|COLLECT COD|AIR|cross the pending ideas haggle| +6602|48237|5750|3|23|27260.29|0.09|0.01|N|O|1996-02-01|1996-01-17|1996-02-08|COLLECT COD|MAIL|liers. special, fin| +6602|103381|5892|4|2|2768.76|0.06|0.06|N|O|1996-01-10|1996-01-09|1996-01-17|COLLECT COD|FOB|tornis haggle furiously along| +6603|135437|7951|1|47|69204.21|0.08|0.07|R|F|1993-01-24|1992-12-20|1993-02-01|TAKE BACK RETURN|TRUCK| requests. carefully unusual| +6604|131440|1441|1|1|1471.44|0.03|0.02|N|O|1995-06-25|1995-05-12|1995-07-10|NONE|FOB|quickly final id| +6604|111351|1352|2|34|46319.90|0.06|0.02|N|O|1995-06-25|1995-06-13|1995-07-04|NONE|MAIL|unts cajol| +6604|74279|6787|3|14|17545.78|0.08|0.06|N|O|1995-07-03|1995-06-19|1995-08-01|DELIVER IN PERSON|TRUCK|ites among the furiously even| +6605|605|606|1|12|18067.20|0.03|0.01|A|F|1994-03-19|1994-04-30|1994-03-25|COLLECT COD|FOB|even deposi| +6605|160143|7692|2|2|2406.28|0.03|0.06|R|F|1994-07-09|1994-05-13|1994-07-26|TAKE BACK RETURN|AIR|ions. realms wake. bold packages u| +6605|114726|7238|3|29|50480.88|0.01|0.07|R|F|1994-05-10|1994-05-21|1994-06-08|DELIVER IN PERSON|SHIP| furiously across the asymp| +6605|193400|3401|4|23|34348.20|0.08|0.04|A|F|1994-04-13|1994-05-15|1994-04-24|TAKE BACK RETURN|AIR|ilent pinto beans are carefully across th| +6606|19685|9686|1|32|51349.76|0.07|0.08|N|O|1996-05-17|1996-05-12|1996-05-20|NONE|REG AIR|beans lose blithely alo| +6607|92626|2627|1|27|43702.74|0.10|0.04|N|O|1997-01-14|1997-03-05|1997-02-05|NONE|MAIL|nding foxes. blit| +6607|152461|7492|2|30|45403.80|0.10|0.06|N|O|1997-02-16|1997-02-24|1997-03-16|DELIVER IN PERSON|RAIL|y slyly special packages: blithely| +6607|907|8408|3|28|50621.20|0.00|0.05|N|O|1997-03-29|1997-03-10|1997-04-02|TAKE BACK RETURN|TRUCK|instructions? even| +6607|35054|5055|4|18|17802.90|0.09|0.07|N|O|1997-01-28|1997-02-27|1997-01-29|COLLECT COD|REG AIR|kages. packages among the | +6607|136071|8585|5|33|36533.31|0.02|0.05|N|O|1997-02-26|1997-03-15|1997-03-28|NONE|RAIL|ithely bold ideas nag ironic| +6632|20131|132|1|12|12613.56|0.09|0.05|R|F|1993-03-06|1993-01-09|1993-03-30|DELIVER IN PERSON|TRUCK|s affix fluf| +6633|11776|4278|1|18|30379.86|0.08|0.07|R|F|1994-10-26|1994-09-20|1994-11-13|NONE|AIR|s are enticingly silent| +6633|102669|200|2|33|55164.78|0.00|0.06|R|F|1994-09-19|1994-11-01|1994-10-09|TAKE BACK RETURN|RAIL|s. fluffily special| +6633|142089|4604|3|4|4524.32|0.05|0.01|R|F|1994-11-24|1994-10-12|1994-12-09|TAKE BACK RETURN|TRUCK|ckages. blithe| +6633|76089|3611|4|1|1065.08|0.07|0.00|A|F|1994-09-02|1994-09-14|1994-09-24|COLLECT COD|AIR| nag furiously quickly bold asymptotes. bl| +6634|191645|4165|1|31|53835.84|0.04|0.06|A|F|1992-07-20|1992-06-17|1992-08-04|NONE|AIR|silent foxes. deposits nag f| +6634|171663|1664|2|31|53774.46|0.09|0.07|R|F|1992-06-25|1992-07-09|1992-07-16|TAKE BACK RETURN|TRUCK| ironic ac| +6634|139945|2459|3|27|53593.38|0.04|0.08|R|F|1992-07-06|1992-06-12|1992-07-09|DELIVER IN PERSON|MAIL| before the carefully pending foxes. slyl| +6634|51836|1837|4|41|73301.03|0.06|0.07|A|F|1992-07-21|1992-06-28|1992-08-13|COLLECT COD|AIR| deposits. ideas around the quickly reg| +6634|191262|6301|5|17|23005.42|0.00|0.07|A|F|1992-05-27|1992-06-18|1992-06-20|DELIVER IN PERSON|FOB|ts above the slyly unusual instr| +6635|93242|5752|1|13|16058.12|0.01|0.04|A|F|1993-09-03|1993-09-08|1993-10-01|COLLECT COD|SHIP|iously express Tiresi| +6635|107261|2282|2|47|59608.22|0.04|0.08|R|F|1993-08-01|1993-09-13|1993-08-03|COLLECT COD|AIR|ven accounts. q| +6635|123499|1036|3|28|42629.72|0.00|0.01|A|F|1993-08-27|1993-09-28|1993-09-14|NONE|MAIL| finally across the regular, ironic deposit| +6635|44027|9036|4|31|30101.62|0.04|0.03|A|F|1993-10-12|1993-09-08|1993-11-11|TAKE BACK RETURN|MAIL|re. requests sleep furiously final as| +6635|148055|5598|5|41|45225.05|0.02|0.08|A|F|1993-08-24|1993-08-15|1993-09-15|NONE|RAIL|ronic orbits haggle carefully. packages in| +6635|148577|6120|6|34|55269.38|0.07|0.04|R|F|1993-09-19|1993-09-12|1993-09-28|DELIVER IN PERSON|TRUCK| slyly regula| +6636|133510|1050|1|37|57109.87|0.06|0.08|N|O|1998-03-24|1998-04-24|1998-03-26|NONE|RAIL|inal platelets. instruct| +6637|181934|4453|1|16|32254.88|0.01|0.02|R|F|1995-02-26|1995-02-16|1995-03-23|TAKE BACK RETURN|MAIL|le blithely fluffily even accoun| +6637|152916|5432|2|46|90569.86|0.08|0.06|R|F|1995-02-13|1995-02-14|1995-03-11|DELIVER IN PERSON|TRUCK|ckly express courts haggle| +6637|46204|1213|3|10|11502.00|0.03|0.06|R|F|1994-12-17|1995-01-15|1994-12-19|COLLECT COD|RAIL|y. carefully ironic theod| +6637|138623|3650|4|15|24924.30|0.00|0.05|R|F|1995-02-27|1995-01-16|1995-03-05|NONE|MAIL|yly special| +6638|122933|7958|1|46|89972.78|0.10|0.03|N|O|1996-12-13|1996-10-11|1997-01-03|DELIVER IN PERSON|REG AIR|y. platelets nag above| +6638|122406|2407|2|19|27139.60|0.03|0.05|N|O|1996-11-09|1996-09-27|1996-12-05|TAKE BACK RETURN|AIR|ng deposits. | +6638|75313|7821|3|45|57973.95|0.06|0.03|N|O|1996-09-22|1996-10-21|1996-10-14|COLLECT COD|FOB|fully regular excuses | +6638|170994|6029|4|12|24779.88|0.08|0.02|N|O|1996-10-25|1996-10-18|1996-10-30|TAKE BACK RETURN|REG AIR|ts may are furi| +6638|95952|5953|5|5|9739.75|0.10|0.04|N|O|1996-08-21|1996-10-14|1996-09-12|NONE|REG AIR|foxes. carefully bold foxes breac| +6638|63443|5950|6|37|52038.28|0.07|0.07|N|O|1996-08-29|1996-09-18|1996-09-28|DELIVER IN PERSON|MAIL|lithely carefully regula| +6639|177447|9965|1|21|32013.24|0.03|0.03|R|F|1995-04-22|1995-05-17|1995-04-28|NONE|AIR|ng deposits wake.| +6639|145932|3475|2|31|61315.83|0.02|0.07|R|F|1995-04-26|1995-05-19|1995-04-27|NONE|MAIL|. express deposits thrash besides the qu| +6639|78052|5574|3|5|5150.25|0.08|0.06|A|F|1995-04-21|1995-05-20|1995-05-14|TAKE BACK RETURN|AIR|nic instructions.| +6639|19811|7315|4|23|39808.63|0.10|0.05|R|F|1995-04-26|1995-05-29|1995-05-19|COLLECT COD|MAIL|s affix slyly c| +6639|154750|2296|5|36|64971.00|0.03|0.01|A|F|1995-05-26|1995-07-12|1995-06-09|NONE|REG AIR|ns haggle fluffily bold, spec| +6639|76111|6112|6|27|29351.97|0.05|0.06|N|O|1995-08-08|1995-06-06|1995-09-05|COLLECT COD|REG AIR|instructions| +6664|153788|3789|1|27|49728.06|0.07|0.06|A|F|1994-01-18|1994-01-18|1994-02-13|DELIVER IN PERSON|REG AIR|ly unusual excuses. fin| +6664|107119|4650|2|29|32657.19|0.00|0.01|A|F|1994-03-04|1994-03-04|1994-04-03|COLLECT COD|SHIP|ounts. bold packag| +6664|141478|1479|3|5|7597.35|0.00|0.00|A|F|1994-01-17|1994-02-24|1994-01-20|DELIVER IN PERSON|MAIL| ideas. quickly expre| +6664|13288|792|4|11|13214.08|0.10|0.01|A|F|1994-01-30|1994-02-01|1994-02-21|COLLECT COD|TRUCK|ncies. even re| +6664|121160|8697|5|27|31891.32|0.01|0.08|A|F|1994-03-21|1994-03-15|1994-04-17|TAKE BACK RETURN|AIR|lphins cajole fluff| +6665|65894|3413|1|32|59516.48|0.04|0.05|N|O|1998-09-27|1998-09-20|1998-10-23|NONE|FOB|ely even platelets | +6665|69664|4677|2|2|3267.32|0.09|0.04|N|O|1998-09-30|1998-10-23|1998-10-23|TAKE BACK RETURN|REG AIR|instruction| +6665|36030|3540|3|30|28980.90|0.05|0.07|N|O|1998-10-25|1998-08-29|1998-11-19|TAKE BACK RETURN|SHIP|ages are bravely slyly regular reques| +6665|152640|2641|4|30|50779.20|0.09|0.07|N|O|1998-10-15|1998-09-17|1998-10-31|DELIVER IN PERSON|REG AIR| wake carefully blithely| +6665|13746|3747|5|29|48132.46|0.02|0.03|N|O|1998-11-14|1998-10-21|1998-12-13|TAKE BACK RETURN|AIR|y even deposits cajole | +6666|98736|6264|1|2|3469.46|0.03|0.05|N|O|1998-02-26|1998-05-07|1998-03-01|NONE|AIR|uffy gifts cajol| +6666|40671|8184|2|23|37068.41|0.00|0.06|N|O|1998-02-10|1998-04-28|1998-02-12|DELIVER IN PERSON|FOB|ic, bold accounts use furi| +6666|148500|1015|3|3|4645.50|0.08|0.00|N|O|1998-04-07|1998-04-07|1998-04-19|TAKE BACK RETURN|SHIP|slyly express ideas arou| +6666|35299|306|4|36|44434.44|0.00|0.08|N|O|1998-04-18|1998-04-07|1998-05-10|NONE|SHIP|y, final r| +6666|69712|7231|5|33|55496.43|0.09|0.05|N|O|1998-05-20|1998-05-04|1998-06-16|NONE|TRUCK|ainst the fi| +6666|47053|4566|6|40|40002.00|0.03|0.04|N|O|1998-03-20|1998-03-10|1998-04-06|DELIVER IN PERSON|RAIL|ackages use| +6666|19012|1514|7|41|38171.41|0.06|0.06|N|O|1998-02-25|1998-05-01|1998-03-27|TAKE BACK RETURN|SHIP|lly even asymptotes hinder carefully about| +6667|126469|4006|1|48|71782.08|0.10|0.08|R|F|1994-07-10|1994-06-06|1994-07-29|NONE|FOB|quests. furiously special theodolit| +6667|159198|4229|2|15|18857.85|0.00|0.01|A|F|1994-07-01|1994-05-18|1994-07-20|TAKE BACK RETURN|RAIL|posits wake closely slyly express fox| +6667|31415|1416|3|6|8078.46|0.03|0.03|A|F|1994-07-30|1994-05-26|1994-08-26|COLLECT COD|TRUCK|al pinto beans integrate fluffily. slyly | +6667|182337|4856|4|32|45418.56|0.02|0.06|A|F|1994-06-03|1994-06-23|1994-06-15|NONE|SHIP|s-- blithely regular| +6668|90440|441|1|15|21456.60|0.00|0.08|N|O|1995-09-20|1995-10-17|1995-10-17|TAKE BACK RETURN|AIR|leep quickly after the s| +6668|16837|9339|2|48|84183.84|0.04|0.08|N|O|1995-08-21|1995-09-28|1995-08-23|DELIVER IN PERSON|AIR|ptotes promise slyly regular,| +6668|179400|9401|3|24|35505.60|0.04|0.04|N|O|1995-11-13|1995-09-20|1995-11-14|DELIVER IN PERSON|AIR|ffily above the requests. ideas nag.| +6668|172391|2392|4|28|40974.92|0.00|0.02|N|O|1995-09-08|1995-09-22|1995-09-14|NONE|MAIL|sly regular package| +6668|163296|3297|5|37|50293.73|0.06|0.02|N|O|1995-10-27|1995-08-23|1995-11-04|COLLECT COD|TRUCK|lent deposits use quickly special, iro| +6668|100270|271|6|47|59702.69|0.01|0.01|N|O|1995-08-20|1995-09-07|1995-09-05|COLLECT COD|AIR|d packages detect fluffily regular acc| +6668|24272|9277|7|42|50243.34|0.07|0.00|N|O|1995-09-07|1995-10-16|1995-09-25|DELIVER IN PERSON|MAIL|r instructions alongside of the| +6669|130339|5366|1|4|5477.32|0.01|0.00|A|F|1994-06-14|1994-04-08|1994-06-27|TAKE BACK RETURN|FOB|sly pending foxes wake slyly| +6669|2458|2459|2|17|23127.65|0.04|0.00|R|F|1994-05-03|1994-03-29|1994-05-21|DELIVER IN PERSON|SHIP|ages. furiously reg| +6669|97588|7589|3|42|66594.36|0.07|0.00|R|F|1994-05-21|1994-05-06|1994-06-02|DELIVER IN PERSON|SHIP|sts. even, bold waters should have| +6669|150987|6018|4|7|14265.86|0.07|0.01|A|F|1994-04-20|1994-05-05|1994-05-10|NONE|FOB|lar ideas sleep along the unusual| +6669|35913|920|5|10|18489.10|0.09|0.05|R|F|1994-05-12|1994-03-31|1994-05-21|NONE|SHIP|final requests was furiously. fluff| +6669|175264|7782|6|23|30802.98|0.01|0.08|R|F|1994-02-21|1994-05-08|1994-03-18|NONE|RAIL|s. fluffily re| +6669|54960|2476|7|30|57448.80|0.04|0.07|A|F|1994-05-21|1994-05-02|1994-05-31|DELIVER IN PERSON|AIR|ecial instructions. special | +6670|105935|956|1|10|19409.30|0.02|0.04|A|F|1992-08-22|1992-07-30|1992-09-13|TAKE BACK RETURN|FOB|lyly pending packages boost s| +6671|52614|130|1|30|46998.30|0.00|0.08|N|O|1996-06-28|1996-05-09|1996-07-14|COLLECT COD|AIR|e quickly regular ideas. furiously| +6671|71523|1524|2|12|17934.24|0.01|0.07|N|O|1996-05-03|1996-04-05|1996-05-20|COLLECT COD|REG AIR|rnes. pend| +6671|71335|1336|3|50|65316.50|0.05|0.02|N|O|1996-03-20|1996-04-25|1996-04-17|TAKE BACK RETURN|FOB| special c| +6671|111097|6120|4|11|12188.99|0.06|0.00|N|O|1996-03-26|1996-05-05|1996-04-21|TAKE BACK RETURN|RAIL|the final p| +6671|194086|6606|5|7|8260.56|0.00|0.03|N|O|1996-03-29|1996-05-14|1996-04-21|TAKE BACK RETURN|REG AIR|deposits. furiously even accounts s| +6671|858|859|6|8|14070.80|0.05|0.01|N|O|1996-06-23|1996-05-28|1996-06-26|DELIVER IN PERSON|FOB|nic requests are furio| +6671|12948|5450|7|39|72576.66|0.10|0.03|N|O|1996-06-07|1996-05-10|1996-07-02|DELIVER IN PERSON|REG AIR|s haggle slyly along| +6696|12191|4693|1|23|25373.37|0.05|0.02|N|O|1997-09-13|1997-09-12|1997-10-13|TAKE BACK RETURN|SHIP|ays snooze alon| +6696|94091|4092|2|27|29297.43|0.08|0.01|N|O|1997-09-26|1997-11-05|1997-10-03|TAKE BACK RETURN|RAIL|ts. fluffily even courts | +6696|179149|4184|3|31|38072.34|0.08|0.02|N|O|1997-12-03|1997-09-11|1997-12-09|TAKE BACK RETURN|SHIP|s. carefully even requests bo| +6696|151212|6243|4|17|21474.57|0.00|0.06|N|O|1997-12-04|1997-09-12|1997-12-25|DELIVER IN PERSON|MAIL|impress furiously final req| +6696|10032|2534|5|29|27318.87|0.06|0.04|N|O|1997-11-28|1997-09-30|1997-12-28|COLLECT COD|TRUCK|symptotes sleep. ir| +6696|686|687|6|22|34906.96|0.08|0.03|N|O|1997-08-18|1997-10-18|1997-08-26|COLLECT COD|MAIL|regular cou| +6697|109432|9433|1|13|18738.59|0.06|0.07|A|F|1993-06-15|1993-06-30|1993-07-06|COLLECT COD|AIR|ly ironic deposits| +6698|119644|2156|1|31|51572.84|0.09|0.04|N|O|1997-02-03|1997-01-30|1997-02-11|DELIVER IN PERSON|TRUCK|ix blithely alongside of the slyly bold id| +6698|51925|9441|2|20|37538.40|0.03|0.08|N|O|1996-11-29|1997-02-08|1996-12-27|COLLECT COD|RAIL|wly. quickly unusual dependencies sleep s| +6698|87349|9858|3|18|24054.12|0.08|0.04|N|O|1997-01-23|1997-01-06|1997-02-21|TAKE BACK RETURN|RAIL| daringly sp| +6698|61443|6456|4|4|5617.76|0.04|0.04|N|O|1996-11-26|1997-01-26|1996-12-03|TAKE BACK RETURN|RAIL|permanently regular deposits. | +6698|62508|2509|5|40|58820.00|0.08|0.03|N|O|1997-01-23|1997-01-13|1997-02-19|TAKE BACK RETURN|MAIL|ons sleep fluffily. quickly| +6698|160730|8279|6|31|55512.63|0.02|0.05|N|O|1997-01-20|1997-02-08|1997-01-26|TAKE BACK RETURN|FOB|quick packages use quic| +6698|185811|5812|7|16|30348.96|0.07|0.02|N|O|1997-01-31|1997-01-08|1997-03-02|TAKE BACK RETURN|SHIP|gle furiously against the slyly | +6699|117766|7767|1|8|14270.08|0.01|0.08|R|F|1994-04-11|1994-05-06|1994-05-02|COLLECT COD|RAIL| silently ironic requests. | +6699|83453|978|2|32|45966.40|0.05|0.01|R|F|1994-03-02|1994-04-29|1994-03-25|NONE|FOB|rding to the quickly ironic packages wak| +6699|191558|1559|3|8|13196.40|0.02|0.04|R|F|1994-05-14|1994-04-16|1994-06-05|TAKE BACK RETURN|FOB|ess accoun| +6699|113658|6170|4|26|43462.90|0.04|0.06|A|F|1994-04-27|1994-05-05|1994-05-23|COLLECT COD|AIR|c warhorses. carefully eve| +6700|184443|1998|1|46|70262.24|0.09|0.08|A|F|1994-07-14|1994-08-07|1994-07-26|COLLECT COD|TRUCK|ironic, ironic| +6700|117580|92|2|38|60708.04|0.08|0.06|R|F|1994-06-11|1994-07-24|1994-06-18|COLLECT COD|FOB|onic theodolites are. quickly| +6700|163509|3510|3|46|72335.00|0.04|0.03|A|F|1994-06-11|1994-06-28|1994-06-27|TAKE BACK RETURN|MAIL|l instructio| +6700|83697|3698|4|31|52101.39|0.00|0.08|A|F|1994-07-30|1994-08-02|1994-08-23|NONE|FOB|lly across the fina| +6700|78870|6392|5|3|5546.61|0.09|0.06|A|F|1994-09-25|1994-07-09|1994-10-23|COLLECT COD|AIR|l accounts. silent, ironic packages haggle| +6701|194959|9998|1|12|24647.40|0.01|0.08|N|O|1996-02-27|1996-04-03|1996-02-29|NONE|MAIL|ornis wake slyly final dolphins.| +6701|74003|9018|2|20|19540.00|0.00|0.07|N|O|1996-06-13|1996-04-08|1996-06-30|DELIVER IN PERSON|SHIP|ts. unusual, daring patterns about the p| +6702|65437|2956|1|22|30853.46|0.09|0.07|N|O|1996-02-14|1996-01-05|1996-03-01|COLLECT COD|REG AIR|. furiously regular ideas haggle among| +6702|189044|6599|2|16|18128.64|0.01|0.04|N|O|1995-11-03|1995-12-09|1995-11-28|COLLECT COD|AIR|usual ideas. final requests haggle slyly ac| +6702|49808|9809|3|45|79101.00|0.00|0.00|N|O|1995-12-29|1995-12-10|1996-01-26|TAKE BACK RETURN|TRUCK|nts along the pinto beans cajole| +6702|117239|4773|4|46|57786.58|0.10|0.03|N|O|1995-11-29|1995-11-28|1995-12-22|TAKE BACK RETURN|TRUCK|uffily across the ideas. blith| +6702|31499|9009|5|19|27179.31|0.03|0.01|N|O|1995-11-30|1995-11-28|1995-12-29|COLLECT COD|FOB|nent packages according to the regular id| +6702|2274|4775|6|41|48227.07|0.04|0.07|N|O|1995-11-05|1996-01-02|1995-11-27|DELIVER IN PERSON|AIR|efully ironic a| +6702|7711|7712|7|33|53417.43|0.03|0.01|N|O|1995-10-31|1995-12-10|1995-11-26|COLLECT COD|REG AIR|he slyly final sauternes detect blithely | +6703|185000|37|1|35|37975.00|0.05|0.02|R|F|1994-10-24|1994-10-30|1994-11-23|NONE|FOB| are blithely ironic accounts| +6703|85652|8161|2|43|70418.95|0.02|0.00|A|F|1994-09-18|1994-10-27|1994-10-17|NONE|REG AIR|s haggle carefully after | +6728|45442|7947|1|42|58272.48|0.05|0.06|N|O|1997-09-26|1997-09-13|1997-10-21|COLLECT COD|RAIL|ins. carefully ironic p| +6728|129491|7028|2|15|22807.35|0.04|0.02|N|O|1997-08-07|1997-09-09|1997-08-21|DELIVER IN PERSON|MAIL|ly bold instructions| +6729|73787|8802|1|13|22890.14|0.07|0.04|A|F|1993-09-09|1993-06-14|1993-10-06|DELIVER IN PERSON|FOB|furiously ironic depo| +6729|135345|2885|2|40|55213.60|0.08|0.01|R|F|1993-05-29|1993-08-09|1993-06-14|COLLECT COD|RAIL|even courts among the | +6729|130768|3282|3|39|70151.64|0.07|0.03|R|F|1993-08-14|1993-06-19|1993-08-15|COLLECT COD|FOB| accounts haggle| +6729|10417|7921|4|5|6637.05|0.01|0.01|A|F|1993-05-24|1993-07-26|1993-06-16|COLLECT COD|TRUCK|y slow theodoli| +6730|170091|2609|1|39|45282.51|0.06|0.08|A|F|1992-10-04|1992-11-07|1992-10-17|NONE|MAIL| dinos about t| +6730|118429|941|2|33|47764.86|0.05|0.07|R|F|1992-11-17|1992-10-20|1992-11-29|TAKE BACK RETURN|MAIL|nto beans; furiously unusu| +6730|35345|2855|3|12|15364.08|0.05|0.08|R|F|1992-09-26|1992-09-16|1992-10-13|TAKE BACK RETURN|MAIL|sentiments detect fluffily sly packag| +6730|43260|3261|4|44|52943.44|0.05|0.06|R|F|1992-11-09|1992-10-18|1992-12-04|DELIVER IN PERSON|AIR|leep furiously above the instructions. furi| +6730|57881|5397|5|35|64360.80|0.10|0.08|R|F|1992-09-24|1992-10-11|1992-10-22|TAKE BACK RETURN|RAIL|blithely. foxes lose. quickly express i| +6730|191210|1211|6|23|29927.83|0.01|0.07|R|F|1992-09-03|1992-11-11|1992-10-02|NONE|RAIL|kly even requests. carefully even| +6730|63398|5905|7|46|62623.94|0.10|0.07|A|F|1992-10-02|1992-10-07|1992-10-09|DELIVER IN PERSON|RAIL| final, final deposi| +6731|127070|4607|1|45|49368.15|0.03|0.08|R|F|1993-10-04|1993-09-19|1993-10-21|TAKE BACK RETURN|FOB|s haggle. blithely regular requests wake| +6731|50849|5860|2|43|77393.12|0.01|0.01|A|F|1993-10-11|1993-09-13|1993-10-21|NONE|MAIL|carefully b| +6731|6341|3842|3|37|46151.58|0.08|0.06|A|F|1993-10-19|1993-09-17|1993-10-24|DELIVER IN PERSON|MAIL|oxes wake deposits. special dep| +6732|3870|1371|1|35|62085.45|0.06|0.03|A|F|1993-07-21|1993-06-29|1993-07-29|NONE|SHIP|ctions wake carefully. furiously final| +6732|30859|8369|2|49|87702.65|0.01|0.07|R|F|1993-04-15|1993-06-07|1993-04-19|COLLECT COD|SHIP|oss the ironic packages. even, ex| +6732|31394|1395|3|27|35785.53|0.01|0.04|A|F|1993-06-03|1993-06-03|1993-06-06|TAKE BACK RETURN|REG AIR|y blithely pe| +6732|36457|3967|4|35|48770.75|0.07|0.04|A|F|1993-06-09|1993-06-28|1993-06-15|TAKE BACK RETURN|RAIL|express reque| +6732|125799|5800|5|20|36495.80|0.02|0.06|R|F|1993-04-28|1993-05-16|1993-05-13|TAKE BACK RETURN|RAIL|affix across the un| +6732|89785|7310|6|8|14198.24|0.07|0.03|A|F|1993-05-21|1993-06-07|1993-06-20|NONE|RAIL|nusual theodolites sleep slyly thin| +6732|8287|5788|7|23|27491.44|0.04|0.07|R|F|1993-07-27|1993-06-21|1993-08-05|COLLECT COD|REG AIR|totes shall wake blithely. exp| +6733|68596|3609|1|15|23468.85|0.07|0.00|R|F|1994-09-20|1994-11-24|1994-10-18|NONE|AIR|c excuses-- furiously bold | +6733|90765|766|2|46|80764.96|0.09|0.03|A|F|1994-10-08|1994-10-16|1994-11-05|COLLECT COD|MAIL|lyly express foxes ag| +6733|80222|223|3|39|46886.58|0.04|0.03|A|F|1994-09-22|1994-11-21|1994-10-11|DELIVER IN PERSON|REG AIR|arefully above the quickly unusual fr| +6733|89321|9322|4|3|3930.96|0.02|0.05|A|F|1994-09-12|1994-11-07|1994-09-29|TAKE BACK RETURN|MAIL|n dolphins boost carefully pl| +6733|2077|9578|5|36|35246.52|0.09|0.07|R|F|1994-09-13|1994-10-30|1994-09-22|COLLECT COD|AIR|s sublate packages-- express instructio| +6733|95488|3016|6|43|63789.64|0.05|0.06|R|F|1994-12-20|1994-10-13|1995-01-09|TAKE BACK RETURN|TRUCK| tithes are blithely slyly ironi| +6733|56759|9265|7|27|46325.25|0.06|0.00|R|F|1994-12-14|1994-11-02|1995-01-07|TAKE BACK RETURN|SHIP|? deposits detect express pac| +6734|139309|4336|1|18|24269.40|0.00|0.06|N|O|1996-09-03|1996-07-15|1996-09-22|NONE|MAIL|regular theodolites affix slyly ac| +6734|153759|8790|2|17|30816.75|0.07|0.06|N|O|1996-07-28|1996-08-09|1996-08-10|DELIVER IN PERSON|FOB|s are furiously. fur| +6734|10821|822|3|25|43295.50|0.09|0.05|N|O|1996-06-04|1996-08-11|1996-06-16|DELIVER IN PERSON|SHIP|y careful instructi| +6734|56796|4312|4|39|68358.81|0.06|0.04|N|O|1996-05-18|1996-07-01|1996-06-11|DELIVER IN PERSON|REG AIR| atop the slyly regular pin| +6734|159628|2144|5|12|20251.44|0.08|0.01|N|O|1996-06-22|1996-07-25|1996-07-16|COLLECT COD|MAIL|l platelets. furious| +6734|65154|5155|6|35|39170.25|0.08|0.07|N|O|1996-05-28|1996-08-03|1996-06-06|TAKE BACK RETURN|RAIL|side the furiously unusual frets w| +6735|157982|7983|1|3|6119.94|0.07|0.04|N|O|1995-07-04|1995-06-10|1995-07-22|DELIVER IN PERSON|FOB|deposits c| +6735|197419|9939|2|1|1516.41|0.01|0.03|A|F|1995-05-03|1995-06-06|1995-05-26|DELIVER IN PERSON|SHIP|uses. ideas haggle furiously| +6735|14054|9057|3|36|34849.80|0.00|0.07|R|F|1995-04-25|1995-05-23|1995-05-04|NONE|MAIL|ts. fluffily pending packages d| +6760|56831|4347|1|32|57210.56|0.07|0.04|R|F|1992-07-25|1992-08-08|1992-08-14|COLLECT COD|REG AIR|lithely close deposits. specia| +6760|156747|6748|2|23|41486.02|0.08|0.06|R|F|1992-06-01|1992-06-24|1992-06-25|DELIVER IN PERSON|TRUCK|heodolites. quickly special accoun| +6760|45931|8436|3|36|67569.48|0.10|0.06|R|F|1992-09-01|1992-06-28|1992-09-26|NONE|AIR|ost slyly acc| +6760|152320|2321|4|10|13723.20|0.05|0.07|R|F|1992-06-01|1992-06-27|1992-06-26|DELIVER IN PERSON|AIR|ss the exp| +6760|36717|6718|5|13|21498.23|0.04|0.08|R|F|1992-08-29|1992-07-09|1992-09-24|COLLECT COD|SHIP|l accounts. sly| +6760|100011|5032|6|27|27297.27|0.02|0.05|A|F|1992-05-28|1992-07-09|1992-06-04|NONE|REG AIR|requests haggl| +6761|112099|9633|1|30|33332.70|0.01|0.04|A|F|1992-04-19|1992-05-16|1992-05-14|COLLECT COD|REG AIR|slyly ironi| +6761|37879|2886|2|20|36337.40|0.10|0.03|R|F|1992-06-20|1992-05-12|1992-07-04|DELIVER IN PERSON|REG AIR|p furiously. packages main| +6761|29125|6632|3|50|52706.00|0.07|0.07|R|F|1992-03-01|1992-05-25|1992-03-10|TAKE BACK RETURN|FOB|permanently bold deposits| +6761|102175|4686|4|33|38846.61|0.04|0.06|R|F|1992-04-09|1992-05-11|1992-04-30|NONE|RAIL| carefully permanently pending | +6761|54635|9646|5|4|6358.52|0.07|0.02|A|F|1992-06-01|1992-05-17|1992-06-04|DELIVER IN PERSON|REG AIR|ven, even pinto beans; quickly even depos| +6761|44387|9396|6|1|1331.38|0.09|0.02|A|F|1992-04-23|1992-04-16|1992-04-29|NONE|RAIL|iously bold so| +6761|11785|6788|7|33|55993.74|0.00|0.07|R|F|1992-03-13|1992-04-06|1992-04-08|NONE|AIR| even, unusual ideas must have t| +6762|59151|6667|1|29|32194.35|0.08|0.01|N|O|1997-08-17|1997-10-04|1997-08-20|DELIVER IN PERSON|REG AIR|uriously ironic excuses. s| +6762|134932|7446|2|10|19669.30|0.06|0.00|N|O|1997-11-04|1997-10-29|1997-11-21|TAKE BACK RETURN|MAIL|ic packages wake blithely about th| +6762|22|7523|3|27|24894.54|0.00|0.03|N|O|1997-08-20|1997-09-23|1997-08-31|DELIVER IN PERSON|MAIL|kly accounts. b| +6762|159520|2036|4|11|17374.72|0.10|0.07|N|O|1997-09-15|1997-09-07|1997-09-29|TAKE BACK RETURN|TRUCK| deposits cajole ca| +6763|128586|3611|1|48|77499.84|0.09|0.08|R|F|1993-10-06|1993-11-10|1993-10-23|NONE|AIR|y furiousl| +6763|128143|656|2|6|7026.84|0.03|0.00|A|F|1993-11-01|1993-12-07|1993-11-22|COLLECT COD|MAIL|uests sleep furiously c| +6763|88536|3553|3|8|12196.24|0.09|0.06|R|F|1993-09-22|1993-11-19|1993-10-05|DELIVER IN PERSON|REG AIR|y enticing requests are above| +6764|29884|9885|1|1|1813.88|0.07|0.05|N|O|1997-11-11|1997-09-11|1997-11-24|DELIVER IN PERSON|MAIL|gainst the packages. co| +6764|55105|116|2|15|15901.50|0.03|0.07|N|O|1997-08-20|1997-10-13|1997-09-14|COLLECT COD|AIR|must use furiously requests. furious| +6764|139042|9043|3|41|44322.64|0.00|0.04|N|O|1997-07-20|1997-10-01|1997-08-03|TAKE BACK RETURN|RAIL|usly ironic excuses against the carefull| +6764|67130|9637|4|43|47176.59|0.02|0.02|N|O|1997-10-25|1997-10-02|1997-11-06|NONE|AIR|inst the regular requests| +6765|164749|2298|1|29|52598.46|0.01|0.01|N|O|1997-03-31|1997-04-04|1997-04-17|DELIVER IN PERSON|RAIL|nusual requests nag furiously fluffily si| +6766|127256|2281|1|16|20532.00|0.05|0.04|R|F|1992-11-04|1992-11-27|1992-11-24|NONE|AIR|old package| +6766|191187|1188|2|40|51127.20|0.07|0.00|A|F|1992-11-30|1993-01-18|1992-12-24|DELIVER IN PERSON|FOB| pinto beans. even courts sleep| +6766|75372|387|3|27|36378.99|0.00|0.05|A|F|1993-02-13|1992-11-28|1993-03-12|NONE|RAIL|lyly beyond | +6766|162456|7489|4|45|68330.25|0.04|0.04|A|F|1992-11-12|1992-12-27|1992-11-15|COLLECT COD|TRUCK|al pinto beans cajole furiousl| +6766|192338|2339|5|18|25745.94|0.03|0.06|A|F|1992-12-05|1992-12-18|1992-12-24|TAKE BACK RETURN|SHIP|cording to th| +6767|103170|701|1|45|52792.65|0.00|0.01|A|F|1993-08-14|1993-08-18|1993-09-07|DELIVER IN PERSON|FOB| slyly iron| +6767|177367|9885|2|35|50552.60|0.02|0.00|R|F|1993-07-12|1993-08-17|1993-08-01|TAKE BACK RETURN|MAIL|olites hinder carefully. slyly even | +6767|193533|6053|3|22|35783.66|0.05|0.08|A|F|1993-08-13|1993-08-05|1993-08-21|DELIVER IN PERSON|REG AIR|y unusual ideas. e| +6792|162518|67|1|11|17385.61|0.01|0.02|R|F|1994-07-13|1994-10-05|1994-07-23|COLLECT COD|TRUCK|ove the thin foxes. furiously special p| +6792|25288|293|2|10|12132.80|0.00|0.01|A|F|1994-08-11|1994-09-20|1994-08-14|COLLECT COD|RAIL| after the slyly pending deposits. carefu| +6792|12498|2|3|41|57830.09|0.03|0.04|A|F|1994-07-20|1994-09-07|1994-07-31|COLLECT COD|TRUCK| slyly around the quickly i| +6792|50831|832|4|17|30291.11|0.09|0.06|R|F|1994-10-31|1994-09-16|1994-11-29|TAKE BACK RETURN|AIR|. slyly final| +6793|4046|4047|1|37|35151.48|0.10|0.06|N|O|1997-03-07|1997-02-03|1997-03-29|COLLECT COD|MAIL|dencies detect carefully unusual requests.| +6793|191366|8924|2|38|55379.68|0.08|0.04|N|O|1997-01-08|1997-02-22|1997-01-28|DELIVER IN PERSON|MAIL|ts. furiously fi| +6793|77744|2759|3|18|30991.32|0.06|0.06|N|O|1997-02-01|1997-01-26|1997-02-07|DELIVER IN PERSON|TRUCK|pitaphs? quickly even pinto beans | +6794|195524|563|1|47|76117.44|0.06|0.00|R|F|1993-12-27|1994-03-20|1994-01-02|TAKE BACK RETURN|RAIL|sleep quickly ev| +6794|155355|386|2|29|40900.15|0.04|0.02|A|F|1994-01-25|1994-02-12|1994-02-12|COLLECT COD|SHIP|ar somas are blithely alo| +6794|41266|1267|3|34|41046.84|0.02|0.06|A|F|1994-01-01|1994-03-12|1994-01-30|COLLECT COD|AIR|ly regular requests are against th| +6795|49103|9104|1|9|9468.90|0.05|0.05|R|F|1994-03-04|1994-04-30|1994-03-07|COLLECT COD|REG AIR|deposits wake. carefully special excuses ar| +6795|68216|8217|2|30|35526.30|0.05|0.01|R|F|1994-02-17|1994-03-22|1994-03-17|COLLECT COD|FOB|y unusual packages | +6795|103934|6445|3|3|5813.79|0.09|0.05|A|F|1994-03-23|1994-04-18|1994-04-04|NONE|AIR|beans. quickly final deposits against t| +6796|196993|9513|1|16|33439.84|0.10|0.03|N|O|1997-09-27|1997-10-24|1997-10-04|TAKE BACK RETURN|REG AIR|furiously packages. slyl| +6796|46351|6352|2|1|1297.35|0.10|0.03|N|O|1997-10-29|1997-12-19|1997-11-10|TAKE BACK RETURN|REG AIR| are fluffily along the| +6796|11269|1270|3|24|28326.24|0.05|0.01|N|O|1997-10-17|1997-12-19|1997-11-13|TAKE BACK RETURN|MAIL|ges integrate along the carefully regular | +6796|181814|1815|4|2|3791.62|0.07|0.00|N|O|1997-10-10|1997-12-17|1997-10-28|COLLECT COD|RAIL|s the never ironic platelet| +6797|6025|8526|1|42|39102.84|0.02|0.01|R|F|1993-10-24|1993-12-10|1993-11-11|DELIVER IN PERSON|FOB|e final deposits cajole theodol| +6797|47861|7862|2|49|88634.14|0.09|0.06|A|F|1993-12-08|1993-10-26|1993-12-31|NONE|RAIL|riously quickly | +6797|196139|6140|3|37|45699.81|0.07|0.05|R|F|1993-10-05|1993-12-20|1993-10-15|NONE|TRUCK|to beans. fur| +6797|107960|5491|4|43|84622.28|0.01|0.01|R|F|1993-10-24|1993-12-04|1993-10-31|NONE|RAIL| haggle. quickly regular deposit| +6797|80663|8188|5|35|57528.10|0.07|0.08|R|F|1993-11-23|1993-12-06|1993-12-02|COLLECT COD|TRUCK|nic requests wake regularly final in| +6798|109259|1770|1|19|24096.75|0.08|0.06|N|O|1995-12-11|1995-11-07|1996-01-03|NONE|MAIL| fluffily regular | +6798|114594|2128|2|39|62735.01|0.00|0.05|N|O|1995-09-24|1995-12-01|1995-10-17|NONE|AIR|ross the acco| +6798|171171|6206|3|47|58381.99|0.03|0.03|N|O|1995-10-18|1995-11-28|1995-10-26|NONE|AIR|usual forges. even, ironi| +6798|68492|6011|4|28|40893.72|0.08|0.04|N|O|1995-11-23|1995-12-04|1995-12-18|NONE|RAIL|ideas wake. expr| +6798|135988|5989|5|3|6071.94|0.02|0.08|N|O|1995-10-18|1995-11-11|1995-10-22|NONE|FOB|al theodolites lose| +6798|145514|5515|6|4|6238.04|0.06|0.03|N|O|1995-11-02|1995-11-10|1995-11-04|NONE|SHIP|sleep. regular, unusual requests doze s| +6799|96588|4116|1|41|64967.78|0.01|0.03|N|O|1997-02-27|1997-04-22|1997-03-26|COLLECT COD|RAIL| excuses sl| +6799|141779|9322|2|9|16386.93|0.08|0.04|N|O|1997-02-18|1997-04-14|1997-03-04|TAKE BACK RETURN|RAIL|nal accounts mold carefully| +6799|73131|653|3|36|39748.68|0.06|0.07|N|O|1997-03-05|1997-04-21|1997-03-09|TAKE BACK RETURN|TRUCK|eposits. sl| +6824|54927|7433|1|23|43284.16|0.10|0.00|N|O|1997-10-30|1997-10-09|1997-11-22|DELIVER IN PERSON|AIR|haggle blithely among the s| +6824|154357|6873|2|35|49397.25|0.04|0.08|N|O|1997-09-18|1997-08-30|1997-09-26|NONE|TRUCK|ages. even, express foxes cajol| +6825|74710|2232|1|33|55595.43|0.09|0.03|N|O|1996-04-01|1996-04-05|1996-05-01|NONE|FOB|y express ins| +6825|39736|2240|2|32|53623.36|0.10|0.03|N|O|1996-03-26|1996-02-13|1996-04-08|COLLECT COD|SHIP|sts. furious| +6826|81229|8754|1|10|12102.20|0.05|0.05|N|O|1995-07-21|1995-08-18|1995-08-07|TAKE BACK RETURN|SHIP|gular instructions. quickly regular packa| +6826|7231|4732|2|35|39838.05|0.01|0.02|N|O|1995-09-12|1995-08-17|1995-10-05|TAKE BACK RETURN|RAIL|refully final packages wake. fluf| +6826|119505|7039|3|41|62504.50|0.02|0.05|N|O|1995-08-03|1995-08-10|1995-09-01|NONE|TRUCK|ges. carefully regular deposits ac| +6826|118237|8238|4|37|46443.51|0.08|0.05|N|O|1995-07-26|1995-07-29|1995-08-03|DELIVER IN PERSON|MAIL|ide of the| +6826|7682|183|5|50|79484.00|0.01|0.06|N|O|1995-08-17|1995-07-06|1995-09-09|COLLECT COD|RAIL|s, regular braids are above | +6826|101897|4408|6|28|53168.92|0.00|0.06|N|O|1995-09-26|1995-07-09|1995-10-07|DELIVER IN PERSON|SHIP| packages use against the regula| +6826|173681|1233|7|35|61413.80|0.09|0.03|N|F|1995-06-11|1995-08-25|1995-06-19|TAKE BACK RETURN|SHIP|packages. theo| +6827|40684|5693|1|15|24370.20|0.07|0.07|N|O|1996-07-03|1996-05-23|1996-07-27|DELIVER IN PERSON|RAIL|y. bold, regular instructions haggle slyly| +6827|166338|1371|2|8|11234.64|0.03|0.01|N|O|1996-04-26|1996-05-01|1996-05-15|NONE|SHIP|onic dependencies. final packages| +6827|31787|1788|3|16|27500.48|0.08|0.07|N|O|1996-04-04|1996-05-22|1996-04-28|TAKE BACK RETURN|FOB|ven accounts. blithely fi| +6827|37129|4639|4|29|30917.48|0.01|0.03|N|O|1996-05-24|1996-06-05|1996-06-01|NONE|REG AIR|. express packa| +6827|23095|3096|5|33|33596.97|0.07|0.02|N|O|1996-04-05|1996-06-10|1996-04-20|DELIVER IN PERSON|MAIL|osits solve slyly express| +6828|189637|9638|1|28|48345.64|0.01|0.04|R|F|1993-07-08|1993-05-28|1993-07-10|NONE|AIR|ely slyly special deposits. regular | +6828|16171|3675|2|35|38050.95|0.04|0.07|R|F|1993-04-14|1993-05-21|1993-04-27|NONE|TRUCK|utside the silent re| +6828|182638|5157|3|41|70545.83|0.06|0.03|R|F|1993-05-10|1993-05-21|1993-06-05|TAKE BACK RETURN|MAIL|nic deposits haggle| +6828|188242|3279|4|24|31925.76|0.08|0.05|R|F|1993-03-30|1993-05-10|1993-04-03|DELIVER IN PERSON|RAIL|old somas alongside of the slyl| +6829|90047|5066|1|25|25926.00|0.00|0.03|R|F|1994-10-21|1994-09-16|1994-11-05|DELIVER IN PERSON|MAIL|s boost. final, stealthy reque| +6829|19858|7362|2|25|44446.25|0.00|0.08|A|F|1994-08-17|1994-08-05|1994-08-20|COLLECT COD|AIR| ideas haggle caref| +6829|141632|9175|3|10|16736.30|0.05|0.03|A|F|1994-11-02|1994-08-24|1994-11-12|NONE|FOB|usly brave ideas nag ca| +6829|1022|3523|4|49|45227.98|0.01|0.07|R|F|1994-10-22|1994-09-09|1994-11-16|NONE|MAIL|ously permanent i| +6829|170045|2563|5|6|6690.24|0.04|0.02|A|F|1994-07-11|1994-09-13|1994-07-30|DELIVER IN PERSON|SHIP|beans about the regular instructions nag q| +6829|138812|3839|6|9|16657.29|0.02|0.03|R|F|1994-08-02|1994-08-04|1994-08-17|NONE|AIR| theodolites haggle| +6830|23574|8579|1|31|46424.67|0.04|0.08|A|F|1993-09-07|1993-08-27|1993-09-24|TAKE BACK RETURN|MAIL|y regular excus| +6830|191909|4429|2|40|80036.00|0.05|0.01|R|F|1993-07-12|1993-09-17|1993-07-25|DELIVER IN PERSON|FOB|iously bold accounts. pending theodolite| +6830|9069|6570|3|29|28363.74|0.03|0.05|A|F|1993-10-31|1993-09-17|1993-11-07|NONE|SHIP|are slyly ex| +6830|19220|6724|4|9|10252.98|0.02|0.06|R|F|1993-09-17|1993-08-13|1993-10-14|DELIVER IN PERSON|REG AIR|re furiously f| +6830|15261|7763|5|24|28230.24|0.03|0.02|R|F|1993-09-16|1993-08-06|1993-09-29|TAKE BACK RETURN|RAIL| affix fluffily af| +6830|85170|187|6|39|45051.63|0.08|0.04|A|F|1993-10-02|1993-09-22|1993-10-28|COLLECT COD|TRUCK| packages. pending ideas maintain a| +6830|38311|815|7|38|47473.78|0.10|0.07|A|F|1993-10-20|1993-09-04|1993-11-11|NONE|MAIL|uctions sleep final| +6831|86245|3770|1|15|18468.60|0.10|0.04|A|F|1992-05-28|1992-03-14|1992-06-20|TAKE BACK RETURN|REG AIR|y pending pinto beans after th| +6831|115606|8118|2|4|6486.40|0.03|0.03|A|F|1992-05-23|1992-03-20|1992-06-20|TAKE BACK RETURN|SHIP|dolphins. slyly ironic| +6831|174841|7359|3|19|36400.96|0.07|0.08|A|F|1992-04-24|1992-04-19|1992-05-17|TAKE BACK RETURN|AIR|asymptotes snooze quickly reques| +6831|150695|8241|4|26|45387.94|0.10|0.03|A|F|1992-03-09|1992-04-27|1992-04-04|DELIVER IN PERSON|AIR| unwind after the blithely even pac| +6856|27482|7483|1|16|22551.68|0.01|0.01|R|F|1994-07-26|1994-07-09|1994-08-17|NONE|AIR|yly above the packages. busily bold p| +6856|77138|9646|2|13|14496.69|0.01|0.06|A|F|1994-06-06|1994-07-15|1994-06-14|DELIVER IN PERSON|AIR|ts hinder above the | +6856|46468|6469|3|24|33947.04|0.07|0.05|R|F|1994-06-12|1994-06-18|1994-06-26|TAKE BACK RETURN|REG AIR|mong the bold deposits cajole slyly f| +6856|172270|9822|4|6|8053.62|0.01|0.07|R|F|1994-06-18|1994-06-06|1994-07-18|TAKE BACK RETURN|SHIP|brave deposits| +6857|2247|7248|1|13|14940.12|0.09|0.08|A|F|1994-12-14|1994-12-15|1995-01-06|NONE|SHIP|s sleep across the carefully regula| +6857|164212|9245|2|40|51048.40|0.07|0.08|A|F|1995-01-02|1994-12-25|1995-01-27|COLLECT COD|SHIP|slow deposits according to the ir| +6857|106852|6853|3|8|14870.80|0.01|0.05|A|F|1995-02-02|1995-01-10|1995-02-18|DELIVER IN PERSON|AIR|ges are ruthlessly ironic| +6857|47738|5251|4|17|28657.41|0.05|0.08|A|F|1994-11-05|1994-11-20|1994-11-24|TAKE BACK RETURN|RAIL|nts. express| +6857|125015|40|5|20|20800.20|0.01|0.03|R|F|1994-10-31|1995-01-12|1994-11-11|TAKE BACK RETURN|AIR|nic accounts. slyly| +6858|175523|3075|1|15|23977.80|0.06|0.05|R|F|1994-08-19|1994-07-03|1994-08-29|COLLECT COD|FOB|platelets haggle carefully bet| +6858|11664|9168|2|36|56723.76|0.06|0.04|A|F|1994-09-12|1994-06-24|1994-09-18|COLLECT COD|SHIP|lyly final ideas serve quickly f| +6859|180039|5076|1|15|16785.45|0.07|0.01|R|F|1992-12-19|1992-11-29|1992-12-24|NONE|MAIL|ests snooze blithely against the special | +6859|114884|9907|2|25|47472.00|0.07|0.03|R|F|1993-02-04|1992-11-20|1993-02-09|TAKE BACK RETURN|TRUCK|ithely pending foxes haggle blithely. | +6859|46992|4505|3|21|40718.79|0.02|0.00|A|F|1993-02-17|1992-12-21|1993-03-12|TAKE BACK RETURN|RAIL|y special requests. | +6859|178967|1485|4|41|83884.36|0.05|0.00|A|F|1993-01-13|1992-12-21|1993-01-17|TAKE BACK RETURN|RAIL|thely special requests sleep slyly bold| +6859|96110|1129|5|7|7742.77|0.09|0.08|A|F|1993-01-30|1992-11-23|1993-02-20|NONE|AIR|grate permanently | +6859|119053|9054|6|21|22513.05|0.08|0.08|R|F|1992-12-16|1992-12-22|1992-12-27|TAKE BACK RETURN|FOB|ructions. quickly regular excuses h| +6859|107114|9625|7|45|50449.95|0.04|0.02|R|F|1993-01-30|1992-11-22|1993-02-25|NONE|MAIL|blithely ironic d| +6860|50711|8227|1|15|24925.65|0.10|0.08|A|F|1995-01-16|1995-02-12|1995-01-31|NONE|MAIL|l packages print quickly asymptotes. pac| +6860|90636|637|2|10|16266.30|0.08|0.08|R|F|1995-02-10|1995-01-30|1995-03-07|NONE|FOB|st the ironic requests. blithely regu| +6861|34590|7094|1|4|6098.36|0.05|0.00|A|F|1994-01-27|1994-01-19|1994-02-12|TAKE BACK RETURN|SHIP|ending requests across| +6861|144644|7159|2|29|48970.56|0.02|0.06|R|F|1994-03-06|1993-12-13|1994-03-12|COLLECT COD|AIR|he bold, ev| +6862|121842|1843|1|27|50323.68|0.04|0.08|N|O|1997-06-25|1997-07-01|1997-07-13|NONE|TRUCK|cross the bold| +6862|184337|6856|2|20|28426.60|0.03|0.05|N|O|1997-04-26|1997-07-02|1997-05-15|NONE|AIR|s. carefully regular e| +6862|147616|7617|3|12|19963.32|0.00|0.06|N|O|1997-07-31|1997-07-14|1997-08-06|NONE|FOB|quickly aroun| +6863|116206|3740|1|48|58665.60|0.02|0.03|N|O|1998-08-21|1998-07-19|1998-09-11|DELIVER IN PERSON|AIR|wake. fluffily regular requests haggle blit| +6863|66824|6825|2|17|30443.94|0.08|0.08|N|O|1998-08-20|1998-07-05|1998-08-26|TAKE BACK RETURN|RAIL|ages haggle quickly idle instr| +6863|102824|7845|3|24|43843.68|0.03|0.07|N|O|1998-08-24|1998-07-17|1998-09-04|TAKE BACK RETURN|REG AIR|ackages. e| +6863|157386|9902|4|10|14433.80|0.01|0.08|N|O|1998-07-23|1998-07-02|1998-08-01|DELIVER IN PERSON|MAIL|ly final account| +6863|174756|9791|5|32|58584.00|0.01|0.03|N|O|1998-08-25|1998-08-17|1998-09-06|TAKE BACK RETURN|AIR|of the regular accounts. carefully even| +6863|118423|5957|6|50|72071.00|0.08|0.07|N|O|1998-06-16|1998-08-10|1998-06-26|NONE|TRUCK|al dependencies are. special pi| +6888|185259|2814|1|31|41671.75|0.00|0.05|N|O|1996-04-25|1996-05-28|1996-05-20|DELIVER IN PERSON|FOB|s nag carefully accor| +6888|44353|6858|2|41|53191.35|0.05|0.00|N|O|1996-04-10|1996-05-08|1996-04-20|TAKE BACK RETURN|REG AIR|furiously quiet requests. furiou| +6888|26432|1437|3|24|32602.32|0.05|0.01|N|O|1996-05-31|1996-04-24|1996-06-09|COLLECT COD|RAIL|round the packages are flu| +6889|168327|8328|1|31|43254.92|0.10|0.04|A|F|1993-03-10|1993-01-10|1993-03-11|TAKE BACK RETURN|TRUCK|riously expr| +6889|61932|9451|2|41|77651.13|0.01|0.06|A|F|1993-02-05|1993-01-14|1993-02-08|COLLECT COD|REG AIR|es are sly| +6889|89661|4678|3|2|3301.32|0.02|0.00|R|F|1992-12-19|1993-01-28|1993-01-03|DELIVER IN PERSON|MAIL|fully regular instructio| +6889|120082|5107|4|36|39674.88|0.10|0.05|A|F|1993-02-03|1992-12-30|1993-02-18|TAKE BACK RETURN|REG AIR|ts affix. dolphins detec| +6889|3192|3193|5|20|21903.80|0.04|0.08|A|F|1993-02-07|1992-12-19|1993-03-04|COLLECT COD|TRUCK| ironic deposits befor| +6890|146443|1472|1|21|31278.24|0.08|0.02|R|F|1992-04-06|1992-04-15|1992-04-11|DELIVER IN PERSON|REG AIR| along the | +6890|56442|8948|2|38|53140.72|0.01|0.03|A|F|1992-05-04|1992-02-19|1992-05-24|COLLECT COD|SHIP|blithely special foxes. final, idle notorn| +6890|10941|5944|3|6|11111.64|0.10|0.08|A|F|1992-03-16|1992-02-18|1992-04-13|TAKE BACK RETURN|AIR|. furiously final a| +6890|81144|1145|4|46|51756.44|0.06|0.07|R|F|1992-04-21|1992-02-16|1992-04-29|TAKE BACK RETURN|TRUCK|ages affix quickly furiously final | +6890|181911|4430|5|32|63773.12|0.05|0.06|R|F|1992-04-04|1992-03-15|1992-05-02|COLLECT COD|SHIP|carefully ex| +6891|146416|8931|1|46|67270.86|0.10|0.07|N|O|1998-06-26|1998-08-06|1998-07-24|NONE|SHIP|are fluffily ruthlessly fin| +6891|11261|8765|2|16|18756.16|0.06|0.02|N|O|1998-08-11|1998-09-09|1998-09-07|COLLECT COD|MAIL|y bold deposits. pending foxes wake b| +6891|52169|2170|3|36|40361.76|0.00|0.05|N|O|1998-09-21|1998-08-06|1998-09-24|TAKE BACK RETURN|TRUCK|g platelets haggle slyly ag| +6891|188086|8087|4|12|14088.96|0.04|0.06|N|O|1998-08-29|1998-09-02|1998-09-10|COLLECT COD|REG AIR|thely. regular deposits nag. pending, pe| +6892|145148|7663|1|25|29828.50|0.02|0.01|A|F|1992-07-26|1992-06-01|1992-08-06|NONE|AIR| above the | +6892|92663|5173|2|24|39735.84|0.04|0.07|A|F|1992-05-19|1992-05-11|1992-06-06|NONE|AIR|earls integrate u| +6892|178152|670|3|36|44285.40|0.10|0.03|A|F|1992-07-24|1992-06-17|1992-08-08|TAKE BACK RETURN|AIR|theodolites. platelets cajole ruthles| +6892|199841|2361|4|36|69870.24|0.02|0.08|A|F|1992-04-04|1992-05-05|1992-04-11|TAKE BACK RETURN|FOB| among the carefully even exc| +6893|7442|7443|1|34|45880.96|0.10|0.06|N|O|1997-01-27|1996-12-13|1997-02-21|DELIVER IN PERSON|FOB|tructions. blithely | +6894|86746|6747|1|46|79706.04|0.09|0.03|N|O|1997-01-09|1997-03-06|1997-01-17|DELIVER IN PERSON|TRUCK|wake. fluffily care| +6894|134467|4468|2|4|6005.84|0.10|0.01|N|O|1997-03-30|1997-02-25|1997-04-23|TAKE BACK RETURN|REG AIR|s instructi| +6894|178621|3656|3|20|33992.40|0.06|0.00|N|O|1996-12-30|1997-03-01|1997-01-19|COLLECT COD|TRUCK|ithely ironic excuses are above the i| +6894|71565|1566|4|32|49169.92|0.09|0.05|N|O|1997-04-06|1997-01-30|1997-04-25|COLLECT COD|AIR|ffily ironic, silent packages. quickly | +6895|137549|63|1|39|61875.06|0.08|0.00|A|F|1995-02-05|1995-01-15|1995-02-12|NONE|REG AIR|the furiously final packages. i| +6895|175851|5852|2|39|75147.15|0.10|0.02|R|F|1995-02-27|1995-03-02|1995-03-08|COLLECT COD|TRUCK|ng the carefully daring pac| +6895|114989|2523|3|17|34067.66|0.10|0.01|A|F|1995-01-14|1995-03-02|1995-01-24|TAKE BACK RETURN|MAIL|osits; slyly regular sheaves cajole accor| +6920|180574|8129|1|33|54600.81|0.01|0.00|N|O|1997-06-06|1997-06-15|1997-07-06|TAKE BACK RETURN|REG AIR|nag blithely final dependencies! furi| +6921|158683|3714|1|23|40058.64|0.04|0.06|N|O|1996-05-24|1996-03-18|1996-06-12|COLLECT COD|TRUCK|pending packages affix. bold, bold request| +6921|177504|2539|2|8|12652.00|0.08|0.00|N|O|1996-04-16|1996-03-14|1996-05-06|TAKE BACK RETURN|SHIP| requests sleep care| +6921|104166|4167|3|32|37445.12|0.04|0.08|N|O|1996-06-06|1996-03-25|1996-06-18|NONE|SHIP|ccording to the unusual| +6921|117604|2627|4|30|48648.00|0.07|0.03|N|O|1996-06-12|1996-04-21|1996-06-30|DELIVER IN PERSON|AIR| of the even dependencies. pi| +6921|166402|3951|5|9|13215.60|0.08|0.03|N|O|1996-03-18|1996-03-31|1996-04-01|COLLECT COD|RAIL|ven platel| +6921|117492|7493|6|26|39246.74|0.03|0.01|N|O|1996-02-19|1996-05-10|1996-03-10|TAKE BACK RETURN|RAIL|unts. accoun| +6922|15812|3316|1|10|17278.10|0.08|0.07|N|O|1997-06-04|1997-07-19|1997-06-30|COLLECT COD|REG AIR|ronic excuses wake blithely re| +6923|119936|4959|1|21|41074.53|0.02|0.08|A|F|1992-07-16|1992-06-04|1992-07-17|NONE|RAIL|nding deposits haggl| +6924|97202|7203|1|40|47968.00|0.01|0.07|R|F|1993-07-22|1993-05-26|1993-08-19|NONE|FOB|g the stealthy pinto beans. daring| +6924|61996|1997|2|29|56781.71|0.01|0.05|A|F|1993-06-21|1993-05-25|1993-07-16|TAKE BACK RETURN|MAIL|ckly final | +6924|156545|9061|3|19|30429.26|0.02|0.03|A|F|1993-08-13|1993-06-14|1993-09-06|NONE|AIR|blithely. f| +6924|46131|6132|4|16|17234.08|0.05|0.04|A|F|1993-05-12|1993-06-04|1993-06-05|COLLECT COD|RAIL|lar, unusual ideas. express ideas| +6924|116230|1253|5|48|59819.04|0.07|0.02|R|F|1993-06-12|1993-06-28|1993-06-29|COLLECT COD|SHIP|furiously ironic reque| +6924|66819|4338|6|3|5357.43|0.04|0.08|R|F|1993-08-17|1993-06-10|1993-08-22|COLLECT COD|MAIL|ng to the fluffily unusu| +6924|15023|2527|7|17|15946.34|0.10|0.04|R|F|1993-05-13|1993-06-01|1993-05-17|COLLECT COD|SHIP|rnes. reque| +6925|87556|2573|1|45|69459.75|0.08|0.01|N|O|1997-10-05|1997-08-30|1997-10-26|NONE|SHIP| the special accounts. pending | +6925|140889|5918|2|27|52106.76|0.08|0.00|N|O|1997-09-28|1997-09-24|1997-10-03|COLLECT COD|AIR|riously according to the pinto beans. | +6925|106053|1074|3|34|36007.70|0.00|0.07|N|O|1997-08-19|1997-09-28|1997-08-24|DELIVER IN PERSON|REG AIR|ts are carefully clos| +6925|23751|3752|4|40|66990.00|0.06|0.05|N|O|1997-09-27|1997-10-17|1997-10-03|NONE|RAIL|s wake slyly. fu| +6926|77626|7627|1|42|67352.04|0.08|0.07|N|O|1998-05-15|1998-03-19|1998-05-21|TAKE BACK RETURN|TRUCK|e theodolites haggle sly| +6926|53710|1226|2|12|19964.52|0.06|0.05|N|O|1998-03-13|1998-03-03|1998-03-25|NONE|AIR|ecial theodolites believe slyly furiously| +6926|99488|7016|3|41|60986.68|0.04|0.00|N|O|1998-02-07|1998-02-23|1998-02-22|TAKE BACK RETURN|SHIP|ss packages.| +6926|94681|7191|4|49|82108.32|0.02|0.03|N|O|1998-05-15|1998-04-13|1998-06-06|TAKE BACK RETURN|TRUCK|en, ironic packages haggle qu| +6926|100495|496|5|8|11963.92|0.10|0.00|N|O|1998-02-10|1998-02-17|1998-03-04|NONE|REG AIR|e slyly around the fluffily iro| +6926|11253|6256|6|20|23285.00|0.03|0.06|N|O|1998-05-03|1998-03-29|1998-05-27|TAKE BACK RETURN|TRUCK|ular deposits wake quickly express ins| +6926|124962|9987|7|43|85439.28|0.05|0.03|N|O|1998-01-29|1998-02-20|1998-02-27|COLLECT COD|FOB|ve slyly bold w| +6927|25493|3000|1|15|21277.35|0.10|0.03|R|F|1994-03-16|1994-02-04|1994-04-05|TAKE BACK RETURN|SHIP|slyly unusu| +6927|46712|4225|2|35|58054.85|0.01|0.04|A|F|1994-02-26|1994-03-03|1994-03-08|NONE|FOB|quests wake carefull| +6927|84883|4884|3|12|22414.56|0.02|0.06|R|F|1994-03-11|1994-03-17|1994-04-10|TAKE BACK RETURN|TRUCK|ar sheaves use furious| +6927|24613|7116|4|47|72267.67|0.03|0.02|A|F|1994-01-29|1994-03-16|1994-02-19|COLLECT COD|SHIP|wake regular depen| +6927|70117|118|5|10|10871.10|0.07|0.08|R|F|1994-02-07|1994-03-25|1994-03-09|DELIVER IN PERSON|SHIP|riously slyly regular packages. even depen| +6927|48289|8290|6|46|56914.88|0.06|0.01|R|F|1994-04-03|1994-02-08|1994-04-18|NONE|TRUCK|the regular packages| +6927|182590|5109|7|34|56868.06|0.07|0.06|A|F|1994-01-28|1994-03-22|1994-02-12|COLLECT COD|AIR|quick foxes hang quickly | +6952|187779|5334|1|28|52269.56|0.09|0.07|A|F|1992-08-09|1992-10-08|1992-08-10|NONE|SHIP|ose furiously| +6952|187051|2088|2|45|51212.25|0.07|0.04|A|F|1992-11-05|1992-08-27|1992-11-23|COLLECT COD|RAIL|usual, reg| +6952|165342|5343|3|8|11258.72|0.05|0.02|A|F|1992-08-29|1992-10-12|1992-09-13|NONE|REG AIR|nusual packages eat | +6952|87228|7229|4|23|27950.06|0.08|0.06|A|F|1992-09-06|1992-10-14|1992-09-16|NONE|REG AIR|s. slyly ironic asymptotes acro| +6952|29093|9094|5|28|28618.52|0.09|0.00|A|F|1992-08-24|1992-10-18|1992-09-23|TAKE BACK RETURN|AIR|ously specia| +6952|155990|3536|6|13|26597.87|0.03|0.04|R|F|1992-10-30|1992-08-28|1992-11-01|DELIVER IN PERSON|MAIL|ons sleep quickly among the ex| +6953|11283|6286|1|35|41799.80|0.03|0.04|N|O|1995-11-25|1995-12-22|1995-12-13|COLLECT COD|SHIP|ular, final forges. s| +6953|28108|5615|2|16|16577.60|0.09|0.01|N|O|1995-12-07|1995-12-15|1995-12-17|COLLECT COD|REG AIR|es cajole carefully pending | +6953|5739|740|3|10|16447.30|0.09|0.02|N|O|1995-11-13|1996-01-10|1995-11-24|TAKE BACK RETURN|SHIP| stealthy accounts ha| +6953|55029|5030|4|4|3936.08|0.05|0.03|N|O|1995-10-28|1996-01-07|1995-11-19|DELIVER IN PERSON|MAIL|ffily bold pinto beans above the fl| +6954|80803|8328|1|38|67784.40|0.06|0.08|A|F|1994-10-20|1994-09-08|1994-10-30|NONE|REG AIR|ual theodolites lose across the| +6954|44827|7332|2|1|1771.82|0.05|0.00|R|F|1994-10-28|1994-08-27|1994-11-18|COLLECT COD|SHIP|ly bold re| +6954|2695|5196|3|47|75091.43|0.02|0.08|R|F|1994-08-02|1994-08-19|1994-08-29|NONE|TRUCK|unts cajole| +6954|84761|7270|4|45|78559.20|0.00|0.01|A|F|1994-08-28|1994-09-13|1994-09-10|NONE|FOB|er the final ideas| +6954|177000|2035|5|39|42003.00|0.00|0.06|A|F|1994-07-23|1994-09-14|1994-07-28|DELIVER IN PERSON|REG AIR|e closely final packages lose | +6955|148575|6118|1|4|6494.28|0.09|0.04|N|O|1995-11-04|1995-09-21|1995-12-02|TAKE BACK RETURN|AIR|ns. fluffily iro| +6955|95454|5455|2|29|42034.05|0.09|0.03|N|O|1995-09-19|1995-09-07|1995-10-13|NONE|MAIL|nly regular asymptotes haggle slyly. | +6955|95132|2660|3|41|46212.33|0.08|0.05|N|O|1995-11-18|1995-10-29|1995-12-09|TAKE BACK RETURN|SHIP|. packages cajole blithely? ideas according| +6955|82401|7418|4|40|55336.00|0.00|0.03|N|O|1995-11-25|1995-09-16|1995-12-21|DELIVER IN PERSON|AIR| wake furiously bus| +6955|111354|8888|5|25|34133.75|0.03|0.07|N|O|1995-09-24|1995-09-10|1995-10-13|TAKE BACK RETURN|AIR|g theodolites mold blithely. epita| +6956|73250|772|1|47|57492.75|0.04|0.03|R|F|1994-02-16|1994-04-22|1994-02-20|TAKE BACK RETURN|FOB|ites wake furio| +6956|105859|8370|2|26|48486.10|0.10|0.01|R|F|1994-05-15|1994-03-24|1994-05-20|TAKE BACK RETURN|RAIL|are carefully after the slyly| +6956|164605|2154|3|25|41740.00|0.02|0.01|R|F|1994-05-09|1994-04-16|1994-06-01|NONE|AIR|ccounts sleep| +6956|104462|4463|4|28|41060.88|0.07|0.07|R|F|1994-05-01|1994-03-22|1994-05-22|NONE|MAIL|inal dependencies after the final | +6956|87452|2469|5|46|66214.70|0.02|0.03|R|F|1994-03-26|1994-03-02|1994-04-04|COLLECT COD|MAIL|ly ironic | +6957|173205|757|1|35|44737.00|0.07|0.04|A|F|1994-08-21|1994-06-08|1994-08-27|TAKE BACK RETURN|AIR|t the blithely silent Tiresias. final dolph| +6958|184279|1834|1|37|50440.99|0.02|0.07|N|O|1998-07-09|1998-08-21|1998-08-03|NONE|SHIP|egularly regu| +6958|172495|2496|2|11|17242.39|0.09|0.07|N|O|1998-09-05|1998-07-12|1998-09-21|DELIVER IN PERSON|MAIL|lar instructions agai| +6958|121086|3599|3|25|27677.00|0.06|0.03|N|O|1998-06-18|1998-08-26|1998-06-28|DELIVER IN PERSON|SHIP|ding packages run. ironic ideas | +6958|77026|9534|4|41|41123.82|0.10|0.03|N|O|1998-07-29|1998-08-29|1998-08-22|DELIVER IN PERSON|SHIP| slyly bold accounts around the slyl| +6958|170668|5703|5|18|31295.88|0.09|0.08|N|O|1998-09-11|1998-07-25|1998-10-04|DELIVER IN PERSON|AIR|ect slyly-- unusual instructions a| +6958|16129|3633|6|20|20902.40|0.05|0.05|N|O|1998-06-23|1998-08-17|1998-07-13|TAKE BACK RETURN|RAIL|ly bold, final deposits. | +6959|180502|8057|1|6|9495.00|0.10|0.02|A|F|1993-03-26|1993-04-11|1993-04-14|DELIVER IN PERSON|AIR|ully. blithely silen| +6959|96518|1537|2|21|31804.71|0.01|0.04|R|F|1993-05-14|1993-05-05|1993-05-24|TAKE BACK RETURN|REG AIR|uests boost furious| +6984|159899|4930|1|8|15671.12|0.04|0.07|R|F|1995-02-17|1995-01-04|1995-02-24|TAKE BACK RETURN|TRUCK|beans. furiously pending deposits haggle bl| +6985|130934|5961|1|46|90386.78|0.02|0.08|N|O|1995-12-05|1995-09-12|1995-12-31|NONE|MAIL|egular, express foxes against the bold| +6985|192982|8021|2|37|76774.26|0.10|0.04|N|O|1995-11-21|1995-10-24|1995-12-06|TAKE BACK RETURN|RAIL|its along the sl| +6985|46446|8951|3|36|50127.84|0.05|0.07|N|O|1995-11-19|1995-10-16|1995-12-13|TAKE BACK RETURN|AIR|carefully even foxes| +6985|12481|7484|4|24|33443.52|0.07|0.08|N|O|1995-08-21|1995-10-30|1995-09-19|TAKE BACK RETURN|FOB|ldly foxes. blithely furious f| +6985|160966|3483|5|42|85132.32|0.07|0.05|N|O|1995-11-27|1995-10-14|1995-12-20|DELIVER IN PERSON|AIR|al, regular foxes beside the care| +6986|146469|8984|1|4|6061.84|0.09|0.02|N|O|1998-03-09|1998-03-25|1998-03-27|COLLECT COD|MAIL|ages. slyly even ideas according to | +6986|103874|1405|2|35|65725.45|0.04|0.06|N|O|1998-03-08|1998-04-18|1998-03-14|DELIVER IN PERSON|TRUCK|slyly. slyly even packages| +6987|77716|224|1|4|6774.84|0.01|0.05|R|F|1993-04-15|1993-03-05|1993-04-17|TAKE BACK RETURN|AIR|the quickly un| +6987|171351|3869|2|48|68272.80|0.06|0.05|R|F|1993-01-04|1993-03-17|1993-01-26|DELIVER IN PERSON|AIR|r theodolites.| +6987|91831|6850|3|33|60153.39|0.02|0.07|R|F|1993-02-15|1993-02-20|1993-03-04|NONE|REG AIR|even pinto bea| +6987|194008|6528|4|6|6612.00|0.08|0.02|R|F|1993-02-17|1993-03-16|1993-03-01|TAKE BACK RETURN|FOB|ets. blithely unusual deposits doub| +6987|90447|5466|5|32|45998.08|0.07|0.01|A|F|1993-03-16|1993-02-17|1993-04-07|DELIVER IN PERSON|REG AIR|hely. slyly final| +6987|130775|5802|6|15|27086.55|0.06|0.07|R|F|1993-04-07|1993-01-26|1993-05-05|NONE|RAIL|r accounts sle| +6987|132828|7855|7|27|50242.14|0.06|0.00|A|F|1993-01-29|1993-03-24|1993-02-03|COLLECT COD|REG AIR|ages are blithely alo| +6988|25792|8295|1|43|73864.97|0.08|0.00|N|O|1995-12-14|1995-12-14|1996-01-10|DELIVER IN PERSON|SHIP|about the blithely silent dep| +6988|83646|1171|2|11|17926.04|0.08|0.08|N|O|1995-12-16|1996-01-06|1995-12-27|NONE|REG AIR|otornis. slyly ironic r| +6988|32265|9775|3|50|59863.00|0.04|0.02|N|O|1996-01-07|1996-01-14|1996-01-28|COLLECT COD|MAIL|y bold theodolites. quickly careful| +6988|75898|3420|4|24|44973.36|0.02|0.01|N|O|1996-01-13|1995-12-09|1996-01-19|DELIVER IN PERSON|RAIL|lithely ironic, bold accounts| +6988|15271|274|5|7|8303.89|0.01|0.04|N|O|1995-12-31|1996-01-18|1996-01-12|DELIVER IN PERSON|REG AIR|longside of the furiously iro| +6988|50779|8295|6|16|27676.32|0.03|0.00|N|O|1996-01-06|1995-12-13|1996-02-04|COLLECT COD|REG AIR|es snooze. quickly bold packages acc| +6988|30523|8033|7|15|21802.80|0.06|0.01|N|O|1995-12-22|1995-12-10|1996-01-17|COLLECT COD|RAIL|sits haggle. | +6989|197105|9625|1|14|16829.40|0.07|0.03|R|F|1994-06-03|1994-05-26|1994-06-28|TAKE BACK RETURN|TRUCK|ts breach slyly special f| +6989|135857|3397|2|28|52999.80|0.03|0.05|A|F|1994-07-13|1994-05-07|1994-08-05|TAKE BACK RETURN|AIR|carefully regular pack| +6990|103037|568|1|8|8320.24|0.10|0.05|R|F|1994-01-26|1994-02-03|1994-02-19|TAKE BACK RETURN|MAIL|lyly special theodolites. blithely regul| +6990|134498|4499|2|10|15324.90|0.01|0.05|A|F|1993-12-16|1993-12-17|1994-01-06|NONE|SHIP| blithely even depths. f| +6990|104667|9688|3|31|51821.46|0.06|0.01|A|F|1993-11-16|1994-01-25|1993-11-17|COLLECT COD|RAIL|final deposi| +6990|131380|8920|4|44|62100.72|0.03|0.05|R|F|1994-02-09|1994-01-30|1994-03-01|COLLECT COD|FOB|fully slyly final requests. carefull| +6990|96927|1946|5|14|26934.88|0.09|0.05|A|F|1994-01-27|1994-01-12|1994-02-02|NONE|TRUCK|nic deposits| +6991|191674|9232|1|3|5297.01|0.00|0.06|N|O|1997-04-05|1997-03-14|1997-04-30|COLLECT COD|SHIP|ages sleep among| +6991|60912|913|2|1|1872.91|0.04|0.02|N|O|1997-02-19|1997-02-05|1997-03-01|DELIVER IN PERSON|FOB|ess foxes. slyly e| +6991|135388|5389|3|13|18503.94|0.06|0.06|N|O|1997-03-15|1997-03-09|1997-03-29|NONE|MAIL|ously ironic theodolites| +6991|56221|8727|4|25|29430.50|0.04|0.06|N|O|1997-01-15|1997-03-12|1997-02-07|COLLECT COD|MAIL|rate carefully special acc| +6991|95228|2756|5|18|22017.96|0.10|0.04|N|O|1997-03-31|1997-03-01|1997-04-20|DELIVER IN PERSON|TRUCK|wake quickly slyly final accounts-| +6991|95928|947|6|45|86576.40|0.09|0.08|N|O|1997-03-07|1997-01-30|1997-04-03|COLLECT COD|SHIP| instructions.| +7016|183926|6445|1|33|66327.36|0.04|0.03|A|F|1992-01-20|1992-02-27|1992-02-08|COLLECT COD|TRUCK|ackages are slyl| +7016|41533|9046|2|40|58981.20|0.01|0.07|R|F|1992-02-12|1992-02-13|1992-02-20|NONE|REG AIR|cuses affix. slyly| +7016|43858|6363|3|12|21622.20|0.00|0.06|R|F|1992-05-02|1992-03-08|1992-05-11|TAKE BACK RETURN|FOB|pinto beans are aft| +7016|114092|6604|4|25|27652.25|0.00|0.07|R|F|1992-01-29|1992-04-04|1992-02-14|COLLECT COD|MAIL|es. furiousl| +7017|132941|5455|1|50|98697.00|0.08|0.03|R|F|1994-03-31|1994-04-25|1994-04-12|NONE|AIR| theodolites. b| +7017|130283|5310|2|18|23639.04|0.01|0.03|A|F|1994-06-12|1994-05-14|1994-06-30|TAKE BACK RETURN|REG AIR|l instructions. slyly | +7017|57319|7320|3|13|16592.03|0.02|0.01|R|F|1994-05-08|1994-06-03|1994-05-22|TAKE BACK RETURN|REG AIR|ealms above the furi| +7017|147063|2092|4|25|27751.50|0.06|0.05|A|F|1994-05-16|1994-05-14|1994-05-30|COLLECT COD|TRUCK|requests haggle furiously blithe, regu| +7018|199158|6716|1|45|56571.75|0.06|0.07|N|O|1996-05-10|1996-06-12|1996-06-02|COLLECT COD|AIR|yly pending packages cajole carefully | +7018|38129|633|2|29|30946.48|0.03|0.01|N|O|1996-09-01|1996-07-26|1996-09-04|NONE|RAIL|regular sauternes are agains| +7019|28239|8240|1|3|3501.69|0.08|0.06|A|F|1994-08-07|1994-07-17|1994-09-02|COLLECT COD|MAIL|nal, pending foxes are carefully sl| +7020|117082|4616|1|45|49458.60|0.03|0.06|R|F|1993-02-17|1993-03-25|1993-03-07|COLLECT COD|MAIL|heodolites kin| +7020|186464|6465|2|18|27908.28|0.01|0.07|A|F|1993-04-03|1993-02-25|1993-04-27|DELIVER IN PERSON|AIR|cial pinto b| +7020|86319|1336|3|19|24800.89|0.09|0.00|A|F|1993-04-29|1993-03-31|1993-05-17|NONE|FOB| escapades. blithely bold dependenci| +7020|157237|4783|4|13|16824.99|0.10|0.06|A|F|1993-03-13|1993-03-27|1993-03-15|DELIVER IN PERSON|RAIL|ithely blithe packages across the| +7021|123320|8345|1|10|13433.20|0.04|0.00|A|F|1993-12-29|1994-02-19|1994-01-17|COLLECT COD|RAIL|unusual accou| +7022|129504|7041|1|39|59806.50|0.06|0.07|N|O|1997-03-17|1997-02-12|1997-03-28|TAKE BACK RETURN|AIR| use against the requests. blithel| +7022|168583|6132|2|44|72669.52|0.10|0.07|N|O|1997-03-15|1997-01-30|1997-03-29|NONE|AIR|y express dependencies serve above| +7023|130054|7594|1|35|37941.75|0.01|0.06|N|O|1995-09-20|1995-09-25|1995-10-08|COLLECT COD|REG AIR|ng to the slyly ironic packages wake up th| +7048|182734|7771|1|16|29067.68|0.01|0.08|R|F|1993-04-14|1993-02-10|1993-04-26|TAKE BACK RETURN|FOB|. quickly silent accounts mo| +7048|1642|4143|2|12|18523.68|0.09|0.08|A|F|1993-01-22|1993-02-10|1993-01-24|NONE|MAIL|ar requests. carefully regular pa| +7049|151629|1630|1|45|75627.90|0.01|0.07|N|O|1995-09-18|1995-10-19|1995-10-13|TAKE BACK RETURN|AIR|fily even decoy| +7050|21997|7002|1|30|57569.70|0.03|0.01|N|O|1998-10-07|1998-09-20|1998-10-11|NONE|MAIL| nag quickly| +7050|92515|5025|2|33|49747.83|0.05|0.02|N|O|1998-10-07|1998-09-25|1998-11-06|TAKE BACK RETURN|FOB|he furiously | +7050|86357|6358|3|3|4030.05|0.08|0.03|N|O|1998-10-19|1998-08-25|1998-11-15|COLLECT COD|MAIL| the carefully even theodolites| +7050|193778|6298|4|47|87973.19|0.10|0.04|N|O|1998-08-24|1998-09-13|1998-09-02|DELIVER IN PERSON|RAIL|rs. slyly permanent accounts at the | +7050|13240|3241|5|43|49589.32|0.06|0.00|N|O|1998-07-21|1998-09-09|1998-08-07|TAKE BACK RETURN|MAIL|yly quickly silent pinto beans. iro| +7050|115916|939|6|47|90799.77|0.00|0.08|N|O|1998-08-01|1998-09-07|1998-08-11|DELIVER IN PERSON|REG AIR|slyly across the fluffily ironic waters: | +7050|189396|4433|7|13|19310.07|0.04|0.07|N|O|1998-07-15|1998-09-09|1998-08-14|COLLECT COD|FOB|efully pending t| +7051|174487|7005|1|6|9368.88|0.06|0.03|N|O|1995-06-20|1995-07-08|1995-07-18|DELIVER IN PERSON|SHIP|y carefully careful packages. special| +7051|195930|969|2|13|26337.09|0.00|0.01|A|F|1995-05-11|1995-06-09|1995-05-23|COLLECT COD|FOB|s sleep fluffily ruthlessly eve| +7051|194481|4482|3|46|72472.08|0.08|0.07|N|O|1995-07-11|1995-06-28|1995-08-03|DELIVER IN PERSON|MAIL|e deposits. | +7051|31892|1893|4|50|91194.50|0.03|0.01|A|F|1995-06-08|1995-05-28|1995-06-11|DELIVER IN PERSON|RAIL|s. quickly final ideas cajole fluffily. si| +7051|197940|5498|5|5|10189.70|0.10|0.06|N|F|1995-06-14|1995-05-21|1995-06-21|TAKE BACK RETURN|RAIL|eodolites cajole fluf| +7052|117410|9922|1|3|4282.23|0.05|0.05|A|F|1993-04-30|1993-05-24|1993-05-09|TAKE BACK RETURN|RAIL|lly final pinto beans. carefully| +7052|106886|4417|2|7|13250.16|0.02|0.07|A|F|1993-04-12|1993-04-03|1993-04-13|TAKE BACK RETURN|REG AIR|ial foxes are. unusual packages are i| +7053|198493|1013|1|49|77983.01|0.06|0.08|A|F|1994-11-17|1994-12-18|1994-11-19|NONE|REG AIR|o the carefully special orbit| +7053|70867|3375|2|44|80865.84|0.02|0.00|A|F|1994-11-30|1994-12-18|1994-12-11|NONE|FOB|foxes. even platelets sleep furiously| +7053|59674|9675|3|20|32673.40|0.01|0.02|A|F|1995-02-07|1995-01-09|1995-02-26|TAKE BACK RETURN|MAIL|e the even, ev| +7053|127176|2201|4|44|52939.48|0.06|0.04|A|F|1995-01-05|1994-11-11|1995-01-30|NONE|REG AIR|pending deposits wake. b| +7054|175616|5617|1|43|72739.23|0.06|0.02|R|F|1993-10-26|1993-10-11|1993-11-17|COLLECT COD|TRUCK|ding to the blithely express pinto b| +7054|163709|8742|2|34|60271.80|0.07|0.04|R|F|1993-11-15|1993-10-26|1993-11-17|COLLECT COD|SHIP|fully about the bold, regu| +7054|52612|2613|3|50|78230.50|0.00|0.03|R|F|1993-09-19|1993-09-25|1993-09-21|TAKE BACK RETURN|AIR|arefully pending deposits lose blithely| +7054|40541|5550|4|50|74077.00|0.08|0.07|R|F|1993-08-23|1993-10-02|1993-09-08|COLLECT COD|AIR|e bold pinto beans. furiously ir| +7054|165846|3395|5|37|70738.08|0.02|0.00|A|F|1993-09-26|1993-10-08|1993-09-27|TAKE BACK RETURN|TRUCK|thes. hockey players haggle along | +7054|171868|9420|6|46|89233.56|0.03|0.01|A|F|1993-11-13|1993-09-23|1993-12-12|COLLECT COD|AIR|iously even packages again| +7055|188472|3509|1|48|74902.56|0.01|0.03|R|F|1994-03-11|1993-12-20|1994-03-14|TAKE BACK RETURN|TRUCK|ag boldly. even foxes na| +7055|41113|1114|2|14|14757.54|0.10|0.08|A|F|1994-02-01|1993-12-27|1994-02-09|TAKE BACK RETURN|FOB|regular requests. regular deposi| +7055|181374|8929|3|49|71313.13|0.06|0.00|A|F|1993-12-31|1993-12-26|1994-01-05|DELIVER IN PERSON|REG AIR|ternes. even, express packages are: s| +7055|140223|224|4|15|18948.30|0.04|0.07|A|F|1994-02-21|1994-02-10|1994-03-19|DELIVER IN PERSON|RAIL|brave pinto beans nag blithely. furi| +7055|116397|8909|5|9|12720.51|0.06|0.04|A|F|1993-12-27|1994-01-27|1994-01-03|NONE|AIR|g accounts cajole furiously silently e| +7055|75914|5915|6|44|83156.04|0.06|0.05|R|F|1994-01-31|1994-02-03|1994-02-23|DELIVER IN PERSON|TRUCK|ickly final accounts hag| +7055|78708|6230|7|40|67468.00|0.06|0.06|A|F|1994-03-02|1994-01-03|1994-03-07|COLLECT COD|FOB|egular deposits mold slyly. busily pen| +7080|39035|6545|1|30|29220.90|0.07|0.04|N|O|1996-10-18|1996-10-18|1996-10-31|COLLECT COD|FOB|rash. quickly even account| +7080|56789|6790|2|39|68085.42|0.00|0.01|N|O|1996-11-03|1996-10-12|1996-11-16|NONE|REG AIR|tornis wake. regu| +7080|52276|7287|3|19|23337.13|0.10|0.06|N|O|1996-09-04|1996-09-25|1996-09-05|NONE|TRUCK|ag after the slyly regular pin| +7080|187622|2659|4|29|49578.98|0.09|0.03|N|O|1996-09-18|1996-10-11|1996-10-10|COLLECT COD|MAIL|eep carefully. quickly bold re| +7081|194687|9726|1|43|76612.24|0.07|0.01|R|F|1993-01-29|1993-01-08|1993-02-18|DELIVER IN PERSON|SHIP|ly blithely special| +7081|103877|6388|2|32|60187.84|0.10|0.02|A|F|1993-02-18|1992-12-25|1993-03-14|DELIVER IN PERSON|SHIP|riously. slyly pendi| +7081|59666|9667|3|13|21133.58|0.06|0.03|R|F|1992-12-02|1992-12-12|1992-12-23|DELIVER IN PERSON|RAIL|nal foxes thrash | +7081|193465|8504|4|1|1558.46|0.09|0.06|A|F|1992-11-27|1992-12-06|1992-12-12|DELIVER IN PERSON|REG AIR|gular ideas. pinto beans cajo| +7081|164410|9443|5|41|60450.81|0.03|0.01|R|F|1993-01-30|1993-01-17|1993-02-11|COLLECT COD|TRUCK|sly express tithes.| +7082|60471|7990|1|35|50101.45|0.00|0.00|N|O|1996-02-12|1996-01-22|1996-03-12|COLLECT COD|REG AIR|ous packages cajol| +7082|133594|1134|2|9|14648.31|0.10|0.02|N|O|1996-02-23|1996-01-27|1996-03-14|COLLECT COD|SHIP|nts wake among the slyly | +7082|114162|6674|3|9|10585.44|0.00|0.06|N|O|1996-02-17|1996-02-29|1996-03-18|DELIVER IN PERSON|TRUCK|nal accounts. slyly qu| +7082|108399|5930|4|18|25333.02|0.01|0.02|N|O|1996-04-07|1996-01-22|1996-04-28|DELIVER IN PERSON|SHIP|tes affix alongside of the express, | +7082|58471|977|5|26|37166.22|0.03|0.03|N|O|1996-01-09|1996-01-27|1996-01-15|NONE|SHIP|gular accounts. blithely speci| +7082|117618|7619|6|5|8178.05|0.00|0.03|N|O|1996-01-07|1996-01-22|1996-01-17|NONE|AIR|s. furiously express theodolites | +7083|167522|39|1|39|61991.28|0.07|0.01|N|O|1995-10-13|1995-08-23|1995-10-29|NONE|FOB|mong the careful| +7083|130561|562|2|47|74803.32|0.06|0.04|N|O|1995-11-11|1995-08-18|1995-11-20|DELIVER IN PERSON|SHIP|s accounts pri| +7083|130694|5721|3|18|31044.42|0.09|0.08|N|O|1995-07-30|1995-10-05|1995-08-18|DELIVER IN PERSON|MAIL|s. blithely silen| +7083|169573|7122|4|15|24638.55|0.04|0.05|N|O|1995-11-13|1995-09-20|1995-12-07|DELIVER IN PERSON|REG AIR|s above the unusu| +7083|474|5475|5|9|12370.23|0.01|0.05|N|O|1995-09-11|1995-09-06|1995-09-18|COLLECT COD|SHIP| blithely bold dec| +7084|136008|1035|1|42|43848.00|0.03|0.06|R|F|1993-10-27|1993-09-06|1993-11-04|NONE|FOB|the carefully express f| +7084|83898|6407|2|30|56456.70|0.10|0.06|A|F|1993-09-26|1993-08-31|1993-10-04|DELIVER IN PERSON|SHIP|blithely even instruction| +7084|71396|8918|3|11|15041.29|0.00|0.02|R|F|1993-08-03|1993-09-10|1993-08-22|TAKE BACK RETURN|TRUCK|s. quickly regular packages cajo| +7084|150540|541|4|21|33401.34|0.03|0.06|A|F|1993-09-30|1993-09-16|1993-10-12|COLLECT COD|MAIL|pendencies should| +7084|122343|2344|5|47|64170.98|0.02|0.08|A|F|1993-07-17|1993-09-01|1993-08-09|COLLECT COD|AIR|aggle. slyly express platelets will| +7085|27294|9797|1|23|28089.67|0.02|0.00|N|O|1997-03-02|1997-03-29|1997-03-15|COLLECT COD|RAIL|d accounts: quickly | +7085|120505|3018|2|45|68647.50|0.07|0.01|N|O|1997-02-23|1997-03-22|1997-03-08|COLLECT COD|TRUCK|bold accounts nag furiously sly| +7086|156056|8572|1|45|50042.25|0.04|0.07|N|O|1997-06-06|1997-06-25|1997-06-16|COLLECT COD|TRUCK|fully unusual excus| +7086|21364|3867|2|40|51414.40|0.10|0.00|N|O|1997-07-13|1997-06-30|1997-08-03|DELIVER IN PERSON|MAIL|blithely special excuses.| +7086|49596|9597|3|38|58732.42|0.10|0.00|N|O|1997-07-28|1997-07-19|1997-08-08|NONE|AIR|r requests against the blithely re| +7086|157940|7941|4|30|59938.20|0.07|0.00|N|O|1997-09-08|1997-06-30|1997-10-03|TAKE BACK RETURN|AIR|y final ideas may use after the blit| +7086|81594|9119|5|39|61448.01|0.10|0.03|N|O|1997-07-09|1997-06-21|1997-07-17|COLLECT COD|FOB| the pending theodolites| +7086|147030|7031|6|45|48466.35|0.04|0.06|N|O|1997-07-28|1997-07-23|1997-08-19|NONE|MAIL|ithely even theodolites. r| +7086|124764|9789|7|27|48296.52|0.00|0.02|N|O|1997-05-20|1997-07-12|1997-05-28|DELIVER IN PERSON|AIR|gle slyly: furiously even instruc| +7087|102468|7489|1|8|11763.68|0.08|0.04|N|O|1995-10-11|1995-08-14|1995-11-01|COLLECT COD|MAIL|! express, ironic deposits wake blithely| +7087|170016|17|2|18|19548.18|0.06|0.01|N|O|1995-08-01|1995-08-04|1995-08-24|COLLECT COD|TRUCK|ites. closel| +7087|52074|9590|3|23|23599.61|0.05|0.08|N|O|1995-10-11|1995-09-02|1995-11-03|NONE|MAIL|. regular, final excuses x-ray depths? sl| +7087|5690|8191|4|49|78188.81|0.02|0.08|N|O|1995-08-07|1995-08-14|1995-08-28|COLLECT COD|TRUCK|lithely above| +7087|17376|7377|5|35|45267.95|0.05|0.05|N|O|1995-08-02|1995-09-12|1995-08-14|COLLECT COD|TRUCK|thely idle pac| +7087|22905|7910|6|34|62148.60|0.02|0.08|N|O|1995-08-12|1995-08-09|1995-08-22|NONE|FOB|silent accounts. bold deposits boo| +7112|109503|7034|1|38|57475.00|0.07|0.06|N|O|1996-08-02|1996-08-31|1996-08-22|DELIVER IN PERSON|AIR| requests. care| +7113|153890|1436|1|39|75811.71|0.04|0.00|N|O|1996-02-16|1995-12-27|1996-02-25|DELIVER IN PERSON|FOB|oss the regular theodolites hag| +7113|22039|9546|2|43|41324.29|0.00|0.00|N|O|1995-12-23|1995-12-01|1996-01-11|NONE|SHIP|s wake furi| +7113|6846|1847|3|32|56090.88|0.10|0.06|N|O|1995-11-02|1995-12-22|1995-11-04|TAKE BACK RETURN|MAIL|tructions. regular theodolites sleep. fl| +7113|55972|5973|4|46|88686.62|0.09|0.03|N|O|1996-01-23|1996-01-24|1996-02-20|COLLECT COD|REG AIR|uickly final acc| +7114|119834|7368|1|40|74153.20|0.09|0.01|A|F|1993-01-26|1993-01-06|1993-02-18|TAKE BACK RETURN|MAIL|foxes are carefully. express| +7114|49516|2021|2|48|70344.48|0.03|0.03|A|F|1993-02-27|1993-01-02|1993-03-25|DELIVER IN PERSON|AIR| asymptotes hang. regular, regu| +7114|7914|415|3|27|49191.57|0.07|0.08|A|F|1992-12-30|1993-01-09|1993-01-13|NONE|RAIL|y even pinto beans after| +7114|7753|2754|4|29|48161.75|0.08|0.07|A|F|1992-11-25|1993-01-09|1992-12-21|TAKE BACK RETURN|REG AIR|onic instructions. slyly| +7114|95767|5768|5|49|86375.24|0.06|0.04|A|F|1992-11-11|1993-02-01|1992-12-07|NONE|TRUCK| packages. slyly final instruct| +7115|167252|2285|1|43|56727.75|0.09|0.06|A|F|1992-09-12|1992-08-10|1992-10-09|TAKE BACK RETURN|AIR|ial deposits wake furiously fluffy reque| +7115|196911|6912|2|43|86340.13|0.04|0.05|A|F|1992-06-20|1992-07-15|1992-07-16|COLLECT COD|SHIP|refully regular accounts. dep| +7115|78624|6146|3|44|70515.28|0.01|0.08|R|F|1992-09-02|1992-07-27|1992-09-15|TAKE BACK RETURN|TRUCK|ess requests wake final, f| +7116|187181|4736|1|47|59604.46|0.10|0.08|R|F|1993-07-26|1993-08-05|1993-07-31|NONE|SHIP| the regular, special accoun| +7116|145349|378|2|12|16732.08|0.00|0.07|A|F|1993-08-01|1993-07-14|1993-08-14|COLLECT COD|REG AIR|s. slyly bold dugouts | +7116|64579|9592|3|37|57112.09|0.07|0.02|A|F|1993-07-02|1993-08-10|1993-07-12|TAKE BACK RETURN|FOB|ackages sleep| +7117|136594|9108|1|31|50548.29|0.07|0.00|N|O|1998-03-04|1998-04-07|1998-03-22|COLLECT COD|AIR|uickly even, regular foxes. boldly | +7117|128710|8711|2|28|48683.88|0.04|0.03|N|O|1998-04-24|1998-02-15|1998-04-29|TAKE BACK RETURN|REG AIR|l ideas about the carefully bold the| +7117|23407|5910|3|41|54546.40|0.06|0.03|N|O|1998-03-07|1998-03-06|1998-04-01|NONE|TRUCK|efully bold deposits. blithe| +7118|181755|6792|1|46|84490.50|0.02|0.05|N|O|1997-09-22|1997-08-12|1997-10-05|COLLECT COD|FOB|y across the special, regular platelets.| +7118|148675|8676|2|48|82736.16|0.08|0.00|N|O|1997-08-20|1997-09-09|1997-09-18|TAKE BACK RETURN|MAIL|cajole after the slyly da| +7119|110690|5713|1|13|22108.97|0.02|0.04|N|O|1995-06-23|1995-06-11|1995-07-12|TAKE BACK RETURN|FOB|ke blithely pending theodolites| +7119|161779|1780|2|3|5522.31|0.00|0.07|N|O|1995-07-04|1995-06-11|1995-07-19|TAKE BACK RETURN|FOB|ully bold packa| +7119|5953|5954|3|7|13012.65|0.10|0.01|N|O|1995-07-08|1995-07-12|1995-07-18|DELIVER IN PERSON|MAIL|ely ironic excuses kin| +7119|47389|7390|4|48|64146.24|0.03|0.08|R|F|1995-06-07|1995-05-31|1995-06-11|NONE|REG AIR|ole blithely. quickly regular pinto b| +7144|78699|3714|1|31|52008.39|0.10|0.03|R|F|1993-01-22|1992-12-23|1993-01-29|NONE|TRUCK|ts. quickly unusu| +7144|87858|367|2|41|75679.85|0.01|0.01|A|F|1992-12-24|1992-12-22|1993-01-23|DELIVER IN PERSON|RAIL|l requests. brave pa| +7144|20259|260|3|39|45990.75|0.09|0.05|A|F|1993-01-29|1992-12-19|1993-02-11|NONE|RAIL|p. pending, | +7144|77630|5152|4|21|33760.23|0.05|0.00|A|F|1993-02-18|1993-01-11|1993-02-20|COLLECT COD|REG AIR|furiously special theodolites. final | +7144|118214|726|5|25|30805.25|0.00|0.07|A|F|1993-02-16|1992-12-16|1993-02-23|DELIVER IN PERSON|FOB|ronic requests. furiously unusual dep| +7144|7631|5132|6|40|61545.20|0.06|0.08|R|F|1992-11-16|1993-02-01|1992-12-02|COLLECT COD|REG AIR|above the platelets. regular accounts | +7144|42626|5131|7|6|9411.72|0.04|0.01|R|F|1992-11-24|1993-01-30|1992-12-22|COLLECT COD|AIR|ages. fluffily | +7145|3152|3153|1|14|14772.10|0.02|0.07|N|O|1997-04-01|1997-01-23|1997-04-14|TAKE BACK RETURN|RAIL|s. carefully special ideas across th| +7145|172271|2272|2|37|49700.99|0.10|0.07|N|O|1997-04-18|1997-02-09|1997-04-22|TAKE BACK RETURN|RAIL|ely bold sentiments | +7145|142784|7813|3|24|43842.72|0.02|0.07|N|O|1997-02-23|1997-01-23|1997-02-24|TAKE BACK RETURN|SHIP|haggle. final, special packag| +7145|157811|5357|4|49|91571.69|0.03|0.06|N|O|1997-02-24|1997-03-12|1997-03-05|NONE|SHIP|es wake furiously. quickly ironic dolp| +7145|113936|6448|5|2|3899.86|0.06|0.07|N|O|1997-03-10|1997-02-23|1997-03-21|DELIVER IN PERSON|MAIL|ress requests| +7145|110001|5024|6|14|14154.00|0.07|0.02|N|O|1996-12-25|1997-02-23|1997-01-20|DELIVER IN PERSON|MAIL|the furiously regular packages. | +7145|176523|1558|7|20|31990.40|0.01|0.04|N|O|1997-03-09|1997-02-15|1997-03-23|NONE|TRUCK|y unusual | +7146|17539|7540|1|19|27674.07|0.02|0.01|A|F|1994-12-06|1994-12-19|1994-12-13|NONE|RAIL|yly ironic asymptotes. slyly iron| +7146|174144|1696|2|35|42634.90|0.06|0.06|A|F|1995-02-01|1995-01-17|1995-02-14|NONE|TRUCK|ecial accounts detect slyly slyly regular | +7146|32780|7787|3|14|23978.92|0.01|0.06|R|F|1995-02-02|1994-12-11|1995-02-12|NONE|RAIL|o use furiously ag| +7146|124199|4200|4|13|15901.47|0.09|0.07|R|F|1995-01-03|1994-12-13|1995-01-05|COLLECT COD|MAIL| quickly according | +7146|7155|2156|5|47|49921.05|0.01|0.06|A|F|1994-12-26|1994-12-03|1995-01-18|DELIVER IN PERSON|RAIL|ly regular| +7146|48395|8396|6|46|61795.94|0.02|0.07|R|F|1994-12-13|1994-12-04|1994-12-31|DELIVER IN PERSON|FOB|n ideas. ironic ac| +7147|76004|6005|1|12|11760.00|0.06|0.04|N|O|1997-04-07|1997-06-12|1997-04-23|COLLECT COD|FOB|inal accoun| +7147|191101|3621|2|43|51260.30|0.03|0.02|N|O|1997-03-26|1997-05-09|1997-04-19|TAKE BACK RETURN|RAIL| carefully ironic sauterne| +7147|22137|4640|3|43|45542.59|0.06|0.06|N|O|1997-04-03|1997-06-12|1997-04-07|TAKE BACK RETURN|RAIL|across the slyly even ideas. carefully bol| +7148|198033|5591|1|42|47503.26|0.09|0.02|N|O|1995-07-01|1995-05-21|1995-07-07|COLLECT COD|FOB|bold, express deposits across the| +7148|126032|8545|2|41|43379.23|0.02|0.04|N|F|1995-06-01|1995-05-21|1995-06-28|DELIVER IN PERSON|FOB|egular packages. deposits are. excuses wak| +7148|5900|5901|3|30|54177.00|0.01|0.08|R|F|1995-05-11|1995-05-25|1995-06-08|NONE|MAIL| fluffily pending deposits. express asy| +7148|150106|2622|4|24|27746.40|0.02|0.04|A|F|1995-06-08|1995-07-11|1995-06-15|DELIVER IN PERSON|TRUCK|ke carefully fina| +7148|28327|830|5|10|12553.20|0.07|0.00|N|O|1995-07-27|1995-05-31|1995-08-13|DELIVER IN PERSON|MAIL|n requests boost | +7148|75336|7844|6|40|52453.20|0.04|0.02|N|O|1995-07-05|1995-06-11|1995-07-10|DELIVER IN PERSON|TRUCK|ironic packages are qui| +7149|60804|3311|1|41|72356.80|0.04|0.04|N|O|1996-05-14|1996-05-21|1996-05-24|TAKE BACK RETURN|AIR|, ironic ins| +7150|43278|3279|1|32|39080.64|0.05|0.01|N|O|1998-06-20|1998-06-27|1998-06-30|TAKE BACK RETURN|REG AIR|s. ironic theodolites wa| +7150|158690|8691|2|32|55958.08|0.01|0.02|N|O|1998-05-08|1998-05-16|1998-05-18|NONE|AIR| beans. busily brave acco| +7150|98713|8714|3|50|85585.50|0.05|0.08|N|O|1998-07-04|1998-06-10|1998-07-17|NONE|MAIL|cuses are fluffily car| +7150|56199|6200|4|26|30034.94|0.03|0.07|N|O|1998-06-30|1998-06-09|1998-07-17|DELIVER IN PERSON|MAIL|ess pinto beans.| +7150|128350|5887|5|33|45485.55|0.09|0.03|N|O|1998-06-19|1998-06-10|1998-07-02|DELIVER IN PERSON|RAIL|usly special requests are carefully. ev| +7150|172726|2727|6|34|61156.48|0.01|0.00|N|O|1998-05-29|1998-05-01|1998-05-30|DELIVER IN PERSON|RAIL|ss, express ideas wake ac| +7150|190252|5291|7|27|36240.75|0.10|0.03|N|O|1998-04-23|1998-05-13|1998-05-07|NONE|RAIL|ly tithes. | +7151|149962|7505|1|33|66394.68|0.00|0.08|N|O|1998-05-12|1998-05-21|1998-05-25|DELIVER IN PERSON|RAIL|use furiously. blithely final pinto beans| +7151|5192|7693|2|22|24138.18|0.03|0.08|N|O|1998-04-28|1998-05-16|1998-05-20|DELIVER IN PERSON|REG AIR|as. regular accounts abo| +7151|50289|7805|3|32|39656.96|0.08|0.08|N|O|1998-05-28|1998-04-29|1998-06-26|NONE|TRUCK|fully express dep| +7151|194209|6729|4|9|11728.80|0.08|0.03|N|O|1998-06-30|1998-06-10|1998-07-15|COLLECT COD|TRUCK|ts will have to are carefully acco| +7151|59619|2125|5|21|33150.81|0.00|0.08|N|O|1998-05-14|1998-05-22|1998-06-06|COLLECT COD|MAIL|y ironic deposits. unusual, | +7151|6886|9387|6|40|71715.20|0.07|0.02|N|O|1998-05-08|1998-06-13|1998-05-24|TAKE BACK RETURN|AIR|nt theodolites lose. pendi| +7151|116858|4392|7|20|37497.00|0.06|0.02|N|O|1998-07-09|1998-05-07|1998-07-29|NONE|AIR|regular foxes caj| +7176|29354|4359|1|26|33367.10|0.04|0.03|R|F|1992-04-03|1992-04-10|1992-04-05|NONE|FOB|kages sleep carefully accounts. f| +7176|145126|5127|2|38|44502.56|0.06|0.08|A|F|1992-04-25|1992-03-16|1992-05-16|NONE|SHIP|bold instructio| +7176|128596|8597|3|18|29242.62|0.03|0.03|A|F|1992-05-31|1992-04-14|1992-06-15|TAKE BACK RETURN|TRUCK|y ironic platelets. blit| +7176|103324|8345|4|34|45128.88|0.05|0.01|A|F|1992-04-15|1992-04-14|1992-05-09|NONE|SHIP|ts according to the slyly final excuses wa| +7176|151463|6494|5|28|42404.88|0.08|0.04|R|F|1992-03-25|1992-03-13|1992-04-01|NONE|REG AIR|re daringly slow asymptotes. carefully re| +7176|24668|9673|6|22|35038.52|0.03|0.03|A|F|1992-02-28|1992-04-25|1992-03-01|TAKE BACK RETURN|SHIP|pinto beans.| +7176|188358|8359|7|4|5785.40|0.02|0.00|A|F|1992-02-12|1992-04-19|1992-03-04|TAKE BACK RETURN|MAIL|ffily bold package| +7177|129743|9744|1|45|79773.30|0.07|0.08|A|F|1994-03-12|1994-03-20|1994-03-17|COLLECT COD|AIR|le quickly final deposits. fu| +7177|185985|8504|2|2|4141.96|0.03|0.03|R|F|1994-05-05|1994-04-28|1994-05-16|DELIVER IN PERSON|AIR|nal packages. fl| +7177|48347|852|3|6|7772.04|0.10|0.00|R|F|1994-05-06|1994-04-19|1994-05-13|NONE|SHIP|accounts haggle according to the slyly busy| +7177|155608|5609|4|38|63216.80|0.04|0.03|A|F|1994-03-07|1994-04-13|1994-03-30|TAKE BACK RETURN|AIR|s. foxes hag| +7177|102212|2213|5|6|7285.26|0.02|0.04|A|F|1994-04-17|1994-04-29|1994-05-17|DELIVER IN PERSON|MAIL| asymptotes.| +7177|72097|9619|6|7|7483.63|0.09|0.03|A|F|1994-04-09|1994-03-26|1994-04-17|TAKE BACK RETURN|AIR|ully above| +7178|93679|6189|1|12|20072.04|0.00|0.00|A|F|1994-04-02|1994-04-20|1994-04-30|NONE|SHIP|ending packages. fluffily final| +7178|61309|3816|2|1|1270.30|0.09|0.00|R|F|1994-04-16|1994-04-07|1994-04-29|COLLECT COD|TRUCK| closely ironic deposits | +7178|6128|3629|3|36|37228.32|0.09|0.01|R|F|1994-03-25|1994-04-03|1994-04-09|TAKE BACK RETURN|TRUCK|ly express account| +7178|185027|64|4|24|26688.48|0.00|0.07|R|F|1994-04-19|1994-03-05|1994-04-28|COLLECT COD|TRUCK|re against the bold,| +7178|144517|7032|5|4|6246.04|0.01|0.07|R|F|1994-06-01|1994-03-30|1994-06-15|COLLECT COD|FOB|yly express deposits cajole bl| +7179|7136|4637|1|9|9388.17|0.04|0.05|N|O|1998-04-08|1998-03-17|1998-05-05|TAKE BACK RETURN|AIR|quickly special requests.| +7179|124989|4990|2|44|88615.12|0.02|0.03|N|O|1998-02-25|1998-01-24|1998-03-22|COLLECT COD|RAIL| depths. furiously regular d| +7179|82817|2818|3|1|1799.81|0.05|0.07|N|O|1998-01-06|1998-02-06|1998-01-31|COLLECT COD|MAIL|requests sleep dogge| +7180|65591|604|1|16|24905.44|0.07|0.02|N|O|1997-06-26|1997-06-24|1997-06-28|COLLECT COD|TRUCK|n packages. final| +7180|178285|803|2|36|49078.08|0.00|0.05|N|O|1997-05-22|1997-07-07|1997-06-19|COLLECT COD|RAIL|ly against the express theodolites. | +7180|32871|2872|3|28|50508.36|0.00|0.04|N|O|1997-06-11|1997-06-04|1997-06-14|NONE|TRUCK|mptotes are | +7181|18832|6336|1|26|45521.58|0.04|0.04|N|O|1996-08-08|1996-06-06|1996-08-10|DELIVER IN PERSON|MAIL|ar, bold requests. slyly regular pinto bean| +7181|101576|6597|2|50|78878.50|0.02|0.03|N|O|1996-06-21|1996-07-09|1996-07-21|DELIVER IN PERSON|MAIL|ajole according to the requests. ideas| +7181|177773|2808|3|33|61075.41|0.07|0.07|N|O|1996-06-30|1996-06-19|1996-07-16|DELIVER IN PERSON|MAIL|x slyly. slyly special requests wake| +7181|23265|8270|4|25|29706.50|0.03|0.08|N|O|1996-08-16|1996-06-19|1996-09-06|TAKE BACK RETURN|TRUCK| even foxes. packages from the c| +7181|14619|7121|5|18|27604.98|0.03|0.07|N|O|1996-06-13|1996-07-10|1996-06-28|DELIVER IN PERSON|AIR|ructions wake. furiously regular pinto be| +7182|130371|7911|1|30|42041.10|0.10|0.03|N|O|1996-07-03|1996-05-20|1996-07-22|COLLECT COD|RAIL|ites cajole carefully despite the flu| +7182|141597|6626|2|7|11470.13|0.06|0.01|N|O|1996-05-10|1996-04-19|1996-05-23|TAKE BACK RETURN|REG AIR| special foxes. slyly re| +7183|96639|1658|1|47|76874.61|0.08|0.07|N|O|1998-01-16|1998-01-22|1998-01-27|DELIVER IN PERSON|MAIL|ackages slee| +7183|197702|7703|2|29|52191.30|0.03|0.06|N|O|1998-03-20|1998-02-04|1998-04-02|TAKE BACK RETURN|TRUCK|. packages nag sl| +7183|171794|4312|3|30|55973.70|0.03|0.00|N|O|1997-12-30|1998-01-18|1998-01-17|TAKE BACK RETURN|FOB|refully regular packages sleep blithely| +7183|126412|3949|4|7|10068.87|0.02|0.08|N|O|1998-02-03|1998-02-03|1998-02-26|TAKE BACK RETURN|AIR|t packages. blithely fina| +7183|477|7978|5|40|55098.80|0.01|0.07|N|O|1997-12-24|1998-02-02|1998-01-01|TAKE BACK RETURN|MAIL|atelets haggle | +7208|42335|2336|1|11|14050.63|0.10|0.05|N|O|1997-04-05|1997-02-22|1997-04-28|COLLECT COD|FOB|usly bold packages along the bold, pending| +7209|19006|9007|1|38|35150.00|0.04|0.06|A|F|1992-01-28|1992-03-08|1992-02-27|TAKE BACK RETURN|AIR|oss the dependencies. fluffi| +7209|17991|2994|2|42|80177.58|0.07|0.04|R|F|1992-03-08|1992-04-02|1992-04-07|COLLECT COD|TRUCK|r the regular, silent asymptotes doubt | +7209|166532|4081|3|46|73532.38|0.03|0.05|A|F|1992-03-05|1992-03-25|1992-03-25|DELIVER IN PERSON|MAIL|solve slyly among the| +7209|88286|795|4|18|22937.04|0.02|0.06|A|F|1992-01-20|1992-02-29|1992-02-13|DELIVER IN PERSON|RAIL|d deposits haggl| +7209|16319|1322|5|35|43235.85|0.08|0.01|A|F|1992-04-14|1992-04-04|1992-04-17|TAKE BACK RETURN|REG AIR|y furiously pending dependen| +7209|59545|9546|6|18|27081.72|0.10|0.00|A|F|1992-02-09|1992-02-13|1992-02-28|TAKE BACK RETURN|MAIL|al pains about| +7210|17340|2343|1|12|15088.08|0.00|0.02|N|O|1995-12-14|1996-01-25|1996-01-05|COLLECT COD|REG AIR|ctions. carefully fi| +7210|18145|647|2|30|31894.20|0.06|0.03|N|O|1996-02-06|1996-01-26|1996-02-11|DELIVER IN PERSON|REG AIR|riously slyly slow requests; package| +7210|161075|6108|3|35|39762.45|0.05|0.02|N|O|1996-01-22|1996-01-13|1996-01-31|DELIVER IN PERSON|SHIP|ironic dolphins nag. re| +7211|34077|4078|1|27|27298.89|0.10|0.02|N|O|1998-08-04|1998-08-18|1998-09-02|NONE|MAIL|uickly unusual cou| +7211|120000|7534|2|41|41820.00|0.04|0.08|N|O|1998-07-01|1998-08-07|1998-07-19|TAKE BACK RETURN|RAIL|efully ironic | +7212|48863|1368|1|23|41672.78|0.03|0.08|A|F|1994-09-03|1994-08-11|1994-09-25|NONE|MAIL|egular platel| +7212|24078|1585|2|41|41084.87|0.08|0.03|R|F|1994-09-28|1994-07-16|1994-10-22|COLLECT COD|TRUCK|nding pinto beans. theo| +7213|119549|7083|1|41|64310.14|0.05|0.04|N|O|1997-12-25|1998-01-18|1997-12-29|NONE|AIR|ounts ought to | +7213|51928|1929|2|19|35718.48|0.09|0.00|N|O|1997-11-26|1998-01-17|1997-11-28|COLLECT COD|MAIL|ly daring pinto beans cajole. alway| +7213|149169|6712|3|38|46290.08|0.09|0.07|N|O|1998-01-28|1998-02-03|1998-02-13|DELIVER IN PERSON|AIR|ss packages mo| +7214|76379|3901|1|48|65057.76|0.03|0.00|N|O|1996-10-08|1996-10-09|1996-10-10|TAKE BACK RETURN|AIR|he furiously express| +7215|179711|2229|1|15|26860.65|0.05|0.07|N|O|1995-12-31|1996-01-21|1996-01-21|TAKE BACK RETURN|TRUCK| regular requests. | +7240|181794|4313|1|30|56273.70|0.05|0.08|N|O|1995-07-25|1995-07-24|1995-08-12|NONE|AIR|furiously final courts haggle. | +7240|195715|5716|2|35|63374.85|0.01|0.04|N|O|1995-06-28|1995-07-23|1995-06-30|TAKE BACK RETURN|TRUCK|requests poach. express, even pin| +7240|174406|9441|3|18|26647.20|0.05|0.05|N|O|1995-09-03|1995-08-04|1995-09-30|NONE|FOB|furiously regular pinto beans nod.| +7240|38447|8448|4|38|52646.72|0.01|0.08|N|O|1995-08-20|1995-07-19|1995-09-06|NONE|FOB| furiously special packages ac| +7240|165127|7644|5|1|1192.12|0.04|0.04|N|O|1995-06-30|1995-09-16|1995-07-22|DELIVER IN PERSON|TRUCK|thely even dep| +7240|88757|6282|6|29|50626.75|0.02|0.02|N|O|1995-07-14|1995-08-05|1995-08-13|TAKE BACK RETURN|RAIL|ests. furi| +7240|132558|2559|7|34|54078.70|0.00|0.02|N|O|1995-08-23|1995-08-24|1995-08-27|COLLECT COD|MAIL|deas use? p| +7241|96109|8619|1|37|40888.70|0.08|0.08|N|O|1995-12-05|1995-12-17|1995-12-14|DELIVER IN PERSON|MAIL|iously close somas haggle | +7241|94927|9946|2|22|42282.24|0.00|0.06|N|O|1995-12-18|1995-12-08|1996-01-11|COLLECT COD|TRUCK|refully ironic instru| +7241|28728|3733|3|15|24850.80|0.10|0.03|N|O|1996-01-26|1996-01-12|1996-02-09|TAKE BACK RETURN|AIR|s. blithely pen| +7241|21745|1746|4|37|61669.38|0.01|0.08|N|O|1995-11-03|1995-12-01|1995-11-08|COLLECT COD|TRUCK|al requests use at the| +7241|55739|5740|5|3|5084.19|0.09|0.01|N|O|1995-11-15|1996-01-14|1995-12-07|COLLECT COD|REG AIR|ns according to the regular dinos wake | +7241|4589|9590|6|35|52275.30|0.09|0.06|N|O|1996-02-02|1995-11-27|1996-02-26|DELIVER IN PERSON|MAIL|cajole furiously regular,| +7242|107194|2215|1|37|44444.03|0.07|0.04|N|O|1997-02-08|1997-01-12|1997-02-19|COLLECT COD|RAIL|usy pinto beans are blithely special | +7242|196458|8978|2|45|69950.25|0.03|0.03|N|O|1997-01-27|1996-12-08|1997-02-18|COLLECT COD|MAIL|lent packag| +7242|65922|935|3|28|52861.76|0.01|0.04|N|O|1996-12-05|1996-11-23|1996-12-10|TAKE BACK RETURN|REG AIR|ost regularly. requests wake| +7242|150269|5300|4|25|32981.50|0.05|0.04|N|O|1996-12-06|1997-01-17|1996-12-16|DELIVER IN PERSON|FOB|ependencies wake| +7242|161140|1141|5|37|44442.18|0.09|0.07|N|O|1997-01-12|1996-12-13|1997-01-13|COLLECT COD|MAIL|blithely quickly regular accounts| +7242|66508|9015|6|16|23592.00|0.02|0.08|N|O|1996-11-05|1996-12-11|1996-11-26|DELIVER IN PERSON|TRUCK|ng the furiously express platelets. | +7243|5599|5600|1|22|33100.98|0.05|0.01|N|O|1998-07-23|1998-05-03|1998-07-25|DELIVER IN PERSON|FOB|. furiously bold dependencies after | +7243|94201|4202|2|9|10756.80|0.10|0.07|N|O|1998-04-27|1998-06-25|1998-05-12|TAKE BACK RETURN|REG AIR|ular theodolites. final i| +7243|33346|5850|3|22|28145.48|0.08|0.03|N|O|1998-05-31|1998-05-21|1998-06-02|DELIVER IN PERSON|FOB|the slyly express requests cajole after th| +7243|36750|6751|4|36|60723.00|0.08|0.05|N|O|1998-06-23|1998-06-12|1998-07-10|NONE|RAIL|old accounts cajole bli| +7243|53908|8919|5|1|1861.90|0.08|0.06|N|O|1998-07-09|1998-06-03|1998-07-27|TAKE BACK RETURN|REG AIR|ackages. speci| +7243|30531|5538|6|4|5846.12|0.10|0.02|N|O|1998-07-03|1998-04-29|1998-07-19|TAKE BACK RETURN|TRUCK|nt accounts | +7243|118688|6222|7|31|52907.08|0.02|0.00|N|O|1998-07-19|1998-06-12|1998-07-21|COLLECT COD|TRUCK|ly express pa| +7244|175396|2948|1|9|13242.51|0.08|0.04|N|O|1998-09-15|1998-09-15|1998-10-13|COLLECT COD|FOB|ly even requests| +7244|71372|1373|2|26|34927.62|0.09|0.03|N|O|1998-07-06|1998-08-23|1998-07-28|NONE|MAIL| ironic platelets cajol| +7244|144461|2004|3|3|4516.38|0.00|0.03|N|O|1998-09-04|1998-08-01|1998-10-01|COLLECT COD|REG AIR|requests. slyly final accounts| +7244|152667|2668|4|7|12037.62|0.00|0.08|N|O|1998-09-09|1998-08-25|1998-09-30|TAKE BACK RETURN|TRUCK|kly quick foxes across the depos| +7245|4163|1664|1|24|25611.84|0.10|0.02|A|F|1993-07-15|1993-04-28|1993-07-27|DELIVER IN PERSON|AIR|jole furiously among the regular, ironic| +7245|158806|8807|2|32|59673.60|0.04|0.08|R|F|1993-06-09|1993-06-17|1993-06-18|DELIVER IN PERSON|FOB|otes are against the pending foxes. | +7245|36154|3664|3|42|45786.30|0.04|0.07|R|F|1993-05-25|1993-04-28|1993-06-09|TAKE BACK RETURN|SHIP|le furiously ironic requests. slyly r| +7245|30267|5274|4|28|33523.28|0.07|0.01|R|F|1993-05-31|1993-06-19|1993-06-29|COLLECT COD|RAIL|ily furiously | +7246|153415|5931|1|20|29368.20|0.08|0.03|N|O|1998-05-21|1998-06-06|1998-05-24|DELIVER IN PERSON|REG AIR|e slyly according to the ironic foxes. bo| +7246|41070|1071|2|15|15166.05|0.08|0.03|N|O|1998-05-05|1998-05-26|1998-06-02|COLLECT COD|SHIP|hins. pending pinto beans shall have to | +7246|47544|49|3|1|1491.54|0.07|0.05|N|O|1998-07-07|1998-06-02|1998-07-19|TAKE BACK RETURN|AIR|s. slyly special f| +7246|57363|7364|4|7|9242.52|0.08|0.00|N|O|1998-03-19|1998-04-25|1998-03-22|NONE|TRUCK| pinto beans sleep blithely ac| +7246|90088|2598|5|10|10780.80|0.06|0.00|N|O|1998-05-28|1998-05-27|1998-06-05|COLLECT COD|MAIL|ss deposits sleep carefully across the reg| +7246|96674|9184|6|6|10024.02|0.02|0.06|N|O|1998-05-15|1998-06-06|1998-05-18|COLLECT COD|SHIP|s across the carefully pending instructi| +7246|198013|533|7|19|21109.19|0.07|0.00|N|O|1998-03-31|1998-05-23|1998-04-28|NONE|RAIL|ons despite the slyly iron| +7247|193680|6200|1|29|51436.72|0.02|0.06|N|O|1997-04-13|1997-03-26|1997-04-18|NONE|REG AIR|uctions. a| +7247|174804|2356|2|8|15030.40|0.09|0.00|N|O|1997-05-22|1997-04-12|1997-05-28|NONE|FOB| the carefully pen| +7247|116736|9248|3|18|31549.14|0.07|0.03|N|O|1997-04-11|1997-04-14|1997-04-24|TAKE BACK RETURN|AIR|encies are. even accounts above th| +7247|175284|2836|4|30|40778.40|0.06|0.01|N|O|1997-04-21|1997-05-20|1997-04-28|TAKE BACK RETURN|AIR|ously. final, | +7272|126168|1193|1|8|9553.28|0.01|0.02|A|F|1993-08-27|1993-08-05|1993-09-18|DELIVER IN PERSON|FOB|uses. quickly unusual theodolites along th| +7272|91420|8948|2|26|36696.92|0.10|0.03|A|F|1993-06-10|1993-07-07|1993-07-05|NONE|REG AIR|ly unusual packages affix furi| +7273|78281|789|1|5|6296.40|0.09|0.01|A|F|1995-04-18|1995-04-30|1995-04-23|NONE|SHIP|totes. pending ideas | +7273|62183|4690|2|1|1145.18|0.03|0.03|N|O|1995-07-20|1995-05-10|1995-08-09|COLLECT COD|MAIL|al requests wake fluffily. blithely spe| +7273|94915|4916|3|11|21009.01|0.06|0.06|N|F|1995-05-28|1995-05-09|1995-06-25|COLLECT COD|REG AIR|ccounts. carefully express packages w| +7273|20254|5259|4|20|23485.00|0.00|0.04|R|F|1995-04-28|1995-05-25|1995-05-02|DELIVER IN PERSON|TRUCK| are against the orbits. sly| +7273|197067|9587|5|46|53546.76|0.01|0.08|A|F|1995-04-15|1995-06-16|1995-04-26|TAKE BACK RETURN|RAIL|unts serve quickly.| +7274|189898|9899|1|27|53673.03|0.03|0.08|N|O|1997-08-27|1997-08-14|1997-08-29|TAKE BACK RETURN|RAIL|the fluffily regular theo| +7275|82838|5347|1|50|91041.50|0.02|0.03|N|O|1995-10-18|1995-10-13|1995-11-15|NONE|AIR|carefully. bold | +7276|122632|2633|1|41|67839.83|0.03|0.05|R|F|1992-06-24|1992-07-11|1992-07-06|TAKE BACK RETURN|SHIP|oxes sleep slyly unusual, regu| +7277|53793|6299|1|12|20961.48|0.04|0.05|A|F|1994-06-18|1994-06-02|1994-07-06|COLLECT COD|TRUCK|e. carefully unusual instr| +7277|98582|1092|2|16|25289.28|0.07|0.05|R|F|1994-04-23|1994-05-16|1994-04-25|DELIVER IN PERSON|AIR| requests sublate. th| +7277|57839|345|3|29|52108.07|0.02|0.04|R|F|1994-07-11|1994-06-12|1994-07-21|DELIVER IN PERSON|TRUCK| regular, final ideas. pack| +7277|94886|7396|4|29|54545.52|0.02|0.00|A|F|1994-05-15|1994-05-18|1994-06-11|TAKE BACK RETURN|AIR|sual foxes. ironic, f| +7277|135927|5928|5|20|39258.40|0.04|0.04|R|F|1994-05-11|1994-06-12|1994-05-30|COLLECT COD|SHIP|nto beans wake carefully. quickly even | +7278|52801|5307|1|37|64890.60|0.06|0.02|N|O|1997-01-04|1997-02-07|1997-01-30|DELIVER IN PERSON|TRUCK|odolites detect. blithely| +7278|22178|2179|2|21|23103.57|0.02|0.02|N|O|1997-02-18|1997-01-15|1997-03-05|NONE|TRUCK|t the final dolphins. furiously regular a| +7278|133477|1017|3|6|9062.82|0.04|0.05|N|O|1997-02-13|1996-12-28|1997-03-11|NONE|TRUCK|ng, final deposits.| +7278|141169|6198|4|31|37514.96|0.03|0.02|N|O|1996-11-19|1997-01-16|1996-11-28|TAKE BACK RETURN|AIR|lithely even Tiresias. furiously ironic| +7279|125705|730|1|25|43267.50|0.00|0.02|A|F|1992-10-14|1992-11-02|1992-10-16|COLLECT COD|REG AIR|ly ironic f| +7279|120069|7606|2|31|33760.86|0.06|0.05|R|F|1992-11-03|1992-11-29|1992-11-05|TAKE BACK RETURN|TRUCK| the blithely even de| +7279|189810|7365|3|5|9499.05|0.07|0.02|A|F|1992-09-30|1992-11-30|1992-10-06|TAKE BACK RETURN|MAIL| cajole. f| +7279|122576|113|4|35|55949.95|0.00|0.02|R|F|1992-09-10|1992-10-18|1992-09-12|NONE|REG AIR| carefully unusua| +7279|134566|2106|5|41|65622.96|0.10|0.07|A|F|1992-12-28|1992-10-25|1993-01-16|DELIVER IN PERSON|AIR|gside of the permanently iron| +7279|34056|4057|6|1|990.05|0.01|0.01|A|F|1992-10-08|1992-11-09|1992-11-04|DELIVER IN PERSON|AIR|. regular excuse| +7304|176310|8828|1|3|4158.93|0.07|0.01|N|O|1997-08-13|1997-10-17|1997-08-27|NONE|REG AIR|sits. slyly even requ| +7304|28501|8502|2|9|12865.50|0.05|0.03|N|O|1997-11-26|1997-09-19|1997-12-24|NONE|TRUCK| print slyly. sly, quiet platelets se| +7304|6952|4453|3|14|26025.30|0.01|0.04|N|O|1997-09-07|1997-10-22|1997-09-15|COLLECT COD|REG AIR|ges. furiously regular foxe| +7305|114393|1927|1|32|45036.48|0.09|0.05|N|O|1997-10-09|1997-10-18|1997-10-14|NONE|AIR|s wake blithely against the blithely bold| +7305|193321|3322|2|50|70716.00|0.05|0.08|N|O|1997-10-24|1997-11-11|1997-10-27|NONE|FOB|to beans; carefully expre| +7305|143282|825|3|7|9276.96|0.04|0.03|N|O|1997-10-18|1997-10-11|1997-10-30|TAKE BACK RETURN|TRUCK|p fluffily furiously regular accoun| +7305|136776|9290|4|1|1812.77|0.02|0.06|N|O|1997-12-16|1997-10-20|1998-01-08|TAKE BACK RETURN|REG AIR|p blithely after the furiously bo| +7305|190686|3206|5|26|46193.68|0.09|0.07|N|O|1997-12-16|1997-11-09|1997-12-26|NONE|FOB|ckly bold packages around| +7305|57180|9686|6|41|46624.38|0.09|0.01|N|O|1997-09-17|1997-11-01|1997-10-02|NONE|REG AIR|ding ideas t| +7306|151283|8829|1|48|64045.44|0.09|0.01|N|O|1995-07-19|1995-08-08|1995-08-07|TAKE BACK RETURN|MAIL|nst the slowly ironic requests. furious| +7306|11741|9245|2|22|36360.28|0.04|0.03|N|O|1995-10-15|1995-09-28|1995-10-25|COLLECT COD|SHIP|sts along th| +7306|128211|3236|3|14|17348.94|0.00|0.08|N|O|1995-07-16|1995-09-08|1995-08-05|TAKE BACK RETURN|RAIL|ual, pending foxes eat among t| +7306|42131|2132|4|1|1073.13|0.02|0.08|N|O|1995-10-16|1995-09-14|1995-11-11|DELIVER IN PERSON|REG AIR|l accounts hinder d| +7306|94319|9338|5|8|10506.48|0.04|0.05|N|O|1995-10-14|1995-09-21|1995-11-09|TAKE BACK RETURN|FOB|quests affix quickly. slyly expres| +7307|79855|4870|1|22|40366.70|0.05|0.00|A|F|1992-10-08|1992-08-17|1992-10-18|TAKE BACK RETURN|MAIL|nstructions wake after the regular | +7307|107406|2427|2|44|62189.60|0.02|0.06|R|F|1992-09-17|1992-09-26|1992-09-19|COLLECT COD|SHIP| pinto beans. regular, cl| +7307|165672|8189|3|11|19114.37|0.02|0.04|R|F|1992-10-07|1992-08-31|1992-10-23|TAKE BACK RETURN|SHIP|hely pending requests cajol| +7307|47898|2907|4|22|40609.58|0.00|0.06|R|F|1992-07-22|1992-08-12|1992-07-29|DELIVER IN PERSON|MAIL|ly ironic deposits. | +7308|77640|5162|1|43|69558.52|0.01|0.05|N|O|1997-04-05|1997-01-30|1997-04-17|TAKE BACK RETURN|AIR|iously ironic pinto beans haggle. foxes a| +7309|98589|8590|1|3|4762.74|0.00|0.05|N|O|1996-05-16|1996-05-04|1996-06-15|COLLECT COD|SHIP|furiously. pains are fluffil| +7309|179488|7040|2|32|50159.36|0.00|0.07|N|O|1996-06-06|1996-05-07|1996-06-12|DELIVER IN PERSON|SHIP|riously unusual accounts| +7309|39342|6852|3|43|55097.62|0.05|0.06|N|O|1996-04-19|1996-04-24|1996-05-19|COLLECT COD|AIR|ular platelets. | +7309|11692|1693|4|47|75373.43|0.04|0.05|N|O|1996-04-25|1996-04-01|1996-04-29|COLLECT COD|RAIL|ly regular theodolites. quickly bold| +7309|95046|65|5|28|29149.12|0.06|0.03|N|O|1996-04-02|1996-05-05|1996-04-10|TAKE BACK RETURN|TRUCK|ecial foxes sle| +7309|29049|1552|6|2|1956.08|0.00|0.00|N|O|1996-02-18|1996-05-15|1996-02-28|NONE|REG AIR|out the theodolites. furiously speci| +7310|55465|7971|1|30|42613.80|0.05|0.02|N|O|1996-07-13|1996-08-04|1996-07-20|TAKE BACK RETURN|RAIL|ironic pinto beans sleep unusual | +7310|199317|1837|2|9|12746.79|0.06|0.08|N|O|1996-09-17|1996-07-23|1996-10-01|DELIVER IN PERSON|REG AIR|uriously express deposits wake deposits. | +7310|116923|4457|3|9|17459.28|0.04|0.08|N|O|1996-09-27|1996-08-13|1996-10-07|DELIVER IN PERSON|REG AIR|nts cajole always. slyly ironic dependenc| +7310|116333|1356|4|28|37781.24|0.05|0.07|N|O|1996-08-07|1996-08-20|1996-08-11|NONE|FOB|unts. carefully express grouches sleep a| +7310|7601|2602|5|31|46766.60|0.02|0.08|N|O|1996-06-19|1996-08-19|1996-07-19|DELIVER IN PERSON|SHIP|ll have to use above the fluffily even inst| +7310|133859|3860|6|44|83285.40|0.09|0.04|N|O|1996-06-28|1996-08-07|1996-07-01|TAKE BACK RETURN|AIR|en, special requests. carefully even| +7310|152466|12|7|5|7592.30|0.03|0.02|N|O|1996-06-28|1996-07-02|1996-07-15|NONE|SHIP|ironic requests along the caref| +7311|88212|8213|1|49|58810.29|0.04|0.07|N|O|1998-02-20|1998-03-21|1998-03-21|NONE|SHIP|kages. blithely regular deposits wake sly| +7311|165388|5389|2|35|50868.30|0.08|0.08|N|O|1998-03-16|1998-03-11|1998-04-14|COLLECT COD|MAIL|ole slyly abo| +7311|64562|7069|3|29|44270.24|0.07|0.02|N|O|1998-01-18|1998-04-06|1998-01-22|TAKE BACK RETURN|SHIP|nal theodolites. quickly | +7311|77902|2917|4|19|35718.10|0.02|0.06|N|O|1998-01-25|1998-03-04|1998-02-08|TAKE BACK RETURN|FOB|ests affix according to the| +7336|179996|2514|1|13|26987.87|0.06|0.01|A|F|1993-04-01|1993-04-16|1993-05-01|NONE|FOB|lly final pinto beans. unusua| +7336|189929|4966|2|44|88832.48|0.09|0.05|R|F|1993-02-19|1993-03-21|1993-03-07|TAKE BACK RETURN|RAIL|equests; slyly specia| +7336|127983|5520|3|8|16087.84|0.01|0.04|A|F|1993-03-16|1993-03-23|1993-04-06|NONE|TRUCK| carefully regular deposits hagg| +7336|9094|6595|4|26|26080.34|0.09|0.02|A|F|1993-02-11|1993-03-07|1993-03-13|DELIVER IN PERSON|AIR|fully blithely final ideas. blithely | +7337|117320|2343|1|34|45468.88|0.10|0.02|R|F|1995-03-29|1995-03-28|1995-04-26|TAKE BACK RETURN|FOB|re after the furiously final ideas. ev| +7337|187686|2723|2|22|39020.96|0.03|0.04|A|F|1995-04-14|1995-04-28|1995-05-03|TAKE BACK RETURN|TRUCK|s. slyly express packages boos| +7337|22662|5165|3|36|57047.76|0.01|0.04|A|F|1995-03-01|1995-04-24|1995-03-29|COLLECT COD|MAIL|atelets use slyly regul| +7338|26906|9409|1|29|53154.10|0.09|0.08|N|O|1997-07-01|1997-06-27|1997-07-30|TAKE BACK RETURN|MAIL|nic requests. request| +7339|79525|2033|1|15|22567.80|0.01|0.05|A|F|1994-01-04|1993-11-19|1994-01-24|DELIVER IN PERSON|SHIP|hely bold packag| +7339|165346|2895|2|9|12702.06|0.10|0.07|A|F|1993-11-04|1993-11-09|1993-11-10|NONE|MAIL|theodolites. packages use f| +7339|158983|4014|3|36|73511.28|0.01|0.01|A|F|1994-01-01|1993-12-06|1994-01-09|COLLECT COD|TRUCK|ments. accounts| +7340|133512|1052|1|28|43274.28|0.09|0.05|N|O|1998-11-22|1998-09-27|1998-12-18|DELIVER IN PERSON|TRUCK|gular depos| +7340|129599|9600|2|2|3257.18|0.06|0.08|N|O|1998-10-04|1998-09-08|1998-10-06|COLLECT COD|SHIP|es. carefully ironic ideas run furiously d| +7340|158299|8300|3|13|17644.77|0.01|0.06|N|O|1998-09-21|1998-09-11|1998-10-11|COLLECT COD|REG AIR|ts detect quickly against the fluf| +7340|120922|5947|4|19|36915.48|0.01|0.04|N|O|1998-10-24|1998-10-23|1998-11-11|NONE|MAIL|ously unusual epitaphs-- expr| +7340|122780|317|5|21|37858.38|0.07|0.02|N|O|1998-09-05|1998-10-12|1998-09-16|DELIVER IN PERSON|FOB|ong the daringly bold wa| +7341|67507|2520|1|12|17694.00|0.03|0.01|R|F|1993-05-19|1993-07-06|1993-06-18|DELIVER IN PERSON|TRUCK|carefully final depos| +7342|131825|6852|1|27|50134.14|0.09|0.08|A|F|1994-08-04|1994-06-06|1994-08-09|TAKE BACK RETURN|SHIP|ly. regular,| +7342|173541|8576|2|44|71039.76|0.06|0.07|R|F|1994-04-27|1994-06-18|1994-05-05|DELIVER IN PERSON|REG AIR|, express packages sleep slyly carefull| +7342|89337|9338|3|34|45095.22|0.03|0.08|R|F|1994-06-22|1994-06-06|1994-06-29|NONE|RAIL|lar package| +7342|84806|4807|4|47|84167.60|0.08|0.08|A|F|1994-06-19|1994-07-17|1994-07-01|NONE|TRUCK|to beans wake quickly along the p| +7342|124392|4393|5|16|22662.24|0.02|0.04|R|F|1994-05-20|1994-06-19|1994-06-10|NONE|REG AIR|ke carefully against the sly| +7342|50144|2650|6|39|42671.46|0.07|0.01|R|F|1994-06-10|1994-07-24|1994-06-11|TAKE BACK RETURN|MAIL|g the silent platelets. u| +7343|76763|9271|1|1|1739.76|0.04|0.00|R|F|1992-10-15|1992-09-22|1992-11-04|DELIVER IN PERSON|RAIL|riously atop the| +7343|155219|250|2|17|21661.57|0.06|0.02|A|F|1992-09-25|1992-09-09|1992-10-25|COLLECT COD|MAIL|hely pending foxes cajole about the rut| +7368|17743|5247|1|30|49822.20|0.03|0.05|N|O|1996-05-28|1996-07-01|1996-06-06|COLLECT COD|AIR|its use furiously slyly regular sentim| +7368|3376|877|2|29|37101.73|0.09|0.05|N|O|1996-05-24|1996-07-21|1996-06-16|TAKE BACK RETURN|SHIP|ily carefully special packages| +7368|129876|9877|3|14|26682.18|0.07|0.04|N|O|1996-06-01|1996-06-26|1996-06-10|NONE|MAIL|, final theodolites haggle about| +7369|123814|8839|1|30|55134.30|0.10|0.01|R|F|1995-03-10|1995-03-21|1995-03-16|TAKE BACK RETURN|MAIL|e furiously. carefully unu| +7370|45355|364|1|21|27307.35|0.09|0.03|N|O|1996-02-07|1995-12-09|1996-02-22|NONE|SHIP|regular foxes wake. slyly special depo| +7370|79197|6719|2|15|17642.85|0.06|0.00|N|O|1996-01-11|1995-12-17|1996-01-23|DELIVER IN PERSON|MAIL|ar foxes shall have t| +7370|55472|483|3|4|5709.88|0.06|0.05|N|O|1995-10-22|1996-01-08|1995-11-04|COLLECT COD|AIR|le furiously after the silent, ironi| +7370|114601|2135|4|29|46852.40|0.00|0.07|N|O|1996-01-28|1996-01-09|1996-02-02|DELIVER IN PERSON|AIR|counts haggle furio| +7370|94850|4851|5|36|66414.60|0.09|0.08|N|O|1995-10-29|1995-12-09|1995-11-27|COLLECT COD|REG AIR|deposits snooze. slyly final p| +7370|133850|1390|6|9|16954.65|0.01|0.08|N|O|1996-01-30|1995-12-11|1996-02-20|DELIVER IN PERSON|REG AIR|lites. express i| +7370|15774|8276|7|42|70970.34|0.09|0.03|N|O|1995-12-01|1996-01-02|1995-12-19|DELIVER IN PERSON|TRUCK|he furiously express i| +7371|101819|6840|1|2|3641.62|0.05|0.08|N|O|1995-12-22|1996-01-31|1995-12-31|TAKE BACK RETURN|SHIP|excuses. foxes are against t| +7371|65072|2591|2|29|30075.03|0.02|0.04|N|O|1996-03-07|1996-01-22|1996-04-02|NONE|MAIL|fily ironic instruc| +7372|60691|3198|1|38|62764.22|0.05|0.05|R|F|1994-06-06|1994-05-15|1994-06-30|DELIVER IN PERSON|AIR|to the bli| +7372|17686|2689|2|26|41695.68|0.10|0.04|R|F|1994-04-29|1994-04-15|1994-05-10|NONE|SHIP| foxes detect | +7373|185623|8142|1|10|17086.20|0.05|0.04|R|F|1994-03-03|1994-04-08|1994-03-20|COLLECT COD|AIR|cross the slyly r| +7373|161003|8552|2|37|39368.00|0.02|0.03|R|F|1994-06-21|1994-05-29|1994-06-28|COLLECT COD|REG AIR| furiously final, ironic accounts. furiou| +7373|169221|4254|3|18|23223.96|0.10|0.04|R|F|1994-06-07|1994-05-11|1994-06-17|COLLECT COD|REG AIR|gular patterns promise slyly bold| +7373|87093|4618|4|50|54004.50|0.10|0.06|R|F|1994-06-15|1994-04-20|1994-06-26|DELIVER IN PERSON|SHIP|deposits doubt above th| +7373|166407|6408|5|33|48622.20|0.05|0.02|A|F|1994-04-01|1994-05-07|1994-04-13|TAKE BACK RETURN|SHIP|sly even packages. slowly even | +7373|187138|2175|6|48|58806.24|0.08|0.07|A|F|1994-06-27|1994-04-07|1994-07-14|TAKE BACK RETURN|RAIL|beans was quickly carefully pendi| +7373|13721|8724|7|8|13077.76|0.02|0.03|R|F|1994-05-02|1994-05-12|1994-05-26|TAKE BACK RETURN|MAIL|ans cajole doggedly ironic, | +7374|196453|4011|1|33|51131.85|0.00|0.07|R|F|1993-05-02|1993-06-18|1993-05-25|NONE|RAIL| foxes are carefully. slyl| +7375|165078|111|1|40|45722.80|0.10|0.01|R|F|1992-04-15|1992-04-15|1992-05-11|DELIVER IN PERSON|REG AIR|tes wake carefully daring requests. excuse| +7375|65849|8356|2|44|79852.96|0.06|0.08|R|F|1992-04-03|1992-05-08|1992-04-12|DELIVER IN PERSON|FOB|stealthy ideas | +7375|112901|5413|3|22|42105.80|0.06|0.08|R|F|1992-05-17|1992-04-02|1992-06-07|NONE|TRUCK| accounts haggle above the ev| +7375|121144|3657|4|39|45440.46|0.04|0.01|R|F|1992-03-13|1992-04-18|1992-03-21|DELIVER IN PERSON|SHIP|es hinder. accounts nag furiously. exp| +7375|51616|4122|5|44|68974.84|0.06|0.07|R|F|1992-06-06|1992-04-25|1992-07-06|DELIVER IN PERSON|SHIP|y pending requests. brave, final req| +7375|97890|7891|6|33|62300.37|0.03|0.04|R|F|1992-04-14|1992-05-25|1992-05-12|NONE|TRUCK|l dependencies. regular, ev| +7400|121341|6366|1|27|36783.18|0.02|0.02|A|F|1994-09-05|1994-08-26|1994-09-28|TAKE BACK RETURN|REG AIR| quickly final pinto beans boost| +7400|166615|1648|2|1|1681.61|0.00|0.06|R|F|1994-07-18|1994-08-18|1994-07-25|TAKE BACK RETURN|FOB|y bold foxes. furiously ironic pa| +7400|95738|3266|3|32|55479.36|0.01|0.05|R|F|1994-08-29|1994-09-13|1994-09-16|DELIVER IN PERSON|SHIP|eep slyly quickly ironic i| +7401|55835|8341|1|19|34025.77|0.03|0.04|A|F|1995-05-08|1995-05-01|1995-05-10|TAKE BACK RETURN|RAIL|ions sleep slyl| +7401|10814|8318|2|40|68992.40|0.04|0.07|N|F|1995-06-10|1995-03-18|1995-06-21|NONE|MAIL|ng the quickly ironic requ| +7401|139859|7399|3|46|87347.10|0.10|0.08|A|F|1995-03-14|1995-03-23|1995-03-21|COLLECT COD|FOB|l instructions haggle neve| +7401|921|5922|4|7|12753.44|0.08|0.03|A|F|1995-04-02|1995-03-23|1995-04-28|DELIVER IN PERSON|REG AIR|. fluffily silent excuses doze. furiously e| +7401|63793|3794|5|38|66758.02|0.05|0.01|R|F|1995-05-25|1995-04-03|1995-06-16|COLLECT COD|AIR|st slyly. blithely even instructions nag i| +7401|164698|7215|6|22|38779.18|0.08|0.03|A|F|1995-02-28|1995-05-03|1995-03-02|NONE|FOB|thely unusual depos| +7401|69581|4594|7|12|18606.96|0.03|0.04|N|F|1995-06-07|1995-04-02|1995-06-24|COLLECT COD|TRUCK|cally pending pinto beans sleep. re| +7402|40632|3137|1|12|18871.56|0.01|0.07|A|F|1995-04-28|1995-04-09|1995-05-22|COLLECT COD|MAIL|after the requests. requests are carefully.| +7402|101626|6647|2|1|1627.62|0.04|0.01|N|O|1995-06-21|1995-05-19|1995-07-11|NONE|SHIP| furiously carefully ironic deposits! ca| +7402|16189|3693|3|21|23208.78|0.03|0.01|A|F|1995-05-01|1995-05-11|1995-05-12|DELIVER IN PERSON|SHIP|ly dolphins. final dependencies about| +7402|71896|6911|4|2|3735.78|0.08|0.02|N|O|1995-06-23|1995-05-21|1995-07-17|DELIVER IN PERSON|REG AIR|thes wake slyly. carefully express ide| +7403|171125|1126|1|40|47844.80|0.06|0.04|N|O|1997-02-04|1997-02-19|1997-02-07|NONE|REG AIR|kly furiously | +7403|90199|5218|2|44|52324.36|0.04|0.03|N|O|1997-03-27|1997-02-10|1997-04-12|TAKE BACK RETURN|RAIL|ithely special packages. flu| +7403|160646|5679|3|31|52905.84|0.00|0.06|N|O|1997-04-04|1997-02-01|1997-04-30|COLLECT COD|MAIL|t the blithely i| +7404|121272|3785|1|7|9052.89|0.06|0.01|N|O|1996-06-05|1996-05-09|1996-06-29|DELIVER IN PERSON|AIR| the bold ideas. final, even pa| +7404|4187|1688|2|47|51285.46|0.05|0.06|N|O|1996-06-08|1996-06-13|1996-06-19|TAKE BACK RETURN|TRUCK|to beans haggle. slyly unusua| +7404|156371|8887|3|8|11418.96|0.03|0.07|N|O|1996-06-10|1996-06-01|1996-06-18|TAKE BACK RETURN|RAIL|nal instructions wake s| +7404|119024|1536|4|18|18774.36|0.08|0.06|N|O|1996-05-02|1996-04-24|1996-05-06|NONE|FOB|gular foxes wake above the carefull| +7404|20545|546|5|32|46897.28|0.03|0.00|N|O|1996-04-21|1996-05-15|1996-05-21|DELIVER IN PERSON|REG AIR| instructions: quickly ironic deposits thra| +7404|93807|1335|6|21|37816.80|0.03|0.02|N|O|1996-05-06|1996-04-23|1996-05-19|DELIVER IN PERSON|AIR|ajole quickl| +7405|50714|715|1|22|36623.62|0.03|0.08|N|O|1995-07-19|1995-08-24|1995-08-03|DELIVER IN PERSON|REG AIR|deposits. ironic, regular instr| +7405|135239|7753|2|11|14016.53|0.10|0.05|N|O|1995-08-17|1995-08-13|1995-08-28|DELIVER IN PERSON|SHIP|ding pinto bean| +7405|146730|1759|3|12|21320.76|0.10|0.06|N|O|1995-10-03|1995-08-19|1995-10-17|TAKE BACK RETURN|TRUCK|y. quickly pending packages af| +7405|82227|4736|4|18|21765.96|0.10|0.05|N|O|1995-08-12|1995-07-25|1995-09-05|COLLECT COD|SHIP|unts haggle carefully about t| +7405|174029|4030|5|13|14339.26|0.08|0.03|N|O|1995-07-08|1995-08-17|1995-07-14|TAKE BACK RETURN|SHIP|deposits haggle carefully unusual instructi| +7405|105321|342|6|28|37136.96|0.01|0.05|N|O|1995-07-20|1995-07-25|1995-08-05|DELIVER IN PERSON|TRUCK|into beans. final accou| +7405|113426|5938|7|9|12954.78|0.01|0.06|N|O|1995-08-30|1995-08-25|1995-09-06|NONE|FOB|uests should have to b| +7406|141858|6887|1|1|1899.85|0.10|0.03|R|F|1992-11-10|1992-11-01|1992-11-28|NONE|FOB|iously express| +7406|194665|9704|2|18|31673.88|0.05|0.07|R|F|1992-11-04|1992-10-31|1992-12-01|TAKE BACK RETURN|AIR|usly blithely regular reques| +7406|129633|2146|3|31|51541.53|0.01|0.03|A|F|1992-10-05|1992-11-03|1992-10-11|COLLECT COD|SHIP|se along the fin| +7406|133097|5611|4|14|15821.26|0.04|0.03|A|F|1992-08-24|1992-10-12|1992-09-17|NONE|REG AIR|c pinto beans. ironic de| +7407|148300|3329|1|27|36404.10|0.09|0.00|A|F|1993-05-11|1993-04-07|1993-05-15|NONE|AIR|ending asymptotes. bravely even hockey pla| +7407|62195|4702|2|11|12729.09|0.10|0.03|R|F|1993-04-15|1993-03-13|1993-05-14|NONE|SHIP|asymptotes integrate. slyly e| +7407|109017|4038|3|39|40014.39|0.01|0.01|R|F|1993-02-07|1993-03-04|1993-02-18|COLLECT COD|MAIL|cording to the carefully express requests| +7407|46909|6910|4|29|53821.10|0.05|0.00|A|F|1993-03-12|1993-04-20|1993-03-16|TAKE BACK RETURN|TRUCK| final foxes. bold deposits haggle accordi| +7407|189624|2143|5|49|83967.38|0.10|0.01|A|F|1993-02-08|1993-03-05|1993-03-03|NONE|REG AIR|the bold courts. slyly special acco| +7407|2729|7730|6|9|14685.48|0.10|0.06|R|F|1993-04-14|1993-03-05|1993-04-16|NONE|TRUCK|dolites according to the regular | +7407|57772|278|7|12|20757.24|0.10|0.01|A|F|1993-01-29|1993-03-07|1993-02-25|COLLECT COD|REG AIR|ies are. special, fi| +7432|168774|8775|1|18|33169.86|0.10|0.06|N|O|1996-02-08|1996-01-05|1996-02-27|NONE|RAIL|ding to the dependencies.| +7432|184512|2067|2|32|51088.32|0.01|0.01|N|O|1995-11-17|1995-11-20|1995-12-02|COLLECT COD|RAIL|g to the blith| +7433|69425|6944|1|36|50199.12|0.10|0.08|N|O|1996-01-23|1996-02-10|1996-02-10|NONE|RAIL|ward the quickly fluffy ideas. f| +7433|24687|7190|2|4|6446.72|0.05|0.02|N|O|1995-11-30|1996-01-07|1995-12-23|NONE|RAIL| bold ideas cajole? quickly ir| +7433|111630|1631|3|45|73873.35|0.09|0.04|N|O|1996-03-09|1995-12-30|1996-03-30|COLLECT COD|AIR|. furiously final d| +7433|150698|8244|4|20|34973.80|0.07|0.01|N|O|1996-02-06|1996-01-03|1996-02-14|NONE|FOB|blithely blithely final excuses. care| +7433|166061|8578|5|32|36065.92|0.10|0.01|N|O|1996-01-19|1996-01-28|1996-01-28|COLLECT COD|FOB|s. dolphins haggle. expr| +7434|98987|4006|1|11|21845.78|0.08|0.08|A|F|1994-12-19|1994-12-04|1995-01-07|TAKE BACK RETURN|MAIL|ly pending accounts run even, bold requests| +7434|68787|3800|2|20|35115.60|0.09|0.08|R|F|1994-10-24|1994-11-18|1994-11-21|TAKE BACK RETURN|RAIL|lar package| +7434|96859|4387|3|35|64954.75|0.00|0.00|R|F|1994-12-07|1994-10-22|1994-12-14|NONE|SHIP|requests. ironic Tire| +7434|103441|972|4|5|7222.20|0.09|0.08|R|F|1994-12-30|1994-11-09|1995-01-02|DELIVER IN PERSON|AIR|lithely special foxes wake c| +7434|125253|5254|5|37|47295.25|0.07|0.05|A|F|1994-12-22|1994-11-20|1995-01-06|NONE|FOB|final requests sleep slyly.| +7435|100524|3035|1|28|42686.56|0.05|0.00|N|O|1998-01-02|1998-01-30|1998-01-27|DELIVER IN PERSON|TRUCK|ecial packages sleep according| +7435|98066|576|2|5|5320.30|0.06|0.06|N|O|1998-01-14|1998-02-23|1998-01-30|TAKE BACK RETURN|FOB|ronic instructions wake | +7435|185845|3400|3|9|17377.56|0.06|0.03|N|O|1998-01-09|1998-03-21|1998-01-19|COLLECT COD|TRUCK|s. carefully final theodolites lose furious| +7435|85502|8011|4|25|37187.50|0.08|0.08|N|O|1998-02-03|1998-02-19|1998-02-04|NONE|RAIL|xcuses. furiously| +7435|18758|6262|5|19|31858.25|0.05|0.06|N|O|1998-01-22|1998-03-08|1998-01-30|NONE|AIR|sleep fluffily above the slyly ironic depe| +7435|59478|1984|6|12|17249.64|0.04|0.00|N|O|1998-04-01|1998-02-18|1998-04-10|NONE|TRUCK|ual packages around the express, express | +7436|120517|8054|1|44|67650.44|0.00|0.04|N|O|1997-05-09|1997-06-03|1997-05-17|NONE|TRUCK|uses. ironic ex| +7437|69683|7202|1|31|51233.08|0.05|0.05|N|O|1996-03-05|1996-05-10|1996-03-31|COLLECT COD|SHIP|dencies nag deposits. slyly regul| +7437|155229|7745|2|50|64211.00|0.07|0.02|N|O|1996-06-12|1996-04-12|1996-06-22|COLLECT COD|REG AIR|l instructions snooze fu| +7438|155343|2889|1|9|12585.06|0.10|0.07|N|O|1998-08-14|1998-09-16|1998-08-15|COLLECT COD|MAIL|above the ideas. bold requests among the | +7438|45978|987|2|23|44251.31|0.08|0.00|N|O|1998-08-01|1998-08-15|1998-08-07|TAKE BACK RETURN|AIR| quickly close requests. even| +7439|182726|281|1|39|70540.08|0.02|0.01|R|F|1994-03-29|1994-03-20|1994-04-19|COLLECT COD|TRUCK|blithely express p| +7464|182306|4825|1|25|34707.50|0.10|0.03|N|O|1998-01-28|1998-04-12|1998-02-18|TAKE BACK RETURN|TRUCK|tes. quickly even requests eat| +7465|87335|2352|1|31|40992.23|0.06|0.06|A|F|1992-07-02|1992-08-15|1992-07-27|NONE|SHIP| bold instructions after the | +7465|31357|6364|2|32|41227.20|0.04|0.01|A|F|1992-06-01|1992-07-30|1992-06-23|COLLECT COD|REG AIR|asymptotes nod. ruth| +7465|9382|4383|3|27|34867.26|0.00|0.00|A|F|1992-06-04|1992-06-27|1992-06-14|NONE|AIR|y final depende| +7466|136295|1322|1|16|21300.64|0.07|0.02|N|O|1998-09-18|1998-08-07|1998-10-17|DELIVER IN PERSON|REG AIR|ockey players.| +7466|105620|3151|2|2|3251.24|0.05|0.07|N|O|1998-09-14|1998-08-31|1998-09-23|COLLECT COD|SHIP| the furiously final| +7467|184946|4947|1|31|62959.14|0.10|0.03|R|F|1992-05-05|1992-03-11|1992-05-16|TAKE BACK RETURN|TRUCK|n accounts use. express,| +7467|175780|8298|2|19|35259.82|0.05|0.04|A|F|1992-05-13|1992-03-27|1992-06-01|TAKE BACK RETURN|REG AIR|ole across the furiously silent ideas. f| +7467|128827|8828|3|45|83511.90|0.02|0.02|A|F|1992-05-25|1992-04-08|1992-06-06|DELIVER IN PERSON|REG AIR| excuses. ironic p| +7468|170085|5120|1|11|12705.88|0.07|0.08|R|F|1992-10-03|1992-11-02|1992-10-29|NONE|MAIL| express packages. slyly unusual re| +7468|18329|3332|2|40|49892.80|0.05|0.05|A|F|1992-11-30|1992-12-08|1992-12-23|TAKE BACK RETURN|RAIL|slyly along the quickly | +7469|17019|9521|1|14|13104.14|0.08|0.03|N|O|1996-08-24|1996-07-24|1996-08-26|TAKE BACK RETURN|FOB| above the ironic, final pinto beans. fin| +7469|35347|2857|2|45|57705.30|0.03|0.00|N|O|1996-09-15|1996-07-15|1996-09-22|NONE|FOB|fluffily regular excuses. instr| +7470|19662|2164|1|6|9489.96|0.08|0.03|N|O|1995-08-09|1995-08-07|1995-08-22|DELIVER IN PERSON|TRUCK|eas cajole furiously| +7470|45854|8359|2|39|70194.15|0.07|0.07|N|O|1995-06-27|1995-07-01|1995-07-15|DELIVER IN PERSON|REG AIR|arefully qui| +7470|59982|9983|3|25|48549.50|0.06|0.02|A|F|1995-05-12|1995-07-04|1995-05-16|DELIVER IN PERSON|MAIL|nstructions are | +7471|139486|9487|1|14|21356.72|0.05|0.06|N|O|1998-04-22|1998-04-24|1998-05-17|TAKE BACK RETURN|AIR|its. unusual instruction| +7471|130419|420|2|42|60875.22|0.05|0.06|N|O|1998-04-30|1998-04-29|1998-05-19|COLLECT COD|REG AIR| foxes according to the | +7471|151165|1166|3|4|4864.64|0.00|0.01|N|O|1998-06-10|1998-04-05|1998-06-18|TAKE BACK RETURN|MAIL|its doze carefully final excuses. | +7471|20466|5471|4|43|59617.78|0.01|0.08|N|O|1998-02-18|1998-04-11|1998-02-23|TAKE BACK RETURN|REG AIR|d instructions wa| +7471|158314|5860|5|5|6861.55|0.00|0.01|N|O|1998-05-25|1998-03-21|1998-06-07|DELIVER IN PERSON|AIR|o cajole slyly ironic, regular dependen| +7471|171037|8589|6|39|43213.17|0.00|0.00|N|O|1998-04-12|1998-05-01|1998-04-21|COLLECT COD|FOB|the slyly unusual platelets. regular requ| +7496|184997|34|1|43|89525.57|0.06|0.01|N|O|1997-11-08|1997-10-23|1997-11-30|NONE|FOB|usly silent deposits. carefully ir| +7497|123462|5975|1|9|13369.14|0.00|0.04|N|O|1997-04-19|1997-03-12|1997-05-07|COLLECT COD|AIR|fter the carefully even packa| +7497|16020|1023|2|32|29952.64|0.02|0.02|N|O|1997-03-06|1997-04-01|1997-03-29|DELIVER IN PERSON|AIR|ns. permanently regula| +7498|42161|9674|1|47|51848.52|0.08|0.08|N|O|1997-06-08|1997-05-02|1997-06-27|DELIVER IN PERSON|TRUCK|ly accounts. blithely expre| +7498|185689|726|2|18|31944.24|0.00|0.04|N|O|1997-04-20|1997-03-21|1997-05-02|TAKE BACK RETURN|FOB|xes about the bold dinos sleep s| +7498|74130|4131|3|29|32019.77|0.04|0.05|N|O|1997-03-26|1997-04-13|1997-03-29|DELIVER IN PERSON|RAIL|inal instructions. caref| +7498|99445|6973|4|4|5777.76|0.08|0.02|N|O|1997-03-24|1997-05-08|1997-04-14|TAKE BACK RETURN|FOB|oss the ironic | +7499|97082|4610|1|31|33451.48|0.10|0.07|R|F|1993-09-01|1993-08-02|1993-09-30|TAKE BACK RETURN|REG AIR|riously final accounts eat along th| +7499|48719|3728|2|9|15009.39|0.10|0.06|R|F|1993-06-18|1993-06-26|1993-07-09|COLLECT COD|RAIL|ickly bold deposits | +7499|7617|118|3|43|65558.23|0.02|0.02|R|F|1993-08-16|1993-07-27|1993-09-05|TAKE BACK RETURN|REG AIR|es. careful| +7499|17355|9857|4|30|38170.50|0.01|0.01|R|F|1993-07-16|1993-07-31|1993-08-12|DELIVER IN PERSON|SHIP|ons. ironic, silent multip| +7499|72074|7089|5|12|12552.84|0.09|0.00|A|F|1993-06-25|1993-08-11|1993-06-29|DELIVER IN PERSON|RAIL|regular acco| +7500|198756|3795|1|32|59352.00|0.01|0.02|R|F|1995-05-10|1995-06-11|1995-06-02|DELIVER IN PERSON|AIR|ep slyly across the| +7500|80300|2809|2|19|24325.70|0.00|0.04|A|F|1995-04-23|1995-06-17|1995-05-22|COLLECT COD|MAIL|posits play blit| +7501|51112|1113|1|44|46776.84|0.02|0.03|A|F|1992-05-07|1992-03-31|1992-06-03|COLLECT COD|TRUCK|des are slyly above the slyly fina| +7501|33019|529|2|48|45696.48|0.05|0.03|A|F|1992-03-06|1992-05-18|1992-03-14|DELIVER IN PERSON|REG AIR|ake furiously final, express accounts. f| +7501|138594|3621|3|1|1632.59|0.03|0.01|R|F|1992-06-19|1992-04-29|1992-07-09|COLLECT COD|AIR|es might sleep f| +7501|147903|5446|4|10|19509.00|0.10|0.01|R|F|1992-06-19|1992-05-19|1992-07-08|TAKE BACK RETURN|MAIL|furiously ironic packa| +7501|197519|7520|5|26|42029.26|0.08|0.00|R|F|1992-03-02|1992-05-26|1992-03-31|COLLECT COD|TRUCK|er the never regula| +7501|95689|708|6|26|43801.68|0.09|0.04|R|F|1992-03-17|1992-05-11|1992-03-28|TAKE BACK RETURN|MAIL|l packages. special deposits sleep| +7502|164462|2011|1|1|1526.46|0.01|0.02|N|O|1995-07-17|1995-07-28|1995-08-15|COLLECT COD|FOB|atelets boost above the blithely pending t| +7502|111221|8755|2|38|46824.36|0.06|0.04|N|F|1995-06-04|1995-07-29|1995-06-19|DELIVER IN PERSON|REG AIR|y express request| +7502|84140|4141|3|8|8993.12|0.03|0.00|N|O|1995-07-10|1995-08-27|1995-07-31|COLLECT COD|SHIP|grow regular pinto beans. depende| +7502|135487|514|4|30|45674.40|0.03|0.03|N|O|1995-07-05|1995-08-21|1995-07-10|TAKE BACK RETURN|SHIP| the blithely ironi| +7502|129935|2448|5|19|37333.67|0.09|0.01|N|O|1995-09-02|1995-07-27|1995-09-03|COLLECT COD|SHIP|counts. regular | +7502|14142|9145|6|12|12673.68|0.10|0.02|N|O|1995-08-17|1995-08-16|1995-08-21|COLLECT COD|SHIP|s was above the sly| +7502|76590|4112|7|19|29765.21|0.08|0.07|N|O|1995-09-08|1995-07-12|1995-10-05|COLLECT COD|AIR|, pending instructio| +7503|42944|7953|1|1|1886.94|0.08|0.00|N|O|1997-07-07|1997-05-22|1997-08-03|DELIVER IN PERSON|TRUCK|sly at the quickly silent requests.| +7528|46263|8768|1|8|9674.08|0.06|0.05|N|O|1997-03-21|1997-04-09|1997-03-28|NONE|TRUCK|g around the slyly special requests. bli| +7529|94036|9055|1|25|25750.75|0.04|0.07|R|F|1994-02-02|1994-01-30|1994-03-03|NONE|RAIL|l deposits.| +7530|73137|3138|1|32|35524.16|0.02|0.03|A|F|1993-12-28|1994-02-27|1993-12-31|COLLECT COD|TRUCK|arefully even frays detect. silently| +7531|94795|2323|1|42|75171.18|0.01|0.03|N|O|1996-10-02|1996-11-22|1996-10-10|NONE|MAIL|fully unusual packages. furious| +7531|12004|4506|2|43|39388.00|0.01|0.01|N|O|1996-10-07|1996-12-11|1996-10-31|COLLECT COD|MAIL|ect carefully in place of the slyly pendi| +7531|148014|529|3|37|39294.37|0.06|0.08|N|O|1996-10-03|1996-11-25|1996-10-20|NONE|RAIL|onic accounts | +7531|66613|6614|4|18|28432.98|0.00|0.00|N|O|1996-10-28|1996-12-12|1996-11-06|COLLECT COD|SHIP|iously ironic dependencies mold accou| +7531|150254|2770|5|4|5217.00|0.09|0.08|N|O|1996-10-03|1996-11-28|1996-10-25|NONE|SHIP|hely silent requests. pending, regular idea| +7531|103671|1202|6|50|83733.50|0.04|0.07|N|O|1996-12-08|1996-12-06|1997-01-01|COLLECT COD|REG AIR|nusual pinto beans wake. quickly sile| +7531|188968|1487|7|41|84335.36|0.05|0.01|N|O|1996-09-18|1996-10-22|1996-10-11|COLLECT COD|MAIL|eat furiously bravely dogged theodolites--| +7532|182860|7897|1|38|73828.68|0.00|0.07|A|F|1994-05-08|1994-06-30|1994-05-27|NONE|AIR|t the fluffily regular foxes run f| +7532|117019|7020|2|36|37296.36|0.00|0.07|A|F|1994-06-17|1994-07-03|1994-06-18|NONE|TRUCK|slyly according to the furiously unu| +7533|165674|5675|1|27|46971.09|0.00|0.04|A|F|1993-04-01|1993-05-28|1993-05-01|COLLECT COD|AIR|sual deposits. blithely reg| +7533|77452|4974|2|7|10006.15|0.10|0.07|R|F|1993-05-08|1993-05-02|1993-05-22|TAKE BACK RETURN|MAIL|express requests. blithely bold| +7533|119330|1842|3|20|26986.60|0.04|0.03|A|F|1993-03-11|1993-05-13|1993-03-15|NONE|REG AIR| wake silently. quickly fi| +7534|62436|4943|1|2|2796.86|0.09|0.08|A|F|1993-01-31|1992-11-14|1993-02-21|TAKE BACK RETURN|FOB|ke bravely. blithely stealthy accounts a| +7534|152312|4828|2|35|47750.85|0.00|0.04|A|F|1992-12-05|1992-12-30|1992-12-06|NONE|SHIP|ffily. packages cajol| +7534|104093|9114|3|14|15359.26|0.09|0.00|A|F|1993-01-31|1992-12-26|1993-02-05|TAKE BACK RETURN|FOB|furiously express, regu| +7534|86961|9470|4|16|31167.36|0.10|0.02|R|F|1992-11-25|1992-12-18|1992-11-28|COLLECT COD|SHIP|s nag carefully after | +7534|143674|8703|5|29|49812.43|0.06|0.03|A|F|1993-01-27|1992-11-12|1993-02-03|DELIVER IN PERSON|SHIP|yly after the blithely special| +7534|118693|3716|6|40|68467.60|0.03|0.02|A|F|1992-11-08|1992-11-20|1992-12-05|TAKE BACK RETURN|RAIL|ackages! fu| +7535|190546|3066|1|12|19638.48|0.02|0.04|N|O|1998-03-07|1998-03-03|1998-03-20|NONE|RAIL|heodolites. slyly unusual| +7535|93518|1046|2|36|54414.36|0.10|0.01|N|O|1998-01-08|1998-01-30|1998-01-14|TAKE BACK RETURN|RAIL|he quickly ironic packages. acc| +7535|148916|8917|3|2|3929.82|0.02|0.00|N|O|1998-02-21|1998-02-11|1998-03-12|NONE|TRUCK|leep fluffily. blithely| +7535|23353|5856|4|35|44672.25|0.02|0.07|N|O|1998-04-04|1998-02-05|1998-04-15|NONE|MAIL|ress deposits sleep| +7535|92909|2910|5|23|43743.70|0.01|0.02|N|O|1998-01-01|1998-03-02|1998-01-15|DELIVER IN PERSON|MAIL|symptotes. bold accounts across the careful| +7560|27460|2465|1|36|49948.56|0.02|0.06|A|F|1994-03-10|1994-04-23|1994-03-20|COLLECT COD|RAIL|lar requests around| +7560|107450|7451|2|18|26234.10|0.08|0.03|R|F|1994-04-19|1994-05-09|1994-05-10|DELIVER IN PERSON|FOB|equests above the slyly even dug| +7560|101199|1200|3|7|8401.33|0.01|0.07|A|F|1994-03-24|1994-04-22|1994-04-12|NONE|RAIL|y boldly ironic instructions. s| +7561|193347|5867|1|13|18724.42|0.00|0.00|N|O|1996-09-24|1996-11-20|1996-09-30|TAKE BACK RETURN|SHIP|egular accounts are carefully quickly i| +7561|174673|9708|2|17|29710.39|0.03|0.06|N|O|1996-11-12|1996-10-26|1996-12-07|DELIVER IN PERSON|TRUCK|deposits cajole quic| +7561|125966|991|3|15|29879.40|0.00|0.04|N|O|1997-01-12|1996-11-23|1997-02-10|TAKE BACK RETURN|REG AIR|ully ironic asymptotes. depo| +7561|107167|9678|4|27|31702.32|0.07|0.02|N|O|1996-09-22|1996-11-26|1996-09-29|NONE|REG AIR|somas. packages snooze | +7561|144182|1725|5|45|55178.10|0.05|0.06|N|O|1996-09-18|1996-10-19|1996-10-14|COLLECT COD|REG AIR|ages. ironic accounts use fluffily. c| +7561|54991|2|6|6|11675.94|0.03|0.04|N|O|1996-12-25|1996-11-07|1996-12-31|TAKE BACK RETURN|TRUCK|beans. slyly even packages cajole| +7561|25426|2933|7|3|4054.26|0.08|0.03|N|O|1996-10-30|1996-11-20|1996-11-24|TAKE BACK RETURN|MAIL|yly. carefully special deposi| +7562|120396|397|1|21|29744.19|0.08|0.04|N|O|1997-10-26|1997-11-14|1997-11-08|TAKE BACK RETURN|MAIL| regular instructions s| +7563|129053|4078|1|28|30297.40|0.00|0.01|N|O|1997-11-05|1997-10-12|1997-11-22|DELIVER IN PERSON|REG AIR|te furiously iron| +7563|181688|1689|2|38|67247.84|0.08|0.01|N|O|1997-09-02|1997-09-08|1997-09-27|DELIVER IN PERSON|REG AIR|e accounts. silent deposits | +7563|28494|8495|3|33|46942.17|0.03|0.01|N|O|1997-12-05|1997-09-12|1997-12-26|NONE|RAIL| fluffy requests? even accounts | +7563|94615|9634|4|2|3219.22|0.08|0.06|N|O|1997-12-02|1997-10-10|1997-12-07|COLLECT COD|REG AIR|s are slyly ironic excuses. slyly unusual| +7563|187637|2674|5|36|62086.68|0.02|0.08|N|O|1997-11-21|1997-11-04|1997-12-05|TAKE BACK RETURN|RAIL|ully bold platelets. slyly even excuses| +7563|5929|930|6|19|34863.48|0.05|0.02|N|O|1997-11-27|1997-09-15|1997-12-01|DELIVER IN PERSON|RAIL| brave deposits sleep quickly pending, expr| +7564|3824|6325|1|35|60473.70|0.05|0.06|N|O|1997-04-12|1997-05-17|1997-04-29|NONE|TRUCK|ular dependencies serve blithely final pl| +7564|61816|4323|2|26|46223.06|0.07|0.04|N|O|1997-04-11|1997-06-05|1997-04-15|NONE|REG AIR|c dependencies boost fluffily car| +7564|133718|6232|3|38|66564.98|0.06|0.04|N|O|1997-03-27|1997-05-16|1997-04-19|TAKE BACK RETURN|SHIP|ly across the ironic, final ins| +7564|190682|8240|4|19|33680.92|0.01|0.08|N|O|1997-04-07|1997-04-24|1997-04-16|TAKE BACK RETURN|RAIL|quests wake blithely. fluffily fi| +7565|123473|5986|1|34|50879.98|0.07|0.07|R|F|1993-04-16|1993-04-05|1993-04-27|DELIVER IN PERSON|REG AIR|inal asymptotes cajole at the furiousl| +7565|7091|2092|2|49|48906.41|0.06|0.00|R|F|1993-03-08|1993-04-26|1993-04-04|TAKE BACK RETURN|MAIL| the ironic theodolites. quick| +7565|177496|5048|3|50|78674.50|0.05|0.04|A|F|1993-03-23|1993-04-19|1993-04-18|TAKE BACK RETURN|FOB|ajole among the pending pinto | +7565|161287|6320|4|2|2696.56|0.09|0.02|A|F|1993-03-21|1993-05-10|1993-04-11|TAKE BACK RETURN|MAIL|s. furiously fi| +7565|137436|4976|5|34|50096.62|0.02|0.04|R|F|1993-03-04|1993-05-17|1993-03-21|NONE|AIR|g ideas sleep| +7566|180012|13|1|12|13104.12|0.05|0.00|R|F|1993-09-27|1993-08-29|1993-09-28|NONE|RAIL|eodolites. busily final foxes ac| +7566|53114|8125|2|12|12805.32|0.06|0.03|A|F|1993-09-10|1993-08-25|1993-10-03|COLLECT COD|REG AIR|ong the carefully unusual foxes. i| +7566|80723|3232|3|45|76667.40|0.07|0.05|R|F|1993-07-20|1993-09-07|1993-08-14|NONE|RAIL| unusual pinto beans cajole furiously sl| +7566|104868|9889|4|14|26220.04|0.02|0.02|R|F|1993-10-24|1993-10-12|1993-11-23|NONE|TRUCK|ounts integrate| +7567|133674|6188|1|38|64891.46|0.02|0.03|N|O|1996-02-17|1996-02-04|1996-02-29|DELIVER IN PERSON|REG AIR|eodolites. | +7567|50384|7900|2|1|1334.38|0.03|0.03|N|O|1996-02-28|1996-02-07|1996-03-04|COLLECT COD|TRUCK| ideas. blithely silent| +7567|2197|2198|3|16|17587.04|0.03|0.03|N|O|1996-02-19|1996-02-07|1996-03-14|DELIVER IN PERSON|TRUCK|xpress requests. ca| +7567|124188|9213|4|4|4848.72|0.08|0.00|N|O|1996-04-06|1996-02-20|1996-04-22|COLLECT COD|AIR|. deposits doubt slyly deposits. | +7567|14052|1556|5|25|24151.25|0.02|0.03|N|O|1996-01-16|1996-03-08|1996-01-19|DELIVER IN PERSON|AIR|uffily. furiously slow deposits according| +7567|163933|3934|6|2|3993.86|0.02|0.01|N|O|1996-01-24|1996-01-30|1996-02-21|TAKE BACK RETURN|REG AIR|olites use furiously slyly final requ| +7567|13865|1369|7|5|8894.30|0.02|0.04|N|O|1996-03-15|1996-02-26|1996-03-19|DELIVER IN PERSON|TRUCK|ironic frets sleep ideas. care| +7592|17839|2842|1|6|10540.98|0.02|0.03|N|O|1996-05-20|1996-06-21|1996-05-26|NONE|TRUCK|gside of the fl| +7592|11945|4447|2|34|63135.96|0.03|0.03|N|O|1996-08-23|1996-06-22|1996-09-19|COLLECT COD|MAIL| ironic requests sleep unusual dependenci| +7593|97874|5402|1|42|78618.54|0.07|0.06|R|F|1994-10-17|1994-09-29|1994-11-02|COLLECT COD|TRUCK|daring atta| +7593|158117|5663|2|30|35253.30|0.09|0.07|A|F|1994-10-17|1994-09-18|1994-11-04|DELIVER IN PERSON|SHIP|s sleep boldly reg| +7593|65529|542|3|26|38857.52|0.00|0.01|A|F|1994-07-25|1994-10-01|1994-08-19|DELIVER IN PERSON|FOB|ainst the furiously ir| +7593|138594|1108|4|17|27754.03|0.02|0.04|R|F|1994-08-25|1994-09-05|1994-08-27|DELIVER IN PERSON|RAIL|ins affix above the furiously | +7594|120376|7913|1|22|30720.14|0.07|0.01|R|F|1992-06-05|1992-04-21|1992-07-01|DELIVER IN PERSON|FOB|lms. slyly ev| +7595|29121|4126|1|10|10501.20|0.05|0.00|A|F|1992-03-12|1992-05-10|1992-03-27|COLLECT COD|TRUCK|atelets cajol| +7595|34189|4190|2|7|7862.26|0.05|0.01|R|F|1992-06-24|1992-05-26|1992-07-12|TAKE BACK RETURN|TRUCK| excuses boost blithely ev| +7596|132850|2851|1|13|24477.05|0.09|0.03|N|O|1998-09-19|1998-10-06|1998-09-29|TAKE BACK RETURN|RAIL|aggle quickly carefu| +7596|197498|2537|2|24|38291.76|0.08|0.08|N|O|1998-11-17|1998-10-23|1998-12-01|COLLECT COD|TRUCK|ly against the| +7596|139356|9357|3|38|53023.30|0.07|0.04|N|O|1998-10-06|1998-10-20|1998-10-12|COLLECT COD|SHIP|ve the quickly i| +7596|151438|3954|4|2|2978.86|0.07|0.03|N|O|1998-08-03|1998-09-16|1998-08-29|NONE|FOB|st carefully even, iro| +7596|5264|7765|5|3|3507.78|0.07|0.07|N|O|1998-10-30|1998-10-01|1998-10-31|NONE|FOB|xpress requests across the fur| +7596|62445|4952|6|42|59112.48|0.08|0.03|N|O|1998-10-15|1998-09-14|1998-10-26|NONE|SHIP| unusual requ| +7597|167526|43|1|3|4780.56|0.02|0.07|N|O|1996-07-18|1996-08-24|1996-08-16|NONE|MAIL|es. furiously special in| +7597|197968|7969|2|44|90902.24|0.05|0.05|N|O|1996-09-26|1996-08-01|1996-10-05|COLLECT COD|REG AIR|ackages sleep beside t| +7597|39356|4363|3|22|28497.70|0.00|0.02|N|O|1996-06-12|1996-07-17|1996-06-25|TAKE BACK RETURN|MAIL|y even packages can | +7597|47092|2101|4|39|40524.51|0.10|0.00|N|O|1996-08-05|1996-07-23|1996-09-04|NONE|AIR|quests haggle; quickl| +7597|62330|9849|5|2|2584.66|0.10|0.00|N|O|1996-08-12|1996-07-17|1996-08-16|DELIVER IN PERSON|SHIP|ly even instructions wake fluff| +7597|174809|9844|6|32|60281.60|0.02|0.07|N|O|1996-07-08|1996-08-09|1996-07-16|TAKE BACK RETURN|FOB|oze. blithel| +7598|121879|9416|1|9|17107.83|0.01|0.00|R|F|1992-04-15|1992-04-17|1992-04-29|TAKE BACK RETURN|REG AIR|nal dependencies integrate slyly. gr| +7598|9932|4933|2|14|25787.02|0.05|0.00|A|F|1992-02-03|1992-04-03|1992-03-02|DELIVER IN PERSON|MAIL|ns. deposits boost fluffily aft| +7598|115481|5482|3|21|31426.08|0.00|0.02|R|F|1992-05-18|1992-04-11|1992-05-19|NONE|AIR|kages nag slyly regula| +7599|189967|9968|1|44|90506.24|0.05|0.02|A|F|1994-04-14|1994-05-03|1994-04-30|DELIVER IN PERSON|REG AIR|ding foxes after the express multipliers| +7599|174875|7393|2|17|33147.79|0.02|0.08|R|F|1994-06-30|1994-05-28|1994-07-14|TAKE BACK RETURN|SHIP|he carefully ironic deposits. q| +7599|117588|2611|3|50|80279.00|0.08|0.08|R|F|1994-05-03|1994-04-26|1994-05-25|COLLECT COD|REG AIR|accounts. pe| +7599|86269|8778|4|43|53976.18|0.06|0.08|A|F|1994-03-19|1994-05-18|1994-04-10|COLLECT COD|MAIL|ickly silent attainments| +7599|106519|1540|5|2|3051.02|0.09|0.07|R|F|1994-03-18|1994-05-08|1994-03-30|NONE|SHIP| wake quickly ironic instr| +7599|50591|8107|6|14|21582.26|0.05|0.08|A|F|1994-04-02|1994-05-06|1994-04-22|NONE|TRUCK|st the carefully final asymptotes: blit| +7624|79257|4272|1|47|58103.75|0.07|0.07|A|F|1992-10-28|1992-09-19|1992-11-25|NONE|SHIP|y. unusual foxes use | +7624|57381|9887|2|4|5353.52|0.03|0.02|R|F|1992-11-12|1992-10-09|1992-11-25|DELIVER IN PERSON|TRUCK| blithely fin| +7624|187626|145|3|23|39413.26|0.01|0.00|R|F|1992-10-18|1992-09-18|1992-11-16|DELIVER IN PERSON|TRUCK|nding instructions.| +7624|21381|8888|4|45|58607.10|0.09|0.02|R|F|1992-11-07|1992-11-04|1992-11-27|TAKE BACK RETURN|FOB| nag. even accounts | +7625|175706|741|1|37|65922.90|0.01|0.05|N|O|1996-11-24|1996-12-15|1996-12-07|TAKE BACK RETURN|RAIL|s. ironic deposits nag slyly quickly regu| +7625|89277|6802|2|40|50650.80|0.06|0.08|N|O|1996-12-21|1997-01-12|1996-12-26|DELIVER IN PERSON|SHIP|c theodolites shall have to sleep across| +7625|66426|6427|3|11|15316.62|0.10|0.06|N|O|1997-02-05|1997-01-03|1997-02-22|NONE|AIR|ackages wake blithely according to the care| +7625|16938|4442|4|24|44518.32|0.08|0.06|N|O|1997-01-31|1996-12-11|1997-02-23|NONE|TRUCK|egular packages engag| +7626|35559|5560|1|32|47825.60|0.10|0.03|R|F|1994-08-26|1994-07-02|1994-09-05|NONE|TRUCK|uffily ruthless courts. carefully careful| +7626|32232|2233|2|18|20956.14|0.00|0.07|R|F|1994-07-10|1994-06-10|1994-07-25|DELIVER IN PERSON|FOB|tructions; bli| +7626|120156|157|3|23|27051.45|0.06|0.02|R|F|1994-07-26|1994-06-18|1994-07-31|DELIVER IN PERSON|TRUCK| the slyly pending p| +7627|62995|2996|1|49|95941.51|0.07|0.01|N|O|1996-09-12|1996-08-31|1996-09-24|COLLECT COD|RAIL|he carefully ironic dolphins. carefully | +7627|151539|9085|2|31|49306.43|0.03|0.00|N|O|1996-07-15|1996-08-13|1996-08-08|NONE|RAIL| packages against the| +7627|109982|9983|3|22|43823.56|0.10|0.08|N|O|1996-07-18|1996-08-27|1996-08-02|NONE|MAIL|ut the ironic theodolites. even | +7627|55152|7658|4|10|11071.50|0.05|0.02|N|O|1996-07-20|1996-08-08|1996-08-10|TAKE BACK RETURN|FOB|ackages imp| +7627|133960|1500|5|46|91722.16|0.03|0.00|N|O|1996-08-09|1996-07-26|1996-08-14|TAKE BACK RETURN|SHIP|re slowly. slyly even theo| +7628|116236|8748|1|16|20035.68|0.09|0.06|R|F|1995-02-13|1995-03-09|1995-02-28|COLLECT COD|REG AIR|yly ironic requests cajole blithe| +7628|173671|8706|2|4|6978.68|0.06|0.01|A|F|1995-02-27|1995-02-15|1995-03-08|DELIVER IN PERSON|FOB| blithely bo| +7628|74137|9152|3|22|24444.86|0.01|0.02|R|F|1995-02-25|1995-03-02|1995-03-10|TAKE BACK RETURN|RAIL|y pending theodolites need to are | +7629|60468|2975|1|2|2856.92|0.09|0.05|N|O|1998-08-25|1998-08-08|1998-09-05|DELIVER IN PERSON|TRUCK|thely express dolphin| +7629|73828|6336|2|5|9009.10|0.09|0.08|N|O|1998-09-10|1998-08-03|1998-10-06|COLLECT COD|TRUCK|ffix slow foxes. carefully spe| +7630|106606|4137|1|29|46765.40|0.01|0.00|N|O|1998-02-19|1998-02-24|1998-02-20|NONE|FOB| theodolites. express depen| +7630|112264|9798|2|41|52326.66|0.08|0.06|N|O|1998-04-24|1998-03-07|1998-05-21|TAKE BACK RETURN|MAIL| busy accou| +7630|15761|5762|3|28|46949.28|0.05|0.07|N|O|1998-04-03|1998-03-12|1998-05-03|COLLECT COD|FOB|s. fluffily final depen| +7630|93804|8823|4|43|77305.40|0.03|0.03|N|O|1998-01-15|1998-04-04|1998-02-10|NONE|MAIL|furiously after the so| +7631|122629|166|1|24|39638.88|0.00|0.08|N|O|1998-02-26|1998-01-22|1998-03-25|NONE|RAIL| blithely even orbits sleep stealt| +7631|18776|8777|2|48|81348.96|0.03|0.08|N|O|1998-01-03|1998-01-03|1998-01-11|COLLECT COD|REG AIR|tect. acco| +7656|53901|6407|1|14|25968.60|0.05|0.06|R|F|1992-04-12|1992-03-01|1992-05-02|NONE|RAIL|the fluffi| +7657|38508|3515|1|35|50627.50|0.09|0.07|R|F|1993-11-03|1993-12-04|1993-11-30|COLLECT COD|FOB|uches along the packages detect fl| +7657|675|3176|2|7|11029.69|0.07|0.08|R|F|1993-10-31|1993-12-02|1993-11-08|COLLECT COD|MAIL|instructions sleep blithely slyly| +7657|137503|17|3|18|27729.00|0.06|0.07|R|F|1994-01-27|1993-12-11|1994-02-24|DELIVER IN PERSON|TRUCK|y final theodolites hang. final requests| +7657|1885|6886|4|28|50032.64|0.06|0.01|A|F|1994-01-14|1994-01-20|1994-01-28|COLLECT COD|SHIP|ehind the r| +7657|80044|5061|5|13|13312.52|0.06|0.07|R|F|1993-11-16|1993-11-23|1993-12-16|DELIVER IN PERSON|RAIL|lar pinto beans play blithely ironic de| +7657|98499|8500|6|29|43427.21|0.08|0.05|A|F|1993-11-28|1993-11-29|1993-12-28|DELIVER IN PERSON|FOB|s. slyly even deposits sleep carefully. r| +7657|57259|7260|7|15|18243.75|0.09|0.06|R|F|1994-02-04|1993-12-04|1994-02-11|DELIVER IN PERSON|AIR|y silent foxes. instructions impress fu| +7658|139548|4575|1|4|6350.16|0.06|0.07|N|O|1997-06-30|1997-07-16|1997-07-18|DELIVER IN PERSON|REG AIR| requests. pending, speci| +7658|176525|1560|2|43|68865.36|0.10|0.07|N|O|1997-07-01|1997-06-29|1997-07-04|TAKE BACK RETURN|REG AIR|ully. carefully| +7658|44387|9396|3|30|39941.40|0.06|0.04|N|O|1997-05-20|1997-07-10|1997-05-29|NONE|FOB|ctions run final theodolites. depos| +7658|1373|3874|4|29|36956.73|0.04|0.04|N|O|1997-08-08|1997-07-21|1997-09-03|DELIVER IN PERSON|MAIL|s use blithely instructions. | +7658|61277|8796|5|15|18574.05|0.04|0.08|N|O|1997-09-08|1997-07-07|1997-10-04|COLLECT COD|RAIL| furiously regularly unusual requests. s| +7658|77612|7613|6|28|44509.08|0.00|0.03|N|O|1997-05-18|1997-07-25|1997-05-24|COLLECT COD|TRUCK| permanently ironic platelets.| +7658|11886|6889|7|25|44947.00|0.01|0.01|N|O|1997-07-02|1997-07-12|1997-07-19|COLLECT COD|REG AIR|pendencies. blithely ex| +7659|165988|1021|1|50|102699.00|0.02|0.08|A|F|1992-12-29|1993-02-03|1993-01-28|NONE|MAIL|ests. carefully regular exc| +7660|176958|1993|1|10|20349.50|0.02|0.06|R|F|1992-06-27|1992-05-22|1992-07-20|DELIVER IN PERSON|MAIL|nal ideas agains| +7660|122699|236|2|5|8608.45|0.04|0.03|R|F|1992-04-30|1992-06-04|1992-05-10|COLLECT COD|MAIL| special acco| +7660|192825|2826|3|12|23013.84|0.08|0.05|R|F|1992-07-10|1992-05-24|1992-07-30|COLLECT COD|AIR|ges. instructions alongside of the slyly i| +7660|9575|9576|4|2|2969.14|0.00|0.03|R|F|1992-05-12|1992-06-19|1992-05-22|DELIVER IN PERSON|REG AIR|- slyly even accounts boost q| +7661|170948|5983|1|43|86814.42|0.00|0.06|A|F|1993-02-13|1993-01-04|1993-02-18|DELIVER IN PERSON|REG AIR|rate carefull| +7661|110869|8403|2|45|84593.70|0.02|0.02|A|F|1993-02-06|1993-01-28|1993-02-26|NONE|MAIL|ffily. slyly regular forges ki| +7661|165916|5917|3|15|29728.65|0.05|0.00|R|F|1993-01-06|1993-02-09|1993-01-13|NONE|REG AIR| instructions solve. ironic dolphins w| +7662|52043|9559|1|33|32836.32|0.00|0.07|N|O|1996-07-10|1996-07-23|1996-07-15|DELIVER IN PERSON|SHIP|ackages. blithely pending ideas | +7663|194993|7513|1|19|39671.81|0.07|0.00|R|F|1993-11-12|1993-09-09|1993-11-15|NONE|TRUCK|p. express packages solve about the bli| +7663|45548|3061|2|12|17922.48|0.02|0.01|R|F|1993-08-20|1993-09-29|1993-09-12|DELIVER IN PERSON|SHIP|osits. slyly regular deposits are ac| +7663|124651|2188|3|47|78755.55|0.02|0.01|R|F|1993-09-09|1993-10-11|1993-09-22|NONE|SHIP|low packages nag carefull| +7663|8535|8536|4|29|41862.37|0.05|0.06|A|F|1993-08-16|1993-09-02|1993-09-11|NONE|TRUCK|usual tithes boost slyly | +7663|40820|821|5|2|3521.64|0.02|0.06|A|F|1993-10-05|1993-10-09|1993-10-27|TAKE BACK RETURN|MAIL|le between the| +7663|48856|8857|6|40|72194.00|0.10|0.03|R|F|1993-09-03|1993-09-18|1993-09-14|TAKE BACK RETURN|REG AIR|. ironic accounts b| +7663|117395|2418|7|11|15536.29|0.02|0.03|R|F|1993-08-04|1993-10-09|1993-08-19|NONE|RAIL|ess theodolites. furiously unusual accoun| +7688|49079|6592|1|25|25701.75|0.03|0.04|N|O|1996-06-03|1996-03-26|1996-06-06|NONE|RAIL|into beans! even, bold gi| +7688|57360|9866|2|15|19760.40|0.08|0.03|N|O|1996-03-17|1996-04-04|1996-03-31|NONE|FOB|ecial excuses| +7688|43593|1106|3|21|32268.39|0.07|0.08|N|O|1996-05-01|1996-05-13|1996-05-06|NONE|SHIP| finally. accounts above the caref| +7689|124002|6515|1|50|51300.00|0.02|0.05|N|O|1996-11-29|1996-12-14|1996-12-26|TAKE BACK RETURN|RAIL|ly notornis.| +7689|92628|156|2|44|71307.28|0.04|0.00|N|O|1997-02-07|1997-01-07|1997-03-09|COLLECT COD|RAIL|al foxes wake quickly| +7689|195429|468|3|34|51830.28|0.07|0.05|N|O|1996-12-03|1996-12-28|1996-12-13|TAKE BACK RETURN|AIR|ng platelets. quickly special packages b| +7689|169671|2188|4|44|76589.48|0.06|0.08|N|O|1997-02-26|1997-01-31|1997-03-25|NONE|REG AIR|lly ironic pinto beans. blith| +7689|59393|1899|5|20|27047.80|0.09|0.02|N|O|1997-01-04|1996-12-12|1997-01-17|DELIVER IN PERSON|REG AIR|oward the carefully| +7690|94682|2210|1|34|57007.12|0.04|0.02|N|O|1998-06-30|1998-09-04|1998-07-02|COLLECT COD|FOB|ideas sleep fl| +7690|104483|6994|2|18|26774.64|0.07|0.04|N|O|1998-09-01|1998-09-20|1998-09-25|TAKE BACK RETURN|TRUCK|beans wake fluffily above th| +7690|42910|5415|3|18|33352.38|0.09|0.04|N|O|1998-08-12|1998-09-17|1998-08-24|DELIVER IN PERSON|AIR|to beans. packages grow expres| +7690|181434|3953|4|47|71225.21|0.02|0.01|N|O|1998-09-03|1998-09-07|1998-09-13|COLLECT COD|FOB|slyly even foxes cajole i| +7690|153600|6116|5|8|13228.80|0.01|0.06|N|O|1998-09-01|1998-09-20|1998-09-19|COLLECT COD|REG AIR|ns. slyly furious| +7691|198550|8551|1|24|39565.20|0.00|0.03|N|O|1997-02-21|1997-02-26|1997-03-16|NONE|AIR| ironic requests. requests wake alo| +7691|19577|4580|2|8|11972.56|0.04|0.03|N|O|1997-03-11|1997-02-06|1997-03-30|TAKE BACK RETURN|REG AIR|into beans cajole fluffily ironic| +7692|105175|5176|1|4|4720.68|0.02|0.02|N|O|1998-05-03|1998-03-13|1998-05-18|DELIVER IN PERSON|TRUCK|ffily expr| +7692|73142|664|2|27|30108.78|0.10|0.02|N|O|1998-03-01|1998-03-04|1998-03-14|TAKE BACK RETURN|SHIP| ruthless dolphins wake b| +7693|5881|8382|1|38|67901.44|0.03|0.03|N|O|1995-10-30|1995-10-22|1995-11-11|NONE|MAIL|he ironic deposi| +7693|39129|1633|2|43|45929.16|0.07|0.06|N|O|1995-11-20|1995-11-06|1995-12-11|TAKE BACK RETURN|FOB|ironic notornis. carefully| +7693|26930|1935|3|41|76134.13|0.04|0.01|N|O|1995-09-22|1995-11-14|1995-09-27|TAKE BACK RETURN|REG AIR|osits. quickly ironic | +7693|101|7602|4|49|49053.90|0.03|0.02|N|O|1995-11-03|1995-10-22|1995-12-02|DELIVER IN PERSON|TRUCK|ual, ironic foxe| +7694|121865|9402|1|3|5660.58|0.05|0.08|N|O|1998-09-29|1998-08-30|1998-10-01|NONE|SHIP| are ironi| +7694|170273|2791|2|23|30895.21|0.10|0.07|N|O|1998-10-11|1998-08-11|1998-11-01|TAKE BACK RETURN|MAIL|ackages should doze furio| +7694|165332|7849|3|15|20959.95|0.05|0.05|N|O|1998-11-07|1998-09-05|1998-11-26|NONE|RAIL|refully special a| +7694|127338|2363|4|14|19114.62|0.02|0.05|N|O|1998-09-29|1998-08-14|1998-10-19|TAKE BACK RETURN|MAIL|l requests. final deposits nag ironi| +7694|164696|4697|5|15|26410.35|0.00|0.08|N|O|1998-09-20|1998-08-16|1998-10-03|NONE|FOB|theodolites. regular packages ca| +7694|41500|6509|6|46|66309.00|0.05|0.06|N|O|1998-08-27|1998-08-09|1998-09-04|COLLECT COD|REG AIR|e blithely about the quickly fin| +7695|189730|9731|1|6|10918.38|0.00|0.04|N|O|1998-09-02|1998-08-10|1998-09-06|NONE|MAIL|n requests haggle. theodolites hag| +7695|179515|2033|2|36|57402.36|0.08|0.02|N|O|1998-08-18|1998-07-09|1998-09-02|DELIVER IN PERSON|SHIP|xpress dependencies. ironic account| +7695|103048|579|3|18|18918.72|0.01|0.03|N|O|1998-10-01|1998-08-28|1998-10-13|NONE|MAIL|y pending requests cajo| +7695|120409|5434|4|43|61464.20|0.09|0.01|N|O|1998-09-08|1998-07-14|1998-10-07|TAKE BACK RETURN|AIR|y regular courts! carefully | +7720|12088|7091|1|44|44003.52|0.04|0.03|N|O|1995-11-22|1995-10-03|1995-11-23|COLLECT COD|SHIP|lly express| +7720|155192|223|2|25|31179.75|0.03|0.06|N|O|1995-11-23|1995-10-02|1995-12-12|DELIVER IN PERSON|RAIL|iously slyly final platelets| +7720|108306|8307|3|46|60457.80|0.07|0.03|N|O|1995-09-02|1995-11-18|1995-09-28|NONE|SHIP| above the slyly ironic asymptotes. accou| +7720|84942|7451|4|36|69369.84|0.08|0.06|N|O|1995-09-28|1995-11-19|1995-10-28|DELIVER IN PERSON|REG AIR|ainst the daring deposits. ironic,| +7720|13931|3932|5|28|51658.04|0.05|0.05|N|O|1995-11-04|1995-10-02|1995-11-20|COLLECT COD|FOB|t the quickly ironic packages. caref| +7720|125148|5149|6|50|58657.00|0.05|0.05|N|O|1995-08-31|1995-11-05|1995-09-18|TAKE BACK RETURN|AIR|are blithely courts. blithe| +7721|120197|7734|1|42|51121.98|0.04|0.02|R|F|1993-05-15|1993-05-18|1993-05-25|COLLECT COD|MAIL|lets. requests sleep slyly | +7721|135279|306|2|5|6571.35|0.08|0.02|A|F|1993-04-22|1993-06-24|1993-05-08|DELIVER IN PERSON|MAIL|express ideas. express epitaphs alo| +7721|23669|1176|3|4|6370.64|0.02|0.07|R|F|1993-07-27|1993-07-08|1993-08-09|NONE|MAIL|egular pinto beans alongside of the | +7721|190597|3117|4|38|64128.42|0.09|0.08|A|F|1993-05-02|1993-05-19|1993-05-03|NONE|FOB|y blithely pen| +7721|154131|6647|5|4|4740.52|0.02|0.05|A|F|1993-07-03|1993-05-23|1993-07-11|TAKE BACK RETURN|SHIP|ular reque| +7721|65021|5022|6|44|43384.88|0.07|0.02|A|F|1993-07-03|1993-06-14|1993-07-13|NONE|SHIP|fully busy,| +7721|2519|5020|7|10|14215.10|0.01|0.04|A|F|1993-07-27|1993-06-04|1993-08-09|NONE|REG AIR| special requests sleep bli| +7722|129096|1609|1|20|22501.80|0.01|0.03|A|F|1995-02-20|1995-01-16|1995-03-16|COLLECT COD|FOB|iously about the furiously ironic acc| +7722|99927|7455|2|23|44319.16|0.09|0.01|R|F|1994-12-03|1994-12-28|1995-01-01|NONE|TRUCK|thely quickly express theodoli| +7722|61773|9292|3|33|57247.41|0.05|0.00|R|F|1995-01-18|1994-12-29|1995-01-26|NONE|TRUCK|e of the special requests! express,| +7722|4001|1502|4|47|42535.00|0.02|0.04|R|F|1995-01-17|1995-01-24|1995-02-01|DELIVER IN PERSON|FOB|uriously ironic a| +7722|44084|4085|5|22|22617.76|0.08|0.04|R|F|1995-02-03|1994-12-19|1995-02-10|TAKE BACK RETURN|MAIL|e furiously! care| +7722|107734|5265|6|25|43543.25|0.06|0.05|R|F|1995-03-02|1995-01-24|1995-03-29|DELIVER IN PERSON|AIR|s are carefully among the furious| +7723|163525|6042|1|5|7942.60|0.01|0.02|N|O|1997-07-09|1997-07-31|1997-07-11|DELIVER IN PERSON|MAIL|ke. deposits | +7723|163067|616|2|10|11300.60|0.06|0.05|N|O|1997-08-29|1997-09-03|1997-09-06|COLLECT COD|AIR|ffily regular fre| +7723|51756|6767|3|45|76848.75|0.04|0.00|N|O|1997-08-15|1997-07-19|1997-08-18|NONE|SHIP|s. bold requests sleep. always express dep| +7723|53251|3252|4|42|50578.50|0.04|0.03|N|O|1997-07-23|1997-08-10|1997-08-21|NONE|SHIP|s nag finally furiou| +7723|187140|2177|5|12|14725.68|0.05|0.06|N|O|1997-07-06|1997-07-20|1997-07-15|COLLECT COD|MAIL|ly. carefully unusual accoun| +7723|54266|6772|6|26|31726.76|0.09|0.02|N|O|1997-09-18|1997-09-13|1997-09-23|NONE|REG AIR|ly slyly regular instructions. i| +7724|61372|8891|1|15|20000.55|0.00|0.05|A|F|1995-01-02|1994-12-22|1995-01-12|NONE|FOB| courts use. slyl| +7724|66878|1891|2|23|42432.01|0.09|0.07|A|F|1995-01-02|1994-12-20|1995-01-28|NONE|AIR|into beans. | +7724|11758|1759|3|32|53432.00|0.00|0.03|A|F|1994-12-09|1994-12-30|1994-12-22|DELIVER IN PERSON|TRUCK|ithely ironic d| +7725|135866|8380|1|18|34233.48|0.05|0.03|A|F|1993-04-17|1993-02-23|1993-04-24|COLLECT COD|TRUCK|refully fluffy| +7725|83764|8781|2|28|48937.28|0.10|0.07|R|F|1993-01-22|1993-04-08|1993-01-25|COLLECT COD|AIR|r requests sleep slyly. regula| +7725|9601|7102|3|20|30212.00|0.00|0.05|R|F|1993-04-25|1993-03-22|1993-05-08|COLLECT COD|REG AIR|depths sleep slyly. a| +7725|150688|5719|4|2|3477.36|0.09|0.07|A|F|1993-04-24|1993-04-14|1993-05-03|COLLECT COD|RAIL| furiously. carefully regula| +7725|2166|7167|5|7|7477.12|0.00|0.00|R|F|1993-03-26|1993-03-11|1993-04-11|COLLECT COD|RAIL|ntly express reques| +7726|123114|5627|1|8|9096.88|0.01|0.07|N|O|1998-09-17|1998-06-25|1998-10-02|COLLECT COD|AIR| ideas. blithely even accounts | +7726|176962|4514|2|44|89714.24|0.01|0.07|N|O|1998-06-19|1998-08-04|1998-06-22|NONE|REG AIR|refully regular sheaves wake| +7726|184955|9992|3|30|61198.50|0.10|0.02|N|O|1998-07-13|1998-06-29|1998-08-08|TAKE BACK RETURN|SHIP|! blithely final requests sl| +7726|123315|852|4|36|48179.16|0.03|0.02|N|O|1998-07-22|1998-08-04|1998-08-01|NONE|TRUCK|special pac| +7726|147671|186|5|21|36092.07|0.00|0.02|N|O|1998-08-08|1998-07-27|1998-09-06|TAKE BACK RETURN|TRUCK|furiously | +7726|95086|5087|6|25|27027.00|0.08|0.06|N|O|1998-09-04|1998-07-13|1998-10-04|TAKE BACK RETURN|MAIL|carefully regular forges. blithely even the| +7726|108231|3252|7|27|33459.21|0.06|0.05|N|O|1998-08-06|1998-07-23|1998-08-17|NONE|AIR|ts are slyly slyly bold dependencies. fu| +7727|30118|2622|1|18|18865.98|0.02|0.08|N|O|1995-08-17|1995-10-03|1995-08-27|DELIVER IN PERSON|MAIL|ironic accounts | +7727|192052|7091|2|39|44617.95|0.04|0.07|N|O|1995-09-02|1995-08-30|1995-09-15|DELIVER IN PERSON|REG AIR| instructions boost blithely express ideas.| +7727|8146|3147|3|23|24245.22|0.10|0.04|N|O|1995-07-11|1995-08-16|1995-08-07|NONE|FOB|press requests detect b| +7752|109720|9721|1|13|22486.36|0.00|0.03|A|F|1992-09-11|1992-10-08|1992-09-12|NONE|FOB|ts? blithel| +7752|59353|1859|2|25|32808.75|0.07|0.01|R|F|1992-08-23|1992-10-05|1992-09-06|TAKE BACK RETURN|TRUCK|p quickly pending packages. | +7752|135875|3415|3|49|93632.63|0.01|0.08|R|F|1992-08-30|1992-09-02|1992-09-14|DELIVER IN PERSON|AIR|ts are blithely. furiously bold accounts h| +7752|40629|3134|4|11|17265.82|0.09|0.08|A|F|1992-08-19|1992-10-05|1992-08-31|TAKE BACK RETURN|FOB|iously ironic requests. even ex| +7752|47796|2805|5|19|33132.01|0.06|0.05|A|F|1992-09-26|1992-08-31|1992-10-19|NONE|TRUCK| final theo| +7752|99282|6810|6|16|20500.48|0.01|0.07|A|F|1992-11-21|1992-09-21|1992-11-26|DELIVER IN PERSON|FOB| quickly even requests. bold deposits | +7752|18490|5994|7|4|5633.96|0.08|0.04|A|F|1992-10-23|1992-08-29|1992-11-06|TAKE BACK RETURN|FOB|g to the furiously unusual pinto beans. | +7753|150362|2878|1|44|62143.84|0.03|0.02|R|F|1993-12-20|1993-11-10|1994-01-19|DELIVER IN PERSON|RAIL|platelets poach| +7753|128926|1439|2|27|52782.84|0.10|0.01|A|F|1993-09-20|1993-10-14|1993-10-16|COLLECT COD|MAIL|gle slyly. furiously | +7753|47766|7767|3|17|29133.92|0.10|0.04|R|F|1993-09-28|1993-11-04|1993-10-20|COLLECT COD|AIR| the requests. d| +7754|61315|3822|1|29|37012.99|0.00|0.04|A|F|1994-09-20|1994-08-26|1994-10-09|TAKE BACK RETURN|MAIL|packages would lose carefully pending pack| +7754|112856|5368|2|8|14950.80|0.00|0.05|A|F|1994-07-06|1994-08-26|1994-08-04|DELIVER IN PERSON|RAIL|y quickly even acc| +7754|165844|8361|3|17|32467.28|0.10|0.07|R|F|1994-09-05|1994-08-21|1994-09-27|NONE|MAIL|iously express dinos. ir| +7754|134295|9322|4|36|47854.44|0.01|0.03|A|F|1994-08-17|1994-08-12|1994-09-13|DELIVER IN PERSON|REG AIR|egular theodolites cajole slyly after| +7755|72420|9942|1|38|52911.96|0.00|0.01|N|O|1997-11-16|1997-09-30|1997-12-04|COLLECT COD|FOB|carefully regular requests. express the| +7755|160961|962|2|22|44483.12|0.05|0.06|N|O|1997-09-26|1997-11-17|1997-10-11|TAKE BACK RETURN|FOB|ial braids!| +7755|64603|9616|3|23|36054.80|0.07|0.02|N|O|1997-10-29|1997-09-28|1997-11-19|NONE|SHIP| special hockey playe| +7756|38157|3164|1|4|4380.60|0.08|0.05|N|O|1998-04-10|1998-04-08|1998-04-22|DELIVER IN PERSON|AIR|special pi| +7756|89188|4205|2|4|4708.72|0.01|0.00|N|O|1998-03-13|1998-04-26|1998-04-04|COLLECT COD|REG AIR|yly pending depen| +7756|178907|3942|3|7|13901.30|0.07|0.00|N|O|1998-05-11|1998-04-27|1998-05-25|COLLECT COD|TRUCK|ccounts print. de| +7756|87235|4760|4|15|18333.45|0.05|0.02|N|O|1998-02-27|1998-04-07|1998-03-13|COLLECT COD|AIR|gular instructions are blithel| +7757|157810|326|1|37|69108.97|0.10|0.08|R|F|1993-08-30|1993-07-21|1993-09-20|NONE|SHIP| across the quickly expr| +7757|97252|4780|2|19|23735.75|0.10|0.01|R|F|1993-09-13|1993-07-15|1993-09-20|TAKE BACK RETURN|REG AIR|otes cajole. blithely regul| +7758|34486|6990|1|8|11363.84|0.06|0.05|A|F|1995-01-15|1994-11-10|1995-01-29|NONE|FOB| special accounts. blith| +7759|146362|8877|1|19|26758.84|0.05|0.05|N|O|1996-11-14|1996-09-15|1996-12-01|DELIVER IN PERSON|REG AIR|olites acros| +7759|101935|1936|2|26|50360.18|0.02|0.02|N|O|1996-11-23|1996-10-13|1996-12-02|DELIVER IN PERSON|AIR|quests; even | +7759|18562|6066|3|2|2961.12|0.08|0.08|N|O|1996-09-26|1996-09-27|1996-10-16|DELIVER IN PERSON|FOB| furiously express th| +7759|170274|7826|4|33|44360.91|0.06|0.06|N|O|1996-09-20|1996-09-26|1996-10-08|COLLECT COD|TRUCK|foxes. thinly ruthless th| +7759|187039|9558|5|35|39411.05|0.07|0.07|N|O|1996-08-22|1996-10-03|1996-09-01|DELIVER IN PERSON|AIR|evenly regular account| +7784|153506|8537|1|40|62380.00|0.03|0.06|N|O|1997-07-30|1997-06-26|1997-08-23|NONE|FOB|ld theodolites hinder fluffily after | +7784|166258|6259|2|40|52970.00|0.02|0.00|N|O|1997-06-22|1997-07-31|1997-07-02|COLLECT COD|RAIL|fluffily bold ideas a| +7784|94929|9948|3|22|42326.24|0.05|0.08|N|O|1997-07-15|1997-08-07|1997-07-23|COLLECT COD|REG AIR|g the furiously pending ideas wake sly| +7784|62463|7476|4|13|18530.98|0.06|0.08|N|O|1997-08-15|1997-08-09|1997-09-01|DELIVER IN PERSON|RAIL| carefully regular ideas. furiously | +7784|2227|9728|5|29|32747.38|0.02|0.00|N|O|1997-07-29|1997-07-26|1997-08-08|DELIVER IN PERSON|REG AIR|regular pinto beans should have to cajole | +7785|163808|1357|1|14|26205.20|0.07|0.00|N|O|1996-01-29|1996-04-14|1996-02-02|NONE|SHIP| bold, regular foxes. c| +7785|108870|1381|2|30|56366.10|0.08|0.06|N|O|1996-04-22|1996-04-15|1996-05-01|NONE|RAIL|attainments boost f| +7785|177572|2607|3|3|4948.71|0.10|0.04|N|O|1996-03-15|1996-04-16|1996-04-05|TAKE BACK RETURN|MAIL|uffily even foxes affix | +7785|44398|9407|4|6|8054.34|0.02|0.07|N|O|1996-05-14|1996-04-22|1996-05-15|NONE|FOB|brave dependencies around the regular reque| +7786|76837|4359|1|5|9069.15|0.08|0.00|N|O|1996-04-26|1996-05-16|1996-04-28|DELIVER IN PERSON|TRUCK|o the furiously ironic re| +7786|198627|6185|2|27|46591.74|0.03|0.08|N|O|1996-04-05|1996-06-18|1996-04-27|NONE|TRUCK|ests thrash regular de| +7786|113827|3828|3|6|11044.92|0.08|0.02|N|O|1996-05-22|1996-05-13|1996-06-11|NONE|SHIP|ng pinto beans hag| +7786|74378|9393|4|6|8114.22|0.02|0.07|N|O|1996-04-22|1996-05-24|1996-04-30|COLLECT COD|SHIP|the slyly ironic foxes. ironically unus| +7786|56464|1475|5|2|2840.92|0.05|0.07|N|O|1996-05-25|1996-05-07|1996-06-01|COLLECT COD|RAIL| beans. ironic deposits b| +7787|193509|3510|1|16|25640.00|0.05|0.03|R|F|1992-04-28|1992-05-05|1992-05-04|COLLECT COD|SHIP|yly even theo| +7787|92177|4687|2|1|1169.17|0.02|0.04|R|F|1992-04-07|1992-06-10|1992-04-10|COLLECT COD|REG AIR|ly about th| +7787|2917|418|3|25|45497.75|0.01|0.05|R|F|1992-07-25|1992-06-10|1992-08-15|DELIVER IN PERSON|TRUCK| packages cajole | +7787|9561|9562|4|28|41175.68|0.08|0.02|A|F|1992-07-07|1992-05-11|1992-07-18|NONE|FOB| furiously. slyly silent accounts wa| +7787|77589|7590|5|41|64229.78|0.00|0.01|R|F|1992-04-08|1992-05-29|1992-04-09|NONE|RAIL|refully unusual packages. furiously fluff| +7787|26234|6235|6|10|11602.30|0.10|0.07|A|F|1992-06-29|1992-06-09|1992-07-19|DELIVER IN PERSON|FOB|uickly exp| +7787|109939|4960|7|39|76008.27|0.00|0.03|A|F|1992-06-01|1992-06-20|1992-06-07|DELIVER IN PERSON|RAIL|s should sleep f| +7788|140216|2731|1|33|41454.93|0.09|0.01|N|O|1997-07-04|1997-07-18|1997-07-30|TAKE BACK RETURN|RAIL|s. slyly express account| +7788|9628|2129|2|50|76881.00|0.04|0.05|N|O|1997-07-04|1997-08-25|1997-07-28|COLLECT COD|SHIP| dependencies nag a| +7788|11101|1102|3|31|31375.10|0.04|0.05|N|O|1997-08-23|1997-08-24|1997-09-15|TAKE BACK RETURN|RAIL|haggle blithely! caref| +7789|195559|5560|1|36|59563.80|0.01|0.07|N|O|1995-08-27|1995-08-25|1995-09-03|DELIVER IN PERSON|SHIP|boost furiousl| +7790|153819|6335|1|13|24346.53|0.00|0.08|A|F|1992-04-23|1992-06-03|1992-05-12|NONE|SHIP|te blithely across the final, unusual| +7790|30093|7603|2|34|34785.06|0.10|0.02|R|F|1992-04-12|1992-05-18|1992-04-22|COLLECT COD|REG AIR|r deposits am| +7791|81239|6256|1|11|13422.53|0.08|0.03|N|O|1995-10-19|1995-11-21|1995-10-22|DELIVER IN PERSON|FOB|y express instructions use| +7791|167775|2808|2|20|36855.40|0.02|0.04|N|O|1996-01-22|1995-11-24|1996-02-09|DELIVER IN PERSON|AIR|en, even packages. slyly even| +7791|180461|2980|3|31|47785.26|0.00|0.00|N|O|1995-10-30|1995-11-22|1995-11-19|NONE|REG AIR|usual theodolites kind| +7791|1333|8834|4|8|9874.64|0.06|0.07|N|O|1995-10-18|1995-11-29|1995-11-08|DELIVER IN PERSON|MAIL| bold reque| +7816|76305|6306|1|3|3843.90|0.07|0.03|N|F|1995-06-01|1995-06-07|1995-06-25|TAKE BACK RETURN|REG AIR|rate furiously after the accounts. instru| +7816|54048|1564|2|49|49099.96|0.08|0.03|R|F|1995-04-19|1995-06-14|1995-05-13|DELIVER IN PERSON|AIR|s. final deposits ca| +7817|174254|1806|1|30|39847.50|0.02|0.01|A|F|1995-01-03|1994-11-30|1995-01-26|DELIVER IN PERSON|RAIL|ual ideas use blithe| +7817|85383|2908|2|44|60208.72|0.07|0.04|R|F|1994-12-16|1994-11-14|1994-12-18|TAKE BACK RETURN|AIR| requests x-ray sometimes along the bli| +7817|28644|6151|3|33|51897.12|0.09|0.07|A|F|1994-10-25|1994-12-01|1994-11-17|DELIVER IN PERSON|FOB|. quickly final deposits cajole caref| +7817|9788|7289|4|34|57724.52|0.01|0.02|A|F|1995-01-18|1994-11-14|1995-01-30|NONE|REG AIR|elets are after the quickly| +7817|97073|7074|5|31|33172.17|0.07|0.01|A|F|1994-12-07|1995-01-07|1994-12-31|NONE|RAIL|press requests| +7817|97291|4819|6|24|30918.96|0.05|0.03|R|F|1995-01-27|1994-11-26|1995-02-10|COLLECT COD|SHIP|t the quickly regular excuses ca| +7818|63339|3340|1|18|23441.94|0.10|0.07|R|F|1993-05-25|1993-03-26|1993-05-30|DELIVER IN PERSON|SHIP|r courts wake: blithely ironic packa| +7818|125861|8374|2|15|28302.90|0.09|0.06|A|F|1993-04-17|1993-03-28|1993-05-14|COLLECT COD|TRUCK|pendencies cajole blithely about t| +7819|194031|6551|1|13|14625.39|0.05|0.08|R|F|1994-02-18|1994-04-03|1994-02-22|DELIVER IN PERSON|TRUCK|equests. quickl| +7819|69916|4929|2|35|66006.85|0.04|0.06|A|F|1994-03-01|1994-04-09|1994-03-05|NONE|FOB|express dolphin| +7819|71971|9493|3|30|58289.10|0.06|0.03|R|F|1994-05-31|1994-04-11|1994-06-01|TAKE BACK RETURN|FOB|aggle blithely ab| +7819|12480|9984|4|31|43166.88|0.06|0.05|A|F|1994-02-14|1994-04-17|1994-03-14|COLLECT COD|SHIP| bold theodolites. even,| +7819|136089|6090|5|5|5625.40|0.04|0.00|A|F|1994-06-10|1994-03-15|1994-07-03|COLLECT COD|REG AIR|ke idly about the bold ac| +7819|35919|926|6|7|12984.37|0.01|0.08|R|F|1994-03-13|1994-04-24|1994-03-24|COLLECT COD|SHIP|nal excuses wake above the careful| +7820|81160|1161|1|18|20540.88|0.03|0.00|N|O|1995-11-09|1995-10-02|1995-11-17|DELIVER IN PERSON|MAIL|ffily. even requests cajole slyly.| +7820|49933|4942|2|9|16946.37|0.04|0.02|N|O|1995-11-14|1995-11-10|1995-12-11|COLLECT COD|AIR|. furiously unusual deposits use blithe| +7820|16312|6313|3|37|45447.47|0.10|0.05|N|O|1995-11-19|1995-11-15|1995-12-19|NONE|RAIL|kly bold platelets| +7820|150276|2792|4|6|7957.62|0.00|0.02|N|O|1995-11-11|1995-11-11|1995-11-22|NONE|AIR|beans. blithely bold| +7820|78834|3849|5|42|76138.86|0.05|0.08|N|O|1995-08-27|1995-10-20|1995-09-24|TAKE BACK RETURN|SHIP|mong the quickly final dolphins i| +7821|78013|8014|1|40|39640.40|0.06|0.00|N|O|1996-10-26|1996-09-25|1996-11-04|NONE|FOB|y unusual depende| +7821|154471|9502|2|28|42713.16|0.03|0.05|N|O|1996-09-05|1996-09-06|1996-09-10|DELIVER IN PERSON|TRUCK|cies nod: exc| +7821|185382|2937|3|24|35217.12|0.09|0.00|N|O|1996-08-16|1996-08-18|1996-08-21|DELIVER IN PERSON|SHIP|ously bold foxes. dog| +7821|103098|8119|4|17|18718.53|0.01|0.06|N|O|1996-10-03|1996-09-08|1996-10-24|NONE|RAIL|ly special accounts nod sly| +7821|157294|7295|5|18|24323.22|0.06|0.01|N|O|1996-09-30|1996-08-20|1996-10-26|DELIVER IN PERSON|FOB|ake carefully bol| +7821|25741|746|6|34|56669.16|0.02|0.05|N|O|1996-10-27|1996-09-06|1996-11-20|TAKE BACK RETURN|RAIL|es sleep even, final| +7821|17395|2398|7|47|61682.33|0.05|0.08|N|O|1996-08-26|1996-08-21|1996-09-20|DELIVER IN PERSON|AIR|sleep carefully.| +7822|156338|8854|1|35|48801.55|0.07|0.05|N|O|1995-08-04|1995-08-18|1995-08-19|NONE|REG AIR|beans. slyly final platelets| +7822|158659|3690|2|25|42941.25|0.04|0.05|N|O|1995-08-05|1995-08-06|1995-08-17|NONE|SHIP|egular requests. fluffi| +7822|167529|2562|3|35|55878.20|0.01|0.04|N|O|1995-06-25|1995-09-10|1995-07-01|NONE|TRUCK|sts are care| +7822|54980|9991|4|42|81269.16|0.04|0.00|N|O|1995-08-05|1995-09-13|1995-08-14|NONE|AIR| ironic packages. reg| +7822|39527|4534|5|20|29330.40|0.01|0.04|N|O|1995-06-30|1995-09-01|1995-07-12|NONE|FOB|gular theodolites: carefully unusual pinto | +7822|129622|7159|6|35|57806.70|0.07|0.03|N|O|1995-09-07|1995-08-20|1995-10-02|DELIVER IN PERSON|TRUCK| braids al| +7823|171027|8579|1|46|50508.92|0.05|0.01|N|O|1996-08-05|1996-07-13|1996-08-19|TAKE BACK RETURN|REG AIR|e of the slyly unusual pint| +7823|40045|5054|2|39|38416.56|0.08|0.05|N|O|1996-08-26|1996-06-05|1996-09-05|NONE|AIR|d accounts affix slyly express pa| +7823|23090|8095|3|35|35458.15|0.04|0.02|N|O|1996-05-10|1996-06-06|1996-06-03|TAKE BACK RETURN|REG AIR|inly final gifts slee| +7823|67848|355|4|4|7263.36|0.00|0.08|N|O|1996-06-10|1996-06-29|1996-06-24|DELIVER IN PERSON|FOB|al accounts. furiously unusual dep| +7823|118079|5613|5|46|50465.22|0.09|0.00|N|O|1996-06-15|1996-06-02|1996-07-07|NONE|FOB|lyly bold, regular reque| +7823|137384|4924|6|7|9949.66|0.07|0.07|N|O|1996-07-22|1996-06-06|1996-07-23|NONE|SHIP| special deposits could have to ha| +7848|180348|2867|1|32|45706.88|0.01|0.00|A|F|1994-06-15|1994-06-21|1994-07-10|DELIVER IN PERSON|FOB|ideas sleep slyly against th| +7848|101413|3924|2|9|12729.69|0.07|0.08|R|F|1994-05-21|1994-06-27|1994-06-08|COLLECT COD|FOB|e ironic asympto| +7848|33964|1474|3|17|32265.32|0.02|0.02|R|F|1994-05-13|1994-07-21|1994-06-05|NONE|AIR|oss the slyly express packages. bli| +7849|80241|7766|1|1|1221.24|0.00|0.02|R|F|1994-07-29|1994-08-07|1994-08-18|TAKE BACK RETURN|TRUCK|ecial platelets. slyl| +7849|195413|2971|2|45|67878.45|0.02|0.04|R|F|1994-07-06|1994-09-06|1994-07-28|NONE|SHIP|ts. furiously silent| +7849|97586|2605|3|8|12668.64|0.05|0.03|R|F|1994-08-22|1994-07-28|1994-09-16|TAKE BACK RETURN|FOB|luffily final | +7849|121881|6906|4|27|51377.76|0.02|0.01|A|F|1994-07-19|1994-08-04|1994-07-25|DELIVER IN PERSON|FOB|pecial escapades| +7850|144579|9608|1|36|58448.52|0.06|0.04|A|F|1993-12-23|1993-12-03|1993-12-30|COLLECT COD|RAIL|telets boost. theodolites affi| +7850|127418|9931|2|13|18790.33|0.01|0.07|R|F|1993-11-03|1994-01-05|1993-11-09|DELIVER IN PERSON|MAIL| use furiously. regul| +7850|113779|6291|3|47|84260.19|0.04|0.01|A|F|1994-02-04|1994-01-13|1994-02-14|NONE|FOB|e blithely carefu| +7851|143126|8155|1|23|26889.76|0.00|0.05|N|O|1998-02-03|1998-02-17|1998-03-04|TAKE BACK RETURN|TRUCK|uickly carefully regular packages?| +7851|111400|6423|2|29|40930.60|0.09|0.08|N|O|1998-03-29|1998-02-22|1998-04-12|NONE|AIR|iously regular r| +7851|97655|7656|3|48|79327.20|0.05|0.03|N|O|1998-02-21|1998-01-28|1998-03-20|TAKE BACK RETURN|SHIP|s nag furiously across the caref| +7851|87276|4801|4|14|17685.78|0.06|0.00|N|O|1998-01-08|1998-03-01|1998-01-21|DELIVER IN PERSON|SHIP|p slyly final | +7851|39067|1571|5|43|43260.58|0.09|0.06|N|O|1998-03-22|1998-03-07|1998-04-10|DELIVER IN PERSON|AIR|gular theodolites. silent accounts hagg| +7852|89386|1895|1|29|39886.02|0.06|0.03|N|O|1997-06-09|1997-06-28|1997-07-02|DELIVER IN PERSON|MAIL|ld deposits. final, pendin| +7852|107810|2831|2|24|43627.44|0.05|0.01|N|O|1997-04-13|1997-06-28|1997-05-01|TAKE BACK RETURN|MAIL|ccounts. quickly ironic the| +7852|148810|6353|3|26|48329.06|0.04|0.04|N|O|1997-06-29|1997-06-11|1997-07-03|COLLECT COD|SHIP|as are doggedly.| +7852|43495|8504|4|3|4315.47|0.02|0.02|N|O|1997-07-04|1997-06-01|1997-08-01|TAKE BACK RETURN|TRUCK|. fluffily final packages nag. reque| +7852|5897|8398|5|28|50480.92|0.00|0.08|N|O|1997-05-01|1997-06-17|1997-05-05|DELIVER IN PERSON|TRUCK|into beans cajole. even i| +7852|107362|7363|6|48|65729.28|0.02|0.02|N|O|1997-07-02|1997-06-05|1997-07-08|DELIVER IN PERSON|FOB|uriously. furiously special ideas cajole b| +7852|21543|1544|7|6|8787.24|0.05|0.01|N|O|1997-05-26|1997-05-28|1997-06-05|TAKE BACK RETURN|RAIL|ns sleep s| +7853|61308|6321|1|8|10154.40|0.10|0.04|A|F|1995-05-06|1995-04-13|1995-05-24|DELIVER IN PERSON|FOB|cording to the regularly fina| +7853|3422|3423|2|11|14579.62|0.02|0.02|A|F|1995-04-12|1995-02-24|1995-04-22|DELIVER IN PERSON|SHIP|ges are. car| +7853|99260|1770|3|18|22666.68|0.04|0.06|A|F|1995-02-22|1995-03-26|1995-03-06|DELIVER IN PERSON|MAIL| beans play fluffily ruthlessly ironic | +7853|56196|6197|4|13|14978.47|0.00|0.07|R|F|1995-02-08|1995-04-08|1995-02-21|COLLECT COD|AIR| slyly express excuses sleep quickly accord| +7854|56961|1972|1|9|17261.64|0.03|0.06|R|F|1994-04-13|1994-03-03|1994-05-05|COLLECT COD|RAIL|ronic deposits. fluffily iron| +7854|131398|1399|2|2|2858.78|0.09|0.03|R|F|1994-02-11|1994-04-09|1994-03-02|COLLECT COD|AIR|ites haggle permanently after the | +7854|198820|1340|3|18|34538.76|0.05|0.01|R|F|1994-03-24|1994-04-01|1994-04-15|NONE|SHIP|oxes sleep blithely dugouts.| +7854|158356|3387|4|22|31115.70|0.06|0.00|R|F|1994-04-19|1994-02-23|1994-04-28|DELIVER IN PERSON|AIR|mptotes sleep blithely ironically bold ide| +7854|79674|4689|5|18|29766.06|0.07|0.02|A|F|1994-01-25|1994-02-23|1994-02-12|NONE|TRUCK| theodolites cajole slyly across the slyl| +7854|70133|5148|6|5|5515.65|0.07|0.05|A|F|1994-05-10|1994-03-15|1994-06-04|TAKE BACK RETURN|SHIP|sleep furiously according to the regular,| +7854|117774|5308|7|31|55544.87|0.02|0.01|A|F|1994-02-19|1994-03-29|1994-03-21|TAKE BACK RETURN|REG AIR| requests hagg| +7855|23249|756|1|26|30478.24|0.07|0.05|N|O|1998-08-03|1998-09-29|1998-08-14|NONE|SHIP|haggle slyly furio| +7855|145838|867|2|10|18838.30|0.05|0.03|N|O|1998-11-04|1998-09-06|1998-11-18|NONE|FOB| the ironic, regular depo| +7855|87044|7045|3|19|19589.76|0.03|0.08|N|O|1998-09-07|1998-09-20|1998-09-25|DELIVER IN PERSON|RAIL|deas. quickly even requests alongside of t| +7855|139627|2141|4|43|71664.66|0.07|0.07|N|O|1998-08-06|1998-09-03|1998-08-19|COLLECT COD|REG AIR|packages use slyly blithe, ev| +7855|108891|3912|5|48|91194.72|0.00|0.04|N|O|1998-08-12|1998-08-23|1998-08-27|DELIVER IN PERSON|TRUCK|enly unusual frays use above| +7855|116363|8875|6|47|64829.92|0.08|0.04|N|O|1998-09-10|1998-08-16|1998-09-30|TAKE BACK RETURN|REG AIR| beans. permanent| +7855|104786|7297|7|2|3581.56|0.00|0.01|N|O|1998-09-18|1998-10-06|1998-10-03|NONE|TRUCK|ts. furiously | +7880|134926|4927|1|4|7843.68|0.05|0.07|R|F|1994-08-04|1994-09-04|1994-08-15|COLLECT COD|MAIL|oxes boost carefully after the furiously | +7880|91769|9297|2|17|29932.92|0.05|0.07|A|F|1994-10-19|1994-08-30|1994-11-15|NONE|TRUCK|eans cajole fluffily id| +7880|155142|173|3|5|5985.70|0.01|0.05|A|F|1994-09-09|1994-08-11|1994-09-16|TAKE BACK RETURN|AIR|iously even deposits wake finally express| +7880|69679|2186|4|31|51108.77|0.04|0.01|A|F|1994-07-30|1994-08-25|1994-08-13|DELIVER IN PERSON|AIR|f the ironic ideas.| +7880|84791|7300|5|3|5327.37|0.07|0.08|R|F|1994-10-05|1994-08-21|1994-10-07|NONE|FOB| blithely. slyly even foxes haggle sil| +7880|81236|1237|6|45|54775.35|0.03|0.00|R|F|1994-10-23|1994-09-24|1994-11-10|DELIVER IN PERSON|RAIL|unts. carefully final packages s| +7881|16420|3924|1|21|28064.82|0.04|0.01|N|O|1998-04-20|1998-06-25|1998-05-07|NONE|REG AIR| blithely regular| +7881|167545|5094|2|2|3225.08|0.00|0.06|N|O|1998-03-29|1998-05-27|1998-04-26|DELIVER IN PERSON|FOB|ly even packages nag c| +7881|116473|6474|3|20|29789.40|0.10|0.08|N|O|1998-04-30|1998-05-20|1998-05-12|NONE|TRUCK|s. careful| +7882|60586|587|1|1|1546.58|0.10|0.03|A|F|1992-09-25|1992-08-20|1992-10-25|DELIVER IN PERSON|SHIP|ole regular, pending pinto beans. sentime| +7883|149364|4393|1|48|67841.28|0.09|0.03|N|O|1997-12-11|1998-01-04|1997-12-29|COLLECT COD|AIR|counts along the ideas detect ca| +7883|150406|2922|2|40|58256.00|0.07|0.05|N|O|1997-12-18|1997-11-17|1997-12-22|TAKE BACK RETURN|MAIL|o beans according to the slyly even instru| +7883|70960|5975|3|11|21240.56|0.09|0.06|N|O|1997-10-30|1998-01-14|1997-11-16|NONE|RAIL|deposits. regular, even pinto| +7883|8536|6037|4|32|46224.96|0.01|0.01|N|O|1998-02-13|1998-01-11|1998-03-05|DELIVER IN PERSON|REG AIR|s cajole carefully. re| +7884|114885|2419|1|47|89294.36|0.05|0.07|N|O|1996-05-21|1996-05-26|1996-06-18|TAKE BACK RETURN|TRUCK|ly ironic asymptotes. ruthlessly even packa| +7884|55468|5469|2|14|19928.44|0.03|0.07|N|O|1996-05-07|1996-05-29|1996-05-29|DELIVER IN PERSON|FOB| wake furiously| +7884|34392|6896|3|35|46423.65|0.00|0.02|N|O|1996-05-27|1996-06-10|1996-06-09|DELIVER IN PERSON|REG AIR|quickly ironic re| +7885|39955|9956|1|12|22739.40|0.01|0.03|N|O|1996-12-28|1996-12-24|1997-01-08|COLLECT COD|TRUCK|e slyly int| +7885|123364|901|2|50|69368.00|0.08|0.07|N|O|1996-10-19|1996-12-04|1996-10-30|DELIVER IN PERSON|TRUCK|se according to the ruthles| +7885|165503|536|3|33|51760.50|0.10|0.08|N|O|1996-12-23|1996-12-13|1996-12-30|TAKE BACK RETURN|REG AIR|y about the unusual requests. deposi| +7885|199334|4373|4|45|64499.85|0.01|0.01|N|O|1996-12-02|1996-11-06|1996-12-18|NONE|SHIP|tes! ironic theodolite| +7885|197584|2623|5|35|58855.30|0.03|0.00|N|O|1996-10-14|1996-11-23|1996-10-16|NONE|MAIL|ly express accounts sleep f| +7885|192954|5474|6|16|32751.20|0.08|0.07|N|O|1996-10-22|1996-12-08|1996-11-01|DELIVER IN PERSON|FOB|the bold, regular depo| +7885|170060|5095|7|25|28251.50|0.09|0.01|N|O|1996-10-09|1996-12-09|1996-10-28|COLLECT COD|REG AIR|o are across the| +7886|186239|6240|1|29|38431.67|0.01|0.00|N|O|1998-06-23|1998-07-28|1998-07-16|NONE|TRUCK|egular accounts. quickly even deposits nag| +7886|118367|879|2|24|33248.64|0.07|0.07|N|O|1998-10-10|1998-07-27|1998-10-14|DELIVER IN PERSON|RAIL|y bold exc| +7886|183593|6112|3|3|5029.77|0.08|0.03|N|O|1998-09-23|1998-08-12|1998-10-01|NONE|REG AIR|sits wake iron| +7887|121648|9185|1|43|71794.52|0.04|0.02|N|O|1997-07-18|1997-06-21|1997-08-17|COLLECT COD|SHIP|to breach slyly bold p| +7887|122463|2464|2|18|26738.28|0.09|0.07|N|O|1997-05-26|1997-07-06|1997-06-20|DELIVER IN PERSON|FOB|eans sleep furiously. | +7887|28273|3278|3|15|18019.05|0.03|0.07|N|O|1997-07-09|1997-06-22|1997-07-30|COLLECT COD|FOB|ven, special accou| +7887|180385|2904|4|46|67407.48|0.03|0.04|N|O|1997-07-27|1997-06-25|1997-08-03|COLLECT COD|AIR|ng, regula| +7912|61060|3567|1|29|29610.74|0.07|0.05|A|F|1993-06-03|1993-07-23|1993-06-12|NONE|MAIL|hy requests haggle along the f| +7912|30128|2632|2|17|17988.04|0.03|0.08|A|F|1993-07-30|1993-06-30|1993-08-04|COLLECT COD|RAIL|solve carefully. silent| +7912|146800|6801|3|38|70178.40|0.10|0.05|A|F|1993-08-10|1993-06-18|1993-09-09|TAKE BACK RETURN|REG AIR| accounts use quickly above t| +7912|52216|9732|4|11|12850.31|0.00|0.08|A|F|1993-06-17|1993-08-08|1993-07-04|COLLECT COD|REG AIR|y brave requests wak| +7912|178900|6452|5|22|43535.80|0.04|0.05|A|F|1993-07-01|1993-06-26|1993-07-02|DELIVER IN PERSON|REG AIR|furiously express deposits after the ironic| +7913|21034|3537|1|18|17190.54|0.10|0.08|A|F|1992-06-16|1992-06-23|1992-07-15|COLLECT COD|SHIP|eans boost quickly evenly pending instruct| +7913|104099|1630|2|34|37505.06|0.00|0.02|A|F|1992-06-08|1992-06-04|1992-06-21|TAKE BACK RETURN|AIR|ng requests wake quickly around the blith| +7913|179854|7406|3|34|65750.90|0.09|0.04|A|F|1992-08-07|1992-07-15|1992-08-08|COLLECT COD|FOB|ly regular accounts. bold pa| +7913|191989|9547|4|44|91563.12|0.07|0.00|R|F|1992-07-07|1992-08-01|1992-08-02|TAKE BACK RETURN|REG AIR| the even packages boost| +7914|163892|8925|1|21|41073.69|0.01|0.08|N|O|1998-08-10|1998-09-15|1998-09-03|COLLECT COD|REG AIR|ly final accounts x-ray. furious| +7915|1336|1337|1|26|32170.58|0.06|0.02|N|O|1998-02-07|1998-02-05|1998-02-15|DELIVER IN PERSON|FOB|ial packages wake carefully unusual request| +7916|138559|1073|1|45|71889.75|0.10|0.05|R|F|1994-06-11|1994-04-22|1994-06-15|NONE|REG AIR|sts haggle| +7916|150494|5525|2|36|55601.64|0.00|0.03|A|F|1994-05-03|1994-04-26|1994-05-20|COLLECT COD|RAIL|inst the pe| +7916|149844|7387|3|31|58709.04|0.05|0.07|R|F|1994-04-16|1994-06-03|1994-05-15|NONE|SHIP|kages nag blithely acr| +7916|25751|3258|4|17|28504.75|0.03|0.06|R|F|1994-04-09|1994-05-04|1994-04-13|COLLECT COD|MAIL|o beans after the ironic platelets ha| +7916|191834|4354|5|49|94365.67|0.05|0.06|R|F|1994-03-14|1994-05-10|1994-04-10|COLLECT COD|REG AIR|. ideas haggle slyly alongside o| +7917|36860|1867|1|1|1796.86|0.09|0.07|N|O|1998-10-11|1998-07-22|1998-11-05|DELIVER IN PERSON|MAIL|ades. fluffily even patter| +7917|90828|829|2|12|21825.84|0.01|0.06|N|O|1998-07-28|1998-08-11|1998-08-17|TAKE BACK RETURN|REG AIR|ackages. sp| +7917|133248|3249|3|21|26906.04|0.08|0.05|N|O|1998-10-11|1998-07-25|1998-10-24|DELIVER IN PERSON|REG AIR|ven somas about the| +7917|88255|3272|4|44|54703.00|0.09|0.01|N|O|1998-07-30|1998-08-22|1998-08-24|COLLECT COD|SHIP|nal foxes nag pinto bea| +7917|89210|9211|5|10|11992.10|0.09|0.08|N|O|1998-09-02|1998-08-11|1998-09-04|TAKE BACK RETURN|RAIL| instructions serve slyly carefull| +7918|147494|2523|1|22|33912.78|0.03|0.03|R|F|1992-10-15|1992-11-22|1992-10-26|COLLECT COD|AIR|es. even theodolites doz| +7919|15757|5758|1|34|56873.50|0.02|0.02|N|O|1996-04-07|1996-02-23|1996-05-06|TAKE BACK RETURN|TRUCK|. special packages snooze slyly. pending r| +7919|19575|9576|2|45|67255.65|0.04|0.05|N|O|1996-02-19|1996-02-08|1996-03-06|DELIVER IN PERSON|SHIP|refully even requests. qu| +7919|191511|4031|3|48|76920.48|0.05|0.04|N|O|1996-02-26|1996-03-25|1996-03-26|DELIVER IN PERSON|TRUCK| requests cajole blithely along | +7919|118962|6496|4|29|57447.84|0.00|0.04|N|O|1996-02-09|1996-03-11|1996-03-04|DELIVER IN PERSON|MAIL|luffily according to the furiously regula| +7944|172942|494|1|31|62463.14|0.01|0.06|N|O|1996-10-26|1996-10-25|1996-11-04|NONE|SHIP|carefully ironic pint| +7945|41007|1008|1|32|30336.00|0.00|0.06|R|F|1994-02-19|1994-02-09|1994-02-26|NONE|AIR|ely along | +7945|187986|505|2|32|66367.36|0.01|0.08|R|F|1993-12-11|1994-01-06|1993-12-20|TAKE BACK RETURN|REG AIR| above the regular deposits. carefully| +7945|76991|4513|3|46|90527.54|0.09|0.03|A|F|1993-12-28|1994-01-20|1994-01-12|DELIVER IN PERSON|SHIP|longside of the regular | +7945|174753|7271|4|6|10966.50|0.06|0.05|A|F|1994-02-21|1994-01-19|1994-02-25|COLLECT COD|RAIL|tly final requests. blithely bo| +7945|65864|3383|5|22|40256.92|0.08|0.05|A|F|1993-11-28|1994-01-21|1993-12-04|DELIVER IN PERSON|RAIL| the regular, regular foxe| +7945|171110|3628|6|16|18897.76|0.03|0.07|R|F|1993-12-19|1994-02-08|1993-12-27|COLLECT COD|MAIL|uctions. slyly special deposi| +7946|133527|8554|1|28|43694.56|0.03|0.05|A|F|1994-08-12|1994-09-22|1994-09-10|COLLECT COD|FOB| accounts. furiously final packag| +7946|174772|2324|2|9|16620.93|0.00|0.08|R|F|1994-10-01|1994-09-20|1994-10-04|TAKE BACK RETURN|MAIL|sts run quickly furiously quick idea| +7947|15381|384|1|19|24631.22|0.09|0.01|N|O|1995-12-07|1995-12-03|1996-01-03|DELIVER IN PERSON|REG AIR|the carefully ironic deposits need to h| +7947|97073|9583|2|18|19261.26|0.07|0.05|N|O|1995-12-04|1995-11-11|1995-12-06|COLLECT COD|FOB|g the fluffily ironic| +7948|158503|1019|1|49|76513.50|0.07|0.07|N|O|1997-12-07|1997-12-06|1997-12-14|DELIVER IN PERSON|MAIL|sits sleep about the ironi| +7948|144797|2340|2|38|69988.02|0.10|0.04|N|O|1997-12-20|1997-12-06|1998-01-15|TAKE BACK RETURN|SHIP| regular instructions d| +7948|195414|2972|3|38|57357.58|0.09|0.07|N|O|1997-10-26|1997-11-01|1997-11-02|DELIVER IN PERSON|REG AIR|fter the furiously even accounts.| +7948|113101|635|4|4|4456.40|0.10|0.07|N|O|1997-10-10|1997-12-01|1997-10-30|COLLECT COD|TRUCK|to the finally regular pinto beans| +7948|82392|2393|5|46|63221.94|0.07|0.01|N|O|1997-12-17|1997-11-17|1998-01-15|TAKE BACK RETURN|MAIL|eposits. bold, regular requests boo| +7948|158869|3900|6|2|3855.72|0.06|0.06|N|O|1997-11-17|1997-11-14|1997-12-05|NONE|REG AIR|tions affix blithely abo| +7948|107092|7093|7|6|6594.54|0.02|0.02|N|O|1997-09-30|1997-11-04|1997-10-14|COLLECT COD|RAIL|ngage furiously quiet, pending notornis. p| +7949|92891|5401|1|39|73471.71|0.06|0.05|N|O|1995-09-01|1995-07-24|1995-09-26|COLLECT COD|FOB|. carefully silent sheaves are a| +7950|75508|3030|1|43|63790.50|0.03|0.02|A|F|1993-12-26|1993-10-13|1993-12-27|TAKE BACK RETURN|AIR| in place of the fluffily pending req| +7950|48828|1333|2|27|47974.14|0.04|0.00|A|F|1993-10-29|1993-11-27|1993-11-02|TAKE BACK RETURN|AIR|ly alongside of the regular tithes.| +7950|47152|7153|3|43|47263.45|0.09|0.02|R|F|1994-01-03|1993-11-30|1994-01-21|DELIVER IN PERSON|TRUCK|. closely ironic requests cajole| +7950|80001|2510|4|7|6867.00|0.02|0.07|A|F|1993-10-17|1993-11-13|1993-10-26|NONE|SHIP|ng foxes. fur| +7950|164939|2488|5|20|40078.60|0.01|0.04|R|F|1993-12-14|1993-10-24|1993-12-30|DELIVER IN PERSON|TRUCK|ly regular req| +7950|125606|3143|6|44|71790.40|0.07|0.02|R|F|1993-10-10|1993-10-11|1993-10-22|TAKE BACK RETURN|REG AIR|according to the unusual excuse| +7951|66580|6581|1|34|52583.72|0.04|0.05|N|O|1996-01-28|1996-03-20|1996-02-19|DELIVER IN PERSON|SHIP| affix blithely: special, final req| +7951|197438|7439|2|18|27637.74|0.09|0.07|N|O|1996-03-01|1996-03-24|1996-03-25|NONE|TRUCK| foxes are sl| +7951|132005|9545|3|34|35258.00|0.07|0.07|N|O|1996-03-13|1996-02-24|1996-04-12|COLLECT COD|RAIL|final, regu| +7951|7035|4536|4|32|30144.96|0.02|0.01|N|O|1996-03-09|1996-03-04|1996-03-16|TAKE BACK RETURN|AIR|e. unusual instructions above the ca| +7951|30791|5798|5|22|37879.38|0.09|0.01|N|O|1996-03-09|1996-02-25|1996-03-31|DELIVER IN PERSON|REG AIR|ording to the | +7951|103204|5715|6|50|60360.00|0.07|0.07|N|O|1996-03-18|1996-02-26|1996-03-31|DELIVER IN PERSON|SHIP|e the express de| +7951|148606|8607|7|7|11582.20|0.07|0.04|N|O|1996-02-06|1996-03-25|1996-02-29|DELIVER IN PERSON|FOB|fluffy theodolites. blithely regular pinto | +7976|5151|7652|1|14|14786.10|0.10|0.04|R|F|1995-02-08|1995-02-07|1995-02-15|DELIVER IN PERSON|FOB|o beans nag blithely even, regular request| +7976|172508|60|2|16|25288.00|0.06|0.06|R|F|1995-03-17|1995-02-24|1995-03-25|DELIVER IN PERSON|RAIL|after the slyly ironic pinto | +7976|132373|7400|3|18|25296.66|0.03|0.02|A|F|1995-01-20|1995-03-11|1995-02-03|DELIVER IN PERSON|REG AIR|ly ironic foxes. ironi| +7976|176385|8903|4|41|59916.58|0.08|0.00|A|F|1995-03-28|1995-02-03|1995-04-27|COLLECT COD|RAIL|nic courts sleep quickly alon| +7976|96431|6432|5|5|7137.15|0.02|0.06|R|F|1995-04-03|1995-03-22|1995-04-30|COLLECT COD|MAIL|pinto beans.| +7976|102011|2012|6|16|16208.16|0.05|0.04|A|F|1995-03-07|1995-03-14|1995-03-30|DELIVER IN PERSON|FOB|ual accounts haggle slyly. frets| +7977|177864|5416|1|39|75732.54|0.01|0.08|N|O|1996-11-13|1997-01-17|1996-11-28|COLLECT COD|TRUCK|against the furiously regular theod| +7977|150613|5644|2|20|33272.20|0.01|0.04|N|O|1997-02-26|1996-12-03|1997-03-22|TAKE BACK RETURN|SHIP|-ray. platelets sleep | +7977|140126|5155|3|20|23322.40|0.10|0.05|N|O|1996-11-30|1997-01-16|1996-12-17|NONE|RAIL|ngside of t| +7977|90350|7878|4|29|38870.15|0.01|0.00|N|O|1997-01-12|1997-01-13|1997-02-07|COLLECT COD|TRUCK|ironic courts.| +7977|101053|1054|5|19|20026.95|0.07|0.00|N|O|1997-02-23|1996-12-28|1997-03-11|DELIVER IN PERSON|TRUCK|st the special pearls. unusual foxes su| +7977|187821|2858|6|12|22905.84|0.04|0.08|N|O|1997-02-11|1996-12-25|1997-03-13|TAKE BACK RETURN|REG AIR|uses. accounts cajole accounts.| +7978|165155|7672|1|34|41485.10|0.09|0.08|N|O|1997-09-22|1997-08-25|1997-10-13|COLLECT COD|TRUCK|usly express excuse| +7978|153136|5652|2|6|7134.78|0.00|0.08|N|O|1997-10-27|1997-08-23|1997-11-05|COLLECT COD|SHIP|are across th| +7979|57451|2462|1|14|19718.30|0.00|0.01|A|F|1993-09-04|1993-08-21|1993-09-27|NONE|MAIL|requests affix slyly after the i| +7979|178338|3373|2|8|11330.64|0.09|0.07|R|F|1993-10-10|1993-07-19|1993-10-19|COLLECT COD|RAIL|ns haggle. sly| +7979|112007|7030|3|31|31589.00|0.06|0.01|R|F|1993-10-12|1993-07-17|1993-10-14|TAKE BACK RETURN|AIR|shall have to ar| +7980|104232|4233|1|26|32141.98|0.09|0.03|N|O|1995-09-26|1995-10-22|1995-10-21|NONE|MAIL|somas sleep blithely. express pinto bea| +7980|23315|822|2|6|7429.86|0.10|0.02|N|O|1995-09-30|1995-09-18|1995-10-20|DELIVER IN PERSON|FOB|ong the blithely regular deposits:| +7980|51419|6430|3|32|43853.12|0.01|0.01|N|O|1995-12-08|1995-10-14|1996-01-06|TAKE BACK RETURN|FOB|. carefully even requests against the fur| +7980|188533|8534|4|27|43781.31|0.05|0.01|N|O|1995-09-18|1995-09-14|1995-09-29|NONE|AIR|ly. regular packages are packages. regu| +7980|67620|7621|5|17|26989.54|0.02|0.02|N|O|1995-11-21|1995-09-15|1995-11-30|COLLECT COD|AIR|ests? fluffily special deposits after | +7980|77667|7668|6|11|18091.26|0.04|0.07|N|O|1995-12-06|1995-10-06|1995-12-30|DELIVER IN PERSON|FOB|s deposits. eve| +7981|67700|7701|1|30|50031.00|0.09|0.00|A|F|1995-01-14|1995-02-02|1995-02-11|TAKE BACK RETURN|MAIL|. furiously pending asympt| +7981|26773|6774|2|23|39094.71|0.00|0.08|R|F|1995-03-21|1995-02-10|1995-04-09|COLLECT COD|MAIL|yly slyly bold | +7981|165587|3136|3|13|21483.54|0.09|0.00|R|F|1995-01-06|1995-03-09|1995-02-02|NONE|RAIL|posits. fluffily pending platelets cajole b| +7981|10898|8402|4|48|86826.72|0.08|0.00|R|F|1995-04-20|1995-03-27|1995-04-22|TAKE BACK RETURN|RAIL|s the ironic packages integrate carefully| +7981|153054|3055|5|10|11070.50|0.02|0.00|R|F|1994-12-30|1995-03-20|1995-01-13|DELIVER IN PERSON|TRUCK|usual packages ca| +7981|168865|3898|6|49|94759.14|0.07|0.01|A|F|1995-01-08|1995-02-26|1995-01-24|TAKE BACK RETURN|RAIL|e regular packages cajole furio| +7982|85179|7688|1|46|53551.82|0.02|0.08|N|O|1998-08-18|1998-07-03|1998-09-16|DELIVER IN PERSON|TRUCK|arefully fina| +7982|197213|9733|2|31|40616.51|0.01|0.04|N|O|1998-06-11|1998-06-20|1998-07-04|COLLECT COD|FOB|y blithely pending foxes-- | +7982|150573|8119|3|34|55201.38|0.05|0.01|N|O|1998-06-03|1998-07-18|1998-06-24|TAKE BACK RETURN|MAIL|as. carefully iro| +7982|72704|226|4|22|36887.40|0.02|0.05|N|O|1998-06-06|1998-05-29|1998-06-07|DELIVER IN PERSON|SHIP|s across the blithely special acc| +7983|58514|1020|1|9|13252.59|0.07|0.08|N|O|1998-01-10|1998-02-26|1998-02-06|COLLECT COD|TRUCK| excuses sleep. furious, pending reques| +7983|32288|4792|2|48|58573.44|0.01|0.01|N|O|1998-04-17|1998-01-31|1998-04-20|TAKE BACK RETURN|REG AIR|aring packages affix sly packages. account| +7983|54128|6634|3|47|50859.64|0.10|0.07|N|O|1998-03-09|1998-02-10|1998-03-21|TAKE BACK RETURN|FOB|. carefully ironic pains are| +8008|107830|5361|1|49|90053.67|0.03|0.04|A|F|1994-09-10|1994-09-06|1994-09-29|TAKE BACK RETURN|AIR|usual excuses. acco| +8008|96086|8596|2|25|27052.00|0.06|0.01|R|F|1994-10-02|1994-10-12|1994-10-17|DELIVER IN PERSON|RAIL|ies boost quickly ironic| +8008|117153|7154|3|47|54997.05|0.03|0.06|A|F|1994-08-13|1994-10-14|1994-09-12|TAKE BACK RETURN|TRUCK|. asymptotes snooze furiously fluffily fin| +8008|178617|8618|4|48|81389.28|0.02|0.04|R|F|1994-08-18|1994-10-14|1994-09-01|NONE|TRUCK| final instructions wake aroun| +8008|6206|3707|5|27|30029.40|0.05|0.02|A|F|1994-10-06|1994-10-22|1994-10-21|TAKE BACK RETURN|AIR|er the special, iron| +8009|95359|5360|1|38|51465.30|0.05|0.07|R|F|1993-02-19|1993-03-29|1993-03-09|COLLECT COD|RAIL| platelets. fluffily even requ| +8009|91796|9324|2|33|58997.07|0.07|0.00|A|F|1993-03-30|1993-03-20|1993-04-28|NONE|SHIP| pinto beans promise furiously| +8009|3894|3895|3|37|66521.93|0.07|0.02|R|F|1993-02-12|1993-04-13|1993-02-16|NONE|SHIP|quick, regular s| +8009|35991|5992|4|38|73225.62|0.00|0.02|R|F|1993-02-22|1993-04-05|1993-03-23|NONE|TRUCK|unts after the slyly even reque| +8010|185830|5831|1|34|65138.22|0.05|0.02|N|O|1995-08-20|1995-08-31|1995-08-29|NONE|AIR|as sleep abo| +8010|30567|5574|2|2|2995.12|0.04|0.00|N|O|1995-09-22|1995-09-04|1995-10-12|DELIVER IN PERSON|AIR|tealthy instructions after| +8010|133155|5669|3|14|16634.10|0.07|0.03|N|O|1995-08-02|1995-10-07|1995-08-24|TAKE BACK RETURN|MAIL|hely careful| +8010|122834|2835|4|46|85414.18|0.01|0.06|N|O|1995-08-20|1995-09-06|1995-08-22|TAKE BACK RETURN|RAIL| dolphins. furiously silent as| +8011|83988|6497|1|22|43383.56|0.03|0.01|R|F|1994-12-18|1995-01-27|1994-12-29|DELIVER IN PERSON|TRUCK|symptotes! furious| +8011|177900|7901|2|23|45491.70|0.00|0.01|A|F|1995-02-25|1995-02-08|1995-03-26|NONE|SHIP|he platelets cajole after the slyly expre| +8011|164610|7127|3|36|60285.96|0.06|0.01|R|F|1995-02-09|1995-02-03|1995-02-23|DELIVER IN PERSON|AIR|deposits? furiously even| +8011|195297|2855|4|23|32022.67|0.09|0.00|A|F|1995-01-13|1995-02-03|1995-02-02|COLLECT COD|REG AIR|ans wake. carefully r| +8011|141329|3844|5|31|42479.92|0.07|0.03|R|F|1995-01-11|1995-02-08|1995-01-22|NONE|FOB|sits cajole carefully foxes. thinly| +8011|104663|9684|6|3|5002.98|0.07|0.01|A|F|1995-01-24|1995-01-21|1995-01-27|DELIVER IN PERSON|AIR|iously express ideas. excu| +8012|176316|8834|1|37|51515.47|0.00|0.01|R|F|1993-03-05|1993-02-11|1993-04-03|TAKE BACK RETURN|AIR|ecial packages haggle. even t| +8012|128204|717|2|46|56681.20|0.03|0.08|A|F|1993-03-11|1993-02-23|1993-03-15|COLLECT COD|TRUCK|. even sauternes| +8012|119450|9451|3|39|57308.55|0.04|0.06|A|F|1993-03-16|1993-03-17|1993-03-21|COLLECT COD|FOB| nag against the carefully unusual requests| +8012|186874|6875|4|27|52943.49|0.01|0.06|A|F|1993-03-21|1993-02-14|1993-04-18|DELIVER IN PERSON|MAIL|are. regular requests sleep| +8012|189972|2491|5|31|63921.07|0.00|0.06|A|F|1993-01-28|1993-02-14|1993-02-14|NONE|FOB|ly ironic instructions against the| +8012|50619|620|6|40|62784.40|0.03|0.07|A|F|1993-03-11|1993-02-13|1993-03-25|DELIVER IN PERSON|FOB|rses. slow re| +8013|34577|7081|1|15|22673.55|0.10|0.00|A|F|1994-10-03|1994-12-07|1994-10-22|DELIVER IN PERSON|REG AIR| even accounts nag | +8013|122495|2496|2|8|12139.92|0.04|0.01|A|F|1994-10-23|1994-11-14|1994-11-08|TAKE BACK RETURN|RAIL|ly special foxes | +8013|171915|9467|3|7|13908.37|0.09|0.00|A|F|1994-11-02|1994-11-15|1994-11-03|TAKE BACK RETURN|FOB|s. carefully even reque| +8013|163455|8488|4|19|28850.55|0.03|0.01|R|F|1994-12-18|1994-11-12|1995-01-04|TAKE BACK RETURN|FOB|slyly bold accounts. special, bold| +8013|177052|2087|5|16|18064.80|0.01|0.05|A|F|1994-10-20|1994-11-07|1994-11-10|DELIVER IN PERSON|REG AIR|s are. dug| +8014|179228|9229|1|39|50981.58|0.07|0.01|A|F|1993-08-16|1993-06-30|1993-08-24|DELIVER IN PERSON|FOB|s are quickly someti| +8014|80895|3404|2|29|54400.81|0.09|0.04|R|F|1993-06-30|1993-07-06|1993-07-27|DELIVER IN PERSON|AIR|efully bold packages use ironic excuses| +8014|190854|5893|3|3|5834.55|0.02|0.03|A|F|1993-07-27|1993-07-10|1993-08-16|DELIVER IN PERSON|AIR|le fluffily enticingly ironic sheaves. iro| +8014|82595|5104|4|3|4732.77|0.00|0.05|A|F|1993-08-08|1993-06-28|1993-08-12|TAKE BACK RETURN|MAIL| bold dolphins. f| +8014|164592|9625|5|25|41414.75|0.03|0.06|R|F|1993-07-10|1993-06-22|1993-08-09|TAKE BACK RETURN|RAIL|ully ironic depths. pa| +8015|678|679|1|19|29994.73|0.02|0.08|R|F|1994-10-26|1994-12-25|1994-10-30|TAKE BACK RETURN|SHIP|ckly ironic instructions cajole beneath| +8015|179698|2216|2|21|37331.49|0.05|0.07|R|F|1994-11-01|1994-11-15|1994-11-23|DELIVER IN PERSON|MAIL|ing theodolites nag| +8015|174716|4717|3|7|12534.97|0.04|0.04|A|F|1994-12-16|1994-12-20|1995-01-09|TAKE BACK RETURN|TRUCK| express ideas h| +8015|50579|3085|4|46|70360.22|0.08|0.08|R|F|1994-11-29|1994-11-26|1994-12-21|COLLECT COD|REG AIR|carefully bold theodolites boost careful| +8015|64820|4821|5|18|32126.76|0.06|0.06|R|F|1994-12-13|1994-12-12|1994-12-29|DELIVER IN PERSON|MAIL|, pending instr| +8015|18543|1045|6|25|36538.50|0.07|0.08|R|F|1994-11-03|1994-12-18|1994-11-04|COLLECT COD|REG AIR| serve. blit| +8040|12869|2870|1|3|5345.58|0.03|0.05|N|O|1997-08-10|1997-07-24|1997-09-06|COLLECT COD|RAIL|deposits cajole a| +8040|75621|3143|2|25|39915.50|0.03|0.02|N|O|1997-07-25|1997-07-25|1997-08-18|DELIVER IN PERSON|TRUCK|the quickly ironic| +8040|160015|2532|3|5|5375.05|0.10|0.00|N|O|1997-09-20|1997-08-17|1997-10-14|TAKE BACK RETURN|AIR| furiously about the pending ideas. requ| +8040|164556|9589|4|49|79406.95|0.00|0.03|N|O|1997-08-21|1997-06-29|1997-09-02|TAKE BACK RETURN|REG AIR|press accoun| +8040|90712|5731|5|49|83432.79|0.06|0.00|N|O|1997-09-06|1997-07-18|1997-09-15|NONE|SHIP|e doggedly around the slyly| +8040|193315|5835|6|20|28166.20|0.07|0.04|N|O|1997-06-29|1997-07-03|1997-07-05|NONE|SHIP| across the quickl| +8040|32555|5059|7|44|65452.20|0.03|0.01|N|O|1997-06-10|1997-07-15|1997-07-03|COLLECT COD|SHIP|packages sleep always slyly even | +8041|140150|151|1|6|7140.90|0.05|0.08|A|F|1994-09-03|1994-07-29|1994-09-10|NONE|TRUCK|thely bold instructions wake. fin| +8041|86588|1605|2|26|40939.08|0.03|0.08|R|F|1994-06-09|1994-07-07|1994-07-04|TAKE BACK RETURN|MAIL|ly final deposits-- carefully ironic| +8041|75114|7622|3|31|33762.41|0.05|0.03|R|F|1994-09-10|1994-07-28|1994-09-17|NONE|AIR| mold slyly. depende| +8041|27436|4943|4|28|38176.04|0.01|0.02|R|F|1994-08-08|1994-06-28|1994-09-07|DELIVER IN PERSON|FOB|c accounts. slyly b| +8041|116715|6716|5|5|8658.55|0.03|0.00|A|F|1994-06-28|1994-08-10|1994-07-11|COLLECT COD|SHIP|refully. final escapades are?| +8041|24511|4512|6|1|1435.51|0.00|0.02|A|F|1994-07-27|1994-07-30|1994-07-28|NONE|REG AIR|y bold accounts use. fluffil| +8042|156582|9098|1|16|26217.28|0.07|0.04|A|F|1994-07-23|1994-06-24|1994-07-26|COLLECT COD|TRUCK|blate among the even f| +8042|59227|9228|2|47|55752.34|0.04|0.06|A|F|1994-08-21|1994-06-30|1994-09-20|COLLECT COD|TRUCK|he even deposits! pending wa| +8042|18247|749|3|49|57096.76|0.02|0.08|R|F|1994-09-07|1994-08-06|1994-10-01|DELIVER IN PERSON|REG AIR| final accounts along the regul| +8042|72065|7080|4|33|34222.98|0.07|0.06|A|F|1994-05-30|1994-08-01|1994-06-27|NONE|MAIL|kages use quickly above the final asymptot| +8042|182138|7175|5|15|18301.95|0.10|0.02|A|F|1994-08-27|1994-07-04|1994-09-21|COLLECT COD|MAIL|ugouts. carefully unusua| +8042|181186|6223|6|44|55755.92|0.08|0.07|R|F|1994-08-20|1994-07-27|1994-09-19|DELIVER IN PERSON|MAIL| final multipliers: ironic, final instr| +8043|49562|4571|1|1|1511.56|0.03|0.08|N|O|1995-10-02|1995-09-28|1995-10-30|COLLECT COD|MAIL|y slyly ironic packages. quickly slow r| +8043|184849|9886|2|7|13536.88|0.06|0.04|N|O|1995-11-01|1995-10-26|1995-11-05|NONE|REG AIR|ronic accounts detect car| +8044|181825|9380|1|29|55297.78|0.05|0.07|A|F|1992-12-30|1993-01-14|1993-01-27|COLLECT COD|MAIL|fluffily f| +8044|129478|9479|2|8|12059.76|0.03|0.03|R|F|1992-11-02|1992-12-17|1992-11-12|DELIVER IN PERSON|FOB|bold courts are slyly blithel| +8044|130480|2994|3|44|66461.12|0.09|0.06|A|F|1993-02-07|1993-01-09|1993-03-02|DELIVER IN PERSON|MAIL|s maintain against the slyly specia| +8044|174784|2336|4|11|20446.58|0.08|0.07|A|F|1993-01-05|1992-12-05|1993-01-18|COLLECT COD|SHIP|sly bold dependencies. sl| +8044|179315|9316|5|8|11154.48|0.05|0.02|A|F|1992-11-09|1992-12-14|1992-11-14|NONE|MAIL|. slyly pending noto| +8045|167162|7163|1|5|6145.80|0.07|0.00|N|O|1998-04-08|1998-04-03|1998-04-18|COLLECT COD|TRUCK|egular requests sleep furiously | +8045|75936|951|2|24|45886.32|0.02|0.01|N|O|1998-05-12|1998-05-10|1998-05-31|TAKE BACK RETURN|SHIP|o the final grouches sleep iro| +8045|51184|8700|3|33|37460.94|0.07|0.07|N|O|1998-03-13|1998-03-24|1998-04-09|DELIVER IN PERSON|FOB|zle furiously among the bli| +8045|38064|8065|4|43|43088.58|0.04|0.00|N|O|1998-05-29|1998-04-21|1998-06-06|NONE|TRUCK|run blithely? attainments | +8045|127526|5063|5|14|21749.28|0.07|0.00|N|O|1998-06-21|1998-05-02|1998-07-13|NONE|FOB|ests along the carefully pendi| +8045|112814|7837|6|22|40189.82|0.01|0.05|N|O|1998-06-04|1998-05-13|1998-06-06|DELIVER IN PERSON|TRUCK|kages dazzle quickly from the i| +8045|59092|9093|7|31|32583.79|0.06|0.05|N|O|1998-05-13|1998-04-16|1998-05-24|NONE|RAIL|usly even deposits along the| +8046|145875|8390|1|38|72993.06|0.06|0.07|N|O|1996-12-11|1997-03-06|1997-01-08|NONE|REG AIR|packages thrash among the spe| +8046|112045|7068|2|18|19026.72|0.04|0.00|N|O|1997-04-05|1997-03-05|1997-04-11|COLLECT COD|TRUCK| express pearls. blithely final| +8046|136928|9442|3|5|9824.60|0.00|0.08|N|O|1997-02-03|1997-02-11|1997-02-16|NONE|TRUCK|requests nag slyly among the asymptote| +8046|140953|5982|4|9|17945.55|0.02|0.05|N|O|1997-01-10|1997-02-07|1997-01-19|DELIVER IN PERSON|MAIL|lar warthogs. regular excuses nag among| +8046|182058|9613|5|8|9120.40|0.03|0.00|N|O|1997-01-09|1997-01-31|1997-01-15|COLLECT COD|RAIL|fully express packages cajole blit| +8046|43938|6443|6|37|69631.41|0.08|0.08|N|O|1996-12-16|1997-01-08|1997-01-05|COLLECT COD|REG AIR|telets. fluffily | +8047|199549|2069|1|16|26376.64|0.09|0.00|N|O|1998-06-03|1998-06-21|1998-06-11|NONE|FOB|s. final foxes boost furiousl| +8047|5248|5249|2|47|54202.28|0.09|0.02|N|O|1998-09-08|1998-07-17|1998-09-30|TAKE BACK RETURN|RAIL|gular, pending depende| +8047|193775|8814|3|13|24294.01|0.10|0.00|N|O|1998-08-24|1998-07-28|1998-08-30|TAKE BACK RETURN|RAIL|ackages sleep r| +8047|163953|3954|4|49|98830.55|0.02|0.00|N|O|1998-06-12|1998-06-21|1998-06-16|COLLECT COD|RAIL|ickly. stealthily r| +8047|143541|6056|5|17|26937.18|0.02|0.08|N|O|1998-08-27|1998-08-15|1998-09-05|TAKE BACK RETURN|FOB|riously pending dolphins try to mold| +8072|40976|5985|1|46|88180.62|0.00|0.01|R|F|1993-07-17|1993-06-21|1993-08-15|NONE|REG AIR|ake. slyly| +8072|77109|2124|2|29|31496.90|0.07|0.03|R|F|1993-07-12|1993-06-05|1993-07-25|COLLECT COD|MAIL|es haggle slyly blithely | +8072|163717|6234|3|30|53421.30|0.07|0.02|R|F|1993-06-07|1993-06-23|1993-06-09|COLLECT COD|FOB| regular package| +8072|179499|9500|4|24|37883.76|0.08|0.02|R|F|1993-05-20|1993-04-30|1993-05-29|TAKE BACK RETURN|MAIL|ronic theodolites! ironic, even| +8072|36393|8897|5|38|50516.82|0.00|0.08|A|F|1993-07-21|1993-05-25|1993-08-13|DELIVER IN PERSON|REG AIR|nts sleep blithely furiously u| +8072|43814|6319|6|18|31640.58|0.08|0.00|R|F|1993-05-17|1993-05-17|1993-06-12|DELIVER IN PERSON|MAIL|usly. blithely regular pinto| +8073|30341|7851|1|30|38140.20|0.06|0.07|N|O|1997-01-12|1997-01-22|1997-01-28|TAKE BACK RETURN|FOB|quests. furiously ironic| +8074|72465|4973|1|28|40248.88|0.07|0.06|A|F|1993-04-03|1993-02-08|1993-04-24|COLLECT COD|SHIP|ly pending idea| +8074|113999|9022|2|38|76493.62|0.00|0.05|R|F|1993-01-14|1993-02-25|1993-01-19|NONE|RAIL|. requests| +8075|177040|4592|1|27|30160.08|0.00|0.02|N|O|1997-09-04|1997-10-15|1997-09-19|COLLECT COD|FOB|tions cajole i| +8075|94516|9535|2|39|58909.89|0.05|0.03|N|O|1997-08-28|1997-10-05|1997-09-22|DELIVER IN PERSON|AIR|ess asymptotes sleep furiously blithely| +8075|120484|2997|3|34|51152.32|0.09|0.08|N|O|1997-08-26|1997-09-01|1997-09-07|NONE|RAIL|into beans kindle among the packag| +8075|168297|8298|4|11|15018.19|0.08|0.05|N|O|1997-11-05|1997-10-16|1997-11-06|TAKE BACK RETURN|SHIP|le slyly. slyly express courts us| +8076|17140|2143|1|49|51799.86|0.03|0.00|N|F|1995-06-14|1995-06-06|1995-07-07|COLLECT COD|AIR|ously even packages. fluffily silent inst| +8076|68852|3865|2|40|72834.00|0.00|0.06|N|F|1995-06-13|1995-05-10|1995-06-20|NONE|AIR|eep slyly acros| +8076|190946|8504|3|14|28517.16|0.05|0.05|R|F|1995-05-18|1995-06-15|1995-05-27|DELIVER IN PERSON|MAIL|ounts cajole carefully above the furious| +8077|99977|7505|1|4|7907.88|0.09|0.00|N|O|1997-06-15|1997-05-11|1997-07-14|COLLECT COD|REG AIR|ests cajole carefu| +8077|100190|5211|2|39|46417.41|0.10|0.06|N|O|1997-06-05|1997-06-27|1997-06-30|DELIVER IN PERSON|FOB|ly above the slyly| +8077|78939|1447|3|25|47948.25|0.02|0.07|N|O|1997-05-11|1997-05-26|1997-06-05|TAKE BACK RETURN|TRUCK|nic, regular accounts. quickl| +8077|126556|1581|4|44|69632.20|0.06|0.04|N|O|1997-08-05|1997-05-18|1997-08-24|TAKE BACK RETURN|TRUCK| ironic theodolites ab| +8077|12146|2147|5|22|23279.08|0.03|0.04|N|O|1997-06-04|1997-05-22|1997-06-29|DELIVER IN PERSON|REG AIR| slyly requests. s| +8077|132401|2402|6|3|4300.20|0.10|0.07|N|O|1997-07-05|1997-06-08|1997-07-09|TAKE BACK RETURN|SHIP|. ironic, regular theodolites | +8078|121077|6102|1|47|51609.29|0.08|0.06|R|F|1994-08-04|1994-08-07|1994-08-17|COLLECT COD|AIR|xcuses along the exp| +8079|80277|7802|1|34|42747.18|0.06|0.01|A|F|1993-09-10|1993-08-14|1993-09-23|TAKE BACK RETURN|RAIL|pinto beans s| +8079|7028|7029|2|12|11220.24|0.05|0.06|R|F|1993-08-04|1993-07-20|1993-08-14|COLLECT COD|RAIL|ses; blithely special pac| +8104|187247|2284|1|11|14676.64|0.02|0.08|N|O|1995-12-18|1996-01-23|1996-01-01|TAKE BACK RETURN|MAIL|ly bold requests haggle across the flu| +8104|47312|7313|2|12|15111.72|0.00|0.03|N|O|1996-03-01|1996-01-15|1996-03-27|NONE|SHIP|regular asymptotes wake blithel| +8104|169302|9303|3|33|45252.90|0.00|0.07|N|O|1996-02-08|1996-02-09|1996-02-10|NONE|MAIL|pinto beans. furiousl| +8104|58624|8625|4|8|12660.96|0.08|0.01|N|O|1996-04-09|1996-02-12|1996-04-18|TAKE BACK RETURN|AIR|ourts sleep carefully a| +8104|79782|9783|5|12|21141.36|0.03|0.03|N|O|1996-04-12|1996-02-18|1996-04-15|TAKE BACK RETURN|MAIL|lithely against | +8104|90705|8233|6|9|15261.30|0.00|0.08|N|O|1996-01-21|1996-02-06|1996-02-11|TAKE BACK RETURN|RAIL|blithely bold foxes| +8105|84420|9437|1|21|29492.82|0.05|0.02|N|O|1998-06-21|1998-06-29|1998-07-13|NONE|TRUCK|ng to the regular, final pin| +8106|183318|3319|1|31|43440.61|0.07|0.04|N|O|1996-10-14|1996-08-22|1996-11-11|TAKE BACK RETURN|RAIL|to beans nag slyl| +8106|21735|6740|2|15|24850.95|0.07|0.08|N|O|1996-10-14|1996-07-30|1996-11-04|DELIVER IN PERSON|RAIL|arefully express requests. blithely specia| +8106|95496|8006|3|12|17897.88|0.00|0.04|N|O|1996-06-26|1996-08-06|1996-06-28|COLLECT COD|SHIP| fluffily quickly regular grouches. stealt| +8106|194685|7205|4|45|80085.60|0.05|0.04|N|O|1996-08-30|1996-07-26|1996-08-31|COLLECT COD|RAIL|posits detect slyly against the fluffily e| +8106|56057|3573|5|33|33430.65|0.01|0.03|N|O|1996-07-15|1996-08-06|1996-07-27|COLLECT COD|SHIP|. pending accounts maintain ca| +8106|137473|5013|6|17|25677.99|0.03|0.05|N|O|1996-08-17|1996-08-09|1996-09-03|DELIVER IN PERSON|AIR|t patterns. blithe, ir| +8107|120374|7911|1|7|9760.59|0.06|0.04|N|O|1997-07-15|1997-06-02|1997-08-02|NONE|FOB|. carefully silent fra| +8107|121161|8698|2|35|41375.60|0.06|0.08|N|O|1997-07-29|1997-06-12|1997-08-05|DELIVER IN PERSON|AIR|ltipliers! slyly ironic sentiments haggle | +8108|184077|9114|1|8|9288.56|0.00|0.07|N|O|1997-07-23|1997-08-20|1997-08-05|NONE|SHIP| even accounts wake carefully| +8109|163017|3018|1|30|32400.30|0.07|0.05|R|F|1994-06-26|1994-04-23|1994-07-21|TAKE BACK RETURN|FOB|ven, ironic asymptotes sleep. ironic at| +8109|10838|5841|2|17|29730.11|0.04|0.02|A|F|1994-04-04|1994-04-11|1994-05-03|COLLECT COD|RAIL|ress theodolites are carefully along| +8109|138836|1350|3|12|22497.96|0.04|0.03|A|F|1994-04-07|1994-05-23|1994-04-28|COLLECT COD|FOB|y even deposits ru| +8109|13207|5709|4|41|45928.20|0.02|0.05|R|F|1994-04-07|1994-05-21|1994-05-05|NONE|RAIL|osits. qui| +8109|165271|7788|5|32|42760.64|0.05|0.03|A|F|1994-06-11|1994-04-18|1994-07-09|NONE|AIR|to beans. blit| +8109|106313|6314|6|34|44856.54|0.03|0.02|R|F|1994-04-18|1994-06-02|1994-04-21|DELIVER IN PERSON|SHIP|s. regularly regular foxes hagg| +8110|73409|5917|1|50|69120.00|0.07|0.05|A|F|1993-09-05|1993-09-25|1993-09-18|NONE|RAIL|s. carefully pending packages | +8110|170298|5333|2|34|46521.86|0.05|0.05|R|F|1993-07-28|1993-10-05|1993-08-12|DELIVER IN PERSON|MAIL|regular requests. bold, bol| +8110|189044|4081|3|13|14729.52|0.06|0.08|A|F|1993-09-09|1993-09-02|1993-09-28|DELIVER IN PERSON|AIR|eposits. silent, regular requests cajo| +8110|51650|6661|4|33|52854.45|0.03|0.01|R|F|1993-10-28|1993-09-19|1993-11-01|TAKE BACK RETURN|AIR|ies haggle except| +8111|21118|3621|1|48|49877.28|0.03|0.01|N|O|1998-03-09|1998-03-07|1998-03-26|TAKE BACK RETURN|SHIP|nic requests according to the carefu| +8111|127992|3017|2|29|58579.71|0.01|0.03|N|O|1998-02-05|1998-01-26|1998-02-12|TAKE BACK RETURN|FOB|y regular packages| +8111|159955|7501|3|33|66493.35|0.03|0.06|N|O|1998-01-20|1998-03-09|1998-02-19|NONE|RAIL|ccording to t| +8111|148525|3554|4|49|77102.48|0.09|0.03|N|O|1998-03-13|1998-01-18|1998-03-30|NONE|MAIL|thely special dependencies use blith| +8136|44961|7466|1|32|60990.72|0.00|0.00|R|F|1995-04-19|1995-03-21|1995-04-21|TAKE BACK RETURN|SHIP|leep fluffily final| +8136|54684|4685|2|29|47521.72|0.07|0.01|R|F|1995-03-30|1995-02-09|1995-04-17|COLLECT COD|SHIP|ly special packa| +8137|92094|4604|1|35|38013.15|0.10|0.07|N|O|1996-11-17|1996-10-30|1996-12-02|COLLECT COD|SHIP|kages cajole fluffily f| +8137|8450|8451|2|49|66564.05|0.01|0.02|N|O|1996-11-11|1996-11-09|1996-12-11|COLLECT COD|TRUCK|ly final requests sleep bli| +8137|11543|6546|3|14|20363.56|0.07|0.01|N|O|1996-12-18|1996-10-10|1996-12-31|TAKE BACK RETURN|SHIP|ely carefully regular foxes. ex| +8137|197065|4623|4|46|53454.76|0.00|0.08|N|O|1996-10-13|1996-10-23|1996-11-03|TAKE BACK RETURN|AIR|. regular, even deposi| +8137|55519|530|5|16|23592.16|0.07|0.04|N|O|1996-10-12|1996-10-03|1996-10-19|TAKE BACK RETURN|FOB|-ray around the furiously final reque| +8137|94306|4307|6|2|2600.60|0.10|0.04|N|O|1996-10-28|1996-09-26|1996-11-25|NONE|FOB|structions detect ca| +8138|16316|8818|1|22|27110.82|0.01|0.08|R|F|1995-01-07|1995-01-20|1995-01-29|NONE|MAIL|s wake carefully final deposits. iro| +8138|18627|8628|2|44|68007.28|0.04|0.05|R|F|1995-02-13|1995-01-01|1995-03-01|TAKE BACK RETURN|REG AIR|ironic dependencies. slyly ironic fo| +8138|50953|954|3|18|34271.10|0.09|0.07|A|F|1994-11-19|1995-01-16|1994-12-01|NONE|MAIL| excuses. carefully pendin| +8138|161594|6627|4|23|38078.57|0.08|0.01|R|F|1994-12-04|1995-02-02|1994-12-31|TAKE BACK RETURN|RAIL|unusual gifts. excuses sleep sly| +8139|44833|4834|1|36|64001.88|0.00|0.07|A|F|1992-05-10|1992-07-01|1992-06-05|NONE|MAIL|le blithely careful| +8139|100216|5237|2|33|40134.93|0.04|0.06|A|F|1992-06-07|1992-07-18|1992-06-21|TAKE BACK RETURN|MAIL|uffily against t| +8139|124524|2061|3|27|41810.04|0.04|0.08|R|F|1992-08-06|1992-07-04|1992-09-03|DELIVER IN PERSON|REG AIR|efully ironic reques| +8139|72678|7693|4|15|24760.05|0.00|0.06|A|F|1992-08-30|1992-06-18|1992-09-14|NONE|MAIL|er the regular accounts. unusual, regu| +8139|94439|6949|5|46|65937.78|0.06|0.03|R|F|1992-06-26|1992-06-14|1992-07-13|DELIVER IN PERSON|RAIL|y final deposits h| +8139|27281|9784|6|13|15707.64|0.06|0.07|A|F|1992-07-31|1992-06-18|1992-08-22|DELIVER IN PERSON|SHIP|regular deposits. ideas wake blithely sly| +8140|99599|4618|1|25|39964.75|0.01|0.01|N|O|1996-09-09|1996-07-10|1996-09-29|TAKE BACK RETURN|TRUCK| beans integrate| +8140|156823|9339|2|35|65793.70|0.09|0.07|N|O|1996-06-21|1996-07-02|1996-06-24|NONE|SHIP|cording to the carefully final instructi| +8140|123196|3197|3|5|6095.95|0.05|0.04|N|O|1996-09-09|1996-08-05|1996-09-26|DELIVER IN PERSON|MAIL|n foxes are accordi| +8141|95099|5100|1|33|36104.97|0.08|0.07|N|O|1998-05-03|1998-06-13|1998-05-18|DELIVER IN PERSON|RAIL|sily special dol| +8141|128654|3679|2|14|23557.10|0.06|0.04|N|O|1998-04-11|1998-04-25|1998-04-28|TAKE BACK RETURN|TRUCK|ckly among the pending requests| +8141|86691|4216|3|43|72140.67|0.03|0.01|N|O|1998-04-25|1998-06-02|1998-05-21|TAKE BACK RETURN|RAIL|e special, regular cour| +8141|11467|8971|4|38|52381.48|0.07|0.04|N|O|1998-03-31|1998-06-20|1998-04-26|NONE|TRUCK|lly. regular warthogs believe al| +8142|169829|9830|1|21|39875.22|0.04|0.04|N|O|1995-08-22|1995-11-07|1995-09-09|DELIVER IN PERSON|SHIP|final accou| +8142|110285|2797|2|19|24610.32|0.02|0.03|N|O|1995-08-26|1995-09-30|1995-09-12|COLLECT COD|FOB|ages. furiously regular requests a| +8143|195117|7637|1|37|44848.07|0.07|0.08|N|O|1996-04-11|1996-03-29|1996-04-30|TAKE BACK RETURN|REG AIR|cial foxes use finally around the f| +8143|122672|5185|2|31|52534.77|0.06|0.06|N|O|1996-04-29|1996-03-26|1996-05-02|TAKE BACK RETURN|RAIL|carefully according to the carefully r| +8143|132547|7574|3|44|69499.76|0.05|0.07|N|O|1996-02-22|1996-04-03|1996-03-23|TAKE BACK RETURN|REG AIR|lar, ironic accoun| +8168|118449|8450|1|25|36686.00|0.06|0.02|R|F|1993-03-18|1992-12-28|1993-04-02|DELIVER IN PERSON|AIR|fully ruthless ideas i| +8168|160536|537|2|9|14368.77|0.00|0.04|A|F|1992-12-28|1993-01-05|1993-01-13|TAKE BACK RETURN|MAIL|ously special | +8169|182879|5398|1|46|90246.02|0.02|0.02|N|O|1997-06-12|1997-05-14|1997-06-21|NONE|RAIL| carefully ironic requests haggle | +8169|42646|159|2|8|12709.12|0.09|0.01|N|O|1997-05-13|1997-04-26|1997-06-02|TAKE BACK RETURN|REG AIR|he permanently even ideas. | +8169|144560|4561|3|16|25672.96|0.02|0.00|N|O|1997-05-17|1997-05-30|1997-06-15|DELIVER IN PERSON|RAIL|refully carefully | +8169|18895|6399|4|43|77997.27|0.05|0.04|N|O|1997-07-05|1997-04-16|1997-07-15|NONE|TRUCK|pecial instructions after t| +8170|122794|7819|1|27|49053.33|0.03|0.06|N|O|1997-10-06|1997-11-08|1997-10-27|DELIVER IN PERSON|TRUCK|bove the enticing pains. pinto beans acc| +8170|194407|1965|2|31|46543.40|0.02|0.01|N|O|1997-10-01|1997-11-10|1997-10-02|DELIVER IN PERSON|TRUCK|nusual deposits. s| +8170|197310|7311|3|26|36590.06|0.02|0.08|N|O|1997-10-06|1997-11-30|1997-11-01|NONE|TRUCK|into beans haggle slyly blithely| +8170|185397|5398|4|2|2964.78|0.03|0.07|N|O|1997-11-01|1997-10-17|1997-11-07|DELIVER IN PERSON|MAIL|riously final theodolites. slyly e| +8170|154041|1587|5|42|45991.68|0.00|0.04|N|O|1997-10-28|1997-11-12|1997-11-14|NONE|REG AIR|asymptotes cajole fluffily abo| +8170|158625|6171|6|24|40406.88|0.09|0.06|N|O|1997-09-12|1997-12-06|1997-09-23|NONE|RAIL| blithely pending requests use carefully| +8170|3671|8672|7|49|77158.83|0.03|0.07|N|O|1997-12-13|1997-10-22|1997-12-15|DELIVER IN PERSON|FOB|equests affix furiously slyly | +8171|83495|1020|1|46|68010.54|0.06|0.04|N|O|1995-09-23|1995-08-20|1995-10-02|COLLECT COD|FOB|tructions. quickly final foxes inte| +8171|98485|995|2|22|32636.56|0.00|0.07|N|O|1995-07-28|1995-09-26|1995-08-02|DELIVER IN PERSON|RAIL|ely across the bravely pending dep| +8171|22217|2218|3|11|12531.31|0.03|0.07|N|O|1995-07-16|1995-08-29|1995-07-31|COLLECT COD|REG AIR|thely regular accounts hag| +8171|196695|6696|4|10|17916.90|0.01|0.02|N|O|1995-10-02|1995-08-25|1995-10-19|TAKE BACK RETURN|FOB|ag after the fluffily | +8171|37489|4999|5|29|41367.92|0.08|0.08|N|O|1995-09-19|1995-09-01|1995-09-28|TAKE BACK RETURN|FOB|sits. slowly silent requests about| +8172|78993|6515|1|22|43383.78|0.00|0.05|R|F|1993-02-02|1993-02-26|1993-02-18|DELIVER IN PERSON|MAIL| dependencies haggle bold foxe| +8172|33698|3699|2|13|21211.97|0.03|0.03|A|F|1993-01-02|1993-03-07|1993-01-28|COLLECT COD|SHIP|efully regul| +8172|146709|9224|3|13|22824.10|0.02|0.07|R|F|1993-01-19|1993-02-01|1993-02-07|DELIVER IN PERSON|RAIL|ular accounts nag across the regula| +8173|41373|3878|1|18|23658.66|0.10|0.06|N|O|1998-01-19|1998-02-19|1998-01-20|DELIVER IN PERSON|MAIL|quests. fluffily pending reque| +8174|110670|3182|1|11|18487.37|0.00|0.07|N|O|1996-11-04|1996-10-08|1996-11-05|NONE|MAIL|ests. slyly final packages ca| +8175|100624|3135|1|27|43864.74|0.05|0.08|N|O|1995-09-04|1995-08-26|1995-09-20|COLLECT COD|REG AIR|ve blithely. even, bold depo| +8175|184877|2432|2|16|31389.92|0.09|0.07|N|O|1995-07-14|1995-07-07|1995-08-05|DELIVER IN PERSON|TRUCK|nal accounts. carefully special depos| +8175|20093|2596|3|10|10130.90|0.10|0.03|N|O|1995-07-09|1995-07-23|1995-08-05|DELIVER IN PERSON|TRUCK|platelets cajole | +8175|96110|3638|4|48|53093.28|0.09|0.01|N|O|1995-07-23|1995-07-29|1995-08-22|TAKE BACK RETURN|TRUCK|pearls across the furiously bold es| +8175|114771|4772|5|10|17857.70|0.03|0.06|N|O|1995-08-15|1995-07-13|1995-09-08|COLLECT COD|SHIP|unts wake furiously ir| +8175|155944|975|6|2|3999.88|0.07|0.02|N|F|1995-06-08|1995-07-07|1995-06-18|DELIVER IN PERSON|REG AIR|tes nag spe| +8200|9014|4015|1|12|11076.12|0.08|0.01|R|F|1993-03-04|1993-04-11|1993-03-19|NONE|REG AIR|iously pending requests at t| +8200|89196|6721|2|27|32000.13|0.04|0.04|A|F|1993-04-25|1993-04-15|1993-05-09|COLLECT COD|SHIP| carefully | +8200|116820|9332|3|25|45920.50|0.05|0.07|R|F|1993-03-29|1993-04-06|1993-04-23|DELIVER IN PERSON|TRUCK|. blithely even accounts a| +8201|169007|6556|1|2|2152.00|0.05|0.00|A|F|1995-04-11|1995-06-27|1995-04-25|TAKE BACK RETURN|FOB|tes. blithely| +8201|98661|8662|2|35|58088.10|0.02|0.08|A|F|1995-04-09|1995-06-16|1995-04-26|DELIVER IN PERSON|TRUCK|ly. carefully ironic deposits c| +8202|173429|3430|1|50|75121.00|0.06|0.06|R|F|1994-11-18|1994-10-04|1994-11-24|NONE|RAIL|ourts sleep-- sl| +8202|19255|1757|2|9|10568.25|0.08|0.01|A|F|1994-08-15|1994-09-18|1994-08-31|DELIVER IN PERSON|TRUCK| sleep around the blithely ir| +8203|13535|3536|1|41|59389.73|0.07|0.08|A|F|1993-06-21|1993-06-24|1993-07-19|NONE|REG AIR|riously special depths around th| +8203|72783|7798|2|32|56184.96|0.02|0.03|A|F|1993-06-30|1993-06-19|1993-07-03|DELIVER IN PERSON|AIR|slyly around| +8203|52591|2592|3|9|13892.31|0.04|0.06|R|F|1993-07-28|1993-07-06|1993-08-05|COLLECT COD|MAIL|unusual, regular deposits boost about th| +8203|81084|1085|4|38|40473.04|0.02|0.00|R|F|1993-08-07|1993-08-11|1993-08-15|NONE|SHIP|ccounts. fluffily express realms play c| +8203|166775|6776|5|42|77354.34|0.04|0.08|A|F|1993-05-24|1993-07-11|1993-06-13|DELIVER IN PERSON|RAIL|tegrate. s| +8203|175025|2577|6|10|11000.20|0.04|0.07|A|F|1993-07-25|1993-07-07|1993-08-17|DELIVER IN PERSON|RAIL|packages use carefully fu| +8204|122025|7050|1|45|47115.90|0.06|0.01|N|O|1996-04-03|1996-01-17|1996-04-28|TAKE BACK RETURN|REG AIR|deas serve furio| +8204|64644|4645|2|48|77214.72|0.10|0.01|N|O|1996-01-02|1996-02-28|1996-01-30|DELIVER IN PERSON|TRUCK|uests. carefully | +8204|69196|9197|3|41|47772.79|0.04|0.02|N|O|1996-03-15|1996-02-01|1996-03-28|NONE|MAIL|aids are abou| +8204|162642|2643|4|29|49434.56|0.05|0.00|N|O|1996-03-03|1996-01-20|1996-03-16|DELIVER IN PERSON|REG AIR|usly ironic packages. blithely specia| +8204|111773|1774|5|19|33910.63|0.02|0.05|N|O|1995-12-27|1996-02-18|1996-01-15|NONE|SHIP|brave packages wake slyly aga| +8205|164483|9516|1|49|75826.52|0.03|0.02|A|F|1993-07-14|1993-05-17|1993-07-26|DELIVER IN PERSON|REG AIR|posits cajole against the| +8205|49408|9409|2|4|5429.60|0.02|0.07|R|F|1993-05-09|1993-05-04|1993-05-30|DELIVER IN PERSON|REG AIR|s wake furi| +8205|189811|4848|3|1|1900.81|0.02|0.08|A|F|1993-06-11|1993-05-11|1993-07-06|DELIVER IN PERSON|REG AIR|alongside of the slowly fi| +8206|97264|4792|1|30|37837.80|0.04|0.02|R|F|1993-01-24|1993-01-20|1993-02-02|COLLECT COD|REG AIR|lar, ironic foxes sleep f| +8206|106750|6751|2|21|36891.75|0.06|0.07|R|F|1992-12-22|1992-12-29|1992-12-30|TAKE BACK RETURN|RAIL|egular deposits. quickly entici| +8206|146345|6346|3|19|26435.46|0.00|0.02|R|F|1992-12-31|1993-01-10|1993-01-21|COLLECT COD|REG AIR|es boost bravely pending| +8206|9559|7060|4|17|24965.35|0.01|0.08|R|F|1992-12-05|1993-01-04|1992-12-11|DELIVER IN PERSON|TRUCK| quickly. regular pinto beans wa| +8206|56181|3697|5|48|54584.64|0.01|0.00|R|F|1992-12-07|1993-01-31|1992-12-30|COLLECT COD|REG AIR| packages among the silen| +8206|17769|5273|6|40|67470.40|0.05|0.08|A|F|1993-02-06|1993-02-23|1993-02-25|DELIVER IN PERSON|FOB| regular instructions| +8207|148646|8647|1|10|16946.40|0.09|0.08|N|O|1998-08-20|1998-10-05|1998-08-21|NONE|SHIP|he fluffily regular theodolites. | +8207|78127|3142|2|46|50835.52|0.08|0.03|N|O|1998-08-21|1998-10-05|1998-09-14|COLLECT COD|TRUCK|after the blithely express requests. qui| +8207|70142|2650|3|1|1112.14|0.05|0.01|N|O|1998-08-11|1998-09-06|1998-08-20|TAKE BACK RETURN|MAIL|es. blithely | +8207|73938|8953|4|25|47798.25|0.00|0.04|N|O|1998-07-24|1998-09-06|1998-08-01|TAKE BACK RETURN|TRUCK|nal instructi| +8232|163976|1525|1|28|57119.16|0.05|0.05|N|O|1996-07-14|1996-06-22|1996-08-13|TAKE BACK RETURN|RAIL| theodolites. bli| +8232|132911|451|2|2|3887.82|0.08|0.03|N|O|1996-07-15|1996-05-07|1996-08-13|DELIVER IN PERSON|FOB| special foxes according t| +8232|25817|8320|3|10|17428.10|0.05|0.01|N|O|1996-05-21|1996-06-01|1996-06-15|DELIVER IN PERSON|TRUCK|s use quickly-- bli| +8233|96201|6202|1|12|14366.40|0.02|0.06|R|F|1993-06-06|1993-07-18|1993-06-07|TAKE BACK RETURN|AIR|s? quickly even packages again| +8233|34922|9929|2|11|20426.12|0.03|0.04|R|F|1993-06-17|1993-07-04|1993-06-27|NONE|TRUCK| deposits use | +8233|119301|4324|3|50|66015.00|0.08|0.05|A|F|1993-09-24|1993-08-10|1993-10-07|TAKE BACK RETURN|REG AIR| of the final deposits must sleep| +8233|80993|3502|4|42|82907.58|0.09|0.02|A|F|1993-09-22|1993-08-24|1993-09-23|TAKE BACK RETURN|AIR| dolphins. final deposits| +8233|42198|2199|5|39|44467.41|0.06|0.05|A|F|1993-07-22|1993-08-08|1993-08-11|DELIVER IN PERSON|FOB|ests nod slyly carefully unusu| +8233|13895|1399|6|45|81400.05|0.08|0.08|A|F|1993-08-14|1993-07-02|1993-08-24|COLLECT COD|RAIL|, regular packages abo| +8233|123001|5514|7|46|47104.00|0.03|0.03|R|F|1993-06-21|1993-07-05|1993-07-15|COLLECT COD|SHIP|reach. slyly final accounts a| +8234|76326|1341|1|38|49488.16|0.01|0.01|A|F|1994-03-12|1994-01-20|1994-03-24|DELIVER IN PERSON|FOB|ily even deposits nag between t| +8234|6796|1797|2|8|13622.32|0.00|0.00|R|F|1994-01-31|1994-02-20|1994-02-08|DELIVER IN PERSON|REG AIR|s. foxes nag quickly a| +8234|19699|4702|3|42|67984.98|0.07|0.06|R|F|1993-11-26|1993-12-27|1993-12-10|NONE|RAIL|ckly pending acc| +8234|71403|3911|4|40|54976.00|0.00|0.08|A|F|1994-01-18|1994-01-15|1994-02-08|TAKE BACK RETURN|FOB|its cajole b| +8234|64927|7434|5|12|22703.04|0.09|0.00|A|F|1994-01-01|1993-12-25|1994-01-25|NONE|FOB|uctions use. depen| +8234|26039|6040|6|25|24125.75|0.06|0.02|A|F|1994-01-23|1994-01-23|1994-01-28|DELIVER IN PERSON|FOB| even patterns. express, ironic| +8234|35662|3172|7|16|25562.56|0.03|0.01|A|F|1994-02-25|1994-02-12|1994-03-21|COLLECT COD|AIR|ourts? carefully express accounts haggle| +8235|159788|4819|1|26|48042.28|0.04|0.02|R|F|1992-08-11|1992-06-27|1992-09-03|DELIVER IN PERSON|SHIP|uests. requests cajole according| +8235|140129|7672|2|27|31566.24|0.10|0.03|R|F|1992-07-14|1992-07-14|1992-07-23|DELIVER IN PERSON|MAIL|es. furiously | +8235|140388|2903|3|10|14283.80|0.10|0.02|A|F|1992-07-16|1992-07-24|1992-08-07|NONE|MAIL|ending epitaphs. slyly | +8236|90590|3100|1|7|11064.13|0.07|0.08|R|F|1992-03-01|1992-04-19|1992-03-29|TAKE BACK RETURN|RAIL|sly pending acco| +8236|137983|7984|2|33|66692.34|0.03|0.07|R|F|1992-03-24|1992-05-02|1992-04-23|TAKE BACK RETURN|TRUCK| ideas. pending packages| +8236|78476|5998|3|10|14544.70|0.09|0.03|A|F|1992-04-13|1992-05-06|1992-04-29|COLLECT COD|RAIL|lar packages. furiously bo| +8236|141735|6764|4|25|44418.25|0.03|0.05|A|F|1992-04-07|1992-03-30|1992-04-12|COLLECT COD|REG AIR|slyly about the carefull| +8236|131813|4327|5|10|18448.10|0.09|0.00|R|F|1992-05-05|1992-03-31|1992-05-06|COLLECT COD|RAIL|deposits around | +8237|38375|8376|1|32|42027.84|0.02|0.01|R|F|1992-06-26|1992-07-25|1992-07-18|NONE|MAIL|ole carefully. i| +8237|152253|7284|2|47|61346.75|0.05|0.05|A|F|1992-08-18|1992-06-26|1992-08-25|NONE|TRUCK|cial, regular packages. carefully express | +8237|109423|9424|3|46|65891.32|0.00|0.04|A|F|1992-05-18|1992-07-16|1992-06-09|COLLECT COD|FOB|to the even frays sleep carefully fur| +8237|60083|7602|4|46|47981.68|0.07|0.03|A|F|1992-07-13|1992-06-21|1992-08-07|NONE|FOB|lyly final accounts sleep accounts. bold as| +8237|944|8445|5|20|36898.80|0.08|0.03|R|F|1992-07-22|1992-06-28|1992-08-06|TAKE BACK RETURN|RAIL|s. unusual requests haggle slyly al| +8237|64397|1916|6|8|10891.12|0.10|0.07|A|F|1992-07-04|1992-06-25|1992-07-24|COLLECT COD|AIR|ost carefully after the slyly bold| +8238|185845|3400|1|27|52132.68|0.08|0.02|R|F|1993-02-15|1992-12-03|1993-03-14|COLLECT COD|FOB|to beans. carefully r| +8239|13499|8502|1|50|70624.50|0.07|0.05|N|O|1995-06-19|1995-05-31|1995-07-18|TAKE BACK RETURN|TRUCK|e near the furiously final | +8239|61864|9383|2|47|85815.42|0.04|0.00|N|O|1995-07-12|1995-06-10|1995-07-23|NONE|FOB|eas. special foxes cajole carefully exce| +8239|144386|1929|3|48|68658.24|0.02|0.02|A|F|1995-05-12|1995-06-03|1995-06-05|COLLECT COD|MAIL| ironic packages abo| +8264|66328|3847|1|16|20709.12|0.03|0.00|R|F|1993-09-04|1993-07-10|1993-09-18|TAKE BACK RETURN|AIR|e ironic asympt| +8264|163710|6227|2|44|78043.24|0.02|0.05|A|F|1993-08-01|1993-07-10|1993-08-26|NONE|MAIL|iously bold multip| +8264|71052|3560|3|42|42968.10|0.02|0.03|R|F|1993-05-17|1993-06-18|1993-05-25|DELIVER IN PERSON|TRUCK| blithely even ideas. bold,| +8264|169878|4911|4|34|66227.58|0.08|0.03|A|F|1993-07-31|1993-06-22|1993-08-01|DELIVER IN PERSON|REG AIR|evenly furiously pending instruc| +8264|123107|5620|5|44|49724.40|0.06|0.00|R|F|1993-08-24|1993-07-17|1993-08-27|NONE|RAIL|eans. carefully unusual courts | +8264|43309|5814|6|44|55101.20|0.02|0.00|A|F|1993-08-13|1993-07-17|1993-09-06|COLLECT COD|AIR| carefully regular instr| +8264|87839|5364|7|5|9134.15|0.01|0.04|A|F|1993-07-22|1993-06-16|1993-08-08|COLLECT COD|FOB|uests cajole. iro| +8265|100107|5128|1|15|16606.50|0.08|0.08|A|F|1993-09-05|1993-10-04|1993-09-15|TAKE BACK RETURN|REG AIR|gular instructions. d| +8266|159584|2100|1|20|32871.60|0.01|0.06|A|F|1992-06-23|1992-06-28|1992-07-19|NONE|MAIL|inst the slyly regular | +8266|115596|5597|2|44|70909.96|0.09|0.05|A|F|1992-06-11|1992-07-09|1992-06-24|COLLECT COD|SHIP|refully even requests| +8266|18580|8581|3|13|19481.54|0.10|0.03|R|F|1992-05-28|1992-06-24|1992-06-05|TAKE BACK RETURN|AIR|ter the even, b| +8267|88368|5893|1|12|16276.32|0.08|0.06|R|F|1994-03-17|1993-12-25|1994-04-10|NONE|SHIP|even deposits. even | +8267|184330|1885|2|50|70716.50|0.10|0.07|A|F|1993-12-23|1994-02-21|1994-01-21|DELIVER IN PERSON|SHIP|egrate final requests. regular r| +8267|33531|8538|3|35|51258.55|0.05|0.02|R|F|1993-11-26|1994-02-02|1993-12-17|NONE|RAIL|ide of the fluffily regular packages; | +8267|140231|232|4|29|36865.67|0.02|0.04|R|F|1993-12-25|1994-01-15|1994-01-12|NONE|FOB|nto beans across the carefully regular f| +8267|58879|1385|5|34|62487.58|0.00|0.05|R|F|1994-01-29|1994-01-25|1994-02-14|COLLECT COD|AIR|pinto beans. quickly iron| +8268|148147|8148|1|35|41829.90|0.09|0.01|R|F|1995-02-06|1994-12-31|1995-03-08|COLLECT COD|SHIP|ously pending instructions according to th| +8268|97453|9963|2|15|21756.75|0.08|0.02|R|F|1995-01-21|1995-01-17|1995-02-17|TAKE BACK RETURN|TRUCK|deposits. | +8268|91846|4356|3|23|42270.32|0.01|0.05|R|F|1994-12-19|1995-01-23|1995-01-05|DELIVER IN PERSON|REG AIR|intain quietly against the carefully re| +8268|53678|8689|4|20|32633.40|0.05|0.07|R|F|1995-02-12|1995-01-18|1995-02-13|COLLECT COD|SHIP| the carefu| +8268|156412|8928|5|8|11747.28|0.09|0.02|A|F|1995-01-16|1995-01-29|1995-02-05|COLLECT COD|AIR|eat around t| +8268|8639|1140|6|9|13928.67|0.03|0.02|A|F|1995-02-26|1994-12-10|1995-03-10|TAKE BACK RETURN|TRUCK|press slyly about the quickly regular instr| +8268|193825|3826|7|49|94022.18|0.04|0.06|A|F|1995-01-12|1994-12-22|1995-01-17|COLLECT COD|AIR|g blithely pending requests. quickly unusu| +8269|3409|8410|1|38|49871.20|0.03|0.07|N|O|1997-02-11|1997-01-23|1997-02-24|COLLECT COD|MAIL|he slyly even notornis doze quickly abou| +8269|86697|1714|2|15|25255.35|0.01|0.05|N|O|1996-11-17|1997-01-14|1996-11-26|TAKE BACK RETURN|SHIP|d deposits. bold notornis slee| +8269|116178|8690|3|25|29854.25|0.02|0.03|N|O|1996-12-02|1997-01-18|1996-12-13|NONE|AIR| ironic, ironic requests. regular p| +8269|192566|5086|4|21|34829.76|0.06|0.08|N|O|1996-11-12|1996-12-14|1996-12-07|NONE|REG AIR| after the bold pinto| +8269|54861|2377|5|45|81713.70|0.06|0.04|N|O|1997-01-22|1997-01-02|1997-01-31|COLLECT COD|RAIL|g the regular platelets. slyly ironic| +8269|39435|9436|6|16|21990.88|0.04|0.03|N|O|1997-01-17|1996-12-31|1997-01-20|NONE|REG AIR|the bold, | +8269|169252|1769|7|11|14533.75|0.05|0.03|N|O|1996-11-23|1997-01-11|1996-12-17|NONE|AIR|regular theodolites. theodolites use sly| +8270|9031|1532|1|9|8460.27|0.00|0.03|N|F|1995-06-08|1995-05-08|1995-06-22|COLLECT COD|REG AIR|ts boost afte| +8270|168883|1400|2|38|74171.44|0.00|0.07|N|O|1995-06-27|1995-05-28|1995-07-09|TAKE BACK RETURN|MAIL|ackages must | +8270|3833|1334|3|25|43420.75|0.02|0.03|N|O|1995-07-29|1995-05-22|1995-08-02|COLLECT COD|AIR|ly even instr| +8271|174230|4231|1|13|16954.99|0.09|0.00|N|O|1996-09-21|1996-10-13|1996-10-12|COLLECT COD|RAIL|usual accounts. fox| +8271|79728|7250|2|1|1707.72|0.07|0.02|N|O|1996-10-17|1996-11-19|1996-10-29|DELIVER IN PERSON|SHIP| carefully bold reque| +8271|188316|8317|3|6|8425.86|0.04|0.06|N|O|1996-11-16|1996-10-26|1996-12-01|DELIVER IN PERSON|TRUCK|ans. final theodolites believe furious| +8271|25849|5850|4|1|1774.84|0.10|0.00|N|O|1996-12-23|1996-11-10|1997-01-16|DELIVER IN PERSON|SHIP|g. unusual deposits wake among the b| +8271|35165|7669|5|35|38505.60|0.01|0.05|N|O|1996-11-04|1996-11-15|1996-12-04|COLLECT COD|MAIL|t deposits nag carefully above the slyly | +8271|12395|9899|6|13|16996.07|0.10|0.02|N|O|1996-10-02|1996-11-08|1996-10-09|COLLECT COD|SHIP|ckages wake carefully alongside of the| +8271|113123|657|7|14|15905.68|0.10|0.00|N|O|1997-01-06|1996-11-10|1997-02-01|DELIVER IN PERSON|MAIL|en sentime| +8296|56200|1211|1|23|26592.60|0.01|0.02|N|O|1996-05-29|1996-05-27|1996-06-26|TAKE BACK RETURN|AIR|ts engage carefully a| +8296|145629|658|2|32|53587.84|0.03|0.07|N|O|1996-07-18|1996-06-22|1996-08-17|TAKE BACK RETURN|AIR|t dependencies ought to| +8296|181854|9409|3|37|71626.45|0.06|0.04|N|O|1996-07-29|1996-07-08|1996-08-05|COLLECT COD|TRUCK|al platelet| +8296|15682|685|4|8|12781.44|0.08|0.06|N|O|1996-08-09|1996-06-04|1996-08-13|DELIVER IN PERSON|RAIL|accounts nag blithely regular realms.| +8297|59313|9314|1|11|13995.41|0.00|0.00|R|F|1994-05-08|1994-06-08|1994-05-27|NONE|MAIL| furiously about t| +8298|31629|9139|1|33|51500.46|0.05|0.04|N|O|1997-03-09|1997-05-05|1997-04-01|NONE|AIR|t closely again| +8298|184061|9098|2|35|40077.10|0.08|0.04|N|O|1997-06-17|1997-04-06|1997-07-07|TAKE BACK RETURN|MAIL|ironic, express pearls. even depe| +8299|81143|8668|1|13|14613.82|0.01|0.05|A|F|1994-06-04|1994-07-25|1994-06-09|TAKE BACK RETURN|TRUCK|nstructions-- even depo| +8299|159007|9008|2|38|40508.00|0.01|0.03|R|F|1994-06-18|1994-07-03|1994-07-11|DELIVER IN PERSON|AIR|s sleep. ac| +8299|14729|4730|3|9|14793.48|0.06|0.00|R|F|1994-09-03|1994-08-04|1994-09-22|NONE|REG AIR|furiously across| +8299|135876|3416|4|12|22942.44|0.02|0.04|R|F|1994-08-27|1994-07-23|1994-09-01|TAKE BACK RETURN|SHIP|ts. ironic, e| +8299|60940|5953|5|29|55127.26|0.04|0.08|R|F|1994-06-13|1994-06-18|1994-07-12|COLLECT COD|FOB|y slyly even asymptotes. ca| +8299|14664|9667|6|39|61567.74|0.07|0.02|A|F|1994-05-16|1994-06-20|1994-05-23|DELIVER IN PERSON|SHIP|ctions haggle blithely. evenly even p| +8299|46214|3727|7|17|19723.57|0.08|0.01|A|F|1994-07-11|1994-06-14|1994-08-06|DELIVER IN PERSON|AIR|haggle caref| +8300|107312|2333|1|42|55411.02|0.01|0.06|R|F|1992-07-27|1992-08-20|1992-08-25|COLLECT COD|AIR|s along the furiously unusual foxes do| +8300|187897|5452|2|22|43667.58|0.08|0.06|R|F|1992-09-29|1992-09-22|1992-10-24|TAKE BACK RETURN|RAIL|ole. silent requests unde| +8300|171806|6841|3|19|35678.20|0.01|0.07|R|F|1992-11-05|1992-08-28|1992-11-22|DELIVER IN PERSON|TRUCK|he silent | +8300|137954|7955|4|2|3983.90|0.05|0.07|A|F|1992-09-29|1992-09-21|1992-10-26|DELIVER IN PERSON|RAIL|es wake slyly against the slyly pending p| +8301|21102|8609|1|9|9207.90|0.10|0.08|R|F|1994-02-22|1994-04-12|1994-03-03|NONE|SHIP|nal requests above the slyly ironic s| +8301|50684|5695|2|10|16346.80|0.10|0.04|R|F|1994-02-22|1994-04-07|1994-02-26|COLLECT COD|SHIP|al decoys. ideas doze permanently blithe| +8301|34122|6626|3|24|25346.88|0.03|0.00|R|F|1994-06-11|1994-04-22|1994-07-05|COLLECT COD|SHIP|dencies nag ironic ideas. bold | +8301|87385|9894|4|34|46660.92|0.01|0.04|A|F|1994-04-09|1994-05-16|1994-04-24|COLLECT COD|REG AIR|he silent, even | +8301|77931|7932|5|11|20998.23|0.02|0.00|R|F|1994-05-12|1994-04-22|1994-05-23|COLLECT COD|TRUCK|ckages. furiously special deposits| +8301|173003|5521|6|39|41964.00|0.04|0.03|A|F|1994-04-07|1994-03-25|1994-04-20|TAKE BACK RETURN|TRUCK|its. braids ar| +8301|45323|7828|7|19|24098.08|0.05|0.04|R|F|1994-02-19|1994-03-24|1994-03-19|DELIVER IN PERSON|TRUCK|es-- enticingly| +8302|131893|9433|1|8|15399.12|0.07|0.00|N|O|1997-11-17|1997-10-23|1997-12-12|TAKE BACK RETURN|REG AIR|ironic packages against the blit| +8302|112717|2718|2|48|83026.08|0.10|0.03|N|O|1997-09-20|1997-10-12|1997-10-16|COLLECT COD|RAIL|gular excuses. unusual, pendin| +8302|29936|4941|3|14|26123.02|0.06|0.05|N|O|1997-08-28|1997-10-01|1997-09-03|NONE|MAIL|. packages cajole car| +8302|124204|4205|4|6|7369.20|0.10|0.03|N|O|1997-10-07|1997-11-14|1997-11-05|DELIVER IN PERSON|MAIL|. permanently pending accoun| +8302|94724|4725|5|33|56717.76|0.03|0.07|N|O|1997-10-21|1997-10-01|1997-11-18|NONE|AIR| slyly pending attainments. packages haggl| +8303|112330|2331|1|29|38927.57|0.00|0.03|N|O|1997-06-19|1997-06-06|1997-07-16|TAKE BACK RETURN|TRUCK|nag slyly ironic theodol| +8303|123720|6233|2|42|73236.24|0.07|0.01|N|O|1997-05-07|1997-05-21|1997-05-18|COLLECT COD|MAIL|leep. quickly express ideas according t| +8303|156473|1504|3|41|62708.27|0.03|0.04|N|O|1997-03-28|1997-06-07|1997-04-19|TAKE BACK RETURN|FOB|structions use. slyly express foxes solve| +8303|29398|9399|4|7|9291.73|0.06|0.02|N|O|1997-07-23|1997-04-30|1997-08-17|COLLECT COD|MAIL|nts haggle slyly slyly unusual pinto be| +8303|88766|6291|5|33|57907.08|0.10|0.03|N|O|1997-06-17|1997-06-06|1997-06-29|DELIVER IN PERSON|REG AIR|pecial attainme| +8328|2778|279|1|4|6723.08|0.10|0.08|N|O|1996-04-07|1996-02-08|1996-04-23|NONE|MAIL|dencies. qui| +8328|75819|5820|2|39|69997.59|0.03|0.04|N|O|1996-04-07|1996-01-30|1996-04-12|TAKE BACK RETURN|AIR|ccounts haggle carefully. carefully ir| +8328|77157|2172|3|46|52170.90|0.10|0.05|N|O|1996-02-23|1996-03-23|1996-03-06|NONE|TRUCK|y pending theodolites. regular, e| +8328|177451|2486|4|21|32097.45|0.09|0.07|N|O|1996-03-10|1996-03-09|1996-03-15|COLLECT COD|SHIP|uickly against the final de| +8328|10561|562|5|42|61805.52|0.06|0.01|N|O|1996-01-21|1996-03-27|1996-01-29|COLLECT COD|MAIL|ly bold sauternes according| +8329|195809|8329|1|39|74287.20|0.07|0.06|R|F|1994-02-01|1994-02-25|1994-02-17|COLLECT COD|FOB|ongside of the unusual depths| +8329|161405|6438|2|32|46924.80|0.09|0.03|A|F|1994-02-20|1994-02-05|1994-03-16|TAKE BACK RETURN|TRUCK| along the slyly final| +8330|4616|2117|1|7|10644.27|0.00|0.06|A|F|1992-10-12|1992-10-22|1992-11-08|TAKE BACK RETURN|RAIL|cial instructions. fluffily regular theo| +8330|164783|4784|2|8|14782.24|0.01|0.00|A|F|1993-01-07|1992-11-11|1993-01-20|TAKE BACK RETURN|REG AIR|shall have to haggle furiously fluffi| +8330|93875|6385|3|50|93443.50|0.03|0.07|A|F|1992-10-26|1992-10-30|1992-11-03|DELIVER IN PERSON|RAIL|egular requests are quickly f| +8330|155468|5469|4|12|18281.52|0.02|0.00|R|F|1992-09-11|1992-11-26|1992-09-22|COLLECT COD|TRUCK|s. ideas wake slyly f| +8331|183828|3829|1|11|21030.02|0.01|0.08|A|F|1992-06-26|1992-05-25|1992-07-14|DELIVER IN PERSON|MAIL| final packages. slyly final | +8331|191738|6777|2|23|42083.79|0.05|0.04|R|F|1992-05-18|1992-06-08|1992-05-25|TAKE BACK RETURN|MAIL|lithely regular f| +8331|130733|5760|3|45|79367.85|0.04|0.03|R|F|1992-05-30|1992-05-12|1992-06-02|NONE|RAIL|ully regular multi| +8331|14415|1919|4|14|18611.74|0.01|0.08|A|F|1992-07-08|1992-05-26|1992-08-07|COLLECT COD|TRUCK| furiously among the blithely regular e| +8331|72375|4883|5|7|9431.59|0.03|0.04|R|F|1992-06-20|1992-06-13|1992-07-10|COLLECT COD|REG AIR|ses. blithely e| +8332|146661|9176|1|22|37568.52|0.03|0.05|A|F|1992-09-12|1992-07-14|1992-10-07|TAKE BACK RETURN|RAIL|ic requests sleep according to the fina| +8332|119513|4536|2|6|9195.06|0.00|0.02|R|F|1992-05-21|1992-06-22|1992-05-24|NONE|TRUCK|thely according to the close theod| +8332|46687|6688|3|48|78416.64|0.02|0.03|R|F|1992-07-03|1992-08-09|1992-07-04|TAKE BACK RETURN|FOB|somas across the quickly f| +8332|58476|5992|4|20|28689.40|0.08|0.07|A|F|1992-07-31|1992-07-10|1992-08-28|NONE|RAIL|unts haggle | +8332|198687|1207|5|28|49999.04|0.08|0.05|A|F|1992-06-11|1992-08-06|1992-07-06|TAKE BACK RETURN|REG AIR|onic deposits haggle quickly | +8332|123106|8131|6|29|32743.90|0.08|0.08|A|F|1992-06-09|1992-08-09|1992-06-17|DELIVER IN PERSON|RAIL|the requests use a| +8333|12088|4590|1|36|36002.88|0.08|0.05|N|O|1996-10-28|1996-12-03|1996-11-09|NONE|FOB|r deposits. slyly ev| +8333|146846|1875|2|36|68142.24|0.08|0.00|N|O|1996-12-16|1996-11-11|1996-12-23|NONE|RAIL|t the quickly bold requests. reg| +8333|36408|6409|3|17|22854.80|0.03|0.08|N|O|1996-09-28|1996-11-15|1996-10-06|NONE|FOB| foxes run furiously. entici| +8334|151818|9364|1|39|72922.59|0.01|0.04|N|O|1998-04-16|1998-03-31|1998-04-27|NONE|RAIL|x. enticingly fina| +8334|193945|6465|2|29|59129.26|0.04|0.04|N|O|1998-03-14|1998-02-19|1998-03-27|COLLECT COD|AIR|e blithely regular frays. caref| +8334|21981|4484|3|2|3805.96|0.04|0.00|N|O|1998-02-22|1998-02-27|1998-02-27|NONE|REG AIR|regular accounts. f| +8334|34093|4094|4|43|44164.87|0.01|0.00|N|O|1998-02-21|1998-03-13|1998-02-26|NONE|REG AIR|ding instructions. pending packages wa| +8335|61397|1398|1|45|61127.55|0.04|0.03|N|O|1998-03-22|1998-01-27|1998-04-08|TAKE BACK RETURN|FOB|sual theodolites are.| +8335|88439|8440|2|43|61379.49|0.10|0.07|N|O|1998-02-10|1998-02-19|1998-03-08|TAKE BACK RETURN|RAIL|lar pinto | +8335|189486|9487|3|24|37811.52|0.07|0.05|N|O|1998-03-02|1998-02-09|1998-03-25|DELIVER IN PERSON|RAIL|l requests. slyly darin| +8335|90298|2808|4|3|3864.87|0.03|0.08|N|O|1998-01-07|1998-02-19|1998-02-03|DELIVER IN PERSON|TRUCK|ong the regular instruc| +8360|156482|8998|1|23|35385.04|0.03|0.03|N|O|1995-08-25|1995-07-15|1995-09-16|NONE|REG AIR|slyly special requests. ca| +8360|188646|3683|2|38|65916.32|0.07|0.07|N|O|1995-07-19|1995-07-01|1995-07-25|TAKE BACK RETURN|AIR|rns. furiously ironic deposits integrate ca| +8360|167064|4613|3|24|27145.44|0.06|0.01|N|O|1995-07-22|1995-08-04|1995-08-05|DELIVER IN PERSON|REG AIR|cies boost quickly after the slyly iron| +8360|35773|8277|4|36|61515.72|0.08|0.01|N|O|1995-06-23|1995-07-11|1995-06-25|NONE|RAIL|he always final platelets. furiously| +8360|34768|4769|5|39|66407.64|0.07|0.05|N|O|1995-09-18|1995-07-11|1995-10-08|DELIVER IN PERSON|TRUCK|iously express asymptotes | +8360|137418|2445|6|3|4366.23|0.01|0.05|N|O|1995-08-18|1995-07-10|1995-08-20|DELIVER IN PERSON|FOB|uriously regular packages must have | +8361|122190|4703|1|41|49699.79|0.07|0.06|N|O|1995-11-11|1995-12-26|1995-12-06|TAKE BACK RETURN|RAIL|unusual packages. regular gifts| +8362|178144|662|1|3|3666.42|0.00|0.01|N|O|1996-03-29|1996-04-03|1996-04-19|DELIVER IN PERSON|TRUCK|ly. blithely pending packages wake acc| +8362|54785|4786|2|28|48713.84|0.06|0.07|N|O|1996-02-05|1996-03-04|1996-03-01|NONE|SHIP| after the slyly s| +8362|163832|1381|3|32|60666.56|0.03|0.02|N|O|1996-04-18|1996-03-05|1996-05-06|COLLECT COD|SHIP|requests. multiplie| +8363|131489|4003|1|10|15204.80|0.09|0.05|R|F|1992-12-27|1993-02-24|1993-01-20|NONE|RAIL|ously final instructions alongside of t| +8363|131910|1911|2|13|25244.83|0.07|0.00|R|F|1992-12-16|1993-03-02|1992-12-23|COLLECT COD|RAIL|he instructi| +8363|6292|6293|3|50|59914.50|0.00|0.00|A|F|1992-12-23|1993-01-04|1992-12-28|COLLECT COD|FOB|express foxes shall have to affix s| +8364|12210|2211|1|50|56110.50|0.07|0.08|R|F|1993-07-21|1993-06-14|1993-08-01|NONE|MAIL|ajole furiously about the enticin| +8364|2929|7930|2|11|20151.12|0.06|0.00|A|F|1993-07-18|1993-06-04|1993-08-12|TAKE BACK RETURN|MAIL|g the pending, bold deposits wake b| +8364|18115|3118|3|28|28927.08|0.09|0.06|A|F|1993-08-31|1993-06-30|1993-09-28|COLLECT COD|RAIL|quickly unusual dolphins are furiously bold| +8365|146442|3985|1|9|13395.96|0.10|0.02|R|F|1992-09-08|1992-09-23|1992-09-17|TAKE BACK RETURN|REG AIR|symptotes boost furiously.| +8366|176612|9130|1|5|8443.05|0.08|0.07|N|O|1996-04-13|1996-05-31|1996-04-22|COLLECT COD|FOB|leep blithely ir| +8366|112197|9731|2|25|30229.75|0.06|0.05|N|O|1996-07-15|1996-05-09|1996-08-11|NONE|SHIP| around the carefully bold deposits. unus| +8366|92618|146|3|18|28990.98|0.10|0.05|N|O|1996-05-27|1996-06-26|1996-06-22|TAKE BACK RETURN|SHIP|refully clo| +8366|21518|9025|4|42|60459.42|0.04|0.04|N|O|1996-05-30|1996-05-02|1996-06-07|COLLECT COD|AIR|y regular dolphins. unusual instructi| +8367|15301|304|1|2|2432.60|0.02|0.07|N|O|1997-09-16|1997-10-17|1997-10-07|TAKE BACK RETURN|AIR|uriously even requests against the ironic | +8367|158810|3841|2|29|54195.49|0.03|0.06|N|O|1997-09-26|1997-09-30|1997-10-17|NONE|SHIP|s instructions cajole furiou| +8367|116658|1681|3|6|10047.90|0.00|0.05|N|O|1997-08-21|1997-10-08|1997-09-03|COLLECT COD|TRUCK|uests cajole blithe| +8367|54264|9275|4|40|48730.40|0.03|0.07|N|O|1997-11-24|1997-10-17|1997-12-21|COLLECT COD|SHIP|efully regular requests alo| +8392|11398|1399|1|1|1309.39|0.05|0.00|A|F|1992-05-09|1992-07-15|1992-06-04|COLLECT COD|RAIL| asymptotes cajo| +8393|69423|6942|1|12|16709.04|0.07|0.04|N|O|1997-10-19|1997-11-05|1997-11-08|TAKE BACK RETURN|RAIL|ts haggle d| +8393|190447|8005|2|8|12299.52|0.06|0.05|N|O|1997-11-23|1997-10-04|1997-12-20|DELIVER IN PERSON|REG AIR|ounts. pending pinto beans sleep. bo| +8393|33806|1316|3|50|86990.00|0.07|0.06|N|O|1997-12-08|1997-10-24|1997-12-26|COLLECT COD|REG AIR|es. furiously express pinto beans abou| +8393|177413|9931|4|20|29808.20|0.06|0.02|N|O|1997-11-08|1997-10-04|1997-12-03|TAKE BACK RETURN|RAIL|ular instructions haggle furiously. fluf| +8393|171734|6769|5|1|1805.73|0.05|0.07|N|O|1997-10-26|1997-09-21|1997-11-10|COLLECT COD|SHIP|l requests. pending, regular ideas | +8393|118842|3865|6|31|57686.04|0.02|0.06|N|O|1997-12-11|1997-10-25|1997-12-21|DELIVER IN PERSON|FOB|y final dolphins | +8393|173016|3017|7|11|11979.11|0.08|0.01|N|O|1997-11-13|1997-09-20|1997-12-06|TAKE BACK RETURN|SHIP| regular pinto beans nag furiou| +8394|78791|3806|1|5|8848.95|0.01|0.02|A|F|1994-01-20|1993-12-15|1994-02-19|COLLECT COD|TRUCK| carefully bold | +8394|35651|658|2|14|22213.10|0.07|0.06|R|F|1994-01-18|1993-12-20|1994-01-31|NONE|MAIL|furiously even c| +8394|175084|2636|3|29|33613.32|0.01|0.06|R|F|1994-02-23|1993-12-21|1994-03-04|COLLECT COD|MAIL|fully ironic platelets. quickly regular | +8394|22021|9528|4|39|36777.78|0.04|0.01|R|F|1993-12-25|1993-12-23|1994-01-09|TAKE BACK RETURN|SHIP|iously unusual, sp| +8394|103664|8685|5|49|81715.34|0.10|0.08|R|F|1993-11-15|1993-12-13|1993-12-15|COLLECT COD|AIR|instructions. fluffily final instructions | +8394|66212|8719|6|31|36524.51|0.01|0.02|R|F|1994-02-17|1994-01-21|1994-02-18|COLLECT COD|FOB|ake carefully along the | +8395|47540|2549|1|22|32725.88|0.10|0.00|A|F|1992-05-07|1992-04-24|1992-06-04|COLLECT COD|FOB|s. carefully ironic deposits c| +8395|3413|914|2|34|44757.94|0.07|0.03|A|F|1992-05-09|1992-03-22|1992-06-07|NONE|MAIL|s after the final deposits cajole | +8395|147499|14|3|45|69592.05|0.01|0.00|A|F|1992-03-09|1992-05-06|1992-03-29|TAKE BACK RETURN|RAIL|final pinto beans. even deposi| +8395|6946|1947|4|21|38911.74|0.00|0.07|R|F|1992-04-09|1992-04-05|1992-05-04|TAKE BACK RETURN|REG AIR|dolites. final packages d| +8395|139193|4220|5|23|28340.37|0.05|0.00|R|F|1992-06-20|1992-04-17|1992-06-27|TAKE BACK RETURN|MAIL|sy foxes dazz| +8395|16006|6007|6|49|45178.00|0.04|0.00|R|F|1992-05-14|1992-04-24|1992-05-17|NONE|RAIL|oxes. slyly regular ideas nag quickly. care| +8395|1549|1550|7|16|23208.64|0.07|0.08|R|F|1992-04-03|1992-05-15|1992-04-20|TAKE BACK RETURN|RAIL|le. specia| +8396|19379|1881|1|25|32459.25|0.07|0.03|N|O|1996-11-05|1996-11-10|1996-11-17|NONE|AIR|leep blithely according to | +8396|89245|1754|2|14|17279.36|0.03|0.06|N|O|1996-10-10|1996-12-14|1996-10-20|COLLECT COD|RAIL|dolphins boost depo| +8396|133095|3096|3|6|6768.54|0.04|0.06|N|O|1996-10-31|1996-11-15|1996-11-23|COLLECT COD|RAIL|accounts! | +8397|174223|1775|1|35|45402.70|0.06|0.01|R|F|1993-08-28|1993-10-13|1993-09-17|NONE|AIR|unusual accounts use slyly silent foxes| +8397|158043|8044|2|48|52849.92|0.06|0.01|R|F|1993-11-29|1993-10-17|1993-12-29|DELIVER IN PERSON|AIR|ly regular accounts against the bold, | +8397|12479|2480|3|23|32003.81|0.08|0.01|R|F|1993-12-11|1993-11-14|1993-12-19|DELIVER IN PERSON|FOB|? pending de| +8397|123178|8203|4|16|19218.72|0.00|0.01|A|F|1993-12-13|1993-10-02|1994-01-03|COLLECT COD|AIR|y final packages integrate about| +8397|51184|6195|5|42|47677.56|0.08|0.01|A|F|1993-08-26|1993-10-18|1993-09-14|DELIVER IN PERSON|FOB| carefully final requests use furiously | +8397|40834|3339|6|35|62119.05|0.04|0.01|A|F|1993-09-22|1993-10-17|1993-10-03|TAKE BACK RETURN|TRUCK|ng the fin| +8397|91903|4413|7|1|1894.90|0.07|0.08|A|F|1993-12-11|1993-10-18|1993-12-22|DELIVER IN PERSON|SHIP| unusual pin| +8398|197098|2137|1|14|16731.26|0.04|0.02|N|O|1997-02-21|1997-03-01|1997-03-11|DELIVER IN PERSON|TRUCK|ing requests? blithel| +8398|21238|3741|2|16|18547.68|0.05|0.01|N|O|1997-03-28|1997-03-15|1997-04-07|TAKE BACK RETURN|FOB|ronic pinto beans unwind fluffil| +8399|125224|249|1|9|11242.98|0.02|0.05|N|O|1995-08-08|1995-08-18|1995-08-26|DELIVER IN PERSON|RAIL|ly blithe tithes. quickly even theodo| +8424|76201|6202|1|41|48265.20|0.06|0.04|N|F|1995-06-06|1995-05-27|1995-06-27|DELIVER IN PERSON|FOB|even theodolites affix slyly pendi| +8424|104574|2105|2|44|69457.08|0.05|0.07|N|O|1995-08-13|1995-06-07|1995-08-21|TAKE BACK RETURN|FOB|sts are quickly. close deposits after the| +8424|170116|2634|3|28|33211.08|0.10|0.06|N|O|1995-07-28|1995-06-07|1995-08-21|TAKE BACK RETURN|MAIL| platelets sleep. final| +8424|139261|6801|4|29|37707.54|0.05|0.02|R|F|1995-04-26|1995-07-13|1995-05-02|NONE|MAIL|ss accounts wake after the re| +8424|153752|6268|5|39|70424.25|0.07|0.08|A|F|1995-05-12|1995-05-21|1995-05-27|TAKE BACK RETURN|TRUCK|eodolites. furiously pen| +8424|97039|4567|6|30|31080.90|0.03|0.02|A|F|1995-05-05|1995-05-28|1995-05-21|TAKE BACK RETURN|RAIL|sits above the thin deposits use fluffily | +8425|18333|3336|1|18|22523.94|0.10|0.08|R|F|1993-10-07|1993-08-11|1993-10-31|NONE|RAIL|ely across the blithely final dependencie| +8425|117806|318|2|32|58361.60|0.08|0.03|A|F|1993-09-30|1993-07-15|1993-10-05|DELIVER IN PERSON|AIR|atelets. accounts across the even, unusua| +8425|163128|677|3|4|4764.48|0.02|0.02|A|F|1993-09-08|1993-08-31|1993-10-01|TAKE BACK RETURN|TRUCK|lar foxes affix carefully after the ironic| +8425|85539|5540|4|48|73177.44|0.08|0.06|A|F|1993-10-07|1993-08-30|1993-11-04|DELIVER IN PERSON|REG AIR|uffily bold packages sleep fluffily a| +8425|53380|5886|5|48|64002.24|0.08|0.04|A|F|1993-10-07|1993-08-25|1993-10-22|TAKE BACK RETURN|FOB| blithely final platelet| +8425|143028|8057|6|42|44982.84|0.08|0.03|A|F|1993-06-20|1993-07-10|1993-07-07|TAKE BACK RETURN|MAIL|ly ironic ideas nag fu| +8425|58462|5978|7|13|18465.98|0.02|0.00|A|F|1993-07-22|1993-08-31|1993-08-09|COLLECT COD|TRUCK| slyly dogged dependencies. foxes acco| +8426|158954|1470|1|7|14090.65|0.07|0.01|N|O|1995-09-09|1995-08-23|1995-09-17|NONE|TRUCK|cuses! quiet, bold accounts sleep sometimes| +8426|136502|4042|2|35|53847.50|0.01|0.04|N|O|1995-09-05|1995-07-11|1995-09-30|TAKE BACK RETURN|FOB|y regular packages. foxes engage quick| +8426|180825|826|3|50|95291.00|0.05|0.05|N|O|1995-08-29|1995-06-30|1995-09-17|NONE|TRUCK|e express theodol| +8426|116437|8949|4|4|5813.72|0.05|0.04|N|O|1995-09-21|1995-08-13|1995-10-02|DELIVER IN PERSON|TRUCK|tions. silent instructions about the ex| +8427|132742|7769|1|11|19522.14|0.07|0.01|N|O|1996-12-31|1996-11-10|1997-01-05|DELIVER IN PERSON|RAIL|deas wake after | +8427|182240|2241|2|39|51567.36|0.09|0.06|N|O|1996-11-20|1996-10-21|1996-12-18|COLLECT COD|MAIL|sual requests. pinto beans are carefully.| +8427|106929|4460|3|18|34846.56|0.07|0.02|N|O|1996-12-04|1996-10-19|1996-12-31|DELIVER IN PERSON|REG AIR|y even pac| +8427|146281|1310|4|25|33182.00|0.03|0.06|N|O|1997-01-02|1996-11-05|1997-01-05|COLLECT COD|RAIL|s. ironic pinto beans about the| +8427|143285|8314|5|2|2656.56|0.10|0.04|N|O|1996-12-14|1996-11-17|1997-01-02|TAKE BACK RETURN|MAIL|ole alongside of the s| +8427|190079|5118|6|23|26888.61|0.03|0.05|N|O|1996-11-15|1996-11-02|1996-12-05|NONE|MAIL|ged instructio| +8428|182787|5306|1|15|28046.70|0.00|0.05|R|F|1995-03-10|1995-04-09|1995-03-23|NONE|REG AIR|y final requests. quickly even deposits | +8428|100900|8431|2|16|30414.40|0.06|0.01|A|F|1995-03-13|1995-02-18|1995-03-20|DELIVER IN PERSON|MAIL|cial requests wake bravely dolph| +8428|15831|834|3|3|5240.49|0.00|0.03|A|F|1995-03-31|1995-03-04|1995-04-08|DELIVER IN PERSON|FOB|s. final foxes | +8429|25077|5078|1|36|36074.52|0.02|0.01|N|O|1996-05-17|1996-06-07|1996-06-03|TAKE BACK RETURN|SHIP|ep slyly deposits. q| +8429|54146|1662|2|4|4400.56|0.04|0.00|N|O|1996-07-19|1996-05-31|1996-07-22|NONE|SHIP|t. ironic accounts use| +8429|16998|2001|3|12|22979.88|0.06|0.05|N|O|1996-06-23|1996-06-23|1996-07-03|DELIVER IN PERSON|REG AIR|ular pinto | +8429|79992|7514|4|10|19719.90|0.01|0.04|N|O|1996-05-03|1996-06-16|1996-05-13|COLLECT COD|REG AIR|os. quickly unusual ideas| +8430|192069|4589|1|3|3483.18|0.02|0.01|N|O|1998-11-01|1998-10-14|1998-11-24|COLLECT COD|MAIL|as was foxes? final accounts | +8430|87843|2860|2|15|27462.60|0.09|0.01|N|O|1998-09-09|1998-10-20|1998-10-08|NONE|SHIP| final deposits. regular, even water| +8430|168271|788|3|25|33481.75|0.07|0.05|N|O|1998-10-12|1998-09-28|1998-10-31|DELIVER IN PERSON|RAIL|eans. ideas around the blithely fi| +8430|129158|9159|4|42|49860.30|0.10|0.01|N|O|1998-07-31|1998-10-07|1998-08-09|NONE|MAIL|blithely final | +8430|142534|5049|5|25|39413.25|0.01|0.06|N|O|1998-11-23|1998-09-28|1998-12-19|NONE|MAIL|nic, final fox| +8430|157603|2634|6|7|11624.20|0.09|0.03|N|O|1998-08-12|1998-09-07|1998-08-25|DELIVER IN PERSON|MAIL|ons. request| +8430|29329|6836|7|45|56624.40|0.06|0.00|N|O|1998-11-17|1998-10-17|1998-12-05|TAKE BACK RETURN|TRUCK|ular packages. even, final packages| +8431|130438|439|1|36|52863.48|0.10|0.01|N|O|1997-10-17|1997-11-09|1997-10-22|DELIVER IN PERSON|AIR|t final theodolites. special foxes ab| +8431|67353|9860|2|18|23766.30|0.06|0.05|N|O|1997-12-18|1997-12-21|1998-01-16|DELIVER IN PERSON|RAIL|foxes sleep. quickly iro| +8431|199722|4761|3|20|36434.40|0.10|0.04|N|O|1997-12-27|1997-12-02|1998-01-21|TAKE BACK RETURN|AIR|ronic warhorses wake blithely. carefully| +8431|115573|596|4|32|50834.24|0.02|0.07|N|O|1997-12-21|1998-01-01|1997-12-29|TAKE BACK RETURN|FOB|jole quickly sl| +8431|19827|2329|5|25|43670.50|0.02|0.03|N|O|1997-11-03|1997-11-10|1997-11-09|NONE|AIR|ual theodolites. | +8431|16912|9414|6|9|16460.19|0.03|0.00|N|O|1997-12-30|1997-12-08|1998-01-08|DELIVER IN PERSON|AIR|ding accounts since the | +8456|60097|5110|1|1|1057.09|0.07|0.01|A|F|1992-08-09|1992-08-03|1992-09-08|COLLECT COD|RAIL|ve special, special foxes. fl| +8456|48987|6500|2|49|94863.02|0.00|0.00|A|F|1992-07-26|1992-07-03|1992-08-15|TAKE BACK RETURN|TRUCK|packages a| +8456|117824|336|3|12|22101.84|0.02|0.08|R|F|1992-06-01|1992-07-23|1992-06-25|COLLECT COD|AIR|lyly silent platelets! re| +8457|143114|3115|1|41|47441.51|0.09|0.07|N|O|1998-09-01|1998-08-13|1998-09-27|DELIVER IN PERSON|REG AIR| deposits affix blithely unusual depos| +8457|111684|1685|2|46|78001.28|0.07|0.03|N|O|1998-11-02|1998-10-01|1998-11-18|TAKE BACK RETURN|REG AIR|ven accounts haggle acros| +8457|63763|3764|3|42|72523.92|0.08|0.07|N|O|1998-08-04|1998-10-03|1998-08-29|TAKE BACK RETURN|FOB|. silent accounts cajo| +8457|48422|3431|4|39|53446.38|0.09|0.01|N|O|1998-08-20|1998-09-05|1998-09-01|COLLECT COD|MAIL|yly express ideas use blithely blithely | +8458|186052|1089|1|13|14794.65|0.09|0.03|R|F|1994-04-29|1994-06-25|1994-05-16|NONE|REG AIR|its are close| +8458|166419|6420|2|48|71299.68|0.04|0.04|R|F|1994-07-02|1994-05-12|1994-07-07|DELIVER IN PERSON|FOB| special asy| +8458|191407|1408|3|50|74920.00|0.07|0.03|R|F|1994-05-29|1994-06-13|1994-06-01|TAKE BACK RETURN|REG AIR| carefully regular deposits. furiously pe| +8459|36363|6364|1|49|63668.64|0.01|0.05|N|O|1997-02-06|1997-03-06|1997-02-21|COLLECT COD|AIR| theodolites| +8459|148034|549|2|11|11902.33|0.00|0.01|N|O|1997-03-13|1997-03-25|1997-04-09|TAKE BACK RETURN|AIR|. furiously reg| +8460|82870|2871|1|16|29645.92|0.02|0.03|A|F|1994-10-14|1994-11-13|1994-10-29|TAKE BACK RETURN|SHIP|above the furiously special deposits. fin| +8460|190615|5654|2|30|51168.30|0.02|0.07|A|F|1994-10-21|1994-12-03|1994-11-20|DELIVER IN PERSON|MAIL|ely. carefully express accounts nag slyly| +8460|57257|2268|3|13|15785.25|0.04|0.05|R|F|1994-10-27|1994-11-14|1994-10-29|NONE|RAIL|ing to the regul| +8460|107709|7710|4|31|53217.70|0.05|0.03|R|F|1994-10-03|1994-11-03|1994-10-19|TAKE BACK RETURN|TRUCK|ole across the slyly express pin| +8460|54495|4496|5|50|72474.50|0.05|0.07|A|F|1994-10-17|1994-10-28|1994-10-25|DELIVER IN PERSON|RAIL|old dinos cajole furiously. fluffily even p| +8461|57602|108|1|16|24953.60|0.05|0.01|R|F|1993-07-25|1993-07-02|1993-08-19|NONE|SHIP|ress grouches a| +8461|107850|7851|2|25|46446.25|0.09|0.05|R|F|1993-07-04|1993-06-26|1993-07-07|COLLECT COD|RAIL|riously pending deposits boost slyly pendi| +8461|24979|4980|3|6|11423.82|0.05|0.04|R|F|1993-08-04|1993-07-09|1993-09-01|COLLECT COD|MAIL|bits! furiously ironic requests | +8461|8547|3548|4|37|53854.98|0.03|0.05|R|F|1993-05-21|1993-06-23|1993-05-28|NONE|RAIL|furiously regular deposits according to th| +8461|34435|9442|5|47|64363.21|0.01|0.03|A|F|1993-07-22|1993-06-23|1993-07-26|TAKE BACK RETURN|SHIP|pending, even pinto beans dazzle| +8461|135889|5890|6|41|78920.08|0.00|0.05|R|F|1993-06-20|1993-06-17|1993-07-14|DELIVER IN PERSON|MAIL|g instructions haggle furiously a| +8461|86340|8849|7|40|53053.60|0.04|0.05|A|F|1993-05-30|1993-06-13|1993-06-24|TAKE BACK RETURN|MAIL|l, ironic deposits | +8462|102962|493|1|6|11789.76|0.07|0.06|N|O|1995-12-04|1995-10-12|1996-01-03|DELIVER IN PERSON|RAIL|y final courts | +8462|79493|2001|2|20|29449.80|0.07|0.01|N|O|1995-11-06|1995-11-04|1995-11-17|TAKE BACK RETURN|SHIP|reach fluffily special | +8463|105197|5198|1|32|38470.08|0.01|0.00|N|O|1997-03-07|1997-04-01|1997-03-22|NONE|AIR|xes. deposits cajo| +8463|30374|7884|2|12|15652.44|0.10|0.01|N|O|1997-02-18|1997-03-24|1997-03-09|DELIVER IN PERSON|FOB|platelets? r| +8463|80934|935|3|36|68937.48|0.09|0.00|N|O|1997-03-06|1997-03-16|1997-04-01|COLLECT COD|FOB|s. courts play. asymptotes a| +8463|42199|4704|4|33|37659.27|0.02|0.08|N|O|1997-04-10|1997-03-17|1997-04-19|TAKE BACK RETURN|FOB|he carefully unusual asymptotes. | +8463|36090|1097|5|7|7182.63|0.06|0.07|N|O|1997-02-25|1997-03-31|1997-03-22|COLLECT COD|MAIL|ding, pending| +8463|164169|1718|6|10|12331.60|0.08|0.02|N|O|1997-04-13|1997-04-10|1997-04-18|DELIVER IN PERSON|FOB|ake careful| +8488|138571|1085|1|8|12876.56|0.03|0.01|N|O|1998-02-14|1998-01-06|1998-03-06|COLLECT COD|RAIL|fluffily foxes. ex| +8488|147584|7585|2|48|78315.84|0.08|0.06|N|O|1997-12-19|1998-01-18|1998-01-05|COLLECT COD|FOB|nding idea| +8488|39656|9657|3|21|33508.65|0.06|0.01|N|O|1997-12-31|1997-12-30|1998-01-01|NONE|AIR|ckey players. even deposits above the busy| +8488|83459|984|4|36|51928.20|0.07|0.05|N|O|1997-12-06|1997-12-24|1997-12-30|NONE|AIR|iously slyly ironic reques| +8488|86376|3901|5|7|9536.59|0.05|0.00|N|O|1998-02-19|1998-02-01|1998-03-09|NONE|TRUCK|tain? furiously ironic requests affix ir| +8489|152021|4537|1|32|34336.64|0.03|0.07|A|F|1994-10-03|1994-09-22|1994-10-13|NONE|SHIP| special deposi| +8489|5220|7721|2|17|19128.74|0.04|0.00|A|F|1994-10-25|1994-08-18|1994-10-29|TAKE BACK RETURN|MAIL|ular theodolites are. deposits alongside| +8490|170039|40|1|16|17744.48|0.04|0.05|N|O|1997-04-10|1997-03-11|1997-04-12|NONE|FOB|inal attainm| +8490|45262|2775|2|27|32596.02|0.10|0.03|N|O|1997-04-22|1997-04-24|1997-05-20|DELIVER IN PERSON|SHIP|ind blithely. slyly| +8491|81555|9080|1|6|9219.30|0.09|0.08|R|F|1995-01-06|1995-01-29|1995-02-02|TAKE BACK RETURN|TRUCK|e quickly bold foxes| +8491|79436|9437|2|38|53786.34|0.02|0.08|R|F|1994-12-02|1994-12-08|1994-12-30|NONE|AIR| haggle furiously.| +8491|72513|7528|3|36|53478.36|0.01|0.08|A|F|1994-11-29|1994-12-16|1994-12-21|DELIVER IN PERSON|AIR|sely even packages. ironic, blithe instruc| +8491|115121|5122|4|17|19314.04|0.02|0.04|R|F|1994-12-15|1995-01-13|1995-01-02|DELIVER IN PERSON|RAIL|e slyly above| +8491|38573|1077|5|1|1511.57|0.08|0.08|R|F|1995-03-09|1995-01-15|1995-03-24|TAKE BACK RETURN|TRUCK|gular foxes. final a| +8491|87063|4588|6|30|31501.80|0.08|0.02|R|F|1995-01-17|1994-12-10|1995-01-30|COLLECT COD|TRUCK|ccounts are dar| +8492|83386|5895|1|28|38342.64|0.01|0.02|N|O|1995-10-11|1995-11-08|1995-10-16|DELIVER IN PERSON|SHIP|latelets-- furiously express pa| +8492|55237|5238|2|8|9537.84|0.08|0.06|N|O|1995-09-30|1995-11-11|1995-10-20|COLLECT COD|TRUCK|wake carefully regu| +8492|158044|560|3|25|27551.00|0.06|0.06|N|O|1995-12-15|1995-11-29|1995-12-16|NONE|RAIL| against the s| +8492|44664|4665|4|34|54694.44|0.09|0.04|N|O|1995-09-13|1995-10-11|1995-10-03|DELIVER IN PERSON|MAIL| ideas. slyly pending requests haggle f| +8492|59178|9179|5|32|36389.44|0.06|0.02|N|O|1995-10-17|1995-10-19|1995-11-05|DELIVER IN PERSON|TRUCK|y silent ideas. fluffily u| +8492|2511|2512|6|9|12721.59|0.03|0.01|N|O|1995-10-03|1995-11-28|1995-11-02|NONE|RAIL|sits. platelets sleep carefully. blithely| +8493|43890|1403|1|43|78857.27|0.03|0.00|R|F|1992-02-22|1992-04-20|1992-03-06|COLLECT COD|SHIP|n packages c| +8493|44856|2369|2|21|37817.85|0.09|0.00|R|F|1992-05-30|1992-04-02|1992-06-03|TAKE BACK RETURN|SHIP|he carefully ironic in| +8494|100874|8405|1|48|89993.76|0.04|0.01|N|O|1997-06-15|1997-05-19|1997-07-11|DELIVER IN PERSON|TRUCK|blate slyly among the even foxes.| +8494|187113|4668|2|25|30002.75|0.01|0.08|N|O|1997-06-04|1997-04-29|1997-06-25|COLLECT COD|AIR|s. ironic, | +8494|199294|6852|3|33|45978.57|0.06|0.00|N|O|1997-05-26|1997-05-11|1997-05-31|COLLECT COD|AIR|ully along | +8494|128572|1085|4|13|20807.41|0.10|0.03|N|O|1997-04-03|1997-05-07|1997-04-29|DELIVER IN PERSON|RAIL|y. asymptotes against the expres| +8494|106056|1077|5|15|15930.75|0.00|0.01|N|O|1997-06-10|1997-05-26|1997-06-25|TAKE BACK RETURN|SHIP|ar packages c| +8495|15932|3436|1|39|72069.27|0.04|0.02|R|F|1995-05-12|1995-07-10|1995-06-01|DELIVER IN PERSON|MAIL|wake. slyly fi| +8495|158219|8220|2|42|53642.82|0.02|0.04|N|O|1995-07-20|1995-06-18|1995-07-30|COLLECT COD|AIR|e slyly express accounts. silent,| +8495|173896|6414|3|41|80765.49|0.05|0.08|N|F|1995-06-02|1995-07-13|1995-06-30|COLLECT COD|SHIP|xcuses cajole slyl| +8495|54219|1735|4|13|15251.73|0.03|0.00|N|O|1995-06-25|1995-06-02|1995-07-17|DELIVER IN PERSON|FOB|sly regular hockey players. furiously pe| +8495|46807|9312|5|45|78921.00|0.09|0.02|N|O|1995-07-01|1995-07-04|1995-07-24|COLLECT COD|MAIL|nts. fluffily| +8495|80793|5810|6|23|40797.17|0.01|0.05|N|O|1995-07-12|1995-06-12|1995-08-06|TAKE BACK RETURN|RAIL|s. regular asymptotes nag. careful| +8495|73760|3761|7|31|53746.56|0.09|0.03|N|O|1995-07-14|1995-06-04|1995-07-15|DELIVER IN PERSON|TRUCK|nts. brave, final accou| +8520|76029|8537|1|37|37185.74|0.07|0.05|R|F|1994-09-13|1994-10-20|1994-10-07|COLLECT COD|MAIL|ages along the ironic theodolit| +8520|14750|9753|2|42|69919.50|0.10|0.05|A|F|1994-11-13|1994-11-06|1994-12-01|NONE|REG AIR|d pinto beans. ca| +8520|94147|9166|3|31|35375.34|0.09|0.04|R|F|1994-10-07|1994-09-23|1994-10-10|DELIVER IN PERSON|SHIP|ven deposits. blithely blithe de| +8520|118883|6417|4|29|55154.52|0.00|0.00|R|F|1994-08-26|1994-09-25|1994-09-13|NONE|SHIP|ffily final foxes nag furiously sp| +8520|61740|6753|5|29|49350.46|0.00|0.00|R|F|1994-11-13|1994-10-15|1994-12-11|DELIVER IN PERSON|FOB|beans wake! regular | +8520|56763|4279|6|26|44713.76|0.06|0.01|A|F|1994-09-17|1994-10-23|1994-10-04|NONE|TRUCK|riously silent accounts | +8520|6246|6247|7|48|55307.52|0.10|0.01|A|F|1994-09-11|1994-09-26|1994-09-29|COLLECT COD|SHIP|. carefully even ideas are fu| +8521|170153|2671|1|35|42810.25|0.06|0.02|R|F|1994-05-30|1994-07-27|1994-06-07|NONE|SHIP|ntiments. fu| +8521|152020|7051|2|33|35376.66|0.08|0.04|R|F|1994-06-02|1994-07-29|1994-06-15|COLLECT COD|SHIP|e carefully slyly | +8522|83719|8736|1|23|39162.33|0.03|0.02|N|O|1998-06-25|1998-05-13|1998-06-27|TAKE BACK RETURN|SHIP|carefully regular excuse| +8522|55455|466|2|48|67701.60|0.09|0.02|N|O|1998-06-20|1998-05-27|1998-07-17|DELIVER IN PERSON|SHIP|regular accounts | +8522|22037|2038|3|22|21098.66|0.07|0.03|N|O|1998-06-13|1998-05-14|1998-06-26|DELIVER IN PERSON|FOB|usual, regular depths are slyly. instructi| +8522|175561|3113|4|38|62189.28|0.06|0.04|N|O|1998-07-31|1998-06-07|1998-08-13|COLLECT COD|SHIP|as cajole | +8522|46817|4330|5|31|54678.11|0.02|0.08|N|O|1998-05-06|1998-05-31|1998-05-26|DELIVER IN PERSON|TRUCK|iously special th| +8522|48272|5785|6|26|31727.02|0.00|0.01|N|O|1998-07-22|1998-06-01|1998-07-31|DELIVER IN PERSON|MAIL|tructions. ironic theodolit| +8523|176561|9079|1|29|47489.24|0.06|0.06|A|F|1993-07-11|1993-09-15|1993-07-25|NONE|TRUCK|ly regular pinto beans. fu| +8523|52383|7394|2|6|8012.28|0.04|0.01|R|F|1993-08-10|1993-09-22|1993-08-14|DELIVER IN PERSON|SHIP|hely. furiously ironic braids | +8523|193367|3368|3|26|37969.36|0.09|0.03|A|F|1993-07-28|1993-09-24|1993-08-27|DELIVER IN PERSON|FOB|ges play bold packages. ironic pla| +8523|114095|1629|4|7|7763.63|0.04|0.07|A|F|1993-09-08|1993-08-19|1993-09-09|COLLECT COD|MAIL|uickly bold depos| +8523|188300|8301|5|27|37484.10|0.07|0.02|A|F|1993-11-02|1993-08-30|1993-11-15|COLLECT COD|FOB|mong the ruthlessly | +8523|154385|9416|6|49|70529.62|0.09|0.05|R|F|1993-07-22|1993-09-28|1993-08-08|DELIVER IN PERSON|MAIL|sual deposits| +8523|141753|9296|7|2|3589.50|0.05|0.07|A|F|1993-10-05|1993-09-13|1993-10-19|COLLECT COD|SHIP|lly carefully ironic pinto beans. pa| +8524|37310|2317|1|36|44903.16|0.10|0.02|N|O|1996-09-11|1996-10-14|1996-10-05|TAKE BACK RETURN|RAIL| sleep among the slyly regular | +8524|66378|8885|2|5|6721.85|0.03|0.00|N|O|1996-09-28|1996-10-16|1996-10-05|DELIVER IN PERSON|AIR|ng to the dependencies. i| +8524|198357|877|3|43|62580.05|0.03|0.00|N|O|1996-10-31|1996-09-02|1996-11-25|TAKE BACK RETURN|AIR|ronic accounts. doggedly ironic| +8524|171084|8636|4|32|36962.56|0.01|0.03|N|O|1996-09-19|1996-10-21|1996-10-08|TAKE BACK RETURN|RAIL|yly final package| +8524|1705|9206|5|29|46594.30|0.04|0.02|N|O|1996-10-07|1996-09-08|1996-10-27|TAKE BACK RETURN|FOB|special packages lose furi| +8524|49886|7399|6|26|47732.88|0.09|0.01|N|O|1996-10-19|1996-09-20|1996-11-08|TAKE BACK RETURN|RAIL|regular, even notornis among the even, | +8525|77849|7850|1|36|65766.24|0.00|0.03|R|F|1993-12-19|1994-01-02|1994-01-11|TAKE BACK RETURN|AIR|tes. slyly unu| +8525|192021|9579|2|24|26712.48|0.01|0.04|R|F|1994-03-15|1994-03-01|1994-04-07|DELIVER IN PERSON|MAIL|inal deposits use furiously. q| +8525|86914|4439|3|8|15207.28|0.07|0.06|R|F|1994-01-16|1994-02-22|1994-01-17|NONE|FOB|s sleep. furiously bold notornis h| +8525|159339|6885|4|19|26568.27|0.06|0.06|A|F|1994-02-16|1994-01-13|1994-02-19|TAKE BACK RETURN|REG AIR| bold ideas. reg| +8525|196179|6180|5|43|54832.31|0.03|0.05|R|F|1994-01-30|1994-01-26|1994-02-02|NONE|TRUCK|nusual pinto beans| +8525|172253|9805|6|11|14577.75|0.08|0.03|R|F|1994-02-08|1994-01-15|1994-02-22|COLLECT COD|REG AIR|ole. bold, even deposits detect quickly ac| +8526|159286|9287|1|28|37667.84|0.06|0.01|N|O|1997-06-22|1997-07-28|1997-06-30|NONE|MAIL|ly ironic courts. carefully| +8526|116140|8652|2|36|41621.04|0.03|0.01|N|O|1997-06-18|1997-07-12|1997-07-16|COLLECT COD|TRUCK|lyly after the fu| +8527|156890|4436|1|13|25309.57|0.07|0.00|A|F|1994-12-11|1994-12-21|1994-12-25|NONE|TRUCK|ilent packages x-ra| +8552|8402|5903|1|29|38001.60|0.02|0.01|A|F|1995-04-06|1995-03-09|1995-04-09|NONE|AIR| final, regular dugouts eat carefully| +8552|197449|9969|2|16|24743.04|0.06|0.07|R|F|1995-04-18|1995-02-08|1995-05-01|NONE|FOB|luffily among th| +8552|115265|2799|3|48|61452.48|0.09|0.08|R|F|1995-02-24|1995-02-17|1995-03-15|TAKE BACK RETURN|SHIP|y ironic tithes unwind at the slyly even i| +8552|43267|3268|4|47|56882.22|0.10|0.01|A|F|1995-04-11|1995-03-07|1995-04-15|DELIVER IN PERSON|SHIP|es integrate slyly frays. carefully regula| +8552|182774|7811|5|4|7427.08|0.03|0.01|R|F|1995-01-16|1995-03-03|1995-01-20|DELIVER IN PERSON|MAIL|into beans according | +8552|71234|6249|6|12|14462.76|0.01|0.00|A|F|1995-03-16|1995-03-12|1995-03-27|TAKE BACK RETURN|TRUCK|nts use furiously carefully regular | +8553|65875|5876|1|19|34976.53|0.05|0.00|N|O|1995-11-26|1995-10-26|1995-12-15|TAKE BACK RETURN|MAIL|e the slyly regular theod| +8553|150423|424|2|25|36835.50|0.07|0.02|N|O|1995-09-13|1995-09-21|1995-09-30|NONE|RAIL|riously silent deposits. slyly| +8553|157037|2068|3|23|25162.69|0.09|0.01|N|O|1995-10-11|1995-10-21|1995-10-15|NONE|AIR|onic accounts shall have to sublate furious| +8553|109306|9307|4|32|42089.60|0.08|0.02|N|O|1995-10-20|1995-10-14|1995-10-22|DELIVER IN PERSON|REG AIR| slyly express courts. spe| +8553|91405|6424|5|41|57252.40|0.09|0.03|N|O|1995-10-28|1995-10-07|1995-11-20|TAKE BACK RETURN|TRUCK|. carefully regular instructions might ca| +8554|130022|5049|1|16|16832.32|0.02|0.06|N|O|1997-08-08|1997-07-30|1997-08-17|TAKE BACK RETURN|AIR|gside of the quickly pending| +8554|77324|4846|2|38|49450.16|0.08|0.07|N|O|1997-08-18|1997-06-10|1997-08-21|COLLECT COD|SHIP| pinto beans above| +8554|176388|8906|3|41|60039.58|0.00|0.07|N|O|1997-08-25|1997-07-13|1997-08-26|NONE|AIR|deas nag spe| +8554|138197|8198|4|28|34585.32|0.02|0.04|N|O|1997-08-13|1997-07-07|1997-09-02|TAKE BACK RETURN|TRUCK|ly ironic asymptotes are furiously. furi| +8554|66571|4090|5|30|46127.10|0.01|0.08|N|O|1997-08-12|1997-08-06|1997-08-31|NONE|MAIL|to the even ideas sublate| +8555|116252|6253|1|11|13950.75|0.02|0.06|A|F|1993-11-11|1993-10-20|1993-11-28|NONE|AIR|e sometimes ironic the| +8555|37720|5230|2|9|14919.48|0.07|0.05|R|F|1993-08-30|1993-09-17|1993-09-14|COLLECT COD|RAIL|r the carefully special accounts| +8555|148649|6192|3|41|69603.24|0.07|0.01|R|F|1993-08-18|1993-10-19|1993-08-27|TAKE BACK RETURN|SHIP|g, unusual depen| +8555|130501|502|4|14|21441.00|0.02|0.02|A|F|1993-11-02|1993-09-08|1993-11-27|DELIVER IN PERSON|REG AIR|es haggle furiously above | +8555|121021|6046|5|27|28134.54|0.04|0.02|A|F|1993-10-24|1993-10-30|1993-10-26|DELIVER IN PERSON|AIR|ng the ironic, bold foxes. special | +8555|184755|2310|6|32|58872.00|0.08|0.03|A|F|1993-11-18|1993-09-25|1993-12-05|DELIVER IN PERSON|SHIP|uses. slyly| +8555|162342|9891|7|25|35108.50|0.01|0.04|A|F|1993-10-11|1993-10-09|1993-10-14|TAKE BACK RETURN|MAIL|ructions are carefully. final, unusual d| +8556|70547|3055|1|2|3035.08|0.00|0.05|A|F|1992-11-03|1992-12-04|1992-11-30|TAKE BACK RETURN|RAIL|s. furiously ironic accounts sleep: caref| +8556|83191|5700|2|38|44619.22|0.07|0.04|A|F|1992-12-19|1993-01-10|1992-12-28|DELIVER IN PERSON|FOB| even accounts boos| +8557|114299|4300|1|27|35458.83|0.08|0.05|N|O|1997-01-06|1997-03-07|1997-01-20|NONE|FOB|sts haggle slyly blithely final| +8557|22292|9799|2|12|14571.48|0.06|0.00|N|O|1997-01-13|1997-01-30|1997-02-03|COLLECT COD|REG AIR|le slyly. even pac| +8557|52764|7775|3|32|54936.32|0.03|0.01|N|O|1997-03-16|1997-03-04|1997-03-25|TAKE BACK RETURN|MAIL|le furiously final, regular | +8557|183|5184|4|42|45493.56|0.10|0.04|N|O|1997-04-20|1997-03-08|1997-04-27|TAKE BACK RETURN|MAIL|ly regular foxes among the ironic,| +8557|72995|5503|5|49|96431.51|0.01|0.06|N|O|1997-01-31|1997-02-03|1997-02-22|NONE|REG AIR|uickly blithely even foxes. id| +8557|12671|7674|6|18|28506.06|0.10|0.03|N|O|1997-04-24|1997-02-08|1997-05-08|NONE|SHIP|ng the blithel| +8557|158460|976|7|9|13666.14|0.07|0.07|N|O|1997-01-23|1997-03-13|1997-02-05|TAKE BACK RETURN|TRUCK|quests wake carefully. r| +8558|31430|8940|1|23|31312.89|0.05|0.05|R|F|1994-06-18|1994-06-19|1994-07-02|DELIVER IN PERSON|TRUCK|al packages integrate furi| +8558|31255|1256|2|28|33215.00|0.00|0.03|A|F|1994-09-09|1994-07-11|1994-09-28|COLLECT COD|RAIL|e after the unusual, regular depo| +8559|33419|8426|1|10|13524.10|0.01|0.01|R|F|1995-02-27|1995-02-04|1995-03-15|TAKE BACK RETURN|MAIL| instructions. carefully express dolphins| +8559|64711|7218|2|5|8378.55|0.02|0.07|R|F|1994-12-11|1995-01-30|1995-01-06|NONE|FOB|y regular deposits along the fluffily | +8559|185483|8002|3|38|59602.24|0.03|0.05|A|F|1995-02-20|1995-02-09|1995-02-24|NONE|FOB|tes sleep bravely. slyl| +8559|7825|326|4|48|83175.36|0.07|0.06|R|F|1995-02-10|1995-01-28|1995-02-27|NONE|MAIL|lyly slyly regular| +8584|63563|6070|1|27|41217.12|0.01|0.00|A|F|1994-04-11|1994-05-21|1994-04-18|TAKE BACK RETURN|FOB|arefully alongside of the quick| +8584|98290|8291|2|13|16747.77|0.02|0.08|R|F|1994-05-07|1994-05-16|1994-05-13|NONE|FOB|cajole carefully final, pending packages| +8584|150562|8108|3|1|1612.56|0.04|0.07|R|F|1994-06-20|1994-05-21|1994-07-17|NONE|TRUCK|ully regular instructions are.| +8584|81425|6442|4|15|21096.30|0.10|0.05|R|F|1994-06-08|1994-05-17|1994-07-03|DELIVER IN PERSON|REG AIR|ng ideas. express i| +8584|95773|3301|5|43|76057.11|0.00|0.08|R|F|1994-05-28|1994-05-27|1994-06-18|DELIVER IN PERSON|MAIL|sts. theodolites haggle furiously bold t| +8584|40707|5716|6|41|67555.70|0.05|0.06|R|F|1994-04-23|1994-07-01|1994-05-03|DELIVER IN PERSON|TRUCK|deposits. blit| +8584|153997|6513|7|27|55376.73|0.10|0.07|R|F|1994-05-03|1994-05-31|1994-05-15|TAKE BACK RETURN|FOB| even instructions. bli| +8585|14125|1629|1|32|33251.84|0.00|0.02|N|O|1996-01-22|1996-02-13|1996-01-26|DELIVER IN PERSON|MAIL|l accounts detect furiously. | +8585|182190|7227|2|49|62337.31|0.05|0.04|N|O|1996-03-25|1996-02-28|1996-04-21|DELIVER IN PERSON|AIR|ial theodolites believe doggedly above| +8586|163930|1479|1|1|1993.93|0.07|0.06|A|F|1995-03-09|1995-02-03|1995-03-22|DELIVER IN PERSON|AIR|ress instructions a| +8586|170641|8193|2|50|85582.00|0.10|0.05|R|F|1995-03-11|1995-01-24|1995-04-02|DELIVER IN PERSON|MAIL|ely pending, unusual packages: slyly expre| +8586|160943|8492|3|12|24047.28|0.09|0.06|R|F|1994-12-31|1995-02-01|1995-01-20|TAKE BACK RETURN|SHIP|regular dependencies. bold, bold accounts | +8586|154872|2418|4|47|90562.89|0.08|0.04|A|F|1995-03-15|1995-01-17|1995-03-23|COLLECT COD|FOB|ckages nag slyly. qu| +8587|63488|5995|1|42|60962.16|0.01|0.01|N|O|1997-09-05|1997-08-05|1997-10-04|COLLECT COD|TRUCK|ains against the slyly s| +8587|40774|8287|2|39|66876.03|0.10|0.02|N|O|1997-09-14|1997-07-31|1997-10-12|DELIVER IN PERSON|RAIL|s. carefully regular req| +8588|35734|741|1|25|41743.25|0.04|0.02|N|O|1995-12-03|1995-10-29|1995-12-06|NONE|TRUCK|ular sheaves nag among the pendi| +8588|171851|1852|2|30|57685.50|0.01|0.04|N|O|1996-01-17|1995-11-11|1996-01-20|NONE|SHIP|about the ironic deposit| +8588|92149|7168|3|5|5705.70|0.01|0.02|N|O|1995-12-10|1995-11-03|1995-12-11|COLLECT COD|AIR|usly even accounts integrate carefully a| +8588|132153|7180|4|22|26073.30|0.05|0.01|N|O|1995-12-07|1995-11-26|1995-12-28|COLLECT COD|REG AIR|ing ideas. blithely iron| +8588|80066|7591|5|48|50210.88|0.08|0.07|N|O|1995-10-28|1995-11-23|1995-11-12|NONE|SHIP|y express requests haggle fi| +8588|61853|9372|6|15|27222.75|0.05|0.08|N|O|1995-10-12|1995-12-01|1995-11-10|COLLECT COD|REG AIR|slyly final packages. | +8589|27842|5349|1|49|86722.16|0.09|0.01|N|O|1996-03-25|1996-03-13|1996-04-16|TAKE BACK RETURN|AIR|ess, final a| +8589|126200|6201|2|39|47821.80|0.01|0.01|N|O|1996-03-06|1996-03-27|1996-03-21|COLLECT COD|TRUCK|jole. pending ideas across the carefu| +8589|28918|3923|3|25|46172.75|0.02|0.00|N|O|1996-03-31|1996-04-09|1996-04-28|TAKE BACK RETURN|MAIL|gle careful| +8589|19516|4519|4|19|27274.69|0.01|0.07|N|O|1996-05-31|1996-04-01|1996-06-01|TAKE BACK RETURN|FOB|iously above the | +8589|1674|4175|5|1|1575.67|0.00|0.01|N|O|1996-04-29|1996-03-21|1996-05-23|DELIVER IN PERSON|AIR| the furiously regular pinto beans| +8589|129822|2335|6|29|53702.78|0.08|0.01|N|O|1996-03-05|1996-04-14|1996-03-17|TAKE BACK RETURN|REG AIR|tructions are slyly. deposits sl| +8590|153068|614|1|48|53810.88|0.03|0.05|R|F|1995-03-25|1995-03-14|1995-04-08|COLLECT COD|MAIL|e busily. fluffily ironic | +8591|29412|4417|1|17|22803.97|0.01|0.04|N|O|1997-03-02|1997-03-31|1997-03-25|DELIVER IN PERSON|FOB|hely final request| +8591|126390|1415|2|32|45324.48|0.00|0.03|N|O|1997-04-15|1997-04-01|1997-05-04|DELIVER IN PERSON|RAIL|ular asymptotes nag carefully after t| +8591|31243|1244|3|25|29356.00|0.09|0.07|N|O|1997-06-12|1997-05-02|1997-06-23|TAKE BACK RETURN|RAIL|y final deposits. boldly final ac| +8591|94136|9155|4|47|53116.11|0.10|0.00|N|O|1997-02-19|1997-04-04|1997-03-14|NONE|AIR|cording to the fluffil| +8616|146089|1118|1|21|23836.68|0.05|0.03|N|O|1995-12-01|1995-11-22|1995-12-10|TAKE BACK RETURN|REG AIR|lithely final platelets| +8616|101095|1096|2|9|9864.81|0.05|0.01|N|O|1995-12-10|1995-10-24|1995-12-29|COLLECT COD|FOB| to the quickly bold frays are regular r| +8616|88273|782|3|32|40360.64|0.09|0.00|N|O|1995-11-27|1995-12-06|1995-11-30|DELIVER IN PERSON|TRUCK|according to the blithely | +8616|3147|8148|4|48|50406.72|0.07|0.03|N|O|1995-10-03|1995-10-13|1995-10-04|COLLECT COD|MAIL|? ironic acc| +8616|85886|903|5|25|46797.00|0.09|0.01|N|O|1995-09-16|1995-10-31|1995-10-03|DELIVER IN PERSON|FOB|nic deposit| +8616|81293|3802|6|18|22937.22|0.03|0.02|N|O|1995-11-17|1995-11-15|1995-12-03|NONE|SHIP|ideas. slyly regular dolphin| +8616|88506|1015|7|4|5978.00|0.00|0.04|N|O|1995-12-27|1995-12-11|1996-01-18|DELIVER IN PERSON|FOB|ng to the furi| +8617|117240|7241|1|27|33945.48|0.09|0.03|N|O|1996-02-28|1996-02-17|1996-03-23|NONE|FOB|tructions. slowl| +8617|38341|8342|2|13|16631.42|0.10|0.08|N|O|1996-02-16|1996-01-15|1996-03-12|DELIVER IN PERSON|REG AIR|yly final deposits use across the caref| +8617|192608|2609|3|17|28910.20|0.10|0.02|N|O|1996-03-27|1996-01-15|1996-04-05|COLLECT COD|RAIL|jole fluffily| +8617|157883|5429|4|10|19408.80|0.06|0.00|N|O|1995-12-31|1996-02-01|1996-01-02|DELIVER IN PERSON|MAIL|aggle across th| +8617|136945|6946|5|46|91169.24|0.01|0.04|N|O|1996-02-29|1996-02-05|1996-03-19|TAKE BACK RETURN|TRUCK|into beans according to the slyly pe| +8617|30771|5778|6|23|39140.71|0.09|0.00|N|O|1996-01-24|1996-01-31|1996-02-11|TAKE BACK RETURN|REG AIR|riously bli| +8617|157891|5437|7|32|62364.48|0.00|0.04|N|O|1996-03-14|1996-02-08|1996-03-29|NONE|MAIL| regular accounts are carefully. furi| +8618|64625|7132|1|45|71532.90|0.04|0.00|N|O|1997-08-05|1997-05-10|1997-08-12|NONE|REG AIR|ss courts. furious| +8618|138247|5787|2|7|8996.68|0.07|0.01|N|O|1997-05-19|1997-05-18|1997-06-11|DELIVER IN PERSON|REG AIR|l pinto beans eat| +8618|103117|8138|3|10|11201.10|0.04|0.05|N|O|1997-05-08|1997-06-19|1997-06-03|TAKE BACK RETURN|REG AIR|onic requests cajole carefully dependenc| +8618|82877|5386|4|15|27898.05|0.06|0.03|N|O|1997-06-16|1997-06-25|1997-06-18|TAKE BACK RETURN|FOB|ironic deposits. quickly ironic requests s| +8618|102958|2959|5|16|31375.20|0.01|0.08|N|O|1997-04-27|1997-06-07|1997-05-27|DELIVER IN PERSON|SHIP|ns integrate carefully above the slyly pe| +8618|3283|784|6|17|20166.76|0.05|0.02|N|O|1997-07-18|1997-05-27|1997-08-12|COLLECT COD|MAIL|odolites. furiously ironic requests daz| +8618|168746|6295|7|40|72589.60|0.07|0.02|N|O|1997-05-16|1997-05-18|1997-05-30|COLLECT COD|AIR|xes. accounts use. slyly sly accounts ha| +8619|101949|6970|1|34|66331.96|0.05|0.08|R|F|1995-03-17|1995-02-19|1995-04-08|COLLECT COD|FOB|e slyly at the packages| +8619|44848|4849|2|11|19721.24|0.05|0.08|R|F|1995-01-26|1995-02-09|1995-02-17|NONE|RAIL|eans cajole carefully fluffi| +8619|148650|8651|3|42|71343.30|0.03|0.07|A|F|1994-12-07|1995-01-27|1994-12-11|DELIVER IN PERSON|FOB|quests haggle blithely unusual sentiments.| +8619|154841|4842|4|28|53083.52|0.04|0.00|R|F|1995-01-23|1995-02-26|1995-02-04|TAKE BACK RETURN|SHIP|ly. even deposits are bli| +8620|176656|1691|1|5|8663.25|0.10|0.00|N|O|1996-06-03|1996-08-09|1996-06-06|DELIVER IN PERSON|MAIL|y special requests about | +8620|46261|8766|2|13|15694.38|0.07|0.05|N|O|1996-08-25|1996-08-09|1996-09-06|TAKE BACK RETURN|AIR|structions sleep blithely. even p| +8620|95304|2832|3|42|54570.60|0.09|0.07|N|O|1996-09-06|1996-06-27|1996-09-18|DELIVER IN PERSON|TRUCK| beans haggle final, unusual depos| +8620|164866|2415|4|50|96543.00|0.05|0.08|N|O|1996-07-16|1996-08-03|1996-08-15|COLLECT COD|REG AIR|refully final foxes detect| +8620|89187|9188|5|37|43518.66|0.10|0.08|N|O|1996-07-11|1996-08-09|1996-07-15|DELIVER IN PERSON|MAIL|n requests. platel| +8621|99217|4236|1|31|37702.51|0.00|0.02|N|O|1997-01-26|1997-02-04|1997-02-24|TAKE BACK RETURN|FOB|al requests boo| +8621|124518|9543|2|11|16967.61|0.10|0.00|N|O|1997-02-14|1997-03-10|1997-02-27|TAKE BACK RETURN|AIR|ess pinto beans boost s| +8621|172028|7063|3|50|55001.00|0.09|0.01|N|O|1997-02-04|1997-03-01|1997-02-23|NONE|FOB|le slyly. pac| +8621|65868|3387|4|46|84357.56|0.03|0.05|N|O|1997-03-14|1997-02-14|1997-03-31|TAKE BACK RETURN|MAIL|dly even packages| +8621|40596|8109|5|29|44561.11|0.03|0.02|N|O|1997-04-11|1997-02-10|1997-05-02|DELIVER IN PERSON|SHIP| the bold | +8622|54104|6610|1|24|25394.40|0.00|0.08|N|O|1995-09-27|1995-08-29|1995-10-21|NONE|MAIL| haggle. bold acco| +8622|110614|8148|2|27|43864.47|0.05|0.07|N|O|1995-10-07|1995-07-25|1995-10-23|TAKE BACK RETURN|SHIP| blithely along th| +8622|73848|8863|3|46|83804.64|0.02|0.00|N|O|1995-10-07|1995-09-14|1995-10-22|DELIVER IN PERSON|MAIL| unusual deposits. bold, special th| +8622|152923|7954|4|40|79036.80|0.08|0.06|N|O|1995-07-01|1995-08-14|1995-07-19|NONE|REG AIR|ic accounts affix. unusual depo| +8622|168752|1269|5|30|54622.50|0.09|0.02|N|O|1995-06-30|1995-08-09|1995-07-21|NONE|FOB| courts about the blithe requests doze fin| +8622|9925|2426|6|30|55047.60|0.02|0.08|N|O|1995-09-04|1995-09-01|1995-10-04|DELIVER IN PERSON|REG AIR|carefully even | +8623|181917|6954|1|28|55969.48|0.06|0.08|N|O|1997-08-28|1997-07-26|1997-09-24|COLLECT COD|REG AIR|nic instructions. bli| +8648|92373|2374|1|22|30038.14|0.10|0.01|A|F|1994-07-08|1994-08-13|1994-07-31|COLLECT COD|RAIL|lites around the quick, perm| +8648|112928|5440|2|7|13586.44|0.04|0.00|A|F|1994-07-19|1994-07-21|1994-07-31|DELIVER IN PERSON|RAIL|ke quickly slyly quick packages. | +8648|165223|7740|3|29|37358.38|0.10|0.01|R|F|1994-09-10|1994-07-27|1994-09-13|DELIVER IN PERSON|SHIP|lar requests are against the slyly | +8649|17390|9892|1|46|60139.94|0.00|0.01|A|F|1992-08-11|1992-10-15|1992-09-07|DELIVER IN PERSON|SHIP|nently pending| +8649|73125|647|2|9|9883.08|0.06|0.03|R|F|1992-08-12|1992-09-03|1992-09-09|TAKE BACK RETURN|MAIL|dinos slee| +8649|196280|1319|3|7|9633.96|0.01|0.08|A|F|1992-08-30|1992-08-19|1992-09-03|TAKE BACK RETURN|RAIL| to the final ideas. | +8650|147904|7905|1|20|39038.00|0.06|0.03|R|F|1995-05-31|1995-05-27|1995-06-15|TAKE BACK RETURN|FOB|thely above the carefully pending hockey| +8650|9811|4812|2|19|32695.39|0.00|0.02|A|F|1995-05-25|1995-05-26|1995-06-15|COLLECT COD|AIR|ckages doze furiousl| +8651|23762|6265|1|10|16857.60|0.01|0.06|R|F|1993-06-10|1993-09-01|1993-06-22|COLLECT COD|TRUCK|uickly special requ| +8651|154860|7376|2|29|55530.94|0.06|0.04|A|F|1993-07-15|1993-08-04|1993-08-02|NONE|SHIP|yly silent dependencies after the b| +8651|117077|9589|3|41|44856.87|0.04|0.02|R|F|1993-09-21|1993-07-07|1993-09-23|DELIVER IN PERSON|TRUCK|l asymptotes. carefull| +8651|105253|7764|4|40|50330.00|0.08|0.08|R|F|1993-06-27|1993-07-18|1993-07-23|COLLECT COD|AIR| Tiresias cajole carefully blit| +8652|106851|9362|1|47|87318.95|0.10|0.05|N|O|1995-12-23|1996-01-17|1995-12-29|COLLECT COD|RAIL|ly blithely furious pains. carefu| +8652|38054|558|2|19|18848.95|0.00|0.08|N|O|1995-12-25|1996-02-14|1995-12-28|DELIVER IN PERSON|MAIL|lar packages | +8652|160155|7704|3|21|25518.15|0.09|0.03|N|O|1996-02-03|1996-01-11|1996-02-14|NONE|AIR|he boldly ironic foxes x-ray blithely acco| +8653|7145|7146|1|35|36824.90|0.08|0.04|R|F|1992-04-18|1992-04-22|1992-04-22|COLLECT COD|TRUCK|symptotes. carefully express ins| +8653|73017|3018|2|9|8910.09|0.03|0.06|A|F|1992-03-11|1992-03-13|1992-03-26|COLLECT COD|RAIL|iously final requests. pending reque| +8653|188542|1061|3|24|39132.96|0.08|0.05|A|F|1992-02-11|1992-03-11|1992-02-28|COLLECT COD|REG AIR|us pinto beans about the carefully reg| +8653|18581|1083|4|22|32990.76|0.04|0.05|R|F|1992-02-25|1992-03-18|1992-03-26|COLLECT COD|SHIP|ticingly final account| +8653|83755|1280|5|3|5216.25|0.06|0.00|R|F|1992-03-04|1992-03-03|1992-03-16|COLLECT COD|TRUCK| according to t| +8653|54221|9232|6|6|7051.32|0.04|0.03|R|F|1992-04-21|1992-04-22|1992-05-18|TAKE BACK RETURN|TRUCK|x about the unusual request| +8654|67462|7463|1|25|35736.50|0.08|0.03|N|O|1998-04-21|1998-06-24|1998-04-28|TAKE BACK RETURN|FOB|usly among the carefully ironic pa| +8655|115731|8243|1|26|45414.98|0.10|0.00|A|F|1995-05-23|1995-06-25|1995-05-28|DELIVER IN PERSON|SHIP|pendencies sleep against| +8680|60092|93|1|32|33666.88|0.10|0.06|R|F|1992-07-31|1992-10-12|1992-08-05|NONE|SHIP|ronic packa| +8680|160679|8228|2|25|43491.75|0.05|0.02|R|F|1992-10-21|1992-10-15|1992-11-17|TAKE BACK RETURN|AIR|lar gifts. special| +8680|124345|1882|3|43|58881.62|0.02|0.03|A|F|1992-07-28|1992-09-15|1992-07-31|NONE|SHIP|eodolites. express instructions wake s| +8680|64042|4043|4|39|39235.56|0.10|0.08|R|F|1992-11-03|1992-09-21|1992-11-25|NONE|FOB| special ideas po| +8680|143308|5823|5|5|6756.50|0.00|0.01|R|F|1992-08-09|1992-10-25|1992-08-19|NONE|AIR|fully according to th| +8680|162507|2508|6|4|6278.00|0.09|0.08|R|F|1992-11-22|1992-08-29|1992-12-07|COLLECT COD|SHIP|hely even theodolites | +8680|51748|6759|7|6|10198.44|0.09|0.01|R|F|1992-11-05|1992-10-05|1992-11-06|TAKE BACK RETURN|MAIL|fully. furiou| +8681|119892|9893|1|43|82211.27|0.02|0.04|A|F|1993-04-03|1993-05-07|1993-04-08|DELIVER IN PERSON|TRUCK|deposits kindle furiously. quickly| +8682|95100|2628|1|39|42708.90|0.09|0.03|A|F|1993-11-19|1993-09-16|1993-12-16|NONE|TRUCK|g furiously; furiously | +8682|137406|4946|2|2|2886.80|0.07|0.04|R|F|1993-08-27|1993-09-10|1993-08-28|TAKE BACK RETURN|SHIP|longside of the furiously bold rea| +8682|172246|9798|3|25|32956.00|0.08|0.05|A|F|1993-09-05|1993-10-12|1993-09-27|TAKE BACK RETURN|REG AIR|inal packages. ironically final instructi| +8682|129339|9340|4|39|53364.87|0.03|0.04|R|F|1993-08-21|1993-09-01|1993-08-25|NONE|TRUCK|. carefully regular forg| +8682|184769|7288|5|21|38928.96|0.08|0.06|A|F|1993-08-16|1993-09-28|1993-08-22|COLLECT COD|FOB|oze slyly. slyly bold ideas across| +8682|459|7960|6|22|29907.90|0.05|0.00|A|F|1993-10-01|1993-10-30|1993-10-10|TAKE BACK RETURN|TRUCK|ly pending theodolites sleep. slyly st| +8683|175119|154|1|21|25076.31|0.06|0.08|N|O|1996-01-27|1996-01-12|1996-02-25|DELIVER IN PERSON|SHIP|ully pending instructions. silent, u| +8683|16811|1814|2|38|65656.78|0.03|0.03|N|O|1996-01-21|1996-01-17|1996-01-29|COLLECT COD|MAIL|ructions use at the carefully bol| +8683|138794|3821|3|34|62314.86|0.10|0.07|N|O|1996-03-15|1996-01-30|1996-03-17|NONE|AIR|r accounts. fluffily reg| +8683|110609|8143|4|50|80980.00|0.04|0.02|N|O|1996-02-02|1996-02-18|1996-03-03|NONE|RAIL|ally special packa| +8683|197109|2148|5|14|16885.40|0.04|0.01|N|O|1996-02-03|1996-02-21|1996-02-09|NONE|RAIL|fully bold requests about the d| +8683|198603|8604|6|13|22120.80|0.03|0.03|N|O|1996-01-29|1996-01-27|1996-02-22|NONE|SHIP|equests boost blithely. th| +8683|107447|2468|7|43|62540.92|0.03|0.04|N|O|1996-02-07|1996-02-27|1996-02-08|COLLECT COD|MAIL|efully above the furiously iro| +8684|53651|6157|1|16|25674.40|0.06|0.05|A|F|1994-11-01|1994-12-15|1994-11-08|TAKE BACK RETURN|REG AIR|lly carefull| +8684|103472|8493|2|20|29509.40|0.02|0.05|R|F|1994-09-20|1994-12-16|1994-09-27|DELIVER IN PERSON|REG AIR|ly against the bold packages. blithe| +8684|43304|3305|3|4|4989.20|0.08|0.08|R|F|1994-11-06|1994-11-12|1994-12-05|COLLECT COD|AIR|pinto beans nag among the sp| +8684|193650|6170|4|34|59284.10|0.02|0.06|R|F|1994-11-25|1994-11-12|1994-11-30|COLLECT COD|TRUCK|aggle careful| +8684|69134|9135|5|1|1103.13|0.06|0.04|R|F|1994-11-12|1994-11-10|1994-11-14|COLLECT COD|RAIL|eas haggle withi| +8684|128706|8707|6|10|17347.00|0.02|0.08|R|F|1994-10-23|1994-10-26|1994-11-16|TAKE BACK RETURN|TRUCK|ages sleep furiously ir| +8685|151265|1266|1|44|57915.44|0.03|0.04|N|O|1998-03-30|1998-03-26|1998-04-12|DELIVER IN PERSON|MAIL|cross the carefully regular senti| +8685|109783|9784|2|32|57368.96|0.06|0.01|N|O|1998-02-19|1998-02-12|1998-02-23|COLLECT COD|AIR|ickly among the| +8686|195063|7583|1|38|44006.28|0.02|0.05|A|F|1993-08-10|1993-09-06|1993-09-04|NONE|RAIL|round the slyly ironic| +8686|13127|5629|2|20|20802.40|0.01|0.01|R|F|1993-10-09|1993-10-11|1993-10-19|NONE|REG AIR| ironic requests. sl| +8687|9558|2059|1|42|61637.10|0.04|0.03|R|F|1994-06-05|1994-04-08|1994-06-22|NONE|AIR|nts nag furiously bold, unusual pac| +8687|25919|924|2|49|90400.59|0.05|0.07|R|F|1994-05-13|1994-04-18|1994-05-29|TAKE BACK RETURN|SHIP|al requests use blithely. sp| +8687|13757|8760|3|37|61817.75|0.00|0.08|A|F|1994-03-06|1994-04-11|1994-04-01|DELIVER IN PERSON|SHIP|o beans. doggedly regular | +8687|3602|8603|4|29|43662.40|0.03|0.03|R|F|1994-05-15|1994-03-26|1994-06-03|TAKE BACK RETURN|AIR|gular deposit| +8687|132046|4560|5|25|26951.00|0.06|0.05|A|F|1994-05-25|1994-04-22|1994-06-15|DELIVER IN PERSON|TRUCK|fily stealthy pains. closely bol| +8687|80327|5344|6|47|61444.04|0.01|0.07|A|F|1994-03-13|1994-04-01|1994-03-22|COLLECT COD|REG AIR|ages unwind alongside of the sl| +8687|42552|65|7|15|22418.25|0.09|0.07|R|F|1994-06-03|1994-05-03|1994-06-29|TAKE BACK RETURN|RAIL|ven deposits print carefull| +8712|171225|8777|1|47|60922.34|0.06|0.06|R|F|1992-09-25|1992-08-26|1992-10-04|NONE|AIR|t the regular, regula| +8712|177345|4897|2|13|18490.42|0.04|0.01|A|F|1992-10-03|1992-08-18|1992-11-01|TAKE BACK RETURN|SHIP|ously among the regular, even reques| +8712|24712|7215|3|1|1636.71|0.02|0.07|A|F|1992-10-23|1992-09-22|1992-10-26|TAKE BACK RETURN|MAIL|sometimes even dep| +8712|124765|4766|4|23|41164.48|0.02|0.02|R|F|1992-10-17|1992-08-11|1992-10-19|COLLECT COD|TRUCK|c instructions. furiously final f| +8712|114843|7355|5|43|79887.12|0.10|0.00|A|F|1992-09-14|1992-09-10|1992-09-17|COLLECT COD|RAIL|e platelets cajole ca| +8713|23278|5781|1|23|27629.21|0.02|0.00|A|F|1993-02-21|1993-03-10|1993-03-05|DELIVER IN PERSON|AIR|dolphins haggle quietly dugouts. iron| +8713|28931|6438|2|5|9299.65|0.06|0.08|R|F|1993-04-19|1993-03-11|1993-05-11|TAKE BACK RETURN|RAIL|sly regular accounts| +8713|41170|8683|3|23|25556.91|0.09|0.05|R|F|1993-02-27|1993-03-22|1993-02-28|TAKE BACK RETURN|SHIP|ts. furiously final the| +8713|135987|8501|4|42|84965.16|0.05|0.01|R|F|1993-02-04|1993-02-12|1993-03-06|NONE|AIR|ns. slyly | +8713|130394|2908|5|27|38458.53|0.05|0.08|A|F|1993-03-09|1993-02-20|1993-03-15|NONE|REG AIR|g blithely| +8714|29724|4729|1|10|16537.20|0.09|0.06|N|O|1996-10-10|1996-11-22|1996-10-12|TAKE BACK RETURN|RAIL|l dependencies sleep. furiously quick acco| +8714|166828|4377|2|3|5684.46|0.01|0.01|N|O|1997-01-22|1996-11-27|1997-01-29|DELIVER IN PERSON|SHIP| quickly. ironic requests inst| +8714|76808|9316|3|16|28556.80|0.00|0.01|N|O|1996-12-30|1996-12-26|1997-01-13|COLLECT COD|TRUCK|s. final, bold warthogs belie| +8715|28344|3349|1|50|63617.00|0.08|0.00|N|O|1997-04-08|1997-05-31|1997-04-30|TAKE BACK RETURN|MAIL|ges haggle quickly carefully | +8715|161814|4331|2|46|86287.26|0.04|0.00|N|O|1997-05-06|1997-06-21|1997-05-25|NONE|FOB|requests across the deposits doze c| +8715|2487|7488|3|14|19452.72|0.03|0.00|N|O|1997-05-08|1997-05-06|1997-05-18|TAKE BACK RETURN|MAIL|refully iro| +8715|189139|1658|4|6|7368.78|0.02|0.03|N|O|1997-05-27|1997-06-13|1997-06-22|COLLECT COD|RAIL|the even courts; slyly spe| +8715|44847|4848|5|45|80632.80|0.00|0.08|N|O|1997-06-24|1997-05-22|1997-07-20|DELIVER IN PERSON|AIR|s run thinly ironic instruction| +8715|139384|9385|6|44|62628.72|0.06|0.06|N|O|1997-04-30|1997-05-28|1997-05-15|COLLECT COD|REG AIR|r the ironic, express e| +8716|166840|4389|1|26|49577.84|0.09|0.01|R|F|1993-09-20|1993-09-08|1993-10-07|DELIVER IN PERSON|FOB|ly special patterns. final accou| +8716|75550|8058|2|2|3051.10|0.09|0.02|R|F|1993-09-18|1993-10-18|1993-09-28|DELIVER IN PERSON|FOB|ular deposits cajole| +8716|167843|7844|3|50|95542.00|0.02|0.04|R|F|1993-10-30|1993-10-14|1993-11-10|TAKE BACK RETURN|AIR|uffily above the blithely ironic dep| +8716|128979|6516|4|32|64255.04|0.08|0.01|R|F|1993-09-04|1993-10-24|1993-10-03|DELIVER IN PERSON|FOB|iously. slyly | +8717|12798|302|1|17|29083.43|0.07|0.08|A|F|1994-01-22|1994-01-29|1994-01-23|NONE|FOB|ss the slyly final inst| +8717|93107|3108|2|49|53904.90|0.10|0.01|R|F|1994-03-03|1993-12-25|1994-03-18|TAKE BACK RETURN|AIR|sleep pending pinto beans. furiousl| +8717|42068|7077|3|24|24241.44|0.09|0.00|R|F|1993-11-13|1993-12-19|1993-12-05|COLLECT COD|TRUCK|ly. even, regular packages boost. | +8717|36247|6248|4|9|10649.16|0.01|0.08|A|F|1993-11-28|1994-01-09|1993-12-14|DELIVER IN PERSON|MAIL|s. fluffily even packages alongside of the | +8717|191140|6179|5|13|16004.82|0.04|0.06|R|F|1994-01-08|1993-12-28|1994-01-18|TAKE BACK RETURN|TRUCK|ns use furiously around the carefully| +8717|73452|5960|6|17|24232.65|0.08|0.01|A|F|1994-02-26|1994-01-27|1994-03-25|DELIVER IN PERSON|FOB|osits. furious| +8718|199725|9726|1|23|41968.56|0.02|0.01|R|F|1992-11-28|1992-10-19|1992-12-02|COLLECT COD|FOB|s. packages are| +8718|172603|7638|2|5|8378.00|0.08|0.00|A|F|1992-12-19|1992-10-12|1992-12-21|DELIVER IN PERSON|MAIL|cies: requests according to the| +8718|135689|716|3|33|56914.44|0.10|0.04|A|F|1992-09-14|1992-11-23|1992-10-05|NONE|RAIL|ts cajole furiously above the careful| +8718|112894|2895|4|33|62927.37|0.00|0.01|R|F|1992-10-09|1992-11-22|1992-11-06|DELIVER IN PERSON|MAIL| the foxes? slyly even pinto beans a| +8718|7220|4721|5|41|46216.02|0.02|0.01|A|F|1992-11-24|1992-10-25|1992-12-22|COLLECT COD|RAIL|ole among the furiously bol| +8718|134956|9983|6|48|95565.60|0.07|0.02|A|F|1992-10-22|1992-10-18|1992-11-14|COLLECT COD|FOB| requests. carefully regu| +8718|4578|4579|7|26|38546.82|0.09|0.08|R|F|1992-11-16|1992-10-19|1992-12-03|TAKE BACK RETURN|FOB|ges. quickly unusual theod| +8719|131942|9482|1|38|75009.72|0.07|0.06|A|F|1994-04-14|1994-03-29|1994-05-13|NONE|REG AIR|es against the regu| +8719|148326|8327|2|12|16491.84|0.02|0.08|R|F|1994-02-21|1994-04-06|1994-03-17|NONE|RAIL|lyly express dinos haggle carefully with t| +8719|109115|9116|3|35|39343.85|0.03|0.01|A|F|1994-03-01|1994-04-10|1994-03-24|NONE|RAIL|lithely ironic dinos hang slyly bold| +8719|95487|7997|4|29|42991.92|0.05|0.00|R|F|1994-03-10|1994-03-21|1994-03-17|TAKE BACK RETURN|RAIL|ions are carefully regular platelets. close| +8744|190732|8290|1|32|58327.36|0.10|0.08|R|F|1992-04-04|1992-03-02|1992-04-23|TAKE BACK RETURN|RAIL|even instructions nag quickly. u| +8744|23357|864|2|29|37130.15|0.02|0.03|A|F|1992-02-10|1992-03-19|1992-03-06|TAKE BACK RETURN|MAIL|thely final packages. neve| +8744|146850|9365|3|34|64492.90|0.09|0.00|R|F|1992-02-19|1992-03-11|1992-02-25|COLLECT COD|REG AIR|y silent requests wake carefully accor| +8744|94389|1917|4|6|8300.28|0.00|0.07|R|F|1992-05-19|1992-03-02|1992-05-24|DELIVER IN PERSON|TRUCK|nstruction| +8745|11703|1704|1|5|8073.50|0.04|0.08|N|O|1998-03-09|1997-12-29|1998-03-24|DELIVER IN PERSON|RAIL|ar deposits about | +8745|89054|6579|2|23|23990.15|0.09|0.07|N|O|1998-01-06|1998-02-07|1998-02-01|DELIVER IN PERSON|SHIP|, ironic decoys. ironi| +8745|119280|6814|3|50|64964.00|0.04|0.02|N|O|1997-11-18|1998-01-13|1997-11-28|TAKE BACK RETURN|TRUCK|tes are blithely along the slyly regu| +8745|123350|887|4|32|43947.20|0.07|0.07|N|O|1998-01-23|1997-12-16|1998-02-17|COLLECT COD|FOB|special excuses about th| +8745|133586|1126|5|3|4858.74|0.08|0.07|N|O|1998-02-03|1998-01-06|1998-02-21|COLLECT COD|TRUCK|kages. carefully unusual foxes wake sly| +8745|166365|3914|6|15|21470.40|0.01|0.04|N|O|1997-12-14|1998-01-22|1997-12-25|TAKE BACK RETURN|MAIL|foxes should mold quickly | +8745|96193|8703|7|11|13081.09|0.06|0.08|N|O|1998-03-02|1998-01-13|1998-03-18|COLLECT COD|RAIL|xpress deposits cajole quickly fluffily s| +8746|105325|2856|1|25|33258.00|0.02|0.01|N|O|1995-08-29|1995-09-04|1995-09-12|COLLECT COD|RAIL|ding requests wake. | +8746|185067|104|2|6|6912.36|0.09|0.03|N|O|1995-08-25|1995-08-07|1995-09-21|COLLECT COD|REG AIR|integrate at the carefully regular | +8746|12463|2464|3|24|33011.04|0.08|0.07|N|O|1995-10-12|1995-09-02|1995-10-28|DELIVER IN PERSON|SHIP|boost slyly quickly ironic requests. ca| +8746|54664|2180|4|41|66365.06|0.10|0.00|N|O|1995-09-17|1995-07-19|1995-10-11|COLLECT COD|RAIL|ring theodolites along the silent| +8746|121211|1212|5|36|44359.56|0.10|0.07|N|O|1995-07-08|1995-08-07|1995-07-10|NONE|AIR|tegrate slyly. slyly d| +8747|85950|8459|1|18|34847.10|0.05|0.06|A|F|1993-06-05|1993-07-07|1993-06-11|TAKE BACK RETURN|RAIL|platelets are blithe| +8747|150515|8061|2|41|64185.91|0.08|0.06|A|F|1993-07-17|1993-07-11|1993-08-07|COLLECT COD|REG AIR| deposits. blithely ironic accoun| +8747|91739|1740|3|5|8653.65|0.01|0.02|A|F|1993-08-02|1993-06-20|1993-08-18|COLLECT COD|AIR|y even accounts na| +8747|54026|9037|4|17|16660.34|0.05|0.00|A|F|1993-09-10|1993-06-28|1993-09-30|DELIVER IN PERSON|RAIL|ngside of the bl| +8748|68914|8915|1|22|41424.02|0.10|0.02|R|F|1995-02-25|1995-03-13|1995-03-09|NONE|REG AIR|against the pinto b| +8748|34887|7391|2|20|36437.60|0.10|0.04|R|F|1995-02-16|1995-04-04|1995-02-20|TAKE BACK RETURN|RAIL|requests wak| +8748|138404|8405|3|49|70677.60|0.10|0.05|A|F|1995-03-23|1995-02-20|1995-03-29|TAKE BACK RETURN|RAIL| slyly special packages i| +8748|151744|1745|4|15|26936.10|0.00|0.05|A|F|1995-04-08|1995-04-04|1995-04-28|DELIVER IN PERSON|SHIP| across the regular accounts integrate a| +8748|148369|8370|5|35|49607.60|0.10|0.07|A|F|1995-03-21|1995-03-09|1995-04-09|COLLECT COD|SHIP|mong the bli| +8748|25153|158|6|44|47438.60|0.01|0.04|A|F|1995-04-22|1995-03-16|1995-05-09|NONE|REG AIR|arefully across the blit| +8749|68639|1146|1|9|14468.67|0.07|0.04|N|O|1998-06-02|1998-07-07|1998-06-09|NONE|FOB|efully bold pinto bea| +8749|14247|1751|2|8|9289.92|0.05|0.07|N|O|1998-05-26|1998-07-30|1998-06-13|DELIVER IN PERSON|AIR|ng the final package| +8749|43819|8828|3|15|26442.15|0.00|0.06|N|O|1998-07-10|1998-08-13|1998-08-06|COLLECT COD|TRUCK|ngly carefully unusual packa| +8750|18903|8904|1|8|14575.20|0.07|0.00|A|F|1993-05-11|1993-05-20|1993-05-12|DELIVER IN PERSON|MAIL|y carefully thin packages. patterns | +8750|94369|4370|2|39|53171.04|0.09|0.01|A|F|1993-04-28|1993-06-16|1993-05-05|DELIVER IN PERSON|FOB|ly final excuses promise quickly. slyly ir| +8751|59195|1701|1|4|4616.76|0.09|0.03|N|O|1996-08-19|1996-11-07|1996-09-06|COLLECT COD|FOB| of the ironically regular deposits. furiou| +8751|76501|9009|2|32|47280.00|0.01|0.08|N|O|1996-11-07|1996-09-30|1996-11-21|DELIVER IN PERSON|FOB| pinto beans around the qu| +8751|147447|4990|3|9|13449.96|0.03|0.01|N|O|1996-09-19|1996-11-08|1996-10-18|NONE|SHIP|ly quickly ironic excus| +8751|128372|3397|4|40|56014.80|0.08|0.08|N|O|1996-10-02|1996-10-01|1996-10-31|NONE|RAIL|. carefully final packages across the blit| +8751|143865|6380|5|36|68718.96|0.01|0.01|N|O|1996-11-29|1996-10-21|1996-12-09|COLLECT COD|TRUCK|ermanent, daring foxes u| +8751|122626|2627|6|21|34621.02|0.03|0.03|N|O|1996-11-08|1996-09-28|1996-11-10|COLLECT COD|RAIL|gular acco| +8776|128288|801|1|35|46069.80|0.01|0.04|N|O|1998-04-12|1998-02-14|1998-05-04|DELIVER IN PERSON|TRUCK|refully about the sly| +8776|125114|5115|2|20|22782.20|0.10|0.06|N|O|1997-12-30|1998-03-01|1998-01-09|COLLECT COD|MAIL|ar asymptotes ha| +8776|189159|9160|3|47|58663.05|0.02|0.07|N|O|1998-01-22|1998-01-27|1998-01-28|NONE|REG AIR|xcuses. boldly silent| +8777|27244|9747|1|23|26938.52|0.06|0.05|N|O|1998-08-22|1998-08-21|1998-09-18|TAKE BACK RETURN|FOB|g. ironic requests affix| +8777|84026|4027|2|20|20200.40|0.06|0.05|N|O|1998-07-13|1998-08-10|1998-07-31|COLLECT COD|RAIL|ve the furiously even instructi| +8777|9581|4582|3|18|26830.44|0.06|0.02|N|O|1998-07-04|1998-08-12|1998-07-19|TAKE BACK RETURN|TRUCK|inal, final deposits mold be| +8777|16259|3763|4|43|50535.75|0.06|0.00|N|O|1998-06-17|1998-07-08|1998-07-12|NONE|TRUCK|ggle quickly even, regular platelets| +8777|60941|5954|5|46|87489.24|0.04|0.04|N|O|1998-07-21|1998-08-20|1998-08-11|TAKE BACK RETURN|RAIL| against the careful| +8778|46293|8798|1|47|58246.63|0.06|0.07|A|F|1992-08-22|1992-07-01|1992-08-30|TAKE BACK RETURN|REG AIR|express theodolites na| +8778|31971|6978|2|49|93245.53|0.04|0.04|A|F|1992-07-14|1992-08-14|1992-08-08|TAKE BACK RETURN|TRUCK|ly regular deposits haggle furiously | +8778|121459|6484|3|30|44413.50|0.10|0.05|A|F|1992-08-18|1992-08-06|1992-09-07|DELIVER IN PERSON|SHIP|st carefully ironic instructions| +8778|155099|7615|4|27|31160.43|0.10|0.04|A|F|1992-09-02|1992-08-03|1992-09-04|NONE|REG AIR|lithely pending accou| +8778|132953|493|5|42|83409.90|0.05|0.04|R|F|1992-08-08|1992-06-27|1992-08-14|NONE|SHIP|uctions wake quickly | +8778|132950|7977|6|46|91215.70|0.03|0.05|R|F|1992-06-10|1992-08-19|1992-06-28|NONE|TRUCK|iously quickly unusual| +8779|49124|4133|1|12|12877.44|0.02|0.00|A|F|1993-06-08|1993-06-11|1993-07-08|DELIVER IN PERSON|RAIL|quests. qui| +8779|11847|4349|2|19|33417.96|0.02|0.05|A|F|1993-08-06|1993-06-23|1993-08-09|TAKE BACK RETURN|REG AIR|y regular requests wake carefully even | +8780|175548|8066|1|14|22729.56|0.08|0.03|A|F|1993-05-09|1993-05-01|1993-05-13|DELIVER IN PERSON|RAIL|phins above the re| +8780|23701|1208|2|38|61738.60|0.05|0.01|R|F|1993-03-15|1993-05-23|1993-04-09|TAKE BACK RETURN|REG AIR|uriously ironic de| +8780|142700|5215|3|4|6970.80|0.05|0.08|A|F|1993-05-07|1993-05-07|1993-05-31|TAKE BACK RETURN|FOB|gular foxes cajole special packag| +8780|155857|888|4|13|24867.05|0.05|0.04|A|F|1993-06-28|1993-05-26|1993-07-28|COLLECT COD|MAIL|ptotes above the slyly final requests sl| +8780|86870|9379|5|40|74274.80|0.08|0.00|A|F|1993-06-13|1993-04-24|1993-07-12|DELIVER IN PERSON|SHIP|osits cajole fluffily. | +8780|17425|7426|6|27|36245.34|0.00|0.02|R|F|1993-05-26|1993-06-03|1993-06-13|COLLECT COD|MAIL|e special, careful theodol| +8781|156767|6768|1|25|45594.00|0.02|0.04|R|F|1992-02-06|1992-04-23|1992-02-12|TAKE BACK RETURN|RAIL| platelets. slyly p| +8781|177179|7180|2|47|59039.99|0.10|0.00|R|F|1992-03-13|1992-03-17|1992-04-10|DELIVER IN PERSON|TRUCK|e slyly final packages. slyly regular | +8781|36588|1595|3|29|44212.82|0.07|0.05|A|F|1992-03-15|1992-03-21|1992-03-19|TAKE BACK RETURN|AIR| among the carefully r| +8781|129737|4762|4|1|1766.73|0.06|0.01|A|F|1992-03-22|1992-03-10|1992-04-06|DELIVER IN PERSON|TRUCK|y among the carefully spe| +8781|83385|910|5|6|8210.28|0.07|0.02|R|F|1992-02-01|1992-04-04|1992-02-29|NONE|MAIL|ests. blithely regul| +8781|40559|560|6|30|44986.50|0.05|0.03|R|F|1992-05-15|1992-03-03|1992-05-27|DELIVER IN PERSON|MAIL|pinto beans. ironic requests sleep slyly ac| +8782|182443|7480|1|38|57966.72|0.05|0.02|N|O|1998-05-11|1998-04-20|1998-05-19|NONE|FOB|haggle slyly express ac| +8782|106721|9232|2|44|76019.68|0.07|0.08|N|O|1998-07-05|1998-05-09|1998-07-14|TAKE BACK RETURN|MAIL|packages. carefully bold braids| +8782|50834|8350|3|33|58899.39|0.08|0.03|N|O|1998-04-30|1998-06-09|1998-05-09|COLLECT COD|AIR|. ironic plat| +8782|157579|5125|4|45|73645.65|0.07|0.02|N|O|1998-03-24|1998-05-19|1998-03-31|DELIVER IN PERSON|MAIL|e near the slyly bold theodolites. c| +8783|185682|719|1|2|3535.36|0.02|0.02|N|O|1996-07-13|1996-06-10|1996-07-19|COLLECT COD|SHIP|ly ironic instruct| +8783|142340|9883|2|11|15205.74|0.03|0.01|N|O|1996-06-28|1996-05-13|1996-07-13|NONE|REG AIR|express packages above the care| +8783|108323|834|3|12|15975.84|0.07|0.06|N|O|1996-04-22|1996-04-30|1996-04-30|NONE|FOB| special platelets| +8783|180596|597|4|4|6706.36|0.00|0.06|N|O|1996-06-17|1996-05-12|1996-07-09|COLLECT COD|FOB|s after the dependencie| +8783|64338|6845|5|23|29953.59|0.09|0.08|N|O|1996-07-11|1996-05-31|1996-07-17|TAKE BACK RETURN|RAIL|oss the fluffily regular requests wake slow| +8808|55017|2533|1|8|7776.08|0.03|0.03|N|O|1997-12-20|1997-10-17|1998-01-19|NONE|SHIP|final requests. silent requests s| +8809|113617|1151|1|29|47287.69|0.03|0.05|A|F|1992-08-10|1992-08-20|1992-08-21|DELIVER IN PERSON|FOB|ickly bold, e| +8809|145421|5422|2|13|19063.46|0.08|0.06|R|F|1992-10-14|1992-09-22|1992-10-29|DELIVER IN PERSON|MAIL|e final foxes. sly| +8809|78563|3578|3|17|26206.52|0.00|0.08|R|F|1992-10-11|1992-08-21|1992-10-22|NONE|RAIL|s. deposits wake after the deposit| +8809|2804|2805|4|24|40963.20|0.04|0.06|A|F|1992-08-24|1992-09-22|1992-09-12|NONE|MAIL|notornis cajole furious| +8809|116407|1430|5|24|34161.60|0.00|0.05|A|F|1992-08-02|1992-09-28|1992-08-05|NONE|TRUCK|egular deposits over the careful| +8809|49556|9557|6|16|24088.80|0.04|0.06|A|F|1992-08-21|1992-09-28|1992-08-29|DELIVER IN PERSON|SHIP|packages aft| +8809|81306|6323|7|39|50204.70|0.03|0.03|A|F|1992-10-08|1992-09-14|1992-10-15|NONE|SHIP|s. sometim| +8810|103198|3199|1|23|27627.37|0.10|0.02|A|F|1995-02-17|1995-02-20|1995-03-08|DELIVER IN PERSON|RAIL|ies hang slyly bli| +8810|35536|543|2|32|47088.96|0.04|0.03|A|F|1995-04-10|1995-04-03|1995-04-11|NONE|MAIL|l, final inst| +8810|52419|2420|3|46|63084.86|0.03|0.06|A|F|1995-01-21|1995-02-25|1995-02-05|NONE|SHIP|ake. quickly final waters are slyly. care| +8811|39031|9032|1|8|7760.24|0.01|0.05|N|O|1998-06-18|1998-06-08|1998-06-19|DELIVER IN PERSON|RAIL| quick deposits alongside of the c| +8811|187770|289|2|6|11146.62|0.01|0.06|N|O|1998-08-14|1998-06-24|1998-08-30|NONE|RAIL|es wake about the fluffily even pinto b| +8812|117626|7627|1|35|57526.70|0.10|0.07|N|O|1995-07-21|1995-08-04|1995-07-30|COLLECT COD|REG AIR|above the idly bold requests. carefull| +8812|131712|6739|2|32|55798.72|0.08|0.02|N|O|1995-10-18|1995-09-19|1995-10-25|NONE|TRUCK| regular tithes according to the slyly s| +8812|80522|8047|3|50|75126.00|0.10|0.01|N|O|1995-08-10|1995-09-02|1995-09-02|COLLECT COD|TRUCK|eep quickly. express instructions haggl| +8812|123755|6268|4|26|46247.50|0.02|0.01|N|O|1995-08-23|1995-08-10|1995-09-15|COLLECT COD|MAIL|. sly requests affix | +8812|136289|3829|5|23|30481.44|0.05|0.07|N|O|1995-08-05|1995-08-12|1995-08-13|TAKE BACK RETURN|SHIP|thely! blithely final deposits sho| +8813|175943|3495|1|6|12113.64|0.04|0.00|R|F|1994-07-14|1994-07-19|1994-07-19|NONE|AIR|y regular req| +8813|66127|3646|2|5|5465.60|0.09|0.02|A|F|1994-09-08|1994-08-29|1994-10-02|DELIVER IN PERSON|AIR|carefully against th| +8813|194097|6617|3|24|28586.16|0.09|0.08|R|F|1994-07-17|1994-07-08|1994-08-15|NONE|AIR|packages run quickly even | +8813|176211|1246|4|45|57924.45|0.02|0.00|A|F|1994-08-24|1994-08-16|1994-09-08|NONE|AIR|inal excuses.| +8813|169707|9708|5|45|79951.50|0.07|0.06|A|F|1994-08-05|1994-07-20|1994-08-08|COLLECT COD|FOB|eodolites. quickly regular instructions in| +8813|51677|1678|6|41|66775.47|0.06|0.03|A|F|1994-07-21|1994-07-08|1994-08-04|COLLECT COD|RAIL|deposits hinder furiou| +8814|42210|9723|1|40|46088.40|0.09|0.04|N|O|1996-01-09|1995-12-10|1996-01-19|COLLECT COD|RAIL| the regular accounts sleep furious| +8814|19365|6869|2|8|10274.88|0.06|0.01|N|O|1995-11-07|1995-11-19|1995-12-01|TAKE BACK RETURN|SHIP|enly regular foxes. blit| +8814|63476|8489|3|33|47502.51|0.01|0.01|N|O|1995-12-17|1995-11-22|1995-12-22|COLLECT COD|AIR|al requests. slyly| +8814|36213|8717|4|5|5746.05|0.02|0.02|N|O|1995-12-13|1995-11-18|1996-01-01|TAKE BACK RETURN|AIR|counts along the furiously express ideas a| +8814|23900|1407|5|32|58364.80|0.09|0.08|N|O|1995-12-09|1995-12-22|1995-12-21|NONE|RAIL|ly express accounts. quickly special| +8815|155464|3010|1|45|68375.70|0.04|0.00|N|O|1996-09-04|1996-10-05|1996-09-27|TAKE BACK RETURN|MAIL|along the blithely pend| +8815|68770|6289|2|18|31297.86|0.07|0.07|N|O|1996-10-20|1996-10-10|1996-10-21|COLLECT COD|REG AIR|ual packages. | +8815|11782|4284|3|38|64363.64|0.04|0.05|N|O|1996-11-04|1996-10-09|1996-11-08|TAKE BACK RETURN|FOB|the furiously final fox| +8815|13200|3201|4|6|6679.20|0.03|0.01|N|O|1996-11-08|1996-09-04|1996-11-09|TAKE BACK RETURN|FOB|ts haggle some| +8815|50271|2777|5|1|1221.27|0.04|0.04|N|O|1996-08-01|1996-09-24|1996-08-13|DELIVER IN PERSON|REG AIR|ost slyly to the | +8815|90054|55|6|48|50114.40|0.02|0.04|N|O|1996-10-18|1996-09-03|1996-10-21|COLLECT COD|RAIL|ounts. silent, silen| +8815|132866|2867|7|19|36078.34|0.07|0.04|N|O|1996-11-13|1996-09-30|1996-11-24|COLLECT COD|AIR|bove the final ideas? accounts detect caref| +8840|68370|5889|1|48|64241.76|0.09|0.03|R|F|1992-10-13|1992-11-10|1992-11-05|COLLECT COD|TRUCK|eans are on the slyly final foxes! f| +8840|88511|6036|2|24|35988.24|0.01|0.06|A|F|1992-10-21|1992-11-20|1992-10-24|NONE|MAIL|tions doubt. ironic accounts| +8841|41592|1593|1|19|29138.21|0.02|0.05|N|O|1996-03-04|1996-04-30|1996-03-16|NONE|FOB|ideas. ideas sleep carefully a| +8841|23821|1328|2|46|80261.72|0.09|0.06|N|O|1996-03-18|1996-03-24|1996-04-05|TAKE BACK RETURN|MAIL|c deposits shall have to haggle f| +8841|155159|7675|3|30|36424.50|0.01|0.05|N|O|1996-02-26|1996-03-06|1996-03-01|NONE|FOB|sts cajole stealthily regular a| +8841|145933|962|4|30|59367.90|0.00|0.05|N|O|1996-05-15|1996-03-30|1996-05-31|COLLECT COD|RAIL|tructions | +8842|127813|326|1|1|1840.81|0.09|0.07|N|O|1998-04-20|1998-03-27|1998-05-17|NONE|MAIL|en deposits boost. | +8842|145112|5113|2|14|16199.54|0.05|0.02|N|O|1998-04-30|1998-04-12|1998-05-22|COLLECT COD|REG AIR|press platelets doubt blithely along| +8843|115804|3338|1|6|10918.80|0.03|0.07|A|F|1992-03-06|1992-04-08|1992-03-30|DELIVER IN PERSON|MAIL|en depende| +8843|116992|2015|2|19|38170.81|0.03|0.02|R|F|1992-03-04|1992-04-11|1992-03-24|TAKE BACK RETURN|AIR|ys are slow| +8843|79438|6960|3|21|29766.03|0.10|0.04|A|F|1992-05-20|1992-04-23|1992-05-31|DELIVER IN PERSON|REG AIR|counts maintain slyly aft| +8843|111833|6856|4|43|79327.69|0.07|0.08|A|F|1992-02-07|1992-04-17|1992-02-22|COLLECT COD|FOB|inal, regular pinto be| +8843|160969|3486|5|6|12179.76|0.04|0.01|R|F|1992-05-02|1992-04-19|1992-05-03|COLLECT COD|TRUCK| express requests. fluffy requests are sly| +8843|199712|4751|6|37|67033.27|0.00|0.06|A|F|1992-05-19|1992-04-01|1992-06-15|NONE|FOB|nic asympto| +8844|78321|8322|1|26|33782.32|0.05|0.08|N|O|1996-08-06|1996-09-20|1996-09-02|COLLECT COD|FOB|he fluffily bold deposits. requests| +8844|134338|4339|2|21|28818.93|0.06|0.06|N|O|1996-10-03|1996-10-03|1996-10-24|COLLECT COD|REG AIR|y ironic foxes a| +8844|7389|7390|3|35|45373.30|0.05|0.03|N|O|1996-08-28|1996-09-09|1996-09-02|NONE|SHIP|ing to the fluffily fina| +8845|141490|6519|1|8|12251.92|0.08|0.05|R|F|1994-04-01|1994-02-15|1994-04-30|TAKE BACK RETURN|AIR|even instr| +8845|13789|3790|2|24|40866.72|0.03|0.07|A|F|1994-04-22|1994-01-30|1994-05-04|DELIVER IN PERSON|MAIL|nal, even de| +8845|135139|5140|3|26|30527.38|0.10|0.03|R|F|1993-12-24|1994-03-19|1994-01-19|DELIVER IN PERSON|REG AIR|y regular e| +8845|78773|6295|4|36|63063.72|0.09|0.03|A|F|1994-04-05|1994-03-03|1994-04-11|TAKE BACK RETURN|FOB|foxes sleep pending e| +8846|53235|5741|1|41|48717.43|0.05|0.01|A|F|1995-02-23|1995-03-25|1995-03-15|NONE|RAIL| haggle furiously fluffily unusual ideas. | +8846|116276|6277|2|31|40060.37|0.09|0.08|R|F|1995-04-03|1995-04-08|1995-04-23|COLLECT COD|FOB| slyly final ins| +8846|36649|4159|3|44|69768.16|0.07|0.00|R|F|1995-03-30|1995-04-12|1995-04-09|COLLECT COD|MAIL|osits cajole carefully r| +8846|145401|2944|4|50|72320.00|0.05|0.04|R|F|1995-05-18|1995-03-08|1995-06-10|DELIVER IN PERSON|SHIP|lites. even accounts sleep quickly | +8846|147226|7227|5|38|48382.36|0.05|0.01|A|F|1995-02-17|1995-03-12|1995-03-09|TAKE BACK RETURN|SHIP|arefully fin| +8847|37571|5081|1|37|55817.09|0.03|0.04|A|F|1993-10-28|1993-08-23|1993-11-13|COLLECT COD|TRUCK|enticing deposits boost quic| +8847|47543|7544|2|35|52168.90|0.09|0.08|A|F|1993-08-09|1993-09-19|1993-08-28|DELIVER IN PERSON|REG AIR|ickly special foxes. | +8847|47085|2094|3|13|13417.04|0.03|0.06|A|F|1993-09-23|1993-08-29|1993-10-19|COLLECT COD|MAIL|ickly afte| +8847|154664|9695|4|14|24061.24|0.08|0.05|R|F|1993-08-10|1993-09-04|1993-08-22|DELIVER IN PERSON|MAIL|instructions? slyly unusual f| +8847|35765|5766|5|20|34015.20|0.00|0.01|R|F|1993-10-05|1993-08-25|1993-10-06|DELIVER IN PERSON|AIR|olites? quickly| +8847|98660|1170|6|10|16586.60|0.09|0.01|R|F|1993-08-01|1993-09-24|1993-08-30|TAKE BACK RETURN|SHIP|s. boldly express ideas detect carefull| +8847|163744|8777|7|48|86771.52|0.00|0.02|R|F|1993-08-26|1993-09-10|1993-09-25|COLLECT COD|RAIL|ly. furiously silent requests| +8872|37600|104|1|46|70729.60|0.00|0.02|A|F|1993-07-24|1993-09-10|1993-08-09|TAKE BACK RETURN|REG AIR|y against the| +8872|137746|2773|2|27|48160.98|0.02|0.08|A|F|1993-09-18|1993-08-15|1993-10-06|DELIVER IN PERSON|RAIL|luffily after the carefully iron| +8872|90138|139|3|27|30459.51|0.00|0.00|A|F|1993-08-12|1993-09-07|1993-08-23|NONE|SHIP|counts. quickly re| +8872|142899|7928|4|10|19418.90|0.03|0.00|A|F|1993-07-30|1993-08-12|1993-08-28|NONE|SHIP|leep carefully. regular, regul| +8872|95048|7558|5|6|6258.24|0.10|0.02|A|F|1993-09-22|1993-08-18|1993-10-06|COLLECT COD|SHIP|furiously furiously unusual e| +8872|68021|528|6|2|1978.04|0.08|0.07|R|F|1993-07-04|1993-08-20|1993-07-05|COLLECT COD|AIR|uickly unusual excuses detect according t| +8872|28588|8589|7|41|62179.78|0.08|0.00|A|F|1993-09-26|1993-08-27|1993-10-08|DELIVER IN PERSON|FOB|ly around the slyly unusua| +8873|67728|5247|1|12|20348.64|0.05|0.07|N|O|1996-06-09|1996-06-02|1996-06-15|TAKE BACK RETURN|REG AIR|lyly fluffy decoys. depos| +8873|93514|8533|2|5|7537.55|0.05|0.07|N|O|1996-07-20|1996-05-21|1996-08-05|DELIVER IN PERSON|MAIL|asymptotes sleep carefully spe| +8873|84658|9675|3|29|47636.85|0.10|0.07|N|O|1996-07-02|1996-06-21|1996-07-15|NONE|FOB| slyly against t| +8873|45498|5499|4|9|12991.41|0.00|0.03|N|O|1996-07-04|1996-04-28|1996-07-29|COLLECT COD|REG AIR| pending pack| +8874|84956|2481|1|44|85401.80|0.07|0.00|A|F|1993-01-21|1992-12-19|1993-01-30|NONE|AIR|pending requ| +8875|35469|476|1|33|46347.18|0.06|0.02|R|F|1992-07-20|1992-07-04|1992-08-05|TAKE BACK RETURN|FOB|e furiously pending platelets | +8875|123817|3818|2|44|80995.64|0.07|0.04|R|F|1992-07-16|1992-08-22|1992-08-09|TAKE BACK RETURN|REG AIR|ss the blithely regular packages. bold pi| +8876|118889|3912|1|18|34341.84|0.06|0.08|R|F|1994-03-17|1994-03-26|1994-04-12|NONE|MAIL|s. bold fox| +8876|160334|5367|2|40|55773.20|0.04|0.08|A|F|1994-02-16|1994-02-16|1994-03-05|TAKE BACK RETURN|REG AIR| final pinto beans. packages sleep carefu| +8876|117203|9715|3|46|56129.20|0.08|0.02|A|F|1994-04-16|1994-02-01|1994-04-23|COLLECT COD|REG AIR|deposits. acco| +8877|60514|5527|1|8|11796.08|0.06|0.04|N|O|1995-06-29|1995-06-21|1995-07-11|DELIVER IN PERSON|FOB|pecial ideas impress fluffily past the blit| +8877|45440|5441|2|23|31865.12|0.09|0.07|N|O|1995-07-03|1995-07-21|1995-07-18|DELIVER IN PERSON|REG AIR|es might sleep. even, ironic m| +8877|107375|4906|3|8|11058.96|0.09|0.00|N|O|1995-07-13|1995-07-03|1995-07-20|COLLECT COD|AIR|c deposits| +8877|39358|1862|4|48|62272.80|0.07|0.06|N|O|1995-07-30|1995-06-17|1995-08-10|NONE|TRUCK|ze slyly carefully re| +8877|89490|4507|5|26|38466.74|0.00|0.03|N|O|1995-06-27|1995-08-03|1995-07-18|COLLECT COD|MAIL|longside of the quickly expre| +8877|55144|2660|6|33|36271.62|0.00|0.07|N|O|1995-08-15|1995-06-24|1995-08-22|COLLECT COD|FOB|c platelets caj| +8877|191082|8640|7|34|39884.72|0.07|0.05|N|O|1995-07-18|1995-07-26|1995-07-24|COLLECT COD|FOB|ickly final packages sleep| +8878|101181|6202|1|45|53198.10|0.10|0.06|N|O|1997-07-24|1997-10-02|1997-08-18|DELIVER IN PERSON|TRUCK|dependencies are | +8879|35407|7911|1|44|59065.60|0.08|0.08|R|F|1992-11-10|1992-12-01|1992-11-15|TAKE BACK RETURN|RAIL|uffily along the carefully regular foxes. c| +8879|76222|8730|2|17|20369.74|0.04|0.04|R|F|1993-01-31|1993-01-01|1993-02-12|NONE|SHIP|e fluffily against the furiously regular t| +8879|46541|6542|3|29|43138.66|0.09|0.02|R|F|1992-12-12|1992-12-28|1992-12-25|DELIVER IN PERSON|MAIL|olites nag furiously according to the | +8879|8539|3540|4|14|20265.42|0.08|0.07|A|F|1992-11-27|1992-12-14|1992-12-02|NONE|SHIP| bold accounts. slowly regular pinto be| +8904|180604|3123|1|19|32007.40|0.08|0.02|N|O|1995-11-24|1995-11-06|1995-12-15|COLLECT COD|REG AIR|egular packag| +8904|195203|5204|2|25|32455.00|0.00|0.00|N|O|1995-09-29|1995-11-09|1995-10-10|DELIVER IN PERSON|MAIL|ickly final ideas wa| +8904|168518|8519|3|35|55527.85|0.00|0.01|N|O|1995-11-24|1995-12-08|1995-12-01|DELIVER IN PERSON|TRUCK|. fluffily even ideas cajole slyly? ir| +8904|76144|8652|4|35|39204.90|0.04|0.04|N|O|1995-11-20|1995-11-30|1995-11-26|TAKE BACK RETURN|AIR|ely. asymptotes| +8904|143873|8902|5|32|61339.84|0.02|0.05|N|O|1995-11-20|1995-12-08|1995-12-03|COLLECT COD|RAIL| the slyly final packages wake carefull| +8905|24488|4489|1|8|11299.84|0.10|0.02|N|O|1995-09-23|1995-09-18|1995-10-16|NONE|REG AIR|ial, ironic foxes? t| +8905|159666|4697|2|12|20707.92|0.00|0.04|N|O|1995-10-21|1995-09-19|1995-11-01|TAKE BACK RETURN|SHIP| sly excuses. slyly| +8906|83064|5573|1|12|12564.72|0.10|0.02|N|O|1997-10-29|1997-08-29|1997-11-11|DELIVER IN PERSON|FOB|ully bold packages boost fluffily | +8907|174276|9311|1|9|12152.43|0.03|0.02|N|O|1996-10-30|1996-12-07|1996-11-04|COLLECT COD|FOB|lly special accounts solve furiou| +8907|48710|8711|2|43|71324.53|0.05|0.08|N|O|1996-10-21|1996-10-26|1996-11-17|TAKE BACK RETURN|MAIL|its wake among the c| +8907|59998|5009|3|15|29369.85|0.05|0.08|N|O|1996-12-12|1996-10-15|1996-12-28|COLLECT COD|MAIL|poach. fluffily pending depos| +8907|177902|7903|4|11|21778.90|0.09|0.03|N|O|1996-12-18|1996-10-30|1997-01-12|DELIVER IN PERSON|AIR|s sleep alongsid| +8907|195607|5608|5|35|59591.00|0.09|0.03|N|O|1996-12-20|1996-11-02|1997-01-12|DELIVER IN PERSON|FOB|counts must serve. regular fox| +8907|163860|8893|6|44|84649.84|0.09|0.01|N|O|1996-11-08|1996-10-30|1996-11-29|DELIVER IN PERSON|AIR|lly dogged packages eat| +8908|34375|6879|1|4|5237.48|0.07|0.02|N|O|1995-08-21|1995-08-05|1995-09-16|TAKE BACK RETURN|RAIL|ual requests haggle. regular requests will | +8908|134158|6672|2|7|8345.05|0.04|0.05|A|F|1995-05-24|1995-07-08|1995-06-03|TAKE BACK RETURN|MAIL|realms use quickly. blithel| +8908|186069|3624|3|35|40427.10|0.06|0.08|N|O|1995-09-11|1995-07-07|1995-09-16|DELIVER IN PERSON|RAIL|s. carefully ironic deposits nag blithe| +8909|148947|8948|1|38|75845.72|0.06|0.02|N|O|1997-02-08|1997-04-27|1997-02-27|TAKE BACK RETURN|REG AIR|riously ironic foxes g| +8910|199547|7105|1|18|29637.72|0.06|0.05|R|F|1992-04-18|1992-04-21|1992-04-22|DELIVER IN PERSON|REG AIR|accounts kindle permanently blithely unusu| +8910|174268|4269|2|4|5369.04|0.04|0.05|R|F|1992-04-27|1992-04-02|1992-05-11|TAKE BACK RETURN|TRUCK|inal instructions nag slyly s| +8910|114594|2128|3|50|80429.50|0.02|0.07|R|F|1992-05-30|1992-05-22|1992-06-15|COLLECT COD|AIR|final theodolites. | +8910|175845|880|4|8|15366.72|0.02|0.03|R|F|1992-06-25|1992-04-15|1992-06-26|NONE|REG AIR|usly final ideas. e| +8911|19567|9568|1|22|32704.32|0.05|0.06|A|F|1995-06-02|1995-07-24|1995-06-07|COLLECT COD|REG AIR| furiously | +8911|59014|9015|2|16|15568.16|0.08|0.08|A|F|1995-05-19|1995-06-26|1995-05-31|TAKE BACK RETURN|SHIP|s. slyly stealthy gifts haggle against th| +8911|36824|1831|3|33|58107.06|0.00|0.07|N|F|1995-05-25|1995-07-19|1995-06-22|DELIVER IN PERSON|SHIP|xes haggle. quickly | +8911|91140|6159|4|25|28278.50|0.06|0.08|N|O|1995-07-19|1995-07-09|1995-08-09|TAKE BACK RETURN|TRUCK|he quickly re| +8911|181769|9324|5|34|62925.84|0.04|0.02|N|O|1995-08-24|1995-06-16|1995-09-16|NONE|AIR|counts. slyly | +8911|186047|1084|6|33|37390.32|0.02|0.06|A|F|1995-05-23|1995-07-09|1995-06-12|COLLECT COD|FOB|ect. express deposits w| +8911|81501|1502|7|32|47440.00|0.10|0.07|R|F|1995-05-26|1995-07-24|1995-06-13|NONE|MAIL|y bold accounts hang accor| +8936|180099|7654|1|28|33014.52|0.03|0.01|R|F|1994-06-21|1994-07-05|1994-07-06|TAKE BACK RETURN|AIR|ackages. blithely| +8936|107432|7433|2|3|4318.29|0.05|0.04|A|F|1994-06-01|1994-07-22|1994-06-22|COLLECT COD|MAIL|final excuses wake slyly. quickly regular| +8936|822|5823|3|28|48238.96|0.06|0.04|A|F|1994-07-08|1994-06-22|1994-07-29|COLLECT COD|REG AIR|even deposit| +8936|1533|1534|4|18|25821.54|0.01|0.07|A|F|1994-06-22|1994-08-18|1994-07-12|DELIVER IN PERSON|SHIP|arefully even pint| +8936|164491|4492|5|14|21776.86|0.10|0.01|R|F|1994-07-05|1994-06-27|1994-08-02|COLLECT COD|FOB| quickly special requests. re| +8937|95984|1003|1|27|53459.46|0.02|0.02|N|O|1998-03-07|1998-02-09|1998-03-25|TAKE BACK RETURN|AIR| slyly regu| +8937|192894|2895|2|24|47685.36|0.08|0.08|N|O|1998-01-19|1998-01-27|1998-01-23|COLLECT COD|REG AIR|ar dugouts. silent, | +8937|162360|2361|3|45|64006.20|0.02|0.08|N|O|1997-12-29|1998-02-03|1998-01-17|NONE|REG AIR|r the furiously regular acco| +8937|175252|2804|4|34|45126.50|0.07|0.07|N|O|1998-03-13|1998-03-07|1998-03-29|COLLECT COD|AIR|inal foxes nag ca| +8938|104219|1750|1|28|34249.88|0.03|0.00|R|F|1994-09-27|1994-08-16|1994-10-13|TAKE BACK RETURN|RAIL|yond the furiously id| +8938|2662|5163|2|16|25034.56|0.07|0.04|R|F|1994-07-12|1994-08-21|1994-07-17|DELIVER IN PERSON|RAIL|e carefully unusual accounts. car| +8938|127635|7636|3|42|69830.46|0.08|0.05|A|F|1994-09-15|1994-08-17|1994-09-17|COLLECT COD|TRUCK|lly regular accounts are be| +8938|154321|6837|4|15|20629.80|0.08|0.07|R|F|1994-09-17|1994-08-29|1994-10-10|DELIVER IN PERSON|AIR|oxes wake care| +8938|69260|9261|5|45|55316.70|0.04|0.01|A|F|1994-09-14|1994-08-07|1994-10-01|DELIVER IN PERSON|REG AIR|omas. ironic | +8939|110608|8142|1|33|53413.80|0.02|0.07|N|O|1998-05-16|1998-05-24|1998-06-06|NONE|FOB|ges. slyly ironic acc| +8939|186492|6493|2|6|9470.94|0.07|0.01|N|O|1998-05-17|1998-04-14|1998-06-03|TAKE BACK RETURN|RAIL|s play fluffily unusual pinto beans. sly| +8940|172924|5442|1|44|87864.48|0.10|0.04|A|F|1992-05-31|1992-07-07|1992-06-23|TAKE BACK RETURN|REG AIR|rts haggle quickly against the carefully e| +8941|25944|8447|1|17|31788.98|0.04|0.03|A|F|1994-01-27|1994-01-11|1994-02-03|COLLECT COD|MAIL|un carefully among the busy| +8941|37145|2152|2|9|9739.26|0.06|0.07|R|F|1993-12-17|1993-12-28|1994-01-10|NONE|AIR|regular deposits breach carefully. unu| +8941|82250|7267|3|36|44361.00|0.09|0.07|A|F|1994-02-12|1994-02-03|1994-03-13|DELIVER IN PERSON|TRUCK|nts haggle quickly final gifts. slyly| +8941|166523|4072|4|22|34969.44|0.06|0.04|R|F|1993-11-20|1993-12-30|1993-12-19|COLLECT COD|TRUCK|grate slyly quickly silent ti| +8941|151703|4219|5|15|26320.50|0.09|0.05|R|F|1994-02-25|1994-01-10|1994-03-24|TAKE BACK RETURN|SHIP|arefully. quickly final re| +8941|71455|1456|6|43|61337.35|0.09|0.08|R|F|1994-03-04|1993-12-25|1994-03-15|DELIVER IN PERSON|MAIL| ironic ideas kindle carefully | +8942|178175|3210|1|8|10025.36|0.07|0.00|N|O|1998-09-01|1998-08-23|1998-09-25|TAKE BACK RETURN|MAIL|uests. final re| +8942|176619|4171|2|2|3391.22|0.01|0.08|N|O|1998-10-08|1998-08-17|1998-10-30|NONE|RAIL|y deposits. carefu| +8942|30009|5016|3|35|32865.00|0.08|0.01|N|O|1998-09-01|1998-09-10|1998-09-17|COLLECT COD|RAIL|s. slyly pending courts integrat| +8942|157250|2281|4|11|14379.75|0.04|0.01|N|O|1998-11-07|1998-10-04|1998-11-08|NONE|MAIL|slyly. pending warhorses was. caref| +8942|99554|4573|5|17|26410.35|0.08|0.06|N|O|1998-09-01|1998-10-11|1998-09-21|COLLECT COD|AIR|uctions are slyly. even | +8943|97138|2157|1|45|51080.85|0.06|0.03|N|O|1997-02-21|1997-03-10|1997-02-26|TAKE BACK RETURN|TRUCK|blithely! fluffily fluffy pi| +8943|187318|9837|2|32|44969.92|0.06|0.04|N|O|1997-05-28|1997-04-07|1997-06-23|TAKE BACK RETURN|FOB|ss accounts do lose unus| +8943|45166|175|3|36|40001.76|0.06|0.05|N|O|1997-03-10|1997-03-14|1997-03-17|TAKE BACK RETURN|MAIL|dle slyly. regular, regular instruc| +8943|101314|6335|4|45|59188.95|0.08|0.02|N|O|1997-02-07|1997-04-27|1997-03-08|NONE|RAIL| slyly express reque| +8943|173365|917|5|15|21575.40|0.03|0.03|N|O|1997-05-26|1997-03-01|1997-06-02|DELIVER IN PERSON|AIR|nag slyly slyly even accounts. furio| +8943|133614|1154|6|16|26361.76|0.06|0.00|N|O|1997-05-05|1997-03-14|1997-05-22|COLLECT COD|AIR| the regular, final ac| +8968|156080|1111|1|50|56804.00|0.08|0.04|A|F|1995-04-07|1995-02-09|1995-05-04|COLLECT COD|FOB|ronic instru| +8969|8269|5770|1|23|27076.98|0.07|0.04|A|F|1993-09-02|1993-07-24|1993-09-05|NONE|TRUCK|ccounts. blithely brave ideas detec| +8969|169294|9295|2|50|68164.50|0.00|0.02|R|F|1993-08-28|1993-07-05|1993-09-13|DELIVER IN PERSON|AIR|efully furiously even accounts. | +8969|117441|9953|3|24|35002.56|0.02|0.03|A|F|1993-06-23|1993-08-04|1993-07-21|DELIVER IN PERSON|MAIL|horses along the regular packages haggle| +8970|138910|1424|1|27|52620.57|0.08|0.02|A|F|1994-06-05|1994-05-27|1994-06-12|DELIVER IN PERSON|SHIP|ly express packages cajole care| +8970|51714|6725|2|25|41642.75|0.05|0.01|R|F|1994-03-29|1994-06-01|1994-04-28|NONE|RAIL|ic requests are blit| +8970|157169|7170|3|1|1226.16|0.10|0.01|R|F|1994-05-18|1994-04-27|1994-05-20|DELIVER IN PERSON|TRUCK|ts haggle blithely above the | +8970|137340|9854|4|6|8264.04|0.00|0.06|A|F|1994-06-21|1994-04-27|1994-07-14|NONE|RAIL|slyly unusual pinto beans according to the| +8971|105471|3002|1|27|39864.69|0.10|0.04|R|F|1993-02-14|1993-01-19|1993-02-25|NONE|AIR|ructions. unusual foxes are according | +8971|35365|372|2|37|48113.32|0.06|0.05|A|F|1993-03-01|1993-02-11|1993-03-09|NONE|RAIL|p furiously. furiou| +8971|178865|3900|3|34|66091.24|0.03|0.02|R|F|1993-03-26|1993-02-12|1993-04-03|NONE|REG AIR|gular excuses are furiously.| +8972|127301|2326|1|48|63758.40|0.02|0.05|R|F|1993-03-20|1993-05-15|1993-04-11|COLLECT COD|MAIL|c requests are along the | +8972|145347|5348|2|31|43162.54|0.08|0.02|A|F|1993-05-04|1993-04-18|1993-05-31|DELIVER IN PERSON|RAIL|out the slyly regular accounts| +8972|40790|791|3|14|24231.06|0.05|0.00|R|F|1993-06-27|1993-05-27|1993-07-18|DELIVER IN PERSON|MAIL|posits against| +8972|149150|4179|4|23|27580.45|0.10|0.00|A|F|1993-06-02|1993-04-05|1993-06-19|COLLECT COD|TRUCK|se furiously about the| +8972|161160|1161|5|39|47625.24|0.10|0.04|A|F|1993-06-17|1993-05-06|1993-07-09|DELIVER IN PERSON|RAIL|arefully ironic theodolites-- blit| +8972|4862|9863|6|35|61840.10|0.07|0.00|R|F|1993-03-29|1993-04-27|1993-03-30|TAKE BACK RETURN|RAIL|ow according to the deposits. fur| +8972|105087|7598|7|17|18565.36|0.04|0.06|R|F|1993-05-02|1993-04-16|1993-05-31|NONE|REG AIR|uffily. carefully bold p| +8973|188251|8252|1|11|14731.75|0.10|0.00|A|F|1992-07-04|1992-07-08|1992-07-05|COLLECT COD|REG AIR|lithely against the f| +8973|131895|6922|2|13|25049.57|0.09|0.01|A|F|1992-07-19|1992-08-10|1992-08-12|DELIVER IN PERSON|SHIP|l depths integrate| +8974|179489|2007|1|1|1568.48|0.08|0.08|N|O|1996-08-16|1996-07-19|1996-09-04|COLLECT COD|RAIL|sly ironic f| +8974|63288|5795|2|39|48799.92|0.03|0.04|N|O|1996-07-16|1996-06-27|1996-08-04|COLLECT COD|SHIP|s haggle regular, final| +8974|64708|9721|3|37|61889.90|0.07|0.08|N|O|1996-05-20|1996-07-06|1996-06-19|COLLECT COD|MAIL| furiously ruthless requests. caref| +8974|145090|7605|4|37|41998.33|0.07|0.02|N|O|1996-06-15|1996-07-16|1996-07-03|NONE|SHIP|uests boost sly| +8974|114993|2527|5|21|42167.79|0.02|0.06|N|O|1996-06-06|1996-07-24|1996-06-29|TAKE BACK RETURN|AIR|ckages are according| +8975|137025|7026|1|23|24426.46|0.08|0.06|N|O|1998-06-23|1998-06-05|1998-07-09|NONE|AIR|the final deposits haggle requests. quick| +8975|171411|6446|2|5|7412.05|0.08|0.03|N|O|1998-05-03|1998-05-17|1998-05-28|COLLECT COD|FOB| ideas beside| +8975|91617|4127|3|42|67561.62|0.10|0.01|N|O|1998-06-15|1998-06-07|1998-07-05|NONE|MAIL|usual requests c| +8975|193985|6505|4|38|79001.24|0.09|0.08|N|O|1998-07-08|1998-05-25|1998-08-04|TAKE BACK RETURN|MAIL|he regular accounts. unusual| +8975|96815|9325|5|10|18118.10|0.04|0.03|N|O|1998-06-23|1998-06-21|1998-07-01|COLLECT COD|SHIP|nts nag slyly. quickly bold d| +8975|158798|1314|6|8|14854.32|0.03|0.07|N|O|1998-07-16|1998-07-01|1998-07-30|COLLECT COD|RAIL|ly bold pinto beans are careful| +9000|142217|7246|1|50|62960.50|0.03|0.06|A|F|1993-02-21|1993-02-03|1993-03-04|TAKE BACK RETURN|MAIL|ic deposits detect. carefully | +9000|35780|787|2|31|53189.18|0.00|0.05|R|F|1993-04-03|1993-03-23|1993-04-30|DELIVER IN PERSON|SHIP|nt, pending excuses | +9000|148614|6157|3|2|3325.22|0.05|0.02|A|F|1993-03-21|1993-03-05|1993-04-04|NONE|RAIL| regular foxes detect slyl| +9001|130016|7556|1|8|8368.08|0.09|0.08|N|O|1995-08-21|1995-09-30|1995-09-20|NONE|RAIL|uternes. sometimes pending acco| +9001|177774|5326|2|36|66663.72|0.08|0.01|N|O|1995-11-06|1995-10-24|1995-11-19|COLLECT COD|TRUCK|althy accoun| +9001|42030|9543|3|43|41797.29|0.10|0.02|N|O|1995-11-23|1995-09-12|1995-12-23|NONE|AIR|g accounts nag after the carefully regul| +9001|189620|9621|4|14|23934.68|0.09|0.04|N|O|1995-08-12|1995-09-17|1995-08-17|TAKE BACK RETURN|TRUCK|fully regular deposits across t| +9001|128623|6160|5|22|36335.64|0.01|0.03|N|O|1995-11-13|1995-08-27|1995-12-03|COLLECT COD|AIR|s. theodolites solve carefully express| +9002|118143|3166|1|27|31350.78|0.03|0.00|A|F|1992-06-16|1992-04-24|1992-07-07|TAKE BACK RETURN|FOB|ly above the slyl| +9002|14294|4295|2|4|4833.16|0.03|0.01|R|F|1992-05-11|1992-05-21|1992-06-10|TAKE BACK RETURN|TRUCK|haggle blith| +9002|34226|9233|3|6|6961.32|0.05|0.00|R|F|1992-04-11|1992-05-30|1992-05-03|COLLECT COD|SHIP|y silent, even depo| +9002|23803|6306|4|9|15541.20|0.06|0.08|A|F|1992-04-20|1992-06-08|1992-04-22|TAKE BACK RETURN|MAIL|ests. boldly regular deposits pro| +9002|51295|3801|5|2|2492.58|0.04|0.02|A|F|1992-05-27|1992-05-19|1992-06-11|COLLECT COD|REG AIR|y final depo| +9003|120216|217|1|31|38322.51|0.03|0.01|N|O|1996-04-15|1996-04-05|1996-04-18|NONE|RAIL| about the slyly even| +9003|61886|1887|2|49|90546.12|0.05|0.03|N|O|1996-04-30|1996-03-17|1996-05-05|COLLECT COD|AIR|s sleep slyly unusual, final| +9003|106028|8539|3|49|50666.98|0.02|0.04|N|O|1996-02-29|1996-03-06|1996-03-05|TAKE BACK RETURN|SHIP|ss the carefully special requests cajole | +9003|9661|4662|4|40|62826.40|0.05|0.01|N|O|1996-02-18|1996-04-20|1996-03-05|DELIVER IN PERSON|SHIP|ly final accounts nag blithel| +9004|176202|6203|1|15|19173.00|0.10|0.02|N|O|1995-07-27|1995-06-28|1995-08-12|DELIVER IN PERSON|TRUCK|final deposits. furiously fina| +9004|10745|3247|2|40|66229.60|0.08|0.05|N|O|1995-08-08|1995-05-23|1995-08-18|TAKE BACK RETURN|TRUCK|s. accounts wak| +9005|113013|8036|1|8|8208.08|0.01|0.01|A|F|1993-02-07|1993-02-25|1993-02-22|DELIVER IN PERSON|SHIP|egular theodolites boost expres| +9005|2636|2637|2|46|70776.98|0.02|0.06|A|F|1993-02-10|1993-02-10|1993-03-11|DELIVER IN PERSON|REG AIR| until the slowly re| +9005|88344|8345|3|30|39970.20|0.10|0.03|R|F|1993-03-27|1993-02-06|1993-04-05|TAKE BACK RETURN|TRUCK|gular deposits sle| +9005|190888|8446|4|44|87070.72|0.09|0.03|R|F|1993-02-04|1993-02-11|1993-02-28|TAKE BACK RETURN|TRUCK| quickly pending foxes. fu| +9005|44768|4769|5|23|39393.48|0.02|0.06|R|F|1993-01-20|1993-02-04|1993-01-21|TAKE BACK RETURN|SHIP|olites. carefully ironic e| +9005|2837|7838|6|26|45235.58|0.08|0.05|R|F|1993-03-22|1993-03-01|1993-03-29|TAKE BACK RETURN|RAIL|ess deposits sublate. pe| +9006|19063|9064|1|43|42228.58|0.09|0.06|N|O|1998-05-01|1998-03-04|1998-05-03|NONE|TRUCK|r quickly across t| +9006|191001|8559|2|2|2184.00|0.10|0.04|N|O|1998-01-21|1998-02-16|1998-02-09|TAKE BACK RETURN|AIR|t the blithely even ide| +9006|149427|4456|3|20|29528.40|0.03|0.02|N|O|1998-04-02|1998-04-01|1998-04-19|COLLECT COD|REG AIR|inal accounts. furiously reg| +9006|17726|2729|4|13|21368.36|0.00|0.04|N|O|1998-02-02|1998-03-14|1998-02-13|DELIVER IN PERSON|SHIP|ular account| +9006|110510|3022|5|9|13684.59|0.03|0.03|N|O|1998-05-01|1998-03-17|1998-05-06|DELIVER IN PERSON|MAIL|uctions. bold, regular requests| +9006|133229|3230|6|15|18933.30|0.06|0.07|N|O|1998-04-22|1998-03-13|1998-05-10|TAKE BACK RETURN|AIR|mptotes haggle accounts. theod| +9007|20433|2936|1|34|46016.62|0.02|0.05|N|O|1998-09-02|1998-09-03|1998-09-27|DELIVER IN PERSON|AIR|ic dolphins might boost | +9032|197889|409|1|8|15895.04|0.02|0.07|N|O|1995-11-04|1995-10-20|1995-11-28|COLLECT COD|FOB|c deposits | +9033|25643|648|1|30|47059.20|0.01|0.01|N|O|1997-05-27|1997-06-06|1997-06-18|DELIVER IN PERSON|REG AIR|uriously expre| +9033|166833|1866|2|5|9499.15|0.05|0.01|N|O|1997-06-29|1997-05-21|1997-07-02|TAKE BACK RETURN|TRUCK|ly carefully silent requests.| +9033|152509|5025|3|34|53091.00|0.01|0.02|N|O|1997-04-28|1997-06-13|1997-05-21|NONE|FOB|n pinto beans use doggedly afte| +9034|132969|2970|1|12|24023.52|0.08|0.08|R|F|1992-03-22|1992-06-09|1992-04-02|COLLECT COD|FOB|rs. carefully regular excuses nod sl| +9034|5569|8070|2|16|23592.96|0.07|0.02|A|F|1992-07-02|1992-04-12|1992-07-20|NONE|SHIP| pending pinto beans alon| +9034|189347|1866|3|7|10054.38|0.05|0.08|R|F|1992-06-03|1992-04-14|1992-06-24|TAKE BACK RETURN|MAIL|nt ideas grow quickly regular | +9035|162247|7280|1|45|58915.80|0.02|0.07|A|F|1994-02-02|1994-02-16|1994-02-20|NONE|AIR|s theodolites are| +9035|77747|5269|2|27|46567.98|0.06|0.01|A|F|1994-03-26|1994-03-04|1994-04-21|NONE|TRUCK| cajole. unusual pains are furiously.| +9035|80854|8379|3|11|20183.35|0.08|0.02|A|F|1994-04-08|1994-01-14|1994-04-28|NONE|TRUCK|furiously requests. f| +9035|107069|9580|4|11|11836.66|0.07|0.03|R|F|1994-03-15|1994-02-27|1994-04-05|COLLECT COD|MAIL|uests. slyly pending acc| +9036|151025|3541|1|22|23672.44|0.09|0.04|N|O|1996-04-21|1996-03-11|1996-05-15|TAKE BACK RETURN|MAIL| special packages cajole tow| +9036|67944|7945|2|49|93685.06|0.00|0.05|N|O|1996-01-03|1996-03-30|1996-01-14|DELIVER IN PERSON|SHIP|xes wake. furiously ironi| +9036|119806|9807|3|6|10954.80|0.07|0.08|N|O|1996-04-29|1996-03-16|1996-05-29|NONE|RAIL| final requests wake q| +9036|171722|1723|4|4|7174.88|0.07|0.00|N|O|1996-04-10|1996-03-28|1996-04-22|COLLECT COD|FOB|d theodoli| +9036|131178|3692|5|27|32647.59|0.06|0.05|N|O|1996-02-06|1996-02-16|1996-02-20|COLLECT COD|SHIP|es! carefully | +9036|107317|7318|6|40|52972.40|0.01|0.04|N|O|1996-01-31|1996-03-28|1996-02-15|TAKE BACK RETURN|TRUCK|o beans nod blithely| +9037|139328|6868|1|49|66998.68|0.06|0.07|N|O|1995-09-06|1995-11-04|1995-09-17|TAKE BACK RETURN|SHIP|le busily regular, even platelets. regular| +9037|69158|6677|2|44|49594.60|0.05|0.00|N|O|1995-11-20|1995-10-29|1995-11-27|COLLECT COD|RAIL|hely regular packages. | +9037|131068|3582|3|7|7693.42|0.02|0.01|N|O|1995-12-06|1995-09-25|1995-12-22|COLLECT COD|RAIL|its unwind alongside of the pending, final | +9038|37198|7199|1|12|13622.28|0.00|0.03|N|O|1995-09-19|1995-10-19|1995-10-08|COLLECT COD|SHIP|fily pending foxes sleep quickly. c| +9038|173963|6481|2|39|79441.44|0.10|0.00|N|O|1995-10-05|1995-09-27|1995-10-21|COLLECT COD|AIR|asymptotes. blithely ironic | +9038|187491|5046|3|38|59982.62|0.00|0.05|N|O|1995-08-06|1995-10-10|1995-08-28|COLLECT COD|AIR|ges dazzle bl| +9039|99057|6585|1|36|38017.80|0.01|0.03|A|F|1994-03-11|1994-04-30|1994-04-05|TAKE BACK RETURN|FOB|nic asymptotes cajole quickly accor| +9039|39255|9256|2|43|51352.75|0.01|0.08|R|F|1994-04-06|1994-04-08|1994-04-09|COLLECT COD|TRUCK|le. even theodolites of the sly | +9064|29875|4880|1|29|52341.23|0.07|0.08|A|F|1993-04-19|1993-03-04|1993-04-26|DELIVER IN PERSON|SHIP|ffily ironic foxes| +9064|103478|5989|2|2|2962.94|0.03|0.01|A|F|1993-02-17|1993-04-16|1993-03-15|DELIVER IN PERSON|MAIL| packages haggle quietly alongs| +9064|152242|7273|3|16|20707.84|0.06|0.00|R|F|1993-01-31|1993-04-29|1993-02-07|TAKE BACK RETURN|SHIP|ymptotes. fluffily express p| +9064|120738|5763|4|33|58038.09|0.05|0.01|R|F|1993-03-24|1993-04-04|1993-04-19|NONE|TRUCK|around the slyly final deposits. fluffily| +9065|131764|6791|1|40|71830.40|0.06|0.06|R|F|1993-02-17|1992-12-27|1993-02-18|TAKE BACK RETURN|AIR|ully express depo| +9065|142614|157|2|13|21535.93|0.10|0.02|R|F|1992-12-19|1992-12-22|1993-01-08|NONE|SHIP|carefully carefully ironic | +9065|100502|8033|3|8|12020.00|0.09|0.04|R|F|1993-01-05|1992-12-28|1993-01-07|TAKE BACK RETURN|REG AIR|lites serve | +9065|124861|2398|4|37|69776.82|0.04|0.07|A|F|1993-01-11|1993-01-05|1993-01-30|NONE|FOB| slyly even pinto beans sle| +9065|127495|2520|5|30|45674.70|0.02|0.06|A|F|1993-01-27|1993-01-16|1993-01-30|DELIVER IN PERSON|SHIP|counts. esc| +9065|192350|9908|6|32|46155.20|0.02|0.03|R|F|1992-11-30|1993-01-02|1992-12-27|TAKE BACK RETURN|SHIP|unts will have to wake above the furio| +9065|12027|7030|7|14|13146.28|0.05|0.02|A|F|1993-01-22|1993-01-23|1993-01-26|COLLECT COD|AIR|tside the even, final accounts. | +9066|134102|4103|1|7|7952.70|0.01|0.06|R|F|1993-06-28|1993-05-10|1993-07-10|NONE|AIR|jole blithely idle packages. flu| +9066|36162|8666|2|47|51613.52|0.02|0.05|A|F|1993-05-18|1993-05-22|1993-05-31|COLLECT COD|RAIL|cies. blithely ex| +9067|13399|5901|1|34|44621.26|0.01|0.00|A|F|1993-07-12|1993-08-22|1993-07-31|NONE|MAIL|sly. silently enticing re| +9067|180192|2711|2|8|10177.52|0.03|0.05|A|F|1993-07-21|1993-09-06|1993-08-13|COLLECT COD|TRUCK|. foxes according to the slyly even| +9067|77849|7850|3|19|34709.96|0.08|0.00|A|F|1993-07-18|1993-07-23|1993-08-07|NONE|MAIL|s doubt quickly. slyly silent accoun| +9067|5085|7586|4|47|46533.76|0.04|0.02|R|F|1993-09-04|1993-07-23|1993-09-16|COLLECT COD|SHIP|ts. final foxes ac| +9068|67326|7327|1|19|24573.08|0.09|0.05|N|O|1996-10-08|1996-12-17|1996-10-27|DELIVER IN PERSON|REG AIR| carefully. bold, unusua| +9068|136949|4489|2|5|9929.70|0.07|0.07|N|O|1996-10-17|1996-11-25|1996-11-01|TAKE BACK RETURN|REG AIR|deas use even depo| +9068|86160|3685|3|4|4584.64|0.06|0.07|N|O|1997-01-29|1996-12-17|1997-02-16|COLLECT COD|AIR|even packages nag. quickly final package| +9069|100830|8361|1|28|51263.24|0.09|0.06|N|O|1996-09-03|1996-08-28|1996-09-19|NONE|TRUCK|ites are blithely after | +9069|47116|7117|2|2|2126.22|0.06|0.00|N|O|1996-10-02|1996-07-31|1996-10-24|COLLECT COD|AIR|ross the slyly specia| +9069|64657|9670|3|38|61622.70|0.04|0.01|N|O|1996-08-05|1996-07-20|1996-08-30|NONE|TRUCK|express excuses. deposits wake| +9069|85269|2794|4|43|53933.18|0.10|0.04|N|O|1996-06-12|1996-08-08|1996-07-10|DELIVER IN PERSON|MAIL| asymptotes. slyly e| +9069|110512|3024|5|26|39585.26|0.02|0.04|N|O|1996-07-07|1996-07-31|1996-07-09|DELIVER IN PERSON|FOB|requests. bold, regular accounts cajole| +9070|62788|2789|1|43|75283.54|0.02|0.00|R|F|1994-05-26|1994-06-18|1994-06-22|NONE|MAIL|mptotes print; furio| +9070|77282|4804|2|29|36519.12|0.05|0.04|R|F|1994-04-15|1994-06-21|1994-05-10|NONE|MAIL|cajole. regular| +9070|75990|3512|3|27|53081.73|0.06|0.01|A|F|1994-06-03|1994-06-27|1994-06-17|TAKE BACK RETURN|FOB|g slyly among| +9070|158460|976|4|12|18221.52|0.07|0.06|R|F|1994-05-12|1994-05-23|1994-06-08|DELIVER IN PERSON|REG AIR|permanent ideas b| +9070|35077|84|5|1|1012.07|0.09|0.00|R|F|1994-05-15|1994-05-20|1994-05-27|COLLECT COD|MAIL|tes cajole slyly alongside of th| +9070|127864|7865|6|4|7567.44|0.10|0.08|A|F|1994-04-12|1994-06-05|1994-05-04|TAKE BACK RETURN|FOB| dependencies. bold, regular idea| +9071|20749|3252|1|3|5009.22|0.01|0.04|A|F|1993-07-23|1993-07-26|1993-08-11|DELIVER IN PERSON|RAIL|ular asympt| +9096|119793|7327|1|44|79762.76|0.01|0.08|R|F|1992-11-15|1992-10-07|1992-11-22|NONE|RAIL| express, final dugouts boo| +9096|155876|3422|2|17|32841.79|0.07|0.08|A|F|1992-09-08|1992-09-14|1992-09-30|TAKE BACK RETURN|SHIP|sits boost| +9096|197904|424|3|44|88083.60|0.02|0.05|R|F|1992-10-16|1992-09-07|1992-11-08|NONE|MAIL|he furiously pending court| +9096|165894|927|4|24|47037.36|0.02|0.00|A|F|1992-09-27|1992-09-24|1992-10-18|TAKE BACK RETURN|AIR|t. special deposits boost carefully?| +9096|176685|1720|5|15|26425.20|0.05|0.01|A|F|1992-11-01|1992-09-23|1992-11-08|DELIVER IN PERSON|AIR|egular acco| +9096|138580|6120|6|20|32371.60|0.05|0.06|R|F|1992-08-25|1992-09-24|1992-09-04|COLLECT COD|REG AIR|ckly. slow foxes solve | +9097|68779|6298|1|34|59424.18|0.04|0.05|N|O|1997-05-17|1997-03-28|1997-06-01|TAKE BACK RETURN|REG AIR| carefully express| +9097|167466|5015|2|34|52137.64|0.00|0.00|N|O|1997-05-06|1997-04-28|1997-05-14|TAKE BACK RETURN|REG AIR| excuses c| +9097|189190|4227|3|13|16629.47|0.01|0.01|N|O|1997-05-31|1997-04-13|1997-06-09|DELIVER IN PERSON|TRUCK|ending foxes w| +9097|102461|4972|4|37|54148.02|0.10|0.06|N|O|1997-06-07|1997-04-11|1997-06-14|DELIVER IN PERSON|FOB|l dependenc| +9098|109426|9427|1|40|57416.80|0.02|0.07|N|O|1998-03-12|1998-03-17|1998-03-31|DELIVER IN PERSON|FOB|ly. regular ac| +9098|115481|5482|2|40|59859.20|0.07|0.01|N|O|1998-02-23|1998-02-15|1998-03-01|TAKE BACK RETURN|AIR|s. pending instructions throughout the i| +9098|78024|532|3|10|10020.20|0.00|0.06|N|O|1997-12-24|1998-01-30|1998-01-08|COLLECT COD|FOB|alms. quickl| +9099|139158|1672|1|30|35914.50|0.10|0.00|N|O|1996-11-27|1996-10-31|1996-12-20|COLLECT COD|MAIL|. ironic, final packages use| +9099|24695|4696|2|25|40492.25|0.01|0.03|N|O|1996-12-12|1996-10-05|1996-12-16|DELIVER IN PERSON|FOB|pades. even, regular pinto beans ca| +9099|48118|3127|3|24|25586.64|0.00|0.00|N|O|1996-09-27|1996-10-31|1996-10-20|TAKE BACK RETURN|RAIL|fluffy ideas sleep busily ev| +9100|59613|7129|1|21|33024.81|0.01|0.02|N|O|1997-05-11|1997-04-10|1997-06-01|TAKE BACK RETURN|TRUCK|ngly ironi| +9100|108076|587|2|45|48783.15|0.00|0.05|N|O|1997-03-20|1997-04-22|1997-03-25|NONE|REG AIR|y pending theodolites cajole car| +9101|3774|1275|1|39|65433.03|0.07|0.06|A|F|1992-02-09|1992-02-06|1992-02-13|NONE|FOB|s packages. slyly | +9101|21845|1846|2|27|47704.68|0.09|0.05|R|F|1992-04-13|1992-02-11|1992-05-03|NONE|AIR|furiously special accounts. furious| +9101|135375|5376|3|31|43721.47|0.07|0.01|A|F|1992-02-17|1992-03-05|1992-03-06|TAKE BACK RETURN|MAIL|ronic request| +9101|44993|4994|4|44|85271.56|0.03|0.01|A|F|1992-01-21|1992-02-10|1992-02-01|COLLECT COD|MAIL|ag slyly carefully | +9101|195557|596|5|48|79322.40|0.01|0.05|R|F|1992-01-22|1992-03-20|1992-02-09|NONE|SHIP|ular packages wake carefully around t| +9102|22402|2403|1|6|7946.40|0.04|0.00|A|F|1992-10-07|1992-10-10|1992-10-23|TAKE BACK RETURN|REG AIR|quests detect ironic| +9102|108262|8263|2|33|41918.58|0.09|0.06|R|F|1992-10-01|1992-08-27|1992-10-26|COLLECT COD|FOB|e above the | +9102|147302|7303|3|12|16191.60|0.02|0.08|R|F|1992-10-08|1992-09-05|1992-10-20|DELIVER IN PERSON|REG AIR|ial packages. slyly| +9102|98476|8477|4|13|19168.11|0.10|0.05|R|F|1992-08-24|1992-09-11|1992-09-07|COLLECT COD|AIR|ily bold packages use slyl| +9102|70168|7690|5|43|48940.88|0.00|0.02|R|F|1992-07-28|1992-09-10|1992-08-10|COLLECT COD|TRUCK|at the final pinto| +9103|100592|593|1|37|58925.83|0.04|0.05|A|F|1992-06-04|1992-04-06|1992-06-08|COLLECT COD|MAIL|nto beans. regular, bold gifts use fluffi| +9103|40364|7877|2|45|58696.20|0.06|0.02|A|F|1992-04-15|1992-05-11|1992-05-08|COLLECT COD|TRUCK|nst the carefully regular req| +9103|183713|3714|3|1|1796.71|0.04|0.00|R|F|1992-06-04|1992-05-05|1992-06-26|NONE|FOB|lly regular requests| +9103|60303|5316|4|27|34109.10|0.09|0.06|R|F|1992-05-10|1992-05-01|1992-05-16|DELIVER IN PERSON|FOB|ly express dependencies maintain above | +9103|98763|3782|5|1|1761.76|0.09|0.04|A|F|1992-03-15|1992-04-15|1992-03-25|TAKE BACK RETURN|RAIL| requests. blithely unusu| +9103|101614|1615|6|49|79164.89|0.01|0.07|A|F|1992-04-12|1992-05-01|1992-05-12|DELIVER IN PERSON|MAIL|efully. carefully final instructions wake | +9128|117477|7478|1|5|7472.35|0.00|0.03|R|F|1993-09-09|1993-09-18|1993-09-20|TAKE BACK RETURN|FOB|phins use quickly| +9128|19612|2114|2|6|9189.66|0.05|0.05|A|F|1993-09-05|1993-09-23|1993-10-05|TAKE BACK RETURN|AIR|al, pending theodolites affix careful| +9129|42075|2076|1|27|27460.89|0.05|0.07|N|O|1997-07-06|1997-06-25|1997-07-31|COLLECT COD|MAIL|rding to the regular, ir| +9129|148172|8173|2|46|56127.82|0.04|0.01|N|O|1997-08-30|1997-08-09|1997-09-18|COLLECT COD|SHIP|pinto beans haggle blithely across the car| +9129|113048|8071|3|8|8488.32|0.07|0.03|N|O|1997-08-27|1997-07-24|1997-08-30|DELIVER IN PERSON|MAIL|sits are. quickly regular platelets cajol| +9129|185165|2720|4|27|33754.32|0.06|0.01|N|O|1997-06-13|1997-06-27|1997-07-01|NONE|REG AIR|latelets use blithely q| +9129|56376|6377|5|25|33309.25|0.01|0.07|N|O|1997-08-01|1997-07-19|1997-08-07|DELIVER IN PERSON|RAIL|re furiously. final, even dependencies acco| +9129|103987|1518|6|12|23891.76|0.09|0.05|N|O|1997-09-07|1997-07-22|1997-09-14|TAKE BACK RETURN|AIR|st quickly qui| +9129|107927|5458|7|2|3869.84|0.01|0.01|N|O|1997-06-11|1997-07-07|1997-06-22|COLLECT COD|AIR|. dogged sheaves nag blithely. pe| +9130|120745|5770|1|47|82989.78|0.09|0.07|N|O|1996-02-11|1996-02-08|1996-02-21|COLLECT COD|TRUCK|oxes haggl| +9130|157210|9726|2|27|34214.67|0.02|0.07|N|O|1996-01-17|1996-01-23|1996-02-16|NONE|RAIL|ternes solve| +9130|25120|2627|3|34|35534.08|0.08|0.03|N|O|1996-02-03|1996-01-14|1996-02-25|COLLECT COD|TRUCK|ual, final foxes integrate along the expr| +9131|124868|4869|1|31|58678.66|0.01|0.00|A|F|1994-09-10|1994-08-06|1994-09-21|DELIVER IN PERSON|REG AIR| carefully. carefully bold r| +9131|50329|7845|2|27|34541.64|0.10|0.07|R|F|1994-07-23|1994-07-27|1994-08-02|DELIVER IN PERSON|MAIL|ong the regular reques| +9131|77935|2950|3|40|76517.20|0.07|0.08|R|F|1994-08-21|1994-07-25|1994-09-13|DELIVER IN PERSON|FOB| are quickly even, even gro| +9131|37559|2566|4|39|58365.45|0.00|0.07|R|F|1994-06-23|1994-08-01|1994-06-26|NONE|FOB|etect along the quickly express requests| +9131|47922|427|5|45|84146.40|0.07|0.01|R|F|1994-05-22|1994-07-07|1994-05-29|DELIVER IN PERSON|RAIL|hely pending accounts. care| +9131|17953|5457|6|5|9354.75|0.03|0.08|A|F|1994-09-01|1994-07-30|1994-09-25|TAKE BACK RETURN|AIR|furiously along the fu| +9132|13770|3771|1|32|53880.64|0.09|0.05|N|O|1997-01-13|1996-12-26|1997-01-14|DELIVER IN PERSON|SHIP|ously along the even i| +9132|30949|8459|2|34|63917.96|0.00|0.00|N|O|1996-11-16|1997-01-20|1996-12-06|DELIVER IN PERSON|MAIL|ent requests according t| +9132|146946|9461|3|16|31887.04|0.07|0.08|N|O|1996-12-01|1996-12-14|1996-12-28|COLLECT COD|TRUCK|hely express ide| +9132|108210|5741|4|31|37764.51|0.05|0.05|N|O|1997-02-20|1996-12-26|1997-03-06|TAKE BACK RETURN|MAIL|lar deposits. slyly express requests hagg| +9132|78505|8506|5|34|50439.00|0.07|0.02|N|O|1996-12-10|1996-12-26|1996-12-14|DELIVER IN PERSON|RAIL| the furiously regular accou| +9133|14359|9362|1|9|11460.15|0.03|0.00|A|F|1994-09-17|1994-11-02|1994-09-29|TAKE BACK RETURN|SHIP|quests run even courts. quietly even | +9134|119494|7028|1|23|34810.27|0.04|0.02|N|O|1997-04-22|1997-03-13|1997-05-03|COLLECT COD|REG AIR|ending foxes! slyly| +9134|132331|2332|2|10|13633.30|0.07|0.00|N|O|1997-04-09|1997-04-12|1997-04-14|COLLECT COD|TRUCK|blithely. slyly ironic pinto beans d| +9134|85370|387|3|10|13553.70|0.07|0.05|N|O|1997-03-12|1997-03-21|1997-03-15|DELIVER IN PERSON|FOB|ously final| +9134|4195|4196|4|37|40670.03|0.10|0.06|N|O|1997-04-18|1997-03-30|1997-05-18|COLLECT COD|FOB|y express deposits.| +9134|90177|178|5|44|51355.48|0.01|0.04|N|O|1997-05-01|1997-02-18|1997-05-05|COLLECT COD|MAIL|s: regular requests do thrash blithe| +9134|194280|6800|6|20|27485.60|0.08|0.00|N|O|1997-04-11|1997-04-14|1997-04-22|DELIVER IN PERSON|FOB|ely above the b| +9134|53618|3619|7|28|44005.08|0.03|0.03|N|O|1997-05-17|1997-03-20|1997-05-20|COLLECT COD|SHIP|thely bold packages.| +9135|143382|925|1|22|31358.36|0.09|0.06|A|F|1993-03-14|1993-01-28|1993-04-13|TAKE BACK RETURN|SHIP|ven depths sleep ideas. ironic| +9135|20418|7925|2|46|61566.86|0.05|0.06|R|F|1993-01-29|1993-02-19|1993-02-20|TAKE BACK RETURN|MAIL|, even requests sleep abou| +9135|152130|2131|3|40|47285.20|0.01|0.08|A|F|1993-04-07|1993-01-27|1993-05-04|DELIVER IN PERSON|TRUCK|onic accoun| +9135|47633|2642|4|1|1580.63|0.02|0.06|A|F|1993-01-31|1993-03-01|1993-02-16|NONE|FOB|e ideas affix furiously across the slyly| +9135|161021|1022|5|28|30296.56|0.01|0.02|R|F|1992-12-25|1993-03-01|1993-01-02|COLLECT COD|RAIL|final accounts thrash b| +9135|77018|4540|6|1|995.01|0.03|0.08|A|F|1993-02-06|1993-02-05|1993-02-20|COLLECT COD|RAIL| wake quickly even, express i| +9160|163639|8672|1|50|85131.50|0.01|0.08|N|O|1996-09-14|1996-09-16|1996-10-13|NONE|FOB|ffily carefully thin | +9161|63292|8305|1|25|31382.25|0.06|0.04|R|F|1993-12-24|1994-01-05|1994-01-19|NONE|FOB|xes cajole above| +9161|139367|4394|2|34|47816.24|0.04|0.01|R|F|1994-03-28|1994-01-30|1994-03-31|NONE|MAIL|ccounts. slyly regular package| +9161|136666|6667|3|21|35755.86|0.10|0.08|A|F|1994-03-24|1994-02-22|1994-04-20|COLLECT COD|FOB|usly furiously even | +9161|136403|3943|4|4|5757.60|0.01|0.06|A|F|1993-12-15|1993-12-28|1993-12-24|DELIVER IN PERSON|REG AIR|e quickly ev| +9161|124726|7239|5|30|52521.60|0.02|0.04|A|F|1994-03-07|1994-01-28|1994-04-03|NONE|REG AIR|foxes use blithely at the slyly quick p| +9161|62777|296|6|31|53932.87|0.03|0.03|R|F|1994-03-14|1994-01-21|1994-04-12|NONE|REG AIR|ests. packages serve ruthl| +9161|76287|1302|7|50|63164.00|0.00|0.08|A|F|1994-01-17|1994-02-21|1994-01-31|COLLECT COD|SHIP|ake across the blithely regula| +9162|148823|1338|1|31|58026.42|0.09|0.07|N|O|1996-08-08|1996-09-24|1996-08-10|COLLECT COD|SHIP|kly slyly regular foxes. sly| +9162|53697|3698|2|19|31363.11|0.08|0.04|N|O|1996-07-10|1996-09-27|1996-07-16|NONE|SHIP|kly unusual package| +9162|74119|4120|3|35|38258.85|0.02|0.04|N|O|1996-07-10|1996-08-20|1996-07-24|COLLECT COD|AIR|e furiously daring platelets. even, regular| +9163|32971|2972|1|24|45695.28|0.00|0.04|R|F|1993-08-21|1993-10-14|1993-08-31|NONE|RAIL| slyly ironic requests. furi| +9163|140535|536|2|16|25208.48|0.10|0.03|A|F|1993-11-27|1993-09-19|1993-12-22|COLLECT COD|TRUCK|ites. blithely regular notorn| +9163|160723|8272|3|41|73132.52|0.06|0.07|R|F|1993-11-14|1993-11-11|1993-11-19|COLLECT COD|TRUCK|fluffily after the| +9163|69452|6971|4|32|45486.40|0.01|0.08|A|F|1993-09-26|1993-10-10|1993-10-20|TAKE BACK RETURN|RAIL|among the final dependencies ca| +9163|66547|6548|5|43|65082.22|0.00|0.06|R|F|1993-11-11|1993-10-16|1993-11-25|DELIVER IN PERSON|REG AIR| ironic escapades affix fur| +9163|45765|3278|6|2|3421.52|0.10|0.03|R|F|1993-09-28|1993-10-25|1993-10-22|NONE|SHIP|orses. blithely ironic instructions are ab| +9164|143479|3480|1|22|33494.34|0.06|0.00|R|F|1994-10-20|1994-12-01|1994-10-30|DELIVER IN PERSON|RAIL|en ideas. carefull| +9164|41642|6651|2|37|58594.68|0.09|0.02|R|F|1994-11-11|1995-01-07|1994-12-09|DELIVER IN PERSON|REG AIR| throughout the| +9165|8843|1344|1|39|68321.76|0.04|0.07|R|F|1995-04-22|1995-05-11|1995-04-24|COLLECT COD|REG AIR|he blithely pending packages? pac| +9165|18490|8491|2|25|35212.25|0.09|0.01|N|O|1995-07-21|1995-06-20|1995-07-24|COLLECT COD|MAIL|. furiously regular requests haggle qu| +9166|41416|6425|1|11|14931.51|0.10|0.00|N|O|1996-02-04|1996-02-29|1996-03-03|NONE|TRUCK|egular dugouts sleep bl| +9166|63605|1124|2|40|62744.00|0.00|0.05|N|O|1996-05-23|1996-04-12|1996-06-18|TAKE BACK RETURN|RAIL|ly special deposits. s| +9166|2015|7016|3|35|32095.35|0.02|0.06|N|O|1996-05-29|1996-03-16|1996-06-20|TAKE BACK RETURN|REG AIR|structions wake slyly bold pinto beans. fox| +9166|60166|167|4|33|37163.28|0.08|0.01|N|O|1996-05-19|1996-04-04|1996-05-26|NONE|RAIL|ole blithely blithely even patterns. | +9166|196302|3860|5|50|69915.00|0.00|0.08|N|O|1996-04-18|1996-04-19|1996-05-05|NONE|AIR| fluffily final deposits. carefully iro| +9166|31415|8925|6|17|22888.97|0.02|0.05|N|O|1996-03-19|1996-04-13|1996-04-18|COLLECT COD|AIR|usly final accounts haggle blit| +9166|178947|3982|7|25|50648.50|0.02|0.05|N|O|1996-02-26|1996-04-15|1996-03-03|DELIVER IN PERSON|SHIP| haggle quickly. bold pinto beans along | +9167|150946|5977|1|18|35944.92|0.05|0.04|N|O|1996-11-07|1996-11-29|1996-11-11|NONE|AIR|carefully close deposits sleep furiously| +9167|134290|6804|2|34|45025.86|0.03|0.00|N|O|1997-01-21|1996-12-25|1997-01-25|TAKE BACK RETURN|MAIL|s. slyly u| +9167|196710|6711|3|44|79495.24|0.07|0.02|N|O|1996-12-29|1996-11-13|1996-12-30|DELIVER IN PERSON|FOB| even requests boost fl| +9167|95673|692|4|24|40048.08|0.03|0.05|N|O|1997-01-09|1996-10-26|1997-01-14|NONE|REG AIR|nic deposits was. slyly final deposits| +9167|163718|6235|5|25|44542.75|0.07|0.02|N|O|1996-12-22|1996-12-01|1997-01-19|TAKE BACK RETURN|RAIL|l waters wake after the regular id| +9192|92093|7112|1|26|28212.34|0.05|0.05|A|F|1993-08-06|1993-07-07|1993-08-25|DELIVER IN PERSON|REG AIR|eodolites cajole along the blithely regul| +9192|191307|6346|2|29|40550.70|0.09|0.02|A|F|1993-07-09|1993-07-24|1993-08-07|DELIVER IN PERSON|TRUCK|ep against the slyly regular deposits. f| +9192|91172|6191|3|30|34895.10|0.02|0.03|A|F|1993-05-14|1993-06-27|1993-06-07|TAKE BACK RETURN|MAIL|c, express foxes. furiously regular instru| +9192|119167|9168|4|35|41515.60|0.10|0.00|R|F|1993-08-06|1993-07-07|1993-08-10|COLLECT COD|AIR|pinto beans. slyly unusual accoun| +9192|28270|3275|5|28|33551.56|0.07|0.03|A|F|1993-06-08|1993-06-06|1993-07-06|NONE|MAIL|ording to the furiously final deposi| +9192|120950|5975|6|13|25622.35|0.01|0.02|A|F|1993-07-13|1993-08-04|1993-07-18|NONE|MAIL|accounts nag fluffily requ| +9193|169789|7338|1|19|35316.82|0.10|0.03|N|O|1997-06-30|1997-08-09|1997-07-13|DELIVER IN PERSON|SHIP|should have to poach. ironic, even accounts| +9193|33351|8358|2|33|42383.55|0.06|0.01|N|O|1997-09-28|1997-08-09|1997-10-23|COLLECT COD|FOB|tions. carefully final deposits accordin| +9194|118082|594|1|33|36302.64|0.01|0.02|N|O|1998-01-10|1997-12-06|1998-02-02|NONE|REG AIR|al ideas. special requests| +9194|197851|5409|2|30|58465.50|0.00|0.05|N|O|1998-02-20|1998-01-20|1998-02-25|DELIVER IN PERSON|RAIL|ly regular platelets. furiously| +9194|69221|9222|3|34|40467.48|0.00|0.02|N|O|1997-11-13|1997-12-25|1997-12-05|NONE|RAIL|s about the slyly even foxes mold blith| +9195|38321|8322|1|6|7555.92|0.03|0.01|A|F|1995-06-06|1995-04-04|1995-06-09|DELIVER IN PERSON|RAIL|tes cajole| +9195|49874|7387|2|7|12767.09|0.02|0.02|A|F|1995-04-18|1995-03-22|1995-05-01|COLLECT COD|REG AIR|ely express courts kindle slyly reg| +9195|28757|1260|3|40|67430.00|0.09|0.07|A|F|1995-06-04|1995-04-25|1995-06-09|TAKE BACK RETURN|TRUCK|ly even acco| +9195|117555|7556|4|49|77054.95|0.08|0.00|A|F|1995-03-01|1995-04-19|1995-03-31|NONE|REG AIR|fully alongside of the packa| +9195|132464|4|5|24|35915.04|0.04|0.00|A|F|1995-02-27|1995-04-06|1995-03-12|NONE|SHIP|kly after the carefully i| +9195|108477|8478|6|40|59418.80|0.04|0.02|N|F|1995-05-30|1995-04-22|1995-06-21|DELIVER IN PERSON|AIR|its wake among the bold ideas. de| +9195|160145|2662|7|33|39769.62|0.00|0.02|R|F|1995-04-13|1995-05-08|1995-05-03|NONE|FOB|ests. blithely even | +9196|151004|6035|1|4|4220.00|0.02|0.03|R|F|1992-08-20|1992-07-14|1992-08-29|DELIVER IN PERSON|SHIP| according to the furious| +9196|123663|3664|2|39|65779.74|0.05|0.00|R|F|1992-07-07|1992-06-16|1992-07-14|TAKE BACK RETURN|TRUCK|y regular asymptotes. pains wake a| +9197|56069|1080|1|5|5125.30|0.04|0.07|R|F|1994-03-05|1994-05-31|1994-03-22|TAKE BACK RETURN|RAIL|riously. packages thrash f| +9197|146036|1065|2|30|32460.90|0.07|0.00|R|F|1994-03-07|1994-04-27|1994-03-22|TAKE BACK RETURN|REG AIR|ular requests. fluffily ironic| +9197|18034|3037|3|15|14280.45|0.06|0.03|R|F|1994-05-05|1994-04-04|1994-05-22|NONE|SHIP|jole carefully around t| +9197|95484|7994|4|49|72494.52|0.01|0.06|R|F|1994-06-02|1994-05-24|1994-06-24|DELIVER IN PERSON|TRUCK|fy deposits integrate sly| +9197|196796|1835|5|33|62462.07|0.07|0.00|A|F|1994-06-27|1994-04-30|1994-07-19|DELIVER IN PERSON|TRUCK|unusual soma| +9197|149391|9392|6|43|61936.77|0.08|0.01|A|F|1994-04-21|1994-04-11|1994-05-06|NONE|AIR|se against the furiously furio| +9198|16970|9472|1|7|13208.79|0.09|0.08|N|O|1997-10-11|1997-09-29|1997-10-19|COLLECT COD|AIR|ully special packages about | +9198|7330|7331|2|44|54442.52|0.03|0.01|N|O|1997-07-22|1997-08-04|1997-08-16|COLLECT COD|FOB|s sleep blithely. quickly even instructions| +9198|181926|6963|3|39|78308.88|0.09|0.04|N|O|1997-08-10|1997-09-30|1997-08-16|TAKE BACK RETURN|MAIL|ites are quic| +9198|28123|5630|4|26|27329.12|0.01|0.04|N|O|1997-10-29|1997-08-05|1997-11-10|TAKE BACK RETURN|SHIP|eep silent depo| +9198|49864|4873|5|22|39904.92|0.04|0.01|N|O|1997-07-05|1997-09-20|1997-07-14|NONE|RAIL|ar deposits alo| +9198|60639|8158|6|47|75182.61|0.03|0.04|N|O|1997-08-07|1997-08-10|1997-09-02|COLLECT COD|RAIL|es. carefull| +9199|174538|9573|1|10|16125.30|0.09|0.07|A|F|1994-12-08|1995-01-11|1994-12-18|DELIVER IN PERSON|REG AIR| packages are carefully. instructions | +9199|44993|7498|2|14|27131.86|0.03|0.06|R|F|1994-11-25|1995-02-06|1994-12-17|TAKE BACK RETURN|REG AIR|long the blithely regular deposits. silen| +9199|187118|4673|3|5|6025.55|0.03|0.06|R|F|1994-12-15|1995-02-07|1994-12-19|COLLECT COD|FOB|ngside of the slyly final accounts cajole a| +9199|88723|6248|4|14|23964.08|0.08|0.08|A|F|1995-02-10|1994-12-27|1995-03-01|DELIVER IN PERSON|TRUCK|nag blithel| +9199|158262|3293|5|44|58091.44|0.03|0.00|R|F|1995-01-19|1994-12-31|1995-01-30|NONE|RAIL| the quickly regular | +9199|105830|851|6|15|27537.45|0.00|0.01|A|F|1994-11-30|1995-01-15|1994-12-20|TAKE BACK RETURN|AIR|ing deposits c| +9199|78626|3641|7|21|33697.02|0.04|0.05|R|F|1995-03-15|1995-01-20|1995-03-18|DELIVER IN PERSON|MAIL| sleep against the qu| +9224|65507|8014|1|29|42702.50|0.07|0.05|N|O|1997-09-09|1997-09-23|1997-09-10|TAKE BACK RETURN|REG AIR|sual dolphins sleep blithely across the | +9225|36877|6878|1|48|87065.76|0.06|0.02|R|F|1992-03-10|1992-02-27|1992-03-23|COLLECT COD|TRUCK|even platelets cajole regular, r| +9225|184653|2208|2|11|19114.15|0.00|0.04|A|F|1992-03-14|1992-03-27|1992-04-06|NONE|TRUCK|eposits alongside of the fluffily p| +9225|56428|6429|3|1|1384.42|0.07|0.06|A|F|1992-04-10|1992-03-11|1992-05-07|TAKE BACK RETURN|REG AIR|lphins wake slowly. slyly | +9225|178866|8867|4|34|66125.24|0.03|0.07|R|F|1992-01-17|1992-02-12|1992-02-03|DELIVER IN PERSON|REG AIR|silent instructions.| +9225|191112|3632|5|37|44515.07|0.10|0.05|R|F|1992-01-19|1992-03-21|1992-02-05|COLLECT COD|RAIL|posits above | +9226|143521|6036|1|2|3129.04|0.04|0.08|N|O|1996-03-24|1996-02-26|1996-03-25|NONE|SHIP|ets nod slyly| +9226|149664|2179|2|8|13709.28|0.01|0.04|N|O|1996-03-03|1996-02-12|1996-03-14|COLLECT COD|FOB|quickly blithely pending | +9226|197256|9776|3|34|46010.50|0.10|0.01|N|O|1996-03-17|1996-01-29|1996-04-09|TAKE BACK RETURN|SHIP|s eat carefully a| +9226|76719|9227|4|14|23739.94|0.10|0.06|N|O|1996-02-12|1996-02-29|1996-03-08|NONE|AIR|s. slyly express accounts sleep blithely ab| +9226|11764|4266|5|32|53624.32|0.09|0.01|N|O|1996-01-21|1996-01-17|1996-02-04|TAKE BACK RETURN|REG AIR|haggle bold, ironic ideas. fluffily | +9226|104934|7445|6|6|11633.58|0.00|0.01|N|O|1996-02-02|1996-02-08|1996-02-29|TAKE BACK RETURN|SHIP|arefully slyly final p| +9227|156503|1534|1|17|26511.50|0.10|0.01|A|F|1995-01-18|1995-01-18|1995-01-29|DELIVER IN PERSON|AIR|riously against the| +9227|129740|4765|2|26|46013.24|0.04|0.06|R|F|1994-11-08|1994-12-24|1994-11-09|NONE|SHIP|eve quickly furiously regular instruc| +9227|125870|895|3|23|43605.01|0.05|0.04|R|F|1994-11-04|1994-12-25|1994-11-27|COLLECT COD|AIR|times ironic accounts x-| +9227|80288|5305|4|3|3804.84|0.05|0.08|A|F|1995-01-18|1994-12-22|1995-01-25|NONE|FOB|all have to cajole furiously express a| +9228|48881|8882|1|3|5489.64|0.03|0.05|N|O|1997-08-09|1997-08-16|1997-09-05|DELIVER IN PERSON|TRUCK|lar requests sleep. carefully | +9228|134573|4574|2|4|6430.28|0.03|0.08|N|O|1997-10-08|1997-09-02|1997-10-22|DELIVER IN PERSON|SHIP|ding to the ideas integrate al| +9228|165645|678|3|23|39344.72|0.07|0.08|N|O|1997-07-22|1997-08-18|1997-07-24|NONE|TRUCK|ans wake quic| +9228|194575|7095|4|15|25043.55|0.01|0.04|N|O|1997-11-10|1997-10-10|1997-12-01|DELIVER IN PERSON|FOB|er the dependencies boost furiously i| +9228|21955|4458|5|26|48800.70|0.03|0.02|N|O|1997-07-25|1997-09-18|1997-08-04|DELIVER IN PERSON|TRUCK|counts. ca| +9229|120608|8145|1|27|43972.20|0.05|0.03|A|F|1992-04-06|1992-03-19|1992-05-01|TAKE BACK RETURN|REG AIR|unts. carefully| +9229|51841|4347|2|37|66335.08|0.04|0.04|A|F|1992-04-13|1992-04-28|1992-05-09|DELIVER IN PERSON|TRUCK|aggle slyly unusual dolphin| +9229|75478|3000|3|45|65406.15|0.04|0.06|A|F|1992-04-06|1992-04-14|1992-04-16|DELIVER IN PERSON|REG AIR|nusual sentiments use carefully regula| +9229|149692|9693|4|26|45283.94|0.01|0.02|R|F|1992-02-03|1992-03-18|1992-02-04|COLLECT COD|SHIP|al dugouts are furiously. bold instruct| +9229|66868|9375|5|7|12844.02|0.01|0.00|R|F|1992-05-26|1992-03-24|1992-06-10|COLLECT COD|AIR|lithely express requests a| +9229|43851|3852|6|17|30512.45|0.01|0.00|A|F|1992-05-06|1992-04-12|1992-05-26|DELIVER IN PERSON|SHIP|cial, final excuses sleep fur| +9229|2396|7397|7|21|27266.19|0.03|0.01|A|F|1992-03-05|1992-03-31|1992-03-06|TAKE BACK RETURN|TRUCK|ending theodolites-- quickly ironic req| +9230|55720|3236|1|28|46920.16|0.09|0.00|N|O|1995-09-13|1995-08-30|1995-09-16|COLLECT COD|AIR| regular deposits. | +9230|72324|4832|2|3|3888.96|0.07|0.07|N|O|1995-06-19|1995-08-03|1995-06-25|DELIVER IN PERSON|REG AIR|ticingly regular requests cajole fur| +9230|139727|9728|3|19|33567.68|0.09|0.02|N|O|1995-09-25|1995-08-08|1995-10-22|DELIVER IN PERSON|SHIP|s cajole blithe| +9231|100776|777|1|25|44419.25|0.04|0.02|N|O|1997-02-21|1996-12-11|1997-03-11|TAKE BACK RETURN|FOB|ter the regular ins| +9231|136499|9013|2|15|23032.35|0.10|0.04|N|O|1996-12-15|1997-01-12|1997-01-11|NONE|MAIL|ly even deposits use car| +9231|127316|7317|3|7|9403.17|0.04|0.07|N|O|1997-03-02|1996-12-18|1997-03-13|COLLECT COD|RAIL|heodolites against | +9231|192579|7618|4|10|16715.70|0.10|0.03|N|O|1996-12-20|1997-01-01|1997-01-16|NONE|MAIL|. quickly final requests cajo| +9256|108785|6316|1|16|28700.48|0.08|0.07|R|F|1994-04-27|1994-03-17|1994-05-26|COLLECT COD|TRUCK|nstructions cajole blithely blith| +9257|72716|7731|1|4|6754.84|0.10|0.02|R|F|1994-11-30|1994-11-01|1994-12-17|TAKE BACK RETURN|FOB|ccounts are furiously. slyl| +9257|131380|6407|2|23|32461.74|0.06|0.04|R|F|1994-12-19|1994-12-28|1995-01-08|NONE|FOB|eodolites beneath t| +9257|98632|8633|3|5|8153.15|0.01|0.01|A|F|1994-10-16|1994-12-22|1994-10-21|TAKE BACK RETURN|RAIL| furiously packages. daringly bold realms| +9257|94954|2482|4|6|11693.70|0.02|0.02|A|F|1994-12-07|1994-11-03|1994-12-23|DELIVER IN PERSON|RAIL|ly quiet dolph| +9257|81936|6953|5|5|9589.65|0.02|0.07|R|F|1994-12-05|1994-11-04|1994-12-26|COLLECT COD|REG AIR|. blithely ironic platele| +9257|85673|5674|6|26|43125.42|0.03|0.05|R|F|1994-12-03|1994-11-27|1994-12-05|TAKE BACK RETURN|RAIL|sual packag| +9257|97616|5144|7|38|61317.18|0.06|0.03|A|F|1995-01-25|1994-12-01|1995-02-09|NONE|RAIL|s. ironic packages alo| +9258|24699|4700|1|18|29226.42|0.04|0.04|R|F|1994-05-31|1994-05-10|1994-06-08|TAKE BACK RETURN|TRUCK|tes. furiou| +9258|102538|7559|2|15|23107.95|0.01|0.03|A|F|1994-05-19|1994-06-11|1994-06-15|TAKE BACK RETURN|SHIP| beans; regular accounts haggle around | +9259|28110|613|1|36|37371.96|0.09|0.00|N|O|1996-01-17|1995-11-13|1996-01-27|TAKE BACK RETURN|AIR|endencies above t| +9259|43898|3899|2|23|42363.47|0.06|0.07|N|O|1995-12-05|1995-12-11|1995-12-18|TAKE BACK RETURN|REG AIR|nusual accounts na| +9259|180669|670|3|11|19246.26|0.01|0.00|N|O|1995-11-18|1995-11-09|1995-12-14|NONE|SHIP|eposits. quickly express d| +9259|89063|1572|4|39|41030.34|0.10|0.03|N|O|1996-01-08|1996-01-03|1996-01-25|DELIVER IN PERSON|RAIL|cajole fluffily deposits. accounts play flu| +9260|15558|3062|1|34|50100.70|0.10|0.05|A|F|1995-01-26|1995-01-20|1995-02-06|NONE|SHIP|oys nag fluffily quick excus| +9260|75508|3030|2|26|38571.00|0.07|0.07|R|F|1994-12-14|1994-12-29|1994-12-17|NONE|TRUCK| accounts are bli| +9260|62318|2319|3|44|56333.64|0.08|0.03|A|F|1995-02-24|1994-12-11|1995-03-06|TAKE BACK RETURN|MAIL| unusual theodolites: theodolites| +9260|165684|8201|4|48|83984.64|0.06|0.04|R|F|1994-11-26|1995-01-15|1994-12-04|DELIVER IN PERSON|FOB|posits. accounts sleep. pending theo| +9260|41334|3839|5|32|40810.56|0.09|0.02|A|F|1994-12-08|1995-01-08|1994-12-20|NONE|MAIL|s affix against the blithely | +9261|55237|7743|1|29|34574.67|0.02|0.05|A|F|1994-09-23|1994-10-10|1994-10-08|NONE|AIR| around the slyly even theod| +9261|152680|2681|2|7|12128.76|0.07|0.01|R|F|1994-08-27|1994-09-30|1994-09-05|TAKE BACK RETURN|FOB|ffily permanent accounts.| +9261|88664|1173|3|48|79327.68|0.01|0.02|R|F|1994-10-09|1994-10-14|1994-10-24|COLLECT COD|AIR|ions. slyly regular| +9261|167291|4840|4|21|28524.09|0.01|0.05|R|F|1994-09-16|1994-10-29|1994-10-14|NONE|TRUCK|t the furiously ironic packages boost | +9261|43711|8720|5|47|77771.37|0.01|0.07|A|F|1994-11-14|1994-10-10|1994-11-30|DELIVER IN PERSON|AIR|cies haggle carefully a| +9262|476|7977|1|2|2752.94|0.03|0.08|A|F|1994-02-16|1994-03-04|1994-02-18|TAKE BACK RETURN|SHIP|ays mold slyly. evenly even instructi| +9262|193641|6161|2|2|3469.28|0.00|0.06|R|F|1994-01-19|1994-03-09|1994-01-23|DELIVER IN PERSON|RAIL|ic platelets cajole furiously aft| +9262|118982|4005|3|27|54026.46|0.06|0.04|A|F|1994-01-25|1994-03-09|1994-02-17|NONE|TRUCK|permanent platelets. furiously bold request| +9263|91388|3898|1|39|53795.82|0.09|0.03|A|F|1994-02-14|1994-02-08|1994-02-16|TAKE BACK RETURN|RAIL|fully after the furi| +9263|156690|6691|2|33|57640.77|0.03|0.07|R|F|1994-03-21|1994-03-03|1994-04-02|COLLECT COD|SHIP|rding to the blithely | +9263|72060|2061|3|27|27865.62|0.01|0.06|R|F|1994-03-11|1994-01-31|1994-04-02|DELIVER IN PERSON|FOB| special r| +9288|13332|836|1|1|1245.33|0.09|0.05|R|F|1994-11-23|1994-11-24|1994-11-30|DELIVER IN PERSON|TRUCK| special theodolites sleep quickly instruct| +9288|59879|7395|2|2|3677.74|0.05|0.08|R|F|1994-11-09|1994-10-25|1994-11-23|COLLECT COD|MAIL|ggle silent platelets.| +9288|169628|2145|3|35|59416.70|0.08|0.07|R|F|1994-10-06|1994-10-25|1994-10-30|DELIVER IN PERSON|TRUCK|accounts. carefully pendi| +9288|125634|5635|4|14|23234.82|0.08|0.04|R|F|1994-10-12|1994-11-21|1994-10-28|NONE|MAIL|leep. even, | +9288|118006|8007|5|6|6144.00|0.04|0.01|A|F|1994-09-12|1994-11-02|1994-10-04|NONE|TRUCK|ently final accounts. fin| +9288|116776|6777|6|35|62746.95|0.09|0.05|R|F|1994-11-11|1994-11-18|1994-11-28|COLLECT COD|SHIP|larly final theodolites| +9289|18693|3696|1|34|54797.46|0.08|0.01|N|O|1996-03-15|1996-02-26|1996-03-29|DELIVER IN PERSON|AIR|s must have to sleep carefully spe| +9289|168188|705|2|44|55271.92|0.00|0.01|N|O|1996-04-30|1996-03-01|1996-05-24|TAKE BACK RETURN|MAIL|telets. unusual foxe| +9289|122850|5363|3|15|28092.75|0.00|0.03|N|O|1996-03-12|1996-04-10|1996-03-15|DELIVER IN PERSON|FOB| slyly final packa| +9289|127843|5380|4|32|59866.88|0.04|0.01|N|O|1996-04-29|1996-04-07|1996-05-26|TAKE BACK RETURN|MAIL|ons cajole carefu| +9289|46227|1236|5|33|38716.26|0.02|0.05|N|O|1996-02-15|1996-02-21|1996-03-03|DELIVER IN PERSON|SHIP|lly unusual packages wake. accou| +9289|120964|8501|6|28|55578.88|0.03|0.04|N|O|1996-04-18|1996-04-10|1996-04-23|COLLECT COD|FOB|ies. warthogs along the carefull| +9290|41497|4002|1|36|51785.64|0.03|0.02|N|O|1996-05-19|1996-04-25|1996-06-06|TAKE BACK RETURN|AIR|final deposits. ideas integrate along the | +9290|27906|409|2|9|16505.10|0.05|0.04|N|O|1996-05-15|1996-04-04|1996-06-10|TAKE BACK RETURN|MAIL|its. even requests haggle furio| +9291|15489|5490|1|17|23876.16|0.04|0.06|N|O|1998-02-01|1997-12-28|1998-02-11|NONE|RAIL| carefully regular accou| +9292|136972|4512|1|46|92412.62|0.07|0.03|N|O|1998-05-26|1998-04-16|1998-06-10|DELIVER IN PERSON|TRUCK|pending packages after the fluffily specia| +9292|76990|9498|2|9|17702.91|0.01|0.08|N|O|1998-05-10|1998-05-06|1998-05-21|COLLECT COD|RAIL| final instructions sle| +9292|158574|3605|3|21|34283.97|0.03|0.00|N|O|1998-04-15|1998-04-17|1998-05-08|NONE|FOB|cajole slyly. final| +9292|150949|950|4|21|41998.74|0.05|0.02|N|O|1998-05-15|1998-04-22|1998-06-13|COLLECT COD|SHIP|l frays. foxes ca| +9292|183788|1343|5|5|9358.90|0.04|0.08|N|O|1998-05-28|1998-05-14|1998-06-01|DELIVER IN PERSON|TRUCK|nto beans boost within the final depos| +9292|120605|606|6|29|47142.40|0.00|0.06|N|O|1998-05-16|1998-03-31|1998-06-11|COLLECT COD|FOB| players: blithely| +9292|197094|9614|7|33|39305.97|0.01|0.01|N|O|1998-03-21|1998-04-14|1998-03-26|TAKE BACK RETURN|AIR|ironic pinto beans sleep. regular| +9293|142342|9885|1|32|44298.88|0.01|0.06|N|O|1997-05-23|1997-04-23|1997-05-26|TAKE BACK RETURN|TRUCK|ep carefully carefully ir| +9293|139342|1856|2|23|31770.82|0.04|0.04|N|O|1997-02-07|1997-04-25|1997-03-03|NONE|REG AIR|ar foxes impress f| +9293|117465|4999|3|37|54851.02|0.06|0.07|N|O|1997-05-25|1997-03-19|1997-06-16|NONE|SHIP| slyly express requests. accounts | +9294|125509|534|1|8|12276.00|0.00|0.00|N|O|1998-03-22|1998-05-08|1998-04-03|DELIVER IN PERSON|MAIL|t slyly. slyly idle requests wake| +9294|21736|1737|2|1|1657.73|0.00|0.07|N|O|1998-03-05|1998-05-14|1998-04-03|COLLECT COD|MAIL| carefully iro| +9295|168524|3557|1|41|65293.32|0.05|0.00|N|O|1996-01-24|1996-03-16|1996-02-02|DELIVER IN PERSON|RAIL|n forges hag| +9295|168408|5957|2|26|38386.40|0.10|0.08|N|O|1996-04-13|1996-04-04|1996-05-04|COLLECT COD|MAIL|final dolphi| +9295|16550|9052|3|32|46929.60|0.10|0.08|N|O|1996-02-24|1996-03-29|1996-03-03|NONE|FOB|r quickly. instruct| +9295|149876|7419|4|11|21184.57|0.09|0.06|N|O|1996-03-11|1996-02-26|1996-04-07|TAKE BACK RETURN|MAIL|eas detect after the even, even | +9295|160547|5580|5|48|77161.92|0.06|0.04|N|O|1996-02-26|1996-03-10|1996-03-04|TAKE BACK RETURN|FOB|uickly even deposits| +9295|110896|897|6|43|81996.27|0.09|0.01|N|O|1996-02-13|1996-02-22|1996-03-02|COLLECT COD|AIR|theodolites s| +9295|25722|3229|7|29|47783.88|0.00|0.04|N|O|1996-03-26|1996-03-27|1996-04-09|NONE|RAIL|e ironic, regular packages. f| +9320|99448|1958|1|38|55002.72|0.06|0.04|N|O|1997-05-10|1997-08-01|1997-05-28|TAKE BACK RETURN|FOB|y unusual platele| +9320|7387|2388|2|26|33653.88|0.03|0.05|N|O|1997-08-12|1997-07-28|1997-08-14|NONE|FOB|ctions sleep furiously furi| +9320|141323|8866|3|3|4092.96|0.08|0.04|N|O|1997-08-02|1997-06-23|1997-08-31|TAKE BACK RETURN|RAIL| cajole blithely. final pinto beans a| +9320|14190|9193|4|33|36438.27|0.01|0.01|N|O|1997-08-13|1997-07-18|1997-09-05|TAKE BACK RETURN|MAIL|ic pinto beans. regular, regular d| +9320|79407|1915|5|8|11091.20|0.00|0.07|N|O|1997-05-18|1997-07-03|1997-05-25|TAKE BACK RETURN|MAIL|quickly close | +9321|130185|7725|1|16|19442.88|0.00|0.03|N|O|1996-12-03|1996-12-31|1996-12-26|DELIVER IN PERSON|RAIL|ts mold quickly! package| +9321|18680|3683|2|13|20782.84|0.01|0.02|N|O|1997-01-18|1996-12-17|1997-02-15|COLLECT COD|SHIP|beans wake blithely bli| +9321|154209|4210|3|45|56844.00|0.06|0.04|N|O|1996-11-21|1996-12-21|1996-11-22|NONE|RAIL|odolites. r| +9322|118654|6188|1|38|63560.70|0.08|0.03|R|F|1992-08-31|1992-07-20|1992-09-02|COLLECT COD|RAIL|y special, regular asymptotes. furio| +9322|4054|9055|2|1|958.05|0.09|0.04|R|F|1992-10-11|1992-08-15|1992-10-31|NONE|REG AIR|e furiously never unusual packages! furi| +9322|123455|992|3|33|48788.85|0.02|0.00|R|F|1992-09-07|1992-08-16|1992-09-28|NONE|FOB|de of the furio| +9322|93609|1137|4|10|16026.00|0.08|0.03|R|F|1992-07-12|1992-08-15|1992-07-23|NONE|MAIL|p furiously even idea| +9322|84007|6516|5|27|26757.00|0.03|0.08|R|F|1992-10-09|1992-09-05|1992-10-12|NONE|RAIL|inst the carefully | +9322|92348|9876|6|15|20105.10|0.09|0.06|R|F|1992-07-14|1992-08-19|1992-08-10|COLLECT COD|TRUCK|requests around the slyly fi| +9322|89862|7387|7|43|79629.98|0.05|0.01|R|F|1992-10-12|1992-09-08|1992-11-07|DELIVER IN PERSON|TRUCK|ilent theo| +9323|105932|3463|1|34|65889.62|0.04|0.07|N|O|1998-08-05|1998-06-27|1998-08-27|COLLECT COD|SHIP|posits nod along the f| +9323|186329|6330|2|46|65104.72|0.00|0.04|N|O|1998-08-03|1998-07-04|1998-08-24|DELIVER IN PERSON|AIR|was furious| +9323|26727|4234|3|42|69456.24|0.10|0.07|N|O|1998-08-27|1998-08-03|1998-09-03|COLLECT COD|REG AIR| sleep slyly.| +9323|198426|8427|4|47|71647.74|0.10|0.00|N|O|1998-09-06|1998-07-27|1998-09-17|COLLECT COD|MAIL|eodolites slee| +9323|134906|7420|5|1|1940.90|0.06|0.01|N|O|1998-05-31|1998-07-13|1998-06-06|DELIVER IN PERSON|RAIL|eposits-- carefully iro| +9324|78048|8049|1|15|15390.60|0.08|0.03|N|O|1996-06-06|1996-07-11|1996-07-05|TAKE BACK RETURN|REG AIR|ironic courts. fluffily ironi| +9324|136441|6442|2|24|35458.56|0.02|0.07|N|O|1996-07-12|1996-07-26|1996-07-17|NONE|MAIL|to beans a| +9324|161616|4133|3|39|65426.79|0.09|0.08|N|O|1996-07-26|1996-08-15|1996-08-22|TAKE BACK RETURN|TRUCK|wake always among the fluffily b| +9325|3408|8409|1|29|38030.60|0.07|0.08|R|F|1992-10-11|1992-10-26|1992-10-18|DELIVER IN PERSON|MAIL|n dolphins haggle bl| +9326|160080|2597|1|27|30782.16|0.05|0.02|R|F|1993-08-05|1993-08-23|1993-08-12|TAKE BACK RETURN|MAIL|even packages across the silent, quick | +9326|57919|5435|2|8|15015.28|0.01|0.01|A|F|1993-10-05|1993-09-20|1993-10-19|TAKE BACK RETURN|SHIP|ts. silent theodolites nea| +9326|35407|414|3|38|51011.20|0.07|0.06|R|F|1993-08-06|1993-10-03|1993-08-25|DELIVER IN PERSON|MAIL|ackages are final, silent | +9326|70278|7800|4|20|24965.40|0.06|0.04|R|F|1993-10-29|1993-10-19|1993-11-15|TAKE BACK RETURN|FOB|outs. quietly busy platelets c| +9327|120906|8443|1|20|38538.00|0.08|0.02|N|O|1998-06-19|1998-04-19|1998-07-03|DELIVER IN PERSON|TRUCK|s. furiously regular excuses haggle. sl| +9327|57658|7659|2|40|64626.00|0.04|0.07|N|O|1998-03-09|1998-05-10|1998-03-12|NONE|SHIP|deposits. regularly regular r| +9352|25061|2568|1|40|39442.40|0.10|0.01|R|F|1995-01-28|1995-01-04|1995-02-05|DELIVER IN PERSON|RAIL|s according to th| +9352|190788|5827|2|25|46969.50|0.01|0.04|R|F|1995-02-11|1994-12-14|1995-02-28|TAKE BACK RETURN|REG AIR|cajole furiously unusual requ| +9352|170427|2945|3|39|58399.38|0.02|0.08|A|F|1994-12-26|1994-12-23|1995-01-18|TAKE BACK RETURN|TRUCK|bold accounts sleep across the even reques| +9353|140733|8276|1|49|86912.77|0.07|0.07|N|O|1995-10-07|1995-08-10|1995-11-03|TAKE BACK RETURN|REG AIR| requests wa| +9353|90120|5139|2|25|27753.00|0.05|0.08|N|O|1995-10-06|1995-08-28|1995-11-05|TAKE BACK RETURN|RAIL|e among the furiously| +9353|44215|4216|3|41|47527.61|0.09|0.07|N|O|1995-09-02|1995-07-28|1995-09-29|DELIVER IN PERSON|REG AIR|ate quickly even theodo| +9353|113209|3210|4|43|52554.60|0.04|0.05|N|O|1995-09-17|1995-08-09|1995-10-09|DELIVER IN PERSON|AIR|about the fur| +9353|97626|7627|5|50|81181.00|0.02|0.04|N|O|1995-08-25|1995-07-21|1995-09-10|TAKE BACK RETURN|MAIL|packages. stealthily regular| +9353|196683|9203|6|10|17796.80|0.05|0.08|N|O|1995-08-25|1995-07-11|1995-09-15|TAKE BACK RETURN|MAIL|ccounts. blithely fluffy acc| +9353|45433|442|7|35|48245.05|0.09|0.03|N|O|1995-08-04|1995-09-05|1995-09-03|COLLECT COD|AIR|s patterns amon| +9354|178919|3954|1|23|45951.93|0.09|0.00|N|O|1997-10-05|1997-07-31|1997-10-21|NONE|FOB|y even accounts cajole fluffily above the | +9354|83334|859|2|25|32933.25|0.01|0.05|N|O|1997-06-16|1997-08-21|1997-06-27|COLLECT COD|AIR|ts nag blithely along| +9355|57057|2068|1|46|46646.30|0.03|0.04|N|O|1995-07-10|1995-08-19|1995-08-02|DELIVER IN PERSON|RAIL|ng theodolites along the| +9355|147216|9731|2|19|24000.99|0.04|0.05|N|O|1995-07-28|1995-08-01|1995-08-10|COLLECT COD|FOB| pending i| +9355|53792|3793|3|21|36661.59|0.01|0.00|N|O|1995-10-17|1995-09-24|1995-11-08|NONE|MAIL| quickly. pendi| +9355|73087|609|4|34|36042.72|0.02|0.04|N|O|1995-08-30|1995-08-03|1995-09-21|TAKE BACK RETURN|AIR|uickly final orbits. quic| +9355|160341|5374|5|13|18217.42|0.05|0.01|N|O|1995-08-17|1995-08-21|1995-08-24|TAKE BACK RETURN|FOB|onic packages. expr| +9356|170033|5068|1|47|51842.41|0.02|0.05|N|O|1996-09-14|1996-10-10|1996-10-02|NONE|REG AIR| accounts. bold, final ideas before t| +9356|133326|5840|2|9|12233.88|0.06|0.07|N|O|1996-11-15|1996-10-26|1996-12-07|TAKE BACK RETURN|AIR| fluffily quickly ironic ideas. f| +9356|259|5260|3|32|37096.00|0.01|0.04|N|O|1996-10-16|1996-10-31|1996-10-26|DELIVER IN PERSON|RAIL|g the foxes bre| +9356|152476|7507|4|32|48911.04|0.09|0.04|N|O|1996-11-24|1996-10-29|1996-11-29|DELIVER IN PERSON|FOB|uriously qui| +9357|30636|3140|1|41|64231.83|0.00|0.04|A|F|1994-10-09|1994-12-08|1994-11-01|TAKE BACK RETURN|REG AIR|ly even, bold accounts. fluffil| +9357|84709|2234|2|40|67748.00|0.00|0.00|A|F|1995-01-24|1994-12-04|1995-01-31|DELIVER IN PERSON|FOB|ong the fluffily regular pinto beans. qu| +9358|19232|4235|1|31|35688.13|0.01|0.00|A|F|1994-04-22|1994-04-16|1994-04-26|TAKE BACK RETURN|RAIL|the packages cajole blithely along| +9358|25548|5549|2|2|2947.08|0.07|0.00|A|F|1994-03-26|1994-03-12|1994-03-29|DELIVER IN PERSON|FOB| even patterns. silent theodolites lose car| +9358|173999|4000|3|37|76700.63|0.04|0.07|R|F|1994-05-03|1994-03-15|1994-05-25|NONE|TRUCK|atelets. ideas | +9358|197713|233|4|40|72428.40|0.04|0.01|A|F|1994-02-20|1994-04-23|1994-03-11|COLLECT COD|FOB|packages. quickly ironic dependencies boo| +9359|192489|5009|1|31|49025.88|0.10|0.03|N|O|1995-08-08|1995-10-21|1995-08-21|TAKE BACK RETURN|SHIP|posits against the carefully un| +9359|146815|9330|2|10|18618.10|0.01|0.03|N|O|1995-11-13|1995-10-10|1995-12-12|COLLECT COD|AIR|ly special requests cajole qu| +9359|107981|7982|3|26|51713.48|0.00|0.06|N|O|1995-10-16|1995-09-10|1995-11-02|TAKE BACK RETURN|SHIP|quests. carefully regula| +9359|33816|1326|4|44|76991.64|0.05|0.07|N|O|1995-11-05|1995-08-28|1995-11-30|DELIVER IN PERSON|MAIL|egular excuses. slyly expres| +9359|144802|7317|5|37|68331.60|0.00|0.08|N|O|1995-11-14|1995-09-20|1995-12-13|TAKE BACK RETURN|TRUCK|e requests. slyly unusual| +9359|75639|654|6|19|30677.97|0.08|0.05|N|O|1995-09-23|1995-09-22|1995-09-30|COLLECT COD|FOB|ng the pending acc| +9359|54352|1868|7|26|33965.10|0.08|0.02|N|O|1995-08-06|1995-10-13|1995-08-25|TAKE BACK RETURN|SHIP|ronic pinto beans. regular ideas | +9384|90308|5327|1|35|45440.50|0.01|0.01|N|O|1997-09-10|1997-09-01|1997-09-30|COLLECT COD|SHIP|c deposits boost slyly among t| +9385|78386|5908|1|10|13643.80|0.06|0.04|N|O|1995-10-22|1995-08-24|1995-11-17|DELIVER IN PERSON|FOB| requests are slyly. ideas solve furiousl| +9385|21023|8530|2|2|1888.04|0.00|0.08|N|O|1995-08-02|1995-08-21|1995-08-19|NONE|TRUCK|ongside of the regular packages use ir| +9386|48816|3825|1|35|61768.35|0.03|0.03|N|O|1996-11-27|1996-11-04|1996-12-20|TAKE BACK RETURN|RAIL|arefully special excuses haggle slowly| +9386|36634|9138|2|44|69107.72|0.03|0.02|N|O|1996-12-10|1996-12-09|1997-01-05|COLLECT COD|FOB|egular instructions after th| +9386|97653|7654|3|42|69327.30|0.08|0.00|N|O|1996-11-12|1996-12-19|1996-12-08|TAKE BACK RETURN|AIR|egular deposits; carefully even d| +9386|39620|9621|4|31|48348.22|0.09|0.02|N|O|1996-11-23|1996-12-12|1996-12-13|TAKE BACK RETURN|FOB|ecial packages. blithel| +9386|79168|4183|5|30|34414.80|0.00|0.04|N|O|1996-10-02|1996-12-17|1996-10-29|NONE|RAIL|sleep furiously from the slyly e| +9386|164371|6888|6|15|21530.55|0.04|0.05|N|O|1996-11-05|1996-12-17|1996-11-19|NONE|FOB|olites boost bli| +9387|163124|673|1|14|16619.68|0.05|0.03|N|O|1998-03-24|1998-03-24|1998-04-02|COLLECT COD|AIR|ar requests after the final packages a| +9387|21532|1533|2|20|29070.60|0.03|0.05|N|O|1998-03-04|1998-02-02|1998-03-20|TAKE BACK RETURN|AIR|press, unusual reque| +9387|84733|4734|3|47|80733.31|0.10|0.03|N|O|1998-03-19|1998-03-27|1998-03-21|DELIVER IN PERSON|FOB|even theodolit| +9387|100461|5482|4|43|62842.78|0.05|0.01|N|O|1998-03-04|1998-02-11|1998-03-17|TAKE BACK RETURN|RAIL|orges. furiously regular instructions | +9387|34223|1733|5|19|21987.18|0.00|0.07|N|O|1998-04-28|1998-02-26|1998-05-18|DELIVER IN PERSON|MAIL| silent accounts are slyly. platelets a| +9388|31136|8646|1|13|13872.69|0.05|0.05|A|F|1993-06-05|1993-03-25|1993-06-13|DELIVER IN PERSON|REG AIR|ccounts. blithely special pa| +9388|89236|9237|2|12|14702.76|0.06|0.07|A|F|1993-05-25|1993-04-10|1993-06-15|TAKE BACK RETURN|AIR|sts print. fur| +9388|182765|2766|3|47|86844.72|0.04|0.04|A|F|1993-05-22|1993-05-03|1993-05-29|COLLECT COD|AIR|r, express theodolites abou| +9388|117608|2631|4|38|61772.80|0.01|0.06|R|F|1993-05-12|1993-05-04|1993-05-17|NONE|MAIL|onic gifts. packages haggle a| +9388|31579|9089|5|24|36253.68|0.04|0.05|R|F|1993-06-06|1993-05-11|1993-06-12|NONE|SHIP|ross the carefully ironic| +9389|162380|4897|1|35|50483.30|0.07|0.07|N|O|1997-10-06|1997-09-10|1997-10-30|TAKE BACK RETURN|RAIL|ar pinto beans use above the carefully | +9389|115645|8157|2|2|3321.28|0.02|0.00|N|O|1997-07-08|1997-08-31|1997-07-10|COLLECT COD|SHIP|s. blithely quiet instr| +9389|43224|8233|3|13|15173.86|0.06|0.06|N|O|1997-09-02|1997-09-29|1997-09-17|DELIVER IN PERSON|SHIP|ess instructions. furiously regul| +9389|61956|4463|4|11|21097.45|0.03|0.06|N|O|1997-10-31|1997-09-27|1997-11-27|NONE|AIR|ions. expr| +9389|83100|8117|5|20|21662.00|0.05|0.07|N|O|1997-08-02|1997-09-23|1997-08-08|TAKE BACK RETURN|SHIP|to beans: blithely final gro| +9389|56229|8735|6|46|54520.12|0.03|0.01|N|O|1997-07-06|1997-08-27|1997-07-29|DELIVER IN PERSON|RAIL|regular deposit| +9389|38345|849|7|26|33366.84|0.04|0.03|N|O|1997-10-15|1997-09-16|1997-11-02|NONE|AIR|egular theodolites h| +9390|48537|1042|1|8|11884.24|0.05|0.03|N|O|1998-08-01|1998-07-25|1998-08-06|NONE|FOB|kly pending req| +9390|153225|771|2|16|20451.52|0.06|0.08|N|O|1998-07-22|1998-07-24|1998-08-02|TAKE BACK RETURN|SHIP|mong the slyly even requests are blithely | +9390|43699|6204|3|27|44352.63|0.08|0.07|N|O|1998-09-14|1998-07-17|1998-10-12|NONE|SHIP| the carefully ruthless packages. foxes| +9390|36344|1351|4|3|3841.02|0.01|0.04|N|O|1998-07-27|1998-08-22|1998-08-25|DELIVER IN PERSON|RAIL|ress escapades wake according to th| +9391|6157|1158|1|20|21263.00|0.09|0.07|N|O|1995-07-18|1995-07-27|1995-08-11|NONE|AIR|hely regular ideas: bold, s| +9391|70852|8374|2|43|78382.55|0.00|0.03|N|O|1995-09-20|1995-07-22|1995-10-02|NONE|MAIL|ironic deposits use quickly among th| +9391|5331|332|3|25|30908.25|0.09|0.03|N|O|1995-09-28|1995-08-14|1995-10-04|NONE|MAIL|lphins. furiously pending dependencies a| +9391|185829|5830|4|35|67018.70|0.09|0.06|N|O|1995-09-26|1995-09-09|1995-10-24|DELIVER IN PERSON|RAIL| after the slyly regular packa| +9391|22024|9531|5|5|4730.10|0.02|0.03|N|O|1995-09-10|1995-08-14|1995-09-19|TAKE BACK RETURN|AIR|ges impress quickly even deposits. careful | +9391|146505|9020|6|36|55854.00|0.09|0.03|N|O|1995-08-11|1995-08-01|1995-08-19|TAKE BACK RETURN|TRUCK|dependencies unwind slyl| +9391|104064|4065|7|33|35245.98|0.05|0.08|N|O|1995-09-01|1995-08-16|1995-09-15|DELIVER IN PERSON|REG AIR|tterns aga| +9416|196187|6188|1|41|52610.38|0.00|0.03|A|F|1993-02-05|1992-11-25|1993-02-26|TAKE BACK RETURN|REG AIR|ng the furiously express asymptotes. e| +9416|98363|8364|2|29|39479.44|0.10|0.04|R|F|1992-11-27|1992-11-20|1992-12-23|NONE|MAIL|uriously against the furiously special| +9416|171270|1271|3|20|26825.40|0.10|0.08|A|F|1993-02-09|1992-11-23|1993-02-11|COLLECT COD|REG AIR|ven requests cajole quickly daringly silent| +9416|130085|2599|4|21|23416.68|0.05|0.01|R|F|1992-12-22|1992-11-26|1993-01-19|DELIVER IN PERSON|SHIP|ual asymptotes. quickly bold re| +9416|129176|1689|5|27|32539.59|0.03|0.08|R|F|1993-01-14|1992-11-20|1993-01-25|COLLECT COD|REG AIR|requests wake fluffily | +9416|44654|2167|6|44|70340.60|0.03|0.03|A|F|1993-01-06|1992-12-02|1993-01-14|COLLECT COD|REG AIR|l foxes boost slyly even, final courts. qu| +9417|110461|2973|1|7|10300.22|0.00|0.08|N|O|1997-03-14|1997-05-14|1997-04-12|NONE|RAIL|ackages cajole blithel| +9417|109751|4772|2|14|24650.50|0.02|0.08|N|O|1997-06-20|1997-04-26|1997-06-26|DELIVER IN PERSON|REG AIR|its of the unusual | +9417|174466|4467|3|47|72401.62|0.09|0.04|N|O|1997-05-06|1997-05-31|1997-05-28|DELIVER IN PERSON|REG AIR|ong the caref| +9417|37400|7401|4|36|48146.40|0.03|0.01|N|O|1997-03-16|1997-05-10|1997-03-25|COLLECT COD|MAIL|its? pending pinto bea| +9417|169483|9484|5|16|24839.68|0.09|0.02|N|O|1997-04-17|1997-04-24|1997-05-09|TAKE BACK RETURN|RAIL|lar deposits. carefully even depos| +9418|186632|6633|1|14|24060.82|0.09|0.04|N|O|1996-05-19|1996-06-01|1996-05-22|COLLECT COD|SHIP|uickly unusual pa| +9419|101275|3786|1|24|30630.48|0.03|0.05|A|F|1993-08-05|1993-09-05|1993-08-09|COLLECT COD|FOB| blithely. e| +9419|114657|2191|2|5|8358.25|0.05|0.04|R|F|1993-08-31|1993-07-26|1993-09-20|COLLECT COD|FOB|nt, even forges. ironi| +9420|149212|9213|1|21|26485.41|0.05|0.06|R|F|1994-04-29|1994-05-25|1994-05-18|TAKE BACK RETURN|TRUCK|pending platelets boost eve| +9420|197293|9813|2|48|66733.92|0.09|0.06|A|F|1994-08-04|1994-07-02|1994-08-13|COLLECT COD|AIR|against the sl| +9420|92634|162|3|17|27652.71|0.02|0.01|A|F|1994-06-04|1994-05-22|1994-06-27|TAKE BACK RETURN|REG AIR|carefully silent deposits atop the c| +9420|93692|6202|4|44|74170.36|0.00|0.05|R|F|1994-08-05|1994-06-16|1994-09-02|TAKE BACK RETURN|FOB|ve the ideas. blithely expre| +9420|79217|9218|5|48|57418.08|0.03|0.07|A|F|1994-07-14|1994-06-10|1994-07-30|NONE|REG AIR|sts. slowly re| +9420|186456|6457|6|1|1542.45|0.08|0.07|R|F|1994-05-05|1994-07-15|1994-05-10|DELIVER IN PERSON|REG AIR|deposits haggle. pending accounts sle| +9421|48410|8411|1|1|1358.41|0.10|0.03|A|F|1993-12-30|1994-01-26|1994-01-13|COLLECT COD|MAIL|ter the quick accounts affix slyly slyly | +9422|146802|1831|1|18|33278.40|0.07|0.07|R|F|1992-10-21|1992-12-08|1992-10-27|TAKE BACK RETURN|SHIP|ackages. fluffily regular deposits aft| +9422|100856|857|2|22|40850.70|0.02|0.03|A|F|1992-11-04|1992-11-15|1992-11-19|TAKE BACK RETURN|RAIL|eas mold ironically. theodoli| +9423|162143|2144|1|8|9641.12|0.07|0.08|R|F|1992-12-27|1992-12-14|1993-01-06|NONE|MAIL| sauternes affix carefully sl| +9423|136204|8718|2|48|59529.60|0.09|0.08|R|F|1992-12-06|1992-12-05|1992-12-14|NONE|REG AIR|round the slyly pending hockey players| +9423|176546|4098|3|3|4867.62|0.10|0.02|A|F|1993-01-20|1992-11-22|1993-02-19|TAKE BACK RETURN|FOB|odolites. blithely regular| +9423|197322|2361|4|17|24128.44|0.02|0.07|R|F|1993-02-16|1993-01-02|1993-03-07|DELIVER IN PERSON|AIR|old packages use quickly above the dogg| +9423|176852|4404|5|7|13501.95|0.09|0.03|A|F|1992-12-31|1992-12-05|1993-01-05|COLLECT COD|FOB|ly busy packages. ironic | +9423|136645|1672|6|11|18498.04|0.09|0.03|R|F|1993-01-11|1993-01-01|1993-01-28|DELIVER IN PERSON|RAIL| about the sp| +9448|70118|2626|1|15|16321.65|0.04|0.02|N|O|1995-11-19|1996-01-07|1995-11-20|COLLECT COD|FOB|theodolites| +9448|61871|6884|2|18|32991.66|0.02|0.06|N|O|1995-10-22|1995-12-05|1995-11-14|DELIVER IN PERSON|AIR|ts sleep fluffily past the si| +9448|53268|784|3|35|42744.10|0.02|0.06|N|O|1996-01-01|1995-11-20|1996-01-24|COLLECT COD|RAIL|e carefully regular dep| +9448|65255|268|4|23|28065.75|0.01|0.02|N|O|1996-02-01|1995-11-24|1996-02-11|TAKE BACK RETURN|AIR|y before the furiou| +9448|128490|1003|5|39|59221.11|0.05|0.08|N|O|1995-11-06|1995-11-30|1995-11-12|NONE|AIR|requests sleep. final, bold accounts| +9448|129605|2118|6|7|11442.20|0.00|0.05|N|O|1995-11-20|1995-12-20|1995-11-26|NONE|SHIP|ual deposits sleep above the slyly| +9448|69000|6519|7|8|7752.00|0.01|0.03|N|O|1996-01-01|1995-11-18|1996-01-28|TAKE BACK RETURN|MAIL|nding deposits. carefull| +9449|70320|2828|1|1|1290.32|0.09|0.02|R|F|1994-05-20|1994-04-21|1994-06-05|DELIVER IN PERSON|FOB|lithely bol| +9449|57820|2831|2|26|46223.32|0.00|0.01|A|F|1994-03-04|1994-03-30|1994-04-03|DELIVER IN PERSON|MAIL|s. blithely final instructions affix | +9449|172766|7801|3|19|34936.44|0.10|0.02|A|F|1994-05-24|1994-03-24|1994-05-30|DELIVER IN PERSON|FOB|instructions acr| +9449|77335|4857|4|22|28871.26|0.03|0.01|R|F|1994-04-03|1994-05-05|1994-04-21|COLLECT COD|MAIL|y slow packages boost under | +9449|157613|7614|5|32|53459.52|0.07|0.00|A|F|1994-03-25|1994-03-10|1994-04-06|TAKE BACK RETURN|RAIL|y. express, express excuse| +9450|56195|6196|1|9|10360.71|0.05|0.05|R|F|1994-03-20|1994-04-24|1994-04-09|COLLECT COD|MAIL|final warhorses haggle furi| +9450|61754|4261|2|36|61767.00|0.01|0.08|R|F|1994-04-30|1994-04-26|1994-05-18|DELIVER IN PERSON|REG AIR|ove the furiously even foxes. bli| +9450|91379|1380|3|37|50703.69|0.10|0.05|R|F|1994-04-06|1994-04-12|1994-04-28|NONE|RAIL|lyly pending dependencies. foxe| +9450|193444|1002|4|29|44585.76|0.02|0.07|R|F|1994-04-11|1994-05-02|1994-04-29|COLLECT COD|MAIL|l accounts. fluffily pending| +9450|4260|9261|5|34|39584.84|0.00|0.01|R|F|1994-04-02|1994-05-02|1994-04-24|TAKE BACK RETURN|TRUCK|lly bold platelets. regular, final t| +9450|182215|9770|6|13|16863.73|0.02|0.08|A|F|1994-06-07|1994-03-31|1994-06-25|DELIVER IN PERSON|AIR|atelets after the unusual ideas use | +9450|82780|2781|7|46|81087.88|0.02|0.01|A|F|1994-03-19|1994-03-27|1994-03-26|DELIVER IN PERSON|TRUCK|arefully fur| +9451|82161|7178|1|37|42296.92|0.08|0.02|N|O|1996-07-27|1996-06-07|1996-07-29|TAKE BACK RETURN|MAIL|s use above the as| +9451|63970|6477|2|21|40613.37|0.00|0.01|N|O|1996-06-16|1996-07-18|1996-06-21|DELIVER IN PERSON|REG AIR|s the slyly ex| +9451|137909|7910|3|28|54513.20|0.09|0.00|N|O|1996-08-16|1996-06-29|1996-08-26|COLLECT COD|REG AIR|ly pending pinto beans cajole. expres| +9451|28068|3073|4|14|13944.84|0.10|0.08|N|O|1996-06-06|1996-07-12|1996-06-13|NONE|TRUCK|sits affix furiously pending | +9451|133476|3477|5|48|72454.56|0.04|0.04|N|O|1996-07-31|1996-06-01|1996-08-28|COLLECT COD|FOB|fully bold requests | +9451|127333|2358|6|26|35368.58|0.00|0.00|N|O|1996-07-05|1996-06-05|1996-07-29|NONE|AIR|thely ironic pinto| +9451|78273|5795|7|36|45045.72|0.08|0.00|N|O|1996-05-28|1996-07-08|1996-06-16|DELIVER IN PERSON|FOB|w. furiously unusua| +9452|122321|4834|1|20|26866.40|0.08|0.02|N|O|1998-02-15|1998-03-10|1998-02-28|COLLECT COD|REG AIR|deposits after the i| +9452|35718|5719|2|26|42996.46|0.06|0.00|N|O|1998-01-21|1998-04-08|1998-01-28|TAKE BACK RETURN|FOB|quests. packages haggle furiousl| +9452|99783|9784|3|1|1782.78|0.08|0.03|N|O|1998-03-20|1998-02-28|1998-03-22|NONE|AIR|unts cajole furiousl| +9452|44019|1532|4|20|19260.20|0.07|0.00|N|O|1998-04-04|1998-03-27|1998-04-09|DELIVER IN PERSON|SHIP|ccounts sleep closely regular, p| +9452|24337|4338|5|34|42885.22|0.05|0.02|N|O|1998-02-13|1998-02-26|1998-03-08|COLLECT COD|REG AIR|ly around t| +9453|83955|8972|1|9|17450.55|0.01|0.08|A|F|1992-08-30|1992-08-29|1992-09-09|COLLECT COD|FOB|jole alongside of the ideas. pend| +9453|15848|851|2|44|77608.96|0.00|0.01|R|F|1992-07-29|1992-10-17|1992-08-06|DELIVER IN PERSON|FOB|ickly regular dependencies. fina| +9453|152047|7078|3|45|49456.80|0.05|0.08|R|F|1992-08-09|1992-09-27|1992-08-29|TAKE BACK RETURN|RAIL|along the final asymptotes. blithel| +9453|47962|2971|4|16|30559.36|0.09|0.00|A|F|1992-10-14|1992-08-26|1992-10-31|COLLECT COD|SHIP| alongside of the ironic, bold depos| +9453|90375|2885|5|9|12288.33|0.03|0.05|A|F|1992-10-20|1992-09-01|1992-11-18|DELIVER IN PERSON|AIR|s patterns. foxes wake f| +9454|57793|299|1|30|52523.70|0.09|0.05|A|F|1995-02-06|1995-03-17|1995-02-24|TAKE BACK RETURN|SHIP| requests nag. car| +9454|122789|5302|2|25|45294.50|0.03|0.06|A|F|1995-05-16|1995-02-24|1995-06-05|NONE|RAIL|always special deposits sleep carefully reg| +9454|112206|7229|3|1|1218.20|0.07|0.02|R|F|1995-04-10|1995-03-09|1995-04-11|TAKE BACK RETURN|AIR|ts use above the regular a| +9454|29614|7121|4|14|21610.54|0.04|0.06|R|F|1995-02-10|1995-04-05|1995-02-23|NONE|REG AIR|xes. pending| +9454|111577|4089|5|41|65131.37|0.07|0.05|A|F|1995-03-31|1995-03-05|1995-04-10|NONE|MAIL|lithely fin| +9454|59975|4986|6|20|38699.40|0.07|0.00|A|F|1995-04-29|1995-04-04|1995-05-23|COLLECT COD|TRUCK|e busily alongside of the| +9454|197777|7778|7|12|22497.24|0.08|0.04|A|F|1995-05-21|1995-03-03|1995-06-07|COLLECT COD|REG AIR|uickly? regular accounts against the | +9455|31545|1546|1|42|62014.68|0.04|0.05|A|F|1994-09-20|1994-08-14|1994-09-29|DELIVER IN PERSON|REG AIR|l requests cajole furiously. | +9455|164482|4483|2|13|20104.24|0.06|0.08|R|F|1994-06-27|1994-07-05|1994-07-12|DELIVER IN PERSON|AIR|uriously express pack| +9455|46590|9095|3|50|76829.50|0.06|0.07|A|F|1994-05-24|1994-06-26|1994-06-14|COLLECT COD|TRUCK| always ironic platelets print around the| +9455|36207|3717|4|40|45728.00|0.01|0.01|R|F|1994-06-20|1994-07-01|1994-07-14|TAKE BACK RETURN|TRUCK|r the special theodolites na| +9455|130270|5297|5|46|59812.42|0.04|0.03|A|F|1994-06-12|1994-07-21|1994-07-01|NONE|REG AIR|are along the blit| +9455|38468|5978|6|44|61884.24|0.01|0.04|R|F|1994-06-14|1994-07-05|1994-07-12|COLLECT COD|SHIP|furiously slow deposi| +9480|140475|2990|1|28|42433.16|0.06|0.04|A|F|1994-03-14|1994-03-05|1994-04-13|NONE|TRUCK|. carefully expre| +9481|79616|9617|1|15|23934.15|0.05|0.03|N|O|1997-05-16|1997-07-30|1997-06-07|COLLECT COD|RAIL|o beans boost among th| +9481|102686|2687|2|42|70924.56|0.09|0.04|N|O|1997-08-13|1997-06-11|1997-09-02|NONE|FOB|furiously according to the slyly | +9481|31938|9448|3|42|78537.06|0.09|0.01|N|O|1997-09-07|1997-06-28|1997-09-18|DELIVER IN PERSON|REG AIR|e thin theodo| +9481|178073|3108|4|40|46042.80|0.09|0.03|N|O|1997-08-12|1997-07-13|1997-08-21|DELIVER IN PERSON|REG AIR| the never final instructions. u| +9481|60160|5173|5|32|35845.12|0.08|0.01|N|O|1997-06-25|1997-08-07|1997-07-09|TAKE BACK RETURN|RAIL|ns are furiously caref| +9481|104312|1843|6|37|48703.47|0.06|0.04|N|O|1997-05-24|1997-07-02|1997-06-18|TAKE BACK RETURN|TRUCK|ending, unusua| +9482|145111|2654|1|44|50868.84|0.02|0.04|N|O|1998-08-07|1998-07-26|1998-08-08|NONE|AIR|e the ironic | +9482|69025|6544|2|34|33796.68|0.03|0.02|N|O|1998-05-10|1998-06-28|1998-06-04|NONE|FOB|s. even, pending re| +9482|94734|2262|3|6|10372.38|0.10|0.07|N|O|1998-07-08|1998-07-21|1998-07-18|TAKE BACK RETURN|FOB|ng the quickly regular ideas hinder benea| +9482|194226|1784|4|46|60730.12|0.07|0.08|N|O|1998-07-21|1998-06-15|1998-07-29|TAKE BACK RETURN|SHIP|ests boost fur| +9482|142663|7692|5|46|78460.36|0.01|0.05|N|O|1998-08-20|1998-06-26|1998-09-06|DELIVER IN PERSON|AIR|lyly about the excuses. slyly ironic| +9482|123609|8634|6|21|34284.60|0.01|0.02|N|O|1998-05-17|1998-06-11|1998-05-31|TAKE BACK RETURN|FOB|egular requests. ironic instru| +9482|85578|3103|7|48|75051.36|0.08|0.06|N|O|1998-07-30|1998-06-06|1998-08-04|COLLECT COD|SHIP|ickly for the carefully| +9483|94835|7345|1|27|49405.41|0.02|0.03|N|O|1995-08-25|1995-08-02|1995-09-22|DELIVER IN PERSON|AIR|ites. quickly ironic packages acr| +9484|35776|5777|1|13|22253.01|0.10|0.02|N|O|1997-03-09|1997-02-10|1997-03-28|DELIVER IN PERSON|MAIL| unusual platelets? reg| +9484|86848|1865|2|37|67889.08|0.04|0.02|N|O|1997-03-30|1997-02-22|1997-04-12|DELIVER IN PERSON|MAIL|kly pending requests nag fluffily about | +9484|42475|4980|3|31|43941.57|0.05|0.04|N|O|1996-12-25|1997-02-28|1997-01-16|COLLECT COD|RAIL|ld dolphins hang slyly fl| +9484|69814|4827|4|36|64217.16|0.08|0.04|N|O|1997-04-01|1997-02-17|1997-04-15|DELIVER IN PERSON|SHIP|p carefully across the blithely pend| +9484|163628|1177|5|46|77814.52|0.04|0.03|N|O|1997-04-05|1997-01-21|1997-04-30|COLLECT COD|TRUCK|y ironic deposits cajole fluffily | +9484|91469|1470|6|47|68641.62|0.06|0.00|N|O|1997-01-31|1997-02-18|1997-02-14|NONE|MAIL|to beans upon the accounts bo| +9484|104118|6629|7|23|25808.53|0.08|0.08|N|O|1997-01-05|1997-02-10|1997-01-25|TAKE BACK RETURN|SHIP|s the carefully| +9485|101663|1664|1|37|61592.42|0.07|0.08|A|F|1994-03-29|1994-06-24|1994-04-04|COLLECT COD|AIR|ding to the final | +9485|41684|4189|2|36|58524.48|0.06|0.01|R|F|1994-04-07|1994-04-27|1994-04-27|COLLECT COD|FOB|s haggle blithely. even, silent deposits af| +9486|171198|3716|1|41|52036.79|0.09|0.01|A|F|1994-06-15|1994-03-31|1994-06-19|TAKE BACK RETURN|MAIL|ccounts cajol| +9487|62575|2576|1|49|75340.93|0.01|0.02|R|F|1995-03-10|1995-02-19|1995-03-31|TAKE BACK RETURN|FOB| slyly slyly even theo| +9487|95782|801|2|45|80000.10|0.08|0.03|A|F|1995-02-02|1995-01-12|1995-02-09|NONE|FOB| slyly after the pending depo| +9487|5995|5996|3|30|57029.70|0.04|0.05|A|F|1995-01-09|1995-01-25|1995-02-02|NONE|MAIL|tes cajole regular deposits.| +9487|153160|706|4|43|52165.88|0.09|0.01|R|F|1995-03-10|1995-01-06|1995-04-03|COLLECT COD|RAIL|ut the unusual instructio| +9487|145166|7681|5|21|25434.36|0.08|0.07|R|F|1995-01-18|1995-01-17|1995-02-07|DELIVER IN PERSON|MAIL|sely ironic depo| +9512|82295|4804|1|49|62587.21|0.00|0.05|A|F|1994-10-04|1994-07-23|1994-10-31|TAKE BACK RETURN|FOB| sleep along the blithely eve| +9512|120738|739|2|19|33415.87|0.08|0.01|A|F|1994-09-09|1994-08-21|1994-09-27|TAKE BACK RETURN|REG AIR| furiously ironic foxes. furiously ironic | +9512|37886|390|3|30|54716.40|0.08|0.08|R|F|1994-09-06|1994-09-02|1994-09-11|NONE|SHIP|ously even instructions. foxes cajole b| +9512|147387|9902|4|34|48768.92|0.02|0.06|A|F|1994-09-03|1994-08-07|1994-09-16|TAKE BACK RETURN|AIR|. carefully even theodolites sleep | +9512|117077|2100|5|50|54703.50|0.10|0.00|A|F|1994-10-13|1994-08-08|1994-10-17|DELIVER IN PERSON|SHIP|. carefully even attain| +9512|104417|9438|6|42|59699.22|0.04|0.01|A|F|1994-09-30|1994-08-20|1994-10-02|NONE|RAIL|xes. dependencies nod slyly fina| +9512|123071|3072|7|35|38292.45|0.06|0.04|R|F|1994-06-27|1994-08-28|1994-07-06|NONE|AIR|instructions haggle carefu| +9513|44402|6907|1|50|67320.00|0.10|0.06|R|F|1994-04-05|1994-06-13|1994-04-08|TAKE BACK RETURN|TRUCK|heodolites wake| +9513|63831|3832|2|9|16153.47|0.09|0.01|A|F|1994-04-23|1994-04-25|1994-05-04|NONE|RAIL|ct ruthlessly. express accounts ag| +9513|7310|9811|3|38|46257.78|0.03|0.08|R|F|1994-06-01|1994-06-07|1994-07-01|COLLECT COD|MAIL|efully final| +9513|53213|5719|4|42|48980.82|0.00|0.02|R|F|1994-03-25|1994-05-08|1994-04-24|TAKE BACK RETURN|FOB|ugh the slyly regular deposits. sometime| +9513|135790|5791|5|26|47470.54|0.09|0.01|A|F|1994-06-16|1994-05-04|1994-07-01|NONE|SHIP|as sleep furiously bold ideas| +9514|104142|1673|1|34|38968.76|0.03|0.01|N|O|1998-04-20|1998-05-02|1998-05-08|COLLECT COD|SHIP| blithely! furiously expres| +9514|113544|1078|2|16|24920.64|0.10|0.08|N|O|1998-05-30|1998-06-25|1998-06-24|COLLECT COD|FOB|snooze about the | +9515|175466|5467|1|6|9248.76|0.05|0.01|N|O|1997-12-28|1997-12-30|1998-01-04|TAKE BACK RETURN|FOB|e into the carefully unus| +9515|56198|6199|2|8|9233.52|0.05|0.02|N|O|1998-02-09|1998-02-07|1998-02-16|DELIVER IN PERSON|TRUCK|ng the slyly regular platelets. ironic, | +9515|118671|8672|3|42|70966.14|0.00|0.03|N|O|1998-01-13|1998-02-11|1998-01-16|TAKE BACK RETURN|FOB|egular packages | +9515|86789|4314|4|37|65703.86|0.03|0.08|N|O|1998-03-09|1998-01-14|1998-03-29|DELIVER IN PERSON|MAIL|es. carefull| +9515|57589|5105|5|9|13919.22|0.08|0.06|N|O|1998-01-29|1998-02-05|1998-02-15|NONE|MAIL|ouches. furiously ironic de| +9515|91479|9007|6|15|22057.05|0.09|0.03|N|O|1997-12-14|1998-01-27|1998-01-09|COLLECT COD|MAIL|silently furio| +9515|78673|3688|7|10|16516.70|0.03|0.07|N|O|1997-12-03|1998-02-09|1997-12-26|NONE|SHIP|ithely ironic theodolites.| +9516|41567|6576|1|43|64868.08|0.00|0.02|N|O|1996-03-19|1996-02-07|1996-04-07|DELIVER IN PERSON|TRUCK|thely slyly final packages. slyly s| +9516|9428|6929|2|14|18723.88|0.09|0.01|N|O|1995-12-24|1996-02-19|1996-01-03|COLLECT COD|TRUCK|ular deposits. furiously final deposits | +9516|39737|9738|3|27|45271.71|0.10|0.00|N|O|1996-03-02|1995-12-27|1996-03-24|TAKE BACK RETURN|MAIL|age slyly regular, regular ac| +9517|190656|657|1|5|8733.25|0.00|0.07|R|F|1994-12-18|1994-10-20|1995-01-13|COLLECT COD|FOB|eposits. slyly final deposits about | +9518|177867|2902|1|20|38897.20|0.07|0.00|N|O|1995-11-09|1995-09-19|1995-12-01|NONE|FOB|d around the unu| +9518|8955|6456|2|35|65238.25|0.06|0.05|N|O|1995-11-20|1995-09-29|1995-11-29|COLLECT COD|TRUCK|tions haggle quickly sp| +9518|101722|9253|3|35|60330.20|0.05|0.02|N|O|1995-10-18|1995-10-06|1995-11-13|TAKE BACK RETURN|FOB|iously alongside of the blithely p| +9518|25785|790|4|8|13686.24|0.02|0.04|N|O|1995-12-12|1995-10-29|1995-12-23|TAKE BACK RETURN|RAIL|out the unusual, spe| +9518|154326|9357|5|39|53832.48|0.05|0.01|N|O|1995-09-24|1995-10-05|1995-10-15|NONE|SHIP|c requests. express pinto beans | +9518|154469|6985|6|45|68555.70|0.08|0.03|N|O|1995-12-04|1995-09-14|1996-01-01|NONE|MAIL|regular pinto beans. en| +9519|63951|3952|1|2|3829.90|0.02|0.08|N|O|1998-08-02|1998-07-12|1998-08-06|TAKE BACK RETURN|MAIL|o the bold pains. even ex| +9519|18055|5559|2|12|11676.60|0.02|0.01|N|O|1998-07-22|1998-07-13|1998-08-20|TAKE BACK RETURN|TRUCK|packages. ruthless package| +9519|36512|9016|3|50|72425.50|0.07|0.07|N|O|1998-09-01|1998-07-28|1998-09-28|DELIVER IN PERSON|FOB|s across the blithely bold accounts are f| +9519|50685|3191|4|49|80148.32|0.08|0.05|N|O|1998-07-07|1998-08-20|1998-07-09|TAKE BACK RETURN|AIR|nic sentime| +9544|178707|8708|1|43|76785.10|0.02|0.02|N|O|1998-10-28|1998-09-21|1998-11-01|NONE|MAIL|kly even deposits ha| +9545|95177|7687|1|26|30476.42|0.09|0.05|N|O|1996-06-06|1996-03-18|1996-07-04|DELIVER IN PERSON|FOB|es! final asymptotes | +9545|39177|9178|2|20|22323.40|0.04|0.05|N|O|1996-06-08|1996-03-22|1996-07-01|NONE|AIR|egular, ironic dependencies play furiousl| +9545|36701|4211|3|22|36029.40|0.01|0.03|N|O|1996-03-10|1996-05-05|1996-04-06|NONE|FOB|deposits sleep. pa| +9545|20427|428|4|33|44464.86|0.01|0.03|N|O|1996-03-08|1996-04-03|1996-03-30|NONE|SHIP|l excuses. pending pinto beans cajole| +9545|103322|5833|5|48|63615.36|0.07|0.01|N|O|1996-06-08|1996-04-06|1996-07-05|TAKE BACK RETURN|TRUCK|s against the foxes| +9545|120932|5957|6|9|17576.37|0.07|0.02|N|O|1996-02-16|1996-04-28|1996-03-01|TAKE BACK RETURN|AIR|ses sleep furiously af| +9545|95757|5758|7|34|59593.50|0.08|0.00|N|O|1996-03-15|1996-04-28|1996-04-02|NONE|RAIL|ts about the fluffily | +9546|171996|7031|1|26|53767.74|0.06|0.08|A|F|1995-05-02|1995-07-15|1995-05-07|NONE|MAIL|tructions | +9546|135579|606|2|23|37135.11|0.01|0.00|R|F|1995-06-07|1995-06-07|1995-06-12|DELIVER IN PERSON|RAIL|fluffily regular deposi| +9547|81196|3705|1|8|9417.52|0.07|0.01|A|F|1994-04-14|1994-06-15|1994-04-27|DELIVER IN PERSON|RAIL|e slyly regular asymptotes wake a| +9547|52075|9591|2|6|6162.42|0.10|0.04|A|F|1994-07-25|1994-07-10|1994-08-09|NONE|RAIL| slyly ironic pinto beans. caref| +9548|177877|7878|1|19|37142.53|0.05|0.07|N|O|1996-05-04|1996-06-16|1996-05-11|DELIVER IN PERSON|FOB|slyly bold theod| +9548|176512|4064|2|5|7942.55|0.10|0.00|N|O|1996-07-03|1996-06-14|1996-07-20|TAKE BACK RETURN|MAIL|y regular requests. fu| +9548|20535|3038|3|36|52399.08|0.02|0.06|N|O|1996-06-28|1996-06-03|1996-07-10|DELIVER IN PERSON|REG AIR| the slyly ironic instructions. unusua| +9548|131249|1250|4|38|48649.12|0.04|0.01|N|O|1996-05-16|1996-04-29|1996-05-19|DELIVER IN PERSON|TRUCK| against the | +9548|86731|1748|5|23|39507.79|0.05|0.07|N|O|1996-04-27|1996-05-15|1996-05-16|TAKE BACK RETURN|SHIP|gle blithely pending deposits! regul| +9548|74808|7316|6|22|39221.60|0.04|0.07|N|O|1996-06-25|1996-06-08|1996-07-03|NONE|AIR|ng foxes use furiously. slyly ironic f| +9548|96808|6809|7|49|88435.20|0.07|0.08|N|O|1996-06-21|1996-05-12|1996-06-28|NONE|REG AIR|n. carefully express excuses breach sly| +9549|51549|1550|1|1|1500.54|0.09|0.07|N|O|1998-10-07|1998-08-25|1998-11-03|NONE|SHIP|es. carefully special platelet| +9549|168551|1068|2|12|19434.60|0.02|0.08|N|O|1998-11-01|1998-09-22|1998-11-13|COLLECT COD|TRUCK|te fluffily after the furiously ironic real| +9549|29124|4129|3|37|38965.44|0.04|0.07|N|O|1998-08-31|1998-08-25|1998-09-24|NONE|TRUCK|d sentiments are af| +9550|139935|7475|1|29|57272.97|0.06|0.01|N|O|1996-01-09|1995-11-13|1996-01-28|TAKE BACK RETURN|MAIL|usly final | +9550|84279|4280|2|20|25265.40|0.02|0.02|N|O|1995-12-06|1995-12-11|1995-12-21|NONE|REG AIR|ly bold ideas according to the slyl| +9550|72448|2449|3|15|21306.60|0.03|0.03|N|O|1996-01-13|1995-12-19|1996-01-21|COLLECT COD|TRUCK|old packages aft| +9550|18705|8706|4|26|42216.20|0.07|0.04|N|O|1995-12-30|1995-11-25|1996-01-09|NONE|TRUCK|s furiously along | +9550|167834|2867|5|33|62760.39|0.04|0.01|N|O|1995-11-11|1995-12-08|1995-12-07|NONE|AIR|ress requests. | +9550|172903|5421|6|36|71132.40|0.06|0.00|N|O|1995-12-01|1995-12-02|1995-12-19|COLLECT COD|TRUCK|y silent platel| +9550|166249|1282|7|13|17098.12|0.10|0.03|N|O|1995-11-17|1995-11-16|1995-11-21|DELIVER IN PERSON|REG AIR|iously ironic accounts| +9551|135902|3442|1|30|58137.00|0.04|0.01|N|O|1996-07-20|1996-09-12|1996-08-14|TAKE BACK RETURN|RAIL|uthless accounts. | +9576|53844|1360|1|44|79104.96|0.06|0.00|N|O|1996-03-15|1996-05-10|1996-03-28|COLLECT COD|AIR|nd the furiously ironic instructions hagg| +9576|149009|1524|2|45|47610.00|0.09|0.08|N|O|1996-03-22|1996-04-30|1996-04-21|NONE|AIR|e furiously. slyly iro| +9577|5479|7980|1|6|8306.82|0.08|0.02|R|F|1994-08-08|1994-06-25|1994-08-13|NONE|FOB|blithely special requests. caref| +9577|84269|9286|2|3|3759.78|0.00|0.04|R|F|1994-06-11|1994-06-17|1994-06-23|NONE|AIR|deposits. blith| +9578|193465|5985|1|27|42078.42|0.06|0.01|N|O|1996-11-10|1996-12-28|1996-11-24|DELIVER IN PERSON|REG AIR|lithely regular deposits| +9578|157564|5110|2|40|64862.40|0.10|0.03|N|O|1997-01-11|1996-11-26|1997-01-22|TAKE BACK RETURN|AIR|ly. quickly express pinto be| +9578|166278|6279|3|26|34951.02|0.09|0.07|N|O|1997-01-30|1996-11-22|1997-02-07|DELIVER IN PERSON|AIR|press requests sleep slyly slyl| +9578|22719|2720|4|21|34475.91|0.04|0.00|N|O|1996-11-16|1996-11-26|1996-12-09|TAKE BACK RETURN|SHIP|ending accounts. unusual| +9579|153769|1315|1|7|12759.32|0.06|0.05|N|O|1998-01-19|1998-02-03|1998-01-20|NONE|SHIP|nusual theodolites affix bold | +9579|187617|7618|2|25|42615.25|0.09|0.05|N|O|1998-03-04|1998-01-14|1998-03-30|DELIVER IN PERSON|SHIP|y express instructions. ironic,| +9579|69122|4135|3|18|19640.16|0.08|0.00|N|O|1998-02-23|1998-02-08|1998-03-18|COLLECT COD|FOB|ly ironic requests al| +9579|132736|276|4|35|61905.55|0.02|0.02|N|O|1998-03-28|1998-01-19|1998-04-20|TAKE BACK RETURN|REG AIR|ding, bold pinto beans wake| +9579|79904|4919|5|7|13187.30|0.00|0.05|N|O|1997-12-28|1998-02-22|1998-01-23|TAKE BACK RETURN|MAIL|usly theodolites. requests are| +9580|125890|3427|1|47|90046.83|0.10|0.06|N|O|1996-06-19|1996-07-23|1996-07-15|DELIVER IN PERSON|AIR|sts. slyly unusual instructions hinde| +9580|32236|9746|2|26|30373.98|0.09|0.07|N|O|1996-06-30|1996-07-30|1996-07-27|COLLECT COD|SHIP|ending accounts should haggle| +9580|175418|2970|3|38|56749.58|0.05|0.06|N|O|1996-07-26|1996-07-03|1996-07-27|TAKE BACK RETURN|AIR| wake after the carefully express| +9580|36795|1802|4|47|81394.13|0.06|0.06|N|O|1996-06-10|1996-08-03|1996-06-12|COLLECT COD|SHIP|. furiously special request| +9580|1635|9136|5|35|53782.05|0.06|0.00|N|O|1996-07-24|1996-07-10|1996-08-03|NONE|REG AIR|e quickly. ironic instructions| +9580|71887|4395|6|20|37177.60|0.09|0.01|N|O|1996-06-20|1996-08-04|1996-07-03|NONE|AIR|al packages among the dolphins use careful| +9580|197807|5365|7|41|78096.80|0.06|0.02|N|O|1996-07-22|1996-06-22|1996-08-09|DELIVER IN PERSON|TRUCK|ag slyly bold deposits. quietly expr| +9581|133810|6324|1|23|42407.63|0.07|0.00|N|O|1997-01-03|1997-03-11|1997-01-23|TAKE BACK RETURN|REG AIR|cajole slyly | +9581|133574|3575|2|17|27328.69|0.02|0.01|N|O|1997-04-06|1997-03-17|1997-04-09|DELIVER IN PERSON|MAIL|ts are quickly. slyly ironic theo| +9582|162545|5062|1|35|56263.90|0.04|0.04|R|F|1995-05-02|1995-06-01|1995-05-07|NONE|RAIL|s boost. furiously even pac| +9582|87343|4868|2|31|41240.54|0.04|0.03|N|O|1995-07-27|1995-06-21|1995-08-06|DELIVER IN PERSON|SHIP| unusual accounts cajole slyly amon| +9582|166742|6743|3|10|18087.40|0.07|0.02|A|F|1995-05-12|1995-06-23|1995-05-16|TAKE BACK RETURN|SHIP|ding to the slyly e| +9583|33507|8514|1|13|18726.50|0.00|0.04|N|O|1995-12-06|1996-01-19|1995-12-08|COLLECT COD|SHIP|ironic foxes! even, unusual do| +9583|142293|4808|2|46|61423.34|0.03|0.01|N|O|1996-03-18|1995-12-24|1996-04-13|TAKE BACK RETURN|SHIP|e pending, regular deposits| +9583|114811|7323|3|21|38342.01|0.05|0.05|N|O|1995-12-26|1995-12-31|1995-12-29|TAKE BACK RETURN|TRUCK|. regular theodolites abo| +9583|16871|6872|4|12|21454.44|0.05|0.06|N|O|1996-01-27|1995-12-21|1996-01-29|NONE|MAIL|ithely regular pinto beans wake b| +9583|142963|5478|5|21|42125.16|0.08|0.06|N|O|1996-03-12|1996-01-17|1996-03-17|COLLECT COD|AIR|instructions. carefully ironic platelet| +9583|171747|1748|6|26|47287.24|0.10|0.06|N|O|1996-02-04|1996-01-22|1996-03-01|NONE|SHIP|the packages. slyly unusual excuses wake ac| +9608|70699|3207|1|33|55099.77|0.06|0.01|A|F|1992-12-09|1993-01-10|1992-12-18|COLLECT COD|REG AIR|ix furious| +9608|34057|9064|2|42|41624.10|0.05|0.08|A|F|1993-03-16|1993-02-12|1993-04-10|COLLECT COD|SHIP|gular deposits integrate flu| +9608|187220|4775|3|48|62746.56|0.06|0.08|R|F|1993-02-19|1993-02-23|1993-03-16|NONE|RAIL|against the furiously special deposits. | +9608|591|5592|4|15|22373.85|0.03|0.08|R|F|1993-03-13|1993-03-02|1993-04-05|COLLECT COD|MAIL|nts wake. fluffily special warthogs haggle| +9608|123893|1430|5|42|80509.38|0.05|0.04|R|F|1993-02-16|1993-01-31|1993-02-25|TAKE BACK RETURN|REG AIR|furiously specia| +9608|62438|2439|6|29|40612.47|0.09|0.03|R|F|1992-12-15|1993-01-05|1992-12-22|NONE|MAIL|re careful| +9608|188902|6457|7|36|71672.40|0.06|0.07|R|F|1992-12-29|1993-01-10|1993-01-18|COLLECT COD|SHIP|carefully unusual pa| +9609|69560|7079|1|36|55064.16|0.03|0.07|A|F|1994-08-08|1994-08-26|1994-08-23|NONE|FOB|ideas. dependencies| +9609|92963|491|2|14|27383.44|0.04|0.04|R|F|1994-09-28|1994-09-11|1994-10-04|DELIVER IN PERSON|REG AIR|ong the ruthless instruct| +9609|24771|2278|3|9|15261.93|0.00|0.06|R|F|1994-09-22|1994-07-28|1994-09-24|COLLECT COD|AIR|ggle blithely| +9610|195473|3031|1|25|39211.75|0.05|0.03|R|F|1994-12-26|1994-12-27|1995-01-22|NONE|FOB|st the courts w| +9610|99581|9582|2|38|60062.04|0.00|0.08|R|F|1995-01-28|1995-01-09|1995-02-26|TAKE BACK RETURN|REG AIR|ly around the blithely expres| +9611|155543|3089|1|21|33569.34|0.08|0.00|N|O|1997-05-08|1997-06-10|1997-05-22|NONE|SHIP|uriously reg| +9612|109567|7098|1|2|3153.12|0.01|0.05|N|O|1995-09-18|1995-11-28|1995-09-22|NONE|TRUCK|ep ironic, regular packages. qui| +9612|83867|6376|2|5|9254.30|0.09|0.05|N|O|1995-12-27|1995-11-24|1996-01-15|DELIVER IN PERSON|TRUCK| slyly bold excuses boost blithely s| +9613|2148|2149|1|25|26253.50|0.10|0.02|R|F|1993-01-05|1993-03-25|1993-02-03|DELIVER IN PERSON|AIR|ly pending asymptotes. d| +9614|140327|7870|1|1|1367.32|0.10|0.02|N|O|1995-09-03|1995-09-06|1995-10-02|TAKE BACK RETURN|AIR|cajole furiously slyly regular deposit| +9614|64919|4920|2|30|56517.30|0.10|0.02|N|O|1995-10-22|1995-08-21|1995-11-19|TAKE BACK RETURN|MAIL|losely special pack| +9614|85622|3147|3|47|75558.14|0.05|0.05|N|O|1995-09-27|1995-08-08|1995-10-20|NONE|RAIL|packages haggle furiously aga| +9614|37282|9786|4|3|3657.84|0.00|0.07|N|O|1995-10-27|1995-09-25|1995-11-07|COLLECT COD|FOB|ironic packa| +9614|191339|1340|5|15|21454.95|0.09|0.05|N|O|1995-10-19|1995-09-26|1995-11-05|DELIVER IN PERSON|REG AIR|arefully special ex| +9615|22918|7923|1|46|84681.86|0.04|0.05|N|O|1997-10-05|1997-10-02|1997-10-31|NONE|TRUCK|eposits sleep slyly even instructio| +9615|170323|2841|2|29|40406.28|0.02|0.01|N|O|1997-07-16|1997-08-18|1997-07-22|DELIVER IN PERSON|AIR| deposits haggle slyl| +9615|8925|6426|3|42|77024.64|0.05|0.06|N|O|1997-07-21|1997-08-16|1997-07-31|NONE|TRUCK|press packages hinder reg| +9640|93881|1409|1|28|52496.64|0.01|0.02|R|F|1994-08-16|1994-08-01|1994-09-12|COLLECT COD|TRUCK|n, silent reque| +9640|52834|7845|2|44|78620.52|0.06|0.05|A|F|1994-07-23|1994-08-24|1994-08-12|TAKE BACK RETURN|REG AIR|inal instruct| +9640|180469|8024|3|4|6197.84|0.00|0.00|A|F|1994-09-16|1994-08-24|1994-10-16|COLLECT COD|AIR|st the regular requests. carefully special | +9640|128979|8980|4|14|28111.58|0.02|0.04|R|F|1994-08-15|1994-07-12|1994-09-13|COLLECT COD|REG AIR|ependencies. unusual foxes wake. quickly | +9640|144585|4586|5|49|79849.42|0.07|0.05|A|F|1994-09-18|1994-07-15|1994-10-05|COLLECT COD|AIR|ully bold accounts nag slyl| +9641|3394|3395|1|42|54490.38|0.03|0.05|N|O|1997-12-31|1998-01-07|1998-01-09|TAKE BACK RETURN|SHIP|y final pa| +9641|34585|4586|2|3|4558.74|0.00|0.05|N|O|1998-01-24|1998-01-14|1998-01-28|TAKE BACK RETURN|TRUCK|nal packages. furious| +9642|151400|1401|1|41|59507.40|0.04|0.00|N|O|1997-08-25|1997-10-22|1997-09-22|NONE|MAIL|unts. even, regular accounts lose furiou| +9642|163985|6502|2|40|81959.20|0.04|0.06|N|O|1997-09-22|1997-09-30|1997-09-24|TAKE BACK RETURN|TRUCK|thely slyly ironic requests. blith| +9643|95919|3447|1|32|61277.12|0.05|0.00|N|O|1997-01-21|1996-12-22|1997-02-04|COLLECT COD|TRUCK|o beans. blithely regular requests affix | +9643|109386|9387|2|3|4186.14|0.08|0.04|N|O|1997-02-22|1997-01-22|1997-02-28|DELIVER IN PERSON|SHIP|ccounts detect p| +9643|50048|7564|3|41|40919.64|0.07|0.08|N|O|1996-11-10|1997-01-12|1996-11-26|DELIVER IN PERSON|FOB|al packages. carefully express asympt| +9643|156510|9026|4|2|3133.02|0.09|0.06|N|O|1997-02-01|1997-01-22|1997-02-19|COLLECT COD|REG AIR|s. regular deposits wake fluffily among the| +9643|51953|4459|5|39|74293.05|0.02|0.04|N|O|1996-12-28|1997-01-08|1997-01-11|TAKE BACK RETURN|TRUCK|. regular, permanent packages haggle. sl| +9644|97008|4536|1|33|33165.00|0.08|0.03|A|F|1995-01-06|1994-12-31|1995-01-07|DELIVER IN PERSON|REG AIR|en packages. quickly| +9644|198891|1411|2|10|19898.90|0.10|0.08|R|F|1994-12-13|1994-12-26|1994-12-20|NONE|RAIL|ickly final grouches!| +9644|159463|1979|3|6|9134.76|0.01|0.06|A|F|1995-01-17|1994-11-23|1995-02-04|COLLECT COD|REG AIR|final accounts. carefully final Tiresias ha| +9644|78790|1298|4|9|15919.11|0.06|0.03|A|F|1994-11-25|1994-12-01|1994-12-21|TAKE BACK RETURN|FOB|oost always special ideas. blithely reg| +9645|36996|2003|1|32|61855.68|0.01|0.06|N|O|1996-09-05|1996-10-28|1996-09-20|DELIVER IN PERSON|TRUCK| regular accounts above the| +9646|78665|6187|1|29|47666.14|0.07|0.08|N|O|1998-07-24|1998-09-22|1998-08-08|DELIVER IN PERSON|MAIL| foxes solve quickly aro| +9646|109287|6818|2|14|18147.92|0.05|0.08|N|O|1998-07-20|1998-08-13|1998-08-05|DELIVER IN PERSON|MAIL| integrate carefully about the foxes. expre| +9646|184040|6559|3|26|29225.04|0.02|0.08|N|O|1998-08-05|1998-08-26|1998-08-08|COLLECT COD|MAIL|equests affix ar| +9646|149702|9703|4|17|29778.90|0.06|0.01|N|O|1998-10-06|1998-09-05|1998-10-20|TAKE BACK RETURN|RAIL|oxes. quickly unusual packag| +9647|192263|9821|1|1|1355.26|0.00|0.06|N|O|1995-07-23|1995-08-24|1995-08-08|DELIVER IN PERSON|MAIL|s boost caref| +9647|154984|2530|2|24|48935.52|0.02|0.03|N|O|1995-07-21|1995-07-14|1995-07-28|NONE|RAIL|ly regular ideas. quickly silent asymp| +9647|12545|2546|3|9|13117.86|0.10|0.08|N|O|1995-07-10|1995-07-08|1995-07-12|DELIVER IN PERSON|MAIL|es wake quickly alongside of the unusual p| +9647|37724|5234|4|23|38219.56|0.03|0.02|N|O|1995-09-09|1995-08-25|1995-10-07|TAKE BACK RETURN|RAIL|ar requests wa| +9672|46611|6612|1|26|40497.86|0.06|0.08|N|O|1998-02-05|1997-11-22|1998-02-20|NONE|SHIP|sly slyly ironic pinto beans. ironic| +9672|180004|5041|2|15|16260.00|0.08|0.01|N|O|1998-01-22|1997-12-20|1998-02-01|COLLECT COD|FOB| are slyly. regular or| +9672|122227|7252|3|48|59962.56|0.00|0.07|N|O|1998-01-19|1997-12-24|1998-01-31|TAKE BACK RETURN|SHIP|ly even requests haggle furiously sp| +9672|69062|4075|4|5|5155.30|0.04|0.06|N|O|1997-11-09|1997-11-23|1997-11-24|TAKE BACK RETURN|REG AIR| even packages. carefully pending a| +9672|112581|7604|5|15|23903.70|0.02|0.08|N|O|1997-12-25|1997-12-26|1997-12-28|NONE|TRUCK|ironic pack| +9673|91353|3863|1|30|40330.50|0.06|0.02|N|O|1998-01-10|1997-12-16|1998-01-22|TAKE BACK RETURN|TRUCK|posits above the furiously regular acc| +9673|168921|1438|2|32|63677.44|0.00|0.07|N|O|1997-09-28|1997-11-20|1997-10-11|TAKE BACK RETURN|FOB|ithely ironic pinto beans sleep. no| +9673|52632|148|3|9|14261.67|0.09|0.06|N|O|1997-10-26|1997-11-17|1997-11-17|COLLECT COD|SHIP|otes. slyly even pinto beans after the qu| +9673|184966|3|4|33|67681.68|0.09|0.03|N|O|1997-09-25|1997-12-04|1997-10-20|DELIVER IN PERSON|FOB|yly furiously silent pack| +9673|107135|2156|5|3|3426.39|0.09|0.07|N|O|1997-10-20|1997-12-07|1997-10-31|DELIVER IN PERSON|AIR|ual asymptotes. silent packages acc| +9673|2008|7009|6|17|15470.00|0.04|0.06|N|O|1997-10-28|1997-11-17|1997-11-04|COLLECT COD|MAIL|luffy deposits sleep furio| +9674|115610|3144|1|40|65024.40|0.07|0.07|R|F|1993-03-20|1993-04-08|1993-04-14|DELIVER IN PERSON|FOB|slyly silent packages nag blithely aft| +9674|40777|5786|2|15|25766.55|0.02|0.00|R|F|1993-04-14|1993-03-09|1993-05-01|COLLECT COD|FOB|y regular deposits sn| +9675|18620|8621|1|38|58467.56|0.09|0.05|A|F|1994-01-10|1993-12-04|1994-01-21|TAKE BACK RETURN|MAIL|realms haggle final | +9675|145934|3477|2|43|85136.99|0.06|0.07|A|F|1993-11-03|1993-12-12|1993-11-06|DELIVER IN PERSON|FOB|ts. slyly final ideas could cajole blithely| +9675|108630|3651|3|36|58990.68|0.04|0.06|R|F|1993-10-20|1993-11-15|1993-11-02|NONE|FOB|ic accounts u| +9675|137949|2976|4|34|67555.96|0.07|0.07|R|F|1993-11-09|1993-11-17|1993-11-27|COLLECT COD|TRUCK|iously regular| +9675|104744|4745|5|10|17487.40|0.03|0.03|A|F|1993-12-28|1993-11-05|1994-01-13|TAKE BACK RETURN|RAIL|s against the qui| +9675|22177|7182|6|35|38470.95|0.01|0.04|A|F|1993-11-23|1993-11-17|1993-12-03|NONE|AIR|uickly special ideas| +9675|119095|1607|7|16|17825.44|0.08|0.06|R|F|1993-12-08|1993-11-07|1993-12-25|DELIVER IN PERSON|REG AIR|of the ironic, bold accounts. slyly slow| +9676|27329|9832|1|29|36433.28|0.00|0.02|N|O|1997-01-11|1997-02-10|1997-01-12|NONE|MAIL|the express,| +9676|110435|7969|2|5|7227.15|0.02|0.06|N|O|1997-04-21|1997-03-07|1997-05-06|TAKE BACK RETURN|MAIL|ages wake carefully about the furious| +9676|65927|3446|3|26|49215.92|0.03|0.00|N|O|1996-12-28|1997-02-04|1997-01-07|COLLECT COD|RAIL|braids. blithely regul| +9676|24345|6848|4|7|8885.38|0.05|0.06|N|O|1997-01-03|1997-02-18|1997-01-29|TAKE BACK RETURN|REG AIR|t until the s| +9677|47501|7502|1|44|63734.00|0.10|0.07|A|F|1995-03-29|1995-05-23|1995-04-11|DELIVER IN PERSON|MAIL|ipliers sleep always. final, reg| +9677|142900|7929|2|35|68001.50|0.08|0.02|A|F|1995-05-06|1995-04-13|1995-05-27|TAKE BACK RETURN|SHIP| the specia| +9677|110638|8172|3|1|1648.63|0.10|0.04|A|F|1995-04-07|1995-04-20|1995-04-17|DELIVER IN PERSON|TRUCK|yly after the furiously even dep| +9677|91295|1296|4|9|11576.61|0.08|0.05|A|F|1995-05-15|1995-05-28|1995-06-14|TAKE BACK RETURN|SHIP|furiously | +9677|194390|1948|5|22|32656.58|0.01|0.03|A|F|1995-06-05|1995-05-28|1995-06-13|TAKE BACK RETURN|FOB|uctions affix blithely| +9677|98791|3810|6|23|41165.17|0.09|0.08|R|F|1995-05-23|1995-04-09|1995-06-06|COLLECT COD|TRUCK|p along the final instructions. quickl| +9677|165851|5852|7|22|42170.70|0.02|0.07|R|F|1995-05-14|1995-04-14|1995-06-09|TAKE BACK RETURN|AIR|ys regular accounts. regular packages c| +9678|51358|3864|1|27|35352.45|0.07|0.08|R|F|1995-03-07|1995-05-10|1995-04-02|DELIVER IN PERSON|FOB|iously bold excuses cajole about| +9678|158373|889|2|21|30058.77|0.03|0.00|R|F|1995-04-19|1995-04-20|1995-05-04|NONE|RAIL|ial instructions detect quick| +9678|169487|9488|3|26|40468.48|0.07|0.07|R|F|1995-04-30|1995-05-06|1995-05-21|DELIVER IN PERSON|MAIL|atelets. even | +9679|33297|5801|1|15|18454.35|0.10|0.05|A|F|1993-09-17|1993-10-22|1993-10-03|DELIVER IN PERSON|REG AIR|althy requests are special accounts;| +9679|20584|5589|2|47|70715.26|0.00|0.01|A|F|1993-11-07|1993-10-07|1993-11-08|TAKE BACK RETURN|RAIL|lar packages | +9679|140902|903|3|14|27200.60|0.07|0.00|A|F|1993-09-10|1993-11-05|1993-09-12|DELIVER IN PERSON|REG AIR|sly at the fluffily iron| +9679|133990|9017|4|48|97151.52|0.10|0.02|A|F|1993-09-12|1993-10-12|1993-09-24|NONE|TRUCK| haggle along| +9679|156600|1631|5|27|44728.20|0.04|0.03|R|F|1993-10-03|1993-09-12|1993-10-27|TAKE BACK RETURN|REG AIR|c Tiresias wake evenly after| +9704|134295|1835|1|40|53171.60|0.10|0.04|N|O|1997-03-28|1997-01-20|1997-03-31|TAKE BACK RETURN|TRUCK|ithely ironic pinto beans. furiou| +9704|88761|3778|2|37|64741.12|0.07|0.03|N|O|1997-01-04|1997-01-07|1997-01-11|COLLECT COD|MAIL| beans. final dependencies use carefully| +9705|111265|3777|1|6|7657.56|0.04|0.03|N|O|1997-03-12|1997-02-03|1997-03-18|TAKE BACK RETURN|REG AIR| against the| +9705|26426|8929|2|5|6762.10|0.09|0.08|N|O|1997-02-15|1997-02-23|1997-03-16|DELIVER IN PERSON|FOB|ke against the carefully re| +9705|131774|9314|3|21|37921.17|0.03|0.03|N|O|1997-02-11|1997-03-02|1997-02-24|TAKE BACK RETURN|TRUCK|counts. fu| +9705|112235|7258|4|31|38664.13|0.05|0.01|N|O|1997-03-16|1997-01-27|1997-04-09|NONE|FOB|al theodolites. furiously special bra| +9705|118984|4007|5|44|88131.12|0.01|0.05|N|O|1996-12-25|1997-01-11|1996-12-26|COLLECT COD|FOB|ly final packages. pending d| +9706|56686|1697|1|27|44352.36|0.08|0.08|R|F|1993-01-10|1993-01-19|1993-01-29|COLLECT COD|TRUCK|s. depende| +9706|114473|9496|2|23|34211.81|0.10|0.01|A|F|1993-01-25|1993-01-31|1993-02-07|DELIVER IN PERSON|MAIL| accounts promise blithely. | +9706|132069|7096|3|44|48446.64|0.07|0.06|R|F|1993-01-06|1993-02-17|1993-01-28|COLLECT COD|SHIP|ar foxes haggle furiously. sp| +9706|71171|8693|4|20|22843.40|0.06|0.08|R|F|1992-12-06|1993-02-08|1992-12-25|TAKE BACK RETURN|FOB|gedly carefully ironic foxes. even instruct| +9706|160770|8319|5|26|47600.02|0.10|0.00|R|F|1993-03-27|1993-01-13|1993-04-07|COLLECT COD|AIR|ests. carefully unusu| +9707|100888|8419|1|4|7555.52|0.10|0.01|N|O|1995-07-18|1995-05-10|1995-07-31|DELIVER IN PERSON|MAIL|ely pending packages eat across t| +9707|15155|2659|2|43|46016.45|0.05|0.01|N|O|1995-06-26|1995-05-16|1995-07-21|DELIVER IN PERSON|TRUCK|s. ironic gifts sleep | +9707|94750|4751|3|23|40129.25|0.10|0.05|N|O|1995-07-22|1995-05-11|1995-07-25|NONE|RAIL|s somas doubt blithely whithout the fu| +9708|183141|8178|1|44|53862.16|0.06|0.07|N|O|1998-11-12|1998-09-22|1998-12-05|DELIVER IN PERSON|MAIL|quickly bold requests haggle fluffily furi| +9709|24357|1864|1|8|10250.80|0.07|0.03|N|O|1998-04-11|1998-04-08|1998-04-17|DELIVER IN PERSON|TRUCK|iously iron| +9709|158487|3518|2|42|64910.16|0.06|0.08|N|O|1998-04-30|1998-04-05|1998-05-12|NONE|AIR|arefully final requests. blithely spe| +9709|86500|9009|3|46|68379.00|0.06|0.03|N|O|1998-05-18|1998-03-12|1998-05-31|DELIVER IN PERSON|FOB|beans wake f| +9709|1177|3678|4|49|52830.33|0.10|0.01|N|O|1998-02-11|1998-04-25|1998-02-23|COLLECT COD|RAIL|ial requests haggle carefully across the s| +9710|109482|4503|1|17|25355.16|0.03|0.08|R|F|1993-05-17|1993-05-20|1993-05-19|TAKE BACK RETURN|RAIL|pending requests | +9710|60604|8123|2|6|9387.60|0.00|0.06|A|F|1993-07-06|1993-06-01|1993-07-07|DELIVER IN PERSON|TRUCK|the fluffily pend| +9710|165473|7990|3|20|30769.40|0.03|0.01|A|F|1993-07-15|1993-05-31|1993-07-23|TAKE BACK RETURN|TRUCK|in among the cl| +9710|97665|175|4|48|79807.68|0.06|0.06|A|F|1993-07-15|1993-05-25|1993-07-24|COLLECT COD|AIR|. dogged packages are blithely a| +9710|51672|6683|5|30|48710.10|0.01|0.02|A|F|1993-07-09|1993-06-10|1993-08-01|DELIVER IN PERSON|RAIL|g the fluffily regular deposits. | +9710|42922|435|6|13|24243.96|0.02|0.02|A|F|1993-06-28|1993-07-11|1993-07-10|DELIVER IN PERSON|MAIL|carefully even accounts cajo| +9711|112875|409|1|10|18878.70|0.02|0.06|N|O|1995-06-28|1995-08-31|1995-07-21|NONE|MAIL|ess deposit| +9736|36081|8585|1|47|47802.76|0.02|0.06|N|O|1996-11-30|1996-09-23|1996-12-28|TAKE BACK RETURN|SHIP|d asymptotes wake | +9736|9970|4971|2|33|62039.01|0.03|0.06|N|O|1996-11-11|1996-10-27|1996-12-05|TAKE BACK RETURN|TRUCK|ts! furiously u| +9736|162903|7936|3|28|55045.20|0.06|0.00|N|O|1996-12-10|1996-09-14|1996-12-18|TAKE BACK RETURN|MAIL|its about the fluffil| +9736|100271|2782|4|5|6356.35|0.09|0.01|N|O|1996-10-10|1996-09-17|1996-10-22|TAKE BACK RETURN|TRUCK|ts detect quickly. f| +9736|39225|4232|5|17|19791.74|0.09|0.07|N|O|1996-09-30|1996-10-11|1996-10-11|NONE|TRUCK|ake slyly after t| +9736|46437|3950|6|42|58104.06|0.03|0.05|N|O|1996-10-20|1996-11-12|1996-11-06|DELIVER IN PERSON|AIR|bove the regular deposits. quickly ironic| +9736|61986|9505|7|49|95451.02|0.06|0.05|N|O|1996-10-26|1996-09-20|1996-11-19|COLLECT COD|MAIL|leep carefully. exp| +9737|194530|2088|1|33|53609.49|0.09|0.01|R|F|1993-02-10|1993-01-16|1993-03-05|NONE|SHIP|y. ideas could have to ha| +9737|56071|8577|2|39|40055.73|0.08|0.07|R|F|1993-02-04|1993-01-03|1993-02-20|NONE|RAIL|ite the blithely special i| +9737|179334|6886|3|4|5653.32|0.00|0.07|A|F|1992-11-11|1992-12-30|1992-12-08|TAKE BACK RETURN|MAIL|equests across the regular, reg| +9737|58708|3719|4|39|65001.30|0.02|0.05|A|F|1992-11-12|1993-01-24|1992-11-18|DELIVER IN PERSON|RAIL|quickly silen| +9737|93888|6398|5|23|43283.24|0.05|0.08|A|F|1992-11-18|1993-01-09|1992-11-23|NONE|FOB|es snooze furiously. special th| +9737|169648|9649|6|7|12023.48|0.01|0.04|A|F|1993-01-03|1992-12-25|1993-01-20|COLLECT COD|FOB|uriously. furiously| +9737|60879|5892|7|47|86473.89|0.08|0.01|R|F|1993-01-16|1993-01-19|1993-01-18|NONE|MAIL| ironic accounts caj| +9738|191776|9334|1|27|50429.79|0.10|0.05|N|O|1996-10-04|1996-08-01|1996-11-02|TAKE BACK RETURN|FOB|raids. carefully ironic ideas use ex| +9738|172994|8029|2|17|35138.83|0.03|0.08|N|O|1996-08-14|1996-09-15|1996-08-29|TAKE BACK RETURN|MAIL|ep. carefully regular requests| +9738|105154|5155|3|19|22023.85|0.03|0.05|N|O|1996-09-20|1996-08-22|1996-10-08|TAKE BACK RETURN|REG AIR|iously special instructions b| +9738|116415|3949|4|20|28628.20|0.03|0.01|N|O|1996-07-07|1996-08-09|1996-07-16|NONE|AIR|s haggle blithely. special dolp| +9738|172518|7553|5|29|46124.79|0.09|0.01|N|O|1996-10-01|1996-09-18|1996-10-20|DELIVER IN PERSON|AIR|ly express | +9738|97803|313|6|11|19808.80|0.09|0.06|N|O|1996-10-11|1996-08-31|1996-10-22|DELIVER IN PERSON|AIR|packages cajole | +9739|179489|7041|1|7|10979.36|0.06|0.06|N|O|1995-11-30|1995-12-03|1995-12-24|NONE|AIR|thely carefully regular requests. asymp| +9739|65039|52|2|42|42169.26|0.02|0.07|N|O|1996-01-26|1995-12-19|1996-02-11|COLLECT COD|TRUCK|riously pending | +9739|102865|5376|3|14|26150.04|0.10|0.03|N|O|1996-01-16|1996-01-14|1996-02-07|DELIVER IN PERSON|AIR|lithely. even, final foxes are qu| +9739|49561|7074|4|15|22658.40|0.00|0.06|N|O|1995-12-24|1995-12-26|1995-12-27|COLLECT COD|MAIL|the always final excuses. furiously pending| +9740|65610|623|1|13|20482.93|0.04|0.06|R|F|1993-02-13|1993-01-02|1993-03-05|TAKE BACK RETURN|TRUCK|ously even pinto beans abo| +9741|79456|4471|1|41|58853.45|0.07|0.08|N|O|1995-09-14|1995-09-06|1995-09-20|NONE|FOB|yly final packages! i| +9741|494|7995|2|20|27889.80|0.01|0.07|N|O|1995-08-24|1995-08-31|1995-09-02|TAKE BACK RETURN|FOB|ckages wake slyly| +9741|95517|8027|3|50|75625.50|0.10|0.05|N|O|1995-07-30|1995-08-22|1995-08-19|DELIVER IN PERSON|AIR|ously about the| +9741|141931|9474|4|38|74971.34|0.09|0.08|N|O|1995-09-12|1995-10-01|1995-09-28|NONE|MAIL|? stealthily regular acc| +9741|29871|7378|5|13|23411.31|0.03|0.08|N|O|1995-08-25|1995-09-18|1995-09-06|DELIVER IN PERSON|RAIL|ngly sentiments. carefully reg| +9742|163378|3379|1|45|64861.65|0.01|0.07|R|F|1992-07-27|1992-09-18|1992-08-07|TAKE BACK RETURN|AIR|uses cajole slyly regular Tiresias. ir| +9742|77507|5029|2|24|35628.00|0.10|0.04|R|F|1992-08-08|1992-10-03|1992-08-09|TAKE BACK RETURN|RAIL|yly. quickly final asymp| +9742|55003|14|3|29|27782.00|0.04|0.04|A|F|1992-10-11|1992-09-13|1992-10-16|COLLECT COD|REG AIR|equests. fluffil| +9742|21307|3810|4|10|12283.00|0.02|0.04|A|F|1992-10-02|1992-09-24|1992-10-10|COLLECT COD|FOB|bold requests wake along the furiously even| +9742|100773|8304|5|7|12416.39|0.01|0.08|A|F|1992-11-07|1992-10-10|1992-12-02|NONE|SHIP|eposits sleep furiously. final, ir| +9742|79424|9425|6|17|23858.14|0.05|0.00|A|F|1992-07-26|1992-10-01|1992-08-15|COLLECT COD|AIR|es. regular, special requests poach c| +9742|74842|7350|7|27|49054.68|0.05|0.07|R|F|1992-07-20|1992-09-07|1992-08-16|DELIVER IN PERSON|REG AIR|usly regular| +9743|65206|7713|1|36|42163.20|0.02|0.05|R|F|1992-08-04|1992-08-03|1992-08-15|TAKE BACK RETURN|MAIL| accounts run blithely furiously e| +9743|114950|2484|2|20|39299.00|0.02|0.06|A|F|1992-06-15|1992-07-10|1992-07-04|DELIVER IN PERSON|SHIP| final instructions around the b| +9743|160681|3198|3|35|60958.80|0.06|0.01|A|F|1992-09-09|1992-08-06|1992-09-29|COLLECT COD|FOB|cajole furiously among the| +9743|153605|3606|4|8|13268.80|0.05|0.03|R|F|1992-05-19|1992-06-21|1992-05-22|NONE|RAIL|es wake about the frets| +9743|31217|3721|5|40|45928.40|0.09|0.05|A|F|1992-05-28|1992-07-30|1992-06-25|TAKE BACK RETURN|SHIP| pinto beans wake final, final platelets. | +9768|55342|2858|1|44|57082.96|0.06|0.02|A|F|1993-11-08|1993-11-19|1993-11-21|COLLECT COD|AIR|he slyly even foxes sleep| +9769|70956|5971|1|8|15415.60|0.01|0.00|A|F|1993-04-14|1993-05-11|1993-05-06|COLLECT COD|REG AIR|uests. final attainments according to the| +9769|142143|2144|2|19|22517.66|0.07|0.08|A|F|1993-05-18|1993-06-06|1993-06-09|TAKE BACK RETURN|REG AIR|unusual packag| +9769|188698|6253|3|24|42880.56|0.09|0.08|A|F|1993-04-15|1993-05-11|1993-05-11|COLLECT COD|SHIP|s the blithely regular instructions slee| +9769|43915|3916|4|39|72497.49|0.10|0.05|A|F|1993-04-30|1993-06-11|1993-05-18|DELIVER IN PERSON|RAIL|al request| +9770|145504|3047|1|12|18594.00|0.06|0.07|A|F|1994-03-31|1994-04-02|1994-04-23|DELIVER IN PERSON|TRUCK|ed deposits. regular, | +9770|71508|1509|2|43|63618.50|0.04|0.07|A|F|1994-03-08|1994-04-04|1994-03-23|NONE|AIR|, regular accounts | +9770|29875|2378|3|26|46926.62|0.06|0.06|R|F|1994-04-29|1994-03-13|1994-05-04|NONE|MAIL| according to the | +9770|107257|2278|4|3|3792.75|0.02|0.08|R|F|1994-03-20|1994-03-19|1994-03-23|TAKE BACK RETURN|TRUCK|counts acco| +9770|58686|6202|5|8|13157.44|0.00|0.03|R|F|1994-04-06|1994-04-16|1994-04-14|DELIVER IN PERSON|REG AIR| even ideas. final, express foxes af| +9770|126988|4525|6|27|54404.46|0.09|0.03|A|F|1994-03-14|1994-04-06|1994-04-05|NONE|FOB|ickly silent requests could doze dar| +9770|78140|648|7|36|40253.04|0.08|0.04|A|F|1994-02-25|1994-02-26|1994-03-19|TAKE BACK RETURN|AIR|s breach blithely express platelets. s| +9771|83375|8392|1|18|24450.66|0.01|0.05|N|O|1998-06-07|1998-05-10|1998-07-02|DELIVER IN PERSON|RAIL|zle furiously regu| +9771|73592|6100|2|49|76713.91|0.05|0.02|N|O|1998-05-15|1998-05-06|1998-06-03|NONE|TRUCK|encies sle| +9771|44904|9913|3|19|35129.10|0.07|0.05|N|O|1998-06-28|1998-04-10|1998-07-01|NONE|AIR|ticing pinto beans affix | +9771|98499|1009|4|38|56904.62|0.09|0.01|N|O|1998-04-20|1998-04-15|1998-05-15|NONE|FOB|ly express de| +9771|64807|2326|5|4|7087.20|0.03|0.03|N|O|1998-03-12|1998-05-08|1998-03-22|NONE|MAIL|tructions was blithe| +9771|194591|7111|6|34|57310.06|0.07|0.03|N|O|1998-05-17|1998-04-11|1998-05-29|COLLECT COD|FOB|fily regular accounts wake | +9772|166574|4123|1|25|41014.25|0.05|0.03|N|O|1995-11-20|1995-12-12|1995-12-01|DELIVER IN PERSON|AIR|as. slyly pending ideas are blithely. | +9772|2096|9597|2|32|31938.88|0.06|0.07|N|O|1995-09-19|1995-11-14|1995-10-12|COLLECT COD|MAIL| special instructions. platelet| +9772|25517|3024|3|17|24522.67|0.10|0.04|N|O|1995-12-01|1995-11-01|1995-12-03|NONE|AIR|hely quickly final account| +9772|47440|4953|4|35|48560.40|0.07|0.08|N|O|1996-01-05|1995-11-05|1996-02-02|NONE|AIR|es. regular requests poach fluffily | +9772|109019|6550|5|21|21588.21|0.04|0.04|N|O|1995-11-15|1995-12-12|1995-12-04|COLLECT COD|RAIL|o beans cajole boldly. slyly | +9773|102932|2933|1|30|58047.90|0.07|0.08|N|O|1996-09-22|1996-09-20|1996-10-18|NONE|MAIL|ously regular requests. packages boost alo| +9773|174641|4642|2|37|63478.68|0.01|0.04|N|O|1996-10-25|1996-09-27|1996-11-03|TAKE BACK RETURN|MAIL|uriously final deposits c| +9773|175627|5628|3|2|3405.24|0.04|0.03|N|O|1996-08-13|1996-10-06|1996-09-10|NONE|REG AIR|sely bold excuses. | +9773|154057|6573|4|50|55552.50|0.05|0.07|N|O|1996-10-21|1996-10-10|1996-11-18|NONE|MAIL|uests use until the bli| +9773|35772|8276|5|15|25616.55|0.08|0.00|N|O|1996-08-11|1996-10-13|1996-08-18|TAKE BACK RETURN|TRUCK|gular packages across the furious| +9774|16956|6957|1|50|93647.50|0.01|0.06|A|F|1994-11-03|1994-09-28|1994-11-18|COLLECT COD|FOB|sly even dependenc| +9774|175628|8146|2|48|81773.76|0.05|0.08|A|F|1994-11-22|1994-10-22|1994-12-20|COLLECT COD|SHIP|ch about the quickly busy d| +9775|9266|6767|1|26|30556.76|0.09|0.07|N|O|1997-12-23|1998-02-25|1997-12-31|DELIVER IN PERSON|AIR|l packages breach bold| +9775|119277|9278|2|23|29814.21|0.06|0.02|N|O|1997-12-25|1998-01-25|1998-01-09|COLLECT COD|TRUCK|se to the furiously | +9775|81164|8689|3|41|46951.56|0.01|0.06|N|O|1998-02-19|1998-01-15|1998-03-05|DELIVER IN PERSON|FOB|lar foxes. express, final pinto beans bo| +9775|118600|8601|4|29|46939.40|0.09|0.04|N|O|1998-03-06|1998-02-24|1998-03-22|NONE|RAIL|s across the slyly pending pinto beans bo| +9775|102558|5069|5|21|32771.55|0.05|0.06|N|O|1998-03-10|1998-03-03|1998-03-27|NONE|REG AIR|ly furiously regu| +9800|151261|3777|1|21|27557.46|0.09|0.01|N|O|1996-10-01|1996-10-25|1996-10-29|COLLECT COD|MAIL|low excuses about t| +9801|81106|8631|1|26|28264.60|0.06|0.00|N|O|1995-09-29|1995-08-31|1995-10-03|NONE|TRUCK|e the carefully regular deposits. slyly | +9801|141149|6178|2|48|57126.72|0.08|0.08|N|O|1995-09-23|1995-07-26|1995-10-20|DELIVER IN PERSON|REG AIR|packages. furiously careful deposits | +9802|141858|6887|1|2|3799.70|0.07|0.03|A|F|1993-11-03|1993-11-24|1993-12-03|TAKE BACK RETURN|MAIL|inal escapad| +9802|5505|8006|2|35|49367.50|0.01|0.00|A|F|1993-12-18|1993-12-01|1993-12-24|DELIVER IN PERSON|AIR|egular dependenci| +9803|105093|114|1|16|17569.44|0.09|0.04|R|F|1994-09-03|1994-07-27|1994-09-05|NONE|FOB|dazzle furiously. closely express account| +9803|89828|9829|2|11|19996.02|0.09|0.02|A|F|1994-07-15|1994-08-13|1994-07-16|NONE|SHIP|carefully. quickly bold excuses| +9803|134539|2079|3|27|42485.31|0.01|0.04|R|F|1994-07-07|1994-07-30|1994-07-10|TAKE BACK RETURN|TRUCK|ter the bold instruc| +9804|51148|6159|1|46|50560.44|0.03|0.01|N|O|1998-06-23|1998-05-19|1998-07-13|TAKE BACK RETURN|REG AIR|ajole furiously above the blithely special | +9804|28876|6383|2|17|30682.79|0.10|0.05|N|O|1998-06-20|1998-05-04|1998-07-17|TAKE BACK RETURN|SHIP|leep packages. blithely reg| +9804|115480|5481|3|20|29909.60|0.07|0.02|N|O|1998-06-28|1998-04-16|1998-07-05|DELIVER IN PERSON|RAIL|against the slyly expre| +9804|56866|4382|4|12|21874.32|0.10|0.05|N|O|1998-04-14|1998-04-04|1998-05-14|DELIVER IN PERSON|TRUCK|to beans. ironic accounts a| +9804|141853|6882|5|24|45476.40|0.02|0.00|N|O|1998-03-16|1998-05-11|1998-03-17|DELIVER IN PERSON|TRUCK|nto beans are daringly.| +9805|87500|7501|1|16|23800.00|0.00|0.03|R|F|1992-05-20|1992-06-04|1992-05-30|DELIVER IN PERSON|TRUCK|bove the blithely ironic platelets use f| +9805|4894|9895|2|11|19787.79|0.02|0.08|R|F|1992-05-29|1992-06-25|1992-06-21|COLLECT COD|FOB|s sleep. unusual instructions hag| +9805|44280|9289|3|45|55092.60|0.07|0.07|R|F|1992-07-27|1992-07-08|1992-08-16|TAKE BACK RETURN|AIR|anently even saut| +9805|5243|5244|4|6|6889.44|0.09|0.01|A|F|1992-05-20|1992-06-12|1992-05-21|NONE|MAIL| special deposits wake. special, express id| +9805|107204|9715|5|23|27857.60|0.03|0.05|A|F|1992-05-27|1992-06-20|1992-06-18|TAKE BACK RETURN|AIR|r dolphins. regularly unusual de| +9806|176750|6751|1|9|16440.75|0.09|0.03|R|F|1995-02-20|1995-03-24|1995-03-15|COLLECT COD|SHIP|eas. unusual, r| +9807|173934|1486|1|46|92364.78|0.09|0.00|A|F|1994-08-13|1994-06-16|1994-08-14|NONE|RAIL|y according to the slyly even foxes-- care| +9807|102469|7490|2|24|35315.04|0.09|0.00|A|F|1994-07-16|1994-07-23|1994-07-20|DELIVER IN PERSON|FOB|ckages. ironic instructions above the| +9807|190261|2781|3|49|66211.74|0.09|0.04|A|F|1994-08-18|1994-08-12|1994-09-07|DELIVER IN PERSON|REG AIR|inal dolphins nag blith| +9807|114025|6537|4|11|11429.22|0.09|0.07|A|F|1994-06-10|1994-07-06|1994-06-19|TAKE BACK RETURN|FOB|sts above the furiously p| +9807|5537|8038|5|24|34620.72|0.03|0.03|A|F|1994-05-22|1994-07-23|1994-05-24|TAKE BACK RETURN|MAIL|uriously. furiou| +9807|53537|6043|6|43|64092.79|0.08|0.02|R|F|1994-05-31|1994-08-01|1994-06-17|NONE|RAIL|onic reques| +9832|152663|5179|1|48|82351.68|0.00|0.01|N|O|1998-10-13|1998-08-29|1998-11-02|TAKE BACK RETURN|SHIP|sits. doggedly sile| +9832|4517|2018|2|23|32694.73|0.00|0.01|N|O|1998-09-18|1998-09-27|1998-09-19|TAKE BACK RETURN|RAIL|packages haggle slyly quickly final excuse| +9832|103739|8760|3|38|66223.74|0.06|0.05|N|O|1998-08-28|1998-08-06|1998-09-15|COLLECT COD|AIR|final packag| +9832|134641|2181|4|1|1675.64|0.07|0.04|N|O|1998-09-14|1998-08-10|1998-10-11|TAKE BACK RETURN|FOB|re. regular accounts haggle blithely i| +9832|99823|2333|5|21|38279.22|0.08|0.06|N|O|1998-08-14|1998-08-21|1998-08-15|TAKE BACK RETURN|RAIL|lithe pinto beans promise slyly acro| +9832|108835|1346|6|41|75597.03|0.04|0.00|N|O|1998-07-21|1998-09-14|1998-07-27|COLLECT COD|RAIL| special excuses wake across the asymptote| +9833|172987|539|1|16|32959.68|0.06|0.03|R|F|1992-09-28|1992-10-13|1992-10-15|COLLECT COD|REG AIR|ts! ironic, pending platelets wak| +9834|167816|7817|1|24|45211.44|0.02|0.02|N|O|1998-09-20|1998-09-25|1998-10-20|COLLECT COD|RAIL|uickly ironic pin| +9834|72553|5061|2|44|67124.20|0.10|0.04|N|O|1998-11-03|1998-10-04|1998-11-27|NONE|REG AIR|g furiously against the pending instruct| +9834|193168|3169|3|16|20178.56|0.00|0.00|N|O|1998-09-12|1998-09-09|1998-09-24|DELIVER IN PERSON|REG AIR| haggle slyly after the blithely final | +9834|172694|246|4|26|45933.94|0.03|0.03|N|O|1998-11-01|1998-09-05|1998-11-24|TAKE BACK RETURN|RAIL|ously final packages accord| +9834|60878|5891|5|8|14710.96|0.04|0.01|N|O|1998-11-04|1998-10-01|1998-11-07|DELIVER IN PERSON|MAIL|y around the carefully r| +9834|160280|5313|6|5|6701.40|0.09|0.04|N|O|1998-10-20|1998-10-01|1998-11-12|NONE|TRUCK| wake above the blithely special foxe| +9835|47095|9600|1|17|17715.53|0.02|0.02|R|F|1994-01-28|1994-01-22|1994-02-22|NONE|RAIL|nstructions. f| +9835|124824|2361|2|23|42522.86|0.02|0.03|R|F|1994-04-04|1994-02-11|1994-04-23|DELIVER IN PERSON|MAIL|s. silent dolphins detect against th| +9835|104048|9069|3|25|26301.00|0.03|0.07|R|F|1994-02-17|1994-02-05|1994-02-28|COLLECT COD|AIR|ymptotes run f| +9835|118454|3477|4|48|70677.60|0.07|0.02|R|F|1994-03-25|1994-02-10|1994-04-17|NONE|REG AIR| ironic packages.| +9836|124775|2312|1|10|17997.70|0.00|0.08|R|F|1994-12-20|1995-01-31|1995-01-13|DELIVER IN PERSON|RAIL| slyly even | +9836|83800|8817|2|22|39243.60|0.07|0.07|R|F|1995-01-26|1995-01-23|1995-02-16|COLLECT COD|TRUCK|le requests. bold | +9837|144571|2114|1|32|51698.24|0.01|0.01|N|O|1998-02-21|1998-01-02|1998-03-19|NONE|SHIP|uses sleep slyl| +9837|197674|194|2|18|31890.06|0.07|0.08|N|O|1998-01-02|1998-01-30|1998-01-24|COLLECT COD|AIR|ns. slyly pending platelets| +9837|106635|4166|3|29|47607.27|0.01|0.02|N|O|1998-01-21|1998-01-28|1998-02-13|TAKE BACK RETURN|RAIL|carefully silent fo| +9837|4281|9282|4|34|40299.52|0.05|0.00|N|O|1998-01-10|1998-02-06|1998-02-07|TAKE BACK RETURN|FOB|usual accounts. carefully fin| +9838|46887|1896|1|10|18338.80|0.00|0.06|R|F|1994-09-09|1994-10-06|1994-09-10|NONE|FOB|ze slyly alongside of the carefully unusual| +9838|27897|5404|2|37|67520.93|0.00|0.03|A|F|1994-11-30|1994-10-03|1994-12-30|COLLECT COD|FOB|dependencies about the f| +9838|57699|205|3|28|46387.32|0.09|0.04|A|F|1994-12-07|1994-10-05|1994-12-18|TAKE BACK RETURN|TRUCK|ffily slyly pending accounts. | +9838|135386|5387|4|12|17056.56|0.03|0.05|R|F|1994-09-15|1994-09-24|1994-10-06|COLLECT COD|REG AIR|ackages after the expre| +9839|159852|9853|1|26|49708.10|0.09|0.00|R|F|1992-12-26|1992-11-20|1993-01-12|NONE|SHIP|cross the quickly express packages. pack| +9839|31516|1517|2|7|10132.57|0.03|0.03|R|F|1992-10-05|1992-11-15|1992-10-08|NONE|REG AIR|lithely ironic in| +9864|62321|4828|1|7|8983.24|0.02|0.07|R|F|1994-06-21|1994-06-12|1994-07-04|TAKE BACK RETURN|RAIL|r frays use quickly re| +9864|22751|5254|2|2|3347.50|0.05|0.02|A|F|1994-08-03|1994-07-02|1994-08-28|TAKE BACK RETURN|SHIP|fully special accounts are against the f| +9865|119188|1700|1|24|28972.32|0.08|0.01|N|O|1997-03-02|1997-04-01|1997-03-08|TAKE BACK RETURN|AIR|e alongside of the special | +9865|177260|4812|2|30|40117.80|0.05|0.04|N|O|1997-06-14|1997-04-05|1997-07-04|COLLECT COD|AIR|ions. blithely si| +9865|1383|8884|3|16|20550.08|0.01|0.02|N|O|1997-03-04|1997-05-04|1997-03-29|TAKE BACK RETURN|AIR|s wake carefully | +9865|41692|1693|4|7|11435.83|0.10|0.05|N|O|1997-04-15|1997-04-08|1997-04-18|NONE|TRUCK|ss deposits are quickly i| +9865|113012|3013|5|18|18450.18|0.06|0.05|N|O|1997-03-01|1997-05-13|1997-03-14|DELIVER IN PERSON|RAIL|ely expres| +9866|4983|2484|1|7|13215.86|0.04|0.04|A|F|1992-07-04|1992-08-04|1992-07-06|TAKE BACK RETURN|SHIP|even deposits are quietly along the| +9866|144484|6999|2|41|62667.68|0.07|0.05|R|F|1992-10-11|1992-09-11|1992-11-02|DELIVER IN PERSON|FOB|blithely final pa| +9866|131393|1394|3|16|22790.24|0.07|0.07|R|F|1992-09-13|1992-07-22|1992-09-23|NONE|MAIL| print. bold deposits nag care| +9867|12791|2792|1|5|8518.95|0.08|0.06|A|F|1992-05-02|1992-04-01|1992-05-22|NONE|MAIL|nic frays;| +9867|172177|4695|2|40|49966.80|0.00|0.01|A|F|1992-02-12|1992-04-17|1992-03-04|NONE|TRUCK|l packages | +9867|172781|333|3|20|37075.60|0.09|0.04|A|F|1992-04-18|1992-03-22|1992-05-04|NONE|SHIP|hely daring deposits breach| +9868|85133|7642|1|10|11181.30|0.00|0.06|A|F|1994-07-03|1994-08-27|1994-07-10|COLLECT COD|TRUCK|e ironic r| +9868|26544|1549|2|4|5882.16|0.07|0.08|A|F|1994-09-08|1994-07-15|1994-09-17|DELIVER IN PERSON|FOB| evenly even deposit| +9868|119344|9345|3|30|40900.20|0.04|0.03|A|F|1994-06-08|1994-08-30|1994-06-29|DELIVER IN PERSON|AIR|y. never bold platelets sleep car| +9868|12143|2144|4|35|36929.90|0.02|0.04|R|F|1994-09-17|1994-07-15|1994-10-17|COLLECT COD|TRUCK|uriously regular pinto be| +9868|86519|9028|5|4|6022.04|0.05|0.02|A|F|1994-09-19|1994-07-11|1994-09-24|DELIVER IN PERSON|REG AIR|requests use amon| +9868|120942|8479|6|48|94221.12|0.10|0.04|R|F|1994-08-04|1994-07-29|1994-08-09|NONE|FOB|iously silent theodolites. bold, unusua| +9869|137519|33|1|37|57590.87|0.03|0.06|N|O|1995-06-25|1995-08-03|1995-07-12|TAKE BACK RETURN|RAIL|ke quickly according to the furiously pe| +9869|80526|527|2|31|46702.12|0.01|0.00|N|O|1995-07-09|1995-08-11|1995-08-01|TAKE BACK RETURN|RAIL|arefully ironic requests nag slyly ca| +9869|193608|8647|3|39|66362.40|0.05|0.00|N|O|1995-07-24|1995-07-22|1995-08-16|NONE|AIR| express instructions use according| +9870|164449|9482|1|47|71131.68|0.02|0.00|A|F|1994-08-17|1994-10-06|1994-09-07|COLLECT COD|MAIL|uses haggle furiously above the sly| +9870|86114|1131|2|27|29702.97|0.04|0.05|A|F|1994-09-27|1994-10-10|1994-10-01|DELIVER IN PERSON|MAIL| engage final instructions. pending, | +9871|117465|2488|1|30|44473.80|0.03|0.07|A|F|1992-04-14|1992-05-10|1992-05-04|DELIVER IN PERSON|MAIL|e final ideas ca| +9871|33392|8399|2|15|19880.85|0.02|0.05|A|F|1992-05-16|1992-05-16|1992-05-21|COLLECT COD|FOB|ggle slyly accor| +9871|2690|191|3|46|73263.74|0.03|0.06|A|F|1992-04-11|1992-05-22|1992-05-01|DELIVER IN PERSON|TRUCK|ly quickly even foxes. quickly final ins| +9871|10006|7510|4|37|33892.00|0.03|0.06|A|F|1992-06-23|1992-05-31|1992-06-25|DELIVER IN PERSON|AIR|regular pinto be| +9871|154356|6872|5|6|8462.10|0.06|0.02|A|F|1992-03-28|1992-05-10|1992-04-17|TAKE BACK RETURN|RAIL|n excuses. blithely ironic requests| +9896|62477|7490|1|35|50381.45|0.01|0.08|N|O|1995-09-02|1995-10-10|1995-09-17|DELIVER IN PERSON|SHIP|sts. even requests cajole furiou| +9896|41099|6108|2|2|2080.18|0.08|0.04|N|O|1995-08-27|1995-10-02|1995-09-08|COLLECT COD|SHIP|ironic requests. iro| +9896|134367|9394|3|16|22421.76|0.01|0.07|N|O|1995-09-21|1995-09-26|1995-09-29|NONE|SHIP|uests. furious, unusual theodoli| +9896|102399|4910|4|29|40640.31|0.01|0.01|N|O|1995-10-03|1995-08-28|1995-11-01|NONE|FOB|wake slyly of the slyly ev| +9897|111947|1948|1|49|95988.06|0.09|0.05|A|F|1995-02-09|1995-01-10|1995-03-01|DELIVER IN PERSON|SHIP|ckey players! f| +9897|91066|1067|2|43|45453.58|0.00|0.06|R|F|1995-02-03|1995-01-09|1995-03-02|TAKE BACK RETURN|TRUCK|sly ironic requests. carefu| +9897|138719|8720|3|12|21092.52|0.07|0.00|A|F|1995-02-08|1994-12-29|1995-02-15|NONE|REG AIR|y even packages cajole bold deposit| +9898|63592|6099|1|47|73112.73|0.09|0.08|N|O|1997-11-16|1997-09-18|1997-12-12|TAKE BACK RETURN|FOB|e of the regular, | +9898|180412|7967|2|30|44772.30|0.09|0.03|N|O|1997-08-12|1997-09-07|1997-08-16|NONE|MAIL|ts sleep. bold realms aga| +9898|167694|7695|3|18|31710.42|0.04|0.08|N|O|1997-12-02|1997-10-19|1997-12-27|DELIVER IN PERSON|SHIP|cajole blithely acco| +9898|31604|4108|4|46|70637.60|0.03|0.06|N|O|1997-11-27|1997-09-16|1997-12-24|DELIVER IN PERSON|REG AIR| solve carefully across| +9899|65981|5982|1|43|83720.14|0.02|0.07|R|F|1992-04-06|1992-04-02|1992-04-11|DELIVER IN PERSON|TRUCK|thely ironic Tiresia| +9899|142252|7281|2|43|55652.75|0.03|0.01|A|F|1992-02-26|1992-03-18|1992-03-07|TAKE BACK RETURN|FOB|s are. carefully express accounts wak| +9899|17941|5445|3|11|20448.34|0.01|0.05|R|F|1992-05-23|1992-03-28|1992-06-21|COLLECT COD|SHIP|re accordi| +9900|81998|7015|1|36|71279.64|0.00|0.08|N|O|1996-12-23|1996-12-16|1997-01-20|NONE|AIR|o beans. slyly| +9901|117984|3007|1|31|62061.38|0.06|0.06|R|F|1993-11-15|1993-11-24|1993-11-22|DELIVER IN PERSON|REG AIR|ng theodolites sleep quic| +9901|150755|756|2|12|21669.00|0.05|0.08|A|F|1993-10-10|1993-10-31|1993-10-22|TAKE BACK RETURN|RAIL|e of the slyly | +9902|82433|4942|1|13|18400.59|0.07|0.04|N|O|1997-01-03|1997-01-17|1997-01-12|COLLECT COD|RAIL|mong the packages. fluffily even pack| +9902|47432|7433|2|41|56556.63|0.06|0.01|N|O|1996-11-29|1997-01-19|1996-12-17|NONE|REG AIR|lly unusual requests. slyly unusual| +9902|175386|421|3|46|67223.48|0.01|0.05|N|O|1997-02-20|1997-01-14|1997-02-22|NONE|REG AIR|even accounts are carefully ironic pinto be| +9903|91312|6331|1|32|41705.92|0.10|0.08|A|F|1992-10-02|1992-10-23|1992-11-01|NONE|TRUCK|r accounts haggle carefully quickly unusua| +9903|76645|4167|2|10|16216.40|0.05|0.08|A|F|1992-12-10|1992-10-17|1992-12-15|DELIVER IN PERSON|AIR|oxes are furiously above| +9928|12309|9813|1|23|28089.90|0.09|0.06|A|F|1993-11-24|1993-12-27|1993-12-21|NONE|AIR|ve the ironically| +9929|163327|8360|1|41|57003.12|0.02|0.07|N|O|1996-03-13|1996-04-13|1996-03-19|COLLECT COD|SHIP|y across the regular pa| +9929|29083|9084|2|13|13157.04|0.04|0.07|N|O|1996-05-06|1996-02-24|1996-05-22|COLLECT COD|FOB|ong the slyly final asympt| +9929|195849|5850|3|40|77793.60|0.01|0.08|N|O|1996-05-08|1996-03-13|1996-06-03|COLLECT COD|AIR|structions. pinto beans are| +9930|155950|5951|1|5|10029.75|0.06|0.04|R|F|1992-03-31|1992-03-11|1992-04-01|DELIVER IN PERSON|SHIP|se ruthlessly ironic | +9930|42226|7235|2|40|46728.80|0.07|0.04|A|F|1992-02-13|1992-04-20|1992-03-08|NONE|AIR|longside of the permanent| +9930|90369|7897|3|5|6796.80|0.01|0.08|A|F|1992-04-03|1992-04-05|1992-04-15|NONE|MAIL| the quickly u| +9931|38042|3049|1|15|14700.60|0.06|0.06|N|O|1996-07-04|1996-05-23|1996-07-16|TAKE BACK RETURN|AIR|of the requests. slyly final| +9931|169389|6938|2|5|7291.90|0.03|0.00|N|O|1996-06-02|1996-04-30|1996-06-19|TAKE BACK RETURN|MAIL|slyly pending requests cajole s| +9931|117321|2344|3|39|52194.48|0.10|0.01|N|O|1996-07-11|1996-06-11|1996-08-03|DELIVER IN PERSON|AIR|s. final accounts integrate furiou| +9932|169906|4939|1|43|84963.70|0.05|0.01|A|F|1994-09-03|1994-07-23|1994-09-10|COLLECT COD|SHIP|l attainment| +9932|196841|1880|2|36|69762.24|0.07|0.03|A|F|1994-07-16|1994-07-14|1994-08-04|TAKE BACK RETURN|SHIP|cajole stealthily. stealt| +9932|104548|2079|3|11|17077.94|0.05|0.06|A|F|1994-07-07|1994-07-26|1994-07-25|TAKE BACK RETURN|TRUCK|quickly fin| +9933|137260|7261|1|29|37620.54|0.02|0.02|A|F|1994-05-05|1994-05-21|1994-05-13|DELIVER IN PERSON|REG AIR|ites. unusual foxes mold| +9934|137811|5351|1|21|38825.01|0.00|0.02|N|O|1996-09-25|1996-08-26|1996-10-17|TAKE BACK RETURN|SHIP|after the blithely final braids. regular,| +9934|179721|2239|2|17|30612.24|0.03|0.06|N|O|1996-06-23|1996-08-05|1996-07-07|COLLECT COD|SHIP|arls haggle carefully across the regul| +9935|16757|4261|1|15|25106.25|0.03|0.08|N|O|1995-11-25|1995-11-14|1995-12-13|DELIVER IN PERSON|SHIP|deas are alongside of the t| +9935|23222|729|2|15|17178.30|0.08|0.06|N|O|1995-10-26|1995-11-29|1995-10-27|NONE|FOB|, even accounts cajole quick| +9935|83540|8557|3|37|56370.98|0.07|0.05|N|O|1995-12-10|1995-12-02|1995-12-13|TAKE BACK RETURN|MAIL|s are carefully-- dependencies ca| +9935|55129|5130|4|29|31439.48|0.10|0.06|N|O|1996-01-14|1995-11-08|1996-02-05|TAKE BACK RETURN|MAIL|uests hang carefully quietly | +9935|137730|5270|5|42|74244.66|0.06|0.07|N|O|1995-11-06|1995-11-09|1995-12-02|COLLECT COD|REG AIR|ackages do use qu| +9960|160817|5850|1|21|39434.01|0.07|0.04|R|F|1994-05-23|1994-06-24|1994-06-15|COLLECT COD|REG AIR|gs. bold instructions nag quickly iron| +9960|47082|4595|2|30|30872.40|0.01|0.03|R|F|1994-04-14|1994-05-26|1994-05-03|COLLECT COD|MAIL|ully ironic inst| +9961|70689|8211|1|38|63067.84|0.03|0.07|N|O|1995-06-27|1995-05-23|1995-06-29|COLLECT COD|FOB|old instructions sleep quickly quickly| +9961|69509|2016|2|10|14785.00|0.10|0.00|N|F|1995-06-01|1995-06-23|1995-06-21|DELIVER IN PERSON|AIR|integrate quickly! bl| +9961|31532|4036|3|3|4390.59|0.05|0.07|N|O|1995-07-27|1995-06-27|1995-08-07|TAKE BACK RETURN|RAIL|ic, final gifts snooze. | +9961|149813|4842|4|7|13039.67|0.02|0.06|N|F|1995-06-08|1995-05-17|1995-07-02|DELIVER IN PERSON|RAIL|ithely. special warth| +9961|96599|6600|5|7|11169.13|0.06|0.07|A|F|1995-05-01|1995-05-28|1995-05-14|NONE|SHIP| the final packages u| +9962|165913|5914|1|21|41557.11|0.10|0.02|N|O|1996-06-21|1996-05-20|1996-07-14|NONE|RAIL|s are after the furiou| +9962|98064|574|2|19|20179.14|0.05|0.00|N|O|1996-07-01|1996-05-26|1996-07-20|COLLECT COD|AIR|es poach carefully. unusual, ir| +9962|153697|6213|3|47|82282.43|0.08|0.08|N|O|1996-06-01|1996-05-03|1996-06-15|TAKE BACK RETURN|SHIP|e to use. carefully silent pinto beans s| +9962|180883|5920|4|27|53024.76|0.05|0.06|N|O|1996-06-02|1996-06-10|1996-06-08|COLLECT COD|REG AIR|en asymptotes. slyly iro| +9962|94337|1865|5|9|11981.97|0.10|0.04|N|O|1996-07-10|1996-05-16|1996-07-25|NONE|FOB|nt, silent depos| +9962|108196|5727|6|24|28900.56|0.07|0.07|N|O|1996-05-12|1996-06-12|1996-05-28|TAKE BACK RETURN|AIR|c packages against the fina| +9963|123763|3764|1|12|21441.12|0.03|0.05|A|F|1994-12-08|1995-01-18|1994-12-30|DELIVER IN PERSON|SHIP| carefully about the quickl| +9963|79396|9397|2|18|24757.02|0.06|0.06|R|F|1995-03-19|1995-01-21|1995-04-12|COLLECT COD|RAIL|ix carefully acr| +9963|1197|8698|3|2|2196.38|0.10|0.00|R|F|1995-02-14|1995-02-05|1995-03-15|TAKE BACK RETURN|FOB|s wake carefully about the ruthless| +9964|196427|6428|1|32|48749.44|0.00|0.05|N|O|1995-11-01|1995-09-17|1995-11-19|COLLECT COD|REG AIR|st the fluffily regula| +9964|146828|1857|2|22|41246.04|0.09|0.00|N|O|1995-09-17|1995-10-04|1995-10-10|COLLECT COD|RAIL|s. slyly fi| +9964|122317|4830|3|44|58929.64|0.06|0.05|N|O|1995-10-28|1995-09-27|1995-11-20|DELIVER IN PERSON|SHIP|quickly ironic braids haggle accor| +9965|194168|4169|1|8|10097.28|0.07|0.00|R|F|1995-05-28|1995-05-05|1995-06-16|COLLECT COD|TRUCK| ironic notornis| +9965|180589|5626|2|13|21704.54|0.05|0.08|N|O|1995-06-20|1995-05-04|1995-07-05|TAKE BACK RETURN|SHIP|nly final, express foxes. th| +9965|151618|4134|3|24|40070.64|0.03|0.03|R|F|1995-04-18|1995-05-04|1995-04-26|NONE|MAIL|hely. theodolites wake furious| +9965|39015|1519|4|13|12402.13|0.08|0.05|R|F|1995-03-22|1995-05-28|1995-04-13|TAKE BACK RETURN|REG AIR|sly even accounts| +9965|118338|850|5|9|12206.97|0.06|0.07|N|O|1995-07-06|1995-05-28|1995-08-01|DELIVER IN PERSON|MAIL| the fluffily even dep| +9966|27741|5248|1|41|68418.34|0.08|0.00|R|F|1993-03-21|1993-06-10|1993-03-22|COLLECT COD|MAIL|ss asymptotes wake clos| +9966|26671|6672|2|42|67102.14|0.05|0.02|R|F|1993-04-06|1993-05-22|1993-05-06|DELIVER IN PERSON|SHIP|quests wake. fluffily even dugouts | +9966|45764|773|3|4|6839.04|0.05|0.07|A|F|1993-06-21|1993-04-15|1993-07-16|NONE|AIR|lithely fi| +9966|150259|2775|4|16|20948.00|0.00|0.00|R|F|1993-07-03|1993-05-14|1993-07-30|COLLECT COD|RAIL|eodolites-- quickly specia| +9966|199196|4235|5|12|15542.28|0.03|0.05|R|F|1993-06-11|1993-06-06|1993-06-29|TAKE BACK RETURN|SHIP|the express, expre| +9966|86595|6596|6|24|37958.16|0.01|0.00|R|F|1993-05-16|1993-06-13|1993-05-23|COLLECT COD|REG AIR|t the ideas sleep blithely fluffily | +9966|199180|1700|7|14|17908.52|0.09|0.05|A|F|1993-06-19|1993-06-05|1993-07-19|NONE|SHIP|the warthogs. quickly slow sautern| +9967|17069|4573|1|3|2958.18|0.04|0.05|N|O|1997-10-29|1997-10-28|1997-11-20|TAKE BACK RETURN|REG AIR| instructions might de| +9967|74525|7033|2|1|1499.52|0.06|0.08|N|O|1997-12-02|1997-10-13|1997-12-20|COLLECT COD|AIR|t. quickly| +9967|129862|9863|3|18|34053.48|0.03|0.00|N|O|1997-11-27|1997-10-09|1997-11-29|COLLECT COD|AIR|ly bold deposits. bol| +9967|189552|2071|4|6|9849.30|0.00|0.07|N|O|1997-11-17|1997-09-18|1997-12-03|DELIVER IN PERSON|FOB|es. quickly ironic requests | +9992|150409|5440|1|39|56916.60|0.02|0.06|N|O|1997-08-27|1997-07-23|1997-09-02|DELIVER IN PERSON|AIR|o beans. careful| +9992|107801|5332|2|27|48837.60|0.00|0.03|N|O|1997-06-06|1997-07-08|1997-06-28|NONE|TRUCK| ideas. mu| +9992|9520|4521|3|30|42885.60|0.05|0.02|N|O|1997-09-04|1997-07-08|1997-09-15|COLLECT COD|FOB|hould have to lose furio| +9992|186556|1593|4|4|6570.20|0.02|0.00|N|O|1997-09-10|1997-07-15|1997-09-14|TAKE BACK RETURN|REG AIR| unusual packages promise along the sly| +9992|44615|7120|5|34|53026.74|0.05|0.07|N|O|1997-07-30|1997-07-13|1997-08-10|TAKE BACK RETURN|SHIP|rding to the furiously unus| +9992|35774|5775|6|12|20517.24|0.10|0.06|N|O|1997-07-25|1997-07-25|1997-08-11|TAKE BACK RETURN|REG AIR|odolites. slyly i| +9993|113294|3295|1|4|5229.16|0.00|0.04|N|O|1996-02-21|1995-12-20|1996-03-21|COLLECT COD|RAIL|usly final instructions. furio| +9993|122160|7185|2|3|3546.48|0.09|0.05|N|O|1995-11-20|1995-12-08|1995-12-17|TAKE BACK RETURN|REG AIR|braids are careful| +9993|136575|4115|3|29|46735.53|0.07|0.04|N|O|1995-12-22|1995-12-10|1996-01-19|NONE|MAIL|n requests. enticing dep| +9994|68117|3130|1|32|34723.52|0.08|0.00|R|F|1993-08-18|1993-08-27|1993-09-05|COLLECT COD|RAIL| among the pains in| +9995|191843|1844|1|6|11609.04|0.10|0.01|A|F|1995-01-07|1994-12-16|1995-02-04|DELIVER IN PERSON|FOB|he slyly ironic packages may thra| +9995|97459|2478|2|30|43693.50|0.00|0.07|A|F|1995-01-11|1994-12-16|1995-02-03|NONE|MAIL| blithely. furiously final dep| +9995|181018|6055|3|32|35168.32|0.10|0.01|A|F|1995-01-11|1994-12-16|1995-01-20|TAKE BACK RETURN|AIR|tions about the ironic frets slee| +9995|168928|8929|4|22|43932.24|0.06|0.01|A|F|1995-02-11|1994-12-05|1995-02-26|NONE|SHIP|instructions are slyly spec| +9995|172332|2333|5|50|70216.50|0.00|0.06|A|F|1994-11-08|1995-01-23|1994-12-01|NONE|MAIL|ly blithely final account| +9995|176512|1547|6|22|34947.22|0.05|0.00|A|F|1995-01-18|1994-12-02|1995-01-28|TAKE BACK RETURN|AIR|ilent cour| +9996|180586|587|1|19|31665.02|0.01|0.02|N|O|1996-02-07|1996-03-06|1996-02-08|NONE|AIR| pending requests cajole carefully| +9996|103646|3647|2|9|14846.76|0.06|0.08|N|O|1996-03-04|1996-01-10|1996-03-05|NONE|AIR| alongside of the | +9997|61991|1992|1|15|29294.85|0.03|0.02|N|O|1997-03-28|1997-04-06|1997-04-08|COLLECT COD|REG AIR| around the final decoys s| +9997|76596|1611|2|34|53468.06|0.03|0.07|N|O|1997-04-12|1997-03-30|1997-04-20|DELIVER IN PERSON|RAIL|e ironic deposits. fluffi| +9997|135010|7524|3|32|33440.32|0.07|0.04|N|O|1997-04-11|1997-05-11|1997-04-23|TAKE BACK RETURN|SHIP|nic asymptotes affix furiously fluffily e| +9997|105622|8133|4|45|73242.90|0.00|0.05|N|O|1997-06-08|1997-04-13|1997-06-29|NONE|MAIL|quickly about the special fox| +9997|172261|2262|5|26|34664.76|0.10|0.06|N|O|1997-05-10|1997-04-22|1997-05-26|COLLECT COD|SHIP|ickly final deposits haggle | +9997|184586|7105|6|6|10023.48|0.10|0.05|N|O|1997-03-05|1997-04-14|1997-03-20|DELIVER IN PERSON|SHIP| accounts. slyly fin| +9998|161316|8865|1|31|42696.61|0.06|0.04|N|O|1997-01-08|1997-03-13|1997-02-07|TAKE BACK RETURN|FOB|ully fluffily final requests. requests prom| +9998|31424|1425|2|1|1355.42|0.00|0.05|N|O|1997-02-16|1997-03-11|1997-03-08|COLLECT COD|MAIL|eposits are. ideas according to| +9998|139247|6787|3|39|50163.36|0.10|0.00|N|O|1997-03-14|1997-02-12|1997-03-18|DELIVER IN PERSON|REG AIR|y enticing accounts around the quickly| +9998|107922|5453|4|36|69477.12|0.08|0.05|N|O|1997-04-21|1997-03-22|1997-05-08|TAKE BACK RETURN|RAIL| the furiou| +9999|85772|8281|1|7|12304.39|0.10|0.02|N|O|1996-07-25|1996-07-21|1996-08-24|COLLECT COD|MAIL|sleep quickly about t| +9999|167502|2535|2|33|51793.50|0.08|0.06|N|O|1996-07-29|1996-06-28|1996-08-02|COLLECT COD|SHIP| solve furiously according to the carefull| +9999|195326|7846|3|45|63959.40|0.09|0.01|N|O|1996-09-21|1996-06-29|1996-10-17|DELIVER IN PERSON|RAIL|kages. regular, unusu| +10024|60489|5502|1|18|26090.64|0.06|0.03|R|F|1993-04-26|1993-02-24|1993-05-21|DELIVER IN PERSON|FOB|oost slyly ironic requests. iro| +10024|26917|4424|2|46|84819.86|0.03|0.04|R|F|1993-02-22|1993-02-16|1993-03-08|NONE|TRUCK|ecial ideas are quick| +10024|192616|174|3|38|64927.18|0.07|0.01|A|F|1993-02-12|1993-03-01|1993-03-14|COLLECT COD|REG AIR|hely about the blithely regular packages| +10024|89149|1658|4|6|6828.84|0.07|0.03|A|F|1993-04-01|1993-04-09|1993-04-04|TAKE BACK RETURN|RAIL|uests migh| +10025|143284|5799|1|23|30527.44|0.04|0.08|N|O|1996-01-26|1996-01-17|1996-02-15|COLLECT COD|FOB|ss the special, pending pa| +10025|165512|3061|2|44|69410.44|0.06|0.05|N|O|1996-03-22|1996-02-11|1996-03-29|NONE|FOB|ckly unusual deposit| +10025|144829|2372|3|15|28107.30|0.10|0.07|N|O|1995-12-01|1995-12-30|1995-12-03|TAKE BACK RETURN|TRUCK| asymptotes. idly even water| +10026|57224|7225|1|1|1181.22|0.02|0.06|A|F|1992-08-22|1992-10-22|1992-08-27|DELIVER IN PERSON|FOB|ly final dependencies. special accou| +10026|161826|1827|2|26|49083.32|0.05|0.00|A|F|1992-10-10|1992-09-08|1992-11-04|TAKE BACK RETURN|TRUCK|cial theodolites. carefully even asympto| +10026|199002|1522|3|5|5505.00|0.08|0.08|R|F|1992-09-23|1992-09-29|1992-10-05|TAKE BACK RETURN|RAIL|al deposits detec| +10026|24076|9081|4|8|8000.56|0.04|0.01|R|F|1992-10-07|1992-10-09|1992-10-27|TAKE BACK RETURN|MAIL|s. furious, final pinto beans alongsid| +10026|41124|1125|5|44|46865.28|0.00|0.04|R|F|1992-08-30|1992-09-16|1992-09-17|DELIVER IN PERSON|RAIL| theodolites| +10027|100633|5654|1|7|11435.41|0.00|0.02|A|F|1993-11-19|1993-09-27|1993-11-21|TAKE BACK RETURN|TRUCK|eans haggle. carefully ironic package| +10027|137637|7638|2|35|58612.05|0.07|0.01|A|F|1993-07-24|1993-10-15|1993-07-31|COLLECT COD|TRUCK|wake furiously bold gifts. pen| +10027|53565|3566|3|3|4555.68|0.05|0.08|A|F|1993-11-09|1993-08-26|1993-11-28|COLLECT COD|RAIL| final, regular ideas. packages cajole | +10028|54060|6566|1|44|44618.64|0.10|0.00|N|O|1996-01-10|1996-02-06|1996-01-29|COLLECT COD|AIR|y even dependencies. express| +10028|178059|5611|2|38|43207.90|0.10|0.05|N|O|1996-01-06|1996-01-18|1996-01-28|COLLECT COD|TRUCK|t the packages? blithely ironic de| +10029|168204|8205|1|40|50888.00|0.02|0.07|N|O|1995-07-27|1995-07-19|1995-08-07|COLLECT COD|AIR|ajole blithely! express ideas cajole| +10029|194930|9969|2|45|91121.85|0.05|0.00|N|O|1995-07-01|1995-07-28|1995-07-30|DELIVER IN PERSON|REG AIR|he furiously even foxes. regular, regular | +10030|115170|5171|1|14|16592.38|0.04|0.03|N|O|1996-08-19|1996-10-06|1996-09-14|DELIVER IN PERSON|SHIP|c deposits. regular dinos nag fluffily | +10030|61118|8637|2|42|45322.62|0.08|0.07|N|O|1996-08-27|1996-10-22|1996-09-20|TAKE BACK RETURN|AIR| the furiously special instr| +10030|3366|867|3|11|13962.96|0.10|0.04|N|O|1996-12-12|1996-10-03|1996-12-23|NONE|AIR|ts cajole furiously. furiously unusual | +10031|196192|6193|1|11|14170.09|0.09|0.04|N|O|1997-05-17|1997-06-13|1997-05-18|NONE|SHIP|n; regular accounts nag even depths.| +10031|197829|2868|2|39|75145.98|0.10|0.08|N|O|1997-08-26|1997-08-08|1997-09-20|DELIVER IN PERSON|RAIL|en, unusual inst| +10031|111327|1328|3|27|36134.64|0.00|0.06|N|O|1997-07-14|1997-08-07|1997-08-06|DELIVER IN PERSON|SHIP| bold dependenci| +10031|69246|6765|4|4|4860.96|0.07|0.06|N|O|1997-05-25|1997-07-04|1997-05-28|TAKE BACK RETURN|RAIL|ing excuses. blithely final depo| +10031|5432|2933|5|1|1337.43|0.08|0.02|N|O|1997-06-09|1997-08-06|1997-06-28|TAKE BACK RETURN|TRUCK|dencies sleep furiously blithely ev| +10056|9897|9898|1|42|75889.38|0.10|0.02|N|O|1998-01-21|1998-03-13|1998-01-29|TAKE BACK RETURN|TRUCK| the furiously final multipliers.| +10056|137210|4750|2|40|49888.40|0.07|0.04|N|O|1998-03-11|1998-03-10|1998-04-03|COLLECT COD|AIR|al, final excuses haggle f| +10056|88347|3364|3|3|4006.02|0.00|0.03|N|O|1998-02-22|1998-03-22|1998-03-24|COLLECT COD|RAIL|y among the quickly| +10056|36353|1360|4|13|16761.55|0.06|0.03|N|O|1998-01-12|1998-03-22|1998-01-29|COLLECT COD|TRUCK|. pending instructi| +10056|174087|6605|5|39|45282.12|0.03|0.05|N|O|1998-01-09|1998-02-02|1998-01-11|COLLECT COD|SHIP|y final requests. permanently final asymp| +10056|65275|2794|6|8|9922.16|0.05|0.04|N|O|1998-03-05|1998-03-22|1998-03-10|DELIVER IN PERSON|AIR|eep. express | +10057|170499|5534|1|2|3138.98|0.01|0.07|R|F|1992-12-16|1992-11-10|1992-12-30|COLLECT COD|RAIL|riously furiously unusual r| +10057|168706|3739|2|43|76312.10|0.09|0.03|A|F|1992-11-03|1992-11-26|1992-11-07|COLLECT COD|RAIL|eposits. ac| +10058|14021|9024|1|29|27115.58|0.00|0.06|N|O|1996-10-17|1996-09-17|1996-11-10|DELIVER IN PERSON|FOB|unusual asymptotes. carefully regula| +10059|136088|6089|1|12|13488.96|0.09|0.05|A|F|1994-09-08|1994-08-26|1994-10-06|DELIVER IN PERSON|FOB|kly unusual requests haggle blithely.| +10059|16319|1322|2|40|49412.40|0.00|0.07|R|F|1994-09-24|1994-07-16|1994-10-01|NONE|AIR|totes wake alongside of the excuses. sp| +10060|60297|7816|1|4|5029.16|0.07|0.07|N|O|1997-06-10|1997-06-26|1997-06-17|DELIVER IN PERSON|SHIP|ress dependen| +10060|9276|4277|2|27|32002.29|0.09|0.05|N|O|1997-08-19|1997-07-05|1997-09-15|TAKE BACK RETURN|SHIP|lyly regular platelets | +10060|98545|3564|3|40|61741.60|0.03|0.02|N|O|1997-05-05|1997-06-23|1997-05-24|TAKE BACK RETURN|FOB|s sleep quickly: fluffily qui| +10060|33124|8131|4|7|7399.84|0.03|0.08|N|O|1997-05-30|1997-06-19|1997-06-08|COLLECT COD|MAIL|st the furiously final pinto beans boost | +10060|111868|9402|5|10|18798.60|0.00|0.02|N|O|1997-08-02|1997-07-18|1997-08-30|TAKE BACK RETURN|RAIL|e of the express, pending asymptot| +10060|159020|6566|6|7|7553.14|0.08|0.04|N|O|1997-06-25|1997-06-05|1997-07-07|TAKE BACK RETURN|TRUCK|might detect carefully along the bravel| +10060|33485|995|7|4|5673.92|0.05|0.02|N|O|1997-06-28|1997-06-23|1997-07-09|NONE|SHIP|. slyly unusual ideas according to th| +10061|174900|9935|1|2|3949.80|0.05|0.08|N|O|1997-02-22|1997-03-28|1997-03-08|TAKE BACK RETURN|RAIL|c accounts affix | +10061|136422|3962|2|3|4375.26|0.07|0.08|N|O|1997-05-14|1997-05-04|1997-05-15|DELIVER IN PERSON|FOB|onic accounts nag. ir| +10061|36231|8735|3|20|23344.60|0.05|0.00|N|O|1997-03-27|1997-04-14|1997-04-08|COLLECT COD|MAIL|nd the fluffily eve| +10061|129820|9821|4|14|25897.48|0.03|0.00|N|O|1997-02-13|1997-03-09|1997-02-21|NONE|TRUCK| are. bold deposits mold. caref| +10061|79321|9322|5|14|18204.48|0.10|0.02|N|O|1997-04-01|1997-03-31|1997-04-04|NONE|RAIL|s. fluffil| +10062|87653|5178|1|24|39375.60|0.08|0.02|N|O|1997-04-19|1997-03-29|1997-05-18|DELIVER IN PERSON|TRUCK|usly even theodolites. r| +10063|43429|942|1|3|4117.26|0.09|0.02|R|F|1992-06-08|1992-08-10|1992-06-29|NONE|SHIP|und the ruthlessly | +10063|108595|8596|2|40|64143.60|0.08|0.07|A|F|1992-08-22|1992-07-30|1992-09-11|TAKE BACK RETURN|SHIP|ainments engage carefull| +10063|146545|6546|3|36|57295.44|0.01|0.06|R|F|1992-09-29|1992-07-10|1992-10-24|COLLECT COD|MAIL|carefully even | +10063|172860|2861|4|21|40590.06|0.05|0.06|R|F|1992-09-23|1992-08-09|1992-10-21|COLLECT COD|TRUCK| the bold dependenc| +10063|52642|158|5|33|52623.12|0.09|0.05|A|F|1992-09-22|1992-08-24|1992-09-24|DELIVER IN PERSON|REG AIR|at the carefu| +10063|146686|6687|6|50|86634.00|0.05|0.02|A|F|1992-08-29|1992-08-18|1992-09-16|TAKE BACK RETURN|MAIL|into beans are blithely quickly i| +10063|151374|8920|7|33|47037.21|0.10|0.02|A|F|1992-08-25|1992-08-11|1992-09-09|DELIVER IN PERSON|RAIL|quickly even pinto bean| +10088|128144|657|1|47|55090.58|0.03|0.08|R|F|1992-11-09|1992-10-05|1992-11-16|TAKE BACK RETURN|MAIL|luffily eve| +10089|147942|2971|1|36|71637.84|0.07|0.08|R|F|1995-06-05|1995-07-10|1995-06-11|TAKE BACK RETURN|AIR|ajole. stealthy epitaphs across th| +10089|48363|8364|2|14|18359.04|0.01|0.03|N|F|1995-05-29|1995-07-29|1995-06-27|NONE|AIR|tes are furiously after t| +10089|30766|8276|3|29|49206.04|0.06|0.00|N|O|1995-08-30|1995-07-11|1995-09-23|NONE|RAIL|st busily regular inst| +10089|81460|6477|4|39|56216.94|0.09|0.06|N|O|1995-08-23|1995-06-22|1995-08-24|COLLECT COD|RAIL|ding requests. slyly | +10089|92893|2894|5|23|43375.47|0.09|0.08|R|F|1995-05-20|1995-07-28|1995-06-03|NONE|MAIL|ly final pinto beans are fluffily. bl| +10089|47791|296|6|43|74767.97|0.01|0.06|N|O|1995-07-11|1995-06-21|1995-07-14|COLLECT COD|TRUCK|efully furiously final reque| +10089|17659|5163|7|14|22073.10|0.06|0.02|N|O|1995-08-21|1995-07-10|1995-08-29|TAKE BACK RETURN|AIR|s. slyly pe| +10090|184590|9627|1|32|53586.88|0.02|0.06|N|O|1996-07-30|1996-07-11|1996-08-28|COLLECT COD|MAIL|even, regular platelets| +10090|191336|1337|2|23|32828.59|0.08|0.00|N|O|1996-08-13|1996-07-31|1996-08-28|NONE|RAIL|accounts. accounts sleep furiously a| +10090|174970|2522|3|1|2044.97|0.02|0.03|N|O|1996-06-04|1996-06-13|1996-06-21|TAKE BACK RETURN|RAIL|y. fluffily express excuses use qu| +10090|111694|6717|4|41|69933.29|0.05|0.07|N|O|1996-08-06|1996-06-20|1996-08-24|DELIVER IN PERSON|TRUCK|ter the bli| +10090|29109|6616|5|24|24914.40|0.04|0.06|N|O|1996-07-06|1996-06-29|1996-07-15|COLLECT COD|SHIP|usual, bold requests wake| +10091|38435|939|1|8|10987.44|0.00|0.05|N|O|1998-07-28|1998-09-10|1998-08-18|COLLECT COD|REG AIR| blithely across t| +10091|162165|9714|2|35|42950.60|0.07|0.06|N|O|1998-09-22|1998-08-23|1998-10-15|DELIVER IN PERSON|TRUCK|ep blithely among the quickly pendin| +10091|92990|8009|3|48|95183.52|0.02|0.00|N|O|1998-11-01|1998-09-18|1998-11-13|NONE|SHIP|refully ironic packages. final p| +10091|68617|8618|4|9|14270.49|0.05|0.02|N|O|1998-07-31|1998-08-23|1998-08-05|NONE|FOB|s. fluffily ironic| +10091|30508|5515|5|25|35962.50|0.06|0.02|N|O|1998-11-19|1998-09-03|1998-12-12|DELIVER IN PERSON|REG AIR|ts. final pains are furiously| +10091|135606|3146|6|11|18057.60|0.06|0.02|N|O|1998-08-06|1998-09-24|1998-08-30|TAKE BACK RETURN|SHIP|ccounts solve within the carefully ir| +10092|4304|4305|1|40|48332.00|0.08|0.04|A|F|1993-07-02|1993-06-21|1993-07-24|DELIVER IN PERSON|MAIL|al accounts| +10092|121264|1265|2|38|48839.88|0.06|0.05|R|F|1993-07-11|1993-06-08|1993-07-17|COLLECT COD|TRUCK|gle blithely. fluffily final instruct| +10092|75037|52|3|16|16192.48|0.09|0.04|R|F|1993-05-16|1993-06-13|1993-05-25|NONE|RAIL|beans. blithely unusu| +10092|146099|8614|4|38|43513.42|0.00|0.04|R|F|1993-07-12|1993-05-14|1993-08-04|NONE|SHIP|ully. accounts acco| +10093|184812|9849|1|49|92943.69|0.04|0.04|A|F|1992-06-27|1992-05-30|1992-07-27|DELIVER IN PERSON|AIR|efully pending accounts. slyly final packag| +10094|89477|4494|1|20|29329.40|0.10|0.08|R|F|1992-05-14|1992-07-14|1992-06-05|TAKE BACK RETURN|TRUCK|ar deposits w| +10094|39804|7314|2|13|22669.40|0.02|0.02|A|F|1992-06-27|1992-07-05|1992-06-30|COLLECT COD|SHIP|ly even braids sleep slyly reg| +10094|181456|6493|3|5|7687.25|0.00|0.02|R|F|1992-04-30|1992-07-09|1992-05-20|NONE|AIR|ing to the | +10094|122983|520|4|1|2005.98|0.06|0.05|R|F|1992-08-04|1992-06-29|1992-08-29|NONE|MAIL|ly bold theodo| +10095|141434|3949|1|4|5901.72|0.10|0.05|N|O|1998-07-15|1998-07-15|1998-07-30|DELIVER IN PERSON|TRUCK|ns. quickly unus| +10095|78246|8247|2|19|23260.56|0.09|0.06|N|O|1998-08-24|1998-08-11|1998-09-21|NONE|RAIL|rding to the fluffily unusu| +10095|76251|8759|3|13|15954.25|0.08|0.02|N|O|1998-06-13|1998-08-31|1998-07-13|NONE|REG AIR|ly deposits. excuses haggle about | +10095|134252|6766|4|12|15435.00|0.00|0.00|N|O|1998-10-03|1998-08-24|1998-10-10|NONE|REG AIR|ependencies are furiously| +10120|71538|9060|1|5|7547.65|0.04|0.04|N|O|1995-08-06|1995-08-24|1995-08-25|NONE|MAIL|s use slyly aga| +10120|128842|1355|2|5|9354.20|0.01|0.03|N|O|1995-09-17|1995-09-02|1995-09-30|NONE|SHIP|he carefully regular packages. slyly ev| +10120|46325|1334|3|5|6356.60|0.00|0.06|N|O|1995-09-13|1995-10-14|1995-09-17|TAKE BACK RETURN|AIR|al pains among the carefully even id| +10120|173760|3761|4|40|73350.40|0.03|0.06|N|O|1995-10-11|1995-08-27|1995-10-29|TAKE BACK RETURN|AIR|jole against the p| +10120|182689|244|5|25|44292.00|0.05|0.00|N|O|1995-10-04|1995-10-02|1995-10-22|DELIVER IN PERSON|FOB|even instruc| +10120|40254|255|6|2|2388.50|0.01|0.03|N|O|1995-09-14|1995-08-29|1995-10-09|COLLECT COD|SHIP|kages haggle fluffily | +10121|184280|1835|1|15|20464.20|0.03|0.01|N|O|1997-03-22|1997-04-15|1997-03-28|TAKE BACK RETURN|TRUCK|t deposits nod blithely final| +10121|193382|5902|2|20|29507.60|0.06|0.05|N|O|1997-03-22|1997-04-06|1997-04-13|TAKE BACK RETURN|RAIL|r packages haggle caref| +10121|169135|6684|3|34|40940.42|0.00|0.05|N|O|1997-03-02|1997-03-21|1997-03-11|COLLECT COD|TRUCK|us platelets sleep slyly slyly bol| +10122|133174|714|1|38|45872.46|0.04|0.04|R|F|1993-06-12|1993-06-23|1993-06-27|COLLECT COD|FOB|as haggle fluffily final, even | +10123|25948|5949|1|24|44974.56|0.00|0.04|R|F|1994-07-21|1994-06-30|1994-07-24|TAKE BACK RETURN|RAIL| ironic foxes nag acc| +10124|117502|7503|1|28|42546.00|0.03|0.03|A|F|1994-05-22|1994-06-22|1994-06-11|COLLECT COD|RAIL|packages. slyly pending accounts| +10125|125396|7909|1|21|29849.19|0.07|0.04|A|F|1992-05-05|1992-05-18|1992-05-22|TAKE BACK RETURN|RAIL|odolites. fluffi| +10126|133050|3051|1|28|30325.40|0.01|0.07|N|O|1997-09-09|1997-09-29|1997-09-20|COLLECT COD|SHIP|y carefully express notornis. pin| +10126|162854|7887|2|13|24919.05|0.10|0.01|N|O|1997-12-12|1997-10-05|1998-01-02|DELIVER IN PERSON|FOB|s cajole slyly regular asymptotes. f| +10126|77641|5163|3|3|4855.92|0.00|0.06|N|O|1997-12-21|1997-11-02|1998-01-10|COLLECT COD|FOB|against the fur| +10126|102313|9844|4|44|57873.64|0.02|0.06|N|O|1997-12-16|1997-10-30|1998-01-12|NONE|TRUCK|bold accounts. requests use fluffily amo| +10126|171021|3539|5|26|28392.52|0.03|0.06|N|O|1997-12-05|1997-10-25|1998-01-04|NONE|AIR|ve the careful| +10126|146620|4163|6|6|9999.72|0.05|0.05|N|O|1997-08-24|1997-11-06|1997-08-30|DELIVER IN PERSON|AIR|thely express asymptotes. fl| +10127|55996|8502|1|35|68319.65|0.10|0.08|N|O|1998-04-28|1998-04-10|1998-05-25|TAKE BACK RETURN|RAIL|ckly according to the quickl| +10127|119724|9725|2|27|47080.44|0.08|0.05|N|O|1998-05-06|1998-02-20|1998-06-02|COLLECT COD|TRUCK|usual instructions wake furiously ideas| +10127|188318|8319|3|3|4218.93|0.02|0.01|N|O|1998-04-05|1998-02-16|1998-04-25|TAKE BACK RETURN|TRUCK|lly express deposits boost fluffily | +10127|48671|6184|4|2|3239.34|0.03|0.00|N|O|1998-04-08|1998-03-05|1998-04-17|DELIVER IN PERSON|TRUCK|e final, bold orbits. fluff| +10127|199355|1875|5|13|18906.55|0.00|0.07|N|O|1998-02-13|1998-04-07|1998-03-05|DELIVER IN PERSON|AIR|ously pending | +10152|5464|7965|1|23|31497.58|0.09|0.04|N|O|1996-12-12|1997-01-21|1996-12-31|TAKE BACK RETURN|SHIP|e finally. slyly final deposits nag bl| +10152|30617|3121|2|16|24761.76|0.08|0.01|N|O|1996-11-25|1997-01-14|1996-12-22|COLLECT COD|FOB|ggle carefully dog| +10152|163955|8988|3|7|14132.65|0.08|0.00|N|O|1997-01-04|1997-02-11|1997-01-07|NONE|REG AIR|posits. pending pinto be| +10152|185196|7715|4|10|12811.90|0.03|0.05|N|O|1996-12-07|1997-01-31|1996-12-13|NONE|MAIL|p. fluffily pending dolphins sleep quick| +10153|77453|9961|1|18|25748.10|0.02|0.00|N|O|1996-08-01|1996-09-18|1996-08-27|COLLECT COD|RAIL|gainst the | +10153|152090|2091|2|3|3426.27|0.08|0.01|N|O|1996-10-20|1996-09-17|1996-11-02|NONE|TRUCK|ully dogged requests ca| +10153|169765|9766|3|37|67886.12|0.04|0.02|N|O|1996-08-05|1996-08-23|1996-09-02|DELIVER IN PERSON|TRUCK|e blithely | +10153|25962|8465|4|43|81182.28|0.04|0.03|N|O|1996-07-11|1996-08-02|1996-07-20|NONE|TRUCK|g about the silent pa| +10153|131004|8544|5|20|20700.00|0.00|0.07|N|O|1996-07-29|1996-09-12|1996-08-26|DELIVER IN PERSON|SHIP| furiously unusual packages. fray| +10153|184196|6715|6|33|42246.27|0.01|0.07|N|O|1996-10-15|1996-09-02|1996-10-19|NONE|AIR|ajole fluffily. furiously final pa| +10154|71667|4175|1|49|80294.34|0.00|0.05|N|O|1998-04-06|1998-02-27|1998-04-10|COLLECT COD|MAIL|uffily even foxes. thin,| +10154|96025|6026|2|50|51051.00|0.10|0.08|N|O|1997-12-20|1998-02-14|1998-01-01|COLLECT COD|REG AIR|fluffily final accounts across the even | +10154|85856|8365|3|47|86566.95|0.06|0.03|N|O|1998-04-08|1998-01-29|1998-04-12|NONE|REG AIR|hely quiet deposit| +10154|181198|8753|4|38|48609.22|0.07|0.08|N|O|1998-04-15|1998-02-10|1998-05-14|NONE|TRUCK|sual theodolites. slyly unusual exc| +10154|181689|4208|5|37|65515.16|0.05|0.05|N|O|1998-01-15|1998-02-18|1998-02-09|NONE|REG AIR|ts believe slyly ironic packages. furi| +10154|43878|8887|6|7|12753.09|0.02|0.02|N|O|1998-01-20|1998-01-17|1998-01-26|DELIVER IN PERSON|TRUCK|sleep furiously final requests.| +10154|45291|2804|7|5|6181.45|0.06|0.00|N|O|1998-04-01|1998-03-04|1998-05-01|TAKE BACK RETURN|AIR|eposits nod about t| +10155|5458|459|1|3|4090.35|0.09|0.02|N|O|1996-03-13|1996-03-10|1996-03-26|TAKE BACK RETURN|RAIL| bold ideas. pendi| +10155|128628|8629|2|41|67921.42|0.07|0.03|N|O|1996-03-04|1996-02-19|1996-03-31|DELIVER IN PERSON|AIR|d instructions; e| +10155|42423|7432|3|37|50520.54|0.06|0.07|N|O|1996-01-07|1996-03-24|1996-01-27|COLLECT COD|MAIL|s wake fluffi| +10155|190001|2|4|26|28366.00|0.04|0.07|N|O|1996-02-26|1996-03-19|1996-03-10|DELIVER IN PERSON|SHIP|xpress depo| +10155|132714|2715|5|39|68121.69|0.09|0.06|N|O|1996-01-19|1996-03-19|1996-02-17|COLLECT COD|MAIL|y regular requests. carefully regul| +10155|110206|7740|6|32|38918.40|0.05|0.00|N|O|1996-04-16|1996-02-28|1996-04-21|TAKE BACK RETURN|FOB|n dolphins detect enticingly across the fur| +10155|15698|5699|7|2|3227.38|0.00|0.01|N|O|1996-03-05|1996-03-13|1996-03-29|NONE|FOB|packages daz| +10156|20242|2745|1|47|54625.28|0.09|0.03|R|F|1994-08-08|1994-09-16|1994-08-20|NONE|TRUCK| blithely pending foxes boost furiously| +10156|194419|1977|2|43|65076.63|0.06|0.05|R|F|1994-09-30|1994-09-02|1994-10-04|DELIVER IN PERSON|TRUCK|ments. fluffily spec| +10156|186582|1619|3|10|16685.80|0.02|0.03|A|F|1994-10-22|1994-08-17|1994-11-06|COLLECT COD|FOB|ly among the unusual| +10156|68958|6477|4|28|53954.60|0.08|0.03|R|F|1994-11-12|1994-08-15|1994-11-30|NONE|RAIL|y regular accounts. | +10157|148666|3695|1|33|56583.78|0.08|0.05|A|F|1994-05-17|1994-05-18|1994-06-05|COLLECT COD|RAIL|ithely final deposits. carefully | +10157|16074|6075|2|47|46533.29|0.08|0.07|A|F|1994-05-14|1994-05-15|1994-05-24|DELIVER IN PERSON|SHIP|ual, bold foxes boost furiousl| +10157|150757|8303|3|25|45193.75|0.02|0.06|R|F|1994-04-10|1994-04-18|1994-05-03|DELIVER IN PERSON|MAIL|longside of the furiously close depend| +10157|165114|2663|4|28|33015.08|0.09|0.01|R|F|1994-04-10|1994-05-18|1994-05-02|DELIVER IN PERSON|AIR|uriously unusual theodolites unde| +10158|178731|1249|1|8|14477.84|0.04|0.08|N|O|1996-03-01|1996-03-31|1996-03-05|DELIVER IN PERSON|MAIL|nts cajole furiously across| +10158|118704|1216|2|45|77521.50|0.09|0.00|N|O|1996-04-12|1996-04-14|1996-05-09|NONE|REG AIR|y bold dependencies. slyly i| +10158|52199|4705|3|29|33384.51|0.06|0.01|N|O|1996-05-05|1996-04-23|1996-05-11|TAKE BACK RETURN|MAIL|arefully. bl| +10158|99863|2373|4|32|59611.52|0.06|0.03|N|O|1996-02-02|1996-04-20|1996-03-03|DELIVER IN PERSON|TRUCK|gainst the instructions| +10158|193497|8536|5|20|31809.80|0.04|0.02|N|O|1996-04-14|1996-04-09|1996-05-14|NONE|REG AIR|nstructions| +10159|140676|677|1|24|41200.08|0.10|0.05|N|O|1996-09-29|1996-08-30|1996-10-09|DELIVER IN PERSON|FOB|ully ironic| +10184|171195|8747|1|18|22791.42|0.04|0.08|N|O|1996-09-02|1996-08-09|1996-09-13|NONE|TRUCK|use. evenly final deposi| +10184|64580|7087|2|28|43248.24|0.09|0.00|N|O|1996-07-11|1996-08-12|1996-08-01|DELIVER IN PERSON|AIR|t after the blithely express instruct| +10185|172931|483|1|36|72141.48|0.07|0.01|N|O|1996-11-05|1996-08-27|1996-11-06|NONE|TRUCK|g dependen| +10186|148016|3045|1|31|32984.31|0.02|0.02|N|O|1997-03-15|1997-03-27|1997-03-20|COLLECT COD|RAIL|posits cajole carefully express instr| +10186|88808|6333|2|29|52107.20|0.09|0.08|N|O|1997-06-01|1997-04-04|1997-06-25|COLLECT COD|RAIL|luffily express deposits. f| +10186|191421|8979|3|18|27223.56|0.03|0.07|N|O|1997-04-17|1997-03-27|1997-04-19|TAKE BACK RETURN|MAIL|, final hockey p| +10186|365|2866|4|3|3796.08|0.04|0.05|N|O|1997-03-28|1997-05-04|1997-04-10|DELIVER IN PERSON|TRUCK|ses boost. ideas hang b| +10186|120742|3255|5|42|74035.08|0.09|0.02|N|O|1997-03-08|1997-04-13|1997-03-13|TAKE BACK RETURN|REG AIR|s according to the express, final| +10186|110745|8279|6|44|77252.56|0.01|0.07|N|O|1997-04-14|1997-04-05|1997-05-07|COLLECT COD|MAIL|s within the i| +10187|149263|6806|1|35|45929.10|0.09|0.03|N|O|1996-12-12|1997-02-21|1997-01-06|COLLECT COD|REG AIR|gular notornis are blithely carefully final| +10188|165836|3385|1|39|74171.37|0.00|0.03|R|F|1995-05-08|1995-06-16|1995-05-18|COLLECT COD|AIR|y bold depos| +10188|196088|1127|2|48|56835.84|0.07|0.03|N|O|1995-06-23|1995-06-08|1995-07-01|NONE|MAIL|side of the blithely i| +10188|42952|2953|3|47|89062.65|0.07|0.05|N|F|1995-06-17|1995-06-10|1995-06-27|COLLECT COD|SHIP| beans haggle slyl| +10188|92936|464|4|42|81015.06|0.01|0.00|A|F|1995-05-14|1995-05-11|1995-05-30|TAKE BACK RETURN|MAIL| blithely iron| +10189|94317|1845|1|8|10490.48|0.05|0.00|A|F|1992-10-24|1992-11-27|1992-11-15|COLLECT COD|RAIL|lyly against the blithely pending reque| +10189|174373|4374|2|11|15921.07|0.05|0.00|R|F|1992-11-12|1992-12-07|1992-11-29|NONE|SHIP|o beans promise c| +10190|63093|5600|1|49|51748.41|0.07|0.00|R|F|1994-04-13|1994-05-25|1994-05-05|COLLECT COD|TRUCK|uriously pending dolphin| +10190|197529|5087|2|29|47169.08|0.00|0.08|A|F|1994-05-05|1994-05-24|1994-05-11|COLLECT COD|SHIP|slyly carefull| +10190|69435|9436|3|33|46346.19|0.01|0.00|A|F|1994-07-06|1994-05-21|1994-07-08|TAKE BACK RETURN|MAIL|mong the blithely final | +10190|179521|4556|4|33|52817.16|0.09|0.08|A|F|1994-05-20|1994-05-07|1994-06-05|COLLECT COD|RAIL|egular platelets are slyly thin, unusual| +10190|2615|7616|5|27|40975.47|0.09|0.06|A|F|1994-06-16|1994-05-04|1994-06-19|DELIVER IN PERSON|SHIP| regular requests cajole-- furiousl| +10191|29424|6931|1|15|20301.30|0.08|0.05|N|O|1996-07-21|1996-05-18|1996-08-16|COLLECT COD|AIR|ly even platelets. blithely express accou| +10191|120415|7952|2|32|45933.12|0.02|0.03|N|O|1996-05-16|1996-06-17|1996-05-24|NONE|RAIL|e slyly express requests. carefully ironic| +10191|10857|3359|3|31|54803.35|0.04|0.00|N|O|1996-04-12|1996-05-22|1996-05-03|DELIVER IN PERSON|MAIL|ithely regular asymptotes boost accord| +10191|56800|4316|4|9|15811.20|0.02|0.00|N|O|1996-06-12|1996-05-28|1996-06-19|NONE|FOB| carefully r| +10191|25234|7737|5|7|8114.61|0.03|0.05|N|O|1996-05-04|1996-05-23|1996-05-20|COLLECT COD|TRUCK| unusual deposits wake care| +10216|38578|3585|1|19|28814.83|0.01|0.03|N|O|1997-08-18|1997-08-07|1997-08-29|COLLECT COD|FOB| instructions. even packages about the fu| +10216|172063|9615|2|40|45402.40|0.02|0.02|N|O|1997-08-31|1997-08-19|1997-09-20|TAKE BACK RETURN|MAIL|leep. carefully pen| +10216|61330|8849|3|28|36157.24|0.05|0.04|N|O|1997-09-17|1997-08-09|1997-10-02|COLLECT COD|RAIL|. furiously | +10216|161669|1670|4|49|84802.34|0.05|0.04|N|O|1997-09-13|1997-08-09|1997-09-22|COLLECT COD|REG AIR| pending, even platelet| +10217|1346|6347|1|50|62367.00|0.01|0.00|N|O|1998-10-15|1998-09-10|1998-10-29|TAKE BACK RETURN|FOB|y. carefully stealthy requests c| +10218|42915|428|1|18|33442.38|0.06|0.05|R|F|1993-04-01|1993-05-09|1993-04-21|NONE|SHIP|ss deposits are evenly according to the| +10219|137727|7728|1|41|72353.52|0.04|0.05|N|O|1998-04-03|1998-05-19|1998-04-20|COLLECT COD|SHIP|ter the furiously iron| +10219|168103|3136|2|27|31619.70|0.06|0.06|N|O|1998-03-22|1998-05-20|1998-03-25|COLLECT COD|TRUCK|during the ev| +10220|129873|7410|1|34|64697.58|0.06|0.03|N|O|1995-11-10|1995-12-26|1995-12-07|DELIVER IN PERSON|AIR|symptotes play daringly ca| +10220|166608|6609|2|15|25119.00|0.01|0.08|N|O|1995-11-17|1995-12-06|1995-11-23|TAKE BACK RETURN|REG AIR|kages. blithely ironic foxes will | +10221|99872|7400|1|24|44924.88|0.04|0.07|N|O|1997-10-07|1997-09-18|1997-10-25|TAKE BACK RETURN|REG AIR|ding pinto beans haggle. furiou| +10221|143046|3047|2|35|38116.40|0.01|0.00|N|O|1997-09-06|1997-10-06|1997-09-14|COLLECT COD|TRUCK|luffily. requests solve daringly. quick| +10221|167204|2237|3|5|6356.00|0.10|0.00|N|O|1997-12-13|1997-10-28|1998-01-02|DELIVER IN PERSON|TRUCK|out the blithely even packag| +10221|193159|5679|4|7|8765.05|0.00|0.07|N|O|1997-09-29|1997-11-04|1997-10-29|TAKE BACK RETURN|REG AIR| carefully around the b| +10221|10857|5860|5|24|42428.40|0.00|0.03|N|O|1997-12-02|1997-09-26|1998-01-01|NONE|RAIL|blithely regular, express excuses. furiou| +10222|61432|1433|1|29|40409.47|0.01|0.06|A|F|1992-07-15|1992-09-02|1992-07-30|NONE|MAIL|packages alongside of th| +10222|73053|8068|2|15|15390.75|0.00|0.08|A|F|1992-07-01|1992-07-29|1992-07-27|NONE|SHIP| deposits. even excuses according to th| +10222|199185|1705|3|13|16694.34|0.05|0.06|A|F|1992-06-23|1992-09-02|1992-07-18|COLLECT COD|MAIL|ccounts. asymptotes affix car| +10222|96656|1675|4|45|74369.25|0.07|0.05|A|F|1992-08-04|1992-08-20|1992-08-31|NONE|REG AIR|ckly ironic instructions haggle fi| +10223|95224|7734|1|2|2438.44|0.06|0.03|R|F|1993-11-29|1994-01-07|1993-12-24|DELIVER IN PERSON|AIR|accounts sleep after the inst| +10223|25267|5268|2|20|23845.20|0.01|0.00|A|F|1993-12-08|1994-01-01|1993-12-15|TAKE BACK RETURN|TRUCK| forges sleep. carefully regular for| +10248|189703|9704|1|10|17927.00|0.06|0.02|A|F|1995-04-26|1995-05-19|1995-05-24|DELIVER IN PERSON|AIR|riously ironic excuses cajole clos| +10248|122379|7404|2|47|65864.39|0.06|0.07|N|F|1995-06-11|1995-05-14|1995-07-09|TAKE BACK RETURN|SHIP|ic foxes; enticing theodolite| +10248|7150|4651|3|12|12685.80|0.02|0.08|N|O|1995-06-29|1995-06-21|1995-07-29|DELIVER IN PERSON|AIR|y special dolphins. quickly even request| +10249|145464|5465|1|41|61887.86|0.00|0.03|N|O|1998-05-24|1998-07-14|1998-06-13|NONE|FOB|he furiously stealthy requests. alwa| +10249|2853|354|2|40|70234.00|0.01|0.03|N|O|1998-07-20|1998-07-17|1998-08-11|NONE|FOB|ding foxes wake blithely about the fur| +10249|141100|3615|3|4|4564.40|0.02|0.00|N|O|1998-05-29|1998-07-06|1998-06-28|TAKE BACK RETURN|SHIP|nding accounts. fluffil| +10249|59829|7345|4|21|37565.22|0.00|0.03|N|O|1998-07-07|1998-06-06|1998-08-04|NONE|RAIL|ously bold accounts boost care| +10250|170135|5170|1|17|20487.21|0.04|0.01|A|F|1993-01-31|1993-03-02|1993-02-02|TAKE BACK RETURN|MAIL|tions. slyly express theodolites boost b| +10250|51868|6879|2|1|1819.86|0.09|0.08|A|F|1993-02-04|1993-03-28|1993-02-23|COLLECT COD|MAIL|press platelets. ironic, ironic r| +10250|141316|1317|3|23|31218.13|0.04|0.06|A|F|1993-05-01|1993-02-25|1993-05-31|COLLECT COD|MAIL|hely final a| +10250|89303|6828|4|39|50399.70|0.03|0.02|A|F|1993-03-10|1993-02-05|1993-03-25|DELIVER IN PERSON|MAIL|the slyly express accounts h| +10250|104614|2145|5|22|35609.42|0.09|0.04|R|F|1993-01-24|1993-03-14|1993-02-13|DELIVER IN PERSON|SHIP|ies integrate slyly.| +10250|33544|8551|6|41|60579.14|0.05|0.08|R|F|1993-04-15|1993-03-15|1993-04-25|TAKE BACK RETURN|TRUCK|uickly about the fur| +10251|56825|9331|1|29|51672.78|0.00|0.03|A|F|1994-02-09|1994-02-20|1994-02-10|COLLECT COD|REG AIR|iously final excuses use ca| +10251|43152|3153|2|6|6570.90|0.07|0.01|A|F|1994-04-10|1994-03-20|1994-05-04|NONE|MAIL|. ruthless foxes sleep aga| +10251|53859|3860|3|4|7251.40|0.10|0.03|A|F|1994-03-26|1994-04-06|1994-04-07|NONE|FOB|hely bold req| +10252|87721|7722|1|25|42718.00|0.04|0.05|A|F|1994-04-01|1994-04-23|1994-04-17|COLLECT COD|SHIP|oxes. slyly bold instructions during t| +10253|65710|3229|1|32|53622.72|0.05|0.08|R|F|1993-05-16|1993-06-08|1993-05-30|TAKE BACK RETURN|MAIL|theodolites-- carefully unus| +10253|171377|1378|2|36|52141.32|0.06|0.06|A|F|1993-04-05|1993-05-01|1993-05-02|COLLECT COD|REG AIR|fily quiet requests are along the ironic| +10253|119536|4559|3|47|73109.91|0.06|0.05|R|F|1993-07-21|1993-06-04|1993-08-15|DELIVER IN PERSON|TRUCK|lly regular packa| +10253|28900|1403|4|25|45722.50|0.09|0.04|A|F|1993-04-10|1993-06-02|1993-04-14|DELIVER IN PERSON|RAIL|lets. packages about th| +10253|116820|6821|5|9|16531.38|0.07|0.02|A|F|1993-06-07|1993-05-27|1993-07-07|DELIVER IN PERSON|MAIL|eposits. final depen| +10254|170158|5193|1|3|3684.45|0.08|0.00|A|F|1993-11-20|1993-12-08|1993-11-26|NONE|TRUCK|eposits alo| +10254|34287|6791|2|31|37859.68|0.07|0.06|R|F|1993-11-01|1993-11-18|1993-11-12|DELIVER IN PERSON|TRUCK|he regular pinto beans. sly| +10254|45950|5951|3|15|28439.25|0.01|0.06|R|F|1994-01-09|1993-12-05|1994-01-10|NONE|RAIL|accounts x| +10254|81040|6057|4|31|31652.24|0.10|0.03|A|F|1994-01-23|1993-11-19|1994-02-21|DELIVER IN PERSON|AIR|se carefully above the asymptotes| +10255|188498|8499|1|6|9518.94|0.01|0.05|A|F|1993-10-23|1993-10-13|1993-11-10|DELIVER IN PERSON|SHIP|efully unusual instructions cajole| +10280|177844|2879|1|20|38436.80|0.10|0.07|N|O|1998-05-19|1998-07-14|1998-05-31|TAKE BACK RETURN|FOB| packages cajole | +10280|9014|6515|2|35|32305.35|0.00|0.05|N|O|1998-08-26|1998-07-10|1998-08-31|TAKE BACK RETURN|REG AIR|ic ideas may nag across | +10281|199382|1902|1|25|37034.50|0.03|0.05|N|O|1997-07-22|1997-10-02|1997-08-19|COLLECT COD|REG AIR|ely bold requests| +10281|9066|4067|2|32|31201.92|0.10|0.01|N|O|1997-07-31|1997-08-25|1997-08-21|NONE|RAIL|es about the blithely express ideas wake qu| +10281|167440|4989|3|6|9044.64|0.06|0.05|N|O|1997-10-02|1997-10-05|1997-10-11|TAKE BACK RETURN|FOB|ns. blithely even instructions i| +10281|161255|8804|4|46|60547.50|0.04|0.05|N|O|1997-10-09|1997-09-02|1997-10-31|TAKE BACK RETURN|SHIP|elets. special depos| +10282|81629|4138|1|31|49929.22|0.08|0.02|N|O|1996-03-14|1996-04-03|1996-04-10|NONE|AIR| fluffily ironic deposits along the| +10282|127661|5198|2|13|21952.58|0.06|0.02|N|O|1996-04-07|1996-02-11|1996-05-03|TAKE BACK RETURN|SHIP| regular instructions: | +10282|181729|4248|3|21|38025.12|0.07|0.06|N|O|1996-01-13|1996-04-04|1996-01-23|TAKE BACK RETURN|REG AIR|s haggle. blithely final accounts | +10282|105716|3247|4|15|25825.65|0.00|0.01|N|O|1996-01-24|1996-02-20|1996-02-17|COLLECT COD|MAIL|phins unwind| +10282|164653|4654|5|14|24047.10|0.10|0.02|N|O|1996-01-19|1996-02-27|1996-01-20|COLLECT COD|AIR|t the slyly bold account| +10282|120651|652|6|29|48477.85|0.08|0.07|N|O|1996-02-16|1996-03-17|1996-02-29|DELIVER IN PERSON|TRUCK|dazzle furiously unusual accounts. silent i| +10282|168764|1281|7|44|80641.44|0.09|0.08|N|O|1996-01-30|1996-04-03|1996-02-24|TAKE BACK RETURN|SHIP|eposits serve slyly. regular dolphins in| +10283|10408|7912|1|37|48780.80|0.08|0.00|A|F|1993-08-30|1993-10-17|1993-09-19|TAKE BACK RETURN|MAIL|yly fluffy packages | +10283|117384|4918|2|19|26626.22|0.06|0.03|A|F|1993-09-24|1993-10-05|1993-10-20|DELIVER IN PERSON|TRUCK| furiously near the carefully specia| +10283|70093|2601|3|29|30829.61|0.02|0.00|R|F|1993-08-10|1993-09-15|1993-08-21|NONE|AIR|und the carefully regular accounts. reg| +10283|40760|3265|4|40|68030.40|0.04|0.03|R|F|1993-08-23|1993-09-30|1993-08-24|COLLECT COD|AIR|ds sleep blithely quickly pending| +10284|135969|5970|1|9|18044.64|0.03|0.07|A|F|1995-04-19|1995-03-18|1995-05-17|COLLECT COD|RAIL|xcuses. regular foxes| +10284|19645|4648|2|30|46939.20|0.04|0.05|A|F|1995-03-24|1995-02-07|1995-04-01|NONE|MAIL|nts. furiously regular gifts are slyly | +10284|159473|7019|3|43|65896.21|0.07|0.02|R|F|1995-02-03|1995-02-21|1995-02-15|TAKE BACK RETURN|RAIL|ideas hagg| +10285|171946|9498|1|47|94843.18|0.05|0.06|A|F|1994-09-04|1994-10-22|1994-09-17|COLLECT COD|TRUCK|es after the carefully special accounts sle| +10285|92298|7317|2|40|51611.60|0.04|0.00|R|F|1994-09-19|1994-10-17|1994-10-03|TAKE BACK RETURN|TRUCK|ly regular asymptotes promi| +10285|48473|3482|3|29|41222.63|0.06|0.03|R|F|1994-08-11|1994-10-27|1994-09-10|NONE|REG AIR|uriously carefully pending instruct| +10286|89661|9662|1|49|80882.34|0.00|0.07|N|O|1998-01-10|1998-01-18|1998-01-31|NONE|RAIL|, silent accounts ki| +10286|129243|4268|2|29|36894.96|0.03|0.08|N|O|1997-12-26|1997-12-08|1998-01-02|COLLECT COD|REG AIR| deposits are furiously across | +10286|181327|6364|3|7|9858.24|0.02|0.03|N|O|1998-01-22|1998-01-11|1998-02-09|COLLECT COD|REG AIR|g fluffily. furiously regular deposit| +10286|159345|6891|4|17|23873.78|0.06|0.02|N|O|1997-11-24|1998-01-15|1997-12-03|COLLECT COD|REG AIR|bold requests sleep blithely. | +10286|107277|9788|5|44|56507.88|0.05|0.08|N|O|1997-11-26|1998-01-21|1997-12-19|TAKE BACK RETURN|RAIL|iously silen| +10286|3771|6272|6|42|70340.34|0.02|0.02|N|O|1997-12-23|1997-12-29|1998-01-10|DELIVER IN PERSON|RAIL|carefully p| +10286|170065|66|7|24|27241.44|0.03|0.04|N|O|1998-02-11|1998-01-18|1998-02-13|COLLECT COD|SHIP|ular foxes. idly fi| +10287|81369|6386|1|4|5401.44|0.09|0.04|R|F|1994-03-09|1994-03-30|1994-04-04|TAKE BACK RETURN|AIR| carefully final deposits breach | +10287|160182|5215|2|9|11179.62|0.01|0.07|A|F|1994-02-23|1994-03-21|1994-03-14|NONE|MAIL|pinto beans nag alongside of the ste| +10287|166284|6285|3|5|6751.40|0.07|0.06|R|F|1994-01-25|1994-03-24|1994-02-20|NONE|REG AIR|ic ideas det| +10287|124723|9748|4|33|57674.76|0.03|0.01|R|F|1994-04-19|1994-03-30|1994-04-22|DELIVER IN PERSON|REG AIR|cross the even| +10287|17944|7945|5|27|50272.38|0.08|0.07|A|F|1994-02-06|1994-03-01|1994-02-10|DELIVER IN PERSON|FOB| even grouches. slyly unusua| +10287|175221|256|6|50|64811.00|0.03|0.03|R|F|1994-04-16|1994-02-28|1994-05-05|COLLECT COD|SHIP| regular, final requests. r| +10287|139295|4322|7|28|37360.12|0.06|0.00|A|F|1994-03-03|1994-03-01|1994-03-12|NONE|FOB|lithely even excuses use carefull| +10312|122281|4794|1|48|62557.44|0.07|0.08|R|F|1992-05-18|1992-07-02|1992-06-15|TAKE BACK RETURN|SHIP|ular deposits sleep caref| +10312|170276|7828|2|15|20194.05|0.02|0.07|R|F|1992-04-29|1992-05-21|1992-05-04|DELIVER IN PERSON|REG AIR|ggle blithely ironic, id| +10312|20423|2926|3|38|51049.96|0.08|0.04|A|F|1992-05-16|1992-06-23|1992-06-12|DELIVER IN PERSON|SHIP|arefully final deposi| +10312|48136|8137|4|1|1084.13|0.01|0.06|A|F|1992-07-22|1992-06-29|1992-08-15|DELIVER IN PERSON|TRUCK|oss the unusual, r| +10313|87234|9743|1|39|47627.97|0.05|0.05|A|F|1994-09-02|1994-09-28|1994-09-14|DELIVER IN PERSON|SHIP|fully. fluffily even requests| +10313|135978|3518|2|23|46321.31|0.08|0.01|R|F|1994-10-04|1994-10-08|1994-10-18|DELIVER IN PERSON|TRUCK| regular instructions are. e| +10313|167563|5112|3|35|57069.60|0.04|0.01|R|F|1994-10-21|1994-10-02|1994-11-16|TAKE BACK RETURN|MAIL|es across the furiously regular theo| +10313|23669|1176|4|12|19111.92|0.09|0.02|R|F|1994-10-30|1994-09-24|1994-11-05|NONE|AIR|kly across the blithely regular depend| +10313|196135|3693|5|35|43089.55|0.00|0.05|R|F|1994-08-17|1994-09-28|1994-09-10|COLLECT COD|TRUCK| haggle furiously regular pinto beans.| +10313|30270|2774|6|27|32407.29|0.03|0.03|R|F|1994-08-11|1994-09-27|1994-08-14|DELIVER IN PERSON|REG AIR|express dependencies promise quic| +10314|143352|895|1|47|65581.45|0.10|0.05|N|O|1997-12-13|1997-12-16|1997-12-19|TAKE BACK RETURN|REG AIR| ironic instructions. slyly even accounts| +10314|115193|7705|2|6|7249.14|0.10|0.05|N|O|1997-12-20|1997-12-12|1998-01-16|DELIVER IN PERSON|SHIP|uests boost furiously unusu| +10314|35447|5448|3|5|6912.20|0.04|0.03|N|O|1998-02-23|1998-01-03|1998-03-20|TAKE BACK RETURN|RAIL|pending requests sleep qui| +10314|150543|5574|4|2|3187.08|0.05|0.02|N|O|1997-11-22|1998-01-03|1997-12-16|TAKE BACK RETURN|MAIL| final accounts mold. carefully ironi| +10314|168675|1192|5|38|66259.46|0.10|0.02|N|O|1998-02-05|1998-01-19|1998-03-06|TAKE BACK RETURN|REG AIR|egular packages. carefully iron| +10315|36075|3585|1|20|20221.40|0.09|0.03|R|F|1993-10-22|1993-09-30|1993-11-20|COLLECT COD|REG AIR|nal accounts along the final pinto bea| +10315|102550|5061|2|35|54339.25|0.03|0.03|R|F|1993-12-10|1993-09-24|1993-12-30|NONE|SHIP|ickly against the un| +10315|154145|1691|3|38|45567.32|0.04|0.06|A|F|1993-09-04|1993-09-16|1993-09-19|COLLECT COD|TRUCK|ickly special accounts ought to sleep car| +10315|114981|2515|4|11|21955.78|0.09|0.06|R|F|1993-11-14|1993-11-08|1993-12-06|DELIVER IN PERSON|MAIL|lly even instructions haggle blithely | +10315|82704|5213|5|25|42167.50|0.05|0.06|A|F|1993-11-24|1993-09-12|1993-12-21|TAKE BACK RETURN|SHIP|thely unusual hockey players slee| +10316|88355|5880|1|43|57764.05|0.05|0.06|R|F|1992-08-03|1992-05-14|1992-08-13|NONE|RAIL|kages. carefully final frets cajole r| +10316|166286|1319|2|24|32454.72|0.03|0.06|A|F|1992-05-09|1992-06-03|1992-05-20|COLLECT COD|TRUCK|final theodolites cajole aft| +10316|164445|1994|3|2|3018.88|0.06|0.08|A|F|1992-07-30|1992-06-07|1992-08-13|DELIVER IN PERSON|REG AIR|cuses alongside| +10316|24834|7337|4|18|31658.94|0.00|0.05|A|F|1992-05-24|1992-07-09|1992-06-04|COLLECT COD|AIR| regular accounts use furi| +10317|75730|3252|1|23|39231.79|0.06|0.02|N|O|1998-06-10|1998-04-29|1998-07-01|DELIVER IN PERSON|AIR|arefully arou| +10317|190669|5708|2|13|22875.58|0.10|0.00|N|O|1998-05-25|1998-05-01|1998-06-14|NONE|TRUCK|ously fina| +10318|17495|7496|1|26|36724.74|0.09|0.02|N|O|1996-09-09|1996-10-17|1996-10-01|DELIVER IN PERSON|SHIP|instructions. fluffily fin| +10318|34853|9860|2|7|12514.95|0.09|0.04|N|O|1996-09-12|1996-10-27|1996-10-03|DELIVER IN PERSON|MAIL|ironic requests integrate fluffily u| +10318|162851|5368|3|23|44018.55|0.05|0.00|N|O|1996-09-26|1996-10-21|1996-10-02|NONE|RAIL|fully final decoys sleep slyly furiously | +10318|36496|6497|4|13|18622.37|0.10|0.01|N|O|1996-11-11|1996-10-08|1996-12-02|DELIVER IN PERSON|REG AIR|ideas. furiously special asymptotes use| +10318|181853|1854|5|41|79328.85|0.06|0.06|N|O|1996-09-25|1996-10-12|1996-10-16|DELIVER IN PERSON|REG AIR| slyly pending packages use slyly reg| +10318|2721|5222|6|20|32474.40|0.00|0.04|N|O|1996-09-17|1996-09-23|1996-10-07|DELIVER IN PERSON|FOB|eposits. quickly unusual reque| +10318|131146|3660|7|16|18834.24|0.02|0.06|N|O|1996-11-08|1996-10-14|1996-11-26|NONE|SHIP|dolites. express, special do| +10319|166285|8802|1|12|16215.36|0.03|0.08|N|O|1995-07-28|1995-07-28|1995-07-30|NONE|MAIL|ld pains haggle slyly regular requests; sl| +10319|143762|6277|2|28|50561.28|0.01|0.04|N|O|1995-08-12|1995-07-29|1995-08-17|TAKE BACK RETURN|MAIL|lphins are around the slyly even p| +10319|196767|9287|3|11|20501.36|0.08|0.07|N|O|1995-07-22|1995-08-03|1995-07-26|COLLECT COD|SHIP|ress theodoli| +10319|60728|3235|4|26|43906.72|0.07|0.03|N|O|1995-07-08|1995-07-21|1995-08-04|TAKE BACK RETURN|FOB|ccounts thrash ideas. | +10319|51606|1607|5|16|24921.60|0.01|0.03|R|F|1995-05-31|1995-07-26|1995-06-16|TAKE BACK RETURN|RAIL|s. carefully final requests wa| +10319|131863|4377|6|5|9474.30|0.00|0.00|N|O|1995-07-26|1995-07-16|1995-08-22|NONE|REG AIR|le regular, even requests. furiou| +10344|61157|8676|1|30|33544.50|0.00|0.04|A|F|1995-01-31|1994-11-28|1995-02-15|DELIVER IN PERSON|AIR|unusual theodolites along the regular,| +10344|54447|6953|2|26|36437.44|0.01|0.00|A|F|1994-12-01|1994-12-31|1994-12-19|NONE|RAIL|foxes sleep blithely carefully regula| +10344|78117|8118|3|48|52565.28|0.07|0.05|R|F|1994-11-22|1994-12-31|1994-12-13|COLLECT COD|MAIL| sleep furiously after the regula| +10344|105447|2978|4|9|13071.96|0.06|0.06|R|F|1994-12-30|1994-12-26|1995-01-14|DELIVER IN PERSON|FOB|y express excuses. furiously ironic pear| +10345|67679|186|1|40|65866.80|0.00|0.03|R|F|1995-01-15|1994-12-26|1995-02-08|DELIVER IN PERSON|FOB|heodolites. qui| +10345|74442|1964|2|13|18413.72|0.05|0.02|A|F|1994-12-11|1994-12-11|1994-12-14|DELIVER IN PERSON|FOB|g the ironic, final dependencies. bl| +10345|144825|9854|3|38|71053.16|0.03|0.05|A|F|1994-12-14|1994-12-23|1995-01-11|NONE|FOB|into beans sleep careful| +10345|68261|8262|4|14|17209.64|0.03|0.04|R|F|1995-01-18|1994-12-05|1995-02-13|COLLECT COD|FOB| blithely. quickly even| +10345|57955|5471|5|27|51649.65|0.01|0.08|A|F|1995-01-23|1995-01-05|1995-02-07|NONE|FOB|ggle carefully| +10345|40264|5273|6|22|26493.72|0.02|0.06|R|F|1994-11-30|1994-11-16|1994-12-24|DELIVER IN PERSON|FOB|unts sleep! quickly special dinos aro| +10346|11829|4331|1|47|81818.54|0.00|0.04|N|O|1996-08-17|1996-07-23|1996-09-13|TAKE BACK RETURN|MAIL|fully silent packa| +10346|193843|3844|2|45|87157.80|0.02|0.08|N|O|1996-05-14|1996-07-25|1996-05-17|DELIVER IN PERSON|FOB|nding deposits| +10346|113257|791|3|49|62242.25|0.09|0.05|N|O|1996-08-17|1996-07-25|1996-09-12|NONE|REG AIR|he quickly even requests wake fluffily idle| +10346|94038|1566|4|18|18576.54|0.01|0.04|N|O|1996-07-07|1996-06-24|1996-07-27|NONE|TRUCK|blithely p| +10346|82005|2006|5|4|3948.00|0.07|0.04|N|O|1996-08-25|1996-08-03|1996-09-09|NONE|RAIL|carefully even sheaves haggl| +10346|43019|8028|6|32|30784.32|0.06|0.05|N|O|1996-07-03|1996-07-18|1996-07-21|NONE|REG AIR|uriously after the iro| +10346|16344|8846|7|16|20165.44|0.05|0.01|N|O|1996-08-21|1996-07-13|1996-08-23|DELIVER IN PERSON|SHIP|foxes haggle furiously platelets; special p| +10347|77413|7414|1|18|25027.38|0.09|0.01|N|O|1997-06-10|1997-05-04|1997-06-26|NONE|REG AIR|ns. pending, ironic | +10347|75017|2539|2|1|992.01|0.03|0.00|N|O|1997-06-08|1997-04-30|1997-06-29|COLLECT COD|MAIL|alongside of the carefully slow| +10348|157238|7239|1|45|58285.35|0.08|0.01|A|F|1994-05-25|1994-03-24|1994-06-03|NONE|MAIL|eposits are furiously. furiously pend| +10348|87412|9921|2|50|69970.50|0.10|0.01|R|F|1994-03-16|1994-05-03|1994-04-13|TAKE BACK RETURN|MAIL|accounts boost despite the carefull| +10348|131054|1055|3|40|43402.00|0.06|0.08|R|F|1994-02-28|1994-04-15|1994-03-06|NONE|RAIL|express deposits are slyly final re| +10348|16323|1326|4|36|44615.52|0.01|0.02|A|F|1994-05-27|1994-05-13|1994-06-21|COLLECT COD|SHIP|y requests. slyly regular accounts a| +10348|126662|1687|5|1|1688.66|0.08|0.08|A|F|1994-04-25|1994-04-11|1994-05-12|COLLECT COD|TRUCK|deas wake. furiously final packages boost f| +10348|198581|1101|6|16|26873.28|0.02|0.05|A|F|1994-05-19|1994-04-06|1994-06-18|NONE|SHIP|ts cajole after the fluff| +10348|137462|7463|7|41|61477.86|0.06|0.02|R|F|1994-03-27|1994-04-29|1994-04-18|NONE|MAIL|uriously bold packages. | +10349|109947|7478|1|50|97847.00|0.06|0.05|N|O|1995-11-20|1995-09-07|1995-12-16|TAKE BACK RETURN|RAIL|ickly regular deposi| +10349|66349|3868|2|32|42090.88|0.03|0.01|N|O|1995-10-05|1995-09-15|1995-10-11|DELIVER IN PERSON|FOB|equests. carefully regular ideas haggl| +10350|157117|4663|1|17|19959.87|0.00|0.01|N|O|1997-11-13|1998-01-07|1997-12-03|DELIVER IN PERSON|AIR|its cajole never | +10351|42183|4688|1|20|22503.60|0.03|0.06|N|O|1998-08-09|1998-07-04|1998-08-25|TAKE BACK RETURN|FOB|ously bold packages. r| +10351|162914|2915|2|20|39538.20|0.06|0.02|N|O|1998-07-05|1998-07-26|1998-08-03|COLLECT COD|RAIL|tructions are slyly carefully regular ins| +10351|90289|7817|3|20|25585.60|0.07|0.08|N|O|1998-06-15|1998-06-19|1998-06-21|COLLECT COD|RAIL|ecial platelets. carefully ironic ideas are| +10351|71491|9013|4|16|23399.84|0.01|0.02|N|O|1998-06-11|1998-07-30|1998-06-27|DELIVER IN PERSON|REG AIR| express pack| +10351|139176|1690|5|20|24303.40|0.09|0.08|N|O|1998-06-15|1998-07-18|1998-07-12|NONE|FOB|ithely. slyly entici| +10376|9948|2449|1|38|70601.72|0.05|0.02|N|O|1996-04-12|1996-04-04|1996-05-06|COLLECT COD|MAIL|y express dependencies. furiously special | +10376|184980|7499|2|24|49559.52|0.07|0.01|N|O|1996-04-24|1996-04-24|1996-04-27|TAKE BACK RETURN|RAIL|le final deposits? blithely even acco| +10376|150942|5973|3|14|27901.16|0.04|0.06|N|O|1996-03-18|1996-03-26|1996-03-21|NONE|AIR|egular deposits sleep near the even| +10377|146826|6827|1|36|67421.52|0.06|0.02|A|F|1993-03-20|1993-04-17|1993-04-12|DELIVER IN PERSON|MAIL|ges haggle blithely furiously ir| +10377|88340|849|2|44|58446.96|0.06|0.05|A|F|1993-05-17|1993-03-14|1993-06-02|NONE|REG AIR|g the express dolphins are acro| +10377|122144|9681|3|7|8162.98|0.00|0.02|A|F|1993-04-02|1993-04-21|1993-04-14|DELIVER IN PERSON|MAIL|ys accounts. slyly unusual decoys are caref| +10377|69452|9453|4|50|71072.50|0.06|0.06|A|F|1993-04-01|1993-02-23|1993-05-01|DELIVER IN PERSON|RAIL|yly final accounts after the silen| +10377|67929|7930|5|26|49319.92|0.08|0.01|R|F|1993-04-13|1993-04-07|1993-04-15|COLLECT COD|RAIL|p. furiously spe| +10377|75338|353|6|44|57786.52|0.00|0.06|R|F|1993-01-26|1993-02-24|1993-01-31|NONE|FOB|etect quickly furiously iron| +10378|141092|3607|1|6|6798.54|0.06|0.02|A|F|1992-07-30|1992-08-17|1992-08-04|TAKE BACK RETURN|AIR|ly regular p| +10378|128336|5873|2|10|13643.30|0.03|0.07|A|F|1992-06-19|1992-08-15|1992-06-20|DELIVER IN PERSON|TRUCK|s detect slyly even a| +10378|141599|9142|3|10|16405.90|0.06|0.02|R|F|1992-09-08|1992-07-27|1992-09-10|NONE|SHIP|old theodolites wake. unusual deposits hagg| +10378|42600|113|4|43|66331.80|0.09|0.06|A|F|1992-07-25|1992-08-03|1992-07-26|COLLECT COD|AIR|instructions s| +10379|135310|337|1|20|26906.20|0.02|0.06|A|F|1992-06-02|1992-06-20|1992-06-04|NONE|SHIP|the carefully specia| +10379|147422|4965|2|34|49960.28|0.06|0.00|R|F|1992-07-15|1992-07-10|1992-07-25|DELIVER IN PERSON|TRUCK|yly even deposits are. busi| +10379|109840|2351|3|1|1849.84|0.10|0.07|A|F|1992-08-23|1992-07-27|1992-09-08|COLLECT COD|RAIL| pending packages. stealthily even account| +10379|71260|8782|4|11|13543.86|0.02|0.02|A|F|1992-07-29|1992-07-02|1992-08-23|TAKE BACK RETURN|SHIP| haggle quickly. slyly ironic f| +10379|65690|3209|5|39|64571.91|0.09|0.05|A|F|1992-09-03|1992-07-08|1992-10-01|TAKE BACK RETURN|AIR| furiously even deposits. deposits det| +10380|915|8416|1|47|85347.77|0.07|0.04|R|F|1994-07-28|1994-07-31|1994-08-17|TAKE BACK RETURN|AIR|ges. bold foxes i| +10380|174809|7327|2|25|47095.00|0.00|0.06|A|F|1994-06-26|1994-07-28|1994-07-15|COLLECT COD|FOB|ully bold deposits. regular, | +10380|6354|8855|3|14|17644.90|0.02|0.05|R|F|1994-10-04|1994-08-20|1994-10-10|TAKE BACK RETURN|AIR|against the | +10380|188189|5744|4|6|7663.08|0.10|0.02|A|F|1994-07-27|1994-09-14|1994-08-12|TAKE BACK RETURN|SHIP|rding to the slyly ev| +10380|80363|5380|5|44|59107.84|0.01|0.03|R|F|1994-07-03|1994-07-30|1994-07-16|TAKE BACK RETURN|AIR|de of the final asym| +10380|44690|9699|6|6|9808.14|0.08|0.00|R|F|1994-08-15|1994-09-02|1994-08-23|NONE|RAIL|jole ironically. ruthlessly even| +10380|94032|1560|7|11|11286.33|0.03|0.06|A|F|1994-09-08|1994-07-25|1994-10-03|COLLECT COD|REG AIR|atelets across the request| +10381|184018|1573|1|7|7714.07|0.03|0.08|A|F|1993-08-12|1993-08-04|1993-08-16|COLLECT COD|MAIL|ans. blithely ironic d| +10381|189912|2431|2|17|34032.47|0.02|0.00|R|F|1993-07-06|1993-08-03|1993-07-28|TAKE BACK RETURN|AIR| instructions engage s| +10381|37710|5220|3|45|74146.95|0.06|0.02|A|F|1993-07-31|1993-06-09|1993-08-30|NONE|FOB| quickly according to the escapades. carefu| +10382|96266|6267|1|3|3786.78|0.10|0.07|N|O|1996-11-17|1996-10-02|1996-11-18|NONE|TRUCK|pains. sometimes regular realms| +10382|140506|5535|2|21|32476.50|0.08|0.00|N|O|1996-11-15|1996-09-17|1996-11-23|TAKE BACK RETURN|MAIL|thely pendi| +10382|73405|5913|3|9|12405.60|0.10|0.06|N|O|1996-08-02|1996-08-26|1996-08-21|COLLECT COD|AIR|ests boost above | +10382|111228|3740|4|13|16109.86|0.09|0.01|N|O|1996-10-26|1996-09-15|1996-11-11|DELIVER IN PERSON|SHIP|ix ironically. f| +10382|194434|4435|5|34|51966.62|0.09|0.00|N|O|1996-10-06|1996-09-12|1996-10-10|NONE|REG AIR|e according to the furio| +10383|186991|4546|1|7|14545.93|0.02|0.00|A|F|1995-05-21|1995-03-07|1995-06-14|COLLECT COD|AIR|ins sleep furiously. special requests grow | +10383|152160|9706|2|5|6060.80|0.06|0.00|A|F|1995-04-08|1995-04-29|1995-04-09|NONE|RAIL|ic grouche| +10383|147173|2202|3|34|41485.78|0.02|0.04|N|F|1995-05-20|1995-03-30|1995-06-18|NONE|TRUCK|yly quiet packages boost according to the| +10383|128655|3680|4|17|28622.05|0.05|0.04|A|F|1995-03-23|1995-04-15|1995-04-05|COLLECT COD|SHIP|rd the even r| +10383|102402|4913|5|30|42132.00|0.06|0.03|A|F|1995-05-07|1995-03-06|1995-06-04|TAKE BACK RETURN|AIR|to beans use| +10383|60423|7942|6|5|6917.10|0.10|0.00|R|F|1995-04-05|1995-03-14|1995-04-14|NONE|AIR|ess packages haggle slyl| +10408|154409|6925|1|22|32194.80|0.01|0.02|A|F|1992-11-16|1992-12-02|1992-11-23|NONE|FOB|, express requests impress courts. quickl| +10408|144542|9571|2|12|19038.48|0.05|0.08|A|F|1992-12-28|1992-11-28|1993-01-12|NONE|SHIP|ckages wake | +10409|29286|1789|1|38|46180.64|0.07|0.07|R|F|1994-10-19|1994-09-22|1994-11-17|TAKE BACK RETURN|TRUCK|l asymptotes. quickl| +10409|198422|5980|2|39|59296.38|0.03|0.00|A|F|1994-11-13|1994-10-06|1994-11-27|TAKE BACK RETURN|REG AIR|efully. unusual ideas nag-- | +10409|74953|2475|3|19|36631.05|0.00|0.01|A|F|1994-10-06|1994-09-07|1994-10-21|TAKE BACK RETURN|AIR|y special sh| +10409|122726|5239|4|29|50712.88|0.01|0.07|R|F|1994-11-21|1994-09-16|1994-11-23|TAKE BACK RETURN|REG AIR|al, bold foxes. carefully ir| +10409|51434|6445|5|2|2770.86|0.02|0.00|R|F|1994-11-19|1994-09-20|1994-12-02|COLLECT COD|FOB|y close dependencies nag b| +10409|34577|4578|6|45|68020.65|0.09|0.00|R|F|1994-09-05|1994-10-24|1994-09-14|COLLECT COD|REG AIR|pendencies sleep slyly ironic instructions| +10409|126296|3833|7|21|27768.09|0.07|0.04|A|F|1994-08-21|1994-11-01|1994-09-19|DELIVER IN PERSON|SHIP|ular, final id| +10410|46665|9170|1|10|16116.60|0.10|0.02|N|O|1997-07-02|1997-08-26|1997-07-04|NONE|REG AIR|nal instructions. foxes caj| +10410|85399|7908|2|37|51222.43|0.02|0.06|N|O|1997-08-07|1997-08-17|1997-09-02|DELIVER IN PERSON|SHIP|s. final theodolites grow | +10410|97556|66|3|14|21749.70|0.01|0.05|N|O|1997-10-05|1997-08-05|1997-10-08|TAKE BACK RETURN|SHIP|arefully final platelets detect | +10411|57189|9695|1|37|42408.66|0.07|0.08|A|F|1994-07-19|1994-06-28|1994-07-30|NONE|SHIP|ecoys nag slyly. car| +10411|169465|4498|2|38|58309.48|0.04|0.08|R|F|1994-08-14|1994-07-10|1994-08-15|DELIVER IN PERSON|TRUCK|ts. bold requests abo| +10411|193201|5721|3|37|47885.40|0.00|0.07|R|F|1994-06-07|1994-08-04|1994-06-21|DELIVER IN PERSON|AIR|s dolphins wake across the carefully ev| +10411|119571|9572|4|21|33401.97|0.01|0.04|A|F|1994-06-14|1994-06-12|1994-06-16|COLLECT COD|FOB|ns. slyly stealthy pinto beans along | +10411|21669|1670|5|50|79533.00|0.03|0.04|A|F|1994-07-22|1994-07-15|1994-08-05|COLLECT COD|SHIP|tions sleep along| +10411|188894|8895|6|32|63452.48|0.04|0.03|A|F|1994-09-06|1994-07-03|1994-09-25|NONE|TRUCK|blithely carefully ironic acco| +10412|197130|2169|1|22|26996.86|0.05|0.04|R|F|1993-10-15|1993-11-30|1993-11-05|DELIVER IN PERSON|FOB| packages haggle furiously among the fur| +10413|167073|9590|1|44|50163.08|0.08|0.06|A|F|1994-01-21|1994-02-26|1994-02-16|DELIVER IN PERSON|TRUCK|onic platelets? carefully even pains w| +10414|173266|8301|1|10|13392.60|0.09|0.07|R|F|1993-10-21|1993-12-06|1993-11-03|NONE|AIR|ts nag fluffily across the slyly final i| +10414|79232|4247|2|37|44815.51|0.07|0.00|A|F|1993-12-14|1993-11-20|1994-01-02|COLLECT COD|AIR| regular pinto beans according to the blith| +10414|40083|84|3|38|38877.04|0.09|0.08|R|F|1994-02-09|1993-12-06|1994-03-11|NONE|MAIL|encies cajole accor| +10415|27536|2541|1|7|10244.71|0.07|0.05|N|O|1996-09-12|1996-09-01|1996-10-01|NONE|FOB|l decoys caj| +10440|177728|5280|1|5|9028.60|0.06|0.06|N|O|1998-05-21|1998-05-01|1998-06-02|DELIVER IN PERSON|MAIL|ncies across | +10440|71369|3877|2|9|12063.24|0.10|0.03|N|O|1998-07-15|1998-06-13|1998-07-21|COLLECT COD|MAIL| theodolites impress after the sil| +10440|89929|2438|3|14|26864.88|0.01|0.05|N|O|1998-04-11|1998-05-30|1998-04-17|DELIVER IN PERSON|TRUCK| theodolites wake quickly packages| +10440|23667|3668|4|50|79533.00|0.03|0.03|N|O|1998-07-31|1998-05-13|1998-08-22|DELIVER IN PERSON|SHIP|cording to the even dependencies bo| +10440|166003|3552|5|40|42760.00|0.00|0.03|N|O|1998-05-13|1998-05-11|1998-05-18|NONE|SHIP|eep about the express asympt| +10440|9785|9786|6|39|66096.42|0.10|0.08|N|O|1998-06-27|1998-05-11|1998-06-29|COLLECT COD|FOB|ing foxes will have to sleep blithel| +10440|50857|5868|7|25|45196.25|0.06|0.08|N|O|1998-07-27|1998-05-31|1998-08-15|NONE|TRUCK|yly idle excuses haggle blithely regular | +10441|140344|2859|1|32|44298.88|0.02|0.03|N|O|1995-06-23|1995-04-16|1995-07-23|COLLECT COD|SHIP|latelets c| +10441|161329|8878|2|42|58393.44|0.04|0.04|A|F|1995-03-05|1995-05-05|1995-03-14|COLLECT COD|RAIL|its against the blithely pending | +10442|153077|5593|1|12|13560.84|0.07|0.05|N|O|1995-11-25|1995-09-28|1995-12-06|NONE|RAIL| along the blithely specia| +10442|149518|2033|2|8|12540.08|0.06|0.07|N|O|1995-11-02|1995-10-01|1995-11-27|COLLECT COD|AIR|odolites engage blithely| +10442|137563|77|3|20|32011.20|0.08|0.01|N|O|1995-10-05|1995-09-08|1995-11-01|DELIVER IN PERSON|AIR|slyly sly ideas. carefully f| +10442|12356|4858|4|50|63417.50|0.02|0.04|N|O|1995-08-11|1995-09-13|1995-08-28|TAKE BACK RETURN|SHIP|inal dependencies cajole after the requests| +10442|55409|7915|5|44|60033.60|0.00|0.08|N|O|1995-09-24|1995-09-08|1995-10-20|NONE|FOB|gular packages according to th| +10443|50338|7854|1|12|15459.96|0.01|0.05|N|O|1998-02-25|1998-03-27|1998-03-17|TAKE BACK RETURN|SHIP|ages nag. blithely regular packages boo| +10443|16031|1034|2|49|46404.47|0.02|0.07|N|O|1998-02-24|1998-03-10|1998-03-12|DELIVER IN PERSON|RAIL|unusual, ironic deposi| +10443|21831|1832|3|39|68360.37|0.05|0.00|N|O|1998-03-11|1998-04-09|1998-03-15|DELIVER IN PERSON|FOB|special packages nag. packages | +10443|103832|3833|4|26|47731.58|0.04|0.06|N|O|1998-04-06|1998-04-28|1998-04-19|NONE|RAIL|carefully unusual deposits wake| +10443|99531|9532|5|1|1530.53|0.09|0.05|N|O|1998-05-30|1998-03-11|1998-06-05|TAKE BACK RETURN|RAIL|pending deposits along t| +10443|12100|4602|6|22|22266.20|0.09|0.06|N|O|1998-04-20|1998-05-02|1998-05-01|DELIVER IN PERSON|MAIL|ites cajole fi| +10443|148613|8614|7|47|78095.67|0.02|0.01|N|O|1998-06-03|1998-03-26|1998-06-18|NONE|MAIL| the quickly special pinto beans cajo| +10444|133202|5716|1|50|61760.00|0.03|0.01|N|O|1996-10-21|1996-07-30|1996-11-16|DELIVER IN PERSON|FOB|tes nag fluffily-- fluffily exp| +10444|114875|7387|2|36|68035.32|0.00|0.07|N|O|1996-08-07|1996-08-28|1996-09-06|COLLECT COD|AIR|n orbits. req| +10444|93291|8310|3|49|62930.21|0.07|0.00|N|O|1996-07-03|1996-09-27|1996-07-19|NONE|FOB|the slyly final in| +10444|134654|4655|4|27|45593.55|0.08|0.08|N|O|1996-08-13|1996-08-10|1996-08-19|NONE|SHIP|bold requests-- unusual | +10444|114309|1843|5|36|47638.80|0.05|0.07|N|O|1996-08-10|1996-08-27|1996-08-19|COLLECT COD|MAIL| according to the blithe| +10444|180842|5879|6|43|82682.12|0.03|0.04|N|O|1996-07-12|1996-08-20|1996-07-27|COLLECT COD|FOB|quests! regular, exp| +10444|197892|5450|7|24|47757.36|0.08|0.06|N|O|1996-07-21|1996-08-18|1996-07-28|COLLECT COD|RAIL|ronic ideas| +10445|155042|73|1|37|40590.48|0.09|0.06|N|O|1997-12-27|1998-01-02|1998-01-10|DELIVER IN PERSON|MAIL|ding requests. furiously e| +10445|190827|8385|2|33|63288.06|0.07|0.02|N|O|1998-02-08|1998-01-27|1998-02-18|COLLECT COD|MAIL|ole blithely against the pinto beans| +10445|24474|6977|3|37|51743.39|0.03|0.03|N|O|1997-12-19|1998-02-01|1997-12-30|TAKE BACK RETURN|RAIL|olites cajole blithely a| +10445|121240|6265|4|25|31531.00|0.01|0.06|N|O|1997-12-22|1997-12-25|1998-01-02|NONE|REG AIR| integrate. blithely final deposits are.| +10445|80083|84|5|23|24450.84|0.06|0.05|N|O|1997-12-12|1998-01-20|1998-01-10|NONE|REG AIR|ts cajole slyly a| +10445|144235|4236|6|19|24305.37|0.06|0.07|N|O|1998-01-23|1998-01-23|1998-02-22|NONE|REG AIR|onic notornis. instructions s| +10446|72351|2352|1|7|9263.45|0.08|0.08|A|F|1993-12-21|1994-01-30|1994-01-06|COLLECT COD|RAIL|. final, ironic the| +10446|189880|7435|2|10|19698.80|0.08|0.02|A|F|1993-12-12|1993-12-21|1993-12-18|TAKE BACK RETURN|MAIL|thinly around| +10446|97058|7059|3|17|17935.85|0.01|0.07|A|F|1994-01-31|1994-01-30|1994-02-28|TAKE BACK RETURN|MAIL|eodolites cajole. | +10446|42126|2127|4|50|53406.00|0.10|0.05|R|F|1994-01-16|1994-01-02|1994-02-08|DELIVER IN PERSON|TRUCK|ests. bold depos| +10446|9063|4064|5|47|45686.82|0.05|0.05|A|F|1994-02-13|1994-02-12|1994-03-04|NONE|TRUCK|ounts hinder quickly afte| +10446|111898|6921|6|40|76395.60|0.00|0.08|A|F|1993-12-28|1994-01-03|1994-01-20|NONE|AIR|efully regular re| +10447|20507|5512|1|7|9992.50|0.04|0.07|A|F|1992-05-26|1992-07-02|1992-06-16|COLLECT COD|MAIL|lar, regular ideas. carefully pe| +10447|60782|8301|2|42|73196.76|0.02|0.04|R|F|1992-05-23|1992-07-09|1992-06-16|NONE|MAIL|y even, regula| +10447|155672|703|3|42|72562.14|0.00|0.05|R|F|1992-04-16|1992-06-16|1992-04-25|NONE|REG AIR| regular, p| +10447|172075|7110|4|6|6882.42|0.01|0.02|R|F|1992-07-25|1992-06-21|1992-08-08|NONE|FOB|ns. ideas detect bli| +10472|36109|8613|1|10|10451.00|0.09|0.04|N|O|1996-08-15|1996-09-30|1996-09-04|COLLECT COD|FOB| the even d| +10472|83107|8124|2|23|25072.30|0.08|0.05|N|O|1996-11-02|1996-08-14|1996-11-16|COLLECT COD|MAIL|e. slyly express m| +10473|39167|9168|1|45|49777.20|0.02|0.00|A|F|1994-03-24|1994-02-10|1994-04-06|TAKE BACK RETURN|TRUCK|ven accounts cajole after the carefully unu| +10473|79438|4453|2|33|46775.19|0.00|0.04|A|F|1994-03-17|1994-03-08|1994-03-23|DELIVER IN PERSON|REG AIR|ress, final pinto beans s| +10474|21060|8567|1|17|16678.02|0.07|0.01|R|F|1994-04-07|1994-03-19|1994-05-03|COLLECT COD|RAIL| final accounts. ironic, p| +10475|160086|7635|1|19|21775.52|0.01|0.05|N|O|1995-06-29|1995-08-29|1995-07-26|NONE|SHIP|fluffily final platelets | +10475|159947|2463|2|1|2006.94|0.03|0.01|N|O|1995-08-14|1995-09-10|1995-09-05|DELIVER IN PERSON|SHIP| slyly pending foxes haggle above the c| +10475|14628|9631|3|27|41650.74|0.07|0.08|N|O|1995-08-30|1995-09-07|1995-09-11|NONE|REG AIR|ly final deposits | +10476|13341|8344|1|40|50173.60|0.08|0.07|N|O|1997-12-10|1997-11-05|1997-12-28|TAKE BACK RETURN|FOB|the slyly bold excuses. regular packages al| +10476|9653|4654|2|14|21877.10|0.08|0.04|N|O|1997-10-13|1997-12-10|1997-11-07|COLLECT COD|REG AIR|posits. excuses print slyly according to | +10476|34587|2097|3|33|50212.14|0.08|0.00|N|O|1997-10-18|1997-11-06|1997-11-07|COLLECT COD|AIR|ven pinto beans affix throughout | +10477|120923|3436|1|33|64149.36|0.07|0.06|A|F|1994-12-25|1995-01-09|1995-01-11|DELIVER IN PERSON|FOB|y final pinto beans cajole furio| +10477|138047|5587|2|9|9765.36|0.00|0.03|A|F|1994-12-29|1995-01-25|1995-01-23|DELIVER IN PERSON|FOB|gular accounts. blit| +10477|154028|1574|3|5|5410.10|0.01|0.01|A|F|1995-02-18|1994-12-26|1995-03-15|NONE|RAIL|ld deposits hang furiously excuses. | +10477|132731|2732|4|46|81131.58|0.08|0.01|R|F|1995-03-03|1995-01-22|1995-03-27|TAKE BACK RETURN|FOB| dolphins dazzle furiously: gifts wake sl| +10477|2184|4685|5|35|38016.30|0.04|0.06|A|F|1994-12-10|1995-01-09|1995-01-05|TAKE BACK RETURN|RAIL| pending depths play | +10477|95960|8470|6|7|13691.72|0.00|0.00|A|F|1994-12-04|1994-12-21|1994-12-20|COLLECT COD|RAIL|odolites sl| +10478|54890|4891|1|47|86709.83|0.08|0.08|R|F|1994-07-02|1994-07-29|1994-07-21|DELIVER IN PERSON|AIR|even deposits caj| +10478|133908|3909|2|37|71850.30|0.10|0.03|R|F|1994-08-02|1994-07-16|1994-08-17|DELIVER IN PERSON|SHIP|instructions haggle quickly along the| +10479|128079|592|1|8|8856.56|0.00|0.01|A|F|1992-05-09|1992-07-07|1992-06-03|COLLECT COD|RAIL|blithely bold dolphins haggle above t| +10504|114937|9960|1|50|97596.50|0.07|0.00|N|O|1997-07-05|1997-05-13|1997-07-29|NONE|TRUCK| furiously express ideas wake p| +10504|139882|9883|2|5|9609.40|0.09|0.01|N|O|1997-05-04|1997-05-19|1997-05-12|NONE|REG AIR|s the unusual deposits. final, final p| +10504|183218|3219|3|45|58554.45|0.03|0.00|N|O|1997-05-07|1997-04-21|1997-05-18|TAKE BACK RETURN|MAIL|ly final requests. furi| +10504|142746|2747|4|19|33986.06|0.10|0.03|N|O|1997-06-16|1997-06-03|1997-06-26|DELIVER IN PERSON|FOB|yly special t| +10505|88584|3601|1|38|59758.04|0.08|0.02|N|O|1995-07-03|1995-06-21|1995-07-16|NONE|SHIP|p carefully accounts. final dependencie| +10505|23375|5878|2|49|63620.13|0.10|0.08|N|O|1995-07-05|1995-05-19|1995-07-28|TAKE BACK RETURN|SHIP|oxes; express deposits are. pending | +10505|48267|772|3|46|55901.96|0.00|0.05|N|O|1995-06-24|1995-06-21|1995-07-19|TAKE BACK RETURN|TRUCK|quick excuses sleep slyly. blithely i| +10505|9224|9225|4|37|41929.14|0.02|0.03|A|F|1995-04-22|1995-05-29|1995-05-04|DELIVER IN PERSON|TRUCK|requests was| +10505|19750|7254|5|19|31725.25|0.00|0.05|N|O|1995-07-02|1995-05-19|1995-07-27|TAKE BACK RETURN|REG AIR| to the blithely special requests.| +10505|128430|5967|6|11|16042.73|0.05|0.05|N|O|1995-06-25|1995-05-15|1995-07-05|TAKE BACK RETURN|RAIL|ckages. unusual, bold deposits wak| +10506|186846|1883|1|12|23194.08|0.07|0.05|A|F|1993-10-31|1993-09-21|1993-11-26|COLLECT COD|AIR|uriously final accounts are among the| +10506|118358|3381|2|10|13763.50|0.01|0.05|R|F|1993-10-19|1993-10-01|1993-10-24|TAKE BACK RETURN|SHIP|ronic packages wake fu| +10506|36120|3630|3|34|35908.08|0.04|0.05|R|F|1993-12-05|1993-10-12|1993-12-27|TAKE BACK RETURN|SHIP|structions wa| +10506|65828|3347|4|45|80721.90|0.10|0.06|R|F|1993-12-03|1993-10-22|1994-01-02|TAKE BACK RETURN|REG AIR|ages wake furiously express pint| +10507|73700|6208|1|48|80337.60|0.08|0.05|R|F|1995-01-16|1994-11-18|1995-01-23|NONE|TRUCK|above the slyly regular | +10508|181043|1044|1|16|17984.64|0.04|0.01|R|F|1993-11-02|1993-08-28|1993-11-30|NONE|REG AIR|ns. slyly pending decoys haggle. fu| +10508|187849|5404|2|5|9684.20|0.03|0.00|R|F|1993-09-03|1993-08-22|1993-10-02|DELIVER IN PERSON|FOB|tegrate. carefully regular reque| +10508|169210|6759|3|20|25584.20|0.09|0.06|A|F|1993-07-16|1993-08-29|1993-07-22|DELIVER IN PERSON|SHIP|thely about the final, regular| +10508|111473|1474|4|11|16329.17|0.07|0.01|A|F|1993-11-06|1993-08-28|1993-11-10|NONE|SHIP|ly regular inst| +10508|111056|3568|5|43|45883.15|0.02|0.05|R|F|1993-09-28|1993-09-02|1993-10-18|TAKE BACK RETURN|MAIL|hely unusual multipliers. blithely unus| +10508|105950|3481|6|10|19559.50|0.01|0.04|R|F|1993-07-25|1993-08-30|1993-08-05|COLLECT COD|AIR|instructions. car| +10509|112752|7775|1|11|19412.25|0.10|0.01|A|F|1994-05-21|1994-06-11|1994-05-25|DELIVER IN PERSON|REG AIR|endencies above the pinto beans slee| +10509|15882|8384|2|20|35957.60|0.01|0.06|R|F|1994-03-24|1994-06-04|1994-04-06|TAKE BACK RETURN|FOB|ld, bold waters. slyly special accounts abo| +10509|121635|6660|3|12|19879.56|0.08|0.00|A|F|1994-06-22|1994-05-16|1994-07-10|COLLECT COD|RAIL| among the furio| +10509|105108|129|4|31|34506.10|0.03|0.08|R|F|1994-04-03|1994-05-18|1994-04-16|COLLECT COD|REG AIR|ose slyly alongside of the slyly regular p| +10510|69456|4469|1|14|19956.30|0.02|0.05|N|O|1998-03-18|1998-02-23|1998-04-05|DELIVER IN PERSON|FOB|ideas! special accounts use furi| +10510|135868|895|2|40|76154.40|0.10|0.08|N|O|1998-01-07|1998-02-10|1998-01-15|TAKE BACK RETURN|TRUCK|ven foxes. slyly bold packages affix bold| +10510|128570|3595|3|13|20781.41|0.04|0.06|N|O|1998-02-13|1998-02-24|1998-03-01|DELIVER IN PERSON|MAIL|nticing instructions. regular pinto be| +10510|63438|5945|4|6|8408.58|0.08|0.02|N|O|1998-02-06|1998-01-17|1998-02-25|NONE|MAIL| the quickly bold pack| +10510|191157|3677|5|10|12481.50|0.10|0.05|N|O|1998-03-17|1998-02-16|1998-03-22|NONE|AIR|instructions sleep regula| +10510|174171|9206|6|28|34864.76|0.06|0.04|N|O|1998-04-11|1998-03-05|1998-05-09|DELIVER IN PERSON|RAIL|al, bold packa| +10511|27504|7|1|7|10020.50|0.01|0.03|N|O|1997-02-04|1997-02-22|1997-02-06|DELIVER IN PERSON|AIR|ests haggle blithe| +10511|53542|1058|2|4|5982.16|0.02|0.08|N|O|1996-12-29|1997-02-20|1997-01-07|TAKE BACK RETURN|RAIL|y stealthy requests. qui| +10511|77466|9974|3|5|7217.30|0.00|0.00|N|O|1997-03-14|1997-02-16|1997-04-06|NONE|TRUCK|ly about the blithely regular depen| +10536|184837|4838|1|24|46123.92|0.00|0.08|A|F|1994-11-30|1994-11-15|1994-12-12|DELIVER IN PERSON|MAIL|according to the slyly regular pac| +10536|155451|5452|2|17|25609.65|0.06|0.05|R|F|1994-10-04|1994-10-30|1994-10-31|DELIVER IN PERSON|RAIL| the regular theodolites. packa| +10536|59913|7429|3|36|67424.76|0.06|0.01|A|F|1994-11-28|1994-10-03|1994-12-24|COLLECT COD|MAIL|e at the slyly sp| +10536|141753|9296|4|4|7179.00|0.10|0.05|R|F|1994-12-31|1994-10-06|1995-01-02|DELIVER IN PERSON|REG AIR|ackages affix quickly. special,| +10536|27330|2335|5|49|61609.17|0.00|0.06|R|F|1994-09-19|1994-11-19|1994-09-27|TAKE BACK RETURN|REG AIR|pendencies. deposits sleep furiously about| +10536|129390|6927|6|7|9935.73|0.00|0.06|A|F|1994-10-17|1994-10-22|1994-11-13|DELIVER IN PERSON|RAIL| against the| +10537|100436|7967|1|2|2872.86|0.07|0.01|A|F|1992-10-11|1992-10-14|1992-11-04|COLLECT COD|RAIL|ts haggle carefully ironic theodolite| +10537|16924|6925|2|34|62591.28|0.07|0.01|R|F|1992-09-13|1992-09-20|1992-09-28|NONE|MAIL|l dolphins. qui| +10537|33131|641|3|43|45757.59|0.09|0.05|A|F|1992-10-25|1992-10-21|1992-10-31|DELIVER IN PERSON|FOB|ajole carefully | +10537|27155|7156|4|18|19478.70|0.03|0.06|R|F|1992-10-09|1992-10-12|1992-10-12|TAKE BACK RETURN|MAIL|s detect along the platele| +10537|189562|7117|5|36|59456.16|0.01|0.04|R|F|1992-11-21|1992-10-24|1992-12-05|NONE|MAIL|ts. final packages sleep beneat| +10537|153244|8275|6|32|41511.68|0.07|0.07|A|F|1992-08-11|1992-10-24|1992-08-28|NONE|SHIP|ose excuses p| +10537|166533|1566|7|45|71978.85|0.01|0.04|R|F|1992-11-10|1992-10-17|1992-11-17|TAKE BACK RETURN|SHIP|ar, silent theodolites sleep quic| +10538|117489|2512|1|9|13558.32|0.06|0.08|N|O|1998-02-23|1997-12-23|1998-03-10|DELIVER IN PERSON|FOB|y above the fu| +10538|36421|3931|2|8|10859.36|0.07|0.08|N|O|1998-02-06|1998-02-02|1998-02-25|COLLECT COD|TRUCK|riously regular packages. careful| +10538|125244|7757|3|9|11423.16|0.06|0.05|N|O|1997-12-17|1997-12-14|1997-12-21|DELIVER IN PERSON|SHIP|y according to the s| +10538|163919|8952|4|37|73367.67|0.03|0.02|N|O|1997-11-24|1998-01-09|1997-11-28|COLLECT COD|MAIL|s are regularly. carefully even foxes sle| +10539|90851|852|1|46|84725.10|0.09|0.03|N|O|1997-11-28|1997-11-19|1997-12-03|NONE|AIR|ajole fluffily sentiments| +10539|130104|105|2|15|17011.50|0.01|0.08|N|O|1997-10-14|1997-11-01|1997-11-05|COLLECT COD|RAIL|g, ironic instruction| +10539|53801|1317|3|15|26322.00|0.08|0.08|N|O|1997-11-04|1997-11-02|1997-11-28|COLLECT COD|SHIP|ully around the quietly ironic reque| +10540|51180|8696|1|30|33935.40|0.10|0.02|A|F|1994-11-22|1994-10-19|1994-12-04|NONE|SHIP|counts. ironic deposits | +10540|172809|2810|2|42|79035.60|0.04|0.04|A|F|1994-10-29|1994-10-17|1994-10-30|COLLECT COD|AIR|its. blithely bold requ| +10540|191756|1757|3|38|70214.50|0.04|0.01|A|F|1994-12-07|1994-10-21|1994-12-15|TAKE BACK RETURN|MAIL| packages between the special ac| +10540|26759|9262|4|20|33715.00|0.06|0.07|A|F|1994-09-28|1994-10-15|1994-10-16|NONE|RAIL|he special somas. ironic, final foxes a| +10540|126022|3559|5|46|48208.92|0.06|0.03|A|F|1994-11-14|1994-10-27|1994-11-27|COLLECT COD|FOB|es boost furiously. furiously ironi| +10541|88327|836|1|26|34198.32|0.00|0.05|N|O|1996-04-22|1996-02-18|1996-05-08|COLLECT COD|REG AIR| final deposits. special dugouts haggle. | +10541|102716|2717|2|29|49842.59|0.09|0.03|N|O|1996-04-04|1996-04-07|1996-04-18|NONE|SHIP| express excuses cajole quickly furio| +10541|144486|4487|3|24|36731.52|0.02|0.08|N|O|1996-01-24|1996-03-02|1996-01-29|DELIVER IN PERSON|REG AIR|eans wake carefully against the furio| +10541|161511|6544|4|42|66045.42|0.08|0.01|N|O|1996-03-20|1996-03-04|1996-04-01|COLLECT COD|MAIL|e regular pinto beans s| +10541|101590|1591|5|36|57297.24|0.00|0.06|N|O|1996-01-21|1996-02-19|1996-01-31|COLLECT COD|REG AIR|refully even requests. sentiment| +10541|9722|7223|6|38|62005.36|0.05|0.04|N|O|1996-02-24|1996-02-26|1996-03-18|TAKE BACK RETURN|RAIL|y. carefully silent theodolites wake quickl| +10541|182385|4904|7|20|29347.60|0.08|0.04|N|O|1996-01-19|1996-04-01|1996-01-23|COLLECT COD|AIR|out the final, unusual depende| +10542|138432|8433|1|7|10293.01|0.10|0.05|N|O|1997-02-17|1997-01-21|1997-02-28|TAKE BACK RETURN|RAIL|ly ironic deposit| +10542|11532|4034|2|23|33201.19|0.09|0.04|N|O|1996-11-27|1997-01-02|1996-12-23|DELIVER IN PERSON|MAIL| ironic ideas. slyly f| +10542|9269|6770|3|19|22386.94|0.00|0.04|N|O|1997-01-06|1997-01-15|1997-01-20|TAKE BACK RETURN|MAIL|slyly ironic plate| +10542|179985|2503|4|30|61949.40|0.05|0.01|N|O|1996-12-29|1996-12-19|1996-12-30|DELIVER IN PERSON|MAIL|s according to the slyly fina| +10542|193479|8518|5|40|62898.80|0.07|0.03|N|O|1997-02-18|1996-12-10|1997-02-22|TAKE BACK RETURN|SHIP|oss the unusual sheaves.| +10543|49159|9160|1|3|3324.45|0.10|0.06|N|O|1998-09-28|1998-09-30|1998-09-29|COLLECT COD|FOB|requests. slyly re| +10543|5978|8479|2|35|65938.95|0.09|0.07|N|O|1998-09-11|1998-09-20|1998-09-27|COLLECT COD|AIR| final reques| +10568|120543|5568|1|39|60978.06|0.02|0.05|N|O|1997-09-19|1997-10-07|1997-10-03|NONE|TRUCK|y final packa| +10568|159818|9819|2|6|11266.86|0.01|0.02|N|O|1997-09-18|1997-10-27|1997-10-09|COLLECT COD|RAIL|odolites wake blithely| +10568|50053|5064|3|27|27082.35|0.06|0.05|N|O|1997-09-15|1997-09-24|1997-10-03|NONE|REG AIR| express deposits s| +10568|32360|7367|4|49|63325.64|0.01|0.06|N|O|1997-09-13|1997-10-08|1997-09-20|DELIVER IN PERSON|MAIL|y slyly bold pin| +10568|63581|3582|5|20|30891.60|0.00|0.01|N|O|1997-10-26|1997-09-13|1997-10-29|DELIVER IN PERSON|MAIL|efully among the furiously sile| +10568|191895|1896|6|21|41724.69|0.01|0.07|N|O|1997-08-23|1997-09-25|1997-09-03|TAKE BACK RETURN|RAIL|ly regular courts. asymptotes| +10568|164376|6893|7|20|28807.40|0.10|0.04|N|O|1997-08-02|1997-09-22|1997-08-11|TAKE BACK RETURN|RAIL|cial foxes. packag| +10569|63966|3967|1|32|61758.72|0.03|0.00|R|F|1992-07-12|1992-05-09|1992-07-22|DELIVER IN PERSON|MAIL|lly pending platelets cajole | +10569|63742|1261|2|11|18763.14|0.04|0.08|R|F|1992-04-12|1992-04-20|1992-04-26|TAKE BACK RETURN|TRUCK|excuses. slyly regular courts haggle along | +10569|97065|7066|3|25|26551.50|0.07|0.08|R|F|1992-04-18|1992-05-05|1992-05-16|NONE|MAIL|ole over t| +10569|164080|6597|4|4|4576.32|0.06|0.03|A|F|1992-03-29|1992-05-27|1992-04-28|TAKE BACK RETURN|FOB|gle slyly across the packages. quickly fin| +10569|83493|8510|5|14|20670.86|0.07|0.04|R|F|1992-04-12|1992-06-07|1992-04-23|TAKE BACK RETURN|FOB|ts are bra| +10570|12708|5210|1|48|77793.60|0.10|0.02|R|F|1993-03-16|1993-04-06|1993-03-18|TAKE BACK RETURN|REG AIR|pinto beans. blithe| +10570|170407|2925|2|46|67960.40|0.10|0.00|A|F|1993-04-13|1993-05-19|1993-05-07|NONE|MAIL|al packages about the fluffily fi| +10570|23700|1207|3|49|79561.30|0.01|0.02|A|F|1993-05-29|1993-04-19|1993-06-01|COLLECT COD|TRUCK|luffily express pac| +10570|113639|6151|4|17|28094.71|0.08|0.03|R|F|1993-03-31|1993-06-02|1993-04-15|DELIVER IN PERSON|RAIL|ackages integrate furiousl| +10570|129742|7279|5|12|21260.88|0.04|0.02|R|F|1993-07-03|1993-05-14|1993-07-30|DELIVER IN PERSON|TRUCK|s. instructions maintain ag| +10570|173188|8223|6|11|13872.98|0.08|0.08|R|F|1993-04-04|1993-05-31|1993-04-29|COLLECT COD|RAIL|aters integrate permanently alongside | +10571|189786|2305|1|24|45018.72|0.07|0.08|N|O|1997-03-07|1997-03-26|1997-04-03|COLLECT COD|REG AIR|s the carefully regular requests | +10571|117516|2539|2|6|9201.06|0.08|0.07|N|O|1997-01-31|1997-03-13|1997-02-24|TAKE BACK RETURN|SHIP|lly regular requests. even | +10571|91110|8638|3|12|13213.32|0.05|0.02|N|O|1997-04-19|1997-04-01|1997-05-03|TAKE BACK RETURN|REG AIR| blithely stealthily unusual| +10571|76122|8630|4|39|42826.68|0.05|0.03|N|O|1997-02-06|1997-02-26|1997-03-04|COLLECT COD|TRUCK|somas wake around the c| +10571|166323|1356|5|35|48626.20|0.03|0.01|N|O|1997-01-31|1997-03-17|1997-02-01|DELIVER IN PERSON|AIR|s are. pending account| +10571|181724|1725|6|14|25280.08|0.00|0.07|N|O|1997-04-27|1997-02-15|1997-05-04|DELIVER IN PERSON|TRUCK|ic packages. | +10571|20645|5650|7|13|20353.32|0.07|0.04|N|O|1997-04-08|1997-03-08|1997-04-28|DELIVER IN PERSON|SHIP|equests. packages are express deposits. sl| +10572|175204|7722|1|15|19188.00|0.04|0.03|A|F|1994-07-19|1994-09-06|1994-08-04|DELIVER IN PERSON|MAIL|ajole. furiously even req| +10572|41920|9433|2|13|24204.96|0.02|0.00|A|F|1994-09-03|1994-07-23|1994-09-19|COLLECT COD|TRUCK|s are about the| +10572|133560|3561|3|41|65335.96|0.00|0.08|R|F|1994-09-03|1994-09-18|1994-09-20|NONE|RAIL|ar deposits. dep| +10572|137091|7092|4|21|23689.89|0.07|0.02|A|F|1994-08-03|1994-07-21|1994-08-30|TAKE BACK RETURN|AIR| even, fina| +10572|74821|7329|5|6|10774.92|0.10|0.06|A|F|1994-09-24|1994-08-09|1994-10-18|COLLECT COD|AIR|leep along the b| +10572|104523|2054|6|12|18330.24|0.07|0.08|A|F|1994-09-26|1994-08-27|1994-10-12|NONE|MAIL|xcuses according to the sil| +10572|117061|2084|7|12|12936.72|0.04|0.07|A|F|1994-06-25|1994-09-06|1994-07-01|COLLECT COD|FOB|ymptotes at the fu| +10573|36044|8548|1|21|20580.84|0.10|0.05|N|O|1997-07-02|1997-08-23|1997-07-19|DELIVER IN PERSON|TRUCK|y express ideas sleep slyly final | +10573|187085|7086|2|1|1172.08|0.07|0.06|N|O|1997-07-06|1997-08-03|1997-07-10|NONE|FOB|ven, regular f| +10573|133420|8447|3|25|36335.50|0.02|0.04|N|O|1997-08-09|1997-08-12|1997-08-31|NONE|RAIL|cross the quickly final instructio| +10574|7615|7616|1|22|33497.42|0.01|0.06|N|O|1996-06-12|1996-05-18|1996-06-17|DELIVER IN PERSON|TRUCK| the carefully regular| +10574|170985|8537|2|39|80183.22|0.00|0.00|N|O|1996-04-24|1996-06-24|1996-04-30|NONE|MAIL|s use carefull| +10574|136986|2013|3|43|86988.14|0.04|0.04|N|O|1996-07-06|1996-06-27|1996-07-29|DELIVER IN PERSON|MAIL|re carefully. furiously expres| +10574|120506|3019|4|37|56480.50|0.09|0.02|N|O|1996-04-06|1996-06-16|1996-04-16|TAKE BACK RETURN|SHIP|s; slyly regu| +10574|130545|5572|5|9|14179.86|0.09|0.07|N|O|1996-05-19|1996-05-07|1996-06-15|NONE|FOB|usly bold theodolit| +10575|66643|1656|1|7|11267.48|0.05|0.01|R|F|1995-03-07|1995-05-01|1995-03-29|NONE|RAIL| final, special excu| +10575|68384|5903|2|26|35161.88|0.01|0.08|R|F|1995-03-31|1995-04-08|1995-04-13|TAKE BACK RETURN|AIR|furiously against t| +10600|105754|8265|1|30|52792.50|0.10|0.03|A|F|1993-03-29|1993-03-25|1993-04-27|DELIVER IN PERSON|AIR|regular packages.| +10600|198408|928|2|19|28621.60|0.01|0.05|A|F|1993-03-19|1993-04-03|1993-04-13|TAKE BACK RETURN|FOB|s wake slyly; quickly permanent asym| +10601|163239|5756|1|39|50786.97|0.03|0.08|N|O|1996-05-28|1996-07-04|1996-06-22|DELIVER IN PERSON|RAIL|l packages doze atop the furiously reg| +10601|144521|2064|2|30|46965.60|0.06|0.08|N|O|1996-08-19|1996-07-02|1996-09-01|TAKE BACK RETURN|MAIL|es was blithely about the carefully expr| +10601|161122|6155|3|12|14197.44|0.09|0.08|N|O|1996-06-22|1996-07-08|1996-07-09|COLLECT COD|TRUCK|thrash carefully. pe| +10602|194425|1983|1|39|59257.38|0.00|0.03|R|F|1995-01-20|1995-01-05|1995-02-07|DELIVER IN PERSON|MAIL|blithely unusual accounts detect quickly. | +10602|94905|4906|2|13|24698.70|0.08|0.05|A|F|1994-12-08|1994-11-27|1995-01-02|COLLECT COD|TRUCK|ully unusual accounts do| +10603|151198|8744|1|32|39974.08|0.07|0.01|R|F|1995-01-22|1995-02-05|1995-02-06|DELIVER IN PERSON|MAIL|haggle express account| +10603|181530|6567|2|6|9669.18|0.07|0.05|A|F|1994-12-31|1994-12-17|1995-01-07|TAKE BACK RETURN|SHIP|ons wake bl| +10603|170808|3326|3|2|3757.60|0.09|0.08|A|F|1995-03-07|1995-02-05|1995-03-25|NONE|AIR|fully. regular, even ideas are abov| +10603|160980|6013|4|46|93885.08|0.01|0.04|R|F|1994-11-29|1994-12-07|1994-12-21|NONE|MAIL|es boost sly| +10603|176721|4273|5|34|61122.48|0.06|0.00|A|F|1994-12-16|1994-12-26|1995-01-04|COLLECT COD|RAIL|ly final ideas:| +10604|24372|6875|1|47|60929.39|0.00|0.08|N|O|1995-10-28|1995-11-13|1995-11-01|DELIVER IN PERSON|FOB|e furiously bold foxes. blithel| +10604|3997|8998|2|24|45623.76|0.06|0.08|N|O|1995-11-20|1995-11-15|1995-12-02|TAKE BACK RETURN|SHIP|ructions. accounts detect slyly alon| +10604|174299|1851|3|32|43945.28|0.04|0.08|N|O|1995-10-26|1996-01-10|1995-11-06|COLLECT COD|TRUCK| packages. slyly final accounts sleep| +10604|37892|5402|4|31|56726.59|0.06|0.02|N|O|1996-01-21|1996-01-09|1996-02-20|NONE|SHIP| haggle fluffily carefully ironic theodo| +10604|39589|2093|5|44|67257.52|0.02|0.04|N|O|1995-10-15|1995-12-01|1995-10-29|COLLECT COD|TRUCK|o beans sleep along the blithely u| +10604|163759|3760|6|20|36455.00|0.03|0.05|N|O|1995-12-22|1995-11-16|1996-01-11|NONE|AIR|e slyly even depos| +10604|90717|718|7|30|51231.30|0.01|0.02|N|O|1995-10-19|1995-12-30|1995-10-30|COLLECT COD|RAIL|ly. carefully regula| +10605|80275|7800|1|22|27615.94|0.10|0.08|N|O|1997-12-08|1997-10-11|1997-12-21|TAKE BACK RETURN|REG AIR|ck accounts. furiously express de| +10605|175226|2778|2|39|50747.58|0.06|0.01|N|O|1997-11-28|1997-10-15|1997-12-22|NONE|REG AIR|ag furiously car| +10605|22006|7011|3|43|39904.00|0.02|0.07|N|O|1997-09-04|1997-11-15|1997-09-21|DELIVER IN PERSON|AIR|n instructions. regular| +10605|39934|9935|4|15|28108.95|0.07|0.08|N|O|1997-09-25|1997-10-12|1997-10-16|TAKE BACK RETURN|REG AIR|requests. slyly | +10605|158442|3473|5|21|31509.24|0.07|0.05|N|O|1997-11-17|1997-11-13|1997-12-07|DELIVER IN PERSON|AIR|g the quickly regu| +10605|126748|4285|6|3|5324.22|0.01|0.08|N|O|1997-09-26|1997-10-25|1997-09-28|COLLECT COD|TRUCK|sly final accounts about the regular, ex| +10606|26153|6154|1|42|45324.30|0.10|0.02|A|F|1994-12-31|1994-10-27|1995-01-13|COLLECT COD|SHIP|s haggle quickly across the quickly r| +10606|148422|3451|2|11|16174.62|0.08|0.02|A|F|1994-11-12|1994-11-19|1994-11-16|NONE|RAIL|hely after the express accounts. slyly | +10607|4106|9107|1|10|10101.00|0.04|0.07|R|F|1995-02-25|1995-01-03|1995-03-13|DELIVER IN PERSON|REG AIR|packages. pend| +10607|195248|2806|2|49|65818.76|0.04|0.06|A|F|1994-12-21|1995-01-22|1994-12-26|DELIVER IN PERSON|TRUCK| nag quickly even, regular| +10607|124599|2136|3|1|1623.59|0.09|0.07|R|F|1995-02-17|1994-12-22|1995-02-18|TAKE BACK RETURN|MAIL|furiously final packages are along t| +10607|120936|3449|4|34|66535.62|0.10|0.08|R|F|1994-12-17|1994-12-18|1995-01-09|TAKE BACK RETURN|MAIL|nag slyly against the fluff| +10607|156114|8630|5|47|54995.17|0.00|0.00|R|F|1995-02-27|1994-12-18|1995-03-19|NONE|SHIP|s use blithely ironic instructions. care| +10607|191419|8977|6|49|74010.09|0.06|0.04|R|F|1995-03-05|1995-01-10|1995-03-07|COLLECT COD|SHIP|ing to the spec| +10607|163823|6340|7|32|60378.24|0.04|0.03|R|F|1994-12-27|1995-01-26|1995-01-10|TAKE BACK RETURN|AIR|egrate. regular, special sheaves believ| +10632|170810|8362|1|44|82755.64|0.10|0.03|N|O|1997-03-18|1997-01-04|1997-03-31|TAKE BACK RETURN|TRUCK|olphins sleep. quickly silent packag| +10632|189496|4533|2|16|25367.84|0.04|0.07|N|O|1997-02-25|1997-01-05|1997-03-26|TAKE BACK RETURN|TRUCK| carefully ironic h| +10632|47806|7807|3|14|24553.20|0.07|0.05|N|O|1997-02-03|1997-01-06|1997-02-18|COLLECT COD|SHIP|posits haggle ironic accounts. quickly reg| +10632|59032|9033|4|8|7928.24|0.08|0.08|N|O|1997-03-29|1997-01-10|1997-04-24|DELIVER IN PERSON|AIR|ending theodolit| +10632|141514|4029|5|47|73108.97|0.07|0.00|N|O|1997-02-25|1997-01-06|1997-02-26|NONE|AIR|ently against the| +10632|15078|81|6|45|44688.15|0.00|0.01|N|O|1996-12-04|1997-02-23|1996-12-06|DELIVER IN PERSON|REG AIR|ly regular frays sleep past the theodolites| +10632|3689|3690|7|17|27075.56|0.03|0.06|N|O|1997-03-06|1997-02-03|1997-03-08|NONE|RAIL|ions. regular theodolites use slyly? blithe| +10633|186063|1100|1|20|22981.20|0.02|0.02|N|O|1996-07-02|1996-07-24|1996-07-16|TAKE BACK RETURN|RAIL|o the furiously regular de| +10633|149374|6917|2|30|42701.10|0.06|0.04|N|O|1996-05-12|1996-06-10|1996-05-18|NONE|MAIL|to the enticing| +10633|123973|6486|3|13|25960.61|0.10|0.00|N|O|1996-05-23|1996-06-25|1996-06-10|COLLECT COD|RAIL| carefully en| +10633|10795|796|4|22|37527.38|0.10|0.05|N|O|1996-08-06|1996-07-14|1996-08-18|NONE|FOB|blithely regular dependencie| +10633|18887|6391|5|11|19864.68|0.05|0.06|N|O|1996-05-26|1996-07-09|1996-06-14|TAKE BACK RETURN|RAIL|ter the even accounts. enticingly even depo| +10633|25768|773|6|34|57587.84|0.00|0.01|N|O|1996-08-04|1996-06-06|1996-08-10|NONE|FOB|es are. even a| +10633|80562|5579|7|13|20053.28|0.02|0.02|N|O|1996-08-12|1996-07-05|1996-08-23|NONE|TRUCK|ngside of the special foxes boost quick| +10634|188948|3985|1|10|20369.40|0.06|0.05|N|O|1996-11-01|1996-08-27|1996-11-24|COLLECT COD|TRUCK| instructions. silent, spe| +10634|32747|2748|2|11|18477.14|0.06|0.03|N|O|1996-09-02|1996-08-26|1996-09-17|COLLECT COD|MAIL| sleep blithely ironic ideas-- final d| +10634|174066|9101|3|21|23941.26|0.02|0.06|N|O|1996-07-26|1996-09-16|1996-08-07|NONE|REG AIR|ully regular accoun| +10634|126643|6644|4|24|40071.36|0.01|0.06|N|O|1996-10-31|1996-09-24|1996-11-19|DELIVER IN PERSON|RAIL|gular packages after the blithely| +10634|87966|475|5|30|58618.80|0.03|0.02|N|O|1996-10-30|1996-09-28|1996-11-25|NONE|REG AIR|ickly even pinto | +10634|39418|1922|6|4|5429.64|0.06|0.02|N|O|1996-08-08|1996-09-16|1996-09-02|COLLECT COD|RAIL|lly regular packag| +10634|94798|9817|7|45|80675.55|0.02|0.01|N|O|1996-10-03|1996-08-24|1996-10-11|NONE|RAIL|mptotes sleep carefully. pinto beans agai| +10635|68184|691|1|30|34565.40|0.05|0.02|R|F|1992-04-16|1992-07-03|1992-04-29|COLLECT COD|REG AIR|s hang. regular pinto beans| +10635|152565|5081|2|19|30733.64|0.10|0.02|A|F|1992-04-22|1992-05-13|1992-05-22|COLLECT COD|RAIL| instructions. carefull| +10635|152736|7767|3|13|23253.49|0.04|0.01|A|F|1992-04-07|1992-07-02|1992-04-17|DELIVER IN PERSON|REG AIR| quickly according to | +10636|143730|1273|1|34|60306.82|0.01|0.06|N|O|1996-02-25|1996-04-04|1996-03-03|COLLECT COD|AIR|cuses about the slyly regular f| +10636|56192|6193|2|50|57409.50|0.08|0.02|N|O|1996-02-14|1996-04-09|1996-03-11|COLLECT COD|RAIL| final, bold deposits wake carefully f| +10636|14163|6665|3|39|42009.24|0.07|0.07|N|O|1996-04-04|1996-03-26|1996-04-19|NONE|RAIL|gular attainments boos| +10636|36397|6398|4|7|9333.73|0.10|0.01|N|O|1996-01-20|1996-02-20|1996-02-18|COLLECT COD|SHIP| special dependencies are. pinto bea| +10637|35760|8264|1|47|79700.72|0.07|0.04|N|O|1997-07-14|1997-06-10|1997-07-26|DELIVER IN PERSON|MAIL|the blithely pending pinto beans wake a| +10637|13258|762|2|8|9370.00|0.05|0.07|N|O|1997-08-03|1997-06-15|1997-08-28|TAKE BACK RETURN|TRUCK| furiously bold deposits according| +10637|23400|5903|3|34|44995.60|0.00|0.02|N|O|1997-07-25|1997-07-31|1997-08-08|TAKE BACK RETURN|REG AIR|usly among the furiously reg| +10637|72324|9846|4|32|41482.24|0.10|0.07|N|O|1997-05-23|1997-07-25|1997-05-29|TAKE BACK RETURN|FOB|ld accounts. bold pinto be| +10637|147507|7508|5|29|45080.50|0.05|0.00|N|O|1997-08-01|1997-06-12|1997-08-02|TAKE BACK RETURN|MAIL|iously enticing de| +10638|144196|1739|1|41|50847.79|0.03|0.05|N|O|1997-07-25|1997-09-20|1997-08-08|NONE|AIR| deposits. ironic packages | +10638|96231|8741|2|8|9817.84|0.01|0.04|N|O|1997-10-14|1997-09-04|1997-11-06|NONE|FOB|ecial platel| +10638|146207|1236|3|1|1253.20|0.02|0.08|N|O|1997-08-18|1997-09-04|1997-09-09|NONE|RAIL|ffily regular requests c| +10639|20101|7608|1|8|8168.80|0.02|0.03|R|F|1994-11-12|1994-09-27|1994-11-19|DELIVER IN PERSON|RAIL|ns about the regular, regular packages b| +10639|35241|5242|2|33|38815.92|0.03|0.02|R|F|1994-11-24|1994-11-01|1994-12-04|TAKE BACK RETURN|SHIP|ounts cajole after the c| +10639|88339|8340|3|28|37165.24|0.03|0.02|A|F|1994-09-14|1994-09-25|1994-10-10|COLLECT COD|AIR|pendencies haggle. deposits affix| +10639|102877|408|4|28|52636.36|0.08|0.03|A|F|1994-11-28|1994-09-21|1994-12-20|DELIVER IN PERSON|SHIP| boost furiously dependencies.| +10639|49725|7238|5|3|5024.16|0.08|0.03|A|F|1994-10-18|1994-09-21|1994-11-12|TAKE BACK RETURN|FOB| slyly bold attainments. attainments| +10639|118747|8748|6|11|19423.14|0.00|0.07|R|F|1994-08-31|1994-09-13|1994-09-15|DELIVER IN PERSON|MAIL|unts. quickly final theodol| +10639|170444|445|7|39|59063.16|0.03|0.04|R|F|1994-09-27|1994-10-27|1994-10-06|COLLECT COD|AIR|ress theodolites | +10664|38372|5882|1|35|45862.95|0.07|0.02|A|F|1992-03-14|1992-03-25|1992-03-26|DELIVER IN PERSON|SHIP|nal theodolites haggl| +10664|107367|4898|2|7|9620.52|0.09|0.00|A|F|1992-05-11|1992-04-19|1992-05-29|DELIVER IN PERSON|RAIL|quests integrate abo| +10664|113900|1434|3|20|38278.00|0.02|0.00|R|F|1992-04-02|1992-04-26|1992-04-21|COLLECT COD|AIR|ggle. final accoun| +10664|112439|2440|4|5|7257.15|0.09|0.05|R|F|1992-05-09|1992-04-17|1992-05-17|TAKE BACK RETURN|REG AIR|riously final foxes. courts| +10665|175562|597|1|32|52401.92|0.00|0.04|N|O|1996-01-08|1995-12-13|1996-01-28|DELIVER IN PERSON|SHIP|tipliers sleep care| +10665|64821|7328|2|48|85719.36|0.01|0.00|N|O|1996-03-05|1995-12-18|1996-03-10|NONE|REG AIR|ng, bold ideas integrate | +10665|37800|7801|3|42|72987.60|0.07|0.07|N|O|1995-12-29|1996-01-04|1996-01-06|DELIVER IN PERSON|TRUCK|ctions hinder packages. slyly brave de| +10665|97987|7988|4|25|49624.50|0.05|0.03|N|O|1995-12-26|1996-01-19|1996-01-01|DELIVER IN PERSON|AIR|hely. carefully ironic f| +10665|55324|335|5|30|38379.60|0.05|0.04|N|O|1995-12-18|1996-01-06|1996-01-04|DELIVER IN PERSON|REG AIR|packages. evenly silent | +10666|135530|8044|1|5|7827.65|0.09|0.05|A|F|1994-04-19|1994-03-19|1994-04-26|DELIVER IN PERSON|TRUCK|hely express packages boost never bold de| +10666|48695|6208|2|40|65747.60|0.01|0.04|R|F|1993-12-29|1994-01-27|1994-01-06|DELIVER IN PERSON|SHIP| use bravely carefully fina| +10666|7837|7838|3|22|38386.26|0.10|0.07|A|F|1994-01-17|1994-02-01|1994-02-08|COLLECT COD|TRUCK|equests. quickly final requests in| +10666|109291|9292|4|44|57212.76|0.10|0.08|R|F|1994-04-14|1994-02-05|1994-04-25|DELIVER IN PERSON|SHIP|ackages are slyly slyly bold instructio| +10666|45489|5490|5|8|11475.84|0.03|0.01|A|F|1993-12-31|1994-03-04|1994-01-21|COLLECT COD|AIR|s. slyly unusual ideas impress quic| +10666|131800|4314|6|37|67776.60|0.04|0.07|R|F|1994-02-06|1994-03-14|1994-02-14|TAKE BACK RETURN|SHIP|e accounts nag against the even plat| +10667|100767|3278|1|21|37122.96|0.04|0.02|N|O|1996-05-18|1996-04-06|1996-06-07|DELIVER IN PERSON|SHIP|ns. ironic deposits detect fu| +10667|184850|2405|2|40|77394.00|0.05|0.02|N|O|1996-05-29|1996-05-10|1996-06-19|TAKE BACK RETURN|RAIL|quickly special pack| +10667|172210|7245|3|20|25644.20|0.04|0.03|N|O|1996-06-23|1996-04-26|1996-06-27|TAKE BACK RETURN|FOB| foxes use among the qui| +10668|144074|6589|1|28|31305.96|0.05|0.01|N|O|1998-05-13|1998-03-25|1998-05-28|COLLECT COD|SHIP|ng the final pinto beans. slyly eve| +10668|48127|3136|2|21|22577.52|0.06|0.06|N|O|1998-04-10|1998-04-23|1998-05-10|NONE|RAIL|ke against th| +10669|182759|2760|1|43|79195.25|0.02|0.06|N|O|1996-07-08|1996-08-22|1996-07-23|DELIVER IN PERSON|SHIP|y even ideas use. deposit| +10669|26663|4170|2|14|22255.24|0.10|0.03|N|O|1996-08-22|1996-07-15|1996-09-02|TAKE BACK RETURN|AIR|ptotes: thinly final i| +10669|109866|4887|3|34|63779.24|0.05|0.08|N|O|1996-06-20|1996-08-27|1996-07-20|TAKE BACK RETURN|AIR|oxes. special ideas integrate slyly even| +10669|101798|9329|4|16|28796.64|0.00|0.01|N|O|1996-08-12|1996-07-15|1996-08-24|TAKE BACK RETURN|TRUCK|usual deposits. dogged dugouts above the| +10669|117261|4795|5|26|33234.76|0.08|0.05|N|O|1996-08-15|1996-08-11|1996-09-09|COLLECT COD|REG AIR|ular instructions wake carefu| +10669|193975|3976|6|31|64138.07|0.09|0.04|N|O|1996-09-21|1996-07-28|1996-10-11|DELIVER IN PERSON|FOB|he ruthlessly e| +10670|165966|3515|1|30|60958.80|0.09|0.02|A|F|1994-10-02|1994-11-02|1994-10-23|COLLECT COD|SHIP|al, special accounts. carefully s| +10670|182400|4919|2|23|34095.20|0.08|0.01|A|F|1995-01-05|1994-11-08|1995-01-25|DELIVER IN PERSON|TRUCK|ch ironic, final pinto beans. furiously | +10670|187146|4701|3|18|22196.52|0.05|0.08|A|F|1995-01-01|1994-11-26|1995-01-22|TAKE BACK RETURN|TRUCK|e blithely| +10670|150901|902|4|14|27326.60|0.02|0.07|R|F|1994-12-27|1994-11-10|1995-01-12|DELIVER IN PERSON|TRUCK| fluffily slyly ironic theodolites. blithe| +10670|190803|8361|5|24|45451.20|0.09|0.04|R|F|1994-12-07|1994-11-29|1995-01-05|TAKE BACK RETURN|SHIP|o the dolphins boost| +10670|22527|7532|6|1|1449.52|0.02|0.03|A|F|1994-09-25|1994-10-13|1994-09-28|COLLECT COD|TRUCK|e slyly accordi| +10670|3517|3518|7|5|7102.55|0.09|0.01|R|F|1994-10-08|1994-11-23|1994-10-25|NONE|RAIL|nic pinto beans| +10671|101946|1947|1|38|74021.72|0.07|0.07|A|F|1994-07-11|1994-09-07|1994-07-24|TAKE BACK RETURN|RAIL|structions unwind regular theodo| +10671|190760|761|2|40|74030.40|0.04|0.05|R|F|1994-07-28|1994-08-27|1994-08-08|COLLECT COD|TRUCK|e furiously bold requests. regular accou| +10671|90996|8524|3|9|17882.91|0.04|0.01|R|F|1994-08-29|1994-09-06|1994-09-20|DELIVER IN PERSON|MAIL|ideas. deposits sleep deposits. fu| +10696|51313|3819|1|12|15171.72|0.05|0.00|N|O|1998-08-01|1998-06-30|1998-08-07|NONE|MAIL|hely bold accounts are quick| +10696|12202|4704|2|49|54595.80|0.06|0.02|N|O|1998-04-14|1998-06-27|1998-04-26|COLLECT COD|SHIP|earls. carefully special| +10697|171361|1362|1|4|5729.44|0.07|0.08|N|O|1996-12-15|1996-12-27|1997-01-14|TAKE BACK RETURN|AIR|s. carefully ironic packages afte| +10697|51159|6170|2|19|21092.85|0.05|0.00|N|O|1996-12-18|1996-12-02|1996-12-23|COLLECT COD|TRUCK|ic excuses above the b| +10697|13992|3993|3|38|72427.62|0.04|0.07|N|O|1996-11-15|1996-11-25|1996-11-25|DELIVER IN PERSON|FOB|. final, express accounts| +10697|152475|21|4|15|22912.05|0.02|0.04|N|O|1996-12-23|1997-01-04|1996-12-28|TAKE BACK RETURN|SHIP|kages wake stealthily. blithely | +10698|8534|1035|1|6|8655.18|0.00|0.06|N|O|1995-10-05|1995-09-08|1995-10-11|NONE|MAIL|haggle quickly regular depend| +10698|24398|9403|2|15|19835.85|0.06|0.06|N|O|1995-09-15|1995-09-29|1995-09-22|TAKE BACK RETURN|RAIL|lar platelets. express, unusual| +10699|147969|7970|1|18|36305.28|0.05|0.02|N|O|1997-02-20|1997-02-27|1997-03-02|TAKE BACK RETURN|RAIL|o the blithely regular reques| +10699|103966|1497|2|3|5909.88|0.07|0.07|N|O|1997-02-22|1997-02-25|1997-02-26|TAKE BACK RETURN|RAIL|deas. quickly| +10700|30469|7979|1|44|61576.24|0.10|0.03|R|F|1992-05-19|1992-05-21|1992-06-05|NONE|RAIL|aggle blithely slyly express excuses| +10700|86191|1208|2|19|22366.61|0.06|0.00|R|F|1992-06-07|1992-05-31|1992-06-16|COLLECT COD|RAIL|s! pending excuses haggle| +10700|80|2581|3|47|46063.76|0.08|0.00|R|F|1992-03-28|1992-05-03|1992-04-21|TAKE BACK RETURN|REG AIR|lly close req| +10700|137000|9514|4|30|31110.00|0.00|0.01|A|F|1992-04-06|1992-05-30|1992-04-14|COLLECT COD|FOB|sly regula| +10700|142347|4862|5|38|52794.92|0.10|0.00|R|F|1992-03-25|1992-05-19|1992-04-22|NONE|FOB|ses. accounts along the slyly| +10700|21765|1766|6|43|72530.68|0.09|0.03|A|F|1992-06-26|1992-05-01|1992-07-18|NONE|AIR|ong the fluffily pending | +10701|12362|7365|1|29|36956.44|0.07|0.00|N|O|1997-05-21|1997-05-30|1997-06-15|COLLECT COD|AIR|bravely regular accou| +10701|167095|9612|2|17|19755.53|0.06|0.03|N|O|1997-05-03|1997-06-30|1997-05-11|TAKE BACK RETURN|MAIL|lar accounts aff| +10701|154104|1650|3|5|5790.50|0.05|0.07|N|O|1997-05-09|1997-06-16|1997-05-15|NONE|FOB|refully express accounts. slyly even depo| +10702|49323|9324|1|42|53437.44|0.07|0.02|N|O|1996-08-04|1996-10-23|1996-08-28|TAKE BACK RETURN|RAIL|usily special hockey players wak| +10702|170587|588|2|11|18233.38|0.04|0.07|N|O|1996-09-18|1996-08-31|1996-10-07|DELIVER IN PERSON|AIR|carefully iron| +10702|43529|3530|3|24|35340.48|0.02|0.07|N|O|1996-08-28|1996-09-28|1996-09-02|COLLECT COD|FOB|across the a| +10703|92500|7519|1|34|50745.00|0.01|0.03|N|O|1996-07-20|1996-05-24|1996-07-29|TAKE BACK RETURN|FOB|etect furiously | +10703|33226|8233|2|1|1159.22|0.06|0.03|N|O|1996-04-08|1996-05-14|1996-04-23|TAKE BACK RETURN|FOB|to the slyly express instructions. blith| +10703|14481|6983|3|44|61401.12|0.10|0.04|N|O|1996-06-03|1996-06-23|1996-06-20|DELIVER IN PERSON|REG AIR|yly blithely ironic| +10703|168062|8063|4|22|24861.32|0.08|0.07|N|O|1996-07-09|1996-05-30|1996-08-01|COLLECT COD|SHIP|uriously regular | +10728|13090|5592|1|1|1003.09|0.02|0.03|N|O|1997-08-10|1997-08-20|1997-08-14|NONE|TRUCK|final, brave dependencies| +10729|127286|9799|1|40|52531.20|0.00|0.07|N|O|1996-07-26|1996-04-27|1996-08-01|TAKE BACK RETURN|SHIP|dolites-- evenl| +10729|86285|1302|2|32|40680.96|0.10|0.08|N|O|1996-06-26|1996-05-15|1996-07-11|COLLECT COD|FOB|hely final deposits haggle slyly| +10729|182157|7194|3|41|50805.15|0.01|0.03|N|O|1996-06-23|1996-05-07|1996-07-10|DELIVER IN PERSON|AIR|s are fluffily according to the slyly sl| +10729|106259|1280|4|37|46814.25|0.08|0.08|N|O|1996-06-04|1996-06-08|1996-06-10|NONE|TRUCK|ep blithely a| +10730|155001|2547|1|33|34848.00|0.03|0.03|A|F|1992-06-04|1992-07-06|1992-06-16|NONE|FOB|grate bravely. carefully unusual i| +10731|1144|1145|1|9|9406.26|0.05|0.03|N|O|1998-05-02|1998-05-01|1998-05-27|NONE|MAIL|gular platelets. regular foxes are blithel| +10731|19014|1516|2|29|27057.29|0.03|0.06|N|O|1998-05-22|1998-04-18|1998-06-02|TAKE BACK RETURN|AIR|uffily expr| +10731|152669|5185|3|7|12051.62|0.02|0.04|N|O|1998-04-15|1998-05-07|1998-04-29|TAKE BACK RETURN|REG AIR|s detect quickl| +10731|95098|5099|4|34|37165.06|0.08|0.05|N|O|1998-06-08|1998-04-27|1998-06-30|TAKE BACK RETURN|MAIL|xpress, silent deposits use daring| +10731|95792|811|5|45|80450.55|0.07|0.02|N|O|1998-02-25|1998-05-02|1998-02-28|COLLECT COD|RAIL|boost carefully special requests.| +10731|159519|9520|6|37|58404.87|0.08|0.07|N|O|1998-02-12|1998-04-10|1998-02-28|DELIVER IN PERSON|SHIP|old, pending depos| +10731|24719|4720|7|18|29586.78|0.04|0.05|N|O|1998-05-18|1998-03-28|1998-06-06|TAKE BACK RETURN|FOB|ackages boost furiously. slyly| +10732|50287|5298|1|19|23508.32|0.00|0.02|N|O|1997-07-13|1997-05-09|1997-08-03|DELIVER IN PERSON|AIR|es-- even pinto b| +10732|170504|3022|2|47|74001.50|0.04|0.06|N|O|1997-07-15|1997-05-23|1997-07-24|NONE|RAIL| above the furiously unusual requests hag| +10732|57966|7967|3|2|3847.92|0.04|0.00|N|O|1997-07-23|1997-07-03|1997-08-14|NONE|TRUCK|ular, regular dependencies. regular fret| +10732|29486|1989|4|7|9908.36|0.09|0.06|N|O|1997-05-19|1997-07-05|1997-05-21|TAKE BACK RETURN|RAIL|onic pinto bean| +10732|157339|2370|5|47|65627.51|0.07|0.00|N|O|1997-07-08|1997-06-22|1997-07-23|COLLECT COD|TRUCK|ages haggle regular ideas. sometimes| +10732|183945|1500|6|9|18260.46|0.10|0.00|N|O|1997-07-14|1997-06-26|1997-07-21|TAKE BACK RETURN|RAIL|iously even pac| +10733|39862|2366|1|3|5405.58|0.00|0.03|A|F|1992-12-21|1992-12-08|1993-01-13|COLLECT COD|RAIL|ously. carefully unu| +10733|157869|7870|2|22|42390.92|0.04|0.00|R|F|1992-10-06|1992-11-03|1992-10-15|NONE|RAIL|its. blithely bold requests across t| +10734|136338|3878|1|22|30235.26|0.03|0.00|A|F|1994-06-26|1994-07-29|1994-07-26|NONE|SHIP|eposits poach carefully. ironic inst| +10734|31008|6015|2|20|18780.00|0.10|0.07|A|F|1994-07-27|1994-06-27|1994-07-30|COLLECT COD|TRUCK|xcuses along the ironic requests haggl| +10734|146267|6268|3|14|18385.64|0.02|0.05|A|F|1994-07-03|1994-08-11|1994-07-08|TAKE BACK RETURN|RAIL|es along the fluffily special accounts use| +10734|94842|4843|4|29|53268.36|0.07|0.04|R|F|1994-08-03|1994-06-23|1994-08-20|NONE|REG AIR| theodolites. special | +10734|1917|4418|5|18|32740.38|0.05|0.05|R|F|1994-09-15|1994-08-10|1994-10-13|TAKE BACK RETURN|TRUCK|rmanent decoys detect carefully abo| +10734|4356|1857|6|27|34029.45|0.04|0.02|A|F|1994-08-10|1994-07-04|1994-08-26|COLLECT COD|RAIL|ts against the | +10735|124609|4610|1|11|17969.60|0.06|0.03|N|F|1995-06-16|1995-07-13|1995-07-03|TAKE BACK RETURN|AIR|kages after the slyly fin| +10760|93064|5574|1|15|15855.90|0.09|0.00|R|F|1993-11-25|1993-10-29|1993-11-29|NONE|REG AIR|y unusual deposits. sly| +10760|120665|3178|2|28|47198.48|0.03|0.07|R|F|1993-11-25|1993-10-18|1993-12-10|DELIVER IN PERSON|REG AIR|equests affix carefully. c| +10760|9087|9088|3|24|23905.92|0.02|0.01|R|F|1993-09-07|1993-09-18|1993-09-25|COLLECT COD|TRUCK|yly regular foxes: ironic sheaves use furi| +10760|114961|9984|4|26|51374.96|0.01|0.08|A|F|1993-09-09|1993-09-25|1993-09-25|NONE|SHIP|g slyly according to the blithely final| +10760|138892|3919|5|13|25101.57|0.10|0.04|A|F|1993-09-13|1993-09-18|1993-09-15|NONE|AIR|ully after the furiousl| +10761|188059|8060|1|4|4588.20|0.03|0.04|N|O|1998-07-30|1998-08-06|1998-08-24|DELIVER IN PERSON|MAIL|ic account| +10762|29466|9467|1|3|4186.38|0.06|0.07|N|O|1997-01-14|1997-01-28|1997-01-27|NONE|AIR|the bold, expre| +10762|29444|9445|2|43|59057.92|0.05|0.08|N|O|1997-04-04|1997-01-25|1997-04-06|NONE|SHIP|ly special requests| +10762|50466|467|3|19|26912.74|0.00|0.06|N|O|1997-03-09|1997-03-09|1997-04-05|DELIVER IN PERSON|SHIP|y final requests| +10762|169843|2360|4|50|95642.00|0.00|0.07|N|O|1997-01-19|1997-02-09|1997-02-13|NONE|AIR|uriously regular requests. | +10762|142205|4720|5|37|46146.40|0.01|0.01|N|O|1997-03-27|1997-03-02|1997-04-16|NONE|RAIL|c instructions. blithely expre| +10762|35137|2647|6|14|15009.82|0.00|0.03|N|O|1997-03-03|1997-02-22|1997-03-27|DELIVER IN PERSON|FOB| the carefully final fo| +10762|140646|647|7|32|53972.48|0.08|0.00|N|O|1997-02-05|1997-03-01|1997-02-07|NONE|RAIL|ccounts. slyly final ac| +10763|36175|8679|1|41|45557.97|0.06|0.02|A|F|1994-10-16|1994-11-04|1994-11-09|DELIVER IN PERSON|REG AIR|olites. bold, special excuses| +10763|185315|7834|2|44|61613.64|0.01|0.00|A|F|1994-11-06|1994-11-06|1994-11-30|COLLECT COD|AIR|s use slyly about the blithely ironic id| +10763|183357|5876|3|14|20164.90|0.08|0.01|R|F|1994-11-28|1994-09-12|1994-12-15|NONE|SHIP|foxes cajole after the regular p| +10764|54785|7291|1|34|59152.52|0.06|0.07|A|F|1993-06-11|1993-05-31|1993-06-12|DELIVER IN PERSON|AIR|ions. final, pending courts according to | +10764|162562|5079|2|47|76354.32|0.04|0.02|A|F|1993-04-28|1993-06-12|1993-05-15|COLLECT COD|MAIL|er the idea| +10765|101273|6294|1|21|26759.67|0.10|0.04|N|O|1996-11-25|1996-11-28|1996-12-19|NONE|REG AIR|ress accounts h| +10765|94435|6945|2|5|7147.15|0.05|0.01|N|O|1996-11-15|1996-10-30|1996-12-07|TAKE BACK RETURN|SHIP|thely fluff| +10765|162030|2031|3|50|54601.50|0.03|0.08|N|O|1996-09-19|1996-10-14|1996-10-18|TAKE BACK RETURN|FOB|iously special requests nod about the sil| +10765|28258|761|4|30|35587.50|0.03|0.07|N|O|1996-09-09|1996-10-08|1996-09-30|TAKE BACK RETURN|FOB|late among the furiously final as| +10765|115786|3320|5|20|36035.60|0.00|0.07|N|O|1996-11-06|1996-11-06|1996-11-30|DELIVER IN PERSON|REG AIR|ss foxes. sly, bold | +10765|7214|9715|6|32|35878.72|0.08|0.07|N|O|1996-11-26|1996-11-18|1996-12-07|DELIVER IN PERSON|AIR|tructions. f| +10765|29631|9632|7|3|4681.89|0.07|0.03|N|O|1996-09-14|1996-11-18|1996-09-25|COLLECT COD|REG AIR| quick platelets haggle slyly. r| +10766|195333|5334|1|35|49991.55|0.01|0.02|A|F|1994-08-19|1994-09-09|1994-08-28|NONE|MAIL| accounts are slyly after th| +10766|146637|4180|2|7|11785.41|0.05|0.01|A|F|1994-08-23|1994-07-26|1994-09-15|COLLECT COD|REG AIR| even dolph| +10767|120991|6016|1|38|76455.62|0.01|0.02|N|O|1995-12-06|1995-10-06|1995-12-26|DELIVER IN PERSON|AIR|pinto beans sleep quickly| +10792|46542|6543|1|6|8931.24|0.02|0.02|N|O|1995-07-06|1995-05-01|1995-08-05|COLLECT COD|TRUCK| dolphins. blithely eve| +10792|17522|7523|2|24|34548.48|0.00|0.00|R|F|1995-03-09|1995-05-26|1995-03-29|COLLECT COD|MAIL|quickly furiously ir| +10792|88403|8404|3|48|66787.20|0.02|0.01|A|F|1995-03-15|1995-05-11|1995-04-08|COLLECT COD|MAIL| slyly. carefully even platelets inte| +10792|188135|3172|4|33|40363.29|0.09|0.06|N|F|1995-06-02|1995-05-25|1995-06-27|DELIVER IN PERSON|RAIL|s integrate after th| +10793|166329|6330|1|34|47440.88|0.06|0.08|N|O|1998-07-11|1998-06-20|1998-07-27|DELIVER IN PERSON|REG AIR|asymptotes. final, pending frays caj| +10793|77066|2081|2|35|36507.10|0.03|0.04|N|O|1998-05-13|1998-06-09|1998-06-01|DELIVER IN PERSON|FOB|luffily across the furiously unusual r| +10794|181744|1745|1|14|25560.36|0.09|0.06|A|F|1994-08-16|1994-07-13|1994-08-22|DELIVER IN PERSON|FOB|fully pending pinto beans. fluffily | +10794|170277|7829|2|42|56585.34|0.10|0.00|A|F|1994-07-29|1994-07-08|1994-08-19|TAKE BACK RETURN|TRUCK| alongside of the unusual, silent theod| +10794|41736|6745|3|40|67109.20|0.06|0.07|R|F|1994-08-03|1994-07-06|1994-08-23|TAKE BACK RETURN|FOB| solve after the bli| +10794|51841|4347|4|23|41235.32|0.09|0.06|R|F|1994-07-12|1994-06-14|1994-08-06|DELIVER IN PERSON|FOB| requests. slyly even instructions do c| +10794|86094|3619|5|34|36723.06|0.03|0.03|R|F|1994-06-30|1994-08-08|1994-07-07|COLLECT COD|SHIP|e instructions| +10794|167548|2581|6|42|67852.68|0.08|0.08|A|F|1994-07-04|1994-07-14|1994-08-03|DELIVER IN PERSON|SHIP|pending, even ideas. accounts wake bli| +10794|169927|7476|7|7|13978.44|0.00|0.03|A|F|1994-08-02|1994-07-02|1994-08-05|DELIVER IN PERSON|MAIL|ackages. dolphins| +10795|156890|1921|1|26|50619.14|0.03|0.01|R|F|1993-10-21|1993-10-12|1993-11-15|DELIVER IN PERSON|AIR|fter the e| +10795|47877|382|2|2|3649.74|0.05|0.02|A|F|1993-12-08|1993-10-09|1993-12-26|TAKE BACK RETURN|TRUCK|ang never bold sauternes. regular, unusual | +10795|51960|6971|3|8|15295.68|0.07|0.06|A|F|1993-12-10|1993-10-02|1994-01-06|COLLECT COD|AIR|ing, even pinto beans. busi| +10796|28183|5690|1|24|26668.32|0.09|0.06|R|F|1992-08-01|1992-07-26|1992-08-03|COLLECT COD|MAIL| requests. fluffily ironic gifts kindle| +10796|61964|1965|2|36|69334.56|0.09|0.03|R|F|1992-09-24|1992-08-25|1992-10-05|NONE|RAIL|ependencies against the ironic, speci| +10796|22172|9679|3|45|49237.65|0.03|0.04|R|F|1992-08-31|1992-07-18|1992-09-24|COLLECT COD|AIR| pending dolphins. deposits wake furious| +10796|30110|2614|4|35|36403.85|0.04|0.08|A|F|1992-06-18|1992-07-19|1992-07-09|DELIVER IN PERSON|MAIL|efully final, special d| +10796|42678|191|5|21|34034.07|0.00|0.04|A|F|1992-07-20|1992-07-19|1992-08-17|NONE|REG AIR|ully even asymptotes doubt| +10796|77921|5443|6|26|49371.92|0.06|0.02|R|F|1992-07-16|1992-07-14|1992-08-05|NONE|AIR| foxes across the pinto beans cajole furio| +10797|60856|857|1|14|25435.90|0.07|0.02|R|F|1992-12-10|1992-11-10|1992-12-20|TAKE BACK RETURN|RAIL|kages. ironic requests bre| +10798|127145|2170|1|2|2344.28|0.08|0.03|N|O|1996-05-10|1996-05-05|1996-05-13|DELIVER IN PERSON|FOB|uriously regular requests wake blithel| +10798|118404|3427|2|15|21336.00|0.00|0.05|N|O|1996-05-23|1996-03-28|1996-06-17|TAKE BACK RETURN|TRUCK| silent dependencies. ironic dependenci| +10799|131094|8634|1|34|38253.06|0.02|0.06|A|F|1994-08-18|1994-08-01|1994-09-14|DELIVER IN PERSON|RAIL|ests wake since the pending| +10799|88857|3874|2|38|70142.30|0.10|0.03|A|F|1994-07-11|1994-08-01|1994-07-27|NONE|FOB|eep! regular, even packages| +10799|5565|5566|3|15|22058.40|0.08|0.05|R|F|1994-07-18|1994-08-28|1994-07-31|COLLECT COD|TRUCK|sly regular | +10824|153789|1335|1|39|71868.42|0.05|0.00|A|F|1993-02-14|1992-12-30|1993-02-24|COLLECT COD|FOB|cial deposits sleep quickly acros| +10825|738|5739|1|33|54078.09|0.03|0.02|N|O|1997-12-25|1997-12-12|1998-01-20|TAKE BACK RETURN|FOB|arefully. deposits after the carefull| +10825|187543|2580|2|43|70113.22|0.06|0.02|N|O|1997-11-14|1997-12-25|1997-12-03|DELIVER IN PERSON|SHIP|y even requests need to boost. thi| +10825|32307|9817|3|24|29743.20|0.07|0.03|N|O|1997-10-16|1997-12-16|1997-11-10|DELIVER IN PERSON|AIR|al foxes after the final, bold deposits | +10825|179307|6859|4|14|19408.20|0.02|0.01|N|O|1997-11-07|1997-12-03|1997-11-15|COLLECT COD|RAIL| final pinto beans run slyly quickly eve| +10826|11548|6551|1|28|40867.12|0.02|0.00|N|O|1995-09-19|1995-08-21|1995-09-23|NONE|REG AIR|excuses sleep blithely. accounts ha| +10826|86855|9364|2|2|3683.70|0.00|0.00|N|O|1995-08-29|1995-09-14|1995-09-21|DELIVER IN PERSON|RAIL|sts wake. carefully| +10826|162255|4772|3|28|36883.00|0.09|0.01|N|O|1995-09-16|1995-08-19|1995-10-16|DELIVER IN PERSON|REG AIR|d deposits are fluffily quickly e| +10826|3047|5548|4|14|13300.56|0.05|0.08|N|O|1995-09-20|1995-09-02|1995-10-16|DELIVER IN PERSON|AIR|c requests ar| +10826|842|5843|5|3|5228.52|0.04|0.04|N|O|1995-07-21|1995-08-28|1995-08-06|TAKE BACK RETURN|AIR|tions boost slyly | +10826|148278|5821|6|1|1326.27|0.10|0.06|N|O|1995-09-11|1995-09-23|1995-10-06|NONE|RAIL|yly. unusu| +10826|93580|8599|7|42|66090.36|0.09|0.00|N|O|1995-08-05|1995-08-19|1995-08-18|TAKE BACK RETURN|FOB|the furiously bold ideas| +10827|184426|9463|1|8|12083.36|0.03|0.06|N|O|1996-06-19|1996-08-07|1996-07-09|NONE|AIR|deposits. blithely express attai| +10827|40718|719|2|6|9952.26|0.02|0.04|N|O|1996-10-04|1996-07-24|1996-10-10|DELIVER IN PERSON|FOB|ggle after the special dep| +10827|135331|5332|3|10|13663.30|0.07|0.05|N|O|1996-08-15|1996-07-28|1996-08-20|TAKE BACK RETURN|FOB| deposits. furiously bo| +10827|92061|4571|4|33|34750.98|0.01|0.01|N|O|1996-06-22|1996-07-29|1996-07-11|COLLECT COD|FOB| final packages affix carefully against the| +10828|163434|3435|1|34|50912.62|0.06|0.02|N|O|1997-02-21|1997-01-23|1997-03-21|COLLECT COD|MAIL| the carefu| +10828|27325|2330|2|45|56354.40|0.08|0.02|N|O|1997-03-14|1997-03-20|1997-03-19|COLLECT COD|AIR|arefully. ex| +10828|38817|1321|3|39|68476.59|0.09|0.08|N|O|1997-02-14|1997-01-24|1997-03-10|DELIVER IN PERSON|AIR|ve the ironic, fin| +10828|189935|9936|4|15|30373.95|0.06|0.04|N|O|1997-02-17|1997-02-06|1997-03-07|TAKE BACK RETURN|RAIL|around the slyly regular plate| +10828|31163|6170|5|32|35013.12|0.09|0.00|N|O|1997-03-13|1997-02-07|1997-03-21|COLLECT COD|TRUCK|foxes. blithely bold | +10828|150677|5708|6|42|72562.14|0.06|0.04|N|O|1997-01-01|1997-02-24|1997-01-24|COLLECT COD|SHIP|y. final, pending packages n| +10828|24446|9451|7|9|12333.96|0.00|0.08|N|O|1997-02-21|1997-03-13|1997-03-04|COLLECT COD|TRUCK|olites nag unusual deposits. b| +10829|56284|8790|1|40|49611.20|0.02|0.00|A|F|1992-11-16|1992-12-05|1992-12-07|DELIVER IN PERSON|FOB|ckages across the fi| +10829|151627|1628|2|1|1678.62|0.07|0.01|A|F|1993-02-04|1992-12-04|1993-02-23|NONE|SHIP|instructions | +10830|168162|679|1|23|28293.68|0.09|0.07|N|O|1998-03-27|1998-04-11|1998-04-05|NONE|MAIL|carefully en| +10831|69799|4812|1|25|44219.75|0.04|0.07|N|O|1998-05-02|1998-02-25|1998-05-17|DELIVER IN PERSON|RAIL|ven requests. even theodo| +10831|102642|5153|2|35|57562.40|0.00|0.00|N|O|1998-02-28|1998-04-17|1998-03-08|DELIVER IN PERSON|RAIL|regular deposits. asymptotes serve sl| +10831|100847|848|3|11|20326.24|0.01|0.03|N|O|1998-02-05|1998-03-07|1998-02-09|COLLECT COD|SHIP|ut the slyly regular requests wa| +10831|133439|3440|4|4|5889.72|0.08|0.05|N|O|1998-05-21|1998-03-20|1998-06-17|NONE|FOB|r sheaves are carefully final pi| +10856|135471|7985|1|46|69297.62|0.00|0.00|R|F|1994-08-17|1994-10-02|1994-09-15|COLLECT COD|SHIP|sly final acc| +10857|64186|6693|1|29|33355.22|0.07|0.00|N|O|1997-06-10|1997-05-16|1997-07-03|TAKE BACK RETURN|MAIL|sts. fluffily express instr| +10857|173156|8191|2|2|2458.30|0.03|0.04|N|O|1997-04-20|1997-05-06|1997-04-25|COLLECT COD|TRUCK|ress, final instruct| +10857|20669|8176|3|23|36562.18|0.04|0.00|N|O|1997-05-18|1997-03-27|1997-06-10|COLLECT COD|MAIL|esias-- furi| +10857|182767|7804|4|34|62891.84|0.00|0.03|N|O|1997-04-13|1997-04-06|1997-04-15|NONE|REG AIR|gular plat| +10857|151160|6191|5|45|54502.20|0.01|0.01|N|O|1997-05-29|1997-05-09|1997-06-24|COLLECT COD|AIR|. even, silent requests according to the| +10858|48369|3378|1|25|32934.00|0.00|0.01|R|F|1992-08-01|1992-08-16|1992-08-08|NONE|REG AIR|instructions wake against the fur| +10858|135527|3067|2|15|23437.80|0.05|0.03|R|F|1992-09-09|1992-08-18|1992-09-29|DELIVER IN PERSON|SHIP|ts along the f| +10859|111751|6774|1|27|47594.25|0.02|0.01|R|F|1993-02-14|1993-01-26|1993-03-12|TAKE BACK RETURN|AIR|ions. carefull| +10859|186524|6525|2|33|53147.16|0.10|0.05|A|F|1993-03-06|1993-01-07|1993-04-01|NONE|REG AIR|ions. pending sauternes| +10859|101664|4175|3|49|81617.34|0.09|0.01|A|F|1993-02-07|1993-02-21|1993-03-08|COLLECT COD|MAIL|riously. ironic exc| +10860|130607|3121|1|20|32752.00|0.06|0.01|N|O|1995-12-09|1995-11-08|1995-12-20|DELIVER IN PERSON|RAIL|heodolites. even requests wake fluffily. | +10861|21524|6529|1|8|11564.16|0.09|0.02|N|O|1995-10-02|1995-08-03|1995-10-13|TAKE BACK RETURN|TRUCK|r dinos. bold, pending| +10861|139856|2370|2|24|45500.40|0.03|0.02|N|O|1995-09-27|1995-08-20|1995-10-24|TAKE BACK RETURN|AIR|s after the pinto beans are about the | +10861|151849|9395|3|48|91240.32|0.08|0.02|A|F|1995-06-10|1995-07-24|1995-06-15|COLLECT COD|RAIL|bove the blithel| +10861|121862|1863|4|16|30141.76|0.08|0.05|N|O|1995-09-22|1995-08-31|1995-09-26|NONE|FOB| carefully express instruction| +10861|119328|4351|5|1|1347.32|0.09|0.01|N|O|1995-07-04|1995-07-23|1995-07-09|COLLECT COD|AIR|ntain along the fluffily stealthy pin| +10861|133254|5768|6|5|6436.25|0.08|0.07|N|O|1995-09-07|1995-08-21|1995-09-26|TAKE BACK RETURN|AIR|uickly bold ideas cajole slyly ca| +10861|190054|7612|7|3|3432.15|0.07|0.05|N|O|1995-08-03|1995-07-17|1995-08-18|COLLECT COD|MAIL| according to the s| +10862|27528|31|1|35|50943.20|0.10|0.06|N|O|1996-04-08|1996-03-28|1996-04-28|NONE|REG AIR|multipliers. iro| +10862|46445|3958|2|50|69572.00|0.04|0.00|N|O|1996-05-09|1996-04-30|1996-05-27|DELIVER IN PERSON|TRUCK|d, special dolphins| +10862|190121|7679|3|46|55711.52|0.08|0.08|N|O|1996-04-16|1996-03-26|1996-05-11|COLLECT COD|MAIL|regular pinto beans must have to use. | +10862|157505|21|4|45|70312.50|0.08|0.01|N|O|1996-04-07|1996-03-22|1996-04-08|COLLECT COD|REG AIR|al packages. slyly pe| +10863|137479|5019|1|42|63691.74|0.09|0.08|A|F|1995-02-04|1995-02-06|1995-02-24|DELIVER IN PERSON|REG AIR|ideas. slyly regu| +10863|193513|6033|2|29|46588.79|0.07|0.08|R|F|1995-01-31|1995-01-22|1995-02-15|COLLECT COD|MAIL| slyly pending, | +10863|169797|2314|3|25|46669.75|0.01|0.06|A|F|1995-03-10|1995-02-04|1995-03-22|DELIVER IN PERSON|FOB|aids across the carefully unusual the| +10888|103357|3358|1|50|68017.50|0.10|0.01|N|O|1997-07-11|1997-05-14|1997-07-27|TAKE BACK RETURN|SHIP|e carefully b| +10888|119311|4334|2|43|57203.33|0.02|0.08|N|O|1997-07-18|1997-06-16|1997-07-22|COLLECT COD|REG AIR|efully final requests hang slyly | +10888|54117|6623|3|16|17137.76|0.02|0.06|N|O|1997-04-14|1997-06-15|1997-05-11|TAKE BACK RETURN|REG AIR|d accounts. quickly even instruction| +10888|136994|6995|4|29|58898.71|0.03|0.05|N|O|1997-06-09|1997-06-11|1997-06-13|TAKE BACK RETURN|FOB|o beans. fluffily pending t| +10888|56985|4501|5|3|5825.94|0.07|0.08|N|O|1997-04-16|1997-06-06|1997-04-17|NONE|MAIL|ggle blithely furiously silent p| +10888|139110|6650|6|49|56306.39|0.07|0.02|N|O|1997-05-24|1997-05-08|1997-06-09|DELIVER IN PERSON|SHIP|riously regular theodolites. bold instructi| +10889|115374|397|1|12|16672.44|0.05|0.05|N|O|1997-01-26|1997-01-20|1997-02-18|COLLECT COD|SHIP|ely pending deposits haggle sly| +10889|74836|2358|2|9|16297.47|0.05|0.05|N|O|1997-02-09|1996-12-23|1997-02-11|DELIVER IN PERSON|SHIP|ove the quickly regular r| +10889|166259|8776|3|42|55660.50|0.06|0.02|N|O|1997-01-23|1996-12-29|1997-02-15|COLLECT COD|MAIL|lar accounts. furiously final ex| +10889|109002|9003|4|23|23253.00|0.06|0.05|N|O|1996-11-23|1997-02-05|1996-12-16|COLLECT COD|RAIL| special a| +10889|193713|6233|5|10|18067.10|0.00|0.06|N|O|1997-02-24|1996-12-26|1997-03-20|NONE|RAIL|aintain blit| +10889|131717|1718|6|14|24481.94|0.06|0.03|N|O|1997-01-30|1997-02-12|1997-02-07|NONE|TRUCK|sits. packages according to the deposits| +10889|161587|1588|7|36|59348.88|0.10|0.07|N|O|1997-01-26|1996-12-18|1997-02-18|NONE|AIR|ructions. deposits cajole slyly br| +10890|192164|7203|1|18|22610.88|0.10|0.02|N|O|1997-06-14|1997-05-21|1997-06-23|COLLECT COD|MAIL| deposits. slyly fluffy accounts| +10890|96217|3745|2|29|35183.09|0.05|0.01|N|O|1997-04-28|1997-06-03|1997-05-23|COLLECT COD|MAIL|iously unusual pearls haggle f| +10890|104499|2030|3|50|75174.50|0.03|0.06|N|O|1997-05-27|1997-06-04|1997-06-24|TAKE BACK RETURN|RAIL|ites affix fluffily express pinto | +10891|128383|5920|1|49|69157.62|0.04|0.03|N|O|1996-05-02|1996-04-01|1996-05-05|TAKE BACK RETURN|TRUCK|press, pending braids. carefully fi| +10891|118723|8724|2|7|12192.04|0.08|0.01|N|O|1996-05-04|1996-04-19|1996-05-06|COLLECT COD|RAIL|into beans. even escapades wake ca| +10892|70816|817|1|20|35736.20|0.10|0.01|N|O|1998-04-08|1998-03-20|1998-04-24|NONE|FOB|nly pending requests. furiously bold pack| +10892|189220|6775|2|32|41895.04|0.07|0.02|N|O|1998-02-09|1998-03-21|1998-02-10|TAKE BACK RETURN|FOB| ironic patterns thrash silently quickly b| +10892|15456|459|3|24|32914.80|0.08|0.06|N|O|1998-03-03|1998-03-29|1998-03-27|NONE|FOB|ct ironically. slyly special packages mold| +10892|157608|2639|4|11|18321.60|0.09|0.02|N|O|1998-02-03|1998-04-27|1998-02-18|DELIVER IN PERSON|REG AIR|es are slyly unusual| +10892|107360|2381|5|25|34184.00|0.07|0.04|N|O|1998-03-11|1998-03-20|1998-03-15|NONE|SHIP|ges sleep b| +10893|33267|5771|1|29|34807.54|0.04|0.04|N|O|1996-10-04|1996-08-23|1996-10-29|NONE|RAIL|es detect carefully. carefull| +10893|111483|1484|2|46|68746.08|0.07|0.01|N|O|1996-07-12|1996-08-19|1996-08-03|COLLECT COD|RAIL|es. slyly even foxes against the regular, u| +10893|86706|9215|3|38|64322.60|0.03|0.03|N|O|1996-09-15|1996-08-07|1996-10-08|NONE|FOB|kly ruthless pinto beans. sly| +10893|61144|8663|4|15|16577.10|0.04|0.00|N|O|1996-07-12|1996-09-21|1996-07-17|NONE|SHIP|c instructions | +10894|110237|5260|1|32|39911.36|0.01|0.06|R|F|1994-01-07|1994-01-02|1994-02-03|TAKE BACK RETURN|FOB|s detect carefully. final pinto | +10895|16219|3723|1|44|49949.24|0.10|0.06|N|O|1998-08-17|1998-07-05|1998-09-13|TAKE BACK RETURN|REG AIR|ccounts sleep above the carefully regula| +10895|179143|4178|2|33|40330.62|0.07|0.08|N|O|1998-05-30|1998-08-13|1998-06-23|DELIVER IN PERSON|FOB|r theodolites. ideas haggle foxes; accou| +10920|44539|4540|1|50|74176.50|0.10|0.05|N|O|1997-12-07|1997-12-21|1997-12-25|TAKE BACK RETURN|SHIP|he final packages. regular requests| +10920|161597|4114|2|36|59709.24|0.03|0.02|N|O|1998-01-23|1997-12-26|1998-01-27|TAKE BACK RETURN|FOB|ounts engage slyly ruthlessly fin| +10920|154837|9868|3|19|35944.77|0.06|0.01|N|O|1997-11-08|1997-12-28|1997-12-06|TAKE BACK RETURN|RAIL|efully ironic excuses| +10920|135451|2991|4|35|52025.75|0.01|0.01|N|O|1997-11-18|1997-12-31|1997-12-09|NONE|SHIP|ts cajole fluffily de| +10920|112242|9776|5|45|56440.80|0.05|0.08|N|O|1997-12-29|1998-01-19|1998-01-22|TAKE BACK RETURN|MAIL|s. special, unusual requests integrate| +10920|46828|1837|6|9|15973.38|0.05|0.03|N|O|1997-12-27|1998-01-23|1998-01-05|NONE|AIR|le after the even, sp| +10920|28778|1281|7|4|6827.08|0.10|0.06|N|O|1997-12-19|1997-12-24|1998-01-14|TAKE BACK RETURN|REG AIR|lar instructions. quickly final dependen| +10921|64742|9755|1|31|52908.94|0.04|0.00|A|F|1994-12-19|1994-11-26|1995-01-10|COLLECT COD|RAIL|ns sublate blithely about the slyly even a| +10922|98198|708|1|2|2392.38|0.05|0.07|A|F|1994-08-30|1994-07-07|1994-09-12|COLLECT COD|RAIL|ecial instructions wak| +10923|117769|2792|1|16|28588.16|0.09|0.01|A|F|1992-03-20|1992-04-15|1992-04-12|NONE|REG AIR|ix carefully. fu| +10923|133013|8040|2|34|35564.34|0.00|0.06|A|F|1992-06-05|1992-05-12|1992-06-12|TAKE BACK RETURN|FOB|-- even requests haggle| +10923|141448|3963|3|25|37236.00|0.10|0.07|R|F|1992-06-12|1992-05-01|1992-07-10|NONE|SHIP|ly final accounts. carefully e| +10923|108800|1311|4|41|74160.80|0.10|0.03|R|F|1992-04-14|1992-04-08|1992-05-06|DELIVER IN PERSON|AIR|odolites. caref| +10923|195336|375|5|10|14313.30|0.04|0.03|A|F|1992-04-08|1992-05-24|1992-04-18|TAKE BACK RETURN|RAIL|pecial accounts. furiously regular accou| +10923|9197|6698|6|15|16592.85|0.00|0.01|R|F|1992-04-22|1992-03-29|1992-05-20|COLLECT COD|REG AIR|ular, special packages. unus| +10924|89770|7295|1|15|26396.55|0.08|0.08|N|O|1997-01-06|1996-12-13|1997-01-09|DELIVER IN PERSON|SHIP|furiously final foxes acros| +10924|160513|5546|2|15|23602.65|0.06|0.01|N|O|1996-10-15|1996-11-25|1996-11-05|TAKE BACK RETURN|TRUCK| furiously even requests. thinly bol| +10925|119392|9393|1|50|70569.50|0.01|0.05|N|O|1996-11-05|1996-10-27|1996-11-12|NONE|AIR|osits could have to are carefully fi| +10925|14461|1965|2|1|1375.46|0.07|0.05|N|O|1996-10-06|1996-11-18|1996-10-20|NONE|REG AIR| quickly even depo| +10926|153622|3623|1|31|51944.22|0.00|0.01|R|F|1994-02-07|1994-01-01|1994-02-23|DELIVER IN PERSON|MAIL|d gifts are ironically fluffy, ironic reque| +10926|108567|3588|2|15|23633.40|0.10|0.02|A|F|1994-01-18|1993-12-17|1994-02-09|TAKE BACK RETURN|RAIL|ct blithely among the slyly ironic foxes.| +10926|85501|8010|3|11|16351.50|0.03|0.06|R|F|1993-11-20|1993-12-25|1993-11-26|COLLECT COD|AIR|elets-- special requests wake ab| +10926|13298|8301|4|9|10901.61|0.06|0.02|R|F|1994-02-14|1994-01-19|1994-03-16|TAKE BACK RETURN|RAIL|fully pending requests| +10927|61437|1438|1|30|41952.90|0.04|0.02|R|F|1994-09-04|1994-07-26|1994-09-08|NONE|REG AIR|eas use among the decoys. carefully spec| +10952|10368|369|1|8|10226.88|0.03|0.02|A|F|1993-07-22|1993-09-11|1993-07-29|DELIVER IN PERSON|REG AIR|. bold theodolites across the silent, ir| +10952|39904|7414|2|48|88507.20|0.06|0.05|A|F|1993-10-02|1993-08-31|1993-10-12|DELIVER IN PERSON|REG AIR|s detect. furio| +10952|59308|4319|3|38|48157.40|0.02|0.01|R|F|1993-07-25|1993-08-26|1993-08-03|DELIVER IN PERSON|REG AIR|en deposits use qui| +10953|175220|7738|1|7|9066.54|0.09|0.07|R|F|1995-02-24|1995-01-24|1995-03-15|DELIVER IN PERSON|SHIP|integrate above the c| +10953|110067|7601|2|38|40928.28|0.00|0.05|R|F|1995-01-10|1995-01-17|1995-02-06|NONE|RAIL|efully regular packages above the quic| +10953|81258|1259|3|12|14871.00|0.01|0.02|A|F|1994-12-12|1995-02-25|1995-01-11|COLLECT COD|AIR|lly regular excuses use ironic pa| +10953|86640|4165|4|3|4879.92|0.06|0.05|A|F|1995-01-12|1995-02-15|1995-01-30|DELIVER IN PERSON|RAIL|ly regular pinto bea| +10953|145641|5642|5|49|82645.36|0.06|0.06|A|F|1995-03-27|1995-02-14|1995-04-01|NONE|FOB|ts sleep furiously. ideas about the| +10953|175612|647|6|35|59066.35|0.00|0.07|A|F|1995-02-14|1995-01-13|1995-02-15|TAKE BACK RETURN|FOB|ully bold pinto beans. carefully regu| +10953|96703|6704|7|30|50991.00|0.07|0.05|R|F|1994-12-27|1995-01-22|1995-01-25|NONE|REG AIR|riously express instruc| +10954|78685|6207|1|47|78192.96|0.04|0.00|N|O|1998-05-06|1998-05-06|1998-06-01|COLLECT COD|TRUCK|n about the furiously perman| +10954|50015|5026|2|20|19300.20|0.09|0.05|N|O|1998-04-06|1998-05-24|1998-04-23|COLLECT COD|AIR|t alongside of the accounts. | +10954|186877|6878|3|42|82482.54|0.09|0.02|N|O|1998-03-28|1998-04-12|1998-04-12|TAKE BACK RETURN|RAIL|ts. quickly even theodolites sleep.| +10955|117266|9778|1|16|20532.16|0.04|0.07|R|F|1993-09-20|1993-11-20|1993-10-17|COLLECT COD|MAIL|al, ironic accounts. | +10956|171100|3618|1|22|25764.20|0.02|0.08|N|O|1998-01-31|1998-02-02|1998-02-01|COLLECT COD|MAIL|s haggle quickly among the slyly un| +10956|75055|70|2|44|45322.20|0.08|0.08|N|O|1998-03-10|1998-03-11|1998-03-27|NONE|RAIL|ts. regular i| +10956|43904|1417|3|3|5543.70|0.02|0.00|N|O|1998-04-05|1998-03-05|1998-04-13|NONE|TRUCK|hely bold accounts affix at the slyly fina| +10956|94417|6927|4|13|18348.33|0.00|0.04|N|O|1998-02-23|1998-03-17|1998-03-07|COLLECT COD|RAIL|eans after t| +10956|59276|1782|5|48|59292.96|0.01|0.03|N|O|1998-03-05|1998-02-02|1998-04-01|DELIVER IN PERSON|MAIL|ets. ironic dependencies| +10957|77240|7241|1|16|19475.84|0.03|0.01|N|O|1996-12-21|1996-12-27|1997-01-07|TAKE BACK RETURN|SHIP|would nag caref| +10957|168372|5921|2|37|53293.69|0.00|0.07|N|O|1996-11-02|1996-12-09|1996-11-14|NONE|TRUCK|y ironic pearls. bo| +10957|21961|4464|3|30|56488.80|0.05|0.03|N|O|1996-11-06|1996-12-19|1996-12-05|TAKE BACK RETURN|AIR| quickly regular| +10957|82113|7130|4|27|29567.97|0.01|0.02|N|O|1997-01-31|1996-12-12|1997-02-05|COLLECT COD|MAIL|nstructions haggle slyly | +10957|59646|9647|5|1|1605.64|0.01|0.06|N|O|1997-01-06|1996-12-31|1997-02-01|DELIVER IN PERSON|FOB|mptotes promise carefully across the id| +10957|67884|7885|6|22|40741.36|0.08|0.07|N|O|1996-11-24|1997-01-05|1996-11-25|TAKE BACK RETURN|REG AIR|ckly pending excuse| +10958|768|769|1|8|13350.08|0.00|0.01|N|O|1996-09-30|1996-09-19|1996-10-09|NONE|REG AIR|al sheaves? carefully| +10958|105577|598|2|4|6330.28|0.09|0.00|N|O|1996-08-24|1996-09-24|1996-08-26|TAKE BACK RETURN|FOB|n deposits sleep| +10959|132331|7358|1|35|47716.55|0.01|0.06|R|F|1994-10-25|1994-08-29|1994-11-09|NONE|MAIL|y final dolphins. furiously pendi| +10959|85556|3081|2|38|58578.90|0.01|0.02|R|F|1994-08-03|1994-10-12|1994-09-01|COLLECT COD|TRUCK| bold depths; silent de| +10959|134794|2334|3|30|54863.70|0.00|0.01|R|F|1994-11-19|1994-10-17|1994-11-30|TAKE BACK RETURN|AIR|eodolites use slyly finall| +10984|140080|81|1|45|50403.60|0.01|0.07|A|F|1994-05-06|1994-04-08|1994-05-27|DELIVER IN PERSON|MAIL|hes nag blithely b| +10984|109111|9112|2|6|6720.66|0.05|0.02|R|F|1994-03-23|1994-04-18|1994-04-13|NONE|AIR|ackages wake among the accoun| +10984|14888|9891|3|23|41466.24|0.07|0.03|A|F|1994-03-13|1994-05-07|1994-04-04|NONE|RAIL|ackages. furiously ironic | +10984|6712|4213|4|47|76079.37|0.07|0.02|A|F|1994-07-07|1994-05-10|1994-07-08|DELIVER IN PERSON|MAIL|lly silent deposits along| +10985|94072|9091|1|5|5330.35|0.04|0.08|R|F|1993-02-04|1993-03-14|1993-02-05|TAKE BACK RETURN|REG AIR| slyly sly requests. blithely bold t| +10985|62574|5081|2|42|64535.94|0.03|0.03|R|F|1993-01-29|1993-04-21|1993-02-03|COLLECT COD|TRUCK|rding to the bold requests. special theo| +10985|73989|1511|3|46|90297.08|0.09|0.01|R|F|1993-02-07|1993-04-05|1993-02-18|TAKE BACK RETURN|FOB|frays print carefully blithely ironi| +10985|125870|895|4|18|34125.66|0.00|0.06|R|F|1993-03-31|1993-03-09|1993-04-09|DELIVER IN PERSON|AIR| are blithely among the reg| +10985|94579|9598|5|7|11014.99|0.08|0.08|A|F|1993-04-28|1993-03-17|1993-05-03|COLLECT COD|SHIP|cies sleep carefully e| +10986|75533|3055|1|8|12068.24|0.04|0.01|R|F|1995-02-26|1995-04-03|1995-03-15|DELIVER IN PERSON|RAIL|s. dependencies affix car| +10986|81857|4366|2|23|42293.55|0.06|0.07|R|F|1995-02-16|1995-02-05|1995-02-20|NONE|MAIL|s. furiously final accounts boost quic| +10987|16968|1971|1|24|45239.04|0.10|0.07|N|O|1995-10-26|1995-10-22|1995-10-28|COLLECT COD|SHIP|eodolites! special| +10987|174903|9938|2|50|98895.00|0.07|0.06|N|O|1995-08-05|1995-10-18|1995-09-04|DELIVER IN PERSON|AIR|ke slyly around the | +10987|194563|2121|3|2|3315.12|0.08|0.00|N|O|1995-07-31|1995-09-24|1995-08-12|TAKE BACK RETURN|AIR|structions wake. slyly final foxes boo| +10987|4152|6653|4|33|34852.95|0.03|0.02|N|O|1995-11-24|1995-10-19|1995-11-29|NONE|FOB|hinder quickly regular packages. s| +10987|170638|5673|5|49|83722.87|0.03|0.00|N|O|1995-09-24|1995-09-29|1995-10-04|COLLECT COD|SHIP|counts wake slyly slyly close accounts| +10987|99421|6949|6|19|26987.98|0.00|0.04|N|O|1995-08-12|1995-10-11|1995-08-27|COLLECT COD|SHIP|lly along the blithely final | +10987|162627|5144|7|41|69274.42|0.02|0.00|N|O|1995-09-05|1995-09-15|1995-09-24|TAKE BACK RETURN|TRUCK|pinto bean| +10988|59284|6800|1|44|54704.32|0.06|0.01|N|O|1997-11-03|1997-10-15|1997-11-18|COLLECT COD|SHIP|egrate around the bold i| +10988|172698|7733|2|44|77910.36|0.09|0.02|N|O|1997-12-02|1997-11-23|1997-12-23|TAKE BACK RETURN|AIR|l accounts. final accounts integrate closel| +10988|126250|3787|3|13|16591.25|0.09|0.01|N|O|1997-10-30|1997-10-21|1997-11-02|NONE|AIR|ld requests wake quickly ironic packages. | +10988|69116|4129|4|39|42319.29|0.06|0.01|N|O|1997-11-24|1997-11-27|1997-12-01|NONE|TRUCK|iously ironic accounts.| +10988|32455|2456|5|39|54110.55|0.03|0.05|N|O|1997-11-24|1997-11-14|1997-11-29|COLLECT COD|TRUCK|aggle carefully | +10988|59917|7433|6|43|80707.13|0.10|0.08|N|O|1997-10-27|1997-10-14|1997-11-03|NONE|MAIL|ly bold deposits. ironic, even fox| +10988|23004|3005|7|19|17613.00|0.04|0.08|N|O|1997-12-08|1997-11-13|1998-01-06|DELIVER IN PERSON|TRUCK|y. carefully special dep| +10989|26339|1344|1|35|44286.55|0.09|0.04|A|F|1992-03-04|1992-02-07|1992-03-10|NONE|TRUCK|y express theodolites wake carefully a| +10990|108988|8989|1|11|21966.78|0.08|0.04|N|O|1998-02-22|1998-01-28|1998-03-02|COLLECT COD|TRUCK|into beans haggle blithe| +10990|147951|466|2|12|23987.40|0.03|0.02|N|O|1998-01-03|1998-03-16|1998-01-11|TAKE BACK RETURN|MAIL|. blithe accounts| +10990|8401|8402|3|2|2618.80|0.09|0.03|N|O|1997-12-28|1998-03-08|1998-01-27|COLLECT COD|SHIP|r the slyly| +10990|194381|1939|4|16|23606.08|0.01|0.07|N|O|1998-01-28|1998-02-17|1998-02-16|TAKE BACK RETURN|RAIL|ions according to the f| +10990|152452|2453|5|11|16548.95|0.03|0.07|N|O|1998-02-04|1998-03-12|1998-02-18|COLLECT COD|FOB| nag final instru| +10990|45981|3494|6|44|84787.12|0.04|0.07|N|O|1998-02-08|1998-02-19|1998-02-18|NONE|AIR|leep around the unusual asymptotes. | +10990|191922|1923|7|41|82570.72|0.01|0.07|N|O|1998-01-01|1998-03-04|1998-01-02|COLLECT COD|FOB|structions wake blithel| +10991|26476|1481|1|34|47683.98|0.01|0.02|R|F|1995-04-09|1995-05-14|1995-04-30|TAKE BACK RETURN|TRUCK|nts haggle carefully furiously pend| +10991|181129|1130|2|23|27832.76|0.03|0.06|A|F|1995-05-20|1995-04-19|1995-05-29|COLLECT COD|AIR|fluffily pending accou| +10991|24385|4386|3|36|47137.68|0.02|0.03|R|F|1995-04-14|1995-03-17|1995-04-15|TAKE BACK RETURN|MAIL|e slyly special platelets. fu| +10991|35454|5455|4|50|69472.50|0.01|0.03|A|F|1995-06-02|1995-03-28|1995-06-14|DELIVER IN PERSON|REG AIR|er the furiously careful accou| +11016|22038|9545|1|48|46081.44|0.09|0.07|N|O|1998-09-02|1998-09-26|1998-09-24|NONE|FOB|fully alongs| +11016|189694|9695|2|50|89184.50|0.03|0.05|N|O|1998-09-21|1998-09-24|1998-10-11|COLLECT COD|RAIL|ss the ironic packages. furiously| +11017|146535|9050|1|46|72750.38|0.05|0.05|A|F|1993-11-27|1993-10-16|1993-12-02|COLLECT COD|SHIP| slyly ironic deposits | +11017|8001|5502|2|13|11817.00|0.05|0.01|A|F|1993-09-06|1993-10-10|1993-09-21|TAKE BACK RETURN|MAIL|ld platelets are ruthl| +11017|61750|1751|3|31|53064.25|0.10|0.02|A|F|1993-08-20|1993-10-30|1993-08-24|DELIVER IN PERSON|AIR| ideas. furiously ironic theodolites cajole| +11017|22817|7822|4|21|36536.01|0.10|0.01|R|F|1993-09-22|1993-10-09|1993-10-22|TAKE BACK RETURN|SHIP|regular dep| +11017|69805|4818|5|48|85190.40|0.03|0.03|R|F|1993-11-20|1993-09-28|1993-11-30|COLLECT COD|AIR|lar deposits. instructions haggle| +11017|199395|1915|6|27|40348.53|0.10|0.08|A|F|1993-10-13|1993-10-10|1993-10-25|TAKE BACK RETURN|REG AIR|refully ironic pac| +11018|28674|1177|1|31|49682.77|0.06|0.08|N|O|1996-01-01|1996-03-11|1996-01-30|NONE|MAIL|nt accounts sublate qu| +11018|112105|4617|2|34|37981.40|0.06|0.05|N|O|1996-02-10|1996-02-12|1996-03-07|COLLECT COD|FOB|packages may sublate carefully a| +11019|183087|8124|1|46|53823.68|0.08|0.01|A|F|1995-04-27|1995-05-27|1995-05-01|DELIVER IN PERSON|SHIP| hinder alongside of t| +11019|133503|3504|2|31|47631.50|0.04|0.07|N|O|1995-07-01|1995-05-15|1995-07-12|NONE|RAIL|lyly even deposits. deposits affix carefull| +11020|199912|2432|1|46|92547.86|0.10|0.08|R|F|1992-11-14|1992-10-18|1992-12-02|COLLECT COD|REG AIR| slyly final platelets br| +11020|119217|1729|2|18|22251.78|0.00|0.08|A|F|1992-09-04|1992-10-28|1992-09-08|NONE|MAIL|uriously along the unusual theodolites. | +11020|71718|6733|3|15|25345.65|0.02|0.02|R|F|1992-08-09|1992-09-01|1992-09-01|TAKE BACK RETURN|TRUCK|es boost carefully.| +11021|151616|1617|1|13|21678.93|0.05|0.07|A|F|1993-01-05|1993-01-12|1993-01-25|DELIVER IN PERSON|FOB|ly ironic pinto beans are final accounts| +11021|8564|6065|2|48|70682.88|0.10|0.08|A|F|1992-12-31|1993-01-04|1993-01-06|TAKE BACK RETURN|REG AIR|egular packages sleep fi| +11021|131112|6139|3|11|12574.21|0.01|0.02|R|F|1992-11-27|1992-12-26|1992-12-06|NONE|AIR|nal accounts across the fur| +11021|191440|6479|4|49|75040.56|0.05|0.03|R|F|1992-11-23|1993-01-04|1992-11-24|DELIVER IN PERSON|SHIP| packages. quickly pending theodolite| +11021|119530|7064|5|30|46485.90|0.00|0.01|A|F|1993-02-08|1992-12-27|1993-02-27|TAKE BACK RETURN|TRUCK|ages haggle. unu| +11021|136973|6974|6|10|20099.70|0.09|0.01|A|F|1992-12-30|1993-01-17|1993-01-17|NONE|SHIP|blithely-- courts wake slyly id| +11022|4571|4572|1|27|39840.39|0.09|0.01|N|O|1998-02-12|1998-01-27|1998-03-07|TAKE BACK RETURN|TRUCK|pecial foxes maintain. deposits wake | +11022|23419|5922|2|39|52353.99|0.08|0.07|N|O|1998-01-09|1997-12-23|1998-01-14|COLLECT COD|AIR| slyly pend| +11023|16695|1698|1|23|37068.87|0.08|0.00|A|F|1994-10-10|1994-11-18|1994-10-16|NONE|RAIL|the slyly final instructions. plat| +11023|181022|1023|2|31|34193.62|0.00|0.07|R|F|1994-10-19|1994-11-19|1994-11-16|COLLECT COD|AIR|ajole fluf| +11023|27675|7676|3|17|27245.39|0.08|0.01|A|F|1994-11-28|1994-10-19|1994-12-09|COLLECT COD|REG AIR|final packages | +11023|121277|8814|4|17|22070.59|0.02|0.04|R|F|1994-11-16|1994-11-20|1994-11-19|TAKE BACK RETURN|TRUCK|of the furiously even deposits wake carefu| +11023|101182|8713|5|41|48510.38|0.08|0.01|R|F|1994-12-05|1994-11-15|1994-12-25|COLLECT COD|SHIP|st. slyly unusual deposits cajole furiously| +11023|156795|4341|6|28|51850.12|0.04|0.08|R|F|1994-09-18|1994-10-29|1994-09-21|COLLECT COD|REG AIR|deas wake slyly along the fu| +11023|38024|3031|7|44|42328.88|0.01|0.05|A|F|1994-10-19|1994-11-11|1994-11-14|NONE|SHIP|al, even excuses. requests are furiou| +11048|55090|101|1|42|43893.78|0.08|0.04|A|F|1993-09-12|1993-11-30|1993-10-12|COLLECT COD|RAIL|ts detect slyly exp| +11049|68677|8678|1|35|57598.45|0.02|0.08|N|O|1997-02-26|1997-01-22|1997-03-18|DELIVER IN PERSON|RAIL|about the slyly fi| +11049|40186|187|2|22|24775.96|0.07|0.08|N|O|1996-11-27|1997-01-13|1996-12-12|DELIVER IN PERSON|FOB| detect regularly | +11049|199346|9347|3|47|67930.98|0.07|0.03|N|O|1996-12-05|1997-02-01|1996-12-26|TAKE BACK RETURN|RAIL|ts affix. close, stealth| +11049|7852|5353|4|38|66874.30|0.00|0.08|N|O|1996-11-26|1997-01-23|1996-12-26|COLLECT COD|RAIL|y silent requests eat unusual account| +11049|166093|3642|5|5|5795.45|0.09|0.02|N|O|1996-12-21|1997-01-27|1997-01-09|DELIVER IN PERSON|FOB| pinto beans haggle. blithely final depo| +11050|162628|2629|1|2|3381.24|0.04|0.03|N|O|1998-04-16|1998-03-31|1998-05-05|TAKE BACK RETURN|TRUCK|eposits. ironic| +11050|72468|7483|2|10|14404.60|0.00|0.08|N|O|1998-03-20|1998-05-06|1998-03-31|NONE|MAIL|slyly ironic, thin platel| +11051|74365|6873|1|44|58931.84|0.09|0.08|R|F|1993-03-28|1993-01-18|1993-04-11|NONE|REG AIR|accounts may sleep| +11052|105050|5051|1|47|49587.35|0.00|0.08|N|O|1998-05-05|1998-04-27|1998-05-30|DELIVER IN PERSON|TRUCK|ve the unusual excuses. regular, unu| +11052|170458|459|2|39|59609.55|0.09|0.08|N|O|1998-05-17|1998-05-15|1998-05-20|COLLECT COD|AIR|posits wake b| +11052|80897|898|3|10|18778.90|0.02|0.04|N|O|1998-05-24|1998-04-09|1998-06-02|TAKE BACK RETURN|REG AIR|heodolites. ironically regular accounts na| +11052|26654|6655|4|49|77451.85|0.00|0.02|N|O|1998-03-27|1998-04-23|1998-04-16|COLLECT COD|REG AIR|ts across the final requests haggle quietly| +11053|88795|1304|1|33|58865.07|0.03|0.00|N|O|1998-02-23|1998-03-02|1998-03-14|TAKE BACK RETURN|MAIL|e the silent, unusual Tiresias-- pinto bean| +11053|163788|3789|2|37|68515.86|0.03|0.05|N|O|1998-01-17|1998-02-27|1998-01-31|TAKE BACK RETURN|REG AIR| special packages doubt blithe| +11053|171181|1182|3|18|22539.24|0.00|0.08|N|O|1998-01-20|1998-02-18|1998-01-27|TAKE BACK RETURN|REG AIR| warthogs sleep | +11053|37704|7705|4|9|14775.30|0.10|0.03|N|O|1998-02-01|1998-02-24|1998-02-14|DELIVER IN PERSON|MAIL|packages. theodolites are slyly al| +11053|88198|8199|5|34|40330.46|0.05|0.00|N|O|1998-03-22|1998-03-16|1998-04-03|COLLECT COD|SHIP|ress frays. u| +11054|150474|2990|1|49|74699.03|0.07|0.00|N|O|1998-06-04|1998-07-23|1998-06-14|DELIVER IN PERSON|MAIL|s. quickly final packages wake ca| +11054|14555|4556|2|23|33799.65|0.07|0.00|N|O|1998-05-02|1998-06-16|1998-06-01|TAKE BACK RETURN|RAIL| fluffy ideas. slyly regular deposi| +11054|15369|2873|3|25|32109.00|0.06|0.03|N|O|1998-06-21|1998-07-12|1998-07-19|COLLECT COD|REG AIR|l, even platelets nag q| +11055|52424|2425|1|17|23399.14|0.09|0.08|R|F|1994-12-10|1994-12-10|1994-12-26|COLLECT COD|FOB|sleep quiet| +11055|89912|4929|2|10|19019.10|0.08|0.08|A|F|1994-10-21|1994-11-28|1994-11-20|TAKE BACK RETURN|FOB|re furiously| +11080|27812|2817|1|48|83510.88|0.05|0.07|A|F|1992-07-24|1992-07-19|1992-08-01|COLLECT COD|TRUCK| the quickly final a| +11080|22385|2386|2|20|26147.60|0.02|0.04|A|F|1992-06-14|1992-07-09|1992-06-27|DELIVER IN PERSON|AIR|xpress requests doze furiously.| +11080|15344|7846|3|45|56670.30|0.01|0.07|R|F|1992-08-08|1992-06-29|1992-08-12|TAKE BACK RETURN|FOB| special, fi| +11080|82505|5014|4|37|55037.50|0.05|0.04|A|F|1992-08-17|1992-06-10|1992-09-06|NONE|REG AIR|lent, regular excuses; ironic grouches | +11081|102943|474|1|11|21405.34|0.07|0.02|A|F|1995-03-06|1995-03-08|1995-04-05|COLLECT COD|SHIP|epths haggl| +11081|161741|4258|2|1|1802.74|0.06|0.04|A|F|1995-04-28|1995-01-28|1995-05-09|COLLECT COD|TRUCK|es. final, final deposits | +11081|170605|3123|3|40|67024.00|0.03|0.03|R|F|1995-01-22|1995-02-27|1995-02-03|NONE|REG AIR|wind regular requests. slyly ironic| +11081|157132|4678|4|5|5945.65|0.03|0.04|A|F|1995-01-12|1995-01-30|1995-02-08|COLLECT COD|AIR| to the express packages. furiously ironi| +11081|109286|4307|5|46|59582.88|0.03|0.07|R|F|1995-02-28|1995-02-13|1995-03-19|DELIVER IN PERSON|RAIL| even accounts. slyly bold| +11082|84369|9386|1|37|50074.32|0.10|0.02|R|F|1995-05-15|1995-04-03|1995-06-01|DELIVER IN PERSON|RAIL|olphins affix around th| +11082|187096|7097|2|50|59154.50|0.05|0.00|A|F|1995-05-15|1995-03-11|1995-06-09|TAKE BACK RETURN|MAIL|nos above the pending pinto beans doubt sly| +11082|110997|3509|3|19|38151.81|0.06|0.08|R|F|1995-01-31|1995-04-09|1995-02-14|COLLECT COD|AIR|lar packages boost sl| +11082|123686|1223|4|2|3419.36|0.02|0.08|A|F|1995-05-17|1995-03-14|1995-06-15|DELIVER IN PERSON|REG AIR|ons cajole carefully slyl| +11082|175044|2596|5|24|26856.96|0.01|0.07|R|F|1995-02-04|1995-04-20|1995-02-13|TAKE BACK RETURN|SHIP|ar the blithely unusual requests. | +11082|155579|5580|6|13|21249.41|0.06|0.08|R|F|1995-02-24|1995-04-15|1995-03-25|COLLECT COD|TRUCK|ar accounts hagg| +11082|13775|6277|7|36|60795.72|0.09|0.05|R|F|1995-03-30|1995-04-11|1995-04-14|DELIVER IN PERSON|RAIL|uickly bold| +11083|103969|3970|1|27|53269.92|0.07|0.04|A|F|1993-01-27|1993-02-27|1993-02-09|DELIVER IN PERSON|AIR|ly ideas. slyly final deposi| +11083|194509|9548|2|30|48105.00|0.06|0.08|A|F|1992-12-20|1993-03-11|1993-01-13|TAKE BACK RETURN|RAIL|unusual packages. carefully regular | +11083|105866|5867|3|7|13103.02|0.00|0.01|R|F|1993-04-16|1993-02-23|1993-04-26|COLLECT COD|RAIL|ts-- deposits sleep furi| +11083|84236|6745|4|42|51249.66|0.04|0.07|A|F|1993-01-15|1993-02-05|1993-02-04|COLLECT COD|MAIL|tegrate carefully express, regular package| +11084|137961|2988|1|39|77959.44|0.01|0.06|N|O|1998-09-16|1998-09-10|1998-10-09|COLLECT COD|SHIP| fluffily p| +11084|95743|5744|2|16|27819.84|0.10|0.01|N|O|1998-08-09|1998-09-18|1998-08-11|DELIVER IN PERSON|AIR|coys dazzle slyly about | +11084|149281|1796|3|26|34587.28|0.09|0.04|N|O|1998-07-11|1998-09-21|1998-07-19|DELIVER IN PERSON|TRUCK|hely about the slyly quiet request| +11084|164741|9774|4|1|1805.74|0.02|0.06|N|O|1998-10-18|1998-09-02|1998-10-27|NONE|FOB|lites nag behin| +11084|339|2840|5|4|4957.32|0.02|0.08|N|O|1998-06-30|1998-08-20|1998-07-10|TAKE BACK RETURN|MAIL|ly against the furiously unusual foxes| +11084|81757|4266|6|31|53901.25|0.09|0.04|N|O|1998-07-14|1998-08-11|1998-08-05|COLLECT COD|SHIP|press, ironic dependencies nag sl| +11084|77286|4808|7|27|34108.56|0.01|0.05|N|O|1998-10-02|1998-08-15|1998-10-13|DELIVER IN PERSON|RAIL|slyly fluff| +11085|129386|1899|1|22|31138.36|0.09|0.05|N|O|1997-01-11|1996-12-31|1997-01-16|NONE|FOB|g to the final pinto | +11086|9824|4825|1|35|60683.70|0.09|0.03|N|O|1996-01-03|1995-12-22|1996-01-16|COLLECT COD|AIR|y final request| +11086|104208|1739|2|9|10909.80|0.00|0.07|N|O|1995-10-05|1995-11-23|1995-10-09|TAKE BACK RETURN|MAIL|slyly even accounts nag a| +11087|145255|2798|1|6|7801.50|0.02|0.01|N|O|1996-06-13|1996-04-08|1996-07-09|NONE|REG AIR|ly against the quickly regular ide| +11087|98433|943|2|20|28628.60|0.06|0.00|N|O|1996-05-23|1996-05-21|1996-06-09|TAKE BACK RETURN|RAIL| silent platelets affix | +11087|160473|8022|3|5|7667.35|0.01|0.08|N|O|1996-06-30|1996-04-04|1996-07-20|COLLECT COD|REG AIR|al, regular deposit| +11112|164697|7214|1|25|44042.25|0.10|0.02|N|O|1997-01-17|1997-02-06|1997-01-31|DELIVER IN PERSON|TRUCK|al foxes th| +11113|75236|251|1|50|60561.50|0.04|0.06|N|O|1997-03-11|1997-05-13|1997-03-15|TAKE BACK RETURN|MAIL| slyly regular dolphins ca| +11113|84059|1584|2|14|14602.70|0.08|0.04|N|O|1997-05-07|1997-05-12|1997-05-21|TAKE BACK RETURN|RAIL|ar deposits wake carefully acc| +11113|174529|2081|3|36|57726.72|0.05|0.04|N|O|1997-06-25|1997-04-04|1997-07-16|COLLECT COD|SHIP|slyly ironi| +11113|97804|314|4|35|63063.00|0.04|0.07|N|O|1997-04-06|1997-04-28|1997-04-16|DELIVER IN PERSON|REG AIR|tructions cajole blithely final pa| +11113|182244|4763|5|2|2652.48|0.07|0.07|N|O|1997-06-03|1997-05-21|1997-06-25|DELIVER IN PERSON|FOB|ipliers wake thr| +11113|170549|8101|6|21|34010.34|0.02|0.00|N|O|1997-06-14|1997-04-13|1997-07-14|NONE|REG AIR|pendencies-- ironic packages haggle t| +11114|58950|6466|1|16|30543.20|0.08|0.05|A|F|1992-07-03|1992-05-10|1992-07-30|NONE|AIR|uriously c| +11114|157001|2032|2|39|41262.00|0.07|0.06|R|F|1992-05-15|1992-06-20|1992-05-28|COLLECT COD|RAIL|lithely silent courts. carefully final | +11114|106819|6820|3|16|29212.96|0.02|0.03|R|F|1992-04-30|1992-05-14|1992-05-26|COLLECT COD|MAIL|re fluffily quickly regular depen| +11114|102013|7034|4|2|2030.02|0.00|0.03|A|F|1992-07-26|1992-05-29|1992-08-14|NONE|REG AIR| against the iro| +11114|126585|1610|5|5|8057.90|0.10|0.01|A|F|1992-06-25|1992-04-30|1992-06-26|NONE|AIR|s play with the | +11114|107114|7115|6|10|11211.10|0.10|0.03|R|F|1992-06-07|1992-05-20|1992-07-04|COLLECT COD|TRUCK|ounts. furiou| +11115|48826|6339|1|38|67443.16|0.01|0.01|A|F|1993-11-17|1993-10-29|1993-11-24|TAKE BACK RETURN|REG AIR|into beans are after the even, express de| +11115|6560|1561|2|14|20531.84|0.07|0.05|A|F|1993-12-27|1993-11-17|1994-01-06|TAKE BACK RETURN|TRUCK|eful ideas cajole again| +11115|46109|8614|3|30|31653.00|0.10|0.03|A|F|1993-11-27|1993-11-24|1993-12-10|COLLECT COD|RAIL|y pending dolphins are quickly by the| +11115|142375|4890|4|9|12756.33|0.07|0.02|R|F|1994-01-08|1993-12-07|1994-01-29|COLLECT COD|MAIL|ckages wake care| +11115|90832|3342|5|49|89318.67|0.06|0.08|A|F|1993-10-16|1993-12-09|1993-10-28|TAKE BACK RETURN|REG AIR|ess requests haggl| +11115|6629|6630|6|39|59889.18|0.01|0.02|A|F|1994-01-10|1993-10-26|1994-02-04|TAKE BACK RETURN|TRUCK|otes sleep alongside of the accoun| +11116|195832|8352|1|49|94463.67|0.09|0.08|N|O|1997-11-20|1998-01-15|1997-12-12|TAKE BACK RETURN|AIR|lithely unus| +11116|132265|9805|2|1|1297.26|0.01|0.04|N|O|1997-11-22|1997-12-04|1997-11-27|TAKE BACK RETURN|FOB|ns according to the special| +11117|60799|3306|1|50|87989.50|0.01|0.08|A|F|1992-07-27|1992-06-21|1992-08-18|NONE|SHIP|gside of the blithe| +11117|48256|761|2|42|50578.50|0.10|0.02|A|F|1992-08-03|1992-05-15|1992-08-19|DELIVER IN PERSON|AIR|pending as| +11118|17858|7859|1|11|19534.35|0.10|0.04|R|F|1995-01-15|1995-03-21|1995-02-11|TAKE BACK RETURN|AIR|carefully spe| +11118|124776|9801|2|34|61226.18|0.05|0.05|A|F|1995-01-22|1995-03-13|1995-02-13|DELIVER IN PERSON|TRUCK|re carefully above the ironic, | +11118|104094|4095|3|34|37335.06|0.04|0.01|A|F|1995-03-07|1995-02-03|1995-03-14|NONE|SHIP|yly final deposits slee| +11118|99129|1639|4|30|33843.60|0.01|0.07|A|F|1995-04-11|1995-03-28|1995-04-16|COLLECT COD|AIR|ular water| +11119|137046|2073|1|15|16245.60|0.05|0.08|A|F|1995-03-13|1995-03-22|1995-03-25|TAKE BACK RETURN|SHIP|ts. final deposits are carefu| +11119|131261|1262|2|16|20676.16|0.08|0.07|R|F|1995-02-24|1995-03-16|1995-03-06|COLLECT COD|SHIP|ar asymptotes cajole pending req| +11119|93885|6395|3|33|62003.04|0.01|0.02|A|F|1995-03-22|1995-03-27|1995-04-08|NONE|MAIL|s haggle daringly express instructions.| +11119|122215|2216|4|2|2474.42|0.02|0.02|A|F|1995-04-27|1995-02-01|1995-05-03|COLLECT COD|MAIL|the ironic, even requests. silent asympto| +11144|16035|8537|1|6|5706.18|0.03|0.00|N|O|1996-03-14|1996-02-16|1996-04-12|COLLECT COD|SHIP|cingly final platelets print slyly qui| +11144|92370|2371|2|4|5449.48|0.01|0.05|N|O|1996-02-28|1996-02-04|1996-03-25|TAKE BACK RETURN|FOB|e blithely. carefully regular packages use| +11144|53917|3918|3|48|89803.68|0.05|0.00|N|O|1996-01-07|1996-01-26|1996-01-12|COLLECT COD|FOB|beans. slyly regular packages wake. care| +11144|170300|7852|4|30|41109.00|0.01|0.01|N|O|1996-03-10|1996-01-13|1996-03-31|TAKE BACK RETURN|MAIL| according to the closely | +11145|128001|3026|1|35|36015.00|0.01|0.06|R|F|1994-11-18|1994-12-10|1994-12-04|DELIVER IN PERSON|FOB|regular requests integr| +11146|189259|1778|1|28|37751.00|0.05|0.07|A|F|1994-09-23|1994-11-07|1994-10-11|TAKE BACK RETURN|RAIL|tly final deposits. slyly sp| +11146|74190|9205|2|2|2328.38|0.07|0.00|R|F|1994-11-23|1994-10-22|1994-12-16|NONE|REG AIR|nt courts after the quietly special id| +11146|109083|6614|3|15|16381.20|0.09|0.03|R|F|1994-09-02|1994-10-22|1994-09-15|COLLECT COD|SHIP|the final instru| +11147|190967|8525|1|3|6173.88|0.05|0.06|A|F|1992-03-30|1992-03-14|1992-04-29|COLLECT COD|SHIP|e even, even | +11147|179514|9515|2|8|12748.08|0.07|0.04|A|F|1992-03-30|1992-03-12|1992-04-22|DELIVER IN PERSON|RAIL|regular, pending accounts.| +11147|88608|1117|3|36|57477.60|0.07|0.04|R|F|1992-04-13|1992-02-09|1992-04-16|COLLECT COD|AIR|requests sublate alongside of the | +11147|33190|700|4|12|13478.28|0.01|0.03|A|F|1992-05-01|1992-03-17|1992-05-25|DELIVER IN PERSON|MAIL|ending cour| +11147|14082|9085|5|6|5976.48|0.10|0.08|A|F|1992-01-26|1992-02-21|1992-01-31|TAKE BACK RETURN|REG AIR|posits. packages wake around the ironic dep| +11148|32389|4893|1|31|40962.78|0.09|0.03|N|O|1995-07-05|1995-07-28|1995-08-03|DELIVER IN PERSON|TRUCK| carefully even requ| +11148|157875|391|2|7|13530.09|0.05|0.01|N|O|1995-08-10|1995-08-10|1995-08-19|NONE|REG AIR|ounts among the final, regular| +11148|2903|5404|3|33|59594.70|0.05|0.05|N|O|1995-06-27|1995-08-01|1995-07-14|TAKE BACK RETURN|MAIL|the carefully pending requests. fina| +11148|183073|8110|4|2|2312.14|0.08|0.02|R|F|1995-06-11|1995-07-04|1995-06-15|NONE|REG AIR|hes among the even theodol| +11149|189133|9134|1|46|56217.98|0.04|0.07|N|O|1997-12-09|1998-02-02|1997-12-14|DELIVER IN PERSON|REG AIR|ic theodolites a| +11149|149735|2250|2|27|48187.71|0.01|0.01|N|O|1997-12-13|1998-01-12|1998-01-05|COLLECT COD|REG AIR|s sleep. furiously ironic ideas cajole acr| +11149|186952|1989|3|18|36701.10|0.03|0.06|N|O|1997-11-23|1998-01-01|1997-12-03|DELIVER IN PERSON|TRUCK|ges. quickly pending dependenci| +11149|93740|3741|4|41|71083.34|0.09|0.01|N|O|1997-11-23|1997-12-27|1997-12-16|COLLECT COD|RAIL|dencies. a| +11149|83517|8534|5|37|55518.87|0.10|0.04|N|O|1997-12-06|1998-01-30|1998-01-02|TAKE BACK RETURN|TRUCK|bove the regular, final accounts| +11149|61868|6881|6|45|82343.70|0.08|0.00|N|O|1997-12-05|1998-02-03|1997-12-13|COLLECT COD|FOB| ironic packages. regular t| +11150|5167|168|1|22|23587.52|0.09|0.07|N|O|1995-07-08|1995-05-21|1995-07-21|DELIVER IN PERSON|REG AIR|t slyly final, exp| +11150|38304|3311|2|17|21119.10|0.10|0.03|N|O|1995-08-01|1995-05-19|1995-08-06|TAKE BACK RETURN|RAIL|egularly quickly ironic packages. slyly | +11150|166118|6119|3|12|14209.32|0.08|0.05|N|F|1995-06-12|1995-05-30|1995-06-26|COLLECT COD|REG AIR|uriously pending requests. regular ti| +11150|142095|2096|4|2|2274.18|0.00|0.07|R|F|1995-04-25|1995-05-17|1995-04-30|TAKE BACK RETURN|SHIP|olites? quickly special re| +11150|188751|3788|5|7|12878.25|0.04|0.04|N|O|1995-07-09|1995-06-08|1995-07-29|DELIVER IN PERSON|FOB|s haggle ruthlessly. fluffil| +11150|129821|7358|6|25|46270.50|0.03|0.01|N|O|1995-07-24|1995-05-27|1995-08-18|COLLECT COD|FOB|ly unusual p| +11150|86410|1427|7|17|23738.97|0.07|0.04|A|F|1995-05-03|1995-06-30|1995-05-12|DELIVER IN PERSON|RAIL|l ideas. quickly bold accounts hag| +11151|88302|5827|1|29|37418.70|0.01|0.03|A|F|1993-10-31|1994-01-21|1993-11-28|COLLECT COD|TRUCK|, final packages grow | +11176|89344|4361|1|44|58666.96|0.04|0.06|A|F|1995-01-23|1995-01-04|1995-01-25|TAKE BACK RETURN|AIR|nic ideas was furiously un| +11176|195801|3359|2|12|22761.60|0.04|0.07|A|F|1994-12-07|1995-01-18|1995-01-02|TAKE BACK RETURN|MAIL|c deposits across the requests| +11176|19611|2113|3|46|70408.06|0.06|0.05|R|F|1995-01-03|1995-01-01|1995-01-25|COLLECT COD|REG AIR|osits. asym| +11176|195945|5946|4|8|16327.52|0.09|0.02|A|F|1994-12-03|1995-01-26|1994-12-12|COLLECT COD|TRUCK|egular asymptotes. carefully fina| +11176|34955|9962|5|43|81267.85|0.00|0.05|A|F|1995-02-26|1995-01-18|1995-03-09|DELIVER IN PERSON|MAIL|ously. slyly even packages sle| +11176|88278|5803|6|15|18994.05|0.03|0.06|R|F|1995-01-06|1995-01-31|1995-01-26|DELIVER IN PERSON|RAIL|ic excuses. blithely final reque| +11177|149122|6665|1|2|2342.24|0.10|0.07|R|F|1992-08-13|1992-08-12|1992-08-23|DELIVER IN PERSON|REG AIR|ironic deposi| +11177|78486|6008|2|12|17573.76|0.04|0.01|A|F|1992-11-01|1992-09-23|1992-11-05|DELIVER IN PERSON|MAIL|re furiously; sl| +11177|101161|6182|3|42|48810.72|0.04|0.03|R|F|1992-11-04|1992-09-20|1992-11-27|NONE|REG AIR|ven, final gifts use regul| +11177|9172|6673|4|41|44327.97|0.02|0.03|A|F|1992-08-20|1992-08-23|1992-09-01|DELIVER IN PERSON|RAIL|egular asymptotes. | +11177|150395|2911|5|26|37580.14|0.10|0.00|R|F|1992-10-01|1992-08-24|1992-10-21|COLLECT COD|TRUCK| furiously. deposits boost sometime| +11177|84615|7124|6|41|65584.01|0.05|0.08|R|F|1992-09-15|1992-08-30|1992-09-17|COLLECT COD|MAIL| closely ruthless deposits hagg| +11178|38462|3469|1|29|40613.34|0.10|0.08|A|F|1993-07-29|1993-08-03|1993-08-04|COLLECT COD|REG AIR|bove the furious| +11178|27073|4580|2|40|40002.80|0.00|0.03|R|F|1993-10-03|1993-09-06|1993-10-27|NONE|SHIP|ts. close packages among the ideas sleep| +11178|5911|3412|3|45|81760.95|0.06|0.04|A|F|1993-07-05|1993-08-25|1993-07-08|TAKE BACK RETURN|MAIL|usual platelets. special epitaphs hag| +11178|140450|5479|4|34|50675.30|0.05|0.08|A|F|1993-09-05|1993-08-16|1993-10-02|COLLECT COD|REG AIR|ronic idea| +11178|132564|2565|5|22|35124.32|0.10|0.07|A|F|1993-09-10|1993-09-01|1993-09-13|DELIVER IN PERSON|FOB|es along the sl| +11178|1256|6257|6|48|55548.00|0.07|0.05|A|F|1993-08-20|1993-08-06|1993-09-03|NONE|SHIP|nst the furiously quiet braid| +11178|105111|5112|7|24|26786.64|0.00|0.08|R|F|1993-08-28|1993-08-18|1993-09-20|TAKE BACK RETURN|MAIL|onic ideas across the slyly ironic de| +11179|186232|3787|1|49|64593.27|0.08|0.01|N|O|1996-09-06|1996-07-15|1996-09-20|TAKE BACK RETURN|TRUCK| instructi| +11180|64979|4980|1|44|85534.68|0.01|0.07|N|O|1997-02-11|1997-04-02|1997-03-13|NONE|SHIP|nic deposits. final accounts abou| +11181|125321|2858|1|12|16155.84|0.08|0.08|N|O|1996-02-20|1995-12-05|1996-03-15|DELIVER IN PERSON|AIR|instructions. packages c| +11181|61882|6895|2|49|90350.12|0.03|0.03|N|O|1996-01-05|1995-12-16|1996-01-28|DELIVER IN PERSON|SHIP| requests wak| +11182|158768|1284|1|42|76723.92|0.07|0.03|N|O|1997-06-05|1997-03-26|1997-06-25|TAKE BACK RETURN|TRUCK|final requests sleep carefully after the | +11182|4841|4842|2|47|82054.48|0.00|0.02|N|O|1997-04-04|1997-05-12|1997-04-19|TAKE BACK RETURN|TRUCK|ts. carefully | +11183|196512|4070|1|2|3217.02|0.09|0.05|N|O|1997-03-03|1997-04-18|1997-03-28|NONE|MAIL|e blithely final asymptotes.| +11183|160930|5963|2|46|91582.78|0.02|0.08|N|O|1997-05-15|1997-04-04|1997-05-26|TAKE BACK RETURN|TRUCK|uickly blithely re| +11183|148645|3674|3|40|67745.60|0.08|0.00|N|O|1997-04-29|1997-04-09|1997-05-06|NONE|AIR|the pinto beans. s| +11183|74575|2097|4|10|15495.70|0.04|0.07|N|O|1997-06-13|1997-03-27|1997-06-26|COLLECT COD|MAIL|ans. furiously pending f| +11183|178294|3329|5|23|31562.67|0.03|0.03|N|O|1997-05-19|1997-03-21|1997-05-25|TAKE BACK RETURN|REG AIR|otes. final| +11208|22422|7427|1|24|32266.08|0.09|0.08|R|F|1992-06-16|1992-05-14|1992-07-14|DELIVER IN PERSON|SHIP|ests against the furiously express| +11208|44638|9647|2|35|55392.05|0.10|0.04|A|F|1992-04-27|1992-04-06|1992-05-09|COLLECT COD|AIR|sts? busily even depo| +11208|15129|5130|3|48|50117.76|0.10|0.04|A|F|1992-05-01|1992-04-27|1992-05-21|DELIVER IN PERSON|MAIL| the furiously re| +11209|68788|1295|1|26|45676.28|0.03|0.05|N|O|1995-08-18|1995-08-18|1995-09-13|DELIVER IN PERSON|MAIL|usly final asymptotes haggle furiously | +11209|110122|7656|2|37|41888.44|0.09|0.01|N|O|1995-08-05|1995-09-08|1995-08-22|TAKE BACK RETURN|RAIL| sleep quickly according t| +11209|7377|4878|3|46|59081.02|0.02|0.06|N|O|1995-07-05|1995-09-19|1995-07-30|COLLECT COD|AIR|tegrate quickly.| +11209|174032|4033|4|46|50877.38|0.02|0.00|N|O|1995-07-01|1995-09-02|1995-07-04|TAKE BACK RETURN|FOB|inal accounts. ironic instructions | +11209|141353|1354|5|14|19520.90|0.00|0.00|N|O|1995-07-11|1995-09-21|1995-07-19|TAKE BACK RETURN|MAIL|ular instructions cajole blithely| +11210|19873|9874|1|29|51993.23|0.04|0.04|N|O|1996-08-28|1996-09-28|1996-09-09|TAKE BACK RETURN|RAIL|efully. specia| +11211|105760|781|1|30|52972.80|0.08|0.02|N|O|1996-11-02|1996-10-20|1996-11-06|TAKE BACK RETURN|RAIL|ss packages serve carefully acco| +11211|101994|9525|2|11|21955.89|0.02|0.07|N|O|1996-10-13|1996-08-26|1996-10-19|NONE|RAIL|ly pending dependencies cajo| +11212|26961|4468|1|1|1887.96|0.02|0.07|A|F|1994-09-26|1994-09-24|1994-10-22|TAKE BACK RETURN|SHIP|eposits impress permanentl| +11212|126368|8881|2|50|69718.00|0.04|0.02|A|F|1994-10-24|1994-09-27|1994-11-01|NONE|AIR|ies nag. final, express foxes was carefully| +11212|56631|6632|3|24|38103.12|0.08|0.03|R|F|1994-11-05|1994-08-18|1994-11-11|DELIVER IN PERSON|AIR|ns around the requests boost sl| +11212|185292|329|4|14|19282.06|0.00|0.00|R|F|1994-08-31|1994-08-27|1994-09-22|NONE|RAIL|nding, fin| +11212|187094|9613|5|17|20078.53|0.04|0.01|R|F|1994-07-19|1994-09-04|1994-08-16|COLLECT COD|FOB|against the regularly| +11212|82656|7673|6|46|75377.90|0.06|0.01|R|F|1994-10-23|1994-10-04|1994-11-21|DELIVER IN PERSON|TRUCK|equests nag bli| +11213|177051|9569|1|25|28201.25|0.05|0.00|N|O|1997-08-07|1997-06-10|1997-08-11|TAKE BACK RETURN|SHIP|yly regular| +11213|91722|9250|2|37|63407.64|0.09|0.08|N|O|1997-06-23|1997-08-07|1997-07-19|COLLECT COD|FOB|fully special deposits. slyly silent foxes | +11213|157055|2086|3|33|36697.65|0.09|0.00|N|O|1997-06-15|1997-06-16|1997-06-23|COLLECT COD|TRUCK|sits. slyly silent accounts detect carefull| +11213|8963|1464|4|48|89854.08|0.05|0.08|N|O|1997-06-14|1997-06-19|1997-06-19|COLLECT COD|FOB|o beans. blithely regular platele| +11213|36545|4055|5|41|60743.14|0.05|0.05|N|O|1997-08-31|1997-06-19|1997-09-06|NONE|TRUCK| regular, even theodolites| +11213|953|3454|6|20|37079.00|0.05|0.01|N|O|1997-08-23|1997-07-24|1997-09-01|COLLECT COD|FOB|y final orbits. express excuses across| +11213|16091|1094|7|26|26184.34|0.01|0.05|N|O|1997-05-31|1997-07-07|1997-06-01|TAKE BACK RETURN|AIR|e express, ironic dug| +11214|28562|3567|1|29|43226.24|0.04|0.06|A|F|1992-03-28|1992-02-28|1992-04-05|NONE|AIR|luffily packages. bold| +11215|34189|6693|1|35|39311.30|0.10|0.05|A|F|1995-04-29|1995-05-12|1995-05-10|DELIVER IN PERSON|FOB| haggle even dependencie| +11215|5085|86|2|20|19801.60|0.06|0.04|R|F|1995-04-18|1995-04-19|1995-05-09|NONE|MAIL|rding to the i| +11215|52531|47|3|36|53407.08|0.04|0.00|N|F|1995-05-28|1995-05-12|1995-06-25|NONE|TRUCK|s. blithely regular ideas sl| +11215|80276|2785|4|2|2512.54|0.06|0.01|N|F|1995-06-13|1995-04-27|1995-06-28|DELIVER IN PERSON|SHIP|e quickly unusual deposits wake| +11215|187963|482|5|49|100497.04|0.06|0.08|A|F|1995-04-28|1995-06-14|1995-05-24|TAKE BACK RETURN|FOB|p ironic pinto beans. fluf| +11215|86602|9111|6|21|33360.60|0.03|0.00|A|F|1995-04-17|1995-06-12|1995-05-05|TAKE BACK RETURN|TRUCK|ets along | +11240|165667|8184|1|14|24257.24|0.05|0.08|N|O|1998-05-24|1998-07-11|1998-06-01|DELIVER IN PERSON|REG AIR|carefully unusual de| +11240|152150|9696|2|1|1202.15|0.02|0.06|N|O|1998-08-13|1998-07-12|1998-09-05|COLLECT COD|SHIP| theodolites | +11241|68721|1228|1|14|23656.08|0.07|0.00|N|O|1997-08-23|1997-10-20|1997-09-01|COLLECT COD|SHIP|arefully blithely bold pinto beans.| +11241|192422|4942|2|1|1514.42|0.03|0.01|N|O|1997-10-19|1997-10-27|1997-10-31|NONE|FOB|es. theodolites wake | +11241|32777|5281|3|21|35905.17|0.00|0.07|N|O|1997-09-11|1997-09-21|1997-09-19|DELIVER IN PERSON|AIR|c foxes boost fluffily regular requests: r| +11241|66758|9265|4|34|58641.50|0.10|0.02|N|O|1997-11-14|1997-10-23|1997-11-15|DELIVER IN PERSON|AIR| nag quickly. asymptotes about the ca| +11242|84142|4143|1|29|32658.06|0.05|0.00|N|O|1998-07-26|1998-08-12|1998-08-05|COLLECT COD|SHIP|s. regular ideas a| +11242|162049|7082|2|14|15554.56|0.03|0.01|N|O|1998-07-13|1998-10-02|1998-08-01|DELIVER IN PERSON|REG AIR|furiously special reques| +11243|193511|3512|1|7|11231.57|0.04|0.06|A|F|1994-06-01|1994-03-31|1994-06-18|TAKE BACK RETURN|AIR|carefully express instructions | +11243|138970|3997|2|17|34152.49|0.05|0.08|A|F|1994-03-12|1994-04-22|1994-03-31|COLLECT COD|RAIL|regular theodolites haggle slyly according | +11243|67352|7353|3|6|7916.10|0.02|0.00|R|F|1994-03-28|1994-04-11|1994-04-23|DELIVER IN PERSON|FOB|ully pendin| +11243|173782|1334|4|20|37115.60|0.08|0.08|R|F|1994-05-03|1994-04-25|1994-05-08|COLLECT COD|RAIL|, special foxes use. slyly regular courts p| +11244|19977|9978|1|18|34145.46|0.07|0.02|R|F|1992-09-21|1992-08-02|1992-10-19|NONE|MAIL|nal deposits are| +11244|141770|4285|2|7|12682.39|0.10|0.08|A|F|1992-07-20|1992-08-01|1992-08-13|NONE|REG AIR|g to the furiously ironic exc| +11244|124311|1848|3|46|61424.26|0.10|0.07|A|F|1992-06-23|1992-08-12|1992-06-25|DELIVER IN PERSON|AIR| the regular requ| +11244|88607|3624|4|17|27125.20|0.10|0.07|A|F|1992-08-23|1992-08-27|1992-09-07|COLLECT COD|SHIP| unusual foxes detect carefully at the re| +11244|1127|6128|5|12|12337.44|0.02|0.03|R|F|1992-08-22|1992-07-06|1992-09-02|COLLECT COD|AIR|lly regular requests slee| +11245|102207|2208|1|28|33857.60|0.04|0.03|A|F|1993-11-20|1993-10-20|1993-12-15|TAKE BACK RETURN|RAIL|regular pinto beans haggle carefully fi| +11245|191571|9129|2|30|49877.10|0.07|0.00|R|F|1993-10-01|1993-11-12|1993-10-04|DELIVER IN PERSON|MAIL|key players. slyly special foxes| +11245|125881|3418|3|16|30510.08|0.03|0.02|A|F|1993-09-15|1993-11-10|1993-10-02|DELIVER IN PERSON|FOB|he furiously final grouches. fur| +11245|70519|520|4|16|23832.16|0.09|0.07|A|F|1993-10-04|1993-09-25|1993-10-14|DELIVER IN PERSON|RAIL|d instructions| +11246|102460|9991|1|11|16087.06|0.00|0.03|N|O|1996-11-20|1996-12-16|1996-12-08|DELIVER IN PERSON|SHIP|y regular packages| +11246|44140|6645|2|40|43365.60|0.05|0.05|N|O|1997-02-20|1996-12-29|1997-02-24|COLLECT COD|REG AIR|ses alongside of the carefully e| +11246|50905|8421|3|42|77947.80|0.05|0.02|N|O|1996-11-11|1997-01-20|1996-11-23|COLLECT COD|FOB|out the special deposits. regula| +11246|151930|9476|4|15|29728.95|0.04|0.00|N|O|1996-11-08|1996-11-30|1996-12-02|TAKE BACK RETURN|TRUCK|e quickly carefully expres| +11246|72114|4622|5|34|36927.74|0.03|0.08|N|O|1996-12-06|1996-12-24|1996-12-16|NONE|MAIL|ully silent theodolites wa| +11247|62714|233|1|3|5030.13|0.10|0.05|N|O|1995-11-22|1995-12-17|1995-12-11|COLLECT COD|MAIL| haggle against | +11247|27929|2934|2|4|7427.68|0.00|0.03|N|O|1996-02-08|1996-01-16|1996-02-25|COLLECT COD|TRUCK|ly final packages nod furious| +11272|109893|7424|1|50|95144.50|0.07|0.08|N|O|1997-08-01|1997-07-30|1997-08-22|NONE|SHIP|refully unusual de| +11272|166486|9003|2|31|48126.88|0.05|0.08|N|O|1997-08-18|1997-08-18|1997-09-03|NONE|REG AIR|s. fluffily ironic r| +11272|120817|5842|3|13|23891.53|0.07|0.05|N|O|1997-07-25|1997-07-29|1997-08-08|COLLECT COD|MAIL| detect ironically c| +11272|157738|5284|4|33|59259.09|0.09|0.00|N|O|1997-06-24|1997-07-29|1997-06-29|DELIVER IN PERSON|TRUCK| even requests doubt blit| +11272|90439|440|5|34|48600.62|0.03|0.00|N|O|1997-10-05|1997-07-19|1997-10-07|TAKE BACK RETURN|TRUCK|counts. quiet, bold deposit| +11273|42416|4921|1|29|39393.89|0.00|0.02|A|F|1992-07-16|1992-06-07|1992-08-14|DELIVER IN PERSON|SHIP|es against the fur| +11273|71920|6935|2|45|85136.40|0.09|0.03|R|F|1992-07-06|1992-04-28|1992-07-13|COLLECT COD|FOB|slyly among the bold instruction| +11273|143181|3182|3|11|13465.98|0.04|0.07|R|F|1992-04-07|1992-05-08|1992-04-09|COLLECT COD|AIR|structions at the regular account| +11273|39346|4353|4|13|16709.42|0.03|0.02|A|F|1992-04-04|1992-05-14|1992-04-10|DELIVER IN PERSON|AIR|refully close p| +11273|85967|5968|5|7|13670.72|0.00|0.01|A|F|1992-03-28|1992-04-24|1992-04-08|COLLECT COD|MAIL|cajole slyly al| +11273|41271|6280|6|21|25457.67|0.03|0.00|A|F|1992-04-11|1992-06-11|1992-04-19|TAKE BACK RETURN|SHIP|lly above the even accounts. blithe| +11273|25799|3306|7|48|82789.92|0.00|0.03|R|F|1992-06-08|1992-06-13|1992-06-27|COLLECT COD|SHIP|ly around the sly| +11274|196230|1269|1|31|41113.13|0.01|0.01|N|O|1998-04-24|1998-05-20|1998-05-18|COLLECT COD|SHIP|hinder against the carefull| +11274|29655|2158|2|25|39616.25|0.00|0.02|N|O|1998-07-24|1998-07-04|1998-08-02|DELIVER IN PERSON|REG AIR|posits wake. pending du| +11274|9579|7080|3|7|10419.99|0.09|0.01|N|O|1998-06-11|1998-06-18|1998-07-10|NONE|MAIL|counts are. quickly final | +11275|140582|8125|1|2|3245.16|0.00|0.08|N|O|1995-08-04|1995-08-20|1995-08-15|NONE|MAIL|s are. fluffily even | +11275|157349|7350|2|25|35158.50|0.10|0.04|N|O|1995-07-31|1995-09-02|1995-08-10|DELIVER IN PERSON|REG AIR|odolites. quickly regula| +11275|158909|3940|3|34|66908.60|0.09|0.08|N|O|1995-08-17|1995-08-28|1995-09-11|NONE|SHIP|tes. pendin| +11275|167719|7720|4|21|37520.91|0.09|0.01|N|O|1995-08-28|1995-09-16|1995-08-29|TAKE BACK RETURN|AIR|longside of the fluffily express instructio| +11275|50203|204|5|40|46128.00|0.02|0.08|N|O|1995-10-13|1995-08-18|1995-11-04|TAKE BACK RETURN|TRUCK|atelets. t| +11275|156758|9274|6|42|76219.50|0.01|0.08|N|O|1995-09-14|1995-08-23|1995-09-17|DELIVER IN PERSON|SHIP|quickly final theodolites. regular grouc| +11276|190811|3331|1|11|20919.91|0.02|0.02|A|F|1992-02-08|1992-02-05|1992-02-26|TAKE BACK RETURN|FOB|s boost carefully i| +11276|147888|403|2|19|36781.72|0.07|0.07|R|F|1992-04-07|1992-03-28|1992-04-24|NONE|RAIL| foxes impress blithely carefully p| +11276|149500|9501|3|28|43386.00|0.08|0.01|A|F|1992-03-20|1992-02-23|1992-04-12|COLLECT COD|AIR|gular accounts. idly r| +11276|36875|1882|4|33|59791.71|0.07|0.03|R|F|1992-02-17|1992-03-23|1992-03-01|DELIVER IN PERSON|SHIP|yly about th| +11276|156843|6844|5|34|64594.56|0.06|0.00|R|F|1992-05-01|1992-02-08|1992-05-24|COLLECT COD|FOB|ously regular ideas | +11276|50052|7568|6|25|25051.25|0.01|0.03|A|F|1992-01-09|1992-02-03|1992-01-17|NONE|AIR|ilent packages? furiously pending depos| +11276|10914|8418|7|6|10949.46|0.10|0.07|R|F|1992-04-19|1992-03-02|1992-05-02|COLLECT COD|REG AIR|ar accounts. furiously | +11277|23734|3735|1|31|51389.63|0.03|0.03|N|O|1997-01-20|1996-11-09|1997-02-18|TAKE BACK RETURN|MAIL|sentiments. express ideas wake furio| +11277|82191|7208|2|39|45754.41|0.02|0.08|N|O|1997-01-07|1996-12-05|1997-01-13|NONE|TRUCK|sts among the slyly | +11277|171285|8837|3|7|9493.96|0.10|0.07|N|O|1996-10-04|1996-12-11|1996-10-20|DELIVER IN PERSON|AIR|ages across the slyly express ideas | +11277|175182|217|4|10|12571.80|0.05|0.02|N|O|1996-12-08|1996-12-03|1996-12-14|DELIVER IN PERSON|SHIP|ites among the slyly| +11277|71779|6794|5|7|12255.39|0.08|0.05|N|O|1996-12-19|1996-11-12|1997-01-18|TAKE BACK RETURN|SHIP| the fluffily pending accounts sleep care| +11277|185408|445|6|47|70189.80|0.03|0.03|N|O|1997-01-08|1996-10-25|1997-01-11|DELIVER IN PERSON|FOB|s: closely regular depos| +11277|138983|8984|7|35|70769.30|0.01|0.05|N|O|1996-11-06|1996-11-02|1996-12-05|NONE|FOB|deposits cajo| +11278|75482|5483|1|32|46639.36|0.01|0.03|N|O|1997-11-25|1997-11-08|1997-12-13|NONE|AIR|ly above the accounts. furiously | +11278|10797|8301|2|38|64896.02|0.01|0.07|N|O|1997-12-07|1997-11-12|1997-12-08|NONE|REG AIR|uests are quic| +11278|61303|6316|3|4|5057.20|0.03|0.05|N|O|1997-12-20|1997-11-10|1997-12-31|DELIVER IN PERSON|RAIL|final ideas. final, bold pac| +11278|107965|2986|4|23|45378.08|0.03|0.07|N|O|1997-09-15|1997-10-12|1997-10-04|NONE|TRUCK|regular foxes. | +11278|159166|1682|5|20|24503.20|0.05|0.05|N|O|1997-10-17|1997-10-16|1997-10-26|TAKE BACK RETURN|MAIL|ar, pending pinto beans wake quickly| +11278|89203|4220|6|9|10729.80|0.01|0.03|N|O|1997-12-02|1997-10-10|1997-12-03|TAKE BACK RETURN|MAIL|usily slyly final ideas. daring req| +11279|45273|5274|1|22|26801.94|0.08|0.02|R|F|1992-02-16|1992-04-06|1992-03-11|NONE|FOB|wake carefull| +11279|89645|2154|2|33|53943.12|0.00|0.08|R|F|1992-05-14|1992-04-16|1992-06-11|NONE|REG AIR|jole furiously after the regular pac| +11279|63186|8199|3|2|2298.36|0.10|0.07|A|F|1992-03-27|1992-03-28|1992-04-09|TAKE BACK RETURN|SHIP|uickly express packages near the enticin| +11279|154219|1765|4|32|40742.72|0.01|0.06|A|F|1992-01-21|1992-03-14|1992-02-19|COLLECT COD|FOB|theodolites. slyly even requests a| +11279|156417|6418|5|28|41255.48|0.07|0.02|A|F|1992-03-18|1992-03-23|1992-04-06|DELIVER IN PERSON|REG AIR|into beans | +11304|52526|5032|1|46|68011.92|0.05|0.03|N|O|1995-08-11|1995-06-23|1995-08-12|TAKE BACK RETURN|AIR|usly along t| +11304|199641|7199|2|15|26109.60|0.04|0.00|N|O|1995-08-24|1995-06-25|1995-08-31|COLLECT COD|TRUCK| nag slyly final instructions. account| +11305|72354|7369|1|35|46422.25|0.07|0.03|A|F|1994-08-08|1994-09-23|1994-08-22|COLLECT COD|FOB|r requests use silent idea| +11306|36322|8826|1|3|3774.96|0.07|0.04|N|O|1997-03-01|1997-02-12|1997-03-19|COLLECT COD|MAIL|y ironic requests. speci| +11306|51532|4038|2|2|2967.06|0.10|0.06|N|O|1997-01-19|1997-01-31|1997-01-29|DELIVER IN PERSON|FOB|telets kindle abo| +11306|97621|5149|3|45|72837.90|0.03|0.04|N|O|1997-01-27|1997-01-10|1997-01-30|DELIVER IN PERSON|RAIL|ully regular deposits. | +11307|184886|2441|1|23|45330.24|0.05|0.01|R|F|1994-12-01|1994-12-20|1994-12-12|NONE|RAIL|sly unusual requ| +11308|140283|2798|1|35|46314.80|0.08|0.08|R|F|1993-03-08|1993-04-09|1993-03-16|DELIVER IN PERSON|AIR|eodolites cajole acr| +11309|72654|2655|1|7|11386.55|0.05|0.08|N|O|1997-10-07|1997-09-21|1997-10-13|COLLECT COD|RAIL|nal accounts. quickly ir| +11309|91375|8903|2|41|56021.17|0.07|0.08|N|O|1997-10-09|1997-08-27|1997-10-11|DELIVER IN PERSON|TRUCK|grate furiously-- furiousl| +11309|125962|3499|3|34|67590.64|0.09|0.00|N|O|1997-09-23|1997-10-13|1997-10-10|NONE|FOB|furiously quickly ex| +11309|32835|5339|4|43|76016.69|0.02|0.00|N|O|1997-08-30|1997-10-19|1997-09-20|TAKE BACK RETURN|FOB| regular account| +11309|50885|8401|5|25|45897.00|0.08|0.01|N|O|1997-11-05|1997-10-02|1997-11-10|COLLECT COD|FOB|the slyly bold requests. furiously | +11310|110282|5305|1|26|33599.28|0.04|0.00|A|F|1994-12-10|1994-12-18|1994-12-29|DELIVER IN PERSON|MAIL|fully regular ideas after the blithely ev| +11310|100410|2921|2|12|16924.92|0.03|0.06|A|F|1995-01-08|1994-12-09|1995-02-05|NONE|AIR|ns boost furiously| +11311|120117|118|1|10|11371.10|0.04|0.03|A|F|1992-07-20|1992-05-23|1992-07-28|DELIVER IN PERSON|FOB|al deposits. fluffily regu| +11336|75339|2861|1|26|34172.58|0.05|0.08|R|F|1995-03-20|1995-04-07|1995-03-25|NONE|SHIP|ding theod| +11336|20981|982|2|18|34235.64|0.07|0.06|R|F|1995-05-01|1995-03-19|1995-05-03|TAKE BACK RETURN|FOB|old requests sublate qu| +11336|18927|8928|3|30|55377.60|0.04|0.04|R|F|1995-04-13|1995-02-26|1995-04-30|COLLECT COD|SHIP|ly final reques| +11336|98169|8170|4|44|51355.04|0.05|0.05|R|F|1995-01-16|1995-04-06|1995-02-11|COLLECT COD|SHIP|ct. silent d| +11336|123322|5835|5|10|13453.20|0.01|0.02|A|F|1995-03-06|1995-02-16|1995-03-09|COLLECT COD|FOB|es about the furiously even orbits da| +11336|69083|6602|6|47|49447.76|0.10|0.04|A|F|1995-02-21|1995-04-08|1995-03-12|COLLECT COD|TRUCK|maintain carefully according to the fin| +11336|67101|2114|7|21|22430.10|0.09|0.00|A|F|1995-05-09|1995-02-11|1995-06-05|NONE|TRUCK|ffily final asymptotes. fluffily | +11337|164715|7232|1|48|85426.08|0.00|0.02|R|F|1995-05-03|1995-05-18|1995-05-17|COLLECT COD|FOB|ically across the slyly i| +11337|161345|6378|2|50|70317.00|0.08|0.05|A|F|1995-05-24|1995-05-23|1995-06-01|DELIVER IN PERSON|RAIL|express requests. pending, spe| +11337|116759|4293|3|10|17757.50|0.05|0.02|R|F|1995-04-18|1995-05-04|1995-04-27|DELIVER IN PERSON|AIR| deposits haggle carefully al| +11337|165795|5796|4|15|27911.85|0.02|0.07|R|F|1995-05-24|1995-05-13|1995-05-27|DELIVER IN PERSON|REG AIR| instructions. carefully pending dep| +11337|109647|4668|5|30|49699.20|0.08|0.08|N|F|1995-06-12|1995-06-05|1995-06-26|COLLECT COD|AIR|efully express deposits. blithely bold d| +11337|21400|8907|6|19|25106.60|0.01|0.07|N|F|1995-06-02|1995-06-26|1995-06-26|COLLECT COD|RAIL|ual pinto beans affix| +11337|56852|6853|7|8|14470.80|0.05|0.06|R|F|1995-04-23|1995-06-04|1995-05-20|NONE|SHIP|o beans wake s| +11338|106459|6460|1|7|10258.15|0.02|0.07|N|O|1996-05-09|1996-03-16|1996-05-10|NONE|SHIP|, ironic foxes run quickly slyly bol| +11339|93115|5625|1|38|42108.18|0.10|0.00|A|F|1992-10-21|1992-09-08|1992-10-23|TAKE BACK RETURN|REG AIR|arefully above the pending | +11339|173865|3866|2|17|32960.62|0.05|0.06|R|F|1992-07-10|1992-09-11|1992-07-18|TAKE BACK RETURN|REG AIR|t slyly blithely | +11339|132599|7626|3|4|6526.36|0.01|0.04|R|F|1992-09-30|1992-08-10|1992-10-25|COLLECT COD|SHIP|ckly fluffily express gifts. carefully f| +11339|184765|7284|4|50|92488.00|0.10|0.07|A|F|1992-10-10|1992-09-27|1992-10-12|COLLECT COD|REG AIR|nstructions among t| +11339|141674|9217|5|9|15441.03|0.02|0.07|A|F|1992-07-25|1992-08-17|1992-07-31|DELIVER IN PERSON|REG AIR|accounts boost furiously sheaves. car| +11339|101117|1118|6|50|55905.50|0.05|0.06|R|F|1992-08-18|1992-09-26|1992-09-02|TAKE BACK RETURN|RAIL|idly pending warhorses grow carefull| +11340|3940|8941|1|7|12907.58|0.05|0.07|R|F|1992-07-05|1992-08-08|1992-07-06|DELIVER IN PERSON|SHIP|l deposits wake. reg| +11340|17521|7522|2|44|63294.88|0.06|0.04|R|F|1992-06-25|1992-07-16|1992-07-23|NONE|AIR|hely pending, pending account| +11340|64369|1888|3|35|46667.60|0.09|0.07|R|F|1992-05-24|1992-07-04|1992-06-10|DELIVER IN PERSON|MAIL| the blithely regular packages: packages | +11340|35587|3097|4|48|73083.84|0.08|0.05|R|F|1992-06-25|1992-06-30|1992-07-19|DELIVER IN PERSON|TRUCK|r the caref| +11340|109941|9942|5|2|3901.88|0.08|0.05|R|F|1992-06-21|1992-07-02|1992-07-07|TAKE BACK RETURN|AIR| closely. slyly final ideas| +11340|176283|8801|6|31|42137.68|0.03|0.07|A|F|1992-08-24|1992-08-18|1992-09-13|DELIVER IN PERSON|FOB|ckly. furiously express account| +11340|188371|3408|7|10|14593.70|0.05|0.06|A|F|1992-05-23|1992-07-11|1992-06-18|TAKE BACK RETURN|TRUCK|e furiously blithely even requests. | +11341|142667|5182|1|24|41031.84|0.08|0.02|R|F|1994-01-08|1994-01-28|1994-02-05|COLLECT COD|FOB|refully express plate| +11341|3050|551|2|21|20014.05|0.10|0.08|R|F|1994-01-21|1993-12-30|1994-02-12|COLLECT COD|TRUCK|en theodolites. slyly silent deposits wak| +11341|46742|1751|3|27|45595.98|0.05|0.00|A|F|1994-02-14|1994-01-13|1994-02-21|DELIVER IN PERSON|MAIL|ctions wake fluffily furiously furiou| +11342|87167|9676|1|19|21929.04|0.04|0.07|N|O|1998-08-31|1998-08-05|1998-09-08|NONE|REG AIR|he fluffily unusual accounts are fl| +11342|199326|4365|2|22|31357.04|0.01|0.06|N|O|1998-07-02|1998-08-01|1998-07-13|COLLECT COD|TRUCK|g Tiresias a| +11342|61055|3562|3|19|19304.95|0.00|0.00|N|O|1998-07-11|1998-07-09|1998-07-12|COLLECT COD|REG AIR|es are slyly. slyly even deposits use s| +11342|142547|2548|4|50|79477.00|0.10|0.04|N|O|1998-07-13|1998-07-15|1998-08-08|TAKE BACK RETURN|REG AIR| deposits integrate blithely packages. sly| +11342|186335|3890|5|33|46903.89|0.01|0.01|N|O|1998-07-01|1998-07-21|1998-07-16|DELIVER IN PERSON|TRUCK|iously pinto beans.| +11342|126418|3955|6|30|43332.30|0.08|0.07|N|O|1998-07-10|1998-08-21|1998-07-28|NONE|MAIL|s are slyly instructions. deposit| +11343|84379|9396|1|4|5453.48|0.03|0.03|N|O|1997-06-06|1997-08-02|1997-06-14|NONE|REG AIR|carefully. quickly | +11343|148449|5992|2|16|23959.04|0.08|0.04|N|O|1997-06-17|1997-07-22|1997-06-18|COLLECT COD|RAIL|deas use furiously furiously final packa| +11368|4003|4004|1|10|9070.00|0.01|0.03|A|F|1994-04-19|1994-05-06|1994-04-24|DELIVER IN PERSON|MAIL| the accounts. carefully r| +11368|76831|1846|2|5|9039.15|0.00|0.06|R|F|1994-04-17|1994-04-10|1994-05-08|TAKE BACK RETURN|TRUCK|p slyly. i| +11368|88147|5672|3|23|26108.22|0.03|0.01|A|F|1994-03-17|1994-04-08|1994-03-30|DELIVER IN PERSON|FOB|ts wake furiously. carefully| +11368|73794|1316|4|34|60104.86|0.04|0.08|A|F|1994-05-28|1994-05-13|1994-06-22|COLLECT COD|SHIP|ily against the regular requests. regu| +11368|47407|4920|5|25|33860.00|0.00|0.00|R|F|1994-05-07|1994-04-06|1994-06-02|DELIVER IN PERSON|MAIL|ily blithely express accounts. ironic | +11369|97335|9845|1|6|7993.98|0.03|0.03|N|O|1996-06-25|1996-05-14|1996-07-12|TAKE BACK RETURN|FOB|c frays wake blithely. packages | +11369|92888|7907|2|44|82758.72|0.00|0.04|N|O|1996-05-16|1996-05-23|1996-06-01|DELIVER IN PERSON|SHIP| affix. carefully unusual frets boost spe| +11369|166287|6288|3|14|18945.92|0.10|0.08|N|O|1996-06-10|1996-06-22|1996-06-30|DELIVER IN PERSON|AIR|y regular ideas. thi| +11370|70727|3235|1|21|35652.12|0.08|0.00|R|F|1992-06-24|1992-06-01|1992-07-10|NONE|TRUCK| quickly even depende| +11370|106475|4006|2|37|54814.39|0.00|0.03|R|F|1992-07-05|1992-05-18|1992-07-19|DELIVER IN PERSON|TRUCK|even instructions haggle above the unusual| +11370|123803|3804|3|7|12787.60|0.06|0.00|A|F|1992-05-29|1992-05-11|1992-06-04|TAKE BACK RETURN|REG AIR|rding to the r| +11370|151291|1292|4|31|41610.99|0.07|0.08|R|F|1992-06-23|1992-04-24|1992-07-14|NONE|TRUCK| according to | +11370|146616|9131|5|46|76480.06|0.07|0.03|R|F|1992-06-11|1992-04-18|1992-07-04|NONE|TRUCK|s use beneath the idly spe| +11370|171530|9082|6|1|1601.53|0.09|0.04|A|F|1992-04-20|1992-05-29|1992-05-09|COLLECT COD|RAIL|heodolites. bli| +11370|90891|5910|7|3|5645.67|0.00|0.00|R|F|1992-05-06|1992-05-02|1992-05-11|TAKE BACK RETURN|REG AIR|ly even deposits? blithely expre| +11371|195502|541|1|2|3195.00|0.06|0.00|N|O|1998-09-05|1998-06-10|1998-09-15|NONE|TRUCK|silent deposit| +11371|196549|9069|2|6|9873.24|0.06|0.08|N|O|1998-06-30|1998-07-04|1998-07-30|DELIVER IN PERSON|SHIP|structions.| +11372|51037|8553|1|48|47425.44|0.09|0.06|A|F|1994-03-10|1994-02-27|1994-03-19|TAKE BACK RETURN|MAIL|ithely silent| +11372|172180|4698|2|23|28800.14|0.03|0.06|A|F|1994-04-13|1994-03-19|1994-04-19|NONE|SHIP| haggle blithely; carefully unusual deposi| +11372|16772|4276|3|50|84438.50|0.05|0.07|A|F|1994-03-02|1994-02-25|1994-03-21|NONE|AIR|according to the qu| +11372|72650|172|4|15|24339.75|0.06|0.04|R|F|1994-04-14|1994-03-21|1994-04-21|DELIVER IN PERSON|TRUCK|phins. blithely pending ideas should are qu| +11372|19156|6660|5|35|37630.25|0.09|0.01|A|F|1994-01-19|1994-02-09|1994-01-20|TAKE BACK RETURN|MAIL|use according to the express, special t| +11372|147868|5411|6|21|40233.06|0.02|0.00|A|F|1994-04-20|1994-02-16|1994-05-17|NONE|TRUCK|ependencies sleep furiously. regular, f| +11373|10928|8432|1|14|25744.88|0.09|0.00|A|F|1994-05-06|1994-04-22|1994-05-18|DELIVER IN PERSON|REG AIR|ts boost furiously express packages. accou| +11373|54923|4924|2|4|7511.68|0.02|0.01|A|F|1994-04-12|1994-04-03|1994-04-16|NONE|AIR|l theodolites integrate furiously along| +11373|82145|4654|3|4|4508.56|0.01|0.03|A|F|1994-04-22|1994-04-30|1994-04-27|COLLECT COD|SHIP| use slyly after the fluffily even a| +11373|1381|3882|4|36|46165.68|0.10|0.04|A|F|1994-04-23|1994-03-29|1994-04-25|DELIVER IN PERSON|MAIL|y foxes. ironic accounts doubt outside the | +11374|27537|2542|1|21|30755.13|0.02|0.04|A|F|1993-10-31|1993-09-01|1993-11-02|DELIVER IN PERSON|TRUCK| packages boos| +11374|3445|8446|2|43|57982.92|0.05|0.02|A|F|1993-11-18|1993-09-19|1993-12-09|TAKE BACK RETURN|FOB|silent foxes. slyly regular packages be| +11375|71298|6313|1|50|63464.50|0.06|0.07|A|F|1992-09-17|1992-11-14|1992-10-07|COLLECT COD|FOB|haggle in place of the fl| +11375|91280|6299|2|28|35595.84|0.03|0.00|R|F|1992-09-27|1992-09-22|1992-09-28|DELIVER IN PERSON|RAIL|efully above the theodolites. fur| +11375|127417|7418|3|40|57776.40|0.02|0.08|A|F|1992-12-05|1992-11-07|1992-12-17|COLLECT COD|SHIP|e silently eve| +11375|81761|4270|4|39|67967.64|0.01|0.05|A|F|1992-11-02|1992-10-08|1992-11-04|DELIVER IN PERSON|SHIP|sly regular theodolites. enticing, e| +11375|157100|2131|5|2|2314.20|0.09|0.01|R|F|1992-09-24|1992-11-12|1992-09-28|COLLECT COD|TRUCK|. carefully final pint| +11375|178057|5609|6|38|43131.90|0.02|0.08|A|F|1992-11-19|1992-10-16|1992-11-26|DELIVER IN PERSON|TRUCK|er the carefully regular acc| +11375|2371|4872|7|6|7640.22|0.06|0.04|A|F|1992-11-22|1992-10-22|1992-12-09|DELIVER IN PERSON|AIR| requests wake fluffily past the carefully | +11400|33723|3724|1|2|3313.44|0.03|0.04|N|O|1997-07-07|1997-08-11|1997-07-12|NONE|TRUCK| according t| +11400|181095|8650|2|43|50571.87|0.10|0.07|N|O|1997-09-22|1997-08-16|1997-10-08|NONE|AIR|ular accounts integrate | +11400|51875|4381|3|10|18268.70|0.10|0.04|N|O|1997-08-24|1997-09-22|1997-08-29|NONE|RAIL|riously regular pinto be| +11400|62099|7112|4|22|23343.98|0.10|0.00|N|O|1997-09-07|1997-07-28|1997-09-13|NONE|REG AIR|structions believe carefully. ironic| +11401|51016|8532|1|12|11604.12|0.02|0.00|N|O|1996-12-12|1996-12-08|1997-01-05|COLLECT COD|MAIL|rets boost according to the| +11401|10155|2657|2|3|3195.45|0.00|0.00|N|O|1996-12-08|1997-01-23|1996-12-30|DELIVER IN PERSON|REG AIR|eas. finally pe| +11401|73306|5814|3|20|25586.00|0.09|0.03|N|O|1996-12-26|1997-01-06|1997-01-06|COLLECT COD|AIR|the final pinto beans. stea| +11402|68116|5635|1|21|22766.31|0.04|0.04|R|F|1992-11-30|1992-12-03|1992-12-16|TAKE BACK RETURN|TRUCK| ironic idea| +11402|9715|2216|2|19|30869.49|0.00|0.06|A|F|1992-12-10|1992-12-06|1992-12-12|NONE|REG AIR| furiously pending dependencies. b| +11402|68300|5819|3|43|54536.90|0.02|0.00|A|F|1992-11-01|1992-12-09|1992-11-20|COLLECT COD|FOB|yly regular deposits serve ironic, | +11402|112094|9628|4|30|33182.70|0.04|0.04|A|F|1992-12-03|1992-11-21|1992-12-08|NONE|REG AIR| final deposits| +11402|152750|2751|5|25|45068.75|0.08|0.06|R|F|1992-11-15|1992-12-24|1992-11-26|TAKE BACK RETURN|AIR|e fluffily special r| +11402|66296|1309|6|22|27770.38|0.07|0.01|R|F|1992-10-21|1992-11-03|1992-11-17|COLLECT COD|AIR|cross the pending, p| +11402|31965|4469|7|7|13278.72|0.06|0.02|R|F|1992-11-13|1992-12-18|1992-11-29|NONE|RAIL|eans alongside of the doggedly ironic| +11403|25420|2927|1|26|34980.92|0.02|0.00|N|O|1997-07-05|1997-04-23|1997-07-17|NONE|MAIL|ully about the foxes. theodolites breach ne| +11403|28593|1096|2|36|54777.24|0.08|0.07|N|O|1997-06-05|1997-06-02|1997-06-23|TAKE BACK RETURN|MAIL|uctions are ca| +11403|148923|1438|3|2|3943.84|0.00|0.03|N|O|1997-04-13|1997-05-12|1997-05-07|COLLECT COD|TRUCK|: furiously special| +11403|145451|480|4|13|19453.85|0.04|0.05|N|O|1997-03-22|1997-05-19|1997-04-14|TAKE BACK RETURN|REG AIR|ular accounts detect busily quickly | +11404|22577|2578|1|48|71979.36|0.01|0.03|N|O|1998-02-05|1998-03-23|1998-02-28|NONE|TRUCK|al ideas are regular dependencies. pinto b| +11404|45924|3437|2|40|74796.80|0.10|0.04|N|O|1998-02-03|1998-02-01|1998-03-03|NONE|REG AIR|sual pinto beans sleep carefully. | +11405|104284|4285|1|48|61837.44|0.01|0.00|N|O|1997-06-06|1997-07-22|1997-06-22|NONE|AIR|olve fluffily | +11405|98845|1355|2|17|31345.28|0.00|0.08|N|O|1997-05-26|1997-06-18|1997-06-16|NONE|SHIP|ts believe abo| +11405|78548|3563|3|44|67167.76|0.10|0.08|N|O|1997-07-23|1997-07-26|1997-08-19|NONE|SHIP| to the silent accounts. slyly f| +11406|111280|1281|1|6|7747.68|0.08|0.01|R|F|1995-05-09|1995-05-16|1995-06-05|NONE|REG AIR|from the quick| +11406|79557|4572|2|7|10755.85|0.00|0.07|R|F|1995-04-07|1995-05-15|1995-04-18|NONE|TRUCK| slyly silent deposits. | +11407|39526|9527|1|39|57155.28|0.06|0.07|A|F|1995-02-28|1995-03-29|1995-03-27|NONE|FOB|nusual requests.| +11432|80488|2997|1|21|30838.08|0.01|0.00|N|O|1998-01-24|1998-02-04|1998-02-02|DELIVER IN PERSON|FOB|against the pending ins| +11433|99008|9009|1|5|5035.00|0.05|0.04|N|O|1997-05-30|1997-07-25|1997-06-21|DELIVER IN PERSON|MAIL|ounts. quickly final deposits play blithe| +11433|11338|6341|2|40|49973.20|0.09|0.07|N|O|1997-05-06|1997-07-26|1997-05-18|DELIVER IN PERSON|REG AIR|equests. pending accoun| +11434|186922|9441|1|32|64285.44|0.08|0.03|N|O|1998-07-28|1998-07-06|1998-08-10|NONE|SHIP|ly. slowly ironic | +11434|192086|4606|2|12|14136.96|0.02|0.05|N|O|1998-05-31|1998-06-15|1998-06-03|NONE|AIR|en pinto beans serve. final packages| +11434|174373|9408|3|39|56447.43|0.00|0.06|N|O|1998-06-28|1998-07-10|1998-07-13|NONE|SHIP|totes affix daringly alongside of the ideas| +11434|71926|1927|4|1|1897.92|0.04|0.05|N|O|1998-07-02|1998-07-08|1998-07-23|COLLECT COD|AIR|sits haggle according to | +11435|100308|7839|1|12|15699.60|0.02|0.04|R|F|1993-05-21|1993-06-23|1993-06-09|DELIVER IN PERSON|SHIP|the carefully ironic grouc| +11436|129802|2315|1|47|86094.60|0.01|0.04|N|O|1996-04-08|1996-02-01|1996-04-21|DELIVER IN PERSON|RAIL|as haggle. stealthy, express acc| +11436|172722|2723|2|6|10768.32|0.08|0.08|N|O|1995-12-24|1996-03-07|1996-01-05|NONE|FOB|tructions among the ironic d| +11436|122215|7240|3|3|3711.63|0.08|0.03|N|O|1995-12-25|1996-01-13|1995-12-26|TAKE BACK RETURN|MAIL|ffix blithely requests. carefully even| +11436|65662|675|4|14|22787.24|0.04|0.01|N|O|1996-03-11|1996-01-29|1996-04-05|NONE|TRUCK|structions haggle blithely. specia| +11436|177005|2040|5|15|16230.00|0.08|0.07|N|O|1996-01-19|1996-01-28|1996-02-17|COLLECT COD|SHIP|s instructions above the fi| +11437|3620|1121|1|7|10665.34|0.08|0.00|A|F|1994-08-15|1994-09-10|1994-09-07|NONE|SHIP| blithely regular | +11437|38628|1132|2|27|42298.74|0.10|0.03|R|F|1994-08-06|1994-09-01|1994-08-17|COLLECT COD|RAIL|usual platelets| +11437|10102|103|3|14|14169.40|0.02|0.01|R|F|1994-09-24|1994-07-31|1994-10-12|DELIVER IN PERSON|TRUCK|nstructions. regular, final deposits det| +11438|3516|8517|1|31|44004.81|0.02|0.00|A|F|1994-02-11|1994-03-25|1994-03-10|TAKE BACK RETURN|MAIL|are. quickly regular requests among the sly| +11438|82397|4906|2|39|53796.21|0.09|0.04|A|F|1994-02-12|1994-03-14|1994-02-23|DELIVER IN PERSON|TRUCK|he busily | +11438|35673|3183|3|1|1608.67|0.08|0.08|A|F|1994-03-21|1994-02-14|1994-04-15|DELIVER IN PERSON|MAIL|hely excuses. regular foxes wake slyly abo| +11439|29273|1776|1|8|9618.16|0.07|0.00|N|O|1998-04-12|1998-02-10|1998-04-16|DELIVER IN PERSON|MAIL| final pinto beans sleep slyly fluf| +11439|183023|578|2|8|8848.16|0.09|0.00|N|O|1998-03-09|1998-03-25|1998-03-27|TAKE BACK RETURN|REG AIR|ecial pinto beans. sl| +11464|75328|5329|1|33|43009.56|0.02|0.00|N|O|1997-11-04|1997-10-05|1997-11-11|NONE|TRUCK|s. express,| +11464|34889|4890|2|13|23710.44|0.00|0.04|N|O|1997-10-07|1997-10-23|1997-10-10|TAKE BACK RETURN|REG AIR|usual excus| +11464|166016|1049|3|47|50854.47|0.09|0.07|N|O|1997-09-19|1997-10-07|1997-10-04|NONE|SHIP|he pending ideas cajole fur| +11464|17060|7061|4|41|40059.46|0.08|0.04|N|O|1997-08-12|1997-09-13|1997-08-19|NONE|FOB|s. quickly regular packages unwin| +11464|123945|6458|5|15|29534.10|0.07|0.00|N|O|1997-08-14|1997-10-01|1997-09-13|NONE|AIR| grouches integrate| +11465|156649|1680|1|6|10233.84|0.05|0.00|N|O|1998-01-01|1997-12-04|1998-01-20|DELIVER IN PERSON|FOB|nts cajole busily excuses. blithely ev| +11465|187653|2690|2|1|1740.65|0.07|0.04|N|O|1997-10-13|1997-11-14|1997-11-09|COLLECT COD|REG AIR|ntiments serve furiously. blithely unu| +11466|64644|9657|1|40|64345.60|0.00|0.06|N|O|1996-01-03|1996-01-24|1996-01-05|TAKE BACK RETURN|RAIL|ld foxes are instead of| +11466|64775|9788|2|14|24356.78|0.00|0.08|N|O|1995-12-06|1996-02-03|1996-01-01|DELIVER IN PERSON|FOB|symptotes x-ray quickly aft| +11466|70099|100|3|16|17105.44|0.09|0.04|N|O|1995-12-02|1996-01-01|1995-12-30|NONE|TRUCK|alongside | +11466|145887|3430|4|7|13530.16|0.09|0.07|N|O|1996-02-12|1996-01-28|1996-03-04|NONE|SHIP|ely final foxes are upon| +11467|78609|6131|1|29|46040.40|0.00|0.01|N|O|1998-06-09|1998-04-16|1998-06-12|DELIVER IN PERSON|TRUCK| during the carefully unusual deposit| +11467|167019|9536|2|1|1086.01|0.00|0.01|N|O|1998-06-16|1998-05-17|1998-06-24|COLLECT COD|AIR|ironic requests above the fluffily e| +11467|81576|9101|3|46|71648.22|0.04|0.00|N|O|1998-05-09|1998-05-16|1998-05-23|TAKE BACK RETURN|TRUCK|y regular fray| +11467|37968|7969|4|33|62896.68|0.09|0.03|N|O|1998-04-19|1998-04-20|1998-05-12|TAKE BACK RETURN|RAIL|lithely unusual reque| +11467|123818|3819|5|17|31310.77|0.05|0.03|N|O|1998-04-16|1998-05-26|1998-05-16|TAKE BACK RETURN|TRUCK|nticingly final deposit| +11467|199416|9417|6|33|50008.53|0.01|0.05|N|O|1998-04-17|1998-06-12|1998-05-11|NONE|TRUCK|r ideas doze quickly above the b| +11467|168036|5585|7|42|46369.26|0.04|0.02|N|O|1998-03-15|1998-05-25|1998-04-14|COLLECT COD|TRUCK|s integrate furiously. blithely ruth| +11468|180422|7977|1|4|6009.68|0.10|0.06|N|O|1997-05-11|1997-06-07|1997-06-10|DELIVER IN PERSON|SHIP|en deposits boost slowly instructions. c| +11468|151213|8759|2|40|50568.40|0.07|0.00|N|O|1997-08-07|1997-07-19|1997-08-27|NONE|SHIP|s boost. pend| +11468|34890|7394|3|41|74820.49|0.02|0.00|N|O|1997-05-20|1997-06-24|1997-05-27|NONE|FOB|. ironic instructions ha| +11468|191008|3528|4|19|20881.00|0.07|0.03|N|O|1997-07-22|1997-06-22|1997-08-06|TAKE BACK RETURN|REG AIR|thely carefully regular epitaphs. reg| +11469|82049|7066|1|1|1031.04|0.06|0.00|N|O|1998-03-21|1998-04-20|1998-04-14|COLLECT COD|MAIL|into beans. regular, ironic foxes agains| +11469|180914|915|2|8|15959.28|0.07|0.04|N|O|1998-03-15|1998-05-03|1998-03-20|DELIVER IN PERSON|AIR|ic pains arou| +11470|199481|2001|1|18|28448.64|0.03|0.01|A|F|1995-05-10|1995-06-11|1995-06-06|COLLECT COD|REG AIR|le above the carefully bold packages. | +11470|69380|4393|2|27|36433.26|0.04|0.08|R|F|1995-05-31|1995-06-13|1995-06-11|DELIVER IN PERSON|AIR|al accounts alongsid| +11470|67353|2366|3|40|52814.00|0.07|0.07|R|F|1995-05-27|1995-07-10|1995-06-04|DELIVER IN PERSON|RAIL|ending requests.| +11470|194484|9523|4|19|29991.12|0.09|0.02|N|O|1995-07-04|1995-07-25|1995-07-11|TAKE BACK RETURN|RAIL|xpress packages engage | +11470|90485|8013|5|10|14754.80|0.06|0.02|N|O|1995-07-10|1995-06-10|1995-07-22|COLLECT COD|SHIP|ly ironic asymptotes across the bold, iro| +11470|168745|8746|6|45|81618.30|0.10|0.07|N|O|1995-07-06|1995-06-11|1995-07-26|COLLECT COD|RAIL|ggle quickly carefully final accounts. ev| +11470|88243|5768|7|33|40630.92|0.08|0.06|N|O|1995-08-01|1995-07-16|1995-08-25|DELIVER IN PERSON|TRUCK|ly regular requests along th| +11471|95873|892|1|48|89705.76|0.08|0.01|N|O|1997-07-25|1997-06-26|1997-08-13|DELIVER IN PERSON|SHIP|ets haggle slyly a| +11471|132610|150|2|13|21353.93|0.04|0.07|N|O|1997-05-13|1997-06-15|1997-05-21|COLLECT COD|SHIP|l, ruthless theodolites boost slyly alongsi| +11471|166730|1763|3|29|52105.17|0.00|0.06|N|O|1997-05-10|1997-07-05|1997-05-11|COLLECT COD|TRUCK|onic deposits hag| +11471|21556|1557|4|26|38416.30|0.02|0.01|N|O|1997-06-03|1997-07-18|1997-06-22|DELIVER IN PERSON|RAIL|ely regular braids use slyly. furi| +11471|75980|995|5|32|62591.36|0.02|0.00|N|O|1997-07-07|1997-06-03|1997-07-08|NONE|FOB|le carefully alongside of th| +11471|179720|4755|6|5|8998.60|0.07|0.03|N|O|1997-05-18|1997-07-20|1997-06-10|COLLECT COD|MAIL|hely ironic foxes boost above the| +11496|62395|4902|1|46|62439.94|0.05|0.04|R|F|1994-11-24|1994-10-29|1994-12-16|COLLECT COD|AIR|iously ironic packages. bli| +11496|61105|3612|2|1|1066.10|0.10|0.08|R|F|1994-11-30|1994-10-02|1994-12-10|COLLECT COD|RAIL|es use slyly carefull| +11496|176028|6029|3|49|54096.98|0.06|0.04|A|F|1994-08-17|1994-09-26|1994-09-16|COLLECT COD|REG AIR| ideas. qu| +11496|87236|4761|4|39|47705.97|0.10|0.02|A|F|1994-09-26|1994-11-02|1994-10-24|COLLECT COD|RAIL|ly across the a| +11497|113540|8563|1|39|60588.06|0.00|0.00|N|O|1998-06-09|1998-05-28|1998-06-19|TAKE BACK RETURN|TRUCK|nt ideas boost quickly alongside of the bli| +11497|55227|7733|2|30|35466.60|0.02|0.01|N|O|1998-07-08|1998-05-24|1998-08-04|TAKE BACK RETURN|MAIL|ccounts can detect according to| +11498|94717|9736|1|2|3423.42|0.01|0.07|R|F|1993-08-16|1993-07-12|1993-09-14|COLLECT COD|REG AIR|ncies sleep courts. blithely | +11498|93458|8477|2|5|7257.25|0.04|0.04|R|F|1993-08-30|1993-08-22|1993-09-17|COLLECT COD|MAIL| cajole among the final, final platele| +11498|145464|493|3|40|60378.40|0.04|0.02|A|F|1993-08-21|1993-08-12|1993-09-16|TAKE BACK RETURN|REG AIR|instructions are idly at the carefully spec| +11498|11077|1078|4|18|17785.26|0.06|0.05|R|F|1993-09-01|1993-08-20|1993-09-07|DELIVER IN PERSON|AIR|es. busy accounts sleep along the | +11499|150552|5583|1|29|46473.95|0.03|0.07|N|O|1995-07-13|1995-05-21|1995-08-10|TAKE BACK RETURN|FOB|y around the furiously ironic d| +11499|119618|2130|2|19|31114.59|0.06|0.06|N|F|1995-06-12|1995-06-14|1995-07-09|TAKE BACK RETURN|REG AIR|inal requests try to cajole quickly | +11499|4618|4619|3|20|30452.20|0.10|0.06|R|F|1995-05-12|1995-07-01|1995-06-05|TAKE BACK RETURN|AIR|quests wake. slyly even requests doze furi| +11499|2913|2914|4|34|61740.94|0.10|0.05|R|F|1995-04-26|1995-06-26|1995-05-08|NONE|AIR|ickly silent, express foxes. q| +11499|145979|5980|5|43|87073.71|0.04|0.05|N|O|1995-08-05|1995-06-02|1995-08-21|DELIVER IN PERSON|AIR|ously. slyly final pinto beans| +11500|36267|6268|1|3|3609.78|0.02|0.07|A|F|1994-01-01|1993-12-03|1994-01-28|TAKE BACK RETURN|RAIL|final requests affix. fu| +11501|196386|3944|1|6|8894.28|0.01|0.06|N|O|1996-06-20|1996-07-13|1996-07-19|NONE|RAIL|jole blithely furiously regular acc| +11501|56952|4468|2|23|43905.85|0.00|0.04|N|O|1996-05-08|1996-07-21|1996-05-17|DELIVER IN PERSON|TRUCK| furiously final reques| +11502|124156|1693|1|27|31864.05|0.09|0.00|N|O|1996-03-26|1996-04-29|1996-04-15|COLLECT COD|MAIL|ven instructions. pac| +11502|85072|89|2|25|26426.75|0.10|0.02|N|O|1996-04-28|1996-04-17|1996-05-19|NONE|FOB|uriously ironic accounts among the| +11502|3755|8756|3|21|34833.75|0.08|0.07|N|O|1996-06-15|1996-04-26|1996-06-16|TAKE BACK RETURN|AIR|ously express ideas. even instru| +11502|103501|1032|4|30|45135.00|0.07|0.08|N|O|1996-05-19|1996-04-03|1996-06-11|NONE|MAIL|es cajole re| +11502|130612|613|5|24|39422.64|0.00|0.01|N|O|1996-05-10|1996-04-15|1996-05-14|COLLECT COD|RAIL| the carefully even i| +11502|194029|4030|6|48|53904.96|0.07|0.04|N|O|1996-03-14|1996-04-09|1996-03-19|NONE|RAIL|s. quietly even ideas hang sometimes| +11502|34521|9528|7|20|29110.40|0.02|0.06|N|O|1996-05-31|1996-03-21|1996-06-15|COLLECT COD|AIR|inal, regular asymptot| +11503|179171|9172|1|6|7501.02|0.06|0.04|N|O|1995-10-20|1995-12-09|1995-11-03|DELIVER IN PERSON|AIR| platelets. slyly fin| +11503|111849|9383|2|47|87459.48|0.10|0.08|N|O|1995-12-18|1995-10-25|1995-12-30|TAKE BACK RETURN|REG AIR|ents. even requests affix bli| +11528|30387|388|1|24|31617.12|0.08|0.06|N|O|1997-09-02|1997-09-27|1997-09-05|DELIVER IN PERSON|FOB|silent ideas. carefully b| +11528|108185|3206|2|48|57272.64|0.05|0.07|N|O|1997-08-03|1997-10-05|1997-08-13|NONE|FOB| was under the blithely ironic f| +11528|52339|4845|3|26|33574.58|0.07|0.05|N|O|1997-09-21|1997-09-16|1997-10-05|TAKE BACK RETURN|FOB| carefully ironic packages. sent| +11528|45589|3102|4|24|36829.92|0.08|0.02|N|O|1997-11-11|1997-09-23|1997-11-15|NONE|SHIP|kages lose slyly special p| +11528|4589|9590|5|16|23897.28|0.10|0.00|N|O|1997-10-08|1997-10-29|1997-10-10|DELIVER IN PERSON|AIR|foxes eat fluffily a| +11528|122186|4699|6|50|60409.00|0.01|0.02|N|O|1997-09-27|1997-09-15|1997-10-24|DELIVER IN PERSON|REG AIR|ly ironic dependencies haggle d| +11529|163287|3288|1|7|9451.96|0.07|0.04|N|O|1998-09-25|1998-10-03|1998-10-18|NONE|SHIP| ironic, bold | +11529|162893|5410|2|1|1955.89|0.03|0.00|N|O|1998-10-26|1998-09-05|1998-11-11|TAKE BACK RETURN|RAIL|he final requests nag| +11529|141477|3992|3|3|4555.41|0.09|0.08|N|O|1998-10-06|1998-09-06|1998-10-28|DELIVER IN PERSON|REG AIR|aggle carefully carefully fin| +11529|190119|2639|4|2|2418.22|0.08|0.07|N|O|1998-09-26|1998-08-19|1998-10-01|NONE|RAIL|xes. carefull| +11529|116692|9204|5|25|42717.25|0.06|0.05|N|O|1998-11-04|1998-09-08|1998-11-29|TAKE BACK RETURN|REG AIR|es use quickly final accounts. ideas | +11530|61764|9283|1|40|69030.40|0.09|0.08|A|F|1994-10-26|1994-10-01|1994-11-24|NONE|RAIL|le slyly according to the care| +11530|62889|408|2|6|11111.28|0.04|0.02|A|F|1994-09-15|1994-09-30|1994-10-14|DELIVER IN PERSON|MAIL| bold deposits among the theodolites will h| +11530|165148|7665|3|11|13344.54|0.02|0.00|A|F|1994-12-29|1994-10-07|1994-12-31|DELIVER IN PERSON|REG AIR|carefully | +11531|18508|3511|1|47|67045.50|0.05|0.00|N|O|1995-10-02|1995-12-20|1995-10-18|DELIVER IN PERSON|RAIL|bove the bli| +11531|50860|8376|2|14|25352.04|0.01|0.06|N|O|1995-12-08|1995-11-14|1995-12-12|NONE|SHIP|epitaphs! ironic deposits haggle expres| +11532|62777|296|1|45|78289.65|0.02|0.08|N|O|1997-02-10|1997-04-16|1997-02-11|TAKE BACK RETURN|TRUCK|accounts cajole furiously against the fu| +11532|79438|4453|2|42|59532.06|0.05|0.01|N|O|1997-03-31|1997-04-22|1997-04-29|NONE|RAIL|s. blithely express pac| +11532|105936|957|3|8|15535.44|0.04|0.06|N|O|1997-05-07|1997-02-25|1997-05-24|DELIVER IN PERSON|AIR|posits engag| +11532|60400|5413|4|3|4081.20|0.05|0.03|N|O|1997-04-21|1997-03-03|1997-05-01|NONE|AIR|ans above | +11533|170487|3005|1|27|42051.96|0.05|0.07|A|F|1993-01-29|1993-01-22|1993-02-20|NONE|RAIL| quickly daring requests accordi| +11533|163975|3976|2|18|36701.46|0.05|0.06|R|F|1993-03-15|1993-01-22|1993-03-23|COLLECT COD|AIR|ly express pl| +11533|117704|216|3|44|75754.80|0.10|0.08|R|F|1993-03-21|1993-02-18|1993-04-19|DELIVER IN PERSON|SHIP| beans. blithely final theodolites w| +11534|164497|9530|1|42|65582.58|0.00|0.06|A|F|1992-08-11|1992-08-22|1992-08-26|TAKE BACK RETURN|RAIL|kages are slyly quickly ironic depos| +11534|88511|8512|2|48|71976.48|0.00|0.03|R|F|1992-09-04|1992-08-09|1992-09-28|NONE|AIR|fully express requ| +11534|777|8278|3|29|48655.33|0.05|0.00|R|F|1992-07-27|1992-07-27|1992-08-11|TAKE BACK RETURN|FOB|s. theodolites engage against the bli| +11534|46384|3897|4|43|57206.34|0.08|0.07|A|F|1992-10-05|1992-08-16|1992-10-12|DELIVER IN PERSON|REG AIR| carefully special requests haggle slyly. r| +11534|172696|5214|5|32|56598.08|0.07|0.02|A|F|1992-08-06|1992-07-31|1992-08-15|COLLECT COD|TRUCK|gle quickly. regular accounts are fluffi| +11535|157334|4880|1|22|30609.26|0.04|0.05|N|O|1998-01-09|1998-02-26|1998-02-04|COLLECT COD|FOB|uffily ironic dependencies above th| +11535|102715|246|2|7|12023.97|0.09|0.02|N|O|1998-03-11|1998-02-11|1998-03-27|NONE|FOB|y Tiresias. furiously special theodolites b| +11535|130840|841|3|35|65479.40|0.01|0.00|N|O|1998-01-13|1998-03-07|1998-02-11|NONE|SHIP|lly final dolphins | +11535|12223|9727|4|9|10216.98|0.10|0.02|N|O|1998-03-11|1998-03-17|1998-03-23|TAKE BACK RETURN|RAIL| until the expres| +11560|161194|3711|1|24|30124.56|0.06|0.07|R|F|1993-12-08|1993-10-12|1994-01-07|NONE|REG AIR|ependencies wake quickly. even pinto bea| +11560|184539|4540|2|50|81176.50|0.10|0.03|R|F|1993-12-23|1993-12-08|1994-01-09|TAKE BACK RETURN|MAIL|riously unusua| +11560|140749|5778|3|34|60851.16|0.01|0.04|R|F|1993-11-16|1993-12-08|1993-11-20|DELIVER IN PERSON|MAIL|al packages are quickly; special, final| +11561|177981|5533|1|35|72064.30|0.01|0.01|N|O|1997-03-01|1996-12-16|1997-03-18|COLLECT COD|SHIP|quickly carefully even pinto| +11561|126046|8559|2|41|43953.64|0.08|0.03|N|O|1997-03-09|1997-01-17|1997-03-26|COLLECT COD|RAIL|luffily silent dolphins. account| +11561|51233|1234|3|46|54474.58|0.00|0.01|N|O|1997-01-12|1996-12-21|1997-01-25|COLLECT COD|AIR|ess accounts. b| +11562|174418|4419|1|12|17908.92|0.05|0.01|N|O|1998-08-08|1998-08-17|1998-08-22|DELIVER IN PERSON|SHIP|lites. ironi| +11562|31273|3777|2|45|54192.15|0.02|0.05|N|O|1998-07-06|1998-07-21|1998-08-05|COLLECT COD|REG AIR|re slyly. unusual, quick ideas according | +11562|193152|710|3|7|8716.05|0.10|0.07|N|O|1998-07-27|1998-07-23|1998-08-15|NONE|AIR| packages cajole carefully accounts. fur| +11562|92685|213|4|7|11743.76|0.00|0.08|N|O|1998-07-05|1998-07-29|1998-07-18|NONE|REG AIR|s haggle quickly. ironic pac| +11562|154508|2054|5|47|73437.50|0.06|0.04|N|O|1998-08-30|1998-06-27|1998-09-26|DELIVER IN PERSON|MAIL|ously among| +11562|15304|2808|6|42|51210.60|0.00|0.04|N|O|1998-06-08|1998-08-03|1998-07-06|NONE|FOB| final ideas nag| +11562|11360|6363|7|44|55939.84|0.10|0.00|N|O|1998-06-07|1998-08-08|1998-06-21|TAKE BACK RETURN|FOB|he instructions wake even, final in| +11563|113982|6494|1|19|37923.62|0.08|0.02|N|O|1996-12-15|1997-02-28|1996-12-18|COLLECT COD|SHIP|ts above the quickly ironic pa| +11563|90639|8167|2|47|76592.61|0.10|0.00|N|O|1997-02-07|1997-02-20|1997-03-01|TAKE BACK RETURN|TRUCK|ts haggle furiously unusual platelets. ca| +11563|160586|5619|3|16|26345.28|0.01|0.06|N|O|1997-02-03|1997-02-16|1997-02-12|NONE|AIR|ole blithely. blithely bold account| +11563|168159|8160|4|19|23315.85|0.05|0.04|N|O|1997-03-15|1997-01-25|1997-03-26|NONE|REG AIR|he regular accounts. carefu| +11564|53582|3583|1|12|18426.96|0.07|0.07|R|F|1993-06-20|1993-07-01|1993-07-10|TAKE BACK RETURN|TRUCK|dle patterns are furiously regular theod| +11564|138033|3060|2|8|8568.24|0.00|0.04|A|F|1993-05-10|1993-07-23|1993-05-28|NONE|RAIL|arefully unusual | +11564|114503|7015|3|24|36420.00|0.09|0.08|R|F|1993-06-28|1993-06-13|1993-07-09|COLLECT COD|RAIL|final, regular exc| +11564|45032|41|4|7|6839.21|0.08|0.01|A|F|1993-07-23|1993-06-03|1993-08-13|DELIVER IN PERSON|FOB|ns wake furious| +11564|52419|9935|5|31|42513.71|0.09|0.05|A|F|1993-06-13|1993-05-31|1993-06-27|TAKE BACK RETURN|TRUCK|ajole against the flu| +11564|402|5403|6|6|7814.40|0.04|0.01|R|F|1993-06-20|1993-07-01|1993-07-08|TAKE BACK RETURN|MAIL|haggle according to the carefully stealthy| +11565|52785|7796|1|15|26066.70|0.09|0.05|N|O|1998-01-03|1997-11-30|1998-01-26|DELIVER IN PERSON|FOB| packages. bol| +11565|142837|2838|2|48|90231.84|0.05|0.07|N|O|1998-01-12|1998-01-10|1998-02-07|COLLECT COD|REG AIR|icing packages | +11565|60435|2942|3|29|40467.47|0.08|0.01|N|O|1997-12-25|1997-12-20|1998-01-16|NONE|AIR|furiously. carefully re| +11565|124888|2425|4|31|59299.28|0.07|0.07|N|O|1998-01-12|1997-11-26|1998-01-25|NONE|TRUCK|y daring fo| +11565|178536|8537|5|6|9687.18|0.07|0.05|N|O|1998-01-06|1997-12-08|1998-02-05|DELIVER IN PERSON|RAIL|lly about the ironic pearl| +11565|46618|1627|6|36|56325.96|0.02|0.04|N|O|1998-02-11|1997-12-15|1998-02-27|TAKE BACK RETURN|REG AIR|nts boost furiously around| +11565|102351|9882|7|19|25713.65|0.10|0.05|N|O|1997-12-04|1997-12-14|1997-12-28|TAKE BACK RETURN|REG AIR| pending theodolites affix quietl| +11566|199854|7412|1|12|23446.20|0.05|0.05|N|O|1996-09-15|1996-10-04|1996-10-05|TAKE BACK RETURN|AIR|equests. bold accounts nag slyly alon| +11566|144822|2365|2|37|69072.34|0.03|0.07|N|O|1996-12-19|1996-10-09|1997-01-02|DELIVER IN PERSON|TRUCK|requests. slyly even packages| +11566|6633|4134|3|47|72362.61|0.02|0.01|N|O|1996-12-10|1996-10-27|1996-12-12|DELIVER IN PERSON|SHIP|even theodolites above the regular p| +11566|76796|6797|4|18|31910.22|0.05|0.05|N|O|1996-10-01|1996-10-24|1996-10-12|DELIVER IN PERSON|AIR| of the fluffily slow pinto b| +11566|101715|1716|5|12|20600.52|0.00|0.02|N|O|1996-10-25|1996-10-19|1996-11-21|TAKE BACK RETURN|RAIL|are furiously blithely even deposits. car| +11566|121021|6046|6|35|36470.70|0.05|0.04|N|O|1996-10-03|1996-10-11|1996-10-05|TAKE BACK RETURN|MAIL|re always ironic requests. stealthily eve| +11567|21626|6631|1|48|74285.76|0.10|0.02|N|O|1996-01-28|1996-02-02|1996-02-01|TAKE BACK RETURN|TRUCK|y. blithely fina| +11567|65131|5132|2|50|54806.50|0.01|0.03|N|O|1995-12-24|1996-02-19|1996-01-09|TAKE BACK RETURN|SHIP|olphins wake | +11567|41711|9224|3|10|16527.10|0.06|0.02|N|O|1996-04-10|1996-03-05|1996-04-24|TAKE BACK RETURN|AIR|sly final pla| +11567|30386|387|4|25|32909.50|0.00|0.07|N|O|1996-03-10|1996-02-16|1996-03-24|TAKE BACK RETURN|RAIL|n instructions.| +11567|97279|4807|5|46|58708.42|0.07|0.08|N|O|1996-02-06|1996-01-23|1996-02-18|COLLECT COD|TRUCK|ve dependencies. furiousl| +11592|121495|4008|1|34|51560.66|0.10|0.04|A|F|1995-04-02|1995-04-24|1995-04-22|NONE|REG AIR|equests. blithely special accounts boos| +11593|144897|2440|1|11|21360.79|0.10|0.03|N|O|1998-05-05|1998-03-14|1998-06-04|DELIVER IN PERSON|TRUCK|ses after the blithely b| +11593|79497|4512|2|13|19194.37|0.00|0.05|N|O|1998-02-28|1998-04-04|1998-03-01|NONE|RAIL|riously quickly pending packages. q| +11593|93276|3277|3|40|50770.80|0.00|0.08|N|O|1998-05-27|1998-04-09|1998-06-07|NONE|TRUCK|unts cajole sometimes. blithe| +11593|88985|1494|4|3|5921.94|0.01|0.00|N|O|1998-03-22|1998-03-09|1998-04-05|NONE|TRUCK|es sleep? final packages n| +11593|169447|4480|5|20|30328.80|0.00|0.06|N|O|1998-04-27|1998-04-25|1998-05-22|DELIVER IN PERSON|FOB|lites. slyly silent request| +11593|80899|3408|6|16|30078.24|0.05|0.05|N|O|1998-05-05|1998-04-10|1998-05-16|DELIVER IN PERSON|AIR|ffix slyly pending,| +11593|61981|1982|7|39|75776.22|0.02|0.08|N|O|1998-02-08|1998-04-15|1998-02-13|NONE|REG AIR|equests sleep. fur| +11594|98014|5542|1|19|19228.19|0.09|0.03|A|F|1995-04-25|1995-03-23|1995-05-21|NONE|MAIL|s asymptotes. quiet requests | +11595|96315|6316|1|36|47207.16|0.07|0.05|N|O|1996-05-29|1996-06-13|1996-06-08|NONE|SHIP| silent accounts cajole fluffy, regula| +11595|153858|8889|2|43|82209.55|0.07|0.01|N|O|1996-06-09|1996-07-19|1996-06-17|DELIVER IN PERSON|AIR|ests use furiously furiously regu| +11596|79913|9914|1|37|70037.67|0.00|0.08|N|O|1998-03-17|1998-02-17|1998-04-13|TAKE BACK RETURN|FOB|e quickly fluffily bold frets. furiou| +11596|96315|3843|2|38|49829.78|0.01|0.00|N|O|1998-01-16|1998-03-10|1998-01-26|NONE|AIR|y packages. furiously silent package| +11596|154431|9462|3|46|68329.78|0.01|0.02|N|O|1998-01-24|1998-03-13|1998-02-07|DELIVER IN PERSON|MAIL|ely along the carefull| +11596|113989|6501|4|23|46068.54|0.03|0.01|N|O|1998-04-21|1998-02-02|1998-05-10|COLLECT COD|FOB| packages. | +11596|2404|7405|5|24|31353.60|0.07|0.00|N|O|1998-04-06|1998-02-05|1998-04-17|TAKE BACK RETURN|REG AIR|ts kindle qui| +11597|47167|2176|1|26|28968.16|0.00|0.08|R|F|1993-12-28|1994-01-31|1994-01-09|NONE|MAIL|iously furiously regular fr| +11597|123579|3580|2|33|52884.81|0.04|0.00|A|F|1994-01-30|1993-12-29|1994-02-13|DELIVER IN PERSON|MAIL|eaves haggle. furiously pending fox| +11597|189212|4249|3|39|50747.19|0.05|0.00|R|F|1994-02-17|1994-01-13|1994-02-23|DELIVER IN PERSON|MAIL| slyly about the even instructions.| +11597|78928|6450|4|27|51486.84|0.05|0.08|R|F|1994-01-11|1994-01-16|1994-01-25|TAKE BACK RETURN|AIR|ggle slyly special, unusual i| +11598|92187|7206|1|50|58959.00|0.01|0.03|R|F|1994-12-20|1994-11-13|1995-01-04|TAKE BACK RETURN|TRUCK|cuses haggle slyly. | +11598|177845|7846|2|38|73067.92|0.06|0.02|R|F|1995-01-08|1994-11-17|1995-01-16|DELIVER IN PERSON|FOB|ackages for the bli| +11599|113254|5766|1|6|7603.50|0.09|0.01|N|O|1996-12-22|1996-10-09|1997-01-15|TAKE BACK RETURN|REG AIR|above the even, regular deposits integrat| +11599|52160|9676|2|16|17794.56|0.02|0.05|N|O|1997-01-03|1996-10-18|1997-01-05|COLLECT COD|MAIL| slyly express accounts h| +11599|49608|7121|3|34|52958.40|0.06|0.03|N|O|1996-12-03|1996-10-19|1996-12-17|TAKE BACK RETURN|SHIP|g against th| +11599|150061|2577|4|11|12221.66|0.09|0.02|N|O|1996-12-04|1996-11-04|1996-12-28|NONE|AIR|nding depos| +11599|71218|6233|5|42|49946.82|0.05|0.04|N|O|1996-09-12|1996-10-29|1996-09-17|NONE|FOB|cial theodolites boost | +11599|146479|4022|6|26|39662.22|0.02|0.04|N|O|1996-12-06|1996-11-19|1996-12-19|COLLECT COD|REG AIR|cial foxes cajole quickly.| +11624|72612|134|1|38|60215.18|0.06|0.00|A|F|1993-06-17|1993-04-23|1993-06-22|COLLECT COD|FOB|ing instructions about the bold, bol| +11624|180122|2641|2|23|27648.76|0.08|0.07|A|F|1993-04-24|1993-05-06|1993-05-21|COLLECT COD|TRUCK|riously even dolphins. fluff| +11624|103313|8334|3|32|42121.92|0.06|0.01|R|F|1993-05-01|1993-06-12|1993-05-07|DELIVER IN PERSON|AIR| deposits. | +11624|176759|1794|4|12|22029.00|0.10|0.06|A|F|1993-05-10|1993-06-12|1993-06-03|DELIVER IN PERSON|FOB|ly bold dependencies. furiously ironic| +11624|185546|3101|5|41|66893.14|0.01|0.03|R|F|1993-06-06|1993-04-29|1993-06-16|NONE|REG AIR|et theodolites; slyly| +11624|64114|4115|6|20|21562.20|0.03|0.05|A|F|1993-07-10|1993-05-19|1993-07-22|COLLECT COD|REG AIR|thely ironic packages. furiously final pint| +11624|158038|3069|7|16|17536.48|0.02|0.01|A|F|1993-06-06|1993-04-19|1993-06-24|DELIVER IN PERSON|RAIL|te above the silent requests| +11625|142605|2606|1|17|28009.20|0.10|0.00|R|F|1992-06-07|1992-07-31|1992-07-01|TAKE BACK RETURN|TRUCK|totes nag slowly regular epitaphs. slyly | +11625|153806|6322|2|28|52074.40|0.02|0.01|R|F|1992-08-19|1992-07-27|1992-09-07|NONE|TRUCK|ronic requests. regu| +11625|6867|9368|3|30|53215.80|0.02|0.06|R|F|1992-06-20|1992-06-30|1992-07-03|NONE|FOB|o beans. blithely bold dependencies| +11625|12456|2457|4|1|1368.45|0.00|0.08|R|F|1992-06-03|1992-06-09|1992-06-30|TAKE BACK RETURN|AIR|s nag carefully-- slyly cl| +11625|146007|6008|5|50|52650.00|0.06|0.04|A|F|1992-06-28|1992-06-08|1992-07-26|TAKE BACK RETURN|MAIL|ove the quie| +11625|129483|7020|6|28|42349.44|0.05|0.06|R|F|1992-05-16|1992-08-05|1992-06-08|NONE|TRUCK|ges haggle fur| +11625|6905|9406|7|12|21742.80|0.05|0.01|A|F|1992-05-30|1992-07-04|1992-06-09|TAKE BACK RETURN|FOB|lent accounts haggle brave requests: r| +11626|41285|3790|1|30|36788.40|0.05|0.08|N|O|1997-04-28|1997-03-02|1997-05-10|TAKE BACK RETURN|REG AIR|lly express packages; finally iro| +11626|65286|2805|2|29|36287.12|0.00|0.06|N|O|1997-03-08|1997-03-18|1997-03-26|NONE|FOB|s cajole against the| +11626|52547|7558|3|1|1499.54|0.09|0.02|N|O|1997-04-07|1997-03-07|1997-04-29|TAKE BACK RETURN|REG AIR|nding ideas. fluffily unusual | +11626|152515|5031|4|22|34485.22|0.06|0.06|N|O|1997-04-30|1997-02-27|1997-05-02|COLLECT COD|FOB|ve the final packages. pinto beans| +11627|167467|9984|1|6|9206.76|0.08|0.04|A|F|1992-11-12|1992-11-09|1992-11-25|DELIVER IN PERSON|RAIL|ely regular deposits above the deposit| +11627|3654|8655|2|45|70094.25|0.08|0.02|R|F|1992-11-19|1992-12-02|1992-11-28|TAKE BACK RETURN|SHIP|e quickly | +11627|10601|602|3|30|45348.00|0.01|0.04|R|F|1992-10-22|1992-11-07|1992-11-16|NONE|TRUCK| the silent do| +11627|159965|2481|4|24|48599.04|0.08|0.07|R|F|1992-12-20|1992-11-09|1993-01-08|NONE|RAIL|e above th| +11627|122480|2481|5|15|22537.20|0.00|0.05|R|F|1992-12-13|1992-11-20|1992-12-15|DELIVER IN PERSON|AIR|ep blithely pending theodolites. quickl| +11628|63341|3342|1|8|10434.72|0.08|0.07|A|F|1993-06-26|1993-04-24|1993-07-15|NONE|RAIL|, ironic accounts haggle f| +11628|155794|5795|2|32|59193.28|0.03|0.05|A|F|1993-06-10|1993-05-18|1993-07-04|COLLECT COD|REG AIR|ts. slyly even requests haggle| +11628|16727|9229|3|38|62461.36|0.02|0.08|R|F|1993-04-16|1993-05-01|1993-05-11|NONE|SHIP|c deposits. accounts| +11628|119041|4064|4|15|15900.60|0.05|0.07|A|F|1993-07-04|1993-05-02|1993-07-08|DELIVER IN PERSON|TRUCK|o nag slyly by the even dugouts. court| +11628|113998|6510|5|24|48287.76|0.03|0.03|A|F|1993-04-30|1993-05-21|1993-05-11|TAKE BACK RETURN|AIR|ies cajole sl| +11628|155789|5790|6|15|27671.70|0.01|0.03|A|F|1993-07-08|1993-05-09|1993-07-12|NONE|RAIL|ng the quickly express packages. specia| +11628|129311|9312|7|37|49591.47|0.10|0.06|A|F|1993-07-21|1993-05-19|1993-07-26|COLLECT COD|TRUCK|arefully. slyly silent accounts | +11629|120870|871|1|42|79416.54|0.00|0.08|R|F|1994-12-28|1994-12-27|1995-01-27|COLLECT COD|RAIL| pinto beans. daring pinto| +11629|55912|3428|2|30|56037.30|0.01|0.08|A|F|1994-12-31|1995-01-24|1995-01-06|COLLECT COD|SHIP|gside of the ironic requests. unusu| +11629|109005|9006|3|35|35490.00|0.09|0.03|R|F|1994-11-19|1995-01-10|1994-12-06|NONE|AIR|ickly regula| +11629|38929|8930|4|1|1867.92|0.08|0.08|R|F|1995-02-22|1995-01-06|1995-03-09|DELIVER IN PERSON|RAIL|permanently regular requests alongside of | +11629|78134|5656|5|6|6672.78|0.08|0.08|R|F|1994-11-17|1995-01-22|1994-11-29|COLLECT COD|FOB| about the | +11629|195776|5777|6|27|50537.79|0.01|0.02|A|F|1995-02-04|1994-12-02|1995-02-28|COLLECT COD|RAIL|unusual platelets! blithely ev| +11630|105654|3185|1|9|14936.85|0.04|0.06|R|F|1992-09-03|1992-07-25|1992-09-13|COLLECT COD|MAIL|uffily pen| +11630|119302|1814|2|37|48888.10|0.09|0.00|R|F|1992-06-25|1992-08-11|1992-07-09|TAKE BACK RETURN|REG AIR|inst the regular instructions. furiousl| +11630|107672|183|3|31|52069.77|0.04|0.04|R|F|1992-09-27|1992-07-24|1992-10-05|DELIVER IN PERSON|TRUCK|instructions. iro| +11630|28210|3215|4|48|54634.08|0.05|0.07|A|F|1992-07-13|1992-07-31|1992-07-15|TAKE BACK RETURN|TRUCK|sly. fluffily regular pinto| +11631|194871|2429|1|28|55044.36|0.00|0.02|R|F|1993-05-19|1993-05-06|1993-05-22|DELIVER IN PERSON|AIR|yly furious requests use express| +11631|185387|5388|2|41|60367.58|0.03|0.08|R|F|1993-06-16|1993-03-24|1993-07-09|TAKE BACK RETURN|REG AIR|kages use furiou| +11631|185450|3005|3|44|67559.80|0.08|0.07|A|F|1993-03-25|1993-05-17|1993-04-17|TAKE BACK RETURN|SHIP|rouches sublate carefully ir| +11631|50516|517|4|4|5866.04|0.07|0.00|R|F|1993-02-27|1993-04-12|1993-03-22|DELIVER IN PERSON|FOB| blithely express deposits. blithely bu| +11631|7183|4684|5|24|26164.32|0.07|0.04|A|F|1993-06-12|1993-04-05|1993-06-17|DELIVER IN PERSON|REG AIR|lyly pending packages c| +11656|134801|4802|1|29|53238.20|0.04|0.07|N|O|1996-10-16|1996-09-16|1996-10-22|TAKE BACK RETURN|TRUCK|. quickly final instru| +11656|189799|9800|2|18|33998.22|0.07|0.08|N|O|1996-09-06|1996-09-21|1996-09-18|NONE|AIR|s. furiously regular accounts | +11657|189803|9804|1|12|22713.60|0.07|0.06|N|O|1996-07-12|1996-06-24|1996-07-25|DELIVER IN PERSON|FOB|packages are blithely i| +11657|4666|7167|2|45|70679.70|0.00|0.02|N|O|1996-05-12|1996-06-23|1996-05-25|COLLECT COD|REG AIR|-- bold, f| +11657|12557|2558|3|49|72007.95|0.09|0.05|N|O|1996-07-15|1996-07-22|1996-08-14|NONE|RAIL|nd the reg| +11657|35393|400|4|13|17269.07|0.00|0.01|N|O|1996-05-13|1996-07-06|1996-06-12|COLLECT COD|RAIL|ending packa| +11657|39663|2167|5|19|30450.54|0.10|0.00|N|O|1996-05-16|1996-08-01|1996-05-25|TAKE BACK RETURN|FOB|nto beans aff| +11658|42173|9686|1|34|37915.78|0.00|0.06|A|F|1994-04-01|1994-05-14|1994-04-27|NONE|SHIP|mptotes. carefully silent requests are care| +11658|188381|5936|2|45|66122.10|0.04|0.08|A|F|1994-04-15|1994-05-24|1994-04-18|DELIVER IN PERSON|AIR|quests. silen| +11658|118690|3713|3|25|42717.25|0.09|0.04|R|F|1994-05-25|1994-06-03|1994-06-17|DELIVER IN PERSON|AIR|inal accounts. furiou| +11658|19443|4446|4|13|17711.72|0.03|0.05|A|F|1994-06-29|1994-06-14|1994-07-08|TAKE BACK RETURN|REG AIR|ggedly final asymptotes could are aroun| +11658|166044|1077|5|32|35521.28|0.00|0.08|R|F|1994-04-26|1994-05-27|1994-05-10|DELIVER IN PERSON|SHIP|platelets. ironic, dogge| +11658|91215|3725|6|1|1206.21|0.04|0.00|R|F|1994-06-04|1994-05-05|1994-06-16|COLLECT COD|AIR|sleep carefully regular accounts. blithe| +11659|86779|9288|1|29|51207.33|0.04|0.08|A|F|1993-04-10|1993-02-03|1993-05-03|NONE|SHIP|. slyly even theodolites across the slyl| +11659|94475|9494|2|28|41145.16|0.02|0.00|A|F|1993-02-25|1993-02-07|1993-02-28|DELIVER IN PERSON|AIR|blithely regular requests above the reg| +11659|33514|1024|3|38|55005.38|0.03|0.05|R|F|1993-02-08|1993-01-22|1993-03-05|COLLECT COD|REG AIR|ve the express | +11659|54790|2306|4|18|31406.22|0.01|0.01|A|F|1993-02-21|1993-01-14|1993-03-05|NONE|MAIL|thely pending asymptotes hinder careful| +11659|38978|1482|5|2|3833.94|0.07|0.07|R|F|1993-01-19|1993-03-04|1993-02-11|NONE|RAIL|nt requests cajole blithely across t| +11659|87772|5297|6|45|79189.65|0.01|0.05|R|F|1992-12-14|1993-02-02|1992-12-16|COLLECT COD|FOB|ironic packages are carefull| +11659|179959|7511|7|44|89713.80|0.09|0.07|R|F|1993-01-19|1993-01-20|1993-02-01|NONE|REG AIR|s. blithely| +11660|168018|5567|1|8|8688.08|0.05|0.00|N|O|1996-02-04|1996-01-11|1996-03-04|COLLECT COD|TRUCK|ages affix slyly until the qu| +11660|61802|1803|2|43|75843.40|0.09|0.04|N|O|1995-12-05|1995-11-16|1995-12-31|COLLECT COD|RAIL|thely regular d| +11660|90013|2523|3|44|44132.44|0.06|0.07|N|O|1995-11-19|1996-01-11|1995-12-03|DELIVER IN PERSON|TRUCK|e of the daring asymptotes solve blithe| +11661|153370|8401|1|13|18503.81|0.01|0.02|N|O|1996-12-11|1996-12-11|1996-12-28|DELIVER IN PERSON|SHIP|ess courts doze slyly instructions. | +11662|150099|100|1|25|28727.25|0.06|0.04|N|O|1998-04-22|1998-02-25|1998-05-19|DELIVER IN PERSON|REG AIR| slyly regular ideas about| +11662|112164|2165|2|36|42341.76|0.09|0.06|N|O|1998-03-19|1998-03-25|1998-03-30|TAKE BACK RETURN|AIR| blithely pending depende| +11662|138869|1383|3|23|43880.78|0.07|0.04|N|O|1998-04-28|1998-03-30|1998-05-23|DELIVER IN PERSON|AIR|taphs. pending ideas mainta| +11662|170548|549|4|8|12948.32|0.10|0.07|N|O|1998-04-16|1998-03-28|1998-04-25|TAKE BACK RETURN|RAIL|pecial deposits after t| +11662|192086|4606|5|14|16493.12|0.03|0.06|N|O|1998-01-28|1998-03-24|1998-02-13|NONE|FOB|, regular ideas boost| +11662|179244|4279|6|10|13232.40|0.07|0.06|N|O|1998-02-05|1998-03-23|1998-02-14|DELIVER IN PERSON|FOB|c instructions. furiously ironic foxes | +11663|133240|5754|1|20|25464.80|0.00|0.02|N|O|1995-06-27|1995-05-02|1995-06-30|DELIVER IN PERSON|MAIL|sts are carefully warthogs. qu| +11688|123106|3107|1|2|2258.20|0.08|0.08|A|F|1994-12-16|1994-12-09|1994-12-31|DELIVER IN PERSON|FOB| regular pinto beans a| +11688|29378|1881|2|47|61446.39|0.09|0.08|R|F|1994-12-25|1994-10-30|1995-01-16|TAKE BACK RETURN|SHIP|instructions might bo| +11688|150576|5607|3|29|47170.53|0.06|0.03|R|F|1994-12-02|1994-12-10|1994-12-24|NONE|REG AIR|furiously according to the s| +11689|100382|383|1|7|9676.66|0.07|0.02|N|O|1998-04-12|1998-04-23|1998-04-19|COLLECT COD|MAIL|ly regular theodolites-- q| +11689|104313|4314|2|42|55327.02|0.07|0.08|N|O|1998-05-21|1998-04-23|1998-06-09|NONE|SHIP|he regular, bold requests haggle bold, | +11689|179962|9963|3|14|28587.44|0.06|0.03|N|O|1998-07-07|1998-06-01|1998-08-05|DELIVER IN PERSON|SHIP|re ironic ideas| +11689|6229|6230|4|7|7946.54|0.04|0.06|N|O|1998-06-06|1998-05-04|1998-07-02|NONE|TRUCK|ending packages| +11690|176518|6519|1|43|68563.93|0.03|0.01|N|O|1996-09-30|1996-09-16|1996-10-01|DELIVER IN PERSON|TRUCK| the blithely special escapades po| +11690|122609|146|2|23|37526.80|0.01|0.01|N|O|1996-09-24|1996-08-10|1996-10-19|TAKE BACK RETURN|MAIL|ronic packages. carefully ironic excuses| +11690|73389|911|3|50|68119.00|0.00|0.01|N|O|1996-10-06|1996-09-09|1996-10-07|DELIVER IN PERSON|REG AIR| ideas. regular theodolites mold ac| +11690|42464|7473|4|11|15471.06|0.08|0.02|N|O|1996-07-27|1996-09-08|1996-08-13|NONE|AIR|slyly final deposits. slyly unusual acc| +11690|81559|1560|5|4|6162.20|0.01|0.03|N|O|1996-09-20|1996-09-17|1996-10-09|COLLECT COD|SHIP| to the foxes. pending, | +11690|153672|3673|6|29|50044.43|0.07|0.02|N|O|1996-08-09|1996-08-28|1996-09-06|TAKE BACK RETURN|REG AIR|uests haggl| +11690|161049|8598|7|9|9990.36|0.01|0.06|N|O|1996-10-04|1996-09-30|1996-10-16|NONE|MAIL|l accounts. quickly regular foxes alongsi| +11691|133845|3846|1|32|60122.88|0.10|0.08|R|F|1994-06-05|1994-07-08|1994-06-20|COLLECT COD|AIR| theodolites are. ruthlessly ironic| +11691|118534|8535|2|26|40365.78|0.03|0.01|R|F|1994-07-25|1994-08-05|1994-08-07|DELIVER IN PERSON|TRUCK|d deposits. blithely even patterns sleep.| +11691|197417|7418|3|11|16658.51|0.10|0.03|R|F|1994-07-20|1994-06-30|1994-07-26|TAKE BACK RETURN|FOB|le blithely special deposits. | +11692|180659|660|1|12|20875.80|0.04|0.07|A|F|1993-01-12|1993-01-06|1993-01-15|COLLECT COD|REG AIR|slyly even pinto beans. fu| +11692|129784|4809|2|33|59854.74|0.01|0.01|A|F|1993-01-04|1992-12-31|1993-01-22|NONE|MAIL| dolphins haggle carefully blithely ironic | +11692|74567|7075|3|16|24664.96|0.10|0.06|A|F|1992-12-19|1993-02-12|1992-12-22|DELIVER IN PERSON|SHIP|tions. express theodolites detec| +11692|32331|4835|4|5|6316.65|0.05|0.03|A|F|1993-01-04|1993-01-07|1993-01-16|DELIVER IN PERSON|MAIL|boost. unusual, regular packages agains| +11692|174187|6705|5|9|11350.62|0.10|0.03|A|F|1992-12-30|1993-02-11|1993-01-16|COLLECT COD|REG AIR|ular ideas | +11692|149849|9850|6|12|22786.08|0.00|0.04|A|F|1993-02-12|1993-02-12|1993-02-18|TAKE BACK RETURN|REG AIR|ilent ideas are among t| +11692|105732|8243|7|27|46918.71|0.00|0.07|A|F|1993-02-13|1993-01-16|1993-02-21|DELIVER IN PERSON|MAIL|pending accounts| +11693|29106|9107|1|49|50719.90|0.08|0.06|A|F|1993-01-19|1992-11-23|1993-02-05|COLLECT COD|REG AIR|s warhorses; pending theodolites slee| +11693|182512|67|2|1|1594.51|0.10|0.05|R|F|1992-11-04|1992-11-18|1992-11-15|COLLECT COD|MAIL|pending, unusual theodolites. | +11693|72601|7616|3|36|56649.60|0.08|0.06|A|F|1992-11-29|1992-12-29|1992-12-23|TAKE BACK RETURN|REG AIR|he furiously regular depende| +11694|90899|5918|1|43|81265.27|0.01|0.02|R|F|1994-10-14|1994-08-14|1994-10-28|NONE|SHIP|boost. furiously ironic de| +11694|137479|5019|2|29|43977.63|0.07|0.08|R|F|1994-10-04|1994-09-14|1994-10-29|TAKE BACK RETURN|TRUCK|ages cajole. bol| +11694|197256|4814|3|49|66309.25|0.02|0.02|A|F|1994-07-06|1994-09-01|1994-08-03|TAKE BACK RETURN|AIR|lar instructions. slyly bold foxes eat| +11694|71167|3675|4|49|55769.84|0.07|0.00|A|F|1994-08-10|1994-07-26|1994-08-25|COLLECT COD|REG AIR|requests solve regular, special inst| +11694|98857|1367|5|2|3711.70|0.06|0.04|A|F|1994-06-22|1994-08-27|1994-07-13|COLLECT COD|AIR|pinto beans detect blithely| +11694|78518|6040|6|9|13468.59|0.08|0.02|R|F|1994-09-02|1994-08-23|1994-09-05|TAKE BACK RETURN|REG AIR| across the regular deposits. fu| +11695|11424|6427|1|44|58758.48|0.09|0.00|N|O|1996-03-02|1996-04-22|1996-03-04|COLLECT COD|AIR|pending instr| +11695|93|5094|2|29|28799.61|0.10|0.08|N|O|1996-02-14|1996-04-19|1996-02-15|NONE|SHIP|s! even packa| +11720|174907|2459|1|13|25764.70|0.00|0.04|R|F|1994-10-14|1994-12-08|1994-11-08|NONE|MAIL|he regular d| +11721|125545|5546|1|42|65962.68|0.05|0.07|N|O|1995-10-20|1995-11-16|1995-10-29|TAKE BACK RETURN|MAIL|lar accounts wake| +11721|33957|6461|2|14|26473.30|0.03|0.00|N|O|1995-12-22|1995-11-08|1995-12-24|DELIVER IN PERSON|MAIL|s along the even instructions cajole| +11722|52445|2446|1|13|18166.72|0.01|0.00|N|O|1997-06-27|1997-05-29|1997-07-12|COLLECT COD|AIR|aphs promise bravely. regu| +11722|32430|7437|2|36|49047.48|0.01|0.00|N|O|1997-07-03|1997-05-22|1997-07-07|DELIVER IN PERSON|RAIL|ress packa| +11723|116622|6623|1|2|3277.24|0.02|0.07|R|F|1995-04-18|1995-03-04|1995-05-01|TAKE BACK RETURN|RAIL|ave to sleep carefully final| +11723|65173|2692|2|16|18210.72|0.00|0.07|A|F|1995-02-01|1995-02-20|1995-02-04|COLLECT COD|MAIL|pecial ideas are fluf| +11723|150827|5858|3|19|35678.58|0.05|0.00|A|F|1995-03-01|1995-03-04|1995-03-05|NONE|SHIP|carefully regular| +11723|143219|8248|4|7|8835.47|0.01|0.02|R|F|1995-02-26|1995-02-16|1995-03-16|DELIVER IN PERSON|REG AIR|avely express ins| +11724|137532|46|1|24|37668.72|0.03|0.00|A|F|1993-03-25|1993-05-11|1993-03-29|DELIVER IN PERSON|FOB|ular excuse| +11724|88814|8815|2|48|86534.88|0.05|0.02|A|F|1993-04-11|1993-06-01|1993-04-18|TAKE BACK RETURN|TRUCK|endencies. slyly final account| +11724|87687|2704|3|37|61963.16|0.05|0.04|R|F|1993-04-06|1993-05-14|1993-04-11|DELIVER IN PERSON|REG AIR|pinto beans are fur| +11725|191047|6086|1|14|15932.56|0.06|0.07|R|F|1993-03-20|1993-03-19|1993-04-04|TAKE BACK RETURN|REG AIR|are about the furiously unusual foxes. | +11725|120143|2656|2|9|10468.26|0.03|0.04|R|F|1993-02-02|1993-02-25|1993-03-01|NONE|MAIL|s use final pinto beans. pendin| +11726|5786|787|1|15|25376.70|0.02|0.08|A|F|1993-06-18|1993-06-06|1993-07-13|TAKE BACK RETURN|REG AIR|s integrate| +11726|39962|2466|2|17|32333.32|0.01|0.03|R|F|1993-05-15|1993-05-23|1993-06-06|NONE|MAIL|counts integrate fur| +11727|67207|9714|1|38|44619.60|0.07|0.06|A|F|1992-05-13|1992-03-11|1992-05-14|COLLECT COD|REG AIR| ideas. slyly bold ideas ca| +11727|135356|5357|2|13|18087.55|0.08|0.07|A|F|1992-04-13|1992-04-21|1992-05-09|DELIVER IN PERSON|FOB|t the blithely regular gifts. fu| +11727|123150|3151|3|29|34021.35|0.00|0.05|A|F|1992-03-01|1992-04-27|1992-03-06|DELIVER IN PERSON|REG AIR|he excuses. carefully special pinto | +11727|167095|9612|4|38|44159.42|0.09|0.05|A|F|1992-03-14|1992-04-05|1992-03-17|TAKE BACK RETURN|MAIL| accounts wake fluffily: fluffi| +11727|155102|7618|5|33|38184.30|0.01|0.01|A|F|1992-04-29|1992-03-10|1992-05-06|TAKE BACK RETURN|TRUCK|after the furiously pending depo| +11727|182546|7583|6|37|60255.98|0.07|0.08|A|F|1992-03-07|1992-03-19|1992-04-06|TAKE BACK RETURN|AIR|ans. quickly regular instructions haggle ca| +11752|49642|9643|1|49|77990.36|0.09|0.06|N|O|1995-09-13|1995-08-14|1995-10-06|TAKE BACK RETURN|REG AIR|. furiously regular pinto beans past the | +11752|131550|1551|2|40|63262.00|0.08|0.02|N|O|1995-09-11|1995-08-14|1995-10-10|NONE|REG AIR|lets solve after the furiously f| +11752|144724|7239|3|16|28299.52|0.03|0.06|N|O|1995-08-08|1995-09-17|1995-08-13|NONE|SHIP|rays sleep along the deposits| +11752|164071|6588|4|5|5675.35|0.09|0.01|N|O|1995-07-23|1995-08-09|1995-08-04|COLLECT COD|FOB|express packages. furiously qu| +11752|130894|895|5|23|44272.47|0.01|0.05|N|O|1995-10-03|1995-07-31|1995-10-05|NONE|MAIL| ironic foxes. regular deposits nag | +11753|52435|2436|1|28|38848.04|0.07|0.00|A|F|1995-03-13|1995-02-01|1995-03-21|DELIVER IN PERSON|FOB|refully pending foxes along the bl| +11753|74812|2334|2|47|83980.07|0.09|0.02|A|F|1995-03-22|1995-01-21|1995-04-12|NONE|SHIP|final, pending pinto beans. carefully| +11754|66279|8786|1|47|58527.69|0.04|0.03|N|O|1995-09-15|1995-08-23|1995-10-13|COLLECT COD|AIR|sts use dogged a| +11754|137094|7095|2|1|1131.09|0.06|0.00|N|O|1995-09-19|1995-08-11|1995-10-13|NONE|TRUCK|nusual ideas cajole silently| +11754|128791|1304|3|23|41855.17|0.05|0.05|N|O|1995-09-20|1995-07-29|1995-10-02|TAKE BACK RETURN|FOB|c accounts | +11754|189110|4147|4|38|45566.18|0.02|0.08|N|O|1995-09-06|1995-08-24|1995-10-04|COLLECT COD|SHIP| against the furiou| +11754|171363|3881|5|49|70283.64|0.08|0.07|N|O|1995-08-29|1995-08-30|1995-09-01|TAKE BACK RETURN|MAIL|old theodolites. quickly even accou| +11754|87354|9863|6|2|2682.70|0.07|0.03|N|O|1995-08-27|1995-08-07|1995-09-21|DELIVER IN PERSON|TRUCK|final ideas haggle slyly slyly even theo| +11754|149954|4983|7|12|24047.40|0.02|0.05|N|O|1995-07-21|1995-08-22|1995-08-17|NONE|FOB| bold deposits cajole. pending| +11755|75969|8477|1|11|21394.56|0.10|0.03|R|F|1993-08-15|1993-07-16|1993-08-25|DELIVER IN PERSON|RAIL|above the fluffily even packages. fina| +11755|3561|3562|2|25|36614.00|0.05|0.07|R|F|1993-05-26|1993-06-08|1993-06-08|COLLECT COD|TRUCK|n dependencies nag sometimes among the | +11755|43613|3614|3|39|60707.79|0.01|0.01|A|F|1993-07-01|1993-07-11|1993-07-11|COLLECT COD|REG AIR|regular requests are blithely final att| +11755|195561|3119|4|22|36444.32|0.03|0.01|A|F|1993-06-06|1993-07-14|1993-06-18|COLLECT COD|SHIP|uriously against the courts. furiously c| +11755|180475|8030|5|50|77773.50|0.09|0.01|A|F|1993-08-15|1993-05-31|1993-09-05|NONE|RAIL|after the careful| +11755|37941|2948|6|6|11273.64|0.04|0.04|R|F|1993-07-19|1993-07-16|1993-07-24|TAKE BACK RETURN|MAIL|ithely slyly express | +11756|74013|6521|1|30|29610.30|0.05|0.01|N|O|1997-06-22|1997-06-13|1997-07-11|NONE|REG AIR|ld theodolites. carefully regular i| +11756|129780|9781|2|34|61532.52|0.07|0.08|N|O|1997-04-22|1997-07-07|1997-05-22|TAKE BACK RETURN|AIR|c deposits: final, regular dep| +11757|70237|7759|1|33|39838.59|0.07|0.08|R|F|1993-01-09|1992-12-20|1993-01-19|COLLECT COD|MAIL|ick tithes thrash blithely after th| +11757|62515|34|2|13|19207.63|0.10|0.03|R|F|1993-01-04|1992-11-28|1993-02-03|NONE|MAIL|iously ironic accou| +11757|73898|6406|3|35|65516.15|0.02|0.03|A|F|1992-11-18|1992-11-14|1992-12-15|DELIVER IN PERSON|RAIL|scapades. slyly silent instructions haggle.| +11757|195920|8440|4|33|66525.36|0.00|0.07|A|F|1993-01-12|1992-11-06|1993-01-18|NONE|FOB|ly ironic deposits th| +11758|19700|9701|1|35|56689.50|0.07|0.00|N|O|1998-05-18|1998-07-09|1998-06-05|NONE|TRUCK|dependencies along the quickly ironic w| +11758|94982|2510|2|4|7907.92|0.05|0.04|N|O|1998-08-02|1998-05-29|1998-08-17|NONE|TRUCK|xcuses against the slyly unus| +11758|161975|1976|3|19|38702.43|0.09|0.02|N|O|1998-04-26|1998-07-18|1998-05-18|NONE|MAIL|e carefully accordin| +11758|113754|6266|4|50|88387.50|0.06|0.00|N|O|1998-06-02|1998-06-14|1998-06-10|COLLECT COD|TRUCK|ld, unusual accounts are idly. fu| +11758|56779|4295|5|42|72902.34|0.01|0.04|N|O|1998-07-17|1998-05-27|1998-08-04|DELIVER IN PERSON|RAIL|ironic pinto beans doubt quickly e| +11758|80920|3429|6|4|7603.68|0.01|0.01|N|O|1998-05-08|1998-05-26|1998-05-10|NONE|FOB|structions sleep a| +11759|76408|1423|1|26|35994.40|0.10|0.02|N|O|1997-09-27|1997-07-20|1997-09-29|DELIVER IN PERSON|MAIL| patterns. regular, special| +11759|184674|2229|2|43|75622.81|0.04|0.04|N|O|1997-09-21|1997-07-16|1997-10-02|COLLECT COD|SHIP|lithely-- un| +11759|10221|222|3|49|55429.78|0.02|0.04|N|O|1997-08-19|1997-08-06|1997-08-27|COLLECT COD|REG AIR|pades are carefully aft| +11759|170886|8438|4|42|82188.96|0.09|0.04|N|O|1997-07-25|1997-09-04|1997-08-18|TAKE BACK RETURN|MAIL|heodolites. | +11759|80823|3332|5|5|9019.10|0.08|0.00|N|O|1997-06-27|1997-08-31|1997-06-30|DELIVER IN PERSON|SHIP|e slyly across | +11784|37331|7332|1|48|60879.84|0.07|0.00|R|F|1994-11-29|1994-11-18|1994-12-08|COLLECT COD|TRUCK|luffily permanently express package| +11785|111167|6190|1|28|32988.48|0.07|0.01|N|O|1998-10-25|1998-08-18|1998-10-26|DELIVER IN PERSON|RAIL|. regular, ironic acc| +11785|168910|6459|2|40|79156.40|0.03|0.01|N|O|1998-10-21|1998-09-25|1998-11-06|NONE|FOB| slyly ironic r| +11785|69774|4787|3|39|68007.03|0.07|0.08|N|O|1998-08-27|1998-09-20|1998-09-25|TAKE BACK RETURN|TRUCK|ccounts affi| +11785|83468|3469|4|19|27577.74|0.08|0.03|N|O|1998-09-01|1998-09-03|1998-09-17|TAKE BACK RETURN|RAIL|theodolites. ironic packages maint| +11785|42145|7154|5|14|15219.96|0.00|0.00|N|O|1998-06-29|1998-08-05|1998-07-04|DELIVER IN PERSON|FOB|. slyly ir| +11785|116866|4400|6|4|7531.44|0.03|0.02|N|O|1998-10-11|1998-07-29|1998-11-01|DELIVER IN PERSON|SHIP|al packages integrate. ide| +11786|65596|5597|1|43|67148.37|0.04|0.02|N|O|1998-04-18|1998-04-19|1998-05-16|DELIVER IN PERSON|RAIL|nal deposits| +11786|71546|4054|2|4|6070.16|0.02|0.03|N|O|1998-03-18|1998-05-17|1998-03-31|NONE|RAIL|o beans are never about the s| +11786|63462|8475|3|28|39912.88|0.09|0.02|N|O|1998-04-22|1998-04-19|1998-05-18|NONE|RAIL|c pains. quickly ironic deposits a| +11786|1511|6512|4|14|19775.14|0.00|0.08|N|O|1998-03-04|1998-05-11|1998-03-14|COLLECT COD|RAIL|kly express foxes. even, special theodoli| +11786|189786|4823|5|8|15006.24|0.06|0.04|N|O|1998-04-29|1998-04-25|1998-05-19|NONE|AIR|telets sleep. deposits affix slyly fi| +11786|131878|1879|6|3|5729.61|0.10|0.03|N|O|1998-05-05|1998-05-01|1998-05-23|DELIVER IN PERSON|MAIL|ully bold deposits. furiously bold ac| +11787|11888|6891|1|46|82794.48|0.07|0.08|A|F|1993-07-04|1993-07-16|1993-07-09|COLLECT COD|MAIL|ronic deposits within the| +11787|189315|6870|2|50|70215.50|0.09|0.01|R|F|1993-07-03|1993-07-08|1993-07-12|TAKE BACK RETURN|RAIL|s; slyly even foxes alongside of| +11787|9604|4605|3|21|31785.60|0.04|0.04|R|F|1993-07-29|1993-08-03|1993-08-09|NONE|FOB| pinto beans. s| +11787|10752|3254|4|13|21615.75|0.04|0.08|A|F|1993-08-24|1993-07-25|1993-09-18|DELIVER IN PERSON|TRUCK|nt excuses haggle theodolites. quickly | +11787|102075|9606|5|34|36620.38|0.09|0.02|R|F|1993-06-02|1993-06-26|1993-06-18|COLLECT COD|SHIP|furiously pending packages. | +11788|98555|1065|1|13|20196.15|0.01|0.07|N|O|1995-12-04|1995-12-21|1995-12-05|COLLECT COD|TRUCK|ar packages.| +11788|1133|3634|2|39|40331.07|0.08|0.04|N|O|1995-10-23|1995-11-21|1995-11-07|TAKE BACK RETURN|SHIP|lithely blithely fi| +11789|143008|551|1|15|15765.00|0.10|0.07|N|O|1995-10-27|1995-11-12|1995-11-14|NONE|FOB|ackages are. furiously ironic ideas about t| +11789|118697|1209|2|22|37745.18|0.00|0.05|N|O|1995-10-23|1996-01-05|1995-11-08|TAKE BACK RETURN|AIR|gle furiou| +11789|135265|292|3|24|31206.24|0.08|0.02|N|O|1996-01-14|1995-11-10|1996-01-17|TAKE BACK RETURN|TRUCK|egular, bold deposits. regular, bold packag| +11790|71474|3982|1|49|70828.03|0.02|0.06|A|F|1993-05-05|1993-03-10|1993-05-13|COLLECT COD|TRUCK|blithely special accounts. quickly regul| +11790|46789|9294|2|30|52073.40|0.06|0.03|A|F|1993-03-03|1993-03-21|1993-03-23|DELIVER IN PERSON|MAIL| haggle after the r| +11790|173734|1286|3|29|52424.17|0.02|0.08|R|F|1993-05-20|1993-03-05|1993-05-28|NONE|TRUCK|gular accounts. slyly ironic ac| +11790|146488|1517|4|25|38362.00|0.05|0.03|R|F|1993-02-06|1993-04-08|1993-03-04|TAKE BACK RETURN|REG AIR|he pinto beans sleep blithely above the bli| +11791|117959|2982|1|12|23723.40|0.09|0.01|N|O|1995-10-22|1995-10-22|1995-10-24|NONE|SHIP|e dependencies. slyl| +11791|122676|5189|2|23|39069.41|0.02|0.03|N|O|1995-10-27|1995-10-15|1995-11-16|NONE|MAIL|around the quickly even asymptotes. si| +11791|14234|4235|3|13|14926.99|0.04|0.05|N|O|1995-11-13|1995-10-13|1995-12-08|DELIVER IN PERSON|SHIP|he furiously pending platelets. blithely | +11816|83060|3061|1|45|46937.70|0.02|0.04|R|F|1995-05-10|1995-04-12|1995-05-18|COLLECT COD|REG AIR|l deposits sleep ironic requests. furiou| +11816|184013|6532|2|45|49365.45|0.04|0.01|A|F|1995-03-20|1995-04-05|1995-03-27|NONE|FOB|deposits according to th| +11816|99876|7404|3|21|39393.27|0.00|0.07|R|F|1995-04-29|1995-03-14|1995-04-30|TAKE BACK RETURN|RAIL|special ideas wake carefully| +11816|687|5688|4|11|17464.48|0.04|0.02|R|F|1995-04-12|1995-03-20|1995-05-04|NONE|REG AIR|h quickly even packages. furiously p| +11816|143014|557|5|18|19026.18|0.04|0.04|R|F|1995-04-13|1995-04-20|1995-04-24|COLLECT COD|RAIL|doubt pinto beans. furiously special req| +11817|100583|8114|1|25|39589.50|0.06|0.01|A|F|1994-07-09|1994-06-21|1994-07-15|TAKE BACK RETURN|MAIL|iously bold deposits x-ray slyly a| +11817|85593|610|2|15|23678.85|0.08|0.05|A|F|1994-07-16|1994-05-20|1994-07-23|NONE|MAIL|s. regular | +11817|145030|5031|3|2|2150.06|0.03|0.06|R|F|1994-08-01|1994-05-05|1994-08-26|NONE|AIR|ss ideas boost slyly. a| +11817|111693|9227|4|26|44321.94|0.04|0.05|R|F|1994-04-25|1994-05-09|1994-05-19|TAKE BACK RETURN|AIR|ironic instructions cajole | +11817|17214|7215|5|38|42985.98|0.03|0.00|A|F|1994-07-05|1994-06-24|1994-08-03|NONE|RAIL|cuses along the furiously regular foxe| +11817|109834|2345|6|28|51627.24|0.08|0.08|R|F|1994-06-11|1994-05-23|1994-06-24|DELIVER IN PERSON|TRUCK|wake carefully against the blithely regula| +11817|175093|5094|7|22|25697.98|0.09|0.00|A|F|1994-05-26|1994-06-12|1994-06-16|COLLECT COD|AIR| deposits nod slyly among| +11818|181964|1965|1|34|69562.64|0.00|0.02|A|F|1992-11-22|1992-11-27|1992-12-21|DELIVER IN PERSON|AIR|e of the bold packages. courts sleep care| +11818|62517|36|2|39|57700.89|0.08|0.08|R|F|1992-12-20|1992-10-31|1993-01-12|DELIVER IN PERSON|RAIL| accounts mold quickly. slyly regular packa| +11818|118818|3841|3|38|69798.78|0.04|0.00|A|F|1992-10-09|1992-10-10|1992-10-28|NONE|SHIP|, even pac| +11818|170209|210|4|27|34538.40|0.01|0.01|A|F|1992-12-19|1992-10-27|1993-01-17|DELIVER IN PERSON|AIR|sits sleep fluffily bold | +11818|91911|1912|5|4|7611.64|0.08|0.07|A|F|1992-12-11|1992-10-30|1993-01-05|DELIVER IN PERSON|RAIL|. special foxes are furiously inst| +11819|157846|5392|1|1|1903.84|0.10|0.00|R|F|1995-02-11|1995-03-30|1995-02-23|NONE|MAIL|kages sleep. even| +11819|112262|7285|2|49|62438.74|0.10|0.04|R|F|1995-01-20|1995-04-09|1995-01-27|NONE|MAIL|final dolphins. blithel| +11819|173904|1456|3|19|37580.10|0.01|0.01|A|F|1995-04-22|1995-02-24|1995-05-19|NONE|MAIL|ffily blithely even r| +11819|3405|3406|4|34|44485.60|0.03|0.01|R|F|1995-02-17|1995-03-02|1995-03-07|DELIVER IN PERSON|REG AIR|ckly regular deposits. quickl| +11820|85109|5110|1|14|15317.40|0.01|0.06|A|F|1995-05-10|1995-06-04|1995-05-19|TAKE BACK RETURN|FOB| the deposits. special ideas among t| +11820|14760|4761|2|36|60291.36|0.03|0.00|N|O|1995-06-26|1995-05-25|1995-07-24|DELIVER IN PERSON|FOB|boost. pinto beans use. slyly | +11820|58621|3632|3|33|52127.46|0.08|0.00|N|F|1995-06-15|1995-05-28|1995-07-13|DELIVER IN PERSON|SHIP|uests across the regular asympto| +11821|85037|7546|1|26|26572.78|0.09|0.01|A|F|1992-12-17|1993-02-27|1992-12-30|TAKE BACK RETURN|MAIL|sly unusual deposits sleep fluffily fin| +11821|13448|3449|2|49|66710.56|0.07|0.07|A|F|1993-01-23|1993-02-10|1993-02-22|TAKE BACK RETURN|TRUCK|st the even accounts. s| +11822|152854|400|1|1|1906.85|0.03|0.00|A|F|1994-04-12|1994-04-14|1994-04-15|COLLECT COD|TRUCK| instructions wake slyly thinly even ex| +11822|2186|7187|2|37|40262.66|0.04|0.08|R|F|1994-02-12|1994-03-01|1994-02-25|TAKE BACK RETURN|SHIP|es against the blith| +11822|139683|9684|3|35|60293.80|0.00|0.07|A|F|1994-04-18|1994-03-30|1994-05-12|DELIVER IN PERSON|REG AIR|ffily express instructions | +11822|37004|9508|4|36|33876.00|0.04|0.06|R|F|1994-03-10|1994-03-27|1994-03-21|TAKE BACK RETURN|TRUCK|, stealthy requests. furiousl| +11822|119583|9584|5|40|64103.20|0.07|0.07|A|F|1994-03-12|1994-02-20|1994-04-10|COLLECT COD|RAIL|ckages wake fluffily after the evenly flu| +11822|28735|8736|6|43|71540.39|0.04|0.04|R|F|1994-05-14|1994-03-15|1994-06-07|COLLECT COD|TRUCK|t the final foxes| +11822|136770|9284|7|17|30715.09|0.04|0.00|A|F|1994-02-15|1994-02-27|1994-02-27|DELIVER IN PERSON|TRUCK|hely final pinto beans against t| +11823|92919|2920|1|50|95595.50|0.06|0.07|N|O|1997-11-09|1998-01-01|1997-11-14|TAKE BACK RETURN|SHIP|ely regular ideas. bold accounts cajole. sl| +11823|87131|9640|2|35|39134.55|0.05|0.08|N|O|1997-10-14|1997-11-25|1997-10-29|COLLECT COD|AIR|eposits. spe| +11823|196627|9147|3|9|15512.58|0.00|0.05|N|O|1997-10-28|1997-12-25|1997-11-23|DELIVER IN PERSON|RAIL|fully. final, bold packages | +11823|93835|3836|4|24|43891.92|0.01|0.04|N|O|1997-12-08|1997-11-06|1998-01-03|TAKE BACK RETURN|FOB|asymptotes solve| +11823|83412|5921|5|21|29303.61|0.08|0.01|N|O|1998-01-16|1998-01-04|1998-01-25|COLLECT COD|MAIL|wake carefully unusual| +11823|90056|57|6|25|26151.25|0.00|0.08|N|O|1998-01-15|1997-12-05|1998-02-08|TAKE BACK RETURN|SHIP| quickly bold requests print carefu| +11848|116276|6277|1|28|36183.56|0.04|0.03|R|F|1994-03-21|1994-04-15|1994-03-31|DELIVER IN PERSON|SHIP|deas. regular | +11848|34938|7442|2|28|52442.04|0.09|0.02|R|F|1994-04-18|1994-05-19|1994-05-01|COLLECT COD|TRUCK| special deposits. instruct| +11849|163590|8623|1|45|74411.55|0.01|0.06|R|F|1993-06-02|1993-03-17|1993-06-10|TAKE BACK RETURN|SHIP|slyly pending pack| +11849|47258|4771|2|13|15668.25|0.00|0.02|R|F|1993-03-28|1993-04-18|1993-04-04|NONE|FOB| bold deposits. bold, regular requests| +11849|60470|5483|3|42|60079.74|0.09|0.03|A|F|1993-06-02|1993-04-29|1993-06-15|COLLECT COD|FOB| deposits cajole | +11850|180283|7838|1|6|8179.68|0.08|0.06|N|O|1997-08-24|1997-09-26|1997-08-29|TAKE BACK RETURN|TRUCK|ic accounts. fl| +11850|3425|3426|2|19|25239.98|0.02|0.01|N|O|1997-09-20|1997-10-20|1997-10-02|TAKE BACK RETURN|FOB|ss packages. quickly final fo| +11850|150437|2953|3|12|17849.16|0.07|0.05|N|O|1997-09-21|1997-10-04|1997-10-20|TAKE BACK RETURN|TRUCK|fluffily regular accounts sleep| +11850|181793|9348|4|39|73116.81|0.05|0.00|N|O|1997-09-19|1997-10-29|1997-10-19|DELIVER IN PERSON|AIR|s. blithely unusual w| +11850|185198|2753|5|26|33362.94|0.00|0.02|N|O|1997-10-16|1997-09-24|1997-10-20|TAKE BACK RETURN|REG AIR|he furiously even p| +11850|13927|1431|6|2|3681.84|0.06|0.06|N|O|1997-08-07|1997-10-03|1997-08-18|COLLECT COD|FOB|s nod alongside of the final, regula| +11850|56015|6016|7|49|47579.49|0.09|0.03|N|O|1997-08-08|1997-09-05|1997-08-21|COLLECT COD|TRUCK|refully pen| +11851|31080|8590|1|38|38421.04|0.08|0.01|N|O|1996-09-10|1996-09-06|1996-09-12|TAKE BACK RETURN|MAIL|print furiously | +11851|156143|6144|2|11|13190.54|0.05|0.01|N|O|1996-08-19|1996-10-06|1996-09-09|TAKE BACK RETURN|RAIL|ess theodolites. even foxe| +11851|95204|5205|3|12|14390.40|0.06|0.00|N|O|1996-10-20|1996-09-19|1996-10-28|COLLECT COD|REG AIR| ironic platelets boost | +11851|77554|7555|4|47|71982.85|0.06|0.06|N|O|1996-10-05|1996-09-22|1996-10-11|DELIVER IN PERSON|TRUCK|uctions among | +11851|36520|1527|5|35|50978.20|0.08|0.02|N|O|1996-10-13|1996-09-09|1996-10-22|DELIVER IN PERSON|AIR|ts wake above the furious| +11852|105648|3179|1|36|59531.04|0.10|0.03|A|F|1993-11-22|1993-10-30|1993-12-18|COLLECT COD|RAIL|o nag slyly regular theodolites. regular in| +11852|12869|373|2|35|62365.10|0.02|0.06|A|F|1993-11-27|1993-11-21|1993-12-04|TAKE BACK RETURN|FOB|re carefully along| +11852|72676|5184|3|35|57703.45|0.00|0.05|A|F|1993-11-28|1993-10-20|1993-12-26|NONE|AIR|bold, unus| +11852|49192|9193|4|30|34235.70|0.02|0.05|A|F|1993-10-21|1993-12-03|1993-10-29|NONE|AIR| furiously ruthless packages. qui| +11852|154713|9744|5|6|10606.26|0.10|0.03|A|F|1993-09-30|1993-10-09|1993-10-10|DELIVER IN PERSON|SHIP|es wake quickly special| +11852|54803|7309|6|50|87890.00|0.05|0.05|R|F|1993-10-31|1993-10-16|1993-11-12|COLLECT COD|FOB|its cajole quickly toward the ins| +11852|59727|7243|7|34|57348.48|0.01|0.03|R|F|1993-09-29|1993-11-21|1993-10-23|COLLECT COD|AIR|blithely. bold patterns haggle sly| +11853|16317|1320|1|33|40699.23|0.02|0.08|N|O|1996-04-11|1996-02-01|1996-05-10|TAKE BACK RETURN|REG AIR| detect. idly speci| +11853|32556|7563|2|22|32748.10|0.09|0.04|N|O|1996-04-22|1996-03-19|1996-05-18|COLLECT COD|RAIL|d escapades. blithely final| +11853|161909|1910|3|43|84748.70|0.10|0.08|N|O|1996-02-27|1996-01-30|1996-02-28|DELIVER IN PERSON|AIR|nic deposits. furiou| +11853|187947|466|4|22|44768.68|0.03|0.07|N|O|1996-03-10|1996-02-04|1996-03-29|NONE|RAIL|unts. regular requests sleep. carefully ir| +11853|9030|4031|5|7|6573.21|0.02|0.03|N|O|1996-02-09|1996-02-03|1996-03-06|DELIVER IN PERSON|AIR| carefully ironic pac| +11854|174841|2393|1|7|13410.88|0.01|0.02|N|O|1997-07-08|1997-07-04|1997-07-18|TAKE BACK RETURN|MAIL|ess foxes. furiously regular platelets enga| +11854|143639|3640|2|17|28604.71|0.09|0.08|N|O|1997-05-07|1997-05-11|1997-06-06|DELIVER IN PERSON|AIR|eas cajole furiously | +11854|136267|6268|3|45|58646.70|0.04|0.02|N|O|1997-07-07|1997-06-20|1997-07-20|DELIVER IN PERSON|SHIP|ular accounts. slow decoys again| +11854|39094|1598|4|4|4132.36|0.04|0.08|N|O|1997-04-30|1997-06-10|1997-05-04|NONE|FOB|into beans. furiously special accounts p| +11854|51436|6447|5|27|37460.61|0.06|0.07|N|O|1997-08-03|1997-05-28|1997-08-31|DELIVER IN PERSON|REG AIR|beans sleep slyly against the sl| +11854|84540|9557|6|27|41162.58|0.01|0.06|N|O|1997-04-29|1997-05-22|1997-05-02|NONE|TRUCK|o the pending theodolites. furiously| +11854|63535|8548|7|40|59941.20|0.00|0.06|N|O|1997-07-05|1997-06-21|1997-07-11|COLLECT COD|TRUCK|lithely careful| +11855|31042|6049|1|14|13622.56|0.06|0.06|N|O|1996-07-09|1996-06-28|1996-08-02|DELIVER IN PERSON|FOB|l packages. packages sleep among the| +11855|107841|352|2|32|59162.88|0.08|0.03|N|O|1996-07-07|1996-07-01|1996-07-13|COLLECT COD|TRUCK|ts use. express r| +11855|83600|6109|3|32|50675.20|0.01|0.08|N|O|1996-04-29|1996-05-07|1996-05-08|TAKE BACK RETURN|SHIP|oss the fluffily iro| +11880|136637|4177|1|19|31798.97|0.10|0.07|R|F|1994-06-02|1994-05-25|1994-06-04|NONE|SHIP|al deposits believe according to| +11880|46728|6729|2|23|38518.56|0.06|0.03|A|F|1994-05-23|1994-04-29|1994-06-03|DELIVER IN PERSON|TRUCK|, express packages are never along| +11880|147320|2349|3|30|41019.60|0.03|0.07|R|F|1994-05-30|1994-05-05|1994-06-08|COLLECT COD|TRUCK|ffy foxes against the ent| +11880|2341|7342|4|9|11190.06|0.05|0.02|A|F|1994-06-21|1994-06-18|1994-07-16|TAKE BACK RETURN|REG AIR|ic courts mold quickly. f| +11881|14798|9801|1|17|29117.43|0.04|0.07|R|F|1992-08-03|1992-05-20|1992-08-16|COLLECT COD|TRUCK|ts haggle carefully near the bold, silent | +11881|105940|961|2|4|7783.76|0.09|0.03|R|F|1992-07-06|1992-05-14|1992-08-05|TAKE BACK RETURN|FOB|oxes was carefully about the pen| +11881|128573|3598|3|25|40039.25|0.07|0.00|R|F|1992-06-27|1992-05-30|1992-06-28|COLLECT COD|FOB|accounts. packages along the sly| +11881|126027|8540|4|20|21060.40|0.01|0.04|R|F|1992-05-27|1992-06-13|1992-06-16|NONE|FOB|nts sleep slyly instructions. furi| +11882|73655|8670|1|22|35830.30|0.06|0.08|R|F|1992-05-18|1992-03-07|1992-06-06|NONE|REG AIR|anent instructions nag s| +11883|61448|6461|1|8|11275.52|0.00|0.08|N|O|1998-09-13|1998-07-29|1998-10-09|TAKE BACK RETURN|FOB|s about the carefu| +11883|151517|1518|2|2|3137.02|0.04|0.00|N|O|1998-08-19|1998-08-16|1998-09-08|NONE|SHIP|tructions: fluffily ironic | +11884|152078|4594|1|20|22601.40|0.02|0.00|N|O|1998-08-24|1998-08-04|1998-09-12|NONE|TRUCK|gainst the unusual, spe| +11884|167666|5215|2|6|10401.96|0.00|0.01|N|O|1998-06-03|1998-07-20|1998-07-01|NONE|RAIL|er the furiously ironic pi| +11884|151966|1967|3|44|88790.24|0.05|0.08|N|O|1998-08-11|1998-07-12|1998-08-26|COLLECT COD|FOB|he even foxes. furiously final pint| +11885|72310|4818|1|48|61550.88|0.04|0.03|N|O|1995-11-09|1995-11-26|1995-11-10|DELIVER IN PERSON|FOB| the carefully silent dugouts. pinto| +11885|98046|8047|2|36|37585.44|0.00|0.04|N|O|1995-11-30|1995-11-24|1995-12-15|DELIVER IN PERSON|FOB|iously after the ironic deposi| +11885|45969|5970|3|39|74683.44|0.05|0.07|N|O|1995-11-24|1995-12-10|1995-12-07|TAKE BACK RETURN|AIR|the never even ideas. qu| +11885|193976|3977|4|36|74518.92|0.05|0.03|N|O|1995-11-17|1996-01-10|1995-12-08|DELIVER IN PERSON|FOB|eodolites cajole always after th| +11885|146431|1460|5|15|22161.45|0.02|0.01|N|O|1996-01-02|1995-12-15|1996-01-30|COLLECT COD|SHIP|ong the regular requests| +11885|60199|2706|6|5|5795.95|0.10|0.01|N|O|1996-01-06|1995-12-14|1996-01-24|NONE|FOB|ely ironic packages. quickly regular | +11886|179932|4967|1|38|76453.34|0.09|0.02|A|F|1993-05-01|1993-04-26|1993-05-24|TAKE BACK RETURN|MAIL|es. thin, final accoun| +11886|113313|8336|2|17|22547.27|0.09|0.04|R|F|1993-06-23|1993-05-17|1993-07-18|DELIVER IN PERSON|RAIL|t. furiously regular accounts are. slyly si| +11886|47848|2857|3|5|8979.20|0.02|0.06|R|F|1993-07-10|1993-05-23|1993-08-09|COLLECT COD|FOB|riously. express ac| +11886|176399|3951|4|14|20655.46|0.01|0.05|R|F|1993-03-19|1993-05-21|1993-03-31|COLLECT COD|TRUCK|final pinto beans cajole blithel| +11886|121483|9020|5|10|15044.80|0.04|0.01|R|F|1993-03-20|1993-04-15|1993-04-11|DELIVER IN PERSON|AIR|y quick theodolites sleep blithel| +11887|137597|2624|1|50|81729.50|0.06|0.04|R|F|1995-05-09|1995-04-29|1995-05-10|NONE|REG AIR| use regular requests. final | +11887|192185|9743|2|32|40869.76|0.05|0.04|A|F|1995-05-13|1995-05-28|1995-06-10|NONE|TRUCK|he requests. bold, pending pack| +11887|42904|417|3|37|68335.30|0.04|0.03|A|F|1995-04-19|1995-05-17|1995-05-10|NONE|REG AIR|ts hinder quickl| +11887|86516|9025|4|50|75125.50|0.02|0.05|R|F|1995-03-17|1995-05-06|1995-04-08|DELIVER IN PERSON|TRUCK|slyly ironic theodolites na| +11887|63305|824|5|29|36780.70|0.03|0.01|N|F|1995-06-01|1995-05-20|1995-06-28|COLLECT COD|RAIL|st the pending, quiet foxes; carefully| +11887|163549|6066|6|29|46763.66|0.08|0.06|A|F|1995-04-03|1995-06-07|1995-04-04|DELIVER IN PERSON|REG AIR|deas. furiously re| +11912|197495|2534|1|46|73254.54|0.06|0.05|A|F|1994-03-14|1994-04-09|1994-04-13|COLLECT COD|FOB|y special instruct| +11912|82565|2566|2|30|46426.80|0.07|0.08|R|F|1994-04-16|1994-05-02|1994-04-20|COLLECT COD|MAIL|e regular, regular fra| +11912|60632|633|3|15|23889.45|0.00|0.06|A|F|1994-04-21|1994-04-03|1994-04-22|DELIVER IN PERSON|SHIP|ake furiously alongside of t| +11912|30804|3308|4|31|53778.80|0.00|0.06|A|F|1994-06-15|1994-05-09|1994-06-28|NONE|SHIP|ng instructions. car| +11912|113627|8650|5|7|11484.34|0.01|0.00|A|F|1994-03-08|1994-05-14|1994-03-26|NONE|AIR|lly regular | +11912|126193|8706|6|23|28041.37|0.03|0.04|R|F|1994-04-17|1994-04-27|1994-04-22|DELIVER IN PERSON|TRUCK|ly permanent | +11912|112086|9620|7|36|39530.88|0.00|0.02|A|F|1994-05-09|1994-04-19|1994-05-17|NONE|AIR|ic instructions. slyly | +11913|23415|8420|1|16|21414.56|0.07|0.06|A|F|1995-01-15|1995-01-16|1995-01-27|COLLECT COD|TRUCK|es nag slyly. sentiments sleep carefully| +11913|125424|2961|2|9|13044.78|0.04|0.02|A|F|1994-12-05|1995-01-13|1995-01-04|DELIVER IN PERSON|TRUCK|requests sleep blithely along the regul| +11913|652|3153|3|16|24842.40|0.00|0.00|A|F|1995-02-15|1995-02-11|1995-03-03|COLLECT COD|RAIL|l foxes lose after the care| +11913|156800|4346|4|10|18568.00|0.04|0.07|R|F|1995-01-19|1994-12-22|1995-01-28|COLLECT COD|FOB|ses. quickly special theodolites afte| +11913|130334|7874|5|46|62759.18|0.03|0.07|R|F|1995-01-31|1994-12-25|1995-02-08|TAKE BACK RETURN|REG AIR|he ironic requests. blithe| +11913|116994|4528|6|15|30164.85|0.06|0.06|A|F|1995-01-10|1995-01-07|1995-01-18|DELIVER IN PERSON|AIR|osits. blithely unusual sent| +11914|140869|5898|1|13|24828.18|0.07|0.02|N|O|1997-02-03|1996-12-15|1997-02-22|NONE|SHIP| detect quickly across the fu| +11914|176472|4024|2|14|21678.58|0.00|0.02|N|O|1997-01-09|1996-12-16|1997-01-25|NONE|RAIL|ss the quickly ironic| +11914|157032|9548|3|6|6534.18|0.03|0.04|N|O|1997-02-13|1997-01-05|1997-02-16|DELIVER IN PERSON|TRUCK|accounts cajole s| +11915|129650|4675|1|34|57108.10|0.03|0.03|N|O|1995-10-10|1995-08-16|1995-10-13|COLLECT COD|SHIP|e slyly across the final accounts-- i| +11915|20078|5083|2|31|30940.17|0.09|0.06|N|O|1995-07-20|1995-08-24|1995-08-06|COLLECT COD|AIR|ns sleep. carefully even packages | +11916|159823|2339|1|8|15062.56|0.00|0.00|N|O|1996-02-25|1996-03-09|1996-03-09|NONE|REG AIR|he quickly even packages boo| +11916|129893|9894|2|2|3845.78|0.05|0.03|N|O|1996-01-08|1996-01-24|1996-01-09|COLLECT COD|SHIP|lets. theodolites print deposits! slyly | +11917|184689|9726|1|7|12415.76|0.10|0.02|R|F|1992-07-17|1992-07-18|1992-08-14|TAKE BACK RETURN|REG AIR|nusual dependencies. quickl| +11917|67588|95|2|19|29556.02|0.00|0.02|R|F|1992-07-17|1992-07-12|1992-07-20|COLLECT COD|REG AIR|oss the fl| +11917|138434|5974|3|16|23558.88|0.10|0.05|R|F|1992-07-13|1992-08-07|1992-08-08|COLLECT COD|AIR|uests. deposits wake furiously. courts sle| +11917|59602|7118|4|49|76518.40|0.06|0.01|R|F|1992-07-05|1992-07-13|1992-07-16|COLLECT COD|TRUCK|g, bold instructi| +11918|54335|1851|1|36|46415.88|0.03|0.03|N|O|1995-07-18|1995-08-18|1995-07-19|DELIVER IN PERSON|MAIL|leep at the deposits| +11918|7224|4725|2|23|26018.06|0.10|0.00|N|O|1995-11-04|1995-09-01|1995-11-30|COLLECT COD|SHIP|nding instructio| +11919|58936|1442|1|42|79587.06|0.08|0.07|A|F|1993-05-24|1993-05-20|1993-05-31|TAKE BACK RETURN|SHIP|oxes lose furiously according to the furio| +11919|134258|4259|2|3|3876.75|0.10|0.03|A|F|1993-05-18|1993-06-07|1993-05-29|TAKE BACK RETURN|RAIL|express theodolites. carefully i| +11919|62446|2447|3|29|40844.76|0.08|0.01|A|F|1993-04-29|1993-06-06|1993-05-03|NONE|MAIL|ily special a| +11944|130822|823|1|3|5558.46|0.04|0.00|N|O|1996-07-13|1996-06-23|1996-07-25|NONE|SHIP| accounts. car| +11944|109399|1910|2|14|19717.46|0.09|0.00|N|O|1996-08-19|1996-07-30|1996-09-02|NONE|MAIL|y special deposits. furiou| +11944|62821|7834|3|3|5351.46|0.07|0.05|N|O|1996-06-26|1996-08-14|1996-07-10|NONE|SHIP| after the carefully exp| +11944|21741|6746|4|46|76486.04|0.08|0.06|N|O|1996-08-04|1996-07-05|1996-08-12|TAKE BACK RETURN|FOB|ggle pending, special ideas. fo| +11944|191605|9163|5|8|13572.80|0.06|0.06|N|O|1996-06-16|1996-06-28|1996-06-22|NONE|MAIL|l, even instructions cou| +11945|52823|5329|1|5|8879.10|0.08|0.02|A|F|1992-05-01|1992-03-19|1992-05-15|COLLECT COD|REG AIR|etect fluffily ag| +11945|182055|7092|2|1|1137.05|0.03|0.02|R|F|1992-02-06|1992-03-02|1992-02-18|DELIVER IN PERSON|MAIL|atelets will have to wake slyly abou| +11945|182974|5493|3|10|20569.70|0.05|0.05|A|F|1992-04-21|1992-03-24|1992-05-03|DELIVER IN PERSON|FOB|uests detect ironic, ironic re| +11945|38457|961|4|39|54422.55|0.09|0.05|R|F|1992-01-31|1992-02-25|1992-02-15|COLLECT COD|TRUCK|ngside of the quick| +11945|136331|3871|5|50|68366.50|0.01|0.03|A|F|1992-01-26|1992-03-21|1992-02-21|NONE|FOB|the furiously daring excuses haggle dari| +11945|104180|6691|6|7|8289.26|0.09|0.02|A|F|1992-03-14|1992-03-15|1992-04-02|TAKE BACK RETURN|AIR|osits sleep. slyly even foxes boost. even p| +11946|159475|1991|1|30|46034.10|0.06|0.04|N|O|1997-11-27|1997-12-25|1997-12-21|COLLECT COD|SHIP| theodolit| +11946|84799|2324|2|13|23189.27|0.03|0.05|N|O|1997-11-26|1998-01-01|1997-12-09|NONE|TRUCK|en excuses. s| +11947|91839|6858|1|13|23800.79|0.08|0.07|N|O|1996-02-15|1996-01-05|1996-03-08|COLLECT COD|MAIL|uffily express ide| +11947|133481|5995|2|24|36347.52|0.05|0.02|N|O|1995-11-27|1996-02-01|1995-12-23|NONE|RAIL|ding instructions wak| +11947|199062|9063|3|21|24382.26|0.03|0.08|N|O|1996-02-01|1996-01-07|1996-02-11|TAKE BACK RETURN|FOB|ironic instructions. reg| +11947|22101|2102|4|3|3069.30|0.10|0.02|N|O|1996-02-22|1995-12-28|1996-03-08|TAKE BACK RETURN|RAIL|s impress furiously. theodolites | +11948|4962|9963|1|8|14935.68|0.05|0.03|A|F|1992-11-03|1992-11-11|1992-11-30|NONE|TRUCK| bold requests among the ironic e| +11948|188245|764|2|26|34664.24|0.07|0.00|A|F|1992-09-20|1992-10-21|1992-09-30|DELIVER IN PERSON|RAIL|ross the pin| +11948|20660|8167|3|34|53742.44|0.06|0.04|R|F|1992-12-06|1992-10-31|1992-12-25|NONE|AIR|ic packages. quickly pending p| +11948|25939|8442|4|50|93246.50|0.04|0.08|R|F|1992-12-08|1992-11-16|1992-12-17|NONE|SHIP|ts. pending instruction| +11949|45359|5360|1|28|36521.80|0.04|0.06|R|F|1993-02-03|1993-01-02|1993-03-03|DELIVER IN PERSON|AIR|le carefully even| +11949|143768|8797|2|33|59788.08|0.01|0.03|R|F|1993-01-26|1992-12-28|1993-02-13|TAKE BACK RETURN|MAIL|around the| +11950|38721|3728|1|35|58090.20|0.03|0.08|N|O|1996-01-28|1996-03-01|1996-02-23|DELIVER IN PERSON|FOB|y regular accounts. dolphins mo| +11950|170533|534|2|19|30467.07|0.00|0.07|N|O|1996-01-20|1996-02-13|1996-01-23|TAKE BACK RETURN|SHIP|er the quickly ironic cour| +11950|131884|6911|3|34|65139.92|0.01|0.03|N|O|1996-01-12|1996-02-15|1996-02-02|DELIVER IN PERSON|MAIL|ts are furiously along the sly| +11951|94431|4432|1|24|34210.32|0.02|0.03|A|F|1995-04-29|1995-03-04|1995-05-28|COLLECT COD|AIR|e packages-- deposits d| +11951|97559|2578|2|30|46696.50|0.05|0.03|A|F|1995-04-07|1995-03-10|1995-04-21|COLLECT COD|RAIL|packages are against the express| +11951|72574|96|3|47|72688.79|0.00|0.08|A|F|1995-05-03|1995-03-31|1995-05-07|DELIVER IN PERSON|RAIL|against the quickly even requests. quickl| +11976|11907|6910|1|24|43653.60|0.08|0.01|N|O|1998-04-11|1998-05-06|1998-04-27|TAKE BACK RETURN|TRUCK| along the regular accounts. sil| +11976|110589|5612|2|49|78379.42|0.05|0.02|N|O|1998-05-09|1998-05-11|1998-06-01|NONE|MAIL|nal platelets. regular excu| +11976|62115|4622|3|45|48469.95|0.01|0.08|N|O|1998-05-20|1998-06-12|1998-05-26|DELIVER IN PERSON|RAIL|ent packages use slyl| +11977|89459|4476|1|38|55041.10|0.07|0.01|N|O|1998-03-07|1998-05-07|1998-03-08|COLLECT COD|REG AIR|deas haggle among the silent dolphins.| +11977|133533|8560|2|37|57961.61|0.01|0.02|N|O|1998-03-21|1998-05-06|1998-04-11|NONE|AIR|ss dependencies are slyly. pi| +11977|86885|9394|3|44|82362.72|0.06|0.02|N|O|1998-04-29|1998-05-08|1998-05-23|DELIVER IN PERSON|MAIL|final, regular dependencies in| +11977|68788|1295|4|21|36892.38|0.05|0.03|N|O|1998-03-18|1998-03-27|1998-03-21|NONE|RAIL|as. instructions use. | +11977|112848|5360|5|5|9304.20|0.00|0.01|N|O|1998-05-07|1998-05-04|1998-05-15|DELIVER IN PERSON|MAIL|ake blithe t| +11977|35142|2652|6|11|11848.54|0.10|0.06|N|O|1998-05-23|1998-04-07|1998-06-07|TAKE BACK RETURN|REG AIR|efully across the slyly ir| +11978|135059|2599|1|44|48138.20|0.10|0.08|N|O|1996-01-20|1996-03-27|1996-01-21|NONE|MAIL|express pinto beans boost| +11978|129508|9509|2|33|50737.50|0.07|0.04|N|O|1996-03-28|1996-02-14|1996-04-16|DELIVER IN PERSON|AIR|eposits thrash about the fu| +11978|34142|4143|3|28|30131.92|0.09|0.04|N|O|1996-04-26|1996-04-07|1996-05-05|NONE|TRUCK|cies haggle bli| +11978|10217|5220|4|14|15780.94|0.08|0.04|N|O|1996-03-21|1996-02-19|1996-03-31|DELIVER IN PERSON|SHIP| frays x-ray furiousl| +11978|106461|8972|5|15|22011.90|0.08|0.04|N|O|1996-04-14|1996-04-01|1996-04-28|COLLECT COD|SHIP|terns. silent, pendin| +11978|88059|3076|6|45|47117.25|0.01|0.08|N|O|1996-03-31|1996-03-13|1996-04-21|TAKE BACK RETURN|FOB|r notornis. silent, special deposits | +11978|196345|6346|7|34|49005.56|0.06|0.02|N|O|1996-05-12|1996-03-28|1996-06-07|NONE|MAIL|ickly ironic deposits hang on | +11979|154222|9253|1|9|11485.98|0.09|0.06|N|O|1997-09-15|1997-11-02|1997-09-16|NONE|FOB|kly final requests along the carefully ev| +11979|3986|8987|2|13|24569.74|0.08|0.07|N|O|1997-12-30|1997-11-20|1998-01-15|TAKE BACK RETURN|REG AIR|gular instructions. a| +11979|182719|5238|3|30|54051.30|0.09|0.03|N|O|1997-10-12|1997-12-02|1997-11-11|NONE|FOB|he fluffily final platelets. fluf| +11979|150683|5714|4|50|86684.00|0.01|0.07|N|O|1997-11-26|1997-10-09|1997-12-23|NONE|RAIL|eep against the silently ir| +11979|128028|3053|5|45|47520.90|0.05|0.01|N|O|1997-12-24|1997-11-08|1998-01-09|TAKE BACK RETURN|SHIP|nts across the slyly ironic packages boost | +11979|158910|8911|6|7|13782.37|0.00|0.01|N|O|1997-12-14|1997-10-08|1997-12-23|NONE|FOB|e quietly ironic foxes. blithe| +11980|22145|7150|1|29|30947.06|0.02|0.04|N|O|1998-05-27|1998-06-25|1998-05-30|COLLECT COD|FOB|gular waters. furiously final ins| +11980|179475|4510|2|27|41970.69|0.05|0.06|N|O|1998-07-27|1998-06-23|1998-08-14|NONE|MAIL|le above t| +11981|191639|4159|1|28|48457.64|0.04|0.03|A|F|1992-03-23|1992-04-25|1992-04-21|DELIVER IN PERSON|TRUCK|equests about the even pinto | +11981|64643|4644|2|7|11253.48|0.09|0.04|R|F|1992-04-04|1992-06-10|1992-04-25|NONE|AIR|oxes. furiously regu| +11981|39615|7125|3|38|59075.18|0.03|0.05|R|F|1992-04-06|1992-05-30|1992-04-29|DELIVER IN PERSON|FOB|fluffily aft| +11982|186342|8861|1|21|29995.14|0.06|0.01|N|O|1996-09-21|1996-09-14|1996-10-09|TAKE BACK RETURN|REG AIR|se after the furiously unus| +11982|39576|9577|2|22|33342.54|0.05|0.05|N|O|1996-11-20|1996-10-05|1996-12-18|DELIVER IN PERSON|SHIP|ironic deposits! fluffil| +11982|152727|2728|3|29|51611.88|0.10|0.07|N|O|1996-10-03|1996-09-27|1996-10-18|DELIVER IN PERSON|AIR|e slyly carefully pending foxes. d| +11982|79490|1998|4|8|11755.92|0.02|0.07|N|O|1996-09-28|1996-09-10|1996-10-27|DELIVER IN PERSON|FOB|in accounts try to cajole always. f| +11982|187246|9765|5|19|25331.56|0.01|0.05|N|O|1996-10-22|1996-11-06|1996-11-06|TAKE BACK RETURN|MAIL|ly. slyly even deposits sleep | +11983|180642|8197|1|15|25839.60|0.06|0.08|A|F|1993-08-09|1993-05-17|1993-08-28|DELIVER IN PERSON|RAIL|ticing foxes use fluffily ar| +11983|38001|8002|2|20|18780.00|0.00|0.02|A|F|1993-04-24|1993-06-07|1993-04-29|NONE|REG AIR|wake against | +11983|82749|5258|3|9|15585.66|0.09|0.03|R|F|1993-07-14|1993-07-02|1993-07-16|NONE|AIR|sts haggle. slyly regular| +11983|154709|2255|4|12|21164.40|0.07|0.07|A|F|1993-06-06|1993-07-07|1993-06-11|DELIVER IN PERSON|MAIL|sits. carefully regular| +12008|111725|9259|1|7|12157.04|0.08|0.06|A|F|1993-09-12|1993-09-02|1993-09-27|COLLECT COD|MAIL|ole deposits. tithes use fluffily pac| +12008|148138|8139|2|44|52189.72|0.05|0.04|R|F|1993-09-20|1993-07-17|1993-09-21|COLLECT COD|RAIL| regular accounts| diff --git a/batch-tool/src/test/resources/tpch/insert-1g-2/orders.tbl.u1 b/batch-tool/src/test/resources/tpch/insert-1g-2/orders.tbl.u1 new file mode 100644 index 0000000..6a44af4 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-1g-2/orders.tbl.u1 @@ -0,0 +1,1500 @@ +9|12658|O|129872.68|1998-07-06|4-NOT SPECIFIED|Clerk#000000248|0| blithely final packages cajole. regular waters are final requests. regular ac| +10|38197|O|130153.51|1996-09-10|1-URGENT|Clerk#000000145|0|ironic, even requests| +11|101651|F|295927.93|1993-06-15|4-NOT SPECIFIED|Clerk#000000408|0| quickly. slyly even | +12|88408|O|371779.57|1996-11-21|2-HIGH|Clerk#000000899|0|le furiously final excuses. sl| +13|111952|O|58354.50|1996-04-19|2-HIGH|Clerk#000000149|0|arefully blithely close requests. carefully final asymptotes haggle furio| +14|118573|F|95812.58|1993-12-13|2-HIGH|Clerk#000000122|0|uffily. carefully special ideas after | +15|96898|O|64649.43|1996-07-13|1-URGENT|Clerk#000000408|0| even accounts sleep among the carefully ironic dependencies. final, iron| +40|135805|O|121436.52|1996-09-29|5-LOW|Clerk#000000232|0|re above the deposits. even sauternes cajole against the bold, pending shea| +41|46997|F|233200.46|1993-09-24|5-LOW|Clerk#000000277|0|ts haggle at the ironic ideas. slyly even instructions| +42|117268|F|159717.57|1992-03-16|4-NOT SPECIFIED|Clerk#000000670|0|ke against the final, pending deposits. deposits among t| +43|58051|F|163858.97|1992-08-31|5-LOW|Clerk#000000467|0|heodolites sleep carefu| +44|60541|O|44016.25|1995-08-14|5-LOW|Clerk#000000684|0|sual packages. blithely express accounts are| +45|31363|O|61682.97|1996-10-05|4-NOT SPECIFIED|Clerk#000000885|0|ending ideas. fluffily express asymptotes | +46|143791|O|168539.33|1998-03-01|2-HIGH|Clerk#000000256|0|s boost carefully among the slyly bold theodol| +47|25760|O|12055.93|1995-12-05|3-MEDIUM|Clerk#000000900|0|deposits. blithely express depos| +72|39053|F|95216.70|1992-02-08|5-LOW|Clerk#000000843|0| closely after the slyly ironic deposits. accounts cajole quickly ir| +73|110777|O|75431.31|1998-05-11|4-NOT SPECIFIED|Clerk#000000443|0|kages cajole slyly above the slyly unusual requests. slyly speci| +74|20698|F|209021.00|1994-11-22|1-URGENT|Clerk#000000989|0|arefully along the carefully furious dependencies. quickly ir| +75|143965|F|26988.88|1992-08-29|4-NOT SPECIFIED|Clerk#000000087|0| final sauternes print carefully according to the quickly s| +76|88862|O|185216.72|1998-06-17|2-HIGH|Clerk#000000396|0|rts. regular pinto beans sleep. final requests sleep carefully. iron| +77|97867|O|298520.50|1998-05-30|4-NOT SPECIFIED|Clerk#000000196|0|yly bold foxes cajo| +78|78065|F|296376.10|1992-05-07|3-MEDIUM|Clerk#000000791|0|e furiously furiously sile| +79|125797|O|288479.86|1995-06-22|4-NOT SPECIFIED|Clerk#000000646|0|ns. quickly even attai| +104|143834|O|226658.87|1998-02-06|1-URGENT|Clerk#000000956|0|ial requests sleep quickly acc| +105|17048|F|192879.03|1993-09-29|5-LOW|Clerk#000000103|0|dencies wake carefully about the bold, ironic deposits. speci| +106|20848|O|197821.25|1997-11-25|1-URGENT|Clerk#000000020|0|ly unusual packages sleep slyly above the fur| +107|141178|F|139052.72|1993-12-16|1-URGENT|Clerk#000000780|0|quickly ironic requests. pending, ironic accounts grow. carefull| +108|70580|O|299894.72|1996-09-09|4-NOT SPECIFIED|Clerk#000000058|0| regular requests. quickly special accounts nag along the regularly i| +109|25198|F|264753.66|1993-10-20|5-LOW|Clerk#000000134|0|ole fluffily according to the quickly regular request| +110|41374|O|186392.18|1998-06-29|4-NOT SPECIFIED|Clerk#000000769|0|, even foxes over the even requests sleep carefully across the ideas. fu| +111|111019|F|122839.83|1994-09-02|2-HIGH|Clerk#000000734|0|ccounts. final excuses sleep carefully. bold escapades wake stealthily fin| +136|37736|F|181755.17|1992-05-17|3-MEDIUM|Clerk#000000715|0|structions boost carefully among the final, iron| +137|23644|F|324142.70|1993-10-14|5-LOW|Clerk#000000279|0|ending requests. regular deposits across the care| +138|17186|O|155019.51|1997-01-22|3-MEDIUM|Clerk#000000332|0|yly final instructions use requests. quickly | +139|87446|F|118204.33|1993-04-15|2-HIGH|Clerk#000000849|0|ffily express ideas cajole furiously. carefully final | +140|1507|F|179214.44|1992-03-11|3-MEDIUM|Clerk#000000393|0|y quick platelets wake slyly fluffily final packages. slyly speci| +141|128125|O|6317.59|1996-11-03|3-MEDIUM|Clerk#000000609|0|de of the packages.| +142|128530|P|176164.16|1995-04-11|1-URGENT|Clerk#000000762|0|packages. express deposits are | +143|37519|O|70250.11|1995-08-22|2-HIGH|Clerk#000000287|0|ounts. furiously slow foxes must have to kindle special,| +168|122161|O|131621.48|1997-06-15|1-URGENT|Clerk#000000368|0|luffily regular deposits. furiously ironic theodolites print| +169|99443|F|79427.68|1992-03-19|4-NOT SPECIFIED|Clerk#000000446|0|tions. courts detect. iro| +170|34915|F|154174.50|1994-02-01|2-HIGH|Clerk#000000290|0|e the regular theodolites. ironic packages use blithely along the ev| +171|7982|O|334733.87|1996-04-19|2-HIGH|Clerk#000000545|0|structions. even deposits impress furiously foxes. quic| +172|46687|P|173110.39|1995-03-28|1-URGENT|Clerk#000000710|0|y ironic packages. blithely pending dependencies | +173|2119|O|312032.41|1996-10-30|1-URGENT|Clerk#000000724|0|reful, pending theodolites haggle: pend| +174|30811|O|37519.95|1996-12-27|1-URGENT|Clerk#000000848|0| deposits was idly above the accounts; furiously express requests sleep | +175|31562|O|26523.75|1995-09-24|3-MEDIUM|Clerk#000000996|0|t the requests cajole slyly even, special| +200|49393|F|241945.15|1993-07-17|4-NOT SPECIFIED|Clerk#000000182|0|dly. carefully ironic pinto b| +201|15346|O|198944.28|1998-05-16|5-LOW|Clerk#000000031|0| along the unusual depo| +202|53455|O|40293.37|1996-04-06|1-URGENT|Clerk#000000200|0|instructions. even, bold platelets above the accounts cajole depo| +203|65011|F|112724.11|1993-10-27|4-NOT SPECIFIED|Clerk#000000573|0|ter the unusual pearls. fluffily pending theodolites believe carefully. blithe| +204|13787|F|37048.54|1992-05-28|1-URGENT|Clerk#000000033|0|yly ironic requests. ironic accounts wake ruthles| +205|115066|F|136714.24|1992-11-04|2-HIGH|Clerk#000000043|0|. furiously pending requests a| +206|90923|F|136544.18|1992-03-25|2-HIGH|Clerk#000000910|0| express, regular asymptotes haggle against the blithely regular foxes; ca| +207|82639|F|180814.82|1994-03-04|2-HIGH|Clerk#000000662|0| the fluffily even accounts integrate slyly regularly special deposits. quick| +232|51986|F|121533.96|1995-02-15|2-HIGH|Clerk#000000960|0|ng to the regular, ironi| +233|126149|F|167997.02|1994-12-19|5-LOW|Clerk#000000369|0|hes haggle ironically alongside of the quickly ironic deposits: quickly unus| +234|83870|O|60883.88|1998-04-11|3-MEDIUM|Clerk#000000051|0|efully bold asymptotes are slyly quickly iron| +235|49187|F|221246.58|1992-12-25|3-MEDIUM|Clerk#000000755|0|packages among the regul| +236|32593|O|184399.89|1997-08-31|3-MEDIUM|Clerk#000000420|0|. closely final dolphins use. hockey p| +237|134086|O|60207.25|1997-11-14|4-NOT SPECIFIED|Clerk#000000921|0|. carefully regular accounts hinder furiously. bold deposits detect among th| +238|106684|O|100623.34|1995-10-07|2-HIGH|Clerk#000000415|0|regular, express platel| +239|55351|O|152899.65|1997-05-17|4-NOT SPECIFIED|Clerk#000000475|0| furiously express pinto beans| +264|132463|O|295809.36|1997-03-04|5-LOW|Clerk#000000889|0|about the final asymptotes integrate along the quickly final platelets.| +265|3007|F|44180.85|1995-04-05|2-HIGH|Clerk#000000500|0|fluffily even warhorses run carefully near the f| +266|121808|O|165034.75|1998-05-15|2-HIGH|Clerk#000000230|0|ide of the even acc| +267|20665|F|284669.27|1993-07-22|1-URGENT|Clerk#000000211|0|lithely unusual excuses. slowly even deposits | +268|50153|F|390883.76|1994-09-23|1-URGENT|Clerk#000000017|0|es cajole along the blithely unusual deposits. slyly regular ideas sleep sl| +269|71153|O|264311.76|1997-04-20|1-URGENT|Clerk#000000235|0|counts; pending dependencies about the requests boost carefully ab| +270|53197|F|246097.43|1992-03-13|3-MEDIUM|Clerk#000000403|0|en warthogs are furiously ironic instructio| +271|71771|O|118503.42|1997-07-02|4-NOT SPECIFIED|Clerk#000000860|0|cording to the carefully regular warthogs wake after the deposits. quickly fi| +296|90604|O|284504.75|1997-02-22|1-URGENT|Clerk#000000043|0|ld deposits cajole furiously. carefully ironic dependencies a| +297|107096|O|112842.57|1995-09-08|5-LOW|Clerk#000000543|0|lyly close theodolites grow along the finally even deposits. regular, | +298|102470|F|179536.95|1994-09-11|1-URGENT|Clerk#000000668|0|y final requests. furiously bold requests use again| +299|47260|F|24950.44|1993-11-08|3-MEDIUM|Clerk#000000692|0|s before the finally ironic accounts h| +300|21961|F|31683.02|1993-12-04|4-NOT SPECIFIED|Clerk#000000835|0|e slyly regular pac| +301|92257|F|136637.40|1994-08-09|1-URGENT|Clerk#000000382|0|unts wake furiously even asympt| +302|132620|F|51373.75|1994-10-22|1-URGENT|Clerk#000000349|0|beans. furiously pen| +303|82381|F|234234.58|1992-04-09|1-URGENT|Clerk#000000511|0|as. quiet requests sleep carefully. regular, regular foxes ac| +328|74072|F|38687.22|1992-09-06|4-NOT SPECIFIED|Clerk#000000278|0|unusual platelets promise. furiously final deposits use sly| +329|67108|F|152033.49|1993-04-01|3-MEDIUM|Clerk#000000426|0|ent packages are furiously blithely brave dolphins; car| +330|26683|O|23212.67|1996-12-08|1-URGENT|Clerk#000000791|0|ic warthogs alongside of the final platelets| +331|93557|F|50283.81|1993-01-12|2-HIGH|Clerk#000000917|0|asymptotes doze sometimes unusual foxes. dolphins was carefully blithely regu| +332|108742|F|171419.15|1992-05-03|5-LOW|Clerk#000000947|0|. furiously ironic requests boost blithely. carefully final multipliers believ| +333|148042|O|29496.41|1996-12-05|2-HIGH|Clerk#000000874|0|nt epitaphs sleep slyly. furiously silent requests detect quickly qu| +334|90853|F|166951.09|1992-10-02|2-HIGH|Clerk#000000622|0|longside of the accounts. b| +335|89104|O|119937.77|1996-08-22|1-URGENT|Clerk#000000794|0| furiously requests. furious| +360|95950|O|74694.73|1996-11-10|5-LOW|Clerk#000000561|0| slyly regular excuses boost. caref| +361|116645|F|115720.29|1992-06-24|1-URGENT|Clerk#000000172|0|ind fluffily after the quickly final pinto beans. requests| +362|90250|F|132103.89|1994-12-25|5-LOW|Clerk#000000589|0|ress dinos haggle slyly after the slyly unusual deposits. expr| +363|9863|F|266508.31|1992-09-17|5-LOW|Clerk#000000424|0|g packages cajole furiously regular pinto beans. slyly fi| +364|1604|O|315492.86|1997-05-25|5-LOW|Clerk#000000212|0|. pending, slow platelets haggle? furiously final foxes boost care| +365|93080|O|200773.53|1996-06-17|1-URGENT|Clerk#000000790|0|ngside of the quickly unusual instruct| +366|31460|F|89716.97|1994-06-03|2-HIGH|Clerk#000000285|0|refully above the blithely ironic excuses. thinly ironic theo| +367|146764|O|147263.92|1997-12-18|2-HIGH|Clerk#000000477|0|e accounts sleep about th| +392|36652|F|93488.66|1992-11-15|1-URGENT|Clerk#000000231|0|never! even, regular dep| +393|76711|F|162212.71|1994-01-07|5-LOW|Clerk#000000839|0|al theodolites sleep furiously after the fluffily permane| +394|14147|F|180043.15|1994-02-18|2-HIGH|Clerk#000000560|0|al warthogs among the slyly regular foxes mold against the sly ac| +395|18097|F|281792.56|1992-03-16|4-NOT SPECIFIED|Clerk#000000094|0|ual ideas wake about t| +396|89341|F|297665.11|1993-10-14|3-MEDIUM|Clerk#000000122|0|to the final, regular d| +397|22904|O|45486.55|1998-05-11|4-NOT SPECIFIED|Clerk#000000260|0|foxes wake. courts among the quickly busy packages promise blithely a| +398|43768|O|32851.31|1995-03-28|1-URGENT|Clerk#000000016|0|silent dependencies boost. slyly ironic accou| +399|149072|P|102904.32|1995-05-30|2-HIGH|Clerk#000000590|0|ep against the furiously unusual pinto beans. finally p| +424|2965|O|30132.14|1997-10-07|4-NOT SPECIFIED|Clerk#000000908|0| eat dependencies. express, even reques| +425|11038|O|223346.94|1996-09-15|2-HIGH|Clerk#000000669|0|haggle. carefully final requests sleep ruthlessly unusual inst| +426|87590|O|94238.83|1996-06-03|2-HIGH|Clerk#000000637|0|gside of the ironic, special depe| +427|13805|O|113105.96|1996-03-02|3-MEDIUM|Clerk#000000628|0|r dolphins are carefully. regular multipliers must are? furiously regular i| +428|112798|O|115255.94|1995-06-29|5-LOW|Clerk#000000608|0|yly special dependencies. eve| +429|64613|F|328806.78|1994-02-03|3-MEDIUM|Clerk#000000435|0|he carefully ironic foxes. final dugouts along the bold excuse| +430|95866|F|25797.89|1992-12-29|1-URGENT|Clerk#000000260|0| special requests are blithely even packages! regularly even sheaves sl| +431|66170|O|155413.05|1996-07-05|4-NOT SPECIFIED|Clerk#000000686|0|ar, ironic deposits use across the courts. slyly regular gif| +456|10672|F|165706.07|1993-07-05|2-HIGH|Clerk#000000961|0|al ideas. express foxes affix across the pending dependencies. bold dependenc| +457|101132|O|171998.00|1997-09-18|2-HIGH|Clerk#000000570|0|ions are according to the final instructions. furiously ironic deposits | +458|75182|O|26519.13|1996-07-18|2-HIGH|Clerk#000000822|0|p. quickly pending packages wake ironi| +459|122039|F|281687.33|1994-02-06|5-LOW|Clerk#000000886|0|s. furiously pending theodolites haggle. quic| +460|145885|F|126355.79|1994-09-10|5-LOW|Clerk#000000005|0|lithely ironic pinto beans detect across the bold sa| +461|137299|O|234270.37|1996-01-12|1-URGENT|Clerk#000000732|0|l accounts. pending accounts nag slyly. final, final deposits nod slyl| +462|129733|O|32005.24|1996-01-16|5-LOW|Clerk#000000163|0|deas. blithely regular requests believe c| +463|22031|O|166754.07|1997-12-20|5-LOW|Clerk#000000889|0|ilent sauternes above| +488|69800|O|64518.68|1997-10-23|1-URGENT|Clerk#000000979|0|s use blithely along the blithely final accounts. requests cajole carefully| +489|117494|O|41792.61|1997-12-25|5-LOW|Clerk#000000215|0|unts wake fluffily above the blithely even requests. unusual, express ins| +490|113531|O|130457.76|1996-06-22|2-HIGH|Clerk#000000280|0|nic courts. final, unusual ideas haggle. regular instruction| +491|107878|F|180947.65|1994-03-16|5-LOW|Clerk#000000440|0|into beans are quickly along the carefully final pac| +492|53137|F|154666.01|1994-04-24|4-NOT SPECIFIED|Clerk#000000670|0|foxes cajole even deposits. furiously unusual accou| +493|108367|F|264891.35|1993-09-07|4-NOT SPECIFIED|Clerk#000000514|0|riously silent asymptotes serve. dependencies affix daringly silen| +494|8299|F|7117.62|1994-04-28|3-MEDIUM|Clerk#000000919|0|jole slyly ideas. blithely even requests boost fluffily. pending deposits c| +495|109687|F|70739.80|1993-07-31|5-LOW|Clerk#000000920|0|ly final warthogs sleep slyly. foxes caj| +520|286|O|58136.23|1996-02-22|5-LOW|Clerk#000000873|0| final, regular deposits are blithely ironic accounts. quickly ironi| +521|128671|F|248601.24|1993-05-22|2-HIGH|Clerk#000000393|0|e slyly above the carefully bold packages. busy deposits sleep alongsid| +522|5605|F|90406.04|1992-08-30|1-URGENT|Clerk#000000414|0|furiously final requests try to wake carefully express packages. | +523|130138|F|87434.43|1993-03-04|2-HIGH|Clerk#000000011|0|nts cajole carefully outside the furiously even accounts. slyly| +524|57721|O|55236.69|1995-03-15|1-URGENT|Clerk#000000611|0| foxes. pending accounts cajole carefully. pending, even pinto beans | +525|59870|O|41611.83|1996-07-02|2-HIGH|Clerk#000000485|0|egular requests! regular requests against the blithely final theodolite| +526|19952|F|148674.58|1993-06-15|1-URGENT|Clerk#000000503|0|carefully regular ideas. ironic packages wake re| +527|74629|O|190811.60|1998-07-11|1-URGENT|Clerk#000000445|0|ts. regular ideas boost blithely according t| +552|106241|F|164426.72|1993-11-20|3-MEDIUM|Clerk#000000300|0|pecial ideas. furiously express packages wake slyly along the slyly| +553|139396|O|139974.65|1996-04-02|5-LOW|Clerk#000000890|0|dencies. packages doze carefully final accounts. bold platelets| +554|109624|F|101085.93|1992-09-26|1-URGENT|Clerk#000000611|0|inst the carefully special platelets. blithely special accounts along the r| +555|122786|F|89198.18|1994-05-26|3-MEDIUM|Clerk#000000219|0|ly unusual, final packages. carefull| +556|111073|F|307249.21|1993-04-02|4-NOT SPECIFIED|Clerk#000000704|0|old courts integrate above the final, final| +557|40630|O|61806.08|1998-03-13|3-MEDIUM|Clerk#000000583|0|hely regular hockey players sublate| +558|39766|F|214249.02|1994-12-27|2-HIGH|Clerk#000000730|0|as dazzle carefully quickly unusual | +559|65203|F|51999.15|1993-10-26|2-HIGH|Clerk#000000084|0|deposits haggle according | +584|116308|O|106856.48|1995-07-29|3-MEDIUM|Clerk#000000046|0|ckages. furiously even theodolites haggle slyly final requests. carefully stea| +585|133597|O|144265.45|1997-12-02|1-URGENT|Clerk#000000928|0|iously express foxes. regular, pending ideas w| +586|3187|O|142027.15|1995-11-22|4-NOT SPECIFIED|Clerk#000000217|0|es cajole blithely final instructions: blithely final re| +587|1849|F|66069.39|1994-07-04|5-LOW|Clerk#000000771|0|packages. special, spe| +588|21070|O|65077.15|1996-02-02|3-MEDIUM|Clerk#000000396|0|al, final accounts cajole agai| +589|107704|F|171149.76|1992-02-04|4-NOT SPECIFIED|Clerk#000000747|0| enticing, regular excuses. unusual packages| +590|115996|F|63908.06|1993-08-16|4-NOT SPECIFIED|Clerk#000000158|0|t accounts serve. furiously ironic deposits above the ironic theodoli| +591|124661|F|62967.66|1993-10-16|3-MEDIUM|Clerk#000000282|0|pending pinto beans| +616|111484|O|23018.66|1997-09-30|3-MEDIUM|Clerk#000000026|0|ideas. ironic, daring deposits haggle furiously ironic foxes: pearls | +617|37775|F|129469.86|1994-05-19|3-MEDIUM|Clerk#000000390|0|unts cajole furiously. | +618|79207|F|78215.00|1992-08-18|2-HIGH|Clerk#000000518|0| carefully even accounts! ruthless, bold dolphins | +619|106396|F|137469.16|1993-05-09|3-MEDIUM|Clerk#000000097|0|packages wake slyly ironic ac| +620|32731|O|130441.44|1995-08-29|3-MEDIUM|Clerk#000000669|0|ly after the slyly ironic instructions. accounts at the slyly even platel| +621|50104|F|178084.80|1992-07-01|3-MEDIUM|Clerk#000000059|0|unts. regular foxes believe furiously even deposits.| +622|120062|O|185321.31|1997-07-03|3-MEDIUM|Clerk#000000518|0| instructions. unusual escapades shall kindle around the carefully final | +623|72542|P|130451.42|1995-03-12|1-URGENT|Clerk#000000513|0|ckly slyly dogged courts-- final pinto beans according t| +648|149821|O|214927.14|1996-12-12|4-NOT SPECIFIED|Clerk#000000170|0|y express epitaphs sleep final platelets. f| +649|121099|F|140527.15|1993-12-23|4-NOT SPECIFIED|Clerk#000000026|0|silent foxes. blithely regular accounts are blithely past the foxes. carefull| +650|108074|F|262637.18|1994-09-28|3-MEDIUM|Clerk#000000614|0| the ironic Tiresias prin| +651|46366|F|72067.64|1992-08-02|4-NOT SPECIFIED|Clerk#000000640|0|oxes. instructions about the slyly ironic accounts c| +652|7550|F|60437.17|1994-06-28|2-HIGH|Clerk#000000414|0| furiously even theodolites cajole across the regular packages.| +653|126085|O|176532.08|1997-07-04|3-MEDIUM|Clerk#000000968|0|inal escapades! pending packages among the blithely | +654|51694|O|10600.32|1997-10-27|3-MEDIUM|Clerk#000000288|0|ins cajole fluffily express orbits. express instructions around t| +655|4877|O|159465.06|1996-04-14|2-HIGH|Clerk#000000545|0|re blithely? slyly final p| +680|54536|O|45738.89|1996-05-01|5-LOW|Clerk#000000688|0|l theodolites haggle slyly carefully eve| +681|85597|O|112311.00|1997-05-19|5-LOW|Clerk#000000177|0|ar pinto beans. carefully even pinto beans use. slyly ironic excuses along| +682|102550|F|118588.42|1993-07-05|4-NOT SPECIFIED|Clerk#000000683|0|special requests against the regular packages cajole fluff| +683|28936|F|53461.73|1992-06-22|3-MEDIUM|Clerk#000000755|0|y pending requests nag alongside of the final requests. pinto be| +684|25189|F|120526.55|1993-01-22|4-NOT SPECIFIED|Clerk#000000100|0|ly. slyly ironic requests across the special, ironic f| +685|40181|F|84603.32|1994-11-16|4-NOT SPECIFIED|Clerk#000000435|0|special packages sleep about the furiously unusual deposits. | +686|17989|F|16822.97|1993-02-07|2-HIGH|Clerk#000000349|0|ly foxes. slyly unusual packages around the quietly ironic packages engage| +687|89660|F|104151.33|1993-11-13|5-LOW|Clerk#000000812|0|s. unusual, unusual dinos are after th| +712|9868|O|229378.03|1995-07-18|4-NOT SPECIFIED|Clerk#000000904|0|ons haggle carefully; carefully ironic requests lose carefully regular p| +713|83225|F|486765.89|1993-07-18|4-NOT SPECIFIED|Clerk#000000518|0|fluffily careful foxes wake slyly. furiously| +714|7249|F|53233.80|1994-10-14|3-MEDIUM|Clerk#000000126|0| around the regular ideas. carefully final foxes sle| +715|27146|O|49677.06|1995-06-25|5-LOW|Clerk#000000869|0|ffy, final theodolites. unusual, regular excuses cajole blith| +716|81922|O|85649.30|1995-07-24|4-NOT SPECIFIED|Clerk#000000660|0|d accounts after the s| +717|142808|O|201375.79|1995-11-08|5-LOW|Clerk#000000116|0|unts. furiously regular ideas are| +718|13013|P|112390.17|1995-05-13|5-LOW|Clerk#000000298|0|ar instructions among the special dolphins wake quickly furiously fina| +719|144802|O|303670.64|1997-07-24|2-HIGH|Clerk#000000152|0|quickly silent waters. special accounts haggle. quickly re| +744|82172|F|60503.46|1993-11-29|5-LOW|Clerk#000000089|0|he slyly silent requests. furiously special accounts h| +745|5521|O|232688.84|1998-06-05|3-MEDIUM|Clerk#000000730|0|. daring ideas nag blithely. dogged ideas unti| +746|81851|O|68486.05|1996-06-07|5-LOW|Clerk#000000917|0|press requests. carefully unus| +747|6109|O|259765.97|1998-03-29|1-URGENT|Clerk#000000550|0|e of the foxes. stealthy, dogged accounts aff| +748|68389|P|98365.48|1995-04-24|4-NOT SPECIFIED|Clerk#000000658|0|the furiously special re| +749|82108|O|15962.31|1998-04-13|3-MEDIUM|Clerk#000000153|0|ons above the platelets sublate slyly pending deposits; carefully even| +750|115306|O|90740.96|1995-05-11|5-LOW|Clerk#000000605|0| fluffily even ideas wake blithely against the regular fra| +751|91655|O|171226.99|1996-08-14|3-MEDIUM|Clerk#000000466|0|final, pending asymptotes use about the q| +776|83606|O|100140.63|1996-07-16|4-NOT SPECIFIED|Clerk#000000776|0|efully instead of the furiously final foxes. silent deposits use slyly | +777|113281|O|243877.29|1996-08-20|5-LOW|Clerk#000000510|0|ake quickly pending foxes. unusual, ironic accounts above | +778|99382|O|174658.53|1995-10-31|5-LOW|Clerk#000000087|0|se sheaves along the special packages sleep carefully special instructi| +779|56860|F|336260.47|1995-02-14|1-URGENT|Clerk#000000392|0|posits haggle. final accounts cajole blithely regular es| +780|117208|F|204727.82|1992-10-30|3-MEDIUM|Clerk#000000927|0|s wake instructions. slyly ironic accounts boost blithely blithely regular | +781|92774|F|75110.51|1994-01-01|5-LOW|Clerk#000000581|0|ly across the final accounts. pinto beans wake re| +782|138088|F|66228.18|1994-12-30|1-URGENT|Clerk#000000525|0|furiously special instructions use furiously ironic theodolites. bold packag| +783|42040|F|248701.76|1994-03-21|1-URGENT|Clerk#000000683|0|dle ideas. regular, sp| +808|40765|F|60489.54|1992-02-07|1-URGENT|Clerk#000000035|0| the furiously final requests. blithe| +809|62695|F|229322.32|1994-06-16|2-HIGH|Clerk#000000703|0|y even requests cajole regular, | +810|103867|O|171109.10|1997-12-28|2-HIGH|Clerk#000000457|0|somas sleep blithely around the carefully| +811|136177|O|11769.97|1997-05-11|2-HIGH|Clerk#000000327|0|y final somas. final excuses in| +812|25585|F|132473.24|1993-01-12|4-NOT SPECIFIED|Clerk#000000497|0|egular sheaves wake qui| +813|97892|F|92439.67|1992-11-30|4-NOT SPECIFIED|Clerk#000000126|0|onic deposits. even ideas affix. ironic requests are quickly ev| +814|69263|O|37783.80|1998-06-06|2-HIGH|Clerk#000000084|0|ind the unusual accounts. blithely final th| +815|94988|O|187918.17|1995-06-02|4-NOT SPECIFIED|Clerk#000000820|0|s wake regular ideas. f| +840|9344|O|369609.55|1997-05-02|1-URGENT|Clerk#000000844|0|s. accounts play furiously above the depos| +841|138530|F|282203.81|1992-01-19|1-URGENT|Clerk#000000370|0|; pending accounts sleep furiously across | +842|118153|F|192169.84|1993-05-04|2-HIGH|Clerk#000000240|0|, even courts! carefully bold asymptotes across the requests sleep accor| +843|93077|O|114417.98|1996-06-20|1-URGENT|Clerk#000000356|0|ave to are furiously| +844|130843|O|226794.85|1997-03-19|2-HIGH|Clerk#000000524|0|s. bold ideas should have to wake after the final deposits. regular accounts w| +845|69541|P|164514.21|1995-03-23|1-URGENT|Clerk#000000213|0|dolites integrate caref| +846|121450|O|118277.42|1996-10-28|2-HIGH|Clerk#000000885|0|ke. slyly unusual theodolites poach slyl| +847|134050|F|116642.20|1992-04-28|5-LOW|Clerk#000000791|0|sly ironic instructions after the silent, fin| +872|115402|O|49837.43|1998-05-12|2-HIGH|Clerk#000000109|0|along the stealthily regular orbits. carefully ironic instru| +873|38611|F|30234.10|1994-09-26|3-MEDIUM|Clerk#000000371|0|its. accounts against the slyly bold deposits need to wake furiously regu| +874|25933|F|156079.33|1994-06-27|5-LOW|Clerk#000000230|0|heodolites. slyly regular packages among the furiously careful the| +875|81406|F|125315.36|1993-08-14|1-URGENT|Clerk#000000651|0|xpress packages. blithely ironic accounts sleep blithely | +876|10298|F|214943.50|1992-09-23|4-NOT SPECIFIED|Clerk#000000834|0|ackages use blithely. even, regular p| +877|126034|O|69154.63|1997-07-31|3-MEDIUM|Clerk#000000879|0|egular requests haggle slyly. carefully ironic requests cajole carefu| +878|84103|O|117684.78|1996-07-17|3-MEDIUM|Clerk#000000536|0| final accounts. carefully unus| +879|59680|F|198900.56|1993-01-28|1-URGENT|Clerk#000000417|0| accounts haggle slyly| +904|127666|O|93840.55|1997-02-23|3-MEDIUM|Clerk#000000115|0|dependencies affix fluffily ironic requests. slyly regular excuses use-| +905|66952|O|220786.65|1997-11-15|2-HIGH|Clerk#000000791|0|ructions boost dependencies. sly| +906|97000|F|73185.76|1993-10-28|3-MEDIUM|Clerk#000000168|0|uthlessly unusual req| +907|52129|O|226087.73|1996-07-12|2-HIGH|Clerk#000000403|0|ular foxes cajole alongside of the special ideas. carefully bold deposi| +908|103667|F|180702.40|1993-06-30|3-MEDIUM|Clerk#000000830|0| sleep carefully quickly regular foxes. special pinto beans after | +909|77767|F|292272.73|1993-03-30|1-URGENT|Clerk#000000592|0| deposits. platelets engage according to the carefully b| +910|50780|F|208688.43|1993-11-20|3-MEDIUM|Clerk#000000814|0|arhorses. furiously even packages thrash i| +911|95620|F|429482.10|1994-09-09|5-LOW|Clerk#000000902|0| express deposits integrate furiously above the blithely unusual package| +936|113768|O|63893.40|1998-04-18|3-MEDIUM|Clerk#000000814|0| up the carefully pending deposits. quickly pending pinto beans along the bli| +937|35183|O|117587.38|1996-05-25|2-HIGH|Clerk#000000430|0|inal ideas are along the slyly regular| +938|10000|O|34859.03|1997-12-29|2-HIGH|Clerk#000000441|0|lyly even platelets | +939|42748|F|221801.79|1992-05-05|4-NOT SPECIFIED|Clerk#000000238|0|g the theodolites. even packages haggle furiously unusual,| +940|103061|O|27603.25|1997-06-30|4-NOT SPECIFIED|Clerk#000000644|0|ithely quick instruc| +941|83816|F|129515.64|1994-04-26|5-LOW|Clerk#000000785|0|y pending dolphins doubt foxes. furiously pend| +942|32272|F|157616.30|1993-03-23|5-LOW|Clerk#000000994|0|regular, regular deposit| +943|113909|F|131258.30|1992-07-11|1-URGENT|Clerk#000000525|0|y ironic attainments. regular, fina| +968|16891|O|56203.95|1996-06-19|3-MEDIUM|Clerk#000000049|0|s. quickly final deposits| +969|72649|F|33064.55|1992-06-22|2-HIGH|Clerk#000000019|0|totes sleep regularly acco| +970|7649|F|146925.46|1993-04-18|1-URGENT|Clerk#000000397|0| packages along the silent, silent pinto beans sleep | +971|4435|F|202246.34|1993-08-29|3-MEDIUM|Clerk#000000875|0|luffily final deposits. blithely final pin| +972|130439|F|39019.81|1992-06-06|4-NOT SPECIFIED|Clerk#000000522|0|ckly even deposits. quiet, special pla| +973|30571|F|165018.31|1994-07-04|5-LOW|Clerk#000000498|0|symptotes. slyly brave pack| +974|53893|O|1894.68|1995-02-24|5-LOW|Clerk#000000555|0|xes wake furiously along the blithely bold deposits. furio| +975|57401|O|76763.54|1997-04-01|1-URGENT|Clerk#000000981|0| haggle quickly pending | +1000|84034|F|326722.35|1992-05-24|1-URGENT|Clerk#000000426|0|ular excuses! carefully regular| +1001|107500|F|219850.94|1994-04-14|1-URGENT|Clerk#000000930|0| beans. furiously ironic requests wake slyly| +1002|123878|F|73959.85|1995-04-07|3-MEDIUM|Clerk#000000994|0|eas are slyly. furiously unusual instructions haggle blithely| +1003|13750|O|147560.49|1997-04-04|3-MEDIUM|Clerk#000000869|0|le platelets. blithely ent| +1004|83608|F|52133.84|1994-01-19|1-URGENT|Clerk#000000504|0|s. furiously final asymptotes boost s| +1005|131524|O|177800.81|1996-09-22|2-HIGH|Clerk#000000761|0|s. slyly regular excuses dazzle carefully. slyly pending packages engage slyl| +1006|113966|O|60370.42|1995-07-22|3-MEDIUM|Clerk#000000898|0|ully. quickly express escapades cajo| +1007|72865|O|145700.00|1997-04-13|5-LOW|Clerk#000000340|0|as. slyly final platelets haggle slyly. pen| +1032|30665|O|329447.31|1996-03-23|1-URGENT|Clerk#000000399|0|uickly regular accounts. carefully silent accounts after the ironic| +1033|123205|O|207571.18|1998-03-26|1-URGENT|Clerk#000000168|0|lly ironic packages. silently bold depo| +1034|81952|F|183430.56|1992-12-27|4-NOT SPECIFIED|Clerk#000000082|0| dependencies wake furiously aft| +1035|53039|O|75152.52|1997-08-18|2-HIGH|Clerk#000000472|0|quests boost quickly. careful| +1036|124420|O|230338.85|1997-09-28|1-URGENT|Clerk#000000484|0|yly regular accounts use carefully. final deposits dazzle according to the bol| +1037|102617|O|258037.90|1996-06-06|2-HIGH|Clerk#000000176|0|uests kindle. ruthlessly thin requests among the carefully iron| +1038|123008|F|47484.95|1995-01-18|3-MEDIUM|Clerk#000000955|0|ang quickly. unusual packages a| +1039|79520|F|166520.40|1993-04-09|4-NOT SPECIFIED|Clerk#000000177|0|. final, ironic foxes integrate quickly along the foxes. furio| +1064|135148|F|71694.32|1993-02-22|1-URGENT|Clerk#000000257|0|es. even theodolites alongside of the final Tiresias hang carefully across the| +1065|128114|F|185224.82|1994-02-25|2-HIGH|Clerk#000000331|0|ackages. carefully express | +1066|106853|F|279078.43|1994-07-29|1-URGENT|Clerk#000000627|0| ideas. carefully final deposits haggle furiously after the furiously| +1067|64060|F|54735.07|1995-03-23|3-MEDIUM|Clerk#000000932|0|ts would wake even, | +1068|90496|O|249266.58|1995-09-09|5-LOW|Clerk#000000580|0|requests. ruthless ideas haggle furiously slyly s| +1069|87745|F|297188.68|1994-11-13|1-URGENT|Clerk#000000618|0|quests. slyly even deposits haggle slyly. furiously final accounts cajo| +1070|62626|F|110468.14|1992-03-04|1-URGENT|Clerk#000000462|0|ly pinto beans? special packages dazzle furiously for the carefu| +1071|134959|F|123681.03|1993-01-08|2-HIGH|Clerk#000000631|0|cross the furiously quick| +1096|90100|F|310668.09|1994-03-13|5-LOW|Clerk#000000410|0|ong the carefully special platelets haggle carefully against the blithel| +1097|29348|F|274671.50|1993-12-16|2-HIGH|Clerk#000000920|0|sly against the blithely pending ideas. slyly final deposi| +1098|38641|F|291303.86|1994-07-15|5-LOW|Clerk#000000030|0|rs sleep carefully. slyly ironic accounts boost quickly | +1099|88604|F|171145.31|1994-04-27|3-MEDIUM|Clerk#000000288|0|tions hinder carefully carefully fluffy instructions. carefully | +1100|112870|O|315553.21|1997-06-20|1-URGENT|Clerk#000000238|0|ing accounts nag carefully. carefully special excuses boost blithely reque| +1101|103633|F|90539.45|1993-11-24|3-MEDIUM|Clerk#000000348|0|r requests sleep! dependencies affix quickly foxes. regular pin| +1102|96913|F|151741.11|1994-02-09|2-HIGH|Clerk#000000287|0|regular instructions. bold, bold accounts nag blithely quic| +1103|101566|F|151516.38|1995-02-14|5-LOW|Clerk#000000784|0|es cajole carefully. fluffily silent dep| +1128|145399|O|177157.00|1998-03-30|3-MEDIUM|Clerk#000000883|0|as. pending frets cajole against the carefully pending | +1129|70534|F|218062.25|1994-12-03|4-NOT SPECIFIED|Clerk#000000012|0| slyly bold dependencies are quickly after t| +1130|9379|O|217977.46|1997-09-25|4-NOT SPECIFIED|Clerk#000000822|0|tes. furiously even fox| +1131|117536|O|114486.70|1998-01-10|5-LOW|Clerk#000000191|0|fully bold, ironic attainments. slyly express ideas mainta| +1132|61297|F|140206.37|1993-02-19|2-HIGH|Clerk#000000526|0|y regular gifts cajole. fluffily express foxes above the reg| +1133|144880|F|16860.26|1993-05-30|3-MEDIUM|Clerk#000000997|0|structions are furiously according to the express instruction| +1134|36781|F|63422.50|1994-05-11|4-NOT SPECIFIED|Clerk#000000360|0|f the blithely regular instructi| +1135|9001|O|105326.32|1997-06-15|5-LOW|Clerk#000000100|0|ly about the carefully permanent packages. blithely pending pla| +1160|67648|F|188429.17|1992-02-24|3-MEDIUM|Clerk#000000351|0|s deposits boost quickly after the ironic, regula| +1161|108268|O|217112.75|1995-07-29|1-URGENT|Clerk#000000621|0|ly quickly even foxes. quickly regular packages are idly. f| +1162|143623|O|215516.21|1997-12-31|3-MEDIUM|Clerk#000000615|0| the accounts; slyly regular packages are furiously slyly i| +1163|53765|P|99318.49|1995-05-25|5-LOW|Clerk#000000202|0|to beans sleep carefully along the carefully i| +1164|18209|O|141663.22|1997-09-30|3-MEDIUM|Clerk#000000317|0|ily ironic requests nag furiously across the reques| +1165|32825|O|91101.76|1997-06-17|4-NOT SPECIFIED|Clerk#000000483|0|le never about the blithely brave instructions. even de| +1166|134716|O|119058.03|1996-04-23|5-LOW|Clerk#000000743|0|quickly close ideas use slyly special packages. idle, silent requests ha| +1167|64142|F|108480.29|1995-01-15|2-HIGH|Clerk#000000402|0| final platelets nag silently. blithely regular accounts sublate blithe| +1192|125512|F|39225.72|1993-01-02|3-MEDIUM|Clerk#000000617|0|quietly bold asymptotes. silently final accoun| +1193|23614|O|217710.25|1998-01-09|5-LOW|Clerk#000000710|0|above the furiously final deposits. u| +1194|113065|O|215152.34|1996-10-02|5-LOW|Clerk#000000544|0|blithely. requests hinder furiously alongside of the slyly final foxes. carefu| +1195|54437|F|44619.06|1994-07-13|1-URGENT|Clerk#000000249|0|ilent foxes wake blithely. | +1196|69208|F|161618.77|1994-11-10|2-HIGH|Clerk#000000904|0|luffily even platelets eat across the blithely ironic accounts. ir| +1197|59582|F|248058.01|1995-01-12|1-URGENT|Clerk#000000736|0|y regular dependencies around the daringly bold deposits are slyly about | +1198|132637|F|131224.85|1993-06-14|3-MEDIUM|Clerk#000000371|0|s wake after the special deposits. slyl| +1199|53762|F|206481.76|1993-12-22|3-MEDIUM|Clerk#000000633|0|riously pending deposits eat furiously regular foxes. even idea| +1224|123184|F|298701.75|1993-08-22|3-MEDIUM|Clerk#000000974|0|ly. packages wake furiously. even instructions beside the quickly b| +1225|32776|O|162255.32|1998-06-06|4-NOT SPECIFIED|Clerk#000000994|0|efully requests. express asymptotes slee| +1226|61738|O|32423.51|1997-07-08|2-HIGH|Clerk#000000405|0|y above the carefully ironic instructions. furiously special do| +1227|54068|F|110673.61|1992-11-08|5-LOW|Clerk#000000110|0|etect quickly. patterns are quickly fluffily regular requests. furiousl| +1228|12319|F|254011.13|1992-01-21|1-URGENT|Clerk#000000657|0|ackages sleep slyly among the fur| +1229|29519|F|125233.29|1992-10-23|2-HIGH|Clerk#000000222|0|d theodolites. enticingly ironic Tires| +1230|60682|O|140474.09|1998-05-05|2-HIGH|Clerk#000000135|0|ly. slyly bold packages after the blithely eve| +1231|27835|F|86732.99|1993-05-07|4-NOT SPECIFIED|Clerk#000000660|0|en ideas use. final, unusual acc| +1256|109055|O|202906.66|1997-03-03|2-HIGH|Clerk#000000595|0|nusual requests. final pearls des| +1257|27883|O|83235.98|1997-01-27|4-NOT SPECIFIED|Clerk#000000442|0|s: fluffily quick packages ha| +1258|6835|P|278659.04|1995-04-28|3-MEDIUM|Clerk#000000489|0| ruthlessly according to the slyly | +1259|99433|O|186347.07|1995-12-19|2-HIGH|Clerk#000000821|0|dolites impress quickly. pend| +1260|146452|O|252625.99|1996-10-08|3-MEDIUM|Clerk#000000370|0|ajole theodolites. carefully even requests sleep b| +1261|35968|O|18106.89|1998-07-06|2-HIGH|Clerk#000000722|0|final deposits. furiously pend| +1262|141604|F|260831.73|1994-08-27|3-MEDIUM|Clerk#000000301|0|hely final courts. unusual, unusual packages are carefully.| +1263|35887|F|254869.10|1993-09-24|4-NOT SPECIFIED|Clerk#000000394|0| wake furiously alon| +1288|122797|P|249130.23|1995-02-22|2-HIGH|Clerk#000000454|0|es-- packages are blithel| +1289|141085|O|96337.30|1998-07-12|2-HIGH|Clerk#000000285|0|t the enticing packages. bold sauternes are against the slyly ev| +1290|132103|O|145309.08|1997-11-30|2-HIGH|Clerk#000000499|0|elets use slyly. carefully final requests eat. special, regular f| +1291|77758|O|164247.03|1995-10-21|3-MEDIUM|Clerk#000000863|0|osits. even packages| +1292|70495|O|83069.12|1996-10-10|4-NOT SPECIFIED|Clerk#000000595|0|y ironic, daring deposi| +1293|105791|O|117931.48|1998-07-14|2-HIGH|Clerk#000000245|0|arefully final theodolites. fluffily final pinto bean| +1294|65311|F|203051.04|1994-05-13|1-URGENT|Clerk#000000594|0|ording to the slyly final dugouts. ent| +1295|105235|O|243586.09|1997-03-27|2-HIGH|Clerk#000000070|0|nic requests are carefully. slyly unusual gifts sleep quickly above the | +1320|13714|O|18212.59|1997-10-23|4-NOT SPECIFIED|Clerk#000000559|0|, regular packages. slyly unusual courts| +1321|62017|P|210281.11|1995-03-13|4-NOT SPECIFIED|Clerk#000000044|0| regular packages nag. furiously enticing| +1322|108391|F|139628.06|1992-10-12|4-NOT SPECIFIED|Clerk#000000387|0|nusual ideas. quickly express requests cajole furiously against the final a| +1323|124705|O|176583.07|1995-07-14|2-HIGH|Clerk#000000408|0| beans. ironic requests are against the furiously final theodolites. slyly | +1324|86897|F|216244.86|1993-05-06|3-MEDIUM|Clerk#000000755|0|oost across the regular pinto beans. fluff| +1325|71476|O|139891.58|1996-10-11|5-LOW|Clerk#000000353|0|uests sleep during the regularly bold packages! carefully even accou| +1326|65332|F|43635.91|1992-12-22|3-MEDIUM|Clerk#000000341|0|uickly bold packages accord| +1327|26216|F|164711.12|1993-03-11|1-URGENT|Clerk#000000960|0|e slyly bold deposits. slyly regular deposits are blithely blithely e| +1352|52177|O|85233.46|1997-05-27|4-NOT SPECIFIED|Clerk#000000437|0|sits. blithely pending requests w| +1353|37697|F|163062.97|1993-06-24|1-URGENT|Clerk#000000588|0|he regular pinto beans. furiously ir| +1354|112621|O|49778.69|1998-01-28|3-MEDIUM|Clerk#000000943|0|o beans. unusual requests cajole blithely for the regul| +1355|90908|F|126100.64|1994-10-01|2-HIGH|Clerk#000000255|0|, bold foxes wake carefully silent dolph| +1356|130768|O|11089.06|1997-02-27|3-MEDIUM|Clerk#000000537|0|he carefully pending th| +1357|6850|F|47059.86|1992-10-27|3-MEDIUM|Clerk#000000295|0| accounts. slyly special excuses cajole daringly| +1358|71209|O|216629.26|1996-11-11|3-MEDIUM|Clerk#000000105|0|oost. sometimes ironic accounts haggle | +1359|94798|O|123103.05|1998-05-19|5-LOW|Clerk#000000508|0|y. ironic packages are ruthlessly according to the fluffily expre| +1384|97484|O|371050.33|1996-05-21|5-LOW|Clerk#000000869|0|iously regular requests sleep carefully even deposits. ironic packages ha| +1385|111424|F|264655.02|1992-08-13|1-URGENT|Clerk#000000973|0|final accounts sleep furiously slyly regular theodolites. ironic| +1386|77780|O|146078.32|1995-11-23|5-LOW|Clerk#000000311|0|eposits affix. carefully | +1387|144763|F|13829.56|1993-07-12|5-LOW|Clerk#000000668|0|y even excuses use against the ideas. furiously special deposits | +1388|665|O|46234.65|1995-07-05|4-NOT SPECIFIED|Clerk#000001000|0|sts cajole after the carefully final accounts. fluffily | +1389|68545|F|275564.56|1994-03-21|4-NOT SPECIFIED|Clerk#000000696|0|e final, express deposits. unusual c| +1390|4924|O|96389.70|1995-11-22|2-HIGH|Clerk#000000228|0|kly even courts. carefully pendin| +1391|82327|F|77565.65|1993-10-31|4-NOT SPECIFIED|Clerk#000000019|0|ts. requests doubt s| +1416|53059|O|112691.66|1995-12-12|1-URGENT|Clerk#000000147|0|eposits. carefully careful packages at the quickly ironic pinto | +1417|138392|O|258965.87|1998-03-04|4-NOT SPECIFIED|Clerk#000000534|0| express instructions haggle blithely. carefully| +1418|50102|O|160238.68|1996-06-05|5-LOW|Clerk#000000041|0|ep quickly across the even packages. slyly ironic packag| +1419|106180|O|362347.34|1996-05-17|4-NOT SPECIFIED|Clerk#000000426|0|lithely regular requests are q| +1420|7390|O|17160.09|1997-12-31|4-NOT SPECIFIED|Clerk#000000665|0|osits. furiously even packages sleep fu| +1421|144880|O|133736.67|1997-06-03|5-LOW|Clerk#000000656|0|n foxes. daringly pending theodolites boost quickly according to the slyly fin| +1422|40429|F|100299.94|1993-05-26|2-HIGH|Clerk#000000362|0|y express pinto beans boost furiously slowly regular foxe| +1423|112187|P|251587.78|1995-03-06|5-LOW|Clerk#000000049|0|ffily bold instructions accordi| +1448|17509|F|47119.12|1992-06-01|3-MEDIUM|Clerk#000000231|0|fluffily final requests ha| +1449|112162|F|178545.27|1994-04-12|1-URGENT|Clerk#000000694|0| unwind fluffily stealthily quick | +1450|39793|O|189444.08|1998-07-09|3-MEDIUM|Clerk#000000724|0|final excuses cajole carefully. unus| +1451|99694|F|233707.69|1993-06-07|4-NOT SPECIFIED|Clerk#000000887|0|ly pending asymptotes sleep blithely. carefully r| +1452|43354|O|181040.94|1996-05-30|3-MEDIUM|Clerk#000000244|0|. slyly even instructions sle| +1453|67726|O|221051.45|1996-05-08|5-LOW|Clerk#000000164|0| final accounts! furiously slow packages sleep. | +1454|70807|F|79904.35|1994-07-30|2-HIGH|Clerk#000000841|0|wake slyly across the re| +1455|77767|O|115906.24|1997-03-31|4-NOT SPECIFIED|Clerk#000000014|0|eans boost. furiously bold sauternes nag furiously fin| +1480|56656|F|252093.59|1992-05-16|2-HIGH|Clerk#000000839|0|hely packages. fluffily pending instructions about the b| +1481|147614|F|185984.42|1992-02-14|2-HIGH|Clerk#000000865|0|lar excuses cajole furiously finally bold di| +1482|84463|F|194971.34|1992-08-11|1-URGENT|Clerk#000000032|0| instructions sleep furiously special re| +1483|116770|O|151796.12|1996-10-06|4-NOT SPECIFIED|Clerk#000000255|0|to the quickly bold reque| +1484|85003|O|121908.71|1996-12-25|3-MEDIUM|Clerk#000000889|0|ietly ironic packages. carefully even instructions mold | +1485|26357|F|25502.80|1993-03-07|4-NOT SPECIFIED|Clerk#000000467|0|express packages wake about the forges| +1486|21806|O|200146.00|1998-07-25|5-LOW|Clerk#000000627|0|lithely ironic pinto beans. deposits nod carefully. quickly final foxes bo| +1487|41503|F|175145.82|1993-07-20|3-MEDIUM|Clerk#000000563|0|oost deposits. silently ironic foxes cajole at the quiet asymptotes. flu| +1512|14047|O|103735.07|1996-10-18|3-MEDIUM|Clerk#000000619|0| requests cajole alongside of the fur| +1513|134602|O|93901.59|1997-12-16|5-LOW|Clerk#000000992|0|slowly according to the fu| +1514|81076|O|49508.39|1996-10-28|1-URGENT|Clerk#000000122|0|press pinto beans cajole. blithely express asymptotes haggle slyly after th| +1515|24491|F|20267.55|1992-01-04|3-MEDIUM|Clerk#000000771|0|requests. quickly regular requests should have | +1516|4883|O|307914.68|1996-03-09|2-HIGH|Clerk#000000351|0|ouches. slyly even ideas along the slyly final pi| +1517|9448|F|332478.76|1993-06-05|1-URGENT|Clerk#000000365|0|ar platelets do eat. pinto beans | +1518|66763|F|58250.56|1993-04-26|1-URGENT|Clerk#000000970|0|ully bold braids. theodolites kindle. bold gifts n| +1519|52991|O|157696.70|1997-09-02|1-URGENT|Clerk#000000474|0|uests. furiously ironic packages use furiously blithely even deposits. bold| +1544|69292|O|228338.75|1997-02-26|2-HIGH|Clerk#000000428|0|use carefully about the fluffily silent sauternes. quickly bold courts de| +1545|136816|F|85588.52|1994-04-22|1-URGENT|Clerk#000000307|0|he bold theodolites are| +1546|83335|F|153184.22|1992-05-09|5-LOW|Clerk#000000401|0|ly final platelets cajole furiously carefully silent pinto| +1547|39310|O|41750.79|1996-09-11|2-HIGH|Clerk#000000186|0|uriously bold accounts. even, ironic excuses boost quickly slyly final accou| +1548|51475|F|79320.38|1992-08-30|5-LOW|Clerk#000000744|0|uriously enticing instructions unwind deposi| +1549|58364|O|21090.90|1998-07-15|1-URGENT|Clerk#000000100|0|ular requests sleep even packages. unusual| +1550|57823|O|20647.76|1998-01-22|5-LOW|Clerk#000000261|0|equests cajole fluffily final pearls. express deposits among th| +1551|106723|O|147544.68|1997-06-02|5-LOW|Clerk#000000242|0|lly ironic theodolites w| +1576|123760|F|133727.95|1992-10-22|3-MEDIUM|Clerk#000000460|0|egular excuses kindle blithely about the ruthlessly| +1577|114646|F|76107.94|1993-11-18|2-HIGH|Clerk#000000865|0|arefully. final, unusual deposits nag blithely along the blit| +1578|73306|O|259796.58|1996-05-03|5-LOW|Clerk#000000268|0|nag final, regular deposi| +1579|102865|F|239435.08|1992-05-14|1-URGENT|Clerk#000000067|0|counts! express dependencies believe fluffily above the| +1580|93469|O|161327.12|1998-05-19|2-HIGH|Clerk#000000549|0| furiously special fo| +1581|121879|F|19371.76|1994-04-05|5-LOW|Clerk#000000449|0|ounts wake quickly furiously final requests. furiously even deposits wake | +1582|147784|O|256819.20|1998-07-26|5-LOW|Clerk#000000401|0|onic instructions imp| +1583|72796|O|126816.18|1997-06-09|1-URGENT|Clerk#000000099|0| carefully pending requests haggle. requests caj| +1608|59593|F|339656.04|1992-09-26|1-URGENT|Clerk#000000188|0|ions after the carefully even deposits nag slyly regula| +1609|13504|F|6674.34|1992-06-07|5-LOW|Clerk#000000961|0|fily beyond the carefully pending depths. st| +1610|148624|O|96649.68|1995-08-11|1-URGENT|Clerk#000000171|0| pinto beans. furiously even instructions use quickly a| +1611|99959|F|261823.95|1994-03-12|1-URGENT|Clerk#000000775|0|. idle accounts are along the carefully regular pinto beans. iron| +1612|10258|F|57308.88|1993-05-31|3-MEDIUM|Clerk#000000794|0|s sleep slowly regular, final deposits. ironic excuses cajole carefully sly| +1613|39232|O|67055.78|1995-11-02|2-HIGH|Clerk#000000503|0| bold pinto beans. asymptotes sleep blithely across the always even| +1614|111812|F|136978.11|1994-12-08|3-MEDIUM|Clerk#000000062|0|ag furiously carefully ironic packages. carefully final pac| +1615|15752|F|30914.20|1992-10-21|1-URGENT|Clerk#000000532|0|xpress theodolites are| +1640|127069|F|223198.11|1994-09-23|2-HIGH|Clerk#000000125|0|nts nag silent, even packages. deposits may dazz| +1641|84586|O|317652.13|1996-12-16|5-LOW|Clerk#000000832|0|side of the deposits. unusual packages alongs| +1642|77395|F|273527.64|1994-04-06|5-LOW|Clerk#000000397|0|le? carefully even accounts affix quickly. daring pinto beans haggle regular | +1643|111241|O|94976.60|1995-05-29|2-HIGH|Clerk#000000788|0|re fluffily blithely ironic ideas-- unusual, fluffy fox| +1644|16211|F|139407.11|1994-02-27|5-LOW|Clerk#000000837|0|ounts. regular instructions wake. even dep| +1645|57532|O|29806.95|1997-07-24|5-LOW|Clerk#000000533|0|regular requests wake carefully ironic p| +1646|12635|F|25736.61|1994-08-17|2-HIGH|Clerk#000000958|0|final requests use about t| +1647|97510|F|135999.12|1992-04-18|3-MEDIUM|Clerk#000000297|0|grate. express packages cajole furiously slyly bold deposits. final | +1672|83920|F|140432.23|1993-11-06|4-NOT SPECIFIED|Clerk#000000311|0|rate furiously quickly ironic packages. fluffily final accounts along the slyl| +1673|137428|F|10046.92|1992-04-17|3-MEDIUM|Clerk#000000535|0|onic accounts wake furiously-- furiously ironic ideas integrate. pinto bea| +1674|41354|F|16249.38|1993-04-09|1-URGENT|Clerk#000000046|0| deposits unwind slyly according| +1675|77657|O|57540.95|1997-09-29|5-LOW|Clerk#000000626|0|cial, unusual packages detect slyly. special pinto beans about the express, fi| +1676|18535|O|110742.75|1996-01-11|1-URGENT|Clerk#000000177|0|kly special accounts. ca| +1677|103846|O|131758.49|1998-02-13|3-MEDIUM|Clerk#000000944|0|e regular packages thrash final, even deposits. express deposits haggle ar| +1678|79480|F|292346.26|1993-06-05|2-HIGH|Clerk#000000930|0|ans detect regularly carefully express pinto beans. regular e| +1679|50161|O|162383.12|1995-10-23|2-HIGH|Clerk#000000975|0|ckages. ironically unusual dependencies x-ray| +1704|39706|F|175021.68|1994-04-03|3-MEDIUM|Clerk#000000220|0| quickly bold somas dazzle instructions. enticing accounts are quickly slyl| +1705|124459|F|222071.87|1994-05-19|5-LOW|Clerk#000000355|0|s. slyly final packages cajole furiously final instruction| +1706|5632|F|85771.60|1993-02-27|2-HIGH|Clerk#000000301|0|ackages-- careful excuses shall have to wake about the deposits. final asy| +1707|126937|F|80356.74|1993-07-26|3-MEDIUM|Clerk#000000107|0|ncies? carefully regular Tiresias across the accounts integrat| +1708|111932|F|50186.68|1994-03-29|5-LOW|Clerk#000000665|0|nto beans wake slyly final id| +1709|74329|O|2005.65|1996-12-02|1-URGENT|Clerk#000000453|0|ructions. slyly unusual accounts wake. furiously final accounts cajole quickl| +1710|24401|O|236060.62|1996-07-10|3-MEDIUM|Clerk#000000695|0|ve the bold, even patterns ought to are along the deposits. ironic bra| +1711|146806|F|272526.19|1994-01-17|3-MEDIUM|Clerk#000000222|0|nic pinto beans sleep fluffily to the accounts| +1736|6283|F|124394.53|1994-07-18|5-LOW|Clerk#000000724|0|structions wake blithely entic| +1737|117139|P|267310.16|1995-05-20|2-HIGH|Clerk#000000880|0|s wake carefully alongside of the carefully even t| +1738|133501|F|137083.82|1994-07-11|2-HIGH|Clerk#000000387|0|against the slow somas use furiously alongside of the silent, regular forges.| +1739|41335|O|63240.33|1997-06-15|4-NOT SPECIFIED|Clerk#000000786|0|pending packages nod blithel| +1740|47074|O|105308.35|1997-05-21|5-LOW|Clerk#000000081|0|furiously furiously | +1741|71557|O|188074.27|1996-07-25|1-URGENT|Clerk#000000848|0|s haggle quickly regular asymptotes. quick| +1742|75059|F|202977.22|1993-08-17|3-MEDIUM|Clerk#000000240|0|lyly along the finally regular accounts. carefully fluffy platelets| +1743|4300|O|145093.76|1997-02-24|1-URGENT|Clerk#000000125|0|ly regular gifts after the careful accounts cajole among the final| +1768|101798|F|64676.04|1992-08-21|1-URGENT|Clerk#000000238|0|kages sleep according to the silently express deposits. carefully ironic| +1769|2207|F|74034.13|1994-06-10|4-NOT SPECIFIED|Clerk#000000007|0|e quickly slyly even i| +1770|31039|P|241421.10|1995-05-22|2-HIGH|Clerk#000000336|0|ular deposits. slyly pending requests cajole. busily express pa| +1771|115480|F|13607.75|1994-11-30|2-HIGH|Clerk#000000519|0|eposits haggle boldly around the express depend| +1772|2437|O|69347.44|1996-02-15|5-LOW|Clerk#000000200|0| fluffily silent deposits. bli| +1773|4619|O|9768.70|1997-02-06|5-LOW|Clerk#000000086|0|ly about the bold, express dolphins. carefully ironic accounts affix brai| +1774|69151|F|138189.28|1994-06-25|4-NOT SPECIFIED|Clerk#000000809|0| theodolites haggle carefully braids. quickly unusual requests wa| +1775|10582|O|192329.03|1996-03-19|3-MEDIUM|Clerk#000000358|0|p slyly slyly ironic courts. regular pinto be| +1800|94520|F|232031.41|1993-09-03|1-URGENT|Clerk#000000292|0| furiously across the final, careful ideas. busily regular| +1801|95890|O|132865.83|1995-05-26|4-NOT SPECIFIED|Clerk#000000629|0|packages wake furiously above the ruthless dep| +1802|21733|O|29831.87|1996-11-07|2-HIGH|Clerk#000000196|0|, final deposits. quickly darin| +1803|135700|F|49031.90|1994-06-11|4-NOT SPECIFIED|Clerk#000000056|0| express pinto beans. fluffily ironic requests| +1804|93368|F|22383.24|1992-09-16|1-URGENT|Clerk#000000176|0|s. ironic, express platelets sleep slyly ruth| +1805|79153|O|9000.85|1995-11-28|5-LOW|Clerk#000000309|0|hind the quickly ironic theodolites: blithely silent p| +1806|117005|O|127163.74|1995-07-21|5-LOW|Clerk#000000783|0|jole quickly ironic platelets. unusual, regular p| +1807|139025|O|150783.54|1997-06-29|4-NOT SPECIFIED|Clerk#000000796|0|jole express packages. slyly special pinto beans wake slyly slyly fina| +1832|34607|F|190343.33|1994-02-21|1-URGENT|Clerk#000000860|0| foxes? blithely ironic theodolites sleep blithely against the fluffily | +1833|81475|F|50362.03|1993-10-11|5-LOW|Clerk#000000199|0|riously even packages detect | +1834|143852|F|38824.87|1993-08-01|5-LOW|Clerk#000000923|0|ct daringly according to the slyly final account| +1835|12199|F|174955.42|1993-04-30|4-NOT SPECIFIED|Clerk#000000211|0|r the even, ironic foxes. furiously final foxes use among the packages.| +1836|106799|F|166764.02|1995-02-03|1-URGENT|Clerk#000000563|0|lets boost blithely. even excuses | +1837|67990|O|263723.09|1997-05-19|2-HIGH|Clerk#000000791|0|! quickly express accounts w| +1838|149017|O|199374.26|1996-04-30|3-MEDIUM|Clerk#000000728|0| cajole furiously special r| +1839|126448|O|122679.02|1995-06-02|1-URGENT|Clerk#000000954|0|etect carefully. pending deposits sleep. final requests along the fur| +1864|134948|F|129150.91|1993-05-01|2-HIGH|Clerk#000000992|0|ckly busy deposits. furiously final instructio| +1865|69347|O|54002.27|1997-08-21|1-URGENT|Clerk#000000065|0|sts against the daring accounts need| +1866|3655|O|48835.31|1996-07-26|1-URGENT|Clerk#000000951|0|ccounts. furiously pending pinto beans haggle quickly bold theo| +1867|69524|O|73143.20|1997-12-15|1-URGENT|Clerk#000000439|0|s boost carefully carefully express accounts. furiously regular p| +1868|139351|F|191046.00|1994-02-25|5-LOW|Clerk#000000964|0|refully above the blithely| +1869|113668|F|81641.43|1992-10-13|2-HIGH|Clerk#000000778|0| requests. forges cajole quickly around the quickly final theodolites. furious| +1870|11585|F|144879.92|1994-07-03|3-MEDIUM|Clerk#000000653|0|during the stealthy dependencies. blithely regular dol| +1871|998|F|43938.01|1992-05-28|3-MEDIUM|Clerk#000000558|0|nic, ironic forges | +1896|120605|F|151574.05|1994-01-26|2-HIGH|Clerk#000000260|0|. pending, even excuses promise. carefully final inst| +1897|46066|O|10797.61|1996-04-01|2-HIGH|Clerk#000000559|0| to the carefully regular packages. ironic, regular | +1898|58277|F|137348.18|1992-03-29|4-NOT SPECIFIED|Clerk#000000695|0|riously special packages mold bra| +1899|102803|O|36743.17|1997-10-07|2-HIGH|Clerk#000000597|0|counts. final foxes cajole furiously sheaves. fluf| +1900|100838|O|184601.71|1996-02-27|2-HIGH|Clerk#000000265|0|xes. slyly regular somas cajole ca| +1901|74857|F|29861.76|1993-03-21|1-URGENT|Clerk#000000206|0| quickly ironic instructions along the blithely express deposits haggle a| +1902|67858|F|122478.97|1994-05-28|5-LOW|Clerk#000000369|0|l platelets sublate blithel| +1903|37558|O|188778.35|1996-02-24|3-MEDIUM|Clerk#000000880|0|usly ironic sheaves caj| +1928|25033|F|275357.16|1994-10-14|2-HIGH|Clerk#000000691|0|. carefully silent realms through the | +1929|115961|O|85725.33|1997-03-02|1-URGENT|Clerk#000000004|0| sleep. dependencies detect according to the carefully bold deposits. pe| +1930|3091|O|251863.33|1996-07-10|4-NOT SPECIFIED|Clerk#000000173|0|tes? ironically unusual packages was. blithel| +1931|22663|F|49966.57|1993-01-22|5-LOW|Clerk#000000207|0|ing to the final warhorses haggle slyly fi| +1932|23248|F|37407.37|1992-03-25|1-URGENT|Clerk#000000096|0|ornis sleep fluffily. bli| +1933|117961|F|133933.89|1992-01-05|2-HIGH|Clerk#000000322|0|rs: carefully ironic a| +1934|19174|F|179339.71|1992-12-04|5-LOW|Clerk#000000390|0|ajole on the ironic courts. quickly furious accounts | +1935|36811|O|124344.45|1997-08-02|4-NOT SPECIFIED|Clerk#000000917|0|accounts haggle carefully after the even accounts. deposits cajole c| +1960|65918|F|244655.74|1993-10-27|3-MEDIUM|Clerk#000000074|0|ideas. slyly final excuses nag bravely. carefully final excuses x-ra| +1961|129379|F|234996.10|1994-04-14|2-HIGH|Clerk#000000331|0|blithely among the carefully unu| +1962|55009|O|55803.94|1995-05-29|5-LOW|Clerk#000000359|0|ctions serve furiously after the requests. bravely regular dependencies are ac| +1963|69061|O|131111.14|1995-12-10|2-HIGH|Clerk#000000355|0|its boost furiously silent accounts. enticingly final deposits haggle. | +1964|127477|O|157256.50|1998-06-02|4-NOT SPECIFIED|Clerk#000000835|0|y ironic instructions detect slyly express dinos. quickly pending asymp| +1965|53239|O|75346.38|1998-01-20|4-NOT SPECIFIED|Clerk#000000675|0|ously bold foxes are carefully unusual excuses. blithely | +1966|33787|F|87378.51|1992-10-19|5-LOW|Clerk#000000304|0|nag blithely against the regu| +1967|107917|O|174509.05|1995-05-15|5-LOW|Clerk#000000601|0|ptotes. furiously silent pinto bea| +1992|98032|F|159329.64|1993-08-12|3-MEDIUM|Clerk#000000124|0|pinto beans wake slyly. special, even theo| +1993|4994|F|23572.45|1995-02-24|1-URGENT|Clerk#000000516|0|across the blithely ironic accounts. ide| +1994|75748|O|270245.99|1995-08-08|3-MEDIUM|Clerk#000000234|0|ic dolphins. blithely express requests sleep unusual, final requests. asymp| +1995|45220|F|356716.82|1993-05-18|5-LOW|Clerk#000000267|0|nic, bold instructions. even, express requests are slyly according t| +1996|103840|F|37091.77|1994-02-28|5-LOW|Clerk#000000345|0|lar accounts wake carefu| +1997|120364|P|159611.81|1995-04-18|5-LOW|Clerk#000000472|0|riously according to the final, final packages. pending requests sleep slyly| +1998|43741|F|66527.99|1993-11-11|2-HIGH|Clerk#000000973|0|ong the furiously final requests. express pi| +1999|2524|O|84881.94|1998-06-23|5-LOW|Clerk#000000710|0|arefully silent accounts impress quickly express packages. | +2024|101386|F|93568.41|1995-03-12|4-NOT SPECIFIED|Clerk#000000661|0| furiously ironic theodolites c| +2025|138169|F|194669.66|1993-12-01|4-NOT SPECIFIED|Clerk#000000147|0|lways ironic requests. stealthily even depths sleep blithely. unusual foxe| +2026|37013|F|127581.20|1994-12-04|5-LOW|Clerk#000000907|0|as above the carefully final dolphins | +2027|13540|F|334173.55|1993-12-30|1-URGENT|Clerk#000000572|0|furiously express pinto beans. ideas| +2028|8503|O|81567.91|1997-09-14|1-URGENT|Clerk#000000212|0|dolites use according to the quickly ironic excuses. blithel| +2029|89947|O|105352.49|1998-06-21|4-NOT SPECIFIED|Clerk#000000671|0| accounts cajole about the quic| +2030|11716|O|43353.57|1998-06-15|1-URGENT|Clerk#000000160|0|ing to the slyly blithe packag| +2031|101143|F|131027.43|1995-01-09|1-URGENT|Clerk#000000149|0| slyly around the packages. even instructions wake after the| +2056|88108|O|61884.54|1995-09-08|4-NOT SPECIFIED|Clerk#000000486|0| mold across the carefully final packages. car| +2057|23098|O|58107.82|1996-09-20|3-MEDIUM|Clerk#000001000|0|about the slyly ironic accounts would nag blithely even sheav| +2058|135241|F|278200.56|1992-07-29|4-NOT SPECIFIED|Clerk#000000706|0|regular platelets. even, final platelets wake slyly. packages eat furiousl| +2059|32287|O|306071.48|1998-04-30|5-LOW|Clerk#000000443|0|es. ironic dependencies cajole above the fluffil| +2060|64975|F|159015.74|1992-08-14|3-MEDIUM|Clerk#000000752|0|e brave, final Tiresias x-ray slyly e| +2061|26788|F|134982.94|1994-07-06|5-LOW|Clerk#000000673|0|pending, pending accounts. slyly final packages above the | +2062|75802|F|60915.77|1992-09-13|1-URGENT|Clerk#000000018|0| quickly bold packages boost stealthily slyly ironic dependencies. car| +2063|51625|O|160893.20|1997-02-16|1-URGENT|Clerk#000000573|0|tions was about the accounts. bold deposits wake s| +2088|34390|O|82004.10|1997-06-15|1-URGENT|Clerk#000000217|0|quests are furiously| +2089|20710|F|88263.33|1994-08-08|1-URGENT|Clerk#000000045|0|xpress accounts nod slyly after the expr| +2090|45985|O|71637.96|1997-09-16|5-LOW|Clerk#000000814|0|luffily. final packages sleep quickly. furiously regular ideas ha| +2091|60634|F|198110.70|1994-05-25|4-NOT SPECIFIED|Clerk#000000417|0|aters sleep fluffily acc| +2092|112487|O|233521.71|1995-10-16|2-HIGH|Clerk#000000089|0| ironic ideas are slyly above | +2093|118055|O|27276.95|1998-07-13|4-NOT SPECIFIED|Clerk#000000984|0|es are blithely ruthlessly regular instructions. blithely express theodol| +2094|93220|F|146254.17|1994-06-06|2-HIGH|Clerk#000000365|0|grouches nag quickly special waters. slyly special accounts are alongs| +2095|115415|O|146795.58|1998-03-03|4-NOT SPECIFIED|Clerk#000000158|0|ch slowly unusual, even pinto beans. fluffi| +2120|125023|O|155894.67|1997-09-24|3-MEDIUM|Clerk#000000950|0|al pinto beans-- pend| +2121|37898|O|57991.23|1997-12-24|5-LOW|Clerk#000000333|0|y carefully final theodolites. quickly final requests sleep accounts. bl| +2122|51373|O|3002.70|1997-01-10|5-LOW|Clerk#000000126|0| deposits are furiously regular asymptotes. pinto beans wake fluffily: attai| +2123|4834|O|120812.13|1998-07-22|5-LOW|Clerk#000000564|0|ndencies would haggle; quickly final asym| +2124|75974|F|208343.83|1994-06-19|1-URGENT|Clerk#000000339|0|about the accounts. slyly regular requests integrate furiously. furious| +2125|84244|F|43668.13|1993-03-25|1-URGENT|Clerk#000000866|0|slyly bold requests are furiously. final epitaphs cajole| +2126|36403|O|192785.01|1995-11-25|5-LOW|Clerk#000000363|0|e of the dependencies detect furiously final fox| +2127|94168|O|37562.74|1996-06-01|2-HIGH|Clerk#000000720|0|usly along the blithely regular foxes. express, even so| +2152|23483|O|255389.28|1998-03-31|2-HIGH|Clerk#000000657|0|ccounts wake slyly after the furio| +2153|15307|F|158401.92|1993-06-15|5-LOW|Clerk#000000449|0| fluffy foxes wake blithely ironic requ| +2154|149383|O|153477.64|1996-03-25|4-NOT SPECIFIED|Clerk#000000818|0|e furiously ironic i| +2155|114019|O|221000.80|1997-02-20|2-HIGH|Clerk#000000532|0|age slyly around the carefully pending depo| +2156|47977|F|192410.18|1992-10-22|4-NOT SPECIFIED|Clerk#000000305|0|ages nag furiously even packages. furiously unusual pinto beans na| +2157|70522|O|146064.92|1996-01-20|4-NOT SPECIFIED|Clerk#000000955|0|iously. quickly even deposits use blithely u| +2158|111229|F|277770.83|1993-07-03|5-LOW|Clerk#000000257|0|ously. furiously ironic packages use requests. accounts solve blithe| +2159|117508|O|119903.52|1997-06-12|3-MEDIUM|Clerk#000000637|0|ely across the pending packages. ironic, daring requests inside t| +2184|44629|F|269430.68|1992-09-23|2-HIGH|Clerk#000000758|0|odolites above the ironic, ironic | +2185|49111|F|303963.75|1992-10-26|3-MEDIUM|Clerk#000000879|0|dle deposits. blithely regular| +2186|79310|O|103775.75|1997-11-14|5-LOW|Clerk#000000293|0|cross the daringly bold deposits. special ideas about the| +2187|56530|O|104086.63|1996-12-01|5-LOW|Clerk#000000430|0|grate quickly unusual pearls. express accounts grow furiously | +2188|132646|F|173107.75|1993-04-23|4-NOT SPECIFIED|Clerk#000000794|0|requests wake. carefully express excuses sleep blithely.| +2189|75593|O|83712.00|1997-03-27|4-NOT SPECIFIED|Clerk#000000050|0|counts cajole furiously: asymptotes x-ray slyly | +2190|131360|O|95177.73|1996-09-04|3-MEDIUM|Clerk#000000056|0|osits. special, bold instructions wake carefully ironic ide| +2191|62087|F|57181.41|1993-10-05|1-URGENT|Clerk#000000479|0|ages wake slyly final requests. ironic pinto beans shall ca| +2216|85912|P|228719.75|1995-04-11|4-NOT SPECIFIED|Clerk#000000977|0|n pains. regular, pending foxes boost slyly after the theod| +2217|145234|O|128585.52|1996-10-30|3-MEDIUM|Clerk#000000997|0|equests nag carefully above the blithely pen| +2218|137890|O|128211.90|1995-06-18|1-URGENT|Clerk#000000832|0|ely bold deposits. slyly express| +2219|10534|O|142365.42|1997-09-05|2-HIGH|Clerk#000000075|0|ideas maintain carefully bold requests. furiously special foxes | +2220|23144|F|98144.01|1995-01-24|5-LOW|Clerk#000000415|0|l packages x-ray furiou| +2221|18179|O|33823.59|1996-09-15|3-MEDIUM|Clerk#000000328|0|sts integrate warthogs: slyly even tithes hinder | +2222|118729|F|236982.59|1993-02-25|2-HIGH|Clerk#000000205|0|gular packages cajole across the slyly | +2223|220|O|323628.64|1996-07-06|5-LOW|Clerk#000000157|0|refully enticing excuses haggle above the furiously ironic package| +2248|75079|F|246660.01|1993-06-04|5-LOW|Clerk#000000798|0|special sauternes haggle. slowly even ideas sleep. final requests about the bl| +2249|34444|O|193825.64|1996-02-25|2-HIGH|Clerk#000000782|0|s wake blithely furiously | +2250|39238|O|133272.09|1995-10-05|3-MEDIUM|Clerk#000000651|0|eodolites along the unusual, even asymp| +2251|54877|F|11217.70|1995-02-19|5-LOW|Clerk#000000804|0|. furiously final theodolites use. blith| +2252|94744|O|51748.47|1996-12-25|2-HIGH|Clerk#000000330|0| wake. quickly final packages haggle according to the pending dep| +2253|105515|O|97020.95|1998-06-12|4-NOT SPECIFIED|Clerk#000000242|0| furiously ironic foxes nag a| +2254|89170|F|203722.47|1993-10-25|3-MEDIUM|Clerk#000000157|0|ely furiously regular instr| +2255|15892|F|315351.40|1992-01-31|3-MEDIUM|Clerk#000000053|0|the slyly express pinto beans. deposit| +2280|76822|O|173959.79|1996-08-11|4-NOT SPECIFIED|Clerk#000000356|0|y blithe deposits nag slyly about the pend| +2281|78448|F|123197.06|1993-12-31|3-MEDIUM|Clerk#000000663|0|st carefully above the slyly final requests. ir| +2282|105766|O|198354.27|1997-04-07|3-MEDIUM|Clerk#000000920|0|sly bold packages wake across the carefully express theodolites. carefully | +2283|94126|O|207188.98|1997-03-17|5-LOW|Clerk#000000919|0|the final, unusual pinto beans! carefully express dugouts | +2284|74204|O|313534.97|1996-06-11|2-HIGH|Clerk#000000594|0|gouts boost slyly across the| +2285|45475|O|129036.39|1996-04-18|2-HIGH|Clerk#000000903|0|y final packages. furiously unusual platelets boost blithely. blithel| +2286|19450|O|42242.09|1996-10-04|1-URGENT|Clerk#000000854|0| foxes. slyly final deposits use. sl| +2287|33382|O|96766.52|1996-06-24|5-LOW|Clerk#000000949|0| platelets are. fluffi| +2312|28081|F|182357.42|1993-01-31|3-MEDIUM|Clerk#000000455|0|theodolites. busy, even packages are alongsid| +2313|36184|F|95288.59|1992-08-09|3-MEDIUM|Clerk#000001000|0|iously busy accounts. blithely express gi| +2314|21815|O|119916.58|1998-06-07|1-URGENT|Clerk#000000230|0|ickly regular asymptotes a| +2315|33920|O|261596.65|1995-11-14|5-LOW|Clerk#000000465|0|e about the blithely ironic instructi| +2316|90064|O|272880.68|1995-08-23|3-MEDIUM|Clerk#000000499|0|ngly. deposits dazzle blithely fin| +2317|23551|O|110374.22|1995-12-06|3-MEDIUM|Clerk#000000625|0| nag. dependencies sleep. special, even | +2318|102188|F|85101.46|1993-06-19|4-NOT SPECIFIED|Clerk#000000960|0|lly among the furiously regular requests. express, express deposits integrate | +2319|123103|O|290961.92|1996-10-24|4-NOT SPECIFIED|Clerk#000000183|0| use. regular theodolites af| +2344|9937|O|30138.39|1996-04-12|3-MEDIUM|Clerk#000000415|0|ons. furiously pending instructions according to the furiously ironi| +2345|42089|O|70286.95|1996-04-11|4-NOT SPECIFIED|Clerk#000000024|0|ly even foxes boost permanently final excuses. ironic, final d| +2346|137731|F|81948.65|1992-04-05|2-HIGH|Clerk#000000279|0|ns. unusual, unusual requests wake slyly blithely regular foxes. final| +2347|29513|F|245684.54|1992-07-26|3-MEDIUM|Clerk#000000292|0|he ironic, unusual accounts wake quickly ironic foxes. quick| +2348|109594|F|15418.02|1993-01-28|1-URGENT|Clerk#000000558|0|hely never ironic deposit| +2349|69994|F|146098.23|1992-01-21|1-URGENT|Clerk#000000766|0|l packages sleep! fluffily daring de| +2350|82912|F|73557.02|1993-07-20|1-URGENT|Clerk#000000036|0|regular, ironic instructions across the pac| +2351|123454|O|76159.44|1996-02-02|5-LOW|Clerk#000000943|0|ges boost fluffily. special, special accounts cajole alongside of the bold re| +2376|68812|F|302734.44|1993-01-01|5-LOW|Clerk#000000587|0|are along the slyly express deposits. foxes c| +2377|13102|O|6952.74|1996-10-27|3-MEDIUM|Clerk#000000850|0|al excuses. carefully ironic foxes wake blithely. theodolites n| +2378|144665|O|19687.94|1995-10-06|1-URGENT|Clerk#000000726|0|efully unusual foxes. regular, even deposits solve blithel| +2379|29852|F|85301.20|1992-04-06|2-HIGH|Clerk#000000513|0|efully express theodolites. special dependencies haggle unusual,| +2380|109579|O|53623.13|1998-01-14|2-HIGH|Clerk#000000407|0| above the regular asymptotes. careful| +2381|125095|F|101829.47|1995-02-05|2-HIGH|Clerk#000000458|0|al deposits wake slyly | +2382|68213|F|323252.77|1994-09-22|4-NOT SPECIFIED|Clerk#000000645|0|as above the quickly final pinto beans cajole about the| +2383|149515|F|154831.22|1993-06-25|1-URGENT|Clerk#000000427|0|uests use. fluffily regu| +2408|68209|F|140626.70|1994-05-02|3-MEDIUM|Clerk#000000431|0|affix quickly regular foxes. blithely | +2409|77092|O|144692.65|1996-10-28|2-HIGH|Clerk#000000960|0|venly across the slyly bold deposi| +2410|133286|F|112195.77|1992-08-10|3-MEDIUM|Clerk#000000383|0| across the blithely regular accounts are slyly final dugouts. req| +2411|33244|O|69827.40|1998-06-26|1-URGENT|Clerk#000000462|0|ages wake ironic packages. blith| +2412|114290|O|195900.91|1997-11-24|5-LOW|Clerk#000000339|0|osits cajole. slyly bold deposits along the carefully | +2413|121612|O|307755.18|1997-03-01|3-MEDIUM|Clerk#000000912|0| theodolites cajole furiously requests. furiously even accounts nag. ironi| +2414|25460|F|50654.63|1994-08-30|1-URGENT|Clerk#000000529|0|es cajole furiously final, ironic acco| +2415|94256|O|140036.87|1997-10-02|2-HIGH|Clerk#000000936|0|the special, final f| +2440|802|O|205898.62|1995-05-24|2-HIGH|Clerk#000000312|0|old accounts against the slyly bo| +2441|124966|O|249563.98|1995-10-08|3-MEDIUM|Clerk#000000786|0|. furiously ironic dependencies shall have to haggle| +2442|120091|O|208021.42|1996-11-03|1-URGENT|Clerk#000000588|0|ons sleep around the furiously | +2443|88490|O|145874.73|1997-05-24|5-LOW|Clerk#000000883|0|iet, final theodolites. special packages are. final a| +2444|691|F|155475.18|1994-10-18|1-URGENT|Clerk#000000210|0|es! carefully final asymptotes wake pinto beans. even| +2445|50660|F|212510.04|1993-11-17|2-HIGH|Clerk#000000994|0|foxes are furiously abou| +2446|37666|F|56807.22|1994-06-20|4-NOT SPECIFIED|Clerk#000000446|0|ole blithely. slyly final requests wake. furi| +2447|43420|F|124100.52|1992-03-24|2-HIGH|Clerk#000000243|0|egular, pending packages cajole idly! quickly final theod| +2472|6928|O|216240.30|1998-06-02|1-URGENT|Clerk#000000390|0|uffily. accounts above the fluffily unusual acco| +2473|12595|O|150947.81|1997-05-12|4-NOT SPECIFIED|Clerk#000000235|0| boost. deposits after the quickly silent realms sleep carefully alongsid| +2474|21761|F|129935.59|1993-09-10|2-HIGH|Clerk#000000437|0|ronic asymptotes slee| +2475|25871|P|180697.49|1995-05-20|2-HIGH|Clerk#000000923|0|ic deposits sleep quickly along the express i| +2476|97117|O|116478.79|1996-03-18|2-HIGH|Clerk#000000150|0| maintain blithely special foxes. final accounts are bli| +2477|69406|O|58014.82|1996-01-03|4-NOT SPECIFIED|Clerk#000000245|0|ithin the carefully f| +2478|95822|O|15254.15|1997-07-22|1-URGENT|Clerk#000000755|0|nusual theodolites! express, i| +2479|74041|F|123079.90|1992-04-14|1-URGENT|Clerk#000000145|0| special instructions sleep slyly ironic dolphins. express cou| +2504|1718|O|191223.48|1995-10-31|3-MEDIUM|Clerk#000000347|0|ronic platelets haggle fluffily ironic accounts. even theodolites | +2505|68720|F|256024.19|1992-10-15|5-LOW|Clerk#000000693|0|dolites haggle even theodolites! slyly p| +2506|116275|F|141828.17|1992-02-26|3-MEDIUM|Clerk#000000757|0|ily special warthogs. slyly expres| +2507|21604|O|123534.06|1996-12-01|1-URGENT|Clerk#000000053|0|s hang above the de| +2508|77158|O|16872.48|1997-09-08|1-URGENT|Clerk#000000917|0|er the fluffily pending e| +2509|21556|F|53977.76|1993-01-30|4-NOT SPECIFIED|Clerk#000000995|0|the final deposits. thinl| +2510|9991|O|150534.88|1998-05-28|1-URGENT|Clerk#000000061|0|manently even requests nag quickly pending, fluffy deposits! special | +2511|67750|O|264492.95|1998-05-03|3-MEDIUM|Clerk#000000969|0|ckages. pending, special pinto beans | +2536|10432|F|43450.99|1993-09-20|3-MEDIUM|Clerk#000000335|0|kly regular theodolites. | +2537|108973|O|87786.42|1998-03-14|1-URGENT|Clerk#000000196|0| unusual, final packages detect furiously pending ideas| +2538|147554|F|135335.68|1994-01-24|1-URGENT|Clerk#000000946|0|ly ironic accounts. slyly special depths serve blithely. quickly close request| +2539|125254|F|206174.23|1994-03-27|4-NOT SPECIFIED|Clerk#000000035|0|lites use slyly above the | +2540|32143|F|150950.94|1994-06-10|1-URGENT|Clerk#000000222|0|ternes wake fluffily? fluffily silen| +2541|54266|O|179918.59|1996-11-22|1-URGENT|Clerk#000000402|0|ages. regularly unusual| +2542|37711|O|120918.07|1996-05-25|4-NOT SPECIFIED|Clerk#000000506|0|y against the ironic package| +2543|39820|O|150223.76|1998-06-01|1-URGENT|Clerk#000000203|0|y after the daringly express in| +2568|76321|F|142651.54|1992-08-04|5-LOW|Clerk#000000938|0|quickly express asymptotes cajole throu| +2569|65491|O|219822.18|1996-03-25|4-NOT SPECIFIED|Clerk#000000834|0|ithely even theodolites are slyly slyly| +2570|147247|O|33841.14|1995-10-12|3-MEDIUM|Clerk#000000676|0|. slyly bold requests unwind slyly. special dinos among the ironic pla| +2571|77473|F|32484.92|1995-05-25|4-NOT SPECIFIED|Clerk#000000149|0|rate furiously above the pending pac| +2572|69028|F|48427.49|1994-07-15|2-HIGH|Clerk#000000926|0|es. blithely pending notornis hang according to the pending deposi| +2573|50341|F|332188.99|1994-10-01|3-MEDIUM|Clerk#000000898|0|ounts wake after the carefully brave packages. pe| +2574|70210|F|102205.53|1993-06-09|1-URGENT|Clerk#000000703|0|packages. furiously enticing instruc| +2575|118477|F|139812.18|1992-01-31|3-MEDIUM|Clerk#000000746|0|pending requests? carefully reg| +2600|132796|P|175698.34|1995-04-04|1-URGENT|Clerk#000000139|0|quests sleep. pending, final pinto beans sleep sl| +2601|46799|F|35377.55|1992-06-07|2-HIGH|Clerk#000000303|0|he slyly special packages. gifts promise slyly bold, | +2602|99854|F|120998.26|1993-06-15|4-NOT SPECIFIED|Clerk#000000737|0| fluffily regular pin| +2603|37372|F|247007.91|1994-01-31|1-URGENT|Clerk#000000055|0|usly. packages integrate according to th| +2604|58967|F|92792.12|1994-10-15|3-MEDIUM|Clerk#000000958|0|nal courts detect always carefully even pinto be| +2605|141650|O|45665.32|1998-02-01|2-HIGH|Clerk#000000047|0|equests according to the slyly pending accounts h| +2606|58520|O|289380.69|1997-07-16|2-HIGH|Clerk#000000097|0|es cajole blithely slyly final fo| +2607|133165|F|129221.71|1992-06-08|4-NOT SPECIFIED|Clerk#000000539|0| deposits boost carefully unusual deposits. final requests cajole sl| +2632|84142|F|69737.10|1992-04-13|1-URGENT|Clerk#000000018|0|dolites. deposits are. regular, final accounts use slyly | +2633|94561|O|280619.78|1995-09-22|1-URGENT|Clerk#000000798|0|requests boost doggedly regular instructions. f| +2634|21694|F|192051.13|1992-09-27|3-MEDIUM|Clerk#000000695|0|ainst the carefully even packages. bold, thin ideas at the | +2635|87392|F|76827.17|1993-06-21|3-MEDIUM|Clerk#000000190|0|ructions are blithely deposits. slyl| +2636|139688|O|17727.61|1996-08-30|3-MEDIUM|Clerk#000000861|0|tegrate carefully. fur| +2637|80002|F|45383.51|1993-11-02|5-LOW|Clerk#000000940|0|uests. pinto beans haggle carefully special ideas. spec| +2638|137083|O|76484.55|1996-09-02|5-LOW|Clerk#000000552|0|nts do nag furiously pending accounts. slyly regular pinto beans boost qu| +2639|72317|F|133305.85|1992-01-01|3-MEDIUM|Clerk#000000830|0|ng, sly tithes. pending| +2664|115762|O|83135.21|1996-07-21|4-NOT SPECIFIED|Clerk#000000381|0|bove the accounts; slyly pending deposits boost. t| +2665|79534|O|267496.12|1996-03-10|3-MEDIUM|Clerk#000000745|0| packages are. dependencies boost furiously regular depende| +2666|52507|P|209342.20|1995-03-27|2-HIGH|Clerk#000000494|0| final depths impress q| +2667|11335|F|240180.96|1992-09-06|1-URGENT|Clerk#000000529|0|ly permanent accounts. furiously permanent platelets lose regular in| +2668|5663|O|197227.04|1995-12-25|5-LOW|Clerk#000000851|0|ntil the furiously bol| +2669|74848|F|57788.10|1992-05-18|2-HIGH|Clerk#000000739|0| dependencies dazzle. bo| +2670|68596|F|250644.75|1992-11-28|4-NOT SPECIFIED|Clerk#000000877|0| accounts. idle asymptotes wake slyly | +2671|131747|O|200868.36|1997-08-13|3-MEDIUM|Clerk#000000162|0|he furiously regular pinto beans: blithely final asymptotes are | +2696|109229|F|60291.34|1993-12-14|5-LOW|Clerk#000000804|0|t the slyly ironic ideas. quickly express account| +2697|105308|O|238672.11|1998-06-08|2-HIGH|Clerk#000000062|0|bove the final deposits. pending requests| +2698|49531|F|306648.82|1992-08-10|2-HIGH|Clerk#000000646|0|wake unusual, ironic ideas. fluffily express excuses cajole again| +2699|87800|O|84095.91|1996-05-28|5-LOW|Clerk#000000118|0|osits. carefully even packages sleep quietly | +2700|100090|F|104897.03|1994-07-31|3-MEDIUM|Clerk#000000566|0|ly even excuses. regular courts sleep pending, bold deposits. f| +2701|79798|F|231999.30|1993-08-06|3-MEDIUM|Clerk#000000194|0|es. slyly special packages print blithely. exp| +2702|147946|O|20881.93|1996-11-28|3-MEDIUM|Clerk#000000150|0| pending tithes cajole quickly after the blithely ironic a| +2703|107572|O|280549.26|1998-03-26|3-MEDIUM|Clerk#000000880|0|n deposits. ironic req| +2728|10172|O|98665.61|1997-03-31|5-LOW|Clerk#000000551|0|nts after the ideas w| +2729|100184|F|50880.61|1993-01-19|5-LOW|Clerk#000000294|0|eposits use. regular, final accounts acc| +2730|41669|F|212749.81|1994-06-16|2-HIGH|Clerk#000000393|0|ven sentiments thrash fluffily above the never quiet accounts. dogged theo| +2731|118411|O|6432.74|1997-12-21|5-LOW|Clerk#000000051|0|its wake according to the| +2732|70540|F|63577.86|1992-06-10|2-HIGH|Clerk#000000574|0|refully unusual dependencies. asymptotes print carefully along the bold cour| +2733|93577|F|152746.07|1993-01-17|1-URGENT|Clerk#000000393|0|aggle according to the furiously express do| +2734|140522|F|225263.94|1993-06-13|1-URGENT|Clerk#000000456|0|uests. silent deposits sleep: furiou| +2735|140035|F|199810.29|1994-03-20|1-URGENT|Clerk#000000659|0|sly bold deposits haggle furious| +2760|40594|O|86338.93|1996-09-19|3-MEDIUM|Clerk#000000153|0|ze around the blithely express accounts-- furiously even packages x-ray| +2761|56551|O|66731.34|1998-03-23|2-HIGH|Clerk#000000984|0| before the quickly regular foxes. bold courts use carefully about the e| +2762|37615|O|99673.43|1997-02-27|2-HIGH|Clerk#000000550|0|. regular, regular accounts wake above the fox| +2763|87743|O|155793.28|1997-04-22|3-MEDIUM|Clerk#000000158|0|mptotes wake furiously. furiously express packages nag ironic requests. spe| +2764|38551|O|231241.57|1997-09-16|2-HIGH|Clerk#000000008|0|es cajole blithely-- boldly final requests haggle slyly b| +2765|68146|F|167632.02|1992-01-18|3-MEDIUM|Clerk#000000357|0|s. furiously ironic dolphins haggle| +2766|60347|F|72429.72|1993-05-04|3-MEDIUM|Clerk#000000592|0|entiments are about the furiously ironic requests-- ironic platelet| +2767|98609|P|172943.31|1995-05-25|2-HIGH|Clerk#000000419|0|ending, ironic deposits wake according to the regular pl| +2792|119981|F|160067.07|1993-03-23|5-LOW|Clerk#000000302|0| accounts haggle carefully alon| +2793|59200|O|42394.90|1995-06-22|5-LOW|Clerk#000000906|0|usily ironic foxes. even packages are blithely of the unusual| +2794|1279|F|151063.82|1992-01-14|4-NOT SPECIFIED|Clerk#000000412|0|-ray express instructions. deposits nag sometimes even| +2795|31820|F|188457.88|1993-08-16|1-URGENT|Clerk#000000092|0|totes wake against the courts. excuses use | +2796|47203|F|186017.43|1993-01-17|3-MEDIUM|Clerk#000000687|0|accounts. furiously e| +2797|139483|F|128652.43|1994-05-18|3-MEDIUM|Clerk#000000355|0|ost against the blithely bold accounts. quickly ironic platelets serve | +2798|73834|F|270752.48|1992-04-15|1-URGENT|Clerk#000000778|0| regular excuses will have to cajole furiously. unusual excuses eng| +2799|119803|F|69569.81|1993-10-30|1-URGENT|Clerk#000000392|0|dencies cajole again| +2824|68426|O|155136.51|1997-01-20|2-HIGH|Clerk#000000479|0|tions. boldly ironic dependen| +2825|121996|O|239614.18|1995-12-18|5-LOW|Clerk#000000072|0|carefully slyly express packages. dependencies cajole furiousl| +2826|10634|O|97690.96|1997-03-07|3-MEDIUM|Clerk#000000397|0|ate furiously across the sometimes final ideas| +2827|60601|O|74509.49|1998-05-09|1-URGENT|Clerk#000000324|0|s. slyly pending accounts wake slyly. pending,| +2828|147718|F|255421.59|1994-07-25|1-URGENT|Clerk#000000795|0|quests: final, regular p| +2829|28996|F|36777.40|1994-04-20|5-LOW|Clerk#000000514|0| quickly alongside of the carefully pending reques| +2830|111937|O|111313.41|1998-05-16|5-LOW|Clerk#000000487|0|lithely. ironic packages haggle quickly. express foxes sleep. asymp| +2831|148204|F|160868.73|1995-02-06|1-URGENT|Clerk#000000291|0|lyly bold packages sleep evenly above the furiously unusual | +2856|85891|F|226049.09|1993-07-09|3-MEDIUM|Clerk#000000059|0|onic, pending requests. caref| +2857|106564|O|84817.50|1998-01-15|3-MEDIUM|Clerk#000000028|0| dependencies cajole furiously pen| +2858|146608|F|50621.66|1992-03-04|4-NOT SPECIFIED|Clerk#000000696|0|kly final packages sleep carefully. carefully regular fox| +2859|113647|O|53844.29|1996-05-22|2-HIGH|Clerk#000000435|0|eodolites about the furio| +2860|83053|F|310306.68|1992-02-15|2-HIGH|Clerk#000000304|0|haggle bravely final requests. regular, final requests against | +2861|104876|O|266424.13|1996-05-19|2-HIGH|Clerk#000000909|0|refully. quickly ironic dolphins to the blithely regular pinto beans haggle qu| +2862|136910|O|84184.40|1996-10-22|4-NOT SPECIFIED|Clerk#000000964|0|fully pending deposits! furiously bold| +2863|36190|O|22505.50|1995-04-13|4-NOT SPECIFIED|Clerk#000000290|0| carefully pending accounts hag| +2888|128242|O|304902.92|1997-01-01|3-MEDIUM|Clerk#000000867|0|its use according to the even, ironic pac| +2889|7109|F|212206.33|1993-10-16|2-HIGH|Clerk#000000286|0|riously final hockey players are quickly across the even, even foxes;| +2890|76817|O|64535.59|1995-10-07|1-URGENT|Clerk#000000092|0|eans cajole slyly aft| +2891|302|F|220829.95|1992-11-18|1-URGENT|Clerk#000000358|0|ly pending requests. even pinto beans sleep slyly ac| +2892|114106|F|23766.40|1993-08-23|3-MEDIUM|Clerk#000000608|0| final, final excuses are! thinly iron| +2893|545|F|41477.11|1993-11-01|4-NOT SPECIFIED|Clerk#000000883|0|ests. regular requests boost. regular pinto beans hinder carefully| +2894|148502|F|165662.68|1993-11-16|1-URGENT|Clerk#000000427|0|ual deposits haggle quickly fluffily even deposits. even, even packages acc| +2895|17885|F|131398.41|1993-06-11|4-NOT SPECIFIED|Clerk#000000947|0|s accounts. quickly daring foxes are. slowly slow deposits nag along the care| +2920|133870|O|64368.40|1996-04-12|2-HIGH|Clerk#000000422|0|, regular requests detect furiously. even, even foxes d| +2921|97594|O|197233.66|1997-02-06|5-LOW|Clerk#000000280|0|uriously across the blithely final accounts. furiously | +2922|131770|O|107961.32|1995-10-26|2-HIGH|Clerk#000000518|0|slyly even deposits use slyly. even foxes integrate furiously ironic reque| +2923|29501|F|14290.07|1992-11-30|5-LOW|Clerk#000000680|0|ctions. silent deposits sleep slyly careful theodolites. carefully pendin| +2924|56719|O|52254.22|1997-04-01|2-HIGH|Clerk#000000966|0|iously unusual packages affix abov| +2925|4027|O|131983.39|1998-03-28|1-URGENT|Clerk#000000164|0|packages. excuses about the ironic foxes run acr| +2926|19529|F|181035.46|1992-12-20|3-MEDIUM|Clerk#000000003|0|s requests haggle doggedly. fluffily regular foxes haggle caref| +2927|17666|F|102952.92|1993-04-07|1-URGENT|Clerk#000000524|0|kly silent packages nag furiou| +2952|53122|O|294475.79|1995-09-20|3-MEDIUM|Clerk#000000992|0|fully ironic accounts. packages need to haggle carefully carefully ironic a| +2953|14023|O|55020.35|1995-10-18|1-URGENT|Clerk#000000841|0|ly blithely regular theodolites? regular plate| +2954|6476|F|338602.48|1993-03-01|3-MEDIUM|Clerk#000000748|0|y regular instructio| +2955|82604|F|156150.82|1992-05-16|5-LOW|Clerk#000000716|0|l requests. unusual pinto beans alongside of the fluffily bold packages | +2956|72112|O|193457.61|1997-11-22|2-HIGH|Clerk#000000603|0|ious asymptotes. carefully ruthless platelets along the regul| +2957|112582|F|254043.69|1993-11-03|1-URGENT|Clerk#000000318|0|the pending, pending foxes. b| +2958|46537|F|26788.11|1994-07-18|2-HIGH|Clerk#000000141|0|, even theodolites. pending, | +2959|14288|O|216639.54|1996-08-04|3-MEDIUM|Clerk#000000399|0|ironic pinto beans at the ironic ideas run carefully never regular dependencie| +2984|126055|O|133623.49|1997-10-16|3-MEDIUM|Clerk#000000544|0|accounts nag at the quickly express foxes. ideas wake acr| +2985|572|F|317921.89|1992-12-05|4-NOT SPECIFIED|Clerk#000000078|0| carefully special deposits about the blith| +2986|3457|F|241704.16|1994-08-07|3-MEDIUM|Clerk#000000632|0|s. ruthlessly regular dolphins are slyly express, special request| +2987|21317|O|1772.29|1996-12-03|3-MEDIUM|Clerk#000000547|0|quests nag alongside of the packages. i| +2988|63514|F|39814.72|1994-08-31|1-URGENT|Clerk#000000838|0|iously regular packages above the bold requests nag fl| +2989|69614|O|59822.74|1997-07-04|4-NOT SPECIFIED|Clerk#000000949|0|yly thin accounts. | +2990|144133|F|139450.09|1992-05-03|5-LOW|Clerk#000000429|0|above the slyly even accounts sleep final | +2991|63118|O|47304.96|1998-05-30|2-HIGH|Clerk#000000412|0|slyly furious accounts use about t| +3016|247|O|128784.94|1995-11-01|4-NOT SPECIFIED|Clerk#000000093|0|dly? bold requests affix furiou| +3017|87053|O|129858.17|1995-08-16|4-NOT SPECIFIED|Clerk#000000834|0|ccounts. slyly unusual excuses around the fluffily final requests doz| +3018|147002|F|49590.30|1993-09-09|4-NOT SPECIFIED|Clerk#000000209|0|ions. regular requests integrate. blithely ironic pinto b| +3019|10196|F|6392.48|1993-10-24|2-HIGH|Clerk#000000199|0| of the blithely express deposits| +3020|54863|O|228398.04|1998-01-01|3-MEDIUM|Clerk#000000741|0|y even requests. carefully final foxes about the e| +3021|29234|F|36401.62|1994-08-23|1-URGENT|Clerk#000000577|0|ular excuses snooze slyly among the fluffily special excuses. slyly even reque| +3022|78367|F|113115.17|1992-04-19|3-MEDIUM|Clerk#000000788|0|s boost finally. even, ironic pinto beans nod alongside of th| +3023|88777|O|195185.95|1998-07-02|4-NOT SPECIFIED|Clerk#000000311|0|ar, special deposits sleep a| +3048|142399|F|252772.47|1994-07-28|5-LOW|Clerk#000000213|0|s sleep furiously along the finally bold accounts? ac| +3049|35065|O|130759.84|1995-10-28|4-NOT SPECIFIED|Clerk#000000779|0|s mold according to the ruthlessly regular dugouts. special | +3050|130709|O|118393.18|1995-11-24|2-HIGH|Clerk#000000903|0|egular packages boost fluffily acros| +3051|66397|O|56077.18|1998-01-12|5-LOW|Clerk#000000459|0| slyly across the bravely regular accounts-- iron| +3052|53737|O|155587.40|1996-03-28|5-LOW|Clerk#000000628|0|slyly even warthogs sleep furiously against the carefully regular sent| +3053|146656|O|229215.94|1997-05-02|5-LOW|Clerk#000000952|0|ss packages; blithely ironic platelets wake. eve| +3054|18014|F|123744.15|1992-12-11|2-HIGH|Clerk#000000511|0| carefully pending requests. regular| +3055|52843|F|265953.09|1993-04-04|2-HIGH|Clerk#000000660|0|g carefully above the carefully final epitaphs. blithely ev| +3080|126394|F|355676.38|1994-07-05|5-LOW|Clerk#000000562|0| cajole furiously regular foxe| +3081|133924|O|100620.62|1997-03-31|1-URGENT|Clerk#000000424|0|yly. regular accounts alongside of the regular, even accounts haggle express| +3082|94720|O|121420.18|1996-04-18|4-NOT SPECIFIED|Clerk#000000582|0| regular ideas integrate? furiously regular| +3083|130849|F|28280.69|1992-11-04|4-NOT SPECIFIED|Clerk#000000231|0|riously bravely express ideas. bli| +3084|147517|F|313665.61|1993-04-21|3-MEDIUM|Clerk#000000564|0|ngside of the blithely even requests are quickly before the slyly pending | +3085|102163|F|80904.42|1994-05-19|5-LOW|Clerk#000000286|0|ges after the regular, regular cou| +3086|143216|O|67299.60|1998-07-19|2-HIGH|Clerk#000000003|0|ckages wake carefully after the quickly even pack| +3087|115463|O|207041.54|1997-11-28|3-MEDIUM|Clerk#000000239|0|along the platelets. even, special requests run slyly fluf| +3112|28513|O|64283.60|1996-03-16|3-MEDIUM|Clerk#000000155|0|refully unusual pinto beans. reg| +3113|99149|F|335936.39|1992-10-06|4-NOT SPECIFIED|Clerk#000000830|0|ges. fluffily bold asymptotes are permanently ex| +3114|43973|O|123490.05|1996-06-14|4-NOT SPECIFIED|Clerk#000000946|0|dolites detect ironic packages. deposits sleep blithely final packages. | +3115|141302|F|96150.72|1995-02-22|5-LOW|Clerk#000000359|0|s. silently final deposits | +3116|58019|O|231965.84|1998-03-07|2-HIGH|Clerk#000000586|0|slyly silent deposits against the final, specia| +3117|119629|F|50465.31|1994-11-19|2-HIGH|Clerk#000000068|0|s cajole quietly. blithely unusual foxes haggle thi| +3118|148403|O|239372.34|1997-11-04|1-URGENT|Clerk#000000277|0|refully among the blithely ruthless depos| +3119|893|O|69800.64|1997-01-06|3-MEDIUM|Clerk#000000024|0|n deposits. silent, ironic packages sleep carefully. slyly b| +3144|149341|O|224922.98|1996-05-19|1-URGENT|Clerk#000000701|0|inal accounts do sublate| +3145|144122|F|71627.94|1992-07-04|5-LOW|Clerk#000000201|0|n theodolites. furiously regular requests | +3146|48418|F|74406.60|1995-01-28|3-MEDIUM|Clerk#000000285|0|ep even, idle packages. furiou| +3147|136150|F|153386.60|1993-04-16|4-NOT SPECIFIED|Clerk#000000065|0|ing to the ironic instr| +3148|139753|O|115899.56|1997-11-26|3-MEDIUM|Clerk#000000831|0|ns cajole quickly. furiously unusual requests detect silent dolphins. fina| +3149|98965|F|60878.32|1993-08-09|1-URGENT|Clerk#000000851|0| ironic deposits. regular, final theodolites agai| +3150|73261|O|19555.74|1997-09-20|4-NOT SPECIFIED|Clerk#000000399|0|e fluffily fluffily even escapades. pending, ironic theodolites are. ironi| +3151|73006|O|228047.61|1996-04-09|4-NOT SPECIFIED|Clerk#000000237|0|es according to the final, final deposits cajole quickly| +3176|10570|F|159367.39|1994-01-26|3-MEDIUM|Clerk#000000356|0|nto beans. fluffily unusual requests nag slyly about the expres| +3177|29548|O|80146.21|1996-07-06|3-MEDIUM|Clerk#000000504|0|eposits. quickly re| +3178|105388|O|193660.13|1996-08-23|4-NOT SPECIFIED|Clerk#000000211|0|y silent requests. asymptotes boost slyly after the reque| +3179|31423|F|55463.81|1992-10-06|4-NOT SPECIFIED|Clerk#000000533|0|ests cajole furiously: foxes wake furiously furiously final id| +3180|121471|F|98955.04|1994-09-28|4-NOT SPECIFIED|Clerk#000000808|0| to wake furiously re| +3181|52721|F|54368.73|1993-01-19|5-LOW|Clerk#000000301|0|ag blithely regular deposits. furiously| +3182|23911|F|193262.22|1994-03-06|2-HIGH|Clerk#000000049|0|ic pinto beans nag furiously along the express accounts. asymptotes | +3183|9601|F|110012.75|1994-03-19|3-MEDIUM|Clerk#000000939|0|arefully bold instructions. quickly reg| +3208|86641|O|153169.28|1998-04-03|2-HIGH|Clerk#000000568|0| packages. blithely regular deposits are quickly | +3209|124720|O|29266.40|1997-10-15|2-HIGH|Clerk#000000594|0|d braids must have to solve even, pending theodolites. fur| +3210|67417|O|139035.83|1996-07-17|5-LOW|Clerk#000000222|0|l, even accounts are quickly regular ideas. permanent requests haggle fi| +3211|123838|F|9487.44|1994-09-15|1-URGENT|Clerk#000000652|0|carefully final ideas sleep slow, unusual deposits. carefully pending | +3212|89116|F|125999.99|1995-01-29|2-HIGH|Clerk#000000520|0|lly ironic frets hinder slyly above the slyly express packages. quic| +3213|149962|O|195153.98|1995-06-10|5-LOW|Clerk#000000624|0|ts wake regular accounts. furiously pending accounts cajol| +3214|101630|O|94855.63|1997-09-01|5-LOW|Clerk#000000545|0|uests sublate slyly| +3215|30865|O|210274.57|1995-10-30|1-URGENT|Clerk#000000973|0|ep carefully express instructions. idly final packages | +3240|30446|F|177985.76|1993-01-13|4-NOT SPECIFIED|Clerk#000000138|0|enticingly even foxes boost carefully along the silently express | +3241|55012|O|229031.17|1997-03-04|5-LOW|Clerk#000000638|0|ously careful requests. accounts boost slyly acr| +3242|117877|F|177233.22|1993-11-07|4-NOT SPECIFIED|Clerk#000000599|0|regular instructions. pending, final accounts wake bravely above the | +3243|107585|O|84177.56|1995-10-26|2-HIGH|Clerk#000000894|0| silent accounts. slyly s| +3244|66997|F|88796.86|1993-05-03|4-NOT SPECIFIED|Clerk#000000518|0|oss the epitaphs. regular requests sleep fluffily against the regular orbits| +3245|109850|O|65276.33|1995-06-07|2-HIGH|Clerk#000000245|0|uests. furiously unusual ideas detect. bold platelets are sly| +3246|46837|F|41450.40|1993-08-24|5-LOW|Clerk#000000663|0|s accounts. regular, careful accounts accordi| +3247|127852|O|197980.90|1997-09-09|2-HIGH|Clerk#000000947|0|ges use slyly. bold reque| +3272|50492|O|305674.93|1998-05-01|5-LOW|Clerk#000000363|0|ely ironic requests cajole carefully. quickly regular foxes cajole quickly fin| +3273|62306|F|272081.68|1992-09-18|5-LOW|Clerk#000000303|0|ids. quickly express requests sleep slyly bold foxes. ironi| +3274|24481|O|94087.21|1996-12-01|5-LOW|Clerk#000000944|0|y regular courts cajole pending packages. careful| +3275|144247|O|245460.19|1995-06-20|5-LOW|Clerk#000000251|0|al dependencies. regular depos| +3276|52922|F|382710.00|1993-09-09|2-HIGH|Clerk#000000964|0|e deposits. packages snooze furio| +3277|105304|F|61330.89|1994-02-12|2-HIGH|Clerk#000000590|0|ainst the courts. quickly ironic excuses us| +3278|131966|F|80117.78|1992-04-28|4-NOT SPECIFIED|Clerk#000000625|0|y against the express instructions. i| +3279|48383|F|223271.68|1992-09-09|4-NOT SPECIFIED|Clerk#000000607|0|tructions are busily according to the special requ| +3304|10463|O|39832.68|1997-08-06|1-URGENT|Clerk#000000866|0|s sleep slyly final deposits. blithely even dependencies boost-- quickly | +3305|44939|O|139187.68|1996-04-15|2-HIGH|Clerk#000000818|0|lent dolphins sleep carefully slyly express packages. speci| +3306|24938|O|231916.30|1996-07-05|2-HIGH|Clerk#000000042|0|ithely. pending, silent notornis are carefully in| +3307|26710|F|35215.20|1993-11-19|5-LOW|Clerk#000000793|0|he furiously dogged platelets boost about the slyly regular packages. furi| +3308|83410|F|61200.35|1994-02-01|1-URGENT|Clerk#000000204|0|gular warthogs. bravely bold ideas nag blithely. furiously | +3309|96857|O|225306.93|1996-05-13|1-URGENT|Clerk#000000005|0|are quickly alongside of the | +3310|61657|O|162715.05|1997-05-08|5-LOW|Clerk#000000785|0|. instructions dazzle blithely | +3311|51580|P|198438.11|1995-03-20|2-HIGH|Clerk#000000866|0|lar accounts maintain quickly slyly final| +3336|23806|F|150095.16|1994-07-13|1-URGENT|Clerk#000000745|0|y unusual pinto beans bo| +3337|25921|O|28370.01|1995-06-12|3-MEDIUM|Clerk#000000235|0|ts. unusual, slow accounts shall have to haggle about the a| +3338|32882|O|146473.25|1995-07-18|3-MEDIUM|Clerk#000000836|0|boost carefully around the | +3339|35918|F|219796.05|1992-11-18|2-HIGH|Clerk#000000089|0|final requests wake carefully at t| +3340|66991|O|156192.92|1995-09-13|1-URGENT|Clerk#000000206|0|cial platelets are? carefully ironic ideas cajole carefully whithout the e| +3341|10723|O|36775.69|1997-11-15|2-HIGH|Clerk#000000757|0|accounts haggle quickly silent packages.| +3342|39212|F|117887.58|1995-03-15|3-MEDIUM|Clerk#000000780|0|. fluffily silent foxes so| +3343|80842|F|179978.07|1994-08-23|1-URGENT|Clerk#000000643|0|deas. regular, special asymptotes wake. requests eat furiously unusual theo| +3368|137921|F|137015.92|1994-03-03|5-LOW|Clerk#000000841|0|hely against the iron| +3369|82477|O|14055.83|1997-03-11|2-HIGH|Clerk#000000898|0|riously silent pinto beans. ca| +3370|37427|F|146561.68|1994-01-25|1-URGENT|Clerk#000000094|0| final pinto beans according t| +3371|77138|O|96685.89|1995-12-27|5-LOW|Clerk#000000985|0|uriously. final acco| +3372|2419|F|117960.91|1993-02-09|2-HIGH|Clerk#000000031|0|uickly regular deposits. carefully car| +3373|137027|O|181020.35|1995-08-27|2-HIGH|Clerk#000000233|0|y unusual instructions nag blithely accounts;| +3374|61747|F|220810.21|1993-01-13|1-URGENT|Clerk#000000325|0|e carefully final, silent theodolites. even, permanent acco| +3375|61069|F|161941.71|1992-01-31|3-MEDIUM|Clerk#000000735|0|usly unusual courts. carefully final depo| +3400|82694|F|34043.69|1993-06-26|5-LOW|Clerk#000000254|0| unusual requests nag according to the quickly special excuses. blithely | +3401|87865|F|188465.51|1992-03-16|2-HIGH|Clerk#000000322|0|iously regular requests. asymptotes nag blithely. accounts sublate| +3402|134587|F|85456.74|1992-06-13|1-URGENT|Clerk#000000140|0|yly about the furiously final deposits. depo| +3403|131639|F|236220.87|1992-12-28|2-HIGH|Clerk#000000460|0|e final deposits. carefully sile| +3404|100760|F|294670.53|1993-03-27|5-LOW|Clerk#000000440|0|nal dolphins. final | +3405|118759|F|92769.14|1992-12-27|3-MEDIUM|Clerk#000000031|0|blithely regular account| +3406|56431|F|104703.18|1992-03-23|5-LOW|Clerk#000000260|0|ges. quickly pending| +3407|108946|F|213190.43|1992-03-24|1-URGENT|Clerk#000000845|0|ght wake along the slyly even packa| +3432|25|F|32275.72|1993-04-11|1-URGENT|Clerk#000000021|0|te. busy pinto beans sleep slyly in place of the final, bold de| +3433|98569|F|179689.56|1993-07-12|4-NOT SPECIFIED|Clerk#000000783|0| notornis nag carefully! furiously bold | +3434|19708|F|72489.37|1994-08-29|3-MEDIUM|Clerk#000000572|0|riously regular, bold packages. quick| +3435|7760|F|105157.26|1993-09-09|2-HIGH|Clerk#000000184|0| could haggle fluffily even, final requests. idle deposits above the regular| +3436|58349|O|86519.40|1997-06-01|2-HIGH|Clerk#000000702|0|lar theodolites. instructions are against the a| +3437|110887|O|403484.10|1995-11-23|5-LOW|Clerk#000000748|0|equests. even theodolites among the slyly even instructions cajole blithel| +3438|59315|O|129939.92|1996-03-16|5-LOW|Clerk#000000984|0|blithely after the ideas. carefully bold foxes are furiously. ideas| +3439|3535|F|141113.80|1992-04-08|1-URGENT|Clerk#000000596|0| cajole. pinto beans wake above the blithely even depos| +3464|346|P|157789.35|1995-03-21|3-MEDIUM|Clerk#000000371|0|al asymptotes affix carefully slyly even i| +3465|84623|F|173454.75|1994-08-10|3-MEDIUM|Clerk#000000357|0|blithely slowly even Tiresias. regular wa| +3466|107359|O|221011.72|1996-12-06|5-LOW|Clerk#000000887|0|sits. pending, regular reques| +3467|3499|O|117111.47|1996-11-24|3-MEDIUM|Clerk#000000159|0|pecial requests. furi| +3468|2048|F|64851.52|1994-08-16|3-MEDIUM|Clerk#000000473|0|l accounts. carefully pending ideas after the furiously re| +3469|57410|O|40748.67|1995-11-06|2-HIGH|Clerk#000000491|0|rding to the quickly ironic| +3470|76216|P|255627.88|1995-05-23|1-URGENT|Clerk#000000641|0| regular, ironic packages nod| +3471|97919|O|75078.61|1996-01-31|2-HIGH|Clerk#000000148|0| requests wake regula| +3496|67987|O|271546.96|1996-01-26|1-URGENT|Clerk#000000782|0|ular pinto beans could wake fluffily. unusual, even re| +3497|87764|F|253625.57|1992-12-18|2-HIGH|Clerk#000000476|0| quickly above the bli| +3498|89371|F|78464.76|1994-08-14|3-MEDIUM|Clerk#000000284|0|arefully. furiously bold foxes nag fluffily packages. blithely express exc| +3499|102115|O|34756.78|1997-12-06|2-HIGH|Clerk#000000889|0|old ideas affix furiously. de| +3500|71158|F|361060.05|1993-05-29|3-MEDIUM|Clerk#000000263|0|ular accounts x-ray slyly bold asymptotes; slyly final ac| +3501|124234|O|11512.72|1997-10-07|3-MEDIUM|Clerk#000000280|0|ckly silent packages are quickly across the carefully | +3502|124505|O|58076.95|1998-06-23|1-URGENT|Clerk#000000357|0|ld packages boost blithely after the even, special deposits. blithely ironic| +3503|42310|P|110007.05|1995-04-14|2-HIGH|Clerk#000000762|0|kly even instructions use quickly express accounts. carefully even d| +3528|95018|F|47550.04|1992-08-22|2-HIGH|Clerk#000000873|0|final braids. carefully special ideas according to the f| +3529|64300|O|236432.88|1998-03-12|2-HIGH|Clerk#000000682|0|thely ironic packages wake. furiously regular packages ar| +3530|80314|F|191864.72|1994-05-21|3-MEDIUM|Clerk#000000328|0|nes wake slyly after the slyly iro| +3531|122420|F|65762.34|1993-10-03|2-HIGH|Clerk#000000215|0| even pains sleep fluffily silent packages; ironically regular requ| +3532|107858|O|126173.44|1996-12-05|1-URGENT|Clerk#000000099|0|s wake blithely. deposits are fluffily a| +3533|16447|F|42569.51|1994-06-07|1-URGENT|Clerk#000000652|0|ic accounts boost blithely fluffily express theodolites. ironic tithe| +3534|122452|O|127318.22|1997-09-04|5-LOW|Clerk#000000625|0|lyly bold pinto beans | +3535|30679|F|168808.50|1992-07-27|3-MEDIUM|Clerk#000000698|0|ag carefully. carefully express requests against the furiously special tithes | +3560|49810|F|66276.68|1992-09-13|3-MEDIUM|Clerk#000000163|0|lphins detect. furiously reg| +3561|133646|O|155911.15|1997-12-20|2-HIGH|Clerk#000000096|0|sits. ironic accounts sleep alongside of the | +3562|87319|F|212059.08|1995-01-23|1-URGENT|Clerk#000000147|0| the regular, final asymptotes hagg| +3563|103271|O|157949.00|1997-09-16|2-HIGH|Clerk#000000268|0|ular accounts are furiously alongside of the deposits. pending| +3564|21847|O|200649.62|1995-03-29|2-HIGH|Clerk#000000131|0|refully blithely regular accounts. express accounts wake fluffily.| +3565|128236|F|201896.15|1992-06-03|3-MEDIUM|Clerk#000000204|0| mold across the express instructions. quickly unusual plat| +3566|61690|F|227216.38|1994-04-01|5-LOW|Clerk#000000342|0| packages. evenly final t| +3567|18104|O|22195.69|1998-03-19|1-URGENT|Clerk#000000856|0|e blithely special platelets. blithely regular t| +3592|60214|F|137257.35|1994-09-28|3-MEDIUM|Clerk#000000918|0| accounts detect slyly | +3593|101696|O|198636.81|1996-08-25|4-NOT SPECIFIED|Clerk#000000269|0|ithely idle accounts. slyly even packages need to| +3594|102386|F|77192.58|1992-06-22|5-LOW|Clerk#000000015|0|nto beans after the| +3595|148102|F|243339.38|1992-09-07|5-LOW|Clerk#000000061|0|the furiously pending accounts thrash | +3596|49924|O|235260.83|1995-08-20|1-URGENT|Clerk#000000007|0|des the furiously ironic accounts. pac| +3597|115243|F|100486.18|1993-03-17|2-HIGH|Clerk#000000285|0|lar depths cajole fluffily above the silent, express id| +3598|65813|F|229917.95|1993-10-19|5-LOW|Clerk#000000479|0|thely even deposits are slyly even | +3599|5981|O|36544.98|1998-01-18|4-NOT SPECIFIED|Clerk#000000683|0|g to the slyly ironic theodolites grow quick| +3624|22172|F|238897.18|1992-05-20|4-NOT SPECIFIED|Clerk#000000067|0|uriously unusual orbits. slow, even requests use furiously. furiously | +3625|32311|O|142300.81|1995-08-15|3-MEDIUM|Clerk#000000358|0|ully ironic theodolites nag regula| +3626|24527|F|311048.34|1993-06-09|1-URGENT|Clerk#000000268|0|l packages detect carefully a| +3627|16358|F|157181.58|1992-08-13|2-HIGH|Clerk#000000566|0|- fluffily ironic platelets are carefully. regular requests are quickly. expr| +3628|113411|F|102190.48|1993-02-17|2-HIGH|Clerk#000000171|0|are carefully fluffily express hockey players. ironic, ruthless i| +3629|48365|O|62267.98|1995-12-16|2-HIGH|Clerk#000000249|0| deposits boost after the bold, pending ideas. idle grouch| +3630|10732|F|165300.36|1993-08-13|2-HIGH|Clerk#000000583|0|pitaphs cajole quickly along | +3631|50191|O|124573.52|1996-05-19|2-HIGH|Clerk#000000835|0|nag: final courts use packages. fluffily final accounts c| +3656|78991|O|246842.80|1996-11-16|1-URGENT|Clerk#000000879|0|usily at the bold, fin| +3657|81551|F|181477.83|1993-02-07|2-HIGH|Clerk#000000379|0| regular accounts. regular patterns are regularly above the furiously even acc| +3658|73582|O|60541.52|1996-01-22|3-MEDIUM|Clerk#000000841|0|e across the silent, regular deposits. slyly special packages are above the| +3659|63626|F|56448.12|1993-09-17|4-NOT SPECIFIED|Clerk#000000267|0|e silently. special requests across the slyly even | +3660|11059|F|86451.68|1992-01-27|4-NOT SPECIFIED|Clerk#000000913|0|ular foxes wake across the carefully express requests: depende| +3661|144311|F|109764.01|1993-07-03|3-MEDIUM|Clerk#000000993|0|quests haggle always even, final idea| +3662|83843|O|133628.57|1998-04-26|3-MEDIUM|Clerk#000000413|0|uses. enticing deposits play qui| +3663|37799|O|69578.78|1997-05-23|5-LOW|Clerk#000000698|0|riously! even accounts cajole silently. slyly special | +3688|35369|O|205317.56|1998-02-07|4-NOT SPECIFIED|Clerk#000000583|0|s asymptotes haggle blithely ironic accounts. ironic, regular depe| +3689|133526|P|213002.92|1995-03-20|2-HIGH|Clerk#000000940|0|lent dependencies. carefully regular packages sleep a| +3690|5455|O|102276.74|1998-07-15|4-NOT SPECIFIED|Clerk#000000951|0|nusual asymptotes are idly alongside of the slyly final theodolites. un| +3691|28405|F|17943.99|1992-03-16|3-MEDIUM|Clerk#000000269|0|ainst the stealthily even pinto bean| +3692|81553|F|183834.05|1992-09-28|2-HIGH|Clerk#000000552|0|nts nag blithely after the blithely regular platelets. regular,| +3693|81748|F|91171.51|1992-12-17|1-URGENT|Clerk#000000430|0|ironically regular asymptotes. | +3694|60155|F|132134.34|1994-01-10|3-MEDIUM|Clerk#000000944|0| to haggle quickly epitaphs. instructions nag quickly. quick| +3695|9652|O|56588.84|1998-03-31|2-HIGH|Clerk#000000452|0|nt packages nag fluffily after the re| +3720|49859|O|43718.42|1997-05-29|1-URGENT|Clerk#000000680|0|ar requests boost furiously unusual accounts? regular deposit| +3721|73178|O|97600.21|1996-01-03|4-NOT SPECIFIED|Clerk#000000629|0|nstructions. slyly regular platelets wake carefully fluffily | +3722|49814|O|111044.97|1998-01-23|5-LOW|Clerk#000000271|0|refully around the blithely special deposits. f| +3723|71722|O|252358.03|1997-12-31|1-URGENT|Clerk#000000022|0|le carefully express pinto beans. blithely special platelets are furiously b| +3724|10972|F|75623.88|1993-05-30|4-NOT SPECIFIED|Clerk#000000932|0|y above the blithely expre| +3725|33325|O|174843.78|1997-09-22|5-LOW|Clerk#000000563|0|deas! fluffily special pinto beans sl| +3726|136972|F|218030.09|1993-08-02|3-MEDIUM|Clerk#000000444|0|y ironic instructions. p| +3727|27619|F|106618.72|1994-10-20|2-HIGH|Clerk#000000514|0|y regular accounts. blithely pending packages cajole along the eve| +3752|90790|F|92180.49|1993-02-19|2-HIGH|Clerk#000000628|0| carefully regular somas. fluffily ironic packages integrate regular, f| +3753|89398|F|238852.30|1994-03-16|3-MEDIUM|Clerk#000000473|0|cross the slyly regular packages haggle along| +3754|82192|O|13625.74|1997-01-08|5-LOW|Clerk#000000885|0|ccounts are after the express pinto beans. even requests p| +3755|31729|O|201982.37|1995-09-09|3-MEDIUM|Clerk#000000587|0|lithely silent braids affix carefully express forges. deposits doubt| +3756|12361|F|114749.48|1993-12-14|4-NOT SPECIFIED|Clerk#000000139|0| slyly even accounts among the even pinto beans haggle blithely blithely | +3757|127082|F|9161.65|1993-01-18|4-NOT SPECIFIED|Clerk#000000220|0|s wake carefully about the furiousl| +3758|4009|F|157818.44|1994-09-19|2-HIGH|Clerk#000000426|0|unts affix against the quickly sly packages. carefully fluffy packages doub| +3759|16861|F|193220.78|1994-07-03|1-URGENT|Clerk#000000779|0|eposits wake slyly regular, even foxes. final accounts sleep furiou| +3784|26516|F|126692.55|1993-05-12|5-LOW|Clerk#000000579|0|ironic dependencies. carefully even waters sleep quickly above the b| +3785|141838|F|317336.85|1993-11-24|4-NOT SPECIFIED|Clerk#000000485|0|refully unusual packages haggle accounts? regular theodolites haggle furiou| +3786|56267|F|78010.30|1992-07-09|5-LOW|Clerk#000000045|0|egular requests. carefully ent| +3787|79019|F|56073.52|1994-02-26|3-MEDIUM|Clerk#000000174|0|al accounts. furiously express accounts cajole pains. ca| +3788|106835|F|212178.27|1994-12-08|3-MEDIUM|Clerk#000000103|0| regular accounts boost carefully according to the sly| +3789|72725|O|133550.47|1995-10-09|3-MEDIUM|Clerk#000000685|0|elets. unusual requests wake i| +3790|79216|P|347443.06|1995-03-16|1-URGENT|Clerk#000000870|0|ructions. carefully permanent deposits cajole c| +3791|118528|O|61183.61|1997-10-05|1-URGENT|Clerk#000000293|0|ornis along the blithely express instructions sleep against the carefully| +3816|76127|F|21570.31|1992-12-11|2-HIGH|Clerk#000000860|0|usual, bold foxes. silent, stealthy deposits detect idly.| +3817|107738|P|308985.21|1995-04-14|2-HIGH|Clerk#000000076|0| ironic packages haggle fin| +3818|89128|O|61652.03|1996-06-23|5-LOW|Clerk#000000050|0|sual pinto beans! fluffily final deposits sleep| +3819|55270|O|208278.73|1996-08-23|3-MEDIUM|Clerk#000000630|0| carefully silent foxes; carefull| +3820|119272|O|51634.31|1998-01-23|5-LOW|Clerk#000000468|0|he blithely final frays cajole carefully after the careful| +3821|149722|F|37074.64|1992-06-20|3-MEDIUM|Clerk#000000443|0|equests. slyly ironic packages use. unusual, r| +3822|103492|F|73253.76|1993-11-22|1-URGENT|Clerk#000000974|0|ffily express theodolites. accoun| +3823|134674|O|158692.86|1997-07-18|5-LOW|Clerk#000000986|0|uses grow fluffily against the fina| +3848|102316|F|187348.10|1993-12-22|5-LOW|Clerk#000000775|0|re blithely unusual ideas. furious packages x-ray slyly regular ideas. blit| +3849|24298|F|48925.32|1992-02-09|4-NOT SPECIFIED|Clerk#000000207|0|ons against the even, pending requests use according to the requ| +3850|57229|O|355595.86|1996-03-19|3-MEDIUM|Clerk#000000118|0|y ironic patterns x-ray quickly. blithely ironic deposits are along t| +3851|24535|O|74117.09|1997-12-19|4-NOT SPECIFIED|Clerk#000000109|0|ts! ironic requests sleep blithely along the| +3852|2107|O|54651.32|1996-02-08|2-HIGH|Clerk#000000025|0|y silent, even accounts: regular excuses boost | +3853|149501|F|188906.70|1992-10-01|4-NOT SPECIFIED|Clerk#000000178|0|ages wake across the | +3854|148240|O|73695.32|1996-10-08|5-LOW|Clerk#000000490|0|al requests haggle | +3855|93134|F|341227.55|1993-10-23|1-URGENT|Clerk#000000437|0|ages. slyly regular packages detect quickly slyly silent acc| +3880|51199|F|38039.64|1992-11-27|2-HIGH|Clerk#000000335|0|accounts. final deposits solve carefully accordi| +3881|97973|O|177303.57|1995-09-05|1-URGENT|Clerk#000000055|0|ly close foxes x-ray alongside of the | +3882|75124|O|177231.68|1996-07-21|2-HIGH|Clerk#000000061|0|slyly at the slyly even pearls. blithely pending foxes are blithely. even in| +3883|49981|O|48786.10|1995-05-17|1-URGENT|Clerk#000000585|0|e carefully bold dependencies sleep after the even foxes. cou| +3884|27715|O|261516.70|1996-05-29|2-HIGH|Clerk#000000066|0|packages nag. slyly regular p| +3885|52807|O|16173.29|1997-04-18|1-URGENT|Clerk#000000820|0|r foxes. furiously ironic| +3886|126196|O|222511.06|1996-05-28|4-NOT SPECIFIED|Clerk#000000021|0|ans. final pains around the even, regular instructions u| +3887|112759|O|264092.90|1998-04-26|4-NOT SPECIFIED|Clerk#000000221|0|ges do sleep beside the deposits. ironic, unusual excuses use furiousl| +3912|14824|F|234944.16|1994-07-19|4-NOT SPECIFIED|Clerk#000000048|0|ges. slyly final requests around the foxes x-| +3913|142084|O|75527.54|1995-10-07|3-MEDIUM|Clerk#000000311|0|ctions according to the de| +3914|130933|O|272293.29|1996-10-02|5-LOW|Clerk#000000789|0|ic, unusual packages among the quickly unusual accounts sleep quic| +3915|58279|O|300221.86|1995-09-16|3-MEDIUM|Clerk#000000298|0|ironic theodolites. blith| +3916|131587|O|217527.16|1996-07-12|2-HIGH|Clerk#000000406|0|s. silently final ideas use according to the pending, special packag| +3917|107362|F|94761.52|1993-07-05|4-NOT SPECIFIED|Clerk#000000402|0| sleep furiously silent de| +3918|64552|O|149866.56|1997-04-02|2-HIGH|Clerk#000000162|0|s. carefully special accounts cajole carefully after the special cou| +3919|95449|F|88621.87|1992-08-03|3-MEDIUM|Clerk#000000877|0|the carefully bold requests. furiously| +3944|95627|F|90525.80|1992-05-10|4-NOT SPECIFIED|Clerk#000000023|0|final, even platelets wake carefully. finally pending packages are quickly.| +3945|91232|F|20200.32|1992-01-17|1-URGENT|Clerk#000000841|0|ans haggle quickly after the even, ironic deposits. theodolites poach qu| +3946|31946|F|12809.92|1993-11-18|5-LOW|Clerk#000000428|0|encies. carefully final packages impress carefully silent forge| +3947|63859|O|4406.61|1997-05-06|3-MEDIUM|Clerk#000000720|0|ckly bold deposits. blithely exp| +3948|21055|F|171678.04|1994-10-03|4-NOT SPECIFIED|Clerk#000000289|0|quests wake. quickly ironic deposits around the fluf| +3949|143311|O|77885.18|1997-07-03|1-URGENT|Clerk#000000113|0|t the regular foxes. ironic pinto beans during the fluffily | +3950|73552|F|93407.48|1993-01-01|3-MEDIUM|Clerk#000000920|0|nd busily according to the blithely final accounts. blithely even deposi| +3951|26765|F|178955.72|1994-04-13|4-NOT SPECIFIED|Clerk#000000591|0|wly regular packages. dependencies affix along the fluffily reg| +3976|128065|F|198912.38|1994-06-01|4-NOT SPECIFIED|Clerk#000000093|0|usly bold requests. fin| +3977|11770|O|244952.63|1997-01-23|3-MEDIUM|Clerk#000000306|0|nag according to the fl| +3978|95234|O|124395.65|1996-11-18|2-HIGH|Clerk#000000483|0|ges about the ironic foxes breach| +3979|83410|O|83771.98|1998-05-20|3-MEDIUM|Clerk#000000130|0|cross the quickly regular theodolites cajole by the e| +3980|105149|F|101210.87|1993-03-02|5-LOW|Clerk#000000773|0|tes against the carefully regular pac| +3981|89098|O|180063.05|1997-11-30|2-HIGH|Clerk#000000885|0| hang above the silently express warhorses. furiously ironic asymptot| +3982|140978|F|160476.03|1995-03-07|4-NOT SPECIFIED|Clerk#000000391|0| requests. furiously even ideas alongside of the blithely fina| +3983|9484|O|39205.58|1996-11-28|4-NOT SPECIFIED|Clerk#000000694|0| never special packages. slyly ironic excuses nag slyly acc| +4008|96085|O|269559.13|1998-03-16|4-NOT SPECIFIED|Clerk#000000323|0|en deposits nag quickly | +4009|142036|F|63902.18|1993-05-27|1-URGENT|Clerk#000000663|0|g. never final account| +4010|84394|F|248447.38|1994-12-05|4-NOT SPECIFIED|Clerk#000000585|0|its. always regular requests cajole about the blithely regular ideas. furi| +4011|142045|O|34094.95|1996-12-02|4-NOT SPECIFIED|Clerk#000000850|0|kly slyly express f| +4012|93193|F|122276.04|1992-06-23|5-LOW|Clerk#000000680|0|ickly ironic theodolites. blithely pending realms| +4013|139805|F|57078.60|1993-07-25|5-LOW|Clerk#000000638|0|ecial forges promise carefully quickly e| +4014|89642|F|29435.05|1993-10-17|5-LOW|Clerk#000000774|0|he slyly regular requests. furiously regular requests sleep furiously. slyl| +4015|11509|F|134846.41|1992-08-30|2-HIGH|Clerk#000000730|0|lyly special foxes. u| +4040|73358|O|151155.01|1998-07-06|2-HIGH|Clerk#000000955|0|requests across the regular th| +4041|70036|F|190729.60|1993-09-26|5-LOW|Clerk#000000651|0|efully express instructions wake | +4042|25087|F|239330.98|1992-06-22|1-URGENT|Clerk#000000959|0|y above the silently unusual packages-- furiously regular a| +4043|122743|F|190449.51|1992-01-29|2-HIGH|Clerk#000000753|0|ze carefully unusual exc| +4044|136915|F|54034.90|1993-06-25|3-MEDIUM|Clerk#000000289|0| carefully among the slyly special packages. final, final requests after | +4045|118744|O|133591.60|1995-10-23|5-LOW|Clerk#000000722|0|. unusual, unusual warhorses was. slyl| +4046|128293|O|288563.53|1996-10-13|4-NOT SPECIFIED|Clerk#000000682|0|lly deposits. carefully | +4047|108730|O|152692.89|1998-07-14|1-URGENT|Clerk#000000631|0|y. carefully express requests about| +4072|106003|P|208323.44|1995-02-22|2-HIGH|Clerk#000000925|0| ironic foxes sleep furiously fluffily slow inst| +4073|38953|F|130688.62|1992-09-30|2-HIGH|Clerk#000000668|0|ly regular packages nod carefully. fur| +4074|61291|O|38444.69|1996-08-12|4-NOT SPECIFIED|Clerk#000000070|0| bold instructions above the quickl| +4075|41270|O|105385.34|1996-04-03|1-URGENT|Clerk#000000457|0|en somas. slyly bold| +4076|17195|F|82299.93|1994-08-12|1-URGENT|Clerk#000000170|0|fully express platelets: slyly regular ideas prin| +4077|90163|O|164117.10|1997-08-22|5-LOW|Clerk#000000431|0|kages. unusual, express instructions use carefully. u| +4078|54944|O|154937.95|1997-03-21|2-HIGH|Clerk#000000884|0|e of the pending, final requests caj| +4079|42557|O|276370.91|1997-07-20|2-HIGH|Clerk#000000368|0| ironic ideas against the fluffily final deposits| +4104|41486|O|42251.68|1996-04-26|1-URGENT|Clerk#000000322|0|ove the blithely ironic deposits. courts cajole regular, final request| +4105|51262|F|35586.89|1992-02-23|1-URGENT|Clerk#000000590|0|riously final requests cajole carefully iro| +4106|83713|O|37799.27|1998-04-10|5-LOW|Clerk#000000783|0|l requests. instruction| +4107|83392|O|325564.09|1997-09-08|2-HIGH|Clerk#000000927|0| accounts wake inste| +4108|106078|O|50731.71|1997-12-06|3-MEDIUM|Clerk#000000489|0|rint along the carefully regular ideas. carefully express packages after | +4109|102715|F|186827.79|1995-01-10|5-LOW|Clerk#000000322|0|ages. furiously stealthy accounts among the sometimes regular depo| +4110|105901|O|102672.40|1997-03-14|5-LOW|Clerk#000000871|0|e warhorses. silent requests nag carefully regular instructi| +4111|97331|O|302014.44|1997-01-13|5-LOW|Clerk#000000071|0|ss theodolites nag carefully across the even, ironic requests. carefully u| +4136|78451|O|191315.09|1996-03-03|4-NOT SPECIFIED|Clerk#000000510|0|lithely even instructions play carefully deposits? furious| +4137|149909|F|144829.80|1992-10-20|3-MEDIUM|Clerk#000000199|0|cajole about the slyly regular pinto beans. furiously | +4138|106714|O|32547.70|1995-06-28|2-HIGH|Clerk#000000498|0|ecial grouches haggle furiously. regular, unusual accounts haggl| +4139|114904|F|65462.43|1994-07-28|4-NOT SPECIFIED|Clerk#000000064|0|es wake blithely alongside of the packages. f| +4140|69814|F|137934.84|1992-01-02|2-HIGH|Clerk#000000444|0|encies nag blithely furiously regular as| +4141|36499|O|169977.27|1997-10-13|3-MEDIUM|Clerk#000000736|0| foxes are furiously according to the silent accoun| +4142|78880|F|216391.88|1994-09-05|2-HIGH|Clerk#000000969|0|nic somas across the depos| +4143|23830|F|149086.96|1995-01-25|2-HIGH|Clerk#000000979|0|ests cajole quickly; packages cajole carefully ironic deposits. requests ha| +4168|136846|O|154884.58|1997-05-13|3-MEDIUM|Clerk#000000861|0|ecial requests are carefully asymptotes. slyly special requests integrate bl| +4169|7333|O|230592.93|1998-07-10|3-MEDIUM|Clerk#000000149|0|ly special foxes coul| +4170|82261|O|86497.85|1998-06-26|1-URGENT|Clerk#000000929|0|ave to sleep furiously final, regular reques| +4171|6830|F|296195.66|1992-04-21|2-HIGH|Clerk#000000386|0|s. furiously final instructions play furiously after the theodolites. iron| +4172|37714|P|237626.12|1995-03-02|4-NOT SPECIFIED|Clerk#000000578|0|regular theodolites. ironic, pending pinto beans h| +4173|96031|O|76872.26|1997-04-05|3-MEDIUM|Clerk#000000480|0|cies detect: fluffily unusu| +4174|120178|F|218255.77|1992-12-12|2-HIGH|Clerk#000000002|0| furiously along the accounts. final, unusual foxes nag blithely ag| +4175|49597|F|184179.46|1993-10-23|1-URGENT|Clerk#000000205|0|theodolites try to cajole carefully. furiously ironic accounts nag slyly accor| +4200|10090|O|248544.22|1998-04-18|2-HIGH|Clerk#000000523|0| deposits. finally express packages nod fur| +4201|71602|O|155023.25|1997-03-11|3-MEDIUM|Clerk#000000109|0|al hockey players. ironic a| +4202|99592|F|154446.50|1993-12-20|2-HIGH|Clerk#000000537|0|usual accounts. instructions use always? theodolites| +4203|138889|O|231461.99|1997-08-29|4-NOT SPECIFIED|Clerk#000000534|0|usly against the pinto beans. regular, regular instructions detect. caref| +4204|130267|F|283172.56|1994-05-07|1-URGENT|Clerk#000000750|0| blithely final excuses boost furiously? requests against the fin| +4205|129053|F|91244.55|1994-06-12|2-HIGH|Clerk#000000194|0|round the furiously special accounts doze furiou| +4206|127583|O|133182.13|1997-11-25|3-MEDIUM|Clerk#000000245|0|es. furiously regular deposits wake blithely e| +4207|23771|F|194140.15|1992-06-05|5-LOW|Clerk#000000261|0|ously even ideas. pending, final ideas on the carefully unusual r| +4232|54064|O|108263.12|1997-06-06|5-LOW|Clerk#000000424|0|ic deposits integrate quickly. slyly special sheav| +4233|79778|O|81162.74|1996-08-21|3-MEDIUM|Clerk#000000801|0|c requests would haggle. final instructions | +4234|116236|O|91536.24|1995-12-26|5-LOW|Clerk#000000566|0|es boost even theodolites. furiously even foxes cajole boldly about the care| +4235|119152|F|148902.98|1992-11-28|4-NOT SPECIFIED|Clerk#000000899|0|after the blithely bold deposits. furiously bold ideas must wake ent| +4236|74218|P|367471.41|1995-04-07|5-LOW|Clerk#000000078|0|ake carefully special deposits. slyly ironic plate| +4237|129386|F|28055.22|1992-01-06|2-HIGH|Clerk#000000382|0|al, regular theodolites sleep quickly. quickl| +4238|24824|F|64104.51|1993-01-22|3-MEDIUM|Clerk#000000897|0|theodolites wake silently express packages. carefull| +4239|50789|O|137790.40|1996-01-26|5-LOW|Clerk#000000476|0|sual theodolites haggle carefully braids. quickly unusual request| +4264|102697|O|271476.61|1997-01-10|1-URGENT|Clerk#000000595|0|fix blithely. final, regular account| +4265|96907|O|70812.20|1995-09-23|2-HIGH|Clerk#000000255|0|dolites cajole slyly final ideas. always bold theodolites use s| +4266|147340|F|46648.89|1994-04-23|2-HIGH|Clerk#000000114|0|es affix: blithely pending | +4267|136945|F|192359.92|1994-08-13|3-MEDIUM|Clerk#000000787|0|ide of the blithely regular r| +4268|11119|F|184085.93|1994-07-03|2-HIGH|Clerk#000000556|0| theodolites. packages cajole ironic packages. furiously even | +4269|96775|F|26041.00|1994-07-30|3-MEDIUM|Clerk#000000380|0|furiously blithe frays play. | +4270|26320|O|81434.74|1998-05-03|5-LOW|Clerk#000000704|0| instructions. slyly exp| +4271|148969|O|312003.00|1997-07-14|5-LOW|Clerk#000000189|0|s haggle against the quickly final packages. carefully ironic| +4296|44669|F|165912.73|1994-08-12|4-NOT SPECIFIED|Clerk#000000178|0|telets. ironic deposits d| +4297|143516|F|260269.47|1993-02-19|4-NOT SPECIFIED|Clerk#000000919|0|olites around the blithely sile| +4298|66871|F|192452.40|1994-01-24|4-NOT SPECIFIED|Clerk#000000144|0|ntegrate never across the careful, even foxes. special requ| +4299|72149|O|47351.76|1995-09-20|4-NOT SPECIFIED|Clerk#000000486|0|ng requests boost blithely at the requests. fluffily ironic foxes c| +4300|3577|P|183102.78|1995-04-10|1-URGENT|Clerk#000000459|0|ickly express theodolites. quickly do| +4301|97883|F|350044.13|1994-09-30|4-NOT SPECIFIED|Clerk#000000361|0|to the packages. blithely even orbits wake around the f| +4302|63607|O|139932.10|1995-09-10|4-NOT SPECIFIED|Clerk#000000371|0|nts. quickly pending excuses haggle. fluffily close dinos s| +4303|116227|O|177833.12|1995-12-31|3-MEDIUM|Clerk#000000314|0| final accounts. furiously special hockey players affix furiously | +4328|126212|F|110045.54|1992-06-21|3-MEDIUM|Clerk#000000703|0|s should unwind among the carefu| +4329|87787|F|144837.64|1992-06-22|3-MEDIUM|Clerk#000000346|0|r multipliers according to the quickly ironic foxes haggle amon| +4330|17122|F|36077.60|1993-03-24|3-MEDIUM|Clerk#000000693|0|posits sleep slyly regular deposits. silent, final p| +4331|57613|F|139841.39|1994-08-17|4-NOT SPECIFIED|Clerk#000000760|0|efully furiously regular foxes! stealthy asymptotes use. final excus| +4332|19880|O|244636.92|1996-01-14|2-HIGH|Clerk#000000476|0|beans about the pending packages cajole carefully a| +4333|64960|O|159142.53|1996-01-19|1-URGENT|Clerk#000000600|0|serve furiously carefully express requests. slyly unusual instructions b| +4334|81094|F|82743.75|1994-04-14|1-URGENT|Clerk#000000802|0|bove the furiously special foxes. pac| +4335|13981|F|329309.50|1994-08-22|4-NOT SPECIFIED|Clerk#000000678|0| the quickly even requests. blithely pending multipliers use blithely quickl| +4360|69283|F|179985.37|1995-02-23|3-MEDIUM|Clerk#000000355|0|ages nag quietly furiously regular theodolites. sly| +4361|120271|F|205844.68|1994-02-24|3-MEDIUM|Clerk#000000840|0|s. carefully ironic accounts sleep alongside of the special packages. furi| +4362|122356|F|5350.06|1994-11-15|3-MEDIUM|Clerk#000000668|0|ng the express packages. slyly regular ideas boo| +4363|83614|O|176297.84|1996-01-03|3-MEDIUM|Clerk#000000333|0|ckages. final requests cajole quickly quickly pending de| +4364|72532|F|350064.79|1994-11-27|4-NOT SPECIFIED|Clerk#000000483|0|nstructions. asymptote| +4365|124828|O|59684.33|1996-06-14|5-LOW|Clerk#000000605|0|ly bold tithes. express theodolites use slyly ironic packages. furiously p| +4366|78233|O|128315.02|1996-05-12|3-MEDIUM|Clerk#000000452|0|arefully final deposits. carefully ironic acco| +4367|101995|F|147594.03|1995-02-03|2-HIGH|Clerk#000000030|0|ackages boost furiously. final, ruthless accounts| +4392|472|O|222692.12|1997-12-21|2-HIGH|Clerk#000000666|0|ly furiously even instructions. carefully unusual pinto | +4393|105058|F|272567.82|1995-02-27|3-MEDIUM|Clerk#000000764|0|packages. slyly ironic pinto beans cajole. foxes nag ironic packag| +4394|51950|O|272665.37|1996-04-06|5-LOW|Clerk#000000246|0|areful requests. regular, bold deposits do haggle fluffily unusual asym| +4395|117007|O|51306.86|1998-02-21|4-NOT SPECIFIED|Clerk#000000397|0| ironic accounts haggle ruthlessly quickly regular deposits| +4396|15013|F|225984.88|1993-08-09|4-NOT SPECIFIED|Clerk#000000419|0|uriously even frets poach quickly unusual ideas. dep| +4397|12409|F|152406.30|1994-09-13|5-LOW|Clerk#000000617|0|y special attainments. even, final packages are blithely about t| +4398|56728|P|228648.96|1995-04-24|4-NOT SPECIFIED|Clerk#000000906|0|old instructions. quickly pending packages boost across the reg| +4399|14548|O|230012.76|1995-08-20|1-URGENT|Clerk#000000564|0|sly across the furiously bold accounts. sp| +4424|142448|F|178311.58|1994-12-03|4-NOT SPECIFIED|Clerk#000000112|0|the carefully regular pinto beans. careful| +4425|121726|F|103464.82|1993-09-16|3-MEDIUM|Clerk#000000009|0|lites after the bold, express instructions are ca| +4426|131990|O|79211.83|1995-12-25|2-HIGH|Clerk#000000789|0|y instead of the final notornis. silent dependencies ca| +4427|3253|O|5504.05|1998-06-19|3-MEDIUM|Clerk#000000870|0|s. busily even depo| +4428|64127|F|148905.17|1995-02-09|4-NOT SPECIFIED|Clerk#000000199|0|quests haggle above the slyly even plate| +4429|29444|F|273889.96|1993-04-27|5-LOW|Clerk#000000543|0|ironic requests x-ray| +4430|7171|O|154958.33|1997-08-26|3-MEDIUM|Clerk#000000192|0|g deposits. blithely fin| +4431|51689|F|116745.57|1992-02-22|5-LOW|Clerk#000000930|0| theodolites above the theodolites wake slyly unusual dep| +4456|81505|F|28391.16|1993-10-20|1-URGENT|Clerk#000000233|0|ecial ideas. regular, regular requests boost even packages. c| +4457|37774|F|127358.32|1992-10-01|5-LOW|Clerk#000000965|0|theodolites wake carefully after the ir| +4458|35701|F|184529.76|1992-12-03|4-NOT SPECIFIED|Clerk#000000280|0|es. slyly pending accounts detect care| +4459|7562|F|193121.01|1993-10-02|5-LOW|Clerk#000000675|0|deas haggle carefully. bold platelets affix slyly regular| +4460|36086|O|220182.49|1995-12-12|3-MEDIUM|Clerk#000000659|0|ole! ironic requests between the furious| +4461|32818|O|181432.31|1997-09-25|1-URGENT|Clerk#000000890|0|gular deposits nag slyly b| +4462|146905|F|181943.65|1992-07-07|5-LOW|Clerk#000000024|0|ully even ideas cajole about th| +4463|11269|F|3904.40|1994-03-15|4-NOT SPECIFIED|Clerk#000000238|0|ully regular asymptotes wake quickly blithely ironic requests. slyly even| +4488|85855|F|117836.46|1993-05-01|5-LOW|Clerk#000000827|0|iously furiously pending depos| +4489|113968|O|165425.95|1996-07-23|5-LOW|Clerk#000000057|0|g to the final requests. quickly ironic deposits cajole daring| +4490|101249|F|18829.90|1993-12-03|5-LOW|Clerk#000000844|0| final deposits. special theodolites engage. quickly final excuses wake b| +4491|78761|O|78301.53|1995-06-25|4-NOT SPECIFIED|Clerk#000000054|0|pending ideas. furiously furious requests sublate blithely above | +4492|127027|F|297459.25|1993-04-10|3-MEDIUM|Clerk#000000019|0| furiously according to the sly| +4493|118385|O|275144.42|1998-05-29|2-HIGH|Clerk#000000470|0|telets. regular foxes detect ironically alongside of the furiously final in| +4494|89980|F|146343.94|1994-06-20|5-LOW|Clerk#000000867|0|oss the final requests! furiously final platelets are. slyly special deposi| +4495|123700|O|247487.50|1998-03-29|4-NOT SPECIFIED|Clerk#000000652|0|final requests engage care| +4520|19327|O|50680.79|1997-11-05|2-HIGH|Clerk#000000344|0|ests sleep furiously across the carefully regular pinto beans. fluffil| +4521|61676|F|80998.84|1993-03-05|2-HIGH|Clerk#000000188|0|uffily pending pains use quickly | +4522|83795|O|90945.82|1995-09-27|1-URGENT|Clerk#000000167|0|yly final accounts haggle slyly against the fluffily even dependencies. f| +4523|135874|F|214970.09|1994-04-03|2-HIGH|Clerk#000000420|0|ns haggle ideas. special, regular accounts shall have to are carefully. ac| +4524|25099|F|209495.19|1992-05-05|3-MEDIUM|Clerk#000000654|0|tions cajole. carefull| +4525|24209|O|3307.32|1997-01-29|1-URGENT|Clerk#000000796|0|rate carefully final deposits. furiously regular excuses engage bl| +4526|76081|F|200766.96|1994-10-19|2-HIGH|Clerk#000000075|0|ctions. furiously ironic| +4527|73168|F|106966.33|1992-12-10|4-NOT SPECIFIED|Clerk#000000794|0| careful accounts sleep quickly ironic| +4552|27056|O|51261.00|1995-04-20|3-MEDIUM|Clerk#000000968|0|ggle slyly. furiously regular accounts among the sly| +4553|76316|O|16982.42|1998-01-13|3-MEDIUM|Clerk#000000528|0|ic deposits haggle carefully quickly bold pinto beans. quickly regular packa| +4554|142430|F|72498.27|1995-03-17|2-HIGH|Clerk#000000231|0|late furiously about the regularly even a| +4555|109111|F|275794.45|1994-11-18|3-MEDIUM|Clerk#000000445|0|unts along the final packages nag| +4556|62888|F|121102.97|1994-05-13|2-HIGH|Clerk#000000173|0|riously even packages. blith| +4557|55384|O|123367.47|1997-07-26|5-LOW|Clerk#000000467|0|accounts cajole furiously carefully express packages. bli| +4558|84988|F|245160.28|1992-10-16|2-HIGH|Clerk#000000943|0|silent asymptotes cajole blithely above the bold| +4559|81466|O|94469.46|1996-06-16|2-HIGH|Clerk#000000494|0| quickly special accounts above the ironic packages use about the fluffily| +4584|145223|O|348740.47|1998-03-03|5-LOW|Clerk#000000328|0|s are quickly. dogged, regular packages detect bo| +4585|110948|O|237260.07|1996-01-12|3-MEDIUM|Clerk#000000611|0|ts. ironic, express excuses wake a| +4586|45028|O|227333.60|1996-02-21|3-MEDIUM|Clerk#000000610|0|. furiously express accounts cajole. blithely ironic theodolites wake above| +4587|7997|O|124755.36|1997-08-15|2-HIGH|Clerk#000000159|0|uffily. blithely bold dolphins are carefully| +4588|149603|O|195888.98|1998-01-01|4-NOT SPECIFIED|Clerk#000000565|0|y even instructions. bold courts cajole across the quickly sp| +4589|77279|O|95202.23|1997-11-17|3-MEDIUM|Clerk#000000131|0| beans. carefully even foxes use eve| +4590|122404|F|221964.01|1993-04-03|3-MEDIUM|Clerk#000000752|0|e blithely regular accounts. blithely even sauternes hag| +4591|119225|F|318173.52|1994-08-03|3-MEDIUM|Clerk#000000201|0|ess requests haggle. slyly ironic packages| +4616|105436|O|88976.38|1997-05-22|3-MEDIUM|Clerk#000000269|0|y regular instructions cajole after the instructions. unusu| +4617|100411|O|127063.50|1996-09-10|2-HIGH|Clerk#000000818|0|e furiously blithely ironic accounts. furiously| +4618|97273|O|178683.00|1996-03-19|4-NOT SPECIFIED|Clerk#000000289|0|es wake quickly about the furiously bold accounts. regular, | +4619|7201|O|137065.93|1996-04-23|1-URGENT|Clerk#000000204|0|ven dependencies cajole after the regular, ironic ideas. unusual | +4620|106438|F|92171.17|1992-09-05|2-HIGH|Clerk#000000327|0|the pending deposits. blithely special fo| +4621|691|F|61404.79|1992-04-26|4-NOT SPECIFIED|Clerk#000000871|0| foxes. furiously regular deposits sleep fluffily silently regular| +4622|44059|F|73892.15|1992-04-23|1-URGENT|Clerk#000000332|0|ld frets. slyly even requests sl| +4623|92119|O|124538.71|1996-05-07|3-MEDIUM|Clerk#000000337|0|ly bold requests. r| +4648|78112|F|158094.46|1993-12-05|2-HIGH|Clerk#000000381|0|furiously ironic dependencies snooze along the regular | +4649|8473|F|150863.80|1993-12-15|1-URGENT|Clerk#000000621|0|ully above the quickly final deposits. pinto beans aroun| +4650|50068|O|74463.31|1997-07-16|1-URGENT|Clerk#000000793|0|dolites boost across the furiously special instructions. quickly final i| +4651|140635|O|50296.15|1997-03-26|4-NOT SPECIFIED|Clerk#000000481|0| accounts must have to are against the | +4652|96089|O|280574.43|1995-12-01|3-MEDIUM|Clerk#000000496|0|fix busily furiously reg| +4653|58672|F|211444.20|1993-03-17|4-NOT SPECIFIED|Clerk#000000749|0|quests. regular, express packages wake furiously. carefully final | +4654|116852|O|43321.59|1998-03-05|2-HIGH|Clerk#000000671|0|packages integrate fluffily even requests. qu| +4655|129100|F|251851.67|1992-03-08|2-HIGH|Clerk#000000825|0|furiously. carefully silent dependencies cajole daringly final re| +4680|9214|O|308419.08|1997-03-20|1-URGENT|Clerk#000000490|0|zle furiously. blithely express theodolites impres| +4681|49979|F|195870.32|1993-02-13|2-HIGH|Clerk#000000354|0|aggle across the ironic, bold deposits; | +4682|140999|O|4734.22|1996-03-02|4-NOT SPECIFIED|Clerk#000000163|0|. theodolites detect ex| +4683|56428|O|119334.46|1995-09-10|3-MEDIUM|Clerk#000000616|0|y regular foxes above the regular platelets impress carefully regul| +4684|79387|F|229262.24|1994-07-29|2-HIGH|Clerk#000000336|0|ly even warthogs cajole blithely bold accounts. slyly regular packages nag sly| +4685|1529|F|91394.70|1994-07-14|2-HIGH|Clerk#000000172|0|s maintain around the special theod| +4686|40607|O|55896.89|1995-09-03|5-LOW|Clerk#000000290|0|nding pinto beans. quietly regular theodolites cajo| +4687|116956|O|25125.10|1997-01-26|4-NOT SPECIFIED|Clerk#000000220|0|kages nag blithely final packages. furio| +4712|75820|F|147487.29|1993-02-07|2-HIGH|Clerk#000000699|0| slyly final accounts sle| +4713|32347|O|189986.00|1996-10-01|5-LOW|Clerk#000000289|0| even, special accounts. quickly regular id| +4714|30428|O|181765.36|1998-03-21|5-LOW|Clerk#000000783|0| boldly even warhorses: regular packages cajole blithely outside the bo| +4715|39109|O|240940.30|1995-08-07|3-MEDIUM|Clerk#000000795|0|ts detect slyly close idea| +4716|2905|F|31275.64|1994-05-12|1-URGENT|Clerk#000000081|0|ites boost slyly blithely ironic platelets. furiously regular re| +4717|55481|O|128107.28|1995-08-29|5-LOW|Clerk#000000915|0|grate furiously after the blithely ruthless foxes. furiously re| +4718|54802|O|241847.18|1996-05-05|1-URGENT|Clerk#000000619|0|efully ironic instructions wake alongs| +4719|49633|O|103936.28|1997-02-26|2-HIGH|Clerk#000000568|0|uriously sly deposits! even, regular packages | +4744|22033|F|175183.43|1994-02-09|3-MEDIUM|Clerk#000000825|0|ong the fluffily final accounts.| +4745|78373|O|43438.37|1996-02-06|1-URGENT|Clerk#000000161|0|aggle against the slyly fina| +4746|40834|O|160658.30|1997-11-15|1-URGENT|Clerk#000000452|0|ar requests. requests serve. theodolites cajole f| +4747|28040|O|122976.14|1998-02-13|4-NOT SPECIFIED|Clerk#000000979|0|es use among the thinly regular requ| +4748|117368|F|252694.13|1994-10-25|2-HIGH|Clerk#000000374|0|ar accounts. fluffily final deposits integrate. slyly pen| +4749|93092|F|226781.17|1992-01-09|1-URGENT|Clerk#000000681|0|lar pinto beans. furiously bold pains nag. pendin| +4750|84364|F|190302.35|1993-11-19|3-MEDIUM|Clerk#000000028|0|ns. slyly final requests along the slyly special accounts haggle carefull| +4751|86266|O|258659.02|1997-09-10|2-HIGH|Clerk#000000395|0|xpress, unusual deposits acro| +4776|120211|F|57445.07|1992-01-28|5-LOW|Clerk#000000484|0|nments solve quickly special platelet| +4777|33638|F|88067.75|1992-11-03|3-MEDIUM|Clerk#000000761|0|oxes boost permanently. final deposits wake carefully | +4778|147799|F|73346.85|1994-01-04|1-URGENT|Clerk#000000349|0|se above the carefully careful dinos. slyly express platelets | +4779|55430|O|112000.61|1997-09-24|1-URGENT|Clerk#000000937|0|fluffily regular packages. furiously regular ideas integrate r| +4780|96890|O|130603.49|1996-02-18|5-LOW|Clerk#000000224|0|nal accounts. quickly regular theodoli| +4781|14065|F|79570.64|1995-04-05|4-NOT SPECIFIED|Clerk#000000092|0|. final packages integrate furiously blithely ironic packages. silent asymptot| +4782|126703|F|321730.25|1995-02-03|3-MEDIUM|Clerk#000000555|0|ges promise among the quickly final foxes. final requests ha| +4783|76481|O|53696.61|1996-09-23|3-MEDIUM|Clerk#000000438|0| hang slyly. furiously | +4808|55249|F|188489.58|1992-03-07|3-MEDIUM|Clerk#000000560|0|into beans. doggedly regular ideas play. bold platelets nag caref| +4809|66163|O|305584.81|1996-02-24|4-NOT SPECIFIED|Clerk#000000628|0|uternes. carefully furi| +4810|21220|O|65795.11|1996-11-16|1-URGENT|Clerk#000000197|0|ular theodolites lose. always ironic dolphins use quickly. fluffily blit| +4811|64786|F|77774.55|1995-02-21|1-URGENT|Clerk#000000982|0|usual excuses. silent, special ideas haggle | +4812|135089|O|149729.84|1998-03-23|2-HIGH|Clerk#000000263|0|efully bold requests after the slyly r| +4813|33461|O|226581.97|1996-08-11|5-LOW|Clerk#000000953|0|ts along the express tithes serve f| +4814|12781|F|110630.56|1992-06-19|2-HIGH|Clerk#000000007|0|ely around the blithely ironic dependencies. qu| +4815|145882|O|278130.44|1996-10-12|3-MEDIUM|Clerk#000000203|0|nts. regular deposits solve blithely fluffily final p| +4840|72296|F|219904.13|1994-06-09|2-HIGH|Clerk#000000305|0|y regular deposits. quickly even foxes cajole carefully atop the | +4841|72904|F|147019.30|1992-07-24|3-MEDIUM|Clerk#000000397|0|usly express theodolites above the deposits affix carefully blith| +4842|78688|O|197637.85|1997-06-03|4-NOT SPECIFIED|Clerk#000000611|0|s are slyly. blithely regular p| +4843|82333|O|163478.34|1997-01-06|3-MEDIUM|Clerk#000000281|0|ccounts wake quickly. foxes nod. sometimes unusua| +4844|139289|F|79482.27|1992-07-26|2-HIGH|Clerk#000000732|0|lar, regular deposits; final pinto | +4845|115165|F|319839.99|1994-12-31|5-LOW|Clerk#000000614|0|counts nag against the ironic foxes. slyly thin foxes wake. orbits c| +4846|121762|F|286653.80|1993-06-22|4-NOT SPECIFIED|Clerk#000000486|0|sts. carefully pending ideas detect ac| +4847|140401|O|146735.24|1997-01-19|3-MEDIUM|Clerk#000000836|0| carefully regular d| +4872|60173|F|320907.44|1994-05-21|1-URGENT|Clerk#000000278|0|nding accounts. pending, bold foxes haggle. final deposits slee| +4873|26248|O|78643.70|1996-05-04|4-NOT SPECIFIED|Clerk#000000638|0|uffily even ideas. quickly ironic asymptotes run along the inst| +4874|125657|F|45026.09|1994-03-24|3-MEDIUM|Clerk#000000988|0|ogs use carefully about the even, final asymptotes. regular pinto beans a| +4875|59695|O|229067.24|1998-05-28|5-LOW|Clerk#000000506|0|ugouts affix carefully evenly even | +4876|71344|F|258200.42|1994-08-04|2-HIGH|Clerk#000000548|0|y furious pinto beans cajole carefully quickly regular accounts. ideas across | +4877|111754|O|174603.19|1997-06-27|3-MEDIUM|Clerk#000000475|0| final pains nag above the notornis. blithely even wat| +4878|96508|F|150859.69|1992-07-25|5-LOW|Clerk#000000184|0|ven instructions cajole. requests cajo| +4879|53311|O|210096.43|1997-03-05|3-MEDIUM|Clerk#000000778|0|riously unusual packages. special deposits about th| +4904|27988|P|106325.14|1995-05-31|5-LOW|Clerk#000000315|0|lar packages are above the foxes. furio| +4905|131512|F|104966.73|1994-09-07|1-URGENT|Clerk#000000458|0|he bold instructions; ruthless packages boost | +4906|58429|F|222938.61|1994-04-16|5-LOW|Clerk#000000491|0| idle sentiments above the carefully even accounts wake ironic, regula| +4907|88012|F|47839.87|1994-09-24|2-HIGH|Clerk#000000833|0|lly express requests. furiously final foxes boost across the| +4908|47012|O|19166.30|1995-06-27|1-URGENT|Clerk#000000139|0|nts use finally regular, regular instr| +4909|65845|F|19494.32|1993-10-17|4-NOT SPECIFIED|Clerk#000000227|0| quickly final accounts haggle furiously pending pac| +4910|88933|O|70482.76|1995-08-13|3-MEDIUM|Clerk#000000150|0| the slyly special ideas wake carefully above the carefully iron| +4911|81200|F|185543.65|1994-10-21|3-MEDIUM|Clerk#000000318|0| sleep slyly among the furiously ironic asymptotes. qui| +4936|24595|O|152725.04|1998-01-14|4-NOT SPECIFIED|Clerk#000000659|0| wake quickly against the slyly bold| +4937|103763|F|129418.70|1992-09-12|1-URGENT|Clerk#000000466|0| sleep along the quickly ironic pinto beans. furiously pendi| +4938|37009|O|158766.52|1998-02-24|4-NOT SPECIFIED|Clerk#000000414|0|quickly pending packages. slyly even ideas alongsi| +4939|94279|F|85507.38|1993-08-08|3-MEDIUM|Clerk#000000206|0|lar theodolites wake blithely. special pinto beans about the slyly per| +4940|88540|F|75177.55|1993-08-08|3-MEDIUM|Clerk#000000644|0|ests. regular, busy foxes among the quickly unusual| +4941|59527|F|308038.61|1992-06-04|3-MEDIUM|Clerk#000000763|0|ed courts above the special requests cajole blithely fur| +4942|95644|F|214131.98|1993-05-10|3-MEDIUM|Clerk#000000498|0| ironic asymptotes cajole fluffily ironic deposits. b| +4943|70921|O|154174.40|1996-08-20|5-LOW|Clerk#000000354|0|unts. enticingly bold courts haggle carefully according to the doggedly reg| +4968|64997|P|211071.03|1995-04-25|5-LOW|Clerk#000000396|0|efully express accounts h| +4969|92357|F|124294.76|1994-01-20|1-URGENT|Clerk#000000432|0|ic packages wake slyl| +4970|36157|F|125330.04|1993-01-29|5-LOW|Clerk#000000125|0|es haggle blithely among the c| +4971|12883|F|132984.04|1993-10-22|2-HIGH|Clerk#000000499|0|ites are blithely sl| +4972|63254|O|214718.20|1997-09-06|4-NOT SPECIFIED|Clerk#000000200|0|ly ironic deposits wake furiously pinto| +4973|48454|F|125403.25|1993-06-11|4-NOT SPECIFIED|Clerk#000000628|0|ilent excuses; special, silent dependencies integrate carefully. qui| +4974|146734|O|220783.03|1996-01-15|3-MEDIUM|Clerk#000000976|0|equests use blithely enticing realms-- packages are caref| +4975|7600|F|109350.47|1992-05-03|4-NOT SPECIFIED|Clerk#000000661|0|tructions run according to the quickly unusual courts. bold, silent account| +5000|81583|F|212379.65|1994-10-07|5-LOW|Clerk#000000716|0|y slyly bold accounts. furiously silent ideas nag always quickly ironic| +5001|1277|O|33019.05|1997-01-30|1-URGENT|Clerk#000000654|0|deposits. final, special dolphin| +5002|8185|F|297333.04|1993-12-06|1-URGENT|Clerk#000000526|0|oxes. furiously even shea| +5003|139930|F|118512.70|1995-01-01|1-URGENT|Clerk#000000329|0|ess accounts after the specia| +5004|85849|O|121299.61|1997-04-27|4-NOT SPECIFIED|Clerk#000000445|0|onic, regular asymptotes. packages sleep. pending, unusual accounts| +5005|4571|F|259421.98|1994-12-28|1-URGENT|Clerk#000000089|0|the carefully final packages sleep among the pinto| +5006|9469|F|131115.09|1992-02-28|5-LOW|Clerk#000000679|0|haggle after the special instruct| +5007|139787|F|321097.33|1993-09-29|2-HIGH|Clerk#000000352|0|se fluffily against the furiously enticin| +5032|92551|F|126907.77|1994-07-17|4-NOT SPECIFIED|Clerk#000000298|0|nis. blithely regular requests above t| +5033|121303|F|353294.29|1993-01-09|2-HIGH|Clerk#000000375|0|was carefully. carefully silent dependencies cajole furiously. fu| +5034|67525|O|17243.37|1996-12-12|5-LOW|Clerk#000000327|0|y final accounts sleep. blithely final ideas| +5035|131702|F|226751.52|1993-12-14|2-HIGH|Clerk#000000318|0|uietly along the ironic ideas. quickly ironic packages ar| +5036|114371|O|147670.71|1995-07-25|3-MEDIUM|Clerk#000000764|0|old, regular asymptotes. slyly bold frays for the grouches sleep stealthy | +5037|122551|O|98919.41|1997-12-29|2-HIGH|Clerk#000000806|0|eposits doze according to the silently bold dependencies. careful requests| +5038|49762|F|281873.31|1992-12-10|3-MEDIUM|Clerk#000000032|0|ideas affix slyly ironic theodolites. slyly ironic dep| +5039|74660|F|233360.05|1993-02-21|4-NOT SPECIFIED|Clerk#000000357|0|lar deposits. special pinto beans cajole fluffil| +5064|47080|F|95306.56|1993-06-16|4-NOT SPECIFIED|Clerk#000000943|0|otes. theodolites haggle above the special sauternes. express, | +5065|149053|F|62108.42|1993-01-28|4-NOT SPECIFIED|Clerk#000000681|0|s x-ray fluffily carefully ironic packages. | +5066|125392|F|68220.18|1993-01-21|4-NOT SPECIFIED|Clerk#000000276|0|s platelets nag across the ruthlessly pending courts. furiously| +5067|83761|F|88674.56|1992-09-29|2-HIGH|Clerk#000000119|0|sly requests sleep blithely express pinto beans. packages along the | +5068|1270|F|211953.11|1994-12-09|1-URGENT|Clerk#000000844|0|he silent, regular reques| +5069|16669|O|62288.33|1996-12-29|4-NOT SPECIFIED|Clerk#000000502|0|. deposits dazzle fluffily along the blithely silent instructions. carefu| +5070|86798|O|345935.46|1997-10-18|5-LOW|Clerk#000000584|0|. special pinto beans cajole furiously| +5071|55975|F|286239.13|1993-07-20|4-NOT SPECIFIED|Clerk#000000336|0|eans. carefully bold deposits slee| +5096|88750|O|232337.59|1996-03-24|5-LOW|Clerk#000000357|0|d requests. fluffily regular requests above the regu| +5097|15559|O|116317.34|1996-10-20|3-MEDIUM|Clerk#000000482|0|foxes cajole quickly express for| +5098|41677|F|226151.98|1994-03-31|1-URGENT|Clerk#000000804|0|requests. fluffily ironic accounts sleep carefully. furious| +5099|86504|F|172467.15|1994-10-20|3-MEDIUM|Clerk#000000237|0|cial packages cajole after th| +5100|57379|O|60571.68|1996-11-23|4-NOT SPECIFIED|Clerk#000000360|0|uffily regular dolphins cajole furio| +5101|147844|F|138446.52|1993-09-07|2-HIGH|Clerk#000000253|0|sts wake blithely even theodolites. pinto beans are c| +5102|58228|O|98339.11|1995-11-20|3-MEDIUM|Clerk#000000311|0|fully even theodolites. furiously special foxes are| +5103|18157|F|178352.92|1992-03-05|2-HIGH|Clerk#000000614|0|ly furious theodolites. carefully eve| +5128|37654|F|37174.70|1993-07-14|1-URGENT|Clerk#000000982|0|y. ironically special accounts solve carefully. carefully bold packages | +5129|117469|F|321471.60|1994-01-24|2-HIGH|Clerk#000000961|0| slyly final dependencies maintain foxes. slyly regu| +5130|145214|O|112135.75|1995-07-27|3-MEDIUM|Clerk#000000717|0| wake furiously above th| +5131|109141|P|247302.73|1995-05-07|2-HIGH|Clerk#000000148|0|re furiously regular requests. stealthily even deposits are slyly bravely s| +5132|113128|O|71742.26|1997-04-11|1-URGENT|Clerk#000000319|0|horses. blithely regular foxes nag carefully pending deposits. quic| +5133|69343|O|248842.03|1998-07-05|2-HIGH|Clerk#000000469|0|quickly ironic hockey | +5134|85927|O|123797.05|1998-02-13|3-MEDIUM|Clerk#000000216|0|requests. furiously unusual accounts cajole carefully. slyly pending| +5135|117814|F|38476.57|1992-09-12|5-LOW|Clerk#000000083|0|arefully ironic deposits use slyly after the fu| +5160|82015|F|196402.78|1994-03-30|4-NOT SPECIFIED|Clerk#000000985|0|he slyly bold courts. blithely pending requests use slyly again| +5161|47156|O|125307.53|1995-09-28|5-LOW|Clerk#000000469|0| even ideas. furious| +5162|100466|F|230180.07|1994-05-12|2-HIGH|Clerk#000000413|0|kly ironic asymptotes use fluffily. bold | +5163|121993|F|240492.12|1993-08-27|3-MEDIUM|Clerk#000000772|0|above the quickly special deposits. pending, bol| +5164|105905|O|221025.17|1997-11-19|4-NOT SPECIFIED|Clerk#000000690|0|s haggle carefully slowly regular deposits| +5165|36578|O|47212.62|1996-02-17|4-NOT SPECIFIED|Clerk#000000905|0|ven deposits according to the unusual, regular foxes sleep slyly along the un| +5166|63040|F|254391.85|1993-07-07|3-MEDIUM|Clerk#000000461|0|xes. quickly bold theodolites kindle theodolites. caref| +5167|57421|O|144437.86|1997-12-12|5-LOW|Clerk#000000119|0|en foxes alongside of the furio| +5192|100561|O|251014.66|1997-11-12|5-LOW|Clerk#000000734|0|blithely along the quickly final packages. ironic ideas caj| +5193|49457|O|156136.78|1996-02-03|5-LOW|Clerk#000000447|0|s? final dependencies cajole. carefully unusual requests against | +5194|59947|F|212001.63|1994-07-12|2-HIGH|Clerk#000000323|0| carefully along the furiousl| +5195|107428|F|341327.60|1993-11-24|2-HIGH|Clerk#000000890|0|ions sleep enticingly of the bold, pending requests. slyly even| +5196|128735|F|46291.08|1993-08-26|5-LOW|Clerk#000000473|0| blithely even, special escapades. ins| +5197|46429|F|117034.52|1994-07-08|4-NOT SPECIFIED|Clerk#000000428|0|even foxes. carefully ironic deposits sleep. blithely fin| +5198|10550|F|122745.18|1992-05-06|4-NOT SPECIFIED|Clerk#000000302|0|nts nod quickly. regular, regular packages boost among the dolphins. req| +5199|4099|O|72431.62|1996-09-11|5-LOW|Clerk#000000626|0|press, express deposits integrate accounts. even realms sleep accord| +5224|20890|F|59895.40|1993-07-13|1-URGENT|Clerk#000000503|0|ular accounts across the quickly final ide| +5225|78607|O|40711.26|1995-12-08|1-URGENT|Clerk#000000764|0|omise quickly about t| +5226|79048|O|165934.28|1998-01-21|1-URGENT|Clerk#000000570|0|es haggle quickly pending instructions. final requests are slyl| +5227|143113|O|72001.94|1996-04-18|4-NOT SPECIFIED|Clerk#000000896|0|. express, unusual foxes believe carefully| +5228|29846|O|88276.94|1995-12-12|1-URGENT|Clerk#000000942|0|uests are express, even requests. regular ideas haggle furiously fluffily i| +5229|18040|F|140731.69|1993-12-08|3-MEDIUM|Clerk#000000008|0|ic accounts. fluffily final platelets haggle fluffily final accounts| +5230|45971|F|330564.10|1994-11-14|5-LOW|Clerk#000000794|0| are blithely after the | +5231|132805|O|148404.99|1997-06-27|1-URGENT|Clerk#000000403|0|sual instructions nag along the blithely| +5256|31706|F|31266.06|1994-02-26|1-URGENT|Clerk#000000329|0|the blithely ironic instructions use finally among the slyly bold instr| +5257|69323|F|121085.56|1994-02-10|2-HIGH|Clerk#000000281|0| alongside of the theodolites. busily ironic dependencies are above the car| +5258|58553|F|151438.44|1994-06-21|2-HIGH|Clerk#000000737|0|ajole furiously against the carefully ironi| +5259|94751|O|76490.84|1997-08-31|2-HIGH|Clerk#000000774|0|fily ironic requests. unusual package| +5260|63628|F|140370.23|1993-12-18|2-HIGH|Clerk#000000745|0|ly platelets. packages are slyly slyly regular platel| +5261|45598|O|99715.87|1996-03-30|4-NOT SPECIFIED|Clerk#000000904|0|telets sleep furiously. express platelets lose blithely even | +5262|10033|F|88899.10|1993-01-22|1-URGENT|Clerk#000000762|0|ully regular deposits. slyly even foxes a| +5263|146812|F|32909.32|1994-10-15|2-HIGH|Clerk#000000164|0|into beans haggle blithely bold a| +5288|98428|O|138870.54|1995-06-24|3-MEDIUM|Clerk#000000916|0|onic, regular platelets nag blithely. blithel| +5289|47018|F|12453.46|1994-06-23|3-MEDIUM|Clerk#000000358|0|sleep slyly platelets. carefully even pinto beans ar| +5290|16103|F|114028.04|1993-11-13|3-MEDIUM|Clerk#000000850|0|e blithely. permanently final accounts are. slyly bold deposits alo| +5291|27460|F|94020.22|1993-10-27|5-LOW|Clerk#000000712|0|lent notornis. final sau| +5292|112060|F|303516.34|1993-01-11|2-HIGH|Clerk#000000409|0|ic requests. express, final accounts are furiously special asymptotes| +5293|120380|F|117527.14|1995-02-06|1-URGENT|Clerk#000000330|0|r, even accounts. ideas cajole. quickly ironic packages use | +5294|11905|O|219226.67|1997-08-23|3-MEDIUM|Clerk#000000645|0|luffily ironic accounts. slyly ironic instru| +5295|119873|F|60385.13|1993-01-13|4-NOT SPECIFIED|Clerk#000000281|0|ly regular excuses. slyly ironic epit| +5320|49927|F|24258.84|1992-03-24|4-NOT SPECIFIED|Clerk#000000692|0| ironic asymptotes. quickly pending packages ought to integrate special fra| +5321|149221|F|160315.33|1992-06-18|4-NOT SPECIFIED|Clerk#000000353|0|sleep final packages. furiously unusual foxes wake carefully ev| +5322|100274|F|103711.52|1994-03-19|5-LOW|Clerk#000000949|0| accounts according to the bold r| +5323|42049|F|310333.43|1993-06-19|4-NOT SPECIFIED|Clerk#000000067|0|xes about the furiously express deposits maintain alongside| +5324|47585|F|137927.24|1992-09-10|5-LOW|Clerk#000000274|0|y. express requests haggle slyly regular | +5325|94549|O|142226.57|1997-06-27|5-LOW|Clerk#000000270|0|t excuses boost carefully alongsi| +5326|107731|O|135805.09|1997-06-17|5-LOW|Clerk#000000150|0|ly slyly idle requests. slyly bold requests | +5327|115264|O|168215.70|1995-09-17|4-NOT SPECIFIED|Clerk#000000107|0|ully special packages wake. furiously final at| +5352|122467|F|52187.98|1993-08-14|5-LOW|Clerk#000000053|0| x-ray regular accounts. slyly r| +5353|131641|F|138140.77|1992-07-02|1-URGENT|Clerk#000000704|0|blithely special asymptotes grow blithely special deposits. carefully final | +5354|123409|O|47288.92|1995-06-05|5-LOW|Clerk#000000627|0|ccounts wake furiously furiously regular ex| +5355|62809|F|69056.46|1994-06-22|1-URGENT|Clerk#000000291|0|y pending courts are careful| +5356|77111|F|266052.71|1993-10-16|5-LOW|Clerk#000000480|0|le, express courts. close accounts sleep. silent excus| +5357|698|O|210593.94|1996-05-24|4-NOT SPECIFIED|Clerk#000000899|0|er the fluffily special pinto b| +5358|21856|O|159053.47|1998-06-25|3-MEDIUM|Clerk#000000930|0| deposits. permanently bold requests wake among the| +5359|122662|F|144999.41|1994-05-12|2-HIGH|Clerk#000000066|0|al packages wake furiously around the slyly unusual dep| +5384|107417|O|300038.99|1995-09-01|2-HIGH|Clerk#000000746|0|ffily even ideas try to haggle. furiously ironic instructions br| +5385|106477|O|280307.01|1997-10-21|2-HIGH|Clerk#000000599|0|al ideas. fluffy theodolites haggle slowly above the slyly | +5386|56288|F|163883.37|1994-01-23|5-LOW|Clerk#000000549|0|ave to boost blithely regula| +5387|125189|O|59699.85|1995-12-29|2-HIGH|Clerk#000000492|0|s the fluffily ironic attainme| +5388|137627|O|132492.25|1996-12-29|4-NOT SPECIFIED|Clerk#000000430|0|re quickly regular depos| +5389|90632|F|177139.54|1994-03-07|4-NOT SPECIFIED|Clerk#000000675|0|he carefully pending packages. fluffily stealthy foxes engage carefully| +5390|147863|O|291987.04|1997-11-10|5-LOW|Clerk#000000772|0|pending pinto beans wake along | +5391|79397|O|254171.19|1998-02-21|3-MEDIUM|Clerk#000000337|0|y busy accounts. slyly ruthless | +5416|14638|F|248738.69|1993-04-13|2-HIGH|Clerk#000000269|0|luffily pending escapades cajole around the q| +5417|149920|F|59799.53|1993-08-24|3-MEDIUM|Clerk#000000447|0|carefully. silent theodolites are blithely slyly| +5418|124135|F|168351.37|1993-09-22|5-LOW|Clerk#000000836|0|carefully enticing packages above the quickly final| +5419|134422|O|259862.82|1998-05-26|3-MEDIUM|Clerk#000000656|0|onic pinto beans haggl| +5420|54427|O|93701.73|1997-12-25|1-URGENT|Clerk#000000130|0|sits. furiously even theodolites are quickly along the | +5421|25987|F|64870.98|1992-10-18|5-LOW|Clerk#000000662|0|t dugouts dazzle slyly special foxes. blithely silent requests according | +5422|88900|F|121524.11|1994-01-23|2-HIGH|Clerk#000000510|0|lly regular packages eat furiously above | +5423|120640|O|286834.34|1997-07-17|3-MEDIUM|Clerk#000000950|0|ncies affix blithely slyly pending accounts. carefully express deposits boost| +5448|19981|O|157847.32|1997-04-05|4-NOT SPECIFIED|Clerk#000000438|0|ions cajole about the furiously even packages. platelets after the pack| +5449|99242|O|21614.57|1997-12-18|2-HIGH|Clerk#000000834|0|fily. decoys are slyly. final ideas | +5450|108905|O|141037.13|1998-02-23|3-MEDIUM|Clerk#000000632|0|ding deposits. furiously regular instructions wake fluffily after the accoun| +5451|50731|O|62616.15|1997-08-04|1-URGENT|Clerk#000000287|0|s above the ironic pinto beans affix fluffily car| +5452|2506|F|223103.01|1992-12-02|1-URGENT|Clerk#000000052|0|totes are furiously a| +5453|103003|O|80613.55|1998-03-10|2-HIGH|Clerk#000000480|0| the deposits. fluffily daring requests use slyly. quickly final pinto| +5454|13957|O|13894.07|1997-01-03|4-NOT SPECIFIED|Clerk#000000307|0|ole furiously. express accounts cajole fluffily bold packages. silent excuses | +5455|119642|O|115089.72|1998-05-18|4-NOT SPECIFIED|Clerk#000000740|0| requests haggle evenly. regular instructions use slyly. q| +5480|66733|O|274905.00|1996-12-16|3-MEDIUM|Clerk#000000222|0|e the furiously permanent foxes. realms across the pending| +5481|21107|P|103300.11|1995-03-31|5-LOW|Clerk#000000136|0| ironic deposits sleep silent accounts. | +5482|144331|O|183888.68|1996-04-11|1-URGENT|Clerk#000000489|0|y even packages. special, special foxes eat slyly. fluffily express packag| +5483|119257|F|17126.20|1993-05-11|3-MEDIUM|Clerk#000000350|0|r accounts sleep bli| +5484|46210|O|94800.10|1996-01-14|4-NOT SPECIFIED|Clerk#000000274|0|the ironic, special p| +5485|74882|O|229394.21|1996-06-09|4-NOT SPECIFIED|Clerk#000000884|0|l accounts haggle idly. express waters run | +5486|29297|F|42366.68|1994-03-17|1-URGENT|Clerk#000000952|0|ular accounts. slyly ironic accounts are furiously i| +5487|84311|O|156858.27|1998-01-20|1-URGENT|Clerk#000000952|0|he bold, even deposit| +5512|101305|O|309202.20|1996-02-12|3-MEDIUM|Clerk#000000023|0|al excuses. quickly reg| +5513|120317|O|247524.25|1997-07-20|5-LOW|Clerk#000000337|0|n instructions. ironic, regular deposits are again| +5514|2974|O|30501.99|1995-12-23|5-LOW|Clerk#000000526|0|ep above the furiously regular| +5515|32255|O|170161.54|1998-04-05|2-HIGH|Clerk#000000053|0|ages sleep furiously among the ca| +5516|146359|O|71437.17|1996-01-25|5-LOW|Clerk#000000839|0|. even theodolites about the unusual epitaphs haggle carefully regular | +5517|129220|F|71789.66|1995-03-03|1-URGENT|Clerk#000000345|0|r deposits wake. slyl| +5518|74665|F|150588.80|1992-12-03|2-HIGH|Clerk#000000247|0|s affix according to the fluffily regular foxes! furiously speci| +5519|140104|F|271903.40|1994-06-03|1-URGENT|Clerk#000000103|0| quickly among the closely ironic platel| +5544|26935|F|204612.52|1992-06-03|2-HIGH|Clerk#000000044|0|ix quickly final accounts. slyly ironic accounts aff| +5545|113591|O|27033.90|1995-05-19|2-HIGH|Clerk#000000591|0|he silently pending deposits. slyly even packages after the furiously| +5546|68026|F|184338.20|1994-04-10|4-NOT SPECIFIED|Clerk#000000753|0|s. packages thrash. fluffily unusual requests sleep deposits. blith| +5547|2569|F|190790.40|1992-06-28|3-MEDIUM|Clerk#000000233|0|s boost according to the accounts. slyly ironic theodolites against the iron| +5548|98401|F|156880.42|1992-11-01|5-LOW|Clerk#000000798|0|refully close packages. quickly fi| +5549|66163|O|172374.74|1995-07-08|1-URGENT|Clerk#000000614|0|quests. ideas wake furiously along the slyly regular accounts. qu| +5550|43828|F|51025.64|1993-03-29|1-URGENT|Clerk#000000801|0|s are besides the special dep| +5551|107725|O|267524.93|1998-05-19|1-URGENT|Clerk#000000807|0|ove the carefully regular accounts. furiously sly sentiments above the blithel| +5576|15524|O|88258.88|1998-05-25|3-MEDIUM|Clerk#000000681|0|s above the slyly pending packages lose slyly blithely careful platelets. | +5577|54895|F|28661.15|1992-04-11|2-HIGH|Clerk#000000316|0|es about the furiously regular requests sleep boldly above the s| +5578|97414|O|183309.14|1997-05-27|4-NOT SPECIFIED|Clerk#000000650|0|y bold foxes? daring requests haggle slyly final orbits. ironic reque| +5579|136127|F|322704.40|1992-04-02|5-LOW|Clerk#000000213|0|osits. blithely bold platelets boo| +5580|77137|F|246772.69|1993-04-28|4-NOT SPECIFIED|Clerk#000000683|0|inal accounts. ironic requests wake care| +5581|111241|O|156452.58|1996-09-01|3-MEDIUM|Clerk#000000891|0|the ironic, daring ideas. regular packages sleep. furiou| +5582|14110|F|211290.78|1993-08-22|4-NOT SPECIFIED|Clerk#000000946|0|are carefully slyly ironic packages. furiously silent accounts d| +5583|119905|F|22400.40|1994-07-23|1-URGENT|Clerk#000000928|0|ies eat carefully. regular, bold dolphins are carefully special| +5608|119266|O|293328.20|1995-07-11|4-NOT SPECIFIED|Clerk#000000098|0|ep regular courts. | +5609|31153|F|172542.63|1995-01-16|2-HIGH|Clerk#000000786|0|n ideas. furiously special packages haggle along the even, unus| +5610|56002|F|15286.26|1994-11-07|4-NOT SPECIFIED|Clerk#000000837|0|al, ironic deposits; furiously even ideas w| +5611|114043|O|271866.00|1998-04-19|2-HIGH|Clerk#000000417|0|tions detect with the furiously ironic deposits. furiously | +5612|2818|F|172937.64|1994-12-11|1-URGENT|Clerk#000000417|0|r packages. final, sp| +5613|100651|F|54569.94|1994-03-29|3-MEDIUM|Clerk#000000972|0|ly express packages about the slyly special instructions cajole | +5614|75556|O|123187.12|1998-07-02|2-HIGH|Clerk#000000763|0|ges alongside of the ideas are platelets. express, unusual hockey| +5615|98599|O|302724.88|1995-12-30|2-HIGH|Clerk#000000284|0|ing to the carefully even packages! furiously ironic accou| +5640|101647|F|269877.97|1994-12-26|1-URGENT|Clerk#000000701|0|uests wake furiously after the blithely bold requests. carefully even p| +5641|8953|F|15354.75|1994-08-16|4-NOT SPECIFIED|Clerk#000000074|0|ns. express, unusual instructions boost. pe| +5642|865|F|173874.80|1994-07-06|5-LOW|Clerk#000000129|0|ly furious deposits wake slyly instructi| +5643|136660|O|102989.87|1995-06-23|5-LOW|Clerk#000000891|0| slyly according to the| +5644|43162|F|187662.93|1992-02-19|5-LOW|Clerk#000000867|0|l deposits wake fluffily about the carefully even packages. forges after the q| +5645|22979|F|131511.51|1992-01-02|2-HIGH|Clerk#000000257|0|ep blithely above the furiously even accounts. silently special deposits de| +5646|107650|O|85274.38|1998-02-24|3-MEDIUM|Clerk#000000562|0|ckages kindle accounts. slyly even accounts nag.| +5647|106210|F|188852.49|1994-10-07|4-NOT SPECIFIED|Clerk#000000735|0|c foxes are furiously after the furious| +5672|69787|F|228449.40|1992-09-06|1-URGENT|Clerk#000000453|0|o beans are blithely acro| +5673|39640|F|64936.66|1992-10-19|2-HIGH|Clerk#000000146|0| silent packages. exp| +5674|48676|O|100988.36|1996-01-04|2-HIGH|Clerk#000000230|0|ven instructions are blithely al| +5675|115649|O|203352.92|1995-06-11|5-LOW|Clerk#000000536|0| wake blithely. carefully silent instructions sleep carefully fluffily sp| +5676|4927|F|305013.95|1993-01-28|5-LOW|Clerk#000000580|0|sits serve around the quickly express packages. blithely regular deposits wake| +5677|129571|P|213251.58|1995-03-13|2-HIGH|Clerk#000000952|0|blithely express packages| +5678|124339|O|146595.92|1995-10-07|4-NOT SPECIFIED|Clerk#000000532|0| ideas boost foxes. blithely unusual theodolites sleep after the express a| +5679|112139|F|63172.52|1994-10-28|2-HIGH|Clerk#000000628|0|en deposits? quickly regular requests haggle according to the slyly | +5704|118691|F|263424.11|1994-05-13|5-LOW|Clerk#000000895|0|ly regular, regular requests. fur| +5705|128971|O|76408.07|1998-02-13|4-NOT SPECIFIED|Clerk#000000652|0|ounts haggle quickly across the furiously final accou| +5706|93571|O|146834.20|1998-07-24|3-MEDIUM|Clerk#000000259|0|ing ideas was above the| +5707|27355|O|188141.08|1995-11-12|5-LOW|Clerk#000000450|0|ites use blithely. blithely regular depende| +5708|123349|O|118837.07|1998-07-07|5-LOW|Clerk#000000161|0|r tithes. furiously close pl| +5709|100976|O|282238.37|1997-06-16|5-LOW|Clerk#000000111|0|leep after the carefully regular ideas. furiously final packages are quickly. | +5710|144442|O|313885.43|1997-09-10|3-MEDIUM|Clerk#000000990|0|ependencies. specia| +5711|3277|O|214470.38|1996-05-22|3-MEDIUM|Clerk#000000498|0|ide of the carefully pending | +5736|20753|O|68898.21|1996-01-25|5-LOW|Clerk#000000159|0|p blithely about the slyly special theodolites. thi| +5737|30457|F|48981.24|1993-05-26|1-URGENT|Clerk#000000579|0| packages boost accord| +5738|86170|F|233970.28|1993-03-28|1-URGENT|Clerk#000000074|0|ructions. carefully regular ideas haggle blithely. fin| +5739|136213|F|113549.90|1993-09-25|5-LOW|Clerk#000000392|0|urts. requests along the dependencies haggle quickly final, eve| +5740|29539|F|105413.85|1994-03-29|4-NOT SPECIFIED|Clerk#000000452|0|final foxes. special, unusua| +5741|87466|F|59487.83|1992-06-17|3-MEDIUM|Clerk#000000491|0|osits use fluffily among the s| +5742|26371|F|86075.52|1992-12-18|2-HIGH|Clerk#000000340|0|. even ideas boost alongside of the| +5743|117019|F|301422.72|1992-05-06|4-NOT SPECIFIED|Clerk#000000740|0|deposits. carefully even foxes sleep slyly about the bl| +5768|74288|O|150721.21|1995-07-20|1-URGENT|Clerk#000000473|0| ideas cajole. fluffy deposits nag carefully about the unusua| +5769|99980|F|224466.24|1993-12-06|3-MEDIUM|Clerk#000000074|0|regular dependencies. pending tithes cajole quickly! slyly sp| +5770|54142|F|165630.27|1994-02-22|3-MEDIUM|Clerk#000000740|0|nal accounts. blithe| +5771|54413|O|161131.60|1995-12-31|2-HIGH|Clerk#000000170|0|en asymptotes nag carefully special,| +5772|105185|O|127588.25|1996-08-17|5-LOW|Clerk#000000767|0|ages haggle carefully slyly pending ideas. quic| +5773|85628|F|123986.36|1994-07-20|1-URGENT|Clerk#000000656|0|tes integrate carefully with the iron| +5774|43267|F|24589.66|1992-06-12|1-URGENT|Clerk#000000434|0|sleep after the furiously ruthless warhorses. pinto beans sleep blithe| +5775|126067|O|191596.13|1997-02-11|2-HIGH|Clerk#000000202|0|rding to the ironic accounts dazzle quickly across the slyly f| +5800|30196|F|190413.15|1992-08-28|4-NOT SPECIFIED|Clerk#000000834|0|posits are carefully final notornis. furiously unusual requests cajo| +5801|33808|F|297239.21|1992-02-06|1-URGENT|Clerk#000000199|0|ust use blithely quickly busy packages. express, | +5802|6847|O|31492.77|1996-12-14|1-URGENT|Clerk#000000666|0|ly pending pinto beans are slyly about the inst| +5803|15625|O|251824.55|1998-04-02|5-LOW|Clerk#000000437|0|ar Tiresias sleep. even, final ideas cajole regular requests. slyly even r| +5804|87118|O|126685.72|1997-10-13|4-NOT SPECIFIED|Clerk#000000481|0|olites. dinos cajole furiously regular theodolites. theodolites above the car| +5805|37366|F|23419.93|1994-06-12|3-MEDIUM|Clerk#000000376|0|special dependencies above the ironic, iro| +5806|86456|O|268199.76|1998-04-23|4-NOT SPECIFIED|Clerk#000000310|0|egular excuses. express instructions wake quickly. depths along| +5807|8308|F|113089.61|1992-06-15|5-LOW|Clerk#000000666|0|g to the furiously i| +5832|102829|O|138745.22|1997-01-11|4-NOT SPECIFIED|Clerk#000000364|0|al accounts unwind blithely ab| +5833|80392|P|350524.76|1995-03-06|5-LOW|Clerk#000000872|0|he regular, express deposits. deposits boost quic| +5834|85552|O|111131.55|1997-08-26|4-NOT SPECIFIED|Clerk#000000653|0|al deposits. even packages affix fluffily after the | +5835|105989|F|316313.29|1992-02-01|2-HIGH|Clerk#000000153|0|? even requests according to the furiously| +5836|106441|F|47468.26|1994-03-16|5-LOW|Clerk#000000401|0|xes wake requests. carefully final | +5837|44603|F|117586.38|1994-05-21|4-NOT SPECIFIED|Clerk#000000750|0|ngside of the deposits. evenly even foxes sleep ruthlessly above | +5838|89435|F|30044.29|1995-01-09|1-URGENT|Clerk#000000327|0|ng accounts above the furiously regular acc| +5839|118021|O|98917.53|1996-12-18|1-URGENT|Clerk#000000016|0|ely bold pinto beans are slyl| +5864|118138|F|300053.86|1992-08-23|2-HIGH|Clerk#000000817|0| furiously regular ideas use. sly| +5865|112166|O|97236.33|1997-12-22|2-HIGH|Clerk#000000919|0| the furiously unusual theodolites haggle about the | +5866|108167|F|90078.05|1993-01-12|4-NOT SPECIFIED|Clerk#000000836|0|ctions sleep blithely against the ironic, unusual theodolites. fluffily e| +5867|103273|O|75900.87|1995-10-20|3-MEDIUM|Clerk#000000492|0|ts shall have to sleep. ironic, regular platelets cajole care| +5868|38129|F|48977.12|1993-03-26|1-URGENT|Clerk#000000247|0|thely. ruthlessly express accounts according t| +5869|22874|F|62311.51|1992-05-06|4-NOT SPECIFIED|Clerk#000000992|0|cies haggle. fluffily| +5870|135223|O|6979.78|1996-12-29|5-LOW|Clerk#000000526|0|ly express theodolites. final dependencies detect carefu| +5871|20906|O|179148.04|1997-07-16|4-NOT SPECIFIED|Clerk#000000330|0|inst the fluffily final courts.| +5896|52537|F|165885.08|1993-03-02|5-LOW|Clerk#000000001|0|efully even packages. furiously regular ideas haggle furio| +5897|63440|O|56999.31|1996-10-16|4-NOT SPECIFIED|Clerk#000000879|0|ake carefully across the slyly express instructions. quickly final acc| +5898|21655|O|63833.57|1996-04-16|1-URGENT|Clerk#000000795|0|ithely about the quickly ironic pack| +5899|24316|F|205022.73|1993-01-20|3-MEDIUM|Clerk#000000026|0| even accounts hinder slyly against the furiously ironic waters; c| +5900|74203|F|244840.36|1992-01-21|5-LOW|Clerk#000000746|0|lyly bold foxes. carefully regular| +5901|3608|F|109736.36|1995-01-14|4-NOT SPECIFIED|Clerk#000000661|0|e the slyly unusual theodolites should impress accounts. furio| +5902|34360|P|205468.96|1995-05-10|2-HIGH|Clerk#000000843|0| accounts serve about the unusual accou| +5903|123832|O|51439.55|1996-07-27|2-HIGH|Clerk#000000200|0|es after the pending| +5928|120931|F|126006.68|1993-09-08|2-HIGH|Clerk#000000545|0| are carefully slow| +5929|104401|F|235451.82|1994-08-02|1-URGENT|Clerk#000000796|0|ly special requests sleep across| +5930|93439|O|298342.02|1996-01-31|2-HIGH|Clerk#000000463|0|kly final foxes cajole among the blithely regular requests.| +5931|78155|F|187512.72|1994-03-15|1-URGENT|Clerk#000000464|0|al courts. blithely pending instructions sleep carefully against| +5932|139033|F|315243.61|1994-03-26|1-URGENT|Clerk#000000545|0|iously along the car| +5933|13288|O|277504.61|1995-09-14|3-MEDIUM|Clerk#000000522|0| quick deposits. quickly express platelets cajole around the pendin| +5934|99481|F|186384.24|1992-07-14|3-MEDIUM|Clerk#000000839|0|ely. even sheaves against the | +5935|55438|O|189956.85|1995-12-27|1-URGENT|Clerk#000000157|0|lyly express sauternes use carefully instructions. a| +5960|95938|O|104934.45|1997-01-24|5-LOW|Clerk#000000939|0|leep slyly regular instructions. blithely final dugout| +5961|59164|O|69113.40|1998-02-17|1-URGENT|Clerk#000000397|0|structions. carefully final packages haggle agains| +5962|1141|O|121481.05|1996-07-27|1-URGENT|Clerk#000000270|0|sual packages haggle f| +5963|97189|F|226619.73|1993-11-01|3-MEDIUM|Clerk#000000548|0|gular packages haggle alongside of the asymptotes. quickly final packages ha| +5964|84349|F|251633.15|1992-10-23|4-NOT SPECIFIED|Clerk#000000609|0|ins can nag closely blithely regular gifts. slyly s| +5965|140594|O|89410.78|1997-03-15|3-MEDIUM|Clerk#000000483|0| wake. carefully pending pinto beans wake carefully regular theodolites;| +5966|3004|F|46740.97|1992-05-08|2-HIGH|Clerk#000000407|0|he unusual deposits. deposits | +5967|68113|F|187500.93|1994-02-06|4-NOT SPECIFIED|Clerk#000000725|0|ironic deposits. carefully special accounts cajole quickly special inst| +5992|109631|O|50185.86|1997-04-02|2-HIGH|Clerk#000000391|0|nic ideas-- fluffily unusual theodolites haggle blithe| +5993|105379|O|240996.17|1997-12-18|2-HIGH|Clerk#000000721|0|fully enticing packages. accounts boost quickly. blithely regular ideas wak| +5994|41395|F|94227.14|1992-09-08|1-URGENT|Clerk#000000271|0|gage carefully blithe, furious accou| +5995|17096|O|54799.07|1996-08-28|4-NOT SPECIFIED|Clerk#000000761|0| regular instructions. deposits grow furiously alongside| +5996|75637|F|223442.78|1994-05-14|5-LOW|Clerk#000000265|0|ously unusual patterns poach slyly. re| diff --git a/batch-tool/src/test/resources/tpch/insert-1g-2/orders.tbl.u2 b/batch-tool/src/test/resources/tpch/insert-1g-2/orders.tbl.u2 new file mode 100644 index 0000000..10562ec --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-1g-2/orders.tbl.u2 @@ -0,0 +1,1500 @@ +5997|124549|O|246834.21|1997-08-14|2-HIGH|Clerk#000000853|0|ounts wake slyly furi| +5998|18103|O|198887.71|1996-03-09|2-HIGH|Clerk#000000981|0| final accounts wake blithely across the carefully final depen| +5999|51724|F|43120.76|1992-03-29|2-HIGH|Clerk#000000093|0|rding to the foxes. final foxes around | +6024|59504|F|20783.11|1994-03-28|1-URGENT|Clerk#000000954|0|hely regular theodolites nag regular packages. blithely bold requests wake ab| +6025|21733|O|15385.25|1995-08-03|2-HIGH|Clerk#000000956|0|unusual accounts affix blithely along the | +6026|4439|O|130212.34|1998-07-12|3-MEDIUM|Clerk#000000594|0|final, bold requests. blithely regular asymptotes integrate fluffily. ev| +6027|54025|F|156821.22|1994-07-02|1-URGENT|Clerk#000000562|0|nt furiously. deposits wake deposits. regularly | +6028|38317|O|25397.36|1996-10-18|2-HIGH|Clerk#000000621|0|ealthily bold platelets are furiously ironic asym| +6029|31813|F|173633.83|1993-07-14|1-URGENT|Clerk#000000114|0|ages; furiously unusual packages sleep. furiously | +6030|73537|O|183434.49|1997-12-23|3-MEDIUM|Clerk#000000801|0|ans wake slyly. even, regular foxes sleep fluffily sly pinto bean| +6031|71431|F|119008.64|1993-03-14|1-URGENT|Clerk#000000993|0|riously ironic request| +6056|77456|O|171890.44|1996-10-28|2-HIGH|Clerk#000000548|0|leep carefully bold foxes. slyly regular accounts after the quickly specia| +6057|101473|F|208167.13|1995-02-24|1-URGENT|Clerk#000000095|0|unts. slyly special deposits | +6058|103477|O|161065.41|1996-01-04|5-LOW|Clerk#000000154|0|e ideas unwind against t| +6059|32204|O|267497.89|1997-05-09|3-MEDIUM|Clerk#000000403|0|cording to the carefully regular theodolites. carefully quick deposit| +6060|44539|O|195062.66|1997-10-28|4-NOT SPECIFIED|Clerk#000000389|0|along the deposits cajole furiously unusual| +6061|65549|O|54415.88|1996-12-26|3-MEDIUM|Clerk#000000284|0| requests across the regular asympto| +6062|81421|O|118206.81|1997-04-16|1-URGENT|Clerk#000000894|0|uriously busy accounts haggle furiously carefu| +6063|116138|F|156165.21|1992-06-06|3-MEDIUM|Clerk#000000102|0| unusual warhorses are blithely against the slyly unus| +6088|130559|F|15152.47|1992-08-15|1-URGENT|Clerk#000000104|0|even, ironic grouches. carefully ironic excuses according to the | +6089|94283|F|288996.20|1994-07-12|2-HIGH|Clerk#000000183|0| final warhorses: carefully ironic theodolites according to t| +6090|3167|F|242123.32|1993-10-15|3-MEDIUM|Clerk#000000772|0|s wake carefully. regular ideas cajole fluffy deposits. furiously| +6091|122273|F|230155.02|1993-02-05|4-NOT SPECIFIED|Clerk#000000325|0|structions use ironic accounts. packages around the carefully expre| +6092|33274|F|77717.77|1993-08-02|2-HIGH|Clerk#000000362|0|hely slow packages wake quickly even theodol| +6093|11981|F|213965.27|1992-02-10|2-HIGH|Clerk#000000371|0|ly unusual packages nag final theodolites. blithely eve| +6094|50290|F|346720.14|1993-09-29|5-LOW|Clerk#000000301|0|oze blithely. blithely even tithes dete| +6095|113527|F|93944.15|1992-01-01|2-HIGH|Clerk#000000471|0|he pinto beans use slyly around the slyly even| +6120|21188|O|196727.22|1997-06-17|5-LOW|Clerk#000000055|0|e. requests affix b| +6121|141943|F|21583.87|1993-03-04|2-HIGH|Clerk#000000424|0|ts. special ideas wake carefully pending, special accounts| +6122|7114|F|75868.25|1995-01-11|2-HIGH|Clerk#000000488|0|re slyly at the slyly regular dependencies. | +6123|5449|F|171586.66|1993-01-28|4-NOT SPECIFIED|Clerk#000000299|0|thely bold pinto beans wake blithely after the busy accounts. quickly fin| +6124|80191|O|265205.38|1996-08-07|5-LOW|Clerk#000000139|0| furiously regular braids r| +6125|144118|O|283677.37|1998-05-26|4-NOT SPECIFIED|Clerk#000000936|0|deposits sleep careful| +6126|127219|F|116385.59|1992-04-27|4-NOT SPECIFIED|Clerk#000000742|0|t blithely along the| +6127|40852|F|179021.85|1994-04-25|2-HIGH|Clerk#000000737|0|the requests affix along the carefully regular pinto beans. i| +6152|33674|O|87359.28|1995-09-08|2-HIGH|Clerk#000000342|0|. closely special foxes was against the fluffily | +6153|148186|O|91386.56|1997-07-29|2-HIGH|Clerk#000000610|0|ress pinto beans cajole fluffily. bold dolphins sleep qui| +6154|103234|F|88607.92|1993-06-28|2-HIGH|Clerk#000000262|0|c platelets cajole according to t| +6155|124654|O|223497.02|1996-04-23|1-URGENT|Clerk#000000729|0| according to the quickly express pac| +6156|129230|F|166572.44|1992-09-10|5-LOW|Clerk#000000383|0| despite the blithely special requests nag furiously along the blithely reg| +6157|109616|O|2954.81|1996-12-11|1-URGENT|Clerk#000000632|0|of the furiously special Tiresias. p| +6158|8230|O|213385.40|1996-03-18|1-URGENT|Clerk#000000480|0|kages detect carefully. regular, s| +6159|3007|F|125215.53|1992-10-07|4-NOT SPECIFIED|Clerk#000000614|0|s boost unusual depo| +6184|118846|O|317121.13|1995-08-10|3-MEDIUM|Clerk#000000235|0|al requests haggle carefully-- carefully silent pinto beans | +6185|40189|F|365817.52|1994-09-24|2-HIGH|Clerk#000000959|0|egular ideas. quickly regular deposits are q| +6186|141319|O|173200.99|1998-03-14|1-URGENT|Clerk#000000471|0| nag carefully carefully expres| +6187|45010|F|144157.95|1993-07-14|3-MEDIUM|Clerk#000000393|0|nusual, regular theodolites. even packages along the carefu| +6188|27436|F|170013.19|1993-03-27|5-LOW|Clerk#000000013|0| regular sentiments. quickly pending deposits among the even, unusual | +6189|6667|F|237463.37|1994-09-30|4-NOT SPECIFIED|Clerk#000000804|0|. quickly final foxes sleep blithely.| +6190|136568|O|103317.02|1996-09-09|2-HIGH|Clerk#000000132|0|to the slyly bold instructions haggle slyly even theodolites. bli| +6191|140744|F|98492.11|1994-05-14|4-NOT SPECIFIED|Clerk#000000355|0|gular accounts are quickly special instructions. carefully iro| +6216|122746|O|122006.27|1996-01-14|1-URGENT|Clerk#000000810|0|al pinto beans. regular deposits are ca| +6217|12733|F|326954.05|1993-02-21|2-HIGH|Clerk#000000959|0| pinto beans against the| +6218|85600|O|239825.60|1996-11-21|2-HIGH|Clerk#000000567|0|e regular accounts. blithely express gifts nag carefully. carefully un| +6219|19130|F|79785.74|1994-07-30|3-MEDIUM|Clerk#000000564|0|to the slyly special deposits. furiou| +6220|53785|O|84451.82|1997-07-26|3-MEDIUM|Clerk#000000235|0|ests? busily final deposit| +6221|48566|F|28578.11|1995-05-12|4-NOT SPECIFIED|Clerk#000000654|0|ole unusual requests. slyly bold p| +6222|91516|O|186774.06|1995-10-02|3-MEDIUM|Clerk#000000282|0| ideas haggle furiously blithely pending ideas. furiousl| +6223|2071|F|110228.81|1992-02-01|2-HIGH|Clerk#000000694|0|r accounts. pinto beans around the bold requests cajole unusual foxes. silent,| +6248|130198|O|135632.16|1996-12-13|1-URGENT|Clerk#000000186|0| regular requests. fluf| +6249|30179|P|42968.17|1995-03-20|5-LOW|Clerk#000000802|0|latelets cajole furiously beyond the asymptotes. regular, bold requests a| +6250|55088|F|209361.13|1994-10-14|3-MEDIUM|Clerk#000000250|0|e daringly final accounts are thinly acco| +6251|51598|O|131004.06|1997-10-12|2-HIGH|Clerk#000000571|0|ncies sleep quiet pinto beans. blithely bold requests doze furiously| +6252|43285|O|286252.28|1996-11-29|4-NOT SPECIFIED|Clerk#000000761|0|ove the fluffily final se| +6253|129970|F|73328.66|1994-08-06|3-MEDIUM|Clerk#000000925|0|, silent theodolites boost furiously. slyly final foxes haggle f| +6254|97739|O|233916.77|1998-04-07|2-HIGH|Clerk#000000657|0|ronic platelets. final, unusual dinos serve carefully car| +6255|42953|O|112037.12|1995-12-09|1-URGENT|Clerk#000000826|0|ely after the special deposits. carefully ironic foxes | +6280|108389|F|67064.97|1993-08-12|4-NOT SPECIFIED|Clerk#000000516|0|to beans nag across the final requests. furi| +6281|93667|O|64965.10|1995-08-23|1-URGENT|Clerk#000000521|0|eas should haggle. accounts boost fluffily platelets. quick| +6282|147491|O|35485.46|1997-06-14|1-URGENT|Clerk#000000314|0| unusual packages affix regular asymptotes. ca| +6283|117448|O|64568.96|1997-10-08|4-NOT SPECIFIED|Clerk#000000859|0|egular pinto beans. sometimes special ideas nag| +6284|96505|O|79446.22|1998-06-10|4-NOT SPECIFIED|Clerk#000000620|0|o the furiously ironic requests. foxes cajole carefully f| +6285|131182|F|130325.46|1993-12-10|4-NOT SPECIFIED|Clerk#000000300|0|s boost above the asymptotes. even foxes wake careful| +6286|75733|O|236112.78|1995-12-19|4-NOT SPECIFIED|Clerk#000000562|0|iously unusual excuses. furiously even theodolites are r| +6287|72862|O|237237.03|1997-05-02|1-URGENT|Clerk#000000244|0| regular deposits. ironic accounts shall integrate alongside of the fi| +6312|138812|F|114678.02|1992-07-07|1-URGENT|Clerk#000000684|0|structions use. pending pac| +6313|55151|O|198090.40|1996-03-30|1-URGENT|Clerk#000000303|0|ckly final escapades. reg| +6314|69151|F|28814.77|1993-07-19|2-HIGH|Clerk#000000934|0|e pending instructions? unusual, special| +6315|2662|F|93635.09|1992-04-14|3-MEDIUM|Clerk#000000793|0|usual excuses haggle. carefully bo| +6316|21703|P|268039.53|1995-06-03|5-LOW|Clerk#000000370|0|press accounts. unusual, regular foxes after the fluffil| +6317|85525|O|248555.93|1998-01-24|5-LOW|Clerk#000000500|0|pon the carefully regular accounts. silent, regular | +6318|94867|O|210549.12|1998-06-24|1-URGENT|Clerk#000000886|0|sly furious accounts boost. furiously regul| +6319|48617|F|187219.49|1994-01-22|5-LOW|Clerk#000000530|0|st quickly. slyly close accounts across the furiously regular ideas wake b| +6344|45724|P|118598.49|1995-04-05|2-HIGH|Clerk#000000325|0|excuses. slyly final packages across the ca| +6345|17650|F|40284.59|1994-01-27|1-URGENT|Clerk#000000575|0|es. quickly special instructions nag across the even accounts. unusual deposit| +6346|71968|F|138490.61|1993-01-09|5-LOW|Clerk#000000628|0| bold dolphins. accounts wake bravely blithely ironic pinto beans. | +6347|107098|O|193158.37|1996-08-18|2-HIGH|Clerk#000000425|0| the carefully express theodolites | +6348|128662|O|241766.71|1995-10-08|4-NOT SPECIFIED|Clerk#000000636|0|ress asymptotes haggle even| +6349|8198|O|166577.60|1997-09-27|2-HIGH|Clerk#000000742|0|uriously about the slyly slow| +6350|68513|F|138986.14|1992-01-15|3-MEDIUM|Clerk#000000131|0|lar foxes haggle furiously even, final pinto beans. accounts use after the| +6351|83720|F|28993.72|1992-05-16|4-NOT SPECIFIED|Clerk#000000666|0|elets are blithely pending plat| +6376|68095|O|53673.94|1995-06-04|3-MEDIUM|Clerk#000000656|0|requests: carefully ironic ideas use slyly according to the regular decoy| +6377|112142|F|101120.49|1992-03-20|2-HIGH|Clerk#000000753|0|efully express excuses integrate against the bold accou| +6378|15937|O|47692.35|1997-09-04|3-MEDIUM|Clerk#000000925|0|e across the blithel| +6379|89713|O|125650.93|1998-06-06|2-HIGH|Clerk#000000064|0|ing, bold packages sleep. carefully special | +6380|143999|F|167070.46|1992-11-25|4-NOT SPECIFIED|Clerk#000000371|0|ly regular requests are quickly. even id| +6381|83537|F|99073.12|1995-02-10|4-NOT SPECIFIED|Clerk#000000347|0|r deposits thrash furiously final platelets. slyly | +6382|5968|O|241518.92|1998-04-12|5-LOW|Clerk#000000403|0|after the regular theodolites-- ironic r| +6383|102844|F|97729.23|1994-07-20|5-LOW|Clerk#000000358|0|nding deposits. busy, ironic ideas wake. blithely even pinto beans wake| +6408|41027|F|125648.62|1992-04-10|5-LOW|Clerk#000000044|0|al deposits. regular pinto beans among the ironic | +6409|139858|F|144991.90|1994-02-12|3-MEDIUM|Clerk#000000716|0|dazzle blithely regular packages. requests was unus| +6410|63331|F|305690.50|1993-05-19|5-LOW|Clerk#000000615|0|usual requests. special, bold excu| +6411|137797|O|133085.55|1997-01-12|5-LOW|Clerk#000000314|0|ecial, ironic excuses aro| +6412|92335|O|201423.26|1997-08-12|1-URGENT|Clerk#000000973|0|ual packages haggle carefully. carefully bold platelets haggle quickly. furi| +6413|122998|F|1238.53|1992-08-04|2-HIGH|Clerk#000000821|0|totes are slyly blithely regular packages. never regular accou| +6414|59591|F|212316.10|1995-01-30|1-URGENT|Clerk#000000450|0|le blithely express | +6415|140654|F|64299.51|1993-10-27|2-HIGH|Clerk#000000527|0|l, regular theodolites| +6440|110897|O|133165.26|1997-11-16|4-NOT SPECIFIED|Clerk#000000643|0|counts. busy accounts boost furiously among the asym| +6441|84661|F|325716.06|1993-09-26|3-MEDIUM|Clerk#000000985|0|y bold accounts detect slyly across the fluffily final instructions!| +6442|135332|F|12333.48|1994-11-04|2-HIGH|Clerk#000000137|0|e special instructions; carefully final requests hinder quickly| +6443|72007|O|327965.15|1996-03-21|4-NOT SPECIFIED|Clerk#000000204|0| wake slyly across | +6444|138572|O|185409.72|1995-11-24|1-URGENT|Clerk#000000635|0|ut the slyly regular accounts doubt pe| +6445|64291|F|361847.65|1994-09-19|4-NOT SPECIFIED|Clerk#000000970|0|uickly around the carefully final foxes. furiously even pinto beans haggle | +6446|63641|F|336446.81|1993-05-10|5-LOW|Clerk#000000634|0|foxes. furiously final | +6447|110800|F|141877.86|1992-06-27|1-URGENT|Clerk#000000044|0|ly quickly daring instructions. quick| +6472|98017|O|32303.07|1997-01-07|3-MEDIUM|Clerk#000000750|0|ove the blithely special asymptotes. blithely special accounts| +6473|38575|O|177750.15|1997-07-17|5-LOW|Clerk#000000108|0|lets are. regular, final d| +6474|28172|O|180034.43|1998-02-06|3-MEDIUM|Clerk#000000248|0|r deposits affix blithely according to the quickly even p| +6475|71107|F|7336.40|1992-02-15|1-URGENT|Clerk#000000809|0|ly above the furious| +6476|25901|O|184468.45|1996-09-28|1-URGENT|Clerk#000000262|0| boost doggedly. fur| +6477|10921|F|47842.34|1993-12-02|4-NOT SPECIFIED|Clerk#000000439|0|regular foxes. carefully special packages sleep slyly | +6478|71236|F|117971.67|1993-07-10|5-LOW|Clerk#000000537|0|refully regular dependencies cajole fluffi| +6479|99686|O|54907.78|1998-03-07|2-HIGH|Clerk#000000075|0|t the unusual, special asymptotes. blithely r| +6504|65731|O|125303.31|1996-03-14|2-HIGH|Clerk#000000744|0| across the furiously express accounts. regular requests according t| +6505|107323|P|231328.16|1995-04-07|4-NOT SPECIFIED|Clerk#000000386|0|ironic attainments breach in place o| +6506|15938|F|169984.45|1993-02-09|4-NOT SPECIFIED|Clerk#000000828|0|, final accounts. carefully regular accounts| +6507|111796|O|342141.21|1998-05-21|2-HIGH|Clerk#000000135|0|carefully special pinto beans sleep| +6508|27868|F|235189.63|1994-04-05|2-HIGH|Clerk#000000279|0| regular requests boost quickly regular packages. quickly pending ideas detec| +6509|73954|F|131319.83|1993-08-28|3-MEDIUM|Clerk#000000164|0|ly pending realms. blithe, even deposits haggle | +6510|37316|O|96821.48|1995-06-16|2-HIGH|Clerk#000000362|0| play blithely regular acc| +6511|5605|O|111567.84|1996-01-13|2-HIGH|Clerk#000000372|0|lly even pearls could have to are furiously unusual| +6536|134372|F|34292.17|1992-03-27|4-NOT SPECIFIED|Clerk#000000992|0|s the furiously regular deposits. furi| +6537|126241|O|129578.59|1997-06-26|4-NOT SPECIFIED|Clerk#000000150|0|etly. carefully ironic instructions wake car| +6538|130129|F|274690.36|1992-03-03|3-MEDIUM|Clerk#000000933|0|xes. fluffily regular packages across the ironic platelet| +6539|72607|O|354473.43|1997-10-17|2-HIGH|Clerk#000000049|0|pitaphs alongside of the platelets| +6540|28342|O|190064.03|1998-02-13|4-NOT SPECIFIED|Clerk#000000595|0|pending accounts about the carefully express forge| +6541|74110|F|122304.41|1994-07-10|2-HIGH|Clerk#000000195|0|after the accounts cajole evenly silent pinto bean| +6542|92885|O|173372.71|1997-04-21|2-HIGH|Clerk#000000901|0|gside of the express depend| +6543|59378|O|47026.88|1996-05-12|5-LOW|Clerk#000000164|0|longside of the unusual instructions. sometimes ironic deposit| +6568|6107|O|253136.24|1996-07-26|2-HIGH|Clerk#000000980|0|orbits! even accounts promise blithely regular requests. fluffily regula| +6569|26665|F|122394.79|1993-06-13|5-LOW|Clerk#000000218|0|eposits. carefully ironic packages dazzle after the accounts--| +6570|84428|O|207539.03|1997-01-12|2-HIGH|Clerk#000000738|0|. brave, unusual requests a| +6571|119993|F|45925.61|1993-12-24|1-URGENT|Clerk#000000461|0|ajole quickly after the slyly regular | +6572|109004|O|228928.60|1997-08-26|4-NOT SPECIFIED|Clerk#000000091|0| theodolites. even asymptotes ha| +6573|71549|O|25298.04|1997-04-23|4-NOT SPECIFIED|Clerk#000000550|0| carefully close deposits; slyly regular accounts sleep furiously carefull| +6574|109015|O|10302.70|1998-07-31|3-MEDIUM|Clerk#000000739|0|se courts. carefully bold requests boost blithely above the fluffily expres| +6575|97477|O|140945.93|1997-07-19|5-LOW|Clerk#000000337|0|enticing, slow theodolites are furiously blithely enticing foxes. q| +6600|127223|O|130529.20|1998-02-20|5-LOW|Clerk#000000817|0|oxes. special instructions are bravely abo| +6601|136174|O|60177.09|1998-07-27|1-URGENT|Clerk#000000700|0|usly sly foxes along the dogged, r| +6602|104741|O|43971.98|1995-11-07|5-LOW|Clerk#000000484|0|posits about the quickly regular packages wake idly| +6603|130988|F|68124.62|1992-10-20|2-HIGH|Clerk#000000792|0|ackages wake slyly. pending foxes hinder fluffily. slyly unusual pac| +6604|105448|O|62977.97|1995-04-03|5-LOW|Clerk#000000863|0| requests along the bold foxes breach along| +6605|139859|F|106513.30|1994-03-14|1-URGENT|Clerk#000000926|0| quickly special ideas. regular ideas use bravely; furiously final reques| +6606|103588|O|51575.69|1996-03-02|1-URGENT|Clerk#000000156|0|refully bold courts sleep. fina| +6607|91871|O|192300.67|1997-01-03|2-HIGH|Clerk#000000268|0|slyly unusual instructions! slyly even ideas p| +6632|124993|F|12052.24|1992-11-14|1-URGENT|Clerk#000000208|0| pending packages. blithely even dependencies affix against the blithely eve| +6633|127546|F|93712.19|1994-08-05|4-NOT SPECIFIED|Clerk#000000037|0| are blithely final, express packages! slyly quick deposits x-ray carefully re| +6634|7708|F|261051.08|1992-05-03|3-MEDIUM|Clerk#000000582|0|s. carefully regular deposits alongside of the fl| +6635|72916|F|252478.43|1993-07-13|2-HIGH|Clerk#000000099|0|s about the bold requests wa| +6636|148994|O|57977.93|1998-02-18|2-HIGH|Clerk#000000316|0|e furiously busy pinto beans. slyly pending theodolites n| +6637|28991|F|158891.55|1994-12-15|2-HIGH|Clerk#000000587|0|osely special accounts. slyly unusual packages are carefully against th| +6638|50185|O|251329.92|1996-08-15|5-LOW|Clerk#000000901|0| the quickly final theodolites are slyly against the carefully express | +6639|145324|P|232131.36|1995-04-14|5-LOW|Clerk#000000032|0|pending, ironic sentiments nod. furiously special acc| +6664|146558|F|135712.80|1993-12-16|5-LOW|Clerk#000000083|0|le blithely furiously regular instructions: packages| +6665|38225|O|190572.47|1998-07-27|3-MEDIUM|Clerk#000000346|0|fily about the even, final plate| +6666|133189|O|226504.01|1998-02-08|3-MEDIUM|Clerk#000000599|0|ackages wake across the furiously ironic foxes. slyly regular requ| +6667|42823|F|144070.56|1994-04-15|2-HIGH|Clerk#000000950|0|romise carefully slyly final deposits-- final, ironic foxes serve regular i| +6668|143974|O|342342.73|1995-07-19|4-NOT SPECIFIED|Clerk#000000912|0|ses. regular platelets nag furiously r| +6669|110431|F|212570.00|1994-02-14|1-URGENT|Clerk#000000071|0|he final ideas are even accounts. silent pinto beans haggle car| +6670|36373|F|19781.95|1992-05-23|1-URGENT|Clerk#000000326|0|ets! furiously even requests us| +6671|69037|O|233793.07|1996-03-03|3-MEDIUM|Clerk#000000230|0|inal requests are quickly| +6696|39325|O|170084.81|1997-08-11|3-MEDIUM|Clerk#000000526|0|en instructions are. final pinto beans are: pending accounts | +6697|34021|F|18847.26|1993-04-08|4-NOT SPECIFIED|Clerk#000000033|0|fully special asymptotes. slyly even| +6698|135592|O|258406.81|1996-11-18|1-URGENT|Clerk#000000161|0|nic, final packages. permanently final pi| +6699|71164|F|117039.91|1994-03-01|3-MEDIUM|Clerk#000000715|0|. slyly final excuses integrate quickly slyly pe| +6700|93785|F|261400.78|1994-05-29|3-MEDIUM|Clerk#000000077|0| wake furiously. quickly final | +6701|36565|O|47260.79|1996-02-20|5-LOW|Clerk#000000525|0|r requests. furiously regular deposits nag after the ironic pinto beans. regu| +6702|129190|O|309875.82|1995-10-18|2-HIGH|Clerk#000000476|0|usly pending packages. slyly sp| +6703|28042|F|105808.34|1994-09-10|3-MEDIUM|Clerk#000000761|0|e carefully silent tithes. account| +6728|126874|O|81013.33|1997-06-25|4-NOT SPECIFIED|Clerk#000000681|0|dependencies nod carefully blithely thin foxes.| +6729|102313|F|147278.43|1993-05-13|2-HIGH|Clerk#000000396|0|ke. blithely bold de| +6730|104807|F|318169.39|1992-08-17|2-HIGH|Clerk#000000489|0|sits. furiously regular d| +6731|39784|F|174110.44|1993-07-01|2-HIGH|Clerk#000000980|0|egular packages use around | +6732|92660|F|316781.88|1993-04-04|3-MEDIUM|Clerk#000000920|0|slyly regular theodolites breach carefully alongside of | +6733|20518|F|290034.82|1994-09-02|3-MEDIUM|Clerk#000000278|0|. carefully unusual account| +6734|135838|O|221677.93|1996-05-15|2-HIGH|Clerk#000000808|0|l deposits according to the silent theodolites detect across the | +6735|20572|P|44754.75|1995-04-03|1-URGENT|Clerk#000000249|0|ideas? slyly special theodolites according to the r| +6760|136339|F|224580.35|1992-05-21|3-MEDIUM|Clerk#000000987|0|metimes on the deposits. quickly express the| +6761|45322|F|227162.90|1992-02-27|2-HIGH|Clerk#000000853|0| deposits. carefully special foxes h| +6762|9151|O|90777.33|1997-08-08|5-LOW|Clerk#000000632|0|ests sleep along the furiously unusual accounts. blithely| +6763|33637|F|94747.34|1993-09-14|4-NOT SPECIFIED|Clerk#000000387|0|s alongside of the furiously unusual requests use| +6764|104210|O|111528.65|1997-07-17|3-MEDIUM|Clerk#000000706|0|ven accounts. quickl| +6765|55720|O|52593.19|1997-02-10|1-URGENT|Clerk#000000579|0|e pinto beans are slyly. bold, regular instructions impress regula| +6766|3049|F|200724.72|1992-10-26|2-HIGH|Clerk#000000065|0|ites are against the carefully final accounts. furiously| +6767|62155|F|139576.13|1993-05-20|2-HIGH|Clerk#000000436|0|sits across the carefully idle deposits print slyly carefully ironic | +6792|29573|F|117367.88|1994-07-08|2-HIGH|Clerk#000000488|0|ts. slyly final deposits integrate. caref| +6793|83293|O|117401.52|1996-12-23|5-LOW|Clerk#000000487|0|equests. slyly unusual deposi| +6794|90259|F|154239.26|1993-12-24|1-URGENT|Clerk#000000475|0| accounts are against the pi| +6795|29122|F|49087.75|1994-02-13|4-NOT SPECIFIED|Clerk#000000768|0| to boost slyly. requests kin| +6796|129886|O|62906.56|1997-09-24|3-MEDIUM|Clerk#000000417|0|ular ideas haggle furiously agai| +6797|42701|F|311221.35|1993-09-26|3-MEDIUM|Clerk#000000762|0|y unusual excuses: slyly regular dependencies are carefully. | +6798|70268|O|199293.65|1995-09-09|4-NOT SPECIFIED|Clerk#000000969|0|the carefully final fox| +6799|43976|O|121905.85|1997-02-03|2-HIGH|Clerk#000000657|0|gle. furiously special accounts cajole carefully; sile| +6824|51286|O|90170.80|1997-07-27|5-LOW|Clerk#000000721|0|cuses x-ray? blithely ironic instructions sle| +6825|46513|O|101818.44|1996-01-06|1-URGENT|Clerk#000000997|0|lar instructions boost along the pending pinto beans. slyly fluff| +6826|67720|P|358814.63|1995-06-03|4-NOT SPECIFIED|Clerk#000000287|0|l excuses haggle blithely final epitaphs. asymptotes haggle furiousl| +6827|107677|O|125725.43|1996-03-24|5-LOW|Clerk#000000417|0| foxes. ironic requests sleep alongside of the fi| +6828|112192|F|188005.33|1993-03-16|1-URGENT|Clerk#000000951|0|dependencies according to the closely slow idea| +6829|107284|F|162357.12|1994-07-05|2-HIGH|Clerk#000000598|0|usual theodolites. pending pinto beans boost. furiously even | +6830|105823|F|281220.49|1993-07-04|3-MEDIUM|Clerk#000000563|0|around the carefully final packages. re| +6831|137323|F|102402.88|1992-02-11|2-HIGH|Clerk#000000246|0|ake carefully carefully pending a| +6856|83627|F|79442.70|1994-04-19|2-HIGH|Clerk#000000527|0| are furiously according to the ironic ideas. regular waters| +6857|9779|F|132026.78|1994-10-18|3-MEDIUM|Clerk#000000256|0| bold theodolites. blithely blithe deposits among the f| +6858|104761|F|79119.22|1994-05-20|3-MEDIUM|Clerk#000000105|0|lly final deposits beneath the ironic deposits boost id| +6859|10190|F|260213.66|1992-10-19|4-NOT SPECIFIED|Clerk#000000940|0|ounts. ironic asymptotes wake| +6860|99160|F|40389.90|1994-12-14|4-NOT SPECIFIED|Clerk#000000693|0|ly ironic dolphins after the quickly special theodolites nag along the f| +6861|79867|F|56664.04|1993-11-12|2-HIGH|Clerk#000000888|0| integrate furiously according to the pe| +6862|122884|O|102289.18|1997-04-25|4-NOT SPECIFIED|Clerk#000000331|0|ckages. permanent instructions haggle carefully across the regul| +6863|110095|O|281088.87|1998-05-26|4-NOT SPECIFIED|Clerk#000000501|0| carefully permanent deposits. carefully enticing theodolites lose carefully | +6888|88090|O|125569.03|1996-03-20|4-NOT SPECIFIED|Clerk#000000551|0|lar packages! slyly regu| +6889|22295|F|185411.56|1992-11-11|4-NOT SPECIFIED|Clerk#000000980|0|uests cajole. blithely final accounts cajole. furiou| +6890|146122|F|210615.71|1992-01-16|3-MEDIUM|Clerk#000000703|0|ironic platelets integrate furiously carefully| +6891|69530|O|139481.99|1998-06-12|5-LOW|Clerk#000000949|0| hinder across the quickly final foxes. blithely| +6892|76480|F|185344.09|1992-04-03|5-LOW|Clerk#000000236|0|latelets sleep across t| +6893|34402|O|43770.43|1996-11-06|2-HIGH|Clerk#000000940|0| ideas. slyly regular deposits wake evenly alongside of t| +6894|88955|O|159102.46|1996-12-15|3-MEDIUM|Clerk#000000586|0|fluffily special courts sleep. regular requests h| +6895|15322|F|156877.61|1994-12-03|4-NOT SPECIFIED|Clerk#000000990|0|d of the quickly unusual| +6920|108430|O|54054.80|1997-04-12|5-LOW|Clerk#000000056|0|ronic deposits sleep ironic accounts. deposits nag slyly blithe| +6921|2999|O|188799.62|1996-02-12|5-LOW|Clerk#000000751|0|ng the slyly ruthless foxes. carefully r| +6922|141877|O|17008.55|1997-04-26|2-HIGH|Clerk#000000398|0|efully carefully unusual accounts. furiousl| +6923|100036|F|43473.27|1992-03-25|1-URGENT|Clerk#000000509|0| regular requests haggle along the carefully express packages? fur| +6924|103936|F|234804.30|1993-04-21|5-LOW|Clerk#000000537|0|nts sleep slyly regular theodolites. quickly final a| +6925|80461|O|217127.56|1997-07-27|2-HIGH|Clerk#000000159|0|s. regular pinto beans are carefully bold ideas. furiously even depo| +6926|31436|O|345745.12|1998-01-18|5-LOW|Clerk#000000946|0|side of the furiously final requests. quickly regular courts lo| +6927|44203|F|295297.62|1994-01-03|3-MEDIUM|Clerk#000000592|0|sly. quickly even packages are carefully | +6952|112942|F|191468.69|1992-07-20|2-HIGH|Clerk#000000836|0|ns affix. furiously| +6953|96896|O|76521.91|1995-10-17|4-NOT SPECIFIED|Clerk#000000090|0|s deposits cajole a| +6954|125434|F|273842.66|1994-07-10|2-HIGH|Clerk#000000628|0| final deposits. furiously silent asymp| +6955|66004|O|182609.27|1995-08-01|3-MEDIUM|Clerk#000000862|0| carefully along the blithely re| +6956|77996|F|249933.72|1994-01-26|1-URGENT|Clerk#000000486|0|slyly. blithely final ideas across the platelets nag blithe| +6957|19559|F|43269.62|1994-04-22|4-NOT SPECIFIED|Clerk#000000468|0|sits. furiously bold requests nag ca| +6958|70588|O|186207.69|1998-06-07|3-MEDIUM|Clerk#000000300|0|structions wake ironic, final theodolites-- fur| +6959|21388|F|41462.53|1993-02-09|4-NOT SPECIFIED|Clerk#000000123|0| accounts after the even requests boost alo| +6984|62026|F|16097.36|1994-10-24|2-HIGH|Clerk#000000995|0| carefully final realms doubt. deposits lose furiously slyly regul| +6985|113953|O|335203.36|1995-08-07|4-NOT SPECIFIED|Clerk#000000216|0| frets sleep furiously blithely bold packages. express instructi| +6986|5281|O|72508.80|1998-01-22|1-URGENT|Clerk#000000847|0|refully furiously spec| +6987|89425|F|261386.47|1992-12-25|1-URGENT|Clerk#000000656|0|tions are furiously after the regular requests. | +6988|99619|O|244994.81|1995-11-07|1-URGENT|Clerk#000000681|0|atelets. regular dinos sleep. regular deposits against th| +6989|143242|F|70101.17|1994-03-24|4-NOT SPECIFIED|Clerk#000000233|0|ly final dependencies about the blithely ironic instructions ha| +6990|101327|F|161977.98|1993-11-06|3-MEDIUM|Clerk#000000615|0|uriously bold excus| +6991|41548|O|161530.64|1996-12-19|4-NOT SPECIFIED|Clerk#000000441|0|nding packages: furiously express accounts haggle | +7016|44071|F|180570.68|1992-01-12|3-MEDIUM|Clerk#000000211|0|efully express packa| +7017|149525|F|161443.49|1994-03-05|5-LOW|Clerk#000000043|0|xes integrate finally ca| +7018|104458|O|87218.12|1996-05-05|5-LOW|Clerk#000000856|0|er the packages. slyly regular excuses nag slyly. even req| +7019|17336|F|3414.84|1994-04-27|4-NOT SPECIFIED|Clerk#000000913|0|ts. fluffily final instructions cajole slyly | +7020|64282|F|119036.39|1993-01-09|5-LOW|Clerk#000000056|0| cajole boldly along the ironic depths. unusual theodolites wake| +7021|78556|F|12895.87|1993-12-22|3-MEDIUM|Clerk#000000270|0|ronic asymptotes. regular platelets sleep blithely even, thin reques| +7022|122539|O|130134.10|1996-12-20|3-MEDIUM|Clerk#000000484|0|asymptotes unwind fluffily special| +7023|135694|O|39816.06|1995-07-21|5-LOW|Clerk#000000170|0|are. carefully ironic warhorses wake fluffily silent reques| +7048|126772|F|49284.22|1992-12-23|4-NOT SPECIFIED|Clerk#000000088|0|s engage blithely. f| +7049|29185|O|80112.63|1995-08-04|2-HIGH|Clerk#000000314|0| ironic, even foxes nag fluffily e| +7050|8915|O|355281.41|1998-07-02|4-NOT SPECIFIED|Clerk#000000560|0| quickly around the special packages-- sly| +7051|119360|P|206077.12|1995-04-09|3-MEDIUM|Clerk#000000624|0|ly regular instructi| +7052|118304|F|18165.62|1993-03-03|3-MEDIUM|Clerk#000000202|0|lyly express deposits wake slyly! furiou| +7053|77518|F|243164.08|1994-10-11|4-NOT SPECIFIED|Clerk#000000228|0| express foxes serve furiously furiously final dolphins; accounts i| +7054|73160|F|438281.46|1993-07-31|1-URGENT|Clerk#000000778|0|o beans alongside of | +7055|35647|F|338956.14|1993-11-19|1-URGENT|Clerk#000000260|0|ular asymptotes. slyly even deposits was according to the furiously re| +7080|148945|O|165762.69|1996-08-23|3-MEDIUM|Clerk#000000969|0|lyly across the ironic depths? ruthless packages affix| +7081|113227|F|208402.75|1992-11-05|1-URGENT|Clerk#000000944|0|e. ironic packages lose slyly about the quickly| +7082|85067|O|145906.56|1995-12-13|2-HIGH|Clerk#000000598|0|ts promise slyly about the regular deposits. ironic, expres| +7083|61336|O|199561.06|1995-07-19|2-HIGH|Clerk#000000703|0|ove the ironic accounts mold furiously blith| +7084|63223|F|216548.11|1993-07-13|1-URGENT|Clerk#000000297|0|s. pinto beans cajole slyl| +7085|114044|O|92008.46|1997-01-14|3-MEDIUM|Clerk#000000598|0|ly quick warthogs haggle above the slyly even| +7086|32216|O|361822.13|1997-05-12|2-HIGH|Clerk#000000356|0|ly ironic theodolites. fluffily p| +7087|96044|O|247715.55|1995-06-23|2-HIGH|Clerk#000000015|0|ss orbits run carefully. regular, unusu| +7112|55828|O|56658.85|1996-07-20|1-URGENT|Clerk#000000505|0|tructions. slyly pending decoys x-ray alongside of the slyly even ideas. car| +7113|26090|O|250740.18|1995-10-27|4-NOT SPECIFIED|Clerk#000000767|0|old dolphins boost slyly blithely regular dependencies. | +7114|35221|F|319694.21|1992-11-09|2-HIGH|Clerk#000000079|0|refully regular packages above the| +7115|35344|F|217145.34|1992-05-23|3-MEDIUM|Clerk#000000267|0|latelets. furiously regular requests run. dolphins boost ironica| +7116|14557|F|130015.37|1993-05-14|3-MEDIUM|Clerk#000000761|0|ngside of the ironically regular packages. furiously express theodolites dete| +7117|6196|O|147960.32|1998-01-15|2-HIGH|Clerk#000000345|0| foxes wake quickly. sly theodolites serve. blithely e| +7118|34252|O|163057.98|1997-06-12|2-HIGH|Clerk#000000349|0| furiously. furiousl| +7119|109904|P|107470.41|1995-04-30|4-NOT SPECIFIED|Clerk#000000884|0|nusual dolphins boost pending dependencies. regularly bold pinto be| +7144|56503|F|304468.29|1992-11-04|2-HIGH|Clerk#000000242|0|yly according to the requests. blithely unusual dependencie| +7145|139930|O|253765.78|1996-12-24|3-MEDIUM|Clerk#000000444|0|efully express packages behind the slyly even accou| +7146|74917|F|227706.25|1994-10-25|2-HIGH|Clerk#000000821|0|sts. regular requests boost. fluffily regular deposits along| +7147|2857|O|107592.13|1997-03-16|4-NOT SPECIFIED|Clerk#000000348|0|y-- regular, ironic ideas against t| +7148|16615|P|237546.41|1995-04-13|5-LOW|Clerk#000000111|0|sts play. even packages through | +7149|78485|O|72241.02|1996-04-19|5-LOW|Clerk#000000299|0| beans sleep blithely regula| +7150|143357|O|349761.96|1998-03-29|3-MEDIUM|Clerk#000000034|0|its nag above the silently final escapades. fi| +7151|96268|O|287294.77|1998-03-18|4-NOT SPECIFIED|Clerk#000000932|0|s the slyly even deposits. slyl| +7176|48548|F|231939.46|1992-02-05|3-MEDIUM|Clerk#000000585|0|nusual instructions sleep qu| +7177|91636|F|168205.64|1994-01-31|4-NOT SPECIFIED|Clerk#000000956|0|inal, ironic accounts boost blithely even platelets. slyly express| +7178|71257|F|90617.63|1994-01-31|2-HIGH|Clerk#000000050|0|s. carefully final ex| +7179|3310|O|100740.85|1997-12-22|5-LOW|Clerk#000000872|0|efully special requests cajole about the special asymptotes.| +7180|116534|O|127685.96|1997-04-22|2-HIGH|Clerk#000000748|0|y after the final requests. slyly final requests haggle carefully after the r| +7181|25960|O|245616.53|1996-04-30|1-URGENT|Clerk#000000870|0|ons. even, express r| +7182|80039|O|49861.82|1996-03-18|5-LOW|Clerk#000000704|0|en packages. blithely fin| +7183|3544|O|252655.96|1997-11-28|2-HIGH|Clerk#000000488|0|haggle furiously carefully final asymptotes. furiously ironic ins| +7208|142160|O|13277.83|1997-01-15|1-URGENT|Clerk#000000624|0|ly pending foxes; carefully even requests haggle quickl| +7209|69076|F|276584.36|1992-01-12|1-URGENT|Clerk#000000462|0|eodolites wake slyly. even dolphins haggle. blithely express requests | +7210|89137|O|84799.59|1995-12-02|2-HIGH|Clerk#000000825|0|ironic courts haggle. sly pinto beans wake bu| +7211|62687|O|68419.35|1998-06-21|4-NOT SPECIFIED|Clerk#000000231|0|kly regular foxes. carefully p| +7212|124306|F|82588.41|1994-06-13|4-NOT SPECIFIED|Clerk#000000731|0|y after the slyly regular packages. quickly even patterns wake platelet| +7213|130711|O|141114.86|1997-11-08|2-HIGH|Clerk#000000776|0|ding requests. final, regular deposits use. sl| +7214|81718|O|63106.02|1996-07-19|2-HIGH|Clerk#000000394|0|carefully final tithes doz| +7215|28418|O|27303.84|1995-11-17|3-MEDIUM|Clerk#000000648|0|regular dependencies use along the ironically close deposits. s| +7240|20755|O|312814.96|1995-06-18|1-URGENT|Clerk#000000173|0|ructions boost. iron| +7241|63242|O|229517.37|1995-10-20|3-MEDIUM|Clerk#000000874|0|ackages. ironic requests nag slyly along t| +7242|4541|O|268128.82|1996-10-24|3-MEDIUM|Clerk#000000140|0| slyly final escapades. special, ironic accounts are slyly | +7243|104689|O|186479.60|1998-03-27|5-LOW|Clerk#000000987|0| foxes boost slyly alongside of the foxes. quickly final deposits caj| +7244|137873|O|63060.56|1998-06-17|3-MEDIUM|Clerk#000000358|0|s among the carefully final dolphins sleep carefully about the blithely u| +7245|26062|F|163901.32|1993-03-29|5-LOW|Clerk#000000184|0|usly quickly unusual asymptotes. blithely | +7246|7351|O|92338.66|1998-03-18|1-URGENT|Clerk#000000753|0|usly special requests detect furiously | +7247|89269|O|136046.03|1997-02-24|1-URGENT|Clerk#000000402|0|. furiously special depende| +7272|22531|F|43664.92|1993-05-08|5-LOW|Clerk#000000043|0|uriously ironic accounts use at the unusual d| +7273|56590|P|109541.10|1995-03-22|3-MEDIUM|Clerk#000000846|0|ld packages. closely special Tiresias instead of the regular decoys can a| +7274|79418|O|56227.85|1997-06-17|5-LOW|Clerk#000000686|0| upon the regular requests wake ironic excuses. blithely bli| +7275|63790|O|91897.29|1995-09-02|2-HIGH|Clerk#000000446|0|the unusual, bold forges unwind slyly asymptotes. furiousl| +7276|66338|F|69094.86|1992-05-16|1-URGENT|Clerk#000000263|0|for the regular, even accounts sleep som| +7277|141011|F|191582.86|1994-03-20|1-URGENT|Clerk#000000537|0| accounts haggle fur| +7278|117566|O|131564.02|1996-11-18|4-NOT SPECIFIED|Clerk#000000777|0|ing foxes. excuses detect qu| +7279|129529|F|207719.38|1992-09-06|3-MEDIUM|Clerk#000000709|0|ly silent dependencies are accord| +7304|20791|O|43290.99|1997-08-12|2-HIGH|Clerk#000000003|0|ages are furiously around the regular deposits. carefully | +7305|62137|O|214474.33|1997-08-17|4-NOT SPECIFIED|Clerk#000000134|0|ily ironic ideas. furiously pending requests cajole fluffily. foxes are fluffi| +7306|4934|O|125280.36|1995-07-08|1-URGENT|Clerk#000000700|0|en pinto beans. slyly even ac| +7307|112957|F|165478.41|1992-07-08|5-LOW|Clerk#000000873|0|ts. permanently silen| +7308|42593|O|72306.07|1996-12-29|4-NOT SPECIFIED|Clerk#000000009|0|eful foxes. regular, unusual accounts above the sp| +7309|56986|O|220309.33|1996-02-16|4-NOT SPECIFIED|Clerk#000000981|0|slyly bold deposits wake slyly above the iro| +7310|11687|O|246570.56|1996-05-29|5-LOW|Clerk#000000589|0|ely bold theodolites are carefully pending instructio| +7311|60913|O|190051.34|1998-01-13|4-NOT SPECIFIED|Clerk#000000884|0| furiously final accounts. express, special| +7336|147827|F|151273.48|1993-01-16|3-MEDIUM|Clerk#000000853|0|hely silent courts cajole quickly atop| +7337|65804|F|139841.13|1995-02-08|3-MEDIUM|Clerk#000000607|0|y special excuses nag of the requests. even platelets mold slyly. thin reques| +7338|16547|O|52239.84|1997-04-03|2-HIGH|Clerk#000000687|0| deposits. ironic, pending courts use enticingly.| +7339|1516|F|109195.21|1993-10-01|5-LOW|Clerk#000000689|0|carefully through t| +7340|105670|O|137092.26|1998-07-29|1-URGENT|Clerk#000000944|0|counts will have to boost slyly! packages wake slyly. even, ev| +7341|136709|F|17334.81|1993-04-14|1-URGENT|Clerk#000000670|0|ly even pinto beans wake slyly final, even accounts. reques| +7342|111895|F|314772.89|1994-04-25|2-HIGH|Clerk#000000697|0|even deposits affix furiously. | +7343|47497|F|22439.26|1992-06-27|5-LOW|Clerk#000000865|0| according to the bravely even packages are quickly | +7368|103835|O|112001.58|1996-05-19|3-MEDIUM|Clerk#000000473|0|after the carefully pending requests. slyly even ex| +7369|40879|F|50117.07|1995-01-01|5-LOW|Clerk#000000447|0|t requests run blithely along the furio| +7370|39388|O|247867.79|1995-10-20|1-URGENT|Clerk#000000623|0| the furiously pending accounts. quickly| +7371|37091|O|34388.75|1995-12-13|3-MEDIUM|Clerk#000000750|0|ajole blithely. furiously unusual foxes use carefully special, s| +7372|127714|F|101634.45|1994-02-18|1-URGENT|Clerk#000000596|0|uests integrate along the pending pearls. quickly si| +7373|127468|F|248081.57|1994-03-01|4-NOT SPECIFIED|Clerk#000000970|0| haggle alongside of the evenly final ideas. ironic packages | +7374|26569|F|54711.07|1993-04-15|1-URGENT|Clerk#000000531|0|e. doggedly final deposits wake never.| +7375|126067|F|341657.08|1992-02-27|3-MEDIUM|Clerk#000000883|0| sauternes boost blithely agains| +7400|24496|F|96221.74|1994-07-09|3-MEDIUM|Clerk#000000955|0|re carefully regular epitaphs. carefu| +7401|71683|F|321752.84|1995-02-16|4-NOT SPECIFIED|Clerk#000000199|0|y above the slowly unusual deposits; silent foxes sleep blithely unusual, | +7402|123931|P|47812.03|1995-03-03|5-LOW|Clerk#000000309|0| requests above the carefully| +7403|134869|O|154591.58|1996-12-10|2-HIGH|Clerk#000000732|0|sits along the blithely bold pinto beans | +7404|69463|O|173306.02|1996-03-19|3-MEDIUM|Clerk#000000237|0|refully special theodolites nag carefully. car| +7405|147494|O|158307.80|1995-06-18|5-LOW|Clerk#000000283|0|structions are carefully boldly express depos| +7406|19159|F|102158.58|1992-08-22|4-NOT SPECIFIED|Clerk#000000221|0|can nag furiously. special, regul| +7407|73247|F|245272.61|1993-01-23|3-MEDIUM|Clerk#000000140|0|ly ironic ideas nag furiously special theodolites. slyly even requests grow s| +7432|3328|O|82727.24|1995-10-17|1-URGENT|Clerk#000000140|0|ar requests promise quickly carefully regular a| +7433|100087|O|190588.90|1995-11-22|1-URGENT|Clerk#000000089|0|ckages haggle furiously | +7434|42638|F|174454.07|1994-09-07|5-LOW|Clerk#000000212|0|uriously pending requests. slyly pending deposi| +7435|63104|O|148268.70|1997-12-23|1-URGENT|Clerk#000000977|0|. slyly regular pinto beans above the blithely ironic instructions wake sly| +7436|81283|O|70356.45|1997-03-22|2-HIGH|Clerk#000000251|0|to beans use quickly quickly special packages. furiou| +7437|62278|O|112015.54|1996-02-27|3-MEDIUM|Clerk#000000606|0| detect along the blithely ironic instructions. blithely special pi| +7438|147980|O|52830.60|1998-07-01|4-NOT SPECIFIED|Clerk#000000489|0|es alongside of the furiously ironic dolphins haggle slyly pending dependencie| +7439|84400|F|69820.56|1993-12-27|4-NOT SPECIFIED|Clerk#000000741|0|packages across the blithel| +7464|102925|O|32173.85|1998-01-14|1-URGENT|Clerk#000000388|0|uffily unusual ideas mold careful| +7465|54808|F|115685.80|1992-05-17|4-NOT SPECIFIED|Clerk#000000491|0|ely across the slyly even in| +7466|128207|O|23510.65|1998-06-03|1-URGENT|Clerk#000000377|0|e slyly of the express requests. bold f| +7467|15386|F|176678.29|1992-02-07|2-HIGH|Clerk#000000947|0| requests; quickly special pinto beans haggle. ironic, iron| +7468|141346|F|62529.83|1992-10-01|2-HIGH|Clerk#000000032|0|ray. furiously regular theodolites believe carefully r| +7469|27631|O|68391.61|1996-06-14|1-URGENT|Clerk#000000264|0|ly pending orbits sleep slyly. furiously| +7470|124636|P|125392.12|1995-05-10|2-HIGH|Clerk#000000884|0|haggle blithely always ironic deposits. carefully pending excuses cajole | +7471|140963|O|201607.47|1998-02-10|5-LOW|Clerk#000000448|0|r dependencies haggle along the e| +7496|54574|O|84995.57|1997-09-08|2-HIGH|Clerk#000000360|0|ockey players. quickly special pinto beans are silent asymptotes| +7497|98518|O|43844.55|1997-01-17|5-LOW|Clerk#000000523|0|as dazzle carefully blithely idle deposits. slyly final accounts| +7498|84427|O|122436.43|1997-02-18|3-MEDIUM|Clerk#000000740|0|furiously among the theodolites. furiously stealthy acco| +7499|109744|F|161654.47|1993-05-15|2-HIGH|Clerk#000000797|0|foxes. special instructions wak| +7500|60271|F|85232.36|1995-03-24|2-HIGH|Clerk#000000033|0|instructions nag. carefully regular packages use. dolphins boost. platelets | +7501|6379|F|191384.45|1992-02-26|4-NOT SPECIFIED|Clerk#000000807|0|usly pending packages w| +7502|106667|P|176922.14|1995-05-31|3-MEDIUM|Clerk#000000897|0|t across the final, unusual requests. accounts hang blithely along the slyl| +7503|88780|O|1735.98|1997-03-16|1-URGENT|Clerk#000000785|0|ge. final instructions hang pe| +7528|50170|O|9548.31|1997-01-20|3-MEDIUM|Clerk#000000176|0|phins detect blithely fluffily final foxes. quickly even accounts sleep| +7529|31249|F|26451.17|1993-11-08|2-HIGH|Clerk#000000346|0| enticing accounts boost carefully fluffily iro| +7530|31396|F|35858.08|1993-12-15|1-URGENT|Clerk#000000404|0|eodolites haggle quickly regular packages. slyly bold re| +7531|92344|O|356418.79|1996-09-14|4-NOT SPECIFIED|Clerk#000000120|0| sleep express requests. b| +7532|125101|F|118903.78|1994-04-06|4-NOT SPECIFIED|Clerk#000000321|0|structions. final, regular requests do| +7533|143890|F|85170.18|1993-03-06|2-HIGH|Clerk#000000049|0| blithely bold pinto beans wake evenly. permanentl| +7534|27850|F|210968.41|1992-10-09|3-MEDIUM|Clerk#000000009|0|nic, regular foxes. busy packages are along the regula| +7535|42751|O|164345.08|1997-12-09|5-LOW|Clerk#000000249|0|ainst the silently regular theodolites use blithel| +7560|2813|F|85645.50|1994-03-04|4-NOT SPECIFIED|Clerk#000000061|0|. unusual accounts | +7561|19535|O|181604.83|1996-09-16|4-NOT SPECIFIED|Clerk#000000335|0|refully final accounts nag blithely furiously furious theodolites. asymptotes | +7562|115304|O|28459.23|1997-08-16|1-URGENT|Clerk#000000107|0|phs. slyly bold requests wake across the slyly express dependen| +7563|52798|O|241710.90|1997-08-06|1-URGENT|Clerk#000000138|0|into beans. quickly final deposi| +7564|118219|O|206689.49|1997-03-23|4-NOT SPECIFIED|Clerk#000000545|0|even theodolites do sleep ruthlessly. ironic, express requests are c| +7565|146197|F|227894.47|1993-02-25|1-URGENT|Clerk#000000672|0|ep blithely regular excuses. daringly even ideas nag slyly. packa| +7566|120275|F|125922.27|1993-07-15|1-URGENT|Clerk#000000857|0|fy pinto beans. foxes haggle slyly ironic, final deposits.| +7567|47440|O|126263.05|1995-12-29|1-URGENT|Clerk#000000901|0|sts lose among the even pinto beans. quickly even dugouts | +7592|67691|O|73719.19|1996-05-03|5-LOW|Clerk#000000272|0|after the silently special asymptotes. regular requests are quick| +7593|73312|F|179361.26|1994-07-24|3-MEDIUM|Clerk#000000698|0| boost platelets. slyly ironic platelets affix. even, i| +7594|26599|F|28855.42|1992-02-15|3-MEDIUM|Clerk#000000150|0|slyly special packages boost. ironic ideas wake regular, | +7595|37279|F|17519.97|1992-03-05|4-NOT SPECIFIED|Clerk#000000331|0|tain furiously express theodolites. slyly regular pinto be| +7596|130741|O|174632.12|1998-07-28|5-LOW|Clerk#000000159|0|y bold ideas are. regular, express dep| +7597|132406|O|226765.01|1996-06-02|2-HIGH|Clerk#000000860|0|lithely about the pending, special deposits. fluffily even requests integrate| +7598|79492|F|73489.01|1992-01-30|5-LOW|Clerk#000000684|0|ckly pending platelets according to the carefully pending packages sleep| +7599|117880|F|282460.10|1994-03-12|3-MEDIUM|Clerk#000000935|0|s lose about the dogge| +7624|130243|F|156534.01|1992-08-18|4-NOT SPECIFIED|Clerk#000000464|0|lyly unusual accounts. carefully pending packages across the fur| +7625|18895|O|177973.84|1996-10-17|5-LOW|Clerk#000000884|0|ual deposits. slyly pending sauternes sleep. fi| +7626|137258|F|92694.31|1994-05-05|1-URGENT|Clerk#000000538|0|olphins. furiously ironic reque| +7627|38969|O|280240.33|1996-06-24|1-URGENT|Clerk#000000885|0|ular platelets haggle blithely. slyly regular pinto b| +7628|39004|F|50636.35|1994-12-22|3-MEDIUM|Clerk#000000921|0|foxes are final, fina| +7629|37337|O|11583.91|1998-06-20|1-URGENT|Clerk#000000257|0|express deposits haggle above the quickly pending requests! furiously ironic| +7630|56470|O|222286.43|1998-01-11|4-NOT SPECIFIED|Clerk#000000518|0|es are. final excuses boost. slyly even dependenci| +7631|37837|O|128031.15|1997-11-04|4-NOT SPECIFIED|Clerk#000000038|0|efully express waters boost final, express r| +7656|57343|F|26150.38|1992-01-07|3-MEDIUM|Clerk#000000677|0|st slyly. even packages solve about the slyly final pinto beans. | +7657|138856|F|208703.31|1993-10-22|3-MEDIUM|Clerk#000000611|0|riously unusual packages. carefully ironic accounts hi| +7658|43819|O|258693.02|1997-05-17|5-LOW|Clerk#000000419|0|althy ideas. slyly ironic theodolites grow-- final platelets nag. busy instruc| +7659|92363|F|108696.62|1992-11-20|4-NOT SPECIFIED|Clerk#000000681|0|tructions. packages hang carefully silent packages. fluffily unus| +7660|143060|F|54940.66|1992-03-30|5-LOW|Clerk#000000232|0|g ideas wake carefully. blithely regular theodolites haggle quick| +7661|46723|F|204825.34|1992-11-25|5-LOW|Clerk#000000671|0|ages. furiously final dependencies sho| +7662|16372|O|35134.86|1996-05-30|3-MEDIUM|Clerk#000000501|0|ts integrate according to the fluffily bold packages. fin| +7663|56998|F|261006.50|1993-07-30|5-LOW|Clerk#000000864|0|. furiously pending dolphins about the express, regular accounts wake quick| +7688|54176|O|77063.21|1996-02-16|2-HIGH|Clerk#000000905|0|ronic, special packages wake furiously regular accounts: spe| +7689|19658|O|274714.32|1996-11-04|1-URGENT|Clerk#000000887|0| blithely across the carefully bold deposits. deposits dazzle qui| +7690|85166|O|197663.46|1998-06-29|5-LOW|Clerk#000000575|0|nding requests afte| +7691|69934|O|52590.60|1996-12-16|1-URGENT|Clerk#000000734|0| across the regular courts s| +7692|123475|O|32358.63|1998-01-14|1-URGENT|Clerk#000000784|0|along the even, regular pinto beans. unusual packa| +7693|130807|O|235470.83|1995-08-22|1-URGENT|Clerk#000000366|0| sleep quickly agai| +7694|63301|O|171432.62|1998-07-10|2-HIGH|Clerk#000000838|0|furiously silent platelets. fluffy pinto | +7695|96535|O|141004.63|1998-06-06|2-HIGH|Clerk#000000847|0|nal, ironic packages are beneath the closely pending packa| +7720|39067|O|311170.89|1995-08-23|2-HIGH|Clerk#000000742|0|ray blithely furiously | +7721|25802|F|186599.54|1993-04-12|4-NOT SPECIFIED|Clerk#000000390|0| blithely according to the regular excuses. blithely even request| +7722|149080|F|226033.35|1994-11-06|4-NOT SPECIFIED|Clerk#000001000|0| requests haggle slyly except the boldly final excuses. deposits accord| +7723|134608|O|187238.45|1997-06-15|1-URGENT|Clerk#000000661|0|pecial requests. carefully unusual packages sleep blithe| +7724|48979|F|117351.56|1994-10-13|4-NOT SPECIFIED|Clerk#000000587|0| packages. pending reques| +7725|134692|F|123209.65|1993-01-16|1-URGENT|Clerk#000000435|0|ing to the blithely final asym| +7726|111283|O|304714.14|1998-05-26|1-URGENT|Clerk#000000240|0|ly final deposits. asymptotes doubt pendi| +7727|100753|O|88492.81|1995-07-06|3-MEDIUM|Clerk#000000847|0|uctions. slyly bold pinto beans cajole blithely. furiously even d| +7752|128555|F|230867.03|1992-07-25|3-MEDIUM|Clerk#000000623|0|rding to the carefully unusual ideas are furiously brave| +7753|12187|F|136734.04|1993-09-05|1-URGENT|Clerk#000000250|0|e furiously doggedly bold accounts. finally close accounts haggle| +7754|44083|F|134254.98|1994-06-05|5-LOW|Clerk#000000948|0|o the furiously even instructions haggle blithely after the quickly daring | +7755|49831|O|132437.13|1997-08-29|3-MEDIUM|Clerk#000000705|0|etect along the final, even accounts. final requests boost. ironic deposits | +7756|49723|O|39586.58|1998-01-30|4-NOT SPECIFIED|Clerk#000000621|0|e blithely after the pending, furious theodolites. fluffily regular depo| +7757|41051|F|88749.70|1993-05-19|1-URGENT|Clerk#000000961|0|tructions cajole carefully blithely idle packages. blithely reg| +7758|91096|F|11216.10|1994-09-26|3-MEDIUM|Clerk#000000649|0|accounts. pending deposits for | +7759|140038|O|163393.23|1996-08-13|4-NOT SPECIFIED|Clerk#000000183|0|s about the blithely iron| +7784|109213|O|210381.49|1997-05-19|3-MEDIUM|Clerk#000000287|0|ages are quickly along the furiously re| +7785|133840|O|92416.79|1996-01-26|4-NOT SPECIFIED|Clerk#000000343|0|ithely bold accounts boost slyly. slyly final packages c| +7786|20618|O|78913.99|1996-03-26|4-NOT SPECIFIED|Clerk#000000961|0|eodolites cajole furiously! fluffily special deposits are furiously fina| +7787|21572|F|266548.09|1992-03-31|4-NOT SPECIFIED|Clerk#000000364|0|to beans are regular requests. slyly special accou| +7788|5221|O|147223.34|1997-06-08|3-MEDIUM|Clerk#000000382|0| carefully silent requests sleep carefully across the ideas. blithely sil| +7789|125656|O|63095.93|1995-07-23|4-NOT SPECIFIED|Clerk#000000395|0| instructions. furiously final requests unwind fluffily. slyly expr| +7790|31078|F|58226.93|1992-03-11|5-LOW|Clerk#000000459|0| busy packages nag after the final dependencies. ironic ideas | +7791|146845|O|107999.37|1995-09-25|1-URGENT|Clerk#000000269|0|ily bold theodolites | +7816|53113|F|50209.17|1995-03-25|4-NOT SPECIFIED|Clerk#000000307|0| unusual theodolite| +7817|19369|F|267910.14|1994-10-09|3-MEDIUM|Clerk#000000629|0| slyly ironic theodolites. foxes are after the slyly ironic foxes. fina| +7818|13268|F|49875.54|1993-02-17|3-MEDIUM|Clerk#000000774|0|press pinto beans. furiously special sauternes boo| +7819|92776|F|200498.66|1994-02-11|5-LOW|Clerk#000000691|0|sits. even, even ideas promise blithely. carefully quick accounts boost again| +7820|10520|O|165701.61|1995-08-26|4-NOT SPECIFIED|Clerk#000000888|0| notornis. slyly regular accounts are furiously. regular, even theodolites eng| +7821|105647|O|277147.16|1996-07-03|1-URGENT|Clerk#000000519|0| regular foxes according to the foxes| +7822|56740|O|312061.66|1995-06-20|2-HIGH|Clerk#000000574|0|tions affix blithely. furiously| +7823|45703|O|183962.97|1996-05-03|2-HIGH|Clerk#000000903|0|ully unusual packages sleep blithely. furiously even deposits after the furio| +7848|121324|F|90287.91|1994-04-24|4-NOT SPECIFIED|Clerk#000000879|0|ost carefully. slyly pending ideas cajole: fluffily unu| +7849|116998|F|133677.32|1994-06-11|1-URGENT|Clerk#000000548|0|dependencies wake blithely slyly blithe accounts. even theodolites use a| +7850|14864|F|158742.51|1993-10-16|2-HIGH|Clerk#000000720|0|ic packages. furiously pendin| +7851|59944|O|204436.25|1997-12-23|2-HIGH|Clerk#000000949|0|s against the quickly special exc| +7852|68621|O|261697.32|1997-04-11|3-MEDIUM|Clerk#000000623|0|ole blithely for the ironic, express theodolites. furiously pend| +7853|111767|F|63170.86|1995-01-16|2-HIGH|Clerk#000000809|0|uickly even deposits. caref| +7854|2999|F|171417.00|1994-01-18|5-LOW|Clerk#000000483|0|refully ironic pearls. carefully special platelets cajole. slyly regular accou| +7855|139736|O|300520.10|1998-07-15|3-MEDIUM|Clerk#000000973|0|oxes. slyly pending accounts a| +7880|131029|F|152659.95|1994-07-10|4-NOT SPECIFIED|Clerk#000000483|0| pending packages. regularly special requests haggle stealthy, ironic dolph| +7881|33661|O|59585.51|1998-03-28|2-HIGH|Clerk#000000385|0|ages cajole. bold, regular dugouts along the ironic accounts cajole quickly | +7882|62581|F|1433.67|1992-06-21|4-NOT SPECIFIED|Clerk#000000978|0|kages haggle decoys. instructions detect. furiousl| +7883|146236|O|187183.56|1997-10-16|4-NOT SPECIFIED|Clerk#000000213|0|! carefully express requests about the ruthless| +7884|19814|O|158803.55|1996-03-17|5-LOW|Clerk#000000030|0| blithely-- blithely regular requests above the furiously even theodolites | +7885|148591|O|321573.65|1996-10-04|4-NOT SPECIFIED|Clerk#000000042|0|ly final attainments promise quietly instructions. blithely fina| +7886|11339|O|75899.26|1998-06-19|3-MEDIUM|Clerk#000000723|0|quickly regular packages. ironic frays are furiously. carefully p| +7887|71833|O|183038.85|1997-05-18|2-HIGH|Clerk#000000899|0|slyly around the excuses. blithely close instructio| +7912|74233|F|171840.11|1993-05-16|3-MEDIUM|Clerk#000000592|0|after the ironic accounts. careful| +7913|59353|F|202344.69|1992-05-04|3-MEDIUM|Clerk#000000725|0|oxes. carefully regular platelets about the even | +7914|35152|O|43915.98|1998-07-01|5-LOW|Clerk#000000658|0| ironic ideas. blithely silent requests cajole carefully acr| +7915|93115|O|30845.14|1997-11-11|2-HIGH|Clerk#000000312|0|beans hinder. slyly unusual ideas| +7916|17645|F|309218.00|1994-03-09|4-NOT SPECIFIED|Clerk#000000363|0|; regular foxes engage after the carefully regular requests. caref| +7917|142942|O|112708.19|1998-06-20|4-NOT SPECIFIED|Clerk#000000355|0|ctions. furiously unusual pains along the ironic dugouts integrate after t| +7918|17435|F|33882.25|1992-10-02|5-LOW|Clerk#000000229|0|slyly final requests breach furiously carefully quiet gr| +7919|79481|O|260387.61|1996-01-02|5-LOW|Clerk#000000749|0|uriously regular accounts. | +7944|84356|O|65548.81|1996-08-06|4-NOT SPECIFIED|Clerk#000000866|0|usly final requests. ironic packages| +7945|104611|F|257293.66|1993-11-13|1-URGENT|Clerk#000000114|0|. furiously unusual accounts wake furiously according to the slyly bold | +7946|15232|F|62453.50|1994-08-02|4-NOT SPECIFIED|Clerk#000000421|0|ss ideas haggle. furiously regular requests al| +7947|89788|O|41447.16|1995-10-03|2-HIGH|Clerk#000000362|0|es. final excuses sleep blith| +7948|43550|O|271605.99|1997-09-23|1-URGENT|Clerk#000000506|0|equests sleep against the blithely regular packages. blithely final accounts | +7949|88408|O|72516.57|1995-06-04|3-MEDIUM|Clerk#000000609|0|as among the carefully regular requests cajole carefully sl| +7950|121666|F|269605.42|1993-09-04|3-MEDIUM|Clerk#000000945|0|the accounts. doggedly regular requests cajole a| +7951|20122|O|250919.40|1996-01-24|3-MEDIUM|Clerk#000000170|0|throughout the pending packages cajole sly| +7976|78662|F|142616.22|1994-12-23|4-NOT SPECIFIED|Clerk#000000985|0|tructions among the slyly even accounts wak| +7977|116483|O|218125.18|1996-10-28|1-URGENT|Clerk#000000524|0|ep slyly past the carefully final deposits. quickly final foxes cajol| +7978|64415|O|48477.11|1997-07-19|1-URGENT|Clerk#000000144|0|nal packages along the waters cajole furiously| +7979|67514|F|60938.71|1993-06-14|3-MEDIUM|Clerk#000000464|0|ructions mold slyly. blithely ironic requests use around the regular, | +7980|95125|O|168366.21|1995-08-15|1-URGENT|Clerk#000000466|0|mptotes wake quickly ruthlessly fina| +7981|49540|F|287037.44|1994-12-27|4-NOT SPECIFIED|Clerk#000000121|0|rls. furiously final foxes believe across the closely pending theodolites. | +7982|106132|O|189420.84|1998-04-23|4-NOT SPECIFIED|Clerk#000000575|0|instructions. enticing pinto beans according to the blithely express accounts | +7983|91144|O|120856.28|1997-12-26|3-MEDIUM|Clerk#000000359|0|s hinder carefully. f| +8008|40189|F|285127.66|1994-08-02|4-NOT SPECIFIED|Clerk#000000950|0| after the ironic forges. requests haggle against| +8009|136714|F|244974.56|1993-02-02|5-LOW|Clerk#000000288|0|kly blithely final requests. pinto beans c| +8010|21868|O|171561.66|1995-07-12|5-LOW|Clerk#000000676|0|fully. deposits should have to cajole blithely. unusual foxes sleep slyly. ca| +8011|28144|F|220216.37|1994-12-09|2-HIGH|Clerk#000000170|0|. ideas haggle packages. enticingly express ideas cajole carefully asympt| +8012|45199|F|358206.15|1992-12-26|2-HIGH|Clerk#000000620|0|s. slyly express deposits | +8013|49772|F|91876.89|1994-09-19|1-URGENT|Clerk#000000420|0|nts. pending accounts cajole carefully. ironic packages acr| +8014|111367|F|152813.30|1993-04-28|5-LOW|Clerk#000000485|0| final packages haggle f| +8015|32284|F|220829.03|1994-10-10|1-URGENT|Clerk#000000036|0|. fluffily bold dependencies wake. quickly regu| +8040|32960|O|301356.22|1997-05-30|4-NOT SPECIFIED|Clerk#000000916|0|tegrate furiously stealthy packages; blithely r| +8041|1735|F|131663.98|1994-05-24|3-MEDIUM|Clerk#000000253|0|uests. blithely special pinto beans about the furiously regular packa| +8042|58891|F|247946.43|1994-05-23|3-MEDIUM|Clerk#000000415|0| accounts hang. foxes according to the slyly express| +8043|74462|O|14817.14|1995-08-13|4-NOT SPECIFIED|Clerk#000000405|0| fluffily silent dependencies. | +8044|20089|F|163303.74|1992-10-30|5-LOW|Clerk#000000825|0|deposits affix agai| +8045|135313|O|223940.59|1998-02-20|5-LOW|Clerk#000000763|0|old requests sleep quickly. ironic ideas do detect after | +8046|52927|O|198791.12|1996-12-07|1-URGENT|Clerk#000000541|0|pending tithes. pinto beans after t| +8047|12680|O|221542.12|1998-05-19|1-URGENT|Clerk#000000440|0|final deposits sleep caref| +8072|98645|F|289126.32|1993-03-30|4-NOT SPECIFIED|Clerk#000000764|0|ully regular pinto beans sleep. furiously even accounts ha| +8073|116560|O|38361.40|1996-11-23|1-URGENT|Clerk#000000039|0|thely regular depos| +8074|20446|F|119995.63|1992-12-15|3-MEDIUM|Clerk#000000490|0|de of the unusual deposits use carefully except the pending i| +8075|114833|O|153186.65|1997-07-27|4-NOT SPECIFIED|Clerk#000000795|0|ely regular accounts. slyly ruthless patterns are blithely bold theodolites| +8076|86629|F|155895.76|1995-04-01|5-LOW|Clerk#000000461|0|s. carefully unusual fray| +8077|65495|O|197454.32|1997-04-08|2-HIGH|Clerk#000000555|0|, special pinto beans boost furiously. carefully ironic request| +8078|58535|F|50329.37|1994-06-25|3-MEDIUM|Clerk#000000319|0|ully about the close packages. carefully ironic deposits wake along the regula| +8079|86737|F|51882.93|1993-06-16|3-MEDIUM|Clerk#000000202|0|ns cajole furiously regular packages. slyly silent ideas detect blit| +8104|88747|O|128888.49|1995-12-15|4-NOT SPECIFIED|Clerk#000000793|0|s. carefully even instructions ca| +8105|93659|O|28578.53|1998-04-08|3-MEDIUM|Clerk#000000308|0|iously about the carefully | +8106|17170|O|224956.66|1996-06-19|3-MEDIUM|Clerk#000000608|0|lly according to the slyly express acco| +8107|115969|O|51546.44|1997-04-10|3-MEDIUM|Clerk#000000795|0|eposits across the regular accounts lose furiously along the express, | +8108|134482|O|9938.75|1997-05-22|2-HIGH|Clerk#000000616|0| instructions. slyl| +8109|18511|F|216479.00|1994-03-07|2-HIGH|Clerk#000000291|0|osits against the bold| +8110|2078|F|180636.10|1993-07-14|2-HIGH|Clerk#000000431|0|ial requests haggle furiousl| +8111|123971|O|249235.07|1997-12-11|5-LOW|Clerk#000000431|0|theodolites. carefully bold dolph| +8136|75385|F|105627.86|1994-12-29|2-HIGH|Clerk#000000892|0| the carefully sly dependencies are carefully pending requests. bold| +8137|89318|O|205934.12|1996-08-26|1-URGENT|Clerk#000000424|0|lar accounts nod evenly always ironic packages. furio| +8138|115049|F|166290.56|1994-11-11|3-MEDIUM|Clerk#000000578|0| the instructions. fluffily special requests across the pen| +8139|113905|F|258557.29|1992-05-04|4-NOT SPECIFIED|Clerk#000000499|0|en dependencies at th| +8140|86860|O|110046.85|1996-05-13|2-HIGH|Clerk#000000677|0|usly. excuses wake furiously against the slyl| +8141|23806|O|179910.69|1998-03-24|1-URGENT|Clerk#000000528|0|e furiously bold foxes; carefully blithe instructions are b| +8142|25405|O|64653.06|1995-08-12|5-LOW|Clerk#000000182|0|mes pending ideas haggl| +8143|71119|O|168037.53|1996-02-15|4-NOT SPECIFIED|Clerk#000000050|0|tegrate between the pendi| +8168|79309|F|50118.05|1992-11-17|2-HIGH|Clerk#000000579|0|luffily special ideas. packages hang blithely according to | +8169|14881|O|204111.64|1997-03-12|3-MEDIUM|Clerk#000000012|0|s. ironic accounts around the unusual deposits wake after t| +8170|28000|O|305200.27|1997-09-11|2-HIGH|Clerk#000000209|0|cial, bold dependencie| +8171|20750|O|173610.07|1995-07-13|5-LOW|Clerk#000000982|0|. even accounts haggle quickly ca| +8172|132953|F|90679.17|1992-12-23|1-URGENT|Clerk#000001000|0| hinder carefully furiously fi| +8173|134680|O|22570.35|1998-01-14|5-LOW|Clerk#000000762|0|sly about the thin, ironic requ| +8174|50809|O|19781.48|1996-09-04|4-NOT SPECIFIED|Clerk#000000271|0|ously along the special, express requests. carefully| +8175|137900|P|155914.47|1995-05-30|1-URGENT|Clerk#000000947|0|oxes wake furiously among the slyly silent accounts? fluffily fin| +8200|23527|F|88919.03|1993-02-07|1-URGENT|Clerk#000000472|0|ding to the quickly silent deposits. | +8201|148850|F|63524.83|1995-04-03|4-NOT SPECIFIED|Clerk#000000280|0|nt foxes are. fluffily ironic packages are| +8202|17959|F|84670.57|1994-08-09|3-MEDIUM|Clerk#000000049|0|egrate sometimes across the fluffily bold accounts. carefu| +8203|35173|F|261664.86|1993-05-14|5-LOW|Clerk#000000110|0| regularly. ironic, express | +8204|140621|O|243555.95|1995-12-14|4-NOT SPECIFIED|Clerk#000000206|0|longside of the quickly si| +8205|1937|F|82728.03|1993-03-28|1-URGENT|Clerk#000000689|0|ously even deposits. carefully| +8206|142678|F|251076.99|1992-11-28|3-MEDIUM|Clerk#000000740|0| regularly unusual excuses.| +8207|77662|O|115603.91|1998-07-07|2-HIGH|Clerk#000000965|0|its against the carefully pending accounts wake furiously | +8232|83719|O|77382.70|1996-04-04|3-MEDIUM|Clerk#000000989|0|thely bold dependencies. acc| +8233|49199|F|348084.96|1993-05-31|1-URGENT|Clerk#000000740|0|he furiously final deposits. regular foxes nag fluffily blithely re| +8234|77308|F|258334.34|1993-11-25|5-LOW|Clerk#000000615|0|oxes. ironic theodolites haggle after the blithely final deposits? iro| +8235|132448|F|89417.40|1992-05-11|2-HIGH|Clerk#000000898|0|yly final foxes. furio| +8236|24835|F|155993.26|1992-02-21|4-NOT SPECIFIED|Clerk#000000947|0|ironic deposits! blithely special ideas e| +8237|80782|F|262734.57|1992-05-02|3-MEDIUM|Clerk#000000290|0|ole. carefully even requests wake slyly. r| +8238|28478|F|48921.30|1992-10-21|3-MEDIUM|Clerk#000000301|0| furiously furiously final accounts. idly sil| +8239|121447|P|219978.38|1995-04-07|5-LOW|Clerk#000000242|0|ests. instructions haggle carefully among the blithely eve| +8264|101872|F|316668.17|1993-05-06|3-MEDIUM|Clerk#000000290|0|to beans. regular in| +8265|47785|F|16500.21|1993-08-26|5-LOW|Clerk#000000856|0|ly-- carefully special requests wake af| +8266|17329|F|120309.29|1992-05-04|1-URGENT|Clerk#000000998|0|nst the blithely silent platelets. pending, ironic pa| +8267|85915|F|236827.60|1993-11-23|2-HIGH|Clerk#000000151|0|e of the quickly unus| +8268|58909|F|256336.01|1994-11-06|1-URGENT|Clerk#000000136|0|ly regular requests. regular acc| +8269|59605|O|259357.40|1996-10-31|5-LOW|Clerk#000000680|0|al braids. quickly final packages use furiously. i| +8270|52094|P|131906.40|1995-04-06|5-LOW|Clerk#000000013|0|ges haggle. blithely busy requests wake among the regular foxes. furious| +8271|131821|O|97164.51|1996-09-10|3-MEDIUM|Clerk#000000404|0| even pinto beans use quic| +8296|132508|O|164958.47|1996-04-23|4-NOT SPECIFIED|Clerk#000000662|0|y against the unusual foxes. furiously spec| +8297|137824|F|13995.41|1994-05-02|5-LOW|Clerk#000000365|0|usly whithout the i| +8298|98161|O|89228.20|1997-02-25|1-URGENT|Clerk#000000762|0|osits. ironic, ironic attain| +8299|66586|F|227672.06|1994-05-09|5-LOW|Clerk#000000200|0|requests. ideas are carefully furiously bold| +8300|88108|F|142576.45|1992-07-07|4-NOT SPECIFIED|Clerk#000000643|0|hes dazzle asymptotes. final, unusual requests ag| +8301|10435|F|182760.37|1994-02-17|4-NOT SPECIFIED|Clerk#000000736|0|counts. accounts after the deposits are ironic, final p| +8302|20254|O|182768.35|1997-08-21|4-NOT SPECIFIED|Clerk#000000551|0|kages. carefully special asymptotes impress quickly blithe| +8303|38435|O|234735.04|1997-03-27|3-MEDIUM|Clerk#000000920|0|ly ironic foxes. requests boost slyly. blithely regular requests along the un| +8328|64927|O|216381.31|1995-12-31|1-URGENT|Clerk#000000848|0|al theodolites cajole. theodolites haggle daringly fluffily even decoys. q| +8329|112675|F|117214.91|1994-01-06|2-HIGH|Clerk#000000505|0|es nag even, bold asympt| +8330|121735|F|140818.21|1992-09-08|5-LOW|Clerk#000000259|0|cording to the unusual theodolites haggle slyly along the express acc| +8331|138139|F|171957.22|1992-03-25|1-URGENT|Clerk#000000596|0|e careful requests wake carefully against the| +8332|149164|F|235871.45|1992-05-17|5-LOW|Clerk#000000899|0|ecial orbits. slyly pending theodo| +8333|37054|O|121412.31|1996-09-24|3-MEDIUM|Clerk#000000668|0|ns boost slyly. ironic, pending p| +8334|106349|O|181492.67|1998-01-10|2-HIGH|Clerk#000000344|0| the blithely quick req| +8335|142624|O|160523.12|1997-12-23|2-HIGH|Clerk#000000126|0| requests sleep furiously speci| +8360|48739|O|253264.50|1995-05-26|2-HIGH|Clerk#000000795|0|o the quickly silent requests. carefully ironic packages integrate | +8361|149222|O|48994.04|1995-10-04|2-HIGH|Clerk#000000320|0|haggle across the permanently pending dependencies. furio| +8362|109001|O|112722.94|1996-01-14|1-URGENT|Clerk#000000461|0| final frets alongsid| +8363|19837|F|97920.36|1992-12-03|2-HIGH|Clerk#000000044|0|unusual packages nag. regular d| +8364|73079|F|103202.48|1993-05-03|2-HIGH|Clerk#000000179|0|ts about the pending ideas sleep furiously pe| +8365|35311|F|12297.48|1992-07-29|5-LOW|Clerk#000000969|0| around the fluffily even foxes are slyly| +8366|46477|O|125907.23|1996-03-30|4-NOT SPECIFIED|Clerk#000000228|0|al excuses wake even instructions. blithely regular dinos| +8367|76652|O|119402.16|1997-08-07|5-LOW|Clerk#000000709|0|y even excuses hinder quickly according to the carefull| +8392|81919|F|1243.92|1992-04-18|2-HIGH|Clerk#000000712|0|telets wake carefully pending packages. slyly regu| +8393|83686|O|215526.15|1997-08-15|1-URGENT|Clerk#000000954|0|out the express, even packages. furiousl| +8394|106831|F|218076.60|1993-11-03|1-URGENT|Clerk#000000561|0|t the regular accounts. express, final platelets according to the sly| +8395|138859|F|276463.57|1992-02-21|5-LOW|Clerk#000000637|0|the thin accounts. slyly silent gifts boost blithely ag| +8396|70279|O|55746.98|1996-10-07|2-HIGH|Clerk#000000321|0|posits nag furiously fluff| +8397|51895|F|248865.67|1993-08-21|3-MEDIUM|Clerk#000000736|0|egular excuses. furiously regul| +8398|81313|O|34179.73|1997-01-03|3-MEDIUM|Clerk#000000611|0|ckly. final, regular ideas wake carefully across the| +8399|124022|O|11569.02|1995-07-05|5-LOW|Clerk#000000731|0|cording to the regular courts. regular dinos sle| +8424|22487|P|287494.66|1995-04-16|1-URGENT|Clerk#000000650|0|nst the blithely pending packages!| +8425|75163|F|275281.64|1993-06-10|2-HIGH|Clerk#000000530|0|final pinto beans. slyly final dol| +8426|104966|O|169473.44|1995-05-30|5-LOW|Clerk#000000230|0|ar, thin courts. blithely pendi| +8427|9436|O|165124.74|1996-09-12|1-URGENT|Clerk#000000347|0|tes are through the furiously pending deposits. reg| +8428|34420|F|63722.15|1995-01-09|3-MEDIUM|Clerk#000000146|0|luffily ironic sentiments. slyly speci| +8429|76411|O|82915.81|1996-05-01|1-URGENT|Clerk#000000383|0|e special excuses haggle slowly among the final deposits. blithely sil| +8430|86473|O|212188.97|1998-07-28|4-NOT SPECIFIED|Clerk#000000154|0|w, ironic pinto beans haggle quickly up the express, speci| +8431|149648|O|218964.97|1997-10-04|2-HIGH|Clerk#000000201|0|uriously even accounts around the somas sle| +8456|82492|F|119248.52|1992-05-27|4-NOT SPECIFIED|Clerk#000000153|0|ckly above the foxes. enticingly even sentimen| +8457|129655|O|241426.31|1998-07-11|5-LOW|Clerk#000000252|0|e carefully bold platelets integrate furiously furiously special packages. reg| +8458|34835|F|156818.47|1994-03-27|1-URGENT|Clerk#000000380|0|pendencies integrate. slyly regular | +8459|12701|O|78204.89|1997-01-22|4-NOT SPECIFIED|Clerk#000000757|0|special theodolites. final courts haggle blithely quickly final packages| +8460|4475|F|225235.02|1994-09-11|3-MEDIUM|Clerk#000000720|0|ut the foxes. carefully pending packages cajole carefully quickly | +8461|61021|F|336435.61|1993-04-13|1-URGENT|Clerk#000000821|0|the blithely regular f| +8462|19783|O|39284.52|1995-09-10|2-HIGH|Clerk#000000147|0|ording to the final, | +8463|68272|O|173701.34|1997-02-04|1-URGENT|Clerk#000000046|0|uld dazzle dependencies. slyly ironic asymptotes sleep. blithely ironic| +8488|68738|O|180569.51|1997-11-18|2-HIGH|Clerk#000000008|0|ages are carefully carefully special somas. furiously ironic| +8489|126277|F|54001.58|1994-07-14|5-LOW|Clerk#000000568|0|telets sleep carefully ab| +8490|120238|O|48102.93|1997-02-05|4-NOT SPECIFIED|Clerk#000000331|0| packages cajole. special pinto beans detect | +8491|28409|F|173915.25|1994-11-08|2-HIGH|Clerk#000000987|0|o beans detect above the pending packages. accounts do| +8492|7415|O|174587.82|1995-09-05|5-LOW|Clerk#000000629|0|nal accounts along the quickly pending excuses are blithely according to| +8493|116989|F|110905.79|1992-02-17|1-URGENT|Clerk#000000121|0|ing to the carefully regular deposit| +8494|19225|O|197935.22|1997-03-20|4-NOT SPECIFIED|Clerk#000000223|0|s are blithely express, regula| +8495|142975|P|388942.26|1995-04-16|5-LOW|Clerk#000000904|0|xes. blithely final ideas use thinly. slowly final deposits over the| +8520|122521|F|333095.72|1994-08-17|1-URGENT|Clerk#000000926|0|sly express excuses detect blithely along the furiously express| +8521|10259|F|74894.84|1994-05-25|4-NOT SPECIFIED|Clerk#000000500|0|y final packages are furi| +8522|67393|O|272510.03|1998-04-07|3-MEDIUM|Clerk#000000895|0|ke fluffily ironic | +8523|11081|F|205247.59|1993-07-07|1-URGENT|Clerk#000000213|0|s. fluffily express theodolites use. carefully even theodolites nag f| +8524|84823|O|235631.04|1996-07-30|4-NOT SPECIFIED|Clerk#000000647|0|affix slyly at the special foxes.| +8525|141973|F|206366.90|1993-12-02|3-MEDIUM|Clerk#000000533|0|g to the furiously daring pac| +8526|87661|O|76537.95|1997-06-10|4-NOT SPECIFIED|Clerk#000000692|0|quests. final packages agains| +8527|136339|F|23537.90|1994-10-30|1-URGENT|Clerk#000000545|0|ey players. blithely express ideas wake a| +8552|37180|F|196196.35|1994-12-28|4-NOT SPECIFIED|Clerk#000000224|0|slyly regular theodolites nag around the furiously regula| +8553|107236|O|184456.41|1995-08-17|4-NOT SPECIFIED|Clerk#000000219|0| requests-- furiously ironic packages sleep quickly among the slyly ex| +8554|51859|O|214974.91|1997-05-11|5-LOW|Clerk#000000031|0|decoys. accounts according to the furiously quiet foxes grow somas. stealthi| +8555|74614|F|235355.76|1993-08-07|4-NOT SPECIFIED|Clerk#000000437|0|pecial instructions integrate about | +8556|14686|F|46342.53|1992-10-18|4-NOT SPECIFIED|Clerk#000000526|0|ins. even deposits wake furiou| +8557|47911|O|285572.98|1996-12-29|5-LOW|Clerk#000000021|0|uickly along the furiously pending deposits. reque| +8558|16936|F|65446.05|1994-05-17|4-NOT SPECIFIED|Clerk#000000601|0|ep slyly. blithely special somas mo| +8559|88723|F|165007.59|1994-12-05|3-MEDIUM|Clerk#000000691|0| use furiously along the quickly special asymptotes! permanently regula| +8584|143312|F|283621.21|1994-04-04|1-URGENT|Clerk#000000822|0|uickly regular foxes. blithely bold foxes cajole bl| +8585|85771|O|95506.12|1995-12-12|5-LOW|Clerk#000000056|0|arly about the ideas. slyly even epitaphs above the carefully unusua| +8586|33560|F|192687.16|1994-12-09|4-NOT SPECIFIED|Clerk#000000764|0| the carefully final foxes. regular, ironic| +8587|29093|O|122348.23|1997-06-27|2-HIGH|Clerk#000000163|0| carefully ironic exc| +8588|106355|O|208405.01|1995-09-21|5-LOW|Clerk#000000293|0| silent, even platelets boost carefully packages. bold pinto beans | +8589|101446|O|253156.73|1996-02-07|4-NOT SPECIFIED|Clerk#000000595|0|cial instructions. | +8590|72491|F|54806.37|1995-01-24|3-MEDIUM|Clerk#000000503|0|efully carefully thin requests. furiously quick accounts wake quickly. b| +8591|51205|O|146551.59|1997-02-16|5-LOW|Clerk#000000547|0| carefully. carefully bold accounts use after the regular deposits. blith| +8616|32693|O|189724.53|1995-09-13|2-HIGH|Clerk#000000919|0|re quickly after the final requests. even pearl| +8617|8527|O|287111.58|1995-12-03|4-NOT SPECIFIED|Clerk#000000178|0|wake. asymptotes cajole between the ideas. blithely regular accounts a| +8618|52034|O|237370.14|1997-04-08|5-LOW|Clerk#000000774|0|fluffily regular de| +8619|19528|F|213297.94|1994-12-02|4-NOT SPECIFIED|Clerk#000000520|0|into beans engage blithely regular ideas. deposits use always through| +8620|4876|O|217611.09|1996-05-22|2-HIGH|Clerk#000000033|0|le against the carefully | +8621|37492|O|234285.73|1996-12-29|4-NOT SPECIFIED|Clerk#000000401|0|structions from the slyly regul| +8622|116024|O|340182.35|1995-06-25|2-HIGH|Clerk#000000823|0|, final ideas. slyly unusual de| +8623|7498|O|56820.21|1997-05-29|1-URGENT|Clerk#000000562|0|furiously even deposits. realms wake slyly bold | +8648|7747|F|74306.40|1994-05-21|1-URGENT|Clerk#000000667|0|bold accounts? furiously silent requ| +8649|138061|F|80610.74|1992-07-17|4-NOT SPECIFIED|Clerk#000000764|0|ans. slyly unusual instructions cajole special, final realms. s| +8650|29917|F|71145.88|1995-04-23|3-MEDIUM|Clerk#000000653|0|c deposits sleep quickly ironic, regular theodolit| +8651|11872|F|165909.12|1993-06-05|5-LOW|Clerk#000000961|0|al gifts. fluffily ir| +8652|24137|O|126791.41|1995-11-28|2-HIGH|Clerk#000000513|0| requests integrate carefully bol| +8653|54190|F|127328.09|1992-01-26|4-NOT SPECIFIED|Clerk#000000902|0|. even theodolites haggle car| +8654|112303|O|33863.90|1998-04-14|4-NOT SPECIFIED|Clerk#000000069|0|the carefully ironic ideas| +8655|147250|F|40873.48|1995-03-28|2-HIGH|Clerk#000000648|0|old ideas integrate. | +8680|116200|F|194201.20|1992-07-27|5-LOW|Clerk#000000202|0|lyly regular accounts above the blithely fina| +8681|114043|F|83789.72|1993-02-10|3-MEDIUM|Clerk#000000707|0|riously unusual requests agai| +8682|149938|F|194869.11|1993-08-01|1-URGENT|Clerk#000000731|0|ndencies solve above the blithely regular dependencies. caref| +8683|131591|O|331924.17|1995-12-09|1-URGENT|Clerk#000000629|0|usual theodolites. accounts above the quickly unusual deposits slee| +8684|37237|F|141685.83|1994-09-17|2-HIGH|Clerk#000000347|0|y above the quickly unusual theodolites. fluff| +8685|19486|O|112891.16|1998-01-10|5-LOW|Clerk#000000888|0|ular ideas. pinto beans are afte| +8686|40027|F|66082.76|1993-08-03|1-URGENT|Clerk#000000869|0| dependencies eat along t| +8687|110077|F|376742.13|1994-02-06|5-LOW|Clerk#000000041|0|l ideas are furiously blithely unusual| +8712|83743|F|193393.95|1992-07-03|1-URGENT|Clerk#000000700|0|s above the final, express instructions wake quickly about the closely e| +8713|146558|F|181919.73|1992-12-23|2-HIGH|Clerk#000000175|0|ckages sleep slyly regular decoys. regular, even requests boost | +8714|44155|O|50478.02|1996-10-07|5-LOW|Clerk#000000624|0|y regular requests against t| +8715|62524|O|317157.23|1997-03-27|3-MEDIUM|Clerk#000000182|0|leep. unusual, final depo| +8716|90535|F|205481.18|1993-08-01|2-HIGH|Clerk#000000097|0|nts against the carefully| +8717|9044|F|150460.17|1993-11-06|3-MEDIUM|Clerk#000000721|0|ve the packages. furiously un| +8718|41443|F|340358.69|1992-09-11|3-MEDIUM|Clerk#000000899|0|y silent asymptotes sleep slyly special foxes. care| +8719|63646|F|170787.01|1994-01-30|2-HIGH|Clerk#000000396|0|dolphins sleep slyly carefully| +8744|19447|F|161743.16|1992-01-29|3-MEDIUM|Clerk#000000832|0|ly. quickly ironic packages around the theodolites are quickly until the fre| +8745|133009|O|179243.15|1997-11-09|2-HIGH|Clerk#000000162|0|. carefully final pains haggle. c| +8746|4838|O|174340.56|1995-06-16|4-NOT SPECIFIED|Clerk#000000933|0|n requests; slyly final deposits wake according to the silent instructi| +8747|145868|F|122250.88|1993-05-18|4-NOT SPECIFIED|Clerk#000000554|0| deposits. express depths h| +8748|139039|F|263820.94|1995-01-10|3-MEDIUM|Clerk#000000538|0|ke slyly slowly even accounts. blithely| +8749|107512|O|51465.95|1998-05-24|1-URGENT|Clerk#000000694|0|ly final foxes haggle furiously inside the blithely re| +8750|42104|F|62424.42|1993-03-31|5-LOW|Clerk#000000671|0|ide of the carefully| +8751|77935|O|227014.19|1996-08-16|5-LOW|Clerk#000000807|0|cajole furiously along the pending, special | +8776|41269|O|130681.73|1997-12-20|2-HIGH|Clerk#000000979|0|y regular requests. bold,| +8777|133681|O|207103.96|1998-05-29|5-LOW|Clerk#000000046|0|ns. carefully regular accounts at the slyly regular a| +8778|49316|F|398129.82|1992-05-25|2-HIGH|Clerk#000000167|0|fully final dependencies | +8779|88493|F|47006.97|1993-05-11|2-HIGH|Clerk#000000608|0|onic accounts. slyly bold asymptotes above the special deposits lose across| +8780|42164|F|217800.42|1993-03-13|1-URGENT|Clerk#000000434|0|ests wake carefully across the f| +8781|45707|F|196264.07|1992-01-29|4-NOT SPECIFIED|Clerk#000000602|0|re blithely final theodolites. | +8782|41389|O|258197.20|1998-03-19|3-MEDIUM|Clerk#000000144|0|. even, even theodolites haggle outside th| +8783|72199|O|70727.09|1996-03-18|1-URGENT|Clerk#000000158|0|thely unusual packages | +8808|97072|O|7769.07|1997-09-17|1-URGENT|Clerk#000000894|0|ts above the furiously ironic requests are slyly even foxes? i| +8809|71116|F|247282.30|1992-07-19|4-NOT SPECIFIED|Clerk#000000979|0|ccounts toward the even packages haggle slyly dep| +8810|20591|F|136787.32|1995-01-20|4-NOT SPECIFIED|Clerk#000000962|0|ockey players. busily dogged requests haggle | +8811|15778|O|19764.01|1998-04-17|1-URGENT|Clerk#000000822|0| wake fluffily across the | +8812|124630|O|252809.39|1995-06-28|5-LOW|Clerk#000000345|0|deposits. express requests impr| +8813|44000|F|245030.86|1994-06-08|5-LOW|Clerk#000000440|0|the deposits boost ac| +8814|31|O|163975.41|1995-10-14|1-URGENT|Clerk#000000793|0|ckly brave accounts| +8815|65281|O|255398.15|1996-07-31|4-NOT SPECIFIED|Clerk#000000572|0|lithely carefully ironic deposits| +8840|53281|F|97979.85|1992-10-04|4-NOT SPECIFIED|Clerk#000000859|0| quickly final deposits wake slyly. furiously pending accounts a| +8841|123248|O|207603.20|1996-02-01|4-NOT SPECIFIED|Clerk#000000302|0|ackages; slyly bold dolphins | +8842|70171|O|17489.73|1998-02-19|1-URGENT|Clerk#000000926|0|ic sheaves. special depen| +8843|58868|F|239501.26|1992-01-28|3-MEDIUM|Clerk#000000198|0|ainst the busy, bold requests use slyly among the bold, special gifts| +8844|131974|O|107773.58|1996-07-22|1-URGENT|Clerk#000000944|0|cording to the even d| +8845|15784|F|141659.37|1993-12-23|3-MEDIUM|Clerk#000000498|0| affix fluffily even, pendin| +8846|56209|F|268875.09|1995-02-02|4-NOT SPECIFIED|Clerk#000000877|0|fully according to the | +8847|128135|F|282725.42|1993-07-13|3-MEDIUM|Clerk#000000289|0|quests above the ironic excuses haggle carefully blithely fin| +8872|2107|F|237311.22|1993-06-25|3-MEDIUM|Clerk#000000539|0| requests haggle slyly. furiously permanent packages aroun| +8873|4930|O|87601.72|1996-03-24|1-URGENT|Clerk#000000980|0|ges integrate pinto beans. slyly express theodolites about the fina| +8874|52579|F|79423.67|1992-11-04|2-HIGH|Clerk#000000445|0|its. accounts nod after the instructions. furiously | +8875|44327|F|122776.63|1992-06-01|2-HIGH|Clerk#000000183|0|cuses wake. unusual, silent foxes thrash ca| +8876|89728|F|145361.10|1993-12-30|4-NOT SPECIFIED|Clerk#000000202|0|ourts wake blithely pending instruct| +8877|105244|O|231389.84|1995-05-15|4-NOT SPECIFIED|Clerk#000000432|0|s cajole quickly ironic req| +8878|28060|O|50750.98|1997-07-10|5-LOW|Clerk#000000251|0|silent instructions. | +8879|137185|F|139015.28|1992-10-12|5-LOW|Clerk#000000105|0|y ruthless instructions will boost flu| +8904|140113|O|220834.70|1995-09-26|5-LOW|Clerk#000000140|0|nag furiously regularly regular platelets. pending t| +8905|14689|O|31909.47|1995-07-13|4-NOT SPECIFIED|Clerk#000000461|0| unusual deposits cajole fluffily final dolphins| +8906|119392|O|11534.40|1997-07-27|1-URGENT|Clerk#000000122|0|uriously even grouches haggle permane| +8907|67324|O|269405.66|1996-09-15|1-URGENT|Clerk#000000105|0|, even courts are above the packages. carefully even i| +8908|59932|P|54421.64|1995-05-14|2-HIGH|Clerk#000000881|0| dependencies. carefully ironic pains hagg| +8909|24292|O|72720.86|1997-01-27|2-HIGH|Clerk#000000110|0|sts are alongside of the st| +8910|115333|F|134513.93|1992-02-26|4-NOT SPECIFIED|Clerk#000000141|0| dependencies haggle. platelets in| +8911|97288|P|285427.38|1995-05-04|2-HIGH|Clerk#000000438|0|slyly regular requests. deposits engage; | +8936|111095|F|130917.09|1994-05-23|2-HIGH|Clerk#000000006|0| carefully express req| +8937|117247|O|213467.76|1997-12-14|4-NOT SPECIFIED|Clerk#000000713|0|always ironic pinto beans. final foxes wake furiou| +8938|5167|F|198835.05|1994-06-23|2-HIGH|Clerk#000000883|0|ckly unusual packages. care| +8939|140056|O|64905.74|1998-02-24|4-NOT SPECIFIED|Clerk#000000983|0|riously quickly pending asymptotes; careful accounts haggle blithely acr| +8940|117430|F|82241.15|1992-05-25|5-LOW|Clerk#000000155|0|fluffily ironic theodolites. special, final accounts are quickly. bli| +8941|72127|F|204040.66|1993-11-12|1-URGENT|Clerk#000000575|0|y unusual asymptotes sleep bl| +8942|80516|O|83185.58|1998-07-14|2-HIGH|Clerk#000000638|0|ular foxes sleep blithely. quickly unusual ideas cajole carefully.| +8943|66406|O|234779.69|1997-01-27|4-NOT SPECIFIED|Clerk#000000142|0|ounts. slyly regular sauternes use slyly; slyly bold depos| +8968|61372|F|54350.06|1994-12-17|3-MEDIUM|Clerk#000000149|0|rts. furiously special theodolites n| +8969|71593|F|131048.21|1993-05-31|2-HIGH|Clerk#000000666|0|s are along the carefully ironic requests. furiously pending i| +8970|80392|F|99209.79|1994-03-23|2-HIGH|Clerk#000000544|0|tes promise. ironic deposits boost carefully. ironic dolphins are| +8971|77408|F|150191.85|1992-12-03|1-URGENT|Clerk#000000975|0|fluffily daring notornis sleep furiously about the f| +8972|34345|F|274933.61|1993-02-26|5-LOW|Clerk#000000726|0|odolites haggle furi| +8973|11323|F|36281.62|1992-06-05|2-HIGH|Clerk#000000536|0|sts wake quickly after th| +8974|96209|O|196593.48|1996-05-16|1-URGENT|Clerk#000000461|0|ndencies are slyly. blithely pending theodolites sleep carefully against the| +8975|118486|O|203232.69|1998-04-15|3-MEDIUM|Clerk#000000265|0|s. regular accounts can use about the pin| +9000|130040|F|123806.73|1992-12-29|1-URGENT|Clerk#000000145|0|e ironic, special deposits. unusual, special dolphins affix. blithely ironi| +9001|65861|O|168241.18|1995-07-26|5-LOW|Clerk#000000352|0|lar, bold instructions nag ironic, final plate| +9002|69484|F|59976.67|1992-03-14|2-HIGH|Clerk#000000912|0|s. ironic requests sleep quickly. regular dep| +9003|66292|O|238065.63|1996-02-02|4-NOT SPECIFIED|Clerk#000000973|0|ests haggle furiously. | +9004|108580|O|81578.60|1995-04-18|2-HIGH|Clerk#000000585|0|cross the blithely unusual instructions. requests wake slyly along | +9005|135043|F|285013.61|1992-12-02|2-HIGH|Clerk#000000695|0|n requests use across the | +9006|144169|O|126931.76|1998-01-13|3-MEDIUM|Clerk#000000741|0|ically ironic accounts cajole blithely ironically s| +9007|74231|O|47351.09|1998-07-17|2-HIGH|Clerk#000000904|0|carefully ironic dugouts. fluffily pending deposits| +9032|46897|O|16667.52|1995-09-08|4-NOT SPECIFIED|Clerk#000000853|0| deposits. furiously even hockey players are carefully. fu| +9033|73033|O|109780.20|1997-04-02|4-NOT SPECIFIED|Clerk#000000809|0|ing to the fluffily express requests. furiously express theodolites a| +9034|133903|F|56565.82|1992-03-12|1-URGENT|Clerk#000000888|0|. carefully regular asymptotes are f| +9035|57163|F|136269.11|1993-12-08|4-NOT SPECIFIED|Clerk#000000125|0| epitaphs boost pla| +9036|113969|O|225212.05|1996-01-01|2-HIGH|Clerk#000000602|0|ourts. carefully final accounts across the express pinto beans a| +9037|111047|O|122117.07|1995-08-17|2-HIGH|Clerk#000000093|0|lites against the even foxes a| +9038|50918|O|148509.98|1995-07-26|3-MEDIUM|Clerk#000000051|0|e furiously slyly ironic theodolites. instructions after the pinto beans | +9039|19330|F|93673.09|1994-03-01|4-NOT SPECIFIED|Clerk#000000254|0| the pinto beans. carefully final request| +9064|102485|F|130627.21|1993-01-30|3-MEDIUM|Clerk#000000269|0|furiously permanent, si| +9065|11284|F|281166.88|1992-11-18|4-NOT SPECIFIED|Clerk#000000316|0|y across the even ideas. final accounts try to sleep fluffily sly asymptote| +9066|38705|F|61455.86|1993-03-22|2-HIGH|Clerk#000000948|0|lly. requests mold carefully after the theodolites. quick| +9067|114482|F|132039.83|1993-06-14|4-NOT SPECIFIED|Clerk#000000714|0|ccording to the furiously even packages cajole ironic instructions! qu| +9068|32416|O|37971.83|1996-10-04|2-HIGH|Clerk#000000727|0| furiously bold packages detect sl| +9069|144967|O|202023.25|1996-06-04|5-LOW|Clerk#000000065|0|ts wake carefully unusual requests. furiously regular deposits a| +9070|127910|F|186493.81|1994-04-05|1-URGENT|Clerk#000000645|0|ndencies. quickly fluffy foxes sleep furiously expre| +9071|131350|F|5157.48|1993-06-16|4-NOT SPECIFIED|Clerk#000000150|0|hely even courts breach slyly acr| +9096|31565|F|312956.41|1992-07-20|1-URGENT|Clerk#000000036|0|lithely regular deposits caj| +9097|111598|O|180322.21|1997-02-14|3-MEDIUM|Clerk#000000327|0|leep slyly final packages. blithely express orbit| +9098|3994|O|127054.40|1997-12-23|4-NOT SPECIFIED|Clerk#000000391|0|e even requests. slyly special foxes cajole among the f| +9099|55678|O|99199.62|1996-08-15|5-LOW|Clerk#000000211|0|azzle slyly unusual accounts. furiously silent ideas mold fluffily furi| +9100|57989|O|84570.75|1997-03-03|5-LOW|Clerk#000000360|0| lose regularly permanently bold theodolites. blithe| +9101|54344|F|317149.40|1992-01-06|2-HIGH|Clerk#000000257|0|foxes use slowly after | +9102|146470|F|133233.91|1992-07-22|1-URGENT|Clerk#000000352|0|r braids detect blithely between the regularly ironic packages. | +9103|60941|F|235828.27|1992-02-13|3-MEDIUM|Clerk#000000177|0|. furiously express accounts should cajole. regular instructions abo| +9128|35182|F|16863.19|1993-07-19|1-URGENT|Clerk#000000671|0|are. ironic pinto beans could have to hag| +9129|135679|O|184495.30|1997-05-20|5-LOW|Clerk#000000963|0| quickly special requests cajole sometimes across the packages. fina| +9130|52225|O|150356.71|1995-11-22|3-MEDIUM|Clerk#000000210|0|ges haggle furiously. i| +9131|85084|F|319499.08|1994-05-21|3-MEDIUM|Clerk#000000417|0| theodolites. furiously pending excuses ha| +9132|24397|O|232944.75|1996-10-22|3-MEDIUM|Clerk#000000906|0|ymptotes wake blithely special ideas.| +9133|61357|F|11116.34|1994-08-09|3-MEDIUM|Clerk#000000576|0|lyly enticing pinto beans| +9134|120134|O|220927.34|1997-01-18|2-HIGH|Clerk#000000422|0|ages. slyly silent deposits impress caref| +9135|80450|F|176081.17|1992-12-21|2-HIGH|Clerk#000000518|0|r the packages. slyly express ideas mold? expres| +9160|18428|O|91022.59|1996-07-14|3-MEDIUM|Clerk#000000926|0|ironically slyly pending| +9161|111998|F|293470.05|1993-11-28|3-MEDIUM|Clerk#000000555|0|cajole slyly deposits. even, daring accounts run silently. blithely ironic | +9162|139730|O|125501.95|1996-06-30|3-MEDIUM|Clerk#000000495|0| foxes. carefully ironic instructions wak| +9163|36083|F|265240.95|1993-08-17|5-LOW|Clerk#000000913|0|al Tiresias serve carefully theodolites. bl| +9164|146137|F|85872.24|1994-10-12|2-HIGH|Clerk#000000474|0|nt, regular pinto beans. final, ironic e| +9165|12176|P|102543.67|1995-04-02|4-NOT SPECIFIED|Clerk#000000228|0|ithely enticing dependenci| +9166|28025|O|298370.54|1996-01-29|2-HIGH|Clerk#000000336|0|the carefully ironic accounts haggle furiously to the accounts: pinto | +9167|7351|O|237640.03|1996-09-26|4-NOT SPECIFIED|Clerk#000000427|0|ithely final dependencies. qu| +9192|67118|F|196380.56|1993-05-06|5-LOW|Clerk#000000550|0| carefully. idly special | +9193|44282|O|72977.61|1997-06-21|5-LOW|Clerk#000000371|0|. slyly pending accounts about the slyly regular pinto beans haggle above th| +9194|92407|O|139323.99|1997-10-25|5-LOW|Clerk#000000499|0|ns. unusual deposits according to the permanently s| +9195|107815|F|289937.96|1995-02-14|3-MEDIUM|Clerk#000000512|0|r accounts sleep carefu| +9196|25955|F|66750.41|1992-04-25|2-HIGH|Clerk#000000963|0|uriously final ideas wake blithely across the blithely final accou| +9197|18049|F|240996.73|1994-03-02|3-MEDIUM|Clerk#000000383|0|gly ironic requests. quickly pending deposits across the asymp| +9198|45338|O|283104.49|1997-07-02|1-URGENT|Clerk#000000554|0|ckly even frets hang along the | +9199|144646|F|191732.42|1994-11-19|5-LOW|Clerk#000000294|0|y quick ideas. slyly ev| +9224|134840|O|41698.98|1997-07-21|3-MEDIUM|Clerk#000000528|0|n accounts along the ironic, final foxes nag furiously according to the unu| +9225|52957|F|215420.22|1992-01-07|1-URGENT|Clerk#000000087|0|nic packages haggle thinly bold | +9226|74557|O|142866.68|1995-12-01|5-LOW|Clerk#000000984|0|uickly even somas. fluffily even a| +9227|102718|F|117907.51|1994-10-22|5-LOW|Clerk#000000415|0|ar deposits. blithely silent requests wake furio| +9228|14833|O|125913.59|1997-07-14|5-LOW|Clerk#000000360|0|ing to the unusual grouches sleep instructions. | +9229|146606|F|291176.30|1992-02-02|1-URGENT|Clerk#000000699|0|ly even excuses. slyly regular excuses wake slyly. furiously final platelets| +9230|99868|O|77724.75|1995-06-04|3-MEDIUM|Clerk#000000564|0|carefully unusual ideas aff| +9231|104200|O|90207.97|1996-11-02|5-LOW|Clerk#000000615|0|cajole carefully across the busily iron| +9256|23926|F|28252.75|1993-12-27|3-MEDIUM|Clerk#000000199|0|. quickly final packages sleep quickly fin| +9257|110420|F|171123.05|1994-09-30|2-HIGH|Clerk#000000142|0|ular requests use slyly. express foxes sleep carefully.| +9258|22831|F|52742.82|1994-03-27|2-HIGH|Clerk#000000437|0|ons are. blithely pending theodolites nag above the expr| +9259|139648|O|133706.55|1995-10-06|2-HIGH|Clerk#000000183|0|ding theodolites are accounts. bold requests are blithely abo| +9260|132710|F|259092.63|1994-11-05|3-MEDIUM|Clerk#000000021|0|ing to the final dolphins sleep slyly express req| +9261|101539|F|239108.91|1994-08-09|2-HIGH|Clerk#000000305|0|anent requests along the carefully final warthogs haggle at the furiously re| +9262|15016|F|59377.66|1994-01-11|3-MEDIUM|Clerk#000000322|0|he ironic, unusual pinto beans. blithely pend| +9263|40528|F|139490.32|1993-12-29|1-URGENT|Clerk#000000235|0|s haggle never. fluffily regular notornis are furiously | +9288|125962|F|151596.04|1994-08-28|1-URGENT|Clerk#000000570|0|ges above the ironic asymptotes haggle carefull| +9289|90008|O|289631.86|1996-01-17|4-NOT SPECIFIED|Clerk#000000840|0|the quickly even deposits nag blithely special deposits.| +9290|11845|O|67543.74|1996-02-29|5-LOW|Clerk#000000745|0|unusual ideas above the even theodo| +9291|17941|O|24296.37|1997-11-18|4-NOT SPECIFIED|Clerk#000000570|0|ve accounts. requests sleep. i| +9292|25711|O|280378.48|1998-02-14|1-URGENT|Clerk#000000359|0| the accounts boost carefully along the furiously pending deposits. ruthle| +9293|118093|O|133376.35|1997-01-25|3-MEDIUM|Clerk#000000990|0|e blithely brave packages! even ideas wake slyly. e| +9294|137452|O|14049.77|1998-02-28|3-MEDIUM|Clerk#000000820|0|ven packages hinder carefully around the | +9295|3676|O|365881.89|1996-01-11|3-MEDIUM|Clerk#000000741|0|uctions haggle quickly | +9320|131603|O|140265.45|1997-05-09|1-URGENT|Clerk#000000623|0|e blithely final instructions. pending pinto beans serve| +9321|90428|O|96583.36|1996-11-14|2-HIGH|Clerk#000000888|0|ronic theodolites. blithely ironic platelets m| +9322|12734|F|247965.06|1992-06-18|2-HIGH|Clerk#000000048|0|nts. blithely regular the| +9323|105424|O|268602.70|1998-05-28|4-NOT SPECIFIED|Clerk#000000369|0|lar accounts across| +9324|41194|O|116067.39|1996-05-29|4-NOT SPECIFIED|Clerk#000000114|0|tes. final dependenc| +9325|76505|F|38197.92|1992-08-01|5-LOW|Clerk#000000477|0|s. deposits above the blithely final instructions hin| +9326|13486|F|119534.67|1993-07-24|3-MEDIUM|Clerk#000000317|0|ffily according to the busily regular packages. carefully regular requests| +9327|137653|O|102547.87|1998-02-25|2-HIGH|Clerk#000000747|0|e furiously regular excuses. blithely pending foxe| +9352|53794|F|146022.83|1994-10-21|5-LOW|Clerk#000000611|0|telets promise. final deposits sleep slyly. pending, regular ideas are slyl| +9353|39506|O|360433.36|1995-06-11|4-NOT SPECIFIED|Clerk#000000179|0| bold requests use blithely instructions. furiously| +9354|76621|O|76050.35|1997-06-12|5-LOW|Clerk#000000569|0|lar deposits detect. regular sauternes| +9355|144955|O|161759.07|1995-06-28|3-MEDIUM|Clerk#000000327|0|n the slyly even packages boost blithely e| +9356|85234|O|150134.09|1996-08-23|4-NOT SPECIFIED|Clerk#000000655|0| bravely final pinto beans. quickly regular depe| +9357|15697|F|134549.10|1994-10-08|3-MEDIUM|Clerk#000000039|0|tions nag carefully along the never unusu| +9358|109699|F|187085.47|1994-02-09|2-HIGH|Clerk#000000853|0|s play blithely abo| +9359|49864|O|332815.98|1995-07-28|5-LOW|Clerk#000000850|0|s against the closely regular| +9384|10652|O|45435.95|1997-06-28|1-URGENT|Clerk#000001000|0| packages sleep slyly silent requests. regular packages haggle acc| +9385|71365|O|15377.25|1995-06-27|5-LOW|Clerk#000000307|0|carefully along the doggedly special theodolites. furi| +9386|21286|O|296239.99|1996-09-20|2-HIGH|Clerk#000000640|0|es. fluffily quiet instructions are slyly. slyly special pinto be| +9387|1766|O|204534.43|1998-01-01|3-MEDIUM|Clerk#000000521|0|sits. carefully regular deposits use about the regular deposits. pending pa| +9388|116185|F|216699.86|1993-02-21|1-URGENT|Clerk#000000735|0|gular foxes print carefully furious| +9389|7|O|198728.27|1997-07-04|4-NOT SPECIFIED|Clerk#000000603|0|t excuses. packages| +9390|85886|O|80006.50|1998-05-30|4-NOT SPECIFIED|Clerk#000000486|0|y at the final, final courts. deposits sleep slyly alongside| +9391|25957|O|288343.19|1995-06-22|1-URGENT|Clerk#000000205|0|eans around the blithely special requests are fu| +9416|49465|F|244049.76|1992-10-11|4-NOT SPECIFIED|Clerk#000000760|0|ular notornis are fluffily according to the quickly iron| +9417|57751|O|175960.39|1997-03-09|1-URGENT|Clerk#000000252|0|sleep after the carefully ironic decoys. epitaphs| +9418|107749|O|22771.15|1996-03-05|5-LOW|Clerk#000000238|0|y dolphins. ironic, even exc| +9419|125267|F|39455.07|1993-06-14|2-HIGH|Clerk#000000014|0|unusual instructions wake car| +9420|110563|F|257404.42|1994-04-17|4-NOT SPECIFIED|Clerk#000000357|0|ag fluffily even deposits. sly| +9421|9574|F|1259.23|1993-12-12|1-URGENT|Clerk#000000792|0|dencies. furiously busy deposits must haggle. slyly special pinto beans boost | +9422|96865|F|74350.02|1992-09-30|1-URGENT|Clerk#000000303|0|regular deposits use against the thinly final dolphins. d| +9423|29638|F|127952.32|1992-10-22|2-HIGH|Clerk#000000367|0|p furiously regular, final accounts. slyly ironic tithes solve fluffily even d| +9448|94274|O|203677.09|1995-10-16|1-URGENT|Clerk#000000387|0|ly unusual dependencies. f| +9449|147355|F|157957.38|1994-02-06|4-NOT SPECIFIED|Clerk#000000728|0|al pinto beans boost enticingly alongside of the idea| +9450|89065|F|309133.69|1994-02-10|1-URGENT|Clerk#000000079|0|ic requests. quickly pending pearls dazzle. excuses wake blithely. regular id| +9451|39157|O|293021.56|1996-04-25|5-LOW|Clerk#000000015|0|egular dependencies amo| +9452|29965|O|126785.18|1998-01-20|1-URGENT|Clerk#000000581|0|ys might are express accounts. slyl| +9453|50467|F|188110.50|1992-07-22|5-LOW|Clerk#000000687|0|, ironic ideas use quickly pending packages. final| +9454|92669|F|241021.17|1995-01-22|2-HIGH|Clerk#000000788|0|blithely carefully pending packages. express, ironic accounts haggle along t| +9455|28741|F|328777.64|1994-05-22|1-URGENT|Clerk#000000826|0|s boost carefully among the never bold dependencies. regular | +9480|45841|F|41482.65|1993-12-18|3-MEDIUM|Clerk#000000125|0|ns. pending platelets boost t| +9481|16690|O|286801.64|1997-05-11|2-HIGH|Clerk#000000357|0|y unusual accounts haggle slyly ab| +9482|128461|O|345640.04|1998-05-07|2-HIGH|Clerk#000000795|0| platelets integrate furiously. final ideas at the carefully expre| +9483|90730|O|49869.81|1995-06-24|5-LOW|Clerk#000000067|0| nag. requests sleep carefully. slyly bold pinto beans haggle carefully furio| +9484|141334|O|358871.90|1996-12-10|4-NOT SPECIFIED|Clerk#000000781|0|ress dolphins. slyly ironic platelets detect carefully decoys. regular p| +9485|120529|F|117426.56|1994-03-28|1-URGENT|Clerk#000000979|0|instructions use. regul| +9486|108532|F|47827.00|1994-02-22|2-HIGH|Clerk#000000823|0|ests. furiously pending requests against the slyly unusual pinto beans | +9487|87367|F|282356.52|1994-12-06|1-URGENT|Clerk#000000021|0|ess, regular foxes. accounts snooze fluf| +9512|8917|F|346346.14|1994-06-19|5-LOW|Clerk#000000522|0|es: slyly ironic pint| +9513|8605|F|221120.16|1994-03-24|2-HIGH|Clerk#000000826|0|theodolites. excuses sleep| +9514|14543|O|62400.53|1998-03-30|4-NOT SPECIFIED|Clerk#000000795|0|nstructions. carefully ev| +9515|60406|O|211138.67|1997-11-21|5-LOW|Clerk#000000589|0|d somas. special packag| +9516|24247|O|124119.08|1995-11-27|3-MEDIUM|Clerk#000000941|0|s. deposits are fluffily. carefully ironic accounts may integrate slyly| +9517|96958|F|9344.57|1994-09-16|1-URGENT|Clerk#000000426|0|foxes wake slyly. theodolites cajole slyly according to the fl| +9518|119785|O|289589.12|1995-08-15|1-URGENT|Clerk#000000169|0| wake carefully ironic deposits| +9519|68455|O|165104.92|1998-05-23|2-HIGH|Clerk#000000413|0|tructions. furiously pending package| +9544|2191|O|76754.37|1998-07-08|5-LOW|Clerk#000000400|0|ong the furiously special asymptotes. special the| +9545|43163|O|264955.03|1996-02-08|5-LOW|Clerk#000000371|0|xes wake. even ideas | +9546|30749|F|91348.75|1995-04-29|1-URGENT|Clerk#000000637|0|alongside of the blithely unusual packages? regular excuses cajole. sl| +9547|35212|F|14613.88|1994-04-11|3-MEDIUM|Clerk#000000784|0|s. slyly express packages eat bli| +9548|45614|O|315778.37|1996-03-23|1-URGENT|Clerk#000000186|0| foxes haggle pinto beans? flu| +9549|121772|O|62055.93|1998-07-19|4-NOT SPECIFIED|Clerk#000000062|0|lites. regular dependencies haggle slyly.| +9550|17675|O|285316.01|1995-09-23|5-LOW|Clerk#000000630|0|lways special accounts are carefully after the furio| +9551|59459|O|56369.63|1996-06-14|2-HIGH|Clerk#000000473|0| fluffy foxes. furiously fi| +9576|16840|O|121149.76|1996-03-04|1-URGENT|Clerk#000000979|0| idle excuses. requests mold carefully ab| +9577|113930|F|11705.28|1994-05-15|4-NOT SPECIFIED|Clerk#000000678|0|arefully. special theodolites sleep slyly. fluffily ironic account| +9578|67112|O|167205.34|1996-10-11|2-HIGH|Clerk#000000867|0|. carefully enticing packages sleep| +9579|93977|O|147108.67|1997-12-04|5-LOW|Clerk#000000830|0|ickly above the blithely regular dependencies. packages after the fluffily | +9580|114652|O|413331.96|1996-05-06|2-HIGH|Clerk#000000410|0|requests. quickly express foxes sleep fluff| +9581|43324|O|66489.02|1996-12-31|1-URGENT|Clerk#000000055|0|s. quickly express ideas affix. | +9582|28270|P|114110.20|1995-05-01|2-HIGH|Clerk#000000455|0| deposits-- instructions are. | +9583|63304|O|225695.20|1995-11-19|2-HIGH|Clerk#000000880|0|. furiously even dependencies was acro| +9608|148720|F|371854.58|1992-12-03|5-LOW|Clerk#000000631|0|refully even deposi| +9609|56731|F|100668.34|1994-06-26|1-URGENT|Clerk#000000600|0|the furiously silent packa| +9610|50971|F|103235.69|1994-11-22|4-NOT SPECIFIED|Clerk#000000429|0| deposits since the express, special dep| +9611|136430|O|30883.79|1997-04-18|2-HIGH|Clerk#000000008|0|ending packages. slyly blithe| +9612|69994|O|12120.13|1995-09-15|5-LOW|Clerk#000000902|0|usly. blithely regular deposits alongside of the ironic, final asymptotes s| +9613|75043|F|24100.71|1992-12-29|4-NOT SPECIFIED|Clerk#000000580|0|ts. slyly final foxes print special, blithe deposits. carefully bold accoun| +9614|18784|O|152921.39|1995-07-01|1-URGENT|Clerk#000000600|0|althily even ideas across the even, final packages play after the blithely exp| +9615|95441|O|202917.23|1997-07-12|5-LOW|Clerk#000000860|0|special foxes wake slyly regular theodolites. deposits breach | +9640|113327|F|243431.64|1994-05-31|5-LOW|Clerk#000000461|0|nto beans boost. blithely silent deposits nag. carefully final foxes use alwa| +9641|123847|O|60285.11|1997-12-07|3-MEDIUM|Clerk#000000555|0|final patterns wake furiously. quickly ironic excuses grow slyl| +9642|77338|O|140528.77|1997-07-27|1-URGENT|Clerk#000000024|0| fluffily unusual theodolites? fu| +9643|58570|O|182059.78|1996-10-31|1-URGENT|Clerk#000000400|0|ions sleep fluffily. accounts| +9644|60566|F|75767.76|1994-10-11|5-LOW|Clerk#000000532|0|even theodolites nag slyly stealthy, bold requests; | +9645|19642|O|64911.34|1996-08-18|4-NOT SPECIFIED|Clerk#000000957|0|ar, ironic theodolites wake carefully special, even deposits. car| +9646|112541|O|125699.48|1998-07-07|3-MEDIUM|Clerk#000000666|0|its about the blithely bold deposits affix fluffily according to the quickly| +9647|126046|O|101397.04|1995-05-28|3-MEDIUM|Clerk#000000080|0|quickly. carefully ironic instructions above the furiously | +9672|129901|O|150927.81|1997-10-08|3-MEDIUM|Clerk#000000043|0|are. regular theodoli| +9673|139180|O|203077.09|1997-09-24|4-NOT SPECIFIED|Clerk#000000572|0|regular theodolites. stealthily silent requests sleep slyly quick| +9674|72715|F|89956.98|1993-01-29|4-NOT SPECIFIED|Clerk#000000087|0|ts affix blithely. ironic| +9675|61291|F|343215.05|1993-09-16|4-NOT SPECIFIED|Clerk#000000958|0|furiously. furiously ir| +9676|34553|O|101356.50|1996-12-22|2-HIGH|Clerk#000000047|0|jole carefully around the fluffily final ideas. blithely pending platele| +9677|68312|F|255891.76|1995-03-04|1-URGENT|Clerk#000000756|0|ets cajole after the fluffily | +9678|4115|F|104935.16|1995-02-26|4-NOT SPECIFIED|Clerk#000000164|0|es. slyly regular hockey players cajole fluffily ironic| +9679|145537|F|247570.63|1993-08-09|5-LOW|Clerk#000000042|0|inst the slowly eve| +9704|118438|O|111784.12|1996-12-03|2-HIGH|Clerk#000000126|0|bove the regular, final requests. blithely pending deposits sleep | +9705|58817|O|180815.11|1996-12-12|1-URGENT|Clerk#000000550|0|es. carefully final dolphins cajole about the final, s| +9706|22867|F|188956.33|1992-11-26|1-URGENT|Clerk#000000777|0|gular instructions. packages integrate quickly bold acco| +9707|14125|O|88942.85|1995-03-29|2-HIGH|Clerk#000000618|0|oxes sleep after the ironic, silent deposits. slyly special accounts s| +9708|93287|O|54174.56|1998-07-27|4-NOT SPECIFIED|Clerk#000000817|0|ously furiously regular dependenci| +9709|59167|O|189943.32|1998-01-26|3-MEDIUM|Clerk#000000266|0|lar, blithe pinto beans cajole carefully carefully | +9710|42881|F|219599.74|1993-04-17|5-LOW|Clerk#000000429|0|sts maintain carefully. even, express packages impress. blithely final pint| +9711|90829|O|19611.18|1995-06-26|5-LOW|Clerk#000000161|0|e foxes. pending accounts| +9736|129775|O|343690.90|1996-08-14|1-URGENT|Clerk#000000390|0|hely quickly pending accounts. even accounts cajole blithely. slyly r| +9737|105208|F|298778.17|1992-11-05|3-MEDIUM|Clerk#000000173|0|regular instructions up the regular, bold requests caj| +9738|13787|O|196446.74|1996-06-29|4-NOT SPECIFIED|Clerk#000000754|0|s. slyly regular accounts sleep against the blithely regul| +9739|115037|O|103417.48|1995-10-17|1-URGENT|Clerk#000000892|0|ons across the final platelets haggle slyly unusua| +9740|67387|F|20843.42|1992-11-27|3-MEDIUM|Clerk#000000594|0|o beans can detect silently ironic theodolites. sl| +9741|62461|O|258329.64|1995-07-21|1-URGENT|Clerk#000000442|0|s use-- fluffily special pinto beans detect around the bold| +9742|50846|F|228117.00|1992-07-14|4-NOT SPECIFIED|Clerk#000000457|0|y. theodolites against the caref| +9743|8188|F|198952.10|1992-05-17|3-MEDIUM|Clerk#000000175|0|d excuses. furiously even dinos wake carefully| +9768|45617|F|54731.13|1993-10-10|4-NOT SPECIFIED|Clerk#000000217|0|. ideas cajole. blithely ironic realms boost quickly dinos. evenly| +9769|29827|F|148531.29|1993-03-28|4-NOT SPECIFIED|Clerk#000000631|0|cial ideas. ironic, | +9770|138680|F|237882.23|1994-01-24|4-NOT SPECIFIED|Clerk#000000386|0|cial deposits detect slyly across the final requests.| +9771|88618|O|248334.92|1998-02-27|3-MEDIUM|Clerk#000000185|0|grouches solve quickly| +9772|41788|O|165537.47|1995-09-15|3-MEDIUM|Clerk#000000708|0|e quickly carefully ironic packages. carefully regular packages doubt. quickly| +9773|24745|O|207064.37|1996-07-22|1-URGENT|Clerk#000000326|0|fully final requests. carefully regular pinto | +9774|62564|F|182173.55|1994-08-14|2-HIGH|Clerk#000000957|0|ly unusual dependencies against the carefully final| +9775|11531|O|185034.30|1997-12-06|2-HIGH|Clerk#000000827|0|y even packages according to the pending the| +9800|147349|O|25328.05|1996-09-15|3-MEDIUM|Clerk#000000758|0| bold deposits. blithely regular | +9801|128203|O|83329.82|1995-06-02|4-NOT SPECIFIED|Clerk#000000308|0| dependencies mold: even packages across the c| +9802|93233|F|52513.55|1993-10-08|2-HIGH|Clerk#000000415|0| deposits. pending requests nag carefully slyly even f| +9803|55015|F|78930.86|1994-06-23|3-MEDIUM|Clerk#000000989|0|iously regular requests hinder alongside of th| +9804|25483|O|172139.60|1998-03-04|3-MEDIUM|Clerk#000000849|0| furiously unusual deposits. regular, regular accounts haggle. special pac| +9805|41474|F|134985.06|1992-04-22|5-LOW|Clerk#000000616|0|xpress theodolites sleep. special, regular excuses cajole. carefully regul| +9806|149971|F|15409.91|1995-01-21|4-NOT SPECIFIED|Clerk#000000740|0|special, regular instructions. carefully regular packages poach furio| +9807|104146|F|284714.24|1994-05-16|5-LOW|Clerk#000000974|0| regular deposits sleep | +9832|30088|O|293083.38|1998-07-07|3-MEDIUM|Clerk#000000224|0|according to the silent packages hang never fluffily unusual| +9833|26944|F|31911.55|1992-07-17|3-MEDIUM|Clerk#000000345|0|instructions. theodolites wake slyly atop the even, pending packages. bold de| +9834|122390|O|194698.69|1998-07-17|2-HIGH|Clerk#000000638|0|es. boldly special pinto beans wake blithely along the ir| +9835|46055|F|154973.56|1993-12-18|4-NOT SPECIFIED|Clerk#000000528|0|sits engage fluffily unusual requests. express requests use bl| +9836|35677|F|58488.80|1994-12-17|4-NOT SPECIFIED|Clerk#000000818|0|luffily final requests along the carefully express accounts | +9837|51308|O|170081.78|1997-11-12|2-HIGH|Clerk#000000870|0|equests integrate blith| +9838|119965|F|150258.72|1994-08-21|3-MEDIUM|Clerk#000000788|0|inments run slyly after the foxes-- packages are final dependencie| +9839|69511|F|55357.81|1992-10-03|2-HIGH|Clerk#000000895|0|wake blithely even multipliers. eve| +9864|52396|F|12663.53|1994-04-11|1-URGENT|Clerk#000000180|0|s cajole about the carefully unusual instructions. ironic asy| +9865|116402|O|116326.07|1997-02-18|4-NOT SPECIFIED|Clerk#000000573|0|posits. quickly regular courts snooze carefully ironic ideas; carefully| +9866|64828|F|97068.24|1992-06-21|3-MEDIUM|Clerk#000000449|0|nts haggle carefully after the always regular ideas| +9867|103213|F|93862.47|1992-01-27|2-HIGH|Clerk#000000131|0|lly according to the slyly unusual instructions. | +9868|69980|F|189867.56|1994-06-03|3-MEDIUM|Clerk#000000058|0| epitaphs. finally ir| +9869|139208|O|168494.29|1995-05-24|1-URGENT|Clerk#000000596|0|ly. quickly bold requests cajole against the ironic deposits. slyly regu| +9870|114307|F|99649.63|1994-08-05|1-URGENT|Clerk#000000982|0|r foxes? even courts across the blit| +9871|89146|F|184907.70|1992-03-05|4-NOT SPECIFIED|Clerk#000000879|0|re furiously even accounts. instructions cajole furiou| +9896|67171|O|120245.74|1995-07-23|2-HIGH|Clerk#000000036|0|regular deposits. furiously r| +9897|42128|F|159513.41|1994-11-15|5-LOW|Clerk#000000071|0|eep blithely against the blithely special accounts. slyly regular excus| +9898|36385|O|219327.18|1997-08-04|5-LOW|Clerk#000000292|0| packages? carefully silent| +9899|103741|F|163567.96|1992-02-04|3-MEDIUM|Clerk#000000496|0|s. blithely unusual deposits mold slyly slyly pending she| +9900|94279|O|76982.01|1996-11-05|5-LOW|Clerk#000000122|0|y special deposits about the unusual, blithe packages sleep blith| +9901|95186|F|84070.34|1993-09-02|5-LOW|Clerk#000000176|0|fluffily. carefully regular hockey players sleep carefully. slyl| +9902|24571|O|141370.70|1996-11-07|5-LOW|Clerk#000000385|0| doggedly. slyly final accounts| +9903|131245|F|57176.16|1992-09-14|2-HIGH|Clerk#000000216|0|lets. ironic, special accounts cajole quickly across th| +9928|52478|F|27095.50|1993-10-11|4-NOT SPECIFIED|Clerk#000000940|0|its wake even, silent instructions. ironic deposits haggle| +9929|144212|O|156465.27|1996-01-20|2-HIGH|Clerk#000000154|0|r deposits haggle quickly blithely idle deposits| +9930|54394|F|62268.29|1992-01-22|2-HIGH|Clerk#000000619|0|le fluffily deposits. idly final package| +9931|91148|O|69165.59|1996-03-31|2-HIGH|Clerk#000000128|0|ularly final packages print carefully. blithely ex| +9932|122687|F|165545.38|1994-06-05|2-HIGH|Clerk#000000080|0|along the ironic, silent pinto beans. asymptotes | +9933|89692|F|37605.48|1994-03-23|3-MEDIUM|Clerk#000000470|0|n accounts. express deposits are after the | +9934|83131|O|71077.01|1996-06-11|2-HIGH|Clerk#000000583|0|. blithely ironic ideas under the quickly even theodolites| +9935|55049|O|202768.36|1995-09-24|1-URGENT|Clerk#000000998|0|jole fluffily unusual platelets. quickly silent platelets haggle sl| +9960|147925|F|69621.14|1994-04-04|5-LOW|Clerk#000000542|0|ts nag furiously: carefully ironic accounts| +9961|70451|P|108007.13|1995-04-12|2-HIGH|Clerk#000000215|0|he slyly ironic warthogs. pending, special deposits cajole blithely. cl| +9962|113371|O|232445.39|1996-04-01|5-LOW|Clerk#000000811|0| sleep blithely. slyly final decoys sleep bli| +9963|113152|F|48482.39|1994-11-24|4-NOT SPECIFIED|Clerk#000000711|0|s. slyly unusual theodolit| +9964|14305|O|146884.35|1995-08-05|2-HIGH|Clerk#000000928|0|ross the pending excuses. packages above the unusual, pend| +9965|93022|P|95952.09|1995-03-18|4-NOT SPECIFIED|Clerk#000000300|0|regular packages wake a| +9966|92641|F|226386.67|1993-03-15|3-MEDIUM|Clerk#000000206|0|le quickly. sometimes unusual requests detect along| +9967|144382|O|48074.76|1997-08-06|1-URGENT|Clerk#000000346|0|totes are fluffily special pinto beans. sly, final ideas are. final packag| +9992|58900|O|230897.71|1997-05-28|2-HIGH|Clerk#000000390|0|asymptotes. slyly silent accounts cajo| +9993|63388|O|54029.57|1995-11-02|5-LOW|Clerk#000000636|0| to the unusual, even deposits. furiously ironic deposits in| +9994|47368|F|31945.63|1993-07-09|3-MEDIUM|Clerk#000000496|0|gle blithely about the quickly pending dependencies. carefu| +9995|35389|F|238611.24|1994-11-02|3-MEDIUM|Clerk#000000721|0|nic, pending ideas boost furiously fluffily s| +9996|1417|O|47047.74|1995-12-09|2-HIGH|Clerk#000000070|0|fix across the attainments. furiously ironic instructions alongside o| +9997|113911|O|236269.66|1997-02-24|4-NOT SPECIFIED|Clerk#000000809|0|ily ironic packages detect. regular package| +9998|43162|O|155425.30|1996-12-26|5-LOW|Clerk#000000231|0|symptotes haggle regularly even accounts. blithely | +9999|5543|O|120589.52|1996-05-23|2-HIGH|Clerk#000000952|0| unwind. regular foxes cajole blithely. quickly| +10024|148034|F|178354.65|1993-01-17|2-HIGH|Clerk#000000806|0|oss the slyly stealthy deposits. blithely ironic instructions cajole. quic| +10025|105334|O|127226.26|1995-11-30|2-HIGH|Clerk#000000563|0|e furiously. carefull| +10026|20225|F|109823.17|1992-08-04|2-HIGH|Clerk#000000370|0|y even accounts: even foxes boost carefully| +10027|10873|F|71392.52|1993-07-23|5-LOW|Clerk#000000111|0|xes eat according to th| +10028|18556|O|80988.23|1995-11-13|2-HIGH|Clerk#000000423|0|ry to haggle blithely abo| +10029|2596|O|139926.90|1995-06-18|1-URGENT|Clerk#000000672|0|ges wake. furiously final excuses haggle. permanent| +10030|128281|O|74091.44|1996-08-13|3-MEDIUM|Clerk#000000226|0|, unusual pinto beans. carefully bold pinto | +10031|41143|O|130802.13|1997-05-12|1-URGENT|Clerk#000000043|0|ns. slyly express packages according to the furious| +10056|125302|O|194196.13|1997-12-31|5-LOW|Clerk#000000157|0|n requests. furiously regular packages wake bli| +10057|88687|F|74852.45|1992-09-04|3-MEDIUM|Clerk#000000162|0|ests. regular platelets haggle furiously agai| +10058|134986|O|28742.51|1996-07-14|4-NOT SPECIFIED|Clerk#000000180|0|dolites sleep furiously. deposits lose. furiously regular courts haggle| +10059|79727|F|65759.95|1994-06-15|1-URGENT|Clerk#000000584|0|lly final hockey players above the fluffily regular | +10060|18637|O|136321.29|1997-04-22|3-MEDIUM|Clerk#000000474|0|ccounts. blithely fluffy requests boost busily after the final theod| +10061|17504|O|72456.62|1997-02-07|4-NOT SPECIFIED|Clerk#000000205|0|ymptotes across the express, unusual dependenci| +10062|27802|O|36950.06|1997-02-21|1-URGENT|Clerk#000000553|0| above the slyly final packages. slyly express request| +10063|13706|F|345374.44|1992-05-31|2-HIGH|Clerk#000000653|0|eans haggle carefully. blithely ironic | +10088|93268|F|57712.88|1992-07-19|4-NOT SPECIFIED|Clerk#000000002|0|long the slyly fina| +10089|22378|P|333408.84|1995-05-05|1-URGENT|Clerk#000000220|0|uickly stealthy reques| +10090|49591|O|184372.59|1996-05-12|2-HIGH|Clerk#000000432|0|kly evenly regular ideas. pending, dogged deposits al| +10091|42580|O|212779.89|1998-07-24|2-HIGH|Clerk#000000172|0|aggle blithely. blithely special ideas wake quickly. quickly even theodoli| +10092|140905|F|155027.50|1993-04-07|2-HIGH|Clerk#000000873|0|hely special requests. unusual instructions nod care| +10093|125702|F|92794.97|1992-03-12|1-URGENT|Clerk#000000717|0|ts are carefully alongsi| +10094|63550|F|60989.39|1992-04-20|4-NOT SPECIFIED|Clerk#000000089|0|equests. ironic accounts above the ironic requests sublate quickly careful| +10095|69943|O|58420.69|1998-06-08|2-HIGH|Clerk#000000813|0|sual dependencies wake quickly alon| +10120|105401|O|143743.82|1995-07-19|1-URGENT|Clerk#000000095|0|yly even excuses. quickly even | +10121|123841|O|92160.20|1997-01-26|3-MEDIUM|Clerk#000000460|0|nding instructions. furiously final asymptotes acro| +10122|125536|F|45799.06|1993-05-12|4-NOT SPECIFIED|Clerk#000000338|0|the pinto beans. furiously unusual requests integr| +10123|124213|F|46773.54|1994-04-10|3-MEDIUM|Clerk#000000507|0| dependencies. bold, regular inst| +10124|86557|F|42507.70|1994-03-25|3-MEDIUM|Clerk#000000929|0|tructions. special, pending deposits cajole blithely alongside of the reg| +10125|55118|F|28870.12|1992-03-08|3-MEDIUM|Clerk#000000744|0|t the pending asymptotes. furiously even packages kindle furiousl| +10126|116062|O|159209.37|1997-08-23|2-HIGH|Clerk#000000860|0|multipliers maintain quickly along the fluffily final pinto beans. p| +10127|53482|O|139434.43|1998-01-13|4-NOT SPECIFIED|Clerk#000000473|0|nic theodolites cajole. fluffily final ac| +10152|44704|O|78868.85|1996-11-16|5-LOW|Clerk#000000887|0|kages. slyly express dep| +10153|122431|O|242064.37|1996-07-01|1-URGENT|Clerk#000000047|0|arefully regular requests. slyly | +10154|140752|O|350477.73|1997-12-15|4-NOT SPECIFIED|Clerk#000000415|0|totes print unusual, even requests. express, s| +10155|96712|O|254751.97|1995-12-28|2-HIGH|Clerk#000000924|0|tegrate carefully even accounts? pinto| +10156|12106|F|183400.91|1994-07-16|4-NOT SPECIFIED|Clerk#000000683|0|into beans believe blithely. slyly regular instructions nag b| +10157|33881|F|177758.69|1994-02-26|2-HIGH|Clerk#000000626|0|s. furiously express e| +10158|30827|O|206114.41|1996-01-25|2-HIGH|Clerk#000000202|0|until the carefully final theodolites.| +10159|147080|O|38934.07|1996-06-30|4-NOT SPECIFIED|Clerk#000000621|0|ests haggle. blithely even requests thrash | +10184|113546|O|62986.03|1996-06-25|1-URGENT|Clerk#000000059|0|s deposits. special, ironic accounts at the accounts use carefully acros| +10185|57067|O|67762.48|1996-07-10|1-URGENT|Clerk#000000983|0| the permanent, quiet platelets. slyl| +10186|13696|O|266816.80|1997-02-11|3-MEDIUM|Clerk#000000219|0|ites cajole blithely. carefully final deposits are| +10187|79583|O|43049.34|1996-12-09|2-HIGH|Clerk#000000407|0|structions. quick epitaphs cajole quickly. quietly pending asymptotes | +10188|145039|P|298014.12|1995-04-08|3-MEDIUM|Clerk#000000605|0|silent deposits haggle | +10189|5419|F|25090.96|1992-10-02|2-HIGH|Clerk#000000340|0|ly ironic requests haggle. bold excu| +10190|23194|F|236384.96|1994-03-13|3-MEDIUM|Clerk#000000952|0|nding forges poach along the slyly bold fox| +10191|110434|O|142346.82|1996-03-25|4-NOT SPECIFIED|Clerk#000000072|0|e regular deposits. quickly even packages nag blithely. slyly | +10216|86644|O|194274.75|1997-06-10|4-NOT SPECIFIED|Clerk#000000892|0|ts wake except the even, ir| +10217|5980|O|61743.33|1998-06-24|2-HIGH|Clerk#000000593|0| regular accounts. special deposits sleep blithely pe| +10218|5651|F|33007.62|1993-02-11|2-HIGH|Clerk#000000168|0|osits above the slyly unusual| +10219|12616|O|104438.19|1998-02-27|2-HIGH|Clerk#000000882|0|al, ironic accounts. express, ironic deposits al| +10220|79472|O|89497.42|1995-11-03|3-MEDIUM|Clerk#000000220|0|tions. carefully sly account| +10221|78862|O|142682.31|1997-08-19|1-URGENT|Clerk#000000819|0|ly unusual deposits. slyly even pinto beans after | +10222|18412|F|148460.46|1992-06-13|5-LOW|Clerk#000000440|0|unts was final ideas. slyly unusual platelets are fluf| +10223|136471|F|25967.63|1993-10-21|5-LOW|Clerk#000000049|0| haggle ironic packages. packages eng| +10248|1900|P|96861.43|1995-04-04|1-URGENT|Clerk#000000249|0|ss, regular deposits grow slyly: express asympt| +10249|100717|O|178527.37|1998-05-07|2-HIGH|Clerk#000000082|0|ep blithely according to the final de| +10250|118243|F|199140.89|1993-01-04|4-NOT SPECIFIED|Clerk#000000885|0|olites. dependencies affix except the | +10251|91583|F|66117.03|1994-01-17|2-HIGH|Clerk#000000491|0| slyly about the blithely unusual | +10252|69871|F|43059.74|1994-02-20|5-LOW|Clerk#000000712|0|ldly pending foxes are across the ideas. final accounts| +10253|101636|F|238083.40|1993-03-30|1-URGENT|Clerk#000000330|0|ctions according to the special, final requests are fluffily blithely| +10254|134761|F|99897.52|1993-09-25|1-URGENT|Clerk#000000215|0|s sleep furiously blit| +10255|64315|F|9894.93|1993-07-31|4-NOT SPECIFIED|Clerk#000000544|0|carefully final deposits along| +10280|29005|O|70935.24|1998-04-29|5-LOW|Clerk#000000537|0|ly regular foxes. final packages wake| +10281|117176|O|136041.09|1997-07-16|3-MEDIUM|Clerk#000000176|0|nusual requests detect quickly even accounts. ironic instru| +10282|22576|O|280521.97|1996-01-10|1-URGENT|Clerk#000000118|0|regular asymptotes use quickly: even, final packages cajol| +10283|83039|F|168139.28|1993-07-19|3-MEDIUM|Clerk#000000458|0|deposits wake requests; regular, bold pinto | +10284|34187|F|128552.37|1994-12-31|4-NOT SPECIFIED|Clerk#000000618|0|riously bold sauternes. ev| +10285|77783|F|184965.95|1994-08-03|1-URGENT|Clerk#000000375|0| dependencies nod quickly. carefully ironic accounts integr| +10286|39535|O|313806.74|1997-11-02|5-LOW|Clerk#000000652|0|s breach doggedly across the regular, blithe packages. final re| +10287|88891|F|229473.25|1994-01-15|3-MEDIUM|Clerk#000000642|0| even instructions | +10312|109910|F|133990.41|1992-04-04|4-NOT SPECIFIED|Clerk#000000062|0|arefully final pinto beans. ironically silent deposits a| +10313|4733|F|241247.12|1994-07-14|3-MEDIUM|Clerk#000000996|0|n packages haggle carefully. carefully special | +10314|33862|O|139574.12|1997-10-26|1-URGENT|Clerk#000000232|0|ronic ideas solve according to the furiously unusual theodolite| +10315|2875|F|183254.33|1993-08-11|3-MEDIUM|Clerk#000000128|0|hrough the quickly express requests bo| +10316|16528|F|127844.95|1992-04-13|2-HIGH|Clerk#000000827|0|fluffily ironic packages boo| +10317|131488|O|58203.45|1998-02-23|1-URGENT|Clerk#000000325|0|ss requests nag slyly fluffily ironic excuses. silent acco| +10318|107129|O|237059.01|1996-08-24|1-URGENT|Clerk#000000113|0|s. packages according to the | +10319|55040|P|166171.69|1995-05-28|3-MEDIUM|Clerk#000000593|0|ular ideas against the theodolites wake slyly blithely unusual accounts. spec| +10344|145216|F|135314.22|1994-10-12|3-MEDIUM|Clerk#000000200|0|en epitaphs above the carefully ironic theodolites boost slyly b| +10345|115669|F|258159.87|1994-10-11|5-LOW|Clerk#000000789|0|thrash around the express packages. carefully permanent packages haggle. sil| +10346|15643|O|309489.30|1996-05-07|2-HIGH|Clerk#000000598|0|haggle according to the furiously even requests. unusual, regular pinto beans| +10347|94183|O|23964.89|1997-02-19|2-HIGH|Clerk#000000256|0|ickly express deposits. regular courts are carefully b| +10348|100138|F|295151.77|1994-02-20|5-LOW|Clerk#000000665|0|y even deposits affix furiously carefully express dep| +10349|145690|O|137811.41|1995-08-08|4-NOT SPECIFIED|Clerk#000000017|0|e carefully ironic dependencies. accounts nag after the express deposits. unu| +10350|143975|O|20159.46|1997-10-31|4-NOT SPECIFIED|Clerk#000000877|0|cross the quickly express deposits. pending foxes mold. quickly ironic dep| +10351|132367|O|134260.08|1998-05-06|1-URGENT|Clerk#000000196|0| special accounts wake. carefully regular | +10376|23641|O|143356.52|1996-02-25|4-NOT SPECIFIED|Clerk#000000599|0|ly even platelets hang carefully. blithely bold requ| +10377|105194|F|308555.51|1993-01-24|1-URGENT|Clerk#000000915|0|e the final, ironic pinto beans boost sl| +10378|89780|F|100392.42|1992-05-22|1-URGENT|Clerk#000000889|0|ly final accounts are slyly. furiously regular accounts beneath the fluffily | +10379|77311|F|151931.07|1992-05-06|4-NOT SPECIFIED|Clerk#000000045|0|y unusual waters lose.| +10380|56294|F|238560.69|1994-06-18|1-URGENT|Clerk#000000633|0| along the blithely final packages; furiously pending platelets boost agai| +10381|82519|F|112525.16|1993-05-09|4-NOT SPECIFIED|Clerk#000000008|0|xes use after the quickly final packages. furiousl| +10382|133700|O|107456.16|1996-07-21|1-URGENT|Clerk#000000386|0|the carefully even instructions. fu| +10383|86461|F|137530.62|1995-02-02|4-NOT SPECIFIED|Clerk#000000792|0|ronic instructions. bli| +10408|79907|F|52043.77|1992-09-10|5-LOW|Clerk#000000611|0|ously regular accounts solve carefully eve| +10409|46015|F|285660.85|1994-08-05|1-URGENT|Clerk#000000200|0|of the even accounts. carefully silent fox| +10410|99023|O|90613.69|1997-06-28|3-MEDIUM|Clerk#000000485|0|ges haggle idly accounts. ironic deposits cajole. sly deposits ar| +10411|15082|F|331653.24|1994-05-08|2-HIGH|Clerk#000000057|0|lly final foxes nag fluffily across the furiously bold accounts. slyly fi| +10412|106976|F|26672.89|1993-09-16|3-MEDIUM|Clerk#000000054|0| deposits cajole slyly in place of the blithely ironic deposi| +10413|37402|F|48919.03|1994-01-18|1-URGENT|Clerk#000000545|0|ly final deposits cajole carefully according to the slyly reg| +10414|89332|F|92927.12|1993-10-15|3-MEDIUM|Clerk#000000240|0|lithely. blithely p| +10415|35128|O|10003.95|1996-06-27|1-URGENT|Clerk#000000932|0|ar deposits breach quickly. idle deposits nag fluffily. slyly regula| +10440|113084|O|281737.89|1998-04-01|1-URGENT|Clerk#000000234|0|efully unusual requests sle| +10441|96299|P|103015.28|1995-03-02|1-URGENT|Clerk#000000565|0|fily special pinto bea| +10442|138448|O|185071.14|1995-08-03|5-LOW|Clerk#000000862|0|across the packages haggle across the p| +10443|66760|O|278483.79|1998-02-07|1-URGENT|Clerk#000000203|0|h carefully. brave, e| +10444|14386|O|415538.41|1996-06-30|4-NOT SPECIFIED|Clerk#000000408|0| carefully blithely r| +10445|126268|O|232553.33|1997-11-03|2-HIGH|Clerk#000000017|0|riously final packages nod quickly. unusual, en| +10446|124661|F|225237.43|1993-11-19|1-URGENT|Clerk#000000424|0| ironic requests wake carefully after t| +10447|126896|F|168006.52|1992-04-15|1-URGENT|Clerk#000000654|0|furiously even warhorses nag slyly furio| +10472|31718|O|34110.65|1996-07-05|1-URGENT|Clerk#000000425|0|owly against the accounts. slyly regular deposit| +10473|130547|F|97427.84|1994-01-06|2-HIGH|Clerk#000000943|0|y final accounts are blithely slyly bold requests. furiously r| +10474|49033|F|15665.65|1994-01-31|2-HIGH|Clerk#000000072|0|earls sleep blithely through the platelets. slyly regular accounts u| +10475|137890|O|66435.82|1995-06-13|5-LOW|Clerk#000000771|0| deposits? carefully final deposits wake slyly about the final pin| +10476|7376|O|116518.04|1997-10-04|1-URGENT|Clerk#000000118|0|accounts sleep. furiously sile| +10477|67378|F|206470.84|1994-11-19|5-LOW|Clerk#000000975|0|ly enticing requests. regular, final pi| +10478|44773|F|152760.10|1994-05-10|1-URGENT|Clerk#000000266|0|equests. quickly even requests are after the furious| +10479|72197|F|8945.12|1992-05-03|1-URGENT|Clerk#000000886|0| pinto beans wake quickly slyly ironic foxes. blithely fi| +10504|58555|O|187899.61|1997-03-14|5-LOW|Clerk#000000425|0|the pending foxes use regularly carefully f| +10505|107891|P|268250.11|1995-03-28|4-NOT SPECIFIED|Clerk#000000557|0|ly express instructions after the regular dolphins us| +10506|108998|F|150160.18|1993-08-12|4-NOT SPECIFIED|Clerk#000000264|0|l platelets run slyly bold excuses. deposits haggle sometimes. bold courts b| +10507|119155|F|77606.11|1994-10-17|1-URGENT|Clerk#000000645|0|ackages according to the blithely final excuses haggle quickly ruthlessl| +10508|110671|F|134200.26|1993-07-09|5-LOW|Clerk#000000190|0|ithely pending packages. carefully ironic package| +10509|36365|F|109817.40|1994-03-15|1-URGENT|Clerk#000000621|0| haggle never about the ironic packages. sometimes pending accou| +10510|69952|O|169473.63|1997-12-13|5-LOW|Clerk#000000028|0|eep slyly ironic accounts! bold, even deposits cajole. final accounts above| +10511|132577|O|23766.70|1996-12-26|4-NOT SPECIFIED|Clerk#000000813|0|ing the furiously ironic theodolites. unusual theodolites wake slyly. car| +10536|96019|F|221725.35|1994-09-03|5-LOW|Clerk#000000535|0|le along the quickly expr| +10537|82162|F|301873.53|1992-08-04|4-NOT SPECIFIED|Clerk#000000402|0|ily sly escapades. even requests wake accordin| +10538|114697|O|108536.14|1997-11-14|2-HIGH|Clerk#000000417|0|. regular deposits boost carefully slyly brave ideas. express, final packages| +10539|51193|O|123755.05|1997-09-13|4-NOT SPECIFIED|Clerk#000000603|0|of the pending, final braids. packages cajole. final packages integrat| +10540|136022|F|258728.20|1994-09-06|4-NOT SPECIFIED|Clerk#000000780|0|ve the blithely regular requests. silent, even packages are. | +10541|119141|O|332947.84|1996-01-11|2-HIGH|Clerk#000000230|0|counts according to the ev| +10542|44771|O|184122.08|1996-11-09|1-URGENT|Clerk#000000515|0|final requests use furiously across the boldly brave Tir| +10543|58633|O|67376.27|1998-07-08|3-MEDIUM|Clerk#000000791|0|quickly along the pending, idle platelets. idly final deposits sleep slyly u| +10568|90413|O|269671.06|1997-07-29|1-URGENT|Clerk#000000149|0|y express deposits among the unusual| +10569|68308|F|130451.51|1992-03-14|4-NOT SPECIFIED|Clerk#000000018|0|s. platelets nag. slyly busy | +10570|72454|F|274145.24|1993-03-07|1-URGENT|Clerk#000000275|0|ual accounts doze quick| +10571|30256|O|203358.38|1997-01-12|5-LOW|Clerk#000000271|0|un slyly. carefully even| +10572|132505|F|177707.73|1994-06-20|1-URGENT|Clerk#000000741|0|c packages are; slyly final deposits ca| +10573|103340|O|57637.45|1997-06-08|3-MEDIUM|Clerk#000000676|0|eas eat slyly carefully | +10574|129512|O|268416.46|1996-03-30|1-URGENT|Clerk#000000625|0|ously final instructions wake across the regular ideas. care| +10575|43975|F|48406.22|1995-02-14|2-HIGH|Clerk#000000887|0|sual asymptotes. dependencies hinder slyly pending account| +10600|29761|F|78690.78|1993-01-08|2-HIGH|Clerk#000000430|0|ly along the final accounts. | +10601|84710|O|114837.13|1996-05-09|2-HIGH|Clerk#000000349|0|osits use quickly even ideas. unusual platelets ha| +10602|64183|F|84894.04|1994-10-23|2-HIGH|Clerk#000000309|0|carefully blithely special | +10603|55151|F|204801.73|1994-11-07|5-LOW|Clerk#000000407|0|icing deposits. slyl| +10604|69098|O|369484.47|1995-10-14|5-LOW|Clerk#000000776|0|oxes about the slyly even requests are fluffily ironic pinto beans. deposits| +10605|14782|O|181559.77|1997-09-02|1-URGENT|Clerk#000000199|0|y busy pains detect slyly quickly pending realms. regular, | +10606|21367|F|56785.96|1994-09-18|1-URGENT|Clerk#000000458|0|s nag carefully pinto beans. quickly silent ideas affix s| +10607|139636|F|330655.81|1994-11-09|2-HIGH|Clerk#000000557|0|around the regular instructions. carefully e| +10632|98687|O|275591.43|1996-11-30|5-LOW|Clerk#000000522|0|s boost fluffily accordi| +10633|70642|O|221757.18|1996-04-30|5-LOW|Clerk#000000341|0| use furiously among the theodolites. bold accounts cajole re| +10634|28172|O|247971.20|1996-07-23|1-URGENT|Clerk#000000967|0|t deposits are fluffily carefully pending deposits. p| +10635|85312|F|84253.92|1992-04-06|1-URGENT|Clerk#000000137|0|te thinly above the blithely special deposits. carefully blithe| +10636|136717|O|167446.78|1996-01-13|2-HIGH|Clerk#000000748|0|oys are furiously. special, regular packages aff| +10637|97921|O|215280.49|1997-05-03|3-MEDIUM|Clerk#000000474|0|nt, even excuses cajole. even instructions hang. pending theodolites aff| +10638|90023|O|63223.28|1997-07-12|1-URGENT|Clerk#000000982|0|s pinto beans cajole slyly special ideas-| +10639|102137|F|218426.07|1994-08-07|4-NOT SPECIFIED|Clerk#000000870|0|ncies print blithely. quickly p| +10664|9497|F|96706.90|1992-02-11|3-MEDIUM|Clerk#000000244|0| furiously silent packages sleep around the slyly even| +10665|358|O|298466.70|1995-11-05|1-URGENT|Clerk#000000031|0|ts of the regular accounts x-ray carefully regular pinto beans. quickly e| +10666|7229|F|248612.76|1993-12-22|3-MEDIUM|Clerk#000000962|0|y slyly silent asymptotes. furiously regular accounts al| +10667|136666|O|136702.56|1996-03-07|4-NOT SPECIFIED|Clerk#000000998|0|egular, final courts. fluffily ironic instructions might use | +10668|135679|O|52534.29|1998-02-19|2-HIGH|Clerk#000000214|0|r accounts doubt quickly ironic theodol| +10669|37750|O|290225.73|1996-06-15|3-MEDIUM|Clerk#000000900|0|st the furiously special excuses wake slyly special requests. deposits detec| +10670|105943|F|190697.57|1994-09-10|2-HIGH|Clerk#000000912|0|e carefully fluffy packages. carefully final packages n| +10671|82352|F|165620.89|1994-06-26|2-HIGH|Clerk#000000280|0| slyly even ideas cajole quickly above t| +10696|37939|O|66759.58|1998-04-13|1-URGENT|Clerk#000000335|0|ithely above the bold, bold| +10697|117128|O|123542.42|1996-10-08|3-MEDIUM|Clerk#000000776|0|ts. final, express deposits above the quickly| +10698|115435|O|28938.92|1995-07-31|2-HIGH|Clerk#000000768|0|uickly ironic dependencies. final deposits detect slyly carefully final| +10699|9410|O|41060.72|1997-01-03|4-NOT SPECIFIED|Clerk#000000972|0|equests. stealthily ironic accounts wake carefully furiou| +10700|51704|F|267403.93|1992-03-07|3-MEDIUM|Clerk#000000390|0|he blithely ironic pinto beans. quickly regular platelets| +10701|31028|O|59382.80|1997-04-27|2-HIGH|Clerk#000000444|0| foxes after the unusual waters cajole furiousl| +10702|71572|O|106478.08|1996-07-28|2-HIGH|Clerk#000000271|0| regular requests. regular, even deposits wake quickly. | +10703|59044|O|134811.92|1996-04-04|5-LOW|Clerk#000000276|0|the pinto beans. even packages boo| +10728|101596|O|1012.51|1997-06-13|1-URGENT|Clerk#000000330|0|odolites sleep carefully about the carefully even ac| +10729|57617|O|194070.89|1996-03-28|3-MEDIUM|Clerk#000000382|0|dolites. regular pinto beans use carefully about the accounts. | +10730|116231|F|34816.63|1992-05-24|1-URGENT|Clerk#000000498|0|tes sleep dependencies. final requests wake bold packages; silent theodol| +10731|39824|O|248841.35|1998-02-07|1-URGENT|Clerk#000000301|0|oss the furiously fluffy dolphins. accounts wak| +10732|13775|O|190001.98|1997-04-07|2-HIGH|Clerk#000000494|0|t the blithely ironic foxes. | +10733|51620|F|46263.02|1992-10-04|3-MEDIUM|Clerk#000000647|0|c excuses are. fluffily final deposits affix blithely fi| +10734|120019|F|183833.45|1994-05-19|2-HIGH|Clerk#000000639|0|. closely final requests| +10735|98710|F|17398.16|1995-05-30|2-HIGH|Clerk#000000382|0| after the regular, regul| +10760|143332|F|165503.38|1993-08-11|5-LOW|Clerk#000000960|0|ons. regular, ironic depos| +10761|105029|O|4628.57|1998-07-04|1-URGENT|Clerk#000000008|0| final accounts. daring accounts should have to run carefully. fina| +10762|8513|O|306925.07|1996-12-14|5-LOW|Clerk#000000962|0|except the packages are carefully above the fluffily unusual idea| +10763|122539|F|123415.68|1994-08-12|2-HIGH|Clerk#000000757|0|p carefully. blithe accounts wake quickly special excuses. ironic | +10764|10660|F|134261.73|1993-03-17|1-URGENT|Clerk#000000071|0|ding to the ironic, bold accounts use carefully pending attain| +10765|38893|O|204403.36|1996-09-01|4-NOT SPECIFIED|Clerk#000000378|0|requests cajole. regular foxes about the dependencies are| +10766|97943|F|61789.55|1994-06-17|3-MEDIUM|Clerk#000000074|0|y. final packages cajole carefully special| +10767|25768|O|77204.88|1995-08-14|3-MEDIUM|Clerk#000000979|0|slyly. ironic dependenc| +10792|23485|P|148516.52|1995-03-07|2-HIGH|Clerk#000000494|0|y final accounts are fluffily sly dolphins. ironic, pending instructions sle| +10793|59056|O|84990.32|1998-05-02|1-URGENT|Clerk#000000662|0|refully against the unusual dependencies. multipliers haggle carefully around | +10794|2195|F|301362.51|1994-05-11|3-MEDIUM|Clerk#000000981|0|al deposits. regular deposits wake daringly. final, | +10795|135550|F|68206.62|1993-09-02|1-URGENT|Clerk#000000442|0|to beans haggle even accounts. quickly express package| +10796|125146|F|260859.19|1992-06-12|3-MEDIUM|Clerk#000000830|0|deposits. thinly even packages wake. furiously unusual asymptotes | +10797|16018|F|24128.48|1992-10-02|5-LOW|Clerk#000000130|0|ckages cajole finally. regular, regular theodo| +10798|104029|O|24624.23|1996-02-26|5-LOW|Clerk#000000427|0|usly quickly final foxe| +10799|149266|F|126067.57|1994-06-20|2-HIGH|Clerk#000000055|0|ns integrate blithely along the slyly special platelets. furiously regular re| +10824|82339|F|68274.99|1992-10-19|2-HIGH|Clerk#000000354|0|symptotes mold slyly. carefully silent dependencies wake furiousl| +10825|99983|O|168430.62|1997-09-26|4-NOT SPECIFIED|Clerk#000000693|0|nt furiously platelets. furiously pending dugouts alongside of the final | +10826|109333|O|157906.61|1995-07-06|2-HIGH|Clerk#000000342|0|y pending dependencies wake about the carefully e| +10827|52318|O|70657.13|1996-06-08|1-URGENT|Clerk#000000781|0|ronic depths boost accord| +10828|146137|O|314809.66|1996-12-22|5-LOW|Clerk#000000700|0|y even pinto beans are slyly| +10829|13426|F|50195.69|1992-10-15|2-HIGH|Clerk#000000302|0|sly thin pinto beans wake carefully about the furiously final foxes. | +10830|41188|O|27549.54|1998-02-24|4-NOT SPECIFIED|Clerk#000000372|0| special, regular requests according to | +10831|115300|O|129401.03|1998-01-25|1-URGENT|Clerk#000000655|0| boost about the requests. quickly ironic requests| +10856|136477|F|69297.62|1994-08-13|3-MEDIUM|Clerk#000000855|0|e slyly even packages. special inst| +10857|103849|O|187875.30|1997-02-24|2-HIGH|Clerk#000000978|0|es. final deposits nag slyly blithely unusual ideas. sly asymptotes use neve| +10858|121136|F|56197.22|1992-05-31|5-LOW|Clerk#000000636|0|ts. carefully unusual p| +10859|123193|F|172347.32|1992-11-25|5-LOW|Clerk#000000639|0|equests nag furiously slyly regular pinto beans| +10860|24595|O|31094.74|1995-08-13|3-MEDIUM|Clerk#000000343|0|haggle. pending, regular accounts haggle amon| +10861|85651|P|181414.40|1995-06-07|5-LOW|Clerk#000000537|0|ross the quickly dogged dependencies are | +10862|112529|O|236078.25|1996-02-13|1-URGENT|Clerk#000000067|0|e blithely: regular, bold asymptotes breach. carefully regular acc| +10863|59102|F|158365.23|1994-12-09|1-URGENT|Clerk#000000772|0|even accounts engage blithely final accounts| +10888|11606|O|259426.71|1997-03-30|4-NOT SPECIFIED|Clerk#000000496|0|requests. slyly unusual gifts run across | +10889|49670|O|209212.94|1996-11-18|3-MEDIUM|Clerk#000000072|0| along the sauternes. slyly enticing theodolites cajole regularly carefully re| +10890|47452|O|131809.35|1997-03-25|2-HIGH|Clerk#000000673|0|. regular multipliers engage. warthogs sublate. carefully regular packag| +10891|93214|O|79711.87|1996-03-02|5-LOW|Clerk#000000514|0|o the requests sleep quickly regular instructions. pending excu| +10892|34439|O|154393.18|1998-02-02|4-NOT SPECIFIED|Clerk#000000229|0| wake carefully unusual req| +10893|112720|O|179503.72|1996-07-08|3-MEDIUM|Clerk#000000862|0|tes solve blithely ironic, ironic packages. unusual platelets according to | +10894|129652|F|41882.97|1993-11-01|5-LOW|Clerk#000000773|0|eep carefully stealthy deposits. daringly enticing instructi| +10895|4850|O|88159.62|1998-05-20|5-LOW|Clerk#000000462|0|de of the even requests believe final, ironic packages. quickly final foxes a| +10920|51973|O|295370.84|1997-11-07|2-HIGH|Clerk#000000124|0|anent, even theodolites. blithely ironic foxes nag. furiously bold package| +10921|53806|F|50792.58|1994-08-29|2-HIGH|Clerk#000000411|0|cies haggle quickly along the furiously brave deposits. slowly express idea| +10922|84770|F|2431.85|1994-05-30|2-HIGH|Clerk#000000866|0|e fluffily ironic accounts. furio| +10923|28666|F|199490.64|1992-02-26|3-MEDIUM|Clerk#000000728|0|all have to wake pending forges. blithely final | +10924|119941|O|48635.95|1996-09-23|1-URGENT|Clerk#000000643|0|refully regular pains. bold packages wake quickly. quic| +10925|126700|O|74700.11|1996-08-21|3-MEDIUM|Clerk#000000293|0|special accounts was slyly quickly final requests. slyly even pack| +10926|41887|F|101424.18|1993-10-26|5-LOW|Clerk#000000242|0|ing to the furiously ironic idea| +10927|31918|F|41080.27|1994-06-21|1-URGENT|Clerk#000000185|0|s the quickly unusual pla| +10952|39517|F|145141.25|1993-07-16|1-URGENT|Clerk#000000458|0|-ray slyly. blithely unusual ideas haggle. blithely| +10953|95906|F|266977.49|1994-12-05|1-URGENT|Clerk#000000016|0|s outside the brave, ironic asymptotes cajole sil| +10954|127042|O|170066.86|1998-03-13|5-LOW|Clerk#000000835|0|onic requests. close ideas use fluf| +10955|91694|F|21090.63|1993-09-11|3-MEDIUM|Clerk#000000337|0|slowly even accounts haggle blithely! slyly unu| +10956|136849|O|157277.06|1997-12-19|4-NOT SPECIFIED|Clerk#000000204|0|yly even pinto beans. furiousl| +10957|44959|O|203027.47|1996-10-26|2-HIGH|Clerk#000000219|0|totes. carefully final packages sleep. fluffily final requests aga| +10958|69908|O|19244.13|1996-08-14|1-URGENT|Clerk#000000348|0|aggle quickly after the slowly | +10959|142759|F|164639.04|1994-07-30|1-URGENT|Clerk#000000651|0|uests doze across the packages. slyly unusual theodolites above th| +10984|67021|F|171794.21|1994-03-08|5-LOW|Clerk#000000858|0|nal theodolites except the permanently special requests| +10985|54439|F|200114.07|1993-01-21|4-NOT SPECIFIED|Clerk#000000502|0|dle requests detect furiously pending ideas. slyly regular d| +10986|99310|F|54240.20|1995-01-04|5-LOW|Clerk#000000569|0|r ideas wake. slyly express requests among the slyly regular pack| +10987|23647|O|355756.88|1995-07-26|3-MEDIUM|Clerk#000000674|0|. slyly bold escapades are furiously fluffil| +10988|54046|O|331499.66|1997-09-04|5-LOW|Clerk#000000085|0|structions are. pendi| +10989|90967|F|41912.79|1992-01-01|3-MEDIUM|Clerk#000000662|0|nusual asymptotes detect carefully behind the bold packages. unusual in| +10990|75893|O|263948.05|1997-12-26|3-MEDIUM|Clerk#000000193|0|blithely even packages. furiously regular platelets wake fluffily. slyly eve| +10991|82651|F|195190.77|1995-02-13|1-URGENT|Clerk#000000213|0|excuses. furiously final accounts will haggle slyly. requests doze | +11016|102388|O|135703.89|1998-07-15|2-HIGH|Clerk#000000506|0| pinto beans maintain furiously ironic instructions. final foxes wak| +11017|19600|F|290163.58|1993-08-06|5-LOW|Clerk#000000202|0|ing accounts. unusua| +11018|138190|O|87925.57|1995-12-21|5-LOW|Clerk#000000339|0|oze fluffily. final platelets haggle according to the ideas. blithely care| +11019|98600|P|98940.02|1995-03-15|4-NOT SPECIFIED|Clerk#000000044|0|n deposits about the quickly regular deposits sleep above the slyly| +11020|117199|F|139323.93|1992-08-02|2-HIGH|Clerk#000000987|0|-- quickly silent foxes boost along the blithely express wa| +11021|81115|F|242289.34|1992-11-16|4-NOT SPECIFIED|Clerk#000000664|0|r pinto beans. blithely even somas haggle across the even requests. furiou| +11022|76421|O|88154.55|1997-11-23|1-URGENT|Clerk#000000632|0|ecial theodolites integrate thinly furiously regular multipliers. express, | +11023|97405|F|261336.14|1994-08-31|2-HIGH|Clerk#000000338|0|l, final dolphins-- slyly ironic warthogs sleep fluffily.| +11048|128302|F|41997.56|1993-09-06|2-HIGH|Clerk#000000923|0|ckages. regular pinto beans wake. furiously regular deco| +11049|105832|O|228521.80|1996-11-14|3-MEDIUM|Clerk#000000834|0|ar pinto beans-- regularly un| +11050|137654|O|18900.32|1998-02-14|2-HIGH|Clerk#000000379|0|ously special requests doubt carefully. ironic, ironic a| +11051|94346|F|57918.20|1992-12-18|1-URGENT|Clerk#000000238|0|gle blithely about the evenly ironic requests. quickly ironic esca| +11052|15709|O|210278.92|1998-03-10|1-URGENT|Clerk#000000454|0|ously final pinto beans. dependencies cajole. ironic, pending braids| +11053|21158|O|203235.50|1997-12-21|4-NOT SPECIFIED|Clerk#000000106|0|layers. slyly final deposits about the even requests thra| +11054|86479|O|131991.69|1998-05-01|5-LOW|Clerk#000000821|0|ourts. blithely even instructions haggle | +11055|71951|F|41894.03|1994-10-02|4-NOT SPECIFIED|Clerk#000000824|0|s solve blithely against the blith| +11080|124618|F|225946.30|1992-04-24|4-NOT SPECIFIED|Clerk#000000870|0|-- furiously express id| +11081|126082|F|156870.14|1994-12-28|2-HIGH|Clerk#000000327|0|equests. blithely silent deposits cajole at the sly| +11082|5281|F|252627.99|1995-01-24|3-MEDIUM|Clerk#000000308|0|ntly ironic packages. slyly regular accounts wake blithely special| +11083|102910|F|166236.54|1992-12-19|4-NOT SPECIFIED|Clerk#000000490|0|ep carefully slyly fluffy instructions. slyly slow pinto beans cajole | +11084|76075|O|233422.82|1998-06-28|3-MEDIUM|Clerk#000000062|0|uriously fluffily busy ideas. carefully final requests according to the blithe| +11085|125651|O|29752.69|1996-10-12|3-MEDIUM|Clerk#000000150|0|ions use boldly. slyly silent pinto b| +11086|109639|O|68552.30|1995-09-24|5-LOW|Clerk#000000180|0|ependencies use carefully after the furiously bold ins| +11087|96223|O|42830.72|1996-03-03|4-NOT SPECIFIED|Clerk#000000266|0|ent orbits. regular, ironic theodolites across the carefully| +11112|38854|O|40430.78|1996-12-31|5-LOW|Clerk#000000464|0|even packages nag express requests. busily final ideas would nag slyly fina| +11113|52694|O|233381.13|1997-02-24|5-LOW|Clerk#000000136|0|he final theodolites! busy requests sleep quickly. furiously spec| +11114|20479|F|119476.58|1992-03-29|2-HIGH|Clerk#000000996|0|ully special warhors| +11115|77114|F|280081.09|1993-09-14|2-HIGH|Clerk#000000420|0| furiously. daringly express packages above the blithely| +11116|46672|O|94174.53|1997-10-17|5-LOW|Clerk#000000991|0|fter the slyly pending depos| +11117|64285|F|140509.42|1992-04-14|3-MEDIUM|Clerk#000000068|0|carefully ironic foxes. quickly final foxes are. final deposits| +11118|125005|F|151407.83|1994-12-29|2-HIGH|Clerk#000000785|0|ctions. blithely bold d| +11119|55888|F|102105.66|1994-12-30|4-NOT SPECIFIED|Clerk#000000960|0|equests. ironic, silent | +11144|141061|O|137618.08|1995-12-12|1-URGENT|Clerk#000000089|0| players. blithely regular instructions snooze express requests. ironic pack| +11145|38236|F|37794.14|1994-10-31|2-HIGH|Clerk#000000784|0|out the carefully regular dolphins was requests. blithely bold pa| +11146|29378|F|55893.37|1994-08-18|1-URGENT|Clerk#000000076|0|s about the express, even gifts haggle carefully fl| +11147|92633|F|93692.26|1992-01-08|2-HIGH|Clerk#000000495|0|jole. stealthy accounts boost furiously. final pla| +11148|31510|P|112991.91|1995-05-21|5-LOW|Clerk#000000425|0|y unusual ideas integrate instructions-- pinto beans nag blithel| +11149|64342|O|336720.57|1997-11-21|5-LOW|Clerk#000000213|0|ously regular requests cajole blithely according to the express foxes. c| +11150|35651|P|139853.28|1995-04-05|1-URGENT|Clerk#000000896|0|de of the unusual, unusual re| +11151|72232|F|38155.84|1993-10-30|3-MEDIUM|Clerk#000000781|0|ter the even, unusual multiplier| +11176|39652|F|272589.04|1994-12-02|2-HIGH|Clerk#000000705|0|into beans around the slyly final accounts sleep ironic packages. brave ins| +11177|111085|F|213415.05|1992-07-11|5-LOW|Clerk#000000328|0|ual requests cajole fur| +11178|84104|F|329598.29|1993-06-20|5-LOW|Clerk#000000183|0|ng requests nag slowly after t| +11179|72272|O|60020.05|1996-06-14|2-HIGH|Clerk#000000803|0|e blithely ironic theodolites. final theodolites r| +11180|108814|O|90606.88|1997-01-25|5-LOW|Clerk#000000479|0|x blithely. special excuses sleep slyly quickly pending requests. reg| +11181|10354|O|106321.22|1995-10-31|1-URGENT|Clerk#000000766|0|fully even requests wake enticingly after | +11182|19196|O|157189.39|1997-02-24|2-HIGH|Clerk#000000814|0|gular realms haggle | +11183|121336|O|209782.43|1997-02-19|2-HIGH|Clerk#000000086|0|tegrate carefully i| +11208|37102|F|130468.26|1992-02-23|5-LOW|Clerk#000000004|0|equests are slyly across the s| +11209|17849|O|215775.02|1995-06-26|3-MEDIUM|Clerk#000000759|0|nding pains above the furiously | +11210|126223|O|51910.04|1996-07-21|2-HIGH|Clerk#000000547|0|lithely unusual deposits haggl| +11211|115607|O|72732.60|1996-07-27|5-LOW|Clerk#000000439|0|l deposits solve against the carefully even | +11212|41168|F|216668.04|1994-07-12|3-MEDIUM|Clerk#000000016|0| carefully carefully final deposits. furiously ironic excuses are blithely| +11213|101675|O|338080.51|1997-05-11|1-URGENT|Clerk#000000849|0| busy ideas. dependenci| +11214|49000|F|43987.02|1992-01-01|3-MEDIUM|Clerk#000000905|0|quickly unusual theodolites.| +11215|32893|F|244547.75|1995-03-19|4-NOT SPECIFIED|Clerk#000000719|0|g the even asymptotes. f| +11240|76129|O|26136.69|1998-04-27|2-HIGH|Clerk#000000368|0|. furiously final pi| +11241|148240|O|115735.23|1997-08-18|5-LOW|Clerk#000000640|0|oxes: accounts cajole regular, special accounts. furiously ironi| +11242|116912|O|46263.94|1998-07-08|5-LOW|Clerk#000000758|0|nal theodolites solve? | +11243|76153|F|91105.49|1994-02-26|1-URGENT|Clerk#000000274|0|le silent, bold deposits. slyly pending packages cajole blithely above | +11244|102502|F|142444.17|1992-06-02|4-NOT SPECIFIED|Clerk#000000062|0|ending frets! fluffi| +11245|91|F|133256.10|1993-08-15|3-MEDIUM|Clerk#000000264|0|t instructions. requests boost final accounts. dolphins about the bold the| +11246|125|O|202583.54|1996-10-27|2-HIGH|Clerk#000000268|0|solve. express packages boost boldly final p| +11247|147619|O|12403.97|1995-11-12|5-LOW|Clerk#000000364|0|ncies. regular deposits cajole quickly among the quickly silent de| +11272|29056|O|269339.74|1997-06-12|1-URGENT|Clerk#000000214|0|ular requests about the furiously pending p| +11273|85093|F|274119.60|1992-03-19|5-LOW|Clerk#000000212|0|heodolites haggle quickly. excuses sleep carefully above | +11274|33169|O|91094.58|1998-04-14|2-HIGH|Clerk#000000898|0|sts. express packages affix against the furiously sly pac| +11275|55312|O|266972.09|1995-06-20|5-LOW|Clerk#000000061|0|y above the pending accounts. fluffily even | +11276|59746|F|251909.70|1992-01-02|5-LOW|Clerk#000000805|0|nd the quickly regular deposit| +11277|19813|O|276624.56|1996-09-21|1-URGENT|Clerk#000000129|0|. blithely quiet requests boost furiously final requests.| +11278|114097|O|203934.24|1997-09-03|5-LOW|Clerk#000000922|0|unts are blithely carefully| +11279|15115|F|167513.14|1992-01-17|5-LOW|Clerk#000000468|0|o beans. blithely pending accounts ar| +11304|79156|O|91614.86|1995-05-15|2-HIGH|Clerk#000000005|0|ouches. ironic foxes haggle carefully requests. pending, even pains wake c| +11305|146708|F|44467.87|1994-07-22|4-NOT SPECIFIED|Clerk#000000191|0|pending asymptotes affix fluffily ironic, quiet deposits. final| +11306|14392|O|79960.57|1996-11-19|2-HIGH|Clerk#000000265|0|ackages. fluffily regular accounts are furiously. pending ideas | +11307|83486|F|43494.35|1994-10-21|2-HIGH|Clerk#000000978|0|re furiously after the ideas. carefully pending deposits s| +11308|46321|F|46018.37|1993-02-08|5-LOW|Clerk#000000128|0|pinto beans. final ideas boost. blithely regular depe| +11309|5348|O|246601.56|1997-07-25|2-HIGH|Clerk#000000402|0|-- boldly final pinto beans integrate against the quic| +11310|27998|F|49657.50|1994-10-26|2-HIGH|Clerk#000000273|0|ular foxes. deposits sleep fluffily furiously unusual excuses. s| +11311|5231|F|11243.73|1992-04-16|2-HIGH|Clerk#000000038|0|ptotes? fluffily final ideas detec| +11336|13250|F|255605.67|1995-01-12|2-HIGH|Clerk#000000779|0|ackages. carefully regular deposits | +11337|82666|F|292084.81|1995-03-29|2-HIGH|Clerk#000000515|0|ans are ironically. final reques| +11338|66395|O|10756.68|1996-02-12|4-NOT SPECIFIED|Clerk#000000410|0|ts haggle among the courts--| +11339|40384|F|239362.44|1992-06-29|2-HIGH|Clerk#000000117|0|ilently along the theodoli| +11340|110305|F|253236.55|1992-05-21|1-URGENT|Clerk#000000034|0|lly final platelets. furiously| +11341|16433|F|101274.10|1993-11-20|4-NOT SPECIFIED|Clerk#000000108|0|ions integrate! regular, final dinos integrate quickly even packages. slyl| +11342|31057|O|238682.47|1998-05-31|4-NOT SPECIFIED|Clerk#000000420|0| special excuses. unusual, unusual epitaphs boost c| +11343|92294|O|28372.56|1997-05-29|2-HIGH|Clerk#000000634|0|ly even excuses. theodolites unwin| +11368|34813|F|140585.08|1994-02-22|1-URGENT|Clerk#000000904|0|the quickly bold requests in| +11369|74842|O|112471.26|1996-04-06|4-NOT SPECIFIED|Clerk#000000437|0|al, ironic deposits wake along the silent| +11370|117925|F|223494.77|1992-03-10|2-HIGH|Clerk#000000373|0|riously regular deposits haggle slyly across the ironic, regul| +11371|148024|O|13026.60|1998-05-11|2-HIGH|Clerk#000000961|0|nal, dogged packages. pending platelets nag quickly around | +11372|82409|F|258999.45|1994-01-05|1-URGENT|Clerk#000000498|0|nag. slyly final packages af| +11373|92797|F|78671.33|1994-02-19|3-MEDIUM|Clerk#000000019|0| use carefully. boldly even pinto beans haggle carefully across t| +11374|61279|F|87531.06|1993-08-01|1-URGENT|Clerk#000000622|0|ts! final instructions h| +11375|143891|F|285410.27|1992-08-18|5-LOW|Clerk#000000352|0|ronic accounts nag about the furiously even ins| +11400|60487|O|90152.37|1997-06-26|4-NOT SPECIFIED|Clerk#000000261|0|y pending hockey players! even, express theodolites | +11401|25058|O|38549.23|1996-10-31|2-HIGH|Clerk#000000655|0|y regular requests. pinto beans hinder even,| +11402|90347|F|224794.65|1992-09-28|4-NOT SPECIFIED|Clerk#000000505|0|ly regular instructions are| +11403|9383|O|111875.63|1997-03-21|4-NOT SPECIFIED|Clerk#000000603|0|press accounts against the requests wake carefully express theodolite| +11404|34600|O|143407.14|1997-12-23|4-NOT SPECIFIED|Clerk#000000782|0| serve slyly alongside of the pending, regular account| +11405|95449|O|160359.01|1997-05-04|4-NOT SPECIFIED|Clerk#000000422|0| deposits boost slyly. fluffi| +11406|101326|F|18707.88|1995-02-17|5-LOW|Clerk#000000806|0|eodolites sleep. furiously even deposits wake slyly final ideas. slyly | +11407|13897|F|57486.77|1995-02-10|3-MEDIUM|Clerk#000000814|0|. furiously regular packages wake against the enticingly unusual theodolites. | +11432|138181|O|30529.69|1997-12-24|3-MEDIUM|Clerk#000000766|0|ding to the final re| +11433|107020|O|53633.48|1997-05-04|1-URGENT|Clerk#000000383|0| around the final gifts. accounts wake packages. ironic deposits play abo| +11434|28879|O|137211.17|1998-04-21|4-NOT SPECIFIED|Clerk#000000517|0|inal excuses nag carefully ironi| +11435|117496|F|16001.02|1993-05-15|3-MEDIUM|Clerk#000000552|0|ffily final accounts sleep quickly according to the slyly | +11436|126737|O|140930.82|1995-12-12|5-LOW|Clerk#000000748|0|d instructions. express, pending | +11437|58165|F|63047.90|1994-06-21|4-NOT SPECIFIED|Clerk#000000697|0|lar packages wake furiousl| +11438|23777|F|95635.80|1994-01-11|2-HIGH|Clerk#000000922|0|ely final accounts. car| +11439|11668|O|16996.70|1997-12-27|2-HIGH|Clerk#000000114|0|encies. furiously furious excuses sleep blithe| +11464|23096|O|182120.78|1997-08-02|3-MEDIUM|Clerk#000000828|0|ng the quickly regul| +11465|120470|O|11405.69|1997-10-07|4-NOT SPECIFIED|Clerk#000000311|0|final, unusual packages sleep fluffily slyly eve| +11466|31018|O|123874.54|1995-11-12|3-MEDIUM|Clerk#000000617|0|ronic, bold dependencies use fluf| +11467|61051|O|303359.20|1998-03-14|2-HIGH|Clerk#000000823|0|refully even packages integrate blithely. final deposits boost | +11468|66395|O|146087.82|1997-05-08|3-MEDIUM|Clerk#000000154|0|e thinly even theodolites. regularly pending excuses after the gifts use | +11469|34195|O|16404.98|1998-02-27|5-LOW|Clerk#000000336|0|are. furiously bold deposits cajole furiously fina| +11470|59953|P|278406.65|1995-04-27|4-NOT SPECIFIED|Clerk#000000565|0|c packages? quickly final packages serve against the b| +11471|47086|O|268504.53|1997-04-21|4-NOT SPECIFIED|Clerk#000000461|0|efully ironic deposits us| +11496|99329|F|159406.16|1994-08-07|2-HIGH|Clerk#000000023|0|ending foxes wake blithely among the special deposits. blithely regular| +11497|59878|O|95692.89|1998-04-02|3-MEDIUM|Clerk#000000036|0|uests. furiously final packages haggle across the deposits. ironi| +11498|14731|F|87548.61|1993-05-26|5-LOW|Clerk#000000848|0|old instructions along the special pinto beans mol| +11499|79018|P|254404.74|1995-04-08|3-MEDIUM|Clerk#000000829|0| blithely final platelets cajole slyly above the even accounts. furiou| +11500|73537|F|3785.21|1993-09-04|3-MEDIUM|Clerk#000000803|0|furiously silent deposits. quic| +11501|62321|O|54995.72|1996-04-25|3-MEDIUM|Clerk#000000846|0|furiously express requests. blithely iron| +11502|117472|O|255073.57|1996-02-18|5-LOW|Clerk#000000275|0|ly special requests detect acro| +11503|26878|O|92343.59|1995-09-10|3-MEDIUM|Clerk#000000213|0|s unwind about the brave accounts. requests above the fur| +11528|84724|O|238905.94|1997-08-02|1-URGENT|Clerk#000000628|0|according to the regular deposits. final attainments grow? carefully| +11529|141140|O|60058.60|1998-07-06|2-HIGH|Clerk#000000691|0|s use among the furiously regular requests. blithely regular dep| +11530|26047|F|91800.86|1994-08-30|2-HIGH|Clerk#000000374|0|etect blithely. carefully silent foxes could have to affix quickl| +11531|55616|O|90297.64|1995-09-22|5-LOW|Clerk#000000191|0|ter the furiously busy excuses. unusual accounts nag| +11532|82889|O|159785.06|1997-01-25|3-MEDIUM|Clerk#000000266|0|ess requests wake daringly ironic asymptotes. excuses boost | +11533|65122|F|153337.83|1992-12-20|1-URGENT|Clerk#000000838|0|odolites. final, pending accounts cajole slyly about the bold, si| +11534|98029|F|299878.70|1992-06-21|2-HIGH|Clerk#000000733|0|ronic asymptotes wake slyly | +11535|97865|O|116218.54|1998-01-04|1-URGENT|Clerk#000000737|0|e carefully silent sheaves: | +11560|52510|F|168202.22|1993-09-12|1-URGENT|Clerk#000000863|0|ounts are carefully along the blithely fin| +11561|78610|O|168726.86|1996-11-08|1-URGENT|Clerk#000000753|0|slyly ironic instructions. quickly even deposits serve regula| +11562|141337|O|269421.49|1998-05-27|4-NOT SPECIFIED|Clerk#000000120|0|ve the even deposits wake against the carefully express dependencies. re| +11563|32638|O|155203.63|1996-12-02|1-URGENT|Clerk#000000192|0|ar accounts haggle along the foxes. blithely silent theodolit| +11564|129265|F|117594.85|1993-04-26|3-MEDIUM|Clerk#000000101|0|e quickly regular platelets. e| +11565|95644|O|304404.77|1997-10-23|5-LOW|Clerk#000000283|0|uriously final pinto beans. furiously pending platelets cajole| +11566|60499|O|255578.25|1996-08-26|5-LOW|Clerk#000000592|0| unusual packages. slyly express foxes shall nag blithely according to th| +11567|96124|O|234106.56|1995-12-18|5-LOW|Clerk#000000388|0|gle carefully to the regular deposits. slow, unu| +11592|52750|F|48260.77|1995-03-20|4-NOT SPECIFIED|Clerk#000000338|0| regular, final dolph| +11593|51775|O|243003.80|1998-02-05|1-URGENT|Clerk#000000183|0|lyly unusual foxes are blithely accounts! special, regular instructions | +11594|26753|F|18022.57|1995-01-21|4-NOT SPECIFIED|Clerk#000000751|0|c packages haggle slyly. unu| +11595|75305|O|123317.20|1996-04-20|3-MEDIUM|Clerk#000000249|0|furiously bold courts are alongside of the instruct| +11596|99139|O|268263.74|1997-12-24|2-HIGH|Clerk#000000009|0|he blithely unusual foxes. furiously ironic reques| +11597|2591|F|183090.33|1993-11-25|5-LOW|Clerk#000000853|0|boost quickly fluffily pending ideas. blithely even deposits wake blithely.| +11598|38578|F|130178.00|1994-09-18|1-URGENT|Clerk#000000785|0| quickly even foxes. deposits haggle along the gro| +11599|51053|O|177688.57|1996-09-08|4-NOT SPECIFIED|Clerk#000000978|0|y furiously ironic requests.| +11624|41561|F|252355.49|1993-03-19|2-HIGH|Clerk#000000692|0|. ironic, ironic platel| +11625|101401|F|248488.71|1992-05-09|3-MEDIUM|Clerk#000000800|0|olites among the furiously| +11626|93379|O|111962.16|1997-01-18|2-HIGH|Clerk#000000661|0|efully furiously even courts. slyly ironic d| +11627|96169|F|192780.69|1992-10-04|5-LOW|Clerk#000000055|0|ly pending deposits mold finally| +11628|59711|F|276603.69|1993-03-22|2-HIGH|Clerk#000000815|0|y final instructions. furiously even theodolites try to ar| +11629|57722|F|238468.76|1994-10-29|3-MEDIUM|Clerk#000000321|0|ages maintain slyly requests. blithely final ideas eat according to th| +11630|70153|F|167209.87|1992-06-13|4-NOT SPECIFIED|Clerk#000000541|0|carefully regular platelets haggle furiously ironic accounts. slyly regul| +11631|40876|F|216653.70|1993-02-21|4-NOT SPECIFIED|Clerk#000000943|0|ent accounts. closely blithe requests cajole blithely quickly | +11656|126680|O|88834.07|1996-07-10|3-MEDIUM|Clerk#000000953|0| the bravely regular instructions are along the blith| +11657|3718|O|208135.17|1996-05-03|4-NOT SPECIFIED|Clerk#000000750|0|ial requests. regular, ir| +11658|65630|F|206734.00|1994-03-27|3-MEDIUM|Clerk#000000676|0|requests. bold instructions among the quickl| +11659|89150|F|354327.12|1992-12-11|1-URGENT|Clerk#000000218|0|ly regular ideas must int| +11660|132355|O|124420.25|1995-10-15|5-LOW|Clerk#000000848|0|riously special packages cajole quickly. carefully express pac| +11661|137482|O|18685.14|1996-10-02|3-MEDIUM|Clerk#000000867|0|le furiously carefully fina| +11662|34213|O|153840.01|1998-01-24|3-MEDIUM|Clerk#000000976|0| special pinto beans. final| +11663|36026|O|25974.09|1995-03-26|3-MEDIUM|Clerk#000000419|0|inally ironic ideas haggle fluffily quickly final ideas. furious| +11688|79408|F|108303.73|1994-09-24|5-LOW|Clerk#000000849|0|e deposits. furiously express deposi| +11689|51509|O|100514.45|1998-03-19|3-MEDIUM|Clerk#000000111|0|oubt after the blithely special deposits. c| +11690|47417|O|252252.92|1996-07-02|1-URGENT|Clerk#000000385|0|lly regular requests a| +11691|125755|F|113428.19|1994-05-27|4-NOT SPECIFIED|Clerk#000000351|0|unts cajole carefully.| +11692|42418|F|195426.09|1992-11-18|2-HIGH|Clerk#000000564|0| to the special, final pains maintain fluff| +11693|117670|F|106213.51|1992-10-13|2-HIGH|Clerk#000000557|0|ly express packages ought to are about the regular requests; blithely bold| +11694|47323|F|260648.91|1994-06-19|4-NOT SPECIFIED|Clerk#000000922|0|packages cajole slyly. blithely regular accounts nag slyly. regular pint| +11695|30257|O|81463.42|1996-02-06|1-URGENT|Clerk#000000057|0|to beans. busily pending packages use s| +11720|25313|F|26795.28|1994-09-24|3-MEDIUM|Clerk#000000493|0|ously ironic ideas. regular, pending platelets across the fu| +11721|32158|O|92730.15|1995-09-05|5-LOW|Clerk#000000269|0|lly slyly special instructions; final, stealthy r| +11722|1723|O|66542.05|1997-03-07|4-NOT SPECIFIED|Clerk#000000209|0|packages cajole closely. ironic foxes sleep pinto beans. slyly ironic th| +11723|145534|F|65738.67|1994-12-20|4-NOT SPECIFIED|Clerk#000000615|0|cuses. ironic multipliers| +11724|83359|F|181610.54|1993-03-07|4-NOT SPECIFIED|Clerk#000000123|0|nts. regular dolphins along the qu| +11725|136720|F|26585.33|1993-01-17|5-LOW|Clerk#000000731|0|posits. final theodolites are. fluffily pending instructions are quick| +11726|136472|F|59828.96|1993-03-10|2-HIGH|Clerk#000000334|0|egrate blithely. enticingly express theodoli| +11727|25436|F|238409.66|1992-02-06|2-HIGH|Clerk#000000786|0|ely about the deposits. carefully unusual plat| +11752|613|O|214929.53|1995-06-21|5-LOW|Clerk#000000333|0|y ironic frets. furio| +11753|101249|F|114078.96|1994-11-25|5-LOW|Clerk#000000029|0|ly. regular instructions according | +11754|81854|O|245414.87|1995-06-15|5-LOW|Clerk#000000421|0|ly among the silent requests. final accounts about the daring requests sle| +11755|67337|F|236194.28|1993-04-30|2-HIGH|Clerk#000000747|0|totes. quickly even depths sleep. carefully| +11756|121390|O|90214.32|1997-04-12|3-MEDIUM|Clerk#000000039|0|special accounts. regular, spe| +11757|21445|F|195133.45|1992-10-01|1-URGENT|Clerk#000000055|0|usual instructions are blithe| +11758|99952|O|262205.24|1998-04-25|4-NOT SPECIFIED|Clerk#000000947|0|es haggle slyly silent requests.| +11759|12946|O|251119.86|1997-06-09|1-URGENT|Clerk#000000959|0|ackages. regular accounts sleep furiously theodolites.| +11784|56062|F|56618.25|1994-08-22|5-LOW|Clerk#000000677|0|luffily unusual requests-- fluffily ironic| +11785|55075|O|225646.04|1998-06-27|3-MEDIUM|Clerk#000000848|0| requests; ironic accounts| +11786|127778|O|150264.58|1998-02-28|4-NOT SPECIFIED|Clerk#000000378|0|ul dependencies alongside of the quickly silent grouches engage acc| +11787|12466|F|235830.78|1993-05-05|1-URGENT|Clerk#000000022|0| even foxes wake blithely careful| +11788|103405|O|59982.53|1995-09-26|4-NOT SPECIFIED|Clerk#000000425|0| final asymptotes detec| +11789|25402|O|84098.05|1995-10-07|5-LOW|Clerk#000000574|0|yly regular gifts. carefully even requests haggle carefu| +11790|12221|F|217016.53|1993-01-28|3-MEDIUM|Clerk#000000048|0|ithely unusual packages nag quickly blithely bold requests. even, iron| +11791|41683|O|76287.23|1995-07-30|4-NOT SPECIFIED|Clerk#000000359|0|es along the special deposits affix blithel| +11816|57028|F|173951.35|1995-01-22|4-NOT SPECIFIED|Clerk#000000741|0|braids over the even, silent excuses migh| +11817|106432|F|223725.60|1994-04-05|1-URGENT|Clerk#000000442|0|thely special pains are quickly unusual deposits. careful| +11818|30905|F|237320.12|1992-09-09|3-MEDIUM|Clerk#000000531|0|pending deposits maintain blithely. fin| +11819|105596|F|141314.97|1995-01-17|3-MEDIUM|Clerk#000000540|0|lar accounts. bravely enticing accounts c| +11820|100420|P|122513.94|1995-03-16|1-URGENT|Clerk#000000305|0|n requests wake fluffily after the bold, even attainments. | +11821|104383|F|90806.70|1992-11-30|2-HIGH|Clerk#000000325|0|olites. special, ironic requests along the packages integra| +11822|92798|F|307282.01|1994-01-18|2-HIGH|Clerk#000000013|0|ar theodolites are slowly. blithely even re| +11823|92138|O|253253.57|1997-10-06|4-NOT SPECIFIED|Clerk#000000267|0|lites. always ironic packages haggle across the deposits. carefull| +11848|103966|F|84454.98|1994-02-26|2-HIGH|Clerk#000000803|0|the even packages; carefu| +11849|52|F|150381.81|1993-02-06|1-URGENT|Clerk#000000876|0|e quickly. carefully ironi| +11850|105461|O|202144.99|1997-08-01|3-MEDIUM|Clerk#000000213|0|deposits are carefully along the slyly even pla| +11851|68203|O|181445.74|1996-07-21|1-URGENT|Clerk#000000944|0|usly special deposits. fluffily final pla| +11852|126403|F|371767.74|1993-09-06|5-LOW|Clerk#000000689|0|carefully pending accounts.| +11853|133873|O|209544.97|1995-12-31|1-URGENT|Clerk#000000971|0|y fluffy instructions sublate fluffily among the slyly busy deposi| +11854|142972|O|247777.80|1997-04-08|4-NOT SPECIFIED|Clerk#000000010|0|. pinto beans use final accounts. final excuses are. ironic excuses sleep f| +11855|51019|O|123818.15|1996-04-06|5-LOW|Clerk#000000961|0|. furiously pending dolphins play? special, bold theodolites integrate blith| +11880|54719|F|121333.46|1994-03-21|4-NOT SPECIFIED|Clerk#000000759|0|slyly across the even, spe| +11881|6049|F|96125.41|1992-04-11|4-NOT SPECIFIED|Clerk#000000541|0|xes use against the carefully | +11882|91747|F|36374.91|1992-01-18|4-NOT SPECIFIED|Clerk#000000548|0|terns doubt. furiously even pinto be| +11883|116788|O|15189.09|1998-06-05|2-HIGH|Clerk#000000416|0| wake theodolites. even deposits wake careful| +11884|87055|O|123754.11|1998-05-19|4-NOT SPECIFIED|Clerk#000000983|0|nts? quickly final ideas must p| +11885|28637|O|275986.71|1995-10-15|2-HIGH|Clerk#000000506|0|side of the final dolphins. blithely regular asymptot| +11886|92513|F|137689.06|1993-03-11|1-URGENT|Clerk#000000349|0|ily ironic excuses. fluffily ir| +11887|99356|F|346790.08|1995-03-09|5-LOW|Clerk#000000384|0|lar asymptotes. furiously ironic | +11912|66001|F|281240.72|1994-02-20|3-MEDIUM|Clerk#000000959|0|s cajole furiously about the packages. theodolites cajole acr| +11913|178|F|172993.32|1994-11-21|3-MEDIUM|Clerk#000000561|0|unts detect! packages lose furiously. | +11914|132755|O|52255.82|1996-10-24|5-LOW|Clerk#000000833|0|pecial courts sleep silent packages. pe| +11915|99091|O|86901.57|1995-06-26|5-LOW|Clerk#000000311|0| special accounts are carefully according to| +11916|90194|O|18825.65|1995-12-10|5-LOW|Clerk#000000799|0|the even dependencies. pending dependencies affix furiously along| +11917|130747|F|136454.49|1992-06-08|4-NOT SPECIFIED|Clerk#000000294|0|unts use furiously among the final requests. reques| +11918|91816|O|69790.35|1995-07-16|4-NOT SPECIFIED|Clerk#000000356|0|le blithely even rea| +11919|88309|F|119892.17|1993-04-05|4-NOT SPECIFIED|Clerk#000000995|0|ies. dependencies sleep alongside of the | +11944|103601|O|116617.79|1996-05-24|1-URGENT|Clerk#000000238|0|packages use blithely. blithely ironic foxes nag blithely. request| +11945|21491|F|159383.52|1992-01-01|5-LOW|Clerk#000000416|0|ck requests. slyly even accounts ar| +11946|145043|O|68621.19|1997-11-16|5-LOW|Clerk#000000067|0|g packages cajole carefully after the regularly regular i| +11947|70996|O|87010.69|1995-11-05|2-HIGH|Clerk#000000169|0|, regular pinto beans wake. ironic, regular theodolites are furiously after| +11948|108590|F|196068.86|1992-09-10|4-NOT SPECIFIED|Clerk#000000150|0|ithely ironic requests haggle carefu| +11949|14087|F|98130.46|1992-11-12|5-LOW|Clerk#000000808|0|ts. slyly pending excuses affix ab| +11950|47302|O|159878.21|1995-12-28|1-URGENT|Clerk#000000810|0|use. express, express p| +11951|132748|F|158728.30|1995-02-01|3-MEDIUM|Clerk#000000019|0|arefully final ideas. slyly ironic accounts h| +11976|131830|O|168336.63|1998-03-26|5-LOW|Clerk#000000127|0|permanently across the hockey players.| +11977|142399|O|245999.01|1998-02-10|4-NOT SPECIFIED|Clerk#000000357|0|usly-- fluffily express ideas wake multi| +11978|35105|O|257904.90|1996-01-14|3-MEDIUM|Clerk#000000410|0|sly even, ironic ideas. pending, ironic platelets | +11979|51553|O|237268.94|1997-09-07|5-LOW|Clerk#000000351|0|y bold instructions boost express deposits. carefully fin| +11980|19984|O|73805.70|1998-04-09|3-MEDIUM|Clerk#000000770|0|l, express frets caj| +11981|142853|F|118733.24|1992-03-21|1-URGENT|Clerk#000000340|0|ongside of the quickly spec| +11982|13768|O|150098.19|1996-08-11|5-LOW|Clerk#000000227|0| around the even packages. furiou| +11983|84706|F|81057.07|1993-04-13|5-LOW|Clerk#000000610|0|unusual pinto beans sleep furiously. braids integrate. ironic, regular ins| +12008|142771|F|63418.96|1993-06-12|3-MEDIUM|Clerk#000000085|0|ravely according to the quietly final theodolites? expres| diff --git a/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u1 b/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u1 new file mode 100644 index 0000000..98d6eeb --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u1 @@ -0,0 +1,30141 @@ +9|182997|45501|1|48|99839.52|0.05|0.05|R|F|1993-01-02|1993-01-11|1993-01-19|NONE|SHIP|mong the deposits| +10|487430|49940|1|34|48191.94|0.00|0.01|N|O|1997-11-02|1997-10-29|1997-11-17|NONE|MAIL|slyly pending requests| +10|230907|5916|2|40|73515.60|0.09|0.07|N|O|1997-12-10|1997-09-28|1997-12-20|TAKE BACK RETURN|FOB|ets. regular somas breach ironic depo| +11|96139|46140|1|16|18162.08|0.10|0.01|R|F|1992-11-25|1992-11-22|1992-12-16|DELIVER IN PERSON|MAIL|refully even | +11|804907|29940|2|40|72474.40|0.07|0.06|A|F|1992-10-24|1992-12-15|1992-10-27|TAKE BACK RETURN|SHIP|oxes wake regularly theodolites. slyly un| +11|67771|42774|3|7|12171.39|0.04|0.01|A|F|1993-01-14|1992-12-28|1993-01-18|COLLECT COD|AIR|refully-- sly| +12|419067|6592|1|48|47329.92|0.10|0.08|A|F|1994-08-16|1994-07-13|1994-08-18|TAKE BACK RETURN|AIR|longside of the blit| +12|243366|5871|2|22|28805.70|0.00|0.06|R|F|1994-05-25|1994-06-26|1994-06-20|TAKE BACK RETURN|MAIL|ress excuses. regular, ironic package| +12|242460|42461|3|9|12622.05|0.03|0.04|A|F|1994-06-21|1994-07-18|1994-06-22|DELIVER IN PERSON|AIR|d requests cajol| +12|21816|34317|4|7|12164.67|0.00|0.05|R|F|1994-06-22|1994-08-08|1994-07-03|COLLECT COD|TRUCK| the even requests. sl| +12|646813|34350|5|43|75670.54|0.02|0.07|A|F|1994-06-08|1994-07-22|1994-06-19|TAKE BACK RETURN|FOB|ular pinto beans sleep bold pack| +12|972261|22262|6|11|14665.42|0.05|0.06|R|F|1994-09-22|1994-07-12|1994-10-19|TAKE BACK RETURN|SHIP|sleep blithely. unusual courts ca| +13|386551|49059|1|28|45851.12|0.08|0.04|N|O|1997-09-20|1997-08-11|1997-10-01|NONE|AIR|es across the furious| +14|512966|497|1|44|87073.36|0.01|0.05|A|F|1993-04-14|1993-04-01|1993-04-22|TAKE BACK RETURN|SHIP|gular frets| +15|740801|40802|1|31|57094.87|0.00|0.05|N|O|1995-06-26|1995-08-19|1995-07-16|DELIVER IN PERSON|RAIL|longside of the| +40|173962|36466|1|45|91618.20|0.01|0.07|A|F|1992-11-29|1993-01-02|1992-12-08|TAKE BACK RETURN|MAIL|bout the slyly final| +40|774066|11612|2|48|54721.44|0.04|0.04|R|F|1993-03-06|1993-02-08|1993-03-21|TAKE BACK RETURN|AIR|carefully to the ironic, quiet reques| +40|715377|2920|3|50|69617.00|0.07|0.06|A|F|1992-12-22|1993-02-14|1993-01-04|DELIVER IN PERSON|MAIL|silent pac| +40|326166|13685|4|18|21458.70|0.05|0.05|R|F|1992-12-05|1992-12-24|1992-12-24|TAKE BACK RETURN|AIR|furiously ruthlessly busy dolphins. quickly| +40|869996|32514|5|39|76672.05|0.07|0.00|R|F|1993-03-05|1993-01-28|1993-03-13|NONE|AIR|g the furiously ironic foxes kindl| +41|938920|26475|1|4|7835.52|0.05|0.03|R|F|1994-05-30|1994-06-17|1994-06-19|DELIVER IN PERSON|SHIP|kly unusual foxes integrate. clo| +42|798480|10996|1|26|41039.70|0.06|0.01|N|O|1997-04-25|1997-03-31|1997-05-12|COLLECT COD|TRUCK|iously special orbits. regular, fi| +42|44153|31654|2|21|23040.15|0.08|0.01|N|O|1997-04-15|1997-03-17|1997-05-05|TAKE BACK RETURN|AIR|asymptotes haggle furiously;| +42|73027|23028|3|29|29000.58|0.00|0.05|N|O|1997-05-01|1997-04-13|1997-05-05|NONE|FOB|uick packages. final foxes slee| +42|352202|2203|4|8|10033.52|0.10|0.05|N|O|1997-05-29|1997-04-12|1997-06-21|DELIVER IN PERSON|FOB| express noto| +42|457884|20394|5|35|64465.10|0.05|0.01|N|O|1997-03-08|1997-03-31|1997-03-23|TAKE BACK RETURN|REG AIR|. unusual excuses | +43|987173|37174|1|7|8820.91|0.00|0.01|N|O|1996-09-16|1996-10-28|1996-10-14|TAKE BACK RETURN|AIR|hely final pi| +43|410591|10592|2|19|28529.83|0.09|0.02|N|O|1996-10-04|1996-10-05|1996-11-02|DELIVER IN PERSON|TRUCK|nic requests wake. pen| +44|503574|3575|1|50|78877.50|0.01|0.07|A|F|1992-03-21|1992-03-11|1992-04-06|NONE|AIR|mptotes boost blithely across th| +44|564469|26981|2|26|39869.44|0.01|0.06|A|F|1992-05-07|1992-03-06|1992-05-16|DELIVER IN PERSON|SHIP|. furiously ironic platelets across the pl| +45|905327|5328|1|31|41300.68|0.09|0.02|N|O|1996-05-02|1996-07-19|1996-05-26|COLLECT COD|MAIL| carefully regular deposits haggle slyly| +45|824858|37375|2|40|71312.40|0.02|0.06|N|O|1996-05-17|1996-06-01|1996-05-20|TAKE BACK RETURN|MAIL|es against the specia| +45|376885|14407|3|10|19618.70|0.06|0.02|N|O|1996-08-11|1996-06-24|1996-08-24|COLLECT COD|FOB|kages wake across the quick| +46|70188|45191|1|19|22005.42|0.02|0.06|R|F|1994-11-27|1994-12-31|1994-12-15|DELIVER IN PERSON|TRUCK|tructions. furiously regular| +46|634508|47021|2|49|70681.03|0.00|0.05|A|F|1995-03-13|1994-12-30|1995-03-24|TAKE BACK RETURN|SHIP|ss packages cajole quickl| +47|840439|27988|1|18|24829.02|0.08|0.03|R|F|1993-11-22|1993-12-16|1993-12-10|DELIVER IN PERSON|REG AIR|ly special packages hang| +47|244532|44533|2|37|54631.24|0.02|0.02|R|F|1993-11-25|1994-01-07|1993-12-03|TAKE BACK RETURN|TRUCK|ructions cajo| +72|450831|13341|1|19|33854.39|0.05|0.00|N|O|1997-11-16|1997-10-09|1997-12-03|DELIVER IN PERSON|REG AIR|furiously pending foxes. slyly pending| +72|104071|16574|2|15|16126.05|0.01|0.06|N|O|1997-08-22|1997-09-15|1997-09-02|TAKE BACK RETURN|FOB|regular, ironic attainments can kind| +72|118866|31369|3|17|32042.62|0.08|0.02|N|O|1997-09-17|1997-09-15|1997-09-21|COLLECT COD|MAIL|eans affix. special foxes sleep!| +72|779499|17045|4|2|3156.92|0.08|0.04|N|O|1997-11-19|1997-09-11|1997-11-23|TAKE BACK RETURN|RAIL|eas wake accor| +72|35817|10818|5|10|17528.10|0.08|0.03|N|O|1997-11-06|1997-09-08|1997-11-25|COLLECT COD|MAIL|ptotes. pending foxes along the| +72|962633|25153|6|6|10173.54|0.09|0.08|N|O|1997-10-23|1997-09-26|1997-11-01|COLLECT COD|MAIL|odolites cajole furious| +73|273691|48702|1|14|23305.52|0.04|0.05|A|F|1992-07-16|1992-08-12|1992-07-18|TAKE BACK RETURN|TRUCK|sual packages. qui| +73|918299|18300|2|29|38200.25|0.02|0.04|A|F|1992-07-05|1992-08-20|1992-07-14|NONE|FOB|luffily express pl| +73|850671|672|3|5|8108.15|0.08|0.06|R|F|1992-10-13|1992-08-13|1992-10-18|COLLECT COD|AIR|uriously ironic dep| +73|216772|41781|4|9|15198.84|0.05|0.03|A|F|1992-07-27|1992-08-11|1992-07-31|NONE|MAIL|xcuses affix blithely according to the | +73|272548|35054|5|10|15205.30|0.06|0.06|R|F|1992-08-17|1992-08-31|1992-09-03|NONE|SHIP|elets affix blithely. carefully ruthless| +73|709165|9166|6|17|19960.21|0.04|0.00|A|F|1992-10-14|1992-09-07|1992-10-27|TAKE BACK RETURN|RAIL|s was furio| +74|446712|21729|1|45|74641.05|0.05|0.05|R|F|1995-04-07|1995-04-29|1995-04-17|COLLECT COD|FOB|sual pinto | +74|884954|9989|2|1|1938.91|0.00|0.00|N|O|1995-07-08|1995-05-03|1995-07-20|COLLECT COD|AIR|ckly final pinto be| +74|408454|33471|3|27|36785.61|0.03|0.00|N|F|1995-06-03|1995-04-12|1995-06-29|NONE|TRUCK|boost slyly. quickly regular pin| +74|870565|33083|4|21|32245.92|0.08|0.06|A|F|1995-04-17|1995-05-23|1995-04-28|COLLECT COD|RAIL|egular theodolites need to | +74|576140|38652|5|21|25538.52|0.09|0.01|R|F|1995-03-16|1995-04-12|1995-04-07|DELIVER IN PERSON|FOB|its sleep. regular| +74|177495|39999|6|5|7862.45|0.06|0.00|A|F|1995-04-27|1995-04-19|1995-05-24|COLLECT COD|SHIP|y bold instruct| +75|410453|47978|1|9|12270.87|0.05|0.05|N|O|1997-04-24|1997-02-16|1997-05-10|NONE|SHIP| ideas sleep furiously according to the| +76|739257|1772|1|11|14258.42|0.05|0.06|A|F|1994-06-19|1994-06-16|1994-06-30|COLLECT COD|SHIP|ress, regular accounts. ironica| +76|686894|49408|2|13|24451.18|0.02|0.07|R|F|1994-05-06|1994-06-06|1994-05-17|DELIVER IN PERSON|FOB|among the boldly bold pinto beans cajole| +76|622330|47355|3|21|26298.30|0.07|0.00|R|F|1994-08-16|1994-06-27|1994-08-20|COLLECT COD|REG AIR|regular theodolites among the wa| +76|500099|37630|4|18|19783.26|0.02|0.08|A|F|1994-08-09|1994-06-30|1994-08-13|DELIVER IN PERSON|RAIL|lar dolphins are against the pending, regu| +76|153716|16220|5|48|84946.08|0.07|0.07|R|F|1994-05-08|1994-06-05|1994-05-28|NONE|FOB|y against the blithely final ideas. final p| +76|500404|25425|6|41|57579.58|0.07|0.00|A|F|1994-07-07|1994-05-31|1994-07-08|COLLECT COD|TRUCK|es; express foxes after the ironic excuses | +77|2201|27202|1|16|17651.20|0.07|0.08|N|O|1998-08-20|1998-07-24|1998-08-28|COLLECT COD|REG AIR| even packages hagg| +77|983649|33650|2|32|55443.20|0.00|0.03|N|O|1998-07-01|1998-06-20|1998-07-07|NONE|SHIP|uriously over the blithely bold ide| +77|185551|48055|3|30|49096.50|0.01|0.00|N|O|1998-07-26|1998-07-04|1998-08-13|TAKE BACK RETURN|REG AIR|ly bold requests| +77|550929|25952|4|47|93055.30|0.02|0.07|N|O|1998-05-16|1998-07-15|1998-05-21|DELIVER IN PERSON|REG AIR|deposits. carefully even pinto beans sl| +78|180725|43229|1|30|54171.60|0.10|0.04|N|O|1995-09-26|1995-11-18|1995-10-12|DELIVER IN PERSON|RAIL|packages cajole | +78|439127|39128|2|40|42644.00|0.04|0.05|N|O|1995-11-01|1995-10-22|1995-11-21|DELIVER IN PERSON|FOB|ckly bold, unusual deposits. | +78|393117|5625|3|2|2420.20|0.07|0.05|N|O|1995-09-06|1995-10-17|1995-10-04|NONE|REG AIR|ckages affix slyly. slyly final excuses| +78|104241|29246|4|4|4980.96|0.06|0.02|N|O|1995-09-10|1995-10-23|1995-09-17|DELIVER IN PERSON|SHIP|cajole slyly alongside of the quickly| +79|130596|18103|1|10|16265.90|0.09|0.07|A|F|1994-04-21|1994-06-13|1994-05-17|NONE|REG AIR|ic ideas. special, fi| +79|918713|6268|2|14|24243.38|0.04|0.08|A|F|1994-07-13|1994-06-06|1994-07-28|TAKE BACK RETURN|TRUCK|about the unus| +79|798209|35755|3|12|15686.04|0.04|0.07|A|F|1994-06-19|1994-05-13|1994-06-25|TAKE BACK RETURN|RAIL|ounts wake | +79|495146|7656|4|39|44503.68|0.09|0.02|R|F|1994-06-19|1994-05-25|1994-06-24|COLLECT COD|FOB| integrate quickly. furiously| +79|917509|5064|5|7|10685.22|0.06|0.01|R|F|1994-04-16|1994-06-09|1994-05-12|COLLECT COD|SHIP|lly express excuses| +79|559124|34147|6|21|24845.10|0.05|0.00|A|F|1994-06-02|1994-05-15|1994-06-18|COLLECT COD|FOB|ake. final, silent dinos haggl| +104|487048|12067|1|18|18630.36|0.10|0.00|N|O|1996-07-12|1996-05-08|1996-07-27|COLLECT COD|RAIL|reach above the quickly expre| +104|814169|1718|2|8|8664.96|0.06|0.01|N|O|1996-07-15|1996-05-14|1996-08-07|NONE|AIR|ag. slyly | +105|826885|1918|1|7|12682.88|0.07|0.02|N|O|1996-01-05|1995-12-25|1996-01-26|TAKE BACK RETURN|RAIL|. accounts was. slyly bold instruct| +105|448788|36313|2|14|24314.64|0.01|0.05|N|O|1996-02-14|1996-02-10|1996-03-14|NONE|REG AIR|eodolites nod furiously ironic req| +105|775479|37995|3|38|59068.72|0.10|0.00|N|O|1995-11-23|1995-12-21|1995-11-26|TAKE BACK RETURN|FOB|ng dolphins haggle. regular | +105|470254|32764|4|35|42848.05|0.07|0.03|N|O|1996-03-01|1996-01-28|1996-03-12|COLLECT COD|AIR|ss ideas are furiousl| +105|556099|43633|5|16|18481.12|0.09|0.07|N|O|1996-02-23|1995-12-27|1996-02-28|NONE|TRUCK|ng the permanent| +105|345714|20727|6|9|15837.30|0.03|0.02|N|O|1995-12-19|1996-01-24|1996-01-04|TAKE BACK RETURN|MAIL|onic accou| +106|195083|7587|1|37|43588.96|0.07|0.00|R|F|1994-11-13|1994-12-01|1994-12-11|NONE|TRUCK|ts. doggedly regular deposits| +106|743794|43795|2|17|31241.92|0.07|0.02|R|F|1994-11-10|1994-10-31|1994-11-26|DELIVER IN PERSON|TRUCK|ar excuses ab| +106|940047|15084|3|26|28262.00|0.10|0.01|A|F|1994-11-27|1994-11-03|1994-12-09|DELIVER IN PERSON|SHIP|ter the fluffily unusual dolphins. quic| +106|366753|16754|4|4|7278.96|0.01|0.05|R|F|1994-12-03|1994-11-15|1994-12-15|TAKE BACK RETURN|TRUCK|ake furiou| +106|4015|4016|5|29|26651.29|0.02|0.06|A|F|1994-10-15|1994-10-28|1994-10-29|NONE|RAIL|ns. accounts a| +106|464611|27121|6|49|77203.91|0.09|0.01|A|F|1994-12-20|1994-11-06|1995-01-17|TAKE BACK RETURN|MAIL|ly ironic packages | +106|700605|25634|7|31|49772.67|0.01|0.00|R|F|1994-10-15|1994-10-05|1994-10-18|NONE|FOB|s are furiously eve| +107|63410|25912|1|43|59056.63|0.07|0.01|A|F|1994-02-28|1994-05-18|1994-03-21|TAKE BACK RETURN|REG AIR|uctions thrash final pac| +108|856724|19242|1|33|55462.44|0.09|0.03|A|F|1994-02-10|1993-12-19|1994-02-22|COLLECT COD|RAIL|ing to the carefully final asympt| +109|772693|47724|1|36|63563.76|0.07|0.05|N|O|1998-08-10|1998-06-13|1998-09-02|COLLECT COD|FOB|ly pending deposits are ex| +109|650738|38278|2|43|72614.10|0.08|0.08|N|O|1998-06-15|1998-07-05|1998-07-04|NONE|FOB| ironic packages. | +109|939921|14958|3|46|90200.48|0.01|0.08|N|O|1998-06-19|1998-07-10|1998-07-06|COLLECT COD|TRUCK|t the quickly final| +110|967449|42488|1|21|31844.40|0.10|0.01|N|O|1997-12-24|1998-01-21|1998-01-05|DELIVER IN PERSON|MAIL|olites. even, even ideas affix slyly sly| +110|906055|18574|2|21|22281.21|0.07|0.03|N|O|1998-01-01|1998-01-04|1998-01-14|NONE|FOB|ven dugouts s| +110|59899|47403|3|13|24165.57|0.06|0.05|N|O|1998-01-05|1997-12-22|1998-02-04|TAKE BACK RETURN|TRUCK|the furiousl| +111|582400|44912|1|50|74119.00|0.00|0.06|N|O|1998-02-12|1998-01-13|1998-02-13|COLLECT COD|RAIL|ut the blithely even foxes. slyly reg| +111|389162|26684|2|17|21269.55|0.09|0.05|N|O|1998-02-15|1998-03-03|1998-03-17|TAKE BACK RETURN|MAIL|longside of t| +111|635036|22573|3|35|33985.00|0.00|0.04|N|O|1998-02-05|1998-02-02|1998-03-03|DELIVER IN PERSON|MAIL|fully final fo| +111|34734|34735|4|6|10012.38|0.09|0.03|N|O|1998-01-20|1998-03-13|1998-02-11|TAKE BACK RETURN|RAIL| furiously again| +136|709453|46996|1|36|52647.12|0.04|0.00|N|O|1995-12-06|1995-11-22|1996-01-05|NONE|FOB|y regular deposits. careful| +137|917978|17979|1|4|7983.72|0.10|0.00|R|F|1992-12-01|1993-01-25|1992-12-12|TAKE BACK RETURN|SHIP|s haggle. blithely expres| +137|449560|49561|2|36|54343.44|0.04|0.05|R|F|1993-02-15|1993-02-02|1993-03-02|NONE|RAIL|packages integ| +138|595546|8058|1|38|62377.76|0.09|0.06|N|F|1995-06-08|1995-06-12|1995-07-02|TAKE BACK RETURN|FOB|ntegrate carefully above the carefully| +138|326643|39150|2|22|36731.86|0.10|0.04|N|O|1995-07-15|1995-05-25|1995-07-29|NONE|RAIL|lent deposits. final pla| +138|872858|35376|3|31|56755.11|0.02|0.06|A|F|1995-05-14|1995-06-16|1995-06-06|NONE|TRUCK|during the requests w| +138|118872|31375|4|18|34035.66|0.05|0.07|R|F|1995-04-25|1995-05-13|1995-05-17|DELIVER IN PERSON|RAIL|sly quickly i| +139|673923|48950|1|10|18968.90|0.09|0.06|A|F|1992-06-28|1992-07-16|1992-06-30|TAKE BACK RETURN|SHIP|ly final asymptotes. regular d| +139|617703|17704|2|43|69688.81|0.08|0.02|R|F|1992-08-28|1992-07-25|1992-09-02|NONE|FOB|atelets boost carefully along the blithel| +139|733005|45520|3|41|42556.77|0.09|0.07|A|F|1992-05-18|1992-07-01|1992-06-17|TAKE BACK RETURN|FOB|across the careful| +139|608018|45555|4|47|43521.06|0.02|0.02|R|F|1992-08-26|1992-06-26|1992-09-03|DELIVER IN PERSON|REG AIR|nd the even, express requests. quickl| +139|947358|9877|5|6|8431.86|0.00|0.07|A|F|1992-08-03|1992-07-29|1992-08-14|DELIVER IN PERSON|FOB|ly silent requests. t| +139|231319|6328|6|28|35008.40|0.02|0.08|R|F|1992-06-07|1992-06-30|1992-06-16|NONE|TRUCK|y regular theodolites. care| +139|774828|49859|7|41|78014.39|0.06|0.02|A|F|1992-08-07|1992-06-03|1992-08-16|DELIVER IN PERSON|AIR|lithely along the regular foxes. blithely | +140|518659|18660|1|25|41940.75|0.03|0.02|N|O|1997-12-26|1997-12-16|1997-12-31|COLLECT COD|AIR| the final, express | +140|98394|35898|2|38|52910.82|0.08|0.06|N|O|1997-11-24|1998-01-12|1997-12-12|DELIVER IN PERSON|REG AIR|ons. pending asymptotes wake blith| +140|706260|31289|3|5|6331.15|0.04|0.07|N|O|1998-02-12|1998-01-09|1998-02-22|DELIVER IN PERSON|MAIL| affix slyly across the regular a| +140|111284|11285|4|43|55697.04|0.00|0.03|N|O|1998-01-20|1997-12-27|1998-01-21|DELIVER IN PERSON|AIR|s wake express pint| +140|344427|19440|5|11|16185.51|0.08|0.00|N|O|1998-02-17|1998-01-16|1998-03-01|TAKE BACK RETURN|TRUCK|fully ironic packages. ironic, bold in| +140|775182|25183|6|22|27657.30|0.06|0.04|N|O|1997-11-30|1998-01-05|1997-12-13|COLLECT COD|TRUCK|st carefully. blithely final| +141|391145|16160|1|20|24722.60|0.06|0.08|N|O|1998-07-18|1998-05-16|1998-07-31|TAKE BACK RETURN|FOB|ze. final fox| +141|957399|7400|2|35|50972.25|0.10|0.05|N|O|1998-06-06|1998-06-17|1998-07-05|DELIVER IN PERSON|SHIP|sly final packages. quickl| +141|1463|26464|3|16|21831.36|0.09|0.05|N|O|1998-07-14|1998-04-29|1998-08-12|COLLECT COD|AIR|ly final pinto beans. furi| +141|573532|48555|4|44|70642.44|0.09|0.05|N|O|1998-05-16|1998-06-01|1998-05-18|DELIVER IN PERSON|AIR|ounts need to af| +141|345648|33167|5|35|59277.05|0.05|0.03|N|O|1998-07-10|1998-05-05|1998-07-29|COLLECT COD|REG AIR|e slyly ironic deposits. platel| +141|303631|3632|6|10|16346.20|0.10|0.05|N|O|1998-05-13|1998-06-08|1998-06-01|COLLECT COD|SHIP| accounts. bl| +142|817182|42215|1|23|25280.22|0.08|0.07|A|F|1992-09-27|1992-08-20|1992-10-01|NONE|SHIP|ter the express| +142|373683|11205|2|7|12296.69|0.01|0.02|A|F|1992-08-28|1992-08-20|1992-08-29|COLLECT COD|MAIL|gular accounts nag about the carefully eve| +143|262842|12843|1|20|36096.60|0.02|0.06|A|F|1994-05-25|1994-05-22|1994-06-03|COLLECT COD|TRUCK|egular, even deposits. slyly speci| +143|570407|45430|2|25|36934.50|0.00|0.02|A|F|1994-07-07|1994-05-19|1994-07-19|TAKE BACK RETURN|RAIL|. blithely final pinto bea| +168|30035|42536|1|26|25090.78|0.00|0.05|N|O|1996-05-26|1996-04-28|1996-05-28|DELIVER IN PERSON|SHIP|old accounts haggle quickly. carefully| +168|797366|9882|2|49|71703.17|0.05|0.07|N|O|1996-03-11|1996-04-20|1996-04-02|DELIVER IN PERSON|REG AIR|cross the carefully regular deposit| +168|327070|14589|3|30|32911.80|0.06|0.03|N|O|1996-03-26|1996-04-14|1996-03-27|NONE|TRUCK|refully. slyly bold packages wake. bold i| +168|59633|34636|4|5|7963.15|0.08|0.01|N|O|1996-06-15|1996-05-18|1996-07-04|NONE|MAIL|al, regular deposits. carefully | +168|244355|31868|5|8|10394.72|0.02|0.03|N|O|1996-03-30|1996-04-03|1996-04-14|DELIVER IN PERSON|SHIP| use carefully against t| +168|862734|286|6|36|61080.84|0.08|0.04|N|O|1996-03-29|1996-05-01|1996-04-08|DELIVER IN PERSON|AIR|sual deposits wak| +168|957161|44719|7|40|48724.80|0.07|0.02|N|O|1996-03-05|1996-04-08|1996-03-14|NONE|SHIP|deposits boost slyly according to the quic| +169|999159|49160|1|8|10064.88|0.07|0.04|N|O|1995-07-06|1995-06-21|1995-07-16|DELIVER IN PERSON|FOB|s nod blithely unusual, iro| +170|882721|45239|1|18|30666.24|0.04|0.01|A|F|1994-11-15|1995-02-04|1994-12-08|NONE|TRUCK|ress forges. furiously | +170|883791|46309|2|35|62116.25|0.00|0.04|A|F|1995-01-27|1994-12-25|1995-02-12|DELIVER IN PERSON|REG AIR|leep slowly. express accounts sle| +170|872333|22334|3|10|13052.90|0.09|0.03|R|F|1995-01-22|1995-01-14|1995-02-02|NONE|TRUCK| express request| +170|296104|46105|4|22|24201.98|0.02|0.01|R|F|1995-01-10|1994-12-30|1995-01-19|TAKE BACK RETURN|MAIL|. carefully fin| +170|615719|40744|5|43|70291.24|0.07|0.00|A|F|1995-01-31|1995-01-06|1995-02-02|TAKE BACK RETURN|AIR|ss the ironic | +170|387389|24911|6|11|16240.07|0.03|0.06|R|F|1995-01-29|1994-12-30|1995-01-30|COLLECT COD|MAIL|sleep blithely along the quic| +170|842521|30070|7|8|11707.84|0.03|0.08|R|F|1995-01-03|1994-12-07|1995-01-08|TAKE BACK RETURN|SHIP| special requests a| +171|241214|3719|1|2|2310.40|0.09|0.05|R|F|1995-05-02|1995-03-18|1995-05-25|DELIVER IN PERSON|SHIP|arefully final a| +171|80486|42988|2|14|20530.72|0.03|0.06|A|F|1995-02-26|1995-03-19|1995-03-19|DELIVER IN PERSON|RAIL|p. blithely express request| +172|690014|40015|1|18|18071.64|0.07|0.04|A|F|1992-07-06|1992-06-19|1992-08-01|DELIVER IN PERSON|TRUCK| ideas nag furiously alo| +172|61172|11173|2|5|5665.85|0.08|0.07|A|F|1992-06-30|1992-05-21|1992-07-16|NONE|AIR|sauternes. express asymptotes use furiou| +172|116625|4132|3|1|1641.62|0.02|0.08|R|F|1992-07-28|1992-06-10|1992-08-18|DELIVER IN PERSON|AIR|ly furiously bold | +172|115097|2604|4|37|41147.33|0.00|0.07|R|F|1992-06-15|1992-06-30|1992-07-01|NONE|RAIL|regular foxes cajole final, even| +172|430378|30379|5|4|5233.40|0.08|0.00|R|F|1992-05-24|1992-06-26|1992-05-31|NONE|REG AIR|the regular, | +173|943645|43646|1|1|1688.60|0.07|0.07|N|O|1996-04-28|1996-05-06|1996-05-20|TAKE BACK RETURN|FOB|s. final d| +173|834096|34097|2|21|21631.05|0.09|0.03|N|O|1996-04-26|1996-05-04|1996-05-21|NONE|REG AIR|al instructi| +173|635139|47652|3|48|51556.80|0.00|0.05|N|O|1996-05-03|1996-04-14|1996-05-30|COLLECT COD|SHIP|ns sleep. packages are atop the regular, | +173|766843|41874|4|31|59204.11|0.00|0.01|N|O|1996-03-11|1996-05-18|1996-03-26|TAKE BACK RETURN|AIR|usly silent pac| +173|319460|19461|5|32|47342.40|0.05|0.03|N|O|1996-04-07|1996-04-18|1996-04-10|NONE|MAIL|s use ironic, bold dolphins. ir| +174|156135|43645|1|6|7146.78|0.02|0.08|R|F|1994-02-17|1994-01-21|1994-03-03|NONE|REG AIR|ar deposits sleep. even| +174|156788|31795|2|47|86704.66|0.07|0.08|R|F|1994-01-22|1993-11-28|1994-02-01|NONE|REG AIR| haggle quickly. furiously unus| +174|126540|26541|3|48|75193.92|0.06|0.02|R|F|1993-11-28|1993-12-16|1993-12-02|DELIVER IN PERSON|MAIL|ges. regular pinto beans sleep blithely. ca| +174|751913|26944|4|44|86454.72|0.09|0.08|R|F|1993-12-29|1994-01-17|1994-01-19|DELIVER IN PERSON|FOB|cajole sly theodolites. slyly even packa| +174|395715|33237|5|9|16296.30|0.09|0.03|R|F|1993-11-03|1993-12-02|1993-11-30|DELIVER IN PERSON|REG AIR|ss dependencie| +175|591195|28729|1|25|32154.25|0.08|0.03|N|O|1998-07-02|1998-06-26|1998-07-04|DELIVER IN PERSON|FOB|sits grow | +175|207066|7067|2|11|10703.55|0.00|0.05|N|O|1998-07-07|1998-06-21|1998-07-19|NONE|TRUCK|packages nag regular account| +175|148817|11320|3|18|33584.58|0.01|0.07|N|O|1998-04-21|1998-06-07|1998-04-25|TAKE BACK RETURN|RAIL|blithely fluffy pinto beans above the | +175|163094|38101|4|40|46283.60|0.01|0.08|N|O|1998-05-29|1998-05-20|1998-05-31|DELIVER IN PERSON|AIR|ic requests wake above the carefully eve| +200|997124|34682|1|38|46401.04|0.03|0.07|R|F|1993-10-02|1993-09-21|1993-10-04|NONE|MAIL|ans across the furiousl| +200|650123|25150|2|10|10730.90|0.07|0.07|A|F|1993-11-10|1993-08-26|1993-11-29|COLLECT COD|SHIP|nal foxes alongside of the slyly| +200|616267|3804|3|18|21298.14|0.07|0.04|A|F|1993-09-11|1993-09-26|1993-10-01|NONE|TRUCK|posits detect carefully furi| +201|970192|45231|1|35|44175.25|0.08|0.03|R|F|1992-05-31|1992-05-08|1992-06-02|DELIVER IN PERSON|SHIP|furiously alongside | +201|11431|36432|2|50|67121.50|0.03|0.07|A|F|1992-06-20|1992-05-25|1992-07-07|DELIVER IN PERSON|SHIP|dolphins cajole slyly. ide| +202|827858|40375|1|16|28572.96|0.06|0.08|R|F|1992-05-02|1992-05-24|1992-05-28|TAKE BACK RETURN|MAIL|ously ironic dep| +202|802175|27208|2|21|22619.73|0.00|0.01|R|F|1992-05-03|1992-06-18|1992-05-13|TAKE BACK RETURN|FOB|gular, special instructions. special pearls| +202|140711|15716|3|44|77075.24|0.06|0.02|A|F|1992-07-10|1992-05-07|1992-07-24|NONE|REG AIR|silent requests. bold, express pack| +202|925509|38028|4|11|16879.06|0.10|0.02|R|F|1992-06-29|1992-06-26|1992-07-04|NONE|REG AIR|s. quickly special deposits detect q| +202|14356|26857|5|13|16514.55|0.05|0.00|A|F|1992-06-25|1992-06-01|1992-07-25|COLLECT COD|AIR| accounts use car| +203|49733|12234|1|7|11779.11|0.02|0.00|N|F|1995-05-28|1995-07-06|1995-06-25|DELIVER IN PERSON|TRUCK|beans haggle idly regular| +203|862444|49996|2|4|5625.60|0.09|0.04|N|O|1995-07-14|1995-06-21|1995-08-03|DELIVER IN PERSON|RAIL|ons. carefully bold packag| +203|83157|45659|3|9|10261.35|0.03|0.07|N|O|1995-08-17|1995-07-02|1995-09-03|TAKE BACK RETURN|RAIL|ffily sly requests. slyly pendi| +203|605451|17964|4|37|50187.54|0.07|0.03|N|O|1995-07-31|1995-08-08|1995-08-11|TAKE BACK RETURN|FOB|ts. furiously regular requests are slyl| +203|798979|48980|5|18|37402.92|0.02|0.04|N|F|1995-05-26|1995-07-15|1995-06-19|TAKE BACK RETURN|TRUCK|ages nag quic| +204|318088|30595|1|7|7742.49|0.10|0.07|N|O|1997-05-02|1997-04-14|1997-06-01|NONE|REG AIR|to print express, unusual courts. slyly u| +204|101257|1258|2|14|17615.50|0.09|0.07|N|O|1997-04-04|1997-05-20|1997-04-08|NONE|RAIL|pendencies wake blithely s| +205|820017|20018|1|44|41226.68|0.03|0.04|N|O|1996-06-02|1996-08-20|1996-06-23|TAKE BACK RETURN|RAIL|lithely ironic accounts. carefully fina| +206|138472|25979|1|38|57397.86|0.10|0.08|R|F|1992-08-29|1992-08-16|1992-09-06|NONE|RAIL| platelets sleep fluffily slyly ir| +206|290862|3368|2|36|66702.60|0.05|0.01|A|F|1992-09-24|1992-07-09|1992-09-26|COLLECT COD|RAIL|s affix alongsi| +206|515588|15589|3|38|60935.28|0.10|0.02|R|F|1992-06-04|1992-07-12|1992-06-27|COLLECT COD|MAIL| bold, regular instructions haggle | +207|731255|43770|1|19|24438.18|0.10|0.08|N|O|1996-11-26|1997-01-25|1996-12-12|DELIVER IN PERSON|MAIL|uiet packages. furiously final reque| +207|199175|49176|2|46|58611.82|0.06|0.05|N|O|1997-02-03|1997-01-30|1997-02-22|NONE|RAIL| bold requests. quic| +207|530826|5847|3|26|48276.80|0.00|0.03|N|O|1996-11-24|1997-01-21|1996-12-12|NONE|RAIL|lyly regular accounts wake slyly spe| +207|580715|18249|4|44|79010.36|0.06|0.00|N|O|1997-02-28|1996-12-26|1997-03-20|NONE|TRUCK|arefully ironic pinto beans kin| +207|61454|23956|5|3|4246.35|0.07|0.01|N|O|1996-12-25|1997-01-31|1997-01-07|DELIVER IN PERSON|TRUCK|y ironic deposits wake| +232|986651|11690|1|19|33014.59|0.10|0.01|A|F|1994-04-15|1994-02-06|1994-04-19|TAKE BACK RETURN|SHIP|riously blithely express platelets. even f| +232|640432|15457|2|38|52151.20|0.02|0.06|A|F|1994-03-31|1994-02-20|1994-04-19|NONE|RAIL|y. special dependencies prom| +232|732775|32776|3|40|72309.60|0.06|0.07|A|F|1994-03-05|1994-02-02|1994-03-19|DELIVER IN PERSON|SHIP|final accounts. quickly regul| +233|730046|42561|1|14|15064.14|0.03|0.00|N|O|1997-08-01|1997-09-27|1997-08-03|NONE|TRUCK|kly final dep| +233|872529|35047|2|16|24023.68|0.01|0.08|N|O|1997-07-28|1997-10-05|1997-08-17|NONE|MAIL|regular, ironic deposit| +233|587460|12483|3|8|12379.52|0.08|0.01|N|O|1997-11-17|1997-09-08|1997-11-23|NONE|RAIL|press, final orbits haggle according to th| +233|437910|12927|4|15|27718.35|0.01|0.04|N|O|1997-11-04|1997-09-15|1997-11-30|TAKE BACK RETURN|MAIL|y regular accounts. quickly | +233|938822|13859|5|27|50241.06|0.03|0.07|N|O|1997-07-25|1997-08-24|1997-08-11|DELIVER IN PERSON|SHIP|es wake about the theodolites. final, e| +234|709419|9420|1|14|19997.32|0.05|0.02|R|F|1994-04-02|1994-03-23|1994-04-06|TAKE BACK RETURN|FOB| packages hang. fl| +234|197782|22789|2|26|48874.28|0.00|0.07|R|F|1994-03-01|1994-03-30|1994-03-20|DELIVER IN PERSON|AIR|s sleep slow deposits. b| +235|44584|7085|1|50|76429.00|0.03|0.07|N|O|1996-12-05|1996-10-25|1996-12-14|COLLECT COD|REG AIR|y even gifts. furiou| +235|313991|39004|2|2|4009.96|0.03|0.00|N|O|1996-10-29|1996-11-05|1996-11-15|COLLECT COD|MAIL|ly among the fu| +235|245330|45331|3|25|31883.00|0.01|0.02|N|O|1996-11-23|1996-10-28|1996-12-18|TAKE BACK RETURN|MAIL|ual deposits above th| +235|257584|45100|4|46|70912.22|0.00|0.05|N|O|1996-11-19|1996-12-11|1996-11-27|DELIVER IN PERSON|SHIP|ly special instru| +235|209595|9596|5|48|72219.84|0.07|0.01|N|O|1997-01-09|1996-11-27|1997-01-10|DELIVER IN PERSON|FOB|l deposits. | +235|651410|26437|6|32|43564.16|0.09|0.03|N|O|1997-01-14|1996-12-17|1997-02-11|COLLECT COD|RAIL|eposits. unusual foxes sleep-- slyl| +235|245323|32836|7|29|36780.99|0.10|0.06|N|O|1996-10-29|1996-10-31|1996-11-02|COLLECT COD|RAIL|. pending, bold dolphins ar| +236|136557|24064|1|42|66929.10|0.00|0.07|N|O|1998-03-30|1998-03-01|1998-04-13|TAKE BACK RETURN|SHIP|s haggle closely final pac| +236|109239|46746|2|27|33702.21|0.02|0.04|N|O|1998-03-27|1998-03-18|1998-04-18|COLLECT COD|AIR|riously ironic dugouts affix quickly accor| +237|715701|40730|1|33|56650.11|0.01|0.03|N|O|1996-12-17|1996-10-21|1996-12-31|DELIVER IN PERSON|FOB|yly final instruct| +237|784378|46894|2|49|71654.66|0.04|0.06|N|O|1996-11-03|1996-11-14|1996-11-16|TAKE BACK RETURN|MAIL|he even deposits. foxes wa| +237|33439|20940|3|17|23331.31|0.10|0.00|N|O|1996-10-08|1996-10-25|1996-10-12|COLLECT COD|REG AIR|y express orbits are busily stealthy i| +237|996636|9156|4|35|60640.65|0.08|0.00|N|O|1996-09-25|1996-10-20|1996-09-26|DELIVER IN PERSON|REG AIR|unusual accounts use fluffily among the | +237|460924|23434|5|10|18849.00|0.07|0.08|N|O|1996-11-20|1996-10-25|1996-12-01|TAKE BACK RETURN|AIR|nts print furiously fluffil| +238|265912|15913|1|34|63848.60|0.04|0.01|N|O|1997-06-18|1997-06-26|1997-07-07|TAKE BACK RETURN|REG AIR|beans wake about the slyly si| +238|177134|39638|2|45|54500.85|0.06|0.01|N|O|1997-09-11|1997-08-02|1997-09-14|TAKE BACK RETURN|SHIP|st slyly about the blithely quick attainmen| +238|82190|32191|3|19|22271.61|0.08|0.08|N|O|1997-09-13|1997-06-16|1997-09-26|COLLECT COD|TRUCK|old deposits. bold account| +238|365570|15571|4|39|63786.84|0.09|0.07|N|O|1997-09-08|1997-07-06|1997-09-16|COLLECT COD|TRUCK|ven accounts run blithely regular ac| +239|112346|49853|1|41|55691.94|0.06|0.04|N|O|1998-05-04|1998-05-10|1998-05-16|COLLECT COD|RAIL|old accounts after the carefully | +239|191484|16491|2|36|56717.28|0.05|0.01|N|O|1998-06-10|1998-04-17|1998-06-16|DELIVER IN PERSON|FOB|gular deposits. express | +239|258819|46335|3|15|26667.00|0.08|0.01|N|O|1998-06-11|1998-06-05|1998-06-23|NONE|REG AIR|ic, regular ideas wake among the fu| +239|954287|29326|4|41|54990.84|0.05|0.03|N|O|1998-04-25|1998-05-01|1998-05-03|DELIVER IN PERSON|SHIP|es affix carefully bold requests. pending | +264|940232|27787|1|17|21627.23|0.07|0.07|N|O|1995-11-11|1995-11-24|1995-11-20|TAKE BACK RETURN|TRUCK|eodolites nag sly| +264|474377|24378|2|15|20270.25|0.05|0.06|N|O|1996-01-31|1995-12-30|1996-02-20|NONE|TRUCK|c ideas cajole packages. quickly regular de| +264|845090|7607|3|1|1035.05|0.01|0.06|N|O|1995-11-15|1995-12-26|1995-12-03|NONE|SHIP|l, ironic platelets. blithely silen| +264|425500|25501|4|47|66997.56|0.06|0.04|N|O|1995-11-21|1995-12-30|1995-12-09|NONE|FOB|usly regular | +265|611427|23940|1|27|36136.53|0.00|0.07|N|O|1997-04-06|1997-03-21|1997-05-05|NONE|TRUCK|thely ironi| +265|244324|31837|2|29|36780.99|0.09|0.04|N|O|1997-04-02|1997-04-07|1997-04-12|TAKE BACK RETURN|RAIL|ly regular instructions. slyly | +265|351382|26397|3|41|58768.17|0.01|0.00|N|O|1997-04-25|1997-03-22|1997-05-23|COLLECT COD|MAIL|fily even courts are carefully regular | +265|672697|22698|4|29|48420.14|0.07|0.06|N|O|1997-02-23|1997-04-22|1997-03-09|TAKE BACK RETURN|RAIL|fluffily ironic d| +266|452260|14770|1|43|52126.32|0.05|0.08|N|O|1997-12-19|1998-01-22|1997-12-25|COLLECT COD|REG AIR|refully even instructions. thinly ironic | +266|119591|44596|2|28|45096.52|0.03|0.01|N|O|1998-01-29|1998-02-10|1998-02-19|DELIVER IN PERSON|AIR|e doggedly after t| +266|951757|39315|3|18|32556.78|0.01|0.01|N|O|1998-02-12|1998-01-13|1998-03-12|NONE|SHIP| daringly alongsi| +266|179262|4269|4|34|45602.84|0.00|0.05|N|O|1998-03-16|1997-12-28|1998-03-28|NONE|AIR|arefully special requests? even in| +266|852979|2980|5|13|25115.09|0.06|0.03|N|O|1997-12-13|1998-01-10|1998-01-08|TAKE BACK RETURN|TRUCK|ly express | +267|513285|816|1|28|36351.28|0.03|0.03|N|O|1996-10-16|1996-09-27|1996-10-31|COLLECT COD|RAIL|usual accounts between the| +267|777734|2765|2|25|45292.50|0.05|0.04|N|O|1996-10-18|1996-11-08|1996-11-17|NONE|MAIL|quests sleep| +267|364540|2062|3|42|67390.26|0.10|0.04|N|O|1996-11-18|1996-11-06|1996-12-01|TAKE BACK RETURN|TRUCK|r pearls are | +267|820989|46022|4|44|84037.36|0.00|0.06|N|O|1996-08-24|1996-10-01|1996-09-04|NONE|SHIP|gside of the | +267|353907|3908|5|2|3921.78|0.02|0.07|N|O|1996-10-25|1996-10-21|1996-10-31|TAKE BACK RETURN|TRUCK|etly regular dinos? blithely bold package| +268|316178|16179|1|41|48960.56|0.10|0.05|A|F|1995-02-16|1995-02-11|1995-03-06|COLLECT COD|REG AIR|aggle. quickly regular| +268|997092|34650|2|21|24970.05|0.07|0.07|R|F|1994-12-11|1995-02-08|1994-12-31|DELIVER IN PERSON|REG AIR|leep quickly according to the ironic dep| +268|110010|22513|3|3|3060.03|0.03|0.01|R|F|1995-01-03|1995-01-04|1995-01-16|TAKE BACK RETURN|SHIP|de the furiousl| +268|930432|30433|4|27|39484.53|0.01|0.06|A|F|1995-03-19|1994-12-24|1995-04-11|TAKE BACK RETURN|SHIP|c ideas wake carefully. ir| +268|760758|48304|5|8|14549.76|0.03|0.03|R|F|1995-03-24|1995-01-18|1995-03-28|COLLECT COD|AIR|. ironic, pendin| +268|55047|30050|6|49|49099.96|0.04|0.05|A|F|1995-02-22|1994-12-30|1995-03-16|DELIVER IN PERSON|SHIP| sleep carefully acco| +268|171084|21085|7|35|40427.80|0.09|0.02|R|F|1995-01-08|1995-01-29|1995-02-03|TAKE BACK RETURN|FOB|y daring packages. pending foxes serve. | +269|405030|17539|1|20|18700.20|0.00|0.04|N|O|1997-12-27|1998-03-04|1997-12-29|COLLECT COD|AIR|al ideas haggle quickly. neve| +269|327138|39645|2|49|57090.88|0.10|0.01|N|O|1997-12-29|1998-02-10|1998-01-21|TAKE BACK RETURN|RAIL|t the regular deposit| +269|199591|37101|3|25|42264.75|0.07|0.08|N|O|1998-02-09|1998-03-08|1998-02-21|TAKE BACK RETURN|REG AIR|o beans. carefully unusual de| +269|512425|49956|4|22|31622.80|0.05|0.01|N|O|1998-04-18|1998-03-09|1998-05-06|TAKE BACK RETURN|MAIL|tructions wake against the carefully regula| +269|311543|36556|5|35|54408.55|0.07|0.02|N|O|1998-03-10|1998-02-14|1998-03-16|DELIVER IN PERSON|AIR|furiously ironi| +269|100777|13280|6|36|63999.72|0.01|0.00|N|O|1998-04-04|1998-03-16|1998-04-16|COLLECT COD|REG AIR| express, unusual platelets lose furio| +270|577911|40423|1|22|43755.58|0.06|0.01|N|O|1997-04-24|1997-05-22|1997-05-07|DELIVER IN PERSON|REG AIR|ely regular dep| +270|937366|12403|2|32|44906.24|0.10|0.07|N|O|1997-05-21|1997-07-01|1997-06-13|COLLECT COD|MAIL|ccounts. packages dete| +270|307817|20324|3|6|10948.80|0.04|0.01|N|O|1997-07-05|1997-06-18|1997-07-11|NONE|REG AIR| furiously about the furiou| +270|470969|33479|4|27|52378.38|0.04|0.07|N|O|1997-06-25|1997-06-13|1997-07-13|TAKE BACK RETURN|REG AIR|nic, unusual p| +271|972245|22246|1|13|17123.60|0.10|0.02|N|O|1998-01-11|1997-12-19|1998-01-23|COLLECT COD|RAIL|ackages. regular,| +271|507664|32685|2|3|5014.92|0.01|0.01|N|O|1998-01-15|1997-11-22|1998-02-01|TAKE BACK RETURN|MAIL|ar deposits cajole regular pinto| +271|304018|16525|3|34|34748.00|0.04|0.08|N|O|1998-02-03|1997-12-07|1998-02-15|COLLECT COD|MAIL|ts! furiously regular instructions a| +271|627080|2105|4|10|10070.50|0.02|0.06|N|O|1997-11-13|1997-12-27|1997-11-18|NONE|MAIL|lyly regular foxes;| +271|322076|47089|5|2|2196.12|0.06|0.08|N|O|1997-12-08|1997-11-19|1998-01-06|COLLECT COD|AIR| requests. blithely e| +271|129532|4537|6|41|64022.73|0.06|0.06|N|O|1998-02-07|1997-12-09|1998-03-01|DELIVER IN PERSON|SHIP| blithely ironic| +271|31241|18742|7|45|52750.80|0.01|0.07|N|O|1997-11-30|1997-11-25|1997-12-29|COLLECT COD|MAIL|inal dependencies use pearls. carefu| +296|53434|28437|1|22|30523.46|0.10|0.08|N|O|1996-09-09|1996-11-26|1996-09-24|DELIVER IN PERSON|SHIP|to cajole. accounts haggle. | +296|62662|12663|2|30|48739.80|0.07|0.00|N|O|1996-12-12|1996-10-16|1996-12-24|NONE|RAIL|e carefully regular packages. packag| +297|299301|11807|1|36|46810.44|0.09|0.07|R|F|1994-11-12|1994-10-30|1994-12-11|NONE|TRUCK|ly pending excuses h| +297|336998|36999|2|24|48839.52|0.04|0.06|R|F|1994-11-25|1994-10-07|1994-11-26|TAKE BACK RETURN|REG AIR|lyly against t| +298|325304|25305|1|10|13292.90|0.00|0.02|N|O|1998-02-25|1998-03-22|1998-03-18|DELIVER IN PERSON|REG AIR|ly express package| +298|378120|15642|2|46|55113.06|0.05|0.04|N|O|1998-03-08|1998-04-06|1998-03-26|COLLECT COD|RAIL|nag slyly slyly final instructions. pe| +298|51284|26287|3|20|24705.60|0.00|0.04|N|O|1998-03-19|1998-04-09|1998-04-04|COLLECT COD|MAIL|y ironic requests. carefully silent p| +298|922704|35223|4|7|12086.62|0.02|0.08|N|O|1998-05-10|1998-04-09|1998-05-28|TAKE BACK RETURN|FOB|ully ironic dugouts. q| +298|873191|35709|5|36|41909.40|0.05|0.03|N|O|1998-02-27|1998-04-05|1998-03-14|NONE|RAIL|. ironic instru| +298|718506|6049|6|49|74699.03|0.04|0.00|N|O|1998-05-11|1998-03-23|1998-06-01|COLLECT COD|TRUCK|s cajole carefully along the spec| +299|852709|27744|1|1|1661.66|0.05|0.02|N|O|1996-07-08|1996-07-27|1996-07-24|NONE|TRUCK|es. requests cajole| +299|471029|33539|2|41|41000.00|0.02|0.03|N|O|1996-09-25|1996-08-31|1996-10-19|COLLECT COD|SHIP|es. blithely regul| +299|575249|272|3|47|62238.34|0.04|0.07|N|O|1996-07-13|1996-08-08|1996-08-10|TAKE BACK RETURN|AIR|regular accounts are quickly sly| +300|108586|33591|1|8|12756.64|0.06|0.07|N|O|1995-11-28|1995-10-12|1995-12-20|TAKE BACK RETURN|REG AIR|counts affix blithely furiously | +300|991736|4256|2|12|21932.28|0.02|0.05|N|O|1995-09-14|1995-11-13|1995-09-19|TAKE BACK RETURN|SHIP|e furiously i| +300|102796|15299|3|1|1798.79|0.02|0.08|N|O|1995-12-10|1995-10-24|1995-12-28|COLLECT COD|AIR|y regular packages haggle dogg| +301|749949|24978|1|23|45974.93|0.08|0.08|A|F|1993-07-29|1993-09-17|1993-08-28|NONE|SHIP|furiously unusual | +301|389051|1559|2|13|14820.52|0.03|0.01|R|F|1993-08-05|1993-10-14|1993-08-28|NONE|FOB|s across the express foxes. slyly unusu| +301|771194|21195|3|41|51871.56|0.01|0.04|A|F|1993-10-06|1993-08-27|1993-10-25|NONE|RAIL|eas cajole furi| +302|798188|10704|1|41|52732.15|0.07|0.06|N|O|1998-10-04|1998-09-29|1998-10-19|COLLECT COD|AIR|hely regular dolphins; furiously | +302|138241|13246|2|1|1279.24|0.04|0.05|N|O|1998-08-31|1998-09-01|1998-09-21|COLLECT COD|FOB|sual pinto beans nag. furiously final bra| +302|399756|12264|3|13|24124.62|0.10|0.00|N|O|1998-09-12|1998-08-22|1998-09-22|DELIVER IN PERSON|SHIP|yly final th| +303|351767|1768|1|31|56381.25|0.00|0.01|R|F|1994-05-27|1994-06-13|1994-06-05|TAKE BACK RETURN|SHIP|y final requests integrate slyly furiousl| +303|136010|36011|2|40|41840.40|0.01|0.05|R|F|1994-05-29|1994-05-20|1994-06-07|COLLECT COD|TRUCK|thely according to th| +303|918107|43144|3|31|34876.86|0.06|0.05|R|F|1994-05-11|1994-05-23|1994-05-15|DELIVER IN PERSON|MAIL|sts. silent packages above the fu| +303|623068|23069|4|49|48560.47|0.01|0.03|A|F|1994-04-21|1994-05-26|1994-05-18|DELIVER IN PERSON|MAIL| carefully f| +303|901404|26441|5|22|30917.92|0.03|0.01|R|F|1994-04-24|1994-06-12|1994-05-03|NONE|AIR|ickly even foxes across the special, re| +303|882070|44588|6|11|11572.33|0.07|0.08|R|F|1994-06-02|1994-06-04|1994-06-14|COLLECT COD|MAIL|deas. special acco| +328|183523|33524|1|24|38556.48|0.03|0.02|N|O|1996-04-11|1996-05-31|1996-04-25|DELIVER IN PERSON|FOB|refully even theodol| +328|459311|9312|2|26|33027.54|0.07|0.04|N|O|1996-06-24|1996-04-28|1996-07-17|DELIVER IN PERSON|SHIP|s. slyly ironic instructions haggle a| +328|638182|13207|3|18|20162.70|0.07|0.01|N|O|1996-04-21|1996-04-30|1996-05-18|TAKE BACK RETURN|AIR|ifts. slyly even deposi| +328|920352|20353|4|40|54892.40|0.05|0.05|N|O|1996-03-21|1996-06-08|1996-03-29|NONE|AIR|ccounts nag slyly according to the blithely| +328|353501|16009|5|42|65288.58|0.09|0.04|N|O|1996-07-04|1996-05-11|1996-07-21|DELIVER IN PERSON|REG AIR| beans about the blithely r| +329|327154|14673|1|36|42521.04|0.00|0.03|N|O|1996-10-24|1996-10-02|1996-11-01|TAKE BACK RETURN|MAIL| asymptotes boost carefu| +329|470751|20752|2|19|32712.87|0.03|0.01|N|O|1996-11-29|1996-09-23|1996-12-27|DELIVER IN PERSON|SHIP|usy ideas affix carefully across| +329|902170|27207|3|28|32819.64|0.08|0.04|N|O|1996-08-18|1996-09-23|1996-09-06|DELIVER IN PERSON|REG AIR|s. pending ideas nag| +329|769141|31657|4|50|60505.50|0.06|0.05|N|O|1996-10-03|1996-09-29|1996-10-21|DELIVER IN PERSON|TRUCK|even platelets wake according to the carefu| +329|951897|1898|5|49|95493.65|0.06|0.00|N|O|1996-10-02|1996-09-04|1996-10-15|COLLECT COD|MAIL|blithely unusua| +329|530366|5387|6|40|55853.60|0.00|0.00|N|O|1996-09-25|1996-10-29|1996-09-27|NONE|AIR|r requests snooze among the furio| +330|892184|42185|1|24|28227.36|0.09|0.02|R|F|1994-11-22|1994-10-21|1994-12-18|NONE|FOB|blithely ironi| +330|933662|21217|2|21|35608.02|0.06|0.08|R|F|1994-10-13|1994-11-22|1994-11-09|COLLECT COD|TRUCK| dependencies. slyly regular deposits wa| +331|327578|27579|1|42|67433.52|0.10|0.00|N|O|1998-02-19|1998-05-18|1998-03-08|TAKE BACK RETURN|TRUCK|gular dinos b| +331|589288|39289|2|35|48204.10|0.10|0.04|N|O|1998-04-27|1998-04-15|1998-05-23|NONE|FOB|es dazzle even requests! caref| +331|149678|37185|3|33|57013.11|0.01|0.01|N|O|1998-04-19|1998-04-19|1998-04-25|COLLECT COD|AIR|ooze beyond the busily regular fox| +331|634787|9812|4|42|72313.50|0.01|0.08|N|O|1998-06-18|1998-04-11|1998-06-20|TAKE BACK RETURN|SHIP|g against the furiously quiet packages| +332|699219|24246|1|36|43854.48|0.01|0.03|R|F|1995-03-31|1995-02-11|1995-04-04|NONE|MAIL|nts. fluffily express reques| +332|767808|5354|2|11|20633.47|0.09|0.08|A|F|1995-04-04|1995-03-02|1995-04-25|COLLECT COD|RAIL|sts promise carefully according to th| +332|533842|46353|3|26|48771.32|0.02|0.03|A|F|1995-03-01|1995-01-27|1995-03-26|DELIVER IN PERSON|SHIP|l, final depend| +332|270026|7542|4|22|21912.22|0.03|0.02|R|F|1995-03-28|1995-03-05|1995-04-07|DELIVER IN PERSON|RAIL|beans. braids boost| +332|326206|26207|5|25|30804.75|0.10|0.04|A|F|1995-01-24|1995-01-31|1995-02-08|DELIVER IN PERSON|RAIL|y silently even packages. fluffi| +332|529399|29400|6|44|62848.28|0.01|0.02|A|F|1995-01-08|1995-02-04|1995-01-14|COLLECT COD|SHIP|dolites haggle furio| +332|606871|6872|7|37|65780.08|0.07|0.08|R|F|1995-01-17|1995-02-14|1995-02-04|TAKE BACK RETURN|MAIL|posits. furiou| +333|667285|4825|1|26|32558.50|0.05|0.07|N|O|1997-11-18|1997-10-22|1997-12-10|TAKE BACK RETURN|SHIP|he ruthless pinto beans sleep slyly final| +333|47136|9637|2|21|22745.73|0.00|0.04|N|O|1997-10-15|1997-10-31|1997-10-23|COLLECT COD|AIR|nts use. carefully final theo| +333|198128|48129|3|48|58853.76|0.00|0.08|N|O|1997-09-28|1997-10-25|1997-10-26|COLLECT COD|MAIL|jole. carefully regul| +333|926269|26270|4|25|32380.50|0.09|0.04|N|O|1997-11-23|1997-10-31|1997-11-25|COLLECT COD|AIR|final deposits hinder busily blithely| +334|407175|32192|1|40|43286.00|0.03|0.06|R|F|1993-01-23|1993-03-08|1993-01-31|TAKE BACK RETURN|MAIL| against the darin| +335|890795|28347|1|7|12500.25|0.05|0.04|A|F|1994-09-17|1994-11-25|1994-10-15|NONE|FOB|s across the furiously final accounts r| +335|590154|2666|2|27|33591.51|0.09|0.02|A|F|1994-10-18|1994-10-27|1994-11-03|TAKE BACK RETURN|FOB|unts boost quickly fluffily final | +335|712830|37859|3|50|92140.00|0.01|0.01|R|F|1994-11-27|1994-11-11|1994-11-28|DELIVER IN PERSON|SHIP|g excuses according | +360|573955|11489|1|14|28405.02|0.06|0.07|R|F|1993-10-01|1993-10-17|1993-10-27|NONE|TRUCK|ly ironic packages among| +360|448767|48768|2|14|24020.36|0.08|0.03|A|F|1993-11-29|1993-09-18|1993-12-13|TAKE BACK RETURN|SHIP|ckages use ruthlessly. slyly | +360|421696|21697|3|21|33971.07|0.00|0.02|A|F|1993-09-01|1993-09-27|1993-09-28|TAKE BACK RETURN|REG AIR| furiously ironic dependencies sleep sl| +360|436079|23604|4|5|5075.25|0.01|0.05|R|F|1993-12-09|1993-11-07|1994-01-07|DELIVER IN PERSON|SHIP|. quickly regular orbits| +361|364024|14025|1|7|7616.07|0.00|0.07|N|O|1995-09-11|1995-09-04|1995-09-17|COLLECT COD|RAIL|slyly even packages. ironic asymptotes alon| +361|138963|26470|2|19|38037.24|0.07|0.07|N|O|1995-09-11|1995-09-23|1995-10-01|NONE|SHIP|ily slowly even pearls. final, p| +361|539386|1897|3|17|24231.12|0.08|0.05|N|O|1995-11-11|1995-10-07|1995-12-03|COLLECT COD|MAIL| excuses serve quic| +361|452023|2024|4|9|8775.00|0.03|0.08|N|O|1995-11-08|1995-10-22|1995-11-26|NONE|TRUCK| deposits poach | +361|146346|21351|5|44|61262.96|0.06|0.06|N|O|1995-09-07|1995-11-02|1995-09-23|TAKE BACK RETURN|AIR|odolites wake quickly according| +362|105905|5906|1|17|32485.30|0.09|0.02|R|F|1993-01-13|1993-02-09|1993-02-12|DELIVER IN PERSON|MAIL|regular dependencies nag even,| +362|934068|34069|2|47|51794.94|0.00|0.00|A|F|1992-12-30|1993-02-20|1993-01-06|COLLECT COD|MAIL|y unusual instructions. furiously unusu| +362|878871|41389|3|26|48095.58|0.08|0.03|A|F|1992-12-30|1993-01-11|1993-01-08|DELIVER IN PERSON|FOB|ironic requests cajole | +362|184793|9800|4|42|78867.18|0.10|0.02|A|F|1993-01-05|1993-02-20|1993-01-24|NONE|FOB|ecial decoys. regul| +362|811462|49011|5|50|68671.00|0.07|0.04|A|F|1993-03-07|1993-01-30|1993-04-03|NONE|SHIP|ans wake blithely. blithely fina| +362|241004|41005|6|39|36854.61|0.06|0.01|R|F|1993-03-16|1993-02-13|1993-03-25|NONE|FOB|y blithe deposits. carefull| +362|539735|27266|7|7|12422.97|0.03|0.06|R|F|1993-02-05|1993-02-27|1993-02-18|TAKE BACK RETURN|REG AIR|deas are close ideas. furiously | +363|320219|32726|1|17|21066.40|0.06|0.02|R|F|1992-09-08|1992-08-15|1992-10-01|DELIVER IN PERSON|SHIP|carefully final pinto beans should h| +363|916821|16822|2|30|55133.40|0.00|0.04|A|F|1992-11-01|1992-09-30|1992-11-28|COLLECT COD|REG AIR|ly. carefully ironic foxes po| +364|591772|41773|1|1|1863.75|0.07|0.01|R|F|1992-07-02|1992-06-08|1992-07-31|COLLECT COD|FOB|ccounts. pending, even theodolites wake. s| +364|897966|10484|2|41|80520.72|0.03|0.01|R|F|1992-04-28|1992-05-20|1992-04-29|DELIVER IN PERSON|REG AIR|s the platelet| +364|104994|17497|3|40|79959.60|0.10|0.03|R|F|1992-07-31|1992-05-12|1992-08-06|NONE|TRUCK|lyly. theodolites against the slyly iro| +364|630433|5458|4|42|57262.80|0.10|0.02|R|F|1992-07-05|1992-05-29|1992-07-23|COLLECT COD|RAIL|ar the furiously brave requests s| +364|677163|2190|5|1|1140.13|0.05|0.03|A|F|1992-07-14|1992-05-12|1992-08-10|NONE|TRUCK|ly ironic instructions according to the iro| +364|71405|46408|6|27|37162.80|0.06|0.01|R|F|1992-06-22|1992-06-08|1992-06-23|DELIVER IN PERSON|TRUCK|the blithely spe| +365|381571|31572|1|27|44619.12|0.03|0.01|A|F|1993-10-11|1993-10-20|1993-11-09|COLLECT COD|SHIP|. platelets hagg| +365|60544|35547|2|37|55667.98|0.10|0.02|R|F|1993-12-02|1993-11-17|1993-12-27|COLLECT COD|RAIL|y. furiously ironic excuses haggle ac| +365|559941|34964|3|5|10004.60|0.09|0.01|A|F|1993-11-05|1993-10-25|1993-12-01|DELIVER IN PERSON|TRUCK|furiously daring accounts. packages sle| +365|922645|47682|4|8|13340.80|0.06|0.03|R|F|1993-12-29|1993-12-06|1994-01-14|NONE|TRUCK|xpress foxes are blithely. fox| +366|436615|11632|1|32|49650.88|0.03|0.01|N|O|1998-06-24|1998-09-03|1998-07-03|NONE|SHIP|totes sleep carefully final | +367|408413|45938|1|19|25106.41|0.06|0.04|N|O|1996-03-16|1996-01-31|1996-03-30|TAKE BACK RETURN|RAIL|y about the final requests. quickly pendi| +367|185210|47714|2|27|34970.67|0.09|0.00|N|O|1996-03-01|1996-02-09|1996-03-23|NONE|TRUCK|osits. furiously regular deposits mai| +367|812032|24549|3|34|32095.66|0.10|0.02|N|O|1996-03-27|1996-02-09|1996-04-09|DELIVER IN PERSON|MAIL|ts. quickly unusual ideas mold after the fu| +367|819431|44464|4|30|40511.70|0.08|0.05|N|O|1996-02-27|1996-02-27|1996-03-28|TAKE BACK RETURN|TRUCK|osits. furiousl| +367|166359|41366|5|15|21380.25|0.07|0.01|N|O|1995-12-24|1996-01-22|1996-01-06|TAKE BACK RETURN|RAIL|ed deposits wake regular theodolites.| +392|703854|16369|1|21|39014.22|0.03|0.08|A|F|1993-03-22|1993-05-10|1993-04-10|COLLECT COD|TRUCK|lar theodolites haggle. packag| +392|658073|45613|2|22|22682.88|0.01|0.08|R|F|1993-06-22|1993-05-12|1993-07-13|DELIVER IN PERSON|AIR| ironic foxes. final pack| +392|221250|8763|3|12|14054.88|0.02|0.03|A|F|1993-06-02|1993-05-06|1993-07-02|COLLECT COD|SHIP|ts; blithely final dependen| +393|142612|5115|1|28|46329.08|0.00|0.07|N|O|1997-01-30|1996-12-28|1997-02-09|DELIVER IN PERSON|MAIL|less epitaphs sublate carefully express| +393|864718|27236|2|50|84133.50|0.06|0.03|N|O|1996-11-24|1996-12-12|1996-12-03|DELIVER IN PERSON|TRUCK|aggle slyl| +393|307786|32799|3|4|7175.08|0.05|0.07|N|O|1997-01-13|1996-12-06|1997-01-26|TAKE BACK RETURN|SHIP|y slyly bold package| +393|948840|36395|4|48|90662.40|0.02|0.01|N|O|1996-11-18|1996-11-24|1996-12-18|DELIVER IN PERSON|TRUCK|uffy deposits are ironic package| +394|938768|26323|1|20|36134.40|0.02|0.02|N|O|1995-11-30|1995-10-31|1995-12-04|COLLECT COD|REG AIR| idle plate| +394|864508|14509|2|34|50063.64|0.10|0.06|N|O|1995-11-15|1995-12-12|1995-11-21|COLLECT COD|FOB|l pinto beans wake blithely | +394|769492|19493|3|27|42159.42|0.09|0.00|N|O|1995-09-29|1995-11-05|1995-10-11|NONE|AIR| above the furiousl| +394|846359|21392|4|46|60044.26|0.08|0.08|N|O|1995-10-20|1995-10-27|1995-11-04|TAKE BACK RETURN|MAIL|ounts. regular packag| +394|741657|4172|5|7|11890.34|0.09|0.04|N|O|1995-11-29|1995-11-24|1995-12-12|COLLECT COD|FOB|uests wake quick| +394|27672|2673|6|39|62387.13|0.04|0.07|N|O|1995-12-16|1995-11-11|1995-12-29|TAKE BACK RETURN|REG AIR| regular foxes about the sometimes r| +395|709588|22103|1|38|60706.90|0.10|0.08|N|O|1995-08-20|1995-08-08|1995-09-19|NONE|MAIL|uests haggle: quickly final depos| +395|40562|3063|2|4|6010.24|0.01|0.03|N|O|1995-09-16|1995-09-12|1995-10-01|NONE|TRUCK|y special dependencies na| +395|709861|9862|3|3|5612.49|0.09|0.07|N|O|1995-07-11|1995-09-14|1995-08-05|DELIVER IN PERSON|SHIP|lyly silent dependencies wake.| +396|107576|45083|1|20|31671.40|0.08|0.05|N|O|1997-11-03|1997-12-01|1997-11-23|DELIVER IN PERSON|RAIL|kages alongside of the ca| +396|23964|36465|2|2|3775.92|0.07|0.02|N|O|1997-11-27|1997-11-05|1997-12-23|TAKE BACK RETURN|REG AIR|riously after the regular| +396|758119|20635|3|16|18833.28|0.04|0.02|N|O|1998-01-19|1997-12-21|1998-02-06|COLLECT COD|SHIP|lyly about the slyly p| +396|692870|17897|4|27|50296.68|0.01|0.01|N|O|1997-11-14|1997-11-29|1997-12-07|NONE|SHIP|al ideas mold fluffily permanent, bold i| +396|52704|27707|5|12|19880.40|0.05|0.03|N|O|1997-12-22|1997-12-28|1997-12-27|DELIVER IN PERSON|REG AIR|ess pinto beans w| +396|779653|4684|6|46|79700.52|0.02|0.00|N|O|1997-12-04|1997-12-11|1997-12-13|TAKE BACK RETURN|REG AIR| requests. ironic foxes wake care| +397|798836|11352|1|2|3869.60|0.01|0.01|N|O|1996-05-10|1996-05-11|1996-05-28|COLLECT COD|FOB|thely-- final, ironic packages are| +397|32398|32399|2|43|57206.77|0.01|0.06|N|O|1996-07-28|1996-06-08|1996-08-09|NONE|MAIL|arefully regular accounts sleep e| +397|501633|14144|3|39|63749.79|0.00|0.06|N|O|1996-05-20|1996-06-29|1996-05-23|NONE|REG AIR|uests wake around| +397|941611|41612|4|24|39661.68|0.09|0.07|N|O|1996-07-11|1996-06-30|1996-07-31|DELIVER IN PERSON|MAIL|e carefully ironic foxes. slyly e| +397|643874|6387|5|42|76349.28|0.00|0.07|N|O|1996-07-25|1996-05-13|1996-07-27|DELIVER IN PERSON|SHIP|xcuses. pi| +397|574621|24622|6|24|40694.40|0.05|0.03|N|O|1996-05-04|1996-05-21|1996-05-10|NONE|TRUCK|ns hinder slyly carefully iron| +398|563690|38713|1|3|5261.01|0.01|0.00|N|O|1998-08-20|1998-08-08|1998-08-25|TAKE BACK RETURN|REG AIR|he carefully spec| +398|923461|23462|2|46|68283.32|0.01|0.07|N|O|1998-07-31|1998-08-09|1998-08-08|COLLECT COD|AIR|thlessly! slyly s| +398|608400|8401|3|47|61493.39|0.08|0.04|N|O|1998-06-06|1998-07-19|1998-06-25|NONE|REG AIR|symptotes | +398|375053|25054|4|2|2256.08|0.03|0.02|N|O|1998-08-12|1998-06-30|1998-09-08|TAKE BACK RETURN|MAIL|final pinto beans haggle fluffil| +398|506730|44261|5|47|81625.37|0.04|0.04|N|O|1998-08-21|1998-07-03|1998-09-20|TAKE BACK RETURN|SHIP|g accounts: final deposits along the furio| +399|904507|4508|1|27|40809.42|0.01|0.06|R|F|1994-06-20|1994-07-24|1994-07-05|DELIVER IN PERSON|REG AIR|whithout the requ| +399|39522|39523|2|28|40922.56|0.06|0.00|R|F|1994-08-29|1994-07-16|1994-09-03|NONE|SHIP|te daringly ironic depos| +424|871366|21367|1|31|41456.92|0.10|0.08|A|F|1994-12-28|1995-01-07|1995-01-04|TAKE BACK RETURN|REG AIR|dolites are q| +424|37675|176|2|48|77408.16|0.06|0.01|A|F|1995-02-27|1994-12-16|1995-03-02|COLLECT COD|FOB|fully brave re| +424|198471|23478|3|47|73765.09|0.10|0.08|R|F|1995-01-31|1995-01-05|1995-02-09|DELIVER IN PERSON|MAIL|inal, regular packages. quickly final asym| +424|691509|16536|4|15|22507.05|0.09|0.06|A|F|1995-02-23|1995-01-25|1995-03-24|COLLECT COD|MAIL|fter the car| +424|186314|23824|5|12|16803.72|0.01|0.02|R|F|1995-01-17|1995-01-25|1995-01-22|TAKE BACK RETURN|TRUCK|place of the e| +425|663244|13245|1|38|45873.98|0.08|0.08|R|F|1994-08-21|1994-08-28|1994-09-15|COLLECT COD|FOB|pending hockey players. fluffily| +425|134411|9416|2|20|28908.20|0.00|0.00|A|F|1994-08-08|1994-08-22|1994-08-20|NONE|RAIL|to beans integrat| +425|38387|888|3|40|53015.20|0.01|0.06|A|F|1994-07-14|1994-08-21|1994-08-10|TAKE BACK RETURN|SHIP|e fluffily. furio| +426|325365|37872|1|1|1390.35|0.08|0.01|A|F|1993-01-20|1992-12-28|1993-02-02|COLLECT COD|MAIL|ts. deposits wake furiously quickly final | +426|395610|45611|2|16|27289.60|0.03|0.04|R|F|1992-10-24|1993-01-01|1992-10-31|COLLECT COD|TRUCK|to the slyly even instructions.| +426|16045|3546|3|20|19220.80|0.02|0.02|A|F|1992-12-03|1992-12-08|1992-12-06|NONE|AIR| pending dolphins are according| +426|659432|21946|4|22|30610.80|0.09|0.04|R|F|1993-01-01|1992-12-10|1993-01-04|DELIVER IN PERSON|REG AIR|uctions play slyly. | +426|59542|22044|5|41|61563.14|0.02|0.08|R|F|1992-10-19|1992-12-30|1992-10-27|DELIVER IN PERSON|FOB|al, ruthless ide| +426|721508|34023|6|35|53531.45|0.08|0.02|R|F|1993-01-03|1992-11-23|1993-01-22|COLLECT COD|REG AIR|c asymptotes haggle quickly across the e| +427|29174|4175|1|45|49642.65|0.10|0.08|N|O|1996-09-12|1996-11-11|1996-10-10|NONE|TRUCK|n courts wake furiously. carefully ir| +427|315140|40153|2|43|49670.59|0.03|0.05|N|O|1996-12-17|1996-09-30|1996-12-21|NONE|REG AIR|ost furiou| +427|542379|42380|3|18|25584.30|0.03|0.02|N|O|1996-10-25|1996-09-25|1996-11-19|NONE|FOB|ly regular packages a| +428|759531|47077|1|12|19086.00|0.01|0.00|R|F|1993-08-10|1993-05-19|1993-09-02|COLLECT COD|SHIP|riously bold theodolites. carefully unus| +428|431985|7002|2|2|3833.92|0.08|0.02|A|F|1993-08-07|1993-05-18|1993-08-22|TAKE BACK RETURN|REG AIR|osits according | +429|266517|41528|1|17|25219.50|0.10|0.06|N|O|1995-09-06|1995-07-23|1995-09-20|NONE|SHIP|riously regular ideas haggle carefu| +429|335840|10853|2|37|69405.71|0.03|0.08|N|O|1995-07-05|1995-07-28|1995-07-16|TAKE BACK RETURN|RAIL|instructions haggle. slyly| +429|446578|34103|3|40|60982.00|0.09|0.04|N|O|1995-07-16|1995-08-03|1995-07-24|NONE|MAIL|ronic accounts boost slyly re| +429|629832|17369|4|31|54615.80|0.04|0.06|N|O|1995-08-30|1995-06-30|1995-09-14|COLLECT COD|RAIL|side of the blit| +429|584027|9050|5|32|35552.00|0.04|0.07|N|O|1995-09-24|1995-08-25|1995-10-12|COLLECT COD|AIR| accounts x-ray ca| +429|730606|5635|6|22|36004.54|0.00|0.07|N|O|1995-08-27|1995-07-24|1995-09-16|DELIVER IN PERSON|MAIL|ully final ideas use fur| +430|494639|7149|1|49|80046.89|0.10|0.02|N|O|1997-02-10|1997-04-11|1997-02-19|TAKE BACK RETURN|MAIL|ffy accounts sleep quickly along the r| +430|382626|7641|2|19|32463.59|0.02|0.03|N|O|1997-02-19|1997-03-15|1997-03-21|TAKE BACK RETURN|RAIL|us dependencies. furiously reg| +430|786558|36559|3|22|36179.44|0.09|0.08|N|O|1997-02-12|1997-04-07|1997-02-22|COLLECT COD|MAIL|kages are fluffi| +430|680147|30148|4|26|29304.86|0.08|0.01|N|O|1997-04-12|1997-04-30|1997-04-16|DELIVER IN PERSON|TRUCK|y. slyly close accounts alongside of| +430|217332|17333|5|21|26235.72|0.04|0.05|N|O|1997-04-30|1997-04-08|1997-05-10|NONE|REG AIR|de of the carefully bold f| +430|691521|41522|6|11|16637.39|0.03|0.00|N|O|1997-04-18|1997-03-26|1997-04-22|NONE|AIR|s integrate fluffily ironic requests. sly| +430|384893|22415|7|6|11867.28|0.09|0.06|N|O|1997-02-20|1997-05-04|1997-03-10|COLLECT COD|AIR|eodolites. carefully ironic accounts w| +431|885418|10453|1|15|21050.55|0.09|0.07|A|F|1994-07-10|1994-05-29|1994-07-11|TAKE BACK RETURN|RAIL| fluffily bold deposits haggle! carefull| +431|211281|23786|2|42|50075.34|0.03|0.06|R|F|1994-05-12|1994-07-18|1994-05-17|COLLECT COD|FOB|s. ideas wake blithely accord| +431|993041|43042|3|7|7938.00|0.10|0.08|A|F|1994-07-16|1994-06-05|1994-07-22|TAKE BACK RETURN|SHIP|y bold requests. fur| +456|581133|18667|1|1|1214.11|0.04|0.01|N|O|1996-09-18|1996-11-03|1996-10-08|COLLECT COD|TRUCK|ructions use. carefully express de| +457|804513|4514|1|33|46776.51|0.07|0.03|N|O|1997-07-10|1997-07-24|1997-07-26|NONE|FOB|tions sleep against the packages. final f| +457|444777|19794|2|12|20661.00|0.08|0.06|N|O|1997-07-22|1997-07-05|1997-08-21|DELIVER IN PERSON|REG AIR|nstructions. even, bold frets after the | +457|355253|5254|3|26|34014.24|0.01|0.07|N|O|1997-08-29|1997-07-14|1997-08-30|DELIVER IN PERSON|REG AIR|regular packages. regula| +457|720446|32961|4|50|73320.50|0.06|0.03|N|O|1997-07-05|1997-07-10|1997-07-11|NONE|TRUCK|s about the regula| +457|530471|42982|5|31|46544.95|0.08|0.04|N|O|1997-05-25|1997-07-07|1997-05-28|NONE|FOB|sly express attai| +458|160296|22800|1|47|63745.63|0.07|0.05|N|O|1997-02-16|1997-01-22|1997-03-04|NONE|TRUCK|packages. | +458|85593|10596|2|19|29993.21|0.06|0.03|N|O|1997-01-19|1997-01-22|1997-02-04|TAKE BACK RETURN|AIR|metimes alongs| +458|552044|14556|3|12|13152.24|0.09|0.07|N|O|1997-01-25|1997-02-05|1997-02-24|DELIVER IN PERSON|REG AIR|ns use stealthily carefull| +458|195859|20866|4|28|54735.80|0.10|0.08|N|O|1996-12-20|1997-01-30|1996-12-25|NONE|FOB|. regular requests are. quick| +459|413187|25696|1|23|25303.68|0.07|0.05|A|F|1992-07-10|1992-08-04|1992-07-26|NONE|REG AIR| pinto bean| +459|423902|11427|2|40|73035.20|0.10|0.02|R|F|1992-08-06|1992-07-05|1992-08-28|TAKE BACK RETURN|RAIL| unusual decoys| +459|517378|29889|3|10|13953.50|0.03|0.04|R|F|1992-07-15|1992-07-24|1992-07-29|COLLECT COD|SHIP|sheaves cajole carefully. even, iro| +460|668989|44016|1|5|9789.75|0.08|0.06|N|O|1996-01-09|1995-12-11|1996-02-04|NONE|TRUCK|packages. slyly brave instructions bo| +460|695787|8301|2|36|64179.00|0.05|0.07|N|O|1996-01-25|1995-11-10|1996-02-22|NONE|FOB|ly regular reque| +461|589122|14145|1|40|48444.00|0.03|0.07|R|F|1993-01-14|1992-12-26|1993-01-23|NONE|TRUCK| theodolites across the slyly ironic req| +461|365690|28198|2|13|22823.84|0.00|0.08|A|F|1993-02-17|1993-01-27|1993-02-21|TAKE BACK RETURN|MAIL|ges use blithel| +461|144326|19331|3|32|43850.24|0.09|0.01|R|F|1993-02-05|1992-12-24|1993-02-19|DELIVER IN PERSON|FOB|efully pending theodolites haggle qui| +461|678983|41497|4|41|80439.95|0.01|0.00|R|F|1993-01-18|1993-01-28|1993-02-06|DELIVER IN PERSON|RAIL|egular requests kindle | +461|667015|29529|5|38|37315.24|0.10|0.04|R|F|1993-02-03|1992-12-13|1993-02-21|DELIVER IN PERSON|FOB|are. busily regular deposits sleep furio| +462|103972|41479|1|24|47423.28|0.07|0.01|N|O|1998-01-25|1997-12-10|1998-02-15|NONE|REG AIR| the caref| +462|455622|18132|2|48|75724.80|0.04|0.05|N|O|1997-11-25|1997-12-17|1997-12-16|NONE|RAIL|lyly ironic accounts haggle | +462|631839|44352|3|32|56665.60|0.10|0.03|N|O|1997-11-23|1997-12-29|1997-12-19|DELIVER IN PERSON|RAIL|final deposits play | +462|303954|41473|4|43|84191.42|0.10|0.05|N|O|1998-02-02|1998-01-22|1998-02-19|COLLECT COD|MAIL|tructions haggle furiously req| +462|553897|3898|5|48|93641.76|0.04|0.02|N|O|1997-11-24|1997-12-23|1997-12-18|DELIVER IN PERSON|SHIP|s boost acco| +463|90551|15554|1|19|29289.45|0.07|0.05|A|F|1995-01-09|1995-01-13|1995-01-21|COLLECT COD|TRUCK|hinder furiously silent deposits. furious| +463|878771|16323|2|19|33244.87|0.06|0.03|R|F|1995-03-04|1995-03-09|1995-03-07|TAKE BACK RETURN|AIR|y regular requests. slyly regular deposit| +463|503196|3197|3|14|16788.38|0.09|0.02|R|F|1995-02-08|1995-02-03|1995-02-17|DELIVER IN PERSON|TRUCK|. furiously bold accounts after t| +463|207689|32698|4|42|67060.14|0.10|0.07|R|F|1994-12-24|1995-01-29|1995-01-02|NONE|RAIL|nts across the regular deposits b| +463|614661|14662|5|31|48844.53|0.05|0.02|A|F|1995-03-09|1995-02-18|1995-04-01|NONE|RAIL|eas. expres| +488|689169|26709|1|16|18530.08|0.02|0.03|N|O|1997-07-19|1997-07-07|1997-07-25|COLLECT COD|TRUCK|thely even foxes sleep fluffily final ide| +488|848697|23730|2|22|36204.30|0.07|0.02|N|O|1997-09-12|1997-07-02|1997-09-15|NONE|REG AIR|heaves. bold theo| +488|44878|32379|3|4|7291.48|0.03|0.07|N|O|1997-08-12|1997-07-10|1997-08-16|DELIVER IN PERSON|FOB|p furiousl| +488|251335|26346|4|19|24440.08|0.06|0.08|N|O|1997-09-10|1997-08-28|1997-09-17|COLLECT COD|TRUCK|manent pinto beans wake across the sly| +488|174358|24359|5|39|55861.65|0.05|0.05|N|O|1997-07-14|1997-08-19|1997-07-27|DELIVER IN PERSON|TRUCK|l instructions boost slyly along| +488|431144|18669|6|37|39779.44|0.05|0.05|N|O|1997-06-05|1997-07-10|1997-06-30|TAKE BACK RETURN|MAIL|solve blithely ironic| +488|231820|31821|7|41|71824.21|0.10|0.01|N|O|1997-06-08|1997-08-20|1997-06-17|COLLECT COD|SHIP|ar, express foxes wake fur| +489|190804|40805|1|49|92845.20|0.01|0.04|A|F|1992-10-21|1992-08-20|1992-10-27|COLLECT COD|FOB| deposits h| +489|837610|12643|2|16|24761.12|0.02|0.05|R|F|1992-09-11|1992-09-28|1992-10-08|COLLECT COD|RAIL|uriously re| +489|703142|15657|3|32|36643.52|0.02|0.02|R|F|1992-08-22|1992-09-19|1992-09-12|COLLECT COD|RAIL|sits: quickly special the| +489|704523|42066|4|10|15274.90|0.05|0.00|A|F|1992-09-16|1992-09-29|1992-10-13|COLLECT COD|SHIP|ly final ideas. th| +489|901294|38849|5|41|53105.25|0.02|0.05|R|F|1992-08-13|1992-09-23|1992-08-25|NONE|AIR| instructions| +489|40016|40017|6|45|43020.45|0.08|0.02|R|F|1992-09-09|1992-09-08|1992-09-24|TAKE BACK RETURN|FOB|ss the sometimes bold accounts| +489|544603|44604|7|10|16475.80|0.09|0.01|A|F|1992-07-18|1992-09-09|1992-08-05|TAKE BACK RETURN|SHIP|ding asymptotes| +490|136864|11869|1|42|79836.12|0.06|0.06|R|F|1992-09-15|1992-07-12|1992-10-03|DELIVER IN PERSON|AIR|ges eat fluffily alongs| +490|271011|46022|2|35|34370.00|0.02|0.08|R|F|1992-07-14|1992-07-13|1992-07-16|DELIVER IN PERSON|RAIL|posits sleep furiou| +490|877349|27350|3|10|13263.00|0.05|0.01|R|F|1992-07-11|1992-06-29|1992-07-31|COLLECT COD|SHIP| pinto beans above the blithely fina| +490|591462|41463|4|4|6213.76|0.08|0.05|A|F|1992-07-23|1992-07-03|1992-08-10|COLLECT COD|SHIP| pinto beans boost carefully furio| +490|697406|34946|5|35|49117.95|0.00|0.04|A|F|1992-06-20|1992-06-25|1992-07-14|DELIVER IN PERSON|REG AIR|cial dependencies after the eve| +491|333701|8714|1|19|32959.11|0.10|0.04|N|O|1995-10-12|1995-08-24|1995-11-09|DELIVER IN PERSON|REG AIR|tly pending ideas use blithely pinto| +491|504283|41814|2|20|25745.20|0.05|0.06|N|O|1995-06-27|1995-07-24|1995-07-11|DELIVER IN PERSON|AIR|riously daring pinto beans nag acco| +491|467759|30269|3|41|70795.93|0.00|0.02|N|O|1995-09-22|1995-09-02|1995-10-21|TAKE BACK RETURN|AIR|deposits haggle bold| +491|610454|47991|4|36|49119.12|0.02|0.01|N|O|1995-07-28|1995-08-19|1995-08-20|TAKE BACK RETURN|MAIL|kly final instruc| +491|887103|49621|5|46|50142.76|0.06|0.04|N|O|1995-10-06|1995-08-30|1995-10-14|COLLECT COD|RAIL|ts hinder quickly. carefully special acc| +491|532634|20165|6|2|3333.22|0.07|0.07|N|O|1995-10-15|1995-08-09|1995-11-14|NONE|TRUCK|usly. furiously final requests af| +491|970835|45874|7|27|51456.33|0.05|0.04|N|O|1995-08-23|1995-08-18|1995-08-29|COLLECT COD|MAIL|tions. blithely eve| +492|817401|42434|1|6|7910.16|0.07|0.00|N|O|1998-08-29|1998-09-02|1998-09-14|COLLECT COD|AIR|the pending, regular packages. excuses| +492|50065|37569|2|7|7105.42|0.02|0.04|N|O|1998-09-30|1998-09-19|1998-10-10|DELIVER IN PERSON|REG AIR| fluffily ironic instructions along the car| +492|428902|16427|3|12|21970.56|0.01|0.07|N|O|1998-11-05|1998-10-03|1998-11-10|DELIVER IN PERSON|MAIL|ake slyly besides| +492|545747|8258|4|28|50196.16|0.07|0.01|N|O|1998-08-27|1998-09-09|1998-09-05|TAKE BACK RETURN|AIR|ole furiously after the stealthily f| +493|141996|29503|1|43|87633.57|0.01|0.02|N|O|1997-04-13|1997-05-08|1997-04-30|TAKE BACK RETURN|FOB|uriously final deposits hagg| +493|519103|44124|2|32|35906.56|0.08|0.04|N|O|1997-03-16|1997-05-20|1997-04-15|DELIVER IN PERSON|FOB|sts doze furiously along the furio| +493|557942|7943|3|14|27998.88|0.05|0.05|N|O|1997-06-13|1997-04-29|1997-06-23|COLLECT COD|MAIL|y regular | +493|318273|30780|4|12|15495.12|0.04|0.07|N|O|1997-05-26|1997-04-08|1997-05-29|COLLECT COD|REG AIR|ep after the furiously regula| +493|212028|37037|5|3|2820.03|0.06|0.07|N|O|1997-04-25|1997-04-29|1997-05-21|COLLECT COD|FOB| ironic accounts along the | +493|544667|7178|6|50|85582.00|0.10|0.03|N|O|1997-04-26|1997-04-08|1997-05-14|NONE|SHIP| along the carefully bold packa| +494|36951|36952|1|25|47198.75|0.05|0.08|R|F|1992-07-04|1992-08-27|1992-07-30|NONE|SHIP|ges affix slowly above the| +494|26197|1198|2|44|49420.36|0.08|0.06|A|F|1992-07-17|1992-07-31|1992-07-18|NONE|SHIP|ven accounts alongsi| +494|284988|22504|3|38|74972.86|0.07|0.04|R|F|1992-08-24|1992-09-18|1992-09-17|NONE|REG AIR|above the furiously ironic foxes detect a| +495|113259|766|1|50|63612.50|0.08|0.05|A|F|1993-05-29|1993-06-06|1993-06-10|DELIVER IN PERSON|RAIL|efully unusual excuses| +495|532889|7910|2|6|11531.16|0.05|0.07|R|F|1993-08-19|1993-06-14|1993-09-13|NONE|MAIL| among the furiously un| +495|261893|24399|3|22|40807.36|0.00|0.06|A|F|1993-08-17|1993-06-28|1993-08-30|COLLECT COD|TRUCK|tructions use blithely | +520|737828|12857|1|36|67168.44|0.00|0.00|N|O|1997-04-18|1997-05-10|1997-04-23|TAKE BACK RETURN|MAIL|ges sleep | +520|669677|7217|2|36|59279.04|0.06|0.06|N|O|1997-05-24|1997-05-19|1997-06-11|DELIVER IN PERSON|AIR|e silent requests. pendin| +521|553925|41459|1|4|7915.60|0.10|0.03|N|O|1997-06-01|1997-05-15|1997-06-09|COLLECT COD|TRUCK|ss ideas. ironic foxes| +521|810571|23088|2|17|25186.01|0.08|0.03|N|O|1997-06-09|1997-05-23|1997-07-02|DELIVER IN PERSON|MAIL|lly careful| +521|264362|1878|3|7|9284.45|0.00|0.08|N|O|1997-03-19|1997-04-05|1997-03-20|NONE|REG AIR|rays until th| +522|809111|9112|1|40|40802.80|0.06|0.01|A|F|1993-06-27|1993-07-27|1993-07-09|NONE|RAIL|uriously up the furiously| +522|725814|38329|2|11|20237.58|0.06|0.03|R|F|1993-08-26|1993-09-04|1993-08-30|TAKE BACK RETURN|TRUCK|r requests affix blithely above the blithe| +522|746618|46619|3|49|81564.42|0.05|0.07|A|F|1993-06-25|1993-07-29|1993-07-01|TAKE BACK RETURN|REG AIR|e quickly carefully special wa| +522|404958|4959|4|6|11177.58|0.06|0.02|A|F|1993-07-19|1993-07-09|1993-07-29|COLLECT COD|REG AIR|eas wake slyly after the carefully silent | +523|541563|4074|1|41|65786.14|0.05|0.02|R|F|1992-10-19|1992-10-05|1992-11-17|COLLECT COD|REG AIR| the regular packa| +523|37020|49521|2|26|24882.52|0.06|0.03|A|F|1992-08-31|1992-11-05|1992-09-14|COLLECT COD|TRUCK|ully above t| +524|747980|47981|1|9|18251.55|0.08|0.06|A|F|1994-05-12|1994-04-25|1994-05-13|TAKE BACK RETURN|TRUCK|accounts. deposits promise above| +525|127072|14579|1|46|50557.22|0.08|0.02|A|F|1994-05-29|1994-05-24|1994-06-02|TAKE BACK RETURN|REG AIR|near the express deposits. unusual depos| +525|697946|10460|2|49|95251.59|0.07|0.04|R|F|1994-04-09|1994-06-21|1994-04-30|COLLECT COD|TRUCK|lent, bold pi| +525|374443|11965|3|35|53110.05|0.09|0.06|R|F|1994-04-18|1994-04-25|1994-04-29|COLLECT COD|REG AIR|g to the carefully bold accounts.| +526|108961|21464|1|4|7879.84|0.04|0.05|R|F|1993-11-10|1993-12-23|1993-11-19|NONE|AIR|p above the pending, s| +526|302952|15459|2|33|64513.02|0.05|0.03|A|F|1994-02-19|1993-12-06|1994-02-20|DELIVER IN PERSON|AIR|ly alongside of the express, even excuse| +526|701305|1306|3|5|6531.35|0.08|0.04|A|F|1993-11-14|1993-12-14|1993-12-14|TAKE BACK RETURN|AIR|n, regular foxes| +526|831366|6399|4|26|33730.32|0.01|0.07|R|F|1994-02-18|1993-12-27|1994-02-22|TAKE BACK RETURN|AIR|ual packages integrate permanent| +527|716643|4186|1|3|4978.83|0.07|0.08|A|F|1995-02-26|1995-01-21|1995-03-22|NONE|FOB|ong the slyly pending| +527|612192|49729|2|39|43062.24|0.10|0.03|A|F|1995-03-14|1995-02-20|1995-04-12|TAKE BACK RETURN|AIR|bold foxes wake blithely. accoun| +527|110046|47553|3|37|39073.48|0.05|0.00|R|F|1995-02-25|1995-02-10|1995-02-27|NONE|FOB|he carefully fin| +527|532084|19615|4|14|15624.84|0.05|0.00|A|F|1995-02-24|1995-01-18|1995-03-26|COLLECT COD|AIR|refully about the bli| +527|728222|3251|5|12|15002.28|0.09|0.03|R|F|1995-03-27|1995-02-01|1995-04-14|TAKE BACK RETURN|TRUCK|he ironic soma| +527|214191|39200|6|29|32050.22|0.10|0.05|R|F|1995-02-08|1995-02-27|1995-02-10|COLLECT COD|MAIL|xes. quickly unusual b| +552|886406|11441|1|1|1392.36|0.04|0.03|R|F|1994-02-26|1994-02-04|1994-03-01|NONE|SHIP| x-ray requests. b| +552|814587|27104|2|25|37538.50|0.10|0.00|R|F|1993-12-29|1994-02-26|1994-01-23|TAKE BACK RETURN|MAIL|furiously express | +552|754462|29493|3|41|62173.63|0.00|0.03|A|F|1994-01-26|1994-01-04|1994-02-13|NONE|FOB|packages use qui| +553|711513|24028|1|37|56405.76|0.10|0.02|N|F|1995-06-04|1995-08-02|1995-06-21|TAKE BACK RETURN|MAIL|uches haggle sl| +553|398349|23364|2|30|43419.90|0.05|0.01|N|O|1995-09-25|1995-07-13|1995-10-11|COLLECT COD|AIR| fluffily silent instructio| +553|38814|26315|3|13|22786.53|0.04|0.00|N|O|1995-07-15|1995-06-28|1995-08-14|NONE|TRUCK| quickly bold accounts cajole. furi| +553|334163|21682|4|50|59857.50|0.03|0.07|N|O|1995-07-03|1995-08-10|1995-07-26|COLLECT COD|SHIP|foxes wake fl| +554|50396|25399|1|6|8078.34|0.09|0.04|N|O|1996-12-03|1996-10-15|1996-12-31|TAKE BACK RETURN|MAIL|ctions cajole carefull| +554|4673|17174|2|2|3155.34|0.02|0.05|N|O|1996-10-20|1996-11-17|1996-10-31|COLLECT COD|RAIL|ly regular accounts across the bol| +554|538305|816|3|29|38955.12|0.07|0.06|N|O|1996-12-08|1996-12-05|1997-01-06|COLLECT COD|RAIL|ns according to the blithely d| +554|279343|41849|4|36|47603.88|0.03|0.02|N|O|1997-01-06|1996-11-14|1997-01-12|DELIVER IN PERSON|TRUCK|foxes boost blithely slyly ironic Ti| +554|901496|39051|5|40|59898.00|0.00|0.06|N|O|1996-10-31|1996-10-18|1996-11-26|COLLECT COD|AIR|ts. finally bold packages use. bold r| +554|435064|35065|6|10|9990.40|0.08|0.00|N|O|1996-11-17|1996-12-11|1996-11-25|COLLECT COD|FOB|dle accounts. carefully e| +554|110949|23452|7|16|31359.04|0.00|0.01|N|O|1996-12-17|1996-10-14|1996-12-20|NONE|TRUCK|d dolphins | +555|703211|3212|1|47|57066.46|0.02|0.03|R|F|1994-06-18|1994-07-13|1994-07-15|NONE|TRUCK|ual instruction| +555|863639|26157|2|17|27244.03|0.05|0.05|R|F|1994-08-01|1994-07-22|1994-08-23|NONE|AIR|into beans along| +555|173869|23870|3|24|46628.64|0.00|0.03|R|F|1994-07-08|1994-06-30|1994-07-31|DELIVER IN PERSON|MAIL|ic pinto beans use slyly. fu| +556|373189|35697|1|43|54273.31|0.03|0.04|A|F|1993-06-27|1993-05-15|1993-07-26|TAKE BACK RETURN|TRUCK|s accounts after t| +556|171489|21490|2|37|57737.76|0.06|0.00|R|F|1993-03-24|1993-05-01|1993-03-30|NONE|RAIL|olites. ironic escapades use idly ab| +556|212296|49809|3|31|37456.68|0.10|0.02|A|F|1993-04-25|1993-05-04|1993-05-01|TAKE BACK RETURN|SHIP| theodolites unwind furiously special ti| +556|53736|16238|4|31|52381.63|0.02|0.01|R|F|1993-05-02|1993-04-23|1993-05-29|COLLECT COD|AIR| furiously even packages. slyly unus| +556|130361|17868|5|21|29218.56|0.06|0.06|A|F|1993-06-08|1993-05-03|1993-06-10|COLLECT COD|SHIP|the quickl| +556|976070|38590|6|41|46987.23|0.06|0.02|A|F|1993-06-24|1993-06-09|1993-07-14|NONE|REG AIR|ss the instru| +557|735616|10645|1|8|13212.64|0.08|0.03|N|O|1996-11-12|1996-11-29|1996-11-20|TAKE BACK RETURN|RAIL|ys along the special accounts. special,| +557|492450|4960|2|26|37503.18|0.02|0.00|N|O|1996-12-16|1996-12-01|1996-12-29|DELIVER IN PERSON|AIR|ckly regular requests sleep instruction| +557|604537|17050|3|34|49011.00|0.07|0.07|N|O|1996-10-02|1996-11-07|1996-10-14|DELIVER IN PERSON|SHIP|ular foxes. fluffy, re| +557|441013|28538|4|28|26711.72|0.05|0.00|N|O|1996-11-05|1996-10-19|1996-11-19|DELIVER IN PERSON|RAIL|quickly unusu| +557|103006|28011|5|48|48432.00|0.06|0.06|N|O|1996-12-04|1996-10-14|1996-12-08|NONE|RAIL|its; accounts are furiously carefull| +557|208940|8941|6|28|51770.04|0.03|0.01|N|O|1996-09-25|1996-11-04|1996-10-02|COLLECT COD|TRUCK|o beans. quickly bold deposi| +557|652810|15324|7|13|22916.14|0.04|0.01|N|O|1996-11-30|1996-11-23|1996-12-10|DELIVER IN PERSON|FOB|aggle slyly among the even, ironic hockey p| +558|771663|9209|1|44|76323.72|0.10|0.08|N|O|1996-07-04|1996-07-14|1996-07-09|COLLECT COD|TRUCK|arefully special hockey| +558|331538|6551|2|2|3139.04|0.02|0.06|N|O|1996-06-10|1996-07-21|1996-07-06|NONE|SHIP|s. blithely special | +558|153944|28951|3|17|33964.98|0.06|0.02|N|O|1996-07-23|1996-07-27|1996-08-03|TAKE BACK RETURN|MAIL|f the special requests. ironic accounts| +558|320024|7543|4|35|36540.35|0.04|0.08|N|O|1996-07-04|1996-07-24|1996-07-30|DELIVER IN PERSON|FOB|. regular grouche| +559|571934|46957|1|49|98289.59|0.03|0.01|N|O|1995-10-25|1995-12-11|1995-11-03|NONE|FOB|y regular accounts. slyly bold requests| +559|487020|24548|2|7|7049.00|0.10|0.06|N|O|1995-12-01|1995-12-11|1995-12-24|NONE|SHIP|ses shall have to run? carefu| +559|343828|6335|3|28|52410.68|0.10|0.03|N|O|1996-01-06|1995-10-31|1996-01-24|DELIVER IN PERSON|RAIL|ns. permanently final | +559|700946|947|4|22|42832.02|0.02|0.00|N|O|1995-11-29|1995-10-28|1995-12-03|DELIVER IN PERSON|AIR|r the pinto beans. furiously even| +559|790646|15677|5|7|12156.27|0.01|0.05|N|O|1995-12-03|1995-11-03|1995-12-24|TAKE BACK RETURN|AIR|. furiously unusual p| +559|375125|37633|6|48|57605.28|0.08|0.05|N|O|1995-11-09|1995-12-10|1995-12-04|DELIVER IN PERSON|REG AIR|beans. even accounts wake eve| +559|710535|48078|7|20|30910.00|0.10|0.08|N|O|1995-12-10|1995-11-30|1995-12-15|DELIVER IN PERSON|AIR|ntegrate above the fin| +584|956423|6424|1|43|63613.34|0.02|0.00|N|O|1998-03-04|1997-12-22|1998-03-22|DELIVER IN PERSON|TRUCK| regular excuses wake| +584|586584|11607|2|41|68492.96|0.02|0.04|N|O|1998-01-18|1998-01-15|1998-02-16|TAKE BACK RETURN|TRUCK|le blithely according to the sl| +584|715899|3442|3|31|59360.66|0.00|0.00|N|O|1997-11-13|1997-12-13|1997-11-24|TAKE BACK RETURN|FOB| regular t| +584|99378|36882|4|1|1377.37|0.09|0.01|N|O|1997-11-15|1997-12-10|1997-12-05|NONE|AIR| special sauternes across the quickly | +584|231287|43792|5|7|8527.89|0.09|0.02|N|O|1998-02-13|1997-12-14|1998-02-27|TAKE BACK RETURN|MAIL|ts. special, ironic theodol| +584|231748|44253|6|37|62150.01|0.03|0.01|N|O|1998-02-02|1998-01-06|1998-02-16|TAKE BACK RETURN|REG AIR|out the closely bold deposits. sile| +584|980002|42522|7|37|40032.52|0.01|0.00|N|O|1997-11-28|1997-12-11|1997-12-10|TAKE BACK RETURN|MAIL|riously slow | +585|889482|14517|1|7|10300.08|0.07|0.03|A|F|1994-06-23|1994-07-19|1994-07-09|NONE|REG AIR|sts. blithely even epitaphs promise carefu| +585|514956|27467|2|32|63069.76|0.09|0.07|A|F|1994-09-19|1994-07-19|1994-09-20|NONE|FOB|usual excuses: waters subl| +585|859913|47465|3|18|33711.66|0.01|0.06|A|F|1994-08-11|1994-06-29|1994-09-05|COLLECT COD|SHIP|gular accounts after the acc| +585|547528|10039|4|10|15755.00|0.10|0.03|R|F|1994-06-03|1994-07-14|1994-06-14|TAKE BACK RETURN|TRUCK|regular requests. packages nag. pending| +585|302218|39737|5|39|47587.80|0.10|0.05|R|F|1994-06-28|1994-08-24|1994-07-20|TAKE BACK RETURN|AIR|foxes. furiously express reque| +586|682657|32658|1|46|75422.52|0.01|0.08|N|O|1998-08-20|1998-09-07|1998-08-26|NONE|FOB|ul instructions integra| +586|408804|8805|2|34|58234.52|0.02|0.07|N|O|1998-08-08|1998-08-15|1998-08-15|DELIVER IN PERSON|SHIP|ve the sly| +586|752058|27089|3|42|46620.84|0.00|0.01|N|O|1998-10-11|1998-08-15|1998-11-04|DELIVER IN PERSON|MAIL|n ideas. ironic, ironic pi| +586|829316|16865|4|39|48565.53|0.09|0.01|N|O|1998-09-06|1998-09-28|1998-09-23|DELIVER IN PERSON|REG AIR|ly even accounts | +587|646772|21797|1|43|73905.82|0.03|0.02|N|O|1998-05-26|1998-04-12|1998-06-24|DELIVER IN PERSON|REG AIR|s haggle about t| +587|288847|13858|2|10|18358.30|0.04|0.06|N|O|1998-04-08|1998-04-29|1998-04-17|NONE|FOB|es detect carefully after the| +587|639461|39462|3|25|35010.75|0.08|0.07|N|O|1998-02-21|1998-03-28|1998-03-03|NONE|REG AIR|ut the ironic packages. fluffil| +588|651602|14116|1|49|76124.93|0.08|0.05|N|O|1997-10-05|1997-08-11|1997-10-19|NONE|REG AIR| final asy| +588|459676|47204|2|35|57247.75|0.08|0.08|N|O|1997-08-29|1997-08-26|1997-09-13|COLLECT COD|TRUCK|ending requests across th| +589|724618|37133|1|24|39421.92|0.07|0.06|N|O|1998-02-09|1998-04-10|1998-03-08|NONE|RAIL|accounts sleep. fluffily| +589|642898|30435|2|15|27612.90|0.05|0.02|N|O|1998-04-11|1998-04-17|1998-05-02|TAKE BACK RETURN|SHIP|ily even courts wake bl| +589|183950|21460|3|14|28475.30|0.06|0.01|N|O|1998-03-10|1998-04-10|1998-03-13|DELIVER IN PERSON|MAIL| according t| +589|634284|34285|4|14|17055.50|0.05|0.00|N|O|1998-04-04|1998-02-21|1998-04-27|DELIVER IN PERSON|FOB|refully quickly bold instructions? regu| +590|778636|3667|1|17|29148.20|0.07|0.01|N|O|1998-02-07|1997-12-04|1998-03-04|TAKE BACK RETURN|REG AIR|dolites impress blithely about t| +590|531527|19058|2|20|31170.00|0.07|0.05|N|O|1997-12-30|1997-11-29|1998-01-04|NONE|AIR| wake. express deposits doze | +590|372916|47931|3|34|67622.60|0.03|0.01|N|O|1998-01-17|1997-12-19|1998-02-05|DELIVER IN PERSON|FOB| regular packages| +590|598370|35904|4|16|23493.60|0.07|0.01|N|O|1997-12-07|1997-11-25|1997-12-23|COLLECT COD|FOB|. bold platel| +590|788853|13884|5|43|83498.26|0.08|0.02|N|O|1997-12-30|1997-11-28|1998-01-16|NONE|AIR|usual warthogs again| +591|358371|33386|1|38|54315.68|0.01|0.07|R|F|1994-01-10|1994-01-19|1994-01-20|NONE|SHIP| express platel| +591|126230|1235|2|42|52761.66|0.04|0.01|R|F|1994-02-23|1994-01-18|1994-02-25|COLLECT COD|MAIL|bout the car| +591|531380|6401|3|3|4234.08|0.04|0.04|R|F|1994-03-05|1994-01-30|1994-03-19|COLLECT COD|REG AIR|fully. quickl| +591|903360|3361|4|35|47716.20|0.00|0.08|A|F|1994-01-11|1994-01-26|1994-01-20|NONE|REG AIR|r packages impress. blithely| +591|770086|32602|5|45|52022.25|0.08|0.03|R|F|1994-01-03|1994-01-21|1994-01-22|DELIVER IN PERSON|SHIP|sual pinto beans. furiously re| +591|818671|6220|6|49|77891.87|0.10|0.01|A|F|1994-03-13|1994-02-24|1994-04-10|NONE|RAIL|nto beans detect carefully.| +591|402083|27100|7|12|11820.72|0.01|0.08|R|F|1994-01-12|1994-01-31|1994-01-14|NONE|AIR|- regular, specia| +616|795581|45582|1|19|31854.45|0.00|0.07|R|F|1994-02-03|1994-03-18|1994-03-03|NONE|SHIP|carefully ironic ac| +617|201791|14296|1|16|27084.48|0.08|0.02|A|F|1993-07-16|1993-07-19|1993-08-12|NONE|SHIP|ole along the furiously express idea| +617|497373|22392|2|11|15073.85|0.07|0.04|A|F|1993-05-15|1993-07-08|1993-06-13|NONE|FOB|boost furiously above the| +617|332367|19886|3|45|62970.75|0.10|0.06|A|F|1993-08-26|1993-06-28|1993-09-01|TAKE BACK RETURN|RAIL|g instructions. ironic, unusual | +617|82189|19693|4|36|42162.48|0.07|0.08|R|F|1993-05-14|1993-06-16|1993-05-20|COLLECT COD|MAIL|s. slyly ironic foxes wake slyly | +617|333920|8933|5|18|35170.38|0.01|0.04|A|F|1993-07-19|1993-07-27|1993-07-23|TAKE BACK RETURN|TRUCK|equests. brave, | +617|187474|37475|6|11|17176.17|0.08|0.00|R|F|1993-07-01|1993-07-17|1993-07-27|DELIVER IN PERSON|RAIL|nstructions.| +617|860850|23368|7|4|7243.24|0.00|0.06|A|F|1993-05-12|1993-07-05|1993-05-26|DELIVER IN PERSON|REG AIR|sly regular foxes na| +618|297948|22959|1|34|66161.62|0.05|0.08|A|F|1994-04-13|1994-03-30|1994-05-09|COLLECT COD|RAIL|wake ironic accounts. quickly r| +619|173584|36088|1|42|69618.36|0.08|0.05|A|F|1993-02-21|1992-12-04|1993-03-21|NONE|AIR| excuses cajole accord| +619|420424|45441|2|22|29576.80|0.07|0.01|A|F|1992-12-04|1992-12-28|1992-12-12|TAKE BACK RETURN|REG AIR|ithely fluffily silent accounts. un| +619|50517|13019|3|46|67505.46|0.09|0.08|R|F|1992-11-25|1993-01-10|1992-12-08|NONE|RAIL|around the regular packages. fl| +619|35475|10476|4|44|62060.68|0.07|0.07|R|F|1993-02-07|1993-01-21|1993-03-03|TAKE BACK RETURN|FOB|y accounts. ironic, regul| +619|226648|39153|5|9|14171.67|0.03|0.04|R|F|1993-01-24|1992-11-25|1993-01-28|COLLECT COD|AIR|, even requests-- final deposits are| +619|259556|34567|6|19|28795.26|0.08|0.05|R|F|1992-11-22|1993-01-09|1992-12-15|NONE|AIR|ng to the ironic theodolites cajole car| +619|355028|30043|7|46|49818.46|0.07|0.01|R|F|1992-11-14|1993-01-01|1992-12-10|TAKE BACK RETURN|FOB|counts. furiously even accounts na| +620|943362|43363|1|23|32322.36|0.07|0.06|R|F|1995-01-27|1994-12-21|1995-02-24|TAKE BACK RETURN|REG AIR| furiously quickly regular pinto| +620|78535|3538|2|15|22702.95|0.10|0.03|R|F|1994-11-08|1995-01-02|1994-12-08|DELIVER IN PERSON|SHIP|ar platelets use regular courts. carefully | +620|934316|9353|3|40|54010.80|0.10|0.04|R|F|1994-12-07|1995-01-02|1995-01-01|TAKE BACK RETURN|RAIL|ag. carefully ironic theodolites ar| +620|38102|603|4|27|28082.70|0.00|0.04|R|F|1995-01-06|1995-01-06|1995-01-15|DELIVER IN PERSON|TRUCK|efully pendin| +620|363848|26356|5|29|55443.07|0.09|0.04|A|F|1994-11-13|1994-11-29|1994-11-22|NONE|REG AIR|ons use furiously| +621|294851|44852|1|9|16612.56|0.03|0.00|N|O|1997-02-20|1996-12-26|1997-03-11|NONE|MAIL|ans wake quickly around the p| +621|552283|14795|2|12|16023.12|0.06|0.04|N|O|1997-02-06|1997-01-23|1997-03-04|TAKE BACK RETURN|RAIL|nusual dependencie| +621|213572|26077|3|5|7427.80|0.05|0.08|N|O|1996-12-10|1996-12-29|1996-12-17|COLLECT COD|AIR|luffily unusual packages. furio| +621|503474|15985|4|29|42846.05|0.03|0.01|N|O|1996-12-17|1997-02-02|1996-12-31|COLLECT COD|SHIP|cies affix through th| +621|877863|15415|5|14|25771.48|0.07|0.03|N|O|1997-03-11|1997-02-12|1997-04-03|COLLECT COD|FOB|s cajole blithely above the bold, final i| +621|238215|13224|6|38|43821.60|0.10|0.03|N|O|1996-12-14|1997-01-27|1996-12-19|COLLECT COD|AIR|play. special orbits wake furious| +622|435959|23484|1|30|56847.90|0.06|0.06|A|F|1994-06-13|1994-05-06|1994-06-30|COLLECT COD|AIR|t platelets. quickly express pac| +622|153379|28386|2|45|64456.65|0.00|0.05|R|F|1994-06-10|1994-05-02|1994-07-04|TAKE BACK RETURN|REG AIR|. quickly even d| +622|831240|6273|3|13|15225.60|0.06|0.08|A|F|1994-04-11|1994-05-16|1994-05-01|DELIVER IN PERSON|REG AIR| are even foxes. bold theodolites| +622|649399|49400|4|47|63372.92|0.03|0.07|R|F|1994-04-05|1994-04-04|1994-04-20|COLLECT COD|TRUCK|hely final excuses al| +622|441779|41780|5|16|27532.00|0.07|0.01|A|F|1994-04-08|1994-05-01|1994-05-02|NONE|SHIP|ptotes. ironic packag| +622|963538|13539|6|42|67262.58|0.05|0.04|A|F|1994-03-18|1994-04-05|1994-04-13|TAKE BACK RETURN|FOB|hy packages. regular depths boost furi| +623|742006|29549|1|4|4191.88|0.08|0.07|R|F|1995-01-31|1995-03-24|1995-02-18|NONE|TRUCK|posits; careful| +623|886594|36595|2|9|14224.95|0.02|0.04|R|F|1995-05-23|1995-03-17|1995-06-08|TAKE BACK RETURN|RAIL| requests haggle| +623|971838|9396|3|18|34376.22|0.03|0.02|R|F|1995-02-22|1995-03-08|1995-02-24|DELIVER IN PERSON|SHIP|pinto beans. deposits detect furiousl| +648|229374|41879|1|25|32584.00|0.10|0.08|N|O|1996-08-02|1996-09-01|1996-08-10|COLLECT COD|TRUCK|ial accounts. slyly regular excuses wake | +648|74230|11734|2|50|60211.50|0.02|0.00|N|O|1996-09-05|1996-09-20|1996-09-21|TAKE BACK RETURN|SHIP|lets against the fluffily ir| +648|571510|9044|3|33|52189.17|0.08|0.06|N|O|1996-09-23|1996-09-21|1996-10-14|TAKE BACK RETURN|AIR|ickly bold dolphins| +648|360485|35500|4|4|6181.88|0.04|0.07|N|O|1996-09-26|1996-09-28|1996-10-19|TAKE BACK RETURN|SHIP|ross the even dependenc| +648|664700|39727|5|21|34958.07|0.00|0.07|N|O|1996-10-14|1996-09-08|1996-11-12|NONE|AIR|al pinto beans boost carefully i| +648|606662|6663|6|2|3137.26|0.04|0.00|N|O|1996-11-16|1996-08-31|1996-11-29|DELIVER IN PERSON|TRUCK|ake even, fluffy packages. f| +649|184082|21592|1|26|30318.08|0.04|0.05|A|F|1995-01-18|1994-11-12|1995-01-30|TAKE BACK RETURN|TRUCK|pending foxes nag fluffily slyly f| +649|854649|42201|2|29|46504.40|0.04|0.06|A|F|1995-01-21|1994-12-26|1995-02-11|DELIVER IN PERSON|TRUCK|, ironic packag| +649|69790|19791|3|40|70391.60|0.01|0.08|A|F|1995-01-26|1994-12-28|1995-02-17|DELIVER IN PERSON|REG AIR|y final instructions. expre| +650|71670|34172|1|11|18058.37|0.08|0.03|N|O|1995-09-11|1995-09-21|1995-10-02|DELIVER IN PERSON|TRUCK| packages. pac| +651|742853|5368|1|4|7583.28|0.07|0.04|N|O|1997-12-26|1997-11-21|1998-01-07|NONE|REG AIR|hins integrate blithely| +651|129607|29608|2|4|6546.40|0.02|0.01|N|O|1998-02-15|1998-01-03|1998-03-01|NONE|TRUCK|doze deposits| +651|304035|16542|3|24|24936.48|0.07|0.06|N|O|1997-11-11|1997-12-26|1997-11-15|COLLECT COD|TRUCK|ronic deposits dazzle closely bold depos| +651|912382|24901|4|39|54379.26|0.07|0.01|N|O|1997-12-13|1997-12-12|1998-01-06|TAKE BACK RETURN|TRUCK|ss instructions| +652|550307|308|1|42|57005.76|0.04|0.00|N|O|1996-10-13|1996-10-03|1996-11-05|DELIVER IN PERSON|REG AIR|. pending, silent p| +652|841|842|2|46|80124.64|0.10|0.06|N|O|1996-09-02|1996-09-07|1996-09-03|NONE|MAIL|to the quickly special dependenci| +652|118082|18083|3|48|52803.84|0.07|0.03|N|O|1996-08-29|1996-09-02|1996-09-24|TAKE BACK RETURN|RAIL| unusual de| +652|594485|19508|4|45|71075.70|0.09|0.06|N|O|1996-08-11|1996-08-16|1996-08-21|NONE|TRUCK|lar theodolites. ironic, unusu| +652|507972|7973|5|10|19799.50|0.04|0.08|N|O|1996-11-07|1996-08-14|1996-11-20|DELIVER IN PERSON|MAIL|r, regular requests. carefully bold requ| +652|476779|26780|6|31|54428.25|0.00|0.03|N|O|1996-08-11|1996-08-15|1996-08-31|NONE|AIR|ding ideas are.| +652|212775|288|7|1|1687.76|0.10|0.07|N|O|1996-08-28|1996-09-28|1996-09-10|TAKE BACK RETURN|AIR|accounts. c| +653|103728|28733|1|31|53683.32|0.00|0.01|N|O|1995-10-22|1995-11-24|1995-11-06|COLLECT COD|SHIP|ns. fluffily even platelets a| +653|347725|47726|2|10|17727.10|0.03|0.05|N|O|1996-01-15|1995-11-28|1996-02-08|COLLECT COD|REG AIR|nts nag furiously about the | +654|359437|21945|1|36|53871.12|0.09|0.04|R|F|1993-08-22|1993-07-06|1993-09-05|TAKE BACK RETURN|SHIP| packages nag. slyly| +654|45046|32547|2|2|1982.08|0.09|0.08|R|F|1993-06-28|1993-07-12|1993-07-06|COLLECT COD|RAIL|. unusual, ironic deposits x-ray | +654|84997|34998|3|33|65405.67|0.00|0.02|R|F|1993-07-27|1993-07-09|1993-08-15|DELIVER IN PERSON|FOB|bout the regular ideas.| +654|535160|10181|4|24|28683.36|0.05|0.07|R|F|1993-08-20|1993-08-05|1993-08-25|TAKE BACK RETURN|AIR|es. furiously regular asymptotes sleep| +654|427730|27731|5|9|14919.39|0.02|0.02|A|F|1993-05-25|1993-06-06|1993-06-10|COLLECT COD|TRUCK| among the requests cajole fluffily | +654|850485|38037|6|19|27273.36|0.02|0.03|A|F|1993-06-23|1993-07-30|1993-07-19|DELIVER IN PERSON|REG AIR| blithely fluff| +654|93385|5887|7|37|51000.06|0.09|0.06|A|F|1993-06-03|1993-06-23|1993-06-22|NONE|REG AIR|lar, unusual asympt| +655|514367|26878|1|10|13813.40|0.07|0.06|A|F|1992-03-03|1992-03-04|1992-03-25|DELIVER IN PERSON|SHIP|en, even ideas. realms about | +655|959157|21677|2|12|14593.32|0.08|0.06|R|F|1992-04-21|1992-02-16|1992-05-16|TAKE BACK RETURN|AIR|s accounts. unusual, regular reque| +655|537100|49611|3|21|23878.68|0.08|0.08|A|F|1992-01-14|1992-02-23|1992-01-27|NONE|REG AIR|carefully beyond the slyly iron| +655|33770|46271|4|23|39186.71|0.05|0.05|A|F|1992-02-04|1992-03-17|1992-02-15|TAKE BACK RETURN|MAIL| grow quickly brave requests. pending| +680|570017|45040|1|33|35870.67|0.09|0.06|A|F|1994-12-20|1994-10-28|1994-12-24|COLLECT COD|AIR|final accounts. r| +680|263119|635|2|49|53022.90|0.00|0.05|A|F|1994-11-27|1994-10-24|1994-12-26|COLLECT COD|SHIP|ages wake blithely regular account| +680|231816|31817|3|26|45442.80|0.10|0.02|R|F|1994-10-16|1994-10-24|1994-10-23|DELIVER IN PERSON|AIR|accounts wake quickly furiousl| +680|127606|15113|4|50|81680.00|0.01|0.07|A|F|1994-12-09|1994-11-30|1994-12-21|NONE|MAIL|yly even pa| +681|805852|18369|1|6|10546.86|0.05|0.04|R|F|1993-11-06|1993-12-13|1993-12-01|DELIVER IN PERSON|TRUCK|s play theod| +681|944587|7106|2|30|48946.20|0.00|0.07|R|F|1993-12-05|1993-12-12|1993-12-13|DELIVER IN PERSON|TRUCK|al packages-- ironic deposits| +681|659327|21841|3|31|39874.99|0.10|0.05|R|F|1993-11-21|1994-01-11|1993-12-05|DELIVER IN PERSON|REG AIR|ly permanent plat| +681|304276|41795|4|10|12802.60|0.00|0.07|A|F|1994-02-14|1993-12-19|1994-02-26|DELIVER IN PERSON|TRUCK|n requests nag furiously according to th| +681|952534|2535|5|49|77738.01|0.07|0.04|R|F|1993-12-22|1993-12-08|1994-01-14|TAKE BACK RETURN|REG AIR|xes eat fluffil| +681|232214|44719|6|36|41263.20|0.01|0.05|R|F|1993-11-07|1993-12-19|1993-11-09|COLLECT COD|AIR|among the quickly special instructio| +681|812187|24704|7|37|40668.18|0.01|0.07|R|F|1994-01-06|1994-01-05|1994-02-04|DELIVER IN PERSON|TRUCK|efully even | +682|410202|10203|1|33|36701.94|0.03|0.04|N|O|1997-10-04|1997-10-26|1997-10-24|COLLECT COD|TRUCK|detect quickly regular p| +682|251906|1907|2|25|46447.25|0.04|0.04|N|O|1997-12-28|1997-11-29|1998-01-20|DELIVER IN PERSON|MAIL|onic foxes are requests. packages be| +682|768884|43915|3|46|89831.10|0.00|0.06|N|O|1997-11-27|1997-12-02|1997-12-20|DELIVER IN PERSON|REG AIR|refully even pack| +682|630998|43511|4|8|15431.68|0.01|0.06|N|O|1997-11-26|1997-12-01|1997-12-17|DELIVER IN PERSON|FOB|lthy packages. unusual ideas use| +682|175221|37725|5|12|15554.64|0.08|0.01|N|O|1997-10-15|1997-10-25|1997-10-20|DELIVER IN PERSON|RAIL|unts. carefully ironic| +682|936482|49001|6|36|54663.84|0.03|0.00|N|O|1997-10-16|1997-11-04|1997-10-19|TAKE BACK RETURN|MAIL| across the pending, final d| +682|447600|10109|7|18|27856.44|0.06|0.04|N|O|1998-01-01|1997-10-14|1998-01-17|TAKE BACK RETURN|TRUCK|final platelets wake slyly b| +683|805723|18240|1|10|16286.80|0.02|0.03|A|F|1994-06-24|1994-05-30|1994-06-28|COLLECT COD|REG AIR|ly. even, unusual foxes nag slyly | +683|781566|19112|2|9|14827.77|0.00|0.02|R|F|1994-03-18|1994-05-28|1994-03-20|NONE|AIR| even ideas. furiously re| +684|407351|44876|1|41|51591.53|0.09|0.02|N|O|1996-06-23|1996-06-21|1996-07-09|DELIVER IN PERSON|REG AIR|es need to nag furiously | +684|336916|36917|2|43|83974.70|0.01|0.04|N|O|1996-05-27|1996-06-29|1996-06-15|DELIVER IN PERSON|AIR|hely final in| +684|545425|20446|3|17|24996.80|0.02|0.01|N|O|1996-08-08|1996-06-30|1996-09-01|COLLECT COD|MAIL|old foxes above the slyly unusual exc| +684|947189|47190|4|40|49445.60|0.07|0.06|N|O|1996-05-29|1996-06-23|1996-06-11|TAKE BACK RETURN|RAIL|gle blithely regular, u| +684|405053|17562|5|8|7664.24|0.05|0.01|N|O|1996-08-11|1996-06-21|1996-09-02|TAKE BACK RETURN|REG AIR|press requests| +684|717236|29751|6|47|58900.40|0.09|0.02|N|O|1996-05-11|1996-07-09|1996-05-17|NONE|RAIL| beans. slyly even | +685|904104|41659|1|50|55403.00|0.05|0.04|A|F|1992-05-06|1992-07-15|1992-05-30|COLLECT COD|RAIL|ages hinder about the pending, unusu| +685|268719|18720|2|5|8438.50|0.06|0.07|R|F|1992-08-18|1992-06-18|1992-08-22|DELIVER IN PERSON|MAIL|yly. furiously final deposits haggl| +685|350958|959|3|9|18080.46|0.07|0.02|A|F|1992-06-30|1992-06-06|1992-07-28|DELIVER IN PERSON|SHIP| regular requests. blithely unusual theodo| +685|545575|20596|4|22|35652.10|0.07|0.02|A|F|1992-08-12|1992-06-10|1992-09-03|DELIVER IN PERSON|REG AIR|endencies sleep| +685|469761|44780|5|29|50191.46|0.08|0.00|A|F|1992-07-02|1992-07-27|1992-07-26|DELIVER IN PERSON|MAIL|es are. fluffily pending frays thrash car| +686|303674|41193|1|24|40263.84|0.00|0.01|R|F|1993-11-19|1993-09-21|1993-12-17|COLLECT COD|TRUCK|y fluffily pending theod| +686|841765|29314|2|43|73388.96|0.05|0.05|A|F|1993-10-09|1993-09-25|1993-11-02|DELIVER IN PERSON|SHIP| theodolites wake against the ir| +686|536779|49290|3|15|27236.25|0.00|0.03|A|F|1993-12-08|1993-10-30|1993-12-09|NONE|REG AIR| the packages detect furiou| +687|396980|9488|1|45|93463.65|0.00|0.04|A|F|1992-12-19|1993-02-18|1993-01-18|TAKE BACK RETURN|FOB|e furiously regular idea| +712|936740|49259|1|44|78174.80|0.01|0.04|N|O|1998-10-23|1998-09-15|1998-11-17|COLLECT COD|FOB|yly silent packages are car| +712|779284|41800|2|11|14995.75|0.06|0.03|N|O|1998-07-25|1998-09-30|1998-08-01|TAKE BACK RETURN|RAIL|ly. blithely regular packages a| +713|79077|4080|1|15|15841.05|0.06|0.04|N|O|1996-06-24|1996-05-07|1996-06-29|NONE|REG AIR|al packages. requests| +713|39545|39546|2|17|25237.18|0.10|0.04|N|O|1996-03-27|1996-03-31|1996-04-23|COLLECT COD|MAIL|s boost fluffily fl| +713|626978|2003|3|46|87627.24|0.05|0.06|N|O|1996-06-16|1996-05-13|1996-07-03|NONE|AIR|in place of th| +713|618111|5648|4|9|9261.72|0.00|0.05|N|O|1996-05-26|1996-05-14|1996-06-04|NONE|AIR|osits wake carefully after the permane| +713|590759|40760|5|43|79538.39|0.02|0.05|N|O|1996-06-06|1996-04-18|1996-06-18|DELIVER IN PERSON|SHIP|gle across the accounts.| +713|884887|9922|6|36|67386.24|0.01|0.02|N|O|1996-03-07|1996-04-22|1996-03-28|TAKE BACK RETURN|MAIL| carefully pending multipl| +714|446965|34490|1|17|32502.98|0.04|0.08|R|F|1992-09-25|1992-12-13|1992-10-15|TAKE BACK RETURN|FOB|ages cajole quickly after the re| +714|140636|40637|2|12|20119.56|0.08|0.07|R|F|1992-12-05|1992-10-24|1993-01-04|COLLECT COD|TRUCK|ithely regular platelets mold.| +714|659210|9211|3|24|28060.32|0.01|0.05|A|F|1992-11-15|1992-11-27|1992-12-12|NONE|MAIL|lar dolphins beside the unusual | +714|331772|19291|4|46|82972.96|0.08|0.03|A|F|1992-12-05|1992-12-16|1992-12-28|TAKE BACK RETURN|RAIL|osits. ste| +714|89175|14178|5|7|8149.19|0.09|0.06|R|F|1992-11-05|1992-11-24|1992-12-01|DELIVER IN PERSON|REG AIR| along the furiously final dependencies.| +714|756045|31076|6|40|44040.40|0.05|0.05|A|F|1992-11-27|1992-10-25|1992-12-03|COLLECT COD|MAIL|ong the carefully bold instructions. fluff| +714|843487|6004|7|24|34330.56|0.02|0.04|R|F|1992-10-14|1992-11-17|1992-11-05|TAKE BACK RETURN|REG AIR|n theodolites. permanently ironic dep| +715|485055|22583|1|24|24960.72|0.01|0.07|N|O|1997-03-24|1997-01-13|1997-04-01|TAKE BACK RETURN|MAIL|. carefully final | +715|311298|11299|2|48|62845.44|0.07|0.02|N|O|1997-02-07|1997-01-05|1997-03-03|DELIVER IN PERSON|RAIL|p bravely alongside of the slyly bold | +716|739222|26765|1|22|27746.18|0.07|0.07|R|F|1995-05-15|1995-06-17|1995-05-30|COLLECT COD|SHIP|s are blithely final dinos. f| +716|92489|42490|2|15|22222.20|0.06|0.08|N|O|1995-07-30|1995-05-23|1995-08-03|NONE|AIR|ronic, pending foxes. furiously regular th| +716|458859|33878|3|42|76348.86|0.05|0.02|N|O|1995-06-26|1995-06-06|1995-07-02|NONE|REG AIR|ular deposits wa| +716|31484|43985|4|37|52372.76|0.00|0.08|A|F|1995-05-03|1995-05-25|1995-05-20|DELIVER IN PERSON|AIR| nag slyly along the carefully speci| +716|134847|22354|5|46|86564.64|0.02|0.03|R|F|1995-05-30|1995-06-06|1995-06-01|COLLECT COD|REG AIR|usly final excu| +716|361490|36505|6|25|38787.00|0.06|0.03|N|F|1995-06-11|1995-06-27|1995-07-03|DELIVER IN PERSON|RAIL| accounts. final accounts boost. i| +717|10644|35645|1|41|63740.24|0.07|0.05|A|F|1994-09-27|1994-10-14|1994-10-05|COLLECT COD|SHIP|special instructi| +717|887268|49786|2|49|61505.78|0.07|0.08|A|F|1994-12-21|1994-10-03|1995-01-04|DELIVER IN PERSON|AIR| slyly bold p| +717|302824|2825|3|11|20094.91|0.10|0.02|R|F|1994-10-11|1994-11-17|1994-10-12|NONE|TRUCK|ffix furiously. busy requests integrate| +717|560175|22687|4|6|7410.90|0.01|0.03|R|F|1994-10-05|1994-11-08|1994-10-24|TAKE BACK RETURN|AIR|uctions. slyly bold pinto beans nag sly| +717|854824|42376|5|46|81823.88|0.01|0.07|R|F|1994-09-30|1994-10-27|1994-10-10|COLLECT COD|AIR|eposits integrate slyly per| +717|16160|3661|6|5|5380.80|0.02|0.00|R|F|1994-09-21|1994-11-15|1994-10-19|TAKE BACK RETURN|SHIP|ly unusual pinto| +718|463503|13504|1|2|2932.96|0.04|0.07|N|O|1998-09-24|1998-08-27|1998-10-19|NONE|AIR|as nag carefully alongside of the u| +718|81407|18911|2|26|36098.40|0.08|0.05|N|O|1998-06-22|1998-09-10|1998-07-12|TAKE BACK RETURN|SHIP|y players use. care| +719|488322|25850|1|32|41929.60|0.09|0.04|A|F|1993-06-08|1993-06-08|1993-06-16|TAKE BACK RETURN|TRUCK|hockey players eat slyly. e| +719|217982|17983|2|31|58899.07|0.00|0.08|R|F|1993-06-03|1993-04-29|1993-06-23|COLLECT COD|REG AIR|r the special platelets.| +719|611161|36186|3|19|20370.47|0.04|0.00|A|F|1993-06-23|1993-06-22|1993-07-15|DELIVER IN PERSON|REG AIR|slyly regular platelets | +744|995781|33339|1|38|71316.12|0.07|0.06|A|F|1992-09-16|1992-08-13|1992-10-16|DELIVER IN PERSON|RAIL|es haggle qu| +744|79015|41517|2|13|12922.13|0.10|0.02|A|F|1992-06-26|1992-07-26|1992-06-27|NONE|RAIL|s. warhorses haggle. quickly | +745|143833|31340|1|30|56304.90|0.09|0.04|N|O|1995-08-14|1995-09-08|1995-08-23|COLLECT COD|FOB|s. regular, regular deposits ar| +745|387548|12563|2|44|71963.32|0.05|0.07|N|O|1995-09-08|1995-08-20|1995-09-18|COLLECT COD|FOB|sts wake slyly eve| +745|508887|33908|3|20|37917.20|0.00|0.00|N|O|1995-07-18|1995-09-18|1995-08-15|DELIVER IN PERSON|FOB|its. slyly final exc| +745|850257|258|4|32|38630.72|0.07|0.08|N|O|1995-08-02|1995-08-20|1995-08-28|TAKE BACK RETURN|REG AIR| bold accounts haggle. slyly unusual accou| +745|257705|45221|5|20|33253.80|0.00|0.08|N|O|1995-08-18|1995-08-27|1995-09-11|TAKE BACK RETURN|AIR|ly ironic instructions. daring| +745|239011|39012|6|25|23750.00|0.01|0.07|N|O|1995-11-04|1995-10-06|1995-11-12|NONE|AIR|press requests. regular requests along the | +745|57565|20067|7|24|36541.44|0.01|0.07|N|O|1995-08-07|1995-09-07|1995-08-17|NONE|REG AIR|ly according to the regular re| +746|483395|20923|1|3|4135.11|0.04|0.03|N|O|1997-11-06|1997-11-27|1997-11-08|DELIVER IN PERSON|RAIL|oxes wake blithely. pending p| +746|409016|34033|2|4|3699.96|0.10|0.03|N|O|1998-01-23|1998-01-16|1998-02-19|DELIVER IN PERSON|RAIL|are carefully after t| +746|317736|17737|3|36|63133.92|0.04|0.08|N|O|1998-01-14|1998-01-01|1998-01-18|DELIVER IN PERSON|SHIP| final waters. dependencies above the| +747|14145|1646|1|24|25419.36|0.05|0.02|A|F|1995-01-17|1994-12-05|1995-01-19|DELIVER IN PERSON|MAIL|d, special forges wake quickl| +747|721905|46934|2|8|15414.96|0.09|0.02|A|F|1995-01-07|1994-11-30|1995-02-04|COLLECT COD|TRUCK|lly regular requests along the | +747|46737|9238|3|19|31990.87|0.05|0.02|A|F|1994-12-12|1994-11-17|1995-01-02|COLLECT COD|AIR|usy ideas after the furiou| +747|502512|2513|4|10|15144.90|0.01|0.00|R|F|1994-12-08|1994-12-28|1994-12-10|COLLECT COD|REG AIR| carefully regular asympto| +747|717757|42786|5|24|42593.28|0.05|0.08|A|F|1994-12-08|1995-01-07|1994-12-27|TAKE BACK RETURN|SHIP|rding to the requests| +748|801360|38909|1|5|6306.60|0.06|0.08|N|O|1995-08-26|1995-07-03|1995-09-16|DELIVER IN PERSON|AIR| are carefully regular p| +748|444088|19105|2|23|23737.38|0.08|0.02|N|O|1995-08-04|1995-07-17|1995-08-10|COLLECT COD|MAIL|en deposit| +748|772453|34969|3|25|38135.50|0.00|0.03|N|F|1995-06-16|1995-07-11|1995-06-19|COLLECT COD|MAIL|requests. carefu| +748|608590|8591|4|8|11988.48|0.08|0.04|N|O|1995-08-18|1995-07-28|1995-09-03|DELIVER IN PERSON|SHIP|ns. dependencies use furious| +748|566177|41200|5|34|42267.10|0.01|0.02|N|O|1995-06-25|1995-07-09|1995-07-14|TAKE BACK RETURN|SHIP| the sheaves x-ray above the bli| +748|724468|49497|6|31|46265.33|0.04|0.04|R|F|1995-05-03|1995-07-12|1995-05-15|DELIVER IN PERSON|RAIL|hely even requests? furiously blithe id| +749|914347|14348|1|15|20419.50|0.06|0.03|N|O|1998-05-23|1998-05-25|1998-06-01|DELIVER IN PERSON|AIR|r unusual packages haggle car| +749|417889|30398|2|29|52398.94|0.07|0.08|N|O|1998-03-13|1998-05-29|1998-03-21|TAKE BACK RETURN|SHIP|iously fluffy reque| +749|458156|8157|3|14|15597.82|0.07|0.06|N|O|1998-04-17|1998-06-01|1998-04-30|TAKE BACK RETURN|TRUCK| instructions. | +749|214816|27321|4|14|24231.20|0.02|0.02|N|O|1998-03-28|1998-04-20|1998-04-14|COLLECT COD|AIR| packages wake furiou| +749|410805|10806|5|33|56620.74|0.04|0.00|N|O|1998-06-26|1998-04-26|1998-07-25|DELIVER IN PERSON|AIR|ffily? regular deposit| +750|798936|48937|1|31|63081.90|0.02|0.01|N|O|1996-07-02|1996-07-01|1996-07-03|COLLECT COD|SHIP|even accounts. sheaves hag| +750|702913|2914|2|7|13411.16|0.00|0.06|N|O|1996-06-12|1996-06-10|1996-07-12|DELIVER IN PERSON|SHIP|uriously unusual theodolites wake alongside| +751|95887|33391|1|5|9414.40|0.08|0.06|R|F|1994-07-25|1994-08-25|1994-08-06|NONE|REG AIR|le furiously. | +751|560683|23195|2|42|73233.72|0.07|0.04|R|F|1994-10-31|1994-09-04|1994-11-06|TAKE BACK RETURN|TRUCK|s may wake even, even ideas. qui| +751|388337|13352|3|7|9977.24|0.04|0.05|A|F|1994-09-20|1994-08-29|1994-10-04|TAKE BACK RETURN|REG AIR|ests cajole blithely slyly| +751|769613|7159|4|17|28603.86|0.04|0.07|A|F|1994-08-07|1994-10-10|1994-08-31|TAKE BACK RETURN|AIR|furiously regular packages inte| +751|874664|37182|5|15|24579.30|0.04|0.03|R|F|1994-08-03|1994-08-28|1994-08-05|NONE|AIR|ts sleep aft| +751|469446|6974|6|38|53785.96|0.02|0.04|R|F|1994-10-22|1994-10-05|1994-11-07|DELIVER IN PERSON|RAIL|o the quickly regular theodolites| +776|217783|42792|1|21|35716.17|0.08|0.04|N|O|1996-05-19|1996-06-01|1996-06-07|TAKE BACK RETURN|RAIL|n asymptotes. theodolites use slyly.| +776|265138|15139|2|44|48537.28|0.00|0.02|N|O|1996-07-10|1996-06-10|1996-08-01|DELIVER IN PERSON|REG AIR|xes about | +776|160168|22672|3|37|45441.92|0.04|0.08|N|O|1996-06-29|1996-07-06|1996-07-29|COLLECT COD|FOB|ackages are fina| +776|933733|21288|4|49|86567.81|0.07|0.08|N|O|1996-07-20|1996-06-26|1996-07-30|DELIVER IN PERSON|MAIL|s wake blithely ironic| +776|237194|37195|5|8|9049.44|0.09|0.03|N|O|1996-08-02|1996-07-23|1996-08-23|COLLECT COD|TRUCK| slyly. final depo| +776|512521|52|6|40|61340.00|0.00|0.06|N|O|1996-06-22|1996-06-20|1996-07-02|COLLECT COD|FOB|ckages wake furiousl| +776|936932|36933|7|35|68911.15|0.03|0.03|N|O|1996-05-17|1996-07-22|1996-06-05|NONE|AIR|s wake furiou| +777|156|12657|1|15|15842.25|0.09|0.06|R|F|1992-09-13|1992-09-20|1992-10-03|TAKE BACK RETURN|SHIP|cuses boost blithely | +777|612810|37835|2|31|53406.18|0.08|0.04|R|F|1992-07-15|1992-08-10|1992-07-26|COLLECT COD|TRUCK|nusual instructi| +777|495959|45960|3|18|35188.74|0.05|0.08|A|F|1992-08-02|1992-09-09|1992-08-06|TAKE BACK RETURN|AIR| furiously deposits. blit| +777|569999|45022|4|40|82758.80|0.07|0.04|R|F|1992-07-19|1992-08-25|1992-08-07|NONE|AIR|yly at the furiously pending reque| +777|970593|20594|5|37|61551.35|0.04|0.05|R|F|1992-10-01|1992-10-05|1992-10-16|COLLECT COD|TRUCK| accounts use dog| +778|703990|3991|1|32|63806.72|0.04|0.05|A|F|1994-03-18|1994-02-15|1994-04-05|COLLECT COD|RAIL|unts are f| +778|949133|49134|2|25|29552.25|0.03|0.00|A|F|1994-01-16|1994-01-10|1994-02-08|COLLECT COD|MAIL|ts are even, | +778|67200|42203|3|7|8170.40|0.08|0.01|R|F|1994-02-14|1994-01-15|1994-03-16|DELIVER IN PERSON|FOB|ke carefully packages; quickl| +778|419232|31741|4|38|43745.98|0.04|0.05|R|F|1994-03-09|1994-03-02|1994-03-23|DELIVER IN PERSON|RAIL| deposits sublate against the quickly final| +778|18064|30565|5|17|16695.02|0.10|0.04|R|F|1994-01-25|1994-01-12|1994-02-06|DELIVER IN PERSON|SHIP|ages. furiously final pains sleep| +778|597566|10078|6|38|63214.52|0.03|0.00|A|F|1994-02-22|1994-01-18|1994-03-05|TAKE BACK RETURN|RAIL|accounts affix slyly against the accounts.| +779|795384|20415|1|25|36983.75|0.02|0.06|N|O|1996-03-07|1996-03-02|1996-04-02|DELIVER IN PERSON|TRUCK|ecial asymptotes | +779|6475|31476|2|12|16577.64|0.00|0.08|N|O|1996-03-10|1996-03-08|1996-04-06|DELIVER IN PERSON|SHIP|ely regular foxes. blithely | +779|820445|32962|3|22|30038.80|0.02|0.00|N|O|1996-04-22|1996-03-31|1996-05-10|DELIVER IN PERSON|FOB|foxes. blithely pending excus| +780|440115|2624|1|31|32707.79|0.07|0.05|N|O|1998-07-15|1998-06-14|1998-08-06|TAKE BACK RETURN|FOB| run at the carefu| +780|9704|22205|2|10|16137.00|0.07|0.03|N|O|1998-04-24|1998-05-21|1998-05-06|NONE|FOB|y even theodolites. regular depos| +781|883807|8842|1|34|60885.84|0.03|0.07|N|O|1998-06-07|1998-07-29|1998-06-17|NONE|SHIP| the thin, final epitaphs| +781|137287|49790|2|6|7945.68|0.06|0.04|N|O|1998-08-22|1998-06-23|1998-09-21|COLLECT COD|REG AIR| slyly ironic accounts about the quickl| +782|728924|16467|1|13|25387.57|0.02|0.03|A|F|1992-10-21|1992-11-29|1992-11-07|DELIVER IN PERSON|TRUCK| pinto beans according to the flu| +782|11691|49192|2|46|73723.74|0.09|0.00|R|F|1993-01-27|1992-12-11|1993-02-04|TAKE BACK RETURN|MAIL|ly according to the furiously regular| +782|487974|37975|3|37|72592.15|0.07|0.06|R|F|1993-01-10|1992-12-08|1993-02-04|COLLECT COD|FOB|ly even pinto| +782|371504|46519|4|33|51991.17|0.07|0.07|A|F|1992-12-27|1992-12-25|1993-01-05|TAKE BACK RETURN|MAIL|ld deposits! regular pack| +783|465402|15403|1|43|58797.34|0.03|0.01|N|O|1996-12-06|1997-02-18|1996-12-16|NONE|RAIL|ites wake slyly bold, even platelet| +783|6818|19319|2|4|6899.24|0.06|0.07|N|O|1997-01-28|1997-01-30|1997-02-20|DELIVER IN PERSON|REG AIR|refully even requests nag slyly slyly fi| +783|585442|22976|3|31|47350.02|0.09|0.01|N|O|1997-01-15|1997-01-05|1997-02-11|NONE|RAIL|ously final deposits solve care| +808|404275|16784|1|9|10613.25|0.09|0.04|R|F|1992-11-23|1992-10-24|1992-12-07|COLLECT COD|REG AIR|equests. regular reque| +808|638543|1056|2|10|14815.10|0.03|0.06|R|F|1992-12-29|1992-11-24|1993-01-14|TAKE BACK RETURN|TRUCK|s. furiously regular pinto beans al| +808|982110|7149|3|40|47682.80|0.03|0.06|R|F|1992-09-14|1992-10-06|1992-10-12|DELIVER IN PERSON|TRUCK|egular warthogs cajole. regular| +808|316552|4071|4|13|20391.02|0.07|0.05|A|F|1992-10-22|1992-11-25|1992-11-08|TAKE BACK RETURN|AIR|to beans cajole furiously ironic ideas.| +808|281361|31362|5|24|32216.40|0.10|0.06|A|F|1992-12-13|1992-10-18|1992-12-17|TAKE BACK RETURN|REG AIR| quickly thin packag| +808|823915|36432|6|8|14710.96|0.06|0.06|R|F|1992-11-13|1992-10-15|1992-11-21|TAKE BACK RETURN|RAIL|o the ironic requests. regular reque| +809|929338|29339|1|39|53324.31|0.00|0.08|A|F|1993-08-11|1993-07-14|1993-08-19|DELIVER IN PERSON|SHIP| regular notornis. slyly regular pi| +810|523187|48208|1|18|21782.88|0.00|0.06|A|F|1994-03-11|1994-04-21|1994-04-02|TAKE BACK RETURN|MAIL|, silent deposits about the sly| +810|190309|2813|2|41|57371.30|0.10|0.07|R|F|1994-05-21|1994-04-02|1994-05-22|DELIVER IN PERSON|AIR|al excuses sleep blithely even ideas| +811|907513|32550|1|15|22807.05|0.08|0.01|A|F|1994-12-23|1995-02-04|1994-12-29|COLLECT COD|RAIL|gside of the blithely silent| +812|334646|22165|1|29|48738.27|0.04|0.08|N|O|1996-11-25|1996-12-04|1996-12-25|COLLECT COD|REG AIR|instructions detect slyly along the | +812|387711|12726|2|16|28779.20|0.01|0.04|N|O|1996-11-18|1996-11-23|1996-12-01|DELIVER IN PERSON|FOB|forges sho| +813|736938|36939|1|9|17774.10|0.08|0.00|R|F|1992-05-06|1992-02-20|1992-05-09|TAKE BACK RETURN|MAIL|y pending pinto beans. furiously final requ| +813|700196|12711|2|37|44257.92|0.01|0.04|R|F|1992-03-04|1992-03-10|1992-03-13|COLLECT COD|MAIL|ully final instructions a| +813|181434|6441|3|40|60617.20|0.07|0.08|R|F|1992-01-17|1992-03-25|1992-02-14|TAKE BACK RETURN|REG AIR|equests. carefully special deposits nag| +813|345429|45430|4|14|20641.74|0.06|0.04|A|F|1992-02-27|1992-03-11|1992-03-10|COLLECT COD|MAIL|c depths. care| +814|410581|23090|1|12|17898.72|0.01|0.04|R|F|1992-08-25|1992-11-01|1992-09-21|DELIVER IN PERSON|SHIP|deposits haggle.| +814|624347|11884|2|27|34325.37|0.03|0.06|A|F|1992-08-09|1992-09-12|1992-08-24|TAKE BACK RETURN|REG AIR|osits instead of the furiously regular | +814|387511|25033|3|32|51152.00|0.07|0.07|R|F|1992-10-04|1992-10-27|1992-10-11|TAKE BACK RETURN|MAIL|es. furiously silent | +814|885673|48191|4|47|77955.61|0.05|0.08|R|F|1992-10-05|1992-09-16|1992-10-22|DELIVER IN PERSON|TRUCK|to beans cajole | +814|496187|21206|5|19|22480.04|0.00|0.00|A|F|1992-09-25|1992-10-23|1992-10-13|COLLECT COD|MAIL|til the fluffily sil| +814|405899|30916|6|31|55950.97|0.02|0.03|A|F|1992-08-13|1992-09-09|1992-09-09|COLLECT COD|MAIL|furiously unusual foxes b| +815|802450|27483|1|19|25695.79|0.00|0.04|N|O|1995-10-20|1995-09-25|1995-10-24|TAKE BACK RETURN|AIR|ole blithely regular b| +815|763388|934|2|28|40637.80|0.05|0.02|N|O|1995-10-07|1995-10-17|1995-10-23|COLLECT COD|TRUCK|deposits after the ironic instructi| +815|246226|21235|3|12|14066.52|0.08|0.06|N|O|1995-09-09|1995-10-09|1995-10-01|DELIVER IN PERSON|AIR|lly slyly even foxes. furious| +815|320332|7851|4|33|44626.56|0.02|0.01|N|O|1995-12-18|1995-11-18|1995-12-20|TAKE BACK RETURN|TRUCK|ses. ideas poach accounts. furiously i| +815|809722|34755|5|48|78320.64|0.02|0.01|N|O|1995-11-02|1995-10-21|1995-11-22|COLLECT COD|SHIP| fluffily along the slyly eve| +815|988587|1107|6|32|53617.28|0.04|0.05|N|O|1995-11-01|1995-11-10|1995-11-10|DELIVER IN PERSON|SHIP|quickly quickly final requests. slyly s| +815|168975|43982|7|43|87890.71|0.10|0.06|N|O|1995-09-24|1995-09-23|1995-10-23|TAKE BACK RETURN|AIR|nstructions wake furiousl| +840|953189|28228|1|1|1242.14|0.05|0.00|A|F|1995-04-14|1995-02-21|1995-05-01|COLLECT COD|AIR|ully regular | +840|243634|31147|2|26|41018.12|0.05|0.08|R|F|1995-03-05|1995-02-26|1995-03-18|DELIVER IN PERSON|RAIL|cross the bold accounts. car| +840|744744|7259|3|6|10732.26|0.00|0.00|A|F|1995-03-25|1995-03-11|1995-04-06|DELIVER IN PERSON|REG AIR| silent requests. pending excu| +840|896739|46740|4|50|86784.50|0.06|0.01|R|F|1995-01-13|1995-02-17|1995-02-10|COLLECT COD|TRUCK|ecial ideas are blithely among t| +840|476117|1136|5|31|33885.79|0.08|0.01|A|F|1995-03-30|1995-02-06|1995-04-17|COLLECT COD|REG AIR|ts. instructions cajole after the b| +841|256629|6630|1|1|1585.61|0.02|0.01|R|F|1994-04-27|1994-03-16|1994-05-25|COLLECT COD|RAIL|o the slyly pending depos| +842|778590|28591|1|13|21691.28|0.06|0.06|N|O|1997-07-08|1997-07-08|1997-08-04|TAKE BACK RETURN|TRUCK|ake blithely carefully express packag| +842|750096|12612|2|15|17190.90|0.08|0.07|N|O|1997-07-31|1997-06-30|1997-08-29|TAKE BACK RETURN|RAIL|s. even, ironic package| +842|850922|923|3|25|46822.00|0.01|0.06|N|O|1997-08-18|1997-06-16|1997-08-25|TAKE BACK RETURN|MAIL| final deposits wake slyly along the as| +842|429370|16895|4|42|54572.70|0.04|0.02|N|O|1997-08-16|1997-07-03|1997-08-18|NONE|RAIL|unusual ideas are deposits; final pack| +842|407781|7782|5|42|70927.92|0.06|0.04|N|O|1997-04-27|1997-05-29|1997-04-30|COLLECT COD|AIR|efully ironic| +843|141620|41621|1|26|43202.12|0.07|0.07|N|O|1995-10-01|1995-09-06|1995-10-29|NONE|FOB|nticing pinto beans. even| +844|908633|33670|1|5|8207.95|0.07|0.05|A|F|1993-04-16|1993-02-27|1993-05-14|TAKE BACK RETURN|TRUCK|sly about t| +845|897186|22221|1|37|43776.18|0.08|0.08|N|O|1997-04-01|1997-04-10|1997-04-21|NONE|FOB|ng deposits promise quickly about the s| +846|105238|17741|1|39|48485.97|0.00|0.04|N|O|1997-03-02|1997-01-08|1997-03-16|NONE|REG AIR|kages nag furiously. furiously express mu| +846|729854|42369|2|1|1883.82|0.10|0.07|N|O|1996-11-29|1996-12-16|1996-12-26|NONE|REG AIR|ts detect quickly| +847|341736|29255|1|47|83552.84|0.07|0.07|N|O|1998-02-03|1998-03-02|1998-02-07|COLLECT COD|RAIL|ly stealthy | +847|545881|20902|2|31|59732.66|0.07|0.01|N|O|1998-04-03|1998-04-05|1998-04-17|COLLECT COD|SHIP|heodolites cajole qu| +847|620068|32581|3|5|4940.15|0.01|0.04|N|O|1998-04-29|1998-04-07|1998-05-20|NONE|SHIP|kages wake slyly at the carefully f| +847|474095|11623|4|30|32072.10|0.01|0.03|N|O|1998-04-14|1998-03-05|1998-04-16|DELIVER IN PERSON|FOB| unusual accounts. carefully f| +847|107852|7853|5|29|53935.65|0.04|0.06|N|O|1998-04-26|1998-03-15|1998-05-18|COLLECT COD|MAIL|ckly ironic| +872|227485|14998|1|24|33899.28|0.00|0.08|N|O|1998-04-21|1998-04-17|1998-04-23|COLLECT COD|RAIL|ess blithely alongside of the | +872|328159|15678|2|41|48672.74|0.03|0.00|N|O|1998-04-26|1998-03-22|1998-05-12|COLLECT COD|RAIL|yly ironic s| +872|367616|5138|3|35|58926.00|0.07|0.03|N|O|1998-02-28|1998-04-07|1998-03-12|NONE|MAIL|inal accou| +873|295509|45510|1|45|67702.05|0.07|0.02|A|F|1995-03-25|1995-03-25|1995-04-13|TAKE BACK RETURN|SHIP|encies at the accounts hagg| +874|358026|20534|1|6|6504.06|0.10|0.03|R|F|1993-10-19|1993-10-29|1993-10-29|NONE|SHIP|usly special packages boos| +874|338755|13768|2|7|12556.18|0.10|0.01|A|F|1993-11-08|1993-11-28|1993-11-14|TAKE BACK RETURN|TRUCK|hogs-- fluffily unusual| +874|441653|41654|3|1|1594.63|0.08|0.00|R|F|1993-09-20|1993-10-20|1993-10-09|DELIVER IN PERSON|REG AIR| fluffily quick asymptotes. s| +874|857282|44834|4|29|35937.96|0.10|0.07|A|F|1993-12-16|1993-10-27|1993-12-29|COLLECT COD|MAIL|sly express packa| +874|335930|35931|5|45|88466.40|0.09|0.08|R|F|1993-11-21|1993-11-25|1993-12-14|TAKE BACK RETURN|TRUCK|furiously express accounts cajole. carefu| +875|54604|17106|1|45|70137.00|0.05|0.08|N|O|1997-05-02|1997-05-06|1997-05-31|COLLECT COD|REG AIR|s sleep blithely| +875|723550|36065|2|1|1573.52|0.08|0.00|N|O|1997-06-02|1997-05-29|1997-06-22|COLLECT COD|REG AIR| among the fluffi| +876|679210|41724|1|47|55891.46|0.03|0.02|R|F|1993-01-23|1992-12-25|1993-02-18|TAKE BACK RETURN|AIR|ect slyly. ideas boost fur| +876|473643|11171|2|50|80831.00|0.02|0.00|A|F|1993-02-03|1993-01-30|1993-02-22|COLLECT COD|AIR|r packages. | +876|514599|2130|3|15|24203.55|0.06|0.06|R|F|1993-01-07|1992-12-17|1993-01-23|TAKE BACK RETURN|MAIL| carefully regular accounts around| +876|851054|13572|4|26|26130.26|0.09|0.07|A|F|1993-02-21|1992-12-10|1993-03-02|DELIVER IN PERSON|RAIL| the packages sleep a| +876|648388|48389|5|36|48108.60|0.09|0.08|A|F|1992-11-20|1993-02-05|1992-12-03|TAKE BACK RETURN|TRUCK|cross the bold ideas.| +876|448391|48392|6|22|29466.14|0.09|0.02|R|F|1993-03-06|1993-01-01|1993-03-11|DELIVER IN PERSON|AIR|lly pending foxe| +876|95681|33185|7|42|70420.56|0.05|0.08|A|F|1993-01-17|1993-01-12|1993-02-03|NONE|AIR|deposits nag carefully acc| +877|99612|24615|1|18|29008.98|0.06|0.05|N|O|1996-02-12|1996-02-16|1996-02-16|COLLECT COD|REG AIR|ctions after the carefully eve| +877|169211|6721|2|39|49928.19|0.01|0.06|N|O|1996-03-16|1996-03-05|1996-03-19|NONE|TRUCK|s use never dependencies. slyl| +877|916768|4323|3|11|19631.92|0.05|0.04|N|O|1996-04-12|1996-03-28|1996-04-17|COLLECT COD|AIR| slyly. blithely even theodolites amo| +877|109523|47030|4|19|29117.88|0.02|0.00|N|O|1996-03-05|1996-03-24|1996-03-20|DELIVER IN PERSON|REG AIR|es are! ruthless, ironic theo| +878|563668|38691|1|36|62339.04|0.10|0.01|R|F|1995-02-01|1995-03-03|1995-02-08|NONE|REG AIR|counts haggle ironic | +879|167021|17022|1|49|53312.98|0.00|0.04|N|O|1998-08-23|1998-08-23|1998-08-28|TAKE BACK RETURN|RAIL|kages. furious| +879|120060|32563|2|31|33481.86|0.01|0.04|N|O|1998-07-17|1998-09-14|1998-08-13|COLLECT COD|FOB|nding accounts | +879|835580|35581|3|11|16670.94|0.09|0.05|N|O|1998-07-26|1998-08-17|1998-07-28|DELIVER IN PERSON|TRUCK|pecial accounts along the e| +904|79000|29001|1|45|44055.00|0.00|0.02|N|O|1997-10-10|1997-09-01|1997-10-18|NONE|FOB|sits cajole furiously bold requests. iron| +904|748476|10991|2|17|25915.48|0.05|0.05|N|O|1997-11-20|1997-10-18|1997-11-25|DELIVER IN PERSON|RAIL|nal requests boost stealthily cl| +904|627295|2320|3|48|58668.48|0.05|0.07|N|O|1997-08-18|1997-09-05|1997-08-20|COLLECT COD|FOB|ide of the id| +905|778896|28897|1|33|65170.38|0.10|0.03|N|O|1997-04-22|1997-02-24|1997-05-05|NONE|MAIL|into beans engage slyly| +905|901482|1483|2|25|37086.00|0.05|0.03|N|O|1997-04-24|1997-03-11|1997-05-12|NONE|RAIL|ages. furiously ironic deposi| +905|206917|19422|3|25|45597.50|0.00|0.07|N|O|1997-04-30|1997-03-13|1997-05-25|COLLECT COD|REG AIR|print. even platelets integr| +905|652886|15400|4|18|33099.30|0.05|0.05|N|O|1997-01-12|1997-03-12|1997-02-01|COLLECT COD|AIR|nstructions. blithely final a| +906|331414|31415|1|23|33244.20|0.05|0.08|N|O|1998-08-05|1998-09-27|1998-08-14|TAKE BACK RETURN|MAIL|pecial dinos unwind blithely ironic, unusua| +906|66134|3638|2|37|40704.81|0.03|0.08|N|O|1998-09-04|1998-09-23|1998-09-21|NONE|AIR|uriously eve| +907|582931|32932|1|29|58403.39|0.07|0.00|N|O|1998-04-29|1998-04-24|1998-05-24|TAKE BACK RETURN|FOB|ts affix alwa| +907|318767|6286|2|20|35715.00|0.00|0.08|N|O|1998-05-25|1998-03-07|1998-06-16|COLLECT COD|AIR|ckly express ideas| +907|515947|28458|3|15|29443.80|0.00|0.02|N|O|1998-03-01|1998-03-18|1998-03-17|DELIVER IN PERSON|TRUCK|r deposits. carefull| +907|505567|5568|4|19|29878.26|0.04|0.04|N|O|1998-04-06|1998-04-12|1998-04-23|DELIVER IN PERSON|AIR| cajole furiously at th| +907|59921|9922|5|35|65832.20|0.07|0.08|N|O|1998-02-14|1998-03-31|1998-02-20|COLLECT COD|FOB|yly express accoun| +907|82624|45126|6|43|69084.66|0.00|0.04|N|O|1998-04-21|1998-04-01|1998-04-22|DELIVER IN PERSON|TRUCK|even instructions engage across the| +908|922947|22948|1|40|78796.00|0.03|0.04|N|O|1998-11-01|1998-09-09|1998-11-08|NONE|FOB|he fluffily regular pa| +909|451494|14004|1|44|63600.68|0.02|0.06|A|F|1993-05-08|1993-04-25|1993-05-24|COLLECT COD|AIR|ts affix. slyly busy deposits sleep. sly| +909|250527|38043|2|25|36937.75|0.01|0.05|R|F|1993-05-26|1993-04-17|1993-06-02|COLLECT COD|SHIP|p slyly about the regular| +909|604420|41957|3|10|13243.90|0.06|0.08|A|F|1993-05-09|1993-03-31|1993-06-01|NONE|TRUCK| accounts. regular accoun| +909|480265|30266|4|38|47319.12|0.07|0.04|R|F|1993-05-19|1993-04-21|1993-05-28|NONE|REG AIR|structions wake carefully blithely e| +910|62907|37910|1|49|91625.10|0.03|0.05|R|F|1992-11-18|1992-10-31|1992-11-24|DELIVER IN PERSON|MAIL| pending dolphins boost fluffil| +910|267628|5144|2|28|44677.08|0.09|0.02|A|F|1992-09-22|1992-10-18|1992-10-01|DELIVER IN PERSON|REG AIR|es. unusual, ironic pac| +910|19199|6700|3|44|49200.36|0.08|0.00|R|F|1992-12-20|1992-11-16|1993-01-01|DELIVER IN PERSON|AIR|ts around the de| +910|663643|13644|4|37|59444.57|0.08|0.02|R|F|1992-11-15|1992-10-30|1992-11-28|NONE|MAIL|gedly final accounts cajole above the even| +911|668823|31337|1|50|89589.50|0.02|0.04|R|F|1993-12-24|1993-10-23|1993-12-30|NONE|TRUCK| detect carefu| +911|907894|20413|2|22|41840.70|0.00|0.00|A|F|1993-10-14|1993-11-08|1993-11-01|TAKE BACK RETURN|RAIL|l, regular ideas across the bli| +911|958405|8406|3|45|65851.20|0.01|0.01|R|F|1993-10-29|1993-11-11|1993-11-06|DELIVER IN PERSON|AIR|e above the carefully pendin| +911|904057|16576|4|39|41379.39|0.00|0.00|A|F|1993-12-29|1993-10-15|1994-01-22|NONE|FOB|hely. pinto beans since the notornis | +911|471509|9037|5|2|2960.96|0.06|0.07|A|F|1993-10-17|1993-10-26|1993-10-25|COLLECT COD|REG AIR|refully even depth| +936|450023|24|1|7|6811.00|0.03|0.04|N|O|1997-09-24|1997-08-04|1997-10-18|NONE|SHIP|olites promise ironic multipliers. unusua| +937|895905|45906|1|32|60827.52|0.04|0.04|N|O|1998-10-14|1998-08-29|1998-10-17|NONE|FOB|s are carefully. express foxes| +937|458910|21420|2|22|41115.58|0.04|0.02|N|O|1998-09-22|1998-09-15|1998-10-16|DELIVER IN PERSON|SHIP|fter the final, even theodolites? thin| +937|888369|25921|3|14|19002.48|0.01|0.00|N|O|1998-10-12|1998-10-26|1998-11-03|DELIVER IN PERSON|FOB| across the furiously bold depo| +937|812657|37690|4|12|18835.32|0.01|0.08|N|O|1998-10-20|1998-10-11|1998-11-01|NONE|MAIL| beans cajole according to the quickly ir| +937|321401|46414|5|24|34137.36|0.10|0.05|N|O|1998-11-22|1998-09-13|1998-12-03|NONE|TRUCK|lar deposits. blithely regular| +938|71701|9205|1|2|3345.40|0.06|0.02|N|O|1997-02-23|1997-04-05|1997-03-17|TAKE BACK RETURN|MAIL|g the furiously unusu| +938|76720|26721|2|38|64475.36|0.09|0.07|N|O|1997-04-30|1997-04-20|1997-05-21|TAKE BACK RETURN|SHIP|ain. requests sleep carefully slyly | +938|421431|46448|3|45|60858.45|0.03|0.08|N|O|1997-03-03|1997-03-09|1997-03-15|DELIVER IN PERSON|MAIL|ully pending excuses boost slyly at the | +939|984256|9295|1|11|14742.31|0.06|0.01|A|F|1994-06-25|1994-08-15|1994-07-16|DELIVER IN PERSON|FOB|nding theodolites. blithely| +939|389798|39799|2|30|56633.40|0.00|0.00|R|F|1994-07-16|1994-07-31|1994-08-09|DELIVER IN PERSON|MAIL|ent instructions. i| +939|333706|8719|3|29|50451.01|0.02|0.07|R|F|1994-07-28|1994-08-06|1994-08-11|TAKE BACK RETURN|REG AIR|y bold packag| +939|585739|35740|4|4|7298.84|0.06|0.06|R|F|1994-09-30|1994-09-11|1994-10-12|NONE|FOB|, regular | +939|513058|13059|5|48|51409.44|0.01|0.02|R|F|1994-09-25|1994-08-11|1994-10-11|DELIVER IN PERSON|RAIL|t, express dolphins are. carefully sil| +939|950647|13167|6|18|30556.80|0.00|0.00|R|F|1994-06-25|1994-08-01|1994-07-17|COLLECT COD|AIR|riously regular accounts sleep even | +939|517676|5207|7|18|30485.70|0.07|0.01|R|F|1994-07-23|1994-08-23|1994-07-30|DELIVER IN PERSON|FOB|ccounts cajole blithely about| +940|574041|36553|1|46|51290.92|0.05|0.02|R|F|1994-08-27|1994-10-20|1994-09-03|NONE|SHIP|s cajole; silent, final requests| +940|898046|23081|2|28|29232.00|0.07|0.06|A|F|1994-10-02|1994-09-16|1994-10-10|DELIVER IN PERSON|MAIL|. ironic, silent platelets sle| +940|457767|32786|3|13|22421.62|0.01|0.05|A|F|1994-09-02|1994-10-07|1994-09-11|COLLECT COD|AIR|late carefully after the| +940|674038|36552|4|19|19228.00|0.08|0.03|A|F|1994-10-17|1994-10-19|1994-10-22|DELIVER IN PERSON|REG AIR|ar accounts ca| +940|545894|33425|5|39|75654.93|0.10|0.05|A|F|1994-09-29|1994-09-19|1994-10-15|NONE|MAIL| the blithely express gifts. ide| +940|829408|41925|6|45|60181.20|0.08|0.04|A|F|1994-08-06|1994-09-12|1994-09-02|COLLECT COD|RAIL|ts are fluffily fina| +940|846852|21885|7|45|80946.45|0.05|0.04|A|F|1994-08-09|1994-09-03|1994-09-03|TAKE BACK RETURN|FOB|s wake quickly whithout | +941|39010|26511|1|10|9490.10|0.06|0.06|R|F|1993-04-09|1993-02-04|1993-04-28|NONE|TRUCK|regular theodolites wake careful| +942|134760|22267|1|36|64611.36|0.06|0.06|N|O|1997-05-07|1997-05-26|1997-05-31|COLLECT COD|RAIL|ests. regular, unusual | +942|906184|6185|2|44|52366.16|0.01|0.04|N|O|1997-04-23|1997-06-19|1997-05-17|TAKE BACK RETURN|TRUCK|final dependencie| +942|230973|43478|3|1|1903.96|0.08|0.01|N|O|1997-06-06|1997-06-29|1997-06-17|NONE|RAIL|ole among th| +943|955483|18003|1|50|76922.00|0.08|0.02|N|O|1997-12-31|1997-11-26|1998-01-06|DELIVER IN PERSON|REG AIR|y special pinto beans. furiously regu| +943|800923|924|2|1|1823.88|0.00|0.00|N|O|1997-12-06|1997-11-26|1997-12-13|NONE|SHIP|ully even requests. furio| +943|101818|39325|3|32|58233.92|0.04|0.03|N|O|1997-12-07|1997-10-06|1997-12-24|COLLECT COD|TRUCK|odolites cajole carefully. qui| +943|254195|29206|4|13|14939.34|0.09|0.08|N|O|1997-09-08|1997-10-28|1997-09-21|COLLECT COD|SHIP| the slyly | +943|253599|3600|5|40|62103.20|0.06|0.02|N|O|1997-12-15|1997-10-13|1997-12-22|DELIVER IN PERSON|TRUCK| the requests. de| +943|238163|25676|6|16|17618.40|0.01|0.04|N|O|1997-12-17|1997-11-04|1997-12-30|DELIVER IN PERSON|SHIP|xcuses. stealthily ironic packages shou| +943|804525|29558|7|43|61467.64|0.06|0.01|N|O|1997-12-01|1997-11-07|1997-12-09|DELIVER IN PERSON|AIR| promise ca| +968|651291|38831|1|43|53417.18|0.04|0.01|R|F|1993-02-16|1993-03-04|1993-03-09|TAKE BACK RETURN|TRUCK|uctions? idle excuses wake accordi| +968|242868|17877|2|8|14486.80|0.03|0.04|A|F|1993-01-10|1993-03-20|1993-02-02|NONE|TRUCK|s sleep around t| +968|878083|15635|3|50|53052.00|0.00|0.03|A|F|1993-04-04|1993-03-20|1993-04-06|COLLECT COD|SHIP|ully ironic deposits. bravely pending foxes| +968|931502|44021|4|33|50604.18|0.07|0.06|A|F|1993-01-06|1993-03-16|1993-01-14|DELIVER IN PERSON|RAIL|osits nag quickly. pending| +968|747954|47955|5|12|24023.04|0.07|0.02|A|F|1993-04-16|1993-02-17|1993-04-28|NONE|REG AIR| express patterns cajole blith| +968|854319|4320|6|27|34378.29|0.08|0.00|A|F|1993-01-10|1993-02-12|1993-02-08|DELIVER IN PERSON|RAIL|e stealthily u| +968|526584|39095|7|12|19326.72|0.05|0.06|A|F|1993-03-22|1993-03-01|1993-03-24|DELIVER IN PERSON|FOB|ly ironic packages nag quickly against | +969|288877|26393|1|1|1865.86|0.04|0.05|R|F|1995-05-20|1995-06-01|1995-05-30|NONE|RAIL|ular platelets wake quickly alo| +969|146305|33812|2|35|47295.50|0.09|0.06|N|O|1995-07-11|1995-05-21|1995-07-19|DELIVER IN PERSON|TRUCK|usual requests. instructions run fur| +969|937304|24859|3|20|26825.20|0.02|0.03|A|F|1995-03-27|1995-05-29|1995-03-30|DELIVER IN PERSON|RAIL|ly even packages. always regular re| +969|260023|35034|4|35|34405.35|0.02|0.06|R|F|1995-05-07|1995-06-10|1995-06-06|NONE|MAIL|sual, brave deposit| +969|191892|41893|5|43|85307.27|0.09|0.05|A|F|1995-04-13|1995-05-24|1995-05-12|NONE|REG AIR|usly bold deposit| +969|123679|11186|6|18|30648.06|0.00|0.03|N|O|1995-06-26|1995-05-16|1995-07-15|NONE|SHIP|riously spe| +969|667467|29981|7|41|58811.63|0.03|0.07|A|F|1995-05-07|1995-06-20|1995-05-20|DELIVER IN PERSON|MAIL|fy ideas sleep fluffily sly| +970|116066|3573|1|9|9738.54|0.09|0.01|N|O|1998-02-25|1997-12-28|1998-03-09|TAKE BACK RETURN|REG AIR|rash furiously| +971|567348|17349|1|27|38213.64|0.04|0.05|R|F|1992-11-03|1992-10-18|1992-11-17|COLLECT COD|RAIL|theodolites. regular requests ac| +972|340719|15732|1|14|24635.80|0.08|0.01|R|F|1994-07-28|1994-07-07|1994-08-01|DELIVER IN PERSON|REG AIR|lar accounts; pend| +972|460542|10543|2|44|66110.88|0.10|0.07|A|F|1994-06-24|1994-07-04|1994-07-24|COLLECT COD|MAIL| to the blithe| +972|314738|14739|3|47|82377.84|0.01|0.03|R|F|1994-07-22|1994-08-12|1994-08-12|COLLECT COD|REG AIR|as. regular requests un| +972|786688|49204|4|1|1774.65|0.00|0.05|A|F|1994-06-01|1994-07-18|1994-06-14|DELIVER IN PERSON|RAIL|equests alongside of the | +972|854656|42208|5|35|56371.35|0.00|0.06|A|F|1994-08-11|1994-06-23|1994-09-08|COLLECT COD|FOB|ffily-- requests haggle slyly| +973|572147|34659|1|36|43888.32|0.07|0.07|N|O|1997-08-01|1997-07-31|1997-08-04|NONE|RAIL|c deposits? slyly pending asymptotes mold| +973|65730|3234|2|26|44088.98|0.01|0.04|N|O|1997-09-04|1997-06-21|1997-09-21|COLLECT COD|AIR|pecial requests. carefully| +973|707447|19962|3|28|40723.48|0.06|0.07|N|O|1997-05-26|1997-07-06|1997-06-20|NONE|REG AIR|lly. accoun| +973|57389|19891|4|36|48469.68|0.09|0.03|N|O|1997-09-02|1997-06-29|1997-09-29|DELIVER IN PERSON|REG AIR|rouches. carefully ir| +973|525919|25920|5|19|36952.91|0.05|0.03|N|O|1997-08-17|1997-08-12|1997-09-15|DELIVER IN PERSON|AIR|rate slyly. carefully ironic sh| +973|120405|7912|6|19|27082.60|0.08|0.00|N|O|1997-06-21|1997-08-02|1997-07-19|TAKE BACK RETURN|SHIP|uctions. furious| +973|644953|32490|7|37|70223.04|0.06|0.04|N|O|1997-07-06|1997-06-24|1997-07-21|COLLECT COD|SHIP|s accounts are furiously alongside | +974|718767|6310|1|27|48214.71|0.06|0.02|R|F|1994-04-11|1994-04-26|1994-05-11|NONE|FOB|nstructions among the quickly final theodol| +974|303614|3615|2|49|79262.40|0.04|0.06|A|F|1994-04-27|1994-05-19|1994-05-08|NONE|MAIL|ideas cajole. regular instructions de| +974|828321|3354|3|4|4997.12|0.09|0.07|A|F|1994-05-23|1994-04-12|1994-06-09|TAKE BACK RETURN|MAIL|y special packages. blithely | +974|577054|14588|4|21|23751.63|0.05|0.04|R|F|1994-03-19|1994-05-14|1994-04-11|TAKE BACK RETURN|TRUCK|deas nag quickly unusual accoun| +974|541746|16767|5|30|53631.60|0.01|0.07|R|F|1994-04-11|1994-05-25|1994-04-24|NONE|SHIP|t slyly above the expr| +975|436458|23983|1|49|68327.07|0.05|0.08|A|F|1993-03-05|1993-04-24|1993-03-18|COLLECT COD|FOB|s hang fur| +975|542582|30113|2|47|76354.32|0.01|0.01|A|F|1993-05-18|1993-04-08|1993-05-28|TAKE BACK RETURN|TRUCK|telets detect. enticing deposits | +975|159418|9419|3|23|33980.43|0.06|0.00|R|F|1993-06-07|1993-04-01|1993-06-23|DELIVER IN PERSON|AIR|tect quietly | +1000|571796|34308|1|22|41090.94|0.00|0.05|N|O|1997-08-23|1997-07-30|1997-08-26|NONE|TRUCK|kages haggle unusual, bold accoun| +1000|159576|9577|2|4|6542.28|0.07|0.03|N|O|1997-08-30|1997-07-16|1997-09-26|DELIVER IN PERSON|FOB|. final, unusual package| +1000|978701|3740|3|40|71186.40|0.09|0.04|N|O|1997-09-09|1997-07-12|1997-10-01|TAKE BACK RETURN|AIR|omise after the slyly fin| +1000|12205|49706|4|33|36867.60|0.10|0.08|N|O|1997-05-28|1997-06-20|1997-06-03|TAKE BACK RETURN|SHIP|es boost blithely about the warth| +1000|121164|8671|5|22|26073.52|0.07|0.03|N|O|1997-05-13|1997-07-27|1997-05-22|NONE|AIR|sly about the carefully express acco| +1000|390227|40228|6|27|35564.67|0.09|0.02|N|O|1997-06-27|1997-07-05|1997-07-10|TAKE BACK RETURN|RAIL| always carefully even accounts. furio| +1001|593230|43231|1|38|50281.98|0.05|0.07|R|F|1995-05-19|1995-05-03|1995-06-17|TAKE BACK RETURN|REG AIR|quests integrate. blithel| +1001|402759|40284|2|28|46528.44|0.05|0.06|A|F|1995-04-02|1995-04-01|1995-04-15|TAKE BACK RETURN|TRUCK|ole. busy instructions haggle. blithely | +1001|154249|41759|3|41|53432.84|0.00|0.01|A|F|1995-05-09|1995-03-18|1995-06-07|DELIVER IN PERSON|REG AIR|ld instructions poach blithely sl| +1001|452518|2519|4|45|66172.05|0.02|0.05|A|F|1995-03-09|1995-03-15|1995-03-17|NONE|FOB|e slyly enticingly ev| +1002|662393|24907|1|35|47437.60|0.02|0.00|N|O|1996-03-08|1996-02-20|1996-03-24|NONE|TRUCK|ys. careful| +1002|826618|14167|2|44|67961.08|0.10|0.00|N|O|1995-12-22|1995-12-26|1995-12-28|COLLECT COD|MAIL|ets use fluffily. ca| +1003|616143|41168|1|7|7413.77|0.07|0.07|A|F|1994-04-02|1994-04-16|1994-04-09|DELIVER IN PERSON|MAIL|ns haggle slyly| +1003|505738|5739|2|28|48823.88|0.06|0.01|A|F|1994-05-11|1994-03-19|1994-05-25|DELIVER IN PERSON|AIR|ng tithes. quickly special accounts | +1003|933122|8159|3|45|51978.60|0.03|0.07|R|F|1994-03-11|1994-05-03|1994-03-29|TAKE BACK RETURN|AIR|tructions cajole car| +1003|972332|47371|4|37|51958.73|0.04|0.02|R|F|1994-04-30|1994-04-19|1994-05-19|DELIVER IN PERSON|RAIL|ly even re| +1003|969575|7133|5|37|60847.61|0.08|0.07|A|F|1994-02-25|1994-03-17|1994-03-15|COLLECT COD|TRUCK|usly ironic deposits may sleep blithely| +1003|642079|42080|6|41|41862.64|0.10|0.06|A|F|1994-05-18|1994-03-18|1994-05-23|DELIVER IN PERSON|MAIL|ggle furiously regular theo| +1004|956169|43727|1|37|45329.44|0.02|0.08|A|F|1993-10-07|1993-09-26|1993-10-08|DELIVER IN PERSON|MAIL|kages. blithely final deposits accord| +1004|320110|7629|2|10|11301.00|0.00|0.06|A|F|1993-10-25|1993-09-11|1993-11-14|NONE|REG AIR|ide of the ironic | +1004|74532|37034|3|3|4519.59|0.04|0.00|R|F|1993-11-19|1993-09-24|1993-11-22|COLLECT COD|TRUCK|s wake quickly special, ironi| +1004|658431|45971|4|11|15283.40|0.09|0.08|A|F|1993-09-14|1993-08-31|1993-09-22|TAKE BACK RETURN|SHIP|ow carefully above the bli| +1005|940354|27909|1|5|6971.55|0.03|0.05|A|F|1992-12-10|1992-12-30|1992-12-18|TAKE BACK RETURN|TRUCK|ly regular plate| +1006|7752|20253|1|48|79668.00|0.10|0.05|N|O|1997-01-18|1997-01-15|1997-01-25|NONE|MAIL|ly. fluffily | +1006|279614|4625|2|33|52588.80|0.05|0.02|N|O|1996-11-03|1996-12-26|1996-11-29|COLLECT COD|FOB|s are after the slyly silent reque| +1006|458963|46491|3|13|24985.22|0.01|0.05|N|O|1997-01-18|1996-12-06|1997-02-02|COLLECT COD|REG AIR|the silent, bold deposits wake slyly af| +1006|782931|20477|4|30|60417.00|0.07|0.01|N|O|1996-11-30|1996-12-18|1996-12-05|NONE|AIR|d dolphins haggle | +1006|713380|38409|5|50|69667.50|0.04|0.00|N|O|1996-11-21|1997-01-23|1996-12-15|NONE|RAIL|y express th| +1007|925170|25171|1|29|34658.77|0.01|0.06|N|O|1995-12-06|1996-02-01|1995-12-23|COLLECT COD|SHIP|ake furiously alongside of | +1032|614575|2112|1|50|74477.00|0.02|0.01|N|O|1998-07-03|1998-08-27|1998-07-25|TAKE BACK RETURN|AIR|ing theodolites. carefully | +1032|154282|29289|2|46|61468.88|0.03|0.01|N|O|1998-09-12|1998-08-09|1998-09-18|DELIVER IN PERSON|SHIP|ffily regular platelet| +1032|16604|4105|3|5|7603.00|0.07|0.03|N|O|1998-07-23|1998-08-24|1998-08-06|TAKE BACK RETURN|SHIP|, special fox| +1032|52053|2054|4|28|28141.40|0.10|0.07|N|O|1998-09-11|1998-08-15|1998-10-03|DELIVER IN PERSON|AIR| to the slyly express courts. f| +1032|847538|35087|5|41|60905.09|0.02|0.01|N|O|1998-08-08|1998-07-02|1998-08-10|DELIVER IN PERSON|AIR| the pinto beans? even dependenci| +1033|309973|34986|1|27|53539.92|0.10|0.07|N|O|1996-12-16|1997-01-16|1996-12-20|DELIVER IN PERSON|SHIP|special, reg| +1034|333059|45566|1|11|12012.44|0.06|0.06|R|F|1994-09-18|1994-11-13|1994-10-06|TAKE BACK RETURN|FOB|s. unusual re| +1034|717988|30503|2|38|76226.10|0.07|0.07|R|F|1994-11-09|1994-12-05|1994-12-01|COLLECT COD|RAIL|s mold carefully stealthy deposits. carefu| +1034|219677|19678|3|17|27143.22|0.09|0.00|A|F|1994-09-22|1994-11-14|1994-10-11|TAKE BACK RETURN|RAIL|round the final packages are pending, ev| +1034|111010|23513|4|27|27567.27|0.09|0.02|R|F|1994-12-02|1994-10-28|1994-12-26|COLLECT COD|AIR|ular accounts. carefully re| +1034|733936|46451|5|30|59097.00|0.00|0.07|A|F|1994-09-15|1994-11-07|1994-10-14|COLLECT COD|REG AIR|ully pending attainments according | +1035|974379|49418|1|11|15986.63|0.05|0.05|A|F|1995-05-03|1995-03-14|1995-06-02|DELIVER IN PERSON|SHIP| ironic instructions ar| +1035|376141|13663|2|15|18256.95|0.06|0.06|A|F|1995-04-16|1995-04-23|1995-05-13|DELIVER IN PERSON|REG AIR| kindle furiousl| +1035|801674|1675|3|32|50420.16|0.05|0.04|R|F|1995-05-24|1995-03-29|1995-06-10|DELIVER IN PERSON|SHIP|s integrate special | +1035|731254|31255|4|33|42412.26|0.04|0.01|N|F|1995-06-05|1995-04-05|1995-06-25|NONE|REG AIR|encies-- doggedly even accounts belie| +1035|177535|40039|5|23|37088.19|0.06|0.05|A|F|1995-06-04|1995-03-31|1995-06-09|TAKE BACK RETURN|SHIP|hely furiousl| +1035|828842|3875|6|9|15937.20|0.02|0.05|R|F|1995-05-22|1995-04-03|1995-06-11|NONE|RAIL|s the requests wake blith| +1036|893839|31391|1|19|34823.01|0.07|0.04|A|F|1993-09-06|1993-08-13|1993-09-27|NONE|TRUCK|uffily. regular, even pinto | +1036|747146|9661|2|19|22669.09|0.08|0.04|R|F|1993-10-26|1993-08-10|1993-10-31|DELIVER IN PERSON|TRUCK|, express requests| +1036|281187|31188|3|8|9345.36|0.01|0.05|A|F|1993-10-23|1993-10-05|1993-11-05|NONE|MAIL|ests wake quickly aga| +1036|908287|33324|4|43|55695.32|0.04|0.01|A|F|1993-10-05|1993-10-03|1993-10-20|NONE|SHIP|e blithely. alw| +1036|579490|17024|5|21|32958.87|0.05|0.01|A|F|1993-07-23|1993-09-30|1993-08-01|TAKE BACK RETURN|MAIL|nal, bold packages. f| +1036|478212|15740|6|26|30944.94|0.03|0.00|R|F|1993-07-19|1993-09-05|1993-08-02|DELIVER IN PERSON|SHIP|s cajole across th| +1037|284439|21955|1|41|58360.22|0.00|0.02|N|O|1995-08-08|1995-07-29|1995-08-15|DELIVER IN PERSON|RAIL|ests. final asympt| +1037|560795|10796|2|14|25980.78|0.07|0.08|N|O|1995-08-20|1995-07-13|1995-09-18|DELIVER IN PERSON|REG AIR|leep carefully bold dependencies; blithel| +1038|653338|15852|1|2|2582.60|0.08|0.05|N|O|1997-12-23|1998-03-03|1997-12-26|NONE|REG AIR| cajole accounts. quickly regular packages| +1038|635277|35278|2|12|14546.88|0.06|0.04|N|O|1997-12-24|1998-01-19|1998-01-08|NONE|SHIP|ong the pending, regular | +1038|85820|48322|3|23|41533.86|0.02|0.03|N|O|1998-02-22|1998-03-01|1998-03-09|TAKE BACK RETURN|REG AIR|slyly ironic dolphins. slyly unusual instr| +1038|360700|48222|4|22|38735.18|0.08|0.06|N|O|1998-02-10|1998-02-24|1998-02-14|COLLECT COD|REG AIR|. accounts was| +1038|271232|46243|5|6|7219.32|0.05|0.07|N|O|1998-01-25|1998-02-10|1998-02-22|NONE|REG AIR|rly bold instructions. quickly iron| +1038|587118|12141|6|38|45793.42|0.01|0.00|N|O|1998-03-12|1998-01-15|1998-03-16|TAKE BACK RETURN|FOB|arefully quickly regu| +1038|686882|36883|7|29|54196.65|0.09|0.03|N|O|1998-01-12|1998-01-22|1998-01-31|TAKE BACK RETURN|FOB|fluffily despite the furiously stealthy| +1039|420575|45592|1|25|37388.75|0.00|0.04|N|O|1997-05-16|1997-03-26|1997-05-25|COLLECT COD|MAIL|pending acco| +1064|732015|44530|1|32|33503.36|0.09|0.00|N|O|1997-10-19|1997-11-22|1997-11-11|DELIVER IN PERSON|FOB|: furiously pending ide| +1065|205627|43140|1|10|15326.10|0.01|0.04|N|O|1998-07-10|1998-05-10|1998-07-13|DELIVER IN PERSON|TRUCK|uickly deposits. care| +1065|962957|12958|2|18|36358.38|0.04|0.04|N|O|1998-04-10|1998-05-06|1998-04-16|DELIVER IN PERSON|FOB|iously final pinto beans. quickly e| +1065|410244|35261|3|30|34626.60|0.04|0.07|N|O|1998-06-12|1998-06-17|1998-07-02|TAKE BACK RETURN|RAIL|ven packages are quickly after the eve| +1065|964160|39199|4|26|31827.12|0.00|0.08|N|O|1998-05-04|1998-05-07|1998-05-17|TAKE BACK RETURN|MAIL|y regular instructions about the regular| +1066|484457|21985|1|40|57657.20|0.03|0.06|R|F|1992-08-30|1992-08-31|1992-09-27|COLLECT COD|AIR|pinto beans lose carefully after the fl| +1067|679980|42494|1|35|68598.25|0.10|0.04|N|O|1996-03-15|1996-01-27|1996-04-07|DELIVER IN PERSON|TRUCK|nic, final foxes dazzle careful| +1067|411360|48885|2|4|5085.36|0.02|0.00|N|O|1996-04-13|1996-02-20|1996-05-04|TAKE BACK RETURN|MAIL|ans integrate carefully foxes. t| +1067|711414|36443|3|49|69843.62|0.04|0.05|N|O|1996-03-04|1996-02-28|1996-03-11|NONE|MAIL|ts solve blithely ironic| +1068|225364|25365|1|19|24497.65|0.10|0.06|R|F|1994-03-24|1994-03-22|1994-04-03|NONE|MAIL|st the quickly silent packages. pending ide| +1068|680613|18153|2|50|79679.00|0.03|0.05|A|F|1994-04-05|1994-03-28|1994-04-20|COLLECT COD|REG AIR|nto beans sleep at the carefully final d| +1069|477576|40086|1|47|73016.85|0.07|0.02|R|F|1992-04-28|1992-06-20|1992-05-18|NONE|AIR|regular ideas. final reque| +1070|308996|46515|1|46|92229.08|0.07|0.08|R|F|1994-07-17|1994-05-20|1994-08-11|TAKE BACK RETURN|SHIP|uriously final pa| +1071|938144|13181|1|23|27188.30|0.01|0.04|R|F|1995-03-09|1995-04-22|1995-03-31|COLLECT COD|SHIP|lent reque| +1071|373291|48306|2|17|23192.76|0.08|0.08|N|F|1995-06-17|1995-04-27|1995-07-14|NONE|MAIL|ts detect blithely abou| +1071|890637|28189|3|5|8137.95|0.09|0.07|R|F|1995-05-08|1995-05-18|1995-05-10|TAKE BACK RETURN|FOB|y regular r| +1071|934378|34379|4|49|69204.17|0.05|0.05|A|F|1995-05-23|1995-05-25|1995-06-05|NONE|TRUCK| sleep theodolites. quickly idle asympt| +1071|74415|24416|5|29|40292.89|0.08|0.03|N|O|1995-06-23|1995-05-29|1995-07-11|COLLECT COD|REG AIR|le. final packages across the| +1071|676990|2017|6|14|27537.44|0.02|0.05|A|F|1995-04-01|1995-04-19|1995-04-30|DELIVER IN PERSON|SHIP| beans are. blithely ironic requests hang | +1096|589731|2243|1|8|14565.68|0.06|0.05|R|F|1993-08-25|1993-08-08|1993-09-15|COLLECT COD|SHIP|onic, pending accounts use ruthl| +1096|603058|28083|2|4|3844.08|0.03|0.04|A|F|1993-08-06|1993-09-27|1993-08-28|COLLECT COD|MAIL| unusual foxes across the qui| +1096|595022|7534|3|32|35744.00|0.09|0.01|A|F|1993-10-02|1993-08-20|1993-10-23|NONE|SHIP|cial pinto | +1097|331703|31704|1|42|72856.98|0.04|0.02|A|F|1993-11-09|1993-09-12|1993-11-20|NONE|AIR|the packages. furiously slow ins| +1097|916034|28553|2|46|48299.54|0.04|0.06|A|F|1993-11-29|1993-10-04|1993-12-25|DELIVER IN PERSON|FOB|sts. regular accounts| +1098|520019|45040|1|18|18701.82|0.10|0.05|R|F|1993-06-11|1993-08-24|1993-07-09|TAKE BACK RETURN|FOB|old pinto be| +1098|958569|8570|2|20|32550.40|0.03|0.03|A|F|1993-06-17|1993-08-23|1993-07-16|TAKE BACK RETURN|RAIL|ideas wake blithely flu| +1099|810404|10405|1|47|61774.92|0.10|0.00|N|O|1998-05-27|1998-07-10|1998-06-24|NONE|SHIP|the silent, special| +1100|82548|7551|1|9|13774.86|0.05|0.06|A|F|1992-12-10|1992-11-16|1992-12-14|TAKE BACK RETURN|TRUCK|final forges. c| +1100|372332|47347|2|13|18256.16|0.07|0.05|R|F|1992-12-14|1992-12-18|1992-12-19|DELIVER IN PERSON|REG AIR|nic, even pinto beans eat furious| +1100|773302|10848|3|44|60511.88|0.00|0.02|R|F|1992-11-02|1992-12-12|1992-11-15|COLLECT COD|RAIL|against the slyly unusual excuses. sly| +1100|880374|42892|4|34|46047.22|0.03|0.07|R|F|1992-12-17|1992-12-19|1993-01-15|DELIVER IN PERSON|TRUCK|ironic ideas. p| +1101|142897|42898|1|40|77595.60|0.02|0.08|N|O|1996-11-27|1996-09-12|1996-12-11|DELIVER IN PERSON|RAIL|ully regular foxes ar| +1101|661077|48617|2|17|17646.68|0.05|0.02|N|O|1996-08-16|1996-10-30|1996-09-04|NONE|SHIP|es mold carefully. carefully bold| +1101|715098|40127|3|49|54539.94|0.10|0.07|N|O|1996-10-30|1996-09-20|1996-11-21|NONE|RAIL|oxes according to the regul| +1102|43637|6138|1|21|33193.23|0.09|0.07|N|O|1998-05-18|1998-07-22|1998-06-16|COLLECT COD|MAIL|cross the flu| +1102|390781|15796|2|30|56153.10|0.09|0.06|N|O|1998-08-20|1998-07-27|1998-09-18|TAKE BACK RETURN|AIR|regular instructions | +1102|854624|4625|3|1|1578.58|0.03|0.03|N|O|1998-05-07|1998-06-23|1998-05-18|TAKE BACK RETURN|FOB|ular epitaphs. quickly regular| +1102|648864|11377|4|37|67074.71|0.05|0.05|N|O|1998-06-26|1998-06-04|1998-07-20|COLLECT COD|REG AIR|long the regular foxes use above the ironi| +1102|455839|43367|5|36|64613.16|0.10|0.06|N|O|1998-06-25|1998-06-28|1998-07-09|TAKE BACK RETURN|AIR|the requests. per| +1103|89237|26741|1|33|40465.59|0.10|0.07|N|O|1997-06-16|1997-04-19|1997-07-06|DELIVER IN PERSON|TRUCK|ickly. regular deposits cajole aga| +1103|789752|14783|2|7|12892.04|0.01|0.01|N|O|1997-04-14|1997-04-29|1997-04-26|NONE|TRUCK|s cajole furio| +1103|354545|42067|3|48|76777.44|0.07|0.08|N|O|1997-03-08|1997-03-31|1997-03-18|DELIVER IN PERSON|MAIL|. ironic, regular packages across the sly| +1103|836011|48528|4|42|39772.74|0.01|0.00|N|O|1997-04-01|1997-05-11|1997-04-04|NONE|FOB| to the final, reg| +1128|717079|4622|1|13|14248.52|0.01|0.04|A|F|1992-11-03|1992-08-31|1992-12-02|NONE|RAIL|sual dependencies. packages boost. | +1128|933643|21198|2|23|38561.80|0.04|0.03|A|F|1992-08-19|1992-09-21|1992-09-11|NONE|FOB|nal excuses in place of the | +1129|419205|44222|1|32|35973.76|0.01|0.01|R|F|1993-11-12|1993-10-19|1993-11-13|COLLECT COD|MAIL|he carefully regula| +1129|574247|36759|2|44|58133.68|0.04|0.00|R|F|1993-12-22|1993-10-07|1993-12-28|TAKE BACK RETURN|RAIL|lites. slyly express| +1129|352676|27691|3|41|70875.06|0.02|0.05|A|F|1993-12-11|1993-10-16|1993-12-28|DELIVER IN PERSON|REG AIR|t wake carefully regular, specia| +1129|421293|33802|4|37|44927.99|0.05|0.08|A|F|1993-10-21|1993-10-27|1993-10-23|DELIVER IN PERSON|MAIL|ckly regular realms doze. | +1129|663703|1243|5|18|30000.06|0.10|0.00|A|F|1993-12-12|1993-10-07|1993-12-18|TAKE BACK RETURN|AIR|riously even depos| +1129|841976|29525|6|22|42194.46|0.02|0.04|A|F|1993-12-04|1993-10-03|1993-12-05|NONE|TRUCK|quests was blithely excu| +1130|402330|14839|1|29|35736.99|0.02|0.07|N|O|1998-01-09|1997-12-09|1998-01-23|TAKE BACK RETURN|MAIL|ake fluffily along the even instruction| +1130|956008|43566|2|35|37238.60|0.09|0.07|N|O|1998-02-01|1997-12-16|1998-02-20|COLLECT COD|REG AIR|ully. quickly express ideas cajole slyly. e| +1130|624176|49201|3|7|7700.98|0.03|0.08|N|O|1997-10-16|1997-11-26|1997-11-12|COLLECT COD|AIR|s haggle quickly regular, ironic instruc| +1130|515726|15727|4|11|19158.70|0.04|0.08|N|O|1997-12-11|1997-11-17|1998-01-09|TAKE BACK RETURN|AIR|l foxes wake carefully along the ironic,| +1130|804305|4306|5|44|53207.44|0.03|0.03|N|O|1998-01-28|1997-12-28|1998-02-15|NONE|REG AIR|l packages. regular packages hinder furiou| +1130|946077|8596|6|12|13476.36|0.07|0.06|N|O|1997-11-25|1997-12-31|1997-11-27|NONE|REG AIR|sleep slyly. slyly final accounts wake e| +1130|702441|39984|7|39|56292.99|0.04|0.02|N|O|1998-01-14|1997-11-30|1998-02-10|NONE|FOB| slyly. fluffily | +1131|917212|29731|1|22|27041.74|0.08|0.03|A|F|1992-10-12|1992-10-15|1992-10-18|TAKE BACK RETURN|MAIL|onic theodolites. quick| +1131|575496|519|2|18|28286.46|0.08|0.00|R|F|1992-10-16|1992-09-29|1992-11-03|TAKE BACK RETURN|TRUCK| special packages cajole always. quickly| +1131|353048|28063|3|41|45142.23|0.03|0.02|A|F|1992-08-19|1992-09-25|1992-08-30|TAKE BACK RETURN|MAIL|cial instruct| +1131|663613|1153|4|27|42567.66|0.05|0.01|R|F|1992-12-07|1992-09-26|1992-12-28|DELIVER IN PERSON|REG AIR|y unusual requests. busily idle | +1131|335063|47570|5|22|24157.10|0.06|0.01|A|F|1992-11-28|1992-09-27|1992-12-12|TAKE BACK RETURN|AIR|liers cajole along th| +1132|83657|8660|1|15|24609.75|0.08|0.07|A|F|1994-05-08|1994-04-22|1994-05-26|NONE|REG AIR|finally even accounts kindle carefully iron| +1132|21983|21984|2|25|47624.50|0.02|0.06|A|F|1994-04-19|1994-05-29|1994-04-22|NONE|RAIL| sleep along the blithely unusual| +1132|457113|7114|3|15|16051.35|0.06|0.04|R|F|1994-04-08|1994-05-29|1994-04-29|COLLECT COD|AIR|egular accounts are across the special,| +1132|692765|42766|4|6|10546.38|0.10|0.08|R|F|1994-05-29|1994-04-26|1994-06-21|NONE|AIR| cajole slyly am| +1132|296897|9403|5|39|73861.32|0.01|0.07|R|F|1994-05-29|1994-06-10|1994-06-26|TAKE BACK RETURN|SHIP|he ideas integrate carefully fi| +1132|934572|22127|6|6|9639.18|0.07|0.04|A|F|1994-05-08|1994-06-02|1994-05-29|DELIVER IN PERSON|MAIL|deposits. pending, regu| +1133|934990|10027|1|50|101247.50|0.08|0.07|R|F|1993-05-15|1993-06-17|1993-06-03|DELIVER IN PERSON|TRUCK|al, special packages hag| +1134|790115|40116|1|34|40972.72|0.08|0.05|N|O|1998-02-27|1998-02-01|1998-03-08|COLLECT COD|TRUCK|lly ironic instructions impress always pat| +1134|457470|44998|2|38|54243.10|0.02|0.02|N|O|1998-02-18|1998-01-10|1998-03-15|COLLECT COD|FOB|use carefully final accounts. finally | +1134|687827|37828|3|37|67147.23|0.05|0.00|N|O|1997-12-09|1997-12-28|1997-12-19|COLLECT COD|RAIL| packages breach fluff| +1135|854921|17439|1|39|73159.32|0.01|0.06|N|O|1995-07-31|1995-07-16|1995-08-23|DELIVER IN PERSON|AIR|ts are. carefully regular instructions na| +1135|655354|30381|2|34|44516.88|0.06|0.03|N|O|1995-09-06|1995-07-30|1995-09-09|NONE|TRUCK|ular, ironic pinto beans affix above th| +1135|521225|33736|3|25|31155.00|0.02|0.04|N|O|1995-06-24|1995-08-26|1995-06-26|TAKE BACK RETURN|MAIL|fix quickly. furiously final pinto beans| +1135|220210|20211|4|25|28255.00|0.09|0.02|N|O|1995-08-24|1995-07-01|1995-09-08|TAKE BACK RETURN|SHIP|to beans poach furiously a| +1160|560315|10316|1|9|12377.61|0.10|0.07|N|O|1995-12-21|1995-11-27|1996-01-12|TAKE BACK RETURN|TRUCK|ts are bold packa| +1160|201068|26077|2|24|23257.20|0.07|0.01|N|O|1995-12-11|1995-12-27|1995-12-31|COLLECT COD|MAIL|nusual packages boost according to the quic| +1160|335054|10067|3|26|28315.04|0.01|0.03|N|O|1996-01-27|1995-11-25|1996-02-05|NONE|AIR|ic grouches us| +1160|241912|16921|4|16|29662.40|0.01|0.03|N|O|1995-12-03|1995-12-07|1995-12-16|COLLECT COD|TRUCK|inal requests among the furiously sp| +1161|344031|19044|1|24|25800.48|0.07|0.04|R|F|1993-04-27|1993-04-12|1993-05-03|DELIVER IN PERSON|RAIL|usly even ideas w| +1161|117547|17548|2|3|4693.62|0.05|0.02|R|F|1993-03-29|1993-04-04|1993-04-07|DELIVER IN PERSON|REG AIR|the slyly | +1161|612060|49597|3|22|21384.66|0.00|0.04|A|F|1993-03-25|1993-04-25|1993-04-18|DELIVER IN PERSON|FOB|. ironic req| +1161|878529|16081|4|40|60299.20|0.03|0.04|R|F|1993-02-08|1993-02-28|1993-03-06|DELIVER IN PERSON|TRUCK|y regular ideas. furiously final f| +1162|43107|43108|1|49|51454.90|0.09|0.01|R|F|1993-10-23|1993-11-01|1993-10-28|NONE|AIR|ironic pinto | +1162|491526|16545|2|41|62217.50|0.03|0.06|R|F|1993-09-13|1993-10-28|1993-09-19|DELIVER IN PERSON|AIR|cajole slyl| +1162|77255|2258|3|10|12322.50|0.06|0.00|R|F|1993-10-01|1993-10-06|1993-10-04|TAKE BACK RETURN|REG AIR|en foxes wake. blithely reg| +1162|415471|15472|4|5|6932.25|0.06|0.02|A|F|1993-10-10|1993-10-18|1993-10-19|NONE|AIR|ly regular tithes. special, even | +1162|811930|11931|5|13|23944.57|0.03|0.03|A|F|1993-12-16|1993-11-11|1994-01-06|TAKE BACK RETURN|TRUCK|r instructions. bold asym| +1162|106708|31713|6|35|60014.50|0.02|0.00|R|F|1993-11-04|1993-10-01|1993-11-18|NONE|SHIP|quests. sometimes pending a| +1162|436802|24327|7|40|69551.20|0.00|0.04|A|F|1993-09-24|1993-10-23|1993-10-05|TAKE BACK RETURN|FOB|y regular patterns use furious| +1163|314764|39777|1|45|80043.75|0.05|0.01|R|F|1993-06-29|1993-06-25|1993-07-22|DELIVER IN PERSON|TRUCK|lyly above t| +1163|224307|49316|2|44|54176.76|0.05|0.03|A|F|1993-05-18|1993-07-07|1993-06-01|NONE|MAIL|es. fluffily final foxes solve f| +1163|921618|21619|3|11|18035.27|0.10|0.02|A|F|1993-08-08|1993-06-29|1993-08-31|DELIVER IN PERSON|TRUCK|y. regular theodolites sleep close deposi| +1163|629737|29738|4|39|65001.30|0.03|0.08|A|F|1993-05-24|1993-06-08|1993-06-12|NONE|REG AIR|riously. quickly| +1163|977438|27439|5|8|12123.12|0.00|0.05|R|F|1993-05-13|1993-07-05|1993-06-02|DELIVER IN PERSON|RAIL|the slyly ironic ideas nag abo| +1164|254207|4208|1|31|35996.89|0.09|0.07|A|F|1992-11-02|1992-10-18|1992-11-29|DELIVER IN PERSON|FOB|ajole slyly quickly| +1164|456897|44425|2|25|46346.75|0.09|0.00|R|F|1992-09-22|1992-09-14|1992-10-18|TAKE BACK RETURN|SHIP|lowly ironic foxes | +1165|962453|24973|1|2|3030.82|0.01|0.02|R|F|1994-08-12|1994-09-16|1994-08-19|COLLECT COD|TRUCK|the slyly unusual instruct| +1165|937839|12876|2|19|35659.01|0.06|0.05|A|F|1994-08-06|1994-08-07|1994-08-18|DELIVER IN PERSON|SHIP|iously alongside of the furiousl| +1165|257757|32768|3|33|56586.42|0.09|0.06|R|F|1994-07-26|1994-08-11|1994-08-08|NONE|MAIL|bold requests. regular dependencies use bli| +1165|109249|21752|4|46|57879.04|0.05|0.01|R|F|1994-09-12|1994-08-05|1994-10-07|COLLECT COD|REG AIR|as cajole caref| +1165|138842|26349|5|26|48901.84|0.09|0.04|A|F|1994-10-30|1994-08-05|1994-11-19|COLLECT COD|FOB|arefully. quickly regular deposits | +1166|305166|30179|1|3|3513.45|0.05|0.01|R|F|1994-03-02|1994-02-04|1994-03-21|NONE|TRUCK|p enticing| +1166|911324|23843|2|20|26705.60|0.02|0.01|A|F|1994-03-28|1994-03-16|1994-04-24|NONE|RAIL|ages haggle blithely slyly even depos| +1166|615901|28414|3|26|47238.62|0.10|0.01|A|F|1993-12-28|1994-01-28|1994-01-18|TAKE BACK RETURN|MAIL|ccounts wake blithely after the furio| +1167|511396|11397|1|12|16888.44|0.06|0.04|A|F|1995-01-17|1995-02-07|1995-01-28|COLLECT COD|REG AIR|sits wake slyly idle r| +1167|32243|44744|2|2|2350.48|0.02|0.05|A|F|1994-11-30|1995-02-01|1994-12-30|TAKE BACK RETURN|AIR|ual ideas cajole special foxes.| +1192|908907|33944|1|10|19158.60|0.10|0.08|R|F|1994-10-07|1994-09-07|1994-10-31|TAKE BACK RETURN|RAIL|ronic platelets haggle furiously. quickly | +1192|997507|35065|2|9|14440.14|0.08|0.03|R|F|1994-11-13|1994-09-02|1994-12-09|COLLECT COD|RAIL|inal, regular deposits of the eve| +1192|84135|21639|3|17|19025.21|0.03|0.08|A|F|1994-10-30|1994-09-14|1994-11-08|NONE|FOB|n, unusual deposits boost slowl| +1193|249722|12227|1|2|3343.42|0.03|0.07|N|O|1996-05-24|1996-05-24|1996-06-04|TAKE BACK RETURN|SHIP| haggle. b| +1193|66914|29416|2|25|47022.75|0.00|0.01|N|O|1996-07-16|1996-06-10|1996-07-23|TAKE BACK RETURN|REG AIR|es poach b| +1193|621980|34493|3|37|70372.15|0.05|0.05|N|O|1996-08-01|1996-07-12|1996-08-27|DELIVER IN PERSON|MAIL|express, bold f| +1193|615444|40469|4|33|44860.53|0.08|0.08|N|O|1996-06-16|1996-05-22|1996-07-10|COLLECT COD|TRUCK|eodolites cajole carefully slyly r| +1193|759274|34305|5|13|17332.12|0.03|0.03|N|O|1996-06-29|1996-06-13|1996-07-18|DELIVER IN PERSON|TRUCK| final requests. even, ironic acc| +1193|103040|15543|6|13|13559.52|0.00|0.02|N|O|1996-05-26|1996-05-20|1996-06-04|TAKE BACK RETURN|FOB| about the furiously final acc| +1193|789540|2056|7|47|76586.97|0.02|0.07|N|O|1996-06-03|1996-06-23|1996-06-25|NONE|TRUCK|ns lose fluffily bol| +1194|783624|8655|1|9|15368.31|0.05|0.00|R|F|1992-04-09|1992-05-23|1992-05-06|DELIVER IN PERSON|SHIP|n requests boost according to the blithel| +1194|352490|40012|2|23|35477.04|0.04|0.06|A|F|1992-05-24|1992-05-06|1992-05-28|DELIVER IN PERSON|FOB|ly final requests. special d| +1194|291575|4081|3|16|25064.96|0.08|0.07|R|F|1992-06-12|1992-05-04|1992-07-12|DELIVER IN PERSON|SHIP|counts will have to haggle r| +1194|491451|28979|4|33|47600.19|0.09|0.03|R|F|1992-04-10|1992-05-03|1992-05-04|TAKE BACK RETURN|AIR|ckages sleep after the| +1194|807262|44811|5|35|40922.70|0.03|0.07|A|F|1992-04-16|1992-05-25|1992-04-24|COLLECT COD|AIR|ly. carefully reg| +1195|491151|3661|1|2|2284.26|0.10|0.06|N|O|1997-06-11|1997-06-27|1997-06-27|COLLECT COD|REG AIR|platelets impress. blithely express reques| +1195|764419|39450|2|13|19283.94|0.08|0.08|N|O|1997-05-16|1997-07-14|1997-05-19|COLLECT COD|AIR|he slyly regular dep| +1196|519378|44399|1|17|23754.95|0.05|0.02|N|O|1995-09-01|1995-09-24|1995-09-25|COLLECT COD|MAIL|ular instructio| +1197|212253|49766|1|50|58262.00|0.09|0.03|R|F|1994-08-07|1994-08-09|1994-08-28|COLLECT COD|MAIL|ronic accounts wa| +1197|320843|20844|2|5|9319.15|0.00|0.02|A|F|1994-05-25|1994-06-21|1994-05-31|NONE|SHIP|special foxes are blithel| +1197|405729|30746|3|23|37598.10|0.07|0.02|A|F|1994-06-22|1994-06-28|1994-07-18|DELIVER IN PERSON|FOB|regular accounts are carefully| +1197|71278|46281|4|3|3747.81|0.00|0.01|A|F|1994-06-08|1994-07-22|1994-07-02|TAKE BACK RETURN|TRUCK|ffily; furiously special deposits alongs| +1197|962949|25469|5|24|48285.60|0.01|0.06|R|F|1994-08-12|1994-08-02|1994-08-22|TAKE BACK RETURN|REG AIR|xpress dependencies use blithel| +1197|280436|5447|6|17|24079.14|0.09|0.06|A|F|1994-09-06|1994-08-10|1994-09-29|DELIVER IN PERSON|MAIL|arefully blithely silent foxes; carefully b| +1197|278406|3417|7|26|35994.14|0.10|0.07|R|F|1994-07-18|1994-08-06|1994-08-10|NONE|AIR|slyly final packages. blithely final pint| +1198|158496|33503|1|16|24871.84|0.09|0.06|A|F|1994-12-22|1995-01-17|1995-01-03|DELIVER IN PERSON|AIR|deas cajole even ideas? car| +1198|833467|33468|2|34|47614.28|0.05|0.03|A|F|1995-01-23|1995-01-31|1995-02-05|COLLECT COD|AIR|ke carefully after th| +1198|70378|32880|3|29|39102.73|0.10|0.08|R|F|1995-02-15|1995-01-23|1995-03-08|TAKE BACK RETURN|MAIL| around the furiousl| +1198|827393|27394|4|44|58095.40|0.03|0.07|R|F|1994-12-13|1994-12-31|1994-12-22|DELIVER IN PERSON|FOB|he quickly sly dependencies nag furiously | +1198|984266|21824|5|25|33755.50|0.09|0.01|R|F|1995-02-27|1995-02-04|1995-03-09|NONE|SHIP|about the special acco| +1198|544917|19938|6|47|92208.83|0.04|0.07|A|F|1995-02-24|1995-01-20|1995-03-11|DELIVER IN PERSON|REG AIR|y regular orbits. never special requests sl| +1199|683225|45739|1|45|54368.55|0.06|0.08|R|F|1993-09-07|1993-09-14|1993-09-18|COLLECT COD|MAIL|ully final excuses cajole quickly| +1224|287235|37236|1|43|52555.46|0.01|0.04|N|O|1998-05-31|1998-04-02|1998-06-01|COLLECT COD|REG AIR|gle. regular deposits use blithely| +1224|557070|44604|2|47|52971.35|0.10|0.02|N|O|1998-05-02|1998-04-11|1998-05-28|DELIVER IN PERSON|TRUCK|. slyly special requests cajole blithel| +1224|661902|36929|3|20|37277.40|0.10|0.05|N|O|1998-03-20|1998-04-03|1998-03-25|NONE|FOB|ly even sheaves above the | +1225|128593|3598|1|6|9729.54|0.02|0.04|A|F|1993-10-01|1993-10-20|1993-10-13|NONE|REG AIR|ound the platel| +1225|255605|5606|2|41|63984.19|0.05|0.04|A|F|1993-08-03|1993-10-22|1993-08-14|DELIVER IN PERSON|MAIL|fully. packages haggle carefully-- furi| +1225|939261|39262|3|27|35105.94|0.09|0.00|R|F|1993-10-07|1993-10-28|1993-11-06|NONE|REG AIR|press, regular realms cajole slyly ironic | +1225|147898|10401|4|32|62268.48|0.02|0.02|A|F|1993-11-08|1993-10-16|1993-11-10|COLLECT COD|SHIP|bold ideas cajole blithe| +1225|706774|44317|5|40|71229.60|0.04|0.06|A|F|1993-08-14|1993-09-07|1993-09-05|DELIVER IN PERSON|FOB|s. carefully regular accounts boost f| +1225|741343|41344|6|38|52603.78|0.04|0.07|R|F|1993-10-20|1993-09-20|1993-11-04|TAKE BACK RETURN|AIR|sts. regular pla| +1226|207913|7914|1|16|29134.40|0.10|0.05|N|O|1996-02-15|1996-01-24|1996-03-07|NONE|REG AIR|eposits boost for the even, e| +1226|381657|6672|2|22|38250.08|0.08|0.03|N|O|1996-03-13|1996-03-19|1996-03-15|TAKE BACK RETURN|SHIP| foxes wake carefully carefully final foxe| +1226|496167|33695|3|27|31404.78|0.10|0.04|N|O|1996-01-26|1996-02-10|1996-02-18|DELIVER IN PERSON|MAIL| dependencies haggle careful| +1226|62571|75|4|29|44473.53|0.07|0.05|N|O|1996-04-08|1996-01-30|1996-05-08|NONE|TRUCK| bold accounts | +1226|629316|29317|5|11|13698.08|0.01|0.03|N|O|1996-04-16|1996-03-02|1996-05-04|TAKE BACK RETURN|FOB|es affix slyly blithely regular accoun| +1226|908176|45731|6|30|35523.90|0.05|0.06|N|O|1995-12-23|1996-02-20|1996-01-18|DELIVER IN PERSON|AIR|y unusual dugouts. fluffily fi| +1227|813056|25573|1|39|37791.39|0.03|0.05|A|F|1992-06-24|1992-09-10|1992-07-19|COLLECT COD|REG AIR|ccounts across the doggedly express theo| +1227|18746|6247|2|50|83237.00|0.08|0.04|R|F|1992-09-05|1992-09-13|1992-09-22|TAKE BACK RETURN|RAIL| special pac| +1227|56498|6499|3|38|55270.62|0.06|0.04|A|F|1992-07-19|1992-08-08|1992-08-02|DELIVER IN PERSON|RAIL| above the pending deposits. slyly | +1227|551187|1188|4|6|7428.96|0.02|0.05|R|F|1992-09-10|1992-08-30|1992-10-05|TAKE BACK RETURN|REG AIR|nal pains nag slyly express asymptotes. c| +1227|794244|31790|5|33|44160.93|0.01|0.05|R|F|1992-07-02|1992-08-16|1992-07-22|COLLECT COD|RAIL|encies use furiou| +1227|845230|20263|6|24|28204.56|0.04|0.02|R|F|1992-07-30|1992-09-04|1992-08-28|COLLECT COD|RAIL|behind the blithely even deposit| +1227|774498|12044|7|16|25159.36|0.01|0.03|A|F|1992-09-23|1992-09-09|1992-10-21|NONE|FOB|riously after the final accoun| +1228|987334|24892|1|20|28425.80|0.03|0.01|A|F|1993-02-22|1993-01-03|1993-03-14|COLLECT COD|FOB|furiously pending accounts. ca| +1228|108935|8936|2|38|73869.34|0.06|0.03|A|F|1993-02-17|1992-12-04|1993-03-06|TAKE BACK RETURN|MAIL|the blithely unusual platelets. in| +1229|358174|8175|1|34|41893.44|0.06|0.07|A|F|1993-02-03|1993-01-24|1993-03-01|COLLECT COD|RAIL|es cajole above the careful| +1229|826092|38609|2|48|48866.40|0.02|0.08|A|F|1992-12-05|1993-01-14|1992-12-08|DELIVER IN PERSON|AIR|lyly final packages. furiously iro| +1229|123792|11299|3|2|3631.58|0.02|0.05|R|F|1993-02-28|1993-02-02|1993-03-09|COLLECT COD|FOB|epths nag furiously silent acc| +1229|562756|290|4|20|36374.60|0.09|0.06|R|F|1992-12-18|1992-12-29|1993-01-12|DELIVER IN PERSON|TRUCK|braids boost | +1229|227607|27608|5|18|27622.62|0.10|0.07|A|F|1993-01-06|1993-01-06|1993-01-16|COLLECT COD|FOB|uriously special foxes. regular| +1229|390439|2947|6|42|64235.64|0.10|0.05|R|F|1993-03-18|1993-01-11|1993-03-20|TAKE BACK RETURN|RAIL|ss packages-- final foxes haggle blithe| +1229|100943|25948|7|18|34990.92|0.05|0.00|A|F|1993-02-23|1992-12-20|1993-03-15|TAKE BACK RETURN|SHIP|ular decoys wake blithe| +1230|539306|26837|1|18|24215.04|0.04|0.06|A|F|1994-06-11|1994-05-30|1994-06-18|NONE|FOB|lites. perma| +1230|113542|26045|2|27|41999.58|0.09|0.00|A|F|1994-05-09|1994-07-18|1994-05-24|COLLECT COD|FOB| the enticingly regular requests. qu| +1230|290743|3249|3|48|83219.04|0.01|0.02|A|F|1994-07-12|1994-07-18|1994-07-29|COLLECT COD|REG AIR|regular gifts. stealthily bold courts wake | +1230|503287|3288|4|11|14192.86|0.01|0.05|A|F|1994-08-25|1994-07-05|1994-08-26|COLLECT COD|RAIL|odolites run| +1230|740060|15089|5|2|2200.06|0.02|0.00|A|F|1994-08-04|1994-07-22|1994-08-22|TAKE BACK RETURN|AIR|nts are at the slyly bold packages| +1230|187428|37429|6|44|66678.48|0.01|0.07|A|F|1994-06-27|1994-07-15|1994-07-07|TAKE BACK RETURN|AIR|carefully express ideas. foxes haggle s| +1231|214517|27022|1|47|67280.50|0.09|0.08|N|O|1998-03-10|1998-03-12|1998-03-20|NONE|REG AIR|express ideas boost finally carefully | +1231|383185|45693|2|30|38045.10|0.10|0.02|N|O|1998-02-08|1998-03-20|1998-02-28|COLLECT COD|SHIP|t slowly. qui| +1231|181543|44047|3|32|51985.28|0.07|0.05|N|O|1998-04-27|1998-04-21|1998-05-10|COLLECT COD|MAIL|gular ideas. carefully bold| +1231|192554|17561|4|13|21405.15|0.10|0.01|N|O|1998-05-18|1998-04-26|1998-05-28|NONE|FOB|y ironic instructions impre| +1231|247439|34952|5|27|37433.34|0.05|0.02|N|O|1998-04-16|1998-04-03|1998-05-02|NONE|REG AIR|ess instructions. | +1256|404584|29601|1|21|31259.76|0.03|0.03|A|F|1995-05-12|1995-05-01|1995-05-21|TAKE BACK RETURN|FOB|s. quickly regular accounts cajole fluff| +1256|838790|26339|2|17|29388.75|0.00|0.03|A|F|1995-03-13|1995-05-07|1995-03-31|COLLECT COD|AIR|are final,| +1256|528517|41028|3|33|51001.17|0.08|0.06|N|O|1995-06-19|1995-04-23|1995-07-04|DELIVER IN PERSON|RAIL|t the even requests cajole f| +1256|784095|21641|4|27|31834.62|0.07|0.04|N|O|1995-06-21|1995-05-08|1995-06-29|DELIVER IN PERSON|RAIL|y: carefully bold warthogs across the i| +1256|278818|16334|5|8|14374.40|0.04|0.01|A|F|1995-05-17|1995-04-12|1995-06-14|NONE|MAIL|ly regular, ironic deposits. blith| +1257|818671|43704|1|30|47688.90|0.05|0.08|N|O|1998-08-02|1998-07-01|1998-08-25|DELIVER IN PERSON|TRUCK|accounts above the regular excus| +1258|31171|18672|1|50|55108.50|0.03|0.00|A|F|1993-08-16|1993-10-03|1993-08-31|DELIVER IN PERSON|TRUCK| blithe packages wake packages. bravely e| +1258|880637|43155|2|35|56615.65|0.05|0.02|A|F|1993-07-16|1993-09-26|1993-08-03|DELIVER IN PERSON|SHIP|symptotes. packages | +1258|862033|24551|3|27|26864.73|0.02|0.02|A|F|1993-10-19|1993-09-26|1993-10-22|NONE|TRUCK| wake. foxes solve bravely slyly qu| +1258|184901|9908|4|9|17873.10|0.06|0.05|R|F|1993-09-17|1993-09-27|1993-09-28|DELIVER IN PERSON|REG AIR|final foxes sleep quickly blithely iro| +1258|620528|20529|5|42|60836.58|0.03|0.01|A|F|1993-08-06|1993-09-19|1993-08-30|COLLECT COD|RAIL|eposits use carefully furiously bold| +1258|200733|38246|6|13|21238.36|0.06|0.01|R|F|1993-08-01|1993-10-03|1993-08-24|TAKE BACK RETURN|REG AIR|fully fina| +1258|709961|47504|7|34|67011.62|0.06|0.01|R|F|1993-09-21|1993-09-15|1993-10-09|NONE|RAIL|bold packages according to the quickly| +1259|298213|35729|1|26|31491.20|0.07|0.02|N|O|1996-07-13|1996-05-04|1996-07-20|COLLECT COD|AIR|aggle blithely. unusual, final instructions| +1259|63748|13749|2|43|73604.82|0.05|0.00|N|O|1996-06-07|1996-05-21|1996-06-08|COLLECT COD|REG AIR|uffily special accounts above the bold, e| +1259|411991|11992|3|2|3805.94|0.02|0.07|N|O|1996-05-04|1996-05-27|1996-05-19|NONE|REG AIR| special packages. boldly b| +1259|317576|42589|4|21|33464.76|0.09|0.02|N|O|1996-07-06|1996-05-21|1996-07-11|NONE|TRUCK|kly regular instructions w| +1259|494286|6796|5|6|7681.56|0.05|0.06|N|O|1996-05-27|1996-05-02|1996-06-01|COLLECT COD|REG AIR|nal packag| +1260|96983|21986|1|22|43559.56|0.02|0.03|N|O|1997-08-27|1997-10-03|1997-09-10|TAKE BACK RETURN|SHIP|packages haggl| +1260|992369|4889|2|29|42378.28|0.08|0.08|N|O|1997-09-20|1997-11-11|1997-10-03|NONE|MAIL|accounts haggle carefully ab| +1260|744748|44749|3|49|87842.79|0.03|0.01|N|O|1997-10-12|1997-11-23|1997-11-06|TAKE BACK RETURN|MAIL|arefully ironic theodolites. fur| +1261|817314|29831|1|29|35706.83|0.04|0.02|A|F|1994-11-23|1994-12-29|1994-11-24|COLLECT COD|REG AIR|e fluffily furiously regula| +1261|588216|25750|2|22|28692.18|0.07|0.03|A|F|1994-12-09|1994-12-31|1994-12-13|COLLECT COD|MAIL|ically ironic| +1261|143144|18149|3|11|13058.54|0.04|0.08|R|F|1994-11-14|1994-11-27|1994-11-17|COLLECT COD|RAIL|furiously about the silent packa| +1261|805641|18158|4|28|43304.80|0.05|0.03|R|F|1994-10-26|1995-01-03|1994-11-14|NONE|SHIP|ously expres| +1262|913356|13357|1|4|5477.24|0.04|0.02|N|O|1997-10-20|1997-12-13|1997-10-30|DELIVER IN PERSON|MAIL|es haggle furiously regular deposits| +1262|772963|10509|2|20|40718.60|0.09|0.04|N|O|1997-12-01|1998-01-01|1997-12-14|DELIVER IN PERSON|SHIP| slyly according to the ideas; s| +1262|178778|3785|3|12|22281.24|0.09|0.06|N|O|1997-12-19|1997-12-14|1998-01-02|NONE|TRUCK|de of the pending platelets. pinto beans s| +1263|485286|10305|1|43|54664.18|0.01|0.04|A|F|1993-04-19|1993-04-01|1993-04-22|TAKE BACK RETURN|SHIP|to beans use ca| +1263|194695|44696|2|27|48321.63|0.01|0.07|A|F|1993-05-05|1993-03-07|1993-05-19|NONE|FOB|ickly ironic ideas. slyly even deposi| +1263|234376|34377|3|1|1310.36|0.01|0.07|R|F|1993-03-07|1993-04-09|1993-03-14|NONE|AIR|eodolites. ironic | +1288|995520|8040|1|10|16154.80|0.04|0.03|R|F|1993-04-19|1993-04-10|1993-05-08|TAKE BACK RETURN|SHIP|counts. carefully exp| +1288|691811|4325|2|39|70308.42|0.05|0.00|A|F|1993-03-29|1993-04-03|1993-04-18|NONE|REG AIR|ts. carefully re| +1288|259656|9657|3|3|4846.92|0.01|0.06|R|F|1993-02-27|1993-02-24|1993-03-04|NONE|RAIL|p after the accounts| +1288|38292|793|4|12|14763.48|0.07|0.04|A|F|1993-04-08|1993-04-10|1993-04-28|DELIVER IN PERSON|REG AIR|dle courts. carefully careful requ| +1288|564685|39708|5|48|83983.68|0.09|0.05|A|F|1993-04-02|1993-03-29|1993-05-01|DELIVER IN PERSON|TRUCK|furiously carefully unusual pint| +1288|648812|11325|6|18|31694.04|0.00|0.03|A|F|1993-05-04|1993-04-13|1993-05-23|COLLECT COD|RAIL|iously bold requests| +1289|484455|46965|1|14|20152.02|0.02|0.00|R|F|1993-08-08|1993-06-16|1993-08-18|NONE|RAIL|gular sauternes sl| +1289|229807|29808|2|40|69471.60|0.07|0.00|R|F|1993-06-17|1993-06-09|1993-07-10|TAKE BACK RETURN|AIR|ly multipliers. carefully final e| +1289|360556|35571|3|49|79210.46|0.03|0.01|R|F|1993-07-06|1993-05-26|1993-07-08|TAKE BACK RETURN|FOB|grouches should | +1289|857658|45210|4|42|67855.62|0.10|0.00|A|F|1993-04-25|1993-05-17|1993-05-06|NONE|REG AIR|ve the bold pinto | +1289|648633|48634|5|24|37958.40|0.06|0.04|R|F|1993-06-25|1993-05-15|1993-07-05|NONE|RAIL|lithely bold deposits. quickly ironic| +1289|561570|36593|6|49|79945.95|0.02|0.00|A|F|1993-04-20|1993-06-04|1993-05-15|COLLECT COD|AIR|boost doggedly special dependencie| +1290|499113|49114|1|27|30026.43|0.07|0.04|A|F|1993-12-08|1993-11-30|1994-01-06|COLLECT COD|RAIL| silent platelets t| +1290|580644|43156|2|47|81057.14|0.03|0.08|R|F|1993-11-06|1993-11-08|1993-11-07|NONE|MAIL|ns-- final, regular asymptotes| +1290|869459|31977|3|35|49994.35|0.08|0.00|A|F|1993-10-25|1993-12-28|1993-11-19|TAKE BACK RETURN|MAIL|y pending deposits boost. qui| +1290|985735|10774|4|3|5462.07|0.07|0.02|R|F|1993-10-22|1993-12-18|1993-11-20|TAKE BACK RETURN|TRUCK|carefully expr| +1291|153901|3902|1|27|52782.30|0.02|0.02|R|F|1992-11-28|1992-10-29|1992-12-16|DELIVER IN PERSON|FOB|yly express platelets haggle closely. furi| +1291|602855|15368|2|26|45703.32|0.00|0.08|A|F|1992-11-13|1992-10-05|1992-12-06|NONE|MAIL|s-- ruthless accounts dete| +1291|176981|39485|3|5|10289.90|0.04|0.08|A|F|1992-08-29|1992-11-13|1992-09-04|COLLECT COD|FOB|y regular ideas | +1291|507972|7973|4|18|35639.10|0.00|0.05|A|F|1992-12-03|1992-10-11|1992-12-25|COLLECT COD|TRUCK|ts about the carefully regular packages w| +1291|482445|32446|5|37|52814.54|0.08|0.00|A|F|1992-11-23|1992-10-30|1992-11-29|NONE|MAIL|. slyly unusual packages haggle boldly ab| +1292|410421|10422|1|43|57250.20|0.06|0.00|R|F|1992-05-19|1992-07-10|1992-06-02|COLLECT COD|FOB|nto beans detect. escapades sleep ca| +1292|932616|20171|2|30|49457.10|0.07|0.06|R|F|1992-06-27|1992-07-01|1992-07-19|COLLECT COD|REG AIR| nag carefully. quiet excus| +1293|700550|13065|1|28|43414.56|0.03|0.06|N|O|1997-06-18|1997-05-14|1997-07-04|TAKE BACK RETURN|FOB|ole up the re| +1293|142450|42451|2|20|29849.00|0.02|0.00|N|O|1997-04-19|1997-05-31|1997-05-18|TAKE BACK RETURN|REG AIR|ole unusual sauternes. ironic, regular pint| +1293|154071|29078|3|46|51753.22|0.03|0.04|N|O|1997-07-02|1997-06-17|1997-07-06|COLLECT COD|MAIL|out the carefully regular realms. reg| +1293|457938|7939|4|39|73940.49|0.07|0.02|N|O|1997-04-20|1997-05-26|1997-04-26|DELIVER IN PERSON|FOB| the final requests. unusual deposits | +1293|556709|31732|5|35|61798.80|0.00|0.01|N|O|1997-06-18|1997-07-01|1997-07-14|TAKE BACK RETURN|AIR|mptotes sleep according to the ruthless, i| +1294|532643|7664|1|4|6702.48|0.00|0.08|A|F|1992-12-23|1993-01-27|1992-12-27|DELIVER IN PERSON|RAIL|lly bold deposits sublate sly| +1294|130031|42534|2|50|53051.50|0.07|0.08|A|F|1993-01-23|1993-01-02|1993-01-31|NONE|AIR|slyly thin accounts affix accounts. care| +1294|427550|27551|3|49|72398.97|0.00|0.00|R|F|1992-12-23|1992-12-14|1993-01-03|NONE|SHIP|ly! unusual requests| +1294|817923|5472|4|43|79157.84|0.08|0.03|A|F|1992-12-03|1993-01-01|1992-12-05|COLLECT COD|SHIP| blithely after the packages. pendin| +1295|887948|12983|1|31|60012.90|0.03|0.06|A|F|1994-08-23|1994-10-14|1994-08-25|TAKE BACK RETURN|SHIP|ructions wake quickly. bli| +1295|728251|15794|2|2|2558.44|0.03|0.02|R|F|1994-10-02|1994-10-03|1994-11-01|NONE|RAIL|gular excuses wa| +1295|710187|35216|3|37|44294.55|0.04|0.03|A|F|1994-11-30|1994-10-12|1994-12-07|DELIVER IN PERSON|MAIL|nt foxes boost across the care| +1320|775967|38483|1|44|89888.92|0.00|0.01|N|O|1997-02-11|1997-04-15|1997-03-11|TAKE BACK RETURN|AIR|yly ironic pains! ideas use slyly reg| +1320|675295|37809|2|34|43188.84|0.09|0.01|N|O|1997-02-06|1997-04-21|1997-02-10|TAKE BACK RETURN|SHIP|ep slyly among the| +1320|668584|18585|3|32|49681.60|0.03|0.07|N|O|1997-03-06|1997-03-11|1997-03-24|COLLECT COD|RAIL|nal accounts. regular grouches across | +1320|875819|38337|4|36|64611.72|0.09|0.06|N|O|1997-05-10|1997-03-30|1997-05-11|DELIVER IN PERSON|RAIL|y bold pinto beans. carefully express id| +1320|873794|36312|5|42|74245.50|0.06|0.03|N|O|1997-03-13|1997-03-09|1997-04-10|DELIVER IN PERSON|TRUCK|special, even | +1320|842510|42511|6|18|26144.46|0.07|0.04|N|O|1997-03-21|1997-03-21|1997-03-25|TAKE BACK RETURN|AIR|e furiously after the| +1320|51394|26397|7|11|14799.29|0.00|0.04|N|O|1997-05-08|1997-04-29|1997-05-14|COLLECT COD|FOB|eposits ca| +1321|762973|25489|1|3|6107.82|0.01|0.04|N|O|1998-06-11|1998-06-09|1998-06-13|TAKE BACK RETURN|SHIP|nt excuses against the quickly pending p| +1321|274082|24083|2|35|36962.45|0.01|0.02|N|O|1998-05-11|1998-06-09|1998-05-28|COLLECT COD|RAIL|. slyly final escap| +1321|487151|24679|3|38|43248.94|0.04|0.00|N|O|1998-06-21|1998-05-16|1998-06-29|TAKE BACK RETURN|RAIL| carefully ironic requests sleep| +1322|406145|31162|1|47|49402.64|0.07|0.02|N|O|1995-08-10|1995-10-19|1995-09-08|TAKE BACK RETURN|SHIP|thely silent ideas are. quickly darin| +1322|75127|25128|2|32|35267.84|0.07|0.03|N|O|1995-10-21|1995-10-19|1995-10-27|DELIVER IN PERSON|MAIL| the quickly u| +1322|655710|43250|3|44|73289.92|0.07|0.04|N|O|1995-09-09|1995-10-30|1995-09-22|COLLECT COD|SHIP|xcuses. bold requests poach quickly. flu| +1322|505690|18201|4|3|5087.01|0.05|0.07|N|O|1995-11-29|1995-10-14|1995-12-05|COLLECT COD|AIR|usly final accounts| +1322|116065|16066|5|6|6486.36|0.03|0.02|N|O|1995-08-24|1995-10-23|1995-09-06|COLLECT COD|REG AIR|lithely even foxes. furiously re| +1322|690325|2839|6|11|14468.19|0.04|0.02|N|O|1995-11-07|1995-10-05|1995-11-08|NONE|MAIL|g the ironic reques| +1322|285149|10160|7|34|38560.42|0.02|0.04|N|O|1995-10-31|1995-10-21|1995-11-29|NONE|TRUCK|gouts are blithely ins| +1323|485606|23134|1|21|33423.18|0.03|0.05|N|O|1996-02-06|1996-03-31|1996-02-11|NONE|REG AIR|ag fluffily along the furio| +1323|577977|3000|2|41|84252.95|0.01|0.03|N|O|1996-03-19|1996-03-25|1996-03-24|DELIVER IN PERSON|RAIL|affix quickly after the | +1323|55034|42538|3|25|24725.75|0.03|0.04|N|O|1996-04-07|1996-04-05|1996-04-22|TAKE BACK RETURN|SHIP|y final deposits across the quickly pend| +1323|956266|31305|4|38|50244.36|0.08|0.03|N|O|1996-02-14|1996-04-20|1996-03-05|DELIVER IN PERSON|AIR|e of the sometimes bold pinto| +1323|955821|5822|5|7|13137.46|0.09|0.01|N|O|1996-04-19|1996-03-11|1996-05-18|DELIVER IN PERSON|FOB| furiously express, s| +1324|117292|4799|1|44|57608.76|0.07|0.07|R|F|1992-03-28|1992-03-07|1992-04-05|TAKE BACK RETURN|SHIP|e requests. decoys are | +1324|319797|7316|2|43|78121.54|0.00|0.01|A|F|1992-02-17|1992-04-28|1992-02-21|TAKE BACK RETURN|RAIL|special requests about the| +1324|820151|20152|3|30|32133.30|0.01|0.06|A|F|1992-02-02|1992-03-07|1992-02-20|DELIVER IN PERSON|AIR|inal dinos sleep. even notornis detect| +1324|265143|2659|4|46|50973.98|0.01|0.07|A|F|1992-04-12|1992-03-10|1992-05-10|DELIVER IN PERSON|TRUCK| excuses solve against the furiously furio| +1324|250163|12669|5|49|54544.35|0.06|0.01|A|F|1992-04-11|1992-03-03|1992-04-21|DELIVER IN PERSON|AIR|ecial Tire| +1324|486759|11778|6|11|19203.03|0.09|0.05|A|F|1992-03-08|1992-04-02|1992-03-28|COLLECT COD|REG AIR| sauternes. accounts according| +1325|530388|30389|1|18|25530.48|0.05|0.02|A|F|1992-04-30|1992-06-23|1992-05-21|NONE|TRUCK| was quickly! fl| +1325|227395|2404|2|14|18513.32|0.06|0.04|R|F|1992-05-09|1992-06-12|1992-05-17|NONE|RAIL|r fluffily.| +1326|634298|9323|1|45|55451.70|0.07|0.05|A|F|1995-05-09|1995-05-21|1995-05-14|DELIVER IN PERSON|FOB|totes hagg| +1326|636341|23878|2|18|22991.58|0.06|0.01|R|F|1995-05-09|1995-06-12|1995-05-13|NONE|RAIL|al requests are fluffy, unusual instr| +1326|974505|37025|3|44|69496.24|0.09|0.08|N|O|1995-07-28|1995-05-29|1995-08-03|DELIVER IN PERSON|TRUCK|ns sleep. slyly e| +1326|493832|31360|4|34|62077.54|0.02|0.08|N|O|1995-06-28|1995-06-15|1995-07-25|DELIVER IN PERSON|FOB|ffily ironic platelets. furiousl| +1326|822541|10090|5|14|20489.00|0.03|0.04|R|F|1995-04-27|1995-07-03|1995-05-08|TAKE BACK RETURN|FOB| regular ideas. carefully | +1326|441755|41756|6|9|15270.57|0.03|0.06|R|F|1995-05-15|1995-06-29|1995-05-27|COLLECT COD|FOB|inal deposits. bold theodolites hag| +1326|564832|2366|7|47|89150.07|0.05|0.02|N|O|1995-07-26|1995-05-20|1995-08-08|DELIVER IN PERSON|AIR|after the instr| +1327|119010|44015|1|3|3087.03|0.01|0.02|R|F|1994-08-20|1994-07-01|1994-09-13|NONE|MAIL|y pending instructions. silent, i| +1327|184472|21982|2|38|59145.86|0.01|0.04|R|F|1994-08-22|1994-06-21|1994-09-05|TAKE BACK RETURN|REG AIR|ly regular| +1327|414273|26782|3|12|14247.00|0.05|0.04|A|F|1994-06-14|1994-08-06|1994-07-13|TAKE BACK RETURN|AIR|ly ironic id| +1352|237832|337|1|22|38936.04|0.04|0.03|N|O|1997-05-11|1997-05-21|1997-06-06|NONE|REG AIR|sits. quickly even | +1352|234483|46988|2|8|11339.76|0.03|0.06|N|O|1997-03-09|1997-05-02|1997-03-22|NONE|RAIL|ckages play blithely bold depend| +1352|944394|31949|3|15|21575.25|0.03|0.06|N|O|1997-06-04|1997-04-05|1997-06-10|TAKE BACK RETURN|AIR|thely final excuses.| +1352|423851|23852|4|38|67443.54|0.06|0.07|N|O|1997-04-03|1997-05-15|1997-04-27|DELIVER IN PERSON|AIR|es; regular, special | +1352|661893|24407|5|34|63065.24|0.09|0.06|N|O|1997-04-08|1997-04-06|1997-05-07|NONE|TRUCK|packages cajole about the quic| +1352|423101|48118|6|45|46083.60|0.06|0.00|N|O|1997-03-25|1997-05-07|1997-04-08|COLLECT COD|SHIP|quests wake furiously r| +1352|57126|7127|7|3|3249.36|0.09|0.08|N|O|1997-05-01|1997-05-21|1997-05-25|TAKE BACK RETURN|REG AIR|xes. even gifts boost fluffily. fu| +1353|106870|19373|1|5|9384.35|0.00|0.06|N|O|1997-12-06|1997-12-11|1997-12-12|COLLECT COD|MAIL|s. carefully final sauter| +1353|149859|12362|2|11|20997.35|0.03|0.05|N|O|1998-01-06|1997-11-17|1998-01-17|DELIVER IN PERSON|SHIP| excuses boost carefully across the regula| +1353|678250|15790|3|1|1228.22|0.05|0.03|N|O|1998-01-17|1997-11-25|1998-02-08|DELIVER IN PERSON|SHIP|tions-- carefull| +1353|342878|42879|4|8|15366.88|0.02|0.07|N|O|1997-11-23|1997-11-24|1997-12-02|NONE|SHIP|press accounts| +1353|741750|4265|5|5|8958.60|0.10|0.07|N|O|1997-12-18|1997-12-30|1998-01-16|DELIVER IN PERSON|FOB|silent packages use furiously regular t| +1354|83473|20977|1|43|62628.21|0.07|0.03|A|F|1992-05-05|1992-05-31|1992-05-17|COLLECT COD|FOB|atelets acco| +1354|914883|14884|2|18|34161.12|0.02|0.03|A|F|1992-04-07|1992-06-06|1992-04-29|TAKE BACK RETURN|REG AIR|uriously ironically final accounts. ex| +1354|429069|41578|3|46|45909.84|0.03|0.01|R|F|1992-06-17|1992-04-24|1992-07-13|COLLECT COD|SHIP|urts cajole quickly furiously pending| +1354|357433|44955|4|14|20865.88|0.09|0.04|R|F|1992-07-12|1992-06-02|1992-08-07|NONE|TRUCK|. accounts nag fluffily| +1355|34174|46675|1|31|34353.27|0.10|0.01|N|O|1996-04-28|1996-05-08|1996-05-24|DELIVER IN PERSON|REG AIR|its boost furiously. ca| +1355|358465|20973|2|43|65508.35|0.06|0.03|N|O|1996-06-10|1996-05-08|1996-06-11|COLLECT COD|REG AIR|l sentiments | +1355|712674|217|3|19|32046.16|0.01|0.04|N|O|1996-07-27|1996-05-18|1996-08-25|TAKE BACK RETURN|MAIL| dependencie| +1356|523947|23948|1|23|45331.16|0.05|0.06|R|F|1992-05-18|1992-05-11|1992-06-01|DELIVER IN PERSON|TRUCK|hely pending ideas use ironic ideas| +1356|974511|49550|2|16|25367.52|0.04|0.06|R|F|1992-04-19|1992-06-10|1992-05-19|NONE|MAIL|ar pinto beans. regularly even | +1356|592272|4784|3|50|68212.50|0.10|0.02|A|F|1992-04-22|1992-06-17|1992-05-19|NONE|TRUCK|ironic, even platelets boost| +1356|304840|29853|4|22|40586.26|0.10|0.06|A|F|1992-05-31|1992-05-06|1992-06-28|DELIVER IN PERSON|FOB|ely across the slyly| +1356|445497|33022|5|20|28849.40|0.09|0.03|A|F|1992-07-03|1992-06-08|1992-07-28|DELIVER IN PERSON|TRUCK|se furiously. slyly final accounts haggle f| +1356|466191|28701|6|36|41658.12|0.01|0.00|A|F|1992-06-01|1992-04-30|1992-06-08|TAKE BACK RETURN|FOB|bout the quickly silent req| +1356|265322|27828|7|33|42481.23|0.02|0.01|A|F|1992-04-20|1992-05-01|1992-04-30|NONE|MAIL|uctions nag q| +1357|253118|3119|1|40|42844.00|0.07|0.06|N|O|1998-07-29|1998-09-06|1998-08-13|NONE|REG AIR|l somas integrate fluffily al| +1357|141456|41457|2|1|1497.45|0.01|0.04|N|O|1998-09-18|1998-10-07|1998-10-01|DELIVER IN PERSON|MAIL|es: even packages sleep | +1357|438104|13121|3|25|26052.00|0.02|0.03|N|O|1998-09-13|1998-10-14|1998-09-14|TAKE BACK RETURN|RAIL|s theodolites sleep furiously. permanen| +1358|116606|41611|1|12|19471.20|0.04|0.07|N|O|1995-11-26|1995-12-31|1995-11-27|DELIVER IN PERSON|TRUCK|ly bold deposits wake quickly| +1358|792400|4916|2|43|64171.91|0.01|0.00|N|O|1995-12-28|1996-01-08|1996-01-25|TAKE BACK RETURN|TRUCK|y blithely pending d| +1358|864297|14298|3|37|46666.25|0.08|0.03|N|O|1995-12-25|1996-01-05|1996-01-02|NONE|AIR|ts nag around the blithely re| +1358|230925|30926|4|45|83515.95|0.02|0.08|N|O|1995-10-24|1995-12-11|1995-11-17|DELIVER IN PERSON|TRUCK|xcuses? ironic, unusual e| +1359|891523|29075|1|15|22717.20|0.06|0.00|R|F|1994-11-02|1994-11-16|1994-11-23|COLLECT COD|FOB|out the express, silent account| +1359|816837|16838|2|2|3507.58|0.06|0.04|R|F|1994-12-17|1994-09-22|1995-01-10|NONE|SHIP|mptotes. final pinto beans cajole furiou| +1359|570054|32566|3|25|28100.75|0.00|0.03|R|F|1994-11-16|1994-10-11|1994-11-29|DELIVER IN PERSON|REG AIR| along the regular accounts. blith| +1359|889964|2482|4|10|19539.20|0.10|0.06|R|F|1994-11-26|1994-11-08|1994-11-28|TAKE BACK RETURN|AIR|l, final sauternes are furiously.| +1359|619420|31933|5|3|4018.17|0.03|0.03|A|F|1994-12-17|1994-11-17|1995-01-01|COLLECT COD|RAIL| regular, regular packages. flu| +1359|580282|5305|6|12|16347.12|0.04|0.04|R|F|1994-11-01|1994-09-23|1994-11-16|TAKE BACK RETURN|RAIL|ole furiously about t| +1384|649279|24304|1|23|28249.52|0.00|0.03|R|F|1995-04-10|1995-04-29|1995-04-28|TAKE BACK RETURN|REG AIR|onic platelets wake above the| +1384|421777|21778|2|14|23782.50|0.06|0.00|N|O|1995-07-09|1995-04-25|1995-08-01|DELIVER IN PERSON|MAIL|. blithely si| +1384|797343|9859|3|43|61933.33|0.00|0.01|A|F|1995-04-06|1995-04-26|1995-04-10|COLLECT COD|AIR|ly special accounts about the f| +1384|935219|22774|4|38|47658.46|0.00|0.02|A|F|1995-05-18|1995-05-09|1995-05-21|NONE|REG AIR|usly. regular, ironic accounts| +1384|225656|665|5|12|18979.68|0.03|0.00|A|F|1995-05-19|1995-04-17|1995-06-03|COLLECT COD|REG AIR|ts are carefully ironic accoun| +1384|597083|9595|6|29|34221.74|0.05|0.02|R|F|1995-04-26|1995-05-14|1995-05-04|COLLECT COD|SHIP|sly regular requests. furiously final plat| +1385|367118|29626|1|28|33182.80|0.00|0.08|N|O|1996-10-12|1996-12-04|1996-10-22|DELIVER IN PERSON|AIR|areful dependencies cajole slyly final e| +1385|150618|619|2|20|33372.20|0.10|0.07|N|O|1996-10-04|1996-11-18|1996-10-08|COLLECT COD|RAIL|dolites. special,| +1386|229614|29615|1|22|33959.20|0.08|0.07|A|F|1993-12-05|1993-11-19|1994-01-03|COLLECT COD|TRUCK|nag carefully silent pinto| +1386|109772|9773|2|31|55234.87|0.01|0.05|R|F|1993-12-14|1993-10-15|1993-12-30|COLLECT COD|MAIL|ress deposits are quickly| +1386|927361|39880|3|34|47202.88|0.00|0.06|R|F|1993-09-14|1993-11-03|1993-10-01|DELIVER IN PERSON|REG AIR|ending accounts. fluffily bold deposit| +1387|987719|239|1|40|72266.80|0.00|0.06|N|O|1997-12-12|1997-10-23|1998-01-02|TAKE BACK RETURN|SHIP| slyly slyly bold accounts. furiously fin| +1387|584066|9089|2|23|26450.92|0.06|0.06|N|O|1997-12-28|1997-11-03|1998-01-18|COLLECT COD|REG AIR|ans affix even, fi| +1387|392717|30239|3|5|9048.50|0.02|0.06|N|O|1997-09-10|1997-10-25|1997-09-16|COLLECT COD|MAIL|ular pinto beans among the final| +1388|627310|2335|1|27|33406.56|0.05|0.00|N|O|1995-08-05|1995-08-02|1995-08-28|DELIVER IN PERSON|SHIP|y slyly regular fr| +1388|191864|16871|2|19|37161.34|0.05|0.03|R|F|1995-05-13|1995-07-06|1995-05-18|COLLECT COD|MAIL| theodolites. finally slow courts across th| +1388|646568|21593|3|42|63610.26|0.07|0.01|N|O|1995-08-24|1995-07-02|1995-09-23|TAKE BACK RETURN|MAIL|wake against the ironi| +1388|860827|48379|4|9|16090.02|0.08|0.05|N|O|1995-08-02|1995-07-25|1995-08-03|DELIVER IN PERSON|RAIL| special accounts. slyly unusual | +1389|705807|18322|1|41|74323.57|0.10|0.06|N|O|1997-06-01|1997-07-13|1997-06-16|COLLECT COD|RAIL|ost furiously regular pinto beans. qu| +1389|490373|27901|2|8|10906.80|0.06|0.00|N|O|1997-08-06|1997-08-02|1997-09-05|TAKE BACK RETURN|MAIL| fluffily ironi| +1389|686298|11325|3|44|56507.44|0.09|0.01|N|O|1997-06-21|1997-07-26|1997-07-13|COLLECT COD|TRUCK|sly regular packages. slyly regular i| +1389|603905|41442|4|44|79590.28|0.06|0.08|N|O|1997-08-17|1997-08-07|1997-08-31|DELIVER IN PERSON|AIR|arefully re| +1389|819026|19027|5|45|42524.10|0.07|0.01|N|O|1997-05-14|1997-06-13|1997-05-28|NONE|TRUCK|sleep. care| +1389|359249|34264|6|29|37938.67|0.05|0.08|N|O|1997-07-27|1997-06-16|1997-08-23|TAKE BACK RETURN|FOB|leep furiously ironic requests. final excus| +1389|887631|37632|7|16|25897.44|0.10|0.08|N|O|1997-07-26|1997-07-10|1997-08-16|NONE|FOB|lets above the theod| +1390|400513|38038|1|25|35337.25|0.04|0.07|R|F|1992-06-18|1992-06-18|1992-06-23|COLLECT COD|RAIL|jole ironic, bold packages. unusual, bo| +1390|413211|13212|2|26|29228.94|0.02|0.00|R|F|1992-04-23|1992-05-30|1992-04-27|COLLECT COD|SHIP|final dependenci| +1391|950204|37762|1|24|30099.84|0.07|0.01|N|O|1997-06-24|1997-08-26|1997-07-09|DELIVER IN PERSON|RAIL|e the carefully bold in| +1391|74682|24683|2|45|74550.60|0.08|0.06|N|O|1997-06-24|1997-08-25|1997-07-07|COLLECT COD|TRUCK|ns nag quickly carefully unusual | +1391|164450|14451|3|47|71179.15|0.01|0.06|N|O|1997-06-17|1997-08-05|1997-07-08|COLLECT COD|SHIP| slyly final accounts; final, spe| +1391|902559|27596|4|20|31230.20|0.02|0.00|N|O|1997-06-29|1997-08-18|1997-07-27|COLLECT COD|SHIP|ending instructions wa| +1391|302555|2556|5|25|38938.50|0.10|0.00|N|O|1997-06-18|1997-08-15|1997-06-20|NONE|REG AIR|ar instructions nag slyly pending, bli| +1391|39750|14751|6|5|8448.75|0.06|0.02|N|O|1997-08-16|1997-07-06|1997-08-20|DELIVER IN PERSON|SHIP|ly even, even pinto beans. slyly | +1391|75308|37810|7|36|46198.80|0.04|0.05|N|O|1997-06-22|1997-07-11|1997-06-28|NONE|MAIL|ending grouches. regular requests nag enti| +1416|693718|6232|1|2|3423.36|0.01|0.01|A|F|1994-08-05|1994-07-27|1994-08-14|DELIVER IN PERSON|SHIP|eep furiousl| +1417|45370|45371|1|16|21045.92|0.03|0.04|N|O|1997-06-29|1997-05-13|1997-07-15|NONE|REG AIR|al ideas acc| +1417|517898|17899|2|10|19158.70|0.01|0.05|N|O|1997-05-05|1997-04-30|1997-05-23|COLLECT COD|TRUCK|he quickly even ins| +1417|305396|42915|3|17|23823.46|0.10|0.08|N|O|1997-03-24|1997-05-07|1997-03-26|TAKE BACK RETURN|SHIP| special accounts wake| +1417|774686|49717|4|15|26409.75|0.03|0.03|N|O|1997-07-18|1997-05-21|1997-08-09|TAKE BACK RETURN|FOB|to beans along the regular, b| +1417|140414|40415|5|33|47995.53|0.01|0.08|N|O|1997-05-25|1997-05-09|1997-06-18|COLLECT COD|RAIL|l requests.| +1417|921485|46522|6|12|18077.28|0.01|0.08|N|O|1997-05-31|1997-05-18|1997-06-25|DELIVER IN PERSON|REG AIR|e furiously regular pa| +1417|383373|8388|7|22|32039.92|0.06|0.08|N|O|1997-04-26|1997-04-26|1997-05-15|NONE|FOB|al instructions after the furiously regu| +1418|343796|18809|1|40|73591.20|0.04|0.07|A|F|1992-06-29|1992-07-22|1992-07-03|COLLECT COD|MAIL| notornis sleep carefully e| +1418|167391|29895|2|5|7291.95|0.08|0.00|A|F|1992-09-03|1992-08-09|1992-09-23|TAKE BACK RETURN|SHIP|sts. carefully unusual depo| +1418|333477|20996|3|22|33230.12|0.04|0.04|A|F|1992-09-04|1992-08-27|1992-09-22|TAKE BACK RETURN|SHIP|efully final theodolites integr| +1418|737889|25432|4|21|40463.85|0.04|0.05|A|F|1992-07-01|1992-08-04|1992-07-13|COLLECT COD|REG AIR|counts grow | +1419|496233|33761|1|37|45480.77|0.01|0.08|R|F|1993-09-23|1993-09-13|1993-10-03|NONE|TRUCK|ccounts? slyly silent a| +1419|176170|1177|2|35|43615.95|0.01|0.00|R|F|1993-08-16|1993-08-12|1993-08-19|TAKE BACK RETURN|FOB|lithely final requests cajole qui| +1419|878115|40633|3|35|38257.45|0.05|0.06|A|F|1993-07-23|1993-08-02|1993-07-27|TAKE BACK RETURN|FOB|endencies h| +1420|940850|40851|1|23|43488.63|0.04|0.05|A|F|1995-02-26|1995-02-11|1995-03-07|DELIVER IN PERSON|RAIL|ests. pinto beans according to the qu| +1420|854021|4022|2|47|45824.06|0.06|0.07|A|F|1995-04-11|1995-02-27|1995-04-12|TAKE BACK RETURN|AIR|. closely regular accounts integrate car| +1420|521237|33748|3|49|61652.29|0.09|0.03|R|F|1995-01-12|1995-03-29|1995-01-23|NONE|TRUCK|e across th| +1420|428008|40517|4|27|25271.46|0.09|0.01|A|F|1995-02-19|1995-03-04|1995-03-18|TAKE BACK RETURN|TRUCK|s. even, silent accounts after | +1420|518100|30611|5|19|21243.52|0.01|0.05|A|F|1995-01-29|1995-03-23|1995-02-16|NONE|RAIL| requests after the| +1420|704082|29111|6|38|41269.90|0.01|0.00|A|F|1995-03-10|1995-02-03|1995-03-18|TAKE BACK RETURN|SHIP|es sleep blithely. furiously iron| +1420|506103|18614|7|36|39926.88|0.07|0.04|R|F|1995-02-03|1995-02-25|1995-02-17|TAKE BACK RETURN|AIR|use above the furiously express deco| +1421|63235|25737|1|34|40739.82|0.03|0.00|N|O|1997-11-24|1997-10-06|1997-11-28|COLLECT COD|TRUCK|ly regular T| +1421|786424|36425|2|5|7551.95|0.07|0.02|N|O|1997-11-10|1997-11-29|1997-11-11|NONE|REG AIR|usly along the furiously ironic requests.| +1421|416659|29168|3|39|61449.57|0.05|0.08|N|O|1997-12-14|1997-10-10|1998-01-08|DELIVER IN PERSON|SHIP|e blithely ironic platelets d| +1421|779010|4041|4|38|41381.24|0.09|0.06|N|O|1997-11-30|1997-10-28|1997-12-30|NONE|AIR|es was furiously. furiously bold ins| +1421|809473|21990|5|44|60826.92|0.08|0.05|N|O|1997-11-08|1997-11-14|1997-12-02|DELIVER IN PERSON|SHIP|h silently alo| +1421|804289|4290|6|6|7159.44|0.09|0.08|N|O|1998-01-01|1997-11-26|1998-01-03|TAKE BACK RETURN|AIR|s use blith| +1422|368126|43141|1|29|34629.19|0.01|0.02|A|F|1994-11-26|1994-10-29|1994-12-06|COLLECT COD|SHIP|usly slyly pending foxes. quickly special r| +1423|112050|37055|1|39|41419.95|0.00|0.02|N|O|1997-08-04|1997-06-23|1997-08-27|DELIVER IN PERSON|SHIP|y unusual, pending instruction| +1423|219775|44784|2|50|84738.00|0.08|0.00|N|O|1997-04-16|1997-06-19|1997-04-18|COLLECT COD|TRUCK| special th| +1423|747363|9878|3|9|12692.97|0.05|0.03|N|O|1997-04-28|1997-06-15|1997-05-26|NONE|TRUCK|pendencies abo| +1423|917757|5312|4|7|12422.97|0.09|0.07|N|O|1997-05-28|1997-06-18|1997-06-02|DELIVER IN PERSON|SHIP|sly final theodolites detect blithely exp| +1423|730775|30776|5|38|68618.12|0.06|0.06|N|O|1997-06-26|1997-05-24|1997-06-28|TAKE BACK RETURN|REG AIR|furiously above the slyly silent accounts| +1423|126080|1085|6|22|24333.76|0.00|0.06|N|O|1997-07-16|1997-07-03|1997-07-17|NONE|MAIL|sleep carefully against th| +1448|800737|38286|1|16|26203.04|0.05|0.07|R|F|1994-04-07|1994-03-06|1994-04-14|NONE|RAIL|; slyly ironic requests wake carefully| +1448|984122|34123|2|23|27739.84|0.01|0.03|R|F|1994-05-06|1994-04-14|1994-05-29|COLLECT COD|TRUCK| quickly. slyly bold packages about the | +1448|123986|23987|3|33|66329.34|0.05|0.00|R|F|1994-03-22|1994-02-21|1994-04-12|TAKE BACK RETURN|RAIL|accounts wake along the never regular| +1448|828661|41178|4|13|20665.06|0.07|0.01|A|F|1994-04-22|1994-03-14|1994-05-15|TAKE BACK RETURN|TRUCK|ndencies. | +1448|288911|38912|5|41|77895.90|0.01|0.02|A|F|1994-03-21|1994-03-14|1994-03-31|COLLECT COD|FOB|uests wake carefully. sometimes ironic| +1448|713364|907|6|10|13773.30|0.01|0.02|R|F|1994-03-24|1994-02-24|1994-04-19|DELIVER IN PERSON|SHIP|ts after the ironic accounts wake quickly | +1448|507744|20255|7|10|17517.20|0.01|0.02|R|F|1994-03-15|1994-04-12|1994-04-01|NONE|TRUCK|ding courts cajole | +1449|643642|6155|1|50|79280.50|0.03|0.02|N|O|1998-06-25|1998-06-20|1998-06-28|COLLECT COD|TRUCK|ly among the ironical| +1449|687201|24741|2|21|24951.57|0.05|0.05|N|O|1998-07-19|1998-06-21|1998-07-28|TAKE BACK RETURN|RAIL|quickly express deposits do wake f| +1449|773866|36382|3|37|71773.71|0.02|0.06|N|O|1998-05-07|1998-06-06|1998-05-26|COLLECT COD|REG AIR|ronically regular | +1449|355313|30328|4|33|45153.90|0.00|0.00|N|O|1998-05-25|1998-07-30|1998-06-18|COLLECT COD|RAIL|riously unusual dependencies | +1449|733734|33735|5|15|26515.50|0.05|0.06|N|O|1998-06-21|1998-07-30|1998-07-16|COLLECT COD|MAIL|lyly slyly fin| +1449|859440|9441|6|10|13994.00|0.10|0.04|N|O|1998-05-09|1998-07-02|1998-05-12|TAKE BACK RETURN|FOB|ly regular requests boost | +1449|595530|33064|7|8|13004.08|0.04|0.02|N|O|1998-08-19|1998-07-18|1998-08-24|DELIVER IN PERSON|AIR|carefully bo| +1450|69499|19500|1|14|20558.86|0.10|0.02|N|O|1997-03-28|1997-03-27|1997-04-08|NONE|TRUCK|gainst the | +1450|67291|17292|2|28|35232.12|0.10|0.01|N|O|1997-04-19|1997-02-28|1997-05-15|NONE|SHIP|al foxes. foxes sleep carefu| +1450|950406|12926|3|33|48059.88|0.00|0.01|N|O|1997-02-25|1997-03-17|1997-02-26|TAKE BACK RETURN|FOB| foxes. bold, final packages h| +1451|838566|13599|1|11|16549.72|0.04|0.07|N|O|1997-12-19|1998-02-21|1997-12-20|NONE|FOB|odolites at the regular, expres| +1451|770295|32811|2|32|43688.32|0.01|0.05|N|O|1997-12-22|1998-02-20|1998-01-08|COLLECT COD|TRUCK|hely unusu| +1451|338229|736|3|49|62093.29|0.04|0.05|N|O|1997-12-16|1998-03-08|1997-12-27|DELIVER IN PERSON|AIR|s. unusual, pending escapades h| +1451|603100|28125|4|38|38116.66|0.05|0.07|N|O|1998-03-04|1998-02-22|1998-03-28|COLLECT COD|TRUCK|al dependencies sleep.| +1451|286999|37000|5|17|33761.66|0.07|0.02|N|O|1998-01-05|1998-02-23|1998-02-02|COLLECT COD|REG AIR| fluffily? b| +1452|562913|37936|1|30|59276.70|0.05|0.03|R|F|1992-09-03|1992-09-16|1992-09-23|DELIVER IN PERSON|RAIL|egular requests. | +1452|876708|14260|2|24|40431.84|0.01|0.06|R|F|1992-11-29|1992-10-08|1992-12-21|DELIVER IN PERSON|RAIL|ly ironic foxes. regu| +1452|827121|27122|3|44|46115.52|0.04|0.07|A|F|1992-10-01|1992-10-26|1992-10-16|DELIVER IN PERSON|FOB|s. final, final idea| +1452|412821|25330|4|10|17338.00|0.06|0.08|R|F|1992-10-30|1992-10-04|1992-11-26|NONE|AIR|ar accounts according to the deposits wak| +1453|353162|3163|1|1|1215.15|0.10|0.08|N|O|1996-10-09|1996-10-29|1996-11-06|NONE|TRUCK|foxes serve furiously about the | +1454|298814|48815|1|32|58009.60|0.08|0.08|R|F|1993-03-11|1993-01-18|1993-03-12|TAKE BACK RETURN|TRUCK| deposits will have to haggle deposits. | +1454|155515|30522|2|36|56538.36|0.05|0.06|A|F|1993-02-26|1993-02-18|1993-03-15|TAKE BACK RETURN|TRUCK| hang. slyly thin pi| +1455|106674|31679|1|6|10084.02|0.05|0.03|R|F|1994-09-01|1994-08-29|1994-09-05|DELIVER IN PERSON|TRUCK|ly blithely| +1455|853588|3589|2|17|26206.18|0.00|0.01|A|F|1994-10-01|1994-09-13|1994-10-02|COLLECT COD|REG AIR| instructions. bold, unusual | +1455|250329|12835|3|37|47334.47|0.00|0.05|R|F|1994-08-14|1994-08-24|1994-09-12|DELIVER IN PERSON|FOB|haggle blithely a| +1455|271302|33808|4|11|14006.19|0.10|0.08|R|F|1994-08-25|1994-09-09|1994-09-11|COLLECT COD|MAIL|he carefully even instructions. b| +1455|772437|34953|5|34|51319.60|0.10|0.05|R|F|1994-10-10|1994-09-18|1994-10-11|NONE|REG AIR|ross the quickly bold d| +1455|347972|47973|6|36|72718.56|0.01|0.06|A|F|1994-10-09|1994-09-07|1994-10-19|NONE|RAIL|ts. blithely final pinto | +1480|67238|4742|1|38|45798.74|0.05|0.03|R|F|1992-12-25|1992-10-26|1993-01-20|DELIVER IN PERSON|TRUCK|quests. accounts against the final requests| +1481|125523|13030|1|35|54198.20|0.06|0.08|N|O|1998-06-23|1998-07-01|1998-07-19|NONE|REG AIR|ithely final instructions wake | +1481|654325|41865|2|3|3837.87|0.09|0.01|N|O|1998-05-22|1998-05-25|1998-06-14|NONE|REG AIR|uriously even reque| +1481|233746|46251|3|24|40313.52|0.04|0.05|N|O|1998-07-10|1998-05-28|1998-08-09|COLLECT COD|RAIL| final pinto beans ha| +1482|868655|18656|1|44|71438.84|0.05|0.05|N|O|1997-10-29|1997-12-03|1997-11-01|DELIVER IN PERSON|FOB|-- carefully| +1482|477382|27383|2|16|21749.76|0.02|0.00|N|O|1998-02-01|1997-11-23|1998-02-22|COLLECT COD|AIR|lar requests. flu| +1482|354717|29732|3|36|63781.20|0.09|0.03|N|O|1997-10-19|1998-01-05|1997-10-21|DELIVER IN PERSON|SHIP|nstructions. final de| +1482|714173|1716|4|24|28491.36|0.09|0.02|N|O|1997-11-26|1997-12-16|1997-12-06|NONE|MAIL|etect carefully. fluffily ru| +1482|105387|42894|5|23|32024.74|0.00|0.02|N|O|1997-10-28|1997-12-13|1997-11-11|TAKE BACK RETURN|RAIL| the blithely bold| +1482|238291|25804|6|24|29502.72|0.01|0.01|N|O|1997-12-29|1997-12-18|1998-01-25|TAKE BACK RETURN|TRUCK|eful somas are along the careful| +1482|952457|2458|7|13|19622.33|0.04|0.01|N|O|1998-02-02|1997-12-06|1998-03-04|COLLECT COD|FOB|ly even dependencies affix quickly bold req| +1483|934172|46691|1|3|3618.39|0.09|0.05|A|F|1994-11-04|1994-11-04|1994-11-30|TAKE BACK RETURN|AIR|l multipliers. quickly | +1483|612334|12335|2|41|51098.30|0.03|0.04|R|F|1994-12-10|1994-10-17|1994-12-21|NONE|RAIL|ts. packages accordin| +1483|489489|14508|3|44|65052.24|0.03|0.02|R|F|1994-11-16|1994-10-22|1994-11-19|COLLECT COD|AIR|ages. thinly express depos| +1483|834275|34276|4|10|12092.30|0.02|0.01|R|F|1994-10-31|1994-09-25|1994-11-11|NONE|RAIL|r. special excuse| +1483|658723|33750|5|47|79039.43|0.08|0.02|A|F|1994-09-20|1994-10-20|1994-10-01|DELIVER IN PERSON|REG AIR|y carefully | +1483|155150|30157|6|36|43385.40|0.03|0.04|R|F|1994-12-10|1994-10-03|1994-12-30|COLLECT COD|TRUCK|ts sleep a| +1484|828866|16415|1|11|19743.02|0.01|0.07|N|O|1997-09-05|1997-07-27|1997-09-09|COLLECT COD|RAIL|l, careful ideas thrash| +1485|274727|37233|1|10|17017.10|0.01|0.03|N|O|1996-06-20|1996-05-05|1996-07-02|DELIVER IN PERSON|REG AIR|even deposits ca| +1485|322540|10059|2|29|45313.37|0.09|0.07|N|O|1996-04-27|1996-05-27|1996-05-07|NONE|FOB|nusual theodolites. b| +1485|926255|13810|3|1|1281.21|0.02|0.05|N|O|1996-06-29|1996-05-09|1996-07-18|TAKE BACK RETURN|TRUCK|close ideas. pinto beans haggle quickly iro| +1485|554242|16754|4|20|25924.40|0.08|0.02|N|O|1996-07-18|1996-05-19|1996-07-30|COLLECT COD|TRUCK|quickly within the reg| +1486|29027|29028|1|21|20076.42|0.03|0.07|N|O|1998-08-18|1998-09-27|1998-09-15|DELIVER IN PERSON|FOB|oxes affix foxes. quickly blithe r| +1486|848002|10519|2|29|27548.84|0.09|0.08|N|O|1998-08-19|1998-10-15|1998-08-30|COLLECT COD|TRUCK|x permanently final packages. ironic, ex| +1486|359271|34286|3|39|51880.14|0.00|0.02|N|O|1998-10-12|1998-08-21|1998-11-06|DELIVER IN PERSON|TRUCK|along the carefully r| +1487|696983|22010|1|15|29699.25|0.07|0.02|N|O|1996-07-08|1996-08-04|1996-08-01|COLLECT COD|FOB| slyly final accounts. accoun| +1487|191828|29338|2|43|82552.26|0.02|0.08|N|O|1996-09-13|1996-09-02|1996-10-05|DELIVER IN PERSON|TRUCK|tside the expr| +1487|42333|17334|3|25|31883.25|0.07|0.03|N|O|1996-08-31|1996-08-05|1996-09-26|DELIVER IN PERSON|SHIP|uickly beyond the final acco| +1487|485893|10912|4|47|88306.89|0.07|0.07|N|O|1996-09-20|1996-08-26|1996-09-25|NONE|REG AIR|ld accounts across the| +1487|395514|45515|5|25|40237.50|0.08|0.01|N|O|1996-07-06|1996-08-17|1996-08-03|DELIVER IN PERSON|FOB|ully special | +1487|403602|41127|6|40|60223.20|0.07|0.05|N|O|1996-09-01|1996-08-12|1996-09-04|TAKE BACK RETURN|MAIL|p. carefully ironi| +1512|961827|11828|1|19|35886.82|0.10|0.08|R|F|1992-11-25|1992-12-13|1992-12-24|TAKE BACK RETURN|TRUCK|s. fluffily express a| +1512|410778|35795|2|44|74305.00|0.05|0.08|R|F|1992-11-28|1992-12-08|1992-12-18|DELIVER IN PERSON|FOB|rhorses sleep | +1512|935832|35833|3|21|39223.59|0.09|0.08|A|F|1992-12-10|1992-12-13|1993-01-08|NONE|TRUCK| ironic packages wake along the pe| +1512|524892|24893|4|20|38337.40|0.00|0.07|A|F|1993-01-28|1992-12-13|1993-02-20|COLLECT COD|FOB|y regular pack| +1512|853995|16513|5|25|48723.75|0.03|0.04|A|F|1992-11-10|1992-12-26|1992-11-11|TAKE BACK RETURN|SHIP|nic notornis kindle final | +1512|81356|31357|6|45|60180.75|0.02|0.05|R|F|1992-11-27|1993-01-03|1992-12-08|TAKE BACK RETURN|REG AIR| deposits detect about the quickly pending | +1513|720966|20967|1|14|27817.02|0.10|0.08|R|F|1992-10-18|1992-11-14|1992-11-13|DELIVER IN PERSON|REG AIR|sual platelets w| +1513|273418|35924|2|7|9739.80|0.02|0.02|R|F|1992-11-07|1993-01-07|1992-11-13|NONE|FOB|quests sleep slyly| +1513|323524|23525|3|47|72732.97|0.05|0.08|R|F|1993-01-31|1992-12-16|1993-02-22|DELIVER IN PERSON|MAIL| final deposits. pinto bea| +1513|462168|49696|4|48|54246.72|0.07|0.07|R|F|1992-12-28|1993-01-05|1993-01-03|NONE|RAIL|about the careful| +1513|643769|31306|5|4|6850.92|0.05|0.03|R|F|1992-10-18|1992-12-12|1992-11-05|TAKE BACK RETURN|RAIL|sits. even | +1513|825247|12796|6|43|50404.60|0.08|0.04|A|F|1992-12-06|1992-11-16|1992-12-07|TAKE BACK RETURN|RAIL|ending asymptotes. fluffily care| +1514|395257|32779|1|44|59498.56|0.10|0.07|N|O|1998-07-10|1998-09-23|1998-07-16|TAKE BACK RETURN|MAIL|lly regular platelets use| +1514|70024|32526|2|16|15904.32|0.01|0.08|N|O|1998-09-21|1998-09-14|1998-10-14|DELIVER IN PERSON|AIR|ake slyly blithely special deposits. p| +1514|877192|27193|3|41|47935.15|0.10|0.06|N|O|1998-11-02|1998-09-05|1998-11-07|NONE|SHIP|gle dogged, final id| +1514|960847|35886|4|25|47695.00|0.03|0.04|N|O|1998-10-01|1998-09-07|1998-10-15|NONE|RAIL|ongside of the carefully | +1514|952980|2981|5|35|71152.90|0.06|0.06|N|O|1998-09-23|1998-08-09|1998-10-01|TAKE BACK RETURN|MAIL|y pending ideas solve slyly. regular| +1514|724969|49998|6|10|19939.30|0.00|0.05|N|O|1998-08-09|1998-09-12|1998-08-16|DELIVER IN PERSON|FOB|into beans. stealthily final packa| +1515|544328|19349|1|48|65870.40|0.02|0.05|N|O|1998-07-02|1998-07-21|1998-07-05|DELIVER IN PERSON|REG AIR| instructions wake furio| +1515|504656|17167|2|1|1660.63|0.00|0.01|N|O|1998-07-15|1998-07-09|1998-07-27|TAKE BACK RETURN|FOB|y regular foxes cajole furiously alon| +1515|737267|24810|3|29|37822.67|0.05|0.02|N|O|1998-06-08|1998-07-22|1998-06-27|NONE|FOB|ies against | +1515|244090|44091|4|13|13443.04|0.08|0.02|N|O|1998-07-14|1998-08-01|1998-07-20|NONE|FOB|ecial packages. slyly regular ideas| +1516|547589|47590|1|13|21275.28|0.04|0.08|R|F|1994-07-01|1994-07-30|1994-07-16|NONE|REG AIR| ironic requests doze | +1517|706633|19148|1|37|60665.20|0.01|0.01|A|F|1993-03-23|1993-03-22|1993-03-27|COLLECT COD|AIR|fily regular packages along the ironic, ex| +1517|372544|35052|2|46|74360.38|0.02|0.03|R|F|1993-05-27|1993-04-21|1993-06-04|TAKE BACK RETURN|FOB|ly against the | +1517|337235|37236|3|12|15266.64|0.07|0.03|R|F|1993-04-01|1993-05-03|1993-04-30|NONE|REG AIR|kly regular depos| +1517|900649|13168|4|4|6598.40|0.04|0.07|A|F|1993-03-24|1993-03-13|1993-04-05|DELIVER IN PERSON|FOB|counts affix blithely. furiously ironic rea| +1518|682371|7398|1|2|2706.68|0.09|0.03|A|F|1992-11-02|1992-10-14|1992-11-09|COLLECT COD|MAIL|ickly ironic foxes | +1518|603186|40723|2|17|18515.55|0.07|0.06|A|F|1992-11-05|1992-10-03|1992-11-14|DELIVER IN PERSON|TRUCK|cingly slyly final wa| +1519|888122|640|1|3|3330.24|0.00|0.06|N|O|1997-06-10|1997-07-01|1997-07-01|COLLECT COD|MAIL|ainst the blithely even| +1519|665613|40640|2|14|22100.12|0.01|0.06|N|O|1997-07-13|1997-06-24|1997-08-12|DELIVER IN PERSON|SHIP|jole against the theodolites. quick| +1519|946682|34237|3|7|12100.48|0.06|0.00|N|O|1997-06-30|1997-06-01|1997-07-26|TAKE BACK RETURN|TRUCK|unusual packages play quickly. regu| +1519|874404|49439|4|50|68918.00|0.08|0.04|N|O|1997-06-14|1997-06-23|1997-07-08|COLLECT COD|FOB|gular ideas. slyly even excu| +1519|106613|44120|5|21|34011.81|0.01|0.00|N|O|1997-06-22|1997-05-28|1997-07-05|TAKE BACK RETURN|REG AIR|gular packages wake furiously iro| +1519|835174|47691|6|38|42146.94|0.06|0.06|N|O|1997-05-01|1997-05-24|1997-05-08|DELIVER IN PERSON|RAIL|slyly: ironic, bold theodoli| +1519|764109|1655|7|45|52788.15|0.03|0.02|N|O|1997-07-04|1997-05-26|1997-07-11|COLLECT COD|SHIP|press theodolites nag blithely.| +1544|373147|10669|1|7|8540.91|0.10|0.05|A|F|1994-06-01|1994-05-03|1994-06-20|NONE|REG AIR|counts. carefully r| +1544|465371|2899|2|17|22717.95|0.10|0.06|A|F|1994-02-20|1994-05-11|1994-03-18|COLLECT COD|AIR|to beans. ideas dazzl| +1544|478437|15965|3|14|19815.74|0.00|0.00|R|F|1994-04-27|1994-04-25|1994-05-23|COLLECT COD|FOB|posits sleep. qu| +1544|74751|37253|4|14|24160.50|0.06|0.03|R|F|1994-02-23|1994-04-30|1994-03-20|DELIVER IN PERSON|TRUCK|sly bold excuses after the blithely reg| +1544|339509|2016|5|45|69682.05|0.08|0.03|A|F|1994-06-09|1994-05-11|1994-06-26|DELIVER IN PERSON|REG AIR|ly final plat| +1545|229207|41712|1|10|11361.90|0.10|0.02|A|F|1993-01-22|1993-01-02|1993-02-19|DELIVER IN PERSON|AIR|en packages. unusual ideas boost slyl| +1545|281100|43606|2|9|9729.81|0.08|0.05|A|F|1993-01-26|1993-02-14|1993-02-20|NONE|REG AIR|idle foxes. ruthlessly final| +1545|444913|19930|3|7|13005.23|0.00|0.06|R|F|1993-02-27|1993-01-16|1993-03-27|TAKE BACK RETURN|MAIL|unusual foxes. even, final| +1545|643863|43864|4|17|30716.11|0.09|0.00|A|F|1993-03-10|1993-01-07|1993-03-29|TAKE BACK RETURN|SHIP|ss escapades wake furio| +1545|395068|7576|5|49|56989.45|0.07|0.03|R|F|1992-12-18|1992-12-22|1992-12-30|COLLECT COD|MAIL|riously regular requests breach along | +1546|572135|9669|1|49|59148.39|0.04|0.00|A|F|1994-04-27|1994-04-21|1994-05-27|COLLECT COD|MAIL|aggle quickly. package| +1546|862440|24958|2|10|14024.00|0.08|0.01|R|F|1994-02-20|1994-05-04|1994-03-12|NONE|SHIP|the stealthy, special acc| +1546|13400|38401|3|19|24954.60|0.05|0.04|A|F|1994-02-14|1994-05-03|1994-03-16|TAKE BACK RETURN|RAIL|eposits. blithely pending instruct| +1546|209145|9146|4|1|1054.13|0.10|0.03|R|F|1994-02-23|1994-03-29|1994-03-17|TAKE BACK RETURN|REG AIR|unts. slyly final deposits along t| +1546|88743|38744|5|44|76196.56|0.02|0.04|A|F|1994-02-15|1994-04-06|1994-03-06|NONE|MAIL|atelets. furious| +1546|491414|3924|6|45|63242.55|0.07|0.07|R|F|1994-03-06|1994-04-22|1994-03-13|NONE|FOB|es lose slyly among the perm| +1547|734861|34862|1|8|15166.64|0.04|0.05|R|F|1992-07-06|1992-07-17|1992-07-10|COLLECT COD|TRUCK|kages are carefully blithely ironic | +1548|425887|38396|1|24|43508.64|0.07|0.07|N|O|1997-05-03|1997-06-19|1997-05-15|NONE|REG AIR| unusual ac| +1548|876611|39129|2|21|33338.97|0.02|0.01|N|O|1997-06-24|1997-06-29|1997-07-13|NONE|RAIL| carefully unusual foxes wake. bol| +1548|196896|34406|3|22|43843.58|0.10|0.05|N|O|1997-06-12|1997-06-08|1997-07-11|NONE|AIR|olphins. fur| +1549|373609|11131|1|33|55525.47|0.08|0.07|N|O|1995-11-22|1996-01-08|1995-12-22|DELIVER IN PERSON|TRUCK| beans about the blithely ironic request| +1549|238372|25885|2|23|30138.28|0.07|0.08|N|O|1996-01-17|1996-01-03|1996-01-20|NONE|TRUCK|ackages. always final foxes use quickly.| +1549|310402|22909|3|13|18361.07|0.05|0.05|N|O|1995-11-18|1996-01-03|1995-12-07|TAKE BACK RETURN|TRUCK|rges are slyly after the slyly even accoun| +1549|924254|36773|4|48|61354.08|0.01|0.00|N|O|1995-11-02|1995-12-05|1995-11-16|COLLECT COD|RAIL|y quickly even packages. foxes wake alon| +1549|936183|36184|5|24|29259.36|0.02|0.03|N|O|1996-02-04|1995-11-22|1996-02-10|COLLECT COD|AIR|as. regular theodoli| +1549|415229|40246|6|50|57210.00|0.00|0.01|N|O|1995-12-01|1995-12-12|1995-12-04|DELIVER IN PERSON|AIR|ix. carefully even requests at the slyly| +1550|48184|48185|1|28|31701.04|0.05|0.02|R|F|1995-03-07|1995-02-22|1995-03-20|NONE|AIR|s along the final, bold re| +1550|819464|19465|2|43|59487.06|0.08|0.07|R|F|1995-01-26|1995-03-11|1995-02-12|TAKE BACK RETURN|TRUCK| requests? slyly regular depos| +1550|728558|41073|3|13|20624.76|0.06|0.04|R|F|1995-03-09|1995-02-27|1995-03-30|NONE|REG AIR| regular dependencies de| +1551|935441|22996|1|46|67914.40|0.08|0.04|N|O|1997-03-26|1997-01-26|1997-04-05|COLLECT COD|RAIL|bout the ac| +1551|942595|42596|2|42|68777.10|0.10|0.01|N|O|1997-01-10|1997-02-07|1997-01-30|DELIVER IN PERSON|AIR|lent accounts. furiously| +1551|181117|31118|3|22|26358.42|0.02|0.04|N|O|1996-12-17|1997-01-08|1997-01-09|TAKE BACK RETURN|AIR|g carefully according to the bold req| +1551|25572|13073|4|42|62897.94|0.03|0.08|N|O|1997-02-23|1997-01-10|1997-03-15|NONE|SHIP|inal instructions are among the | +1551|781022|18568|5|20|22059.80|0.04|0.04|N|O|1997-03-03|1997-02-10|1997-03-12|TAKE BACK RETURN|FOB|efully bold t| +1551|630846|5871|6|11|19544.91|0.03|0.06|N|O|1997-03-19|1997-01-12|1997-03-22|NONE|MAIL|ously ironic requ| +1576|872459|47494|1|26|37216.66|0.03|0.01|N|O|1996-05-23|1996-04-27|1996-06-07|TAKE BACK RETURN|REG AIR|ecial, final f| +1577|314782|14783|1|23|41325.71|0.00|0.04|R|F|1994-09-07|1994-08-20|1994-10-03|COLLECT COD|TRUCK|equests. fluffily regular request| +1578|915823|28342|1|29|53324.62|0.02|0.06|R|F|1995-02-26|1995-02-20|1995-03-05|NONE|RAIL|g the accounts. dep| +1578|235314|35315|2|31|38728.30|0.09|0.06|R|F|1995-02-06|1995-03-21|1995-02-21|DELIVER IN PERSON|RAIL|d theodolites need to sleep fluffily fur| +1578|915895|3450|3|24|45860.40|0.08|0.04|R|F|1995-04-13|1995-03-10|1995-05-06|DELIVER IN PERSON|REG AIR|brave packages. requests are quickly. | +1579|323996|36503|1|34|68679.32|0.05|0.04|N|O|1995-08-07|1995-08-30|1995-08-21|NONE|MAIL|ins. slyly| +1579|398967|11475|2|37|76440.15|0.09|0.07|N|O|1995-08-26|1995-08-25|1995-09-17|COLLECT COD|REG AIR| requests cajole carefully. deposits | +1579|430103|17628|3|7|7231.56|0.04|0.05|N|O|1995-08-16|1995-09-08|1995-09-03|COLLECT COD|RAIL|g carefully a| +1579|738539|38540|4|14|22085.00|0.02|0.04|N|O|1995-08-13|1995-08-28|1995-09-12|NONE|RAIL|o beans. silently | +1579|609805|22318|5|36|61731.72|0.10|0.04|N|O|1995-09-26|1995-09-22|1995-10-09|DELIVER IN PERSON|MAIL| accounts | +1580|292941|30457|1|24|46414.32|0.04|0.06|N|O|1998-02-06|1998-02-14|1998-03-01|DELIVER IN PERSON|MAIL| the even package| +1580|458871|46399|2|46|84173.10|0.04|0.05|N|O|1998-02-08|1998-03-14|1998-02-21|TAKE BACK RETURN|SHIP| special escapades dete| +1580|231103|18616|3|21|21715.89|0.07|0.05|N|O|1998-04-05|1998-02-21|1998-04-08|COLLECT COD|RAIL|the carefully slow accounts impress blith| +1581|660274|22788|1|44|54306.56|0.08|0.07|R|F|1993-02-19|1993-01-18|1993-02-25|DELIVER IN PERSON|RAIL|quests thrash quickly regular| +1581|222806|47815|2|34|58778.86|0.04|0.05|R|F|1993-01-24|1992-12-24|1993-02-06|DELIVER IN PERSON|MAIL|ording to th| +1581|683644|8671|3|4|6510.44|0.08|0.06|R|F|1992-11-18|1992-12-23|1992-12-08|NONE|MAIL|lar instructions use | +1581|988951|38952|4|12|24478.92|0.10|0.08|A|F|1993-03-08|1993-01-14|1993-04-01|COLLECT COD|TRUCK|yly final | +1581|293164|43165|5|7|8100.05|0.10|0.04|R|F|1993-01-27|1992-12-22|1993-02-22|COLLECT COD|AIR| dazzle slyly agai| +1581|193176|43177|6|25|31729.25|0.00|0.00|A|F|1993-02-11|1993-01-02|1993-02-26|DELIVER IN PERSON|REG AIR|equests. s| +1582|683525|33526|1|10|15084.90|0.01|0.04|A|F|1994-02-04|1994-01-02|1994-02-17|DELIVER IN PERSON|FOB|pecial excuses use| +1582|989384|1904|2|50|73667.00|0.04|0.06|A|F|1993-11-15|1993-12-10|1993-12-09|NONE|REG AIR| deposits wake slyly furiously even depos| +1582|572133|22134|3|5|6025.55|0.08|0.05|A|F|1994-02-01|1994-01-02|1994-02-07|NONE|TRUCK|c dependencie| +1582|833803|33804|4|48|83364.48|0.02|0.00|A|F|1994-01-01|1994-01-06|1994-01-18|DELIVER IN PERSON|TRUCK|ing to the slyly ironic re| +1583|96092|33596|1|27|29378.43|0.06|0.00|A|F|1992-01-19|1992-03-04|1992-01-26|NONE|AIR|nic accounts during the carefully silent| +1608|735519|23062|1|3|4663.44|0.00|0.06|N|O|1996-09-15|1996-08-26|1996-10-02|DELIVER IN PERSON|TRUCK|regular foxes; final deposits boost| +1608|859995|22513|2|18|35189.10|0.01|0.08|N|O|1996-08-20|1996-08-22|1996-09-14|DELIVER IN PERSON|FOB|gged requests sleep ironic| +1608|926535|1572|3|47|73390.03|0.05|0.06|N|O|1996-10-06|1996-07-30|1996-10-20|DELIVER IN PERSON|TRUCK|e. packages sno| +1608|260489|10490|4|43|62327.21|0.01|0.01|N|O|1996-07-03|1996-08-03|1996-07-17|COLLECT COD|TRUCK|etect about the carefully expre| +1608|23889|48890|5|43|77953.84|0.06|0.04|N|O|1996-06-23|1996-09-03|1996-07-23|TAKE BACK RETURN|TRUCK|ies. quickly unusual pinto| +1608|487492|2|6|25|36986.75|0.04|0.05|N|O|1996-07-23|1996-08-01|1996-08-11|NONE|TRUCK|ickly after | +1608|269889|44900|7|27|50189.49|0.09|0.07|N|O|1996-09-03|1996-08-27|1996-09-20|NONE|RAIL|ously pending requests ab| +1609|17435|29936|1|49|66269.07|0.08|0.06|R|F|1993-12-30|1993-12-03|1994-01-11|TAKE BACK RETURN|TRUCK|furiously special platelets against | +1609|13435|13436|2|26|35059.18|0.03|0.06|A|F|1993-12-13|1993-11-03|1993-12-25|DELIVER IN PERSON|FOB|refully pending deposits wake fluffily | +1609|792428|17459|3|42|63856.38|0.09|0.05|A|F|1993-11-22|1993-10-19|1993-12-11|NONE|AIR| beans. slyly pending excuses around the i| +1609|337018|49525|4|8|8440.00|0.10|0.00|R|F|1993-12-30|1993-11-01|1994-01-10|COLLECT COD|REG AIR|quickly final requests affix furio| +1609|244866|19875|5|37|67001.45|0.04|0.03|A|F|1993-12-21|1993-10-22|1994-01-05|COLLECT COD|RAIL|st the slyly ironi| +1609|457120|44648|6|36|38775.60|0.08|0.02|A|F|1993-11-14|1993-10-13|1993-11-27|COLLECT COD|MAIL|riously ironic dependencies wake quickly| +1610|382832|45340|1|33|63189.06|0.04|0.06|N|O|1996-05-18|1996-07-03|1996-06-03|COLLECT COD|MAIL|hins sleep again| +1610|245336|32849|2|9|11531.88|0.02|0.04|N|O|1996-04-24|1996-06-17|1996-05-10|NONE|MAIL|nic foxes. express, special pinto b| +1611|61926|49430|1|12|22655.04|0.06|0.04|N|O|1995-06-21|1995-05-06|1995-07-14|DELIVER IN PERSON|MAIL|oxes sleep. regu| +1611|787149|37150|2|5|6180.55|0.00|0.06|R|F|1995-05-26|1995-05-07|1995-06-05|NONE|REG AIR|kly unusua| +1611|611825|36850|3|11|19104.69|0.05|0.03|A|F|1995-04-11|1995-05-06|1995-04-22|COLLECT COD|REG AIR|its. packages solve. fluffily ir| +1612|856650|44202|1|24|38558.64|0.01|0.04|R|F|1992-05-06|1992-06-06|1992-06-04|COLLECT COD|FOB| packages nag thinly slyly | +1612|705107|30136|2|23|25577.61|0.03|0.04|R|F|1992-07-20|1992-05-04|1992-08-06|COLLECT COD|TRUCK|y. quickly ironic excuses sleep; q| +1612|720961|33476|3|43|85222.99|0.02|0.07|R|F|1992-05-06|1992-05-07|1992-05-30|DELIVER IN PERSON|REG AIR|final accounts above| +1612|187422|49926|4|13|19622.46|0.00|0.03|A|F|1992-07-19|1992-05-11|1992-08-15|COLLECT COD|FOB|s the regularly ironic theodoli| +1612|986308|36309|5|35|48799.10|0.00|0.02|A|F|1992-06-29|1992-05-28|1992-07-11|DELIVER IN PERSON|TRUCK|ly even accounts. ironic ideas affix | +1612|870887|8439|6|1|1857.84|0.06|0.04|A|F|1992-07-17|1992-05-10|1992-07-24|COLLECT COD|AIR|ckly even d| +1612|996120|46121|7|33|40130.64|0.04|0.01|A|F|1992-07-15|1992-06-23|1992-07-28|DELIVER IN PERSON|RAIL|nusual requests use accor| +1613|778843|16389|1|4|7687.24|0.01|0.07|R|F|1994-06-26|1994-06-08|1994-07-13|COLLECT COD|FOB|kages according to the quickly regu| +1613|980|38481|2|47|88406.06|0.01|0.01|A|F|1994-05-09|1994-06-16|1994-05-12|NONE|RAIL|heodolites sleep regular| +1613|469014|44033|3|42|41285.58|0.02|0.06|R|F|1994-04-16|1994-05-04|1994-05-01|COLLECT COD|AIR| ideas hinder. bold d| +1613|704515|4516|4|35|53181.80|0.10|0.05|R|F|1994-05-15|1994-05-06|1994-05-29|DELIVER IN PERSON|REG AIR|ng the furiously fi| +1614|377872|15394|1|47|91643.42|0.02|0.07|R|F|1993-12-16|1994-02-06|1993-12-31|DELIVER IN PERSON|MAIL|ing to the bold,| +1614|891811|16846|2|39|70308.03|0.03|0.02|R|F|1994-03-06|1993-12-27|1994-04-02|COLLECT COD|AIR| platelets haggle | +1614|665977|3517|3|45|87432.30|0.07|0.07|R|F|1994-01-15|1994-01-09|1994-01-24|TAKE BACK RETURN|REG AIR|dolites cajole carefully after the | +1614|68210|18211|4|5|5891.05|0.01|0.02|A|F|1994-01-02|1993-12-18|1994-01-20|COLLECT COD|TRUCK|ar, final accounts. regular, pendi| +1614|391543|41544|5|8|13076.24|0.01|0.07|R|F|1994-03-06|1994-01-13|1994-03-11|TAKE BACK RETURN|MAIL|lly final pinto beans haggle| +1615|715894|15895|1|17|32467.62|0.05|0.07|A|F|1994-03-01|1994-03-15|1994-03-13|TAKE BACK RETURN|FOB|e always ironic theodolites sleep| +1615|23039|23040|2|13|12506.39|0.05|0.00|A|F|1994-01-08|1994-02-13|1994-01-14|NONE|AIR|s wake quickly after the regular, bold | +1615|211701|49214|3|12|19352.28|0.10|0.05|R|F|1994-04-19|1994-03-09|1994-05-02|COLLECT COD|RAIL|inal ideas. bold, re| +1615|57435|44939|4|38|52912.34|0.01|0.02|R|F|1994-03-06|1994-02-26|1994-04-04|NONE|AIR|warhorses. always q| +1615|306615|31628|5|14|22702.40|0.00|0.04|A|F|1994-02-06|1994-03-09|1994-02-22|NONE|FOB|riously along the furiously express | +1640|986726|49246|1|4|7250.72|0.06|0.02|A|F|1995-03-28|1995-01-07|1995-04-27|NONE|REG AIR| accounts. orbits cajole ca| +1640|901080|38635|2|7|7567.28|0.00|0.02|R|F|1995-01-13|1995-01-28|1995-02-07|NONE|RAIL|nal depende| +1640|445075|7584|3|41|41822.05|0.00|0.03|A|F|1995-01-19|1995-02-22|1995-02-08|TAKE BACK RETURN|MAIL|kages about the | +1640|371611|46626|4|34|57208.40|0.10|0.01|R|F|1995-03-04|1995-02-07|1995-03-30|DELIVER IN PERSON|SHIP|lar decoys? blithely pendi| +1640|654983|30010|5|27|52324.65|0.01|0.01|A|F|1994-11-30|1995-02-23|1994-12-25|COLLECT COD|FOB|egular deposits. furiously iro| +1640|295364|32880|6|12|16312.20|0.05|0.07|A|F|1995-01-12|1995-01-21|1995-01-31|DELIVER IN PERSON|FOB|sts cajole blithely. blithely even reques| +1641|535692|48203|1|32|55285.44|0.09|0.08|N|O|1997-06-03|1997-07-06|1997-06-14|TAKE BACK RETURN|SHIP|ng to the blithely even theodolites| +1641|364528|2050|2|19|30257.69|0.00|0.07|N|O|1997-08-09|1997-07-03|1997-08-13|TAKE BACK RETURN|RAIL|ress deposits x-ray quickly a| +1641|614623|14624|3|20|30751.80|0.02|0.03|N|O|1997-06-04|1997-07-12|1997-06-21|COLLECT COD|MAIL|ck deposits haggle. ex| +1641|965509|15510|4|35|55106.10|0.10|0.01|N|O|1997-07-27|1997-07-01|1997-08-11|COLLECT COD|TRUCK|l packages? slyly e| +1641|302958|27971|5|48|94125.12|0.07|0.03|N|O|1997-06-01|1997-06-10|1997-06-04|TAKE BACK RETURN|MAIL|ce of the furiously thin asymptotes| +1641|810515|10516|6|35|49891.45|0.01|0.07|N|O|1997-06-03|1997-07-26|1997-06-18|NONE|SHIP|rs. ironic | +1642|481266|18794|1|19|23697.56|0.10|0.00|A|F|1993-06-09|1993-07-02|1993-06-18|COLLECT COD|SHIP| special theodolites | +1642|637570|25107|2|37|55778.98|0.06|0.06|A|F|1993-07-05|1993-07-06|1993-07-10|TAKE BACK RETURN|MAIL|ic deposits. furiously bold frets around | +1642|625578|25579|3|6|9021.24|0.00|0.03|A|F|1993-07-17|1993-07-17|1993-07-20|COLLECT COD|RAIL|nding packa| +1643|432892|7909|1|17|31022.79|0.06|0.02|A|F|1994-11-16|1994-12-21|1994-11-23|DELIVER IN PERSON|AIR|ffily ironic foxes eat w| +1643|602180|14693|2|25|27053.75|0.09|0.02|A|F|1995-01-20|1994-10-26|1995-02-04|TAKE BACK RETURN|SHIP|ng to the furiously final theodolites.| +1643|836032|11065|3|25|24199.75|0.03|0.05|A|F|1994-12-04|1994-12-10|1994-12-31|DELIVER IN PERSON|REG AIR|ss orbits. even, ironic| +1644|441247|16264|1|25|29705.50|0.03|0.01|A|F|1992-06-26|1992-05-19|1992-07-14|DELIVER IN PERSON|TRUCK|ages are slowly blithely bold requ| +1644|37642|25143|2|15|23694.60|0.05|0.03|R|F|1992-05-25|1992-06-07|1992-05-30|NONE|MAIL|fully. quickly s| +1644|648089|10602|3|24|24889.20|0.06|0.01|A|F|1992-07-31|1992-05-10|1992-08-10|DELIVER IN PERSON|RAIL|kages. express, special ideas caj| +1645|577425|39937|1|15|22536.00|0.07|0.02|A|F|1994-09-25|1994-08-05|1994-10-12|COLLECT COD|TRUCK|der the even, quick accounts.| +1646|518365|5896|1|44|60866.96|0.00|0.04|A|F|1993-04-25|1993-06-28|1993-05-19|DELIVER IN PERSON|TRUCK|s. blithely furious theod| +1647|415663|28172|1|46|72617.44|0.02|0.00|N|O|1998-03-25|1998-01-21|1998-04-08|COLLECT COD|SHIP|lites. foxes engage blith| +1647|31472|43973|2|33|46314.51|0.09|0.03|N|O|1997-12-19|1998-02-07|1997-12-21|COLLECT COD|TRUCK| special excuses. final de| +1647|938154|13191|3|15|17881.65|0.01|0.04|N|O|1998-03-01|1998-03-07|1998-03-17|DELIVER IN PERSON|FOB|leep quickly. ruthlessly unusual warthogs| +1647|553798|3799|4|26|48146.02|0.07|0.06|N|O|1997-12-29|1998-01-23|1998-01-20|COLLECT COD|AIR|cording to the sly| +1647|678183|3210|5|33|38317.95|0.04|0.07|N|O|1998-02-24|1998-02-10|1998-03-21|DELIVER IN PERSON|REG AIR|inal instructions cajole furiously| +1647|215529|3042|6|3|4333.53|0.03|0.04|N|O|1998-04-11|1998-03-03|1998-04-28|COLLECT COD|TRUCK|cross the instructions. ir| +1672|420554|20555|1|31|45710.43|0.07|0.07|N|O|1995-09-04|1995-08-03|1995-10-03|TAKE BACK RETURN|TRUCK|le carefully agai| +1672|234880|47385|2|29|52631.23|0.02|0.02|A|F|1995-05-18|1995-06-22|1995-05-28|TAKE BACK RETURN|SHIP|blithely. carefully even | +1672|626760|1785|3|3|5060.19|0.05|0.04|R|F|1995-05-13|1995-06-20|1995-05-18|DELIVER IN PERSON|AIR|ly. blithely quick deposits | +1672|938888|1407|4|12|23122.08|0.02|0.02|N|O|1995-07-06|1995-06-21|1995-07-07|DELIVER IN PERSON|RAIL|ithely ironic depo| +1672|887327|37328|5|27|35485.56|0.01|0.00|N|O|1995-06-24|1995-07-02|1995-06-26|DELIVER IN PERSON|AIR|ackages. unusual, unusual r| +1672|289291|14302|6|8|10242.24|0.10|0.08|N|O|1995-07-22|1995-07-24|1995-08-19|DELIVER IN PERSON|AIR|ffix blithely pending packages. furiously e| +1673|372055|22056|1|33|37192.32|0.08|0.02|R|F|1992-04-27|1992-05-03|1992-05-04|COLLECT COD|AIR|ckly above the regular, regular packag| +1673|113388|25891|2|19|26626.22|0.04|0.03|R|F|1992-07-13|1992-06-16|1992-08-12|COLLECT COD|REG AIR| carefully special pac| +1673|702860|27889|3|4|7451.32|0.07|0.04|A|F|1992-05-31|1992-05-25|1992-06-08|TAKE BACK RETURN|MAIL|er the express, ruthless requests sleep| +1673|955184|17704|4|40|49565.60|0.03|0.06|A|F|1992-05-20|1992-05-20|1992-06-02|NONE|RAIL|ckly regular r| +1673|773013|10559|5|5|5429.90|0.08|0.02|R|F|1992-07-06|1992-06-22|1992-08-03|NONE|TRUCK|o promise blithely theodoli| +1674|732048|7077|1|11|11880.11|0.03|0.01|A|F|1993-12-22|1993-11-28|1993-12-31|NONE|MAIL|against the b| +1674|516298|3829|2|21|27599.67|0.07|0.01|A|F|1993-11-25|1993-12-30|1993-12-23|NONE|TRUCK|s sleep. slyly special| +1674|416534|4059|3|6|8703.06|0.00|0.07|A|F|1993-11-25|1993-12-30|1993-12-01|NONE|REG AIR|unusual packages n| +1674|684407|21947|4|5|6956.85|0.01|0.07|R|F|1993-10-13|1993-11-13|1993-10-29|NONE|RAIL|osits. final dependencies| +1675|741308|41309|1|38|51272.26|0.01|0.00|A|F|1994-09-21|1994-08-15|1994-10-21|DELIVER IN PERSON|FOB|de of the unusual requests. slyly express| +1676|630728|43241|1|3|4976.07|0.07|0.03|N|O|1998-01-26|1997-12-07|1998-02-12|COLLECT COD|TRUCK|es are carefully slyly eve| +1676|640333|15358|2|9|11459.70|0.01|0.03|N|O|1997-12-12|1997-12-12|1997-12-30|TAKE BACK RETURN|MAIL|nal instructio| +1676|75134|12638|3|28|31055.64|0.09|0.02|N|O|1998-01-30|1998-01-10|1998-02-20|COLLECT COD|MAIL|onic asymptotes. fluffily ironic de| +1676|766523|41554|4|13|20663.37|0.09|0.04|N|O|1998-03-07|1997-12-30|1998-03-25|COLLECT COD|SHIP|lyly final | +1676|949232|24269|5|50|64059.50|0.00|0.06|N|O|1998-01-30|1998-01-30|1998-02-01|NONE|RAIL|r instructions wake flu| +1677|736463|36464|1|19|28489.17|0.05|0.07|R|F|1993-07-17|1993-05-27|1993-07-27|COLLECT COD|SHIP|r foxes lose carefully. quickly | +1677|728726|3755|2|49|85979.81|0.00|0.03|R|F|1993-07-04|1993-05-28|1993-07-29|DELIVER IN PERSON|RAIL|cial, sly | +1677|682698|7725|3|15|25209.90|0.04|0.05|R|F|1993-07-24|1993-07-08|1993-08-16|TAKE BACK RETURN|AIR| final instructions are silently. q| +1677|100561|562|4|45|70270.20|0.03|0.06|A|F|1993-07-09|1993-07-08|1993-07-10|TAKE BACK RETURN|TRUCK|. blithely special foxes | +1677|114076|39081|5|20|21801.40|0.04|0.07|A|F|1993-06-20|1993-06-21|1993-07-08|DELIVER IN PERSON|MAIL|re furiously final | +1677|272534|47545|6|4|6026.08|0.01|0.01|A|F|1993-07-28|1993-07-13|1993-08-26|DELIVER IN PERSON|AIR| among the fluffil| +1677|478170|3189|7|17|19518.55|0.00|0.03|A|F|1993-05-26|1993-07-10|1993-06-04|NONE|AIR|he multipliers. ironi| +1678|587182|12205|1|19|24114.04|0.03|0.06|R|F|1992-10-01|1992-09-15|1992-10-27|NONE|MAIL| requests. ruthlessly ironic excuses about | +1679|724993|12536|1|25|50449.00|0.05|0.07|N|O|1998-07-16|1998-09-08|1998-07-25|NONE|SHIP|ar courts sleep caref| +1704|788765|1281|1|2|3707.46|0.01|0.08|N|O|1996-10-11|1996-09-22|1996-10-15|DELIVER IN PERSON|MAIL| ideas. regular dolphins dazz| +1704|765186|27702|2|31|38785.65|0.07|0.06|N|O|1996-09-10|1996-10-23|1996-09-26|TAKE BACK RETURN|AIR|the furiously | +1704|474928|37438|3|5|9514.50|0.08|0.04|N|O|1996-09-10|1996-10-31|1996-10-07|COLLECT COD|SHIP|xpress theodolites | +1704|109398|34403|4|20|28147.80|0.10|0.01|N|O|1996-11-11|1996-11-04|1996-12-05|DELIVER IN PERSON|SHIP| final requests across the furiousl| +1704|651459|13973|5|47|66289.74|0.04|0.06|N|O|1996-11-20|1996-10-01|1996-12-04|COLLECT COD|SHIP|. even, silent ideas | +1705|636769|24306|1|22|37526.06|0.09|0.02|A|F|1994-04-15|1994-02-25|1994-04-30|DELIVER IN PERSON|SHIP|ests integrate car| +1705|169059|44066|2|30|33841.50|0.05|0.00|A|F|1994-03-22|1994-02-25|1994-04-11|NONE|AIR|gular requests br| +1706|935864|35865|1|14|26597.48|0.00|0.01|R|F|1994-11-30|1995-02-05|1994-12-25|DELIVER IN PERSON|RAIL|re carefully slyly special instru| +1706|61413|48917|2|33|45355.53|0.05|0.01|A|F|1994-12-01|1995-01-16|1994-12-27|NONE|REG AIR|e furiously r| +1706|163985|26489|3|6|12293.88|0.06|0.00|R|F|1995-02-22|1995-01-18|1995-03-24|NONE|AIR|xpress gifts alo| +1706|93009|5511|4|21|21042.00|0.09|0.06|A|F|1994-12-22|1994-12-11|1995-01-08|TAKE BACK RETURN|FOB|y regular s| +1706|189119|1623|5|16|19329.76|0.00|0.03|R|F|1995-01-31|1994-12-18|1995-03-01|TAKE BACK RETURN|TRUCK|s. deposits about the dependenci| +1707|373100|10622|1|37|43404.33|0.02|0.06|N|O|1997-08-05|1997-07-16|1997-08-11|NONE|TRUCK|ular accounts s| +1707|675103|12643|2|22|23717.54|0.02|0.04|N|O|1997-06-14|1997-08-26|1997-06-29|DELIVER IN PERSON|RAIL| of the carefully even deposits. furio| +1707|450279|12789|3|21|25814.25|0.09|0.01|N|O|1997-08-28|1997-09-04|1997-09-15|DELIVER IN PERSON|AIR|ily at the unusual, final pinto beans. bol| +1707|827343|2376|4|30|38109.00|0.05|0.06|N|O|1997-07-04|1997-07-16|1997-07-24|DELIVER IN PERSON|SHIP|e fluffily ironic | +1708|899085|36637|1|8|8672.32|0.02|0.05|N|O|1997-09-18|1997-09-05|1997-10-11|DELIVER IN PERSON|AIR|slyly ironic deposits.| +1708|916315|28834|2|42|55913.34|0.08|0.06|N|O|1997-10-30|1997-08-26|1997-11-25|NONE|SHIP|ke quickly express ideas; furiously | +1708|490334|2844|3|4|5297.24|0.08|0.02|N|O|1997-10-08|1997-09-06|1997-10-10|COLLECT COD|SHIP|lites. always| +1708|28695|28696|4|46|74689.74|0.03|0.06|N|O|1997-11-11|1997-08-31|1997-12-02|COLLECT COD|MAIL|leep slyly along t| +1708|272794|47805|5|37|65370.86|0.06|0.06|N|O|1997-09-01|1997-08-17|1997-09-23|COLLECT COD|FOB| ironic deposits cajole slyly. silent f| +1709|653274|28301|1|14|17181.36|0.01|0.02|A|F|1994-04-22|1994-05-24|1994-05-17|NONE|SHIP| across the fluffily| +1709|573841|23842|2|5|9574.10|0.03|0.05|A|F|1994-06-13|1994-05-15|1994-07-09|NONE|REG AIR| sleep quickly e| +1709|536378|11399|3|23|32530.05|0.03|0.02|R|F|1994-07-11|1994-05-29|1994-08-10|NONE|SHIP|usly regular instructions. | +1710|88590|1092|1|31|48936.29|0.01|0.04|A|F|1994-01-25|1994-04-02|1994-02-22|TAKE BACK RETURN|FOB|ial dependencies slee| +1710|917963|30482|2|29|57446.68|0.08|0.03|A|F|1994-04-17|1994-02-24|1994-04-19|DELIVER IN PERSON|AIR| silent asymptotes grow ironic, | +1711|958669|8670|1|15|25914.30|0.03|0.08|N|O|1997-02-28|1997-04-23|1997-03-30|DELIVER IN PERSON|SHIP|unts. special accounts ac| +1711|341553|16566|2|35|55808.90|0.09|0.00|N|O|1997-04-13|1997-04-12|1997-04-18|DELIVER IN PERSON|REG AIR|s affix aft| +1711|476622|39132|3|7|11190.20|0.06|0.06|N|O|1997-04-18|1997-04-05|1997-05-09|DELIVER IN PERSON|FOB|ccounts wake fluffily re| +1711|577230|39742|4|26|33987.46|0.00|0.06|N|O|1997-03-15|1997-04-03|1997-03-27|TAKE BACK RETURN|TRUCK|osits? silent asymptotes hag| +1711|490495|3005|5|37|54962.39|0.07|0.08|N|O|1997-06-06|1997-03-31|1997-06-24|DELIVER IN PERSON|MAIL|ringly regular requests detect: re| +1711|744265|6780|6|27|35349.21|0.01|0.02|N|O|1997-02-20|1997-05-01|1997-02-21|NONE|FOB| deposits!| +1736|505313|42844|1|11|14501.19|0.05|0.04|N|O|1995-07-16|1995-08-20|1995-08-07|DELIVER IN PERSON|REG AIR| theodolites. fu| +1736|787389|49905|2|11|16239.85|0.03|0.02|N|O|1995-09-21|1995-08-09|1995-10-18|TAKE BACK RETURN|AIR| sleep carefully at the furiously unusual | +1736|631010|43523|3|8|7527.84|0.07|0.05|N|O|1995-08-06|1995-07-27|1995-08-26|TAKE BACK RETURN|SHIP|s wake blithely about t| +1737|33033|20534|1|29|28014.87|0.04|0.04|N|O|1997-10-07|1997-12-03|1997-10-10|DELIVER IN PERSON|FOB| quietly final r| +1737|185496|35497|2|6|9488.94|0.00|0.00|N|O|1997-11-21|1997-11-07|1997-12-07|COLLECT COD|FOB|layers: always final | +1737|623121|48146|3|39|40719.51|0.01|0.07|N|O|1997-10-25|1997-10-14|1997-11-14|NONE|AIR|ss excuses at the| +1737|780861|18407|4|50|97091.50|0.10|0.00|N|O|1997-09-26|1997-11-06|1997-10-21|TAKE BACK RETURN|SHIP| quickly regular escapa| +1737|914861|39898|5|37|69405.34|0.05|0.08|N|O|1997-10-27|1997-11-15|1997-10-29|DELIVER IN PERSON|MAIL|are around the carefully sile| +1737|61770|24272|6|42|72734.34|0.06|0.02|N|O|1998-01-06|1997-10-28|1998-02-03|NONE|MAIL|posits. blith| +1738|46547|9048|1|7|10454.78|0.10|0.00|R|F|1992-05-18|1992-05-30|1992-05-22|DELIVER IN PERSON|RAIL|fully along| +1738|300909|25922|2|6|11459.34|0.03|0.00|R|F|1992-04-28|1992-04-20|1992-05-24|NONE|REG AIR|after the carefully final | +1738|370921|45936|3|41|81668.31|0.06|0.02|R|F|1992-06-27|1992-06-05|1992-07-14|NONE|MAIL|ic platele| +1738|60601|10602|4|14|21862.40|0.01|0.07|R|F|1992-06-27|1992-05-25|1992-07-12|TAKE BACK RETURN|FOB|l ideas boo| +1739|807897|7898|1|12|21658.20|0.04|0.06|A|F|1994-06-25|1994-05-21|1994-07-14|DELIVER IN PERSON|REG AIR|al requests. ironic, final foxes x-| +1739|309078|21585|2|45|48917.70|0.03|0.06|R|F|1994-04-08|1994-06-07|1994-04-10|TAKE BACK RETURN|MAIL|n, special du| +1739|671774|9314|3|9|15711.66|0.04|0.08|A|F|1994-05-28|1994-06-04|1994-06-24|TAKE BACK RETURN|MAIL|the carefully ironic de| +1739|489289|1799|4|38|48573.88|0.09|0.02|R|F|1994-03-27|1994-06-09|1994-03-31|COLLECT COD|TRUCK|usly never express pinto beans; | +1740|733753|8782|1|39|69682.08|0.02|0.07|A|F|1994-04-08|1994-05-12|1994-04-13|TAKE BACK RETURN|AIR|requests promise furiously. slyly quie| +1740|182614|45118|2|46|78044.06|0.09|0.01|A|F|1994-05-21|1994-05-20|1994-05-28|DELIVER IN PERSON|REG AIR|ecial requests affix u| +1740|185416|22926|3|24|36033.84|0.01|0.06|A|F|1994-04-04|1994-04-22|1994-04-08|COLLECT COD|REG AIR|carefully fina| +1740|280069|17585|4|22|23079.10|0.10|0.07|R|F|1994-05-02|1994-04-30|1994-05-09|NONE|FOB|. slyly ironic ideas use across | +1740|107188|19691|5|46|54978.28|0.03|0.08|A|F|1994-05-21|1994-05-11|1994-05-28|DELIVER IN PERSON|TRUCK|gainst the furiously regular reque| +1740|507940|32961|6|33|64281.36|0.10|0.00|A|F|1994-03-23|1994-04-19|1994-04-05|DELIVER IN PERSON|MAIL| are slyly carefully final requests.| +1740|947231|34786|7|1|1278.19|0.04|0.00|R|F|1994-06-14|1994-05-24|1994-07-14|NONE|MAIL|cial theod| +1741|102954|15457|1|18|35225.10|0.04|0.06|N|O|1997-07-07|1997-08-12|1997-07-24|COLLECT COD|TRUCK|ly pending | +1741|336418|11431|2|40|58176.00|0.00|0.06|N|O|1997-09-06|1997-07-18|1997-09-21|DELIVER IN PERSON|RAIL| warthogs cajole-- furiously regul| +1742|873159|35677|1|19|21510.09|0.03|0.00|A|F|1994-11-16|1994-09-21|1994-12-15|COLLECT COD|AIR|r accounts cajole carefully accordin| +1742|168712|43719|2|30|53421.30|0.06|0.06|A|F|1994-08-16|1994-10-22|1994-08-31|COLLECT COD|RAIL|press, regul| +1742|527479|15010|3|3|4519.35|0.07|0.02|A|F|1994-09-04|1994-09-03|1994-09-22|COLLECT COD|REG AIR|y pending excuses wake. slyl| +1742|334430|9443|4|1|1464.42|0.00|0.08|R|F|1994-08-05|1994-10-13|1994-08-14|TAKE BACK RETURN|REG AIR|ar dependencies? | +1742|757911|20427|5|13|25595.44|0.02|0.06|A|F|1994-10-30|1994-10-02|1994-11-04|COLLECT COD|FOB|fully final ideas. pinto beans along| +1743|518904|18905|1|4|7691.52|0.04|0.05|N|O|1996-09-12|1996-09-20|1996-09-20|TAKE BACK RETURN|RAIL|xpress, pendi| +1743|204742|42255|2|19|31287.87|0.03|0.03|N|O|1996-09-10|1996-10-24|1996-10-08|DELIVER IN PERSON|RAIL| express accounts boost re| +1743|84481|21985|3|46|67412.08|0.06|0.03|N|O|1996-11-01|1996-09-20|1996-11-13|TAKE BACK RETURN|FOB|nic excuses nag slyly. final excuses c| +1743|867339|29857|4|33|43107.57|0.10|0.06|N|O|1996-11-27|1996-09-18|1996-12-09|COLLECT COD|MAIL|g the quickly regular packages. unusual, | +1768|807425|44974|1|4|5329.52|0.08|0.08|N|O|1996-03-04|1996-03-20|1996-03-07|COLLECT COD|MAIL| quiet accounts affix. furiou| +1768|375910|13432|2|44|87379.60|0.05|0.07|N|O|1996-01-20|1996-03-24|1996-01-27|COLLECT COD|SHIP|quickly about the regular deposi| +1769|146706|34213|1|2|3505.40|0.01|0.05|N|O|1996-11-13|1996-10-31|1996-12-04|TAKE BACK RETURN|SHIP|ronic requests about the final acc| +1769|677819|40333|2|30|53903.40|0.07|0.07|N|O|1996-11-21|1996-10-21|1996-12-21|TAKE BACK RETURN|TRUCK| instructions try to integrate qui| +1769|100825|826|3|33|60252.06|0.08|0.01|N|O|1996-10-13|1996-11-24|1996-10-25|NONE|AIR|ar packages. instructions integrate theodol| +1770|221406|33911|1|36|47786.04|0.09|0.00|A|F|1995-01-17|1994-12-28|1995-02-07|DELIVER IN PERSON|AIR| nag carefully.| +1770|163901|1411|2|24|47157.60|0.01|0.00|A|F|1995-02-11|1994-12-12|1995-02-12|NONE|MAIL|xcuses along the carefully enticing dugout| +1770|680326|42840|3|12|15675.48|0.10|0.05|A|F|1994-11-10|1994-12-11|1994-11-18|TAKE BACK RETURN|AIR|otes haggle carefull| +1771|885093|10128|1|22|23717.10|0.03|0.02|A|F|1994-11-18|1995-01-23|1994-11-28|TAKE BACK RETURN|REG AIR|he final packages. blithely final de| +1771|755918|5919|2|26|51320.88|0.01|0.01|A|F|1995-02-02|1995-01-16|1995-02-05|COLLECT COD|MAIL| blithely even deposits wake again| +1771|709354|21869|3|15|20449.80|0.01|0.03|R|F|1994-12-06|1995-01-21|1995-01-05|NONE|SHIP|ly final as| +1771|103295|40802|4|45|58423.05|0.04|0.02|R|F|1994-11-24|1995-01-27|1994-11-30|NONE|RAIL| packages. blithely final reque| +1771|74015|11519|5|45|44505.45|0.02|0.02|R|F|1995-01-08|1994-12-22|1995-01-09|TAKE BACK RETURN|RAIL|lyly. special sentiments x-r| +1772|178445|28446|1|50|76172.00|0.03|0.01|R|F|1992-04-08|1992-05-01|1992-04-28|DELIVER IN PERSON|RAIL|fully thin tithes. blithely pendin| +1773|349442|24455|1|47|70097.21|0.08|0.01|N|O|1995-12-30|1995-11-29|1996-01-25|COLLECT COD|REG AIR| final pinto beans. s| +1773|65531|3035|2|20|29930.60|0.08|0.04|N|O|1996-01-12|1995-11-02|1996-01-28|DELIVER IN PERSON|REG AIR|ly permanent accounts.| +1774|979286|16844|1|15|20478.60|0.03|0.04|N|O|1998-09-19|1998-08-25|1998-10-01|NONE|FOB|old requests. slyly dogged packa| +1774|853215|15733|2|47|54903.99|0.02|0.08|N|O|1998-09-10|1998-08-17|1998-09-20|DELIVER IN PERSON|AIR|gular, unusual instructions-- blithely fina| +1774|972117|22118|3|27|32104.89|0.09|0.05|N|O|1998-09-30|1998-07-21|1998-10-15|NONE|REG AIR|ts wake quickly against the| +1774|367645|5167|4|12|20551.56|0.04|0.02|N|O|1998-06-26|1998-07-04|1998-07-22|NONE|TRUCK|y express requests wake. ide| +1774|5842|30843|5|16|27965.44|0.03|0.03|N|O|1998-07-23|1998-08-25|1998-08-19|TAKE BACK RETURN|SHIP|refully blithely careful accounts. | +1774|174595|49602|6|49|81809.91|0.07|0.05|N|O|1998-07-08|1998-08-10|1998-08-02|TAKE BACK RETURN|TRUCK|multipliers a| +1774|405954|18463|7|17|31618.81|0.05|0.01|N|O|1998-07-27|1998-07-15|1998-08-25|COLLECT COD|FOB|lar foxes sl| +1775|854435|4436|1|9|12504.51|0.09|0.04|R|F|1993-06-14|1993-06-08|1993-06-30|NONE|RAIL|al, special packages. carefully spec| +1775|488209|13228|2|49|58661.82|0.06|0.06|A|F|1993-06-20|1993-05-18|1993-07-20|NONE|RAIL|fully ironi| +1775|314711|39724|3|3|5177.10|0.02|0.08|R|F|1993-03-15|1993-06-09|1993-04-04|TAKE BACK RETURN|REG AIR| ironic, unusual accounts a| +1775|331076|43583|4|11|12177.66|0.07|0.05|R|F|1993-06-09|1993-05-01|1993-06-13|COLLECT COD|MAIL|ut the furiously | +1775|382320|7335|5|6|8413.86|0.09|0.03|A|F|1993-05-15|1993-05-31|1993-06-03|NONE|REG AIR|e unusual, ironic instruc| +1800|527421|39932|1|39|56487.60|0.07|0.05|R|F|1993-11-03|1993-10-07|1993-11-07|DELIVER IN PERSON|AIR|ges. fluffily special packages alongsi| +1800|356697|44219|2|1|1753.68|0.03|0.04|R|F|1993-09-09|1993-10-01|1993-09-12|COLLECT COD|FOB|cording to | +1800|5114|30115|3|45|45859.95|0.07|0.03|A|F|1993-08-08|1993-09-23|1993-08-21|COLLECT COD|TRUCK|ake closely | +1801|894667|32219|1|7|11631.34|0.04|0.08|N|O|1997-09-15|1997-10-05|1997-09-17|TAKE BACK RETURN|TRUCK|lithely expr| +1801|655990|5991|2|20|38919.20|0.04|0.01|N|O|1997-11-20|1997-11-07|1997-11-29|DELIVER IN PERSON|REG AIR|packages. q| +1801|212906|419|3|48|87306.72|0.08|0.00|N|O|1997-09-16|1997-10-15|1997-10-09|NONE|REG AIR| run furiously regular pinto| +1801|307970|45489|4|23|45493.08|0.09|0.02|N|O|1997-09-05|1997-10-24|1997-09-24|NONE|MAIL|pending de| +1801|44991|7492|5|10|19359.90|0.00|0.00|N|O|1997-09-27|1997-11-02|1997-09-29|TAKE BACK RETURN|MAIL|gle express platelets. slyl| +1801|158895|8896|6|7|13677.23|0.01|0.02|N|O|1997-09-19|1997-10-28|1997-09-28|COLLECT COD|REG AIR|lar, regular instruct| +1801|537151|49662|7|27|32079.51|0.04|0.08|N|O|1997-11-20|1997-10-27|1997-12-18|DELIVER IN PERSON|RAIL| maintain quickly above the u| +1802|894349|6867|1|38|51045.40|0.00|0.03|A|F|1994-12-20|1995-01-03|1994-12-23|NONE|TRUCK|furiously final dolphin| +1802|321724|9243|2|26|45388.46|0.01|0.03|R|F|1994-10-18|1995-01-06|1994-11-06|TAKE BACK RETURN|TRUCK|uickly accord| +1802|213415|25920|3|33|43837.20|0.07|0.01|R|F|1995-01-07|1994-12-23|1995-01-30|TAKE BACK RETURN|RAIL|l packages detect | +1803|413008|38025|1|48|44207.04|0.08|0.01|N|O|1996-07-16|1996-08-15|1996-08-13|COLLECT COD|REG AIR|ideas; ironic, special packages after the | +1803|423460|48477|2|9|12450.96|0.04|0.01|N|O|1996-09-17|1996-09-07|1996-10-14|NONE|TRUCK|eposits use enticin| +1803|86310|48812|3|22|28518.82|0.03|0.02|N|O|1996-08-22|1996-08-16|1996-08-28|NONE|FOB|ts according| +1803|609646|9647|4|15|23334.15|0.09|0.05|N|O|1996-09-21|1996-08-24|1996-09-28|COLLECT COD|AIR|sits. busy depo| +1804|892204|17239|1|14|16746.24|0.10|0.06|R|F|1995-05-07|1995-02-08|1995-05-08|NONE|FOB|silent courts nag about the slow| +1805|471676|34186|1|26|42838.90|0.03|0.07|A|F|1992-06-28|1992-09-15|1992-07-12|TAKE BACK RETURN|TRUCK|tructions must | +1805|457893|45421|2|46|85140.02|0.02|0.00|A|F|1992-07-17|1992-08-21|1992-08-09|DELIVER IN PERSON|REG AIR|ar packages. pending pinto be| +1805|803006|40555|3|21|19088.16|0.08|0.06|R|F|1992-08-20|1992-09-11|1992-08-23|DELIVER IN PERSON|RAIL|special asymptotes. furiously speci| +1805|112713|12714|4|1|1725.71|0.08|0.07|R|F|1992-07-30|1992-08-25|1992-08-22|TAKE BACK RETURN|TRUCK|ironic, even requests| +1805|367178|29686|5|26|32374.16|0.01|0.02|R|F|1992-10-08|1992-07-23|1992-10-16|COLLECT COD|TRUCK|ending pinto beans cajole quickly. regul| +1805|148989|23994|6|47|95785.06|0.02|0.05|R|F|1992-09-18|1992-08-11|1992-09-29|TAKE BACK RETURN|SHIP|al deposits| +1806|1029|13530|1|47|43710.94|0.10|0.05|A|F|1992-04-20|1992-04-30|1992-04-28|NONE|REG AIR|s wake deposits. deposits throughout t| +1807|254461|4462|1|17|24062.65|0.07|0.06|R|F|1994-01-25|1994-01-08|1994-02-23|NONE|RAIL|quests alongside of the excuses cajo| +1807|709339|21854|2|33|44493.90|0.07|0.00|A|F|1993-12-18|1994-01-21|1993-12-26|TAKE BACK RETURN|REG AIR|ven packages ar| +1832|560584|48118|1|20|32891.20|0.07|0.02|N|O|1996-11-03|1996-08-20|1996-11-07|NONE|MAIL|ly ironic requests. never express | +1832|724020|24021|2|22|22967.78|0.05|0.03|N|O|1996-09-30|1996-09-19|1996-10-30|TAKE BACK RETURN|REG AIR|ts. regula| +1832|601275|26300|3|39|45873.36|0.00|0.02|N|O|1996-09-25|1996-10-07|1996-10-05|TAKE BACK RETURN|RAIL|usly ironic pl| +1833|992277|29835|1|35|47923.05|0.00|0.04|N|O|1997-02-16|1996-12-14|1997-03-07|DELIVER IN PERSON|RAIL|ges. fluffily unusual dolphins cajole caref| +1834|680646|30647|1|46|74824.06|0.10|0.07|N|O|1995-12-13|1995-10-27|1996-01-06|DELIVER IN PERSON|FOB|y regular dependencies-- slyly pending pint| +1834|611958|11959|2|49|91626.08|0.08|0.07|N|O|1995-09-13|1995-10-12|1995-10-06|NONE|RAIL|final packages haggle quickly? furiously | +1834|175386|12896|3|14|20459.32|0.09|0.03|N|O|1995-10-14|1995-11-22|1995-11-08|NONE|RAIL|nstructions print blithely bold foxes. ex| +1834|698322|23349|4|17|22444.93|0.08|0.00|N|O|1995-08-26|1995-11-12|1995-09-02|NONE|REG AIR|y ironic packages. quickly speci| +1835|469235|44254|1|43|51781.03|0.00|0.08|N|O|1995-06-28|1995-06-01|1995-07-26|TAKE BACK RETURN|RAIL|ccounts haggle: fluffily regula| +1835|416053|41070|2|45|43606.35|0.10|0.00|R|F|1995-04-01|1995-06-02|1995-04-29|NONE|MAIL|dependencies | +1835|591245|16268|3|22|29396.84|0.08|0.02|A|F|1995-05-12|1995-04-23|1995-05-18|NONE|RAIL|s. regular | +1835|45278|32779|4|12|14679.24|0.01|0.00|R|F|1995-03-19|1995-06-02|1995-04-12|TAKE BACK RETURN|MAIL|regular, speci| +1835|977465|39985|5|13|20051.46|0.08|0.00|A|F|1995-03-19|1995-05-03|1995-03-31|NONE|SHIP|pecial ins| +1836|869548|19549|1|28|42490.00|0.05|0.01|N|F|1995-06-17|1995-03-29|1995-06-22|DELIVER IN PERSON|FOB| final packages affix express, exp| +1836|477214|39724|2|28|33353.32|0.02|0.06|A|F|1995-05-08|1995-05-25|1995-06-06|COLLECT COD|TRUCK|lar pearls wak| +1837|516537|41558|1|11|17088.61|0.02|0.01|N|O|1995-09-08|1995-07-01|1995-09-27|TAKE BACK RETURN|MAIL| pinto beans| +1837|435931|10948|2|8|14935.28|0.02|0.08|N|O|1995-09-10|1995-07-31|1995-09-15|DELIVER IN PERSON|RAIL|slyly regular th| +1837|677802|15342|3|39|69411.03|0.04|0.01|N|O|1995-08-05|1995-07-19|1995-08-12|DELIVER IN PERSON|FOB|uriously above the furiou| +1837|806006|18523|4|35|31918.60|0.04|0.08|N|O|1995-09-10|1995-07-31|1995-09-12|DELIVER IN PERSON|RAIL|ely dogged deposits wake qui| +1837|536391|48902|5|4|5709.48|0.06|0.06|N|F|1995-06-12|1995-08-10|1995-06-20|COLLECT COD|REG AIR|furiously across the quickly final | +1837|107862|32867|6|45|84143.70|0.08|0.03|N|O|1995-08-10|1995-08-05|1995-09-08|COLLECT COD|FOB| packages boost furiously along the qui| +1837|829590|17139|7|38|57742.90|0.01|0.05|N|O|1995-08-24|1995-08-03|1995-09-09|TAKE BACK RETURN|TRUCK|olites. carefully regular courts wake furi| +1838|906172|43727|1|39|45947.07|0.07|0.04|N|O|1998-05-09|1998-05-06|1998-05-24|TAKE BACK RETURN|REG AIR|e pinto beans. bold a| +1839|873709|11261|1|30|50479.80|0.07|0.05|A|F|1994-05-03|1994-06-01|1994-05-15|TAKE BACK RETURN|MAIL|iously final pains. | +1839|420505|20506|2|9|12829.32|0.00|0.06|A|F|1994-06-12|1994-06-25|1994-06-24|COLLECT COD|REG AIR|riously quickly| +1864|418114|30623|1|42|43347.78|0.06|0.06|N|O|1998-08-09|1998-07-30|1998-08-20|DELIVER IN PERSON|AIR|ges wake. final, pending pinto beans besi| +1864|231358|43863|2|4|5157.36|0.10|0.08|N|O|1998-08-29|1998-07-28|1998-09-17|TAKE BACK RETURN|AIR|olites. furiously i| +1864|424009|24010|3|42|39185.16|0.04|0.03|N|O|1998-08-01|1998-07-22|1998-08-27|DELIVER IN PERSON|SHIP|s excuses about the furiously| +1864|315110|2629|4|39|43878.90|0.03|0.07|N|O|1998-06-24|1998-07-18|1998-07-04|NONE|RAIL|y. slyly ironic depend| +1864|48660|36161|5|8|12869.28|0.09|0.01|N|O|1998-09-27|1998-07-25|1998-10-01|DELIVER IN PERSON|REG AIR|ly packages. carefully unusual i| +1865|571014|21015|1|20|21699.80|0.06|0.02|A|F|1993-01-25|1993-03-26|1993-02-19|COLLECT COD|TRUCK| furiously express pinto beans| +1865|32007|44508|2|34|31926.00|0.02|0.08|R|F|1993-04-14|1993-03-02|1993-04-25|DELIVER IN PERSON|REG AIR|sits are according to the f| +1865|938221|740|3|43|54144.74|0.10|0.03|A|F|1993-02-18|1993-03-23|1993-03-06|DELIVER IN PERSON|RAIL|s are furiously except| +1865|669416|44443|4|13|18009.94|0.08|0.01|A|F|1993-04-10|1993-03-05|1993-04-16|NONE|SHIP|p slyly slyly special deposits. qu| +1865|863732|26250|5|9|15261.21|0.02|0.00|R|F|1993-01-31|1993-03-02|1993-02-12|COLLECT COD|RAIL|n theodolites use furiously pe| +1866|259178|46694|1|3|3411.48|0.07|0.02|A|F|1992-09-17|1992-10-15|1992-09-22|COLLECT COD|AIR|otes. furiously | +1866|991055|28613|2|4|4584.04|0.09|0.01|A|F|1992-09-27|1992-11-06|1992-09-28|DELIVER IN PERSON|SHIP| lose. carefu| +1866|648622|36159|3|35|54970.65|0.10|0.02|R|F|1992-12-03|1992-09-26|1992-12-13|COLLECT COD|AIR| ironic dept| +1866|388819|13834|4|45|85851.00|0.08|0.07|A|F|1992-10-19|1992-10-21|1992-10-31|COLLECT COD|FOB|ly even deposits amo| +1866|872793|35311|5|17|30017.75|0.05|0.08|R|F|1992-09-26|1992-09-29|1992-10-13|DELIVER IN PERSON|MAIL|iously unu| +1866|22836|22837|6|30|52764.90|0.03|0.07|A|F|1992-11-19|1992-10-29|1992-12-11|COLLECT COD|TRUCK|lar Tiresias accordi| +1867|98227|10729|1|42|51459.24|0.04|0.07|R|F|1993-07-08|1993-06-04|1993-07-11|NONE|TRUCK| above the furiously regular package| +1867|899615|12133|2|27|43593.39|0.00|0.01|R|F|1993-05-04|1993-07-21|1993-06-01|TAKE BACK RETURN|RAIL|to beans. slyly qu| +1867|818927|31444|3|13|23996.44|0.06|0.02|A|F|1993-08-13|1993-07-22|1993-09-06|TAKE BACK RETURN|FOB| the furiously ironic packages. fur| +1867|697413|9927|4|30|42311.40|0.07|0.07|R|F|1993-07-16|1993-07-01|1993-08-11|COLLECT COD|MAIL|refully regular requests. express sautern| +1867|416772|41789|5|37|62483.75|0.10|0.00|R|F|1993-07-11|1993-06-23|1993-08-05|DELIVER IN PERSON|REG AIR|refully ironic pinto be| +1868|99400|36904|1|24|33585.60|0.07|0.01|R|F|1992-05-17|1992-07-03|1992-06-04|DELIVER IN PERSON|TRUCK| pending deposits wake| +1868|609888|22401|2|49|88094.65|0.07|0.02|R|F|1992-05-02|1992-06-29|1992-05-18|DELIVER IN PERSON|MAIL| haggle. ca| +1868|372249|22250|3|3|3963.69|0.00|0.01|R|F|1992-05-10|1992-06-12|1992-05-22|COLLECT COD|TRUCK| are. ideas among the blit| +1868|387463|24985|4|10|15504.50|0.07|0.06|R|F|1992-06-22|1992-05-25|1992-06-24|TAKE BACK RETURN|TRUCK|yly ironic pinto beans | +1868|89614|27118|5|46|73766.06|0.08|0.07|R|F|1992-07-11|1992-06-12|1992-08-09|DELIVER IN PERSON|AIR| foxes haggle carefull| +1868|130066|17573|6|45|49322.70|0.02|0.01|R|F|1992-06-30|1992-05-28|1992-07-14|COLLECT COD|TRUCK| even attainments nag behind th| +1868|10552|35553|7|16|23400.80|0.01|0.05|A|F|1992-07-14|1992-06-03|1992-08-12|DELIVER IN PERSON|REG AIR|blithely blithely unusual de| +1869|330838|43345|1|30|56064.60|0.05|0.00|N|O|1996-08-05|1996-06-07|1996-08-09|DELIVER IN PERSON|TRUCK|y players. slyly ironic requests| +1869|382896|32897|2|38|75197.44|0.09|0.00|N|O|1996-05-02|1996-07-07|1996-05-20|COLLECT COD|RAIL|en deposits? furiously unusual packages | +1869|329750|4763|3|41|72969.34|0.00|0.00|N|O|1996-06-30|1996-06-14|1996-07-13|TAKE BACK RETURN|TRUCK|ests eat blithely| +1869|103088|28093|4|16|17457.28|0.01|0.06|N|O|1996-06-08|1996-07-25|1996-07-04|DELIVER IN PERSON|TRUCK|ld requests. carefully regular deposits ac| +1869|595656|33190|5|9|15764.67|0.10|0.02|N|O|1996-06-06|1996-06-29|1996-06-17|TAKE BACK RETURN|MAIL| about the foxes. caref| +1869|175802|809|6|40|75112.00|0.08|0.07|N|O|1996-06-15|1996-06-25|1996-06-21|NONE|SHIP|ag enticingly fluffily final ideas. | +1869|700676|13191|7|20|33532.80|0.01|0.00|N|O|1996-06-17|1996-07-29|1996-06-24|TAKE BACK RETURN|TRUCK| cajole after the even theodolites. furiou| +1870|255163|17669|1|31|34662.65|0.00|0.01|N|O|1996-10-21|1996-10-30|1996-11-10|NONE|AIR|ngside of the express, even depe| +1870|516904|16905|2|30|57626.40|0.05|0.01|N|O|1996-10-20|1996-10-03|1996-10-27|COLLECT COD|REG AIR|xcuses. quickly| +1870|603454|15967|3|50|67871.00|0.04|0.00|N|O|1996-12-10|1996-10-18|1996-12-14|TAKE BACK RETURN|FOB|ns. carefully permanent theodolites sleep| +1870|242521|5026|4|2|2927.02|0.09|0.07|N|O|1996-10-24|1996-11-20|1996-11-08|TAKE BACK RETURN|SHIP|ng packages. quickly bold | +1870|46530|9031|5|9|13288.77|0.01|0.00|N|O|1996-12-16|1996-11-18|1997-01-09|NONE|REG AIR|al tithes. blithely special packages| +1870|20952|45953|6|16|29967.20|0.03|0.08|N|O|1996-12-12|1996-10-13|1997-01-06|DELIVER IN PERSON|RAIL|althy requests a| +1870|132701|32702|7|4|6934.80|0.07|0.04|N|O|1996-11-11|1996-10-20|1996-12-03|TAKE BACK RETURN|REG AIR|fully final ide| +1871|302620|15127|1|5|8113.05|0.06|0.00|A|F|1995-03-16|1995-04-28|1995-03-31|TAKE BACK RETURN|MAIL|e the packages. slyly| +1896|589708|2220|1|15|26965.20|0.05|0.07|R|F|1992-02-26|1992-03-22|1992-03-04|NONE|REG AIR|thely final accounts haggle. pen| +1896|217978|17979|2|8|15167.68|0.07|0.08|A|F|1992-03-08|1992-04-09|1992-03-15|NONE|TRUCK|ly bold deposits nag| +1896|541232|3743|3|17|21644.57|0.00|0.04|A|F|1992-03-08|1992-04-03|1992-03-11|DELIVER IN PERSON|SHIP|c requests. even theodolites wake blithe| +1896|483671|21199|4|31|51294.15|0.00|0.01|A|F|1992-05-26|1992-02-26|1992-06-17|NONE|FOB| requests about the c| +1896|54788|42292|5|44|76682.32|0.08|0.00|A|F|1992-04-14|1992-02-26|1992-04-20|COLLECT COD|MAIL|he ironic, ironic notornis use| +1896|806467|44016|6|50|68671.00|0.07|0.05|R|F|1992-05-24|1992-03-01|1992-06-03|COLLECT COD|FOB|s affix about the quic| +1896|279800|29801|7|14|24917.06|0.07|0.00|R|F|1992-02-14|1992-03-01|1992-02-25|TAKE BACK RETURN|REG AIR|ress courts haggle. quickly final excuse| +1897|595451|7963|1|30|46392.90|0.08|0.01|N|O|1996-09-26|1996-10-06|1996-09-27|TAKE BACK RETURN|REG AIR|ffix slyly. pinto beans eat furiously furio| +1898|468465|18466|1|18|25801.92|0.03|0.00|R|F|1995-02-23|1995-04-23|1995-03-12|TAKE BACK RETURN|TRUCK|y after the special packages-- blithely| +1899|248003|35516|1|19|18068.81|0.08|0.06|A|F|1994-06-04|1994-06-12|1994-06-18|TAKE BACK RETURN|TRUCK| to the special dolphins haggle furiously q| +1899|171834|21835|2|36|68609.88|0.01|0.01|R|F|1994-05-04|1994-06-09|1994-05-29|DELIVER IN PERSON|RAIL|bold accoun| +1899|3551|3552|3|10|14545.50|0.06|0.04|R|F|1994-04-24|1994-06-05|1994-05-13|TAKE BACK RETURN|REG AIR|osits wake. blithely bold packages a| +1900|307846|45365|1|39|72299.37|0.02|0.01|N|O|1998-08-01|1998-09-05|1998-08-28|COLLECT COD|AIR|ve the slyly ironic | +1901|705930|18445|1|33|63884.70|0.04|0.02|A|F|1992-11-29|1992-11-24|1992-12-28|DELIVER IN PERSON|SHIP|ages haggle blithe| +1901|552449|27472|2|22|33031.24|0.02|0.01|A|F|1992-12-11|1992-11-08|1992-12-28|TAKE BACK RETURN|RAIL| quickly? packages along the express| +1901|999642|37200|3|6|10449.60|0.04|0.07|R|F|1993-01-20|1992-12-12|1993-02-03|NONE|MAIL|ptotes haggle carefully around the p| +1902|621904|46929|1|32|58427.84|0.00|0.08|N|O|1998-05-12|1998-05-19|1998-05-23|COLLECT COD|TRUCK|inal packages! b| +1902|331082|43589|2|29|32279.03|0.00|0.00|N|O|1998-06-30|1998-05-23|1998-07-20|COLLECT COD|REG AIR|y even pinto beans. quickly final theodo| +1902|487475|25003|3|37|54110.65|0.01|0.00|N|O|1998-06-09|1998-06-17|1998-07-09|TAKE BACK RETURN|FOB|c platelets. platelets affix. blithely bo| +1902|980431|5470|4|5|7556.95|0.08|0.04|N|O|1998-06-24|1998-05-31|1998-07-02|NONE|FOB|each carefully | +1902|92340|29844|5|10|13323.40|0.09|0.07|N|O|1998-05-17|1998-04-29|1998-06-03|COLLECT COD|SHIP|eep slyly foxes. ex| +1902|950594|25633|6|32|52625.60|0.08|0.00|N|O|1998-06-19|1998-06-02|1998-06-27|COLLECT COD|REG AIR|ve the pending d| +1902|617299|4836|7|40|48650.40|0.06|0.01|N|O|1998-04-11|1998-05-04|1998-04-23|DELIVER IN PERSON|FOB|sits. carefully bold excuses| +1903|940742|15779|1|26|46350.20|0.02|0.01|A|F|1993-07-31|1993-06-24|1993-08-09|COLLECT COD|AIR|ending, express dependencies. si| +1903|39360|1861|2|17|22089.12|0.01|0.03|R|F|1993-07-20|1993-06-22|1993-07-25|DELIVER IN PERSON|SHIP|as. carefully ironic accounts| +1903|511990|37011|3|15|30029.55|0.10|0.02|R|F|1993-08-04|1993-06-25|1993-08-15|NONE|TRUCK|eas. close no| +1903|999977|49978|4|50|103846.50|0.08|0.03|R|F|1993-06-23|1993-06-23|1993-07-05|COLLECT COD|AIR|tructions need to integrate | +1903|605262|17775|5|49|57194.27|0.04|0.07|R|F|1993-07-09|1993-06-29|1993-07-30|DELIVER IN PERSON|SHIP|e blithely express escapades. | +1903|628580|28581|6|18|27153.90|0.07|0.03|R|F|1993-05-16|1993-06-18|1993-05-21|NONE|AIR|beans. thinly sp| +1903|534365|46876|7|5|6996.70|0.05|0.00|R|F|1993-05-30|1993-06-16|1993-06-05|NONE|FOB| carefully final packages. blithely unu| +1928|63297|13298|1|45|56713.05|0.06|0.00|N|O|1998-01-16|1998-01-20|1998-01-26|COLLECT COD|MAIL|ts. blithely ironic instructions acr| +1928|818847|31364|2|1|1765.80|0.09|0.03|N|O|1998-01-07|1997-12-11|1998-01-23|NONE|FOB|sits nag furiously acr| +1929|305718|5719|1|6|10342.20|0.00|0.01|N|O|1998-01-27|1998-03-19|1998-02-21|NONE|RAIL|tions. pending, regular requests| +1929|196443|46444|2|28|43104.32|0.01|0.02|N|O|1998-01-14|1998-02-10|1998-01-19|DELIVER IN PERSON|SHIP|ickly final foxe| +1930|726583|26584|1|12|19314.60|0.03|0.07|N|O|1997-11-17|1997-10-15|1997-11-26|TAKE BACK RETURN|AIR|. even packages use about the quic| +1930|664823|27337|2|23|41119.17|0.06|0.02|N|O|1997-09-10|1997-10-12|1997-09-20|NONE|AIR|elets haggle quic| +1931|880544|18096|1|48|73176.00|0.08|0.03|R|F|1995-01-24|1995-01-29|1995-02-02|DELIVER IN PERSON|TRUCK| slyly brave | +1932|17473|29974|1|25|34761.75|0.02|0.08|N|O|1995-11-27|1995-10-22|1995-12-10|TAKE BACK RETURN|RAIL|nments sleep quic| +1933|47386|47387|1|50|66669.00|0.04|0.01|A|F|1995-03-02|1995-03-26|1995-03-30|DELIVER IN PERSON|RAIL|eposits integrate. fur| +1933|413465|13466|2|34|46866.96|0.02|0.06|R|F|1995-02-11|1995-02-17|1995-02-21|TAKE BACK RETURN|SHIP|are above the slyly qu| +1934|942122|42123|1|28|32594.24|0.10|0.06|A|F|1994-08-01|1994-07-28|1994-08-02|NONE|TRUCK|regular platelets across the p| +1935|370889|45904|1|35|68595.45|0.09|0.00|N|O|1997-02-14|1997-01-09|1997-02-17|NONE|TRUCK| sleep boldly blithely ironi| +1960|317012|42025|1|19|19551.00|0.06|0.03|R|F|1995-01-31|1995-03-01|1995-02-04|NONE|TRUCK| use blithely. furiously even deposits abo| +1960|11982|49483|2|38|71971.24|0.06|0.02|A|F|1995-01-26|1995-02-07|1995-02-07|COLLECT COD|FOB|packages play furiously. regu| +1960|378758|28759|3|13|23877.62|0.06|0.00|R|F|1995-02-26|1995-02-09|1995-03-19|TAKE BACK RETURN|AIR|ss packages behind the carefully e| +1960|782230|7261|4|34|44614.80|0.10|0.02|A|F|1995-01-26|1995-03-24|1995-02-16|DELIVER IN PERSON|TRUCK|slyly ironic accounts sleep blithely | +1960|935547|48066|5|37|58552.50|0.01|0.05|A|F|1995-04-17|1995-03-03|1995-04-21|COLLECT COD|MAIL|he sometimes| +1960|731797|44312|6|12|21945.12|0.08|0.05|A|F|1995-03-03|1995-03-05|1995-03-28|NONE|MAIL|ve slyly blithely unusual foxes. quickl| +1961|469490|44509|1|47|68595.09|0.02|0.00|A|F|1992-07-25|1992-07-22|1992-08-13|NONE|TRUCK|oxes-- regular,| +1961|704981|17496|2|47|93339.65|0.03|0.06|A|F|1992-08-31|1992-08-02|1992-09-18|COLLECT COD|RAIL|lose quickly | +1961|614525|14526|3|48|69095.52|0.02|0.06|R|F|1992-06-19|1992-06-16|1992-07-06|NONE|FOB|ggle furiously. furiously regular forges| +1961|317894|42907|4|8|15295.04|0.08|0.05|A|F|1992-06-16|1992-07-01|1992-07-13|DELIVER IN PERSON|FOB|ructions. ironic, ironic foxes h| +1962|789679|2195|1|5|8843.20|0.00|0.08|A|F|1994-06-09|1994-06-29|1994-06-11|NONE|AIR|e even ideas. close, fin| +1963|378828|41336|1|14|26695.34|0.09|0.00|N|O|1997-03-20|1997-02-24|1997-03-27|DELIVER IN PERSON|SHIP|f the somas. slowly final accounts sle| +1963|946551|9070|2|42|67095.42|0.04|0.03|N|O|1996-12-24|1997-02-08|1997-01-22|DELIVER IN PERSON|FOB|ions. furiously silent accounts use| +1964|395035|20050|1|26|29380.52|0.10|0.07|R|F|1994-04-21|1994-03-17|1994-05-06|NONE|MAIL|ce of the pending excus| +1964|342958|42959|2|7|14006.58|0.05|0.06|R|F|1994-03-30|1994-03-24|1994-04-28|NONE|FOB|usly ironic packages after the slyl| +1964|83260|45762|3|34|42270.84|0.05|0.06|A|F|1994-04-26|1994-03-05|1994-05-14|TAKE BACK RETURN|REG AIR|eodolites. ironic, final foxes u| +1965|4238|29239|1|33|37693.59|0.07|0.04|N|O|1996-07-27|1996-09-07|1996-07-29|TAKE BACK RETURN|MAIL|permanent depos| +1965|228053|3062|2|39|38260.56|0.07|0.04|N|O|1996-07-04|1996-07-18|1996-07-28|DELIVER IN PERSON|FOB| detect along the final asymptotes| +1965|882176|19728|3|31|35902.03|0.07|0.02|N|O|1996-09-19|1996-07-17|1996-09-29|NONE|MAIL|y players. slyly express ins| +1965|727878|2907|4|48|91480.32|0.05|0.04|N|O|1996-06-26|1996-08-13|1996-07-24|NONE|SHIP|express ideas.| +1966|651685|1686|1|22|36006.30|0.04|0.07|R|F|1992-10-02|1992-08-24|1992-10-28|DELIVER IN PERSON|SHIP|uses haggle furiously along the bl| +1966|869619|32137|2|40|63542.80|0.04|0.01|A|F|1992-08-15|1992-09-20|1992-08-24|COLLECT COD|RAIL|r platelet| +1966|685597|23137|3|5|7912.80|0.04|0.04|A|F|1992-09-07|1992-10-10|1992-09-13|TAKE BACK RETURN|TRUCK|thely even forges cajole around the | +1966|825516|549|4|2|2882.94|0.05|0.03|A|F|1992-11-08|1992-08-14|1992-12-07|COLLECT COD|TRUCK|ly regular foxes. regular, even packag| +1967|953363|3364|1|22|31159.04|0.04|0.05|A|F|1993-05-30|1993-06-24|1993-06-26|NONE|FOB|ress packages i| +1967|158236|20740|2|38|49180.74|0.05|0.06|A|F|1993-04-08|1993-06-25|1993-04-25|COLLECT COD|RAIL|among the blithely even platelets prin| +1967|469350|31860|3|47|62008.51|0.00|0.04|A|F|1993-05-26|1993-06-24|1993-06-13|COLLECT COD|FOB|nic deposi| +1967|363567|38582|4|22|35872.10|0.08|0.01|A|F|1993-05-13|1993-06-06|1993-06-02|NONE|TRUCK|e furiously blithely eve| +1967|454446|16956|5|11|15404.62|0.00|0.08|R|F|1993-07-03|1993-06-01|1993-07-29|TAKE BACK RETURN|RAIL|elieve fluffily. slyly unusual asy| +1967|873653|11205|6|30|48798.30|0.05|0.03|A|F|1993-06-10|1993-06-05|1993-06-15|COLLECT COD|REG AIR|equests affix blithely evenly final pint| +1992|48064|10565|1|39|39470.34|0.07|0.04|A|F|1995-03-23|1995-01-08|1995-04-04|COLLECT COD|TRUCK|ntegrate carefu| +1992|805466|43015|2|3|4114.26|0.06|0.03|R|F|1995-02-12|1995-01-11|1995-02-26|DELIVER IN PERSON|REG AIR|r pinto beans. final foxes c| +1992|451846|1847|3|15|26967.30|0.05|0.00|A|F|1995-03-02|1995-01-17|1995-03-20|TAKE BACK RETURN|RAIL|ecial, permanent pearls. slyl| +1992|173359|23360|4|48|68752.80|0.07|0.04|A|F|1995-01-29|1995-02-20|1995-02-15|COLLECT COD|RAIL|ously along the accounts. finally final| +1992|640193|2706|5|18|20396.88|0.04|0.05|A|F|1995-02-20|1994-12-30|1995-03-08|DELIVER IN PERSON|REG AIR|ely about the | +1993|709127|34156|1|35|39763.15|0.01|0.06|N|O|1998-05-17|1998-06-11|1998-06-02|COLLECT COD|SHIP|arthogs. fi| +1993|290679|28195|2|10|16696.60|0.10|0.06|N|O|1998-08-13|1998-07-20|1998-09-03|COLLECT COD|AIR| according to the even packa| +1993|440521|3030|3|20|29230.00|0.02|0.03|N|O|1998-05-19|1998-06-28|1998-05-28|DELIVER IN PERSON|REG AIR|fully even ideas will have to s| +1993|829195|4228|4|18|20234.70|0.02|0.05|N|O|1998-07-29|1998-07-20|1998-08-22|DELIVER IN PERSON|MAIL| slyly unusual packages are furiously ev| +1993|273911|48922|5|25|47122.50|0.05|0.05|N|O|1998-08-21|1998-06-12|1998-08-22|DELIVER IN PERSON|FOB|thin the quickly ironic pear| +1993|618740|18741|6|38|63030.98|0.02|0.03|N|O|1998-07-27|1998-06-08|1998-08-15|NONE|REG AIR|ions boost fluffily final| +1993|153047|3048|7|46|50601.84|0.02|0.03|N|O|1998-07-13|1998-06-03|1998-08-09|DELIVER IN PERSON|MAIL|k theodolites. f| +1994|258396|33407|1|25|33859.50|0.10|0.08|A|F|1992-07-16|1992-08-13|1992-07-31|NONE|AIR|al ideas wake about the bravely fina| +1994|851974|1975|2|40|77037.20|0.05|0.07|R|F|1992-09-16|1992-08-28|1992-10-05|DELIVER IN PERSON|SHIP|ffix after the blithe| +1994|116056|3563|3|36|38593.80|0.10|0.01|A|F|1992-08-02|1992-08-31|1992-08-10|TAKE BACK RETURN|FOB|its print fluffily about the idea| +1995|561545|49079|1|20|32130.40|0.02|0.02|N|O|1997-04-13|1997-04-04|1997-04-29|NONE|MAIL|ular pinto beans. slyly fin| +1995|877913|15465|2|45|85089.15|0.10|0.04|N|O|1997-04-25|1997-03-08|1997-05-10|COLLECT COD|TRUCK|cial foxes cajo| +1996|679660|17200|1|32|52468.16|0.03|0.01|N|O|1997-02-17|1997-03-10|1997-02-27|NONE|REG AIR|ar, special requests wake fur| +1996|40819|40820|2|23|40475.63|0.03|0.03|N|O|1997-03-11|1997-03-22|1997-03-25|TAKE BACK RETURN|REG AIR|ackages sublate blithely unu| +1996|34274|34275|3|1|1208.27|0.04|0.03|N|O|1997-01-22|1997-02-07|1997-02-01|TAKE BACK RETURN|SHIP|xes serve requests. blithely ironic id| +1997|692227|29767|1|21|25602.99|0.08|0.04|R|F|1994-04-26|1994-06-13|1994-05-25|TAKE BACK RETURN|SHIP| furiously even| +1997|244386|31899|2|39|51884.43|0.02|0.05|A|F|1994-05-18|1994-05-29|1994-05-23|NONE|SHIP|ccounts wake fl| +1997|384236|9251|3|17|22443.74|0.01|0.01|R|F|1994-06-26|1994-06-06|1994-07-13|COLLECT COD|RAIL|- furiously bol| +1997|846136|8653|4|17|18395.53|0.08|0.05|R|F|1994-04-27|1994-05-04|1994-05-22|COLLECT COD|RAIL|yly even accounts cajole quickly blithel| +1997|4198|29199|5|32|35270.08|0.10|0.07|R|F|1994-04-07|1994-04-20|1994-04-13|TAKE BACK RETURN|AIR|ix about the foxes. excus| +1997|551558|26581|6|41|65990.73|0.02|0.02|A|F|1994-05-11|1994-06-08|1994-05-27|NONE|AIR| even accounts use slyl| +1998|715039|40068|1|4|4216.00|0.02|0.04|N|O|1996-08-17|1996-10-04|1996-08-23|DELIVER IN PERSON|REG AIR|ilent requests sleep quickly around the| +1998|644637|32174|2|5|7908.00|0.09|0.01|N|O|1996-10-21|1996-10-16|1996-11-16|DELIVER IN PERSON|TRUCK|sheaves. carefully pen| +1998|407307|7308|3|47|57071.16|0.05|0.08|N|O|1996-10-27|1996-09-03|1996-11-13|NONE|REG AIR| deposits engage furiously af| +1999|840977|28526|1|41|78635.13|0.08|0.07|N|O|1998-03-31|1998-03-02|1998-04-02|DELIVER IN PERSON|REG AIR|final packages.| +1999|293732|18743|2|17|29337.24|0.01|0.08|N|O|1998-02-22|1998-02-17|1998-03-01|COLLECT COD|FOB|le quickly. slyly pending pl| +1999|749979|49980|3|31|62897.14|0.10|0.00|N|O|1998-03-31|1998-03-04|1998-04-06|COLLECT COD|RAIL|its haggle quickly express, ironic dolphin| +1999|885204|22756|4|46|54701.36|0.05|0.03|N|O|1998-02-24|1998-02-19|1998-03-12|TAKE BACK RETURN|SHIP|even theodolites. even foxes caj| +1999|609273|9274|5|29|34284.96|0.01|0.08|N|O|1998-02-08|1998-03-09|1998-02-12|NONE|AIR|express accounts wake accordin| +1999|41426|41427|6|24|32818.08|0.06|0.05|N|O|1998-04-16|1998-04-01|1998-05-10|TAKE BACK RETURN|RAIL|y. accounts at| +1999|244039|31552|7|2|1966.04|0.02|0.07|N|O|1998-02-13|1998-04-07|1998-02-19|DELIVER IN PERSON|FOB|olites. quick| +2024|553106|3107|1|37|42885.96|0.00|0.03|A|F|1992-06-27|1992-07-01|1992-07-19|NONE|TRUCK|g furiously al| +2024|38627|1128|2|43|67321.66|0.09|0.05|R|F|1992-06-08|1992-07-06|1992-07-05|NONE|TRUCK|structions poach fluffily. pl| +2024|191633|4137|3|27|46565.01|0.04|0.07|A|F|1992-06-05|1992-07-16|1992-06-25|NONE|MAIL| courts along the blithely pendi| +2024|766966|16967|4|44|89448.92|0.02|0.04|A|F|1992-05-21|1992-07-02|1992-06-02|COLLECT COD|RAIL|ckages sleep carefu| +2024|395404|7912|5|26|38984.14|0.09|0.02|A|F|1992-07-13|1992-08-08|1992-07-20|TAKE BACK RETURN|RAIL|requests. slyly iron| +2025|103628|41135|1|37|60369.94|0.03|0.02|A|F|1992-10-12|1992-09-17|1992-11-08|COLLECT COD|TRUCK| theodolites wake| +2025|666512|16513|2|49|72445.52|0.07|0.05|A|F|1992-07-21|1992-10-06|1992-07-29|TAKE BACK RETURN|TRUCK|erve quickly.| +2026|517249|17250|1|46|58246.12|0.05|0.07|A|F|1995-02-06|1995-01-25|1995-02-19|COLLECT COD|SHIP|e blithely ironic deposi| +2026|399757|12265|2|6|11140.44|0.08|0.02|A|F|1995-01-01|1994-12-30|1995-01-15|DELIVER IN PERSON|SHIP|y along the car| +2026|706874|31903|3|39|73352.76|0.00|0.06|R|F|1995-02-01|1995-01-30|1995-03-03|COLLECT COD|RAIL|blithely sil| +2026|415411|15412|4|3|3979.17|0.08|0.05|R|F|1995-02-10|1995-01-28|1995-02-27|NONE|FOB|xpress, regular excuses are. caref| +2026|812456|5|5|46|62946.86|0.00|0.05|R|F|1995-03-15|1995-01-25|1995-03-31|NONE|SHIP|tructions are furiously f| +2026|941936|41937|6|40|79115.60|0.08|0.08|R|F|1994-12-30|1995-02-06|1995-01-01|TAKE BACK RETURN|MAIL|arefully. deposits wake. ideas cajole | +2026|103525|41032|7|18|27513.36|0.10|0.07|A|F|1994-12-20|1994-12-24|1994-12-25|TAKE BACK RETURN|MAIL|leep ruthless Tiresias. slyly | +2027|941016|41017|1|46|48620.62|0.05|0.07|R|F|1993-01-03|1993-03-18|1993-01-13|NONE|FOB|the ironic, even pinto beans wa| +2027|651486|39026|2|11|15811.95|0.01|0.06|A|F|1993-04-07|1993-02-14|1993-04-12|NONE|SHIP|s. bold requests are. ironic deposit| +2027|519769|44790|3|9|16098.66|0.06|0.02|R|F|1992-12-30|1993-02-03|1993-01-09|DELIVER IN PERSON|SHIP|latelets. silent packages cajole. quickly | +2027|749978|12493|4|25|50698.50|0.02|0.02|A|F|1992-12-27|1993-01-28|1993-01-20|TAKE BACK RETURN|AIR|lets boost dolphins. furiously spe| +2027|879905|42423|5|19|35812.34|0.03|0.00|A|F|1993-04-10|1993-03-16|1993-04-19|TAKE BACK RETURN|REG AIR|the even pinto beans nag along th| +2028|737900|415|1|5|9689.35|0.06|0.02|R|F|1995-03-12|1995-01-08|1995-04-04|NONE|TRUCK|slyly ironic deposits. blithely final| +2028|869686|44721|2|28|46357.92|0.02|0.02|R|F|1995-03-08|1995-01-31|1995-03-30|COLLECT COD|RAIL|gle fluffily about the slyly iron| +2028|803258|28291|3|28|32513.88|0.09|0.08|A|F|1995-03-18|1995-02-16|1995-03-23|TAKE BACK RETURN|MAIL|s. blithely regular deposits was slyly f| +2028|342428|4935|4|33|48523.53|0.03|0.05|A|F|1995-03-13|1995-01-26|1995-03-19|TAKE BACK RETURN|TRUCK|le blithely blithely final | +2029|857885|32920|1|41|75556.44|0.06|0.07|N|O|1995-11-16|1995-11-01|1995-11-27|DELIVER IN PERSON|AIR|leep slyly according to the express, bold p| +2029|458744|46272|2|18|30648.96|0.03|0.07|N|O|1995-09-11|1995-10-10|1995-09-18|COLLECT COD|MAIL| slyly unusual accounts sleep. quick| +2030|716246|3789|1|24|30293.04|0.07|0.05|N|O|1998-04-03|1998-05-01|1998-04-16|TAKE BACK RETURN|RAIL|iously along| +2030|944854|7373|2|2|3797.62|0.08|0.05|N|O|1998-04-27|1998-04-13|1998-05-15|COLLECT COD|TRUCK|o beans. unusual, perma| +2030|147562|22567|3|18|28972.08|0.05|0.07|N|O|1998-06-02|1998-05-02|1998-06-16|TAKE BACK RETURN|MAIL| special packages. accounts eat accordi| +2030|68869|31371|4|47|86379.42|0.08|0.05|N|O|1998-05-10|1998-05-18|1998-06-09|TAKE BACK RETURN|TRUCK|lly furious packages. never bold co| +2030|470285|20286|5|14|17573.64|0.07|0.03|N|O|1998-05-11|1998-05-17|1998-05-13|DELIVER IN PERSON|RAIL| ironic deposits. packages wake? en| +2030|75269|12773|6|17|21152.42|0.00|0.03|N|O|1998-04-28|1998-05-26|1998-05-23|COLLECT COD|SHIP|hins use-- furious| +2030|36429|11430|7|3|4096.26|0.00|0.06|N|O|1998-04-06|1998-05-29|1998-04-20|COLLECT COD|RAIL|he carefully regular accounts.| +2031|248540|36053|1|26|38701.78|0.10|0.03|N|O|1997-02-23|1997-03-17|1997-03-06|NONE|AIR|iously iron| +2056|488550|26078|1|20|30770.60|0.07|0.00|R|F|1993-06-04|1993-07-20|1993-06-16|TAKE BACK RETURN|AIR|ckly regular attainments wake quickl| +2056|57223|7224|2|17|20063.74|0.00|0.07|R|F|1993-06-08|1993-07-04|1993-06-28|NONE|AIR|ake quickly fluffi| +2056|736210|11239|3|11|13707.98|0.04|0.01|A|F|1993-07-16|1993-08-21|1993-07-24|COLLECT COD|FOB| instructions. | +2057|826354|26355|1|26|33288.06|0.08|0.03|A|F|1992-09-29|1992-08-18|1992-10-09|DELIVER IN PERSON|MAIL|carefully? quickly express ideas wak| +2057|523605|23606|2|41|66771.78|0.08|0.01|R|F|1992-08-26|1992-09-09|1992-09-16|COLLECT COD|REG AIR|e carefully reg| +2057|213419|932|3|1|1332.40|0.01|0.00|R|F|1992-09-27|1992-09-06|1992-10-27|DELIVER IN PERSON|FOB|y unusual reque| +2057|916428|41465|4|39|56330.82|0.07|0.02|R|F|1992-10-29|1992-09-26|1992-11-07|DELIVER IN PERSON|RAIL|, thin foxes: furiously| +2057|404304|29321|5|28|33831.84|0.03|0.01|R|F|1992-10-04|1992-09-10|1992-11-03|TAKE BACK RETURN|AIR|egular packages ar| +2057|120937|8444|6|25|48948.25|0.00|0.06|R|F|1992-09-12|1992-09-28|1992-10-10|TAKE BACK RETURN|RAIL|ackages after the | +2058|561796|11797|1|28|52017.56|0.00|0.07|R|F|1993-11-19|1994-01-04|1993-12-07|COLLECT COD|FOB|re quickly furiously bold tithes--| +2058|99542|24545|2|36|55495.44|0.08|0.08|R|F|1993-10-24|1993-12-23|1993-11-19|TAKE BACK RETURN|FOB|sleep blithely! carefully pending asympt| +2058|998128|35686|3|2|2452.16|0.09|0.03|R|F|1994-01-21|1993-12-04|1994-01-24|TAKE BACK RETURN|FOB|packages according to the furiously ir| +2058|522915|22916|4|30|58136.70|0.03|0.07|R|F|1994-02-02|1993-12-22|1994-02-19|TAKE BACK RETURN|MAIL|ng to the theodolit| +2058|618347|30860|5|41|51877.71|0.01|0.01|A|F|1993-12-26|1993-11-17|1994-01-07|DELIVER IN PERSON|SHIP|breach. express| +2058|553321|15833|6|19|26111.70|0.10|0.06|A|F|1993-12-04|1993-12-05|1993-12-06|TAKE BACK RETURN|MAIL|ng the carefully special pa| +2058|650864|865|7|28|50815.24|0.06|0.08|R|F|1994-01-22|1993-12-27|1994-01-24|NONE|REG AIR|ironic asymptotes. slyly special asymptot| +2059|63137|25639|1|35|38504.55|0.06|0.08|N|O|1998-08-11|1998-07-02|1998-09-08|DELIVER IN PERSON|MAIL|uests above the carefully bold ac| +2060|268938|6454|1|4|7627.68|0.00|0.05|R|F|1993-04-03|1993-06-12|1993-04-23|COLLECT COD|SHIP|ckages among the slyly special p| +2060|38407|13408|2|35|47089.00|0.01|0.06|A|F|1993-04-14|1993-06-08|1993-04-27|NONE|TRUCK|ly according to the car| +2060|495223|45224|3|12|14618.40|0.10|0.05|R|F|1993-07-15|1993-04-29|1993-07-24|DELIVER IN PERSON|REG AIR| pending ideas. b| +2060|206551|19056|4|7|10202.78|0.04|0.06|A|F|1993-05-16|1993-05-30|1993-06-01|DELIVER IN PERSON|MAIL|are furiously bo| +2060|490521|15540|5|16|24184.00|0.05|0.08|A|F|1993-04-29|1993-05-18|1993-05-22|TAKE BACK RETURN|MAIL|sual requests wake quickly. sometimes pe| +2060|171147|33651|6|30|36544.20|0.03|0.03|A|F|1993-04-07|1993-04-26|1993-04-22|NONE|RAIL|ully ironic packages| +2060|457027|32046|7|46|45264.00|0.02|0.07|R|F|1993-04-29|1993-05-21|1993-05-08|DELIVER IN PERSON|FOB|ng theodolites. pending accou| +2061|242007|29520|1|4|3795.96|0.05|0.01|N|O|1995-08-25|1995-07-19|1995-09-24|NONE|SHIP| furiously again| +2062|922350|9905|1|34|46658.54|0.04|0.01|R|F|1992-09-10|1992-08-06|1992-10-05|TAKE BACK RETURN|REG AIR|inal platelets cajole. slyly bold platelet| +2062|922811|22812|2|3|5501.31|0.07|0.05|R|F|1992-07-01|1992-07-26|1992-07-17|TAKE BACK RETURN|AIR|ymptotes sleep ideas. fu| +2062|669719|32233|3|32|54037.76|0.00|0.04|A|F|1992-08-17|1992-08-04|1992-09-14|DELIVER IN PERSON|AIR|iously final requests eat. fu| +2062|954699|17219|4|17|29812.05|0.06|0.05|R|F|1992-06-16|1992-07-15|1992-06-27|NONE|SHIP|uests integrate blithely| +2062|616058|3595|5|49|47726.98|0.10|0.04|R|F|1992-05-29|1992-07-04|1992-06-07|DELIVER IN PERSON|REG AIR|egular theodolites. regular foxes sle| +2062|73192|10696|6|47|54763.93|0.10|0.07|R|F|1992-06-15|1992-06-20|1992-06-27|COLLECT COD|SHIP| the blithely bold pains doze fluffily aro| +2063|218552|18553|1|9|13234.86|0.06|0.07|A|F|1993-05-29|1993-07-29|1993-06-20|DELIVER IN PERSON|RAIL|ages are furious| +2063|190778|3282|2|7|13081.39|0.03|0.00|R|F|1993-08-16|1993-08-09|1993-08-28|DELIVER IN PERSON|AIR|ffily blithe, regula| +2063|394176|44177|3|11|13971.76|0.01|0.00|R|F|1993-09-12|1993-07-22|1993-09-26|TAKE BACK RETURN|MAIL|thely even req| +2063|903604|28641|4|23|36973.88|0.02|0.06|A|F|1993-07-02|1993-07-03|1993-07-13|COLLECT COD|FOB|s. carefully even acco| +2088|536065|48576|1|29|31930.16|0.08|0.07|R|F|1992-10-08|1992-10-04|1992-10-17|NONE|RAIL| haggle silent courts. always even pinto | +2088|635954|48467|2|46|86936.32|0.07|0.05|A|F|1992-09-24|1992-09-19|1992-10-14|TAKE BACK RETURN|TRUCK| around the carefully even a| +2089|273131|10647|1|43|47477.16|0.05|0.02|N|O|1997-03-22|1997-05-08|1997-04-14|DELIVER IN PERSON|REG AIR|he blithel| +2089|512491|37512|2|23|34579.81|0.05|0.06|N|O|1997-05-10|1997-03-15|1997-05-28|DELIVER IN PERSON|TRUCK| about the ironic, regular asymptotes dete| +2089|421503|9028|3|34|48432.32|0.09|0.03|N|O|1997-05-10|1997-04-05|1997-06-05|TAKE BACK RETURN|TRUCK|. accounts acco| +2090|756500|6501|1|32|49807.04|0.09|0.00|N|O|1997-11-06|1998-01-01|1997-11-07|DELIVER IN PERSON|TRUCK|ake regular pinto beans? slyly final idea| +2091|302300|2301|1|8|10418.32|0.05|0.01|R|F|1994-02-22|1994-02-24|1994-02-24|COLLECT COD|TRUCK|ly above the slyly regular | +2091|747511|47512|2|33|51429.84|0.02|0.08|R|F|1994-03-31|1994-01-31|1994-04-20|TAKE BACK RETURN|TRUCK|ns. furiously ruthless packages abo| +2091|411543|11544|3|27|39272.04|0.07|0.07|A|F|1993-12-06|1994-01-17|1993-12-24|TAKE BACK RETURN|MAIL|uests detect slyly slyly pending accounts. | +2091|800051|25084|4|35|33285.35|0.03|0.00|A|F|1994-02-24|1994-01-27|1994-03-12|TAKE BACK RETURN|AIR|regularly. | +2091|450339|12849|5|43|55440.33|0.10|0.05|R|F|1994-01-15|1994-02-09|1994-02-10|COLLECT COD|AIR| use. furiously ironic deposits integrate c| +2091|833297|33298|6|50|61512.50|0.07|0.08|A|F|1994-03-09|1994-02-27|1994-03-17|DELIVER IN PERSON|FOB|e ironic accounts use slyly bl| +2091|220499|8012|7|18|25550.64|0.09|0.01|R|F|1994-03-18|1994-02-20|1994-04-09|COLLECT COD|MAIL|l accounts nag | +2092|920294|20295|1|35|45998.75|0.00|0.00|N|O|1997-02-07|1996-12-13|1997-02-23|TAKE BACK RETURN|SHIP|haggle slyly around the instr| +2092|373452|23453|2|49|74746.56|0.07|0.06|N|O|1996-11-22|1996-12-10|1996-11-30|DELIVER IN PERSON|AIR|ges! accounts was blithely| +2092|603179|40716|3|41|44367.74|0.07|0.03|N|O|1997-02-20|1996-12-28|1997-03-19|NONE|AIR|lyly. carefull| +2093|654121|29148|1|13|13976.17|0.07|0.02|N|O|1997-07-08|1997-07-09|1997-07-20|COLLECT COD|SHIP|arefully even requests doubt ca| +2093|796592|46593|2|22|37148.32|0.03|0.04|N|O|1997-07-15|1997-06-20|1997-08-09|COLLECT COD|MAIL|deas cajole after th| +2094|611012|36037|1|21|19382.58|0.09|0.05|N|O|1998-06-07|1998-06-01|1998-06-26|DELIVER IN PERSON|FOB|refully fluffily idle packages. carefu| +2095|371121|33629|1|24|28610.64|0.06|0.07|N|O|1995-12-12|1996-02-21|1995-12-13|DELIVER IN PERSON|SHIP|kly. final ideas after the carefully ir| +2095|422457|9982|2|18|24829.74|0.08|0.01|N|O|1995-12-10|1996-02-20|1995-12-18|NONE|FOB| packages; fl| +2095|222167|9680|3|42|45744.30|0.02|0.00|N|O|1996-01-03|1996-01-14|1996-01-30|COLLECT COD|FOB|unusual foxes among | +2095|956822|44380|4|8|15030.24|0.00|0.05|N|O|1995-12-24|1996-01-30|1995-12-31|TAKE BACK RETURN|RAIL|fluffily final theodolites are slyly afte| +2095|296522|34038|5|45|68332.95|0.03|0.00|N|O|1996-02-10|1996-01-28|1996-03-03|TAKE BACK RETURN|RAIL|c, regular | +2095|638563|1076|6|16|24024.48|0.07|0.02|N|O|1995-12-19|1996-01-06|1995-12-26|TAKE BACK RETURN|SHIP|uests haggle furi| +2120|921892|21893|1|39|74640.15|0.06|0.03|N|O|1996-11-02|1996-08-23|1996-11-04|TAKE BACK RETURN|MAIL| blithely furiously final requ| +2120|222743|22744|2|39|64963.47|0.08|0.08|N|O|1996-10-27|1996-08-19|1996-11-03|DELIVER IN PERSON|MAIL|ns. carefully blithe packages are acro| +2120|638401|38402|3|37|49556.69|0.05|0.03|N|O|1996-10-11|1996-09-26|1996-10-24|COLLECT COD|RAIL|nal accounts haggle furiously abov| +2120|591193|3705|4|33|42377.61|0.10|0.03|N|O|1996-11-05|1996-09-20|1996-11-26|NONE|AIR|latelets-- express plate| +2120|179963|29964|5|18|36773.28|0.02|0.03|N|O|1996-10-13|1996-08-24|1996-10-25|TAKE BACK RETURN|SHIP| deposits ca| +2120|633457|8482|6|4|5561.68|0.04|0.07|N|O|1996-07-31|1996-09-15|1996-08-08|DELIVER IN PERSON|REG AIR| final requests eat carefully a| +2121|808354|8355|1|7|8836.17|0.09|0.06|A|F|1994-07-22|1994-05-19|1994-08-18|DELIVER IN PERSON|AIR|ly across the f| +2121|992710|30268|2|37|66698.79|0.08|0.07|A|F|1994-06-06|1994-05-23|1994-06-16|COLLECT COD|SHIP| even, stealthy packag| +2121|473737|23738|3|7|11974.97|0.04|0.05|R|F|1994-06-11|1994-06-18|1994-06-22|DELIVER IN PERSON|AIR|n theodolites. quickly unusual foxes | +2121|81618|44120|4|19|30392.59|0.02|0.01|A|F|1994-06-14|1994-05-25|1994-07-01|DELIVER IN PERSON|SHIP|egular package| +2121|741609|29152|5|9|14855.13|0.04|0.04|R|F|1994-06-29|1994-05-11|1994-07-11|COLLECT COD|FOB| the blithely even platelets| +2121|212814|12815|6|12|20721.60|0.05|0.07|A|F|1994-05-08|1994-05-31|1994-05-19|DELIVER IN PERSON|MAIL|ole quickly against the blithely express| +2121|753755|28786|7|3|5426.16|0.06|0.04|R|F|1994-05-24|1994-05-04|1994-06-20|TAKE BACK RETURN|MAIL|ously blithely slow accounts. regular, e| +2122|350257|37779|1|9|11765.16|0.03|0.06|A|F|1994-07-30|1994-07-11|1994-08-29|TAKE BACK RETURN|FOB|pinto beans after the| +2122|764776|39807|2|13|23929.62|0.05|0.04|R|F|1994-06-16|1994-07-19|1994-06-27|TAKE BACK RETURN|AIR|egular foxes cajole above the furiously| +2122|583403|8426|3|8|11891.04|0.03|0.01|R|F|1994-07-22|1994-08-02|1994-08-07|COLLECT COD|FOB|slyly pending request| +2122|246973|34486|4|49|94078.04|0.09|0.04|R|F|1994-06-18|1994-08-26|1994-07-10|NONE|MAIL|etly bold hockey players. ironic id| +2122|873789|23790|5|7|12339.18|0.07|0.07|R|F|1994-07-15|1994-08-18|1994-07-23|COLLECT COD|TRUCK|hely express dependencies haggle. f| +2123|687329|49843|1|1|1316.29|0.08|0.06|N|O|1997-10-26|1997-10-01|1997-11-03|TAKE BACK RETURN|SHIP|slyly ironic| +2123|938162|13199|2|10|12001.20|0.07|0.03|N|O|1997-09-16|1997-10-24|1997-10-10|COLLECT COD|TRUCK|ly regular deposits hinder always sp| +2123|683708|21248|3|33|55825.11|0.08|0.00|N|O|1997-10-22|1997-11-18|1997-10-26|NONE|FOB|kages affix. patterns hag| +2124|738414|38415|1|19|27595.22|0.08|0.08|R|F|1992-07-11|1992-07-18|1992-08-08|DELIVER IN PERSON|REG AIR|rash across the sl| +2124|520344|45365|2|5|6821.60|0.08|0.04|R|F|1992-08-04|1992-09-01|1992-08-21|NONE|TRUCK|odolites. final, regular | +2124|414324|39341|3|22|27242.60|0.08|0.02|R|F|1992-07-16|1992-08-30|1992-07-31|TAKE BACK RETURN|AIR|beans wake ca| +2124|528367|15898|4|32|44650.88|0.04|0.02|R|F|1992-07-15|1992-08-04|1992-07-30|DELIVER IN PERSON|MAIL|lyly. bold acco| +2124|256671|31682|5|29|47202.14|0.10|0.03|A|F|1992-07-26|1992-08-31|1992-08-03|DELIVER IN PERSON|RAIL|ke furious| +2124|860128|10129|6|42|45699.36|0.06|0.01|R|F|1992-06-22|1992-07-21|1992-07-06|COLLECT COD|RAIL|n deposits| +2124|164415|14416|7|17|25149.97|0.03|0.08|R|F|1992-09-11|1992-08-12|1992-09-15|DELIVER IN PERSON|AIR|uests. fluffily pending pinto beans agai| +2125|307168|32181|1|12|14101.80|0.00|0.02|A|F|1993-07-09|1993-08-25|1993-07-30|NONE|RAIL|ounts. ironic deposits after the| +2125|565322|27834|2|48|66590.40|0.03|0.07|R|F|1993-10-30|1993-08-12|1993-11-07|COLLECT COD|AIR| are furiously. furiously re| +2125|364864|39879|3|49|94513.65|0.00|0.05|A|F|1993-08-01|1993-08-22|1993-08-18|NONE|FOB|e the fluffily unusual acco| +2125|266522|29028|4|42|62517.42|0.09|0.04|A|F|1993-08-26|1993-09-04|1993-09-11|TAKE BACK RETURN|SHIP|carefully blithely expr| +2126|30599|18100|1|25|38239.75|0.10|0.06|R|F|1994-01-24|1994-02-12|1994-02-23|COLLECT COD|FOB|y according to the fluff| +2126|266224|16225|2|49|58320.29|0.04|0.00|A|F|1994-03-23|1994-03-19|1994-04-02|DELIVER IN PERSON|TRUCK| wake furiously furiously special pinto b| +2126|424660|24661|3|15|23769.60|0.03|0.02|A|F|1994-02-01|1994-03-29|1994-02-04|TAKE BACK RETURN|AIR| after the regular, ironic theodolites.| +2126|248376|10881|4|47|62244.92|0.07|0.05|R|F|1994-03-24|1994-03-12|1994-04-19|TAKE BACK RETURN|TRUCK| regular depos| +2126|444864|19881|5|1|1808.84|0.05|0.06|R|F|1994-03-12|1994-02-26|1994-03-13|NONE|SHIP|e theodolites boost. furiousl| +2126|829193|16742|6|40|44886.00|0.01|0.07|A|F|1994-01-04|1994-03-17|1994-01-07|DELIVER IN PERSON|FOB|, ironic dolphins. s| +2126|232087|44592|7|12|12228.84|0.04|0.00|A|F|1994-01-20|1994-03-20|1994-02-16|NONE|AIR|l accounts integrate carefully carefully e| +2127|680800|5827|1|49|87257.73|0.02|0.08|A|F|1994-11-11|1994-09-22|1994-11-25|COLLECT COD|SHIP|y even deposits s| +2127|198206|23213|2|29|37821.80|0.10|0.04|R|F|1994-08-01|1994-09-08|1994-08-16|NONE|AIR|ar excuses c| +2127|232091|19604|3|21|21484.68|0.02|0.00|A|F|1994-09-15|1994-09-10|1994-10-11|TAKE BACK RETURN|FOB|s the fluffily blithe depen| +2152|503796|3797|1|4|7199.08|0.07|0.02|N|O|1998-02-14|1997-12-16|1998-03-06|TAKE BACK RETURN|REG AIR|nic packages. furiously bold deposits| +2152|298336|23347|2|7|9340.24|0.01|0.07|N|O|1997-11-27|1997-12-25|1997-12-11|TAKE BACK RETURN|FOB|s haggle. quickly regular foxes| +2152|126443|26444|3|36|52899.84|0.01|0.07|N|O|1997-12-31|1998-01-27|1998-01-08|TAKE BACK RETURN|REG AIR|ymptotes integrate| +2152|116820|41825|4|26|47757.32|0.00|0.01|N|O|1997-12-18|1998-01-13|1997-12-20|DELIVER IN PERSON|RAIL|eposits cajole accounts. | +2152|389478|14493|5|8|12539.68|0.09|0.07|N|O|1997-11-30|1998-01-11|1997-12-02|COLLECT COD|SHIP|structions dete| +2152|947105|22142|6|26|29953.56|0.03|0.02|N|O|1998-02-22|1997-12-20|1998-03-02|DELIVER IN PERSON|FOB|iously regular packages after the quick| +2153|327188|14707|1|39|47391.63|0.06|0.06|N|O|1996-03-12|1996-02-21|1996-03-18|COLLECT COD|RAIL|ss, unusual excuses| +2153|34899|22400|2|29|53182.81|0.10|0.05|N|O|1996-02-04|1996-02-08|1996-03-04|DELIVER IN PERSON|TRUCK|ts are carefully a| +2154|9255|9256|1|33|38420.25|0.05|0.03|A|F|1994-08-03|1994-07-31|1994-08-13|COLLECT COD|SHIP|s. furiously spec| +2155|389021|39022|1|29|32190.29|0.10|0.07|N|O|1998-01-31|1998-01-17|1998-02-22|DELIVER IN PERSON|MAIL|. regular asymptotes against the bl| +2155|264327|1843|2|25|32282.75|0.05|0.05|N|O|1997-12-12|1998-01-25|1997-12-28|TAKE BACK RETURN|MAIL|kages mold carefully carefu| +2155|528714|41225|3|34|59251.46|0.00|0.05|N|O|1997-12-27|1998-02-17|1998-01-10|DELIVER IN PERSON|MAIL|e slyly. furiously final account| +2155|95839|8341|4|39|71558.37|0.04|0.04|N|O|1998-02-26|1998-01-06|1998-03-23|COLLECT COD|MAIL|f the unusual, final packages doze a| +2155|756946|44492|5|22|44064.02|0.04|0.00|N|O|1997-12-28|1998-02-14|1998-01-12|NONE|RAIL|usly pending accounts alongsi| +2155|983646|8685|6|15|25944.00|0.03|0.06|N|O|1998-01-16|1998-01-01|1998-02-15|TAKE BACK RETURN|AIR|counts doubt qu| +2156|340716|15729|1|27|47430.90|0.05|0.06|R|F|1993-02-01|1993-03-23|1993-02-19|TAKE BACK RETURN|SHIP|y. blithely regular requests integ| +2156|405233|17742|2|19|21625.99|0.04|0.03|R|F|1993-01-17|1993-02-14|1993-01-19|TAKE BACK RETURN|FOB|dolites nag among the enticingl| +2157|107844|20347|1|49|90740.16|0.10|0.01|R|F|1995-02-22|1995-01-11|1995-03-14|TAKE BACK RETURN|MAIL|l dolphins| +2157|528775|41286|2|48|86580.00|0.08|0.08|A|F|1994-12-22|1995-01-07|1994-12-23|NONE|SHIP|nic accounts. pending requests boos| +2157|119747|44752|3|13|22967.62|0.01|0.04|R|F|1994-12-21|1995-01-16|1994-12-24|COLLECT COD|TRUCK|g the pending, ironic dolphins. s| +2157|582693|7716|4|14|24859.38|0.10|0.04|R|F|1994-12-27|1995-02-06|1995-01-26|COLLECT COD|FOB|ully regular accounts. f| +2157|316738|29245|5|17|29830.24|0.09|0.02|R|F|1994-12-17|1995-02-02|1995-01-05|DELIVER IN PERSON|FOB|refully. blithely regular theodo| +2157|404904|4905|6|21|37986.48|0.03|0.08|A|F|1995-03-15|1995-01-06|1995-03-22|COLLECT COD|FOB|pending asym| +2157|212852|25357|7|24|42356.16|0.09|0.04|A|F|1995-02-11|1995-02-09|1995-02-21|NONE|SHIP|ckly even, speci| +2158|397662|10170|1|34|59828.10|0.09|0.01|R|F|1994-05-18|1994-06-04|1994-05-31|NONE|MAIL|y bold deposits across the regular dep| +2158|490239|2749|2|44|54085.24|0.08|0.08|R|F|1994-08-06|1994-06-12|1994-08-18|TAKE BACK RETURN|MAIL|olphins. final som| +2159|63077|13078|1|24|24961.68|0.06|0.08|A|F|1992-11-02|1992-12-21|1992-11-23|COLLECT COD|TRUCK|dencies grow abo| +2159|119823|7330|2|31|57127.42|0.03|0.04|A|F|1992-10-28|1992-11-28|1992-11-07|COLLECT COD|TRUCK|ides the regular, unusua| +2159|861483|11484|3|35|50555.40|0.05|0.06|A|F|1992-11-05|1992-12-06|1992-11-15|TAKE BACK RETURN|RAIL|lways ironic asymptote| +2159|933632|33633|4|35|58295.65|0.06|0.04|R|F|1992-11-30|1992-12-09|1992-12-12|COLLECT COD|REG AIR| to the accounts. furiously iro| +2184|326489|26490|1|9|13639.23|0.06|0.06|N|O|1997-07-09|1997-07-05|1997-07-19|COLLECT COD|TRUCK|ut the slyly e| +2184|292121|4627|2|33|36732.63|0.01|0.01|N|O|1997-05-05|1997-07-07|1997-06-03|TAKE BACK RETURN|REG AIR|ans. busy ideas wake slyly ideas. perma| +2184|664770|2310|3|13|22551.62|0.10|0.03|N|O|1997-07-30|1997-07-03|1997-08-26|TAKE BACK RETURN|MAIL|unusual deposits boost. even ide| +2185|702551|27580|1|25|38838.00|0.04|0.07|N|O|1996-12-05|1996-12-30|1996-12-27|DELIVER IN PERSON|AIR|unts against the regular, express | +2185|771482|46513|2|16|24855.20|0.05|0.02|N|O|1997-01-25|1996-12-03|1997-02-13|TAKE BACK RETURN|MAIL|sily ironic pinto bea| +2185|297490|9996|3|19|28262.12|0.03|0.07|N|O|1996-10-13|1996-12-17|1996-10-24|TAKE BACK RETURN|REG AIR|ugouts alongside| +2185|899614|49615|4|13|20976.41|0.03|0.03|N|O|1997-01-12|1997-01-01|1997-02-10|NONE|RAIL|silent ideas use slyly around the unusu| +2185|804769|42318|5|41|68622.52|0.00|0.04|N|O|1996-12-14|1996-12-23|1996-12-20|TAKE BACK RETURN|FOB|sleep furiously quickl| +2186|979520|29521|1|46|73576.08|0.09|0.03|N|O|1997-06-17|1997-06-05|1997-07-05|TAKE BACK RETURN|RAIL|e final idea| +2186|785566|35567|2|47|77621.91|0.03|0.05|N|O|1997-07-19|1997-05-22|1997-07-25|COLLECT COD|AIR|s. express r| +2186|2232|27233|3|43|48771.89|0.06|0.06|N|O|1997-05-18|1997-05-05|1997-05-27|COLLECT COD|SHIP|uriously unusual packages cajole | +2186|506177|6178|4|15|17747.25|0.05|0.05|N|O|1997-05-08|1997-05-13|1997-05-10|COLLECT COD|RAIL|deas dazzle carefully blithely regular| +2186|305977|43496|5|10|19829.60|0.10|0.07|N|O|1997-07-10|1997-06-12|1997-07-13|COLLECT COD|FOB|luffy packages against the slyly fin| +2186|540265|27796|6|12|15662.88|0.00|0.00|N|O|1997-06-08|1997-05-04|1997-06-11|DELIVER IN PERSON|TRUCK|deposits along the unusual accounts| +2187|374808|12330|1|42|79077.18|0.04|0.03|A|F|1994-10-02|1994-10-20|1994-10-20|NONE|SHIP|s. slyly regular | +2188|249783|37296|1|36|62379.72|0.00|0.00|A|F|1993-02-22|1993-03-21|1993-03-13|COLLECT COD|TRUCK|e final account| +2188|101764|26769|2|26|45909.76|0.00|0.01|R|F|1993-04-01|1993-05-02|1993-04-02|TAKE BACK RETURN|REG AIR|yly final depo| +2188|337555|12568|3|25|39813.50|0.07|0.04|R|F|1993-04-14|1993-03-13|1993-05-03|DELIVER IN PERSON|FOB|ly blithely ironic foxes. regularly | +2189|305047|42566|1|33|34716.99|0.09|0.01|N|O|1997-09-09|1997-07-21|1997-09-14|COLLECT COD|REG AIR|thely fina| +2189|918543|43580|2|42|65583.00|0.02|0.02|N|O|1997-08-08|1997-08-03|1997-09-01|TAKE BACK RETURN|RAIL|inst the pending foxes. account| +2189|938133|38134|3|3|3513.27|0.03|0.07|N|O|1997-07-30|1997-06-15|1997-07-31|NONE|TRUCK|odolites affix carefully regular, even | +2190|823037|23038|1|26|24959.74|0.00|0.04|R|F|1993-07-23|1993-06-28|1993-08-10|TAKE BACK RETURN|MAIL|e the furiously even frets. fin| +2190|782575|7606|2|7|11602.78|0.03|0.08|A|F|1993-06-21|1993-06-23|1993-06-22|NONE|FOB|s. carefully even requests sleep unus| +2191|19836|32337|1|10|17558.30|0.01|0.00|N|O|1997-03-27|1997-02-10|1997-04-20|TAKE BACK RETURN|REG AIR|quests. even, unusual packages to the| +2191|382145|19667|2|29|35586.77|0.02|0.04|N|O|1997-02-11|1997-03-03|1997-03-09|COLLECT COD|TRUCK|ts sleep blithely carefully pendin| +2191|702107|2108|3|28|31053.96|0.00|0.06|N|O|1997-02-28|1997-02-07|1997-03-15|TAKE BACK RETURN|FOB|inal requests wak| +2191|301902|1903|4|36|68540.04|0.03|0.00|N|O|1997-04-27|1997-02-14|1997-05-27|NONE|MAIL|along the final deposits.| +2191|54032|41536|5|7|6902.21|0.03|0.08|N|O|1997-04-09|1997-02-07|1997-04-12|COLLECT COD|AIR|onic packages caj| +2216|300962|963|1|17|33370.15|0.02|0.04|N|O|1996-03-11|1996-03-15|1996-03-20|COLLECT COD|REG AIR|ar requests. regular, sly request| +2216|251802|1803|2|27|47352.33|0.05|0.03|N|O|1996-04-01|1996-02-15|1996-04-29|DELIVER IN PERSON|RAIL|nto beans haggle e| +2217|321767|46780|1|44|78705.00|0.08|0.05|A|F|1995-02-24|1995-02-19|1995-03-13|TAKE BACK RETURN|FOB|nly pending theodolites are furiously fluf| +2217|932251|19806|2|31|39779.51|0.09|0.03|R|F|1995-01-26|1995-02-05|1995-02-06|COLLECT COD|RAIL| even packages. pending, final pinto be| +2218|377370|27371|1|43|62236.48|0.05|0.07|N|O|1995-11-29|1995-11-26|1995-12-09|TAKE BACK RETURN|MAIL|ely slow excuses about the slyly p| +2218|452825|2826|2|31|55111.80|0.06|0.00|N|O|1995-12-15|1996-01-15|1996-01-08|COLLECT COD|RAIL|riously pendin| +2219|635301|10326|1|5|6181.35|0.01|0.00|R|F|1993-06-13|1993-06-15|1993-07-09|DELIVER IN PERSON|FOB|cajole carefully. ironi| +2219|491593|41594|2|27|42783.39|0.07|0.05|R|F|1993-07-08|1993-06-23|1993-07-12|COLLECT COD|SHIP|p quickly above the carefully iron| +2219|200402|12907|3|10|13023.90|0.04|0.05|A|F|1993-06-15|1993-05-25|1993-07-10|TAKE BACK RETURN|TRUCK|nusual sentiments. silent theodolite| +2220|709675|34704|1|2|3369.28|0.05|0.00|A|F|1995-01-03|1995-01-27|1995-02-02|COLLECT COD|TRUCK|nic, ironic forges| +2220|503091|3092|2|18|19693.26|0.08|0.06|R|F|1995-03-26|1995-02-16|1995-04-01|NONE|FOB|gle quickly across the theo| +2220|439407|39408|3|22|29620.36|0.06|0.03|A|F|1995-01-18|1995-02-05|1995-02-01|COLLECT COD|REG AIR|sly final foxes sleep slyly unusual | +2220|98346|48347|4|41|55117.94|0.09|0.02|R|F|1995-04-04|1995-02-26|1995-04-07|TAKE BACK RETURN|FOB|detect fluffily after the fluffily regula| +2221|429097|16622|1|8|8208.56|0.06|0.06|N|O|1998-05-23|1998-06-10|1998-06-14|DELIVER IN PERSON|SHIP|fluffily even excuses.| +2221|831335|18884|2|13|16461.77|0.09|0.02|N|O|1998-06-29|1998-07-13|1998-07-05|NONE|FOB|iously special packages haggle quickly| +2221|236070|11079|3|17|17103.02|0.07|0.05|N|O|1998-07-08|1998-06-03|1998-07-25|TAKE BACK RETURN|REG AIR|special deposits. deposits wake slyly car| +2221|623720|11257|4|18|29586.42|0.04|0.06|N|O|1998-07-18|1998-06-22|1998-08-06|TAKE BACK RETURN|AIR|y thin instructions. blithel| +2221|852928|15446|5|13|24451.44|0.07|0.03|N|O|1998-06-29|1998-05-19|1998-07-27|NONE|FOB|ilent, regular pinto be| +2221|155934|5935|6|32|63677.76|0.06|0.00|N|O|1998-05-29|1998-05-21|1998-05-31|COLLECT COD|AIR| furiously permanent ideas. slyl| +2221|775116|12662|7|32|38114.56|0.05|0.04|N|O|1998-06-14|1998-05-25|1998-06-19|TAKE BACK RETURN|TRUCK|s the deposits. expre| +2222|358275|20783|1|31|41331.06|0.06|0.03|A|F|1993-05-29|1993-03-12|1993-06-06|NONE|RAIL|e pending, ironic acco| +2222|515062|40083|2|15|16155.60|0.04|0.04|R|F|1993-04-26|1993-05-06|1993-04-28|COLLECT COD|AIR|s cajole carefully blithel| +2223|2709|15210|1|49|78973.30|0.03|0.02|A|F|1992-08-26|1992-09-12|1992-09-19|COLLECT COD|TRUCK|equests according| +2223|513766|26277|2|16|28475.84|0.05|0.08|A|F|1992-11-22|1992-10-17|1992-12-08|DELIVER IN PERSON|TRUCK|osits nag furiously into the blith| +2223|851604|26639|3|3|4666.68|0.09|0.05|A|F|1992-08-16|1992-09-21|1992-09-11|DELIVER IN PERSON|SHIP|uests wake blithely | +2223|903696|41251|4|22|37392.30|0.03|0.00|R|F|1992-10-12|1992-10-19|1992-10-15|NONE|RAIL|. carefully regular foxes wake about t| +2223|405893|43418|5|20|35977.40|0.08|0.01|R|F|1992-11-02|1992-09-15|1992-11-23|NONE|AIR|ously final dependencies alongside of the | +2248|48830|11331|1|38|67595.54|0.05|0.02|A|F|1993-04-07|1993-03-16|1993-05-02|TAKE BACK RETURN|TRUCK|tect ironic re| +2249|965302|15303|1|17|23243.42|0.07|0.04|N|O|1997-05-12|1997-07-04|1997-05-25|DELIVER IN PERSON|MAIL|arefully silent requests nag blithel| +2249|823981|23982|2|33|62863.02|0.04|0.06|N|O|1997-05-28|1997-07-02|1997-06-20|DELIVER IN PERSON|RAIL|uests are f| +2250|800329|37878|1|46|56546.88|0.09|0.02|R|F|1992-12-01|1993-01-31|1992-12-17|COLLECT COD|RAIL|haggle. blithely b| +2250|128825|28826|2|1|1853.82|0.01|0.07|A|F|1993-01-05|1993-01-29|1993-01-23|NONE|SHIP| fluffily express account| +2250|149983|24988|3|40|81319.20|0.06|0.06|A|F|1993-03-17|1993-02-12|1993-03-25|COLLECT COD|MAIL|ly bold foxes. carefully ironic reque| +2250|748027|10542|4|40|42999.60|0.03|0.07|A|F|1992-12-12|1993-01-28|1992-12-31|NONE|MAIL|ackages. boldly ironic deposits acro| +2250|89406|39407|5|41|57211.40|0.04|0.05|A|F|1992-12-14|1993-01-31|1993-01-12|COLLECT COD|SHIP|al requests. | +2250|636469|36470|6|3|4216.29|0.00|0.03|A|F|1993-01-05|1993-01-08|1993-01-19|DELIVER IN PERSON|SHIP|xcuses. deposits haggl| +2251|182274|7281|1|39|52894.53|0.08|0.03|R|F|1992-03-13|1992-03-21|1992-04-11|DELIVER IN PERSON|FOB|tes integrate fluffily along the silen| +2252|562730|264|1|36|64537.56|0.00|0.06|A|F|1993-12-26|1994-02-25|1994-01-21|TAKE BACK RETURN|AIR|ing requests | +2252|791538|41539|2|33|53773.50|0.00|0.04|A|F|1994-03-13|1994-01-24|1994-04-08|COLLECT COD|TRUCK|ly silent instructions? final dolphins se| +2252|367959|17960|3|21|42565.74|0.03|0.02|R|F|1994-01-19|1994-03-09|1994-02-02|NONE|TRUCK|ial accounts. bold, ir| +2252|283601|46107|4|19|30107.21|0.04|0.00|A|F|1994-04-03|1994-03-06|1994-05-01|DELIVER IN PERSON|REG AIR|lyly regular multipliers. regular,| +2252|471256|21257|5|5|6136.15|0.09|0.06|R|F|1994-01-19|1994-03-07|1994-02-01|COLLECT COD|TRUCK|packages cajole slyly about the eve| +2252|388608|26130|6|12|20359.08|0.10|0.02|R|F|1994-02-10|1994-01-19|1994-03-05|COLLECT COD|FOB|uickly final foxes sleep quickly furious| +2253|271361|33867|1|6|7994.10|0.05|0.06|N|O|1997-07-30|1997-09-06|1997-08-07|DELIVER IN PERSON|RAIL|requests kindle. ironic, iron| +2253|755766|18282|2|22|40078.06|0.04|0.06|N|O|1997-11-14|1997-09-04|1997-11-20|DELIVER IN PERSON|AIR|ickly unusual platelets. pending re| +2253|150288|289|3|14|18735.92|0.06|0.01|N|O|1997-08-12|1997-09-18|1997-08-29|DELIVER IN PERSON|AIR|y even frays. quickly ironic depos| +2253|877328|14880|4|11|14358.08|0.05|0.05|N|O|1997-09-17|1997-09-12|1997-09-22|COLLECT COD|SHIP|al requests boost a| +2253|245764|45765|5|29|49582.75|0.06|0.00|N|O|1997-11-15|1997-08-25|1997-11-30|DELIVER IN PERSON|SHIP|deposits. ironic requests at the final r| +2253|541766|16787|6|14|25308.36|0.02|0.05|N|O|1997-09-01|1997-09-01|1997-09-25|COLLECT COD|TRUCK|ickly even asymp| +2254|903700|16219|1|41|69850.06|0.09|0.05|N|O|1997-06-01|1997-07-16|1997-06-18|NONE|RAIL|uffily. slyly even reque| +2254|472057|22058|2|16|16464.48|0.08|0.01|N|O|1997-05-30|1997-05-27|1997-06-04|COLLECT COD|MAIL|thely express pinto b| +2254|858063|20581|3|38|38798.76|0.09|0.06|N|O|1997-08-11|1997-05-29|1997-09-07|COLLECT COD|RAIL|ously about the slyly special foxes. care| +2255|300570|13077|1|47|73816.32|0.03|0.06|N|O|1995-09-29|1995-09-15|1995-10-23|NONE|REG AIR|: special do| +2255|676830|1857|2|25|45170.00|0.01|0.03|N|O|1995-09-16|1995-09-19|1995-09-20|DELIVER IN PERSON|REG AIR|ructions boost slyly. unusual, i| +2255|479762|42272|3|14|24384.36|0.07|0.02|N|O|1995-09-21|1995-09-08|1995-10-02|TAKE BACK RETURN|TRUCK| the ironic, ironic deposit| +2255|344208|6715|4|17|21287.23|0.00|0.04|N|O|1995-08-23|1995-08-27|1995-09-16|COLLECT COD|RAIL|lithely brave pac| +2255|91865|4367|5|32|59419.52|0.01|0.07|N|O|1995-08-23|1995-09-08|1995-09-03|DELIVER IN PERSON|TRUCK|ly. final excuses doubt carefull| +2280|904462|29499|1|14|20529.88|0.06|0.06|N|O|1996-10-02|1996-09-24|1996-10-07|NONE|REG AIR| blithely regular platelets haggle fu| +2280|289287|14298|2|9|11486.43|0.00|0.06|N|O|1996-11-06|1996-11-12|1996-11-30|COLLECT COD|FOB| beans. ironic, ironic courts s| +2280|30630|43131|3|5|7803.15|0.07|0.05|N|O|1996-11-06|1996-10-21|1996-11-07|TAKE BACK RETURN|RAIL|yly according to th| +2280|784964|47480|4|20|40978.60|0.09|0.06|N|O|1996-12-16|1996-11-10|1997-01-11|TAKE BACK RETURN|FOB|ithely! ironic asymptotes against the sl| +2280|880796|18348|5|16|28428.00|0.01|0.00|N|O|1996-10-22|1996-10-23|1996-11-01|DELIVER IN PERSON|MAIL|l foxes. unusual, bold ide| +2280|524736|37247|6|26|45778.46|0.01|0.08|N|O|1996-09-16|1996-11-02|1996-09-23|DELIVER IN PERSON|AIR|ic packages use. final, final packages| +2281|174456|24457|1|34|52035.30|0.07|0.02|R|F|1994-12-22|1995-02-20|1995-01-04|NONE|FOB|efully final | +2281|65916|28418|2|37|69630.67|0.10|0.08|R|F|1995-02-18|1995-03-09|1995-03-05|COLLECT COD|MAIL|kly thin ideas boost iron| +2282|580729|43241|1|33|59720.10|0.01|0.06|N|O|1997-12-11|1997-12-25|1997-12-12|TAKE BACK RETURN|RAIL|egular Tiresias wake | +2282|302076|2077|2|34|36654.04|0.04|0.02|N|O|1998-01-31|1997-12-14|1998-02-14|COLLECT COD|RAIL|lithely regular theodolites affix fluffily| +2282|977854|40374|3|26|50227.06|0.05|0.02|N|O|1997-12-29|1998-01-23|1998-01-03|NONE|REG AIR|ly. quickly regular pinto beans affix| +2283|119853|32356|1|48|89896.80|0.03|0.03|R|F|1993-02-18|1993-01-30|1993-02-25|DELIVER IN PERSON|FOB|packages-- speci| +2283|363404|25912|2|18|26413.02|0.10|0.07|R|F|1993-02-01|1993-02-20|1993-02-04|DELIVER IN PERSON|FOB|hy ideas wake furiously furio| +2283|715061|15062|3|1|1076.03|0.08|0.07|R|F|1993-03-19|1993-02-06|1993-03-22|DELIVER IN PERSON|AIR|uriously even accounts. pending instru| +2283|17047|4548|4|36|34705.44|0.04|0.06|R|F|1993-01-14|1993-01-29|1993-01-28|COLLECT COD|AIR| doze according to the blithely slow re| +2283|501418|38949|5|43|61033.77|0.05|0.01|R|F|1992-12-12|1993-01-18|1993-01-03|NONE|SHIP|the carefu| +2284|357448|32463|1|12|18065.16|0.09|0.00|A|F|1993-12-08|1993-11-08|1993-12-27|TAKE BACK RETURN|REG AIR|iously final dependencies | +2284|616792|16793|2|10|17087.60|0.03|0.05|R|F|1993-12-31|1993-10-15|1994-01-05|NONE|AIR| platelets. furiously r| +2284|411995|37012|3|18|34325.46|0.09|0.04|R|F|1993-10-05|1993-10-12|1993-10-27|TAKE BACK RETURN|TRUCK|foxes haggle carefully special | +2284|392420|17435|4|32|48397.12|0.09|0.01|A|F|1993-12-25|1993-11-09|1994-01-01|COLLECT COD|SHIP|ns cajole alongside o| +2284|390154|40155|5|1|1244.14|0.04|0.01|R|F|1993-11-30|1993-10-12|1993-12-14|COLLECT COD|RAIL|posits wake furiously according to the sp| +2285|950075|37633|1|40|45001.20|0.07|0.01|N|O|1997-10-03|1997-11-11|1997-10-22|TAKE BACK RETURN|TRUCK| instructions accordin| +2285|899068|36620|2|46|49082.92|0.05|0.03|N|O|1997-12-04|1997-11-05|1997-12-24|TAKE BACK RETURN|AIR|to the ironic, regular deposits| +2285|632413|32414|3|14|18835.32|0.00|0.04|N|O|1997-09-02|1997-11-23|1997-09-28|NONE|REG AIR|y unusual deposits. fl| +2285|957069|7070|4|22|24772.44|0.05|0.04|N|O|1997-11-21|1997-10-17|1997-12-12|COLLECT COD|TRUCK|arefully ir| +2285|445633|20650|5|35|55251.35|0.04|0.02|N|O|1997-12-24|1997-10-21|1998-01-18|DELIVER IN PERSON|FOB|l packages affix care| +2285|739258|39259|6|40|51888.80|0.04|0.07|N|O|1997-11-16|1997-10-28|1997-11-17|NONE|FOB|lites. bold deposits kindle slyly | +2286|996080|33638|1|24|28224.96|0.08|0.02|N|O|1996-05-08|1996-04-30|1996-05-13|COLLECT COD|RAIL| final, furious packages gr| +2286|109821|34826|2|37|67740.34|0.01|0.04|N|O|1996-04-21|1996-04-26|1996-05-04|TAKE BACK RETURN|TRUCK|ithely final accounts use special, regul| +2286|756237|6238|3|46|59487.20|0.07|0.07|N|O|1996-05-16|1996-03-26|1996-05-18|COLLECT COD|TRUCK| the furiousl| +2287|517225|29736|1|14|17390.80|0.06|0.05|A|F|1994-09-23|1994-08-28|1994-10-01|COLLECT COD|FOB|hely regular| +2287|985280|22838|2|31|42322.44|0.05|0.01|R|F|1994-07-29|1994-10-03|1994-07-31|TAKE BACK RETURN|SHIP|requests cajole. carefully even account| +2287|597151|22174|3|30|37443.90|0.04|0.01|R|F|1994-08-25|1994-09-16|1994-08-26|NONE|SHIP|dly unusual i| +2287|313153|672|4|7|8162.98|0.10|0.00|R|F|1994-10-10|1994-09-18|1994-10-29|NONE|RAIL|ly unusual packages. blithe| +2287|160120|47630|5|20|23602.40|0.05|0.08|R|F|1994-08-23|1994-09-28|1994-09-22|DELIVER IN PERSON|REG AIR|ct blithely fluffily bold patte| +2287|121810|21811|6|43|78767.83|0.02|0.08|A|F|1994-08-14|1994-10-02|1994-08-15|COLLECT COD|REG AIR|ptotes wake above the express deposits. r| +2312|505186|5187|1|17|20249.72|0.07|0.06|R|F|1992-11-16|1992-10-09|1992-12-11|TAKE BACK RETURN|AIR|excuses cajole furiously unusual dolp| +2312|654946|4947|2|46|87441.86|0.08|0.04|A|F|1992-10-09|1992-10-05|1992-11-04|TAKE BACK RETURN|REG AIR|ogs doze blithely even| +2312|661412|11413|3|49|67295.62|0.07|0.01|A|F|1992-11-27|1992-09-23|1992-12-18|COLLECT COD|FOB|al pearls across the d| +2312|348902|23915|4|30|58526.70|0.00|0.02|A|F|1992-12-08|1992-10-08|1993-01-05|NONE|RAIL| carefully after the furiously regular th| +2312|993383|5903|5|40|59053.60|0.08|0.04|A|F|1992-10-06|1992-10-11|1992-10-12|TAKE BACK RETURN|SHIP| among the | +2313|833498|21047|1|1|1431.45|0.02|0.04|N|F|1995-06-10|1995-05-15|1995-06-18|COLLECT COD|MAIL|s wake carefully quickly s| +2313|594956|44957|2|18|36916.74|0.07|0.04|A|F|1995-04-14|1995-04-26|1995-05-09|NONE|MAIL|y enticing platelets cajole| +2313|410719|48244|3|29|47261.01|0.06|0.05|R|F|1995-04-17|1995-06-07|1995-05-08|NONE|AIR|y special foxes nag closely about the fur| +2313|942196|4715|4|23|28477.45|0.09|0.00|R|F|1995-05-24|1995-05-20|1995-06-04|DELIVER IN PERSON|MAIL|ular requests. | +2313|487309|24837|5|9|11666.52|0.01|0.06|R|F|1995-04-21|1995-06-13|1995-05-07|COLLECT COD|MAIL|ss requests. reque| +2313|202289|39802|6|22|26207.94|0.08|0.03|R|F|1995-04-20|1995-06-02|1995-05-06|DELIVER IN PERSON|REG AIR| special requests sle| +2313|860607|23125|7|36|56432.16|0.05|0.00|N|F|1995-06-12|1995-04-29|1995-06-23|DELIVER IN PERSON|SHIP|usly warthogs. carefully pending plat| +2314|218163|5676|1|4|4324.60|0.06|0.01|R|F|1993-08-17|1993-09-25|1993-08-22|TAKE BACK RETURN|SHIP|sly. unusual, even dep| +2314|662670|37697|2|27|44081.28|0.10|0.01|A|F|1993-08-19|1993-09-20|1993-09-13|COLLECT COD|TRUCK| carefully silently final packages. regular| +2315|821922|9471|1|46|84818.48|0.04|0.06|R|F|1993-06-02|1993-05-22|1993-06-30|DELIVER IN PERSON|MAIL|its. furiously regula| +2315|34914|9915|2|10|18489.10|0.09|0.03|R|F|1993-05-03|1993-05-18|1993-05-11|TAKE BACK RETURN|FOB|efully fin| +2315|794871|19902|3|25|49146.00|0.03|0.05|A|F|1993-03-27|1993-05-11|1993-04-04|NONE|TRUCK|silent pack| +2316|88015|25519|1|11|11033.11|0.05|0.02|A|F|1992-04-15|1992-03-12|1992-05-11|DELIVER IN PERSON|AIR|pending accounts. quickly ironic | +2316|253852|28863|2|43|77651.12|0.08|0.00|A|F|1992-04-11|1992-04-27|1992-04-19|DELIVER IN PERSON|SHIP|onic instructions breach quickly ev| +2316|485338|22866|3|23|30436.13|0.03|0.04|A|F|1992-05-22|1992-03-24|1992-06-07|DELIVER IN PERSON|TRUCK|efully special deposits run qui| +2316|73706|48709|4|38|63828.60|0.02|0.01|A|F|1992-04-14|1992-05-01|1992-04-26|COLLECT COD|AIR| are slyly slyly express packages. pen| +2316|769513|32029|5|32|50639.36|0.01|0.08|A|F|1992-02-20|1992-05-03|1992-03-13|COLLECT COD|MAIL|inal requests-- bold, silen| +2317|607943|20456|1|45|83290.95|0.08|0.02|N|O|1997-10-05|1997-07-27|1997-11-02|DELIVER IN PERSON|FOB|ecial theodol| +2318|379224|29225|1|27|35186.67|0.04|0.08|R|F|1994-07-05|1994-08-11|1994-07-23|NONE|TRUCK|ts. special ideas are| +2318|611973|11974|2|42|79167.48|0.04|0.03|R|F|1994-06-18|1994-08-29|1994-07-02|NONE|FOB|nently even instructions wa| +2318|416477|16478|3|19|26475.55|0.08|0.08|A|F|1994-08-18|1994-08-13|1994-09-07|DELIVER IN PERSON|TRUCK| packages | +2318|719886|32401|4|12|22870.20|0.08|0.07|R|F|1994-08-05|1994-07-07|1994-08-22|DELIVER IN PERSON|RAIL|earls. busy pa| +2318|108070|8071|5|29|31264.03|0.08|0.05|A|F|1994-08-30|1994-07-21|1994-09-23|TAKE BACK RETURN|REG AIR| use above the furiously final platelets. d| +2319|506969|6970|1|2|3951.88|0.02|0.05|A|F|1993-04-12|1993-01-24|1993-05-06|DELIVER IN PERSON|SHIP|ic pinto beans nag blithely| +2344|757035|19551|1|49|53508.00|0.00|0.07|R|F|1993-06-06|1993-05-29|1993-06-26|NONE|FOB|ar instructions. pending, reg| +2344|471079|46098|2|9|9450.45|0.06|0.07|A|F|1993-06-20|1993-06-14|1993-07-08|DELIVER IN PERSON|RAIL|gular pinto bean| +2344|408232|20741|3|40|45608.40|0.03|0.07|A|F|1993-04-07|1993-05-20|1993-04-27|COLLECT COD|REG AIR|ically final packages according | +2345|591664|41665|1|42|73736.88|0.02|0.08|N|O|1998-02-17|1998-04-06|1998-02-26|NONE|TRUCK| the quickly silent packages. furio| +2345|91374|28878|2|15|20480.55|0.08|0.03|N|O|1998-04-03|1998-04-01|1998-04-27|COLLECT COD|RAIL|sleep blithely| +2345|711206|11207|3|14|17040.38|0.09|0.00|N|O|1998-03-08|1998-03-22|1998-03-13|TAKE BACK RETURN|AIR|al, unusual dolphins acc| +2345|231489|6498|4|1|1420.47|0.02|0.01|N|O|1998-01-20|1998-02-26|1998-02-10|NONE|SHIP|ts sleep regular, unusual accounts; expre| +2345|632611|45124|5|14|21610.12|0.10|0.07|N|O|1998-02-13|1998-02-18|1998-03-03|DELIVER IN PERSON|MAIL| slyly special packages dazzle id| +2345|278924|28925|6|26|49475.66|0.05|0.00|N|O|1998-04-14|1998-03-20|1998-04-27|DELIVER IN PERSON|REG AIR|fully. quickly final requests| +2346|884632|34633|1|30|48497.70|0.08|0.01|A|F|1994-10-25|1994-10-21|1994-11-05|TAKE BACK RETURN|AIR|ng instructions impress quickly| +2346|2491|39992|2|49|68281.01|0.03|0.00|A|F|1994-10-05|1994-10-20|1994-10-24|TAKE BACK RETURN|REG AIR|lly about the| +2346|853396|28431|3|26|35083.10|0.01|0.06|A|F|1994-11-15|1994-10-24|1994-12-10|TAKE BACK RETURN|AIR|lithely bold dependencies. unusual depos| +2346|22703|47704|4|25|40642.50|0.09|0.02|R|F|1995-01-16|1994-10-29|1995-01-31|TAKE BACK RETURN|SHIP| regular requests are. blit| +2346|561321|11322|5|22|30410.60|0.03|0.06|R|F|1994-11-16|1994-10-27|1994-11-19|TAKE BACK RETURN|SHIP|e blithely daring deposits.| +2347|18054|5555|1|9|8748.45|0.00|0.01|R|F|1992-05-30|1992-06-07|1992-06-02|NONE|FOB|e carefully along the qui| +2348|450985|986|1|6|11615.76|0.03|0.01|A|F|1995-03-11|1995-03-23|1995-03-13|COLLECT COD|REG AIR| asymptotes use blithely from the even,| +2348|692925|30465|2|30|57536.70|0.05|0.07|R|F|1995-02-27|1995-03-20|1995-03-04|NONE|AIR| across the ironic, even de| +2349|974110|49149|1|22|26049.54|0.06|0.02|A|F|1994-08-20|1994-09-25|1994-08-24|DELIVER IN PERSON|FOB|c foxes. fur| +2349|862533|85|2|23|34396.27|0.01|0.01|A|F|1994-07-10|1994-09-13|1994-07-17|DELIVER IN PERSON|RAIL|onic packages.| +2349|591572|4084|3|4|6654.20|0.02|0.06|A|F|1994-09-21|1994-08-17|1994-09-30|DELIVER IN PERSON|AIR| quickly regular theodolites wake bu| +2349|541048|41049|4|1|1089.02|0.00|0.02|A|F|1994-07-31|1994-08-08|1994-08-26|COLLECT COD|AIR| nag about the blithely | +2349|390753|40754|5|3|5531.22|0.03|0.06|R|F|1994-11-02|1994-09-26|1994-11-07|COLLECT COD|FOB|ongside of the fluffily even deposits| +2350|416865|16866|1|47|83746.48|0.10|0.01|R|F|1994-10-08|1994-11-30|1994-10-20|NONE|TRUCK|ily furiously eve| +2350|245364|32877|2|50|65467.50|0.02|0.02|R|F|1995-01-01|1994-11-06|1995-01-26|NONE|AIR|ag carefully| +2350|816606|41639|3|41|62424.96|0.10|0.07|A|F|1994-10-15|1994-12-01|1994-10-20|DELIVER IN PERSON|SHIP|ily express ins| +2350|690726|28266|4|32|54934.08|0.07|0.01|R|F|1994-10-26|1994-10-29|1994-11-06|NONE|MAIL|ts haggle according t| +2350|28364|28365|5|4|5169.44|0.05|0.01|R|F|1994-11-01|1994-11-13|1994-11-23|DELIVER IN PERSON|FOB|er the furio| +2350|706946|19461|6|39|76163.49|0.04|0.06|A|F|1994-12-31|1994-12-18|1995-01-06|TAKE BACK RETURN|SHIP| frets about the fluffily regular a| +2350|634791|34792|7|37|63853.12|0.04|0.07|R|F|1994-09-30|1994-12-18|1994-10-13|TAKE BACK RETURN|AIR|ctions. carefully even f| +2351|926000|26001|1|14|14363.44|0.10|0.04|N|O|1996-03-08|1996-04-25|1996-03-30|NONE|REG AIR|dogged accounts sublate carefully quic| +2351|273555|48566|2|35|53498.90|0.08|0.03|N|O|1996-04-18|1996-05-13|1996-05-01|NONE|MAIL|tructions. slyly eve| +2351|628679|16216|3|22|35368.08|0.01|0.03|N|O|1996-05-12|1996-04-17|1996-05-28|DELIVER IN PERSON|MAIL|pending accounts. ir| +2351|207674|45187|4|4|6326.64|0.09|0.02|N|O|1996-05-05|1996-05-11|1996-05-18|NONE|SHIP|ic packages cajole fluff| +2351|368553|31061|5|24|38916.96|0.03|0.00|N|O|1996-04-22|1996-05-21|1996-05-22|TAKE BACK RETURN|RAIL|uickly regular | +2351|259154|34165|6|23|25602.22|0.06|0.08|N|O|1996-03-30|1996-05-20|1996-04-17|COLLECT COD|SHIP|silent theodolit| +2351|588325|38326|7|34|48052.20|0.02|0.05|N|O|1996-04-27|1996-05-03|1996-05-08|COLLECT COD|MAIL|ackages boost accordi| +2376|977120|14678|1|3|3591.24|0.06|0.06|R|F|1993-02-01|1993-01-07|1993-02-20|COLLECT COD|TRUCK|y special req| +2376|450150|12660|2|47|51706.11|0.03|0.05|R|F|1993-01-22|1992-12-07|1993-01-27|TAKE BACK RETURN|AIR|ccording to the slyly even | +2376|654304|41844|3|41|51589.07|0.09|0.03|A|F|1992-12-07|1992-12-13|1992-12-09|COLLECT COD|AIR|onic packages nag carefully silently final| +2377|584475|9498|1|20|31189.00|0.01|0.02|R|F|1992-09-14|1992-09-07|1992-09-28|COLLECT COD|MAIL| special grouche| +2377|270374|32880|2|23|30920.28|0.09|0.02|A|F|1992-10-01|1992-09-11|1992-10-31|TAKE BACK RETURN|SHIP|s alongside of the furiously express pack| +2378|59701|47205|1|5|8303.50|0.10|0.06|R|F|1993-12-24|1993-12-08|1993-12-26|TAKE BACK RETURN|TRUCK|ar tithes. regular gi| +2378|382458|7473|2|39|60077.16|0.00|0.00|A|F|1993-12-23|1994-01-09|1993-12-31|DELIVER IN PERSON|AIR|ironic, even depos| +2378|956348|43906|3|15|21064.50|0.04|0.01|A|F|1993-11-27|1994-01-24|1993-12-23|NONE|REG AIR|ckly quick pinto beans cajole along | +2378|327509|40016|4|37|56850.13|0.06|0.02|R|F|1993-11-02|1994-01-21|1993-11-16|DELIVER IN PERSON|MAIL|en, express theodolites doze| +2378|442693|30218|5|37|60519.79|0.03|0.06|R|F|1994-01-01|1993-12-09|1994-01-02|NONE|REG AIR|nts according to the careful| +2378|337564|12577|6|5|8007.75|0.02|0.07|R|F|1994-02-12|1994-01-21|1994-02-18|TAKE BACK RETURN|TRUCK|bold theodolit| +2379|769662|7208|1|23|39827.49|0.02|0.08|N|O|1996-01-10|1995-10-20|1996-01-28|COLLECT COD|MAIL|usly final deposits wake quickly. sometime| +2379|701943|26972|2|7|13614.37|0.00|0.00|N|O|1995-09-28|1995-10-23|1995-10-17|NONE|RAIL|es sleep deposits. fluffily | +2380|737845|25388|1|9|16945.29|0.04|0.07|R|F|1993-09-04|1993-10-24|1993-10-04|COLLECT COD|RAIL|ly silent foxes. final reques| +2380|953226|28265|2|21|26862.78|0.05|0.02|R|F|1993-11-27|1993-09-26|1993-12-19|DELIVER IN PERSON|TRUCK| courts integra| +2380|859804|9805|3|47|82896.72|0.03|0.00|R|F|1993-11-10|1993-09-13|1993-12-04|TAKE BACK RETURN|RAIL|ions. blithely ironic instruct| +2380|714804|27319|4|14|25462.78|0.07|0.05|R|F|1993-10-23|1993-09-19|1993-11-11|DELIVER IN PERSON|AIR|ions mold carefully at the even acc| +2381|980371|5410|1|32|46442.56|0.10|0.07|N|O|1995-11-19|1995-10-17|1995-12-09|NONE|MAIL|dolphins thrash car| +2382|356676|44198|1|1|1732.66|0.04|0.01|N|O|1998-07-19|1998-09-06|1998-08-15|DELIVER IN PERSON|MAIL|arefully fi| +2382|640852|40853|2|6|10756.92|0.10|0.07|N|O|1998-09-24|1998-08-08|1998-10-17|NONE|SHIP|carefully a| +2383|58417|8418|1|34|46763.94|0.02|0.02|N|O|1997-02-14|1997-02-05|1997-03-02|DELIVER IN PERSON|AIR|ily. theodolites sleep. slyly iron| +2383|812389|37422|2|4|5205.36|0.10|0.02|N|O|1997-02-05|1996-12-18|1997-03-03|NONE|RAIL|gouts cajole a| +2383|815353|15354|3|21|26634.51|0.08|0.04|N|O|1997-01-30|1997-01-16|1997-02-25|COLLECT COD|FOB|ges. quickly special platele| +2383|633535|46048|4|44|64614.00|0.10|0.02|N|O|1997-03-04|1997-01-20|1997-03-25|DELIVER IN PERSON|TRUCK|unusual dolphins| +2383|821702|9251|5|23|37344.18|0.08|0.02|N|O|1996-12-13|1997-01-13|1996-12-18|NONE|MAIL|uses! carefully express requests aff| +2383|340946|3453|6|36|71529.48|0.10|0.06|N|O|1997-02-06|1997-01-27|1997-02-26|TAKE BACK RETURN|FOB| carefully special the| +2408|231984|44489|1|31|59395.07|0.07|0.06|N|O|1997-08-02|1997-06-29|1997-08-05|NONE|RAIL|iously even packages among the| +2409|373751|23752|1|26|47443.24|0.07|0.06|N|O|1995-07-12|1995-07-15|1995-07-23|TAKE BACK RETURN|TRUCK|r pinto beans. carefully even pinto beans| +2409|623959|36472|2|29|54604.68|0.04|0.05|N|O|1995-08-26|1995-07-07|1995-09-01|COLLECT COD|FOB| furiously special asympto| +2409|869757|7309|3|24|41441.04|0.00|0.05|N|F|1995-06-07|1995-06-08|1995-06-22|COLLECT COD|FOB|ns. carefully regular asymptotes hag| +2409|4934|29935|4|8|14711.44|0.03|0.06|A|F|1995-05-24|1995-06-17|1995-06-17|TAKE BACK RETURN|FOB|p carefully r| +2410|905831|43386|1|18|33062.22|0.03|0.08|R|F|1993-08-27|1993-08-26|1993-09-21|TAKE BACK RETURN|RAIL|fully pending dependencies. carefu| +2410|289272|1778|2|33|41621.58|0.00|0.04|A|F|1993-11-21|1993-10-17|1993-12-21|COLLECT COD|REG AIR|ns. carefully final packages wake carefully| +2410|783207|8238|3|2|2580.34|0.07|0.05|A|F|1993-11-04|1993-10-13|1993-11-23|DELIVER IN PERSON|SHIP|ial accoun| +2410|349330|11837|4|41|56552.12|0.08|0.01|A|F|1993-11-07|1993-08-26|1993-12-05|NONE|TRUCK|sits above the slyly expr| +2411|998739|11259|1|2|3675.38|0.08|0.08|A|F|1994-12-19|1994-11-14|1994-12-27|DELIVER IN PERSON|MAIL|. blithely ironic packages after the | +2411|797419|34965|2|19|28811.22|0.09|0.08|A|F|1994-11-29|1994-11-26|1994-11-30|COLLECT COD|FOB|counts. blithely regular acco| +2411|215848|3361|3|9|15874.47|0.10|0.08|A|F|1995-01-09|1994-10-21|1995-02-08|TAKE BACK RETURN|FOB|usual accounts. even, special packages unwi| +2411|753930|28961|4|14|27774.60|0.08|0.02|R|F|1994-10-05|1994-10-21|1994-10-17|COLLECT COD|SHIP|s. quickly even requests boost| +2411|295954|20965|5|12|23399.28|0.01|0.07|A|F|1994-12-21|1994-11-16|1995-01-04|NONE|FOB| quiet sentim| +2411|89015|14018|6|18|18072.18|0.05|0.08|A|F|1994-11-23|1994-10-30|1994-11-30|NONE|TRUCK|ly regular accounts use against the f| +2411|70176|7680|7|17|19484.89|0.08|0.03|R|F|1994-12-23|1994-10-29|1994-12-30|DELIVER IN PERSON|MAIL|totes against the b| +2412|442277|29802|1|41|49989.25|0.02|0.01|N|O|1995-10-24|1995-09-08|1995-11-21|NONE|MAIL|iously blit| +2412|339373|14386|2|13|18360.68|0.05|0.00|N|O|1995-07-25|1995-08-29|1995-08-11|DELIVER IN PERSON|FOB| fluffily. blithely dogge| +2412|841724|29273|3|3|4997.04|0.05|0.07|N|O|1995-07-20|1995-09-11|1995-07-29|TAKE BACK RETURN|MAIL| carefully according to the s| +2413|969356|19357|1|7|9977.17|0.05|0.04|A|F|1994-09-21|1994-09-15|1994-10-15|TAKE BACK RETURN|REG AIR|totes. blithely regul| +2413|961807|36846|2|35|65406.60|0.03|0.06|R|F|1994-10-15|1994-09-29|1994-10-17|NONE|RAIL|s. blithely regular requests daz| +2414|979391|4430|1|29|42640.15|0.10|0.07|R|F|1992-02-27|1992-03-13|1992-03-08|COLLECT COD|SHIP|deas thrash against the caref| +2414|622718|35231|2|37|60705.16|0.09|0.01|R|F|1992-03-05|1992-02-14|1992-03-07|NONE|AIR|ly silent requests e| +2414|8328|33329|3|38|46980.16|0.00|0.08|A|F|1992-01-17|1992-04-01|1992-01-31|DELIVER IN PERSON|AIR|tructions. depende| +2414|952967|40525|4|33|66657.36|0.03|0.08|R|F|1992-02-08|1992-03-26|1992-03-03|TAKE BACK RETURN|REG AIR| dependenci| +2414|507419|7420|5|28|39938.92|0.06|0.01|A|F|1992-03-08|1992-03-09|1992-03-15|TAKE BACK RETURN|MAIL|nt braids among the slyly final p| +2414|183137|20647|6|32|39044.16|0.08|0.07|R|F|1992-03-10|1992-03-14|1992-03-23|TAKE BACK RETURN|FOB|ckages. bli| +2415|406938|6939|1|49|90400.59|0.08|0.04|N|O|1996-08-03|1996-08-06|1996-08-31|COLLECT COD|FOB|aggle never according to the even, blithe d| +2415|406369|43894|2|36|45912.24|0.09|0.00|N|O|1996-06-27|1996-07-21|1996-07-10|TAKE BACK RETURN|TRUCK|s use carefully blithely regular tithes. sp| +2415|835588|48105|3|38|57894.52|0.08|0.05|N|O|1996-08-03|1996-07-11|1996-08-31|TAKE BACK RETURN|RAIL|x unusual | +2415|721384|21385|4|46|64646.10|0.08|0.02|N|O|1996-08-05|1996-07-07|1996-08-17|NONE|TRUCK|s. slyly regular packages detect. iro| +2415|284530|47036|5|12|18174.24|0.05|0.04|N|O|1996-09-12|1996-07-19|1996-09-14|NONE|FOB|. unusual packages alongs| +2415|83352|45854|6|44|58755.40|0.03|0.00|N|O|1996-07-04|1996-07-26|1996-07-28|TAKE BACK RETURN|SHIP|e stealthily unusual| +2440|108751|21254|1|24|42234.00|0.04|0.07|N|O|1998-04-07|1998-03-02|1998-04-12|TAKE BACK RETURN|TRUCK| instructions shall are p| +2441|386062|36063|1|22|25257.10|0.10|0.08|N|O|1997-04-15|1997-03-20|1997-05-04|NONE|TRUCK|heodolites wake| +2441|532391|7412|2|44|62628.28|0.10|0.01|N|O|1997-04-22|1997-03-15|1997-05-02|COLLECT COD|MAIL|ongside of the regular, final | +2442|702130|2131|1|32|36227.20|0.03|0.04|N|O|1997-07-02|1997-04-22|1997-07-28|COLLECT COD|REG AIR| slyly final pinto beans. sp| +2443|846704|21737|1|34|56122.44|0.05|0.08|R|F|1992-10-20|1992-10-18|1992-10-30|TAKE BACK RETURN|MAIL|beans. ironic pinto beans sleep blithely.| +2443|540817|28348|2|48|89173.92|0.08|0.04|R|F|1992-12-24|1992-09-28|1992-12-30|NONE|RAIL| permanently pending pinto beans. slyly sp| +2443|503317|40848|3|12|15843.48|0.05|0.02|A|F|1992-11-02|1992-10-31|1992-11-26|COLLECT COD|RAIL|efully regular account| +2443|238467|13476|4|27|37947.15|0.07|0.01|R|F|1992-08-31|1992-10-19|1992-09-17|DELIVER IN PERSON|TRUCK| ironic theodolites | +2444|599165|49166|1|33|41716.62|0.08|0.01|A|F|1992-03-11|1992-04-13|1992-03-26|TAKE BACK RETURN|RAIL|aggle carefully acro| +2444|159406|9407|2|49|71804.60|0.06|0.00|R|F|1992-03-21|1992-03-29|1992-04-08|DELIVER IN PERSON|MAIL|ely pending theodolites are along the qui| +2444|134848|34849|3|46|86610.64|0.03|0.02|A|F|1992-05-04|1992-03-26|1992-05-30|COLLECT COD|RAIL| detect carefully? blithely final req| +2445|831612|19161|1|43|66373.51|0.02|0.04|N|O|1997-07-25|1997-08-12|1997-08-10|COLLECT COD|REG AIR| requests nag blithely! even| +2445|894654|19689|2|9|14837.49|0.07|0.01|N|O|1997-10-05|1997-08-02|1997-11-01|COLLECT COD|FOB|arefully regular platelets x-ray. bo| +2445|439810|27335|3|15|26246.85|0.00|0.06|N|O|1997-09-15|1997-08-20|1997-09-17|COLLECT COD|MAIL| ironic asymptotes. excus| +2445|876122|38640|4|48|52707.84|0.07|0.04|N|O|1997-06-30|1997-08-15|1997-07-17|NONE|SHIP|quickly regular deposits. furiously expres| +2445|977760|2799|5|1|1837.72|0.03|0.04|N|O|1997-06-29|1997-07-24|1997-07-12|NONE|SHIP|into beans wake furiously ste| +2446|446507|34032|1|22|31976.56|0.04|0.08|A|F|1994-11-16|1994-10-26|1994-12-16|NONE|TRUCK|nstructions around the s| +2447|285980|10991|1|37|72740.89|0.10|0.02|N|O|1995-09-13|1995-08-11|1995-09-21|NONE|FOB|arly blithely express p| +2447|462171|49699|2|44|49858.60|0.03|0.00|N|O|1995-09-09|1995-07-29|1995-09-10|DELIVER IN PERSON|REG AIR|arefully! slyly final platelets doubt q| +2447|706177|18692|3|13|15380.82|0.10|0.00|N|O|1995-08-27|1995-07-11|1995-09-16|NONE|SHIP|final requests was furious| +2447|707570|20085|4|43|67834.22|0.00|0.03|N|O|1995-10-02|1995-08-21|1995-10-11|DELIVER IN PERSON|FOB|of the doggedly bold pinto beans. furiou| +2447|121359|46364|5|32|44171.20|0.00|0.01|N|O|1995-08-16|1995-08-07|1995-08-20|NONE|AIR|furiously ironic r| +2447|671409|8949|6|21|28987.77|0.00|0.00|N|O|1995-07-17|1995-07-23|1995-07-26|COLLECT COD|TRUCK|nly final pinto bea| +2447|355975|5976|7|41|83269.36|0.03|0.08|N|O|1995-07-15|1995-07-11|1995-07-16|TAKE BACK RETURN|RAIL|ecial deposits grow express requests. s| +2472|857744|7745|1|24|40840.80|0.02|0.08|A|F|1993-09-08|1993-07-17|1993-09-10|COLLECT COD|TRUCK|packages affix qu| +2472|94617|32121|2|4|6446.44|0.03|0.06|A|F|1993-06-07|1993-08-16|1993-07-01|DELIVER IN PERSON|TRUCK|ress requests. carefully final requ| +2473|854937|29972|1|10|18918.90|0.02|0.08|N|O|1998-04-11|1998-03-20|1998-04-15|NONE|REG AIR|he ironic acc| +2473|922100|34619|2|17|19075.02|0.02|0.00|N|O|1998-03-08|1998-04-04|1998-04-04|DELIVER IN PERSON|SHIP|eposits. daringly re| +2473|723658|11201|3|39|65583.18|0.07|0.00|N|O|1998-04-24|1998-03-26|1998-05-17|DELIVER IN PERSON|TRUCK|r ideas. blithely close deposits sleep| +2473|516406|16407|4|46|65429.48|0.06|0.07|N|O|1998-04-01|1998-04-23|1998-04-29|COLLECT COD|REG AIR| carefully express fo| +2474|981969|7008|1|6|12305.52|0.09|0.08|R|F|1993-05-14|1993-07-12|1993-06-12|TAKE BACK RETURN|AIR| special deposits use careful| +2474|947213|47214|2|30|37805.10|0.03|0.06|A|F|1993-08-03|1993-07-14|1993-09-01|TAKE BACK RETURN|SHIP|g dependenc| +2474|794454|32000|3|40|61936.80|0.06|0.03|A|F|1993-05-26|1993-07-11|1993-06-01|NONE|REG AIR| slyly even deposits. bold, brave packag| +2474|379885|42393|4|45|88419.15|0.08|0.06|A|F|1993-06-28|1993-07-03|1993-07-15|NONE|REG AIR|s integrate blithely according to the furi| +2475|665274|27788|1|24|29741.76|0.07|0.02|A|F|1993-08-02|1993-10-10|1993-08-15|COLLECT COD|FOB|lar, enticing packages. caref| +2475|250455|12961|2|30|42163.20|0.02|0.02|A|F|1993-07-17|1993-09-07|1993-07-21|DELIVER IN PERSON|FOB|ly final requests detect a| +2475|383749|8764|3|36|65978.28|0.07|0.00|R|F|1993-09-03|1993-09-02|1993-09-16|TAKE BACK RETURN|SHIP|r deposits? requests poach befor| +2475|662986|38013|4|41|79906.95|0.00|0.02|R|F|1993-09-22|1993-08-15|1993-10-19|NONE|SHIP|carefully even | +2475|802907|27940|5|8|14478.88|0.04|0.05|R|F|1993-10-10|1993-09-26|1993-10-24|NONE|FOB|ctions after the b| +2475|449540|24557|6|50|74476.00|0.04|0.01|A|F|1993-08-05|1993-09-30|1993-09-01|DELIVER IN PERSON|FOB|s sleep close| +2476|217574|17575|1|39|58170.84|0.07|0.07|N|O|1997-02-08|1997-01-27|1997-02-28|TAKE BACK RETURN|TRUCK|y according to the blit| +2476|765882|3428|2|15|29217.75|0.10|0.02|N|O|1997-02-20|1996-12-16|1997-03-21|NONE|REG AIR|jole carefully| +2476|168173|30677|3|44|54611.48|0.02|0.06|N|O|1996-12-29|1997-01-30|1997-01-19|DELIVER IN PERSON|FOB|nd the quickly clo| +2476|482521|45031|4|22|33077.00|0.02|0.01|N|O|1997-01-20|1996-12-26|1997-01-29|DELIVER IN PERSON|SHIP|t blithely quickly spec| +2477|834756|47273|1|40|67628.40|0.09|0.01|A|F|1994-04-18|1994-06-25|1994-05-14|NONE|AIR|tly final pinto beans boost b| +2477|730387|42902|2|45|63780.75|0.01|0.05|A|F|1994-04-27|1994-05-30|1994-05-08|TAKE BACK RETURN|TRUCK|equests are s| +2477|600649|25674|3|45|69732.45|0.09|0.02|A|F|1994-07-07|1994-05-27|1994-07-12|DELIVER IN PERSON|REG AIR|ests: furiously special accounts detect | +2477|94602|19605|4|16|25545.60|0.10|0.01|A|F|1994-07-19|1994-05-20|1994-08-17|NONE|SHIP|osits above the| +2477|973224|48263|5|1|1297.18|0.09|0.03|R|F|1994-07-06|1994-05-15|1994-07-27|COLLECT COD|TRUCK|nusual dependencies na| +2477|970377|20378|6|21|30393.93|0.08|0.08|A|F|1994-07-18|1994-06-17|1994-07-30|NONE|FOB| regular in| +2478|133080|8085|1|41|45636.28|0.01|0.05|N|O|1997-04-15|1997-05-02|1997-04-21|NONE|TRUCK| nag. slow pinto beans| +2478|664026|1566|2|5|4949.95|0.07|0.02|N|O|1997-03-10|1997-04-27|1997-04-07|COLLECT COD|AIR|ng to the | +2479|223858|11371|1|38|67709.92|0.03|0.08|N|O|1998-05-08|1998-04-08|1998-05-15|COLLECT COD|MAIL|l accounts. slyly pending pint| +2479|372279|47294|2|11|14863.86|0.00|0.06|N|O|1998-03-21|1998-04-26|1998-04-09|DELIVER IN PERSON|SHIP|ng to the accounts. fl| +2479|884681|34682|3|40|66625.60|0.04|0.01|N|O|1998-04-15|1998-04-26|1998-04-17|TAKE BACK RETURN|AIR|egular dinos b| +2504|78963|3966|1|2|3883.92|0.10|0.08|A|F|1993-01-10|1993-02-13|1993-01-11|COLLECT COD|AIR|ven instructions wake carefully bol| +2504|121263|33766|2|26|33390.76|0.10|0.01|R|F|1993-02-10|1993-02-10|1993-03-04|TAKE BACK RETURN|MAIL|efully slyly regular platelets? | +2504|57416|19918|3|34|46695.94|0.00|0.08|R|F|1992-11-21|1992-12-18|1992-12-15|TAKE BACK RETURN|SHIP|ep quickly ideas. stealthily ev| +2504|975615|25616|4|3|5071.71|0.07|0.03|A|F|1993-03-06|1992-12-22|1993-03-17|NONE|MAIL|es. final pi| +2504|150174|25181|5|5|6120.85|0.07|0.03|R|F|1992-11-29|1993-02-02|1992-12-28|COLLECT COD|FOB|ress multipliers sleep regu| +2505|576308|13842|1|46|63676.88|0.09|0.06|R|F|1993-07-07|1993-06-29|1993-08-05|NONE|AIR|l excuses n| +2505|4208|16709|2|42|46712.40|0.08|0.02|A|F|1993-08-30|1993-08-14|1993-09-01|TAKE BACK RETURN|TRUCK|foxes boost blithely across the req| +2505|713657|1200|3|10|16706.20|0.02|0.03|A|F|1993-09-17|1993-07-23|1993-09-30|COLLECT COD|RAIL|l foxes affi| +2505|429513|42022|4|15|21637.35|0.04|0.02|A|F|1993-07-17|1993-07-31|1993-08-02|COLLECT COD|AIR|ly even theodoli| +2505|812472|12473|5|4|5537.72|0.00|0.06|A|F|1993-08-11|1993-06-27|1993-08-15|COLLECT COD|FOB|even accounts. ironi| +2505|206169|18674|6|13|13976.95|0.10|0.01|R|F|1993-06-16|1993-08-20|1993-07-02|NONE|REG AIR|ests promise evenly. final| +2505|82329|32330|7|31|40650.92|0.02|0.06|A|F|1993-07-18|1993-07-10|1993-07-30|NONE|REG AIR|odolites along the furiousl| +2506|687904|25444|1|14|26486.18|0.03|0.06|R|F|1993-03-16|1993-03-04|1993-03-30|COLLECT COD|REG AIR|ep blithely. slyly regular req| +2506|597240|34774|2|7|9360.54|0.07|0.03|R|F|1993-02-24|1993-02-16|1993-03-02|TAKE BACK RETURN|SHIP|ng the final theodolites. furi| +2506|807239|32272|3|18|20631.42|0.08|0.08|R|F|1993-01-29|1993-03-16|1993-02-20|TAKE BACK RETURN|SHIP|dazzle furiously. silent, silent | +2506|250027|28|4|49|47873.49|0.00|0.02|R|F|1993-01-21|1993-02-01|1993-02-16|NONE|TRUCK|ly special requests are furious| +2507|839452|39453|1|45|62613.45|0.02|0.00|A|F|1993-09-01|1993-11-23|1993-09-27|NONE|AIR|l, ironic multipliers doubt across the sp| +2508|203390|3391|1|4|5173.52|0.00|0.05|R|F|1995-01-31|1995-02-01|1995-02-08|DELIVER IN PERSON|TRUCK|deas are according| +2508|364907|39922|2|48|94650.72|0.10|0.05|R|F|1995-02-11|1995-02-02|1995-03-01|COLLECT COD|TRUCK| ideas cajole among the blithely final a| +2508|982173|44693|3|19|23847.47|0.02|0.02|R|F|1995-01-14|1995-01-30|1995-01-15|COLLECT COD|REG AIR|ronic accoun| +2508|373018|23019|4|31|33821.00|0.00|0.06|A|F|1994-12-02|1995-01-08|1994-12-21|NONE|TRUCK|odolites are carefully. quickly| +2508|304307|4308|5|27|35404.83|0.06|0.04|A|F|1995-02-20|1995-01-23|1995-02-25|TAKE BACK RETURN|SHIP|gular gifts promise fluffily| +2508|475148|12676|6|39|43801.68|0.09|0.03|R|F|1994-11-28|1995-01-18|1994-12-18|COLLECT COD|REG AIR| regular packages cajole alwa| +2508|799555|24586|7|25|41363.00|0.01|0.02|A|F|1994-12-26|1995-01-21|1995-01-22|NONE|FOB|furiously | +2509|113181|25684|1|8|9553.44|0.08|0.06|N|O|1995-12-27|1996-01-21|1996-01-22|DELIVER IN PERSON|AIR|ng ideas haggle.| +2510|500419|37950|1|15|21290.85|0.08|0.08|A|F|1992-10-30|1992-11-09|1992-11-18|COLLECT COD|SHIP|gular ideas! slyly regular | +2511|419377|44394|1|26|33705.10|0.08|0.00|A|F|1993-05-06|1993-06-11|1993-05-19|TAKE BACK RETURN|TRUCK|y regular accou| +2511|461433|48961|2|14|19521.74|0.02|0.05|R|F|1993-07-02|1993-06-21|1993-07-06|TAKE BACK RETURN|MAIL|ake carefully about the qui| +2536|396475|8983|1|49|77001.54|0.09|0.04|N|O|1998-07-02|1998-06-28|1998-07-25|DELIVER IN PERSON|TRUCK|sual accounts wake pe| +2536|544385|31916|2|50|71468.00|0.03|0.04|N|O|1998-06-18|1998-06-04|1998-07-14|TAKE BACK RETURN|TRUCK|. even accounts affix | +2536|464771|2299|3|3|5207.25|0.03|0.07|N|O|1998-07-31|1998-07-23|1998-08-11|NONE|RAIL|inal excuses are. reque| +2536|398503|36025|4|33|52849.17|0.04|0.05|N|O|1998-08-11|1998-06-07|1998-08-14|COLLECT COD|FOB|g requests wake carefully e| +2536|638201|38202|5|32|36453.44|0.10|0.02|N|O|1998-06-02|1998-07-06|1998-06-14|TAKE BACK RETURN|AIR|r requests. bravely unusual packag| +2536|242814|30327|6|22|38649.60|0.08|0.05|N|O|1998-05-31|1998-07-31|1998-06-30|DELIVER IN PERSON|RAIL|ncies; slyly unusual theodolites along th| +2537|741646|4161|1|36|60753.96|0.00|0.06|N|O|1998-03-05|1998-01-10|1998-03-13|DELIVER IN PERSON|FOB| packages. daring theodolit| +2537|839972|2489|2|22|42062.46|0.09|0.08|N|O|1997-12-20|1998-01-14|1998-01-10|COLLECT COD|REG AIR| quickly above the ironic d| +2538|747065|34608|1|45|50041.35|0.09|0.03|N|O|1997-04-20|1997-02-26|1997-04-28|TAKE BACK RETURN|FOB| along the accounts. express multiplier| +2538|909436|34473|2|29|41916.31|0.04|0.07|N|O|1997-02-07|1997-02-06|1997-02-09|NONE|RAIL|accounts. slyly regular packages unwind qu| +2538|885546|23098|3|16|24504.00|0.10|0.08|N|O|1997-01-01|1997-02-17|1997-01-17|NONE|AIR|bt pending deposits. ironic, ironic | +2538|367853|30361|4|34|65308.56|0.08|0.01|N|O|1997-01-13|1997-03-19|1997-02-07|TAKE BACK RETURN|REG AIR|s nag slyly. final ideas a| +2538|493640|6150|5|33|53909.46|0.06|0.08|N|O|1997-04-03|1997-03-06|1997-05-02|DELIVER IN PERSON|REG AIR|ess deposits. q| +2538|595267|32801|6|44|59938.56|0.00|0.07|N|O|1997-04-17|1997-02-25|1997-05-10|COLLECT COD|TRUCK|slyly ironic instructions according t| +2538|650974|26001|7|5|9624.70|0.09|0.03|N|O|1997-02-07|1997-02-21|1997-02-23|COLLECT COD|MAIL|gedly regul| +2539|909777|22296|1|23|41094.79|0.00|0.04|N|O|1995-11-16|1995-10-10|1995-12-04|TAKE BACK RETURN|AIR|es cajole fluffily according to the fluff| +2539|609260|46797|2|3|3507.69|0.06|0.08|N|O|1995-10-25|1995-10-19|1995-10-26|TAKE BACK RETURN|REG AIR|xpress pinto | +2539|819220|6769|3|1|1139.18|0.07|0.03|N|O|1995-12-18|1995-10-27|1996-01-01|TAKE BACK RETURN|SHIP|riously regular requests are around t| +2540|77748|15252|1|50|86287.00|0.00|0.02|A|F|1995-01-26|1995-01-11|1995-01-27|NONE|FOB| the unusual requests. carefully iro| +2540|704660|4661|2|28|46609.64|0.08|0.00|A|F|1994-12-29|1994-12-11|1994-12-31|TAKE BACK RETURN|MAIL|yly ironic packages. furiously express | +2540|218713|43722|3|7|11421.90|0.10|0.00|R|F|1995-01-05|1995-01-10|1995-01-09|DELIVER IN PERSON|FOB|arefully un| +2540|905237|17756|4|30|37265.70|0.02|0.03|A|F|1995-01-15|1995-02-01|1995-01-17|DELIVER IN PERSON|RAIL|kly. carefully express theodolites wak| +2540|302926|40445|5|8|15431.28|0.05|0.05|A|F|1994-12-29|1994-12-19|1995-01-17|COLLECT COD|AIR|nto beans. carefully express | +2540|275527|13043|6|42|63105.42|0.05|0.03|A|F|1994-12-16|1994-12-11|1994-12-30|DELIVER IN PERSON|TRUCK|even accounts. blithely even package| +2540|781078|18624|7|35|40566.40|0.01|0.01|A|F|1994-11-10|1994-12-30|1994-11-13|DELIVER IN PERSON|TRUCK|equests are across the pending instruction| +2541|568257|30769|1|43|56984.89|0.01|0.00|N|O|1998-09-05|1998-09-04|1998-09-14|DELIVER IN PERSON|REG AIR|s cajole furiou| +2541|690502|40503|2|21|31341.87|0.07|0.01|N|O|1998-07-08|1998-09-06|1998-07-14|DELIVER IN PERSON|REG AIR|le. bold, final dolphins wake bli| +2541|255530|18036|3|45|66848.40|0.10|0.02|N|O|1998-07-04|1998-08-12|1998-07-30|COLLECT COD|MAIL|ost blithely slyly final requests. fina| +2542|630604|5629|1|6|9207.42|0.08|0.04|A|F|1994-02-17|1994-02-28|1994-03-10|COLLECT COD|AIR| foxes. even accoun| +2542|550669|13181|2|41|70505.24|0.08|0.08|R|F|1994-04-16|1994-03-20|1994-05-09|COLLECT COD|REG AIR|ully across the regu| +2542|91086|3588|3|2|2154.16|0.04|0.07|R|F|1994-04-21|1994-02-02|1994-05-19|NONE|RAIL|ely special pinto beans try to nag caref| +2542|878681|16233|4|23|38171.72|0.07|0.08|A|F|1994-03-08|1994-02-13|1994-03-22|COLLECT COD|MAIL| boost. carefully speci| +2543|682800|7827|1|43|76659.11|0.02|0.07|N|O|1998-08-26|1998-06-19|1998-09-09|COLLECT COD|AIR|e pinto beans about the ironically express | +2543|812728|12729|2|11|18047.48|0.09|0.01|N|O|1998-05-31|1998-08-03|1998-06-22|NONE|REG AIR|regular deposits? blithely ironic deposits | +2543|504451|41982|3|40|58217.20|0.06|0.06|N|O|1998-06-23|1998-07-20|1998-07-09|COLLECT COD|TRUCK|g to the furious| +2543|293266|30782|4|44|55407.00|0.08|0.03|N|O|1998-06-15|1998-07-13|1998-07-06|TAKE BACK RETURN|AIR| bold packages against the| +2568|729955|42470|1|12|23819.04|0.03|0.06|R|F|1994-11-22|1995-01-02|1994-12-12|DELIVER IN PERSON|MAIL|he special epitap| +2568|338686|38687|2|36|62088.12|0.02|0.04|R|F|1995-01-31|1994-12-11|1995-02-04|COLLECT COD|AIR|the fluffily sly accounts affix across the| +2569|717355|4898|1|6|8233.92|0.09|0.04|R|F|1994-08-16|1994-10-05|1994-08-25|DELIVER IN PERSON|TRUCK|s above the daringly quiet ideas cajole re| +2569|575111|12645|2|15|17791.35|0.07|0.00|A|F|1994-10-01|1994-10-20|1994-10-18|TAKE BACK RETURN|AIR| dolphins. blithely q| +2569|880734|30735|3|47|80590.43|0.04|0.00|A|F|1994-10-12|1994-11-03|1994-10-13|NONE|AIR|fully ironic ideas. furious| +2569|491272|16291|4|39|49266.75|0.00|0.04|R|F|1994-08-24|1994-10-03|1994-09-13|NONE|REG AIR| beans. quickly| +2569|800872|38421|5|24|42547.92|0.01|0.02|R|F|1994-10-02|1994-10-07|1994-10-21|TAKE BACK RETURN|SHIP|inal foxes cajole quickly r| +2569|247265|34778|6|35|42428.75|0.04|0.02|A|F|1994-09-04|1994-10-25|1994-10-02|DELIVER IN PERSON|MAIL|usly furiously permanent requests. forges | +2569|774646|24647|7|31|53338.91|0.04|0.01|A|F|1994-12-05|1994-10-29|1994-12-25|NONE|SHIP|he fluffily eve| +2570|464074|39093|1|9|9342.45|0.03|0.02|R|F|1995-03-09|1995-02-27|1995-03-13|DELIVER IN PERSON|SHIP|refully fin| +2570|688909|38910|2|28|53140.36|0.00|0.03|R|F|1995-02-08|1995-02-23|1995-02-18|DELIVER IN PERSON|AIR|furiously final ideas. fluffily spec| +2570|482640|45150|3|42|68150.04|0.03|0.06|R|F|1995-02-23|1995-02-03|1995-03-01|COLLECT COD|FOB|sual deposits detect carefu| +2571|565339|40362|1|16|22468.96|0.04|0.02|A|F|1994-08-27|1994-08-11|1994-09-18|COLLECT COD|REG AIR|s wake. unusual warhorses accor| +2571|645980|45981|2|10|19259.50|0.02|0.08|A|F|1994-07-30|1994-08-12|1994-08-19|DELIVER IN PERSON|FOB|ross the blithely ironic packages | +2571|972334|47373|3|45|63283.05|0.04|0.05|R|F|1994-09-13|1994-08-18|1994-10-12|COLLECT COD|REG AIR|ously. reg| +2571|13700|38701|4|6|9682.20|0.05|0.01|A|F|1994-08-14|1994-09-15|1994-08-25|COLLECT COD|TRUCK|s. slyly ironic platele| +2571|252128|2129|5|10|10801.10|0.05|0.00|A|F|1994-08-16|1994-09-13|1994-08-18|TAKE BACK RETURN|REG AIR|eposits haggle blithely above the fu| +2571|514835|2366|6|37|68442.97|0.07|0.04|R|F|1994-07-08|1994-08-20|1994-07-10|NONE|RAIL|the blithely even somas-- pack| +2572|61794|49298|1|29|50917.91|0.07|0.03|N|O|1997-08-07|1997-10-17|1997-09-01|DELIVER IN PERSON|RAIL|ernes. carefully ironic accounts sleep bl| +2572|566425|16426|2|29|43250.60|0.03|0.00|N|O|1997-09-02|1997-10-05|1997-09-27|NONE|FOB|nts are above the deposits! unusual, u| +2572|895977|21012|3|11|21702.23|0.05|0.03|N|O|1997-07-30|1997-09-11|1997-08-23|COLLECT COD|FOB|ns mold. slyly regular dep| +2572|678994|28995|4|42|82864.32|0.08|0.06|N|O|1997-09-19|1997-10-15|1997-09-30|COLLECT COD|TRUCK|ular accounts. carefully final ac| +2573|993844|31402|1|48|93014.40|0.06|0.08|N|F|1995-06-05|1995-05-22|1995-06-30|NONE|REG AIR| use fluffily. | +2573|520560|45581|2|44|69543.76|0.02|0.00|R|F|1995-04-16|1995-05-19|1995-05-05|NONE|SHIP|owly bold ideas. even, i| +2573|45102|7603|3|15|15706.50|0.06|0.06|N|O|1995-07-28|1995-06-19|1995-07-29|DELIVER IN PERSON|AIR|ld courts nag furio| +2573|12891|12892|4|46|82978.94|0.09|0.06|R|F|1995-05-05|1995-06-14|1995-05-10|COLLECT COD|AIR| ideas. slyly even | +2573|655322|17836|5|50|63864.50|0.04|0.07|A|F|1995-06-07|1995-06-08|1995-06-15|DELIVER IN PERSON|AIR|. quickly final requests haggle. carefull| +2573|994729|19768|6|48|87536.64|0.03|0.01|A|F|1995-05-01|1995-07-02|1995-05-04|TAKE BACK RETURN|SHIP| packages cajol| +2574|977053|39573|1|22|24860.22|0.07|0.00|N|O|1997-12-30|1998-01-02|1998-01-17|DELIVER IN PERSON|AIR|packages across the asy| +2574|315498|3017|2|23|34810.04|0.04|0.04|N|O|1998-01-14|1998-01-16|1998-01-24|NONE|MAIL|carefully final deposits.| +2574|568855|6389|3|8|15390.64|0.00|0.08|N|O|1997-12-24|1997-12-14|1998-01-12|DELIVER IN PERSON|AIR|nd the care| +2574|737932|25475|4|40|78796.00|0.10|0.06|N|O|1998-02-09|1997-11-19|1998-02-17|DELIVER IN PERSON|REG AIR|ic theodolites cajole blithely | +2575|150106|107|1|9|10404.90|0.08|0.07|A|F|1995-02-06|1995-01-01|1995-02-07|TAKE BACK RETURN|RAIL|e bold, ironic dolphins-- b| +2575|821452|33969|2|5|6867.05|0.03|0.07|A|F|1995-02-23|1994-12-28|1995-03-16|TAKE BACK RETURN|AIR|nic requests lose alongside of the platel| +2575|132543|20050|3|40|63021.60|0.02|0.03|A|F|1994-11-30|1995-01-02|1994-12-01|NONE|SHIP|ymptotes. blithely silen| +2600|864261|14262|1|10|12252.20|0.10|0.00|N|O|1996-02-05|1996-04-17|1996-02-21|DELIVER IN PERSON|REG AIR|ial asymptotes sleep sl| +2600|621532|21533|2|39|56686.50|0.01|0.06|N|O|1996-03-19|1996-03-26|1996-04-06|NONE|SHIP|ithely special asymptotes. carefully | +2600|81718|19222|3|37|62889.27|0.03|0.07|N|O|1996-02-13|1996-03-11|1996-02-14|NONE|TRUCK|al requests cajole. stealthily ironic plat| +2600|432105|32106|4|27|28001.16|0.04|0.05|N|O|1996-05-19|1996-03-14|1996-06-10|DELIVER IN PERSON|MAIL|re furiously blithely ironic ac| +2600|375053|68|5|11|12408.44|0.10|0.08|N|O|1996-03-07|1996-03-18|1996-03-23|COLLECT COD|RAIL|ar instructions again| +2601|488057|567|1|17|17765.51|0.07|0.06|N|O|1996-08-21|1996-08-16|1996-09-16|TAKE BACK RETURN|RAIL| final dependencies. slyly pendi| +2601|767650|30166|2|26|44658.12|0.05|0.01|N|O|1996-06-18|1996-08-17|1996-06-21|NONE|REG AIR|ic deposits haggle quickly among t| +2601|884076|46594|3|28|29680.84|0.06|0.06|N|O|1996-10-07|1996-08-10|1996-10-19|COLLECT COD|MAIL|nic packages. slyly pending orbits boost f| +2601|652633|15147|4|4|6342.40|0.08|0.03|N|O|1996-07-16|1996-08-18|1996-08-07|DELIVER IN PERSON|AIR|ounts. sly| +2602|874529|37047|1|44|66153.12|0.06|0.05|R|F|1992-12-04|1992-11-02|1992-12-20|DELIVER IN PERSON|FOB|mptotes unwind furiously| +2602|198468|10972|2|32|50126.72|0.07|0.06|R|F|1992-11-23|1992-10-25|1992-12-13|TAKE BACK RETURN|AIR|lent deposits. furiously ironic| +2602|649802|12315|3|32|56056.64|0.00|0.00|R|F|1992-10-19|1992-10-08|1992-11-11|DELIVER IN PERSON|SHIP|nst the ironic, fin| +2602|221441|21442|4|36|49047.48|0.01|0.07|R|F|1992-10-15|1992-10-03|1992-10-21|TAKE BACK RETURN|MAIL|y ironic accounts.| +2602|756357|6358|5|10|14133.20|0.10|0.07|R|F|1992-09-10|1992-10-29|1992-09-25|TAKE BACK RETURN|RAIL|jole after the slyly | +2602|90888|28392|6|46|86428.48|0.09|0.03|R|F|1992-08-29|1992-10-06|1992-08-31|TAKE BACK RETURN|TRUCK|ully ironi| +2602|546636|46637|7|40|67304.40|0.05|0.04|A|F|1992-09-09|1992-10-22|1992-09-17|COLLECT COD|TRUCK|onic epitaphs. final| +2603|300907|38426|1|38|72499.82|0.03|0.03|A|F|1994-03-10|1994-04-01|1994-03-25|DELIVER IN PERSON|RAIL|ideas. unusua| +2603|337628|12641|2|37|61627.57|0.06|0.04|R|F|1994-03-18|1994-04-14|1994-03-21|COLLECT COD|SHIP|e fluffily| +2603|498850|11360|3|30|55464.90|0.07|0.08|A|F|1994-05-23|1994-03-20|1994-06-19|NONE|SHIP|sly quickly pending| +2603|162541|12542|4|49|78573.46|0.01|0.05|A|F|1994-03-21|1994-03-15|1994-04-09|COLLECT COD|FOB|busy platelets. careful| +2603|814985|27502|5|22|41798.68|0.03|0.01|R|F|1994-02-15|1994-04-01|1994-02-18|TAKE BACK RETURN|AIR|onic ideas are | +2604|181281|6288|1|33|44955.24|0.08|0.00|R|F|1994-09-12|1994-11-15|1994-09-25|DELIVER IN PERSON|TRUCK|ular deposits | +2604|781268|31269|2|24|32381.52|0.10|0.03|R|F|1994-10-04|1994-11-15|1994-10-27|NONE|TRUCK|uriously; slyly| +2604|762379|37410|3|46|66301.64|0.05|0.07|R|F|1994-11-04|1994-11-01|1994-11-22|DELIVER IN PERSON|MAIL|usual instructions haggle even acc| +2605|112856|37861|1|45|84098.25|0.07|0.03|A|F|1993-08-15|1993-08-14|1993-09-13|DELIVER IN PERSON|SHIP|blithely. requests wake| +2605|759621|22137|2|34|57140.06|0.03|0.01|A|F|1993-08-08|1993-08-12|1993-09-03|COLLECT COD|MAIL|ual accounts nag slyly s| +2605|935446|23001|3|44|65181.60|0.05|0.00|R|F|1993-08-24|1993-08-04|1993-08-28|TAKE BACK RETURN|MAIL|y accounts sleep always above the | +2605|37709|12710|4|50|82335.00|0.10|0.01|R|F|1993-06-16|1993-06-22|1993-06-29|TAKE BACK RETURN|AIR|nticingly acro| +2605|759856|9857|5|48|91959.36|0.06|0.04|R|F|1993-09-07|1993-07-14|1993-09-26|DELIVER IN PERSON|TRUCK|kages. blith| +2605|897053|9571|6|36|37800.36|0.01|0.04|R|F|1993-06-03|1993-06-30|1993-06-26|NONE|TRUCK|ronic pinto beans. forges nag slyly fi| +2606|351082|1083|1|32|36258.24|0.04|0.05|N|F|1995-06-03|1995-04-17|1995-06-25|DELIVER IN PERSON|SHIP|hely pendi| +2606|631381|6406|2|9|11811.15|0.10|0.03|A|F|1995-04-25|1995-03-25|1995-05-15|DELIVER IN PERSON|AIR|g dolphins. foxes ar| +2606|605679|18192|3|18|28523.52|0.10|0.04|A|F|1995-04-11|1995-04-21|1995-04-24|COLLECT COD|SHIP|arefully final ideas.| +2606|644732|7245|4|32|53654.40|0.09|0.02|A|F|1995-05-16|1995-04-21|1995-05-20|COLLECT COD|AIR|odolites sl| +2607|397446|47447|1|46|70997.78|0.02|0.00|N|O|1996-10-04|1996-09-07|1996-10-27|NONE|MAIL|ost quickly. | +2607|866215|28733|2|10|11811.70|0.00|0.04|N|O|1996-08-18|1996-08-12|1996-09-12|NONE|FOB|usly under the fluffily ironic packa| +2607|469641|44660|3|48|77309.76|0.01|0.02|N|O|1996-09-19|1996-09-17|1996-10-05|NONE|RAIL|ests nag fluffily. fluffily bold| +2607|253099|40615|4|2|2104.16|0.08|0.03|N|O|1996-10-11|1996-09-11|1996-11-02|COLLECT COD|SHIP|ding accounts according to the quick| +2607|819127|31644|5|37|38704.96|0.10|0.00|N|O|1996-09-20|1996-08-18|1996-09-24|NONE|TRUCK|stealthy packages alongside o| +2607|54300|29303|6|45|56443.50|0.04|0.03|N|O|1996-07-22|1996-08-28|1996-07-25|DELIVER IN PERSON|AIR|refully carefully b| +2607|604862|4863|7|21|37103.43|0.07|0.05|N|O|1996-07-16|1996-09-24|1996-07-17|TAKE BACK RETURN|MAIL|rate blithely never blithe| +2632|912405|37442|1|41|58111.76|0.01|0.02|N|O|1997-03-18|1997-03-18|1997-04-04|TAKE BACK RETURN|SHIP|l excuses po| +2632|776083|26084|2|45|52157.25|0.03|0.00|N|O|1997-03-20|1997-03-01|1997-03-29|DELIVER IN PERSON|TRUCK|l foxes nag ruthlessly across the blithe| +2632|622871|47896|3|10|17938.40|0.08|0.08|N|O|1997-03-06|1997-03-28|1997-03-27|COLLECT COD|AIR| furiously pending requests use unu| +2633|606993|19506|1|18|34199.28|0.01|0.03|N|O|1997-11-05|1997-11-21|1997-11-15|NONE|REG AIR|e platelets. packages integrate after the i| +2634|569621|7155|1|14|23668.40|0.02|0.08|A|F|1994-08-05|1994-09-06|1994-08-28|DELIVER IN PERSON|MAIL|eas. even requests w| +2634|606706|19219|2|1|1612.67|0.03|0.01|A|F|1994-08-27|1994-08-10|1994-09-17|TAKE BACK RETURN|AIR| ironic packages haggle | +2635|842271|17304|1|19|23051.37|0.04|0.06|R|F|1992-03-23|1992-03-10|1992-04-17|TAKE BACK RETURN|RAIL|xpress, regular platelet| +2635|35378|35379|2|47|61728.39|0.08|0.00|R|F|1992-03-07|1992-03-07|1992-03-25|COLLECT COD|TRUCK|s sleep carefully near| +2635|593903|43904|3|8|15975.04|0.04|0.03|A|F|1992-03-04|1992-04-06|1992-03-19|COLLECT COD|MAIL|l excuses. quickly bol| +2635|714656|39685|4|3|5011.86|0.01|0.06|A|F|1992-05-20|1992-03-04|1992-06-17|NONE|FOB|en accounts according | +2635|217106|17107|5|2|2046.18|0.02|0.05|R|F|1992-04-01|1992-03-20|1992-04-20|NONE|FOB|ymptotes us| +2636|449905|49906|1|35|64920.80|0.00|0.02|R|F|1995-05-29|1995-06-25|1995-05-31|COLLECT COD|RAIL|ronic foxes. fluffily eve| +2636|543222|43223|2|32|40486.40|0.00|0.08|N|O|1995-07-01|1995-06-10|1995-07-03|NONE|AIR|t deposits. blithely | +2636|927751|40270|3|33|58697.43|0.10|0.06|N|O|1995-07-27|1995-07-24|1995-08-23|TAKE BACK RETURN|SHIP|ular gifts are| +2636|697197|22224|4|44|52543.04|0.07|0.05|N|O|1995-07-03|1995-07-18|1995-07-18|DELIVER IN PERSON|SHIP|ully regular| +2636|783169|8200|5|34|42572.42|0.01|0.00|N|O|1995-07-23|1995-07-03|1995-08-15|NONE|SHIP|ests sleep furiously around the furiou| +2636|707943|45486|6|40|78036.40|0.09|0.02|N|O|1995-06-28|1995-07-08|1995-07-12|TAKE BACK RETURN|TRUCK|ronic packa| +2636|389326|1834|7|32|45289.92|0.09|0.01|N|O|1995-07-05|1995-07-07|1995-08-04|TAKE BACK RETURN|FOB|nst the quickly regular foxes. sly| +2637|392101|4609|1|44|52495.96|0.08|0.00|R|F|1994-04-29|1994-04-10|1994-05-21|TAKE BACK RETURN|REG AIR|y express patte| +2638|136807|36808|1|6|11062.80|0.01|0.00|A|F|1992-11-13|1993-01-17|1992-11-16|DELIVER IN PERSON|RAIL|iously final dolphins. unusual platele| +2638|307922|45441|2|18|34738.38|0.00|0.04|R|F|1993-02-07|1992-12-13|1993-02-28|NONE|MAIL|s. special dependenci| +2639|164363|26867|1|13|18555.68|0.05|0.00|N|O|1997-06-02|1997-06-09|1997-06-08|COLLECT COD|FOB| slyly around the slyly regula| +2639|448819|11328|2|33|58337.07|0.01|0.02|N|O|1997-08-05|1997-07-03|1997-09-04|COLLECT COD|RAIL|s. even ideas ha| +2639|289946|14957|3|36|69693.48|0.03|0.00|N|O|1997-05-14|1997-06-28|1997-05-15|COLLECT COD|FOB|l frets. quickly final frets slee| +2664|477196|14724|1|49|57485.33|0.04|0.02|N|O|1996-04-22|1996-04-17|1996-05-20|DELIVER IN PERSON|AIR|slowly ruthless packag| +2665|570437|32949|1|50|75370.50|0.07|0.02|R|F|1994-11-28|1994-12-03|1994-12-21|NONE|FOB|l packages k| +2665|329438|16957|2|36|52827.12|0.03|0.00|A|F|1995-01-03|1994-10-20|1995-01-12|DELIVER IN PERSON|REG AIR|mise final accounts. quickly pendin| +2666|731207|18750|1|27|33430.59|0.00|0.04|N|O|1998-02-27|1998-01-20|1998-03-04|TAKE BACK RETURN|REG AIR|he furiously ironic packages| +2667|84787|22291|1|34|60240.52|0.00|0.03|N|O|1997-11-16|1997-10-04|1997-11-28|NONE|TRUCK|, silent accounts haggle flu| +2667|13724|38725|2|29|47493.88|0.02|0.02|N|O|1997-10-05|1997-08-28|1997-10-22|TAKE BACK RETURN|SHIP|efully bold | +2668|47258|9759|1|22|26515.50|0.10|0.00|N|O|1997-03-12|1997-03-21|1997-03-23|DELIVER IN PERSON|AIR|posits affix fu| +2668|248738|48739|2|31|52288.32|0.00|0.01|N|O|1997-05-08|1997-03-10|1997-05-09|COLLECT COD|RAIL|ronic deposits. slyly blithe ideas boost | +2668|536754|49265|3|39|69838.47|0.00|0.00|N|O|1997-02-13|1997-03-31|1997-02-19|COLLECT COD|RAIL|ously dari| +2668|212728|12729|4|29|47580.59|0.01|0.04|N|O|1997-03-09|1997-03-31|1997-03-24|TAKE BACK RETURN|FOB|beans boost carefully ironic, unusua| +2668|302777|27790|5|27|48053.52|0.03|0.04|N|O|1997-03-12|1997-03-10|1997-04-01|TAKE BACK RETURN|FOB|ress asymptotes cajol| +2668|770487|8033|6|46|71642.70|0.00|0.02|N|O|1997-04-04|1997-03-31|1997-04-13|TAKE BACK RETURN|TRUCK|fluffily final | +2669|683545|46059|1|38|58083.38|0.05|0.07|R|F|1994-02-23|1994-01-28|1994-03-03|DELIVER IN PERSON|MAIL|old ideas h| +2669|332226|19745|2|40|50328.40|0.10|0.03|R|F|1994-02-24|1994-02-01|1994-03-10|DELIVER IN PERSON|FOB|ccounts sleep final r| +2669|716481|28996|3|40|59898.00|0.06|0.00|A|F|1993-11-21|1993-12-25|1993-12-01|TAKE BACK RETURN|AIR| integrate slyly along t| +2670|932550|20105|1|37|58552.87|0.08|0.04|N|O|1998-04-25|1998-07-06|1998-05-02|COLLECT COD|SHIP| frets sleep furiously| +2670|356213|31228|2|19|24114.80|0.01|0.01|N|O|1998-08-04|1998-06-30|1998-08-10|TAKE BACK RETURN|TRUCK|ove the special warthogs. regular depos| +2670|856964|44516|3|5|9604.60|0.01|0.07|N|O|1998-04-24|1998-05-14|1998-04-27|TAKE BACK RETURN|SHIP|. special, ironic acc| +2670|983594|21152|4|17|28518.35|0.09|0.03|N|O|1998-06-30|1998-06-17|1998-07-15|NONE|SHIP|ely instructions. regular, unusual request| +2670|250637|13143|5|21|33340.02|0.01|0.04|N|O|1998-06-18|1998-05-19|1998-06-26|NONE|TRUCK|xpress accounts haggle fu| +2670|441371|16388|6|17|22309.95|0.06|0.03|N|O|1998-06-26|1998-06-09|1998-07-17|NONE|SHIP|e even accounts. fin| +2670|109134|46641|7|5|5715.65|0.05|0.00|N|O|1998-07-24|1998-06-14|1998-08-20|DELIVER IN PERSON|TRUCK|side of the carefully special requests! reg| +2671|201393|26402|1|29|37537.02|0.10|0.00|N|O|1995-08-12|1995-07-09|1995-09-02|DELIVER IN PERSON|FOB|dolphins al| +2671|800380|25413|2|27|34569.18|0.08|0.03|N|O|1995-07-28|1995-08-04|1995-08-16|COLLECT COD|RAIL|p after the fl| +2671|973204|23205|3|6|7662.96|0.07|0.06|N|O|1995-07-15|1995-06-14|1995-07-22|COLLECT COD|AIR|l requests haggle after the fluffily e| +2671|630408|30409|4|3|4015.11|0.05|0.06|N|O|1995-09-05|1995-06-23|1995-09-24|TAKE BACK RETURN|MAIL|uests around the slyl| +2671|250634|38150|5|41|64969.42|0.02|0.08|R|F|1995-05-20|1995-08-07|1995-05-29|DELIVER IN PERSON|RAIL|. pinto beans sleep blithely a| +2671|393489|5997|6|11|17407.17|0.03|0.08|N|O|1995-07-15|1995-07-20|1995-07-31|TAKE BACK RETURN|REG AIR|ackages. bli| +2671|360946|48468|7|10|20069.30|0.08|0.06|R|F|1995-05-20|1995-07-15|1995-06-08|DELIVER IN PERSON|REG AIR| special foxes are furiously. ev| +2696|408032|8033|1|43|40420.43|0.02|0.08|N|O|1997-06-25|1997-05-11|1997-07-18|COLLECT COD|MAIL| boost among| +2696|778873|41389|2|29|56603.36|0.07|0.08|N|O|1997-04-05|1997-05-28|1997-04-16|NONE|REG AIR|le across the quickly| +2696|503245|3246|3|3|3744.66|0.06|0.05|N|O|1997-04-15|1997-05-18|1997-05-14|TAKE BACK RETURN|AIR|e carefully regular ac| +2697|956894|6895|1|50|97542.50|0.05|0.07|R|F|1992-11-28|1992-12-14|1992-12-23|DELIVER IN PERSON|REG AIR|ould have t| +2697|513163|13164|2|26|30579.64|0.07|0.02|A|F|1992-12-22|1992-12-02|1992-12-25|COLLECT COD|AIR|nto beans. carefully final deposits| +2697|713881|13882|3|10|18948.50|0.07|0.04|R|F|1992-11-26|1993-01-02|1992-12-18|DELIVER IN PERSON|RAIL| waters. carefully special accounts shall s| +2697|192118|29628|4|2|2420.22|0.04|0.06|R|F|1993-02-15|1993-01-04|1993-02-23|NONE|RAIL|ully after the carefully| +2697|919500|19501|5|21|31908.66|0.01|0.03|R|F|1993-01-26|1992-12-05|1993-02-11|TAKE BACK RETURN|AIR|tructions us| +2697|20868|33369|6|34|60821.24|0.01|0.02|R|F|1993-02-12|1992-12-13|1993-02-21|DELIVER IN PERSON|SHIP|ously ironic instruction| +2698|864962|2514|1|1|1926.92|0.09|0.08|N|O|1995-07-19|1995-08-18|1995-08-02|TAKE BACK RETURN|SHIP|usly final| +2698|415659|28168|2|36|56686.68|0.10|0.07|N|O|1995-07-31|1995-06-30|1995-08-05|NONE|SHIP| cajole furiously along the slyly iron| +2698|976930|1969|3|43|86296.27|0.02|0.07|N|O|1995-08-13|1995-08-06|1995-09-01|TAKE BACK RETURN|AIR|xpress foxes. express instructions| +2698|251309|1310|4|3|3780.87|0.04|0.04|N|O|1995-09-14|1995-08-11|1995-10-04|DELIVER IN PERSON|SHIP|ts. fluffily express accou| +2698|740308|15337|5|34|45841.18|0.02|0.03|N|O|1995-08-27|1995-08-10|1995-09-05|TAKE BACK RETURN|FOB|gular packages nag furiously alongside | +2699|454488|4489|1|17|24521.82|0.10|0.02|N|O|1996-01-20|1996-03-31|1996-02-18|NONE|AIR|ular pains at the fluffily final re| +2699|566623|4157|2|43|72652.80|0.10|0.07|N|O|1996-04-14|1996-02-26|1996-04-17|COLLECT COD|RAIL|usly regular instructions. even attainmen| +2699|226669|39174|3|4|6382.60|0.03|0.04|N|O|1996-03-04|1996-03-04|1996-03-25|NONE|RAIL|o beans; courts w| +2700|111647|24150|1|31|51417.84|0.03|0.08|R|F|1992-08-19|1992-08-07|1992-08-21|TAKE BACK RETURN|MAIL|lyly among t| +2700|439016|14033|2|10|9549.90|0.02|0.06|A|F|1992-07-27|1992-08-18|1992-08-10|DELIVER IN PERSON|REG AIR| at the regular package| +2700|539253|39254|3|31|40059.13|0.00|0.06|R|F|1992-07-05|1992-08-06|1992-07-19|DELIVER IN PERSON|FOB|ptotes. blithely | +2700|222212|9725|4|44|49904.80|0.05|0.03|R|F|1992-07-13|1992-08-08|1992-07-30|TAKE BACK RETURN|RAIL|nd the carefully fluffy de| +2700|715127|40156|5|33|37688.97|0.05|0.03|R|F|1992-09-20|1992-07-30|1992-09-28|NONE|REG AIR|furiously ironic, pending pack| +2700|124353|24354|6|37|50961.95|0.01|0.03|A|F|1992-09-01|1992-07-17|1992-09-21|DELIVER IN PERSON|TRUCK|gainst the ironic theodoli| +2701|392294|4802|1|20|27725.60|0.02|0.01|R|F|1994-07-24|1994-05-18|1994-08-10|DELIVER IN PERSON|AIR| instruction| +2701|272292|47303|2|20|25285.60|0.02|0.07|R|F|1994-07-31|1994-05-29|1994-08-12|COLLECT COD|TRUCK| carefully unusual accounts cajole care| +2701|397266|47267|3|9|12269.25|0.03|0.00|A|F|1994-05-17|1994-06-04|1994-05-23|TAKE BACK RETURN|MAIL|ual asymptotes. pen| +2701|838310|38311|4|26|32455.02|0.00|0.01|R|F|1994-05-07|1994-06-28|1994-05-20|TAKE BACK RETURN|SHIP|quests affix flu| +2701|472476|47495|5|10|14484.50|0.08|0.01|R|F|1994-07-21|1994-05-18|1994-08-08|DELIVER IN PERSON|RAIL|egrate express, regular pinto beans? f| +2701|888021|13056|6|32|32287.36|0.07|0.06|R|F|1994-06-15|1994-06-02|1994-07-04|TAKE BACK RETURN|FOB|unts use fluf| +2701|962838|25358|7|18|34214.22|0.03|0.07|R|F|1994-05-08|1994-05-20|1994-05-17|NONE|RAIL| express courts. foxes a| +2702|401653|1654|1|28|43529.64|0.08|0.02|N|O|1995-11-13|1996-01-12|1995-12-12|NONE|MAIL|deas. bold platelets above the carefully r| +2702|580060|17594|2|20|22800.80|0.06|0.06|N|O|1996-02-03|1996-01-19|1996-02-26|DELIVER IN PERSON|MAIL| carefully regular dolphin| +2702|56060|43564|3|31|31497.86|0.09|0.04|N|O|1996-01-12|1995-12-31|1996-01-16|TAKE BACK RETURN|TRUCK|e even, unusual asym| +2702|200098|37611|4|13|12975.04|0.08|0.07|N|O|1995-11-24|1996-01-03|1995-12-09|COLLECT COD|SHIP|y. express deposits nag. carefully express | +2702|32899|20400|5|38|69611.82|0.09|0.05|N|O|1996-02-12|1996-01-01|1996-02-28|TAKE BACK RETURN|AIR|press platelets hang carefully slyly spec| +2703|638715|38716|1|47|77722.96|0.01|0.06|R|F|1992-07-09|1992-07-27|1992-07-20|DELIVER IN PERSON|TRUCK|lly pending deposits. express,| +2728|103549|16052|1|3|4657.62|0.03|0.02|A|F|1992-09-06|1992-09-26|1992-10-03|COLLECT COD|RAIL|accounts on the escapades boost about| +2728|343519|18532|2|22|34375.00|0.05|0.08|A|F|1992-11-21|1992-09-09|1992-12-16|COLLECT COD|RAIL|ecial deposits. express dependencies nod pa| +2728|508393|45924|3|21|29428.77|0.09|0.02|A|F|1992-11-22|1992-09-10|1992-12-12|NONE|RAIL|ons sleep. slyly ironic packa| +2729|954191|16711|1|49|61012.35|0.00|0.06|A|F|1993-06-13|1993-07-21|1993-06-23|COLLECT COD|AIR|r accounts cajol| +2729|71423|21424|2|31|43227.02|0.00|0.00|R|F|1993-05-30|1993-07-09|1993-06-24|DELIVER IN PERSON|SHIP|le quickly carefully bo| +2729|404542|17051|3|21|30376.92|0.02|0.07|A|F|1993-08-23|1993-08-01|1993-09-03|COLLECT COD|REG AIR|long the bold, f| +2729|124203|49208|4|37|45406.40|0.02|0.08|A|F|1993-09-09|1993-08-20|1993-09-20|DELIVER IN PERSON|MAIL|osits. quickly even requests| +2729|470771|8299|5|19|33093.25|0.00|0.08|R|F|1993-07-18|1993-07-21|1993-07-28|NONE|TRUCK|y ironic tithes. special requests | +2729|240152|27665|6|41|44777.74|0.09|0.08|A|F|1993-08-01|1993-07-18|1993-08-29|TAKE BACK RETURN|SHIP|nst the blithely enticing dolphins haggle i| +2730|767736|17737|1|31|55914.70|0.03|0.00|A|F|1992-06-07|1992-08-26|1992-06-23|TAKE BACK RETURN|TRUCK|ns across the furiou| +2730|336313|36314|2|20|26986.00|0.06|0.00|R|F|1992-06-27|1992-07-11|1992-07-01|NONE|TRUCK|urts cajole furiously pending, fina| +2731|656319|6320|1|32|40808.96|0.08|0.03|A|F|1994-12-07|1994-12-05|1994-12-21|DELIVER IN PERSON|RAIL|s wake quickly. depende| +2731|750070|25101|2|21|23520.84|0.01|0.00|A|F|1995-01-30|1994-12-17|1995-02-25|NONE|AIR|s haggle dol| +2731|424619|12144|3|8|12348.72|0.05|0.06|A|F|1994-11-05|1994-11-23|1994-11-29|NONE|REG AIR|o haggle carefully | +2732|434741|9758|1|35|58650.20|0.04|0.04|N|O|1998-06-11|1998-07-15|1998-06-21|DELIVER IN PERSON|AIR|lithely silen| +2732|679464|17004|2|28|40416.04|0.04|0.05|N|O|1998-05-26|1998-06-01|1998-06-04|DELIVER IN PERSON|SHIP|y ironic dinos cajole furiously above th| +2732|741316|3831|3|46|62434.88|0.00|0.04|N|O|1998-07-14|1998-06-05|1998-08-02|COLLECT COD|REG AIR|al requests except the flu| +2733|226230|26231|1|16|18499.52|0.00|0.05|R|F|1994-04-23|1994-05-06|1994-05-02|NONE|REG AIR|ly after the bold accounts. accounts use | +2733|246566|9071|2|19|28738.45|0.07|0.01|R|F|1994-05-13|1994-05-12|1994-06-03|DELIVER IN PERSON|FOB|ly-- even dependencies cajole regul| +2733|26131|13632|3|10|10571.30|0.08|0.00|R|F|1994-03-18|1994-04-30|1994-04-05|COLLECT COD|TRUCK|he carefully final pinto bean| +2733|171092|21093|4|21|24424.89|0.06|0.06|A|F|1994-06-21|1994-05-05|1994-07-19|NONE|MAIL| foxes according to the foxes cajole | +2733|537522|12543|5|5|7797.50|0.07|0.02|R|F|1994-06-28|1994-04-21|1994-07-08|NONE|AIR|nding account| +2733|130353|5358|6|17|23516.95|0.07|0.07|R|F|1994-04-08|1994-05-27|1994-04-27|NONE|FOB|y slow requests. blithely brave pinto bea| +2734|508|509|1|48|67608.00|0.09|0.08|N|O|1995-09-19|1995-08-01|1995-10-03|TAKE BACK RETURN|SHIP|s: dependencies haggle blithe| +2734|528106|28107|2|23|26083.84|0.07|0.08|N|O|1995-06-29|1995-07-29|1995-07-20|TAKE BACK RETURN|AIR|ously ironic packages| +2734|860842|10843|3|21|37858.80|0.06|0.05|N|O|1995-08-30|1995-07-22|1995-09-13|COLLECT COD|TRUCK|special ideas boost. fin| +2734|162200|12201|4|10|12622.00|0.01|0.07|N|O|1995-09-03|1995-08-12|1995-10-01|NONE|AIR|y quiet ideas boost slyly after the fur| +2734|78703|3706|5|13|21862.10|0.01|0.02|A|F|1995-06-07|1995-08-12|1995-06-13|COLLECT COD|TRUCK|fully blithely special foxes. special packa| +2735|777639|2670|1|11|18882.60|0.01|0.08|N|O|1996-10-30|1996-12-17|1996-10-31|COLLECT COD|FOB|ns. carefully ironic patter| +2735|763977|39008|2|37|75514.78|0.00|0.08|N|O|1996-12-12|1996-11-17|1996-12-30|COLLECT COD|MAIL|ly express accounts cajole. tithes about | +2735|159474|21978|3|1|1533.47|0.10|0.02|N|O|1996-12-12|1996-12-08|1997-01-06|DELIVER IN PERSON|AIR|sts. fluffily| +2735|265070|2586|4|23|23806.38|0.05|0.01|N|O|1996-10-18|1996-11-16|1996-11-02|NONE|AIR|ely slyly re| +2735|24264|36765|5|17|20200.42|0.06|0.07|N|O|1996-10-19|1996-12-03|1996-10-30|DELIVER IN PERSON|AIR|nically re| +2735|802237|39786|6|40|45567.60|0.05|0.01|N|O|1997-02-08|1996-12-31|1997-03-03|TAKE BACK RETURN|REG AIR|bout the special, f| +2760|949674|12193|1|39|67221.57|0.04|0.06|R|F|1992-09-13|1992-07-03|1992-09-28|DELIVER IN PERSON|SHIP| to the express,| +2760|165628|28132|2|13|22017.06|0.04|0.02|A|F|1992-09-23|1992-07-03|1992-10-13|TAKE BACK RETURN|MAIL|quests. ironic ideas above th| +2760|701771|1772|3|25|44318.50|0.04|0.03|R|F|1992-07-16|1992-07-30|1992-07-26|COLLECT COD|AIR|counts use slyly blithely re| +2761|19386|31887|1|24|31329.12|0.07|0.00|N|O|1997-07-03|1997-08-18|1997-07-14|NONE|SHIP|ly unusual accoun| +2761|814069|26586|2|2|1966.04|0.01|0.06|N|O|1997-07-22|1997-08-19|1997-07-25|NONE|AIR|pending packages integ| +2761|55586|43090|3|3|4624.74|0.01|0.05|N|O|1997-06-21|1997-06-28|1997-06-26|DELIVER IN PERSON|RAIL|ts play quickly. even, enticing requests h| +2761|222155|34660|4|40|43085.60|0.06|0.05|N|O|1997-08-11|1997-08-07|1997-08-20|NONE|TRUCK|deposits. furiously special instructions al| +2761|752413|39959|5|15|21980.70|0.09|0.06|N|O|1997-06-28|1997-08-14|1997-07-26|TAKE BACK RETURN|SHIP|eep carefully express requests. | +2762|298216|48217|1|16|19427.20|0.05|0.00|N|O|1998-04-24|1998-06-01|1998-05-16|DELIVER IN PERSON|REG AIR|uickly special ideas haggle blithely al| +2762|107185|44692|2|13|15498.34|0.03|0.06|N|O|1998-03-09|1998-04-13|1998-03-26|COLLECT COD|REG AIR| the deposit| +2762|446715|46716|3|2|3323.38|0.03|0.04|N|O|1998-06-15|1998-04-25|1998-07-03|DELIVER IN PERSON|TRUCK|old, regular excuses boost furiously| +2762|927114|27115|4|20|22821.40|0.03|0.05|N|O|1998-04-10|1998-05-17|1998-05-08|NONE|AIR|lar dinos are. quickly re| +2763|194603|44604|1|23|39044.80|0.05|0.07|A|F|1993-07-22|1993-07-15|1993-07-24|TAKE BACK RETURN|MAIL| ironic platelets eat even pack| +2763|691548|16575|2|25|38487.75|0.06|0.05|R|F|1993-08-27|1993-06-21|1993-09-16|COLLECT COD|MAIL|ts haggle slyly blithe braids. s| +2763|839801|14834|3|11|19148.36|0.04|0.04|A|F|1993-08-21|1993-07-29|1993-08-27|NONE|SHIP| even accounts| +2763|519354|19355|4|23|31586.59|0.07|0.04|A|F|1993-06-23|1993-07-01|1993-06-27|NONE|SHIP|e alongside of the bold, bold| +2763|770634|45665|5|21|35796.60|0.00|0.02|R|F|1993-06-01|1993-06-27|1993-06-02|TAKE BACK RETURN|SHIP|accounts. pinto beans use | +2763|31959|44460|6|4|7563.80|0.00|0.05|R|F|1993-09-05|1993-07-11|1993-09-11|TAKE BACK RETURN|AIR|lites sleep | +2763|133201|20708|7|2|2468.40|0.03|0.05|R|F|1993-09-02|1993-06-17|1993-09-05|NONE|AIR|ong the carefully regular account| +2764|692527|30067|1|42|63818.58|0.05|0.07|N|O|1995-10-15|1995-11-27|1995-11-07|NONE|REG AIR| dependencies are of the | +2765|960515|23035|1|10|15754.70|0.10|0.02|R|F|1992-05-01|1992-05-03|1992-05-16|TAKE BACK RETURN|RAIL|s engage. furiously even theodolites sleep | +2765|361516|49038|2|2|3155.00|0.01|0.02|A|F|1992-05-05|1992-05-18|1992-05-18|DELIVER IN PERSON|SHIP|y along the finally even ideas. unus| +2766|735527|48042|1|16|24999.84|0.00|0.03|A|F|1993-12-05|1994-02-22|1993-12-26|TAKE BACK RETURN|FOB|ts. blithely f| +2766|991126|16165|2|45|54768.60|0.05|0.00|A|F|1994-02-09|1994-01-30|1994-02-12|NONE|SHIP|ole. carefully| +2766|842175|29724|3|29|32396.77|0.02|0.01|A|F|1994-01-06|1994-01-07|1994-01-11|TAKE BACK RETURN|AIR|fully regular pinto beans. | +2766|427662|2679|4|27|42920.28|0.08|0.08|A|F|1994-01-14|1994-03-02|1994-01-30|TAKE BACK RETURN|MAIL| packages. carefully final deposits nod| +2766|706849|6850|5|49|90934.69|0.07|0.05|A|F|1994-03-30|1994-01-11|1994-04-28|DELIVER IN PERSON|TRUCK|y thin foxes; fur| +2766|2555|40056|6|4|5830.20|0.00|0.08|R|F|1994-03-07|1994-01-20|1994-03-15|TAKE BACK RETURN|RAIL|ly quick pinto beans. iron| +2766|931056|18611|7|50|54350.50|0.10|0.03|R|F|1994-03-15|1994-01-16|1994-04-07|DELIVER IN PERSON|SHIP|ns. requests slee| +2767|249979|12484|1|50|96448.00|0.05|0.01|N|O|1997-11-19|1997-12-08|1997-11-28|COLLECT COD|AIR|ickly regular deposits use against | +2767|391766|16781|2|21|39012.75|0.02|0.07|N|O|1998-02-15|1997-12-11|1998-03-06|COLLECT COD|AIR|low foxes. even i| +2792|638544|1057|1|45|66712.95|0.10|0.03|R|F|1994-02-10|1993-12-17|1994-03-11|COLLECT COD|RAIL| haggle slyly according to the blithe| +2792|995031|20070|2|4|4503.96|0.08|0.01|R|F|1994-03-03|1994-01-25|1994-03-08|TAKE BACK RETURN|FOB|al deposits across the carefully silent| +2792|485440|47950|3|7|9977.94|0.06|0.08|R|F|1993-11-25|1994-01-08|1993-12-19|COLLECT COD|SHIP|ial accounts sleep.| +2793|39428|39429|1|26|35552.92|0.05|0.03|N|O|1996-11-02|1996-11-27|1996-11-12|DELIVER IN PERSON|FOB|he daringly ironic ideas. dogg| +2793|663945|26459|2|38|72538.58|0.09|0.00|N|O|1996-12-12|1996-11-18|1996-12-19|NONE|MAIL|quickly unusual platelets. requests | +2793|915476|27995|3|16|23862.88|0.04|0.08|N|O|1996-12-02|1996-12-23|1996-12-19|COLLECT COD|AIR|ts. blithely pending packa| +2793|397030|9538|4|37|41699.74|0.06|0.03|N|O|1996-11-01|1996-11-06|1996-11-14|DELIVER IN PERSON|TRUCK|packages. slyly pending packages solve r| +2794|268863|43874|1|42|76937.70|0.03|0.01|N|O|1995-08-20|1995-09-03|1995-09-01|DELIVER IN PERSON|SHIP|heodolites.| +2794|774331|49362|2|16|22484.80|0.01|0.04|N|O|1995-08-04|1995-10-05|1995-08-18|TAKE BACK RETURN|SHIP|s integrate aft| +2794|169371|44378|3|17|24486.29|0.01|0.07|N|O|1995-11-02|1995-08-12|1995-11-22|NONE|FOB|s haggle. furiously ironic ideas sleep slyl| +2794|612936|37961|4|26|48071.40|0.09|0.00|N|O|1995-08-24|1995-10-04|1995-09-18|DELIVER IN PERSON|FOB|posits use furiously silent requests. regu| +2794|614463|39488|5|35|48210.05|0.04|0.00|N|O|1995-08-25|1995-09-02|1995-08-26|NONE|FOB|uriously unusual packages. carefully regula| +2794|270796|33302|6|4|7067.12|0.05|0.00|N|O|1995-10-06|1995-09-20|1995-10-25|DELIVER IN PERSON|RAIL| special dolphins| +2794|264047|26553|7|28|28308.84|0.02|0.06|N|O|1995-11-03|1995-08-23|1995-11-10|DELIVER IN PERSON|MAIL|egular requests hagg| +2795|830819|5852|1|40|69990.80|0.05|0.00|R|F|1994-07-06|1994-05-13|1994-07-15|DELIVER IN PERSON|AIR|al foxes. somas doubt carefully. ev| +2795|565439|15440|2|5|7522.05|0.00|0.06|A|F|1994-04-23|1994-06-10|1994-05-15|COLLECT COD|RAIL|ickly regular deposits wake | +2795|328219|40726|3|23|28685.60|0.00|0.05|R|F|1994-05-12|1994-05-31|1994-06-06|DELIVER IN PERSON|MAIL|eful, even | +2795|362207|12208|4|18|22845.42|0.09|0.00|A|F|1994-05-10|1994-06-28|1994-05-11|NONE|AIR|furiously unusual accounts cajole.| +2796|7918|32919|1|16|29214.56|0.02|0.03|R|F|1994-04-09|1994-02-28|1994-04-21|TAKE BACK RETURN|FOB|busily regular ideas mold furiously fur| +2796|66826|29328|2|18|32270.76|0.09|0.05|R|F|1994-03-10|1994-01-22|1994-03-30|COLLECT COD|RAIL|l asymptotes use slyly blithe| +2796|142992|17997|3|46|93609.54|0.07|0.05|R|F|1993-12-25|1994-03-20|1994-01-23|COLLECT COD|FOB|ep slyly pending accounts. packages acco| +2797|971387|33907|1|12|17500.08|0.10|0.08|N|O|1998-08-03|1998-08-14|1998-08-10|TAKE BACK RETURN|REG AIR| furiously about the regular braids| +2797|96141|33645|2|3|3411.42|0.01|0.06|N|O|1998-09-21|1998-09-12|1998-10-17|TAKE BACK RETURN|RAIL|gainst the quickly i| +2797|831705|44222|3|2|3273.32|0.09|0.02|N|O|1998-07-20|1998-09-18|1998-08-08|NONE|RAIL|gular instructions.| +2797|453158|3159|4|40|44445.20|0.08|0.03|N|O|1998-08-25|1998-08-23|1998-09-14|DELIVER IN PERSON|RAIL|lyly regular foxes! slyly pending d| +2797|217252|42261|5|45|52615.80|0.10|0.07|N|O|1998-10-28|1998-08-21|1998-10-29|TAKE BACK RETURN|SHIP|ily after the ca| +2797|341958|29477|6|15|29999.10|0.07|0.02|N|O|1998-09-09|1998-09-10|1998-09-19|TAKE BACK RETURN|RAIL|e packages cajole carefully. ruthless p| +2797|271781|21782|7|1|1752.77|0.02|0.08|N|O|1998-07-20|1998-08-29|1998-08-04|COLLECT COD|SHIP|ts cajole sometimes. dependencies | +2798|814869|14870|1|46|82055.72|0.04|0.00|R|F|1994-05-23|1994-06-15|1994-06-06|COLLECT COD|SHIP|p according to the thinly even deposits. f| +2798|499832|24851|2|18|32972.58|0.08|0.04|R|F|1994-06-12|1994-06-19|1994-07-11|COLLECT COD|REG AIR| asymptotes. bl| +2798|676156|38670|3|1|1132.12|0.01|0.04|R|F|1994-05-31|1994-05-27|1994-06-12|DELIVER IN PERSON|RAIL|unts. fluffi| +2798|153354|28361|4|24|33776.40|0.06|0.06|R|F|1994-06-27|1994-06-29|1994-07-10|COLLECT COD|MAIL|ackages are furiously about the regu| +2798|410291|22800|5|3|3603.81|0.03|0.04|R|F|1994-05-29|1994-07-07|1994-06-15|COLLECT COD|FOB|t the final depen| +2798|757926|7927|6|40|79355.60|0.00|0.06|A|F|1994-07-10|1994-05-24|1994-07-14|NONE|TRUCK|mptotes boos| +2798|453919|16429|7|21|39330.69|0.02|0.07|R|F|1994-07-23|1994-05-27|1994-08-22|COLLECT COD|RAIL| instructi| +2799|7543|7544|1|38|55120.52|0.00|0.00|N|O|1998-06-29|1998-08-10|1998-07-28|COLLECT COD|FOB|about the slyly regular accounts af| +2799|761457|23973|2|34|51626.28|0.07|0.00|N|O|1998-06-06|1998-08-02|1998-06-09|TAKE BACK RETURN|FOB| furiously regular deposits. | +2799|803210|15727|3|28|31168.76|0.01|0.00|N|O|1998-07-06|1998-07-24|1998-08-03|TAKE BACK RETURN|SHIP|r theodolites | +2824|147022|34529|1|26|27794.52|0.08|0.03|N|O|1998-08-17|1998-10-19|1998-09-04|COLLECT COD|AIR|hely furiously ironic foxes. furiously pen| +2824|984943|34944|2|37|75032.30|0.07|0.06|N|O|1998-11-12|1998-08-23|1998-12-12|DELIVER IN PERSON|AIR| haggle blithely ironic pinto beans. | +2824|927268|2305|3|29|37561.38|0.08|0.01|N|O|1998-10-10|1998-09-29|1998-10-26|TAKE BACK RETURN|AIR|jole into the sl| +2825|552018|39552|1|6|6419.94|0.08|0.01|A|F|1992-12-01|1992-10-26|1992-12-02|COLLECT COD|RAIL|ing to the requests wake carefully blith| +2826|509819|34840|1|6|10972.74|0.10|0.00|R|F|1992-02-08|1992-03-21|1992-03-01|NONE|AIR|posits wake blithely carefully r| +2826|518335|18336|2|8|10826.48|0.10|0.06|A|F|1992-03-14|1992-03-28|1992-04-13|COLLECT COD|AIR|lyly final de| +2826|648056|35593|3|44|44176.88|0.07|0.01|R|F|1992-04-28|1992-04-09|1992-05-04|NONE|SHIP|ts was blithely. pending accounts| +2826|869833|7385|4|16|28844.64|0.01|0.06|A|F|1992-04-21|1992-03-06|1992-04-24|NONE|TRUCK|he carefully regular pinto b| +2826|275670|13186|5|12|19747.92|0.08|0.08|R|F|1992-03-05|1992-04-09|1992-04-03|NONE|FOB|quests. quickly pe| +2827|757613|32644|1|34|56799.72|0.04|0.01|A|F|1992-04-25|1992-04-30|1992-05-05|NONE|AIR|deposits promise blithely. | +2827|191100|3604|2|13|15484.30|0.03|0.06|R|F|1992-03-09|1992-03-10|1992-03-26|DELIVER IN PERSON|FOB|r, regular packages a| +2827|816519|41552|3|29|41628.63|0.04|0.02|A|F|1992-03-10|1992-04-05|1992-03-29|COLLECT COD|SHIP|y unusual accounts. express deposits cajo| +2827|229363|29364|4|9|11631.15|0.00|0.02|R|F|1992-04-18|1992-04-17|1992-05-01|COLLECT COD|MAIL|sits. final deposit| +2827|897949|10467|5|2|3893.80|0.10|0.00|A|F|1992-05-16|1992-03-23|1992-06-12|COLLECT COD|TRUCK|nstructions about the unusual pinto bea| +2827|814370|39403|6|29|37245.57|0.08|0.04|A|F|1992-04-30|1992-05-03|1992-05-05|COLLECT COD|MAIL| solve slyly. even dependencies about the s| +2827|106208|6209|7|37|44925.40|0.09|0.00|R|F|1992-04-25|1992-03-20|1992-05-24|TAKE BACK RETURN|SHIP|s haggle. furiously even i| +2828|29129|29130|1|48|50789.76|0.10|0.06|R|F|1993-07-01|1993-07-07|1993-07-31|COLLECT COD|TRUCK|egular packages haggle carefully. f| +2828|557406|44940|2|35|51218.30|0.05|0.04|A|F|1993-06-22|1993-07-14|1993-07-04|NONE|RAIL|osits after| +2828|316806|29313|3|32|58329.28|0.09|0.05|R|F|1993-06-30|1993-07-05|1993-07-14|DELIVER IN PERSON|RAIL|fully even accounts haggle. unusu| +2828|551146|26169|4|26|31125.12|0.01|0.01|R|F|1993-07-08|1993-06-10|1993-07-14|COLLECT COD|REG AIR|ons nag careful| +2828|105766|30771|5|18|31891.68|0.05|0.00|A|F|1993-05-01|1993-07-18|1993-05-24|NONE|REG AIR|l packages | +2829|993879|43880|1|23|45375.09|0.01|0.01|A|F|1993-12-09|1993-11-18|1993-12-29|DELIVER IN PERSON|TRUCK|uriously fl| +2829|107827|32832|2|16|29357.12|0.03|0.00|A|F|1993-11-12|1993-11-03|1993-11-15|TAKE BACK RETURN|MAIL| quickly bold mult| +2829|246110|21119|3|29|30626.90|0.00|0.01|R|F|1993-12-31|1993-11-10|1994-01-12|DELIVER IN PERSON|SHIP|sleep unusual foxes. slyly ironi| +2830|63920|1424|1|5|9419.60|0.01|0.03|N|O|1996-04-15|1996-05-22|1996-04-27|COLLECT COD|AIR| quickly according to the furiousl| +2830|287258|49764|2|5|6226.20|0.10|0.05|N|O|1996-07-09|1996-04-10|1996-07-28|NONE|AIR| furiously regular deposit| +2831|337564|71|1|12|19218.60|0.03|0.01|N|O|1996-05-13|1996-06-23|1996-05-27|TAKE BACK RETURN|SHIP|gage carefully since the orbits. quickly pe| +2831|422161|9686|2|28|30327.92|0.08|0.06|N|O|1996-07-18|1996-08-05|1996-08-01|NONE|AIR|ding requests. regular, | +2831|245950|8455|3|21|39814.74|0.09|0.03|N|O|1996-07-17|1996-06-24|1996-07-25|DELIVER IN PERSON|RAIL|uickly silent theodolites. quick| +2831|679600|17140|4|1|1579.57|0.03|0.01|N|O|1996-09-03|1996-07-14|1996-09-30|DELIVER IN PERSON|AIR|ly ironic pinto bea| +2831|31327|6328|5|39|49074.48|0.04|0.08|N|O|1996-05-09|1996-06-24|1996-06-04|COLLECT COD|REG AIR|rays sleep closely. slyl| +2831|501133|26154|6|3|3402.33|0.08|0.03|N|O|1996-08-05|1996-07-12|1996-08-30|DELIVER IN PERSON|RAIL|. carefully regular requests nag.| +2856|759326|34357|1|47|65108.63|0.05|0.02|N|O|1996-02-01|1996-03-18|1996-02-17|TAKE BACK RETURN|FOB|ts. furiously iron| +2856|985550|48070|2|43|70326.93|0.03|0.00|N|O|1996-03-13|1996-03-25|1996-03-29|COLLECT COD|AIR| daring pinto beans. expr| +2856|122068|9575|3|29|31611.74|0.08|0.01|N|O|1996-01-26|1996-02-20|1996-02-13|NONE|RAIL| regular accounts within the blithe| +2856|595360|45361|4|18|26196.12|0.02|0.08|N|O|1996-01-13|1996-02-24|1996-01-19|NONE|TRUCK|attainments a| +2856|200016|37529|5|48|43968.00|0.03|0.00|N|O|1996-05-10|1996-02-12|1996-06-01|NONE|MAIL|nding platelets. th| +2856|658033|33060|6|6|5946.00|0.03|0.03|N|O|1996-04-27|1996-03-23|1996-05-16|TAKE BACK RETURN|FOB|ng deposits maintain b| +2856|548260|35791|7|2|2616.48|0.09|0.00|N|O|1996-02-18|1996-02-29|1996-03-12|DELIVER IN PERSON|AIR|aggle furiously s| +2857|605231|5232|1|33|37494.60|0.01|0.05|N|O|1997-12-27|1998-02-15|1998-01-18|NONE|RAIL|ly regular | +2857|111390|23893|2|5|7006.95|0.08|0.00|N|O|1998-01-28|1998-02-16|1998-02-02|NONE|SHIP|ld platelets: final, iron| +2857|122711|47716|3|10|17337.10|0.00|0.04|N|O|1998-02-23|1998-03-09|1998-03-02|COLLECT COD|REG AIR|ests. fina| +2857|396790|9298|4|13|24528.14|0.04|0.02|N|O|1998-04-16|1998-03-05|1998-05-10|TAKE BACK RETURN|RAIL| furiously | +2857|842179|4696|5|37|41481.81|0.07|0.03|N|O|1998-04-18|1998-02-23|1998-05-09|NONE|MAIL|s against the| +2857|498170|10680|6|15|17522.25|0.07|0.05|N|O|1997-12-26|1998-02-13|1997-12-31|TAKE BACK RETURN|REG AIR|y regular instructions mold alongside of t| +2858|250903|904|1|7|12977.23|0.10|0.04|R|F|1992-05-30|1992-03-17|1992-06-26|TAKE BACK RETURN|FOB|ly bold theodolites boost furiou| +2858|910095|10096|2|24|26521.20|0.03|0.01|R|F|1992-03-04|1992-05-11|1992-03-28|TAKE BACK RETURN|AIR|otornis nag along the f| +2858|950021|37579|3|38|40697.24|0.06|0.08|R|F|1992-05-13|1992-04-08|1992-06-01|TAKE BACK RETURN|REG AIR|y quickly silent exc| +2858|995076|20115|4|17|19907.51|0.09|0.00|R|F|1992-05-22|1992-03-30|1992-06-08|TAKE BACK RETURN|RAIL|ular requests after the ev| +2858|228656|3665|5|32|50708.48|0.00|0.02|A|F|1992-02-19|1992-04-03|1992-03-01|COLLECT COD|SHIP| even deposi| +2858|8723|46224|6|35|57110.20|0.10|0.04|R|F|1992-04-21|1992-04-07|1992-04-22|NONE|TRUCK|yly regular, unusual accounts. | +2858|603495|41032|7|50|69923.00|0.05|0.04|A|F|1992-05-02|1992-03-21|1992-05-05|DELIVER IN PERSON|FOB|in theodoli| +2859|926734|26735|1|13|22888.97|0.04|0.08|N|O|1997-02-01|1997-02-04|1997-02-17|COLLECT COD|FOB|ly bold dependencies subl| +2859|606121|18634|2|32|32866.88|0.02|0.05|N|O|1997-02-06|1997-01-22|1997-03-06|DELIVER IN PERSON|MAIL|dolphins. carefully regular accounts | +2859|60640|10641|3|1|1600.64|0.08|0.08|N|O|1997-03-23|1997-02-03|1997-04-04|NONE|REG AIR|slyly special pinto be| +2859|161835|36842|4|44|83460.52|0.04|0.00|N|O|1997-04-13|1997-01-20|1997-05-07|NONE|SHIP|ly bold warthogs eat above the package| +2859|945584|8103|5|34|55404.36|0.08|0.00|N|O|1997-03-10|1997-02-03|1997-03-20|TAKE BACK RETURN|FOB|ons sublate carefully| +2859|421618|9143|6|32|49266.88|0.09|0.04|N|O|1997-01-14|1997-01-22|1997-01-28|NONE|SHIP|equests lose according | +2860|519057|6588|1|41|44117.23|0.07|0.03|N|O|1998-04-20|1998-07-06|1998-05-09|DELIVER IN PERSON|MAIL|ngside of the carefully final packages. qu| +2860|783914|46430|2|22|43953.36|0.01|0.06|N|O|1998-06-04|1998-06-23|1998-06-26|NONE|MAIL|e carefully final | +2860|231026|18539|3|45|43065.45|0.10|0.05|N|O|1998-06-05|1998-07-10|1998-06-21|NONE|FOB|alongside of the even foxes | +2861|313653|13654|1|24|39999.36|0.10|0.03|N|O|1997-02-24|1997-02-24|1997-02-28|TAKE BACK RETURN|AIR|encies at the regular theodolites s| +2861|564490|14491|2|9|13990.23|0.05|0.03|N|O|1997-03-26|1997-02-25|1997-04-04|COLLECT COD|FOB|ckly above the furiously regular account| +2861|370220|45235|3|22|28384.62|0.03|0.02|N|O|1997-01-27|1997-01-12|1997-02-07|TAKE BACK RETURN|FOB|s instructions are. fluffily final the| +2861|286032|11043|4|10|10180.20|0.06|0.01|N|O|1996-12-18|1997-01-11|1996-12-24|DELIVER IN PERSON|RAIL| beans. platelets affix sl| +2862|351158|13666|1|32|38692.48|0.09|0.05|N|O|1996-03-21|1996-04-21|1996-04-06|COLLECT COD|SHIP|affix furiously spe| +2863|306803|31816|1|47|85060.13|0.10|0.05|A|F|1993-10-22|1993-10-25|1993-11-06|COLLECT COD|RAIL| the blithely express acc| +2863|424487|24488|2|7|9880.22|0.10|0.05|A|F|1993-09-20|1993-10-01|1993-10-09|NONE|AIR|leep fluffily before the deposits. blit| +2863|344002|6509|3|8|8367.92|0.03|0.01|A|F|1993-11-11|1993-09-04|1993-12-07|TAKE BACK RETURN|TRUCK|usly beside the blithely ironic acc| +2863|640147|15172|4|34|36961.74|0.03|0.08|A|F|1993-09-23|1993-10-02|1993-10-13|NONE|FOB| of the silent, regular requests cajole| +2888|225200|12713|1|2|2250.38|0.07|0.04|R|F|1994-10-23|1994-12-27|1994-11-15|NONE|RAIL|e ironic, e| +2888|927969|40488|2|21|41935.32|0.04|0.00|R|F|1994-12-07|1994-11-29|1994-12-11|COLLECT COD|RAIL|ke? quickly| +2888|368563|6085|3|42|68525.10|0.05|0.01|A|F|1994-11-16|1994-12-03|1994-12-11|COLLECT COD|MAIL|esias doubt slyly. quickly regular depo| +2888|422662|22663|4|13|20600.32|0.01|0.06|A|F|1995-01-21|1994-12-21|1995-02-17|COLLECT COD|AIR|le stealthily| +2889|227428|39933|1|25|33885.25|0.08|0.03|N|O|1996-08-20|1996-06-28|1996-09-05|NONE|SHIP|ar packages nag carefull| +2889|381654|6669|2|1|1735.64|0.05|0.04|N|O|1996-05-14|1996-07-05|1996-05-15|NONE|SHIP|y ironic instructions. blithely pending | +2889|450594|25613|3|45|69505.65|0.02|0.00|N|O|1996-06-16|1996-07-04|1996-07-15|TAKE BACK RETURN|RAIL|ven accounts| +2889|118031|5538|4|15|15735.45|0.10|0.00|N|O|1996-06-16|1996-07-22|1996-07-05|NONE|TRUCK|xpress dolphins? slyly regular deposits| +2889|739525|14554|5|24|37547.76|0.08|0.06|N|O|1996-05-02|1996-07-01|1996-05-24|TAKE BACK RETURN|MAIL|ites cajole-- instructions a| +2889|188457|13464|6|38|58727.10|0.04|0.04|N|O|1996-05-11|1996-07-18|1996-05-28|DELIVER IN PERSON|TRUCK|furiously bold packag| +2890|813714|13715|1|20|32553.40|0.09|0.05|N|O|1998-07-29|1998-05-24|1998-08-04|COLLECT COD|RAIL|. carefully special deposits are ag| +2890|77946|27947|2|2|3847.88|0.09|0.01|N|O|1998-06-29|1998-05-29|1998-07-17|COLLECT COD|MAIL|ng accounts impress furiou| +2890|27252|39753|3|42|49528.50|0.00|0.01|N|O|1998-07-21|1998-06-06|1998-08-03|TAKE BACK RETURN|TRUCK|ilently fluffily ironic deposits. bl| +2890|8216|33217|4|7|7869.47|0.10|0.02|N|O|1998-04-20|1998-06-09|1998-05-02|NONE|RAIL|nal dependencies cajole | +2891|276123|38629|1|5|5495.55|0.06|0.02|A|F|1994-11-14|1994-12-28|1994-11-23|NONE|TRUCK|uests. furiously express instr| +2891|795536|33082|2|18|29367.00|0.08|0.02|A|F|1994-10-10|1994-11-04|1994-10-29|NONE|REG AIR|o beans. carefully blithe packages are abo| +2891|559672|9673|3|19|32901.35|0.08|0.08|R|F|1995-01-01|1994-12-09|1995-01-26|DELIVER IN PERSON|FOB|ckly express theodolites. slowly s| +2891|393071|5579|4|19|22117.14|0.08|0.06|A|F|1994-10-14|1994-11-12|1994-11-02|COLLECT COD|FOB|nts-- unusual, pending instru| +2891|332686|20205|5|29|49841.43|0.03|0.02|A|F|1995-01-11|1994-12-24|1995-01-20|COLLECT COD|MAIL| theodolites. furiously bold decoys ag| +2891|448910|23927|6|29|53907.81|0.10|0.06|R|F|1994-11-18|1994-12-07|1994-11-24|DELIVER IN PERSON|SHIP|l instructions kindle across the carefully | +2892|135825|48328|1|1|1860.82|0.06|0.07|N|O|1996-12-06|1997-01-13|1996-12-18|NONE|REG AIR|e bold accounts.| +2893|27747|15248|1|13|21771.62|0.07|0.06|A|F|1992-10-09|1992-10-14|1992-10-30|DELIVER IN PERSON|REG AIR|multipliers. regula| +2893|343424|30943|2|29|42554.89|0.05|0.01|A|F|1992-08-03|1992-10-02|1992-08-22|TAKE BACK RETURN|RAIL|deposits affix alongside of the f| +2893|926488|39007|3|4|6057.76|0.03|0.07|A|F|1992-08-19|1992-09-03|1992-08-24|DELIVER IN PERSON|FOB|bold, stealthy pinto beans maintai| +2893|470456|45475|4|10|14264.30|0.00|0.05|R|F|1992-11-20|1992-09-04|1992-12-19|COLLECT COD|AIR|sly ironic packages. final ideas wake| +2893|941864|16901|5|23|43833.86|0.06|0.04|R|F|1992-09-30|1992-09-12|1992-10-03|COLLECT COD|AIR|jole furiously along the express fret| +2894|828654|41171|1|48|75965.28|0.10|0.08|N|O|1995-06-19|1995-06-25|1995-06-23|COLLECT COD|RAIL|ironic asymptotes hagg| +2894|178371|40875|2|28|40582.36|0.10|0.06|R|F|1995-04-11|1995-06-05|1995-05-03|TAKE BACK RETURN|TRUCK|blate about the sometimes unus| +2894|873645|23646|3|40|64744.00|0.01|0.01|R|F|1995-05-23|1995-05-05|1995-06-06|TAKE BACK RETURN|TRUCK|efully ironic| +2895|897153|47154|1|9|10350.99|0.01|0.03|A|F|1993-07-19|1993-06-17|1993-08-05|COLLECT COD|RAIL|. requests doubt. carefully even requests | +2895|448473|48474|2|13|18478.85|0.03|0.03|R|F|1993-06-12|1993-05-10|1993-06-26|DELIVER IN PERSON|RAIL|the slyly special requests. qu| +2920|169061|19062|1|4|4520.24|0.06|0.08|R|F|1993-06-13|1993-04-27|1993-06-27|TAKE BACK RETURN|TRUCK|s lose blithely. blithely regular id| +2920|397483|22498|2|37|58477.39|0.07|0.08|R|F|1993-06-15|1993-05-16|1993-06-26|DELIVER IN PERSON|RAIL|y special theodolites | +2920|490133|15152|3|19|21339.09|0.04|0.07|A|F|1993-04-29|1993-05-14|1993-05-27|DELIVER IN PERSON|REG AIR|er the accounts. slowly final theodolites u| +2920|662112|12113|4|32|34370.56|0.02|0.07|A|F|1993-05-27|1993-05-21|1993-06-26|TAKE BACK RETURN|FOB| according to th| +2921|31196|31197|1|49|55232.31|0.08|0.06|A|F|1995-01-24|1994-11-10|1995-02-19|COLLECT COD|MAIL|lly unusual packages can na| +2921|309209|9210|2|32|38982.08|0.01|0.06|R|F|1994-12-16|1994-12-05|1995-01-07|TAKE BACK RETURN|MAIL|. slyly even asymptotes nag around the sly| +2921|871312|33830|3|48|61596.96|0.05|0.04|A|F|1994-11-01|1994-11-15|1994-11-09|TAKE BACK RETURN|MAIL|ly ironic pack| +2921|132344|19851|4|17|23397.78|0.04|0.01|A|F|1995-01-04|1994-12-03|1995-01-09|NONE|TRUCK|bold hockey players across the qu| +2921|301752|1753|5|31|54365.94|0.04|0.03|R|F|1995-01-10|1994-11-18|1995-01-19|NONE|SHIP|pending packages was warthogs. furious| +2921|534654|47165|6|8|13509.04|0.09|0.04|R|F|1994-10-03|1994-11-09|1994-10-19|DELIVER IN PERSON|FOB|s-- brave requests integrate s| +2922|461397|36416|1|39|52976.43|0.05|0.08|N|O|1997-03-25|1997-04-28|1997-04-14|DELIVER IN PERSON|AIR|sly bravely even| +2922|695644|20671|2|47|77061.67|0.04|0.04|N|O|1997-05-22|1997-06-10|1997-06-10|NONE|FOB|sts; packages cajole final packages. deposi| +2922|683174|33175|3|17|19671.38|0.03|0.08|N|O|1997-06-24|1997-06-21|1997-07-11|NONE|SHIP|y across the quickly regular foxes. fluff| +2922|100558|38065|4|34|52990.70|0.05|0.02|N|O|1997-05-12|1997-05-11|1997-05-23|TAKE BACK RETURN|RAIL|packages s| +2922|68049|5553|5|2|2034.08|0.02|0.03|N|O|1997-06-15|1997-06-20|1997-06-28|COLLECT COD|REG AIR|ly ironic foxes abou| +2922|698802|48803|6|45|81034.65|0.00|0.07|N|O|1997-06-21|1997-05-02|1997-06-29|NONE|TRUCK|y fluffily unusual request| +2922|763270|25786|7|34|45330.16|0.02|0.01|N|O|1997-06-16|1997-06-09|1997-06-17|TAKE BACK RETURN|AIR|silent ideas wake. bold dolphins boost | +2923|265756|3272|1|37|63704.38|0.01|0.07|R|F|1994-08-09|1994-09-24|1994-09-07|NONE|REG AIR|quickly. bold, ruthless accounts was acros| +2923|551504|14016|2|43|66885.64|0.08|0.04|A|F|1994-10-27|1994-10-18|1994-11-25|NONE|SHIP|lent pinto beans. final dolphins was furio| +2924|349275|24288|1|25|33106.50|0.05|0.07|N|O|1996-03-02|1996-02-15|1996-03-28|DELIVER IN PERSON|TRUCK|ickly around t| +2924|261945|36956|2|13|24790.09|0.10|0.01|N|O|1996-02-11|1996-03-09|1996-02-27|TAKE BACK RETURN|MAIL|uctions sleep blithely above the fu| +2924|504106|41637|3|36|39962.88|0.04|0.08|N|O|1996-03-02|1996-02-04|1996-03-07|TAKE BACK RETURN|TRUCK|the final, special the| +2924|508092|20603|4|14|15400.98|0.10|0.00|N|O|1996-02-26|1996-02-08|1996-03-11|TAKE BACK RETURN|TRUCK| of the final, ironic packages. slyly fi| +2925|515732|28243|1|1|1747.71|0.00|0.00|A|F|1993-07-27|1993-06-20|1993-08-04|COLLECT COD|FOB|sometimes carefully special accounts. requ| +2925|897744|35296|2|44|76634.80|0.06|0.07|A|F|1993-04-30|1993-05-23|1993-05-04|TAKE BACK RETURN|REG AIR|xcuses integrate idly ir| +2925|375729|38237|3|20|36094.20|0.02|0.05|R|F|1993-06-01|1993-05-23|1993-06-09|NONE|RAIL|gouts cajole slyly slyly | +2925|874383|24384|4|14|19002.76|0.00|0.04|R|F|1993-06-15|1993-07-04|1993-06-17|NONE|RAIL|sual requests. s| +2925|741137|3652|5|30|35343.00|0.10|0.08|R|F|1993-06-11|1993-05-18|1993-06-29|TAKE BACK RETURN|FOB| affix furiously fi| +2925|283543|21059|6|36|54955.08|0.01|0.08|A|F|1993-05-27|1993-05-31|1993-05-30|DELIVER IN PERSON|MAIL|lly ironic ideas | +2926|329286|41793|1|21|27620.67|0.02|0.01|N|O|1996-11-19|1996-09-15|1996-11-27|NONE|TRUCK|ss platelets. caref| +2926|300918|25931|2|24|46053.60|0.07|0.02|N|O|1996-08-16|1996-10-02|1996-09-12|TAKE BACK RETURN|SHIP|ns across t| +2926|522353|34864|3|39|53637.87|0.04|0.06|N|O|1996-09-23|1996-10-22|1996-10-07|TAKE BACK RETURN|MAIL|eas wake slowly slyly enticing reques| +2927|449193|11702|1|15|17132.55|0.05|0.04|N|O|1998-02-22|1997-12-11|1998-03-07|DELIVER IN PERSON|MAIL|symptotes around the blithely final pattern| +2927|575358|25359|2|23|32966.59|0.00|0.04|N|O|1998-02-08|1997-12-19|1998-02-11|COLLECT COD|FOB|yly express ideas.| +2927|25180|181|3|28|30945.04|0.02|0.02|N|O|1997-11-05|1998-01-09|1997-11-07|NONE|RAIL|theodolites. ruthless, express ac| +2927|195445|45446|4|46|70860.24|0.10|0.03|N|O|1997-11-10|1997-12-08|1997-11-20|COLLECT COD|FOB| haggle upon the carefully ironic ide| +2927|843635|6152|5|30|47357.70|0.09|0.04|N|O|1997-11-30|1997-12-01|1997-12-12|TAKE BACK RETURN|FOB|nts across the regular requests lose slyly| +2952|82235|7238|1|41|49906.43|0.07|0.02|R|F|1992-04-04|1992-05-19|1992-04-11|TAKE BACK RETURN|AIR|kly regular accounts i| +2952|118381|30884|2|19|26588.22|0.01|0.01|A|F|1992-07-11|1992-06-12|1992-08-05|NONE|SHIP|re. blithely slow theodolites cajole b| +2953|433408|33409|1|9|12072.42|0.05|0.06|A|F|1994-05-30|1994-06-16|1994-06-07|NONE|SHIP| sauternes detect blithely special, even | +2953|272537|10053|2|32|48304.64|0.06|0.06|A|F|1994-05-17|1994-07-25|1994-06-09|TAKE BACK RETURN|MAIL|doggedly pen| +2953|527710|2731|3|42|72982.98|0.02|0.08|A|F|1994-06-08|1994-07-04|1994-06-16|TAKE BACK RETURN|FOB| the furiously bold ideas.| +2953|221381|46390|4|31|40373.47|0.10|0.02|A|F|1994-08-19|1994-06-30|1994-08-31|COLLECT COD|SHIP|d pinto beans are even instructions. forg| +2954|301830|1831|1|24|43963.68|0.02|0.05|A|F|1993-08-06|1993-08-18|1993-09-03|TAKE BACK RETURN|SHIP|notornis. | +2955|909779|34816|1|12|21464.76|0.01|0.03|A|F|1993-09-16|1993-10-11|1993-10-08|NONE|TRUCK|y final packages. p| +2955|653126|28153|2|3|3237.27|0.01|0.03|R|F|1993-08-28|1993-10-10|1993-09-19|TAKE BACK RETURN|RAIL|quests use fi| +2956|762822|25338|1|50|94239.50|0.10|0.08|R|F|1992-12-25|1992-11-21|1993-01-04|TAKE BACK RETURN|REG AIR| impress blithely carefully even platelets.| +2956|741398|41399|2|5|7196.80|0.08|0.03|A|F|1993-01-14|1992-11-25|1993-01-15|TAKE BACK RETURN|SHIP|ress, blithe| +2956|675068|25069|3|46|47979.38|0.09|0.07|A|F|1992-11-09|1992-12-24|1992-11-22|TAKE BACK RETURN|FOB|g the regular, ironic theodol| +2956|858918|21436|4|6|11261.22|0.01|0.08|A|F|1993-01-04|1992-12-07|1993-01-14|NONE|RAIL|e blithely ironic requests! furiously re| +2957|344937|7444|1|25|49548.00|0.05|0.04|A|F|1993-10-02|1993-09-04|1993-10-24|TAKE BACK RETURN|FOB|he carefully| +2957|342966|5473|2|27|54241.65|0.05|0.06|A|F|1993-11-02|1993-09-04|1993-11-10|COLLECT COD|SHIP|the regularly unusual reques| +2957|225113|12626|3|13|13495.30|0.02|0.07|A|F|1993-08-10|1993-10-17|1993-09-08|DELIVER IN PERSON|FOB|final deposits aff| +2957|472327|34837|4|34|44176.20|0.09|0.01|R|F|1993-10-11|1993-09-26|1993-11-05|TAKE BACK RETURN|REG AIR|ly unusual the| +2957|392270|17285|5|12|16347.12|0.04|0.00|A|F|1993-07-20|1993-09-15|1993-08-18|COLLECT COD|REG AIR|y daring ideas boost | +2958|639491|39492|1|50|71523.00|0.02|0.07|N|O|1998-05-18|1998-03-30|1998-05-20|DELIVER IN PERSON|REG AIR| about the i| +2958|911722|36759|2|28|48543.04|0.09|0.03|N|O|1998-02-19|1998-04-10|1998-03-11|DELIVER IN PERSON|FOB|y above the quickly u| +2958|305169|42688|3|29|34050.35|0.10|0.01|N|O|1998-03-13|1998-03-20|1998-03-29|TAKE BACK RETURN|SHIP|c ideas-- final theodoli| +2958|975234|25235|4|24|31420.56|0.10|0.03|N|O|1998-03-15|1998-04-02|1998-03-19|TAKE BACK RETURN|MAIL|. slyly regular packages are abov| +2958|753479|3480|5|26|39843.44|0.07|0.02|N|O|1998-02-06|1998-04-03|1998-03-07|COLLECT COD|AIR|ckages wake qui| +2958|716929|4472|6|40|77835.60|0.10|0.05|N|O|1998-05-06|1998-03-29|1998-05-19|TAKE BACK RETURN|RAIL|ons cajole blithely along| +2958|421129|33638|7|45|47254.50|0.04|0.04|N|O|1998-01-28|1998-02-23|1998-02-10|NONE|RAIL|pending instructi| +2959|898584|48585|1|42|66466.68|0.00|0.05|N|O|1998-11-02|1998-10-05|1998-11-08|COLLECT COD|TRUCK|latelets sleep slyly slyl| +2959|489123|26651|2|1|1112.10|0.10|0.00|N|O|1998-08-17|1998-10-15|1998-09-12|NONE|AIR|ilently express fo| +2959|677732|27733|3|39|66678.30|0.07|0.06|N|O|1998-08-21|1998-08-31|1998-09-08|NONE|RAIL|yly requests. caref| +2959|641521|16546|4|33|48262.17|0.03|0.08|N|O|1998-08-15|1998-08-30|1998-08-29|NONE|FOB|lyly even, regular | +2959|28893|16394|5|34|61944.26|0.06|0.05|N|O|1998-11-13|1998-09-19|1998-11-29|DELIVER IN PERSON|AIR|heodolites. blithely special deposits h| +2959|591973|41974|6|37|76403.15|0.04|0.08|N|O|1998-08-06|1998-10-10|1998-08-30|DELIVER IN PERSON|AIR|ccounts. furiously| +2984|468918|18919|1|39|73588.71|0.07|0.07|R|F|1994-12-05|1995-02-05|1994-12-19|COLLECT COD|MAIL|ong the furiously fin| +2984|91523|16526|2|45|68153.40|0.04|0.01|R|F|1995-02-28|1995-01-18|1995-03-12|TAKE BACK RETURN|MAIL|ymptotes. iron| +2984|224762|24763|3|32|53976.00|0.08|0.03|R|F|1995-03-05|1995-01-14|1995-03-23|NONE|REG AIR|sts cajole slyly ironic theodolites| +2984|565218|15219|4|28|35929.32|0.02|0.02|R|F|1995-01-20|1995-01-31|1995-01-23|DELIVER IN PERSON|SHIP| carefully across the b| +2984|615913|40938|5|29|53037.52|0.02|0.02|R|F|1995-03-07|1995-01-28|1995-04-01|DELIVER IN PERSON|MAIL|quiet excuses impress| +2985|911709|49264|1|28|48178.48|0.00|0.03|A|F|1993-10-04|1993-10-02|1993-10-19|NONE|AIR|y ironic instructions kindle| +2985|86657|24161|2|44|72320.60|0.04|0.05|A|F|1993-10-15|1993-10-27|1993-11-07|NONE|SHIP|sleep above the carefully | +2985|440189|2698|3|40|45166.40|0.04|0.08|R|F|1993-12-24|1993-11-12|1994-01-03|TAKE BACK RETURN|FOB|s. blithely regula| +2985|252884|2885|4|36|66127.32|0.10|0.03|R|F|1993-11-07|1993-11-11|1993-11-14|NONE|REG AIR| unusual dependencies. | +2985|205246|42759|5|20|23024.60|0.00|0.03|R|F|1993-12-08|1993-10-07|1993-12-28|COLLECT COD|REG AIR|ly. furiously final | +2985|559860|22372|6|23|44156.32|0.02|0.01|A|F|1993-10-10|1993-10-31|1993-10-11|DELIVER IN PERSON|TRUCK|times express ideas. slyly silent foxes al| +2986|3438|3439|1|50|67071.50|0.04|0.07|R|F|1995-03-18|1995-02-18|1995-03-30|COLLECT COD|REG AIR|tealthy Tiresias. thinly regular ideas are| +2986|774838|37354|2|16|30604.80|0.02|0.04|A|F|1995-01-31|1995-02-17|1995-02-13|NONE|REG AIR|s of the requests | +2986|685870|48384|3|22|40828.48|0.01|0.00|R|F|1995-03-26|1995-02-25|1995-04-17|COLLECT COD|REG AIR|equests sleep quickly| +2986|403238|40763|4|34|38801.14|0.07|0.05|R|F|1995-01-26|1995-01-31|1995-02-21|COLLECT COD|SHIP|ake quickly alongside of the fluffily reg| +2986|213969|13970|5|15|28244.25|0.07|0.06|R|F|1995-03-22|1995-02-05|1995-04-20|TAKE BACK RETURN|RAIL|ages. quickly even foxes in| +2986|171353|8863|6|8|11394.80|0.07|0.03|A|F|1995-02-05|1995-03-02|1995-02-11|DELIVER IN PERSON|TRUCK|kly closely re| +2986|916454|41491|7|38|55875.58|0.01|0.02|A|F|1995-03-01|1995-02-28|1995-03-03|NONE|RAIL|arefully again| +2987|838197|714|1|8|9081.20|0.08|0.08|N|O|1995-08-12|1995-09-18|1995-08-28|DELIVER IN PERSON|SHIP|ly brave courts x-ray. fluffily | +2987|575911|934|2|29|57619.81|0.07|0.01|N|O|1995-10-20|1995-09-09|1995-10-26|TAKE BACK RETURN|RAIL|ns haggle furious| +2987|335820|23339|3|46|85367.26|0.08|0.07|N|O|1995-08-09|1995-09-20|1995-09-05|NONE|AIR|ts. blithely special courts integrate abo| +2987|125110|37613|4|36|40863.96|0.01|0.07|N|O|1995-07-04|1995-09-24|1995-07-12|NONE|MAIL|lar, pending pinto beans. | +2987|715184|27699|5|37|44368.55|0.04|0.03|N|O|1995-09-30|1995-08-29|1995-10-01|COLLECT COD|SHIP|ly at the even requests. even, ironic | +2988|878250|3285|1|18|22107.78|0.04|0.03|N|O|1997-12-19|1997-12-11|1997-12-22|TAKE BACK RETURN|FOB|ter the bli| +2988|746060|21089|2|41|45347.23|0.02|0.03|N|O|1997-12-28|1997-12-13|1998-01-19|DELIVER IN PERSON|AIR|s requests. bli| +2988|25015|37516|3|34|31960.34|0.05|0.02|N|O|1997-12-15|1997-12-30|1997-12-25|TAKE BACK RETURN|TRUCK| bold platelets cajole. stealthily regula| +2988|418313|5838|4|28|34476.12|0.03|0.02|N|O|1997-11-25|1998-01-27|1997-12-18|NONE|REG AIR|ng packages. carefully ironic packages aga| +2988|580277|30278|5|6|8143.50|0.03|0.01|N|O|1997-11-29|1997-12-28|1997-12-21|COLLECT COD|SHIP|lly evenly i| +2988|706631|44174|6|28|45852.80|0.04|0.01|N|O|1998-01-17|1998-01-21|1998-02-12|TAKE BACK RETURN|FOB|lve according to the silent, re| +2989|357410|44932|1|22|32282.80|0.04|0.02|N|O|1995-10-21|1995-12-17|1995-10-31|NONE|REG AIR| braids haggle blit| +2989|983826|46346|2|7|13368.46|0.03|0.08|N|O|1995-10-27|1995-10-24|1995-11-02|TAKE BACK RETURN|RAIL|rding to the| +2989|161841|24345|3|28|53279.52|0.00|0.05|N|O|1995-11-05|1995-12-14|1995-11-24|DELIVER IN PERSON|TRUCK|es. foxes serve after the carefully exp| +2990|169694|32198|1|10|17636.90|0.01|0.04|N|O|1997-11-01|1997-11-30|1997-11-26|COLLECT COD|SHIP|silent, eve| +2990|36227|48728|2|9|10468.98|0.04|0.06|N|O|1997-10-11|1997-11-19|1997-10-20|DELIVER IN PERSON|SHIP|fluffily final request| +2991|942069|4588|1|12|13332.24|0.00|0.03|N|O|1996-02-25|1995-12-08|1996-03-17|NONE|REG AIR|ng packages sle| +2991|346625|21638|2|28|46805.08|0.00|0.01|N|O|1996-01-15|1995-12-20|1996-02-07|COLLECT COD|FOB|gular asymptotes. bli| +2991|723400|48429|3|37|52664.69|0.06|0.01|N|O|1996-01-23|1996-01-02|1996-02-19|NONE|TRUCK|unts sleep| +2991|181670|44174|4|1|1751.67|0.08|0.08|N|O|1996-02-27|1996-01-31|1996-03-15|COLLECT COD|RAIL|riously unusual accounts| +2991|316779|4298|5|17|30527.92|0.09|0.01|N|O|1996-02-21|1995-12-27|1996-03-19|DELIVER IN PERSON|REG AIR|sly regular frays x-ray carefully qu| +2991|102359|2360|6|13|17697.55|0.07|0.08|N|O|1995-12-22|1996-02-01|1996-01-05|NONE|REG AIR|ost along the unusual foxes. tithes | +3016|921554|34073|1|50|78775.50|0.02|0.04|N|O|1996-04-06|1996-03-20|1996-04-29|COLLECT COD|FOB|ts wake-- blithely p| +3017|155191|42701|1|47|58570.93|0.01|0.00|A|F|1992-03-16|1992-05-09|1992-03-29|COLLECT COD|AIR|according to the fluffily| +3017|290961|28477|2|13|25375.35|0.06|0.02|R|F|1992-06-25|1992-06-02|1992-06-29|TAKE BACK RETURN|AIR| requests haggle blithely| +3017|170896|8406|3|21|41304.69|0.05|0.07|A|F|1992-07-04|1992-04-19|1992-08-02|DELIVER IN PERSON|RAIL|. quickly pendi| +3017|241416|3921|4|5|6787.00|0.00|0.05|A|F|1992-06-17|1992-05-25|1992-06-27|NONE|TRUCK| bravely quickly bold platelets. ironic | +3017|464726|27236|5|20|33814.00|0.01|0.08|R|F|1992-05-05|1992-04-23|1992-05-15|DELIVER IN PERSON|AIR|use blithely quickly final theo| +3017|638226|739|6|40|46567.60|0.05|0.06|R|F|1992-04-12|1992-05-16|1992-04-15|COLLECT COD|SHIP|ideas must have to dete| +3017|662848|12849|7|42|76054.02|0.04|0.08|A|F|1992-05-14|1992-04-20|1992-06-04|TAKE BACK RETURN|REG AIR|uctions. quickl| +3018|475000|12528|1|1|974.98|0.09|0.08|N|O|1995-07-24|1995-08-23|1995-08-09|DELIVER IN PERSON|AIR|quickly regular dep| +3018|323683|48696|2|15|25600.05|0.05|0.03|N|O|1995-07-03|1995-09-02|1995-07-16|COLLECT COD|REG AIR|ow frays. ironic deposits nag fluffily. bli| +3018|133902|8907|3|5|9679.50|0.06|0.01|N|O|1995-09-26|1995-09-28|1995-10-19|COLLECT COD|TRUCK|lways after the unusual, regular sheaves.| +3018|487735|37736|4|23|39622.33|0.06|0.08|N|O|1995-07-23|1995-08-31|1995-07-25|COLLECT COD|FOB| packages. fi| +3019|481215|43725|1|23|27512.37|0.01|0.06|N|O|1995-10-04|1995-08-12|1995-10-13|COLLECT COD|SHIP|the furiously even requests. quickly| +3019|780097|30098|2|6|7062.36|0.10|0.01|N|O|1995-09-02|1995-07-21|1995-09-09|COLLECT COD|SHIP|e of the furiously r| +3019|82433|32434|3|32|45293.76|0.09|0.01|N|O|1995-08-09|1995-07-30|1995-09-01|DELIVER IN PERSON|SHIP|ts across the carefully ironic accounts sle| +3019|442819|17836|4|2|3523.58|0.07|0.01|N|O|1995-09-07|1995-08-02|1995-09-21|COLLECT COD|SHIP|ular, regular packages are fur| +3019|447013|34538|5|8|7679.92|0.05|0.02|N|O|1995-09-11|1995-08-04|1995-09-25|TAKE BACK RETURN|RAIL| quickly. carefully regular idea| +3019|944240|31795|6|13|16694.60|0.00|0.07|N|O|1995-10-11|1995-07-25|1995-10-20|DELIVER IN PERSON|MAIL|cuses. unusual pinto beans h| +3019|827759|15308|7|3|5060.13|0.02|0.05|N|O|1995-08-17|1995-08-14|1995-09-08|COLLECT COD|REG AIR|s integrate blithely blithely regular multi| +3020|130650|30651|1|42|70587.30|0.08|0.01|R|F|1993-11-26|1993-12-26|1993-12-12|DELIVER IN PERSON|RAIL|ffily slyly bo| +3020|826071|1104|2|44|43869.32|0.02|0.03|A|F|1994-01-31|1993-11-30|1994-02-15|NONE|RAIL|uests. carefully express pinto | +3021|651674|39214|1|37|60148.68|0.02|0.05|N|O|1996-11-20|1996-12-07|1996-11-24|COLLECT COD|SHIP| unusual ideas sleep above the furi| +3022|979091|4130|1|44|51482.20|0.03|0.04|N|O|1997-01-26|1997-01-01|1997-02-15|COLLECT COD|TRUCK|e carefully even packages boost | +3023|849017|36566|1|32|30911.04|0.02|0.02|N|O|1996-03-15|1996-03-10|1996-03-23|TAKE BACK RETURN|TRUCK|ic asymptotes. furiously f| +3023|424974|24975|2|47|89250.65|0.06|0.07|N|O|1996-05-05|1996-03-20|1996-05-27|COLLECT COD|TRUCK| wake carefully blithely special dep| +3023|536114|23645|3|24|27602.16|0.00|0.02|N|O|1996-03-04|1996-03-19|1996-03-24|COLLECT COD|SHIP|l, regular pin| +3023|452205|39733|4|6|6943.08|0.04|0.05|N|O|1996-04-03|1996-04-21|1996-04-23|NONE|SHIP|final, ironic requests. | +3023|208633|33642|5|35|53956.70|0.08|0.00|N|O|1996-03-24|1996-03-28|1996-04-20|TAKE BACK RETURN|MAIL|express excuses cajole quickly. caref| +3023|479369|29370|6|37|49888.58|0.08|0.03|N|O|1996-04-07|1996-03-29|1996-04-23|TAKE BACK RETURN|RAIL|ts. special, final reque| +3023|742180|42181|7|36|43997.40|0.02|0.01|N|O|1996-06-03|1996-04-28|1996-06-13|COLLECT COD|SHIP|urts boost carefull| +3048|812224|24741|1|3|3408.54|0.02|0.00|N|O|1996-10-11|1996-10-07|1996-10-18|NONE|REG AIR|nic, even pinto beans affix a| +3048|33189|33190|2|13|14588.34|0.02|0.00|N|O|1996-11-04|1996-10-17|1996-12-01|DELIVER IN PERSON|AIR|after the furiously unusual reque| +3048|791380|16411|3|16|23541.60|0.04|0.04|N|O|1996-11-13|1996-10-25|1996-12-08|COLLECT COD|FOB|es boost across the final package| +3048|708136|45679|4|13|14873.30|0.07|0.03|N|O|1996-10-07|1996-09-06|1996-11-05|TAKE BACK RETURN|RAIL| fluffily eve| +3049|246095|8600|1|11|11451.88|0.00|0.06|R|F|1994-11-17|1995-02-05|1994-12-09|DELIVER IN PERSON|AIR|ke. fluffi| +3049|116051|3558|2|47|50151.35|0.10|0.03|R|F|1995-01-12|1994-12-14|1995-01-21|DELIVER IN PERSON|TRUCK|ans haggle | +3049|454767|4768|3|44|75756.56|0.02|0.07|R|F|1995-02-26|1994-12-18|1995-03-08|COLLECT COD|SHIP|regular ideas sleep | +3050|722676|35191|1|10|16986.40|0.03|0.05|N|O|1997-06-18|1997-07-09|1997-06-27|NONE|FOB|y express de| +3050|6962|6963|2|24|44855.04|0.10|0.04|N|O|1997-09-16|1997-07-19|1997-09-24|DELIVER IN PERSON|AIR|te. quickly ironic deposit| +3050|2006|2007|3|47|42676.00|0.00|0.02|N|O|1997-09-09|1997-08-05|1997-09-20|DELIVER IN PERSON|FOB|pecial accounts cajole| +3050|707547|20062|4|40|62180.40|0.01|0.07|N|O|1997-09-06|1997-08-10|1997-09-09|NONE|REG AIR| instructio| +3050|730510|43025|5|36|55457.28|0.10|0.07|N|O|1997-08-03|1997-07-04|1997-08-22|DELIVER IN PERSON|SHIP|lets sleep slyly. carefully | +3050|674269|49296|6|28|34810.44|0.10|0.03|N|O|1997-09-28|1997-08-11|1997-10-12|DELIVER IN PERSON|REG AIR| ironic ideas | +3051|870156|7708|1|48|54053.28|0.01|0.04|R|F|1993-07-31|1993-09-14|1993-08-14|DELIVER IN PERSON|TRUCK|ronic dugouts. furiously s| +3051|698781|23808|2|15|26696.25|0.09|0.00|R|F|1993-08-17|1993-07-25|1993-09-06|NONE|MAIL|, silent platelets. furiously e| +3051|398467|35989|3|3|4696.35|0.03|0.00|A|F|1993-09-04|1993-08-08|1993-10-04|NONE|FOB|into beans. unusual excuses above th| +3052|761187|36218|1|47|58663.05|0.10|0.08|A|F|1994-05-17|1994-07-07|1994-06-09|COLLECT COD|REG AIR|rses at th| +3052|268479|18480|2|49|70925.54|0.01|0.07|R|F|1994-05-15|1994-07-16|1994-06-13|DELIVER IN PERSON|RAIL|blithely. caref| +3052|314273|1792|3|44|56639.44|0.04|0.00|R|F|1994-06-12|1994-07-12|1994-06-22|DELIVER IN PERSON|REG AIR|accounts along the expr| +3052|985206|47726|4|7|9038.12|0.06|0.08|R|F|1994-07-23|1994-05-29|1994-08-14|DELIVER IN PERSON|FOB|refully. blithely final de| +3052|356680|19188|5|34|59046.78|0.09|0.07|A|F|1994-08-10|1994-06-10|1994-09-03|NONE|SHIP|nts wake carefully. ironic idea| +3052|705270|42813|6|27|34431.48|0.02|0.01|A|F|1994-07-22|1994-05-30|1994-08-05|NONE|FOB|he furiously ironic instruct| +3052|472157|34667|7|8|9033.04|0.01|0.01|A|F|1994-07-28|1994-06-12|1994-08-01|TAKE BACK RETURN|TRUCK|s are carefully. ironic pinto bea| +3053|534550|22081|1|39|61796.67|0.01|0.00|N|O|1995-06-18|1995-05-21|1995-07-04|COLLECT COD|AIR|uests boost even re| +3053|169614|7124|2|30|50508.30|0.09|0.07|A|F|1995-04-18|1995-05-05|1995-05-09|COLLECT COD|RAIL|iously pending accounts doubt acros| +3053|693112|18139|3|42|46413.36|0.01|0.01|A|F|1995-04-15|1995-06-17|1995-04-16|DELIVER IN PERSON|REG AIR|ter the final, unusual pinto beans sle| +3054|90762|3264|1|28|49077.28|0.06|0.02|N|O|1998-07-04|1998-05-22|1998-07-25|NONE|REG AIR|es cajole furiously| +3054|427302|39811|2|38|46712.64|0.07|0.08|N|O|1998-03-27|1998-05-06|1998-04-26|TAKE BACK RETURN|REG AIR|lites. final theodolites use. accounts s| +3054|657105|7106|3|41|43544.87|0.06|0.01|N|O|1998-07-06|1998-06-20|1998-08-01|NONE|SHIP|l deposits hagg| +3054|950009|12529|4|36|38122.56|0.05|0.04|N|O|1998-06-29|1998-05-18|1998-07-22|TAKE BACK RETURN|MAIL|ecial, final excu| +3054|795026|7542|5|2|2241.98|0.05|0.03|N|O|1998-07-05|1998-05-22|1998-08-01|DELIVER IN PERSON|AIR|hely bold accounts lose. special packages | +3054|991253|16292|6|47|63177.87|0.00|0.02|N|O|1998-05-27|1998-06-12|1998-06-22|NONE|SHIP|carefully final accounts. | +3055|47473|9974|1|34|48295.98|0.10|0.00|N|F|1995-06-13|1995-04-20|1995-07-05|TAKE BACK RETURN|AIR|onic pinto | +3055|863378|13379|2|14|18778.62|0.09|0.02|A|F|1995-05-14|1995-05-11|1995-05-22|DELIVER IN PERSON|AIR| wake. carefully bold theodolite| +3055|790359|15390|3|38|55074.16|0.10|0.08|N|O|1995-06-22|1995-05-01|1995-07-21|COLLECT COD|MAIL|p furiously foxes. sly| +3055|553205|28228|4|28|35229.04|0.07|0.04|R|F|1995-04-10|1995-06-04|1995-04-19|TAKE BACK RETURN|AIR|quickly express platelets integra| +3055|700807|13322|5|15|27116.55|0.07|0.00|R|F|1995-05-25|1995-06-05|1995-05-27|DELIVER IN PERSON|AIR|ickly. slyly regu| +3055|450154|12664|6|41|45269.33|0.01|0.05|N|F|1995-06-10|1995-04-13|1995-07-07|COLLECT COD|FOB| the carefully even courts. eve| +3055|736505|24048|7|3|4624.41|0.02|0.03|A|F|1995-04-30|1995-05-04|1995-05-10|COLLECT COD|REG AIR|ites wake fluffily above the | +3080|427722|15247|1|31|51140.70|0.00|0.04|N|O|1997-09-09|1997-09-13|1997-10-06|DELIVER IN PERSON|MAIL| requests. doggedly even accounts| +3081|200085|37598|1|43|42358.01|0.10|0.02|A|F|1992-04-18|1992-06-15|1992-05-17|NONE|AIR|ently fluffily silent instruct| +3081|826204|38721|2|27|30514.32|0.09|0.06|R|F|1992-05-16|1992-05-04|1992-05-18|NONE|MAIL|iously final deposits hagg| +3081|10057|35058|3|42|40616.10|0.08|0.02|A|F|1992-07-15|1992-04-23|1992-08-14|DELIVER IN PERSON|RAIL|. daringly even gi| +3081|11227|48728|4|25|28455.50|0.07|0.08|R|F|1992-07-16|1992-05-03|1992-08-09|NONE|SHIP|ptotes cajole. slyly unusu| +3081|688731|13758|5|48|82545.60|0.07|0.00|A|F|1992-05-21|1992-06-12|1992-06-17|DELIVER IN PERSON|AIR|ever pending accounts. | +3081|493334|43335|6|6|7963.86|0.02|0.07|A|F|1992-04-22|1992-05-22|1992-04-27|COLLECT COD|RAIL|ests haggle quickly| +3082|768640|43671|1|10|17086.10|0.03|0.08|N|O|1997-10-25|1997-11-12|1997-11-15|TAKE BACK RETURN|FOB|old ideas. carefully ev| +3082|524674|24675|2|33|56055.45|0.02|0.01|N|O|1997-10-08|1997-10-19|1997-10-24|COLLECT COD|FOB|blithely pinto beans. slyly unusua| +3082|191614|4118|3|23|39229.03|0.00|0.05|N|O|1997-10-25|1997-11-20|1997-11-16|TAKE BACK RETURN|RAIL|instructions. final requests | +3083|496445|21464|1|25|36035.50|0.06|0.05|A|F|1995-04-06|1995-03-02|1995-04-20|COLLECT COD|FOB|ously blith| +3083|745832|33375|2|9|16900.20|0.06|0.04|A|F|1995-02-07|1995-02-13|1995-02-08|NONE|TRUCK|boost furiously bli| +3083|184052|46556|3|29|32945.45|0.04|0.06|A|F|1995-03-30|1995-02-24|1995-04-21|COLLECT COD|SHIP|the blithely| +3083|354951|4952|4|15|30089.10|0.07|0.00|R|F|1995-04-09|1995-03-20|1995-04-17|COLLECT COD|SHIP|lly furiously e| +3084|319618|7137|1|17|27839.20|0.03|0.03|N|O|1995-11-07|1995-08-29|1995-11-10|COLLECT COD|SHIP|xcuses wake daringly regular requests. i| +3084|803438|28471|2|21|28169.19|0.07|0.07|N|O|1995-10-13|1995-09-05|1995-10-16|TAKE BACK RETURN|AIR|unts use furiously. fur| +3084|367014|29522|3|29|31349.00|0.05|0.08|N|O|1995-08-07|1995-08-16|1995-08-11|TAKE BACK RETURN|MAIL|the deposits across| +3084|400697|13206|4|28|44734.76|0.01|0.00|N|O|1995-09-17|1995-09-18|1995-10-13|DELIVER IN PERSON|AIR|rts cajole furiously unus| +3084|500158|25179|5|17|19688.21|0.06|0.01|N|O|1995-10-22|1995-08-09|1995-11-13|NONE|RAIL|xes cajole furiously p| +3084|147297|9800|6|15|20164.35|0.04|0.03|N|O|1995-09-22|1995-10-03|1995-09-27|TAKE BACK RETURN|AIR| even foxes. pen| +3085|644852|7365|1|42|75466.44|0.08|0.06|N|O|1995-08-21|1995-07-20|1995-09-16|COLLECT COD|MAIL|regular platelets wake blithe| +3085|12399|49900|2|37|48521.43|0.10|0.00|N|O|1995-07-20|1995-06-23|1995-07-27|COLLECT COD|MAIL|ve the regular, regular| +3085|382740|45248|3|10|18227.30|0.03|0.06|N|F|1995-06-03|1995-07-23|1995-06-19|DELIVER IN PERSON|RAIL|regular deposits | +3085|711133|36162|4|17|19449.70|0.05|0.08|N|O|1995-08-21|1995-06-25|1995-09-02|COLLECT COD|MAIL|xpress tithes. express platelets snoo| +3086|643478|18503|1|21|29850.24|0.01|0.02|N|O|1998-09-21|1998-10-10|1998-10-20|COLLECT COD|MAIL|oss the slyly final theodolites cajole c| +3086|919969|7524|2|39|77567.88|0.02|0.02|N|O|1998-10-26|1998-09-02|1998-11-01|TAKE BACK RETURN|RAIL|even packages along the sly| +3086|905810|18329|3|5|9078.85|0.07|0.03|N|O|1998-09-04|1998-09-12|1998-09-29|NONE|TRUCK|regularly even pinto beans. carefully | +3086|936702|24257|4|18|31295.88|0.06|0.01|N|O|1998-11-12|1998-08-31|1998-12-10|NONE|REG AIR|nusual pinto beans w| +3086|137389|24896|5|43|61334.34|0.01|0.02|N|O|1998-09-19|1998-09-23|1998-09-28|DELIVER IN PERSON|FOB|y. slyly iro| +3086|85170|10173|6|34|39275.78|0.04|0.04|N|O|1998-11-09|1998-09-30|1998-11-24|COLLECT COD|MAIL|ntil the furiously bold requests po| +3087|128187|28188|1|8|9721.44|0.01|0.05|N|O|1996-03-13|1996-05-09|1996-03-16|COLLECT COD|RAIL|. bold theodolites are blithely at | +3087|438430|13447|2|25|34210.25|0.03|0.05|N|O|1996-05-19|1996-05-15|1996-05-21|COLLECT COD|RAIL|h thinly. pint| +3087|685823|35824|3|2|3617.58|0.10|0.00|N|O|1996-03-11|1996-03-31|1996-04-04|TAKE BACK RETURN|SHIP|pending packages could have| +3087|620789|33302|4|45|76938.75|0.05|0.04|N|O|1996-03-19|1996-04-05|1996-04-11|NONE|FOB|cies. slyly ironic accounts na| +3087|592062|29596|5|4|4616.16|0.02|0.07|N|O|1996-05-29|1996-04-03|1996-06-23|NONE|FOB|pending instructions nag. s| +3087|773661|48692|6|16|27754.08|0.00|0.08|N|O|1996-02-27|1996-05-05|1996-03-12|NONE|FOB|c, ironic accounts. carefully regul| +3087|910865|48420|7|30|56274.60|0.08|0.04|N|O|1996-03-24|1996-04-02|1996-04-01|NONE|MAIL|le slyly above the pending d| +3112|900870|38425|1|11|20579.13|0.00|0.01|N|O|1996-02-26|1996-04-24|1996-03-16|DELIVER IN PERSON|AIR|ar asymptotes| +3112|912299|49854|2|15|19668.75|0.03|0.00|N|O|1996-03-18|1996-05-05|1996-03-26|NONE|RAIL| doze slyly. slyly fi| +3112|3270|3271|3|35|41064.45|0.08|0.01|N|O|1996-06-15|1996-04-05|1996-07-08|DELIVER IN PERSON|SHIP|special deposits. car| +3112|946176|8695|4|17|20776.21|0.03|0.01|N|O|1996-06-16|1996-05-23|1996-07-01|NONE|MAIL|ily special theodolites nag carefully ir| +3112|377714|40222|5|37|66292.90|0.03|0.02|N|O|1996-05-25|1996-05-01|1996-06-05|TAKE BACK RETURN|SHIP|al braids. enticingly ironic deposi| +3112|238453|25966|6|47|65397.68|0.09|0.02|N|O|1996-03-05|1996-05-19|1996-03-16|COLLECT COD|AIR|tithes wake| +3112|672738|47765|7|17|29081.90|0.09|0.06|N|O|1996-03-21|1996-05-12|1996-04-14|COLLECT COD|TRUCK|ls above the qu| +3113|707037|7038|1|33|34452.00|0.08|0.01|R|F|1994-09-06|1994-08-20|1994-09-29|NONE|FOB| furiously silent re| +3113|154617|17121|2|32|53491.52|0.07|0.02|A|F|1994-10-05|1994-08-05|1994-10-20|COLLECT COD|MAIL|ng the final requests are| +3113|643693|18718|3|22|36006.52|0.02|0.04|R|F|1994-07-11|1994-08-08|1994-07-20|COLLECT COD|REG AIR|uests cajole regul| +3113|537888|12909|4|18|34665.48|0.06|0.07|A|F|1994-09-18|1994-08-16|1994-09-28|TAKE BACK RETURN|TRUCK|thely ironic foxes sleep. requests w| +3113|273748|48759|5|31|53373.63|0.10|0.04|R|F|1994-09-19|1994-07-22|1994-10-18|DELIVER IN PERSON|SHIP|the carefully final theodolites. s| +3114|994310|31868|1|46|64596.42|0.08|0.08|A|F|1994-07-06|1994-06-15|1994-07-12|TAKE BACK RETURN|AIR|sly bold asymptotes cajole unusual, | +3114|364288|14289|2|12|16227.24|0.08|0.08|R|F|1994-06-29|1994-06-11|1994-07-27|COLLECT COD|AIR|y express dependencies boost furiou| +3115|938226|25781|1|10|12641.80|0.10|0.02|R|F|1992-04-16|1992-05-15|1992-05-10|COLLECT COD|RAIL| ironic deposit| +3115|754308|4309|2|16|21796.32|0.00|0.00|R|F|1992-06-27|1992-04-25|1992-07-14|NONE|SHIP| accounts. regular dinos wake carefully a| +3116|941575|29130|1|39|63044.67|0.01|0.08|N|O|1997-11-09|1997-10-06|1997-11-26|TAKE BACK RETURN|AIR|ggle blithely. ir| +3116|34403|34404|2|49|65532.60|0.00|0.03|N|O|1997-09-21|1997-11-02|1997-10-08|TAKE BACK RETURN|FOB|lyly final theodolites wake ironic,| +3116|200907|38420|3|37|66891.93|0.02|0.03|N|O|1997-09-27|1997-10-22|1997-10-15|NONE|AIR|lar dependencies-- attai| +3116|636678|11703|4|31|50053.84|0.08|0.08|N|O|1997-11-18|1997-11-08|1997-12-11|COLLECT COD|FOB|n deposits. s| +3116|643316|30853|5|30|37778.40|0.00|0.04|N|O|1997-11-09|1997-09-30|1997-11-30|COLLECT COD|TRUCK|al accounts wa| +3117|822610|47643|1|44|67433.08|0.02|0.07|N|O|1996-09-28|1996-12-01|1996-10-18|NONE|TRUCK| deposits. bold pearls after | +3117|595769|45770|2|8|14917.92|0.03|0.01|N|O|1996-11-16|1996-10-26|1996-11-24|NONE|TRUCK|ions thrash bravely after the f| +3118|842614|5131|1|25|38914.25|0.06|0.04|R|F|1995-05-14|1995-05-04|1995-06-09|TAKE BACK RETURN|MAIL|ironic requests integrate fluffi| +3118|811074|23591|2|2|1970.06|0.01|0.01|A|F|1995-03-28|1995-04-19|1995-04-21|NONE|MAIL|otes despite the ironic requests| +3118|719259|6802|3|32|40903.04|0.10|0.08|R|F|1995-05-25|1995-04-15|1995-06-02|COLLECT COD|TRUCK|slyly asymp| +3118|574724|12258|4|19|34175.30|0.09|0.04|R|F|1995-04-09|1995-05-25|1995-05-05|COLLECT COD|REG AIR|uests grow | +3118|382813|32814|5|37|70144.60|0.01|0.06|R|F|1995-03-07|1995-05-29|1995-03-11|COLLECT COD|REG AIR| requests use furi| +3118|927288|2325|6|37|48663.88|0.09|0.00|R|F|1995-03-18|1995-04-21|1995-04-03|DELIVER IN PERSON|REG AIR|nts. even, pending orbits above the ironi| +3118|926066|38585|7|13|14196.26|0.08|0.01|N|F|1995-06-03|1995-04-13|1995-06-25|COLLECT COD|SHIP|nts. slyly careful pinto beans| +3119|388734|26256|1|23|41922.56|0.03|0.05|R|F|1992-05-29|1992-04-06|1992-06-28|DELIVER IN PERSON|REG AIR|blithely after the slyly regular accoun| +3119|448112|35637|2|5|5300.45|0.07|0.07|A|F|1992-05-30|1992-04-24|1992-06-04|NONE|TRUCK|eposits sleep | +3119|410034|22543|3|1|944.01|0.02|0.07|R|F|1992-06-04|1992-05-08|1992-07-01|DELIVER IN PERSON|AIR|accounts. | +3119|425851|25852|4|11|19545.13|0.06|0.04|R|F|1992-05-12|1992-04-18|1992-06-09|NONE|FOB|after the even deposits. bold, furious | +3119|262813|25319|5|23|40843.40|0.00|0.05|A|F|1992-04-18|1992-03-11|1992-05-01|DELIVER IN PERSON|RAIL| regular foxes? blithel| +3119|82785|45287|6|2|3535.56|0.01|0.07|R|F|1992-05-27|1992-04-03|1992-06-07|NONE|REG AIR|s. carefully | +3144|883656|46174|1|49|80340.89|0.01|0.05|N|O|1995-11-05|1996-01-05|1995-11-19|TAKE BACK RETURN|REG AIR|even packages are always pending p| +3144|599172|49173|2|30|38134.50|0.10|0.06|N|O|1996-01-11|1995-12-12|1996-02-04|TAKE BACK RETURN|SHIP|uriously about the pending asymptotes.| +3145|18751|31252|1|46|76808.50|0.05|0.04|R|F|1994-02-16|1994-01-03|1994-03-10|NONE|MAIL|foxes are carefully unusual foxes. final i| +3145|147417|34924|2|10|14644.10|0.04|0.00|R|F|1993-11-10|1994-01-25|1993-12-09|COLLECT COD|TRUCK|e regular | +3145|625672|38185|3|11|17574.04|0.00|0.07|R|F|1994-02-18|1994-01-29|1994-02-28|COLLECT COD|SHIP|iously expres| +3145|661272|11273|4|33|40696.92|0.07|0.00|A|F|1994-01-18|1994-01-14|1994-02-08|COLLECT COD|AIR|ely across the pending, regula| +3146|626242|13779|1|35|40887.35|0.07|0.06|A|F|1993-09-27|1993-10-14|1993-10-12|COLLECT COD|FOB|rnis. carefully bold excuses cajole sl| +3146|238188|25701|2|11|12387.87|0.08|0.06|A|F|1993-10-04|1993-10-01|1993-10-19|COLLECT COD|REG AIR|ncies haggle fluffily f| +3147|450300|12810|1|40|50011.20|0.05|0.01|N|O|1995-10-23|1995-11-02|1995-11-12|COLLECT COD|SHIP| accounts | +3147|187606|37607|2|1|1693.60|0.03|0.08|N|O|1995-11-17|1995-10-26|1995-11-26|COLLECT COD|REG AIR|d the regular, unusual exc| +3148|48107|10608|1|44|46424.40|0.00|0.01|R|F|1994-03-17|1994-02-23|1994-04-02|COLLECT COD|TRUCK|uriously regular requests. expr| +3148|529342|4363|2|9|12341.88|0.06|0.02|R|F|1993-12-29|1994-02-17|1994-01-03|TAKE BACK RETURN|SHIP|even packages eat. carefully fluffy re| +3148|644947|44948|3|10|18919.10|0.06|0.01|R|F|1993-12-28|1994-02-21|1993-12-29|NONE|AIR|ld packages use slyly f| +3148|620820|45845|4|42|73113.18|0.08|0.03|R|F|1993-12-26|1994-02-13|1994-01-25|COLLECT COD|TRUCK|ress deposits will are alongside of | +3148|108195|20698|5|40|48127.60|0.05|0.01|A|F|1994-03-23|1994-03-09|1994-03-31|COLLECT COD|MAIL|always regular packages impr| +3148|427713|40222|6|5|8203.45|0.10|0.00|A|F|1994-01-23|1994-01-22|1994-02-11|COLLECT COD|FOB| quickly regular excuses against the q| +3148|570653|20654|7|29|49985.27|0.04|0.04|A|F|1994-01-21|1994-02-06|1994-02-05|TAKE BACK RETURN|RAIL|grate carefull| +3149|959770|47328|1|12|21956.76|0.05|0.07|A|F|1992-10-27|1992-10-10|1992-11-02|COLLECT COD|SHIP| requests cajole furious| +3149|846072|21105|2|22|22396.66|0.01|0.06|A|F|1992-11-07|1992-11-19|1992-12-02|COLLECT COD|AIR|cajole blithely. furiousl| +3149|923690|36209|3|43|73686.95|0.05|0.06|R|F|1992-12-01|1992-10-24|1992-12-17|DELIVER IN PERSON|AIR|lly express theodolites bo| +3149|444526|7035|4|30|44115.00|0.00|0.08|R|F|1992-09-23|1992-10-25|1992-09-25|COLLECT COD|REG AIR|luffily ir| +3149|148062|23067|5|31|34411.86|0.07|0.08|R|F|1992-10-02|1992-10-24|1992-10-18|NONE|SHIP| carefully special pac| +3150|902043|27080|1|36|37620.00|0.04|0.07|N|O|1998-01-22|1997-12-03|1998-02-17|DELIVER IN PERSON|REG AIR|lithely against the theodolit| +3150|625522|547|2|46|66584.54|0.01|0.08|N|O|1998-01-20|1997-12-15|1998-01-23|COLLECT COD|MAIL|mptotes cajole! qu| +3150|146338|46339|3|20|27686.60|0.08|0.03|N|O|1997-12-23|1997-11-12|1998-01-16|TAKE BACK RETURN|TRUCK|unusual requests. s| +3150|499433|36961|4|49|70188.09|0.01|0.06|N|O|1997-11-13|1997-12-01|1997-12-07|COLLECT COD|TRUCK|thely slyly iro| +3151|674295|36809|1|35|44424.10|0.09|0.08|N|O|1996-10-27|1996-08-26|1996-11-14|TAKE BACK RETURN|SHIP|hely. ironic requests among the b| +3151|859624|9625|2|28|44340.24|0.05|0.07|N|O|1996-10-13|1996-09-17|1996-10-31|TAKE BACK RETURN|RAIL|was. final theodolites sleep. furious, sp| +3151|695939|45940|3|6|11609.40|0.04|0.01|N|O|1996-07-16|1996-08-13|1996-07-27|NONE|FOB|carefully thin foxes affix quickly alongsid| +3151|632734|45247|4|13|21667.10|0.04|0.08|N|O|1996-09-05|1996-08-12|1996-09-29|NONE|REG AIR| accounts alongside of the furiously u| +3176|952321|27360|1|33|45318.24|0.00|0.02|N|O|1998-06-10|1998-08-14|1998-06-26|COLLECT COD|TRUCK|usy package| +3176|653333|40873|2|5|6431.50|0.04|0.05|N|O|1998-05-18|1998-06-19|1998-05-24|NONE|FOB|usly regular| +3176|554735|42269|3|20|35794.20|0.01|0.05|N|O|1998-05-26|1998-06-27|1998-06-25|DELIVER IN PERSON|SHIP|l requests. packages boos| +3176|430442|5459|4|7|9606.94|0.02|0.08|N|O|1998-07-05|1998-06-28|1998-08-01|COLLECT COD|REG AIR|es. furiously slow packages los| +3177|377896|15418|1|28|55268.64|0.06|0.06|R|F|1994-07-21|1994-08-25|1994-07-30|NONE|FOB| pinto beans dete| +3177|284429|21945|2|16|22614.56|0.07|0.02|A|F|1994-08-12|1994-08-20|1994-08-24|TAKE BACK RETURN|AIR|y. pending packages h| +3177|390657|3165|3|15|26214.60|0.02|0.04|A|F|1994-08-15|1994-08-03|1994-08-26|DELIVER IN PERSON|RAIL|furiously bold the| +3177|764803|27319|4|9|16809.93|0.02|0.03|R|F|1994-09-11|1994-08-07|1994-10-09|COLLECT COD|REG AIR|ly regular packages. even accounts| +3178|756111|6112|1|21|24508.68|0.03|0.03|N|O|1995-06-29|1995-08-15|1995-07-11|TAKE BACK RETURN|MAIL| carefully spe| +3178|950426|37984|2|46|67913.48|0.03|0.08|N|O|1995-07-25|1995-08-15|1995-08-12|DELIVER IN PERSON|FOB|lar deposi| +3178|795197|20228|3|31|40056.96|0.05|0.05|N|O|1995-07-04|1995-08-04|1995-07-10|COLLECT COD|REG AIR|usual sauternes. qu| +3178|861253|36288|4|48|58282.08|0.01|0.08|N|O|1995-06-29|1995-07-26|1995-07-20|NONE|TRUCK|eposits nag accordin| +3178|71835|34337|5|35|63239.05|0.08|0.03|N|O|1995-07-10|1995-07-01|1995-07-26|DELIVER IN PERSON|FOB|sts. blithely regular in| +3179|331223|43730|1|26|32609.46|0.07|0.05|A|F|1994-12-25|1994-11-26|1995-01-17|TAKE BACK RETURN|RAIL|posits after the ironic packages af| +3179|857464|45016|2|25|35535.50|0.00|0.00|A|F|1994-11-11|1994-10-19|1994-11-16|NONE|FOB|carefully according to th| +3179|384974|9989|3|5|10294.80|0.02|0.04|R|F|1994-09-25|1994-11-27|1994-10-23|DELIVER IN PERSON|RAIL|l packages integrate furiously even depos| +3179|251612|14118|4|1|1563.60|0.03|0.03|R|F|1994-09-16|1994-10-05|1994-09-19|TAKE BACK RETURN|SHIP|ely pending packa| +3180|137087|12092|1|24|26977.92|0.08|0.04|N|O|1998-09-09|1998-08-12|1998-10-01|NONE|MAIL|iously pending dependencies? carefully ir| +3180|4416|41917|2|11|14524.51|0.09|0.07|N|O|1998-10-02|1998-08-11|1998-10-07|COLLECT COD|REG AIR|ts-- requests wake slyl| +3180|216889|29394|3|2|3611.74|0.06|0.07|N|O|1998-09-18|1998-09-02|1998-09-19|NONE|FOB|. quickly final instructions cajole f| +3180|242704|30217|4|6|9880.14|0.09|0.04|N|O|1998-06-20|1998-08-01|1998-06-26|COLLECT COD|RAIL|ependencies are above the | +3180|111187|36192|5|24|28756.32|0.09|0.01|N|O|1998-08-12|1998-08-20|1998-08-22|TAKE BACK RETURN|TRUCK|fily careful| +3180|719571|44600|6|35|55668.90|0.04|0.01|N|O|1998-07-20|1998-08-15|1998-08-08|DELIVER IN PERSON|AIR|carefully | +3180|820372|32889|7|46|59447.18|0.09|0.04|N|O|1998-08-29|1998-08-06|1998-09-18|NONE|SHIP|y regular patterns ha| +3181|979929|29930|1|27|54239.76|0.10|0.03|N|O|1998-07-07|1998-08-16|1998-07-18|DELIVER IN PERSON|AIR|ven packages. ironic| +3181|661305|48845|2|26|32923.02|0.08|0.03|N|O|1998-07-01|1998-08-02|1998-07-05|DELIVER IN PERSON|FOB|ily ironic tithes dazz| +3181|552938|15450|3|33|65700.03|0.03|0.04|N|O|1998-10-13|1998-09-21|1998-10-14|NONE|MAIL|final courts within the pending instruction| +3181|227911|2920|4|28|51489.20|0.05|0.06|N|O|1998-09-19|1998-09-23|1998-10-16|NONE|AIR|pecial asymptotes. carefully final pinto b| +3182|716714|4257|1|29|50189.72|0.07|0.03|R|F|1994-07-04|1994-05-13|1994-07-06|COLLECT COD|RAIL|y pending requests was quickly pendi| +3182|800368|369|2|20|25366.40|0.03|0.06|R|F|1994-07-11|1994-05-11|1994-07-20|NONE|FOB|lyly final| +3182|782428|19974|3|31|46822.09|0.08|0.08|A|F|1994-03-27|1994-05-29|1994-04-14|DELIVER IN PERSON|AIR| beans. ev| +3182|265284|15285|4|47|58715.69|0.09|0.08|R|F|1994-03-21|1994-04-20|1994-04-19|NONE|TRUCK|al pinto beans abo| +3182|615300|40325|5|28|34027.56|0.00|0.02|R|F|1994-04-05|1994-06-16|1994-05-02|NONE|TRUCK|uses. express theodo| +3183|58906|8907|1|1|1864.90|0.09|0.00|A|F|1993-11-13|1993-11-21|1993-12-03|DELIVER IN PERSON|AIR|e according to the i| +3208|345617|8124|1|6|9975.60|0.07|0.08|N|O|1996-04-29|1996-04-26|1996-05-25|TAKE BACK RETURN|SHIP|quickly pendi| +3208|783396|20942|2|12|17752.32|0.02|0.06|N|O|1996-02-13|1996-04-23|1996-03-04|TAKE BACK RETURN|FOB| according to the pending hockey pl| +3208|533065|20596|3|47|51607.88|0.08|0.08|N|O|1996-02-11|1996-05-06|1996-02-27|COLLECT COD|SHIP|lthy courts. blithely expres| +3208|220205|7718|4|10|11251.90|0.08|0.04|N|O|1996-02-27|1996-03-29|1996-03-18|NONE|MAIL|hes. final, final accounts play. bli| +3208|982113|44633|5|14|16730.98|0.09|0.03|N|O|1996-04-09|1996-03-12|1996-05-01|COLLECT COD|REG AIR|er the fluffily even deposits. quick| +3208|369881|44896|6|1|1950.87|0.10|0.06|N|O|1996-06-07|1996-04-13|1996-07-01|NONE|SHIP|t the final accounts haggle bl| +3208|579849|29850|7|15|28932.30|0.06|0.02|N|O|1996-02-17|1996-05-07|1996-03-16|COLLECT COD|TRUCK|against the courts| +3209|518581|43602|1|2|3199.12|0.04|0.05|A|F|1992-10-30|1992-12-22|1992-10-31|DELIVER IN PERSON|TRUCK|maintain along the f| +3209|777546|2577|2|42|68187.42|0.04|0.02|A|F|1993-01-01|1992-12-18|1993-01-06|TAKE BACK RETURN|RAIL|riously ev| +3209|205293|5294|3|25|29957.00|0.06|0.02|A|F|1992-12-05|1993-01-13|1992-12-06|COLLECT COD|SHIP|usual account| +3209|356663|19171|4|3|5158.95|0.01|0.02|R|F|1992-12-03|1992-12-18|1993-01-01|TAKE BACK RETURN|REG AIR|s. even attainments serve. pinto beans a| +3209|420312|20313|5|22|27110.38|0.08|0.08|A|F|1993-02-11|1992-12-14|1993-03-11|COLLECT COD|RAIL| idle request| +3210|718311|18312|1|21|27914.88|0.00|0.05|A|F|1994-02-28|1994-04-02|1994-03-23|NONE|FOB|inst the thinly unusual instructions h| +3210|637998|511|2|10|19359.60|0.05|0.08|A|F|1994-01-30|1994-03-31|1994-02-16|DELIVER IN PERSON|SHIP|nal accounts n| +3210|826346|13895|3|9|11450.70|0.06|0.08|R|F|1994-04-07|1994-04-22|1994-04-13|DELIVER IN PERSON|RAIL|ffily regular accounts. regul| +3210|388177|38178|4|34|43015.44|0.08|0.03|R|F|1994-04-05|1994-04-19|1994-04-25|DELIVER IN PERSON|AIR|s thrash car| +3210|83532|21036|5|38|57590.14|0.07|0.07|A|F|1994-02-23|1994-03-19|1994-02-27|COLLECT COD|MAIL| pending p| +3211|116661|16662|1|8|13421.28|0.07|0.08|A|F|1992-11-23|1992-11-03|1992-11-27|NONE|RAIL|ggle. slow waters| +3211|706998|6999|2|43|86213.28|0.10|0.04|A|F|1992-09-16|1992-10-22|1992-09-21|COLLECT COD|REG AIR|ular courts. courts cajole silent, ironi| +3211|501757|1758|3|32|56279.36|0.02|0.01|R|F|1992-09-21|1992-09-26|1992-10-17|DELIVER IN PERSON|MAIL|ly ironic, express platelets. even d| +3211|24482|36983|4|39|54852.72|0.08|0.07|R|F|1992-11-13|1992-09-19|1992-12-09|DELIVER IN PERSON|MAIL| blithely even instructions| +3212|572418|9952|1|26|38750.14|0.10|0.07|N|O|1997-09-27|1997-10-04|1997-10-10|TAKE BACK RETURN|AIR|detect final, final foxes. express accounts| +3212|626515|26516|2|38|54776.24|0.01|0.03|N|O|1997-12-15|1997-11-09|1998-01-06|TAKE BACK RETURN|FOB|otes haggle blithely fi| +3212|827337|39854|3|30|37928.70|0.02|0.01|N|O|1997-11-23|1997-10-31|1997-11-30|COLLECT COD|REG AIR|unts above the furiously regular pearls wak| +3212|36477|23978|4|14|19788.58|0.07|0.01|N|O|1997-09-24|1997-10-26|1997-09-28|NONE|RAIL|ncies along| +3212|55697|43201|5|28|46275.32|0.06|0.00|N|O|1997-10-25|1997-11-09|1997-10-27|NONE|MAIL|cial accounts mold. quickly silent orbi| +3212|96938|46939|6|11|21284.23|0.08|0.06|N|O|1997-11-19|1997-10-11|1997-11-22|NONE|REG AIR|y. express, bold| +3212|234949|9958|7|20|37678.60|0.04|0.07|N|O|1997-11-03|1997-11-20|1997-11-30|DELIVER IN PERSON|AIR|ic requests use slyly carefu| +3213|780687|30688|1|45|79544.25|0.08|0.03|A|F|1993-04-08|1993-03-24|1993-05-08|TAKE BACK RETURN|RAIL|odolites sleep blithely above the bol| +3213|1910|14411|2|26|47109.66|0.06|0.06|A|F|1993-05-28|1993-05-06|1993-06-26|COLLECT COD|RAIL|uickly across the slyly f| +3213|91636|41637|3|16|26042.08|0.10|0.08|R|F|1993-06-21|1993-05-19|1993-07-13|COLLECT COD|FOB|inder final| +3214|195580|20587|1|24|40213.92|0.09|0.00|N|O|1998-10-28|1998-09-20|1998-11-03|DELIVER IN PERSON|SHIP|slyly ironic deposits according t| +3214|96557|9059|2|38|59034.90|0.04|0.02|N|O|1998-10-07|1998-08-13|1998-10-12|NONE|FOB|e carefully furiously| +3215|853467|28502|1|3|4261.26|0.05|0.04|R|F|1992-11-21|1992-11-09|1992-12-09|DELIVER IN PERSON|REG AIR| the furiously fin| +3215|210613|10614|2|18|27424.80|0.00|0.04|A|F|1992-12-08|1992-10-29|1992-12-09|NONE|FOB|efully special ideas are; fu| +3215|761419|48965|3|38|56254.44|0.06|0.06|R|F|1992-12-27|1992-12-13|1993-01-08|NONE|MAIL|s affix carefully amo| +3215|157762|32769|4|9|16377.84|0.01|0.01|A|F|1993-01-21|1992-11-08|1993-02-08|NONE|SHIP|. final packages u| +3215|491940|4450|5|47|90800.24|0.01|0.04|A|F|1992-12-31|1992-11-11|1993-01-02|NONE|REG AIR|carefully final deposits. packa| +3215|27650|15151|6|2|3155.30|0.08|0.08|A|F|1993-01-08|1992-11-26|1993-01-25|NONE|TRUCK|ccording to the| +3240|252833|40349|1|33|58932.06|0.00|0.07|R|F|1994-01-15|1994-01-03|1994-01-24|NONE|AIR|gular theodolites cajole furious| +3240|363966|38981|2|29|58868.55|0.04|0.03|R|F|1993-12-19|1994-01-10|1993-12-23|NONE|REG AIR|lyly even theod| +3240|168399|43406|3|20|29347.80|0.09|0.05|R|F|1993-11-22|1993-11-29|1993-11-26|NONE|SHIP|d requests promise gift| +3240|275203|25204|4|17|20029.23|0.09|0.05|A|F|1993-12-05|1993-12-16|1993-12-19|TAKE BACK RETURN|FOB|ckly even foxes. furiously ironic| +3240|324807|12326|5|47|86094.13|0.01|0.06|R|F|1994-01-21|1993-12-18|1994-02-01|TAKE BACK RETURN|FOB|quests use above the f| +3240|26186|26187|6|10|11121.80|0.07|0.00|R|F|1994-02-24|1993-12-12|1994-03-06|DELIVER IN PERSON|SHIP|counts boost doggedly. silent re| +3241|436307|36308|1|40|49731.20|0.01|0.05|R|F|1994-01-17|1994-02-12|1994-01-19|NONE|MAIL|e final accounts promise slyly after th| +3242|865233|40268|1|1|1198.19|0.10|0.07|A|F|1995-03-24|1995-06-17|1995-04-17|COLLECT COD|TRUCK|e slyly busy theodolites use slyly fina| +3242|963649|1207|2|33|56515.80|0.05|0.04|A|F|1995-03-30|1995-05-06|1995-04-22|NONE|AIR|ns. deposits wake re| +3242|32535|32536|3|14|20545.42|0.05|0.07|N|O|1995-07-18|1995-05-23|1995-07-24|NONE|MAIL|lar orbits. regular| +3242|815695|28212|4|22|35434.30|0.05|0.04|A|F|1995-05-05|1995-05-17|1995-05-26|DELIVER IN PERSON|FOB| blithely ironic foxes. ironic, iron| +3242|377120|27121|5|22|26336.42|0.02|0.06|N|F|1995-06-15|1995-05-16|1995-07-06|TAKE BACK RETURN|AIR|nusual packages are after the regular| +3242|247514|35027|6|30|43845.00|0.10|0.03|N|O|1995-06-22|1995-05-14|1995-07-07|TAKE BACK RETURN|MAIL|inal instructions are acros| +3243|598461|10973|1|49|76412.56|0.02|0.08|N|O|1996-07-19|1996-06-16|1996-07-25|DELIVER IN PERSON|RAIL|ounts poach quickly along the speci| +3243|321107|8626|2|22|24817.98|0.07|0.05|N|O|1996-06-28|1996-05-29|1996-07-25|NONE|RAIL| even asymptotes. ironic, bold ideas haggle| +3243|840361|27910|3|17|22122.44|0.00|0.00|N|O|1996-07-13|1996-05-23|1996-07-15|COLLECT COD|MAIL|e carefully unusual sentiments. regu| +3243|933560|8597|4|21|33463.92|0.06|0.05|N|O|1996-07-12|1996-06-20|1996-07-16|COLLECT COD|REG AIR|efully regular packages serve sl| +3243|339849|39850|5|33|62331.39|0.05|0.03|N|O|1996-05-01|1996-05-26|1996-05-08|NONE|FOB|sts believe. sl| +3244|345368|32887|1|44|62187.40|0.07|0.01|N|O|1997-12-12|1997-12-03|1997-12-28|NONE|SHIP|ecial dependencies wake furiously. final| +3244|583219|45731|2|45|58598.55|0.00|0.04|N|O|1998-01-23|1997-11-29|1998-01-31|TAKE BACK RETURN|FOB|fully regular pinto beans. furiou| +3244|148303|23308|3|9|12161.70|0.06|0.07|N|O|1997-12-27|1997-12-06|1998-01-14|TAKE BACK RETURN|TRUCK|riously enticing| +3244|511943|36964|4|32|62557.44|0.08|0.01|N|O|1997-11-17|1997-11-21|1997-11-24|TAKE BACK RETURN|TRUCK|ake blithely around the ironic dolph| +3245|84397|46899|1|24|33153.36|0.03|0.07|N|O|1998-05-17|1998-05-11|1998-05-30|TAKE BACK RETURN|REG AIR|ts near th| +3245|449944|49945|2|3|5681.76|0.05|0.06|N|O|1998-05-13|1998-05-17|1998-06-01|TAKE BACK RETURN|TRUCK|ily express gro| +3245|203173|15678|3|47|50579.52|0.06|0.08|N|O|1998-05-22|1998-05-11|1998-05-25|COLLECT COD|FOB|pinto beans cajole a| +3245|720198|45227|4|25|30454.00|0.04|0.07|N|O|1998-06-04|1998-05-19|1998-06-23|COLLECT COD|REG AIR|olites. requests across th| +3245|360386|22894|5|9|13017.33|0.00|0.08|N|O|1998-03-30|1998-05-22|1998-04-16|DELIVER IN PERSON|MAIL|lly even dep| +3245|996893|46894|6|36|71634.60|0.08|0.03|N|O|1998-04-20|1998-04-13|1998-05-18|NONE|RAIL|equests wake carefu| +3245|772471|10017|7|25|38586.00|0.10|0.02|N|O|1998-04-01|1998-06-11|1998-04-24|TAKE BACK RETURN|RAIL|y was furiously. requests doze carefully | +3246|903754|28791|1|30|52731.30|0.01|0.01|N|O|1996-11-09|1996-09-21|1996-12-08|NONE|AIR| slyly furious dependencies haggle carefu| +3246|382319|44827|2|44|61657.20|0.05|0.02|N|O|1996-11-10|1996-10-05|1996-12-10|TAKE BACK RETURN|AIR| sentiments sleep| +3246|623589|48614|3|49|74114.95|0.02|0.06|N|O|1996-09-23|1996-09-24|1996-10-02|COLLECT COD|SHIP|carefully about the ex| +3246|648224|48225|4|16|18755.04|0.05|0.00|N|O|1996-11-14|1996-10-28|1996-12-07|COLLECT COD|FOB|long the quickly express pi| +3246|697939|22966|5|36|69728.40|0.01|0.07|N|O|1996-10-26|1996-09-22|1996-11-01|NONE|REG AIR|s wake aro| +3246|244643|7148|6|41|65092.83|0.02|0.08|N|O|1996-10-01|1996-09-26|1996-10-07|DELIVER IN PERSON|RAIL|ully. express pa| +3246|698812|48813|7|29|52512.62|0.04|0.04|N|O|1996-11-28|1996-11-05|1996-12-12|COLLECT COD|AIR|ng the even dinos. fluffil| +3247|918748|18749|1|12|21200.40|0.03|0.07|N|O|1996-05-21|1996-05-15|1996-05-31|NONE|AIR|ts wake quickly after the furiously spe| +3247|395455|20470|2|8|12403.52|0.08|0.07|N|O|1996-04-11|1996-06-20|1996-04-24|NONE|AIR|e even deposits haggl| +3272|882921|7956|1|29|55212.52|0.01|0.08|R|F|1994-08-04|1994-08-08|1994-08-09|DELIVER IN PERSON|REG AIR|gular, specia| +3273|715687|15688|1|25|42566.25|0.09|0.05|A|F|1995-01-22|1995-03-21|1995-02-10|COLLECT COD|REG AIR| ironic requests.| +3273|539773|14794|2|37|67071.75|0.05|0.08|R|F|1995-02-21|1995-03-02|1995-03-17|NONE|RAIL|believe slyly-- slyly even accou| +3273|951408|26447|3|20|29187.20|0.05|0.00|A|F|1995-04-20|1995-02-28|1995-04-21|NONE|AIR|lly final accounts. regular| +3273|307897|45416|4|43|81909.84|0.09|0.03|R|F|1995-03-23|1995-04-07|1995-04-09|TAKE BACK RETURN|REG AIR|dolites. fluffily unusual accounts nag b| +3273|809701|47250|5|9|14495.94|0.03|0.00|R|F|1995-05-09|1995-04-02|1995-05-12|COLLECT COD|MAIL|s sleep around the regular, ironic account| +3273|629028|4053|6|46|44021.54|0.03|0.05|R|F|1995-04-11|1995-03-26|1995-04-22|COLLECT COD|SHIP|ld requests haggle fluff| +3274|933477|33478|1|12|18125.16|0.00|0.01|R|F|1994-02-06|1994-01-05|1994-02-16|DELIVER IN PERSON|FOB|ids after the slyly even i| +3274|939273|14310|2|41|53801.43|0.10|0.07|R|F|1994-03-04|1994-01-21|1994-03-12|DELIVER IN PERSON|MAIL| furiously final packages against th| +3275|595604|33138|1|24|40789.92|0.05|0.05|R|F|1992-05-10|1992-05-24|1992-05-28|TAKE BACK RETURN|AIR|s sleep evenly around the quietly pending | +3275|301542|1543|2|44|67915.32|0.08|0.00|R|F|1992-04-02|1992-04-12|1992-04-14|DELIVER IN PERSON|RAIL|uriously ironic pack| +3275|8976|21477|3|15|28274.55|0.02|0.03|R|F|1992-03-26|1992-04-22|1992-04-03|NONE|AIR|nstructions. blith| +3275|851437|1438|4|42|58312.38|0.06|0.03|A|F|1992-04-13|1992-04-03|1992-05-05|COLLECT COD|FOB|ular courts d| +3275|86618|11621|5|35|56161.35|0.03|0.04|R|F|1992-05-29|1992-05-01|1992-06-15|TAKE BACK RETURN|TRUCK|s. even theodolites use permanen| +3275|773664|48695|6|46|79930.98|0.02|0.04|R|F|1992-04-23|1992-03-30|1992-04-25|NONE|RAIL|ully final packages wake. pending packag| +3276|833587|21136|1|3|4561.62|0.07|0.03|A|F|1993-12-27|1994-02-15|1993-12-30|COLLECT COD|RAIL|ly ironic requests affix acc| +3276|80025|42527|2|8|8040.16|0.02|0.03|R|F|1993-12-22|1994-03-08|1994-01-20|TAKE BACK RETURN|SHIP|pinto beans. inst| +3276|969095|6653|3|5|5820.25|0.04|0.05|A|F|1994-01-04|1994-02-19|1994-01-27|COLLECT COD|TRUCK|e furiously silent courts s| +3276|563294|13295|4|4|5429.08|0.10|0.02|R|F|1994-03-08|1994-01-24|1994-04-03|DELIVER IN PERSON|AIR|, final requests sleep never| +3276|267142|4658|5|23|25509.99|0.00|0.03|A|F|1994-01-26|1994-03-02|1994-02-18|NONE|REG AIR|nt accounts use at the | +3277|28179|28180|1|17|18821.89|0.05|0.07|N|O|1996-03-10|1996-01-15|1996-03-28|COLLECT COD|TRUCK|ularly around the unusual deposits. th| +3277|600425|426|2|18|23857.02|0.00|0.04|N|O|1996-04-10|1996-01-17|1996-05-05|TAKE BACK RETURN|FOB|gle carefully blithely bold packages| +3277|340543|15556|3|26|41171.78|0.09|0.01|N|O|1996-02-24|1996-01-12|1996-03-06|COLLECT COD|FOB|g the fina| +3277|505461|5462|4|40|58657.60|0.02|0.03|N|O|1996-04-04|1996-02-15|1996-04-13|DELIVER IN PERSON|MAIL|eep special pint| +3277|276691|39197|5|2|3335.36|0.01|0.07|N|O|1996-01-31|1996-02-08|1996-02-01|TAKE BACK RETURN|SHIP|cross the quickly bold account| +3277|329133|4146|6|6|6972.72|0.04|0.01|N|O|1995-12-24|1996-02-05|1996-01-19|DELIVER IN PERSON|MAIL| across the furiously regular requests.| +3277|737845|37846|7|37|69663.97|0.02|0.04|N|O|1996-02-07|1996-02-16|1996-02-29|COLLECT COD|TRUCK|grate furiously. dependencies| +3278|949039|11558|1|3|3263.97|0.02|0.01|N|O|1997-03-15|1997-02-18|1997-03-20|TAKE BACK RETURN|MAIL|ully after the quickly even inst| +3278|487087|12106|2|28|30073.68|0.02|0.01|N|O|1997-03-28|1997-01-21|1997-04-17|NONE|REG AIR|l, unusual pac| +3278|465957|28467|3|43|82685.99|0.06|0.06|N|O|1997-03-28|1997-03-07|1997-04-09|NONE|TRUCK|tealthily regular excuses haggle fluffi| +3278|325934|25935|4|50|97996.00|0.01|0.08|N|O|1997-03-26|1997-01-19|1997-04-01|DELIVER IN PERSON|RAIL| sleep blithely. blithely final depths | +3279|886640|49158|1|7|11386.20|0.09|0.07|R|F|1993-03-06|1993-03-22|1993-03-11|TAKE BACK RETURN|AIR|luffily final platelets. carefu| +3279|749568|24597|2|16|25880.48|0.10|0.00|R|F|1993-01-27|1993-02-08|1993-02-25|NONE|RAIL|yly ironic ideas. fluffily bold pinto b| +3304|38877|26378|1|16|29053.92|0.09|0.01|R|F|1994-09-04|1994-07-14|1994-09-09|DELIVER IN PERSON|SHIP| according to the blithely regular pint| +3304|395019|45020|2|22|24508.00|0.10|0.04|R|F|1994-07-25|1994-07-27|1994-08-05|NONE|MAIL|always. final inst| +3304|82222|44724|3|4|4816.88|0.06|0.00|A|F|1994-06-22|1994-07-24|1994-07-16|TAKE BACK RETURN|RAIL|detect blithely. ironic, pendin| +3304|901848|26885|4|22|40695.60|0.09|0.00|A|F|1994-08-07|1994-07-25|1994-08-30|NONE|REG AIR| unusual packages. fluffy, ir| +3305|388988|1496|1|23|47770.31|0.10|0.00|N|O|1995-11-20|1995-10-23|1995-12-01|NONE|TRUCK| blithely fi| +3305|712849|37878|2|29|53992.49|0.00|0.02|N|O|1995-11-22|1995-10-27|1995-12-03|NONE|TRUCK|inos sleep. quickly special f| +3306|388879|1387|1|4|7871.44|0.05|0.01|N|O|1997-08-05|1997-09-14|1997-08-31|NONE|RAIL|ly according to the accounts. care| +3306|881823|19375|2|46|83019.88|0.00|0.01|N|O|1997-10-31|1997-09-08|1997-11-02|NONE|RAIL|s are furiously. slyly stealthy grouches s| +3306|795248|20279|3|32|42982.72|0.01|0.00|N|O|1997-10-19|1997-09-06|1997-11-08|TAKE BACK RETURN|TRUCK|odolites above the carefully unusua| +3306|723656|23657|4|26|43670.12|0.02|0.05|N|O|1997-08-19|1997-09-06|1997-09-04|NONE|RAIL| furiously pending deposits alongside of| +3306|483786|21314|5|3|5309.28|0.09|0.00|N|O|1997-11-07|1997-08-27|1997-11-15|DELIVER IN PERSON|AIR|bits boost | +3306|981233|31234|6|15|19712.85|0.02|0.07|N|O|1997-09-06|1997-08-22|1997-09-28|NONE|SHIP|iously with the regular, ironic pinto beans| +3307|18648|6149|1|34|53265.76|0.05|0.07|N|O|1995-07-16|1995-07-13|1995-08-05|NONE|RAIL|es wake final| +3308|665957|28471|1|11|21152.12|0.04|0.06|A|F|1994-03-24|1994-03-08|1994-03-31|NONE|SHIP|ickly silen| +3309|317317|4836|1|37|49369.10|0.05|0.07|A|F|1994-04-07|1994-05-07|1994-04-18|DELIVER IN PERSON|REG AIR| the pending, ir| +3309|141142|28649|2|21|24845.94|0.08|0.02|A|F|1994-05-19|1994-05-27|1994-06-12|DELIVER IN PERSON|REG AIR|nusual foxes sleep | +3309|167436|17437|3|36|54123.48|0.03|0.06|R|F|1994-06-09|1994-05-25|1994-06-21|TAKE BACK RETURN|FOB|ove the furiously unusual acco| +3309|86632|24136|4|26|42084.38|0.06|0.01|R|F|1994-04-14|1994-05-20|1994-04-23|DELIVER IN PERSON|FOB|lets. furiously final foxes use fluffily re| +3309|13856|1357|5|48|84952.80|0.02|0.05|R|F|1994-06-21|1994-05-06|1994-07-20|NONE|REG AIR|warthogs wake furiously among t| +3309|863412|964|6|39|53639.43|0.05|0.00|A|F|1994-06-30|1994-05-12|1994-07-02|COLLECT COD|MAIL|. regular, regular packages integrate fluff| +3309|360925|23433|7|2|3971.82|0.04|0.02|A|F|1994-07-03|1994-06-29|1994-07-21|COLLECT COD|REG AIR| sleep against the furiously blithe depend| +3310|52574|40078|1|19|29004.83|0.07|0.04|N|O|1996-05-03|1996-06-01|1996-05-13|TAKE BACK RETURN|SHIP|ily about the ironic courts. packages| +3310|595611|33145|2|31|52904.29|0.03|0.00|N|O|1996-06-01|1996-06-27|1996-06-10|NONE|FOB| pending requests c| +3310|420722|20723|3|29|47638.30|0.05|0.00|N|O|1996-06-19|1996-05-29|1996-07-17|NONE|AIR| requests haggle furiously| +3310|66414|3918|4|50|69020.50|0.04|0.00|N|O|1996-05-16|1996-07-02|1996-05-22|TAKE BACK RETURN|SHIP| final accounts. unusual dep| +3310|209283|34292|5|25|29806.75|0.03|0.07|N|O|1996-05-01|1996-07-01|1996-05-27|NONE|RAIL|slyly final orbit| +3310|410827|10828|6|20|34756.00|0.03|0.08|N|O|1996-05-04|1996-06-13|1996-05-17|TAKE BACK RETURN|TRUCK|nusual theodolites. fluffily regular deposi| +3311|279184|4195|1|23|26752.91|0.01|0.07|R|F|1994-06-06|1994-05-26|1994-06-24|TAKE BACK RETURN|REG AIR|sits serve quickly fluffily pending pl| +3311|229002|4011|2|17|15826.83|0.02|0.07|A|F|1994-05-07|1994-06-05|1994-05-21|TAKE BACK RETURN|MAIL|special deposits sleep car| +3311|831933|19482|3|16|29838.24|0.10|0.07|A|F|1994-05-16|1994-04-19|1994-05-19|TAKE BACK RETURN|FOB|its. slyly bold deposits acros| +3311|294763|19774|4|31|54490.25|0.06|0.05|R|F|1994-05-04|1994-05-06|1994-05-07|TAKE BACK RETURN|TRUCK|ld theodolit| +3311|66713|4217|5|23|38633.33|0.02|0.06|A|F|1994-05-05|1994-04-14|1994-06-04|TAKE BACK RETURN|TRUCK|r pinto beans. final theodolites nag fl| +3336|744422|44423|1|13|19063.07|0.06|0.07|A|F|1995-01-16|1995-01-27|1995-01-29|NONE|FOB|uctions. thinly iron| +3337|611438|11439|1|39|52626.60|0.09|0.08|A|F|1992-11-08|1992-09-30|1992-12-04|COLLECT COD|TRUCK|encies are iro| +3337|425458|25459|2|36|49803.48|0.07|0.02|R|F|1992-10-02|1992-09-26|1992-10-20|COLLECT COD|TRUCK|ng to the carefully brave deposits. ironic,| +3337|661951|49491|3|31|59300.52|0.03|0.07|R|F|1992-10-27|1992-10-31|1992-11-19|COLLECT COD|AIR|. slyly pending ideas alongside | +3337|402274|14783|4|40|47050.00|0.04|0.03|A|F|1992-11-10|1992-11-04|1992-12-10|DELIVER IN PERSON|TRUCK|ts among th| +3337|12876|25377|5|15|26833.05|0.01|0.04|A|F|1992-10-16|1992-10-28|1992-11-09|NONE|SHIP|nding packages alongs| +3337|399940|37462|6|5|10199.65|0.09|0.07|A|F|1992-11-22|1992-10-15|1992-12-05|NONE|REG AIR| above the regular, e| +3338|252857|15363|1|37|66964.08|0.07|0.07|R|F|1994-08-15|1994-06-27|1994-08-16|NONE|TRUCK|slyly quickly even grouches. fina| +3338|764598|27114|2|30|49876.80|0.05|0.06|R|F|1994-06-03|1994-07-06|1994-06-07|NONE|AIR|ironic, bold requests poach boldly u| +3338|587774|286|3|43|80055.25|0.10|0.01|A|F|1994-06-13|1994-07-14|1994-07-03|COLLECT COD|AIR|ag slyly. request| +3339|650211|25238|1|35|40641.30|0.04|0.00|N|O|1997-01-08|1997-01-25|1997-02-02|DELIVER IN PERSON|FOB|ove the fur| +3339|93815|6317|2|14|25323.34|0.04|0.04|N|O|1997-02-06|1997-02-11|1997-02-13|DELIVER IN PERSON|REG AIR|uests. carefully ironic ideas nag furiou| +3339|745815|33358|3|13|24190.14|0.00|0.02|N|O|1997-03-24|1997-02-11|1997-04-07|COLLECT COD|SHIP|ecial asymptotes abou| +3339|902334|39889|4|26|34743.54|0.10|0.02|N|O|1997-03-19|1997-01-19|1997-04-01|DELIVER IN PERSON|FOB| pending, express ideas promi| +3339|520729|45750|5|1|1749.70|0.09|0.01|N|O|1997-03-13|1997-02-05|1997-03-26|NONE|MAIL|lyly unusual i| +3339|875915|13467|6|14|26472.18|0.02|0.05|N|O|1997-03-09|1997-02-25|1997-03-31|NONE|REG AIR|egular dependencies a| +3339|493938|43939|7|46|88867.86|0.03|0.03|N|O|1997-03-03|1997-02-01|1997-03-10|NONE|REG AIR|accounts are sl| +3340|611571|36596|1|22|32615.88|0.07|0.07|N|O|1996-02-26|1996-03-03|1996-03-12|COLLECT COD|REG AIR|y about the blithely reg| +3340|664746|39773|2|27|46189.17|0.00|0.00|N|O|1996-02-06|1996-03-12|1996-02-26|NONE|RAIL|kages haggle| +3340|385432|35433|3|41|62214.22|0.10|0.01|N|O|1996-01-10|1996-02-12|1996-01-22|COLLECT COD|RAIL| haggle qu| +3340|952666|2667|4|24|41246.88|0.10|0.00|N|O|1996-02-03|1996-02-22|1996-02-14|COLLECT COD|TRUCK|inal pains haggle furiously | +3341|705493|18008|1|43|64433.78|0.02|0.05|N|O|1997-12-26|1997-10-18|1998-01-08|COLLECT COD|AIR|, final pac| +3342|457048|7049|1|17|17085.34|0.02|0.00|A|F|1994-08-27|1994-09-24|1994-09-24|COLLECT COD|REG AIR|slowly packages. furiously regular Tiresia| +3342|590296|15319|2|26|36043.02|0.01|0.03|R|F|1994-11-13|1994-10-13|1994-12-05|DELIVER IN PERSON|TRUCK|ic foxes affix furiously around the unu| +3342|94832|44833|3|29|52978.07|0.09|0.07|R|F|1994-10-14|1994-11-01|1994-11-07|COLLECT COD|MAIL| quickly final ideas wake aroun| +3342|835256|35257|4|12|14294.52|0.02|0.02|R|F|1994-11-02|1994-10-20|1994-11-16|TAKE BACK RETURN|TRUCK|he special asymptotes| +3342|133465|45968|5|45|67430.70|0.09|0.02|R|F|1994-08-24|1994-09-29|1994-08-31|COLLECT COD|REG AIR|efully ironic platel| +3342|145325|32832|6|45|61664.40|0.02|0.01|R|F|1994-08-19|1994-10-02|1994-08-28|DELIVER IN PERSON|MAIL|usly regular packages. s| +3343|116069|28572|1|48|52082.88|0.02|0.04|R|F|1994-06-10|1994-07-09|1994-07-10|NONE|MAIL|ous packag| +3343|759980|22496|2|8|16319.60|0.08|0.03|A|F|1994-08-04|1994-05-31|1994-08-07|TAKE BACK RETURN|SHIP|osits are slyly carefully bold ideas. | +3368|652905|2906|1|28|52020.36|0.02|0.04|R|F|1993-06-29|1993-06-16|1993-07-13|NONE|TRUCK|ly. ironic, final p| +3368|368234|5756|2|1|1302.22|0.07|0.04|A|F|1993-07-25|1993-07-02|1993-08-15|COLLECT COD|FOB|unts. quickly express depende| +3369|941947|16984|1|31|61655.90|0.05|0.08|A|F|1995-03-03|1995-01-12|1995-03-06|DELIVER IN PERSON|MAIL|ronic depths are carefully fluffily u| +3369|295310|20321|2|9|11747.70|0.03|0.06|R|F|1995-01-15|1995-01-13|1995-02-13|DELIVER IN PERSON|SHIP|he blithely| +3369|274515|37021|3|3|4468.50|0.10|0.08|A|F|1995-03-13|1995-02-06|1995-03-29|TAKE BACK RETURN|AIR|g dolphins above the carefully iron| +3369|759907|22423|4|19|37370.53|0.04|0.06|A|F|1995-03-14|1995-03-04|1995-04-12|NONE|RAIL|s. furiously regular deposits| +3370|386511|36512|1|31|49522.50|0.03|0.02|A|F|1994-10-29|1994-11-15|1994-11-25|COLLECT COD|MAIL|ake quickly alongside of the c| +3370|76510|1513|2|6|8919.06|0.06|0.04|R|F|1995-01-18|1994-12-02|1995-02-04|TAKE BACK RETURN|SHIP|usily regular accounts. express re| +3370|896325|33877|3|19|25104.32|0.03|0.05|A|F|1995-01-26|1994-12-02|1995-02-08|NONE|REG AIR|uests haggle. som| +3371|701306|1307|1|10|13072.70|0.08|0.08|N|O|1995-09-01|1995-09-26|1995-09-29|NONE|SHIP|. final pinto be| +3371|836031|23580|2|35|33844.65|0.05|0.07|N|O|1995-11-06|1995-10-09|1995-11-12|COLLECT COD|MAIL|boost. furious packages use blithely alo| +3372|148637|48638|1|32|53940.16|0.10|0.04|N|O|1997-05-03|1997-03-09|1997-05-05|COLLECT COD|SHIP| according| +3372|135455|22962|2|41|61108.45|0.02|0.05|N|O|1997-04-24|1997-03-25|1997-05-08|DELIVER IN PERSON|REG AIR|eas sleep slyly quietly final | +3372|588880|38881|3|42|82692.12|0.08|0.08|N|O|1997-04-21|1997-04-23|1997-05-07|TAKE BACK RETURN|REG AIR|e of the express instru| +3373|359440|21948|1|8|11995.44|0.05|0.04|N|O|1997-03-25|1997-03-06|1997-04-10|NONE|AIR|iously special foxes s| +3373|100668|25673|2|26|43385.16|0.09|0.03|N|O|1997-03-15|1997-02-27|1997-03-27|COLLECT COD|TRUCK|ously special requests above| +3374|860455|22973|1|47|66524.27|0.01|0.03|A|F|1993-07-04|1993-06-06|1993-07-31|DELIVER IN PERSON|AIR|p across the furiously even fo| +3374|650699|13213|2|13|21445.58|0.09|0.06|R|F|1993-04-25|1993-06-03|1993-05-09|NONE|REG AIR|ly bold deposits. final pint| +3374|296656|21667|3|1|1652.64|0.05|0.07|R|F|1993-07-11|1993-05-12|1993-08-07|COLLECT COD|REG AIR|nding packages. | +3374|896181|21216|4|9|10594.26|0.01|0.04|R|F|1993-03-29|1993-06-08|1993-04-27|COLLECT COD|MAIL|onic theodolites | +3374|107343|44850|5|28|37809.52|0.06|0.05|R|F|1993-07-05|1993-05-29|1993-07-14|COLLECT COD|AIR|n requests. slyly silent t| +3374|99948|12450|6|44|85709.36|0.06|0.02|A|F|1993-05-09|1993-05-25|1993-05-23|DELIVER IN PERSON|TRUCK|ithely even depth| +3374|815748|28265|7|35|58229.50|0.05|0.06|A|F|1993-04-23|1993-05-07|1993-04-24|COLLECT COD|RAIL|dolites. pinto beans use care| +3375|274006|36512|1|50|48999.50|0.10|0.04|A|F|1995-05-17|1995-05-13|1995-06-14|DELIVER IN PERSON|RAIL|endencies wake. furiously final idea| +3375|214959|39968|2|2|3747.88|0.01|0.02|N|O|1995-07-18|1995-05-25|1995-07-27|TAKE BACK RETURN|SHIP|yly along the ironic accounts. packag| +3375|811090|23607|3|3|3003.15|0.08|0.00|R|F|1995-05-02|1995-06-11|1995-05-03|NONE|TRUCK|eposits. even foxes wake ironically. expr| +3375|986279|23837|4|20|27304.60|0.06|0.08|R|F|1995-05-30|1995-06-28|1995-06-17|TAKE BACK RETURN|FOB|olites. carefully regular c| +3375|380980|18502|5|10|20609.70|0.09|0.08|A|F|1995-05-26|1995-06-05|1995-05-27|NONE|MAIL|ons after the r| +3375|125196|37699|6|20|24423.80|0.05|0.04|N|O|1995-07-10|1995-05-11|1995-07-16|TAKE BACK RETURN|MAIL| after the blithely special th| +3375|152489|2490|7|2|3082.96|0.10|0.05|N|O|1995-07-25|1995-05-29|1995-08-22|NONE|REG AIR|leep furiously. final packages ha| +3400|878672|3707|1|27|44567.01|0.08|0.00|N|O|1998-03-27|1998-04-29|1998-04-23|COLLECT COD|AIR|s haggle. slyly regular p| +3400|838253|25802|2|31|36927.51|0.01|0.00|N|O|1998-07-02|1998-06-03|1998-07-16|NONE|REG AIR| unusual pint| +3401|812267|49816|1|14|16509.08|0.04|0.04|A|F|1995-03-12|1995-04-13|1995-03-31|DELIVER IN PERSON|REG AIR|y. idle idea| +3401|759335|21851|2|49|68320.70|0.03|0.03|R|F|1995-03-07|1995-05-07|1995-03-17|COLLECT COD|RAIL|egular courts. furiously final r| +3402|139677|39678|1|35|60083.45|0.05|0.05|A|F|1993-12-13|1994-01-03|1994-01-08|COLLECT COD|FOB|eas cajole| +3402|542211|29742|2|18|22557.42|0.05|0.00|A|F|1994-02-06|1994-01-08|1994-02-26|NONE|TRUCK|. carefully ironic asymptotes w| +3402|933893|33894|3|15|28902.75|0.10|0.03|R|F|1994-01-10|1993-12-31|1994-01-24|NONE|FOB|s. blithely express excuses wake carefull| +3402|937072|12109|4|47|52124.41|0.04|0.03|R|F|1994-03-01|1994-01-06|1994-03-13|COLLECT COD|MAIL|ronic, unu| +3402|366373|3895|5|27|38862.72|0.06|0.07|R|F|1994-02-06|1994-01-05|1994-03-08|TAKE BACK RETURN|SHIP|s sleep blithely stealthy deposits. f| +3402|616140|3677|6|2|2112.22|0.01|0.04|R|F|1994-02-22|1994-01-23|1994-02-28|DELIVER IN PERSON|FOB|ccording to the| +3403|392235|17250|1|10|13272.20|0.03|0.06|A|F|1995-05-13|1995-05-01|1995-06-01|NONE|RAIL|requests use b| +3403|284385|34386|2|28|38342.36|0.01|0.01|R|F|1995-06-07|1995-04-15|1995-06-13|TAKE BACK RETURN|TRUCK|es. carefully silent accounts| +3403|645344|7857|3|23|29654.13|0.03|0.00|R|F|1995-05-09|1995-04-03|1995-05-13|DELIVER IN PERSON|RAIL|ts. carefully furious plate| +3403|289700|27216|4|17|28724.73|0.06|0.03|A|F|1995-03-01|1995-04-04|1995-03-05|DELIVER IN PERSON|AIR|gside of the quickly special pack| +3404|53838|41342|1|50|89591.50|0.09|0.05|N|O|1996-10-25|1997-01-05|1996-11-04|DELIVER IN PERSON|SHIP|final dependencie| +3404|844579|19612|2|42|63988.26|0.04|0.04|N|O|1997-01-19|1997-01-05|1997-01-20|COLLECT COD|REG AIR|accounts. blithely| +3404|829345|29346|3|16|20388.80|0.03|0.01|N|O|1996-12-15|1996-12-04|1996-12-30|DELIVER IN PERSON|FOB| packages. special, expres| +3404|785229|35230|4|38|49939.22|0.10|0.07|N|O|1996-10-18|1997-01-01|1996-11-08|TAKE BACK RETURN|MAIL|ake fluffily | +3405|670347|20348|1|30|39519.30|0.05|0.08|R|F|1992-07-11|1992-07-31|1992-07-29|TAKE BACK RETURN|AIR|pinto beans nag quickly. regul| +3405|520806|33317|2|8|14614.24|0.01|0.01|R|F|1992-07-01|1992-08-20|1992-07-05|DELIVER IN PERSON|SHIP|he deposits. re| +3405|180007|42511|3|21|22827.00|0.07|0.01|R|F|1992-08-21|1992-08-17|1992-08-27|TAKE BACK RETURN|AIR|ss deposit| +3405|372501|35009|4|48|75527.52|0.04|0.05|A|F|1992-08-30|1992-09-03|1992-09-22|TAKE BACK RETURN|RAIL|key players. carefully ironic deposits slee| +3406|683965|8992|1|6|11693.58|0.08|0.08|N|O|1996-12-02|1997-02-09|1996-12-08|COLLECT COD|AIR|s. regular, pending deposits along the slyl| +3406|397583|35105|2|25|42014.25|0.01|0.07|N|O|1997-03-09|1997-02-10|1997-04-08|TAKE BACK RETURN|REG AIR|ake fluffily exp| +3406|164718|27222|3|20|35654.20|0.02|0.01|N|O|1997-01-26|1997-02-12|1997-01-31|TAKE BACK RETURN|RAIL|lithely regular accounts sleep fur| +3406|408028|33045|4|38|35568.00|0.08|0.01|N|O|1996-12-08|1997-01-02|1996-12-20|NONE|TRUCK|g slyly accor| +3406|713358|38387|5|38|52110.16|0.02|0.00|N|O|1997-03-02|1997-02-13|1997-03-16|COLLECT COD|RAIL|. regular instruc| +3406|400421|12930|6|42|55498.80|0.03|0.03|N|O|1996-12-09|1996-12-16|1997-01-08|DELIVER IN PERSON|RAIL|regular, ruthless pack| +3407|71417|46420|1|10|13884.10|0.06|0.07|N|O|1996-12-29|1996-11-14|1997-01-07|DELIVER IN PERSON|RAIL|cuses nod closely| +3407|304607|17114|2|30|48347.70|0.01|0.02|N|O|1996-09-15|1996-10-24|1996-10-13|DELIVER IN PERSON|MAIL|quickly upon the s| +3407|518186|30697|3|29|34920.64|0.07|0.03|N|O|1996-11-17|1996-11-24|1996-11-19|TAKE BACK RETURN|TRUCK|sual accounts! furiously | +3407|146412|8915|4|24|35001.84|0.09|0.02|N|O|1996-12-15|1996-11-02|1997-01-09|TAKE BACK RETURN|REG AIR|carefully silent depos| +3407|736618|24161|5|32|52946.56|0.03|0.04|N|O|1996-11-09|1996-11-04|1996-11-22|COLLECT COD|REG AIR|fully unusual accounts boost slyly. blit| +3432|623609|11146|1|33|50574.81|0.01|0.07|N|O|1998-04-15|1998-02-05|1998-05-11|DELIVER IN PERSON|MAIL|furiously regular deposits. quickly regular| +3432|986417|48937|2|34|51114.58|0.06|0.03|N|O|1998-02-04|1998-02-16|1998-02-27|NONE|AIR|ess, ironic excuses along the| +3432|708840|21355|3|5|9244.05|0.01|0.05|N|O|1998-03-05|1998-01-24|1998-03-23|NONE|FOB|ironic asy| +3432|461825|36844|4|50|89340.00|0.06|0.02|N|O|1998-01-02|1998-02-09|1998-01-13|TAKE BACK RETURN|SHIP|pinto beans are quickly regular| +3432|888312|25864|5|21|27305.67|0.05|0.00|N|O|1998-02-21|1998-02-11|1998-02-26|NONE|SHIP|theodolites wake besides the iron| +3432|856611|31646|6|47|73675.79|0.08|0.04|N|O|1998-01-11|1998-03-21|1998-01-12|DELIVER IN PERSON|AIR|ss package| +3433|298791|48792|1|18|32216.04|0.03|0.02|A|F|1992-09-09|1992-06-12|1992-09-29|COLLECT COD|RAIL|e furiously regular, f| +3433|773001|35517|2|31|33293.07|0.05|0.08|R|F|1992-08-01|1992-07-05|1992-08-17|NONE|MAIL|lyly regular request| +3433|824281|11830|3|12|14462.88|0.00|0.08|R|F|1992-05-28|1992-07-18|1992-06-24|TAKE BACK RETURN|SHIP|cial hockey players. furious| +3433|679396|29397|4|15|20630.40|0.09|0.05|A|F|1992-06-13|1992-07-05|1992-06-18|DELIVER IN PERSON|REG AIR|pendencies haggle q| +3434|801056|1057|1|41|39237.41|0.00|0.02|R|F|1993-11-28|1993-09-22|1993-12-22|NONE|AIR|usual packages was care| +3435|355336|42858|1|14|19478.48|0.00|0.01|R|F|1993-09-08|1993-08-06|1993-09-20|NONE|MAIL|l deposits nod furiously sly| +3435|130343|5348|2|42|57680.28|0.10|0.06|A|F|1993-10-04|1993-09-14|1993-10-22|NONE|REG AIR| regular requests.| +3435|668392|5932|3|29|39450.44|0.09|0.01|R|F|1993-10-05|1993-08-12|1993-11-02|TAKE BACK RETURN|TRUCK|gside of the even packages. furiously bold | +3435|650838|13352|4|2|3577.60|0.03|0.03|R|F|1993-07-19|1993-08-09|1993-07-28|TAKE BACK RETURN|TRUCK|s was quietly regular pac| +3435|623585|11122|5|17|25645.35|0.02|0.07|R|F|1993-09-02|1993-09-12|1993-09-19|NONE|MAIL|s serve blithely by the quickly final fox| +3435|579814|29815|6|46|87114.34|0.01|0.06|R|F|1993-07-23|1993-09-24|1993-08-15|NONE|TRUCK|counts. fluffily regular ac| +3436|498521|23540|1|10|15195.00|0.10|0.04|A|F|1993-05-21|1993-06-12|1993-06-08|TAKE BACK RETURN|AIR|ts. final, unusual instru| +3436|638008|38009|2|47|44460.59|0.05|0.00|R|F|1993-06-06|1993-06-30|1993-06-29|NONE|SHIP|yly quickly re| +3437|579373|41885|1|23|33404.05|0.05|0.07|N|O|1997-12-30|1997-11-09|1998-01-07|TAKE BACK RETURN|MAIL|ffily regular foxes boost after th| +3437|508816|8817|2|46|83940.34|0.10|0.07|N|O|1997-11-09|1997-10-25|1997-11-28|NONE|SHIP|ggle furiously a| +3437|664413|26927|3|32|44076.16|0.06|0.06|N|O|1997-09-19|1997-10-28|1997-09-21|COLLECT COD|REG AIR| across the u| +3437|783583|33584|4|11|18332.05|0.02|0.07|N|O|1997-10-14|1997-10-22|1997-11-08|COLLECT COD|RAIL|ts. careful| +3438|932062|32063|1|46|50324.92|0.02|0.03|N|O|1998-04-18|1998-03-11|1998-05-12|DELIVER IN PERSON|AIR|ously after the | +3438|164532|2042|2|33|52685.49|0.02|0.08|N|O|1998-04-03|1998-02-01|1998-04-20|DELIVER IN PERSON|AIR|its nag blithely. ironic, final instructi| +3438|279484|29485|3|26|38050.22|0.10|0.08|N|O|1998-03-22|1998-02-12|1998-04-16|DELIVER IN PERSON|REG AIR|furiously regular req| +3438|271775|34281|4|21|36681.96|0.09|0.06|N|O|1998-02-11|1998-02-13|1998-02-13|TAKE BACK RETURN|AIR|posits about the furio| +3438|706505|31534|5|38|57435.86|0.07|0.08|N|O|1998-04-10|1998-02-21|1998-05-04|COLLECT COD|AIR|deas boost carefully final acc| +3438|227618|40123|6|15|23184.00|0.07|0.03|N|O|1998-03-13|1998-01-31|1998-04-08|COLLECT COD|MAIL|lyly after the packages. entici| +3439|683627|8654|1|36|57981.24|0.09|0.01|A|F|1994-12-04|1994-10-06|1994-12-23|NONE|MAIL|r, ironic packages haggle furiously. qu| +3439|715122|2665|2|33|37523.97|0.00|0.05|R|F|1994-11-27|1994-10-05|1994-12-07|NONE|MAIL|nal requests cajole bold, silent requests| +3439|49032|49033|3|34|33355.02|0.00|0.05|A|F|1994-09-11|1994-09-24|1994-09-14|COLLECT COD|FOB|jole fluffily special reques| +3439|74163|49166|4|44|50035.04|0.02|0.04|R|F|1994-10-02|1994-09-14|1994-10-15|DELIVER IN PERSON|REG AIR|ckly alongside of the slyly eve| +3464|575101|37613|1|16|18817.28|0.01|0.07|A|F|1995-01-15|1995-01-17|1995-01-21|NONE|SHIP| unusual theodolites wake among the slyly| +3464|715089|15090|2|45|49682.25|0.09|0.04|A|F|1995-01-07|1995-02-13|1995-01-21|COLLECT COD|MAIL|c accounts detect permanently across th| +3464|493986|19005|3|50|98998.00|0.04|0.07|A|F|1995-02-22|1995-02-15|1995-02-24|TAKE BACK RETURN|AIR|. bold, final excuses affi| +3464|414228|26737|4|7|7995.40|0.06|0.03|R|F|1995-02-14|1995-02-02|1995-02-28|TAKE BACK RETURN|RAIL|ole slyly accord| +3464|917223|42260|5|11|13641.98|0.01|0.05|R|F|1994-12-11|1995-02-18|1995-01-01|DELIVER IN PERSON|AIR|equests cajole fluffily along the ca| +3465|989607|2127|1|16|27144.96|0.03|0.07|N|O|1997-10-05|1997-11-11|1997-10-16|NONE|FOB|final pearls cajole ironic packages. expre| +3465|310907|35920|2|26|49865.14|0.05|0.08|N|O|1997-12-11|1997-10-17|1997-12-14|DELIVER IN PERSON|TRUCK|kly regular requests. requests impre| +3466|927260|27261|1|30|38616.60|0.06|0.08|R|F|1994-07-09|1994-05-30|1994-07-27|TAKE BACK RETURN|MAIL|gainst the quickly even accounts boo| +3467|475776|38286|1|35|61311.25|0.01|0.02|R|F|1995-05-05|1995-06-10|1995-05-07|NONE|MAIL|arefully ironic co| +3467|351520|39042|2|31|48716.81|0.10|0.07|N|O|1995-07-23|1995-07-22|1995-08-07|COLLECT COD|FOB|s. packages | +3467|988348|38349|3|14|20108.20|0.00|0.05|N|O|1995-08-17|1995-07-16|1995-08-24|COLLECT COD|RAIL|xes haggle furiously. furiou| +3468|325723|38230|1|21|36722.91|0.04|0.07|A|F|1992-08-13|1992-09-22|1992-08-31|DELIVER IN PERSON|AIR| bold platel| +3469|142411|29918|1|2|2906.82|0.08|0.04|R|F|1992-04-07|1992-04-24|1992-04-13|COLLECT COD|MAIL|blithely regular platelet| +3469|491459|41460|2|15|21756.45|0.04|0.07|R|F|1992-03-17|1992-04-10|1992-04-13|NONE|REG AIR|e carefully. ironicall| +3469|942643|30198|3|30|50568.00|0.00|0.05|R|F|1992-05-22|1992-04-27|1992-06-18|TAKE BACK RETURN|FOB|sits are bold foxes. blithely regular the| +3469|987710|230|4|26|46739.42|0.01|0.06|R|F|1992-05-27|1992-04-24|1992-06-24|TAKE BACK RETURN|MAIL|furiously ironic accounts. asymp| +3470|144644|7147|1|3|5065.92|0.05|0.01|N|O|1996-04-21|1996-03-30|1996-04-26|TAKE BACK RETURN|RAIL| the even deposits was furiously slyly fi| +3470|25161|37662|2|33|35843.28|0.05|0.02|N|O|1996-04-25|1996-03-07|1996-05-06|TAKE BACK RETURN|SHIP|es sleep slyly bold| +3470|867020|29538|3|46|45401.08|0.01|0.02|N|O|1996-03-20|1996-03-27|1996-03-30|DELIVER IN PERSON|REG AIR|deposits according| +3471|715086|2629|1|8|8808.40|0.01|0.00|R|F|1995-01-13|1995-02-19|1995-01-20|COLLECT COD|MAIL|e quickly even platelets| +3471|434318|21843|2|46|57605.34|0.01|0.00|R|F|1995-02-14|1995-02-26|1995-03-01|DELIVER IN PERSON|AIR|e sometimes.| +3496|642753|42754|1|44|74611.68|0.06|0.08|R|F|1993-05-05|1993-06-07|1993-05-12|DELIVER IN PERSON|TRUCK| regular excuses sleep carefully pint| +3496|743664|43665|2|43|73428.09|0.06|0.03|R|F|1993-08-29|1993-07-16|1993-09-27|NONE|SHIP| regularly special fox| +3496|757328|7329|3|25|34632.25|0.08|0.02|R|F|1993-08-28|1993-07-07|1993-09-20|NONE|REG AIR|ithely slow s| +3496|398404|10912|4|9|13521.51|0.02|0.00|R|F|1993-08-01|1993-06-25|1993-08-27|TAKE BACK RETURN|MAIL|silent accounts; quickly express requ| +3496|968892|31412|5|1|1960.85|0.06|0.03|A|F|1993-08-15|1993-06-06|1993-08-21|NONE|MAIL|fluffily unusual multipl| +3496|153368|28375|6|45|63961.20|0.08|0.05|A|F|1993-08-16|1993-07-26|1993-08-27|COLLECT COD|REG AIR| sleep. carefully bold epitaphs h| +3496|647462|47463|7|27|38054.61|0.01|0.00|R|F|1993-08-02|1993-06-17|1993-08-22|COLLECT COD|REG AIR|iously after the carefully| +3497|879058|16610|1|42|43554.42|0.09|0.05|A|F|1992-04-09|1992-05-14|1992-04-26|COLLECT COD|REG AIR|he fluffily regular dep| +3497|317603|42616|2|8|12964.72|0.09|0.07|A|F|1992-06-15|1992-05-24|1992-06-17|DELIVER IN PERSON|MAIL|s epitaphs. carefully special packages hag| +3497|941140|41141|3|44|51968.40|0.09|0.05|A|F|1992-05-23|1992-04-12|1992-06-10|DELIVER IN PERSON|RAIL|nal deposits. pending reques| +3497|739820|2335|4|46|85550.34|0.08|0.07|A|F|1992-03-16|1992-05-15|1992-04-12|NONE|REG AIR|fily special dependencies. f| +3497|142393|17398|5|1|1435.39|0.10|0.03|A|F|1992-05-24|1992-04-20|1992-06-19|TAKE BACK RETURN|FOB|press instruc| +3497|184916|47420|6|18|36016.38|0.01|0.08|A|F|1992-06-23|1992-06-08|1992-07-23|DELIVER IN PERSON|TRUCK|blithely alongside of the blithely silent a| +3498|438451|960|1|2|2778.86|0.06|0.03|N|O|1995-08-10|1995-07-31|1995-09-01|DELIVER IN PERSON|FOB|ual accounts. sl| +3498|33189|45690|2|15|16832.70|0.10|0.08|N|O|1995-09-01|1995-08-16|1995-09-13|COLLECT COD|FOB| to the quickly p| +3498|793978|43979|3|32|66302.08|0.07|0.05|N|O|1995-08-02|1995-08-08|1995-08-08|COLLECT COD|RAIL|ly ironic accounts| +3498|378682|41190|4|23|40495.41|0.01|0.00|N|O|1995-10-16|1995-08-17|1995-11-09|COLLECT COD|MAIL| use careful| +3498|501116|1117|5|1|1117.09|0.00|0.03|N|O|1995-08-03|1995-09-16|1995-08-19|DELIVER IN PERSON|AIR|fix. pending| +3498|251930|39446|6|37|69631.04|0.05|0.05|N|O|1995-07-10|1995-09-26|1995-08-09|COLLECT COD|SHIP|mptotes sleep even de| +3499|940545|28100|1|20|31710.00|0.02|0.01|N|O|1996-07-27|1996-07-22|1996-07-30|TAKE BACK RETURN|SHIP|the ideas | +3499|734863|47378|2|44|83504.52|0.02|0.08|N|O|1996-07-01|1996-06-20|1996-07-18|COLLECT COD|RAIL| carefully stealthy ideas. slyly final a| +3499|837853|12886|3|27|48351.87|0.03|0.06|N|O|1996-08-22|1996-08-01|1996-09-02|NONE|REG AIR| carefully expres| +3499|787208|24754|4|4|5180.68|0.00|0.00|N|O|1996-06-06|1996-06-14|1996-06-28|TAKE BACK RETURN|RAIL|egular packages integra| +3499|594660|19683|5|20|35092.80|0.01|0.00|N|O|1996-09-03|1996-06-28|1996-09-20|COLLECT COD|FOB|telets. blithely u| +3500|603171|28196|1|50|53707.00|0.09|0.05|R|F|1995-03-09|1995-01-27|1995-03-16|TAKE BACK RETURN|AIR| alongside of th| +3500|484903|47413|2|22|41533.36|0.09|0.01|R|F|1995-02-26|1995-02-01|1995-03-18|DELIVER IN PERSON|AIR|ts boost carefully al| +3501|61779|49283|1|49|85297.73|0.07|0.00|R|F|1992-06-03|1992-07-15|1992-07-01|DELIVER IN PERSON|FOB|ickly regular r| +3501|304124|4125|2|31|34971.41|0.01|0.02|A|F|1992-08-01|1992-06-16|1992-08-21|DELIVER IN PERSON|AIR| packages. unusual requests aga| +3502|293531|6037|1|46|70127.92|0.08|0.07|R|F|1995-03-04|1995-01-26|1995-03-26|NONE|SHIP|snooze slyly. pinto | +3502|369574|7096|2|50|82178.00|0.04|0.03|R|F|1995-02-12|1995-02-11|1995-02-20|NONE|FOB|ironic requests against the careful| +3502|426060|13585|3|6|5916.24|0.08|0.08|R|F|1994-12-16|1995-01-30|1994-12-22|COLLECT COD|TRUCK|xcuses. regular fo| +3503|292768|42769|1|33|58104.75|0.02|0.07|N|O|1998-05-15|1998-06-15|1998-06-03|COLLECT COD|SHIP|deposits. unusual foxes above the specia| +3503|548800|23821|2|26|48068.28|0.07|0.02|N|O|1998-06-12|1998-07-25|1998-07-11|TAKE BACK RETURN|RAIL| special instructio| +3503|666875|4415|3|34|62622.56|0.05|0.07|N|O|1998-06-25|1998-06-28|1998-07-07|TAKE BACK RETURN|MAIL|s are carefully among | +3503|166325|28829|4|8|11130.56|0.02|0.07|N|O|1998-07-31|1998-06-26|1998-08-08|DELIVER IN PERSON|TRUCK|f the final, special orbits. blithel| +3528|107672|7673|1|50|83983.50|0.04|0.00|N|O|1995-07-01|1995-07-03|1995-07-19|COLLECT COD|SHIP|furiously regula| +3528|633997|46510|2|15|28964.40|0.01|0.05|N|O|1995-08-07|1995-07-31|1995-09-06|DELIVER IN PERSON|RAIL|sts are. ironic asymptotes nag. pending| +3528|580358|5381|3|8|11506.64|0.07|0.07|N|O|1995-06-23|1995-07-05|1995-07-02|COLLECT COD|TRUCK|ests cajole furiously. caref| +3528|64146|39149|4|48|53286.72|0.08|0.06|N|O|1995-08-24|1995-08-14|1995-09-04|TAKE BACK RETURN|RAIL|ngage furiously slyly blith| +3528|99193|36697|5|11|13114.09|0.02|0.07|N|O|1995-07-01|1995-06-30|1995-07-19|DELIVER IN PERSON|TRUCK|pinto beans. carefully bold ideas a| +3529|770239|45270|1|23|30111.60|0.02|0.07|N|O|1997-12-27|1997-12-01|1998-01-26|COLLECT COD|FOB|er the bol| +3529|403087|3088|2|47|46532.82|0.07|0.06|N|O|1997-11-01|1998-01-14|1997-11-26|COLLECT COD|REG AIR|xcuses haggle around the ironic pac| +3529|678946|16486|3|36|69296.76|0.02|0.05|N|O|1997-12-27|1997-12-20|1997-12-31|NONE|AIR|refully. fluffily express r| +3529|29471|29472|4|31|43414.57|0.03|0.03|N|O|1997-11-14|1997-12-29|1997-12-01|DELIVER IN PERSON|AIR| ironic ideas sleep slyly ag| +3530|703695|41238|1|36|61151.76|0.06|0.03|A|F|1994-08-12|1994-07-02|1994-09-04|DELIVER IN PERSON|MAIL|s. blithely even theodolites wake| +3530|997561|35119|2|16|26536.32|0.05|0.04|A|F|1994-06-16|1994-07-27|1994-07-14|TAKE BACK RETURN|AIR| enticing ideas a| +3530|2473|2474|3|18|24758.46|0.08|0.00|A|F|1994-07-24|1994-06-17|1994-08-08|NONE|REG AIR|. regular, bold multipliers affix careful| +3531|701686|39229|1|1|1687.65|0.04|0.07|A|F|1993-05-05|1993-04-21|1993-05-22|TAKE BACK RETURN|AIR|ructions. re| +3531|235136|47641|2|31|33204.72|0.06|0.00|R|F|1993-04-11|1993-04-02|1993-04-13|NONE|RAIL|y along the carefully regula| +3532|426371|13896|1|12|15568.20|0.00|0.02|A|F|1994-01-10|1993-12-08|1994-02-03|COLLECT COD|RAIL|phins boost slyly. silent, re| +3532|9367|9368|2|31|39567.16|0.02|0.03|A|F|1993-12-30|1993-12-03|1994-01-01|COLLECT COD|REG AIR|inst the furiously final warthogs thrash | +3532|426369|13894|3|50|64767.00|0.05|0.07|R|F|1994-01-29|1993-12-17|1994-02-25|COLLECT COD|FOB| wake according to the blithely reg| +3533|692459|29999|1|43|62411.06|0.02|0.08|N|O|1996-10-28|1996-12-23|1996-11-14|DELIVER IN PERSON|SHIP|ackages. quickly dogged packages nag| +3533|151176|26183|2|35|42950.95|0.02|0.00|N|O|1996-10-06|1996-12-02|1996-10-31|TAKE BACK RETURN|TRUCK| the unusual, unusual requests boost furiou| +3533|811935|49484|3|24|44325.36|0.10|0.04|N|O|1996-10-01|1996-11-27|1996-10-18|DELIVER IN PERSON|TRUCK|packages haggl| +3533|177686|15196|4|47|82892.96|0.04|0.01|N|O|1997-01-23|1996-12-04|1997-02-19|COLLECT COD|MAIL|accounts nag af| +3533|353002|3003|5|48|50639.52|0.02|0.08|N|O|1997-01-09|1996-11-20|1997-01-17|NONE|SHIP|s the furiously final req| +3533|899431|49432|6|40|57215.60|0.03|0.07|N|O|1996-11-19|1996-12-17|1996-12-02|NONE|RAIL|oss the fluffily regu| +3533|722354|9897|7|41|56429.12|0.09|0.07|N|O|1996-12-04|1996-11-05|1996-12-13|NONE|MAIL|ests. even accounts against the silent i| +3534|587694|12717|1|16|28506.72|0.00|0.01|A|F|1992-11-30|1992-12-12|1992-12-30|COLLECT COD|FOB|thely ironic requests hag| +3534|370598|8120|2|20|33371.60|0.04|0.01|R|F|1992-11-16|1992-12-10|1992-11-20|DELIVER IN PERSON|REG AIR|ully after the carefully even foxes. blithe| +3534|625062|25063|3|27|26649.81|0.03|0.06|A|F|1992-10-27|1992-11-01|1992-11-12|COLLECT COD|AIR|ly fluffy platelets according to the carefu| +3535|650827|25854|1|37|65778.23|0.10|0.08|R|F|1994-08-29|1994-09-19|1994-09-13|DELIVER IN PERSON|RAIL|ithely final accounts haggle | +3535|433099|20624|2|34|35090.38|0.00|0.00|R|F|1994-09-01|1994-09-29|1994-09-30|NONE|MAIL|lithely after the final dinos. qui| +3535|81588|6591|3|19|29822.02|0.09|0.07|A|F|1994-09-05|1994-11-12|1994-10-04|DELIVER IN PERSON|AIR|ainst the accounts. carefully r| +3535|248195|48196|4|30|34295.40|0.05|0.01|R|F|1994-08-16|1994-10-19|1994-08-21|TAKE BACK RETURN|REG AIR|inal deposits at the bl| +3535|412960|25469|5|48|89901.12|0.05|0.08|A|F|1994-11-10|1994-10-15|1994-11-27|DELIVER IN PERSON|TRUCK|ly final ac| +3560|454293|4294|1|24|29934.48|0.02|0.03|N|O|1997-03-18|1997-04-02|1997-03-31|TAKE BACK RETURN|RAIL| shall have to m| +3560|301501|39020|2|22|33054.78|0.08|0.00|N|O|1997-06-07|1997-05-07|1997-06-12|DELIVER IN PERSON|SHIP| ironic instructions wake thinly a| +3560|319144|6663|3|10|11631.30|0.02|0.04|N|O|1997-03-21|1997-04-12|1997-03-23|NONE|RAIL|ven platelets use blith| +3560|847714|10231|4|6|9970.02|0.01|0.07|N|O|1997-03-24|1997-04-01|1997-04-05|NONE|TRUCK|le furiously after the blithel| +3561|332985|45492|1|41|82736.77|0.08|0.08|N|O|1996-10-08|1996-09-11|1996-10-30|TAKE BACK RETURN|MAIL|ic requests wake sly| +3561|473462|10990|2|42|60288.48|0.10|0.07|N|O|1996-08-18|1996-09-18|1996-08-28|NONE|RAIL|gular gifts sleep | +3561|475220|25221|3|31|37051.20|0.00|0.01|N|O|1996-09-01|1996-09-21|1996-09-29|COLLECT COD|FOB|y final courts haggle carefully acro| +3561|19490|44491|4|39|54970.11|0.07|0.05|N|O|1996-09-14|1996-10-09|1996-10-02|NONE|AIR|press ideas. blithely specia| +3561|565908|15909|5|32|63164.16|0.01|0.01|N|O|1996-09-27|1996-11-04|1996-10-03|NONE|REG AIR| the express ideas are de| +3561|211008|36017|6|45|41354.55|0.08|0.01|N|O|1996-10-07|1996-09-17|1996-10-25|DELIVER IN PERSON|FOB|un blithely accord| +3561|406265|43790|7|11|12883.64|0.01|0.00|N|O|1996-11-19|1996-09-23|1996-12-10|TAKE BACK RETURN|FOB|s wake final accounts. regul| +3562|80642|5645|1|25|40566.00|0.10|0.08|R|F|1992-03-06|1992-04-13|1992-04-05|TAKE BACK RETURN|TRUCK|al ideas haggle blithely bold p| +3563|340539|3046|1|28|44226.56|0.10|0.01|A|F|1994-11-03|1994-10-01|1994-11-30|DELIVER IN PERSON|TRUCK|dependencies. blit| +3563|438327|836|2|22|27836.60|0.03|0.00|R|F|1994-10-08|1994-11-20|1994-10-17|DELIVER IN PERSON|RAIL| packages against| +3563|945544|20581|3|29|46095.50|0.03|0.03|A|F|1994-09-23|1994-10-07|1994-10-20|TAKE BACK RETURN|MAIL|d theodolites wake after the even, even| +3563|746680|34223|4|9|15539.85|0.08|0.00|R|F|1994-12-08|1994-10-04|1994-12-22|DELIVER IN PERSON|TRUCK|bold deposits. sometimes ironic request| +3563|437013|24538|5|23|21849.77|0.01|0.01|R|F|1994-10-01|1994-11-24|1994-10-17|DELIVER IN PERSON|AIR| quickly even theo| +3563|871676|34194|6|17|28009.71|0.10|0.02|A|F|1994-09-12|1994-10-22|1994-09-27|DELIVER IN PERSON|REG AIR|ular requests according to the slyly fin| +3564|917239|17240|1|20|25123.80|0.09|0.00|R|F|1993-02-06|1993-03-27|1993-02-21|DELIVER IN PERSON|AIR|eposits subla| +3564|24393|36894|2|42|55330.38|0.06|0.07|R|F|1993-02-22|1993-03-20|1993-03-11|DELIVER IN PERSON|AIR|rls. slyly| +3564|965962|15963|3|47|95312.24|0.02|0.00|A|F|1993-04-12|1993-03-02|1993-05-01|COLLECT COD|RAIL|ding packages. quickly spec| +3564|918078|43115|4|27|29592.81|0.02|0.08|R|F|1993-02-16|1993-04-03|1993-03-16|DELIVER IN PERSON|MAIL|ptotes? slyly unusual ideas hinder. pend| +3564|130680|5685|5|22|37634.96|0.04|0.06|R|F|1993-04-24|1993-03-30|1993-05-03|TAKE BACK RETURN|RAIL|quests boost quic| +3565|421710|34219|1|5|8158.45|0.04|0.05|N|O|1995-09-24|1995-09-24|1995-10-06|DELIVER IN PERSON|TRUCK|. carefully bold idea| +3565|665548|40575|2|4|6054.04|0.07|0.07|N|O|1995-11-08|1995-09-03|1995-12-01|TAKE BACK RETURN|REG AIR|multipliers are carefully! f| +3565|861063|36098|3|41|41984.82|0.02|0.03|N|O|1995-08-18|1995-09-24|1995-09-03|COLLECT COD|REG AIR|ons haggle caref| +3565|873198|48233|4|28|32792.20|0.10|0.07|N|O|1995-10-08|1995-08-10|1995-10-09|TAKE BACK RETURN|SHIP|ily bold requests haggle fluffily| +3565|825555|38072|5|11|16285.61|0.02|0.04|N|O|1995-09-24|1995-08-21|1995-10-16|NONE|FOB|ully final accounts. iron| +3566|887533|51|1|6|9122.94|0.07|0.06|N|O|1997-04-05|1997-01-22|1997-04-11|NONE|AIR| requests. reg| +3566|765522|40553|2|50|79374.50|0.00|0.03|N|O|1997-01-02|1997-02-09|1997-01-03|TAKE BACK RETURN|FOB| carefully | +3566|116966|41971|3|35|69403.60|0.04|0.03|N|O|1997-03-21|1997-01-24|1997-03-23|COLLECT COD|FOB|leep blithely around the even instructions| +3567|533152|45663|1|5|5925.65|0.02|0.08|N|O|1996-08-29|1996-09-04|1996-09-05|COLLECT COD|RAIL|ly ironic packages! silent| +3567|679933|4960|2|20|38258.00|0.00|0.03|N|O|1996-08-19|1996-07-23|1996-08-20|NONE|SHIP|he fluffily express instructions. final, ex| +3567|621131|33644|3|3|3156.30|0.10|0.03|N|O|1996-07-30|1996-07-14|1996-08-28|COLLECT COD|SHIP|e ruthless,| +3567|340945|3452|4|9|17873.37|0.06|0.06|N|O|1996-09-29|1996-07-08|1996-09-30|COLLECT COD|TRUCK|arefully ironic requests; deposits alon| +3567|250555|556|5|4|6022.16|0.03|0.02|N|O|1996-08-14|1996-08-30|1996-08-22|DELIVER IN PERSON|TRUCK|bold, final requests haggle carefully unusu| +3567|67099|17100|6|8|8528.72|0.04|0.08|N|O|1996-09-07|1996-07-10|1996-09-15|DELIVER IN PERSON|MAIL|ress, bold packages. ironic packa| +3592|684842|22382|1|16|29228.96|0.02|0.01|N|O|1997-05-06|1997-04-07|1997-05-09|DELIVER IN PERSON|RAIL|deposits nod carefully iro| +3592|130465|17972|2|16|23927.36|0.05|0.03|N|O|1997-06-10|1997-04-07|1997-06-24|COLLECT COD|TRUCK|quests integrate slyly| +3593|8969|21470|1|21|39437.16|0.01|0.05|N|O|1995-12-13|1995-10-22|1995-12-15|DELIVER IN PERSON|FOB|platelets snooze bold, final re| +3593|731576|6605|2|28|45011.12|0.07|0.00|N|O|1995-09-28|1995-10-20|1995-10-18|COLLECT COD|REG AIR|n warthogs. carefully regular p| +3593|585392|10415|3|31|45798.47|0.00|0.02|N|O|1995-10-10|1995-10-25|1995-10-12|COLLECT COD|FOB|r instructi| +3593|678155|15695|4|43|48724.16|0.09|0.05|N|O|1995-11-22|1995-10-25|1995-12-17|DELIVER IN PERSON|MAIL|ial instruction| +3593|741924|16953|5|15|29488.35|0.00|0.00|N|O|1995-10-21|1995-11-24|1995-11-19|COLLECT COD|RAIL|uses. accounts| +3594|480797|18325|1|42|74666.34|0.07|0.08|R|F|1993-02-17|1993-04-07|1993-03-06|TAKE BACK RETURN|FOB|even foxes. furiously express theodolites| +3594|750155|37701|2|49|59050.88|0.10|0.06|A|F|1993-05-15|1993-03-12|1993-06-13|DELIVER IN PERSON|TRUCK|ual requests grow slyly ir| +3595|868671|31189|1|29|47549.27|0.05|0.05|R|F|1992-08-04|1992-06-04|1992-08-12|NONE|FOB|l deposits b| +3595|740520|40521|2|17|26528.33|0.02|0.05|R|F|1992-06-16|1992-06-18|1992-07-15|COLLECT COD|FOB|arefully. r| +3595|918230|5785|3|38|47431.22|0.01|0.07|R|F|1992-06-27|1992-07-18|1992-07-09|TAKE BACK RETURN|RAIL|fily. final platelets| +3596|668258|30772|1|4|4904.88|0.01|0.03|N|O|1995-11-30|1995-12-08|1995-12-05|TAKE BACK RETURN|MAIL|ven platelets haggle| +3596|401845|14354|2|43|75113.26|0.08|0.00|N|O|1995-11-12|1995-12-01|1995-12-12|NONE|RAIL|eposits wake alo| +3596|793246|5762|3|36|48211.56|0.03|0.04|N|O|1995-12-20|1995-11-09|1995-12-31|TAKE BACK RETURN|AIR|s. carefully final dependencies cajole care| +3596|78823|3826|4|25|45045.50|0.01|0.01|N|O|1995-10-19|1995-12-19|1995-11-17|COLLECT COD|REG AIR|. daringly special accoun| +3596|765573|15574|5|48|78649.92|0.05|0.08|N|O|1995-11-13|1995-11-25|1995-11-21|COLLECT COD|FOB|s integrate slyly. slyly unusual dolphin| +3596|972411|22412|6|17|25217.29|0.04|0.04|N|O|1995-12-11|1995-11-13|1996-01-08|NONE|REG AIR|cording to the silent t| +3596|307266|44785|7|28|35651.00|0.07|0.07|N|O|1995-11-24|1995-11-29|1995-12-23|TAKE BACK RETURN|MAIL| final accounts about the eve| +3597|212366|37375|1|8|10226.80|0.08|0.05|N|O|1996-10-27|1996-08-18|1996-11-14|COLLECT COD|FOB|over the bold ideas. pe| +3597|229303|41808|2|46|56685.34|0.05|0.00|N|O|1996-08-24|1996-08-21|1996-08-30|DELIVER IN PERSON|FOB|ependencies. ironically regular deposits a| +3597|895367|45368|3|1|1362.32|0.08|0.00|N|O|1996-07-30|1996-08-01|1996-08-26|TAKE BACK RETURN|FOB|. carefully f| +3597|429095|29096|4|23|23553.61|0.02|0.00|N|O|1996-10-26|1996-09-21|1996-10-28|DELIVER IN PERSON|REG AIR|al pinto bean| +3598|988160|13199|1|48|59909.76|0.06|0.00|N|O|1996-06-12|1996-07-27|1996-07-07|TAKE BACK RETURN|MAIL|e blithely iron| +3598|994675|19714|2|15|26544.45|0.04|0.00|N|O|1996-07-26|1996-06-19|1996-08-17|NONE|AIR|sual sauternes nag quickly carefully| +3598|498941|23960|3|11|21339.12|0.09|0.00|N|O|1996-07-24|1996-07-19|1996-08-19|NONE|SHIP| deposits wake along the| +3598|690068|27608|4|19|20102.57|0.07|0.04|N|O|1996-07-30|1996-07-14|1996-07-31|TAKE BACK RETURN|AIR|ickly ironic asymptotes | +3598|965862|3420|5|1|1927.82|0.03|0.01|N|O|1996-07-05|1996-07-29|1996-07-23|DELIVER IN PERSON|REG AIR|silent pinto beans haggle carefully accordi| +3599|92377|42378|1|7|9585.59|0.04|0.02|N|O|1997-08-02|1997-09-23|1997-08-18|NONE|REG AIR|ecial courts sl| +3624|242107|29620|1|35|36718.15|0.09|0.03|R|F|1992-11-01|1992-11-08|1992-11-02|NONE|RAIL|aggle. furiously bold deposits s| +3624|82979|45481|2|42|82402.74|0.08|0.00|R|F|1992-12-11|1992-12-09|1992-12-16|DELIVER IN PERSON|MAIL|lar ideas haggle furiously along t| +3624|616263|16264|3|32|37735.36|0.09|0.03|A|F|1992-12-19|1992-10-26|1992-12-27|TAKE BACK RETURN|AIR|s. ironic, regular| +3624|519252|19253|4|7|8898.61|0.09|0.03|A|F|1992-12-13|1992-12-14|1992-12-23|COLLECT COD|AIR|fully around the ir| +3625|267550|42561|1|22|33385.88|0.04|0.04|N|O|1996-10-04|1996-11-26|1996-10-17|TAKE BACK RETURN|MAIL|dolites cajole acc| +3625|698773|23800|2|9|15945.66|0.03|0.01|N|O|1996-12-14|1996-12-14|1996-12-27|TAKE BACK RETURN|RAIL| theodolites according to the even pint| +3625|265716|40727|3|49|82403.30|0.04|0.05|N|O|1996-10-11|1996-11-05|1996-10-30|TAKE BACK RETURN|REG AIR|egular packages are blithely. fu| +3625|882413|7448|4|8|11162.96|0.09|0.01|N|O|1996-11-11|1996-11-18|1996-11-20|DELIVER IN PERSON|REG AIR| ironic instructions. s| +3626|775469|500|1|22|33977.46|0.09|0.08|N|O|1996-11-03|1996-09-06|1996-11-19|COLLECT COD|RAIL|lar packages hang quickly fi| +3626|297699|10205|2|50|84834.00|0.03|0.03|N|O|1996-10-27|1996-09-19|1996-11-02|COLLECT COD|RAIL|s. regular deposits around the blithely id| +3626|410946|48471|3|35|64992.20|0.01|0.06|N|O|1996-10-27|1996-09-10|1996-11-01|DELIVER IN PERSON|MAIL|ckages sleep blithely | +3626|759571|34602|4|43|70113.22|0.02|0.04|N|O|1996-09-20|1996-09-16|1996-10-11|DELIVER IN PERSON|FOB|ust haggle furiously | +3627|700349|12864|1|22|29684.82|0.03|0.01|N|O|1998-01-30|1998-04-03|1998-02-03|NONE|FOB|ffily express theodoli| +3627|757475|7476|2|3|4597.32|0.00|0.01|N|O|1998-04-28|1998-02-17|1998-05-20|COLLECT COD|SHIP|urious deposits a| +3627|876859|1894|3|49|89954.69|0.05|0.03|N|O|1998-04-02|1998-03-05|1998-04-08|DELIVER IN PERSON|SHIP|ts around | +3627|355641|18149|4|13|22056.19|0.02|0.04|N|O|1998-03-07|1998-03-28|1998-03-28|TAKE BACK RETURN|TRUCK|kages haggle | +3627|246801|46802|5|36|62920.44|0.04|0.03|N|O|1998-01-21|1998-04-05|1998-01-27|DELIVER IN PERSON|MAIL|ke regular instructions. pinto bea| +3627|971239|46278|6|31|40615.89|0.08|0.02|N|O|1998-02-05|1998-04-02|1998-02-16|DELIVER IN PERSON|TRUCK|eodolites use across the furiousl| +3627|607802|7803|7|15|25646.55|0.03|0.02|N|O|1998-02-26|1998-03-22|1998-03-13|NONE|TRUCK|ding to the fluffily regular theod| +3628|312729|248|1|50|87085.50|0.01|0.02|R|F|1995-05-14|1995-04-28|1995-06-03|COLLECT COD|RAIL|telets. bold, silent ideas | +3628|30203|30204|2|28|31729.60|0.10|0.03|R|F|1995-04-24|1995-05-27|1995-05-13|TAKE BACK RETURN|SHIP|he blithely regular excuses. pe| +3628|618358|43383|3|48|61263.36|0.07|0.00|N|O|1995-06-30|1995-06-05|1995-07-07|COLLECT COD|FOB|ckly final platelets sleep blithely | +3628|728193|15736|4|46|56173.36|0.07|0.00|N|O|1995-06-30|1995-05-06|1995-07-10|TAKE BACK RETURN|REG AIR| theodolites. bold requests int| +3628|731202|43717|5|41|50559.97|0.09|0.07|N|O|1995-07-21|1995-06-07|1995-07-27|COLLECT COD|RAIL|o the dolphin| +3628|308456|33469|6|23|33682.12|0.03|0.02|N|O|1995-07-07|1995-05-13|1995-07-26|COLLECT COD|RAIL|e blithely | +3628|215157|40166|7|22|23587.08|0.01|0.02|R|F|1995-03-30|1995-05-02|1995-04-27|NONE|RAIL|ep furiously above the carefully iron| +3629|138996|38997|1|31|63084.69|0.00|0.01|N|O|1996-08-16|1996-07-02|1996-08-17|TAKE BACK RETURN|AIR|fully blithely | +3629|89940|2442|2|2|3859.88|0.06|0.04|N|O|1996-06-25|1996-06-20|1996-07-18|TAKE BACK RETURN|REG AIR|thy notornis sleep furiously a| +3629|609268|34293|3|46|54152.58|0.05|0.02|N|O|1996-07-07|1996-06-18|1996-07-10|TAKE BACK RETURN|FOB| slyly regular accounts: fi| +3629|958342|8343|4|46|64413.80|0.01|0.07|N|O|1996-07-31|1996-07-20|1996-08-02|DELIVER IN PERSON|AIR|unts. furiously bold | +3629|838880|26429|5|31|56384.04|0.01|0.05|N|O|1996-06-20|1996-06-26|1996-06-27|NONE|AIR|ackages haggle even accounts.| +3629|47005|47006|6|26|24752.00|0.05|0.05|N|O|1996-07-25|1996-07-14|1996-08-17|COLLECT COD|REG AIR|gle quickly slyly reg| +3630|334641|22160|1|22|36863.86|0.07|0.03|A|F|1995-05-27|1995-06-07|1995-05-29|DELIVER IN PERSON|SHIP|usly blithely even| +3630|296244|21255|2|34|42167.82|0.03|0.00|N|O|1995-08-18|1995-06-21|1995-09-13|NONE|MAIL| pinto bea| +3631|926508|1545|1|13|19947.98|0.00|0.04|N|O|1998-05-15|1998-07-28|1998-05-29|COLLECT COD|FOB|olites affix slyly careful| +3631|808250|20767|2|23|26638.83|0.09|0.03|N|O|1998-08-21|1998-07-31|1998-09-13|NONE|FOB|ously regular requests | +3631|244339|19348|3|3|3849.96|0.05|0.04|N|O|1998-07-02|1998-07-20|1998-07-21|TAKE BACK RETURN|SHIP|arefully along t| +3631|589554|39555|4|12|19722.36|0.04|0.02|N|O|1998-07-25|1998-08-04|1998-08-08|TAKE BACK RETURN|SHIP|inal accounts about the bold request| +3631|630666|5691|5|32|51092.16|0.09|0.00|N|O|1998-07-24|1998-06-23|1998-07-31|COLLECT COD|REG AIR|gs dazzle carefully final pac| +3631|595388|32922|6|3|4450.08|0.06|0.04|N|O|1998-05-25|1998-08-10|1998-05-28|COLLECT COD|MAIL|y busy deposits. regular packages across t| +3656|366325|28833|1|6|8347.86|0.07|0.02|A|F|1993-04-11|1993-03-18|1993-04-17|NONE|MAIL|s use quickly | +3656|818218|18219|2|45|51127.65|0.05|0.07|R|F|1993-05-05|1993-03-23|1993-05-31|COLLECT COD|AIR| pending dependencies. bold packages afte| +3656|781351|43867|3|8|11458.56|0.00|0.00|A|F|1993-05-19|1993-04-23|1993-06-12|TAKE BACK RETURN|REG AIR| pending instructions. fu| +3657|643866|43867|1|20|36196.60|0.03|0.02|N|O|1996-07-12|1996-07-28|1996-07-13|NONE|TRUCK|even deposits. fin| +3657|450698|25717|2|42|69244.14|0.06|0.01|N|O|1996-06-09|1996-08-04|1996-06-18|COLLECT COD|FOB|eep blithely car| +3657|876201|13753|3|43|50617.88|0.00|0.08|N|O|1996-05-22|1996-06-26|1996-06-01|DELIVER IN PERSON|TRUCK|ans according to the s| +3658|602277|2278|1|38|44811.12|0.07|0.08|A|F|1993-08-31|1993-07-30|1993-09-29|TAKE BACK RETURN|REG AIR| express sent| +3658|459150|46678|2|45|49910.85|0.10|0.03|A|F|1993-07-09|1993-08-16|1993-07-28|DELIVER IN PERSON|SHIP|s. fluffily special theodolites| +3658|930266|17821|3|49|63514.78|0.09|0.08|R|F|1993-07-05|1993-06-27|1993-07-20|NONE|FOB| carefully around the fluffily brave notor| +3658|977193|39713|4|49|62237.35|0.01|0.06|R|F|1993-08-28|1993-07-09|1993-09-12|TAKE BACK RETURN|FOB|ndencies. busily even somas sleep. quietl| +3658|667627|42654|5|31|49432.29|0.05|0.05|A|F|1993-08-05|1993-08-05|1993-08-25|NONE|REG AIR| against the regular, ironic asym| +3658|804166|16683|6|19|20332.28|0.02|0.01|R|F|1993-09-21|1993-06-29|1993-10-03|TAKE BACK RETURN|REG AIR|ironic packages. instructions hagg| +3659|667644|42671|1|21|33843.81|0.03|0.08|R|F|1992-09-08|1992-08-23|1992-10-03|NONE|TRUCK|the blithely pending dolphins nag carefully| +3659|80585|43087|2|45|70451.10|0.06|0.01|R|F|1992-09-08|1992-08-20|1992-09-23|DELIVER IN PERSON|TRUCK|lyly special pinto beans. slyly | +3659|388999|14014|3|34|70991.32|0.06|0.06|R|F|1992-10-25|1992-09-05|1992-10-31|NONE|RAIL|cuses. slyly special accounts wake fluffily| +3659|892018|17053|4|37|37368.89|0.04|0.03|R|F|1992-07-14|1992-09-06|1992-07-26|DELIVER IN PERSON|MAIL|s sleep slyly regular decoys. regul| +3659|144595|7098|5|49|80339.91|0.01|0.04|R|F|1992-08-12|1992-09-18|1992-08-14|NONE|FOB|ding to the regular r| +3659|195057|32567|6|31|35713.55|0.08|0.01|A|F|1992-08-22|1992-10-07|1992-08-30|NONE|MAIL| furiously. regular, r| +3660|713395|38424|1|35|49292.60|0.08|0.07|N|O|1995-09-18|1995-09-19|1995-09-26|NONE|RAIL| accounts nag slyly silent ideas: instruc| +3660|17992|17993|2|15|28649.85|0.08|0.06|N|O|1995-10-31|1995-08-28|1995-11-01|COLLECT COD|RAIL|refully unusual deposits cajo| +3660|381278|6293|3|50|67963.00|0.09|0.04|N|O|1995-07-19|1995-09-21|1995-08-13|NONE|REG AIR|ts against the thinly even ideas cajole a| +3660|131787|31788|4|11|20006.58|0.00|0.05|N|O|1995-10-20|1995-09-02|1995-11-18|COLLECT COD|SHIP|ithely ruthless requests along t| +3661|980238|17796|1|30|39545.70|0.07|0.02|R|F|1994-02-21|1994-03-25|1994-02-26|NONE|TRUCK|tructions h| +3661|859611|47163|2|40|62822.80|0.07|0.02|R|F|1994-05-16|1994-02-16|1994-05-20|DELIVER IN PERSON|MAIL|ld foxes are quickly across the theodo| +3661|477974|15502|3|32|62462.40|0.10|0.04|R|F|1994-04-28|1994-04-07|1994-05-19|COLLECT COD|FOB|leep fluffily according to the regular, r| +3661|305335|30348|4|34|45570.88|0.08|0.02|A|F|1994-03-20|1994-02-16|1994-04-17|NONE|FOB|urts haggle furiou| +3661|751850|39396|5|6|11410.92|0.00|0.00|R|F|1994-02-12|1994-04-12|1994-02-27|NONE|TRUCK|. stealthily pending foxes affix blithely s| +3662|938982|14019|1|23|46481.62|0.02|0.03|A|F|1995-05-11|1995-05-09|1995-06-08|DELIVER IN PERSON|RAIL| furiously express d| +3662|460771|10772|2|2|3463.50|0.05|0.05|N|O|1995-07-10|1995-05-17|1995-07-22|NONE|RAIL|ideas affix. | +3662|172371|34875|3|35|50517.95|0.04|0.03|N|O|1995-07-14|1995-06-01|1995-07-20|COLLECT COD|MAIL|s. theodolites are among the blithe| +3663|993006|43007|1|2|2197.92|0.10|0.04|N|O|1996-01-03|1996-01-19|1996-02-02|NONE|TRUCK|ly pending, unusual deposits| +3663|451151|26170|2|43|47391.59|0.03|0.00|N|O|1996-01-13|1996-02-08|1996-02-03|NONE|REG AIR|ages between the furiously exp| +3688|199796|12300|1|8|15166.32|0.06|0.02|R|F|1995-02-28|1995-03-03|1995-03-10|NONE|SHIP|according to the furiously | +3688|966037|3595|2|1|1102.99|0.08|0.07|R|F|1995-03-27|1995-03-18|1995-04-26|COLLECT COD|FOB|lyly final dependencies. blithely s| +3688|175157|164|3|7|8625.05|0.08|0.00|R|F|1995-02-11|1995-03-14|1995-02-18|NONE|RAIL|eans cajol| +3688|861750|36785|4|16|27387.36|0.00|0.01|A|F|1995-04-18|1995-02-05|1995-04-24|DELIVER IN PERSON|SHIP|ts nag furiously according| +3688|415457|40474|5|36|49407.48|0.01|0.01|A|F|1995-01-29|1995-03-02|1995-02-14|TAKE BACK RETURN|FOB|he ironic accounts integrate caref| +3688|571669|21670|6|43|74847.52|0.03|0.02|A|F|1995-03-13|1995-02-22|1995-03-20|COLLECT COD|AIR|final requests. furiously regul| +3689|109015|9016|1|32|32768.32|0.01|0.04|N|O|1997-05-26|1997-05-09|1997-06-10|TAKE BACK RETURN|TRUCK|ing to the thinly b| +3689|214364|26869|2|13|16618.55|0.05|0.03|N|O|1997-03-23|1997-05-15|1997-03-29|NONE|SHIP|uick theodolites. quickly regular depe| +3689|802886|27919|3|31|55454.04|0.04|0.00|N|O|1997-07-06|1997-06-03|1997-07-29|DELIVER IN PERSON|TRUCK|s. slyly sly requests nag furiously furious| +3689|93557|18560|4|21|32561.55|0.04|0.08|N|O|1997-05-27|1997-05-29|1997-06-13|COLLECT COD|RAIL|e furious, express somas | +3689|407064|19573|5|12|11652.48|0.06|0.04|N|O|1997-06-29|1997-06-12|1997-07-17|NONE|MAIL|ously special pinto bea| +3690|250380|381|1|17|22616.29|0.08|0.06|A|F|1993-08-08|1993-06-18|1993-08-14|TAKE BACK RETURN|FOB|lly quickly final foxes. depe| +3690|123931|11438|2|2|3909.86|0.09|0.08|R|F|1993-07-31|1993-07-07|1993-08-19|NONE|FOB|cording to | +3691|946965|9484|1|46|92548.32|0.06|0.00|N|O|1998-09-20|1998-10-30|1998-10-14|DELIVER IN PERSON|REG AIR|l excuses. carefully even theodolites| +3691|635834|23371|2|49|86720.20|0.05|0.06|N|O|1998-10-10|1998-10-01|1998-10-14|DELIVER IN PERSON|FOB|e above the quickly even | +3691|460777|23287|3|18|31279.50|0.06|0.00|N|O|1998-08-09|1998-10-17|1998-08-25|TAKE BACK RETURN|REG AIR| theodolites: multipliers | +3691|267907|5423|4|3|5624.67|0.02|0.08|N|O|1998-08-27|1998-09-30|1998-09-08|NONE|MAIL| along the theodolites. bold wa| +3692|623183|10720|1|4|4424.60|0.05|0.01|A|F|1992-11-27|1993-01-26|1992-11-29|TAKE BACK RETURN|RAIL| furiously. iro| +3692|827794|40311|2|11|18939.25|0.06|0.06|A|F|1993-02-06|1992-12-04|1993-03-01|TAKE BACK RETURN|AIR|riously regular requests. f| +3692|724781|24782|3|35|63201.25|0.03|0.05|R|F|1992-12-16|1992-12-20|1992-12-23|COLLECT COD|SHIP|quests after the blithely final pearls will| +3692|385720|35721|4|45|81256.95|0.10|0.02|A|F|1993-01-23|1992-12-27|1993-02-20|COLLECT COD|TRUCK| realms: pinto beans will| +3692|785645|10676|5|1|1730.61|0.05|0.01|R|F|1992-11-30|1993-01-25|1992-12-13|TAKE BACK RETURN|RAIL|ly carefully slow dependencies. even,| +3693|529232|4253|1|2|2522.42|0.06|0.01|R|F|1994-05-13|1994-06-12|1994-05-29|COLLECT COD|MAIL|xes x-ray furiously express gifts. sly| +3693|793776|18807|2|31|57961.94|0.09|0.01|R|F|1994-07-01|1994-07-20|1994-07-21|NONE|AIR|uriously special requests sleep| +3693|987790|12829|3|1|1877.75|0.08|0.00|A|F|1994-06-29|1994-06-03|1994-07-20|DELIVER IN PERSON|AIR|yly final pinto beans cajole blithely | +3693|781336|43852|4|11|15590.30|0.10|0.02|A|F|1994-08-20|1994-06-18|1994-08-29|TAKE BACK RETURN|FOB|nic dependencies sleep fluffily against th| +3693|912010|24529|5|9|9197.73|0.00|0.08|A|F|1994-05-07|1994-06-27|1994-05-27|COLLECT COD|REG AIR|longside of the pains. slyly final depen| +3693|135988|35989|6|38|76911.24|0.09|0.03|A|F|1994-05-07|1994-06-12|1994-05-10|DELIVER IN PERSON|AIR|ecial, ironic| +3694|382999|8014|1|25|52049.50|0.05|0.04|N|O|1998-05-24|1998-04-23|1998-06-19|NONE|FOB|ly special pac| +3695|284219|34220|1|23|27673.60|0.06|0.02|N|O|1997-07-23|1997-06-17|1997-07-25|TAKE BACK RETURN|TRUCK| silent accounts according to the c| +3695|865801|28319|2|38|67136.88|0.07|0.05|N|O|1997-06-27|1997-06-16|1997-07-19|NONE|MAIL|y unusual instru| +3695|512703|234|3|2|3431.36|0.09|0.02|N|O|1997-04-19|1997-05-27|1997-05-12|COLLECT COD|REG AIR|s cajole carefully quiet re| +3695|997840|10360|4|30|58134.00|0.05|0.04|N|O|1997-06-07|1997-05-12|1997-06-21|COLLECT COD|FOB|ual courts cajole slyly| +3695|692174|29714|5|8|9329.12|0.02|0.07|N|O|1997-04-26|1997-05-13|1997-05-05|DELIVER IN PERSON|SHIP|unts. warthogs cajole around the pending | +3695|365532|3054|6|3|4792.56|0.09|0.07|N|O|1997-06-11|1997-06-03|1997-07-07|COLLECT COD|MAIL|o the slyly specia| +3695|479854|42364|7|2|3667.66|0.06|0.08|N|O|1997-07-24|1997-06-08|1997-08-03|DELIVER IN PERSON|TRUCK|refully alo| +3720|902086|39641|1|50|54402.00|0.02|0.05|N|F|1995-06-14|1995-07-16|1995-06-19|DELIVER IN PERSON|RAIL|l accounts sleep furiously carefully sp| +3720|346284|21297|2|50|66513.50|0.03|0.02|N|O|1995-08-11|1995-07-16|1995-08-20|NONE|RAIL|even, regular| +3720|987400|12439|3|3|4462.08|0.03|0.01|N|O|1995-08-10|1995-07-06|1995-08-19|NONE|SHIP| among the furious| +3720|215975|28480|4|3|5672.88|0.01|0.08|N|O|1995-08-14|1995-06-16|1995-09-11|DELIVER IN PERSON|REG AIR|es. carefully r| +3720|886905|49423|5|3|5675.58|0.07|0.02|N|O|1995-07-05|1995-07-09|1995-07-07|TAKE BACK RETURN|MAIL| stealthy, unusual| +3720|210121|10122|6|25|25777.75|0.01|0.08|N|O|1995-07-10|1995-06-26|1995-08-07|NONE|RAIL| slyly bold package| +3720|496710|46711|7|35|59734.15|0.02|0.01|N|O|1995-06-29|1995-07-17|1995-07-01|COLLECT COD|SHIP|slyly regular deposits acr| +3721|201180|1181|1|16|17298.72|0.03|0.08|N|O|1996-06-23|1996-09-20|1996-07-10|DELIVER IN PERSON|AIR|symptotes are carefully bo| +3722|836268|36269|1|4|4816.88|0.02|0.07|A|F|1993-03-12|1993-05-17|1993-04-07|DELIVER IN PERSON|AIR|bout the slyly express decoy| +3723|331227|31228|1|10|12582.10|0.01|0.02|N|O|1995-08-31|1995-07-02|1995-09-04|NONE|AIR|ns. furiously unusual asymptotes are fluff| +3723|930601|30602|2|4|6526.24|0.10|0.00|N|O|1995-06-27|1995-07-26|1995-06-30|NONE|SHIP|yly according to the quickly bold sa| +3723|605604|30629|3|29|43777.53|0.04|0.07|N|O|1995-09-09|1995-08-01|1995-09-30|NONE|AIR|foxes cajole care| +3723|383348|33349|4|4|5725.32|0.07|0.00|R|F|1995-06-03|1995-08-19|1995-06-13|DELIVER IN PERSON|FOB|ructions. final, unu| +3723|927676|2713|5|33|56219.79|0.00|0.03|N|O|1995-08-16|1995-08-24|1995-08-29|DELIVER IN PERSON|SHIP|inal foxes. final r| +3724|769025|19026|1|41|44853.59|0.05|0.00|R|F|1993-08-01|1993-08-17|1993-08-05|TAKE BACK RETURN|FOB|ic theodolites. car| +3724|995195|45196|2|40|51606.00|0.01|0.07|R|F|1993-10-07|1993-09-08|1993-10-27|COLLECT COD|RAIL|n packages sleep fu| +3724|241801|41802|3|31|54026.49|0.06|0.01|A|F|1993-10-14|1993-09-10|1993-11-11|TAKE BACK RETURN|AIR|ts. sly deposits across the slyly expr| +3724|947816|35371|4|47|87597.19|0.07|0.03|A|F|1993-09-03|1993-08-13|1993-09-29|TAKE BACK RETURN|TRUCK|tructions. fluffily pending packages a| +3724|938102|13139|5|7|7980.42|0.08|0.07|A|F|1993-08-03|1993-09-12|1993-08-31|TAKE BACK RETURN|SHIP| dazzle above the slyly ironic id| +3725|56302|18804|1|24|30199.20|0.09|0.04|A|F|1993-11-13|1993-11-01|1993-12-08|TAKE BACK RETURN|TRUCK|the final accounts. regular, regular de| +3725|260285|10286|2|7|8716.89|0.01|0.04|A|F|1993-09-29|1993-11-15|1993-10-07|TAKE BACK RETURN|TRUCK|pending ideas. blith| +3725|601245|26270|3|7|8023.47|0.10|0.08|R|F|1993-11-12|1993-10-11|1993-11-19|COLLECT COD|RAIL|lithely pending| +3725|118906|31409|4|4|7699.60|0.07|0.07|R|F|1993-11-29|1993-10-11|1993-12-25|NONE|FOB|ously among the fluffily re| +3725|439176|14193|5|12|13381.80|0.02|0.01|A|F|1993-11-28|1993-11-26|1993-12-17|DELIVER IN PERSON|SHIP|y special foxes. care| +3725|224441|49450|6|25|34135.75|0.07|0.05|R|F|1993-09-21|1993-11-14|1993-10-18|DELIVER IN PERSON|REG AIR|ly regular deposits sleep slyly.| +3725|179635|17145|7|9|15431.67|0.06|0.08|A|F|1993-10-15|1993-10-01|1993-11-07|DELIVER IN PERSON|SHIP|yly silent courts boost slyly ironic idea| +3726|123145|35648|1|24|28035.36|0.05|0.06|A|F|1993-11-03|1993-10-04|1993-11-28|DELIVER IN PERSON|MAIL|dencies use furiousl| +3727|931608|31609|1|50|81978.00|0.09|0.03|N|O|1996-12-15|1997-02-13|1997-01-14|NONE|TRUCK|gular account| +3727|533298|20829|2|1|1331.27|0.05|0.02|N|O|1997-01-13|1996-12-27|1997-02-02|DELIVER IN PERSON|REG AIR|ular, silent packages are silently fu| +3727|123012|48017|3|25|25875.25|0.06|0.03|N|O|1997-02-23|1997-02-13|1997-03-17|DELIVER IN PERSON|MAIL|osits. bold platelets use evenly | +3727|457078|32097|4|21|21736.05|0.09|0.06|N|O|1997-01-30|1997-02-13|1997-02-03|TAKE BACK RETURN|SHIP|osits. regular pinto beans promise;| +3752|30829|43330|1|7|12318.74|0.06|0.04|R|F|1993-09-09|1993-10-04|1993-09-17|NONE|RAIL|ess instructio| +3752|132239|44742|2|41|52120.43|0.00|0.05|R|F|1993-10-01|1993-10-02|1993-10-21|NONE|FOB|, regular foxes. ru| +3753|451005|13515|1|7|6691.86|0.02|0.04|N|O|1997-04-23|1997-03-30|1997-05-07|DELIVER IN PERSON|FOB| against the dolphins| +3753|38991|1492|2|35|67549.65|0.03|0.05|N|O|1997-01-30|1997-03-03|1997-02-16|DELIVER IN PERSON|FOB| always bold requests cajole carefully | +3753|315571|15572|3|43|68222.08|0.00|0.02|N|O|1997-04-29|1997-03-03|1997-05-06|TAKE BACK RETURN|SHIP|ing to the slyly ironic account| +3753|797744|47745|4|43|79193.53|0.07|0.05|N|O|1997-02-13|1997-02-20|1997-02-27|DELIVER IN PERSON|MAIL|regular packages. ruthless instruc| +3753|669889|19890|5|11|20447.35|0.03|0.05|N|O|1997-01-16|1997-03-07|1997-02-05|DELIVER IN PERSON|RAIL|carefully blithely final pl| +3754|192950|30460|1|29|59245.55|0.03|0.01|N|O|1995-08-01|1995-08-04|1995-08-25|NONE|RAIL|. express, silent requ| +3754|902584|40139|2|41|65048.14|0.06|0.08|N|O|1995-08-22|1995-08-01|1995-09-07|NONE|MAIL|e express pinto beans. fluffily even pla| +3754|720045|45074|3|9|9585.09|0.04|0.05|N|O|1995-07-26|1995-08-28|1995-08-11|TAKE BACK RETURN|MAIL|ckages. dar| +3755|126449|26450|1|15|22131.60|0.07|0.05|R|F|1992-02-11|1992-04-07|1992-02-23|NONE|MAIL|ven deposits along the| +3755|211942|36951|2|2|3707.86|0.09|0.05|R|F|1992-02-08|1992-03-06|1992-02-25|TAKE BACK RETURN|TRUCK|ng the carefully fi| +3755|99755|49756|3|35|61416.25|0.07|0.07|R|F|1992-04-08|1992-04-15|1992-04-12|NONE|RAIL|ng the final, express dolphins. q| +3755|574191|36703|4|43|54402.31|0.04|0.00|R|F|1992-03-15|1992-04-02|1992-03-20|DELIVER IN PERSON|AIR|s nag blithely carefully unusual dolphins| +3755|426762|26763|5|15|25331.10|0.07|0.04|R|F|1992-05-17|1992-04-05|1992-06-07|TAKE BACK RETURN|MAIL| carefully. fina| +3755|580191|5214|6|9|11440.53|0.08|0.08|A|F|1992-05-12|1992-03-16|1992-06-10|NONE|MAIL|pecial requests haggle c| +3756|320819|8338|1|18|33116.40|0.02|0.08|R|F|1994-02-13|1994-02-11|1994-03-06|NONE|TRUCK|tructions after the regular acco| +3756|989350|1870|2|49|70526.19|0.00|0.00|R|F|1994-01-17|1994-02-14|1994-01-20|NONE|AIR|s grow carefu| +3756|997873|35431|3|3|5912.49|0.09|0.06|R|F|1994-01-07|1994-03-11|1994-02-06|COLLECT COD|FOB|usual instructions use? blithely| +3756|248598|11103|4|37|57223.46|0.09|0.08|R|F|1994-02-20|1994-03-09|1994-03-17|COLLECT COD|RAIL|bold sentiments grow sly| +3756|176117|38621|5|27|32213.97|0.04|0.01|A|F|1994-03-06|1994-03-14|1994-03-17|COLLECT COD|AIR|oss the blithely regular accounts.| +3756|995841|45842|6|16|30988.80|0.07|0.05|R|F|1994-04-14|1994-02-26|1994-05-08|DELIVER IN PERSON|SHIP|arefully. blithely express| +3756|91865|29369|7|30|55705.80|0.01|0.02|A|F|1994-03-29|1994-03-14|1994-04-21|DELIVER IN PERSON|RAIL|s nag quickly even deposits. regular, | +3757|965795|3353|1|7|13025.25|0.00|0.06|A|F|1995-04-11|1995-04-13|1995-04-29|TAKE BACK RETURN|MAIL| unusual accounts. quickly s| +3757|109711|22214|2|30|51621.30|0.09|0.06|R|F|1995-04-04|1995-03-22|1995-05-01|NONE|REG AIR|ress ideas unwind furiously ironic packa| +3757|900010|12529|3|21|21209.37|0.03|0.04|A|F|1995-03-30|1995-03-24|1995-04-03|NONE|TRUCK| even platelets. carefully| +3757|452816|15326|4|22|38913.38|0.01|0.07|A|F|1995-06-06|1995-05-02|1995-06-09|TAKE BACK RETURN|MAIL| about the even courts. ironic, regular i| +3757|467390|4918|5|50|67868.50|0.08|0.02|R|F|1995-05-16|1995-04-01|1995-06-02|NONE|RAIL|y bold packages. unusual, pending | +3757|422840|10365|6|29|51121.78|0.05|0.03|N|F|1995-05-30|1995-03-20|1995-06-25|DELIVER IN PERSON|FOB|es cajole. sly| +3757|664881|39908|7|21|38762.85|0.06|0.01|R|F|1995-02-24|1995-04-23|1995-03-06|NONE|FOB|lly after the reque| +3758|653248|40788|1|32|38438.72|0.04|0.04|A|F|1993-04-25|1993-05-25|1993-05-06|NONE|FOB|ckly express ins| +3758|131385|31386|2|40|56655.20|0.00|0.06|R|F|1993-03-26|1993-06-23|1993-04-16|TAKE BACK RETURN|AIR|s are furiously furiou| +3759|468257|5785|1|33|40432.59|0.04|0.07|R|F|1994-08-18|1994-07-20|1994-08-30|COLLECT COD|MAIL|round the ironic requests boost bu| +3759|980059|17617|2|2|2278.02|0.07|0.06|A|F|1994-06-27|1994-07-16|1994-07-08|NONE|AIR|tructions nag quickly along the boldly| +3759|844659|19692|3|44|70558.84|0.07|0.06|R|F|1994-07-21|1994-07-15|1994-08-16|COLLECT COD|AIR|ly special deposits ab| +3759|175848|25849|4|41|78877.44|0.04|0.06|R|F|1994-08-02|1994-09-11|1994-08-28|COLLECT COD|FOB|lly brave pinto beans above the pending| +3759|467066|29576|5|37|38222.48|0.03|0.01|R|F|1994-08-16|1994-08-31|1994-08-27|TAKE BACK RETURN|SHIP|ular instructions: fluffily special account| +3759|961529|49087|6|33|52485.84|0.07|0.03|A|F|1994-09-10|1994-08-11|1994-10-10|DELIVER IN PERSON|AIR|s sleep? special, pending requests | +3759|412475|37492|7|33|45785.85|0.07|0.05|A|F|1994-09-18|1994-07-18|1994-10-17|COLLECT COD|MAIL|ilently accounts. furious| +3784|458972|33991|1|2|3861.90|0.04|0.08|N|O|1997-04-27|1997-03-11|1997-05-13|DELIVER IN PERSON|SHIP|e quickly. bold multipliers are enticingl| +3784|941478|41479|2|49|74452.07|0.02|0.04|N|O|1997-01-10|1997-02-05|1997-01-29|DELIVER IN PERSON|AIR|eep blithely. fluffily furious instruct| +3785|353233|3234|1|41|52735.02|0.08|0.08|N|O|1998-04-06|1998-03-20|1998-04-25|DELIVER IN PERSON|REG AIR|e blithely ironic sentiments. th| +3785|778868|16414|2|45|87607.35|0.01|0.05|N|O|1998-03-07|1998-02-13|1998-03-29|DELIVER IN PERSON|MAIL|y carefully| +3785|425483|37992|3|8|11267.68|0.09|0.02|N|O|1998-01-29|1998-03-31|1998-02-17|DELIVER IN PERSON|REG AIR| bold, ironic pac| +3785|78643|28644|4|5|8108.20|0.04|0.00|N|O|1998-02-20|1998-03-21|1998-03-14|NONE|REG AIR|packages cajole qu| +3785|737190|37191|5|21|25770.36|0.04|0.06|N|O|1998-03-15|1998-03-22|1998-03-24|NONE|TRUCK|r foxes detect furiously furiously perman| +3785|951440|38998|6|31|46233.40|0.03|0.06|N|O|1998-02-02|1998-04-07|1998-03-04|NONE|AIR|haggle. bold gi| +3785|850264|12782|7|43|52211.46|0.04|0.07|N|O|1998-01-20|1998-04-04|1998-02-19|DELIVER IN PERSON|AIR|ng packages affix | +3786|378419|28420|1|25|37435.00|0.06|0.06|N|O|1996-10-10|1996-12-21|1996-10-23|NONE|REG AIR|ly across the furio| +3786|77856|2859|2|14|25673.90|0.07|0.05|N|O|1996-10-06|1996-11-03|1996-10-07|NONE|TRUCK|kly regular instructions. furiously unusua| +3786|514054|39075|3|7|7476.21|0.06|0.03|N|O|1996-12-08|1996-11-08|1996-12-28|COLLECT COD|RAIL| furiously ac| +3786|703030|40573|4|13|13429.00|0.08|0.07|N|O|1996-10-16|1996-11-19|1996-11-01|TAKE BACK RETURN|TRUCK|even accounts sleep. thin sau| +3786|810886|23403|5|32|57498.88|0.10|0.06|N|O|1996-12-09|1996-11-08|1996-12-25|DELIVER IN PERSON|SHIP| express waters | +3787|393283|18298|1|30|41288.10|0.10|0.01|A|F|1993-12-09|1993-11-28|1993-12-23|TAKE BACK RETURN|RAIL|deposits. blithely even deposits boost car| +3788|310016|22523|1|28|28728.00|0.03|0.06|R|F|1993-06-07|1993-05-01|1993-06-27|NONE|REG AIR|l excuses wake carefully s| +3788|425981|13506|2|46|87720.16|0.10|0.00|A|F|1993-05-13|1993-05-14|1993-06-04|TAKE BACK RETURN|MAIL| ironic depos| +3789|348492|48493|1|46|70862.08|0.01|0.02|A|F|1993-01-11|1992-12-11|1993-01-19|COLLECT COD|RAIL|deas grow along the | +3789|100207|12710|2|42|50702.40|0.03|0.04|R|F|1992-12-09|1992-11-20|1993-01-01|NONE|SHIP| asymptotes. qu| +3789|169644|19645|3|18|30845.52|0.03|0.04|A|F|1992-11-22|1992-11-08|1992-12-06|NONE|SHIP| courts wake quickly carefully | +3789|192466|17473|4|33|51429.18|0.08|0.04|A|F|1992-12-21|1992-12-08|1993-01-01|NONE|REG AIR|ternes. quickly final reque| +3789|767355|29871|5|14|19912.48|0.06|0.06|R|F|1992-11-07|1992-11-23|1992-11-19|NONE|RAIL|ake busily slyly even dolphins. blithely| +3789|924631|49668|6|34|56290.06|0.10|0.05|A|F|1993-01-11|1992-11-15|1993-01-16|NONE|SHIP|ously unusual dependencies s| +3789|260891|10892|7|26|48148.88|0.08|0.02|R|F|1993-01-18|1992-11-04|1993-02-05|TAKE BACK RETURN|FOB|c asymptotes poa| +3790|784886|9917|1|5|9854.25|0.09|0.07|R|F|1995-06-01|1995-05-08|1995-06-11|NONE|FOB|ter the deposi| +3790|562686|12687|2|23|40219.18|0.00|0.04|R|F|1995-04-24|1995-05-31|1995-05-06|COLLECT COD|RAIL|cajole special theodolit| +3790|61995|24497|3|20|39139.80|0.02|0.08|N|F|1995-05-31|1995-04-19|1995-06-18|NONE|AIR|oost quickly alongside of the| +3790|941500|29055|4|9|13873.14|0.01|0.00|A|F|1995-04-23|1995-05-18|1995-05-11|TAKE BACK RETURN|AIR|above the care| +3791|823286|35803|1|4|4836.96|0.06|0.07|R|F|1995-01-20|1995-01-12|1995-02-17|TAKE BACK RETURN|FOB|counts. even foxes across the furiously f| +3791|960416|10417|2|35|51672.95|0.06|0.01|A|F|1994-12-26|1995-01-20|1995-01-25|COLLECT COD|RAIL|quickly silent deposits are furiously| +3791|702318|39861|3|13|17163.64|0.00|0.08|R|F|1995-01-02|1995-02-20|1995-01-14|NONE|TRUCK|packages use carefully slyly even requests.| +3791|856521|44073|4|22|32504.56|0.01|0.08|A|F|1994-12-24|1995-01-25|1995-01-18|DELIVER IN PERSON|SHIP|ironic deposits. bold instructions use f| +3816|188686|38687|1|13|23070.84|0.01|0.07|A|F|1994-05-20|1994-04-07|1994-06-11|TAKE BACK RETURN|MAIL|lar accounts. blithely unusual r| +3816|229845|4854|2|1|1774.83|0.00|0.07|R|F|1994-04-27|1994-04-05|1994-05-12|NONE|AIR|quests against | +3816|992285|29843|3|44|60598.56|0.03|0.03|A|F|1994-05-29|1994-05-08|1994-06-20|TAKE BACK RETURN|FOB|ons integrate quickly about the furi| +3816|324841|24842|4|9|16792.47|0.02|0.05|R|F|1994-04-20|1994-05-06|1994-05-12|DELIVER IN PERSON|TRUCK| cajole furiously agai| +3816|599030|36564|5|23|25967.23|0.00|0.00|R|F|1994-05-01|1994-04-24|1994-05-13|NONE|MAIL|e carefully furiously final accounts. saut| +3817|446715|9224|1|49|81422.81|0.08|0.05|R|F|1993-08-18|1993-09-24|1993-09-13|NONE|TRUCK| carefully above the slyly| +3817|927975|3012|2|29|58084.97|0.08|0.04|A|F|1993-11-06|1993-10-07|1993-11-13|DELIVER IN PERSON|RAIL|lyly special deposits dazzle blithely i| +3817|471675|21676|3|35|57632.75|0.04|0.07|R|F|1993-10-25|1993-09-05|1993-11-14|TAKE BACK RETURN|FOB| deposits wake. fu| +3817|433021|8038|4|40|38160.00|0.00|0.05|R|F|1993-10-01|1993-10-17|1993-10-25|TAKE BACK RETURN|TRUCK|ly bold, regula| +3817|775915|946|5|30|59726.40|0.04|0.04|R|F|1993-09-14|1993-10-06|1993-09-16|TAKE BACK RETURN|MAIL|usual packages alongside o| +3818|14708|39709|1|10|16227.00|0.07|0.06|A|F|1992-06-18|1992-05-16|1992-07-06|COLLECT COD|RAIL|c hockey player| +3818|194473|19480|2|34|53293.98|0.10|0.07|A|F|1992-07-04|1992-05-05|1992-07-21|NONE|TRUCK|y ironic packages about the pending, spec| +3818|493238|43239|3|25|30780.25|0.07|0.02|R|F|1992-07-13|1992-05-05|1992-08-09|NONE|RAIL|sits lose furiously fluffi| +3818|848178|35727|4|6|6756.78|0.10|0.08|A|F|1992-07-24|1992-06-06|1992-08-13|TAKE BACK RETURN|RAIL|arly pending accounts. accounts alongside | +3819|782149|32150|1|42|51706.62|0.01|0.01|N|O|1995-07-25|1995-08-28|1995-08-14|DELIVER IN PERSON|RAIL|slyly pending packages. carefully ironi| +3819|565502|3036|2|40|62699.20|0.07|0.08|N|O|1995-09-15|1995-08-27|1995-10-12|DELIVER IN PERSON|MAIL|al packages. slyly special accou| +3820|922603|47640|1|15|24383.40|0.01|0.07|A|F|1992-04-26|1992-05-09|1992-05-01|DELIVER IN PERSON|RAIL|ously carefully ironic theodolites. bol| +3821|773261|48292|1|29|38692.67|0.00|0.08|N|O|1997-02-14|1997-02-21|1997-02-28|TAKE BACK RETURN|SHIP|press asymptotes ought to sleep carefully | +3821|187591|25101|2|20|33571.80|0.01|0.02|N|O|1997-04-02|1997-02-01|1997-04-19|COLLECT COD|MAIL|efully across the even depo| +3821|837814|37815|3|40|70070.80|0.06|0.07|N|O|1997-03-21|1997-02-02|1997-03-28|DELIVER IN PERSON|REG AIR| shall have to snooze furio| +3821|137846|37847|4|23|43328.32|0.09|0.04|N|O|1996-12-18|1997-03-06|1996-12-30|TAKE BACK RETURN|TRUCK|ts between the stealthy courts | +3821|772840|47871|5|38|72686.78|0.03|0.04|N|O|1997-02-02|1997-02-01|1997-02-16|TAKE BACK RETURN|FOB|ng asymptotes sleep carefully. slyly e| +3822|372716|35224|1|36|64393.20|0.03|0.04|N|O|1997-12-12|1998-01-16|1998-01-05|COLLECT COD|MAIL|y final asymptotes. carefully pend| +3822|222254|9767|2|46|54107.04|0.10|0.07|N|O|1997-12-25|1998-03-02|1998-01-15|DELIVER IN PERSON|SHIP|unts doze; blithely sp| +3823|565972|28484|1|39|79480.05|0.06|0.01|N|O|1997-04-30|1997-07-02|1997-05-29|DELIVER IN PERSON|AIR|gle carefully| +3823|278392|40898|2|33|45222.54|0.08|0.03|N|O|1997-07-22|1997-06-24|1997-07-23|DELIVER IN PERSON|REG AIR| epitaphs use after the unusu| +3848|913572|1127|1|49|77690.97|0.08|0.01|N|O|1998-04-19|1998-05-28|1998-04-30|TAKE BACK RETURN|FOB|xes are fu| +3848|402285|14794|2|30|35617.80|0.08|0.03|N|O|1998-05-21|1998-05-22|1998-05-27|NONE|TRUCK|yly regular accounts cajole along the b| +3848|197273|9777|3|30|41108.10|0.07|0.00|N|O|1998-07-13|1998-06-28|1998-07-27|NONE|RAIL|iously silent packages. stealthy| +3849|485163|35164|1|19|21814.66|0.07|0.03|N|O|1998-04-20|1998-04-17|1998-05-10|COLLECT COD|FOB|ve pinto beans are about t| +3849|129849|42352|2|34|63880.56|0.07|0.04|N|O|1998-04-27|1998-03-28|1998-05-12|NONE|RAIL|usly special packages. furiously ironic d| +3849|356654|31669|3|11|18817.04|0.08|0.05|N|O|1998-02-03|1998-03-09|1998-03-05|NONE|REG AIR| requests cajole furi| +3849|283687|33688|4|50|83533.50|0.01|0.03|N|O|1998-02-03|1998-04-22|1998-02-09|TAKE BACK RETURN|REG AIR| regular, b| +3849|926123|1160|5|37|42515.96|0.07|0.03|N|O|1998-03-31|1998-03-18|1998-04-14|TAKE BACK RETURN|AIR|to the furiously | +3849|342659|5166|6|13|22121.32|0.04|0.06|N|O|1998-04-22|1998-03-19|1998-05-08|COLLECT COD|RAIL|the regular, ironic accounts wak| +3849|62958|37961|7|38|72996.10|0.09|0.03|N|O|1998-04-14|1998-04-19|1998-05-09|COLLECT COD|SHIP|ers against the c| +3850|120335|32838|1|6|8131.98|0.07|0.05|N|O|1995-11-15|1995-11-30|1995-12-04|NONE|FOB| use furiously-- slyly e| +3850|455830|30849|2|41|73218.21|0.00|0.06|N|O|1996-01-23|1995-11-08|1996-02-16|NONE|TRUCK|requests do| +3850|130312|42815|3|39|52350.09|0.03|0.07|N|O|1995-11-24|1995-11-07|1995-12-13|DELIVER IN PERSON|FOB|y special accounts: regular foxes| +3851|255390|17896|1|18|24216.84|0.07|0.08|N|O|1998-07-16|1998-09-05|1998-07-24|TAKE BACK RETURN|FOB|ntly special packages wake. carefully final| +3852|339500|27019|1|11|16934.39|0.00|0.03|N|O|1998-07-04|1998-04-13|1998-07-30|TAKE BACK RETURN|AIR|riously even| +3853|406240|6241|1|25|28655.50|0.05|0.00|N|O|1997-01-20|1997-02-20|1997-02-17|DELIVER IN PERSON|SHIP|al ideas according to the f| +3853|660538|35565|2|37|55444.50|0.03|0.06|N|O|1997-03-31|1997-03-27|1997-04-22|DELIVER IN PERSON|AIR|y about the furiously final foxes. even e| +3853|660067|10068|3|19|19513.57|0.06|0.06|N|O|1997-01-30|1997-02-20|1997-02-27|DELIVER IN PERSON|RAIL|nic accounts about | +3853|742623|30166|4|36|59961.24|0.06|0.07|N|O|1997-04-01|1997-03-22|1997-04-22|COLLECT COD|FOB|nic dolphins? fluffily final pinto be| +3853|249239|49240|5|22|26140.84|0.09|0.05|N|O|1997-02-23|1997-03-01|1997-03-04|COLLECT COD|MAIL| silently pendin| +3854|454647|4648|1|20|32032.40|0.06|0.00|R|F|1993-05-01|1993-05-03|1993-05-12|NONE|REG AIR|ke. fluffily express courts integrate | +3854|240267|40268|2|18|21730.50|0.00|0.05|R|F|1993-05-02|1993-05-14|1993-05-26|COLLECT COD|REG AIR| express warhorses cajole fluffily--| +3854|165854|3364|3|14|26877.90|0.04|0.00|A|F|1993-06-18|1993-05-23|1993-06-25|COLLECT COD|REG AIR|quests sle| +3854|500276|12787|4|1|1276.25|0.06|0.00|R|F|1993-05-20|1993-06-06|1993-06-08|NONE|MAIL|ts against the regular pinto| +3854|122164|22165|5|34|40329.44|0.04|0.01|A|F|1993-04-30|1993-05-08|1993-05-08|TAKE BACK RETURN|AIR|totes. deposits cajole ca| +3855|493438|18457|1|43|61550.63|0.03|0.08|N|O|1998-06-13|1998-07-25|1998-06-29|NONE|AIR|express theodolites haggle blith| +3880|916692|29211|1|43|73471.95|0.03|0.07|R|F|1993-11-24|1994-02-05|1993-12-03|DELIVER IN PERSON|SHIP|le bold, unusual instruc| +3880|836056|11089|2|31|30752.31|0.04|0.01|A|F|1994-02-08|1994-01-30|1994-02-25|NONE|TRUCK|y above the ironic, special as| +3880|577313|2336|3|5|6951.45|0.02|0.05|A|F|1994-01-27|1994-01-27|1994-02-19|TAKE BACK RETURN|FOB|usly among the slyly | +3880|890899|40900|4|16|30237.60|0.08|0.02|A|F|1994-02-01|1993-12-27|1994-02-16|NONE|TRUCK|e blithely even packages thras| +3880|326849|1862|5|25|46895.75|0.06|0.07|A|F|1994-03-12|1994-02-04|1994-03-14|COLLECT COD|RAIL|ongside of t| +3880|342632|17645|6|26|43540.12|0.00|0.04|A|F|1994-03-10|1993-12-28|1994-03-29|DELIVER IN PERSON|REG AIR|g packages are f| +3880|608019|33044|7|8|7415.84|0.07|0.02|R|F|1993-12-22|1994-01-10|1994-01-01|NONE|REG AIR| final platelets between the pinto bea| +3881|960248|22768|1|45|58869.00|0.10|0.08|N|O|1995-08-14|1995-09-18|1995-09-03|COLLECT COD|SHIP|ts haggle slyly slyly final foxe| +3882|434616|47125|1|15|23258.85|0.00|0.08|N|O|1997-10-06|1997-09-01|1997-10-27|COLLECT COD|REG AIR|ress pinto beans. slyly even pa| +3883|396961|34483|1|5|10289.75|0.00|0.03|N|O|1998-06-04|1998-04-19|1998-06-09|COLLECT COD|RAIL|rts might nag sometimes along the| +3883|719849|7392|2|39|72883.59|0.06|0.01|N|O|1998-05-02|1998-05-06|1998-05-30|TAKE BACK RETURN|SHIP|ecial requests| +3883|495954|45955|3|7|13649.51|0.02|0.00|N|O|1998-04-06|1998-05-22|1998-04-23|COLLECT COD|REG AIR|equests. pending requests slee| +3883|496095|46096|4|26|28367.82|0.10|0.05|N|O|1998-05-14|1998-05-13|1998-05-20|TAKE BACK RETURN|MAIL|ts. dugouts haggle fu| +3883|859259|34294|5|36|43855.56|0.10|0.06|N|O|1998-04-24|1998-04-20|1998-05-19|TAKE BACK RETURN|FOB|gle. even, unus| +3883|562851|385|6|2|3827.66|0.06|0.02|N|O|1998-04-08|1998-04-19|1998-04-21|DELIVER IN PERSON|AIR|s integrate furiously unusual | +3883|834283|46800|7|48|58427.52|0.01|0.05|N|O|1998-03-25|1998-04-18|1998-04-03|TAKE BACK RETURN|AIR|nic requests. bold deposits ac| +3884|782967|45483|1|47|96346.71|0.00|0.08|R|F|1994-02-13|1994-04-13|1994-02-20|TAKE BACK RETURN|REG AIR|unusual dep| +3884|317536|30043|2|29|45052.08|0.05|0.04|A|F|1994-04-16|1994-04-23|1994-05-05|TAKE BACK RETURN|MAIL|fully express asymptotes wake afte| +3884|824889|24890|3|40|72553.60|0.10|0.07|R|F|1994-03-21|1994-04-15|1994-04-20|COLLECT COD|AIR|gainst the busily express foxes cajo| +3885|946582|9101|1|40|65141.60|0.07|0.00|R|F|1994-09-25|1994-10-14|1994-10-21|NONE|SHIP|e quickly ruthless deposits. bl| +3885|200712|13217|2|34|54831.80|0.10|0.02|A|F|1994-10-17|1994-11-11|1994-11-10|DELIVER IN PERSON|SHIP|le. slyly pending warthogs shal| +3885|356005|43527|3|5|5304.95|0.02|0.02|A|F|1994-08-20|1994-11-06|1994-08-30|NONE|RAIL| deposits. blithely regular pi| +3886|846125|33674|1|16|17137.28|0.03|0.01|N|O|1998-02-03|1998-03-02|1998-02-14|NONE|AIR|ously special reque| +3886|818455|6004|2|46|63176.86|0.10|0.03|N|O|1998-04-19|1998-03-14|1998-05-18|DELIVER IN PERSON|REG AIR|riously even requests cajole fluffily caref| +3886|765232|2778|3|39|50590.80|0.05|0.08|N|O|1998-04-03|1998-04-18|1998-04-04|TAKE BACK RETURN|SHIP|ffily furio| +3886|237733|238|4|46|76853.12|0.10|0.04|N|O|1998-02-15|1998-03-20|1998-03-08|COLLECT COD|FOB|ng deposits alongside | +3887|95360|32864|1|29|39305.44|0.05|0.07|A|F|1994-03-17|1994-01-27|1994-04-07|NONE|REG AIR|tect quick| +3887|712824|25339|2|16|29388.64|0.04|0.01|R|F|1994-01-11|1994-02-16|1994-01-23|NONE|TRUCK|ly pending foxes kindle quickly even de| +3887|419623|32132|3|14|21596.40|0.10|0.07|R|F|1994-02-25|1994-01-10|1994-03-05|NONE|RAIL|. pinto bea| +3887|596370|46371|4|45|65985.75|0.10|0.02|R|F|1994-03-20|1994-01-06|1994-03-26|DELIVER IN PERSON|SHIP|s. furiously regular asymp| +3887|186172|48676|5|41|51584.97|0.00|0.00|R|F|1994-03-01|1994-01-31|1994-03-26|DELIVER IN PERSON|FOB|l pinto bean| +3912|385304|22826|1|23|31953.67|0.01|0.00|R|F|1993-04-08|1993-04-13|1993-04-28|NONE|SHIP|along the fina| +3912|804288|41837|2|35|41728.40|0.05|0.04|R|F|1993-02-17|1993-03-02|1993-02-18|NONE|FOB|ly. unusual excuses are final, pendin| +3912|666738|41765|3|1|1704.70|0.08|0.03|A|F|1993-05-03|1993-03-01|1993-05-24|COLLECT COD|FOB|ously pending platelets. ironic, final| +3912|855707|5708|4|13|21614.58|0.08|0.01|R|F|1993-05-20|1993-04-22|1993-06-16|DELIVER IN PERSON|TRUCK|ven, regular foxes| +3913|572335|9869|1|43|60514.33|0.00|0.08|R|F|1993-07-07|1993-09-11|1993-07-31|COLLECT COD|SHIP| after the bold requests| +3913|218621|43630|2|39|60044.79|0.08|0.03|A|F|1993-10-07|1993-08-11|1993-10-13|COLLECT COD|TRUCK|tes are. unusua| +3913|363090|25598|3|33|38051.64|0.08|0.04|A|F|1993-07-01|1993-08-07|1993-07-31|NONE|MAIL|ackages mold| +3913|439462|14479|4|16|22423.04|0.03|0.00|A|F|1993-09-03|1993-07-31|1993-09-20|TAKE BACK RETURN|TRUCK|ructions according to the| +3913|24816|12317|5|47|81818.07|0.03|0.04|A|F|1993-08-02|1993-09-10|1993-08-25|COLLECT COD|REG AIR|eans affix carefully accord| +3913|65833|40836|6|6|10792.98|0.07|0.08|A|F|1993-10-13|1993-08-26|1993-10-28|TAKE BACK RETURN|SHIP|ily regular decoys wake ruthless| +3913|447961|10470|7|13|24816.22|0.08|0.02|A|F|1993-09-28|1993-08-05|1993-10-17|NONE|REG AIR| regular pinto beans. asymptotes are| +3914|877632|27633|1|45|72431.55|0.08|0.06|A|F|1993-11-07|1993-10-17|1993-11-25|COLLECT COD|FOB|efully final packages boost fluffily| +3914|349128|49129|2|47|55324.17|0.00|0.01|R|F|1993-11-10|1993-10-16|1993-12-04|NONE|REG AIR|nic epitaphs: furiously regular| +3914|781894|19440|3|4|7903.44|0.09|0.04|R|F|1993-11-16|1993-09-15|1993-11-24|NONE|SHIP|usual instructions are. slowly regular | +3914|283648|33649|4|15|24474.45|0.06|0.05|R|F|1993-11-07|1993-10-22|1993-11-11|DELIVER IN PERSON|TRUCK|wake slyly according| +3914|271173|21174|5|37|42333.92|0.05|0.03|A|F|1993-11-14|1993-11-06|1993-12-11|NONE|RAIL| unusual accounts are bli| +3915|984045|34046|1|35|39515.00|0.05|0.04|R|F|1994-12-14|1994-12-18|1995-01-09|COLLECT COD|FOB|ing to the| +3915|829567|17116|2|19|28433.88|0.07|0.07|A|F|1995-01-26|1994-12-21|1995-02-11|DELIVER IN PERSON|AIR|final requests after the accounts| +3915|530804|43315|3|30|55043.40|0.00|0.08|A|F|1994-12-09|1994-12-29|1995-01-06|DELIVER IN PERSON|AIR| of the slyly | +3916|884036|21588|1|42|42839.58|0.01|0.05|N|O|1997-04-06|1997-04-27|1997-04-16|DELIVER IN PERSON|RAIL|unts. blithely unusual ideas hinder arou| +3917|116787|16788|1|46|82973.88|0.01|0.06|N|O|1997-08-18|1997-07-12|1997-09-16|TAKE BACK RETURN|AIR|ffily special courts. i| +3918|930007|30008|1|21|21776.16|0.09|0.01|R|F|1995-04-27|1995-04-12|1995-05-25|TAKE BACK RETURN|FOB| accounts main| +3918|625786|811|2|20|34235.00|0.02|0.04|R|F|1995-03-10|1995-03-24|1995-03-15|DELIVER IN PERSON|REG AIR|e around the quietly ironic accounts. bold | +3918|578184|40696|3|48|60583.68|0.05|0.03|R|F|1995-03-19|1995-02-27|1995-03-22|TAKE BACK RETURN|TRUCK|ss sheaves | +3918|534263|34264|4|39|50592.36|0.10|0.05|R|F|1995-02-20|1995-03-27|1995-02-25|DELIVER IN PERSON|SHIP|ions. fluffily silent deposits wake| +3919|911696|24215|1|28|47814.20|0.07|0.08|R|F|1992-09-01|1992-08-12|1992-09-11|NONE|REG AIR|r pinto beans na| +3919|861493|11494|2|43|62541.35|0.04|0.04|A|F|1992-07-08|1992-09-25|1992-07-23|NONE|RAIL| carefully final instruction| +3919|98024|23027|3|40|40880.80|0.03|0.08|R|F|1992-08-08|1992-09-23|1992-08-13|TAKE BACK RETURN|MAIL| slyly final packages. e| +3919|487764|274|4|12|21020.88|0.08|0.04|R|F|1992-10-15|1992-08-07|1992-11-09|DELIVER IN PERSON|RAIL|olites detect around the ev| +3919|840950|3467|5|24|45381.84|0.07|0.00|A|F|1992-09-28|1992-08-02|1992-10-05|TAKE BACK RETURN|AIR| ironic packages are furi| +3944|529830|29831|1|5|9299.05|0.07|0.07|N|O|1998-02-22|1998-01-18|1998-03-19|TAKE BACK RETURN|MAIL|nal, ironic dinos. furiously silent| +3945|198578|48579|1|14|23471.98|0.07|0.06|N|O|1997-12-21|1997-12-26|1998-01-06|DELIVER IN PERSON|AIR|st the careful| +3945|484671|34672|2|9|14900.85|0.02|0.08|N|O|1997-11-22|1997-12-22|1997-12-08|COLLECT COD|TRUCK|egular ideas sleep | +3945|861258|36293|3|44|53645.24|0.07|0.04|N|O|1997-11-05|1997-11-12|1997-11-07|DELIVER IN PERSON|SHIP|nal requests. carefu| +3945|157330|7331|4|30|41619.90|0.03|0.02|N|O|1997-12-01|1997-11-26|1997-12-05|COLLECT COD|AIR|rate pending,| +3945|238367|25880|5|10|13053.50|0.09|0.05|N|O|1997-11-01|1997-12-01|1997-11-19|DELIVER IN PERSON|AIR| quiet patterns. blithely iron| +3945|227145|27146|6|23|24658.99|0.05|0.06|N|O|1997-12-08|1997-12-24|1998-01-02|DELIVER IN PERSON|REG AIR|egular excuses. unusual foxes sleep caref| +3946|806765|44314|1|3|5015.16|0.02|0.03|N|O|1998-07-08|1998-06-09|1998-07-16|NONE|AIR|e slyly pendin| +3946|295126|32642|2|1|1121.11|0.06|0.03|N|O|1998-07-30|1998-06-07|1998-08-24|DELIVER IN PERSON|MAIL|ironic, final accounts sleep. slyly pendin| +3946|167000|4510|3|4|4268.00|0.00|0.03|N|O|1998-05-16|1998-06-13|1998-05-31|DELIVER IN PERSON|SHIP|use quickly ac| +3947|108865|33870|1|42|78702.12|0.01|0.06|N|F|1995-06-12|1995-04-08|1995-07-09|NONE|MAIL|gle. furiously | +3947|682330|7357|2|36|47242.80|0.07|0.04|N|O|1995-06-19|1995-05-01|1995-06-25|DELIVER IN PERSON|AIR| pending, final packages. | +3947|908439|20958|3|3|4342.17|0.10|0.03|A|F|1995-04-15|1995-04-10|1995-05-04|TAKE BACK RETURN|TRUCK|f the pending, ironic pa| +3947|126089|38592|4|43|47948.44|0.10|0.07|R|F|1995-03-29|1995-04-13|1995-04-22|DELIVER IN PERSON|TRUCK| quickly even| +3947|164483|1993|5|12|18569.76|0.06|0.01|R|F|1995-05-10|1995-05-15|1995-05-29|DELIVER IN PERSON|RAIL|taphs nag furiously. ironic accounts af| +3948|93874|18877|1|44|82186.28|0.07|0.05|R|F|1994-01-18|1994-02-07|1994-02-03|NONE|REG AIR|the platelets-- idly silent co| +3948|737541|37542|2|43|67875.93|0.08|0.06|A|F|1994-01-01|1994-03-24|1994-01-29|COLLECT COD|REG AIR|ly even depths print furiously. furiou| +3948|844696|32245|3|45|73829.25|0.10|0.03|A|F|1994-04-27|1994-01-30|1994-05-16|TAKE BACK RETURN|TRUCK|unts. packages caj| +3948|804736|42285|4|39|63986.91|0.06|0.07|A|F|1994-02-07|1994-01-29|1994-02-23|COLLECT COD|TRUCK| quickly express pack| +3948|186032|11039|5|19|21242.57|0.06|0.01|R|F|1994-02-20|1994-03-26|1994-03-01|DELIVER IN PERSON|FOB| quickly slyl| +3948|627194|2219|6|4|4484.64|0.08|0.04|R|F|1994-03-26|1994-03-09|1994-04-07|COLLECT COD|RAIL|packages wake across the final req| +3949|970335|32855|1|50|70264.50|0.08|0.06|N|O|1995-11-08|1995-12-14|1995-11-09|NONE|RAIL| theodolites wake about the slyly bold r| +3949|406895|6896|2|36|64867.32|0.07|0.03|N|O|1995-12-11|1995-12-07|1996-01-08|DELIVER IN PERSON|MAIL|ly across the deposits. furi| +3949|676028|1055|3|13|13051.87|0.07|0.02|N|O|1996-02-05|1995-12-28|1996-02-27|DELIVER IN PERSON|RAIL|ongside of the| +3949|992274|29832|4|46|62846.58|0.05|0.07|N|O|1995-12-24|1995-11-28|1996-01-02|COLLECT COD|AIR|old pinto beans use fluffily even req| +3949|143927|18932|5|26|51243.92|0.02|0.07|N|O|1995-12-27|1996-01-01|1996-01-24|COLLECT COD|SHIP|odolites. fluffily regular deposit| +3949|971519|9077|6|4|6361.88|0.01|0.02|N|O|1996-01-14|1995-11-28|1996-01-30|NONE|AIR|somas wake fluffily.| +3950|55811|18313|1|44|77739.64|0.01|0.05|A|F|1994-03-21|1994-02-04|1994-04-20|TAKE BACK RETURN|REG AIR|e express, bold accounts. silent, specia| +3950|999255|24294|2|4|5416.84|0.03|0.08|A|F|1994-04-29|1994-03-18|1994-04-30|COLLECT COD|REG AIR|ly ironic | +3950|467424|42443|3|33|45916.20|0.06|0.07|R|F|1994-02-24|1994-02-23|1994-03-10|COLLECT COD|SHIP|phins nag spe| +3950|988327|25885|4|41|58026.48|0.07|0.03|R|F|1994-02-28|1994-02-25|1994-03-22|COLLECT COD|SHIP|press excuses are among th| +3950|796226|46227|5|3|3966.57|0.08|0.07|A|F|1994-01-23|1994-02-02|1994-02-19|TAKE BACK RETURN|REG AIR|le. blithely r| +3951|743035|5550|1|10|10780.00|0.04|0.05|N|O|1997-12-14|1997-12-22|1998-01-09|NONE|MAIL|. slyly un| +3951|185852|35853|2|40|77514.00|0.01|0.02|N|O|1998-01-27|1997-12-19|1998-02-03|NONE|FOB|ts. silent theodolites doze | +3951|599532|12044|3|50|81575.50|0.02|0.01|N|O|1997-12-31|1998-01-21|1998-01-18|DELIVER IN PERSON|AIR|times. furiously thin ideas| +3951|324331|36838|4|24|32527.68|0.05|0.01|N|O|1997-12-09|1998-01-08|1997-12-15|TAKE BACK RETURN|TRUCK|ing packages are thinly above the special| +3951|29022|41523|5|50|47551.00|0.04|0.02|N|O|1998-01-18|1997-12-23|1998-01-26|DELIVER IN PERSON|RAIL|deas haggle blithe| +3976|755206|30237|1|19|23962.23|0.08|0.06|A|F|1993-09-07|1993-06-30|1993-09-15|DELIVER IN PERSON|REG AIR| busily final pi| +3976|745966|33509|2|16|32190.88|0.02|0.01|A|F|1993-09-04|1993-07-31|1993-09-22|DELIVER IN PERSON|TRUCK|mpress exp| +3976|440340|27865|3|39|49932.48|0.01|0.04|A|F|1993-07-06|1993-06-18|1993-07-18|NONE|AIR|ges. furiously final d| +3976|778508|28509|4|27|42834.69|0.08|0.05|A|F|1993-06-06|1993-07-05|1993-06-16|COLLECT COD|REG AIR|haggle daringly about the q| +3976|370244|45259|5|5|6571.15|0.05|0.02|R|F|1993-06-18|1993-06-21|1993-06-20|NONE|AIR|dolites; instr| +3976|686570|36571|6|36|56035.44|0.00|0.04|A|F|1993-05-29|1993-06-25|1993-06-12|DELIVER IN PERSON|SHIP|y according to t| +3976|166224|41231|7|26|33545.72|0.03|0.05|R|F|1993-07-08|1993-07-10|1993-07-30|NONE|MAIL|al requests. blith| +3977|720322|20323|1|1|1342.29|0.07|0.06|N|O|1998-07-27|1998-06-02|1998-08-16|COLLECT COD|SHIP|ts. blithely special re| +3977|436980|11997|2|7|13418.72|0.00|0.07|N|O|1998-07-08|1998-06-21|1998-07-17|DELIVER IN PERSON|SHIP|to beans hang. fl| +3978|137378|49881|1|7|9907.59|0.06|0.00|N|O|1996-05-14|1996-06-30|1996-05-29|COLLECT COD|AIR|uctions. regular gifts | +3978|909859|47414|2|7|13081.67|0.00|0.07|N|O|1996-05-27|1996-05-23|1996-06-07|COLLECT COD|REG AIR|y among the furiously final packages. p| +3978|997892|22931|3|21|41786.85|0.04|0.06|N|O|1996-04-26|1996-06-28|1996-04-27|COLLECT COD|SHIP|he never express deposits. furious| +3978|568970|43993|4|20|40779.00|0.05|0.00|N|O|1996-06-14|1996-06-12|1996-07-03|NONE|TRUCK|nic requests. slyly fina| +3978|675475|37989|5|12|17405.28|0.05|0.00|N|O|1996-07-29|1996-05-24|1996-08-27|TAKE BACK RETURN|MAIL| haggle carefully ironic foxes.| +3978|699705|49706|6|13|22160.71|0.07|0.08|N|O|1996-06-13|1996-05-30|1996-06-15|TAKE BACK RETURN|RAIL|s cajole furiously bold, si| +3979|792659|17690|1|3|5254.86|0.10|0.07|R|F|1994-02-07|1994-03-26|1994-03-08|TAKE BACK RETURN|REG AIR|e carefully.| +3979|204003|16508|2|22|19953.78|0.05|0.08|A|F|1994-05-08|1994-04-29|1994-05-14|COLLECT COD|RAIL|es wake. blithely unusual packages det| +3979|671374|8914|3|7|9417.38|0.08|0.01|A|F|1994-04-11|1994-04-15|1994-04-23|NONE|FOB|fluffily fi| +3979|780001|42517|4|38|41076.86|0.03|0.05|A|F|1994-03-28|1994-03-27|1994-04-26|TAKE BACK RETURN|RAIL|ong the slyly unusual requests. slyl| +3980|962439|24959|1|21|31529.19|0.09|0.03|R|F|1993-05-09|1993-04-30|1993-05-18|COLLECT COD|RAIL| furiously reg| +3981|587920|432|1|26|52205.40|0.03|0.06|A|F|1994-09-21|1994-09-16|1994-10-13|NONE|MAIL|jole carefully? slyly final accounts | +3981|167052|29556|2|39|43642.95|0.02|0.04|R|F|1994-10-16|1994-08-25|1994-10-21|DELIVER IN PERSON|SHIP|e of the permanent, final exc| +3981|633023|45536|3|34|32503.66|0.03|0.08|R|F|1994-07-31|1994-08-04|1994-08-21|NONE|REG AIR|usly after the f| +3982|288483|38484|1|23|33843.81|0.08|0.05|N|O|1995-07-12|1995-08-29|1995-08-05|COLLECT COD|RAIL|uctions-- blithely regular dugouts are sly| +3983|866529|29047|1|33|49350.84|0.05|0.05|R|F|1993-06-08|1993-08-17|1993-06-19|NONE|MAIL| deposits wake blithely along t| +3983|738737|1252|2|23|40841.10|0.10|0.05|R|F|1993-07-25|1993-08-20|1993-08-07|DELIVER IN PERSON|MAIL|posits sleep qui| +4008|516905|29416|1|9|17296.92|0.08|0.01|A|F|1994-08-04|1994-05-24|1994-08-17|COLLECT COD|TRUCK|final requests sublate fu| +4008|614638|39663|2|7|10868.20|0.01|0.02|R|F|1994-08-03|1994-07-13|1994-08-13|COLLECT COD|MAIL| express theodolites. fluffily regul| +4009|360469|47991|1|19|29059.55|0.00|0.01|A|F|1995-05-22|1995-06-14|1995-06-09|TAKE BACK RETURN|FOB| wake furiously. quickly| +4009|393477|43478|2|28|43972.88|0.02|0.08|N|O|1995-09-07|1995-07-21|1995-09-25|COLLECT COD|SHIP|sual theodolites cajole blithel| +4009|164614|39621|3|40|67144.40|0.04|0.07|N|O|1995-07-28|1995-07-14|1995-08-18|DELIVER IN PERSON|RAIL| after the accounts. daring reque| +4010|621524|34037|1|49|70829.01|0.08|0.03|R|F|1995-01-21|1994-11-14|1995-02-07|NONE|FOB|deas. regular foxes alo| +4011|322827|47840|1|40|73992.40|0.09|0.04|N|O|1997-08-03|1997-07-07|1997-08-16|TAKE BACK RETURN|REG AIR|cial packages cajole. furiously bold packa| +4011|744903|7418|2|44|85706.28|0.07|0.05|N|O|1997-08-01|1997-07-12|1997-08-02|DELIVER IN PERSON|REG AIR| instructions are after the pending reques| +4011|581175|43687|3|47|59039.05|0.01|0.07|N|O|1997-09-14|1997-07-07|1997-09-23|DELIVER IN PERSON|RAIL|ggle after the carefu| +4011|805912|5913|4|21|38175.27|0.06|0.01|N|O|1997-07-15|1997-07-20|1997-07-25|TAKE BACK RETURN|REG AIR|the carefully sly| +4011|962210|24730|5|19|24171.23|0.10|0.04|N|O|1997-07-23|1997-08-29|1997-08-01|DELIVER IN PERSON|TRUCK|ng to the slyly bold requ| +4011|860231|10232|6|44|52412.36|0.00|0.03|N|O|1997-07-13|1997-08-24|1997-08-01|DELIVER IN PERSON|SHIP|nly. fluffily regular accounts across t| +4012|935937|10974|1|4|7891.56|0.10|0.01|A|F|1993-10-20|1993-09-06|1993-11-01|COLLECT COD|TRUCK|regular, ironic requests. bold asympt| +4012|292259|17270|2|49|61310.76|0.07|0.01|A|F|1993-11-04|1993-09-16|1993-11-11|TAKE BACK RETURN|RAIL|lent instructions. carefully speci| +4012|980389|5428|3|23|33794.82|0.08|0.08|A|F|1993-08-06|1993-09-17|1993-08-29|COLLECT COD|RAIL|oss the carefully pending de| +4012|386425|48933|4|27|40808.07|0.02|0.00|A|F|1993-10-21|1993-09-12|1993-10-27|DELIVER IN PERSON|AIR|ual accounts hag| +4012|636716|24253|5|36|59496.48|0.01|0.06|A|F|1993-11-06|1993-09-08|1993-11-21|COLLECT COD|SHIP| bold orbits. foxes s| +4012|284053|34054|6|27|28000.08|0.04|0.03|A|F|1993-11-05|1993-09-27|1993-11-22|COLLECT COD|SHIP|s sleep sly re| +4012|74793|37295|7|22|38891.38|0.04|0.03|A|F|1993-10-22|1993-09-09|1993-11-16|NONE|SHIP|as cajole blithely slyly | +4013|32847|20348|1|39|69413.76|0.09|0.01|N|O|1998-03-06|1998-03-07|1998-03-30|DELIVER IN PERSON|SHIP|o the final excuses. final ins| +4014|20336|20337|1|20|25126.60|0.09|0.02|N|O|1997-05-26|1997-05-06|1997-06-24|TAKE BACK RETURN|TRUCK|the ideas. blithely final platelet| +4014|774196|24197|2|47|59697.52|0.10|0.05|N|O|1997-02-17|1997-04-03|1997-02-21|COLLECT COD|RAIL|, ironic asymptotes wake aro| +4014|910039|10040|3|24|25175.76|0.06|0.03|N|O|1997-05-26|1997-04-14|1997-05-27|COLLECT COD|FOB|ans. slyly regular fox| +4014|21180|8681|4|9|9910.62|0.05|0.00|N|O|1997-05-15|1997-04-29|1997-06-07|NONE|FOB|cies. regular foxes print. quickly reg| +4014|958841|8842|5|45|85491.00|0.09|0.04|N|O|1997-05-03|1997-04-13|1997-05-23|TAKE BACK RETURN|FOB|ully slyly pending foxe| +4015|254991|17497|1|32|62271.36|0.04|0.07|R|F|1993-07-10|1993-07-10|1993-07-16|TAKE BACK RETURN|RAIL| accounts sleep furiously. ca| +4015|631541|44054|2|22|32395.22|0.02|0.03|R|F|1993-06-09|1993-06-07|1993-06-21|NONE|FOB|e carefully ironic deposits. slyly fluffy| +4015|304024|16531|3|37|38036.37|0.08|0.05|A|F|1993-05-03|1993-06-27|1993-05-04|NONE|REG AIR|xes. regular a| +4015|717177|29692|4|16|19106.24|0.00|0.01|A|F|1993-08-19|1993-07-17|1993-09-18|NONE|FOB|cial deposits use quickly. blithely unusu| +4015|585093|35094|5|25|29451.75|0.10|0.04|R|F|1993-06-25|1993-06-09|1993-06-28|COLLECT COD|FOB|sual pinto| +4040|269871|19872|1|33|60748.38|0.10|0.01|R|F|1992-03-31|1992-05-18|1992-04-26|DELIVER IN PERSON|AIR|ag along th| +4040|720815|45844|2|45|82610.10|0.05|0.04|A|F|1992-04-21|1992-04-16|1992-04-26|COLLECT COD|SHIP|courts detect carefu| +4041|820576|20577|1|36|53875.08|0.06|0.02|N|O|1996-11-11|1996-12-24|1996-11-14|DELIVER IN PERSON|FOB|uffily final ideas | +4041|410062|47587|2|33|32077.32|0.10|0.04|N|O|1997-01-18|1996-11-30|1997-02-09|TAKE BACK RETURN|MAIL|lites. furiously unusual pinto beans | +4041|911555|24074|3|47|73625.97|0.04|0.02|N|O|1996-11-16|1996-12-01|1996-11-19|NONE|RAIL|ly final requests ac| +4041|497945|35473|4|15|29143.80|0.10|0.03|N|O|1996-12-05|1997-01-02|1996-12-08|NONE|TRUCK|iously! pending foxes integrate | +4041|949081|24118|5|36|40681.44|0.07|0.05|N|O|1997-01-14|1996-12-22|1997-01-17|COLLECT COD|RAIL|kages; slyly ironic| +4041|191672|16679|6|28|49382.76|0.01|0.06|N|O|1996-12-06|1997-01-16|1997-01-03|NONE|AIR|ic deposits sleep quickly patterns. furio| +4042|206276|18781|1|17|20098.42|0.01|0.05|R|F|1994-11-29|1994-11-19|1994-12-01|COLLECT COD|RAIL|patterns serve slyl| +4042|865958|40993|2|19|36554.29|0.09|0.04|R|F|1995-01-07|1994-11-10|1995-01-31|TAKE BACK RETURN|SHIP|ep quickly careful| +4042|149822|49823|3|41|76744.62|0.10|0.07|R|F|1994-11-11|1994-11-16|1994-11-26|NONE|REG AIR|press asymptotes. even theodolites a| +4042|50168|37672|4|32|35781.12|0.05|0.08|R|F|1994-10-15|1994-11-09|1994-10-23|COLLECT COD|SHIP|hely. bold excuses ca| +4042|172304|47311|5|7|9634.10|0.05|0.03|A|F|1994-10-26|1994-10-30|1994-11-05|DELIVER IN PERSON|AIR| furiously even dependencies | +4042|903434|40989|6|25|35934.75|0.04|0.00|A|F|1994-11-23|1994-11-11|1994-12-15|COLLECT COD|AIR|ockey players? care| +4042|998802|48803|7|18|34213.68|0.09|0.08|A|F|1994-10-12|1994-12-12|1994-10-24|DELIVER IN PERSON|REG AIR|ly special | +4043|856797|19315|1|2|3507.50|0.10|0.01|R|F|1992-04-26|1992-05-09|1992-05-16|TAKE BACK RETURN|SHIP|bout the requests. pinto beans na| +4043|170851|20852|2|4|7687.40|0.10|0.01|A|F|1992-03-10|1992-05-19|1992-03-22|COLLECT COD|REG AIR|ter the bold requests. bravely pending dug| +4044|467449|42468|1|2|2832.84|0.02|0.07|A|F|1994-07-23|1994-09-08|1994-08-09|NONE|AIR|nts cajole according to the pending | +4044|403218|3219|2|8|8969.52|0.09|0.07|A|F|1994-08-20|1994-08-26|1994-09-13|COLLECT COD|SHIP| theodolites haggle fluf| +4044|877451|39969|3|3|4285.23|0.03|0.00|R|F|1994-11-04|1994-10-07|1994-11-09|TAKE BACK RETURN|FOB|are slyly after the furiously iron| +4044|309538|9539|4|7|10832.64|0.06|0.07|R|F|1994-08-15|1994-10-12|1994-08-29|TAKE BACK RETURN|FOB|lyly. slyl| +4044|398811|11319|5|46|87850.80|0.00|0.03|A|F|1994-10-09|1994-08-31|1994-11-02|COLLECT COD|FOB|ular, final packages-- carefully| +4045|528727|28728|1|28|49159.60|0.01|0.05|N|O|1996-01-07|1995-12-31|1996-01-28|NONE|REG AIR|ngly quickly regular ide| +4045|300702|25715|2|19|32351.11|0.10|0.02|N|O|1996-01-07|1996-01-06|1996-01-21|COLLECT COD|AIR|silently ironic asymptotes after the | +4045|890088|15123|3|39|42043.56|0.02|0.04|N|O|1996-01-12|1995-12-05|1996-01-19|NONE|REG AIR|equests wake silent instructio| +4045|708560|46103|4|17|26665.01|0.02|0.00|N|O|1995-12-14|1995-12-06|1995-12-27|TAKE BACK RETURN|AIR|ctions. final, permanen| +4045|751298|13814|5|34|45874.84|0.03|0.02|N|O|1996-02-18|1996-01-25|1996-03-19|DELIVER IN PERSON|RAIL|ular instructions cajole furiously a| +4045|55922|30925|6|22|41314.24|0.06|0.07|N|O|1995-11-21|1996-01-01|1995-12-13|DELIVER IN PERSON|FOB|ns try to detect afte| +4045|880894|18446|7|27|50620.95|0.10|0.01|N|O|1996-01-27|1996-01-07|1996-02-05|TAKE BACK RETURN|MAIL|ideas alongside o| +4046|177063|27064|1|25|28501.50|0.10|0.04|A|F|1994-03-11|1994-02-13|1994-03-21|DELIVER IN PERSON|MAIL|ckages are furiously. slyly bold| +4047|79312|16816|1|45|58108.95|0.06|0.03|R|F|1992-10-18|1992-12-02|1992-11-14|COLLECT COD|REG AIR| the unusual platelets. carefully e| +4047|994452|19491|2|31|47938.71|0.08|0.02|A|F|1993-01-05|1992-12-24|1993-01-24|TAKE BACK RETURN|MAIL|into beans wake. blithely sp| +4047|748999|49000|3|21|43007.16|0.01|0.02|A|F|1992-11-15|1992-12-16|1992-11-23|TAKE BACK RETURN|AIR|posits alongside of the ideas are regu| +4047|411182|48707|4|21|22956.36|0.10|0.02|R|F|1993-01-11|1992-12-13|1993-02-05|COLLECT COD|SHIP|le according to the slyly bold dep| +4047|720574|8117|5|43|68565.22|0.06|0.08|R|F|1992-12-21|1992-11-01|1992-12-25|COLLECT COD|RAIL|leep expre| +4047|685736|35737|6|47|80919.90|0.03|0.04|R|F|1992-12-05|1992-12-11|1992-12-31|TAKE BACK RETURN|FOB| after the d| +4072|549922|37453|1|23|45353.70|0.06|0.01|N|O|1996-06-06|1996-06-10|1996-06-13|COLLECT COD|FOB|iously unusual accounts. theodol| +4072|526876|1897|2|1|1902.85|0.10|0.07|N|O|1996-06-28|1996-05-04|1996-07-19|TAKE BACK RETURN|TRUCK|in platelets al| +4072|191268|3772|3|45|61166.70|0.09|0.05|N|O|1996-06-05|1996-05-11|1996-06-29|NONE|MAIL|ns alongside o| +4073|844240|19273|1|36|42631.20|0.08|0.02|A|F|1994-08-06|1994-09-20|1994-08-24|NONE|MAIL|lly daring excuses use. permanent, r| +4073|132796|45299|2|21|38404.59|0.05|0.00|A|F|1994-08-21|1994-10-21|1994-09-16|COLLECT COD|FOB|heodolites sleep furiously against the fu| +4073|901524|1525|3|41|62544.68|0.06|0.04|R|F|1994-09-12|1994-09-03|1994-09-29|DELIVER IN PERSON|TRUCK|sauternes. carefully final Tiresias wak| +4073|909217|46772|4|8|9809.36|0.01|0.02|R|F|1994-11-06|1994-09-27|1994-12-04|COLLECT COD|SHIP|foxes are express, regular ideas. decoys i| +4073|196305|33815|5|1|1401.30|0.05|0.07|A|F|1994-09-01|1994-10-04|1994-09-27|TAKE BACK RETURN|FOB|ajole blit| +4073|296051|8557|6|15|15705.60|0.06|0.06|A|F|1994-10-07|1994-10-17|1994-10-19|TAKE BACK RETURN|SHIP|l accounts. s| +4074|344181|6688|1|30|36755.10|0.10|0.04|N|O|1998-01-16|1998-03-24|1998-01-21|COLLECT COD|SHIP|l deposits. | +4074|633999|46512|2|49|94715.04|0.04|0.08|N|O|1998-02-03|1998-03-10|1998-02-28|TAKE BACK RETURN|MAIL|leep quickly si| +4074|614770|39795|3|39|65704.86|0.03|0.00|N|O|1998-04-07|1998-03-19|1998-04-11|DELIVER IN PERSON|REG AIR|haggle quickly about the fi| +4074|435801|10818|4|45|78155.10|0.06|0.08|N|O|1998-02-20|1998-03-05|1998-03-06|DELIVER IN PERSON|TRUCK|o the fluffily ironic d| +4075|533782|33783|1|40|72630.40|0.04|0.03|N|O|1996-05-16|1996-04-16|1996-05-20|DELIVER IN PERSON|REG AIR|sly ironic req| +4075|258265|45781|2|8|9786.00|0.03|0.04|N|O|1996-05-15|1996-03-31|1996-05-16|COLLECT COD|AIR| doubt again| +4075|647106|47107|3|49|51600.43|0.07|0.06|N|O|1996-06-20|1996-04-11|1996-06-24|COLLECT COD|FOB|tructions kindle slyly. r| +4075|895767|45768|4|23|40542.56|0.06|0.00|N|O|1996-06-09|1996-04-16|1996-07-07|NONE|SHIP| ironic dolphins. even,| +4076|458322|45850|1|47|60174.10|0.03|0.05|N|O|1995-08-16|1995-05-25|1995-09-05|TAKE BACK RETURN|TRUCK|dolites. final requests cajole blithely| +4076|11131|23632|2|25|26053.25|0.05|0.01|N|O|1995-07-02|1995-06-06|1995-07-14|COLLECT COD|FOB|efully above the furious| +4076|73282|23283|3|28|35147.84|0.09|0.03|N|O|1995-07-04|1995-06-09|1995-07-22|NONE|REG AIR| was slyly. slyly special accounts| +4077|607005|44542|1|10|9119.70|0.08|0.06|A|F|1995-03-10|1995-03-03|1995-03-20|TAKE BACK RETURN|FOB|posits haggle bold, quiet request| +4077|920966|46003|2|1|1986.92|0.00|0.02|A|F|1995-05-27|1995-03-31|1995-06-05|DELIVER IN PERSON|TRUCK| pinto beans-- | +4078|795996|33542|1|38|79494.48|0.01|0.07|A|F|1994-12-17|1995-02-17|1995-01-09|DELIVER IN PERSON|AIR|ide of the slyly ir| +4078|291044|28560|2|30|31050.90|0.05|0.05|A|F|1994-12-01|1995-01-20|1994-12-06|COLLECT COD|SHIP|uriously after the quickly even dep| +4078|575541|564|3|49|79209.48|0.00|0.06|A|F|1994-12-15|1994-12-19|1995-01-01|COLLECT COD|RAIL|, final accounts. fluffily regular pac| +4078|117480|17481|4|27|40431.96|0.09|0.00|R|F|1994-12-24|1994-12-24|1995-01-23|DELIVER IN PERSON|REG AIR|nic accounts. special, pending accounts ca| +4078|485532|48042|5|33|50077.83|0.02|0.02|R|F|1994-12-01|1995-02-02|1994-12-22|NONE|AIR|endencies alongside of th| +4078|329304|41811|6|21|27999.09|0.06|0.07|R|F|1994-12-31|1995-02-01|1995-01-27|COLLECT COD|FOB|sts are! furi| +4079|393926|43927|1|46|92915.86|0.07|0.08|N|O|1996-11-12|1996-11-25|1996-11-22|NONE|MAIL|ly pending pinto bea| +4079|703223|15738|2|19|23297.61|0.00|0.00|N|O|1996-12-30|1996-10-29|1997-01-28|COLLECT COD|RAIL|rash blithely slyly final | +4104|817674|17675|1|11|17507.93|0.01|0.00|R|F|1995-04-21|1995-03-18|1995-05-20|TAKE BACK RETURN|TRUCK|ual dependencies dazzle across the account| +4104|644206|19231|2|22|25303.74|0.02|0.05|A|F|1995-02-05|1995-03-02|1995-02-28|NONE|FOB|y about the carefully e| +4104|162844|12845|3|5|9534.20|0.10|0.00|R|F|1995-03-28|1995-03-05|1995-04-22|DELIVER IN PERSON|AIR|even requests. final deposits are slyl| +4104|914718|27237|4|2|3465.34|0.05|0.01|R|F|1995-01-31|1995-03-17|1995-02-20|NONE|RAIL| enticing deposits in place of | +4104|653870|3871|5|3|5471.52|0.07|0.04|A|F|1995-01-07|1995-02-26|1995-01-25|TAKE BACK RETURN|REG AIR|ic deposit| +4104|583908|33909|6|34|67723.92|0.07|0.01|A|F|1995-01-10|1995-02-24|1995-02-06|DELIVER IN PERSON|RAIL|boost carefully deposits. | +4104|735094|47609|7|9|10161.54|0.07|0.03|A|F|1995-01-05|1995-03-23|1995-01-30|NONE|AIR|ly ironic courts affix slyly| +4105|708071|8072|1|24|25896.96|0.10|0.00|N|O|1997-04-18|1997-04-07|1997-05-09|DELIVER IN PERSON|TRUCK|s detect sly| +4105|538823|1334|2|48|89366.40|0.00|0.02|N|O|1997-05-03|1997-03-28|1997-05-25|TAKE BACK RETURN|TRUCK| accounts nag c| +4105|982539|7578|3|11|17836.39|0.05|0.05|N|O|1997-04-09|1997-04-02|1997-04-27|TAKE BACK RETURN|MAIL|carefully. carefully regu| +4105|525734|13265|4|46|80946.66|0.01|0.00|N|O|1997-03-17|1997-04-05|1997-03-29|DELIVER IN PERSON|AIR|c excuses solve blithely. deposits serv| +4105|999531|49532|5|7|11413.43|0.06|0.07|N|O|1997-04-17|1997-03-12|1997-05-10|TAKE BACK RETURN|RAIL|s detect. p| +4105|110402|22905|6|38|53671.20|0.00|0.02|N|O|1997-03-30|1997-04-16|1997-04-03|TAKE BACK RETURN|RAIL|al ideas. iron| +4105|518067|30578|7|25|27126.00|0.08|0.04|N|O|1997-02-20|1997-03-19|1997-03-14|NONE|TRUCK| careful, even instructions boost| +4106|142407|29914|1|45|65223.00|0.07|0.05|N|O|1996-02-03|1996-02-13|1996-03-02|COLLECT COD|REG AIR|sits use quickly regular fre| +4106|433661|33662|2|35|55812.40|0.00|0.07|N|O|1996-01-15|1996-03-21|1996-02-08|DELIVER IN PERSON|RAIL|ckages. regular, regular foxes int| +4106|536077|11098|3|41|45635.05|0.03|0.03|N|O|1996-01-21|1996-02-24|1996-01-30|COLLECT COD|REG AIR|s affix slyly about the r| +4106|842406|17439|4|26|35057.36|0.01|0.04|N|O|1996-02-05|1996-03-20|1996-02-20|COLLECT COD|TRUCK|s requests boost above the carefully bold| +4106|310332|47851|5|15|20134.80|0.07|0.01|N|O|1996-02-08|1996-02-25|1996-02-17|DELIVER IN PERSON|SHIP|ffily. blithely fluffy id| +4106|735085|10114|6|40|44802.00|0.02|0.03|N|O|1996-02-20|1996-03-15|1996-03-04|TAKE BACK RETURN|MAIL|arefully final packages. furious| +4106|558501|46035|7|32|49903.36|0.01|0.00|N|O|1996-02-08|1996-02-08|1996-02-24|NONE|FOB|hall nag carefully silent packages. ir| +4107|720153|45182|1|19|22289.28|0.01|0.02|N|O|1997-03-06|1997-02-26|1997-03-16|TAKE BACK RETURN|AIR| the slyly pending deposit| +4107|609227|21740|2|30|34085.70|0.09|0.02|N|O|1997-01-24|1997-03-27|1997-01-26|COLLECT COD|SHIP|press deposits are carefull| +4107|263063|13064|3|9|9234.45|0.01|0.03|N|O|1997-01-28|1997-03-21|1997-02-20|TAKE BACK RETURN|TRUCK|deas sleep ironic | +4107|284857|47363|4|50|92092.00|0.08|0.07|N|O|1997-04-09|1997-03-14|1997-04-21|COLLECT COD|MAIL|uickly sly instructions alongside| +4107|581392|18926|5|14|20627.18|0.03|0.06|N|O|1997-02-10|1997-02-21|1997-02-28|COLLECT COD|FOB|y even deposits after the furiously regul| +4108|400049|37574|1|19|18031.38|0.10|0.00|N|O|1996-04-20|1996-04-02|1996-04-21|NONE|AIR|ayers. final deposits haggle regularl| +4108|620143|45168|2|10|10631.10|0.07|0.02|N|O|1996-06-01|1996-04-28|1996-06-06|DELIVER IN PERSON|RAIL|ages. slyly final pa| +4108|734203|34204|3|6|7423.02|0.08|0.04|N|O|1996-05-02|1996-03-31|1996-05-29|NONE|REG AIR| pinto beans sle| +4108|744045|19074|4|26|28314.26|0.04|0.05|N|O|1996-02-23|1996-05-06|1996-02-29|DELIVER IN PERSON|FOB|ans integrate slyly. quickly pendin| +4109|508832|21343|1|29|53383.49|0.01|0.00|N|O|1997-09-17|1997-08-28|1997-10-13|DELIVER IN PERSON|AIR|ound the blithely silent f| +4109|927184|14739|2|3|3633.42|0.10|0.08|N|O|1997-07-30|1997-09-06|1997-07-31|DELIVER IN PERSON|REG AIR|ructions cajole quickly agai| +4109|164820|27324|3|27|50890.14|0.03|0.03|N|O|1997-07-04|1997-08-16|1997-07-08|COLLECT COD|REG AIR|outs. final, even packages wake q| +4110|687521|35|1|35|52797.15|0.10|0.05|N|O|1997-05-02|1997-06-12|1997-05-23|COLLECT COD|FOB|lly stealthy excuses wake furiously| +4111|473733|23734|1|6|10240.26|0.00|0.03|A|F|1993-12-13|1993-12-11|1993-12-18|TAKE BACK RETURN|AIR|among the blithely enticin| +4111|23429|35930|2|3|4057.26|0.05|0.08|A|F|1993-12-29|1993-11-05|1994-01-27|COLLECT COD|TRUCK|lets. furiously final pinto be| +4111|758154|33185|3|32|38787.84|0.01|0.04|A|F|1993-12-27|1993-11-30|1993-12-30|COLLECT COD|SHIP|osits affix blithel| +4111|287243|12254|4|1|1230.23|0.01|0.06|R|F|1993-10-05|1993-11-04|1993-10-08|NONE|RAIL| final dolphins! furiously even ex| +4111|690024|27564|5|37|37517.63|0.09|0.01|R|F|1993-11-25|1993-11-10|1993-12-01|TAKE BACK RETURN|MAIL|ld platelets wake| +4111|225847|25848|6|35|62049.05|0.05|0.00|A|F|1994-01-09|1993-12-01|1994-01-27|DELIVER IN PERSON|SHIP|ackages nod furiou| +4136|806682|19199|1|24|38127.36|0.07|0.04|N|O|1997-02-12|1997-04-03|1997-02-23|TAKE BACK RETURN|MAIL| slyly caref| +4136|887803|321|2|19|34024.44|0.09|0.01|N|O|1997-02-20|1997-04-17|1997-03-09|DELIVER IN PERSON|RAIL|ial accounts; pending, ironi| +4137|640066|27603|1|41|41247.23|0.06|0.08|A|F|1992-04-17|1992-04-14|1992-04-29|COLLECT COD|REG AIR|ar accounts; theodolites n| +4137|586672|11695|2|48|84415.20|0.06|0.05|R|F|1992-04-03|1992-06-05|1992-04-19|NONE|TRUCK|ong the furiously bold dolphins ca| +4137|187334|49838|3|3|4263.99|0.05|0.07|R|F|1992-05-17|1992-05-27|1992-06-11|TAKE BACK RETURN|FOB| nag quickly blithely final depo| +4137|518926|6457|4|12|23338.80|0.09|0.00|A|F|1992-04-11|1992-05-02|1992-04-14|TAKE BACK RETURN|MAIL| the ironic theodolites nag furiously b| +4137|587913|25447|5|46|92040.94|0.07|0.03|A|F|1992-05-31|1992-05-30|1992-06-09|DELIVER IN PERSON|SHIP|es are blithely alongsi| +4137|43051|30552|6|20|19881.00|0.04|0.08|A|F|1992-06-27|1992-05-18|1992-07-25|NONE|MAIL|ding requests breach about the carefu| +4138|406104|43629|1|49|49493.92|0.10|0.08|N|O|1998-08-22|1998-06-19|1998-08-30|TAKE BACK RETURN|SHIP|ptotes nag blith| +4139|477380|27381|1|18|24432.48|0.07|0.06|N|O|1996-02-26|1996-03-31|1996-03-03|COLLECT COD|REG AIR|st furiously. silent, regular i| +4139|311304|23811|2|22|28936.38|0.08|0.06|N|O|1996-04-05|1996-05-02|1996-04-26|DELIVER IN PERSON|REG AIR|gle furiously above the silent pack| +4139|74063|36565|3|26|26963.56|0.02|0.05|N|O|1996-06-02|1996-05-15|1996-06-28|TAKE BACK RETURN|RAIL|ounts use b| +4139|762665|211|4|44|76015.72|0.03|0.05|N|O|1996-02-29|1996-04-27|1996-03-05|COLLECT COD|AIR| eat quickly about the blithely pending| +4140|655848|43388|1|40|72152.40|0.09|0.05|N|O|1995-09-13|1995-11-11|1995-10-11|DELIVER IN PERSON|SHIP| regular foxes cajol| +4140|826905|1938|2|50|91593.00|0.01|0.01|N|O|1995-11-16|1995-11-04|1995-12-16|DELIVER IN PERSON|SHIP|tions. slyly pe| +4140|777112|14658|3|21|24970.68|0.04|0.04|N|O|1995-12-07|1995-11-26|1995-12-21|DELIVER IN PERSON|REG AIR|al dolphins around the | +4141|970713|33233|1|37|65995.79|0.03|0.03|A|F|1993-12-08|1994-01-04|1993-12-28|COLLECT COD|REG AIR|al deposits cajole b| +4141|763777|1323|2|14|25770.36|0.04|0.04|A|F|1994-02-10|1994-01-29|1994-02-22|COLLECT COD|SHIP| are slyly slyly final | +4141|797532|35078|3|41|66809.50|0.06|0.03|R|F|1993-12-23|1994-01-18|1993-12-24|NONE|TRUCK|hely enticing requests cajole | +4142|527840|2861|1|22|41092.04|0.00|0.04|A|F|1992-12-15|1992-12-12|1992-12-31|COLLECT COD|TRUCK|cajole slyly. re| +4142|398019|10527|2|32|35744.00|0.03|0.02|R|F|1992-12-25|1992-12-15|1993-01-17|TAKE BACK RETURN|RAIL|nst the furiously| +4142|500804|38335|3|18|32486.04|0.03|0.08|R|F|1993-01-30|1992-11-13|1993-02-01|TAKE BACK RETURN|RAIL| among the blithely sile| +4142|11433|48934|4|30|40332.90|0.08|0.07|R|F|1992-10-28|1992-11-09|1992-11-13|TAKE BACK RETURN|FOB|ss the final,| +4143|559518|47052|1|7|11042.43|0.04|0.05|R|F|1994-04-02|1994-03-25|1994-05-01|TAKE BACK RETURN|TRUCK|ronic deposits. | +4143|810839|48388|2|45|78740.55|0.03|0.08|R|F|1994-04-07|1994-02-13|1994-04-19|TAKE BACK RETURN|MAIL|s. carefully silent package| +4143|754866|17382|3|24|46099.92|0.07|0.05|A|F|1994-03-15|1994-03-07|1994-04-07|NONE|FOB|thely ironi| +4143|28905|3906|4|44|80691.60|0.01|0.07|R|F|1994-04-21|1994-03-06|1994-05-09|COLLECT COD|REG AIR| even deposits. blithely even deposits| +4143|796092|33638|5|38|45146.28|0.08|0.07|A|F|1994-04-27|1994-03-06|1994-04-30|NONE|TRUCK|arefully above the s| +4143|913513|38550|6|45|68691.15|0.05|0.03|A|F|1994-03-15|1994-02-28|1994-03-23|NONE|REG AIR|slyly ironic deposits above the slyly r| +4143|411326|11327|7|35|43305.50|0.10|0.07|R|F|1994-01-16|1994-03-03|1994-01-24|DELIVER IN PERSON|FOB|lyly special req| +4168|145614|20619|1|38|63065.18|0.08|0.04|N|O|1996-07-16|1996-07-17|1996-07-21|COLLECT COD|AIR|ng the quick depths poach furiously regula| +4169|204340|41853|1|36|44795.88|0.05|0.08|N|O|1996-11-27|1996-11-06|1996-12-19|DELIVER IN PERSON|TRUCK|pecial dependencies| +4170|551232|13744|1|9|11548.89|0.03|0.06|A|F|1995-03-15|1995-05-18|1995-04-03|TAKE BACK RETURN|FOB|wake ironically final| +4170|549457|11968|2|12|18077.16|0.05|0.07|A|F|1995-03-14|1995-05-21|1995-03-24|COLLECT COD|SHIP|quickly final i| +4170|715635|40664|3|7|11554.20|0.00|0.01|A|F|1995-04-22|1995-03-31|1995-05-11|DELIVER IN PERSON|AIR|sits wake according to the blithe| +4170|665669|28183|4|17|27788.71|0.01|0.06|R|F|1995-03-08|1995-05-09|1995-03-26|DELIVER IN PERSON|SHIP|r the slyly ironic deposits. brave ac| +4171|454583|29602|1|15|23063.40|0.09|0.03|N|O|1995-10-30|1995-12-18|1995-11-26|TAKE BACK RETURN|RAIL|lites-- blithely express theodolit| +4172|633133|8158|1|14|14925.40|0.04|0.06|N|O|1998-03-23|1998-01-20|1998-04-16|TAKE BACK RETURN|TRUCK| the carefully idle accounts. furi| +4172|61543|49047|2|15|22568.10|0.03|0.07|N|O|1998-01-27|1998-01-24|1998-02-24|TAKE BACK RETURN|AIR|ly regular | +4172|340295|40296|3|21|28040.88|0.08|0.03|N|O|1998-04-05|1998-01-10|1998-04-27|NONE|TRUCK|c deposits are quic| +4172|331909|19428|4|23|44640.47|0.09|0.05|N|O|1997-12-30|1998-02-09|1998-01-10|COLLECT COD|MAIL| cajole slyly idly ironic instruc| +4172|383483|8498|5|30|46994.10|0.10|0.08|N|O|1998-02-08|1998-02-05|1998-03-07|COLLECT COD|FOB|c requests cajole bol| +4172|190177|15184|6|10|12671.70|0.06|0.05|N|O|1998-02-08|1998-02-12|1998-03-02|TAKE BACK RETURN|RAIL|ges. ironic packages in| +4172|299294|36810|7|16|20692.48|0.04|0.07|N|O|1998-01-19|1998-01-08|1998-01-31|COLLECT COD|FOB| carefully above the unusual requ| +4173|229879|4888|1|43|77780.98|0.07|0.02|N|O|1997-10-01|1997-09-20|1997-10-14|NONE|RAIL|ackages. dogged, regular pinto be| +4173|559712|22224|2|49|86812.81|0.03|0.01|N|O|1997-08-20|1997-09-04|1997-09-08|TAKE BACK RETURN|FOB|ilently regular deposits. quickly | +4173|77557|40059|3|35|53709.25|0.03|0.02|N|O|1997-08-03|1997-08-13|1997-08-10|COLLECT COD|TRUCK|ckly quickly ironic sauterne| +4174|756740|19256|1|35|62884.85|0.10|0.00|R|F|1994-06-13|1994-05-19|1994-07-07|COLLECT COD|MAIL| the regular, regular deposits.| +4174|521377|8908|2|26|36357.10|0.06|0.00|R|F|1994-07-17|1994-05-19|1994-07-24|NONE|AIR|deas cajole| +4174|781037|18583|3|39|43602.00|0.10|0.06|A|F|1994-05-04|1994-06-23|1994-05-09|DELIVER IN PERSON|AIR|ges. fluffily unusual packages along | +4174|880257|17809|4|20|24744.20|0.06|0.03|R|F|1994-04-30|1994-06-03|1994-05-28|DELIVER IN PERSON|AIR|ously silent platelets about the | +4174|466622|16623|5|19|30183.40|0.06|0.05|A|F|1994-07-06|1994-05-05|1994-07-30|COLLECT COD|AIR|ly ironic requests wake| +4175|741630|16659|1|16|26745.60|0.10|0.01|N|O|1996-08-20|1996-09-14|1996-08-21|COLLECT COD|AIR|ar accounts. ironic reques| +4200|133622|46125|1|3|4966.86|0.02|0.06|N|O|1998-01-11|1998-03-19|1998-01-17|TAKE BACK RETURN|AIR|. quickly ironic deposits along the ironic | +4200|779485|17031|2|6|9386.70|0.02|0.06|N|O|1998-03-28|1998-03-22|1998-03-31|TAKE BACK RETURN|TRUCK|ckages. final instructions w| +4201|605854|43391|1|31|54554.42|0.09|0.07|R|F|1994-02-01|1994-03-01|1994-02-24|DELIVER IN PERSON|MAIL|uffily regular ideas. regular theod| +4202|596387|21410|1|18|26700.48|0.10|0.06|N|O|1995-11-27|1995-11-18|1995-12-24|DELIVER IN PERSON|REG AIR|ress requests. regular notornis abou| +4202|475677|38187|2|25|41316.25|0.05|0.02|N|O|1996-01-01|1995-10-24|1996-01-16|DELIVER IN PERSON|MAIL|cajole accord| +4202|699295|49296|3|25|32356.50|0.07|0.04|N|O|1995-11-25|1995-11-05|1995-12-22|COLLECT COD|AIR|. carefully regular acc| +4203|83105|33106|1|35|38083.50|0.02|0.03|N|O|1998-03-04|1998-04-28|1998-03-15|DELIVER IN PERSON|SHIP| furiously even accounts | +4203|736794|11823|2|48|87876.48|0.03|0.06|N|O|1998-06-12|1998-04-06|1998-06-19|TAKE BACK RETURN|AIR|can wake. express,| +4203|288336|25852|3|24|31783.68|0.07|0.08|N|O|1998-03-29|1998-05-08|1998-04-15|NONE|FOB|fully final ideas nag blithely ac| +4204|296402|33918|1|50|69919.50|0.07|0.05|A|F|1992-10-25|1992-10-30|1992-10-27|TAKE BACK RETURN|FOB|deposits x-ray carefully. thinly final | +4204|624157|11694|2|2|2162.24|0.04|0.08|R|F|1992-09-04|1992-11-12|1992-09-08|NONE|MAIL|ackages. furiously even dependencie| +4204|205685|43198|3|45|71580.15|0.10|0.04|R|F|1992-12-13|1992-10-06|1993-01-05|TAKE BACK RETURN|FOB|l accounts slee| +4204|934828|9865|4|44|81962.32|0.02|0.01|R|F|1992-11-25|1992-09-28|1992-12-14|COLLECT COD|AIR|ly. ironic accounts w| +4204|641238|41239|5|10|11792.00|0.00|0.00|A|F|1992-10-12|1992-10-29|1992-10-29|COLLECT COD|RAIL| after the slyly | +4205|507330|19841|1|7|9361.17|0.08|0.00|N|O|1997-11-25|1997-12-10|1997-11-29|COLLECT COD|REG AIR| special dolphins cajole. unusual depo| +4205|680576|5603|2|43|66931.22|0.10|0.04|N|O|1997-12-25|1997-12-07|1998-01-16|NONE|MAIL|y express theodolites use blithely e| +4205|437854|25379|3|35|62714.05|0.02|0.07|N|O|1997-12-22|1997-12-11|1998-01-21|COLLECT COD|REG AIR| the quickly regular ideas. flu| +4205|7946|45447|4|30|55618.20|0.08|0.02|N|O|1997-10-28|1997-11-10|1997-11-24|NONE|AIR|cial waters; regular | +4205|543491|18512|5|27|41430.69|0.08|0.02|N|O|1997-12-07|1997-11-24|1997-12-28|COLLECT COD|RAIL|he carefully daring realms. sl| +4206|329797|17316|1|20|36535.60|0.00|0.03|N|O|1996-05-20|1996-06-23|1996-06-06|COLLECT COD|TRUCK|l ideas integrate after the| +4206|882955|7990|2|27|52323.57|0.08|0.03|N|O|1996-08-09|1996-05-31|1996-08-11|TAKE BACK RETURN|REG AIR| instructions detect excuses. carefull| +4207|411281|36298|1|14|16691.64|0.07|0.00|N|O|1998-05-10|1998-04-05|1998-05-13|COLLECT COD|SHIP|he even requests nag| +4207|396098|46099|2|41|48957.28|0.08|0.02|N|O|1998-03-04|1998-04-07|1998-04-02|DELIVER IN PERSON|RAIL| beans unwind fluffily| +4232|268323|43334|1|44|56817.64|0.08|0.07|N|O|1998-02-20|1998-04-24|1998-03-01|TAKE BACK RETURN|MAIL|ctions. even deposits against | +4232|688135|38136|2|26|29200.60|0.10|0.02|N|O|1998-05-16|1998-04-22|1998-06-09|COLLECT COD|TRUCK|ts. special pin| +4232|480395|42905|3|5|6876.85|0.06|0.07|N|O|1998-02-03|1998-03-20|1998-02-11|DELIVER IN PERSON|MAIL|telets. special dolphins| +4232|990817|28375|4|7|13354.39|0.06|0.04|N|O|1998-05-28|1998-03-04|1998-06-09|COLLECT COD|SHIP|o wake furiously regular packages. ca| +4232|653504|28531|5|16|23319.52|0.05|0.08|N|O|1998-05-25|1998-04-12|1998-06-18|TAKE BACK RETURN|REG AIR|regular packag| +4232|425643|38152|6|43|67450.66|0.01|0.00|N|O|1998-04-29|1998-04-10|1998-05-14|TAKE BACK RETURN|REG AIR|. furiously final c| +4232|779577|17123|7|22|36443.88|0.06|0.08|N|O|1998-03-15|1998-04-03|1998-04-13|COLLECT COD|MAIL|he ideas. ironic warhorses can| +4233|348643|36162|1|14|23682.82|0.05|0.02|A|F|1992-08-26|1992-10-13|1992-09-19|COLLECT COD|RAIL|dle deposits affix slyly slyly ironic pa| +4233|637367|37368|2|33|43042.89|0.08|0.05|A|F|1992-09-12|1992-09-21|1992-10-09|COLLECT COD|RAIL| slyly even theodolites sleep above| +4233|221342|8855|3|9|11369.97|0.03|0.03|R|F|1992-10-25|1992-08-21|1992-11-04|TAKE BACK RETURN|FOB|into beans. blithely bold packages | +4233|81420|31421|4|17|23824.14|0.02|0.07|R|F|1992-10-19|1992-09-05|1992-10-31|NONE|TRUCK|nag among the ironically final pinto beans.| +4234|755615|18131|1|22|36752.76|0.02|0.00|N|O|1996-11-15|1996-08-27|1996-12-14|COLLECT COD|RAIL|iously unusual packages snooze instruc| +4234|605465|17978|2|42|57558.06|0.03|0.04|N|O|1996-09-06|1996-08-21|1996-09-29|DELIVER IN PERSON|REG AIR|s. furiously final| +4234|50136|25139|3|2|2172.26|0.01|0.06|N|O|1996-08-14|1996-09-03|1996-08-27|TAKE BACK RETURN|TRUCK|s pinto bean| +4234|619199|44224|4|17|19008.72|0.07|0.03|N|O|1996-10-22|1996-09-04|1996-11-01|DELIVER IN PERSON|TRUCK|sly ironic pinto beans boost q| +4234|864870|39905|5|33|60549.39|0.06|0.08|N|O|1996-09-15|1996-10-20|1996-10-06|TAKE BACK RETURN|REG AIR|g to the fluffily even foxes. ironic pac| +4234|859472|21990|6|47|67277.21|0.02|0.00|N|O|1996-08-09|1996-09-09|1996-08-23|NONE|SHIP|lyly special pl| +4235|444649|32174|1|8|12748.96|0.00|0.04|N|O|1995-11-20|1995-10-08|1995-12-14|DELIVER IN PERSON|RAIL|ites cajole fluffi| +4235|206726|44239|2|32|52246.72|0.09|0.01|N|O|1995-11-18|1995-10-25|1995-12-13|TAKE BACK RETURN|AIR| even, daring depen| +4235|440694|3203|3|30|49040.10|0.03|0.02|N|O|1995-12-24|1995-11-07|1996-01-17|COLLECT COD|MAIL| the excuses-- quickly even requests a| +4235|735001|35002|4|34|35222.98|0.09|0.05|N|O|1995-11-02|1995-10-24|1995-11-14|TAKE BACK RETURN|SHIP|t the express deposits. b| +4236|209371|46884|1|10|12803.60|0.08|0.04|N|O|1995-09-26|1995-08-26|1995-10-18|COLLECT COD|FOB|uriously bold requests wa| +4236|894510|32062|2|45|67701.15|0.00|0.01|N|O|1995-08-20|1995-08-03|1995-08-31|NONE|SHIP|usly according to the f| +4236|29343|41844|3|34|43259.56|0.04|0.01|N|O|1995-06-25|1995-07-25|1995-07-03|DELIVER IN PERSON|FOB|y. fluffily special reque| +4237|549832|12343|1|38|71508.78|0.01|0.05|N|O|1997-09-21|1997-10-13|1997-10-08|DELIVER IN PERSON|AIR|ckages. special foxes sleep blit| +4237|15479|2980|2|22|30678.34|0.04|0.08|N|O|1997-10-27|1997-10-03|1997-11-21|NONE|RAIL|ly furiously ironic pinto b| +4237|139773|14778|3|32|58008.64|0.00|0.02|N|O|1997-11-30|1997-10-12|1997-12-30|COLLECT COD|SHIP|sly fluffily| +4237|150170|25177|4|18|21963.06|0.00|0.01|N|O|1997-09-23|1997-10-20|1997-10-03|TAKE BACK RETURN|AIR|atelets detect slyly. carefu| +4238|776135|13681|1|4|4844.40|0.00|0.04|N|O|1995-08-11|1995-08-06|1995-08-20|TAKE BACK RETURN|MAIL|even foxes.| +4238|494134|44135|2|34|38355.74|0.03|0.08|N|O|1995-06-29|1995-07-21|1995-07-26|DELIVER IN PERSON|RAIL|lar foxes. | +4238|896815|9333|3|33|59788.41|0.09|0.05|N|O|1995-07-10|1995-07-07|1995-07-17|COLLECT COD|AIR|ets. ironic ide| +4238|755924|43470|4|36|71276.04|0.06|0.05|N|F|1995-05-25|1995-07-11|1995-06-19|NONE|SHIP| ideas cajole quickly across th| +4238|809109|21626|5|26|26469.56|0.08|0.03|N|O|1995-06-19|1995-08-07|1995-07-09|DELIVER IN PERSON|REG AIR|slyly bold f| +4239|916484|16485|1|1|1500.44|0.09|0.08|N|O|1998-06-14|1998-08-15|1998-06-15|NONE|MAIL|ets will sleep bold, thin accounts. quickly| +4239|336886|36887|2|7|13460.09|0.01|0.06|N|O|1998-09-09|1998-07-13|1998-10-03|TAKE BACK RETURN|REG AIR|press pinto beans boost among the | +4239|32234|7235|3|21|24490.83|0.03|0.02|N|O|1998-08-20|1998-07-06|1998-09-14|NONE|FOB|regular grouches. ironic asym| +4239|751345|1346|4|46|64230.26|0.10|0.01|N|O|1998-09-12|1998-08-07|1998-09-26|TAKE BACK RETURN|AIR|tes wake fluffily pending, regul| +4239|852866|2867|5|39|70933.98|0.04|0.06|N|O|1998-07-06|1998-08-23|1998-07-30|TAKE BACK RETURN|RAIL|ding to the fin| +4239|110785|48292|6|40|71831.20|0.00|0.05|N|O|1998-09-19|1998-08-01|1998-10-06|NONE|MAIL|ggle furious| +4264|312338|49857|1|21|28356.72|0.10|0.00|N|O|1998-05-01|1998-04-12|1998-05-19|DELIVER IN PERSON|AIR|furiously. waters sleep quickly| +4264|459145|46673|2|38|41956.56|0.08|0.00|N|O|1998-03-19|1998-05-01|1998-04-13|DELIVER IN PERSON|TRUCK|l ideas. fluffily even grouches a| +4264|833744|8777|3|21|35231.70|0.03|0.02|N|O|1998-03-25|1998-04-04|1998-04-04|NONE|MAIL|olites haggle carefully. final request| +4264|721651|46680|4|32|53523.84|0.10|0.03|N|O|1998-03-31|1998-04-14|1998-04-06|NONE|AIR|lithely silent packages during the furio| +4265|243999|6504|1|47|91320.06|0.09|0.06|N|O|1996-03-13|1996-03-08|1996-03-20|COLLECT COD|MAIL|ges. blithely close accounts| +4265|879334|16886|2|5|6566.45|0.00|0.04|N|O|1996-03-01|1996-03-15|1996-03-16|TAKE BACK RETURN|RAIL|accounts. requests haggle. carefully iro| +4265|950446|12966|3|16|23942.40|0.03|0.06|N|O|1996-04-29|1996-04-03|1996-05-11|NONE|MAIL|the carefully regular requests. furiously| +4265|129445|4450|4|13|19167.72|0.08|0.07|N|O|1996-03-08|1996-03-25|1996-03-17|TAKE BACK RETURN|RAIL|gular ideas are carefully furiously dari| +4265|577109|2132|5|23|27279.84|0.07|0.07|N|O|1996-03-02|1996-03-21|1996-03-19|DELIVER IN PERSON|AIR|uctions. carefully| +4266|417781|42798|1|46|78142.96|0.01|0.08|N|O|1997-10-12|1997-10-12|1997-10-29|TAKE BACK RETURN|MAIL|y ironic war| +4266|640153|2666|2|39|42631.68|0.08|0.02|N|O|1997-12-15|1997-10-04|1998-01-10|DELIVER IN PERSON|AIR|ole slyly pe| +4266|38933|38934|3|45|84236.85|0.01|0.07|N|O|1997-09-14|1997-12-01|1997-09-28|COLLECT COD|TRUCK|c dolphins cajol| +4267|614923|39948|1|23|42271.47|0.07|0.01|N|O|1995-11-14|1995-11-29|1995-11-30|DELIVER IN PERSON|FOB|ests along the bl| +4267|5088|42589|2|49|48660.92|0.09|0.02|N|O|1995-10-18|1995-11-18|1995-10-26|COLLECT COD|AIR|long the final accounts. blithely special| +4267|510113|22624|3|50|56154.50|0.02|0.01|N|O|1995-09-23|1995-12-02|1995-10-15|NONE|FOB|theodolites. ca| +4267|456398|6399|4|47|63655.39|0.09|0.05|N|O|1995-11-05|1995-12-10|1995-11-30|COLLECT COD|AIR|dolites wa| +4268|735984|23527|1|30|60598.50|0.10|0.01|A|F|1994-10-08|1994-11-08|1994-10-19|COLLECT COD|RAIL|lyly regular packages. slyly | +4268|678209|3236|2|45|53422.65|0.09|0.06|R|F|1994-12-26|1994-12-02|1995-01-05|NONE|SHIP| theodolites. blithely enticing warth| +4268|652303|39843|3|24|30126.48|0.00|0.00|R|F|1994-10-07|1994-10-18|1994-10-29|TAKE BACK RETURN|MAIL|y after the blithely silen| +4268|241938|16947|4|46|86476.32|0.08|0.05|A|F|1994-12-14|1994-12-02|1994-12-25|COLLECT COD|FOB|about the ir| +4269|613159|38184|1|16|17153.92|0.10|0.07|N|O|1995-10-09|1995-08-24|1995-11-01|DELIVER IN PERSON|AIR|y. carefully ironic ideas ar| +4270|469220|31730|1|20|23784.00|0.04|0.04|A|F|1995-03-06|1995-04-07|1995-03-30|TAKE BACK RETURN|AIR|s above the regular,| +4270|173357|35861|2|2|2860.70|0.03|0.06|A|F|1995-03-30|1995-04-04|1995-04-13|DELIVER IN PERSON|REG AIR|ful theodol| +4270|604435|29460|3|16|21430.40|0.02|0.02|A|F|1995-02-24|1995-03-19|1995-02-28|NONE|FOB|iously regular courts use. ironic packag| +4270|724237|36752|4|34|42880.80|0.08|0.07|R|F|1995-04-11|1995-03-21|1995-05-04|DELIVER IN PERSON|FOB|ely silent packages haggle quickly near t| +4271|15999|28500|1|4|7659.96|0.00|0.05|N|O|1996-03-14|1996-04-22|1996-03-21|COLLECT COD|REG AIR|gular foxes promise slyly | +4271|882344|7379|2|9|11936.70|0.10|0.03|N|O|1996-03-08|1996-05-04|1996-03-10|COLLECT COD|AIR|s. even packages use slyly sl| +4271|541020|41021|3|17|18037.00|0.06|0.02|N|O|1996-03-31|1996-03-31|1996-04-08|TAKE BACK RETURN|MAIL|efully special foxes. care| +4296|435390|22915|1|1|1325.37|0.05|0.07|N|O|1997-05-21|1997-05-26|1997-06-11|DELIVER IN PERSON|MAIL|pecial frays. un| +4297|666104|41131|1|19|20331.33|0.01|0.04|N|O|1996-03-04|1996-02-20|1996-03-05|TAKE BACK RETURN|SHIP|ar requests. final deposits are r| +4298|846688|46689|1|32|52308.48|0.05|0.04|R|F|1992-03-01|1992-03-07|1992-03-05|COLLECT COD|AIR|s sublate bravely. accounts need| +4298|280449|5460|2|25|35735.75|0.05|0.00|A|F|1992-03-31|1992-02-23|1992-04-11|NONE|TRUCK| blithely ironic instruction| +4298|504181|41712|3|37|43850.92|0.00|0.03|A|F|1992-04-13|1992-04-18|1992-05-13|DELIVER IN PERSON|REG AIR| sleep blith| +4299|518873|31384|1|29|54863.65|0.07|0.00|R|F|1992-07-19|1992-07-12|1992-08-17|TAKE BACK RETURN|REG AIR|pinto beans.| +4299|688006|38007|2|41|40752.77|0.08|0.08|A|F|1992-07-08|1992-08-07|1992-07-17|COLLECT COD|AIR|nic deposits after the ironic dep| +4299|302019|39538|3|46|46966.00|0.04|0.04|R|F|1992-07-31|1992-09-05|1992-08-24|COLLECT COD|FOB|nto beans use| +4299|25941|25942|4|47|87746.18|0.02|0.06|A|F|1992-09-28|1992-07-09|1992-10-06|TAKE BACK RETURN|AIR| according to the express,| +4299|979334|4373|5|23|32505.67|0.10|0.02|A|F|1992-08-21|1992-07-13|1992-08-24|NONE|SHIP|ilent foxes dete| +4300|686639|49153|1|41|66649.60|0.05|0.07|R|F|1995-04-04|1995-05-18|1995-04-15|COLLECT COD|RAIL|n requests haggle furiously. f| +4300|332979|7992|2|8|16095.68|0.04|0.08|N|O|1995-07-04|1995-05-08|1995-07-05|NONE|RAIL| ideas. carefully final packages accord| +4301|523108|23109|1|5|5655.40|0.01|0.03|A|F|1993-12-21|1993-10-29|1994-01-10|TAKE BACK RETURN|TRUCK|y carefully ironic foxes. b| +4301|873366|35884|2|38|50894.16|0.10|0.06|R|F|1993-10-12|1993-12-19|1993-11-08|NONE|AIR|nts cajole. carefully special warthogs abou| +4301|645560|45561|3|1|1505.53|0.08|0.07|A|F|1993-11-11|1993-11-08|1993-11-20|DELIVER IN PERSON|TRUCK|unts. packages can thra| +4302|709943|34972|1|12|23434.92|0.10|0.03|A|F|1994-12-10|1995-01-17|1995-01-09|DELIVER IN PERSON|SHIP| asymptotes. fluffily pending d| +4302|995568|45569|2|3|4990.56|0.09|0.03|R|F|1995-03-16|1995-01-02|1995-04-11|NONE|MAIL|ar dependencies. bli| +4302|497481|35009|3|34|50267.64|0.07|0.00|R|F|1995-01-22|1995-02-21|1995-02-12|COLLECT COD|REG AIR|oss the ideas? carefully regular acc| +4302|154181|41691|4|39|48172.02|0.06|0.05|R|F|1995-02-16|1995-02-04|1995-02-25|COLLECT COD|FOB|s. final pinto beans| +4302|316975|29482|5|36|71710.56|0.02|0.03|A|F|1995-03-31|1995-01-04|1995-04-06|TAKE BACK RETURN|SHIP|enly pending packages| +4302|385215|10230|6|14|18202.80|0.06|0.03|R|F|1994-12-07|1995-03-01|1994-12-24|DELIVER IN PERSON|REG AIR|y regular pinto beans. carefully bold pa| +4303|885608|48126|1|4|6374.24|0.01|0.08|N|O|1996-05-31|1996-06-15|1996-06-23|DELIVER IN PERSON|AIR|lithely regular pinto beans. furiously e| +4328|372015|22016|1|30|32610.00|0.02|0.05|A|F|1992-04-29|1992-06-02|1992-05-20|TAKE BACK RETURN|RAIL|the furiously| +4328|455887|30906|2|14|25800.04|0.03|0.02|A|F|1992-04-04|1992-06-19|1992-04-18|TAKE BACK RETURN|REG AIR|e after the pending requests. careful| +4328|81740|31741|3|7|12052.18|0.07|0.02|A|F|1992-05-19|1992-05-25|1992-05-28|TAKE BACK RETURN|RAIL| wake slyly about the slyly special account| +4328|796461|34007|4|41|63854.63|0.08|0.01|R|F|1992-07-10|1992-06-15|1992-07-15|NONE|FOB|ffily regular pinto beans| +4328|116780|4287|5|1|1796.78|0.01|0.01|R|F|1992-05-03|1992-06-10|1992-05-08|TAKE BACK RETURN|MAIL|tructions nag furiously carefully regular r| +4328|709124|21639|6|29|32859.61|0.04|0.00|A|F|1992-07-04|1992-05-04|1992-07-31|NONE|MAIL| quickly quickly ironic orbits. expr| +4329|466795|4323|1|8|14094.16|0.09|0.06|N|O|1996-11-19|1996-11-26|1996-11-20|NONE|AIR|sly final foxes b| +4329|412569|25078|2|13|19260.02|0.01|0.03|N|O|1996-09-24|1996-11-01|1996-10-20|NONE|AIR|instructions wake above the c| +4329|46184|8685|3|14|15822.52|0.10|0.01|N|O|1996-09-13|1996-10-10|1996-10-12|NONE|RAIL|posits cajole blit| +4329|199526|24533|4|4|6502.08|0.05|0.07|N|O|1996-09-28|1996-11-15|1996-10-04|NONE|FOB|eposits should have to poach. blit| +4330|303731|28744|1|16|27755.52|0.07|0.04|N|O|1996-12-06|1996-12-30|1996-12-09|NONE|MAIL|r, special pinto beans boost sly| +4330|790157|40158|2|46|57367.52|0.09|0.05|N|O|1997-03-02|1997-01-26|1997-03-08|COLLECT COD|MAIL|haggle past the qui| +4330|154408|29415|3|45|65808.00|0.00|0.06|N|O|1996-11-23|1996-12-16|1996-12-19|NONE|TRUCK|regular packages are across the furiously | +4331|216528|29033|1|18|26001.18|0.10|0.00|N|O|1995-08-08|1995-07-15|1995-08-27|COLLECT COD|FOB|ymptotes. furio| +4331|177995|40499|2|47|97430.53|0.10|0.05|R|F|1995-06-06|1995-07-19|1995-06-16|NONE|SHIP|ial instructions wake fluffily. silent pa| +4332|350522|523|1|23|36167.73|0.04|0.01|A|F|1993-09-13|1993-09-11|1993-10-09|TAKE BACK RETURN|REG AIR|ges. furiously regu| +4332|206757|44270|2|39|64885.86|0.02|0.08|R|F|1993-10-29|1993-09-13|1993-10-30|DELIVER IN PERSON|MAIL|indle. furiou| +4332|959668|22188|3|13|22459.06|0.04|0.06|A|F|1993-08-05|1993-10-05|1993-08-12|TAKE BACK RETURN|FOB|gs wake furi| +4332|137270|37271|4|8|10458.16|0.08|0.01|A|F|1993-08-19|1993-09-07|1993-08-20|DELIVER IN PERSON|MAIL|after the slyly even packag| +4332|94564|32068|5|11|17144.16|0.09|0.00|R|F|1993-10-25|1993-09-11|1993-11-04|NONE|RAIL|osits cajole a| +4333|611976|24489|1|4|7551.76|0.01|0.02|R|F|1992-10-22|1992-09-08|1992-10-25|NONE|MAIL|final deposits. pending requests after| +4333|470056|45075|2|6|6156.18|0.04|0.04|R|F|1992-10-11|1992-09-08|1992-10-20|TAKE BACK RETURN|REG AIR|ounts. carefully| +4334|692898|5412|1|11|20799.46|0.09|0.06|A|F|1993-02-13|1993-03-16|1993-03-07|DELIVER IN PERSON|FOB|s. carefully even asymptotes about the | +4334|526700|14231|2|36|62160.48|0.01|0.01|A|F|1993-01-28|1993-04-06|1993-02-04|DELIVER IN PERSON|REG AIR|onic instructions use fluffily packages. | +4334|234254|46759|3|16|19011.84|0.02|0.07|R|F|1993-01-27|1993-02-25|1993-02-19|NONE|FOB|posits are| +4335|151747|14251|1|36|64754.64|0.05|0.02|A|F|1992-12-16|1992-10-25|1993-01-08|NONE|AIR|ts; slyly regula| +4335|406586|31603|2|31|46269.36|0.07|0.07|R|F|1992-11-22|1992-11-19|1992-12-09|COLLECT COD|REG AIR|le dependen| +4335|482144|7163|3|30|33783.60|0.06|0.02|R|F|1992-08-30|1992-11-02|1992-09-04|COLLECT COD|REG AIR|ate quickly slyly even packages. ca| +4335|386089|36090|4|40|47002.80|0.00|0.05|R|F|1992-08-29|1992-10-30|1992-09-04|NONE|FOB|. furiously special packages cajole | +4335|983511|8550|5|37|58995.39|0.05|0.03|A|F|1992-08-29|1992-10-26|1992-09-17|TAKE BACK RETURN|RAIL|r foxes haggle. a| +4360|200355|356|1|19|23851.46|0.02|0.03|R|F|1992-01-24|1992-02-11|1992-02-04|COLLECT COD|REG AIR| accounts may use blithely p| +4360|357195|44717|2|5|6260.90|0.01|0.02|R|F|1992-02-22|1992-03-13|1992-02-25|DELIVER IN PERSON|RAIL|orbits; even platelets engage permanen| +4360|365586|15587|3|10|16515.70|0.06|0.00|R|F|1992-03-18|1992-02-16|1992-03-22|TAKE BACK RETURN|FOB| slyly regular deposits haggle fur| +4360|400854|855|4|19|33341.77|0.05|0.05|R|F|1992-02-19|1992-03-24|1992-03-12|DELIVER IN PERSON|FOB|beans haggle furiously regular foxe| +4360|137457|24964|5|36|53800.20|0.01|0.01|A|F|1992-03-21|1992-01-31|1992-03-30|COLLECT COD|MAIL|s alongside of the blith| +4361|731707|19250|1|12|20864.04|0.08|0.03|R|F|1994-12-22|1994-12-16|1994-12-25|COLLECT COD|SHIP|onic accounts. sly| +4361|784993|47509|2|21|43637.16|0.02|0.03|R|F|1994-11-06|1995-01-13|1994-11-15|COLLECT COD|RAIL|round the ca| +4361|373513|11035|3|29|46008.50|0.01|0.03|R|F|1994-12-27|1994-11-26|1995-01-14|COLLECT COD|AIR|nusual dependencies. quickly regular pa| +4361|617727|42752|4|21|34538.49|0.02|0.00|R|F|1994-11-06|1995-01-15|1994-11-08|TAKE BACK RETURN|RAIL|nal foxes. r| +4361|122923|35426|5|9|17513.28|0.04|0.04|R|F|1995-01-06|1995-01-10|1995-01-25|NONE|TRUCK|t. carefully pending theodolites after the| +4361|952161|2162|6|46|55803.52|0.02|0.03|R|F|1994-11-12|1995-01-18|1994-12-03|DELIVER IN PERSON|REG AIR|s. even deposits s| +4362|639542|14567|1|50|74075.50|0.07|0.00|A|F|1992-09-18|1992-08-05|1992-10-15|NONE|REG AIR| special pinto beans. silent foxes around t| +4362|771363|8909|2|46|65979.18|0.00|0.00|A|F|1992-06-29|1992-08-29|1992-07-23|DELIVER IN PERSON|SHIP|even pinto bea| +4362|284281|9292|3|20|25305.40|0.07|0.02|R|F|1992-06-30|1992-08-06|1992-07-29|COLLECT COD|RAIL|fily final in| +4362|908219|20738|4|45|55222.65|0.09|0.04|R|F|1992-09-09|1992-07-23|1992-09-22|COLLECT COD|MAIL|ully silent accounts use never. ac| +4362|425320|37829|5|48|59774.40|0.08|0.02|A|F|1992-06-24|1992-09-13|1992-07-19|DELIVER IN PERSON|FOB|to beans boost slyly blithely regular du| +4362|337519|37520|6|38|59147.00|0.03|0.06|A|F|1992-09-12|1992-09-02|1992-10-10|NONE|TRUCK|hely even ideas. exc| +4363|232184|32185|1|15|16742.55|0.06|0.00|R|F|1992-02-28|1992-03-28|1992-03-14|NONE|RAIL|. pending accounts impress slyly final s| +4363|310759|10760|2|34|60171.16|0.06|0.01|R|F|1992-03-11|1992-03-07|1992-03-17|TAKE BACK RETURN|MAIL|ts haggle carefully carefully e| +4363|915653|3208|3|16|26697.76|0.09|0.07|R|F|1992-03-11|1992-03-16|1992-03-23|TAKE BACK RETURN|RAIL| final theodolites are sl| +4363|374518|37026|4|50|79625.00|0.01|0.07|R|F|1992-05-04|1992-02-24|1992-05-09|DELIVER IN PERSON|TRUCK| may are carefully across the special r| +4363|513582|1113|5|21|33506.76|0.02|0.02|A|F|1992-04-19|1992-03-16|1992-04-30|DELIVER IN PERSON|FOB| requests at the furiously even packages h| +4363|766864|41895|6|41|79164.03|0.04|0.02|A|F|1992-01-16|1992-02-22|1992-01-20|COLLECT COD|RAIL|refully special requests| +4363|679112|29113|7|43|46916.44|0.01|0.02|R|F|1992-01-06|1992-02-17|1992-01-30|NONE|RAIL|he quickly regular requests? regular asym| +4364|834966|9999|1|6|11405.52|0.03|0.01|A|F|1994-05-20|1994-06-03|1994-06-10|COLLECT COD|RAIL|s are slyly silent | +4364|264055|26561|2|6|6114.24|0.09|0.08|R|F|1994-06-26|1994-06-02|1994-07-26|TAKE BACK RETURN|AIR|ular braids run blit| +4364|964298|39337|3|34|46316.50|0.08|0.07|R|F|1994-06-30|1994-07-18|1994-07-17|TAKE BACK RETURN|REG AIR|aggle past the carefully unusual | +4364|942416|4935|4|23|33542.51|0.01|0.08|A|F|1994-05-07|1994-06-15|1994-05-21|NONE|SHIP|ously ironi| +4364|176989|14499|5|22|45451.56|0.02|0.00|A|F|1994-05-21|1994-06-13|1994-05-24|TAKE BACK RETURN|REG AIR|ully ironic pinto beans cajole | +4365|153658|28665|1|26|44502.90|0.07|0.08|N|O|1997-12-13|1997-12-31|1997-12-20|TAKE BACK RETURN|RAIL|telets haggle furiously depen| +4365|514610|14611|2|5|8122.95|0.09|0.03|N|O|1997-12-08|1998-01-15|1998-01-04|COLLECT COD|FOB|ajole carefully instead of the furiously re| +4365|45664|20665|3|27|43460.82|0.01|0.01|N|O|1997-11-19|1997-11-27|1997-12-08|TAKE BACK RETURN|MAIL|ke above the blithely re| +4366|808338|45887|1|38|47359.02|0.06|0.05|N|O|1996-10-23|1996-11-29|1996-10-26|TAKE BACK RETURN|AIR|ckly. carefully idle sauternes wake b| +4366|728195|15738|2|40|48926.40|0.07|0.08|N|O|1996-11-03|1996-10-30|1996-11-21|DELIVER IN PERSON|TRUCK|slyly pending| +4366|759573|9574|3|16|26120.64|0.02|0.07|N|O|1996-09-15|1996-10-25|1996-09-29|DELIVER IN PERSON|SHIP|structions above the carefully special | +4366|132938|32939|4|14|27593.02|0.04|0.06|N|O|1996-12-23|1996-11-24|1996-12-24|DELIVER IN PERSON|RAIL|unusual deposits. f| +4366|284450|34451|5|30|43033.20|0.09|0.05|N|O|1997-01-05|1996-11-11|1997-01-19|NONE|FOB|. carefully even platelets sl| +4366|745724|8239|6|3|5309.07|0.05|0.05|N|O|1996-10-17|1996-11-08|1996-10-25|COLLECT COD|RAIL|ess dolphins; slyly ironic epitaphs from th| +4367|336318|48825|1|9|12188.70|0.02|0.08|A|F|1992-05-06|1992-05-18|1992-06-02|COLLECT COD|REG AIR|re excuses.| +4367|495075|45076|2|14|14980.70|0.03|0.02|A|F|1992-03-05|1992-05-14|1992-03-18|COLLECT COD|FOB| carefully express courts sleep | +4367|723479|23480|3|20|30048.80|0.01|0.03|A|F|1992-07-01|1992-04-16|1992-07-15|DELIVER IN PERSON|TRUCK|. furiously even id| +4367|496476|34004|4|42|61842.90|0.08|0.01|A|F|1992-03-06|1992-04-06|1992-03-18|NONE|REG AIR|ronic deposits haggle bl| +4367|270574|45585|5|42|64871.52|0.10|0.07|R|F|1992-05-25|1992-05-20|1992-06-09|COLLECT COD|MAIL|ongside of| +4367|529672|42183|6|31|52751.15|0.06|0.03|R|F|1992-04-29|1992-04-25|1992-05-17|COLLECT COD|REG AIR|ing to the bli| +4392|219138|31643|1|24|25370.88|0.10|0.05|R|F|1995-04-24|1995-04-30|1995-05-17|DELIVER IN PERSON|FOB|deposits sleep s| +4392|41821|4322|2|25|44070.50|0.10|0.02|N|F|1995-06-10|1995-06-08|1995-06-22|NONE|AIR|the even deposits. ironic in| +4392|876574|39092|3|21|32561.13|0.04|0.00|A|F|1995-04-25|1995-04-26|1995-05-01|TAKE BACK RETURN|REG AIR|yly ironic foxes. special| +4392|567045|4579|4|21|23352.42|0.07|0.04|R|F|1995-04-19|1995-05-09|1995-05-05|TAKE BACK RETURN|MAIL|y after the carefully final packages. pen| +4393|547450|9961|1|36|53907.48|0.06|0.06|A|F|1992-04-05|1992-03-25|1992-05-03|DELIVER IN PERSON|MAIL|multipliers. special| +4393|976212|1251|2|3|3864.51|0.04|0.05|A|F|1992-03-15|1992-04-30|1992-03-22|COLLECT COD|MAIL|ake about the bold deposits. pinto beans | +4393|181748|6755|3|39|71359.86|0.00|0.03|R|F|1992-02-10|1992-03-06|1992-02-11|NONE|TRUCK|integrate acro| +4393|635718|23255|4|45|74415.60|0.09|0.02|R|F|1992-05-22|1992-03-25|1992-05-27|DELIVER IN PERSON|RAIL|he furiously| +4393|508106|20617|5|2|2228.16|0.06|0.04|A|F|1992-04-16|1992-03-25|1992-05-08|DELIVER IN PERSON|TRUCK|sits detect above the carefully silent de| +4393|721303|8846|6|48|63564.96|0.04|0.08|R|F|1992-04-11|1992-03-01|1992-04-15|COLLECT COD|RAIL|blithely pending somas are spe| +4394|154080|29087|1|46|52167.68|0.10|0.02|N|O|1996-03-24|1996-04-05|1996-04-12|COLLECT COD|RAIL|eposits wake care| +4395|935064|22619|1|16|17584.32|0.01|0.08|N|O|1996-04-05|1996-05-25|1996-04-20|NONE|TRUCK|ounts. blithely pe| +4396|446227|33752|1|25|29330.00|0.08|0.03|R|F|1993-09-16|1993-08-17|1993-10-07|COLLECT COD|RAIL|according to the express requests are furio| +4396|721980|9523|2|46|92089.70|0.05|0.08|A|F|1993-08-30|1993-08-11|1993-09-11|TAKE BACK RETURN|FOB|s sleep fluffily furiously even depo| +4396|311580|36593|3|23|36606.11|0.05|0.03|A|F|1993-08-01|1993-08-16|1993-08-07|NONE|AIR|le furiously reque| +4396|719068|19069|4|31|33697.93|0.01|0.03|A|F|1993-10-31|1993-09-15|1993-11-18|TAKE BACK RETURN|AIR| pinto beans maintain qu| +4397|452340|39868|1|34|43938.88|0.00|0.06|R|F|1994-01-23|1994-01-10|1994-02-14|DELIVER IN PERSON|AIR| final ideas. quickly regular | +4397|465648|3176|2|36|58090.32|0.10|0.01|A|F|1993-11-29|1993-12-23|1993-12-12|DELIVER IN PERSON|SHIP|ng to the slyly regular instructions. c| +4397|135940|10945|3|22|43470.68|0.07|0.06|A|F|1993-11-05|1993-12-30|1993-11-19|TAKE BACK RETURN|FOB|ctions affix above the furiously | +4397|738627|1142|4|3|4996.77|0.01|0.08|A|F|1993-12-16|1993-12-03|1994-01-09|NONE|REG AIR|ins nag furiously carefully c| +4397|89168|39169|5|26|30086.16|0.04|0.00|A|F|1993-12-10|1993-11-25|1993-12-22|NONE|AIR|uffily regular packages according to the| +4397|645717|45718|6|32|53205.76|0.03|0.06|A|F|1993-11-30|1994-01-16|1993-12-09|TAKE BACK RETURN|SHIP|st carefully quickly regular| +4397|555288|42822|7|25|33581.50|0.10|0.02|R|F|1994-01-02|1994-01-01|1994-01-05|COLLECT COD|FOB|ys ironic instructions| +4398|716828|4371|1|48|88549.92|0.07|0.06|A|F|1993-11-30|1993-10-23|1993-12-13|COLLECT COD|FOB|pecial, regular forges. re| +4398|720388|7931|2|17|23941.95|0.00|0.02|A|F|1993-10-05|1993-11-08|1993-10-21|COLLECT COD|RAIL| instructions boost. blithely final pac| +4399|373468|10990|1|19|29287.55|0.04|0.04|N|O|1997-03-11|1997-03-11|1997-03-19|NONE|REG AIR| the furiously pending ideas. furiousl| +4399|863703|38738|2|38|63333.08|0.06|0.02|N|O|1997-02-16|1997-02-26|1997-02-27|NONE|AIR|quickly against | +4399|246262|33775|3|45|54371.25|0.03|0.00|N|O|1997-01-28|1997-04-17|1997-02-09|TAKE BACK RETURN|MAIL|. idle, final ideas main| +4399|912999|13000|4|25|50298.75|0.00|0.06|N|O|1997-03-11|1997-02-17|1997-03-18|COLLECT COD|MAIL|ss, ironic deposits. quickly idle | +4399|771805|21806|5|3|5630.31|0.09|0.07|N|O|1997-01-24|1997-04-05|1997-01-30|TAKE BACK RETURN|AIR|aids should nag against the e| +4399|712821|12822|6|9|16504.11|0.04|0.03|N|O|1997-04-21|1997-03-22|1997-05-05|DELIVER IN PERSON|TRUCK|ing foxes; blithely regular packages poac| +4399|367515|5037|7|47|74377.50|0.10|0.04|N|O|1997-05-08|1997-04-07|1997-06-04|DELIVER IN PERSON|RAIL|tes. carefully silent packages use. flu| +4424|817777|42810|1|26|44062.98|0.08|0.01|N|O|1997-01-16|1996-12-27|1997-02-06|TAKE BACK RETURN|FOB|nal requests detect| +4424|365937|40952|2|19|38055.48|0.10|0.08|N|O|1996-11-10|1996-12-20|1996-11-27|COLLECT COD|MAIL|riously final | +4424|292396|29912|3|32|44428.16|0.10|0.00|N|O|1996-10-04|1996-11-09|1996-10-19|COLLECT COD|SHIP|ly express dol| +4424|285153|35154|4|11|12519.54|0.01|0.00|N|O|1997-01-15|1996-11-03|1997-01-17|COLLECT COD|MAIL|leep. accounts sho| +4425|100237|25242|1|17|21032.91|0.03|0.07|N|O|1998-10-02|1998-07-31|1998-10-11|DELIVER IN PERSON|REG AIR|symptotes sleep: final,| +4425|666751|29265|2|35|60120.20|0.06|0.04|N|O|1998-10-23|1998-07-30|1998-10-31|NONE|SHIP|luffily final pac| +4425|78155|3158|3|17|19263.55|0.02|0.03|N|O|1998-08-16|1998-08-05|1998-09-11|DELIVER IN PERSON|MAIL|fully unusual requests. s| +4425|550605|606|4|25|41389.50|0.05|0.04|N|O|1998-08-26|1998-08-30|1998-09-22|DELIVER IN PERSON|TRUCK|y pending requests are slyly furi| +4425|5060|42561|5|13|12545.78|0.09|0.01|N|O|1998-06-25|1998-08-16|1998-07-14|TAKE BACK RETURN|REG AIR| players. pending, express reques| +4426|695574|20601|1|9|14125.86|0.02|0.03|N|O|1996-01-20|1995-11-01|1996-02-12|TAKE BACK RETURN|REG AIR|thely bold theo| +4426|512216|37237|2|30|36845.70|0.01|0.07|N|O|1995-11-02|1995-12-23|1995-11-10|TAKE BACK RETURN|AIR|hout the carefull| +4426|811309|11310|3|15|18303.90|0.08|0.04|N|O|1996-01-10|1995-11-06|1996-01-15|COLLECT COD|AIR|tions impress. final realms affix s| +4426|666559|16560|4|45|68648.40|0.01|0.02|N|O|1995-12-11|1995-12-15|1995-12-24|NONE|AIR|s alongside of| +4426|842014|42015|5|32|30591.04|0.05|0.08|N|O|1995-11-16|1995-12-09|1995-11-21|NONE|REG AIR|its cajole after t| +4426|727510|15053|6|32|49199.36|0.02|0.06|N|O|1996-01-08|1995-12-04|1996-01-17|TAKE BACK RETURN|MAIL|accounts wake blithely. a| +4427|877160|14712|1|24|27290.88|0.05|0.04|N|O|1998-01-24|1998-04-21|1998-01-27|NONE|AIR|equests unwind fu| +4427|424991|37500|2|4|7663.88|0.02|0.08|N|O|1998-03-09|1998-04-02|1998-03-21|TAKE BACK RETURN|FOB|blithely silent r| +4427|823701|11250|3|20|32493.20|0.03|0.06|N|O|1998-05-19|1998-03-29|1998-06-02|TAKE BACK RETURN|REG AIR|ly express pearls boost; regular foxe| +4428|686484|36485|1|38|55877.10|0.04|0.08|R|F|1992-07-13|1992-05-07|1992-08-09|COLLECT COD|FOB|ely even packages. clos| +4428|734656|9685|2|36|60862.32|0.04|0.08|A|F|1992-07-04|1992-05-10|1992-08-01|TAKE BACK RETURN|RAIL|le even dependencies.| +4428|354266|29281|3|33|43568.25|0.10|0.02|A|F|1992-05-09|1992-05-14|1992-05-10|NONE|SHIP|-ray acros| +4428|133865|46368|4|31|58864.66|0.02|0.06|R|F|1992-05-27|1992-05-13|1992-06-13|COLLECT COD|REG AIR|l pinto beans. express pac| +4428|865303|15304|5|22|27901.72|0.07|0.04|A|F|1992-04-23|1992-06-09|1992-05-13|TAKE BACK RETURN|AIR|as. regular accounts wake furi| +4429|898704|48705|1|7|11918.62|0.00|0.01|N|O|1997-08-24|1997-07-30|1997-09-04|DELIVER IN PERSON|TRUCK|ggle slyly after t| +4429|502824|15335|2|30|54804.00|0.04|0.00|N|O|1997-08-11|1997-08-20|1997-08-19|COLLECT COD|TRUCK|refully final f| +4429|956008|31047|3|7|7447.72|0.08|0.02|N|O|1997-06-27|1997-08-06|1997-07-15|TAKE BACK RETURN|REG AIR|ments sleep quickly ironic frets. s| +4429|624105|24106|4|39|40133.73|0.03|0.08|N|O|1997-05-29|1997-07-03|1997-06-08|COLLECT COD|FOB|uffily ironic| +4429|331886|31887|5|4|7671.48|0.01|0.08|N|O|1997-08-21|1997-07-03|1997-08-22|NONE|TRUCK|riously bold packages| +4429|3857|3858|6|35|61629.75|0.00|0.02|N|O|1997-09-13|1997-07-04|1997-09-20|TAKE BACK RETURN|TRUCK|fily ironic grouches| +4429|818225|43258|7|41|46870.38|0.02|0.01|N|O|1997-06-12|1997-07-27|1997-07-07|NONE|TRUCK|ross the quickly silent foxes. | +4430|907536|32573|1|1|1543.49|0.02|0.04|N|O|1995-07-01|1995-06-03|1995-07-22|TAKE BACK RETURN|SHIP| across the| +4430|946579|34134|2|7|11378.71|0.09|0.07|R|F|1995-04-12|1995-04-18|1995-04-14|TAKE BACK RETURN|RAIL| attainments are blithely pending, bo| +4430|152094|2095|3|18|20629.62|0.04|0.01|A|F|1995-04-11|1995-05-04|1995-05-11|TAKE BACK RETURN|FOB|uriously according to th| +4430|243265|5770|4|36|43497.00|0.02|0.02|R|F|1995-04-19|1995-06-13|1995-05-18|NONE|TRUCK|he slyly ironic request| +4430|549945|49946|5|10|19949.20|0.06|0.03|N|O|1995-07-12|1995-05-02|1995-07-23|COLLECT COD|SHIP|ual instructions solve | +4430|922827|22828|6|5|9248.90|0.10|0.04|N|O|1995-07-08|1995-05-19|1995-07-13|NONE|RAIL|ions. slyly regular asymptotes boos| +4430|951045|38603|7|49|53704.00|0.01|0.05|N|O|1995-07-01|1995-04-29|1995-07-23|COLLECT COD|MAIL|thely regular account| +4431|212031|49544|1|42|39606.84|0.10|0.05|R|F|1994-12-13|1994-10-23|1994-12-30|TAKE BACK RETURN|RAIL|he quickly special packages boos| +4431|604969|17482|2|21|39352.53|0.10|0.04|A|F|1994-09-08|1994-11-28|1994-09-17|COLLECT COD|RAIL|es wake pinto beans. packages ar| +4431|710834|23349|3|37|68257.60|0.00|0.05|R|F|1994-11-23|1994-11-18|1994-12-05|TAKE BACK RETURN|AIR|inos cajole quickly alongside of the| +4431|975958|997|4|4|8135.64|0.00|0.04|R|F|1994-11-02|1994-11-09|1994-11-26|COLLECT COD|AIR|doggedly idly regular requests. careful| +4431|925463|13018|5|36|53583.12|0.10|0.04|R|F|1994-10-28|1994-11-27|1994-11-03|TAKE BACK RETURN|SHIP|ironic accounts. stealthily ironic pinto be| +4456|892208|42209|1|38|45606.08|0.07|0.05|N|O|1996-07-14|1996-07-07|1996-07-24|COLLECT COD|RAIL|ests cajole quietly blithely ironic excuses| +4456|333410|8423|2|7|10103.80|0.05|0.04|N|O|1996-07-11|1996-07-05|1996-07-23|NONE|TRUCK|foxes. silent, special pinto beans use blit| +4457|225440|12953|1|38|51886.34|0.01|0.05|N|O|1997-04-30|1997-05-20|1997-05-22|DELIVER IN PERSON|SHIP| ironic waters. slyly regu| +4457|962431|24951|2|18|26881.02|0.10|0.06|N|O|1997-04-18|1997-04-23|1997-04-29|TAKE BACK RETURN|AIR|ions haggle c| +4457|572199|22200|3|34|43219.78|0.08|0.06|N|O|1997-04-23|1997-04-12|1997-05-01|DELIVER IN PERSON|TRUCK|among the sl| +4457|943832|31387|4|15|28136.85|0.05|0.00|N|O|1997-06-12|1997-04-13|1997-07-06|TAKE BACK RETURN|AIR|ic pinto beans nag. blithely pending | +4458|538909|1420|1|41|79863.08|0.08|0.05|N|O|1996-09-18|1996-07-27|1996-10-05|DELIVER IN PERSON|AIR|ngly final theodolites affix among| +4458|427741|27742|2|19|31705.68|0.05|0.02|N|O|1996-08-16|1996-08-30|1996-08-18|TAKE BACK RETURN|RAIL| pending accounts are. careful| +4458|30617|43118|3|30|46428.30|0.07|0.05|N|O|1996-08-25|1996-07-14|1996-09-14|NONE|AIR|ntegrate! blithely | +4458|567117|4651|4|26|30786.34|0.07|0.08|N|O|1996-06-25|1996-08-09|1996-06-30|DELIVER IN PERSON|MAIL|uickly pending instructions. quic| +4459|598402|48403|1|43|64516.34|0.10|0.08|R|F|1993-11-11|1993-12-20|1993-11-18|COLLECT COD|SHIP|ng warthogs| +4459|336965|11978|2|37|74072.15|0.10|0.05|R|F|1993-12-23|1993-11-19|1994-01-16|COLLECT COD|AIR|ag carefully against the carefully busy d| +4460|626012|13549|1|12|11255.76|0.07|0.02|N|O|1998-01-27|1998-01-10|1998-02-02|TAKE BACK RETURN|RAIL|riously final packa| +4460|381667|19189|2|32|55956.80|0.04|0.08|N|O|1997-12-20|1997-12-15|1998-01-10|DELIVER IN PERSON|TRUCK|ss the regular package| +4461|745214|20243|1|22|27701.96|0.01|0.07|N|O|1997-05-10|1997-05-26|1997-05-12|DELIVER IN PERSON|AIR|ess platelets nag blithely | +4462|294924|19935|1|8|15351.28|0.00|0.05|A|F|1994-01-09|1994-01-15|1994-01-24|TAKE BACK RETURN|SHIP|ic, silent packages-- packages alo| +4462|774058|24059|2|26|29432.52|0.04|0.01|A|F|1993-12-08|1994-01-22|1993-12-12|DELIVER IN PERSON|SHIP|ets. carefully express re| +4462|577679|40191|3|13|22836.45|0.06|0.05|A|F|1994-02-17|1994-02-13|1994-03-10|DELIVER IN PERSON|MAIL|e requests are furiously carefully regular | +4462|50322|12824|4|28|35624.96|0.05|0.05|R|F|1994-02-08|1994-01-08|1994-03-07|TAKE BACK RETURN|REG AIR|ven platelets cajole after the final foxe| +4463|570996|8530|1|41|84745.77|0.10|0.01|A|F|1994-02-04|1994-02-19|1994-02-15|NONE|MAIL|the slowly final sentiments. ironic a| +4463|724329|11872|2|22|29772.38|0.05|0.06|A|F|1994-04-10|1994-03-19|1994-04-29|DELIVER IN PERSON|RAIL|arefully special instructions. | +4463|793156|30702|3|30|37473.60|0.01|0.08|R|F|1994-01-21|1994-02-05|1994-02-20|TAKE BACK RETURN|TRUCK|re. blithely regular foxes | +4463|557384|44918|4|23|33151.28|0.02|0.05|R|F|1994-04-06|1994-02-23|1994-04-22|COLLECT COD|REG AIR|y even accounts use carefully ac| +4488|794180|6696|1|3|3822.45|0.07|0.05|A|F|1994-05-16|1994-04-29|1994-06-09|COLLECT COD|FOB|nic platelets. final theo| +4489|964846|27366|1|9|17197.20|0.07|0.00|A|F|1993-07-27|1993-07-17|1993-08-25|NONE|FOB| the fluffily pending | +4489|162356|49866|2|44|62407.40|0.07|0.00|R|F|1993-08-24|1993-08-23|1993-08-31|NONE|AIR|hang accordi| +4489|715226|27741|3|29|35994.51|0.09|0.01|R|F|1993-06-21|1993-07-13|1993-07-05|NONE|RAIL|ully bold ideas haggle. slyly | +4489|801677|14194|4|42|66302.46|0.02|0.05|A|F|1993-07-22|1993-07-14|1993-08-03|COLLECT COD|RAIL|ronic platelets cajole carefully. packa| +4489|777977|27978|5|17|34933.98|0.05|0.05|R|F|1993-07-28|1993-07-05|1993-08-22|NONE|MAIL|en deposits. requests are| +4489|458131|33150|6|2|2178.22|0.06|0.04|A|F|1993-08-29|1993-08-25|1993-09-24|DELIVER IN PERSON|MAIL|blithely blithe asymptotes. i| +4489|792615|17646|7|8|13660.64|0.01|0.07|A|F|1993-08-27|1993-07-16|1993-09-16|NONE|REG AIR|ht wake quickly regular deposits.| +4490|473286|23287|1|1|1259.26|0.07|0.04|N|O|1998-02-23|1998-03-11|1998-03-09|TAKE BACK RETURN|MAIL|ut the furiously pending foxes. even pinto | +4491|814673|2222|1|6|9525.78|0.06|0.03|N|O|1998-06-14|1998-04-25|1998-07-14|COLLECT COD|RAIL|etect quickly. quickly re| +4491|200180|25189|2|35|37805.95|0.06|0.04|N|O|1998-05-06|1998-04-20|1998-05-13|DELIVER IN PERSON|REG AIR|d, special theodolites. blithely bold pea| +4491|423911|23912|3|48|88074.72|0.02|0.03|N|O|1998-05-29|1998-04-12|1998-06-12|DELIVER IN PERSON|REG AIR| regular asymptotes. slyly even accounts r| +4491|660279|10280|4|48|59483.52|0.09|0.01|N|O|1998-06-01|1998-04-19|1998-06-20|DELIVER IN PERSON|AIR|ependencies are ruthless| +4491|304121|29134|5|31|34878.41|0.06|0.06|N|O|1998-04-02|1998-05-03|1998-04-08|DELIVER IN PERSON|AIR|. slyly final courts print slyly am| +4491|361262|23770|6|48|63516.00|0.04|0.07|N|O|1998-04-19|1998-05-09|1998-05-01|NONE|RAIL|cial sentiments.| +4491|728249|40764|7|26|33207.46|0.03|0.04|N|O|1998-05-14|1998-05-18|1998-05-16|DELIVER IN PERSON|SHIP|cording to| +4492|668034|30548|1|37|37074.00|0.10|0.00|A|F|1994-12-06|1994-11-27|1994-12-18|TAKE BACK RETURN|MAIL|onic ideas. furiously ironic r| +4492|644773|44774|2|45|77298.30|0.04|0.06|A|F|1994-10-28|1994-12-22|1994-11-08|COLLECT COD|FOB|express instruc| +4492|683435|33436|3|23|32623.20|0.03|0.08|A|F|1994-10-18|1994-12-24|1994-11-11|DELIVER IN PERSON|SHIP|ons around th| +4492|477087|2106|4|17|18089.02|0.09|0.03|R|F|1994-10-26|1994-11-12|1994-11-25|NONE|TRUCK|regular dep| +4492|393792|6300|5|2|3771.56|0.07|0.06|R|F|1994-12-30|1994-11-10|1995-01-25|NONE|FOB|. regularly reg| +4493|303219|40738|1|26|31777.20|0.04|0.02|R|F|1992-09-21|1992-08-08|1992-09-25|DELIVER IN PERSON|SHIP|nts cajole quickly above the| +4494|542785|42786|1|45|82249.20|0.09|0.00|N|O|1998-02-01|1998-01-14|1998-02-27|COLLECT COD|AIR|ronic ideas. f| +4494|576387|1410|2|34|49754.24|0.05|0.05|N|O|1998-02-05|1998-01-20|1998-02-06|COLLECT COD|FOB|into beans ca| +4495|697881|35421|1|22|41334.70|0.10|0.04|N|O|1995-08-19|1995-07-12|1995-09-13|DELIVER IN PERSON|REG AIR|st fluffily packages. c| +4495|277491|2502|2|6|8810.88|0.10|0.05|N|O|1995-09-14|1995-07-23|1995-10-13|COLLECT COD|MAIL|thely regular | +4495|785104|47620|3|21|24970.47|0.10|0.06|N|O|1995-06-22|1995-08-21|1995-06-28|COLLECT COD|SHIP|special reque| +4520|482498|32499|1|29|42933.63|0.05|0.01|N|O|1996-10-18|1996-09-05|1996-10-19|COLLECT COD|FOB| shall have to boost packages. pin| +4521|950609|13129|1|41|68041.96|0.04|0.02|R|F|1993-01-16|1992-11-20|1993-02-09|COLLECT COD|RAIL|s affix quickly slowly ev| +4521|873816|36334|2|50|89488.50|0.07|0.02|A|F|1993-01-08|1992-11-07|1993-01-10|NONE|REG AIR|usly unusual requests. pa| +4521|223286|23287|3|15|18139.05|0.09|0.08|R|F|1992-12-18|1992-12-04|1992-12-22|TAKE BACK RETURN|MAIL| haggle fluffily near the c| +4521|759400|34431|4|44|64212.28|0.07|0.02|A|F|1992-11-27|1992-11-20|1992-12-11|TAKE BACK RETURN|RAIL| excuses. carefully pe| +4522|562921|12922|1|27|53565.30|0.10|0.08|N|O|1998-06-22|1998-05-21|1998-07-11|DELIVER IN PERSON|RAIL|s integrate furiously. pending, even p| +4523|462674|12675|1|6|9819.90|0.03|0.04|A|F|1995-03-05|1995-01-25|1995-03-25|NONE|FOB|ully. even, special i| +4523|152958|40468|2|20|40219.00|0.06|0.04|R|F|1994-12-28|1994-12-20|1995-01-23|TAKE BACK RETURN|TRUCK|ross the bold, regular deposits. pending p| +4523|759255|34286|3|19|24970.18|0.06|0.07|R|F|1995-02-11|1995-01-25|1995-03-07|COLLECT COD|TRUCK|l, unusual accounts.| +4524|31648|19149|1|7|11057.48|0.05|0.07|A|F|1994-11-25|1994-10-10|1994-12-02|TAKE BACK RETURN|SHIP|ual deposits integra| +4525|632973|32974|1|13|24777.22|0.00|0.02|A|F|1992-08-15|1992-07-09|1992-08-18|COLLECT COD|RAIL|its affix. carefully pending requests | +4525|369436|19437|2|19|28602.98|0.00|0.01|A|F|1992-09-05|1992-08-31|1992-09-09|COLLECT COD|MAIL|xes. silent packa| +4525|103467|40974|3|13|19115.98|0.01|0.02|A|F|1992-08-30|1992-07-31|1992-09-27|COLLECT COD|SHIP|st carefully besid| +4525|968786|31306|4|9|16692.66|0.10|0.01|R|F|1992-07-02|1992-08-17|1992-07-12|COLLECT COD|FOB|ate. account| +4526|869838|19839|1|2|3615.58|0.02|0.04|N|O|1995-08-05|1995-07-25|1995-08-23|COLLECT COD|AIR|ages integrate slyly express ideas. slyly| +4526|353269|28284|2|14|18511.50|0.09|0.03|N|O|1995-08-29|1995-08-22|1995-09-27|COLLECT COD|FOB|eep express deposits. sly| +4526|379174|4189|3|11|13784.76|0.00|0.07|N|O|1995-07-07|1995-09-14|1995-07-19|COLLECT COD|RAIL|. theodolites are slyly packages. careful p| +4527|676733|26734|1|20|34194.00|0.04|0.05|A|F|1994-06-23|1994-07-17|1994-06-26|COLLECT COD|FOB|usly silent dependencies use. ironic, si| +4527|841616|16649|2|43|66975.51|0.01|0.05|A|F|1994-05-27|1994-06-27|1994-05-29|COLLECT COD|RAIL|regular, final packages cajole. car| +4552|333622|8635|1|20|33112.20|0.05|0.04|A|F|1994-04-03|1994-03-03|1994-04-09|DELIVER IN PERSON|MAIL|ess accounts. | +4552|177877|2884|2|30|58646.10|0.08|0.00|A|F|1994-03-09|1994-02-19|1994-04-01|TAKE BACK RETURN|MAIL|y blithely regular depos| +4552|574962|12496|3|4|8147.76|0.07|0.05|A|F|1994-04-19|1994-02-22|1994-04-24|COLLECT COD|AIR|ly above the carefully bold theo| +4553|742890|30433|1|13|25127.18|0.02|0.04|A|F|1993-10-18|1993-10-16|1993-10-24|COLLECT COD|FOB| blithely against the requests. slyly even | +4553|736715|24258|2|42|73570.56|0.05|0.03|R|F|1993-08-07|1993-10-25|1993-08-22|TAKE BACK RETURN|FOB| express deposits grow furiously thin | +4553|953337|15857|3|24|33366.96|0.07|0.08|R|F|1993-08-22|1993-09-20|1993-09-01|TAKE BACK RETURN|SHIP|t the silent requests. regular tithe| +4554|895276|7794|1|2|2542.46|0.01|0.02|A|F|1994-01-25|1994-01-18|1994-02-16|COLLECT COD|FOB|final requests. bold | +4554|894657|44658|2|19|31380.59|0.10|0.07|R|F|1994-03-19|1994-01-31|1994-03-20|TAKE BACK RETURN|RAIL|ly according to the quick deposits. acco| +4554|498875|11385|3|28|52467.80|0.00|0.03|A|F|1994-03-20|1994-03-04|1994-04-02|COLLECT COD|RAIL| the quickly even platelets prin| +4554|591809|4321|4|13|24710.14|0.07|0.00|R|F|1994-02-26|1994-01-08|1994-03-20|DELIVER IN PERSON|TRUCK|excuses. fur| +4554|531127|31128|5|12|13897.20|0.05|0.08|A|F|1994-01-04|1994-02-19|1994-01-12|TAKE BACK RETURN|RAIL|hall unwind carefully according to | +4554|643593|31130|6|50|76828.00|0.05|0.01|R|F|1993-12-12|1994-02-07|1993-12-31|TAKE BACK RETURN|TRUCK| accounts. furiously ironic ideas above th| +4554|856604|6605|7|39|60861.84|0.10|0.08|R|F|1994-03-23|1994-02-15|1994-03-30|NONE|TRUCK|egular deposits. excuses detect| +4555|931486|31487|1|5|7587.20|0.00|0.05|R|F|1995-04-27|1995-06-08|1995-05-25|NONE|TRUCK|t packages haggle slyly above the furiousl| +4555|473679|11207|2|16|26442.40|0.02|0.03|N|O|1995-07-18|1995-06-13|1995-07-28|NONE|SHIP|ingly furious| +4556|581447|18981|1|47|71835.74|0.04|0.00|R|F|1994-06-30|1994-04-25|1994-07-05|DELIVER IN PERSON|FOB|g the furiously silent deposits n| +4556|377890|27891|2|9|17710.92|0.01|0.04|A|F|1994-04-27|1994-06-03|1994-05-09|NONE|TRUCK|, final asympto| +4556|181137|18647|3|42|51161.46|0.04|0.00|R|F|1994-05-25|1994-06-12|1994-06-17|COLLECT COD|FOB|ven pinto beans. special dolphins use slyly| +4556|354929|42451|4|20|39678.20|0.05|0.06|R|F|1994-07-18|1994-04-26|1994-08-03|COLLECT COD|RAIL| deposits. blithely regular plate| +4556|285761|48267|5|4|6987.00|0.04|0.07|A|F|1994-05-24|1994-06-10|1994-06-17|NONE|REG AIR|es integrate carefully among the | +4556|769620|19621|6|10|16895.90|0.09|0.02|A|F|1994-04-02|1994-04-19|1994-04-19|NONE|REG AIR|g against the bold, even ideas? theodo| +4556|993891|18930|7|12|23818.20|0.05|0.03|R|F|1994-06-20|1994-04-19|1994-07-19|TAKE BACK RETURN|RAIL|ges haggle furiously careful| +4557|316111|16112|1|28|31558.80|0.03|0.00|R|F|1993-06-09|1993-04-28|1993-07-02|NONE|MAIL|sual accounts sleep bli| +4558|913968|13969|1|11|21801.12|0.09|0.07|N|O|1998-05-31|1998-07-25|1998-06-17|TAKE BACK RETURN|SHIP|the furiously final| +4558|48508|48509|2|48|69912.00|0.03|0.08|N|O|1998-06-21|1998-08-19|1998-07-20|DELIVER IN PERSON|TRUCK|s the fina| +4558|270804|33310|3|35|62117.65|0.03|0.00|N|O|1998-06-12|1998-08-10|1998-06-24|COLLECT COD|SHIP|lyly furiously | +4558|401822|1823|4|2|3447.60|0.01|0.00|N|O|1998-08-02|1998-08-16|1998-08-10|COLLECT COD|AIR| bold platelets. slyly p| +4558|422041|47058|5|38|36594.76|0.02|0.00|N|O|1998-09-03|1998-07-08|1998-09-08|TAKE BACK RETURN|AIR| beans use blithely above the p| +4558|241531|41532|6|50|73626.00|0.08|0.03|N|O|1998-08-02|1998-08-16|1998-08-22|NONE|RAIL|. accounts sleep furiously along the unus| +4559|196654|21661|1|18|31511.70|0.04|0.01|N|O|1996-06-08|1996-06-20|1996-06-16|TAKE BACK RETURN|AIR|thogs. even, e| +4559|157196|7197|2|3|3759.57|0.01|0.07|N|O|1996-05-31|1996-07-01|1996-06-24|COLLECT COD|SHIP| ironic accounts det| +4559|978159|3198|3|19|23505.09|0.00|0.06|N|O|1996-08-05|1996-07-08|1996-08-11|COLLECT COD|SHIP|ts wake. even, pending account| +4559|903156|28193|4|18|20863.98|0.04|0.01|N|O|1996-06-02|1996-07-06|1996-06-28|COLLECT COD|RAIL|ke carefully. special packages sle| +4559|341846|29365|5|21|39644.43|0.03|0.00|N|O|1996-06-12|1996-06-21|1996-07-10|DELIVER IN PERSON|SHIP|lithely at the | +4584|67744|5248|1|33|56487.42|0.03|0.07|N|O|1998-08-15|1998-08-29|1998-09-14|NONE|AIR|ial theodolites. flu| +4584|557465|32488|2|26|39583.44|0.06|0.03|N|O|1998-09-13|1998-07-12|1998-10-12|COLLECT COD|RAIL|sual dinos sleep fluffily alongsi| +4585|102274|27279|1|39|49774.53|0.08|0.07|A|F|1993-05-16|1993-04-07|1993-06-01|COLLECT COD|SHIP|s. fluffily| +4585|908001|20520|2|47|47421.12|0.00|0.03|R|F|1993-05-17|1993-03-23|1993-06-06|DELIVER IN PERSON|AIR|ly pending deposits. care| +4585|765052|27568|3|2|2234.04|0.09|0.02|A|F|1993-03-15|1993-03-17|1993-04-03|TAKE BACK RETURN|RAIL|s. even, ironic deposits| +4585|218609|6122|4|20|30551.80|0.05|0.03|R|F|1993-06-15|1993-04-28|1993-06-25|DELIVER IN PERSON|MAIL|furiously according to| +4586|207555|45068|1|4|5850.16|0.04|0.02|R|F|1992-09-04|1992-08-04|1992-09-06|NONE|AIR| requests along the slyly regular tithes na| +4586|360228|22736|2|8|10305.68|0.09|0.05|R|F|1992-07-17|1992-07-22|1992-07-20|DELIVER IN PERSON|TRUCK|re furious| +4586|347338|47339|3|44|60954.08|0.01|0.05|A|F|1992-09-03|1992-08-19|1992-09-09|NONE|TRUCK|al packages according to the requests | +4586|706597|19112|4|28|44899.68|0.01|0.02|R|F|1992-06-05|1992-08-25|1992-07-04|NONE|RAIL|fully special acc| +4587|767366|17367|1|30|42999.90|0.04|0.02|N|O|1996-05-07|1996-08-02|1996-06-04|TAKE BACK RETURN|RAIL|y final instructions run against the | +4587|119476|44481|2|46|68791.62|0.09|0.06|N|O|1996-05-26|1996-07-09|1996-06-07|COLLECT COD|REG AIR|cial deposits. quickly| +4588|652|38153|1|45|69869.25|0.05|0.03|N|O|1997-10-24|1997-12-28|1997-11-01|COLLECT COD|FOB|oxes wake around| +4589|251604|26615|1|2|3111.18|0.06|0.02|A|F|1994-09-21|1994-11-07|1994-09-23|NONE|FOB|final deposits cajole carefully special dep| +4589|696974|34514|2|32|63070.08|0.02|0.08|A|F|1994-12-12|1994-11-01|1994-12-23|COLLECT COD|TRUCK|press packag| +4589|41241|16242|3|17|20098.08|0.01|0.06|R|F|1994-11-26|1994-10-08|1994-12-16|TAKE BACK RETURN|TRUCK|at the slyly| +4589|123752|36255|4|44|78133.00|0.06|0.00|A|F|1994-12-06|1994-11-02|1994-12-29|COLLECT COD|RAIL|ments nod blithely express packages.| +4589|883889|21441|5|48|89896.32|0.08|0.07|A|F|1994-09-14|1994-11-12|1994-09-26|DELIVER IN PERSON|SHIP|ding to the quickly ironic asymptotes| +4590|329850|29851|1|21|39476.64|0.04|0.03|N|F|1995-06-16|1995-07-11|1995-06-30|DELIVER IN PERSON|REG AIR|ans shall sleep furiously furiously i| +4591|742401|17430|1|49|70725.13|0.10|0.05|N|O|1998-06-01|1998-05-28|1998-06-04|NONE|AIR|arefully s| +4616|813028|38061|1|39|36698.22|0.08|0.07|N|O|1998-06-17|1998-05-17|1998-06-24|NONE|FOB| packages around the carefull| +4616|547622|10133|2|49|81810.40|0.04|0.02|N|O|1998-06-24|1998-03-31|1998-07-05|COLLECT COD|SHIP|f the quickly careful ideas x-ray | +4616|876265|38783|3|6|7447.32|0.05|0.02|N|O|1998-05-24|1998-04-19|1998-06-02|NONE|FOB|ve the sly| +4616|377607|2622|4|23|38745.57|0.00|0.03|N|O|1998-03-21|1998-05-09|1998-04-08|COLLECT COD|SHIP|blithely express dependencies ab| +4616|432252|7269|5|8|9473.84|0.07|0.06|N|O|1998-04-08|1998-04-12|1998-04-27|NONE|RAIL|ests up the carefully regular p| +4616|855840|30875|6|30|53874.00|0.04|0.01|N|O|1998-03-13|1998-05-15|1998-03-26|TAKE BACK RETURN|AIR|y pending courts dazzle c| +4616|88359|13362|7|3|4042.05|0.06|0.07|N|O|1998-05-22|1998-03-27|1998-06-13|DELIVER IN PERSON|RAIL|ses! quickly final| +4617|42571|17572|1|6|9081.42|0.02|0.07|N|O|1998-09-13|1998-07-23|1998-09-19|DELIVER IN PERSON|SHIP|long the accounts boost furiously against| +4618|220837|20838|1|22|38672.04|0.07|0.03|N|O|1996-10-08|1996-10-30|1996-11-04|COLLECT COD|AIR|ding accounts boost. final, ironi| +4618|596047|33581|2|29|33147.58|0.05|0.02|N|O|1996-10-21|1996-10-28|1996-11-07|NONE|TRUCK|nic instructions. never| +4618|761254|11255|3|13|17097.86|0.01|0.06|N|O|1996-12-19|1996-12-10|1997-01-03|COLLECT COD|SHIP| furiously pe| +4618|383282|45790|4|38|51880.26|0.00|0.03|N|O|1996-12-12|1996-10-23|1996-12-27|COLLECT COD|AIR|ole slowly busily unusual pack| +4618|819892|44925|5|39|70662.15|0.03|0.07|N|O|1996-11-29|1996-12-08|1996-12-21|COLLECT COD|AIR| furiously idle instructions| +4618|918511|43548|6|40|61178.80|0.10|0.01|N|O|1996-12-03|1996-11-18|1996-12-31|DELIVER IN PERSON|FOB|l dependencies detect slyly abo| +4618|398771|36293|7|43|80399.68|0.00|0.03|N|O|1996-09-29|1996-11-05|1996-10-26|COLLECT COD|SHIP|otes boost blithely ironic, even in| +4619|136102|36103|1|43|48938.30|0.03|0.04|R|F|1994-09-14|1994-11-06|1994-10-13|COLLECT COD|FOB|ns. furiously slow theodolites above| +4619|456576|19086|2|27|41378.85|0.04|0.04|A|F|1994-12-21|1994-10-14|1994-12-23|DELIVER IN PERSON|REG AIR|usly. slyly ironic theodolites sle| +4619|663773|38800|3|23|39945.02|0.09|0.07|R|F|1994-10-02|1994-10-11|1994-10-23|DELIVER IN PERSON|REG AIR|e blithely against the slyly unusual foxes-| +4620|254744|4745|1|28|47564.44|0.05|0.03|R|F|1992-11-19|1992-12-22|1992-11-27|TAKE BACK RETURN|MAIL|onic instr| +4620|469901|44920|2|4|7483.52|0.10|0.00|A|F|1993-02-16|1992-12-19|1993-03-05|DELIVER IN PERSON|FOB| cajole carefully r| +4620|611330|11331|3|8|9930.40|0.07|0.04|A|F|1992-11-26|1992-11-24|1992-12-15|COLLECT COD|RAIL| pinto beans det| +4620|609521|22034|4|4|5721.96|0.08|0.07|A|F|1992-11-27|1992-11-26|1992-12-19|TAKE BACK RETURN|REG AIR|the furiously regular accounts. furiously s| +4620|212044|37053|5|19|18164.57|0.07|0.02|R|F|1993-01-10|1993-01-11|1993-02-08|COLLECT COD|RAIL|unts. always unusua| +4620|810576|10577|6|30|44595.90|0.08|0.02|A|F|1993-02-19|1992-12-14|1993-02-28|TAKE BACK RETURN|AIR|ly quick foxes. furiously f| +4621|483378|33379|1|11|14974.85|0.05|0.02|R|F|1992-06-16|1992-07-21|1992-07-12|TAKE BACK RETURN|REG AIR|t the ironic, regular theodolites? pac| +4621|123079|48084|2|8|8816.56|0.07|0.05|R|F|1992-04-30|1992-06-12|1992-05-04|COLLECT COD|SHIP|bold foxes. unusual deposit| +4621|584646|9669|3|50|86531.00|0.06|0.02|R|F|1992-05-04|1992-06-05|1992-05-13|DELIVER IN PERSON|SHIP|sometimes | +4621|142072|17077|4|37|41220.59|0.04|0.05|A|F|1992-07-30|1992-07-09|1992-08-06|COLLECT COD|MAIL|ronic deposits are blithely regular, | +4621|801321|38870|5|5|6111.40|0.07|0.02|A|F|1992-06-01|1992-05-24|1992-06-04|TAKE BACK RETURN|FOB|ully bold accoun| +4621|788387|38388|6|25|36883.75|0.06|0.00|A|F|1992-05-02|1992-06-12|1992-05-18|COLLECT COD|TRUCK|sleep. blithely final foxes affix fluf| +4621|405025|5026|7|8|7440.00|0.05|0.01|R|F|1992-06-29|1992-05-26|1992-07-05|DELIVER IN PERSON|MAIL| depths-- final deposit| +4622|239091|1596|1|49|50473.92|0.04|0.00|R|F|1995-06-10|1995-04-28|1995-06-16|COLLECT COD|FOB|ackages integrate blithely across the eve| +4622|399474|24489|2|7|11014.22|0.09|0.02|A|F|1995-03-10|1995-03-12|1995-03-16|TAKE BACK RETURN|AIR|affix among the even e| +4622|952550|15070|3|42|67305.42|0.02|0.00|R|F|1995-05-27|1995-04-08|1995-06-11|DELIVER IN PERSON|AIR|dolites doze quickly among the bli| +4622|497559|22578|4|18|28017.54|0.01|0.08|A|F|1995-02-19|1995-04-26|1995-02-24|DELIVER IN PERSON|MAIL| excuses-- regul| +4622|469356|44375|5|10|13253.30|0.03|0.01|R|F|1995-05-20|1995-03-17|1995-06-03|DELIVER IN PERSON|REG AIR|ly pending deposits? furiously regular i| +4622|453045|3046|6|48|47904.96|0.05|0.07|A|F|1995-03-14|1995-05-07|1995-04-08|COLLECT COD|AIR|s. regular, express deposits after the thi| +4622|325978|991|7|22|44087.12|0.01|0.08|A|F|1995-04-19|1995-05-04|1995-04-23|NONE|MAIL|l pinto beans. fluffily brave| +4623|709302|9303|1|8|10490.16|0.03|0.05|N|O|1995-10-19|1995-09-18|1995-11-13|COLLECT COD|RAIL|deas! slyly reg| +4623|223251|35756|2|13|15265.12|0.02|0.00|N|O|1995-07-26|1995-10-16|1995-08-23|DELIVER IN PERSON|TRUCK|e quickly pending theodolites.| +4623|175889|25890|3|10|19648.80|0.00|0.05|N|O|1995-07-23|1995-09-22|1995-08-04|DELIVER IN PERSON|TRUCK|lithe fray| +4623|165843|3353|4|44|83988.96|0.05|0.00|N|O|1995-09-02|1995-09-19|1995-10-01|TAKE BACK RETURN|MAIL|instructions breach finally express r| +4623|312944|37957|5|14|27397.02|0.06|0.03|N|O|1995-08-08|1995-09-05|1995-08-14|NONE|AIR|lithely furiously pending foxes. | +4623|633667|46180|6|23|36814.49|0.00|0.06|N|O|1995-10-18|1995-09-06|1995-10-31|TAKE BACK RETURN|SHIP|s. carefully speci| +4648|64270|1774|1|43|53073.61|0.01|0.08|N|O|1995-08-07|1995-07-18|1995-08-10|NONE|REG AIR|: ironic instructions wake across the c| +4648|176843|1850|2|37|71034.08|0.09|0.06|N|O|1995-08-19|1995-07-12|1995-09-14|COLLECT COD|RAIL|eas. slyly unusual packages cajole slyly. | +4648|196509|9013|3|1|1605.50|0.09|0.07|N|O|1995-06-21|1995-08-21|1995-07-07|DELIVER IN PERSON|RAIL|even dolphins. blithely ev| +4648|717482|29997|4|49|73473.05|0.09|0.07|N|F|1995-06-14|1995-07-10|1995-07-14|COLLECT COD|RAIL|e carefully according to the s| +4648|703461|3462|5|37|54183.91|0.07|0.05|N|O|1995-07-17|1995-08-11|1995-08-10|DELIVER IN PERSON|REG AIR| deposits | +4648|56069|6070|6|47|48177.82|0.00|0.05|A|F|1995-05-28|1995-07-09|1995-06-10|DELIVER IN PERSON|SHIP|efully pending deposits nag| +4649|869648|19649|1|20|32352.00|0.02|0.04|A|F|1995-05-21|1995-07-17|1995-06-01|TAKE BACK RETURN|TRUCK|o beans. regular, ironic| +4650|344233|6740|1|41|52366.02|0.09|0.01|N|O|1997-11-15|1997-11-22|1997-11-19|NONE|FOB|ight sleep. theodolites poach blithely e| +4650|523231|48252|2|14|17558.94|0.02|0.04|N|O|1998-01-23|1997-11-20|1998-01-27|TAKE BACK RETURN|REG AIR|re according to the slyly bold i| +4650|938259|778|3|43|55780.03|0.07|0.08|N|O|1997-12-21|1997-12-04|1997-12-28|NONE|SHIP|packages. quickly expres| +4651|743076|5591|1|30|33571.20|0.07|0.06|R|F|1994-02-04|1994-01-17|1994-02-12|NONE|REG AIR|osits mold. final ideas affix q| +4652|541520|4031|1|45|70267.50|0.04|0.07|R|F|1993-09-03|1993-09-21|1993-09-27|DELIVER IN PERSON|FOB|ronic theodolites b| +4652|322105|34612|2|9|10143.81|0.05|0.01|R|F|1993-07-21|1993-08-11|1993-08-08|DELIVER IN PERSON|TRUCK|lyly blithe| +4652|609249|34274|3|2|2316.42|0.02|0.03|A|F|1993-07-17|1993-09-16|1993-07-31|DELIVER IN PERSON|FOB|iously bold depos| +4652|639965|27502|4|38|72387.34|0.06|0.06|R|F|1993-07-03|1993-09-04|1993-07-15|COLLECT COD|AIR|eposits ha| +4652|881658|19210|5|46|75422.06|0.02|0.05|A|F|1993-08-18|1993-08-17|1993-08-19|NONE|REG AIR|phins. fluffily bold a| +4653|363423|13424|1|21|31214.61|0.00|0.02|A|F|1993-12-30|1994-02-09|1994-01-07|NONE|AIR|onic packages boost. quickly even acc| +4653|36544|24045|2|43|63663.22|0.02|0.01|R|F|1993-12-12|1994-02-07|1993-12-29|DELIVER IN PERSON|RAIL|kly even foxes wake fluffily among| +4653|194771|44772|3|32|59704.64|0.04|0.00|R|F|1994-02-25|1994-01-08|1994-03-08|COLLECT COD|FOB|ing pinto be| +4653|501238|38769|4|36|44611.56|0.08|0.08|R|F|1993-12-07|1994-02-13|1993-12-09|NONE|MAIL|arefully iron| +4653|300357|358|5|46|62437.64|0.02|0.00|R|F|1994-03-10|1994-02-21|1994-03-23|TAKE BACK RETURN|REG AIR|ding to the even accoun| +4654|68492|43495|1|45|65722.05|0.06|0.04|N|O|1996-07-18|1996-08-26|1996-08-16|DELIVER IN PERSON|TRUCK|ffy accounts are slyly slyly final dep| +4654|137970|473|2|12|24095.64|0.05|0.00|N|O|1996-09-30|1996-08-09|1996-10-02|DELIVER IN PERSON|TRUCK|deas boost. slyly regular d| +4654|850882|25917|3|50|91642.00|0.02|0.05|N|O|1996-09-10|1996-08-17|1996-09-17|DELIVER IN PERSON|RAIL| theodolites c| +4654|770241|45272|4|42|55070.82|0.10|0.03|N|O|1996-10-03|1996-08-22|1996-10-23|TAKE BACK RETURN|FOB|refully across the ironic request| +4654|426801|26802|5|32|55288.96|0.06|0.00|N|O|1996-07-03|1996-08-05|1996-07-26|COLLECT COD|RAIL|ross the furiously ironi| +4654|238444|949|6|11|15206.73|0.10|0.03|N|O|1996-08-29|1996-07-26|1996-09-16|NONE|REG AIR|oost thinly| +4655|17652|5153|1|46|72203.90|0.07|0.01|A|F|1992-05-12|1992-07-07|1992-05-26|DELIVER IN PERSON|FOB| accounts wake. furiously unusual the| +4655|675996|13536|2|8|15775.68|0.09|0.00|A|F|1992-05-04|1992-06-11|1992-05-18|COLLECT COD|MAIL|n requests. special forges | +4655|451910|39438|3|39|72613.71|0.09|0.06|R|F|1992-06-09|1992-07-28|1992-07-02|NONE|RAIL|st the slyly special| +4655|248882|36395|4|9|16477.83|0.05|0.02|R|F|1992-06-15|1992-07-25|1992-06-21|NONE|FOB|ironic deposits cajol| +4655|957653|45211|5|29|49607.69|0.04|0.04|R|F|1992-08-15|1992-07-02|1992-08-18|DELIVER IN PERSON|FOB|, regular deposits| +4655|270583|8099|6|26|40392.82|0.07|0.02|A|F|1992-07-10|1992-07-06|1992-08-09|NONE|RAIL|ding to the| +4655|674671|12211|7|37|60888.68|0.08|0.02|R|F|1992-08-05|1992-07-03|1992-08-18|DELIVER IN PERSON|AIR|iously ironic accounts are carefully. | +4680|181194|18704|1|22|28054.18|0.06|0.01|N|O|1996-09-30|1996-08-20|1996-10-08|NONE|TRUCK|ests. quickly regular accounts| +4680|318942|18943|2|47|92163.71|0.03|0.04|N|O|1996-08-27|1996-09-09|1996-08-28|NONE|MAIL|xpress depend| +4680|452815|15325|3|48|84853.92|0.10|0.01|N|O|1996-08-07|1996-08-22|1996-08-23|DELIVER IN PERSON|TRUCK|ct blithely above the even, regular request| +4680|455181|17691|4|40|45446.40|0.10|0.04|N|O|1996-09-08|1996-08-13|1996-10-01|TAKE BACK RETURN|AIR|totes integrate carefully furious| +4680|223891|48900|5|6|10889.28|0.05|0.06|N|O|1996-08-07|1996-09-06|1996-08-08|TAKE BACK RETURN|RAIL|s boost carefully abov| +4681|14495|26996|1|7|9866.43|0.07|0.00|N|O|1996-10-05|1996-09-24|1996-10-24|DELIVER IN PERSON|MAIL| furiously unu| +4681|602733|15246|2|38|62156.60|0.09|0.00|N|O|1996-08-16|1996-09-19|1996-08-25|NONE|AIR|nic dolphins sleep alon| +4681|119201|31704|3|21|25624.20|0.05|0.05|N|O|1996-11-18|1996-09-15|1996-11-30|NONE|FOB|he foxes. special requests hagg| +4681|408874|21383|4|36|64182.60|0.01|0.06|N|O|1996-09-04|1996-10-01|1996-09-08|DELIVER IN PERSON|FOB|thely ironic deposits| +4682|690519|40520|1|23|34718.04|0.10|0.02|N|O|1996-08-31|1996-06-18|1996-09-14|COLLECT COD|RAIL|dle carefully| +4683|813062|611|1|19|18525.38|0.05|0.00|N|O|1997-08-25|1997-07-08|1997-08-27|COLLECT COD|AIR|iously bold de| +4683|132001|7006|2|11|11363.00|0.05|0.00|N|O|1997-09-13|1997-08-27|1997-09-27|COLLECT COD|SHIP|fix furiously final deposi| +4684|769975|7521|1|42|85887.48|0.05|0.03|A|F|1993-04-07|1993-05-18|1993-04-13|TAKE BACK RETURN|FOB|tornis. silent, express instructions | +4684|960253|47811|2|30|39396.30|0.04|0.06|A|F|1993-06-22|1993-06-20|1993-07-10|COLLECT COD|MAIL|uickly even| +4684|965061|2619|3|46|51796.92|0.09|0.03|A|F|1993-04-11|1993-05-06|1993-04-17|DELIVER IN PERSON|TRUCK|ly fluffy pinto beans are ironi| +4684|778194|3225|4|42|53430.72|0.02|0.00|R|F|1993-05-24|1993-07-02|1993-05-30|DELIVER IN PERSON|TRUCK|. fluffily regular pinto beans | +4684|94113|19116|5|47|52034.17|0.08|0.03|A|F|1993-04-14|1993-05-28|1993-05-10|DELIVER IN PERSON|FOB|ending deposits. bold theo| +4684|749768|37311|6|44|79980.12|0.09|0.05|A|F|1993-08-01|1993-06-26|1993-08-08|DELIVER IN PERSON|RAIL| affix fluffily regular asymptotes:| +4684|349477|24490|7|11|16791.06|0.06|0.03|R|F|1993-05-26|1993-06-07|1993-06-22|NONE|TRUCK|ructions. ironic depende| +4685|651186|13700|1|34|38663.10|0.02|0.03|A|F|1993-08-19|1993-06-28|1993-09-06|COLLECT COD|AIR|tes. furiously even accounts boost iro| +4685|469413|6941|2|11|15206.29|0.00|0.08|R|F|1993-05-23|1993-07-25|1993-06-03|TAKE BACK RETURN|RAIL|e the carefully close foxes wake | +4685|415290|27799|3|43|51826.61|0.10|0.00|R|F|1993-06-04|1993-07-09|1993-06-15|COLLECT COD|SHIP|lyly special, even| +4685|765493|28009|4|39|60779.94|0.01|0.01|A|F|1993-07-28|1993-06-10|1993-08-16|DELIVER IN PERSON|AIR|carefully ironic theod| +4686|978843|28844|1|16|30748.80|0.00|0.06|A|F|1994-08-09|1994-09-07|1994-08-10|DELIVER IN PERSON|REG AIR|ions. furiously even pac| +4686|401462|13971|2|20|27268.80|0.04|0.03|A|F|1994-08-04|1994-08-30|1994-08-24|COLLECT COD|TRUCK|ckages along the slyly even requests | +4686|371741|34249|3|50|90636.50|0.02|0.04|R|F|1994-07-08|1994-08-12|1994-07-15|COLLECT COD|MAIL|bold packa| +4686|849802|49803|4|26|45545.76|0.07|0.02|A|F|1994-08-27|1994-08-09|1994-08-28|NONE|REG AIR|epths. fluffily | +4686|621133|46158|5|18|18973.80|0.09|0.01|R|F|1994-06-23|1994-08-11|1994-06-24|NONE|SHIP|ies nag. excuses| +4686|373769|23770|6|39|71867.25|0.04|0.08|R|F|1994-09-09|1994-09-18|1994-09-29|TAKE BACK RETURN|FOB|as are quickly quickly bold courts. fluff| +4686|920038|20039|7|41|43377.59|0.04|0.02|R|F|1994-08-28|1994-08-30|1994-08-30|TAKE BACK RETURN|TRUCK|ending ideas. theodolites th| +4687|75821|13325|1|26|46717.32|0.06|0.01|N|O|1996-10-21|1996-11-23|1996-11-15|NONE|TRUCK|fily regular| +4687|309878|47397|2|42|79290.12|0.02|0.03|N|O|1996-12-29|1996-10-07|1997-01-07|TAKE BACK RETURN|MAIL|the ironic, pending packages sleep after t| +4712|245536|20545|1|50|74076.00|0.07|0.06|A|F|1994-10-01|1994-11-11|1994-10-21|TAKE BACK RETURN|RAIL|y pending th| +4712|716276|3819|2|27|34890.48|0.07|0.05|R|F|1994-11-19|1994-10-24|1994-12-02|TAKE BACK RETURN|RAIL| the slyly even ideas | +4712|441233|41234|3|28|32877.88|0.06|0.02|R|F|1994-11-14|1994-10-16|1994-11-30|DELIVER IN PERSON|AIR|ndencies sleep even requests. slyly iro| +4712|800237|25270|4|30|34115.70|0.01|0.01|R|F|1994-09-11|1994-11-28|1994-09-16|NONE|FOB|the furiously un| +4712|580824|43336|5|48|91430.40|0.06|0.04|A|F|1994-12-21|1994-10-17|1995-01-05|TAKE BACK RETURN|TRUCK|o beans unwind? carefu| +4712|896252|21287|6|11|13730.31|0.10|0.01|A|F|1994-09-11|1994-11-21|1994-09-29|COLLECT COD|MAIL|e blithely. slyly unusual th| +4712|304535|29548|7|29|44646.08|0.01|0.08|A|F|1994-12-08|1994-11-26|1994-12-26|TAKE BACK RETURN|AIR|gular theodolites integ| +4713|303862|28875|1|40|74634.00|0.07|0.04|R|F|1995-04-06|1995-02-20|1995-04-30|COLLECT COD|AIR|platelets. permanently bold accounts| +4713|6279|43780|2|12|14223.24|0.04|0.07|A|F|1995-03-17|1995-03-11|1995-03-31|NONE|REG AIR|jole carefull| +4713|526036|38547|3|34|36108.34|0.00|0.00|R|F|1995-01-08|1995-03-22|1995-02-07|NONE|AIR|n blithely| +4714|417100|4625|1|50|50854.00|0.01|0.01|N|O|1998-07-20|1998-07-16|1998-07-29|COLLECT COD|AIR|thely pending deposi| +4715|823911|11460|1|32|58715.84|0.00|0.04|N|O|1996-03-03|1996-01-25|1996-03-31|TAKE BACK RETURN|REG AIR|cally. final, express theodolites detect | +4715|456798|6799|2|10|17547.70|0.08|0.06|N|O|1996-03-07|1996-01-18|1996-03-11|TAKE BACK RETURN|TRUCK|the quickly express ex| +4715|396113|33635|3|2|2418.20|0.10|0.04|N|O|1996-02-19|1996-01-16|1996-03-05|DELIVER IN PERSON|AIR|express dependenci| +4715|468015|43034|4|41|40302.59|0.05|0.05|N|O|1995-11-15|1996-01-29|1995-11-23|COLLECT COD|FOB|jole. ironic| +4715|920670|8225|5|18|30431.34|0.08|0.02|N|O|1996-01-06|1996-01-28|1996-01-07|DELIVER IN PERSON|RAIL|urious dolphins sleep. requests hagg| +4715|693167|30707|6|5|5800.65|0.07|0.08|N|O|1996-02-09|1996-01-03|1996-03-08|TAKE BACK RETURN|AIR|ular account| +4716|357989|45511|1|37|75737.89|0.00|0.05|R|F|1993-03-10|1993-02-08|1993-03-20|COLLECT COD|SHIP|ng to the unusual, iro| +4716|718061|30576|2|13|14027.39|0.08|0.08|A|F|1993-02-25|1993-02-24|1993-03-23|COLLECT COD|RAIL|sits integrate specia| +4717|40181|40182|1|50|56059.00|0.10|0.08|R|F|1992-04-07|1992-04-22|1992-04-21|COLLECT COD|AIR|s foxes along the blithely ironic f| +4717|320585|45598|2|25|40139.25|0.01|0.03|A|F|1992-04-25|1992-06-04|1992-05-21|NONE|RAIL|s are permanent | +4717|64168|1672|3|50|56608.00|0.10|0.05|A|F|1992-06-14|1992-05-30|1992-07-11|NONE|RAIL|. slyly express sheaves again| +4718|834268|9301|1|12|14426.64|0.08|0.02|A|F|1995-02-05|1995-01-20|1995-02-18|COLLECT COD|RAIL| dependencies a| +4718|538291|25822|2|16|21268.32|0.01|0.01|A|F|1995-02-16|1995-02-07|1995-02-17|NONE|AIR| players. final, express requests| +4718|51666|1667|3|25|40441.50|0.07|0.05|A|F|1994-12-10|1995-01-14|1994-12-28|COLLECT COD|REG AIR|out the pending accounts are quickly a| +4718|335701|10714|4|39|67730.91|0.08|0.00|A|F|1995-02-04|1995-01-09|1995-02-10|NONE|MAIL|even deposits use slyl| +4718|120636|33139|5|33|54668.79|0.08|0.04|R|F|1995-02-26|1995-01-29|1995-03-14|TAKE BACK RETURN|AIR|dolites sleep pendin| +4718|519961|19962|6|43|85180.42|0.08|0.00|R|F|1995-01-20|1995-01-14|1995-02-07|DELIVER IN PERSON|TRUCK|pecial excuses sleep ato| +4718|971508|21509|7|1|1579.46|0.10|0.08|R|F|1995-02-28|1995-01-29|1995-03-17|DELIVER IN PERSON|TRUCK|. unusual, bold| +4719|121950|21951|1|48|94653.60|0.10|0.03|N|O|1997-12-29|1997-11-11|1998-01-15|DELIVER IN PERSON|REG AIR|al pinto beans nag care| +4719|598939|11451|2|32|65213.12|0.10|0.06|N|O|1997-11-19|1997-12-22|1997-12-09|COLLECT COD|TRUCK|inal dependencies| +4719|357176|7177|3|11|13564.76|0.05|0.04|N|O|1998-01-28|1997-12-01|1998-02-22|DELIVER IN PERSON|MAIL|counts nag blithely r| +4719|51999|14501|4|11|21460.89|0.06|0.01|N|O|1997-10-31|1997-12-08|1997-11-07|COLLECT COD|REG AIR|e quickly according to the slyl| +4719|944758|19795|5|14|25237.94|0.10|0.01|N|O|1997-11-24|1997-12-20|1997-11-28|TAKE BACK RETURN|REG AIR|e furiously after the silent, silent she| +4719|543407|18428|6|18|26106.84|0.08|0.08|N|O|1997-11-08|1997-11-12|1997-11-25|DELIVER IN PERSON|AIR|ges cajole. slyly even deposit| +4719|31509|31510|7|44|63382.00|0.04|0.00|N|O|1997-11-05|1997-12-02|1997-11-22|TAKE BACK RETURN|RAIL|packages are blithely | +4744|558606|33629|1|28|46608.24|0.08|0.05|N|O|1996-11-05|1996-08-23|1996-11-12|COLLECT COD|RAIL|lithely regular foxes use after th| +4744|475029|12557|2|13|13052.00|0.00|0.00|N|O|1996-10-31|1996-08-17|1996-11-21|TAKE BACK RETURN|FOB|l deposits. asymptotes haggle fu| +4744|801311|13828|3|27|32731.29|0.04|0.01|N|O|1996-07-14|1996-09-10|1996-07-22|TAKE BACK RETURN|SHIP|es haggle among the| +4745|984919|47439|1|12|24046.44|0.06|0.07|R|F|1993-09-05|1993-08-01|1993-09-14|DELIVER IN PERSON|TRUCK|es nag final deposits| +4745|520054|45075|2|31|33294.93|0.02|0.00|R|F|1993-09-05|1993-08-22|1993-09-22|COLLECT COD|REG AIR|ully ironic instructions. slyly regu| +4745|536038|11059|3|49|52626.49|0.06|0.07|R|F|1993-10-27|1993-08-21|1993-11-10|NONE|SHIP|longside of the blithel| +4745|183488|45992|4|33|51858.84|0.07|0.03|A|F|1993-08-12|1993-08-14|1993-09-06|DELIVER IN PERSON|AIR|ithely slowly special accounts. carefull| +4745|880872|30873|5|25|46320.75|0.05|0.06|A|F|1993-10-11|1993-09-12|1993-11-02|COLLECT COD|RAIL|ily ironic ideas are blit| +4745|811798|49347|6|39|66680.25|0.07|0.01|A|F|1993-10-21|1993-08-16|1993-10-27|COLLECT COD|SHIP| dolphins. unusual, even deposits sleep | +4745|886594|49112|7|19|30030.45|0.07|0.07|R|F|1993-06-29|1993-09-09|1993-07-26|NONE|SHIP|l accounts engage. excuse| +4746|980901|5940|1|50|99093.00|0.08|0.02|A|F|1992-03-29|1992-04-19|1992-04-10|DELIVER IN PERSON|MAIL| final sen| +4746|997411|34969|2|40|60334.80|0.04|0.01|R|F|1992-05-07|1992-03-26|1992-05-27|NONE|REG AIR|ainst the special packa| +4746|482734|7753|3|7|12016.97|0.06|0.05|A|F|1992-04-24|1992-03-03|1992-05-05|COLLECT COD|REG AIR| regular dependencies engage blithely along| +4746|306614|19121|4|43|69685.80|0.06|0.07|R|F|1992-03-21|1992-03-22|1992-03-27|COLLECT COD|FOB|eposits. ruthlessly ironic accounts abo| +4747|696852|9366|1|19|35127.58|0.10|0.06|A|F|1994-03-19|1994-04-15|1994-04-13|TAKE BACK RETURN|FOB|onic packages. | +4747|985723|48243|2|44|79581.92|0.04|0.03|R|F|1994-04-26|1994-05-27|1994-05-22|NONE|MAIL|ar pinto beans haggle slyly above the| +4747|39074|26575|3|39|39509.73|0.10|0.08|A|F|1994-05-24|1994-05-02|1994-06-18|DELIVER IN PERSON|TRUCK|al, regular accounts after t| +4747|702067|2068|4|49|52382.47|0.09|0.01|A|F|1994-06-22|1994-04-29|1994-07-20|TAKE BACK RETURN|RAIL| the carefully pending| +4747|637678|25215|5|47|75935.08|0.08|0.02|A|F|1994-06-01|1994-04-29|1994-06-12|NONE|TRUCK|gular packages. bold, ironic theo| +4747|441953|41954|6|36|68217.48|0.07|0.01|R|F|1994-05-22|1994-04-05|1994-06-17|COLLECT COD|SHIP|al deposits sleep furiously | +4747|889153|1671|7|49|55963.39|0.07|0.02|R|F|1994-03-17|1994-04-24|1994-03-21|TAKE BACK RETURN|RAIL|kages affix finally unusua| +4748|978363|3402|1|26|37474.32|0.02|0.05|N|O|1997-09-22|1997-08-14|1997-09-30|NONE|MAIL|es. bold theodolites sleep carefu| +4748|345522|8029|2|40|62700.40|0.09|0.00|N|O|1997-10-23|1997-08-12|1997-10-30|COLLECT COD|AIR|ounts about the blithely special | +4748|185659|35660|3|16|27914.40|0.03|0.06|N|O|1997-07-25|1997-08-16|1997-08-05|COLLECT COD|AIR| ideas wake even packages. alw| +4748|356691|31706|4|37|64664.16|0.08|0.00|N|O|1997-09-18|1997-09-10|1997-09-19|TAKE BACK RETURN|FOB| ideas. bold, silent accounts ca| +4748|904890|4891|5|11|20843.35|0.09|0.07|N|O|1997-08-19|1997-08-22|1997-09-18|DELIVER IN PERSON|SHIP|x. excuses under the flu| +4748|474981|12509|6|49|95842.04|0.02|0.03|N|O|1997-09-13|1997-08-15|1997-10-10|NONE|AIR| the ironic dolphins cajole aga| +4749|499879|24898|1|29|54486.65|0.09|0.08|A|F|1992-12-19|1993-01-28|1992-12-25|NONE|REG AIR|bove the ironic, bold packa| +4749|454270|29289|2|17|20812.25|0.02|0.02|A|F|1993-01-11|1993-03-01|1993-01-13|DELIVER IN PERSON|TRUCK|ggle slyly. unusual foxes sleep| +4749|903327|40882|3|50|66514.00|0.00|0.08|R|F|1993-01-16|1993-02-17|1993-01-28|NONE|AIR|uriously regular accounts along the slyly r| +4750|31291|18792|1|50|61114.50|0.04|0.00|R|F|1994-12-14|1994-12-16|1994-12-15|DELIVER IN PERSON|REG AIR|fluffily express accounts across the| +4751|213316|13317|1|41|50401.30|0.08|0.06|N|O|1996-04-26|1996-05-09|1996-05-13|COLLECT COD|RAIL|ng theodolites. silent instructions are bl| +4751|189947|14954|2|27|54997.38|0.09|0.03|N|O|1996-04-29|1996-06-28|1996-05-11|NONE|MAIL| asymptotes. blithely silent packages sle| +4776|49880|24881|1|14|25618.32|0.00|0.04|R|F|1993-09-01|1993-08-09|1993-09-23|NONE|SHIP|counts. express theodolites wake n| +4776|324103|49116|2|10|11270.90|0.08|0.02|R|F|1993-06-27|1993-07-04|1993-07-10|TAKE BACK RETURN|FOB| according to the regular | +4776|189812|2316|3|39|74170.59|0.09|0.06|A|F|1993-08-16|1993-08-13|1993-08-22|TAKE BACK RETURN|AIR|to beans are carefully across the silent| +4776|169862|32366|4|6|11591.16|0.05|0.08|A|F|1993-09-18|1993-08-18|1993-09-29|NONE|RAIL| print fluffily on the re| +4777|449405|49406|1|10|13543.80|0.02|0.01|A|F|1992-04-25|1992-06-18|1992-05-24|NONE|SHIP|s the pending a| +4778|924230|11785|1|46|57692.74|0.09|0.04|A|F|1994-05-24|1994-06-03|1994-06-12|TAKE BACK RETURN|RAIL|ending, iro| +4778|519749|19750|2|19|33605.68|0.04|0.07|A|F|1994-05-30|1994-05-15|1994-06-08|NONE|AIR|nts sleep. | +4778|421060|46077|3|45|44146.80|0.07|0.06|A|F|1994-06-27|1994-05-27|1994-07-22|COLLECT COD|SHIP|ironic, unusual instructions. packages | +4778|741283|16312|4|29|38403.25|0.08|0.04|R|F|1994-05-03|1994-04-24|1994-05-25|NONE|AIR|e fluffily. regular acc| +4779|671962|46989|1|9|17405.37|0.08|0.05|N|O|1997-01-09|1996-11-05|1997-01-15|DELIVER IN PERSON|TRUCK| foxes affix fu| +4779|659172|46712|2|2|2262.28|0.10|0.07|N|O|1996-12-23|1996-12-09|1997-01-10|DELIVER IN PERSON|REG AIR|lithely ironic requests alo| +4779|694972|44973|3|18|35404.92|0.04|0.01|N|O|1996-10-01|1996-11-01|1996-10-04|NONE|REG AIR|l platelets detect blithely. alwa| +4779|385505|10520|4|33|52486.17|0.02|0.07|N|O|1996-12-20|1996-12-07|1996-12-27|COLLECT COD|AIR|oxes serve blithely. ironi| +4779|173399|48406|5|47|69202.33|0.09|0.04|N|O|1996-12-16|1996-11-13|1997-01-01|NONE|MAIL|regular instructions poach quickly blithel| +4779|316853|16854|6|10|18698.40|0.05|0.05|N|O|1996-10-17|1996-10-26|1996-10-21|COLLECT COD|SHIP|lent, even accounts| +4779|346016|33535|7|31|32922.00|0.00|0.07|N|O|1996-10-31|1996-11-19|1996-11-25|DELIVER IN PERSON|FOB|p slyly regular accou| +4780|478143|15671|1|22|24664.64|0.08|0.04|R|F|1995-05-20|1995-05-21|1995-06-04|COLLECT COD|AIR|ructions wake carefully along the acc| +4780|140883|40884|2|11|21162.68|0.09|0.00|A|F|1995-05-06|1995-06-03|1995-05-14|COLLECT COD|RAIL|riously regular pinto bean| +4780|813259|25776|3|30|35166.30|0.06|0.02|A|F|1995-04-13|1995-06-01|1995-05-03|DELIVER IN PERSON|RAIL|ully express sentiments are slyly. | +4780|432812|20337|4|15|26171.85|0.09|0.02|R|F|1995-05-20|1995-05-26|1995-05-26|NONE|AIR|ly requests. flu| +4780|259668|47184|5|49|79754.85|0.09|0.06|N|O|1995-08-03|1995-07-05|1995-08-16|TAKE BACK RETURN|RAIL|s. instructions across the | +4780|238467|25980|6|26|36541.70|0.02|0.02|N|O|1995-07-28|1995-06-23|1995-07-30|TAKE BACK RETURN|REG AIR|dolites affix sly| +4781|766137|28653|1|13|15640.30|0.10|0.06|N|O|1996-01-23|1995-12-09|1996-02-07|NONE|SHIP|s above the bold depths impress final | +4781|464514|39533|2|28|41397.72|0.01|0.05|N|O|1995-12-24|1996-01-19|1996-01-13|NONE|RAIL|deas. ironic packages haggle a| +4781|72086|22087|3|41|43381.28|0.10|0.07|N|O|1996-01-12|1995-12-12|1996-02-02|DELIVER IN PERSON|TRUCK|even dependencies. slyly | +4781|548916|36447|4|1|1964.89|0.05|0.00|N|O|1996-03-01|1995-12-26|1996-03-03|COLLECT COD|TRUCK|carefully; fluffily final accounts snooze b| +4782|201770|39283|1|13|21732.88|0.06|0.07|A|F|1993-05-03|1993-04-27|1993-05-29|COLLECT COD|REG AIR|c requests. blithel| +4783|266105|16106|1|41|43914.69|0.04|0.03|R|F|1992-08-14|1992-09-19|1992-09-09|DELIVER IN PERSON|AIR| even, express forges could haggle blit| +4783|422847|47864|2|29|51324.78|0.04|0.06|A|F|1992-08-19|1992-09-06|1992-09-06|COLLECT COD|FOB|uthless packages integrate around the ca| +4808|220359|7872|1|4|5117.36|0.05|0.07|R|F|1994-12-19|1995-03-07|1994-12-27|DELIVER IN PERSON|RAIL|ructions. ironic packages nag slyl| +4808|572540|47563|2|43|69338.36|0.04|0.08|R|F|1995-03-07|1995-02-20|1995-03-15|NONE|FOB|ickly ironic dolphins detect furiously| +4809|513050|581|1|9|9567.27|0.09|0.07|N|O|1998-02-23|1998-04-27|1998-03-11|TAKE BACK RETURN|AIR|y final pac| +4809|816354|16355|2|26|33028.06|0.06|0.04|N|O|1998-02-28|1998-04-04|1998-03-17|COLLECT COD|TRUCK|fully regular| +4809|460769|23279|3|19|32865.06|0.06|0.02|N|O|1998-06-02|1998-05-07|1998-06-11|NONE|REG AIR|eans. express ideas | +4809|142317|4820|4|33|44857.23|0.04|0.03|N|O|1998-03-23|1998-05-10|1998-04-21|DELIVER IN PERSON|REG AIR|lites along the sly, unusual pi| +4809|920433|20434|5|25|36334.75|0.10|0.07|N|O|1998-03-27|1998-03-23|1998-03-30|NONE|REG AIR|slyly ironic req| +4809|704740|4741|6|45|78511.95|0.02|0.08|N|O|1998-05-09|1998-04-06|1998-05-26|DELIVER IN PERSON|FOB| deposits hag| +4810|307324|19831|1|42|55915.02|0.08|0.07|N|O|1998-07-28|1998-07-29|1998-08-12|DELIVER IN PERSON|FOB|y close platelets u| +4810|189731|27241|2|28|50980.44|0.09|0.06|N|O|1998-07-31|1998-08-26|1998-08-15|TAKE BACK RETURN|RAIL|uickly unusual de| +4810|799825|12341|3|27|51969.33|0.09|0.05|N|O|1998-08-08|1998-08-23|1998-09-03|TAKE BACK RETURN|RAIL|luffily silently regular deposits. quickly | +4810|643608|6121|4|38|58959.66|0.01|0.07|N|O|1998-09-03|1998-07-12|1998-09-13|NONE|REG AIR|oxes wake furio| +4811|454709|4710|1|43|71538.24|0.05|0.08|N|O|1995-07-28|1995-09-10|1995-07-30|TAKE BACK RETURN|AIR| furiously carefully fin| +4811|292867|17878|2|36|66954.60|0.05|0.08|N|O|1995-09-24|1995-09-24|1995-10-01|DELIVER IN PERSON|SHIP|p. regular, ironic accounts af| +4811|209133|21638|3|30|31263.60|0.03|0.07|N|O|1995-08-23|1995-08-29|1995-09-18|COLLECT COD|FOB|efully. dugout| +4812|712051|49594|1|47|49961.94|0.10|0.02|N|O|1997-08-16|1997-09-12|1997-08-19|COLLECT COD|RAIL| regular, sile| +4813|658125|45665|1|39|42240.51|0.10|0.02|N|O|1996-05-08|1996-07-08|1996-06-05|NONE|TRUCK|ans lose quickly. quickly ironic p| +4813|105199|42706|2|38|45759.22|0.07|0.01|N|O|1996-07-06|1996-05-22|1996-07-22|COLLECT COD|MAIL|. evenly final requests grow qu| +4813|75115|25116|3|6|6540.66|0.08|0.04|N|O|1996-06-20|1996-05-30|1996-06-21|DELIVER IN PERSON|FOB|ggle carefully carefully even i| +4813|456161|6162|4|28|31279.92|0.00|0.06|N|O|1996-06-30|1996-07-02|1996-07-14|DELIVER IN PERSON|AIR|uctions are carefully dep| +4814|318896|6415|1|46|88084.48|0.03|0.01|R|F|1994-09-03|1994-08-23|1994-09-07|NONE|FOB|efully careful| +4814|683233|33234|2|41|49864.20|0.01|0.02|R|F|1994-09-23|1994-09-27|1994-10-10|DELIVER IN PERSON|AIR|ly pending account| +4814|81398|18902|3|18|24829.02|0.01|0.08|R|F|1994-09-24|1994-08-30|1994-10-05|NONE|SHIP|ully ironic theodolites. regular accoun| +4814|41348|28849|4|31|39969.54|0.08|0.01|R|F|1994-10-08|1994-09-19|1994-11-03|COLLECT COD|MAIL|r packages affix alongside of t| +4814|935806|35807|5|39|71828.64|0.09|0.00|A|F|1994-09-17|1994-08-12|1994-10-03|NONE|REG AIR|ctions impress furiously against the| +4815|611531|24044|1|12|17310.00|0.00|0.06|A|F|1992-11-22|1992-12-09|1992-12-09|NONE|SHIP|y at the blithely bo| +4815|993862|43863|2|3|5867.46|0.01|0.02|A|F|1993-02-14|1992-12-11|1993-03-11|TAKE BACK RETURN|FOB|ly unusual de| +4815|834695|22244|3|3|4888.95|0.03|0.07|R|F|1992-11-10|1992-12-13|1992-11-29|COLLECT COD|MAIL| pending theodolites. slyly pending ac| +4840|993947|6467|1|5|10204.50|0.10|0.00|N|O|1995-11-28|1995-10-15|1995-12-09|NONE|SHIP|, final dependencies could n| +4840|253858|16364|2|15|27177.60|0.01|0.04|N|O|1995-08-09|1995-10-21|1995-08-20|COLLECT COD|RAIL|usly express dependencies are furiously. c| +4840|587504|25038|3|1|1591.48|0.10|0.07|N|O|1995-11-13|1995-09-27|1995-11-14|DELIVER IN PERSON|SHIP|final requests wake regula| +4840|167992|42999|4|19|39139.81|0.01|0.04|N|O|1995-10-27|1995-10-17|1995-11-11|COLLECT COD|SHIP| carefully silent inst| +4840|441389|16406|5|44|58535.84|0.00|0.05|N|O|1995-10-24|1995-10-27|1995-10-29|COLLECT COD|MAIL|usual deposit| +4840|422032|47049|6|6|5724.06|0.06|0.03|N|O|1995-10-01|1995-09-24|1995-10-18|DELIVER IN PERSON|RAIL|dinos. carefully close waters wake s| +4841|901161|13680|1|3|3486.36|0.02|0.08|R|F|1993-04-19|1993-02-24|1993-05-02|TAKE BACK RETURN|SHIP|. requests | +4841|805478|30511|2|21|29052.03|0.04|0.00|A|F|1993-01-18|1993-02-18|1993-02-03|NONE|SHIP|e carefully a| +4841|664559|14560|3|26|39611.52|0.02|0.02|R|F|1993-01-11|1993-03-01|1993-01-24|DELIVER IN PERSON|SHIP|luffily regular theodolites. depo| +4841|238903|26416|4|1|1841.89|0.01|0.08|R|F|1993-02-21|1993-03-22|1993-03-02|NONE|TRUCK|en pinto beans are carefully daringly unusu| +4841|237245|37246|5|6|7093.38|0.08|0.00|R|F|1993-03-19|1993-02-20|1993-04-08|TAKE BACK RETURN|RAIL|y idle ideas hinder blithely across the fi| +4841|372326|22327|6|2|2796.62|0.09|0.01|R|F|1993-01-20|1993-02-12|1993-02-13|DELIVER IN PERSON|AIR|g idly sly requests-- slowly unusual a| +4842|800852|25885|1|24|42067.44|0.10|0.06|N|O|1996-01-16|1996-03-08|1996-01-20|DELIVER IN PERSON|MAIL|accounts. slyly unusual requests | +4842|916304|16305|2|18|23764.68|0.04|0.06|N|O|1996-01-23|1996-03-13|1996-02-05|NONE|FOB|packages. final accounts use| +4842|304661|17168|3|36|59963.40|0.08|0.05|N|O|1996-01-18|1996-03-02|1996-01-30|NONE|RAIL|press pinto beans acros| +4842|426209|38718|4|1|1135.18|0.09|0.03|N|O|1996-04-03|1996-02-02|1996-04-07|NONE|REG AIR|s boost blithely! carefully even reques| +4843|65538|28040|1|5|7517.65|0.03|0.02|A|F|1995-04-08|1995-06-05|1995-05-08|NONE|FOB| after the sile| +4843|487366|37367|2|16|21653.44|0.09|0.02|R|F|1995-03-25|1995-04-23|1995-03-28|NONE|AIR|uickly pending packages: | +4843|149835|37342|3|2|3769.66|0.05|0.02|R|F|1995-03-16|1995-05-23|1995-03-19|DELIVER IN PERSON|FOB|ic, bold dolphins caj| +4844|266718|16719|1|8|13477.60|0.07|0.04|N|O|1997-06-30|1997-07-30|1997-07-12|NONE|REG AIR|taphs sleep furiously bold accounts. furio| +4844|729212|16755|2|44|54611.92|0.06|0.00|N|O|1997-07-27|1997-07-30|1997-08-23|NONE|RAIL|fully above the slyly pending acc| +4844|863837|13838|3|29|52222.91|0.03|0.02|N|O|1997-06-19|1997-06-13|1997-06-22|TAKE BACK RETURN|RAIL|regular packages use | +4844|496640|9150|4|18|29459.16|0.08|0.00|N|O|1997-06-30|1997-07-23|1997-07-27|DELIVER IN PERSON|MAIL|uests x-ray quickly among the flu| +4845|193426|43427|1|44|66854.48|0.02|0.06|N|O|1997-05-21|1997-06-10|1997-06-15|TAKE BACK RETURN|SHIP|ular packages. slyly ironic deposits wak| +4845|904295|4296|2|30|38977.50|0.09|0.06|N|O|1997-06-26|1997-07-05|1997-07-18|TAKE BACK RETURN|FOB| theodolites nag car| +4845|480794|43304|3|12|21297.24|0.04|0.02|N|O|1997-07-06|1997-06-12|1997-07-08|DELIVER IN PERSON|RAIL|ake furiously quickly express pinto be| +4846|730245|17788|1|24|30605.04|0.03|0.07|N|O|1996-02-03|1995-12-28|1996-02-29|COLLECT COD|TRUCK| the daring, special deposits sleep slyl| +4846|213927|13928|2|25|46022.75|0.07|0.02|N|O|1996-02-19|1995-12-16|1996-02-25|DELIVER IN PERSON|MAIL|s haggle ideas. furiousl| +4846|462268|49796|3|41|50439.84|0.00|0.06|N|O|1996-03-03|1996-01-31|1996-03-08|TAKE BACK RETURN|REG AIR|excuses. accounts | +4846|329773|42280|4|24|43266.24|0.07|0.05|N|O|1995-11-23|1996-01-09|1995-12-20|DELIVER IN PERSON|AIR|g accounts haggl| +4847|984910|22468|1|17|33912.79|0.03|0.07|A|F|1993-12-09|1994-01-22|1994-01-02|DELIVER IN PERSON|MAIL|ar deposits affix carefully for the inst| +4847|378866|41374|2|43|83628.55|0.08|0.06|R|F|1993-12-28|1994-01-03|1994-01-05|DELIVER IN PERSON|REG AIR|nt realms! daringly specia| +4847|594340|44341|3|10|14343.20|0.04|0.05|R|F|1993-11-28|1993-12-18|1993-12-15|TAKE BACK RETURN|TRUCK|requests h| +4847|63476|38479|4|16|23031.52|0.05|0.00|R|F|1994-01-16|1994-01-12|1994-02-02|COLLECT COD|FOB|st quickly fluffily even excuses. slyly | +4847|832492|45009|5|20|28489.00|0.09|0.06|A|F|1994-01-21|1993-12-31|1994-02-17|DELIVER IN PERSON|SHIP|ld dependencies| +4847|690835|15862|6|44|80335.20|0.06|0.04|A|F|1994-01-10|1994-01-07|1994-01-30|NONE|AIR|cial, stealthy ideas are among the fluffi| +4872|296025|8531|1|11|11231.11|0.02|0.05|N|O|1996-04-19|1996-03-10|1996-04-27|COLLECT COD|MAIL|al accounts among the express, bo| +4872|277919|40425|2|40|75876.00|0.03|0.04|N|O|1996-05-20|1996-03-21|1996-06-03|DELIVER IN PERSON|RAIL|dolites around | +4872|975573|25574|3|33|54401.49|0.09|0.07|N|O|1996-03-22|1996-03-02|1996-04-10|TAKE BACK RETURN|RAIL|e furiously. accounts | +4872|446772|34297|4|32|55000.00|0.06|0.00|N|O|1996-05-10|1996-03-31|1996-06-07|NONE|REG AIR|sts wake quickly around the un| +4872|880914|43432|5|11|20843.57|0.03|0.05|N|O|1996-04-28|1996-03-23|1996-05-21|NONE|MAIL|sual, regular| +4872|512759|290|6|20|35434.60|0.02|0.08|N|O|1996-04-25|1996-03-01|1996-05-10|NONE|AIR|ely slyly pending| +4873|15978|28479|1|18|34091.46|0.06|0.08|R|F|1993-06-21|1993-06-01|1993-07-18|NONE|RAIL| ideas. quickly ironic excuses wake | +4873|537827|338|2|11|20512.80|0.06|0.00|A|F|1993-07-04|1993-05-02|1993-07-10|TAKE BACK RETURN|MAIL|ld dugouts. blithely special requ| +4873|247586|35099|3|15|23003.55|0.10|0.06|A|F|1993-05-07|1993-06-05|1993-05-22|DELIVER IN PERSON|SHIP|furiously ironi| +4873|167179|4689|4|28|34892.76|0.01|0.04|A|F|1993-05-19|1993-05-10|1993-05-26|COLLECT COD|TRUCK|into beans. bold request| +4873|762399|12400|5|9|13152.24|0.05|0.01|R|F|1993-06-20|1993-05-09|1993-07-07|NONE|REG AIR|ily above the regular, even depen| +4873|623613|36126|6|35|53780.30|0.02|0.03|R|F|1993-04-30|1993-05-22|1993-05-05|DELIVER IN PERSON|TRUCK|st after the ironic, re| +4873|55188|17690|7|15|17147.70|0.08|0.06|A|F|1993-04-22|1993-06-05|1993-05-02|COLLECT COD|AIR|lithely regu| +4874|531384|6405|1|42|59445.12|0.04|0.01|N|O|1995-09-05|1995-09-14|1995-09-15|TAKE BACK RETURN|TRUCK|the unusual theodolite| +4874|965791|15792|2|49|90980.75|0.02|0.05|N|O|1995-09-24|1995-08-31|1995-10-11|COLLECT COD|FOB|y express package| +4874|47022|47023|3|48|46512.96|0.04|0.02|N|O|1995-10-05|1995-10-09|1995-10-21|COLLECT COD|TRUCK|ccounts after t| +4874|282327|19843|4|42|54991.02|0.00|0.07|N|O|1995-09-30|1995-09-08|1995-10-05|COLLECT COD|AIR|gular deposit| +4874|54185|29188|5|12|13670.16|0.08|0.04|N|O|1995-09-01|1995-09-29|1995-09-28|COLLECT COD|REG AIR|fully bold ideas | +4875|801799|39348|1|27|45920.25|0.06|0.08|N|O|1997-05-11|1997-03-17|1997-06-07|COLLECT COD|AIR|ideas haggle furiously against th| +4875|825872|13421|2|3|5393.49|0.08|0.07|N|O|1997-03-01|1997-04-07|1997-03-19|DELIVER IN PERSON|REG AIR|boost about the flu| +4875|425003|12528|3|44|40831.12|0.03|0.04|N|O|1997-02-15|1997-04-07|1997-03-17|NONE|AIR|ly along the slyly regular notornis. r| +4875|14853|39854|4|44|77785.40|0.09|0.02|N|O|1997-03-09|1997-03-18|1997-03-13|DELIVER IN PERSON|FOB|nst the express d| +4875|618706|43731|5|50|81233.50|0.10|0.08|N|O|1997-01-19|1997-04-11|1997-02-01|TAKE BACK RETURN|MAIL|rts. regular, regular courts c| +4875|586191|23725|6|7|8940.19|0.10|0.03|N|O|1997-02-22|1997-02-17|1997-03-03|DELIVER IN PERSON|MAIL|s sleep carefully slyly bol| +4876|114093|39098|1|28|30998.52|0.09|0.03|N|O|1995-06-30|1995-07-05|1995-07-24|NONE|SHIP|lets hang accordi| +4877|6152|31153|1|15|15872.25|0.10|0.05|N|O|1995-11-06|1995-11-18|1995-11-21|NONE|TRUCK|s are packages. fluffily even accounts| +4877|396317|33839|2|35|49465.50|0.09|0.05|N|O|1995-10-20|1995-12-06|1995-11-19|TAKE BACK RETURN|MAIL|ly according to the slyly ev| +4877|892052|17087|3|11|11484.11|0.10|0.00|N|O|1995-12-26|1995-11-14|1996-01-24|NONE|FOB|sts integrate carefully unusual ideas! d| +4878|362080|37095|1|23|26267.61|0.02|0.08|N|O|1997-01-18|1996-12-07|1997-01-29|NONE|REG AIR|s boost blithe| +4878|462345|12346|2|49|64058.68|0.04|0.00|N|O|1996-12-21|1996-11-24|1997-01-09|COLLECT COD|SHIP|etect about the instructions. exc| +4878|624020|24021|3|26|24543.74|0.10|0.06|N|O|1996-11-03|1997-01-22|1996-12-03|TAKE BACK RETURN|REG AIR|bold dependencies. even instructions slee| +4878|888821|38822|4|8|14478.24|0.01|0.01|N|O|1996-11-26|1997-01-22|1996-12-22|TAKE BACK RETURN|AIR|cajole caref| +4878|408790|46315|5|15|25481.55|0.01|0.06|N|O|1997-01-18|1996-12-08|1997-01-25|NONE|AIR|nstructions according to th| +4878|530893|18424|6|10|19238.70|0.00|0.03|N|O|1996-11-18|1996-12-06|1996-12-05|COLLECT COD|FOB|bout the f| +4879|659509|9510|1|44|64612.68|0.07|0.00|N|O|1996-07-16|1996-08-29|1996-08-06|COLLECT COD|SHIP|y. dogged accounts cajole furiously; sl| +4879|362523|37538|2|39|61834.89|0.09|0.02|N|O|1996-09-06|1996-07-29|1996-09-08|TAKE BACK RETURN|REG AIR| ironic, spec| +4879|921704|46741|3|26|44867.16|0.09|0.00|N|O|1996-08-18|1996-08-02|1996-09-13|TAKE BACK RETURN|REG AIR| final ideas cajo| +4879|79126|29127|4|15|16576.80|0.06|0.07|N|O|1996-07-16|1996-07-16|1996-08-05|COLLECT COD|MAIL|y regular packages are blithely. slyl| +4904|17206|17207|1|22|24710.40|0.05|0.03|N|O|1997-08-14|1997-06-25|1997-08-28|DELIVER IN PERSON|MAIL|ites boost past the permanent deposits. | +4904|165491|27995|2|18|28016.82|0.05|0.06|N|O|1997-05-26|1997-05-30|1997-06-15|TAKE BACK RETURN|RAIL|ully express | +4904|397359|34881|3|29|42233.86|0.10|0.08|N|O|1997-08-01|1997-07-11|1997-08-27|TAKE BACK RETURN|RAIL|fluffily ironic theodolites. furio| +4904|401886|39411|4|40|71514.40|0.05|0.02|N|O|1997-05-17|1997-05-29|1997-05-24|DELIVER IN PERSON|MAIL|heodolites | +4904|486404|23932|5|48|66738.24|0.00|0.06|N|O|1997-06-02|1997-05-25|1997-06-27|TAKE BACK RETURN|SHIP|inal packages doubt | +4904|986105|23663|6|43|51215.58|0.09|0.00|N|O|1997-08-08|1997-07-07|1997-09-06|DELIVER IN PERSON|REG AIR|er the sly| +4905|238645|1150|1|5|7918.15|0.06|0.02|N|O|1997-11-20|1998-01-13|1997-12-07|DELIVER IN PERSON|AIR|y ironic reques| +4905|903182|15701|2|20|23702.80|0.02|0.01|N|O|1997-11-17|1997-12-11|1997-11-19|NONE|TRUCK|ithely pending packages.| +4906|199776|12280|1|25|46894.25|0.03|0.02|N|O|1997-11-08|1997-10-09|1997-11-09|NONE|RAIL|rmanent pack| +4906|625817|38330|2|33|57511.74|0.01|0.01|N|O|1997-08-19|1997-08-26|1997-09-15|DELIVER IN PERSON|FOB|ly furiously u| +4906|95969|45970|3|34|66808.64|0.08|0.03|N|O|1997-09-20|1997-09-25|1997-10-08|TAKE BACK RETURN|REG AIR|ages haggle slyly | +4907|32504|20005|1|19|27293.50|0.00|0.01|N|O|1997-08-23|1997-10-04|1997-09-21|TAKE BACK RETURN|FOB|romise. pending, enticing pinto beans affi| +4907|286257|36258|2|5|6216.20|0.03|0.07|N|O|1997-10-02|1997-09-08|1997-10-09|DELIVER IN PERSON|SHIP|gle carefull| +4907|108828|46335|3|50|91841.00|0.03|0.04|N|O|1997-11-07|1997-10-12|1997-12-02|NONE|MAIL|arefully. ironic accounts cajole. furiously| +4907|58678|8679|4|15|24550.05|0.05|0.02|N|O|1997-08-22|1997-09-24|1997-09-19|NONE|FOB|rding to the pending, bold instru| +4907|188253|38254|5|46|61697.50|0.10|0.06|N|O|1997-09-02|1997-09-14|1997-09-15|NONE|MAIL| are. excuses m| +4907|960384|47942|6|4|5777.36|0.02|0.01|N|O|1997-09-29|1997-10-17|1997-10-03|TAKE BACK RETURN|FOB|ges are slyly depos| +4908|366163|28671|1|19|23353.85|0.00|0.00|N|O|1995-11-15|1995-11-06|1995-11-26|COLLECT COD|FOB|sts against the slyly final packages sl| +4908|93194|43195|2|44|52236.36|0.09|0.00|N|O|1995-12-11|1995-11-18|1996-01-01|TAKE BACK RETURN|MAIL|lyly! carefully sly tit| +4908|296587|21598|3|3|4750.71|0.07|0.08|N|O|1996-01-03|1995-11-12|1996-01-22|NONE|TRUCK| pinto beans | +4908|723713|36228|4|9|15630.12|0.09|0.04|N|O|1995-12-15|1995-11-18|1996-01-07|TAKE BACK RETURN|REG AIR|he slyly final gifts: quickly regular pack| +4908|431301|6318|5|8|9858.24|0.00|0.06|N|O|1995-10-08|1995-11-29|1995-11-05|DELIVER IN PERSON|FOB|s haggle fluffily regular, express de| +4909|414170|26679|1|16|17346.40|0.00|0.06|A|F|1992-10-16|1992-10-26|1992-11-10|COLLECT COD|FOB|. special account| +4910|111973|11974|1|40|79398.80|0.00|0.00|N|O|1996-09-18|1996-09-14|1996-09-26|COLLECT COD|REG AIR|ckages. furiously unusual accounts| +4910|919752|44789|2|30|53151.30|0.02|0.06|N|O|1996-11-15|1996-09-25|1996-11-21|NONE|RAIL|carefully | +4910|268450|43461|3|15|21276.60|0.04|0.01|N|O|1996-09-09|1996-10-19|1996-09-20|COLLECT COD|TRUCK|es. final, even ide| +4910|828898|41415|4|45|82208.25|0.09|0.00|N|O|1996-09-27|1996-10-18|1996-10-22|DELIVER IN PERSON|SHIP|ns. slyly idle foxes over the carefully | +4910|274661|37167|5|48|78511.20|0.04|0.08|N|O|1996-08-11|1996-10-06|1996-09-10|DELIVER IN PERSON|SHIP|l foxes integrate bold Tiresias. quickly | +4910|225808|25809|6|24|41610.96|0.08|0.08|N|O|1996-11-10|1996-09-20|1996-11-21|DELIVER IN PERSON|SHIP|sleep furiously | +4911|313627|13628|1|43|70546.23|0.07|0.04|R|F|1992-10-10|1992-08-31|1992-10-16|DELIVER IN PERSON|TRUCK|ate. blith| +4936|939507|2026|1|32|49486.72|0.09|0.06|N|O|1995-11-09|1995-10-09|1995-11-26|COLLECT COD|TRUCK|sleep blithely against the pinto beans.| +4936|281927|19443|2|41|78265.31|0.01|0.02|N|O|1995-09-17|1995-10-23|1995-10-01|TAKE BACK RETURN|FOB|l ideas nag carefully. final, pe| +4936|334151|9164|3|4|4740.56|0.01|0.08|N|O|1995-12-16|1995-10-17|1995-12-29|NONE|REG AIR| ideas maintain slyly ac| +4936|73422|35924|4|43|60003.06|0.01|0.06|N|O|1995-11-22|1995-10-04|1995-12-08|TAKE BACK RETURN|REG AIR|gular, unusual accounts a| +4936|3419|40920|5|23|30415.43|0.00|0.07|N|O|1995-09-22|1995-11-27|1995-10-01|NONE|RAIL|sual sauternes. caref| +4936|452524|27543|6|40|59060.00|0.08|0.06|N|O|1995-10-04|1995-10-11|1995-10-22|TAKE BACK RETURN|REG AIR|nusual requests play always ab| +4937|309254|46773|1|30|37897.20|0.10|0.08|R|F|1992-09-05|1992-09-17|1992-10-02|COLLECT COD|REG AIR|ording to the slyly iron| +4937|625586|38099|2|29|43834.95|0.04|0.05|A|F|1992-11-19|1992-10-05|1992-11-30|TAKE BACK RETURN|MAIL|he regular deposits are e| +4937|218214|43223|3|6|6793.20|0.05|0.04|A|F|1992-08-25|1992-10-26|1992-09-01|DELIVER IN PERSON|SHIP|osits doubt. quickly f| +4938|667576|5116|1|40|61741.60|0.10|0.05|N|O|1995-12-24|1996-03-01|1995-12-26|TAKE BACK RETURN|SHIP| silently regular accounts. sly| +4938|949127|49128|2|11|12936.88|0.03|0.08|N|O|1996-03-28|1996-02-01|1996-04-12|COLLECT COD|FOB|lyly special pinto beans lose. final acc| +4938|970967|46006|3|21|42796.32|0.00|0.05|N|O|1996-02-25|1996-01-30|1996-03-21|DELIVER IN PERSON|FOB|he ironic, final d| +4938|30589|18090|4|1|1519.58|0.07|0.02|N|O|1996-01-14|1996-02-01|1996-01-16|DELIVER IN PERSON|MAIL|eas. ideas sleep blithely iro| +4938|95023|7525|5|3|3054.06|0.05|0.02|N|O|1996-02-09|1996-03-09|1996-02-23|TAKE BACK RETURN|AIR|regular deposi| +4938|35544|23045|6|20|29590.80|0.01|0.04|N|O|1996-01-25|1996-02-14|1996-02-24|NONE|REG AIR|riously final deposits. furiously pend| +4938|381953|19475|7|47|95642.18|0.06|0.05|N|O|1996-03-19|1996-03-06|1996-04-01|COLLECT COD|AIR|ideas. fluffily pending accounts along| +4939|473229|10757|1|20|24044.00|0.00|0.03|R|F|1995-04-06|1995-04-10|1995-04-13|TAKE BACK RETURN|REG AIR|y ironic platelets snooze carefully| +4940|890220|15255|1|6|7261.08|0.06|0.03|A|F|1992-12-02|1992-10-25|1992-12-31|TAKE BACK RETURN|TRUCK|ons haggle at the blithe| +4940|911033|11034|2|28|29231.72|0.07|0.05|R|F|1993-01-07|1992-11-22|1993-01-24|TAKE BACK RETURN|AIR|ar, pending reques| +4940|721024|33539|3|7|7314.93|0.05|0.05|R|F|1992-12-25|1992-10-25|1992-12-26|COLLECT COD|SHIP| slyly unu| +4940|238879|1384|4|47|85439.42|0.00|0.02|A|F|1992-10-26|1992-11-16|1992-11-18|NONE|RAIL|y. silent, regular pi| +4941|991655|4175|1|12|20959.32|0.09|0.01|A|F|1994-11-22|1994-09-14|1994-11-23|DELIVER IN PERSON|RAIL|ven requests| +4941|729745|42260|2|13|23071.23|0.03|0.01|A|F|1994-10-30|1994-09-18|1994-11-01|NONE|MAIL|inder! bold idea| +4941|819113|44146|3|47|48507.29|0.00|0.03|R|F|1994-11-13|1994-09-04|1994-11-21|DELIVER IN PERSON|REG AIR|ously after the furio| +4941|821496|21497|4|19|26931.55|0.02|0.04|A|F|1994-10-07|1994-10-28|1994-10-17|COLLECT COD|AIR| ironic platelets use regularly final f| +4942|928627|28628|1|23|38078.34|0.06|0.03|R|F|1992-04-11|1992-05-13|1992-04-19|DELIVER IN PERSON|REG AIR| blithely. ironic, final instructions thr| +4942|424131|11656|2|5|5275.55|0.03|0.06|R|F|1992-05-13|1992-04-25|1992-05-18|DELIVER IN PERSON|SHIP|inal asymptotes haggle quickly even a| +4942|359882|22390|3|4|7767.48|0.00|0.01|A|F|1992-04-21|1992-04-12|1992-05-17|NONE|TRUCK|e courts. ironic, close accounts | +4942|531955|31956|4|38|75503.34|0.06|0.07|A|F|1992-04-24|1992-04-01|1992-04-28|NONE|AIR|t blithely alo| +4942|553117|15629|5|30|35102.70|0.02|0.01|R|F|1992-05-25|1992-03-26|1992-06-03|NONE|SHIP|ggle. slyly | +4943|841742|41743|1|40|67348.00|0.04|0.05|N|O|1996-03-25|1996-01-28|1996-04-10|DELIVER IN PERSON|REG AIR|ly bold packages. furiously unusual a| +4943|143965|6468|2|20|40179.20|0.05|0.02|N|O|1995-11-28|1995-12-28|1995-12-06|TAKE BACK RETURN|MAIL|lly regular accounts a| +4968|814137|1686|1|37|38890.33|0.01|0.01|N|O|1996-01-10|1996-02-08|1996-01-24|NONE|REG AIR|lites. blithely regular ideas sleep sl| +4968|200224|12729|2|19|21359.99|0.02|0.00|N|O|1996-02-10|1996-02-18|1996-02-25|COLLECT COD|AIR|ake. final bra| +4968|149822|24827|3|23|43051.86|0.07|0.08|N|O|1996-01-17|1996-03-30|1996-02-15|COLLECT COD|TRUCK|o beans integrate furiously against| +4968|53205|15707|4|47|54435.40|0.05|0.01|N|O|1996-03-29|1996-02-06|1996-04-14|TAKE BACK RETURN|MAIL|bravely unusual excuses. final i| +4968|208966|46479|5|11|20624.45|0.03|0.07|N|O|1996-04-20|1996-03-20|1996-04-23|COLLECT COD|SHIP|hely special instructions detect ca| +4968|78299|3302|6|33|42150.57|0.09|0.03|N|O|1996-02-12|1996-03-26|1996-03-08|TAKE BACK RETURN|RAIL|its. express, special ideas affix| +4969|570485|8019|1|13|20220.98|0.00|0.04|N|O|1998-06-13|1998-04-12|1998-07-03|NONE|AIR| about the bol| +4969|127016|2021|2|20|20860.20|0.10|0.02|N|O|1998-04-20|1998-04-08|1998-05-05|NONE|AIR|lly regular decoys i| +4969|743654|6169|3|28|47533.36|0.09|0.00|N|O|1998-03-20|1998-05-01|1998-04-15|DELIVER IN PERSON|MAIL|imes. quickly ironic accounts are slyly. bl| +4970|1001|26002|1|21|18942.00|0.03|0.02|A|F|1993-04-26|1993-05-04|1993-04-28|DELIVER IN PERSON|TRUCK|y express acco| +4970|817772|5321|2|38|64209.74|0.10|0.04|R|F|1993-06-06|1993-04-12|1993-06-07|TAKE BACK RETURN|REG AIR|c, even foxes c| +4970|291430|28946|3|13|18478.46|0.00|0.08|A|F|1993-05-29|1993-04-29|1993-06-25|NONE|MAIL|ly furiously regular excuses. express t| +4970|52653|2654|4|21|33718.65|0.03|0.04|A|F|1993-05-24|1993-05-01|1993-06-04|NONE|REG AIR|s sleep abou| +4970|922486|35005|5|45|67879.80|0.01|0.01|R|F|1993-05-07|1993-04-28|1993-06-01|TAKE BACK RETURN|MAIL|ses x-ray carefully bold r| +4970|205786|5787|6|13|21993.01|0.02|0.04|R|F|1993-03-31|1993-03-31|1993-04-16|DELIVER IN PERSON|SHIP|ss requests according to the final the| +4971|293999|6505|1|42|83705.16|0.06|0.01|N|O|1996-12-04|1997-02-08|1996-12-24|NONE|TRUCK|. furiously special | +4971|235490|10499|2|2|2850.96|0.00|0.00|N|O|1997-01-26|1997-02-10|1997-01-31|NONE|TRUCK|ly instructions. quickly bold ins| +4971|874647|12199|3|10|16216.00|0.02|0.05|N|O|1997-01-06|1997-01-10|1997-02-01|TAKE BACK RETURN|AIR|ding requests boost sl| +4971|176372|13882|4|15|21725.55|0.05|0.07|N|O|1996-12-13|1997-02-24|1997-01-12|NONE|SHIP|etect above the final pac| +4971|274235|24236|5|15|18138.30|0.10|0.00|N|O|1996-12-07|1997-01-26|1997-01-02|TAKE BACK RETURN|TRUCK| stealthily ironic requests? ironic| +4971|65282|15283|6|1|1247.28|0.04|0.01|N|O|1997-02-23|1997-01-03|1997-03-24|NONE|AIR|eas may wake quickly. slyly regular requ| +4971|193648|31158|7|5|8708.20|0.10|0.04|N|O|1996-12-23|1997-02-24|1997-01-12|NONE|RAIL|efully even excuses sleep fluffily ev| +4972|625429|454|1|46|62301.94|0.07|0.02|R|F|1994-12-06|1994-11-27|1994-12-11|NONE|FOB| deposits sleep slyl| +4973|911074|48629|1|20|21700.60|0.04|0.00|R|F|1992-08-08|1992-09-03|1992-08-18|COLLECT COD|MAIL|ts cajole flu| +4973|410683|23192|2|50|79683.00|0.10|0.03|A|F|1992-06-26|1992-07-25|1992-07-02|DELIVER IN PERSON|MAIL|. unusual theodolites sleep blithely. quic| +4973|348770|11277|3|15|27281.40|0.00|0.08|A|F|1992-07-04|1992-07-27|1992-07-16|DELIVER IN PERSON|REG AIR|e furiously ironic packages.| +4973|766061|28577|4|29|32683.87|0.08|0.04|A|F|1992-09-28|1992-08-23|1992-10-06|DELIVER IN PERSON|TRUCK| final depend| +4974|301326|13833|1|29|38491.99|0.07|0.04|N|O|1996-06-22|1996-04-14|1996-06-28|DELIVER IN PERSON|REG AIR|packages. furiously pending requests sle| +4974|377963|27964|2|10|20409.50|0.09|0.02|N|O|1996-05-26|1996-04-26|1996-06-20|COLLECT COD|TRUCK|ong the slyly ironic instructions. | +4974|420779|45796|3|4|6799.00|0.10|0.00|N|O|1996-06-27|1996-05-05|1996-07-16|DELIVER IN PERSON|SHIP|e carefully express courts. carefully | +4974|19807|7308|4|18|31082.40|0.03|0.00|N|O|1996-03-19|1996-04-27|1996-03-22|TAKE BACK RETURN|TRUCK|al pinto beans nag final requests. | +4975|918511|43548|1|34|52001.98|0.02|0.03|A|F|1994-02-13|1994-01-31|1994-03-11|TAKE BACK RETURN|AIR|are. bold, bold| +4975|399162|36684|2|30|37834.50|0.04|0.05|A|F|1994-03-30|1994-01-19|1994-04-11|TAKE BACK RETURN|FOB|deas must are quickly. re| +4975|712991|25506|3|32|64126.72|0.09|0.03|A|F|1994-02-13|1994-03-14|1994-03-04|NONE|FOB|ccounts. bli| +5000|8035|33036|1|20|18860.60|0.04|0.03|A|F|1992-07-27|1992-10-17|1992-08-13|DELIVER IN PERSON|AIR|es. blithely bold plat| +5000|28811|3812|2|16|27836.96|0.07|0.05|A|F|1992-07-24|1992-09-15|1992-07-29|DELIVER IN PERSON|RAIL|among the blithe| +5000|219564|7077|3|35|51924.25|0.01|0.08|R|F|1992-09-11|1992-10-05|1992-09-15|NONE|AIR|slyly even packages s| +5000|204545|42058|4|9|13045.77|0.05|0.04|R|F|1992-10-10|1992-09-28|1992-11-07|TAKE BACK RETURN|TRUCK|requests breach furio| +5001|539181|1692|1|33|40265.28|0.08|0.03|N|O|1997-11-14|1997-12-14|1997-12-09|TAKE BACK RETURN|TRUCK| fluffily bold pack| +5001|13148|13149|2|38|40323.32|0.02|0.02|N|O|1997-12-11|1997-12-22|1998-01-05|DELIVER IN PERSON|MAIL| promise f| +5001|968388|30908|3|48|69904.32|0.07|0.02|N|O|1997-12-19|1997-11-16|1997-12-27|TAKE BACK RETURN|AIR|ar, ironic requests nag furiousl| +5001|680548|18088|4|41|62668.91|0.10|0.01|N|O|1997-10-09|1997-10-29|1997-10-22|TAKE BACK RETURN|TRUCK|are furiously along the pen| +5002|662685|25199|1|33|54372.45|0.10|0.03|A|F|1995-04-26|1995-05-30|1995-05-09|COLLECT COD|TRUCK|after the frets. blithely ev| +5002|743660|18689|2|40|68145.20|0.09|0.04|A|F|1995-04-08|1995-05-19|1995-04-15|COLLECT COD|MAIL|arly special packages. fur| +5002|687923|25463|3|27|51594.03|0.08|0.04|A|F|1995-05-24|1995-05-05|1995-05-27|COLLECT COD|TRUCK|ithely reg| +5002|921299|21300|4|9|11882.25|0.08|0.07|A|F|1995-05-08|1995-05-01|1995-06-02|COLLECT COD|TRUCK|g to the busy i| +5002|260894|48410|5|21|38952.48|0.08|0.08|A|F|1995-03-22|1995-05-26|1995-04-15|COLLECT COD|MAIL|packages caj| +5002|843998|43999|6|30|58258.50|0.02|0.04|R|F|1995-04-15|1995-06-04|1995-04-17|DELIVER IN PERSON|FOB| pinto beans. quickly ironic theodolites a| +5002|67600|5104|7|43|67406.80|0.10|0.00|N|O|1995-07-03|1995-05-22|1995-07-29|TAKE BACK RETURN|RAIL|sly special ideas wake. carefully quick a| +5003|148994|48995|1|21|42902.79|0.10|0.07|R|F|1994-11-01|1994-10-17|1994-11-11|NONE|MAIL|haggle carefully regular pinto| +5003|125946|13453|2|37|72961.78|0.00|0.05|R|F|1994-09-16|1994-11-20|1994-10-06|DELIVER IN PERSON|MAIL|eposits wake| +5003|768831|6377|3|27|51294.60|0.10|0.07|A|F|1994-10-25|1994-09-22|1994-11-16|DELIVER IN PERSON|AIR|quests wake caref| +5003|739293|39294|4|26|34638.76|0.01|0.03|R|F|1994-08-25|1994-10-13|1994-09-15|COLLECT COD|MAIL|. unusual, e| +5003|285791|48297|5|9|15991.02|0.06|0.04|R|F|1994-11-02|1994-11-01|1994-11-21|NONE|TRUCK|lyly final requests haggle slyly at the car| +5004|437761|270|1|2|3397.48|0.10|0.03|N|O|1995-09-16|1995-10-08|1995-09-17|TAKE BACK RETURN|TRUCK|e under the pending requests. slyly| +5005|183583|46087|1|34|56663.72|0.04|0.05|N|O|1995-07-13|1995-07-19|1995-08-08|DELIVER IN PERSON|TRUCK|ct carefully. reg| +5006|58520|21022|1|39|57662.28|0.04|0.08|R|F|1992-04-11|1992-03-14|1992-05-04|DELIVER IN PERSON|MAIL| use quick| +5006|531545|19076|2|40|63060.80|0.00|0.03|R|F|1992-02-01|1992-04-05|1992-02-15|TAKE BACK RETURN|FOB|ithely bold dependenc| +5007|146471|8974|1|27|40971.69|0.05|0.06|N|O|1998-08-17|1998-07-11|1998-09-04|DELIVER IN PERSON|TRUCK|ld requests detect slyly against the b| +5007|729972|5001|2|6|12011.64|0.04|0.05|N|O|1998-09-01|1998-06-10|1998-09-23|NONE|FOB|. final dinos integrate. fu| +5007|625890|13427|3|14|25422.04|0.01|0.00|N|O|1998-08-08|1998-06-19|1998-08-13|TAKE BACK RETURN|MAIL|c dependencies wake permanently | +5007|327800|2813|4|9|16450.11|0.08|0.03|N|O|1998-08-30|1998-06-28|1998-09-26|NONE|RAIL|quickly final ins| +5007|332953|20472|5|9|17873.46|0.08|0.02|N|O|1998-06-09|1998-07-27|1998-07-09|NONE|FOB|uickly to the fluffily even account| +5032|552694|2695|1|21|36680.07|0.06|0.07|R|F|1994-12-12|1994-12-07|1995-01-02|NONE|SHIP|blithely ironic accounts. carefully | +5032|113636|1143|2|30|49488.90|0.00|0.03|R|F|1994-11-27|1995-01-28|1994-11-28|COLLECT COD|RAIL|lithely brave reques| +5032|873626|23627|3|5|7997.90|0.05|0.03|R|F|1994-12-18|1994-12-02|1994-12-27|TAKE BACK RETURN|MAIL|y. blithel| +5032|20939|20940|4|33|61377.69|0.09|0.00|A|F|1994-12-25|1995-01-29|1995-01-12|NONE|RAIL| beans. final requests integrate slyly.| +5032|916474|41511|5|37|55145.91|0.00|0.00|A|F|1994-12-02|1994-12-23|1994-12-05|TAKE BACK RETURN|RAIL|e slyly regular deposits. silent fr| +5032|176610|39114|6|50|84330.50|0.07|0.03|R|F|1994-11-02|1994-12-16|1994-12-02|TAKE BACK RETURN|SHIP|he blithely regular requests| +5032|269871|7387|7|20|36817.20|0.09|0.07|A|F|1994-11-08|1995-01-18|1994-11-25|TAKE BACK RETURN|AIR|s sleep carefully. blithely | +5033|709952|47495|1|5|9809.60|0.01|0.06|N|O|1998-03-02|1998-04-03|1998-03-30|TAKE BACK RETURN|RAIL|. quickly regular accounts after| +5033|156814|31821|2|32|59865.92|0.02|0.00|N|O|1998-04-30|1998-04-22|1998-05-06|NONE|FOB|o beans affix| +5033|570530|45553|3|32|51216.32|0.06|0.08|N|O|1998-03-25|1998-03-19|1998-04-06|NONE|RAIL| final requests sleep | +5033|890635|28187|4|9|14630.31|0.03|0.01|N|O|1998-04-10|1998-05-01|1998-04-16|NONE|FOB|ns breach. final deposits haggle accor| +5033|885643|23195|5|3|4885.80|0.06|0.05|N|O|1998-05-23|1998-03-13|1998-06-12|DELIVER IN PERSON|MAIL|le accordi| +5033|988608|26166|6|49|83131.44|0.07|0.04|N|O|1998-03-25|1998-04-25|1998-03-27|NONE|SHIP| fluffily fluffy pinto beans.| +5034|145835|45836|1|21|39497.43|0.04|0.07|N|O|1998-01-01|1998-01-11|1998-01-31|DELIVER IN PERSON|MAIL|s the ruthless, expres| +5034|48144|23145|2|7|7644.98|0.09|0.07|N|O|1998-01-15|1997-11-23|1998-01-18|DELIVER IN PERSON|FOB| furiously unusual accounts cajole q| +5034|144205|31712|3|3|3747.60|0.03|0.00|N|O|1998-02-07|1998-01-02|1998-02-27|NONE|MAIL|s. pending requests are careful| +5034|648197|35734|4|37|42370.92|0.05|0.03|N|O|1998-02-01|1998-01-08|1998-02-20|TAKE BACK RETURN|REG AIR|ongside of the ideas. blithely sp| +5034|241747|4252|5|10|16887.30|0.02|0.06|N|O|1997-10-22|1997-11-22|1997-11-17|NONE|AIR|nding foxes sleep q| +5034|38509|38510|6|4|5790.00|0.01|0.08|N|O|1997-11-26|1997-12-12|1997-11-29|TAKE BACK RETURN|FOB| cajole slyly. quickly bold ideas after th| +5035|661209|23723|1|8|9361.36|0.10|0.01|R|F|1992-06-09|1992-05-05|1992-06-18|TAKE BACK RETURN|REG AIR|ar excuses along the slyly even packages na| +5035|925954|25955|2|14|27718.74|0.09|0.00|R|F|1992-06-15|1992-06-06|1992-07-07|TAKE BACK RETURN|AIR|carefully pending deposits are quickly. t| +5035|494823|44824|3|39|70894.20|0.07|0.08|A|F|1992-06-18|1992-05-09|1992-06-20|NONE|REG AIR|tegrate idly. special, special pin| +5036|930327|30328|1|18|24431.04|0.00|0.00|N|O|1996-02-24|1996-02-23|1996-03-09|DELIVER IN PERSON|RAIL|lly ironic packages whithout the brave| +5036|990762|28320|2|38|70403.36|0.09|0.05|N|O|1996-04-25|1996-03-04|1996-05-07|DELIVER IN PERSON|FOB| the special, unusua| +5036|731956|31957|3|38|75540.96|0.06|0.04|N|O|1996-04-11|1996-01-31|1996-04-21|TAKE BACK RETURN|SHIP|ependencies. carefully regular pinto b| +5036|982627|32628|4|2|3419.16|0.03|0.07|N|O|1996-01-10|1996-03-21|1996-01-24|COLLECT COD|AIR|ackages. qu| +5036|8494|8495|5|12|16829.88|0.02|0.08|N|O|1996-01-06|1996-02-17|1996-01-12|DELIVER IN PERSON|REG AIR|al dependencies | +5036|754259|4260|6|3|3939.66|0.04|0.08|N|O|1996-02-06|1996-02-17|1996-03-04|DELIVER IN PERSON|AIR|ld blithely final, regular pinto be| +5036|827929|27930|7|21|38994.48|0.08|0.08|N|O|1996-03-13|1996-02-24|1996-03-29|DELIVER IN PERSON|SHIP|packages. ironic accoun| +5037|996111|46112|1|33|39833.31|0.08|0.00|N|O|1996-06-22|1996-06-09|1996-07-21|NONE|TRUCK|carefully ironic excuses. even orbits | +5037|624906|24907|2|14|25632.18|0.06|0.01|N|O|1996-06-08|1996-05-13|1996-06-10|NONE|FOB|ggle decoys. carefully pending excuse| +5037|784225|9256|3|31|40584.89|0.04|0.03|N|O|1996-04-21|1996-05-24|1996-05-11|DELIVER IN PERSON|SHIP|es. ironic excuses nag | +5037|467931|5459|4|7|13292.37|0.08|0.00|N|O|1996-04-29|1996-05-27|1996-05-27|COLLECT COD|AIR|g, final escapades haggle furiously | +5037|515070|15071|5|5|5425.25|0.01|0.06|N|O|1996-07-24|1996-05-24|1996-08-05|TAKE BACK RETURN|RAIL|ate among the slyly regular| +5037|769492|19493|6|37|57774.02|0.03|0.00|N|O|1996-04-22|1996-06-27|1996-04-29|DELIVER IN PERSON|SHIP|y about the requests. express,| +5037|847071|47072|7|50|50901.50|0.04|0.05|N|O|1996-07-09|1996-06-08|1996-08-05|NONE|FOB|ly along the fluffily fluffy p| +5038|711596|49139|1|29|46619.24|0.07|0.00|A|F|1993-02-28|1993-02-12|1993-03-26|TAKE BACK RETURN|REG AIR|y pending ideas haggle silent deposits. f| +5038|787756|25302|2|2|3687.44|0.00|0.02|A|F|1993-01-16|1993-01-18|1993-02-09|COLLECT COD|MAIL|op the furiousl| +5039|834068|34069|1|27|27054.54|0.06|0.06|A|F|1992-12-08|1992-12-11|1992-12-31|DELIVER IN PERSON|MAIL| furiously final accounts. theodol| +5039|178994|28995|2|35|72554.65|0.04|0.03|A|F|1992-10-20|1992-12-10|1992-11-18|TAKE BACK RETURN|RAIL|eposits affix blithely about the furi| +5039|349937|37456|3|49|97359.08|0.09|0.01|A|F|1992-12-29|1992-10-13|1993-01-18|DELIVER IN PERSON|AIR|y among the enticingly even packages. p| +5039|374466|24467|4|34|52375.30|0.04|0.05|R|F|1992-09-15|1992-11-13|1992-09-19|NONE|TRUCK|cross the | +5064|255421|42937|1|15|20646.15|0.07|0.00|N|O|1996-08-31|1996-10-25|1996-09-11|DELIVER IN PERSON|REG AIR|ld platelets haggle according | +5065|240748|3253|1|27|45595.71|0.06|0.05|R|F|1993-02-12|1993-02-01|1993-03-06|COLLECT COD|TRUCK| accounts nag quick| +5065|244342|31855|2|39|50166.87|0.07|0.01|A|F|1993-02-24|1993-01-05|1993-03-20|DELIVER IN PERSON|RAIL|ses. blithely ironic theodoli| +5066|315074|15075|1|21|22870.26|0.01|0.00|N|O|1997-02-02|1996-12-13|1997-02-24|TAKE BACK RETURN|FOB|refully regular accounts. slyly regula| +5066|442273|4782|2|43|52255.75|0.01|0.00|N|O|1996-11-11|1996-12-19|1996-11-19|TAKE BACK RETURN|SHIP|n the carefully even requests| +5066|269578|32084|3|29|44879.24|0.02|0.00|N|O|1997-02-06|1996-12-02|1997-02-17|DELIVER IN PERSON|TRUCK| courts. requests wake fina| +5066|787729|245|4|13|23616.97|0.04|0.07|N|O|1996-11-26|1997-01-11|1996-12-15|NONE|RAIL|ts wake according to the even brai| +5066|358793|8794|5|32|59256.96|0.02|0.08|N|O|1997-02-07|1996-12-19|1997-03-02|TAKE BACK RETURN|SHIP|nal ideas haggle according to the | +5066|226453|1462|6|44|60695.36|0.07|0.06|N|O|1996-11-11|1996-12-29|1996-12-04|TAKE BACK RETURN|SHIP| regular pinto beans nag accord| +5067|652552|2553|1|2|3009.04|0.06|0.04|R|F|1994-10-29|1994-11-30|1994-11-10|NONE|RAIL|lar pinto beans. fluffily special theo| +5067|425469|486|2|36|50199.84|0.04|0.04|R|F|1994-12-13|1994-11-30|1994-12-15|TAKE BACK RETURN|SHIP|pite the final, unusu| +5067|846262|46263|3|40|48328.80|0.01|0.06|R|F|1994-10-06|1994-11-24|1994-10-18|COLLECT COD|REG AIR|onic accounts detect care| +5067|117185|4692|4|49|58906.82|0.09|0.04|A|F|1995-01-08|1994-10-24|1995-01-21|NONE|RAIL|ackages wake sly| +5068|741695|41696|1|34|59046.44|0.01|0.07|A|F|1993-01-17|1993-04-03|1993-02-16|NONE|MAIL|ccounts haggle blithely slyly| +5068|665310|15311|2|21|26780.88|0.07|0.07|R|F|1993-01-27|1993-03-25|1993-02-03|TAKE BACK RETURN|RAIL|furiously fluffy instructions wak| +5068|851856|26891|3|18|32540.58|0.02|0.01|A|F|1993-01-29|1993-03-07|1993-02-28|NONE|RAIL|efully pending requ| +5068|142003|4506|4|15|15675.00|0.01|0.02|A|F|1993-04-02|1993-02-23|1993-04-05|TAKE BACK RETURN|MAIL|iously express requests are final escap| +5068|642760|5273|5|27|45973.71|0.06|0.06|A|F|1993-04-11|1993-03-25|1993-04-14|COLLECT COD|TRUCK|fully pending pinto beans. furiously final | +5068|854994|17512|6|48|93549.60|0.02|0.07|A|F|1993-04-25|1993-02-28|1993-05-04|NONE|MAIL|ests cajole fina| +5068|882364|7399|7|25|33658.00|0.04|0.08|A|F|1993-03-20|1993-03-16|1993-04-11|COLLECT COD|RAIL| players haggle sil| +5069|884112|46630|1|7|7672.49|0.05|0.03|N|O|1997-03-31|1997-02-13|1997-04-09|NONE|REG AIR|y final ideas sl| +5069|267018|42029|2|6|5910.00|0.04|0.02|N|O|1997-03-07|1997-03-13|1997-03-27|DELIVER IN PERSON|TRUCK|ght nag against the slyly final depend| +5069|767320|42351|3|38|52717.02|0.10|0.08|N|O|1997-04-22|1997-03-05|1997-05-04|DELIVER IN PERSON|MAIL|s. furiously close depos| +5069|341887|4394|4|34|65581.58|0.02|0.07|N|O|1997-02-12|1997-04-11|1997-03-03|TAKE BACK RETURN|MAIL|ructions among the depend| +5069|88724|1226|5|16|27403.52|0.07|0.04|N|O|1997-04-28|1997-04-11|1997-05-16|NONE|FOB|mong the slyly bold dependencies. careful| +5070|746265|8780|1|34|44581.82|0.01|0.07|R|F|1993-12-24|1993-11-11|1993-12-30|DELIVER IN PERSON|REG AIR|c, regular accounts det| +5070|459445|34464|2|20|28088.40|0.01|0.00|R|F|1993-12-19|1993-12-20|1994-01-02|TAKE BACK RETURN|FOB|e slyly among the pending accounts. quickly| +5070|882808|32809|3|29|51932.04|0.06|0.08|A|F|1993-11-08|1993-10-30|1993-12-03|DELIVER IN PERSON|AIR|de of the final reques| +5071|478671|28672|1|5|8248.25|0.00|0.08|A|F|1992-10-03|1992-11-12|1992-10-31|COLLECT COD|AIR|ing pinto beans affi| +5071|7815|45316|2|18|31010.58|0.03|0.05|A|F|1992-11-08|1992-10-31|1992-11-11|TAKE BACK RETURN|TRUCK| instructi| +5071|339562|39563|3|33|52851.15|0.03|0.02|A|F|1992-10-02|1992-10-20|1992-10-25|NONE|SHIP|s. ironic, bold deposits b| +5071|16225|28726|4|15|17118.30|0.05|0.04|A|F|1992-09-15|1992-10-31|1992-09-29|NONE|REG AIR| deposits across the packa| +5096|246345|33858|1|39|50361.87|0.09|0.01|R|F|1992-12-10|1993-01-09|1992-12-14|COLLECT COD|TRUCK|side of the sly r| +5096|318678|6197|2|25|42416.50|0.05|0.04|A|F|1993-02-01|1992-12-30|1993-02-06|NONE|REG AIR|odolites. | +5097|881825|19377|1|35|63237.30|0.07|0.01|R|F|1992-04-15|1992-03-21|1992-05-12|COLLECT COD|SHIP|e. slyly ironic | +5097|819220|6769|2|35|39871.30|0.03|0.01|R|F|1992-03-28|1992-03-28|1992-04-17|NONE|MAIL|e regular courts. quickly final instru| +5098|505783|18294|1|18|32197.68|0.02|0.01|A|F|1995-02-22|1995-03-05|1995-03-14|TAKE BACK RETURN|FOB|iously regular requests across the sly| +5098|687952|466|2|6|11639.52|0.02|0.01|R|F|1995-03-18|1995-04-09|1995-04-02|TAKE BACK RETURN|REG AIR|y according to the special packages. fina| +5098|397385|34907|3|32|47435.84|0.00|0.04|R|F|1995-01-30|1995-03-29|1995-02-24|DELIVER IN PERSON|RAIL|onic excuses alongside of the b| +5098|836085|36086|4|50|51052.00|0.06|0.06|R|F|1995-05-02|1995-04-10|1995-05-09|TAKE BACK RETURN|TRUCK|its haggle quic| +5098|71353|21354|5|32|42379.20|0.00|0.08|R|F|1995-01-31|1995-03-15|1995-02-12|COLLECT COD|SHIP|phins among the pe| +5098|213775|26280|6|43|72616.68|0.04|0.07|R|F|1995-02-16|1995-04-29|1995-02-28|DELIVER IN PERSON|SHIP|lyly pinto beans.| +5099|632210|44723|1|2|2284.36|0.03|0.00|R|F|1993-03-24|1993-02-20|1993-04-19|DELIVER IN PERSON|SHIP|he slyly ex| +5099|539880|39881|2|36|69114.96|0.07|0.07|R|F|1993-02-19|1993-02-15|1993-03-14|DELIVER IN PERSON|RAIL|y daringly special accounts. s| +5100|900682|25719|1|29|48796.56|0.09|0.00|R|F|1992-08-11|1992-07-21|1992-08-18|DELIVER IN PERSON|TRUCK|mes special pint| +5100|752254|39800|2|38|49636.36|0.06|0.05|R|F|1992-07-18|1992-08-16|1992-07-31|TAKE BACK RETURN|REG AIR|ly; never reg| +5101|549392|49393|1|24|34592.88|0.05|0.01|R|F|1994-07-14|1994-07-05|1994-08-07|COLLECT COD|AIR|os affix unusual, regu| +5101|626752|1777|2|33|55397.76|0.00|0.06|R|F|1994-06-23|1994-06-22|1994-07-20|NONE|TRUCK|lithely silent instructions sleep blithel| +5101|813205|25722|3|17|19008.72|0.08|0.06|A|F|1994-07-24|1994-05-15|1994-08-19|DELIVER IN PERSON|REG AIR| cajole blithely express pack| +5102|847815|10332|1|48|84612.96|0.09|0.03|N|O|1995-12-28|1996-01-23|1996-01-05|COLLECT COD|RAIL|quickly even, pending pl| +5103|43805|43806|1|18|31478.40|0.06|0.07|N|O|1996-11-19|1997-01-22|1996-11-21|NONE|MAIL|ously after the requests; fluffily e| +5103|223011|48020|2|18|16812.00|0.00|0.03|N|O|1997-02-24|1997-01-21|1997-03-20|NONE|REG AIR| regular sentiments; blithel| +5103|144010|6513|3|42|44268.42|0.00|0.03|N|O|1997-03-02|1997-02-02|1997-03-03|NONE|SHIP| ruthless frets.| +5103|369676|7198|4|10|17456.60|0.08|0.01|N|O|1997-01-06|1996-12-26|1997-02-04|NONE|SHIP|counts wake careful| +5128|736086|23629|1|15|16830.75|0.08|0.02|N|O|1996-03-12|1996-02-14|1996-03-27|DELIVER IN PERSON|SHIP|accounts a| +5128|390087|40088|2|18|21187.26|0.06|0.00|N|O|1996-01-29|1996-03-25|1996-01-30|DELIVER IN PERSON|RAIL|ss packages mold. gifts are | +5128|175779|13289|3|14|25966.78|0.09|0.01|N|O|1996-01-09|1996-03-24|1996-02-02|DELIVER IN PERSON|FOB|ending, express foxes| +5129|776153|1184|1|21|25811.52|0.04|0.01|N|O|1996-06-01|1996-07-19|1996-06-26|DELIVER IN PERSON|FOB|y according to the final, special packages.| +5129|790518|40519|2|26|41820.48|0.10|0.03|N|O|1996-08-20|1996-07-30|1996-08-27|TAKE BACK RETURN|RAIL|osits mold fluffily sl| +5129|232852|45357|3|15|26772.60|0.08|0.08|N|O|1996-08-18|1996-07-04|1996-09-14|NONE|SHIP|ully above the furiously regular foxes. flu| +5129|529476|41987|4|26|39141.70|0.01|0.04|N|O|1996-06-20|1996-06-29|1996-06-27|DELIVER IN PERSON|MAIL|are blithely silent ins| +5129|889605|14640|5|46|73349.76|0.00|0.01|N|O|1996-07-30|1996-07-30|1996-08-26|DELIVER IN PERSON|RAIL| slyly ironic accounts sleep quietly a| +5129|579224|41736|6|39|50824.80|0.07|0.00|N|O|1996-07-27|1996-07-27|1996-08-26|COLLECT COD|REG AIR|deposits. final accounts | +5129|3838|16339|7|50|87091.50|0.06|0.02|N|O|1996-08-17|1996-07-21|1996-08-26|COLLECT COD|RAIL|carefully quick theodolites| +5130|496100|8610|1|14|15345.12|0.00|0.01|N|O|1997-01-04|1996-12-26|1997-01-20|TAKE BACK RETURN|FOB|integrate. slyly final foxes integrate amon| +5130|943714|43715|2|41|72064.47|0.06|0.03|N|O|1996-12-20|1996-12-30|1996-12-30|COLLECT COD|FOB| carefully ironic accounts sleep carefully.| +5130|987123|49643|3|10|12100.80|0.01|0.07|N|O|1997-02-10|1997-01-17|1997-03-04|DELIVER IN PERSON|FOB|-- slyly regular packa| +5130|571315|33827|4|22|30498.38|0.02|0.05|N|O|1996-12-05|1997-01-13|1996-12-14|COLLECT COD|FOB|the deposits affix carefully aft| +5130|76541|1544|5|1|1517.54|0.03|0.00|N|O|1996-12-25|1997-01-18|1996-12-31|NONE|REG AIR| the brave packages h| +5130|408795|46320|6|42|71558.34|0.07|0.05|N|O|1997-02-04|1997-01-03|1997-02-11|DELIVER IN PERSON|FOB|y. blithely specia| +5130|613469|1006|7|21|29031.03|0.10|0.07|N|O|1996-11-19|1997-01-08|1996-12-15|TAKE BACK RETURN|RAIL|usly even instruc| +5131|558164|45698|1|10|12221.40|0.00|0.05|N|O|1998-07-05|1998-09-23|1998-07-21|TAKE BACK RETURN|SHIP| pinto beans cajole slyly. depo| +5131|51264|38768|2|46|55901.96|0.01|0.05|N|O|1998-09-08|1998-09-14|1998-09-24|TAKE BACK RETURN|MAIL|uests detect furiously fo| +5131|580065|42577|3|3|3435.12|0.07|0.06|N|O|1998-08-08|1998-08-24|1998-09-05|COLLECT COD|MAIL|quickly besi| +5132|437852|12869|1|47|84122.01|0.06|0.08|R|F|1994-01-28|1993-12-09|1994-02-17|COLLECT COD|SHIP|ts. blithely unusual packag| +5132|961951|24471|2|37|74477.67|0.01|0.01|R|F|1994-02-14|1993-11-24|1994-03-06|DELIVER IN PERSON|SHIP|ggle blithely: even foxes use. pinto b| +5132|495911|20930|3|20|38137.80|0.06|0.00|A|F|1994-02-22|1993-12-28|1994-03-19|DELIVER IN PERSON|REG AIR|ts. theodolite| +5132|759501|34532|4|43|67100.21|0.05|0.06|A|F|1994-01-03|1993-12-07|1994-01-09|NONE|SHIP|symptotes. furi| +5132|917253|42290|5|18|22863.78|0.02|0.01|A|F|1993-11-25|1994-01-05|1993-12-17|TAKE BACK RETURN|RAIL|ins. brave, even | +5133|328883|16402|1|13|24854.31|0.07|0.08|R|F|1994-11-10|1994-12-25|1994-11-26|TAKE BACK RETURN|AIR|ong the bold| +5133|535797|10818|2|45|82474.65|0.02|0.04|A|F|1994-12-07|1995-01-19|1995-01-02|NONE|REG AIR|cies alongside o| +5133|126745|14252|3|27|47836.98|0.04|0.08|R|F|1994-12-23|1994-11-28|1994-12-30|DELIVER IN PERSON|AIR|ggle. regular platelets play quickl| +5134|35892|10893|1|1|1827.89|0.08|0.06|N|O|1995-08-08|1995-08-25|1995-09-04|DELIVER IN PERSON|MAIL| pinto beans use. frets sleep sly| +5134|235232|22745|2|17|19842.74|0.03|0.05|N|O|1995-07-03|1995-08-18|1995-07-09|TAKE BACK RETURN|REG AIR|ithely against the ironic dependencie| +5134|532679|7700|3|13|22251.45|0.04|0.08|N|O|1995-07-07|1995-08-25|1995-08-04|DELIVER IN PERSON|SHIP|sly regular s| +5134|721501|9044|4|27|41106.69|0.08|0.06|N|O|1995-07-01|1995-09-02|1995-07-23|DELIVER IN PERSON|SHIP|iously. fluffil| +5134|264351|39362|5|33|43406.22|0.06|0.02|N|O|1995-09-07|1995-07-21|1995-09-15|TAKE BACK RETURN|REG AIR|efully final dependencies. regula| +5134|934543|22098|6|19|29972.50|0.07|0.01|N|O|1995-09-19|1995-09-13|1995-09-25|NONE|SHIP|t slyly furiously even foxes. slyly ironic | +5134|856305|43857|7|32|40360.32|0.03|0.03|N|O|1995-08-11|1995-09-14|1995-08-12|COLLECT COD|MAIL|ly final foxes sleep slyly a| +5135|915323|40360|1|14|18735.92|0.03|0.04|R|F|1994-09-17|1994-09-16|1994-09-28|NONE|SHIP|inst the furiously pending accounts | +5160|139600|2103|1|37|60665.20|0.06|0.07|N|O|1996-06-17|1996-07-21|1996-06-19|COLLECT COD|TRUCK| packages haggle furiously fluffily | +5160|253200|15706|2|43|49587.17|0.02|0.06|N|O|1996-08-25|1996-05-29|1996-09-21|DELIVER IN PERSON|REG AIR|ag about the ironic deposits. carefully| +5160|528648|3669|3|23|38562.26|0.09|0.04|N|O|1996-06-04|1996-06-06|1996-06-07|COLLECT COD|AIR|ts haggle slyly final,| +5160|984901|22459|4|50|99293.00|0.04|0.06|N|O|1996-07-23|1996-06-08|1996-08-20|TAKE BACK RETURN|RAIL|cing instructions of the slyly fin| +5160|230995|43500|5|14|26963.72|0.02|0.03|N|O|1996-06-19|1996-06-24|1996-07-05|TAKE BACK RETURN|RAIL|rns: pending, iro| +5160|319371|6890|6|1|1390.36|0.08|0.06|N|O|1996-07-10|1996-06-02|1996-07-25|DELIVER IN PERSON|RAIL|s impress bold, pen| +5161|96900|21903|1|24|45525.60|0.08|0.02|N|O|1997-08-15|1997-08-29|1997-08-16|NONE|REG AIR| across the silent, regular hockey | +5161|586652|36653|2|36|62590.68|0.08|0.04|N|O|1997-08-05|1997-08-24|1997-08-30|COLLECT COD|FOB|kly unusual deposits. slyly even foxe| +5162|992662|42663|1|26|45620.12|0.03|0.07|N|O|1996-07-16|1996-07-01|1996-07-25|NONE|TRUCK|deposits. even, idle idea| +5162|659825|47365|2|46|82100.34|0.07|0.08|N|O|1996-07-28|1996-07-14|1996-08-17|NONE|TRUCK|theodolites above the bold, final deposits | +5162|677802|40316|3|7|12458.39|0.06|0.03|N|O|1996-07-11|1996-08-21|1996-08-03|NONE|REG AIR|longside of the furiously re| +5162|810522|35555|4|39|55866.72|0.09|0.06|N|O|1996-08-20|1996-07-01|1996-08-29|TAKE BACK RETURN|MAIL|phins. furiously| +5162|433694|8711|5|7|11393.69|0.05|0.03|N|O|1996-07-05|1996-07-07|1996-07-16|NONE|MAIL| furiously even accounts. p| +5162|92133|4635|6|40|45005.20|0.03|0.01|N|O|1996-06-30|1996-07-23|1996-07-15|COLLECT COD|FOB|y thin foxe| +5162|470716|20717|7|14|23613.66|0.06|0.00|N|O|1996-08-28|1996-07-29|1996-09-27|TAKE BACK RETURN|RAIL|ic requests. furiously special | +5163|312868|387|1|38|71472.30|0.01|0.07|A|F|1994-12-10|1994-11-20|1994-12-21|TAKE BACK RETURN|SHIP| regular accounts haggle slyly alongside of| +5163|368308|5830|2|32|44041.28|0.06|0.01|R|F|1994-12-20|1994-10-15|1995-01-12|DELIVER IN PERSON|AIR|ly. ideas haggle slyly abo| +5163|137952|25459|3|4|7959.80|0.06|0.05|A|F|1994-09-02|1994-10-17|1994-09-23|TAKE BACK RETURN|MAIL|s requests boost about the carefully | +5164|576956|39468|1|25|50823.25|0.00|0.00|N|O|1995-08-21|1995-09-02|1995-08-25|COLLECT COD|SHIP|er the ironic pinto beans sleep s| +5164|887510|12545|2|13|19467.11|0.00|0.07|N|F|1995-06-12|1995-08-02|1995-06-19|COLLECT COD|SHIP|dolites. acc| +5164|372622|47637|3|49|83035.89|0.08|0.05|N|O|1995-07-23|1995-07-21|1995-07-31|DELIVER IN PERSON|FOB|even deposits. furiously r| +5164|656925|6926|4|37|69629.93|0.09|0.06|N|O|1995-08-05|1995-07-08|1995-08-15|DELIVER IN PERSON|MAIL| furiously unus| +5164|934024|34025|5|18|19043.64|0.05|0.08|N|O|1995-09-22|1995-08-03|1995-09-26|COLLECT COD|FOB|theodolites are quickly against the| +5164|129911|29912|6|8|15527.28|0.07|0.01|N|O|1995-09-14|1995-07-29|1995-10-11|DELIVER IN PERSON|FOB|al excuses alongsi| +5165|648944|36481|1|49|92752.59|0.04|0.01|N|O|1998-03-05|1998-01-14|1998-03-11|NONE|TRUCK|fully even deposit| +5165|799329|36875|2|2|2856.58|0.08|0.08|N|O|1998-01-25|1998-02-06|1998-02-18|DELIVER IN PERSON|FOB|lyly. silent accoun| +5165|313417|936|3|18|25747.20|0.09|0.05|N|O|1998-03-24|1998-01-16|1998-03-26|NONE|FOB| against the slyly bold theodolites. bli| +5166|608919|46456|1|16|29246.08|0.03|0.04|A|F|1994-04-25|1994-03-28|1994-04-26|DELIVER IN PERSON|RAIL|y ironic dependencie| +5166|95749|33253|2|44|76768.56|0.06|0.04|R|F|1994-02-24|1994-04-07|1994-03-14|NONE|FOB|ests. blithely silent instructions would se| +5166|249462|49463|3|5|7057.25|0.00|0.07|A|F|1994-01-21|1994-02-27|1994-02-09|COLLECT COD|REG AIR|ctions haggle. deposits use furiously| +5166|701045|38588|4|44|46024.44|0.00|0.03|A|F|1994-01-24|1994-02-25|1994-02-19|DELIVER IN PERSON|REG AIR|ffily ironic packages. blithely silent a| +5166|450705|706|5|5|8278.40|0.08|0.06|A|F|1994-02-18|1994-04-10|1994-02-19|DELIVER IN PERSON|MAIL|nusual foxes w| +5166|986905|49425|6|49|97601.14|0.08|0.03|R|F|1994-02-13|1994-04-03|1994-02-21|NONE|FOB|fully silent | +5166|911031|23550|7|38|39595.62|0.06|0.08|R|F|1994-04-12|1994-03-22|1994-05-01|NONE|REG AIR|fily. blithely ironic deposits | +5167|694555|7069|1|31|48035.12|0.05|0.06|N|O|1997-04-09|1997-04-30|1997-04-14|DELIVER IN PERSON|SHIP|ely close packages. furiously even | +5192|898640|23675|1|41|67182.60|0.07|0.06|N|O|1997-01-12|1996-11-02|1997-01-28|COLLECT COD|TRUCK|accounts. pin| +5192|441052|28577|2|17|16881.51|0.00|0.02|N|O|1996-12-04|1996-10-28|1996-12-11|COLLECT COD|RAIL|le. regular, express d| +5192|750442|25473|3|23|34325.43|0.07|0.02|N|O|1996-12-03|1996-12-15|1996-12-30|DELIVER IN PERSON|TRUCK|press dependencies wake furiously. e| +5193|552632|15144|1|7|11792.27|0.09|0.07|R|F|1994-05-10|1994-06-09|1994-05-24|NONE|AIR|sts haggle furiously regular ideas. quickl| +5193|85901|48403|2|50|94345.00|0.08|0.02|A|F|1994-08-04|1994-06-17|1994-08-28|DELIVER IN PERSON|REG AIR|usly express p| +5193|725900|38415|3|30|57776.10|0.06|0.08|A|F|1994-06-05|1994-07-04|1994-06-19|NONE|TRUCK|asymptotes doubt blithel| +5194|952085|39643|1|23|26151.92|0.05|0.07|A|F|1994-08-24|1994-08-05|1994-09-13|NONE|AIR|packages wake above the careful| +5195|239997|27510|1|44|85227.12|0.00|0.03|R|F|1993-07-26|1993-07-24|1993-08-03|COLLECT COD|AIR|egular foxes. doggedly p| +5195|626615|14152|2|50|77079.00|0.09|0.03|A|F|1993-08-12|1993-07-29|1993-09-04|COLLECT COD|RAIL|pending deposits: slyly bold deposi| +5195|503917|3918|3|6|11525.34|0.01|0.04|R|F|1993-06-24|1993-07-26|1993-07-12|TAKE BACK RETURN|MAIL|ages. furiously regular platelets boost bl| +5195|324528|37035|4|20|31050.20|0.04|0.03|A|F|1993-06-04|1993-07-16|1993-07-02|COLLECT COD|AIR|ly final p| +5196|655501|43041|1|7|10195.29|0.01|0.06|N|O|1996-02-21|1996-01-05|1996-03-07|COLLECT COD|REG AIR|ieve slyly blithely regular accounts.| +5196|993685|18724|2|21|37351.44|0.04|0.04|N|O|1996-03-08|1996-01-19|1996-03-15|NONE|REG AIR|egular packages lose beneath the slyly fin| +5196|849013|11530|3|37|35592.89|0.07|0.05|N|O|1996-01-10|1996-01-06|1996-01-27|TAKE BACK RETURN|AIR|the requests use after the furiously | +5196|358043|45565|4|16|17616.48|0.08|0.00|N|O|1995-12-26|1996-02-06|1996-01-16|TAKE BACK RETURN|MAIL|sual foxes after the deposit| +5197|253954|16460|1|15|28619.10|0.10|0.07|N|O|1998-09-09|1998-09-08|1998-09-18|NONE|AIR| slyly regular dependencies haggle careful| +5197|203219|3220|2|8|8977.60|0.10|0.04|N|O|1998-07-25|1998-09-05|1998-07-30|COLLECT COD|SHIP|regular accounts might haggle above the| +5197|486666|36667|3|30|49579.20|0.04|0.01|N|O|1998-10-04|1998-09-18|1998-10-06|COLLECT COD|REG AIR|bold excuses alongside | +5197|382130|44638|4|19|23030.28|0.03|0.00|N|O|1998-10-15|1998-09-04|1998-10-17|DELIVER IN PERSON|RAIL|s. frays are evenly. slyl| +5197|448517|48518|5|21|30775.29|0.05|0.02|N|O|1998-10-04|1998-08-02|1998-10-29|NONE|RAIL|special deposits use: | +5197|214490|39499|6|40|56179.20|0.10|0.06|N|O|1998-09-28|1998-09-20|1998-10-26|COLLECT COD|SHIP|ly about the carefully pending req| +5198|931273|43792|1|35|45648.05|0.07|0.08|N|O|1996-10-21|1996-10-03|1996-11-11|NONE|RAIL|tes are around the dependencies. dugouts | +5198|891033|3551|2|28|28671.72|0.01|0.08|N|O|1996-12-20|1996-11-19|1996-12-30|DELIVER IN PERSON|MAIL|arefully final d| +5198|585406|10429|3|15|22370.70|0.03|0.00|N|O|1996-10-18|1996-11-25|1996-10-31|TAKE BACK RETURN|FOB|oxes are. furiously final dolphi| +5198|912148|37185|4|15|17401.50|0.08|0.08|N|O|1996-10-15|1996-10-27|1996-11-01|DELIVER IN PERSON|AIR|y silent theodolites am| +5198|458714|8715|5|49|81961.81|0.06|0.04|N|O|1996-11-11|1996-10-23|1996-12-05|DELIVER IN PERSON|FOB|ic accounts. blithely fluffy foxes engag| +5198|591269|3781|6|35|47608.40|0.10|0.00|N|O|1996-11-25|1996-10-10|1996-11-26|NONE|SHIP|carefully ironic | +5199|155661|18165|1|17|29183.22|0.03|0.07|N|O|1996-04-21|1996-04-02|1996-05-21|COLLECT COD|REG AIR|dogged, regular reques| +5199|191908|16915|2|25|49997.50|0.10|0.00|N|O|1996-02-03|1996-03-09|1996-02-19|NONE|SHIP|slyly blithely r| +5199|382622|20144|3|33|56252.13|0.10|0.04|N|O|1996-01-28|1996-03-15|1996-02-16|COLLECT COD|TRUCK|t warhorses| +5199|726726|39241|4|24|42064.56|0.00|0.03|N|O|1996-02-01|1996-03-30|1996-02-14|DELIVER IN PERSON|TRUCK|ke carefully s| +5199|73756|48759|5|34|58811.50|0.05|0.00|N|O|1996-03-04|1996-03-06|1996-03-05|TAKE BACK RETURN|REG AIR|old platel| +5199|614644|39669|6|35|54551.35|0.08|0.01|N|O|1996-02-09|1996-03-04|1996-02-22|COLLECT COD|AIR|regular foxes. quickly ir| +5224|379363|16885|1|24|34616.40|0.09|0.02|N|O|1998-05-30|1998-04-13|1998-06-17|DELIVER IN PERSON|FOB|nal gifts. ironic, ex| +5225|29384|41885|1|5|6566.90|0.06|0.04|N|O|1997-09-25|1997-10-05|1997-10-05|COLLECT COD|AIR|bout the ironic packages. regular, expre| +5225|851062|38614|2|46|46598.92|0.03|0.06|N|O|1997-09-27|1997-09-30|1997-10-27|TAKE BACK RETURN|FOB|refully across the fluffily express| +5225|788910|26456|3|32|63964.16|0.10|0.05|N|O|1997-09-06|1997-10-15|1997-09-27|TAKE BACK RETURN|FOB| silent asymptotes main| +5225|209377|34386|4|45|57886.20|0.00|0.07|N|O|1997-11-14|1997-11-10|1997-12-12|DELIVER IN PERSON|SHIP|ronic instructio| +5225|989241|26799|5|35|46557.00|0.06|0.02|N|O|1997-10-29|1997-09-28|1997-11-09|COLLECT COD|AIR| are fluffily. ideas nag| +5226|328958|28959|1|45|89412.30|0.03|0.03|N|O|1996-01-27|1996-03-04|1996-01-31|DELIVER IN PERSON|REG AIR| ironic platel| +5226|795607|45608|2|10|17025.70|0.01|0.02|N|O|1995-12-15|1996-01-29|1996-01-13|TAKE BACK RETURN|AIR|equests integ| +5226|764502|39533|3|45|70491.15|0.04|0.08|N|O|1996-03-28|1996-02-22|1996-04-15|DELIVER IN PERSON|RAIL|uests. pending asymptotes are. un| +5226|977867|2906|4|30|58344.60|0.07|0.08|N|O|1996-02-08|1996-01-24|1996-02-14|NONE|FOB|ge blithely alongside of the special foxe| +5226|994012|19051|5|15|16589.55|0.10|0.01|N|O|1995-12-10|1996-01-23|1995-12-22|DELIVER IN PERSON|FOB|symptotes doubt always above the ironic, f| +5227|807764|7765|1|20|33434.40|0.09|0.00|N|O|1998-10-10|1998-10-21|1998-11-08|TAKE BACK RETURN|SHIP|e along the bl| +5227|88706|26210|2|11|18641.70|0.05|0.06|N|O|1998-08-10|1998-09-01|1998-08-22|TAKE BACK RETURN|SHIP|elets. furiously regular Tire| +5227|875126|25127|3|43|47346.44|0.06|0.07|N|O|1998-09-26|1998-10-24|1998-10-23|DELIVER IN PERSON|SHIP|ounts after the bra| +5227|236961|24474|4|18|34163.10|0.06|0.04|N|O|1998-10-18|1998-09-22|1998-10-19|TAKE BACK RETURN|RAIL|nusual requests integrate accounts. furio| +5227|593764|31298|5|15|27866.10|0.07|0.04|N|O|1998-09-05|1998-09-18|1998-09-20|TAKE BACK RETURN|SHIP|ithely special a| +5227|387955|463|6|30|61288.20|0.00|0.01|N|O|1998-09-06|1998-10-10|1998-09-18|COLLECT COD|SHIP|oost carefully. blithely final pi| +5227|348069|10576|7|38|42447.90|0.09|0.02|N|O|1998-08-25|1998-10-01|1998-08-26|COLLECT COD|AIR|he slowly regular deposi| +5228|987955|25513|1|11|22472.01|0.05|0.05|N|O|1995-11-21|1995-12-25|1995-11-22|COLLECT COD|SHIP|gle blithely. carefully pendi| +5228|546980|9491|2|42|85132.32|0.03|0.04|N|O|1996-01-31|1995-12-27|1996-02-07|DELIVER IN PERSON|RAIL|inal escapades cajole against the| +5228|77895|40397|3|32|59932.48|0.10|0.01|N|O|1995-10-18|1995-11-23|1995-10-22|DELIVER IN PERSON|MAIL| even, pending theodolites. quiet, ironic | +5228|166719|41726|4|40|71428.40|0.09|0.03|N|O|1996-01-20|1996-01-07|1996-01-22|COLLECT COD|SHIP|ideas mold| +5229|856909|19427|1|24|44780.64|0.08|0.03|A|F|1995-03-03|1995-04-11|1995-03-04|DELIVER IN PERSON|TRUCK|ths detect furi| +5229|56709|31712|2|19|31648.30|0.03|0.08|A|F|1995-04-23|1995-03-10|1995-04-27|DELIVER IN PERSON|MAIL|sly according to the bli| +5229|98849|23852|3|46|85000.64|0.10|0.00|A|F|1995-04-15|1995-04-23|1995-05-06|COLLECT COD|MAIL|nding sauternes. sly| +5229|347458|9965|4|24|36130.56|0.06|0.08|R|F|1995-04-03|1995-03-01|1995-04-19|TAKE BACK RETURN|SHIP|into beans. sly| +5230|432261|19786|1|9|10739.16|0.08|0.03|N|O|1997-11-27|1997-10-28|1997-11-30|TAKE BACK RETURN|MAIL|instructions sleep finally furiously i| +5230|3124|15625|2|5|5135.60|0.03|0.01|N|O|1997-09-10|1997-11-22|1997-09-22|NONE|FOB|ld courts across the fin| +5230|497994|35522|3|4|7967.88|0.09|0.08|N|O|1997-12-04|1997-11-10|1997-12-28|NONE|TRUCK| slyly according to the fl| +5230|779130|4161|4|7|8463.70|0.01|0.04|N|O|1997-12-06|1997-11-14|1997-12-09|DELIVER IN PERSON|AIR|ss packages. ironic, regular | +5230|826407|1440|5|6|8000.16|0.03|0.00|N|O|1997-12-21|1997-11-28|1998-01-10|TAKE BACK RETURN|AIR|xcuses. furiously express requests | +5230|407671|45196|6|48|75775.20|0.06|0.07|N|O|1997-12-15|1997-10-21|1997-12-20|TAKE BACK RETURN|MAIL|oxes wake furiously about the furiously un| +5231|93624|18627|1|18|29117.16|0.09|0.08|R|F|1992-05-15|1992-05-02|1992-05-22|COLLECT COD|AIR|ly blithely ironic din| +5231|523206|23207|2|3|3687.54|0.00|0.06|A|F|1992-04-16|1992-04-05|1992-05-15|TAKE BACK RETURN|SHIP|carefully final depos| +5231|508075|45606|3|39|42238.95|0.03|0.04|A|F|1992-04-07|1992-04-13|1992-04-29|NONE|FOB|t quickly a| +5256|432440|19965|1|38|52151.96|0.04|0.03|R|F|1993-08-01|1993-05-18|1993-08-02|NONE|MAIL|ial packages. | +5256|13020|25521|2|4|3732.08|0.07|0.04|R|F|1993-04-24|1993-07-06|1993-04-27|NONE|REG AIR|nt deposits along the sly| +5256|826709|14258|3|38|62155.08|0.00|0.03|A|F|1993-05-12|1993-06-05|1993-06-05|TAKE BACK RETURN|RAIL|symptotes. carefully even | +5257|700306|12821|1|48|62700.96|0.00|0.06|N|O|1998-07-15|1998-06-08|1998-07-20|NONE|REG AIR|lets haggle even, regular accounts. bl| +5257|31478|18979|2|23|32417.81|0.08|0.00|N|O|1998-06-08|1998-06-13|1998-06-13|DELIVER IN PERSON|SHIP|the quickly express theodolites| +5258|312995|38008|1|25|50199.50|0.07|0.08|R|F|1994-07-21|1994-09-06|1994-08-14|TAKE BACK RETURN|FOB|the slyly fi| +5258|502472|2473|2|17|25065.65|0.02|0.05|R|F|1994-09-02|1994-09-07|1994-09-15|TAKE BACK RETURN|TRUCK|fully caref| +5258|45863|20864|3|36|65118.96|0.02|0.00|A|F|1994-08-24|1994-09-16|1994-09-11|DELIVER IN PERSON|AIR|special wate| +5258|811087|48636|4|1|998.04|0.02|0.06|R|F|1994-07-24|1994-08-29|1994-08-05|TAKE BACK RETURN|TRUCK|dolites. ca| +5259|126307|38810|1|50|66665.00|0.08|0.05|N|O|1997-10-19|1997-09-04|1997-11-10|NONE|SHIP| pending accounts thrash.| +5260|83192|8195|1|26|30554.94|0.01|0.03|A|F|1992-05-19|1992-06-17|1992-06-15|COLLECT COD|AIR|bove the requ| +5260|199128|49129|2|44|53993.28|0.08|0.08|R|F|1992-06-27|1992-06-09|1992-07-18|COLLECT COD|AIR|packages inte| +5260|729437|4466|3|23|33727.20|0.07|0.05|A|F|1992-05-04|1992-05-09|1992-05-30|NONE|SHIP|. regular multi| +5260|637360|24897|4|36|46703.88|0.10|0.07|R|F|1992-05-20|1992-07-06|1992-05-27|TAKE BACK RETURN|RAIL| excuses will have| +5260|98882|48883|5|28|52664.64|0.01|0.00|R|F|1992-05-07|1992-05-08|1992-06-04|TAKE BACK RETURN|TRUCK|ounts. regular requests haggle blithely. | +5261|441808|41809|1|39|68241.42|0.09|0.07|A|F|1992-11-17|1992-12-25|1992-12-01|TAKE BACK RETURN|FOB|r evenly. furiously regular | +5261|459910|22420|2|49|91624.61|0.05|0.07|A|F|1993-01-22|1993-01-04|1993-01-24|DELIVER IN PERSON|TRUCK|ously carefully ironic foxe| +5262|202465|39978|1|9|12307.05|0.07|0.06|R|F|1994-10-07|1994-09-17|1994-10-08|NONE|MAIL|e across the blithely regular requ| +5262|826699|14248|2|35|56897.75|0.04|0.04|R|F|1994-08-13|1994-08-26|1994-08-19|DELIVER IN PERSON|TRUCK| closely bold instr| +5262|329878|29879|3|2|3815.72|0.05|0.01|A|F|1994-10-30|1994-09-10|1994-10-31|COLLECT COD|TRUCK|y unusual instructions are r| +5262|256913|19419|4|37|69186.30|0.06|0.07|R|F|1994-10-30|1994-08-15|1994-11-08|COLLECT COD|REG AIR|s wake. pending pinto bean| +5262|926490|39009|5|10|15164.50|0.02|0.06|A|F|1994-10-15|1994-09-17|1994-10-22|TAKE BACK RETURN|REG AIR|, final requests. furiously fin| +5262|516076|16077|6|4|4368.20|0.01|0.00|R|F|1994-07-27|1994-09-11|1994-08-02|NONE|SHIP|le quickly against the bl| +5262|675632|38146|7|42|67519.20|0.01|0.00|A|F|1994-10-20|1994-09-05|1994-11-11|DELIVER IN PERSON|FOB|ng theodolites. ironic requests hagg| +5263|331666|44173|1|12|20371.80|0.07|0.00|R|F|1994-05-15|1994-05-22|1994-06-07|COLLECT COD|TRUCK|express pains doze furiously. | +5263|303941|41460|2|31|60292.83|0.05|0.02|R|F|1994-04-29|1994-05-29|1994-05-24|NONE|SHIP|ts above the slyly ironic accounts will | +5263|328881|41388|3|3|5729.61|0.03|0.02|A|F|1994-07-12|1994-05-20|1994-07-24|DELIVER IN PERSON|TRUCK|s affix slyly| +5263|491468|3978|4|40|58377.60|0.04|0.06|R|F|1994-07-06|1994-06-09|1994-07-09|TAKE BACK RETURN|MAIL|er the slyly f| +5263|96713|9215|5|38|64968.98|0.06|0.07|R|F|1994-04-03|1994-05-09|1994-04-27|COLLECT COD|FOB|tect. ironic, silent pinto beans boost s| +5263|440608|40609|6|6|9291.48|0.09|0.03|R|F|1994-07-15|1994-04-22|1994-08-13|NONE|TRUCK|. furiousl| +5263|287929|25445|7|1|1916.91|0.10|0.00|R|F|1994-05-18|1994-05-26|1994-06-01|NONE|SHIP|telets. furiously bold | +5288|207630|7631|1|14|21526.68|0.08|0.01|N|O|1997-06-08|1997-05-13|1997-06-14|DELIVER IN PERSON|MAIL|lar pinto beans; platele| +5288|627928|27929|2|47|87226.83|0.03|0.04|N|O|1997-04-09|1997-05-11|1997-04-10|COLLECT COD|SHIP|ironic pinto beans are special, ir| +5289|960212|10213|1|40|50886.80|0.06|0.04|R|F|1993-10-30|1993-12-12|1993-11-20|NONE|FOB|. slyly silent requests alongside of| +5290|921971|21972|1|3|5978.79|0.10|0.05|R|F|1994-12-06|1994-10-06|1994-12-29|TAKE BACK RETURN|AIR|inal foxes wake furiously along| +5290|565271|2805|2|2|2672.50|0.05|0.01|R|F|1994-11-29|1994-11-06|1994-12-22|DELIVER IN PERSON|AIR|lly above the carefully regular de| +5290|499041|36569|3|38|39520.76|0.06|0.07|A|F|1994-12-03|1994-11-26|1994-12-24|NONE|TRUCK| the carefully special account| +5291|794775|32321|1|32|59831.68|0.03|0.04|N|O|1997-07-22|1997-09-29|1997-08-08|DELIVER IN PERSON|MAIL|ing theodolites nag fluffi| +5291|767377|4923|2|32|46218.88|0.08|0.03|N|O|1997-07-25|1997-08-29|1997-08-24|TAKE BACK RETURN|MAIL|onic ideas at the ironically thin| +5291|299897|12403|3|49|92947.12|0.01|0.08|N|O|1997-09-13|1997-09-25|1997-09-20|DELIVER IN PERSON|REG AIR|after the unus| +5291|366295|3817|4|9|12251.52|0.08|0.08|N|O|1997-07-16|1997-10-01|1997-08-05|COLLECT COD|TRUCK|sleep carefully carefully even pains| +5291|304479|16986|5|39|57854.94|0.05|0.01|N|O|1997-10-14|1997-08-20|1997-11-07|TAKE BACK RETURN|TRUCK|sts. furiously regular deposits ca| +5291|377862|27863|6|8|15518.80|0.04|0.06|N|O|1997-07-10|1997-08-21|1997-08-07|NONE|AIR|lar foxes. packages c| +5291|718262|30777|7|25|32005.75|0.04|0.08|N|O|1997-10-31|1997-09-02|1997-11-01|DELIVER IN PERSON|AIR|telets. deposits sl| +5292|815525|40558|1|15|21607.20|0.00|0.01|A|F|1993-07-22|1993-08-27|1993-07-28|NONE|AIR|jole deposits. blith| +5292|520190|32701|2|40|48406.80|0.04|0.05|R|F|1993-10-29|1993-08-23|1993-11-28|NONE|SHIP|odolites. carefully | +5292|824868|24869|3|15|26892.30|0.01|0.01|A|F|1993-08-03|1993-08-18|1993-08-18|COLLECT COD|TRUCK|rding to the furiously special foxes. iro| +5292|541169|28700|4|4|4840.56|0.10|0.02|R|F|1993-08-30|1993-08-28|1993-09-29|TAKE BACK RETURN|MAIL|posits sleep carefully unusual, final pack| +5293|813902|1451|1|17|30869.62|0.03|0.01|N|O|1998-05-01|1998-05-01|1998-05-13|DELIVER IN PERSON|RAIL|requests h| +5293|242468|29981|2|40|56418.00|0.07|0.07|N|O|1998-04-27|1998-04-24|1998-04-28|COLLECT COD|SHIP|cross the final requests. c| +5293|148047|23052|3|12|13140.48|0.05|0.07|N|O|1998-04-12|1998-03-31|1998-05-01|TAKE BACK RETURN|MAIL| requests use blit| +5293|219798|32303|4|35|60122.30|0.00|0.07|N|O|1998-04-05|1998-03-31|1998-04-20|DELIVER IN PERSON|SHIP|s thrash even packages! furiousl| +5293|130503|43006|5|11|16868.50|0.03|0.01|N|O|1998-05-21|1998-04-30|1998-06-02|NONE|FOB|ideas sleep carefully slyly ironic accoun| +5293|350175|176|6|28|34304.48|0.09|0.04|N|O|1998-05-25|1998-04-27|1998-06-19|COLLECT COD|RAIL|terns wake | +5293|389323|1831|7|27|38132.37|0.04|0.07|N|O|1998-05-25|1998-03-14|1998-06-15|COLLECT COD|TRUCK|ependencies. furiously regular dependenci| +5294|343288|30807|1|10|13312.70|0.00|0.06|A|F|1993-06-11|1993-04-13|1993-07-01|NONE|TRUCK|riously blithe packages de| +5294|634019|21556|2|31|29542.38|0.05|0.01|R|F|1993-04-16|1993-03-23|1993-05-07|COLLECT COD|AIR|s sleep regularly among the quickly fin| +5294|947704|35259|3|24|42039.84|0.07|0.05|R|F|1993-03-29|1993-05-01|1993-04-16|NONE|REG AIR|ideas slee| +5294|53308|3309|4|37|46668.10|0.10|0.04|R|F|1993-04-13|1993-05-08|1993-04-28|COLLECT COD|SHIP|eans sleep quickly. special, even requests | +5294|946201|46202|5|50|62358.00|0.01|0.08|A|F|1993-03-30|1993-04-30|1993-03-31|COLLECT COD|TRUCK|ding deposits print carefully unusual grou| +5294|784208|46724|6|13|16798.21|0.03|0.03|R|F|1993-04-04|1993-03-30|1993-04-08|COLLECT COD|SHIP|tes. slyly special ideas haggle car| +5295|57568|20070|1|33|50343.48|0.10|0.01|A|F|1992-06-13|1992-07-19|1992-06-17|NONE|TRUCK|final excuses about the quickly pending re| +5295|536239|36240|2|30|38256.30|0.07|0.02|A|F|1992-05-15|1992-06-15|1992-05-17|COLLECT COD|MAIL|olites are. reg| +5295|552161|39695|3|46|55804.44|0.04|0.01|R|F|1992-07-29|1992-05-27|1992-08-11|TAKE BACK RETURN|REG AIR|packages are sl| +5295|164872|2382|4|40|77474.80|0.09|0.02|R|F|1992-08-24|1992-06-14|1992-08-31|DELIVER IN PERSON|REG AIR| quickly sp| +5295|988209|729|5|6|7782.96|0.00|0.05|R|F|1992-08-13|1992-07-12|1992-08-24|NONE|REG AIR| accounts boost blithely| +5320|724146|36661|1|1|1170.11|0.00|0.04|N|O|1998-07-05|1998-08-10|1998-07-15|NONE|RAIL|fluffily ironic, regula| +5320|708713|33742|2|30|51650.40|0.04|0.00|N|O|1998-06-14|1998-07-06|1998-07-14|DELIVER IN PERSON|SHIP|nic, regular theodolites haggle. close| +5321|75789|38291|1|32|56472.96|0.00|0.02|N|O|1996-11-16|1997-01-08|1996-12-05|NONE|TRUCK| along the even, ironic reques| +5321|774320|36836|2|33|46011.57|0.09|0.01|N|O|1997-02-04|1997-01-05|1997-03-06|TAKE BACK RETURN|AIR|ainst the pending, unusual deposits. even,| +5321|979793|29794|3|6|11236.50|0.08|0.07|N|O|1997-01-14|1997-01-10|1997-02-04|DELIVER IN PERSON|RAIL|hely regular dependencies a| +5321|373094|48109|4|40|46683.20|0.02|0.06|N|O|1997-01-28|1996-12-22|1997-02-20|NONE|MAIL|ss deposits bo| +5321|586743|24277|5|24|43913.28|0.03|0.03|N|O|1996-11-26|1997-01-25|1996-12-18|DELIVER IN PERSON|TRUCK|usual deposits wak| +5322|982449|7488|1|8|12251.20|0.07|0.05|N|O|1998-05-26|1998-03-23|1998-06-09|TAKE BACK RETURN|TRUCK| along the quickly ironic| +5322|3701|28702|2|21|33698.70|0.09|0.07|N|O|1998-01-30|1998-04-26|1998-02-13|NONE|REG AIR| requests boos| +5322|188182|686|3|29|36835.22|0.04|0.08|N|O|1998-04-19|1998-04-11|1998-05-19|TAKE BACK RETURN|REG AIR| foxes must have to detect s| +5322|765368|27884|4|8|11466.64|0.01|0.03|N|O|1998-04-09|1998-03-22|1998-05-02|DELIVER IN PERSON|AIR|usly special packa| +5322|533661|46172|5|45|76258.80|0.05|0.00|N|O|1998-04-20|1998-03-22|1998-05-15|DELIVER IN PERSON|REG AIR|ans sleep. blithely unusual reque| +5323|534339|9360|1|21|28839.51|0.00|0.06|A|F|1995-01-03|1994-11-05|1995-01-26|NONE|SHIP|carefully against the ir| +5323|626593|14130|2|43|65341.08|0.09|0.03|A|F|1994-11-20|1994-12-12|1994-12-12|DELIVER IN PERSON|SHIP|y carefully special| +5324|851868|39420|1|3|5459.46|0.01|0.04|R|F|1992-07-05|1992-06-02|1992-07-18|DELIVER IN PERSON|TRUCK|ronic accounts engage carefully agai| +5324|333382|33383|2|32|45291.84|0.04|0.01|A|F|1992-04-03|1992-04-24|1992-05-01|DELIVER IN PERSON|SHIP|packages use across the perma| +5324|136293|48796|3|44|58488.76|0.06|0.01|A|F|1992-06-04|1992-05-27|1992-06-10|NONE|FOB|deposits nag quickly across the | +5324|671938|46965|4|48|91675.20|0.06|0.06|A|F|1992-06-12|1992-04-28|1992-06-30|COLLECT COD|RAIL|es. requests wake. sl| +5324|254040|29051|5|34|33797.02|0.01|0.03|A|F|1992-07-16|1992-06-11|1992-08-10|TAKE BACK RETURN|FOB|excuses boost carefully final, pendin| +5325|149320|11823|1|21|28755.72|0.03|0.00|N|O|1997-08-20|1997-10-20|1997-08-23|TAKE BACK RETURN|AIR|ests. fluffily pending requests boos| +5325|620809|45834|2|5|8648.85|0.01|0.00|N|O|1997-09-16|1997-09-14|1997-09-18|TAKE BACK RETURN|FOB| haggle across the slyly express pi| +5325|923735|36254|3|25|43967.25|0.09|0.00|N|O|1997-08-19|1997-09-16|1997-09-11|COLLECT COD|FOB|ular accounts cajole fu| +5325|213585|38594|4|32|47954.24|0.05|0.00|N|O|1997-10-24|1997-10-01|1997-10-28|DELIVER IN PERSON|TRUCK| about the accoun| +5326|274627|12143|1|9|14414.49|0.05|0.07|R|F|1993-09-06|1993-07-19|1993-10-02|DELIVER IN PERSON|REG AIR|ainst the pending | +5327|124096|24097|1|21|23521.89|0.07|0.00|N|O|1997-09-06|1997-09-22|1997-10-06|NONE|REG AIR| across the regular, speci| +5327|669360|19361|2|39|51843.87|0.03|0.04|N|O|1997-12-05|1997-09-24|1997-12-16|NONE|FOB|osits wake abo| +5327|924380|36899|3|33|46343.22|0.07|0.00|N|O|1997-10-03|1997-09-29|1997-10-08|DELIVER IN PERSON|REG AIR|uffily reg| +5327|40302|27803|4|26|32299.80|0.09|0.01|N|O|1997-11-26|1997-11-16|1997-12-07|TAKE BACK RETURN|REG AIR|thely quiet hockey players affix aga| +5327|349571|37090|5|22|35652.32|0.09|0.01|N|O|1997-08-29|1997-10-25|1997-09-27|COLLECT COD|FOB|ts according to the f| +5327|235744|23257|6|49|82306.77|0.03|0.02|N|O|1997-09-27|1997-10-30|1997-10-14|DELIVER IN PERSON|FOB|ual asymptotes | +5327|136152|23659|7|1|1188.15|0.05|0.05|N|O|1997-10-06|1997-09-30|1997-10-24|TAKE BACK RETURN|AIR|ole quickly furiously special reques| +5352|291243|3749|1|46|56774.58|0.10|0.03|N|O|1997-01-29|1997-02-14|1997-02-21|COLLECT COD|SHIP|ts. slyly regular wart| +5352|905802|30839|2|13|23500.88|0.00|0.07|N|O|1997-01-23|1997-02-17|1997-02-02|NONE|SHIP| furiously specia| +5352|814016|1565|3|45|41848.65|0.07|0.03|N|O|1997-01-24|1997-01-18|1997-02-04|NONE|AIR|bold deposits. quickly iro| +5352|151022|26029|4|7|7511.14|0.08|0.04|N|O|1997-03-27|1997-03-03|1997-04-20|NONE|TRUCK|ickly silent theodolites! deposits | +5352|216139|28644|5|50|52756.00|0.02|0.05|N|O|1997-01-23|1997-02-10|1997-01-30|TAKE BACK RETURN|TRUCK| furiously final packages. pending | +5352|644879|7392|6|33|60186.72|0.02|0.04|N|O|1997-03-12|1997-02-26|1997-03-30|COLLECT COD|TRUCK|pinto beans wake blithely special request| +5353|34225|46726|1|35|40572.70|0.04|0.05|N|O|1997-10-03|1997-12-26|1997-10-06|NONE|FOB|lithely regular packages abo| +5353|214419|39428|2|42|56002.80|0.02|0.06|N|O|1997-11-25|1997-12-13|1997-12-05|NONE|SHIP|e enticingly u| +5354|699533|24560|1|1|1532.50|0.07|0.01|R|F|1994-05-13|1994-05-07|1994-05-17|TAKE BACK RETURN|FOB| the quickly bold reque| +5354|50865|866|2|40|72634.40|0.01|0.08|R|F|1994-06-14|1994-04-02|1994-07-13|COLLECT COD|AIR|y. quickly special acc| +5354|881585|44103|3|12|18798.48|0.03|0.05|R|F|1994-06-01|1994-03-31|1994-06-28|COLLECT COD|TRUCK|ns affix quickly about th| +5355|335702|10715|1|24|41704.56|0.04|0.06|R|F|1994-12-14|1994-12-29|1995-01-02|TAKE BACK RETURN|MAIL|uests. express, bold packages are| +5355|133557|46060|2|47|74755.85|0.03|0.08|A|F|1995-01-10|1994-12-15|1995-02-02|DELIVER IN PERSON|TRUCK|l pinto beans haggle | +5355|688849|26389|3|37|67998.97|0.07|0.03|R|F|1994-11-21|1995-01-24|1994-12-16|NONE|AIR|le fluffily furiously | +5355|475895|25896|4|30|56126.10|0.06|0.05|R|F|1995-01-04|1995-01-19|1995-01-30|DELIVER IN PERSON|RAIL|n excuses nag slyly along the r| +5355|353317|15825|5|29|39738.70|0.01|0.06|R|F|1995-01-18|1995-01-13|1995-02-04|TAKE BACK RETURN|REG AIR| regular pack| +5356|722661|47690|1|47|79130.61|0.07|0.04|N|O|1998-03-12|1998-02-28|1998-03-15|NONE|RAIL|y above the ironic packages. iro| +5357|700592|25621|1|39|62109.84|0.06|0.04|A|F|1993-10-12|1993-10-09|1993-10-31|COLLECT COD|MAIL|ake quickly regular dependencies. ca| +5357|834497|9530|2|24|34354.80|0.00|0.00|R|F|1993-09-29|1993-08-18|1993-10-22|COLLECT COD|FOB|l deposits. ironic| +5357|382987|20509|3|3|6209.91|0.00|0.00|A|F|1993-09-02|1993-09-07|1993-09-27|COLLECT COD|RAIL| theodolites was | +5357|858553|33588|4|13|19649.63|0.01|0.08|R|F|1993-10-06|1993-09-22|1993-10-31|COLLECT COD|REG AIR|ts run slyly blithely regular courts. b| +5357|694624|44625|5|23|37227.57|0.10|0.00|A|F|1993-08-19|1993-09-21|1993-08-24|NONE|AIR|fily close deposits sleep| +5357|539293|39294|6|21|27977.67|0.00|0.06|R|F|1993-08-05|1993-10-07|1993-08-25|NONE|FOB|nal, even accounts| +5358|452832|15342|1|18|32126.58|0.06|0.00|A|F|1993-07-31|1993-06-26|1993-08-23|DELIVER IN PERSON|RAIL|ely. even requests boost | +5358|742620|17649|2|30|49877.70|0.03|0.07|A|F|1993-06-17|1993-08-13|1993-07-08|NONE|AIR|ing to the carefully even ideas. quickly s| +5359|926821|39340|1|44|81302.32|0.07|0.07|N|O|1997-09-05|1997-07-23|1997-09-10|NONE|FOB|e carefully final foxes| +5359|73330|23331|2|43|56043.19|0.10|0.05|N|O|1997-06-16|1997-07-04|1997-06-22|NONE|TRUCK| regular deposits haggle | +5384|973259|35779|1|24|31973.04|0.07|0.05|N|O|1997-05-14|1997-03-26|1997-06-09|NONE|SHIP|rding to the quickly regular platelets. | +5384|552385|14897|2|10|14373.60|0.02|0.01|N|O|1997-03-29|1997-04-09|1997-04-07|TAKE BACK RETURN|FOB| haggle furiously. b| +5384|928228|40747|3|25|31404.50|0.10|0.08|N|O|1997-04-06|1997-04-06|1997-04-08|TAKE BACK RETURN|TRUCK|ckages. ironic ideas nag. | +5384|722865|10408|4|48|90615.84|0.04|0.07|N|O|1997-03-13|1997-04-27|1997-03-21|DELIVER IN PERSON|REG AIR|refully re| +5384|181087|43591|5|37|43218.96|0.05|0.04|N|O|1997-02-20|1997-05-14|1997-03-04|COLLECT COD|REG AIR|lar asymptote| +5384|519668|7199|6|29|48941.56|0.07|0.00|N|O|1997-04-01|1997-04-05|1997-04-11|NONE|AIR|deposits haggle | +5385|547214|34745|1|6|7567.14|0.08|0.03|A|F|1994-04-06|1994-03-18|1994-05-06|COLLECT COD|MAIL|lar packages use furiously-- | +5386|446790|9299|1|44|76417.88|0.07|0.04|N|O|1998-09-17|1998-09-30|1998-10-16|NONE|REG AIR|sly across the req| +5386|186573|36574|2|42|69701.94|0.04|0.06|N|O|1998-10-07|1998-08-15|1998-10-12|COLLECT COD|FOB|ironic platelets. carefully| +5386|721075|8618|3|31|33977.24|0.04|0.04|N|O|1998-09-30|1998-09-05|1998-10-29|DELIVER IN PERSON|MAIL| even patterns whithout the s| +5386|102910|27915|4|20|38258.20|0.05|0.04|N|O|1998-09-28|1998-09-21|1998-10-11|COLLECT COD|SHIP|slyly final | +5387|494665|32193|1|30|49789.20|0.06|0.03|A|F|1993-04-07|1993-05-25|1993-04-15|DELIVER IN PERSON|SHIP|le blithely across the pe| +5387|823916|23917|2|43|79114.41|0.04|0.07|R|F|1993-04-14|1993-04-20|1993-04-25|COLLECT COD|FOB|ly regular accounts| +5387|544743|7254|3|16|28603.52|0.08|0.05|A|F|1993-04-27|1993-05-05|1993-05-04|NONE|RAIL| ironic foxes about the evenly express | +5387|486239|48749|4|10|12252.10|0.07|0.02|A|F|1993-05-19|1993-04-24|1993-06-17|COLLECT COD|SHIP|theodolites. quickly| +5387|205021|42534|5|19|17594.19|0.06|0.05|R|F|1993-05-26|1993-05-26|1993-06-18|COLLECT COD|AIR|ake furiously b| +5387|772202|47233|6|49|62434.33|0.08|0.06|A|F|1993-06-08|1993-06-09|1993-06-24|DELIVER IN PERSON|MAIL|ld have to unwind fluffily final packag| +5388|496103|21122|1|14|15387.12|0.10|0.01|N|O|1995-09-26|1995-10-31|1995-10-13|NONE|AIR| deposits. asymptotes de| +5388|998342|23381|2|37|53291.10|0.10|0.04|N|O|1995-11-13|1995-11-07|1995-12-06|DELIVER IN PERSON|FOB|olites. fluff| +5388|120884|8391|3|31|59051.28|0.00|0.05|N|O|1995-11-18|1995-11-25|1995-12-16|NONE|TRUCK|ckly alongside of the| +5388|696464|8978|4|19|27748.17|0.04|0.04|N|O|1995-12-15|1995-11-06|1996-01-06|NONE|TRUCK|endencies haggle qui| +5389|929585|4622|1|47|75883.38|0.07|0.01|N|O|1995-12-16|1996-01-26|1995-12-20|DELIVER IN PERSON|AIR|e. requests boost above the quick| +5389|526987|2008|2|26|52362.96|0.02|0.00|N|O|1996-03-03|1996-02-06|1996-03-13|DELIVER IN PERSON|REG AIR|ies alongside of the fl| +5389|68978|31480|3|19|36992.43|0.05|0.04|N|O|1996-02-16|1996-02-13|1996-03-05|NONE|REG AIR|fter the regular foxes. deposit| +5389|305240|30253|4|47|58525.81|0.07|0.07|N|O|1995-12-15|1996-01-18|1996-01-09|COLLECT COD|TRUCK|press epitaphs; furiously spec| +5390|751183|26214|1|44|54302.60|0.02|0.02|R|F|1993-10-18|1993-09-24|1993-10-30|DELIVER IN PERSON|RAIL|yly regular dinos-| +5390|124163|49168|2|38|45112.08|0.01|0.08|R|F|1993-08-20|1993-10-26|1993-09-04|TAKE BACK RETURN|TRUCK|into beans accordin| +5390|803260|28293|3|16|18611.52|0.01|0.03|R|F|1993-08-04|1993-09-30|1993-08-08|TAKE BACK RETURN|SHIP|the slyly slow p| +5390|382201|19723|4|41|52610.79|0.02|0.07|A|F|1993-08-05|1993-09-22|1993-08-08|COLLECT COD|RAIL|slyly final in| +5390|650592|25619|5|6|9255.36|0.01|0.06|R|F|1993-10-23|1993-09-19|1993-11-12|NONE|AIR|hinly regular accounts haggle. furiously | +5390|497985|23004|6|25|49574.00|0.00|0.04|R|F|1993-11-16|1993-10-10|1993-11-28|TAKE BACK RETURN|SHIP|hins are about the slyly regular platelets| +5390|618634|31147|7|26|40367.60|0.09|0.00|A|F|1993-11-14|1993-10-26|1993-12-10|COLLECT COD|TRUCK|re slyly about t| +5391|380985|43493|1|32|66111.04|0.07|0.06|A|F|1992-09-09|1992-10-14|1992-09-23|DELIVER IN PERSON|TRUCK|bold realms cajole. pendin| +5391|209329|9330|2|7|8668.17|0.08|0.07|R|F|1992-12-21|1992-10-28|1993-01-13|COLLECT COD|AIR|c dolphins. fluffily| +5391|183712|8719|3|28|50279.88|0.02|0.02|A|F|1992-11-29|1992-10-17|1992-12-13|NONE|RAIL|blithely about the furiously express| +5391|635886|23423|4|49|89270.65|0.07|0.03|A|F|1992-10-16|1992-11-02|1992-10-27|DELIVER IN PERSON|AIR|uternes integrate carefully. careful| +5391|327172|39679|5|45|53962.20|0.08|0.06|A|F|1992-12-14|1992-09-30|1993-01-03|NONE|RAIL|sits. furiously| +5391|764130|1676|6|21|25076.10|0.06|0.05|A|F|1992-11-02|1992-10-24|1992-11-30|TAKE BACK RETURN|TRUCK|the deposits. even, final notor| +5416|390249|40250|1|24|32141.52|0.07|0.00|N|O|1997-11-03|1997-11-11|1997-11-08|NONE|RAIL|s. furiously final foxes sleep-- furiou| +5416|910743|48298|2|45|78916.50|0.02|0.03|N|O|1997-12-10|1997-11-19|1997-12-13|DELIVER IN PERSON|AIR|. packages boost. pending pinto beans are| +5416|843028|18061|3|27|26216.46|0.00|0.01|N|O|1997-11-28|1997-11-22|1997-12-28|TAKE BACK RETURN|FOB|nag. regular, express| +5416|760898|35929|4|27|52889.22|0.07|0.02|N|O|1997-10-27|1997-11-21|1997-11-26|NONE|REG AIR|ress at the even| +5416|406668|6669|5|41|64560.24|0.10|0.05|N|O|1997-10-21|1997-12-03|1997-11-08|DELIVER IN PERSON|FOB|its sleep furiously. furiously | +5416|856439|31474|6|45|62792.55|0.05|0.06|N|O|1997-11-23|1997-11-11|1997-12-17|DELIVER IN PERSON|TRUCK|nic ideas shall have t| +5417|766878|16879|1|19|36951.96|0.10|0.08|N|O|1997-05-23|1997-06-19|1997-06-13|COLLECT COD|AIR|ost. instructions n| +5418|340598|15611|1|31|50795.98|0.01|0.01|N|O|1998-03-07|1998-04-10|1998-03-09|TAKE BACK RETURN|TRUCK|latelets. final accounts wake. quickl| +5418|422798|47815|2|44|75713.88|0.03|0.07|N|O|1998-02-20|1998-03-05|1998-02-21|NONE|MAIL| quickly even packages: theodol| +5418|952377|27416|3|21|30015.93|0.05|0.02|N|O|1998-02-21|1998-03-17|1998-03-02|COLLECT COD|REG AIR| braids poach | +5418|584553|9576|4|26|42575.78|0.10|0.04|N|O|1998-03-05|1998-03-04|1998-04-03|COLLECT COD|REG AIR|ajole quickly across the frays. quickly sp| +5418|578458|40970|5|29|44556.47|0.04|0.07|N|O|1998-03-15|1998-04-18|1998-04-07|NONE|MAIL| pending platelets| +5418|129703|42206|6|12|20792.40|0.00|0.07|N|O|1998-04-12|1998-03-05|1998-05-06|DELIVER IN PERSON|FOB|omas would print| +5419|612468|12469|1|1|1380.43|0.00|0.06|R|F|1994-07-07|1994-08-09|1994-07-26|TAKE BACK RETURN|SHIP|e against the fur| +5419|738263|25806|2|29|37735.67|0.00|0.04|A|F|1994-08-04|1994-08-03|1994-09-02|COLLECT COD|MAIL|ackages. furiously final instructions| +5420|212921|25426|1|16|29342.56|0.10|0.00|N|O|1997-02-10|1997-01-07|1997-02-18|NONE|MAIL|ound the ironic accounts. blithe| +5420|551159|1160|2|46|55665.98|0.04|0.01|N|O|1996-11-28|1996-12-25|1996-12-01|DELIVER IN PERSON|FOB|nal dependencies| +5420|318682|18683|3|14|23809.38|0.02|0.06|N|O|1996-12-25|1996-12-12|1997-01-11|TAKE BACK RETURN|AIR|nos. slyly even request| +5420|83071|33072|4|48|50595.36|0.01|0.02|N|O|1996-10-28|1996-12-14|1996-11-21|COLLECT COD|FOB|s cajole thinly carefully bold depos| +5420|172701|47708|5|19|33700.30|0.10|0.05|N|O|1997-01-20|1996-11-29|1997-01-30|TAKE BACK RETURN|REG AIR|y regular courts cajole pen| +5421|30774|43275|1|7|11933.39|0.10|0.08|N|O|1998-09-26|1998-08-09|1998-10-24|NONE|FOB|posits across t| +5421|218237|30742|2|13|15017.86|0.06|0.07|N|O|1998-09-15|1998-09-03|1998-10-12|COLLECT COD|TRUCK| haggle above the| +5421|899894|49895|3|3|5681.55|0.06|0.04|N|O|1998-06-15|1998-08-07|1998-06-19|COLLECT COD|RAIL|e special, bold deposits haggle blithely | +5421|508644|21155|4|41|67757.42|0.09|0.06|N|O|1998-07-14|1998-07-28|1998-07-16|NONE|FOB|ress packages cajole. quickly expre| +5421|770824|8370|5|45|85265.55|0.07|0.07|N|O|1998-08-07|1998-07-17|1998-09-06|DELIVER IN PERSON|REG AIR|st never. | +5421|237938|12947|6|24|45022.08|0.03|0.04|N|O|1998-09-09|1998-07-23|1998-09-23|TAKE BACK RETURN|RAIL|ular hockey play| +5421|9660|47161|7|24|37671.84|0.06|0.08|N|O|1998-06-16|1998-08-05|1998-06-29|TAKE BACK RETURN|FOB|sly requests. regular| +5422|345501|33020|1|45|69592.05|0.00|0.01|N|O|1996-04-01|1996-05-27|1996-04-26|DELIVER IN PERSON|MAIL|sly tithes. bold dolphins cajole| +5423|689022|1536|1|29|29318.71|0.07|0.01|N|O|1996-01-12|1996-02-09|1996-01-22|COLLECT COD|TRUCK|out the blithely slow dugouts. slyly | +5423|385535|10550|2|21|34030.92|0.06|0.00|N|O|1996-01-20|1996-01-28|1996-01-25|NONE|SHIP|s. bold, r| +5423|682967|20507|3|23|44848.39|0.04|0.06|N|O|1996-01-28|1996-03-26|1996-02-13|NONE|TRUCK|le blithely quick de| +5423|610702|48239|4|42|67732.14|0.00|0.01|N|O|1996-02-17|1996-03-08|1996-02-26|TAKE BACK RETURN|TRUCK|fully unusual, unus| +5423|52939|40443|5|1|1891.93|0.10|0.02|N|O|1996-02-24|1996-02-29|1996-03-07|TAKE BACK RETURN|AIR|packages haggle blithel| +5448|26921|1922|1|48|88700.16|0.09|0.01|A|F|1992-12-23|1992-11-21|1993-01-02|DELIVER IN PERSON|FOB|y unusual dinos during the blithely| +5448|460729|23239|2|36|60829.20|0.05|0.00|R|F|1992-12-10|1992-11-05|1992-12-24|COLLECT COD|TRUCK| bold accounts across the carefully silen| +5448|462519|12520|3|33|48889.17|0.09|0.07|R|F|1992-11-13|1992-10-18|1992-12-02|TAKE BACK RETURN|FOB|osits. final pinto beans a| +5449|394807|32329|1|22|41839.38|0.07|0.07|N|O|1997-08-04|1997-07-07|1997-08-21|DELIVER IN PERSON|MAIL|, regular deposits| +5449|504460|29481|2|50|73222.00|0.06|0.05|N|O|1997-05-20|1997-06-28|1997-05-30|TAKE BACK RETURN|FOB|mptotes cajole reques| +5450|642904|42905|1|44|81262.28|0.09|0.08|N|O|1996-12-29|1997-01-03|1997-01-01|DELIVER IN PERSON|FOB|ges. regular deposits about th| +5450|275612|25613|2|14|22226.40|0.07|0.05|N|O|1996-12-22|1997-01-02|1997-01-19|TAKE BACK RETURN|REG AIR| packages nag after t| +5451|518073|30584|1|16|17456.80|0.00|0.00|N|O|1995-12-01|1996-02-17|1995-12-15|DELIVER IN PERSON|MAIL|g to the pending theodolites. furiou| +5452|34788|34789|1|25|43069.50|0.04|0.08|A|F|1995-04-10|1995-04-23|1995-04-26|TAKE BACK RETURN|REG AIR| asymptotes sleep about the quic| +5452|674050|49077|2|16|16384.32|0.01|0.01|N|F|1995-06-13|1995-04-26|1995-06-22|NONE|TRUCK|unts sleep. r| +5452|752025|39571|3|2|2153.98|0.01|0.01|R|F|1995-04-18|1995-05-19|1995-05-01|COLLECT COD|AIR|ages. carefu| +5452|271672|9188|4|39|64102.74|0.09|0.03|R|F|1995-04-24|1995-03-31|1995-04-29|COLLECT COD|SHIP|s at the carefully final deposits ha| +5452|979828|4867|5|7|13354.46|0.07|0.08|N|F|1995-05-29|1995-04-06|1995-06-18|DELIVER IN PERSON|REG AIR|. final, r| +5453|915572|40609|1|3|4762.59|0.06|0.01|N|O|1997-03-13|1997-02-08|1997-03-17|TAKE BACK RETURN|REG AIR|lly unusual dependencies unwind blit| +5453|8903|21404|2|50|90595.00|0.03|0.02|N|O|1997-02-20|1997-01-11|1997-02-23|DELIVER IN PERSON|REG AIR| the carefully| +5453|616467|16468|3|8|11067.44|0.01|0.07|N|O|1997-02-11|1997-01-27|1997-03-03|COLLECT COD|REG AIR|decoys. blithel| +5453|949800|24837|4|6|11098.56|0.08|0.06|N|O|1997-02-19|1997-02-09|1997-03-03|COLLECT COD|MAIL|s. quickly final accounts haggle ac| +5453|276243|1254|5|5|6096.15|0.08|0.01|N|O|1996-12-14|1997-01-29|1997-01-05|DELIVER IN PERSON|FOB|usual accounts.| +5453|812477|37510|6|49|68082.07|0.03|0.00|N|O|1996-12-22|1997-01-07|1996-12-30|COLLECT COD|TRUCK|lets. furiously express orbits wake q| +5453|294592|7098|7|11|17452.38|0.10|0.07|N|O|1996-12-14|1997-02-15|1996-12-18|DELIVER IN PERSON|RAIL|fter the carefully regula| +5454|196259|21266|1|36|48789.00|0.07|0.01|A|F|1993-09-13|1993-08-12|1993-10-08|COLLECT COD|FOB|ages sleep quickly final, iron| +5454|516834|29345|2|9|16657.29|0.06|0.00|A|F|1993-07-29|1993-09-09|1993-08-22|DELIVER IN PERSON|SHIP|le fluffily according to the ironi| +5454|426431|26432|3|2|2714.82|0.02|0.05|R|F|1993-07-18|1993-09-11|1993-07-20|DELIVER IN PERSON|FOB|sly final din| +5454|11487|48988|4|26|36360.48|0.00|0.01|R|F|1993-07-30|1993-08-16|1993-08-28|NONE|RAIL|sly final packages. carefully unusual theod| +5454|50914|13416|5|10|18649.10|0.02|0.05|R|F|1993-07-26|1993-07-19|1993-08-07|COLLECT COD|FOB|final deposits haggle blith| +5454|710312|22827|6|19|25123.32|0.00|0.04|A|F|1993-08-09|1993-07-26|1993-08-24|TAKE BACK RETURN|REG AIR| silent pinto be| +5455|592670|5182|1|27|47591.55|0.08|0.04|N|O|1998-01-05|1998-03-16|1998-01-25|COLLECT COD|AIR|fully against the theodolites. silent| +5455|999791|49792|2|19|35924.25|0.05|0.00|N|O|1998-01-01|1998-01-25|1998-01-23|DELIVER IN PERSON|TRUCK|kly furiously regular depths. ironic, | +5455|473298|48317|3|4|5085.08|0.02|0.02|N|O|1998-04-02|1998-02-10|1998-04-05|COLLECT COD|REG AIR|y. blithely regular courts | +5455|704983|42526|4|9|17891.55|0.04|0.07|N|O|1998-02-06|1998-03-12|1998-02-21|COLLECT COD|RAIL|ully ironic deposits. slyly reg| +5480|49376|24377|1|19|25182.03|0.01|0.08|R|F|1992-08-20|1992-06-25|1992-09-08|NONE|SHIP|even, express asymptotes. slyly regular req| +5481|57666|45170|1|39|63322.74|0.09|0.06|N|O|1996-05-16|1996-03-18|1996-06-07|DELIVER IN PERSON|REG AIR|st the quickly ironic deposits are f| +5481|184699|22209|2|29|51727.01|0.06|0.00|N|O|1996-02-27|1996-03-01|1996-03-14|NONE|RAIL|e quickly.| +5481|224940|24941|3|36|67137.48|0.01|0.08|N|O|1996-03-10|1996-04-10|1996-03-31|COLLECT COD|RAIL|y even warthogs sl| +5481|558280|45814|4|2|2676.52|0.08|0.04|N|O|1996-04-19|1996-04-07|1996-05-05|COLLECT COD|REG AIR|? ironic accounts wake carefu| +5481|6846|6847|5|27|47326.68|0.09|0.02|N|O|1996-02-22|1996-04-11|1996-03-20|DELIVER IN PERSON|REG AIR|hely carefully silen| +5482|684614|22154|1|28|44760.24|0.01|0.06|N|O|1997-02-28|1997-02-10|1997-03-12|DELIVER IN PERSON|RAIL|en ideas detect doggedly. bl| +5483|964857|39896|1|17|32670.77|0.08|0.00|N|O|1997-04-11|1997-05-25|1997-04-20|COLLECT COD|REG AIR| must have to use blith| +5484|635763|48276|1|43|73045.39|0.08|0.04|A|F|1994-02-19|1994-04-07|1994-03-10|COLLECT COD|TRUCK| slyly final d| +5484|253332|28343|2|38|48842.16|0.09|0.03|A|F|1994-04-26|1994-03-10|1994-05-23|NONE|FOB| deposits alongside of the slyl| +5485|831449|43966|1|33|45553.20|0.02|0.01|A|F|1994-12-16|1995-02-20|1995-01-11|COLLECT COD|AIR|y special dependencies haggl| +5485|155127|5128|2|12|14185.44|0.04|0.01|R|F|1995-03-30|1995-01-05|1995-04-29|NONE|MAIL|ent requests detect pending| +5485|215524|3037|3|7|10076.57|0.05|0.00|A|F|1995-03-24|1995-01-28|1995-04-09|NONE|RAIL|arefully. furiously ironic theo| +5485|300352|353|4|18|24342.12|0.07|0.08|R|F|1995-03-27|1995-02-23|1995-04-19|NONE|TRUCK|nts run about the slyly ironic packages.| +5485|2882|2883|5|49|87459.12|0.08|0.03|A|F|1994-12-28|1995-01-14|1995-01-23|DELIVER IN PERSON|SHIP|dly ironic packages cajole care| +5485|432798|45307|6|26|45000.02|0.02|0.08|A|F|1995-01-25|1995-01-19|1995-02-19|DELIVER IN PERSON|REG AIR| sleep according to the qu| +5486|43136|18137|1|34|36690.42|0.02|0.03|N|O|1996-10-04|1996-10-26|1996-10-16|DELIVER IN PERSON|REG AIR|. enticingly express| +5486|980197|17755|2|23|29374.45|0.00|0.07|N|O|1996-09-12|1996-11-12|1996-09-14|DELIVER IN PERSON|REG AIR|s. blithely unusual reques| +5486|165209|27713|3|50|63710.00|0.00|0.02|N|O|1996-12-19|1996-10-30|1997-01-07|NONE|AIR|y regular theodolites. fur| +5486|656183|6184|4|39|44426.85|0.04|0.02|N|O|1996-12-30|1996-10-25|1997-01-22|TAKE BACK RETURN|REG AIR|ctions. special, special request| +5486|467518|42537|5|22|32680.78|0.05|0.07|N|O|1996-09-26|1996-10-15|1996-10-05|COLLECT COD|TRUCK| regular deposits| +5486|560245|22757|6|15|19578.30|0.01|0.05|N|O|1996-10-19|1996-12-01|1996-11-10|NONE|AIR|. quickly unusual foxe| +5487|733555|21098|1|39|61952.28|0.10|0.08|A|F|1992-08-25|1992-08-03|1992-09-17|COLLECT COD|REG AIR|ter the ironically final deposits sleep | +5487|858364|33399|2|12|15867.84|0.06|0.00|A|F|1992-08-07|1992-08-27|1992-08-10|TAKE BACK RETURN|RAIL|nic package| +5487|509902|47433|3|7|13383.16|0.02|0.02|A|F|1992-07-17|1992-08-18|1992-08-04|NONE|FOB|nding ideas across the unusua| +5487|919466|31985|4|29|43077.18|0.04|0.03|R|F|1992-08-10|1992-07-29|1992-09-03|COLLECT COD|AIR|he furiously ironic accounts use permanen| +5487|463654|26164|5|14|22646.82|0.10|0.02|R|F|1992-06-19|1992-08-31|1992-06-21|TAKE BACK RETURN|SHIP|lets cajole careful| +5487|623850|11387|6|5|8869.10|0.06|0.03|A|F|1992-08-09|1992-09-03|1992-08-25|TAKE BACK RETURN|REG AIR| sauternes are. final, bold deposits wake. | +5487|32838|45339|7|42|74374.86|0.06|0.03|A|F|1992-09-13|1992-07-17|1992-09-27|COLLECT COD|MAIL|ffily even packages will hagg| +5512|902217|27254|1|45|54862.65|0.03|0.00|N|O|1996-04-22|1996-03-19|1996-05-22|DELIVER IN PERSON|MAIL|ependencies. pending, pend| +5512|547928|22949|2|26|51373.40|0.09|0.02|N|O|1996-04-17|1996-05-13|1996-04-18|COLLECT COD|RAIL|ar deposits. regular | +5512|14120|26621|3|42|43433.04|0.06|0.08|N|O|1996-02-23|1996-05-11|1996-03-16|COLLECT COD|REG AIR|ts along the regular| +5512|304767|29780|4|17|30119.75|0.02|0.04|N|O|1996-05-26|1996-04-14|1996-06-05|NONE|TRUCK|deposits. final accoun| +5512|214167|39176|5|43|46489.45|0.07|0.01|N|O|1996-05-02|1996-04-18|1996-05-09|DELIVER IN PERSON|FOB|ets. final, even attainments above the the| +5512|494445|6955|6|21|30227.82|0.08|0.03|N|O|1996-02-29|1996-05-02|1996-03-08|DELIVER IN PERSON|FOB|ely accounts. slyly even | +5512|124375|24376|7|38|53176.06|0.03|0.03|N|O|1996-05-08|1996-03-27|1996-06-07|TAKE BACK RETURN|SHIP|structions are pending braids. regu| +5513|369212|31720|1|15|19218.00|0.05|0.04|R|F|1993-10-03|1993-11-16|1993-11-02|TAKE BACK RETURN|REG AIR|accounts t| +5513|339226|1733|2|13|16447.73|0.09|0.07|R|F|1993-09-08|1993-10-01|1993-09-26|COLLECT COD|REG AIR|requests sleep about the quickly pend| +5513|370360|45375|3|29|41480.15|0.04|0.03|R|F|1993-11-13|1993-11-12|1993-11-23|TAKE BACK RETURN|SHIP|o the carefully unusual pinto beans be| +5514|351253|38775|1|41|53473.84|0.08|0.05|R|F|1994-05-18|1994-05-25|1994-06-17|DELIVER IN PERSON|SHIP|ng to the ironic accounts. quickl| +5514|495167|32695|2|43|49972.02|0.02|0.05|A|F|1994-04-07|1994-06-07|1994-05-03|COLLECT COD|TRUCK|counts are quietly at | +5514|255428|42944|3|19|26284.79|0.06|0.01|A|F|1994-04-21|1994-05-10|1994-05-01|NONE|RAIL|oggedly regular instructions hag| +5514|966203|3761|4|13|16499.08|0.10|0.08|R|F|1994-06-14|1994-05-25|1994-06-28|COLLECT COD|MAIL|uests. slyly regu| +5515|728188|28189|1|42|51078.30|0.05|0.08|N|O|1998-08-19|1998-09-20|1998-08-29|TAKE BACK RETURN|SHIP|oggedly regular somas haggle. ironic, final| +5515|649088|49089|2|34|35259.70|0.02|0.04|N|O|1998-10-25|1998-08-30|1998-11-24|COLLECT COD|AIR|romise. fluffily b| +5515|213983|38992|3|50|94848.50|0.07|0.05|N|O|1998-08-14|1998-09-24|1998-08-18|TAKE BACK RETURN|TRUCK|arefully after the c| +5515|404117|29134|4|40|40843.60|0.04|0.06|N|O|1998-09-13|1998-09-11|1998-09-22|TAKE BACK RETURN|AIR|careful deposits. silent pa| +5515|981811|44331|5|48|90852.96|0.08|0.03|N|O|1998-07-15|1998-09-29|1998-07-27|COLLECT COD|RAIL|dolphins? | +5515|296085|46086|6|25|27026.75|0.04|0.04|N|O|1998-08-10|1998-08-26|1998-08-24|DELIVER IN PERSON|SHIP|ajole furiously. sly| +5515|289485|39486|7|35|51606.45|0.01|0.01|N|O|1998-10-13|1998-09-28|1998-10-28|DELIVER IN PERSON|AIR|ide of the deposits. sl| +5516|366228|16229|1|39|50474.19|0.03|0.06|N|O|1996-08-09|1996-06-17|1996-08-29|DELIVER IN PERSON|SHIP|ly! tithes wake. ironic deposits haggle.| +5516|190271|27781|2|23|31309.21|0.10|0.03|N|O|1996-07-02|1996-07-10|1996-07-25|NONE|SHIP|gular packages. regular, sly dependencie| +5516|869115|19116|3|23|24933.61|0.03|0.07|N|O|1996-06-02|1996-08-14|1996-06-25|DELIVER IN PERSON|AIR|he express, regula| +5516|210962|48475|4|7|13110.65|0.10|0.05|N|O|1996-08-31|1996-07-16|1996-09-27|COLLECT COD|REG AIR|carefully expr| +5516|630844|30845|5|36|63893.16|0.00|0.02|N|O|1996-05-24|1996-07-10|1996-05-28|COLLECT COD|SHIP|cial excuses sleep throughout the regul| +5516|579669|17203|6|18|31475.52|0.06|0.03|N|O|1996-07-06|1996-07-17|1996-07-20|TAKE BACK RETURN|REG AIR|counts. fluffily ironic theodo| +5516|481347|18875|7|48|63759.36|0.08|0.01|N|O|1996-06-11|1996-08-11|1996-06-24|NONE|REG AIR|y regular acc| +5517|987337|49857|1|20|28485.80|0.04|0.08|N|O|1995-10-25|1995-09-29|1995-11-22|DELIVER IN PERSON|SHIP|dependencies integrate furiously| +5517|158672|8673|2|32|55381.44|0.10|0.00|N|O|1995-09-08|1995-09-13|1995-10-01|TAKE BACK RETURN|FOB|s boost at the requests. pending, e| +5518|326710|1723|1|27|46890.90|0.10|0.05|A|F|1993-05-17|1993-07-21|1993-06-02|DELIVER IN PERSON|SHIP|never above the f| +5519|245069|20078|1|49|49688.45|0.02|0.08|N|O|1996-05-15|1996-03-17|1996-06-05|COLLECT COD|REG AIR|y furiously final dependencies. qu| +5519|862233|24751|2|30|35855.70|0.08|0.05|N|O|1996-04-11|1996-04-21|1996-05-10|COLLECT COD|TRUCK|equests solve silently| +5519|535471|47982|3|13|19583.85|0.10|0.04|N|O|1996-03-01|1996-04-24|1996-03-16|TAKE BACK RETURN|TRUCK| requests haggle bli| +5519|657623|32650|4|44|69545.96|0.09|0.00|N|O|1996-03-17|1996-04-02|1996-04-11|COLLECT COD|SHIP|kly pending accounts sleep furi| +5519|662034|37061|5|31|30876.00|0.06|0.01|N|O|1996-05-25|1996-03-17|1996-06-12|NONE|SHIP|ies sleep sl| +5544|337885|12898|1|14|26920.18|0.09|0.02|R|F|1995-03-19|1995-02-06|1995-03-22|DELIVER IN PERSON|RAIL|inal courts affix abou| +5545|59590|22092|1|10|15495.90|0.08|0.05|R|F|1994-03-10|1994-04-03|1994-03-23|NONE|MAIL| carefully quickly exp| +5545|514702|39723|2|33|56650.44|0.10|0.02|R|F|1994-05-10|1994-04-01|1994-05-11|TAKE BACK RETURN|FOB|ep. slyly unusua| +5545|594745|7257|3|13|23916.36|0.10|0.03|R|F|1994-03-20|1994-03-31|1994-04-03|DELIVER IN PERSON|SHIP|ts are quickly. silent| +5545|872973|10525|4|13|25297.09|0.00|0.05|R|F|1994-03-08|1994-03-21|1994-03-30|COLLECT COD|RAIL| the slyly s| +5545|47360|47361|5|26|33991.36|0.04|0.05|A|F|1994-05-24|1994-03-13|1994-06-17|COLLECT COD|RAIL|ld decoys; special requests above| +5546|619047|44072|1|45|43470.45|0.10|0.07|A|F|1994-06-25|1994-08-23|1994-07-05|COLLECT COD|TRUCK|eodolites wake furio| +5546|316127|16128|2|30|34293.30|0.02|0.01|A|F|1994-09-26|1994-07-29|1994-10-01|DELIVER IN PERSON|REG AIR|yly silent asymptote| +5546|131847|19354|3|46|86426.64|0.08|0.00|R|F|1994-10-02|1994-08-03|1994-10-27|COLLECT COD|SHIP| instructions. carefully final a| +5547|138240|743|1|30|38347.20|0.09|0.05|N|O|1997-06-08|1997-04-15|1997-06-20|COLLECT COD|MAIL|arefully regular foxes shall | +5547|387484|12499|2|3|4714.41|0.00|0.05|N|O|1997-07-05|1997-05-20|1997-07-26|DELIVER IN PERSON|RAIL|l requests| +5548|370052|20053|1|4|4488.16|0.00|0.07|N|O|1995-11-16|1995-10-17|1995-11-17|NONE|MAIL|ses haggle. fluffily unusua| +5549|250242|12748|1|50|59611.50|0.06|0.04|N|O|1996-03-16|1996-04-25|1996-04-07|NONE|RAIL|ackages. requests mus| +5549|810338|22855|2|42|52428.18|0.06|0.06|N|O|1996-04-18|1996-04-01|1996-05-13|NONE|TRUCK|layers. fluffily even re| +5549|350449|450|3|22|32987.46|0.04|0.02|N|O|1996-04-11|1996-04-03|1996-04-13|TAKE BACK RETURN|MAIL|efully ironic e| +5549|991267|3787|4|10|13582.20|0.01|0.05|N|O|1996-05-04|1996-05-06|1996-06-02|TAKE BACK RETURN|SHIP|of the even, ir| +5549|220405|45414|5|34|45063.26|0.07|0.08|N|O|1996-04-02|1996-04-29|1996-04-04|TAKE BACK RETURN|SHIP|to the ironic, final theodolites hagg| +5549|341496|29015|6|2|3074.96|0.04|0.06|N|O|1996-05-04|1996-03-26|1996-05-29|NONE|TRUCK|ithely pendi| +5549|518526|43547|7|36|55602.00|0.10|0.00|N|O|1996-03-20|1996-05-06|1996-03-22|TAKE BACK RETURN|MAIL|the slyly final deposits| +5550|852743|2744|1|25|42392.50|0.07|0.02|N|O|1997-04-09|1997-02-04|1997-05-09|COLLECT COD|SHIP|e of the slyly unusual| +5550|42557|17558|2|8|11996.40|0.07|0.06|N|O|1997-04-16|1997-02-01|1997-04-23|NONE|AIR| quickly final dolphins. blithely | +5550|253765|16271|3|35|60156.25|0.03|0.03|N|O|1997-04-22|1997-01-28|1997-04-28|NONE|FOB|atelets wake a| +5550|27474|2475|4|19|26627.93|0.00|0.00|N|O|1997-03-09|1997-03-10|1997-04-05|NONE|TRUCK|n packages abo| +5551|588729|1241|1|8|14541.60|0.01|0.07|R|F|1993-09-03|1993-06-28|1993-09-18|TAKE BACK RETURN|RAIL|deposits around the ca| +5551|766550|41581|2|40|64660.80|0.03|0.06|R|F|1993-09-13|1993-07-24|1993-09-15|COLLECT COD|SHIP|cuses are according to the carefully| +5551|402128|2129|3|43|44294.30|0.08|0.07|A|F|1993-06-22|1993-08-11|1993-06-24|TAKE BACK RETURN|MAIL|t excuses haggle carefully. blithely | +5576|412893|418|1|22|39729.14|0.01|0.06|A|F|1993-07-22|1993-06-11|1993-08-21|DELIVER IN PERSON|RAIL|foxes affix. carefully express instruct| +5577|128959|28960|1|24|47710.80|0.07|0.04|A|F|1993-01-19|1993-01-16|1993-02-10|NONE|TRUCK|ges boost about the slyly brave deposits. | +5577|402333|27350|2|31|38294.61|0.04|0.07|A|F|1992-11-15|1992-12-06|1992-12-07|COLLECT COD|MAIL|r packages kin| +5577|8077|20578|3|8|7880.56|0.04|0.04|A|F|1992-12-13|1992-12-28|1992-12-24|DELIVER IN PERSON|SHIP| boost furiously furiously b| +5577|745080|45081|4|22|24751.10|0.00|0.00|R|F|1993-02-17|1993-01-01|1993-02-27|NONE|REG AIR|unusual pinto beans integrate blithely am| +5577|557935|32958|5|17|33879.47|0.02|0.08|R|F|1992-12-21|1993-01-24|1992-12-26|NONE|AIR|ual accounts wake blit| +5577|203633|3634|6|37|56854.94|0.08|0.05|R|F|1993-02-24|1993-02-01|1993-03-26|DELIVER IN PERSON|TRUCK|ges haggle quickly. fur| +5578|437908|417|1|32|59068.16|0.04|0.04|A|F|1992-03-27|1992-02-29|1992-04-10|NONE|SHIP|ickly bold requests sleep. bold, | +5578|905044|5045|2|13|13637.00|0.05|0.07|A|F|1992-01-09|1992-03-06|1992-02-04|TAKE BACK RETURN|FOB|o beans. final, ironic deposits cajo| +5578|62457|24959|3|19|26969.55|0.06|0.01|R|F|1992-01-21|1992-03-09|1992-01-28|TAKE BACK RETURN|FOB|urts. quiet requests | +5578|712036|12037|4|16|16768.00|0.07|0.06|R|F|1992-01-14|1992-04-02|1992-02-10|DELIVER IN PERSON|SHIP|s among the | +5578|175450|37954|5|19|28983.55|0.04|0.04|R|F|1992-01-22|1992-04-02|1992-02-02|NONE|REG AIR|ully final packages h| +5578|774385|36901|6|20|29187.00|0.09|0.02|A|F|1992-03-28|1992-02-19|1992-04-05|TAKE BACK RETURN|RAIL|tructions sleep against the | +5578|79687|4690|7|26|43333.68|0.10|0.02|A|F|1992-04-03|1992-03-04|1992-04-21|DELIVER IN PERSON|MAIL| sleep furiously. carefully final theodolit| +5579|299227|36743|1|42|51500.82|0.05|0.01|R|F|1994-08-07|1994-08-01|1994-08-29|DELIVER IN PERSON|SHIP|ts affix carefull| +5580|44355|31856|1|25|32483.75|0.03|0.05|A|F|1992-06-01|1992-06-10|1992-06-28|NONE|RAIL|rding to the ironic ideas sleep| +5580|469178|44197|2|34|39003.10|0.00|0.03|R|F|1992-03-25|1992-05-08|1992-04-19|NONE|MAIL| blithely above the furiou| +5580|465376|2904|3|25|33533.75|0.07|0.08|A|F|1992-04-02|1992-05-16|1992-04-13|NONE|TRUCK|s boost ca| +5581|810217|10218|1|10|11271.70|0.06|0.02|R|F|1994-08-16|1994-08-29|1994-08-26|DELIVER IN PERSON|MAIL|l deposits. furiously express Tiresias im| +5581|312971|25478|2|8|15871.68|0.09|0.02|A|F|1994-10-03|1994-09-11|1994-10-31|DELIVER IN PERSON|MAIL|ts haggle blithely against the slyly bold| +5581|101191|38698|3|11|13114.09|0.06|0.02|R|F|1994-08-11|1994-08-29|1994-09-05|COLLECT COD|MAIL|. furiously final | +5581|708852|46395|4|48|89319.36|0.00|0.07|R|F|1994-08-27|1994-08-19|1994-09-07|DELIVER IN PERSON|AIR|tes according to the slyly pending depos| +5581|659402|46942|5|47|63984.39|0.09|0.08|R|F|1994-10-19|1994-07-26|1994-10-30|DELIVER IN PERSON|RAIL|luffily. slyly pending accounts serve | +5581|559774|34797|6|8|14670.00|0.06|0.02|R|F|1994-07-01|1994-09-11|1994-07-09|COLLECT COD|SHIP|egular sheaves haggle along the pinto | +5582|682395|7422|1|23|31679.28|0.00|0.02|N|O|1995-09-27|1995-09-25|1995-09-28|TAKE BACK RETURN|FOB|eans sleep slyly slyl| +5582|7700|45201|2|6|9646.20|0.04|0.04|N|O|1995-12-07|1995-09-12|1995-12-19|COLLECT COD|RAIL|efully ironic request| +5582|397660|22675|3|32|56244.80|0.00|0.04|N|O|1995-10-01|1995-10-05|1995-10-15|NONE|RAIL|o use quick| +5583|436156|36157|1|44|48053.72|0.02|0.00|N|O|1996-04-13|1996-05-07|1996-05-06|NONE|FOB|the quickly regular packages. | +5583|467369|4897|2|31|41426.54|0.02|0.08|N|O|1996-06-03|1996-04-13|1996-06-29|TAKE BACK RETURN|RAIL| requests nag attainments. fluffily bold pa| +5583|60714|10715|3|2|3349.42|0.08|0.05|N|O|1996-03-17|1996-04-09|1996-03-31|COLLECT COD|TRUCK|s deposits run fluf| +5583|411424|11425|4|5|6677.00|0.07|0.06|N|O|1996-06-13|1996-05-17|1996-06-28|NONE|SHIP|onic instructions. qu| +5583|794990|7506|5|28|58378.88|0.04|0.03|N|O|1996-03-18|1996-05-10|1996-03-20|DELIVER IN PERSON|TRUCK|ffily slow patterns. speci| +5583|389781|27303|6|40|74830.80|0.10|0.04|N|O|1996-04-09|1996-05-03|1996-04-22|DELIVER IN PERSON|FOB|ounts. blithely ironic pinto beans| +5608|267251|42262|1|38|46293.12|0.01|0.04|N|O|1997-04-08|1997-04-16|1997-04-13|DELIVER IN PERSON|SHIP|tructions. instructi| +5608|683440|45954|2|4|5693.64|0.05|0.04|N|O|1997-02-11|1997-04-01|1997-02-18|NONE|MAIL|sly even pinto bea| +5609|409283|21792|1|20|23845.20|0.00|0.04|R|F|1993-12-02|1993-12-10|1993-12-11|TAKE BACK RETURN|SHIP|ckly even packages hi| +5609|815511|3060|2|48|68470.56|0.06|0.00|R|F|1993-11-18|1993-12-23|1993-11-19|TAKE BACK RETURN|MAIL|es. even, ironic accounts print pe| +5610|27620|15121|1|48|74285.76|0.05|0.07|N|O|1995-11-02|1995-12-18|1995-11-14|TAKE BACK RETURN|SHIP|oost carefully| +5610|205198|30207|2|27|29785.86|0.08|0.06|N|O|1995-12-16|1995-12-12|1995-12-20|TAKE BACK RETURN|REG AIR|ar, final i| +5610|750465|466|3|15|22731.45|0.00|0.03|N|O|1995-10-28|1995-12-20|1995-11-13|COLLECT COD|REG AIR|hlessly slyly even ideas. bold ideas aff| +5611|863147|38182|1|28|31082.80|0.02|0.03|R|F|1995-05-10|1995-03-27|1995-05-30|NONE|AIR|ts? carefully final deposits about the | +5611|906805|6806|2|34|61599.84|0.08|0.08|R|F|1995-05-16|1995-04-27|1995-06-06|TAKE BACK RETURN|REG AIR|cording to the furiously exp| +5611|661199|11200|3|49|56847.84|0.09|0.01|A|F|1995-04-28|1995-04-11|1995-05-20|TAKE BACK RETURN|AIR|ymptotes grow caref| +5611|761459|11460|4|14|21285.88|0.05|0.02|A|F|1995-02-27|1995-04-14|1995-03-12|COLLECT COD|FOB|lar deposits. carefully special reques| +5611|833592|33593|5|16|24408.80|0.03|0.06|A|F|1995-04-26|1995-05-12|1995-05-21|NONE|FOB|ing packag| +5611|174560|24561|6|30|49036.80|0.06|0.02|R|F|1995-05-17|1995-04-11|1995-06-07|NONE|SHIP| haggle at| +5611|814038|14039|7|23|21895.77|0.09|0.07|N|O|1995-06-21|1995-04-07|1995-07-17|DELIVER IN PERSON|SHIP|ly along the fluffily express | +5612|519980|32491|1|30|59998.80|0.04|0.03|R|F|1994-05-13|1994-05-08|1994-05-27|NONE|MAIL|lent deposits are across the qui| +5612|302086|14593|2|50|54403.50|0.04|0.05|R|F|1994-06-02|1994-05-10|1994-06-11|DELIVER IN PERSON|TRUCK|tes solve abou| +5612|146583|34090|3|5|8147.90|0.04|0.00|A|F|1994-05-24|1994-05-21|1994-06-04|TAKE BACK RETURN|MAIL|kly unusual plate| +5612|612143|24656|4|3|3165.33|0.03|0.08|R|F|1994-05-19|1994-04-14|1994-06-07|COLLECT COD|REG AIR|players. express deposits are sl| +5612|280099|5110|5|10|10790.80|0.05|0.03|A|F|1994-04-10|1994-04-21|1994-04-27|COLLECT COD|MAIL|ole. furiously ironic deposits wake sl| +5612|607340|32365|6|47|58623.57|0.04|0.05|A|F|1994-05-18|1994-05-01|1994-06-17|DELIVER IN PERSON|AIR| slyly regular asymp| +5612|561830|24342|7|22|41619.82|0.07|0.03|R|F|1994-03-25|1994-05-01|1994-04-23|TAKE BACK RETURN|SHIP|ouches are; furiously even foxes a| +5613|660951|35978|1|42|80300.64|0.01|0.03|R|F|1993-12-30|1993-10-02|1994-01-11|TAKE BACK RETURN|FOB|s the regular re| +5613|598285|48286|2|26|35964.76|0.05|0.01|R|F|1993-09-01|1993-11-17|1993-09-16|DELIVER IN PERSON|SHIP|he furiously express ideas. furi| +5613|359492|47014|3|33|51198.84|0.09|0.03|A|F|1993-11-08|1993-10-21|1993-11-27|COLLECT COD|MAIL|platelets sleep blith| +5614|139345|39346|1|35|48451.90|0.09|0.06|A|F|1994-02-25|1994-02-21|1994-03-04|COLLECT COD|RAIL|theodolites. slyly i| +5614|956923|31962|2|9|17818.92|0.04|0.04|R|F|1994-01-18|1994-02-11|1994-02-10|COLLECT COD|SHIP|ously. dolphins c| +5614|991385|3905|3|11|16239.74|0.10|0.07|A|F|1994-03-04|1994-02-22|1994-03-16|NONE|RAIL|cajole carefull| +5614|198888|23895|4|3|5960.64|0.01|0.01|A|F|1994-04-28|1994-02-04|1994-05-11|DELIVER IN PERSON|FOB|ke furiously? close packages| +5615|1873|39374|1|6|10649.22|0.04|0.00|A|F|1993-07-19|1993-05-10|1993-07-22|COLLECT COD|TRUCK|otes use slyly. express, unusual asymp| +5615|479192|41702|2|8|9369.36|0.01|0.06|A|F|1993-04-10|1993-07-02|1993-05-05|NONE|RAIL|lyly even accounts. fluffily | +5615|765319|15320|3|21|29069.88|0.06|0.07|A|F|1993-07-18|1993-06-01|1993-08-17|TAKE BACK RETURN|RAIL|ost carefu| +5640|667160|4700|1|34|38322.42|0.03|0.04|R|F|1992-04-17|1992-03-31|1992-04-29|NONE|RAIL|uches wake quickly alongside of the furious| +5640|948729|36284|2|39|69329.52|0.06|0.03|R|F|1992-04-07|1992-03-28|1992-04-08|DELIVER IN PERSON|AIR| was in place of t| +5640|286371|23887|3|47|63795.92|0.02|0.08|R|F|1992-06-20|1992-04-04|1992-07-14|NONE|SHIP| thin acco| +5641|804676|29709|1|24|37935.12|0.10|0.04|N|O|1996-04-01|1996-03-06|1996-04-13|NONE|REG AIR|ts. ironic pinto beans use at the slyl| +5641|174630|49637|2|16|27274.08|0.04|0.03|N|O|1996-02-17|1996-02-20|1996-03-07|COLLECT COD|AIR|gular Tiresias. blithely bold packages aft| +5641|998832|23871|3|14|27031.06|0.02|0.04|N|O|1996-01-15|1996-03-28|1996-02-10|DELIVER IN PERSON|TRUCK|ackages. quick| +5641|368038|43053|4|35|38710.70|0.01|0.00|N|O|1996-04-02|1996-03-02|1996-04-28|COLLECT COD|FOB|n deposits integrate instead of the deposi| +5641|613786|38811|5|3|5099.25|0.03|0.07|N|O|1996-01-18|1996-03-04|1996-01-25|NONE|TRUCK|e furiously accounts. slyly ironic excuses| +5641|896804|46805|6|20|36015.20|0.08|0.03|N|O|1996-03-03|1996-03-31|1996-03-11|TAKE BACK RETURN|FOB|ong the furiously even dolphins. slyly pe| +5641|580379|5402|7|48|70048.80|0.06|0.02|N|O|1996-03-22|1996-03-25|1996-04-15|NONE|MAIL|er the blithely special deposits. pendi| +5642|416521|4046|1|45|64687.50|0.00|0.07|N|O|1996-06-28|1996-06-18|1996-07-03|DELIVER IN PERSON|REG AIR| ironic, ironic courts thra| +5642|456566|31585|2|1|1522.54|0.10|0.02|N|O|1996-07-03|1996-06-18|1996-07-21|NONE|MAIL|ve the packages. furiously e| +5642|496993|46994|3|6|11939.82|0.07|0.00|N|O|1996-05-22|1996-06-17|1996-05-30|DELIVER IN PERSON|TRUCK|al requests cajole quickly. furio| +5642|947349|47350|4|3|4188.90|0.05|0.02|N|O|1996-06-29|1996-07-05|1996-07-10|NONE|AIR|platelets use. carefully regular instruct| +5642|82337|44839|5|40|52773.20|0.09|0.02|N|O|1996-05-20|1996-08-14|1996-06-16|DELIVER IN PERSON|FOB|ross the even ideas affix after the ir| +5642|821492|21493|6|21|29682.45|0.00|0.00|N|O|1996-05-24|1996-07-12|1996-06-21|DELIVER IN PERSON|SHIP|osits wake caref| +5642|815746|28263|7|35|58159.50|0.03|0.05|N|O|1996-07-28|1996-07-10|1996-08-25|TAKE BACK RETURN|TRUCK|ymptotes are furiously. regu| +5643|234483|9492|1|41|58116.27|0.04|0.06|N|O|1997-07-08|1997-06-02|1997-07-21|TAKE BACK RETURN|AIR| slyly even| +5643|949129|24166|2|43|50657.44|0.06|0.05|N|O|1997-06-16|1997-05-20|1997-07-12|DELIVER IN PERSON|REG AIR|uctions haggle above the care| +5644|611852|24365|1|6|10582.92|0.02|0.07|R|F|1992-04-12|1992-06-04|1992-05-12|TAKE BACK RETURN|SHIP|ions-- ironic gifts after the furiously eve| +5644|391404|28926|2|33|49347.87|0.03|0.08|R|F|1992-06-09|1992-06-07|1992-06-27|NONE|REG AIR|cial requests boost furiou| +5644|317204|17205|3|5|6105.95|0.10|0.01|R|F|1992-04-06|1992-06-02|1992-04-24|TAKE BACK RETURN|TRUCK|across the quickly regul| +5644|230952|18465|4|41|77200.54|0.04|0.04|R|F|1992-07-14|1992-06-11|1992-07-28|NONE|FOB|s are during the| +5645|831010|43527|1|22|20701.34|0.09|0.05|N|O|1998-01-17|1998-01-03|1998-01-27|DELIVER IN PERSON|FOB|y special courts! carefully fi| +5645|773358|23359|2|20|28626.40|0.01|0.03|N|O|1997-10-28|1997-11-21|1997-10-29|DELIVER IN PERSON|TRUCK| deposits cajole furiously foxes. fl| +5645|826049|38566|3|39|38025.00|0.02|0.08|N|O|1997-11-19|1997-11-23|1997-11-21|TAKE BACK RETURN|SHIP|blithely ironic gifts wake bl| +5645|405300|17809|4|28|33747.84|0.01|0.06|N|O|1997-12-24|1997-11-14|1998-01-17|TAKE BACK RETURN|RAIL|cuses wake blithely regular requests. e| +5645|867653|30171|5|14|22688.54|0.10|0.07|N|O|1997-10-24|1997-12-05|1997-10-31|NONE|REG AIR|the blithely regular dependencies. special| +5645|636609|11634|6|47|72641.79|0.10|0.07|N|O|1997-11-19|1997-12-07|1997-11-25|NONE|SHIP|deposits are furiously? bold requests| +5646|937480|49999|1|21|31866.24|0.05|0.00|N|O|1998-06-14|1998-04-17|1998-06-15|NONE|SHIP|tes haggle ironic package| +5647|595483|7995|1|41|64716.86|0.01|0.01|N|O|1997-12-05|1997-12-28|1997-12-22|DELIVER IN PERSON|FOB|ncies cajol| +5647|271883|9399|2|37|68630.19|0.08|0.02|N|O|1998-01-09|1998-01-24|1998-01-25|DELIVER IN PERSON|REG AIR|slow ideas above the final | +5647|525150|25151|3|49|57581.37|0.03|0.00|N|O|1998-02-23|1998-01-18|1998-03-02|DELIVER IN PERSON|SHIP|. enticingly even| +5672|470996|8524|1|9|17702.73|0.08|0.08|N|O|1996-06-29|1996-07-01|1996-07-28|COLLECT COD|TRUCK|lar courts.| +5672|19811|7312|2|28|48462.68|0.04|0.06|N|O|1996-08-28|1996-08-20|1996-09-09|NONE|SHIP|sleep quickly fluffily| +5672|956390|43948|3|22|31819.70|0.07|0.02|N|O|1996-06-22|1996-08-09|1996-07-08|TAKE BACK RETURN|SHIP|ep bold instructions. regular, regular d| +5672|46432|21433|4|40|55137.20|0.05|0.00|N|O|1996-07-30|1996-06-29|1996-08-02|NONE|AIR|furiously regular| +5672|372374|9896|5|36|52068.96|0.01|0.03|N|O|1996-07-07|1996-07-25|1996-07-19|COLLECT COD|FOB|ending requ| +5673|235324|35325|1|43|54150.33|0.06|0.03|N|O|1996-02-10|1996-02-04|1996-02-23|DELIVER IN PERSON|FOB|r the silent packages. fluffily ironi| +5673|73839|23840|2|1|1812.83|0.01|0.07|N|O|1996-02-26|1995-12-29|1996-02-27|DELIVER IN PERSON|MAIL|uriously amon| +5673|11205|11206|3|21|23440.20|0.06|0.06|N|O|1995-12-17|1996-01-28|1996-01-14|TAKE BACK RETURN|MAIL|al, final requests cajole blithely deposi| +5673|308792|8793|4|4|7203.12|0.04|0.04|N|O|1995-12-02|1995-12-30|1996-01-01|DELIVER IN PERSON|FOB|s about th| +5673|859871|22389|5|6|10984.98|0.10|0.04|N|O|1996-03-17|1995-12-28|1996-04-09|TAKE BACK RETURN|RAIL| final, silent reque| +5673|847929|47930|6|37|69444.56|0.07|0.01|N|O|1995-12-11|1996-01-07|1995-12-15|COLLECT COD|FOB|waters wake alongside of the furiously re| +5674|806367|18884|1|8|10186.56|0.09|0.04|R|F|1992-09-20|1992-08-01|1992-10-09|NONE|REG AIR|ironic requests. pendin| +5674|598954|36488|2|33|67746.69|0.07|0.03|A|F|1992-07-31|1992-09-01|1992-08-04|NONE|REG AIR|ss the carefully special instructions| +5674|619305|6842|3|47|57540.69|0.02|0.00|R|F|1992-09-26|1992-07-12|1992-10-24|NONE|REG AIR|packages shall| +5674|647138|47139|4|13|14106.30|0.00|0.00|R|F|1992-06-09|1992-07-27|1992-06-11|NONE|AIR|quickly ironic | +5674|433815|8832|5|37|64705.23|0.09|0.07|A|F|1992-10-04|1992-07-25|1992-10-16|NONE|AIR|ccording to the fluffily silent pinto | +5674|112275|37280|6|29|37330.83|0.03|0.01|A|F|1992-09-25|1992-08-07|1992-10-16|DELIVER IN PERSON|REG AIR|ndencies. fluffily pending deposits al| +5675|158633|33640|1|50|84581.50|0.08|0.05|R|F|1995-03-13|1995-02-06|1995-04-07|TAKE BACK RETURN|MAIL|bold instructions doze a| +5675|140360|15365|2|15|21005.40|0.10|0.00|A|F|1995-04-10|1995-02-08|1995-04-20|NONE|MAIL|ages. furiously ironi| +5676|507256|44787|1|24|30317.52|0.08|0.07|R|F|1992-09-17|1992-09-13|1992-10-07|DELIVER IN PERSON|REG AIR|as. express accounts cajo| +5676|443752|31277|2|22|37306.06|0.05|0.06|R|F|1992-09-13|1992-09-09|1992-10-03|DELIVER IN PERSON|MAIL|ong the ironically silent id| +5676|126581|39084|3|20|32151.60|0.00|0.08|A|F|1992-10-13|1992-08-31|1992-10-20|DELIVER IN PERSON|TRUCK|ses. carefully bold deposits hin| +5676|432064|44573|4|37|36853.48|0.03|0.01|A|F|1992-08-27|1992-08-30|1992-09-22|TAKE BACK RETURN|TRUCK|kages. furiou| +5676|687193|12220|5|25|29504.00|0.04|0.00|A|F|1992-10-19|1992-08-17|1992-10-28|COLLECT COD|TRUCK|olites poach ac| +5676|647149|22174|6|20|21922.20|0.08|0.02|R|F|1992-07-10|1992-09-15|1992-07-13|DELIVER IN PERSON|RAIL|inal deposits wake pending e| +5676|626985|14522|7|43|82213.85|0.00|0.02|A|F|1992-08-29|1992-08-13|1992-09-10|NONE|AIR|nt ideas. blithe| +5677|727962|2991|1|25|49748.25|0.02|0.05|R|F|1993-09-20|1993-10-19|1993-10-10|COLLECT COD|TRUCK|le furiously above the furiously e| +5677|855154|42706|2|44|48800.84|0.08|0.08|R|F|1993-11-23|1993-10-14|1993-12-23|DELIVER IN PERSON|RAIL|. furiously silent forges are. depos| +5678|876938|39456|1|50|95744.50|0.01|0.06|A|F|1992-11-23|1992-10-10|1992-12-22|NONE|RAIL|riously slyly final deposits. packages| +5678|693527|18554|2|22|33450.78|0.03|0.06|R|F|1992-08-09|1992-09-21|1992-08-19|DELIVER IN PERSON|SHIP|. even requests lose slyl| +5678|105533|43040|3|22|33847.66|0.00|0.00|A|F|1992-09-24|1992-09-18|1992-10-24|TAKE BACK RETURN|FOB|ix carefully foxes: foxes against the eve| +5678|678647|41161|4|12|19507.32|0.01|0.08|R|F|1992-08-11|1992-10-21|1992-08-28|NONE|MAIL|furiously. blit| +5678|13253|13254|5|10|11662.50|0.04|0.08|A|F|1992-09-16|1992-10-22|1992-10-13|DELIVER IN PERSON|AIR|xpress, expres| +5678|740896|28439|6|29|56168.94|0.07|0.04|R|F|1992-08-30|1992-10-21|1992-09-09|TAKE BACK RETURN|MAIL|fix furious| +5679|707321|19836|1|28|37192.12|0.04|0.00|R|F|1994-03-10|1994-02-10|1994-03-13|TAKE BACK RETURN|AIR|regular packages nag.| +5679|936083|36084|2|16|17904.64|0.07|0.07|R|F|1994-04-13|1994-02-14|1994-05-03|NONE|MAIL|s. dependencies about the regul| +5679|734594|47109|3|25|40714.00|0.10|0.02|R|F|1994-04-02|1994-01-15|1994-04-20|TAKE BACK RETURN|FOB| theodolites boost. carefu| +5679|320246|7765|4|17|21525.91|0.10|0.06|A|F|1994-02-26|1994-01-27|1994-03-17|COLLECT COD|SHIP| even, pending accounts a| +5704|573274|35786|1|14|18861.50|0.02|0.06|N|O|1996-01-26|1995-12-24|1996-02-03|TAKE BACK RETURN|SHIP|nusual deposits haggle| +5704|11006|36007|2|14|12838.00|0.04|0.03|N|O|1995-11-13|1995-11-27|1995-12-13|COLLECT COD|SHIP|s detect. regular deposits wake blithely sl| +5705|527148|14679|1|2|2350.24|0.05|0.03|A|F|1992-05-12|1992-05-03|1992-05-16|NONE|RAIL|olites are slyly slyly final fo| +5706|75268|12772|1|23|28594.98|0.10|0.00|A|F|1995-05-30|1995-07-13|1995-06-16|NONE|AIR|carefully final instructions h| +5706|15611|3112|2|46|70224.06|0.00|0.07|N|O|1995-06-30|1995-07-04|1995-07-20|COLLECT COD|FOB|as. final accounts a| +5707|35194|10195|1|10|11291.90|0.10|0.06|N|O|1996-09-19|1996-08-14|1996-09-26|COLLECT COD|FOB|sly bold requests.| +5708|917429|42466|1|8|11571.04|0.05|0.06|A|F|1993-12-23|1993-12-19|1994-01-20|TAKE BACK RETURN|MAIL|he special, fin| +5708|213889|26394|2|30|54086.10|0.00|0.01|A|F|1994-01-16|1993-12-28|1994-01-29|COLLECT COD|FOB|ar theodolites. bold instructions ha| +5708|823840|48873|3|18|31748.40|0.02|0.08|A|F|1993-10-25|1993-12-31|1993-11-14|COLLECT COD|AIR|furious instru| +5708|266243|16244|4|37|44741.51|0.10|0.04|A|F|1993-12-24|1993-12-28|1994-01-19|TAKE BACK RETURN|SHIP|ometimes r| +5709|608245|8246|1|31|35749.51|0.06|0.07|N|O|1995-10-31|1996-01-25|1995-11-30|TAKE BACK RETURN|SHIP|across the final | +5709|761343|23859|2|18|25277.58|0.05|0.02|N|O|1996-01-18|1995-12-31|1996-02-05|NONE|FOB|l, final excuses. expres| +5709|883926|8961|3|40|76395.20|0.07|0.00|N|O|1995-11-01|1996-01-08|1995-11-12|COLLECT COD|MAIL|r requests. ironic| +5709|138466|13471|4|25|37611.50|0.07|0.06|N|O|1995-11-10|1995-12-23|1995-11-21|TAKE BACK RETURN|REG AIR|pecial deposits boost furiously. r| +5709|194199|19206|5|21|27156.99|0.00|0.06|N|O|1996-01-22|1996-01-12|1996-02-14|COLLECT COD|RAIL|riously regula| +5709|892366|4884|6|7|9508.24|0.03|0.01|N|O|1996-02-06|1995-11-30|1996-02-25|NONE|MAIL|ar instructions. furiou| +5710|128881|3886|1|9|17188.92|0.08|0.07|A|F|1993-11-13|1993-11-12|1993-12-04|COLLECT COD|TRUCK|lar theodoli| +5710|92575|30079|2|18|28216.26|0.01|0.04|R|F|1993-12-25|1993-12-07|1994-01-16|TAKE BACK RETURN|SHIP|ng asymptotes sleep furiously. even| +5710|896156|33708|3|39|44932.29|0.02|0.01|R|F|1994-01-03|1993-10-30|1994-01-15|COLLECT COD|RAIL|s cajole after the fluf| +5710|683200|8227|4|29|34311.93|0.07|0.04|A|F|1993-11-02|1993-12-24|1993-11-12|COLLECT COD|AIR|ic accounts s| +5710|541057|3568|5|17|18666.51|0.01|0.07|R|F|1993-10-06|1993-11-27|1993-10-07|DELIVER IN PERSON|AIR|he ironic d| +5710|540917|3428|6|17|33284.13|0.06|0.04|R|F|1993-11-24|1993-12-17|1993-12-18|NONE|FOB|spite the pending packages. furious| +5710|188757|13764|7|34|62755.50|0.09|0.00|R|F|1993-10-03|1993-12-04|1993-10-19|TAKE BACK RETURN|AIR| along the ins| +5711|427295|39804|1|20|24445.40|0.08|0.07|N|O|1995-09-13|1995-12-07|1995-10-10|DELIVER IN PERSON|REG AIR|xpress idea| +5711|536946|24477|2|16|31726.72|0.10|0.04|N|O|1995-11-25|1995-12-03|1995-11-28|NONE|REG AIR| packages. furiously bold asy| +5736|587386|49898|1|1|1473.36|0.00|0.04|N|O|1996-03-09|1996-03-02|1996-03-25|NONE|RAIL|ing requests na| +5736|180361|30362|2|11|15854.96|0.04|0.07|N|O|1996-05-10|1996-02-24|1996-06-02|NONE|FOB| beans. instructions n| +5737|931558|6595|1|34|54043.34|0.07|0.08|A|F|1994-02-04|1993-12-31|1994-03-02|COLLECT COD|MAIL|e furiously after the bold theodolites. qui| +5737|682219|19759|2|17|20420.06|0.01|0.06|R|F|1994-01-31|1994-01-05|1994-02-04|DELIVER IN PERSON|REG AIR|s. slyly even th| +5737|46241|8742|3|41|48676.84|0.03|0.07|A|F|1994-02-09|1994-01-22|1994-03-02|DELIVER IN PERSON|SHIP|ing to the i| +5738|164039|1549|1|24|26472.72|0.00|0.00|N|O|1998-02-15|1998-04-03|1998-02-28|DELIVER IN PERSON|RAIL|structions haggle. ironic, final deposit| +5738|988604|1124|2|8|13540.48|0.03|0.07|N|O|1998-02-10|1998-03-04|1998-02-21|NONE|MAIL|en deposits| +5738|452830|40358|3|8|14262.48|0.04|0.08|N|O|1998-04-19|1998-03-20|1998-05-05|TAKE BACK RETURN|FOB|hely bold accounts nag | +5738|697227|9741|4|29|35501.51|0.10|0.07|N|O|1998-05-10|1998-03-04|1998-05-30|COLLECT COD|AIR|gular ideas sleep permanently. unusual| +5739|906846|6847|1|3|5558.40|0.04|0.07|N|O|1998-03-28|1998-04-13|1998-04-06|COLLECT COD|REG AIR|te fluffily about the| +5739|353488|28503|2|33|50868.51|0.02|0.02|N|O|1998-05-18|1998-03-20|1998-05-23|COLLECT COD|MAIL|affix fluffily special foxes. furiou| +5739|68047|18048|3|46|46691.84|0.09|0.05|N|O|1998-05-19|1998-03-29|1998-06-11|TAKE BACK RETURN|REG AIR| poach. carefully | +5739|657972|7973|4|10|19299.40|0.05|0.05|N|O|1998-04-30|1998-05-05|1998-05-24|DELIVER IN PERSON|REG AIR|nal, unusual depo| +5739|530629|43140|5|45|74682.00|0.00|0.01|N|O|1998-03-07|1998-03-27|1998-04-06|COLLECT COD|AIR|uests sleep doggedly final theodol| +5740|680658|43172|1|14|22940.68|0.02|0.07|N|O|1997-05-26|1997-03-25|1997-06-25|NONE|MAIL|y. furiously even requests against the | +5740|803978|29011|2|2|3763.86|0.07|0.03|N|O|1997-02-04|1997-03-20|1997-02-19|COLLECT COD|AIR|ng platelets. quickly expr| +5741|708893|21408|1|25|47546.50|0.02|0.07|N|O|1996-08-28|1996-08-16|1996-09-02|NONE|MAIL|nts haggle blithely among the sp| +5741|361881|11882|2|11|21371.57|0.03|0.08|N|O|1996-07-26|1996-07-05|1996-08-03|COLLECT COD|MAIL|e the accounts. | +5741|128562|41065|3|9|14315.04|0.04|0.03|N|O|1996-06-26|1996-07-03|1996-07-07|TAKE BACK RETURN|AIR|longside of the carefully bold theodo| +5741|735480|47995|4|5|7577.25|0.01|0.01|N|O|1996-06-14|1996-08-05|1996-07-03|DELIVER IN PERSON|RAIL|ve to cajole accounts. special, | +5741|200936|38449|5|38|69802.96|0.07|0.00|N|O|1996-07-24|1996-08-03|1996-07-25|NONE|MAIL|ecial ideas nag blithely express asymptotes| +5741|129395|16902|6|44|62673.16|0.08|0.02|N|O|1996-08-31|1996-07-20|1996-09-01|NONE|TRUCK|-- fluffy pinto beans nag amon| +5741|736307|36308|7|24|32238.48|0.01|0.05|N|O|1996-08-07|1996-07-21|1996-08-23|NONE|MAIL|yly final foxes. regular deposits accord| +5742|96279|46280|1|39|49735.53|0.01|0.01|N|O|1995-11-28|1996-01-08|1995-12-25|COLLECT COD|FOB|ular packages c| +5742|158430|8431|2|31|46141.33|0.06|0.07|N|O|1995-12-23|1996-01-05|1996-01-02|DELIVER IN PERSON|RAIL|ructions detect along | +5742|716808|16809|3|7|12773.39|0.05|0.06|N|O|1996-01-23|1995-12-11|1996-02-19|TAKE BACK RETURN|REG AIR| atop the blithely i| +5742|390303|2811|4|48|66877.92|0.04|0.01|N|O|1996-02-05|1995-12-16|1996-02-28|TAKE BACK RETURN|FOB|osits. final | +5742|815627|40660|5|9|13883.22|0.10|0.07|N|O|1996-02-17|1996-01-07|1996-02-29|COLLECT COD|TRUCK|equests cajole carefully requests| +5742|242093|29606|6|49|50718.92|0.08|0.00|N|O|1996-01-14|1995-12-29|1996-02-08|TAKE BACK RETURN|REG AIR|d foxes nag against the even ac| +5743|534921|22452|1|24|46941.60|0.00|0.02|A|F|1995-03-01|1995-03-03|1995-03-13|TAKE BACK RETURN|RAIL|y ironic foxes impress | +5743|404428|29445|2|13|17321.20|0.08|0.07|R|F|1995-03-26|1995-02-22|1995-04-03|NONE|AIR|ithely regular ideas wa| +5768|807912|32945|1|44|80074.28|0.09|0.08|R|F|1993-07-26|1993-06-13|1993-07-29|TAKE BACK RETURN|REG AIR|ies boost | +5768|573077|10611|2|6|6900.30|0.09|0.01|A|F|1993-05-11|1993-07-15|1993-05-30|NONE|TRUCK|at furiously. q| +5769|642747|5260|1|39|65898.69|0.07|0.07|N|O|1996-11-28|1996-11-01|1996-12-23|NONE|REG AIR|nto beans wake furiou| +5769|647243|9756|2|9|10711.89|0.06|0.08|N|O|1996-10-03|1996-10-06|1996-10-12|NONE|TRUCK|luffily alongs| +5769|211778|11779|3|19|32105.44|0.08|0.08|N|O|1996-11-18|1996-10-17|1996-11-26|TAKE BACK RETURN|TRUCK|eas use express dolphins. spec| +5770|289386|1892|1|2|2750.74|0.08|0.01|N|O|1995-12-20|1995-12-17|1996-01-02|COLLECT COD|TRUCK|out the fluffily final asymptotes | +5770|704291|16806|2|47|60877.22|0.10|0.04|N|O|1995-10-25|1995-12-29|1995-10-29|NONE|REG AIR|y even packag| +5770|9421|21922|3|33|43903.86|0.09|0.04|N|O|1996-02-07|1995-11-28|1996-02-11|COLLECT COD|AIR|tornis. quickly unusu| +5770|323342|48355|4|33|45055.89|0.00|0.02|N|O|1995-12-01|1995-12-31|1995-12-06|NONE|TRUCK|e; blithely bold f| +5770|396798|46799|5|30|56843.40|0.02|0.01|N|O|1995-12-31|1996-01-11|1996-01-07|NONE|SHIP|ar frets. carefully express pinto beans ab| +5770|975212|37732|6|14|18020.38|0.05|0.05|N|O|1996-01-08|1995-12-18|1996-01-19|COLLECT COD|RAIL| about the unusual | +5771|510049|10050|1|36|38124.72|0.06|0.03|A|F|1994-06-09|1994-08-29|1994-07-02|TAKE BACK RETURN|RAIL|d theodolites wake beside the ca| +5771|385845|35846|2|26|50201.58|0.09|0.04|A|F|1994-07-13|1994-07-21|1994-08-04|COLLECT COD|AIR|ing frays wake quickly about the | +5771|887596|25148|3|16|25336.80|0.06|0.06|A|F|1994-10-01|1994-08-30|1994-10-12|COLLECT COD|MAIL|eas. slyly regular ideas sle| +5771|818270|5819|4|24|28517.52|0.04|0.07|R|F|1994-07-24|1994-07-22|1994-08-04|COLLECT COD|MAIL|ost. furiously s| +5771|659462|47002|5|15|21321.45|0.02|0.00|A|F|1994-08-28|1994-07-07|1994-09-20|NONE|REG AIR|lyly bold req| +5771|571113|33625|6|10|11840.90|0.07|0.04|R|F|1994-09-28|1994-07-25|1994-10-02|DELIVER IN PERSON|REG AIR|y ironic requests boost fluffil| +5771|689030|1544|7|18|18342.00|0.10|0.06|A|F|1994-09-29|1994-07-23|1994-10-12|TAKE BACK RETURN|SHIP|riously express pinto beans. pac| +5772|513340|13341|1|40|54132.80|0.02|0.07|N|O|1997-03-30|1997-02-24|1997-04-04|TAKE BACK RETURN|RAIL|dolphins should have to serve. pa| +5772|695047|7561|2|23|23966.23|0.09|0.08|N|O|1997-01-22|1997-04-13|1997-02-08|COLLECT COD|MAIL|uriously blithely e| +5773|321555|46568|1|49|77250.46|0.06|0.08|N|O|1996-09-19|1996-10-31|1996-10-08|NONE|RAIL| even, sil| +5773|372826|47841|2|48|91142.88|0.08|0.06|N|O|1996-09-04|1996-10-23|1996-09-13|COLLECT COD|FOB|e final packages. | +5773|83145|20649|3|31|34972.34|0.06|0.00|N|O|1996-09-17|1996-11-03|1996-10-08|COLLECT COD|AIR|unts haggle even, specia| +5773|415379|2904|4|46|59540.10|0.05|0.07|N|O|1996-11-21|1996-11-03|1996-12-04|TAKE BACK RETURN|FOB|e slyly special theodolites. carefull| +5773|272257|9773|5|33|40564.92|0.10|0.03|N|O|1996-10-18|1996-09-27|1996-10-28|DELIVER IN PERSON|RAIL|inal reque| +5773|809185|34218|6|40|43765.60|0.00|0.02|N|O|1996-11-13|1996-09-23|1996-12-08|TAKE BACK RETURN|AIR|al ideas nag furiously. ironic| +5774|532960|20491|1|37|73738.78|0.05|0.03|N|O|1997-01-09|1997-02-19|1997-01-20|DELIVER IN PERSON|RAIL|y silent deposits wake ben| +5774|458458|20968|2|25|35410.75|0.06|0.08|N|O|1996-12-21|1997-02-19|1997-01-01|TAKE BACK RETURN|REG AIR|as sleep doggedly. permanent, even pac| +5774|299851|24862|3|29|53674.36|0.07|0.08|N|O|1996-12-14|1997-02-20|1996-12-20|TAKE BACK RETURN|TRUCK|o beans. pending pinto| +5774|589434|39435|4|38|57889.58|0.05|0.03|N|O|1997-01-22|1996-12-26|1997-02-14|NONE|RAIL|ong the even platelets. | +5774|600553|554|5|38|55233.76|0.05|0.03|N|O|1997-03-09|1997-02-11|1997-04-08|DELIVER IN PERSON|MAIL|iously enticing hockey players cajo| +5774|482370|19898|6|42|56798.70|0.04|0.02|N|O|1996-12-10|1997-02-03|1996-12-31|TAKE BACK RETURN|FOB|cording to the furiously ex| +5774|188867|1371|7|39|76278.54|0.02|0.08|N|O|1996-12-30|1997-01-15|1997-01-01|NONE|MAIL|f the requests. ironic packages| +5775|274005|36511|1|27|26432.73|0.02|0.02|R|F|1993-12-03|1994-01-05|1993-12-08|TAKE BACK RETURN|REG AIR|he quickly unusual foxes wake bold| +5775|193437|30947|2|10|15304.30|0.04|0.01|R|F|1994-02-02|1994-02-21|1994-02-25|COLLECT COD|AIR| express theo| +5775|82173|32174|3|48|55448.16|0.00|0.01|A|F|1994-02-19|1994-01-25|1994-02-28|COLLECT COD|MAIL|ithely packages? regular deposits among | +5775|71643|21644|4|26|41980.64|0.06|0.06|A|F|1994-02-12|1994-02-03|1994-02-17|DELIVER IN PERSON|REG AIR|posits wake s| +5800|505978|30999|1|2|3967.90|0.02|0.01|A|F|1992-09-23|1992-08-05|1992-10-01|COLLECT COD|RAIL|ructions. ruthless| +5800|960282|22802|2|22|29529.28|0.09|0.07|R|F|1992-07-11|1992-08-12|1992-08-03|COLLECT COD|REG AIR|ve quickly acr| +5800|451212|38740|3|49|56996.31|0.01|0.05|R|F|1992-08-12|1992-07-24|1992-09-11|DELIVER IN PERSON|RAIL|refully final foxes cajole carefully ironic| +5800|510980|23491|4|29|57737.84|0.10|0.05|R|F|1992-06-26|1992-07-16|1992-07-26|DELIVER IN PERSON|AIR|nal pinto beans wake| +5800|29912|29913|5|5|9209.55|0.05|0.05|R|F|1992-08-01|1992-07-11|1992-08-07|NONE|SHIP| asymptotes cajole | +5800|720013|32528|6|34|35121.32|0.05|0.02|R|F|1992-09-04|1992-07-28|1992-09-10|NONE|RAIL|ffily pending, regular| +5800|251963|14469|7|38|72768.10|0.03|0.05|A|F|1992-08-27|1992-08-24|1992-09-22|TAKE BACK RETURN|FOB|structions. car| +5801|738963|13992|1|34|68065.62|0.09|0.07|A|F|1993-03-14|1993-04-30|1993-03-15|NONE|MAIL|ely express ideas doze carefully | +5801|739838|2353|2|9|16900.20|0.08|0.00|R|F|1993-06-08|1993-04-17|1993-06-30|NONE|MAIL|regular, pe| +5801|454907|42435|3|34|63303.92|0.06|0.06|A|F|1993-03-14|1993-03-19|1993-04-05|TAKE BACK RETURN|SHIP|the slyly regular | +5802|53247|3248|1|37|44408.88|0.04|0.06|N|O|1997-08-08|1997-09-20|1997-08-30|DELIVER IN PERSON|REG AIR|al requests sleep blithely regular depos| +5802|917252|42289|2|18|22845.78|0.05|0.02|N|O|1997-07-15|1997-09-30|1997-08-04|TAKE BACK RETURN|MAIL|ual packages. ironic, express requests | +5803|115089|2596|1|10|11040.80|0.00|0.06|N|O|1998-08-23|1998-07-20|1998-09-09|COLLECT COD|AIR|ng to the | +5804|828655|16204|1|45|71262.45|0.03|0.01|N|O|1996-05-30|1996-05-30|1996-06-08|NONE|REG AIR| special foxes | +5804|200457|37970|2|18|24433.92|0.05|0.02|N|O|1996-06-21|1996-05-24|1996-07-15|DELIVER IN PERSON|AIR|he carefully silent requests. slyly exp| +5804|73283|35785|3|2|2512.56|0.08|0.07|N|O|1996-05-25|1996-05-30|1996-06-11|TAKE BACK RETURN|SHIP| ironic deposits. re| +5804|656392|43932|4|23|31012.28|0.09|0.08|N|O|1996-04-20|1996-04-09|1996-05-19|TAKE BACK RETURN|TRUCK|en, unusual asymptotes about the ironic, sl| +5804|979851|42371|5|40|77232.40|0.08|0.07|N|O|1996-06-03|1996-05-24|1996-06-30|DELIVER IN PERSON|SHIP|lar, unusual requests| +5805|657060|19574|1|34|34579.02|0.08|0.02|N|O|1995-07-27|1995-08-30|1995-07-28|NONE|TRUCK|special gifts sleep platelets| +5805|204704|42217|2|12|19304.28|0.04|0.03|N|O|1995-10-21|1995-09-06|1995-10-30|TAKE BACK RETURN|FOB|usly final theodolites haggle blithely fi| +5805|451461|13971|3|12|16949.28|0.03|0.03|N|O|1995-10-23|1995-08-31|1995-11-02|DELIVER IN PERSON|TRUCK|ructions sleep slyly against the th| +5805|696420|33960|4|38|53822.82|0.10|0.07|N|O|1995-09-22|1995-08-15|1995-10-16|NONE|REG AIR|of the idly brave instructions w| +5806|731557|44072|1|34|54009.68|0.03|0.03|N|O|1995-09-07|1995-09-03|1995-09-21|NONE|FOB|vely blithely f| +5806|266217|16218|2|13|15381.60|0.00|0.08|N|O|1995-08-25|1995-09-11|1995-09-23|COLLECT COD|AIR|nticing deposits. dependencies c| +5806|304079|29092|3|29|31408.74|0.09|0.00|N|O|1995-09-28|1995-09-12|1995-10-25|COLLECT COD|RAIL|y final requests wake carefully | +5806|645674|8187|4|21|34012.44|0.01|0.06|N|O|1995-09-14|1995-09-13|1995-10-06|DELIVER IN PERSON|MAIL|boldly pending asymptotes about the care| +5806|833665|46182|5|12|19183.44|0.02|0.01|N|O|1995-07-27|1995-09-18|1995-08-14|TAKE BACK RETURN|SHIP|es. fluffily ironic d| +5806|406610|31627|6|29|43981.11|0.03|0.03|N|O|1995-08-16|1995-10-11|1995-08-30|DELIVER IN PERSON|FOB|he dependenci| +5807|176616|26617|1|12|20311.32|0.01|0.08|N|O|1998-07-24|1998-07-01|1998-08-22|TAKE BACK RETURN|TRUCK|oost slyly pending accounts. regular instr| +5807|381804|44312|2|16|30172.64|0.08|0.03|N|O|1998-08-11|1998-07-13|1998-08-15|NONE|RAIL|sly pending requests are u| +5832|820709|8258|1|22|35852.52|0.10|0.07|N|O|1996-06-11|1996-06-25|1996-06-19|TAKE BACK RETURN|FOB|anently ironic deposi| +5832|645829|8342|2|47|83415.13|0.04|0.06|N|O|1996-08-13|1996-07-30|1996-08-23|DELIVER IN PERSON|RAIL|sleep across the carefully| +5833|488834|13853|1|26|47393.06|0.10|0.06|A|F|1995-03-16|1995-02-07|1995-03-24|COLLECT COD|SHIP|refully quickly regular dependencies. qu| +5833|828491|3524|2|2|2838.90|0.00|0.02|A|F|1994-12-24|1995-03-17|1995-01-11|DELIVER IN PERSON|TRUCK|he furiously final pinto beans. furiousl| +5833|433374|33375|3|43|56216.05|0.01|0.01|A|F|1994-12-25|1995-02-02|1995-01-11|DELIVER IN PERSON|RAIL|slyly ironic asympto| +5833|704445|41988|4|34|49279.94|0.02|0.03|R|F|1995-01-24|1995-02-09|1995-02-18|COLLECT COD|FOB|slyly pending | +5833|594283|19306|5|49|67485.74|0.01|0.05|R|F|1995-01-25|1995-01-25|1995-02-13|DELIVER IN PERSON|REG AIR|al, final excus| +5833|97859|47860|6|1|1856.85|0.10|0.05|A|F|1995-03-03|1995-02-13|1995-03-15|DELIVER IN PERSON|REG AIR|hlessly express reque| +5834|106183|6184|1|5|5945.90|0.06|0.00|R|F|1994-06-13|1994-06-25|1994-07-11|DELIVER IN PERSON|FOB|al accounts. furiously final | +5835|103258|3259|1|5|6306.25|0.05|0.07|N|O|1996-08-07|1996-08-19|1996-08-08|COLLECT COD|REG AIR|slyly final deposits n| +5835|450731|732|2|3|5045.13|0.07|0.02|N|O|1996-10-02|1996-08-20|1996-10-04|TAKE BACK RETURN|MAIL|en requests. furiously s| +5835|423992|36501|3|19|36403.43|0.10|0.08|N|O|1996-07-26|1996-08-21|1996-08-15|COLLECT COD|AIR|es. foxes haggle carefully.| +5835|33424|45925|4|11|14931.62|0.04|0.07|N|O|1996-09-10|1996-08-02|1996-10-09|TAKE BACK RETURN|RAIL|xpress, ironic a| +5835|740589|3104|5|48|78218.40|0.09|0.02|N|O|1996-08-01|1996-08-31|1996-08-05|TAKE BACK RETURN|REG AIR|e blithely regular pinto bean| +5835|70647|33149|6|17|27499.88|0.03|0.07|N|O|1996-10-07|1996-08-04|1996-10-17|TAKE BACK RETURN|MAIL|efully regular dependencies. finally | +5835|352545|15053|7|4|6390.12|0.03|0.05|N|O|1996-10-06|1996-07-20|1996-10-29|DELIVER IN PERSON|SHIP|t the foxes.| +5836|212606|25111|1|9|13667.31|0.01|0.08|A|F|1994-09-03|1994-09-06|1994-09-12|NONE|RAIL|latelets sle| +5836|252973|27984|2|22|42371.12|0.07|0.08|R|F|1994-10-14|1994-08-07|1994-11-06|NONE|FOB|are silently. enticingly even pinto beans| +5836|708394|20909|3|13|18230.68|0.03|0.02|A|F|1994-09-30|1994-08-13|1994-10-03|COLLECT COD|TRUCK|ts. carefull| +5836|970526|33046|4|10|15964.80|0.05|0.07|A|F|1994-08-11|1994-08-04|1994-09-09|TAKE BACK RETURN|FOB|telets need to haggle furiously blithely| +5836|627493|15030|5|34|48295.64|0.09|0.03|A|F|1994-08-20|1994-08-13|1994-09-14|DELIVER IN PERSON|AIR|doggedly pend| +5837|425114|131|1|26|27016.34|0.08|0.07|N|O|1996-08-21|1996-07-28|1996-08-28|COLLECT COD|REG AIR| quickly. even instruction| +5837|886317|23869|2|26|33885.02|0.00|0.02|N|O|1996-07-25|1996-06-22|1996-08-06|NONE|MAIL|quests boost slyly| +5837|329220|29221|3|23|28731.83|0.07|0.07|N|O|1996-06-10|1996-05-30|1996-07-09|NONE|AIR|odolites. quiet asymptotes shall | +5837|197650|35160|4|35|61167.75|0.03|0.05|N|O|1996-08-15|1996-07-25|1996-08-27|TAKE BACK RETURN|TRUCK|y blithely even de| +5837|903434|40989|5|49|70432.11|0.00|0.01|N|O|1996-05-20|1996-07-14|1996-06-06|COLLECT COD|RAIL|s are blithely s| +5837|14204|39205|6|18|20127.60|0.04|0.04|N|O|1996-08-24|1996-07-12|1996-08-26|COLLECT COD|SHIP|elets. regular accounts play carefully | +5837|723164|48193|7|44|52233.72|0.02|0.02|N|O|1996-08-13|1996-06-26|1996-08-29|TAKE BACK RETURN|FOB| packages are| +5838|202125|2126|1|43|44165.73|0.04|0.04|N|O|1996-03-07|1996-02-25|1996-03-30|NONE|TRUCK|t the unusual, regular pinto be| +5838|113802|26305|2|25|45395.00|0.09|0.03|N|O|1996-03-30|1996-02-23|1996-04-16|DELIVER IN PERSON|FOB|tly slyly even accounts. excuses | +5838|663734|13735|3|18|30558.60|0.09|0.02|N|O|1996-02-21|1996-01-29|1996-02-28|COLLECT COD|SHIP|usly regular requests haggle qu| +5838|373950|23951|4|6|12143.64|0.07|0.06|N|O|1996-04-03|1996-02-18|1996-04-04|TAKE BACK RETURN|RAIL|riously furiously | +5838|969442|7000|5|12|18136.80|0.06|0.08|N|O|1996-01-31|1996-03-24|1996-02-24|DELIVER IN PERSON|SHIP|ons haggle. fluffily ironic excuses| +5838|407290|44815|6|17|20353.59|0.03|0.01|N|O|1996-03-30|1996-02-29|1996-04-24|DELIVER IN PERSON|SHIP| even deposits. unusual, regul| +5838|322775|35282|7|37|66517.12|0.07|0.06|N|O|1996-03-22|1996-02-15|1996-04-04|COLLECT COD|REG AIR|arefully b| +5839|878837|3872|1|3|5447.37|0.08|0.05|A|F|1992-12-28|1993-01-29|1993-01-14|NONE|SHIP|ilent courts above the quickly | +5839|609539|9540|2|12|17382.00|0.05|0.08|R|F|1993-02-24|1993-01-25|1993-03-17|COLLECT COD|SHIP|es. regular foxes wake quickly slyly sp| +5839|520958|45979|3|39|77178.27|0.05|0.07|R|F|1992-12-27|1993-01-03|1992-12-28|DELIVER IN PERSON|FOB|ar deposits sublate according to the blith| +5839|738612|26155|4|17|28059.86|0.00|0.00|A|F|1993-02-21|1993-02-07|1993-03-09|COLLECT COD|FOB|aves are doggedly about the blithely e| +5839|837739|37740|5|36|60360.84|0.05|0.03|R|F|1993-03-25|1993-02-03|1993-03-31|DELIVER IN PERSON|REG AIR|press, express theodolit| +5864|122690|47695|1|15|25690.35|0.09|0.03|A|F|1993-04-23|1993-06-21|1993-05-13|COLLECT COD|FOB|ld theodolites wake about the close, regul| +5864|40119|2620|2|36|38127.96|0.04|0.04|A|F|1993-05-28|1993-06-02|1993-06-03|TAKE BACK RETURN|REG AIR|, express requests according to th| +5864|270560|8076|3|18|27549.90|0.03|0.01|R|F|1993-06-25|1993-05-11|1993-07-13|NONE|SHIP|ounts affix above the| +5864|296821|46822|4|43|78165.83|0.01|0.04|A|F|1993-05-25|1993-04-30|1993-06-08|NONE|FOB|old pinto beans. carefully | +5864|668320|5860|5|31|39936.99|0.01|0.07|A|F|1993-05-23|1993-05-06|1993-06-16|DELIVER IN PERSON|MAIL|ar excuses| +5864|449592|49593|6|2|3083.14|0.06|0.04|R|F|1993-04-11|1993-05-06|1993-05-06|NONE|TRUCK|haggle blithe| +5864|283096|20612|7|15|16186.20|0.00|0.06|R|F|1993-04-01|1993-06-11|1993-04-23|TAKE BACK RETURN|SHIP|cuses are carefully. s| +5865|985726|10765|1|43|77902.24|0.04|0.05|N|O|1998-07-14|1998-06-27|1998-08-12|COLLECT COD|RAIL|luffily. depos| +5865|93334|18337|2|5|6636.65|0.06|0.07|N|O|1998-07-09|1998-05-20|1998-08-07|TAKE BACK RETURN|SHIP|ly. final, bold excu| +5866|505847|43378|1|29|53731.78|0.00|0.04|N|O|1996-08-20|1996-08-03|1996-09-10|DELIVER IN PERSON|FOB| carefully ironic p| +5866|754741|17257|2|21|37709.91|0.09|0.05|N|O|1996-08-07|1996-08-10|1996-08-21|COLLECT COD|AIR|s integrate furiously final acc| +5866|918673|18674|3|19|32140.97|0.02|0.07|N|O|1996-07-15|1996-07-17|1996-07-24|DELIVER IN PERSON|MAIL|uickly across the| +5866|130737|18244|4|3|5303.19|0.10|0.08|N|O|1996-08-21|1996-08-22|1996-09-09|COLLECT COD|REG AIR|al platelets wake along the final account| +5866|294885|7391|5|44|82714.28|0.07|0.01|N|O|1996-07-11|1996-07-22|1996-07-23|DELIVER IN PERSON|MAIL|packages promise slyly across the final, ir| +5866|117605|42610|6|31|50300.60|0.01|0.05|N|O|1996-07-12|1996-08-20|1996-07-24|NONE|RAIL|equests are furiously even pinto beans. ev| +5867|142712|42713|1|40|70188.40|0.02|0.04|R|F|1992-12-16|1992-11-19|1992-12-20|NONE|AIR|ly regular accoun| +5867|552842|15354|2|45|85266.90|0.10|0.07|A|F|1992-10-22|1992-11-26|1992-11-04|DELIVER IN PERSON|TRUCK|nic asymptotes nag carefully among the the| +5867|614075|1612|3|16|15824.64|0.02|0.01|R|F|1992-11-07|1992-11-26|1992-12-06|DELIVER IN PERSON|MAIL|sts wake blithely id| +5867|750022|37568|4|18|19295.82|0.08|0.02|R|F|1993-01-04|1992-11-25|1993-01-07|NONE|SHIP|ng the stealthy, regular ideas. slyly| +5868|321352|46365|1|2|2746.68|0.04|0.03|N|O|1996-09-02|1996-10-24|1996-09-15|NONE|FOB| sleep quickly. furiously final| +5868|947342|34897|2|14|19450.20|0.04|0.00|N|O|1996-10-27|1996-10-27|1996-11-13|COLLECT COD|RAIL|usly even dep| +5868|966342|3900|3|26|36615.80|0.09|0.07|N|O|1996-09-26|1996-10-09|1996-10-10|COLLECT COD|MAIL|deposits. asymptotes a| +5868|299934|49935|4|4|7735.68|0.06|0.07|N|O|1996-12-13|1996-11-10|1997-01-07|NONE|AIR| the slyly final accounts. blithely regula| +5868|989266|26824|5|1|1355.22|0.09|0.08|N|O|1996-11-30|1996-09-26|1996-12-12|COLLECT COD|REG AIR|deposits. express, r| +5868|580878|30879|6|28|54847.80|0.06|0.01|N|O|1996-10-15|1996-10-04|1996-10-29|DELIVER IN PERSON|TRUCK|ingly special accounts wake| +5868|805903|5904|7|28|50648.08|0.05|0.08|N|O|1996-11-09|1996-10-25|1996-11-23|COLLECT COD|FOB| quickly regular pack| +5869|810113|10114|1|29|29669.03|0.08|0.02|N|O|1995-09-28|1995-08-28|1995-10-09|DELIVER IN PERSON|MAIL| unusual requests are quickly sile| +5869|554856|4857|2|12|22929.96|0.00|0.06|N|O|1995-09-07|1995-09-10|1995-09-17|DELIVER IN PERSON|REG AIR|arefully regular accounts. expr| +5869|452463|2464|3|40|56617.60|0.10|0.08|N|O|1995-11-02|1995-09-28|1995-11-11|NONE|FOB| blithely special| +5869|529274|29275|4|7|9122.75|0.00|0.06|N|O|1995-09-23|1995-10-02|1995-10-09|TAKE BACK RETURN|MAIL|en theodolites| +5869|493767|31295|5|40|70429.60|0.05|0.04|N|O|1995-07-31|1995-09-15|1995-08-12|COLLECT COD|MAIL|ual asymptotes? close| +5870|579809|17343|1|20|37775.60|0.01|0.01|N|O|1998-03-05|1998-03-17|1998-03-15|DELIVER IN PERSON|MAIL|decoys. ideas sleep carefully blit| +5871|157247|19751|1|19|24780.56|0.07|0.01|N|O|1998-06-24|1998-05-03|1998-07-09|NONE|REG AIR| are carefully ironic instructions| +5896|217949|5462|1|41|76544.13|0.07|0.08|A|F|1992-06-23|1992-05-25|1992-07-17|NONE|REG AIR|ages nag blith| +5896|61335|23837|2|25|32408.25|0.00|0.03|R|F|1992-05-11|1992-04-13|1992-05-29|DELIVER IN PERSON|FOB|ngside of the furiously pend| +5897|53592|3593|1|38|58732.42|0.00|0.02|N|O|1996-01-11|1996-02-22|1996-01-24|TAKE BACK RETURN|REG AIR|posits boost carefully. slyly final a| +5898|593067|30601|1|17|19720.68|0.03|0.06|N|O|1997-08-23|1997-09-10|1997-09-05|NONE|MAIL|es nag slyly slyly| +5898|668640|31154|2|20|32172.20|0.08|0.06|N|O|1997-09-24|1997-09-12|1997-10-23|NONE|REG AIR|y! final, thin d| +5899|766852|16853|1|42|80590.44|0.09|0.08|R|F|1993-03-11|1993-03-13|1993-03-21|COLLECT COD|TRUCK| ironic, ironic packages are. ca| +5899|474375|36885|2|13|17541.55|0.08|0.06|R|F|1993-03-14|1993-04-07|1993-04-09|NONE|MAIL|arefully express deposits thrash blith| +5899|806428|6429|3|2|2668.76|0.00|0.05|R|F|1993-02-11|1993-02-13|1993-02-23|NONE|SHIP|uickly unusual requests. caref| +5899|628826|16363|4|25|43869.75|0.10|0.03|R|F|1993-03-03|1993-03-29|1993-03-22|DELIVER IN PERSON|MAIL|posits. final, ironic requests are dogged | +5899|676847|14387|5|36|65657.16|0.08|0.04|R|F|1993-01-20|1993-02-19|1993-02-19|DELIVER IN PERSON|SHIP| blithe ideas. blithely ironic Tiresias nod| +5899|751485|1486|6|6|9218.70|0.02|0.08|R|F|1993-04-19|1993-02-21|1993-05-03|COLLECT COD|RAIL|ainst the blithely express ideas are qu| +5900|953046|3047|1|18|19782.00|0.10|0.00|N|O|1996-05-21|1996-05-05|1996-06-08|NONE|AIR|even, special depos| +5901|483450|45960|1|27|38702.61|0.03|0.03|A|F|1993-08-31|1993-10-14|1993-09-11|COLLECT COD|REG AIR|ng the fluffily p| +5901|333365|20884|2|35|48942.25|0.02|0.04|R|F|1993-10-19|1993-10-03|1993-11-10|DELIVER IN PERSON|TRUCK|ut the fluffily ironic forges| +5901|851280|1281|3|8|9849.92|0.10|0.06|A|F|1993-10-17|1993-11-07|1993-11-03|COLLECT COD|REG AIR|tructions. furiously final foxes boos| +5901|460307|22817|4|5|6336.40|0.04|0.04|A|F|1993-10-17|1993-10-21|1993-11-15|NONE|MAIL|ly against the pending platelets. quickl| +5902|312632|12633|1|24|39470.88|0.03|0.01|N|O|1997-01-04|1996-11-02|1997-01-18|TAKE BACK RETURN|RAIL|en foxes. | +5902|397020|9528|2|29|32393.29|0.04|0.00|N|O|1996-12-09|1996-11-26|1996-12-13|COLLECT COD|AIR|kly ironic excuses cajole. slyly iro| +5903|9618|47119|1|37|56521.57|0.01|0.05|N|O|1996-06-04|1996-04-11|1996-06-05|COLLECT COD|RAIL|ly special theodolites above the re| +5928|930332|30333|1|1|1362.29|0.09|0.00|N|O|1995-06-22|1995-06-11|1995-07-12|TAKE BACK RETURN|AIR|gular ideas s| +5928|82628|7631|2|25|40265.50|0.10|0.05|A|F|1995-05-17|1995-07-02|1995-05-23|TAKE BACK RETURN|MAIL|nusual dolphins bo| +5929|205816|30825|1|28|48210.40|0.10|0.02|A|F|1992-10-09|1992-08-24|1992-10-10|DELIVER IN PERSON|AIR|he carefull| +5929|138952|38953|2|6|11945.70|0.08|0.03|A|F|1992-08-02|1992-08-11|1992-08-26|NONE|SHIP| carefully. slyly dogged foxes thrash bli| +5929|365437|40452|3|48|72116.16|0.07|0.05|R|F|1992-07-13|1992-09-11|1992-08-01|NONE|MAIL|alongside of the quickly| +5929|893144|43145|4|38|43209.80|0.08|0.04|R|F|1992-07-17|1992-09-20|1992-08-05|NONE|MAIL|d foxes sleep carefull| +5929|62455|49959|5|45|63785.25|0.01|0.00|A|F|1992-09-26|1992-09-11|1992-10-04|COLLECT COD|FOB|final frets w| +5929|678868|41382|6|12|22161.96|0.09|0.01|A|F|1992-10-11|1992-09-19|1992-10-15|NONE|REG AIR|uffy decoys would thrash| +5930|519030|31541|1|31|32519.31|0.07|0.06|N|O|1996-06-25|1996-04-14|1996-07-17|COLLECT COD|MAIL| furiously even excus| +5930|320428|20429|2|45|65178.45|0.00|0.01|N|O|1996-03-08|1996-05-18|1996-03-09|COLLECT COD|MAIL|lyly ironic instruc| +5931|284437|34438|1|1|1421.42|0.05|0.08|A|F|1992-07-23|1992-08-19|1992-07-29|DELIVER IN PERSON|FOB|y. slyly final p| +5931|517092|29603|2|7|7763.49|0.08|0.02|A|F|1992-07-08|1992-08-25|1992-07-26|DELIVER IN PERSON|REG AIR|lar, final accounts snooze furiously acr| +5931|757770|7771|3|21|38382.54|0.03|0.02|R|F|1992-10-19|1992-08-28|1992-11-07|NONE|AIR|sly final theodoli| +5932|956201|18721|1|2|2514.32|0.04|0.03|A|F|1992-12-07|1992-12-23|1992-12-13|NONE|RAIL|requests among the fin| +5932|854698|29733|2|48|79327.20|0.05|0.05|A|F|1993-01-15|1992-10-26|1993-01-29|TAKE BACK RETURN|MAIL|regular deposits poac| +5932|894689|19724|3|41|69029.24|0.04|0.05|R|F|1992-11-28|1992-11-13|1992-12-09|DELIVER IN PERSON|AIR|g deposits| +5932|35569|10570|4|2|3009.12|0.10|0.07|A|F|1993-01-21|1992-11-12|1993-02-08|NONE|SHIP|deposits. slyly regular depths| +5933|369909|19910|1|47|93007.83|0.03|0.02|A|F|1995-03-25|1995-01-25|1995-03-29|TAKE BACK RETURN|TRUCK|detect among the fu| +5934|490334|2844|1|27|35756.37|0.04|0.08|A|F|1994-06-11|1994-03-25|1994-06-12|DELIVER IN PERSON|TRUCK|le carefully. unusual, even excus| +5934|30057|17558|2|4|3948.20|0.05|0.03|R|F|1994-06-02|1994-05-19|1994-06-24|NONE|RAIL|equests integrate| +5934|160369|47879|3|23|32875.28|0.05|0.00|R|F|1994-03-22|1994-05-04|1994-04-17|DELIVER IN PERSON|MAIL|d packages nag furiously s| +5934|312760|12761|4|34|60273.50|0.02|0.03|R|F|1994-03-13|1994-04-13|1994-04-05|COLLECT COD|AIR|s are caref| +5934|545687|45688|5|10|17326.60|0.07|0.05|R|F|1994-06-18|1994-03-27|1994-07-03|NONE|REG AIR|inal theodolites. | +5934|354774|29789|6|23|42061.48|0.05|0.04|R|F|1994-03-31|1994-04-19|1994-04-21|COLLECT COD|AIR|counts sleep blithely fluffily | +5934|672739|10279|7|18|30810.60|0.07|0.04|R|F|1994-04-01|1994-04-02|1994-04-23|TAKE BACK RETURN|REG AIR| quickly furiously iron| +5935|722141|9684|1|21|24425.31|0.06|0.04|A|F|1993-01-23|1993-01-18|1993-02-12|NONE|MAIL|l, special requests according| +5935|22548|47549|2|45|66174.30|0.00|0.04|R|F|1993-02-12|1993-02-07|1993-02-21|TAKE BACK RETURN|RAIL| the slyly regular| +5960|203214|3215|1|6|6703.20|0.04|0.03|N|O|1998-07-14|1998-06-12|1998-07-16|TAKE BACK RETURN|AIR| ideas. special de| +5960|406352|43877|2|30|37749.90|0.08|0.06|N|O|1998-06-14|1998-06-03|1998-07-06|NONE|MAIL|ake blithely| +5960|541348|3859|3|26|36122.32|0.00|0.03|N|O|1998-05-15|1998-04-30|1998-06-03|DELIVER IN PERSON|FOB|l tithes haggle. regular,| +5961|119182|6689|1|19|22822.42|0.05|0.00|A|F|1993-06-07|1993-06-18|1993-06-18|NONE|MAIL|ckly slyly unusual deposits. special packa| +5961|75682|685|2|33|54703.44|0.06|0.03|R|F|1993-05-12|1993-07-24|1993-05-30|DELIVER IN PERSON|REG AIR|bold deposits promise carefully regular fox| +5961|972431|9989|3|11|16537.29|0.00|0.08|R|F|1993-07-14|1993-07-29|1993-07-28|TAKE BACK RETURN|REG AIR|always. bl| +5962|412909|37926|1|37|67409.56|0.08|0.07|A|F|1993-08-13|1993-07-16|1993-09-02|NONE|RAIL|riously regular packages alongside of th| +5962|759324|9325|2|5|6916.45|0.10|0.03|R|F|1993-06-08|1993-06-04|1993-06-15|NONE|FOB|s cajole carefully pi| +5962|943342|5861|3|13|18008.90|0.08|0.05|R|F|1993-07-29|1993-06-24|1993-08-16|NONE|FOB|usly final decoys haggle alo| +5962|738777|26320|4|2|3631.48|0.07|0.08|R|F|1993-06-23|1993-05-23|1993-07-22|NONE|RAIL| packages en| +5962|615857|15858|5|14|24819.48|0.08|0.05|A|F|1993-07-27|1993-05-29|1993-08-19|NONE|FOB|ithely after the even, bold foxes. | +5962|699854|49855|6|24|44491.68|0.09|0.00|A|F|1993-08-14|1993-05-29|1993-09-04|DELIVER IN PERSON|SHIP|t the foxes. slyly silent packages| +5962|444321|6830|7|46|58203.80|0.05|0.06|A|F|1993-04-29|1993-06-24|1993-05-19|COLLECT COD|TRUCK|final foxes | +5963|701369|1370|1|5|6851.65|0.00|0.00|N|O|1996-11-07|1996-12-08|1996-11-22|TAKE BACK RETURN|REG AIR|y pending instructions. slyly expr| +5963|893616|31168|2|30|48287.10|0.06|0.04|N|O|1996-12-18|1996-12-11|1997-01-07|NONE|SHIP|sly regular accounts are blithely acr| +5963|993972|43973|3|45|92966.85|0.10|0.02|N|O|1997-01-17|1996-11-15|1997-01-19|NONE|FOB|de of the furiously regular instruc| +5963|677194|14734|4|36|42161.76|0.09|0.00|N|O|1996-11-15|1996-11-30|1996-11-19|DELIVER IN PERSON|MAIL|osits wake instruct| +5964|334671|47178|1|31|52875.46|0.00|0.00|R|F|1994-06-28|1994-05-24|1994-07-10|COLLECT COD|MAIL|packages. furiously even accoun| +5964|803510|16027|2|5|7067.35|0.01|0.05|R|F|1994-05-06|1994-07-19|1994-05-12|COLLECT COD|AIR|s are against the even a| +5964|591497|16520|3|22|34946.34|0.00|0.02|R|F|1994-07-07|1994-05-31|1994-08-05|COLLECT COD|TRUCK| bravely expres| +5965|123308|23309|1|37|49258.10|0.05|0.00|A|F|1992-12-11|1993-01-01|1993-01-09|COLLECT COD|RAIL|into beans affix carefull| +5965|424874|37383|2|45|80948.25|0.03|0.01|A|F|1992-12-01|1992-11-28|1992-12-09|NONE|AIR|sly final dependencies; ironic pi| +5965|840883|28432|3|28|51067.52|0.07|0.01|R|F|1992-10-27|1992-12-29|1992-11-16|NONE|RAIL|cording to the quickly special frays. ex| +5966|157669|45179|1|44|75973.04|0.04|0.01|R|F|1994-01-26|1994-03-08|1994-02-25|DELIVER IN PERSON|FOB|sly express theodolites detect. unusua| +5966|934093|21648|2|39|43954.95|0.05|0.05|R|F|1994-03-07|1994-03-14|1994-03-26|COLLECT COD|AIR|carefully bold dependencies snooze| +5966|299382|24393|3|37|51110.69|0.04|0.04|R|F|1994-01-18|1994-03-10|1994-02-03|NONE|SHIP| sleep carefully | +5967|997301|22340|1|37|51735.62|0.04|0.04|N|O|1998-04-29|1998-05-05|1998-05-21|TAKE BACK RETURN|AIR|ges use fluffily furi| +5967|624050|11587|2|3|2922.06|0.09|0.01|N|O|1998-03-18|1998-04-28|1998-03-24|DELIVER IN PERSON|RAIL|kly. regularly ironic sheaves a| +5967|397308|9816|3|50|70264.50|0.03|0.03|N|O|1998-03-21|1998-05-14|1998-03-24|COLLECT COD|RAIL|tions. carefully final excuses cajole ac| +5992|359818|22326|1|6|11266.80|0.04|0.02|N|O|1997-06-23|1997-07-09|1997-07-06|TAKE BACK RETURN|TRUCK| fluffily. slyly bra| +5992|457465|19975|2|48|68277.12|0.08|0.08|N|O|1997-09-22|1997-07-12|1997-10-17|TAKE BACK RETURN|REG AIR| blithely regular requests. furiously regu| +5992|598645|11157|3|22|38359.64|0.04|0.06|N|O|1997-07-01|1997-08-24|1997-07-28|DELIVER IN PERSON|MAIL|y alongside of the deposits. quickly regula| +5992|421821|46838|4|50|87140.00|0.03|0.03|N|O|1997-09-27|1997-07-24|1997-10-14|NONE|REG AIR|es. theodolites| +5992|533570|46081|5|47|75366.85|0.09|0.06|N|O|1997-06-18|1997-07-22|1997-07-12|DELIVER IN PERSON|RAIL| quiet, bold packages around t| +5993|814993|40026|1|24|45790.80|0.01|0.06|N|O|1998-04-17|1998-02-23|1998-05-08|TAKE BACK RETURN|MAIL|uests sleep fu| +5993|581952|6975|2|35|71187.55|0.06|0.02|N|O|1998-02-17|1998-03-07|1998-02-19|DELIVER IN PERSON|FOB|haggle. fu| +5993|857776|7777|3|21|36408.33|0.04|0.08|N|O|1998-04-25|1998-03-05|1998-05-11|NONE|RAIL|e blithely regular ideas. final account| +5993|637665|37666|4|34|54489.42|0.00|0.04|N|O|1998-03-18|1998-03-25|1998-04-09|NONE|TRUCK|ldly furiously bol| +5993|232738|7747|5|46|76853.12|0.02|0.03|N|O|1998-04-10|1998-03-27|1998-04-20|NONE|RAIL| unusual depos| +5993|621000|8537|6|47|43285.59|0.10|0.00|N|O|1998-01-21|1998-03-20|1998-02-13|TAKE BACK RETURN|MAIL|after the | +5993|136890|49393|7|16|30830.24|0.00|0.03|N|O|1998-02-22|1998-01-31|1998-03-07|NONE|AIR|lent packages.| +5994|710196|22711|1|23|27741.68|0.10|0.06|N|O|1997-08-28|1997-08-26|1997-08-31|DELIVER IN PERSON|FOB|. blithely final cou| +5994|251868|1869|2|43|78253.55|0.07|0.08|N|O|1997-07-14|1997-08-09|1997-07-19|NONE|RAIL|ages. quickly express dependenc| +5994|139723|2226|3|43|75796.96|0.08|0.02|N|O|1997-08-03|1997-07-22|1997-08-20|DELIVER IN PERSON|RAIL|le blithely. carefully bold requests c| +5994|308209|45728|4|49|59642.31|0.03|0.07|N|O|1997-06-21|1997-08-11|1997-06-29|NONE|AIR|ironic accounts are regular, even account| +5994|63370|25872|5|28|37334.36|0.10|0.06|N|O|1997-07-20|1997-08-22|1997-07-25|COLLECT COD|FOB|ual accounts| +5995|676734|14274|1|18|30792.60|0.08|0.03|R|F|1995-01-31|1995-03-04|1995-02-23|COLLECT COD|AIR|ges nag quickly fu| +5995|864869|2421|2|23|42177.86|0.08|0.06|A|F|1995-02-27|1995-03-30|1995-03-26|COLLECT COD|RAIL|side the furiously| +5996|103177|15680|1|43|50747.31|0.08|0.06|A|F|1993-04-26|1993-02-19|1993-05-16|DELIVER IN PERSON|REG AIR|ccounts haggle fluffily acr| +5996|84951|34952|2|10|19359.50|0.02|0.08|R|F|1993-04-30|1993-04-03|1993-05-21|TAKE BACK RETURN|REG AIR|s doze around the blithely regula| +5996|764584|14585|3|39|64293.45|0.00|0.04|R|F|1993-03-22|1993-03-09|1993-04-06|DELIVER IN PERSON|SHIP|egular accounts| +5996|348647|11154|4|38|64433.94|0.06|0.02|A|F|1993-05-12|1993-02-24|1993-05-13|TAKE BACK RETURN|REG AIR|nstructions cajo| +5996|706067|18582|5|46|49359.38|0.10|0.08|R|F|1993-02-18|1993-03-25|1993-03-17|NONE|FOB| blithely dog| +5996|860046|22564|6|39|39234.00|0.04|0.00|A|F|1993-04-21|1993-03-11|1993-04-25|TAKE BACK RETURN|FOB|nstructions? blithely ironic | +5997|456630|44158|1|10|15866.10|0.05|0.08|A|F|1994-07-03|1994-07-30|1994-07-08|DELIVER IN PERSON|RAIL|t the bold requests bo| +5997|571232|21233|2|47|61250.87|0.02|0.03|R|F|1994-09-25|1994-08-09|1994-09-30|COLLECT COD|MAIL|refully. final | +5998|246106|33619|1|23|24198.07|0.08|0.08|A|F|1992-06-13|1992-04-26|1992-06-15|TAKE BACK RETURN|REG AIR|tegrate enticingly reg| +5998|296386|21397|2|44|60824.28|0.04|0.00|A|F|1992-03-20|1992-05-31|1992-03-23|TAKE BACK RETURN|REG AIR|special theodo| +5998|348481|10988|3|5|7647.35|0.03|0.07|A|F|1992-06-01|1992-05-20|1992-06-13|TAKE BACK RETURN|TRUCK|ully quiet d| +5999|724723|24724|1|5|8738.45|0.03|0.02|N|O|1997-06-21|1997-04-28|1997-06-30|NONE|FOB|es. slyly bold deposits use furious| +5999|407768|32785|2|20|33514.80|0.04|0.06|N|O|1997-06-25|1997-05-04|1997-07-04|NONE|MAIL|ld accounts. multipliers haggle doggedly| +5999|349789|24802|3|11|20226.47|0.09|0.08|N|O|1997-04-27|1997-05-08|1997-05-19|TAKE BACK RETURN|FOB|he ironic requests: regular the| +5999|901255|26292|4|41|51504.61|0.01|0.03|N|O|1997-03-23|1997-05-08|1997-04-18|DELIVER IN PERSON|FOB| packages. ironically i| +6024|480726|5745|1|12|20480.40|0.02|0.02|N|O|1997-07-07|1997-05-20|1997-07-22|NONE|AIR|ven ideas. carefully express du| +6024|561775|11776|2|32|58776.00|0.06|0.08|N|O|1997-06-13|1997-05-22|1997-07-02|NONE|RAIL|lithe packages. express, | +6025|473011|10539|1|29|28535.71|0.01|0.01|N|O|1996-11-27|1997-01-18|1996-12-25|TAKE BACK RETURN|AIR|ironic packages. carefully final Tire| +6025|885317|47835|2|32|41672.64|0.07|0.04|N|O|1996-12-13|1996-12-26|1996-12-19|TAKE BACK RETURN|MAIL|ress pinto beans boost-- even fox| +6025|514078|1609|3|27|29485.35|0.06|0.06|N|O|1996-12-27|1996-12-29|1997-01-03|DELIVER IN PERSON|REG AIR|ely. fluffily express packages| +6025|102918|2919|4|36|69152.76|0.07|0.02|N|O|1997-03-04|1997-01-03|1997-03-10|COLLECT COD|RAIL|above the even ideas. special requests aff| +6025|734171|34172|5|30|36154.20|0.03|0.06|N|O|1996-12-02|1997-02-12|1996-12-26|COLLECT COD|FOB|quickly expre| +6025|198164|23171|6|18|22718.88|0.08|0.08|N|O|1996-12-22|1997-01-19|1997-01-21|TAKE BACK RETURN|MAIL|luffily accounts-- slyly regular| +6026|135279|35280|1|15|19714.05|0.04|0.07|R|F|1993-09-30|1993-09-24|1993-10-14|DELIVER IN PERSON|REG AIR|s nag. ironic foxes across the fi| +6026|626795|14332|2|30|51652.80|0.07|0.01|R|F|1993-11-19|1993-10-25|1993-12-03|DELIVER IN PERSON|REG AIR|ts are carefully after t| +6026|526790|1811|3|1|1816.77|0.01|0.05|R|F|1993-10-17|1993-10-16|1993-11-05|DELIVER IN PERSON|MAIL|ole slyly final| +6026|742896|5411|4|4|7755.44|0.08|0.01|A|F|1993-12-08|1993-11-17|1993-12-28|TAKE BACK RETURN|RAIL|efully about th| +6026|849884|37433|5|47|86190.48|0.05|0.03|R|F|1993-10-13|1993-10-19|1993-10-25|DELIVER IN PERSON|FOB|slyly pending instructions.| +6026|989754|39755|6|8|14749.68|0.00|0.05|R|F|1993-09-14|1993-10-24|1993-09-26|NONE|SHIP|. carefully regula| +6026|781395|43911|7|4|5905.44|0.03|0.07|R|F|1993-12-05|1993-10-29|1993-12-14|TAKE BACK RETURN|SHIP|g the furiously daring courts? ironic d| +6027|889547|39548|1|41|62996.50|0.06|0.02|N|O|1995-11-05|1995-11-05|1995-11-24|COLLECT COD|SHIP| instructions slee| +6028|971168|33688|1|13|16108.56|0.00|0.00|R|F|1994-02-09|1994-01-30|1994-03-11|DELIVER IN PERSON|SHIP|refully ironic excuses | +6029|210776|35785|1|41|69157.16|0.01|0.01|N|O|1998-04-09|1998-06-03|1998-05-05|DELIVER IN PERSON|TRUCK|usly against the blithely regular | +6029|508780|8781|2|29|51874.04|0.01|0.05|N|O|1998-04-23|1998-04-29|1998-05-23|DELIVER IN PERSON|FOB| quickly against the careful| +6029|51374|38878|3|1|1325.37|0.03|0.07|N|O|1998-07-11|1998-06-03|1998-08-01|TAKE BACK RETURN|TRUCK|o beans. pendin| +6029|428638|3655|4|16|25065.76|0.01|0.05|N|O|1998-05-30|1998-04-25|1998-06-27|COLLECT COD|SHIP|e. quietly pending pa| +6029|111310|23813|5|2|2642.62|0.05|0.04|N|O|1998-03-28|1998-05-14|1998-04-08|TAKE BACK RETURN|FOB|e slyly special foxes. quickl| +6030|858997|34032|1|8|15647.60|0.09|0.06|A|F|1994-03-23|1994-02-16|1994-04-20|NONE|MAIL|ingly in place of the final foxe| +6030|159744|47254|2|30|54112.20|0.09|0.06|A|F|1994-02-24|1994-01-19|1994-03-17|NONE|TRUCK|y at the notornis.| +6030|806211|43760|3|36|40218.12|0.05|0.08|A|F|1994-03-06|1994-01-06|1994-03-16|COLLECT COD|TRUCK| excuses. furiously e| +6031|168066|43073|1|26|29485.56|0.04|0.04|R|F|1993-11-02|1993-09-03|1993-11-04|COLLECT COD|TRUCK|t the regul| +6031|681705|31706|2|16|26986.72|0.10|0.05|A|F|1993-08-07|1993-09-08|1993-08-31|COLLECT COD|TRUCK|en requests| +6031|399159|36681|3|21|26420.94|0.09|0.03|R|F|1993-09-11|1993-09-20|1993-09-25|NONE|RAIL|ular pinto beans above the furiously regu| +6031|658019|45559|4|12|11723.76|0.05|0.08|A|F|1993-11-02|1993-10-08|1993-11-04|NONE|AIR|grouches mai| +6056|822636|10185|1|41|63902.19|0.06|0.08|R|F|1994-09-30|1994-12-12|1994-10-04|NONE|FOB|deposits kindle. final | +6057|379714|29715|1|22|39461.40|0.08|0.04|N|O|1995-12-15|1996-01-11|1996-01-01|COLLECT COD|MAIL|special excuses will boost blithe| +6057|838590|13623|2|13|19871.15|0.04|0.06|N|O|1996-01-17|1995-11-28|1996-02-12|COLLECT COD|TRUCK|leep carefully| +6058|31902|44403|1|6|11003.40|0.08|0.07|A|F|1994-02-24|1993-12-28|1994-03-13|COLLECT COD|SHIP|cajole along the pend| +6058|162809|12810|2|16|29948.80|0.00|0.04|R|F|1994-01-05|1994-01-20|1994-01-24|DELIVER IN PERSON|RAIL|ts. fluffily silent r| +6059|919866|32385|1|21|39602.22|0.00|0.05|R|F|1995-01-30|1994-12-06|1995-02-27|DELIVER IN PERSON|TRUCK|inal requests haggle slyly. express| +6059|187601|105|2|34|57412.40|0.08|0.05|A|F|1994-12-23|1994-12-23|1995-01-09|COLLECT COD|FOB|riously final theodolites nag. fluf| +6059|999155|36713|3|44|55180.84|0.06|0.03|A|F|1994-12-30|1995-01-24|1995-01-08|DELIVER IN PERSON|SHIP|nts around the blithely daring the| +6060|216342|16343|1|28|35233.24|0.06|0.04|A|F|1994-05-26|1994-05-20|1994-06-15|DELIVER IN PERSON|FOB|g, express accounts. iro| +6060|47017|22018|2|12|11568.12|0.04|0.01|A|F|1994-05-15|1994-06-13|1994-06-06|TAKE BACK RETURN|AIR|s above the carefully bold| +6060|208555|21060|3|46|67322.84|0.05|0.04|A|F|1994-05-20|1994-05-11|1994-05-24|DELIVER IN PERSON|MAIL|blate blithely unusual pains-- regu| +6060|178994|4001|4|24|49751.76|0.03|0.04|A|F|1994-04-23|1994-05-20|1994-05-18|NONE|MAIL|ourts. furiously regular deposits | +6060|344067|6574|5|6|6666.30|0.00|0.00|A|F|1994-04-16|1994-06-30|1994-04-21|DELIVER IN PERSON|RAIL|ites: slyly ironic depen| +6060|721125|33640|6|46|52720.14|0.00|0.05|R|F|1994-06-18|1994-05-30|1994-06-21|TAKE BACK RETURN|AIR|st slyly. carefully even dept| +6060|937819|25374|7|19|35278.63|0.05|0.04|R|F|1994-08-03|1994-05-31|1994-08-26|TAKE BACK RETURN|TRUCK|s packages wake furiously regular accoun| +6061|916582|29101|1|31|49554.74|0.01|0.03|N|O|1996-04-06|1996-05-05|1996-04-14|DELIVER IN PERSON|SHIP|ns. deposits wake courts. furiously sly a| +6061|982450|7489|2|28|42907.48|0.00|0.08|N|O|1996-04-27|1996-04-30|1996-05-02|DELIVER IN PERSON|AIR|ts. instructions should wake caref| +6061|36031|11032|3|21|20307.63|0.07|0.04|N|O|1996-03-31|1996-04-13|1996-04-04|NONE|SHIP|, regular accounts. furiously f| +6061|570785|45808|4|17|31547.92|0.10|0.02|N|O|1996-05-31|1996-05-17|1996-06-11|DELIVER IN PERSON|AIR|ess packages alongside of the unusual plate| +6062|866299|16300|1|1|1265.25|0.06|0.05|N|O|1998-06-29|1998-05-23|1998-07-23|DELIVER IN PERSON|AIR|he express, reg| +6062|875649|38167|2|34|55236.40|0.09|0.06|N|O|1998-06-25|1998-05-11|1998-06-29|TAKE BACK RETURN|REG AIR|ard the carefully unusual court| +6062|16738|16739|3|10|16547.30|0.06|0.00|N|O|1998-04-11|1998-05-31|1998-04-27|DELIVER IN PERSON|RAIL|xpress pin| +6062|315259|15260|4|40|50969.60|0.03|0.03|N|O|1998-05-10|1998-06-10|1998-05-31|NONE|FOB|unusual foxes sleep blithely a| +6062|550500|13012|5|46|71322.08|0.08|0.01|N|O|1998-04-26|1998-06-22|1998-05-18|COLLECT COD|AIR|he foxes. carefully even accounts hag| +6062|239063|26576|6|11|11022.55|0.04|0.07|N|O|1998-06-20|1998-05-03|1998-07-18|NONE|REG AIR|quickly fin| +6063|341386|41387|1|48|68513.76|0.02|0.07|N|O|1997-10-08|1997-08-25|1997-10-24|COLLECT COD|TRUCK|onic theodolites cajole | +6063|669256|19257|2|7|8576.54|0.07|0.01|N|O|1997-07-18|1997-07-14|1997-07-21|COLLECT COD|RAIL|riously special requests. p| +6063|183396|20906|3|25|36984.75|0.02|0.00|N|O|1997-09-15|1997-09-04|1997-10-02|NONE|FOB|furiously even theodolites along| +6088|601285|26310|1|1|1186.25|0.06|0.03|N|O|1996-09-29|1996-09-11|1996-10-09|TAKE BACK RETURN|MAIL|the regular excuses. fu| +6089|962017|24537|1|17|18342.49|0.00|0.03|N|O|1995-06-28|1995-07-31|1995-07-16|DELIVER IN PERSON|RAIL|uests integrate. | +6089|613860|1397|2|37|65631.71|0.09|0.03|N|O|1995-08-12|1995-07-30|1995-09-06|DELIVER IN PERSON|RAIL|excuses cajole carefully? slyly| +6089|143310|30817|3|3|4059.93|0.08|0.07|N|O|1995-07-30|1995-07-03|1995-08-10|NONE|FOB|s boost: bold frets hang furiously | +6089|603896|41433|4|33|59395.38|0.07|0.00|N|O|1995-08-11|1995-07-31|1995-08-25|COLLECT COD|AIR|symptotes.| +6089|676187|1214|5|7|8142.05|0.02|0.01|N|O|1995-09-20|1995-07-27|1995-09-24|NONE|MAIL|the even, final packages sl| +6089|663077|25591|6|24|24960.96|0.09|0.04|N|F|1995-06-01|1995-06-28|1995-07-01|TAKE BACK RETURN|MAIL|ongside of the regular, even packa| +6089|334895|22414|7|1|1929.88|0.02|0.08|N|O|1995-07-30|1995-08-03|1995-08-29|TAKE BACK RETURN|SHIP|y special | +6090|576955|14489|1|25|50798.25|0.10|0.08|R|F|1992-09-06|1992-10-15|1992-09-07|COLLECT COD|FOB|ges haggle furiou| +6090|878361|28362|2|24|32143.68|0.08|0.03|R|F|1992-12-10|1992-10-06|1993-01-05|COLLECT COD|MAIL|yly unusual cour| +6090|604948|42485|3|33|61146.03|0.10|0.03|R|F|1992-09-17|1992-09-28|1992-10-13|NONE|AIR| according to the | +6090|354304|41826|4|47|63839.63|0.00|0.05|R|F|1992-10-06|1992-09-30|1992-11-04|TAKE BACK RETURN|SHIP|tes print-- carefully express ideas are| +6090|772020|22021|5|48|52415.52|0.00|0.01|A|F|1992-12-18|1992-10-22|1993-01-03|TAKE BACK RETURN|SHIP|es. carefully final notornis nod blit| +6090|325011|24|6|32|33152.00|0.08|0.06|R|F|1992-08-24|1992-09-27|1992-08-31|NONE|FOB|aggle blithely across t| +6090|449792|12301|7|50|87088.50|0.03|0.05|A|F|1992-10-28|1992-10-21|1992-11-23|TAKE BACK RETURN|FOB|ly unusual sheaves. quickly express accoun| +6091|653788|3789|1|9|15675.75|0.05|0.04|N|O|1995-07-24|1995-07-25|1995-08-14|NONE|REG AIR|efully pending packages along the c| +6091|206475|43988|2|10|13814.60|0.03|0.01|N|O|1995-06-22|1995-08-11|1995-07-08|DELIVER IN PERSON|TRUCK|onic foxes wake-- sil| +6091|215918|40927|3|12|22006.80|0.01|0.08|N|O|1995-07-24|1995-07-17|1995-08-22|NONE|REG AIR|ly about the even| +6091|926970|26971|4|32|63901.76|0.07|0.00|N|O|1995-08-28|1995-07-02|1995-09-24|COLLECT COD|TRUCK|e slyly after the blithely un| +6091|574254|36766|5|40|53129.20|0.01|0.04|N|O|1995-08-23|1995-06-22|1995-09-04|NONE|REG AIR|y. slyly even packages su| +6092|194122|44123|1|23|27970.76|0.09|0.01|A|F|1994-04-22|1994-04-09|1994-05-12|NONE|REG AIR|e carefull| +6092|599098|36632|2|46|55065.22|0.09|0.06|R|F|1994-06-17|1994-05-12|1994-07-10|NONE|FOB|hely pending ideas. pinto | +6092|29936|42437|3|21|39184.53|0.05|0.04|R|F|1994-04-25|1994-04-30|1994-04-26|NONE|AIR|ounts across the silent, unusual | +6092|127415|14922|4|32|46157.12|0.04|0.01|A|F|1994-04-17|1994-05-29|1994-05-07|DELIVER IN PERSON|FOB|re carefully. slyly | +6093|653451|40991|1|37|51963.54|0.09|0.03|R|F|1993-06-23|1993-07-08|1993-07-21|COLLECT COD|AIR| packages are slyly even sauternes. i| +6093|540778|40779|2|26|47287.50|0.10|0.01|A|F|1993-09-11|1993-06-22|1993-09-28|DELIVER IN PERSON|FOB| even foxes aga| +6093|854174|41726|3|5|5640.65|0.01|0.06|A|F|1993-07-12|1993-06-28|1993-08-08|TAKE BACK RETURN|REG AIR|ss warthogs. furiously sly deposits wa| +6093|99705|37209|4|17|28979.90|0.10|0.04|R|F|1993-08-07|1993-07-27|1993-08-21|COLLECT COD|FOB|ly silent packages? fu| +6093|736152|36153|5|4|4752.48|0.09|0.07|A|F|1993-08-23|1993-07-16|1993-09-17|TAKE BACK RETURN|AIR|furiously final foxes along th| +6094|467373|42392|1|10|13403.50|0.02|0.00|N|O|1998-05-21|1998-03-28|1998-06-01|NONE|AIR|ions print instead of | +6094|137804|37805|2|37|68146.60|0.02|0.08|N|O|1998-03-17|1998-04-04|1998-03-18|TAKE BACK RETURN|SHIP|regular deposits are blithel| +6094|58637|8638|3|25|39890.75|0.09|0.08|N|O|1998-03-05|1998-04-11|1998-03-06|COLLECT COD|SHIP|lieve: unu| +6094|507414|32435|4|5|7106.95|0.05|0.07|N|O|1998-04-21|1998-04-29|1998-05-21|DELIVER IN PERSON|REG AIR|riously final, ironic excus| +6094|93580|43581|5|19|29898.02|0.02|0.08|N|O|1998-04-30|1998-05-07|1998-05-29|DELIVER IN PERSON|RAIL| are regularly among the regular t| +6095|72909|10413|1|16|30110.40|0.06|0.08|A|F|1993-12-16|1993-10-21|1994-01-01|DELIVER IN PERSON|MAIL|lphins along the regular asymptotes are| +6095|380090|30091|2|31|36272.48|0.00|0.03|R|F|1993-10-28|1993-10-02|1993-11-16|NONE|TRUCK|y unusual requests among the| +6095|171414|21415|3|32|47533.12|0.02|0.01|A|F|1993-11-16|1993-10-20|1993-11-25|COLLECT COD|REG AIR|lyly ironic deposits nod | +6095|952986|2987|4|14|28545.16|0.08|0.03|A|F|1993-12-20|1993-11-01|1994-01-13|DELIVER IN PERSON|TRUCK|ans use quickly after the regular | +6095|834397|34398|5|14|18638.90|0.03|0.08|A|F|1993-10-23|1993-09-28|1993-10-28|COLLECT COD|REG AIR|regular deposits de| +6120|350800|13308|1|43|79583.97|0.10|0.01|N|O|1998-09-25|1998-10-17|1998-09-26|TAKE BACK RETURN|AIR| unusual instructions about the quickl| +6120|888781|13816|2|10|17697.40|0.00|0.03|N|O|1998-10-27|1998-08-29|1998-11-18|NONE|MAIL|nal excuses according | +6120|731434|6463|3|7|10257.80|0.01|0.06|N|O|1998-09-23|1998-08-31|1998-10-12|COLLECT COD|RAIL| ironic instructio| +6120|198404|10908|4|24|36057.60|0.07|0.02|N|O|1998-11-04|1998-09-13|1998-11-14|COLLECT COD|TRUCK|among the furiously ironic accounts. | +6121|442046|29571|1|34|33592.68|0.08|0.08|N|O|1995-11-21|1995-11-28|1995-11-25|DELIVER IN PERSON|AIR| foxes. furiously unusual deposits sleep| +6121|461681|24191|2|34|55850.44|0.03|0.07|N|O|1996-01-30|1995-12-17|1996-02-01|COLLECT COD|REG AIR|ts. slyly bold packa| +6122|8584|21085|1|13|19403.54|0.07|0.06|N|O|1997-01-11|1996-12-03|1997-01-29|NONE|MAIL|ent courts are. unusual dec| +6122|254864|42380|2|11|20007.35|0.06|0.08|N|O|1996-11-10|1996-12-03|1996-11-13|COLLECT COD|RAIL|ructions. blithely ironi| +6122|488814|26342|3|3|5408.37|0.08|0.08|N|O|1997-02-03|1996-11-18|1997-02-07|COLLECT COD|RAIL|gular requests. dependencie| +6122|493772|43773|4|48|84756.00|0.06|0.03|N|O|1996-11-09|1997-01-03|1996-11-30|TAKE BACK RETURN|FOB|sts use. final pinto beans a| +6122|825250|37767|5|21|24679.41|0.04|0.05|N|O|1996-10-22|1996-12-24|1996-11-18|TAKE BACK RETURN|SHIP|quests. slyly bold packages accordi| +6123|708649|8650|1|50|82880.50|0.00|0.00|N|O|1998-05-22|1998-07-01|1998-05-25|TAKE BACK RETURN|TRUCK|. deposits i| +6123|253710|28721|2|18|29946.60|0.02|0.04|N|O|1998-08-01|1998-06-27|1998-08-26|NONE|RAIL|regular warthogs| +6123|102037|39544|3|35|36366.05|0.05|0.07|N|O|1998-06-11|1998-06-27|1998-06-29|COLLECT COD|MAIL|ly unusual | +6123|923385|48422|4|5|7041.70|0.02|0.08|N|O|1998-08-31|1998-07-04|1998-09-25|NONE|REG AIR|ons will have to integrate sly| +6123|325588|38095|5|1|1613.57|0.06|0.00|N|O|1998-08-20|1998-08-03|1998-08-22|DELIVER IN PERSON|FOB|posits haggle regular, ir| +6123|147736|10239|6|31|55295.63|0.04|0.01|N|O|1998-05-30|1998-07-13|1998-06-14|DELIVER IN PERSON|FOB|carefully regular packag| +6123|993974|6494|7|37|76513.41|0.04|0.03|N|O|1998-05-24|1998-07-28|1998-06-17|TAKE BACK RETURN|TRUCK|al deposits. deposits alongside | +6124|718604|31119|1|7|11357.99|0.00|0.03|N|O|1996-03-30|1996-03-21|1996-04-17|COLLECT COD|RAIL|nic multipliers. t| +6124|564439|14440|2|45|67653.45|0.00|0.03|N|O|1996-04-13|1996-03-16|1996-04-23|COLLECT COD|REG AIR|furious packages slee| +6124|523235|48256|3|31|39004.51|0.06|0.08|N|O|1996-05-08|1996-03-02|1996-05-27|NONE|SHIP| quickly above the regular, bold deposit| +6124|3523|16024|4|36|51354.72|0.07|0.04|N|O|1996-01-25|1996-03-16|1996-02-17|DELIVER IN PERSON|SHIP|riously according to the blithel| +6124|206124|31133|5|32|32963.52|0.01|0.03|N|O|1996-04-12|1996-04-02|1996-05-11|DELIVER IN PERSON|TRUCK|ccounts are acros| +6124|316565|4084|6|12|18978.60|0.10|0.05|N|O|1996-05-09|1996-03-03|1996-05-29|DELIVER IN PERSON|AIR|ges; ironic, perm| +6125|150095|37605|1|11|12595.99|0.03|0.06|N|O|1996-02-15|1996-03-01|1996-03-12|COLLECT COD|TRUCK|pending forges. | +6125|643731|31268|2|11|18421.70|0.09|0.08|N|O|1996-02-23|1996-01-23|1996-03-15|NONE|TRUCK|counts outside the f| +6125|172450|22451|3|42|63942.90|0.05|0.08|N|O|1995-12-25|1996-01-26|1996-01-01|TAKE BACK RETURN|FOB|usly furiously special instructions. caref| +6125|357611|20119|4|31|51726.60|0.09|0.05|N|O|1996-03-29|1996-01-17|1996-04-16|COLLECT COD|AIR|ffily. accounts haggle fluffily blithely | +6126|575116|25117|1|12|14293.08|0.08|0.05|N|O|1997-12-12|1997-11-12|1998-01-11|TAKE BACK RETURN|RAIL|s x-ray blithely between| +6126|961541|11542|2|26|41665.00|0.10|0.00|N|O|1998-01-22|1997-11-21|1998-02-02|TAKE BACK RETURN|AIR|oze quickly a| +6127|424571|24572|1|36|53839.80|0.05|0.03|N|O|1997-09-10|1997-09-05|1997-09-26|NONE|FOB| fluffily q| +6127|760841|35872|2|9|17116.29|0.09|0.01|N|O|1997-09-06|1997-07-18|1997-09-30|DELIVER IN PERSON|MAIL|bold requests integrate slyly. pac| +6127|452085|39613|3|27|28000.62|0.03|0.00|N|O|1997-07-30|1997-08-25|1997-08-21|TAKE BACK RETURN|FOB|y unusual reque| +6152|603021|15534|1|11|10163.89|0.04|0.06|R|F|1994-11-20|1994-10-19|1994-11-28|TAKE BACK RETURN|SHIP|. special excuses so| +6152|963716|26236|2|48|85424.16|0.07|0.04|R|F|1994-09-12|1994-10-17|1994-09-27|DELIVER IN PERSON|SHIP|s. ironic ideas| +6153|109111|46618|1|14|15681.54|0.02|0.04|N|O|1995-12-18|1995-11-26|1995-12-28|COLLECT COD|REG AIR|ic pinto beans nag al| +6153|824232|49265|2|32|36998.08|0.03|0.08|N|O|1995-11-21|1995-11-14|1995-12-21|DELIVER IN PERSON|AIR| nag furiously asymptotes. bold pinto b| +6153|862831|37866|3|6|10762.74|0.08|0.05|N|O|1995-12-21|1996-01-01|1996-01-19|NONE|TRUCK|eans. carefully regular packages cajole sly| +6153|597122|22145|4|4|4876.40|0.09|0.04|N|O|1995-12-11|1995-11-28|1996-01-09|COLLECT COD|REG AIR|heodolites across the ruthlessly regular | +6153|821900|34417|5|46|83805.56|0.08|0.05|N|O|1995-10-27|1995-12-04|1995-11-22|NONE|AIR|dependencies mold furiously. | +6153|664696|39723|6|22|36534.52|0.05|0.00|N|O|1995-12-28|1995-11-23|1995-12-30|DELIVER IN PERSON|FOB|ly even instructions haggle carefully-- f| +6154|233846|21359|1|38|67633.54|0.02|0.00|A|F|1992-08-19|1992-08-13|1992-08-25|DELIVER IN PERSON|AIR|the furiously | +6154|238461|13470|2|45|62975.25|0.05|0.03|R|F|1992-08-31|1992-08-29|1992-09-05|TAKE BACK RETURN|REG AIR|integrate doggedly ironic, ironic packa| +6154|805779|18296|3|13|21901.49|0.06|0.01|A|F|1992-09-27|1992-09-11|1992-10-02|NONE|RAIL|larly final theodolites. slyly express d| +6155|360956|10957|1|25|50423.50|0.04|0.02|R|F|1992-05-17|1992-07-03|1992-05-22|NONE|REG AIR|heodolites against the quickly | +6155|587240|24774|2|44|58397.68|0.00|0.06|A|F|1992-05-18|1992-06-06|1992-05-31|TAKE BACK RETURN|REG AIR| furiously a| +6155|731145|6174|3|27|31754.97|0.10|0.05|A|F|1992-06-07|1992-06-21|1992-06-28|COLLECT COD|AIR|ests haggle slyly regular pinto| +6155|353913|41435|4|3|5900.70|0.01|0.03|A|F|1992-05-15|1992-06-17|1992-05-28|DELIVER IN PERSON|MAIL|rint carefully e| +6155|208826|46339|5|27|46839.87|0.08|0.00|R|F|1992-04-19|1992-05-25|1992-04-30|NONE|FOB| pending packages according to the unus| +6155|735874|48389|6|43|82123.12|0.10|0.07|R|F|1992-05-02|1992-05-08|1992-05-24|NONE|AIR|ideas boost dependencies. bli| +6155|826600|14149|7|17|25951.52|0.05|0.04|R|F|1992-04-24|1992-06-05|1992-04-27|NONE|FOB|ross the ironic, | +6156|653157|3158|1|39|43294.68|0.07|0.08|N|O|1995-12-30|1996-01-03|1996-01-14|COLLECT COD|SHIP|. carefully unusual packag| +6156|601181|26206|2|17|18396.55|0.03|0.05|N|O|1996-01-14|1995-12-30|1996-02-02|COLLECT COD|FOB| furiously u| +6156|42263|42264|3|15|18078.90|0.01|0.04|N|O|1996-02-28|1996-02-03|1996-03-24|NONE|RAIL|counts cajole quickly after| +6157|351939|26954|1|22|43800.24|0.04|0.06|A|F|1992-11-13|1992-09-26|1992-12-06|DELIVER IN PERSON|MAIL|hely since the platelets. quickly reg| +6157|29482|16983|2|46|64928.08|0.08|0.04|A|F|1992-10-22|1992-10-03|1992-11-03|TAKE BACK RETURN|MAIL|eep slyly blithely un| +6157|490686|40687|3|5|8383.30|0.04|0.08|R|F|1992-08-22|1992-09-19|1992-08-31|COLLECT COD|TRUCK|uriously ruthless accounts haggle.| +6157|955526|5527|4|37|58514.76|0.08|0.08|A|F|1992-10-08|1992-10-02|1992-10-10|TAKE BACK RETURN|MAIL|ctions use carefull| +6158|954494|4495|1|37|57292.65|0.06|0.04|A|F|1995-02-20|1995-03-23|1995-03-12|COLLECT COD|REG AIR|express theodolites. enticingly | +6159|912993|25512|1|31|62184.45|0.00|0.06|R|F|1993-02-06|1992-11-30|1993-03-03|DELIVER IN PERSON|FOB|y according | +6159|664920|27434|2|34|64086.26|0.07|0.02|A|F|1993-02-24|1993-01-02|1993-03-11|NONE|AIR|into beans. furiously careful fox| +6159|301248|26261|3|5|6246.15|0.04|0.04|R|F|1993-01-06|1992-11-29|1993-01-27|COLLECT COD|REG AIR|nts are blithely slyly bold | +6184|796829|34375|1|33|63551.07|0.04|0.08|R|F|1993-06-07|1993-07-14|1993-06-12|NONE|RAIL|ve carefully behind | +6184|299604|12110|2|48|76972.32|0.03|0.07|R|F|1993-08-06|1993-08-20|1993-08-15|COLLECT COD|RAIL|al sheaves slee| +6184|430219|42728|3|25|28729.75|0.00|0.07|R|F|1993-08-24|1993-07-22|1993-08-31|NONE|FOB| foxes. silently| +6184|684573|47087|4|2|3115.08|0.05|0.00|A|F|1993-06-10|1993-07-09|1993-07-03|COLLECT COD|TRUCK|ely regular requests. carefully | +6184|612364|12365|5|27|34460.91|0.02|0.08|R|F|1993-06-30|1993-07-04|1993-07-23|TAKE BACK RETURN|FOB|ithely ironic| +6184|997358|22397|6|7|10187.17|0.04|0.07|R|F|1993-09-13|1993-08-02|1993-10-03|DELIVER IN PERSON|SHIP|somas cajole blithely along the slyly final| +6184|584424|46936|7|22|33184.80|0.05|0.05|A|F|1993-06-05|1993-08-04|1993-06-12|COLLECT COD|FOB|luffily fluffily even requests-- bold d| +6185|399291|36813|1|30|41708.40|0.07|0.06|N|O|1996-09-16|1996-10-22|1996-10-04|NONE|REG AIR|en instructions. special requests after| +6185|879510|17062|2|24|35747.28|0.00|0.04|N|O|1996-08-17|1996-09-15|1996-08-21|COLLECT COD|REG AIR|ts over the carefully ev| +6185|921969|34488|3|10|19909.20|0.04|0.00|N|O|1996-08-29|1996-10-10|1996-09-24|NONE|SHIP|the quickly express deposits. | +6185|528385|28386|4|4|5653.44|0.07|0.00|N|O|1996-08-27|1996-11-09|1996-09-03|TAKE BACK RETURN|SHIP|otes. ironic patterns n| +6185|561445|23957|5|44|66282.48|0.09|0.07|N|O|1996-09-01|1996-09-23|1996-09-06|COLLECT COD|AIR|ly slow deposits. instructions boost| +6185|204674|42187|6|15|23679.90|0.06|0.01|N|O|1996-11-15|1996-10-14|1996-12-10|COLLECT COD|SHIP|requests. ironically pending packa| +6185|946871|46872|7|44|84384.52|0.06|0.01|N|O|1996-12-09|1996-09-28|1996-12-28|TAKE BACK RETURN|AIR|its against| +6186|60605|35608|1|4|6262.40|0.00|0.07|N|O|1997-06-29|1997-05-17|1997-07-09|TAKE BACK RETURN|FOB|ully final dep| +6186|587082|49594|2|12|14028.72|0.08|0.05|N|O|1997-07-03|1997-05-31|1997-07-21|COLLECT COD|TRUCK|ts engage. bl| +6186|73498|48501|3|24|35315.76|0.07|0.01|N|O|1997-06-22|1997-06-06|1997-06-26|NONE|MAIL|slyly express ideas. regular theodolites | +6187|368500|43515|1|48|75287.52|0.09|0.01|N|O|1997-02-28|1997-02-21|1997-03-03|NONE|TRUCK|he realms. bl| +6187|378585|41093|2|36|59888.52|0.00|0.07|N|O|1997-01-17|1997-03-20|1997-01-30|COLLECT COD|RAIL| blithely fina| +6187|877168|2203|3|47|53820.64|0.05|0.01|N|O|1997-03-05|1997-02-13|1997-03-18|NONE|TRUCK|deas. slyly regula| +6187|555504|18016|4|2|3118.96|0.05|0.02|N|O|1997-03-20|1997-03-17|1997-04-18|COLLECT COD|TRUCK|ess requests.| +6187|347856|47857|5|40|76153.60|0.09|0.04|N|O|1997-01-10|1997-03-13|1997-01-20|TAKE BACK RETURN|MAIL|hely bold accounts. blit| +6187|414121|26630|6|7|7245.70|0.06|0.06|N|O|1997-01-03|1997-02-14|1997-01-04|TAKE BACK RETURN|TRUCK|. blithely ironic the| +6187|131402|18909|7|30|43002.00|0.02|0.06|N|O|1997-03-30|1997-02-26|1997-04-26|TAKE BACK RETURN|FOB|theodolites haggl| +6188|463567|38586|1|31|47446.74|0.02|0.04|A|F|1993-04-05|1993-04-04|1993-04-20|COLLECT COD|TRUCK|ar grouches kindle blithely regular pack| +6188|170477|32981|2|49|75826.03|0.00|0.07|R|F|1993-02-19|1993-03-05|1993-03-19|NONE|REG AIR| slyly even deposits haggle along the c| +6188|202504|27513|3|40|56259.60|0.01|0.01|R|F|1993-03-02|1993-03-21|1993-03-16|COLLECT COD|REG AIR|ges nod fluffily abo| +6188|482674|20202|4|38|62952.70|0.06|0.01|R|F|1993-02-24|1993-03-13|1993-03-08|COLLECT COD|MAIL|y along the furiously regular instructi| +6188|301129|1130|5|46|51985.06|0.06|0.01|R|F|1993-03-09|1993-03-14|1993-03-21|TAKE BACK RETURN|RAIL|ously pending| +6188|72598|22599|6|8|12564.72|0.06|0.05|A|F|1993-04-28|1993-03-31|1993-05-05|COLLECT COD|FOB|onic asymptotes. theodolites sleep fu| +6189|934847|9884|1|45|84681.00|0.00|0.06|N|O|1997-03-21|1997-02-18|1997-04-11|DELIVER IN PERSON|RAIL| brave foxes inte| +6189|958793|21313|2|2|3703.50|0.05|0.00|N|O|1997-03-14|1997-01-06|1997-03-31|NONE|TRUCK|pending dolphins. pending, final instruc| +6189|423219|35728|3|17|19417.23|0.02|0.07|N|O|1997-01-12|1997-01-23|1997-02-09|TAKE BACK RETURN|MAIL|ckages nag slyly blithely even theodolite| +6189|29050|41551|4|31|30350.55|0.06|0.03|N|O|1997-01-15|1996-12-27|1997-01-28|TAKE BACK RETURN|REG AIR|y. blithely ironic depos| +6189|236432|36433|5|39|53368.38|0.10|0.07|N|O|1997-01-27|1997-01-15|1997-02-05|DELIVER IN PERSON|MAIL|ully bold accounts | +6189|711234|36263|6|40|49808.00|0.05|0.01|N|O|1997-02-12|1997-02-06|1997-03-06|NONE|RAIL|ly even pinto beans| +6190|843249|30798|1|19|22651.80|0.05|0.08|A|F|1992-10-24|1992-12-04|1992-11-23|DELIVER IN PERSON|SHIP| nag carefully along the fina| +6190|479378|29379|2|45|61080.75|0.10|0.03|R|F|1993-01-09|1992-11-27|1993-02-07|DELIVER IN PERSON|REG AIR|ructions use daringly. iro| +6190|903646|3647|3|38|62684.80|0.05|0.08|A|F|1993-02-07|1992-12-15|1993-02-10|TAKE BACK RETURN|MAIL|lar, ironic ideas acros| +6190|568331|43354|4|24|33583.44|0.03|0.07|A|F|1993-01-19|1992-12-07|1993-02-15|COLLECT COD|MAIL|osits. special, pending| +6190|926591|14146|5|32|51761.60|0.09|0.02|A|F|1993-02-13|1993-01-05|1993-03-04|NONE|FOB|ackages. even, special packag| +6190|202251|2252|6|36|41516.64|0.08|0.04|A|F|1993-02-04|1992-12-19|1993-02-21|COLLECT COD|SHIP| cajole quickly. slyly close theod| +6191|987122|37123|1|2|2418.16|0.02|0.04|R|F|1994-11-30|1995-01-20|1994-12-12|TAKE BACK RETURN|MAIL|ly final packages nag| +6191|557564|7565|2|23|37295.42|0.07|0.05|A|F|1995-01-12|1995-01-17|1995-02-01|TAKE BACK RETURN|MAIL| ideas arou| +6191|964647|14648|3|23|39366.80|0.04|0.01|A|F|1995-03-11|1994-12-24|1995-03-21|COLLECT COD|SHIP| pending excuses engage carefully qu| +6191|810244|10245|4|1|1154.20|0.07|0.00|A|F|1995-02-13|1995-01-05|1995-02-22|NONE|MAIL|bold epitaphs. | +6191|765187|40218|5|22|27547.30|0.05|0.00|A|F|1995-01-07|1995-02-05|1995-01-19|TAKE BACK RETURN|REG AIR|nstructions wake enticingly blithel| +6191|486128|11147|6|50|55705.00|0.02|0.02|A|F|1994-11-25|1995-01-27|1994-12-11|COLLECT COD|SHIP| final packa| +6216|922675|10230|1|19|32254.97|0.03|0.05|R|F|1993-02-21|1993-04-05|1993-03-22|DELIVER IN PERSON|SHIP|sual accounts cajole blithely even ideas. | +6216|383519|46027|2|7|11217.50|0.03|0.05|R|F|1993-04-07|1993-04-21|1993-04-13|TAKE BACK RETURN|TRUCK|ar sauternes are fluffily. blithely b| +6216|793715|43716|3|10|18086.80|0.07|0.03|R|F|1993-02-15|1993-04-11|1993-03-13|DELIVER IN PERSON|AIR|ses are carefully slyly| +6217|752712|2713|1|4|7058.72|0.04|0.02|R|F|1992-09-11|1992-07-15|1992-09-28|TAKE BACK RETURN|AIR| instruction| +6217|827408|27409|2|41|54749.76|0.06|0.01|R|F|1992-08-08|1992-07-16|1992-08-30|DELIVER IN PERSON|REG AIR|requests are according to the | +6217|234013|9022|3|39|36933.00|0.01|0.07|R|F|1992-08-20|1992-08-26|1992-09-06|DELIVER IN PERSON|SHIP|ar foxes lose furiously across the blit| +6218|603888|3889|1|29|51963.65|0.02|0.08|N|O|1997-05-28|1997-06-12|1997-06-20|COLLECT COD|RAIL|or the furiously| +6218|529497|42008|2|5|7632.35|0.06|0.08|N|O|1997-04-16|1997-06-23|1997-05-04|NONE|TRUCK|as. even ideas would kindl| +6219|597062|34596|1|14|16226.56|0.05|0.08|N|O|1997-08-17|1997-08-05|1997-09-05|TAKE BACK RETURN|TRUCK| slyly regular instructions wake abo| +6219|810631|23148|2|12|18499.08|0.06|0.02|N|O|1997-07-24|1997-07-23|1997-08-11|DELIVER IN PERSON|TRUCK|ithely fluffily ironic packa| +6219|272476|34982|3|45|65180.70|0.10|0.00|N|O|1997-06-25|1997-08-26|1997-06-29|COLLECT COD|AIR|jole furiously r| +6220|941902|29457|1|6|11663.16|0.06|0.04|R|F|1993-12-09|1993-12-25|1993-12-25|TAKE BACK RETURN|RAIL|unusual pains by the furiously| +6220|542829|5340|2|16|29948.80|0.03|0.00|A|F|1994-01-22|1993-11-15|1994-01-24|NONE|FOB|eposits nag express pinto beans. final| +6220|310798|23305|3|43|77777.54|0.07|0.05|R|F|1994-02-04|1993-12-06|1994-02-14|COLLECT COD|SHIP|t packages are fu| +6220|574993|37505|4|21|43427.37|0.02|0.04|A|F|1994-01-13|1993-12-06|1994-01-27|DELIVER IN PERSON|TRUCK|unusual instructions| +6220|907018|7019|5|31|31774.07|0.08|0.01|R|F|1993-11-29|1993-12-03|1993-12-07|DELIVER IN PERSON|RAIL|blithe excuses. slyly final waters a| +6221|187796|37797|1|36|67816.44|0.08|0.04|A|F|1994-07-17|1994-06-18|1994-08-11|TAKE BACK RETURN|SHIP|y pending accounts. iro| +6221|270577|33083|2|38|58807.28|0.04|0.02|R|F|1994-06-26|1994-07-31|1994-07-22|TAKE BACK RETURN|TRUCK|ag blithely. slyly unu| +6221|584793|22327|3|6|11266.62|0.08|0.08|A|F|1994-05-22|1994-06-14|1994-05-23|COLLECT COD|MAIL| quickly fluffily permanent packages. ca| +6221|601235|38772|4|21|23860.20|0.05|0.04|A|F|1994-08-03|1994-06-16|1994-08-07|DELIVER IN PERSON|REG AIR|thely regular platelets mold. carefully| +6222|696595|21622|1|45|71620.20|0.00|0.04|N|O|1995-11-03|1995-12-16|1995-11-06|DELIVER IN PERSON|REG AIR|hrash across the the| +6222|660206|35233|2|6|6997.02|0.09|0.08|N|O|1995-10-07|1995-11-18|1995-10-19|NONE|FOB|tructions.| +6222|76634|1637|3|48|77310.24|0.06|0.03|N|O|1996-01-10|1995-11-06|1996-01-11|COLLECT COD|SHIP| doze carefully blithely express id| +6223|124651|12158|1|40|67026.00|0.01|0.08|N|O|1995-11-10|1995-10-06|1995-11-24|TAKE BACK RETURN|RAIL|ding foxes haggle. fluffily ironic depende| +6223|999480|49481|2|12|18953.28|0.03|0.02|N|O|1995-11-07|1995-09-24|1995-11-12|TAKE BACK RETURN|MAIL|even packages after the ironic | +6248|12972|12973|1|45|84823.65|0.01|0.01|A|F|1993-09-12|1993-09-07|1993-10-05|DELIVER IN PERSON|FOB|daringly across the regular depo| +6248|10505|23006|2|40|56620.00|0.06|0.03|A|F|1993-09-13|1993-09-17|1993-09-19|TAKE BACK RETURN|AIR|ully regular| +6249|795497|8013|1|50|79623.00|0.05|0.00|R|F|1994-06-12|1994-05-06|1994-06-27|TAKE BACK RETURN|MAIL|kly final package| +6249|914560|14561|2|5|7872.60|0.10|0.00|A|F|1994-07-16|1994-05-12|1994-08-11|TAKE BACK RETURN|AIR|ly even packages sleep. bold ideas alongsid| +6249|996270|8790|3|12|16394.76|0.07|0.00|A|F|1994-06-19|1994-05-13|1994-07-01|DELIVER IN PERSON|SHIP|ounts. carefully silent acc| +6250|11638|49139|1|13|20145.19|0.06|0.07|N|O|1998-05-17|1998-05-16|1998-06-14|DELIVER IN PERSON|FOB|uriously even deposits. caref| +6250|585406|22940|2|15|22370.70|0.04|0.05|N|O|1998-07-01|1998-06-19|1998-07-19|NONE|AIR|ffily final packages sleep by the per| +6250|907624|45179|3|42|68526.36|0.04|0.07|N|O|1998-06-19|1998-06-18|1998-07-08|TAKE BACK RETURN|SHIP|y carefully final instruc| +6250|429872|4889|4|46|82885.10|0.02|0.07|N|O|1998-07-01|1998-06-26|1998-07-15|NONE|SHIP|unts affix quickly always bold | +6250|851392|1393|5|16|21493.60|0.02|0.00|N|O|1998-07-23|1998-06-29|1998-08-11|DELIVER IN PERSON|REG AIR|y unusual foxes. slyly final| +6250|341954|41955|6|47|93809.18|0.09|0.00|N|O|1998-04-26|1998-06-11|1998-05-25|DELIVER IN PERSON|AIR|ites integrate fur| +6251|633498|46011|1|29|41512.34|0.00|0.06|R|F|1993-12-16|1993-12-14|1993-12-23|COLLECT COD|TRUCK|d accounts cajole slyly silent foxes-- bold| +6251|190834|40835|2|38|73143.54|0.02|0.07|A|F|1994-02-05|1993-12-12|1994-03-02|DELIVER IN PERSON|MAIL|riously bold instru| +6252|644468|32005|1|29|40960.47|0.05|0.00|N|O|1997-11-10|1997-11-26|1997-11-28|COLLECT COD|FOB|the bold accounts: fluffily final foxes caj| +6252|572510|47533|2|18|28484.82|0.06|0.04|N|O|1998-01-10|1997-11-24|1998-01-20|NONE|FOB|nal accounts. furiously iron| +6253|216249|28754|1|38|44278.74|0.00|0.04|N|O|1997-05-07|1997-04-12|1997-05-18|TAKE BACK RETURN|MAIL| final courts | +6253|482017|19545|2|40|39959.60|0.06|0.07|N|O|1997-03-09|1997-04-02|1997-03-10|TAKE BACK RETURN|RAIL|s! slyly pending reque| +6253|254749|17255|3|15|25555.95|0.04|0.06|N|O|1997-05-10|1997-03-27|1997-05-12|DELIVER IN PERSON|MAIL|counts breach fluffily carefu| +6253|560741|10742|4|38|68465.36|0.10|0.03|N|O|1997-05-02|1997-04-01|1997-05-24|DELIVER IN PERSON|RAIL|deposits; quick| +6253|370437|7959|5|6|9044.52|0.08|0.06|N|O|1997-05-23|1997-03-07|1997-06-22|COLLECT COD|TRUCK|nal packages are care| +6253|920496|20497|6|22|33361.90|0.09|0.07|N|O|1997-04-13|1997-03-05|1997-04-30|TAKE BACK RETURN|MAIL|, final excuses boost carefully acros| +6253|764125|14126|7|47|55887.23|0.02|0.04|N|O|1997-04-05|1997-04-10|1997-05-03|COLLECT COD|REG AIR|nic foxes are quickly acc| +6254|639901|39902|1|9|16567.83|0.05|0.05|R|F|1995-02-10|1995-04-09|1995-02-15|DELIVER IN PERSON|TRUCK| bold, regular the| +6254|799342|36888|2|32|46121.92|0.10|0.02|A|F|1995-02-01|1995-03-03|1995-02-24|NONE|REG AIR| even requests| +6254|530238|30239|3|8|10145.68|0.10|0.07|A|F|1995-03-12|1995-04-03|1995-03-16|DELIVER IN PERSON|FOB|nal accounts wake flu| +6254|705848|30877|4|29|53760.49|0.06|0.07|R|F|1995-02-19|1995-04-03|1995-03-07|NONE|TRUCK| fluffily special requ| +6255|654217|29244|1|16|18738.88|0.01|0.06|R|F|1993-03-23|1993-01-31|1993-04-10|COLLECT COD|MAIL|es use carefully final deposits. unus| +6255|419797|19798|2|48|82404.96|0.07|0.07|R|F|1993-01-13|1993-03-08|1993-01-30|DELIVER IN PERSON|REG AIR|lyly stealthy accounts. ev| +6280|758504|21020|1|27|42186.69|0.06|0.06|N|O|1998-05-14|1998-04-15|1998-05-15|COLLECT COD|MAIL|ding to the ideas? flu| +6280|163829|38836|2|32|60570.24|0.07|0.00|N|O|1998-06-16|1998-04-10|1998-07-10|DELIVER IN PERSON|MAIL| unusual ins| +6280|469007|19008|3|14|13663.72|0.04|0.06|N|O|1998-04-03|1998-04-04|1998-04-12|COLLECT COD|RAIL| even requests. fluffily even theo| +6280|594124|19147|4|28|34106.80|0.07|0.01|N|O|1998-02-22|1998-03-18|1998-03-16|COLLECT COD|REG AIR|lithely ruthless requests mold | +6280|427783|27784|5|14|23950.64|0.00|0.02|N|O|1998-04-13|1998-04-05|1998-05-01|COLLECT COD|FOB|ays. slyly regular accounts ought to use s| +6280|742237|17266|6|13|16629.60|0.05|0.06|N|O|1998-04-09|1998-04-05|1998-04-16|DELIVER IN PERSON|TRUCK|thely unusual | +6280|772042|9588|7|44|49016.44|0.09|0.02|N|O|1998-05-31|1998-03-18|1998-06-14|NONE|TRUCK|r foxes among the pinto beans use | +6281|695989|45990|1|37|73443.15|0.01|0.05|N|O|1995-06-22|1995-04-11|1995-06-29|NONE|AIR|ts wake quickly expres| +6281|472488|10016|2|2|2920.92|0.00|0.04|R|F|1995-04-16|1995-04-17|1995-05-16|DELIVER IN PERSON|AIR|the regular requests. re| +6281|101665|39172|3|21|34999.86|0.09|0.07|R|F|1995-04-20|1995-05-11|1995-04-30|TAKE BACK RETURN|REG AIR|es use. ironic foxes haggl| +6281|681378|18918|4|14|19030.76|0.08|0.07|A|F|1995-04-05|1995-04-11|1995-04-17|NONE|SHIP|ng, regular requests cajole | +6281|915739|40776|5|28|49131.32|0.08|0.06|R|F|1995-06-07|1995-04-16|1995-06-17|DELIVER IN PERSON|SHIP|ts? furiously ironic ideas | +6282|347966|22979|1|16|32223.20|0.09|0.00|A|F|1994-02-15|1994-04-02|1994-03-08|DELIVER IN PERSON|FOB|ites. busily pending gifts haggle s| +6282|256832|19338|2|45|80496.90|0.00|0.06|R|F|1994-03-17|1994-02-27|1994-03-25|TAKE BACK RETURN|SHIP|y around the special, ironic ac| +6282|572082|22083|3|23|26543.38|0.09|0.03|A|F|1994-03-08|1994-04-13|1994-03-24|TAKE BACK RETURN|MAIL|, ironic th| +6282|981073|18631|4|13|15002.39|0.09|0.07|R|F|1994-04-26|1994-03-11|1994-04-27|TAKE BACK RETURN|MAIL|lithely final | +6283|908972|34009|1|3|5942.79|0.07|0.06|R|F|1993-04-10|1993-04-27|1993-05-04|NONE|TRUCK| detect furiously. furiously fina| +6283|91320|28824|2|29|38028.28|0.02|0.08|R|F|1993-03-23|1993-04-28|1993-04-08|DELIVER IN PERSON|RAIL|packages cajole. even requ| +6283|805406|17923|3|10|13113.60|0.05|0.04|A|F|1993-05-25|1993-06-09|1993-06-08|NONE|TRUCK| furiously even theodolites wake around the| +6283|442503|5012|4|37|53482.76|0.04|0.07|R|F|1993-04-21|1993-05-16|1993-05-18|COLLECT COD|RAIL|ly special ac| +6283|139436|26943|5|14|20656.02|0.00|0.04|A|F|1993-05-12|1993-05-24|1993-05-16|DELIVER IN PERSON|RAIL|arefully after the regular foxes. slyly i| +6283|488606|13625|6|21|33486.18|0.07|0.01|A|F|1993-03-16|1993-06-01|1993-04-09|DELIVER IN PERSON|SHIP|courts. notornis might nag evenly. caref| +6283|988827|1347|7|5|9578.90|0.01|0.06|A|F|1993-04-08|1993-05-24|1993-04-14|COLLECT COD|AIR| x-ray. ironic theodolites cajole. account| +6284|205284|42797|1|9|10703.43|0.07|0.02|R|F|1994-10-18|1994-11-20|1994-11-01|TAKE BACK RETURN|RAIL|excuses. final requests snooze pending pi| +6284|199744|24751|2|29|53468.46|0.10|0.05|A|F|1994-12-06|1994-11-24|1994-12-16|NONE|FOB|ackages. furiously ironi| +6284|87660|12663|3|7|11533.62|0.05|0.07|A|F|1994-11-06|1994-10-10|1994-11-12|DELIVER IN PERSON|FOB|eans above the fluffil| +6284|294581|7087|4|39|61447.23|0.00|0.05|R|F|1994-09-17|1994-10-20|1994-09-18|NONE|AIR|ites wake furiously.| +6285|581791|31792|1|38|71165.26|0.04|0.07|R|F|1994-03-22|1994-05-05|1994-03-25|COLLECT COD|RAIL|r requests doubt after the a| +6285|150604|13108|2|30|49638.00|0.08|0.05|R|F|1994-06-10|1994-03-20|1994-06-24|COLLECT COD|AIR|fluffily against the sometimes silent| +6285|190595|15602|3|16|26969.44|0.04|0.01|A|F|1994-05-31|1994-05-11|1994-06-07|NONE|TRUCK|unusual theod| +6285|329370|16889|4|41|57373.76|0.05|0.07|R|F|1994-03-31|1994-04-01|1994-04-02|NONE|AIR|s. regular instruction| +6285|705767|5768|5|40|70909.20|0.02|0.05|R|F|1994-05-02|1994-05-06|1994-05-16|NONE|TRUCK|posits wake furiously against th| +6285|818401|5950|6|32|42219.52|0.05|0.00|A|F|1994-05-13|1994-04-05|1994-06-02|NONE|RAIL| final pin| +6286|330941|30942|1|19|37466.67|0.01|0.00|N|O|1997-12-26|1997-11-25|1997-12-29|COLLECT COD|AIR|pecial, final | +6286|118699|6206|2|1|1717.69|0.05|0.05|N|O|1997-12-17|1997-12-20|1998-01-14|NONE|MAIL|ickly blithely spec| +6286|964245|26765|3|28|36657.60|0.03|0.07|N|O|1998-01-25|1997-12-31|1998-02-15|DELIVER IN PERSON|MAIL|ual foxes. blithely e| +6286|51893|39397|4|18|33208.02|0.00|0.07|N|O|1998-01-04|1997-11-30|1998-01-25|COLLECT COD|AIR|symptotes. accounts cajole slyly final | +6286|149765|37272|5|38|68960.88|0.01|0.07|N|O|1997-11-29|1997-11-16|1997-12-22|NONE|REG AIR| cajole quickly pending pac| +6287|233549|33550|1|8|11860.24|0.07|0.00|N|O|1995-08-30|1995-09-04|1995-09-28|COLLECT COD|SHIP|inst the deposits. quickly final| +6287|243594|31107|2|3|4612.74|0.09|0.08|N|O|1995-08-19|1995-08-23|1995-09-16|NONE|TRUCK| pinto beans poach. furiously regular de| +6312|16442|28943|1|50|67922.00|0.02|0.05|N|O|1998-08-10|1998-06-15|1998-08-24|TAKE BACK RETURN|TRUCK|s. final, regular requests among the | +6312|336287|23806|2|28|37051.56|0.10|0.00|N|O|1998-06-23|1998-07-30|1998-06-27|TAKE BACK RETURN|MAIL|eodolites-- slyly special instructions wa| +6312|971977|21978|3|13|26636.09|0.01|0.01|N|O|1998-08-06|1998-07-20|1998-08-15|TAKE BACK RETURN|AIR|es. carefully regular instruct| +6312|795|13296|4|33|55961.07|0.10|0.07|N|O|1998-07-01|1998-06-22|1998-07-13|NONE|SHIP|xpress packages; pendin| +6312|347952|10459|5|31|61998.14|0.08|0.06|N|O|1998-05-16|1998-06-30|1998-06-09|COLLECT COD|AIR|ickly special theodolites. qu| +6313|386497|36498|1|32|50671.36|0.02|0.01|A|F|1992-07-14|1992-08-08|1992-07-20|COLLECT COD|FOB| across the regu| +6313|851079|13597|2|19|19570.57|0.05|0.02|R|F|1992-06-22|1992-07-30|1992-07-06|COLLECT COD|TRUCK|s affix furiously| +6314|628180|15717|1|16|17730.40|0.01|0.02|A|F|1993-10-04|1993-11-15|1993-10-08|NONE|RAIL| along the quickly unusual depo| +6314|816726|16727|2|27|44352.36|0.01|0.01|A|F|1993-09-08|1993-11-24|1993-09-11|COLLECT COD|SHIP|g requests use slyly fl| +6314|707449|44992|3|39|56799.99|0.03|0.07|R|F|1993-10-23|1993-11-08|1993-11-09|COLLECT COD|TRUCK|carefully. blithely pen| +6315|333565|21084|1|25|39963.75|0.02|0.04|N|O|1995-10-21|1995-11-23|1995-11-08|DELIVER IN PERSON|AIR|y. silent instruction| +6315|226519|1528|2|31|44810.50|0.04|0.05|N|O|1995-11-22|1995-12-19|1995-12-12|COLLECT COD|MAIL|alongside of the furi| +6316|93432|30936|1|44|62718.92|0.05|0.04|N|O|1996-12-14|1996-11-20|1996-12-17|NONE|AIR|uests. bravely silent dependencies along| +6316|299461|11967|2|28|40892.60|0.05|0.07|N|O|1996-10-27|1996-11-15|1996-11-13|COLLECT COD|SHIP|ecial theodolites. furiously ironic ac| +6316|40836|15837|3|38|67519.54|0.04|0.02|N|O|1996-09-23|1996-11-16|1996-09-26|NONE|RAIL|lly ironic as| +6316|329391|4404|4|10|14203.80|0.04|0.00|N|O|1996-11-15|1996-10-29|1996-11-27|COLLECT COD|FOB|ly deposits. eve| +6316|63103|38106|5|8|8528.80|0.05|0.01|N|O|1996-10-04|1996-11-07|1996-10-07|DELIVER IN PERSON|MAIL|efully regular packages wake car| +6316|570732|8266|6|18|32448.78|0.10|0.08|N|O|1996-09-17|1996-11-04|1996-10-15|COLLECT COD|MAIL| blithely above the carefully pe| +6317|378664|16186|1|1|1742.65|0.02|0.06|R|F|1992-09-01|1992-09-06|1992-09-20|NONE|FOB|en pinto beans sleep above the fluf| +6317|205225|42738|2|38|42947.98|0.02|0.04|R|F|1992-08-05|1992-10-14|1992-08-10|NONE|FOB|tain express accounts. | +6317|202774|27783|3|4|6707.04|0.03|0.00|A|F|1992-09-15|1992-09-06|1992-10-09|DELIVER IN PERSON|AIR|. blithely regular theod| +6317|14980|14981|4|12|22739.76|0.08|0.04|R|F|1992-10-31|1992-10-13|1992-11-02|NONE|SHIP|nal excuses. s| +6317|755008|17524|5|47|49959.59|0.06|0.02|A|F|1992-08-06|1992-09-13|1992-08-17|NONE|AIR|ages sleep blithely theodoli| +6317|403918|41443|6|3|5465.67|0.02|0.07|R|F|1992-10-21|1992-08-23|1992-11-03|COLLECT COD|FOB|cial deposits are. speci| +6318|171403|21404|1|40|58976.00|0.06|0.08|A|F|1993-02-01|1993-03-16|1993-02-15|COLLECT COD|FOB|cies wake | +6318|756310|43856|2|20|27325.60|0.04|0.00|A|F|1992-12-30|1993-02-20|1993-01-22|NONE|RAIL|e accounts. busy pains| +6318|289781|14792|3|17|30103.09|0.04|0.02|A|F|1993-02-19|1993-03-01|1993-03-10|TAKE BACK RETURN|AIR|ve, silent requests boost sly| +6318|338642|38643|4|10|16806.30|0.08|0.02|A|F|1992-12-23|1993-03-06|1993-01-07|DELIVER IN PERSON|AIR|uests sublate carefully furiously spec| +6318|540127|40128|5|49|57187.90|0.08|0.06|R|F|1993-02-02|1993-02-24|1993-02-14|NONE|MAIL|fully ironic | +6318|910124|47679|6|45|51033.60|0.03|0.04|R|F|1993-02-20|1993-03-17|1993-03-05|DELIVER IN PERSON|SHIP|inal requests after the| +6318|444428|31953|7|45|61758.00|0.00|0.05|A|F|1993-01-17|1993-02-06|1993-02-03|TAKE BACK RETURN|FOB|ly. quickly bold | +6319|500228|25249|1|30|36846.00|0.08|0.02|N|O|1995-06-20|1995-05-15|1995-07-05|TAKE BACK RETURN|MAIL|etimes along the carefully even courts; bli| +6344|674384|49411|1|26|35317.10|0.09|0.06|A|F|1992-09-20|1992-12-01|1992-10-05|COLLECT COD|TRUCK|ironic platele| +6344|365206|2728|2|45|57203.55|0.05|0.07|A|F|1992-11-07|1992-11-06|1992-11-09|COLLECT COD|REG AIR|x against the carefully final pinto be| +6344|14857|14858|3|36|63786.60|0.02|0.05|R|F|1993-01-02|1992-12-07|1993-01-22|NONE|MAIL| evenly regular packages. never| +6344|695381|32921|4|43|59183.05|0.04|0.00|R|F|1992-11-25|1992-11-24|1992-12-04|NONE|REG AIR|breach after the bold, express asympt| +6344|261902|24408|5|36|67100.04|0.01|0.07|A|F|1992-10-02|1992-12-15|1992-10-17|COLLECT COD|TRUCK|oss the furiously regular ideas. furio| +6345|66276|3780|1|22|27329.94|0.02|0.08|N|O|1996-06-22|1996-04-20|1996-07-20|COLLECT COD|RAIL|y unusual pearls. slyly pending foxes ar| +6346|118514|6021|1|10|15325.10|0.05|0.06|A|F|1994-04-29|1994-04-16|1994-05-22|DELIVER IN PERSON|RAIL| affix carefully regular packages.| +6346|859547|34582|2|19|28623.50|0.04|0.03|A|F|1994-04-26|1994-04-09|1994-05-10|TAKE BACK RETURN|TRUCK|ng the regular, unusual foxes n| +6346|405950|30967|3|40|74237.20|0.03|0.02|A|F|1994-03-10|1994-04-04|1994-03-21|NONE|AIR|g the bold, iro| +6346|785266|10297|4|23|31078.29|0.04|0.04|R|F|1994-02-21|1994-04-10|1994-03-15|COLLECT COD|TRUCK|lar excuses. final accounts may are e| +6346|957237|32276|5|22|28472.18|0.02|0.03|R|F|1994-05-20|1994-04-09|1994-06-01|TAKE BACK RETURN|TRUCK| quickly regular deposits gro| +6347|785475|47991|1|31|48373.64|0.07|0.08|N|O|1998-06-09|1998-05-23|1998-07-02|DELIVER IN PERSON|AIR|posits. fluffily regular dugouts gro| +6347|477421|27422|2|20|27968.00|0.06|0.07|N|O|1998-06-28|1998-06-01|1998-07-04|NONE|SHIP|t slyly about the excuse| +6347|998913|36471|3|9|18106.83|0.00|0.01|N|O|1998-03-07|1998-04-15|1998-03-25|COLLECT COD|REG AIR|ly even depos| +6348|683757|8784|1|39|67888.08|0.00|0.03|A|F|1993-07-05|1993-07-16|1993-08-02|COLLECT COD|MAIL|ke furiousl| +6349|417470|29979|1|32|44398.40|0.06|0.06|N|O|1995-07-14|1995-05-27|1995-08-06|COLLECT COD|RAIL|nal dependencies are. slyly bold deposits h| +6349|407200|44725|2|33|36536.94|0.05|0.02|N|F|1995-06-14|1995-06-13|1995-06-18|DELIVER IN PERSON|SHIP|fily regular packa| +6349|796109|46110|3|26|31331.82|0.06|0.06|A|F|1995-04-22|1995-05-21|1995-05-01|COLLECT COD|FOB|nal accounts are| +6349|197118|47119|4|11|13366.21|0.06|0.01|R|F|1995-05-29|1995-06-12|1995-06-13|NONE|FOB| haggle slyly| +6350|126139|13646|1|19|22137.47|0.07|0.01|N|O|1996-04-08|1996-04-23|1996-04-22|TAKE BACK RETURN|TRUCK|efully. slyly pending dependencies cajo| +6350|10584|48085|2|37|55299.46|0.02|0.05|N|O|1996-05-19|1996-03-20|1996-06-14|COLLECT COD|FOB|lly special t| +6350|874982|37500|3|30|58708.20|0.03|0.03|N|O|1996-05-08|1996-03-24|1996-05-16|DELIVER IN PERSON|RAIL|final pint| +6350|810693|10694|4|33|52920.45|0.01|0.06|N|O|1996-04-13|1996-03-20|1996-04-24|DELIVER IN PERSON|MAIL|s are pendi| +6350|300986|38505|5|30|59609.10|0.10|0.03|N|O|1996-03-08|1996-05-05|1996-03-27|DELIVER IN PERSON|SHIP|ages wake carefully final sheaves. car| +6350|670810|8350|6|43|76573.54|0.10|0.00|N|O|1996-05-02|1996-04-12|1996-06-01|COLLECT COD|FOB|eas. slyly special d| +6351|751150|13666|1|28|33631.36|0.00|0.06|A|F|1993-01-10|1992-11-28|1993-01-30|NONE|FOB|regular foxes. slyly | +6351|571708|21709|2|2|3559.36|0.10|0.08|R|F|1993-01-30|1992-11-21|1993-02-02|NONE|TRUCK|rnes. special, busy deposits are furiously| +6351|682333|32334|3|39|51296.70|0.05|0.08|R|F|1993-01-07|1992-12-30|1993-01-30|DELIVER IN PERSON|RAIL|ggle stealthily. slyly regular th| +6376|548571|11082|1|10|16195.50|0.04|0.06|N|O|1996-06-08|1996-06-07|1996-06-17|DELIVER IN PERSON|RAIL|pecial theodolites are among the some| +6376|827830|15379|2|16|28124.64|0.06|0.00|N|O|1996-06-07|1996-07-18|1996-06-27|COLLECT COD|FOB|ously ironic ideas sleep carefu| +6376|329720|42227|3|36|62989.56|0.00|0.05|N|O|1996-06-04|1996-07-12|1996-06-06|DELIVER IN PERSON|FOB|cajole quickly. furiously | +6376|599054|11566|4|28|32284.84|0.04|0.05|N|O|1996-04-30|1996-06-26|1996-05-01|NONE|REG AIR|ix above the enticingly p| +6376|299024|36540|5|31|31713.31|0.06|0.08|N|O|1996-07-07|1996-06-29|1996-07-08|DELIVER IN PERSON|SHIP|t slyly express, silent| +6376|681842|19382|6|33|60185.73|0.08|0.06|N|O|1996-08-13|1996-05-22|1996-08-26|DELIVER IN PERSON|FOB|ely. slyly ironic f| +6376|714880|27395|7|24|45476.40|0.02|0.01|N|O|1996-05-25|1996-07-11|1996-06-18|COLLECT COD|FOB|ss deposits. quickly regular| +6377|979539|17097|1|27|43699.23|0.08|0.08|R|F|1994-12-15|1995-01-02|1994-12-25|DELIVER IN PERSON|MAIL|silent packages. | +6377|107386|7387|2|43|59915.34|0.10|0.08|A|F|1995-01-30|1994-12-29|1995-01-31|COLLECT COD|FOB|ly ironic theodolites. ironic | +6378|849427|11944|1|26|35785.88|0.00|0.08|R|F|1994-08-03|1994-08-12|1994-08-12|COLLECT COD|REG AIR|es cajole | +6378|303492|3493|2|24|35891.52|0.08|0.01|R|F|1994-10-21|1994-08-26|1994-11-15|DELIVER IN PERSON|SHIP|thely regular ideas sleep care| +6379|854968|17486|1|38|73070.96|0.10|0.05|A|F|1993-05-25|1993-05-03|1993-06-10|TAKE BACK RETURN|RAIL|ave to sleep. carefully regular courts u| +6379|444197|19214|2|21|23964.57|0.10|0.03|A|F|1993-05-19|1993-05-05|1993-06-06|TAKE BACK RETURN|AIR|accounts. fluffily ironic p| +6379|609505|9506|3|25|35361.75|0.06|0.00|R|F|1993-02-23|1993-05-09|1993-03-11|COLLECT COD|FOB| regular ideas. slyly even acco| +6379|947450|22487|4|35|52409.35|0.07|0.01|A|F|1993-04-18|1993-04-02|1993-05-16|NONE|RAIL|re carefully after the quick| +6379|781034|6065|5|31|34565.00|0.09|0.04|A|F|1993-05-31|1993-04-21|1993-06-08|NONE|AIR|ess requests hag| +6379|835333|22882|6|42|53268.18|0.03|0.08|A|F|1993-05-06|1993-03-19|1993-05-27|TAKE BACK RETURN|TRUCK|ggle. even, iron| +6380|328317|3330|1|13|17488.90|0.03|0.02|A|F|1993-01-30|1992-11-24|1993-02-20|TAKE BACK RETURN|FOB|es sleep fluffily pending courts-- final t| +6380|12475|37476|2|42|58273.74|0.05|0.08|R|F|1992-11-16|1992-11-14|1992-11-20|DELIVER IN PERSON|SHIP|t packages against the | +6380|657687|32714|3|38|62496.70|0.07|0.00|A|F|1992-11-02|1992-11-28|1992-11-16|NONE|TRUCK|ins. enticing, express ideas use b| +6380|742973|18002|4|50|100797.00|0.09|0.01|A|F|1992-12-10|1992-11-19|1992-12-22|TAKE BACK RETURN|SHIP|tainments wake furiously. even, expres| +6381|970767|45806|1|21|38592.12|0.02|0.00|A|F|1994-11-11|1994-09-30|1994-11-27|TAKE BACK RETURN|MAIL|tructions: stealthily ironic asymptotes | +6381|676129|1156|2|41|45308.69|0.08|0.05|R|F|1994-10-12|1994-10-28|1994-10-16|DELIVER IN PERSON|RAIL|fully final deposits| +6382|706931|19446|1|35|67826.50|0.00|0.02|N|O|1998-06-06|1998-08-21|1998-07-06|TAKE BACK RETURN|RAIL|bold packages around the carefully i| +6382|373523|11045|2|11|17561.61|0.02|0.00|N|O|1998-08-12|1998-07-12|1998-08-31|COLLECT COD|SHIP|ously even deposits. fluffily pend| +6382|800018|19|3|49|54781.02|0.03|0.00|N|O|1998-08-06|1998-08-05|1998-08-17|DELIVER IN PERSON|FOB|rets cajole. d| +6382|901084|13603|4|15|16275.60|0.02|0.05|N|O|1998-07-29|1998-08-06|1998-07-30|TAKE BACK RETURN|SHIP|sly regular accounts. accounts| +6382|511325|11326|5|43|57460.90|0.08|0.08|N|O|1998-09-01|1998-07-09|1998-09-06|COLLECT COD|MAIL| pending ex| +6382|838987|38988|6|19|36592.86|0.06|0.00|N|O|1998-08-19|1998-08-19|1998-09-15|NONE|AIR| carefully regular theodolites ar| +6383|768731|43762|1|20|35994.00|0.09|0.02|N|O|1997-04-01|1997-02-27|1997-04-12|TAKE BACK RETURN|RAIL| deposits cajole according to | +6383|47482|47483|2|13|18583.24|0.02|0.06|N|O|1997-01-19|1997-02-01|1997-02-10|NONE|TRUCK|usly regular id| +6383|25204|25205|3|28|31617.60|0.09|0.00|N|O|1997-02-21|1997-01-22|1997-03-11|TAKE BACK RETURN|TRUCK|special the| +6383|597204|47205|4|44|57251.92|0.07|0.05|N|O|1997-03-13|1997-01-28|1997-03-27|TAKE BACK RETURN|SHIP|arthogs wake furiously. carefull| +6383|204452|4453|5|15|20346.60|0.09|0.04|N|O|1997-02-27|1997-02-26|1997-03-18|TAKE BACK RETURN|TRUCK|ily. final, express fo| +6408|155601|30608|1|45|74547.00|0.02|0.08|N|O|1998-05-12|1998-06-27|1998-05-31|NONE|AIR|riously even accou| +6408|169252|6762|2|47|62098.75|0.00|0.01|N|O|1998-05-09|1998-06-05|1998-05-11|DELIVER IN PERSON|SHIP|e. regular courts along th| +6408|602921|2922|3|16|29182.24|0.09|0.03|N|O|1998-08-21|1998-06-12|1998-08-29|NONE|FOB|s nod slyly betwee| +6408|290485|40486|4|36|53116.92|0.02|0.04|N|O|1998-08-20|1998-07-02|1998-09-06|DELIVER IN PERSON|RAIL|instructions cajole | +6409|153451|40961|1|36|54160.20|0.09|0.01|N|O|1997-07-29|1997-06-25|1997-08-25|DELIVER IN PERSON|REG AIR|blithely above the | +6409|47615|47616|2|7|10938.27|0.08|0.00|N|O|1997-07-31|1997-07-14|1997-08-07|DELIVER IN PERSON|REG AIR|silent requests agai| +6409|252432|39948|3|15|20766.30|0.02|0.02|N|O|1997-06-10|1997-06-12|1997-07-03|NONE|AIR|lithely unusual ideas.| +6409|620954|45979|4|46|86246.32|0.02|0.01|N|O|1997-04-28|1997-06-26|1997-05-08|TAKE BACK RETURN|REG AIR| the silent instructions. slyly regular req| +6409|367042|42057|5|23|25507.69|0.00|0.03|N|O|1997-06-03|1997-05-18|1997-06-22|TAKE BACK RETURN|REG AIR|ons integrate quickly amo| +6409|864127|1679|6|24|26185.92|0.01|0.02|N|O|1997-07-15|1997-06-30|1997-07-29|TAKE BACK RETURN|FOB|ges haggle idly among the pending, p| +6409|378745|28746|7|29|52888.17|0.05|0.03|N|O|1997-07-31|1997-06-25|1997-08-06|DELIVER IN PERSON|AIR|fluffily final theod| +6410|560846|10847|1|27|51484.14|0.00|0.02|R|F|1993-09-05|1993-08-07|1993-10-05|COLLECT COD|SHIP|arefully special requests. furious| +6410|126134|13641|2|16|18562.08|0.07|0.06|A|F|1993-08-31|1993-08-19|1993-09-30|TAKE BACK RETURN|FOB|. furiously even account| +6410|924048|49085|3|1|1072.00|0.08|0.03|R|F|1993-09-18|1993-09-24|1993-09-24|NONE|REG AIR| the slyly ir| +6410|461658|49186|4|14|22674.82|0.03|0.08|R|F|1993-09-29|1993-08-19|1993-10-06|COLLECT COD|FOB| final platelets. careful| +6410|82645|20149|5|34|55339.76|0.09|0.01|R|F|1993-09-28|1993-09-14|1993-10-28|NONE|TRUCK|nag after the slyl| +6410|6478|18979|6|15|20767.05|0.02|0.08|R|F|1993-09-02|1993-09-16|1993-09-16|TAKE BACK RETURN|MAIL|slowly ironic instructions haggle final| +6411|271648|46659|1|34|55067.42|0.04|0.05|R|F|1993-04-06|1993-05-20|1993-04-21|NONE|SHIP|e the regula| +6411|578829|41341|2|26|49602.80|0.10|0.03|A|F|1993-07-21|1993-05-06|1993-07-31|DELIVER IN PERSON|AIR| the furious| +6411|364533|27041|3|33|52718.16|0.07|0.04|R|F|1993-07-23|1993-06-08|1993-08-17|TAKE BACK RETURN|FOB|ermanently against the blithely final| +6412|524799|49820|1|11|20061.47|0.00|0.01|A|F|1992-03-25|1992-04-26|1992-04-08|DELIVER IN PERSON|FOB|ffily furi| +6412|284745|34746|2|35|60540.55|0.00|0.02|R|F|1992-04-20|1992-03-23|1992-05-19|DELIVER IN PERSON|FOB|posits. slyly| +6412|702531|2532|3|38|58273.00|0.04|0.00|R|F|1992-04-01|1992-04-12|1992-04-15|DELIVER IN PERSON|REG AIR|are special accounts. slyly | +6413|640260|40261|1|31|37207.13|0.07|0.00|R|F|1994-11-20|1995-01-15|1994-12-09|NONE|REG AIR|equests. fluffily pending depen| +6413|837120|12153|2|10|10570.80|0.07|0.00|R|F|1994-12-29|1994-11-29|1995-01-19|DELIVER IN PERSON|AIR|sly along the furiously regu| +6413|461506|49034|3|28|41089.44|0.01|0.02|R|F|1995-01-16|1994-11-20|1995-01-29|NONE|RAIL|quests detect blithely after | +6413|521340|33851|4|28|38116.96|0.08|0.07|R|F|1994-12-20|1994-12-22|1995-01-13|DELIVER IN PERSON|FOB|tly regular ideas are to the slyly ironic | +6413|160703|35710|5|6|10582.20|0.06|0.04|A|F|1994-12-05|1994-12-25|1994-12-17|NONE|TRUCK|equests sleep afte| +6413|932093|7130|6|45|50627.25|0.03|0.08|R|F|1994-11-10|1995-01-04|1994-11-15|COLLECT COD|SHIP|leep. dependencies grow ruthlessly | +6413|677574|27575|7|23|35685.42|0.03|0.06|A|F|1994-11-02|1994-12-04|1994-11-22|COLLECT COD|SHIP|ideas detect quickly s| +6414|976110|1149|1|6|7116.42|0.08|0.05|R|F|1995-04-03|1995-01-23|1995-04-25|TAKE BACK RETURN|SHIP|he slyly unusual| +6415|966324|28844|1|15|20854.20|0.05|0.08|N|O|1996-11-22|1996-12-03|1996-11-24|TAKE BACK RETURN|TRUCK|s cajole furiou| +6415|997570|47571|2|6|10005.18|0.07|0.06|N|O|1996-09-17|1996-11-05|1996-10-10|COLLECT COD|MAIL|ins use blithely idly pe| +6415|158359|45869|3|20|28347.00|0.10|0.06|N|O|1996-12-30|1996-11-20|1997-01-21|DELIVER IN PERSON|SHIP|express dol| +6415|524860|24861|4|1|1884.84|0.10|0.04|N|O|1996-12-20|1996-10-09|1997-01-10|DELIVER IN PERSON|TRUCK| slyly final | +6415|316707|41720|5|27|46539.63|0.10|0.02|N|O|1996-12-19|1996-11-17|1996-12-31|NONE|AIR|ven requests us| +6415|880662|5697|6|36|59134.32|0.08|0.03|N|O|1996-12-23|1996-10-31|1997-01-07|DELIVER IN PERSON|REG AIR| beans are| +6440|930760|18315|1|34|60884.48|0.06|0.03|A|F|1995-02-17|1995-02-07|1995-03-04|DELIVER IN PERSON|REG AIR| the final| +6440|269802|44813|2|4|7087.16|0.07|0.06|A|F|1995-01-27|1995-02-17|1995-02-05|NONE|MAIL|eposits. slyly even requests| +6440|556424|6425|3|18|26647.20|0.00|0.04|R|F|1995-03-03|1995-03-02|1995-03-13|DELIVER IN PERSON|REG AIR|s. blithely ironic asymptotes| +6441|594135|31669|1|13|15978.43|0.00|0.07|N|O|1997-09-29|1997-10-07|1997-10-02|DELIVER IN PERSON|TRUCK|s affix slyly. blith| +6441|616665|16666|2|9|14234.67|0.05|0.02|N|O|1997-09-22|1997-11-16|1997-10-09|NONE|AIR| slowly. even, furious| +6441|275216|25217|3|29|34544.80|0.01|0.03|N|O|1997-10-24|1997-10-13|1997-11-01|DELIVER IN PERSON|MAIL|ate. dependencies haggle | +6441|550888|25911|4|38|73676.68|0.09|0.00|N|O|1997-12-12|1997-11-21|1997-12-14|DELIVER IN PERSON|SHIP| requests. final foxes wake quickly bli| +6441|758272|45818|5|1|1330.24|0.09|0.04|N|O|1997-11-04|1997-10-15|1997-11-17|TAKE BACK RETURN|RAIL|. carefully special Tiresi| +6442|56146|6147|1|49|54004.86|0.03|0.07|A|F|1992-06-22|1992-07-17|1992-07-12|TAKE BACK RETURN|RAIL|e the ironic instructions serv| +6442|636816|49329|2|23|40313.94|0.10|0.05|R|F|1992-07-07|1992-07-31|1992-07-26|TAKE BACK RETURN|SHIP|y final accounts nag quickl| +6442|950819|820|3|22|41134.94|0.07|0.04|R|F|1992-06-23|1992-08-27|1992-07-09|DELIVER IN PERSON|RAIL| regular excuses. ir| +6442|414458|39475|4|44|60386.92|0.02|0.06|A|F|1992-07-16|1992-07-24|1992-07-20|COLLECT COD|TRUCK|ideas boost. accounts believe furio| +6442|787104|12135|5|3|3573.21|0.06|0.08|A|F|1992-07-19|1992-08-17|1992-08-07|DELIVER IN PERSON|AIR|. courts cajole across the bli| +6443|344388|19401|1|5|7161.85|0.08|0.04|A|F|1995-05-21|1995-06-29|1995-06-15|COLLECT COD|REG AIR|osits. regular, unusual theo| +6443|128489|40992|2|26|39454.48|0.07|0.07|N|F|1995-06-17|1995-07-04|1995-06-18|DELIVER IN PERSON|MAIL| to the carefully ironic | +6443|500252|253|3|4|5008.92|0.05|0.07|N|O|1995-08-06|1995-07-01|1995-08-21|NONE|FOB|he ironic accounts. quickly regular req| +6443|723372|10915|4|32|44650.88|0.06|0.03|R|F|1995-04-29|1995-06-25|1995-05-23|COLLECT COD|REG AIR|unts after the special, final s| +6443|696998|34538|5|37|73813.52|0.00|0.02|N|O|1995-07-17|1995-06-11|1995-08-08|TAKE BACK RETURN|AIR|uriously pending theodolites agai| +6443|444635|32160|6|28|44229.08|0.01|0.07|N|O|1995-07-13|1995-07-16|1995-07-25|COLLECT COD|RAIL|thely final accounts; pac| +6444|49011|49012|1|20|19200.20|0.04|0.01|R|F|1992-07-01|1992-07-20|1992-07-03|NONE|SHIP|into beans boost | +6444|712076|24591|2|10|10880.40|0.09|0.03|R|F|1992-05-14|1992-07-12|1992-06-04|DELIVER IN PERSON|REG AIR|ages use slyly above the quickly regular | +6444|850904|38456|3|27|50081.22|0.10|0.03|R|F|1992-07-15|1992-07-22|1992-08-01|NONE|RAIL|ly final deposits about t| +6444|143191|30698|4|16|19747.04|0.07|0.02|A|F|1992-06-16|1992-07-11|1992-07-06|DELIVER IN PERSON|RAIL|ously against the even accounts. express i| +6445|974817|24818|1|12|22701.24|0.01|0.00|N|O|1998-06-25|1998-07-05|1998-07-23|COLLECT COD|REG AIR|epths around the even packag| +6445|738102|617|2|16|18241.12|0.02|0.05|N|O|1998-05-25|1998-07-24|1998-06-01|NONE|FOB|r dependencies. idly expre| +6445|269007|44018|3|16|15615.84|0.02|0.07|N|O|1998-08-21|1998-06-23|1998-08-23|TAKE BACK RETURN|SHIP|as haggle above the fluffily specia| +6445|189235|39236|4|13|17214.99|0.04|0.05|N|O|1998-07-29|1998-07-01|1998-08-03|COLLECT COD|TRUCK|nusual requests cajole. furiou| +6446|929572|4609|1|4|6406.12|0.01|0.04|R|F|1994-02-21|1993-12-18|1994-02-25|TAKE BACK RETURN|SHIP|aringly ironic de| +6447|920500|20501|1|40|60818.40|0.02|0.02|N|O|1997-09-30|1997-10-06|1997-10-29|COLLECT COD|AIR|nusual packages. pen| +6472|427557|15082|1|29|43051.37|0.10|0.05|A|F|1993-07-18|1993-07-31|1993-07-26|TAKE BACK RETURN|SHIP|ges sleep after the sly| +6472|941658|29213|2|26|44189.86|0.04|0.07|A|F|1993-09-19|1993-08-24|1993-10-03|TAKE BACK RETURN|RAIL|final packages.| +6472|443666|31191|3|24|38631.36|0.06|0.02|R|F|1993-06-11|1993-07-03|1993-07-07|COLLECT COD|SHIP|doze. pending | +6472|684267|9294|4|21|26275.83|0.01|0.03|R|F|1993-08-01|1993-08-07|1993-08-05|DELIVER IN PERSON|TRUCK|sts integrate | +6472|464625|39644|5|42|66763.20|0.07|0.01|R|F|1993-08-16|1993-08-11|1993-08-26|NONE|FOB|ong the bli| +6473|485570|10589|1|46|71555.30|0.08|0.08|R|F|1992-09-03|1992-09-02|1992-09-23|NONE|FOB|lithely ironic dep| +6473|958473|46031|2|43|65851.49|0.08|0.05|A|F|1992-08-19|1992-08-28|1992-09-12|COLLECT COD|TRUCK|al packages? bold excuses bo| +6473|49876|37377|3|33|60253.71|0.10|0.05|R|F|1992-07-23|1992-09-11|1992-08-02|TAKE BACK RETURN|REG AIR|sits sleep blithely according to | +6473|261382|11383|4|3|4030.11|0.08|0.04|R|F|1992-09-15|1992-07-17|1992-09-20|COLLECT COD|REG AIR|ns around the furiously r| +6473|45978|45979|5|8|15391.76|0.08|0.08|R|F|1992-07-05|1992-08-24|1992-07-17|DELIVER IN PERSON|MAIL|ically bold accounts cajole along| +6474|253651|16157|1|47|75418.08|0.07|0.08|N|O|1998-05-13|1998-04-01|1998-06-11|COLLECT COD|MAIL|arefully unu| +6474|104269|16772|2|50|63663.00|0.05|0.00|N|O|1998-03-28|1998-04-07|1998-04-14|COLLECT COD|RAIL|counts. slyly ironic a| +6474|433850|21375|3|31|55298.73|0.05|0.08|N|O|1998-01-28|1998-03-01|1998-02-25|NONE|REG AIR| slyly express theod| +6474|714272|26787|4|41|52735.84|0.08|0.06|N|O|1998-01-25|1998-04-05|1998-01-26|NONE|SHIP|arefully ironic packages sublate slyly in | +6475|940407|15444|1|28|40526.08|0.10|0.03|N|O|1995-08-20|1995-08-07|1995-08-24|TAKE BACK RETURN|TRUCK|ious deposits. thinly stealthy reque| +6475|418211|43228|2|13|14679.47|0.04|0.03|N|O|1995-09-12|1995-07-24|1995-09-23|COLLECT COD|AIR|ggle idly ideas. silently final sentiment| +6475|863336|38371|3|19|24686.51|0.00|0.01|N|O|1995-06-24|1995-07-04|1995-07-15|COLLECT COD|AIR|requests affix about the slowly| +6475|78206|15710|4|31|36710.20|0.08|0.05|N|F|1995-06-04|1995-08-09|1995-06-28|NONE|TRUCK|e of the special waters haggle furious| +6475|403710|16219|5|8|12909.52|0.05|0.03|N|O|1995-07-06|1995-08-02|1995-07-21|NONE|SHIP|. slyly blithe accounts sleep quickly| +6475|150119|12623|6|49|57286.39|0.02|0.06|N|F|1995-06-02|1995-07-02|1995-06-29|NONE|RAIL|; furiously bold dependencies nag bl| +6475|40050|40051|7|46|45542.30|0.06|0.08|N|O|1995-08-19|1995-08-05|1995-09-03|COLLECT COD|SHIP| are quickly carefully regula| +6476|114504|27007|1|32|48592.00|0.10|0.07|N|O|1995-09-02|1995-07-26|1995-09-08|TAKE BACK RETURN|MAIL|regular foxes. blithely final packages acc| +6476|455521|18031|2|16|23624.00|0.06|0.00|N|O|1995-09-04|1995-07-01|1995-09-19|NONE|AIR|al deposits doubt-- c| +6476|939363|39364|3|27|37862.64|0.07|0.08|N|O|1995-07-23|1995-07-04|1995-08-17|TAKE BACK RETURN|RAIL|pecial platelets are fluffily. carefu| +6476|862655|12656|4|46|74410.06|0.02|0.04|N|O|1995-08-29|1995-08-15|1995-09-10|TAKE BACK RETURN|SHIP|bold platelets. carefully regular pa| +6477|509630|34651|1|14|22954.54|0.02|0.08|A|F|1992-10-12|1992-07-26|1992-11-03|DELIVER IN PERSON|RAIL|along the express asymptotes wake aga| +6477|339381|14394|2|42|59655.54|0.05|0.07|A|F|1992-08-31|1992-09-14|1992-09-13|COLLECT COD|SHIP|osits affix blithely about the furiousl| +6478|940176|2695|1|46|55941.98|0.05|0.03|N|O|1998-01-12|1998-03-08|1998-01-17|NONE|SHIP|ounts dazzle alongside of th| +6479|356414|6415|1|4|5881.60|0.03|0.07|R|F|1994-06-08|1994-05-15|1994-06-12|NONE|TRUCK|o the blithely ironi| +6479|243176|18185|2|29|32455.64|0.04|0.00|R|F|1994-06-03|1994-05-13|1994-06-23|COLLECT COD|SHIP|regular pinto beans use pending acco| +6479|43776|6277|3|39|67071.03|0.01|0.08|R|F|1994-03-14|1994-04-17|1994-03-18|COLLECT COD|REG AIR|es. blithely regular f| +6479|738575|26118|4|16|25816.64|0.09|0.04|A|F|1994-04-20|1994-03-28|1994-05-16|DELIVER IN PERSON|MAIL|l foxes. doggedly regular packa| +6479|218000|43009|5|27|24785.73|0.05|0.08|R|F|1994-03-09|1994-04-30|1994-04-06|DELIVER IN PERSON|MAIL|ly carefull| +6479|911443|36480|6|37|53812.80|0.05|0.05|A|F|1994-04-01|1994-03-27|1994-04-19|TAKE BACK RETURN|SHIP|sauternes about the furio| +6504|453343|28362|1|30|38889.60|0.07|0.02|N|O|1996-08-03|1996-09-10|1996-08-25|DELIVER IN PERSON|AIR|y pending theodolites a| +6505|990218|40219|1|33|43169.61|0.07|0.05|A|F|1994-09-17|1994-11-15|1994-09-18|TAKE BACK RETURN|RAIL|rs wake slyly above t| +6505|588495|38496|2|42|66505.74|0.03|0.02|R|F|1994-10-28|1994-11-28|1994-11-02|TAKE BACK RETURN|MAIL|tipliers around the bli| +6505|831655|31656|3|5|7933.05|0.00|0.02|A|F|1994-12-07|1994-11-20|1995-01-05|DELIVER IN PERSON|FOB|y quick requests integrate. packages accor| +6505|622232|34745|4|22|25392.40|0.10|0.00|A|F|1994-09-18|1994-12-07|1994-10-15|DELIVER IN PERSON|AIR|elets. regular, regular deposits | +6505|850285|37837|5|30|37057.20|0.10|0.08|R|F|1994-12-18|1994-10-28|1994-12-30|DELIVER IN PERSON|SHIP|out the idly special pearls| +6506|917273|29792|1|2|2580.46|0.04|0.08|R|F|1992-04-08|1992-03-24|1992-04-17|COLLECT COD|AIR|ole carefully from the caref| +6506|603020|3021|2|43|39688.57|0.00|0.04|A|F|1992-04-27|1992-03-12|1992-04-30|NONE|AIR| the carefully pending asymptotes sleep ca| +6507|571320|46343|1|48|66782.40|0.02|0.01|R|F|1995-02-14|1995-03-19|1995-02-16|COLLECT COD|REG AIR|ng to the final, final deposit| +6507|170660|8170|2|30|51919.80|0.07|0.06|R|F|1995-03-30|1995-04-17|1995-04-06|DELIVER IN PERSON|REG AIR| pending dependen| +6507|282235|7246|3|18|21909.96|0.02|0.01|A|F|1995-02-12|1995-03-27|1995-03-14|COLLECT COD|SHIP| the furiously express requests. slyly eve| +6507|523073|48094|4|17|18632.85|0.02|0.05|A|F|1995-05-08|1995-02-22|1995-05-12|NONE|REG AIR|ages. even foxes cajole| +6507|284650|22166|5|2|3269.28|0.09|0.04|A|F|1995-01-28|1995-04-02|1995-02-08|TAKE BACK RETURN|AIR|ly furiously | +6508|907381|19900|1|15|20825.10|0.08|0.00|N|O|1997-10-09|1997-11-08|1997-10-18|TAKE BACK RETURN|MAIL|across the final packages. deposits nag flu| +6508|344586|32105|2|3|4891.71|0.01|0.01|N|O|1997-08-24|1997-09-21|1997-09-10|DELIVER IN PERSON|AIR|uses. fina| +6508|441359|41360|3|34|44211.22|0.00|0.06|N|O|1997-09-19|1997-11-05|1997-10-11|NONE|SHIP|ites boost slyly. fu| +6508|919822|7377|4|31|57095.18|0.03|0.01|N|O|1997-12-01|1997-10-23|1997-12-25|COLLECT COD|SHIP| requests. e| +6508|433835|46344|5|20|35376.20|0.04|0.05|N|O|1997-08-24|1997-09-15|1997-09-21|TAKE BACK RETURN|TRUCK|hy excuses: quic| +6508|463241|13242|6|6|7225.32|0.00|0.06|N|O|1997-09-21|1997-10-01|1997-09-24|DELIVER IN PERSON|FOB|e furiously bravely re| +6509|523702|48723|1|48|82832.64|0.01|0.00|A|F|1992-07-09|1992-10-04|1992-07-31|DELIVER IN PERSON|REG AIR|use against the| +6509|846876|21909|2|6|10936.98|0.07|0.06|A|F|1992-09-27|1992-08-25|1992-09-28|TAKE BACK RETURN|TRUCK|among the final co| +6510|875482|25483|1|30|43723.20|0.00|0.01|N|O|1997-03-26|1997-04-03|1997-04-01|NONE|TRUCK|ly according to the special theodolites. r| +6511|750942|13458|1|45|89680.95|0.03|0.05|N|O|1995-12-06|1996-01-07|1995-12-30|DELIVER IN PERSON|MAIL|final pinto beans| +6511|72616|10120|2|15|23829.15|0.05|0.05|N|O|1995-10-22|1995-11-22|1995-11-10|TAKE BACK RETURN|MAIL|instructions d| +6511|452632|27651|3|13|20599.93|0.03|0.05|N|O|1995-11-25|1995-12-09|1995-12-24|COLLECT COD|AIR|e of the ruthlessly regular acc| +6511|374613|49628|4|8|13500.80|0.10|0.06|N|O|1996-02-10|1995-12-30|1996-02-14|COLLECT COD|AIR|lar packages. busily bold deposits wake s| +6511|108948|33953|5|44|86105.36|0.05|0.06|N|O|1995-12-02|1996-01-19|1995-12-16|COLLECT COD|TRUCK|ess, final instructions al| +6536|371108|8630|1|36|42447.24|0.00|0.05|R|F|1994-08-15|1994-08-03|1994-09-11|NONE|REG AIR|ncies. furiously expr| +6537|134644|22151|1|40|67145.60|0.01|0.00|N|O|1998-02-03|1998-01-04|1998-02-08|DELIVER IN PERSON|TRUCK|dly final theodo| +6537|944974|7493|2|49|98927.57|0.00|0.06|N|O|1997-11-27|1997-12-22|1997-12-14|DELIVER IN PERSON|REG AIR|as sleep special dep| +6537|176642|26643|3|41|70464.24|0.09|0.04|N|O|1997-11-10|1998-01-04|1997-11-20|COLLECT COD|MAIL| beans. unusual, final acc| +6538|45106|7607|1|28|29430.80|0.02|0.03|N|O|1995-12-01|1995-11-25|1995-12-09|COLLECT COD|SHIP|d packages boost blithely| +6539|226114|26115|1|19|19761.90|0.05|0.06|N|O|1997-01-02|1996-11-19|1997-01-07|DELIVER IN PERSON|REG AIR|ong the furiously unusual tith| +6539|291742|29258|2|4|6934.92|0.10|0.00|N|O|1996-12-19|1996-12-02|1996-12-23|NONE|SHIP|ctions detect carefully aga| +6539|306635|31648|3|39|64023.18|0.04|0.01|N|O|1996-09-30|1996-11-02|1996-10-20|DELIVER IN PERSON|TRUCK|e blithely spe| +6539|607346|44883|4|20|25066.20|0.09|0.04|N|O|1996-11-09|1996-10-31|1996-11-17|NONE|REG AIR|theodolites about the express courts cajo| +6539|659471|34498|5|27|38621.88|0.10|0.04|N|O|1996-11-01|1996-12-07|1996-11-16|DELIVER IN PERSON|SHIP|ng the accounts haggle ca| +6539|726396|13939|6|21|29869.56|0.07|0.00|N|O|1996-10-15|1996-11-05|1996-10-20|DELIVER IN PERSON|MAIL|bove the blithely| +6540|478538|28539|1|19|28813.69|0.04|0.08|A|F|1995-01-10|1994-12-24|1995-01-19|NONE|SHIP|nding packages. regular accounts | +6540|772314|22315|2|40|55451.20|0.00|0.03|R|F|1994-11-26|1995-01-27|1994-12-06|COLLECT COD|FOB|s across the final,| +6540|280371|5382|3|3|4054.08|0.08|0.08|A|F|1995-01-24|1995-01-01|1995-02-04|DELIVER IN PERSON|AIR|. quickly regular dependencies haggl| +6540|178809|16319|4|18|33980.40|0.04|0.06|R|F|1995-01-02|1994-12-22|1995-01-21|DELIVER IN PERSON|SHIP|ickly ironic h| +6540|230800|30801|5|44|76154.76|0.05|0.02|R|F|1994-12-07|1995-02-03|1994-12-24|NONE|SHIP|latelets boost furio| +6541|563304|838|1|29|39651.12|0.00|0.08|A|F|1994-12-07|1995-01-11|1994-12-14|TAKE BACK RETURN|REG AIR|usual deposits. slyly close| +6541|437546|55|2|9|13351.68|0.07|0.08|R|F|1994-12-11|1995-02-02|1994-12-16|DELIVER IN PERSON|MAIL|bove the daring instructions| +6541|823384|48417|3|47|61444.98|0.04|0.08|R|F|1994-11-24|1994-12-19|1994-12-18|COLLECT COD|TRUCK|y bold requests | +6541|598812|11324|4|4|7643.16|0.05|0.02|R|F|1994-12-27|1994-12-10|1995-01-17|COLLECT COD|AIR|to beans are a| +6541|217502|30007|5|45|63877.05|0.09|0.08|R|F|1995-02-17|1994-12-31|1995-02-25|TAKE BACK RETURN|REG AIR|leep. carefully regular requests kin| +6541|541486|3997|6|28|42768.88|0.02|0.03|A|F|1994-12-13|1995-01-10|1994-12-17|COLLECT COD|FOB|use. regular requests wake quic| +6542|807890|7891|1|46|82701.10|0.08|0.07|N|O|1998-02-23|1998-02-01|1998-02-25|DELIVER IN PERSON|AIR|ithely special courts was slyly slyly iron| +6542|198171|48172|2|2|2538.34|0.05|0.07|N|O|1998-03-25|1998-03-14|1998-03-29|TAKE BACK RETURN|SHIP|ng accounts are according to th| +6542|649778|12291|3|1|1727.74|0.01|0.00|N|O|1998-01-06|1998-02-23|1998-01-20|TAKE BACK RETURN|TRUCK|kly against the unusual, thi| +6542|806268|6269|4|44|51665.68|0.00|0.05|N|O|1998-02-24|1998-03-10|1998-03-21|TAKE BACK RETURN|TRUCK|nic, express foxes-- regul| +6542|939772|27327|5|32|57975.36|0.04|0.06|N|O|1998-01-16|1998-03-06|1998-02-02|TAKE BACK RETURN|FOB|ickly ironic asymptotes. carefully bold ide| +6543|64497|2001|1|15|21922.35|0.08|0.00|A|F|1993-12-16|1993-11-15|1994-01-08|TAKE BACK RETURN|TRUCK|xpress asymptotes. even, i| +6543|990711|40712|2|18|32430.06|0.00|0.02|R|F|1993-10-02|1993-11-30|1993-10-07|DELIVER IN PERSON|TRUCK|ged accounts use f| +6543|876049|26050|3|2|2050.00|0.02|0.00|R|F|1993-10-07|1993-10-10|1993-10-19|NONE|RAIL| express p| +6543|747040|47041|4|35|38045.35|0.02|0.06|A|F|1993-12-06|1993-11-06|1993-12-30|DELIVER IN PERSON|TRUCK|usual ideas use slyly d| +6543|499248|11758|5|15|18708.30|0.10|0.01|R|F|1993-12-27|1993-10-25|1994-01-17|TAKE BACK RETURN|SHIP|y blithe requests integrate| +6543|858532|8533|6|36|53657.64|0.06|0.01|R|F|1993-09-21|1993-10-25|1993-10-07|TAKE BACK RETURN|REG AIR|lly around the| +6568|181576|44080|1|37|61330.09|0.10|0.07|A|F|1992-05-16|1992-05-01|1992-05-18|DELIVER IN PERSON|MAIL| according to t| +6568|731587|19130|2|36|58267.80|0.10|0.08|A|F|1992-05-20|1992-03-08|1992-06-13|COLLECT COD|REG AIR| slow foxes cajole after the pe| +6568|781059|43575|3|10|11400.20|0.00|0.05|R|F|1992-04-17|1992-04-24|1992-05-16|COLLECT COD|FOB|he express requests. accounts about the sl| +6568|254396|16902|4|39|52664.82|0.00|0.07|R|F|1992-05-29|1992-04-02|1992-06-24|NONE|RAIL|. slyly unusual deposits are carefully pend| +6568|630584|30585|5|39|59067.45|0.07|0.07|R|F|1992-04-10|1992-04-05|1992-04-14|TAKE BACK RETURN|MAIL|ironic fox| +6568|215294|2807|6|14|16929.92|0.09|0.06|A|F|1992-05-08|1992-03-18|1992-05-24|TAKE BACK RETURN|FOB|oss the carefully special requests.| +6568|433789|46298|7|15|25841.40|0.00|0.05|R|F|1992-03-28|1992-04-12|1992-04-07|DELIVER IN PERSON|AIR|riously even accounts m| +6569|679415|4442|1|21|29281.98|0.09|0.02|N|O|1995-11-08|1995-10-21|1995-11-24|DELIVER IN PERSON|FOB|ncies nag carefully along the fluffily qui| +6569|912605|37642|2|27|43674.12|0.00|0.02|N|O|1995-12-09|1995-10-26|1995-12-23|DELIVER IN PERSON|FOB|ccounts. fluf| +6569|139473|39474|3|20|30249.40|0.07|0.00|N|O|1995-10-08|1995-12-06|1995-10-13|DELIVER IN PERSON|TRUCK| according to | +6569|118863|6370|4|46|86565.56|0.00|0.01|N|O|1995-12-03|1995-11-20|1995-12-09|TAKE BACK RETURN|TRUCK|s among the furiou| +6569|726906|26907|5|24|46388.88|0.09|0.00|N|O|1995-11-24|1995-11-08|1995-12-09|TAKE BACK RETURN|SHIP| even packages unwi| +6569|101880|26885|6|43|80920.84|0.04|0.04|N|O|1995-11-26|1995-11-11|1995-12-23|NONE|MAIL|at the pearls wake carefully against t| +6570|833289|8322|1|11|13444.64|0.04|0.01|N|O|1995-07-22|1995-09-09|1995-08-13|TAKE BACK RETURN|TRUCK|ies. regularl| +6570|77856|2859|2|47|86190.95|0.05|0.01|N|O|1995-08-08|1995-09-24|1995-08-27|TAKE BACK RETURN|RAIL|stealthily iro| +6570|512567|25078|3|49|77397.46|0.01|0.04|N|O|1995-09-09|1995-09-10|1995-10-08|NONE|FOB| requests sleep q| +6570|710850|35879|4|14|26051.48|0.02|0.05|N|O|1995-11-12|1995-09-25|1995-12-12|COLLECT COD|RAIL|after the furiou| +6570|245874|33387|5|21|38217.06|0.07|0.00|N|O|1995-10-08|1995-09-24|1995-10-16|TAKE BACK RETURN|AIR|onic packages run blithely. re| +6570|400701|702|6|18|28830.24|0.03|0.04|N|O|1995-09-19|1995-08-19|1995-09-28|NONE|FOB|arefully pending theodol| +6570|572904|47927|7|10|19768.80|0.01|0.07|N|O|1995-10-13|1995-09-07|1995-10-17|TAKE BACK RETURN|FOB|s are above the ironic multip| +6571|791038|41039|1|1|1129.00|0.01|0.08|N|O|1995-11-27|1995-09-19|1995-12-05|NONE|AIR|out the enticing the| +6571|968692|31212|2|39|68665.35|0.03|0.00|N|O|1995-11-05|1995-10-11|1995-11-10|COLLECT COD|REG AIR|ter the pending, ironic accounts.| +6571|797828|47829|3|1|1925.79|0.05|0.00|N|O|1995-10-17|1995-10-21|1995-11-07|DELIVER IN PERSON|REG AIR|dencies are| +6571|83871|21375|4|27|50081.49|0.04|0.06|N|O|1995-12-01|1995-10-21|1995-12-06|TAKE BACK RETURN|AIR|eodolites. caref| +6571|608377|33402|5|32|41130.88|0.10|0.00|N|O|1995-09-09|1995-10-21|1995-10-02|DELIVER IN PERSON|TRUCK|iously according to the final asy| +6572|426600|14125|1|15|22898.70|0.00|0.08|R|F|1993-12-15|1994-01-13|1993-12-26|NONE|RAIL| express deposits ea| +6572|857280|32315|2|13|16084.12|0.04|0.00|A|F|1994-01-19|1993-12-16|1994-02-14|NONE|AIR|ular dolphins. quickly final re| +6572|295288|20299|3|10|12832.70|0.06|0.04|R|F|1993-11-20|1994-02-03|1993-12-15|NONE|RAIL|d accounts are| +6572|895147|45148|4|26|29694.60|0.03|0.00|A|F|1994-01-31|1994-01-11|1994-03-01|NONE|FOB|its over the| +6572|728702|28703|5|26|44997.42|0.05|0.01|R|F|1994-02-09|1993-12-13|1994-02-12|DELIVER IN PERSON|REG AIR|he quickly regula| +6573|648467|23492|1|21|29724.03|0.10|0.07|R|F|1992-09-04|1992-09-22|1992-09-13|TAKE BACK RETURN|RAIL| after the final| +6573|777872|40388|2|21|40946.64|0.10|0.07|A|F|1992-09-29|1992-10-08|1992-10-23|TAKE BACK RETURN|MAIL|requests cajole. carefully final| +6573|682828|20368|3|37|66999.23|0.00|0.00|A|F|1992-09-09|1992-10-08|1992-09-15|DELIVER IN PERSON|RAIL|eposits cajole alo| +6573|286904|49410|4|16|30254.24|0.09|0.03|A|F|1992-08-06|1992-10-06|1992-08-25|DELIVER IN PERSON|RAIL|tect slyly. regular pac| +6573|984421|21979|5|28|42150.64|0.05|0.04|R|F|1992-10-24|1992-09-04|1992-11-21|NONE|REG AIR|ependencie| +6573|152922|40432|6|31|61222.52|0.10|0.03|R|F|1992-10-28|1992-10-12|1992-11-16|NONE|AIR|ong the sly| +6573|144423|19428|7|50|73371.00|0.03|0.03|A|F|1992-09-21|1992-08-22|1992-09-29|DELIVER IN PERSON|REG AIR|lites. furiously| +6574|311556|11557|1|30|47026.20|0.05|0.08|A|F|1994-06-28|1994-06-30|1994-07-04|DELIVER IN PERSON|MAIL|efully regular ideas detec| +6574|318084|5603|2|37|40776.59|0.01|0.04|A|F|1994-08-17|1994-07-20|1994-09-08|TAKE BACK RETURN|TRUCK|. carefully enticing requests boost: c| +6574|22117|34618|3|23|23899.53|0.01|0.02|A|F|1994-07-07|1994-06-09|1994-07-16|TAKE BACK RETURN|RAIL|olites do poach| +6574|715287|27802|4|37|48183.25|0.10|0.06|R|F|1994-07-31|1994-06-10|1994-08-08|COLLECT COD|FOB|en notornis lose bl| +6574|816929|16930|5|7|12921.16|0.06|0.05|A|F|1994-06-02|1994-07-30|1994-06-10|TAKE BACK RETURN|TRUCK|fily regular, final r| +6574|122931|35434|6|43|84018.99|0.09|0.04|R|F|1994-06-01|1994-07-08|1994-06-11|DELIVER IN PERSON|TRUCK|ess, pending accounts.| +6575|805028|42577|1|28|26123.44|0.04|0.07|A|F|1992-04-17|1992-05-08|1992-05-07|NONE|TRUCK|deposits sleep: s| +6575|104858|17361|2|34|63336.90|0.06|0.07|A|F|1992-05-24|1992-05-08|1992-06-17|NONE|TRUCK|ve to are furiously packages? blithely | +6575|337815|322|3|13|24086.40|0.03|0.03|R|F|1992-03-19|1992-05-31|1992-03-26|TAKE BACK RETURN|FOB|ely slyly even requ| +6575|655193|17707|4|1|1148.16|0.02|0.04|A|F|1992-07-02|1992-05-16|1992-07-15|DELIVER IN PERSON|FOB|nts wake blithely. quickly pending | +6600|251297|38813|1|7|8737.96|0.03|0.03|R|F|1995-05-07|1995-04-23|1995-05-28|NONE|SHIP|ironic, regu| +6600|545290|45291|2|10|13352.70|0.09|0.00|N|O|1995-06-24|1995-05-22|1995-07-24|DELIVER IN PERSON|TRUCK|ial packages. f| +6601|352360|27375|1|25|35308.75|0.04|0.08|R|F|1994-07-21|1994-05-22|1994-08-06|TAKE BACK RETURN|REG AIR|ely against the quickly fina| +6601|113082|589|2|27|29567.16|0.02|0.06|R|F|1994-06-06|1994-06-07|1994-06-24|COLLECT COD|REG AIR|efully regular requests slee| +6601|553508|28531|3|12|18737.76|0.04|0.06|A|F|1994-05-05|1994-06-19|1994-05-19|COLLECT COD|AIR|usly special instructi| +6602|754362|4363|1|38|53820.54|0.04|0.01|N|O|1997-12-25|1998-01-14|1998-01-01|DELIVER IN PERSON|AIR|nding requests hinder enticingly ag| +6602|558105|33128|2|21|24424.68|0.10|0.03|N|O|1997-11-02|1997-12-23|1997-12-02|TAKE BACK RETURN|REG AIR|ss foxes are. fluffily | +6602|54936|29939|3|6|11345.58|0.02|0.06|N|O|1998-01-15|1997-12-10|1998-02-09|DELIVER IN PERSON|MAIL|dencies. dogged, regular packages nod. unus| +6602|293484|5990|4|23|33981.81|0.07|0.08|N|O|1998-01-27|1997-11-17|1998-02-05|TAKE BACK RETURN|AIR|lly slyly bold court| +6603|922799|10354|1|21|38256.75|0.08|0.07|N|O|1996-07-31|1996-05-30|1996-08-08|COLLECT COD|RAIL|dependencies. slyly bold account| +6603|470029|20030|2|29|28971.00|0.04|0.08|N|O|1996-08-16|1996-06-03|1996-09-10|NONE|MAIL|ns wake ironic, | +6603|768034|5580|3|19|20938.00|0.02|0.03|N|O|1996-06-23|1996-06-11|1996-07-14|TAKE BACK RETURN|MAIL|ep furiously final deposits| +6604|847395|9912|1|34|45639.90|0.05|0.07|N|O|1997-09-01|1997-10-11|1997-09-12|TAKE BACK RETURN|TRUCK|requests are agai| +6604|160925|35932|2|8|15887.36|0.05|0.06|N|O|1997-10-04|1997-10-29|1997-10-06|TAKE BACK RETURN|REG AIR|latelets use| +6604|655809|30836|3|40|70590.80|0.06|0.08|N|O|1997-11-02|1997-09-24|1997-11-18|COLLECT COD|TRUCK|e fluffily fin| +6604|173332|10842|4|45|63239.85|0.00|0.03|N|O|1997-10-15|1997-09-16|1997-11-11|TAKE BACK RETURN|SHIP|ual Tiresias against the carefu| +6604|187962|37963|5|17|34849.32|0.10|0.01|N|O|1997-09-23|1997-10-30|1997-10-11|TAKE BACK RETURN|TRUCK|sts are slyly. furiously| +6604|72378|34880|6|25|33759.25|0.00|0.03|N|O|1997-11-08|1997-10-02|1997-11-21|COLLECT COD|AIR|l packages. fluffily final foxes wake blith| +6605|528554|41065|1|30|47475.90|0.07|0.00|R|F|1992-04-29|1992-04-15|1992-05-23|TAKE BACK RETURN|MAIL|cording to the unusual, ironic dolphins hag| +6605|401400|38925|2|13|16917.94|0.10|0.07|R|F|1992-03-29|1992-04-22|1992-04-13|DELIVER IN PERSON|RAIL|ely even packages. regular, final foxes | +6605|321857|21858|3|30|56365.20|0.04|0.01|R|F|1992-06-04|1992-04-28|1992-06-07|COLLECT COD|AIR|uctions abov| +6605|450136|12646|4|32|34755.52|0.03|0.01|R|F|1992-03-10|1992-06-02|1992-03-22|DELIVER IN PERSON|FOB|kly thin packages. bold, unu| +6605|433976|21501|5|12|22919.40|0.07|0.03|A|F|1992-05-30|1992-04-12|1992-06-27|NONE|AIR| sleep. special, ironic instructions | +6605|834521|47038|6|33|48030.84|0.03|0.03|A|F|1992-03-12|1992-04-13|1992-04-03|TAKE BACK RETURN|FOB|theodolites.| +6606|357852|32867|1|19|36286.96|0.06|0.03|R|F|1995-05-22|1995-04-02|1995-05-26|COLLECT COD|FOB|posits. furiously even courts bo| +6606|415747|28256|2|35|58195.20|0.09|0.06|N|O|1995-06-21|1995-04-07|1995-06-22|COLLECT COD|TRUCK|above the pending deposits. quickly flu| +6606|445462|20479|3|18|25333.92|0.08|0.08|R|F|1995-06-03|1995-05-15|1995-06-11|TAKE BACK RETURN|RAIL|atelets are quickly after the | +6607|737251|24794|1|16|20611.52|0.04|0.08|N|O|1996-05-30|1996-03-13|1996-06-11|NONE|SHIP|the slyly ironic platelets. slyly bol| +6607|971365|33885|2|24|34471.68|0.09|0.08|N|O|1996-04-25|1996-04-19|1996-05-15|TAKE BACK RETURN|MAIL|e carefully regular d| +6607|723277|35792|3|36|46808.64|0.01|0.03|N|O|1996-05-27|1996-04-28|1996-06-23|DELIVER IN PERSON|RAIL|n instructions. express, final ex| +6607|108402|45909|4|10|14104.00|0.06|0.03|N|O|1996-02-12|1996-04-23|1996-02-14|TAKE BACK RETURN|FOB|elets haggle after the furiously final d| +6607|904398|41953|5|34|47679.90|0.05|0.02|N|O|1996-05-09|1996-04-14|1996-05-11|DELIVER IN PERSON|MAIL|ironic inst| +6632|618226|30739|1|23|26316.37|0.00|0.04|R|F|1995-03-22|1995-05-01|1995-04-15|TAKE BACK RETURN|AIR|lar dependencies cajole| +6633|602899|15412|1|10|18018.60|0.09|0.00|R|F|1992-06-20|1992-06-13|1992-07-15|DELIVER IN PERSON|TRUCK|nto beans s| +6633|923053|23054|2|14|15064.14|0.04|0.00|R|F|1992-08-01|1992-06-05|1992-08-08|COLLECT COD|REG AIR|ven accounts. idly expre| +6633|742240|17269|3|35|44877.35|0.04|0.02|R|F|1992-06-14|1992-06-19|1992-06-20|COLLECT COD|SHIP|ges haggle quickly according to the even, b| +6633|826599|1632|4|21|32036.55|0.03|0.04|A|F|1992-04-28|1992-05-22|1992-05-08|TAKE BACK RETURN|SHIP|l asymptotes. deposits around the slyly | +6633|645910|20935|5|50|92794.00|0.08|0.04|R|F|1992-08-05|1992-05-31|1992-08-21|NONE|AIR|kly ironic packages. instructions | +6634|601790|1791|1|32|54136.32|0.03|0.08|A|F|1993-11-04|1993-10-14|1993-11-28|TAKE BACK RETURN|TRUCK|the silent accounts. slyly unusu| +6634|280227|30228|2|30|36216.30|0.09|0.07|R|F|1993-10-15|1993-10-15|1993-11-11|NONE|MAIL|oss the quickly unusual packages. express | +6634|759381|21897|3|48|69136.80|0.07|0.04|R|F|1993-09-20|1993-11-26|1993-10-20|NONE|REG AIR|ven, express deposits sleep quickly t| +6634|902049|39604|4|44|46244.00|0.06|0.05|R|F|1993-12-26|1993-11-16|1993-12-31|TAKE BACK RETURN|AIR|o beans after the quickly regular pack| +6634|723211|10754|5|14|17278.52|0.07|0.00|A|F|1993-11-07|1993-12-05|1993-11-08|NONE|REG AIR|ic packages. blithely | +6635|832603|45120|1|14|21497.84|0.08|0.00|N|O|1997-12-26|1997-12-09|1998-01-01|TAKE BACK RETURN|SHIP| along the furiously iro| +6635|544816|19837|2|46|85596.34|0.05|0.03|N|O|1998-01-19|1997-12-06|1998-01-22|TAKE BACK RETURN|AIR|dle accounts sleep | +6635|717968|30483|3|41|81423.13|0.01|0.00|N|O|1997-12-01|1997-11-30|1997-12-25|TAKE BACK RETURN|MAIL|he unusual theodolites. | +6635|885194|47712|4|24|28299.60|0.00|0.00|N|O|1997-10-27|1997-12-12|1997-11-15|COLLECT COD|RAIL|s cajole furiously. express, regu| +6636|233004|8013|1|4|3747.96|0.04|0.08|N|O|1996-09-17|1996-08-12|1996-10-13|NONE|FOB|careful epitaphs cajole slyly. slyly sile| +6636|96674|34178|2|31|51790.77|0.08|0.08|N|O|1996-07-16|1996-08-09|1996-07-20|NONE|TRUCK|cial requests are quickly along the f| +6636|783334|8365|3|45|63778.50|0.05|0.06|N|O|1996-07-29|1996-08-17|1996-08-16|DELIVER IN PERSON|REG AIR|the ruthlessl| +6636|481405|31406|4|26|36045.88|0.07|0.06|N|O|1996-08-09|1996-08-06|1996-08-29|NONE|SHIP|ide of the carefully unusual req| +6636|961461|23981|5|38|57851.96|0.04|0.02|N|O|1996-08-24|1996-09-21|1996-09-11|DELIVER IN PERSON|RAIL|wake along the quickly re| +6636|272549|35055|6|38|57818.14|0.02|0.01|N|O|1996-10-28|1996-09-25|1996-10-31|TAKE BACK RETURN|TRUCK|ously pending pinto beans| +6636|717054|29569|7|41|43911.82|0.10|0.01|N|O|1996-10-24|1996-08-13|1996-11-02|COLLECT COD|MAIL|beans. blithely e| +6637|515089|27600|1|43|47474.58|0.04|0.06|A|F|1993-02-06|1993-02-12|1993-02-07|TAKE BACK RETURN|MAIL|lar theodolites. blithel| +6637|96877|9379|2|47|88071.89|0.02|0.07|A|F|1993-04-06|1993-03-13|1993-04-10|DELIVER IN PERSON|AIR|dolites sleep after | +6637|204287|41800|3|37|44076.99|0.07|0.08|A|F|1993-01-26|1993-03-02|1993-02-15|TAKE BACK RETURN|REG AIR|pinto beans upon the accounts| +6638|889188|39189|1|43|50617.02|0.08|0.06|N|O|1995-09-21|1995-08-21|1995-10-12|TAKE BACK RETURN|FOB|l instructions wake slyly. fur| +6638|580892|18426|2|10|19728.70|0.10|0.03|N|O|1995-10-13|1995-09-28|1995-10-20|NONE|AIR|fully regular packages. | +6638|45218|32719|3|32|37222.72|0.02|0.05|N|O|1995-09-18|1995-09-05|1995-10-06|DELIVER IN PERSON|RAIL|usly even packages accordi| +6638|972598|35118|4|46|76845.30|0.08|0.00|N|O|1995-11-07|1995-09-09|1995-11-15|COLLECT COD|SHIP|nto beans | +6639|827766|27767|1|2|3387.44|0.04|0.00|N|O|1998-07-19|1998-07-17|1998-07-22|DELIVER IN PERSON|TRUCK|. slyly careful accounts above the slyly i| +6639|257836|20342|2|32|57402.24|0.03|0.01|N|O|1998-05-09|1998-06-13|1998-06-04|TAKE BACK RETURN|RAIL|s against the frays| +6639|446666|46667|3|32|51604.48|0.05|0.07|N|O|1998-07-02|1998-07-07|1998-07-22|TAKE BACK RETURN|AIR|lets. permanently final ins| +6664|970839|20840|1|11|21007.69|0.09|0.08|N|O|1998-08-23|1998-09-28|1998-08-25|TAKE BACK RETURN|MAIL|nst the pinto beans. furiously e| +6664|882188|19740|2|6|7020.84|0.06|0.06|N|O|1998-08-15|1998-08-25|1998-08-31|TAKE BACK RETURN|FOB|eposits. blithely even ideas boost | +6664|919875|32394|3|45|85267.35|0.07|0.00|N|O|1998-08-17|1998-08-17|1998-08-31|COLLECT COD|MAIL| ironic, regular pinto beans. bl| +6664|329759|42266|4|44|78704.56|0.01|0.02|N|O|1998-09-17|1998-08-12|1998-09-29|NONE|MAIL|quickly pending d| +6664|251539|14045|5|31|46206.12|0.02|0.01|N|O|1998-09-27|1998-08-16|1998-10-16|NONE|AIR|e furiously at the bold, even ac| +6664|604421|4422|6|26|34460.14|0.05|0.07|N|O|1998-10-31|1998-09-02|1998-11-07|NONE|TRUCK|ajole fluffily pending Tiresias. bold requ| +6664|497554|22573|7|1|1551.53|0.09|0.04|N|O|1998-08-23|1998-08-16|1998-09-18|TAKE BACK RETURN|TRUCK|press pack| +6665|376378|1393|1|15|21815.40|0.03|0.08|N|O|1996-11-15|1996-12-09|1996-12-15|COLLECT COD|RAIL|blithely silent foxes mold | +6665|784122|34123|2|37|44625.33|0.08|0.06|N|O|1996-11-24|1996-11-04|1996-11-30|TAKE BACK RETURN|TRUCK|refully along the carefull| +6665|734751|34752|3|16|28571.52|0.01|0.05|N|O|1996-12-11|1996-12-10|1996-12-16|NONE|MAIL|r requests sleep furiously against the qui| +6666|400107|37632|1|44|44311.52|0.00|0.04|A|F|1994-01-31|1994-02-26|1994-03-01|DELIVER IN PERSON|FOB|arefully un| +6666|592366|17389|2|29|42291.86|0.03|0.04|A|F|1994-04-23|1994-03-28|1994-05-07|TAKE BACK RETURN|RAIL|un carefully about the brave, spec| +6666|884397|46915|3|22|30389.70|0.06|0.05|A|F|1994-03-23|1994-03-07|1994-04-05|DELIVER IN PERSON|TRUCK|t the furious| +6667|579236|41748|1|24|31565.04|0.00|0.04|A|F|1993-06-28|1993-05-09|1993-07-26|COLLECT COD|RAIL|ts. deposits nag fluffily ironic acc| +6667|217772|5285|2|31|52382.56|0.06|0.03|R|F|1993-06-19|1993-04-10|1993-07-19|TAKE BACK RETURN|MAIL|efully stealthy accounts cajole slyly agai| +6667|81539|44041|3|39|59300.67|0.10|0.08|A|F|1993-05-11|1993-05-18|1993-05-26|COLLECT COD|RAIL| slyly. regular platelets detect slyly.| +6668|373379|23380|1|49|71165.64|0.07|0.00|N|O|1998-09-28|1998-07-08|1998-10-11|TAKE BACK RETURN|FOB|ironic accou| +6668|380504|30505|2|23|36443.27|0.09|0.02|N|O|1998-07-31|1998-08-29|1998-08-21|NONE|AIR|oss the accounts: ironic | +6668|125417|25418|3|6|8654.46|0.01|0.00|N|O|1998-06-22|1998-07-31|1998-07-01|NONE|RAIL|fily around the i| +6668|881574|44092|4|42|65332.26|0.04|0.07|N|O|1998-09-21|1998-07-20|1998-09-23|NONE|SHIP|uickly pending platelets are blit| +6668|609353|46890|5|37|46705.84|0.08|0.08|N|O|1998-07-30|1998-08-14|1998-08-14|TAKE BACK RETURN|RAIL|t the ironic, careful id| +6668|395357|20372|6|18|26142.12|0.10|0.00|N|O|1998-08-20|1998-07-31|1998-09-18|COLLECT COD|RAIL|carefully final instruction| +6668|755236|5237|7|45|58104.00|0.08|0.02|N|O|1998-06-20|1998-08-16|1998-06-30|DELIVER IN PERSON|RAIL|e carefully unusual accounts. final, unu| +6669|251424|1425|1|12|16504.92|0.04|0.04|R|F|1992-03-24|1992-05-23|1992-04-02|NONE|REG AIR|iously bold accounts. ironic th| +6669|676849|1876|2|9|16432.29|0.03|0.00|R|F|1992-03-18|1992-05-09|1992-04-04|NONE|AIR|ng to the pl| +6669|792636|17667|3|8|13828.80|0.01|0.04|A|F|1992-05-18|1992-04-05|1992-06-12|COLLECT COD|AIR|ously fluffily regular ideas. carefully| +6669|830364|42881|4|1|1294.32|0.07|0.02|R|F|1992-04-26|1992-05-20|1992-05-26|NONE|SHIP|uiet requests are about the blithely | +6669|925831|38350|5|38|70558.02|0.08|0.06|R|F|1992-04-14|1992-05-29|1992-05-06|TAKE BACK RETURN|TRUCK|uests sleep slyly s| +6670|235854|23367|1|3|5369.52|0.06|0.01|N|O|1998-01-10|1997-12-04|1998-02-03|TAKE BACK RETURN|TRUCK|. regular account| +6670|991909|4429|2|3|6002.58|0.07|0.02|N|O|1998-01-13|1997-12-12|1998-02-04|DELIVER IN PERSON|FOB|ckages integrate slyly about | +6670|5416|17917|3|46|60784.86|0.00|0.03|N|O|1997-10-04|1997-11-30|1997-10-07|TAKE BACK RETURN|MAIL|se stealthily. final ideas wake| +6670|17380|29881|4|46|59679.48|0.03|0.05|N|O|1998-01-22|1997-12-13|1998-01-28|TAKE BACK RETURN|TRUCK|platelets doze blithely fluffily reg| +6671|676097|26098|1|25|26826.50|0.08|0.03|N|O|1997-01-19|1997-03-27|1997-02-16|DELIVER IN PERSON|FOB|es accounts! pending| +6671|155179|5180|2|15|18512.55|0.05|0.00|N|O|1997-02-22|1997-02-22|1997-03-08|DELIVER IN PERSON|RAIL|uffily! even ideas haggle carefully| +6696|732858|32859|1|12|22689.84|0.02|0.04|A|F|1994-05-07|1994-03-21|1994-05-15|COLLECT COD|SHIP|dly ironic accounts. special deposits | +6696|138877|26384|2|40|76634.80|0.09|0.02|R|F|1994-06-07|1994-04-07|1994-06-26|DELIVER IN PERSON|AIR|se regular, bold sauter| +6696|90576|40577|3|27|42297.39|0.00|0.07|A|F|1994-06-05|1994-04-16|1994-06-27|DELIVER IN PERSON|AIR|deas. daringly ironic accounts are| +6696|308220|8221|4|14|17194.94|0.06|0.02|A|F|1994-04-24|1994-05-13|1994-05-23|COLLECT COD|AIR|slyly ironic accounts. deposi| +6696|244707|44708|5|22|36337.18|0.09|0.00|A|F|1994-04-19|1994-05-09|1994-05-01|COLLECT COD|RAIL|to beans sleep blithely above t| +6697|600291|292|1|10|11912.60|0.09|0.00|A|F|1994-07-26|1994-06-07|1994-08-01|DELIVER IN PERSON|REG AIR|eep carefully furious| +6697|81759|44261|2|43|74852.25|0.04|0.04|A|F|1994-05-09|1994-05-14|1994-06-03|DELIVER IN PERSON|FOB|o beans wake; slyly ironic notornis cajole| +6698|846312|33861|1|44|55363.88|0.00|0.01|R|F|1994-10-12|1994-10-16|1994-10-13|NONE|AIR|cording to the slyly ironic i| +6698|962292|37331|2|45|60941.25|0.10|0.05|A|F|1994-10-02|1994-09-27|1994-10-31|NONE|FOB|mptotes cajole slyly. deposit| +6698|231653|44158|3|37|58631.68|0.06|0.03|R|F|1994-09-18|1994-11-13|1994-09-28|NONE|FOB|ular ideas affix alongside of| +6698|384448|34449|4|15|22986.45|0.06|0.07|A|F|1994-09-17|1994-10-22|1994-10-11|DELIVER IN PERSON|MAIL|pinto beans| +6698|412151|24660|5|16|17010.08|0.02|0.03|R|F|1994-11-22|1994-11-02|1994-12-09|TAKE BACK RETURN|SHIP| the sometim| +6698|13526|1027|6|11|15834.72|0.03|0.06|R|F|1994-10-10|1994-11-10|1994-10-22|COLLECT COD|TRUCK|gular pinto beans are carefully. quickly| +6699|823604|11153|1|7|10692.92|0.09|0.00|N|O|1996-11-20|1996-11-13|1996-12-09|NONE|TRUCK|s. fluffily regu| +6699|311860|36873|2|28|52411.80|0.05|0.04|N|O|1996-10-11|1997-01-05|1996-10-12|NONE|MAIL|l, regular deposits. furio| +6699|427255|39764|3|48|56747.04|0.04|0.00|N|O|1996-11-13|1996-11-26|1996-12-04|COLLECT COD|REG AIR|ackages wa| +6699|863284|836|4|45|56125.80|0.04|0.01|N|O|1996-11-02|1996-11-10|1996-11-05|TAKE BACK RETURN|MAIL|e across the express asymp| +6700|932959|45478|1|33|65733.03|0.03|0.03|A|F|1994-06-09|1994-04-24|1994-06-18|TAKE BACK RETURN|REG AIR|ways pending| +6700|236163|48668|2|23|25280.45|0.05|0.08|R|F|1994-02-15|1994-05-07|1994-03-14|TAKE BACK RETURN|AIR|y blithely final deposi| +6701|853302|28337|1|12|15063.12|0.04|0.06|R|F|1994-04-24|1994-03-01|1994-05-03|NONE|TRUCK|sits. slyly final deposits acc| +6702|816949|16950|1|27|50379.30|0.09|0.01|R|F|1994-01-17|1993-12-26|1994-01-22|COLLECT COD|FOB|pecial packages haggle a| +6702|458776|46304|2|44|76329.00|0.10|0.01|A|F|1993-11-21|1994-01-02|1993-12-02|NONE|AIR| theodolites snooze blithe| +6702|641301|3814|3|11|13664.97|0.07|0.05|R|F|1993-11-29|1994-01-27|1993-11-30|NONE|RAIL|oost blithely. even, | +6702|340614|40615|4|23|38055.80|0.01|0.05|A|F|1993-12-23|1994-01-07|1994-01-12|DELIVER IN PERSON|FOB|le silent platelets. fluffily ironic pinto| +6703|604919|17432|1|18|32829.84|0.05|0.07|R|F|1994-12-07|1995-01-01|1995-01-02|COLLECT COD|REG AIR|s. final, bold accounts| +6728|368907|18908|1|22|43469.58|0.02|0.04|N|O|1998-11-04|1998-09-19|1998-11-21|DELIVER IN PERSON|MAIL|onic theodolites nag. blithely reg| +6728|218284|43293|2|40|48090.80|0.04|0.05|N|O|1998-09-05|1998-09-26|1998-09-26|TAKE BACK RETURN|TRUCK|ers haggle blithely | +6729|165016|2526|1|10|10810.10|0.07|0.06|R|F|1992-11-29|1992-11-02|1992-12-23|TAKE BACK RETURN|FOB|round the even accounts haggle furiou| +6730|539400|39401|1|43|61893.34|0.00|0.05|R|F|1994-08-26|1994-09-05|1994-08-29|TAKE BACK RETURN|FOB|tructions sleep furiously final id| +6730|685507|23047|2|14|20894.58|0.07|0.01|R|F|1994-09-08|1994-09-07|1994-10-04|TAKE BACK RETURN|TRUCK|ost slyly according to the furiously exp| +6730|313180|25687|3|27|32215.59|0.05|0.03|R|F|1994-09-14|1994-10-29|1994-09-29|COLLECT COD|TRUCK|ackages. final requests s| +6731|360907|35922|1|11|21646.79|0.02|0.02|N|O|1997-02-01|1997-02-09|1997-02-07|DELIVER IN PERSON|AIR| express package| +6731|755892|5893|2|15|29217.90|0.04|0.06|N|O|1997-01-31|1997-02-04|1997-02-08|COLLECT COD|SHIP|counts? silent | +6731|261138|48654|3|19|20883.28|0.05|0.08|N|O|1996-12-30|1997-01-02|1997-01-15|NONE|REG AIR|ss the carefully| +6731|934168|21723|4|7|8414.84|0.05|0.01|N|O|1997-03-02|1997-01-20|1997-03-17|COLLECT COD|TRUCK|carefully regular requ| +6731|557213|32236|5|15|19052.85|0.01|0.08|N|O|1996-12-15|1997-01-25|1997-01-12|NONE|SHIP|usual requests. boldly u| +6731|68847|18848|6|24|43580.16|0.07|0.05|N|O|1997-03-18|1997-01-29|1997-04-01|TAKE BACK RETURN|TRUCK|unusual pinto beans. f| +6731|105991|18494|7|50|99849.50|0.03|0.03|N|O|1997-02-07|1996-12-19|1997-02-21|TAKE BACK RETURN|MAIL|nal deposits sho| +6732|385844|48352|1|34|65614.22|0.07|0.00|A|F|1992-12-06|1992-11-19|1993-01-03|NONE|AIR|ts are carefully. express theodolites| +6732|875496|531|2|18|26486.10|0.01|0.04|R|F|1992-10-22|1992-11-28|1992-11-14|DELIVER IN PERSON|AIR|blithely express requests. ironic| +6732|460850|48378|3|12|21729.96|0.10|0.00|A|F|1993-01-01|1992-12-09|1993-01-16|COLLECT COD|AIR|efully beneath the even | +6732|493634|6144|4|23|37435.03|0.07|0.00|R|F|1992-10-06|1992-11-11|1992-10-15|DELIVER IN PERSON|RAIL|carefully final foxes across the quickly| +6732|498009|10519|5|6|6041.88|0.01|0.05|R|F|1992-12-18|1992-12-22|1993-01-17|DELIVER IN PERSON|REG AIR|ugh the ironic, pending platelets. final re| +6732|30881|30882|6|15|27178.20|0.04|0.04|R|F|1993-01-19|1992-12-10|1993-01-25|DELIVER IN PERSON|MAIL| the thinly fin| +6733|964070|1628|1|37|41959.11|0.07|0.03|N|O|1996-01-01|1996-03-11|1996-01-24|TAKE BACK RETURN|REG AIR|. carefully pending theodolites x-ray q| +6734|924343|11898|1|19|25978.70|0.08|0.03|N|O|1997-09-27|1997-07-16|1997-10-01|COLLECT COD|SHIP|the quickly final pinto beans| +6734|431458|31459|2|31|43072.33|0.08|0.06|N|O|1997-09-26|1997-08-13|1997-10-04|COLLECT COD|RAIL|s alongside of the slyly final packa| +6734|498880|48881|3|48|90185.28|0.02|0.07|N|O|1997-06-22|1997-08-26|1997-07-04|DELIVER IN PERSON|FOB| dolphins. furiously ironic dependencies| +6734|675309|12849|4|34|43665.18|0.02|0.00|N|O|1997-07-16|1997-08-08|1997-07-21|NONE|MAIL| integrate carefully bold instructio| +6734|907789|32826|5|25|44918.50|0.06|0.08|N|O|1997-08-20|1997-09-06|1997-09-05|DELIVER IN PERSON|AIR|ounts sleep carefully pending, bold t| +6735|25142|25143|1|37|39484.18|0.10|0.08|A|F|1993-07-08|1993-06-01|1993-07-23|NONE|AIR|egrate slyly above the| +6760|234721|22234|1|7|11589.97|0.07|0.08|A|F|1994-05-26|1994-07-23|1994-06-08|COLLECT COD|SHIP|t the bold, exp| +6760|947167|34722|2|47|57063.64|0.07|0.03|A|F|1994-08-11|1994-07-24|1994-08-31|DELIVER IN PERSON|SHIP|ncies was accounts. | +6760|30984|5985|3|7|13404.86|0.00|0.06|R|F|1994-06-22|1994-08-07|1994-07-03|NONE|TRUCK|slyly. furiously| +6760|737113|49628|4|35|40252.80|0.10|0.08|R|F|1994-06-17|1994-07-15|1994-07-11|COLLECT COD|MAIL|ajole carefully final packages. blithely | +6761|977688|27689|1|13|22953.32|0.03|0.04|R|F|1993-02-13|1993-03-09|1993-03-01|TAKE BACK RETURN|FOB|ctions mold fluffily b| +6761|1098|26099|2|47|46957.23|0.02|0.01|R|F|1993-04-19|1993-03-29|1993-05-14|NONE|MAIL|carefully regular packages haggle quickly | +6761|451754|26773|3|47|80169.31|0.10|0.00|R|F|1993-01-24|1993-03-25|1993-02-23|DELIVER IN PERSON|RAIL|sleep. silent packages b| +6761|619301|19302|4|2|2440.54|0.00|0.01|A|F|1993-04-21|1993-02-26|1993-05-04|NONE|MAIL|olites. special foxes ab| +6762|717096|17097|1|18|20035.08|0.06|0.01|N|O|1995-07-17|1995-05-11|1995-08-10|COLLECT COD|SHIP|final forges breach slyly | +6762|221928|46937|2|36|66596.76|0.06|0.08|N|O|1995-07-01|1995-07-09|1995-07-17|COLLECT COD|SHIP| quickly ruthless instructions sho| +6762|932213|32214|3|35|43580.95|0.05|0.06|R|F|1995-04-28|1995-05-18|1995-04-30|TAKE BACK RETURN|MAIL|usly final frets. blithe| +6762|698961|11475|4|39|76437.27|0.02|0.03|R|F|1995-04-23|1995-07-02|1995-05-21|TAKE BACK RETURN|REG AIR|sits. quickly ironic dep| +6762|424494|24495|5|43|60994.21|0.06|0.02|N|O|1995-07-13|1995-07-07|1995-07-20|COLLECT COD|RAIL|lar accounts nag ironic packages. carefull| +6762|454472|4473|6|2|2852.90|0.04|0.08|R|F|1995-04-30|1995-06-15|1995-05-27|TAKE BACK RETURN|AIR|furiously reg| +6762|296026|8532|7|47|48034.47|0.01|0.00|N|O|1995-06-30|1995-06-04|1995-07-04|NONE|TRUCK|an boost along the quickly regular | +6763|307644|20151|1|5|8258.15|0.10|0.07|N|O|1998-10-08|1998-08-10|1998-10-09|COLLECT COD|TRUCK| final requests. carefu| +6763|556092|31115|2|10|11480.70|0.04|0.05|N|O|1998-08-31|1998-07-21|1998-09-28|DELIVER IN PERSON|REG AIR|y unusual packages: furiousl| +6763|235785|23298|3|6|10324.62|0.03|0.08|N|O|1998-09-16|1998-08-15|1998-10-12|DELIVER IN PERSON|FOB|y accounts. quickly regular pint| +6764|866022|41057|1|46|45447.08|0.07|0.08|N|O|1996-01-01|1995-12-05|1996-01-18|DELIVER IN PERSON|MAIL|never even accounts cajole care| +6764|215335|15336|2|4|5001.28|0.00|0.02|N|O|1996-01-01|1995-12-06|1996-01-15|COLLECT COD|REG AIR|cingly special foxes. accounts poach| +6764|130797|18304|3|40|73111.60|0.09|0.08|N|O|1996-02-01|1995-12-26|1996-03-01|COLLECT COD|RAIL|efully unusual accounts. c| +6765|13081|13082|1|43|42745.44|0.05|0.00|R|F|1995-04-01|1995-05-14|1995-04-23|DELIVER IN PERSON|MAIL| the carefully unusual requests. bold co| +6765|848356|10873|2|1|1304.31|0.06|0.02|A|F|1995-06-13|1995-04-17|1995-06-16|NONE|REG AIR|refully regular accou| +6765|307687|32700|3|23|38977.41|0.03|0.02|A|F|1995-05-28|1995-05-17|1995-06-14|TAKE BACK RETURN|MAIL|es solve upon the ironic deposits. furious| +6765|291896|41897|4|2|3775.76|0.04|0.04|A|F|1995-04-04|1995-06-01|1995-04-10|TAKE BACK RETURN|AIR|quests cajole blithely slyl| +6765|892475|42476|5|46|67501.78|0.05|0.08|R|F|1995-05-05|1995-04-23|1995-05-17|DELIVER IN PERSON|RAIL|press. special, spe| +6765|824087|49120|6|36|36397.44|0.07|0.03|R|F|1995-06-11|1995-04-16|1995-06-16|DELIVER IN PERSON|RAIL|gle carefull| +6765|413530|26039|7|15|21652.65|0.05|0.07|A|F|1995-04-09|1995-06-03|1995-05-06|TAKE BACK RETURN|RAIL|s cajole bold grouc| +6766|188634|13641|1|12|20671.56|0.04|0.02|R|F|1992-08-28|1992-08-26|1992-09-03|COLLECT COD|REG AIR|sits. dependencies acro| +6767|511209|23720|1|39|47587.02|0.03|0.05|N|O|1995-10-05|1995-08-30|1995-10-17|COLLECT COD|FOB| packages. final requests use carefully ca| +6767|874240|49275|2|11|13356.20|0.08|0.01|N|O|1995-06-29|1995-08-09|1995-07-19|DELIVER IN PERSON|TRUCK|ctions are a| +6767|344625|32144|3|35|58436.35|0.08|0.07|N|O|1995-09-27|1995-08-01|1995-10-09|COLLECT COD|TRUCK|asymptotes wake thin, regu| +6767|97436|34940|4|31|44436.33|0.08|0.05|N|F|1995-06-12|1995-09-01|1995-06-24|DELIVER IN PERSON|SHIP|accounts will| +6792|29908|42409|1|48|88219.20|0.00|0.01|N|O|1995-07-29|1995-09-01|1995-08-09|NONE|FOB|odolites. final accounts against the s| +6793|126547|14054|1|44|69235.76|0.06|0.06|A|F|1992-09-22|1992-10-13|1992-09-24|COLLECT COD|AIR|unusual excuses. foxe| +6793|869481|19482|2|22|31909.68|0.00|0.07|A|F|1992-09-04|1992-10-22|1992-09-29|COLLECT COD|REG AIR|ss platelets. bold requests | +6793|356368|6369|3|33|47003.55|0.00|0.07|A|F|1992-10-03|1992-10-05|1992-10-29|COLLECT COD|TRUCK|. regular, express accounts hag| +6794|853042|28077|1|35|34825.00|0.10|0.00|A|F|1993-12-28|1993-12-22|1994-01-17|NONE|REG AIR|thlessly regular, unusual excus| +6794|68871|31373|2|34|62555.58|0.01|0.00|A|F|1993-11-19|1993-12-20|1993-12-08|COLLECT COD|AIR|old pinto be| +6794|504369|41900|3|9|12360.06|0.01|0.08|R|F|1993-12-25|1993-12-31|1994-01-01|NONE|FOB|le blithel| +6794|922336|34855|4|30|40748.70|0.00|0.07|A|F|1994-02-09|1993-12-06|1994-03-11|NONE|FOB|ely ironic requests boost furiously acros| +6794|697607|35147|5|9|14441.13|0.02|0.07|A|F|1993-12-31|1993-12-20|1994-01-19|TAKE BACK RETURN|TRUCK|ckages wake slyly. even, ironic pinto bea| +6794|669865|19866|6|28|51375.24|0.06|0.05|R|F|1994-02-06|1994-01-19|1994-02-28|DELIVER IN PERSON|MAIL|equests nag furiously against the daringly| +6794|411553|36570|7|27|39542.31|0.02|0.04|A|F|1994-02-18|1994-01-12|1994-03-17|TAKE BACK RETURN|REG AIR|lyly among the regular r| +6795|958512|8513|1|48|75382.56|0.01|0.07|N|O|1995-11-26|1995-11-19|1995-12-25|NONE|TRUCK|arefully car| +6795|695935|45936|2|12|23170.80|0.00|0.08|N|O|1995-11-02|1995-11-16|1995-11-21|TAKE BACK RETURN|RAIL|ual accounts. furiously| +6795|574256|11790|3|4|5320.92|0.09|0.06|N|O|1995-11-16|1995-12-04|1995-11-22|NONE|TRUCK|lve about the idly pending instru| +6796|590292|15315|1|16|22116.32|0.00|0.03|N|O|1995-11-18|1995-10-29|1995-12-09|NONE|RAIL|uriously unusual deposits| +6796|37363|37364|2|36|46812.96|0.07|0.05|N|O|1995-09-03|1995-10-01|1995-09-14|NONE|RAIL|eep. carefully special pinto | +6796|953277|28316|3|6|7981.38|0.03|0.07|N|O|1995-10-07|1995-11-18|1995-10-31|DELIVER IN PERSON|REG AIR|ites. carefully final theodolites| +6796|723585|48614|4|20|32171.00|0.04|0.08|N|O|1995-10-21|1995-09-24|1995-10-25|NONE|REG AIR|fluffily express accounts according | +6796|277406|27407|5|20|27667.80|0.07|0.05|N|O|1995-10-11|1995-09-28|1995-11-08|NONE|TRUCK|gle slyly carefully unusual pearls. quick| +6796|351955|1956|6|48|96333.12|0.00|0.03|N|O|1995-11-04|1995-09-29|1995-12-02|COLLECT COD|RAIL|uriously bold packages outside the s| +6796|298764|36280|7|46|81086.50|0.07|0.05|N|O|1995-09-17|1995-10-12|1995-10-09|TAKE BACK RETURN|REG AIR|ully! slyly silent courts cajole| +6797|311363|36376|1|23|31610.05|0.06|0.02|R|F|1994-09-03|1994-08-20|1994-09-06|NONE|SHIP|old multip| +6798|505227|42758|1|21|25876.20|0.09|0.07|R|F|1995-01-28|1995-02-28|1995-01-29|NONE|TRUCK|xes thrash. dependencies sublate. steal| +6798|339995|15008|2|10|20349.80|0.01|0.04|R|F|1995-01-21|1995-02-16|1995-01-22|NONE|SHIP|al deposits-- accounts mold. | +6798|295546|20557|3|5|7707.65|0.02|0.02|R|F|1995-03-30|1995-02-20|1995-04-19|TAKE BACK RETURN|SHIP|ove the sly| +6799|695800|45801|1|23|41302.71|0.10|0.04|A|F|1992-08-07|1992-07-01|1992-09-02|NONE|SHIP|egular ideas according| +6799|302488|27501|2|7|10433.29|0.08|0.00|A|F|1992-06-08|1992-06-26|1992-06-25|COLLECT COD|SHIP|s use agains| +6824|349570|24583|1|17|27532.52|0.02|0.01|N|O|1996-10-04|1996-11-02|1996-10-14|DELIVER IN PERSON|TRUCK| doze across the daring as| +6825|786752|11783|1|26|47806.72|0.09|0.04|N|O|1995-10-01|1995-08-16|1995-10-17|TAKE BACK RETURN|MAIL|r theodolites are. accounts boost slyly| +6825|937200|24755|2|42|51960.72|0.00|0.04|N|O|1995-10-19|1995-07-30|1995-10-31|TAKE BACK RETURN|RAIL|arefully regular instru| +6825|509397|9398|3|8|11250.96|0.07|0.06|N|O|1995-07-27|1995-09-14|1995-07-28|COLLECT COD|TRUCK|lyly unusual requests nag | +6825|424827|24828|4|22|38539.60|0.02|0.04|N|O|1995-08-13|1995-09-16|1995-09-01|DELIVER IN PERSON|SHIP|its boost fluf| +6826|268704|6220|1|6|10036.14|0.02|0.08|N|O|1996-02-04|1996-01-15|1996-02-14|COLLECT COD|TRUCK| deposits alongside of the furiously reg| +6826|93557|31061|2|32|49617.60|0.04|0.02|N|O|1996-01-08|1996-01-11|1996-01-30|DELIVER IN PERSON|AIR| dolphins kindle carefully regul| +6826|399261|36783|3|44|59851.00|0.08|0.08|N|O|1996-02-02|1995-12-08|1996-02-25|COLLECT COD|SHIP|regular hockey players| +6826|366320|3842|4|28|38816.68|0.01|0.04|N|O|1996-01-29|1995-12-24|1996-02-03|DELIVER IN PERSON|AIR| silent deposits. escapades nag s| +6826|726125|26126|5|15|17266.35|0.07|0.04|N|O|1996-01-15|1995-12-27|1996-02-11|NONE|FOB|uests. special| +6826|976198|1237|6|35|44595.25|0.06|0.04|N|O|1995-12-23|1995-12-14|1996-01-01|COLLECT COD|AIR|uctions sleep ironic pinto bean| +6826|954995|42553|7|37|75848.15|0.00|0.01|N|O|1996-02-13|1996-01-18|1996-03-01|COLLECT COD|MAIL|posits. regular d| +6827|591382|28916|1|36|53040.96|0.01|0.00|R|F|1992-12-20|1992-12-13|1993-01-10|DELIVER IN PERSON|REG AIR|o the carefully regular ideas nag | +6827|355106|17614|2|15|17416.35|0.10|0.06|A|F|1992-12-02|1992-12-22|1992-12-15|DELIVER IN PERSON|REG AIR|cording to the slyly bold theodo| +6827|251031|13537|3|37|36334.74|0.02|0.00|R|F|1992-10-20|1992-12-20|1992-11-19|TAKE BACK RETURN|FOB|blithely even accounts sleep along t| +6827|69867|7371|4|25|45921.50|0.03|0.06|R|F|1992-12-18|1992-12-19|1992-12-19|NONE|RAIL|al theodolite| +6827|249575|24584|5|34|51835.04|0.10|0.02|R|F|1992-10-31|1992-12-31|1992-11-19|TAKE BACK RETURN|MAIL|ole quickly according to the blithe i| +6828|988327|38328|1|11|15568.08|0.06|0.07|N|O|1996-03-22|1996-03-19|1996-03-23|NONE|MAIL| ironic pinto beans sleep furious| +6828|799513|12029|2|17|27412.16|0.00|0.04|N|O|1996-02-19|1996-02-15|1996-03-06|NONE|MAIL|ular deposits hinder sly, pending pin| +6828|406069|43594|3|9|8775.36|0.05|0.00|N|O|1996-02-26|1996-03-18|1996-03-22|COLLECT COD|SHIP|e slyly pending pinto beans. blithely regu| +6828|792252|42253|4|37|49736.14|0.03|0.02|N|O|1996-01-14|1996-03-29|1996-02-07|COLLECT COD|FOB| are. dolphins detect among| +6828|376091|38599|5|17|19840.36|0.00|0.03|N|O|1996-03-03|1996-02-06|1996-03-13|DELIVER IN PERSON|RAIL|lar requests! quickly silent instructio| +6829|83070|33071|1|20|21061.40|0.02|0.05|R|F|1994-12-09|1995-01-07|1994-12-21|TAKE BACK RETURN|TRUCK|haggle requests. slyly pending | +6829|152203|2204|2|30|37656.00|0.03|0.00|A|F|1995-03-02|1995-01-29|1995-03-15|TAKE BACK RETURN|MAIL|pliers along the even theodolites cajole| +6829|73250|35752|3|29|35474.25|0.03|0.01|R|F|1994-12-06|1995-01-05|1994-12-12|COLLECT COD|REG AIR|uriously even dinos. notornis sleep b| +6829|110182|47689|4|29|34573.22|0.00|0.05|R|F|1995-03-18|1994-12-23|1995-03-21|NONE|SHIP|lent instructions wake blithely quickl| +6829|826079|26080|5|38|38191.14|0.01|0.01|R|F|1994-11-22|1995-02-05|1994-12-17|TAKE BACK RETURN|MAIL| slyly express requests i| +6830|298794|23805|1|14|25098.92|0.02|0.04|A|F|1995-01-18|1995-02-20|1995-01-25|NONE|SHIP|pecial multipliers for the fi| +6830|824131|49164|2|8|8440.72|0.07|0.05|R|F|1995-02-02|1995-02-17|1995-02-22|COLLECT COD|MAIL|regular accounts a| +6830|160651|48161|3|32|54772.80|0.03|0.05|R|F|1994-12-12|1995-02-04|1995-01-03|NONE|AIR| boost ironically unusual, bra| +6831|143534|6037|1|33|52058.49|0.08|0.06|R|F|1993-07-09|1993-05-24|1993-07-21|COLLECT COD|MAIL|ggle furiously ab| +6831|363747|26255|2|29|52511.17|0.06|0.08|A|F|1993-06-20|1993-05-25|1993-06-28|NONE|FOB|ounts. dolphins above the sometimes reg| +6831|481913|44423|3|47|89059.83|0.04|0.01|A|F|1993-06-16|1993-04-29|1993-06-28|TAKE BACK RETURN|AIR|uickly unusual requests cajole s| +6831|504703|17214|4|24|40984.32|0.05|0.06|A|F|1993-03-23|1993-05-26|1993-03-27|NONE|MAIL|ctions use along the slyly final accoun| +6831|527472|15003|5|25|37486.25|0.01|0.08|A|F|1993-07-20|1993-05-27|1993-07-25|DELIVER IN PERSON|AIR|efully unusual requests wake carefull| +6856|214934|2447|1|11|20338.12|0.08|0.03|A|F|1994-03-16|1994-04-21|1994-03-21|DELIVER IN PERSON|FOB|ress theodolites after the slyly ironic pin| +6856|395205|32727|2|8|10401.52|0.00|0.02|A|F|1994-04-25|1994-04-09|1994-05-02|TAKE BACK RETURN|RAIL|o beans above the quickly | +6856|199755|49756|3|20|37095.00|0.02|0.02|A|F|1994-03-18|1994-04-26|1994-03-26|TAKE BACK RETURN|REG AIR| even deposits. careful| +6856|269764|44775|4|36|62415.00|0.03|0.00|A|F|1994-04-12|1994-04-20|1994-05-12|COLLECT COD|SHIP|ld, silent excuses ha| +6856|915835|40872|5|27|49971.33|0.06|0.07|R|F|1994-04-07|1994-03-07|1994-04-17|DELIVER IN PERSON|MAIL| deposits cajole among the sp| +6856|434260|9277|6|5|5971.20|0.02|0.03|R|F|1994-06-03|1994-04-01|1994-06-10|DELIVER IN PERSON|FOB| thrash furiously abo| +6856|606470|6471|7|48|66069.12|0.04|0.00|R|F|1994-05-28|1994-04-26|1994-06-03|DELIVER IN PERSON|SHIP|ts are carefully. carefully pendin| +6857|934392|34393|1|4|5705.40|0.04|0.04|N|O|1996-02-27|1996-02-16|1996-03-23|NONE|AIR|ckly quickly final deposits. slyly even ex| +6857|324138|36645|2|37|42998.44|0.04|0.00|N|O|1996-01-12|1996-03-13|1996-01-31|NONE|SHIP|ng to the slowly pe| +6857|784734|34735|3|23|41830.10|0.10|0.00|N|O|1996-01-06|1996-03-26|1996-01-25|NONE|TRUCK|ar platelets wake. carefully silen| +6857|14828|39829|4|36|62741.52|0.09|0.04|N|O|1996-01-14|1996-03-16|1996-01-25|COLLECT COD|TRUCK| carefully regular packages wake| +6857|198141|35651|5|8|9913.12|0.00|0.05|N|O|1996-04-11|1996-03-01|1996-04-14|NONE|REG AIR|eposits sleep furiously. final plat| +6858|631953|44466|1|44|82936.48|0.10|0.08|A|F|1994-10-16|1994-08-01|1994-10-25|DELIVER IN PERSON|AIR|pinto beans use carefully slyly ev| +6859|755014|5015|1|22|23517.56|0.01|0.05|A|F|1995-04-17|1995-04-06|1995-04-18|NONE|MAIL| haggle blithely carefully unusual accoun| +6859|518731|31242|2|40|69988.40|0.03|0.01|A|F|1995-03-23|1995-04-03|1995-04-11|TAKE BACK RETURN|TRUCK|ns. carefully fi| +6859|307248|32261|3|38|47698.74|0.00|0.00|A|F|1995-05-28|1995-05-14|1995-06-15|COLLECT COD|RAIL|ackages boos| +6859|901479|1480|4|19|28128.17|0.06|0.00|A|F|1995-05-09|1995-05-02|1995-05-26|DELIVER IN PERSON|AIR|e fluffily amon| +6860|684647|47161|1|18|29368.98|0.09|0.08|N|O|1997-01-17|1997-01-03|1997-01-27|COLLECT COD|FOB|y blithely ironic req| +6860|855520|18038|2|46|67872.08|0.09|0.00|N|O|1997-02-27|1997-02-07|1997-03-11|TAKE BACK RETURN|SHIP|ccounts. regular requests h| +6860|722702|22703|3|7|12072.69|0.08|0.03|N|O|1996-12-12|1996-12-22|1997-01-11|TAKE BACK RETURN|MAIL|e blithely even accounts | +6860|445012|45013|4|47|44978.53|0.01|0.00|N|O|1996-12-03|1997-02-03|1996-12-16|NONE|MAIL|its nag carefu| +6860|303546|28559|5|17|26342.01|0.09|0.05|N|O|1997-01-24|1997-01-09|1997-02-21|DELIVER IN PERSON|FOB|ages about the slyly iro| +6861|189314|14321|1|42|58939.02|0.08|0.05|R|F|1993-09-01|1993-06-18|1993-09-15|NONE|FOB|s according to the silently silent packa| +6861|790802|28348|2|21|39748.17|0.03|0.02|R|F|1993-05-16|1993-07-27|1993-06-13|COLLECT COD|RAIL|efully regular requests. sly| +6861|4370|29371|3|50|63718.50|0.01|0.06|A|F|1993-07-15|1993-07-29|1993-07-22|DELIVER IN PERSON|SHIP|uriously fi| +6862|781147|31148|1|50|61405.50|0.03|0.08|N|O|1996-09-03|1996-11-17|1996-09-16|TAKE BACK RETURN|REG AIR|lly unusual hockey players. furiou| +6863|862659|25177|1|44|71350.84|0.10|0.05|N|O|1996-11-11|1996-12-03|1996-11-28|DELIVER IN PERSON|RAIL|. blithely fi| +6863|699033|36573|2|1|1032.00|0.03|0.04|N|O|1997-01-21|1996-10-29|1997-01-26|TAKE BACK RETURN|SHIP|ckages are carefully afte| +6863|642026|29563|3|9|8711.91|0.10|0.05|N|O|1996-12-30|1996-11-04|1997-01-24|TAKE BACK RETURN|MAIL|affix quick| +6888|278484|3495|1|6|8774.82|0.04|0.07|N|O|1997-10-14|1997-10-10|1997-10-25|DELIVER IN PERSON|RAIL|ully unusual requests breach blithely de| +6888|470970|33480|2|28|54346.60|0.08|0.08|N|O|1997-10-28|1997-12-08|1997-11-18|NONE|AIR|ly slyly regular| +6888|589001|26535|3|25|27249.50|0.02|0.02|N|O|1997-09-14|1997-10-24|1997-09-28|TAKE BACK RETURN|AIR|ithely express reques| +6888|327304|14823|4|28|37276.12|0.07|0.01|N|O|1997-10-21|1997-11-15|1997-10-30|TAKE BACK RETURN|AIR|beans are furiously around the slyly | +6888|995866|8386|5|42|82396.44|0.06|0.02|N|O|1997-10-15|1997-10-10|1997-11-01|TAKE BACK RETURN|RAIL|thogs use carefully furiously even reques| +6888|517212|42233|6|13|15979.47|0.06|0.05|N|O|1997-10-24|1997-11-15|1997-10-28|TAKE BACK RETURN|REG AIR|riously after th| +6889|747761|10276|1|23|41600.79|0.01|0.01|N|O|1995-09-25|1995-11-12|1995-10-25|TAKE BACK RETURN|AIR|uriously express packages wake careful| +6889|617379|17380|2|32|41482.88|0.07|0.04|N|O|1995-12-17|1995-12-13|1996-01-10|TAKE BACK RETURN|REG AIR|ully. slyly ironic pinto beans wake c| +6889|286635|24151|3|40|64864.80|0.01|0.02|N|O|1996-01-03|1995-11-25|1996-01-25|TAKE BACK RETURN|SHIP|arefully even, sly| +6889|461249|48777|4|5|6051.10|0.08|0.00|N|O|1995-12-09|1995-12-07|1995-12-15|TAKE BACK RETURN|REG AIR|lites nag blit| +6890|820894|33411|1|21|38111.85|0.02|0.08|N|O|1998-06-18|1998-08-07|1998-06-30|COLLECT COD|SHIP|al pinto bean| +6890|749971|25000|2|26|52544.44|0.03|0.00|N|O|1998-07-07|1998-07-16|1998-07-29|COLLECT COD|TRUCK|ans. slyly daring deposits accordi| +6890|749792|37335|3|27|49727.52|0.02|0.02|N|O|1998-07-14|1998-08-19|1998-08-12|DELIVER IN PERSON|REG AIR|riously. furiously even requests alongs| +6890|742462|4977|4|18|27079.74|0.06|0.06|N|O|1998-06-14|1998-07-24|1998-07-05|DELIVER IN PERSON|REG AIR|r the furiously unusu| +6890|558142|33165|5|41|49204.92|0.10|0.08|N|O|1998-07-13|1998-08-14|1998-08-03|COLLECT COD|RAIL|ecial packages nag blithely unusual ide| +6890|679456|29457|6|6|8612.52|0.08|0.01|N|O|1998-09-18|1998-08-07|1998-09-22|TAKE BACK RETURN|RAIL|inal packages haggle| +6891|606785|6786|1|49|82895.75|0.02|0.05|A|F|1993-05-24|1993-04-16|1993-06-13|COLLECT COD|TRUCK| deposits haggle | +6892|304093|41612|1|36|39494.88|0.08|0.04|N|O|1995-08-21|1995-07-30|1995-08-31|NONE|REG AIR|unts. pending accounts wa| +6892|884057|21609|2|47|48927.47|0.03|0.06|N|O|1995-08-11|1995-06-11|1995-09-10|TAKE BACK RETURN|TRUCK|y above the blithely| +6892|343154|18167|3|35|41899.90|0.01|0.03|R|F|1995-06-01|1995-07-10|1995-06-04|COLLECT COD|FOB|furiously unusual foxes. furious, | +6892|389119|39120|4|15|18121.50|0.06|0.08|A|F|1995-06-02|1995-07-21|1995-06-08|NONE|RAIL| beans use furiously according to the care| +6892|911629|24148|5|2|3281.16|0.02|0.01|N|O|1995-08-04|1995-06-20|1995-09-02|TAKE BACK RETURN|REG AIR|uests haggle | +6892|733901|21444|6|8|15478.96|0.00|0.00|N|O|1995-08-28|1995-06-26|1995-09-01|COLLECT COD|AIR|ly regular theodolites.| +6892|659660|34687|7|15|24294.45|0.05|0.07|N|O|1995-06-27|1995-07-02|1995-07-02|NONE|AIR|heodolites use regular, final accoun| +6893|895363|45364|1|44|59766.08|0.10|0.05|N|O|1996-02-14|1996-03-19|1996-02-21|TAKE BACK RETURN|MAIL| special pinto beans. i| +6894|474946|12474|1|35|67232.20|0.10|0.01|R|F|1993-10-30|1993-12-07|1993-11-03|DELIVER IN PERSON|SHIP|ly even dependencies. carefully| +6894|413883|13884|2|42|75468.12|0.00|0.04|R|F|1993-11-04|1993-10-29|1993-11-25|COLLECT COD|FOB|ly ironic pinto beans ar| +6894|129106|4111|3|40|45404.00|0.10|0.07|R|F|1993-11-20|1993-11-08|1993-12-19|COLLECT COD|TRUCK|. furiously fina| +6894|880240|30241|4|10|12202.00|0.06|0.02|A|F|1993-10-25|1993-11-17|1993-11-23|TAKE BACK RETURN|SHIP|es. final deposits are| +6894|187181|12188|5|15|19022.70|0.00|0.08|R|F|1993-11-19|1993-11-11|1993-12-17|NONE|AIR|unts. blithely reg| +6894|946141|8660|6|38|45109.80|0.03|0.02|A|F|1994-01-15|1993-11-16|1994-02-13|NONE|SHIP|ngly bold | +6895|638670|38671|1|7|11260.48|0.08|0.01|A|F|1992-12-14|1992-12-07|1993-01-05|COLLECT COD|TRUCK|jole carefully regular packages; carefull| +6895|114491|1998|2|6|9032.94|0.09|0.08|A|F|1992-11-06|1992-11-04|1992-11-10|COLLECT COD|REG AIR|unts nag furiously accor| +6895|233847|46352|3|17|30274.11|0.10|0.00|R|F|1993-01-06|1992-10-23|1993-01-30|DELIVER IN PERSON|MAIL|ully express dep| +6895|263051|13052|4|27|27379.08|0.08|0.01|A|F|1992-09-16|1992-11-09|1992-10-11|NONE|MAIL|ely special accounts. pending deposits| +6895|97509|22512|5|26|39169.00|0.00|0.04|A|F|1992-11-21|1992-11-26|1992-12-07|COLLECT COD|AIR|d instructions. fluffi| +6895|829820|29821|6|2|3499.56|0.00|0.02|R|F|1992-10-25|1992-10-20|1992-11-05|COLLECT COD|AIR|sits. blithely ironic asymp| +6920|191945|29455|1|18|36664.92|0.04|0.00|N|O|1995-11-05|1995-12-13|1995-11-28|COLLECT COD|MAIL|s the even ideas. slyly special package| +6920|17920|30421|2|16|29406.72|0.02|0.01|N|O|1996-01-02|1995-11-17|1996-01-06|TAKE BACK RETURN|REG AIR|ove the quickly bold packages cajo| +6920|175141|25142|3|47|57158.58|0.01|0.00|N|O|1995-11-12|1995-12-25|1995-11-16|COLLECT COD|REG AIR|ng request| +6921|742115|29658|1|49|56696.92|0.07|0.08|A|F|1992-12-18|1992-12-17|1993-01-15|DELIVER IN PERSON|FOB| blithely final patter| +6921|719717|44746|2|10|17366.80|0.08|0.07|R|F|1992-10-13|1992-11-24|1992-10-27|COLLECT COD|RAIL|le across the furiously fluffy| +6921|278728|3739|3|1|1706.71|0.07|0.08|R|F|1992-11-16|1992-12-27|1992-11-27|COLLECT COD|FOB|. carefully e| +6921|577638|2661|4|26|44605.86|0.06|0.07|R|F|1992-11-06|1992-12-20|1992-12-05|NONE|FOB| pending requests snooze slyly| +6921|360271|10272|5|49|65231.74|0.07|0.05|A|F|1992-12-09|1992-11-23|1992-12-17|TAKE BACK RETURN|MAIL|sts doubt brav| +6921|63177|38180|6|20|22803.40|0.08|0.01|A|F|1992-11-22|1992-12-01|1992-11-28|TAKE BACK RETURN|REG AIR|s. special packages cajole slyly | +6922|207562|45075|1|42|61721.10|0.02|0.06|R|F|1994-04-17|1994-01-30|1994-04-30|TAKE BACK RETURN|FOB|y regular theodolites | +6922|483674|33675|2|48|79567.20|0.08|0.00|A|F|1994-03-31|1994-02-24|1994-04-15|DELIVER IN PERSON|FOB|inal accounts. furiously even packages c| +6922|92871|5373|3|7|13047.09|0.02|0.00|A|F|1994-01-25|1994-02-13|1994-02-06|COLLECT COD|TRUCK|y silent foxes across the pinto beans c| +6922|869344|19345|4|14|18386.20|0.04|0.08|A|F|1994-03-26|1994-01-31|1994-04-10|COLLECT COD|REG AIR|final foxes. even, even requests hag| +6923|802098|27131|1|40|40002.00|0.09|0.05|R|F|1992-01-28|1992-02-28|1992-02-24|DELIVER IN PERSON|REG AIR|ven accounts nag carefully; care| +6923|852655|40207|2|3|4822.83|0.04|0.05|R|F|1992-03-08|1992-03-10|1992-04-01|TAKE BACK RETURN|RAIL|egular deposits. always express p| +6923|567874|17875|3|15|29127.75|0.04|0.07|A|F|1992-04-13|1992-04-18|1992-05-08|TAKE BACK RETURN|REG AIR| ironic theo| +6923|246035|8540|4|48|47088.96|0.08|0.00|R|F|1992-04-06|1992-04-08|1992-04-13|NONE|TRUCK|s, pending ideas | +6924|306552|31565|1|17|26495.18|0.08|0.07|R|F|1993-06-22|1993-07-13|1993-06-30|DELIVER IN PERSON|RAIL|tect furiously with the unusual accounts!| +6924|206919|19424|2|34|62080.60|0.01|0.01|A|F|1993-06-06|1993-08-23|1993-06-11|NONE|REG AIR| haggle ruthle| +6924|682274|19814|3|28|35174.72|0.01|0.08|R|F|1993-08-03|1993-08-15|1993-08-28|COLLECT COD|REG AIR|pinto beans wake furiously toward the fur| +6924|976858|14416|4|21|40631.01|0.06|0.05|R|F|1993-09-23|1993-08-31|1993-10-02|DELIVER IN PERSON|FOB|inal packages. final waters acr| +6924|51628|14130|5|48|75821.76|0.00|0.06|A|F|1993-06-19|1993-07-15|1993-06-26|NONE|AIR|lyly bold deposits| +6924|707377|19892|6|39|53989.26|0.03|0.03|A|F|1993-06-15|1993-08-26|1993-06-19|DELIVER IN PERSON|SHIP|inal accounts wake quickly blithely regul| +6924|872390|22391|7|8|10898.80|0.05|0.02|R|F|1993-07-31|1993-09-01|1993-08-28|DELIVER IN PERSON|REG AIR|ss packages. even, bold ideas los| +6925|257879|20385|1|44|80821.84|0.05|0.07|N|O|1995-06-19|1995-06-09|1995-06-20|TAKE BACK RETURN|SHIP|requests haggle. bl| +6925|162967|37974|2|12|24359.52|0.04|0.05|N|O|1995-07-10|1995-04-28|1995-08-02|TAKE BACK RETURN|REG AIR|posits. special packages boost above the qu| +6925|969828|32348|3|1|1897.78|0.01|0.04|R|F|1995-03-24|1995-04-24|1995-04-08|TAKE BACK RETURN|RAIL|r instructions unwind boldly. quickly| +6925|898583|23618|4|18|28467.72|0.09|0.06|A|F|1995-05-25|1995-04-29|1995-06-07|COLLECT COD|FOB|serve across the blithely even warhorses| +6925|474253|49272|5|25|30680.75|0.07|0.05|R|F|1995-05-02|1995-05-09|1995-05-27|NONE|REG AIR|ely special asymptote| +6925|755935|43481|6|50|99545.00|0.04|0.03|A|F|1995-03-26|1995-05-03|1995-04-02|NONE|SHIP|ep slyly sly requests. bold request| +6925|991408|3928|7|23|34485.28|0.08|0.06|N|F|1995-06-09|1995-06-09|1995-06-30|COLLECT COD|MAIL|y carefully final r| +6926|593642|6154|1|42|72896.04|0.05|0.08|R|F|1993-12-26|1994-02-23|1994-01-01|NONE|REG AIR|s instructions unwind fluffi| +6926|334222|34223|2|26|32661.46|0.04|0.01|A|F|1994-01-15|1994-02-11|1994-01-16|COLLECT COD|SHIP|y regular t| +6926|254007|4008|3|11|10570.89|0.06|0.02|R|F|1994-04-08|1994-02-21|1994-05-01|COLLECT COD|TRUCK|ithin the furiously ironic foxes.| +6926|84147|9150|4|6|6786.84|0.03|0.05|R|F|1994-02-11|1994-03-05|1994-03-10|TAKE BACK RETURN|REG AIR| dinos among the dogged, expres| +6926|248561|36074|5|3|4528.65|0.09|0.02|A|F|1994-02-18|1994-02-14|1994-03-15|COLLECT COD|FOB|iously final packages. pendin| +6926|561591|36614|6|38|62797.66|0.08|0.03|R|F|1994-02-10|1994-03-05|1994-02-19|COLLECT COD|REG AIR|eep slyly iron| +6927|961966|11967|1|10|20279.20|0.04|0.00|N|O|1997-01-21|1996-11-16|1997-01-22|DELIVER IN PERSON|SHIP|ake furiously | +6927|757436|7437|2|15|22401.00|0.10|0.05|N|O|1997-01-22|1996-12-08|1997-02-12|COLLECT COD|REG AIR|ending deposits sleep idly even, regular| +6927|226229|38734|3|34|39277.14|0.07|0.00|N|O|1996-11-18|1996-11-09|1996-12-06|TAKE BACK RETURN|SHIP| ironic theodolites. blithely special pinto| +6927|224699|49708|4|3|4871.04|0.10|0.06|N|O|1997-01-15|1996-11-16|1997-01-17|TAKE BACK RETURN|FOB|y even packages. ironic courts boost bli| +6927|509551|47082|5|20|31210.60|0.03|0.03|N|O|1996-10-10|1996-12-26|1996-10-24|COLLECT COD|AIR| ironic requests. furiously sile| +6927|9822|47323|6|6|10390.92|0.06|0.00|N|O|1996-10-03|1996-11-06|1996-10-19|NONE|FOB|s unwind regula| +6952|578692|28693|1|48|84992.16|0.07|0.00|A|F|1992-09-25|1992-10-15|1992-10-05|NONE|REG AIR|r platelets!| +6952|70124|45127|2|17|18600.04|0.00|0.00|A|F|1992-09-18|1992-11-27|1992-09-27|COLLECT COD|TRUCK|s unwind slyly reg| +6952|557850|45384|3|22|41972.26|0.07|0.05|A|F|1992-09-21|1992-10-22|1992-10-17|COLLECT COD|TRUCK|ding packages against the final, i| +6952|780087|42603|4|40|46682.00|0.05|0.06|A|F|1992-10-24|1992-10-20|1992-11-06|TAKE BACK RETURN|TRUCK| packages c| +6952|906684|6685|5|7|11834.48|0.09|0.02|A|F|1992-12-05|1992-10-13|1992-12-28|DELIVER IN PERSON|AIR|ilently ironic| +6952|630248|5273|6|2|2356.42|0.07|0.06|A|F|1992-12-23|1992-10-19|1993-01-05|COLLECT COD|FOB|rthogs. daring foxes run furiously a| +6952|573898|48921|7|19|37465.53|0.09|0.05|A|F|1992-11-19|1992-11-29|1992-11-26|NONE|TRUCK|eposits according to the blithely re| +6953|496877|21896|1|42|78701.70|0.01|0.07|N|O|1995-12-09|1996-02-14|1995-12-31|DELIVER IN PERSON|REG AIR|nic packages. bold asym| +6954|538909|26440|1|18|35061.84|0.01|0.01|A|F|1992-06-02|1992-05-15|1992-06-06|COLLECT COD|MAIL|s wake blithely. express excuses caj| +6955|609244|21757|1|35|40362.35|0.05|0.02|R|F|1994-03-18|1994-04-05|1994-03-23|NONE|REG AIR|. deposits unwind. slyly regular deposi| +6956|498907|11417|1|19|36211.72|0.10|0.01|A|F|1994-07-19|1994-08-07|1994-08-02|TAKE BACK RETURN|TRUCK|ges unwind carefully around the | +6957|560190|22702|1|5|6250.85|0.03|0.07|N|O|1996-08-02|1996-07-21|1996-08-31|TAKE BACK RETURN|AIR|uickly carefully unusual requests. p| +6957|97754|35258|2|1|1751.75|0.04|0.08|N|O|1996-08-24|1996-06-08|1996-09-15|COLLECT COD|MAIL|y bold depo| +6957|949104|49105|3|33|38050.98|0.09|0.08|N|O|1996-05-11|1996-06-14|1996-05-23|TAKE BACK RETURN|FOB|ar requests boost carefully bold accou| +6958|244557|7062|1|14|21021.56|0.05|0.06|N|O|1996-01-29|1996-03-14|1996-02-05|COLLECT COD|MAIL|ndencies nag slyly. s| +6958|261483|48999|2|7|10111.29|0.01|0.02|N|O|1996-01-26|1996-03-27|1996-02-06|DELIVER IN PERSON|FOB|blithely final packages cajole fl| +6958|740880|40881|3|17|32654.45|0.08|0.03|N|O|1996-04-05|1996-03-10|1996-04-27|TAKE BACK RETURN|SHIP|onic pinto beans sleep qui| +6958|966823|16824|4|44|83150.32|0.10|0.04|N|O|1996-05-05|1996-04-16|1996-05-11|COLLECT COD|MAIL|ironic, final platele| +6959|892119|29671|1|36|39998.52|0.07|0.07|R|F|1994-02-04|1994-01-17|1994-03-03|TAKE BACK RETURN|REG AIR|osits affix across the| +6959|837493|12526|2|15|21456.75|0.03|0.04|A|F|1993-12-21|1993-12-30|1994-01-05|TAKE BACK RETURN|FOB|y unusual theodol| +6959|739397|14426|3|21|30163.56|0.10|0.00|A|F|1993-12-23|1994-01-08|1994-01-20|DELIVER IN PERSON|MAIL|tions mold according to the| +6959|31948|19449|4|45|84597.30|0.10|0.06|R|F|1993-11-29|1994-01-24|1993-12-22|NONE|MAIL|ironic package| +6959|947481|35036|5|23|35154.12|0.10|0.08|R|F|1993-11-14|1994-01-10|1993-11-15|COLLECT COD|AIR|ietly careful foxes. slyly iron| +6959|300815|13322|6|43|78079.40|0.01|0.05|R|F|1993-12-18|1994-01-25|1994-01-14|COLLECT COD|REG AIR|osits could haggle.| +6959|785995|11026|7|47|97805.12|0.08|0.01|A|F|1993-12-03|1993-12-06|1993-12-12|DELIVER IN PERSON|TRUCK|lar orbits. blithely iro| +6984|211586|24091|1|37|55410.09|0.05|0.03|N|O|1995-07-06|1995-09-12|1995-07-13|NONE|AIR|l, regular dolphins wake accordin| +6984|118178|43183|2|16|19138.72|0.05|0.05|N|O|1995-08-11|1995-08-17|1995-08-23|NONE|TRUCK|ly bold pinto | +6984|215780|15781|3|2|3391.54|0.09|0.05|N|O|1995-07-30|1995-08-17|1995-08-28|DELIVER IN PERSON|AIR|key players hagg| +6984|613088|13089|4|29|29030.45|0.07|0.06|N|O|1995-08-24|1995-09-19|1995-08-28|COLLECT COD|AIR|y regular packages are | +6984|164114|39121|5|9|10602.99|0.06|0.05|N|O|1995-10-07|1995-09-17|1995-10-15|TAKE BACK RETURN|RAIL|. unusual, express excuses h| +6985|494847|7357|1|45|82881.90|0.06|0.04|R|F|1993-06-22|1993-06-09|1993-06-24|COLLECT COD|REG AIR|ons. ironic, bold inst| +6985|877742|2777|2|43|73947.10|0.03|0.02|R|F|1993-03-18|1993-04-28|1993-04-05|COLLECT COD|FOB|re quickly regular| +6985|195063|7567|3|50|57903.00|0.08|0.03|R|F|1993-03-25|1993-05-01|1993-04-17|NONE|MAIL|nstructions. fu| +6986|164216|14217|1|44|56329.24|0.01|0.05|A|F|1992-12-09|1992-11-28|1992-12-19|DELIVER IN PERSON|TRUCK|t the slyly even foxes. quickly pendin| +6986|974270|11828|2|38|51080.74|0.02|0.03|R|F|1992-10-18|1993-01-04|1992-11-15|COLLECT COD|SHIP|unts doubt according to the final,| +6986|540553|28084|3|15|23902.95|0.08|0.07|A|F|1992-11-24|1993-01-07|1992-12-24|TAKE BACK RETURN|RAIL|ar pinto beans haggle bol| +6986|60381|47885|4|2|2682.76|0.07|0.00|A|F|1992-12-13|1992-12-27|1992-12-15|TAKE BACK RETURN|AIR|he slyly regular instructions haggle | +6986|814592|39625|5|27|40676.85|0.01|0.00|R|F|1992-10-30|1993-01-03|1992-11-25|TAKE BACK RETURN|SHIP| bold tithes are fluffily. blithely iro| +6986|834244|46761|6|18|21207.60|0.04|0.06|R|F|1992-12-27|1993-01-03|1993-01-04|COLLECT COD|RAIL| even excuses| +6987|863397|25915|1|11|14963.85|0.00|0.08|N|O|1998-09-23|1998-09-24|1998-10-05|DELIVER IN PERSON|REG AIR| brave, enticing fo| +6987|96597|34101|2|4|6374.36|0.06|0.01|N|O|1998-07-14|1998-08-04|1998-07-25|DELIVER IN PERSON|REG AIR|carefully ironic instructions. final | +6987|495317|20336|3|47|61677.63|0.08|0.06|N|O|1998-07-22|1998-07-29|1998-08-08|NONE|MAIL|d of the ca| +6988|525959|38470|1|20|39698.60|0.06|0.01|A|F|1995-03-25|1995-03-30|1995-04-23|COLLECT COD|MAIL|es. accounts af| +6988|776208|38724|2|11|14125.87|0.05|0.04|A|F|1995-04-04|1995-04-16|1995-04-06|NONE|SHIP|ently blithely iron| +6988|722373|22374|3|14|19534.76|0.03|0.05|R|F|1995-04-09|1995-04-10|1995-04-14|DELIVER IN PERSON|REG AIR|ages. caref| +6989|598317|48318|1|35|49535.15|0.09|0.03|N|O|1995-08-13|1995-07-22|1995-08-17|TAKE BACK RETURN|MAIL|lites nag blithely according t| +6989|910374|35411|2|5|6921.65|0.09|0.00|N|O|1995-09-10|1995-08-22|1995-09-19|TAKE BACK RETURN|TRUCK|odolites. blithely | +6989|650092|25119|3|38|39598.28|0.06|0.00|N|O|1995-07-12|1995-09-11|1995-08-02|COLLECT COD|SHIP|he slyly final instructions. slyly| +6990|333369|45876|1|33|46277.55|0.02|0.05|N|O|1998-04-27|1998-05-17|1998-05-10|DELIVER IN PERSON|AIR|sts sleep. final id| +6990|921076|33595|2|42|46075.26|0.02|0.06|N|O|1998-06-27|1998-04-29|1998-07-20|COLLECT COD|RAIL| wake. final accounts cajole evenly | +6990|514302|1833|3|45|59232.60|0.04|0.04|N|O|1998-05-04|1998-05-15|1998-05-23|TAKE BACK RETURN|FOB| special deposits. bli| +6990|863285|13286|4|17|21220.08|0.01|0.05|N|O|1998-04-11|1998-05-12|1998-04-16|NONE|TRUCK| furiously | +6991|940907|15944|1|49|95445.14|0.06|0.01|N|F|1995-06-02|1995-07-28|1995-06-28|COLLECT COD|AIR|ts kindle slyly| +6991|822886|22887|2|33|59691.72|0.10|0.04|N|O|1995-07-11|1995-06-13|1995-07-15|NONE|AIR|ing requests maintain p| +6991|241721|4226|3|29|48218.59|0.05|0.02|N|O|1995-08-15|1995-06-10|1995-08-26|COLLECT COD|REG AIR|ully unusual asymptotes sleep. spec| +7016|951500|39058|1|33|51198.18|0.01|0.01|R|F|1995-05-01|1995-05-24|1995-05-13|TAKE BACK RETURN|REG AIR|onic accounts affix| +7016|844049|44050|2|47|46671.00|0.02|0.08|N|O|1995-06-21|1995-04-14|1995-07-05|NONE|REG AIR|asymptotes. instructions acr| +7016|915220|15221|3|1|1235.18|0.05|0.06|N|O|1995-06-28|1995-05-04|1995-07-20|COLLECT COD|FOB|iously. slyly unusual ideas | +7016|86063|11066|4|8|8392.48|0.10|0.01|R|F|1995-03-22|1995-05-22|1995-03-24|COLLECT COD|TRUCK|lly ironic accounts | +7016|449156|49157|5|49|54151.37|0.09|0.01|N|O|1995-07-03|1995-05-20|1995-07-24|NONE|TRUCK|quests sleep inst| +7016|954069|16589|6|6|6738.12|0.06|0.04|A|F|1995-05-29|1995-05-06|1995-06-06|NONE|AIR|eas about the ironic excuses wa| +7016|29406|41907|7|7|9347.80|0.04|0.03|N|O|1995-06-22|1995-05-23|1995-07-01|NONE|TRUCK|its! foxes unwind above the unusual de| +7017|222548|35053|1|18|26469.54|0.03|0.07|N|O|1996-03-07|1996-04-20|1996-03-21|TAKE BACK RETURN|SHIP|s haggle carefully ab| +7018|788258|25804|1|10|13462.20|0.00|0.00|A|F|1995-05-16|1995-06-17|1995-05-31|NONE|FOB| along the furiously unusual requests| +7018|247702|35215|2|18|29694.42|0.09|0.04|N|F|1995-06-13|1995-07-07|1995-06-27|TAKE BACK RETURN|SHIP| packages impre| +7019|698675|11189|1|49|82008.36|0.07|0.05|A|F|1994-05-19|1994-07-11|1994-06-05|TAKE BACK RETURN|MAIL|even accounts. blithe packages wake | +7019|624503|37016|2|39|55671.33|0.03|0.02|R|F|1994-06-18|1994-06-20|1994-06-23|COLLECT COD|REG AIR|sual pinto beans. slyly| +7020|900545|25582|1|15|23182.50|0.06|0.01|N|O|1996-08-17|1996-10-27|1996-08-26|TAKE BACK RETURN|SHIP|y ironic accounts| +7020|443224|18241|2|44|51356.80|0.01|0.01|N|O|1996-10-04|1996-11-06|1996-10-12|DELIVER IN PERSON|RAIL|eat fluffily package| +7020|265378|2894|3|19|25523.84|0.04|0.05|N|O|1996-09-09|1996-09-19|1996-10-02|NONE|AIR|odolites about the carefully| +7020|191421|3925|4|7|10586.94|0.05|0.01|N|O|1996-12-12|1996-10-14|1997-01-09|TAKE BACK RETURN|FOB|ke. express deposits thrash furiously afte| +7021|882181|32182|1|47|54667.58|0.07|0.04|N|O|1998-07-28|1998-07-07|1998-08-02|TAKE BACK RETURN|MAIL|y even theodolites nag blithely along th| +7021|811605|24122|2|12|18198.72|0.07|0.07|N|O|1998-07-03|1998-07-01|1998-07-20|COLLECT COD|MAIL|ts haggle slyly. slyl| +7021|635998|48511|3|1|1933.96|0.08|0.00|N|O|1998-06-19|1998-06-30|1998-07-15|TAKE BACK RETURN|AIR|c deposits| +7021|207512|45025|4|10|14195.00|0.02|0.07|N|O|1998-08-05|1998-05-31|1998-08-28|TAKE BACK RETURN|MAIL|e-- furiously pending dep| +7022|968902|31422|1|10|19708.60|0.00|0.07|R|F|1992-02-16|1992-04-01|1992-02-29|TAKE BACK RETURN|AIR| foxes wake carefully ac| +7023|321789|46802|1|11|19918.47|0.00|0.00|N|O|1997-01-29|1997-02-06|1997-02-13|DELIVER IN PERSON|REG AIR|sual ideas. unusual packag| +7023|296138|8644|2|21|23816.52|0.00|0.03|N|O|1997-02-12|1997-02-21|1997-03-14|TAKE BACK RETURN|AIR|ironic packages. fluffily pending pint| +7023|187115|24625|3|42|50488.62|0.00|0.08|N|O|1997-02-03|1997-01-29|1997-02-06|NONE|TRUCK|uses sleep b| +7023|829764|29765|4|35|59280.20|0.02|0.02|N|O|1997-01-15|1997-02-19|1997-02-05|COLLECT COD|FOB|express grouches. requests use bli| +7023|831489|31490|5|35|49715.40|0.02|0.08|N|O|1997-02-02|1997-02-13|1997-03-04|TAKE BACK RETURN|TRUCK|final platelets cajole fluffily slyly| +7023|828696|16245|6|8|12997.20|0.04|0.05|N|O|1997-02-14|1997-01-14|1997-02-21|DELIVER IN PERSON|TRUCK|ide the final, ironic instructions.| +7023|883723|46241|7|14|23893.52|0.08|0.00|N|O|1997-01-13|1997-02-09|1997-01-29|TAKE BACK RETURN|AIR|egular, silen| +7048|716801|4344|1|29|52715.33|0.09|0.07|N|O|1996-12-19|1996-12-25|1997-01-14|NONE|SHIP|fily final requests. blithe| +7048|267836|17837|2|49|88387.18|0.03|0.04|N|O|1996-11-02|1996-12-27|1996-11-21|TAKE BACK RETURN|TRUCK|packages about the blithely quick ide| +7048|512319|37340|3|44|58576.76|0.08|0.08|N|O|1996-11-18|1996-11-06|1996-12-14|DELIVER IN PERSON|RAIL|against the regular, ironic | +7048|530011|30012|4|15|15614.85|0.05|0.06|N|O|1996-10-31|1996-12-19|1996-11-14|DELIVER IN PERSON|RAIL|es haggle furiously after th| +7049|65580|3084|1|34|52549.72|0.06|0.01|A|F|1992-05-07|1992-03-26|1992-05-11|NONE|SHIP|fix. furious| +7049|190315|15322|2|3|4215.93|0.05|0.06|R|F|1992-03-03|1992-03-16|1992-03-27|DELIVER IN PERSON|MAIL|into beans. ideas along the furiously expre| +7050|720058|45087|1|9|9702.18|0.08|0.02|R|F|1992-05-05|1992-06-16|1992-05-21|NONE|TRUCK|es. ironic requests cajole blithely car| +7050|352|12853|2|39|48841.65|0.06|0.00|R|F|1992-05-30|1992-05-17|1992-06-28|COLLECT COD|FOB|ess requests | +7050|908416|20935|3|34|48428.58|0.07|0.02|A|F|1992-06-30|1992-06-06|1992-07-20|NONE|TRUCK|carefully final instructions ha| +7051|391249|41250|1|47|62990.81|0.02|0.07|N|O|1997-10-29|1998-01-05|1997-11-15|DELIVER IN PERSON|FOB|l foxes according to the acc| +7051|721432|21433|2|37|53775.80|0.10|0.02|N|O|1997-11-09|1997-11-29|1997-11-22|DELIVER IN PERSON|FOB|to the regular, regular deposits. blithely | +7051|92759|30263|3|30|52552.50|0.07|0.07|N|O|1998-01-14|1997-11-26|1998-02-07|DELIVER IN PERSON|FOB|nts. dolphins breach | +7052|485499|35500|1|19|28204.93|0.08|0.02|N|O|1995-11-26|1995-11-21|1995-12-14|DELIVER IN PERSON|FOB|lites sleep carefull| +7053|678266|3293|1|3|3732.69|0.10|0.04|N|O|1997-03-23|1997-05-04|1997-04-04|DELIVER IN PERSON|MAIL|after the regular, pending accounts| +7053|609100|46637|2|36|36326.52|0.05|0.06|N|O|1997-05-10|1997-03-10|1997-05-16|NONE|TRUCK| cajole carefully bold,| +7054|698734|11248|1|43|74506.10|0.03|0.05|R|F|1994-01-06|1993-12-12|1994-01-24|DELIVER IN PERSON|SHIP|fix across the regula| +7054|619642|19643|2|33|51533.13|0.05|0.06|A|F|1993-10-23|1993-11-12|1993-11-19|TAKE BACK RETURN|MAIL|ly ironic fox| +7054|306464|43983|3|5|7352.25|0.09|0.00|A|F|1993-11-03|1993-11-26|1993-11-27|TAKE BACK RETURN|RAIL|re fluffily at the quickly regular instru| +7054|723799|23800|4|6|10936.56|0.02|0.02|R|F|1993-10-27|1993-12-31|1993-11-20|NONE|FOB|en requests nag fluffily ironic | +7054|876808|1843|5|47|83883.72|0.07|0.00|R|F|1993-10-09|1993-11-17|1993-11-04|COLLECT COD|TRUCK|ggle according to the asymp| +7054|501487|1488|6|20|29769.20|0.04|0.00|R|F|1993-12-08|1993-11-24|1993-12-17|TAKE BACK RETURN|TRUCK| packages nag across the slyly brave | +7054|475678|38188|7|44|72760.60|0.10|0.03|R|F|1993-10-11|1993-12-18|1993-10-21|DELIVER IN PERSON|FOB|ounts. furiously even re| +7055|717585|30100|1|34|54486.70|0.02|0.02|N|O|1997-10-01|1997-08-10|1997-10-29|TAKE BACK RETURN|FOB|es. sometimes special deposits hinder acro| +7080|795179|45180|1|7|8918.98|0.09|0.05|A|F|1994-05-25|1994-04-13|1994-06-16|TAKE BACK RETURN|REG AIR|usly. carefully final f| +7080|565424|40447|2|35|52129.00|0.04|0.06|R|F|1994-04-14|1994-05-21|1994-04-20|NONE|TRUCK|nic deposits. c| +7081|145526|20531|1|41|64432.32|0.09|0.03|N|O|1997-04-24|1997-05-30|1997-04-30|NONE|MAIL|gular notornis lose quickly final deposit| +7082|425683|25684|1|21|33781.86|0.02|0.05|N|O|1997-04-12|1997-04-18|1997-05-09|NONE|SHIP|s. unusual accounts cajole b| +7082|446361|33886|2|34|44449.56|0.10|0.01|N|O|1997-03-15|1997-04-06|1997-03-24|COLLECT COD|REG AIR|t about the furiously regular pearls.| +7083|590|38091|1|31|46208.29|0.00|0.00|R|F|1994-08-13|1994-09-06|1994-08-16|DELIVER IN PERSON|SHIP|lithely regu| +7083|906157|31194|2|26|30240.86|0.00|0.05|A|F|1994-10-28|1994-10-08|1994-11-19|TAKE BACK RETURN|RAIL|onic, final dep| +7083|771503|21504|3|30|47234.10|0.04|0.05|A|F|1994-09-19|1994-09-21|1994-09-24|TAKE BACK RETURN|REG AIR|ic theodolites according to the| +7083|636121|23658|4|36|38055.24|0.00|0.03|A|F|1994-10-22|1994-10-12|1994-10-31|COLLECT COD|MAIL|e slyly furious packages. special requests | +7084|299572|12078|1|45|70720.20|0.10|0.06|A|F|1993-03-01|1993-04-15|1993-03-15|TAKE BACK RETURN|TRUCK|deposits. blithely ironic pac| +7084|905594|18113|2|23|36789.65|0.00|0.03|R|F|1993-05-11|1993-04-30|1993-06-02|TAKE BACK RETURN|RAIL|cross the regul| +7084|312021|12022|3|12|12396.12|0.04|0.03|R|F|1993-02-17|1993-03-29|1993-02-20|TAKE BACK RETURN|MAIL|re. unusual theodolites| +7084|120802|33305|4|40|72912.00|0.08|0.05|A|F|1993-05-10|1993-04-20|1993-06-03|DELIVER IN PERSON|SHIP|deposits run against the slyly bold d| +7084|303065|40584|5|48|51266.40|0.07|0.04|A|F|1993-05-14|1993-04-03|1993-05-19|TAKE BACK RETURN|FOB|ffily regula| +7084|598198|35732|6|22|28515.74|0.00|0.01|R|F|1993-04-27|1993-04-02|1993-04-28|DELIVER IN PERSON|MAIL|mpress quickly alongsi| +7084|908154|8155|7|45|52294.95|0.09|0.05|A|F|1993-03-21|1993-03-30|1993-04-15|DELIVER IN PERSON|AIR|hely unusual platel| +7085|337752|37753|1|20|35794.80|0.07|0.04|R|F|1994-07-21|1994-06-26|1994-08-11|DELIVER IN PERSON|RAIL|inal foxes across the regular, pending th| +7085|583403|8426|2|21|31213.98|0.02|0.08|R|F|1994-06-22|1994-07-12|1994-06-23|TAKE BACK RETURN|REG AIR| wake. quickly ironic | +7085|252413|39929|3|13|17750.20|0.10|0.06|R|F|1994-07-23|1994-07-03|1994-07-26|NONE|RAIL|. fluffily iro| +7085|292552|17563|4|2|3089.08|0.01|0.00|R|F|1994-05-15|1994-06-24|1994-06-01|COLLECT COD|TRUCK|pinto beans use furiously. i| +7085|909914|9915|5|34|65411.58|0.05|0.05|R|F|1994-08-02|1994-06-05|1994-08-07|TAKE BACK RETURN|TRUCK|s across the pendin| +7085|909203|46758|6|8|9697.28|0.09|0.04|A|F|1994-07-20|1994-07-01|1994-08-10|NONE|SHIP|s run furiously| +7085|960559|23079|7|35|56682.85|0.00|0.05|R|F|1994-08-23|1994-06-04|1994-09-11|DELIVER IN PERSON|FOB|ily ironic requests. fluffily express | +7086|114797|27300|1|5|9058.95|0.05|0.01|R|F|1992-10-10|1992-11-07|1992-11-02|TAKE BACK RETURN|FOB|elets. final packages across the carefu| +7087|41260|41261|1|20|24025.20|0.06|0.05|A|F|1993-07-05|1993-06-17|1993-07-11|NONE|REG AIR|kages are. care| +7112|20677|8178|1|23|36746.41|0.01|0.07|A|F|1995-03-07|1995-02-02|1995-03-28|DELIVER IN PERSON|FOB|ly regular frets. regular deposits around| +7112|517617|17618|2|32|52306.88|0.06|0.02|A|F|1994-12-31|1995-02-13|1995-01-23|NONE|SHIP|courts are| +7112|573557|48580|3|14|22827.42|0.09|0.05|R|F|1995-03-29|1995-02-08|1995-04-25|NONE|AIR| x-ray furiously | +7113|181823|19333|1|6|11428.92|0.06|0.00|N|O|1995-08-12|1995-08-14|1995-08-20|TAKE BACK RETURN|REG AIR|gedly even pinto beans wake f| +7113|898339|23374|2|31|41455.99|0.00|0.08|N|O|1995-08-09|1995-09-27|1995-08-19|NONE|TRUCK| final realms. regular dugouts ab| +7113|367929|30437|3|1|1996.91|0.08|0.08|N|O|1995-10-31|1995-09-14|1995-11-20|NONE|REG AIR|lithely regular deposits wake-- carefully e| +7114|186043|36044|1|37|41774.48|0.10|0.04|N|O|1997-12-18|1998-01-15|1997-12-29|NONE|RAIL| regular pinto beans: blithely final| +7114|809001|34034|2|21|19109.16|0.10|0.02|N|O|1998-01-22|1997-12-03|1998-02-05|COLLECT COD|RAIL|. blithely perma| +7114|866644|16645|3|45|72477.00|0.10|0.06|N|O|1998-01-08|1998-01-27|1998-01-29|DELIVER IN PERSON|TRUCK|slyly according to the packages. | +7115|990362|15401|1|19|27594.08|0.02|0.00|N|O|1995-07-30|1995-07-10|1995-08-15|COLLECT COD|AIR|ully regular pl| +7115|998892|36450|2|4|7963.40|0.00|0.08|N|O|1995-09-04|1995-08-05|1995-09-15|TAKE BACK RETURN|REG AIR|-- slyly express | +7115|365799|28307|3|1|1864.78|0.03|0.04|N|O|1995-07-14|1995-07-29|1995-07-18|COLLECT COD|REG AIR|deas use carefully | +7115|971783|9341|4|27|50077.98|0.06|0.07|N|O|1995-06-18|1995-07-22|1995-07-15|NONE|TRUCK|l dolphins af| +7115|752515|27546|5|7|10972.36|0.04|0.04|R|F|1995-05-30|1995-07-19|1995-06-13|DELIVER IN PERSON|FOB| the carefully regular orbit| +7116|906353|43908|1|14|19030.34|0.04|0.08|N|O|1996-09-30|1996-08-19|1996-10-15|DELIVER IN PERSON|REG AIR| accounts! carefully regular| +7116|73980|36482|2|22|42987.56|0.05|0.01|N|O|1996-09-26|1996-09-15|1996-10-08|TAKE BACK RETURN|AIR|lithely special foxes. quick| +7116|373508|36016|3|21|33211.29|0.00|0.00|N|O|1996-08-25|1996-08-08|1996-09-02|COLLECT COD|MAIL|fully even waters. furiously express pack| +7117|228209|15722|1|21|23880.99|0.01|0.01|R|F|1993-09-01|1993-10-16|1993-09-17|NONE|FOB| against the ironic deposits| +7117|498868|23887|2|49|91475.16|0.01|0.02|A|F|1993-09-10|1993-10-31|1993-10-04|COLLECT COD|FOB|le never. special depo| +7117|466580|4108|3|4|6186.24|0.07|0.03|R|F|1993-12-21|1993-11-07|1994-01-17|COLLECT COD|TRUCK| alongside of the requests wake un| +7117|794979|20010|4|21|43552.74|0.00|0.04|A|F|1993-12-04|1993-11-20|1993-12-16|DELIVER IN PERSON|RAIL|t the blithely regular pains. f| +7118|907738|32775|1|17|29676.73|0.08|0.06|N|O|1997-06-25|1997-04-14|1997-07-01|NONE|SHIP|sts. even, final platelets aff| +7118|351629|1630|2|1|1680.61|0.08|0.05|N|O|1997-03-04|1997-05-04|1997-03-27|NONE|FOB|atelets after the fluffily express| +7118|823733|36250|3|26|43073.94|0.09|0.00|N|O|1997-06-05|1997-05-29|1997-06-10|NONE|TRUCK|ding excuses; ca| +7119|101386|13889|1|23|31909.74|0.01|0.03|N|O|1997-01-19|1996-12-27|1997-01-26|TAKE BACK RETURN|REG AIR| carefully slyly bold excuses. i| +7119|992796|30354|2|1|1888.75|0.01|0.05|N|O|1997-01-18|1996-12-19|1997-02-16|NONE|REG AIR|arefully regular, ironic| +7119|915307|40344|3|27|35701.02|0.01|0.01|N|O|1997-02-17|1997-01-20|1997-02-21|DELIVER IN PERSON|SHIP|equests kindl| +7119|552967|40501|4|39|78777.66|0.01|0.04|N|O|1997-02-16|1996-12-24|1997-03-13|NONE|REG AIR|e blithely silent deposits.| +7144|318624|18625|1|1|1642.61|0.03|0.05|N|O|1997-10-09|1997-09-11|1997-10-17|NONE|MAIL|g to the unusual deposits might | +7144|100815|25820|2|25|45395.25|0.00|0.06|N|O|1997-11-08|1997-10-25|1997-11-28|TAKE BACK RETURN|AIR|lly even deposits | +7144|391062|3570|3|49|56499.45|0.01|0.05|N|O|1997-09-20|1997-10-26|1997-09-29|COLLECT COD|REG AIR|s. carefully regular theodolites sleep blit| +7144|569150|19151|4|35|42669.55|0.05|0.06|N|O|1997-12-01|1997-09-27|1997-12-24|TAKE BACK RETURN|FOB|ular deposits in| +7144|697064|22091|5|36|38197.08|0.01|0.06|N|O|1997-08-31|1997-10-21|1997-09-08|TAKE BACK RETURN|TRUCK|uches. carefully ev| +7144|545876|45877|6|18|34593.30|0.09|0.02|N|O|1997-11-30|1997-09-25|1997-12-25|NONE|RAIL|ites are b| +7144|526598|1619|7|30|48737.10|0.03|0.07|N|O|1997-08-24|1997-09-14|1997-08-31|NONE|MAIL|ic packages: pending dep| +7145|518291|18292|1|19|24876.13|0.08|0.04|N|O|1997-06-13|1997-06-27|1997-07-13|DELIVER IN PERSON|REG AIR|ngside of the iro| +7146|677512|2539|1|47|70005.56|0.06|0.03|N|O|1995-07-03|1995-07-25|1995-07-09|COLLECT COD|MAIL|ly. carefully even pinto beans cajole bl| +7146|931923|6960|2|17|33232.96|0.02|0.02|N|O|1995-08-19|1995-07-23|1995-08-20|NONE|AIR|jole fluffily express foxes. blithely | +7147|688256|770|1|47|58478.34|0.10|0.08|A|F|1993-11-21|1993-12-23|1993-12-03|COLLECT COD|SHIP|iously final epitaphs affix.| +7148|709237|46780|1|22|27416.40|0.03|0.02|R|F|1993-09-06|1993-08-18|1993-09-23|NONE|REG AIR|y unusual ideas poach carefull| +7148|132874|7879|2|12|22882.44|0.10|0.03|A|F|1993-07-09|1993-08-31|1993-07-31|COLLECT COD|REG AIR|iously special accounts. iron| +7148|199708|12212|3|11|19884.70|0.08|0.02|A|F|1993-10-16|1993-08-03|1993-11-12|NONE|TRUCK|furiously across the s| +7149|761294|23810|1|32|43368.32|0.05|0.06|R|F|1994-12-17|1994-12-27|1994-12-31|DELIVER IN PERSON|TRUCK|s haggle fluffily | +7149|65624|28126|2|24|38150.88|0.07|0.06|R|F|1994-12-15|1995-01-10|1994-12-18|TAKE BACK RETURN|MAIL|s. slyly ironic dependen| +7149|941951|16988|3|24|47829.84|0.08|0.02|A|F|1994-10-26|1994-12-31|1994-11-21|DELIVER IN PERSON|FOB| bold accounts-- pinto beans haggle acco| +7150|248637|11142|1|47|74524.14|0.06|0.00|A|F|1995-02-28|1995-01-26|1995-03-02|TAKE BACK RETURN|RAIL|ecial requests eat. carefully ev| +7150|837954|37955|2|5|9459.55|0.06|0.05|A|F|1995-03-14|1995-02-03|1995-03-24|TAKE BACK RETURN|AIR|boost slyly esc| +7150|488895|13914|3|48|90425.76|0.07|0.05|A|F|1995-01-30|1995-03-14|1995-02-28|COLLECT COD|REG AIR|, express ide| +7151|780786|43302|1|20|37335.00|0.10|0.08|A|F|1994-02-28|1994-04-09|1994-03-17|NONE|AIR|encies. pinto beans nag ac| +7151|662172|37199|2|11|12475.54|0.02|0.03|A|F|1994-05-10|1994-05-05|1994-05-18|NONE|RAIL|nal, pending d| +7151|123400|48405|3|38|54089.20|0.03|0.05|A|F|1994-04-30|1994-03-17|1994-05-21|DELIVER IN PERSON|TRUCK|ly regular deposits| +7151|969627|32147|4|27|45807.66|0.10|0.04|A|F|1994-03-04|1994-03-28|1994-03-17|DELIVER IN PERSON|MAIL|es across the foxes unwind acco| +7151|506431|31452|5|31|44559.71|0.08|0.03|A|F|1994-05-31|1994-05-10|1994-06-23|TAKE BACK RETURN|TRUCK|ual packages again| +7176|99329|49330|1|37|49147.84|0.01|0.06|A|F|1994-08-11|1994-09-13|1994-08-26|COLLECT COD|AIR|ously ironic platelets. | +7177|877278|39796|1|31|38912.13|0.08|0.06|N|O|1995-10-24|1995-12-08|1995-11-06|NONE|FOB|furiously. slyly | +7177|401486|26503|2|17|23586.82|0.05|0.03|N|O|1995-12-10|1995-12-12|1995-12-20|COLLECT COD|TRUCK|requests; stealthily quiet| +7177|771332|8878|3|11|15436.30|0.04|0.04|N|O|1996-01-17|1996-01-14|1996-01-22|NONE|RAIL|evenly special fo| +7177|774652|24653|4|44|75971.28|0.01|0.04|N|O|1995-11-30|1995-12-20|1995-12-05|DELIVER IN PERSON|SHIP| the busy, regular platelets. | +7177|562068|24580|5|7|7910.28|0.05|0.00|N|O|1995-11-18|1995-12-08|1995-12-04|TAKE BACK RETURN|TRUCK|ending, unusual accounts after the ironic| +7177|673554|36068|6|42|64155.84|0.09|0.08|N|O|1996-02-09|1995-12-17|1996-03-02|COLLECT COD|MAIL|ironic dolphins. fluffily ironic deposi| +7177|416879|4404|7|29|52079.65|0.08|0.08|N|O|1995-12-26|1996-01-01|1995-12-27|NONE|MAIL|the ideas. silent, express pack| +7178|474997|16|1|43|84794.71|0.04|0.03|R|F|1995-03-11|1995-02-25|1995-04-08|COLLECT COD|MAIL|ly. ironically bu| +7178|266848|16849|2|38|68963.54|0.01|0.04|A|F|1995-01-14|1995-03-21|1995-01-18|NONE|AIR|beans use blithely. special, final pa| +7178|906485|6486|3|13|19388.72|0.08|0.04|R|F|1995-04-21|1995-01-28|1995-05-03|DELIVER IN PERSON|TRUCK|eep after the blithe, unusual packages. i| +7178|281885|31886|4|28|52272.36|0.02|0.05|R|F|1995-04-21|1995-03-15|1995-04-26|TAKE BACK RETURN|SHIP|e blithely slyly regular deposits| +7178|630459|42972|5|38|52797.96|0.02|0.05|R|F|1995-02-24|1995-01-26|1995-03-07|COLLECT COD|RAIL| across the pending platelets. fluffi| +7179|843213|18246|1|38|43934.46|0.04|0.03|N|O|1996-06-01|1996-04-03|1996-06-24|COLLECT COD|SHIP|s. requests hinder across the bli| +7179|864523|39558|2|20|29749.60|0.01|0.00|N|O|1996-05-14|1996-03-18|1996-05-21|NONE|TRUCK|yly ironic foxes. quickly reg| +7179|31934|6935|3|12|22391.16|0.00|0.06|N|O|1996-05-18|1996-03-25|1996-06-08|TAKE BACK RETURN|FOB| sleep above| +7179|703008|3009|4|29|29318.13|0.01|0.06|N|O|1996-06-03|1996-03-21|1996-06-28|NONE|SHIP|eposits hagg| +7179|454927|29946|5|9|16937.10|0.07|0.04|N|O|1996-05-07|1996-04-14|1996-05-19|COLLECT COD|MAIL|. carefully enticing accounts hinder a| +7180|67983|5487|1|50|97549.00|0.02|0.02|N|O|1998-06-29|1998-09-03|1998-07-28|COLLECT COD|REG AIR|courts. even asymptotes ar| +7180|587677|37678|2|6|10587.90|0.08|0.02|N|O|1998-07-03|1998-09-02|1998-07-28|DELIVER IN PERSON|SHIP| the regular| +7180|80411|42913|3|7|9739.87|0.08|0.04|N|O|1998-07-16|1998-07-21|1998-08-14|DELIVER IN PERSON|RAIL| to use along the q| +7180|466953|41972|4|16|30718.88|0.06|0.02|N|O|1998-08-05|1998-08-06|1998-08-30|NONE|AIR|fily regular dolphins. car| +7180|74975|49978|5|50|97498.50|0.03|0.06|N|O|1998-08-06|1998-07-17|1998-08-15|DELIVER IN PERSON|MAIL|atelets use; fluffil| +7181|868527|18528|1|10|14954.80|0.04|0.00|N|O|1997-05-09|1997-04-21|1997-05-12|TAKE BACK RETURN|AIR|uctions during the s| +7181|330547|5560|2|17|26818.01|0.04|0.05|N|O|1997-04-03|1997-05-13|1997-04-08|COLLECT COD|TRUCK|carefully. idle| +7181|487127|49637|3|35|38993.50|0.04|0.03|N|O|1997-06-02|1997-04-20|1997-06-24|TAKE BACK RETURN|AIR|deas sleep quickly final theodoli| +7181|129453|29454|4|41|60780.45|0.07|0.01|N|O|1997-06-13|1997-06-11|1997-06-17|TAKE BACK RETURN|RAIL|ctions. exp| +7181|705000|30029|5|48|48238.56|0.00|0.00|N|O|1997-06-02|1997-04-27|1997-06-20|NONE|RAIL|, even deposits detect. fur| +7182|219587|44596|1|42|63275.94|0.05|0.06|R|F|1994-06-05|1994-05-15|1994-06-22|TAKE BACK RETURN|FOB|ccounts. final depo| +7182|589579|39580|2|43|71747.65|0.09|0.00|R|F|1994-05-07|1994-05-12|1994-05-09|COLLECT COD|RAIL|according to the fluffily unusual reque| +7182|50997|26000|3|12|23375.88|0.01|0.05|A|F|1994-08-02|1994-06-13|1994-08-22|NONE|SHIP|ong the ruthlessly un| +7182|95376|32880|4|49|67197.13|0.07|0.08|A|F|1994-06-18|1994-06-03|1994-07-07|DELIVER IN PERSON|RAIL| bold pinto beans haggle. blithely pendi| +7182|970851|33371|5|40|76872.40|0.06|0.02|R|F|1994-07-29|1994-05-12|1994-08-27|NONE|MAIL|ily about the pending, express requ| +7183|422371|47388|1|10|12933.50|0.08|0.01|R|F|1993-08-23|1993-06-30|1993-08-30|DELIVER IN PERSON|FOB|ructions. ironic, special acco| +7208|532045|32046|1|19|20463.38|0.06|0.00|N|O|1995-08-02|1995-06-08|1995-08-22|COLLECT COD|AIR|in blithely. carefully silent packages h| +7208|73358|23359|2|18|23964.30|0.05|0.08|A|F|1995-05-07|1995-07-04|1995-05-09|TAKE BACK RETURN|AIR|nts. regular foxes are quickly ir| +7208|921306|46343|3|46|61053.96|0.09|0.08|A|F|1995-05-11|1995-06-14|1995-06-10|NONE|SHIP|arefully special packages a| +7208|380247|42755|4|18|23890.14|0.00|0.01|R|F|1995-05-01|1995-07-09|1995-05-13|COLLECT COD|FOB|counts. fluffily express ac| +7209|826317|1350|1|7|8702.89|0.08|0.05|N|O|1996-07-25|1996-05-18|1996-08-08|TAKE BACK RETURN|SHIP|the ironic, regul| +7209|896423|46424|2|25|35484.50|0.09|0.00|N|O|1996-06-30|1996-05-09|1996-07-05|DELIVER IN PERSON|TRUCK|side of the even foxes snooze slyl| +7209|169690|32194|3|40|70387.60|0.06|0.01|N|O|1996-04-17|1996-05-25|1996-05-04|DELIVER IN PERSON|AIR|ide of the furiously qu| +7209|972724|10282|4|29|52103.72|0.08|0.04|N|O|1996-04-17|1996-06-21|1996-04-18|TAKE BACK RETURN|TRUCK| to the slyly pen| +7209|558682|8683|5|5|8703.30|0.00|0.07|N|O|1996-07-12|1996-05-10|1996-08-05|NONE|MAIL|ould have to engage acco| +7209|752832|27863|6|25|47120.00|0.10|0.02|N|O|1996-08-02|1996-06-12|1996-08-04|TAKE BACK RETURN|AIR|dolites. fluffily regula| +7210|547387|47388|1|40|57374.40|0.00|0.05|N|O|1997-08-28|1997-07-02|1997-09-10|NONE|RAIL|s sleep fluffily furiously re| +7210|917727|30246|2|5|8723.40|0.04|0.03|N|O|1997-07-14|1997-07-01|1997-08-08|COLLECT COD|FOB|structions according to the blithely even a| +7210|222053|22054|3|34|33151.36|0.08|0.06|N|O|1997-08-15|1997-06-26|1997-09-12|TAKE BACK RETURN|AIR|haggle ironic theodoli| +7211|557916|7917|1|48|94746.72|0.03|0.00|N|O|1997-01-14|1997-01-23|1997-02-01|COLLECT COD|MAIL|l detect quickly a| +7211|881562|6597|2|41|63284.32|0.08|0.08|N|O|1997-02-07|1997-02-16|1997-03-02|DELIVER IN PERSON|AIR|ongside of the bold, ruthless | +7212|195403|20410|1|35|52444.00|0.01|0.08|N|O|1995-09-07|1995-10-02|1995-09-23|TAKE BACK RETURN|AIR|. instruct| +7212|133556|21063|2|35|55634.25|0.07|0.04|N|O|1995-12-13|1995-10-31|1996-01-02|NONE|RAIL| theodolites. furiousl| +7212|673995|11535|3|49|96479.04|0.02|0.04|N|O|1995-08-28|1995-10-20|1995-09-06|NONE|AIR|blithely regular accounts affix slyl| +7212|817173|4722|4|43|46875.59|0.02|0.02|N|O|1995-11-01|1995-11-08|1995-11-29|NONE|REG AIR|ests alongside of the even, final re| +7212|214416|39425|5|16|21286.40|0.00|0.08|N|O|1995-09-28|1995-09-29|1995-10-11|NONE|TRUCK|d epitaphs along the| +7212|679697|42211|6|30|50299.80|0.04|0.07|N|O|1995-12-21|1995-10-11|1996-01-06|NONE|RAIL|ites. even accounts boost. carefu| +7212|666576|16577|7|32|49361.28|0.10|0.02|N|O|1995-09-10|1995-10-11|1995-09-13|COLLECT COD|TRUCK|dolites sleep during the ideas. dinos nag | +7213|138125|25632|1|19|22099.28|0.01|0.08|N|O|1995-11-01|1995-10-08|1995-11-29|DELIVER IN PERSON|REG AIR|gular, ironic requests. regul| +7213|459724|34743|2|37|62296.90|0.06|0.01|N|O|1995-10-29|1995-10-16|1995-11-13|NONE|TRUCK|egular, even ideas. bra| +7213|576540|14074|3|12|19398.24|0.06|0.03|N|O|1995-09-19|1995-10-04|1995-10-08|TAKE BACK RETURN|FOB| haggle ironi| +7213|904902|4903|4|1|1906.86|0.02|0.01|N|O|1995-10-30|1995-10-31|1995-10-31|DELIVER IN PERSON|RAIL|y unusual accounts wake furious| +7213|673419|48446|5|6|8354.28|0.00|0.08|N|O|1995-12-11|1995-11-05|1995-12-17|NONE|SHIP| the slyly| +7213|144516|32023|6|10|15605.10|0.03|0.04|N|O|1995-08-26|1995-10-20|1995-09-23|NONE|MAIL|ests solve carefully after the s| +7213|872823|10375|7|21|37711.38|0.05|0.00|N|O|1995-09-09|1995-10-21|1995-09-29|NONE|SHIP|yly unusual deposits. slyly final i| +7214|528365|28366|1|44|61306.96|0.04|0.01|N|O|1997-05-01|1997-07-20|1997-05-02|DELIVER IN PERSON|MAIL|. furiously exp| +7214|216631|29136|2|35|54166.70|0.09|0.00|N|O|1997-07-30|1997-06-18|1997-08-16|COLLECT COD|TRUCK|ions are always. sl| +7214|912804|359|3|32|58136.32|0.10|0.07|N|O|1997-05-11|1997-07-04|1997-06-09|DELIVER IN PERSON|AIR|nag regular, | +7214|487586|25114|4|44|69236.64|0.08|0.06|N|O|1997-07-01|1997-05-29|1997-07-03|TAKE BACK RETURN|TRUCK|slyly express foxes hinder afte| +7214|853093|40645|5|2|2092.10|0.06|0.02|N|O|1997-05-08|1997-06-16|1997-05-15|DELIVER IN PERSON|AIR|cording to the quickly u| +7215|586265|11288|1|38|51347.12|0.00|0.06|N|O|1997-12-15|1997-12-19|1997-12-17|COLLECT COD|TRUCK|ly ironic dolphin| +7240|377458|39966|1|24|36850.56|0.05|0.05|N|O|1997-03-20|1997-02-09|1997-04-16|COLLECT COD|AIR|platelets. slyly regular requests cajole | +7240|935140|10177|2|30|35253.00|0.01|0.03|N|O|1997-04-04|1997-02-17|1997-05-03|DELIVER IN PERSON|SHIP|e furiously bold ideas. carefully e| +7240|883004|45522|3|50|49348.00|0.04|0.05|N|O|1997-01-22|1997-02-04|1997-01-31|COLLECT COD|TRUCK|pecial excuses. Tir| +7240|631838|6863|4|16|28316.80|0.10|0.00|N|O|1996-12-05|1997-01-22|1996-12-22|COLLECT COD|TRUCK|y express de| +7241|885612|23164|1|21|33548.97|0.05|0.06|A|F|1992-10-11|1992-09-26|1992-10-31|DELIVER IN PERSON|FOB|fter the slyly bold c| +7241|468968|43987|2|24|46486.56|0.03|0.03|A|F|1992-07-15|1992-08-08|1992-08-01|DELIVER IN PERSON|REG AIR|deposits. quickl| +7241|939667|27222|3|7|11946.34|0.04|0.05|R|F|1992-10-04|1992-08-16|1992-10-09|TAKE BACK RETURN|MAIL|oxes snooz| +7241|974863|24864|4|22|42632.04|0.04|0.03|R|F|1992-10-03|1992-08-13|1992-10-22|COLLECT COD|AIR| carefully bold foxes wake caref| +7241|513985|1516|5|45|89953.20|0.07|0.05|R|F|1992-10-21|1992-09-28|1992-11-15|DELIVER IN PERSON|REG AIR|ly express ho| +7242|667409|42436|1|50|68818.50|0.02|0.00|A|F|1993-06-08|1993-06-19|1993-06-15|NONE|AIR|hely regular | +7242|136768|11773|2|14|25266.64|0.09|0.06|A|F|1993-05-05|1993-05-24|1993-05-10|NONE|MAIL|ecial instructions. unusual,| +7242|656024|43564|3|20|19599.80|0.07|0.03|A|F|1993-05-30|1993-07-03|1993-06-24|NONE|MAIL| requests. e| +7243|272660|10176|1|15|24489.75|0.06|0.02|N|O|1996-02-04|1996-03-06|1996-03-01|DELIVER IN PERSON|RAIL|etimes. slyly dogged a| +7243|583056|45568|2|4|4556.12|0.05|0.00|N|O|1996-05-23|1996-04-25|1996-06-22|COLLECT COD|TRUCK|r foxes cajole according to the quickl| +7243|412227|24736|3|19|21644.80|0.02|0.03|N|O|1996-05-09|1996-03-28|1996-05-28|DELIVER IN PERSON|SHIP|egular requests haggle ste| +7243|295821|45822|4|20|36336.20|0.00|0.06|N|O|1996-04-11|1996-03-27|1996-05-05|NONE|AIR|lent theodolites. even, fi| +7244|609734|9735|1|41|67391.70|0.07|0.01|A|F|1992-09-07|1992-09-26|1992-09-25|DELIVER IN PERSON|RAIL|eans. quickly ironic id| +7244|793249|43250|2|12|16106.52|0.07|0.07|R|F|1992-11-08|1992-10-12|1992-11-28|NONE|TRUCK|eposits cajole: sly| +7244|134750|9755|3|29|51757.75|0.07|0.02|A|F|1992-08-21|1992-10-18|1992-09-08|TAKE BACK RETURN|RAIL|ial requests. sly| +7245|911649|11650|1|18|29890.80|0.06|0.07|R|F|1993-12-10|1993-11-12|1993-12-12|NONE|REG AIR|nstructions| +7245|76195|1198|2|38|44505.22|0.06|0.08|A|F|1994-01-03|1993-11-06|1994-01-23|COLLECT COD|SHIP|s sleep blithely over the silent requ| +7245|596362|33896|3|45|65625.30|0.04|0.04|A|F|1993-10-18|1993-11-04|1993-10-29|NONE|RAIL|counts boost ironically. silent, ironic | +7245|49735|49736|4|19|32009.87|0.07|0.02|R|F|1993-11-09|1993-11-12|1993-11-28|COLLECT COD|MAIL|its. ironic asymptotes af| +7245|886713|24265|5|18|30594.06|0.08|0.08|A|F|1993-10-16|1993-11-09|1993-10-28|COLLECT COD|MAIL|e express courts nag | +7246|73039|48042|1|48|48577.44|0.09|0.06|N|O|1996-05-13|1996-08-05|1996-05-22|TAKE BACK RETURN|FOB|nts haggle furio| +7247|233007|33008|1|26|24439.74|0.08|0.02|N|O|1996-03-21|1996-04-29|1996-04-18|DELIVER IN PERSON|SHIP|ecial pinto bean| +7247|144211|6714|2|13|16317.73|0.00|0.01|N|O|1996-05-09|1996-05-02|1996-05-14|DELIVER IN PERSON|SHIP|lithely enticing depen| +7247|743859|31402|3|5|9514.10|0.05|0.01|N|O|1996-03-31|1996-04-23|1996-04-15|COLLECT COD|REG AIR|ial deposits. express, ir| +7247|28132|40633|4|40|42405.20|0.05|0.03|N|O|1996-02-29|1996-05-05|1996-03-20|DELIVER IN PERSON|REG AIR|n theodolites x-ray caref| +7272|264088|14089|1|39|41030.73|0.00|0.05|A|F|1993-10-20|1993-12-17|1993-11-14|COLLECT COD|AIR|eans dazzle | +7272|521167|8698|2|31|36832.34|0.10|0.03|R|F|1994-02-08|1993-12-05|1994-03-01|DELIVER IN PERSON|FOB|hely! unusual deposits kind| +7272|250656|657|3|42|67478.88|0.05|0.00|R|F|1993-11-02|1993-12-04|1993-11-06|DELIVER IN PERSON|REG AIR|fluffily even packages-- theodolites x-r| +7272|762479|12480|4|10|15414.40|0.05|0.01|R|F|1994-01-26|1994-01-14|1994-01-30|TAKE BACK RETURN|RAIL| boost slyly al| +7272|973043|48082|5|13|14508.00|0.09|0.06|A|F|1993-10-27|1994-01-02|1993-11-13|COLLECT COD|RAIL| furiously quickly| +7272|932157|7194|6|8|9512.88|0.04|0.04|A|F|1993-11-06|1993-11-16|1993-11-30|DELIVER IN PERSON|AIR|jole. slyly ironic ideas are slowly exp| +7272|756642|19158|7|17|28876.37|0.07|0.08|R|F|1994-01-10|1994-01-08|1994-02-09|COLLECT COD|MAIL|furiously even theodolite| +7273|880188|42706|1|22|25699.08|0.02|0.06|R|F|1993-02-11|1993-01-23|1993-03-11|NONE|RAIL|he unusual grouche| +7273|306863|44382|2|27|50485.95|0.10|0.02|R|F|1992-11-14|1993-01-19|1992-11-17|NONE|TRUCK|across the pending, even idea| +7274|637575|25112|1|27|40838.58|0.04|0.02|N|O|1998-06-03|1998-05-16|1998-06-08|TAKE BACK RETURN|FOB|ng the special, ironic realms. finally| +7274|715291|15292|2|43|56169.18|0.04|0.07|N|O|1998-05-10|1998-06-30|1998-05-15|DELIVER IN PERSON|SHIP|ly regular platelets. bol| +7274|890795|40796|3|28|50001.00|0.09|0.07|N|O|1998-04-27|1998-06-18|1998-04-29|NONE|FOB|wake doggedly | +7274|576575|39087|4|40|66062.00|0.10|0.04|N|O|1998-04-27|1998-05-08|1998-05-26|DELIVER IN PERSON|FOB|ding to th| +7275|874616|37134|1|23|36583.11|0.10|0.07|N|O|1997-12-19|1998-02-12|1997-12-22|TAKE BACK RETURN|SHIP|inal accounts. blit| +7275|662281|37308|2|17|21135.25|0.07|0.04|N|O|1998-03-05|1998-02-01|1998-03-08|DELIVER IN PERSON|FOB|inal requests sleep always unusu| +7275|951546|39104|3|30|47925.00|0.00|0.08|N|O|1997-11-23|1998-01-16|1997-12-05|DELIVER IN PERSON|REG AIR|ickly even packages sleep carefully. specia| +7276|337745|12758|1|25|44568.25|0.09|0.08|N|O|1997-06-13|1997-06-19|1997-06-30|DELIVER IN PERSON|RAIL| to the blithely bold fox| +7276|478812|16340|2|38|68050.02|0.08|0.06|N|O|1997-08-10|1997-06-28|1997-08-17|NONE|RAIL| deposits nag slyly regular| +7277|410546|48071|1|24|34956.48|0.08|0.04|A|F|1992-08-05|1992-06-12|1992-08-22|TAKE BACK RETURN|RAIL|accounts atop the s| +7278|19575|7076|1|43|64266.51|0.08|0.00|A|F|1993-08-29|1993-08-23|1993-09-19|NONE|FOB|inal, regul| +7278|980650|43170|2|14|24228.54|0.01|0.08|R|F|1993-06-20|1993-07-24|1993-07-05|TAKE BACK RETURN|AIR| regular e| +7278|770820|8366|3|28|52942.12|0.05|0.02|A|F|1993-08-10|1993-08-12|1993-08-25|DELIVER IN PERSON|TRUCK|ly? carefully express pinto beans w| +7279|738115|38116|1|18|20755.44|0.09|0.05|R|F|1992-08-05|1992-05-13|1992-08-28|DELIVER IN PERSON|SHIP|fluffily final| +7279|487089|24617|2|21|22597.26|0.00|0.03|R|F|1992-07-01|1992-07-01|1992-07-21|DELIVER IN PERSON|SHIP|leep special, ironic packages. courts inst| +7279|489702|14721|3|3|5075.04|0.00|0.02|R|F|1992-06-13|1992-07-04|1992-06-21|NONE|SHIP|ously unusual theodol| +7279|411584|36601|4|28|41875.68|0.08|0.06|A|F|1992-06-14|1992-07-02|1992-06-29|NONE|MAIL|to beans: furiously unusual accounts above| +7279|477079|27080|5|7|7392.35|0.00|0.03|R|F|1992-05-18|1992-07-03|1992-05-31|DELIVER IN PERSON|MAIL| outside the doggedly fi| +7279|258240|8241|6|46|55118.58|0.05|0.06|R|F|1992-06-11|1992-05-20|1992-06-16|TAKE BACK RETURN|REG AIR|y into the quickly final sautern| +7304|208811|46324|1|30|51594.00|0.00|0.03|N|O|1997-03-03|1997-01-23|1997-03-24|DELIVER IN PERSON|TRUCK|es cajole carefully among the deposit| +7304|482934|20462|2|39|74759.49|0.10|0.03|N|O|1997-03-09|1997-01-09|1997-03-29|COLLECT COD|TRUCK|inal, regular ideas-- ideas against the fu| +7304|656825|6826|3|36|64144.44|0.02|0.07|N|O|1997-02-24|1997-02-17|1997-03-18|NONE|MAIL|arefully slyly ironic instructions. quic| +7304|244749|19758|4|21|35568.33|0.08|0.05|N|O|1997-01-17|1997-01-31|1997-02-07|NONE|FOB|ully regular requests against the unusua| +7304|487567|12586|5|31|48190.74|0.07|0.04|N|O|1996-11-23|1996-12-26|1996-11-24|NONE|TRUCK|ke toward th| +7305|187737|25247|1|31|56566.63|0.04|0.02|N|O|1996-10-22|1996-11-03|1996-11-15|COLLECT COD|AIR|lar theodolites wake. carefully bold dep| +7305|286803|11814|2|32|57273.28|0.03|0.04|N|O|1996-11-08|1996-12-22|1996-11-11|COLLECT COD|REG AIR|its. theodolites aft| +7305|284823|47329|3|34|61465.54|0.05|0.07|N|O|1997-01-17|1996-12-25|1997-02-05|NONE|AIR|y according to t| +7306|188337|25847|1|13|18529.29|0.06|0.06|N|O|1998-04-12|1998-04-13|1998-05-11|TAKE BACK RETURN|AIR|ular grouches| +7306|365296|40311|2|18|24503.04|0.09|0.00|N|O|1998-02-19|1998-03-12|1998-03-07|NONE|FOB|l platelets nag after the quickly ev| +7306|518420|18421|3|22|31644.80|0.05|0.05|N|O|1998-03-06|1998-03-09|1998-03-30|NONE|SHIP|ly among the regular idea| +7306|77550|40052|4|22|33606.10|0.06|0.04|N|O|1998-01-23|1998-04-12|1998-02-08|TAKE BACK RETURN|RAIL|y express accounts haggle furiously fr| +7306|378375|3390|5|26|37787.36|0.00|0.02|N|O|1998-03-04|1998-03-31|1998-03-09|TAKE BACK RETURN|TRUCK|ges against the pending dolphins | +7307|410358|35375|1|12|15219.96|0.07|0.08|R|F|1993-09-28|1993-10-25|1993-10-21|COLLECT COD|AIR|wake carefully acro| +7307|871955|9507|2|26|50099.66|0.01|0.00|A|F|1993-11-30|1993-12-16|1993-12-12|NONE|FOB|nently regular excuses. furiously final| +7307|937297|37298|3|38|50701.50|0.04|0.08|A|F|1993-12-30|1993-11-10|1994-01-07|NONE|MAIL|ments integrate| +7307|135920|48423|4|22|43030.24|0.09|0.08|A|F|1993-12-13|1993-10-29|1993-12-21|COLLECT COD|MAIL|outs haggle: ruthles| +7307|397186|9694|5|14|17964.38|0.02|0.04|A|F|1993-10-14|1993-10-30|1993-11-08|DELIVER IN PERSON|RAIL| haggle quickly express accou| +7308|25983|25984|1|33|62996.34|0.07|0.02|N|O|1996-08-07|1996-06-14|1996-08-31|DELIVER IN PERSON|AIR|eposits. ironic d| +7308|680561|43075|2|40|61661.20|0.06|0.01|N|O|1996-07-21|1996-06-07|1996-07-27|TAKE BACK RETURN|AIR|even, final foxes boost. furiously| +7309|181936|19446|1|1|2017.93|0.01|0.07|A|F|1993-04-11|1993-06-15|1993-05-06|DELIVER IN PERSON|MAIL| asymptotes. express request| +7310|518745|6276|1|31|54675.32|0.04|0.08|N|O|1995-12-06|1996-02-06|1995-12-07|COLLECT COD|SHIP|oxes. furiously fin| +7310|543181|30712|2|4|4896.64|0.08|0.01|N|O|1996-02-21|1996-02-15|1996-03-03|DELIVER IN PERSON|FOB|express deposits nag careful| +7311|62521|25|1|28|41538.56|0.05|0.06|N|O|1996-03-28|1996-05-17|1996-04-07|TAKE BACK RETURN|REG AIR|ect furiously across| +7336|1646|26647|1|22|34048.08|0.01|0.06|N|O|1997-08-23|1997-05-28|1997-09-18|COLLECT COD|FOB|thely regular packages wake| +7336|658820|8821|2|16|28460.64|0.03|0.05|N|O|1997-05-13|1997-06-04|1997-06-09|NONE|FOB|t. carefully unusual deposits alon| +7336|777877|2908|3|20|39096.80|0.06|0.08|N|O|1997-08-07|1997-06-18|1997-09-02|DELIVER IN PERSON|MAIL|ests; enticing exc| +7336|766930|41961|4|49|97848.10|0.08|0.01|N|O|1997-04-26|1997-07-07|1997-05-21|NONE|FOB| accounts boost furiously outside t| +7336|791975|41976|5|38|78543.72|0.02|0.00|N|O|1997-06-14|1997-07-08|1997-06-23|COLLECT COD|AIR|r accounts. | +7337|261156|36167|1|25|27928.50|0.06|0.01|A|F|1992-06-04|1992-08-21|1992-07-02|TAKE BACK RETURN|SHIP| blithely special dolphins. pinto beans caj| +7337|246973|9478|2|34|65278.64|0.09|0.04|A|F|1992-08-20|1992-08-03|1992-08-31|COLLECT COD|MAIL|onic requests | +7337|859529|47081|3|41|61027.68|0.06|0.06|A|F|1992-07-09|1992-08-13|1992-07-15|TAKE BACK RETURN|FOB|es. tithes sleep slyly: ironi| +7337|102365|2366|4|21|28714.56|0.01|0.03|R|F|1992-09-02|1992-07-06|1992-09-15|DELIVER IN PERSON|SHIP|arefully regular packages integ| +7337|434464|34465|5|20|27968.80|0.00|0.08|A|F|1992-06-20|1992-08-25|1992-07-14|NONE|SHIP|hely final pack| +7337|26789|26790|6|23|39462.94|0.08|0.08|R|F|1992-07-11|1992-08-29|1992-07-15|COLLECT COD|RAIL|e final dep| +7338|740071|27614|1|7|7777.28|0.02|0.06|R|F|1993-04-12|1993-03-21|1993-05-08|DELIVER IN PERSON|TRUCK| haggle carefully again| +7338|358638|21146|2|9|15269.58|0.10|0.08|R|F|1993-04-11|1993-04-16|1993-05-10|DELIVER IN PERSON|MAIL|aggle fluffily pending deposits. blit| +7338|616758|41783|3|15|25120.80|0.07|0.07|R|F|1993-04-07|1993-04-09|1993-05-06|COLLECT COD|MAIL|iously special theod| +7338|836546|36547|4|20|29650.00|0.02|0.01|R|F|1993-03-08|1993-03-23|1993-03-25|NONE|RAIL|eposits wake | +7338|813471|38504|5|2|2768.86|0.09|0.06|A|F|1993-02-19|1993-02-27|1993-02-20|COLLECT COD|FOB|posits. carefull| +7338|997629|35187|6|49|84602.42|0.06|0.02|A|F|1993-04-21|1993-04-16|1993-04-29|COLLECT COD|AIR|nstructions us| +7339|395463|45464|1|32|49870.40|0.04|0.07|A|F|1992-07-08|1992-08-06|1992-07-14|COLLECT COD|SHIP| blithely. carefully final pa| +7339|537982|13003|2|17|34339.32|0.03|0.02|A|F|1992-08-06|1992-08-16|1992-08-13|TAKE BACK RETURN|FOB|ithely at the even accounts. r| +7339|849572|12089|3|49|74554.97|0.08|0.00|R|F|1992-09-01|1992-08-18|1992-09-09|NONE|REG AIR|ges-- packages against the| +7339|746376|46377|4|11|15645.74|0.00|0.00|R|F|1992-09-15|1992-08-31|1992-09-24|DELIVER IN PERSON|AIR|ccounts x-ray fluffily. even packages| +7340|578308|28309|1|8|11090.24|0.05|0.05|N|O|1996-09-27|1996-10-01|1996-10-11|COLLECT COD|TRUCK|al requests | +7340|607076|7077|2|43|42270.72|0.08|0.02|N|O|1996-08-24|1996-10-21|1996-09-02|TAKE BACK RETURN|AIR|. furiously ironic tit| +7340|126250|26251|3|13|16591.25|0.01|0.01|N|O|1996-08-29|1996-10-18|1996-09-11|DELIVER IN PERSON|AIR|kages use slyly| +7340|882597|20149|4|29|45806.95|0.05|0.04|N|O|1996-11-10|1996-10-07|1996-11-17|COLLECT COD|TRUCK|usly unusual accounts sublate furiously f| +7341|864629|27147|1|35|55775.30|0.10|0.03|A|F|1992-03-02|1992-03-28|1992-03-16|DELIVER IN PERSON|TRUCK| requests boost b| +7341|808027|20544|2|18|16829.64|0.00|0.08|A|F|1992-04-09|1992-03-02|1992-04-12|NONE|FOB|y slyly regular ideas. quickl| +7342|751747|39293|1|38|68350.98|0.07|0.08|N|O|1997-09-29|1997-09-22|1997-10-22|TAKE BACK RETURN|MAIL|heodolites shall use carefully exp| +7343|21593|34094|1|13|19689.67|0.09|0.00|R|F|1995-05-04|1995-04-07|1995-05-13|DELIVER IN PERSON|MAIL|y along the blithely unusual accoun| +7343|910199|35236|2|40|48366.00|0.01|0.03|R|F|1995-03-06|1995-03-22|1995-04-03|DELIVER IN PERSON|AIR|s. express fo| +7343|702228|39771|3|47|57818.93|0.02|0.06|A|F|1995-04-15|1995-04-02|1995-04-17|TAKE BACK RETURN|TRUCK|al requests | +7343|332774|45281|4|46|83110.96|0.07|0.02|A|F|1995-03-21|1995-03-31|1995-03-22|COLLECT COD|TRUCK|lets was slyly. pending deposits | +7368|604165|16678|1|18|19244.34|0.04|0.01|R|F|1994-10-11|1994-09-27|1994-10-16|TAKE BACK RETURN|REG AIR|jole carefully about the fl| +7368|190022|27532|2|41|45592.82|0.03|0.01|R|F|1994-08-29|1994-09-05|1994-09-27|DELIVER IN PERSON|REG AIR|ckly. pending deposits hagg| +7369|195571|20578|1|19|31664.83|0.05|0.03|A|F|1994-01-14|1994-02-07|1994-01-20|DELIVER IN PERSON|RAIL|dolites are. carefully final| +7370|288000|506|1|7|6915.93|0.02|0.07|R|F|1995-01-17|1995-04-03|1995-02-07|NONE|AIR|es haggle. quietly| +7370|411881|49406|2|4|7171.44|0.09|0.00|R|F|1995-03-09|1995-03-01|1995-04-07|NONE|REG AIR|pinto beans above the blithely silen| +7370|478927|3946|3|50|95295.00|0.04|0.01|R|F|1995-03-13|1995-03-20|1995-04-07|DELIVER IN PERSON|SHIP|n deposits. ironic excuses| +7370|321718|46731|4|19|33054.30|0.04|0.08|A|F|1995-04-03|1995-02-13|1995-04-10|TAKE BACK RETURN|TRUCK|e carefully of the accounts. slyly re| +7370|99925|37429|5|11|21174.12|0.03|0.07|R|F|1995-03-30|1995-03-20|1995-04-27|NONE|REG AIR|lent pinto beans. ca| +7371|910725|48280|1|50|86784.00|0.10|0.00|A|F|1993-03-24|1993-03-24|1993-04-05|NONE|FOB|lly? request| +7371|553061|28084|2|38|42333.52|0.03|0.06|A|F|1993-04-17|1993-05-01|1993-04-25|COLLECT COD|MAIL|ly final instr| +7372|899454|11972|1|35|50869.35|0.00|0.00|A|F|1994-10-10|1994-09-02|1994-10-24|NONE|FOB|uriously special| +7373|526103|13634|1|19|21452.52|0.09|0.00|N|O|1996-09-16|1996-10-01|1996-09-26|COLLECT COD|AIR|ns can nag after the specia| +7373|198798|23805|2|45|85355.55|0.02|0.02|N|O|1996-11-19|1996-09-29|1996-12-08|DELIVER IN PERSON|RAIL|yers kindle along the furiou| +7374|882910|20462|1|33|62464.71|0.03|0.03|R|F|1992-04-02|1992-03-21|1992-05-01|COLLECT COD|SHIP|en requests haggle slyly ironic notornis. c| +7374|52563|27566|2|40|60622.40|0.02|0.08|R|F|1992-02-08|1992-04-12|1992-02-19|COLLECT COD|FOB|quickly express deposits. slyl| +7374|418148|43165|3|6|6396.72|0.01|0.08|A|F|1992-03-30|1992-04-14|1992-04-12|COLLECT COD|FOB| foxes doze alongside of the furiously ir| +7374|801376|38925|4|7|8941.31|0.03|0.04|R|F|1992-04-23|1992-03-03|1992-04-28|COLLECT COD|MAIL|luffily regular excuses use slyly| +7374|715733|28248|5|28|48963.60|0.04|0.06|R|F|1992-05-09|1992-04-11|1992-06-07|COLLECT COD|REG AIR|are at the | +7374|317542|5061|6|30|46785.90|0.05|0.03|A|F|1992-04-23|1992-04-13|1992-05-04|NONE|REG AIR|e accounts haggle qu| +7374|913718|26237|7|12|20780.04|0.01|0.03|R|F|1992-05-13|1992-04-02|1992-05-30|NONE|RAIL|iously against the sly| +7375|853606|16124|1|2|3119.12|0.07|0.01|N|O|1997-03-06|1997-01-18|1997-03-24|DELIVER IN PERSON|REG AIR|arefully e| +7375|542511|30042|2|25|38837.25|0.07|0.01|N|O|1997-03-20|1997-02-10|1997-03-28|DELIVER IN PERSON|FOB|uests solve furiously slyly unusual platel| +7400|384413|34414|1|34|50911.60|0.01|0.07|R|F|1992-11-25|1992-10-09|1992-11-29|COLLECT COD|SHIP|al hockey players. regula| +7400|821816|46849|2|4|6951.08|0.06|0.07|R|F|1992-09-12|1992-09-27|1992-10-10|NONE|RAIL|ully even asymp| +7400|249704|24713|3|40|66147.60|0.01|0.08|A|F|1992-09-10|1992-10-07|1992-09-22|COLLECT COD|FOB|kages haggle final ac| +7400|762320|37351|4|40|55291.60|0.05|0.02|A|F|1992-10-25|1992-09-28|1992-10-29|TAKE BACK RETURN|TRUCK|ckages. furiously ironic pains believ| +7400|302804|27817|5|33|59624.07|0.03|0.04|A|F|1992-08-31|1992-11-03|1992-09-12|TAKE BACK RETURN|SHIP|sts. fluffily even requ| +7401|334927|9940|1|16|31390.56|0.07|0.07|N|O|1996-07-07|1996-05-05|1996-08-06|TAKE BACK RETURN|TRUCK| regular deposits boost above the carefull| +7401|116967|29470|2|39|77374.44|0.07|0.03|N|O|1996-04-08|1996-06-01|1996-04-30|DELIVER IN PERSON|SHIP|ully regular packages sleep car| +7401|854205|4206|3|5|5795.80|0.02|0.01|N|O|1996-07-24|1996-06-12|1996-08-22|DELIVER IN PERSON|AIR|g, special d| +7401|616574|29087|4|13|19377.02|0.05|0.04|N|O|1996-07-16|1996-05-11|1996-08-01|DELIVER IN PERSON|FOB|s use against the furiously special idea| +7402|481267|6286|1|36|44936.64|0.07|0.04|N|O|1998-10-01|1998-07-30|1998-10-09|TAKE BACK RETURN|SHIP|grate. fluffily regular| +7402|640387|15412|2|28|37165.80|0.08|0.07|N|O|1998-09-26|1998-08-02|1998-10-25|TAKE BACK RETURN|FOB|structions haggle above the quickly specia| +7402|979181|16739|3|38|47885.32|0.07|0.08|N|O|1998-10-10|1998-09-07|1998-11-06|COLLECT COD|SHIP| even dolphins detect bli| +7402|91045|3547|4|1|1036.04|0.01|0.07|N|O|1998-08-18|1998-07-19|1998-09-05|TAKE BACK RETURN|FOB|theodolites use blithel| +7402|186815|11822|5|49|93188.69|0.02|0.03|N|O|1998-09-02|1998-08-28|1998-09-16|NONE|RAIL|yly across the slyly unusual request| +7402|784510|22056|6|46|73346.08|0.06|0.01|N|O|1998-08-11|1998-07-26|1998-09-01|COLLECT COD|TRUCK|cajole fluffily requests. iron| +7403|368954|18955|1|14|28321.16|0.04|0.02|A|F|1992-08-18|1992-07-05|1992-08-30|TAKE BACK RETURN|FOB|refully silent grouches poach blith| +7403|993478|43479|2|22|34571.46|0.09|0.08|R|F|1992-06-25|1992-08-03|1992-06-27|NONE|FOB|odolites. q| +7403|382738|45246|3|12|21848.64|0.00|0.02|A|F|1992-07-06|1992-06-20|1992-07-07|TAKE BACK RETURN|MAIL|s use carefully final deposi| +7403|666288|3828|4|26|32610.50|0.02|0.06|A|F|1992-06-19|1992-06-28|1992-07-03|DELIVER IN PERSON|TRUCK|about the | +7404|887207|24759|1|29|34630.64|0.01|0.03|N|O|1997-12-13|1997-12-21|1998-01-03|NONE|SHIP|dolites. slyly even accounts cajole furiou| +7404|283831|21347|2|46|83481.72|0.09|0.06|N|O|1997-12-01|1997-11-18|1997-12-08|COLLECT COD|FOB|. silent requests are accordin| +7404|340159|40160|3|6|7194.84|0.05|0.03|N|O|1997-12-22|1997-12-24|1997-12-26|NONE|TRUCK|ould wake furiously according to the sl| +7404|41874|29375|4|24|43580.88|0.08|0.01|N|O|1997-10-19|1998-01-02|1997-11-16|COLLECT COD|TRUCK|l accounts | +7405|872376|22377|1|34|45843.22|0.03|0.08|N|O|1997-10-06|1997-08-27|1997-10-18|COLLECT COD|FOB|escapades. careful| +7405|6997|44498|2|15|28559.85|0.07|0.00|N|O|1997-11-04|1997-09-28|1997-12-03|TAKE BACK RETURN|FOB|he bold accounts cajole slyly bli| +7405|587630|142|3|37|63551.57|0.00|0.07|N|O|1997-07-19|1997-08-09|1997-08-04|COLLECT COD|FOB|s are quickly after the furiously pendi| +7405|285620|48126|4|39|62618.79|0.07|0.01|N|O|1997-09-11|1997-08-27|1997-09-30|COLLECT COD|AIR|the special, pending deposits? even, even | +7405|409954|34971|5|19|35414.67|0.01|0.06|N|O|1997-09-25|1997-08-20|1997-10-03|DELIVER IN PERSON|FOB| even deposits us| +7405|87690|12693|6|47|78851.43|0.05|0.00|N|O|1997-10-11|1997-08-22|1997-11-02|COLLECT COD|RAIL|hely about the final excuses. ideas w| +7406|929191|41710|1|8|9761.20|0.00|0.00|A|F|1993-01-10|1992-12-09|1993-01-26|TAKE BACK RETURN|TRUCK|ly special excuse| +7406|906278|6279|2|49|62927.27|0.04|0.06|A|F|1992-10-07|1992-10-19|1992-10-17|TAKE BACK RETURN|AIR|tect slyly furiously final instruc| +7406|808636|46185|3|20|30891.80|0.09|0.02|A|F|1992-12-12|1992-10-19|1992-12-18|DELIVER IN PERSON|MAIL|inal theodolites? | +7406|738535|38536|4|50|78675.00|0.09|0.07|R|F|1992-11-15|1992-11-28|1992-11-16|NONE|TRUCK|egular theodolites. slyly ironic som| +7406|541551|29082|5|41|65293.73|0.03|0.05|R|F|1992-12-28|1992-11-07|1992-12-29|NONE|RAIL| affix furious| +7406|837338|24887|6|42|53562.18|0.08|0.00|A|F|1992-10-14|1992-11-07|1992-10-17|DELIVER IN PERSON|SHIP|leep carefully special, ev| +7406|136456|48959|7|2|2984.90|0.10|0.08|A|F|1993-01-03|1992-10-31|1993-01-06|DELIVER IN PERSON|MAIL|uiet deposits. carefully ev| +7407|405141|17650|1|16|16737.92|0.06|0.05|N|O|1996-03-05|1996-01-12|1996-03-25|NONE|RAIL|le among the regularly bold | +7407|195793|45794|2|8|15110.32|0.10|0.02|N|O|1996-02-22|1996-01-09|1996-03-22|COLLECT COD|REG AIR|leep slyly express d| +7407|688039|553|3|16|16432.00|0.03|0.02|N|O|1996-03-08|1996-01-16|1996-03-18|TAKE BACK RETURN|RAIL| slyly along the slyly pe| +7407|861573|11574|4|15|23017.95|0.07|0.07|N|O|1995-11-28|1995-12-25|1995-12-08|TAKE BACK RETURN|TRUCK|ully final packages| +7407|451642|1643|5|36|57370.32|0.02|0.03|N|O|1996-01-09|1996-01-03|1996-01-12|COLLECT COD|TRUCK|ly dogged accoun| +7407|737450|24993|6|23|34210.66|0.05|0.01|N|O|1996-03-05|1996-01-31|1996-03-19|TAKE BACK RETURN|MAIL|hely unusual foxes. furious| +7407|315056|15057|7|20|21420.80|0.00|0.06|N|O|1996-03-14|1995-12-24|1996-03-18|TAKE BACK RETURN|REG AIR|ending packages thrash i| +7432|138657|26164|1|49|83086.85|0.04|0.07|N|O|1998-01-08|1997-10-31|1998-01-20|NONE|RAIL|lar accounts cajole blithely. ideas | +7432|392625|42626|2|22|37787.42|0.10|0.04|N|O|1997-10-08|1997-10-28|1997-10-25|NONE|MAIL|l, regular instructions. carefully bo| +7432|834860|34861|3|22|39486.04|0.10|0.03|N|O|1997-10-06|1997-11-05|1997-10-09|DELIVER IN PERSON|SHIP|unts according to the fina| +7432|485575|48085|4|38|59300.90|0.05|0.03|N|O|1997-11-20|1997-12-04|1997-12-18|TAKE BACK RETURN|AIR|l attainments against the | +7433|547643|10154|1|45|76077.90|0.03|0.08|R|F|1995-02-20|1995-02-23|1995-03-08|COLLECT COD|AIR|nding excuses affix | +7433|221494|21495|2|8|11323.84|0.05|0.02|A|F|1995-02-27|1995-02-13|1995-03-17|NONE|RAIL|lites. even dolphins sleep blit| +7433|640980|40981|3|46|88363.70|0.06|0.04|R|F|1995-01-16|1995-01-25|1995-02-09|NONE|FOB| regular, pending accounts nag. | +7433|938620|38621|4|39|64684.62|0.07|0.06|R|F|1995-04-09|1995-02-13|1995-04-24|COLLECT COD|MAIL|ly regular acco| +7433|371809|46824|5|16|30092.64|0.04|0.08|R|F|1995-01-24|1995-01-24|1995-01-31|COLLECT COD|SHIP| accounts haggle slyly among t| +7434|674640|12180|1|8|12916.88|0.01|0.04|N|O|1998-09-07|1998-09-05|1998-10-01|COLLECT COD|MAIL|nticingly bold instru| +7434|662556|25070|2|44|66814.88|0.07|0.06|N|O|1998-11-07|1998-09-29|1998-11-13|TAKE BACK RETURN|FOB|ites about the pac| +7434|572798|22799|3|6|11224.62|0.07|0.06|N|O|1998-09-14|1998-10-07|1998-10-01|DELIVER IN PERSON|RAIL|y final theodolites nag | +7435|606415|18928|1|40|52855.20|0.10|0.00|N|O|1996-05-22|1996-06-04|1996-05-24|NONE|RAIL|fully. pending foxes wake regularly. ca| +7436|180395|5402|1|1|1475.39|0.07|0.00|N|O|1996-03-01|1996-02-24|1996-03-03|DELIVER IN PERSON|RAIL|osits. ironic deposits sleep q| +7436|894888|19923|2|41|77196.44|0.08|0.04|N|O|1996-02-07|1996-03-06|1996-02-27|TAKE BACK RETURN|AIR|ickly even d| +7437|489247|26775|1|9|11125.98|0.02|0.07|A|F|1992-05-29|1992-07-22|1992-06-12|COLLECT COD|SHIP|y blithely express de| +7437|758960|33991|2|22|44416.46|0.04|0.02|A|F|1992-06-01|1992-08-05|1992-06-16|TAKE BACK RETURN|FOB|lent deposits detect fur| +7438|431090|18615|1|31|31653.17|0.10|0.00|N|O|1996-07-14|1996-07-28|1996-08-10|NONE|AIR|blithely bold, regular packages. furiously| +7438|324595|37102|2|29|46967.82|0.01|0.03|N|O|1996-06-21|1996-07-20|1996-07-12|COLLECT COD|REG AIR|nts. quickly final frets wake blithel| +7438|461940|11941|3|43|81782.56|0.06|0.07|N|O|1996-10-04|1996-08-13|1996-10-21|TAKE BACK RETURN|SHIP|pecial foxes? ironic depende| +7438|824266|49299|4|41|48799.02|0.00|0.03|N|O|1996-08-22|1996-08-30|1996-09-12|NONE|REG AIR| deposits haggle furio| +7439|675149|12689|1|26|29226.86|0.10|0.05|R|F|1992-10-13|1992-10-09|1992-10-14|NONE|FOB|special accounts. bold foxes above the fl| +7439|225488|13001|2|40|56538.80|0.00|0.01|A|F|1992-09-13|1992-09-19|1992-09-26|DELIVER IN PERSON|MAIL|. quickly | +7439|776796|26797|3|15|28091.40|0.00|0.02|R|F|1992-09-20|1992-10-15|1992-10-03|DELIVER IN PERSON|AIR| toward the final requests. express r| +7439|605207|42744|4|41|45598.97|0.08|0.01|A|F|1992-09-05|1992-09-12|1992-09-18|NONE|SHIP|ccording to the instruction| +7439|700028|25057|5|32|32895.68|0.04|0.04|A|F|1992-10-10|1992-09-17|1992-10-19|COLLECT COD|REG AIR|fully after t| +7464|732595|7624|1|11|17903.16|0.08|0.01|N|O|1998-04-22|1998-03-06|1998-05-18|COLLECT COD|TRUCK|lent instructions. q| +7464|719404|19405|2|15|21350.55|0.06|0.00|N|O|1998-01-30|1998-03-04|1998-02-13|DELIVER IN PERSON|MAIL|ual theodolites wake furiously. blithely | +7464|16990|4491|3|26|49581.74|0.01|0.05|N|O|1998-02-07|1998-02-18|1998-02-27|COLLECT COD|SHIP|ven pinto beans according to the pending p| +7464|538830|1341|4|24|44851.44|0.00|0.05|N|O|1998-03-27|1998-03-13|1998-03-30|NONE|FOB|usly pending packages| +7464|101711|1712|5|27|46243.17|0.04|0.02|N|O|1997-12-24|1998-02-24|1998-01-05|DELIVER IN PERSON|TRUCK|al packages. blithely ironic a| +7465|975961|25962|1|32|65181.44|0.05|0.05|N|O|1998-06-23|1998-06-01|1998-07-06|NONE|RAIL|its. pinto beans wa| +7465|964791|27311|2|26|48249.50|0.03|0.02|N|O|1998-06-02|1998-04-28|1998-06-17|DELIVER IN PERSON|MAIL|l, special platelets haggle qui| +7465|233938|33939|3|26|48669.92|0.04|0.06|N|O|1998-04-17|1998-06-12|1998-05-11|COLLECT COD|SHIP|even excuses. furiously ironic shea| +7465|782032|19578|4|50|55700.00|0.03|0.04|N|O|1998-04-12|1998-05-03|1998-04-15|DELIVER IN PERSON|SHIP|al requests.| +7466|321219|8738|1|9|11161.80|0.04|0.02|A|F|1994-03-19|1994-03-11|1994-03-29|COLLECT COD|TRUCK|ts are slyly. quickly | +7466|711599|11600|2|6|9663.36|0.06|0.06|R|F|1994-01-30|1994-02-27|1994-02-04|NONE|SHIP|gular deposits; even | +7466|829479|41996|3|21|29577.03|0.07|0.05|R|F|1994-02-23|1994-03-21|1994-03-09|TAKE BACK RETURN|TRUCK|ic requests snooze furiously final, final a| +7466|38754|1255|4|38|64324.50|0.08|0.06|A|F|1994-03-10|1994-02-28|1994-03-30|DELIVER IN PERSON|REG AIR|te slyly deposits. final| +7466|323379|23380|5|26|36461.36|0.01|0.06|R|F|1994-05-02|1994-03-24|1994-05-24|TAKE BACK RETURN|MAIL|en requests wake slyly. theodolites among t| +7466|29701|4702|6|34|55443.80|0.02|0.02|A|F|1994-01-12|1994-03-26|1994-01-23|COLLECT COD|RAIL|y regular deposits across the caref| +7467|668688|18689|1|19|31476.35|0.08|0.08|N|O|1997-01-21|1997-01-24|1997-02-01|TAKE BACK RETURN|RAIL|ts cajole across the carefully reg| +7467|628917|28918|2|30|55376.40|0.06|0.05|N|O|1997-04-09|1997-02-05|1997-04-29|TAKE BACK RETURN|AIR|sly express depths. caref| +7467|206800|31809|3|11|18774.69|0.01|0.02|N|O|1997-04-16|1997-02-26|1997-05-07|DELIVER IN PERSON|TRUCK|out the furiously silent dependencies| +7467|679076|29077|4|27|28486.08|0.02|0.07|N|O|1997-01-07|1997-02-10|1997-01-10|TAKE BACK RETURN|FOB| deposits lose furiously quickly regul| +7467|222294|9807|5|5|6081.40|0.08|0.05|N|O|1997-01-19|1997-01-29|1997-02-07|NONE|RAIL|uriously dogged deposits nag carefu| +7467|91386|16389|6|48|66114.24|0.09|0.05|N|O|1997-02-04|1997-02-27|1997-02-07|COLLECT COD|TRUCK|he regular requests. furiously bol| +7467|912860|25379|7|17|31837.94|0.00|0.03|N|O|1996-12-20|1997-02-04|1997-01-04|COLLECT COD|SHIP|pecial requests | +7468|434139|46648|1|46|49363.06|0.09|0.02|R|F|1994-05-18|1994-05-25|1994-06-15|COLLECT COD|REG AIR|ggle carefully carefully permanen| +7468|559342|34365|2|47|65862.04|0.09|0.06|A|F|1994-06-27|1994-05-13|1994-07-26|DELIVER IN PERSON|SHIP| silent pains haggle express| +7468|858223|20741|3|38|44884.84|0.09|0.00|A|F|1994-05-19|1994-05-01|1994-06-07|DELIVER IN PERSON|AIR|haggle fluffily alongside of| +7468|151222|13726|4|26|33103.72|0.01|0.06|A|F|1994-06-10|1994-04-15|1994-06-18|TAKE BACK RETURN|TRUCK|ironic ideas. depend| +7469|773896|36412|1|14|27578.04|0.01|0.08|A|F|1995-03-02|1995-01-21|1995-03-14|COLLECT COD|TRUCK| pinto beans. slyly bold | +7470|495827|33355|1|12|21873.60|0.01|0.01|A|F|1994-12-17|1994-12-08|1994-12-28|NONE|TRUCK|ackages solve. blithe| +7470|357062|7063|2|45|50357.25|0.10|0.06|R|F|1995-01-22|1994-12-18|1995-02-06|COLLECT COD|MAIL|s. slyly regular | +7470|134844|22351|3|17|31940.28|0.02|0.06|A|F|1994-12-23|1994-11-04|1994-12-29|NONE|REG AIR|odolites. furiously regular theodolites c| +7471|13787|26288|1|21|35716.38|0.08|0.00|R|F|1992-03-18|1992-04-08|1992-04-06|COLLECT COD|MAIL|ironic excus| +7471|705078|30107|2|5|5415.20|0.01|0.08|R|F|1992-02-16|1992-04-18|1992-02-23|COLLECT COD|REG AIR|ions cajole blithely against the regul| +7471|242128|17137|3|47|50295.17|0.08|0.08|R|F|1992-03-14|1992-03-13|1992-03-31|COLLECT COD|MAIL|final pinto beans. ironic requests sol| +7471|442467|4976|4|9|12684.96|0.08|0.00|R|F|1992-04-10|1992-04-26|1992-04-27|DELIVER IN PERSON|AIR|nts boost busily after the fluffily unu| +7471|541486|41487|5|34|51933.64|0.10|0.01|R|F|1992-03-24|1992-04-20|1992-03-30|NONE|RAIL|. even accounts afte| +7471|738516|13545|6|38|59070.24|0.00|0.01|R|F|1992-05-11|1992-03-14|1992-05-18|COLLECT COD|REG AIR| quickly fur| +7496|417905|30414|1|41|74738.08|0.00|0.00|N|O|1995-08-05|1995-05-16|1995-08-13|NONE|SHIP|the silent | +7496|717271|4814|2|41|52817.84|0.01|0.00|N|F|1995-06-03|1995-05-19|1995-06-18|DELIVER IN PERSON|RAIL|y final deposits. blithely ironic foxes| +7496|167906|30410|3|14|27634.60|0.03|0.06|R|F|1995-05-15|1995-06-01|1995-05-23|COLLECT COD|SHIP|latelets need to use blithely special re| +7496|991813|41814|4|19|36190.63|0.05|0.00|N|O|1995-08-09|1995-06-11|1995-08-27|NONE|FOB|ajole; quickly ironic accounts boost. caref| +7496|387525|37526|5|34|54825.34|0.06|0.01|N|O|1995-07-06|1995-06-15|1995-07-07|TAKE BACK RETURN|AIR| regular packag| +7497|256066|31077|1|13|13286.65|0.06|0.07|A|F|1995-03-22|1995-04-03|1995-04-15|TAKE BACK RETURN|FOB|sits are carefully | +7498|174118|11628|1|3|3576.33|0.07|0.02|N|O|1998-04-16|1998-02-25|1998-04-30|NONE|TRUCK|uests must have to are furiously pend| +7498|396150|8658|2|17|21184.38|0.07|0.06|N|O|1998-02-21|1998-02-16|1998-03-21|DELIVER IN PERSON|SHIP|n, bold accounts boost furiou| +7498|83614|21118|3|45|71892.45|0.06|0.08|N|O|1998-05-07|1998-03-20|1998-05-18|NONE|MAIL|bravely above the ironic instr| +7498|288472|978|4|19|27748.74|0.10|0.00|N|O|1998-01-24|1998-03-27|1998-02-15|DELIVER IN PERSON|MAIL| grow blithely against the accou| +7498|340995|16008|5|5|10179.90|0.05|0.03|N|O|1998-03-08|1998-03-25|1998-03-27|TAKE BACK RETURN|FOB|deposits use carefull| +7498|95153|32657|6|33|37888.95|0.07|0.02|N|O|1998-04-11|1998-02-10|1998-04-21|NONE|AIR| quickly sp| +7499|390780|40781|1|25|46769.25|0.01|0.07|N|O|1996-08-07|1996-07-02|1996-08-31|COLLECT COD|MAIL|nic dependencies cajole. carefully fi| +7499|831129|6162|2|40|42403.20|0.02|0.01|N|O|1996-06-08|1996-08-14|1996-07-04|TAKE BACK RETURN|REG AIR|nic deposits boost quic| +7499|772424|22425|3|34|50877.26|0.10|0.05|N|O|1996-08-05|1996-08-07|1996-08-15|TAKE BACK RETURN|RAIL|s print against the furiousl| +7500|561814|49348|1|34|63776.86|0.06|0.07|A|F|1992-11-25|1992-12-13|1992-12-21|COLLECT COD|REG AIR|ckages haggle fluffily. in| +7501|148168|10671|1|41|49862.56|0.09|0.03|A|F|1994-06-10|1994-06-08|1994-06-16|TAKE BACK RETURN|AIR|e furiously. blithely regular request| +7501|245959|45960|2|23|43813.62|0.08|0.00|R|F|1994-07-14|1994-04-30|1994-07-16|NONE|AIR|, regular accounts believe fluffily fin| +7501|816937|16938|3|27|50055.03|0.06|0.03|R|F|1994-05-07|1994-05-23|1994-05-08|DELIVER IN PERSON|MAIL| carefully. final requests ar| +7501|256433|43949|4|43|59745.06|0.08|0.02|R|F|1994-06-16|1994-06-06|1994-07-10|NONE|MAIL| slyly regular requests | +7502|281351|43857|1|22|29311.48|0.07|0.00|N|O|1997-09-17|1997-10-05|1997-10-08|TAKE BACK RETURN|FOB|l deposits sleep express inst| +7502|660994|10995|2|22|43009.12|0.04|0.03|N|O|1997-09-03|1997-10-16|1997-09-24|NONE|AIR|slyly pending p| +7502|313411|13412|3|48|68371.20|0.05|0.00|N|O|1997-09-03|1997-11-20|1997-09-06|TAKE BACK RETURN|RAIL|ial account| +7503|891284|16319|1|20|25504.80|0.04|0.05|R|F|1995-05-06|1995-02-26|1995-05-26|DELIVER IN PERSON|MAIL|e accounts. pending fo| +7503|794107|31653|2|23|27624.61|0.08|0.07|A|F|1995-05-16|1995-03-18|1995-06-10|COLLECT COD|MAIL|s cajole requests. platelets | +7503|541562|41563|3|7|11224.78|0.01|0.06|A|F|1995-05-14|1995-02-27|1995-06-08|NONE|SHIP|deposits. slyly ironic ideas according to | +7503|21172|21173|4|9|9838.53|0.05|0.01|A|F|1995-02-15|1995-02-24|1995-02-22|DELIVER IN PERSON|RAIL|ns along the packages sleep f| +7503|827562|15111|5|12|17874.24|0.07|0.02|R|F|1995-04-06|1995-02-24|1995-04-22|NONE|MAIL|sly bold accounts doubt slyly r| +7503|818554|18555|6|37|54482.87|0.01|0.04|R|F|1995-02-26|1995-03-06|1995-03-02|NONE|TRUCK| hockey players about the c| +7503|428742|3759|7|45|75182.40|0.00|0.05|R|F|1995-02-12|1995-03-18|1995-02-21|COLLECT COD|REG AIR|uriously stealthy theodolites sleep careful| +7528|857678|45230|1|43|70332.09|0.08|0.04|N|O|1998-02-16|1997-12-19|1998-02-22|TAKE BACK RETURN|TRUCK|press deposits wake across| +7528|993901|18940|2|19|37902.34|0.10|0.00|N|O|1998-02-17|1998-01-10|1998-02-26|NONE|AIR| about the special| +7528|482632|7651|3|27|43594.47|0.01|0.01|N|O|1997-12-06|1998-01-14|1997-12-09|NONE|RAIL|ic foxes wake quickly pending | +7528|590785|40786|4|15|28136.40|0.02|0.00|N|O|1998-01-29|1998-01-07|1998-02-23|NONE|REG AIR|fluffily express escapades against the acc| +7528|308333|20840|5|19|25485.08|0.02|0.04|N|O|1998-02-19|1997-11-29|1998-03-12|COLLECT COD|FOB|o the carefully regula| +7529|406024|31041|1|10|9300.00|0.03|0.07|R|F|1994-04-14|1994-05-15|1994-05-08|NONE|MAIL|usual foxes b| +7529|30590|43091|2|29|44097.11|0.06|0.07|R|F|1994-02-25|1994-04-18|1994-03-15|DELIVER IN PERSON|AIR|counts engage after th| +7529|118549|6056|3|38|59566.52|0.01|0.07|A|F|1994-02-25|1994-03-29|1994-03-23|TAKE BACK RETURN|AIR| packages about the slyly regular foxes | +7529|438135|25660|4|26|27900.86|0.05|0.03|A|F|1994-06-04|1994-05-23|1994-06-14|COLLECT COD|REG AIR|onic instructions boost acc| +7529|731551|6580|5|34|53805.68|0.03|0.01|A|F|1994-03-11|1994-05-22|1994-03-14|NONE|AIR| carefully regular th| +7529|175525|532|6|35|56018.20|0.10|0.07|A|F|1994-05-01|1994-05-23|1994-05-21|COLLECT COD|MAIL|s integrate furiously ruthless foxes. sp| +7529|44190|6691|7|46|52172.74|0.08|0.06|A|F|1994-03-29|1994-05-01|1994-04-15|NONE|FOB|al ideas use foxes. furiously regular cour| +7530|691200|41201|1|44|52411.48|0.08|0.00|A|F|1992-10-04|1992-10-08|1992-10-16|DELIVER IN PERSON|REG AIR|the slowly regular accounts are carefully | +7530|995937|33495|2|17|34559.13|0.01|0.00|A|F|1992-08-20|1992-11-05|1992-09-08|DELIVER IN PERSON|AIR|tealthy deposits; platelets | +7531|602854|15367|1|2|3513.64|0.02|0.03|A|F|1993-03-13|1993-02-13|1993-03-14|NONE|TRUCK|kly-- bold dol| +7531|162643|153|2|2|3411.28|0.05|0.05|A|F|1993-01-01|1993-02-20|1993-01-26|COLLECT COD|RAIL|re furiously evenly ironic pint| +7531|530744|30745|3|32|56791.04|0.08|0.08|R|F|1993-03-21|1993-03-22|1993-04-16|DELIVER IN PERSON|RAIL|e furiously.| +7531|213495|1008|4|5|7042.40|0.01|0.07|R|F|1992-12-31|1993-02-16|1993-01-29|COLLECT COD|MAIL|ly pending pearls kindle regularly a| +7532|746879|46880|1|46|88588.64|0.03|0.08|A|F|1993-05-19|1993-04-29|1993-06-10|NONE|SHIP|packages are fluffily carefully quiet depe| +7533|806344|6345|1|24|30007.20|0.05|0.05|A|F|1992-07-29|1992-09-16|1992-08-10|COLLECT COD|REG AIR| requests wake among the ironic| +7533|212355|12356|2|4|5069.36|0.00|0.06|R|F|1992-09-18|1992-08-08|1992-09-19|NONE|REG AIR| slyly furiously entici| +7533|47184|22185|3|30|33935.40|0.10|0.02|R|F|1992-09-11|1992-08-24|1992-10-09|NONE|MAIL|, daring i| +7534|295726|45727|1|39|67146.69|0.05|0.07|N|O|1996-12-17|1997-01-17|1996-12-31|DELIVER IN PERSON|SHIP|lites. even, special ac| +7534|259941|34952|2|5|9504.65|0.10|0.07|N|O|1997-01-23|1996-12-12|1997-02-08|TAKE BACK RETURN|FOB|final accounts. furiously ironic reques| +7534|812714|12715|3|44|71573.48|0.09|0.00|N|O|1997-01-23|1997-01-16|1997-02-17|COLLECT COD|FOB| pending asymptotes are. dolphins hagg| +7534|271577|9093|4|46|71233.76|0.05|0.08|N|O|1997-01-28|1997-02-01|1997-02-03|TAKE BACK RETURN|REG AIR|luffily against the quickly ex| +7534|386380|23902|5|22|32260.14|0.06|0.02|N|O|1997-02-08|1996-12-22|1997-02-20|COLLECT COD|REG AIR|ual asymptotes. regular, final foxes m| +7534|872518|22519|6|12|17885.64|0.01|0.07|N|O|1997-01-06|1997-01-05|1997-01-30|DELIVER IN PERSON|REG AIR| carefully regula| +7535|748712|11227|1|19|33452.92|0.09|0.07|R|F|1993-10-04|1993-08-17|1993-11-01|DELIVER IN PERSON|MAIL| accounts. final pack| +7535|599365|11877|2|24|35144.16|0.03|0.04|R|F|1993-07-17|1993-09-08|1993-08-08|COLLECT COD|AIR|lly final requests maintain| +7535|526130|38641|3|50|57805.50|0.06|0.07|R|F|1993-10-24|1993-09-08|1993-11-07|DELIVER IN PERSON|TRUCK|express dependenc| +7535|665938|28452|4|16|30462.40|0.03|0.07|A|F|1993-09-11|1993-09-27|1993-09-18|TAKE BACK RETURN|RAIL|above the carefully special reques| +7560|173282|10792|1|12|16263.36|0.10|0.01|N|O|1996-01-09|1995-12-10|1996-01-21|NONE|SHIP|y regular, even accounts. quickly regu| +7560|343481|43482|2|18|27440.46|0.09|0.00|N|O|1995-12-07|1995-12-09|1995-12-21|NONE|MAIL| blithely final accou| +7561|241958|29471|1|41|77897.54|0.10|0.02|N|O|1996-11-16|1996-11-05|1996-11-21|NONE|SHIP|ages. ironic, | +7561|573297|10831|2|42|57551.34|0.07|0.08|N|O|1996-11-13|1996-10-21|1996-11-16|DELIVER IN PERSON|TRUCK|hely silent accoun| +7561|393739|6247|3|43|78806.96|0.01|0.02|N|O|1996-10-07|1996-10-17|1996-10-22|DELIVER IN PERSON|RAIL|ithely regular platelets detect regul| +7561|560583|35606|4|35|57524.60|0.08|0.04|N|O|1996-09-29|1996-10-11|1996-10-19|NONE|AIR|sleep blithely above t| +7562|470468|45487|1|24|34522.56|0.00|0.00|N|O|1997-01-12|1996-12-29|1997-01-28|COLLECT COD|AIR| deposits around the blithely speci| +7562|150015|16|2|17|18105.17|0.05|0.00|N|O|1997-01-26|1997-02-14|1997-02-06|COLLECT COD|RAIL|unts. quickly regula| +7562|287256|24772|3|32|39783.68|0.05|0.06|N|O|1997-01-30|1997-01-03|1997-02-08|DELIVER IN PERSON|AIR|inal instructions. fu| +7562|911471|36508|4|44|65226.92|0.08|0.06|N|O|1997-01-09|1997-01-05|1997-01-31|DELIVER IN PERSON|MAIL|hely along the slyly ex| +7562|87563|65|5|12|18606.72|0.07|0.08|N|O|1997-01-23|1996-12-24|1997-02-04|TAKE BACK RETURN|RAIL|lent depths a| +7563|536786|24317|1|21|38277.96|0.03|0.05|A|F|1993-01-09|1992-10-25|1993-01-17|DELIVER IN PERSON|AIR|fully quickly special accounts. bli| +7563|755189|42735|2|3|3732.45|0.03|0.07|A|F|1992-12-14|1992-11-13|1993-01-03|DELIVER IN PERSON|MAIL|uickly again| +7563|449949|12458|3|3|5696.76|0.02|0.00|R|F|1992-11-14|1992-12-03|1992-12-01|NONE|AIR|ons. slyly unusual| +7563|286579|11590|4|43|67319.08|0.04|0.00|A|F|1992-11-14|1992-11-06|1992-12-07|NONE|AIR| enticingly ironic deposits wake slyly bl| +7563|518406|5937|5|28|39882.64|0.09|0.07|A|F|1992-10-21|1992-12-02|1992-10-31|DELIVER IN PERSON|SHIP|uests sleep ca| +7563|846305|46306|6|22|27527.72|0.09|0.03|A|F|1992-12-13|1992-11-20|1992-12-15|TAKE BACK RETURN|TRUCK| final requests. slyly pending accounts| +7563|831349|18898|7|18|23045.40|0.09|0.03|R|F|1992-12-22|1992-11-15|1992-12-29|DELIVER IN PERSON|SHIP|tes. ironic accounts detect carefull| +7564|472920|10448|1|24|45429.60|0.01|0.07|N|O|1997-10-03|1997-09-26|1997-10-25|TAKE BACK RETURN|SHIP|ckages. slyly regular deposits | +7564|351803|1804|2|38|70482.02|0.10|0.06|N|O|1997-11-14|1997-10-28|1997-11-24|COLLECT COD|TRUCK|refully bold request| +7565|119089|19090|1|8|8864.64|0.10|0.06|A|F|1993-05-09|1993-04-08|1993-05-22|COLLECT COD|SHIP|egular, unu| +7565|516442|16443|2|42|61253.64|0.01|0.05|R|F|1993-03-09|1993-04-26|1993-03-15|DELIVER IN PERSON|AIR| bold accounts thrash. | +7565|830437|42954|3|6|8204.34|0.09|0.02|A|F|1993-03-16|1993-03-14|1993-03-30|DELIVER IN PERSON|TRUCK|y pending deposits cajole a| +7565|147480|34987|4|2|3054.96|0.05|0.02|A|F|1993-04-02|1993-04-15|1993-04-11|COLLECT COD|REG AIR|ithe ideas integrate furiously bold| +7566|761066|36097|1|9|10143.27|0.10|0.08|A|F|1993-02-28|1993-03-21|1993-03-29|DELIVER IN PERSON|SHIP|ccounts haggl| +7567|934360|46879|1|16|22309.12|0.06|0.01|N|O|1996-06-22|1996-05-14|1996-07-07|COLLECT COD|TRUCK|yly final platelets. regular foxes are fur| +7567|785528|48044|2|25|40337.25|0.03|0.07|N|O|1996-06-01|1996-06-28|1996-06-20|TAKE BACK RETURN|MAIL|le furiously. pinto beans| +7592|21466|8967|1|5|6937.30|0.02|0.05|N|O|1998-03-27|1998-04-07|1998-04-23|NONE|MAIL|ey players ha| +7592|762800|25316|2|43|80099.11|0.05|0.05|N|O|1998-02-17|1998-03-05|1998-03-15|DELIVER IN PERSON|RAIL|e final accounts. car| +7593|502368|27389|1|7|9592.38|0.09|0.01|R|F|1992-10-20|1992-09-30|1992-10-21|NONE|AIR|carefully spe| +7593|289007|1513|2|4|3983.96|0.00|0.08|R|F|1992-08-20|1992-09-06|1992-09-06|COLLECT COD|MAIL|sauternes hag| +7594|299885|12391|1|18|33927.66|0.00|0.00|N|O|1997-12-23|1998-01-04|1998-01-18|TAKE BACK RETURN|SHIP|ironic accounts. epi| +7594|157456|19960|2|17|25728.65|0.09|0.07|N|O|1997-11-07|1997-11-28|1997-11-12|NONE|MAIL|ly even platelets. carefully regular noto| +7595|486329|36330|1|3|3945.90|0.03|0.01|N|O|1998-02-28|1998-02-21|1998-03-30|DELIVER IN PERSON|AIR|to beans are fluffily. ironic deposits wak| +7595|715064|15065|2|9|9711.27|0.09|0.01|N|O|1998-04-09|1998-04-01|1998-04-19|TAKE BACK RETURN|FOB|ly express accounts at the | +7595|67660|42663|3|27|43946.82|0.00|0.07|N|O|1998-01-27|1998-04-08|1998-02-09|NONE|TRUCK|olites hang | +7595|156294|31301|4|12|16203.48|0.06|0.00|N|O|1998-02-14|1998-03-25|1998-03-01|DELIVER IN PERSON|REG AIR|ns. slyly even pinto beans cajo| +7595|828507|28508|5|16|22967.36|0.07|0.05|N|O|1998-05-10|1998-03-28|1998-05-23|DELIVER IN PERSON|REG AIR|y. furiously unusual requests cajole flu| +7596|625850|13387|1|4|7103.28|0.01|0.08|N|O|1996-09-15|1996-07-12|1996-09-27|COLLECT COD|TRUCK|s wake fluffily exp| +7597|751962|14478|1|26|52362.18|0.01|0.00|N|O|1998-01-10|1998-02-13|1998-02-04|COLLECT COD|TRUCK|of the quickly express decoy| +7597|210252|10253|2|19|22082.56|0.04|0.01|N|O|1998-03-17|1998-02-07|1998-04-16|TAKE BACK RETURN|AIR|eep among the pa| +7597|693463|31003|3|9|13107.87|0.08|0.07|N|O|1998-01-18|1998-03-04|1998-02-04|COLLECT COD|REG AIR|y furiously pending ideas. final, pe| +7597|16783|41784|4|16|27196.48|0.01|0.01|N|O|1998-03-25|1998-01-30|1998-04-13|COLLECT COD|SHIP|ymptotes impress sly| +7598|378571|16093|1|14|23093.84|0.08|0.04|N|O|1995-06-20|1995-05-16|1995-07-03|NONE|FOB|ts. regular deposits after the carefully | +7598|638033|25570|2|23|22333.00|0.02|0.08|R|F|1995-05-13|1995-06-17|1995-05-16|DELIVER IN PERSON|AIR|would sleep slyly along the furi| +7598|418387|30896|3|3|3916.08|0.04|0.04|R|F|1995-05-17|1995-05-04|1995-06-16|TAKE BACK RETURN|REG AIR| are furiously abou| +7598|827237|27238|4|26|30268.94|0.07|0.03|R|F|1995-04-18|1995-05-23|1995-04-22|TAKE BACK RETURN|AIR|instructions cajole blithely quic| +7598|359341|46863|5|9|12602.97|0.08|0.06|A|F|1995-04-19|1995-06-28|1995-05-16|COLLECT COD|SHIP| platelets. silent, ev| +7599|722229|9772|1|21|26274.99|0.06|0.02|R|F|1994-03-12|1994-01-21|1994-03-29|COLLECT COD|AIR|hely unusual accounts sublate among the b| +7599|491080|16099|2|21|22492.26|0.06|0.05|A|F|1994-03-01|1994-02-11|1994-03-28|TAKE BACK RETURN|MAIL|fully according to the blithely expres| +7599|580994|30995|3|49|101673.53|0.05|0.02|A|F|1994-03-05|1994-02-23|1994-03-31|NONE|TRUCK|tithes. pinto beans sublate carefu| +7599|759694|47240|4|22|38580.52|0.02|0.01|R|F|1993-12-29|1994-01-30|1994-01-18|COLLECT COD|RAIL|ular foxes engage slyly fin| +7599|166620|41627|5|47|79271.14|0.10|0.07|A|F|1993-12-10|1994-01-15|1993-12-14|TAKE BACK RETURN|RAIL|ake fluffily final packag| +7599|378699|3714|6|49|87106.32|0.10|0.07|A|F|1994-02-24|1994-01-13|1994-02-28|NONE|MAIL|accounts haggle. carefully final requests | +7599|788696|26242|7|29|51755.14|0.05|0.05|R|F|1993-12-18|1994-01-05|1994-01-05|COLLECT COD|RAIL|g the furiously special accounts. instru| +7624|607956|32981|1|37|68965.04|0.03|0.04|N|O|1997-06-02|1997-04-11|1997-06-21|NONE|TRUCK|foxes haggle alon| +7624|902960|2961|2|11|21592.12|0.05|0.05|N|O|1997-03-15|1997-04-04|1997-04-13|DELIVER IN PERSON|MAIL|ions haggle f| +7624|39643|27144|3|34|53809.76|0.01|0.08|N|O|1997-03-31|1997-04-26|1997-04-07|DELIVER IN PERSON|MAIL|the requests. bold re| +7624|267002|42013|4|10|9689.90|0.08|0.04|N|O|1997-04-11|1997-05-07|1997-04-14|TAKE BACK RETURN|MAIL|. decoys u| +7624|493155|30683|5|4|4592.52|0.09|0.06|N|O|1997-03-15|1997-04-08|1997-04-01|COLLECT COD|AIR| silent ins| +7625|195429|7933|1|29|44208.18|0.01|0.08|N|O|1997-09-14|1997-09-18|1997-10-09|NONE|SHIP|lyly. furiously busy id| +7625|563420|954|2|22|32634.80|0.06|0.05|N|O|1997-09-19|1997-11-05|1997-09-27|NONE|AIR|uctions haggle quickly regular fox| +7626|63671|13672|1|31|50674.77|0.09|0.00|N|O|1995-11-23|1995-11-01|1995-12-07|DELIVER IN PERSON|REG AIR|above the packages integrate f| +7626|104298|16801|2|31|40370.99|0.00|0.04|N|O|1995-10-15|1995-09-28|1995-10-22|NONE|REG AIR| blithely permanent pack| +7626|931631|31632|3|8|13300.72|0.00|0.08|N|O|1995-10-28|1995-10-27|1995-11-12|NONE|SHIP|ular theodolites alongside of the silent| +7627|401535|1536|1|15|21547.65|0.03|0.01|A|F|1992-10-02|1992-09-18|1992-10-20|COLLECT COD|AIR|. furiously regular dependencies| +7627|596936|9448|2|47|95546.77|0.04|0.04|A|F|1992-07-11|1992-09-21|1992-07-26|DELIVER IN PERSON|MAIL|leep blithely | +7627|695923|45924|3|26|49891.14|0.07|0.01|R|F|1992-09-04|1992-08-13|1992-09-26|DELIVER IN PERSON|REG AIR|efully fluffi| +7627|367507|5029|4|12|18893.88|0.07|0.04|A|F|1992-10-24|1992-09-18|1992-11-12|COLLECT COD|TRUCK|ilently regular foxes. care| +7627|675971|25972|5|9|17522.46|0.02|0.00|R|F|1992-07-13|1992-08-28|1992-08-04|DELIVER IN PERSON|RAIL|y between the slyly special| +7627|32753|32754|6|17|28657.75|0.05|0.08|A|F|1992-08-17|1992-08-05|1992-09-11|COLLECT COD|SHIP|ys impress blithely. ironic deposits | +7627|479563|42073|7|32|49361.28|0.01|0.01|A|F|1992-07-28|1992-09-30|1992-08-17|TAKE BACK RETURN|SHIP|e. furiously ironic ac| +7628|3412|28413|1|50|65770.50|0.09|0.01|N|O|1995-08-03|1995-07-24|1995-08-16|COLLECT COD|MAIL|regular deposits cajole blithely according| +7628|345467|7974|2|9|13612.05|0.01|0.08|N|O|1995-07-08|1995-06-08|1995-08-02|DELIVER IN PERSON|FOB|final pinto beans inte| +7628|259737|47253|3|21|35631.12|0.09|0.01|N|F|1995-06-17|1995-07-01|1995-07-11|NONE|FOB| the furiously thin deposits. even fox| +7628|384052|9067|4|8|9088.32|0.05|0.00|N|O|1995-06-27|1995-07-04|1995-07-18|COLLECT COD|MAIL|y regular accou| +7629|876463|38981|1|45|64773.90|0.08|0.00|N|O|1996-03-24|1996-03-23|1996-04-01|NONE|TRUCK| ironic pinto | +7629|699815|49816|2|19|34480.82|0.10|0.04|N|O|1996-03-26|1996-02-24|1996-04-01|DELIVER IN PERSON|SHIP|along the carefully special braids grow c| +7629|776403|13949|3|20|29587.40|0.06|0.02|N|O|1996-01-19|1996-03-13|1996-02-02|DELIVER IN PERSON|REG AIR|sleep carefully. bold packa| +7629|3453|40954|4|14|18990.30|0.10|0.01|N|O|1996-01-10|1996-02-10|1996-01-27|NONE|TRUCK|he quickly even requests. pen| +7629|24209|24210|5|31|35129.20|0.00|0.04|N|O|1996-02-11|1996-02-23|1996-03-01|DELIVER IN PERSON|TRUCK|ironic excuses-- express | +7630|183123|33124|1|10|12061.20|0.06|0.08|N|O|1995-09-17|1995-08-25|1995-09-25|DELIVER IN PERSON|REG AIR|s. fluffily express foxes was s| +7630|733838|46353|2|4|7487.20|0.10|0.06|N|O|1995-09-23|1995-07-28|1995-10-21|NONE|AIR|ronic requests wake blithely abov| +7630|613008|13009|3|27|24866.19|0.08|0.08|N|O|1995-09-28|1995-08-12|1995-10-14|DELIVER IN PERSON|SHIP| across the | +7630|820804|45837|4|24|41394.24|0.01|0.07|N|O|1995-08-06|1995-09-02|1995-08-28|COLLECT COD|REG AIR|ironic platelets boost| +7630|242385|4890|5|16|21237.92|0.04|0.05|N|O|1995-07-22|1995-08-22|1995-08-02|NONE|TRUCK|sits use regu| +7631|241879|4384|1|28|50984.08|0.08|0.07|N|O|1997-11-29|1998-01-06|1997-12-24|TAKE BACK RETURN|SHIP|e final deposits. blithel| +7631|259281|9282|2|43|53331.61|0.01|0.05|N|O|1997-12-10|1998-01-07|1998-01-09|NONE|RAIL|ally bold | +7631|725261|25262|3|47|60452.81|0.07|0.02|N|O|1997-12-11|1997-12-29|1997-12-24|NONE|FOB|are carefully along the c| +7656|867584|17585|1|17|26376.18|0.07|0.03|R|F|1993-04-01|1993-05-07|1993-04-14|TAKE BACK RETURN|MAIL| quickly final accounts. caref| +7656|479511|4530|2|21|31300.29|0.08|0.01|A|F|1993-03-22|1993-04-26|1993-04-13|COLLECT COD|AIR|ironic foxes nag. f| +7657|17717|42718|1|2|3269.42|0.04|0.06|A|F|1995-01-06|1994-11-18|1995-02-03|NONE|RAIL|s cajole furiously. special, reg| +7657|760511|35542|2|34|53430.32|0.02|0.07|A|F|1994-09-22|1994-11-18|1994-10-19|DELIVER IN PERSON|AIR|posits alongside of the carefully bold i| +7658|247752|10257|1|40|67989.60|0.10|0.02|A|F|1993-09-30|1993-09-08|1993-10-18|TAKE BACK RETURN|TRUCK|eposits haggle furiously carefully bol| +7658|960488|23008|2|49|75873.56|0.00|0.03|A|F|1993-10-28|1993-10-10|1993-11-19|COLLECT COD|TRUCK|furiously spe| +7659|740995|16024|1|24|48863.04|0.04|0.08|N|O|1995-11-15|1995-10-22|1995-11-30|TAKE BACK RETURN|TRUCK| special, ironic dependencie| +7660|556971|31994|1|38|77062.10|0.02|0.01|A|F|1992-10-06|1992-12-16|1992-10-09|COLLECT COD|REG AIR| the blithely bold theodolite| +7660|7016|7017|2|48|44304.48|0.02|0.05|A|F|1993-01-01|1992-12-15|1993-01-12|DELIVER IN PERSON|REG AIR|cial dolphins across the even, express| +7660|914709|27228|3|17|29302.22|0.03|0.08|R|F|1992-12-18|1992-11-12|1993-01-15|DELIVER IN PERSON|FOB|e fluffily ironic pinto beans. | +7660|512862|393|4|46|86242.64|0.06|0.05|A|F|1992-11-30|1992-12-04|1992-12-02|COLLECT COD|RAIL|. regular, express theodolites doze slyly f| +7660|667579|17580|5|12|18558.48|0.03|0.07|R|F|1992-10-19|1992-11-23|1992-11-15|NONE|MAIL|he regular requests-- blithely regular r| +7661|671506|46533|1|21|31026.87|0.10|0.08|R|F|1995-04-16|1995-03-03|1995-04-22|DELIVER IN PERSON|REG AIR| special, care| +7661|994879|7399|2|28|55267.24|0.09|0.01|R|F|1995-04-09|1995-03-19|1995-04-14|NONE|SHIP|ly regular deposits. slyly ironic foxe| +7661|922883|35402|3|6|11435.04|0.07|0.05|R|F|1995-03-24|1995-03-15|1995-04-17|COLLECT COD|AIR|. blithely ironic packages nag iro| +7662|108886|8887|1|30|56846.40|0.09|0.03|N|O|1996-08-06|1996-09-12|1996-08-22|COLLECT COD|SHIP|structions! blithely even | +7662|33436|45937|2|50|68471.50|0.04|0.08|N|O|1996-08-13|1996-09-04|1996-09-05|DELIVER IN PERSON|FOB|usual foxes. special packages ha| +7662|956691|19211|3|16|27962.40|0.04|0.05|N|O|1996-08-13|1996-08-30|1996-08-15|COLLECT COD|SHIP|s wake around the carefully furious p| +7662|92053|4555|4|9|9405.45|0.08|0.04|N|O|1996-08-28|1996-07-30|1996-09-10|NONE|REG AIR|accounts. unusual foxes wake quickly p| +7662|126701|39204|5|44|76018.80|0.04|0.08|N|O|1996-09-27|1996-08-13|1996-10-20|DELIVER IN PERSON|REG AIR|s. special, ironic requests dazzle blith| +7662|460048|47576|6|38|38304.76|0.06|0.02|N|O|1996-09-07|1996-07-21|1996-09-23|NONE|FOB|final accoun| +7663|609447|34472|1|45|61038.45|0.07|0.07|A|F|1993-08-26|1993-06-25|1993-09-09|TAKE BACK RETURN|TRUCK|s into the special accounts wake| +7663|966469|16470|2|14|21495.88|0.01|0.05|A|F|1993-06-13|1993-08-08|1993-07-06|TAKE BACK RETURN|SHIP|uts eat aft| +7688|944357|44358|1|3|4203.93|0.01|0.06|N|O|1996-05-27|1996-06-16|1996-06-04|TAKE BACK RETURN|SHIP|y ironic instructions w| +7688|802766|40315|2|8|13349.76|0.01|0.02|N|O|1996-07-03|1996-07-10|1996-08-02|TAKE BACK RETURN|AIR|usly final foxes are slyly. sentiments cajo| +7688|86101|23605|3|34|36961.40|0.03|0.05|N|O|1996-09-14|1996-07-10|1996-10-05|DELIVER IN PERSON|MAIL|ven, bold ideas grow slyly.| +7688|95943|45944|4|20|38778.80|0.04|0.05|N|O|1996-07-06|1996-06-19|1996-08-01|DELIVER IN PERSON|REG AIR|p. slyly regular packages cajole | +7688|499957|12467|5|30|58707.90|0.04|0.02|N|O|1996-08-22|1996-07-02|1996-08-27|NONE|AIR|oubt ironic deposits. slyly| +7688|764443|1989|6|23|34670.43|0.05|0.06|N|O|1996-06-01|1996-07-15|1996-06-24|DELIVER IN PERSON|AIR|er quickly blithely quiet frays. furiousl| +7688|986751|36752|7|11|20214.81|0.01|0.08|N|O|1996-06-12|1996-07-20|1996-07-02|DELIVER IN PERSON|SHIP|fily. silent ideas u| +7689|311597|11598|1|7|11260.06|0.07|0.06|N|O|1998-06-29|1998-06-13|1998-07-25|DELIVER IN PERSON|AIR|e until the ideas. i| +7689|996677|21716|2|4|7094.52|0.02|0.07|N|O|1998-07-18|1998-06-30|1998-08-07|TAKE BACK RETURN|REG AIR|beans. furi| +7689|137576|12581|3|33|53247.81|0.09|0.05|N|O|1998-06-18|1998-07-03|1998-06-26|NONE|REG AIR|egular acc| +7689|230353|30354|4|3|3850.02|0.09|0.06|N|O|1998-07-23|1998-07-31|1998-07-25|TAKE BACK RETURN|SHIP|l ideas haggle fluffily above the darin| +7689|535268|10289|5|11|14335.64|0.01|0.00|N|O|1998-08-13|1998-06-05|1998-08-18|COLLECT COD|AIR|e requests. regular, | +7689|239018|26531|6|19|18183.00|0.06|0.04|N|O|1998-05-17|1998-06-11|1998-06-09|TAKE BACK RETURN|MAIL|e enticingly. carefully i| +7690|855522|30557|1|7|10342.36|0.08|0.00|R|F|1994-05-19|1994-07-05|1994-06-14|DELIVER IN PERSON|REG AIR|eodolites.| +7690|748999|11514|2|21|43007.16|0.02|0.00|R|F|1994-08-07|1994-06-22|1994-09-01|TAKE BACK RETURN|RAIL|ld asymptotes haggle. special, final in| +7691|860713|10714|1|41|68620.47|0.00|0.07|A|F|1993-09-27|1993-12-02|1993-10-12|COLLECT COD|FOB|kly sly packages. furiously regular sentime| +7691|989819|2339|2|44|83985.88|0.10|0.07|R|F|1993-11-04|1993-12-03|1993-11-24|DELIVER IN PERSON|REG AIR|y slyly pend| +7692|891262|3780|1|20|25064.40|0.03|0.07|N|O|1996-04-17|1996-05-07|1996-04-29|TAKE BACK RETURN|RAIL|requests-- even excuses| +7693|451907|1908|1|9|16729.92|0.09|0.08|N|O|1995-11-09|1995-12-30|1995-11-27|DELIVER IN PERSON|FOB|y special packages against t| +7693|198340|35850|2|37|53218.58|0.09|0.00|N|O|1996-01-04|1995-12-25|1996-01-29|TAKE BACK RETURN|SHIP|s wake closely | +7693|486617|36618|3|18|28864.62|0.05|0.05|N|O|1995-12-18|1995-11-26|1995-12-26|COLLECT COD|RAIL|as above the iron| +7693|571412|8946|4|47|69719.33|0.03|0.01|N|O|1995-11-14|1995-12-21|1995-11-19|NONE|TRUCK| instructions. quickly even | +7694|638684|1197|1|5|8113.25|0.01|0.02|N|O|1996-08-19|1996-08-04|1996-09-16|NONE|MAIL|g instructions. slyly bold t| +7694|346840|34359|2|45|84907.35|0.06|0.08|N|O|1996-05-24|1996-08-07|1996-06-10|TAKE BACK RETURN|SHIP| accounts cajole quickly acco| +7694|327702|2715|3|36|62268.84|0.05|0.03|N|O|1996-05-13|1996-07-29|1996-06-07|DELIVER IN PERSON|TRUCK|ly quick requests. quickly final| +7694|673857|36371|4|13|23800.66|0.02|0.01|N|O|1996-08-23|1996-06-15|1996-09-06|TAKE BACK RETURN|REG AIR|ly bold foxes. ideas ac| +7694|502626|27647|5|48|78172.80|0.09|0.02|N|O|1996-05-20|1996-08-01|1996-05-23|TAKE BACK RETURN|SHIP|nal deposits. courts wake slyly. slyl| +7695|852512|40064|1|4|5857.88|0.02|0.00|N|O|1995-09-27|1995-09-08|1995-10-26|TAKE BACK RETURN|FOB|ial requests. deposits n| +7720|118932|18933|1|27|52675.11|0.05|0.05|R|F|1994-07-18|1994-08-11|1994-08-16|NONE|MAIL|ular accounts; bold packages shall u| +7720|888738|26290|2|28|48347.32|0.04|0.05|A|F|1994-08-27|1994-08-25|1994-09-15|TAKE BACK RETURN|TRUCK|al foxes. sp| +7721|531172|43683|1|44|52938.60|0.04|0.04|R|F|1992-06-04|1992-07-09|1992-06-22|NONE|FOB|s after the| +7721|391958|16973|2|45|92247.30|0.02|0.05|A|F|1992-06-01|1992-07-16|1992-06-18|COLLECT COD|RAIL|old packages. carefull| +7722|348251|48252|1|38|49371.12|0.10|0.06|N|O|1998-06-20|1998-04-25|1998-06-30|COLLECT COD|REG AIR|s use blithe| +7722|41561|29062|2|37|55594.72|0.07|0.08|N|O|1998-03-17|1998-04-15|1998-04-10|COLLECT COD|RAIL|nal deposits around t| +7722|514242|39263|3|3|3768.66|0.00|0.03|N|O|1998-05-12|1998-05-08|1998-06-05|DELIVER IN PERSON|RAIL|s nag carefully packages. care| +7722|850850|13368|4|43|77434.83|0.10|0.07|N|O|1998-06-16|1998-05-18|1998-06-20|NONE|TRUCK|ly regular excuses are | +7722|230041|5050|5|29|28159.87|0.09|0.00|N|O|1998-05-04|1998-04-21|1998-05-18|NONE|REG AIR|oss the bli| +7722|294050|19061|6|32|33409.28|0.09|0.02|N|O|1998-05-13|1998-05-17|1998-05-29|COLLECT COD|SHIP|eans sleep after t| +7723|105541|30546|1|16|24744.64|0.10|0.01|R|F|1993-10-27|1993-10-25|1993-11-22|COLLECT COD|SHIP|d pinto beans. permanent requests | +7723|824625|37142|2|10|15495.80|0.01|0.04|A|F|1993-10-08|1993-09-24|1993-10-27|NONE|SHIP|alongside of the s| +7723|456078|6079|3|29|29987.45|0.10|0.07|A|F|1993-08-31|1993-11-09|1993-09-10|NONE|AIR|ial accounts are abo| +7723|291365|28881|4|3|4069.05|0.01|0.07|A|F|1993-11-17|1993-11-07|1993-12-09|NONE|TRUCK|arefully! furiously unusual orbits mainta| +7723|969530|44569|5|28|44785.72|0.07|0.05|R|F|1993-09-26|1993-11-04|1993-10-23|TAKE BACK RETURN|RAIL|fix blithely. even deposi| +7723|881833|19385|6|23|41740.17|0.07|0.01|R|F|1993-12-02|1993-10-02|1993-12-05|DELIVER IN PERSON|REG AIR|final instructions wake slyly| +7724|210776|48289|1|9|15180.84|0.03|0.02|A|F|1994-10-25|1994-08-29|1994-11-19|TAKE BACK RETURN|SHIP|ounts. blithely i| +7724|504945|4946|2|4|7799.68|0.08|0.00|A|F|1994-08-14|1994-08-27|1994-08-23|NONE|RAIL|uriously account| +7724|597857|10369|3|17|33232.11|0.05|0.06|A|F|1994-07-18|1994-08-05|1994-07-23|TAKE BACK RETURN|MAIL| quickly ironic | +7724|182030|32031|4|40|44481.20|0.02|0.02|R|F|1994-10-24|1994-08-16|1994-11-07|TAKE BACK RETURN|REG AIR| unwind inside| +7724|372746|10268|5|11|20006.03|0.07|0.04|R|F|1994-07-05|1994-09-09|1994-07-15|TAKE BACK RETURN|REG AIR|packages boost along the sile| +7724|727446|39961|6|5|7367.05|0.10|0.00|A|F|1994-10-17|1994-08-15|1994-11-04|NONE|MAIL|lites are idly| +7725|807135|7136|1|12|12505.08|0.05|0.00|A|F|1995-03-28|1995-02-22|1995-03-29|COLLECT COD|SHIP|ts use quickly again| +7725|516033|3564|2|11|11539.11|0.02|0.08|R|F|1995-04-01|1995-03-23|1995-04-06|NONE|REG AIR|as. slyly slow packages nag blithely| +7725|950972|973|3|14|28321.02|0.05|0.05|A|F|1995-04-26|1995-03-22|1995-05-26|COLLECT COD|RAIL| dolphins haggle carefully slyly express pa| +7725|984786|34787|4|39|72958.86|0.04|0.03|A|F|1995-02-16|1995-03-03|1995-02-17|DELIVER IN PERSON|FOB|fully. furiously reg| +7725|295948|45949|5|15|29158.95|0.05|0.06|A|F|1995-02-06|1995-03-24|1995-02-27|NONE|MAIL|ironic pinto| +7725|995866|45867|6|10|19618.20|0.00|0.05|R|F|1995-03-16|1995-04-12|1995-04-06|NONE|TRUCK|l ideas haggle slyly along the carefully| +7725|507422|19933|7|38|54317.20|0.07|0.03|A|F|1995-04-22|1995-03-05|1995-05-19|DELIVER IN PERSON|AIR|he special theodoli| +7726|227732|27733|1|24|39833.28|0.08|0.05|N|O|1995-08-13|1995-08-10|1995-09-12|NONE|REG AIR|xpress foxes. carefully bold pinto bea| +7726|485503|23031|2|30|44654.40|0.10|0.06|N|O|1995-08-25|1995-09-03|1995-09-12|NONE|TRUCK|carefully express th| +7726|846064|8581|3|34|34340.68|0.01|0.06|N|O|1995-07-07|1995-08-04|1995-07-27|DELIVER IN PERSON|FOB|s boost final, bol| +7727|254509|17015|1|21|30733.29|0.00|0.07|R|F|1995-03-09|1995-03-30|1995-04-01|TAKE BACK RETURN|MAIL|st furiously above t| +7727|520081|32592|2|11|12111.66|0.03|0.07|R|F|1995-03-30|1995-02-16|1995-04-09|TAKE BACK RETURN|AIR|ke furiously. packages | +7727|988872|38873|3|42|82354.86|0.02|0.03|A|F|1995-02-26|1995-02-23|1995-03-16|NONE|SHIP|y final escapades run blithely | +7727|959910|22430|4|33|65005.71|0.06|0.00|A|F|1995-02-16|1995-02-21|1995-02-28|TAKE BACK RETURN|FOB|cajole carefully. carefu| +7727|204814|17319|5|3|5156.40|0.03|0.07|R|F|1995-02-21|1995-03-18|1995-02-22|TAKE BACK RETURN|FOB|ording to the carefully fi| +7727|308431|45950|6|16|23030.72|0.09|0.05|R|F|1995-02-09|1995-04-17|1995-02-27|DELIVER IN PERSON|SHIP|r requests boost. quic| +7752|959422|46980|1|49|72587.62|0.02|0.05|A|F|1995-01-09|1995-03-24|1995-02-07|TAKE BACK RETURN|AIR|y regular escapades. regula| +7752|998905|11425|2|26|52100.36|0.08|0.08|A|F|1995-03-30|1995-02-21|1995-04-06|COLLECT COD|SHIP|. furiously regular requests behind th| +7752|595252|45253|3|13|17513.99|0.00|0.00|R|F|1995-04-04|1995-02-02|1995-04-18|NONE|AIR|kages sleep quickly above the eve| +7752|396656|46657|4|6|10515.84|0.09|0.05|A|F|1995-02-20|1995-03-22|1995-03-22|COLLECT COD|SHIP|gle along the| +7753|351778|14286|1|29|53063.04|0.01|0.01|A|F|1992-06-01|1992-05-25|1992-06-27|COLLECT COD|SHIP|r the fluffily regu| +7754|470226|7754|1|6|7177.20|0.08|0.00|N|O|1996-09-26|1996-10-22|1996-10-19|TAKE BACK RETURN|FOB|uriously carefully even pinto beans. daring| +7754|84004|46506|2|42|41496.00|0.07|0.01|N|O|1996-08-16|1996-10-02|1996-08-30|COLLECT COD|REG AIR|ect quickly ironic requests. blithel| +7754|854796|29831|3|30|52522.50|0.09|0.03|N|O|1996-09-15|1996-10-06|1996-10-11|DELIVER IN PERSON|AIR|he always blith| +7754|545247|7758|4|8|10337.76|0.09|0.05|N|O|1996-11-05|1996-10-16|1996-11-19|TAKE BACK RETURN|SHIP|. slyly ironic requests against | +7755|588458|38459|1|40|61857.20|0.01|0.06|A|F|1995-01-27|1995-03-05|1995-02-14|COLLECT COD|FOB|gh the slyly ir| +7755|205428|42941|2|23|30668.43|0.02|0.07|R|F|1995-02-04|1995-03-18|1995-02-19|DELIVER IN PERSON|SHIP|lly even foxes. bold, regular asym| +7755|626114|26115|3|7|7280.56|0.09|0.05|R|F|1995-03-11|1995-03-26|1995-03-26|COLLECT COD|AIR|e fluffily final requests. busily regu| +7755|90429|15432|4|2|2838.84|0.04|0.07|A|F|1995-01-07|1995-03-13|1995-02-01|DELIVER IN PERSON|FOB|into beans cajole entic| +7755|834594|34595|5|28|42799.40|0.03|0.07|R|F|1995-02-02|1995-03-23|1995-02-03|TAKE BACK RETURN|RAIL|aggle at the carefully permanent requests. | +7755|16773|4274|6|44|74349.88|0.09|0.03|A|F|1995-01-05|1995-01-27|1995-01-21|NONE|RAIL| foxes. sp| +7756|328054|3067|1|4|4328.16|0.05|0.08|N|O|1995-08-20|1995-08-11|1995-08-23|DELIVER IN PERSON|SHIP|c excuses cajole unusual deposi| +7756|588933|1445|2|31|62679.21|0.02|0.03|N|O|1995-11-01|1995-09-19|1995-11-12|NONE|AIR| to haggle furiously abou| +7757|883237|20789|1|47|57348.93|0.06|0.05|N|O|1997-08-06|1997-09-13|1997-09-01|COLLECT COD|REG AIR| carefully silent accounts ha| +7757|549507|37038|2|38|59146.24|0.00|0.08|N|O|1997-09-12|1997-08-21|1997-10-10|TAKE BACK RETURN|MAIL|slyly final r| +7757|562104|12105|3|12|13992.96|0.03|0.00|N|O|1997-09-26|1997-09-11|1997-10-02|COLLECT COD|RAIL|tions after the notornis nag quickly al| +7757|266683|29189|4|39|64337.13|0.09|0.06|N|O|1997-07-24|1997-08-28|1997-08-22|DELIVER IN PERSON|AIR|the quickly spec| +7757|139691|14696|5|30|51920.70|0.02|0.03|N|O|1997-07-30|1997-08-28|1997-08-04|DELIVER IN PERSON|MAIL|osits are boldly alongside of the f| +7757|779945|29946|6|40|80996.40|0.01|0.00|N|O|1997-09-06|1997-09-02|1997-09-16|DELIVER IN PERSON|FOB|ounts are blithely after the blithely spe| +7758|204339|29348|1|6|7459.92|0.10|0.02|N|O|1996-11-29|1997-01-19|1996-12-08|TAKE BACK RETURN|TRUCK|onic, final foxes wak| +7758|322780|22781|2|50|90138.50|0.05|0.06|N|O|1996-12-13|1996-12-05|1996-12-24|NONE|TRUCK|cial requests are f| +7758|953743|41301|3|14|25153.80|0.10|0.01|N|O|1996-12-17|1997-01-02|1996-12-30|TAKE BACK RETURN|FOB|ys express accounts. carefully e| +7758|557710|20222|4|14|24747.66|0.02|0.03|N|O|1997-03-02|1996-12-20|1997-03-23|COLLECT COD|FOB|requests th| +7758|419497|32006|5|40|56658.80|0.01|0.06|N|O|1996-12-09|1997-01-01|1997-01-07|TAKE BACK RETURN|FOB|e packages about | +7758|479024|16552|6|49|49147.00|0.02|0.03|N|O|1996-12-07|1996-12-24|1996-12-17|COLLECT COD|FOB|efully regular requests. carefully| +7759|521107|33618|1|27|30458.16|0.10|0.04|R|F|1995-01-06|1995-02-25|1995-01-07|COLLECT COD|RAIL| wake quick| +7784|618920|31433|1|22|40455.58|0.06|0.05|R|F|1995-04-28|1995-05-15|1995-05-21|TAKE BACK RETURN|REG AIR|ely regular packages wake blithely ironic r| +7784|172766|35270|2|45|82744.20|0.00|0.02|N|O|1995-07-14|1995-05-07|1995-08-06|COLLECT COD|REG AIR|es are. slyly special deposits inte| +7784|667035|42062|3|43|43086.00|0.05|0.02|R|F|1995-06-03|1995-06-23|1995-06-10|TAKE BACK RETURN|RAIL|l multipliers cajo| +7785|311465|23972|1|15|22146.75|0.06|0.00|A|F|1994-09-03|1994-08-14|1994-10-01|DELIVER IN PERSON|SHIP|phins. furiously enticing pinto beans caj| +7785|780664|30665|2|50|87231.50|0.01|0.01|R|F|1994-07-13|1994-07-16|1994-07-31|NONE|TRUCK|cajole caref| +7786|313575|26082|1|25|39714.00|0.02|0.01|R|F|1992-04-12|1992-05-20|1992-04-17|TAKE BACK RETURN|SHIP|ly ironic deposits | +7787|871333|21334|1|35|45650.15|0.09|0.02|N|O|1998-06-15|1998-05-03|1998-06-23|TAKE BACK RETURN|RAIL|y unusual foxes| +7787|488241|751|2|40|49168.80|0.05|0.06|N|O|1998-06-02|1998-05-07|1998-06-16|TAKE BACK RETURN|RAIL| nag furiously af| +7787|851130|26165|3|23|24865.07|0.01|0.00|N|O|1998-07-09|1998-06-07|1998-07-18|DELIVER IN PERSON|FOB|s haggle above the blithely regular ideas.| +7787|931075|6112|4|32|35392.96|0.09|0.01|N|O|1998-04-11|1998-05-26|1998-04-21|DELIVER IN PERSON|SHIP|ajole against the permanently iro| +7788|990052|2572|1|12|13704.12|0.01|0.06|A|F|1994-05-16|1994-05-09|1994-06-02|DELIVER IN PERSON|RAIL|r accounts cajo| +7789|259489|34500|1|27|39108.69|0.06|0.01|N|O|1997-07-07|1997-08-25|1997-07-10|NONE|MAIL|ornis. blithely idle deposits among the | +7789|228445|40950|2|26|35709.18|0.07|0.06|N|O|1997-09-07|1997-09-01|1997-09-28|TAKE BACK RETURN|FOB| carefully into the regular | +7789|473372|48391|3|48|64576.80|0.07|0.01|N|O|1997-09-16|1997-08-23|1997-09-30|DELIVER IN PERSON|FOB|r platelets. fluffily special theodolite| +7789|959221|21741|4|42|53767.56|0.02|0.07|N|O|1997-08-21|1997-09-01|1997-09-15|DELIVER IN PERSON|MAIL| the slyly dogged| +7789|623776|23777|5|15|25496.10|0.08|0.05|N|O|1997-08-11|1997-08-18|1997-08-21|COLLECT COD|REG AIR|s. furiously fluffy excuses nag blithel| +7789|792578|5094|6|1|1670.54|0.10|0.07|N|O|1997-09-10|1997-09-09|1997-10-08|DELIVER IN PERSON|REG AIR|ecial deposits acro| +7789|845854|20887|7|36|64793.16|0.03|0.08|N|O|1997-07-17|1997-09-25|1997-08-04|DELIVER IN PERSON|AIR|ly. stealthily pending requests sleep slyl| +7790|261309|23815|1|41|52081.89|0.02|0.07|N|O|1997-07-15|1997-09-15|1997-07-22|DELIVER IN PERSON|MAIL|s deposits kindle| +7790|810414|22931|2|1|1324.37|0.10|0.06|N|O|1997-08-17|1997-09-20|1997-09-12|NONE|MAIL|ending, express frays;| +7791|686621|11648|1|44|70733.96|0.07|0.06|R|F|1993-08-29|1993-08-20|1993-09-26|COLLECT COD|REG AIR|ainst the regular exc| +7791|29136|29137|2|21|22367.73|0.10|0.02|A|F|1993-10-10|1993-08-28|1993-11-09|NONE|AIR|e furiously special requests. ironic, | +7791|682229|44743|3|20|24223.80|0.04|0.02|A|F|1993-09-30|1993-08-22|1993-10-08|TAKE BACK RETURN|TRUCK|across the furiously pendi| +7791|212989|502|4|33|62765.01|0.09|0.02|R|F|1993-08-15|1993-10-17|1993-08-22|DELIVER IN PERSON|RAIL|s boost carefully? final ideas sleep b| +7816|109973|22476|1|50|99148.50|0.04|0.04|N|O|1998-07-12|1998-06-03|1998-07-18|DELIVER IN PERSON|FOB| among the pending, ironi| +7816|308463|8464|2|31|45614.95|0.05|0.04|N|O|1998-07-27|1998-06-01|1998-08-09|NONE|TRUCK|y final accounts haggle| +7816|321197|21198|3|19|23145.42|0.06|0.06|N|O|1998-05-31|1998-06-22|1998-06-23|DELIVER IN PERSON|TRUCK|quests cajole along the b| +7816|344487|6994|4|1|1531.47|0.01|0.05|N|O|1998-08-02|1998-07-01|1998-08-25|COLLECT COD|REG AIR|ependencies are | +7817|516896|16897|1|31|59298.97|0.09|0.03|A|F|1993-08-14|1993-08-20|1993-09-11|NONE|MAIL|equests breach slyly. final platelets a| +7817|454510|29529|2|6|8786.94|0.05|0.01|R|F|1993-07-15|1993-09-07|1993-07-27|TAKE BACK RETURN|TRUCK|egular packages af| +7817|946875|46876|3|36|69185.88|0.08|0.04|A|F|1993-07-02|1993-08-26|1993-07-07|COLLECT COD|REG AIR| serve furiously above the ideas. fluffily | +7817|121643|46648|4|36|59927.04|0.04|0.04|R|F|1993-09-20|1993-08-09|1993-10-09|COLLECT COD|TRUCK|fluffily quickly r| +7817|450291|12801|5|25|31031.75|0.05|0.01|A|F|1993-10-14|1993-09-07|1993-10-31|DELIVER IN PERSON|REG AIR|s. bold requests above the caref| +7817|39406|39407|6|36|48434.40|0.06|0.08|A|F|1993-07-05|1993-09-11|1993-08-01|TAKE BACK RETURN|SHIP|phins. regular, unusua| +7818|827621|27622|1|1|1548.58|0.08|0.03|N|O|1996-11-03|1996-10-08|1996-12-02|DELIVER IN PERSON|AIR|lowly fluffily unusual accounts. | +7819|276142|1153|1|29|32425.77|0.09|0.07|N|O|1998-03-17|1998-01-11|1998-03-23|TAKE BACK RETURN|FOB|fix blithely. ironic requests haggle al| +7819|112856|37861|2|48|89704.80|0.07|0.03|N|O|1998-03-01|1998-02-10|1998-03-23|COLLECT COD|TRUCK|sual foxes. furiousl| +7820|559790|22302|1|41|75840.57|0.03|0.02|R|F|1995-03-28|1995-05-24|1995-04-11|COLLECT COD|MAIL|n asymptotes: quiet pinto beans c| +7820|375208|25209|2|32|41062.08|0.02|0.08|N|O|1995-07-15|1995-04-22|1995-08-11|DELIVER IN PERSON|FOB|structions. a| +7820|119063|44068|3|35|37872.10|0.01|0.01|R|F|1995-04-14|1995-04-20|1995-05-09|TAKE BACK RETURN|REG AIR| pinto beans. | +7820|75230|25231|4|4|4820.92|0.08|0.04|A|F|1995-04-01|1995-05-04|1995-04-04|DELIVER IN PERSON|RAIL|ts haggle quickly always regular depo| +7821|753969|16485|1|2|4045.86|0.08|0.02|N|O|1997-08-29|1997-10-06|1997-09-26|NONE|SHIP|mold slyly fur| +7821|945417|45418|2|37|54107.69|0.09|0.06|N|O|1997-09-30|1997-09-15|1997-10-09|NONE|TRUCK| final, regular requests nod across th| +7821|620826|33339|3|10|17467.90|0.05|0.03|N|O|1997-09-19|1997-09-06|1997-09-22|DELIVER IN PERSON|TRUCK|ng pinto beans nag| +7821|222233|34738|4|23|26570.06|0.09|0.02|N|O|1997-10-01|1997-09-20|1997-10-07|COLLECT COD|FOB| carefully. blithel| +7822|797488|47489|1|35|55490.75|0.08|0.08|R|F|1993-03-18|1993-03-28|1993-03-29|COLLECT COD|REG AIR|counts. bold requ| +7822|377994|3009|2|12|24863.76|0.10|0.05|R|F|1993-04-19|1993-04-01|1993-04-29|NONE|TRUCK|packages wake final pac| +7822|931629|6666|3|1|1660.58|0.09|0.05|A|F|1993-03-04|1993-03-14|1993-03-14|TAKE BACK RETURN|SHIP|ntegrate? slyly bold dep| +7822|885852|35853|4|28|51458.68|0.01|0.08|R|F|1993-04-10|1993-03-20|1993-04-17|TAKE BACK RETURN|REG AIR|tegrate. quickly regular pla| +7822|505755|30776|5|32|56343.36|0.01|0.06|A|F|1993-04-27|1993-02-24|1993-05-16|DELIVER IN PERSON|MAIL|cross the furiously final deposi| +7823|41480|3981|1|42|59702.16|0.03|0.08|R|F|1992-04-17|1992-02-04|1992-05-12|COLLECT COD|FOB|uick requests. blit| +7823|142397|42398|2|49|70530.11|0.07|0.07|A|F|1992-02-09|1992-02-15|1992-02-29|DELIVER IN PERSON|RAIL|uickly along the plat| +7823|249655|12160|3|6|9627.84|0.08|0.05|A|F|1992-02-22|1992-02-08|1992-03-11|DELIVER IN PERSON|FOB|ffily regular accounts solve care| +7823|951140|13660|4|14|16675.40|0.02|0.01|A|F|1992-01-22|1992-02-22|1992-01-27|COLLECT COD|RAIL|gular accounts. fluff| +7848|609071|46608|1|18|17640.72|0.03|0.04|N|O|1996-12-22|1997-03-14|1997-01-06|TAKE BACK RETURN|AIR|special th| +7848|654182|29209|2|28|31812.20|0.03|0.02|N|O|1997-03-17|1997-03-14|1997-04-12|TAKE BACK RETURN|REG AIR|ithely about the car| +7848|820868|20869|3|27|48298.14|0.08|0.07|N|O|1996-12-28|1997-03-02|1997-01-09|COLLECT COD|AIR|posits. blithely pending d| +7848|325265|12784|4|29|37417.25|0.05|0.03|N|O|1997-01-07|1997-02-25|1997-01-14|DELIVER IN PERSON|TRUCK|es wake asympt| +7849|532551|32552|1|24|38004.72|0.08|0.07|R|F|1992-03-10|1992-03-03|1992-03-19|NONE|MAIL|against the blithely regular pi| +7849|575159|25160|2|7|8638.91|0.09|0.06|R|F|1992-04-12|1992-03-17|1992-04-18|COLLECT COD|MAIL|usual deposits | +7849|683641|46155|3|32|51987.52|0.08|0.00|A|F|1992-01-25|1992-03-31|1992-02-05|COLLECT COD|RAIL|. carefully unusual T| +7849|952958|40516|4|49|98534.59|0.01|0.07|R|F|1992-03-02|1992-03-03|1992-03-17|DELIVER IN PERSON|TRUCK|ickly blithely special| +7850|487000|24528|1|47|46388.06|0.10|0.00|R|F|1993-03-29|1993-01-22|1993-04-23|TAKE BACK RETURN|TRUCK| accounts haggle carefully. express, final| +7850|996086|46087|2|16|18912.64|0.04|0.08|A|F|1993-02-23|1993-02-19|1993-03-24|COLLECT COD|MAIL|ly ironic theodolites. special, even depos| +7850|213943|13944|3|46|85418.78|0.04|0.01|R|F|1993-02-06|1993-03-05|1993-02-19|COLLECT COD|SHIP|ns. asymptotes sleep. even asymptotes aga| +7850|734970|22513|4|24|48118.56|0.03|0.01|A|F|1993-04-17|1993-02-05|1993-05-02|NONE|REG AIR|en instructions. special dep| +7850|632463|7488|5|35|48840.05|0.07|0.01|A|F|1992-12-24|1993-03-18|1993-01-22|COLLECT COD|AIR|hinder after the furiously f| +7850|796642|21673|6|30|52158.30|0.08|0.04|R|F|1993-04-02|1993-01-25|1993-04-06|TAKE BACK RETURN|TRUCK|lyly. furiously sile| +7851|300197|198|1|36|43098.48|0.05|0.03|N|O|1996-08-11|1996-08-11|1996-09-07|NONE|TRUCK|ly atop the final, regular epi| +7851|398799|23814|2|46|87297.88|0.03|0.07|N|O|1996-09-20|1996-08-30|1996-10-04|NONE|FOB|nstructions. unu| +7851|601473|39010|3|33|45356.52|0.00|0.04|N|O|1996-07-18|1996-07-22|1996-08-05|COLLECT COD|AIR|above the regular pinto bean| +7851|956535|44093|4|33|52519.17|0.02|0.06|N|O|1996-08-30|1996-07-11|1996-09-13|NONE|TRUCK| wake among the express, even deposits. de| +7851|467441|29951|5|42|59153.64|0.01|0.01|N|O|1996-09-04|1996-08-26|1996-09-11|TAKE BACK RETURN|RAIL|tly final p| +7852|406941|44466|1|47|86852.24|0.06|0.00|N|O|1996-06-14|1996-08-15|1996-06-15|TAKE BACK RETURN|AIR|y against the | +7852|452545|15055|2|10|14975.20|0.10|0.05|N|O|1996-06-11|1996-08-04|1996-06-25|COLLECT COD|REG AIR|ccounts alongside | +7852|908538|33575|3|13|20104.37|0.08|0.07|N|O|1996-05-28|1996-07-12|1996-06-19|COLLECT COD|MAIL|cial instructions. express, | +7853|671986|47013|1|22|43074.90|0.08|0.04|N|O|1995-07-10|1995-06-18|1995-07-18|NONE|RAIL|kages. regular, bold requests us| +7853|66902|16903|2|36|67280.40|0.00|0.03|N|O|1995-07-23|1995-04-27|1995-08-14|COLLECT COD|SHIP| slyly final packages print fluffily blith| +7853|419121|44138|3|1|1040.10|0.09|0.01|R|F|1995-05-14|1995-05-17|1995-05-18|TAKE BACK RETURN|RAIL|the daringly express fret| +7853|155975|18479|4|17|34526.49|0.06|0.04|R|F|1995-04-19|1995-05-12|1995-05-10|TAKE BACK RETURN|REG AIR|tions sleep furiously along | +7853|469322|31832|5|4|5165.20|0.00|0.02|A|F|1995-04-26|1995-05-22|1995-05-09|NONE|MAIL| dinos cajole quickly ironic in| +7854|361514|49036|1|9|14179.50|0.02|0.04|R|F|1995-03-07|1994-12-19|1995-03-11|NONE|MAIL| regular deposits impress furiously | +7854|956038|6039|2|3|3281.97|0.08|0.01|R|F|1995-02-28|1995-01-04|1995-03-28|COLLECT COD|REG AIR|osits wake slyly f| +7854|118114|30617|3|41|46416.51|0.06|0.00|R|F|1995-02-22|1994-12-18|1995-02-24|DELIVER IN PERSON|TRUCK|o beans wake furiously against the s| +7854|128612|41115|4|28|45937.08|0.00|0.03|R|F|1995-01-25|1995-02-03|1995-01-27|COLLECT COD|MAIL|s wake furiously ideas. furiously pendin| +7854|567399|29911|5|2|2932.74|0.05|0.07|R|F|1994-12-21|1995-01-06|1994-12-24|TAKE BACK RETURN|MAIL|c packages. slyly silent instruction| +7855|869380|19381|1|44|59370.96|0.04|0.02|N|O|1996-10-12|1996-08-22|1996-10-21|DELIVER IN PERSON|RAIL|efully across | +7880|968581|31101|1|17|28042.18|0.05|0.05|N|O|1997-06-22|1997-03-30|1997-07-04|DELIVER IN PERSON|TRUCK|w accounts use pinto bea| +7880|937022|24577|2|22|23297.56|0.06|0.03|N|O|1997-03-24|1997-04-05|1997-04-14|DELIVER IN PERSON|RAIL|ccounts caj| +7880|527824|2845|3|21|38887.80|0.04|0.03|N|O|1997-06-12|1997-04-22|1997-06-19|NONE|RAIL|to beans according| +7880|131367|18874|4|24|33560.64|0.02|0.04|N|O|1997-02-27|1997-04-22|1997-03-21|COLLECT COD|FOB|ecial ideas. furiously even deposits slee| +7880|876825|1860|5|13|23423.14|0.05|0.02|N|O|1997-04-08|1997-05-25|1997-05-06|TAKE BACK RETURN|TRUCK|ing pinto beans boost quickl| +7880|782500|20046|6|38|60133.86|0.01|0.01|N|O|1997-06-09|1997-04-19|1997-07-06|TAKE BACK RETURN|FOB|until the final deposits. care| +7880|471499|9027|7|37|54407.39|0.04|0.05|N|O|1997-05-28|1997-04-15|1997-06-26|DELIVER IN PERSON|SHIP|sly special escapades nag along the slyly | +7881|482284|44794|1|27|34189.02|0.04|0.07|A|F|1992-05-10|1992-06-13|1992-05-17|NONE|TRUCK|fts. pending package| +7881|741341|28884|2|20|27646.20|0.09|0.05|R|F|1992-04-29|1992-06-01|1992-05-23|DELIVER IN PERSON|TRUCK|nto beans kindle carefully. careful| +7881|702399|2400|3|10|14013.60|0.07|0.08|A|F|1992-04-23|1992-06-20|1992-05-09|DELIVER IN PERSON|FOB|ons dazzle bli| +7882|878301|15853|1|34|43494.84|0.04|0.05|A|F|1994-12-12|1994-12-21|1994-12-21|TAKE BACK RETURN|MAIL|accounts. final theodolites u| +7882|591018|3530|2|32|35487.68|0.05|0.03|A|F|1995-02-09|1995-01-01|1995-02-20|DELIVER IN PERSON|TRUCK|s. special | +7883|435311|22836|1|12|14955.48|0.10|0.04|R|F|1992-12-27|1993-01-04|1993-01-17|TAKE BACK RETURN|AIR|heodolites sl| +7884|678463|3490|1|36|51891.48|0.09|0.03|A|F|1993-09-18|1993-07-23|1993-10-10|TAKE BACK RETURN|REG AIR|its wake above the stealthily regular depo| +7884|914731|39768|2|25|43642.25|0.10|0.04|A|F|1993-05-29|1993-07-09|1993-06-17|NONE|AIR|accounts nag under the | +7885|980329|42849|1|37|52143.36|0.07|0.08|R|F|1992-08-04|1992-08-16|1992-08-17|TAKE BACK RETURN|FOB| blithely even ideas print. furious| +7885|388970|26492|2|41|84417.36|0.07|0.02|A|F|1992-08-28|1992-07-01|1992-09-08|DELIVER IN PERSON|AIR|s nag furiously special| +7885|408693|46218|3|43|68871.81|0.02|0.05|R|F|1992-09-07|1992-07-10|1992-09-11|NONE|REG AIR|regular, ironic reque| +7885|896950|21985|4|45|87610.95|0.05|0.04|R|F|1992-08-07|1992-08-13|1992-08-15|NONE|MAIL|bt fluffily according to the final, regula| +7885|32779|7780|5|4|6847.08|0.09|0.08|R|F|1992-08-12|1992-08-01|1992-09-10|COLLECT COD|SHIP|ogs? slyly final asymptotes sleep bo| +7885|913973|1528|6|48|95372.64|0.01|0.04|R|F|1992-09-13|1992-07-01|1992-09-25|DELIVER IN PERSON|RAIL|orbits wake blithely. pending de| +7886|974481|24482|1|36|55995.84|0.04|0.00|R|F|1994-06-06|1994-04-16|1994-06-15|COLLECT COD|RAIL|g fluffily even realms| +7886|93959|31463|2|49|95694.55|0.01|0.01|R|F|1994-05-16|1994-05-18|1994-06-06|COLLECT COD|SHIP|usly ideas-- blith| +7886|162332|12333|3|17|23703.61|0.10|0.04|A|F|1994-06-09|1994-03-31|1994-06-26|COLLECT COD|REG AIR|ent ideas are carefully afte| +7886|299028|49029|4|35|35945.35|0.07|0.03|A|F|1994-05-28|1994-05-07|1994-06-11|COLLECT COD|SHIP|y final theodolites w| +7886|753641|41187|5|11|18640.71|0.10|0.00|R|F|1994-04-11|1994-05-14|1994-04-27|TAKE BACK RETURN|RAIL|al accounts. ironic, regular| +7886|442548|5057|6|14|20867.28|0.10|0.01|R|F|1994-02-22|1994-05-10|1994-02-25|TAKE BACK RETURN|AIR| blithely bold accounts cajole acco| +7886|902765|40320|7|10|17677.20|0.06|0.02|R|F|1994-04-04|1994-04-04|1994-04-29|DELIVER IN PERSON|SHIP|nside the ruthlessly idle excuses.| +7887|763697|38728|1|17|29931.22|0.00|0.08|A|F|1992-05-01|1992-05-04|1992-05-23|DELIVER IN PERSON|SHIP|iously bold i| +7887|442717|5226|2|31|51450.39|0.00|0.01|A|F|1992-03-21|1992-04-23|1992-04-02|TAKE BACK RETURN|AIR|regular the| +7912|551551|1552|1|22|35255.66|0.03|0.08|R|F|1992-12-07|1993-01-10|1992-12-28|TAKE BACK RETURN|MAIL|d foxes wake carefully| +7912|908532|46087|2|11|16945.39|0.08|0.05|A|F|1992-12-19|1992-12-28|1992-12-23|TAKE BACK RETURN|MAIL|y even platelets. express frets | +7912|689915|27455|3|7|13334.16|0.09|0.03|R|F|1993-02-21|1993-01-29|1993-03-22|NONE|SHIP|e quickly express ideas. quiet exc| +7912|387621|129|4|25|42715.25|0.10|0.04|A|F|1993-02-14|1993-02-04|1993-03-06|TAKE BACK RETURN|RAIL|kly regular ideas beside the bold p| +7912|733698|21241|5|49|84851.34|0.08|0.00|A|F|1992-11-14|1992-12-29|1992-11-27|NONE|SHIP|deposits cajole quickly among th| +7913|67357|17358|1|26|34433.10|0.04|0.07|A|F|1994-09-13|1994-07-07|1994-10-10|NONE|TRUCK|es print carefully packages. furiously | +7913|64685|39688|2|18|29694.24|0.06|0.08|A|F|1994-09-08|1994-08-03|1994-09-28|TAKE BACK RETURN|FOB|e even, regular packages. acco| +7913|158137|20641|3|3|3585.39|0.08|0.06|A|F|1994-08-10|1994-06-29|1994-08-23|DELIVER IN PERSON|TRUCK|foxes. closely unu| +7913|797364|47365|4|12|17535.96|0.05|0.02|A|F|1994-08-14|1994-08-07|1994-09-05|TAKE BACK RETURN|REG AIR|s cajole quickly about the unusual excuse| +7913|288197|703|5|26|30814.68|0.06|0.04|A|F|1994-06-11|1994-07-04|1994-06-14|COLLECT COD|REG AIR|s affix across the furiously | +7913|711439|23954|6|12|17404.80|0.04|0.01|A|F|1994-08-06|1994-08-11|1994-09-02|NONE|RAIL|al excuses x-ray regularly furio| +7914|747528|10043|1|16|25207.84|0.01|0.06|N|O|1997-10-05|1997-11-19|1997-10-12|NONE|FOB| packages. carefully iron| +7914|702293|2294|2|38|49219.88|0.00|0.08|N|O|1997-12-13|1997-12-04|1997-12-23|DELIVER IN PERSON|RAIL|es doubt some| +7915|80945|30946|1|19|36592.86|0.04|0.00|N|O|1998-01-17|1998-03-02|1998-01-30|COLLECT COD|RAIL|uffily carefull| +7915|427410|2427|2|30|40121.70|0.01|0.07|N|O|1998-05-03|1998-03-09|1998-05-11|DELIVER IN PERSON|REG AIR|ses around the instructions integ| +7915|477847|40357|3|20|36496.40|0.08|0.04|N|O|1998-04-28|1998-03-15|1998-05-27|COLLECT COD|MAIL|s nag furiously at th| +7915|164118|14119|4|29|34281.19|0.05|0.05|N|O|1998-04-29|1998-02-12|1998-05-15|NONE|REG AIR|ly even theodolites. stealthy depo| +7916|150498|499|1|4|6193.96|0.09|0.04|R|F|1994-05-05|1994-06-17|1994-05-24|TAKE BACK RETURN|TRUCK| final packages sleep among t| +7916|416984|29493|2|46|87444.16|0.03|0.00|R|F|1994-04-03|1994-05-12|1994-04-10|TAKE BACK RETURN|RAIL|express deposits shall integrate daring| +7916|235821|10830|3|18|31622.58|0.00|0.05|A|F|1994-07-14|1994-06-20|1994-07-17|COLLECT COD|MAIL|nic ideas sleep brave| +7917|867772|30290|1|17|29575.41|0.09|0.02|N|O|1996-05-11|1996-07-06|1996-05-20|NONE|TRUCK|ular instru| +7917|642108|29645|2|3|3150.21|0.05|0.06|N|O|1996-08-09|1996-06-25|1996-08-26|TAKE BACK RETURN|MAIL|. carefully regul| +7917|900402|403|3|16|22437.76|0.04|0.01|N|O|1996-05-21|1996-06-17|1996-06-06|NONE|RAIL|final excuses sleep fluffily. bold pac| +7917|45687|20688|4|47|76735.96|0.09|0.03|N|O|1996-06-11|1996-06-02|1996-06-24|COLLECT COD|FOB|ss excuses | +7918|511906|49437|1|9|17260.92|0.03|0.08|N|O|1997-12-11|1998-02-18|1998-01-03|DELIVER IN PERSON|RAIL|fully ironic instructions nag| +7918|598274|23297|2|12|16467.00|0.06|0.08|N|O|1997-12-06|1997-12-22|1997-12-15|COLLECT COD|REG AIR|he careful| +7918|187405|49909|3|21|31340.40|0.07|0.08|N|O|1997-12-03|1997-12-22|1997-12-10|COLLECT COD|REG AIR|uickly regular requests. exp| +7918|715375|2918|4|34|47271.56|0.01|0.04|N|O|1997-12-02|1998-02-01|1997-12-03|TAKE BACK RETURN|RAIL|efully; carefully ruthless req| +7919|664756|14757|1|27|46459.44|0.01|0.03|N|O|1998-06-20|1998-05-27|1998-06-25|COLLECT COD|TRUCK|ding deposits.| +7944|735843|48358|1|36|67637.16|0.06|0.00|R|F|1993-11-09|1994-02-06|1993-11-24|COLLECT COD|FOB|le blithely pending, even pinto beans| +7945|940041|27596|1|9|9729.00|0.00|0.02|R|F|1993-07-02|1993-08-30|1993-07-04|DELIVER IN PERSON|AIR|usly ironic acco| +7945|267123|29629|2|42|45784.62|0.08|0.06|R|F|1993-06-27|1993-09-06|1993-07-10|COLLECT COD|AIR|y special | +7945|527972|27973|3|1|1999.95|0.10|0.00|R|F|1993-08-07|1993-09-04|1993-08-22|DELIVER IN PERSON|RAIL|round the furiously final foxes.| +7945|608859|46396|4|10|17678.20|0.04|0.06|R|F|1993-09-28|1993-09-08|1993-10-07|COLLECT COD|REG AIR|ld requests. silent theodolites accord| +7945|84426|34427|5|29|40902.18|0.02|0.08|A|F|1993-07-18|1993-08-27|1993-07-24|DELIVER IN PERSON|MAIL|s impress furiously before the fi| +7946|680658|5685|1|21|34411.02|0.03|0.04|N|O|1998-10-13|1998-09-19|1998-10-14|NONE|RAIL|ounts alongside of the foxes wake | +7946|804487|29520|2|19|26437.36|0.03|0.05|N|O|1998-08-21|1998-08-29|1998-09-18|TAKE BACK RETURN|FOB|rding to the slyly special decoys. sl| +7946|4974|17475|3|45|84553.65|0.00|0.01|N|O|1998-10-05|1998-09-04|1998-10-14|TAKE BACK RETURN|AIR|s. quickly unusual packages poa| +7946|589248|39249|4|30|40116.60|0.07|0.04|N|O|1998-10-28|1998-09-18|1998-11-18|DELIVER IN PERSON|AIR|jole around the final| +7946|479365|4384|5|27|36297.18|0.10|0.01|N|O|1998-09-07|1998-10-08|1998-09-26|DELIVER IN PERSON|MAIL|uickly even dependencie| +7947|766793|4339|1|24|44634.24|0.05|0.06|R|F|1992-11-23|1992-09-19|1992-12-09|NONE|FOB|egular dolphins wake| +7947|488088|25616|2|47|50574.82|0.01|0.04|A|F|1992-12-04|1992-09-28|1992-12-26|TAKE BACK RETURN|RAIL|fully ironic packages nag slyly| +7947|282829|32830|3|28|50730.68|0.06|0.06|R|F|1992-11-28|1992-11-04|1992-12-12|DELIVER IN PERSON|REG AIR|sly unusual | +7947|490518|40519|4|22|33186.78|0.00|0.02|A|F|1992-09-10|1992-11-09|1992-09-26|COLLECT COD|SHIP|y atop the ironic, unusual| +7948|343467|18480|1|39|58907.55|0.00|0.04|N|O|1997-10-06|1997-07-28|1997-11-02|DELIVER IN PERSON|FOB|es. wartho| +7948|633436|20973|2|9|12324.60|0.10|0.05|N|O|1997-07-05|1997-09-09|1997-08-01|NONE|FOB|ly final courts affi| +7948|147321|34828|3|9|12314.88|0.10|0.04|N|O|1997-08-08|1997-09-04|1997-09-04|COLLECT COD|FOB|o beans affix fur| +7948|15013|27514|4|1|928.01|0.07|0.03|N|O|1997-06-28|1997-08-19|1997-07-22|TAKE BACK RETURN|REG AIR|es unwind carefully along the unusual p| +7949|671509|21510|1|25|37011.75|0.10|0.04|N|O|1995-12-10|1995-10-03|1995-12-15|NONE|AIR|le carefully. carefully special pinto bea| +7949|44655|44656|2|15|23994.75|0.07|0.04|N|O|1995-11-15|1995-10-27|1995-12-15|NONE|AIR|ckly ironic | +7949|503216|28237|3|41|49986.79|0.04|0.08|N|O|1995-10-15|1995-11-24|1995-11-06|NONE|FOB|es. ideas c| +7950|312645|164|1|23|38125.49|0.06|0.04|R|F|1994-08-02|1994-09-14|1994-08-18|TAKE BACK RETURN|AIR|re after the carefully bold accounts. expre| +7950|613036|38061|2|41|38909.00|0.01|0.06|R|F|1994-10-25|1994-10-11|1994-10-26|DELIVER IN PERSON|RAIL|l foxes. furiously unusual theodolites | +7950|281832|19348|3|22|39904.04|0.10|0.01|A|F|1994-10-06|1994-08-29|1994-10-12|NONE|TRUCK|ns are sly| +7950|738871|13900|4|37|70664.08|0.07|0.01|A|F|1994-08-21|1994-09-16|1994-08-31|TAKE BACK RETURN|REG AIR|ic packages. quickly pending courts a| +7951|488070|25598|1|42|44438.10|0.09|0.07|N|O|1998-08-18|1998-08-21|1998-08-21|DELIVER IN PERSON|RAIL| even accounts. instructions use | +7951|982468|20026|2|23|35659.66|0.06|0.00|N|O|1998-06-23|1998-07-06|1998-07-02|COLLECT COD|MAIL|nstructions haggle even, bold pac| +7976|155155|30162|1|50|60507.50|0.06|0.08|A|F|1993-07-25|1993-07-01|1993-08-03|COLLECT COD|TRUCK|ly ironic hockey pla| +7976|677217|39731|2|46|54932.28|0.06|0.00|R|F|1993-05-23|1993-06-11|1993-05-25|NONE|TRUCK|y regular requests wake quickly. furi| +7976|977550|40070|3|5|8137.55|0.10|0.00|R|F|1993-08-23|1993-06-19|1993-09-18|NONE|FOB|nent excuses. fur| +7976|672049|9589|4|6|6126.06|0.02|0.00|R|F|1993-06-19|1993-06-23|1993-06-28|TAKE BACK RETURN|REG AIR|ously. carefully| +7976|121380|8887|5|48|67266.24|0.02|0.08|R|F|1993-05-20|1993-07-24|1993-05-31|NONE|REG AIR|nticing sheaves. regular| +7976|31469|18970|6|5|7002.30|0.08|0.08|R|F|1993-07-12|1993-06-15|1993-08-10|COLLECT COD|REG AIR|ts are carefully. quickly special accoun| +7977|236197|11206|1|49|55525.82|0.06|0.08|N|O|1996-11-11|1996-12-11|1996-11-30|DELIVER IN PERSON|FOB|s boost furiously. blithely bold reque| +7978|336308|23827|1|30|40328.70|0.05|0.07|R|F|1992-01-28|1992-04-03|1992-02-27|NONE|FOB|olites alongsid| +7978|318677|6196|2|35|59348.10|0.08|0.03|R|F|1992-01-12|1992-03-03|1992-02-06|DELIVER IN PERSON|TRUCK|ges. furiously special dolphins integrate | +7978|993272|5792|3|4|5460.92|0.00|0.02|A|F|1992-03-01|1992-03-08|1992-03-23|TAKE BACK RETURN|FOB|y bold decoys. furiously regular packag| +7979|880533|43051|1|25|37837.25|0.08|0.08|N|O|1996-02-01|1996-02-11|1996-02-18|NONE|REG AIR|. quickly careful multipliers wake. | +7979|109967|34972|2|5|9884.80|0.06|0.02|N|O|1996-04-28|1996-03-27|1996-05-22|NONE|AIR| according to the blith| +7980|326650|14169|1|34|57005.76|0.01|0.02|N|O|1996-11-13|1996-11-15|1996-11-19|TAKE BACK RETURN|REG AIR|e slyly special pearls. ironi| +7980|4419|16920|2|38|50289.58|0.04|0.05|N|O|1996-12-26|1996-11-14|1997-01-01|NONE|FOB|quests. re| +7980|269091|19092|3|44|46643.52|0.02|0.00|N|O|1996-11-04|1996-12-12|1996-11-09|NONE|TRUCK|s lose along the bli| +7980|599751|24774|4|34|62924.82|0.07|0.05|N|O|1997-01-04|1996-11-26|1997-01-12|TAKE BACK RETURN|TRUCK|y. carefully speci| +7980|998687|48688|5|25|44641.00|0.10|0.01|N|O|1996-10-27|1996-11-06|1996-11-09|NONE|MAIL| sentiments! express packages boos| +7980|915951|28470|6|28|55073.48|0.04|0.03|N|O|1996-12-01|1996-10-31|1996-12-28|NONE|FOB|s wake about the r| +7980|377845|40353|7|32|61530.56|0.00|0.00|N|O|1996-11-22|1996-12-11|1996-12-07|TAKE BACK RETURN|TRUCK| beans are unusual, ironic accou| +7981|437702|37703|1|44|72145.92|0.01|0.06|A|F|1992-07-18|1992-06-25|1992-08-10|DELIVER IN PERSON|AIR|ully silent packages h| +7981|448896|36421|2|17|31362.79|0.10|0.06|A|F|1992-08-27|1992-06-12|1992-09-24|DELIVER IN PERSON|MAIL|ithely express requests haggle carefull| +7981|580600|5623|3|44|73945.52|0.08|0.06|A|F|1992-05-26|1992-07-30|1992-05-29|TAKE BACK RETURN|REG AIR|. slyly final ideas eat furiously abov| +7981|134938|47441|4|14|27621.02|0.02|0.03|A|F|1992-06-29|1992-06-27|1992-07-08|COLLECT COD|MAIL|ully regular r| +7982|255572|18078|1|19|29023.64|0.07|0.03|N|O|1997-06-08|1997-05-13|1997-06-29|DELIVER IN PERSON|FOB|nic instructions| +7982|396346|33868|2|16|23077.28|0.02|0.07|N|O|1997-05-07|1997-05-21|1997-05-21|DELIVER IN PERSON|REG AIR| platelets are furiously a| +7983|896630|34182|1|38|61810.42|0.08|0.07|N|O|1995-10-23|1995-11-07|1995-11-14|TAKE BACK RETURN|AIR|egular theodolites wake slyly pending r| +7983|650757|758|2|5|8538.60|0.05|0.06|N|O|1995-10-21|1995-11-04|1995-11-14|COLLECT COD|TRUCK|lithely regular ideas a| +7983|270899|33405|3|50|93494.00|0.09|0.01|N|O|1995-09-30|1995-12-02|1995-10-15|TAKE BACK RETURN|TRUCK|s. furiously special orb| +7983|983125|45645|4|28|33826.24|0.05|0.04|N|O|1995-11-11|1995-11-25|1995-11-27|NONE|TRUCK|eans. reque| +7983|369060|6582|5|2|2258.10|0.08|0.03|N|O|1995-10-29|1995-12-02|1995-11-17|COLLECT COD|REG AIR|ar foxes. slowly unusual | +8008|751439|38985|1|49|73029.60|0.02|0.07|R|F|1992-06-06|1992-07-14|1992-06-25|DELIVER IN PERSON|AIR|al theodolites wake alongside of th| +8008|422875|10400|2|45|80903.25|0.06|0.04|R|F|1992-07-08|1992-06-04|1992-07-28|COLLECT COD|REG AIR|l, regular dependencies cajole| +8008|248776|36289|3|22|37944.72|0.06|0.07|R|F|1992-07-02|1992-06-14|1992-07-07|TAKE BACK RETURN|RAIL|into beans. slyly enticing excuses us| +8008|161470|48980|4|8|12251.76|0.09|0.05|A|F|1992-07-26|1992-06-11|1992-08-18|DELIVER IN PERSON|RAIL| bold platelets play blithely after| +8008|822053|47086|5|43|41925.43|0.02|0.05|A|F|1992-07-19|1992-07-17|1992-08-10|DELIVER IN PERSON|TRUCK|foxes haggle quickly. excuses are quickl| +8009|106887|19390|1|48|90906.24|0.08|0.00|R|F|1994-01-16|1994-02-13|1994-01-25|TAKE BACK RETURN|AIR|st the special | +8009|443716|31241|2|6|9958.14|0.06|0.07|R|F|1994-05-10|1994-03-20|1994-06-06|TAKE BACK RETURN|SHIP|uests cajole slyly acr| +8009|527582|2603|3|30|48286.80|0.01|0.00|R|F|1994-04-19|1994-03-09|1994-05-04|COLLECT COD|REG AIR|gular depths affix. quickly special reques| +8009|55910|43414|4|48|89563.68|0.05|0.06|A|F|1994-03-01|1994-03-22|1994-03-23|DELIVER IN PERSON|REG AIR|ts. quickly silent deposits nag at the| +8009|678254|15794|5|16|19715.52|0.01|0.07|R|F|1994-02-16|1994-04-01|1994-03-18|COLLECT COD|SHIP|ounts. theodolites sleep carefully a| +8009|400652|13161|6|31|48131.53|0.10|0.07|A|F|1994-04-08|1994-02-24|1994-04-14|TAKE BACK RETURN|RAIL|gular excuses-- reque| +8010|467678|17679|1|9|14810.85|0.10|0.08|N|O|1998-08-25|1998-09-12|1998-09-01|NONE|SHIP|es boost boldly amon| +8010|248407|48408|2|25|33884.75|0.07|0.01|N|O|1998-10-03|1998-10-05|1998-10-21|NONE|MAIL|c instructions haggle. furiously regular| +8010|971219|8777|3|41|52896.97|0.04|0.01|N|O|1998-09-22|1998-10-27|1998-10-18|TAKE BACK RETURN|FOB|gle furiousl| +8010|271596|34102|4|3|4702.74|0.04|0.06|N|O|1998-09-08|1998-10-05|1998-10-05|NONE|AIR|rts may are blithely silent platel| +8010|712426|49969|5|30|43151.70|0.09|0.04|N|O|1998-08-18|1998-10-04|1998-09-01|NONE|FOB| pending idea| +8010|736772|36773|6|15|27131.10|0.08|0.07|N|O|1998-11-18|1998-10-04|1998-11-20|DELIVER IN PERSON|SHIP|ously dogged| +8011|113208|13209|1|9|10990.80|0.03|0.01|N|O|1995-07-26|1995-07-27|1995-07-28|DELIVER IN PERSON|FOB|al deposits. | +8011|682476|32477|2|14|20418.16|0.05|0.08|N|F|1995-06-13|1995-08-18|1995-06-24|DELIVER IN PERSON|RAIL|yly regular dependencies haggle | +8011|365833|40848|3|5|9494.10|0.08|0.07|N|O|1995-09-07|1995-08-14|1995-09-23|NONE|TRUCK|g to the quickly silent ac| +8011|544650|7161|4|46|77952.98|0.07|0.07|N|O|1995-08-04|1995-07-16|1995-08-09|NONE|RAIL|sly bold dolp| +8011|923994|36513|5|28|56502.60|0.09|0.03|N|O|1995-08-31|1995-08-22|1995-09-07|COLLECT COD|FOB|d platelets boost furiously regular, regula| +8011|552516|2517|6|14|21958.86|0.04|0.03|N|O|1995-07-05|1995-07-15|1995-07-29|TAKE BACK RETURN|AIR|boldly express accoun| +8012|869830|32348|1|2|3599.58|0.01|0.00|N|O|1997-05-22|1997-06-09|1997-05-23|COLLECT COD|TRUCK|, ironic instructio| +8012|229542|42047|2|1|1471.53|0.00|0.02|N|O|1997-07-28|1997-06-06|1997-08-06|DELIVER IN PERSON|TRUCK|ly ideas. furiously ironic| +8012|898281|10799|3|20|25584.80|0.00|0.05|N|O|1997-05-16|1997-07-11|1997-05-31|DELIVER IN PERSON|TRUCK| beans. pinto beans are furiously qui| +8012|403908|28925|4|6|10871.28|0.01|0.07|N|O|1997-06-30|1997-05-19|1997-07-13|COLLECT COD|MAIL|usly express excuses are furio| +8012|473735|11263|5|16|27339.36|0.07|0.04|N|O|1997-07-17|1997-05-31|1997-08-13|DELIVER IN PERSON|RAIL| express, ironic deposits. requests wa| +8012|61003|11004|6|49|47236.00|0.03|0.06|N|O|1997-05-11|1997-06-30|1997-06-02|DELIVER IN PERSON|FOB|fluffily special r| +8013|948395|48396|1|11|15876.85|0.03|0.07|A|F|1992-10-09|1992-08-08|1992-10-31|TAKE BACK RETURN|RAIL| unusual theod| +8013|669307|44334|2|17|21696.59|0.02|0.07|R|F|1992-09-16|1992-08-05|1992-09-19|TAKE BACK RETURN|RAIL|instructions lose idly even, bold excuse| +8013|41354|28855|3|17|22020.95|0.08|0.06|A|F|1992-06-27|1992-08-21|1992-07-19|COLLECT COD|SHIP|ar accounts haggle furiously| +8013|26279|13780|4|43|51826.61|0.01|0.00|R|F|1992-07-25|1992-09-05|1992-08-06|TAKE BACK RETURN|SHIP|ously. bold, regular accounts above | +8013|667884|5424|5|32|59259.20|0.07|0.06|R|F|1992-08-24|1992-08-19|1992-09-14|TAKE BACK RETURN|FOB| regular requ| +8013|117309|29812|6|4|5305.20|0.03|0.08|A|F|1992-07-02|1992-08-01|1992-07-24|DELIVER IN PERSON|MAIL|the platelets. reque| +8013|607056|7057|7|3|2889.06|0.00|0.00|R|F|1992-07-22|1992-08-27|1992-07-31|NONE|REG AIR|nic packages sleep carefully abou| +8014|783127|20673|1|48|58084.32|0.06|0.06|R|F|1995-04-27|1995-05-10|1995-05-12|NONE|MAIL|ing to the blithely ironic requests. | +8014|2889|27890|2|16|28670.08|0.07|0.02|R|F|1995-04-19|1995-06-02|1995-05-02|TAKE BACK RETURN|SHIP|wake enticingly bold, ironic packages. fin| +8014|544605|7116|3|23|37940.34|0.10|0.03|N|O|1995-07-16|1995-04-29|1995-08-06|DELIVER IN PERSON|RAIL| slyly. silent, daring acco| +8014|175441|37945|4|34|51558.96|0.10|0.01|A|F|1995-04-04|1995-05-20|1995-04-28|COLLECT COD|MAIL|e furiously even courts. blithely regular p| +8014|620769|8306|5|48|81107.04|0.07|0.00|R|F|1995-04-13|1995-05-05|1995-05-04|DELIVER IN PERSON|MAIL|ar accounts cajole carefully express| +8014|255982|30993|6|41|79456.77|0.05|0.03|A|F|1995-04-02|1995-05-12|1995-04-29|DELIVER IN PERSON|TRUCK| express packag| +8015|707119|32148|1|39|43917.12|0.06|0.07|N|O|1995-10-28|1995-10-15|1995-11-20|TAKE BACK RETURN|REG AIR|fully above the expres| +8015|546905|21926|2|45|87834.60|0.05|0.01|N|O|1995-10-28|1995-09-03|1995-11-10|COLLECT COD|TRUCK|luffily even foxes detect fluffily bol| +8015|821590|9139|3|6|9069.30|0.01|0.02|N|O|1995-10-06|1995-10-04|1995-10-09|TAKE BACK RETURN|MAIL|final theodolites| +8015|457890|32909|4|24|44348.88|0.09|0.05|N|O|1995-11-13|1995-09-19|1995-11-21|NONE|AIR|mong the furiously ironi| +8015|756267|31298|5|49|64838.27|0.10|0.06|N|O|1995-08-14|1995-10-16|1995-08-29|DELIVER IN PERSON|MAIL|yly against| +8040|90401|2903|1|15|20871.00|0.04|0.01|R|F|1992-03-22|1992-06-02|1992-04-13|NONE|TRUCK| furiously | +8040|360825|48347|2|47|88633.07|0.04|0.04|A|F|1992-06-23|1992-04-09|1992-06-27|TAKE BACK RETURN|REG AIR|he slyly special pinto beans. express p| +8040|376768|14290|3|47|86703.25|0.06|0.04|R|F|1992-04-18|1992-05-30|1992-04-25|NONE|SHIP|gle slyly. blithely final instructio| +8040|329800|29801|4|3|5489.37|0.02|0.03|R|F|1992-06-10|1992-05-28|1992-06-28|COLLECT COD|MAIL|lose sentiments. bold pinto beans int| +8040|942318|42319|5|1|1360.27|0.05|0.03|R|F|1992-03-16|1992-05-21|1992-03-21|NONE|SHIP|e carefully regul| +8040|524216|36727|6|6|7441.14|0.09|0.08|R|F|1992-05-14|1992-05-11|1992-05-26|TAKE BACK RETURN|TRUCK|cies alongside of the | +8041|212972|12973|1|27|50893.92|0.10|0.08|R|F|1992-10-07|1992-11-07|1992-10-19|NONE|RAIL|hely express ideas. slyly pending id| +8041|418798|6323|2|1|1716.77|0.05|0.04|A|F|1992-12-02|1992-11-25|1992-12-12|NONE|REG AIR|final, regula| +8041|729414|4443|3|7|10103.66|0.06|0.06|R|F|1992-09-24|1992-12-14|1992-09-26|COLLECT COD|TRUCK|- final, regular ideas wake furiously. cou| +8041|244695|19704|4|46|75425.28|0.02|0.08|R|F|1992-11-09|1992-12-07|1992-11-19|COLLECT COD|REG AIR|sly even deposits integrate care| +8041|584976|34977|5|4|8243.80|0.08|0.02|A|F|1992-11-02|1992-10-25|1992-11-20|COLLECT COD|MAIL|are furiously i| +8041|679424|16964|6|10|14033.90|0.10|0.03|A|F|1993-01-16|1992-10-29|1993-02-10|TAKE BACK RETURN|REG AIR| haggle above the final, regular dolphins? | +8042|443973|43974|1|21|40255.95|0.03|0.04|R|F|1994-10-19|1994-12-01|1994-11-13|TAKE BACK RETURN|AIR|final packages believe blithely a| +8042|839614|14647|2|6|9321.42|0.03|0.05|R|F|1994-12-27|1994-11-13|1994-12-31|TAKE BACK RETURN|MAIL|he furiously final deposits. carefully even| +8042|378741|41249|3|39|70969.47|0.10|0.02|A|F|1994-12-21|1994-11-28|1995-01-17|COLLECT COD|RAIL|the silent deposits. foxes boost| +8042|497781|35309|4|46|81822.96|0.01|0.02|R|F|1994-12-15|1994-10-31|1995-01-02|NONE|MAIL|l foxes may affix fluffily s| +8043|44246|19247|1|25|29756.00|0.04|0.04|R|F|1993-10-06|1993-10-08|1993-10-27|DELIVER IN PERSON|TRUCK|ding deposits was: qu| +8043|633354|33355|2|23|29608.36|0.07|0.06|R|F|1994-01-02|1993-11-04|1994-02-01|COLLECT COD|AIR|he busy, regul| +8043|777949|27950|3|22|44592.02|0.07|0.06|A|F|1993-10-13|1993-11-13|1993-10-27|DELIVER IN PERSON|TRUCK|uffily. asymptotes nag slyly. packages nag| +8043|979759|4798|4|11|20225.81|0.04|0.07|R|F|1993-11-25|1993-10-09|1993-12-16|COLLECT COD|RAIL|uriously final dependencies against the| +8043|808390|45939|5|50|64917.50|0.08|0.02|A|F|1993-11-27|1993-11-11|1993-12-25|TAKE BACK RETURN|AIR|nstructions nag even| +8043|609178|9179|6|20|21742.80|0.02|0.02|A|F|1993-12-30|1993-10-31|1994-01-13|DELIVER IN PERSON|REG AIR|ly special packages | +8044|601636|1637|1|46|70729.60|0.06|0.06|A|F|1994-08-10|1994-09-29|1994-09-09|NONE|SHIP|each furiously according to | +8044|695200|32740|2|21|25098.57|0.10|0.08|A|F|1994-07-27|1994-09-02|1994-07-28|DELIVER IN PERSON|TRUCK|s? slyly ironic somas are final instruct| +8044|222570|47579|3|13|19403.28|0.09|0.02|A|F|1994-08-11|1994-10-08|1994-08-19|DELIVER IN PERSON|SHIP|s. carefully| +8044|730944|43459|4|21|41473.11|0.09|0.06|A|F|1994-07-20|1994-09-21|1994-08-13|COLLECT COD|RAIL|y ironic notornis. | +8044|960587|35626|5|8|13180.32|0.01|0.02|R|F|1994-08-25|1994-08-21|1994-09-03|DELIVER IN PERSON|FOB|ay above the ironic,| +8045|137001|24508|1|1|1038.00|0.07|0.01|N|O|1996-06-05|1996-06-16|1996-07-03|COLLECT COD|MAIL| fluffily ir| +8046|168614|31118|1|12|20191.32|0.02|0.07|N|O|1998-01-07|1997-11-07|1998-01-14|DELIVER IN PERSON|TRUCK| slyly express deposits integrate sl| +8046|879003|29004|2|17|16693.32|0.00|0.08|N|O|1997-11-08|1997-12-24|1997-11-28|TAKE BACK RETURN|AIR|hely unusu| +8046|398576|23591|3|10|16745.60|0.04|0.01|N|O|1997-10-10|1997-12-20|1997-10-29|NONE|TRUCK|ites. idle grouches are furiously.| +8046|853292|40844|4|5|6226.25|0.08|0.00|N|O|1997-12-29|1997-11-11|1998-01-05|NONE|REG AIR| regular, fi| +8046|273650|11166|5|11|17860.04|0.05|0.06|N|O|1998-01-16|1997-12-02|1998-01-24|NONE|REG AIR|: theodolites wake permane| +8046|233351|33352|6|8|10274.72|0.04|0.07|N|O|1997-10-06|1997-11-20|1997-10-25|TAKE BACK RETURN|FOB|regular ideas us| +8047|150184|185|1|42|51835.56|0.06|0.02|R|F|1995-02-05|1995-01-28|1995-02-27|TAKE BACK RETURN|SHIP|nd. foxes abo| +8072|417698|5223|1|23|37160.41|0.08|0.02|N|O|1995-12-25|1996-01-10|1996-01-03|NONE|REG AIR| slyly about the deposits. pending acc| +8072|241322|16331|2|23|29056.13|0.09|0.03|N|O|1995-12-07|1996-01-10|1995-12-27|NONE|MAIL|fully regular courts sle| +8073|189533|27043|1|12|19470.36|0.08|0.05|N|O|1998-04-29|1998-07-13|1998-05-26|COLLECT COD|MAIL|egular theodolites haggle| +8073|477648|15176|2|6|9753.72|0.05|0.06|N|O|1998-07-19|1998-07-17|1998-07-26|NONE|MAIL|ronic theodolites. quickly un| +8073|825608|13157|3|29|44473.24|0.01|0.02|N|O|1998-07-11|1998-07-20|1998-07-22|TAKE BACK RETURN|FOB|o boost special, even | +8073|991028|16067|4|23|25736.54|0.04|0.00|N|O|1998-08-03|1998-07-19|1998-08-07|NONE|REG AIR|ages integrate carefully quickly idle | +8073|201745|26754|5|42|69162.66|0.09|0.04|N|O|1998-05-11|1998-07-17|1998-06-01|TAKE BACK RETURN|FOB|es affix slyly against the fluffily ironic| +8073|712654|37683|6|42|69998.04|0.04|0.00|N|O|1998-05-07|1998-07-15|1998-05-13|TAKE BACK RETURN|TRUCK| requests about| +8073|564501|14502|7|7|10958.36|0.09|0.08|N|O|1998-07-26|1998-06-11|1998-08-01|NONE|SHIP|ickly carefully silent| +8074|558953|33976|1|11|22131.23|0.10|0.01|A|F|1993-08-25|1993-11-09|1993-09-08|DELIVER IN PERSON|REG AIR| maintain slyly even, r| +8074|319793|7312|2|11|19940.58|0.02|0.08|R|F|1993-11-14|1993-10-30|1993-11-20|NONE|SHIP|ests lose across the packages| +8075|92486|29990|1|22|32526.56|0.02|0.07|N|O|1997-11-20|1997-11-01|1997-12-11|TAKE BACK RETURN|RAIL|arefully ironic platelets alon| +8075|406070|43595|2|46|44898.30|0.04|0.06|N|O|1997-12-11|1997-10-07|1997-12-21|NONE|AIR|ithely express pinto beans. fluffily spec| +8075|809102|21619|3|50|50553.00|0.09|0.01|N|O|1997-11-23|1997-10-11|1997-12-08|DELIVER IN PERSON|AIR|ully quick| +8075|576949|14483|4|4|8103.68|0.06|0.06|N|O|1997-12-18|1997-11-09|1998-01-07|TAKE BACK RETURN|FOB| regular accounts | +8076|571332|21333|1|9|12629.79|0.05|0.08|N|O|1998-06-14|1998-07-22|1998-07-03|DELIVER IN PERSON|SHIP| regular pack| +8076|360309|10310|2|9|12323.61|0.00|0.06|N|O|1998-04-29|1998-07-06|1998-05-22|NONE|REG AIR|ounts against| +8076|705918|30947|3|10|19238.80|0.00|0.03|N|O|1998-07-23|1998-06-17|1998-08-21|COLLECT COD|FOB|iously ironic dependencies boost carefull| +8076|351241|13749|4|37|47812.51|0.06|0.03|N|O|1998-05-16|1998-06-19|1998-06-10|NONE|SHIP|ts cajole slyl| +8076|294647|7153|5|5|8208.15|0.07|0.04|N|O|1998-06-27|1998-05-25|1998-07-08|TAKE BACK RETURN|SHIP|al deposits p| +8076|125758|38261|6|38|67782.50|0.02|0.03|N|O|1998-08-14|1998-06-20|1998-08-15|DELIVER IN PERSON|MAIL|ents above the accounts detect fluffil| +8077|892521|17556|1|49|74160.52|0.03|0.06|A|F|1993-08-26|1993-07-09|1993-08-31|COLLECT COD|TRUCK|er the carefully special requests| +8077|594405|31939|2|2|2998.76|0.09|0.07|A|F|1993-07-05|1993-06-14|1993-07-28|TAKE BACK RETURN|SHIP|ully even packa| +8077|151866|26873|3|11|21096.46|0.06|0.00|R|F|1993-05-04|1993-06-25|1993-05-14|COLLECT COD|REG AIR|ly packages. carefully| +8078|275084|95|1|10|10590.70|0.02|0.02|A|F|1994-11-26|1994-09-30|1994-12-07|NONE|MAIL|among the slyly final accounts. regular acc| +8078|329216|4229|2|47|58524.40|0.09|0.08|A|F|1994-08-22|1994-10-11|1994-08-28|COLLECT COD|FOB| fluffily q| +8078|126352|38855|3|6|8270.10|0.09|0.00|A|F|1994-11-13|1994-10-31|1994-11-14|DELIVER IN PERSON|RAIL|ld theodolites haggle carefully again| +8078|594184|44185|4|9|11503.44|0.05|0.07|R|F|1994-12-06|1994-10-07|1995-01-03|TAKE BACK RETURN|SHIP|ic packages wake slyly| +8078|449719|24736|5|20|33373.80|0.04|0.01|A|F|1994-09-10|1994-09-27|1994-10-06|TAKE BACK RETURN|TRUCK|counts. fluffily p| +8078|420462|45479|6|8|11059.52|0.02|0.02|R|F|1994-12-16|1994-11-05|1995-01-14|DELIVER IN PERSON|REG AIR|tions. regular, even ideas sleep c| +8078|692593|30133|7|45|71350.20|0.08|0.04|R|F|1994-10-18|1994-10-01|1994-10-22|COLLECT COD|AIR|the deposits. quickly ironic p| +8079|395615|20630|1|46|78687.60|0.09|0.00|A|F|1992-09-14|1992-08-09|1992-09-22|NONE|REG AIR|l accounts.| +8079|87281|37282|2|49|62145.72|0.06|0.01|A|F|1992-08-30|1992-09-11|1992-09-17|DELIVER IN PERSON|FOB|ly final frets. carefully final ideas c| +8079|916379|28898|3|6|8371.98|0.06|0.06|A|F|1992-10-07|1992-09-28|1992-10-08|DELIVER IN PERSON|FOB|fully. unusu| +8079|579185|41697|4|3|3792.48|0.02|0.03|R|F|1992-10-27|1992-08-11|1992-11-23|TAKE BACK RETURN|TRUCK|ld, regular requests. quickly | +8104|515236|2767|1|12|15014.52|0.04|0.05|N|O|1997-04-10|1997-02-19|1997-04-17|DELIVER IN PERSON|AIR|ely. furio| +8105|107335|7336|1|34|45639.22|0.08|0.02|N|O|1997-06-24|1997-08-07|1997-07-15|TAKE BACK RETURN|RAIL|sleep blithely across the ruthless excuses| +8105|973333|35853|2|21|29532.09|0.08|0.00|N|O|1997-05-30|1997-06-20|1997-06-11|NONE|MAIL| blithely slyly regular ideas| +8106|293179|30695|1|4|4688.64|0.06|0.03|N|O|1997-07-24|1997-09-04|1997-08-19|COLLECT COD|REG AIR|ss the carefully regular requests. fra| +8106|451806|14316|2|41|72068.98|0.05|0.00|N|O|1997-07-18|1997-09-16|1997-07-26|TAKE BACK RETURN|TRUCK|r, silent dolphins sleep slyly| +8107|353021|3022|1|7|7518.07|0.04|0.01|A|F|1994-12-15|1995-02-04|1995-01-13|NONE|TRUCK| final platelets; final, i| +8107|212705|218|2|40|64707.60|0.09|0.06|A|F|1994-12-14|1995-01-15|1994-12-18|NONE|SHIP|gular platelets cajole blithely! furio| +8107|916937|41974|3|15|29308.35|0.06|0.04|R|F|1995-02-21|1995-03-05|1995-03-04|TAKE BACK RETURN|AIR|dolites sleep blithely ca| +8107|957531|32570|4|5|7942.45|0.05|0.08|A|F|1995-01-14|1995-01-13|1995-02-13|NONE|MAIL| silent request| +8107|218078|30583|5|12|11952.72|0.02|0.03|R|F|1994-12-27|1995-02-21|1995-01-03|DELIVER IN PERSON|REG AIR| sublate furiousl| +8108|28595|16096|1|27|41136.93|0.06|0.08|N|O|1998-10-03|1998-08-11|1998-10-22|NONE|TRUCK| packages. final accounts wake carefully r| +8108|580968|5991|2|36|73761.84|0.09|0.02|N|O|1998-11-02|1998-10-01|1998-11-11|DELIVER IN PERSON|TRUCK|e regular, unusual packages. car| +8108|313771|26278|3|12|21417.12|0.03|0.00|N|O|1998-10-17|1998-10-05|1998-10-21|NONE|FOB|lar accounts. slyly| +8108|538065|13086|4|38|41915.52|0.01|0.04|N|O|1998-10-20|1998-09-26|1998-11-17|DELIVER IN PERSON|MAIL|ainments along the even | +8109|265401|40412|1|22|30060.58|0.05|0.05|N|O|1997-12-18|1998-02-07|1998-01-08|COLLECT COD|TRUCK| furiously final dec| +8110|650894|25921|1|11|20293.46|0.09|0.04|R|F|1992-09-27|1992-09-26|1992-10-19|COLLECT COD|TRUCK|pinto beans after th| +8110|571867|9401|2|8|15510.72|0.02|0.02|R|F|1992-09-15|1992-09-14|1992-10-08|DELIVER IN PERSON|MAIL|he carefully final ideas sleep around t| +8110|355914|5915|3|14|27578.60|0.06|0.01|A|F|1992-08-23|1992-08-28|1992-09-11|DELIVER IN PERSON|FOB|quickly. b| +8110|844996|7513|4|50|97047.50|0.06|0.01|A|F|1992-10-25|1992-09-16|1992-11-18|DELIVER IN PERSON|AIR|yly express packages haggle al| +8111|634131|21668|1|30|31953.00|0.05|0.00|N|O|1996-12-10|1996-12-16|1996-12-15|DELIVER IN PERSON|REG AIR|d deposits grow. slyly express th| +8136|713355|38384|1|37|50627.84|0.01|0.06|N|O|1998-07-23|1998-05-31|1998-07-25|COLLECT COD|SHIP|nal requests. slyly final theodolites cajol| +8136|355208|5209|2|21|26526.99|0.03|0.07|N|O|1998-06-20|1998-06-21|1998-07-12|TAKE BACK RETURN|MAIL|ve. furiously pending packages after t| +8136|972151|47190|3|24|29354.64|0.10|0.08|N|O|1998-05-18|1998-06-10|1998-06-12|DELIVER IN PERSON|AIR|l pinto beans are furiously. b| +8136|939471|27026|4|41|61927.63|0.06|0.00|N|O|1998-05-25|1998-06-19|1998-05-26|COLLECT COD|SHIP|lly after the fluffily reg| +8136|682795|45309|5|33|58666.08|0.01|0.07|N|O|1998-07-23|1998-07-10|1998-08-01|NONE|RAIL|arly final instructions wake ca| +8136|721856|46885|6|2|3755.64|0.03|0.05|N|O|1998-07-14|1998-05-27|1998-08-02|NONE|RAIL|sual, regular accounts. requests along the | +8137|959870|9871|1|33|63684.39|0.07|0.03|R|F|1992-08-29|1992-09-20|1992-09-15|NONE|RAIL|requests sleep alo| +8137|522199|22200|2|12|14654.04|0.07|0.00|A|F|1992-07-19|1992-09-24|1992-08-14|COLLECT COD|TRUCK|g requests. pending, reg| +8137|582550|45062|3|4|6530.12|0.09|0.02|R|F|1992-11-01|1992-09-15|1992-12-01|COLLECT COD|TRUCK|equests. carefu| +8137|902749|40304|4|10|17517.00|0.03|0.02|A|F|1992-08-25|1992-09-29|1992-09-04|NONE|FOB|carefully | +8137|494916|44917|5|15|28663.35|0.09|0.05|R|F|1992-08-18|1992-09-10|1992-08-22|DELIVER IN PERSON|REG AIR|across the packages. foxes hinder sl| +8137|40458|2959|6|13|18179.85|0.00|0.05|A|F|1992-08-09|1992-09-30|1992-08-16|NONE|FOB|ake fluffily even excuses. pinto beans ha| +8137|975021|60|7|43|47127.14|0.02|0.03|R|F|1992-09-30|1992-08-31|1992-10-08|DELIVER IN PERSON|TRUCK|ggle carefully | +8138|165230|40237|1|32|41447.36|0.09|0.06|A|F|1995-04-17|1995-02-26|1995-04-25|TAKE BACK RETURN|SHIP|ly final deposits nag ruthl| +8138|8746|46247|2|35|57915.90|0.10|0.02|R|F|1995-01-08|1995-03-21|1995-01-11|DELIVER IN PERSON|REG AIR|g the furiously sly accounts. sp| +8138|981798|31799|3|30|56392.50|0.05|0.01|R|F|1995-04-12|1995-02-21|1995-04-24|TAKE BACK RETURN|MAIL|ic theodolites against the b| +8138|68799|6303|4|50|88389.50|0.02|0.00|A|F|1995-01-20|1995-03-20|1995-01-31|TAKE BACK RETURN|AIR| use brave| +8138|300580|581|5|23|36353.11|0.03|0.02|R|F|1995-02-12|1995-02-22|1995-02-28|DELIVER IN PERSON|MAIL| ideas wake around the furiously specia| +8138|832066|32067|6|24|23952.48|0.08|0.00|R|F|1995-03-17|1995-02-08|1995-04-10|COLLECT COD|RAIL|al, final packages. quickly regular pinto | +8138|531789|44300|7|10|18207.60|0.07|0.02|R|F|1995-03-18|1995-03-24|1995-03-25|COLLECT COD|REG AIR|latelets boost carefully. blithely even req| +8139|775774|13320|1|7|12948.18|0.07|0.02|N|O|1995-09-26|1995-08-12|1995-10-26|COLLECT COD|FOB|lar accounts nag | +8139|417232|29741|2|2|2298.42|0.02|0.08|N|O|1995-07-11|1995-10-03|1995-08-01|TAKE BACK RETURN|SHIP|ress packages.| +8139|408144|8145|3|45|47345.40|0.02|0.02|N|O|1995-07-07|1995-09-06|1995-07-19|NONE|FOB|ronic foxes sle| +8139|669426|31940|4|30|41861.70|0.10|0.08|N|O|1995-07-14|1995-08-31|1995-07-17|DELIVER IN PERSON|AIR|y carefully | +8139|34425|34426|5|38|51657.96|0.06|0.06|N|O|1995-08-09|1995-09-11|1995-09-03|TAKE BACK RETURN|SHIP|y even deposits are quickly carefully| +8139|570946|45969|6|45|90761.40|0.02|0.02|N|O|1995-09-28|1995-08-18|1995-10-28|COLLECT COD|SHIP|as. theodolites sleep carefully | +8140|418555|43572|1|5|7367.65|0.05|0.05|N|O|1997-11-26|1997-11-09|1997-12-04|COLLECT COD|MAIL|stealthy accounts. al| +8140|644503|32040|2|12|17369.64|0.10|0.07|N|O|1997-10-29|1997-11-25|1997-11-04|NONE|RAIL|ly bold packages. spe| +8140|148476|35983|3|2|3048.94|0.07|0.03|N|O|1998-01-04|1997-10-26|1998-01-24|TAKE BACK RETURN|FOB|ronic deposits be| +8141|278537|3548|1|48|72744.96|0.07|0.08|N|O|1997-12-10|1997-12-24|1997-12-21|TAKE BACK RETURN|RAIL|yly quickly pending accounts. fu| +8141|370690|33198|2|33|58102.44|0.04|0.05|N|O|1997-11-04|1997-12-27|1997-11-10|COLLECT COD|TRUCK| foxes cajole slyly unusual| +8141|173126|23127|3|30|35973.60|0.10|0.06|N|O|1998-01-16|1997-12-06|1998-01-30|TAKE BACK RETURN|AIR|ies cajole furiously final notornis. slyly | +8142|996841|21880|1|50|96890.00|0.09|0.07|N|O|1995-10-02|1995-09-12|1995-10-05|DELIVER IN PERSON|AIR|. blithely regular | +8142|905231|30268|2|25|30904.75|0.00|0.04|N|O|1995-08-28|1995-09-16|1995-09-21|DELIVER IN PERSON|SHIP|yly even packages haggle evenly within| +8142|201450|38963|3|28|37840.32|0.09|0.08|N|O|1995-07-31|1995-07-29|1995-08-11|TAKE BACK RETURN|FOB| regular ideas| +8142|756566|6567|4|30|48675.90|0.00|0.05|N|O|1995-07-27|1995-07-29|1995-07-31|COLLECT COD|FOB|ely. carefully regular dependencies haggl| +8143|230720|43225|1|26|42918.46|0.03|0.08|R|F|1995-02-03|1995-02-24|1995-02-25|TAKE BACK RETURN|MAIL|ely special requests until the blithely | +8168|794409|6925|1|19|28564.03|0.02|0.00|N|O|1996-06-14|1996-04-18|1996-06-17|COLLECT COD|RAIL|ly. theodo| +8168|616696|4233|2|36|58055.76|0.01|0.06|N|O|1996-05-20|1996-04-19|1996-06-19|NONE|TRUCK| carefully regular accounts| +8168|804498|42047|3|22|30853.90|0.06|0.05|N|O|1996-03-27|1996-04-28|1996-03-31|DELIVER IN PERSON|AIR| ruthlessly slyly unusual foxes. fur| +8168|188424|38425|4|45|68058.90|0.03|0.03|N|O|1996-05-13|1996-04-04|1996-06-02|COLLECT COD|SHIP|ackages. ironic platelets integra| +8168|835002|22551|5|2|1873.92|0.03|0.08|N|O|1996-05-18|1996-05-08|1996-06-07|COLLECT COD|RAIL|nst the silent orbits. ironic| +8168|868118|18119|6|10|10860.70|0.03|0.04|N|O|1996-03-11|1996-04-14|1996-03-13|DELIVER IN PERSON|FOB|ongside of the pinto beans are blit| +8168|445400|45401|7|30|40361.40|0.04|0.05|N|O|1996-03-25|1996-03-18|1996-04-17|TAKE BACK RETURN|FOB|es affix about the sly instruction| +8169|827999|3032|1|3|5780.85|0.03|0.03|A|F|1992-03-31|1992-04-09|1992-04-16|TAKE BACK RETURN|RAIL|. ideas sleep| +8169|170121|32625|2|22|26204.64|0.06|0.01|A|F|1992-03-14|1992-04-01|1992-04-13|DELIVER IN PERSON|REG AIR|ake above | +8169|213892|1405|3|38|68623.44|0.00|0.02|A|F|1992-05-20|1992-04-18|1992-06-02|DELIVER IN PERSON|SHIP|ely regular foxes. stealthily fina| +8169|871792|46827|4|42|74077.50|0.05|0.03|R|F|1992-02-22|1992-04-13|1992-03-05|NONE|MAIL|g to the quickly silent shea| +8169|198271|48272|5|39|53401.53|0.10|0.07|R|F|1992-02-17|1992-04-11|1992-02-20|COLLECT COD|REG AIR| x-ray slyly final, even escap| +8170|868815|18816|1|16|28540.32|0.04|0.06|N|O|1995-09-05|1995-08-19|1995-10-04|DELIVER IN PERSON|REG AIR|sts. final packages accordin| +8170|171179|46186|2|6|7501.02|0.10|0.00|N|O|1995-06-25|1995-09-14|1995-06-30|COLLECT COD|SHIP|regular instr| +8171|455849|5850|1|42|75802.44|0.08|0.03|A|F|1993-04-15|1993-04-29|1993-04-21|TAKE BACK RETURN|AIR|es cajole according to the quickly even re| +8172|376449|26450|1|27|41186.61|0.01|0.02|R|F|1994-05-16|1994-06-09|1994-05-19|NONE|SHIP|uses. theodolites against th| +8172|969684|19685|2|13|22797.32|0.00|0.02|A|F|1994-06-15|1994-06-09|1994-07-07|NONE|TRUCK|ld pinto beans. blithely| +8172|473512|11040|3|48|71303.52|0.00|0.07|A|F|1994-06-10|1994-07-02|1994-06-23|DELIVER IN PERSON|MAIL|nts sleep stealthily | +8172|306756|19263|4|10|17627.40|0.00|0.08|R|F|1994-06-17|1994-06-07|1994-07-06|TAKE BACK RETURN|RAIL| sleep carefully | +8173|859705|34740|1|47|78239.02|0.06|0.08|A|F|1993-08-26|1993-08-18|1993-08-30|NONE|FOB|uffily ironic packages poach slyly| +8173|56271|31274|2|17|20863.59|0.09|0.08|A|F|1993-09-10|1993-07-30|1993-09-30|DELIVER IN PERSON|TRUCK| are furiously deposits; carefully| +8173|741843|16872|3|47|88586.07|0.04|0.01|A|F|1993-10-07|1993-09-02|1993-10-21|COLLECT COD|AIR|o the regular, silent frets. slyly| +8173|143545|31052|4|36|57187.44|0.01|0.00|R|F|1993-10-09|1993-09-06|1993-10-13|NONE|REG AIR|nal dependencies wake final i| +8173|555548|18060|5|7|11224.64|0.07|0.03|A|F|1993-08-22|1993-09-02|1993-09-07|COLLECT COD|REG AIR|itaphs are furiously alongside of the| +8174|666255|16256|1|9|10990.98|0.10|0.06|A|F|1993-07-02|1993-08-10|1993-07-20|COLLECT COD|TRUCK|rding to the do| +8174|746633|21662|2|13|21834.80|0.02|0.08|A|F|1993-07-28|1993-07-27|1993-08-11|NONE|SHIP|sual foxes. regular theodol| +8174|655926|5927|3|41|77157.49|0.01|0.06|A|F|1993-10-13|1993-08-17|1993-10-26|DELIVER IN PERSON|FOB| final instructi| +8174|137344|49847|4|43|59397.62|0.05|0.06|R|F|1993-10-09|1993-09-05|1993-10-24|DELIVER IN PERSON|RAIL|e slyly unusual Tiresias. final accoun| +8174|332821|32822|5|8|14830.48|0.05|0.03|R|F|1993-09-17|1993-07-25|1993-10-17|DELIVER IN PERSON|TRUCK|deposits. bl| +8175|401248|38773|1|46|52864.12|0.02|0.07|A|F|1995-03-18|1995-02-04|1995-04-04|COLLECT COD|RAIL|ual deposits wake blithely p| +8175|771291|21292|2|14|19071.64|0.04|0.04|R|F|1995-02-13|1995-03-18|1995-02-27|COLLECT COD|AIR|ly alongsid| +8175|74207|49210|3|48|56697.60|0.01|0.01|A|F|1995-03-14|1995-03-08|1995-03-16|TAKE BACK RETURN|RAIL|ronic, silent platelets haggle blithe| +8200|857590|45142|1|33|51069.15|0.10|0.07|R|F|1992-07-19|1992-08-17|1992-07-31|NONE|FOB|p slyly furiously express orbits. blithe| +8200|507423|19934|2|9|12873.60|0.09|0.05|R|F|1992-10-13|1992-08-30|1992-11-05|TAKE BACK RETURN|SHIP|ent packages boost against the final d| +8200|247455|34968|3|9|12621.96|0.06|0.08|R|F|1992-09-20|1992-08-20|1992-10-08|TAKE BACK RETURN|SHIP|le slyly among the blithely express | +8201|127977|2982|1|49|98243.53|0.04|0.06|A|F|1992-06-05|1992-04-19|1992-06-13|DELIVER IN PERSON|FOB|dolites haggle blithely regular theodolite| +8201|897186|47187|2|39|46142.46|0.05|0.01|A|F|1992-03-20|1992-04-03|1992-04-13|NONE|TRUCK|e unusual acc| +8201|993595|6115|3|4|6754.20|0.10|0.04|A|F|1992-04-21|1992-04-07|1992-05-17|COLLECT COD|AIR|l instructions cajo| +8201|347023|9530|4|15|16050.15|0.06|0.08|R|F|1992-02-26|1992-04-09|1992-03-02|DELIVER IN PERSON|REG AIR|thily even ideas. care| +8201|414970|27479|5|45|84822.75|0.02|0.07|R|F|1992-03-23|1992-04-27|1992-04-03|TAKE BACK RETURN|AIR|. fluffily final instructions are furio| +8201|385146|10161|6|46|56631.98|0.06|0.05|R|F|1992-05-29|1992-04-22|1992-06-18|TAKE BACK RETURN|MAIL|e. carefully bold pinto beans affix| +8201|134072|46575|7|11|12166.77|0.07|0.02|R|F|1992-05-30|1992-04-12|1992-06-02|DELIVER IN PERSON|TRUCK|ironic instruc| +8202|341104|3611|1|35|40078.15|0.00|0.08|N|O|1997-04-30|1997-05-25|1997-05-18|NONE|FOB|bold theodolites eat slyly across the sl| +8202|920669|45706|2|34|57447.08|0.07|0.01|N|O|1997-03-24|1997-05-12|1997-04-15|NONE|REG AIR|l pinto beans haggle above the ironic d| +8202|682742|7769|3|14|24145.94|0.10|0.03|N|O|1997-05-14|1997-04-01|1997-05-31|DELIVER IN PERSON|FOB|y unusual requests. regular, ironic | +8203|656754|44294|1|46|78693.12|0.07|0.08|N|O|1996-04-20|1996-04-28|1996-04-30|TAKE BACK RETURN|SHIP|e furiously dolphins. pending pinto | +8203|47839|22840|2|45|80407.35|0.01|0.00|N|O|1996-05-07|1996-03-22|1996-05-27|TAKE BACK RETURN|MAIL|sual ideas serve even requests. slyly speci| +8203|19013|44014|3|13|12116.13|0.06|0.00|N|O|1996-05-26|1996-04-08|1996-06-06|TAKE BACK RETURN|MAIL|osits wake furiously. blithely u| +8203|549178|36709|4|11|13498.65|0.07|0.06|N|O|1996-04-20|1996-04-05|1996-04-24|DELIVER IN PERSON|MAIL|unts wake after the slyly p| +8203|29244|4245|5|38|44583.12|0.06|0.01|N|O|1996-05-07|1996-04-08|1996-05-25|NONE|REG AIR|uickly unusual| +8203|495818|20837|6|35|63482.65|0.04|0.00|N|O|1996-05-24|1996-03-18|1996-05-28|TAKE BACK RETURN|AIR|romise furi| +8204|610531|48068|1|44|63426.00|0.02|0.07|N|O|1997-03-25|1997-03-05|1997-03-28|DELIVER IN PERSON|FOB|fully along the furiously regular deposi| +8204|194490|19497|2|37|58626.13|0.02|0.00|N|O|1997-04-09|1997-03-18|1997-04-10|COLLECT COD|REG AIR|l accounts sleep blithely. quickly| +8204|788606|38607|3|34|57615.38|0.00|0.03|N|O|1997-04-25|1997-03-18|1997-05-05|NONE|REG AIR|special theodolites print furiously qui| +8204|84302|46804|4|36|46306.80|0.06|0.07|N|O|1997-01-08|1997-03-04|1997-01-26|DELIVER IN PERSON|FOB|d packages wake silent, final ideas. acco| +8205|301841|39360|1|42|77398.86|0.08|0.07|R|F|1993-07-11|1993-07-01|1993-07-27|COLLECT COD|FOB|y unusual de| +8205|29318|16819|2|4|4989.24|0.02|0.03|A|F|1993-05-02|1993-07-15|1993-05-22|DELIVER IN PERSON|TRUCK|across the slyly express deposits hag| +8206|554765|4766|1|4|7278.96|0.03|0.06|N|O|1996-06-07|1996-07-29|1996-06-13|DELIVER IN PERSON|AIR|he fluffily bo| +8206|924700|49737|2|9|15521.94|0.09|0.03|N|O|1996-09-06|1996-07-22|1996-10-05|COLLECT COD|FOB|nic instructions | +8206|432264|44773|3|6|7177.44|0.10|0.06|N|O|1996-09-07|1996-07-15|1996-09-26|NONE|TRUCK|ys inside the fluff| +8206|45637|20638|4|15|23739.45|0.05|0.03|N|O|1996-08-10|1996-07-05|1996-09-03|COLLECT COD|AIR|e of the deposits. blithely regular| +8206|11259|23760|5|11|12872.75|0.03|0.00|N|O|1996-08-06|1996-06-25|1996-08-28|TAKE BACK RETURN|MAIL|nts after the iro| +8207|399305|11813|1|3|4212.87|0.06|0.08|N|O|1997-01-17|1996-12-28|1997-01-25|DELIVER IN PERSON|MAIL|e slyly slyly bold accounts. e| +8207|108267|20770|2|19|24229.94|0.10|0.00|N|O|1996-12-26|1996-11-30|1997-01-09|TAKE BACK RETURN|AIR|ly. quickly spec| +8232|127693|27694|1|44|75710.36|0.08|0.02|N|O|1998-05-14|1998-07-06|1998-06-04|DELIVER IN PERSON|REG AIR|uriously re| +8232|123891|36394|2|4|7659.56|0.10|0.04|N|O|1998-06-05|1998-06-06|1998-06-28|NONE|FOB|egular packages boost carefully regular exc| +8232|228145|28146|3|20|21462.60|0.01|0.04|N|O|1998-08-15|1998-06-29|1998-08-24|COLLECT COD|REG AIR|ges cajole. special, unus| +8232|416622|29131|4|3|4615.80|0.09|0.07|N|O|1998-08-11|1998-07-09|1998-08-13|COLLECT COD|TRUCK|express requests aga| +8232|158160|8161|5|20|24363.20|0.10|0.08|N|O|1998-07-24|1998-06-06|1998-07-26|TAKE BACK RETURN|FOB|nusual excuses haggle blit| +8233|876719|14271|1|8|13565.36|0.03|0.05|R|F|1993-01-07|1992-11-29|1993-01-26|TAKE BACK RETURN|FOB|gular accounts cajole. regula| +8233|8716|8717|2|6|9748.26|0.06|0.07|R|F|1992-11-07|1992-12-11|1992-12-02|COLLECT COD|AIR|cuses wake blithely alongs| +8233|484119|21647|3|46|50742.14|0.05|0.03|R|F|1993-01-28|1992-12-10|1993-02-06|COLLECT COD|TRUCK|e of the blithely ironic dep| +8233|580851|43363|4|8|15454.64|0.04|0.04|R|F|1992-10-20|1992-12-15|1992-10-28|COLLECT COD|SHIP|ingly above the pending requ| +8234|161115|23619|1|15|17641.65|0.10|0.02|R|F|1994-10-21|1994-08-26|1994-11-05|TAKE BACK RETURN|MAIL|ests are carefully. de| +8234|850087|12605|2|18|18666.72|0.07|0.01|A|F|1994-09-07|1994-09-19|1994-09-20|COLLECT COD|AIR|the blithely blith| +8234|400798|13307|3|45|76444.65|0.10|0.07|A|F|1994-08-04|1994-09-09|1994-08-12|NONE|REG AIR|final pinto | +8234|210979|35988|4|12|22679.52|0.07|0.05|A|F|1994-08-19|1994-09-23|1994-09-15|TAKE BACK RETURN|RAIL|ke furiously. pending deposi| +8235|332196|19715|1|34|41758.12|0.07|0.04|N|O|1997-10-11|1997-09-27|1997-10-15|NONE|REG AIR|s along the regular, regular | +8235|203994|16499|2|30|56939.40|0.04|0.03|N|O|1997-09-25|1997-10-26|1997-09-27|COLLECT COD|TRUCK|al deposits. pending, final deposits hagg| +8235|523104|23105|3|23|25922.84|0.00|0.02|N|O|1997-11-11|1997-10-10|1997-11-24|DELIVER IN PERSON|AIR|. regular accounts | +8235|796604|9120|4|40|68022.80|0.07|0.00|N|O|1997-11-01|1997-10-14|1997-12-01|TAKE BACK RETURN|AIR|sts use carefully. t| +8235|522934|47955|5|14|27396.74|0.04|0.03|N|O|1997-09-25|1997-09-13|1997-10-17|COLLECT COD|FOB|gle carefull| +8235|949786|49787|6|50|91787.00|0.02|0.04|N|O|1997-08-23|1997-09-17|1997-09-05|COLLECT COD|REG AIR|use furiously across| +8235|47111|47112|7|12|12697.32|0.03|0.08|N|O|1997-10-29|1997-09-05|1997-11-09|NONE|SHIP|ake along the carefully bold pa| +8236|780654|5685|1|2|3469.24|0.03|0.00|N|O|1995-07-12|1995-06-15|1995-08-09|TAKE BACK RETURN|AIR|jole carefully. express | +8236|437574|37575|2|16|24184.80|0.08|0.05|N|O|1995-07-25|1995-06-06|1995-08-06|COLLECT COD|RAIL|structions sleep furio| +8237|949438|49439|1|15|22310.85|0.08|0.00|N|O|1998-04-13|1998-04-13|1998-04-16|TAKE BACK RETURN|SHIP|uickly pending req| +8237|198418|48419|2|14|21229.74|0.01|0.06|N|O|1998-03-04|1998-03-10|1998-03-15|COLLECT COD|FOB|ccounts detect about the darin| +8237|802348|39897|3|18|22505.40|0.00|0.01|N|O|1998-03-17|1998-04-03|1998-03-24|COLLECT COD|MAIL|quests. accounts wake after the care| +8237|46666|46667|4|15|24189.90|0.00|0.03|N|O|1998-04-18|1998-03-19|1998-05-17|COLLECT COD|RAIL| packages boost furiously fu| +8238|962293|37332|1|32|43368.00|0.04|0.04|A|F|1994-01-01|1993-11-11|1994-01-09|DELIVER IN PERSON|REG AIR|uests in place of the | +8238|252495|40011|2|50|72374.00|0.02|0.01|A|F|1993-11-09|1993-10-25|1993-11-20|DELIVER IN PERSON|MAIL|into beans sleep blithely idly even theod| +8238|669578|7118|3|2|3095.08|0.03|0.01|A|F|1993-10-07|1993-11-17|1993-11-04|DELIVER IN PERSON|TRUCK|ic, bold accounts| +8238|589124|26658|4|40|48524.00|0.06|0.01|A|F|1993-11-01|1993-11-24|1993-11-28|DELIVER IN PERSON|MAIL|uests. fluffily ironic pint| +8238|398827|36349|5|42|80884.02|0.02|0.01|A|F|1993-10-26|1993-10-22|1993-11-25|NONE|AIR|ronic waters boost furiously fluffil| +8238|75321|37823|6|1|1296.32|0.09|0.00|A|F|1993-12-01|1993-11-04|1993-12-25|COLLECT COD|REG AIR| accounts among the ironic, iron| +8238|911918|24437|7|38|73335.06|0.02|0.05|A|F|1993-12-24|1993-10-24|1994-01-20|TAKE BACK RETURN|MAIL|iously even pinto beans solve carefully| +8239|591673|4185|1|4|7058.60|0.09|0.02|R|F|1993-04-16|1993-05-14|1993-05-11|DELIVER IN PERSON|REG AIR|cuses. furiously unusual excuses are| +8239|243996|31509|2|10|19399.80|0.03|0.02|R|F|1993-04-16|1993-04-27|1993-05-05|TAKE BACK RETURN|SHIP|lar packages detect quickly alo| +8239|829613|17162|3|49|75585.93|0.05|0.04|R|F|1993-05-24|1993-04-30|1993-06-16|TAKE BACK RETURN|RAIL|ld, ironic ideas. furiously ex| +8264|301693|39212|1|6|10168.08|0.10|0.08|N|O|1996-06-05|1996-05-10|1996-06-24|NONE|FOB|ts detect theodolites. unusual cou| +8264|543334|43335|2|2|2754.62|0.03|0.08|N|O|1996-04-28|1996-05-29|1996-04-29|DELIVER IN PERSON|TRUCK|quickly; ironic pearls are blithel| +8265|208781|46294|1|29|49003.33|0.03|0.02|R|F|1994-07-09|1994-07-31|1994-07-26|TAKE BACK RETURN|TRUCK|deas wake final, bold deposits. unusual, | +8265|978305|15863|2|28|38731.28|0.08|0.05|A|F|1994-07-14|1994-07-13|1994-07-24|NONE|FOB|inal requests. furiously spec| +8265|363321|38336|3|48|66446.88|0.10|0.06|A|F|1994-08-13|1994-06-27|1994-08-19|TAKE BACK RETURN|REG AIR|slyly ironic dugouts detect caref| +8265|324784|12303|4|1|1808.77|0.08|0.06|A|F|1994-06-05|1994-07-23|1994-06-30|NONE|FOB|accounts. bold, special waters ha| +8265|644361|31898|5|3|3915.99|0.07|0.08|R|F|1994-07-25|1994-07-15|1994-08-10|TAKE BACK RETURN|SHIP|ong the furiously regula| +8266|844973|44974|1|4|7671.72|0.07|0.05|A|F|1993-08-02|1993-06-16|1993-08-30|COLLECT COD|REG AIR| the speci| +8266|447588|10097|2|45|69100.20|0.08|0.00|R|F|1993-04-17|1993-05-25|1993-05-03|TAKE BACK RETURN|SHIP|ainst the b| +8266|611167|36192|3|40|43125.20|0.01|0.02|A|F|1993-07-13|1993-06-22|1993-08-09|NONE|REG AIR|ut the final theodoli| +8267|47794|10295|1|38|66188.02|0.00|0.02|N|O|1997-12-28|1998-01-17|1998-01-18|COLLECT COD|FOB|tes. carefully final theodolites al| +8267|265991|28497|2|28|54795.44|0.04|0.08|N|O|1998-01-30|1997-12-21|1998-02-02|DELIVER IN PERSON|MAIL|ns. regular, express| +8267|509354|21865|3|47|64076.51|0.10|0.05|N|O|1997-11-19|1998-01-29|1997-11-25|DELIVER IN PERSON|SHIP|riously thin courts. b| +8267|707564|20079|4|38|59718.14|0.02|0.05|N|O|1998-02-15|1998-01-12|1998-03-09|NONE|AIR|thely pending dep| +8267|14725|39726|5|12|19676.64|0.02|0.00|N|O|1997-11-29|1998-01-20|1997-12-23|COLLECT COD|SHIP|ess deposits. package| +8268|749697|24726|1|42|73359.72|0.03|0.07|R|F|1993-08-26|1993-09-08|1993-09-06|DELIVER IN PERSON|AIR|ar frets. deposits against | +8268|141007|3510|2|28|29344.00|0.07|0.00|R|F|1993-10-26|1993-09-04|1993-11-15|TAKE BACK RETURN|SHIP|ly final foxes. carefully| +8268|901318|26355|3|9|11873.43|0.02|0.00|A|F|1993-11-10|1993-10-17|1993-12-05|NONE|TRUCK|jole instructions! fur| +8269|639131|14156|1|18|19261.80|0.07|0.02|A|F|1992-04-22|1992-05-19|1992-05-01|DELIVER IN PERSON|AIR|aggle slyly quickly silent| +8269|874030|49065|2|6|6023.94|0.09|0.02|A|F|1992-05-28|1992-05-03|1992-06-20|DELIVER IN PERSON|AIR|requests. furiously fin| +8270|94182|19185|1|2|2352.36|0.04|0.02|N|O|1997-08-08|1997-08-04|1997-09-01|COLLECT COD|RAIL|n sentiments. quickly fina| +8270|908971|21490|2|6|11879.58|0.06|0.08|N|O|1997-06-06|1997-07-25|1997-06-09|COLLECT COD|AIR|nto beans. final pinto bean| +8271|641391|16416|1|24|31976.64|0.09|0.03|A|F|1994-06-14|1994-06-17|1994-06-25|NONE|REG AIR|sits. furiously bold instruction| +8271|845860|8377|2|34|61397.88|0.00|0.05|A|F|1994-06-22|1994-06-12|1994-07-14|TAKE BACK RETURN|REG AIR|ges. ironic, ironic | +8296|269284|31790|1|9|11279.43|0.06|0.00|N|O|1995-10-03|1995-08-11|1995-10-11|COLLECT COD|TRUCK|ncies after the express ide| +8296|843843|31392|2|43|76832.40|0.00|0.07|N|O|1995-09-26|1995-07-25|1995-10-16|TAKE BACK RETURN|SHIP| deposits; even, even reques| +8297|950378|379|1|8|11426.64|0.06|0.08|R|F|1995-05-23|1995-04-16|1995-05-24|COLLECT COD|FOB|ltipliers sublate quickly care| +8297|990998|40999|2|7|14622.65|0.09|0.08|N|O|1995-06-24|1995-04-19|1995-07-07|COLLECT COD|FOB|usly ironic deposits. carefully | +8297|695832|45833|3|10|18278.00|0.03|0.02|N|O|1995-06-28|1995-06-01|1995-07-17|NONE|SHIP|ly alongside of the fina| +8297|846953|9470|4|26|49397.66|0.10|0.06|N|F|1995-06-12|1995-05-22|1995-07-01|COLLECT COD|SHIP|dolites are carefully blithely| +8297|725264|25265|5|29|37387.67|0.01|0.03|A|F|1995-05-21|1995-05-12|1995-05-30|COLLECT COD|REG AIR|ironic theodolites along the frays bo| +8298|787925|37926|1|38|76489.82|0.09|0.00|A|F|1992-07-21|1992-08-30|1992-08-05|TAKE BACK RETURN|REG AIR|nag slyly. fluffily bold deposits| +8298|640992|16017|2|10|19329.60|0.07|0.00|R|F|1992-07-15|1992-07-12|1992-08-01|NONE|RAIL|kages wake furiously after the slyly | +8298|149431|49432|3|49|72541.07|0.10|0.07|A|F|1992-08-09|1992-08-01|1992-09-07|COLLECT COD|MAIL|nts are furiously regular requests. bl| +8298|473670|11198|4|29|47665.85|0.03|0.03|A|F|1992-08-15|1992-08-16|1992-08-18|DELIVER IN PERSON|FOB|oxes are blithely ironic asym| +8299|547199|22220|1|19|23677.23|0.08|0.03|A|F|1992-07-19|1992-06-12|1992-07-28|NONE|MAIL|he accounts cajole ideas. carefully fin| +8299|766580|16581|2|17|27991.35|0.05|0.01|A|F|1992-06-09|1992-06-30|1992-07-09|DELIVER IN PERSON|REG AIR|he carefully final | +8300|890000|27552|1|28|27718.88|0.05|0.06|N|O|1998-04-05|1998-05-09|1998-05-04|DELIVER IN PERSON|MAIL|es are boldly blithely final ideas. bold| +8300|222880|10393|2|16|28845.92|0.05|0.07|N|O|1998-05-18|1998-05-13|1998-05-29|NONE|MAIL|as are slyly according to the regular | +8301|357397|44919|1|2|2908.76|0.09|0.07|A|F|1995-01-18|1995-03-09|1995-02-10|COLLECT COD|MAIL|ual dependencies. carefully un| +8301|768515|18516|2|30|47504.40|0.03|0.05|R|F|1995-03-28|1995-03-28|1995-04-27|NONE|AIR| haggle according to the | +8301|425752|25753|3|15|25165.95|0.02|0.04|A|F|1995-01-31|1995-04-03|1995-02-03|TAKE BACK RETURN|REG AIR|fully special decoys besides the bl| +8301|598363|35897|4|20|29226.80|0.01|0.07|R|F|1995-02-26|1995-02-07|1995-03-15|DELIVER IN PERSON|RAIL| haggle slyly. blit| +8301|678305|3332|5|11|14115.97|0.07|0.02|R|F|1995-02-07|1995-02-16|1995-02-14|DELIVER IN PERSON|SHIP| slyly pending dependencies nag| +8301|269403|31909|6|44|60385.16|0.10|0.03|R|F|1995-01-28|1995-03-10|1995-01-30|TAKE BACK RETURN|TRUCK|ronic packages about the | +8301|842800|17833|7|45|78424.20|0.04|0.05|A|F|1995-04-03|1995-03-22|1995-04-25|NONE|SHIP|pinto beans. fin| +8302|925257|294|1|4|5128.84|0.04|0.00|N|O|1996-11-26|1996-09-23|1996-12-20|TAKE BACK RETURN|TRUCK| regular foxes. fluffily iron| +8302|789001|39002|2|10|10899.70|0.07|0.05|N|O|1996-08-09|1996-09-25|1996-08-14|NONE|TRUCK|ully at the bold, ironic packages. | +8302|732874|7903|3|22|41950.48|0.00|0.00|N|O|1996-10-06|1996-10-23|1996-10-18|NONE|TRUCK|s haggle quickly final a| +8303|828736|28737|1|38|63258.22|0.08|0.02|A|F|1993-09-27|1993-08-19|1993-10-21|COLLECT COD|FOB|the slyly ironic platelets us| +8328|464911|2439|1|35|65656.15|0.03|0.06|R|F|1993-02-10|1992-12-27|1993-02-22|NONE|TRUCK|packages about the even, regular| +8328|751306|1307|2|2|2714.54|0.08|0.06|A|F|1993-02-16|1993-01-20|1993-02-22|TAKE BACK RETURN|SHIP| ironic packages sleep quickly quic| +8328|185762|10769|3|10|18477.60|0.07|0.01|A|F|1993-01-15|1992-12-22|1993-01-31|TAKE BACK RETURN|FOB|lar, final instructions x-ray | +8328|92799|30303|4|31|55545.49|0.10|0.02|R|F|1992-12-05|1993-02-20|1992-12-30|DELIVER IN PERSON|AIR|nt slyly silent excuse| +8329|190619|40620|1|39|66674.79|0.02|0.01|R|F|1992-12-13|1992-10-11|1993-01-07|TAKE BACK RETURN|REG AIR| snooze across| +8330|126274|13781|1|20|26005.40|0.07|0.07|A|F|1993-12-08|1993-10-29|1993-12-15|TAKE BACK RETURN|MAIL| slyly slow deposits. instructions wake. s| +8330|271888|21889|2|49|91133.63|0.01|0.01|A|F|1993-11-26|1993-12-09|1993-12-10|COLLECT COD|FOB|yly slyly final deposit| +8330|614261|14262|3|45|52885.35|0.04|0.03|R|F|1993-12-12|1993-11-24|1993-12-15|TAKE BACK RETURN|AIR| brave requests wak| +8330|878856|3891|4|23|42200.63|0.04|0.04|R|F|1993-10-23|1993-10-31|1993-11-13|TAKE BACK RETURN|TRUCK| packages. furious| +8330|918204|30723|5|33|40331.28|0.10|0.00|A|F|1993-12-11|1993-11-15|1993-12-24|NONE|TRUCK|lyly carefully regular deposits| +8331|540291|27822|1|8|10650.16|0.08|0.04|N|O|1998-06-28|1998-06-11|1998-07-25|DELIVER IN PERSON|SHIP|lly express dep| +8331|669811|32325|2|26|46300.28|0.00|0.08|N|O|1998-07-27|1998-07-03|1998-08-20|COLLECT COD|SHIP|blithely along the unusual asymptotes. qu| +8331|510057|47588|3|21|22407.63|0.03|0.08|N|O|1998-07-08|1998-07-04|1998-07-29|TAKE BACK RETURN|REG AIR|s the furiously final d| +8332|606754|19267|1|36|59785.92|0.08|0.00|N|O|1996-08-24|1996-09-02|1996-09-15|DELIVER IN PERSON|SHIP| asymptotes haggle after the bol| +8332|711890|11891|2|44|83681.84|0.10|0.08|N|O|1996-09-17|1996-09-24|1996-10-13|DELIVER IN PERSON|FOB|y regular pack| +8332|725381|12924|3|43|60473.05|0.03|0.07|N|O|1996-07-26|1996-10-01|1996-08-18|COLLECT COD|TRUCK|counts nag speci| +8332|475193|212|4|2|2336.34|0.01|0.04|N|O|1996-09-02|1996-10-16|1996-09-19|TAKE BACK RETURN|MAIL|ronic dolphins. speci| +8333|872083|22084|1|20|21100.80|0.05|0.03|N|O|1995-07-03|1995-04-19|1995-07-28|TAKE BACK RETURN|REG AIR| bold, special instructions. unusual depo| +8333|94260|6762|2|17|21322.42|0.03|0.05|A|F|1995-06-02|1995-04-24|1995-06-14|DELIVER IN PERSON|MAIL|ost even, regular dependencies. c| +8333|213408|921|3|37|48891.43|0.00|0.06|R|F|1995-04-18|1995-04-24|1995-05-09|COLLECT COD|FOB|nding instructions. unusual pack| +8333|735193|10222|4|39|47898.24|0.03|0.01|R|F|1995-04-23|1995-05-02|1995-05-09|DELIVER IN PERSON|TRUCK|ffily unusual deposits| +8334|270879|45890|1|40|73994.40|0.01|0.01|N|O|1998-01-08|1997-11-21|1998-01-19|NONE|MAIL|ests haggle blith| +8334|661664|24178|2|42|68276.46|0.07|0.01|N|O|1998-01-07|1997-12-17|1998-01-15|NONE|MAIL| instructio| +8334|585950|35951|3|8|16287.44|0.02|0.00|N|O|1998-01-08|1997-10-24|1998-01-20|TAKE BACK RETURN|MAIL|ly ironic theodolites s| +8334|52666|15168|4|21|33991.86|0.08|0.06|N|O|1997-09-29|1997-11-23|1997-10-06|DELIVER IN PERSON|TRUCK|against the special accounts integrat| +8334|151477|13981|5|2|3056.94|0.07|0.04|N|O|1997-10-08|1997-10-25|1997-10-10|NONE|RAIL|lithely express, ironic patterns| +8334|869929|19930|6|46|87348.48|0.07|0.04|N|O|1997-10-26|1997-12-18|1997-11-25|COLLECT COD|FOB|ing theodolites are slyly blithely r| +8334|893256|30808|7|43|53716.03|0.06|0.04|N|O|1998-01-02|1997-11-28|1998-01-19|NONE|AIR|y regular requests upon the ironic, fin| +8335|938209|728|1|38|47392.08|0.01|0.04|N|O|1998-11-14|1998-09-10|1998-12-01|TAKE BACK RETURN|AIR|uriously regular pains boost quick| +8335|472090|22091|2|15|15931.05|0.09|0.07|N|O|1998-10-08|1998-09-07|1998-10-25|COLLECT COD|AIR|ons use fluffi| +8335|401479|39004|3|47|64881.15|0.02|0.06|N|O|1998-09-20|1998-09-16|1998-09-24|DELIVER IN PERSON|SHIP|nag around the| +8335|654798|17312|4|5|8763.80|0.02|0.04|N|O|1998-08-22|1998-10-18|1998-09-02|DELIVER IN PERSON|TRUCK|ins; quickly final req| +8335|176986|1993|5|23|47448.54|0.01|0.04|N|O|1998-09-24|1998-09-12|1998-10-04|NONE|SHIP| about the furiously ironic ideas cajole| +8360|512714|12715|1|10|17266.90|0.04|0.02|R|F|1995-01-08|1994-12-28|1995-01-26|TAKE BACK RETURN|SHIP|y. carefully unusual dolphins a| +8360|172713|10223|2|8|14285.68|0.02|0.07|R|F|1995-03-18|1994-12-28|1995-04-09|DELIVER IN PERSON|AIR|pecial requests cajole blithely even pa| +8360|772513|22514|3|21|33295.08|0.04|0.06|R|F|1995-01-08|1995-01-07|1995-01-22|TAKE BACK RETURN|AIR|mong the carefully sile| +8361|152304|39814|1|4|5425.20|0.07|0.01|N|O|1997-04-26|1997-02-20|1997-05-08|COLLECT COD|AIR|ecial platelets against the blithely iron| +8361|769209|19210|2|16|20450.72|0.00|0.03|N|O|1997-03-11|1997-02-25|1997-03-13|DELIVER IN PERSON|SHIP|ests cajole slyly across the furious| +8361|85797|48299|3|25|44569.75|0.05|0.08|N|O|1997-03-25|1997-03-05|1997-03-31|DELIVER IN PERSON|SHIP|s wake slyly after the blit| +8361|988188|38189|4|48|61254.72|0.07|0.08|N|O|1997-01-20|1997-02-15|1997-01-21|NONE|TRUCK| ironic, final platelets. r| +8362|298375|10881|1|31|42574.16|0.00|0.04|N|O|1996-01-19|1996-02-11|1996-01-24|COLLECT COD|TRUCK|odolites sleep blithely even t| +8362|787067|37068|2|12|13848.36|0.10|0.08|N|O|1996-03-03|1996-03-19|1996-03-05|COLLECT COD|TRUCK|should have to detect requests. furiously e| +8363|70954|8458|1|28|53898.60|0.05|0.00|R|F|1992-11-10|1992-08-27|1992-11-11|TAKE BACK RETURN|RAIL|inal foxes wake slyly about the slyly clos| +8363|511304|11305|2|3|3945.84|0.10|0.06|A|F|1992-10-17|1992-08-26|1992-10-18|NONE|TRUCK|thely final accounts boost furiously idle | +8363|477198|2217|3|47|55232.99|0.09|0.02|R|F|1992-09-20|1992-10-12|1992-10-17|DELIVER IN PERSON|RAIL|unts are permanently above the slyly spec| +8363|256703|6704|4|18|29874.42|0.00|0.00|A|F|1992-11-06|1992-08-23|1992-11-13|NONE|TRUCK|ions affix slyly. express packages| +8363|401502|14011|5|14|19648.72|0.06|0.02|R|F|1992-11-06|1992-10-19|1992-11-11|TAKE BACK RETURN|RAIL| ironic, pending i| +8363|27834|27835|6|34|59902.22|0.08|0.00|R|F|1992-10-07|1992-09-27|1992-10-19|TAKE BACK RETURN|MAIL|ording to the blithely regu| +8364|770898|20899|1|38|74816.68|0.06|0.04|N|O|1995-12-01|1995-10-22|1995-12-07|COLLECT COD|AIR| fluffily exp| +8364|472978|47997|2|26|50724.70|0.07|0.00|N|O|1995-11-13|1995-12-06|1995-11-16|NONE|MAIL|doze furiousl| +8364|330318|30319|3|11|14831.30|0.03|0.06|N|O|1995-12-28|1995-10-25|1996-01-13|NONE|RAIL| requests. blithely final accounts hag| +8364|643370|43371|4|45|59100.30|0.08|0.05|N|O|1995-10-16|1995-11-10|1995-11-01|TAKE BACK RETURN|FOB|c packages. evenly iron| +8364|107100|44607|5|47|52033.70|0.08|0.03|N|O|1995-12-26|1995-11-12|1996-01-10|NONE|SHIP|lyly bravely si| +8365|255431|17937|1|9|12477.78|0.02|0.04|A|F|1994-05-22|1994-04-03|1994-05-26|TAKE BACK RETURN|TRUCK|ickly regular depo| +8365|13365|13366|2|46|58804.56|0.07|0.04|A|F|1994-03-27|1994-03-02|1994-04-10|COLLECT COD|RAIL|osits was? furiously pending excuses poa| +8365|614263|14264|3|10|11772.30|0.03|0.05|R|F|1994-02-22|1994-04-19|1994-03-23|DELIVER IN PERSON|REG AIR|lites. slyly regular packag| +8365|901466|1467|4|18|26413.56|0.03|0.08|A|F|1994-02-10|1994-04-03|1994-03-03|COLLECT COD|SHIP|ironic theodolites haggle s| +8365|930874|43393|5|47|89527.01|0.02|0.04|R|F|1994-03-15|1994-04-25|1994-04-08|DELIVER IN PERSON|RAIL|efully express theodolites engage. f| +8366|704840|42383|1|46|84861.26|0.05|0.05|A|F|1992-10-15|1992-09-27|1992-11-05|COLLECT COD|MAIL|n pinto bean| +8367|200653|654|1|35|54377.40|0.06|0.03|N|O|1995-10-02|1995-09-18|1995-10-24|TAKE BACK RETURN|SHIP|the express, careful asymp| +8367|370775|20776|2|17|31377.92|0.03|0.00|N|O|1995-08-31|1995-09-19|1995-09-23|DELIVER IN PERSON|TRUCK|. fluffily even decoys doubt furiously bli| +8367|604209|29234|3|9|10018.53|0.09|0.01|N|O|1995-11-16|1995-09-11|1995-11-17|NONE|REG AIR|ly final deposits. carefully regular dep| +8367|925857|38376|4|8|15062.48|0.09|0.03|N|O|1995-10-07|1995-10-14|1995-10-12|TAKE BACK RETURN|RAIL|l accounts above the finally regular| +8367|870617|33135|5|17|26988.69|0.09|0.00|N|O|1995-09-08|1995-09-02|1995-10-05|COLLECT COD|TRUCK|lets haggle careful| +8367|450048|12558|6|23|22954.46|0.10|0.02|N|O|1995-10-26|1995-08-24|1995-11-15|NONE|FOB|nal accounts affix blithely. | +8367|949995|49996|7|25|51123.75|0.03|0.07|N|O|1995-09-02|1995-09-05|1995-09-10|TAKE BACK RETURN|MAIL| excuses. furiously final requests boost bl| +8392|559898|9899|1|16|31325.92|0.00|0.07|N|F|1995-06-13|1995-07-21|1995-06-22|NONE|MAIL|uriously quickly special re| +8392|201484|38997|2|49|67888.03|0.01|0.03|N|F|1995-06-16|1995-08-07|1995-06-19|COLLECT COD|SHIP|eposits ar| +8392|330388|30389|3|33|46806.21|0.03|0.02|N|O|1995-08-22|1995-07-05|1995-09-05|COLLECT COD|TRUCK|ic platelets. daring instructions | +8392|821559|21560|4|33|48856.83|0.00|0.05|N|O|1995-07-05|1995-07-04|1995-07-17|COLLECT COD|REG AIR|lent instructions. foxes across t| +8393|568118|43141|1|27|32024.43|0.03|0.05|A|F|1993-11-19|1994-01-13|1993-11-29|DELIVER IN PERSON|RAIL|the ironic platelets boo| +8393|348234|10741|2|5|6411.10|0.05|0.01|R|F|1994-03-14|1994-01-30|1994-04-04|COLLECT COD|REG AIR|ven packages. even deposits haggle carefull| +8393|757832|7833|3|22|41575.60|0.04|0.08|R|F|1994-03-06|1994-02-04|1994-04-02|COLLECT COD|MAIL|ves? carefully regular accounts engage. fur| +8394|164908|27412|1|17|33539.30|0.03|0.02|N|O|1998-06-14|1998-07-23|1998-07-12|NONE|MAIL|d the carefully even accounts. final| +8394|597070|47071|2|39|45514.95|0.09|0.05|N|O|1998-08-06|1998-07-19|1998-09-03|DELIVER IN PERSON|SHIP|ly. slyly un| +8394|942044|4563|3|13|14118.00|0.10|0.00|N|O|1998-07-30|1998-08-11|1998-08-03|DELIVER IN PERSON|MAIL| boost fluffily ca| +8394|923477|48514|4|6|9002.58|0.07|0.02|N|O|1998-08-22|1998-08-10|1998-09-07|NONE|FOB|ly ironic, regular ins| +8394|869809|7361|5|10|17787.60|0.10|0.01|N|O|1998-08-13|1998-07-27|1998-08-30|DELIVER IN PERSON|RAIL|ously ironic deposits cajole carefully slyl| +8394|868715|18716|6|31|52193.77|0.04|0.05|N|O|1998-08-29|1998-06-24|1998-09-01|NONE|TRUCK|ular ideas. | +8395|976134|13692|1|5|6050.45|0.04|0.07|N|O|1996-08-14|1996-06-16|1996-09-07|NONE|SHIP|y according to the express excuse| +8395|868053|30571|2|7|7147.07|0.09|0.03|N|O|1996-06-02|1996-06-27|1996-06-27|TAKE BACK RETURN|FOB|lly regular pinto beans against t| +8396|945005|20042|1|10|10499.60|0.04|0.08|A|F|1993-03-24|1993-04-04|1993-04-08|COLLECT COD|FOB|uests print furiously fluffily silent p| +8396|688103|25643|2|48|52371.36|0.09|0.04|R|F|1993-04-18|1993-04-08|1993-05-17|DELIVER IN PERSON|REG AIR|tect slyly. regular, regular ideas nag slyl| +8396|944891|32446|3|26|50332.10|0.04|0.07|R|F|1993-02-19|1993-04-22|1993-02-20|DELIVER IN PERSON|MAIL|ickly ironic packages promise careful| +8397|504237|29258|1|39|48407.19|0.10|0.05|N|O|1995-10-27|1995-10-07|1995-10-28|DELIVER IN PERSON|SHIP|old requests haggle. ironi| +8397|703592|28621|2|41|65417.96|0.06|0.05|N|O|1995-08-23|1995-10-22|1995-08-28|COLLECT COD|MAIL|ar requests cajole around the brave, final| +8397|260819|23325|3|6|10678.80|0.05|0.07|N|O|1995-09-20|1995-10-11|1995-10-20|NONE|AIR|sly bold pin| +8397|583444|33445|4|37|56514.54|0.00|0.07|N|O|1995-10-07|1995-10-10|1995-10-26|DELIVER IN PERSON|TRUCK|nal, regula| +8397|933753|21308|5|2|3573.42|0.01|0.04|N|O|1995-11-26|1995-11-14|1995-12-03|TAKE BACK RETURN|MAIL|olites after the fluffily busy | +8397|577774|15308|6|37|68514.75|0.03|0.00|N|O|1995-10-27|1995-09-22|1995-11-08|NONE|REG AIR|counts haggle along the special,| +8397|642448|29985|7|49|68130.09|0.08|0.02|N|O|1995-09-16|1995-09-25|1995-10-10|NONE|MAIL| sleep carefully above the daring, | +8398|613738|1275|1|25|41292.50|0.05|0.04|N|O|1996-09-15|1996-10-18|1996-09-16|DELIVER IN PERSON|REG AIR|asymptotes detect according | +8398|77947|2950|2|24|46198.56|0.09|0.00|N|O|1996-10-20|1996-11-07|1996-10-26|NONE|FOB|usly bold epitaphs-- final platelets s| +8398|44681|44682|3|42|68278.56|0.02|0.00|N|O|1996-11-16|1996-11-05|1996-11-21|TAKE BACK RETURN|SHIP|blithely pending| +8398|942870|30425|4|2|3825.66|0.03|0.03|N|O|1996-10-16|1996-11-04|1996-11-02|DELIVER IN PERSON|MAIL| express dependencies hag| +8398|810563|10564|5|3|4420.56|0.10|0.00|N|O|1996-11-04|1996-10-18|1996-11-12|COLLECT COD|SHIP| the carefully| +8398|126477|13984|6|21|31572.87|0.07|0.08|N|O|1996-09-17|1996-11-20|1996-10-11|TAKE BACK RETURN|MAIL|ag evenly ironi| +8398|685602|48116|7|21|33338.97|0.04|0.02|N|O|1997-01-03|1996-10-14|1997-01-11|TAKE BACK RETURN|REG AIR|arefully final | +8399|898231|23266|1|21|25812.99|0.04|0.06|N|O|1997-04-23|1997-06-12|1997-05-07|COLLECT COD|MAIL| final ideas. even,| +8399|563896|38919|2|48|94073.76|0.01|0.05|N|O|1997-05-03|1997-06-03|1997-05-08|DELIVER IN PERSON|MAIL|y about the carefu| +8399|391396|28918|3|41|60982.58|0.07|0.01|N|O|1997-06-15|1997-05-10|1997-07-01|DELIVER IN PERSON|TRUCK|y unusual packages sublate furiousl| +8399|186167|36168|4|3|3759.48|0.02|0.08|N|O|1997-07-04|1997-05-22|1997-07-07|NONE|REG AIR|ven requests cajole.| +8399|893765|43766|5|18|31656.96|0.03|0.00|N|O|1997-05-09|1997-04-30|1997-05-18|DELIVER IN PERSON|SHIP|kly about the blithely express | +8399|508036|8037|6|30|31320.30|0.05|0.06|N|O|1997-05-07|1997-05-26|1997-06-04|COLLECT COD|AIR| carefully final p| +8399|560880|10881|7|14|27172.04|0.04|0.08|N|O|1997-06-28|1997-05-07|1997-07-09|TAKE BACK RETURN|SHIP|ests shall have to lose quickly| +8424|695651|20678|1|21|34579.02|0.03|0.03|N|O|1997-04-27|1997-05-23|1997-05-22|COLLECT COD|FOB|g packages| +8424|797353|22384|2|37|53661.84|0.07|0.08|N|O|1997-06-07|1997-04-19|1997-06-26|NONE|REG AIR|ly after the carefully final accou| +8424|105349|42856|3|18|24378.12|0.06|0.04|N|O|1997-03-24|1997-05-28|1997-04-22|NONE|MAIL|lly bold asymptot| +8424|594095|31629|4|50|59453.50|0.00|0.03|N|O|1997-06-02|1997-04-30|1997-06-13|COLLECT COD|RAIL|symptotes. fina| +8425|885410|22962|1|14|19535.18|0.04|0.08|R|F|1993-06-28|1993-05-09|1993-07-11|TAKE BACK RETURN|AIR|y according to the ironic, | +8425|84690|22194|2|25|41867.25|0.00|0.04|R|F|1993-06-15|1993-06-29|1993-06-24|DELIVER IN PERSON|SHIP|lyly regular f| +8425|369318|31826|3|29|40231.70|0.05|0.01|R|F|1993-05-27|1993-06-19|1993-06-03|TAKE BACK RETURN|REG AIR|odolites cajole | +8425|121439|33942|4|12|17525.16|0.00|0.05|A|F|1993-05-20|1993-05-31|1993-06-15|NONE|FOB| carefully f| +8425|23938|11439|5|13|24205.09|0.07|0.02|R|F|1993-07-25|1993-06-14|1993-08-17|TAKE BACK RETURN|MAIL|ly unusual co| +8426|634466|34467|1|45|63019.35|0.10|0.01|N|O|1998-03-22|1998-02-15|1998-04-12|DELIVER IN PERSON|AIR|lithely final theodolites integra| +8426|455900|30919|2|41|76091.08|0.06|0.08|N|O|1998-04-16|1998-03-11|1998-04-18|NONE|FOB|deposits boost. d| +8426|304212|4213|3|16|19459.20|0.08|0.03|N|O|1998-03-20|1998-02-13|1998-04-03|TAKE BACK RETURN|MAIL|nic packages. quickly ironic theodolites | +8426|889627|39628|4|21|33948.18|0.08|0.04|N|O|1998-02-23|1998-02-26|1998-03-22|COLLECT COD|MAIL|- regular requests integrate slyl| +8426|953668|3669|5|39|67143.18|0.07|0.01|N|O|1998-02-03|1998-01-30|1998-02-16|TAKE BACK RETURN|AIR|etimes even pin| +8426|297774|22785|6|49|86816.24|0.01|0.03|N|O|1998-04-15|1998-03-01|1998-05-13|TAKE BACK RETURN|FOB|nusual pinto beans sleep quickly furio| +8427|600625|38162|1|49|74753.91|0.03|0.01|A|F|1994-02-22|1994-03-18|1994-03-23|DELIVER IN PERSON|TRUCK|along the dependencies. platele| +8427|702830|40373|2|11|20160.80|0.03|0.03|A|F|1994-01-17|1994-03-18|1994-01-27|NONE|SHIP|uickly pending deposits sleep carefully | +8427|454625|42153|3|15|23694.00|0.01|0.02|A|F|1994-04-19|1994-03-01|1994-05-10|TAKE BACK RETURN|FOB|ld foxes kindle daringly of the| +8428|324659|12178|1|7|11785.48|0.00|0.06|N|O|1997-01-07|1997-01-10|1997-01-23|COLLECT COD|FOB|eans. quickly| +8428|536971|24502|2|25|50198.75|0.06|0.00|N|O|1996-12-11|1996-11-24|1996-12-18|DELIVER IN PERSON|FOB|uctions. regular exc| +8428|854846|4847|3|3|5402.40|0.03|0.05|N|O|1997-02-13|1997-01-08|1997-03-09|TAKE BACK RETURN|FOB|nts. ironic attainments wake quickly agai| +8428|385557|23079|4|27|44348.58|0.05|0.02|N|O|1996-11-04|1996-12-07|1996-11-19|NONE|REG AIR|slyly accounts? carefully fin| +8428|41250|16251|5|7|8338.75|0.10|0.05|N|O|1996-11-13|1996-11-24|1996-11-27|COLLECT COD|RAIL|kly special deposits. furiously | +8428|279105|4116|6|23|24934.07|0.05|0.05|N|O|1996-11-16|1997-01-13|1996-11-28|COLLECT COD|TRUCK| quickly f| +8428|908983|21502|7|6|11951.64|0.09|0.07|N|O|1997-01-26|1996-11-24|1997-02-08|COLLECT COD|MAIL|sleep finally| +8429|273972|36478|1|19|36973.24|0.00|0.07|A|F|1992-04-10|1992-02-26|1992-04-22|TAKE BACK RETURN|RAIL|ithely silent ideas. deposits ca| +8429|634305|21842|2|2|2478.54|0.00|0.03|R|F|1992-02-19|1992-02-23|1992-03-10|DELIVER IN PERSON|TRUCK|ly alongside of the ir| +8429|759512|9513|3|2|3142.96|0.04|0.01|A|F|1992-02-12|1992-04-02|1992-03-12|NONE|MAIL|nal accounts wake accor| +8429|116215|16216|4|29|35705.09|0.04|0.04|A|F|1992-03-29|1992-03-07|1992-04-26|TAKE BACK RETURN|FOB|egular ideas. | +8430|544506|32037|1|37|57367.76|0.00|0.08|N|O|1997-02-26|1997-02-15|1997-03-24|TAKE BACK RETURN|FOB|tes unwind befo| +8430|507179|32200|2|13|15419.95|0.03|0.07|N|O|1997-02-21|1997-01-06|1997-03-06|DELIVER IN PERSON|TRUCK|leep furiou| +8430|157386|44896|3|26|37527.88|0.09|0.04|N|O|1997-02-19|1997-01-18|1997-03-11|COLLECT COD|SHIP| quiet accounts wake carefully blithely | +8430|181108|31109|4|43|51131.30|0.02|0.05|N|O|1997-03-21|1997-02-06|1997-04-19|COLLECT COD|MAIL| regular pint| +8430|874492|49527|5|36|52792.20|0.04|0.00|N|O|1997-01-15|1997-01-12|1997-02-03|DELIVER IN PERSON|RAIL|refully. carefully| +8430|575560|583|6|39|63786.06|0.07|0.02|N|O|1996-12-26|1997-02-02|1997-01-17|NONE|AIR|gainst the quickly ironic theodol| +8430|425706|25707|7|49|79952.32|0.08|0.08|N|O|1996-12-09|1997-01-25|1997-01-03|COLLECT COD|MAIL|ss the regu| +8431|838243|25792|1|1|1181.20|0.00|0.04|N|O|1996-03-15|1996-01-27|1996-03-20|DELIVER IN PERSON|FOB|ideas haggle alongside of the flu| +8431|333708|8721|2|36|62700.84|0.06|0.07|N|O|1996-02-12|1996-01-09|1996-03-06|TAKE BACK RETURN|RAIL|ly final requests; fluffily bold requests a| +8431|613695|13696|3|37|59520.42|0.10|0.03|N|O|1996-02-03|1996-01-23|1996-03-03|COLLECT COD|RAIL| the carefully| +8431|366037|16038|4|48|52944.96|0.02|0.07|N|O|1996-02-02|1996-01-28|1996-02-21|COLLECT COD|AIR| blithely furious requests integr| +8431|972858|47897|5|45|86886.45|0.06|0.07|N|O|1996-03-24|1996-02-20|1996-04-22|NONE|REG AIR| slyly idle| +8431|815947|3496|6|6|11177.40|0.06|0.02|N|O|1996-02-01|1996-02-20|1996-02-23|TAKE BACK RETURN|FOB|slyly slyly ir| +8431|618613|18614|7|35|53605.30|0.09|0.03|N|O|1996-01-25|1996-01-26|1996-02-18|TAKE BACK RETURN|AIR|es across the q| +8456|20260|7761|1|7|8261.82|0.06|0.02|N|O|1996-11-15|1996-11-04|1996-12-07|NONE|AIR|ual requests | +8456|501136|38667|2|32|36387.52|0.02|0.06|N|O|1996-11-29|1996-10-12|1996-12-03|DELIVER IN PERSON|MAIL|ual accounts would affix slyly speci| +8456|578807|28808|3|29|54687.62|0.08|0.02|N|O|1996-10-10|1996-11-02|1996-10-23|DELIVER IN PERSON|MAIL|gular requests wake blithely a| +8456|992655|30213|4|25|43690.25|0.04|0.01|N|O|1996-09-01|1996-09-23|1996-09-27|TAKE BACK RETURN|FOB|t deposits. special instructions ab| +8456|552432|2433|5|10|14844.10|0.10|0.01|N|O|1996-09-18|1996-10-09|1996-10-03|COLLECT COD|FOB| cajole furiously against the blit| +8457|836584|24133|1|28|42575.12|0.10|0.02|R|F|1994-06-25|1994-07-15|1994-07-09|DELIVER IN PERSON|FOB|oss the blithely bold| +8457|460101|10102|2|48|50931.84|0.07|0.06|A|F|1994-09-14|1994-08-26|1994-10-02|COLLECT COD|AIR|ial ideas cajole along the bli| +8457|912761|316|3|8|14189.76|0.01|0.01|R|F|1994-09-28|1994-08-12|1994-10-24|NONE|MAIL|inments. even packages sl| +8457|766645|4191|4|10|17116.10|0.01|0.08|R|F|1994-10-04|1994-08-27|1994-10-07|COLLECT COD|TRUCK| of the final escapades. even, ironic| +8457|986663|36664|5|1|1749.62|0.02|0.06|R|F|1994-10-06|1994-08-17|1994-10-31|COLLECT COD|REG AIR| requests are slyly according to| +8458|666657|29171|1|26|42214.12|0.00|0.02|A|F|1992-05-08|1992-03-31|1992-05-17|TAKE BACK RETURN|RAIL|requests. bli| +8458|490874|3384|2|36|67134.60|0.07|0.02|R|F|1992-02-17|1992-03-18|1992-03-14|TAKE BACK RETURN|MAIL|osits. pending asymptotes | +8458|108716|46223|3|12|20696.52|0.00|0.02|R|F|1992-03-26|1992-04-13|1992-04-08|TAKE BACK RETURN|REG AIR|lyly. ruthless i| +8458|178455|3462|4|31|47536.95|0.03|0.08|R|F|1992-03-31|1992-03-05|1992-04-24|DELIVER IN PERSON|RAIL|usly even accounts al| +8458|286954|24470|5|46|89283.24|0.09|0.03|A|F|1992-02-20|1992-03-25|1992-02-25|TAKE BACK RETURN|TRUCK| slyly ironic platelets. even instru| +8458|826569|26570|6|47|70289.44|0.04|0.05|A|F|1992-04-04|1992-04-07|1992-04-20|NONE|RAIL|ly regular accounts wake sl| +8459|299513|12019|1|34|51425.00|0.03|0.03|N|O|1996-01-18|1996-01-15|1996-02-17|TAKE BACK RETURN|AIR|slyly ironic platelets sleep fluffily si| +8459|900352|12871|2|6|8113.86|0.04|0.06|N|O|1996-02-07|1996-01-11|1996-02-24|NONE|MAIL|quickly idly pend| +8459|203898|16403|3|39|70273.32|0.07|0.02|N|O|1996-03-04|1995-12-24|1996-03-17|TAKE BACK RETURN|REG AIR|ely ironic instructions. fluffi| +8460|786111|23657|1|12|14364.96|0.06|0.00|N|O|1998-04-20|1998-04-30|1998-05-02|COLLECT COD|SHIP|y final accounts around the fluffily regula| +8460|162575|12576|2|28|45851.96|0.09|0.00|N|O|1998-06-07|1998-05-10|1998-06-10|NONE|FOB|telets across the foxes boost finally car| +8460|384158|46666|3|3|3726.42|0.00|0.04|N|O|1998-04-23|1998-05-05|1998-05-16|DELIVER IN PERSON|MAIL|lites across the silently express packages | +8460|532918|32919|4|27|52674.03|0.07|0.04|N|O|1998-02-23|1998-05-02|1998-02-28|TAKE BACK RETURN|SHIP|ckly bold dep| +8460|752575|40121|5|16|26040.64|0.05|0.03|N|O|1998-02-16|1998-04-18|1998-03-15|DELIVER IN PERSON|MAIL|ests? slyly silent dolphins wake slyly | +8460|512125|49656|6|36|40935.60|0.09|0.05|N|O|1998-05-24|1998-04-12|1998-06-02|TAKE BACK RETURN|FOB|losely. foxes| +8460|278609|41115|7|18|28576.62|0.03|0.04|N|O|1998-04-25|1998-05-12|1998-05-02|COLLECT COD|SHIP|haggle alongside of the furiously s| +8461|569204|31716|1|48|61112.64|0.07|0.08|R|F|1992-04-21|1992-03-23|1992-05-17|DELIVER IN PERSON|REG AIR| against the blithely special depos| +8461|606926|19439|2|8|14663.12|0.06|0.02|R|F|1992-05-30|1992-03-13|1992-06-25|TAKE BACK RETURN|AIR|ully final theodolites. f| +8461|602974|27999|3|39|73200.66|0.02|0.05|A|F|1992-03-14|1992-05-02|1992-03-24|TAKE BACK RETURN|SHIP|ons; blithely pending deposits are qu| +8461|178935|41439|4|29|58403.97|0.04|0.03|R|F|1992-05-25|1992-03-30|1992-06-20|NONE|AIR| across the final, regular accou| +8461|348028|10535|5|9|9684.09|0.09|0.02|R|F|1992-03-16|1992-04-03|1992-03-30|TAKE BACK RETURN|RAIL|y alongside of the fluffily idle exc| +8461|301441|26454|6|45|64909.35|0.04|0.06|A|F|1992-02-13|1992-03-21|1992-02-24|NONE|MAIL| haggle. carefully | +8462|890242|27794|1|22|27108.40|0.03|0.08|N|O|1998-03-30|1998-05-09|1998-04-08|COLLECT COD|FOB| silent foxes impress across the package| +8462|294447|6953|2|35|50450.05|0.07|0.07|N|O|1998-03-19|1998-05-29|1998-04-05|NONE|TRUCK|r ideas. ironic packages hagg| +8462|757265|7266|3|5|6611.15|0.10|0.00|N|O|1998-03-23|1998-05-29|1998-03-29|COLLECT COD|AIR|l, ironic theodolites. theodolite| +8462|343613|18626|4|49|81173.40|0.06|0.05|N|O|1998-06-05|1998-04-11|1998-07-05|DELIVER IN PERSON|AIR|lithely ironic pinto beans. carefully st| +8463|707403|44946|1|26|36669.62|0.10|0.07|N|O|1998-01-04|1997-12-14|1998-01-06|COLLECT COD|FOB|believe fluffily around the ironic pain| +8463|312225|24732|2|50|61860.50|0.08|0.00|N|O|1998-02-06|1997-12-14|1998-02-23|COLLECT COD|AIR| carefully p| +8463|550035|37569|3|42|45570.42|0.08|0.02|N|O|1997-11-23|1997-12-29|1997-11-30|TAKE BACK RETURN|SHIP|g instructions cajole busily | +8463|426469|38978|4|28|39072.32|0.01|0.07|N|O|1997-11-23|1997-11-30|1997-12-11|NONE|AIR|uriously pending requests. unusual, unu| +8463|648592|36129|5|35|53919.60|0.00|0.00|N|O|1998-01-16|1997-12-10|1998-01-19|NONE|FOB|according to the unusual deposits slee| +8463|884558|47076|6|14|21595.14|0.02|0.03|N|O|1997-11-06|1997-11-19|1997-11-17|NONE|FOB|yly ironic pinto beans are s| +8488|616322|41347|1|50|61914.50|0.00|0.08|R|F|1993-12-03|1993-09-22|1993-12-11|COLLECT COD|REG AIR| regular excuses ar| +8488|509632|34653|2|16|26265.76|0.00|0.07|R|F|1993-11-16|1993-11-02|1993-11-23|DELIVER IN PERSON|FOB| the furiously regular requests.| +8488|372354|34862|3|28|39937.52|0.01|0.02|R|F|1993-09-20|1993-10-07|1993-10-19|TAKE BACK RETURN|AIR|tes. ironic, unusual dependencies| +8489|479630|29631|1|24|38630.64|0.04|0.06|A|F|1994-06-20|1994-05-25|1994-07-04|TAKE BACK RETURN|FOB|w furiously. regular requests nag quick| +8489|139144|39145|2|9|10648.26|0.01|0.01|A|F|1994-05-01|1994-04-07|1994-05-02|TAKE BACK RETURN|SHIP|e silent, even instructions. slyly even p| +8490|304101|4102|1|11|12155.99|0.03|0.05|N|O|1996-06-25|1996-05-07|1996-07-02|DELIVER IN PERSON|SHIP|requests cajole. flu| +8490|8716|21217|2|39|63363.69|0.06|0.04|N|O|1996-03-10|1996-04-24|1996-03-26|COLLECT COD|RAIL|ages haggle furio| +8491|222010|47019|1|2|1864.00|0.07|0.04|N|O|1997-11-04|1997-09-16|1997-11-22|NONE|AIR|ven, ironic pearls haggle furiously expr| +8492|139523|2026|1|31|48438.12|0.07|0.05|N|O|1997-09-22|1997-10-22|1997-10-19|NONE|MAIL| the regular deposits slee| +8492|950806|807|2|48|89124.48|0.00|0.07|N|O|1997-11-07|1997-11-21|1997-12-03|NONE|SHIP| wake busily. carefully final packa| +8492|193786|18793|3|42|78950.76|0.00|0.03|N|O|1997-09-16|1997-11-20|1997-10-12|NONE|REG AIR|ironic accounts. even packages wake.| +8493|355271|17779|1|4|5305.04|0.04|0.07|N|O|1997-01-20|1997-02-24|1997-02-09|TAKE BACK RETURN|FOB|fluffily. slyly ir| +8494|813177|13178|1|10|10901.30|0.03|0.04|R|F|1993-01-21|1993-03-20|1993-02-09|DELIVER IN PERSON|SHIP|beans wake carefully unusual foxes. sly| +8494|55676|5677|2|3|4895.01|0.02|0.06|R|F|1993-03-19|1993-04-03|1993-04-06|NONE|TRUCK|ets wake accounts. foxes do| +8494|738929|26472|3|32|62972.48|0.02|0.01|R|F|1993-01-21|1993-04-04|1993-02-11|TAKE BACK RETURN|REG AIR|luffily bold pa| +8495|54373|41877|1|6|7964.22|0.03|0.03|R|F|1992-03-05|1992-05-04|1992-03-10|DELIVER IN PERSON|RAIL|p carefull| +8520|268521|43532|1|16|23832.16|0.04|0.04|R|F|1993-05-17|1993-04-22|1993-06-16|DELIVER IN PERSON|MAIL|e slyly. ideas are fluffily r| +8520|18537|31038|2|27|39299.31|0.10|0.02|R|F|1993-02-12|1993-04-22|1993-03-04|NONE|SHIP|ding dependencies cajole | +8520|544610|7121|3|37|61219.83|0.09|0.00|R|F|1993-05-01|1993-03-29|1993-05-15|TAKE BACK RETURN|AIR|ng pinto beans haggle. slyly regular | +8520|257203|7204|4|48|55689.12|0.06|0.07|R|F|1993-05-07|1993-04-03|1993-05-12|COLLECT COD|RAIL|y about the final foxes. carefu| +8521|526449|26450|1|30|44262.60|0.07|0.05|N|O|1996-12-30|1997-02-21|1997-01-03|DELIVER IN PERSON|REG AIR|s. furiously final pinto beans a| +8521|13524|38525|2|28|40250.56|0.03|0.06|N|O|1997-03-24|1997-02-12|1997-04-04|NONE|REG AIR|-ray doggedly | +8521|296696|21707|3|13|22004.84|0.10|0.08|N|O|1997-03-14|1997-03-12|1997-03-28|DELIVER IN PERSON|TRUCK|ly express asymptotes hagg| +8522|433240|45749|1|26|30503.72|0.00|0.05|A|F|1993-12-10|1993-11-19|1993-12-31|NONE|TRUCK|deas are bli| +8522|455796|5797|2|50|87588.50|0.07|0.02|A|F|1994-01-31|1993-12-25|1994-02-19|TAKE BACK RETURN|AIR|carefully along the ironic, regular| +8523|756276|18792|1|25|33306.00|0.08|0.05|N|O|1997-04-26|1997-04-08|1997-05-25|DELIVER IN PERSON|MAIL|, express dependencie| +8523|719653|7196|2|2|3345.24|0.06|0.01|N|O|1997-04-08|1997-03-20|1997-05-04|NONE|SHIP| slyly final theodolites integra| +8524|268912|43923|1|30|56427.00|0.03|0.03|N|O|1995-08-02|1995-08-18|1995-08-07|NONE|AIR|ost among the careful| +8524|596827|34361|2|18|34628.40|0.02|0.02|N|O|1995-10-26|1995-09-23|1995-10-27|NONE|SHIP|old ideas run blithely! furiously | +8524|870141|32659|3|39|43332.90|0.06|0.01|N|O|1995-09-25|1995-10-02|1995-10-11|DELIVER IN PERSON|RAIL|ironic accounts. even dolphins brea| +8524|443062|5571|4|14|14070.56|0.02|0.00|N|O|1995-07-30|1995-08-09|1995-08-12|TAKE BACK RETURN|REG AIR|counts sleep | +8525|890671|3189|1|5|8308.15|0.06|0.03|N|O|1996-11-05|1996-11-29|1996-12-04|DELIVER IN PERSON|MAIL|pecial deposits nod blithely above the reg| +8526|294730|19741|1|45|77612.40|0.00|0.04|N|O|1996-07-09|1996-08-12|1996-07-10|TAKE BACK RETURN|FOB|ely express asympto| +8526|510438|22949|2|50|72420.50|0.04|0.07|N|O|1996-07-13|1996-07-25|1996-07-24|COLLECT COD|AIR|lithely regular pinto beans are. reg| +8526|925410|25411|3|18|25836.66|0.10|0.07|N|O|1996-10-21|1996-08-25|1996-10-22|DELIVER IN PERSON|FOB|le furiously afte| +8526|364150|14151|4|39|47351.46|0.09|0.06|N|O|1996-10-04|1996-08-17|1996-10-27|DELIVER IN PERSON|REG AIR|ecial packages nag alongside of t| +8526|268995|31501|5|17|33387.66|0.02|0.03|N|O|1996-10-17|1996-09-10|1996-11-12|DELIVER IN PERSON|FOB|ffily unusual ideas: regular, iro| +8527|824901|37418|1|50|91293.00|0.06|0.01|N|O|1998-03-23|1998-04-12|1998-04-20|COLLECT COD|FOB|ckages. carefully regular acc| +8552|120374|7881|1|26|36253.62|0.07|0.00|N|O|1997-10-02|1997-09-30|1997-10-13|DELIVER IN PERSON|MAIL|wake carefully. silently iron| +8552|120242|32745|2|29|36604.96|0.09|0.03|N|O|1997-10-19|1997-09-10|1997-11-17|NONE|SHIP|gular asymptotes are. accounts ar| +8553|61039|36042|1|13|13000.39|0.10|0.07|N|O|1996-09-08|1996-09-25|1996-10-03|NONE|SHIP|al orbits. furiously final a| +8553|880984|6019|2|36|70737.84|0.09|0.07|N|O|1996-08-24|1996-09-03|1996-09-17|NONE|TRUCK|ular, unusual theodolite| +8553|688225|739|3|42|50953.98|0.10|0.05|N|O|1996-08-11|1996-09-24|1996-08-20|NONE|REG AIR|e slyly. furiously even asympto| +8553|992066|4586|4|39|45162.78|0.02|0.01|N|O|1996-09-24|1996-10-14|1996-10-14|NONE|FOB|s. slyly pending theodolites t| +8554|304251|41770|1|11|13807.64|0.02|0.02|N|O|1997-07-28|1997-06-29|1997-08-19|NONE|AIR|furiously final accounts. final, regular| +8554|534442|46953|2|23|33957.66|0.10|0.00|N|O|1997-06-27|1997-08-06|1997-07-01|NONE|AIR|jole. regular instructions are. plat| +8554|352034|14542|3|15|16290.30|0.09|0.08|N|O|1997-06-03|1997-08-01|1997-06-19|DELIVER IN PERSON|AIR| express packages sleep| +8554|620270|20271|4|15|17853.60|0.04|0.04|N|O|1997-06-07|1997-07-01|1997-06-21|COLLECT COD|MAIL|ular deposits | +8554|861504|24022|5|19|27843.74|0.00|0.03|N|O|1997-08-09|1997-07-03|1997-08-19|DELIVER IN PERSON|RAIL|ully final foxes nag quickly.| +8554|293316|43317|6|20|26186.00|0.08|0.05|N|O|1997-08-16|1997-08-20|1997-09-15|COLLECT COD|SHIP| fluffy instruction| +8554|750192|25223|7|20|24843.20|0.03|0.08|N|O|1997-06-06|1997-08-17|1997-06-25|COLLECT COD|AIR|ts. unusual, | +8555|460555|35574|1|33|50012.49|0.04|0.04|N|O|1995-08-10|1995-09-18|1995-08-14|NONE|AIR|e about the| +8555|543182|18203|2|43|52681.88|0.06|0.00|N|O|1995-07-14|1995-08-22|1995-08-09|TAKE BACK RETURN|SHIP|ckages. slyly| +8555|243186|43187|3|29|32745.93|0.06|0.08|N|O|1995-08-23|1995-08-11|1995-09-22|TAKE BACK RETURN|MAIL|luffily. blit| +8555|218406|43415|4|36|47678.04|0.04|0.02|N|O|1995-09-30|1995-07-30|1995-10-23|DELIVER IN PERSON|FOB|ronic instructions| +8556|251032|13538|1|17|16711.34|0.03|0.08|R|F|1993-06-30|1993-05-30|1993-07-07|DELIVER IN PERSON|SHIP|lar foxes. furiously final ideas affix care| +8556|89668|27172|2|47|77910.02|0.00|0.02|A|F|1993-07-12|1993-05-13|1993-08-09|NONE|MAIL| regular, ex| +8556|40179|2680|3|17|19025.89|0.00|0.00|R|F|1993-08-06|1993-06-29|1993-08-18|TAKE BACK RETURN|REG AIR|fully along| +8556|276859|39365|4|12|22030.08|0.06|0.06|A|F|1993-07-15|1993-05-17|1993-07-25|NONE|AIR|nic deposits. accounts wake qui| +8556|162545|37552|5|21|33758.34|0.04|0.00|R|F|1993-05-12|1993-06-17|1993-06-08|NONE|SHIP|he slyly bold requests. p| +8556|889437|14472|6|47|67040.33|0.01|0.07|R|F|1993-05-07|1993-06-06|1993-05-26|NONE|FOB|ges haggle.| +8556|766254|16255|7|32|42247.04|0.00|0.03|A|F|1993-04-28|1993-05-20|1993-05-20|NONE|TRUCK|ly according to the qui| +8557|428948|41457|1|37|69446.04|0.04|0.04|N|O|1996-09-04|1996-11-02|1996-09-24|TAKE BACK RETURN|SHIP|p slyly. furiously sile| +8557|319986|19987|2|25|50149.25|0.10|0.07|N|O|1996-12-12|1996-11-10|1996-12-31|DELIVER IN PERSON|FOB|iously at the slyly expr| +8557|995997|8517|3|12|25115.40|0.07|0.03|N|O|1996-09-24|1996-11-08|1996-10-04|NONE|RAIL|jole quickly even w| +8557|721118|33633|4|50|56954.00|0.04|0.06|N|O|1996-12-04|1996-09-24|1996-12-30|NONE|AIR|ully regular requests wake blithely afte| +8557|822646|35163|5|21|32940.60|0.06|0.01|N|O|1996-10-01|1996-09-25|1996-10-31|COLLECT COD|AIR|ptotes wake ca| +8557|206492|6493|6|47|65728.56|0.01|0.06|N|O|1996-10-04|1996-09-28|1996-10-21|NONE|MAIL|sits haggle slyly. even, even theodoli| +8557|494529|32057|7|31|47228.50|0.07|0.00|N|O|1996-12-12|1996-11-09|1996-12-26|DELIVER IN PERSON|REG AIR|ual ideas hinder after | +8558|540690|3201|1|34|58842.78|0.05|0.04|R|F|1993-12-07|1994-01-08|1993-12-08|NONE|RAIL| even pinto beans haggle. p| +8558|368119|5641|2|6|7122.60|0.09|0.07|R|F|1994-01-08|1993-11-25|1994-02-01|COLLECT COD|FOB|inal dependencies along the f| +8558|967568|17569|3|42|68691.84|0.08|0.01|R|F|1994-02-10|1993-12-20|1994-02-25|TAKE BACK RETURN|TRUCK|en pinto bea| +8558|908784|46339|4|48|86051.52|0.04|0.08|A|F|1993-10-21|1993-12-20|1993-11-01|COLLECT COD|MAIL|he regular, unusual accounts.| +8559|400166|37691|1|25|26653.50|0.08|0.00|N|O|1998-07-10|1998-05-13|1998-07-14|TAKE BACK RETURN|SHIP|ckages ought to b| +8559|583928|21462|2|15|30178.50|0.04|0.01|N|O|1998-04-24|1998-05-15|1998-05-11|TAKE BACK RETURN|RAIL| the bravely ironic accounts| +8559|64466|26968|3|25|35761.50|0.07|0.07|N|O|1998-04-14|1998-05-03|1998-04-18|COLLECT COD|FOB|usly unusual instructions about the furio| +8559|475885|13413|4|9|16747.74|0.09|0.02|N|O|1998-06-28|1998-06-19|1998-07-17|DELIVER IN PERSON|SHIP|oxes are fluff| +8559|188807|38808|5|43|81519.40|0.00|0.02|N|O|1998-04-28|1998-05-06|1998-05-23|COLLECT COD|MAIL| sleep. packa| +8559|273341|10857|6|14|18400.62|0.02|0.00|N|O|1998-07-23|1998-05-19|1998-07-24|COLLECT COD|AIR|e packages. final packages breach abov| +8584|896888|21923|1|47|88587.48|0.01|0.06|A|F|1994-11-22|1994-12-16|1994-12-19|NONE|FOB|ing pinto beans boost around the carefully| +8585|486923|36924|1|27|51567.30|0.04|0.06|N|O|1995-10-20|1995-09-08|1995-11-11|NONE|FOB| ironic requests. slyly sly forg| +8585|702356|39899|2|50|67916.00|0.06|0.03|N|O|1995-09-27|1995-10-05|1995-09-28|NONE|TRUCK|deas. carefully regular i| +8585|491412|41413|3|32|44908.48|0.02|0.05|N|O|1995-07-24|1995-09-28|1995-08-05|DELIVER IN PERSON|TRUCK|its are slyly. furiously close instr| +8585|152790|15294|4|27|49755.33|0.03|0.05|N|O|1995-07-20|1995-09-03|1995-07-27|TAKE BACK RETURN|FOB|cial theodolites against the furiou| +8585|931055|43574|5|24|26064.24|0.09|0.06|N|O|1995-07-22|1995-08-13|1995-08-19|TAKE BACK RETURN|RAIL|. ironic packages | +8585|241229|16238|6|16|18723.36|0.04|0.01|N|O|1995-10-10|1995-08-10|1995-10-15|COLLECT COD|FOB|ecial packages haggle carefully amo| +8585|332519|7532|7|45|69817.50|0.05|0.03|N|O|1995-10-21|1995-09-18|1995-10-24|COLLECT COD|MAIL| the blithely final pinto beans. qui| +8586|636958|49471|1|6|11369.52|0.06|0.03|N|O|1998-01-31|1998-03-01|1998-02-25|NONE|MAIL|as boost around the qui| +8586|345642|33161|2|22|37127.86|0.03|0.02|N|O|1998-01-14|1998-01-24|1998-01-15|NONE|TRUCK| ideas. som| +8586|188403|13410|3|31|46233.40|0.09|0.00|N|O|1998-02-24|1998-02-24|1998-03-18|DELIVER IN PERSON|RAIL|uriously dogged| +8586|482064|19592|4|7|7322.28|0.02|0.03|N|O|1998-03-09|1998-03-10|1998-03-18|TAKE BACK RETURN|MAIL|ke blithely along the a| +8587|498783|36311|1|5|8908.80|0.03|0.07|A|F|1993-03-28|1993-03-12|1993-04-16|DELIVER IN PERSON|RAIL|sly according to| +8587|30425|17926|2|42|56927.64|0.04|0.00|A|F|1993-04-05|1993-04-26|1993-04-14|COLLECT COD|RAIL|uses wake. regula| +8588|570465|20466|1|33|50669.52|0.03|0.07|R|F|1995-03-19|1995-03-06|1995-04-16|NONE|REG AIR|hely pending accounts hagg| +8588|790458|15489|2|15|23226.30|0.02|0.00|R|F|1995-01-23|1995-02-12|1995-01-24|NONE|RAIL|e fluffily up th| +8588|224150|49159|3|22|23631.08|0.04|0.03|R|F|1995-04-15|1995-03-26|1995-04-17|NONE|TRUCK|inal packages | +8588|281651|6662|4|7|11428.48|0.01|0.01|R|F|1995-03-07|1995-04-02|1995-03-16|TAKE BACK RETURN|REG AIR|s wake slyly daring deposits. theodo| +8588|697654|47655|5|2|3303.24|0.08|0.00|A|F|1995-03-05|1995-03-11|1995-03-10|NONE|REG AIR|nic excuses. slyly ironic courts lose | +8588|456971|19481|6|9|17351.55|0.02|0.02|A|F|1995-05-01|1995-04-05|1995-05-06|COLLECT COD|REG AIR|ly unusual accounts| +8589|941370|16407|1|3|4233.99|0.07|0.03|N|O|1997-12-29|1997-10-24|1998-01-27|DELIVER IN PERSON|RAIL| furiously pending theodolites| +8589|598353|23376|2|37|53699.21|0.10|0.01|N|O|1997-11-14|1997-10-19|1997-11-24|NONE|REG AIR|tes. furiously regular| +8589|508090|45621|3|24|26353.68|0.04|0.05|N|O|1997-12-31|1997-11-08|1998-01-10|DELIVER IN PERSON|FOB|sly regular pi| +8590|589530|39531|1|48|77736.48|0.04|0.06|R|F|1992-11-25|1992-10-24|1992-11-26|TAKE BACK RETURN|RAIL|ar requests| +8590|224798|37303|2|4|6891.12|0.08|0.08|R|F|1992-11-03|1992-10-18|1992-11-28|TAKE BACK RETURN|TRUCK|y ironic packages. furiously bo| +8590|177233|27234|3|7|9171.61|0.03|0.04|A|F|1992-09-11|1992-09-29|1992-10-06|COLLECT COD|AIR|onic accounts sle| +8590|739408|39409|4|20|28947.40|0.06|0.08|R|F|1992-10-20|1992-10-05|1992-11-12|NONE|MAIL|s. stealthy dependencies unwin| +8590|229134|16647|5|6|6378.72|0.10|0.01|A|F|1992-10-01|1992-11-09|1992-10-09|DELIVER IN PERSON|TRUCK|lly even accounts are deposits--| +8591|476069|26070|1|31|32396.24|0.08|0.01|N|O|1997-06-25|1997-06-17|1997-07-10|COLLECT COD|TRUCK| carefully ironic instructions ha| +8591|282133|32134|2|45|50180.40|0.09|0.06|N|O|1997-08-07|1997-06-21|1997-08-19|NONE|MAIL|deposits. slyly express| +8591|794878|7394|3|3|5918.52|0.02|0.04|N|O|1997-08-19|1997-06-09|1997-08-30|DELIVER IN PERSON|REG AIR|olites. asymptotes engage quick| +8591|504886|29907|4|28|52944.08|0.06|0.07|N|O|1997-04-28|1997-06-07|1997-05-12|NONE|AIR|ve the carefully final ideas nag c| +8616|433938|21463|1|19|35566.29|0.08|0.08|R|F|1992-04-30|1992-05-12|1992-05-03|COLLECT COD|SHIP|y pending deposits mold slyly r| +8616|190341|2845|2|47|67272.98|0.10|0.02|A|F|1992-06-28|1992-04-19|1992-07-18|COLLECT COD|SHIP|riously pending dep| +8617|572043|34555|1|42|46830.84|0.00|0.06|R|F|1993-06-05|1993-07-06|1993-07-03|TAKE BACK RETURN|TRUCK|ld pinto beans kindle above| +8618|308553|8554|1|9|14053.86|0.09|0.05|N|O|1996-12-02|1996-12-13|1996-12-24|COLLECT COD|MAIL|nt requests. | +8618|833948|33949|2|37|69630.30|0.06|0.08|N|O|1996-12-04|1997-01-02|1997-01-01|COLLECT COD|RAIL| special somas | +8618|152020|39530|3|50|53601.00|0.05|0.02|N|O|1997-01-08|1996-11-16|1997-01-22|TAKE BACK RETURN|RAIL|ts are: regular instructions try to | +8618|983572|21130|4|2|3311.06|0.06|0.03|N|O|1997-02-04|1996-12-07|1997-03-01|DELIVER IN PERSON|AIR| accounts. furiousl| +8618|885255|35256|5|4|4960.84|0.06|0.03|N|O|1996-11-06|1996-12-17|1996-11-12|DELIVER IN PERSON|SHIP|long the furiou| +8618|468193|30703|6|25|29029.25|0.07|0.05|N|O|1996-12-26|1996-12-23|1996-12-30|TAKE BACK RETURN|AIR|final courts wake slyly bold req| +8618|919062|19063|7|43|46483.86|0.00|0.00|N|O|1997-01-09|1996-12-22|1997-01-28|DELIVER IN PERSON|TRUCK| express packages cajole regular | +8619|661334|36361|1|37|47926.10|0.02|0.02|N|O|1997-08-25|1997-06-24|1997-09-03|DELIVER IN PERSON|TRUCK|ar, unusual| +8620|230042|42547|1|29|28188.87|0.07|0.08|N|O|1998-01-26|1998-01-06|1998-02-03|NONE|TRUCK|d the slyly even epitaphs. silent, r| +8620|306126|18633|2|24|27170.64|0.07|0.05|N|O|1998-01-25|1998-01-18|1998-02-22|TAKE BACK RETURN|REG AIR|. ironic accounts | +8621|559373|46907|1|14|20052.90|0.01|0.04|A|F|1994-08-21|1994-08-04|1994-09-05|NONE|MAIL|cajole ruthlessly. special packages slee| +8621|370091|20092|2|20|23221.60|0.10|0.00|R|F|1994-08-22|1994-09-24|1994-08-29|DELIVER IN PERSON|MAIL|kages at the even depths wake ironic pi| +8621|117180|29683|3|39|46690.02|0.02|0.00|R|F|1994-09-12|1994-08-24|1994-09-17|TAKE BACK RETURN|RAIL|uriously regular deposits detect blithely| +8621|441915|4424|4|8|14855.12|0.09|0.02|A|F|1994-08-15|1994-08-30|1994-08-23|TAKE BACK RETURN|MAIL|ily special requests. b| +8622|717512|30027|1|11|16824.28|0.03|0.07|N|O|1996-04-26|1996-05-08|1996-05-14|NONE|TRUCK|le quickly. carefully pe| +8623|476807|26808|1|5|8918.90|0.05|0.08|N|O|1998-07-28|1998-09-13|1998-08-02|TAKE BACK RETURN|AIR| foxes wake e| +8648|540266|40267|1|26|33962.24|0.08|0.08|R|F|1994-06-21|1994-04-28|1994-06-25|NONE|MAIL|uests detect furiously acc| +8648|237835|340|2|34|60275.88|0.07|0.08|A|F|1994-05-15|1994-05-18|1994-05-19|NONE|SHIP|sly regular pinto bea| +8648|281840|19356|3|10|18218.30|0.01|0.04|R|F|1994-03-19|1994-04-14|1994-04-09|DELIVER IN PERSON|TRUCK| the slyly pending deposits. sl| +8648|879550|17102|4|8|12236.08|0.05|0.02|R|F|1994-03-15|1994-04-26|1994-03-21|TAKE BACK RETURN|RAIL|, pending pinto beans ac| +8648|591656|29190|5|18|31457.34|0.07|0.00|R|F|1994-05-02|1994-04-09|1994-05-03|TAKE BACK RETURN|REG AIR|k foxes. blit| +8648|953841|16361|6|22|41685.60|0.03|0.00|R|F|1994-06-17|1994-05-02|1994-06-29|COLLECT COD|TRUCK|nts cajole. carefully regular | +8649|979162|16720|1|27|33510.24|0.02|0.07|R|F|1993-04-12|1993-06-02|1993-04-15|COLLECT COD|SHIP|l ideas are across the slyly express reque| +8650|664443|39470|1|22|30963.02|0.03|0.08|A|F|1994-12-18|1994-12-17|1995-01-16|TAKE BACK RETURN|AIR|y unusual courts are alongs| +8650|279313|41819|2|32|41353.60|0.05|0.04|A|F|1994-11-24|1995-02-10|1994-11-29|NONE|TRUCK|nding deposits c| +8650|411237|36254|3|7|8037.47|0.04|0.05|A|F|1995-01-28|1995-01-01|1995-02-21|TAKE BACK RETURN|REG AIR|ages use pending pains. sly| +8650|644939|44940|4|12|22606.80|0.07|0.05|A|F|1994-12-18|1995-01-30|1994-12-31|COLLECT COD|MAIL|s integrate across the slyly silent i| +8650|482356|19884|5|20|26766.60|0.08|0.02|R|F|1995-02-08|1994-12-14|1995-03-01|NONE|REG AIR|yly special instructions. | +8651|132519|32520|1|13|20169.63|0.03|0.07|R|F|1992-06-16|1992-08-19|1992-06-27|DELIVER IN PERSON|TRUCK|inst the fluffily express accounts| +8651|241806|16815|2|34|59424.86|0.00|0.07|R|F|1992-06-30|1992-07-22|1992-07-12|DELIVER IN PERSON|MAIL|counts. always ironic| +8652|881085|18637|1|43|45839.72|0.09|0.06|N|O|1998-06-09|1998-06-23|1998-06-14|TAKE BACK RETURN|SHIP|tructions. idle deposits sleep| +8653|473094|23095|1|43|45884.01|0.01|0.03|A|F|1993-05-10|1993-03-31|1993-06-04|NONE|SHIP|nic deposits a| +8653|284601|9612|2|34|53910.06|0.10|0.03|R|F|1993-05-13|1993-04-10|1993-06-03|NONE|TRUCK|s boost. final, express platelets nod | +8653|286758|11769|3|12|20936.88|0.07|0.07|R|F|1993-04-02|1993-04-27|1993-04-24|DELIVER IN PERSON|RAIL|uests are slyly bes| +8653|534079|34080|4|47|52313.35|0.03|0.03|R|F|1993-03-10|1993-03-12|1993-04-02|DELIVER IN PERSON|TRUCK| regular pac| +8653|249907|24916|5|35|64991.15|0.08|0.07|A|F|1993-05-04|1993-03-14|1993-05-19|NONE|MAIL|its haggle fu| +8653|185308|10315|6|1|1393.30|0.02|0.01|A|F|1993-03-16|1993-04-12|1993-04-15|NONE|REG AIR| bold foxe| +8654|289257|1763|1|26|32402.24|0.09|0.01|R|F|1994-12-04|1994-11-02|1995-01-03|NONE|AIR|nts: slyly i| +8654|528388|3409|2|5|7081.80|0.09|0.00|A|F|1994-10-22|1994-10-11|1994-11-02|DELIVER IN PERSON|FOB|rmanent excuses use furiously. carefull| +8654|610485|10486|3|21|29304.45|0.03|0.04|A|F|1994-11-27|1994-09-28|1994-12-09|DELIVER IN PERSON|RAIL|s haggle special, final accounts. b| +8654|420454|45471|4|26|35735.18|0.00|0.08|A|F|1994-10-24|1994-11-14|1994-11-14|TAKE BACK RETURN|REG AIR|sy foxes hagg| +8654|569820|19821|5|16|30236.80|0.01|0.01|A|F|1994-08-28|1994-10-29|1994-09-13|COLLECT COD|FOB|s along the slyly special excuses detect a| +8655|71760|34262|1|8|13854.08|0.03|0.01|N|O|1996-09-29|1996-11-05|1996-10-02|COLLECT COD|RAIL|ainst the bold instruct| +8655|59532|47036|2|40|59661.20|0.10|0.04|N|O|1996-12-03|1996-10-20|1996-12-24|TAKE BACK RETURN|TRUCK|. furiously even theodolites snooze pe| +8655|542253|4764|3|22|28495.06|0.06|0.05|N|O|1996-12-11|1996-10-25|1996-12-29|DELIVER IN PERSON|RAIL|even deposits against the depo| +8655|629955|29956|4|25|47123.00|0.05|0.03|N|O|1996-11-11|1996-11-27|1996-12-04|NONE|REG AIR|lly final platele| +8655|644874|7387|5|6|10913.04|0.09|0.06|N|O|1996-10-14|1996-10-07|1996-10-31|NONE|REG AIR|ngside of the regula| +8680|706027|31056|1|45|46484.55|0.04|0.02|N|O|1996-02-02|1996-01-24|1996-02-20|TAKE BACK RETURN|TRUCK|e ironically sile| +8680|184349|9356|2|50|71667.00|0.04|0.00|N|O|1996-01-20|1996-01-01|1996-01-30|TAKE BACK RETURN|SHIP| dependencies. unusual grouches are. so| +8680|338462|38463|3|37|55516.65|0.01|0.01|N|O|1996-01-04|1996-02-02|1996-01-12|DELIVER IN PERSON|TRUCK|ns. special packages are fur| +8680|515533|40554|4|34|52649.34|0.07|0.00|N|O|1995-12-12|1996-02-16|1996-01-04|NONE|RAIL|uests maintain of the furi| +8680|553443|15955|5|39|58360.38|0.02|0.05|N|O|1995-12-04|1996-01-17|1995-12-26|COLLECT COD|RAIL| furiously | +8680|700402|12917|6|45|63106.65|0.01|0.04|N|O|1996-03-08|1996-01-03|1996-03-13|TAKE BACK RETURN|AIR|arefully. blithely iro| +8681|35965|23466|1|28|53226.88|0.03|0.00|R|F|1994-07-25|1994-08-16|1994-08-05|TAKE BACK RETURN|SHIP|ly according to the unusual | +8682|675224|25225|1|34|40772.46|0.05|0.02|A|F|1994-07-14|1994-08-10|1994-07-22|COLLECT COD|FOB|ts according to the patterns sublate aft| +8682|485268|35269|2|30|37597.20|0.05|0.05|A|F|1994-07-17|1994-07-02|1994-08-04|NONE|TRUCK|ending ideas detect furiously careful| +8683|316289|3808|1|29|37852.83|0.09|0.08|A|F|1993-07-03|1993-08-11|1993-07-24|TAKE BACK RETURN|FOB|nts about the bold, ironic accounts use | +8683|857420|19938|2|8|11019.04|0.05|0.05|R|F|1993-09-26|1993-09-16|1993-09-30|DELIVER IN PERSON|TRUCK|usly regular pa| +8683|642252|17277|3|10|11942.20|0.06|0.06|R|F|1993-09-23|1993-09-09|1993-10-03|DELIVER IN PERSON|FOB| regular ideas about the daringly iron| +8683|315518|40531|4|19|29136.50|0.06|0.00|R|F|1993-07-03|1993-09-17|1993-07-31|TAKE BACK RETURN|RAIL|ckly unusual | +8683|897116|22151|5|15|16696.05|0.01|0.01|R|F|1993-08-15|1993-08-12|1993-08-23|COLLECT COD|FOB|beans about the unusual theodolite| +8683|827380|39897|6|15|19610.10|0.10|0.05|R|F|1993-10-12|1993-09-14|1993-11-08|TAKE BACK RETURN|AIR|ly regular deposits. thinly regular accoun| +8683|769674|44705|7|21|36616.44|0.04|0.06|R|F|1993-09-02|1993-07-26|1993-09-11|COLLECT COD|FOB|ironic platelets cajole accord| +8684|910304|22823|1|7|9199.82|0.09|0.03|R|F|1995-01-13|1995-02-02|1995-01-31|DELIVER IN PERSON|SHIP|ending, ironic packages nag bl| +8684|470338|20339|2|5|6541.55|0.00|0.08|R|F|1995-04-04|1995-03-04|1995-04-30|DELIVER IN PERSON|TRUCK|ic pinto beans. quickly regular foxes| +8684|955258|30297|3|18|23637.78|0.10|0.04|A|F|1994-12-31|1995-02-15|1995-01-30|DELIVER IN PERSON|RAIL| special instructions| +8685|368583|31091|1|32|52850.24|0.10|0.03|N|O|1998-06-07|1998-06-18|1998-06-20|NONE|MAIL|rets haggle slyly across the bold deposi| +8685|768016|18017|2|14|15175.72|0.03|0.08|N|O|1998-04-05|1998-04-24|1998-05-01|COLLECT COD|FOB|uriously bold grouches. quickly regu| +8686|388373|881|1|2|2922.72|0.08|0.02|R|F|1992-08-30|1992-08-28|1992-09-15|DELIVER IN PERSON|MAIL|regular pinto beans serve carefully| +8686|381392|31393|2|33|48621.54|0.09|0.02|R|F|1992-10-19|1992-08-09|1992-11-08|NONE|FOB|alongside of the iro| +8686|52025|14527|3|33|32241.66|0.06|0.02|R|F|1992-07-29|1992-08-24|1992-08-17|NONE|SHIP|gular requests use quickly regular, expre| +8686|381877|6892|4|9|17629.74|0.07|0.00|R|F|1992-07-09|1992-08-02|1992-07-22|DELIVER IN PERSON|MAIL|press about th| +8686|191950|4454|5|44|89845.80|0.05|0.06|A|F|1992-10-10|1992-09-18|1992-11-01|TAKE BACK RETURN|FOB|kages. blithely ironic dolphi| +8686|99964|37468|6|4|7855.84|0.09|0.05|A|F|1992-09-11|1992-08-01|1992-10-05|TAKE BACK RETURN|FOB|fully final platelets ca| +8687|590773|28307|1|42|78277.50|0.09|0.03|A|F|1993-04-25|1993-04-19|1993-04-26|DELIVER IN PERSON|RAIL| quickly express asym| +8687|109786|34791|2|50|89789.00|0.10|0.03|R|F|1993-06-24|1993-04-21|1993-06-29|TAKE BACK RETURN|RAIL|thely final asymptotes affix about the | +8712|963267|13268|1|2|2660.44|0.05|0.08|N|O|1998-09-08|1998-08-27|1998-09-12|TAKE BACK RETURN|RAIL|ngside of the slyly special theodoli| +8712|612549|37574|2|11|16076.61|0.03|0.00|N|O|1998-08-12|1998-08-25|1998-09-02|DELIVER IN PERSON|SHIP|ests haggl| +8712|105006|5007|3|25|25275.00|0.04|0.07|N|O|1998-09-24|1998-10-01|1998-09-27|TAKE BACK RETURN|AIR|gular, even pains are furiously among the b| +8712|820113|20114|4|46|47521.22|0.08|0.05|N|O|1998-10-18|1998-09-23|1998-10-19|COLLECT COD|TRUCK| furiously quick a| +8712|626997|39510|5|47|90426.12|0.02|0.05|N|O|1998-07-09|1998-08-09|1998-07-30|NONE|TRUCK|final excuses. fluffily ex| +8712|921994|21995|6|40|80638.00|0.10|0.07|N|O|1998-08-28|1998-09-16|1998-09-26|NONE|FOB| to the eve| +8713|528337|15868|1|16|21844.96|0.00|0.06|N|O|1996-01-16|1996-01-31|1996-01-17|NONE|FOB| final deposits haggle blithely regular ti| +8713|755384|30415|2|14|20150.90|0.03|0.05|N|O|1996-03-04|1996-02-16|1996-03-24|TAKE BACK RETURN|MAIL|he final, pending | +8713|733260|33261|3|40|51729.20|0.05|0.03|N|O|1996-01-06|1996-03-08|1996-01-07|COLLECT COD|TRUCK|ar requests about the fluffily unusual depe| +8714|11809|49310|1|12|20649.60|0.07|0.03|R|F|1993-06-25|1993-08-09|1993-07-05|TAKE BACK RETURN|SHIP|stealthily s| +8715|870124|7676|1|11|12034.88|0.09|0.03|N|O|1995-09-16|1995-09-15|1995-10-15|DELIVER IN PERSON|FOB|ise blithely| +8715|173678|48685|2|21|36785.07|0.08|0.06|N|O|1995-10-16|1995-08-14|1995-11-04|COLLECT COD|SHIP|e furiously express instru| +8715|2109|14610|3|15|15166.50|0.04|0.04|N|O|1995-07-06|1995-09-22|1995-07-16|COLLECT COD|REG AIR|kages cajole furiously. furiously b| +8715|442888|5397|4|49|89712.14|0.05|0.01|N|O|1995-08-28|1995-09-07|1995-09-08|DELIVER IN PERSON|REG AIR| foxes sleep slyly about the f| +8715|604275|41812|5|27|31839.48|0.04|0.07|N|O|1995-09-13|1995-08-03|1995-09-22|COLLECT COD|RAIL|er the carefully even packages!| +8716|349707|12214|1|44|77294.36|0.04|0.05|N|O|1997-07-28|1997-06-14|1997-08-04|TAKE BACK RETURN|RAIL|ounts around the quickly| +8716|519165|44186|2|26|30787.64|0.03|0.06|N|O|1997-06-22|1997-06-06|1997-06-27|TAKE BACK RETURN|MAIL| dolphins | +8716|601220|26245|3|31|34756.89|0.02|0.02|N|O|1997-05-21|1997-06-24|1997-06-01|DELIVER IN PERSON|FOB| packages after the| +8716|700046|25075|4|44|46024.44|0.01|0.03|N|O|1997-08-01|1997-06-19|1997-08-21|TAKE BACK RETURN|TRUCK|eodolites boost a| +8716|668292|18293|5|14|17643.64|0.08|0.08|N|O|1997-05-18|1997-06-12|1997-05-24|TAKE BACK RETURN|REG AIR|ular realms haggle carefully across t| +8716|983203|45723|6|28|36012.48|0.06|0.01|N|O|1997-06-13|1997-07-07|1997-06-23|TAKE BACK RETURN|FOB|luffily regular pinto be| +8716|683225|45739|7|7|8457.33|0.00|0.08|N|O|1997-08-13|1997-06-29|1997-09-01|TAKE BACK RETURN|AIR|l accounts. re| +8717|953366|15886|1|5|7096.60|0.08|0.06|N|O|1998-02-25|1998-03-14|1998-03-03|DELIVER IN PERSON|FOB|ckages cajole carefully instructions. bo| +8718|286792|11803|1|25|44469.50|0.08|0.01|N|O|1998-10-11|1998-10-07|1998-10-27|DELIVER IN PERSON|FOB| the regular foxes. slyly regular| +8718|98939|11441|2|11|21317.23|0.06|0.03|N|O|1998-09-02|1998-10-07|1998-09-09|COLLECT COD|AIR|silent ideas detect careful| +8718|858229|20747|3|5|5935.90|0.02|0.07|N|O|1998-11-27|1998-10-21|1998-11-28|DELIVER IN PERSON|MAIL|ckly even sauterne| +8718|243832|18841|4|42|74584.44|0.04|0.05|N|O|1998-11-29|1998-10-26|1998-12-12|COLLECT COD|MAIL|lly unusual courts. | +8718|73674|48677|5|37|60963.79|0.04|0.07|N|O|1998-10-01|1998-09-01|1998-10-02|COLLECT COD|REG AIR|ter the requests. furiously final | +8719|8616|33617|1|30|45738.30|0.02|0.01|N|O|1995-07-25|1995-06-11|1995-08-23|TAKE BACK RETURN|SHIP|s. blithely regular accounts haggle blithe| +8719|802530|40079|2|37|53002.13|0.03|0.06|R|F|1995-05-21|1995-07-03|1995-06-12|COLLECT COD|RAIL|dependencies would c| +8719|108615|46122|3|1|1623.61|0.01|0.06|N|F|1995-05-26|1995-07-16|1995-06-22|COLLECT COD|RAIL|inal accounts. carefully final deposit| +8744|749758|37301|1|28|50616.16|0.06|0.05|N|O|1996-01-21|1996-01-19|1996-01-26|COLLECT COD|MAIL|he bold platelets. slyly final instructio| +8744|170003|20004|2|23|24679.00|0.07|0.05|N|O|1995-12-29|1996-01-26|1996-01-10|COLLECT COD|AIR|uickly even dependencies are carefully | +8744|226628|26629|3|10|15546.10|0.10|0.08|N|O|1995-12-29|1996-02-01|1996-01-28|TAKE BACK RETURN|RAIL|ular sauternes sleep blit| +8744|928164|28165|4|22|26226.64|0.00|0.01|N|O|1995-11-19|1996-01-08|1995-11-23|COLLECT COD|RAIL|, regular accounts sleep| +8744|650464|25491|5|8|11315.44|0.02|0.08|N|O|1996-02-15|1995-12-13|1996-03-13|COLLECT COD|SHIP|olites thrash furiously | +8744|347204|34723|6|38|47545.22|0.05|0.08|N|O|1996-01-30|1995-12-30|1996-02-28|DELIVER IN PERSON|REG AIR|usual accounts. carefully final ideas sleep| +8744|455999|18509|7|31|60604.07|0.09|0.00|N|O|1996-01-22|1995-12-31|1996-02-21|COLLECT COD|FOB|ly regular instructions affix blithely | +8745|971182|8740|1|49|61403.86|0.01|0.00|R|F|1994-09-27|1994-10-02|1994-10-09|COLLECT COD|TRUCK|press foxes. daringly bold acco| +8745|649275|24300|2|14|17139.36|0.09|0.06|A|F|1994-12-18|1994-11-12|1995-01-09|DELIVER IN PERSON|RAIL|al packages. carefully unusual accoun| +8745|353664|3665|3|6|10305.90|0.09|0.00|R|F|1994-10-10|1994-10-20|1994-10-25|NONE|TRUCK|ns. ironic pinto beans nag. p| +8745|23973|36474|4|22|41733.34|0.03|0.01|A|F|1994-12-12|1994-11-05|1994-12-22|DELIVER IN PERSON|REG AIR|ssly bold pinto beans acr| +8745|902100|39655|5|39|42980.34|0.03|0.07|A|F|1994-12-01|1994-10-15|1994-12-17|COLLECT COD|FOB|fully regular platelets nod caref| +8745|593558|6070|6|47|77621.91|0.06|0.00|A|F|1994-11-17|1994-11-25|1994-12-12|COLLECT COD|MAIL|the blithely final theodo| +8745|923816|23817|7|17|31276.09|0.05|0.06|R|F|1994-11-18|1994-10-16|1994-11-23|DELIVER IN PERSON|MAIL|ickly ironic fox| +8746|566130|41153|1|12|14353.32|0.10|0.07|R|F|1994-08-14|1994-09-15|1994-08-16|TAKE BACK RETURN|MAIL|uctions affix among the ironi| +8746|937823|342|2|5|9303.90|0.01|0.08|R|F|1994-10-31|1994-10-08|1994-11-01|DELIVER IN PERSON|RAIL|ep regular packages. fluffil| +8746|990987|3507|3|44|91429.36|0.05|0.00|R|F|1994-08-18|1994-10-28|1994-08-31|TAKE BACK RETURN|REG AIR|e blithely unusual dep| +8746|512202|24713|4|29|35211.22|0.07|0.05|R|F|1994-09-03|1994-10-20|1994-09-18|NONE|REG AIR| instructio| +8746|575829|38341|5|36|68572.80|0.04|0.02|A|F|1994-11-26|1994-09-14|1994-12-19|NONE|REG AIR|, even packages| +8746|957589|20109|6|12|19758.48|0.00|0.05|R|F|1994-08-24|1994-09-29|1994-08-26|TAKE BACK RETURN|FOB|pending grouches | +8747|862341|24859|1|27|35189.10|0.08|0.03|R|F|1995-03-10|1995-05-14|1995-04-05|COLLECT COD|REG AIR|lithely final | +8747|348536|23549|2|23|36443.96|0.06|0.04|R|F|1995-04-19|1995-05-09|1995-05-03|COLLECT COD|TRUCK|uctions. slyly ironic instructio| +8747|833162|20711|3|19|20807.28|0.06|0.00|R|F|1995-03-13|1995-05-04|1995-03-22|TAKE BACK RETURN|MAIL|y ironic plate| +8747|946579|34134|4|22|35761.66|0.10|0.08|R|F|1995-03-09|1995-04-25|1995-03-20|NONE|MAIL|slyly against the slyly special requests. | +8747|142100|4603|5|7|7994.70|0.04|0.04|A|F|1995-04-05|1995-04-20|1995-04-28|DELIVER IN PERSON|TRUCK| dogged ideas wake carefully across t| +8747|269510|44521|6|35|51782.50|0.05|0.04|A|F|1995-03-04|1995-05-14|1995-03-20|TAKE BACK RETURN|RAIL|es around the blith| +8748|226609|14122|1|35|53745.65|0.04|0.01|N|O|1997-01-16|1997-01-11|1997-02-13|NONE|TRUCK| pending instructions use among the f| +8748|607283|44820|2|22|26185.50|0.08|0.07|N|O|1997-02-02|1997-01-17|1997-02-28|NONE|TRUCK|ely about the bravely bold pinto beans. ex| +8748|601151|13664|3|22|23146.64|0.05|0.01|N|O|1996-12-09|1996-11-29|1996-12-22|DELIVER IN PERSON|RAIL| foxes across the bold| +8748|528994|16525|4|33|66758.01|0.03|0.02|N|O|1997-01-03|1997-01-07|1997-01-20|COLLECT COD|REG AIR|the slyly unusual excuses. fu| +8749|524399|11930|1|21|29890.77|0.01|0.04|R|F|1992-08-13|1992-10-04|1992-09-08|DELIVER IN PERSON|REG AIR|s nag ironic, silent requests: accou| +8749|570581|45604|2|20|33031.20|0.03|0.08|A|F|1992-07-23|1992-08-27|1992-08-22|TAKE BACK RETURN|FOB|foxes. bold theo| +8749|749461|37004|3|29|43802.47|0.03|0.00|A|F|1992-08-19|1992-09-28|1992-08-31|TAKE BACK RETURN|AIR|s affix even, | +8749|184825|9832|4|12|22917.84|0.04|0.01|R|F|1992-08-05|1992-10-19|1992-09-02|DELIVER IN PERSON|FOB|lose foxes grow slyl| +8750|534455|21986|1|10|14894.30|0.09|0.05|N|O|1996-02-22|1996-03-28|1996-02-28|COLLECT COD|REG AIR|ackages haggle slyly above the care| +8750|585165|10188|2|27|33753.78|0.02|0.04|N|O|1996-03-19|1996-05-02|1996-04-17|TAKE BACK RETURN|MAIL|oost! regular req| +8750|867903|5455|3|13|24321.18|0.01|0.03|N|O|1996-06-14|1996-04-24|1996-07-08|TAKE BACK RETURN|RAIL|y alongside of| +8750|832842|32843|4|27|47919.60|0.03|0.08|N|O|1996-06-14|1996-03-23|1996-07-05|TAKE BACK RETURN|SHIP|s breach fluffily thin forges. final | +8750|563446|25958|5|13|19622.46|0.08|0.04|N|O|1996-04-11|1996-04-27|1996-04-27|TAKE BACK RETURN|AIR|ch around the foxes. bravely final| +8751|908209|45764|1|28|34080.48|0.00|0.04|N|O|1998-02-24|1997-12-16|1998-03-18|NONE|REG AIR|-- blithely regular dependencies | +8751|265372|40383|2|28|37446.08|0.05|0.05|N|O|1998-02-25|1998-01-26|1998-03-18|COLLECT COD|SHIP|t quickly about the blithely e| +8751|99743|49744|3|20|34854.80|0.07|0.00|N|O|1997-12-26|1998-02-05|1998-01-14|COLLECT COD|AIR| regular, pending ide| +8751|373226|23227|4|38|49369.98|0.03|0.03|N|O|1998-02-04|1998-02-10|1998-02-06|COLLECT COD|TRUCK|s across the fluffily | +8776|923696|23697|1|31|53309.15|0.00|0.01|N|O|1995-08-23|1995-09-28|1995-08-25|COLLECT COD|SHIP|nstructions sleep. unusual, unusual depe| +8776|555364|42898|2|5|7096.70|0.09|0.08|N|O|1995-09-14|1995-08-22|1995-09-27|DELIVER IN PERSON|RAIL|usly. slyly special deposits are sly| +8776|986218|36219|3|32|41733.44|0.07|0.07|N|O|1995-10-28|1995-09-14|1995-10-29|DELIVER IN PERSON|RAIL|elieve blithely fluffily final instructi| +8776|360398|35413|4|44|64168.72|0.09|0.02|N|O|1995-09-22|1995-08-15|1995-09-23|DELIVER IN PERSON|TRUCK|pearls. depths across the platelets use | +8776|203008|40521|5|11|10020.89|0.02|0.02|N|O|1995-08-26|1995-08-18|1995-09-06|COLLECT COD|FOB|ckages wake. care| +8776|951659|39217|6|17|29080.37|0.01|0.00|N|O|1995-08-06|1995-09-19|1995-08-25|NONE|FOB| against the quickly ironic the| +8777|392193|4701|1|44|56547.92|0.08|0.02|N|O|1996-03-04|1996-01-07|1996-03-22|COLLECT COD|MAIL|sual deposits cajole furiously silen| +8777|581553|31554|2|22|35959.66|0.08|0.05|N|O|1996-03-29|1996-01-01|1996-04-12|COLLECT COD|SHIP|s haggle blithely about the | +8777|157355|32362|3|36|50844.60|0.02|0.00|N|O|1995-12-25|1996-01-19|1996-01-07|DELIVER IN PERSON|TRUCK|ounts. blithely bold deposits| +8777|664951|14952|4|1|1915.92|0.04|0.03|N|O|1995-12-25|1996-01-28|1996-01-04|DELIVER IN PERSON|MAIL| foxes affix carefully carefully final foxe| +8778|306168|31181|1|49|57533.35|0.08|0.08|R|F|1993-06-08|1993-07-12|1993-06-14|NONE|MAIL|p slyly. carefully furious courts| +8778|756410|31441|2|6|8798.28|0.09|0.07|A|F|1993-09-14|1993-07-31|1993-10-03|TAKE BACK RETURN|RAIL|longside of the slyly regular ins| +8778|974211|24212|3|24|30844.08|0.04|0.00|A|F|1993-07-15|1993-07-01|1993-07-21|TAKE BACK RETURN|MAIL|o beans doze idly foxes. blithely regula| +8778|559095|46629|4|2|2308.14|0.01|0.04|A|F|1993-07-06|1993-06-29|1993-07-15|DELIVER IN PERSON|TRUCK|e after the unusual, regular deposits. re| +8778|695597|33137|5|11|17518.16|0.09|0.06|A|F|1993-06-18|1993-07-08|1993-07-12|DELIVER IN PERSON|AIR|ly ironic d| +8778|884767|34768|6|48|84082.56|0.07|0.01|R|F|1993-06-14|1993-07-07|1993-07-14|NONE|SHIP|ly regular instructions. regular e| +8778|273100|10616|7|25|26827.25|0.02|0.05|R|F|1993-09-18|1993-08-04|1993-09-24|NONE|TRUCK|beans according to the | +8779|991106|28664|1|23|27532.38|0.04|0.08|N|O|1995-12-02|1995-12-10|1995-12-12|NONE|AIR|permanent, pending ideas. s| +8780|191001|3505|1|4|4368.00|0.09|0.03|N|O|1996-06-16|1996-07-21|1996-06-26|NONE|FOB|y pending theodolites. ideas are fluffily| +8780|147695|10198|2|9|15684.21|0.00|0.05|N|O|1996-06-24|1996-06-28|1996-07-15|NONE|FOB|among the packages-- quickly unusual| +8781|186846|24356|1|31|59918.04|0.03|0.07|R|F|1992-11-16|1992-09-08|1992-12-06|TAKE BACK RETURN|AIR|, ironic re| +8781|314364|39377|2|6|8270.10|0.08|0.01|A|F|1992-11-03|1992-10-10|1992-11-29|TAKE BACK RETURN|AIR|e furiously even deposits| +8781|499233|11743|3|27|33269.67|0.10|0.01|A|F|1992-11-08|1992-10-03|1992-12-04|TAKE BACK RETURN|FOB|he slyly ironic dependencies af| +8781|604871|4872|4|10|17758.40|0.00|0.07|R|F|1992-09-24|1992-09-10|1992-10-03|NONE|AIR| ironic warthogs wake. unusual | +8781|66060|41063|5|7|7182.42|0.07|0.01|R|F|1992-09-27|1992-09-09|1992-10-20|DELIVER IN PERSON|FOB|deposits. ruthless sentiments h| +8781|257478|19984|6|34|48805.64|0.01|0.07|A|F|1992-09-17|1992-09-23|1992-09-19|DELIVER IN PERSON|REG AIR|s haggle quickly. carefully ironic| +8781|422162|9687|7|10|10841.40|0.01|0.01|R|F|1992-08-25|1992-10-01|1992-09-19|DELIVER IN PERSON|FOB|odolites af| +8782|262127|37138|1|25|27227.75|0.02|0.01|N|O|1997-05-21|1997-07-23|1997-05-27|TAKE BACK RETURN|SHIP|ents sleep quickly expr| +8782|568208|18209|2|21|26799.78|0.02|0.07|N|O|1997-07-15|1997-06-25|1997-08-11|COLLECT COD|FOB|l dolphins use carefully u| +8782|867528|17529|3|27|40377.96|0.06|0.04|N|O|1997-08-26|1997-07-30|1997-08-30|NONE|MAIL|ke furious| +8782|530955|5976|4|26|51634.18|0.07|0.02|N|O|1997-09-02|1997-06-16|1997-10-01|DELIVER IN PERSON|AIR|ains. unusual packages| +8782|757979|20495|5|43|87588.42|0.10|0.00|N|O|1997-06-15|1997-06-24|1997-06-29|DELIVER IN PERSON|TRUCK|nt, special packages| +8783|335438|10451|1|13|19154.46|0.00|0.07|R|F|1993-11-28|1993-12-15|1993-11-30|COLLECT COD|TRUCK|ular packages. quic| +8783|701030|26059|2|41|42271.00|0.04|0.06|R|F|1994-02-08|1993-12-23|1994-03-09|TAKE BACK RETURN|MAIL|al dependen| +8783|210232|10233|3|30|34266.60|0.09|0.07|R|F|1994-02-06|1994-01-25|1994-03-04|NONE|SHIP|quickly even platelets are| +8808|627911|40424|1|33|60683.04|0.07|0.06|R|F|1992-04-03|1992-03-19|1992-04-13|DELIVER IN PERSON|FOB|ts. regular, bold account| +8808|287090|24606|2|38|40929.04|0.02|0.07|R|F|1992-01-18|1992-04-11|1992-01-29|TAKE BACK RETURN|FOB|among the qu| +8808|107956|7957|3|6|11783.70|0.10|0.03|A|F|1992-05-07|1992-02-15|1992-05-17|NONE|MAIL|telets use sly| +8808|410321|10322|4|46|56639.80|0.08|0.02|A|F|1992-02-08|1992-03-08|1992-02-24|DELIVER IN PERSON|MAIL|manently pending packa| +8808|250932|38448|5|46|86614.32|0.08|0.01|R|F|1992-04-26|1992-03-23|1992-05-08|COLLECT COD|AIR|thely about the carefully silent| +8808|413807|1332|6|44|75714.32|0.07|0.08|R|F|1992-04-05|1992-03-25|1992-04-27|NONE|RAIL|es nag about the fu| +8808|853604|28639|7|33|51399.48|0.07|0.03|R|F|1992-04-22|1992-04-06|1992-04-28|COLLECT COD|RAIL|g. even, even ideas sublate blithely | +8809|509217|46748|1|21|25749.99|0.08|0.03|R|F|1993-05-11|1993-05-22|1993-06-05|TAKE BACK RETURN|REG AIR| waters cajole a| +8810|931310|6347|1|19|25484.13|0.01|0.02|A|F|1992-10-20|1992-08-11|1992-11-13|NONE|AIR| deposits wake slyly along t| +8810|522793|10324|2|48|87156.96|0.07|0.04|A|F|1992-09-21|1992-10-02|1992-10-18|DELIVER IN PERSON|SHIP|luffily even requests affix along th| +8811|691171|28711|1|49|56944.86|0.09|0.07|N|O|1997-11-22|1997-11-01|1997-12-05|NONE|MAIL|structions around t| +8811|509583|9584|2|27|42999.12|0.09|0.03|N|O|1997-10-27|1997-12-27|1997-11-22|NONE|REG AIR|ts. regular instructions cajole blith| +8811|547094|22115|3|16|18257.12|0.01|0.05|N|O|1997-11-21|1997-12-03|1997-12-13|TAKE BACK RETURN|TRUCK|r the fluffily | +8811|6672|6673|4|33|52096.11|0.06|0.00|N|O|1998-01-02|1997-12-24|1998-01-09|COLLECT COD|MAIL|nt ideas haggle fluffily. ironic package| +8812|109269|9270|1|4|5113.04|0.06|0.04|N|O|1998-08-23|1998-06-10|1998-09-19|COLLECT COD|SHIP|lthy accounts| +8812|472543|47562|2|46|69713.92|0.00|0.00|N|O|1998-06-21|1998-07-04|1998-07-11|TAKE BACK RETURN|REG AIR|inal packages| +8812|14197|39198|3|28|31113.32|0.06|0.02|N|O|1998-07-08|1998-06-22|1998-08-03|TAKE BACK RETURN|SHIP|, even theodolites boost carefully account| +8812|592862|30396|4|2|3909.68|0.09|0.06|N|O|1998-07-30|1998-07-28|1998-08-19|DELIVER IN PERSON|TRUCK|ickly bold | +8813|332214|7227|1|29|36139.80|0.02|0.00|N|O|1997-03-23|1997-04-26|1997-04-02|DELIVER IN PERSON|TRUCK|its. slyly pendi| +8814|975433|12991|1|45|67877.55|0.07|0.03|N|O|1997-11-09|1997-11-19|1997-11-13|DELIVER IN PERSON|RAIL|furiously final asymptotes boost ironi| +8814|95691|45692|2|32|53974.08|0.03|0.04|N|O|1997-10-20|1997-11-22|1997-11-02|NONE|REG AIR|the pinto beans. ironic, re| +8814|271667|34173|3|5|8193.25|0.02|0.07|N|O|1997-11-14|1997-11-19|1997-12-02|DELIVER IN PERSON|RAIL|nal theodolites sleep. carefully re| +8814|895945|8463|4|19|36877.10|0.08|0.00|N|O|1997-11-18|1997-11-22|1997-12-01|COLLECT COD|AIR| are carefully after th| +8814|144171|31678|5|42|51037.14|0.07|0.01|N|O|1997-11-30|1998-01-12|1997-12-20|COLLECT COD|AIR|s wake furiously after the even instr| +8814|74023|36525|6|41|40877.82|0.04|0.08|N|O|1997-10-19|1997-12-13|1997-11-02|COLLECT COD|SHIP|ix. final instructions cajole on | +8814|103458|15961|7|8|11691.60|0.10|0.04|N|O|1997-10-25|1997-11-26|1997-11-08|NONE|SHIP|usly. carefu| +8815|809652|47201|1|36|56217.96|0.09|0.03|N|O|1995-10-05|1995-11-21|1995-10-08|NONE|FOB|osits. fluffi| +8815|811908|11909|2|7|12739.02|0.02|0.04|N|O|1995-10-25|1995-10-30|1995-11-04|NONE|RAIL|pendencies above | +8815|725603|632|3|1|1628.57|0.09|0.08|N|O|1995-11-29|1995-10-11|1995-12-23|TAKE BACK RETURN|REG AIR|final accounts cajole furiou| +8840|412159|24668|1|18|19280.34|0.00|0.06|R|F|1993-03-29|1993-04-13|1993-04-17|TAKE BACK RETURN|RAIL|inst the carefully daring instructio| +8840|139851|14856|2|41|77524.85|0.04|0.08|R|F|1993-03-26|1993-03-06|1993-04-08|TAKE BACK RETURN|RAIL|ly against the even pin| +8840|467606|30116|3|1|1573.58|0.09|0.07|A|F|1993-03-27|1993-04-09|1993-04-10|DELIVER IN PERSON|MAIL| silent requests.| +8841|550846|38380|1|43|81563.26|0.08|0.06|N|O|1996-05-12|1996-02-28|1996-05-21|DELIVER IN PERSON|RAIL|ages nag. furiously ironic p| +8841|58196|45700|2|36|41550.84|0.05|0.04|N|O|1996-05-27|1996-04-22|1996-06-16|COLLECT COD|RAIL|le pinto beans are. ironically regular in| +8841|90309|27813|3|22|28584.60|0.09|0.02|N|O|1996-03-22|1996-03-08|1996-03-24|COLLECT COD|MAIL|y special excuses haggle dogg| +8841|810993|48542|4|13|24751.35|0.05|0.00|N|O|1996-05-06|1996-04-15|1996-05-12|NONE|RAIL|ending pinto beans. courts are furiously| +8841|343195|30714|5|35|43336.30|0.07|0.08|N|O|1996-04-21|1996-04-04|1996-05-11|NONE|TRUCK|regular ideas after the express, final asy| +8842|226493|26494|1|40|56779.20|0.08|0.00|R|F|1992-11-11|1992-11-26|1992-11-30|TAKE BACK RETURN|SHIP|deas haggle carefu| +8842|659316|34343|2|10|12752.80|0.06|0.07|A|F|1992-12-17|1992-11-10|1993-01-10|NONE|TRUCK|uses along t| +8842|108757|8758|3|37|65332.75|0.09|0.06|R|F|1992-11-23|1992-11-08|1992-12-05|DELIVER IN PERSON|MAIL|boost carefully ironic acc| +8842|875511|25512|4|18|26756.46|0.05|0.02|R|F|1992-11-08|1992-10-25|1992-12-02|COLLECT COD|FOB|ckly ironic instructions. quickly unusual t| +8842|700055|12570|5|4|4220.08|0.02|0.02|A|F|1992-09-24|1992-11-13|1992-10-07|DELIVER IN PERSON|SHIP|ld accounts haggle furiously around| +8842|814591|27108|6|29|43660.95|0.00|0.07|A|F|1992-10-12|1992-10-22|1992-10-18|TAKE BACK RETURN|MAIL|ual deposits. carefully final accou| +8842|819077|31594|7|30|29880.90|0.05|0.07|R|F|1992-12-09|1992-10-18|1992-12-25|DELIVER IN PERSON|REG AIR|iers dazzle carefully. regular, final ide| +8843|213513|13514|1|34|48501.00|0.07|0.08|N|O|1995-12-25|1996-02-07|1996-01-10|TAKE BACK RETURN|MAIL|s. bold pinto beans ac| +8844|605289|5290|1|3|3582.75|0.01|0.05|N|O|1997-11-03|1997-09-30|1997-12-01|COLLECT COD|TRUCK|ven accoun| +8844|91126|16129|2|48|53621.76|0.05|0.07|N|O|1997-08-04|1997-08-24|1997-08-11|NONE|TRUCK|yly slyly ironic packages. final, pending f| +8844|549182|36713|3|28|34472.48|0.01|0.06|N|O|1997-07-23|1997-08-16|1997-08-09|TAKE BACK RETURN|TRUCK|kly about the always unusual pinto beans| +8845|484139|46649|1|44|49416.84|0.01|0.06|N|O|1997-12-04|1997-11-24|1997-12-17|TAKE BACK RETURN|MAIL|arefully pending deposits. | +8845|910811|23330|2|28|51009.56|0.09|0.02|N|O|1997-12-04|1997-11-23|1997-12-14|DELIVER IN PERSON|MAIL|, pending ideas sleep fluffily fluffily| +8845|991289|28847|3|13|17943.12|0.05|0.03|N|O|1997-12-15|1998-01-13|1997-12-25|DELIVER IN PERSON|TRUCK|e ironic requests integrate quickly bl| +8845|590561|3073|4|23|37985.42|0.10|0.06|N|O|1997-11-05|1997-12-06|1997-11-18|DELIVER IN PERSON|MAIL|to beans agai| +8845|552724|40258|5|22|39087.40|0.07|0.00|N|O|1997-11-21|1998-01-02|1997-12-08|TAKE BACK RETURN|MAIL| use. final packages are carefully| +8845|627844|15381|6|10|17718.10|0.02|0.06|N|O|1998-02-04|1997-11-30|1998-03-03|DELIVER IN PERSON|TRUCK| sleep around the furiously final id| +8845|169382|6892|7|2|2902.76|0.05|0.04|N|O|1997-11-05|1997-11-27|1997-12-05|TAKE BACK RETURN|AIR|rave ideas are blithely. blit| +8846|801818|39367|1|20|34395.40|0.03|0.01|N|O|1998-05-25|1998-07-07|1998-06-18|TAKE BACK RETURN|AIR|en deposits detect carefully above the f| +8847|83284|20788|1|13|16474.64|0.10|0.08|A|F|1993-02-28|1993-01-02|1993-03-10|COLLECT COD|RAIL|y. carefully p| +8847|739138|26681|2|29|34135.90|0.02|0.08|R|F|1993-02-03|1993-02-21|1993-02-17|NONE|MAIL|ve the carefully special orbits. fluff| +8847|683085|8112|3|2|2136.10|0.01|0.02|A|F|1993-03-19|1993-01-18|1993-04-09|DELIVER IN PERSON|REG AIR|n requests are. regular, | +8847|607819|45356|4|44|75978.32|0.01|0.03|A|F|1993-02-23|1993-01-03|1993-03-20|COLLECT COD|RAIL|cross the fu| +8872|505030|5031|1|39|40365.39|0.01|0.01|N|O|1996-05-09|1996-03-27|1996-05-15|DELIVER IN PERSON|RAIL|ter the even, regular accounts. slyly q| +8872|27978|15479|2|43|81956.71|0.03|0.01|N|O|1996-01-22|1996-02-21|1996-02-18|TAKE BACK RETURN|MAIL|ven instructions. bold reques| +8872|213595|26100|3|14|21120.12|0.08|0.04|N|O|1996-03-14|1996-03-19|1996-04-01|TAKE BACK RETURN|RAIL|ts. special dolphins against the carefu| +8873|25798|38299|1|36|62056.44|0.06|0.02|N|O|1998-08-01|1998-09-13|1998-08-08|COLLECT COD|REG AIR|excuses nag quietly unusual, bold| +8873|579550|17084|2|1|1629.53|0.02|0.00|N|O|1998-10-01|1998-09-14|1998-10-24|COLLECT COD|RAIL|egular requests. furiously sly platel| +8873|496321|8831|3|25|32932.50|0.02|0.07|N|O|1998-10-20|1998-10-01|1998-11-12|DELIVER IN PERSON|TRUCK|. carefull| +8873|663517|1057|4|24|35531.52|0.07|0.05|N|O|1998-07-19|1998-10-05|1998-08-08|DELIVER IN PERSON|RAIL| the slyly unusual pinto beans. furiou| +8873|713988|26503|5|40|80078.00|0.04|0.03|N|O|1998-11-11|1998-10-06|1998-11-20|COLLECT COD|REG AIR| are blithely slyly even dependencies. qui| +8873|980506|18064|6|24|38075.04|0.00|0.03|N|O|1998-11-03|1998-09-05|1998-11-19|DELIVER IN PERSON|REG AIR|uests are fluffily regular accoun| +8874|881832|19384|1|24|43530.96|0.02|0.08|N|O|1998-04-24|1998-04-04|1998-05-02|NONE|AIR|aggle furiously during the fluffily r| +8874|944098|31653|2|1|1142.05|0.04|0.00|N|O|1998-05-08|1998-04-01|1998-05-27|COLLECT COD|AIR|l packages. sly, even pinto be| +8874|440849|28374|3|33|59064.06|0.08|0.07|N|O|1998-01-29|1998-04-17|1998-02-06|COLLECT COD|RAIL|ages against the final, ir| +8874|341409|16422|4|48|69618.72|0.06|0.07|N|O|1998-05-10|1998-03-01|1998-05-29|TAKE BACK RETURN|MAIL| final requests. fluffily pend| +8874|48092|35593|5|11|11440.99|0.00|0.08|N|O|1998-03-23|1998-04-07|1998-03-25|NONE|SHIP|ges among the blithely ironic account| +8874|270031|7547|6|14|14014.28|0.00|0.07|N|O|1998-04-19|1998-02-28|1998-05-16|NONE|MAIL|ual asymptotes serve n| +8874|403413|3414|7|41|53971.99|0.08|0.06|N|O|1998-05-08|1998-03-21|1998-06-07|COLLECT COD|MAIL|en, final instructions ha| +8875|149679|24684|1|26|44945.42|0.04|0.04|R|F|1992-11-16|1992-11-28|1992-12-14|COLLECT COD|REG AIR|hely fluff| +8875|653374|28401|2|13|17255.42|0.05|0.00|A|F|1992-12-08|1993-01-05|1993-01-02|DELIVER IN PERSON|MAIL|ly express th| +8875|250836|25847|3|23|41096.86|0.02|0.01|R|F|1993-01-05|1992-12-18|1993-02-02|DELIVER IN PERSON|TRUCK|y regular foxes use. special hockey playe| +8875|795933|20964|4|20|40578.00|0.00|0.02|R|F|1992-11-01|1993-01-14|1992-11-05|TAKE BACK RETURN|SHIP|encies. quickly ironic accounts h| +8876|264805|2321|1|5|8848.95|0.10|0.01|N|O|1998-04-29|1998-03-31|1998-05-08|TAKE BACK RETURN|AIR|ously even excuses detect of | +8876|573729|36241|2|25|45067.50|0.00|0.05|N|O|1998-03-02|1998-03-23|1998-03-26|TAKE BACK RETURN|FOB|usly. requests cajole carefully qui| +8876|655169|5170|3|29|32599.77|0.05|0.08|N|O|1998-03-15|1998-03-08|1998-04-10|TAKE BACK RETURN|TRUCK|ely. blithely regular theodolites | +8876|425027|12552|4|1|952.00|0.00|0.05|N|O|1998-05-15|1998-04-14|1998-06-02|DELIVER IN PERSON|AIR| slyly regular foxes wake. iro| +8876|424305|11830|5|48|59005.44|0.10|0.03|N|O|1998-04-25|1998-04-11|1998-05-21|DELIVER IN PERSON|SHIP|ast the carefully bold excuses. | +8876|281168|6179|6|6|6894.90|0.00|0.00|N|O|1998-02-03|1998-03-11|1998-02-15|TAKE BACK RETURN|AIR|pinto beans according to the bold, even pl| +8877|306890|19397|1|28|53112.64|0.09|0.02|N|O|1995-09-07|1995-08-30|1995-10-06|NONE|FOB|e. quick courts boost si| +8877|897652|10170|2|17|28043.37|0.02|0.03|N|O|1995-09-17|1995-07-19|1995-09-30|TAKE BACK RETURN|TRUCK|iously bold accounts across| +8877|833402|33403|3|42|56085.12|0.04|0.02|N|O|1995-07-17|1995-08-01|1995-07-30|TAKE BACK RETURN|RAIL|nic deposits along the ironi| +8877|985549|23107|4|4|6538.00|0.01|0.00|N|O|1995-09-13|1995-08-15|1995-09-16|TAKE BACK RETURN|FOB|are carefully alongside | +8877|111503|11504|5|1|1514.50|0.00|0.06|N|O|1995-09-20|1995-07-30|1995-09-22|COLLECT COD|SHIP|pendencies print furiously after the | +8877|19346|19347|6|9|11388.06|0.00|0.03|N|O|1995-08-03|1995-08-01|1995-08-08|NONE|TRUCK|lyly regular r| +8877|132831|32832|7|7|13046.81|0.05|0.02|N|O|1995-10-03|1995-07-23|1995-10-16|DELIVER IN PERSON|MAIL|o beans wake never. carefully | +8878|480355|42865|1|28|37389.24|0.01|0.05|N|O|1998-06-24|1998-08-01|1998-06-27|DELIVER IN PERSON|SHIP|ress instruction| +8879|770365|45396|1|29|41624.57|0.00|0.08|R|F|1992-07-24|1992-06-03|1992-08-05|COLLECT COD|RAIL|s the requests haggle ab| +8879|518680|31191|2|49|83234.34|0.08|0.05|R|F|1992-04-18|1992-05-19|1992-04-24|TAKE BACK RETURN|FOB|ely unusual ide| +8879|447685|22702|3|8|13061.28|0.08|0.06|R|F|1992-08-02|1992-06-03|1992-08-25|TAKE BACK RETURN|FOB|sits. instructions after the bli| +8879|237745|12754|4|36|60578.28|0.05|0.07|R|F|1992-06-08|1992-07-09|1992-06-16|NONE|MAIL|e slyly even deposits. qui| +8904|616172|28685|1|33|35908.62|0.01|0.08|N|O|1996-12-29|1997-01-01|1996-12-31|COLLECT COD|SHIP|lithe packages wake aft| +8904|992366|42367|2|23|33541.36|0.10|0.02|N|O|1997-02-28|1997-01-25|1997-03-24|COLLECT COD|RAIL|asymptotes. unusual instructions haggle. ru| +8904|689713|14740|3|29|49377.72|0.09|0.01|N|O|1997-01-20|1997-01-22|1997-02-02|NONE|MAIL|nding, daring accounts against | +8904|55|12556|4|12|11460.60|0.03|0.08|N|O|1996-11-24|1997-01-17|1996-12-19|TAKE BACK RETURN|FOB| to the silent deposits! blithely quie| +8904|917478|5033|5|42|62808.06|0.10|0.02|N|O|1996-12-22|1997-02-04|1997-01-18|TAKE BACK RETURN|REG AIR|deas are furiously. | +8904|43367|5868|6|34|44552.24|0.09|0.03|N|O|1997-01-02|1997-02-05|1997-01-06|DELIVER IN PERSON|MAIL|cial warthog| +8904|856316|6317|7|38|48346.26|0.00|0.05|N|O|1996-12-11|1996-12-14|1997-01-05|COLLECT COD|TRUCK|osits sleep carefully c| +8905|96316|21319|1|34|44618.54|0.02|0.04|A|F|1993-10-29|1993-12-05|1993-11-13|NONE|REG AIR|ecial accounts. ironic packages would boos| +8905|770475|32991|2|35|54090.40|0.02|0.03|A|F|1993-12-03|1993-11-15|1994-01-02|COLLECT COD|SHIP|phins haggle alongside of the f| +8906|565043|2577|1|29|32132.58|0.06|0.04|N|O|1996-12-05|1997-01-01|1996-12-27|COLLECT COD|AIR|e final accounts use | +8906|661882|36909|2|33|60847.05|0.03|0.03|N|O|1996-12-19|1996-11-22|1997-01-16|DELIVER IN PERSON|REG AIR|slyly. quickly permanent frays sleep | +8906|236560|11569|3|49|73330.95|0.02|0.03|N|O|1996-11-21|1997-01-05|1996-12-14|TAKE BACK RETURN|AIR|posits cajole fluffily again| +8906|853946|3947|4|21|39897.90|0.01|0.00|N|O|1996-12-03|1996-12-30|1996-12-20|COLLECT COD|FOB|nts cajole| +8906|254015|29026|5|2|1938.00|0.04|0.03|N|O|1996-10-25|1996-12-14|1996-11-23|TAKE BACK RETURN|TRUCK|ntly final epitaphs integ| +8906|223965|36470|6|17|32112.15|0.06|0.00|N|O|1997-01-15|1996-12-31|1997-01-29|COLLECT COD|AIR|sual dependenci| +8906|171146|46153|7|5|6085.70|0.06|0.02|N|O|1997-01-15|1997-01-05|1997-01-26|DELIVER IN PERSON|TRUCK|ts cajole slyly. even requests wa| +8907|450672|25691|1|42|68151.30|0.04|0.04|N|O|1997-08-12|1997-07-13|1997-08-28|NONE|RAIL|ole never carefully pending| +8907|433323|45832|2|17|21357.10|0.10|0.03|N|O|1997-04-26|1997-06-22|1997-05-19|TAKE BACK RETURN|MAIL|ully. pending accounts s| +8907|848663|48664|3|48|77357.76|0.00|0.01|N|O|1997-04-28|1997-06-27|1997-05-15|NONE|AIR|posits. fluffily special packages impres| +8908|298408|10914|1|48|67506.72|0.09|0.03|R|F|1992-09-15|1992-09-14|1992-09-29|DELIVER IN PERSON|MAIL|mptotes haggle: final packages boo| +8908|333668|33669|2|42|71469.30|0.00|0.04|A|F|1992-10-03|1992-09-15|1992-10-16|COLLECT COD|FOB|t the slyly fi| +8908|952179|27218|3|27|33240.51|0.01|0.02|R|F|1992-08-02|1992-09-14|1992-08-30|COLLECT COD|MAIL|ly silent pac| +8908|266032|3548|4|49|48902.98|0.06|0.05|A|F|1992-10-06|1992-09-14|1992-10-13|NONE|RAIL|iously silent theodolites are blithely. qu| +8909|713995|13996|1|7|14062.72|0.09|0.05|R|F|1994-04-19|1994-03-22|1994-05-18|NONE|FOB|nic accounts? quic| +8909|101995|39502|2|33|65900.67|0.03|0.04|A|F|1994-03-09|1994-03-21|1994-03-21|NONE|RAIL|oss the ideas wake a| +8909|217478|42487|3|40|55818.40|0.05|0.04|R|F|1994-01-27|1994-03-30|1994-02-02|TAKE BACK RETURN|TRUCK|to wake. plat| +8909|143249|43250|4|6|7753.44|0.03|0.06|A|F|1994-03-30|1994-03-15|1994-04-14|DELIVER IN PERSON|MAIL|ithely even packages. final accounts boos| +8909|570096|45119|5|41|47808.87|0.04|0.05|A|F|1994-05-12|1994-03-05|1994-05-27|DELIVER IN PERSON|FOB|believe blithely. | +8909|586675|24209|6|24|42279.60|0.01|0.06|A|F|1994-02-08|1994-03-24|1994-03-08|NONE|AIR|al accounts integrate b| +8910|321669|34176|1|23|38884.95|0.00|0.04|N|O|1995-10-26|1995-11-22|1995-11-02|NONE|MAIL|ajole enti| +8910|287031|49537|2|33|33594.66|0.10|0.04|N|O|1995-10-25|1996-01-12|1995-10-29|NONE|MAIL|ts haggle blithely. iron| +8910|121521|9028|3|34|52445.68|0.05|0.08|N|O|1995-11-22|1995-12-29|1995-12-02|TAKE BACK RETURN|RAIL| evenly unusual, silent pinto beans.| +8910|387503|25025|4|7|11133.43|0.02|0.04|N|O|1995-12-13|1996-01-14|1995-12-30|NONE|RAIL|ully even instructions. final, ex| +8910|756123|18639|5|2|2358.18|0.01|0.05|N|O|1995-12-07|1996-01-08|1995-12-30|NONE|MAIL|ending decoys are c| +8911|893373|30925|1|12|16395.96|0.05|0.06|N|O|1996-12-23|1996-11-28|1996-12-25|NONE|AIR|lites above the| +8911|906369|43924|2|9|12377.88|0.04|0.03|N|O|1996-10-18|1996-11-17|1996-10-20|TAKE BACK RETURN|RAIL|fter the slyly stealthy accounts i| +8936|59086|9087|1|49|51208.92|0.00|0.08|A|F|1994-01-30|1993-12-25|1994-02-09|TAKE BACK RETURN|AIR|ly even packages. slyly pending pinto be| +8936|53982|3983|2|27|52271.46|0.06|0.01|A|F|1994-01-22|1994-01-15|1994-02-12|DELIVER IN PERSON|FOB|ully special courts hag| +8936|274260|11776|3|41|50604.25|0.03|0.01|R|F|1993-12-24|1993-12-24|1994-01-23|DELIVER IN PERSON|AIR|ully bold theodolites| +8936|472598|10126|4|43|67534.51|0.05|0.04|R|F|1993-12-09|1993-11-19|1993-12-21|DELIVER IN PERSON|AIR|alongside of the excuses wake carefully fi| +8936|946294|33849|5|46|61651.50|0.04|0.05|R|F|1993-11-02|1993-12-21|1993-11-14|COLLECT COD|RAIL|ggle into the carefully regular as| +8936|348817|36336|6|49|91424.20|0.09|0.04|R|F|1994-01-05|1993-12-22|1994-01-15|COLLECT COD|REG AIR|requests. blithely d| +8936|556548|6549|7|48|77016.96|0.03|0.07|R|F|1993-10-22|1994-01-01|1993-10-25|COLLECT COD|REG AIR|dependencies. ironic accounts affix| +8937|895555|8073|1|8|12404.08|0.10|0.04|N|O|1996-01-08|1996-04-01|1996-01-19|NONE|FOB|structions cajole quickly final depos| +8937|577362|39874|2|20|28786.80|0.09|0.05|N|O|1996-03-26|1996-03-26|1996-04-02|COLLECT COD|AIR|es. ironic deposits are blithely. r| +8937|714428|26943|3|40|57695.60|0.09|0.00|N|O|1996-03-15|1996-04-05|1996-03-27|COLLECT COD|SHIP|nt platelets haggle. ironic ac| +8937|390606|40607|4|49|83132.91|0.03|0.05|N|O|1996-02-07|1996-04-02|1996-02-10|TAKE BACK RETURN|TRUCK|sual dependencies boost quickly. q| +8937|912660|12661|5|29|48505.98|0.03|0.05|N|O|1996-01-07|1996-04-02|1996-01-11|NONE|RAIL|yly even requests.| +8937|68150|18151|6|6|6708.90|0.02|0.01|N|O|1996-02-19|1996-03-14|1996-03-11|TAKE BACK RETURN|TRUCK|ng packages run. pac| +8938|854438|41990|1|34|47341.26|0.09|0.03|R|F|1992-06-06|1992-07-27|1992-06-30|COLLECT COD|RAIL|cies detect furiously. blithely reg| +8938|526534|39045|2|42|65541.42|0.05|0.07|R|F|1992-06-11|1992-06-26|1992-07-06|NONE|SHIP| cajole. express r| +8938|455259|42787|3|41|49783.43|0.07|0.02|R|F|1992-09-03|1992-07-05|1992-09-17|NONE|SHIP|equests. pending foxes boo| +8939|904907|29944|1|45|86033.70|0.03|0.07|A|F|1994-04-12|1994-04-29|1994-05-09|NONE|TRUCK|luffily even as| +8939|757216|44762|2|38|48380.84|0.01|0.02|R|F|1994-05-04|1994-04-15|1994-05-16|COLLECT COD|REG AIR|ironic instr| +8939|519614|32125|3|2|3267.18|0.03|0.02|R|F|1994-02-27|1994-03-28|1994-03-08|COLLECT COD|TRUCK|ckages. excuses sublate against the | +8939|139008|1511|4|44|46068.00|0.08|0.02|A|F|1994-04-22|1994-03-28|1994-05-22|DELIVER IN PERSON|FOB|uickly final| +8939|295327|20338|5|37|48925.47|0.05|0.01|R|F|1994-03-07|1994-04-28|1994-03-16|NONE|RAIL|eans. final, special | +8940|194292|44293|1|49|67928.21|0.08|0.08|N|O|1998-02-20|1997-12-23|1998-03-19|NONE|FOB|oss the requests. slyly dogged instruction| +8940|457617|45145|2|28|44088.52|0.06|0.08|N|O|1998-01-20|1998-01-19|1998-02-09|DELIVER IN PERSON|RAIL| solve carefully. | +8940|154753|4754|3|45|81348.75|0.10|0.07|N|O|1998-02-09|1998-01-27|1998-02-20|NONE|RAIL| beans. even ideas are. furious| +8941|323166|23167|1|39|46376.85|0.01|0.04|N|O|1996-09-16|1996-08-04|1996-09-24|DELIVER IN PERSON|AIR|ly bold deposits should maintain | +8941|447697|47698|2|31|50984.77|0.09|0.04|N|O|1996-09-21|1996-08-22|1996-09-28|TAKE BACK RETURN|MAIL|fully silent account| +8941|432035|44544|3|19|18373.19|0.05|0.07|N|O|1996-07-16|1996-08-29|1996-08-05|COLLECT COD|MAIL|l requests. ironic foxes cajole furiou| +8941|202404|14909|4|30|39191.70|0.03|0.03|N|O|1996-08-12|1996-09-20|1996-08-28|TAKE BACK RETURN|TRUCK|r accounts. | +8942|654167|4168|1|25|28028.25|0.05|0.00|N|O|1997-12-05|1997-10-28|1998-01-02|DELIVER IN PERSON|RAIL|onic packages across the requests boost f| +8942|572311|47334|2|9|12449.61|0.01|0.06|N|O|1997-10-26|1997-10-24|1997-10-30|COLLECT COD|MAIL|quickly even ideas. blithely bold the| +8942|816651|29168|3|36|56433.96|0.00|0.04|N|O|1997-09-09|1997-11-04|1997-09-20|NONE|MAIL|xes-- furiously even accounts d| +8942|450753|13263|4|26|44296.98|0.01|0.05|N|O|1997-09-26|1997-10-21|1997-10-26|NONE|MAIL|es. unusual foxes a| +8942|794508|32054|5|19|30446.93|0.00|0.05|N|O|1997-10-11|1997-11-02|1997-10-29|DELIVER IN PERSON|TRUCK|egular dinos. final, reg| +8942|295390|20401|6|17|23551.46|0.04|0.08|N|O|1997-09-27|1997-10-24|1997-10-12|NONE|REG AIR|p regular, | +8942|607752|7753|7|40|66388.80|0.05|0.06|N|O|1997-10-14|1997-10-17|1997-10-31|COLLECT COD|TRUCK|regular ideas haggle per| +8943|485192|47702|1|40|47086.80|0.01|0.07|N|O|1995-12-18|1995-11-09|1996-01-17|TAKE BACK RETURN|RAIL|s haggle carefully according to the regular| +8968|20428|7929|1|50|67421.00|0.08|0.01|A|F|1993-08-02|1993-06-29|1993-08-20|DELIVER IN PERSON|AIR|along the even, regular pack| +8968|325876|38383|2|50|95093.00|0.00|0.08|A|F|1993-06-13|1993-06-27|1993-06-23|NONE|REG AIR|ep carefully ideas-- blithe| +8968|986530|11569|3|21|33946.29|0.06|0.00|A|F|1993-06-20|1993-05-15|1993-07-18|COLLECT COD|REG AIR|nic requests| +8968|599174|24197|4|31|39467.65|0.06|0.04|A|F|1993-06-07|1993-05-16|1993-07-04|DELIVER IN PERSON|RAIL|t the silent, unusual platelets sleep abo| +8968|309947|9948|5|13|25440.09|0.03|0.03|R|F|1993-04-13|1993-05-24|1993-04-21|TAKE BACK RETURN|TRUCK|ions integrate fluffily. inst| +8969|461736|11737|1|19|32256.49|0.02|0.04|N|O|1996-06-28|1996-07-23|1996-06-30|NONE|FOB| quickly unusual deposits ha| +8969|386902|49410|2|34|67622.26|0.10|0.04|N|O|1996-07-29|1996-08-06|1996-08-22|TAKE BACK RETURN|SHIP|gular instructions. r| +8970|640221|27758|1|21|24384.99|0.06|0.02|N|O|1998-05-20|1998-06-15|1998-06-05|TAKE BACK RETURN|FOB|even accounts are| +8970|184964|9971|2|45|92203.20|0.00|0.02|N|O|1998-07-26|1998-07-03|1998-08-17|DELIVER IN PERSON|RAIL|furious wart| +8971|842330|4847|1|47|59797.63|0.10|0.06|A|F|1994-07-05|1994-05-06|1994-07-14|TAKE BACK RETURN|REG AIR|s breach. slyly even platelets d| +8971|28333|40834|2|16|20181.28|0.07|0.05|R|F|1994-04-17|1994-06-25|1994-05-07|TAKE BACK RETURN|TRUCK|owly instructions. slyly ironic package| +8971|187698|37699|3|1|1785.69|0.04|0.07|R|F|1994-05-06|1994-07-01|1994-05-12|DELIVER IN PERSON|SHIP|nto beans. quickly unusual| +8971|628699|3724|4|36|58595.76|0.10|0.02|R|F|1994-06-17|1994-06-11|1994-06-27|COLLECT COD|MAIL|special pinto beans. furiously fina| +8972|141498|29005|1|7|10776.43|0.06|0.02|N|O|1996-06-16|1996-08-02|1996-07-16|COLLECT COD|MAIL|tructions.| +8972|146445|46446|2|14|20880.16|0.07|0.01|N|O|1996-09-27|1996-07-11|1996-10-18|NONE|RAIL|ording to the quickly regular acco| +8972|300648|25661|3|11|18134.93|0.06|0.08|N|O|1996-07-31|1996-07-26|1996-08-15|DELIVER IN PERSON|FOB|re silently regular excuses. | +8972|988984|38985|4|19|39385.86|0.07|0.01|N|O|1996-06-23|1996-09-03|1996-07-08|NONE|SHIP|lly about the quickly u| +8973|659480|34507|1|38|54699.10|0.05|0.05|R|F|1993-05-14|1993-03-31|1993-05-24|TAKE BACK RETURN|SHIP|luffily quic| +8973|873227|48262|2|9|10801.62|0.02|0.01|R|F|1993-02-09|1993-03-13|1993-03-06|COLLECT COD|SHIP|al instructions eat against t| +8973|310728|23235|3|24|41729.04|0.07|0.00|A|F|1993-02-04|1993-03-16|1993-02-12|NONE|TRUCK| beans. express ideas slee| +8973|389987|15002|4|24|49847.28|0.09|0.08|A|F|1993-03-19|1993-02-22|1993-04-12|NONE|TRUCK| cajole carefully ideas| +8973|507439|44970|5|5|7232.05|0.03|0.05|R|F|1993-04-19|1993-03-06|1993-04-22|TAKE BACK RETURN|REG AIR|t the caref| +8973|526512|14043|6|46|70770.54|0.06|0.05|R|F|1993-01-22|1993-03-06|1993-02-12|DELIVER IN PERSON|AIR|hould are care| +8974|834844|47361|1|27|48027.60|0.09|0.05|A|F|1992-04-05|1992-03-22|1992-04-09|DELIVER IN PERSON|FOB|es are. regular theodo| +8974|222257|34762|2|6|7075.44|0.00|0.02|R|F|1992-02-27|1992-03-05|1992-03-24|TAKE BACK RETURN|RAIL|le furiously| +8974|465362|15363|3|3|3982.02|0.00|0.05|A|F|1992-02-10|1992-02-29|1992-02-29|COLLECT COD|REG AIR|accounts sleep carefully across| +8975|824867|49900|1|46|82423.72|0.02|0.05|N|O|1997-11-08|1997-12-07|1997-12-07|DELIVER IN PERSON|RAIL|st: final, final instructions pl| +8975|535221|22752|2|23|28892.60|0.02|0.07|N|O|1997-12-03|1997-12-05|1997-12-09|TAKE BACK RETURN|AIR|nal platelets grow carefully fluf| +9000|394139|31661|1|19|23429.28|0.04|0.08|A|F|1993-08-10|1993-07-13|1993-08-28|COLLECT COD|REG AIR|requests. instructions use. furiously bra| +9000|282613|7624|2|18|28720.80|0.04|0.00|R|F|1993-07-03|1993-08-06|1993-07-12|DELIVER IN PERSON|RAIL|iously even requests are carefully. bol| +9000|865234|15235|3|24|28780.56|0.05|0.03|A|F|1993-07-20|1993-08-09|1993-08-03|DELIVER IN PERSON|AIR|s. permanent,| +9001|672900|22901|1|44|82406.28|0.07|0.03|N|O|1998-07-20|1998-09-28|1998-07-26|TAKE BACK RETURN|AIR| waters wake after the slyly furious | +9001|422466|9991|2|28|38876.32|0.07|0.08|N|O|1998-09-26|1998-09-17|1998-10-25|DELIVER IN PERSON|SHIP|ccording to the slyly ironic account| +9001|374054|11576|3|27|30457.08|0.04|0.03|N|O|1998-10-24|1998-08-26|1998-10-28|DELIVER IN PERSON|REG AIR|. Tiresias after| +9002|262821|12822|1|12|21405.72|0.09|0.03|N|O|1996-08-07|1996-07-21|1996-08-21|TAKE BACK RETURN|REG AIR|refully against | +9002|217610|17611|2|17|25969.20|0.09|0.04|N|O|1996-08-20|1996-07-25|1996-08-25|NONE|MAIL|ending, special theodoli| +9003|352826|15334|1|27|50727.87|0.05|0.03|N|O|1996-01-28|1996-01-08|1996-02-17|NONE|MAIL| regular accounts are furiously at the | +9003|933659|21214|2|9|15233.49|0.07|0.06|N|O|1996-01-31|1996-01-11|1996-02-16|NONE|REG AIR| quickly special th| +9003|3688|41189|3|25|39792.00|0.03|0.06|N|O|1996-02-03|1996-02-15|1996-02-08|TAKE BACK RETURN|AIR|ckages haggle silent, final requests. even| +9003|973270|48309|4|8|10745.84|0.07|0.01|N|O|1996-02-19|1996-01-18|1996-02-20|DELIVER IN PERSON|FOB|outs haggle across the daring theod| +9003|737706|25249|5|35|61028.45|0.03|0.00|N|O|1996-01-23|1996-02-16|1996-01-26|DELIVER IN PERSON|SHIP| deposits are carefully | +9003|611514|11515|6|34|48466.32|0.02|0.04|N|O|1996-01-03|1996-02-17|1996-01-05|TAKE BACK RETURN|TRUCK| excuses nag| +9004|557561|45095|1|3|4855.62|0.10|0.04|A|F|1994-10-21|1994-10-31|1994-11-16|DELIVER IN PERSON|TRUCK|ully. packages across the quickly express| +9004|915082|27601|2|42|46075.68|0.06|0.05|R|F|1994-09-10|1994-11-09|1994-09-16|COLLECT COD|REG AIR|e ironic sheaves. pending| +9004|781432|18978|3|37|55995.80|0.07|0.05|R|F|1994-10-10|1994-09-26|1994-10-14|COLLECT COD|AIR|posits. tithes sleep. regularly fin| +9005|449964|49965|1|14|26795.16|0.08|0.00|R|F|1994-04-24|1994-03-04|1994-05-24|COLLECT COD|AIR|eas. carefully ironic t| +9005|543464|18485|2|34|51252.96|0.01|0.04|R|F|1994-01-29|1994-03-10|1994-02-21|NONE|REG AIR|ternes boost fluffily around| +9005|983227|45747|3|5|6550.90|0.06|0.04|A|F|1994-03-02|1994-02-03|1994-03-09|DELIVER IN PERSON|SHIP|es wake slyly. | +9005|79795|42297|4|41|72766.39|0.01|0.02|A|F|1994-04-08|1994-03-13|1994-05-01|COLLECT COD|RAIL|usly regular accounts. carefully re| +9005|104629|42136|5|21|34306.02|0.03|0.04|A|F|1994-04-04|1994-03-31|1994-05-04|COLLECT COD|REG AIR|about the unusual ideas. package| +9005|491953|16972|6|37|71962.41|0.03|0.01|A|F|1994-04-13|1994-03-22|1994-05-03|NONE|RAIL|hless ideas haggle care| +9006|882232|44750|1|7|8499.33|0.10|0.04|N|O|1997-07-28|1997-07-15|1997-08-01|TAKE BACK RETURN|TRUCK|the silent acc| +9006|661478|49018|2|12|17273.28|0.05|0.02|N|O|1997-08-21|1997-08-22|1997-09-09|DELIVER IN PERSON|REG AIR|, pending platelets nag up the s| +9006|455950|18460|3|14|26683.02|0.05|0.02|N|O|1997-09-15|1997-08-22|1997-09-16|COLLECT COD|SHIP| packages sleep acco| +9006|145054|7557|4|8|8792.40|0.07|0.01|N|O|1997-09-29|1997-07-14|1997-10-03|DELIVER IN PERSON|TRUCK|ly bold requests. bold, regular idea| +9006|914972|14973|5|30|59607.90|0.08|0.02|N|O|1997-07-15|1997-08-07|1997-08-10|DELIVER IN PERSON|SHIP|en accounts hagg| +9006|922669|10224|6|45|76122.90|0.01|0.07|N|O|1997-09-29|1997-07-22|1997-10-20|DELIVER IN PERSON|REG AIR|jole against the quickly ironic deposit| +9007|590821|28355|1|44|84119.20|0.06|0.04|N|O|1997-07-26|1997-10-06|1997-08-23|TAKE BACK RETURN|AIR|- final re| +9007|918727|31246|2|21|36659.28|0.08|0.03|N|O|1997-08-18|1997-09-12|1997-08-28|DELIVER IN PERSON|TRUCK|ests nag blithely blithe| +9007|35262|10263|3|5|5986.30|0.10|0.03|N|O|1997-09-29|1997-09-19|1997-10-10|TAKE BACK RETURN|MAIL|t the fluffily ironic requests? quickly eve| +9007|643211|5724|4|30|34625.40|0.07|0.01|N|O|1997-09-11|1997-09-26|1997-09-23|COLLECT COD|AIR| even platel| +9007|447113|34638|5|46|48764.14|0.05|0.05|N|O|1997-08-31|1997-10-14|1997-09-20|TAKE BACK RETURN|MAIL|taphs. even accounts promise thinl| +9007|612970|12971|6|8|15063.52|0.09|0.05|N|O|1997-07-30|1997-09-24|1997-08-13|TAKE BACK RETURN|REG AIR|according | +9032|541843|29374|1|32|60314.24|0.10|0.08|N|O|1997-02-13|1997-02-03|1997-03-01|TAKE BACK RETURN|MAIL|ages. even dolphi| +9032|748549|11064|2|38|60705.38|0.03|0.08|N|O|1997-04-06|1997-02-18|1997-04-15|DELIVER IN PERSON|AIR|ccounts run furiously | +9033|936253|23808|1|6|7735.26|0.02|0.05|N|O|1997-01-03|1996-12-18|1997-01-08|TAKE BACK RETURN|SHIP|hlessly regular fox| +9033|603444|15957|2|24|32337.84|0.09|0.00|N|O|1997-03-15|1997-01-29|1997-03-18|COLLECT COD|AIR|ckly final packages. slyl| +9034|779615|42131|1|4|6778.32|0.08|0.03|N|O|1997-05-16|1997-06-15|1997-06-15|COLLECT COD|AIR|eodolites. depo| +9034|976475|26476|2|34|52748.62|0.00|0.03|N|O|1997-05-24|1997-06-22|1997-06-19|NONE|TRUCK|beans after the re| +9034|598732|11244|3|9|16476.39|0.04|0.01|N|O|1997-07-24|1997-06-11|1997-07-25|NONE|RAIL|s regular instru| +9035|587987|499|1|4|8299.84|0.05|0.07|N|O|1995-12-20|1995-11-20|1996-01-12|NONE|MAIL|ular packages cajo| +9035|283202|8213|2|49|58074.31|0.07|0.00|N|O|1995-11-18|1995-10-23|1995-11-25|TAKE BACK RETURN|RAIL| maintain blithely-- express, iron| +9035|763142|25658|3|14|16871.54|0.02|0.08|N|O|1995-09-21|1995-12-04|1995-10-14|NONE|MAIL|riously even excuses wake sly| +9036|509380|9381|1|5|6946.80|0.03|0.07|A|F|1992-12-07|1992-10-25|1992-12-22|NONE|MAIL|l deposits. b| +9036|137012|12017|2|32|33568.32|0.02|0.04|R|F|1992-11-30|1992-11-09|1992-12-19|NONE|AIR|efully bold package| +9036|756236|18752|3|21|27136.20|0.02|0.07|R|F|1992-10-02|1992-10-18|1992-10-28|TAKE BACK RETURN|SHIP| theodolites wake carefully. fluffily | +9036|44285|44286|4|50|61464.00|0.08|0.08|R|F|1992-09-11|1992-10-13|1992-10-02|NONE|AIR|ar ideas n| +9036|283499|33500|5|27|40026.96|0.05|0.08|R|F|1992-12-03|1992-10-23|1992-12-13|TAKE BACK RETURN|FOB|counts cajo| +9036|753548|28579|6|32|51248.32|0.07|0.07|R|F|1992-11-28|1992-11-08|1992-12-24|DELIVER IN PERSON|RAIL|ly regular deposits. packa| +9036|869479|31997|7|37|53591.91|0.01|0.01|R|F|1992-11-09|1992-10-30|1992-12-02|TAKE BACK RETURN|FOB|ts. fluffily express accounts cajole fl| +9037|333499|46006|1|21|32182.08|0.09|0.06|A|F|1993-09-17|1993-11-12|1993-10-11|COLLECT COD|RAIL|blithely express deposits integr| +9037|116357|3864|2|45|61800.75|0.01|0.00|A|F|1993-09-10|1993-10-20|1993-09-11|NONE|SHIP|onic deposits. | +9037|600800|38337|3|47|79936.19|0.06|0.05|R|F|1993-09-20|1993-11-12|1993-10-08|TAKE BACK RETURN|FOB|ests. final, iron| +9037|644950|44951|4|7|13264.44|0.00|0.06|R|F|1993-09-03|1993-11-15|1993-09-08|TAKE BACK RETURN|TRUCK|ess requests. carefully regular ideas kin| +9038|861666|11667|1|5|8138.10|0.04|0.04|R|F|1994-04-13|1994-04-26|1994-05-05|DELIVER IN PERSON|AIR|pths? pending, unusual foxes boost. pi| +9038|18238|30739|2|28|32374.44|0.10|0.01|A|F|1994-02-15|1994-03-04|1994-03-08|NONE|FOB|ly ironic requests are slyly caref| +9039|359358|21866|1|8|11338.72|0.03|0.05|A|F|1992-06-24|1992-07-26|1992-07-16|TAKE BACK RETURN|TRUCK|eodolites nag around the fi| +9064|203412|3413|1|9|11838.60|0.00|0.04|R|F|1994-09-22|1994-08-24|1994-10-04|COLLECT COD|RAIL| boldly brave pinto beans a| +9064|733834|46349|2|47|87786.60|0.01|0.02|A|F|1994-09-26|1994-07-15|1994-10-07|COLLECT COD|RAIL|es across the furiously even | +9064|541968|16989|3|16|32159.04|0.05|0.01|R|F|1994-07-21|1994-09-04|1994-07-29|NONE|FOB| unwind. stealthy instructions affix| +9064|852301|27336|4|10|12532.60|0.02|0.03|R|F|1994-08-27|1994-08-31|1994-08-31|COLLECT COD|RAIL|accounts cajole fluffily acc| +9065|749345|24374|1|39|54378.09|0.04|0.00|N|O|1995-12-03|1996-01-17|1995-12-23|COLLECT COD|RAIL|ly pending multipliers are slyly| +9065|235299|10308|2|23|28388.44|0.08|0.03|N|O|1996-01-27|1995-12-14|1996-02-14|TAKE BACK RETURN|MAIL|cial pinto beans haggle carefull| +9065|670226|32740|3|15|17942.85|0.03|0.04|N|O|1996-01-21|1995-12-25|1996-02-16|DELIVER IN PERSON|AIR| final pinto | +9065|475932|25933|4|50|95395.50|0.10|0.05|N|O|1995-10-27|1995-12-19|1995-10-31|DELIVER IN PERSON|REG AIR|of the furiously ir| +9065|986721|49241|5|32|57845.76|0.09|0.05|N|O|1995-12-14|1995-12-13|1995-12-27|DELIVER IN PERSON|REG AIR|nstructions-- final, even pinto bea| +9065|813918|1467|6|23|42133.01|0.07|0.00|N|O|1995-12-30|1995-12-16|1996-01-22|DELIVER IN PERSON|REG AIR|gular courts affix sly| +9065|508729|8730|7|12|20852.40|0.04|0.02|N|O|1996-01-01|1995-12-11|1996-01-18|COLLECT COD|FOB|uthlessly silent reques| +9066|195138|32648|1|28|34527.64|0.08|0.06|N|O|1997-02-13|1996-12-21|1997-02-16|DELIVER IN PERSON|TRUCK|ctions; furiously | +9066|668464|43491|2|16|22918.88|0.03|0.06|N|O|1996-11-20|1997-01-08|1996-11-29|COLLECT COD|SHIP|y fluffily even ideas. blithe| +9066|866641|41676|3|29|46620.40|0.08|0.07|N|O|1996-11-28|1996-12-20|1996-12-15|COLLECT COD|RAIL|ackages. final, regular packages are slyly| +9067|290727|15738|1|43|73861.53|0.03|0.08|R|F|1995-03-04|1995-01-13|1995-03-29|DELIVER IN PERSON|AIR| fluffily. quickly final | +9068|482439|32440|1|31|44063.71|0.02|0.01|A|F|1992-04-11|1992-04-07|1992-04-29|DELIVER IN PERSON|TRUCK|ts cajole across the carefully fi| +9068|338067|13080|2|22|24311.10|0.00|0.01|A|F|1992-04-03|1992-04-16|1992-05-03|NONE|REG AIR|thely regular | +9068|888203|721|3|16|19058.56|0.10|0.02|A|F|1992-04-12|1992-04-21|1992-04-19|DELIVER IN PERSON|AIR|ggle carefully agai| +9068|12132|37133|4|26|27147.38|0.00|0.07|A|F|1992-03-10|1992-03-24|1992-04-04|COLLECT COD|REG AIR|y final ideas. blithe| +9068|891594|41595|5|8|12684.40|0.10|0.03|A|F|1992-03-09|1992-03-07|1992-04-07|TAKE BACK RETURN|REG AIR|pecial packages are careful| +9069|905604|18123|1|34|54725.04|0.02|0.04|R|F|1994-05-16|1994-03-12|1994-06-13|COLLECT COD|MAIL|y. slyly pending deposits sleep. bli| +9069|473158|23159|2|28|31671.64|0.04|0.04|R|F|1994-03-13|1994-03-06|1994-03-18|NONE|REG AIR|yly. furiously fin| +9069|352322|39844|3|27|37106.37|0.00|0.05|R|F|1994-04-15|1994-04-23|1994-05-01|DELIVER IN PERSON|AIR|sly enticing accounts| +9070|185007|10014|1|37|40404.00|0.08|0.05|N|O|1997-03-30|1997-01-30|1997-04-08|NONE|REG AIR|d foxes boost. blithely bold | +9070|398068|10576|2|12|13992.60|0.03|0.06|N|O|1997-03-30|1997-03-15|1997-04-07|DELIVER IN PERSON|MAIL|lar deposits along the carefull| +9070|326252|13771|3|29|37068.96|0.07|0.03|N|O|1997-02-01|1997-02-05|1997-02-26|NONE|TRUCK|eposits. final, pending requests| +9070|301948|1949|4|47|91646.71|0.10|0.05|N|O|1997-02-04|1997-02-19|1997-03-01|COLLECT COD|RAIL|ymptotes. excuses hinder bl| +9071|184900|9907|1|1|1984.90|0.10|0.06|R|F|1992-07-03|1992-06-22|1992-07-19|NONE|AIR|ly regular pains grow carefull| +9071|606511|6512|2|7|9922.36|0.07|0.01|A|F|1992-08-04|1992-07-01|1992-08-15|TAKE BACK RETURN|AIR|egular, ironic deposits. pending | +9096|60669|35672|1|37|60297.42|0.04|0.03|N|O|1998-06-26|1998-04-30|1998-07-24|COLLECT COD|MAIL|usual foxes. slyly final dep| +9096|647578|22603|2|23|35087.42|0.06|0.03|N|O|1998-06-30|1998-05-01|1998-07-19|NONE|MAIL|al theodolites nag qu| +9096|838405|38406|3|30|40300.80|0.10|0.07|N|O|1998-06-10|1998-04-15|1998-06-12|DELIVER IN PERSON|RAIL|ccounts are slyly among t| +9096|65940|28442|4|33|62896.02|0.06|0.04|N|O|1998-05-28|1998-05-01|1998-06-06|NONE|TRUCK|ly final de| +9096|244763|19772|5|14|23908.50|0.04|0.07|N|O|1998-06-20|1998-05-12|1998-07-09|DELIVER IN PERSON|FOB|ial instructions cajole sl| +9096|717647|30162|6|41|68249.01|0.04|0.00|N|O|1998-06-29|1998-04-22|1998-07-21|TAKE BACK RETURN|REG AIR|e quickly. furiously ironi| +9097|55131|17633|1|43|46703.59|0.09|0.01|N|O|1998-06-24|1998-05-18|1998-07-07|NONE|TRUCK|iously even requests. | +9097|584315|9338|2|4|5597.16|0.08|0.01|N|O|1998-05-03|1998-06-18|1998-05-11|NONE|AIR| unusual ac| +9098|88260|25764|1|30|37447.80|0.06|0.03|R|F|1992-09-23|1992-11-28|1992-10-10|COLLECT COD|TRUCK|ackages along the furiously | +9098|382411|44919|2|14|20907.60|0.00|0.04|A|F|1992-12-01|1992-10-22|1992-12-12|TAKE BACK RETURN|MAIL|ts use carefully above th| +9098|167802|42809|3|39|72922.20|0.07|0.04|R|F|1992-10-12|1992-11-22|1992-10-15|COLLECT COD|TRUCK| engage slyly ironic foxe| +9098|237665|170|4|15|24039.75|0.00|0.04|R|F|1992-12-10|1992-10-22|1992-12-14|DELIVER IN PERSON|TRUCK|sleep. even requests integrate around | +9098|428456|40965|5|10|13844.30|0.10|0.07|A|F|1992-09-17|1992-11-14|1992-10-07|TAKE BACK RETURN|TRUCK|iously around the blithely even requests. | +9098|43522|43523|6|48|70344.96|0.01|0.02|R|F|1992-10-12|1992-11-01|1992-11-06|TAKE BACK RETURN|REG AIR|counts wake carefully after the regul| +9099|536844|24375|1|5|9404.10|0.09|0.01|N|O|1998-04-29|1998-03-10|1998-05-03|COLLECT COD|MAIL|ss the requests. furiously ironic dolphins| +9099|721636|46665|2|3|4972.80|0.09|0.07|N|O|1998-04-21|1998-03-07|1998-04-28|COLLECT COD|AIR|r courts engage blithely pinto beans| +9099|525256|37767|3|41|52530.43|0.03|0.01|N|O|1998-05-11|1998-05-01|1998-05-30|TAKE BACK RETURN|AIR|ing sentiments boost furiously. care| +9099|965395|2953|4|43|62795.05|0.08|0.03|N|O|1998-05-03|1998-03-04|1998-05-07|NONE|MAIL|blithely fluffily special | +9099|388597|1105|5|38|64052.04|0.09|0.01|N|O|1998-03-22|1998-03-08|1998-04-11|DELIVER IN PERSON|TRUCK|above the regular reques| +9099|141384|41385|6|16|22806.08|0.09|0.00|N|O|1998-03-02|1998-04-20|1998-03-20|COLLECT COD|RAIL|he ironic theodolites believ| +9099|225432|25433|7|38|51581.96|0.03|0.01|N|O|1998-05-04|1998-03-26|1998-05-27|DELIVER IN PERSON|FOB|es at the bravely regula| +9100|824397|49430|1|26|34355.10|0.08|0.05|N|O|1996-10-15|1996-11-03|1996-10-23|COLLECT COD|FOB|n packages. special| +9100|640230|15255|2|10|11702.00|0.05|0.07|N|O|1997-01-14|1996-12-06|1997-01-25|COLLECT COD|SHIP|ts. blithely unusual accounts u| +9100|332765|32766|3|5|8988.75|0.05|0.05|N|O|1996-12-03|1996-11-05|1996-12-30|TAKE BACK RETURN|TRUCK|ole blithely| +9100|771825|9371|4|18|34142.22|0.03|0.01|N|O|1996-11-15|1996-12-06|1996-11-25|COLLECT COD|TRUCK|ding to the ironic, ironic depos| +9101|290729|28245|1|39|67068.69|0.08|0.03|N|O|1996-09-22|1996-10-20|1996-10-11|TAKE BACK RETURN|SHIP|bove the bold| +9101|279907|42413|2|29|54719.81|0.02|0.05|N|O|1996-11-25|1996-09-17|1996-12-01|NONE|MAIL|ular, regular packages haggle carefully| +9101|388511|26033|3|31|49584.50|0.06|0.01|N|O|1996-12-12|1996-09-23|1996-12-15|TAKE BACK RETURN|AIR|cajole across the| +9101|700322|37865|4|13|17189.77|0.07|0.05|N|O|1996-08-27|1996-10-13|1996-09-05|TAKE BACK RETURN|AIR|ent, even theodolite| +9101|304039|29052|5|19|19817.38|0.00|0.05|N|O|1996-10-24|1996-11-08|1996-11-04|COLLECT COD|FOB|es sleep quickly about the slyly | +9101|972027|47066|6|38|41761.24|0.03|0.08|N|O|1996-11-26|1996-11-05|1996-12-02|NONE|AIR|mpress slyly against the r| +9101|850089|12607|7|48|49873.92|0.02|0.01|N|O|1996-08-30|1996-09-23|1996-09-14|DELIVER IN PERSON|AIR|slyly regular ex| +9102|434107|9124|1|36|37478.88|0.07|0.01|A|F|1994-02-17|1994-03-18|1994-02-23|COLLECT COD|SHIP|n requests. furiously regular depo| +9102|35805|48306|2|48|83558.40|0.01|0.03|R|F|1994-02-26|1994-03-30|1994-03-26|COLLECT COD|RAIL|. special requests wake silent accounts. b| +9102|769423|44454|3|7|10446.73|0.02|0.07|A|F|1994-03-28|1994-03-23|1994-04-16|COLLECT COD|RAIL|ns should have to r| +9102|688800|26340|4|16|28620.32|0.02|0.00|A|F|1994-02-10|1994-02-14|1994-03-10|NONE|TRUCK| may are fluffily regular theodolit| +9102|645102|7615|5|30|31412.10|0.09|0.07|A|F|1994-02-17|1994-03-18|1994-03-05|DELIVER IN PERSON|REG AIR|y unusual platelets| +9102|222493|22494|6|27|38217.96|0.01|0.06|R|F|1994-03-07|1994-03-25|1994-03-23|NONE|TRUCK|se along the b| +9102|425881|25882|7|42|75888.12|0.05|0.07|R|F|1994-01-20|1994-04-01|1994-02-13|COLLECT COD|AIR|nding frets doze furious| +9103|771339|33855|1|9|12692.70|0.07|0.05|R|F|1993-02-15|1992-12-20|1993-02-24|NONE|FOB|ges. slyly fina| +9103|882108|19660|2|30|32701.80|0.10|0.07|R|F|1993-01-29|1993-01-01|1993-02-03|NONE|AIR|ions haggl| +9128|829065|4098|1|41|40754.82|0.09|0.03|A|F|1995-02-18|1994-12-14|1995-02-24|COLLECT COD|FOB|its. express depo| +9128|94447|6949|2|14|20180.16|0.01|0.01|R|F|1995-02-08|1994-11-25|1995-02-12|DELIVER IN PERSON|REG AIR|ly regular accounts s| +9128|370111|7633|3|19|22440.90|0.03|0.01|A|F|1995-01-03|1995-01-17|1995-01-28|COLLECT COD|AIR| deposits sleep | +9128|449738|24755|4|25|42192.75|0.00|0.08|A|F|1994-11-25|1994-11-25|1994-12-13|COLLECT COD|MAIL|riously final packages nag. quic| +9128|745608|20637|5|13|21496.41|0.06|0.08|R|F|1994-12-12|1994-12-26|1994-12-14|COLLECT COD|RAIL|egular dependencies. bold, unusual | +9128|430001|5018|6|8|7447.84|0.03|0.00|R|F|1994-12-09|1994-12-13|1995-01-04|NONE|SHIP|uriously. blithely| +9129|707011|32040|1|1|1017.98|0.04|0.04|A|F|1995-01-20|1995-02-20|1995-01-22|TAKE BACK RETURN|RAIL|iously quick excuses haggle blithe| +9129|731258|31259|2|5|6446.10|0.03|0.06|R|F|1995-04-19|1995-02-12|1995-05-06|TAKE BACK RETURN|REG AIR|y regular requests along the rut| +9129|238581|38582|3|23|34950.11|0.09|0.05|A|F|1995-03-28|1995-02-13|1995-04-03|COLLECT COD|MAIL|are along the final, special the| +9129|823589|23590|4|22|33275.88|0.04|0.01|A|F|1995-03-05|1995-02-24|1995-03-30|TAKE BACK RETURN|SHIP|, ironic platelets haggle. slyly s| +9129|53512|3513|5|36|52758.36|0.00|0.01|A|F|1995-04-01|1995-02-09|1995-04-17|COLLECT COD|AIR|. express deposits sleep across th| +9129|364868|2390|6|25|48321.25|0.05|0.01|R|F|1995-04-06|1995-02-12|1995-05-04|DELIVER IN PERSON|AIR|es affix quickly across the si| +9130|162841|25345|1|27|51403.68|0.01|0.08|N|O|1995-12-18|1996-03-04|1996-01-01|TAKE BACK RETURN|RAIL|nto beans are. foxes haggle blithely. | +9130|856294|31329|2|24|30006.00|0.02|0.01|N|O|1996-02-16|1996-02-08|1996-02-21|DELIVER IN PERSON|RAIL|ans? daringly unusual requests sleep furi| +9130|724281|49310|3|2|2610.50|0.02|0.05|N|O|1996-02-26|1996-02-14|1996-03-24|TAKE BACK RETURN|REG AIR|requests sleep quickly about t| +9130|990178|27736|4|26|32971.38|0.09|0.00|N|O|1996-01-26|1996-02-20|1996-01-29|DELIVER IN PERSON|FOB| regular hockey players use slyly; slyly | +9130|911859|49414|5|6|11224.86|0.09|0.02|N|O|1996-02-11|1996-01-14|1996-03-05|COLLECT COD|SHIP|rint. slyly silent deposit| +9131|794479|6995|1|27|42482.88|0.09|0.06|N|O|1998-07-17|1998-08-10|1998-07-29|NONE|RAIL|lar instruction| +9131|800622|25655|2|49|74606.42|0.01|0.02|N|O|1998-07-16|1998-06-27|1998-08-14|TAKE BACK RETURN|FOB| foxes are furiously: instructions ha| +9132|455272|17782|1|8|9818.00|0.03|0.00|N|O|1997-10-21|1997-12-18|1997-11-10|NONE|FOB| carefully carefully unusual foxes| +9132|751300|26331|2|45|60807.15|0.08|0.05|N|O|1998-01-18|1997-11-29|1998-02-02|NONE|FOB|eodolites. even accou| +9133|730263|30264|1|1|1293.23|0.01|0.03|N|O|1997-11-14|1997-11-23|1997-12-08|NONE|TRUCK|le alongsi| +9133|526559|26560|2|39|61835.67|0.06|0.04|N|O|1998-01-03|1997-10-19|1998-01-04|DELIVER IN PERSON|MAIL|inal, regular deposits cajole about the bl| +9134|229150|41655|1|12|12949.68|0.08|0.02|R|F|1994-09-10|1994-10-16|1994-09-30|DELIVER IN PERSON|FOB|ructions. ironic deposits are furious| +9134|308846|8847|2|16|29677.28|0.05|0.00|A|F|1994-11-16|1994-09-05|1994-12-05|COLLECT COD|SHIP|, ironic asymptotes. furio| +9134|768568|31084|3|38|62188.14|0.04|0.05|R|F|1994-08-19|1994-08-31|1994-09-05|COLLECT COD|FOB|nal courts unwind along th| +9134|305897|18404|4|41|78018.08|0.09|0.00|R|F|1994-11-04|1994-09-17|1994-11-30|TAKE BACK RETURN|MAIL|sly pending packages haggle| +9134|206480|18985|5|15|20797.05|0.04|0.04|R|F|1994-08-23|1994-10-02|1994-09-22|DELIVER IN PERSON|RAIL|s after the bold requests sleep even pla| +9134|297234|22245|6|8|9849.76|0.03|0.00|A|F|1994-08-23|1994-10-17|1994-09-14|TAKE BACK RETURN|TRUCK|x around the u| +9134|604589|29614|7|25|37338.75|0.03|0.01|A|F|1994-08-20|1994-10-08|1994-09-08|COLLECT COD|AIR|ecial ideas cajole along the| +9135|313552|38565|1|4|6262.16|0.05|0.01|N|O|1998-06-04|1998-05-30|1998-06-24|COLLECT COD|TRUCK|ly above the furiously | +9135|856392|31427|2|31|41798.85|0.09|0.02|N|O|1998-04-29|1998-06-08|1998-05-04|TAKE BACK RETURN|RAIL|deposits. packages ar| +9160|910714|35751|1|22|37942.74|0.09|0.07|R|F|1994-12-05|1994-12-25|1994-12-31|NONE|REG AIR|eposits. package| +9160|360595|23103|2|18|29800.44|0.09|0.05|R|F|1994-12-27|1994-11-16|1995-01-25|TAKE BACK RETURN|MAIL|ely silent de| +9160|508561|21072|3|12|18834.48|0.08|0.07|R|F|1995-01-04|1994-11-10|1995-01-19|COLLECT COD|SHIP|eposits use along the re| +9160|383397|8412|4|11|16284.18|0.03|0.01|A|F|1995-01-22|1994-12-28|1995-02-04|NONE|SHIP|ress requests wake accor| +9161|978252|3291|1|3|3990.63|0.08|0.03|N|O|1995-09-06|1995-07-06|1995-09-19|TAKE BACK RETURN|RAIL|ct final ideas. ideas against the fluffil| +9162|328761|41268|1|3|5369.25|0.09|0.04|N|O|1995-11-04|1995-10-27|1995-11-23|DELIVER IN PERSON|AIR|its. accounts inside the bl| +9162|470269|45288|2|23|28502.52|0.07|0.07|N|O|1995-10-14|1995-10-27|1995-10-25|TAKE BACK RETURN|FOB|nal instructions. quickly| +9163|67826|42829|1|48|86103.36|0.08|0.07|R|F|1993-09-20|1993-10-13|1993-09-22|TAKE BACK RETURN|REG AIR|fter the fu| +9163|938021|540|2|21|22238.58|0.06|0.02|R|F|1993-08-22|1993-11-16|1993-09-09|COLLECT COD|TRUCK|deas. ironic,| +9164|678485|28486|1|21|30732.45|0.07|0.04|N|O|1996-01-02|1996-01-12|1996-01-15|TAKE BACK RETURN|TRUCK|s. finally bold pinto beans could | +9164|286327|48833|2|9|11819.79|0.03|0.00|N|O|1996-01-06|1996-01-16|1996-01-15|NONE|REG AIR|ructions. ironic, final accounts| +9164|292449|4955|3|33|47567.19|0.08|0.02|N|O|1996-01-05|1995-11-26|1996-01-14|COLLECT COD|FOB|ss dependencie| +9164|176068|13578|4|2|2288.12|0.05|0.04|N|O|1995-11-04|1996-01-19|1995-11-14|NONE|REG AIR|cajole around | +9164|159155|21659|5|17|20640.55|0.05|0.06|N|O|1995-12-05|1995-12-01|1995-12-28|NONE|MAIL| accounts. furiously eve| +9164|913086|25605|6|37|40664.48|0.04|0.02|N|O|1995-12-09|1996-01-21|1995-12-12|DELIVER IN PERSON|AIR|fully beyond the blithely i| +9165|658707|46247|1|15|24985.05|0.00|0.05|N|O|1998-11-08|1998-09-18|1998-11-12|COLLECT COD|AIR|ar forges above | +9165|885727|48245|2|49|83921.32|0.05|0.04|N|O|1998-08-02|1998-09-29|1998-08-08|DELIVER IN PERSON|REG AIR|eep blithely deposits| +9165|402042|2043|3|4|3776.08|0.07|0.08|N|O|1998-09-25|1998-09-18|1998-10-08|NONE|FOB|to the carefully ironic accounts. fluf| +9165|115649|3156|4|50|83232.00|0.04|0.06|N|O|1998-09-03|1998-10-10|1998-09-09|COLLECT COD|MAIL|xes. quickly silent depend| +9165|711419|48962|5|6|8582.28|0.09|0.04|N|O|1998-07-17|1998-08-25|1998-07-22|NONE|MAIL|old, bold deposits sleep. furiously un| +9165|803319|28352|6|12|14667.24|0.03|0.07|N|O|1998-07-20|1998-10-03|1998-08-14|DELIVER IN PERSON|SHIP|iously unusual ideas. | +9166|458289|8290|1|34|42406.84|0.05|0.04|A|F|1993-12-26|1994-01-20|1994-01-21|DELIVER IN PERSON|REG AIR|as doubt slyly alongsid| +9166|452391|27410|2|4|5373.48|0.05|0.06|A|F|1993-11-11|1993-12-14|1993-12-05|COLLECT COD|FOB|jole slyly final | +9166|327511|40018|3|22|33847.00|0.09|0.02|R|F|1994-01-04|1993-12-02|1994-01-31|NONE|REG AIR|y among the regular, express p| +9167|997764|35322|1|45|83777.40|0.10|0.02|A|F|1992-06-25|1992-06-29|1992-07-03|DELIVER IN PERSON|AIR|eposits use slyly above the blithely pendin| +9167|411099|48624|2|19|19191.33|0.08|0.05|A|F|1992-08-23|1992-08-11|1992-09-16|COLLECT COD|REG AIR|nstructions wake busily furiou| +9167|339604|14617|3|6|9861.54|0.06|0.06|R|F|1992-05-28|1992-06-24|1992-06-21|DELIVER IN PERSON|AIR| requests. regular fox| +9192|623881|36394|1|8|14438.80|0.03|0.06|R|F|1993-06-28|1993-08-31|1993-07-11|TAKE BACK RETURN|RAIL|s. ironic, r| +9193|235237|35238|1|24|28133.28|0.02|0.07|N|O|1997-04-13|1997-04-24|1997-04-20|TAKE BACK RETURN|FOB|requests. somas sleep.| +9193|625742|38255|2|15|25015.65|0.01|0.06|N|O|1997-04-22|1997-05-02|1997-05-06|DELIVER IN PERSON|RAIL|s use iron| +9193|837340|12373|3|47|60033.10|0.07|0.06|N|O|1997-07-05|1997-05-11|1997-07-27|COLLECT COD|TRUCK| accounts use fluffily along th| +9193|167237|4747|4|45|58690.35|0.03|0.02|N|O|1997-06-16|1997-05-16|1997-06-23|TAKE BACK RETURN|RAIL|e carefully ironi| +9193|743262|18291|5|49|63956.27|0.08|0.06|N|O|1997-05-16|1997-05-13|1997-06-08|DELIVER IN PERSON|FOB|en packages | +9193|991525|16564|6|17|27480.16|0.02|0.00|N|O|1997-04-06|1997-04-12|1997-04-13|NONE|RAIL| the slyly | +9194|235118|35119|1|3|3159.30|0.05|0.05|A|F|1993-12-15|1993-10-28|1993-12-26|NONE|MAIL|eposits wake in pl| +9195|350167|25182|1|34|41383.10|0.06|0.07|N|O|1998-03-01|1998-03-17|1998-03-10|NONE|TRUCK|oost quickly. carefully fina| +9195|240951|15960|2|50|94597.00|0.02|0.06|N|O|1998-03-16|1998-02-28|1998-03-24|TAKE BACK RETURN|RAIL|ntly regular pin| +9195|649900|49901|3|50|92493.50|0.02|0.01|N|O|1998-04-22|1998-03-22|1998-05-20|COLLECT COD|RAIL|usly final excuses cajole al| +9196|912374|12375|1|32|44362.56|0.06|0.05|R|F|1993-10-04|1993-12-02|1993-10-15|COLLECT COD|RAIL|round the furiously unusual warthogs. e| +9197|410206|47731|1|2|2232.36|0.02|0.05|N|O|1998-01-06|1997-11-20|1998-01-11|COLLECT COD|FOB|olites are slyly quickly regular instruct| +9197|326154|1167|2|13|15341.82|0.00|0.05|N|O|1997-12-31|1997-11-20|1998-01-10|COLLECT COD|FOB|e furiously among the enticingly final ac| +9197|667880|30394|3|32|59131.20|0.02|0.04|N|O|1997-11-19|1997-12-22|1997-12-15|TAKE BACK RETURN|RAIL|quests. even foxes hagg| +9197|58690|33693|4|8|13189.52|0.09|0.07|N|O|1997-09-28|1997-11-27|1997-10-27|DELIVER IN PERSON|REG AIR| carefully sp| +9197|389023|1531|5|33|36696.33|0.09|0.02|N|O|1997-12-12|1997-11-29|1997-12-20|TAKE BACK RETURN|REG AIR|packages. | +9198|117997|17998|1|25|50374.75|0.08|0.02|R|F|1994-11-06|1994-11-08|1994-11-08|COLLECT COD|RAIL|ts integrate fi| +9198|171135|8645|2|15|18091.95|0.08|0.08|R|F|1994-09-12|1994-11-12|1994-09-13|COLLECT COD|FOB|telets. furiousl| +9198|256594|44110|3|15|23258.70|0.04|0.02|R|F|1994-10-18|1994-09-23|1994-11-12|TAKE BACK RETURN|FOB|pendencies after the packages are car| +9198|559252|9253|4|31|40648.13|0.04|0.03|A|F|1994-10-11|1994-10-12|1994-10-12|NONE|REG AIR| accounts. ideas unwind according to the e| +9199|392963|5471|1|3|6167.85|0.01|0.01|N|O|1996-10-16|1996-12-20|1996-11-02|TAKE BACK RETURN|SHIP|cajole blithely. pe| +9199|527448|14979|2|43|63443.06|0.01|0.07|N|O|1996-11-16|1997-01-10|1996-11-27|COLLECT COD|MAIL|. regular ideas nag slyl| +9199|811159|11160|3|38|40664.18|0.04|0.06|N|O|1996-10-22|1996-12-29|1996-10-25|TAKE BACK RETURN|AIR|ly. blithely sly dugouts against the re| +9199|141396|28903|4|9|12936.51|0.06|0.02|N|O|1997-02-04|1996-12-04|1997-02-16|COLLECT COD|TRUCK|lyly during the carefully | +9224|593544|31078|1|40|65500.80|0.01|0.02|R|F|1993-03-20|1993-04-24|1993-04-06|DELIVER IN PERSON|SHIP|latelets need to use | +9224|681441|31442|2|41|58318.81|0.02|0.06|A|F|1993-05-19|1993-04-28|1993-06-06|COLLECT COD|RAIL|al, regular ideas are. f| +9224|972369|9927|3|39|56211.48|0.08|0.06|A|F|1993-04-07|1993-05-04|1993-04-29|COLLECT COD|TRUCK|arefully regular warthog| +9224|596600|9112|4|29|49200.82|0.00|0.04|R|F|1993-06-22|1993-05-24|1993-07-07|TAKE BACK RETURN|SHIP| packages. slyly regular foxes | +9224|55052|30055|5|36|36253.80|0.01|0.06|R|F|1993-04-24|1993-04-08|1993-05-04|TAKE BACK RETURN|MAIL|eposits. bold theodo| +9224|243627|18636|6|41|64395.01|0.03|0.04|R|F|1993-06-30|1993-05-01|1993-07-09|COLLECT COD|MAIL|refully regul| +9225|32869|45370|1|38|68470.68|0.05|0.07|N|O|1997-02-27|1997-04-16|1997-03-26|NONE|RAIL| unusual pinto bean| +9225|427663|40172|2|13|20678.32|0.05|0.06|N|O|1997-04-08|1997-04-24|1997-04-13|TAKE BACK RETURN|SHIP|o beans nag quickly | +9225|731948|6977|3|48|95035.68|0.05|0.05|N|O|1997-04-16|1997-04-19|1997-04-19|NONE|MAIL|across the furiously r| +9225|844241|31790|4|18|21333.60|0.01|0.08|N|O|1997-04-25|1997-04-18|1997-05-10|DELIVER IN PERSON|AIR|endencies wake express, r| +9225|157324|32331|5|3|4143.96|0.07|0.02|N|O|1997-03-31|1997-04-11|1997-04-21|NONE|SHIP|he express, ironic requests sleep | +9225|140952|28459|6|47|93668.65|0.02|0.08|N|O|1997-05-28|1997-04-28|1997-06-04|NONE|MAIL|in excuses. | +9225|976296|1335|7|17|23328.25|0.07|0.08|N|O|1997-02-07|1997-04-16|1997-02-14|TAKE BACK RETURN|TRUCK|cording to the silently sly ideas| +9226|605819|18332|1|41|70715.98|0.07|0.01|R|F|1994-04-05|1994-04-18|1994-04-19|TAKE BACK RETURN|RAIL|uffily fluffily iron| +9226|988573|38574|2|12|19938.36|0.02|0.05|R|F|1994-02-08|1994-03-14|1994-02-20|TAKE BACK RETURN|RAIL|unts. furiously regular reques| +9226|941321|28876|3|38|51766.64|0.00|0.00|R|F|1994-02-07|1994-03-10|1994-02-23|NONE|SHIP|s are doggedly across the slyly | +9226|782008|7039|4|2|2179.94|0.06|0.02|R|F|1994-05-16|1994-03-20|1994-06-02|NONE|SHIP|ccounts can wake furious| +9226|196022|21029|5|19|21242.38|0.03|0.01|A|F|1994-05-29|1994-03-03|1994-06-03|NONE|RAIL|lar theodolites wake slyly around | +9226|529706|29707|6|7|12149.76|0.02|0.01|R|F|1994-01-31|1994-04-01|1994-02-18|DELIVER IN PERSON|FOB|he careful, ironic excuses cajole blit| +9226|763337|883|7|50|70015.00|0.07|0.06|A|F|1994-04-24|1994-04-19|1994-05-24|TAKE BACK RETURN|FOB|ng pinto beans across the | +9227|391305|41306|1|35|48870.15|0.01|0.03|N|O|1996-01-29|1996-02-06|1996-02-22|TAKE BACK RETURN|MAIL| enticing re| +9227|658506|21020|2|15|21967.05|0.06|0.05|N|O|1996-01-21|1996-02-26|1996-01-29|TAKE BACK RETURN|FOB|ter the bold accounts. fluffy, fi| +9228|278532|16048|1|4|6042.08|0.01|0.06|A|F|1993-11-22|1993-12-21|1993-11-27|DELIVER IN PERSON|AIR|old dinos haggle furiously f| +9228|274551|49562|2|23|35087.42|0.03|0.08|A|F|1993-10-11|1993-12-14|1993-11-04|TAKE BACK RETURN|AIR|y regular, regular pinto| +9228|362936|12937|3|2|3997.84|0.09|0.02|R|F|1993-10-22|1993-11-09|1993-11-11|DELIVER IN PERSON|TRUCK| according t| +9228|859366|34401|4|3|3975.96|0.09|0.02|A|F|1994-01-07|1993-11-19|1994-01-26|COLLECT COD|MAIL| unusual ac| +9228|356812|31827|5|6|11212.80|0.04|0.06|A|F|1993-10-18|1993-11-05|1993-10-31|TAKE BACK RETURN|FOB| carefully| +9228|926081|38600|6|9|9963.36|0.07|0.03|R|F|1994-01-28|1993-12-01|1994-02-27|DELIVER IN PERSON|MAIL|ill have to breach ca| +9228|634921|34922|7|17|31550.13|0.03|0.00|A|F|1993-10-27|1993-12-12|1993-10-29|COLLECT COD|MAIL|lites affix. slyly final dolp| +9229|100776|25781|1|10|17767.70|0.03|0.00|N|O|1997-11-30|1997-10-26|1997-12-11|COLLECT COD|RAIL| fluffily ironic deposits. fluffily bo| +9229|731049|31050|2|34|36720.34|0.05|0.00|N|O|1997-09-30|1997-11-09|1997-10-12|TAKE BACK RETURN|REG AIR|y fluffily ironic| +9229|724400|24401|3|36|51277.32|0.03|0.06|N|O|1997-12-20|1997-11-16|1997-12-29|DELIVER IN PERSON|REG AIR|e idly final braids. enticing, express | +9229|989033|26591|4|35|39269.65|0.08|0.04|N|O|1997-12-02|1997-11-17|1997-12-22|COLLECT COD|REG AIR|al asymptotes. dependencies boost | +9229|662950|37977|5|37|70778.04|0.02|0.04|N|O|1997-10-20|1997-11-26|1997-11-19|TAKE BACK RETURN|TRUCK|ackages haggle blithel| +9229|199932|12436|6|6|12191.58|0.02|0.02|N|O|1997-11-28|1997-11-12|1997-12-25|NONE|SHIP|nusual courts nag. carefully even i| +9229|252190|39706|7|13|14848.34|0.02|0.07|N|O|1997-11-29|1997-10-21|1997-12-10|NONE|REG AIR|r, ironic pla| +9230|546914|46915|1|10|19608.90|0.10|0.02|N|O|1995-07-07|1995-06-25|1995-07-21|TAKE BACK RETURN|TRUCK|luffy frets. fur| +9230|976811|39331|2|17|32092.09|0.10|0.02|N|O|1995-07-21|1995-06-28|1995-07-30|TAKE BACK RETURN|FOB|ss the blithely special depths.| +9230|246843|21852|3|19|34006.77|0.10|0.05|N|O|1995-06-24|1995-06-23|1995-07-15|NONE|MAIL|nts. furiously final theodolites cajo| +9230|676622|14162|4|41|65542.19|0.01|0.00|A|F|1995-05-04|1995-06-25|1995-05-06|DELIVER IN PERSON|RAIL|ously regular the| +9230|977109|2148|5|8|9488.48|0.10|0.08|R|F|1995-05-20|1995-06-27|1995-06-12|DELIVER IN PERSON|AIR|cajole silent, silent pl| +9230|264813|2329|6|35|62223.00|0.04|0.08|N|O|1995-08-12|1995-07-02|1995-09-08|COLLECT COD|REG AIR|elets haggle among| +9231|396698|46699|1|21|37688.28|0.09|0.06|N|O|1997-02-18|1997-04-02|1997-03-10|DELIVER IN PERSON|RAIL|y brave requests. furiously final foxes na| +9231|300698|25711|2|32|54357.76|0.06|0.01|N|O|1997-04-03|1997-03-19|1997-04-24|NONE|MAIL|quickly. carefully bold co| +9256|87466|49968|1|18|26162.28|0.07|0.02|N|O|1997-03-16|1997-02-23|1997-03-22|COLLECT COD|MAIL|lyly ironic deposits detect quickly acc| +9256|34021|9022|2|35|33425.70|0.06|0.04|N|O|1997-02-21|1997-02-07|1997-03-14|DELIVER IN PERSON|RAIL| beans are carefully abo| +9256|788630|13661|3|28|48120.80|0.03|0.02|N|O|1997-04-26|1997-02-27|1997-04-30|TAKE BACK RETURN|RAIL|al requests run slyly furiously | +9256|490710|3220|4|6|10204.14|0.09|0.03|N|O|1997-04-16|1997-03-14|1997-04-26|NONE|AIR|ular deposits sleep. | +9257|838945|26494|1|21|39561.90|0.10|0.01|R|F|1992-06-24|1992-06-19|1992-06-25|NONE|AIR|he carefully regu| +9257|141946|41947|2|43|85481.42|0.06|0.08|A|F|1992-08-03|1992-06-18|1992-08-19|TAKE BACK RETURN|AIR|tes promise carefully requests. pat| +9257|671539|21540|3|6|9063.00|0.04|0.01|R|F|1992-06-20|1992-08-01|1992-06-28|COLLECT COD|FOB|pending warthogs. blithely regular foxes| +9258|808134|33167|1|40|41683.60|0.04|0.01|N|O|1996-07-01|1996-06-14|1996-07-28|NONE|FOB|ests nag-- f| +9258|293193|5699|2|38|45074.84|0.04|0.03|N|O|1996-07-31|1996-07-31|1996-08-05|TAKE BACK RETURN|AIR|nstructions. blithely bold packages use fl| +9258|692819|5333|3|9|16306.02|0.05|0.04|N|O|1996-07-08|1996-06-27|1996-08-01|DELIVER IN PERSON|AIR|eve quickly across the| +9259|407217|19726|1|12|13490.28|0.00|0.00|A|F|1993-06-28|1993-07-21|1993-07-06|TAKE BACK RETURN|AIR|ole carefully. instructi| +9260|485255|47765|1|50|62011.50|0.09|0.01|N|O|1997-01-12|1996-12-03|1997-02-09|DELIVER IN PERSON|AIR|haggle blithely. unusual, regular fox| +9260|676738|26739|2|28|48011.60|0.03|0.05|N|O|1997-01-24|1996-11-28|1997-02-21|TAKE BACK RETURN|SHIP|s. daring, regular foxe| +9261|535774|10795|1|48|86868.00|0.07|0.07|R|F|1992-09-13|1992-10-05|1992-09-25|NONE|REG AIR|ithes! ironically | +9261|745984|21013|2|17|34509.15|0.10|0.01|A|F|1992-11-08|1992-10-08|1992-11-29|NONE|SHIP|yly at the furiously even instructions| +9262|467608|30118|1|49|77203.42|0.04|0.03|A|F|1992-04-29|1992-06-23|1992-05-26|TAKE BACK RETURN|MAIL|s cajole quickly.| +9262|85338|22842|2|12|15879.96|0.00|0.01|R|F|1992-08-14|1992-07-07|1992-08-17|COLLECT COD|AIR|onic, ironic packages snooze | +9263|859837|9838|1|31|55700.49|0.02|0.00|N|O|1996-05-10|1996-03-08|1996-06-04|TAKE BACK RETURN|TRUCK|gle carefully regular fo| +9263|275767|778|2|3|5228.25|0.04|0.04|N|O|1996-04-04|1996-04-24|1996-04-21|NONE|REG AIR|nusual dolphins. dolphins cajole slyl| +9288|143057|30564|1|37|40701.85|0.08|0.08|A|F|1993-10-19|1993-08-22|1993-10-25|NONE|SHIP|ully express a| +9288|349419|24432|2|6|8810.40|0.04|0.03|R|F|1993-11-07|1993-10-08|1993-11-16|NONE|MAIL|nto beans are fluffily unusual platel| +9288|682250|7277|3|30|36966.60|0.09|0.08|R|F|1993-07-25|1993-09-10|1993-08-22|DELIVER IN PERSON|FOB|bove the even foxes.| +9288|565090|2624|4|25|28876.75|0.01|0.00|R|F|1993-09-20|1993-09-18|1993-10-04|COLLECT COD|REG AIR|at the furious theodolites. package| +9288|453981|41509|5|10|19349.60|0.04|0.07|R|F|1993-08-08|1993-08-27|1993-08-11|NONE|REG AIR|rmanently. unusual accounts sleep amon| +9288|44560|32061|6|26|39118.56|0.06|0.02|A|F|1993-07-21|1993-10-07|1993-08-19|NONE|RAIL| furiously even hockey players might boo| +9289|775217|248|1|16|20674.88|0.03|0.07|N|O|1998-07-16|1998-06-12|1998-07-31|TAKE BACK RETURN|MAIL|lithely bold pinto beans| +9289|63296|38299|2|1|1259.29|0.08|0.05|N|O|1998-07-09|1998-07-17|1998-07-23|NONE|SHIP| wake furiously quickly| +9289|811436|48985|3|19|25600.41|0.04|0.01|N|O|1998-06-11|1998-06-21|1998-06-18|COLLECT COD|FOB|e slyly regular instructions us| +9289|789234|14265|4|42|55574.40|0.05|0.07|N|O|1998-06-06|1998-06-23|1998-06-19|COLLECT COD|TRUCK|ecoys sleep bl| +9289|652452|14966|5|13|18257.46|0.05|0.03|N|O|1998-08-07|1998-06-20|1998-09-02|DELIVER IN PERSON|RAIL|s hinder about the quickly| +9289|758601|46147|6|47|77999.79|0.06|0.01|N|O|1998-08-04|1998-07-10|1998-08-22|NONE|FOB|gs. blithely final| +9289|796605|46606|7|7|11910.99|0.01|0.04|N|O|1998-05-16|1998-06-29|1998-05-26|DELIVER IN PERSON|TRUCK|its wake furiously. bli| +9290|540058|40059|1|33|36234.99|0.09|0.05|N|O|1995-07-31|1995-07-25|1995-08-29|DELIVER IN PERSON|REG AIR|oxes. requests nag slyly. regular, bold d| +9291|314333|1852|1|34|45808.88|0.02|0.02|A|F|1994-10-03|1994-09-21|1994-10-20|DELIVER IN PERSON|SHIP| across the slyly reg| +9291|986794|49314|2|29|54541.75|0.01|0.04|R|F|1994-09-25|1994-10-19|1994-10-25|COLLECT COD|RAIL|ven packages affix blithely slyly un| +9291|36655|24156|3|40|63666.00|0.06|0.07|A|F|1994-08-18|1994-08-26|1994-09-11|DELIVER IN PERSON|TRUCK|efully ironic excuses a| +9291|51984|39488|4|17|32911.66|0.04|0.03|A|F|1994-11-08|1994-09-01|1994-11-17|COLLECT COD|SHIP| quickly final pinto bean| +9291|681440|6467|5|32|45485.12|0.05|0.01|R|F|1994-09-10|1994-09-29|1994-09-12|TAKE BACK RETURN|REG AIR|ending deposits s| +9292|274917|49928|1|4|7567.60|0.10|0.00|N|O|1995-10-23|1995-08-26|1995-11-22|DELIVER IN PERSON|SHIP|nstructions acro| +9292|521326|33837|2|42|56586.60|0.06|0.05|N|O|1995-10-16|1995-08-08|1995-11-06|TAKE BACK RETURN|MAIL|ckly slyly unusual instru| +9292|919487|19488|3|2|3012.88|0.05|0.05|N|O|1995-10-18|1995-09-20|1995-11-14|COLLECT COD|TRUCK| at the carefully bold de| +9292|805925|30958|4|37|67742.56|0.08|0.02|N|O|1995-08-13|1995-08-28|1995-08-26|TAKE BACK RETURN|TRUCK| after the quickly final deposits. carefull| +9292|165939|3449|5|33|66162.69|0.10|0.00|N|O|1995-08-17|1995-09-15|1995-08-20|NONE|REG AIR|s after the even, unusual dolphi| +9293|57522|7523|1|37|54742.24|0.03|0.04|N|O|1995-10-07|1995-10-04|1995-10-13|TAKE BACK RETURN|SHIP|nt courts among the ironic d| +9293|756216|31247|2|45|57248.10|0.03|0.01|N|O|1995-10-25|1995-09-29|1995-11-02|TAKE BACK RETURN|FOB| beans affix slyly final reques| +9293|706968|19483|3|28|55298.04|0.10|0.00|N|O|1995-11-08|1995-10-18|1995-11-21|TAKE BACK RETURN|REG AIR| cajole. furiously express | +9293|4830|4831|4|45|78067.35|0.03|0.06|N|O|1995-09-21|1995-10-04|1995-10-17|DELIVER IN PERSON|SHIP|ltipliers. carefully final depo| +9294|975426|465|1|37|55551.06|0.04|0.08|A|F|1992-07-02|1992-08-24|1992-07-03|NONE|TRUCK|fter the final courts. multiplie| +9294|977842|15400|2|31|59513.80|0.02|0.07|A|F|1992-06-17|1992-07-25|1992-07-17|TAKE BACK RETURN|FOB|, even package| +9294|575653|25654|3|3|5185.89|0.00|0.04|R|F|1992-08-04|1992-07-28|1992-09-01|DELIVER IN PERSON|REG AIR|ong the carefully regular theod| +9294|991004|28562|4|33|36133.68|0.03|0.06|R|F|1992-06-30|1992-08-27|1992-07-07|TAKE BACK RETURN|MAIL|dencies-- furiously pendin| +9295|411821|11822|1|20|34656.00|0.05|0.06|N|O|1997-01-03|1997-01-19|1997-01-08|COLLECT COD|RAIL| blithely according to the regular de| +9295|467001|42020|2|43|41623.14|0.09|0.04|N|O|1997-01-03|1997-02-03|1997-01-10|DELIVER IN PERSON|MAIL|eans detect blithely. regular dependencies | +9295|880324|17876|3|27|35215.56|0.02|0.02|N|O|1997-01-25|1997-01-23|1997-02-05|COLLECT COD|AIR|refully final | +9320|825318|12867|1|38|47244.26|0.00|0.00|N|O|1997-03-28|1997-03-05|1997-04-16|DELIVER IN PERSON|SHIP|uietly according to t| +9320|114551|14552|2|26|40704.30|0.00|0.06|N|O|1997-02-07|1997-03-11|1997-02-28|TAKE BACK RETURN|FOB|bold dependencies besid| +9320|242095|29608|3|23|23852.84|0.09|0.06|N|O|1996-12-19|1997-03-12|1996-12-29|TAKE BACK RETURN|FOB|lar requests: slyly regular pinto beans | +9320|881685|31686|4|1|1666.64|0.04|0.06|N|O|1997-01-18|1997-02-05|1997-01-31|COLLECT COD|MAIL|quickly above the req| +9321|47042|34543|1|8|7912.32|0.06|0.04|A|F|1992-02-23|1992-02-25|1992-03-16|DELIVER IN PERSON|TRUCK|es. furiously pending r| +9321|634693|22230|2|21|34180.86|0.05|0.05|A|F|1992-03-05|1992-03-23|1992-03-12|NONE|SHIP|st slyly. slyly even deposits dazzle| +9321|280021|17537|3|1|1001.01|0.00|0.08|R|F|1992-05-05|1992-04-06|1992-05-25|DELIVER IN PERSON|REG AIR|across the pending packages. | +9321|298255|48256|4|44|55142.56|0.04|0.03|R|F|1992-03-04|1992-04-16|1992-03-28|TAKE BACK RETURN|RAIL| instructions believe| +9322|514759|27270|1|44|78044.12|0.02|0.05|N|O|1997-05-27|1997-08-13|1997-06-18|DELIVER IN PERSON|SHIP| final packages are blithel| +9322|541000|41001|2|4|4163.92|0.04|0.05|N|O|1997-06-22|1997-08-04|1997-07-10|TAKE BACK RETURN|TRUCK|y frays. slyly even requests will sleep | +9322|580786|18320|3|28|52269.28|0.04|0.01|N|O|1997-06-30|1997-06-15|1997-07-11|TAKE BACK RETURN|AIR|iously pending acc| +9322|264445|1961|4|29|40873.47|0.00|0.06|N|O|1997-05-22|1997-06-15|1997-06-11|COLLECT COD|SHIP|ckages cajole carefully against the ir| +9323|292495|30011|1|5|7437.40|0.06|0.07|N|O|1996-02-19|1996-05-05|1996-03-04|TAKE BACK RETURN|SHIP| accounts. furious| +9324|363080|25588|1|26|29719.82|0.07|0.07|N|O|1998-01-29|1998-01-04|1998-02-14|NONE|FOB|beans sleep closely.| +9324|270811|20812|2|24|42763.20|0.03|0.04|N|O|1997-12-25|1998-01-15|1998-01-14|NONE|TRUCK|ithely after the blithely bold | +9324|517019|29530|3|7|7251.93|0.08|0.03|N|O|1998-02-17|1998-01-05|1998-02-24|TAKE BACK RETURN|MAIL|ep furiously ironic acc| +9324|526745|39256|4|24|42521.28|0.07|0.06|N|O|1998-02-01|1998-01-18|1998-02-16|DELIVER IN PERSON|MAIL|ar packages. b| +9325|17459|17460|1|46|63316.70|0.10|0.08|A|F|1993-10-01|1993-07-17|1993-10-17|NONE|AIR|y. carefully final reque| +9325|427865|40374|2|38|68127.92|0.01|0.08|A|F|1993-09-07|1993-07-18|1993-09-19|NONE|TRUCK|the slyly final tithes nag quickly across| +9325|112924|431|3|46|89098.32|0.07|0.00|A|F|1993-06-19|1993-08-05|1993-06-28|TAKE BACK RETURN|AIR|slyly regular accounts among the i| +9325|905644|18163|4|15|24744.00|0.02|0.01|R|F|1993-07-15|1993-07-19|1993-07-27|DELIVER IN PERSON|TRUCK|eposits haggle qui| +9325|145302|20307|5|16|21556.80|0.00|0.06|A|F|1993-06-16|1993-08-18|1993-07-03|TAKE BACK RETURN|MAIL| furiously along the slyly re| +9325|80643|5646|6|41|66569.24|0.06|0.02|R|F|1993-06-22|1993-08-11|1993-07-12|COLLECT COD|MAIL|uests. expre| +9326|536394|23925|1|12|17164.44|0.06|0.04|N|O|1997-02-12|1997-05-06|1997-03-04|TAKE BACK RETURN|FOB|ainst the furi| +9326|168689|43696|2|21|36911.28|0.02|0.02|N|O|1997-03-15|1997-04-21|1997-04-01|DELIVER IN PERSON|REG AIR|eposits. blithely| +9326|141279|28786|3|30|39608.10|0.02|0.02|N|O|1997-03-09|1997-03-30|1997-03-30|COLLECT COD|SHIP|ts cajole. slyly unusual p| +9327|758895|21411|1|7|13677.02|0.02|0.01|A|F|1993-12-17|1993-12-04|1993-12-31|DELIVER IN PERSON|FOB| nag above the fluffily regular instruc| +9352|991455|41456|1|14|21649.74|0.08|0.05|N|O|1997-05-25|1997-06-19|1997-06-07|COLLECT COD|RAIL| the bold theodolites. ide| +9352|380544|18066|2|36|58483.08|0.00|0.02|N|O|1997-08-02|1997-05-27|1997-08-22|NONE|SHIP|ly express foxes.| +9352|801130|38679|3|32|32994.88|0.10|0.06|N|O|1997-05-19|1997-05-17|1997-06-05|NONE|RAIL|blithely fluffily ironic pinto beans. | +9352|591127|3639|4|13|15835.30|0.08|0.06|N|O|1997-04-26|1997-05-27|1997-05-11|DELIVER IN PERSON|TRUCK|sh slyly. regular, ironic de| +9352|61661|24163|5|9|14603.94|0.01|0.02|N|O|1997-07-30|1997-05-28|1997-08-15|COLLECT COD|AIR|kages. regular requests sublate carefully| +9352|330447|5460|6|9|13296.87|0.10|0.08|N|O|1997-04-26|1997-06-06|1997-05-12|COLLECT COD|MAIL| according to the dolphins. furiousl| +9352|812980|12981|7|32|60574.08|0.01|0.02|N|O|1997-07-06|1997-06-10|1997-07-17|COLLECT COD|REG AIR|olites accor| +9353|749653|12168|1|29|49375.98|0.05|0.06|R|F|1993-09-30|1993-10-21|1993-10-20|TAKE BACK RETURN|REG AIR|s above the quickly special requests| +9353|414924|27433|2|41|75394.90|0.07|0.03|R|F|1993-10-06|1993-09-12|1993-10-08|COLLECT COD|AIR|. furiously ironic id| +9353|614561|39586|3|43|63447.79|0.02|0.00|R|F|1993-10-05|1993-10-11|1993-10-13|DELIVER IN PERSON|RAIL|ar deposits| +9353|923452|11007|4|39|57540.99|0.05|0.02|R|F|1993-07-25|1993-09-24|1993-08-06|DELIVER IN PERSON|REG AIR|hely about the slow, regula| +9353|441080|16097|5|38|38800.28|0.05|0.02|A|F|1993-08-21|1993-09-02|1993-09-15|TAKE BACK RETURN|TRUCK|dolites. slyly final requests abov| +9354|121907|34410|1|43|82942.70|0.03|0.03|R|F|1995-01-24|1995-02-17|1995-02-14|DELIVER IN PERSON|TRUCK|nts. regular accounts nag. blithely | +9355|701200|13715|1|47|56454.99|0.00|0.07|A|F|1992-08-14|1992-08-29|1992-08-30|DELIVER IN PERSON|FOB| packages. carefully regul| +9355|59241|34244|2|12|14402.88|0.06|0.04|R|F|1992-07-28|1992-09-02|1992-08-22|NONE|MAIL|eas. quick| +9355|663231|13232|3|39|46573.80|0.00|0.04|R|F|1992-08-05|1992-08-04|1992-09-01|DELIVER IN PERSON|FOB|thely regular acco| +9355|920524|20525|4|2|3088.96|0.04|0.08|R|F|1992-09-20|1992-09-20|1992-09-21|TAKE BACK RETURN|RAIL|ss deposits. slyly even requests are| +9355|242175|29688|5|20|22343.20|0.00|0.07|A|F|1992-10-22|1992-08-01|1992-10-27|TAKE BACK RETURN|SHIP|inst the special foxes wake bl| +9356|797596|35142|1|1|1693.56|0.04|0.08|R|F|1992-05-08|1992-05-18|1992-05-13|DELIVER IN PERSON|RAIL|packages haggle ca| +9356|194244|6748|2|44|58882.56|0.04|0.01|R|F|1992-07-04|1992-05-29|1992-07-16|NONE|AIR|sits wake blithely about the even, | +9356|643048|18073|3|44|43604.44|0.04|0.08|A|F|1992-05-15|1992-06-26|1992-06-03|TAKE BACK RETURN|SHIP|n, bold foxes boost fluffily regular ins| +9356|701763|39306|4|18|31765.14|0.08|0.04|A|F|1992-08-16|1992-06-14|1992-09-04|NONE|SHIP|unusual pinto beans | +9357|591475|29009|1|29|45427.05|0.00|0.04|R|F|1993-12-27|1994-03-16|1994-01-04|NONE|REG AIR|ut the ironic platelets. depo| +9357|919511|32030|2|14|21426.58|0.05|0.03|R|F|1994-02-06|1994-02-19|1994-02-25|DELIVER IN PERSON|MAIL|unusual deposits are unusual| +9358|689617|39618|1|34|54623.72|0.09|0.00|N|O|1996-04-23|1996-03-09|1996-04-24|NONE|MAIL|. express, special excuses about the sl| +9358|388903|13918|2|22|43821.58|0.01|0.08|N|O|1996-04-19|1996-03-10|1996-04-28|NONE|RAIL|deposits. regular, even pinto beans haggle| +9358|285335|22851|3|38|50172.16|0.04|0.02|N|O|1996-02-05|1996-02-14|1996-02-26|NONE|AIR|s. slyly final | +9358|620529|8066|4|43|62328.07|0.06|0.01|N|O|1996-03-06|1996-02-24|1996-03-27|TAKE BACK RETURN|REG AIR|across the special deposits sl| +9358|222858|10371|5|46|81918.64|0.06|0.03|N|O|1996-02-23|1996-03-18|1996-03-09|DELIVER IN PERSON|REG AIR|boost. accounts before the fur| +9359|667671|42698|1|32|52436.48|0.07|0.05|N|O|1995-12-12|1996-02-02|1996-01-02|DELIVER IN PERSON|MAIL|regular, silent e| +9359|544971|19992|2|26|52414.70|0.07|0.01|N|O|1996-03-02|1996-01-29|1996-03-06|NONE|FOB|s boost fluffily abo| +9359|315196|27703|3|42|50869.56|0.00|0.03|N|O|1995-11-11|1995-12-24|1995-12-02|COLLECT COD|FOB|ironic req| +9384|152743|27750|1|7|12570.18|0.09|0.08|A|F|1994-12-14|1995-03-01|1995-01-11|COLLECT COD|SHIP|eans. express,| +9384|134832|22339|2|30|56004.90|0.06|0.06|A|F|1995-01-27|1995-01-24|1995-01-28|COLLECT COD|SHIP|unusual requests. bold instructi| +9384|112815|25318|3|26|47523.06|0.07|0.03|R|F|1995-01-09|1995-01-09|1995-01-24|DELIVER IN PERSON|SHIP|ccounts mold unusual realms| +9384|69460|44463|4|43|61466.78|0.00|0.05|R|F|1994-12-09|1995-01-09|1995-01-08|COLLECT COD|TRUCK| requests after the| +9384|407137|32154|5|26|27146.86|0.03|0.05|A|F|1995-01-26|1995-01-29|1995-02-20|COLLECT COD|SHIP|. slyly ironic instructions nag furi| +9384|737976|491|6|20|40278.80|0.04|0.02|R|F|1995-02-06|1995-02-07|1995-03-01|TAKE BACK RETURN|MAIL|ets unwind furiously. dependen| +9385|350989|13497|1|12|24479.64|0.00|0.08|N|O|1996-07-30|1996-08-29|1996-07-31|DELIVER IN PERSON|RAIL|the regular re| +9385|59188|46692|2|29|33268.22|0.05|0.07|N|O|1996-08-23|1996-08-02|1996-08-26|TAKE BACK RETURN|SHIP|gular ideas boost| +9386|886762|11797|1|32|55959.04|0.02|0.03|A|F|1993-10-16|1993-09-29|1993-11-14|DELIVER IN PERSON|REG AIR|y! slyly furious requests beli| +9386|806432|31465|2|10|13383.90|0.01|0.03|R|F|1993-09-23|1993-10-03|1993-10-03|DELIVER IN PERSON|FOB|ct carefully | +9386|690451|40452|3|11|15855.62|0.08|0.04|R|F|1993-09-02|1993-09-20|1993-09-23|DELIVER IN PERSON|TRUCK|e blithely regular foxes. | +9386|405390|5391|4|8|10362.96|0.09|0.07|A|F|1993-10-05|1993-09-27|1993-11-02|TAKE BACK RETURN|RAIL|uses. regular pinto bea| +9386|387792|37793|5|8|15038.24|0.08|0.03|R|F|1993-10-07|1993-08-18|1993-10-22|TAKE BACK RETURN|FOB|l packages.| +9387|928553|41072|1|29|45863.79|0.04|0.05|R|F|1994-08-09|1994-10-04|1994-08-29|COLLECT COD|SHIP| run around the slyly regular accounts| +9387|188989|38990|2|10|20779.80|0.04|0.00|R|F|1994-09-02|1994-09-04|1994-09-04|TAKE BACK RETURN|SHIP|ounts lose | +9387|329233|41740|3|7|8835.54|0.01|0.04|A|F|1994-08-26|1994-09-24|1994-09-24|DELIVER IN PERSON|SHIP|fully regular requests detect| +9387|411216|48741|4|36|40578.84|0.07|0.02|R|F|1994-10-26|1994-10-10|1994-11-19|TAKE BACK RETURN|REG AIR|thely final dolphins. e| +9388|354500|17008|1|43|66843.07|0.08|0.07|N|O|1996-04-27|1996-04-16|1996-04-29|COLLECT COD|AIR|sly unusual foxes sle| +9388|72079|22080|2|5|5255.35|0.03|0.01|N|O|1996-05-07|1996-05-28|1996-05-13|NONE|FOB| about the car| +9388|417222|4747|3|25|28480.00|0.03|0.05|N|O|1996-04-23|1996-05-13|1996-05-01|COLLECT COD|AIR|lent requests. carefully fin| +9388|234344|34345|4|32|40906.56|0.10|0.04|N|O|1996-04-26|1996-05-04|1996-05-01|COLLECT COD|REG AIR| slyly furious packages ha| +9389|712798|25313|1|32|57944.32|0.06|0.04|N|O|1995-09-19|1995-10-03|1995-10-17|COLLECT COD|AIR|deposits haggl| +9389|991904|4424|2|7|13971.02|0.09|0.08|N|O|1995-11-30|1995-10-12|1995-12-21|TAKE BACK RETURN|FOB| regular requests. ir| +9389|924710|24711|3|10|17346.70|0.00|0.05|N|O|1995-09-20|1995-11-08|1995-09-28|DELIVER IN PERSON|TRUCK|carefully accounts. furiously express req| +9389|599709|12221|4|14|25321.52|0.04|0.01|N|O|1995-09-13|1995-11-21|1995-09-16|DELIVER IN PERSON|SHIP| are carefully regular instruction| +9390|768968|6514|1|21|42775.53|0.07|0.01|A|F|1993-03-28|1993-03-26|1993-04-25|COLLECT COD|TRUCK| quietly regular re| +9390|31096|18597|2|7|7189.63|0.06|0.04|R|F|1993-03-10|1993-03-20|1993-03-14|NONE|RAIL|ronic requests detect fluffily final| +9390|627831|40344|3|28|49246.40|0.09|0.07|R|F|1993-01-07|1993-02-14|1993-02-02|NONE|SHIP|egular foxes wake blithely pi| +9390|950596|38154|4|12|19758.60|0.10|0.05|R|F|1993-04-17|1993-03-10|1993-05-07|NONE|AIR|nding instructions cajole busily aroun| +9390|662951|37978|5|9|17225.28|0.02|0.07|R|F|1993-05-06|1993-02-21|1993-05-22|NONE|MAIL|ly ironic packages use among the dinos| +9390|200660|661|6|48|74911.20|0.07|0.05|A|F|1993-04-21|1993-02-06|1993-05-14|DELIVER IN PERSON|AIR|s snooze ironically according | +9391|818209|5758|1|19|21416.04|0.00|0.01|A|F|1995-03-25|1995-03-13|1995-04-08|DELIVER IN PERSON|FOB|cajole quickly blithely quic| +9391|631273|18810|2|49|59007.76|0.06|0.08|R|F|1995-03-14|1995-04-05|1995-03-20|COLLECT COD|MAIL|blithely alongside of the furiously final| +9391|794196|19227|3|40|51606.40|0.04|0.01|A|F|1995-03-06|1995-03-27|1995-04-03|DELIVER IN PERSON|RAIL|ily. furiously ironic asymptotes was c| +9416|323138|10657|1|13|15094.56|0.09|0.06|R|F|1994-08-24|1994-06-24|1994-09-19|TAKE BACK RETURN|FOB|gular platelets boost. ideas a| +9416|966391|16392|2|19|27689.65|0.02|0.06|R|F|1994-08-02|1994-07-07|1994-08-11|DELIVER IN PERSON|TRUCK|egularly blithely final accounts. quick| +9416|121140|33643|3|17|19739.38|0.04|0.07|A|F|1994-08-24|1994-06-24|1994-09-21|TAKE BACK RETURN|REG AIR|ly. blithel| +9416|986300|11339|4|43|59609.18|0.06|0.08|A|F|1994-07-15|1994-07-06|1994-07-17|COLLECT COD|MAIL| furiously express ideas are. u| +9416|736125|36126|5|36|41799.24|0.10|0.03|R|F|1994-06-05|1994-06-16|1994-06-12|COLLECT COD|REG AIR|ns print af| +9416|46946|46947|6|37|70038.78|0.00|0.05|A|F|1994-07-19|1994-07-16|1994-08-09|NONE|FOB|packages use slyly. fluffily regular foxes | +9417|504359|29380|1|22|29993.26|0.03|0.04|N|O|1995-09-30|1995-08-11|1995-10-04|NONE|AIR|ounts. furiousl| +9417|749953|37496|2|7|14020.44|0.02|0.08|N|O|1995-07-12|1995-08-08|1995-08-07|NONE|REG AIR|oxes. instructions are. pend| +9417|446285|21302|3|45|55406.70|0.09|0.05|N|O|1995-08-17|1995-07-27|1995-08-26|COLLECT COD|RAIL|refully regular depende| +9418|369539|19540|1|50|80426.00|0.00|0.08|R|F|1994-07-15|1994-05-09|1994-07-28|DELIVER IN PERSON|MAIL|ests. slyly regular cour| +9418|835466|23015|2|26|36436.92|0.10|0.05|A|F|1994-07-28|1994-05-26|1994-08-11|TAKE BACK RETURN|REG AIR|lites. bold packages ben| +9418|675915|38429|3|15|28363.20|0.01|0.08|A|F|1994-05-27|1994-06-19|1994-06-23|TAKE BACK RETURN|TRUCK| final acc| +9418|94372|19375|4|13|17762.81|0.09|0.02|R|F|1994-06-05|1994-06-05|1994-06-08|TAKE BACK RETURN|MAIL| dependencies. slyly regular packag| +9418|98764|36268|5|5|8813.80|0.08|0.05|R|F|1994-06-04|1994-06-14|1994-06-25|NONE|FOB|slyly alon| +9419|467971|17972|1|47|91130.65|0.02|0.00|A|F|1994-11-27|1994-12-16|1994-12-17|NONE|MAIL| above the ironi| +9419|177611|27612|2|18|30394.98|0.00|0.04|A|F|1994-12-16|1994-12-31|1994-12-18|DELIVER IN PERSON|TRUCK|uriously final requests hagg| +9419|100947|13450|3|39|75969.66|0.08|0.06|R|F|1995-01-22|1995-01-03|1995-02-09|NONE|AIR|y; requests wake. ironically regular e| +9420|753392|3393|1|9|13008.24|0.09|0.06|N|O|1995-10-02|1995-09-13|1995-10-16|TAKE BACK RETURN|RAIL|regular pinto beans| +9420|258454|33465|2|26|36723.44|0.05|0.08|N|O|1995-10-08|1995-09-07|1995-11-03|DELIVER IN PERSON|SHIP|ses cajole slyly? bl| +9420|828157|40674|3|32|34723.52|0.07|0.07|N|O|1995-10-27|1995-09-10|1995-11-05|NONE|REG AIR|n packages. fluffily ironic requests are fl| +9420|824371|49404|4|48|62175.84|0.01|0.02|N|O|1995-09-02|1995-09-14|1995-09-24|TAKE BACK RETURN|RAIL|ing excuses. bold pint| +9420|202438|27447|5|5|6702.10|0.05|0.08|N|O|1995-08-12|1995-09-25|1995-08-20|NONE|TRUCK|y unusual asymptotes. regul| +9420|371972|21973|6|11|22483.56|0.02|0.01|N|O|1995-08-12|1995-09-25|1995-08-24|TAKE BACK RETURN|REG AIR| carefully unu| +9421|76483|1486|1|41|59838.68|0.05|0.06|R|F|1994-10-11|1994-09-19|1994-10-18|NONE|AIR| slyly ironic excuses solve p| +9422|964828|14829|1|8|15142.24|0.03|0.03|N|O|1997-08-11|1997-08-07|1997-09-07|NONE|SHIP|blithely bold accounts. quickly | +9423|23962|11463|1|46|86754.16|0.08|0.06|N|O|1998-10-19|1998-08-12|1998-10-26|NONE|TRUCK|e special asymptotes. final foxes w| +9423|717821|5364|2|5|9193.95|0.01|0.01|N|O|1998-09-28|1998-09-19|1998-10-22|COLLECT COD|AIR|hely pending | +9448|799669|37215|1|39|68976.57|0.05|0.00|N|O|1998-08-28|1998-08-18|1998-09-18|TAKE BACK RETURN|SHIP| packages use furiously; sp| +9448|27206|27207|2|13|14731.60|0.05|0.08|N|O|1998-09-20|1998-09-19|1998-10-17|COLLECT COD|SHIP|ets sleep fl| +9448|244417|6922|3|38|51733.20|0.02|0.08|N|O|1998-08-24|1998-09-15|1998-09-21|NONE|RAIL| across the warhorses: carefully regula| +9448|910152|35189|4|9|10458.99|0.04|0.03|N|O|1998-09-16|1998-09-27|1998-10-02|DELIVER IN PERSON|REG AIR| the express, regular pinto beans. quickly| +9449|911664|49219|1|2|3351.24|0.08|0.05|R|F|1993-03-27|1993-05-04|1993-04-10|DELIVER IN PERSON|MAIL| furiously alongside of th| +9449|334441|46948|2|37|54590.91|0.06|0.00|R|F|1993-04-13|1993-04-02|1993-05-04|TAKE BACK RETURN|MAIL|usly unusu| +9449|948757|23794|3|7|12639.97|0.01|0.04|A|F|1993-03-21|1993-03-27|1993-04-01|COLLECT COD|AIR|thely against| +9450|404240|16749|1|4|4576.88|0.09|0.06|N|O|1997-10-05|1997-10-29|1997-10-24|NONE|TRUCK|iously unusual a| +9450|50305|12807|2|17|21340.10|0.02|0.03|N|O|1997-11-19|1997-12-12|1997-12-06|TAKE BACK RETURN|SHIP| regular excuses are ironic excuses. theodo| +9450|470416|32926|3|30|41591.70|0.04|0.07|N|O|1997-12-16|1997-10-30|1997-12-20|NONE|SHIP|blithely. careful requests detect | +9450|264931|27437|4|26|49293.92|0.05|0.00|N|O|1997-12-07|1997-11-14|1998-01-05|NONE|TRUCK|unts haggle.| +9450|678795|28796|5|43|76271.68|0.09|0.06|N|O|1997-11-16|1997-11-20|1997-11-24|DELIVER IN PERSON|RAIL|ructions. unusual packages haggle.| +9450|505584|5585|6|47|74709.32|0.02|0.04|N|O|1997-11-14|1997-11-05|1997-11-30|COLLECT COD|MAIL|ounts. blithely ev| +9450|344143|31662|7|30|35613.90|0.08|0.04|N|O|1997-12-16|1997-11-12|1997-12-19|TAKE BACK RETURN|SHIP| wake fluffily. c| +9451|8938|46439|1|7|12928.51|0.07|0.00|N|O|1996-05-29|1996-05-23|1996-06-03|NONE|AIR|the carefully express fo| +9452|48787|48788|1|25|43394.50|0.04|0.07|A|F|1995-01-03|1995-02-28|1995-01-05|COLLECT COD|FOB|kages are. ironic, even reque| +9452|960357|10358|2|19|26928.89|0.10|0.06|R|F|1995-03-10|1995-01-27|1995-03-21|TAKE BACK RETURN|MAIL| blithely ironic deposits. carefully specia| +9452|712940|12941|3|1|1952.91|0.02|0.01|R|F|1995-03-14|1995-01-23|1995-04-11|TAKE BACK RETURN|REG AIR|sly final packages boost sly| +9452|375495|13017|4|38|59678.24|0.05|0.05|R|F|1995-02-15|1995-01-28|1995-03-07|TAKE BACK RETURN|FOB|ual, silent| +9452|941930|16967|5|21|41409.69|0.04|0.05|R|F|1995-03-21|1995-02-12|1995-04-12|COLLECT COD|MAIL| the patterns sleep after the furi| +9452|1031|1032|6|4|3728.12|0.01|0.07|R|F|1995-03-04|1995-01-26|1995-03-05|TAKE BACK RETURN|SHIP|s. regular ideas m| +9453|244187|31700|1|24|27148.08|0.07|0.01|R|F|1993-01-03|1992-12-12|1993-01-15|DELIVER IN PERSON|MAIL|ns wake carefully. | +9454|131521|19028|1|7|10867.64|0.04|0.07|A|F|1993-04-13|1993-07-08|1993-05-02|DELIVER IN PERSON|SHIP|final deposits haggle blith| +9455|86410|23914|1|10|13964.10|0.04|0.06|N|O|1998-01-18|1998-01-06|1998-02-01|TAKE BACK RETURN|AIR|s instructions; care| +9455|287526|12537|2|49|74161.99|0.09|0.08|N|O|1998-03-04|1997-12-13|1998-03-28|NONE|SHIP|y pending accounts wake alon| +9480|948519|23556|1|34|53293.98|0.09|0.01|N|O|1995-07-01|1995-05-04|1995-07-14|TAKE BACK RETURN|REG AIR|ideas. silent id| +9480|745964|8479|2|15|30148.95|0.02|0.02|R|F|1995-05-02|1995-04-27|1995-05-22|TAKE BACK RETURN|REG AIR|ar ideas. blithely regular | +9480|409598|47123|3|39|58795.23|0.01|0.07|N|O|1995-07-04|1995-04-27|1995-08-01|COLLECT COD|MAIL|packages. final theodolites cajo| +9480|98076|48077|4|48|51555.36|0.10|0.04|R|F|1995-05-30|1995-04-12|1995-06-07|TAKE BACK RETURN|REG AIR| pinto beans boost furiously. f| +9481|648638|23663|1|39|61877.40|0.08|0.06|N|O|1997-04-04|1997-02-18|1997-04-27|DELIVER IN PERSON|FOB|ng to the final dependencies-- furio| +9481|645727|45728|2|42|70252.98|0.02|0.03|N|O|1997-04-10|1997-02-01|1997-04-28|DELIVER IN PERSON|SHIP|sts nag blithely across t| +9482|105499|43006|1|21|31594.29|0.01|0.06|R|F|1995-02-21|1995-03-02|1995-03-12|NONE|SHIP|te the quickly bo| +9482|110609|23112|2|46|74501.60|0.00|0.06|R|F|1995-03-26|1995-03-07|1995-04-17|TAKE BACK RETURN|RAIL|ash. slyly express deposits are sl| +9482|590|591|3|22|32792.98|0.06|0.05|R|F|1995-05-11|1995-03-21|1995-06-03|COLLECT COD|REG AIR|ze. even, express depen| +9482|906611|44166|4|12|19410.84|0.04|0.04|A|F|1995-04-22|1995-04-01|1995-04-24|NONE|MAIL|sual pinto beans. unusual requests at the | +9482|400694|38219|5|25|39866.75|0.07|0.03|R|F|1995-02-02|1995-02-22|1995-02-18|NONE|MAIL|ckly pending pinto| +9483|236350|36351|1|20|25726.80|0.01|0.03|N|O|1998-05-03|1998-04-15|1998-05-26|TAKE BACK RETURN|FOB|ithely about the deposits. carefully pendin| +9484|724348|49377|1|14|19212.34|0.03|0.06|N|O|1996-04-27|1996-04-21|1996-05-09|NONE|TRUCK|ual instructio| +9484|104144|4145|2|12|13777.68|0.10|0.06|N|O|1996-03-12|1996-04-22|1996-03-27|NONE|MAIL|. special, pending deposits are | +9484|342934|42935|3|17|33607.64|0.04|0.03|N|O|1996-04-11|1996-04-08|1996-04-20|NONE|TRUCK|. carefully even escapades are fu| +9484|684178|21718|4|40|46485.60|0.09|0.08|N|O|1996-05-01|1996-05-14|1996-05-05|COLLECT COD|SHIP| platelets wake. courts sleep blith| +9484|975024|25025|5|11|12088.78|0.08|0.07|N|O|1996-03-13|1996-03-31|1996-03-29|TAKE BACK RETURN|AIR|deposits. furiously final gifts| +9485|147310|34817|1|24|32575.44|0.03|0.07|A|F|1994-12-22|1995-02-14|1995-01-16|TAKE BACK RETURN|TRUCK|le ironic foxes. requests | +9485|837409|12442|2|38|51161.68|0.06|0.03|A|F|1995-01-10|1995-02-07|1995-02-02|NONE|REG AIR|mong the blithely regular ideas. blithely p| +9485|328983|16502|3|43|86514.71|0.01|0.02|A|F|1994-12-21|1995-02-15|1994-12-31|NONE|RAIL|ial, silent deposits are deposits. ir| +9485|212534|47|4|45|65093.40|0.09|0.02|R|F|1995-03-23|1995-02-22|1995-04-17|DELIVER IN PERSON|FOB|sly accounts according | +9485|45552|8053|5|49|73379.95|0.06|0.01|R|F|1995-01-25|1995-01-24|1995-02-04|DELIVER IN PERSON|MAIL| packages w| +9485|584590|34591|6|42|70331.94|0.04|0.02|A|F|1995-03-22|1995-01-27|1995-04-19|NONE|RAIL|heodolites caj| +9485|203839|3840|7|39|67969.98|0.05|0.00|R|F|1995-04-18|1995-03-12|1995-04-29|TAKE BACK RETURN|RAIL|boost carefully. slyly | +9486|919740|44777|1|43|75667.10|0.02|0.05|N|O|1998-03-12|1998-02-12|1998-03-17|DELIVER IN PERSON|AIR| even platelets are pending, | +9487|736928|36929|1|37|72700.93|0.06|0.08|A|F|1994-09-18|1994-11-16|1994-09-28|DELIVER IN PERSON|FOB|lly ironic packages are sl| +9487|533987|21518|2|37|74775.52|0.07|0.03|A|F|1994-11-27|1994-10-30|1994-12-02|TAKE BACK RETURN|SHIP|al theodolites. quickly final account| +9487|713427|25942|3|44|63377.16|0.01|0.05|A|F|1994-12-21|1994-10-23|1995-01-19|TAKE BACK RETURN|RAIL|e silent, express| +9487|555202|42736|4|26|32686.68|0.01|0.06|R|F|1994-09-29|1994-11-17|1994-10-11|NONE|MAIL|unts cajol| +9487|266594|41605|5|50|78029.00|0.07|0.06|R|F|1994-12-26|1994-11-21|1995-01-12|COLLECT COD|AIR|ymptotes cajole. even excuses| +9487|636707|36708|6|30|49310.10|0.05|0.03|A|F|1994-09-22|1994-10-22|1994-09-24|COLLECT COD|TRUCK|furiously busy accounts. quickly final | +9487|131572|44075|7|19|30467.83|0.08|0.02|A|F|1994-09-29|1994-10-20|1994-10-25|DELIVER IN PERSON|AIR| the pendi| +9512|324066|49079|1|1|1090.05|0.02|0.08|N|O|1998-05-06|1998-06-21|1998-05-09|DELIVER IN PERSON|AIR|s haggle among the quickly regu| +9512|574355|49378|2|22|31445.26|0.08|0.01|N|O|1998-07-29|1998-06-09|1998-08-05|DELIVER IN PERSON|RAIL|its. slyly ironic foxes are| +9512|169740|44747|3|20|36194.80|0.08|0.00|N|O|1998-08-09|1998-07-18|1998-08-25|COLLECT COD|TRUCK|xcuses. fi| +9512|812642|25159|4|12|18655.20|0.00|0.07|N|O|1998-07-20|1998-07-03|1998-08-06|TAKE BACK RETURN|SHIP|fily special pinto beans. bl| +9513|594538|7050|1|38|62035.38|0.02|0.07|A|F|1992-05-25|1992-07-10|1992-06-13|NONE|RAIL| furiously along the carefully special pack| +9513|398644|23659|2|20|34852.60|0.03|0.03|R|F|1992-06-16|1992-07-08|1992-06-17|TAKE BACK RETURN|RAIL|r foxes nag carefully. fo| +9513|3221|28222|3|29|32602.38|0.00|0.04|A|F|1992-06-15|1992-06-27|1992-06-16|DELIVER IN PERSON|MAIL|g accounts. special, even theod| +9514|803550|28583|1|44|63954.44|0.00|0.08|R|F|1994-12-06|1994-12-02|1994-12-31|COLLECT COD|REG AIR|. slyly regular deposits w| +9514|251541|1542|2|12|17910.36|0.02|0.02|R|F|1994-11-08|1994-10-21|1994-12-01|DELIVER IN PERSON|FOB|nusual deposit| +9514|647779|22804|3|9|15540.66|0.04|0.01|R|F|1994-10-17|1994-11-14|1994-10-31|TAKE BACK RETURN|REG AIR| use speci| +9514|216900|4413|4|43|78126.27|0.02|0.01|R|F|1994-10-16|1994-11-19|1994-11-10|COLLECT COD|AIR|odolites after the express, special depth| +9514|429863|29864|5|31|55578.04|0.03|0.08|A|F|1994-12-02|1994-11-27|1994-12-19|COLLECT COD|TRUCK| even, reg| +9514|705853|30882|6|18|33458.76|0.09|0.06|A|F|1994-12-16|1994-11-03|1994-12-30|COLLECT COD|REG AIR|old deposits. fl| +9514|265246|2762|7|22|26647.06|0.07|0.00|R|F|1994-12-20|1994-10-27|1995-01-02|TAKE BACK RETURN|MAIL|e regular accounts? slyly even dependenci| +9515|979627|29628|1|45|76796.10|0.02|0.08|N|O|1997-12-23|1998-01-01|1998-01-03|COLLECT COD|AIR|l accounts affix furiously| +9515|575645|13179|2|13|22368.06|0.04|0.05|N|O|1997-11-28|1997-12-10|1997-12-01|COLLECT COD|REG AIR|r dependencies slee| +9516|607607|20120|1|8|12116.56|0.07|0.03|R|F|1995-01-27|1994-11-18|1995-02-12|COLLECT COD|TRUCK|e the furiously| +9516|39835|39836|2|36|63893.88|0.07|0.01|A|F|1994-10-05|1994-11-21|1994-10-30|TAKE BACK RETURN|RAIL|ets lose about the bold accounts. express,| +9516|505655|43186|3|5|8303.15|0.00|0.04|R|F|1994-10-04|1994-11-04|1994-10-08|NONE|AIR|regular theodolites detect. furious| +9516|539880|2391|4|48|92153.28|0.04|0.02|R|F|1994-10-13|1994-11-26|1994-11-01|COLLECT COD|TRUCK|ully special accounts eat carefu| +9516|746824|9339|5|7|13095.53|0.01|0.00|R|F|1994-10-19|1994-11-11|1994-11-12|TAKE BACK RETURN|REG AIR|riously ironic sheaves? quickly final| +9517|721192|33707|1|41|49739.56|0.05|0.04|A|F|1992-09-18|1992-08-19|1992-10-15|COLLECT COD|RAIL|kly regular theodol| +9517|60778|23280|2|19|33036.63|0.01|0.02|R|F|1992-10-03|1992-08-18|1992-11-01|TAKE BACK RETURN|MAIL| carefully silent instructions sleep pend| +9517|484576|9595|3|43|67103.65|0.10|0.07|A|F|1992-07-31|1992-08-25|1992-08-29|NONE|TRUCK|ions. quickly express packages poach furiou| +9517|256500|31511|4|2|2912.98|0.07|0.04|A|F|1992-09-29|1992-08-09|1992-10-28|COLLECT COD|AIR| above the carefully bold accounts wake| +9518|367069|17070|1|41|46578.05|0.07|0.08|R|F|1992-04-16|1992-02-21|1992-05-01|NONE|RAIL|en deposits. carefully regular| +9519|783770|8801|1|15|27806.10|0.03|0.07|R|F|1992-09-30|1992-08-15|1992-10-03|TAKE BACK RETURN|REG AIR|xes maintain carefully fu| +9519|819471|44504|2|12|16685.16|0.00|0.07|A|F|1992-07-18|1992-08-23|1992-07-27|TAKE BACK RETURN|REG AIR|ial pinto beans are blithe| +9519|843927|43928|3|29|54255.52|0.07|0.08|R|F|1992-08-13|1992-09-11|1992-09-04|COLLECT COD|MAIL|along the special, regular fo| +9519|867481|5033|4|40|57937.60|0.09|0.00|R|F|1992-10-07|1992-08-08|1992-10-23|COLLECT COD|TRUCK|cajole along the even r| +9544|612806|25319|1|49|84219.73|0.01|0.08|R|F|1993-05-03|1993-07-02|1993-05-07|NONE|RAIL|pendencies haggle f| +9544|427282|39791|2|11|13301.86|0.10|0.04|A|F|1993-05-13|1993-07-26|1993-05-23|DELIVER IN PERSON|SHIP| maintain among the regu| +9544|325908|921|3|13|25140.57|0.00|0.07|R|F|1993-05-11|1993-06-02|1993-05-25|TAKE BACK RETURN|RAIL|theodolites are carefully unusual depo| +9544|533890|46401|4|17|32705.79|0.08|0.01|A|F|1993-07-16|1993-06-02|1993-07-19|COLLECT COD|FOB|en pinto beans; carefully even reques| +9544|89001|39002|5|48|47520.00|0.05|0.04|A|F|1993-07-01|1993-06-27|1993-07-12|DELIVER IN PERSON|AIR|otes. regular instructions are carefully a| +9545|132626|32627|1|3|4975.86|0.02|0.01|A|F|1992-10-29|1992-12-23|1992-11-17|NONE|TRUCK|s wake after the special theodolites. fur| +9545|29309|4310|2|41|50770.30|0.06|0.06|R|F|1992-11-08|1993-01-17|1992-11-13|DELIVER IN PERSON|REG AIR|fully regular platelets. p| +9545|593270|5782|3|12|16359.00|0.00|0.08|R|F|1993-01-01|1992-12-28|1993-01-08|TAKE BACK RETURN|REG AIR| regular accounts. sly| +9545|87902|25406|4|17|32128.30|0.05|0.05|A|F|1993-02-09|1993-01-17|1993-02-20|NONE|SHIP| packages? fluffily final frets cajole qu| +9545|366836|4358|5|6|11416.92|0.02|0.01|R|F|1992-12-10|1992-12-18|1992-12-24|DELIVER IN PERSON|REG AIR|cross the carefull| +9545|409239|34256|6|43|49373.03|0.03|0.05|R|F|1993-02-06|1992-12-10|1993-02-09|COLLECT COD|TRUCK| platelets maintain carefully alongside | +9545|74472|11976|7|29|41947.63|0.06|0.02|R|F|1992-12-03|1992-12-26|1992-12-15|COLLECT COD|REG AIR|above the furiously final requ| +9546|636205|23742|1|12|13694.04|0.07|0.08|R|F|1994-01-24|1993-12-31|1994-02-22|DELIVER IN PERSON|REG AIR|usly. ironic foxes wake. blithely ev| +9546|694597|44598|2|24|38197.44|0.09|0.06|R|F|1994-03-07|1994-02-08|1994-03-18|NONE|FOB| furiously. carefully even req| +9546|89230|14233|3|7|8534.61|0.01|0.04|R|F|1994-03-19|1994-01-16|1994-04-16|NONE|MAIL|the quickly regular asy| +9546|680527|18067|4|39|58792.11|0.09|0.01|R|F|1994-01-29|1994-02-07|1994-02-11|TAKE BACK RETURN|FOB|fily. slyly | +9546|613174|711|5|9|9784.26|0.09|0.01|A|F|1993-11-28|1994-02-10|1993-12-21|COLLECT COD|TRUCK|ular, final depos| +9546|608134|20647|6|40|41684.00|0.08|0.00|R|F|1994-01-29|1994-01-28|1994-02-13|COLLECT COD|TRUCK|y slyly brave instru| +9546|899481|37033|7|11|16284.84|0.10|0.06|R|F|1994-01-20|1994-02-07|1994-01-22|COLLECT COD|TRUCK|ular platelets. quickly special pin| +9547|570278|45301|1|28|37751.00|0.00|0.01|R|F|1994-05-13|1994-04-28|1994-06-01|NONE|AIR|e among the special instructions-- slyl| +9547|654737|17251|2|33|55826.10|0.05|0.02|A|F|1994-04-23|1994-05-08|1994-04-24|NONE|FOB|entiments; even, | +9547|162415|12416|3|37|54664.17|0.09|0.07|A|F|1994-06-02|1994-05-16|1994-07-02|DELIVER IN PERSON|MAIL|use quickly. accounts x-ray quietly abou| +9547|697655|10169|4|14|23136.68|0.05|0.08|R|F|1994-04-13|1994-06-08|1994-05-03|TAKE BACK RETURN|REG AIR|es. express idea| +9547|477147|39657|5|30|33723.60|0.05|0.04|R|F|1994-04-02|1994-06-08|1994-04-06|DELIVER IN PERSON|REG AIR|s. ironic sentiments are across the| +9547|402862|40387|6|25|44121.00|0.08|0.05|R|F|1994-06-18|1994-04-16|1994-06-19|NONE|FOB|n escapades| +9548|998393|48394|1|16|23861.60|0.01|0.03|N|O|1995-10-16|1996-01-06|1995-11-05|DELIVER IN PERSON|TRUCK| final dependencies wake b| +9549|893154|5672|1|48|55061.28|0.09|0.05|N|O|1996-03-18|1996-03-07|1996-04-02|DELIVER IN PERSON|REG AIR|pending instruction| +9549|232640|7649|2|7|11008.41|0.09|0.04|N|O|1996-03-05|1996-01-28|1996-03-13|TAKE BACK RETURN|FOB|ide of the fluffily regular | +9549|968071|5629|3|6|6834.18|0.09|0.04|N|O|1996-02-29|1996-02-05|1996-03-14|TAKE BACK RETURN|SHIP|sual pinto beans use above the | +9549|356035|43557|4|29|31639.58|0.02|0.08|N|O|1996-02-20|1996-03-10|1996-03-02|COLLECT COD|MAIL|ctions. furiously| +9549|866148|3700|5|5|5570.50|0.10|0.00|N|O|1996-04-11|1996-03-20|1996-04-16|DELIVER IN PERSON|FOB|ckly fluffily pending requests.| +9549|344006|31525|6|44|46199.56|0.04|0.01|N|O|1996-02-06|1996-01-24|1996-02-26|NONE|REG AIR|quests. pending theodolites ac| +9549|699181|49182|7|22|25963.30|0.08|0.03|N|O|1996-04-21|1996-02-15|1996-04-24|DELIVER IN PERSON|AIR|round the blithel| +9550|128057|40560|1|23|24956.15|0.02|0.00|R|F|1994-10-12|1994-10-03|1994-11-06|TAKE BACK RETURN|SHIP|symptotes. unusual packages| +9551|608585|33610|1|9|13441.95|0.06|0.03|A|F|1992-07-31|1992-06-25|1992-08-12|DELIVER IN PERSON|MAIL|l packages. carefully even accounts lose | +9551|472026|34536|2|29|28942.00|0.02|0.03|A|F|1992-08-26|1992-08-24|1992-09-14|COLLECT COD|MAIL|ts wake quickly among the furiously | +9576|268083|30589|1|21|22072.47|0.03|0.05|N|O|1995-08-24|1995-09-21|1995-09-21|COLLECT COD|TRUCK| foxes. slyly ex| +9577|728328|28329|1|31|42044.99|0.03|0.06|A|F|1995-05-04|1995-05-08|1995-06-01|COLLECT COD|SHIP|unusual packages sleep blithely across the| +9577|995113|7633|2|38|45906.66|0.10|0.06|R|F|1995-02-26|1995-05-12|1995-03-25|COLLECT COD|SHIP|bold dependencies haggle. regu| +9577|849819|37368|3|49|86669.73|0.04|0.00|R|F|1995-06-02|1995-03-19|1995-06-17|NONE|TRUCK|ly pending courts solve waters| +9577|899893|37445|4|43|81392.55|0.02|0.04|R|F|1995-04-01|1995-03-29|1995-04-13|DELIVER IN PERSON|REG AIR| foxes. slyly| +9577|486707|24235|5|7|11855.76|0.01|0.02|A|F|1995-04-27|1995-05-06|1995-05-23|COLLECT COD|AIR|ully even foxes kindle. blithely u| +9578|413340|25849|1|24|30079.68|0.05|0.08|R|F|1995-03-18|1995-03-13|1995-04-07|NONE|SHIP|, pending platele| +9578|998934|48935|2|38|77249.82|0.09|0.04|R|F|1995-01-05|1995-02-18|1995-01-16|NONE|REG AIR|s are furiously carefully | +9578|80432|5435|3|43|60734.49|0.04|0.08|A|F|1995-01-24|1995-02-27|1995-02-15|TAKE BACK RETURN|SHIP|counts wake blithely carefu| +9578|818756|6305|4|46|77036.66|0.02|0.05|R|F|1995-04-03|1995-03-24|1995-04-14|DELIVER IN PERSON|FOB|coys detect | +9578|830090|30091|5|33|33661.65|0.07|0.04|R|F|1995-02-05|1995-03-04|1995-02-26|DELIVER IN PERSON|REG AIR|ear the blithely re| +9579|288616|13627|1|29|46533.40|0.02|0.02|N|O|1997-07-08|1997-08-24|1997-07-19|DELIVER IN PERSON|RAIL|s haggle rut| +9579|764931|2477|2|10|19959.00|0.08|0.01|N|O|1997-08-22|1997-07-24|1997-09-14|COLLECT COD|SHIP|iously regular instructions. bl| +9579|189670|14677|3|35|61588.45|0.00|0.04|N|O|1997-08-08|1997-08-07|1997-08-26|COLLECT COD|TRUCK|ly silent requests nag quickly| +9579|777341|27342|4|11|15601.41|0.05|0.07|N|O|1997-06-11|1997-07-24|1997-06-26|DELIVER IN PERSON|MAIL|usly ironic attainments. final packages nag| +9579|757739|7740|5|39|70071.30|0.04|0.05|N|O|1997-09-01|1997-06-25|1997-09-21|NONE|SHIP|ccounts. expre| +9579|303297|40816|6|38|49410.64|0.07|0.03|N|O|1997-07-27|1997-07-11|1997-07-29|COLLECT COD|RAIL|accounts. slyly f| +9579|497859|35387|7|10|18568.30|0.05|0.01|N|O|1997-06-21|1997-07-13|1997-07-11|COLLECT COD|AIR|posits wake bli| +9580|504928|4929|1|37|71517.30|0.04|0.05|A|F|1992-04-30|1992-03-27|1992-05-13|TAKE BACK RETURN|AIR|sly regular requests promise fluffily agai| +9581|339289|26808|1|35|46489.45|0.08|0.07|N|O|1995-09-07|1995-11-08|1995-09-16|TAKE BACK RETURN|RAIL|gs are. unusual deposits at the furiously| +9581|413443|13444|2|27|36623.34|0.09|0.08|N|O|1995-11-17|1995-10-29|1995-11-20|COLLECT COD|FOB|le. regular courts sleep furiousl| +9581|726871|26872|3|33|62628.72|0.06|0.07|N|O|1995-10-18|1995-11-05|1995-10-19|TAKE BACK RETURN|AIR| even requests bo| +9581|519450|19451|4|43|63185.49|0.00|0.06|N|O|1995-12-08|1995-11-05|1995-12-25|TAKE BACK RETURN|TRUCK|cial ideas| +9581|384212|34213|5|16|20739.20|0.00|0.01|N|O|1995-09-05|1995-10-24|1995-10-01|COLLECT COD|MAIL|refully blithely pendi| +9581|440816|15833|6|50|87839.50|0.07|0.02|N|O|1995-09-06|1995-10-05|1995-09-22|NONE|MAIL| finally against the carefully | +9581|793688|31234|7|40|71266.00|0.07|0.06|N|O|1995-11-16|1995-11-24|1995-12-12|COLLECT COD|RAIL|rding to the qui| +9582|507526|45057|1|8|12268.00|0.04|0.00|N|O|1996-02-21|1996-03-01|1996-03-16|DELIVER IN PERSON|RAIL|mong the quickl| +9582|987163|37164|2|16|20001.92|0.05|0.08|N|O|1995-12-31|1996-01-27|1996-01-06|COLLECT COD|REG AIR| deposits-- decoys are| +9582|232580|32581|3|33|49914.81|0.07|0.02|N|O|1996-03-20|1996-03-03|1996-04-18|COLLECT COD|MAIL|along the fluffily special deposits| +9582|967336|42375|4|25|35082.25|0.09|0.03|N|O|1996-01-23|1996-01-16|1996-02-15|COLLECT COD|TRUCK| up the regular requests. slyly s| +9582|13678|1179|5|7|11141.69|0.09|0.04|N|O|1996-03-18|1996-03-06|1996-04-05|NONE|MAIL|o beans; unusual, bold accounts boost th| +9582|880415|42933|6|45|62791.65|0.09|0.04|N|O|1996-01-16|1996-03-04|1996-01-28|TAKE BACK RETURN|RAIL|eas wake fluffily. final packages h| +9582|127587|2592|7|11|17760.38|0.07|0.08|N|O|1996-01-15|1996-02-22|1996-02-11|DELIVER IN PERSON|TRUCK|ns use ironic accounts.| +9583|350835|13343|1|13|24515.66|0.09|0.04|N|O|1998-07-29|1998-08-26|1998-08-17|TAKE BACK RETURN|MAIL| wake closely? furious| +9608|885974|11009|1|19|37238.67|0.00|0.05|N|O|1995-10-01|1995-07-30|1995-10-14|DELIVER IN PERSON|TRUCK|thely pending requ| +9609|170129|32633|1|27|32376.24|0.06|0.07|N|O|1995-12-09|1996-02-01|1995-12-13|DELIVER IN PERSON|TRUCK|arhorses wake carefully slyly ironic | +9609|351699|26714|2|37|64775.16|0.06|0.00|N|O|1995-11-27|1996-02-10|1995-12-09|DELIVER IN PERSON|FOB|nic packages poach among the quickly iron| +9609|989166|1686|3|43|53970.16|0.01|0.03|N|O|1996-02-23|1996-02-03|1996-02-26|COLLECT COD|FOB|ose furiously regular packages. ironic de| +9609|896784|46785|4|27|48079.98|0.07|0.03|N|O|1995-11-16|1996-01-18|1995-11-25|COLLECT COD|RAIL| deposits haggle furiously. q| +9609|241575|16584|5|20|30331.20|0.04|0.04|N|O|1995-12-08|1996-01-18|1996-01-02|DELIVER IN PERSON|SHIP|ly even ac| +9609|145672|20677|6|15|25765.05|0.03|0.03|N|O|1996-02-16|1996-01-09|1996-02-20|TAKE BACK RETURN|AIR|accounts. furiously final packa| +9610|532782|32783|1|50|90738.00|0.06|0.05|N|O|1997-11-05|1997-10-31|1997-11-15|TAKE BACK RETURN|REG AIR|d carefully pending pinto beans.| +9610|453641|3642|2|27|43054.74|0.06|0.07|N|O|1997-10-11|1997-09-23|1997-10-24|DELIVER IN PERSON|REG AIR|refully unusual escapades belie| +9610|339160|14173|3|3|3597.45|0.03|0.08|N|O|1997-10-21|1997-10-01|1997-11-10|DELIVER IN PERSON|AIR|ainst the slyly unusual requests: carefu| +9611|199279|24286|1|41|56509.07|0.07|0.02|A|F|1995-04-28|1995-02-25|1995-05-22|TAKE BACK RETURN|MAIL|lly ironic packa| +9612|62722|12723|1|14|23586.08|0.09|0.06|N|O|1998-05-25|1998-03-08|1998-06-20|DELIVER IN PERSON|RAIL|gular ideas. special, bold instructions | +9612|167431|29935|2|36|53943.48|0.07|0.01|N|O|1998-02-10|1998-03-27|1998-03-06|COLLECT COD|REG AIR|nis. slowly ironic d| +9613|261359|36370|1|22|29047.48|0.10|0.04|A|F|1993-10-09|1993-08-21|1993-10-29|NONE|SHIP|ans around the fluff| +9613|658518|46058|2|19|28053.12|0.05|0.04|R|F|1993-10-15|1993-07-29|1993-11-13|NONE|TRUCK|ests integrat| +9613|707532|32561|3|50|76975.00|0.00|0.02|R|F|1993-07-18|1993-08-09|1993-08-01|TAKE BACK RETURN|AIR|sts are furiously regular accounts! | +9613|484731|47241|4|15|25735.65|0.00|0.01|R|F|1993-09-28|1993-09-15|1993-10-13|DELIVER IN PERSON|AIR|s are alongside of the instructions. sl| +9613|861570|49122|5|14|21441.42|0.08|0.00|A|F|1993-06-27|1993-09-10|1993-07-08|DELIVER IN PERSON|RAIL|gle blithely de| +9613|396646|46647|6|9|15683.67|0.01|0.08|R|F|1993-07-01|1993-08-28|1993-07-12|TAKE BACK RETURN|FOB|s; even, pend| +9614|676457|26458|1|31|44436.02|0.02|0.06|R|F|1992-06-05|1992-04-28|1992-06-13|NONE|FOB|ect after the furiously ruthless instru| +9614|204180|29189|2|45|48787.65|0.04|0.05|A|F|1992-03-28|1992-04-13|1992-04-03|DELIVER IN PERSON|MAIL|sits. pending account| +9614|637247|24784|3|32|37894.72|0.09|0.04|A|F|1992-03-06|1992-03-27|1992-03-30|NONE|FOB|ding asymptotes. quickly pending depos| +9614|208658|21163|4|14|21932.96|0.01|0.06|R|F|1992-06-08|1992-05-14|1992-07-03|COLLECT COD|FOB|e daring accounts haggle carefully | +9614|903057|3058|5|1|1060.01|0.03|0.06|A|F|1992-03-06|1992-03-31|1992-03-11|COLLECT COD|REG AIR|. ironic f| +9614|671879|34393|6|17|31464.28|0.04|0.07|R|F|1992-05-13|1992-04-13|1992-05-25|DELIVER IN PERSON|MAIL|t theodolites. fl| +9614|261946|49462|7|25|47698.25|0.08|0.05|R|F|1992-05-14|1992-03-25|1992-05-16|COLLECT COD|SHIP|he carefully ironic accounts. quic| +9615|516730|16731|1|39|68121.69|0.02|0.00|N|O|1997-03-04|1997-04-03|1997-03-24|DELIVER IN PERSON|MAIL|cial platelets haggle| +9615|678544|28545|2|28|42630.28|0.10|0.04|N|O|1997-04-01|1997-03-20|1997-04-19|TAKE BACK RETURN|AIR|its detect fur| +9615|282647|32648|3|29|47259.27|0.03|0.05|N|O|1997-03-24|1997-02-22|1997-04-02|TAKE BACK RETURN|REG AIR|efully bold packages. i| +9615|447493|35018|4|12|17285.64|0.03|0.00|N|O|1997-03-10|1997-03-13|1997-04-01|DELIVER IN PERSON|REG AIR|! carefully fin| +9615|399|25400|5|18|23389.02|0.03|0.02|N|O|1997-03-13|1997-03-13|1997-03-17|DELIVER IN PERSON|TRUCK|iously fur| +9615|696899|21926|6|9|17062.74|0.03|0.02|N|O|1997-03-31|1997-04-08|1997-04-18|TAKE BACK RETURN|FOB|equests against| +9640|384518|22040|1|5|8012.50|0.02|0.03|N|O|1995-09-09|1995-09-13|1995-10-02|DELIVER IN PERSON|SHIP|eans. slyly final asymptotes in| +9640|579485|29486|2|33|51627.18|0.10|0.07|N|O|1995-08-15|1995-08-27|1995-09-11|TAKE BACK RETURN|FOB|nic asymptotes wake quickl| +9640|400778|779|3|17|28538.75|0.09|0.03|N|O|1995-09-05|1995-08-19|1995-09-28|TAKE BACK RETURN|REG AIR|, ironic deposits use among the | +9640|872394|22395|4|8|10930.80|0.03|0.08|N|O|1995-10-01|1995-07-25|1995-10-12|NONE|REG AIR|ly slyly close ideas. never even foxes | +9640|325381|394|5|42|59067.54|0.00|0.04|N|O|1995-08-12|1995-09-14|1995-08-22|TAKE BACK RETURN|FOB|ves doze fluffil| +9641|755971|31002|1|19|38511.86|0.05|0.00|N|O|1996-07-30|1996-07-04|1996-08-25|COLLECT COD|TRUCK|sits. careful| +9641|591675|16698|2|46|81265.90|0.02|0.03|N|O|1996-08-27|1996-06-14|1996-09-17|TAKE BACK RETURN|REG AIR|e the regular, unusual deposits wake slyly | +9641|278917|3928|3|8|15167.20|0.07|0.06|N|O|1996-06-12|1996-06-16|1996-07-10|TAKE BACK RETURN|RAIL|e. carefully unusual | +9641|751223|38769|4|46|58612.74|0.10|0.04|N|O|1996-07-25|1996-08-12|1996-08-16|NONE|MAIL|ideas haggl| +9642|789565|27111|1|6|9927.18|0.00|0.08|N|O|1997-12-08|1998-01-28|1997-12-26|COLLECT COD|MAIL|iously unusual p| +9642|214770|14771|2|17|28640.92|0.09|0.05|N|O|1998-01-03|1998-02-17|1998-01-09|TAKE BACK RETURN|REG AIR|as. unusual accounts after the fu| +9642|637701|37702|3|1|1638.67|0.06|0.05|N|O|1997-12-20|1998-02-01|1998-01-04|NONE|SHIP|usly final deposits use furiously | +9643|621555|46580|1|40|59060.80|0.00|0.02|A|F|1993-06-29|1993-06-05|1993-07-20|NONE|TRUCK|sts affix quickly: furiously quick accou| +9643|469538|19539|2|37|55777.87|0.03|0.02|A|F|1993-06-08|1993-05-04|1993-06-09|COLLECT COD|AIR| accounts. care| +9644|969517|19518|1|36|57112.92|0.03|0.03|R|F|1994-01-27|1994-01-17|1994-02-24|TAKE BACK RETURN|AIR|ugouts. blithely pe| +9644|667391|42418|2|24|32600.64|0.00|0.08|A|F|1994-03-07|1994-01-23|1994-04-04|NONE|REG AIR|ic accounts impress among t| +9644|827431|39948|3|33|44826.87|0.01|0.04|A|F|1994-01-07|1994-02-13|1994-01-28|DELIVER IN PERSON|AIR|cording to the slyl| +9644|624948|37461|4|41|76789.31|0.10|0.07|R|F|1994-02-26|1994-03-13|1994-03-01|NONE|FOB|uriously ironic instructions haggle agains| +9644|491330|16349|5|10|13213.10|0.08|0.06|A|F|1993-12-23|1994-03-12|1994-01-21|NONE|AIR|at the carefully special reques| +9644|775552|13098|6|22|35805.44|0.01|0.06|A|F|1994-03-10|1994-02-03|1994-03-14|NONE|RAIL|ckly ironic ideas. blithely ironic request| +9644|700325|25354|7|47|62288.63|0.01|0.01|R|F|1994-03-27|1994-03-14|1994-04-09|NONE|REG AIR| the carefully even deposits| +9645|350261|262|1|5|6556.25|0.04|0.00|R|F|1992-11-27|1992-11-15|1992-12-20|DELIVER IN PERSON|FOB|ular packages. blithely even requests l| +9645|834204|46721|2|17|19348.72|0.01|0.01|R|F|1992-09-11|1992-11-13|1992-09-19|COLLECT COD|SHIP|telets. furiously re| +9646|20120|32621|1|22|22882.64|0.04|0.05|R|F|1993-03-20|1993-02-03|1993-04-14|NONE|REG AIR|ly ironic reque| +9646|147066|34573|2|29|32278.74|0.03|0.07|A|F|1993-03-15|1993-03-01|1993-04-07|COLLECT COD|RAIL|ess pinto beans| +9646|722124|47153|3|25|28652.25|0.07|0.00|R|F|1992-12-22|1993-02-18|1993-01-14|DELIVER IN PERSON|AIR|ly unusual accounts. special, r| +9646|734608|34609|4|6|9855.42|0.09|0.03|R|F|1993-02-03|1993-01-03|1993-02-22|DELIVER IN PERSON|FOB|urts. ironi| +9646|555201|30224|5|42|52759.56|0.09|0.01|R|F|1993-02-06|1993-01-10|1993-02-11|NONE|AIR|ronic accounts after the regu| +9647|427607|15132|1|3|4603.74|0.03|0.07|N|O|1995-07-12|1995-04-27|1995-07-25|TAKE BACK RETURN|FOB| hockey players. requests cajole furi| +9647|778509|3540|2|19|30161.93|0.03|0.05|A|F|1995-04-28|1995-05-04|1995-05-23|NONE|FOB|ngside of the foxes| +9647|384739|9754|3|33|60182.76|0.02|0.01|A|F|1995-04-07|1995-04-29|1995-04-08|NONE|FOB|ly unusual realms wake furiously. blithely| +9647|294553|44554|4|38|58806.52|0.07|0.00|R|F|1995-04-11|1995-05-30|1995-04-29|NONE|TRUCK|s nag slyly furiously regular package| +9647|547281|22302|5|22|29221.72|0.10|0.04|R|F|1995-05-11|1995-06-12|1995-05-19|COLLECT COD|TRUCK|thely. quickly | +9647|140366|40367|6|15|21095.40|0.08|0.03|R|F|1995-05-30|1995-05-11|1995-06-04|NONE|FOB|press slyly quickl| +9672|825247|25248|1|45|52749.00|0.08|0.07|N|O|1998-01-11|1997-12-06|1998-01-25|NONE|SHIP| pending requests wak| +9673|945713|20750|1|8|14069.36|0.02|0.00|A|F|1994-01-17|1993-12-08|1994-01-29|NONE|SHIP| accounts promise above the | +9673|596519|34053|2|27|43618.23|0.04|0.02|R|F|1993-11-24|1993-12-10|1993-12-18|COLLECT COD|REG AIR|blithely pending platelets about the even,| +9673|686423|11450|3|28|39462.92|0.00|0.08|A|F|1993-12-15|1994-01-18|1993-12-22|NONE|MAIL| pinto beans are closely | +9673|704463|4464|4|26|38153.18|0.09|0.05|R|F|1993-11-18|1994-01-20|1993-12-02|COLLECT COD|TRUCK| theodolites. even theodolites alongsi| +9673|903675|16194|5|12|20143.56|0.00|0.00|A|F|1994-01-16|1994-01-23|1994-01-23|NONE|SHIP|es are carefully. carefully even | +9674|463198|38217|1|9|10450.53|0.06|0.07|R|F|1994-03-21|1994-02-17|1994-04-06|TAKE BACK RETURN|TRUCK|de of the regular foxe| +9674|964026|39065|2|23|25069.54|0.07|0.04|R|F|1994-04-27|1994-03-02|1994-05-25|DELIVER IN PERSON|FOB|es nag furio| +9674|368827|6349|3|28|53082.68|0.10|0.05|R|F|1994-03-22|1994-03-31|1994-04-21|DELIVER IN PERSON|SHIP|ough the furio| +9674|861278|48830|4|38|47090.74|0.07|0.01|A|F|1994-03-07|1994-03-05|1994-03-27|NONE|TRUCK|uffily regular ideas. | +9675|707385|7386|1|46|64048.10|0.08|0.05|N|O|1997-10-10|1997-11-06|1997-10-28|COLLECT COD|AIR|efully after the f| +9675|18751|43752|2|23|38404.25|0.09|0.06|N|O|1997-12-05|1997-12-06|1997-12-29|DELIVER IN PERSON|REG AIR|y final accounts boost among th| +9675|146055|33562|3|1|1101.05|0.02|0.04|N|O|1997-10-10|1997-10-27|1997-11-07|NONE|FOB|ut the ironic ideas. sly| +9676|537303|24834|1|34|45569.52|0.08|0.02|N|O|1997-08-31|1997-07-10|1997-09-23|NONE|AIR|s-- regular, regular| +9677|94630|19633|1|6|9747.78|0.06|0.04|N|O|1996-01-19|1995-12-10|1996-01-24|NONE|SHIP|ending requests. quickl| +9677|434753|34754|2|46|77635.58|0.03|0.05|N|O|1995-12-04|1995-12-12|1995-12-31|DELIVER IN PERSON|TRUCK|leep slyly. ca| +9677|885282|22834|3|42|53224.08|0.01|0.01|N|O|1995-12-06|1995-12-06|1996-01-05|COLLECT COD|RAIL|grate carefully among the furiously iron| +9678|415030|2555|1|23|21735.23|0.01|0.01|R|F|1992-03-02|1992-03-29|1992-03-06|TAKE BACK RETURN|TRUCK|gle quickly fluffily special dolphins. eve| +9678|405548|43073|2|32|46512.64|0.01|0.07|A|F|1992-02-24|1992-05-10|1992-03-21|TAKE BACK RETURN|TRUCK|he carefully ironic req| +9678|30890|43391|3|2|3641.78|0.00|0.05|A|F|1992-03-31|1992-03-27|1992-04-30|DELIVER IN PERSON|TRUCK|ual packages. bold accounts| +9678|163011|25515|4|36|38664.36|0.02|0.00|R|F|1992-04-19|1992-03-22|1992-04-23|COLLECT COD|FOB|ly ironic platelets. ideas sle| +9678|724870|37385|5|18|34107.12|0.00|0.05|R|F|1992-03-31|1992-04-19|1992-04-04|TAKE BACK RETURN|FOB|f the carefully pending requests are slyl| +9679|568762|6296|1|4|7322.96|0.00|0.02|N|O|1996-02-03|1996-03-28|1996-02-07|TAKE BACK RETURN|MAIL|ts are according to the regular, pen| +9679|177871|40375|2|33|64312.71|0.05|0.06|N|O|1996-02-15|1996-04-18|1996-02-22|NONE|RAIL|ainst the special, final platelets t| +9704|541015|3526|1|12|12671.88|0.05|0.06|N|O|1996-02-10|1996-03-02|1996-02-19|COLLECT COD|FOB|gular pinto beans wake furiously acc| +9704|823795|23796|2|20|34375.00|0.05|0.04|N|O|1996-05-01|1996-03-30|1996-05-03|TAKE BACK RETURN|REG AIR| doubt even, regular deposits. blithely un| +9704|512767|37788|3|15|26696.10|0.04|0.04|N|O|1996-02-19|1996-03-02|1996-02-27|DELIVER IN PERSON|MAIL|ffy instructions | +9704|67227|4731|4|12|14330.64|0.04|0.00|N|O|1996-01-23|1996-03-04|1996-02-16|NONE|RAIL|quickly unusual accounts are carefully ov| +9704|884008|9043|5|5|4959.80|0.09|0.08|N|O|1996-04-26|1996-02-19|1996-05-14|DELIVER IN PERSON|TRUCK|gle blithel| +9704|521151|33662|6|13|15237.69|0.09|0.01|N|O|1996-04-23|1996-02-18|1996-05-10|COLLECT COD|RAIL|rns nod along the pinto beans. b| +9704|975230|37750|7|43|56123.17|0.08|0.03|N|O|1996-02-15|1996-02-29|1996-03-09|NONE|MAIL|ss braids; fluffily unusual deposits| +9705|684638|47152|1|27|43810.20|0.05|0.00|R|F|1992-03-15|1992-04-01|1992-04-09|NONE|FOB|lyly even excuses. blithely u| +9705|710545|35574|2|46|71553.46|0.03|0.01|R|F|1992-03-17|1992-03-28|1992-04-09|DELIVER IN PERSON|SHIP|ld requests. ironic packag| +9705|116714|4221|3|38|65766.98|0.05|0.00|A|F|1992-04-26|1992-04-15|1992-05-22|DELIVER IN PERSON|SHIP|carefully final packages sleep quickly afte| +9705|612023|12024|4|44|41139.56|0.06|0.07|R|F|1992-04-16|1992-05-14|1992-05-05|TAKE BACK RETURN|AIR|r the furiously even ac| +9706|734843|34844|1|6|11266.86|0.05|0.04|N|O|1996-03-26|1996-03-26|1996-04-19|COLLECT COD|TRUCK|uriously special packages sleep slo| +9706|500787|13298|2|5|8938.80|0.10|0.01|N|O|1996-03-18|1996-05-06|1996-04-01|TAKE BACK RETURN|FOB|l deposits haggle quickly sometimes | +9707|367372|42387|1|5|7196.80|0.00|0.03|N|O|1996-04-27|1996-03-11|1996-05-03|NONE|SHIP|ts haggle stealthily outside th| +9707|405643|43168|2|8|12388.96|0.02|0.02|N|O|1996-03-04|1996-03-15|1996-03-17|DELIVER IN PERSON|SHIP|d sleep slyly even deposits-- caref| +9707|630404|17941|3|49|65384.13|0.01|0.04|N|O|1996-03-14|1996-03-13|1996-04-13|DELIVER IN PERSON|FOB|uests cajole furiously | +9708|352468|2469|1|38|57777.10|0.00|0.05|N|O|1995-11-12|1995-10-12|1995-11-13|DELIVER IN PERSON|SHIP|nts hinder | +9708|921309|46346|2|16|21284.16|0.00|0.05|N|O|1995-10-06|1995-11-02|1995-10-18|COLLECT COD|TRUCK|refully. pending foxes b| +9708|438694|13711|3|2|3265.34|0.00|0.01|N|O|1995-10-14|1995-10-19|1995-10-16|COLLECT COD|REG AIR|ully according to the| +9708|119469|31972|4|37|55073.02|0.07|0.07|N|O|1995-12-16|1995-10-14|1996-01-15|COLLECT COD|FOB|regular, special courts cajole acco| +9709|83626|33627|1|34|54727.08|0.06|0.00|A|F|1994-08-23|1994-09-01|1994-09-17|DELIVER IN PERSON|MAIL|ing requests in| +9709|498884|36412|2|24|45188.64|0.00|0.05|A|F|1994-07-20|1994-10-02|1994-08-17|DELIVER IN PERSON|FOB|ackages. carefully bold packages| +9709|734429|34430|3|28|40974.92|0.04|0.08|A|F|1994-10-05|1994-10-02|1994-10-24|DELIVER IN PERSON|MAIL| unwind carefully along| +9709|544240|19261|4|45|57789.90|0.10|0.04|R|F|1994-10-06|1994-09-18|1994-10-12|COLLECT COD|RAIL|lithely regular deposits bo| +9709|39379|14380|5|15|19775.55|0.02|0.04|A|F|1994-11-04|1994-10-05|1994-11-18|TAKE BACK RETURN|SHIP|g the quickly busy dependencies? re| +9709|837958|475|6|35|66356.85|0.04|0.01|R|F|1994-09-01|1994-09-28|1994-09-05|COLLECT COD|FOB|ests! regula| +9710|566931|29443|1|45|89905.95|0.02|0.04|N|O|1995-09-09|1995-07-14|1995-09-18|COLLECT COD|RAIL|c theodolites use ab| +9710|406575|44100|2|47|69632.85|0.02|0.00|N|O|1995-07-26|1995-07-09|1995-08-09|NONE|SHIP|ckages. final instru| +9710|289803|27319|3|9|16135.11|0.03|0.03|N|O|1995-07-14|1995-06-25|1995-07-30|TAKE BACK RETURN|SHIP|e carefully pending pla| +9710|713407|13408|4|28|39770.36|0.01|0.06|N|O|1995-07-07|1995-07-24|1995-08-01|DELIVER IN PERSON|FOB|ully. instru| +9710|227112|2121|5|31|32212.10|0.05|0.05|N|O|1995-09-20|1995-08-08|1995-10-14|NONE|RAIL|dolites. bold| +9710|70977|8481|6|43|83762.71|0.00|0.06|N|F|1995-06-16|1995-06-28|1995-07-04|COLLECT COD|FOB|ss forges across the requests | +9711|59392|46896|1|24|32433.36|0.03|0.08|R|F|1993-03-08|1993-03-10|1993-03-22|TAKE BACK RETURN|MAIL|yly ironic pinto beans cajole blithely s| +9711|188707|1211|2|24|43096.80|0.00|0.05|R|F|1993-05-05|1993-04-27|1993-05-09|TAKE BACK RETURN|FOB|gular theodoli| +9711|586305|48817|3|22|30608.16|0.00|0.07|A|F|1993-04-26|1993-03-29|1993-05-07|TAKE BACK RETURN|REG AIR| against the quickly pending pack| +9711|12384|24885|4|42|54447.96|0.00|0.06|A|F|1993-03-23|1993-04-09|1993-03-25|TAKE BACK RETURN|RAIL|its breach slyly. ev| +9736|927361|39880|1|24|33319.68|0.06|0.01|R|F|1994-02-24|1993-12-24|1994-03-20|DELIVER IN PERSON|TRUCK|ogs along the bli| +9736|140805|28312|2|44|81215.20|0.07|0.02|A|F|1994-03-15|1994-02-01|1994-04-05|NONE|AIR|above the sly, final requests.| +9736|500370|371|3|26|35629.10|0.08|0.07|A|F|1994-01-04|1994-01-22|1994-01-24|COLLECT COD|RAIL|ealthily about the blit| +9736|705775|30804|4|32|56983.68|0.02|0.06|A|F|1994-01-08|1993-12-27|1994-02-04|DELIVER IN PERSON|SHIP|ns across the always ironic | +9736|955660|43218|5|20|34312.40|0.10|0.08|A|F|1993-12-10|1994-02-10|1993-12-26|NONE|AIR|s slyly. ironic, re| +9736|761537|11538|6|43|68735.50|0.04|0.05|A|F|1993-12-31|1994-01-30|1994-01-02|NONE|TRUCK|ic package| +9737|924713|49750|1|22|38228.74|0.03|0.06|A|F|1994-06-05|1994-04-12|1994-06-29|DELIVER IN PERSON|SHIP|e quickly alongsid| +9737|636054|36055|2|20|19800.40|0.00|0.08|A|F|1994-07-07|1994-04-22|1994-07-15|TAKE BACK RETURN|RAIL|ideas are regular foxes.| +9737|158102|33109|3|25|29002.50|0.08|0.03|R|F|1994-03-29|1994-04-22|1994-04-07|TAKE BACK RETURN|REG AIR|lar, ironic reque| +9738|103029|28034|1|37|38184.74|0.01|0.06|N|O|1995-10-04|1995-10-28|1995-10-24|NONE|SHIP|sly after the slyly express | +9738|598341|35875|2|10|14393.20|0.04|0.03|N|O|1995-11-02|1995-11-18|1995-11-23|TAKE BACK RETURN|TRUCK|about the carefull| +9739|347077|47078|1|36|40466.16|0.02|0.04|A|F|1992-09-19|1992-08-04|1992-09-24|NONE|RAIL|excuses above the slyly final packa| +9739|315659|28166|2|22|36842.08|0.09|0.07|R|F|1992-07-26|1992-08-26|1992-08-06|TAKE BACK RETURN|TRUCK|inal, regular instructions b| +9739|279956|17472|3|48|92925.12|0.07|0.05|R|F|1992-07-10|1992-08-01|1992-07-14|NONE|TRUCK|e blithely even requests. fina| +9739|216972|16973|4|1|1888.96|0.01|0.08|R|F|1992-07-19|1992-09-01|1992-08-15|NONE|FOB|packages about the fluffily regu| +9739|632886|20423|5|32|58203.20|0.02|0.07|R|F|1992-10-18|1992-08-24|1992-11-09|TAKE BACK RETURN|AIR|regular accounts boost| +9739|905420|17939|6|48|68418.24|0.10|0.08|A|F|1992-08-13|1992-08-13|1992-09-04|NONE|MAIL|ounts. pending requ| +9740|926005|1042|1|29|29897.84|0.10|0.01|A|F|1993-08-21|1993-06-23|1993-08-29|NONE|MAIL| sleep furiously pending, close somas. iro| +9740|358776|8777|2|25|45869.00|0.03|0.08|A|F|1993-05-06|1993-06-01|1993-05-20|DELIVER IN PERSON|REG AIR| among the slyly regular instructions.| +9740|943655|31210|3|7|11890.27|0.10|0.04|A|F|1993-07-11|1993-06-30|1993-08-02|NONE|SHIP|lyly. unusual| +9740|994027|31585|4|3|3362.94|0.03|0.03|R|F|1993-08-13|1993-06-29|1993-08-28|TAKE BACK RETURN|FOB|express ideas was after the ironic | +9740|609839|34864|5|15|26232.00|0.08|0.01|A|F|1993-07-09|1993-06-04|1993-08-01|DELIVER IN PERSON|REG AIR|ongside of the quickly special requests| +9741|245946|45947|1|6|11351.58|0.10|0.01|R|F|1995-01-17|1995-01-01|1995-02-06|TAKE BACK RETURN|MAIL|of the fluffily pending reque| +9742|40187|27688|1|10|11271.80|0.00|0.01|N|O|1997-01-18|1996-11-25|1997-02-12|TAKE BACK RETURN|TRUCK|thely regular packages wak| +9743|64477|1981|1|6|8648.82|0.07|0.07|R|F|1993-04-13|1993-05-02|1993-05-07|TAKE BACK RETURN|FOB|nic deposits. carefully express platelet| +9743|650522|25549|2|25|36812.25|0.00|0.08|R|F|1993-03-01|1993-04-07|1993-03-31|NONE|FOB|heodolites boost carefully. bold i| +9768|293243|5749|1|24|29669.52|0.10|0.00|N|O|1997-10-15|1997-10-28|1997-11-08|TAKE BACK RETURN|SHIP|. quickly ironic theodolites poach blit| +9768|518939|31450|2|30|58737.30|0.00|0.08|N|O|1997-11-23|1997-09-13|1997-12-03|COLLECT COD|REG AIR|tions: silent hockey players after the iron| +9768|804187|16704|3|26|28369.64|0.07|0.07|N|O|1997-10-04|1997-10-24|1997-10-13|DELIVER IN PERSON|SHIP|packages use. slyl| +9768|958288|33327|4|30|40387.20|0.02|0.04|N|O|1997-11-16|1997-10-23|1997-12-08|COLLECT COD|FOB|old, special excuses against the| +9769|933486|21041|1|45|68374.80|0.00|0.00|R|F|1993-01-03|1993-01-20|1993-01-09|NONE|RAIL|kly final excuses cajole. idle, unusual som| +9769|95714|20717|2|23|39323.33|0.01|0.05|R|F|1993-02-28|1993-02-11|1993-03-11|TAKE BACK RETURN|TRUCK|eodolites al| +9769|661170|36197|3|31|35065.34|0.08|0.02|A|F|1993-01-02|1993-01-11|1993-01-18|COLLECT COD|AIR|nic, ironic packages | +9769|268586|31092|4|27|41973.39|0.08|0.03|R|F|1992-12-15|1993-01-08|1993-01-01|NONE|REG AIR|s cajole doggedly final asymptotes| +9770|970437|20438|1|46|69339.94|0.05|0.02|R|F|1994-03-10|1994-01-15|1994-03-28|DELIVER IN PERSON|REG AIR|thely bold pinto bean| +9770|128368|15875|2|15|20945.40|0.02|0.07|R|F|1994-03-19|1994-01-06|1994-04-07|TAKE BACK RETURN|MAIL|ven pinto beans are furiously at t| +9770|464832|39851|3|15|26952.15|0.01|0.04|A|F|1994-03-08|1993-12-26|1994-03-18|DELIVER IN PERSON|TRUCK| asymptotes use furiously acco| +9770|427734|27735|4|40|66468.40|0.10|0.08|A|F|1994-01-12|1994-02-16|1994-02-04|DELIVER IN PERSON|MAIL|press, regular p| +9770|909645|34682|5|7|11582.20|0.09|0.00|A|F|1993-12-28|1994-02-21|1994-01-26|COLLECT COD|TRUCK|its are about the furious| +9771|895504|8022|1|38|56979.48|0.07|0.05|N|O|1996-03-23|1996-04-01|1996-04-04|TAKE BACK RETURN|AIR|uriously. | +9771|724648|24649|2|23|38470.03|0.02|0.08|N|O|1996-05-07|1996-04-28|1996-05-12|NONE|TRUCK|instructions. carefully bold platel| +9772|155323|30330|1|3|4134.96|0.07|0.01|R|F|1994-11-23|1994-12-29|1994-12-20|COLLECT COD|MAIL|d, regular accounts wake caref| +9772|500173|37704|2|45|52791.75|0.03|0.00|R|F|1994-12-24|1994-12-08|1995-01-18|NONE|AIR|bove the regular, final theodolit| +9772|394658|32180|3|18|31547.52|0.04|0.06|R|F|1994-11-04|1994-12-05|1994-11-26|DELIVER IN PERSON|REG AIR|pinto beans| +9772|554|13055|4|19|27636.45|0.07|0.06|A|F|1994-11-28|1994-11-07|1994-12-28|TAKE BACK RETURN|FOB| bold warthogs. even accounts sleep ca| +9772|306665|6666|5|6|10029.90|0.03|0.01|A|F|1994-11-03|1994-11-03|1994-12-03|TAKE BACK RETURN|TRUCK|s cajole. un| +9772|108469|45976|6|42|62053.32|0.09|0.04|R|F|1994-12-01|1994-12-30|1994-12-18|DELIVER IN PERSON|MAIL|iously final pinto beans slee| +9772|24046|36547|7|14|13580.56|0.01|0.03|R|F|1995-01-09|1994-11-14|1995-01-23|NONE|REG AIR|efully pending packages| +9773|135176|10181|1|41|49657.97|0.02|0.05|N|O|1998-09-21|1998-09-15|1998-10-18|DELIVER IN PERSON|SHIP|as. blithely express foxes nag fu| +9773|898231|48232|2|37|45480.03|0.00|0.06|N|O|1998-09-22|1998-08-19|1998-10-04|DELIVER IN PERSON|RAIL| never final dependen| +9774|427431|14956|1|5|6792.05|0.00|0.06|N|O|1997-03-31|1997-03-08|1997-04-12|COLLECT COD|REG AIR|lyly carefully regular | +9775|236548|24061|1|3|4453.59|0.05|0.02|R|F|1994-01-27|1993-12-08|1994-02-11|DELIVER IN PERSON|AIR|dolites are blithely ag| +9775|653770|28797|2|8|13789.92|0.06|0.02|A|F|1993-11-24|1994-01-28|1993-11-30|NONE|MAIL|gular acco| +9800|588514|13537|1|25|40062.25|0.07|0.06|R|F|1994-03-18|1994-05-02|1994-03-30|NONE|TRUCK| carefully. fluffily regular r| +9800|140437|2940|2|7|10342.01|0.09|0.02|A|F|1994-02-25|1994-04-24|1994-03-16|NONE|AIR|structions are against the even, pending | +9800|314126|26633|3|46|52445.06|0.02|0.08|A|F|1994-05-18|1994-03-23|1994-06-03|COLLECT COD|AIR|integrate slyly on t| +9800|502666|27687|4|44|73420.16|0.06|0.05|A|F|1994-03-07|1994-05-09|1994-03-16|COLLECT COD|RAIL|y slowly pending asymptotes. speci| +9801|701308|26337|1|42|54989.34|0.06|0.03|N|O|1997-08-12|1997-09-02|1997-09-09|DELIVER IN PERSON|REG AIR| daringly | +9801|877792|15344|2|49|86717.75|0.06|0.06|N|O|1997-09-17|1997-10-26|1997-10-03|TAKE BACK RETURN|FOB|ully silent attainments wake furiously| +9801|46760|21761|3|12|20481.12|0.01|0.05|N|O|1997-10-30|1997-08-28|1997-11-28|DELIVER IN PERSON|REG AIR|counts. blithely regular pinto beans alon| +9802|178709|41213|1|35|62569.50|0.03|0.06|R|F|1993-05-10|1993-05-02|1993-05-19|COLLECT COD|AIR|ses are furiously across th| +9802|557585|45119|2|20|32851.20|0.08|0.08|R|F|1993-06-30|1993-05-16|1993-07-03|TAKE BACK RETURN|TRUCK|s. furiously unusual | +9802|314501|27008|3|41|62135.09|0.02|0.04|R|F|1993-04-13|1993-05-29|1993-04-15|NONE|MAIL|pecial instructions. furiou| +9802|812450|49999|4|38|51771.58|0.07|0.07|R|F|1993-03-29|1993-05-12|1993-04-16|COLLECT COD|RAIL|ng pinto beans. pending depo| +9802|834300|46817|5|24|29622.24|0.05|0.00|A|F|1993-04-27|1993-05-28|1993-05-05|TAKE BACK RETURN|AIR|ously regular pac| +9803|836222|11255|1|5|5790.90|0.00|0.06|N|O|1998-07-06|1998-04-29|1998-07-14|DELIVER IN PERSON|FOB|es cajole quickly quickly pen| +9803|371953|9475|2|10|20249.40|0.08|0.08|N|O|1998-05-09|1998-06-05|1998-05-20|DELIVER IN PERSON|TRUCK|. slyly even accounts| +9803|404289|4290|3|43|51310.18|0.04|0.05|N|O|1998-06-03|1998-05-08|1998-06-17|DELIVER IN PERSON|RAIL|y about the ironic accounts. carefully| +9803|875298|25299|4|42|53476.50|0.01|0.08|N|O|1998-07-20|1998-05-05|1998-08-18|TAKE BACK RETURN|MAIL|s. quickly final theod| +9804|565614|3148|1|43|72222.37|0.05|0.06|N|O|1997-09-29|1997-10-22|1997-10-01|TAKE BACK RETURN|MAIL| above the p| +9804|269893|7409|2|3|5588.64|0.02|0.03|N|O|1997-10-16|1997-12-09|1997-10-17|NONE|SHIP|ial packages according to the ironically re| +9804|76023|13527|3|20|19980.40|0.07|0.04|N|O|1997-11-07|1997-10-18|1997-11-14|TAKE BACK RETURN|FOB| fluffily even requ| +9805|585589|23123|1|26|43538.56|0.03|0.01|R|F|1993-06-03|1993-04-26|1993-06-14|COLLECT COD|REG AIR|refully expr| +9805|987527|37528|2|32|51663.36|0.10|0.08|R|F|1993-03-08|1993-05-06|1993-03-14|TAKE BACK RETURN|REG AIR|uests. carefully final dolphins nag slyly i| +9805|364102|14103|3|42|48975.78|0.02|0.01|A|F|1993-04-28|1993-05-03|1993-05-25|TAKE BACK RETURN|REG AIR|uests. final pinto beans sleep blithely; un| +9805|458230|45758|4|33|39210.93|0.10|0.05|A|F|1993-06-29|1993-04-06|1993-07-17|NONE|TRUCK|nal deposit| +9805|469720|32230|5|38|64208.60|0.04|0.08|A|F|1993-04-08|1993-04-26|1993-05-07|COLLECT COD|RAIL|usly even deposits are accounts. b| +9805|574370|49393|6|9|12999.15|0.10|0.04|R|F|1993-06-02|1993-04-12|1993-06-19|DELIVER IN PERSON|FOB|hins integrate pending, regular| +9805|423134|48151|7|9|9513.99|0.02|0.03|R|F|1993-03-17|1993-04-29|1993-04-14|DELIVER IN PERSON|TRUCK|press accounts haggl| +9806|611609|49146|1|39|59302.23|0.07|0.02|R|F|1995-03-11|1995-03-02|1995-03-20|DELIVER IN PERSON|MAIL|eans haggle quickly. | +9806|296084|33600|2|36|38882.52|0.08|0.00|R|F|1995-03-16|1995-02-24|1995-04-09|NONE|MAIL|riously final dinos. even packages | +9807|700594|595|1|25|39864.00|0.05|0.02|N|O|1997-09-14|1997-10-31|1997-09-22|TAKE BACK RETURN|SHIP|unusual, sp| +9832|320060|32567|1|22|23761.10|0.01|0.06|A|F|1993-10-16|1993-09-19|1993-10-22|DELIVER IN PERSON|MAIL|ent, bold | +9833|874656|12208|1|50|81530.50|0.09|0.02|N|O|1996-09-26|1996-10-08|1996-10-04|TAKE BACK RETURN|AIR|nding accounts thrash furiously above the f| +9833|341140|41141|2|20|23622.60|0.09|0.08|N|O|1996-08-18|1996-11-08|1996-09-12|COLLECT COD|RAIL|aggle even theodo| +9833|539289|1800|3|16|21252.16|0.09|0.01|N|O|1996-11-29|1996-09-18|1996-12-17|COLLECT COD|TRUCK|sublate fur| +9833|824131|36648|4|18|18991.62|0.00|0.05|N|O|1996-10-28|1996-10-24|1996-11-15|COLLECT COD|MAIL|gle regular ideas. special | +9834|987756|25314|1|3|5531.13|0.02|0.07|A|F|1994-12-17|1995-02-23|1994-12-19|TAKE BACK RETURN|REG AIR|iously express deposits | +9835|195413|45414|1|22|33185.02|0.01|0.04|R|F|1993-11-28|1993-12-26|1993-12-22|TAKE BACK RETURN|RAIL|e deposits. blithely even | +9835|293864|31380|2|17|31583.45|0.07|0.00|R|F|1993-11-19|1993-11-17|1993-12-01|TAKE BACK RETURN|FOB|bt blithely regul| +9835|962509|25029|3|3|4714.38|0.06|0.08|A|F|1993-11-07|1993-12-28|1993-11-19|NONE|REG AIR|uickly carefully silent accounts. pa| +9835|880987|30988|4|26|51166.44|0.01|0.05|R|F|1993-12-29|1993-12-13|1994-01-20|TAKE BACK RETURN|AIR|idly about th| +9835|745068|7583|5|37|41182.11|0.02|0.07|A|F|1994-01-24|1993-11-24|1994-02-03|DELIVER IN PERSON|SHIP|usual excuses. final a| +9836|752999|3000|1|37|75922.52|0.05|0.07|A|F|1993-11-15|1993-11-12|1993-11-19|COLLECT COD|MAIL|ing pinto beans sleep according | +9836|645720|45721|2|29|48305.01|0.10|0.02|R|F|1994-01-18|1993-12-07|1994-02-10|COLLECT COD|REG AIR|o the idly ca| +9836|604821|17334|3|32|55225.28|0.02|0.04|R|F|1994-01-11|1993-12-01|1994-01-20|DELIVER IN PERSON|RAIL|ly unusual ideas. carefully regular dolphi| +9836|219489|31994|4|9|12676.23|0.09|0.01|R|F|1993-12-09|1993-12-16|1993-12-31|NONE|SHIP|ironic instructions.| +9836|946472|21509|5|2|3036.86|0.03|0.00|R|F|1994-01-13|1993-12-01|1994-02-09|TAKE BACK RETURN|FOB| furiously carefully final reques| +9837|668905|31419|1|4|7495.48|0.10|0.04|R|F|1993-08-10|1993-07-16|1993-09-07|DELIVER IN PERSON|TRUCK|ons against the pen| +9837|271302|21303|2|41|52204.89|0.09|0.06|R|F|1993-09-12|1993-06-26|1993-10-06|NONE|SHIP|long the a| +9837|761864|49410|3|37|71255.71|0.03|0.07|A|F|1993-08-18|1993-08-18|1993-09-11|COLLECT COD|MAIL|regular accounts after the furiously fi| +9837|640420|15445|4|27|36730.53|0.06|0.02|R|F|1993-08-12|1993-08-13|1993-08-14|DELIVER IN PERSON|RAIL|sleep carefully along the | +9837|535041|10062|5|19|20444.38|0.05|0.05|A|F|1993-08-20|1993-07-29|1993-09-15|COLLECT COD|RAIL|ly blithe | +9837|430910|18435|6|19|34976.91|0.08|0.03|A|F|1993-09-01|1993-07-31|1993-09-24|TAKE BACK RETURN|MAIL|sts. carefully pending depos| +9837|299218|24229|7|42|51122.40|0.04|0.01|A|F|1993-06-28|1993-08-12|1993-06-30|DELIVER IN PERSON|AIR|l Tiresias. carefully bol| +9838|951480|1481|1|8|12251.52|0.04|0.03|R|F|1995-01-14|1994-11-28|1995-01-31|NONE|TRUCK|its. quickly i| +9838|519708|7239|2|21|36281.28|0.02|0.06|R|F|1995-01-15|1994-12-14|1995-01-31|DELIVER IN PERSON|TRUCK|ously special| +9838|726203|13746|3|19|23354.23|0.06|0.07|R|F|1995-01-31|1994-12-10|1995-03-01|TAKE BACK RETURN|AIR| accounts boost bold foxes. | +9838|290300|27816|4|41|52901.89|0.09|0.04|A|F|1995-02-14|1994-12-03|1995-02-27|TAKE BACK RETURN|SHIP|uickly. furio| +9838|70389|7893|5|41|55734.58|0.08|0.01|A|F|1994-12-02|1994-12-19|1994-12-30|DELIVER IN PERSON|AIR|s. furiously express ideas at the care| +9839|599563|37097|1|36|59851.44|0.10|0.05|N|O|1996-12-04|1996-12-19|1996-12-09|DELIVER IN PERSON|RAIL|ly even foxes sleep f| +9839|849966|24999|2|41|78552.72|0.09|0.06|N|O|1997-01-09|1996-12-16|1997-02-05|COLLECT COD|AIR| special requ| +9839|369950|7472|3|41|82817.54|0.02|0.04|N|O|1996-11-12|1996-11-28|1996-11-25|TAKE BACK RETURN|TRUCK| requests are a| +9864|50854|38358|1|41|73998.85|0.09|0.02|N|O|1996-08-02|1996-07-04|1996-08-16|TAKE BACK RETURN|AIR| furiously bold ideas w| +9864|690622|3136|2|37|59665.83|0.01|0.08|N|O|1996-08-27|1996-07-14|1996-09-18|DELIVER IN PERSON|AIR|gular waters doub| +9864|275453|25454|3|9|12855.96|0.01|0.00|N|O|1996-08-11|1996-07-31|1996-08-29|NONE|RAIL|e carefully reg| +9864|530847|5868|4|39|73234.98|0.02|0.07|N|O|1996-08-13|1996-07-23|1996-08-29|TAKE BACK RETURN|FOB|ely. fluffily even pearls cajole s| +9865|244922|7427|1|14|26136.74|0.00|0.02|N|O|1997-04-01|1997-04-29|1997-04-20|DELIVER IN PERSON|REG AIR| even, express instructions. | +9865|389757|39758|2|46|84950.04|0.08|0.00|N|O|1997-07-18|1997-06-07|1997-07-29|DELIVER IN PERSON|SHIP|ronic requests about | +9865|643592|43593|3|50|76778.00|0.03|0.02|N|O|1997-04-05|1997-05-15|1997-05-05|TAKE BACK RETURN|REG AIR|ests. pending deposits am| +9865|846656|21689|4|40|64104.40|0.02|0.01|N|O|1997-05-12|1997-06-01|1997-05-23|COLLECT COD|TRUCK|instructions. blithely regular deposit| +9865|746957|46958|5|8|16031.36|0.01|0.06|N|O|1997-07-02|1997-05-17|1997-07-25|COLLECT COD|FOB|ly. requests n| +9865|99314|36818|6|9|11819.79|0.01|0.02|N|O|1997-07-14|1997-05-23|1997-08-01|DELIVER IN PERSON|TRUCK|s cajole quickl| +9866|190909|28419|1|23|45997.70|0.10|0.07|N|O|1996-08-09|1996-07-31|1996-08-19|DELIVER IN PERSON|RAIL|ly daring, final deposits. ev| +9866|597878|10390|2|12|23710.20|0.09|0.06|N|O|1996-07-10|1996-08-17|1996-07-17|DELIVER IN PERSON|RAIL|e. regular foxes haggle furiou| +9866|524763|24764|3|19|33967.06|0.04|0.03|N|O|1996-07-04|1996-09-18|1996-07-31|TAKE BACK RETURN|SHIP|regular, silent theodolites are| +9866|675564|25565|4|35|53883.55|0.09|0.08|N|O|1996-07-17|1996-07-29|1996-07-31|NONE|MAIL|sly ruthless ideas hag| +9866|195716|8220|5|30|54351.30|0.06|0.08|N|O|1996-09-07|1996-08-18|1996-09-29|DELIVER IN PERSON|MAIL|even realms. ironically unusual dolphins| +9866|383219|33220|6|18|23439.60|0.04|0.04|N|O|1996-09-19|1996-09-18|1996-10-18|TAKE BACK RETURN|SHIP|times regular| +9867|176720|26721|1|42|75462.24|0.08|0.03|N|O|1996-02-15|1996-02-06|1996-03-10|DELIVER IN PERSON|REG AIR|egular accounts against the quickl| +9867|128806|28807|2|24|44035.20|0.09|0.06|N|O|1995-12-18|1996-01-28|1995-12-21|DELIVER IN PERSON|MAIL|ep fluffily. instructions int| +9867|828467|28468|3|23|32094.66|0.05|0.00|N|O|1995-12-13|1996-01-09|1996-01-08|TAKE BACK RETURN|AIR|ular foxes haggle fluffily ac| +9867|44153|6654|4|41|44983.15|0.05|0.04|N|O|1995-12-20|1995-12-19|1996-01-16|DELIVER IN PERSON|MAIL|olites impress furiously even packages.| +9867|67165|4669|5|5|5660.80|0.01|0.07|N|O|1996-02-23|1996-01-27|1996-03-05|NONE|SHIP|lly even requests; furiously regular de| +9868|119940|19941|1|37|72517.78|0.02|0.05|N|O|1995-07-06|1995-08-12|1995-07-25|TAKE BACK RETURN|FOB|usly express escapades hind| +9868|827929|27930|2|6|11141.28|0.06|0.02|N|O|1995-07-13|1995-08-19|1995-08-11|NONE|RAIL|nusual instructions. quickly bold depo| +9869|675346|373|1|48|63422.88|0.06|0.02|A|F|1993-09-29|1993-10-01|1993-10-24|TAKE BACK RETURN|RAIL|counts-- carefully r| +9870|325401|414|1|1|1426.39|0.06|0.07|N|O|1995-12-28|1996-01-03|1996-01-01|NONE|MAIL|c requests. express excuses sleep alongsid| +9870|14449|26950|2|23|31359.12|0.04|0.05|N|O|1996-02-26|1995-12-16|1996-03-13|NONE|TRUCK| carefully across the careful| +9871|894022|44023|1|42|42671.16|0.03|0.04|R|F|1993-07-26|1993-07-12|1993-08-11|NONE|SHIP|y pending courts. quickly regular deposi| +9871|827167|2200|2|39|42670.68|0.07|0.04|A|F|1993-09-09|1993-09-01|1993-09-30|DELIVER IN PERSON|TRUCK|lar requests hagg| +9871|188484|38485|3|15|23587.20|0.02|0.07|R|F|1993-07-20|1993-08-22|1993-07-22|DELIVER IN PERSON|SHIP|theodolites wake slyly unti| +9896|410883|48408|1|41|73548.26|0.06|0.07|N|O|1996-01-06|1995-11-16|1996-01-28|NONE|RAIL| beans affix slyly. thin packages boost| +9896|696930|9444|2|2|3853.80|0.04|0.04|N|O|1996-02-02|1995-12-01|1996-02-22|NONE|RAIL|r courts. unusual excuses pr| +9896|289518|39519|3|40|60300.00|0.01|0.05|N|O|1995-11-13|1995-12-15|1995-12-01|TAKE BACK RETURN|FOB| requests run furi| +9897|300003|12510|1|6|6017.94|0.06|0.05|A|F|1993-01-31|1992-12-18|1993-02-15|TAKE BACK RETURN|REG AIR|ys express epitaphs. | +9897|140979|15984|2|45|90898.65|0.02|0.06|R|F|1993-01-22|1992-12-22|1993-02-11|DELIVER IN PERSON|TRUCK|ake. ironic courts de| +9897|418705|43722|3|19|30849.92|0.06|0.08|A|F|1992-11-26|1992-12-02|1992-12-26|NONE|SHIP|kages above the even, regular depos| +9897|173907|23908|4|47|93102.30|0.10|0.02|A|F|1993-01-08|1993-01-28|1993-02-03|TAKE BACK RETURN|RAIL|s. bold instructions are reg| +9897|846226|33775|5|16|18754.88|0.08|0.02|A|F|1993-01-09|1993-01-10|1993-01-12|COLLECT COD|REG AIR|oxes boost furi| +9897|515979|3510|6|29|57853.55|0.00|0.06|A|F|1992-11-20|1992-12-27|1992-12-15|COLLECT COD|AIR| packages are qu| +9898|520907|20908|1|49|94466.12|0.02|0.02|R|F|1992-08-09|1992-08-26|1992-08-19|DELIVER IN PERSON|SHIP|he even packages! slyly final deposits ac| +9898|867772|30290|2|4|6958.92|0.03|0.05|R|F|1992-07-12|1992-08-03|1992-08-04|TAKE BACK RETURN|MAIL| to the unusual | +9898|628052|28053|3|24|23520.48|0.04|0.00|R|F|1992-08-01|1992-08-16|1992-08-15|NONE|RAIL|ss foxes. even asymptotes cajole blithely| +9898|658534|8535|4|8|11940.00|0.01|0.03|R|F|1992-09-06|1992-09-05|1992-09-16|COLLECT COD|REG AIR|arefully bold ideas haggle | +9898|978528|16086|5|1|1606.48|0.01|0.05|R|F|1992-10-26|1992-08-01|1992-11-15|COLLECT COD|SHIP|c courts sleep carefully along the carefull| +9899|616114|28627|1|7|7210.56|0.01|0.06|N|O|1997-01-11|1996-12-31|1997-01-18|TAKE BACK RETURN|MAIL|lar excuses. quickly | +9899|19775|32276|2|25|42369.25|0.06|0.06|N|O|1997-02-26|1997-01-03|1997-03-04|NONE|FOB|tions believe carefully | +9900|814814|14815|1|39|67422.03|0.09|0.07|A|F|1994-10-19|1994-11-26|1994-10-27|TAKE BACK RETURN|REG AIR| quickly permanent theodolite| +9900|573245|10779|2|31|40864.82|0.10|0.03|A|F|1994-12-17|1994-11-28|1994-12-27|TAKE BACK RETURN|SHIP|ously iron| +9900|522805|47826|3|5|9138.90|0.09|0.08|A|F|1994-10-22|1994-11-30|1994-11-19|COLLECT COD|MAIL|ccording to the carefully unus| +9901|254295|29306|1|41|51220.48|0.02|0.08|R|F|1994-12-16|1995-02-03|1994-12-27|NONE|RAIL|ites wake slyly. slyly express pear| +9901|931033|18588|2|7|7447.93|0.00|0.01|A|F|1994-11-16|1995-02-11|1994-11-22|TAKE BACK RETURN|REG AIR|inal pinto beans. furiou| +9901|863834|1386|3|7|12584.53|0.02|0.03|R|F|1995-01-04|1995-01-10|1995-01-20|COLLECT COD|TRUCK|. unusual, regular instructions nag ir| +9901|448837|48838|4|50|89290.50|0.03|0.07|R|F|1994-12-19|1994-12-30|1994-12-20|TAKE BACK RETURN|RAIL|re slyly silent pinto beans. s| +9902|51140|13642|1|27|29460.78|0.05|0.06|R|F|1993-05-04|1993-03-15|1993-05-30|TAKE BACK RETURN|SHIP|e carefully even requests sleep slyly dari| +9902|501585|1586|2|43|68222.08|0.01|0.03|A|F|1993-05-23|1993-04-13|1993-05-31|NONE|FOB|ckly ironic deposits a| +9902|132278|32279|3|16|20964.32|0.08|0.05|A|F|1993-05-02|1993-03-08|1993-06-01|COLLECT COD|MAIL|the furiously even packages haggle ca| +9902|189664|27174|4|39|68392.74|0.00|0.07|A|F|1993-02-11|1993-03-17|1993-02-13|NONE|TRUCK|telets according to the careful| +9902|672647|47674|5|35|56686.35|0.05|0.03|R|F|1993-05-11|1993-03-22|1993-05-17|DELIVER IN PERSON|AIR| final inst| +9902|176747|26748|6|4|7294.96|0.03|0.04|A|F|1993-02-21|1993-03-06|1993-03-13|TAKE BACK RETURN|FOB|s haggle. fluffy,| +9903|135044|35045|1|48|51793.92|0.10|0.02|A|F|1993-03-15|1993-03-20|1993-04-06|TAKE BACK RETURN|REG AIR| furiously ironic sentiments against the fi| +9903|677593|15133|2|16|25128.96|0.00|0.06|A|F|1993-02-26|1993-05-04|1993-03-25|NONE|FOB|counts believe furiously bli| +9903|295817|33333|3|47|85201.60|0.10|0.00|A|F|1993-05-12|1993-03-26|1993-05-26|DELIVER IN PERSON|RAIL|al dolphins. accounts above the fl| +9928|82115|7118|1|28|30719.08|0.03|0.06|N|O|1998-08-08|1998-08-08|1998-09-07|DELIVER IN PERSON|TRUCK|ly ironic re| +9928|106479|43986|2|47|69817.09|0.05|0.00|N|O|1998-08-14|1998-07-22|1998-08-24|DELIVER IN PERSON|TRUCK|ckly idle dolphins haggle at the| +9928|590008|27542|3|35|38429.30|0.05|0.03|N|O|1998-07-14|1998-07-06|1998-08-11|TAKE BACK RETURN|MAIL|lly regular accou| +9928|255749|5750|4|47|80122.31|0.08|0.08|N|O|1998-09-25|1998-07-18|1998-10-05|DELIVER IN PERSON|RAIL|nts? slyly regular theodolites haggle darin| +9929|815051|2600|1|45|43470.45|0.01|0.03|R|F|1992-04-17|1992-02-28|1992-05-01|COLLECT COD|SHIP|press accounts cajole. quickly express fr| +9929|556366|43900|2|46|65427.64|0.04|0.05|A|F|1992-02-20|1992-04-16|1992-03-13|COLLECT COD|RAIL|eposits. furiously final| +9929|838551|26100|3|6|8937.06|0.01|0.08|R|F|1992-03-30|1992-03-24|1992-04-22|TAKE BACK RETURN|REG AIR|ic accounts. blithely reg| +9930|953093|15613|1|15|17190.75|0.03|0.01|N|O|1996-09-15|1996-10-13|1996-10-14|TAKE BACK RETURN|AIR|lly idle requests. bold foxes sleep furiou| +9930|624577|49602|2|24|36036.96|0.10|0.01|N|O|1996-11-19|1996-12-04|1996-12-07|TAKE BACK RETURN|TRUCK|arefully blithely ironic pinto beans. bli| +9931|42783|30284|1|40|69031.20|0.05|0.06|N|O|1997-11-22|1997-10-24|1997-11-25|COLLECT COD|FOB| final, unusual deposits. b| +9932|776941|14487|1|25|50447.75|0.01|0.04|A|F|1993-08-03|1993-06-20|1993-08-04|TAKE BACK RETURN|TRUCK|ong the furiou| +9932|34731|22232|2|15|24985.95|0.10|0.03|R|F|1993-08-21|1993-07-19|1993-09-14|COLLECT COD|FOB|refully ironic accounts must use slyly ir| +9932|712526|25041|3|43|66155.07|0.02|0.07|R|F|1993-06-09|1993-06-23|1993-07-07|DELIVER IN PERSON|SHIP|lly about the fluf| +9933|983112|45632|1|16|19121.12|0.02|0.06|A|F|1995-03-17|1995-02-10|1995-04-15|NONE|REG AIR|ost furiously. slyly special accounts a| +9933|155158|30165|2|45|54591.75|0.03|0.06|A|F|1995-04-22|1995-04-01|1995-05-17|COLLECT COD|SHIP|ithely fluff| +9933|726382|38897|3|23|32392.05|0.03|0.08|A|F|1995-02-02|1995-03-03|1995-03-03|TAKE BACK RETURN|TRUCK|ove the sly| +9933|297935|47936|4|29|56054.68|0.10|0.06|A|F|1995-01-22|1995-04-03|1995-01-26|NONE|AIR|ccounts affix closely ironic, iron| +9933|384683|9698|5|49|86615.83|0.08|0.06|A|F|1995-02-22|1995-03-07|1995-03-03|NONE|REG AIR|nic ideas wake special packages. quick| +9933|361509|36524|6|4|6281.96|0.05|0.03|R|F|1995-02-05|1995-02-08|1995-02-27|NONE|RAIL|arefully final packages. furiously | +9933|875254|289|7|30|36876.30|0.10|0.01|A|F|1995-01-14|1995-02-13|1995-02-07|NONE|RAIL|bout the even deposits. furiousl| +9934|385064|22586|1|1|1149.05|0.10|0.06|N|O|1997-07-20|1997-06-25|1997-08-14|DELIVER IN PERSON|AIR|ealthy sentiments. furiously regul| +9934|770476|20477|2|43|66496.92|0.06|0.07|N|O|1997-08-17|1997-07-25|1997-08-28|NONE|RAIL|al asymptotes sleep furiousl| +9934|380738|30739|3|24|43649.28|0.06|0.04|N|O|1997-08-03|1997-07-06|1997-09-01|DELIVER IN PERSON|TRUCK|its use about the fluf| +9934|49778|37279|4|38|65655.26|0.01|0.03|N|O|1997-08-07|1997-06-18|1997-09-01|COLLECT COD|AIR|s among the furiously regular packages c| +9934|611607|36632|5|8|12148.56|0.10|0.01|N|O|1997-06-02|1997-07-06|1997-06-03|COLLECT COD|SHIP|blithely quickly final | +9934|274851|37357|6|36|65730.24|0.09|0.08|N|O|1997-07-26|1997-07-02|1997-08-04|TAKE BACK RETURN|REG AIR|ecial escapades. final requests are fluffi| +9935|165558|3068|1|26|42212.30|0.01|0.02|R|F|1992-05-03|1992-06-26|1992-05-14|DELIVER IN PERSON|REG AIR| carefully even courts. furiously| +9935|518306|18307|2|17|22512.76|0.08|0.00|A|F|1992-07-01|1992-07-24|1992-07-14|TAKE BACK RETURN|REG AIR|nto beans eat blithely bold ideas. furio| +9935|164668|2178|3|50|86633.00|0.03|0.07|A|F|1992-07-01|1992-07-05|1992-07-04|TAKE BACK RETURN|SHIP|s. platelets cajole furiously| +9935|569886|44909|4|6|11735.16|0.07|0.06|A|F|1992-08-22|1992-06-23|1992-09-09|DELIVER IN PERSON|FOB|ests. fluffily bold theodo| +9935|68550|6054|5|50|75927.50|0.09|0.07|R|F|1992-08-02|1992-06-13|1992-08-06|DELIVER IN PERSON|RAIL|y carefully express| +9935|115256|27759|6|45|57206.25|0.07|0.07|R|F|1992-06-20|1992-07-06|1992-07-10|COLLECT COD|MAIL|sts breach quickly furiously regular dep| +9935|106026|6027|7|23|23736.46|0.09|0.01|A|F|1992-06-07|1992-07-24|1992-07-01|TAKE BACK RETURN|AIR|instructions nag against the slyl| +9960|962429|37468|1|47|70094.86|0.08|0.06|A|F|1994-10-25|1994-11-28|1994-11-22|NONE|MAIL|uriously regular accounts use a| +9960|527425|27426|2|12|17428.80|0.04|0.03|A|F|1995-01-06|1994-11-07|1995-02-02|NONE|SHIP| deposits sleep against the sly| +9960|416147|16148|3|31|32956.72|0.08|0.01|R|F|1994-11-17|1994-12-12|1994-11-23|TAKE BACK RETURN|AIR|structions| +9960|166153|28657|4|49|59738.35|0.09|0.07|R|F|1994-11-26|1994-12-02|1994-11-28|COLLECT COD|SHIP|beans thrash carefully s| +9960|525924|945|5|35|68246.50|0.07|0.06|R|F|1994-12-12|1994-11-25|1995-01-10|DELIVER IN PERSON|SHIP|ongside of the| +9961|285491|10502|1|20|29529.60|0.08|0.01|A|F|1994-02-27|1994-03-27|1994-03-28|NONE|REG AIR|special packa| +9961|245572|20581|2|40|60702.40|0.10|0.04|A|F|1994-04-20|1994-03-19|1994-04-22|DELIVER IN PERSON|FOB|phins sleep furiously requests. express| +9961|312379|37392|3|39|54263.04|0.06|0.00|A|F|1994-03-14|1994-03-14|1994-03-16|COLLECT COD|REG AIR| foxes are. slyly bold deposits sleep | +9961|148405|10908|4|26|37788.40|0.00|0.01|A|F|1994-05-06|1994-04-14|1994-05-28|NONE|RAIL|l excuses are. u| +9961|235208|22721|5|49|56016.31|0.03|0.02|A|F|1994-06-01|1994-03-26|1994-06-03|TAKE BACK RETURN|RAIL|ng accounts affix carefully requests| +9961|126772|14279|6|41|73749.57|0.09|0.02|R|F|1994-04-24|1994-03-13|1994-05-21|COLLECT COD|REG AIR|lly bold platelets. deposits wake| +9962|549920|12431|1|9|17729.10|0.01|0.04|N|O|1997-10-31|1997-11-12|1997-11-07|TAKE BACK RETURN|AIR|yers eat slyly accordi| +9962|504101|4102|2|13|14366.04|0.04|0.05|N|O|1997-11-08|1997-11-16|1997-11-19|TAKE BACK RETURN|SHIP|. slyly express attainme| +9962|416304|3829|3|14|17083.92|0.07|0.03|N|O|1997-11-24|1997-12-27|1997-12-23|COLLECT COD|AIR|refully final waters are. slyly| +9962|816083|41116|4|40|39961.60|0.00|0.02|N|O|1997-10-17|1997-12-02|1997-11-12|COLLECT COD|RAIL|y regular dependencies engage. carefully | +9962|905611|30648|5|20|32331.40|0.00|0.04|N|O|1998-01-28|1997-11-13|1998-02-27|TAKE BACK RETURN|MAIL|osits inst| +9962|598098|10610|6|44|52627.08|0.06|0.00|N|O|1998-02-02|1997-12-06|1998-03-04|TAKE BACK RETURN|SHIP|ly unusual deposits. furious| +9963|944407|6926|1|12|17416.32|0.08|0.03|R|F|1994-05-26|1994-03-25|1994-06-02|TAKE BACK RETURN|RAIL|l foxes nag slyly along the s| +9963|636470|24007|2|24|33754.56|0.06|0.01|R|F|1994-05-04|1994-03-10|1994-05-31|TAKE BACK RETURN|AIR|fully slyly regular dolph| +9963|148983|48984|3|28|56895.44|0.06|0.01|A|F|1994-03-19|1994-04-20|1994-03-22|TAKE BACK RETURN|MAIL|ons haggle among the furiously slow| +9964|739339|39340|1|10|13783.00|0.08|0.08|R|F|1993-02-13|1993-04-07|1993-03-05|COLLECT COD|FOB|nal accounts cajole about the| +9964|60641|48145|2|17|27227.88|0.00|0.04|A|F|1993-02-06|1993-04-15|1993-03-04|TAKE BACK RETURN|RAIL|r Tiresias are blithel| +9964|187208|49712|3|48|62169.60|0.03|0.03|R|F|1993-06-02|1993-04-05|1993-06-17|COLLECT COD|REG AIR|ts. careful| +9964|391093|41094|4|25|29602.00|0.03|0.00|R|F|1993-03-13|1993-03-13|1993-04-12|DELIVER IN PERSON|TRUCK|nts integr| +9964|94072|31576|5|48|51171.36|0.02|0.05|R|F|1993-05-26|1993-05-05|1993-06-25|NONE|RAIL|the instruct| +9964|68053|5557|6|6|6126.30|0.01|0.03|R|F|1993-05-16|1993-04-29|1993-05-18|NONE|RAIL|ong the furiously final foxes. final theodo| +9965|649596|12109|1|5|7727.80|0.01|0.04|N|O|1996-01-21|1995-12-07|1996-02-12|NONE|MAIL| the carefully special i| +9965|749672|24701|2|16|27546.24|0.03|0.08|N|O|1995-12-20|1995-11-29|1995-12-26|TAKE BACK RETURN|FOB|ss foxes poach quietly. pending dep| +9965|725075|12618|3|20|22000.80|0.06|0.03|N|O|1996-01-17|1995-11-27|1996-01-31|COLLECT COD|TRUCK|ts use slyly furiously express foxes.| +9965|325568|25569|4|4|6374.20|0.10|0.02|N|O|1996-01-26|1995-12-27|1996-02-01|DELIVER IN PERSON|AIR|ites. even ideas use | +9965|806765|31798|5|16|26747.52|0.07|0.02|N|O|1995-12-30|1995-12-23|1996-01-09|COLLECT COD|TRUCK|packages. carefully re| +9965|287158|49664|6|39|44660.46|0.01|0.08|N|O|1996-02-05|1995-12-22|1996-02-25|COLLECT COD|FOB|nal ideas cajole furiously b| +9965|261532|11533|7|6|8961.12|0.03|0.04|N|O|1996-02-08|1995-12-24|1996-02-17|DELIVER IN PERSON|RAIL|ly ironic accounts. blith| +9966|554142|16654|1|24|28706.88|0.09|0.08|N|O|1997-04-28|1997-05-17|1997-05-23|TAKE BACK RETURN|REG AIR|y regular requests amon| +9966|453003|15513|2|40|38239.20|0.04|0.04|N|O|1997-04-20|1997-05-22|1997-04-29|COLLECT COD|FOB|furiously regular excuses?| +9966|608652|46189|3|38|59303.56|0.00|0.04|N|O|1997-06-28|1997-05-21|1997-07-10|TAKE BACK RETURN|TRUCK|sual dependencies cajole | +9966|613329|38354|4|19|23603.51|0.06|0.00|N|O|1997-04-23|1997-05-02|1997-05-23|TAKE BACK RETURN|FOB|tions sleep quickl| +9967|608721|21234|1|1|1629.69|0.07|0.04|R|F|1994-05-02|1994-02-20|1994-05-15|COLLECT COD|AIR| pinto beans cajole | +9967|759368|34399|2|38|54238.54|0.03|0.07|R|F|1994-04-08|1994-03-30|1994-05-07|COLLECT COD|TRUCK|ymptotes wake fluffily a| +9967|690377|2891|3|24|32816.16|0.08|0.06|R|F|1994-04-18|1994-03-28|1994-05-01|COLLECT COD|REG AIR|hins integrate above the un| +9967|152193|39703|4|15|18677.85|0.10|0.00|R|F|1994-05-02|1994-03-07|1994-05-23|DELIVER IN PERSON|TRUCK|eat blithely against the foxes. quickly| +9967|899466|24501|5|3|4396.26|0.09|0.08|R|F|1994-02-21|1994-03-11|1994-03-06|NONE|TRUCK|ously. pinto beans sleep quickly | +9967|313597|26104|6|25|40264.50|0.03|0.01|R|F|1994-01-17|1994-03-14|1994-02-04|DELIVER IN PERSON|MAIL|ccounts. carefully permanent pac| +9967|609900|22413|7|27|48866.49|0.10|0.04|A|F|1994-05-12|1994-03-06|1994-06-02|DELIVER IN PERSON|FOB|lets affix furiously along the furiou| +9992|574663|12197|1|22|38228.08|0.01|0.00|N|O|1997-03-27|1997-02-26|1997-04-12|TAKE BACK RETURN|MAIL| blithely r| +9992|349278|24291|2|32|42472.32|0.00|0.03|N|O|1997-04-28|1997-03-08|1997-05-28|DELIVER IN PERSON|RAIL|ct along the fluffi| +9992|310062|47581|3|31|33233.55|0.08|0.04|N|O|1997-03-10|1997-04-04|1997-03-28|DELIVER IN PERSON|AIR|iously beyond the unusual asympto| +9992|198428|48429|4|5|7632.10|0.02|0.01|N|O|1997-05-02|1997-03-24|1997-05-28|NONE|RAIL|otes. quickly quick requests a| +9992|969613|7171|5|46|77398.22|0.01|0.01|N|O|1997-01-21|1997-04-14|1997-02-18|COLLECT COD|FOB|hely ironic instructions ag| +9992|272274|22275|6|16|19940.16|0.02|0.01|N|O|1997-02-27|1997-04-14|1997-03-21|TAKE BACK RETURN|FOB|equests use furiously alongside of the u| +9993|807923|32956|1|35|64080.80|0.10|0.03|N|O|1995-08-18|1995-07-24|1995-09-14|DELIVER IN PERSON|REG AIR|l platelets.| +9994|281721|44227|1|42|71513.82|0.10|0.04|N|O|1997-01-16|1996-11-21|1997-01-31|TAKE BACK RETURN|REG AIR|lets cajole| +9995|298457|10963|1|6|8732.64|0.06|0.08|N|O|1997-12-09|1997-10-26|1997-12-28|DELIVER IN PERSON|SHIP| furiously regular packages affix | +9995|152964|40474|2|36|72610.56|0.06|0.00|N|O|1997-09-24|1997-12-03|1997-10-06|COLLECT COD|SHIP|y around the pending, regular asymptotes. | +9995|853993|41545|3|28|54514.60|0.10|0.01|N|O|1997-12-03|1997-11-23|1997-12-19|NONE|SHIP|uests wake q| +9995|53580|3581|4|42|64410.36|0.02|0.03|N|O|1997-10-20|1997-11-13|1997-11-07|DELIVER IN PERSON|FOB|n platelets wake. bravely final accounts n| +9995|519015|6546|5|42|43427.58|0.06|0.00|N|O|1997-10-14|1997-12-07|1997-10-21|TAKE BACK RETURN|SHIP|tect furiously always | +9996|532599|7620|1|26|42420.82|0.01|0.01|N|O|1996-02-07|1996-04-03|1996-02-12|COLLECT COD|RAIL|oxes. regular| +9996|376015|1030|2|36|39276.00|0.10|0.04|N|O|1996-04-11|1996-04-11|1996-04-19|DELIVER IN PERSON|REG AIR|eposits. carefully final pin| +9996|682427|32428|3|36|50738.04|0.05|0.04|N|O|1996-03-21|1996-03-10|1996-03-31|TAKE BACK RETURN|REG AIR|requests cajole quic| +9996|534367|34368|4|45|63060.30|0.08|0.08|N|O|1996-04-04|1996-02-14|1996-04-17|TAKE BACK RETURN|RAIL|ake quickly after the| +9996|101575|39082|5|26|40990.82|0.01|0.01|N|O|1996-04-05|1996-03-24|1996-04-29|TAKE BACK RETURN|SHIP|blithely bo| +9997|468488|30998|1|37|53889.02|0.06|0.04|N|O|1997-08-05|1997-08-23|1997-08-31|DELIVER IN PERSON|REG AIR|even deposits. special, unusual pa| +9997|864834|39869|2|26|46768.54|0.00|0.04|N|O|1997-11-08|1997-08-12|1997-11-23|DELIVER IN PERSON|TRUCK|packages. regular platelets ca| +9997|256560|31571|3|45|68244.75|0.00|0.03|N|O|1997-08-02|1997-08-15|1997-08-23|NONE|MAIL|kages wake furiously carefully unusual excu| +9998|995123|7643|1|39|47505.12|0.10|0.04|N|O|1997-03-04|1997-02-26|1997-03-18|NONE|AIR|y ironic h| +9998|20990|33491|2|20|38219.80|0.08|0.03|N|O|1997-02-21|1997-02-11|1997-03-07|COLLECT COD|MAIL|ss, regular courts | +9998|762857|25373|3|35|67193.70|0.06|0.02|N|O|1997-03-15|1997-02-24|1997-04-03|DELIVER IN PERSON|SHIP|ests. slyly regular requ| +9999|911736|49291|1|44|76898.36|0.04|0.06|N|O|1997-11-18|1997-12-22|1997-12-10|NONE|AIR| even courts | +9999|530655|18186|2|47|79224.61|0.03|0.05|N|O|1997-12-23|1997-12-31|1998-01-14|TAKE BACK RETURN|MAIL| against the silent | +9999|710448|10449|3|5|7292.05|0.03|0.02|N|O|1998-01-17|1998-01-19|1998-01-18|COLLECT COD|SHIP|g to the fluffily| +9999|498417|10927|4|2|2830.78|0.10|0.07|N|O|1998-01-04|1997-12-11|1998-01-29|NONE|TRUCK|, pending ideas. ironic, ironic accou| +10024|891561|16596|1|45|69863.40|0.05|0.07|N|O|1996-03-27|1996-06-14|1996-04-01|TAKE BACK RETURN|REG AIR|inal accounts are after the request| +10024|449090|24107|2|1|1039.07|0.10|0.05|N|O|1996-04-01|1996-05-31|1996-04-11|NONE|MAIL|ent packages. ironic packages a| +10025|148600|23605|1|4|6594.40|0.04|0.04|N|O|1996-06-23|1996-08-03|1996-07-01|DELIVER IN PERSON|RAIL|sely careful| +10025|507929|45460|2|1|1936.90|0.02|0.01|N|O|1996-08-01|1996-06-18|1996-08-26|TAKE BACK RETURN|REG AIR| ironic, expr| +10025|757489|7490|3|47|72683.15|0.04|0.01|N|O|1996-07-28|1996-07-09|1996-08-18|DELIVER IN PERSON|REG AIR|. carefull| +10026|275067|37573|1|21|21883.05|0.09|0.06|N|O|1997-09-09|1997-08-19|1997-09-21|DELIVER IN PERSON|AIR|sual depend| +10027|834060|34061|1|15|14910.30|0.06|0.04|N|O|1995-07-08|1995-06-14|1995-08-01|NONE|FOB|ng to the regular, special | +10027|43340|30841|2|35|44916.90|0.07|0.01|N|F|1995-06-09|1995-05-29|1995-07-02|DELIVER IN PERSON|SHIP|ly regular requests g| +10027|405455|17964|3|14|19046.02|0.08|0.00|N|O|1995-06-25|1995-06-15|1995-07-14|DELIVER IN PERSON|FOB|counts solve| +10027|467416|42435|4|32|44268.48|0.00|0.06|N|O|1995-08-05|1995-06-11|1995-08-25|TAKE BACK RETURN|RAIL|ounts cajole slyly bold, final| +10027|859074|9075|5|8|8264.24|0.00|0.04|N|F|1995-05-29|1995-05-21|1995-06-18|COLLECT COD|AIR|ag about the| +10028|831088|31089|1|19|19361.76|0.02|0.00|A|F|1992-11-12|1992-12-11|1992-12-02|DELIVER IN PERSON|RAIL|lithely according to the slyly expres| +10028|92109|17112|2|48|52852.80|0.10|0.05|A|F|1992-12-21|1992-12-25|1993-01-14|DELIVER IN PERSON|RAIL|quickly bold packages| +10029|2356|39857|1|23|28942.05|0.09|0.08|A|F|1992-05-23|1992-05-18|1992-06-14|DELIVER IN PERSON|RAIL|haggle carefully quickly unusual ide| +10029|593822|18845|2|2|3831.60|0.00|0.01|R|F|1992-06-18|1992-05-25|1992-07-05|DELIVER IN PERSON|MAIL| ironic accounts wake quickly aft| +10029|353275|3276|3|33|43832.58|0.09|0.03|R|F|1992-05-08|1992-06-19|1992-06-02|TAKE BACK RETURN|MAIL|s packages. unusual req| +10029|481934|44444|4|13|24906.83|0.01|0.08|A|F|1992-04-27|1992-05-29|1992-05-08|TAKE BACK RETURN|SHIP|s integrate | +10029|859605|22123|5|18|28162.08|0.01|0.00|A|F|1992-08-04|1992-06-27|1992-08-26|DELIVER IN PERSON|RAIL|es about th| +10030|30679|5680|1|15|24145.05|0.08|0.02|N|O|1996-06-07|1996-05-21|1996-06-22|TAKE BACK RETURN|AIR|r the slyly regular platel| +10030|610849|35874|2|30|52794.30|0.08|0.04|N|O|1996-05-02|1996-05-05|1996-05-17|NONE|REG AIR|ideas haggle bl| +10030|537427|12448|3|27|39538.80|0.07|0.05|N|O|1996-03-02|1996-04-30|1996-03-19|NONE|TRUCK| cajole blithely above| +10030|531966|44477|4|17|33964.98|0.02|0.07|N|O|1996-03-07|1996-03-31|1996-03-29|COLLECT COD|TRUCK|y ironic packages. slyly expres| +10030|748080|48081|5|23|25945.15|0.05|0.01|N|O|1996-04-30|1996-04-20|1996-05-14|TAKE BACK RETURN|FOB|ironic theodolites cajole above the even| +10031|275178|189|1|22|25369.52|0.09|0.01|A|F|1993-10-22|1993-10-15|1993-10-26|DELIVER IN PERSON|SHIP|egular packages use about | +10031|908617|8618|2|22|35762.54|0.08|0.02|A|F|1993-10-05|1993-10-10|1993-10-08|COLLECT COD|TRUCK|ld dinos are slyly. carefully regular requ| +10031|109689|47196|3|29|49261.72|0.09|0.03|A|F|1993-11-21|1993-12-01|1993-12-11|DELIVER IN PERSON|REG AIR|the foxes. slyly unusual | +10031|526230|13761|4|13|16330.73|0.06|0.00|R|F|1994-01-01|1993-11-17|1994-01-24|DELIVER IN PERSON|REG AIR|ffily regular req| +10031|339592|27111|5|39|63631.62|0.07|0.04|A|F|1993-09-19|1993-12-05|1993-10-07|NONE|SHIP|at the express, unusual dependencies boos| +10031|512808|25319|6|27|49161.06|0.04|0.06|A|F|1993-12-02|1993-11-02|1993-12-13|TAKE BACK RETURN|RAIL|ress deposits use ca| +10056|234390|46895|1|2|2648.76|0.09|0.05|R|F|1993-11-12|1993-10-01|1993-12-09|COLLECT COD|TRUCK|cial packages. careful| +10056|381468|43976|2|5|7747.25|0.04|0.05|A|F|1993-09-06|1993-09-22|1993-10-05|COLLECT COD|REG AIR|posits. carefully regular id| +10056|327559|2572|3|15|23798.10|0.04|0.08|A|F|1993-10-31|1993-10-24|1993-11-09|NONE|AIR|uriously even courts play. reques| +10057|340001|27520|1|37|38516.63|0.02|0.06|N|O|1998-11-09|1998-09-13|1998-11-10|COLLECT COD|FOB|ckly along the blithely close a| +10057|394292|6800|2|1|1386.28|0.05|0.03|N|O|1998-08-19|1998-08-16|1998-08-23|COLLECT COD|FOB|ons. ideas among the bold, b| +10058|864411|26929|1|45|61891.65|0.08|0.01|N|O|1997-08-02|1997-06-16|1997-08-22|COLLECT COD|AIR|ithely. sly| +10058|140551|3054|2|27|42971.85|0.08|0.01|N|O|1997-09-02|1997-08-13|1997-09-19|DELIVER IN PERSON|FOB|t blithely regular requests. furiou| +10058|228823|28824|3|11|19269.91|0.01|0.01|N|O|1997-05-28|1997-06-14|1997-06-07|NONE|FOB|s. busily fluffy| +10058|827922|2955|4|46|85094.48|0.02|0.02|N|O|1997-05-23|1997-07-08|1997-06-03|TAKE BACK RETURN|RAIL|kly unusual asymptotes alongside| +10058|882464|44982|5|36|52071.12|0.07|0.01|N|O|1997-08-01|1997-07-29|1997-08-17|NONE|AIR| carefully regular packag| +10059|409366|46891|1|5|6376.70|0.04|0.08|R|F|1993-08-28|1993-09-02|1993-09-23|TAKE BACK RETURN|FOB| against the blithely unusual package| +10059|202015|14520|2|23|21091.00|0.02|0.02|R|F|1993-06-20|1993-08-18|1993-07-04|TAKE BACK RETURN|AIR|ly regular accounts. | +10059|263148|25654|3|31|34445.03|0.07|0.07|A|F|1993-07-06|1993-08-08|1993-07-18|COLLECT COD|TRUCK|c deposits wake caref| +10059|712199|24714|4|29|35123.64|0.10|0.05|R|F|1993-08-19|1993-07-15|1993-09-18|COLLECT COD|FOB| the special co| +10059|917042|42079|5|9|9531.00|0.06|0.03|R|F|1993-08-05|1993-07-06|1993-09-04|COLLECT COD|SHIP|es thrash. quickly pending fox| +10060|357740|7741|1|23|41347.79|0.05|0.04|N|O|1996-05-09|1996-06-29|1996-05-18|DELIVER IN PERSON|AIR|press accounts s| +10060|520709|20710|2|6|10378.08|0.07|0.01|N|O|1996-07-27|1996-06-17|1996-08-26|COLLECT COD|RAIL|ges against the packages| +10060|543130|5641|3|34|39885.74|0.08|0.01|N|O|1996-05-10|1996-06-09|1996-05-14|DELIVER IN PERSON|AIR|deposits. ideas are slyly slyly even dolph| +10060|375649|25650|4|18|31043.34|0.10|0.07|N|O|1996-08-08|1996-05-31|1996-08-16|NONE|REG AIR|to beans. fluffily e| +10061|589104|14127|1|19|22668.52|0.09|0.00|N|O|1995-10-12|1995-11-01|1995-10-15|TAKE BACK RETURN|REG AIR|kages nag about the regular foxes. flu| +10061|63146|25648|2|34|37710.76|0.07|0.03|N|O|1995-11-07|1995-11-13|1995-11-16|DELIVER IN PERSON|FOB|ously special packages. carefully i| +10061|288050|38051|3|33|34255.32|0.01|0.00|N|O|1996-01-12|1995-12-03|1996-02-08|TAKE BACK RETURN|FOB|thely special requests haggle. som| +10061|244043|31556|4|31|30597.93|0.07|0.07|N|O|1995-11-03|1995-10-30|1995-11-05|COLLECT COD|REG AIR| regular foxes cajole blithely. sil| +10061|628865|41378|5|40|71753.20|0.09|0.03|N|O|1995-10-03|1995-10-26|1995-10-08|NONE|TRUCK| regular acco| +10062|500243|37774|1|18|22377.96|0.01|0.04|N|O|1997-02-26|1997-03-06|1997-03-09|TAKE BACK RETURN|AIR|nusual pinto beans. quickl| +10062|582262|19796|2|32|43015.68|0.00|0.02|N|O|1997-05-26|1997-03-09|1997-06-18|DELIVER IN PERSON|FOB|nal foxes doubt| +10062|70678|20679|3|5|8243.35|0.06|0.08|N|O|1997-03-27|1997-03-25|1997-04-25|NONE|TRUCK|lithely bold accounts| +10062|880676|30677|4|44|72891.72|0.04|0.08|N|O|1997-02-14|1997-04-01|1997-02-23|TAKE BACK RETURN|RAIL|ep quickly blithe| +10063|636474|48987|1|37|52186.28|0.00|0.04|N|O|1996-01-23|1996-01-12|1996-01-25|COLLECT COD|MAIL|ithes. blithely | +10063|212346|12347|2|20|25166.60|0.02|0.05|N|O|1995-12-24|1996-02-17|1995-12-31|COLLECT COD|REG AIR|unusual exc| +10063|882822|45340|3|49|88434.22|0.08|0.00|N|O|1995-12-30|1996-01-27|1996-01-02|NONE|AIR|kly even notornis. regular depths are: ca| +10063|585948|48460|4|2|4067.84|0.09|0.05|N|O|1996-01-19|1996-01-01|1996-02-05|NONE|AIR|e express packages. final requests a| +10063|25876|25877|5|27|48650.49|0.04|0.04|N|O|1996-03-15|1996-01-23|1996-03-28|NONE|AIR|refully regular deposits. theod| +10063|897628|10146|6|19|30886.02|0.08|0.03|N|O|1995-12-10|1996-01-25|1996-01-02|NONE|RAIL|kly ironic deposits. ironic, pend| +10063|432911|20436|7|28|51628.92|0.02|0.07|N|O|1996-02-15|1996-01-02|1996-03-03|TAKE BACK RETURN|AIR|ses. furiously unusual accounts after th| +10088|933854|21409|1|45|84951.45|0.05|0.03|N|O|1998-08-09|1998-08-06|1998-08-22|NONE|FOB|riously. unusua| +10088|275955|966|2|42|81099.48|0.08|0.07|N|O|1998-07-30|1998-09-04|1998-08-17|COLLECT COD|FOB|fully regular r| +10088|974795|37315|3|18|33655.50|0.10|0.03|N|O|1998-06-30|1998-08-01|1998-07-14|COLLECT COD|REG AIR|ronic ideas. careful| +10088|367758|30266|4|28|51120.72|0.07|0.00|N|O|1998-10-15|1998-07-25|1998-10-25|COLLECT COD|SHIP|detect alongside of the special o| +10088|900872|873|5|27|50566.41|0.07|0.05|N|O|1998-09-20|1998-08-27|1998-09-26|TAKE BACK RETURN|SHIP|ounts. blithely regular packages alo| +10088|945389|7908|6|32|45898.88|0.02|0.03|N|O|1998-08-05|1998-08-05|1998-08-27|DELIVER IN PERSON|TRUCK|ymptotes boost furi| +10088|145038|7541|7|48|51985.44|0.10|0.00|N|O|1998-10-17|1998-08-07|1998-11-11|TAKE BACK RETURN|MAIL|s. blithely special pac| +10089|645479|33016|1|24|34186.56|0.10|0.03|A|F|1992-05-05|1992-05-26|1992-05-30|DELIVER IN PERSON|SHIP| requests! furiously final requests ha| +10089|550472|25495|2|6|9134.70|0.02|0.06|A|F|1992-06-22|1992-05-12|1992-06-25|DELIVER IN PERSON|TRUCK|. carefully ironic theodolites maintain qui| +10089|778333|40849|3|25|35282.50|0.03|0.07|R|F|1992-05-07|1992-05-30|1992-05-13|COLLECT COD|SHIP| asymptotes after the furiously final depo| +10090|419452|6977|1|47|64457.21|0.00|0.03|N|O|1997-08-17|1997-08-15|1997-08-23|NONE|MAIL|ests sleep. slyly silent platelets are qu| +10090|720532|45561|2|25|38812.50|0.05|0.06|N|O|1997-10-06|1997-09-05|1997-10-30|DELIVER IN PERSON|MAIL|l packages x-ray carefully silent, f| +10090|968230|30750|3|32|41542.08|0.09|0.05|N|O|1997-07-10|1997-07-27|1997-07-20|COLLECT COD|RAIL| theodolites. b| +10090|31307|6308|4|49|60676.70|0.08|0.03|N|O|1997-07-31|1997-07-30|1997-08-27|DELIVER IN PERSON|REG AIR|cial accounts a| +10090|165194|40201|5|27|33998.13|0.00|0.07|N|O|1997-06-29|1997-07-22|1997-07-01|DELIVER IN PERSON|SHIP|aggle along the carefully unusual requ| +10090|400081|12590|6|21|20602.26|0.02|0.02|N|O|1997-09-10|1997-08-16|1997-10-04|DELIVER IN PERSON|MAIL|ly regular pack| +10090|156476|31483|7|24|36779.28|0.08|0.06|N|O|1997-09-15|1997-08-27|1997-10-08|TAKE BACK RETURN|RAIL|ymptotes. ironi| +10091|887287|49805|1|19|24210.56|0.08|0.01|N|O|1998-01-07|1997-11-09|1998-01-29|NONE|RAIL|ronic orbits. c| +10091|621170|33683|2|44|48010.16|0.10|0.00|N|O|1997-11-16|1997-11-18|1997-12-09|TAKE BACK RETURN|RAIL|he furiously bold| +10092|668216|5756|1|14|16578.52|0.03|0.06|N|O|1997-09-27|1997-10-14|1997-10-13|DELIVER IN PERSON|TRUCK|s. even theodolites near th| +10092|694356|31896|2|46|62114.72|0.10|0.06|N|O|1997-10-12|1997-09-22|1997-11-08|NONE|TRUCK|nt special dugouts. bo| +10092|40274|2775|3|32|38856.64|0.09|0.08|N|O|1997-09-25|1997-10-22|1997-10-16|TAKE BACK RETURN|AIR|r requests cajole. thinly| +10093|473150|23151|1|12|13477.56|0.05|0.03|N|O|1997-09-06|1997-09-20|1997-09-22|TAKE BACK RETURN|REG AIR| haggle quickl| +10093|216628|16629|2|34|52516.74|0.09|0.06|N|O|1997-10-05|1997-10-30|1997-10-26|TAKE BACK RETURN|TRUCK|accounts. slyly f| +10093|858872|46424|3|3|5492.49|0.05|0.06|N|O|1997-11-01|1997-10-22|1997-11-15|TAKE BACK RETURN|AIR|odolites nag across the silent, b| +10093|60688|10689|4|43|70893.24|0.08|0.04|N|O|1997-10-09|1997-10-31|1997-11-04|COLLECT COD|FOB|efully. unusual, silent deposits sleep c| +10093|976818|1857|5|21|39790.17|0.06|0.02|N|O|1997-11-20|1997-10-02|1997-12-06|COLLECT COD|AIR|s. slyly ruth| +10093|370077|20078|6|3|3441.18|0.10|0.02|N|O|1997-11-22|1997-09-23|1997-12-03|NONE|RAIL|ts. express idea| +10093|870634|20635|7|33|52951.47|0.04|0.04|N|O|1997-08-31|1997-11-11|1997-09-16|COLLECT COD|AIR|eans dazzle quickl| +10094|738512|38513|1|17|26358.16|0.06|0.02|N|O|1996-10-08|1996-09-06|1996-10-15|TAKE BACK RETURN|AIR|. regular pac| +10094|169791|32295|2|14|26051.06|0.03|0.01|N|O|1996-08-21|1996-09-16|1996-08-22|NONE|AIR|t fluffily. bol| +10094|660864|48404|3|11|20073.13|0.10|0.05|N|O|1996-09-11|1996-09-14|1996-09-30|TAKE BACK RETURN|MAIL|instructions. slyly pending accounts bel| +10094|128046|28047|4|19|20406.76|0.08|0.01|N|O|1996-09-04|1996-07-26|1996-09-27|TAKE BACK RETURN|TRUCK|nto beans haggle along| +10094|65224|2728|5|42|49947.24|0.10|0.07|N|O|1996-09-10|1996-08-27|1996-10-05|DELIVER IN PERSON|RAIL|lets. final accounts | +10095|195258|32768|1|38|51423.50|0.07|0.07|A|F|1993-08-07|1993-09-18|1993-08-14|COLLECT COD|TRUCK|ter the carefully regular instru| +10120|275753|25754|1|36|62234.64|0.08|0.06|R|F|1992-12-02|1992-11-06|1992-12-06|COLLECT COD|SHIP|ily ironic | +10120|573118|10652|2|44|52407.96|0.00|0.07|A|F|1992-10-01|1992-10-11|1992-10-13|TAKE BACK RETURN|MAIL|inst the furiously regul| +10120|388906|38907|3|8|15959.12|0.03|0.04|A|F|1992-12-09|1992-10-20|1992-12-13|NONE|AIR|y carefully final| +10121|937347|49866|1|21|29070.30|0.07|0.08|A|F|1994-10-31|1994-08-27|1994-11-10|COLLECT COD|FOB|dolites wake blithely. q| +10121|981199|43719|2|31|39684.65|0.04|0.02|R|F|1994-10-13|1994-08-13|1994-11-08|COLLECT COD|RAIL|e. special accounts haggle carefully fluf| +10121|4456|41957|3|17|23127.65|0.04|0.00|R|F|1994-10-04|1994-09-05|1994-10-27|NONE|TRUCK|ar theodolites are blit| +10121|887303|12338|4|2|2580.52|0.03|0.01|A|F|1994-09-02|1994-08-16|1994-09-05|DELIVER IN PERSON|REG AIR|y dugouts. ironic instructions wake quic| +10121|901174|26211|5|47|55231.11|0.03|0.01|A|F|1994-07-23|1994-09-19|1994-07-29|COLLECT COD|RAIL|ets. regular braids haggle slyly. c| +10121|18692|6193|6|29|46710.01|0.09|0.01|R|F|1994-09-20|1994-09-27|1994-09-23|TAKE BACK RETURN|REG AIR|etimes regular pinto beans are furiousl| +10121|148522|11025|7|28|43974.56|0.08|0.04|A|F|1994-08-19|1994-09-19|1994-09-12|NONE|REG AIR|usual realms. furiously final | +10122|194696|19703|1|24|42976.56|0.04|0.03|R|F|1993-11-13|1993-10-18|1993-12-05|TAKE BACK RETURN|MAIL| blithely u| +10122|242789|5294|2|30|51953.10|0.00|0.06|R|F|1993-09-21|1993-11-24|1993-10-21|TAKE BACK RETURN|RAIL|gle carefully ironic pinto bea| +10122|550175|25198|3|15|18377.25|0.01|0.02|A|F|1993-09-25|1993-11-14|1993-10-01|COLLECT COD|MAIL|into beans. deposits print alongsid| +10122|783450|8481|4|46|70537.32|0.09|0.07|R|F|1993-11-07|1993-10-24|1993-11-22|TAKE BACK RETURN|AIR|ages. furiously fina| +10122|437332|49841|5|31|39348.61|0.04|0.06|R|F|1993-10-08|1993-09-29|1993-10-13|TAKE BACK RETURN|FOB| packages. quickly even courts sleep final| +10122|227785|27786|6|20|34255.40|0.03|0.06|R|F|1993-12-06|1993-10-10|1993-12-25|DELIVER IN PERSON|MAIL|ial requests. ironic, even ideas aft| +10123|264773|27279|1|30|52132.80|0.04|0.05|N|O|1996-09-20|1996-10-10|1996-10-15|COLLECT COD|SHIP|ely regular dependencies.| +10124|394826|32348|1|36|69149.16|0.08|0.02|N|O|1998-01-17|1997-12-04|1998-02-11|COLLECT COD|FOB|he blithely even account| +10124|831814|19363|2|35|61101.95|0.10|0.01|N|O|1997-11-15|1998-01-01|1997-11-24|COLLECT COD|SHIP|accounts are| +10124|285366|47872|3|1|1351.35|0.06|0.05|N|O|1997-12-28|1997-11-24|1998-01-03|TAKE BACK RETURN|SHIP|slyly final theodolites solve instructions| +10125|378066|15588|1|22|25169.10|0.07|0.08|A|F|1993-02-12|1993-03-16|1993-02-19|COLLECT COD|RAIL|e final excuses are carefully ideas! c| +10125|150125|25132|2|19|22327.28|0.03|0.08|R|F|1993-04-10|1993-03-25|1993-05-01|COLLECT COD|REG AIR|wake slyly furious, bold | +10125|135626|48129|3|8|13292.96|0.08|0.01|A|F|1993-04-03|1993-03-20|1993-04-13|DELIVER IN PERSON|AIR|timents. pinto beans boost furio| +10125|453973|28992|4|4|7707.80|0.00|0.04|A|F|1993-05-12|1993-03-20|1993-06-01|DELIVER IN PERSON|MAIL| beans maint| +10125|907716|32753|5|30|51710.10|0.01|0.05|R|F|1993-02-06|1993-04-01|1993-03-02|NONE|RAIL|cuses along the carefully final de| +10125|974774|49813|6|34|62856.82|0.08|0.02|A|F|1993-04-01|1993-03-26|1993-04-16|NONE|RAIL|attainments. furiously unusual | +10125|16158|41159|7|35|37595.25|0.02|0.01|A|F|1993-05-30|1993-03-16|1993-06-23|DELIVER IN PERSON|MAIL|efully silent packages wake fu| +10126|565740|28252|1|15|27085.80|0.06|0.06|N|O|1998-06-05|1998-04-27|1998-06-15|NONE|MAIL|tions haggl| +10126|376289|1304|2|3|4095.81|0.08|0.07|N|O|1998-05-26|1998-04-09|1998-06-14|NONE|SHIP|ckly regular ideas boost about the| +10126|287861|367|3|21|38825.85|0.06|0.03|N|O|1998-06-01|1998-05-17|1998-06-06|DELIVER IN PERSON|RAIL|se according to the furiousl| +10126|77338|2341|4|19|24991.27|0.06|0.03|N|O|1998-04-06|1998-04-26|1998-05-05|TAKE BACK RETURN|AIR|e. final accounts i| +10126|809026|9027|5|1|934.98|0.10|0.07|N|O|1998-04-09|1998-04-14|1998-04-22|COLLECT COD|REG AIR|lphins according to the specia| +10127|220642|20643|1|32|50004.16|0.03|0.05|A|F|1995-04-13|1995-03-26|1995-05-06|DELIVER IN PERSON|TRUCK|oxes wake blithely| +10152|384008|9023|1|20|21839.80|0.04|0.04|R|F|1993-09-09|1993-11-14|1993-09-11|COLLECT COD|TRUCK|unts sleep. sometimes pending packages are | +10152|14002|26503|2|33|30228.00|0.06|0.02|R|F|1993-09-21|1993-11-25|1993-10-12|COLLECT COD|FOB|eans among the slyly ironic accounts cajo| +10152|315461|27968|3|2|2952.90|0.09|0.00|A|F|1993-10-21|1993-11-17|1993-11-01|TAKE BACK RETURN|RAIL|ckages alongside of the carefully idle the| +10152|939177|1696|4|19|23106.47|0.02|0.00|R|F|1993-09-16|1993-11-05|1993-09-24|NONE|FOB|ng pinto beans across the exp| +10152|733649|21192|5|29|48795.69|0.01|0.00|A|F|1993-10-30|1993-11-23|1993-11-22|NONE|AIR|quests cajole blit| +10152|433843|8860|6|6|10660.92|0.04|0.02|R|F|1993-12-15|1993-10-10|1993-12-23|DELIVER IN PERSON|REG AIR|thely bold the| +10152|592807|42808|7|38|72191.64|0.01|0.05|R|F|1993-09-29|1993-09-30|1993-10-09|COLLECT COD|FOB|ent excuses | +10153|293246|43247|1|1|1239.23|0.10|0.06|R|F|1993-01-12|1992-12-11|1993-01-18|DELIVER IN PERSON|REG AIR| packages | +10153|569811|32323|2|39|73350.81|0.10|0.07|R|F|1992-11-14|1993-01-22|1992-11-25|NONE|AIR|the slyly ironic reque| +10153|799810|37356|3|20|38195.60|0.04|0.05|A|F|1993-02-25|1992-12-19|1993-02-28|COLLECT COD|MAIL|furiously against the blithely unusua| +10153|392883|5391|4|34|67179.58|0.00|0.04|R|F|1993-02-20|1993-01-26|1993-03-18|DELIVER IN PERSON|REG AIR|the blithely sile| +10153|171639|21640|5|5|8553.15|0.00|0.01|R|F|1992-12-18|1993-01-03|1992-12-19|NONE|AIR|d the special deposits ca| +10154|723492|11035|1|37|56072.02|0.10|0.06|N|O|1998-06-03|1998-04-26|1998-06-21|COLLECT COD|RAIL|ly. quickly express foxes engage furiou| +10154|716374|16375|2|41|57003.94|0.02|0.02|N|O|1998-05-19|1998-04-16|1998-05-30|DELIVER IN PERSON|SHIP| blithely above the deposits; flu| +10154|87808|37809|3|14|25141.20|0.09|0.05|N|O|1998-06-30|1998-05-01|1998-07-02|NONE|TRUCK|sts are never. carefully reg| +10154|772409|9955|4|30|44441.10|0.03|0.07|N|O|1998-05-05|1998-05-13|1998-06-03|NONE|REG AIR|iet excuses. blithely regular | +10155|689156|14183|1|21|24047.52|0.00|0.01|R|F|1995-05-24|1995-06-04|1995-06-10|TAKE BACK RETURN|RAIL|es. furiously e| +10155|628995|41508|2|41|78882.36|0.04|0.03|N|O|1995-07-31|1995-07-01|1995-08-11|NONE|TRUCK|lites sleep blithely a| +10155|516089|3620|3|1|1105.06|0.02|0.08|N|O|1995-07-17|1995-07-27|1995-08-13|NONE|SHIP|e special req| +10155|898730|48731|4|49|84705.81|0.01|0.02|N|O|1995-08-06|1995-06-15|1995-08-15|COLLECT COD|MAIL|ly final deposits | +10155|947855|47856|5|5|9514.05|0.03|0.00|N|O|1995-08-23|1995-07-28|1995-09-10|TAKE BACK RETURN|FOB| play. ironic pinto beans integrat| +10155|589256|26790|6|26|34975.98|0.10|0.00|N|O|1995-07-08|1995-06-04|1995-07-22|COLLECT COD|FOB|egrate slyly account| +10155|609541|9542|7|20|29010.20|0.01|0.04|N|F|1995-06-01|1995-06-15|1995-06-26|TAKE BACK RETURN|REG AIR|lar deposits. express, regular g| +10156|554338|29361|1|49|68223.19|0.01|0.01|R|F|1995-03-27|1995-04-02|1995-04-12|COLLECT COD|REG AIR|sly bold depos| +10157|628578|41091|1|8|12052.32|0.10|0.03|N|O|1997-02-17|1997-01-21|1997-03-15|TAKE BACK RETURN|FOB|sleep furiously whithout the regula| +10157|495992|8502|2|50|99398.50|0.03|0.00|N|O|1997-02-05|1996-12-31|1997-03-06|NONE|FOB|ts maintain furiously amo| +10157|133521|46024|3|2|3109.04|0.03|0.07|N|O|1997-03-04|1997-01-16|1997-03-12|TAKE BACK RETURN|RAIL|p blithely. furiously ironic packages al| +10157|85952|35953|4|23|44572.85|0.03|0.03|N|O|1997-03-22|1997-02-18|1997-04-07|TAKE BACK RETURN|REG AIR|ly. special, bold Tire| +10157|593923|18946|5|2|4033.80|0.01|0.01|N|O|1997-01-15|1997-01-02|1997-01-29|TAKE BACK RETURN|TRUCK|t instructions haggle along| +10157|52927|2928|6|9|16919.28|0.00|0.02|N|O|1997-01-15|1996-12-26|1997-01-23|TAKE BACK RETURN|FOB|ongside of the sometimes regular gro| +10158|667426|42453|1|36|50162.04|0.00|0.08|R|F|1992-10-08|1992-09-28|1992-10-28|DELIVER IN PERSON|REG AIR|pendencies cajo| +10158|420701|20702|2|16|25946.88|0.01|0.01|A|F|1992-10-07|1992-10-23|1992-10-09|NONE|MAIL|e slyly. careful| +10158|715440|15441|3|5|7277.05|0.09|0.01|A|F|1992-11-21|1992-10-19|1992-11-23|TAKE BACK RETURN|RAIL|ajole furiously furiously ironic pinto b| +10158|397174|9682|4|26|33050.16|0.09|0.05|R|F|1992-08-08|1992-09-23|1992-08-10|TAKE BACK RETURN|RAIL|ly regular requests according to t| +10159|4291|4292|1|43|51397.47|0.06|0.05|A|F|1995-03-27|1995-02-23|1995-04-12|TAKE BACK RETURN|MAIL|ffily ironic foxes| +10159|116119|16120|2|14|15891.54|0.04|0.03|R|F|1995-01-31|1995-02-14|1995-02-10|NONE|SHIP|s kindle. blith| +10159|606535|31560|3|19|27388.50|0.08|0.06|R|F|1995-04-22|1995-02-11|1995-05-12|DELIVER IN PERSON|FOB|gle. sentiments throughout th| +10159|19393|19394|4|40|52495.60|0.08|0.04|R|F|1994-12-31|1995-01-30|1995-01-16|NONE|AIR|ounts. deposits are. ironic pinto be| +10184|851332|26367|1|13|16682.77|0.00|0.07|A|F|1992-06-25|1992-07-08|1992-07-25|TAKE BACK RETURN|MAIL|thely unusual p| +10184|327907|2920|2|16|30958.24|0.00|0.02|R|F|1992-06-12|1992-05-29|1992-06-27|COLLECT COD|MAIL| slyly express packages again| +10184|128064|40567|3|15|16380.90|0.09|0.04|R|F|1992-07-30|1992-07-05|1992-08-09|COLLECT COD|TRUCK| courts breach q| +10184|363112|25620|4|30|35253.00|0.09|0.06|R|F|1992-05-18|1992-06-02|1992-05-28|NONE|REG AIR|. blithely bold orbits boost slyly. | +10184|810541|48090|5|14|20321.00|0.02|0.02|A|F|1992-05-15|1992-07-25|1992-05-17|COLLECT COD|FOB|ons kindle quickl| +10185|885316|22868|1|3|3903.81|0.08|0.06|A|F|1992-11-14|1993-02-01|1992-11-15|COLLECT COD|FOB| requests. e| +10185|503426|3427|2|43|61464.20|0.01|0.05|A|F|1992-12-03|1993-01-29|1992-12-23|TAKE BACK RETURN|SHIP|e carefully ironic packages. ex| +10185|79988|29989|3|19|37391.62|0.03|0.06|R|F|1992-11-30|1992-12-26|1992-12-25|TAKE BACK RETURN|TRUCK|ites. slyly bold war| +10185|355327|42849|4|33|45616.23|0.08|0.03|A|F|1993-02-14|1993-01-12|1993-03-01|TAKE BACK RETURN|MAIL|usly about the pi| +10185|975334|37854|5|37|52143.73|0.00|0.03|R|F|1993-02-08|1992-12-29|1993-02-11|NONE|TRUCK|ts wake express deposits. iron| +10185|430960|18485|6|5|9454.70|0.05|0.00|A|F|1993-01-24|1992-12-21|1993-02-01|NONE|AIR| accounts affix ironic deposits; sly| +10186|599072|11584|1|42|49184.10|0.07|0.04|R|F|1995-05-28|1995-06-03|1995-05-31|NONE|TRUCK|en theodolite| +10186|591910|16933|2|4|8007.56|0.10|0.07|N|O|1995-07-28|1995-06-04|1995-07-30|DELIVER IN PERSON|SHIP|y unusual packages. ironic theodolites | +10186|220488|45497|3|15|21127.05|0.10|0.07|N|O|1995-06-21|1995-07-22|1995-07-13|DELIVER IN PERSON|REG AIR| daringly against the blithely regula| +10186|732852|32853|4|36|67853.52|0.07|0.07|N|O|1995-08-18|1995-07-16|1995-09-13|COLLECT COD|FOB|uickly regular deposi| +10186|43426|43427|5|27|36974.34|0.08|0.02|N|O|1995-06-27|1995-05-28|1995-07-11|COLLECT COD|FOB|eposits above the carefully idle asymptot| +10186|855712|5713|6|18|30018.06|0.04|0.00|A|F|1995-05-24|1995-07-14|1995-06-14|DELIVER IN PERSON|TRUCK|y final ideas sle| +10186|945710|20747|7|22|38624.74|0.00|0.05|R|F|1995-05-15|1995-06-01|1995-06-07|TAKE BACK RETURN|TRUCK|inal packages haggle. i| +10187|547698|35229|1|24|41896.08|0.08|0.06|R|F|1995-05-14|1995-06-01|1995-05-15|TAKE BACK RETURN|TRUCK|nic requests sleep. carefully even hoc| +10187|153701|28708|2|38|66678.60|0.08|0.00|R|F|1995-06-02|1995-05-11|1995-06-13|TAKE BACK RETURN|MAIL|arefully above the deposit| +10187|238463|13472|3|5|7007.25|0.02|0.02|A|F|1995-04-06|1995-06-02|1995-04-20|NONE|TRUCK|arefully enticing instruct| +10188|205922|18427|1|49|89567.59|0.00|0.06|R|F|1994-07-19|1994-08-20|1994-08-05|NONE|MAIL|. ironic, silent excuses wake carefull| +10188|917847|5402|2|15|27972.00|0.01|0.01|A|F|1994-09-06|1994-08-25|1994-09-22|DELIVER IN PERSON|SHIP|counts. asymptotes gr| +10188|246993|9498|3|1|1939.98|0.02|0.01|A|F|1994-07-24|1994-08-09|1994-08-11|NONE|FOB|gle outsid| +10188|204852|42365|4|18|31623.12|0.01|0.05|R|F|1994-09-14|1994-07-18|1994-09-22|TAKE BACK RETURN|REG AIR|ounts sublate blit| +10188|944191|44192|5|4|4940.60|0.04|0.04|A|F|1994-08-05|1994-07-31|1994-08-11|COLLECT COD|FOB| bold, express requests. fluffily | +10188|8095|33096|6|29|29089.61|0.00|0.06|R|F|1994-06-09|1994-06-26|1994-06-23|DELIVER IN PERSON|RAIL|ges wake carefully about | +10189|525072|93|1|10|10970.50|0.09|0.05|N|O|1996-07-05|1996-08-13|1996-07-26|COLLECT COD|RAIL|oss the ironic, bold tithes| +10190|352299|14807|1|14|18917.92|0.09|0.00|A|F|1994-05-20|1994-05-30|1994-05-24|COLLECT COD|AIR|s. never ironic packages| +10190|79430|4433|2|41|57786.63|0.09|0.04|R|F|1994-07-30|1994-05-09|1994-08-14|NONE|MAIL|e along the fluf| +10190|963214|13215|3|44|56195.48|0.03|0.01|A|F|1994-07-24|1994-05-19|1994-08-03|TAKE BACK RETURN|REG AIR| slyly. blithely final | +10191|430765|5782|1|13|22044.62|0.08|0.08|N|O|1995-11-05|1995-10-20|1995-11-11|TAKE BACK RETURN|RAIL|lar deposits wak| +10216|880445|5480|1|37|52739.80|0.01|0.04|A|F|1992-03-24|1992-04-12|1992-04-14|TAKE BACK RETURN|MAIL|s. theodolites c| +10216|631504|19041|2|18|25838.46|0.01|0.01|R|F|1992-01-27|1992-02-13|1992-02-20|COLLECT COD|REG AIR|refully ironic requests around the car| +10216|674400|49427|3|29|39856.73|0.01|0.07|A|F|1992-05-09|1992-03-28|1992-06-01|TAKE BACK RETURN|SHIP|s wake after the regularly | +10216|633659|8684|4|10|15926.20|0.04|0.04|A|F|1992-01-25|1992-04-06|1992-02-24|DELIVER IN PERSON|TRUCK|ccounts sleep account| +10216|892528|5046|5|21|31930.08|0.04|0.02|R|F|1992-04-04|1992-02-24|1992-04-30|NONE|MAIL|s must haggle carefully | +10216|713538|1081|6|25|38787.50|0.03|0.08|R|F|1992-03-10|1992-03-15|1992-04-07|COLLECT COD|RAIL|ously regular packages. even, expres| +10216|420077|45094|7|41|40879.05|0.00|0.05|A|F|1992-02-10|1992-04-04|1992-03-11|TAKE BACK RETURN|RAIL|. carefully| +10217|222291|47300|1|13|15772.64|0.07|0.08|N|O|1996-04-08|1996-06-10|1996-04-21|COLLECT COD|AIR|its. silent, bold packages hinder carefully| +10217|28485|40986|2|10|14134.80|0.05|0.03|N|O|1996-05-08|1996-05-29|1996-05-09|NONE|RAIL|kly thin requests. regul| +10217|743657|31200|3|17|28910.54|0.00|0.07|N|O|1996-06-13|1996-04-29|1996-07-07|NONE|TRUCK|ts. fluffily bold | +10217|634164|46677|4|10|10981.30|0.08|0.04|N|O|1996-06-24|1996-05-08|1996-07-14|NONE|FOB|ding platelets mainta| +10217|388232|25754|5|25|33005.50|0.02|0.04|N|O|1996-06-02|1996-05-01|1996-06-12|COLLECT COD|TRUCK| sleep furiously. | +10217|7936|45437|6|1|1843.93|0.02|0.01|N|O|1996-04-25|1996-06-03|1996-04-27|COLLECT COD|AIR|cial accounts-- slyly ironic packages hagg| +10218|489446|14465|1|33|47368.86|0.00|0.02|R|F|1995-05-14|1995-07-04|1995-06-09|DELIVER IN PERSON|RAIL| furiously ironic theo| +10218|118343|18344|2|9|12252.06|0.10|0.06|R|F|1995-05-07|1995-06-30|1995-05-25|NONE|AIR|ounts. fluffily| +10218|976477|14035|3|48|74564.64|0.10|0.00|A|F|1995-04-27|1995-06-24|1995-05-12|NONE|TRUCK|pending pinto beans are fluffily. | +10218|647091|22116|4|7|7266.42|0.08|0.04|N|O|1995-06-20|1995-06-16|1995-07-13|COLLECT COD|MAIL| among the th| +10218|652281|2282|5|39|48096.75|0.04|0.07|N|O|1995-06-18|1995-05-10|1995-07-09|TAKE BACK RETURN|MAIL|ut the quickly final packages. deposits | +10219|815109|2658|1|14|14336.84|0.01|0.00|R|F|1994-12-16|1994-11-23|1995-01-10|DELIVER IN PERSON|RAIL|ously acco| +10219|536799|11820|2|7|12850.39|0.10|0.03|A|F|1994-12-06|1994-11-13|1994-12-30|COLLECT COD|SHIP|al deposits. furiously final orbits ab| +10219|971885|46924|3|44|86100.96|0.02|0.07|R|F|1994-12-08|1994-11-04|1994-12-11|DELIVER IN PERSON|MAIL|y. blithely sp| +10219|468227|18228|4|5|5976.00|0.05|0.04|A|F|1994-10-13|1994-10-15|1994-11-08|NONE|MAIL|gular foxes wake carefully. slyly | +10220|373300|48315|1|1|1373.29|0.02|0.02|R|F|1994-07-04|1994-06-08|1994-07-18|COLLECT COD|REG AIR|into beans cajole slyly| +10220|44253|44254|2|27|32325.75|0.00|0.01|A|F|1994-03-23|1994-05-31|1994-04-11|DELIVER IN PERSON|TRUCK|ously final re| +10220|758083|20599|3|34|38795.70|0.10|0.04|R|F|1994-04-24|1994-04-16|1994-04-27|NONE|FOB|ans around the b| +10220|95679|8181|4|13|21770.71|0.10|0.04|R|F|1994-04-05|1994-05-31|1994-04-25|TAKE BACK RETURN|TRUCK|ly express instructio| +10221|994786|44787|1|30|56422.20|0.03|0.03|N|O|1997-04-19|1997-01-28|1997-05-04|DELIVER IN PERSON|RAIL|rious excuses. f| +10221|351685|1686|2|4|6946.68|0.08|0.03|N|O|1997-01-17|1997-03-06|1997-02-15|DELIVER IN PERSON|REG AIR|iously ironic deposits. theodol| +10221|762193|12194|3|17|21337.72|0.04|0.08|N|O|1997-03-02|1997-03-12|1997-03-08|TAKE BACK RETURN|TRUCK|ts use quickly. furiousl| +10222|497419|34947|1|35|49573.65|0.01|0.03|A|F|1995-05-14|1995-04-24|1995-05-28|NONE|AIR|w slyly. carefully regular deposits along | +10222|112726|233|2|35|60855.20|0.05|0.07|A|F|1995-05-27|1995-03-15|1995-06-08|COLLECT COD|TRUCK|es. carefully silent de| +10222|583506|46018|3|37|58810.76|0.03|0.08|A|F|1995-05-28|1995-04-28|1995-06-08|COLLECT COD|SHIP|e silent, bold th| +10223|373276|48291|1|21|28334.46|0.09|0.04|A|F|1993-07-22|1993-08-05|1993-08-20|COLLECT COD|MAIL|ans promise furiously. sly, re| +10223|642588|5101|2|4|6122.20|0.10|0.07|A|F|1993-05-20|1993-06-17|1993-05-28|TAKE BACK RETURN|SHIP|its. boldl| +10248|570992|33504|1|36|74266.92|0.10|0.04|N|O|1998-02-03|1998-01-21|1998-03-01|TAKE BACK RETURN|TRUCK|lyly pending requests acco| +10248|656686|6687|2|37|60778.05|0.10|0.02|N|O|1998-04-07|1998-01-20|1998-04-12|NONE|TRUCK|al packages according to the pinto beans ar| +10248|912053|24572|3|5|5325.05|0.07|0.07|N|O|1998-03-16|1998-01-16|1998-04-14|COLLECT COD|REG AIR|gular instructio| +10249|187563|12570|1|30|49516.80|0.07|0.01|N|O|1996-01-26|1996-03-10|1996-02-11|NONE|RAIL|ly requests cajole furiously car| +10249|354693|4694|2|34|59421.12|0.03|0.04|N|O|1996-01-05|1996-03-25|1996-02-02|NONE|REG AIR|ironic accounts cajole. re| +10249|310184|47703|3|39|46572.63|0.05|0.03|N|O|1996-02-11|1996-02-29|1996-02-15|NONE|TRUCK|ously. express, unusual reques| +10249|256301|31312|4|14|17602.06|0.09|0.03|N|O|1996-04-11|1996-03-29|1996-04-23|COLLECT COD|SHIP|e furiously even dependenci| +10250|158095|45605|1|45|51889.05|0.01|0.02|N|O|1995-06-26|1995-06-09|1995-07-05|NONE|REG AIR|s. regular ac| +10250|93445|18448|2|3|4315.32|0.10|0.04|A|F|1995-05-23|1995-06-17|1995-06-08|DELIVER IN PERSON|TRUCK|, bold accounts. final, | +10251|142009|29516|1|3|3153.00|0.09|0.08|R|F|1993-10-08|1993-09-18|1993-10-11|TAKE BACK RETURN|MAIL|s. ideas cajole slyly. dolphins use carefu| +10251|737694|12723|2|4|6926.64|0.02|0.02|R|F|1993-11-05|1993-10-04|1993-11-07|NONE|RAIL| about the fluffi| +10252|993082|5602|1|27|31726.08|0.07|0.08|N|O|1995-06-25|1995-08-26|1995-06-26|TAKE BACK RETURN|TRUCK|kly pendin| +10252|717739|17740|2|23|40404.10|0.10|0.06|N|O|1995-09-03|1995-08-30|1995-10-02|NONE|MAIL|y bold asymptotes. sometimes express| +10252|33603|46104|3|41|63000.60|0.01|0.03|N|O|1995-06-20|1995-08-14|1995-07-11|TAKE BACK RETURN|SHIP|lyly express requests. express platelets w| +10252|757341|32372|4|1|1398.31|0.08|0.07|N|F|1995-06-14|1995-07-09|1995-06-23|NONE|RAIL|s sleep bl| +10253|712306|12307|1|19|25047.13|0.00|0.01|N|O|1998-06-10|1998-05-14|1998-06-27|NONE|RAIL| against the ironic requests. do| +10253|716356|28871|2|21|28818.72|0.08|0.04|N|O|1998-08-05|1998-06-28|1998-08-15|COLLECT COD|MAIL|ic platelets bo| +10253|788292|38293|3|32|44168.32|0.07|0.08|N|O|1998-04-13|1998-06-03|1998-05-04|TAKE BACK RETURN|AIR|nusual accounts. furiously even reques| +10253|821257|21258|4|35|41237.35|0.10|0.01|N|O|1998-06-14|1998-06-06|1998-07-13|TAKE BACK RETURN|MAIL|iously. furiousl| +10253|857669|7670|5|38|61811.56|0.05|0.08|N|O|1998-05-07|1998-05-30|1998-05-23|COLLECT COD|SHIP|g foxes are blithely | +10253|839659|2176|6|49|78331.89|0.10|0.06|N|O|1998-07-05|1998-06-23|1998-07-15|DELIVER IN PERSON|REG AIR| dinos. iron| +10253|135903|23410|7|30|58167.00|0.10|0.05|N|O|1998-07-09|1998-06-28|1998-07-19|DELIVER IN PERSON|SHIP|quickly silen| +10254|121095|21096|1|24|26786.16|0.01|0.01|R|F|1994-10-09|1994-11-19|1994-10-21|NONE|RAIL|s the asymptotes. requests| +10254|231533|19046|2|32|46864.64|0.08|0.01|A|F|1994-11-12|1994-11-19|1994-12-12|COLLECT COD|AIR| platelets. quickly unu| +10254|363374|38389|3|47|67555.92|0.00|0.01|R|F|1994-09-11|1994-10-26|1994-10-03|DELIVER IN PERSON|MAIL| furiously regular accoun| +10254|225279|12792|4|10|12042.60|0.02|0.05|R|F|1994-12-17|1994-10-24|1995-01-04|TAKE BACK RETURN|MAIL|ress pinto beans affix. care| +10254|250727|728|5|36|60397.56|0.00|0.00|R|F|1994-12-06|1994-10-07|1994-12-26|TAKE BACK RETURN|FOB|stealthily fi| +10255|510542|48073|1|2|3105.04|0.07|0.03|A|F|1992-10-07|1992-09-02|1992-10-27|DELIVER IN PERSON|TRUCK|tealthy platelets. fi| +10255|672608|22609|2|44|69545.08|0.02|0.03|A|F|1992-10-23|1992-10-14|1992-10-30|TAKE BACK RETURN|RAIL|ntiments. fina| +10255|517665|5196|3|17|28604.88|0.01|0.05|R|F|1992-09-27|1992-10-16|1992-10-17|COLLECT COD|RAIL|c theodolites. slyly pending gifts acr| +10255|379149|29150|4|22|27018.86|0.02|0.01|R|F|1992-10-09|1992-10-18|1992-10-28|COLLECT COD|TRUCK| ironic ideas. carefully pending | +10255|344046|44047|5|10|10900.30|0.02|0.00|R|F|1992-09-19|1992-09-04|1992-09-30|COLLECT COD|FOB|ctions haggle slyly. blithely | +10280|576148|38660|1|25|30603.00|0.10|0.03|N|O|1997-02-04|1997-02-01|1997-03-03|DELIVER IN PERSON|TRUCK|the pending, unusual depo| +10280|307750|7751|2|35|61520.90|0.07|0.05|N|O|1997-01-16|1997-03-21|1997-01-28|NONE|FOB|its after the final | +10280|341819|29338|3|16|29772.80|0.07|0.05|N|O|1997-01-12|1997-03-06|1997-02-10|TAKE BACK RETURN|FOB|ep quickly ironic, final sentiments| +10280|949830|49831|4|43|80830.97|0.02|0.00|N|O|1997-01-29|1997-03-12|1997-02-01|COLLECT COD|REG AIR|ithely unusual deposits. blithely regu| +10280|789270|14301|5|8|10873.92|0.00|0.02|N|O|1997-03-22|1997-02-26|1997-04-02|TAKE BACK RETURN|RAIL|lets: pending foxes cajole slyly ab| +10280|246028|8533|6|27|26298.27|0.01|0.06|N|O|1997-01-17|1997-02-05|1997-02-08|NONE|REG AIR|ld ideas use quickly acro| +10281|171057|8567|1|28|31585.40|0.10|0.04|N|O|1997-06-21|1997-05-09|1997-06-30|DELIVER IN PERSON|TRUCK|ix evenly f| +10281|942014|17051|2|17|17951.49|0.01|0.04|N|O|1997-05-11|1997-06-19|1997-05-16|DELIVER IN PERSON|MAIL|en requests| +10281|420054|20055|3|29|28246.87|0.00|0.05|N|O|1997-05-18|1997-05-09|1997-06-06|TAKE BACK RETURN|MAIL|packages wake quickly after the even deposi| +10281|833124|8157|4|43|45454.44|0.02|0.04|N|O|1997-06-13|1997-05-31|1997-07-09|COLLECT COD|SHIP|final courts. r| +10281|311970|36983|5|36|71350.56|0.08|0.07|N|O|1997-05-20|1997-06-27|1997-05-23|NONE|SHIP|quests are. unusual, re| +10282|537352|37353|1|36|50015.88|0.06|0.01|N|O|1996-07-04|1996-07-03|1996-07-17|NONE|FOB|al pinto beans. regular excus| +10282|262396|12397|2|3|4075.14|0.09|0.01|N|O|1996-07-03|1996-08-08|1996-07-13|COLLECT COD|FOB|carefully about the | +10282|82701|32702|3|29|48827.30|0.09|0.02|N|O|1996-06-30|1996-08-08|1996-07-02|TAKE BACK RETURN|SHIP|e pending platelets. regular| +10282|941400|41401|4|43|61978.48|0.01|0.06|N|O|1996-07-16|1996-06-27|1996-08-01|COLLECT COD|RAIL|the quickly pending excuses. slyly e| +10282|104562|42069|5|30|46996.80|0.01|0.06|N|O|1996-08-27|1996-07-11|1996-08-31|DELIVER IN PERSON|SHIP|inal, regular accounts wake qu| +10282|372227|22228|6|20|25984.20|0.09|0.07|N|O|1996-09-08|1996-08-19|1996-10-07|DELIVER IN PERSON|RAIL|xes sleep expres| +10283|673180|23181|1|22|25369.30|0.00|0.01|N|O|1995-10-04|1995-08-14|1995-10-30|DELIVER IN PERSON|MAIL|ly final frets eat carefully d| +10283|128454|40957|2|34|50403.30|0.08|0.00|N|O|1995-07-19|1995-09-16|1995-08-16|DELIVER IN PERSON|REG AIR| quickly sly requests are fluffily. r| +10283|914526|2081|3|21|32350.08|0.00|0.08|N|O|1995-10-17|1995-08-17|1995-11-11|TAKE BACK RETURN|AIR|accounts. pending | +10284|143506|18511|1|15|23242.50|0.10|0.07|N|O|1998-06-01|1998-03-19|1998-06-03|COLLECT COD|RAIL|ily according to the fi| +10284|892998|30550|2|26|51764.70|0.09|0.02|N|O|1998-02-16|1998-03-23|1998-02-20|NONE|SHIP| packages: pending| +10285|528314|28315|1|45|60403.05|0.05|0.08|R|F|1993-02-13|1993-01-08|1993-03-13|TAKE BACK RETURN|TRUCK| theodolites? carefully final asymptote| +10285|361350|48872|2|47|66332.98|0.05|0.06|A|F|1993-02-08|1992-12-15|1993-02-09|NONE|TRUCK|s. final pinto beans | +10285|200240|241|3|28|31926.44|0.07|0.03|A|F|1993-01-18|1992-11-30|1993-01-29|COLLECT COD|FOB|al pinto bea| +10285|426766|14291|4|4|6770.96|0.04|0.06|R|F|1993-01-15|1992-12-07|1993-02-13|DELIVER IN PERSON|MAIL|ng deposits. carefully spec| +10285|649376|11889|5|32|42410.88|0.10|0.04|R|F|1992-11-16|1993-01-07|1992-11-23|COLLECT COD|MAIL|y special ac| +10286|456516|6517|1|9|13252.41|0.06|0.04|N|O|1996-07-31|1996-05-31|1996-08-05|TAKE BACK RETURN|SHIP|sleep across| +10286|660252|35279|2|26|31517.72|0.03|0.07|N|O|1996-05-10|1996-06-23|1996-05-13|DELIVER IN PERSON|FOB|arefully special| +10286|847805|22838|3|5|8763.80|0.04|0.03|N|O|1996-06-04|1996-06-08|1996-06-10|DELIVER IN PERSON|TRUCK|packages. carefully regular requests b| +10286|50525|526|4|49|72300.48|0.08|0.08|N|O|1996-08-14|1996-07-02|1996-09-09|NONE|TRUCK| ironic, special deposits after th| +10286|159938|9939|5|18|35962.74|0.08|0.05|N|O|1996-07-26|1996-07-17|1996-07-29|COLLECT COD|RAIL|s are carefully. fu| +10286|72093|47096|6|24|25562.16|0.06|0.03|N|O|1996-07-04|1996-07-15|1996-07-06|NONE|RAIL| across the furiously final depos| +10286|650995|996|7|23|44757.08|0.04|0.07|N|O|1996-04-26|1996-07-16|1996-05-13|DELIVER IN PERSON|AIR|ly ironic excuses. furiously even a| +10287|268076|18077|1|44|45938.64|0.04|0.00|N|O|1998-02-02|1998-02-20|1998-03-04|DELIVER IN PERSON|AIR|ep final packages. regul| +10312|183351|20861|1|26|37293.10|0.02|0.05|N|O|1996-03-29|1996-04-29|1996-04-28|TAKE BACK RETURN|TRUCK|ackages da| +10312|573416|10950|2|45|67022.55|0.02|0.05|N|O|1996-06-30|1996-04-22|1996-07-09|COLLECT COD|FOB|ithe deposits. regular reques| +10312|394182|6690|3|2|2552.34|0.00|0.08|N|O|1996-05-07|1996-06-05|1996-05-15|DELIVER IN PERSON|REG AIR|nding theodolites hinder furio| +10312|13846|26347|4|25|43996.00|0.07|0.08|N|O|1996-06-08|1996-06-02|1996-06-15|DELIVER IN PERSON|SHIP|arefully regular warhorses among th| +10313|95371|20374|1|15|20495.55|0.02|0.00|R|F|1993-07-23|1993-08-20|1993-07-24|DELIVER IN PERSON|SHIP|riously unusual| +10313|895053|20088|2|44|46112.44|0.04|0.05|A|F|1993-09-24|1993-09-04|1993-10-20|DELIVER IN PERSON|TRUCK|bold deposits nag furiously unusual | +10313|145482|32989|3|14|21384.72|0.00|0.08|A|F|1993-08-29|1993-08-04|1993-09-27|NONE|REG AIR|hely ironic platelets s| +10313|110692|10693|4|6|10216.14|0.05|0.08|R|F|1993-09-22|1993-08-12|1993-09-26|DELIVER IN PERSON|SHIP|ss the fluffily special depe| +10313|395844|8352|5|31|60134.73|0.03|0.07|A|F|1993-08-07|1993-09-29|1993-08-17|COLLECT COD|AIR|lyly pendi| +10313|937330|49849|6|43|58793.47|0.09|0.06|R|F|1993-10-28|1993-09-08|1993-11-19|COLLECT COD|AIR|sits wake furiously against the carefully | +10314|772148|9694|1|16|19521.76|0.06|0.04|N|O|1998-09-09|1998-08-23|1998-10-05|COLLECT COD|REG AIR|equests boost slyly special requests. sl| +10314|490356|27884|2|14|18848.62|0.00|0.08|N|O|1998-07-02|1998-08-24|1998-07-08|DELIVER IN PERSON|MAIL|regular asymptotes en| +10314|404251|4252|3|4|4620.92|0.02|0.00|N|O|1998-09-08|1998-08-21|1998-10-01|NONE|FOB|requests use regular accounts. even, pen| +10314|245096|20105|4|48|49971.84|0.10|0.02|N|O|1998-08-06|1998-07-14|1998-08-26|DELIVER IN PERSON|TRUCK|dolites use af| +10315|549356|24377|1|29|40754.57|0.06|0.04|N|O|1996-11-07|1996-12-19|1996-11-21|DELIVER IN PERSON|TRUCK| final depths. ironic, | +10315|19332|6833|2|46|57561.18|0.03|0.05|N|O|1996-12-16|1996-10-27|1997-01-04|DELIVER IN PERSON|SHIP|ost. regular deposits boost along| +10315|902391|27428|3|36|50160.60|0.00|0.05|N|O|1997-01-11|1996-12-20|1997-01-15|COLLECT COD|TRUCK|ost beyond the Tiresias. f| +10315|481721|44231|4|50|85135.00|0.04|0.02|N|O|1996-11-10|1996-11-06|1996-11-14|COLLECT COD|TRUCK|otes must | +10315|269383|31889|5|5|6761.85|0.09|0.04|N|O|1996-10-01|1996-11-18|1996-10-03|NONE|SHIP|lar packages after t| +10315|515845|15846|6|15|27912.30|0.03|0.06|N|O|1996-11-16|1996-12-01|1996-12-15|DELIVER IN PERSON|MAIL|l deposits cajole furiously car| +10315|802620|2621|7|10|15225.80|0.00|0.04|N|O|1996-10-31|1996-11-03|1996-11-24|NONE|TRUCK|he blithely pending deposits| +10316|621061|33574|1|39|38299.17|0.05|0.02|A|F|1993-11-16|1993-12-17|1993-12-04|COLLECT COD|REG AIR|n pinto beans ac| +10316|164962|39969|2|1|2026.96|0.04|0.05|A|F|1993-11-25|1993-12-11|1993-11-26|COLLECT COD|FOB|, bold dependencies. | +10317|833163|45680|1|21|23018.52|0.01|0.05|R|F|1994-10-12|1994-10-14|1994-10-25|TAKE BACK RETURN|AIR|ithely after the slyly final warhorses| +10317|958592|21112|2|13|21457.15|0.07|0.05|R|F|1994-08-22|1994-10-11|1994-09-19|DELIVER IN PERSON|RAIL|ial excuses eat quickly depths. regular | +10317|52605|15107|3|10|15576.00|0.07|0.02|A|F|1994-11-25|1994-09-11|1994-12-03|COLLECT COD|SHIP| ruthlessly | +10317|123679|48684|4|22|37458.74|0.03|0.07|A|F|1994-10-08|1994-09-20|1994-11-07|TAKE BACK RETURN|FOB| carefully among t| +10318|814636|27153|1|8|12404.72|0.09|0.01|N|O|1996-05-23|1996-05-19|1996-06-07|TAKE BACK RETURN|FOB|ss bold dinos. even, pending req| +10318|586335|48847|2|25|35532.75|0.01|0.00|N|O|1996-04-30|1996-06-28|1996-05-20|COLLECT COD|MAIL| deposits integrate| +10318|520573|8104|3|23|36651.65|0.06|0.06|N|O|1996-05-12|1996-05-20|1996-05-29|COLLECT COD|RAIL|nal deposi| +10318|268043|43054|4|48|48529.44|0.08|0.04|N|O|1996-07-18|1996-06-09|1996-08-17|DELIVER IN PERSON|FOB|es boost about the regular foxes. ca| +10318|998324|35882|5|24|34134.72|0.01|0.08|N|O|1996-06-27|1996-06-21|1996-07-19|DELIVER IN PERSON|FOB|s. quickly ironic packages integrate caref| +10319|817651|17652|1|35|54901.35|0.02|0.06|R|F|1994-01-14|1994-01-14|1994-02-02|NONE|MAIL|y even courts cajole slyly f| +10319|248434|48435|2|49|67738.58|0.06|0.04|R|F|1994-03-12|1994-01-26|1994-03-15|TAKE BACK RETURN|RAIL|ccording to the quickly | +10319|428436|15961|3|19|25923.79|0.05|0.08|A|F|1994-01-22|1994-03-03|1994-02-16|DELIVER IN PERSON|SHIP|e enticingly final | +10344|708874|33903|1|23|43305.32|0.09|0.07|R|F|1995-02-14|1995-03-23|1995-03-05|DELIVER IN PERSON|AIR| sometimes even de| +10344|28955|41456|2|44|82893.80|0.09|0.06|R|F|1995-04-07|1995-02-13|1995-04-23|COLLECT COD|FOB|iously even pinto beans| +10344|642592|5105|3|18|27622.08|0.06|0.08|R|F|1995-04-07|1995-03-17|1995-04-24|COLLECT COD|FOB| furiously regular foxes. furiousl| +10345|865350|2902|1|18|23675.58|0.00|0.02|N|O|1997-06-08|1997-03-28|1997-07-06|COLLECT COD|REG AIR|se slyly even accounts-- furious | +10345|932239|19794|2|35|44491.65|0.05|0.01|N|O|1997-04-08|1997-04-18|1997-04-20|NONE|RAIL|riously even packages a| +10345|127001|2006|3|14|14392.00|0.07|0.06|N|O|1997-05-16|1997-04-05|1997-05-28|NONE|SHIP|ions sleep | +10346|871911|21912|1|13|24477.31|0.06|0.07|R|F|1994-08-11|1994-08-24|1994-08-24|COLLECT COD|TRUCK|ages after the furiously ironic p| +10346|199935|24942|2|20|40698.60|0.01|0.01|A|F|1994-11-13|1994-09-11|1994-12-05|TAKE BACK RETURN|RAIL|ully bold requests unwind abov| +10346|303210|28223|3|27|32756.40|0.10|0.07|R|F|1994-11-04|1994-09-16|1994-11-12|COLLECT COD|RAIL|posits snooze carefully ironi| +10347|372045|22046|1|28|31276.84|0.09|0.05|N|O|1998-06-30|1998-07-02|1998-07-26|COLLECT COD|MAIL|lyly even packages alo| +10347|948666|48667|2|27|46294.74|0.04|0.02|N|O|1998-06-29|1998-07-27|1998-07-16|NONE|REG AIR| about the blithely pe| +10347|227033|14546|3|8|7680.16|0.06|0.03|N|O|1998-07-30|1998-08-11|1998-08-24|NONE|REG AIR|e of the slyly| +10348|584010|46522|1|48|52511.52|0.09|0.07|N|O|1998-06-17|1998-08-04|1998-06-24|DELIVER IN PERSON|TRUCK|oost carefully bold dolph| +10348|450602|13112|2|20|31051.60|0.08|0.06|N|O|1998-09-06|1998-08-08|1998-09-13|COLLECT COD|MAIL|usual requests. courts dou| +10348|265081|15082|3|28|29289.96|0.04|0.02|N|O|1998-06-30|1998-07-26|1998-07-22|COLLECT COD|AIR|ans. final requests nag | +10348|203026|15531|4|1|929.01|0.09|0.08|N|O|1998-07-19|1998-07-28|1998-08-01|DELIVER IN PERSON|TRUCK| the carefully ruthless deposits | +10348|256856|31867|5|43|77952.12|0.09|0.00|N|O|1998-06-30|1998-07-08|1998-07-28|DELIVER IN PERSON|MAIL|as furiously final accounts. final a| +10349|102098|14601|1|39|42903.51|0.09|0.04|R|F|1994-10-10|1994-10-19|1994-10-21|DELIVER IN PERSON|RAIL|dolites. furious theodo| +10349|948546|23583|2|25|39862.50|0.09|0.00|R|F|1994-11-12|1994-10-10|1994-12-08|COLLECT COD|SHIP|special pinto beans. ironic p| +10350|803424|3425|1|17|22565.46|0.06|0.00|A|F|1993-09-10|1993-08-13|1993-10-05|TAKE BACK RETURN|TRUCK|. carefully regular | +10351|704064|29093|1|50|53401.50|0.04|0.06|N|O|1995-11-03|1996-01-08|1995-11-15|COLLECT COD|MAIL|even braids are fluffily about th| +10351|190262|40263|2|44|59499.44|0.04|0.07|N|O|1996-02-05|1995-12-21|1996-02-15|TAKE BACK RETURN|RAIL|nts wake; quickly regul| +10351|724257|24258|3|3|3843.66|0.01|0.06|N|O|1996-02-06|1995-11-30|1996-02-08|TAKE BACK RETURN|SHIP|ronic asymptotes maintain acr| +10351|578041|40553|4|50|55951.00|0.07|0.01|N|O|1996-02-05|1996-01-10|1996-03-05|DELIVER IN PERSON|TRUCK|etect blithely. sl| +10351|131935|6940|5|32|62941.76|0.01|0.05|N|O|1995-10-30|1995-12-26|1995-11-17|NONE|REG AIR|ts are above the f| +10351|424377|24378|6|37|48149.95|0.07|0.05|N|O|1995-12-15|1995-11-21|1996-01-07|NONE|FOB|lly above | +10351|492550|42551|7|4|6170.12|0.07|0.04|N|O|1996-02-10|1995-12-04|1996-02-17|NONE|MAIL|ests. furiously ironic depo| +10376|271757|46768|1|15|25931.10|0.04|0.06|N|F|1995-05-30|1995-06-16|1995-06-20|NONE|MAIL|fts haggle slyly. furiously r| +10376|409870|47395|2|46|81873.10|0.07|0.01|N|O|1995-06-29|1995-06-21|1995-07-02|DELIVER IN PERSON|TRUCK| requests. deposits detect afte| +10376|682372|19912|3|8|10834.72|0.08|0.01|R|F|1995-06-03|1995-06-16|1995-06-14|NONE|TRUCK|ans against the carefully special foxe| +10377|989119|39120|1|31|37450.17|0.05|0.02|N|O|1996-05-14|1996-05-13|1996-06-07|COLLECT COD|AIR|sits. fluffily exp| +10377|116174|28677|2|38|45226.46|0.09|0.07|N|O|1996-04-08|1996-04-23|1996-04-30|COLLECT COD|RAIL|excuses doubt. quickly pending platele| +10377|531048|6069|3|43|46397.86|0.07|0.06|N|O|1996-05-05|1996-05-01|1996-05-30|DELIVER IN PERSON|REG AIR|carefully bold ac| +10377|315231|27738|4|28|34894.16|0.02|0.01|N|O|1996-04-28|1996-04-29|1996-05-11|TAKE BACK RETURN|REG AIR|ain. pending | +10377|79360|4363|5|7|9375.52|0.07|0.02|N|O|1996-05-29|1996-05-11|1996-06-01|COLLECT COD|MAIL|sleep blithely. quickly bold requests| +10377|795755|45756|6|27|49969.44|0.04|0.04|N|O|1996-06-09|1996-04-02|1996-06-18|TAKE BACK RETURN|RAIL|egular deposits ar| +10378|62095|37098|1|40|42283.60|0.08|0.08|N|O|1997-09-25|1997-07-31|1997-10-05|DELIVER IN PERSON|FOB|ly unusual packa| +10378|614331|26844|2|15|18679.50|0.04|0.04|N|O|1997-10-16|1997-08-30|1997-10-25|TAKE BACK RETURN|SHIP|ke furiously. blithely final deposits nod| +10378|59338|34341|3|47|60974.51|0.03|0.07|N|O|1997-10-13|1997-09-25|1997-10-27|DELIVER IN PERSON|AIR|cajole alwa| +10378|288940|38941|4|6|11573.58|0.01|0.08|N|O|1997-09-02|1997-08-08|1997-09-10|NONE|REG AIR|equests haggle blithely q| +10379|159722|9723|1|12|21380.64|0.04|0.05|N|O|1998-11-26|1998-10-25|1998-12-11|DELIVER IN PERSON|MAIL|arefully instructions. instructions a| +10379|437699|25224|2|30|49100.10|0.03|0.04|N|O|1998-08-17|1998-09-07|1998-08-25|COLLECT COD|MAIL|nwind. enticingly final frets| +10379|396013|21028|3|46|51014.00|0.02|0.01|N|O|1998-09-25|1998-09-18|1998-10-04|NONE|REG AIR|re blithely pinto beans. | +10379|779765|42281|4|47|86702.31|0.10|0.08|N|O|1998-11-24|1998-10-22|1998-12-08|DELIVER IN PERSON|SHIP|fily after | +10379|509776|22287|5|43|76787.25|0.05|0.08|N|O|1998-10-14|1998-10-15|1998-10-17|NONE|RAIL|ly busy requests sleep. packages ar| +10379|802300|14817|6|13|15629.38|0.01|0.00|N|O|1998-09-28|1998-10-11|1998-10-20|COLLECT COD|AIR|ss the pearls wake according to th| +10379|255819|18325|7|34|60343.20|0.07|0.00|N|O|1998-09-09|1998-09-01|1998-09-26|DELIVER IN PERSON|RAIL|ays ironic accounts. r| +10380|538905|13926|1|34|66091.92|0.03|0.05|R|F|1994-01-15|1993-11-09|1994-02-01|COLLECT COD|FOB|sly final packag| +10380|375101|37609|2|29|34106.61|0.03|0.07|A|F|1994-01-03|1993-11-06|1994-01-04|TAKE BACK RETURN|TRUCK|unusual pearls cajole furiously furio| +10380|307454|32467|3|8|11691.52|0.04|0.06|A|F|1993-11-25|1993-11-11|1993-12-15|COLLECT COD|TRUCK|ts; waters c| +10381|176314|38818|1|3|4170.93|0.10|0.05|R|F|1993-03-02|1993-02-06|1993-03-22|TAKE BACK RETURN|MAIL|. carefully regular deposits haggle| +10381|292879|17890|2|45|84233.70|0.08|0.08|A|F|1993-03-09|1993-02-05|1993-03-29|DELIVER IN PERSON|RAIL|ely regular foxes| +10381|410489|48014|3|21|29388.66|0.07|0.06|R|F|1993-03-25|1993-02-25|1993-04-08|DELIVER IN PERSON|RAIL|ress, bold ins| +10382|93997|43998|1|4|7963.96|0.10|0.00|N|O|1997-03-23|1997-05-26|1997-04-13|NONE|AIR|deposits. thinly even dolphins are al| +10382|798709|11225|2|35|63268.45|0.05|0.00|N|O|1997-03-22|1997-05-14|1997-04-15|NONE|AIR| the speci| +10382|899657|37209|3|16|26505.76|0.09|0.04|N|O|1997-05-01|1997-04-14|1997-05-19|NONE|TRUCK|fully bold requests sleep. special, eve| +10383|734550|22093|1|8|12676.16|0.06|0.03|N|O|1997-05-14|1997-04-22|1997-05-28|NONE|TRUCK|y above the blithely unusual ideas.| +10383|576459|1482|2|26|39921.18|0.08|0.06|N|O|1997-04-30|1997-05-20|1997-05-23|DELIVER IN PERSON|FOB|arhorses sleep.| +10383|536062|36063|3|37|40627.48|0.02|0.05|N|O|1997-04-28|1997-05-29|1997-05-05|COLLECT COD|SHIP|e furiously bold fox| +10383|582735|20269|4|20|36354.20|0.09|0.00|N|O|1997-05-27|1997-06-09|1997-06-15|TAKE BACK RETURN|MAIL|t the ironic requests? even | +10383|18059|30560|5|9|8793.45|0.01|0.08|N|O|1997-04-03|1997-05-22|1997-04-18|DELIVER IN PERSON|FOB|onic packages. bold dep| +10383|506099|6100|6|6|6630.42|0.05|0.06|N|O|1997-03-31|1997-04-23|1997-04-23|COLLECT COD|RAIL|al theodolites. quickly regular hoc| +10383|5774|43275|7|9|15117.93|0.00|0.00|N|O|1997-04-05|1997-05-17|1997-04-18|TAKE BACK RETURN|RAIL|. furiously ir| +10408|35983|23484|1|50|95949.00|0.02|0.07|N|O|1997-09-24|1997-07-20|1997-10-12|COLLECT COD|MAIL| haggle always even attainments. f| +10408|762383|37414|2|38|54923.30|0.03|0.06|N|O|1997-07-18|1997-07-22|1997-08-04|TAKE BACK RETURN|FOB|ackages. quick| +10408|369741|44756|3|4|7242.92|0.08|0.01|N|O|1997-07-16|1997-07-31|1997-07-23|COLLECT COD|SHIP|slyly final sentiments sleep carefully. c| +10408|232416|19929|4|41|55284.40|0.04|0.04|N|O|1997-08-22|1997-08-30|1997-09-09|NONE|MAIL|ly regular packag| +10408|205943|18448|5|12|22187.16|0.10|0.08|N|O|1997-09-05|1997-08-09|1997-09-13|COLLECT COD|AIR|rs are after the even theodo| +10409|684240|34241|1|29|35502.09|0.05|0.03|N|O|1996-05-21|1996-06-16|1996-06-14|NONE|REG AIR|ges integrate| +10409|20924|45925|2|1|1844.92|0.04|0.04|N|O|1996-07-06|1996-07-11|1996-07-09|DELIVER IN PERSON|REG AIR|fully ironic dolphins. blithely ironic | +10409|666148|28662|3|37|41222.07|0.01|0.03|N|O|1996-05-08|1996-05-30|1996-06-03|DELIVER IN PERSON|AIR| regular packages | +10409|940456|28011|4|31|46388.71|0.07|0.03|N|O|1996-05-25|1996-07-16|1996-06-22|COLLECT COD|AIR|nusual pinto beans. quickly | +10409|233640|46145|5|7|11015.41|0.00|0.01|N|O|1996-07-30|1996-06-22|1996-08-21|DELIVER IN PERSON|FOB|rets. even, final pinto bean| +10410|160955|23459|1|7|14111.65|0.08|0.06|A|F|1993-01-11|1993-02-02|1993-02-08|TAKE BACK RETURN|REG AIR|jole with the fluffily final pinto beans. | +10410|168585|18586|2|43|71103.94|0.05|0.05|R|F|1993-01-11|1993-01-22|1993-02-04|TAKE BACK RETURN|RAIL|even, quiet foxes integrate furiously| +10410|397674|10182|3|48|85039.68|0.08|0.01|A|F|1993-01-31|1993-01-17|1993-02-17|DELIVER IN PERSON|SHIP|ackages doze whithout the regu| +10410|693067|43068|4|6|6360.18|0.09|0.01|A|F|1993-02-28|1993-01-17|1993-03-07|DELIVER IN PERSON|MAIL|ests run slyly quickly pending packages. re| +10410|370372|32880|5|48|69233.28|0.02|0.07|A|F|1993-01-24|1993-01-17|1993-02-03|DELIVER IN PERSON|MAIL|losely even requests:| +10410|831887|44404|6|3|5456.52|0.09|0.07|A|F|1992-11-26|1993-01-12|1992-12-07|TAKE BACK RETURN|FOB|hinder above the foxes. furio| +10411|717610|30125|1|30|48827.40|0.07|0.01|N|O|1995-09-16|1995-11-16|1995-09-24|TAKE BACK RETURN|AIR|posits. caref| +10411|859242|21760|2|38|45645.60|0.07|0.00|N|O|1995-09-17|1995-10-19|1995-10-09|DELIVER IN PERSON|MAIL|detect furiously| +10411|271350|46361|3|43|56817.62|0.00|0.00|N|O|1995-12-08|1995-12-05|1995-12-27|TAKE BACK RETURN|AIR|sly idle packages. fluffy dependenci| +10411|577826|27827|4|5|9519.00|0.02|0.06|N|O|1995-11-07|1995-10-15|1995-11-30|COLLECT COD|SHIP|riously agai| +10411|507136|44667|5|44|50296.84|0.07|0.07|N|O|1995-12-19|1995-11-28|1996-01-12|TAKE BACK RETURN|FOB|t carefully across the furious| +10411|434723|34724|6|22|36469.40|0.02|0.00|N|O|1995-09-16|1995-10-18|1995-09-19|COLLECT COD|MAIL|even platelets. ironic theodolites solve| +10412|545856|20877|1|41|77975.03|0.09|0.05|N|O|1996-08-08|1996-07-28|1996-09-04|DELIVER IN PERSON|TRUCK|es wake carefully even d| +10412|198328|10832|2|4|5705.28|0.03|0.02|N|O|1996-06-22|1996-06-16|1996-07-17|TAKE BACK RETURN|SHIP|st the slyly regular packages| +10413|234926|34927|1|20|37218.20|0.07|0.01|N|O|1997-09-06|1997-09-01|1997-09-27|TAKE BACK RETURN|MAIL| along the | +10413|384618|9633|2|10|17026.00|0.04|0.07|N|O|1997-10-29|1997-09-29|1997-11-16|COLLECT COD|FOB|ular asymptotes according t| +10413|269065|19066|3|10|10340.50|0.02|0.07|N|O|1997-10-28|1997-10-03|1997-11-22|COLLECT COD|REG AIR| pending deposits| +10413|173096|10606|4|24|28058.16|0.02|0.08|N|O|1997-10-19|1997-08-30|1997-11-18|TAKE BACK RETURN|TRUCK| carefully final a| +10413|216166|41175|5|46|49778.90|0.01|0.08|N|O|1997-10-22|1997-08-28|1997-11-06|TAKE BACK RETURN|SHIP|nag fluffily| +10414|631754|44267|1|8|13485.76|0.08|0.02|N|O|1997-04-02|1997-04-30|1997-04-07|TAKE BACK RETURN|RAIL|cross the blithely ironi| +10414|888853|13888|2|49|90248.69|0.01|0.07|N|O|1997-06-04|1997-04-06|1997-06-25|TAKE BACK RETURN|SHIP| special dependencies.| +10414|943347|5866|3|28|38928.40|0.01|0.02|N|O|1997-03-31|1997-04-20|1997-04-03|TAKE BACK RETURN|TRUCK|ress, bold instructi| +10414|824898|37415|4|45|82028.25|0.01|0.08|N|O|1997-03-16|1997-03-24|1997-04-14|COLLECT COD|AIR|ickly regular request| +10415|272049|9565|1|22|22462.66|0.09|0.07|N|O|1996-10-04|1996-09-20|1996-10-07|NONE|REG AIR|lar, speci| +10415|320502|8021|2|7|10657.43|0.06|0.08|N|O|1996-08-01|1996-10-13|1996-08-09|NONE|MAIL|ven requests detect | +10440|992429|29987|1|2|3042.76|0.09|0.07|N|O|1996-10-08|1996-10-28|1996-11-03|TAKE BACK RETURN|SHIP|ts haggle furiously. unusu| +10440|746179|33722|2|47|57581.58|0.02|0.02|N|O|1996-10-09|1996-10-14|1996-10-24|NONE|REG AIR| dinos haggle along the | +10440|23001|35502|3|14|12936.00|0.00|0.05|N|O|1996-09-10|1996-12-01|1996-10-06|TAKE BACK RETURN|MAIL|foxes use slyly above the deposits.| +10441|229129|4138|1|34|35975.74|0.03|0.07|N|O|1998-02-02|1997-11-29|1998-02-24|DELIVER IN PERSON|MAIL|into beans doze blithely| +10441|956855|19375|2|37|70736.97|0.07|0.07|N|O|1997-11-02|1997-12-14|1997-11-20|DELIVER IN PERSON|REG AIR|yly blithely final requests. f| +10441|856546|19064|3|37|55592.50|0.08|0.08|N|O|1998-01-21|1997-12-12|1998-01-22|NONE|TRUCK|s. regular, final| +10441|956532|44090|4|1|1588.49|0.10|0.07|N|O|1997-12-02|1997-12-20|1997-12-28|TAKE BACK RETURN|REG AIR|es. express notornis boost among| +10441|416797|41814|5|27|46271.79|0.10|0.06|N|O|1997-11-27|1997-12-30|1997-12-07|COLLECT COD|FOB|ngside of the even ideas nag blit| +10442|481938|19466|1|4|7679.64|0.04|0.00|N|O|1996-01-26|1996-02-13|1996-01-31|NONE|TRUCK| haggle. quickly even instructions| +10442|915751|15752|2|47|83035.37|0.04|0.03|N|O|1995-12-26|1996-02-22|1996-01-19|COLLECT COD|AIR|. slyly even pinto bea| +10442|23643|36144|3|40|62665.60|0.04|0.01|N|O|1996-01-29|1996-03-10|1996-02-18|NONE|REG AIR|ccounts shall unwind quickl| +10442|367073|4595|4|28|31921.68|0.00|0.06|N|O|1996-03-11|1996-02-12|1996-04-02|DELIVER IN PERSON|SHIP|ious theodolites| +10442|386725|11740|5|26|47104.46|0.05|0.04|N|O|1996-03-14|1996-03-22|1996-04-10|DELIVER IN PERSON|FOB|pending dependencies sleep blithely accordi| +10443|30043|30044|1|3|2919.12|0.05|0.01|A|F|1993-05-21|1993-03-10|1993-06-01|TAKE BACK RETURN|TRUCK|ests sleep furiously requests. slyly ev| +10443|923559|23560|2|11|17407.61|0.05|0.04|R|F|1993-01-25|1993-03-25|1993-02-04|DELIVER IN PERSON|SHIP| beans. final, unusual re| +10443|242366|29879|3|18|23550.30|0.00|0.03|R|F|1993-03-17|1993-03-13|1993-03-21|COLLECT COD|RAIL|furiously even theodolites.| +10443|439848|14865|4|40|71512.80|0.04|0.04|R|F|1993-02-25|1993-03-25|1993-02-26|TAKE BACK RETURN|RAIL|y alongside of the slyly final | +10443|519082|6613|5|13|14313.78|0.07|0.07|A|F|1993-03-29|1993-03-09|1993-04-20|TAKE BACK RETURN|REG AIR|. furiously even ideas slee| +10443|201670|26679|6|42|66009.72|0.08|0.02|R|F|1993-02-01|1993-03-11|1993-03-03|TAKE BACK RETURN|REG AIR| serve across the | +10444|546551|9062|1|14|22365.42|0.06|0.07|N|O|1995-08-06|1995-06-16|1995-08-31|DELIVER IN PERSON|RAIL| carefully among the carefully ir| +10444|873362|35880|2|22|29377.04|0.00|0.00|A|F|1995-05-16|1995-06-19|1995-06-12|DELIVER IN PERSON|FOB|y packages above the regular d| +10444|581995|44507|3|22|45693.34|0.00|0.08|R|F|1995-05-31|1995-07-07|1995-06-05|COLLECT COD|MAIL|s the asymptote| +10444|576871|26872|4|36|70122.60|0.09|0.08|R|F|1995-05-19|1995-07-14|1995-05-25|TAKE BACK RETURN|AIR|gular ideas cajole alo| +10445|323431|10950|1|5|7272.10|0.03|0.07|N|O|1997-10-30|1997-10-08|1997-11-04|NONE|RAIL|ts. carefully express ex| +10445|899195|11713|2|26|31047.90|0.04|0.06|N|O|1997-11-25|1997-10-15|1997-12-13|TAKE BACK RETURN|SHIP|s run. even requests w| +10445|758251|45797|3|26|34039.72|0.05|0.05|N|O|1997-11-09|1997-10-29|1997-12-03|TAKE BACK RETURN|SHIP|above the blithel| +10445|908773|46328|4|19|33852.87|0.08|0.03|N|O|1997-09-11|1997-11-14|1997-09-29|COLLECT COD|FOB|ly even depo| +10446|785066|35067|1|17|19567.51|0.02|0.04|N|O|1998-08-27|1998-08-09|1998-09-09|DELIVER IN PERSON|AIR|xes dazzle regul| +10446|603700|3701|2|21|33677.07|0.09|0.01|N|O|1998-10-06|1998-08-04|1998-10-24|DELIVER IN PERSON|FOB|arhorses wak| +10446|384956|9971|3|21|42859.74|0.09|0.02|N|O|1998-09-25|1998-09-01|1998-10-22|TAKE BACK RETURN|FOB|ly even fo| +10446|945492|20529|4|15|23061.75|0.09|0.00|N|O|1998-07-16|1998-08-01|1998-08-04|NONE|TRUCK|after the carefully iro| +10446|873147|10699|5|6|6720.60|0.01|0.05|N|O|1998-06-21|1998-08-19|1998-07-08|COLLECT COD|REG AIR|foxes above the ironic, silent account| +10446|978327|40847|6|40|56211.20|0.10|0.01|N|O|1998-08-06|1998-07-30|1998-08-17|COLLECT COD|AIR|y bold pint| +10447|479362|29363|1|49|65725.66|0.03|0.00|A|F|1993-02-24|1993-01-03|1993-03-20|DELIVER IN PERSON|AIR|the theodolites sleep flu| +10447|634802|47315|2|37|64260.49|0.02|0.00|R|F|1993-01-05|1992-12-16|1993-01-25|TAKE BACK RETURN|RAIL|its. quickly even packages bo| +10447|113770|13771|3|50|89188.50|0.05|0.02|R|F|1993-01-16|1993-01-09|1993-01-17|DELIVER IN PERSON|MAIL|structions haggle since the expre| +10447|128168|28169|4|39|46650.24|0.06|0.05|A|F|1992-12-15|1992-12-24|1992-12-20|COLLECT COD|RAIL|silent ideas promise blithely| +10472|527952|40463|1|28|55438.04|0.06|0.00|R|F|1994-05-15|1994-03-27|1994-05-28|DELIVER IN PERSON|TRUCK|counts integrate. ironic foxes p| +10472|282758|45264|2|21|36555.54|0.10|0.03|A|F|1994-03-08|1994-04-18|1994-03-12|NONE|REG AIR|ers. blithely silent dep| +10472|299407|49408|3|20|28127.80|0.02|0.08|R|F|1994-03-20|1994-04-12|1994-04-02|COLLECT COD|RAIL|ions haggle f| +10472|129518|4523|4|33|51067.83|0.01|0.02|R|F|1994-05-24|1994-05-18|1994-06-14|COLLECT COD|AIR| regular packa| +10472|806264|31297|5|44|51489.68|0.04|0.04|A|F|1994-04-30|1994-05-19|1994-05-06|COLLECT COD|TRUCK|ffily around the furiously unus| +10472|868176|30694|6|41|46909.33|0.02|0.07|R|F|1994-06-15|1994-04-06|1994-06-29|DELIVER IN PERSON|MAIL|ests haggle idly along the carefully re| +10472|432070|32071|7|13|13026.65|0.05|0.06|R|F|1994-06-07|1994-04-23|1994-06-26|NONE|FOB|s wake slyly quickly even instructions| +10473|796950|46951|1|16|32750.72|0.09|0.01|N|O|1997-08-19|1997-07-19|1997-09-15|NONE|REG AIR| excuses al| +10473|333090|20609|2|12|13476.96|0.08|0.06|N|O|1997-06-27|1997-08-09|1997-07-01|TAKE BACK RETURN|SHIP|ions cajole across the pinto beans. furi| +10473|236023|11032|3|24|23016.24|0.03|0.02|N|O|1997-06-09|1997-07-31|1997-06-26|TAKE BACK RETURN|MAIL|re at the slyly express instructions. sl| +10473|837412|24961|4|47|63420.39|0.02|0.01|N|O|1997-09-14|1997-07-07|1997-10-03|NONE|MAIL|cingly regular requests| +10473|382891|45399|5|16|31582.08|0.10|0.04|N|O|1997-08-26|1997-06-23|1997-09-14|COLLECT COD|AIR|nts are alway| +10473|244818|19827|6|44|77563.20|0.04|0.04|N|O|1997-09-09|1997-08-08|1997-09-21|TAKE BACK RETURN|AIR|o the blithely stealthy| +10474|766699|41730|1|19|33547.54|0.07|0.08|A|F|1992-03-07|1992-05-06|1992-03-23|DELIVER IN PERSON|FOB|ckages along the ironic dolph| +10474|904571|42126|2|22|34661.66|0.10|0.08|A|F|1992-04-19|1992-05-10|1992-05-15|COLLECT COD|AIR|ven ideas maintain about the even, expre| +10475|759223|34254|1|38|48723.22|0.02|0.07|R|F|1994-08-16|1994-09-19|1994-09-13|TAKE BACK RETURN|SHIP|detect furiously. ironic| +10475|256407|43923|2|14|19087.46|0.01|0.05|A|F|1994-08-30|1994-10-02|1994-09-12|DELIVER IN PERSON|RAIL|haggle furiously across the blithely r| +10475|426232|26233|3|9|10423.89|0.06|0.00|A|F|1994-10-19|1994-10-08|1994-11-15|TAKE BACK RETURN|MAIL|s, express deposits sleep!| +10476|661814|49354|1|47|83461.66|0.09|0.03|N|O|1997-01-06|1996-11-05|1997-01-23|TAKE BACK RETURN|MAIL|ins print blithely. blithely even instr| +10476|98575|36079|2|48|75531.36|0.06|0.05|N|O|1996-12-03|1996-11-14|1996-12-31|TAKE BACK RETURN|SHIP|e slyly requests. even requests sleep a| +10476|733398|20941|3|5|7156.80|0.06|0.02|N|O|1996-10-16|1996-11-28|1996-10-23|DELIVER IN PERSON|REG AIR|ing, unusual packages. | +10476|217747|5260|4|4|6658.92|0.02|0.08|N|O|1997-01-07|1996-10-27|1997-01-08|NONE|RAIL|thely regular a| +10476|660183|10184|5|5|5715.75|0.05|0.06|N|O|1996-12-31|1996-11-17|1997-01-13|COLLECT COD|REG AIR|ans. orbits boost slyly regular packages. | +10476|683758|33759|6|2|3483.44|0.00|0.05|N|O|1997-01-01|1996-11-19|1997-01-15|DELIVER IN PERSON|REG AIR|. carefully ev| +10477|957947|32986|1|10|20049.00|0.03|0.02|N|O|1997-09-09|1997-07-24|1997-10-01|DELIVER IN PERSON|SHIP|al dependencies integrate. fur| +10477|203371|3372|2|46|58620.56|0.00|0.06|N|O|1997-09-13|1997-07-13|1997-10-08|COLLECT COD|FOB|le furiousl| +10477|48706|23707|3|45|74461.50|0.09|0.00|N|O|1997-07-02|1997-08-23|1997-07-29|DELIVER IN PERSON|REG AIR|furiously. unusual packages c| +10477|592456|29990|4|2|3096.86|0.03|0.01|N|O|1997-10-02|1997-08-13|1997-10-07|NONE|SHIP|xes. carefully final theodolites are furi| +10477|406791|44316|5|9|15279.93|0.06|0.07|N|O|1997-07-05|1997-08-03|1997-08-02|TAKE BACK RETURN|AIR| was quickly ag| +10478|410509|10510|1|2|2838.96|0.09|0.08|A|F|1993-04-22|1993-05-09|1993-04-28|TAKE BACK RETURN|FOB|ts wake above the fur| +10478|416597|41614|2|17|25730.69|0.00|0.02|R|F|1993-06-14|1993-04-28|1993-06-26|TAKE BACK RETURN|MAIL|ccording t| +10479|971365|46404|1|41|58889.12|0.03|0.07|R|F|1993-07-28|1993-08-12|1993-08-16|TAKE BACK RETURN|TRUCK|ously dogged foxes wake blith| +10479|718010|18011|2|34|34951.32|0.05|0.02|A|F|1993-06-05|1993-07-09|1993-06-23|COLLECT COD|FOB|e among the furiously bold pinto bea| +10479|583471|45983|3|33|51296.85|0.05|0.01|R|F|1993-08-04|1993-07-19|1993-08-19|DELIVER IN PERSON|TRUCK|ajole thinly accor| +10479|382016|7031|4|10|10980.00|0.01|0.07|A|F|1993-05-26|1993-06-30|1993-05-28|NONE|SHIP|s. fluffily ironic theodolites subl| +10479|536128|48639|5|29|33758.90|0.00|0.01|R|F|1993-08-13|1993-07-10|1993-08-24|DELIVER IN PERSON|RAIL|posits nag | +10504|854237|16755|1|26|30970.94|0.09|0.07|N|O|1995-11-16|1995-12-05|1995-12-08|COLLECT COD|AIR|lly express, regular deposit| +10504|151037|26044|2|1|1088.03|0.08|0.01|N|O|1996-01-16|1996-01-03|1996-02-05|NONE|TRUCK|nding asymptotes ca| +10504|470308|20309|3|43|54966.04|0.04|0.01|N|O|1995-11-20|1995-12-20|1995-12-17|TAKE BACK RETURN|REG AIR|quests; final, express accoun| +10504|466087|3615|4|38|40016.28|0.05|0.04|N|O|1996-02-04|1996-01-01|1996-02-17|NONE|REG AIR|s sleep carefully against the regular, iro| +10504|507417|7418|5|42|59824.38|0.02|0.03|N|O|1995-10-19|1995-12-13|1995-11-02|NONE|TRUCK|ding requests. even, even theodol| +10504|155910|18414|6|40|78636.40|0.09|0.03|N|O|1995-11-09|1996-01-09|1995-12-01|COLLECT COD|RAIL|uests after the| +10505|656023|43563|1|30|29369.70|0.04|0.05|N|O|1998-03-11|1998-03-24|1998-04-02|COLLECT COD|REG AIR|lly. fluffily unusual accounts sleep| +10505|762560|37591|2|30|48675.90|0.07|0.05|N|O|1998-03-29|1998-02-16|1998-04-23|TAKE BACK RETURN|AIR|the blithely regular | +10505|338369|876|3|20|28147.00|0.09|0.00|N|O|1998-01-22|1998-03-15|1998-02-09|COLLECT COD|FOB|fix against the quickly regular deposits| +10505|962374|49932|4|42|60325.86|0.10|0.01|N|O|1998-02-13|1998-03-15|1998-03-03|NONE|SHIP|ely ironic foxes p| +10505|616310|3847|5|43|52730.04|0.01|0.07|N|O|1998-04-04|1998-02-02|1998-04-19|COLLECT COD|AIR|ns. blithely spe| +10505|313002|38015|6|35|35524.65|0.00|0.04|N|O|1998-02-07|1998-03-09|1998-02-24|NONE|SHIP|deposits are accounts. | +10506|312166|24673|1|2|2356.30|0.02|0.01|R|F|1992-04-27|1992-06-24|1992-05-19|DELIVER IN PERSON|TRUCK|ng multipliers. orbits sleep blithely| +10506|561345|23857|2|28|39376.96|0.00|0.01|A|F|1992-07-23|1992-06-10|1992-08-22|COLLECT COD|TRUCK|terns wake carefully across | +10507|457355|19865|1|40|52493.20|0.05|0.06|R|F|1993-09-21|1993-09-11|1993-10-18|DELIVER IN PERSON|SHIP|e. carefully idle deposits detect slyly | +10507|750401|402|2|46|66763.02|0.03|0.04|A|F|1993-09-21|1993-10-04|1993-10-08|DELIVER IN PERSON|MAIL|solve slyly special sheav| +10507|983924|8963|3|2|4015.76|0.06|0.04|R|F|1993-10-26|1993-09-03|1993-10-28|COLLECT COD|RAIL| bold deposits are quickly. blithely | +10508|713565|13566|1|35|55248.55|0.04|0.02|N|O|1996-01-29|1995-12-30|1996-02-03|DELIVER IN PERSON|AIR|. slyly express sauter| +10508|881700|44218|2|12|20179.92|0.02|0.06|N|O|1996-01-22|1996-01-24|1996-02-19|COLLECT COD|REG AIR|as. even instructio| +10508|715649|40678|3|44|73242.84|0.08|0.01|N|O|1996-01-04|1996-01-10|1996-01-22|TAKE BACK RETURN|FOB|carefully special th| +10508|897204|47205|4|9|10810.44|0.07|0.08|N|O|1996-02-04|1996-01-03|1996-02-07|COLLECT COD|SHIP|ously about the regular| +10508|304388|41907|5|19|26455.03|0.06|0.01|N|O|1995-12-14|1996-01-19|1995-12-18|TAKE BACK RETURN|SHIP|above the slyly express deposits. instruct| +10508|844128|6645|6|40|42883.20|0.09|0.07|N|O|1996-01-26|1995-12-29|1996-02-13|COLLECT COD|TRUCK|en instructi| +10508|257919|20425|7|25|46922.50|0.08|0.00|N|O|1996-01-12|1996-02-08|1996-01-21|TAKE BACK RETURN|MAIL|pecial orbits cajole finally furi| +10509|840534|40535|1|26|38336.74|0.03|0.03|N|O|1997-09-21|1997-11-08|1997-09-22|DELIVER IN PERSON|RAIL| ironic dependencies across the fluffily| +10509|853837|28872|2|8|14326.32|0.02|0.04|N|O|1997-11-30|1997-09-25|1997-12-16|NONE|MAIL|ies haggle fluffily. regular accounts sn| +10509|429352|4369|3|42|53815.86|0.01|0.08|N|O|1997-09-21|1997-10-27|1997-09-25|NONE|FOB|would cajole blithely alongside| +10509|109424|21927|4|31|44436.02|0.05|0.00|N|O|1997-11-14|1997-10-08|1997-12-08|COLLECT COD|REG AIR|final deposits wa| +10509|79514|4517|5|9|13441.59|0.06|0.06|N|O|1997-09-14|1997-09-16|1997-09-27|NONE|SHIP| slyly even packages. fu| +10510|47084|47085|1|41|42274.28|0.09|0.04|N|O|1998-01-26|1997-12-19|1998-02-17|TAKE BACK RETURN|AIR|fully unusual theodolites | +10510|340342|15355|2|18|24881.94|0.10|0.03|N|O|1998-01-08|1998-01-04|1998-01-31|DELIVER IN PERSON|MAIL|symptotes play quickly! | +10510|121613|34116|3|20|32692.20|0.08|0.03|N|O|1998-01-14|1998-01-13|1998-01-19|COLLECT COD|TRUCK|inal foxes along t| +10510|940920|40921|4|17|33334.96|0.02|0.00|N|O|1998-01-20|1997-12-21|1998-02-14|NONE|MAIL|ess foxes. furiously regular packages| +10511|198490|10994|1|42|66716.58|0.00|0.01|A|F|1994-12-02|1995-01-08|1994-12-03|COLLECT COD|MAIL| sometimes a| +10511|20467|7968|2|38|52723.48|0.10|0.08|R|F|1994-12-17|1995-01-04|1995-01-04|NONE|AIR|ending pinto b| +10511|982626|20184|3|7|11960.06|0.00|0.07|A|F|1994-11-19|1994-12-15|1994-12-13|COLLECT COD|FOB|dencies boost according to the busy pl| +10511|980022|5061|4|43|47385.14|0.03|0.06|A|F|1994-11-26|1994-11-15|1994-12-09|COLLECT COD|FOB|gular ideas lose fluf| +10536|417696|42713|1|16|25818.72|0.04|0.00|N|O|1996-03-04|1996-03-17|1996-03-28|NONE|RAIL| bold instructions. regular ideas are. f| +10537|150995|13499|1|47|96161.53|0.01|0.01|N|O|1998-03-28|1998-04-17|1998-04-05|COLLECT COD|TRUCK|rding to the platelets. fluffily f| +10538|312857|12858|1|39|72923.76|0.02|0.04|A|F|1992-06-17|1992-05-20|1992-07-15|NONE|RAIL|yly excuses. idle, express tithes x-ray | +10538|177876|40380|2|31|60569.97|0.06|0.05|A|F|1992-06-17|1992-05-25|1992-06-25|NONE|MAIL|rays. even pains nod blithely furio| +10538|560491|23003|3|33|51198.51|0.06|0.06|A|F|1992-05-16|1992-05-05|1992-05-28|COLLECT COD|SHIP|furiously blithely final deposits.| +10538|162683|37690|4|13|22693.84|0.05|0.03|A|F|1992-06-09|1992-04-11|1992-07-08|NONE|RAIL|ffix carefully along the carefully | +10538|207154|7155|5|25|26528.50|0.05|0.05|R|F|1992-05-09|1992-05-10|1992-05-12|COLLECT COD|TRUCK|ts grow blithely. packages are depen| +10538|629911|42424|6|46|84680.48|0.04|0.03|R|F|1992-06-26|1992-04-10|1992-07-08|DELIVER IN PERSON|AIR|ns use. idly unusual re| +10539|887354|37355|1|41|54993.71|0.09|0.06|N|O|1997-03-16|1997-02-05|1997-04-01|TAKE BACK RETURN|SHIP|evenly ironic requests h| +10539|751219|26250|2|9|11431.62|0.07|0.06|N|O|1997-03-05|1997-02-09|1997-03-16|DELIVER IN PERSON|SHIP|apades wake according to the ironi| +10540|440351|27876|1|30|38739.90|0.02|0.06|N|O|1997-04-29|1997-05-23|1997-05-14|COLLECT COD|TRUCK|dly unusual a| +10540|970825|45864|2|41|77726.98|0.03|0.05|N|O|1997-05-03|1997-06-23|1997-05-26|DELIVER IN PERSON|REG AIR|arly after | +10540|648312|48313|3|15|18904.20|0.00|0.01|N|O|1997-08-19|1997-05-31|1997-09-11|TAKE BACK RETURN|REG AIR|ly bold requests sle| +10541|340189|27708|1|33|40562.61|0.07|0.06|R|F|1995-01-16|1994-12-17|1995-01-22|DELIVER IN PERSON|FOB|deas are against the | +10541|542112|29643|2|30|34622.70|0.06|0.02|A|F|1995-01-23|1994-11-18|1995-02-14|COLLECT COD|SHIP| slyly ironic instructions. r| +10541|269788|32294|3|36|63279.72|0.00|0.08|R|F|1995-01-07|1994-11-26|1995-01-29|NONE|RAIL|quests haggle fluffily. pe| +10541|320255|32762|4|41|52284.84|0.08|0.05|R|F|1995-01-13|1994-12-14|1995-02-02|COLLECT COD|SHIP|fully unusual | +10541|517925|30436|5|7|13600.30|0.04|0.00|A|F|1995-01-30|1994-12-10|1995-01-31|NONE|TRUCK|es wake quickly. fluffil| +10541|755889|5890|6|11|21393.35|0.06|0.01|R|F|1994-12-06|1994-11-21|1995-01-04|TAKE BACK RETURN|REG AIR|s the bold, ironic accounts affix doggedl| +10542|538364|875|1|19|26644.46|0.06|0.06|A|F|1995-01-05|1995-01-03|1995-01-27|DELIVER IN PERSON|TRUCK|aters grow quickly fluffily unusual theo| +10542|281728|19244|2|19|32484.49|0.03|0.00|A|F|1994-12-03|1995-01-06|1994-12-31|NONE|FOB|ly final frays. regular instruct| +10542|998326|23365|3|27|38455.56|0.09|0.03|R|F|1995-03-05|1995-02-10|1995-03-24|COLLECT COD|SHIP|ng gifts affix care| +10542|853520|41072|4|18|26522.64|0.03|0.02|R|F|1995-01-17|1995-01-05|1995-01-31|COLLECT COD|MAIL|ide the ironi| +10542|102545|27550|5|43|66544.22|0.07|0.02|A|F|1994-12-17|1995-01-22|1994-12-22|NONE|TRUCK|nal deposits against the final pinto b| +10542|465445|2973|6|13|18335.46|0.05|0.02|R|F|1994-12-27|1995-01-31|1994-12-31|DELIVER IN PERSON|FOB|ost. furiousl| +10543|554225|16737|1|35|44772.00|0.00|0.05|R|F|1995-05-12|1995-06-26|1995-05-29|COLLECT COD|SHIP|usual requests. bold, even de| +10543|845862|33411|2|20|36156.40|0.10|0.00|N|O|1995-07-09|1995-06-27|1995-07-24|TAKE BACK RETURN|FOB| slyly pending accounts.| +10543|388808|1316|3|30|56903.70|0.03|0.08|N|O|1995-07-15|1995-07-08|1995-08-07|TAKE BACK RETURN|FOB|equests. sly| +10543|692520|17547|4|20|30249.80|0.01|0.08|N|O|1995-08-19|1995-06-28|1995-09-06|COLLECT COD|MAIL|out the express | +10543|181424|6431|5|26|39140.92|0.10|0.06|R|F|1995-05-19|1995-06-12|1995-05-30|NONE|MAIL|uickly final instructions wake| +10543|183290|33291|6|1|1373.29|0.01|0.06|N|O|1995-06-22|1995-06-15|1995-07-18|DELIVER IN PERSON|REG AIR|osits haggle carefully according to the | +10543|551089|1090|7|4|4560.24|0.05|0.03|N|O|1995-06-21|1995-07-04|1995-07-06|NONE|AIR|sly special courts x-ray sly| +10568|139068|39069|1|19|21034.14|0.07|0.05|A|F|1995-02-13|1995-03-15|1995-03-11|COLLECT COD|MAIL|d ideas? pinto beans about the sometimes re| +10568|313029|38042|2|12|12504.12|0.03|0.08|A|F|1995-01-25|1995-03-15|1995-02-14|NONE|REG AIR|jole slyly.| +10568|71723|21724|3|35|59315.20|0.08|0.01|R|F|1995-04-12|1995-02-10|1995-04-25|DELIVER IN PERSON|TRUCK|nal packages| +10568|446884|9393|4|45|82388.70|0.00|0.07|R|F|1995-02-13|1995-02-28|1995-03-09|DELIVER IN PERSON|MAIL|ounts cajole slyly theodolites. regular | +10568|764197|14198|5|16|20178.56|0.00|0.01|A|F|1995-03-03|1995-03-12|1995-03-13|TAKE BACK RETURN|FOB|ests. silent| +10568|845334|20367|6|27|34540.83|0.05|0.06|A|F|1995-02-01|1995-02-17|1995-02-06|DELIVER IN PERSON|RAIL|ideas kindle blithely regular, final | +10569|373173|10695|1|32|39877.12|0.07|0.07|N|O|1998-08-08|1998-07-07|1998-08-13|NONE|MAIL|cuses integra| +10569|916467|28986|2|3|4450.26|0.09|0.08|N|O|1998-08-08|1998-07-31|1998-09-06|TAKE BACK RETURN|MAIL|e carefully stealth| +10569|53470|3471|3|41|58362.27|0.03|0.06|N|O|1998-08-05|1998-07-26|1998-08-08|TAKE BACK RETURN|FOB|l accounts. carefully ironic deposits in| +10569|654312|29339|4|38|48118.64|0.02|0.02|N|O|1998-09-15|1998-08-10|1998-10-05|DELIVER IN PERSON|RAIL|kages haggle quickly alongside of| +10569|15813|15814|5|25|43220.25|0.05|0.02|N|O|1998-10-03|1998-07-27|1998-10-11|NONE|RAIL|s nod according to the pinto beans. slyly| +10569|755639|43185|6|47|79646.20|0.04|0.05|N|O|1998-07-02|1998-08-25|1998-07-03|COLLECT COD|SHIP|e foxes. blithely final pint| +10570|786797|36798|1|47|88536.72|0.03|0.07|N|O|1996-02-19|1996-03-07|1996-03-08|TAKE BACK RETURN|MAIL|slyly pending sauternes | +10570|685651|48165|2|43|70374.66|0.05|0.04|N|O|1996-01-17|1996-04-03|1996-01-27|COLLECT COD|MAIL|deas. slyly final asympt| +10570|731153|43668|3|14|16577.68|0.02|0.01|N|O|1996-01-13|1996-04-04|1996-01-24|DELIVER IN PERSON|REG AIR| excuses ar| +10570|472999|48018|4|13|25635.61|0.03|0.04|N|O|1996-04-21|1996-02-15|1996-04-27|NONE|FOB|equests grow blithe| +10570|687811|25351|5|3|5396.34|0.04|0.06|N|O|1996-02-25|1996-03-17|1996-03-18|DELIVER IN PERSON|MAIL|s use carefu| +10571|239441|14450|1|6|8282.58|0.08|0.01|A|F|1992-09-11|1992-09-22|1992-10-05|TAKE BACK RETURN|REG AIR|riously re| +10571|284160|34161|2|18|20594.70|0.09|0.05|A|F|1992-08-10|1992-08-17|1992-08-24|COLLECT COD|RAIL|lyly regular epit| +10571|873144|10696|3|30|33513.00|0.05|0.04|A|F|1992-11-10|1992-08-28|1992-11-22|TAKE BACK RETURN|FOB|the slyly final deposi| +10571|917344|4899|4|40|54452.00|0.08|0.06|A|F|1992-10-23|1992-09-11|1992-10-28|COLLECT COD|FOB|haggle carefully. quick, spec| +10572|791456|3972|1|22|34043.24|0.08|0.02|R|F|1992-06-08|1992-04-24|1992-06-29|COLLECT COD|TRUCK|boost slyly unusual deposits. blithely re| +10572|998188|35746|2|28|36011.92|0.09|0.08|R|F|1992-04-28|1992-05-15|1992-05-22|TAKE BACK RETURN|RAIL|furiously pin| +10572|539920|27451|3|39|76436.10|0.02|0.06|A|F|1992-04-17|1992-05-23|1992-05-16|COLLECT COD|RAIL|ar requests use final ide| +10572|427765|15290|4|41|69402.34|0.01|0.01|A|F|1992-05-17|1992-05-14|1992-06-08|COLLECT COD|TRUCK|e regular, pending packages. q| +10572|442519|42520|5|44|64305.56|0.02|0.05|R|F|1992-04-09|1992-05-28|1992-05-06|TAKE BACK RETURN|FOB|lar pinto beans | +10573|7036|32037|1|29|27347.87|0.01|0.05|A|F|1992-07-11|1992-08-29|1992-08-05|COLLECT COD|FOB|ual accounts nag| +10573|247541|35054|2|9|13396.77|0.01|0.02|R|F|1992-10-06|1992-09-23|1992-11-03|NONE|SHIP|e final requests cajole furiou| +10573|420379|45396|3|28|36381.80|0.08|0.01|R|F|1992-08-16|1992-08-14|1992-08-25|DELIVER IN PERSON|SHIP|ckly final excuses solve. slyly pend| +10573|295116|45117|4|19|21110.90|0.03|0.07|A|F|1992-10-08|1992-08-14|1992-10-15|TAKE BACK RETURN|RAIL|. slyly pending| +10573|8164|8165|5|42|45030.72|0.06|0.00|A|F|1992-08-02|1992-09-06|1992-08-03|NONE|SHIP|. blithely ex| +10574|661273|36300|1|49|60477.76|0.09|0.05|N|O|1997-01-09|1996-11-14|1997-01-18|DELIVER IN PERSON|MAIL|structions hinder. pinto bean| +10574|2698|15199|2|46|73631.74|0.10|0.05|N|O|1996-10-19|1996-12-14|1996-10-26|NONE|AIR|endencies?| +10574|332178|19697|3|23|27833.68|0.02|0.02|N|O|1997-01-21|1996-10-29|1997-02-17|NONE|REG AIR| sleep. blithely regular pains against th| +10574|911844|36881|4|17|31548.60|0.03|0.01|N|O|1996-11-23|1996-11-03|1996-12-13|TAKE BACK RETURN|FOB|r requests. final dependencies cajole b| +10574|349010|49011|5|15|15885.00|0.01|0.06|N|O|1996-10-26|1996-11-29|1996-11-01|COLLECT COD|RAIL| at the quickly e| +10575|281581|31582|1|45|70315.65|0.03|0.02|N|O|1997-08-31|1997-09-30|1997-09-04|DELIVER IN PERSON|AIR|ions are fluf| +10575|519644|19645|2|45|74862.90|0.10|0.05|N|O|1997-11-18|1997-10-17|1997-11-21|DELIVER IN PERSON|SHIP|g packages about the regular, regular de| +10575|652175|39715|3|34|38322.76|0.00|0.01|N|O|1997-08-02|1997-09-10|1997-08-25|TAKE BACK RETURN|TRUCK| even, final r| +10575|96558|9060|4|29|45081.95|0.09|0.06|N|O|1997-10-12|1997-09-25|1997-10-31|NONE|RAIL|hs wake carefully agains| +10575|840813|28362|5|14|24552.78|0.02|0.02|N|O|1997-09-23|1997-09-13|1997-10-11|DELIVER IN PERSON|SHIP|nts. bold deposits hang| +10600|392505|30027|1|36|57509.64|0.01|0.08|N|O|1997-12-03|1998-01-21|1997-12-18|COLLECT COD|FOB| regular theodolites are pending, e| +10600|823194|35711|2|12|13405.80|0.10|0.08|N|O|1998-01-17|1998-01-14|1998-02-01|COLLECT COD|AIR|odolites. slyly pending grouches play| +10600|407124|19633|3|24|24746.40|0.09|0.06|N|O|1997-11-19|1998-01-16|1997-12-02|DELIVER IN PERSON|REG AIR|g to the foxes. re| +10600|529043|4064|4|4|4288.08|0.09|0.01|N|O|1998-02-17|1997-12-15|1998-03-04|COLLECT COD|SHIP|quickly regular pinto beans slee| +10600|623831|23832|5|17|29831.60|0.08|0.08|N|O|1998-01-15|1998-01-15|1998-01-26|DELIVER IN PERSON|AIR|. express de| +10600|711307|36336|6|38|50094.26|0.08|0.01|N|O|1997-11-26|1997-12-18|1997-12-15|COLLECT COD|AIR|ructions are slyly express requests.| +10601|14476|14477|1|43|59790.21|0.00|0.00|N|O|1998-11-02|1998-08-22|1998-11-27|DELIVER IN PERSON|MAIL| after the even in| +10601|290750|28266|2|28|48740.72|0.05|0.08|N|O|1998-08-29|1998-09-20|1998-08-31|DELIVER IN PERSON|FOB|ic, pending request| +10601|628353|3378|3|26|33314.32|0.05|0.03|N|O|1998-11-02|1998-08-24|1998-11-18|DELIVER IN PERSON|AIR|ly slyly silent courts. slyly reg| +10601|713915|1458|4|27|52079.76|0.08|0.06|N|O|1998-09-30|1998-09-18|1998-10-29|NONE|MAIL|uring the quickly ironic realms| +10601|760477|22993|5|36|55347.84|0.10|0.02|N|O|1998-08-13|1998-10-07|1998-08-15|DELIVER IN PERSON|REG AIR| deposits alongside | +10602|350983|25998|1|27|54917.19|0.06|0.04|A|F|1992-03-10|1992-02-24|1992-03-15|COLLECT COD|FOB|ctions. regular dinos sleep car| +10602|954511|17031|2|40|62618.80|0.02|0.00|R|F|1992-05-08|1992-02-27|1992-05-16|NONE|MAIL|fily ironic reques| +10603|665020|27534|1|1|984.99|0.05|0.00|N|O|1997-04-10|1997-02-24|1997-05-10|DELIVER IN PERSON|TRUCK|le according to the furi| +10604|526575|39086|1|29|46444.95|0.05|0.03|R|F|1992-12-28|1993-01-22|1993-01-04|NONE|AIR| deposits nag finally. carefully fina| +10604|139620|2123|2|8|13276.96|0.00|0.05|R|F|1993-03-10|1993-01-19|1993-03-22|NONE|FOB| accounts. even deposits affix. reques| +10604|589147|26681|3|37|45736.44|0.08|0.05|A|F|1993-01-21|1993-01-28|1993-02-03|DELIVER IN PERSON|RAIL|lithely: carefully fl| +10604|788204|25750|4|18|23259.06|0.06|0.03|A|F|1992-12-11|1993-01-10|1992-12-19|DELIVER IN PERSON|REG AIR|kly regular pinto beans cajole | +10604|343357|43358|5|46|64415.64|0.03|0.04|R|F|1992-12-19|1993-01-20|1993-01-04|COLLECT COD|MAIL|counts sleep slyly. ironic, fin| +10604|787908|25454|6|30|59876.10|0.03|0.02|R|F|1993-01-10|1993-01-10|1993-02-05|NONE|REG AIR| silent requests wake carefully.| +10605|479592|29593|1|11|17287.27|0.05|0.01|A|F|1995-02-24|1995-02-12|1995-02-26|DELIVER IN PERSON|RAIL| special accounts are quickly accordi| +10605|487051|49561|2|43|44635.29|0.06|0.08|A|F|1995-03-11|1995-02-08|1995-04-07|TAKE BACK RETURN|TRUCK|ual deposits haggle | +10605|854623|42175|3|44|69413.52|0.06|0.06|A|F|1994-12-28|1995-01-28|1995-01-02|NONE|REG AIR| ironic requests. dugo| +10605|646227|8740|4|27|31676.13|0.08|0.07|R|F|1995-03-03|1995-02-01|1995-03-27|COLLECT COD|AIR| use closely! fluffily bold reque| +10605|127604|40107|5|22|35895.20|0.01|0.00|R|F|1995-04-09|1995-02-05|1995-04-26|NONE|TRUCK|lose alongside of t| +10606|546678|9189|1|1|1724.65|0.07|0.06|A|F|1993-11-10|1993-10-01|1993-11-21|DELIVER IN PERSON|REG AIR|ns nag quickly. blithely fluffy pinto bea| +10606|506|507|2|11|15471.50|0.06|0.04|A|F|1993-08-22|1993-09-26|1993-09-13|COLLECT COD|SHIP|s run carefully specia| +10606|500510|511|3|1|1510.49|0.00|0.00|A|F|1993-11-13|1993-09-27|1993-12-04|DELIVER IN PERSON|REG AIR|ously unusual deposits. unusual pa| +10606|58601|33604|4|8|12476.80|0.02|0.06|R|F|1993-11-26|1993-10-25|1993-12-01|COLLECT COD|RAIL|final accounts detect blithely ab| +10606|897833|35385|5|50|91539.50|0.01|0.07|A|F|1993-09-07|1993-09-19|1993-09-16|NONE|REG AIR|gular reques| +10606|878337|15889|6|21|27621.09|0.03|0.08|A|F|1993-10-08|1993-10-26|1993-10-19|TAKE BACK RETURN|SHIP| bold ideas. accounts would impress | +10607|673761|23762|1|38|65919.74|0.05|0.05|N|O|1997-03-06|1997-02-06|1997-03-22|COLLECT COD|RAIL| slyly even asymptotes detect accord| +10607|898322|23357|2|42|55451.76|0.03|0.01|N|O|1997-03-13|1997-01-26|1997-03-23|DELIVER IN PERSON|TRUCK|arefully sp| +10607|86986|11989|3|1|1972.98|0.01|0.07|N|O|1997-03-14|1997-03-10|1997-04-02|NONE|RAIL|the pending theodolites. ironic,| +10632|208131|20636|1|15|15586.80|0.09|0.05|R|F|1992-11-27|1992-12-29|1992-12-08|COLLECT COD|AIR|y according to the quickly| +10633|827332|14881|1|23|28963.67|0.00|0.00|R|F|1993-11-25|1993-09-20|1993-12-11|DELIVER IN PERSON|FOB|y about the ironic, reg| +10633|963840|1398|2|33|62825.40|0.06|0.00|A|F|1993-12-10|1993-09-24|1994-01-07|NONE|FOB|cajole until the furiously | +10634|470553|20554|1|49|74652.97|0.03|0.02|N|O|1997-03-04|1997-04-04|1997-03-23|COLLECT COD|SHIP| foxes haggle sl| +10634|579955|4978|2|13|26454.09|0.10|0.08|N|O|1997-05-12|1997-04-16|1997-05-22|COLLECT COD|SHIP|ts sleep fluffily special instructions. pen| +10634|293453|30969|3|37|53518.28|0.02|0.00|N|O|1997-02-20|1997-03-15|1997-03-08|NONE|FOB|ld pinto beans cajo| +10634|48679|11180|4|41|66734.47|0.08|0.08|N|O|1997-04-07|1997-03-30|1997-04-22|DELIVER IN PERSON|MAIL|egular cour| +10634|135866|10871|5|21|39939.06|0.01|0.03|N|O|1997-04-22|1997-04-02|1997-05-10|NONE|AIR|equests are about the care| +10634|492230|29758|6|32|39110.72|0.06|0.00|N|O|1997-02-04|1997-03-06|1997-03-05|NONE|MAIL|s ideas. bl| +10635|964525|39564|1|46|73116.08|0.07|0.07|A|F|1995-03-23|1995-03-27|1995-04-15|TAKE BACK RETURN|REG AIR|y special accounts wake slyly furiously s| +10636|74090|24091|1|28|29794.52|0.09|0.00|A|F|1995-02-25|1994-12-30|1995-03-25|NONE|FOB|s deposits believe. quickly ironic p| +10636|220218|32723|2|28|31869.60|0.05|0.04|A|F|1995-01-02|1994-12-24|1995-01-17|TAKE BACK RETURN|FOB|ckly ironic theo| +10636|199718|24725|3|27|49078.17|0.06|0.00|A|F|1995-01-02|1994-12-02|1995-01-27|TAKE BACK RETURN|MAIL|uriously unusual excuses. slyly ironic requ| +10636|646542|34079|4|44|65494.44|0.09|0.05|A|F|1994-11-15|1994-12-11|1994-12-11|COLLECT COD|TRUCK|y carefully final asymptotes. carefully| +10636|430228|17753|5|12|13898.40|0.05|0.07|R|F|1994-11-14|1995-01-11|1994-12-09|NONE|AIR|pendencies sleep perma| +10636|826849|26850|6|42|74583.60|0.01|0.06|R|F|1995-01-16|1995-01-20|1995-02-01|NONE|AIR|ounts: pending, final pi| +10636|837815|332|7|26|45572.02|0.10|0.05|R|F|1994-11-14|1994-12-24|1994-11-23|NONE|AIR| bold asymptotes. fin| +10637|146510|46511|1|1|1556.51|0.02|0.07|R|F|1992-08-29|1992-08-19|1992-09-13|TAKE BACK RETURN|RAIL|ual requests. fin| +10637|385172|22694|2|5|6285.80|0.09|0.00|A|F|1992-07-29|1992-09-03|1992-08-18|NONE|TRUCK|egular, regular dependencies nag| +10638|986829|24387|1|27|51726.06|0.09|0.00|N|O|1995-08-15|1995-08-28|1995-08-22|DELIVER IN PERSON|MAIL|fluffily about the furiously un| +10638|631138|43651|2|26|27796.60|0.10|0.08|N|O|1995-08-25|1995-09-08|1995-09-05|COLLECT COD|MAIL|al accounts. furiously un| +10638|530833|30834|3|3|5591.43|0.04|0.00|N|O|1995-10-03|1995-09-04|1995-10-13|COLLECT COD|MAIL|gh the unusual ideas. carefully ironic pint| +10639|983329|33330|1|16|22596.48|0.02|0.05|N|O|1997-09-25|1997-11-17|1997-10-07|NONE|AIR|areful packages. reg| +10639|804515|42064|2|40|56778.80|0.05|0.07|N|O|1998-01-19|1997-12-19|1998-01-31|NONE|MAIL|ly bold depo| +10664|819159|6708|1|4|4312.44|0.04|0.02|A|F|1992-06-16|1992-07-23|1992-06-25|NONE|AIR|al packages haggle stealthily furiously | +10664|599304|49305|2|5|7016.40|0.08|0.05|A|F|1992-08-15|1992-08-01|1992-08-31|COLLECT COD|REG AIR|endencies. slyly i| +10664|501815|1816|3|2|3633.58|0.08|0.08|A|F|1992-09-25|1992-07-29|1992-10-03|NONE|MAIL|ironic packages | +10665|794975|32521|1|20|41398.80|0.03|0.00|N|O|1997-05-28|1997-04-26|1997-06-02|TAKE BACK RETURN|SHIP|as. idly pending requests a| +10665|144111|44112|2|32|36963.52|0.05|0.04|N|O|1997-04-09|1997-05-09|1997-04-25|DELIVER IN PERSON|SHIP| slyly special accounts nod carefully abov| +10665|67818|17819|3|22|39287.82|0.08|0.02|N|O|1997-06-12|1997-04-28|1997-06-27|COLLECT COD|RAIL|s. request| +10665|816188|28705|4|38|41957.32|0.03|0.07|N|O|1997-03-26|1997-05-30|1997-04-12|TAKE BACK RETURN|MAIL|carefully furious requests| +10665|655799|5800|5|48|84228.48|0.10|0.02|N|O|1997-06-25|1997-05-07|1997-06-28|NONE|MAIL| blithely express deposits x-| +10665|999047|24086|6|22|25212.00|0.09|0.03|N|O|1997-04-30|1997-05-17|1997-05-12|DELIVER IN PERSON|MAIL| regular requests among the slyly quick| +10666|497458|22477|1|28|40752.04|0.10|0.06|N|O|1998-02-26|1998-03-20|1998-03-28|TAKE BACK RETURN|TRUCK|s requests nag ruthlessly according t| +10666|775471|37987|2|35|54125.40|0.05|0.00|N|O|1998-05-02|1998-03-03|1998-05-03|DELIVER IN PERSON|REG AIR|ajole fluffily| +10666|334944|47451|3|9|17810.37|0.10|0.04|N|O|1998-03-22|1998-02-27|1998-03-31|DELIVER IN PERSON|AIR|ithely bold deposits can inte| +10666|399280|24295|4|15|20689.05|0.05|0.04|N|O|1998-02-04|1998-03-06|1998-02-19|TAKE BACK RETURN|TRUCK| regular foxes sleep blithely. ironic| +10666|685299|47813|5|28|35959.28|0.10|0.06|N|O|1998-03-03|1998-04-17|1998-03-04|DELIVER IN PERSON|TRUCK|deposits! ex| +10666|811756|24273|6|10|16677.10|0.09|0.01|N|O|1998-03-20|1998-02-27|1998-04-04|COLLECT COD|REG AIR|even deposits us| +10667|158422|33429|1|18|26647.56|0.06|0.00|N|O|1995-12-03|1996-01-06|1995-12-10|TAKE BACK RETURN|REG AIR|ress dependencies. slyly| +10667|585678|10701|2|30|52909.50|0.01|0.05|N|O|1996-01-30|1995-12-31|1996-02-18|TAKE BACK RETURN|SHIP|ironic deposits wake | +10667|474663|37173|3|15|24564.60|0.06|0.06|N|O|1996-01-05|1996-01-06|1996-01-07|DELIVER IN PERSON|REG AIR|s nag accounts. final, ironic de| +10668|171884|46891|1|12|23470.56|0.00|0.03|N|O|1997-08-22|1997-08-04|1997-09-02|COLLECT COD|RAIL|kages wake carefully. carefully | +10668|841403|28952|2|49|65873.64|0.09|0.08|N|O|1997-07-13|1997-08-03|1997-07-27|DELIVER IN PERSON|MAIL|unts are blithely above the carefu| +10668|454124|41652|3|21|22640.10|0.04|0.00|N|O|1997-07-31|1997-08-04|1997-08-07|COLLECT COD|TRUCK|s wake slyly carefully pend| +10668|461578|24088|4|28|43107.40|0.02|0.02|N|O|1997-08-14|1997-08-05|1997-09-06|DELIVER IN PERSON|SHIP|n accounts. blithely | +10668|728112|40627|5|48|54723.84|0.03|0.05|N|O|1997-10-06|1997-08-25|1997-10-26|TAKE BACK RETURN|AIR| furiously | +10669|317366|4885|1|44|60867.40|0.03|0.03|R|F|1994-01-31|1994-01-16|1994-02-06|NONE|MAIL|onic accounts. inst| +10670|669741|7281|1|45|76981.95|0.07|0.00|N|O|1996-07-12|1996-09-03|1996-08-03|NONE|TRUCK| sleep slyly express requests. ironic plat| +10670|334982|22501|2|35|70593.95|0.10|0.04|N|O|1996-06-22|1996-07-25|1996-07-03|NONE|SHIP|ully express instructions| +10670|37184|24685|3|34|38120.12|0.10|0.05|N|O|1996-10-04|1996-07-20|1996-10-07|TAKE BACK RETURN|MAIL|the pending grou| +10670|935797|10834|4|13|23825.75|0.00|0.00|N|O|1996-07-29|1996-09-11|1996-08-21|COLLECT COD|TRUCK|egular accounts| +10670|934753|9790|5|26|46480.46|0.06|0.03|N|O|1996-08-24|1996-07-20|1996-09-05|TAKE BACK RETURN|MAIL|fully. quickly special frets use s| +10670|378618|41126|6|24|40718.40|0.09|0.04|N|O|1996-06-24|1996-07-26|1996-07-06|TAKE BACK RETURN|AIR|xes hang. even, regular instruction| +10670|417641|5166|7|16|24937.92|0.06|0.08|N|O|1996-07-28|1996-08-12|1996-08-03|TAKE BACK RETURN|REG AIR|s detect s| +10671|292078|4584|1|29|31031.74|0.08|0.07|A|F|1994-03-26|1994-02-15|1994-04-16|COLLECT COD|FOB|y after the theodolites-- silently f| +10671|940197|2716|2|40|49486.00|0.00|0.04|A|F|1994-02-08|1994-01-11|1994-02-14|NONE|FOB|thely pending foxes| +10671|874932|37450|3|8|15255.12|0.01|0.02|A|F|1994-02-17|1994-02-09|1994-02-26|DELIVER IN PERSON|SHIP|c, dogged ideas haggle-- carefully ironic| +10671|971283|46322|4|18|24376.32|0.04|0.04|A|F|1993-12-11|1994-01-02|1993-12-20|DELIVER IN PERSON|SHIP|latelets use carefully about the final,| +10671|347057|34576|5|15|16560.60|0.01|0.07|R|F|1993-11-27|1994-01-27|1993-12-18|TAKE BACK RETURN|AIR|even pinto b| +10671|977584|15142|6|35|58153.90|0.00|0.03|A|F|1993-12-12|1994-02-24|1993-12-21|DELIVER IN PERSON|FOB|ges haggle. qui| +10696|333869|33870|1|40|76114.00|0.05|0.01|R|F|1993-04-25|1993-06-09|1993-05-25|NONE|SHIP| beans are. dugouts detect| +10696|323137|48150|2|8|9280.96|0.08|0.01|R|F|1993-04-10|1993-04-27|1993-05-02|TAKE BACK RETURN|MAIL|posits are fu| +10696|959065|21585|3|43|48332.86|0.06|0.00|R|F|1993-04-19|1993-06-17|1993-04-20|TAKE BACK RETURN|AIR|courts. de| +10696|1770|39271|4|33|55168.41|0.04|0.05|R|F|1993-06-25|1993-05-08|1993-07-02|DELIVER IN PERSON|SHIP|ully against the| +10696|739718|14747|5|13|22849.84|0.08|0.05|R|F|1993-05-01|1993-06-18|1993-05-05|COLLECT COD|FOB| final accounts. pinto beans wake bl| +10697|65001|40004|1|3|2898.00|0.09|0.02|N|O|1998-05-06|1998-04-27|1998-05-26|NONE|TRUCK|silent multipliers. ruthle| +10697|470598|20599|2|30|47057.10|0.04|0.05|N|O|1998-06-29|1998-06-02|1998-07-08|COLLECT COD|RAIL|t the quickly unusual p| +10697|332578|32579|3|43|69254.08|0.09|0.04|N|O|1998-04-30|1998-04-22|1998-05-11|TAKE BACK RETURN|REG AIR|nal accounts breach furiously quickl| +10697|624849|12386|4|11|19511.91|0.10|0.03|N|O|1998-05-29|1998-05-06|1998-06-16|TAKE BACK RETURN|TRUCK|as. silent, ironic frays wake. quick| +10697|834488|9521|5|7|9957.08|0.05|0.03|N|O|1998-05-26|1998-05-04|1998-06-15|COLLECT COD|TRUCK|y regular pinto beans| +10698|117333|29836|1|3|4050.99|0.03|0.06|A|F|1992-12-23|1992-12-15|1993-01-06|DELIVER IN PERSON|RAIL|promise blithely regular, even requests| +10698|10044|10045|2|41|39115.64|0.10|0.03|A|F|1993-01-25|1992-12-28|1993-01-26|TAKE BACK RETURN|AIR|ssly according| +10698|795376|7892|3|6|8828.04|0.05|0.01|A|F|1993-01-13|1993-01-15|1993-01-20|DELIVER IN PERSON|FOB|press foxes. accounts caj| +10698|876534|1569|4|31|46825.19|0.04|0.02|A|F|1993-01-20|1992-12-25|1993-02-08|NONE|RAIL|yly carefully regular | +10698|898548|23583|5|9|13918.50|0.01|0.08|A|F|1992-11-16|1993-01-02|1992-11-25|NONE|REG AIR|ilently along the foxes. fluffily | +10698|893262|5780|6|20|25104.40|0.05|0.06|A|F|1992-12-15|1992-12-29|1993-01-09|DELIVER IN PERSON|AIR| requests are quickly carefully| +10699|630315|5340|1|34|42339.52|0.09|0.01|N|O|1996-04-01|1996-02-18|1996-04-27|NONE|RAIL|ts; express n| +10699|701099|38642|2|18|19801.08|0.10|0.06|N|O|1995-12-21|1996-03-07|1995-12-24|COLLECT COD|SHIP|c accounts| +10699|358352|8353|3|29|40899.86|0.04|0.01|N|O|1996-02-18|1996-02-28|1996-02-20|COLLECT COD|MAIL|ependencies acco| +10699|818810|18811|4|48|82980.96|0.09|0.06|N|O|1995-12-21|1996-02-27|1996-01-03|DELIVER IN PERSON|SHIP|ounts engage carefully carefully even | +10700|721586|21587|1|3|4822.65|0.01|0.00|A|F|1992-06-24|1992-07-04|1992-06-29|TAKE BACK RETURN|RAIL|osits eat slyly carefully express courts. i| +10700|685244|10271|2|33|40563.93|0.03|0.08|A|F|1992-06-10|1992-06-13|1992-06-20|COLLECT COD|AIR|ticing deposits from the ideas x-ray car| +10701|294527|7033|1|15|22822.65|0.00|0.04|R|F|1994-04-09|1994-06-01|1994-04-22|TAKE BACK RETURN|MAIL|fully bold deposits along the bold, final w| +10701|103839|28844|2|48|88455.84|0.00|0.05|A|F|1994-07-10|1994-05-13|1994-07-14|NONE|MAIL|blithely bold dependen| +10702|620712|8249|1|20|32653.60|0.07|0.01|A|F|1992-05-07|1992-03-26|1992-06-04|COLLECT COD|TRUCK|s boost carefully fl| +10702|297760|22771|2|21|36912.75|0.07|0.04|R|F|1992-04-24|1992-05-02|1992-05-12|COLLECT COD|TRUCK|y pending instructions n| +10702|448871|11380|3|44|80073.40|0.05|0.06|R|F|1992-04-09|1992-03-26|1992-05-04|DELIVER IN PERSON|MAIL|hy ideas about the slyly regular pinto bea| +10702|169496|32000|4|39|61054.11|0.06|0.07|R|F|1992-06-11|1992-03-27|1992-06-21|DELIVER IN PERSON|REG AIR|y. theodolit| +10702|718003|43032|5|43|43901.71|0.07|0.02|R|F|1992-05-07|1992-04-01|1992-05-16|NONE|RAIL|egular requests. theodolites| +10703|848681|23714|1|37|60296.68|0.10|0.03|R|F|1992-05-27|1992-05-24|1992-06-12|NONE|SHIP| unusual packages nag fluffi| +10703|767433|29949|2|24|36009.60|0.09|0.01|R|F|1992-06-12|1992-04-26|1992-06-24|COLLECT COD|SHIP| evenly even, busy accounts| +10703|236745|49250|3|33|55497.09|0.00|0.07|A|F|1992-06-30|1992-05-28|1992-07-27|COLLECT COD|TRUCK| according| +10703|965686|28206|4|32|56052.48|0.08|0.03|A|F|1992-06-06|1992-05-08|1992-06-30|DELIVER IN PERSON|AIR|lly regular pains. furiously even| +10703|283967|46473|5|36|70234.20|0.02|0.02|A|F|1992-03-28|1992-05-28|1992-04-07|TAKE BACK RETURN|MAIL|refully. car| +10728|105965|5966|1|31|61099.76|0.07|0.05|N|O|1996-06-26|1996-05-11|1996-07-23|COLLECT COD|MAIL|ccording to the regular| +10728|948929|36484|2|26|51424.88|0.00|0.06|N|O|1996-03-26|1996-05-07|1996-04-13|COLLECT COD|SHIP|c pinto beans. regular instructions| +10728|646936|9449|3|12|22594.80|0.06|0.04|N|O|1996-04-30|1996-06-05|1996-05-05|NONE|FOB|mptotes sleep slyly after the final pinto b| +10729|689693|14720|1|14|23557.24|0.06|0.00|R|F|1993-05-22|1993-06-21|1993-06-08|DELIVER IN PERSON|RAIL|ecial, pending theodolites. carefully ironi| +10729|662386|12387|2|48|64720.80|0.07|0.03|A|F|1993-06-03|1993-05-03|1993-06-24|DELIVER IN PERSON|REG AIR|refully about the ste| +10729|719609|7152|3|25|40714.25|0.06|0.01|R|F|1993-07-06|1993-06-08|1993-07-30|TAKE BACK RETURN|MAIL|ets after the final theodolites are ca| +10729|451741|26760|4|30|50781.60|0.01|0.07|R|F|1993-05-29|1993-06-03|1993-06-20|TAKE BACK RETURN|RAIL|olphins along the carefully even requests x| +10729|396374|33896|5|7|10292.52|0.06|0.00|R|F|1993-06-10|1993-05-28|1993-07-08|NONE|REG AIR|tes. regular pinto beans b| +10730|626488|26489|1|35|49505.75|0.05|0.02|A|F|1993-08-11|1993-07-17|1993-08-13|NONE|AIR|its-- slyly even packages nag furio| +10730|375105|25106|2|29|34222.61|0.08|0.06|A|F|1993-06-05|1993-06-11|1993-06-13|NONE|TRUCK|cies affix ar| +10730|388464|38465|3|24|37258.80|0.00|0.01|A|F|1993-05-27|1993-06-17|1993-06-25|DELIVER IN PERSON|SHIP|inal foxes among the quickly expre| +10730|913365|38402|4|39|53754.48|0.10|0.00|A|F|1993-08-16|1993-07-14|1993-09-07|TAKE BACK RETURN|SHIP|. quickly regular orbits sleep. carefully r| +10730|916365|3920|5|7|9669.24|0.02|0.00|A|F|1993-08-15|1993-05-30|1993-08-25|DELIVER IN PERSON|FOB|efully express requests. furiously regula| +10730|345670|20683|6|23|39460.18|0.04|0.07|R|F|1993-07-31|1993-06-06|1993-08-22|NONE|RAIL|ual theodolites. quickly regular deposi| +10730|662024|49564|7|6|5915.94|0.09|0.00|A|F|1993-08-07|1993-07-07|1993-08-31|DELIVER IN PERSON|MAIL|kly ironic requests hin| +10731|622851|35364|1|40|70952.80|0.07|0.03|R|F|1993-03-02|1993-05-12|1993-03-19|COLLECT COD|TRUCK|refully final platelets wake abo| +10732|416295|16296|1|37|44816.99|0.03|0.04|A|F|1994-11-08|1995-01-04|1994-12-04|TAKE BACK RETURN|MAIL| the furiously bold | +10732|654625|42165|2|5|7897.95|0.07|0.07|A|F|1995-03-04|1995-01-27|1995-03-29|DELIVER IN PERSON|FOB|uests detect slyly accou| +10732|281042|18558|3|50|51151.50|0.04|0.06|R|F|1994-12-21|1994-12-26|1995-01-07|NONE|REG AIR|es. carefully ironic depo| +10732|460301|47829|4|48|60541.44|0.01|0.01|R|F|1995-02-19|1995-01-24|1995-02-21|NONE|AIR|ic sauternes x-ray never against the slyly | +10733|618551|31064|1|11|16164.72|0.01|0.05|A|F|1995-02-08|1995-03-17|1995-02-10|COLLECT COD|AIR|t the special, ruthless ac| +10734|964567|39606|1|8|13052.16|0.01|0.05|A|F|1993-10-11|1993-08-07|1993-11-06|COLLECT COD|SHIP|yly even req| +10734|477562|40072|2|44|67739.76|0.00|0.03|A|F|1993-09-21|1993-08-03|1993-09-25|COLLECT COD|RAIL|ts. quickly special ac| +10734|379084|29085|3|7|8141.49|0.02|0.05|R|F|1993-07-30|1993-09-01|1993-08-15|NONE|MAIL|ve blithely. carefully silent pinto| +10734|256259|18765|4|7|8506.68|0.03|0.02|A|F|1993-10-22|1993-09-13|1993-11-15|COLLECT COD|FOB| pending packages| +10734|936859|49378|5|49|92894.69|0.08|0.05|R|F|1993-07-10|1993-09-01|1993-07-16|TAKE BACK RETURN|TRUCK| bold deposits. carefully final pinto bea| +10735|989422|14461|1|24|36273.12|0.09|0.01|A|F|1993-07-26|1993-07-23|1993-08-15|TAKE BACK RETURN|REG AIR|ounts sleep blithely unusual, express acco| +10735|204512|42025|2|4|5666.00|0.03|0.08|A|F|1993-07-17|1993-08-12|1993-07-30|DELIVER IN PERSON|AIR|regular dugouts. carefu| +10735|218623|18624|3|29|44706.69|0.07|0.02|R|F|1993-09-15|1993-07-23|1993-10-05|NONE|TRUCK|ents nag: careful| +10760|260460|10461|1|9|12784.05|0.08|0.01|N|O|1996-06-13|1996-07-07|1996-07-09|TAKE BACK RETURN|FOB| blithely! quickly regular asymp| +10760|546597|21618|2|37|60812.09|0.08|0.06|N|O|1996-07-18|1996-07-21|1996-08-04|COLLECT COD|SHIP|usual deposi| +10760|655482|43022|3|25|35936.25|0.00|0.04|N|O|1996-08-07|1996-07-31|1996-08-17|COLLECT COD|TRUCK|ly regular platele| +10760|679315|4342|4|50|64714.00|0.07|0.00|N|O|1996-05-24|1996-07-14|1996-06-04|COLLECT COD|FOB|ly regular deposits.| +10760|239139|14148|5|3|3234.36|0.10|0.04|N|O|1996-08-13|1996-07-16|1996-09-01|DELIVER IN PERSON|TRUCK| quickly across the furi| +10760|203461|3462|6|26|35475.70|0.05|0.02|N|O|1996-07-17|1996-08-06|1996-07-25|TAKE BACK RETURN|REG AIR|. carefully unusual requests i| +10761|321098|33605|1|1|1119.08|0.02|0.02|R|F|1993-12-26|1994-01-16|1994-01-25|TAKE BACK RETURN|FOB|foxes cajole slyly regular fox| +10761|680108|5135|2|17|18497.19|0.02|0.06|R|F|1994-01-28|1993-11-21|1994-02-11|COLLECT COD|MAIL|gside of the quickly | +10762|297657|10163|1|27|44675.28|0.06|0.06|R|F|1994-01-09|1994-01-30|1994-01-26|DELIVER IN PERSON|RAIL|eep blithely. slyly bold frets poach dari| +10762|714360|39389|2|21|28860.93|0.01|0.08|R|F|1994-03-07|1994-02-16|1994-04-05|DELIVER IN PERSON|TRUCK|s accounts: ideas cajole.| +10762|238737|26250|3|31|51947.32|0.01|0.03|A|F|1994-02-22|1994-03-21|1994-03-02|NONE|REG AIR|al instructions. blithely bold theodo| +10762|444077|31602|4|21|21442.05|0.09|0.08|R|F|1994-01-24|1994-03-21|1994-02-02|TAKE BACK RETURN|AIR|y pending accounts afte| +10762|588040|13063|5|22|24816.44|0.08|0.01|R|F|1994-01-10|1994-03-21|1994-02-08|COLLECT COD|REG AIR|carefully unusual deposits are | +10762|183688|21198|6|40|70867.20|0.01|0.05|R|F|1994-01-18|1994-02-20|1994-01-27|TAKE BACK RETURN|REG AIR|along the unusual asymptotes. unusu| +10763|551409|13921|1|45|65717.10|0.01|0.06|N|O|1998-02-22|1998-01-29|1998-02-27|NONE|TRUCK|ainst the furiously regular reque| +10763|522734|22735|2|50|87835.50|0.01|0.00|N|O|1997-11-12|1997-12-09|1997-11-22|NONE|FOB|ar, even instructions mi| +10763|579039|29040|3|24|26832.24|0.06|0.04|N|O|1997-12-26|1998-01-04|1998-01-06|DELIVER IN PERSON|TRUCK|uses haggle| +10763|905598|30635|4|39|62538.45|0.00|0.04|N|O|1998-02-05|1997-12-07|1998-02-14|COLLECT COD|AIR|use blithely thin, even pac| +10763|368832|18833|5|32|60826.24|0.00|0.02|N|O|1997-12-04|1998-01-07|1997-12-10|DELIVER IN PERSON|AIR|. furiously regular depos| +10763|953606|28645|6|29|48127.24|0.01|0.03|N|O|1998-01-12|1998-01-08|1998-01-28|COLLECT COD|MAIL| the final, final | +10763|242098|42099|7|23|23921.84|0.03|0.01|N|O|1998-01-25|1998-01-26|1998-02-12|TAKE BACK RETURN|REG AIR|usly slyly silent t| +10764|939506|14543|1|36|55636.56|0.05|0.05|A|F|1992-11-11|1992-08-21|1992-12-02|DELIVER IN PERSON|RAIL| instructions| +10764|265530|15531|2|13|19441.76|0.00|0.02|R|F|1992-09-20|1992-08-23|1992-09-23|DELIVER IN PERSON|MAIL|nst the carefully f| +10764|762485|31|3|12|18569.40|0.00|0.03|R|F|1992-08-04|1992-09-05|1992-08-17|TAKE BACK RETURN|AIR|deposits are blithely carefully r| +10764|80272|42774|4|6|7513.62|0.00|0.05|R|F|1992-09-21|1992-10-10|1992-10-02|DELIVER IN PERSON|SHIP| slyly express requests. deposits | +10764|131392|43895|5|47|66899.33|0.01|0.02|A|F|1992-10-30|1992-10-11|1992-11-28|COLLECT COD|REG AIR|ns! carefully bold | +10765|750783|13299|1|48|88020.00|0.07|0.00|A|F|1992-10-12|1992-10-19|1992-10-20|NONE|REG AIR|usly pending deposits boos| +10766|239005|39006|1|18|16991.82|0.00|0.01|N|O|1996-09-30|1996-11-14|1996-10-18|TAKE BACK RETURN|RAIL|uiet instructions. furiously regular | +10766|947002|47003|2|4|4195.84|0.03|0.02|N|O|1996-09-12|1996-10-11|1996-09-28|DELIVER IN PERSON|MAIL|nal realms use | +10766|249062|36575|3|30|30331.50|0.10|0.03|N|O|1996-09-13|1996-10-07|1996-09-14|NONE|MAIL|gle carefully about the even packa| +10766|972629|47668|4|31|52748.98|0.00|0.01|N|O|1996-09-26|1996-11-23|1996-10-13|NONE|RAIL|late quickly among the ruthlessly iro| +10767|840112|40113|1|8|8416.56|0.02|0.05|N|O|1998-02-17|1998-04-13|1998-03-19|DELIVER IN PERSON|REG AIR|ckages are quickly above the car| +10767|757042|19558|2|8|8792.08|0.01|0.03|N|O|1998-04-06|1998-03-05|1998-04-22|TAKE BACK RETURN|SHIP|y. quickly final theodolites after the| +10767|593819|43820|3|14|26779.06|0.07|0.00|N|O|1998-03-30|1998-04-13|1998-04-07|DELIVER IN PERSON|MAIL|ully ruthless deposits boost blit| +10767|315364|2883|4|32|44139.20|0.10|0.04|N|O|1998-02-22|1998-03-03|1998-03-14|TAKE BACK RETURN|SHIP|pinto beans boost quickly according to th| +10767|312888|407|5|16|30413.92|0.07|0.04|N|O|1998-03-31|1998-03-13|1998-04-27|NONE|RAIL| accounts cajole al| +10767|707424|44967|6|10|14313.90|0.02|0.07|N|O|1998-02-09|1998-04-14|1998-03-09|NONE|AIR| across the furiously final deposits a| +10767|670312|7852|7|16|20516.48|0.01|0.07|N|O|1998-03-20|1998-03-03|1998-03-28|NONE|MAIL| alongside of the slyly even sauternes. | +10792|929994|5031|1|4|8095.80|0.05|0.07|N|O|1998-11-18|1998-10-12|1998-12-17|DELIVER IN PERSON|SHIP|d attainments wake bl| +10793|900106|37661|1|44|48666.64|0.09|0.06|A|F|1992-11-01|1992-09-30|1992-11-04|DELIVER IN PERSON|REG AIR|oxes. regular pinto beans haggle q| +10793|79041|16545|2|25|25501.00|0.07|0.07|R|F|1992-09-22|1992-11-08|1992-10-10|TAKE BACK RETURN|MAIL|boost furiously even requests-- express| +10793|441313|3822|3|12|15051.48|0.09|0.04|A|F|1992-12-01|1992-09-25|1992-12-22|NONE|FOB| multipliers. fluffily final | +10793|141528|16533|4|34|53363.68|0.09|0.08|R|F|1992-09-23|1992-10-28|1992-10-03|COLLECT COD|TRUCK|he pending packages wake slyly regular in| +10793|658494|8495|5|25|36311.50|0.02|0.04|A|F|1992-09-29|1992-10-29|1992-10-01|NONE|REG AIR|nusual instructi| +10793|291975|29491|6|41|80645.36|0.05|0.01|A|F|1992-09-09|1992-11-04|1992-09-19|TAKE BACK RETURN|TRUCK|s sleep blithely alon| +10793|222794|35299|7|48|82405.44|0.04|0.02|R|F|1992-11-29|1992-09-22|1992-12-03|NONE|FOB|ss somas. furiously special th| +10794|485777|35778|1|14|24678.50|0.07|0.08|A|F|1994-04-13|1994-06-04|1994-05-02|DELIVER IN PERSON|SHIP|iers nag foxes. accounts nag quick| +10794|450591|38119|2|46|70912.22|0.04|0.07|A|F|1994-05-30|1994-06-24|1994-06-24|COLLECT COD|MAIL|ackages haggle carefully among th| +10794|79408|29409|3|11|15261.40|0.04|0.05|R|F|1994-08-06|1994-05-19|1994-08-08|NONE|FOB|kly final sentiment| +10794|600541|25566|4|6|8649.06|0.04|0.05|R|F|1994-06-08|1994-06-29|1994-07-03|TAKE BACK RETURN|SHIP|inal, special dependen| +10794|276192|13708|5|17|19859.06|0.09|0.07|A|F|1994-07-21|1994-05-31|1994-08-03|DELIVER IN PERSON|SHIP|y regular pi| +10795|514361|1892|1|30|41260.20|0.00|0.05|N|O|1997-10-27|1997-09-30|1997-11-12|COLLECT COD|AIR|efully regular asymptotes. carefully f| +10795|862071|24589|2|36|37189.08|0.04|0.06|N|O|1997-09-24|1997-10-19|1997-09-27|COLLECT COD|REG AIR|ges. even, bold pinto beans integrate | +10796|981553|31554|1|44|71918.44|0.01|0.00|A|F|1995-01-10|1994-11-06|1995-01-19|NONE|FOB|l requests. furiously silent reques| +10797|938821|13858|1|29|53933.62|0.03|0.04|A|F|1992-03-28|1992-04-28|1992-04-04|TAKE BACK RETURN|MAIL|haggle after the express| +10797|753004|28035|2|39|41221.83|0.04|0.05|R|F|1992-06-22|1992-05-17|1992-07-19|DELIVER IN PERSON|REG AIR|ly regular asymptotes. blithely b| +10797|728429|28430|3|8|11659.12|0.10|0.02|R|F|1992-06-29|1992-04-10|1992-07-13|TAKE BACK RETURN|MAIL|lithely regular deposits. carefully bo| +10797|696166|33706|4|15|17431.95|0.08|0.08|A|F|1992-05-15|1992-05-08|1992-06-14|NONE|AIR|accounts are about the blithely regu| +10797|456534|6535|5|5|7452.55|0.05|0.06|R|F|1992-06-03|1992-05-09|1992-06-17|DELIVER IN PERSON|REG AIR| cajole sl| +10797|961066|11067|6|16|18032.32|0.07|0.04|A|F|1992-05-27|1992-06-03|1992-06-15|NONE|RAIL|ven dependencies cajole slyly slyly s| +10798|496689|34217|1|29|48884.14|0.02|0.00|R|F|1993-05-12|1993-05-19|1993-06-06|DELIVER IN PERSON|REG AIR| express frays. foxes thras| +10798|836409|11442|2|10|13453.60|0.10|0.00|A|F|1993-04-21|1993-03-24|1993-05-04|COLLECT COD|REG AIR|al deposits sleep slyly across the qu| +10799|940996|40997|1|20|40739.00|0.05|0.04|A|F|1993-05-28|1993-05-15|1993-06-12|COLLECT COD|REG AIR|d ideas haggle requests. dolphi| +10799|309544|22051|2|24|37284.72|0.05|0.03|R|F|1993-03-28|1993-05-01|1993-04-11|DELIVER IN PERSON|FOB|ly regular a| +10799|502267|14778|3|14|17769.36|0.10|0.03|R|F|1993-04-21|1993-05-17|1993-05-14|NONE|RAIL|otes cajole even | +10799|597846|35380|4|45|87471.90|0.08|0.01|R|F|1993-03-01|1993-05-17|1993-03-06|DELIVER IN PERSON|SHIP|s the ironic foxes. f| +10799|996991|9511|5|40|83518.00|0.00|0.00|R|F|1993-03-06|1993-05-08|1993-04-03|COLLECT COD|REG AIR| accounts. accounts integrate | +10824|311573|36586|1|44|69720.64|0.00|0.04|A|F|1992-07-18|1992-06-01|1992-08-01|DELIVER IN PERSON|REG AIR|aters around the blithely unusual escapa| +10824|591341|41342|2|49|70183.68|0.04|0.08|A|F|1992-05-30|1992-06-21|1992-06-26|NONE|RAIL|ar requests alo| +10824|663990|13991|3|39|76204.44|0.06|0.04|A|F|1992-05-30|1992-05-13|1992-06-14|NONE|REG AIR|sly furiously even packages. fina| +10824|675111|12651|4|24|26065.92|0.06|0.01|R|F|1992-06-06|1992-05-05|1992-06-27|DELIVER IN PERSON|RAIL|ironic packages | +10825|367804|42819|1|17|31820.43|0.06|0.07|N|O|1996-06-23|1996-06-06|1996-07-16|NONE|REG AIR|carefully regular requests n| +10825|666447|3987|2|46|65016.86|0.07|0.07|N|O|1996-06-13|1996-05-02|1996-06-25|COLLECT COD|MAIL|s. even, final requests breach blith| +10825|971825|9383|3|3|5690.34|0.08|0.08|N|O|1996-04-05|1996-04-20|1996-05-02|COLLECT COD|RAIL|alongside of the unusual deposits. regula| +10825|457655|32674|4|37|59667.31|0.02|0.01|N|O|1996-04-18|1996-04-22|1996-05-05|COLLECT COD|SHIP|osits wake slyly| +10825|801383|26416|5|41|52657.94|0.08|0.07|N|O|1996-04-16|1996-05-06|1996-05-14|NONE|FOB| packages. furi| +10826|336536|11549|1|38|59755.76|0.05|0.00|N|F|1995-06-01|1995-06-30|1995-06-23|COLLECT COD|SHIP|ts wake around the instructions. | +10826|158278|45788|2|32|42760.64|0.06|0.02|N|O|1995-08-24|1995-08-05|1995-09-05|NONE|AIR|te furiously carefully ironic theodolites| +10826|169059|6569|3|32|36097.60|0.07|0.01|N|O|1995-09-14|1995-08-16|1995-09-16|COLLECT COD|REG AIR| deposits cajole quick| +10826|367978|30486|4|46|94114.16|0.08|0.06|N|O|1995-09-22|1995-07-31|1995-09-30|DELIVER IN PERSON|FOB| final, bold packages. | +10827|875159|194|1|12|13609.32|0.00|0.07|R|F|1993-12-07|1993-12-14|1994-01-06|TAKE BACK RETURN|RAIL|posits. enticingly regular| +10827|782334|19880|2|8|11330.40|0.06|0.08|A|F|1993-12-03|1994-01-27|1993-12-27|DELIVER IN PERSON|SHIP|le quietly blithely even reque| +10828|334931|34932|1|13|25556.96|0.05|0.03|A|F|1994-04-11|1994-02-13|1994-04-27|COLLECT COD|FOB|he quickly unusual dep| +10829|221799|34304|1|19|32694.82|0.01|0.02|R|F|1995-03-07|1995-02-17|1995-03-27|DELIVER IN PERSON|MAIL|y final packages nag slyly| +10829|768034|43065|2|43|47386.00|0.04|0.08|R|F|1995-02-07|1995-03-02|1995-03-04|NONE|REG AIR|uests cajol| +10829|343632|18645|3|2|3351.24|0.06|0.03|A|F|1995-02-20|1995-01-20|1995-03-16|TAKE BACK RETURN|SHIP|ep. special, special accounts accordin| +10829|418379|18380|4|14|18162.90|0.01|0.05|R|F|1994-12-26|1995-01-26|1994-12-27|NONE|AIR|even dolphins wake qu| +10830|590638|28172|1|19|32843.59|0.06|0.08|N|O|1998-06-28|1998-08-25|1998-07-24|NONE|REG AIR|y ironic packages boost. carefully ironi| +10830|848818|36367|2|43|75971.11|0.02|0.08|N|O|1998-09-05|1998-08-10|1998-10-04|TAKE BACK RETURN|FOB|s wake! even foxes use | +10830|74787|12291|3|11|19379.58|0.07|0.08|N|O|1998-06-21|1998-07-15|1998-07-02|DELIVER IN PERSON|FOB|refully quick platelets. quickly regu| +10830|944370|44371|4|10|14143.30|0.06|0.01|N|O|1998-10-07|1998-07-16|1998-10-09|NONE|AIR| haggle boldly special foxes. unusual | +10830|15565|40566|5|25|37014.00|0.06|0.01|N|O|1998-08-11|1998-09-06|1998-09-06|COLLECT COD|RAIL|tes will boost across the exp| +10830|598561|23584|6|45|74679.30|0.10|0.00|N|O|1998-10-08|1998-07-31|1998-10-31|DELIVER IN PERSON|MAIL|ccounts. regu| +10831|197044|9548|1|20|22820.80|0.01|0.06|N|O|1996-03-06|1996-01-27|1996-03-29|TAKE BACK RETURN|REG AIR|sleep among the blithely final sauter| +10831|705628|43171|2|10|16335.90|0.06|0.00|N|O|1996-02-03|1996-01-31|1996-02-08|DELIVER IN PERSON|FOB|osits. carefully ironic ideas engage sly| +10831|487027|24555|3|30|30420.00|0.02|0.01|N|O|1995-12-26|1996-01-21|1996-01-05|NONE|REG AIR| silent acc| +10831|454712|42240|4|15|25000.35|0.00|0.03|N|O|1996-01-30|1996-02-02|1996-02-09|DELIVER IN PERSON|SHIP|counts. express, final excuses slee| +10831|328328|40835|5|26|35264.06|0.00|0.07|N|O|1995-11-29|1996-01-07|1995-12-26|COLLECT COD|REG AIR|efully ironic pinto beans. blithel| +10831|206851|6852|6|31|54493.04|0.02|0.04|N|O|1996-02-23|1995-12-22|1996-03-11|TAKE BACK RETURN|MAIL|symptotes nag quickly after the slyly ironi| +10856|956755|19275|1|42|76091.82|0.05|0.01|N|O|1998-07-30|1998-07-22|1998-08-20|TAKE BACK RETURN|TRUCK|eposits. slyly unusual foxes wak| +10856|170175|32679|2|37|46071.29|0.09|0.03|N|O|1998-08-13|1998-06-30|1998-08-26|COLLECT COD|REG AIR| regular requests ab| +10856|114707|14708|3|15|25825.50|0.08|0.05|N|O|1998-06-13|1998-08-07|1998-06-18|DELIVER IN PERSON|REG AIR|gular requests a| +10856|871207|21208|4|7|8247.12|0.01|0.02|N|O|1998-08-28|1998-07-13|1998-09-06|TAKE BACK RETURN|MAIL|blithely silent asymptotes sleep fluff| +10856|370856|45871|5|50|96342.00|0.04|0.02|N|O|1998-06-28|1998-07-19|1998-07-27|TAKE BACK RETURN|FOB|silent accounts above t| +10857|71162|21163|1|13|14731.08|0.09|0.01|N|O|1996-07-05|1996-08-22|1996-07-20|DELIVER IN PERSON|RAIL| express requests are above the special| +10858|567187|42210|1|17|21320.72|0.08|0.07|N|O|1996-02-29|1996-02-25|1996-03-08|DELIVER IN PERSON|TRUCK|symptotes. fluff| +10858|703478|15993|2|28|41480.32|0.09|0.03|N|O|1996-01-08|1996-04-04|1996-02-07|NONE|TRUCK|e carefully ironic foxes. blith| +10858|350090|25105|3|34|38762.72|0.10|0.06|N|O|1996-01-16|1996-03-10|1996-01-25|TAKE BACK RETURN|REG AIR|sual pinto beans a| +10858|947847|10366|4|32|60633.60|0.03|0.01|N|O|1996-02-17|1996-03-20|1996-03-09|TAKE BACK RETURN|TRUCK|uses. fluffily unusual packages hag| +10858|450392|37920|5|49|65776.13|0.08|0.03|N|O|1996-03-04|1996-03-12|1996-04-02|NONE|RAIL|ove the carefully ironic theodolite| +10858|734566|9595|6|13|20806.89|0.09|0.00|N|O|1996-01-15|1996-03-31|1996-01-24|COLLECT COD|REG AIR|r the furiously bold acc| +10859|917987|17988|1|42|84207.48|0.10|0.01|N|O|1997-10-25|1997-09-02|1997-11-18|NONE|TRUCK|e across the furiously ironic pinto beans--| +10859|605344|5345|2|45|56218.95|0.00|0.00|N|O|1997-09-15|1997-10-01|1997-09-24|DELIVER IN PERSON|MAIL| packages. even r| +10859|12705|12706|3|1|1617.70|0.10|0.06|N|O|1997-11-13|1997-09-23|1997-12-03|NONE|FOB|ave accounts. blithely fina| +10859|518349|43370|4|22|30081.04|0.10|0.08|N|O|1997-09-09|1997-08-25|1997-09-23|NONE|MAIL|bold deposits wake among the slyly bol| +10859|886948|49466|5|37|71591.30|0.05|0.02|N|O|1997-08-27|1997-09-02|1997-09-23|TAKE BACK RETURN|RAIL|ular instructions: sometime| +10859|929278|29279|6|40|52289.20|0.07|0.05|N|O|1997-11-19|1997-10-08|1997-12-03|NONE|TRUCK|t deposits. blithely ruthless pinto b| +10859|372525|47540|7|7|11182.57|0.01|0.06|N|O|1997-10-27|1997-09-17|1997-11-20|DELIVER IN PERSON|REG AIR|ss pinto beans use after the sly| +10860|18631|43632|1|11|17045.93|0.04|0.08|N|O|1996-10-07|1996-07-22|1996-10-12|NONE|TRUCK|y special dinos haggle f| +10860|128832|41335|2|47|87459.01|0.08|0.08|N|O|1996-09-15|1996-09-16|1996-09-16|DELIVER IN PERSON|RAIL|instructions wake slyly special | +10860|267816|5332|3|4|7135.20|0.09|0.06|N|O|1996-07-13|1996-08-22|1996-07-20|TAKE BACK RETURN|FOB|. carefully even packages i| +10861|831783|31784|1|28|48012.72|0.01|0.01|N|O|1997-04-18|1997-04-20|1997-04-29|COLLECT COD|TRUCK|y. carefully ironic pl| +10861|771549|34065|2|7|11343.57|0.08|0.05|N|O|1997-06-21|1997-06-07|1997-07-17|NONE|MAIL| quickly special requests | +10862|576981|2004|1|3|6173.88|0.02|0.01|N|O|1996-07-14|1996-06-29|1996-07-15|TAKE BACK RETURN|FOB| bold instructions sleep blithel| +10863|648089|23114|1|20|20741.00|0.06|0.03|N|O|1996-01-07|1996-01-04|1996-02-02|COLLECT COD|MAIL|epitaphs haggle furiously above the car| +10863|424597|49614|2|25|38039.25|0.09|0.06|N|O|1995-11-15|1996-01-24|1995-12-11|TAKE BACK RETURN|AIR|haggle slyly even request| +10863|200245|246|3|21|24049.83|0.04|0.01|N|O|1996-02-14|1995-12-04|1996-02-22|COLLECT COD|MAIL|ar requests wake blithely r| +10863|509663|9664|4|33|55197.12|0.07|0.05|N|O|1995-12-05|1995-12-05|1995-12-11|COLLECT COD|TRUCK|y express foxes. final foxe| +10863|897628|22663|5|34|55269.72|0.08|0.07|N|O|1996-01-06|1995-12-08|1996-01-08|COLLECT COD|RAIL|ly about the slyly fin| +10888|527095|2116|1|48|53859.36|0.01|0.03|R|F|1995-04-16|1995-05-21|1995-05-04|COLLECT COD|TRUCK|riously even accounts! slyly express deposi| +10888|875954|38472|2|12|23158.92|0.04|0.02|A|F|1995-03-27|1995-06-10|1995-04-15|TAKE BACK RETURN|TRUCK|s wake slyly abov| +10888|144380|19385|3|11|15668.18|0.09|0.08|R|F|1995-05-10|1995-05-04|1995-05-20|COLLECT COD|FOB|ackages wake fluffily in place of | +10889|926289|38808|1|34|44718.16|0.08|0.07|N|O|1998-11-21|1998-10-23|1998-12-02|COLLECT COD|TRUCK| carefully special ideas sleep. packages | +10889|125685|13192|2|31|53031.08|0.05|0.08|N|O|1998-08-08|1998-09-02|1998-09-01|NONE|REG AIR|ash slyly pen| +10889|374270|24271|3|2|2688.52|0.02|0.06|N|O|1998-07-31|1998-10-03|1998-08-05|TAKE BACK RETURN|RAIL|sits boost according to the blit| +10889|350486|487|4|20|30729.40|0.00|0.03|N|O|1998-11-01|1998-09-24|1998-11-23|NONE|TRUCK|slowly enticing accounts sublate. closel| +10889|608142|45679|5|17|17851.87|0.07|0.08|N|O|1998-10-11|1998-10-22|1998-10-13|TAKE BACK RETURN|SHIP|posits haggl| +10890|321924|46937|1|40|77836.40|0.06|0.05|N|O|1998-10-18|1998-10-02|1998-11-13|NONE|TRUCK|ely final pa| +10890|566396|3930|2|4|5849.48|0.00|0.02|N|O|1998-07-31|1998-09-08|1998-08-22|NONE|REG AIR|bout the ac| +10891|324983|49996|1|50|100398.50|0.10|0.03|A|F|1993-12-17|1994-01-10|1994-01-14|NONE|REG AIR|ithely final packages grow furiously| +10892|674257|36771|1|26|32011.72|0.09|0.02|R|F|1994-03-24|1994-05-18|1994-03-29|DELIVER IN PERSON|MAIL|oze quietly. deposits cajole fluffily fi| +10892|234485|9494|2|49|69554.03|0.09|0.06|R|F|1994-07-14|1994-06-11|1994-08-01|DELIVER IN PERSON|RAIL|furiously unusual ideas. carefully| +10892|983573|8612|3|50|82826.50|0.09|0.02|R|F|1994-06-28|1994-05-22|1994-07-17|DELIVER IN PERSON|SHIP|ges cajole care| +10893|216556|16557|1|43|63319.22|0.05|0.03|R|F|1993-07-17|1993-08-04|1993-08-12|COLLECT COD|AIR|e quickly bold | +10893|655208|17722|2|17|19773.89|0.09|0.01|A|F|1993-10-13|1993-09-06|1993-10-27|DELIVER IN PERSON|SHIP|e quickly pending accounts. c| +10893|75023|12527|3|49|48902.98|0.00|0.05|A|F|1993-09-11|1993-09-26|1993-09-14|DELIVER IN PERSON|MAIL|special the| +10893|900686|25723|4|44|74212.16|0.00|0.04|A|F|1993-09-30|1993-08-25|1993-10-07|COLLECT COD|RAIL| pinto beans ha| +10893|814387|1936|5|41|53354.94|0.00|0.08|A|F|1993-09-23|1993-09-07|1993-10-21|NONE|MAIL| packages mold carefully even requests. sly| +10894|895995|8513|1|31|61719.45|0.05|0.01|N|O|1997-05-03|1997-06-30|1997-05-20|COLLECT COD|SHIP|aggle. furiously unusual ideas was. ironic,| +10894|982868|20426|2|3|5852.46|0.08|0.06|N|O|1997-05-01|1997-06-04|1997-05-10|DELIVER IN PERSON|SHIP|; always ironic reque| +10894|58014|45518|3|35|34020.35|0.02|0.08|N|O|1997-04-26|1997-06-28|1997-05-25|TAKE BACK RETURN|TRUCK|l ideas. slyly unusual epitaphs wak| +10894|36600|36601|4|3|4609.80|0.02|0.06|N|O|1997-04-11|1997-05-04|1997-05-05|COLLECT COD|TRUCK|among the fl| +10894|133739|21246|5|40|70909.20|0.06|0.01|N|O|1997-07-06|1997-06-28|1997-08-01|COLLECT COD|RAIL|blithely special dependencies are blit| +10894|747371|34914|6|22|31203.48|0.05|0.01|N|O|1997-05-24|1997-06-19|1997-05-25|COLLECT COD|FOB|theodolites nag furiousl| +10894|48888|11389|7|34|62453.92|0.02|0.08|N|O|1997-05-25|1997-06-03|1997-06-07|NONE|REG AIR|, bold requests. regular accou| +10895|646415|8928|1|20|27227.60|0.03|0.01|N|F|1995-05-27|1995-03-03|1995-06-20|DELIVER IN PERSON|SHIP| final foxes sleep. furiously even ac| +10895|293253|43254|2|6|7477.44|0.06|0.05|R|F|1995-05-29|1995-04-02|1995-06-02|DELIVER IN PERSON|SHIP|riously express ideas. slyly unusual d| +10895|696872|46873|3|29|54196.36|0.03|0.05|R|F|1995-03-21|1995-03-02|1995-03-22|COLLECT COD|RAIL|ronic deposits. accounts run quickly | +10895|315800|15801|4|45|81710.55|0.01|0.01|A|F|1995-02-13|1995-03-20|1995-03-11|TAKE BACK RETURN|REG AIR|beans. close accounts grow | +10920|900190|191|1|11|13091.65|0.10|0.02|R|F|1994-07-17|1994-08-01|1994-07-23|NONE|REG AIR|s. permanent| +10920|492836|30364|2|42|76810.02|0.04|0.01|R|F|1994-08-29|1994-08-30|1994-09-15|NONE|REG AIR| wake warthogs. regular, ironic| +10920|85052|35053|3|1|1037.05|0.06|0.01|R|F|1994-08-09|1994-08-12|1994-09-01|TAKE BACK RETURN|SHIP|nusual ideas affix care| +10920|464956|14957|4|37|71074.41|0.07|0.03|R|F|1994-06-13|1994-07-11|1994-06-16|TAKE BACK RETURN|AIR|ding accoun| +10920|511575|49106|5|26|41250.30|0.07|0.02|R|F|1994-07-18|1994-08-22|1994-08-01|TAKE BACK RETURN|MAIL|nstructions wake among the slyly ironic| +10921|860473|35508|1|8|11467.44|0.02|0.02|R|F|1994-01-13|1994-03-15|1994-02-02|DELIVER IN PERSON|MAIL| requests | +10921|967370|4928|2|39|56055.87|0.01|0.07|A|F|1994-03-03|1994-03-23|1994-04-01|DELIVER IN PERSON|SHIP|rts haggle quickly ironic id| +10921|578640|16174|3|15|25779.30|0.07|0.06|A|F|1994-02-09|1994-01-29|1994-02-26|NONE|REG AIR|e! regular, final dependencie| +10921|198728|48729|4|25|45668.00|0.05|0.04|R|F|1994-04-15|1994-03-02|1994-05-06|COLLECT COD|RAIL|ong the quickly| +10921|8981|33982|5|4|7559.92|0.01|0.04|R|F|1994-02-10|1994-02-11|1994-03-11|COLLECT COD|REG AIR| pending instructions nag. bold, iro| +10922|793268|5784|1|40|54449.20|0.07|0.03|R|F|1992-06-09|1992-05-05|1992-06-23|NONE|RAIL|l packages. carefully regular requests gr| +10922|439133|1642|2|8|8576.88|0.03|0.03|R|F|1992-03-27|1992-04-25|1992-04-26|TAKE BACK RETURN|RAIL|press deposits wake | +10922|502263|39794|3|32|40487.68|0.00|0.03|R|F|1992-04-01|1992-06-21|1992-04-19|COLLECT COD|AIR|fully ironic acc| +10922|530234|30235|4|35|44247.35|0.08|0.00|A|F|1992-06-26|1992-06-11|1992-07-16|DELIVER IN PERSON|AIR|to the blithely unusual foxes. | +10922|642040|17065|5|19|18658.19|0.04|0.07|R|F|1992-04-29|1992-06-10|1992-05-22|NONE|SHIP|e the quietly close | +10922|750442|12958|6|17|25370.97|0.06|0.02|A|F|1992-04-12|1992-06-16|1992-05-06|TAKE BACK RETURN|TRUCK|fully pending packages caj| +10922|672324|47351|7|31|40184.99|0.03|0.07|R|F|1992-03-29|1992-06-06|1992-04-19|NONE|SHIP|lites detect slyly. ca| +10923|735409|47924|1|42|60663.54|0.06|0.02|N|O|1996-03-15|1996-02-10|1996-04-07|COLLECT COD|FOB|ending instructions. | +10924|129765|17272|1|9|16152.84|0.08|0.06|N|O|1995-10-15|1995-08-28|1995-11-10|NONE|MAIL|gular account| +10924|956822|44380|2|48|90181.44|0.05|0.08|N|O|1995-09-14|1995-07-29|1995-09-25|COLLECT COD|RAIL|ckages cajole even, exp| +10924|303362|15869|3|10|13653.50|0.00|0.05|N|O|1995-08-17|1995-08-19|1995-09-08|NONE|AIR|he slyly bold fox| +10925|8729|33730|1|32|52407.04|0.00|0.02|N|O|1997-07-14|1997-09-24|1997-07-31|COLLECT COD|TRUCK|ar requests. even, final p| +10925|708188|20703|2|26|31099.90|0.04|0.00|N|O|1997-10-28|1997-08-18|1997-11-09|NONE|AIR|uick requests affix blithely. furio| +10925|507726|7727|3|48|83217.60|0.05|0.00|N|O|1997-07-12|1997-08-25|1997-07-29|TAKE BACK RETURN|SHIP|gle carefully. furiously ironic forges | +10925|338516|38517|4|42|65289.00|0.06|0.02|N|O|1997-08-19|1997-09-26|1997-08-29|DELIVER IN PERSON|AIR|accounts. carefully pendi| +10925|423454|10979|5|13|17906.59|0.03|0.07|N|O|1997-10-09|1997-09-08|1997-10-19|COLLECT COD|AIR|special deposits sleep ruthless| +10925|989169|26727|6|15|18871.80|0.08|0.08|N|O|1997-09-20|1997-09-18|1997-10-01|TAKE BACK RETURN|RAIL|lithely silent deposits haggle fluffi| +10925|962619|12620|7|36|60536.52|0.05|0.06|N|O|1997-11-04|1997-09-25|1997-11-07|NONE|RAIL|leep. slyly| +10926|737449|49964|1|13|19323.33|0.00|0.05|N|O|1996-08-24|1996-07-14|1996-09-10|DELIVER IN PERSON|SHIP|lent asymptotes. dolphins haggle. slyly ex| +10926|297642|10148|2|8|13117.04|0.07|0.03|N|O|1996-09-07|1996-06-26|1996-10-03|TAKE BACK RETURN|FOB|e carefully? dogg| +10926|467078|29588|3|5|5225.25|0.00|0.07|N|O|1996-09-09|1996-06-28|1996-09-29|TAKE BACK RETURN|AIR|nusual pinto beans about the furiously even| +10926|170783|8293|4|17|31514.26|0.05|0.07|N|O|1996-05-26|1996-07-07|1996-05-31|TAKE BACK RETURN|AIR|ual platelets. fluffily unusual reques| +10927|3519|16020|1|44|62590.44|0.00|0.06|A|F|1992-08-27|1992-06-28|1992-09-19|COLLECT COD|FOB|sly busily ironic warhorses. carefully| +10927|129715|29716|2|26|45362.46|0.09|0.03|R|F|1992-08-10|1992-08-05|1992-09-06|DELIVER IN PERSON|SHIP|haggle furiously. furiously ironic ideas u| +10927|113140|25643|3|9|10378.26|0.08|0.00|A|F|1992-06-17|1992-08-04|1992-07-08|NONE|REG AIR|dolites. fluffily regular | +10927|529801|29802|4|17|31123.26|0.00|0.01|A|F|1992-06-07|1992-08-13|1992-06-17|DELIVER IN PERSON|REG AIR| always final accounts. blithely regula| +10952|61023|11024|1|18|17712.36|0.10|0.02|N|O|1995-12-05|1995-09-27|1995-12-09|NONE|MAIL|sits nag busily across the quickly regular | +10952|599102|49103|2|40|48043.20|0.09|0.05|N|O|1995-10-19|1995-11-20|1995-10-24|TAKE BACK RETURN|REG AIR|iously final pinto beans. furiously ex| +10952|91710|4212|3|12|20420.52|0.02|0.07|N|O|1995-10-14|1995-11-12|1995-11-12|DELIVER IN PERSON|AIR| integrate blithely carefully exp| +10952|355177|17685|4|19|23411.04|0.05|0.03|N|O|1995-09-26|1995-11-02|1995-10-15|DELIVER IN PERSON|FOB|ns wake carefull| +10952|444333|19350|5|32|40873.92|0.02|0.05|N|O|1995-12-05|1995-10-13|1995-12-20|TAKE BACK RETURN|REG AIR|ets. slyly regular packag| +10952|899501|12019|6|31|46514.26|0.02|0.08|N|O|1995-11-16|1995-11-13|1995-11-26|COLLECT COD|MAIL|s sleep slyly after t| +10953|898309|48310|1|31|40525.06|0.10|0.02|N|O|1997-08-31|1997-08-24|1997-09-19|DELIVER IN PERSON|FOB| final foxes are slyly bold, thin dolph| +10953|863934|1486|2|6|11387.34|0.05|0.04|N|O|1997-08-03|1997-10-10|1997-08-17|TAKE BACK RETURN|SHIP|lyly silent theodolites after the furio| +10954|276850|1861|1|44|80380.96|0.07|0.04|R|F|1993-11-08|1993-09-26|1993-12-08|DELIVER IN PERSON|AIR|e. quickly express courts boost flu| +10954|15472|40473|2|3|4162.41|0.04|0.08|A|F|1993-10-30|1993-10-14|1993-11-18|TAKE BACK RETURN|REG AIR|thy instruc| +10954|31323|43824|3|18|22577.76|0.06|0.04|R|F|1993-11-19|1993-10-02|1993-11-28|COLLECT COD|FOB|y final, even packages. bold deposits su| +10954|431040|43549|4|7|6797.14|0.08|0.00|R|F|1993-10-21|1993-10-09|1993-11-17|DELIVER IN PERSON|SHIP|ages hang s| +10954|475669|13197|5|44|72364.16|0.06|0.03|A|F|1993-10-25|1993-11-02|1993-11-22|DELIVER IN PERSON|RAIL| excuses are final, | +10955|658690|46230|1|17|28027.22|0.08|0.01|A|F|1994-11-04|1994-12-06|1994-11-11|NONE|TRUCK|ckly final r| +10955|596887|21910|2|7|13887.02|0.04|0.08|A|F|1994-11-03|1994-12-27|1994-11-21|COLLECT COD|SHIP|lithely across the carefully expre| +10956|229683|29684|1|12|19352.04|0.07|0.06|N|O|1997-01-21|1996-12-27|1997-01-24|COLLECT COD|TRUCK|ake. ironic requests aff| +10957|79453|29454|1|21|30081.45|0.08|0.07|R|F|1994-04-13|1994-02-11|1994-04-25|NONE|TRUCK|blithely regular a| +10957|355996|18504|2|15|30779.70|0.02|0.00|R|F|1994-01-14|1994-02-08|1994-01-19|NONE|RAIL|ggle. platelets play fluffily | +10957|224269|36774|3|24|28638.00|0.02|0.05|R|F|1993-12-19|1994-03-07|1994-01-09|TAKE BACK RETURN|AIR|oys sleep furiously abo| +10957|272311|22312|4|11|14116.30|0.10|0.08|A|F|1994-03-27|1994-01-20|1994-04-12|DELIVER IN PERSON|SHIP|aringly ironi| +10957|728681|28682|5|12|20515.80|0.07|0.04|R|F|1994-01-01|1994-01-20|1994-01-02|NONE|MAIL|osits! instructions are. blithely | +10957|937487|6|6|16|24391.04|0.09|0.03|A|F|1994-02-17|1994-02-07|1994-02-18|NONE|REG AIR|s are furiously. q| +10958|886508|11543|1|40|59778.40|0.03|0.01|R|F|1992-06-12|1992-05-04|1992-06-23|DELIVER IN PERSON|FOB| among the blithely express pinto beans wak| +10958|524273|11804|2|5|6486.25|0.05|0.02|R|F|1992-05-20|1992-05-07|1992-05-24|DELIVER IN PERSON|TRUCK|eans. bold instructions c| +10958|447358|9867|3|12|15663.96|0.09|0.05|R|F|1992-05-13|1992-03-28|1992-06-09|NONE|TRUCK|eodolites. | +10958|731378|43893|4|43|60601.62|0.04|0.07|A|F|1992-04-21|1992-04-19|1992-05-14|COLLECT COD|RAIL|nusual asymptotes. b| +10958|261361|23867|5|22|29091.70|0.06|0.02|A|F|1992-03-10|1992-03-26|1992-03-22|DELIVER IN PERSON|FOB|final instr| +10959|702015|14530|1|45|45764.10|0.10|0.06|N|O|1997-11-21|1997-12-23|1997-12-16|TAKE BACK RETURN|FOB| carefully. even, bold inst| +10959|753478|15994|2|22|33691.68|0.10|0.01|N|O|1997-11-16|1997-12-29|1997-11-30|TAKE BACK RETURN|REG AIR|s use carefully. furiously bold accounts | +10959|697262|22289|3|36|45332.28|0.03|0.05|N|O|1998-02-17|1998-01-03|1998-03-17|NONE|SHIP|ounts. blithe| +10959|866667|29185|4|26|42474.12|0.03|0.05|N|O|1997-12-05|1997-12-16|1997-12-13|DELIVER IN PERSON|RAIL|ey players wake fluffily qui| +10959|62409|24911|5|50|68570.00|0.10|0.00|N|O|1998-01-01|1998-01-15|1998-01-14|TAKE BACK RETURN|SHIP|urts. carefully i| +10984|397085|47086|1|42|49646.94|0.05|0.02|N|O|1996-02-27|1996-03-27|1996-02-28|NONE|FOB|quests. iro| +10984|805772|30805|2|6|10066.38|0.01|0.00|N|O|1996-05-14|1996-04-29|1996-06-08|NONE|SHIP|unts above the slyly bold foxe| +10984|604939|29964|3|8|14751.20|0.04|0.04|N|O|1996-02-19|1996-05-02|1996-03-01|DELIVER IN PERSON|TRUCK|requests. regular de| +10985|349304|49305|1|27|36538.83|0.02|0.06|R|F|1995-05-06|1995-04-21|1995-06-05|TAKE BACK RETURN|FOB|ver final deposits detect | +10985|736200|48715|2|5|6180.85|0.09|0.05|A|F|1995-03-25|1995-03-16|1995-04-15|NONE|TRUCK|ly bold requests. pla| +10985|299455|11961|3|32|46542.08|0.10|0.05|A|F|1995-04-13|1995-03-09|1995-05-04|NONE|FOB|s accounts. furiously eve| +10985|923801|48838|4|33|60217.08|0.06|0.04|R|F|1995-03-11|1995-04-30|1995-03-28|NONE|FOB|s sleep carefully slyly re| +10985|313307|38320|5|40|52811.60|0.03|0.02|R|F|1995-03-01|1995-04-07|1995-03-29|DELIVER IN PERSON|MAIL|g deposits. pending courts along the | +10986|278341|15857|1|12|15831.96|0.05|0.03|N|O|1995-10-21|1995-10-20|1995-11-08|DELIVER IN PERSON|SHIP|ites at the brave pinto b| +10987|295468|45469|1|9|13171.05|0.03|0.05|N|O|1996-06-24|1996-04-26|1996-07-09|TAKE BACK RETURN|REG AIR| slyly express foxes. carefully bold reques| +10987|915617|28136|2|22|35916.54|0.02|0.02|N|O|1996-06-26|1996-05-14|1996-07-23|TAKE BACK RETURN|MAIL|ts. courts| +10987|764969|40000|3|19|38644.67|0.03|0.00|N|O|1996-05-03|1996-05-20|1996-05-14|TAKE BACK RETURN|FOB| pending accounts. furiously ironi| +10988|846787|46788|1|5|8668.70|0.06|0.07|N|O|1995-06-28|1995-06-18|1995-07-23|NONE|RAIL|g dolphins are bl| +10988|941408|3927|2|27|39132.72|0.00|0.05|N|F|1995-06-06|1995-06-27|1995-06-25|TAKE BACK RETURN|TRUCK|refully ironic d| +10988|242807|30320|3|28|48994.12|0.03|0.06|A|F|1995-05-16|1995-08-04|1995-06-14|COLLECT COD|SHIP| final decoys haggle. quic| +10988|855716|30751|4|15|25075.05|0.09|0.05|N|O|1995-08-11|1995-07-05|1995-08-30|NONE|REG AIR| are quickly iro| +10989|609594|9595|1|42|63149.52|0.06|0.04|R|F|1994-06-24|1994-05-02|1994-07-01|NONE|AIR|ctions sleep carefully careful fox| +10989|431408|6425|2|16|21430.08|0.04|0.07|A|F|1994-04-19|1994-06-09|1994-05-01|COLLECT COD|MAIL|onic requests boost quickly silent| +10989|661044|36071|3|46|46230.46|0.08|0.00|R|F|1994-06-22|1994-04-29|1994-06-24|TAKE BACK RETURN|AIR|ions against the bold,| +10990|787368|12399|1|2|2910.66|0.09|0.05|A|F|1994-04-08|1994-04-17|1994-04-19|TAKE BACK RETURN|REG AIR|slowly slyly bo| +10990|281938|44444|2|13|24958.96|0.05|0.07|R|F|1994-06-14|1994-05-02|1994-07-12|DELIVER IN PERSON|FOB|ions acros| +10990|527009|14540|3|10|10359.80|0.10|0.03|A|F|1994-05-05|1994-05-12|1994-05-12|NONE|SHIP|. quickly pending accounts sleep. | +10990|427598|40107|4|8|12204.56|0.01|0.03|R|F|1994-03-08|1994-05-06|1994-04-06|COLLECT COD|RAIL|eodolites. doggedly pending accounts integr| +10990|629768|4793|5|12|20372.76|0.04|0.00|R|F|1994-06-01|1994-03-22|1994-06-03|NONE|SHIP|he unusual theodolites. regular deposits w| +10990|509075|46606|6|37|40109.85|0.03|0.06|A|F|1994-04-24|1994-05-15|1994-05-02|NONE|SHIP|en ideas breach. fluf| +10990|15405|40406|7|18|23767.20|0.04|0.05|R|F|1994-06-11|1994-05-01|1994-07-02|NONE|FOB|dependencies are blithely. express| +10991|901524|26561|1|3|4576.44|0.02|0.02|A|F|1993-02-01|1992-11-14|1993-02-03|DELIVER IN PERSON|FOB|fily. unusual account| +10991|899019|11537|2|10|10179.70|0.00|0.01|A|F|1992-12-28|1992-11-11|1993-01-20|NONE|REG AIR|ess grouches. final asy| +10991|802567|27600|3|30|44085.60|0.06|0.00|A|F|1992-11-02|1992-11-20|1992-11-28|DELIVER IN PERSON|MAIL|s are. slyly final pinto beans cajole bra| +10991|742316|17345|4|14|19015.92|0.05|0.00|A|F|1992-10-06|1992-12-06|1992-10-21|NONE|TRUCK|sits sleep car| +10991|102110|14613|5|47|52269.17|0.04|0.02|A|F|1992-12-22|1992-12-11|1993-01-15|TAKE BACK RETURN|REG AIR|y express accounts sleep slyly. fluffily sp| +10991|148470|10973|6|40|60738.80|0.00|0.03|A|F|1992-11-13|1993-01-02|1992-12-09|TAKE BACK RETURN|AIR|close deposits. dep| +10991|330179|30180|7|41|49575.56|0.10|0.08|R|F|1993-01-02|1992-12-14|1993-01-25|DELIVER IN PERSON|MAIL| the bold deposits use bravel| +11016|315635|15636|1|50|82531.00|0.08|0.01|A|F|1993-02-16|1993-02-01|1993-03-07|NONE|TRUCK|ickly. ideas are furiously.| +11016|875075|110|2|30|31500.90|0.02|0.05|A|F|1993-04-20|1993-02-21|1993-05-12|TAKE BACK RETURN|SHIP|. carefully fina| +11016|372578|22579|3|3|4951.68|0.02|0.05|R|F|1993-04-18|1993-03-20|1993-05-03|DELIVER IN PERSON|RAIL|s; unusual, bold packages boost | +11016|902753|2754|4|49|86029.79|0.04|0.07|R|F|1993-03-02|1993-03-03|1993-03-25|DELIVER IN PERSON|RAIL|nic theodolites ar| +11016|558145|20657|5|40|48124.80|0.04|0.04|A|F|1992-12-24|1993-02-15|1993-01-18|NONE|TRUCK|inst the thinly express requests. s| +11017|599646|49647|1|35|61096.70|0.06|0.04|A|F|1994-02-21|1993-12-17|1994-02-28|NONE|REG AIR|latelets. ironic, regula| +11017|235257|47762|2|14|16691.36|0.02|0.04|R|F|1994-02-11|1994-01-17|1994-02-16|NONE|REG AIR|along the ironic realms.| +11017|953064|15584|3|25|27925.50|0.09|0.07|R|F|1994-02-16|1994-02-10|1994-03-03|NONE|AIR|he blithely fluffy ideas! carefully unus| +11018|89058|39059|1|18|18846.90|0.06|0.03|A|F|1993-11-25|1993-09-26|1993-12-25|COLLECT COD|FOB| even accounts cajole blithely pend| +11019|612201|24714|1|30|33395.10|0.03|0.07|N|O|1998-06-21|1998-04-18|1998-06-30|DELIVER IN PERSON|FOB|ccounts cajole| +11019|259545|34556|2|11|16549.83|0.03|0.00|N|O|1998-03-22|1998-04-18|1998-04-10|DELIVER IN PERSON|REG AIR|nal frets run | +11019|166913|41920|3|36|71276.76|0.01|0.00|N|O|1998-04-10|1998-05-11|1998-04-24|COLLECT COD|FOB|s. express accounts detec| +11019|301086|38605|4|34|36960.38|0.02|0.05|N|O|1998-05-04|1998-05-23|1998-05-28|TAKE BACK RETURN|FOB| to the blithely special theodolites. sly| +11019|349011|24024|5|45|47700.00|0.04|0.06|N|O|1998-05-21|1998-05-16|1998-06-05|NONE|SHIP|iously. blithely fina| +11020|460846|48374|1|5|9034.10|0.00|0.06|A|F|1995-01-07|1995-02-01|1995-01-15|COLLECT COD|SHIP|riously stealth| +11020|428284|3301|2|25|30306.50|0.09|0.00|A|F|1995-03-02|1995-02-11|1995-03-24|TAKE BACK RETURN|FOB|refully regular instructions are f| +11020|157478|44988|3|11|16890.17|0.08|0.02|A|F|1995-01-18|1995-02-23|1995-02-02|DELIVER IN PERSON|SHIP|the excuses. slyly even hockey players| +11020|726440|1469|4|11|16130.51|0.05|0.00|A|F|1995-04-11|1995-02-24|1995-04-15|NONE|REG AIR|ly after the ideas. dolphins wa| +11020|273836|48847|5|48|86871.36|0.03|0.08|R|F|1995-01-02|1995-01-19|1995-01-18|TAKE BACK RETURN|RAIL|al packages along t| +11020|357638|32653|6|34|57651.08|0.00|0.08|R|F|1995-01-10|1995-01-28|1995-01-12|NONE|FOB|uests. ironic, final packages hag| +11021|794804|32350|1|16|30380.32|0.10|0.06|N|O|1996-06-18|1996-05-09|1996-06-28|DELIVER IN PERSON|FOB|its. ironic| +11021|262966|482|2|17|32792.15|0.00|0.02|N|O|1996-06-09|1996-05-12|1996-06-15|DELIVER IN PERSON|FOB|uriously final packages. slyly final| +11021|667256|29770|3|31|37919.82|0.01|0.05|N|O|1996-04-17|1996-04-19|1996-04-28|COLLECT COD|AIR|e blithely among the furio| +11021|562112|24624|4|15|17611.35|0.04|0.00|N|O|1996-05-31|1996-05-07|1996-06-18|TAKE BACK RETURN|MAIL|ke furiously alongside o| +11022|821758|34275|1|1|1679.71|0.07|0.03|N|O|1996-06-08|1996-05-15|1996-06-24|TAKE BACK RETURN|AIR|use busily. f| +11022|270656|20657|2|44|71572.16|0.05|0.07|N|O|1996-03-23|1996-05-09|1996-04-09|TAKE BACK RETURN|AIR|y unusual deposits. s| +11022|911174|23693|3|41|48590.33|0.09|0.05|N|O|1996-03-14|1996-05-20|1996-03-31|NONE|SHIP| the furiously silent platele| +11022|99418|49419|4|5|7087.05|0.05|0.01|N|O|1996-06-09|1996-05-20|1996-06-17|COLLECT COD|SHIP|sts. requests are. carefully express| +11022|915006|15007|5|38|38796.48|0.06|0.08|N|O|1996-04-11|1996-06-04|1996-04-27|COLLECT COD|SHIP|even reques| +11022|504458|16969|6|10|14624.30|0.07|0.08|N|O|1996-04-21|1996-04-15|1996-04-26|NONE|MAIL|gular ideas detect sly| +11023|23657|48658|1|1|1580.65|0.09|0.00|R|F|1994-06-20|1994-05-22|1994-06-23|TAKE BACK RETURN|AIR|nts. even, thin ideas along th| +11023|593584|6096|2|49|82200.44|0.05|0.08|A|F|1994-04-15|1994-05-28|1994-05-02|TAKE BACK RETURN|REG AIR|pending deposits. blithe| +11023|353390|40912|3|11|15877.18|0.07|0.07|R|F|1994-07-25|1994-06-06|1994-08-16|DELIVER IN PERSON|TRUCK|special pinto beans. quickly even requests | +11023|412246|37263|4|33|38221.26|0.05|0.05|A|F|1994-06-08|1994-06-28|1994-06-25|COLLECT COD|SHIP|ess ideas. regular foxes nag slyly at | +11023|602748|27773|5|35|57774.85|0.08|0.05|R|F|1994-07-04|1994-05-24|1994-07-17|NONE|RAIL|ound the bold deposits. dependencies| +11048|807649|7650|1|11|17122.60|0.04|0.07|N|O|1995-07-17|1995-07-12|1995-07-24|DELIVER IN PERSON|REG AIR|avely unusu| +11048|142484|42485|2|24|36635.52|0.10|0.02|N|O|1995-08-07|1995-07-30|1995-08-10|DELIVER IN PERSON|RAIL|thely regular notornis wake quickly a| +11049|168018|43025|1|23|24978.23|0.04|0.01|R|F|1992-06-13|1992-04-27|1992-07-03|DELIVER IN PERSON|TRUCK|carefully regular deposits. qu| +11049|863512|13513|2|12|17705.64|0.03|0.07|R|F|1992-04-07|1992-05-17|1992-04-30|TAKE BACK RETURN|AIR|old accounts haggle. regular| +11050|637323|37324|1|21|26466.09|0.08|0.06|R|F|1995-03-04|1995-03-15|1995-03-16|TAKE BACK RETURN|RAIL|ss the blithely fin| +11050|484614|22142|2|7|11190.13|0.08|0.00|R|F|1995-03-01|1995-02-07|1995-03-29|TAKE BACK RETURN|REG AIR|fully. furiously express requests are caref| +11050|903271|15790|3|35|44598.05|0.04|0.03|A|F|1995-02-28|1995-02-23|1995-03-20|TAKE BACK RETURN|MAIL| furiously across the unusu| +11050|274372|11888|4|40|53854.40|0.06|0.07|R|F|1995-01-08|1995-02-07|1995-01-29|TAKE BACK RETURN|MAIL|gular foxes cajole carefull| +11050|368904|31412|5|6|11837.34|0.03|0.06|A|F|1995-03-29|1995-03-25|1995-04-19|TAKE BACK RETURN|RAIL|. foxes haggle slyly | +11050|157747|45257|6|7|12633.18|0.08|0.06|A|F|1995-04-16|1995-03-11|1995-04-19|DELIVER IN PERSON|RAIL| fluffily even deposits. blit| +11051|107563|45070|1|30|47116.80|0.02|0.06|A|F|1994-01-26|1994-03-02|1994-02-21|NONE|MAIL|cross the | +11051|798878|36424|2|39|77096.76|0.05|0.02|A|F|1994-01-31|1994-04-13|1994-02-26|TAKE BACK RETURN|REG AIR|ng theodolites. furiously bold r| +11051|731332|18875|3|24|32719.20|0.00|0.01|A|F|1994-04-19|1994-02-22|1994-05-06|NONE|TRUCK|e blithely around the furio| +11051|483803|33804|4|35|62537.30|0.05|0.05|A|F|1994-04-27|1994-04-20|1994-05-14|DELIVER IN PERSON|MAIL|le carefully. bold, regular ideas| +11051|274909|49920|5|28|52748.92|0.02|0.05|R|F|1994-02-01|1994-03-21|1994-02-16|COLLECT COD|MAIL|usly final | +11051|393905|18920|6|40|79955.60|0.03|0.07|A|F|1994-03-05|1994-04-02|1994-03-19|NONE|SHIP|fully ironic instructions doubt ca| +11052|795674|45675|1|8|14157.12|0.01|0.08|N|O|1996-12-10|1996-11-17|1997-01-01|NONE|MAIL|ndencies cajole careful| +11052|883141|8176|2|9|10116.90|0.07|0.08|N|O|1996-10-14|1996-11-11|1996-11-09|COLLECT COD|MAIL|cial foxes. blithely regular deposits ha| +11053|269791|32297|1|40|70431.20|0.06|0.01|N|O|1997-06-12|1997-04-11|1997-06-26|TAKE BACK RETURN|MAIL|s. express packages wake slyly.| +11053|366838|4360|2|38|72383.16|0.09|0.01|N|O|1997-03-22|1997-05-17|1997-04-11|COLLECT COD|TRUCK|ts are quickly final reques| +11054|7882|32883|1|24|42957.12|0.00|0.04|N|O|1997-01-21|1996-12-02|1997-01-28|COLLECT COD|REG AIR|sly even deposits sleep slyly | +11054|456315|31334|2|35|44495.15|0.10|0.07|N|O|1997-02-09|1996-12-28|1997-02-11|TAKE BACK RETURN|FOB| regular foxes cajole furiously across| +11054|274753|49764|3|5|8638.70|0.07|0.01|N|O|1997-02-07|1996-11-25|1997-03-08|TAKE BACK RETURN|SHIP|ts boost blithely| +11055|162010|24514|1|6|6432.06|0.05|0.01|N|O|1998-09-19|1998-08-23|1998-09-21|NONE|RAIL|s wake blithely agains| +11055|896172|21207|2|41|47893.33|0.06|0.06|N|O|1998-10-12|1998-09-17|1998-10-13|COLLECT COD|MAIL|he enticing theodolites shall have | +11055|956975|6976|3|27|54862.11|0.04|0.04|N|O|1998-07-06|1998-08-01|1998-07-26|NONE|FOB|romise slyly. quickly final theodolites| +11055|864424|39459|4|35|48593.30|0.07|0.06|N|O|1998-10-11|1998-08-16|1998-10-20|COLLECT COD|AIR|unusual packages. blithely r| +11055|370693|20694|5|36|63492.48|0.06|0.03|N|O|1998-10-22|1998-08-07|1998-10-26|TAKE BACK RETURN|FOB|ly bold deposits | +11055|229022|29023|6|9|8559.09|0.09|0.05|N|O|1998-07-30|1998-09-23|1998-08-05|TAKE BACK RETURN|AIR|egular pint| +11080|948243|10762|1|39|50356.80|0.00|0.05|N|O|1997-08-06|1997-07-12|1997-08-26|COLLECT COD|MAIL|longside of the slowly even accou| +11080|118068|43073|2|41|44528.46|0.00|0.01|N|O|1997-07-01|1997-06-19|1997-07-22|COLLECT COD|TRUCK|lly express| +11080|353175|40697|3|16|19650.56|0.00|0.00|N|O|1997-09-03|1997-07-14|1997-09-05|COLLECT COD|MAIL|even deposits. blit| +11080|803350|40899|4|43|53892.33|0.02|0.02|N|O|1997-06-18|1997-07-12|1997-06-22|TAKE BACK RETURN|AIR|egrate accounts| +11080|897880|47881|5|12|22534.08|0.08|0.07|N|O|1997-05-20|1997-07-09|1997-05-29|COLLECT COD|AIR|as haggle. deposits haggle ag| +11080|653258|40798|6|47|56927.34|0.08|0.08|N|O|1997-05-18|1997-06-18|1997-05-23|TAKE BACK RETURN|AIR|eposits. accounts | +11081|179133|4140|1|47|56970.11|0.08|0.06|N|O|1998-04-29|1998-02-28|1998-05-02|NONE|AIR|f the furiously regular asymptote| +11081|682484|32485|2|10|14664.50|0.00|0.07|N|O|1998-03-26|1998-02-16|1998-04-11|TAKE BACK RETURN|FOB|carefully. care| +11081|502231|14742|3|34|41929.14|0.08|0.08|N|O|1998-04-16|1998-03-07|1998-04-19|COLLECT COD|AIR|ular dependencies. packages sl| +11081|985222|35223|4|6|7843.08|0.05|0.05|N|O|1998-03-08|1998-03-25|1998-03-23|NONE|RAIL|ve the regular packages. furious| +11081|613549|26062|5|37|54112.87|0.09|0.05|N|O|1998-04-24|1998-02-28|1998-05-04|TAKE BACK RETURN|FOB|sly after t| +11081|907015|19534|6|2|2043.94|0.00|0.07|N|O|1998-03-30|1998-03-04|1998-04-26|TAKE BACK RETURN|MAIL|furiously among the | +11081|194437|6941|7|30|45942.90|0.09|0.05|N|O|1998-03-27|1998-03-17|1998-04-02|TAKE BACK RETURN|FOB|ngside of the blithe| +11082|890530|28082|1|10|15204.90|0.06|0.00|R|F|1994-06-30|1994-08-02|1994-07-04|NONE|TRUCK|ironic foxes wake| +11083|12447|12448|1|40|54377.60|0.05|0.07|N|O|1996-07-08|1996-07-29|1996-07-10|TAKE BACK RETURN|RAIL|ins. always final| +11083|192050|29560|2|12|13704.60|0.08|0.00|N|O|1996-07-21|1996-06-20|1996-08-20|TAKE BACK RETURN|AIR|grate slyly entic| +11083|770729|45760|3|17|30594.73|0.00|0.00|N|O|1996-08-09|1996-06-19|1996-09-01|NONE|FOB| slyly fluffy t| +11083|641249|28786|4|37|44037.77|0.03|0.00|N|O|1996-09-11|1996-08-18|1996-10-11|NONE|AIR|ular instructions nag carefully package| +11084|709642|9643|1|20|33032.20|0.01|0.04|N|O|1997-05-15|1997-06-20|1997-06-06|DELIVER IN PERSON|TRUCK| ironic packages haggle furiously spe| +11085|471235|21236|1|39|47042.19|0.01|0.05|N|O|1996-12-09|1996-12-14|1997-01-03|DELIVER IN PERSON|RAIL|uctions ru| +11085|46580|34081|2|19|29005.02|0.06|0.04|N|O|1997-02-06|1996-12-24|1997-02-07|COLLECT COD|SHIP|y ironic requests. carefully regular pack| +11085|858381|8382|3|44|58930.96|0.08|0.07|N|O|1996-12-26|1996-12-30|1997-01-01|COLLECT COD|SHIP|to beans. even accounts nag carefully. f| +11086|301946|14453|1|18|35062.74|0.01|0.06|R|F|1992-08-16|1992-10-05|1992-08-29|DELIVER IN PERSON|RAIL|e carefully final decoys. quickly| +11087|606671|44208|1|47|74149.08|0.03|0.02|A|F|1994-10-16|1994-10-07|1994-11-04|COLLECT COD|AIR|al accounts. final dinos ha| +11087|305186|5187|2|41|48837.97|0.04|0.04|A|F|1994-10-29|1994-11-07|1994-11-07|COLLECT COD|REG AIR|nal ideas. packages sleep f| +11087|254878|17384|3|15|27492.90|0.05|0.04|R|F|1994-12-11|1994-11-03|1995-01-09|DELIVER IN PERSON|REG AIR|bout the slyly pending accounts; | +11087|730187|17730|4|32|38948.80|0.07|0.02|R|F|1994-09-21|1994-10-16|1994-09-29|NONE|TRUCK|ckages will wak| +11087|250697|698|5|21|34601.28|0.05|0.00|R|F|1994-12-12|1994-10-01|1995-01-02|NONE|SHIP| express foxes detect sly| +11112|119809|7316|1|18|32918.40|0.10|0.06|N|O|1998-01-06|1998-03-14|1998-01-26|TAKE BACK RETURN|REG AIR|ly unusual deposits. carefully regular ins| +11112|628914|3939|2|21|38700.48|0.10|0.05|N|O|1998-02-23|1998-01-29|1998-03-10|DELIVER IN PERSON|REG AIR|s pinto beans. slyly final foxes impre| +11112|156719|19223|3|43|76355.53|0.08|0.02|N|O|1998-01-21|1998-03-04|1998-02-02|DELIVER IN PERSON|REG AIR|s. ironic esca| +11112|968770|31290|4|12|22064.76|0.01|0.05|N|O|1998-01-15|1998-03-15|1998-02-10|DELIVER IN PERSON|REG AIR|ng courts use | +11112|103838|28843|5|46|84724.18|0.01|0.03|N|O|1998-04-06|1998-03-15|1998-05-06|TAKE BACK RETURN|SHIP| deposits are furiously | +11112|189192|39193|6|21|26904.99|0.09|0.08|N|O|1998-03-28|1998-02-21|1998-04-25|NONE|FOB|ously among the pen| +11112|735308|35309|7|4|5373.08|0.02|0.08|N|O|1998-02-16|1998-03-21|1998-02-25|TAKE BACK RETURN|MAIL| are quickly atop the even,| +11113|314305|26812|1|47|62006.63|0.08|0.05|R|F|1994-11-17|1994-12-22|1994-12-15|NONE|RAIL|ular, brave foxe| +11113|520843|8374|2|4|7455.28|0.08|0.03|R|F|1995-02-01|1994-11-13|1995-02-11|DELIVER IN PERSON|FOB|ag along the blithel| +11113|802900|2901|3|26|46874.36|0.10|0.07|A|F|1994-11-24|1994-12-02|1994-12-14|TAKE BACK RETURN|AIR|accounts. excuses cajole quickly. s| +11113|333521|8534|4|29|45080.79|0.07|0.06|R|F|1995-01-13|1994-12-25|1995-01-21|COLLECT COD|TRUCK|uriously even acc| +11114|426646|26647|1|33|51896.46|0.08|0.00|N|O|1995-10-27|1995-11-26|1995-11-23|DELIVER IN PERSON|RAIL|bold somas| +11115|772349|22350|1|41|58273.71|0.08|0.03|A|F|1994-11-16|1994-10-27|1994-11-22|COLLECT COD|RAIL|its after the even packages haggle ac| +11115|864312|1864|2|17|21696.59|0.01|0.04|A|F|1994-09-09|1994-10-06|1994-09-27|TAKE BACK RETURN|REG AIR|s. quickly regula| +11115|476258|38768|3|48|59243.04|0.06|0.08|R|F|1994-10-31|1994-10-23|1994-11-09|DELIVER IN PERSON|REG AIR|ly ironic excuse| +11115|455099|5100|4|36|37946.52|0.02|0.04|A|F|1994-10-05|1994-09-08|1994-10-19|TAKE BACK RETURN|AIR|c packages. blithely daring requests w| +11115|844947|19980|5|19|35946.10|0.00|0.07|A|F|1994-10-14|1994-10-16|1994-11-07|DELIVER IN PERSON|MAIL|atelets. accounts across| +11116|530451|5472|1|46|68145.78|0.00|0.04|R|F|1993-01-30|1993-01-06|1993-02-12|TAKE BACK RETURN|REG AIR|en excuses thrash fu| +11117|692482|4996|1|2|2948.90|0.03|0.05|A|F|1992-02-04|1992-02-14|1992-02-19|DELIVER IN PERSON|REG AIR|ss packages. re| +11117|529292|29293|2|16|21140.32|0.00|0.08|R|F|1992-04-14|1992-03-18|1992-05-03|NONE|SHIP|he furious| +11117|797093|47094|3|41|48792.46|0.04|0.06|R|F|1992-02-07|1992-03-25|1992-02-15|NONE|AIR|al pinto beans affix carefull| +11118|454238|16748|1|36|42919.56|0.00|0.05|N|O|1998-01-16|1998-02-17|1998-02-03|COLLECT COD|REG AIR|n accounts? pinto beans print quickly; | +11118|361664|24172|2|35|60397.75|0.02|0.06|N|O|1998-02-26|1998-04-02|1998-03-18|TAKE BACK RETURN|AIR|eposits across the permanently final | +11118|472317|9845|3|37|47703.73|0.02|0.06|N|O|1998-04-27|1998-02-24|1998-05-09|TAKE BACK RETURN|TRUCK|requests cajole. slyly even reque| +11118|226993|26994|4|41|78719.18|0.05|0.06|N|O|1998-04-20|1998-03-15|1998-05-11|NONE|AIR|ions. slyly unusual accounts print| +11118|62567|12568|5|22|33650.32|0.08|0.06|N|O|1998-02-16|1998-02-17|1998-03-09|TAKE BACK RETURN|AIR| fluffily blithely even| +11118|547264|47265|6|4|5244.96|0.07|0.05|N|O|1998-01-16|1998-03-07|1998-01-23|TAKE BACK RETURN|REG AIR| regular patterns. furio| +11118|866005|28523|7|13|12622.48|0.05|0.00|N|O|1998-03-30|1998-02-12|1998-04-01|DELIVER IN PERSON|REG AIR|slyly across the sly| +11119|933202|20757|1|8|9881.28|0.06|0.06|N|O|1997-06-20|1997-08-13|1997-07-04|NONE|FOB|cies. ruthless, final packages promise s| +11119|325073|12592|2|36|39530.16|0.00|0.02|N|O|1997-07-18|1997-08-08|1997-08-11|TAKE BACK RETURN|FOB|iously express foxes cajole fluffily al| +11119|487029|24557|3|11|11176.00|0.07|0.08|N|O|1997-07-24|1997-07-31|1997-08-03|DELIVER IN PERSON|SHIP|deas boost according t| +11144|454177|29196|1|16|18098.40|0.10|0.04|R|F|1992-12-21|1992-10-17|1993-01-02|DELIVER IN PERSON|REG AIR|ly final packages impress | +11145|119811|44816|1|6|10984.86|0.00|0.00|N|O|1996-09-24|1996-10-21|1996-10-06|TAKE BACK RETURN|SHIP|ily according to the| +11145|650390|12904|2|1|1340.36|0.03|0.07|N|O|1996-10-15|1996-11-04|1996-11-03|COLLECT COD|RAIL| carefully ironic, even accounts. regular| +11146|404732|42257|1|22|36007.62|0.07|0.02|R|F|1992-06-05|1992-03-18|1992-06-10|DELIVER IN PERSON|MAIL|ending, final acc| +11146|325626|25627|2|10|16516.10|0.07|0.03|A|F|1992-03-25|1992-04-05|1992-04-17|TAKE BACK RETURN|RAIL|accounts a| +11147|292517|5023|1|5|7547.50|0.05|0.06|N|O|1998-01-23|1998-02-19|1998-02-14|NONE|SHIP|use furiously blithely dogged multipli| +11147|330269|5282|2|50|64962.50|0.08|0.06|N|O|1998-04-13|1998-03-09|1998-05-04|COLLECT COD|AIR|haggle. carefully final packages de| +11147|825999|13548|3|8|15399.60|0.03|0.00|N|O|1998-02-20|1998-04-06|1998-02-25|DELIVER IN PERSON|RAIL|he slyly final excuses. qu| +11147|563582|38605|4|39|64176.84|0.10|0.04|N|O|1998-01-12|1998-04-08|1998-01-23|NONE|REG AIR|o beans are furiously pa| +11147|110076|35081|5|18|19549.26|0.02|0.04|N|O|1998-03-25|1998-02-28|1998-04-05|COLLECT COD|SHIP|gle. blithely express theodolit| +11147|39812|14813|6|40|70072.40|0.07|0.06|N|O|1998-04-08|1998-04-03|1998-04-20|NONE|REG AIR|nic requests. iron| +11148|353863|41385|1|43|82424.55|0.05|0.06|N|O|1997-01-02|1997-01-09|1997-01-20|DELIVER IN PERSON|TRUCK|, brave foxe| +11148|368634|18635|2|39|66402.18|0.04|0.02|N|O|1996-11-16|1997-01-09|1996-11-25|TAKE BACK RETURN|TRUCK|furiously final pin| +11148|628166|40679|3|49|53612.37|0.01|0.06|N|O|1996-11-18|1997-01-12|1996-12-02|COLLECT COD|MAIL|usual deposits| +11148|572841|47864|4|37|70811.34|0.08|0.02|N|O|1996-11-06|1997-01-03|1996-11-26|NONE|FOB|ges. blithely i| +11148|726894|1923|5|14|26892.04|0.01|0.04|N|O|1996-12-15|1996-11-26|1996-12-17|DELIVER IN PERSON|REG AIR|usual depos| +11148|907176|7177|6|17|20113.21|0.04|0.02|N|O|1996-12-25|1997-01-11|1997-01-18|DELIVER IN PERSON|TRUCK|ven dependencies above the final| +11149|884083|21635|1|43|45882.72|0.03|0.03|A|F|1994-05-06|1994-07-02|1994-05-09|TAKE BACK RETURN|MAIL|into beans| +11149|779874|29875|2|25|48846.00|0.06|0.05|A|F|1994-05-18|1994-07-21|1994-05-23|TAKE BACK RETURN|MAIL|y regular the| +11149|329235|41742|3|2|2528.44|0.03|0.08|R|F|1994-07-20|1994-07-23|1994-08-03|DELIVER IN PERSON|SHIP|jole careful| +11149|444212|44213|4|28|32373.32|0.09|0.06|A|F|1994-05-18|1994-07-08|1994-06-02|NONE|MAIL|iously! requests above t| +11149|869912|7464|5|42|79038.54|0.03|0.00|R|F|1994-08-21|1994-06-30|1994-08-22|COLLECT COD|SHIP|al courts | +11149|604275|29300|6|14|16509.36|0.06|0.00|A|F|1994-07-12|1994-07-23|1994-08-05|DELIVER IN PERSON|REG AIR|the quickly pending requests integrate | +11149|36920|36921|7|47|87275.24|0.00|0.03|A|F|1994-04-28|1994-05-30|1994-05-20|TAKE BACK RETURN|TRUCK|l packages? slyly final waters haggle | +11150|501173|1174|1|38|44617.70|0.06|0.05|N|O|1997-12-09|1997-12-09|1997-12-18|COLLECT COD|MAIL|requests: furio| +11151|572223|22224|1|38|49217.60|0.04|0.04|A|F|1993-08-23|1993-07-20|1993-09-16|COLLECT COD|RAIL|dependencies. | +11176|249351|36864|1|27|35109.18|0.04|0.04|N|O|1996-04-25|1996-04-19|1996-05-13|NONE|TRUCK| of the regular, regular ideas. ex| +11176|837970|37971|2|34|64869.62|0.00|0.02|N|O|1996-06-09|1996-03-23|1996-06-14|DELIVER IN PERSON|AIR|into beans. regular,| +11176|748700|48701|3|22|38470.74|0.01|0.05|N|O|1996-03-02|1996-05-06|1996-03-09|DELIVER IN PERSON|SHIP|timents. foxes from the slyly e| +11176|384352|21874|4|9|12927.06|0.00|0.04|N|O|1996-04-12|1996-04-12|1996-04-20|NONE|AIR|s cajole slyly f| +11176|788477|38478|5|17|26612.48|0.07|0.05|N|O|1996-03-29|1996-05-08|1996-03-30|TAKE BACK RETURN|REG AIR|he furiously express foxes sleep blithe| +11176|920922|8477|6|3|5828.64|0.09|0.02|N|O|1996-05-05|1996-03-12|1996-05-30|COLLECT COD|SHIP|ges cajole slyly after the car| +11176|924815|24816|7|13|23917.01|0.02|0.00|N|O|1996-04-17|1996-05-06|1996-05-08|COLLECT COD|SHIP|riously final f| +11177|349935|12442|1|36|71457.12|0.08|0.05|A|F|1994-08-04|1994-08-22|1994-08-29|TAKE BACK RETURN|AIR|he blithely| +11177|355252|17760|2|16|20915.84|0.02|0.04|R|F|1994-09-20|1994-07-11|1994-10-19|DELIVER IN PERSON|RAIL|deas are fluffil| +11177|716541|4084|3|6|9345.06|0.03|0.08|R|F|1994-07-20|1994-07-26|1994-08-17|TAKE BACK RETURN|MAIL|ronic, final orbits. s| +11177|893115|30667|4|40|44322.80|0.07|0.04|A|F|1994-07-22|1994-08-04|1994-08-10|DELIVER IN PERSON|AIR|iously according to the even| +11177|571805|46828|5|26|48796.28|0.02|0.05|R|F|1994-06-25|1994-07-12|1994-07-17|TAKE BACK RETURN|SHIP|ously bold requests sleep furiously | +11178|824959|24960|1|47|88543.77|0.06|0.07|N|O|1996-06-22|1996-05-21|1996-07-07|COLLECT COD|MAIL|ffily even instructions-- ir| +11178|76781|14285|2|16|28124.48|0.01|0.02|N|O|1996-07-21|1996-05-12|1996-08-05|TAKE BACK RETURN|FOB|ar, final dependenci| +11178|442365|4874|3|4|5229.36|0.02|0.01|N|O|1996-05-23|1996-06-16|1996-05-31|DELIVER IN PERSON|RAIL| requests cajole furio| +11178|821797|34314|4|24|41250.00|0.05|0.08|N|O|1996-04-24|1996-07-03|1996-05-22|NONE|AIR|le. furiously bold deposits alo| +11179|772195|9741|1|18|22808.88|0.02|0.04|A|F|1992-12-04|1993-01-18|1992-12-23|TAKE BACK RETURN|REG AIR| fluffily regular a| +11179|265894|28400|2|20|37197.60|0.05|0.05|A|F|1992-12-23|1993-01-13|1993-01-13|COLLECT COD|RAIL|iously unusual excuses nag furiou| +11179|878292|40810|3|22|27945.50|0.06|0.05|A|F|1992-11-17|1993-01-05|1992-12-03|COLLECT COD|RAIL|uffily aga| +11179|443288|18305|4|40|49250.40|0.10|0.08|R|F|1993-02-14|1993-01-17|1993-03-09|TAKE BACK RETURN|SHIP|y ironic packages. pending accounts | +11179|331947|44454|5|10|19789.30|0.02|0.00|R|F|1992-12-06|1992-12-17|1992-12-14|COLLECT COD|FOB|y furiously | +11179|29652|29653|6|22|34796.30|0.05|0.06|R|F|1992-11-23|1992-12-03|1992-12-05|COLLECT COD|SHIP|ly regular packages. instructions among the| +11180|341511|29030|1|48|74520.00|0.08|0.06|R|F|1993-12-06|1993-11-11|1993-12-15|TAKE BACK RETURN|REG AIR|ly silent platelets cajole carefull| +11180|760721|35752|2|31|55232.39|0.09|0.05|R|F|1994-01-07|1993-12-17|1994-02-01|COLLECT COD|FOB|atelets-- f| +11181|475210|229|1|24|28444.56|0.00|0.05|A|F|1993-06-30|1993-05-27|1993-07-19|TAKE BACK RETURN|MAIL|kages. furiously ironic i| +11181|838764|13797|2|5|8513.60|0.09|0.06|A|F|1993-08-14|1993-07-15|1993-08-23|DELIVER IN PERSON|REG AIR|nto beans along the carefully thin pla| +11181|95304|32808|3|32|41577.60|0.04|0.02|A|F|1993-05-13|1993-07-16|1993-05-27|DELIVER IN PERSON|TRUCK|t the blit| +11181|772908|35424|4|42|83196.54|0.00|0.06|A|F|1993-08-12|1993-06-26|1993-08-29|COLLECT COD|AIR|sly bold theodolites according to the a| +11182|770830|8376|1|29|55123.20|0.10|0.01|N|O|1996-04-05|1996-02-09|1996-05-02|TAKE BACK RETURN|MAIL|usly final patterns alongside of | +11182|326978|26979|2|2|4009.92|0.04|0.08|N|O|1996-02-28|1996-01-22|1996-03-21|DELIVER IN PERSON|REG AIR| slyly final accounts use blithely agai| +11183|606368|6369|1|11|14017.63|0.02|0.04|N|O|1996-05-07|1996-05-18|1996-05-17|NONE|FOB| depths. furiously quick foxes sleep slyly | +11208|379840|4855|1|7|13438.81|0.07|0.03|A|F|1993-02-22|1993-01-18|1993-03-11|DELIVER IN PERSON|AIR|ounts alon| +11208|962604|37643|2|12|19998.72|0.04|0.08|R|F|1993-02-24|1993-01-15|1993-03-17|COLLECT COD|RAIL|egular deposits nag. furiously regula| +11208|482043|44553|3|11|11275.22|0.09|0.05|R|F|1993-01-23|1993-03-04|1993-02-08|NONE|MAIL|ts. furiously final ideas against the furi| +11208|693464|31004|4|29|42265.47|0.10|0.00|A|F|1993-01-15|1993-02-19|1993-01-24|DELIVER IN PERSON|MAIL|y express Tiresias: | +11208|42993|5494|5|24|46463.76|0.08|0.03|R|F|1993-03-06|1993-01-27|1993-03-19|COLLECT COD|REG AIR|accounts ar| +11208|582378|32379|6|1|1460.35|0.09|0.02|R|F|1993-04-03|1993-01-26|1993-05-02|COLLECT COD|RAIL| requests haggle slyly slyly exp| +11209|564385|14386|1|42|60873.12|0.05|0.06|N|O|1998-08-07|1998-08-30|1998-08-10|COLLECT COD|MAIL|dolites alongside of the carefully final pe| +11210|514087|14088|1|42|46244.52|0.04|0.06|N|O|1998-07-15|1998-06-02|1998-08-01|TAKE BACK RETURN|AIR| furiously final foxes. unusu| +11211|569922|19923|1|37|73700.30|0.05|0.03|R|F|1994-06-24|1994-07-30|1994-07-02|NONE|MAIL| above the dolphins. carefully busy| +11211|666970|4510|2|4|7747.76|0.01|0.05|R|F|1994-08-15|1994-07-23|1994-09-10|TAKE BACK RETURN|MAIL|tterns. slyly final accounts co| +11212|291598|29114|1|19|30202.02|0.03|0.07|A|F|1994-07-07|1994-07-01|1994-07-23|TAKE BACK RETURN|FOB|eposits. slyly even dolphin| +11212|879905|29906|2|50|94243.00|0.07|0.01|R|F|1994-05-31|1994-06-15|1994-06-27|COLLECT COD|TRUCK|tructions | +11212|553839|16351|3|38|71926.78|0.02|0.06|A|F|1994-05-28|1994-07-01|1994-06-21|DELIVER IN PERSON|TRUCK|final packages. furio| +11212|361613|11614|4|21|35166.60|0.02|0.04|A|F|1994-09-05|1994-07-01|1994-10-02|NONE|AIR|ound the doggedly even tithes nag car| +11212|621340|33853|5|47|59281.57|0.03|0.03|A|F|1994-07-31|1994-06-21|1994-08-11|NONE|REG AIR|ing to the quickly express instructions. r| +11213|601120|26145|1|48|49012.32|0.09|0.05|A|F|1994-10-03|1994-10-26|1994-10-04|COLLECT COD|FOB|e the even theo| +11213|18746|6247|2|27|44947.98|0.07|0.07|A|F|1994-09-08|1994-10-12|1994-09-11|NONE|AIR|urts nag a| +11213|62955|459|3|36|69046.20|0.10|0.00|R|F|1994-09-21|1994-11-01|1994-10-13|COLLECT COD|TRUCK|gular requests: blithely final accounts| +11213|69862|19863|4|2|3663.72|0.10|0.02|R|F|1994-11-21|1994-10-24|1994-12-16|TAKE BACK RETURN|RAIL|unts-- special theodolites against| +11213|168634|43641|5|36|61294.68|0.03|0.06|R|F|1994-10-17|1994-11-18|1994-11-13|NONE|FOB| final pinto beans. | +11214|628662|41175|1|9|14315.67|0.06|0.01|N|O|1995-12-14|1995-10-17|1995-12-24|COLLECT COD|TRUCK|ect quickly within the| +11214|920744|45781|2|31|54705.70|0.00|0.01|N|O|1995-08-21|1995-10-30|1995-09-19|NONE|RAIL|ven deposits boost furiously| +11215|904585|17104|1|17|27022.18|0.10|0.00|N|O|1996-08-13|1996-08-08|1996-09-02|DELIVER IN PERSON|AIR|e of the bold deposits. | +11215|348083|35602|2|27|30538.89|0.02|0.04|N|O|1996-07-25|1996-08-06|1996-08-08|DELIVER IN PERSON|REG AIR|ickly even ideas sleep. | +11215|229641|4650|3|39|61254.57|0.09|0.08|N|O|1996-08-28|1996-08-30|1996-09-08|DELIVER IN PERSON|RAIL| even packages sublate furio| +11215|565415|2949|4|46|68097.94|0.00|0.00|N|O|1996-09-08|1996-08-28|1996-10-01|DELIVER IN PERSON|MAIL|ar foxes. furiously regu| +11215|925849|886|5|15|28122.00|0.01|0.00|N|O|1996-09-15|1996-08-23|1996-10-07|TAKE BACK RETURN|REG AIR|quests integrate fluffily slyly ironic forg| +11215|741443|16472|6|21|31172.61|0.01|0.02|N|O|1996-07-22|1996-08-08|1996-07-26|COLLECT COD|AIR|onic accou| +11215|418855|18856|7|37|65631.71|0.00|0.07|N|O|1996-08-24|1996-08-19|1996-09-02|NONE|SHIP|counts use | +11240|684152|34153|1|45|51125.40|0.09|0.07|A|F|1994-04-02|1994-03-03|1994-04-17|NONE|MAIL| beans nag. blithely pending dugouts | +11240|539471|14492|2|11|16614.95|0.04|0.00|R|F|1994-02-12|1994-02-27|1994-02-19|TAKE BACK RETURN|MAIL|tes. furiously r| +11240|878230|40748|3|23|27788.37|0.00|0.04|A|F|1994-03-11|1994-02-13|1994-03-22|COLLECT COD|MAIL|y dependencies haggle above the slyly ironi| +11241|85552|23056|1|40|61502.00|0.07|0.01|A|F|1992-02-15|1992-03-16|1992-03-01|NONE|TRUCK|ar packages. | +11241|866329|28847|2|6|7771.68|0.02|0.01|A|F|1992-04-22|1992-03-15|1992-05-16|TAKE BACK RETURN|MAIL|al, silent deposits about the packages w| +11241|381013|43521|3|5|5470.00|0.04|0.01|R|F|1992-02-28|1992-04-10|1992-03-01|COLLECT COD|REG AIR|ackages. even, bold instructions x-ra| +11241|674794|37308|4|22|38912.72|0.01|0.06|A|F|1992-02-02|1992-02-29|1992-02-06|TAKE BACK RETURN|RAIL|l accounts lose deposits. f| +11241|262124|37135|5|43|46702.73|0.07|0.04|A|F|1992-03-22|1992-03-29|1992-04-03|COLLECT COD|FOB| after the quickly pending pint| +11241|506818|31839|6|47|85765.13|0.10|0.04|A|F|1992-03-15|1992-03-24|1992-04-05|COLLECT COD|TRUCK|leep slyly quic| +11242|562808|37831|1|19|35544.82|0.06|0.08|N|O|1997-06-01|1997-06-07|1997-06-14|NONE|REG AIR|carefully pending warthogs. regular, bold | +11242|106344|18847|2|24|32408.16|0.00|0.06|N|O|1997-07-17|1997-05-28|1997-08-07|NONE|AIR|ffily carefully ruthless deposits| +11242|321754|21755|3|46|81684.04|0.04|0.08|N|O|1997-04-20|1997-05-28|1997-04-22|DELIVER IN PERSON|REG AIR|lar pinto beans should have to are | +11243|625751|25752|1|12|20120.64|0.08|0.06|R|F|1995-05-29|1995-04-18|1995-06-02|DELIVER IN PERSON|MAIL|g pinto beans detect final, pending in| +11244|914552|14553|1|9|14098.59|0.04|0.00|N|O|1995-12-19|1996-01-13|1996-01-07|COLLECT COD|TRUCK|counts use quickly. furiously regular acco| +11244|866360|41395|2|6|7957.92|0.06|0.06|N|O|1995-12-16|1996-01-06|1995-12-17|TAKE BACK RETURN|RAIL|. quickly even packages cajole | +11244|901443|26480|3|21|30332.40|0.03|0.01|N|O|1995-11-04|1995-12-10|1995-11-13|DELIVER IN PERSON|TRUCK|ss, regular deposits use against t| +11244|543093|30624|4|41|46578.87|0.07|0.05|N|O|1995-12-17|1996-01-11|1995-12-31|COLLECT COD|FOB|gside of the even, ironic theodolites | +11244|749234|49235|5|37|47478.40|0.09|0.05|N|O|1996-02-23|1995-11-28|1996-03-03|NONE|SHIP|, express accounts use pendin| +11245|691821|41822|1|13|23566.27|0.01|0.06|N|O|1995-10-15|1995-10-14|1995-10-21|DELIVER IN PERSON|SHIP|riously ironic | +11245|432189|44698|2|32|35877.12|0.09|0.06|N|O|1995-12-16|1995-10-16|1995-12-20|NONE|REG AIR|above the furiousl| +11245|788832|26378|3|41|78752.80|0.10|0.05|N|O|1995-12-17|1995-11-30|1995-12-18|NONE|MAIL|e ironic, pending pinto beans. slyly re| +11245|884013|34014|4|45|44863.65|0.02|0.05|N|O|1995-09-26|1995-11-27|1995-10-05|DELIVER IN PERSON|FOB|ds haggle furiously thin attai| +11246|328372|40879|1|44|61615.84|0.05|0.04|A|F|1994-01-16|1994-02-04|1994-02-09|TAKE BACK RETURN|REG AIR|xpress accounts around the theodo| +11246|933239|8276|2|47|59792.93|0.08|0.08|A|F|1994-04-06|1994-02-01|1994-04-25|NONE|TRUCK|ly furiously regular instructions. e| +11246|946925|46926|3|50|98594.00|0.04|0.06|A|F|1993-12-24|1994-02-05|1993-12-29|DELIVER IN PERSON|RAIL|re against the silent, close d| +11247|722820|35335|1|25|46069.75|0.01|0.02|N|O|1996-08-09|1996-08-02|1996-08-14|TAKE BACK RETURN|RAIL|s are blithely against the slyly ironic esc| +11247|431203|43712|2|10|11341.80|0.08|0.08|N|O|1996-05-11|1996-06-23|1996-06-05|NONE|TRUCK| ideas. never express dolphins detect| +11247|226497|39002|3|30|42704.40|0.08|0.03|N|O|1996-08-28|1996-07-09|1996-09-26|TAKE BACK RETURN|AIR|e quickly regular packages.| +11247|722913|35428|4|14|27102.32|0.08|0.00|N|O|1996-07-08|1996-07-14|1996-08-02|TAKE BACK RETURN|TRUCK|fily ironic deposi| +11247|984824|34825|5|7|13361.46|0.08|0.08|N|O|1996-07-24|1996-07-02|1996-07-27|DELIVER IN PERSON|AIR|efully furiously regular pains. slyly reg| +11247|924359|24360|6|21|29049.51|0.07|0.08|N|O|1996-07-05|1996-07-01|1996-07-29|NONE|REG AIR| the furiou| +11247|691027|41028|7|44|44791.56|0.06|0.08|N|O|1996-08-20|1996-07-09|1996-09-08|DELIVER IN PERSON|TRUCK|he ironically special platelets. pinto be| +11272|81162|18666|1|43|49155.88|0.07|0.00|N|O|1998-07-27|1998-06-13|1998-08-10|TAKE BACK RETURN|SHIP|xes are fluffily slyl| +11272|81425|43927|2|15|21096.30|0.08|0.06|N|O|1998-08-26|1998-06-28|1998-09-01|COLLECT COD|SHIP|ecial ideas haggle ab| +11272|498064|48065|3|12|12744.48|0.01|0.00|N|O|1998-06-10|1998-07-23|1998-06-13|COLLECT COD|RAIL|special, regular dependencies wake | +11272|954971|4972|4|28|56726.04|0.05|0.06|N|O|1998-05-13|1998-06-30|1998-06-11|DELIVER IN PERSON|SHIP|ly between the pending requests. iron| +11273|576140|38652|1|3|3648.36|0.06|0.06|R|F|1992-11-10|1992-10-24|1992-11-11|TAKE BACK RETURN|SHIP|e blithely quic| +11273|170319|45326|2|34|47236.54|0.07|0.04|R|F|1992-12-21|1992-10-10|1993-01-04|NONE|MAIL|ironic accounts. final, special pl| +11273|538260|13281|3|3|3894.72|0.06|0.03|A|F|1992-11-07|1992-09-24|1992-11-22|TAKE BACK RETURN|RAIL|unts cajole quickly. slyly| +11273|520373|32884|4|20|27867.00|0.04|0.06|A|F|1992-12-18|1992-11-06|1992-12-22|TAKE BACK RETURN|REG AIR|ly final accounts shall sleep across th| +11273|892953|42954|5|31|60323.21|0.02|0.06|A|F|1992-12-18|1992-10-07|1993-01-10|COLLECT COD|AIR|lithely sil| +11274|67596|5100|1|34|53162.06|0.01|0.07|N|O|1997-05-04|1997-04-08|1997-05-15|NONE|FOB|across the furiously pendin| +11275|451091|38619|1|7|7294.49|0.03|0.06|A|F|1994-03-13|1994-04-15|1994-03-21|TAKE BACK RETURN|MAIL|carefully special tithes.| +11275|476085|26086|2|44|46686.64|0.10|0.00|A|F|1994-02-01|1994-03-23|1994-02-24|COLLECT COD|MAIL|y bold requests wake furio| +11275|547306|34837|3|14|18945.92|0.04|0.08|A|F|1994-02-13|1994-04-15|1994-02-27|TAKE BACK RETURN|FOB| among the blithely iro| +11275|558216|33239|4|10|12741.90|0.00|0.07|R|F|1994-05-19|1994-03-27|1994-05-25|TAKE BACK RETURN|SHIP|ding account| +11275|924413|36932|5|32|45995.84|0.03|0.00|A|F|1994-03-20|1994-03-30|1994-04-09|DELIVER IN PERSON|RAIL|s excuses. unusual deposits | +11275|593399|5911|6|47|70141.39|0.08|0.08|R|F|1994-03-11|1994-03-31|1994-03-29|TAKE BACK RETURN|MAIL| ironic platelets nag blithely regular, r| +11276|619469|31982|1|46|63867.78|0.08|0.08|N|O|1996-05-26|1996-07-16|1996-06-16|COLLECT COD|SHIP|ngside of the regular foxes. sil| +11276|399625|12133|2|18|31042.98|0.02|0.01|N|O|1996-06-04|1996-07-28|1996-06-29|NONE|FOB|sts detect blithe| +11276|484678|47188|3|43|71493.95|0.07|0.07|N|O|1996-08-04|1996-06-06|1996-08-11|TAKE BACK RETURN|MAIL|quickly final packa| +11276|970459|20460|4|5|7647.05|0.02|0.04|N|O|1996-06-22|1996-07-01|1996-07-18|COLLECT COD|MAIL|s furiously. deposits among the careful| +11276|504088|41619|5|17|18565.02|0.08|0.00|N|O|1996-07-10|1996-07-07|1996-07-11|DELIVER IN PERSON|SHIP|g slyly carefully ironic realms. | +11277|326528|39035|1|31|48189.81|0.03|0.07|A|F|1993-11-12|1993-11-17|1993-11-15|TAKE BACK RETURN|AIR|op the final, ironic somas. qui| +11277|944292|19329|2|36|48105.00|0.05|0.05|A|F|1993-12-19|1993-11-25|1993-12-31|COLLECT COD|REG AIR|regular packages; pending i| +11278|930420|30421|1|34|49312.92|0.08|0.03|R|F|1994-11-21|1995-01-20|1994-11-29|COLLECT COD|TRUCK|ideas boost about the idly ir| +11278|568339|5873|2|50|70365.50|0.02|0.01|A|F|1994-12-22|1994-12-28|1994-12-28|TAKE BACK RETURN|TRUCK|lly final theodolites are | +11279|873490|48525|1|40|58538.00|0.08|0.06|R|F|1993-03-28|1993-02-05|1993-04-26|DELIVER IN PERSON|TRUCK|integrate. e| +11279|743614|43615|2|42|69618.36|0.03|0.02|R|F|1993-01-07|1993-02-28|1993-01-27|COLLECT COD|SHIP|courts? re| +11279|919343|44380|3|18|24521.40|0.04|0.02|R|F|1993-03-19|1993-02-25|1993-04-05|COLLECT COD|TRUCK|ests: reques| +11279|384352|46860|4|37|53144.58|0.03|0.06|R|F|1993-03-17|1993-03-22|1993-04-09|NONE|RAIL|out the slyly regular packages. ironic| +11279|795834|33380|5|18|34736.40|0.10|0.05|A|F|1993-02-18|1993-03-29|1993-02-25|DELIVER IN PERSON|MAIL|ironic deposits. ironic ideas haggle blithe| +11304|481059|18587|1|20|20800.60|0.03|0.03|R|F|1994-03-24|1994-04-08|1994-04-14|DELIVER IN PERSON|FOB|ites. blithely regular pinto beans affix a| +11305|316912|4431|1|22|42435.80|0.02|0.06|N|O|1996-02-01|1996-03-01|1996-02-02|TAKE BACK RETURN|TRUCK|quickly regular tithes. bold pinto bean| +11305|328170|3183|2|10|11981.60|0.06|0.01|N|O|1996-01-19|1996-03-09|1996-02-03|NONE|MAIL|equests sleep against| +11305|549790|12301|3|33|60712.41|0.05|0.04|N|O|1996-02-28|1996-03-17|1996-03-21|DELIVER IN PERSON|AIR|le furiously careful ac| +11305|319581|44594|4|6|9603.42|0.04|0.07|N|O|1996-03-14|1996-04-07|1996-04-09|NONE|AIR|iously regular requests p| +11305|194264|31774|5|39|52972.14|0.04|0.06|N|O|1996-02-10|1996-03-03|1996-02-20|COLLECT COD|AIR|ve packages. carefully ev| +11306|8490|45991|1|10|13984.90|0.07|0.08|N|O|1998-01-14|1998-01-28|1998-01-23|DELIVER IN PERSON|MAIL|platelets sleep blithely final ideas| +11306|676606|1633|2|19|30068.83|0.01|0.01|N|O|1998-03-04|1998-01-30|1998-03-27|TAKE BACK RETURN|FOB|ructions slee| +11306|709995|9996|3|44|88218.24|0.06|0.08|N|O|1998-02-22|1998-01-14|1998-03-14|TAKE BACK RETURN|AIR|y according to the carefully ironic | +11306|880104|42622|4|34|36858.04|0.08|0.05|N|O|1997-12-01|1998-02-21|1997-12-06|DELIVER IN PERSON|TRUCK|tterns against the quickly ir| +11306|898297|10815|5|18|23314.50|0.03|0.02|N|O|1997-12-11|1998-02-15|1998-01-04|COLLECT COD|RAIL|furiously. blithely special packages| +11306|667696|5236|6|11|18300.26|0.08|0.04|N|O|1998-01-22|1998-01-27|1998-01-31|TAKE BACK RETURN|SHIP|ully ironic ins| +11306|954885|29924|7|34|65954.56|0.00|0.05|N|O|1997-12-02|1997-12-27|1997-12-30|DELIVER IN PERSON|RAIL| according to the blithely final packages. | +11307|738388|13417|1|44|62759.40|0.10|0.02|R|F|1992-12-11|1992-12-10|1992-12-19|TAKE BACK RETURN|REG AIR|among the carefully | +11307|73771|11275|2|42|73280.34|0.02|0.03|R|F|1993-02-02|1992-12-11|1993-02-15|DELIVER IN PERSON|AIR|refully. quickly express requests al| +11307|868132|5684|3|49|53904.41|0.09|0.03|A|F|1992-12-09|1993-01-15|1992-12-27|NONE|SHIP|blithely final accounts thrash slyly| +11307|688683|13710|4|27|45134.55|0.06|0.03|A|F|1992-12-16|1993-01-25|1993-01-15|TAKE BACK RETURN|MAIL|nic accounts. blithe| +11307|680143|5170|5|17|19092.87|0.01|0.00|A|F|1993-01-24|1993-01-16|1993-02-11|COLLECT COD|FOB|uffily ironic ideas around the expr| +11307|161561|24065|6|41|66524.96|0.06|0.08|A|F|1993-01-30|1993-01-06|1993-02-09|NONE|SHIP| evenly. even platele| +11307|353243|40765|7|25|32405.75|0.07|0.07|A|F|1992-11-17|1993-01-23|1992-12-10|TAKE BACK RETURN|SHIP|sits. slyly pending dependencies are. br| +11308|941367|28922|1|19|26758.08|0.04|0.03|N|O|1998-08-11|1998-07-31|1998-09-06|TAKE BACK RETURN|FOB|ly sly instructions sleep furiously| +11308|544578|32109|2|32|51921.60|0.01|0.05|N|O|1998-09-12|1998-08-08|1998-09-26|TAKE BACK RETURN|REG AIR| up the slyly pending packages. pa| +11308|711947|36976|3|39|76397.49|0.10|0.02|N|O|1998-08-24|1998-07-10|1998-09-04|NONE|MAIL|le furiously | +11308|689880|14907|4|30|56095.50|0.00|0.07|N|O|1998-09-17|1998-07-22|1998-10-03|DELIVER IN PERSON|AIR|kly across the | +11308|797591|35137|5|44|74296.64|0.09|0.05|N|O|1998-06-22|1998-08-13|1998-07-07|NONE|REG AIR| braids. carefully regular id| +11308|99850|37354|6|9|16648.65|0.10|0.00|N|O|1998-06-15|1998-07-12|1998-07-09|TAKE BACK RETURN|RAIL|quests. silent, final | +11309|345972|33491|1|10|20179.60|0.08|0.05|A|F|1992-10-15|1992-11-20|1992-11-06|COLLECT COD|FOB|above the even ex| +11310|931097|6134|1|28|31585.40|0.03|0.01|R|F|1993-06-20|1993-07-11|1993-07-06|NONE|TRUCK|lent platelets. furiously final plat| +11310|947238|9757|2|24|30844.56|0.07|0.08|R|F|1993-07-10|1993-08-09|1993-07-18|NONE|AIR| ironic packages. pending | +11311|887808|12843|1|12|21549.12|0.07|0.01|R|F|1992-11-22|1992-11-17|1992-11-25|COLLECT COD|MAIL|ses across the careful excuses wake acr| +11311|375034|49|2|41|45469.82|0.00|0.07|A|F|1992-09-03|1992-11-10|1992-09-10|COLLECT COD|AIR|ess epitaphs. ironic accounts wake | +11311|191124|3628|3|17|20657.04|0.07|0.05|R|F|1992-10-07|1992-10-31|1992-10-31|TAKE BACK RETURN|FOB|furiously regular instructions. quickly eve| +11311|210233|47746|4|28|32010.16|0.09|0.07|A|F|1992-09-21|1992-11-16|1992-10-01|DELIVER IN PERSON|FOB|yly unusual ideas are. blith| +11336|494853|32381|1|18|33260.94|0.04|0.08|R|F|1992-02-26|1992-02-21|1992-03-03|COLLECT COD|SHIP|aggle. quickly special fox| +11336|989956|39957|2|14|28642.74|0.01|0.05|R|F|1992-01-19|1992-02-13|1992-02-01|NONE|SHIP| carefully pending instructions| +11336|183869|21379|3|38|74208.68|0.06|0.05|R|F|1992-04-29|1992-02-22|1992-05-23|NONE|SHIP|y above the quickly final | +11337|689924|27464|1|17|32536.13|0.10|0.03|N|O|1997-06-01|1997-05-27|1997-06-30|DELIVER IN PERSON|SHIP|ic requests are blit| +11337|536580|36581|2|7|11315.92|0.07|0.00|N|O|1997-04-25|1997-04-10|1997-05-22|TAKE BACK RETURN|FOB|alongside of the ironic, unusual pa| +11337|292420|29936|3|17|24010.97|0.10|0.03|N|O|1997-06-20|1997-06-02|1997-06-26|DELIVER IN PERSON|REG AIR|ccounts according | +11337|687123|49637|4|15|16651.35|0.08|0.00|N|O|1997-06-20|1997-04-15|1997-07-18|TAKE BACK RETURN|RAIL|ar courts above the furiously reg| +11337|467379|17380|5|50|67317.50|0.05|0.05|N|O|1997-03-20|1997-05-14|1997-04-12|NONE|FOB|ggle; pending | +11337|226187|38692|6|41|45639.97|0.09|0.00|N|O|1997-06-10|1997-05-13|1997-07-10|NONE|SHIP| regular, final soma| +11337|514879|27390|7|26|49240.10|0.00|0.04|N|O|1997-03-26|1997-05-05|1997-04-08|DELIVER IN PERSON|AIR|he ironic, bold dolphins sleep | +11338|558317|45851|1|34|46759.86|0.04|0.00|N|O|1996-08-17|1996-08-24|1996-08-24|COLLECT COD|MAIL| ironic excuses haggl| +11338|629520|42033|2|8|11595.92|0.02|0.08|N|O|1996-10-11|1996-09-03|1996-11-07|DELIVER IN PERSON|TRUCK|tain slyly across the unusual account| +11338|336689|49196|3|10|17256.70|0.10|0.04|N|O|1996-07-12|1996-07-23|1996-07-15|COLLECT COD|AIR|usual, regular foxes| +11339|439860|14877|1|18|32397.12|0.06|0.00|A|F|1994-12-04|1995-01-01|1994-12-30|COLLECT COD|FOB|ckages wake carefully above the care| +11340|488399|13418|1|4|5549.48|0.05|0.07|N|O|1996-02-27|1996-04-14|1996-03-15|COLLECT COD|FOB|ins cajole carefull| +11340|509153|21664|2|24|27891.12|0.10|0.00|N|O|1996-04-14|1996-03-15|1996-05-11|NONE|REG AIR|tween the sly| +11340|320835|33342|3|27|50107.14|0.05|0.07|N|O|1996-06-01|1996-04-24|1996-07-01|DELIVER IN PERSON|MAIL|sleep slyly after the ironic foxe| +11340|273048|23049|4|39|39820.17|0.08|0.06|N|O|1996-05-19|1996-03-24|1996-05-22|NONE|MAIL|lly silent theodolites. furiously spec| +11340|111156|36161|5|15|17507.25|0.10|0.05|N|O|1996-03-21|1996-04-23|1996-04-15|DELIVER IN PERSON|REG AIR|efully according to the blithely | +11341|275430|441|1|21|29513.82|0.07|0.05|N|O|1997-09-08|1997-10-10|1997-09-12|COLLECT COD|REG AIR|packages wake quic| +11341|143410|43411|2|7|10173.87|0.07|0.02|N|O|1997-08-11|1997-09-15|1997-08-20|DELIVER IN PERSON|FOB|ove the deposi| +11342|746911|46912|1|40|78315.20|0.05|0.07|N|O|1997-02-24|1997-02-24|1997-03-09|DELIVER IN PERSON|AIR|r deposits nag. blithely unusu| +11342|327713|15232|2|21|36554.70|0.05|0.03|N|O|1997-01-04|1997-03-07|1997-01-13|COLLECT COD|FOB|ngly special packages. pending, unusual | +11342|857683|20201|3|12|19687.68|0.00|0.08|N|O|1997-03-30|1997-02-13|1997-04-25|COLLECT COD|TRUCK|o beans against the fluffy, ironi| +11342|62194|37197|4|8|9249.52|0.01|0.05|N|O|1996-12-23|1997-02-15|1997-01-02|COLLECT COD|FOB|sts eat furiously. regular, r| +11343|67003|4507|1|6|5820.00|0.01|0.07|A|F|1994-04-12|1994-05-17|1994-05-02|TAKE BACK RETURN|RAIL|eans. fluffily unusual inst| +11343|110783|35788|2|9|16144.02|0.09|0.06|A|F|1994-03-17|1994-05-23|1994-03-24|DELIVER IN PERSON|TRUCK|nal packages are fluffily | +11343|917345|29864|3|33|44955.90|0.03|0.08|R|F|1994-06-20|1994-05-11|1994-07-09|TAKE BACK RETURN|TRUCK|y ironic co| +11343|804109|41658|4|18|18235.08|0.00|0.07|A|F|1994-07-01|1994-05-18|1994-07-30|TAKE BACK RETURN|REG AIR|lar dependencies about| +11343|658986|34013|5|32|62238.40|0.03|0.01|R|F|1994-04-03|1994-04-27|1994-04-04|DELIVER IN PERSON|FOB|ymptotes ar| +11343|568345|43368|6|44|62186.08|0.07|0.06|A|F|1994-03-31|1994-05-25|1994-04-11|DELIVER IN PERSON|RAIL|s wake fluf| +11368|602788|40325|1|31|52413.25|0.02|0.06|N|O|1997-12-17|1997-11-06|1998-01-04|NONE|TRUCK| blithely unusual theodolites maintain. bl| +11368|47800|47801|2|19|33208.20|0.01|0.04|N|O|1997-09-20|1997-11-16|1997-10-09|COLLECT COD|AIR|pinto beans are. furiously s| +11368|367437|17438|3|33|49645.86|0.05|0.02|N|O|1997-10-15|1997-12-05|1997-10-28|NONE|SHIP|theodolites caj| +11368|502164|14675|4|7|8162.98|0.04|0.03|N|O|1997-11-23|1997-12-05|1997-12-13|NONE|RAIL|refully regular deposits | +11368|863750|1302|5|13|22278.23|0.03|0.05|N|O|1997-12-16|1997-11-13|1998-01-15|COLLECT COD|FOB|final ideas haggle blithely. alwa| +11369|382433|19955|1|13|19700.46|0.02|0.07|N|F|1995-06-14|1995-04-25|1995-06-21|TAKE BACK RETURN|AIR|ilently to the unusual instructions| +11369|542012|17033|2|27|28457.73|0.01|0.08|R|F|1995-03-21|1995-06-07|1995-04-08|DELIVER IN PERSON|REG AIR|s sleep blithely even| +11370|112916|423|1|28|54009.48|0.00|0.06|A|F|1993-09-09|1993-09-25|1993-09-19|NONE|REG AIR|eposits wake blithely unusual, even fox| +11370|762828|25344|2|32|60505.28|0.04|0.00|R|F|1993-11-01|1993-08-14|1993-11-08|DELIVER IN PERSON|FOB|gular ideas hag| +11371|671122|8662|1|42|45909.78|0.03|0.06|R|F|1992-10-18|1992-08-25|1992-11-05|COLLECT COD|SHIP|arefully. in| +11371|547383|9894|2|9|12873.24|0.10|0.01|A|F|1992-08-30|1992-09-18|1992-09-19|TAKE BACK RETURN|MAIL| above the care| +11371|856869|19387|3|4|7303.28|0.04|0.01|R|F|1992-07-27|1992-09-08|1992-08-05|TAKE BACK RETURN|RAIL|ross the furiously unusual deposits| +11371|384213|46721|4|39|50590.80|0.09|0.00|A|F|1992-09-16|1992-08-23|1992-10-13|DELIVER IN PERSON|TRUCK|inal, ironic instructio| +11371|451327|38855|5|47|60080.10|0.02|0.04|R|F|1992-10-21|1992-09-13|1992-11-18|TAKE BACK RETURN|MAIL|slow deposits wake| +11371|448938|36463|6|43|81137.13|0.04|0.02|A|F|1992-09-04|1992-08-27|1992-09-16|TAKE BACK RETURN|MAIL|riously regular| +11372|954290|41848|1|6|8065.50|0.02|0.02|R|F|1993-12-17|1994-02-10|1994-01-06|TAKE BACK RETURN|RAIL|al platelets slee| +11372|738980|26523|2|17|34322.15|0.10|0.00|R|F|1994-03-04|1994-01-13|1994-03-20|DELIVER IN PERSON|REG AIR| wake quietly ca| +11372|29524|42025|3|23|33430.96|0.07|0.06|R|F|1994-03-09|1994-02-02|1994-03-15|NONE|FOB|ts haggle fu| +11372|194598|44599|4|46|77859.14|0.01|0.04|R|F|1994-02-10|1994-01-16|1994-03-05|NONE|FOB|s. closely ir| +11372|595730|45731|5|32|58422.72|0.09|0.02|R|F|1994-01-18|1994-01-31|1994-01-24|TAKE BACK RETURN|TRUCK|s. carefully regular realms prin| +11373|517069|42090|1|37|40183.48|0.04|0.00|N|O|1998-09-03|1998-10-12|1998-09-15|DELIVER IN PERSON|FOB|eposits are | +11373|362672|37687|2|8|13877.28|0.09|0.00|N|O|1998-09-30|1998-09-08|1998-10-22|NONE|TRUCK|before the quickly even foxes. slyly e| +11373|415882|3407|3|32|57531.52|0.10|0.02|N|O|1998-08-08|1998-10-26|1998-09-01|COLLECT COD|TRUCK|ly. ironic requests across| +11373|725291|320|4|1|1316.26|0.09|0.07|N|O|1998-11-11|1998-10-24|1998-12-05|DELIVER IN PERSON|MAIL|uriously unusual decoys will are blithel| +11374|901337|1338|1|47|62899.63|0.03|0.06|N|O|1997-05-20|1997-06-12|1997-05-25|DELIVER IN PERSON|REG AIR|ructions cajole furiously| +11374|767188|4734|2|35|43930.25|0.10|0.01|N|O|1997-05-17|1997-06-12|1997-06-03|COLLECT COD|AIR|encies. special packages hag| +11374|115113|2620|3|34|38355.74|0.02|0.04|N|O|1997-06-26|1997-07-22|1997-07-21|DELIVER IN PERSON|AIR| instructions are above | +11374|694165|19192|4|9|10432.17|0.04|0.06|N|O|1997-06-02|1997-06-22|1997-06-04|DELIVER IN PERSON|RAIL| the blithely fluf| +11374|830719|43236|5|4|6598.68|0.05|0.02|N|O|1997-05-24|1997-07-13|1997-06-18|COLLECT COD|TRUCK|s. quickly unusual request| +11375|753833|41379|1|9|16981.20|0.04|0.08|N|O|1997-02-02|1997-01-19|1997-02-23|DELIVER IN PERSON|MAIL| ironic th| +11375|654514|17028|2|9|13216.32|0.04|0.01|N|O|1996-11-09|1997-01-12|1996-12-03|TAKE BACK RETURN|AIR| requests sl| +11375|405632|18141|3|31|47665.91|0.04|0.05|N|O|1997-01-16|1997-01-21|1997-01-27|NONE|REG AIR|pains. acc| +11375|454742|29761|4|30|50901.60|0.09|0.02|N|O|1997-01-22|1996-11-26|1997-02-21|NONE|MAIL|instructions wa| +11375|832808|45325|5|32|55704.32|0.03|0.04|N|O|1996-12-25|1997-01-02|1997-01-05|NONE|MAIL|special, regular dependencies affix. sile| +11375|1137|13638|6|3|3114.39|0.05|0.05|N|O|1997-01-01|1997-01-05|1997-01-03|COLLECT COD|MAIL|eans integrate above the sl| +11400|85608|48110|1|38|60556.80|0.10|0.04|A|F|1994-09-07|1994-09-14|1994-09-13|NONE|REG AIR|r pinto beans.| +11400|813531|26048|2|12|17333.88|0.09|0.06|R|F|1994-08-14|1994-09-21|1994-08-21|TAKE BACK RETURN|SHIP|ly ironic sheaves boost about t| +11400|4898|4899|3|15|27043.35|0.08|0.01|A|F|1994-11-21|1994-10-17|1994-12-06|NONE|RAIL|unts. fluffily busy deposits dazzle aro| +11400|320124|45137|4|34|38899.74|0.09|0.02|A|F|1994-08-31|1994-09-10|1994-09-27|COLLECT COD|MAIL|e ironic de| +11400|311640|49159|5|27|44594.01|0.01|0.08|R|F|1994-09-02|1994-10-28|1994-09-13|COLLECT COD|AIR|al deposits above the final, | +11400|727260|27261|6|7|9010.61|0.10|0.06|A|F|1994-11-10|1994-10-06|1994-12-10|COLLECT COD|SHIP|nding dependencies are car| +11401|231575|19088|1|43|64782.08|0.00|0.03|N|O|1998-08-02|1998-08-16|1998-08-28|NONE|TRUCK|s. carefully express | +11401|66433|41436|2|47|65773.21|0.01|0.01|N|O|1998-10-13|1998-09-01|1998-11-01|COLLECT COD|SHIP|ep fluffily. | +11402|784572|9603|1|46|76200.84|0.00|0.03|R|F|1994-05-03|1994-05-18|1994-05-13|COLLECT COD|REG AIR|ove the bli| +11402|292910|30426|2|19|36155.10|0.01|0.08|A|F|1994-06-02|1994-06-12|1994-07-02|NONE|REG AIR|lithely carefully unusual package| +11402|933878|46397|3|14|26765.62|0.07|0.07|R|F|1994-04-22|1994-06-05|1994-05-11|DELIVER IN PERSON|SHIP|usly pending requests sleep. blithely f| +11402|676274|1301|4|44|55010.56|0.04|0.00|A|F|1994-04-23|1994-04-23|1994-05-05|COLLECT COD|FOB|pendencies use caref| +11402|132658|45161|5|9|15215.85|0.02|0.01|A|F|1994-04-17|1994-05-12|1994-05-01|NONE|RAIL|nal theodolite| +11402|579988|5011|6|26|53766.96|0.06|0.07|A|F|1994-07-18|1994-05-28|1994-08-13|COLLECT COD|TRUCK|nal accounts cajole | +11403|989583|39584|1|41|68574.14|0.00|0.04|N|F|1995-05-27|1995-06-23|1995-06-25|NONE|RAIL|bold reques| +11403|907419|7420|2|40|57054.80|0.09|0.07|A|F|1995-05-27|1995-08-02|1995-06-15|DELIVER IN PERSON|SHIP|ldly final theodolites. | +11403|977598|2637|3|19|31835.45|0.06|0.07|N|F|1995-05-25|1995-08-13|1995-06-22|TAKE BACK RETURN|RAIL|regular requests nag quickly. furiously| +11403|480740|30741|4|29|49900.88|0.06|0.05|R|F|1995-05-18|1995-06-18|1995-05-21|DELIVER IN PERSON|TRUCK|about the express accounts. slyly| +11403|789491|27037|5|37|58477.02|0.06|0.02|N|O|1995-08-22|1995-06-16|1995-09-18|TAKE BACK RETURN|REG AIR|g the pending dinos-- blith| +11404|542071|17092|1|38|42295.90|0.03|0.01|A|F|1993-10-24|1993-12-19|1993-11-03|NONE|TRUCK|ts sleep blithely deposits. fox| +11404|586350|48862|2|29|41653.57|0.02|0.00|R|F|1993-12-20|1993-12-09|1994-01-17|DELIVER IN PERSON|REG AIR|furiously across the carefull| +11404|782905|32906|3|46|91442.02|0.03|0.06|R|F|1993-12-18|1993-12-07|1994-01-06|DELIVER IN PERSON|AIR|to beans believe quickly furiously bold | +11404|283164|33165|4|20|22943.00|0.05|0.02|A|F|1993-12-14|1993-12-17|1993-12-25|NONE|SHIP|final, ironic requests. bravely reg| +11404|133119|20626|5|50|57605.50|0.05|0.05|A|F|1993-11-12|1993-11-15|1993-11-20|TAKE BACK RETURN|FOB|uests alon| +11405|110617|10618|1|45|73242.45|0.03|0.02|R|F|1995-06-09|1995-08-25|1995-06-14|COLLECT COD|SHIP|final dependencies detect slyl| +11405|136925|11930|2|1|1961.92|0.04|0.01|N|O|1995-08-14|1995-08-23|1995-08-28|NONE|TRUCK|ely after th| +11405|294880|7386|3|15|28123.05|0.05|0.02|N|O|1995-07-19|1995-08-20|1995-08-08|DELIVER IN PERSON|REG AIR|n dependencies nag carefully slowly specia| +11405|45407|32908|4|48|64915.20|0.07|0.06|N|O|1995-06-20|1995-06-28|1995-06-23|DELIVER IN PERSON|SHIP|ounts thrash fur| +11405|146528|21533|5|40|62980.80|0.01|0.08|N|O|1995-08-23|1995-08-08|1995-08-27|COLLECT COD|RAIL|ideas. slyly final p| +11405|683615|46129|6|22|35168.76|0.07|0.00|N|O|1995-07-30|1995-07-02|1995-08-28|NONE|REG AIR|lar instructions boost| +11406|836310|48827|1|28|34895.56|0.01|0.06|A|F|1995-04-07|1995-04-12|1995-04-14|COLLECT COD|MAIL|g blithely f| +11406|851528|26563|2|5|7397.40|0.01|0.02|A|F|1995-04-24|1995-05-27|1995-04-25|NONE|TRUCK|nding accounts detect idly. unu| +11406|623137|35650|3|19|20141.90|0.04|0.03|A|F|1995-04-02|1995-04-26|1995-04-25|NONE|REG AIR|accounts integrate sl| +11406|61459|48963|4|25|35511.25|0.06|0.08|N|O|1995-07-03|1995-04-21|1995-07-25|TAKE BACK RETURN|AIR|uickly unusual theo| +11406|939179|26734|5|38|46288.94|0.00|0.03|A|F|1995-06-01|1995-05-15|1995-06-13|NONE|TRUCK|y braids. | +11407|350310|12818|1|12|16323.60|0.08|0.02|N|O|1998-10-05|1998-10-11|1998-10-16|DELIVER IN PERSON|TRUCK|le furiously about the even, regular a| +11407|644617|7130|2|9|14054.22|0.06|0.02|N|O|1998-11-02|1998-09-22|1998-11-22|COLLECT COD|MAIL|osits across the slyly ironic | +11407|61546|49050|3|22|33165.88|0.02|0.07|N|O|1998-11-18|1998-10-10|1998-12-07|TAKE BACK RETURN|MAIL|s sleep. thinly ironic accounts aro| +11407|397295|34817|4|41|57083.48|0.07|0.01|N|O|1998-10-08|1998-09-24|1998-10-19|COLLECT COD|RAIL|latelets wake sly| +11407|321620|46633|5|32|52531.52|0.05|0.01|N|O|1998-09-28|1998-09-29|1998-10-05|NONE|RAIL|sits are. caref| +11432|443084|18101|1|1|1027.06|0.09|0.02|N|O|1996-08-29|1996-11-05|1996-09-23|COLLECT COD|TRUCK|lets. furiously sp| +11432|909633|9634|2|10|16425.90|0.08|0.01|N|O|1996-10-25|1996-10-22|1996-10-30|COLLECT COD|REG AIR|old theodolites. silent hockey | +11432|185652|23162|3|35|60817.75|0.06|0.07|N|O|1996-12-14|1996-10-22|1997-01-01|DELIVER IN PERSON|RAIL|lets use slo| +11432|249290|11795|4|32|39656.96|0.01|0.00|N|O|1996-10-09|1996-10-15|1996-10-13|NONE|REG AIR|lly unusual instructions. ev| +11432|811823|36856|5|5|8673.90|0.08|0.01|N|O|1996-10-04|1996-09-26|1996-10-08|COLLECT COD|RAIL|phins nag idly. foxes u| +11432|303145|15652|6|6|6888.78|0.08|0.01|N|O|1996-11-14|1996-10-10|1996-12-06|COLLECT COD|FOB|hely final packages along the pending | +11432|948137|48138|7|17|20146.53|0.03|0.05|N|O|1996-11-14|1996-10-29|1996-12-11|TAKE BACK RETURN|AIR|ular ideas cajole slyly carefu| +11433|335080|35081|1|38|42372.66|0.00|0.00|A|F|1993-05-20|1993-05-14|1993-05-25|NONE|AIR|ost enticingly stealthily fluffy depo| +11433|677356|14896|2|4|5333.28|0.00|0.05|R|F|1993-05-21|1993-06-08|1993-06-05|COLLECT COD|AIR|regular dependen| +11433|310058|47577|3|22|23496.88|0.08|0.00|R|F|1993-04-16|1993-06-06|1993-04-18|COLLECT COD|REG AIR|uests sleep furiously final | +11433|142125|29632|4|2|2334.24|0.01|0.03|R|F|1993-07-15|1993-05-07|1993-07-21|TAKE BACK RETURN|RAIL| ruthless instructions. f| +11433|686765|11792|5|7|12262.11|0.04|0.01|R|F|1993-05-11|1993-06-05|1993-05-13|COLLECT COD|AIR|g packages-- car| +11433|447586|47587|6|50|76678.00|0.09|0.07|R|F|1993-07-21|1993-05-18|1993-08-02|NONE|REG AIR|theodolites. pending instructions bo| +11434|80417|17921|1|27|37730.07|0.04|0.02|R|F|1993-04-10|1993-05-01|1993-04-15|TAKE BACK RETURN|MAIL|ng asymptotes use. special requ| +11434|553646|3647|2|26|44190.12|0.08|0.00|A|F|1993-04-26|1993-04-14|1993-04-30|TAKE BACK RETURN|REG AIR|its. furiously ironic requ| +11434|119054|19055|3|32|34337.60|0.07|0.00|A|F|1993-04-10|1993-04-01|1993-04-28|COLLECT COD|FOB|usual dependencies are alongside of t| +11435|600340|37877|1|36|44651.16|0.08|0.02|R|F|1993-04-08|1993-02-22|1993-04-20|NONE|TRUCK|ily special multipliers are instructions. | +11435|913922|38959|2|20|38717.60|0.03|0.02|A|F|1993-01-20|1993-03-31|1993-02-17|TAKE BACK RETURN|FOB|quickly pending ideas solve. furiously re| +11435|271287|33793|3|17|21390.59|0.03|0.03|A|F|1993-02-16|1993-03-14|1993-03-04|COLLECT COD|MAIL|e quickly bold idea| +11435|516140|41161|4|48|55493.76|0.06|0.04|A|F|1993-02-08|1993-03-22|1993-03-04|COLLECT COD|RAIL|onic packages sleep blithely warh| +11435|748486|36029|5|19|29154.55|0.07|0.07|R|F|1993-02-08|1993-02-09|1993-02-21|NONE|AIR|fluffily thin packages haggle carefully a| +11435|794740|19771|6|6|11008.26|0.10|0.02|A|F|1993-02-28|1993-03-19|1993-03-17|TAKE BACK RETURN|AIR|ronic packages. accounts nag. bl| +11435|192718|42719|7|25|45267.75|0.07|0.07|A|F|1993-04-12|1993-03-14|1993-04-29|COLLECT COD|REG AIR|ecial accounts mold| +11436|6265|43766|1|48|56220.48|0.07|0.08|N|O|1997-09-28|1997-10-01|1997-10-16|NONE|SHIP|nts. slyly bold accounts nag slyly.| +11436|289907|39908|2|1|1896.89|0.00|0.07|N|O|1997-11-15|1997-10-12|1997-12-15|DELIVER IN PERSON|RAIL|ously sly foxe| +11437|806973|44522|1|22|41358.46|0.05|0.00|N|O|1997-10-13|1997-12-11|1997-10-20|TAKE BACK RETURN|SHIP|ss hockey players are furi| +11437|780591|30592|2|38|63519.28|0.07|0.08|N|O|1997-11-10|1997-12-06|1997-11-20|NONE|AIR|ld, final accounts-- blithely | +11437|389412|26934|3|15|22521.00|0.09|0.07|N|O|1997-12-15|1997-12-03|1998-01-10|DELIVER IN PERSON|RAIL|gle. packages above th| +11437|834994|22543|4|28|54010.60|0.03|0.05|N|O|1997-11-29|1997-12-21|1997-12-24|NONE|AIR|ly regular requests: slyly ruthless dolp| +11438|381651|19173|1|32|55444.48|0.05|0.06|R|F|1993-05-08|1993-04-09|1993-05-21|NONE|SHIP|lithely even asymptotes| +11439|748726|48727|1|4|7098.76|0.04|0.01|R|F|1992-05-03|1992-04-13|1992-05-19|NONE|TRUCK|l deposits among the furiously ironi| +11439|823247|35764|2|4|4680.80|0.10|0.02|R|F|1992-03-20|1992-04-03|1992-03-28|NONE|MAIL|the silent excuses. carefull| +11439|296098|21109|3|21|22975.68|0.04|0.04|A|F|1992-02-10|1992-04-07|1992-02-29|DELIVER IN PERSON|MAIL|cajole slyly instead of the | +11464|931574|31575|1|8|12844.24|0.10|0.05|N|O|1995-08-24|1995-06-07|1995-09-20|TAKE BACK RETURN|SHIP|alms. furiously regular pains haggle slyly | +11464|947572|22609|2|18|29151.54|0.10|0.03|N|O|1995-07-04|1995-07-23|1995-08-03|NONE|RAIL|efully even deposits maintain regular, ir| +11464|834948|22497|3|16|30126.40|0.09|0.00|N|O|1995-07-14|1995-06-06|1995-07-27|NONE|MAIL| busy foxes doubt blit| +11464|954765|17285|4|37|67329.64|0.05|0.07|N|O|1995-08-22|1995-06-21|1995-09-17|NONE|REG AIR| the furious ideas. carefully ironic t| +11464|722448|9991|5|10|14704.10|0.10|0.01|N|O|1995-07-24|1995-06-09|1995-07-27|COLLECT COD|SHIP|fluffily bold instru| +11464|175688|695|6|50|88184.00|0.03|0.08|A|F|1995-05-31|1995-07-24|1995-06-13|COLLECT COD|SHIP|slyly bold requests wake evenly.| +11465|211751|49264|1|22|36580.28|0.06|0.03|N|O|1996-08-20|1996-10-21|1996-09-11|COLLECT COD|AIR|regular ideas x-ray again| +11466|74254|11758|1|38|46673.50|0.04|0.05|N|O|1996-04-29|1996-04-10|1996-05-08|DELIVER IN PERSON|TRUCK|kages after the ironic req| +11466|970224|7782|2|47|60826.46|0.07|0.02|N|O|1996-06-17|1996-05-31|1996-07-13|NONE|FOB|e theodolites.| +11466|553102|40636|3|34|39272.72|0.00|0.03|N|O|1996-06-05|1996-05-29|1996-06-06|COLLECT COD|SHIP| final pinto beans eat car| +11466|977839|27840|4|10|19167.90|0.09|0.03|N|O|1996-03-10|1996-04-07|1996-04-08|DELIVER IN PERSON|TRUCK|g instructions| +11467|542622|42623|1|26|43279.60|0.05|0.07|N|O|1997-03-24|1997-02-17|1997-04-23|TAKE BACK RETURN|REG AIR| around the special requests engage slyly| +11468|831310|18859|1|39|48409.53|0.06|0.08|N|O|1997-05-05|1997-07-01|1997-05-15|TAKE BACK RETURN|TRUCK|dencies sleep carefull| +11468|820075|7624|2|10|9950.30|0.05|0.02|N|O|1997-07-04|1997-06-14|1997-07-21|TAKE BACK RETURN|AIR|unts wake furiously above the special reque| +11468|995667|20706|3|7|12338.34|0.04|0.00|N|O|1997-07-05|1997-06-21|1997-07-14|DELIVER IN PERSON|RAIL|y final requests wake. furiously unusu| +11468|163238|38245|4|14|18217.22|0.07|0.01|N|O|1997-05-10|1997-06-23|1997-05-24|NONE|AIR|arefully among the fluffily brave re| +11469|952576|40134|1|37|60255.61|0.10|0.06|R|F|1995-05-08|1995-05-24|1995-05-24|TAKE BACK RETURN|SHIP|ckages eat blithely. ev| +11469|939866|27421|2|27|51457.14|0.06|0.05|A|F|1995-05-27|1995-05-01|1995-06-10|COLLECT COD|RAIL|ual requests. even, regular instructions a| +11469|327453|2466|3|6|8882.64|0.05|0.02|A|F|1995-04-28|1995-04-17|1995-05-01|COLLECT COD|AIR|arefully ironic requests cajole. blithel| +11469|487829|25357|4|50|90840.00|0.08|0.04|R|F|1995-04-11|1995-04-08|1995-05-09|COLLECT COD|REG AIR|d epitaphs. fluffily final requests are spe| +11469|938184|13221|5|27|32997.78|0.06|0.07|R|F|1995-04-22|1995-05-20|1995-05-19|NONE|MAIL|ding theodolites against the quickly unusu| +11469|49724|12225|6|16|26779.52|0.01|0.05|R|F|1995-04-26|1995-05-07|1995-05-06|DELIVER IN PERSON|FOB|gularly regul| +11470|902375|14894|1|8|11018.64|0.08|0.06|A|F|1992-07-13|1992-06-16|1992-08-02|DELIVER IN PERSON|MAIL| ideas use quickly. slyly regular | +11470|205317|17822|2|11|13445.30|0.09|0.08|R|F|1992-07-07|1992-06-10|1992-07-23|NONE|REG AIR| carefully special pack| +11470|749319|49320|3|24|32838.72|0.10|0.07|A|F|1992-06-01|1992-06-14|1992-06-04|NONE|RAIL|ar theodolites according to the p| +11471|39335|1836|1|46|58619.18|0.00|0.03|R|F|1993-07-06|1993-05-19|1993-08-05|TAKE BACK RETURN|AIR|e idly special idea| +11471|101786|1787|2|13|23241.14|0.08|0.07|R|F|1993-06-11|1993-05-20|1993-06-28|TAKE BACK RETURN|REG AIR|even ideas. quickly final instructions are | +11471|709887|22402|3|19|36040.15|0.04|0.06|R|F|1993-05-01|1993-05-23|1993-05-30|COLLECT COD|SHIP|ial, regular instru| +11496|69377|19378|1|17|22888.29|0.03|0.00|N|O|1997-06-05|1997-07-05|1997-06-25|DELIVER IN PERSON|RAIL|y ironic requests na| +11496|19114|44115|2|19|19629.09|0.07|0.01|N|O|1997-07-28|1997-07-15|1997-08-21|TAKE BACK RETURN|TRUCK|instruction| +11496|248173|48174|3|13|14575.08|0.04|0.02|N|O|1997-07-10|1997-06-25|1997-07-17|NONE|AIR|ckages use fluffily unusual sentiments.| +11497|168413|5923|1|38|56293.58|0.02|0.03|N|O|1998-03-13|1998-02-13|1998-03-15|TAKE BACK RETURN|TRUCK|taphs. carefully regular| +11498|972444|10002|1|12|18196.80|0.10|0.06|A|F|1994-09-05|1994-09-25|1994-09-09|TAKE BACK RETURN|MAIL|ans cajole slyly across the blit| +11498|859894|9895|2|26|48200.10|0.04|0.00|R|F|1994-09-10|1994-11-05|1994-09-23|TAKE BACK RETURN|SHIP|press courts bo| +11498|227125|14638|3|2|2104.22|0.09|0.08|A|F|1994-10-09|1994-09-14|1994-10-29|DELIVER IN PERSON|REG AIR|doubt. even accounts boost furiously f| +11498|276709|26710|4|1|1685.69|0.10|0.05|R|F|1994-10-01|1994-10-19|1994-10-09|TAKE BACK RETURN|TRUCK|ins. final, final packages cajole blith| +11498|639833|14858|5|46|81548.80|0.04|0.08|R|F|1994-12-05|1994-10-30|1994-12-17|COLLECT COD|FOB|l requests wake. regular packages are| +11498|656496|44036|6|3|4357.38|0.09|0.03|R|F|1994-08-25|1994-09-19|1994-09-13|DELIVER IN PERSON|REG AIR|r requests a| +11498|724725|37240|7|5|8748.45|0.08|0.05|R|F|1994-10-04|1994-10-19|1994-10-14|TAKE BACK RETURN|SHIP|s. carefully regular foxes nag caref| +11499|438674|13691|1|13|20964.45|0.10|0.01|N|O|1996-04-07|1996-04-19|1996-04-09|TAKE BACK RETURN|RAIL|ly express forges na| +11500|398542|48543|1|49|80385.97|0.02|0.04|N|O|1995-06-20|1995-07-16|1995-07-17|NONE|FOB|osits use along| +11501|5314|17815|1|6|7315.86|0.03|0.01|A|F|1992-12-01|1992-12-11|1992-12-26|COLLECT COD|REG AIR|the quickly fina| +11501|300142|143|2|47|53680.11|0.03|0.02|R|F|1992-11-03|1992-12-29|1992-11-16|TAKE BACK RETURN|MAIL|regular theodolite| +11501|471836|9364|3|10|18078.10|0.10|0.00|R|F|1993-02-11|1992-11-23|1993-03-08|NONE|SHIP|ultipliers haggle carefully ironic theod| +11501|134308|21815|4|50|67115.00|0.01|0.00|R|F|1993-02-08|1993-01-14|1993-03-07|DELIVER IN PERSON|TRUCK|ep furiously. bold packages integrate st| +11501|306568|19075|5|8|12596.40|0.07|0.07|R|F|1992-12-11|1992-12-17|1992-12-15|TAKE BACK RETURN|REG AIR|equests sleep after th| +11502|692236|42237|1|39|47899.80|0.03|0.01|N|O|1997-01-18|1996-11-26|1997-02-02|COLLECT COD|REG AIR|requests sleep. final instructions use unus| +11502|395552|33074|2|1|1647.54|0.10|0.08|N|O|1996-12-13|1996-11-01|1996-12-20|TAKE BACK RETURN|AIR|gular platelets at the fluffi| +11503|381801|31802|1|33|62132.07|0.10|0.05|A|F|1993-03-02|1993-01-21|1993-03-30|NONE|REG AIR|uriously. regular instructions eat even| +11503|916643|29162|2|5|8298.00|0.04|0.03|R|F|1993-01-31|1993-02-09|1993-02-07|TAKE BACK RETURN|REG AIR|ckages haggle. final accounts| +11503|17386|42387|3|35|45618.30|0.08|0.05|A|F|1992-11-27|1993-01-24|1992-12-27|NONE|FOB|l packages during the blith| +11528|601292|26317|1|50|59663.00|0.03|0.02|N|O|1997-07-20|1997-09-21|1997-07-27|TAKE BACK RETURN|FOB|. furiously | +11528|905213|17732|2|25|30454.25|0.09|0.03|N|O|1997-09-09|1997-09-03|1997-10-04|TAKE BACK RETURN|RAIL|pecial asymptotes. regular packages r| +11528|909213|34250|3|9|10999.53|0.00|0.00|N|O|1997-09-08|1997-09-28|1997-10-06|NONE|TRUCK|nto beans. car| +11528|135557|35558|4|13|20703.15|0.10|0.01|N|O|1997-09-16|1997-10-03|1997-10-03|NONE|REG AIR|g accounts. ev| +11528|299740|37256|5|31|53931.63|0.02|0.00|N|O|1997-09-15|1997-08-20|1997-09-25|TAKE BACK RETURN|RAIL|regular, final requests hang slyly. caref| +11528|714721|14722|6|36|62484.84|0.04|0.01|N|O|1997-09-02|1997-09-15|1997-09-19|NONE|RAIL|n pinto beans alo| +11529|294702|19713|1|29|49204.01|0.07|0.03|R|F|1995-05-30|1995-04-18|1995-06-12|NONE|AIR|ajole blithely carefully | +11529|53566|16068|2|45|68380.20|0.04|0.03|N|F|1995-06-02|1995-04-19|1995-06-18|COLLECT COD|TRUCK|ic requests sleep furiously ironic a| +11529|275490|37996|3|14|20516.72|0.10|0.02|A|F|1995-05-11|1995-06-07|1995-05-21|COLLECT COD|RAIL|ic requests wake slyly. regular accounts x| +11529|147862|10365|4|32|61115.52|0.07|0.00|N|O|1995-06-21|1995-04-22|1995-07-14|TAKE BACK RETURN|FOB|uctions wake furiously| +11529|108894|46401|5|28|53280.92|0.02|0.02|R|F|1995-03-31|1995-05-14|1995-04-11|TAKE BACK RETURN|TRUCK| slyly even asymptotes:| +11529|175094|25095|6|11|12859.99|0.00|0.07|R|F|1995-04-23|1995-06-04|1995-05-19|TAKE BACK RETURN|REG AIR|the furiously express requests. blithely ex| +11530|548385|10896|1|19|27233.84|0.09|0.08|N|O|1997-05-29|1997-07-05|1997-06-20|COLLECT COD|REG AIR| quickly requests-- ideas wake carefully. | +11530|694089|31629|2|22|23827.10|0.01|0.05|N|O|1997-05-23|1997-07-08|1997-06-03|NONE|AIR|onic, pending instructions integrat| +11531|938850|1369|1|37|69885.97|0.05|0.02|R|F|1993-05-12|1993-04-24|1993-05-13|NONE|AIR|ost slyly regular, bold dolphins| +11531|243835|43836|2|39|69373.98|0.08|0.04|A|F|1993-02-28|1993-04-17|1993-03-07|DELIVER IN PERSON|AIR| requests. special theodolite| +11531|120812|33315|3|14|25659.34|0.04|0.04|A|F|1993-04-29|1993-05-23|1993-05-25|COLLECT COD|MAIL|to beans solve | +11531|483948|46458|4|6|11591.52|0.02|0.07|R|F|1993-03-04|1993-05-10|1993-03-06|COLLECT COD|REG AIR|cial, regular accounts. furiousl| +11531|699558|49559|5|37|57628.24|0.01|0.00|A|F|1993-06-07|1993-05-02|1993-06-09|COLLECT COD|FOB|ntegrate-- carefull| +11532|899794|24829|1|21|37668.75|0.00|0.03|N|O|1997-05-14|1997-06-02|1997-05-24|DELIVER IN PERSON|REG AIR|frays. blithely final packages| +11533|130908|30909|1|20|38778.00|0.00|0.02|A|F|1994-07-17|1994-08-23|1994-08-07|TAKE BACK RETURN|REG AIR|deposits. furiously regular asymptotes w| +11533|155986|30993|2|5|10209.90|0.10|0.06|R|F|1994-09-20|1994-08-19|1994-09-26|DELIVER IN PERSON|MAIL|its along the | +11533|649892|37429|3|13|23944.18|0.00|0.06|A|F|1994-09-24|1994-08-20|1994-09-28|TAKE BACK RETURN|FOB| quickly regular platelets a| +11533|731469|43984|4|38|57016.34|0.06|0.06|R|F|1994-10-13|1994-08-12|1994-10-22|NONE|REG AIR|nic, final accounts. carefully regu| +11533|788740|38741|5|36|65833.56|0.03|0.07|A|F|1994-08-14|1994-09-17|1994-09-12|DELIVER IN PERSON|REG AIR| regular a| +11533|337358|37359|6|13|18139.42|0.01|0.01|A|F|1994-10-05|1994-09-25|1994-10-28|COLLECT COD|SHIP|slyly express accounts. blithe| +11533|961739|24259|7|9|16206.21|0.03|0.07|A|F|1994-08-27|1994-08-21|1994-09-26|NONE|RAIL|ffily special courts | +11534|944461|6980|1|18|27097.56|0.08|0.00|N|O|1996-07-03|1996-06-29|1996-07-22|NONE|RAIL|ly express reques| +11534|541997|4508|2|23|46896.31|0.00|0.03|N|O|1996-06-03|1996-06-04|1996-06-05|COLLECT COD|SHIP|ding packages wake. even pearls wake blit| +11534|334147|9160|3|14|16535.82|0.10|0.05|N|O|1996-06-23|1996-06-09|1996-07-06|DELIVER IN PERSON|RAIL|eposits use quickly| +11534|999878|37436|4|40|79113.20|0.02|0.07|N|O|1996-06-21|1996-07-16|1996-07-11|TAKE BACK RETURN|REG AIR|ts cajole according to the instructio| +11535|895524|33076|1|31|47103.88|0.08|0.06|A|F|1994-04-09|1994-04-29|1994-04-26|NONE|REG AIR|y across the regular, re| +11535|66112|41115|2|18|19405.98|0.08|0.03|A|F|1994-05-19|1994-06-12|1994-05-29|TAKE BACK RETURN|RAIL|s. unusual, ironic pinto beans| +11535|139956|2459|3|39|77842.05|0.10|0.03|R|F|1994-07-06|1994-05-07|1994-07-17|NONE|AIR|he pending, silent packages use fluffily| +11535|228539|3548|4|38|55765.76|0.09|0.04|R|F|1994-04-17|1994-06-08|1994-05-12|DELIVER IN PERSON|RAIL| pending accounts. ca| +11535|51442|13944|5|40|55737.60|0.09|0.01|A|F|1994-05-16|1994-06-01|1994-05-23|TAKE BACK RETURN|SHIP|eans use fluffily by the regular | +11535|581134|43646|6|32|38883.52|0.01|0.07|R|F|1994-03-17|1994-04-14|1994-03-22|COLLECT COD|SHIP|om the regular, ironic deposits. | +11535|102917|2918|7|22|42238.02|0.06|0.07|A|F|1994-06-07|1994-04-25|1994-06-14|COLLECT COD|AIR|er the regular, bold packages. carefully ca| +11560|711928|11929|1|15|29098.35|0.00|0.05|N|O|1997-03-22|1997-03-01|1997-03-25|TAKE BACK RETURN|SHIP|s. slyly silent accounts haggle slyly. ca| +11560|367770|30278|2|41|75348.16|0.07|0.03|N|O|1997-02-10|1997-04-03|1997-03-02|NONE|MAIL|carefully expr| +11561|516359|16360|1|37|50887.21|0.01|0.06|N|O|1995-08-07|1995-05-18|1995-08-08|TAKE BACK RETURN|TRUCK|osits doubt quic| +11561|429368|29369|2|35|45406.90|0.05|0.01|R|F|1995-06-02|1995-06-12|1995-06-16|DELIVER IN PERSON|SHIP|s nag slyly c| +11561|384184|21706|3|38|48190.46|0.10|0.00|R|F|1995-05-29|1995-06-21|1995-06-02|COLLECT COD|MAIL|. accounts sleep sl| +11562|340497|3004|1|5|7687.40|0.09|0.04|R|F|1994-09-21|1994-10-24|1994-09-26|TAKE BACK RETURN|RAIL|even theodolites boost | +11562|716954|41983|2|8|15767.36|0.10|0.03|A|F|1994-10-30|1994-10-08|1994-11-04|TAKE BACK RETURN|RAIL|e the final, regula| +11563|720873|8416|1|39|73859.76|0.06|0.07|A|F|1995-04-11|1995-03-02|1995-04-21|DELIVER IN PERSON|REG AIR|sly special ideas | +11563|705710|43253|2|6|10294.08|0.07|0.01|R|F|1995-02-17|1995-03-29|1995-03-17|NONE|TRUCK|ual, final | +11563|857643|32678|3|45|72027.00|0.04|0.05|R|F|1995-01-12|1995-03-24|1995-02-06|COLLECT COD|AIR|even dolphins. blithely expr| +11563|404473|16982|4|29|39946.05|0.02|0.02|R|F|1995-02-15|1995-02-12|1995-02-25|COLLECT COD|AIR|osits sleep ca| +11563|977194|14752|5|47|59744.05|0.06|0.07|A|F|1995-02-23|1995-03-09|1995-03-21|DELIVER IN PERSON|FOB| theodolites against the foxes boo| +11564|841138|28687|1|26|28056.34|0.03|0.03|A|F|1994-06-18|1994-06-29|1994-07-14|TAKE BACK RETURN|REG AIR|e carefully according to the quickly e| +11565|370296|45311|1|13|17761.64|0.04|0.01|N|O|1997-05-08|1997-05-03|1997-05-27|DELIVER IN PERSON|SHIP| carefully unusual warthogs sleep ar| +11565|551078|13590|2|1|1129.05|0.06|0.06|N|O|1997-03-25|1997-05-26|1997-04-14|TAKE BACK RETURN|FOB|al accounts int| +11565|961840|24360|3|5|9509.00|0.01|0.01|N|O|1997-05-13|1997-04-21|1997-06-08|NONE|RAIL|ounts use regular instructions. slyly b| +11565|639817|27354|4|13|22838.14|0.03|0.02|N|O|1997-07-09|1997-04-20|1997-07-18|COLLECT COD|SHIP|oxes detect qu| +11566|514559|14560|1|49|77102.97|0.09|0.02|A|F|1994-10-04|1994-08-23|1994-10-21|DELIVER IN PERSON|RAIL|e bravely bl| +11567|545376|20397|1|16|22741.60|0.06|0.03|A|F|1995-05-09|1995-04-04|1995-05-24|NONE|REG AIR|equests wake f| +11567|125374|37877|2|17|23789.29|0.07|0.02|R|F|1995-04-27|1995-04-25|1995-05-09|TAKE BACK RETURN|AIR|ymptotes. furi| +11592|383988|21510|1|43|89094.71|0.07|0.08|R|F|1992-07-28|1992-07-05|1992-07-31|TAKE BACK RETURN|SHIP|structions boost furi| +11592|677115|39629|2|42|45867.36|0.06|0.02|A|F|1992-05-27|1992-06-05|1992-06-14|DELIVER IN PERSON|MAIL|pending packages sleep furious| +11592|271370|8886|3|14|18779.04|0.06|0.05|A|F|1992-08-04|1992-07-05|1992-08-22|TAKE BACK RETURN|SHIP|ial platelets. regular| +11592|908083|8084|4|36|39277.44|0.04|0.08|R|F|1992-08-05|1992-07-14|1992-08-22|DELIVER IN PERSON|MAIL| regular instructio| +11592|138721|13726|5|19|33434.68|0.09|0.06|R|F|1992-05-25|1992-06-05|1992-06-19|COLLECT COD|AIR|s. slow, ironi| +11592|468109|30619|6|40|43083.20|0.04|0.05|A|F|1992-07-07|1992-07-03|1992-07-24|TAKE BACK RETURN|FOB|ly around the regular foxes. slyly sile| +11593|257741|7742|1|34|57756.82|0.02|0.00|N|O|1997-07-04|1997-06-13|1997-07-12|NONE|FOB|kages haggle over the furiou| +11593|838073|38074|2|15|15165.45|0.01|0.02|N|O|1997-04-18|1997-05-02|1997-05-14|TAKE BACK RETURN|REG AIR|blithely regular instructions. slyly fina| +11593|486020|36021|3|18|18108.00|0.07|0.02|N|O|1997-05-26|1997-05-19|1997-06-01|DELIVER IN PERSON|REG AIR|ly ironic depos| +11593|537177|49688|4|48|58279.20|0.07|0.04|N|O|1997-06-21|1997-04-25|1997-07-18|COLLECT COD|MAIL|riously fluffily regu| +11594|566994|42017|1|34|70072.98|0.05|0.08|A|F|1994-04-03|1994-03-31|1994-04-17|DELIVER IN PERSON|SHIP|ully regular packages sleep at| +11594|460293|47821|2|42|52637.34|0.04|0.08|A|F|1994-06-10|1994-05-30|1994-06-19|DELIVER IN PERSON|MAIL|ecial ideas. blithely| +11594|142985|30492|3|37|75035.26|0.06|0.04|A|F|1994-05-28|1994-04-03|1994-06-18|COLLECT COD|SHIP|ck deposits cajo| +11594|147172|22177|4|9|10972.53|0.02|0.07|A|F|1994-04-07|1994-05-04|1994-04-19|NONE|TRUCK| slow packages maintai| +11595|5385|5386|1|27|34840.26|0.00|0.03|N|O|1997-07-31|1997-07-25|1997-08-19|COLLECT COD|MAIL|refully regular deposits. regular excuses s| +11595|497592|47593|2|16|25433.12|0.00|0.02|N|O|1997-07-25|1997-07-06|1997-08-19|NONE|MAIL|tructions integrate slyly| +11595|16497|3998|3|32|45231.68|0.06|0.01|N|O|1997-08-13|1997-06-25|1997-08-19|DELIVER IN PERSON|AIR|re. slowly reg| +11595|259815|9816|4|43|76316.40|0.02|0.08|N|O|1997-05-27|1997-06-11|1997-06-06|COLLECT COD|SHIP|iously dar| +11595|694053|6567|5|2|2094.04|0.02|0.03|N|O|1997-07-12|1997-06-09|1997-07-22|DELIVER IN PERSON|REG AIR|mpress fur| +11595|940024|40025|6|17|18087.66|0.02|0.03|N|O|1997-05-14|1997-06-25|1997-06-12|DELIVER IN PERSON|RAIL|lyly even depo| +11596|612606|37631|1|29|44038.53|0.00|0.04|N|O|1997-06-23|1997-08-05|1997-07-12|TAKE BACK RETURN|MAIL|ep quickly a| +11597|983856|21414|1|34|65953.54|0.04|0.00|R|F|1994-08-12|1994-07-19|1994-09-02|TAKE BACK RETURN|MAIL|es wake ca| +11597|653728|16242|2|6|10090.14|0.01|0.04|R|F|1994-08-02|1994-09-06|1994-08-18|COLLECT COD|AIR|ges x-ray furiously. | +11597|206367|18872|3|27|34380.45|0.03|0.00|A|F|1994-09-14|1994-08-25|1994-09-21|DELIVER IN PERSON|TRUCK|nts. slyly regular depen| +11597|396585|46586|4|3|5044.71|0.05|0.01|A|F|1994-09-16|1994-08-09|1994-09-25|NONE|RAIL|ironic ideas haggle furiously along the fur| +11597|389663|2171|5|30|52579.50|0.05|0.02|A|F|1994-08-13|1994-08-03|1994-08-29|TAKE BACK RETURN|RAIL| affix. furiously bold sheave| +11598|790356|27902|1|50|72316.00|0.01|0.00|N|O|1996-11-07|1996-09-07|1996-12-04|TAKE BACK RETURN|FOB|thely furiously even instru| +11598|503750|16261|2|9|15783.57|0.03|0.04|N|O|1996-07-22|1996-09-21|1996-08-03|NONE|AIR|y express foxes haggle slyly across the fu| +11598|513523|26034|3|13|19974.50|0.02|0.04|N|O|1996-09-05|1996-10-10|1996-10-02|COLLECT COD|FOB| slyly express reques| +11598|780123|17669|4|39|46920.51|0.04|0.01|N|O|1996-09-12|1996-09-21|1996-10-03|DELIVER IN PERSON|MAIL|. blithely regular theodolites | +11598|526321|1342|5|23|30987.90|0.03|0.05|N|O|1996-11-07|1996-09-05|1996-11-23|NONE|SHIP|l requests. silently pending asymptotes | +11599|203772|16277|1|42|70381.92|0.08|0.01|R|F|1993-03-01|1993-02-03|1993-03-05|TAKE BACK RETURN|RAIL|uests. carefully special instructions | +11624|548890|36421|1|11|21327.57|0.06|0.02|R|F|1993-06-25|1993-05-19|1993-07-01|DELIVER IN PERSON|TRUCK|yly regular pinto beans believe. busily | +11624|187155|37156|2|15|18632.25|0.02|0.01|A|F|1993-04-04|1993-05-19|1993-04-29|COLLECT COD|AIR|ffix ruthlessly. carefully final platelet| +11624|513209|38230|3|11|13443.98|0.09|0.05|A|F|1993-05-07|1993-06-01|1993-05-14|NONE|REG AIR|al pinto beans| +11625|97741|22744|1|37|64333.38|0.08|0.03|N|O|1996-02-26|1996-03-13|1996-03-11|COLLECT COD|MAIL|e pinto beans. carefully r| +11625|730474|42989|2|18|27079.92|0.00|0.04|N|O|1996-04-23|1996-03-23|1996-05-14|NONE|SHIP| dolphins wake slyly bold p| +11625|70277|45280|3|42|52385.34|0.05|0.07|N|O|1996-03-15|1996-04-06|1996-04-14|TAKE BACK RETURN|REG AIR|ounts haggle. brave requests| +11625|128922|28923|4|46|89742.32|0.00|0.00|N|O|1996-03-02|1996-03-25|1996-03-05|COLLECT COD|SHIP|ckages. bus| +11625|785021|22567|5|27|29861.73|0.02|0.01|N|O|1996-05-24|1996-03-18|1996-06-16|COLLECT COD|TRUCK|into beans bo| +11625|833500|8533|6|36|51604.56|0.00|0.04|N|O|1996-04-10|1996-03-15|1996-05-09|TAKE BACK RETURN|AIR|e slyly furiously| +11625|619687|19688|7|37|59446.05|0.08|0.01|N|O|1996-05-03|1996-03-23|1996-05-23|COLLECT COD|AIR|theodolites| +11626|70129|32631|1|6|6594.72|0.06|0.07|A|F|1995-02-11|1995-02-11|1995-03-10|TAKE BACK RETURN|RAIL|inst the even requests. qu| +11626|655015|5016|2|36|34919.28|0.09|0.08|R|F|1995-02-20|1995-01-19|1995-03-19|TAKE BACK RETURN|AIR|phins. ironic, unusual de| +11626|821726|46759|3|20|32953.60|0.03|0.05|R|F|1994-12-09|1994-12-27|1994-12-15|DELIVER IN PERSON|MAIL|iously bold dolphins. even courts | +11626|746759|34302|4|33|59588.76|0.09|0.04|R|F|1995-01-21|1995-02-01|1995-02-19|COLLECT COD|SHIP|n slyly carefully bold requ| +11626|771636|21637|5|24|40982.40|0.06|0.04|A|F|1995-01-05|1995-02-06|1995-01-27|COLLECT COD|RAIL|ve to print close| +11626|879151|16703|6|26|29382.86|0.01|0.06|R|F|1994-11-26|1995-02-10|1994-12-06|COLLECT COD|AIR|he slyly silent packages; blithely | +11626|875175|25176|7|11|12651.43|0.05|0.03|R|F|1995-02-21|1995-01-29|1995-03-22|TAKE BACK RETURN|TRUCK|egular ideas! entic| +11627|65586|3090|1|31|48098.98|0.08|0.01|N|O|1997-04-08|1997-03-31|1997-04-13|NONE|AIR|xes. furiously even waters nag. blith| +11627|288622|38623|2|50|80530.50|0.01|0.05|N|O|1997-04-18|1997-03-19|1997-04-30|NONE|TRUCK|ges: ironic, final packages cajole. | +11627|857048|19566|3|46|46230.00|0.02|0.04|N|O|1997-03-25|1997-04-04|1997-04-22|NONE|TRUCK|ly bold packages. slyly regular| +11628|647482|9995|1|47|67184.15|0.09|0.04|N|O|1996-09-10|1996-10-30|1996-10-06|COLLECT COD|RAIL|deposits? even, regu| +11628|220061|45070|2|33|32374.65|0.01|0.06|N|O|1996-10-02|1996-09-19|1996-10-22|NONE|TRUCK|ly regular | +11628|550570|25593|3|9|14584.95|0.00|0.01|N|O|1996-10-28|1996-09-15|1996-10-29|DELIVER IN PERSON|FOB|terns. slyly bold| +11629|651530|1531|1|43|63704.50|0.02|0.03|A|F|1995-03-11|1994-12-27|1995-03-28|NONE|SHIP|ckages cajole furious| +11629|253029|15535|2|15|14730.15|0.05|0.03|A|F|1995-01-29|1995-02-09|1995-02-09|NONE|SHIP|o the requ| +11629|656887|19401|3|9|16594.65|0.02|0.04|R|F|1994-11-22|1995-02-09|1994-11-23|TAKE BACK RETURN|SHIP|gged warhorse| +11629|298147|48148|4|49|56111.37|0.07|0.01|A|F|1994-11-28|1995-02-08|1994-12-16|DELIVER IN PERSON|AIR|icingly regul| +11629|947700|22737|5|27|47186.82|0.07|0.06|R|F|1995-02-19|1995-02-03|1995-03-04|NONE|RAIL| fluffily bold accoun| +11630|526824|1845|1|45|83286.00|0.05|0.03|R|F|1993-11-02|1994-01-03|1993-11-29|NONE|SHIP|eas: furiously special pinto beans | +11631|554351|29374|1|14|19674.62|0.00|0.02|A|F|1994-01-17|1994-03-24|1994-02-13|NONE|RAIL|nal pains are carefully along the| +11631|977021|2060|2|14|15371.72|0.02|0.04|R|F|1994-01-27|1994-03-06|1994-02-20|DELIVER IN PERSON|MAIL|jole. final, bold realms | +11631|786209|23755|3|11|14246.87|0.00|0.08|R|F|1994-05-05|1994-03-02|1994-05-28|NONE|SHIP|ilent dolphins sleep care| +11631|799781|37327|4|1|1880.75|0.01|0.05|R|F|1994-01-13|1994-04-10|1994-02-06|TAKE BACK RETURN|AIR|mes final courts along the blithely f| +11656|623287|48312|1|47|56881.75|0.02|0.01|N|O|1997-06-21|1997-04-17|1997-07-11|COLLECT COD|RAIL|onic deposits along the f| +11656|569756|7290|2|11|20083.03|0.09|0.03|N|O|1997-04-03|1997-04-12|1997-04-21|DELIVER IN PERSON|TRUCK|s integrate. sentiments| +11656|879515|17067|3|38|56789.86|0.03|0.01|N|O|1997-03-18|1997-04-22|1997-03-30|TAKE BACK RETURN|RAIL|ess ideas hag| +11656|995913|8433|4|18|36159.66|0.06|0.05|N|O|1997-03-02|1997-05-04|1997-03-30|DELIVER IN PERSON|SHIP|. bravely | +11656|297408|22419|5|9|12648.51|0.05|0.08|N|O|1997-05-04|1997-04-29|1997-06-03|DELIVER IN PERSON|REG AIR|its are fluffily regular dependencie| +11656|520530|33041|6|39|60469.89|0.10|0.06|N|O|1997-06-22|1997-05-02|1997-07-10|COLLECT COD|FOB|. blithely final accounts n| +11657|531731|31732|1|22|38779.62|0.06|0.04|R|F|1994-09-17|1994-10-30|1994-10-07|COLLECT COD|SHIP|. final deposits haggl| +11657|786998|12029|2|36|75058.56|0.02|0.05|A|F|1994-09-09|1994-09-19|1994-10-02|COLLECT COD|MAIL|nside the even| +11657|64616|27118|3|28|44257.08|0.09|0.03|A|F|1994-10-01|1994-10-26|1994-10-29|TAKE BACK RETURN|SHIP|eposits. slyly pend| +11657|987343|24901|4|9|12872.70|0.02|0.03|A|F|1994-08-18|1994-11-14|1994-08-31|NONE|SHIP|ss ideas are carefully. slyly fi| +11657|270409|45420|5|10|13793.90|0.07|0.04|A|F|1994-11-19|1994-11-07|1994-11-20|NONE|TRUCK|ly regular | +11657|754417|16933|6|7|10299.66|0.08|0.03|A|F|1994-10-19|1994-11-01|1994-10-26|TAKE BACK RETURN|SHIP|ckly even accounts. pinto beans against the| +11658|305072|42591|1|13|14001.78|0.06|0.04|N|O|1998-09-11|1998-08-09|1998-09-18|COLLECT COD|FOB|ly regular deposits wake furiously| +11658|329091|16610|2|17|19041.36|0.04|0.00|N|O|1998-08-10|1998-07-27|1998-09-01|NONE|RAIL|ts above the fluffily ironi| +11659|642470|17495|1|10|14124.40|0.03|0.03|N|O|1996-01-15|1996-01-15|1996-01-27|NONE|MAIL|ay furiously a| +11659|989028|39029|2|47|52498.06|0.03|0.06|N|O|1995-12-24|1995-12-06|1996-01-02|COLLECT COD|RAIL| to the ironic, unusual packages-- | +11659|577964|2987|3|9|18377.46|0.03|0.06|N|O|1995-12-24|1995-12-21|1996-01-19|TAKE BACK RETURN|FOB|p carefully final requests. ideas boost clo| +11659|831091|6124|4|45|45992.25|0.06|0.01|N|O|1995-11-02|1995-12-24|1995-11-05|DELIVER IN PERSON|REG AIR|arefully idle dependencies| +11660|569038|31550|1|45|49815.45|0.03|0.08|N|O|1996-07-31|1996-05-26|1996-08-19|TAKE BACK RETURN|REG AIR|ut the carefully pending pac| +11660|819135|6684|2|38|40055.42|0.07|0.07|N|O|1996-04-14|1996-06-04|1996-04-15|TAKE BACK RETURN|TRUCK|y regular a| +11660|185149|35150|3|48|59238.72|0.09|0.07|N|O|1996-08-01|1996-06-01|1996-08-03|NONE|RAIL|e accounts. doggedly ironic instructions sl| +11661|362724|37739|1|39|69681.69|0.09|0.00|R|F|1992-07-05|1992-07-02|1992-07-25|DELIVER IN PERSON|FOB|to beans wake slyly above the car| +11661|287975|25491|2|40|78518.40|0.05|0.07|R|F|1992-04-19|1992-06-10|1992-05-01|COLLECT COD|MAIL|ests sleep carefully furiously | +11661|981024|6063|3|39|43094.22|0.03|0.05|A|F|1992-05-30|1992-07-05|1992-06-19|TAKE BACK RETURN|REG AIR| to the foxes affix fi| +11662|948772|23809|1|44|80112.12|0.07|0.05|A|F|1994-08-17|1994-09-03|1994-09-06|NONE|SHIP|carefully. ironic, regular deposits sle| +11663|24790|24791|1|43|73735.97|0.08|0.02|N|O|1996-02-26|1996-02-25|1996-03-14|COLLECT COD|AIR|sly ironic ideas above the regul| +11688|275665|676|1|26|42656.90|0.01|0.07|A|F|1993-06-12|1993-07-12|1993-06-25|TAKE BACK RETURN|MAIL|y furiousl| +11689|256402|43918|1|8|10867.12|0.01|0.02|R|F|1992-09-11|1992-08-05|1992-09-26|COLLECT COD|SHIP|onic pinto beans about the b| +11689|336197|48704|2|3|3699.54|0.09|0.02|R|F|1992-05-31|1992-07-21|1992-06-27|NONE|SHIP|ages. carefully bold account| +11689|455970|43498|3|6|11555.70|0.05|0.05|R|F|1992-05-31|1992-08-12|1992-06-13|COLLECT COD|REG AIR|l excuses detect slyly furiously regular sa| +11689|473542|23543|4|8|12124.16|0.06|0.07|R|F|1992-08-31|1992-06-21|1992-09-28|COLLECT COD|MAIL|nusual dolphins. slyly ironic excuses | +11689|819016|31533|5|27|25244.19|0.04|0.00|A|F|1992-06-06|1992-08-01|1992-06-27|NONE|TRUCK|uiet, ironic dependencies after the specia| +11689|189252|1756|6|17|22801.25|0.00|0.02|A|F|1992-07-03|1992-06-29|1992-07-16|COLLECT COD|AIR|ress frays according to the special depo| +11690|897310|47311|1|50|65363.50|0.06|0.01|N|O|1998-09-04|1998-09-12|1998-09-22|COLLECT COD|TRUCK|lyly blithely regular pin| +11691|485812|10831|1|21|37753.59|0.09|0.01|R|F|1995-05-23|1995-08-07|1995-06-08|TAKE BACK RETURN|SHIP|ironic accounts boost slowly about the| +11692|657947|20461|1|26|49527.66|0.04|0.05|N|O|1997-02-22|1997-02-26|1997-02-25|COLLECT COD|FOB|n accounts. requests integrat| +11692|105837|30842|2|41|75556.03|0.05|0.08|N|O|1997-03-01|1997-03-12|1997-03-14|DELIVER IN PERSON|TRUCK|sly final instructions. fina| +11693|34268|9269|1|4|4809.04|0.01|0.00|A|F|1992-06-07|1992-04-15|1992-06-24|TAKE BACK RETURN|RAIL|y ironic packages. fluffily silent foxes us| +11693|926869|26870|2|10|18958.20|0.00|0.02|R|F|1992-03-23|1992-04-19|1992-03-31|COLLECT COD|AIR| fluffily special, thin dugouts. slyly i| +11693|885418|22970|3|41|57538.17|0.00|0.04|R|F|1992-05-08|1992-05-28|1992-06-02|COLLECT COD|REG AIR|ccounts. quietly special instructio| +11693|205294|42807|4|17|20387.76|0.01|0.06|A|F|1992-06-14|1992-05-12|1992-07-05|COLLECT COD|SHIP|ans are. fi| +11693|366633|41648|5|7|11897.34|0.05|0.08|A|F|1992-05-01|1992-05-22|1992-05-31|NONE|RAIL|c requests. slyly ironic requests acr| +11694|265037|15038|1|41|41082.82|0.07|0.00|N|O|1996-02-13|1996-02-12|1996-03-08|DELIVER IN PERSON|FOB|hely final requests are. s| +11694|463771|38790|2|1|1734.75|0.00|0.04|N|O|1996-04-07|1996-03-10|1996-04-14|COLLECT COD|FOB|eposits play against t| +11694|592002|17025|3|8|8751.84|0.10|0.07|N|O|1996-03-05|1996-02-13|1996-03-14|TAKE BACK RETURN|AIR| cajole above the f| +11694|761187|11188|4|48|59911.20|0.04|0.04|N|O|1996-01-09|1996-02-02|1996-01-31|NONE|TRUCK|s. express dolphins use sl| +11695|504067|41598|1|9|9639.36|0.05|0.05|N|O|1998-08-23|1998-07-24|1998-08-26|COLLECT COD|AIR|ven theodolites around the final, unusu| +11695|853119|15637|2|7|7504.49|0.01|0.00|N|O|1998-06-17|1998-08-01|1998-07-08|NONE|TRUCK|ckages. slyly | +11695|356849|31864|3|38|72421.54|0.04|0.03|N|O|1998-08-18|1998-08-18|1998-09-17|TAKE BACK RETURN|RAIL|. furiously unusual depos| +11695|546626|21647|4|47|78612.20|0.10|0.04|N|O|1998-06-05|1998-07-26|1998-06-19|DELIVER IN PERSON|SHIP|. fluffily | +11695|134605|34606|5|13|21314.80|0.02|0.03|N|O|1998-09-02|1998-08-13|1998-09-20|DELIVER IN PERSON|REG AIR|leep fluffily acco| +11695|291167|41168|6|33|38218.95|0.03|0.01|N|O|1998-07-17|1998-07-05|1998-08-04|TAKE BACK RETURN|RAIL| are furiously ca| +11695|641359|41360|7|13|16904.16|0.03|0.03|N|O|1998-07-08|1998-07-28|1998-07-10|TAKE BACK RETURN|FOB|fter the deposits mold slyly un| +11720|305888|30901|1|14|26514.18|0.07|0.06|N|O|1998-05-29|1998-04-18|1998-06-19|DELIVER IN PERSON|REG AIR|ly regular acc| +11720|43957|31458|2|34|64632.30|0.05|0.06|N|O|1998-03-27|1998-04-22|1998-04-16|TAKE BACK RETURN|REG AIR|ackages. ironic, expre| +11720|783525|46041|3|32|51471.68|0.06|0.07|N|O|1998-04-15|1998-03-07|1998-04-23|DELIVER IN PERSON|AIR|leep carefully. furiously dogged request| +11721|251568|26579|1|27|41027.85|0.06|0.07|N|O|1996-06-10|1996-04-29|1996-06-18|NONE|RAIL|cies snooze | +11721|87950|452|2|6|11627.70|0.08|0.00|N|O|1996-03-22|1996-03-14|1996-04-06|DELIVER IN PERSON|TRUCK|tes doubt fluf| +11721|165181|40188|3|25|31154.50|0.08|0.03|N|O|1996-05-22|1996-03-18|1996-05-29|NONE|MAIL|blithely regular theodolit| +11721|184394|21904|4|45|66527.55|0.08|0.02|N|O|1996-02-27|1996-05-03|1996-03-14|COLLECT COD|FOB|silent, regular dolphins sleep f| +11722|458950|33969|1|13|24816.09|0.05|0.07|N|O|1996-03-04|1996-03-26|1996-03-06|DELIVER IN PERSON|REG AIR|eep carefully. p| +11722|560693|23205|2|32|56117.44|0.01|0.06|N|O|1996-04-14|1996-03-03|1996-05-12|NONE|MAIL|g deposits may bo| +11722|566348|41371|3|43|60815.76|0.05|0.05|N|O|1996-01-02|1996-02-28|1996-01-15|TAKE BACK RETURN|SHIP| final theodolites. furious requests| +11722|596604|46605|4|44|74825.52|0.06|0.01|N|O|1996-02-05|1996-03-02|1996-02-21|DELIVER IN PERSON|AIR|old foxes. pending foxes are. carefully ev| +11723|444476|44477|1|24|34090.80|0.01|0.01|A|F|1992-10-02|1992-07-18|1992-10-06|TAKE BACK RETURN|TRUCK|s around the even foxes sleep about th| +11723|294933|32449|2|42|80972.64|0.00|0.01|A|F|1992-09-06|1992-09-03|1992-09-29|DELIVER IN PERSON|AIR|nst the quickly unusual asymptotes. | +11723|938153|13190|3|20|23822.20|0.05|0.03|A|F|1992-10-17|1992-09-01|1992-10-22|COLLECT COD|TRUCK|ly regular pinto beans. carefully even| +11723|530483|5504|4|46|69619.16|0.10|0.00|R|F|1992-09-16|1992-08-27|1992-09-18|TAKE BACK RETURN|FOB|deposits wake furiously. | +11723|827112|2145|5|48|49875.36|0.07|0.07|A|F|1992-08-28|1992-08-01|1992-09-05|NONE|AIR|. furiously regular deposits against the fu| +11724|306953|44472|1|18|35278.92|0.09|0.01|N|O|1996-03-21|1996-02-10|1996-04-01|NONE|TRUCK|ironic instructions! fluffily fin| +11725|30682|18183|1|26|41929.68|0.09|0.05|N|O|1998-08-27|1998-08-11|1998-09-07|COLLECT COD|REG AIR|bove the blithely pending | +11725|667622|17623|2|6|9537.54|0.00|0.06|N|O|1998-07-20|1998-08-03|1998-08-18|COLLECT COD|RAIL|ithely final attainments. theodolites sle| +11726|536824|24355|1|7|13025.60|0.04|0.04|N|O|1995-09-18|1995-11-18|1995-09-22|DELIVER IN PERSON|REG AIR|ges. brave| +11726|393273|43274|2|3|4098.78|0.01|0.03|N|O|1995-09-05|1995-10-16|1995-09-07|DELIVER IN PERSON|REG AIR|uctions. fu| +11726|725816|13359|3|6|11050.68|0.01|0.03|N|O|1995-10-11|1995-09-22|1995-10-17|COLLECT COD|REG AIR|thely even a| +11726|788497|38498|4|43|68174.78|0.09|0.06|N|O|1995-09-18|1995-11-09|1995-10-01|NONE|REG AIR|ic deposits are about the blithely spec| +11726|263662|38673|5|50|81282.50|0.09|0.06|N|O|1995-11-16|1995-11-07|1995-12-16|TAKE BACK RETURN|FOB|oost. regular packages kindle. acc| +11727|20480|7981|1|49|68623.52|0.07|0.06|N|O|1996-08-24|1996-08-21|1996-09-07|COLLECT COD|FOB|nts. slyly ironic platelets sleep at th| +11752|783260|45776|1|35|47013.05|0.09|0.05|R|F|1995-05-09|1995-05-12|1995-05-22|TAKE BACK RETURN|SHIP|de of the silen| +11752|243547|6052|2|33|49187.49|0.02|0.00|R|F|1995-04-11|1995-05-23|1995-04-19|TAKE BACK RETURN|TRUCK|ould are slyly blithely ironic package| +11752|287200|12211|3|19|22556.61|0.00|0.00|R|F|1995-04-15|1995-06-07|1995-05-06|NONE|RAIL|final, final theodolites.| +11752|956764|44322|4|31|56442.32|0.10|0.00|A|F|1995-04-10|1995-06-19|1995-04-16|NONE|FOB|ests. silent| +11752|318938|18939|5|50|97846.00|0.04|0.07|N|O|1995-07-29|1995-05-04|1995-08-10|COLLECT COD|REG AIR|cajole furiously | +11753|392563|5071|1|43|71188.65|0.07|0.05|R|F|1994-04-26|1994-03-24|1994-05-23|TAKE BACK RETURN|RAIL|daringly final| +11753|799885|24916|2|22|43666.70|0.08|0.01|A|F|1994-02-24|1994-04-19|1994-03-15|COLLECT COD|REG AIR|lyly ruthless deposi| +11753|665396|15397|3|38|51731.68|0.07|0.05|A|F|1994-04-09|1994-04-09|1994-05-02|DELIVER IN PERSON|FOB|the pinto beans. car| +11754|947357|22394|1|34|47746.54|0.09|0.00|R|F|1992-07-31|1992-08-24|1992-08-07|NONE|TRUCK|ously ironic | +11754|213092|38101|2|19|19096.52|0.07|0.06|R|F|1992-06-13|1992-07-23|1992-06-16|TAKE BACK RETURN|RAIL|venly final ideas are furiously| +11754|423319|10844|3|16|19876.64|0.01|0.05|A|F|1992-07-09|1992-08-24|1992-07-21|DELIVER IN PERSON|FOB|ar packages abou| +11754|713864|38893|4|5|9389.15|0.10|0.00|A|F|1992-07-06|1992-07-17|1992-07-29|TAKE BACK RETURN|RAIL|sleep carefull| +11755|777516|2547|1|32|50991.36|0.03|0.04|A|F|1993-01-07|1992-12-07|1993-01-09|TAKE BACK RETURN|AIR|gular instruc| +11755|699256|11770|2|43|53974.46|0.09|0.07|A|F|1992-12-25|1992-11-30|1993-01-03|COLLECT COD|AIR|totes. express,| +11755|386357|23879|3|24|34640.16|0.01|0.08|A|F|1992-12-06|1992-10-28|1992-12-07|NONE|AIR|s courts doze slyl| +11756|827203|2236|1|35|39555.60|0.09|0.07|N|O|1997-12-10|1997-12-20|1997-12-28|DELIVER IN PERSON|MAIL|ronic, regular pac| +11756|791483|16514|2|23|36212.35|0.00|0.00|N|O|1997-10-13|1997-11-19|1997-11-08|COLLECT COD|FOB|e. blithely ironic deposits| +11756|441168|28693|3|47|52129.58|0.05|0.05|N|O|1997-09-30|1997-10-26|1997-10-27|DELIVER IN PERSON|FOB|ages above the carefully pending requests| +11757|343475|5982|1|17|25813.82|0.05|0.03|A|F|1992-05-04|1992-07-05|1992-05-16|DELIVER IN PERSON|RAIL| sleep caref| +11757|779358|16904|2|25|35933.00|0.07|0.08|R|F|1992-05-23|1992-06-10|1992-06-18|TAKE BACK RETURN|TRUCK|ts mold even | +11757|669381|44408|3|23|31058.05|0.02|0.02|R|F|1992-07-12|1992-07-13|1992-08-07|COLLECT COD|AIR|lithely. furiously express instruction| +11757|276245|1256|4|13|15875.99|0.03|0.00|R|F|1992-08-02|1992-07-05|1992-08-17|COLLECT COD|AIR|its wake. carefully final warthogs us| +11757|847719|22752|5|15|25000.05|0.10|0.07|R|F|1992-08-03|1992-06-20|1992-08-17|COLLECT COD|REG AIR|efully above the packa| +11757|609252|34277|6|40|46448.80|0.08|0.06|A|F|1992-07-14|1992-07-11|1992-08-09|DELIVER IN PERSON|SHIP|uses across the| +11757|687025|49539|7|28|28335.72|0.08|0.00|R|F|1992-05-12|1992-06-10|1992-06-09|COLLECT COD|AIR|ymptotes wake ironic, regular acc| +11758|818378|18379|1|9|11666.97|0.04|0.03|A|F|1992-02-04|1992-03-11|1992-03-03|DELIVER IN PERSON|AIR|ular packages are about the qu| +11758|477301|2320|2|48|61357.44|0.06|0.05|R|F|1992-03-04|1992-02-24|1992-03-05|COLLECT COD|REG AIR|kages. careful| +11758|984703|47223|3|13|23239.58|0.09|0.08|R|F|1992-03-10|1992-03-14|1992-04-01|TAKE BACK RETURN|REG AIR|ve the careful| +11758|892821|17856|4|20|36275.60|0.00|0.00|R|F|1992-04-12|1992-03-01|1992-05-04|COLLECT COD|RAIL|accounts u| +11758|638132|645|5|40|42804.00|0.06|0.04|R|F|1992-04-30|1992-03-17|1992-05-13|NONE|AIR|ckly silent pinto beans. carefully regular| +11758|74048|49051|6|29|29639.16|0.09|0.05|R|F|1992-03-30|1992-02-24|1992-04-01|TAKE BACK RETURN|AIR|ly; slyly bold excuses| +11759|909646|9647|1|29|48012.40|0.06|0.04|N|O|1996-04-19|1996-05-06|1996-04-21|NONE|RAIL|indle slyly. furiou| +11759|405221|5222|2|47|52931.40|0.08|0.02|N|O|1996-07-07|1996-06-12|1996-08-03|DELIVER IN PERSON|SHIP| after the blithely regu| +11784|514064|14065|1|4|4312.16|0.06|0.08|A|F|1992-07-19|1992-09-09|1992-07-20|COLLECT COD|RAIL|s, regular foxes wa| +11784|859690|22208|2|19|31343.35|0.08|0.07|A|F|1992-07-05|1992-08-12|1992-07-07|DELIVER IN PERSON|SHIP|fully ironic courts are furiously. final in| +11784|802791|40340|3|21|35568.75|0.07|0.00|R|F|1992-08-26|1992-07-23|1992-09-02|COLLECT COD|SHIP|ffily unusual foxes caj| +11784|495960|45961|4|12|23471.28|0.05|0.06|A|F|1992-09-23|1992-08-21|1992-10-05|DELIVER IN PERSON|MAIL|r somas according to | +11784|598370|48371|5|16|23493.60|0.00|0.04|R|F|1992-07-01|1992-08-31|1992-07-29|TAKE BACK RETURN|FOB|about the pending asymptotes cajole b| +11784|795075|32621|6|29|33931.16|0.05|0.00|R|F|1992-09-05|1992-08-04|1992-10-03|DELIVER IN PERSON|MAIL|lar asymptotes past th| +11785|474207|24208|1|27|31891.86|0.06|0.04|R|F|1995-05-26|1995-03-07|1995-05-30|DELIVER IN PERSON|TRUCK|ly final instructions. fur| +11785|985225|10264|2|47|61578.46|0.10|0.05|A|F|1995-03-29|1995-03-18|1995-04-02|COLLECT COD|MAIL|ronic packages. ironic, ironic| +11785|676183|13723|3|38|44047.70|0.00|0.07|A|F|1995-03-25|1995-04-19|1995-04-11|DELIVER IN PERSON|SHIP|ress deposits use furious| +11785|603934|28959|4|24|44109.60|0.10|0.04|A|F|1995-05-28|1995-03-19|1995-06-08|COLLECT COD|RAIL|tes are. carefully pending theodolite| +11785|303830|16337|5|28|51346.96|0.05|0.03|R|F|1995-03-30|1995-04-30|1995-04-20|TAKE BACK RETURN|MAIL|layers detect sl| +11785|467535|17536|6|32|48080.32|0.02|0.01|R|F|1995-05-15|1995-04-14|1995-05-16|NONE|SHIP|r platelets haggle fu| +11786|482935|7954|1|28|53701.48|0.08|0.08|R|F|1993-08-23|1993-07-04|1993-09-04|NONE|SHIP|dependencies. ironic dol| +11786|679733|42247|2|42|71933.40|0.09|0.05|A|F|1993-07-12|1993-06-24|1993-07-26|TAKE BACK RETURN|AIR|fully special requests wake blithely again| +11786|255855|18361|3|16|28973.44|0.10|0.07|R|F|1993-08-01|1993-06-25|1993-08-06|NONE|TRUCK|counts. furiously special platele| +11786|144346|44347|4|34|47271.56|0.08|0.03|A|F|1993-06-02|1993-07-02|1993-06-06|COLLECT COD|REG AIR|ronic, careful asymp| +11786|6854|44355|5|12|21130.20|0.10|0.08|A|F|1993-07-30|1993-06-01|1993-08-22|DELIVER IN PERSON|REG AIR|s haggle perman| +11786|179573|17083|6|24|39661.68|0.04|0.05|R|F|1993-06-08|1993-07-03|1993-06-26|DELIVER IN PERSON|REG AIR|ing to the slyly special d| +11786|81275|18779|7|28|35175.56|0.04|0.06|A|F|1993-07-13|1993-07-27|1993-07-20|DELIVER IN PERSON|TRUCK|ptotes sleep slyly even asymptotes! ironi| +11787|986394|36395|1|6|8882.10|0.09|0.02|R|F|1993-08-14|1993-06-03|1993-09-01|TAKE BACK RETURN|SHIP|ly. express accounts integrate acro| +11787|321849|46862|2|40|74833.20|0.00|0.06|A|F|1993-05-06|1993-06-30|1993-06-04|COLLECT COD|SHIP|gular requests haggle furiou| +11787|312815|12816|3|44|80423.20|0.08|0.05|A|F|1993-06-14|1993-06-11|1993-07-06|COLLECT COD|TRUCK|rets breach blith| +11787|471946|9474|4|10|19179.20|0.02|0.01|A|F|1993-05-30|1993-07-03|1993-06-12|TAKE BACK RETURN|FOB|ns alongside of the pending| +11787|983538|21096|5|35|56752.15|0.10|0.03|R|F|1993-06-09|1993-07-22|1993-06-15|COLLECT COD|MAIL|ully express accounts. slyly final pinto | +11787|318226|30733|6|4|4976.84|0.08|0.01|A|F|1993-05-18|1993-06-27|1993-06-02|DELIVER IN PERSON|FOB|riously. slyly | +11788|557863|20375|1|21|40337.64|0.09|0.03|N|O|1996-02-29|1996-05-03|1996-03-24|DELIVER IN PERSON|REG AIR|ly silent pinto beans! even accounts a| +11788|626|25627|2|24|36638.88|0.06|0.04|N|O|1996-03-30|1996-04-07|1996-04-07|NONE|REG AIR| the pinto beans. even, ev| +11788|510016|35037|3|43|44117.57|0.04|0.05|N|O|1996-03-01|1996-04-09|1996-03-25|DELIVER IN PERSON|TRUCK|ar, special theodolites. quickly final ac| +11788|832622|32623|4|5|7772.90|0.08|0.04|N|O|1996-03-24|1996-03-31|1996-04-17|COLLECT COD|MAIL|pending deposits. regular requests | +11789|853402|28437|1|36|48792.96|0.09|0.08|R|F|1994-08-11|1994-06-05|1994-08-28|TAKE BACK RETURN|SHIP|uickly: furi| +11789|121026|21027|2|9|9423.18|0.02|0.07|A|F|1994-05-08|1994-06-18|1994-05-25|COLLECT COD|SHIP|le. furiously final depo| +11790|701364|26393|1|21|28671.93|0.03|0.07|A|F|1994-12-29|1994-10-18|1995-01-11|COLLECT COD|TRUCK|ets cajole quickly bold, bold theodo| +11790|818084|43117|2|21|21042.84|0.05|0.08|R|F|1994-12-09|1994-11-12|1994-12-20|DELIVER IN PERSON|MAIL|ic courts. slyly re| +11791|307080|7081|1|16|17393.12|0.10|0.06|A|F|1994-04-05|1994-02-08|1994-04-19|COLLECT COD|SHIP|es. fluffily regular d| +11791|80128|5131|2|8|8864.96|0.06|0.06|A|F|1994-03-23|1994-01-29|1994-04-06|TAKE BACK RETURN|SHIP| the slyly unusual a| +11816|467869|42888|1|12|22042.08|0.07|0.00|N|O|1998-09-04|1998-08-30|1998-09-18|TAKE BACK RETURN|RAIL| never-- pack| +11816|466634|41653|2|49|78429.89|0.02|0.04|N|O|1998-07-12|1998-08-15|1998-07-21|DELIVER IN PERSON|RAIL|pending somas sleep slyly. ideas ag| +11816|704317|16832|3|39|51529.92|0.01|0.01|N|O|1998-08-27|1998-07-31|1998-08-30|DELIVER IN PERSON|RAIL|ters. furio| +11816|446899|21916|4|39|71988.93|0.03|0.03|N|O|1998-09-27|1998-09-08|1998-10-27|NONE|TRUCK|ely regular pearls. bl| +11817|529|530|1|3|4288.56|0.00|0.08|N|O|1996-03-09|1996-02-29|1996-03-12|COLLECT COD|SHIP|sual deposits are sl| +11817|890646|15681|2|43|70373.80|0.04|0.08|N|O|1996-03-22|1996-04-04|1996-04-14|COLLECT COD|RAIL|s. final packages are carefully acros| +11818|25396|25397|1|49|64748.11|0.09|0.03|R|F|1993-04-07|1993-04-10|1993-04-09|TAKE BACK RETURN|FOB|ding deposits haggle along the requests. e| +11818|814257|26774|2|10|11712.10|0.03|0.00|A|F|1993-02-26|1993-05-04|1993-03-18|COLLECT COD|RAIL| regular packages against the quickly do| +11819|433550|46059|1|11|16318.83|0.06|0.08|A|F|1994-03-18|1994-03-16|1994-03-26|NONE|FOB|by the ideas. final requests above the fluf| +11820|222181|47190|1|1|1103.17|0.09|0.01|R|F|1993-12-06|1993-12-09|1993-12-11|COLLECT COD|SHIP|luffily ironic pinto beans sleep; e| +11820|186424|11431|2|26|39270.92|0.07|0.02|A|F|1993-12-20|1993-12-15|1994-01-02|DELIVER IN PERSON|TRUCK|arefully ironic packages. fur| +11820|220613|33118|3|39|59810.40|0.05|0.07|R|F|1994-02-26|1994-01-12|1994-03-23|COLLECT COD|RAIL| boost slyly regular exc| +11820|831900|6933|4|4|7327.44|0.09|0.06|R|F|1993-12-17|1993-12-25|1994-01-16|DELIVER IN PERSON|RAIL|pendencies about the pending, pending| +11821|786307|36308|1|26|36225.02|0.00|0.03|N|O|1997-02-16|1997-03-16|1997-02-17|DELIVER IN PERSON|MAIL|uickly patterns. furiously silent dolphins| +11821|445392|20409|2|34|45470.58|0.03|0.07|N|O|1997-01-19|1997-02-19|1997-02-05|COLLECT COD|TRUCK|as cajole furiously past the carefull| +11821|698621|48622|3|20|32391.80|0.05|0.02|N|O|1997-01-23|1997-02-25|1997-02-16|COLLECT COD|FOB|cross the quickly regular| +11821|718945|43974|4|15|29458.65|0.04|0.07|N|O|1997-02-12|1997-03-28|1997-02-14|NONE|REG AIR|ounts. furiously special accounts| +11821|302311|39830|5|5|6566.50|0.02|0.02|N|O|1997-03-22|1997-03-31|1997-04-04|NONE|REG AIR|egular theodolites. express| +11821|926461|1498|6|16|23798.72|0.08|0.08|N|O|1997-01-06|1997-02-17|1997-01-14|NONE|REG AIR|uickly quickly ironic ideas. quickly expres| +11822|715743|40772|1|19|33415.49|0.06|0.00|N|O|1997-08-25|1997-09-24|1997-08-26|TAKE BACK RETURN|FOB|y final ideas. slyly pending d| +11822|485605|35606|2|17|27039.86|0.00|0.05|N|O|1997-12-02|1997-10-07|1997-12-17|COLLECT COD|SHIP|y deposits cajole about the pending, regu| +11822|556181|31204|3|43|53197.88|0.04|0.07|N|O|1997-12-02|1997-10-16|1997-12-05|NONE|MAIL|s shall have | +11822|722295|22296|4|42|55324.92|0.00|0.06|N|O|1997-10-12|1997-10-10|1997-10-21|COLLECT COD|RAIL|ar requests. fl| +11823|369436|6958|1|37|55700.54|0.00|0.04|N|O|1995-09-01|1995-08-09|1995-10-01|DELIVER IN PERSON|MAIL|the final instruc| +11823|98036|23039|2|18|18612.54|0.10|0.03|N|O|1995-06-27|1995-09-15|1995-07-06|TAKE BACK RETURN|AIR|uses along the furiously regular foxe| +11823|681561|44075|3|15|23137.95|0.10|0.08|N|O|1995-07-05|1995-07-26|1995-07-13|COLLECT COD|SHIP| the slyly regular deposits. slow| +11823|979660|17218|4|32|55667.84|0.02|0.01|N|O|1995-06-26|1995-09-15|1995-07-04|TAKE BACK RETURN|SHIP| requests x-ray along the blithely ex| +11823|145428|7931|5|5|7367.10|0.02|0.03|N|O|1995-09-15|1995-08-19|1995-10-08|DELIVER IN PERSON|SHIP|pinto beans detect. sly| +11823|196878|21885|6|28|55296.36|0.03|0.08|N|O|1995-08-26|1995-07-20|1995-09-22|NONE|SHIP|iously special excuses wake quickly c| +11848|704305|29334|1|21|27494.67|0.02|0.02|N|O|1997-11-06|1997-09-14|1997-11-18|DELIVER IN PERSON|REG AIR|ular braids. ironic, eve| +11848|247060|9565|2|31|31218.55|0.09|0.05|N|O|1997-08-10|1997-10-17|1997-08-11|TAKE BACK RETURN|FOB|e special, bold requests haggle quic| +11849|848572|36121|1|6|9123.18|0.05|0.08|N|O|1998-08-21|1998-07-07|1998-08-30|NONE|FOB|ounts sleep b| +11849|935859|48378|2|31|58739.11|0.09|0.02|N|O|1998-05-12|1998-06-21|1998-06-11|DELIVER IN PERSON|SHIP|ns cajole about the regula| +11849|974337|49376|3|5|7056.45|0.09|0.03|N|O|1998-06-03|1998-08-07|1998-06-28|DELIVER IN PERSON|TRUCK|nal deposits alongs| +11849|674554|24555|4|36|55026.72|0.01|0.08|N|O|1998-05-25|1998-06-15|1998-06-01|COLLECT COD|AIR|lyly regular deposits wake| +11849|228194|28195|5|19|21321.42|0.04|0.08|N|O|1998-07-21|1998-06-12|1998-08-14|DELIVER IN PERSON|TRUCK|al dependencies. blithely | +11849|247751|10256|6|8|13589.92|0.07|0.05|N|O|1998-07-11|1998-07-14|1998-08-04|COLLECT COD|REG AIR|ckages. carefully express forges wake bl| +11849|945109|7628|7|5|5770.30|0.02|0.07|N|O|1998-08-04|1998-07-02|1998-08-12|DELIVER IN PERSON|FOB|iously brave deposits: carefully | +11850|442611|17628|1|12|18643.08|0.01|0.00|A|F|1994-10-29|1994-09-29|1994-11-28|NONE|SHIP|fully express deposit| +11850|954700|42258|2|36|63167.76|0.08|0.08|R|F|1994-09-06|1994-10-07|1994-09-12|NONE|SHIP|ng accounts doze slyly. iro| +11850|626263|1288|3|16|19027.68|0.09|0.08|R|F|1994-07-25|1994-09-25|1994-08-01|TAKE BACK RETURN|SHIP|ains: blithely regular accounts haggle amon| +11850|598467|10979|4|20|31308.80|0.04|0.05|A|F|1994-10-31|1994-09-03|1994-11-19|TAKE BACK RETURN|AIR|ajole carefull| +11850|434183|9200|5|2|2234.32|0.00|0.06|A|F|1994-09-01|1994-09-10|1994-09-02|COLLECT COD|TRUCK|e furiousl| +11850|298324|48325|6|41|54214.71|0.08|0.07|R|F|1994-07-28|1994-09-14|1994-08-15|NONE|FOB|yly. furiously thin ideas acro| +11851|916955|16956|1|27|53241.57|0.02|0.08|R|F|1993-05-02|1993-05-19|1993-06-01|DELIVER IN PERSON|AIR|intain carefu| +11851|249783|49784|2|11|19060.47|0.00|0.04|A|F|1993-07-06|1993-05-25|1993-08-02|TAKE BACK RETURN|AIR| final theodolites are al| +11852|53830|3831|1|30|53514.90|0.00|0.02|N|O|1997-01-31|1997-01-03|1997-02-05|TAKE BACK RETURN|AIR|ly even, enticing pack| +11852|704323|29352|2|33|43800.57|0.04|0.07|N|O|1996-11-23|1996-11-29|1996-12-11|TAKE BACK RETURN|FOB|cial foxes. somet| +11852|540643|15664|3|20|33672.40|0.01|0.03|N|O|1997-02-05|1996-12-08|1997-03-07|NONE|FOB|regular requests. warhorses cajole ca| +11852|582250|32251|4|34|45295.82|0.03|0.05|N|O|1996-10-23|1996-12-14|1996-11-13|NONE|AIR|le after the furiou| +11852|863647|13648|5|39|62813.40|0.04|0.08|N|O|1996-12-14|1996-11-23|1996-12-18|DELIVER IN PERSON|TRUCK|ronic depen| +11853|583780|46292|1|40|74550.40|0.06|0.04|N|O|1995-11-18|1995-10-19|1995-12-01|COLLECT COD|AIR|s boost slyly carefully even instruction| +11854|117173|29676|1|30|35705.10|0.02|0.08|A|F|1992-03-20|1992-05-19|1992-03-30|NONE|TRUCK|ously about the courts. ideas | +11854|311621|49140|2|34|55508.74|0.04|0.00|R|F|1992-03-30|1992-04-20|1992-04-03|DELIVER IN PERSON|TRUCK|ts affix blithely slyly express theodol| +11854|407553|7554|3|15|21907.95|0.07|0.02|R|F|1992-07-01|1992-05-04|1992-07-09|DELIVER IN PERSON|RAIL|ets. slyly final| +11854|739916|14945|4|31|60632.28|0.08|0.08|A|F|1992-04-30|1992-05-09|1992-05-02|COLLECT COD|REG AIR| courts play| +11854|754163|41709|5|20|24342.60|0.02|0.00|R|F|1992-05-19|1992-06-01|1992-05-21|TAKE BACK RETURN|MAIL|he packages. furiously| +11854|208544|8545|6|33|47933.49|0.10|0.04|R|F|1992-03-27|1992-05-02|1992-03-29|COLLECT COD|FOB| along the careful| +11855|305269|42788|1|49|62438.25|0.07|0.03|N|O|1996-08-07|1996-09-11|1996-09-02|DELIVER IN PERSON|SHIP|ons. instructions nag.| +11855|650829|830|2|40|71191.60|0.01|0.06|N|O|1996-08-06|1996-09-21|1996-08-22|COLLECT COD|REG AIR|dolites nag. pinto beans boost. ironic| +11855|467770|5298|3|33|57345.75|0.00|0.00|N|O|1996-08-26|1996-09-15|1996-09-22|TAKE BACK RETURN|AIR|the carefully furious pack| +11855|793990|6506|4|42|87526.32|0.02|0.08|N|O|1996-08-24|1996-10-25|1996-08-28|COLLECT COD|SHIP|, pending pinto beans are slyly. en| +11880|741886|4401|1|35|67474.75|0.10|0.01|N|O|1995-12-06|1995-12-02|1995-12-19|DELIVER IN PERSON|SHIP|ounts. furiously pending deposits wak| +11880|861943|11944|2|35|66671.50|0.06|0.00|N|O|1995-12-02|1996-01-04|1995-12-28|COLLECT COD|FOB| instructions. carefully regular foxes wake| +11880|672197|47224|3|3|3507.48|0.10|0.03|N|O|1996-01-30|1995-12-07|1996-02-17|DELIVER IN PERSON|TRUCK|hely final deposits | +11880|602222|14735|4|48|53961.12|0.08|0.04|N|O|1995-11-18|1995-12-09|1995-11-29|DELIVER IN PERSON|TRUCK| accounts. express foxes wake carefully| +11881|975337|376|1|25|35307.25|0.03|0.03|R|F|1993-04-13|1993-03-08|1993-04-16|DELIVER IN PERSON|MAIL|hely regular wartho| +11881|487435|12454|2|21|29870.61|0.00|0.08|A|F|1993-01-31|1993-03-03|1993-03-02|DELIVER IN PERSON|RAIL|the carefully ironic i| +11881|308506|33519|3|42|63608.58|0.10|0.03|A|F|1993-01-19|1993-03-27|1993-01-29|DELIVER IN PERSON|FOB| regular deposits are furiously. pe| +11882|517377|42398|1|13|18126.55|0.01|0.02|N|O|1998-05-30|1998-07-01|1998-06-27|TAKE BACK RETURN|FOB|lyly special deposits. final, special pa| +11882|543509|43510|2|28|43469.44|0.03|0.04|N|O|1998-04-29|1998-05-21|1998-05-10|DELIVER IN PERSON|FOB|s. blithely regular accounts are slyly ca| +11882|748575|36118|3|31|50329.74|0.09|0.02|N|O|1998-06-02|1998-06-19|1998-06-10|TAKE BACK RETURN|SHIP|l asymptot| +11882|291635|29151|4|39|63438.18|0.10|0.00|N|O|1998-07-07|1998-05-17|1998-07-29|COLLECT COD|FOB|bout the unusual sentiments. iron| +11883|120022|45027|1|10|10420.20|0.00|0.00|R|F|1995-03-13|1995-05-28|1995-03-19|DELIVER IN PERSON|MAIL|onic accounts. furiously final accounts eat| +11883|201542|26551|2|42|60628.26|0.04|0.03|A|F|1995-06-07|1995-04-30|1995-06-09|COLLECT COD|SHIP|he regular mu| +11883|315477|40490|3|34|50743.64|0.03|0.06|R|F|1995-04-27|1995-04-24|1995-05-23|COLLECT COD|AIR|bove the furiously bold dependenci| +11883|219877|19878|4|38|68280.68|0.05|0.00|R|F|1995-05-22|1995-04-17|1995-06-11|NONE|FOB|sts cajole fur| +11883|467959|42978|5|41|79004.13|0.07|0.04|R|F|1995-04-07|1995-04-10|1995-05-03|DELIVER IN PERSON|AIR|riously final | +11884|522983|22984|1|38|76226.48|0.05|0.00|N|O|1997-04-25|1997-05-20|1997-04-30|DELIVER IN PERSON|RAIL| thrash carefull| +11885|111092|11093|1|13|14340.17|0.07|0.04|N|O|1996-06-02|1996-06-02|1996-06-23|DELIVER IN PERSON|AIR|bold packages alongside| +11885|119478|44483|2|2|2994.94|0.08|0.00|N|O|1996-06-26|1996-06-20|1996-07-15|DELIVER IN PERSON|FOB|. furiously final deposits after the | +11886|274886|49897|1|9|16747.83|0.07|0.02|A|F|1994-04-11|1994-03-04|1994-04-21|TAKE BACK RETURN|AIR|e slyly even accounts cajole furiously af| +11886|992686|17725|2|34|60473.76|0.08|0.00|A|F|1994-03-16|1994-04-10|1994-04-06|NONE|MAIL|quickly regular deposits. blithely silen| +11886|68049|18050|3|10|10170.40|0.07|0.08|A|F|1994-02-14|1994-03-02|1994-03-09|TAKE BACK RETURN|SHIP| final pinto beans; furiously bo| +11886|688832|26372|4|40|72832.00|0.07|0.01|R|F|1994-04-03|1994-04-08|1994-04-10|TAKE BACK RETURN|RAIL|olites nag upon the carefully fina| +11886|184128|34129|5|35|42424.20|0.10|0.02|R|F|1994-03-20|1994-04-07|1994-03-27|COLLECT COD|RAIL|nts haggle. r| +11886|624575|24576|6|10|14995.40|0.02|0.00|R|F|1994-05-05|1994-03-01|1994-05-28|COLLECT COD|REG AIR| are blithe| +11887|381875|6890|1|37|72403.82|0.04|0.06|R|F|1992-12-13|1992-11-14|1992-12-24|DELIVER IN PERSON|MAIL|heodolites x-ray fluffily. furio| +11887|160050|10051|2|24|26641.20|0.04|0.08|A|F|1992-12-30|1992-10-17|1993-01-06|NONE|SHIP|y furiously regular inst| +11887|951939|1940|3|9|17918.01|0.02|0.00|R|F|1992-10-06|1992-11-13|1992-10-11|TAKE BACK RETURN|REG AIR| alongside of the silent, ironic r| +11887|238480|25993|4|35|49646.45|0.08|0.03|A|F|1993-01-02|1992-10-19|1993-01-19|NONE|MAIL|ious, sly req| +11912|767648|42679|1|38|65193.18|0.10|0.07|N|O|1998-02-26|1998-03-26|1998-03-16|NONE|RAIL|ly final requests use about the silentl| +11912|858241|45793|2|19|22784.80|0.05|0.01|N|O|1998-02-10|1998-03-01|1998-03-01|COLLECT COD|AIR|beans. furiously d| +11912|446394|8903|3|16|21445.92|0.04|0.05|N|O|1998-03-17|1998-03-14|1998-03-31|TAKE BACK RETURN|FOB|lyly regular ideas abov| +11912|534707|22238|4|23|40058.64|0.07|0.04|N|O|1998-02-11|1998-03-23|1998-02-12|DELIVER IN PERSON|TRUCK| regular dugouts wake fluffily.| +11912|808799|8800|5|12|20493.00|0.00|0.02|N|O|1998-05-04|1998-04-18|1998-05-10|TAKE BACK RETURN|REG AIR|ironic packages| +11912|471417|21418|6|50|69419.50|0.05|0.04|N|O|1998-05-15|1998-03-12|1998-05-20|COLLECT COD|AIR|ly express, unusual acco| +11912|90255|40256|7|33|41093.25|0.08|0.06|N|O|1998-01-27|1998-03-18|1998-02-09|DELIVER IN PERSON|RAIL|uctions. carefull| +11913|904190|16709|1|11|13135.65|0.06|0.06|A|F|1993-11-07|1993-12-10|1993-11-08|NONE|TRUCK|ct. ironically unusual requests cajole care| +11913|717372|4915|2|21|29176.14|0.06|0.00|A|F|1994-01-21|1993-12-12|1994-02-07|COLLECT COD|SHIP|ains boost | +11913|864006|26524|3|38|36858.48|0.00|0.08|R|F|1994-01-04|1993-12-20|1994-01-12|COLLECT COD|FOB|ests wake final foxes. ironic foxes a| +11913|335108|47615|4|29|33149.61|0.04|0.02|R|F|1993-11-09|1994-01-03|1993-11-25|COLLECT COD|AIR| ironic asymptotes cajole carefully qui| +11913|150530|13034|5|11|17385.83|0.06|0.01|R|F|1994-01-15|1993-11-24|1994-02-12|DELIVER IN PERSON|RAIL|e blithely spec| +11914|215091|15092|1|28|28170.24|0.03|0.00|A|F|1992-04-28|1992-05-20|1992-05-27|DELIVER IN PERSON|TRUCK| even, express accounts hag| +11914|21993|21994|2|31|59364.69|0.00|0.01|A|F|1992-05-01|1992-05-16|1992-05-12|TAKE BACK RETURN|MAIL| deposits.| +11914|622203|9740|3|37|41631.29|0.03|0.08|A|F|1992-06-14|1992-04-21|1992-06-27|NONE|FOB|the even attainme| +11914|350868|25883|4|39|74835.15|0.02|0.08|R|F|1992-03-06|1992-04-16|1992-03-13|COLLECT COD|TRUCK|ly furious ideas. blit| +11914|35563|48064|5|7|10489.92|0.10|0.00|A|F|1992-04-04|1992-05-03|1992-04-06|NONE|FOB|xcuses try to sleep slyly acc| +11914|700455|12970|6|5|7277.10|0.03|0.08|R|F|1992-05-19|1992-05-25|1992-06-11|COLLECT COD|REG AIR|thes. silent packages cajole blithely| +11914|535055|35056|7|17|18530.51|0.05|0.02|A|F|1992-06-20|1992-05-26|1992-07-15|DELIVER IN PERSON|TRUCK|ingly regular accounts; blithe| +11915|660066|47606|1|19|19494.57|0.09|0.05|N|O|1997-12-06|1998-02-13|1997-12-16|DELIVER IN PERSON|MAIL|arefully beneath the quickly| +11915|725655|13198|2|42|70586.04|0.09|0.00|N|O|1998-03-03|1998-02-07|1998-03-04|TAKE BACK RETURN|MAIL|lieve carefully after the slyly | +11915|75314|25315|3|22|28364.82|0.04|0.03|N|O|1998-01-14|1998-02-21|1998-02-06|COLLECT COD|SHIP|kages-- excuses serve careful| +11915|795571|8087|4|31|51662.74|0.03|0.03|N|O|1998-03-23|1998-02-06|1998-04-10|NONE|REG AIR|usly ironic deposits ou| +11915|150915|25922|5|3|5897.73|0.02|0.02|N|O|1997-12-23|1998-02-23|1997-12-27|COLLECT COD|SHIP|s. blithely ironic deposits | +11915|415276|15277|6|31|36928.75|0.06|0.00|N|O|1998-02-02|1998-02-13|1998-02-13|DELIVER IN PERSON|FOB|egular packages. i| +11916|173126|23127|1|33|39570.96|0.07|0.03|N|O|1998-07-13|1998-06-05|1998-08-02|DELIVER IN PERSON|REG AIR|t pinto beans use quickl| +11916|721569|34084|2|11|17495.83|0.01|0.08|N|O|1998-06-20|1998-05-06|1998-06-23|COLLECT COD|REG AIR|ding instructions. quickly iro| +11917|825080|25081|1|20|20100.80|0.02|0.01|N|O|1998-09-13|1998-09-06|1998-09-28|COLLECT COD|MAIL|ctions integrat| +11917|104499|29504|2|30|45104.70|0.03|0.03|N|O|1998-10-04|1998-10-22|1998-10-14|NONE|REG AIR|s cajole furi| +11917|304820|42339|3|26|47445.06|0.02|0.05|N|O|1998-11-19|1998-09-06|1998-11-30|DELIVER IN PERSON|SHIP|egrate among th| +11917|93514|18517|4|9|13567.59|0.10|0.04|N|O|1998-11-19|1998-09-08|1998-12-05|NONE|MAIL|final requests. furiously unusual idea| +11918|467720|30230|1|14|23627.80|0.02|0.08|R|F|1993-07-06|1993-08-01|1993-07-09|TAKE BACK RETURN|AIR|e furiously regular theodolites. fin| +11918|967658|30178|2|14|24158.54|0.08|0.06|R|F|1993-08-28|1993-08-10|1993-09-24|NONE|MAIL|alongside of the blithely even foxes? ironi| +11918|425487|504|3|22|31074.12|0.00|0.05|A|F|1993-08-09|1993-08-19|1993-08-14|DELIVER IN PERSON|FOB|ally among the | +11918|156311|43821|4|26|35550.06|0.05|0.04|A|F|1993-08-24|1993-08-17|1993-09-03|COLLECT COD|MAIL|quests integra| +11918|118200|5707|5|49|59691.80|0.05|0.06|R|F|1993-09-01|1993-08-26|1993-09-20|DELIVER IN PERSON|AIR|kly pending requests. furiously pending ide| +11919|560483|22995|1|42|64825.32|0.05|0.02|N|O|1996-02-11|1996-04-01|1996-02-12|COLLECT COD|AIR|fily express accounts. slyly unu| +11919|28821|28822|2|1|1749.82|0.08|0.06|N|O|1996-02-23|1996-04-21|1996-03-22|DELIVER IN PERSON|MAIL|s. ruthlessly idle accounts | +11919|384826|34827|3|19|36305.39|0.03|0.05|N|O|1996-05-17|1996-04-01|1996-06-14|COLLECT COD|REG AIR|ts maintain across the furiously expr| +11919|756480|18996|4|10|15364.50|0.00|0.03|N|O|1996-03-24|1996-05-06|1996-03-27|TAKE BACK RETURN|TRUCK| deposits; furiously | +11919|148417|10920|5|31|45427.71|0.04|0.03|N|O|1996-04-26|1996-04-20|1996-05-10|NONE|MAIL|ly pending asymptotes. pending, special a| +11919|436525|11542|6|46|67229.00|0.03|0.05|N|O|1996-02-15|1996-03-21|1996-02-16|TAKE BACK RETURN|MAIL|ages dazzle | +11919|673296|48323|7|3|3807.78|0.02|0.04|N|O|1996-03-10|1996-03-21|1996-04-08|DELIVER IN PERSON|SHIP| regular deposits do | +11944|81360|31361|1|11|14754.96|0.04|0.04|N|O|1997-11-26|1997-11-16|1997-12-15|TAKE BACK RETURN|RAIL| unusual deposits. packages wake| +11944|407264|19773|2|50|58562.00|0.10|0.08|N|O|1997-09-29|1997-11-05|1997-10-14|COLLECT COD|FOB|ously regu| +11944|875749|38267|3|37|63813.90|0.07|0.06|N|O|1997-09-24|1997-11-28|1997-10-22|TAKE BACK RETURN|MAIL|eodolites. quickly final d| +11944|703454|40997|4|34|49552.28|0.05|0.08|N|O|1997-12-06|1997-12-11|1997-12-14|NONE|AIR| regular deposits kindle along t| +11944|944746|7265|5|11|19697.70|0.02|0.03|N|O|1997-10-02|1997-12-16|1997-10-27|NONE|AIR| carefully even foxes. unusual account| +11945|326934|39441|1|24|47062.08|0.07|0.08|A|F|1995-03-14|1995-01-28|1995-03-21|TAKE BACK RETURN|AIR|iet packages. deposit| +11945|768346|18347|2|10|14143.10|0.09|0.05|R|F|1995-02-21|1995-02-18|1995-03-05|COLLECT COD|MAIL| use slyly at the carefully r| +11945|583809|33810|3|40|75711.20|0.10|0.07|R|F|1995-03-09|1995-02-03|1995-03-19|DELIVER IN PERSON|FOB|are blithely according to the requests| +11946|589681|14704|1|31|54890.46|0.04|0.07|N|O|1998-02-19|1997-12-28|1998-03-02|DELIVER IN PERSON|REG AIR|carefully. furiously| +11946|759783|9784|2|39|71867.25|0.08|0.04|N|O|1998-01-05|1998-01-27|1998-02-04|DELIVER IN PERSON|RAIL|ng the ironically regular deposits su| +11946|661426|36453|3|30|41621.70|0.03|0.05|N|O|1997-12-08|1998-01-02|1997-12-20|TAKE BACK RETURN|REG AIR|s along the furiously expr| +11946|570083|45106|4|50|57653.00|0.09|0.07|N|O|1998-01-02|1998-01-29|1998-01-21|TAKE BACK RETURN|TRUCK|g the pending deposits| +11946|382814|45322|5|41|77768.80|0.10|0.05|N|O|1997-11-17|1998-01-18|1997-12-09|DELIVER IN PERSON|FOB| express depths. slyly bold| +11947|368395|18396|1|1|1463.38|0.01|0.00|N|O|1997-01-16|1996-12-29|1997-01-30|DELIVER IN PERSON|AIR|deposits. bold deposits| +11947|600520|521|2|11|15625.39|0.07|0.05|N|O|1996-12-15|1996-12-09|1996-12-17|TAKE BACK RETURN|AIR|regular dependencies| +11947|938618|26173|3|28|46383.96|0.09|0.02|N|O|1996-10-01|1996-11-26|1996-10-03|TAKE BACK RETURN|FOB| packages. ironic | +11948|444254|31779|1|1|1198.23|0.02|0.03|N|O|1998-02-12|1998-03-16|1998-03-03|DELIVER IN PERSON|AIR|ngside of the quic| +11948|574317|49340|2|12|16695.48|0.09|0.00|N|O|1998-04-10|1998-02-06|1998-04-25|COLLECT COD|FOB|e carefully express pinto beans. slyly fi| +11948|531359|6380|3|9|12512.97|0.03|0.01|N|O|1998-02-11|1998-03-05|1998-02-23|DELIVER IN PERSON|SHIP|entiments wake furi| +11948|538339|25870|4|29|39941.99|0.02|0.06|N|O|1998-01-03|1998-03-22|1998-01-28|DELIVER IN PERSON|REG AIR|sts wake fluffily e| +11948|847647|10164|5|39|62189.40|0.06|0.04|N|O|1998-04-23|1998-03-12|1998-05-19|COLLECT COD|FOB|ven frays about the | +11948|386444|23966|6|5|7652.15|0.09|0.08|N|O|1998-04-16|1998-03-15|1998-04-23|DELIVER IN PERSON|REG AIR|s across the bold | +11948|959930|47488|7|16|31838.24|0.05|0.00|N|O|1998-04-21|1998-02-09|1998-04-30|NONE|RAIL|es are quickly along the foxes. accounts w| +11949|531628|44139|1|46|76341.60|0.05|0.07|A|F|1993-07-07|1993-06-21|1993-07-25|COLLECT COD|REG AIR|ans. ironic accounts across the blithel| +11949|63389|13390|2|46|62209.48|0.07|0.01|A|F|1993-06-02|1993-06-13|1993-06-26|DELIVER IN PERSON|TRUCK|ular ideas impress. requests haggle slyl| +11949|365995|15996|3|13|26792.74|0.08|0.02|R|F|1993-06-29|1993-07-27|1993-07-01|NONE|AIR|ccording to the iron| +11949|271631|9147|4|28|44873.36|0.10|0.00|A|F|1993-07-28|1993-06-30|1993-08-23|DELIVER IN PERSON|FOB|nt theodolites. carefully | +11949|293205|43206|5|29|34747.51|0.01|0.05|R|F|1993-09-09|1993-08-01|1993-10-02|COLLECT COD|REG AIR|tructions doubt furiously speci| +11950|622198|47223|1|22|24643.52|0.03|0.06|N|O|1996-10-14|1996-08-26|1996-10-30|COLLECT COD|TRUCK|are alongside of the pending depe| +11950|273630|11146|2|48|76973.76|0.09|0.03|N|O|1996-07-27|1996-10-09|1996-08-20|DELIVER IN PERSON|REG AIR|s use according to the car| +11950|889132|26684|3|22|24663.98|0.08|0.07|N|O|1996-10-27|1996-10-20|1996-11-11|DELIVER IN PERSON|RAIL|. blithely iro| +11950|631530|19067|4|36|52614.00|0.06|0.08|N|O|1996-08-14|1996-09-05|1996-08-23|COLLECT COD|TRUCK|ckly. fluffily bold instructi| +11950|116903|4410|5|6|11519.40|0.08|0.06|N|O|1996-11-14|1996-10-10|1996-11-23|NONE|REG AIR|egrate des| +11950|780200|5231|6|26|33284.42|0.04|0.04|N|O|1996-11-11|1996-09-03|1996-12-10|NONE|MAIL|s. furiously pending asymptotes cajole | +11951|791997|4513|1|10|20889.60|0.02|0.03|R|F|1992-07-24|1992-06-12|1992-07-29|NONE|SHIP|ithely bold| +11951|79680|4683|2|15|24895.20|0.02|0.05|R|F|1992-07-09|1992-06-12|1992-08-01|COLLECT COD|AIR| integrate carefully. furiously ir| +11951|174686|37190|3|31|54581.08|0.05|0.01|R|F|1992-07-17|1992-08-06|1992-07-21|COLLECT COD|FOB|al, regular accounts h| +11951|931086|43605|4|7|7819.28|0.09|0.03|R|F|1992-07-23|1992-08-02|1992-08-22|NONE|REG AIR| carefully through the bold instruc| +11951|754749|29780|5|48|86578.08|0.06|0.07|R|F|1992-07-28|1992-07-01|1992-08-20|NONE|SHIP|ly about the fluffily| +11951|52950|15452|6|23|43767.85|0.10|0.07|R|F|1992-07-19|1992-06-12|1992-07-20|NONE|AIR| even Tiresias haggle across th| +11976|215398|2911|1|10|13133.80|0.02|0.05|A|F|1995-01-15|1995-03-11|1995-02-14|DELIVER IN PERSON|FOB| nag above the regular, final accoun| +11976|177919|2926|2|1|1996.91|0.09|0.04|A|F|1995-01-15|1995-03-12|1995-01-27|COLLECT COD|SHIP|kages sleep carefully about t| +11976|270116|32622|3|42|45616.20|0.04|0.07|A|F|1995-05-02|1995-04-04|1995-05-26|DELIVER IN PERSON|REG AIR|hely even deposits. furiously speci| +11976|825472|505|4|31|43320.33|0.06|0.07|A|F|1995-01-22|1995-02-14|1995-02-17|TAKE BACK RETURN|SHIP|refully about the even instr| +11977|135738|23245|1|11|19511.03|0.00|0.01|A|F|1995-01-11|1995-01-01|1995-01-31|COLLECT COD|SHIP|ng the final platelets. caref| +11978|899248|11766|1|35|43652.00|0.09|0.03|N|O|1998-05-17|1998-06-22|1998-05-29|COLLECT COD|REG AIR|uffily unusual accounts| +11978|658659|46199|2|30|48528.60|0.01|0.07|N|O|1998-04-26|1998-05-16|1998-05-12|TAKE BACK RETURN|AIR|g the permanently unusual reques| +11978|68223|30725|3|43|51222.46|0.10|0.04|N|O|1998-07-21|1998-06-16|1998-08-02|TAKE BACK RETURN|FOB|fluffily ironic accounts hag| +11978|622382|34895|4|33|43043.55|0.08|0.00|N|O|1998-06-20|1998-06-15|1998-07-11|COLLECT COD|MAIL|nag furiously. even, ironic instruc| +11978|361720|24228|5|24|42761.04|0.07|0.08|N|O|1998-05-11|1998-06-23|1998-06-09|NONE|FOB|he carefully unusual theodolites wake | +11979|992707|5227|1|48|86383.68|0.00|0.07|N|O|1996-12-07|1996-11-09|1996-12-25|DELIVER IN PERSON|SHIP|equests boost furiously fin| +11979|412902|37919|2|12|21778.56|0.00|0.02|N|O|1996-09-06|1996-11-09|1996-09-07|COLLECT COD|SHIP|into beans use furiously ironic d| +11979|638391|38392|3|26|34563.36|0.07|0.04|N|O|1996-10-29|1996-11-12|1996-11-03|TAKE BACK RETURN|RAIL| bold plat| +11979|421440|33949|4|1|1361.42|0.10|0.07|N|O|1996-10-30|1996-12-02|1996-11-25|NONE|RAIL|s sleep. carefully bold | +11979|125338|12845|5|18|24539.94|0.02|0.07|N|O|1996-12-14|1996-11-07|1997-01-06|COLLECT COD|TRUCK|dle asymptotes kindle blithely ag| +11979|554018|16530|6|49|52527.51|0.03|0.03|N|O|1996-11-22|1996-10-25|1996-11-24|NONE|AIR|rding to the ironic accounts.| +11979|380502|18024|7|35|55387.15|0.01|0.07|N|O|1996-09-24|1996-11-20|1996-10-05|NONE|FOB|ously final | +11980|86974|49476|1|32|62751.04|0.09|0.01|A|F|1992-09-14|1992-10-25|1992-09-29|TAKE BACK RETURN|SHIP|ing to the carefully even courts| +11980|767959|42990|2|42|85130.64|0.09|0.05|A|F|1992-09-08|1992-10-20|1992-09-11|DELIVER IN PERSON|REG AIR| haggle fluff| +11980|76011|38513|3|50|49350.50|0.10|0.06|A|F|1992-11-17|1992-10-18|1992-11-22|COLLECT COD|REG AIR|n excuses. regular requests | +11980|505909|30930|4|14|26808.32|0.09|0.05|R|F|1992-09-19|1992-11-01|1992-10-11|COLLECT COD|SHIP|pendencies. quickly final excuses detec| +11980|802566|15083|5|17|24964.84|0.06|0.03|A|F|1992-09-28|1992-11-03|1992-10-16|TAKE BACK RETURN|FOB|ackages about the blithely express packag| +11980|723901|23902|6|6|11549.22|0.07|0.00|R|F|1992-09-20|1992-09-22|1992-10-14|TAKE BACK RETURN|REG AIR|usly final deposits about the requests ca| +11980|593694|6206|7|3|5363.01|0.08|0.06|R|F|1992-10-24|1992-09-27|1992-11-17|COLLECT COD|FOB|t among the furiously fina| +11981|209147|9148|1|13|13729.69|0.08|0.05|R|F|1992-02-20|1992-02-06|1992-03-17|COLLECT COD|AIR|refully eve| +11981|126419|1424|2|33|47698.53|0.06|0.04|R|F|1992-01-21|1992-03-24|1992-02-16|TAKE BACK RETURN|MAIL|nic, special dependencies believe expre| +11981|714326|26841|3|18|24125.22|0.10|0.03|R|F|1992-02-12|1992-02-26|1992-02-22|COLLECT COD|SHIP|accounts according to the requests | +11981|664109|14110|4|49|52580.43|0.07|0.01|R|F|1992-03-28|1992-03-14|1992-04-20|COLLECT COD|MAIL|sly pending courts are| +11982|401865|39390|1|19|33569.96|0.02|0.03|N|O|1996-04-03|1996-03-26|1996-04-20|NONE|REG AIR| packages cajole blithely| +11982|130030|5035|2|33|34980.99|0.08|0.01|N|O|1996-05-26|1996-03-12|1996-06-25|NONE|MAIL| haggle quick| +11983|653228|28255|1|14|16536.66|0.08|0.03|R|F|1992-05-17|1992-03-13|1992-05-24|NONE|TRUCK|ng account| +12008|701735|14250|1|8|13893.60|0.10|0.03|R|F|1995-03-07|1995-03-18|1995-03-27|COLLECT COD|SHIP|ep furiously even reques| +12008|60020|47524|2|44|43120.88|0.00|0.01|R|F|1995-04-11|1995-05-05|1995-04-18|DELIVER IN PERSON|RAIL|tions. ironic packag| +12008|748788|48789|3|46|84490.50|0.00|0.05|R|F|1995-02-10|1995-04-01|1995-03-06|NONE|MAIL|ithely around the unusual accounts. sl| +12008|866157|28675|4|41|46047.51|0.10|0.05|N|F|1995-05-22|1995-04-13|1995-06-20|TAKE BACK RETURN|AIR|otes. requests boost slyly exp| +12008|495595|33123|5|17|27039.69|0.10|0.01|A|F|1995-05-28|1995-04-29|1995-06-01|NONE|RAIL|usual accounts boost sly| +12009|834831|22380|1|24|42378.96|0.03|0.04|A|F|1994-07-16|1994-09-16|1994-08-13|COLLECT COD|MAIL|le enticingly ironic | +12010|523764|48785|1|6|10726.44|0.06|0.03|R|F|1994-02-28|1994-01-27|1994-03-17|NONE|TRUCK|uriously even d| +12010|900587|588|2|32|50801.28|0.00|0.02|A|F|1994-01-05|1994-03-19|1994-01-09|NONE|AIR| according to the rut| +12010|152912|40422|3|3|5894.73|0.10|0.08|A|F|1994-04-18|1994-02-18|1994-05-02|NONE|SHIP| use according to the deposits| +12010|980469|42989|4|43|66625.06|0.02|0.00|A|F|1994-03-24|1994-02-04|1994-04-04|DELIVER IN PERSON|TRUCK|ainst the alwa| +12010|726432|13975|5|10|14584.00|0.06|0.03|R|F|1994-01-01|1994-03-10|1994-01-21|DELIVER IN PERSON|FOB|y express ideas past the even, exp| +12010|142189|29696|6|35|43091.30|0.04|0.03|A|F|1994-04-19|1994-02-02|1994-04-22|TAKE BACK RETURN|TRUCK|de of the furiou| +12010|760504|10505|7|49|76659.03|0.01|0.06|R|F|1993-12-27|1994-03-05|1994-01-04|COLLECT COD|SHIP|equests ab| +12011|774430|36946|1|33|49645.20|0.04|0.06|R|F|1992-02-21|1992-03-30|1992-03-01|TAKE BACK RETURN|MAIL|. blithely ironic theod| +12011|840935|15968|2|41|76911.49|0.08|0.04|R|F|1992-02-27|1992-04-05|1992-03-01|COLLECT COD|RAIL|l accounts boost blithely across| +12012|401615|39140|1|6|9099.54|0.03|0.05|N|O|1998-01-20|1998-02-06|1998-02-19|DELIVER IN PERSON|MAIL|ealthily ironic foxes. quickly ev| +12012|933312|8349|2|42|56501.34|0.05|0.07|N|O|1998-02-24|1997-12-28|1998-03-04|DELIVER IN PERSON|RAIL|its boost. slyly unusual packages among t| +12012|167862|17863|3|11|21228.46|0.04|0.06|N|O|1998-02-14|1998-02-03|1998-02-24|TAKE BACK RETURN|SHIP|ve carefully about the fluffily pending fox| +12012|243087|5592|4|13|13390.91|0.00|0.05|N|O|1998-01-20|1998-02-12|1998-01-23|NONE|TRUCK|eans sleep f| +12012|561947|11948|5|1|2008.92|0.05|0.07|N|O|1997-12-16|1997-12-27|1997-12-23|NONE|SHIP|r asymptotes impress ac| +12012|636843|11868|6|14|24917.34|0.02|0.07|N|O|1997-12-02|1998-01-10|1997-12-06|DELIVER IN PERSON|REG AIR|l courts solve express theo| +12013|12765|266|1|32|53688.32|0.01|0.02|N|O|1995-12-02|1996-02-07|1995-12-12|DELIVER IN PERSON|AIR|y even platel| +12014|168052|30556|1|2|2240.10|0.06|0.02|A|F|1995-03-03|1995-03-19|1995-03-23|DELIVER IN PERSON|FOB|sits around th| +12014|434383|46892|2|6|7904.16|0.04|0.07|A|F|1995-05-20|1995-03-14|1995-06-15|NONE|SHIP|ccounts are slyl| +12014|673516|48543|3|2|2978.96|0.09|0.07|R|F|1995-04-20|1995-04-10|1995-04-29|NONE|REG AIR|uctions boost slyly; slyly even | +12014|774232|24233|4|14|18286.80|0.01|0.05|R|F|1995-05-21|1995-03-20|1995-05-22|DELIVER IN PERSON|MAIL|x blithely. even deposits are. quietl| +12014|512599|25110|5|33|53181.81|0.08|0.03|A|F|1995-04-05|1995-04-09|1995-05-03|COLLECT COD|MAIL|efully regular ac| +12014|247027|47028|6|4|3896.04|0.07|0.05|A|F|1995-01-28|1995-03-03|1995-02-27|TAKE BACK RETURN|AIR|r, pending dependencies wake even, bold id| +12015|165719|15720|1|22|39263.62|0.10|0.02|N|O|1996-05-30|1996-05-09|1996-06-15|COLLECT COD|TRUCK|out the even deposits solve | +12015|234792|47297|2|40|69071.20|0.03|0.06|N|O|1996-05-07|1996-05-08|1996-05-13|COLLECT COD|FOB|y final epitaphs accor| +12015|141706|16711|3|50|87385.00|0.07|0.02|N|O|1996-07-20|1996-06-05|1996-08-04|COLLECT COD|REG AIR|ironic grouches are idly across the slyly r| +12040|866449|16450|1|10|14154.00|0.09|0.06|N|O|1997-03-14|1997-02-09|1997-04-10|NONE|MAIL|d asymptotes use against the| +12040|397461|47462|2|6|9350.70|0.00|0.04|N|O|1997-01-13|1997-03-04|1997-02-03|TAKE BACK RETURN|SHIP|as sleep blithely about the bl| +12040|122834|47839|3|14|25995.62|0.07|0.08|N|O|1997-03-28|1997-03-27|1997-03-29|TAKE BACK RETURN|SHIP| quietly ironic exc| +12040|462177|12178|4|47|53540.05|0.10|0.00|N|O|1997-04-13|1997-03-21|1997-04-17|TAKE BACK RETURN|MAIL|ests wake slyly after the careful| +12040|796008|8524|5|31|34223.07|0.06|0.03|N|O|1997-05-03|1997-03-18|1997-05-23|TAKE BACK RETURN|RAIL|ctions cajole b| +12040|498302|35830|6|39|50710.92|0.03|0.00|N|O|1997-05-09|1997-03-18|1997-05-14|DELIVER IN PERSON|MAIL|. furiously ironic ac| +12040|959247|21767|7|5|6531.00|0.10|0.08|N|O|1997-01-10|1997-02-18|1997-01-27|DELIVER IN PERSON|RAIL|the furiously ironic reque| +12041|57623|45127|1|33|52160.46|0.10|0.03|N|O|1997-01-19|1997-01-22|1997-02-03|NONE|RAIL|riously express patterns sleep slyly| +12041|458326|33345|2|50|64215.00|0.08|0.02|N|O|1996-11-18|1997-01-02|1996-12-16|COLLECT COD|MAIL|ously ironic instructions are slyly ironic| +12041|71285|46288|3|41|51507.48|0.08|0.01|N|O|1996-12-01|1997-01-08|1996-12-08|NONE|AIR|beans are. fur| +12041|72722|10226|4|2|3389.44|0.04|0.03|N|O|1996-12-14|1996-12-16|1996-12-26|DELIVER IN PERSON|FOB|l accounts are slyly even theodolit| +12042|426739|26740|1|3|4997.13|0.10|0.04|R|F|1993-10-13|1993-10-09|1993-10-22|COLLECT COD|AIR|eposits are quickly. care| +12042|191925|29435|2|42|84710.64|0.02|0.08|R|F|1993-09-03|1993-09-30|1993-09-14|DELIVER IN PERSON|FOB|use carefully according to the pl| +12043|292707|17718|1|18|30594.42|0.04|0.08|N|O|1998-04-07|1998-04-13|1998-04-28|NONE|SHIP| enticingly ironic asymptotes. sly| +12043|517237|42258|2|39|48914.19|0.10|0.08|N|O|1998-05-25|1998-04-16|1998-06-18|DELIVER IN PERSON|FOB|ithely pending requests c| +12044|344987|20000|1|22|44703.34|0.08|0.03|N|O|1996-02-07|1996-03-15|1996-02-22|DELIVER IN PERSON|FOB|ffily regular deposits. quickly even d| +12045|958639|8640|1|37|62810.83|0.06|0.08|A|F|1995-03-12|1995-03-30|1995-04-07|TAKE BACK RETURN|REG AIR|riously ironic warthogs alongside of t| +12045|838819|38820|2|6|10546.62|0.02|0.08|R|F|1995-05-24|1995-04-15|1995-06-08|DELIVER IN PERSON|SHIP| pinto bea| +12045|15263|15264|3|9|10604.34|0.04|0.06|R|F|1995-04-02|1995-03-05|1995-04-25|TAKE BACK RETURN|RAIL|xpress ideas. slyly exp| +12045|513753|26264|4|23|40634.79|0.02|0.06|R|F|1995-05-30|1995-04-07|1995-06-08|NONE|SHIP|accounts. carefully pending | +12046|547346|9857|1|32|44586.24|0.01|0.05|A|F|1994-05-28|1994-04-26|1994-05-31|TAKE BACK RETURN|REG AIR|s theodolites. quickly e| +12046|233436|8445|2|7|9585.94|0.10|0.00|R|F|1994-06-07|1994-05-21|1994-06-21|TAKE BACK RETURN|TRUCK|st the bold asymptotes. regular requests| +12046|347085|22098|3|4|4528.28|0.10|0.01|R|F|1994-06-23|1994-06-14|1994-07-13|TAKE BACK RETURN|SHIP|lar accounts affix iron| +12046|442572|42573|4|7|10601.85|0.04|0.04|A|F|1994-05-21|1994-04-23|1994-05-26|NONE|TRUCK|uctions cajole carefully fluffily r| +12046|296729|34245|5|8|13805.68|0.05|0.02|A|F|1994-07-12|1994-06-14|1994-08-07|NONE|TRUCK|y ironic asymptotes| +12046|112876|37881|6|21|39666.27|0.07|0.08|R|F|1994-04-07|1994-05-05|1994-04-21|COLLECT COD|SHIP|hely. accounts sleep care| +12046|103425|40932|7|28|39995.76|0.10|0.07|A|F|1994-05-14|1994-04-23|1994-05-23|NONE|AIR| pinto beans| +12047|258942|33953|1|26|49424.18|0.03|0.08|R|F|1993-02-17|1993-01-10|1993-03-04|TAKE BACK RETURN|REG AIR|poach fluffily along the iron| +12047|23907|48908|2|5|9154.50|0.07|0.02|R|F|1993-02-14|1993-02-06|1993-03-03|NONE|TRUCK|hins. blithely reg| +12047|801502|14019|3|34|47717.64|0.03|0.00|A|F|1992-11-15|1992-12-23|1992-12-14|DELIVER IN PERSON|RAIL|kly final dependenc| +12047|829025|29026|4|24|22895.52|0.09|0.00|R|F|1993-01-22|1992-12-23|1993-02-12|NONE|RAIL|ely express deposits? ironic ideas abou| +12047|414172|14173|5|21|22809.15|0.05|0.06|R|F|1993-01-16|1992-12-18|1993-01-24|COLLECT COD|RAIL|ronic instru| +12047|974028|11586|6|41|45181.18|0.02|0.06|R|F|1992-12-18|1993-01-09|1993-01-17|TAKE BACK RETURN|TRUCK|around the slyly ironic account| +12047|479528|17056|7|18|27135.00|0.07|0.03|R|F|1993-01-09|1992-12-25|1993-01-12|DELIVER IN PERSON|FOB| special multipliers nag blith| +12072|417491|30000|1|49|69015.03|0.02|0.02|N|O|1996-12-18|1996-12-07|1997-01-03|DELIVER IN PERSON|MAIL| furiously. express, even t| +12072|768958|31474|2|30|60807.60|0.07|0.06|N|O|1996-11-14|1997-01-27|1996-11-20|TAKE BACK RETURN|MAIL|ts haggle carefully busy | +12073|669434|31948|1|8|11227.20|0.07|0.01|N|O|1996-12-19|1997-01-10|1997-01-11|NONE|TRUCK| fluffily silent accounts. regular t| +12073|174392|11902|2|5|7331.95|0.08|0.02|N|O|1996-12-31|1996-11-27|1997-01-08|TAKE BACK RETURN|AIR|ding to the furiously regular ideas. pendin| +12073|992749|30307|3|12|22100.40|0.10|0.01|N|O|1996-11-19|1997-01-03|1996-12-07|TAKE BACK RETURN|REG AIR|und the carefully even requ| +12073|120422|32925|4|35|50484.70|0.04|0.07|N|O|1996-12-03|1996-12-08|1996-12-05|COLLECT COD|REG AIR|ht cajole al| +12073|917514|42551|5|33|50538.51|0.10|0.08|N|O|1996-11-22|1996-11-19|1996-12-12|COLLECT COD|FOB|eodolites b| +12073|653777|16291|6|24|41537.76|0.02|0.07|N|O|1996-12-15|1996-12-16|1996-12-22|TAKE BACK RETURN|TRUCK|c instructions sleep s| +12074|777815|27816|1|42|79496.76|0.01|0.07|R|F|1994-10-27|1994-11-15|1994-11-07|TAKE BACK RETURN|RAIL|e along the even, bold acco| +12075|2769|15270|1|21|35106.96|0.09|0.00|N|O|1996-03-12|1996-02-11|1996-03-21|TAKE BACK RETURN|RAIL|y slyly special warhor| +12075|522913|10444|2|26|50333.14|0.04|0.08|N|O|1996-04-05|1996-01-15|1996-05-04|DELIVER IN PERSON|REG AIR|ly pending foxes use s| +12076|75734|13238|1|42|71808.66|0.03|0.02|R|F|1993-09-16|1993-10-10|1993-10-05|NONE|RAIL|ely around the realms! slyl| +12076|845658|20691|2|34|54522.74|0.01|0.06|R|F|1993-08-30|1993-08-15|1993-09-26|DELIVER IN PERSON|RAIL|could have to boost. regular deposits| +12076|968928|43967|3|3|5990.64|0.06|0.02|A|F|1993-08-27|1993-08-17|1993-09-18|COLLECT COD|TRUCK|ep furiousl| +12076|756773|6774|4|26|47573.24|0.08|0.07|A|F|1993-08-19|1993-09-27|1993-08-23|TAKE BACK RETURN|SHIP|ts. bold requests ag| +12076|79390|41892|5|7|9585.73|0.01|0.01|R|F|1993-07-17|1993-09-16|1993-08-14|NONE|REG AIR|gularly final deposits haggle blithely | +12076|293794|6300|6|22|39331.16|0.01|0.02|A|F|1993-11-09|1993-08-22|1993-12-09|NONE|SHIP|e quickly regular accounts. blithely pe| +12076|784124|34125|7|47|56780.23|0.01|0.07|R|F|1993-10-09|1993-09-17|1993-10-17|DELIVER IN PERSON|RAIL|theodolites boost sometimes fluffily pen| +12077|762378|12379|1|13|18724.42|0.03|0.05|N|O|1996-02-13|1996-01-22|1996-02-15|COLLECT COD|SHIP|s the quickly ironic| +12077|274126|11642|2|48|52805.28|0.00|0.03|N|O|1995-12-13|1996-01-15|1996-01-04|TAKE BACK RETURN|RAIL|ng requests. excuses against the ironic| +12077|235258|47763|3|15|17898.60|0.09|0.06|N|O|1996-01-11|1996-01-01|1996-01-13|COLLECT COD|RAIL|ual theodolites haggle dogged| +12077|975722|13280|4|32|57525.76|0.01|0.02|N|O|1996-03-21|1996-01-02|1996-04-16|TAKE BACK RETURN|SHIP|ymptotes according to the requests s| +12077|944150|6669|5|47|56123.17|0.02|0.03|N|O|1996-02-18|1996-02-11|1996-03-02|TAKE BACK RETURN|RAIL|fluffily final r| +12078|276848|39354|1|9|16423.47|0.08|0.02|N|F|1995-05-25|1995-05-07|1995-06-20|TAKE BACK RETURN|SHIP|counts. regular packages haggle fu| +12079|801111|13628|1|12|12144.84|0.10|0.07|A|F|1993-06-28|1993-04-12|1993-07-22|NONE|TRUCK|nag above the | +12079|256878|19384|2|32|58715.52|0.05|0.04|A|F|1993-07-05|1993-04-20|1993-07-17|NONE|AIR| ironic requests nag. furiously | +12079|345805|8312|3|35|64777.65|0.06|0.04|A|F|1993-06-12|1993-04-17|1993-07-03|DELIVER IN PERSON|RAIL|sits cajole according to the fluffily unus| +12104|433092|45601|1|23|23576.61|0.01|0.02|N|O|1995-08-11|1995-09-06|1995-09-09|NONE|TRUCK|ct carefully at the st| +12104|969123|44162|2|50|59604.00|0.07|0.00|N|O|1995-09-21|1995-10-11|1995-10-15|TAKE BACK RETURN|AIR|gle slowly pending reque| +12104|50180|12682|3|17|19213.06|0.06|0.00|N|O|1995-09-16|1995-09-15|1995-09-24|TAKE BACK RETURN|AIR| quickly regul| +12105|270366|7882|1|50|66817.50|0.04|0.01|A|F|1993-07-08|1993-08-08|1993-07-20|NONE|FOB|fluffily blithe pinto beans play carefu| +12105|33163|8164|2|23|25211.68|0.07|0.04|R|F|1993-06-20|1993-07-09|1993-06-22|DELIVER IN PERSON|MAIL|etly final packages | +12105|358362|20870|3|33|46871.55|0.02|0.01|R|F|1993-08-14|1993-09-01|1993-08-16|COLLECT COD|RAIL|y final requests. fur| +12105|985394|22952|4|47|69529.45|0.08|0.03|R|F|1993-09-14|1993-07-29|1993-10-02|DELIVER IN PERSON|AIR|y slowly e| +12106|672234|22235|1|41|49454.20|0.09|0.07|N|O|1996-06-21|1996-09-09|1996-06-30|TAKE BACK RETURN|SHIP|lithely even| +12106|231525|19038|2|39|56803.89|0.00|0.07|N|O|1996-09-10|1996-08-31|1996-10-01|DELIVER IN PERSON|AIR|n accounts hinder blithely against the idea| +12106|227712|27713|3|29|47551.30|0.04|0.05|N|O|1996-07-25|1996-08-18|1996-08-18|TAKE BACK RETURN|AIR|fully ironic| +12106|149259|24264|4|24|31398.00|0.06|0.04|N|O|1996-10-06|1996-09-06|1996-10-16|NONE|REG AIR|theodolites. s| +12107|72006|9510|1|27|26406.00|0.00|0.05|A|F|1993-02-27|1993-01-24|1993-03-20|TAKE BACK RETURN|SHIP| fluffily unusual platelets agains| +12107|201231|1232|2|49|55478.78|0.05|0.03|R|F|1993-03-29|1993-01-30|1993-04-12|TAKE BACK RETURN|REG AIR|y furiously bold platelets. close| +12107|76662|26663|3|3|4915.98|0.01|0.08|R|F|1993-01-01|1993-03-01|1993-01-12|COLLECT COD|AIR|telets. slyly pending c| +12107|455250|30269|4|32|38567.36|0.10|0.08|A|F|1993-03-24|1993-01-25|1993-04-14|TAKE BACK RETURN|FOB|s boost the| +12107|377388|39896|5|19|27842.03|0.10|0.05|R|F|1993-01-19|1993-02-28|1993-02-10|NONE|RAIL|s theodolites alongside of t| +12107|749022|24051|6|24|25703.76|0.10|0.06|A|F|1993-02-16|1993-01-18|1993-03-06|TAKE BACK RETURN|SHIP|en excuses! spec| +12108|622838|10375|1|39|68671.20|0.00|0.08|N|O|1998-07-06|1998-08-21|1998-07-22|NONE|RAIL| carefully pe| +12108|34786|34787|2|38|65389.64|0.04|0.05|N|O|1998-08-22|1998-09-03|1998-09-14|DELIVER IN PERSON|TRUCK|ts wake slyly after the furiously | +12109|527712|15243|1|33|57409.77|0.00|0.06|N|O|1998-01-21|1998-04-09|1998-01-24|NONE|RAIL|bold deposits. furiously ironic accoun| +12109|240133|15142|2|44|47217.28|0.09|0.01|N|O|1998-01-31|1998-04-01|1998-02-15|NONE|FOB|o beans are along the carefully re| +12109|901858|39413|3|11|20457.91|0.05|0.05|N|O|1998-04-26|1998-04-15|1998-05-11|COLLECT COD|SHIP|r asymptotes; accounts sleep slyly. pe| +12109|511997|11998|4|17|34152.49|0.04|0.03|N|O|1998-03-05|1998-02-18|1998-03-17|NONE|TRUCK|nusual, even packages | +12109|125770|38273|5|7|12570.39|0.06|0.04|N|O|1998-04-21|1998-04-05|1998-05-15|COLLECT COD|AIR| accounts was carefully fin| +12109|812131|49680|6|46|47982.14|0.08|0.08|N|O|1998-04-25|1998-03-02|1998-05-22|COLLECT COD|MAIL|to beans solv| +12109|472924|22925|7|19|36041.10|0.07|0.05|N|O|1998-04-13|1998-02-20|1998-05-09|NONE|REG AIR|n requests wake carefull| +12110|417935|17936|1|9|16676.19|0.04|0.02|A|F|1995-03-06|1995-01-10|1995-04-01|NONE|MAIL|p quickly. slyly final depo| +12110|231104|18617|2|22|22771.98|0.07|0.05|A|F|1994-12-22|1995-02-27|1994-12-31|NONE|MAIL| cajole after the quickly| +12110|149849|37356|3|23|43673.32|0.07|0.00|R|F|1995-03-28|1995-03-10|1995-04-18|NONE|MAIL|efully express ins| +12110|503636|28657|4|41|67224.01|0.00|0.07|A|F|1994-12-18|1995-01-11|1995-01-04|TAKE BACK RETURN|RAIL|l escapades. carefully fina| +12111|923299|10854|1|29|38345.25|0.01|0.03|N|O|1997-07-25|1997-07-22|1997-08-13|COLLECT COD|TRUCK|ecial packages | +12111|885066|35067|2|40|42040.80|0.06|0.00|N|O|1997-07-04|1997-06-01|1997-07-08|NONE|TRUCK|y regular theodoli| +12111|302451|14958|3|16|23255.04|0.06|0.02|N|O|1997-08-01|1997-07-16|1997-08-26|COLLECT COD|AIR|c deposits. carefully pending pa| +12111|278371|3382|4|1|1349.36|0.01|0.08|N|O|1997-07-30|1997-06-01|1997-08-03|NONE|SHIP|ites haggle. p| +12111|575322|345|5|37|51700.10|0.04|0.00|N|O|1997-06-04|1997-06-26|1997-06-25|NONE|FOB| special requests. final, express ide| +12111|426721|14246|6|30|49431.00|0.04|0.07|N|O|1997-07-25|1997-07-20|1997-08-15|DELIVER IN PERSON|SHIP|es. slyly even asy| +12111|895400|7918|7|12|16744.32|0.07|0.06|N|O|1997-07-21|1997-07-17|1997-08-17|TAKE BACK RETURN|FOB| cajole blithely quickly ironic pa| +12136|971463|46502|1|23|35291.66|0.08|0.04|N|O|1995-08-14|1995-09-07|1995-08-28|TAKE BACK RETURN|REG AIR|ecial packag| +12136|366337|3859|2|15|21049.80|0.03|0.04|N|F|1995-06-15|1995-08-29|1995-07-05|NONE|TRUCK|leep. fluff| +12137|14947|39948|1|3|5585.82|0.05|0.02|N|O|1997-03-11|1997-01-16|1997-03-30|COLLECT COD|TRUCK| blithely iron| +12137|206786|6787|2|41|69403.57|0.09|0.02|N|O|1997-01-21|1997-01-11|1997-02-17|TAKE BACK RETURN|AIR|ages sleep. unusual pa| +12138|957365|19885|1|33|46936.56|0.04|0.05|N|O|1998-06-18|1998-05-22|1998-07-08|TAKE BACK RETURN|MAIL|yly final pac| +12138|424440|24441|2|4|5457.68|0.00|0.06|N|O|1998-03-03|1998-04-09|1998-03-06|DELIVER IN PERSON|MAIL|ole carefully. pending, bold a| +12138|555488|5489|3|7|10804.22|0.01|0.07|N|O|1998-04-19|1998-04-17|1998-05-19|DELIVER IN PERSON|AIR|lyly pending depo| +12138|76454|1457|4|16|22887.20|0.07|0.01|N|O|1998-05-25|1998-05-18|1998-05-30|NONE|SHIP| regular pinto beans wake quietly among the| +12138|946704|21741|5|26|45517.16|0.07|0.04|N|O|1998-05-27|1998-04-18|1998-06-08|DELIVER IN PERSON|TRUCK|onic packages. instructions nag flu| +12138|250039|37555|6|46|45494.92|0.06|0.01|N|O|1998-04-01|1998-04-30|1998-04-06|TAKE BACK RETURN|TRUCK|ithely above the slyly fi| +12139|868218|30736|1|12|14234.04|0.10|0.00|N|O|1997-11-06|1997-10-04|1997-11-10|DELIVER IN PERSON|MAIL|ons are carefull| +12139|135841|10846|2|17|31906.28|0.02|0.03|N|O|1997-09-09|1997-09-20|1997-10-08|COLLECT COD|AIR|ptotes integrate quickly. entici| +12139|69473|19474|3|47|67796.09|0.05|0.04|N|O|1997-08-16|1997-10-12|1997-08-22|COLLECT COD|TRUCK|uests mold about the bl| +12139|630478|5503|4|14|19718.16|0.08|0.08|N|O|1997-08-20|1997-09-27|1997-08-21|TAKE BACK RETURN|RAIL| sleep. busily even accounts | +12140|637842|355|1|44|78311.64|0.04|0.01|A|F|1994-04-20|1994-05-30|1994-05-08|TAKE BACK RETURN|AIR|ven requests play fur| +12140|206946|31955|2|13|24088.09|0.03|0.02|A|F|1994-04-08|1994-04-14|1994-04-14|TAKE BACK RETURN|SHIP|the dependencies sleep alongs| +12140|137401|49904|3|7|10068.80|0.05|0.07|R|F|1994-04-05|1994-04-19|1994-05-02|DELIVER IN PERSON|RAIL|riously. excuses sleep amon| +12140|293852|18863|4|1|1845.84|0.06|0.01|A|F|1994-06-10|1994-05-03|1994-06-21|TAKE BACK RETURN|TRUCK|the excuses use slyly unusual the| +12140|767930|17931|5|27|53943.30|0.08|0.08|A|F|1994-04-20|1994-04-13|1994-05-19|COLLECT COD|SHIP|he express theodolites. blith| +12140|588498|1010|6|39|61872.33|0.05|0.07|A|F|1994-04-30|1994-05-14|1994-05-11|TAKE BACK RETURN|MAIL|y regular ideas against the carefully idl| +12140|885548|10583|7|41|62873.50|0.01|0.06|A|F|1994-06-01|1994-04-04|1994-06-24|TAKE BACK RETURN|TRUCK|uickly carefully pending p| +12141|391441|41442|1|19|29116.17|0.06|0.02|N|O|1997-07-22|1997-05-14|1997-07-24|TAKE BACK RETURN|RAIL|. bravely ev| +12141|948533|36088|2|45|71167.05|0.08|0.06|N|O|1997-06-07|1997-05-19|1997-07-07|COLLECT COD|FOB|egular packages. quickly ironic c| +12141|989709|14748|3|17|30577.22|0.07|0.02|N|O|1997-05-01|1997-05-03|1997-05-30|NONE|AIR|tes after the pending theodolites | +12142|721415|46444|1|2|2872.76|0.01|0.02|N|O|1996-10-23|1996-10-18|1996-11-16|DELIVER IN PERSON|RAIL|nal instruction| +12142|806165|43714|2|12|12853.44|0.10|0.05|N|O|1996-11-27|1996-12-01|1996-12-18|DELIVER IN PERSON|FOB|ckages play carefully quickly regular mul| +12142|208470|8471|3|35|48246.10|0.05|0.02|N|O|1996-11-18|1996-11-20|1996-12-17|NONE|MAIL|iously. slyly regular packages af| +12143|38605|26106|1|36|55569.60|0.10|0.01|R|F|1994-12-24|1994-11-04|1995-01-14|TAKE BACK RETURN|SHIP|lar foxes. blithely sly | +12168|612984|12985|1|22|41732.90|0.05|0.04|R|F|1993-11-02|1993-12-19|1993-11-12|TAKE BACK RETURN|AIR|yly. quick| +12168|419538|44555|2|6|8745.06|0.03|0.01|A|F|1993-10-15|1993-11-05|1993-11-02|DELIVER IN PERSON|RAIL|fully above the carefully e| +12168|168449|30953|3|30|45523.20|0.01|0.03|A|F|1993-12-25|1993-11-20|1994-01-11|DELIVER IN PERSON|FOB|. carefully silent acc| +12168|116725|41730|4|38|66185.36|0.09|0.06|A|F|1993-11-26|1993-10-26|1993-12-15|COLLECT COD|MAIL| even foxes! furious| +12168|793940|18971|5|24|48813.84|0.01|0.02|A|F|1994-01-21|1993-11-07|1994-02-17|NONE|SHIP| final depos| +12168|732850|32851|6|36|67781.52|0.07|0.01|R|F|1993-12-17|1993-11-23|1994-01-07|TAKE BACK RETURN|SHIP|deas. furiously final platelets are st| +12168|2839|2840|7|23|40062.09|0.07|0.01|A|F|1993-10-24|1993-10-30|1993-11-13|TAKE BACK RETURN|REG AIR|ly express pea| +12169|700743|38286|1|3|5231.13|0.09|0.08|R|F|1994-07-10|1994-06-02|1994-07-17|TAKE BACK RETURN|FOB|ithely unusu| +12169|376510|26511|2|23|36489.50|0.00|0.08|R|F|1994-07-09|1994-06-06|1994-07-23|COLLECT COD|FOB|e regular, even deposi| +12169|988114|25672|3|30|36062.10|0.02|0.04|R|F|1994-07-10|1994-05-05|1994-08-08|DELIVER IN PERSON|RAIL|t deposits nag br| +12169|222807|22808|4|41|70921.39|0.08|0.01|A|F|1994-05-15|1994-06-19|1994-06-02|DELIVER IN PERSON|MAIL|ntegrate careful multipliers. caref| +12169|716123|41152|5|10|11390.90|0.05|0.05|R|F|1994-05-04|1994-04-29|1994-05-10|NONE|TRUCK|mong the final, ironic accounts sleep furio| +12169|870772|45807|6|15|26140.95|0.04|0.01|R|F|1994-05-13|1994-06-15|1994-05-20|COLLECT COD|REG AIR| bold requests use | +12170|591223|41224|1|30|39426.00|0.09|0.05|N|O|1998-07-29|1998-09-13|1998-07-30|NONE|SHIP|ing asymptotes haggle across the slyly even| +12170|681524|44038|2|40|60219.60|0.10|0.05|N|O|1998-11-09|1998-09-16|1998-11-26|DELIVER IN PERSON|FOB|fluffily careful accounts nag | +12170|364148|26656|3|34|41212.42|0.10|0.03|N|O|1998-11-01|1998-09-10|1998-11-07|DELIVER IN PERSON|MAIL|carefully even ide| +12171|982893|45413|1|49|96816.65|0.07|0.07|N|O|1998-01-15|1998-03-20|1998-01-19|TAKE BACK RETURN|SHIP|instructions. requests cajole slyly ac| +12171|465854|40873|2|31|56414.73|0.08|0.00|N|O|1998-04-15|1998-01-24|1998-04-25|DELIVER IN PERSON|AIR|press instructions cajole quickly. c| +12172|835249|35250|1|42|49736.40|0.09|0.06|A|F|1993-09-05|1993-11-02|1993-09-26|COLLECT COD|MAIL|dencies haggle. slyly regular | +12172|16133|41134|2|29|30424.77|0.02|0.01|R|F|1993-09-01|1993-09-29|1993-09-30|COLLECT COD|RAIL|ress, ironic excuses? slyly speci| +12173|80088|5091|1|27|28838.16|0.03|0.04|R|F|1993-08-25|1993-09-25|1993-08-31|TAKE BACK RETURN|RAIL|y fluffily ironic dolphins. even deposits h| +12173|24316|24317|2|46|57054.26|0.08|0.08|A|F|1993-10-09|1993-10-10|1993-11-01|DELIVER IN PERSON|SHIP|s. slyly final multipliers integr| +12174|578985|28986|1|19|39215.24|0.08|0.08|A|F|1994-05-14|1994-05-02|1994-06-10|TAKE BACK RETURN|FOB|even ideas wake regular accounts. | +12174|991454|3974|2|24|37089.84|0.07|0.08|A|F|1994-06-27|1994-04-05|1994-07-09|TAKE BACK RETURN|SHIP|ses wake slyly fluffily ruthless deposit| +12174|360564|48086|3|33|53610.15|0.10|0.02|A|F|1994-03-09|1994-05-07|1994-04-07|DELIVER IN PERSON|RAIL|eans wake blithely blithely unusua| +12175|810177|10178|1|1|1087.13|0.00|0.02|R|F|1994-01-18|1993-11-28|1994-02-05|COLLECT COD|FOB|ily pending requests hagg| +12175|644748|7261|2|1|1692.71|0.04|0.01|A|F|1994-02-16|1993-12-27|1994-02-24|TAKE BACK RETURN|REG AIR|eposits wake. slyly final platelet| +12175|273302|35808|3|40|51011.60|0.01|0.04|R|F|1994-02-09|1994-01-10|1994-02-26|NONE|FOB| wake behind the f| +12175|370837|20838|4|44|83944.08|0.07|0.06|R|F|1994-01-21|1994-01-25|1994-02-04|COLLECT COD|SHIP|e busily silent requests sleep at the blith| +12175|652488|40028|5|41|59058.45|0.10|0.07|R|F|1994-01-25|1993-12-23|1994-02-09|DELIVER IN PERSON|SHIP|le alongside of the deposit| +12175|360276|10277|6|41|54786.66|0.07|0.03|A|F|1993-11-21|1993-12-16|1993-11-22|COLLECT COD|RAIL|ic theodoli| +12175|158682|21186|7|14|24369.52|0.00|0.04|R|F|1993-10-30|1994-01-01|1993-11-13|COLLECT COD|SHIP|lets. unusual packages nod closely blit| +12200|966018|3576|1|32|34687.04|0.02|0.02|N|O|1997-04-26|1997-04-04|1997-05-20|DELIVER IN PERSON|AIR|d pinto beans eat | +12200|859309|46861|2|47|59608.22|0.06|0.01|N|O|1997-03-16|1997-05-18|1997-03-27|NONE|RAIL|ns are fluffily. carefully pendin| +12200|391233|28755|3|35|46347.70|0.03|0.07|N|O|1997-05-05|1997-04-22|1997-06-02|COLLECT COD|AIR|c dolphins hagg| +12201|634787|22324|1|22|37878.50|0.08|0.03|A|F|1995-03-29|1995-04-21|1995-04-20|NONE|MAIL|fully. blithely ironic platelets integr| +12201|859507|9508|2|32|46926.72|0.07|0.07|N|F|1995-06-06|1995-05-11|1995-06-24|DELIVER IN PERSON|RAIL|e fluffily final packages: ironic multi| +12201|728507|41022|3|26|39922.22|0.06|0.05|A|F|1995-04-03|1995-03-30|1995-04-26|COLLECT COD|SHIP|ly slyly special| +12201|5862|18363|4|29|51267.94|0.09|0.04|A|F|1995-05-26|1995-05-13|1995-05-31|TAKE BACK RETURN|TRUCK| the carefully ironic grouches | +12201|516153|28664|5|19|22213.47|0.09|0.08|A|F|1995-02-28|1995-05-13|1995-03-23|COLLECT COD|SHIP|ed packages haggl| +12201|978104|3143|6|23|27187.38|0.01|0.01|A|F|1995-04-01|1995-04-03|1995-04-04|COLLECT COD|TRUCK|requests. special frays wake. fluffily iron| +12201|981907|31908|7|2|3977.72|0.01|0.00|R|F|1995-03-13|1995-03-25|1995-03-16|TAKE BACK RETURN|RAIL|efully pending requests cajole along the bl| +12202|897266|34818|1|10|12632.20|0.03|0.06|N|O|1997-07-24|1997-09-06|1997-08-22|TAKE BACK RETURN|REG AIR|slyly furiously expr| +12202|342486|17499|2|40|61138.80|0.04|0.02|N|O|1997-08-29|1997-08-12|1997-09-24|TAKE BACK RETURN|AIR|. carefully regular accoun| +12202|147886|35393|3|3|5801.64|0.07|0.00|N|O|1997-07-29|1997-07-29|1997-08-26|NONE|TRUCK|sual asymptotes. blithely fi| +12202|503461|40992|4|18|26359.92|0.03|0.03|N|O|1997-09-09|1997-08-28|1997-09-28|TAKE BACK RETURN|RAIL|. ironic deposits| +12202|652683|2684|5|26|42526.90|0.10|0.05|N|O|1997-09-18|1997-09-17|1997-09-19|COLLECT COD|AIR| asymptotes boost reg| +12202|632975|20512|6|37|70593.78|0.09|0.03|N|O|1997-07-14|1997-08-29|1997-08-01|COLLECT COD|SHIP|e the carefully pending accoun| +12202|394786|7294|7|17|31973.09|0.02|0.04|N|O|1997-06-25|1997-09-10|1997-07-14|NONE|MAIL|es could have t| +12203|154363|4364|1|2|2834.72|0.03|0.02|A|F|1994-09-23|1994-09-20|1994-10-22|NONE|RAIL|al deposits cajo| +12203|374424|49439|2|5|7492.05|0.06|0.05|R|F|1994-10-15|1994-09-29|1994-10-27|NONE|FOB|kly express warthogs among the regular requ| +12203|937531|25086|3|10|15684.90|0.07|0.02|R|F|1994-08-24|1994-10-05|1994-09-20|DELIVER IN PERSON|REG AIR|ent somas are. quick| +12204|620232|7769|1|13|14978.60|0.04|0.08|N|O|1997-07-18|1997-05-20|1997-08-07|NONE|RAIL|ermanently. carefully re| +12204|238737|26250|2|14|23460.08|0.10|0.08|N|O|1997-04-05|1997-05-18|1997-04-22|DELIVER IN PERSON|AIR|pendencies haggle slyly a| +12204|436900|36901|3|1|1836.88|0.10|0.04|N|O|1997-07-05|1997-04-27|1997-08-01|DELIVER IN PERSON|REG AIR|old instructi| +12204|967888|42927|4|3|5867.52|0.07|0.07|N|O|1997-05-12|1997-05-06|1997-05-22|DELIVER IN PERSON|TRUCK|ly special theodolites? regular asy| +12205|737160|49675|1|44|52673.72|0.04|0.04|A|F|1995-06-03|1995-07-19|1995-06-16|DELIVER IN PERSON|FOB|ounts. blithely regular packages must | +12206|270308|7824|1|14|17896.06|0.10|0.08|N|O|1996-05-03|1996-06-20|1996-05-25|NONE|FOB|uriously among the fluffily | +12206|59860|22362|2|21|38217.06|0.07|0.03|N|O|1996-06-03|1996-05-11|1996-06-04|COLLECT COD|REG AIR|toward the ca| +12207|109673|22176|1|47|79085.49|0.02|0.05|N|O|1996-06-09|1996-05-14|1996-07-08|COLLECT COD|TRUCK| maintain special packages. unusual account| +12207|257606|45122|2|35|54725.65|0.01|0.02|N|O|1996-05-12|1996-04-09|1996-06-04|DELIVER IN PERSON|AIR|uickly slyly ironic packages. blithel| +12207|568089|5623|3|37|42811.22|0.01|0.07|N|O|1996-03-08|1996-04-26|1996-03-29|TAKE BACK RETURN|REG AIR|ic, express depe| +12232|615197|15198|1|20|22243.20|0.07|0.08|R|F|1992-02-16|1992-03-12|1992-03-15|NONE|SHIP|e accounts. ironic theodolites cajole fu| +12232|605373|17886|2|13|16618.42|0.07|0.08|A|F|1992-01-31|1992-03-11|1992-02-23|DELIVER IN PERSON|FOB|. even deposits sleep bli| +12232|501219|38750|3|9|10981.71|0.10|0.02|R|F|1992-05-16|1992-04-18|1992-06-12|DELIVER IN PERSON|RAIL|ts above the slyly e| +12232|975547|586|4|46|74635.00|0.10|0.02|A|F|1992-05-24|1992-02-29|1992-06-15|TAKE BACK RETURN|AIR| pending requests. eve| +12232|15554|28055|5|6|8817.30|0.03|0.05|R|F|1992-04-01|1992-04-15|1992-04-02|COLLECT COD|TRUCK|ng the ironic sentiments. furiously regu| +12233|232083|19596|1|3|3045.21|0.05|0.06|A|F|1993-01-23|1993-02-19|1993-01-29|DELIVER IN PERSON|AIR|s cajole slyly furious| +12233|606731|6732|2|42|68783.40|0.09|0.02|R|F|1993-03-14|1993-01-30|1993-04-03|DELIVER IN PERSON|AIR|arefully regular f| +12234|857722|45274|1|42|70546.56|0.07|0.02|N|O|1996-07-12|1996-07-23|1996-08-10|NONE|AIR|riously regular waters sno| +12234|728116|28117|2|10|11440.80|0.00|0.08|N|O|1996-07-28|1996-07-30|1996-08-08|NONE|REG AIR|lent pinto beans cajole care| +12234|437151|24676|3|7|7616.91|0.07|0.08|N|O|1996-06-21|1996-07-12|1996-07-01|NONE|SHIP|furiously even foxes wake across the care| +12234|192876|5380|4|27|53159.49|0.09|0.08|N|O|1996-09-05|1996-06-07|1996-09-30|TAKE BACK RETURN|MAIL|equests are carefully carefully un| +12234|653159|15673|5|24|26690.88|0.10|0.01|N|O|1996-06-26|1996-06-26|1996-06-30|NONE|FOB|efully ironic accounts alon| +12234|632933|20470|6|31|57842.90|0.07|0.02|N|O|1996-06-30|1996-07-03|1996-07-08|COLLECT COD|TRUCK|lar dolphins are care| +12235|802605|15122|1|26|39196.56|0.10|0.06|A|F|1994-10-13|1994-09-10|1994-10-18|DELIVER IN PERSON|TRUCK|e. carefully regular packages wak| +12235|366274|41289|2|16|21444.16|0.03|0.00|R|F|1994-10-10|1994-10-15|1994-10-17|DELIVER IN PERSON|REG AIR|fts kindle quickly even pinto bea| +12235|952269|2270|3|35|46242.70|0.09|0.07|A|F|1994-11-23|1994-10-13|1994-12-03|COLLECT COD|REG AIR|ly express ideas dazzle s| +12235|782782|20328|4|35|65266.25|0.05|0.01|R|F|1994-09-27|1994-09-20|1994-10-09|COLLECT COD|FOB|re blithely. slyly pending ideas haggle| +12235|211947|24452|5|36|66921.48|0.06|0.00|A|F|1994-09-04|1994-09-02|1994-09-09|NONE|REG AIR| final ideas cajole blithely about the r| +12235|183638|46142|6|23|39597.49|0.06|0.06|R|F|1994-08-05|1994-10-16|1994-08-15|COLLECT COD|AIR|sy packages haggle ironic, express requ| +12236|4605|42106|1|44|66422.40|0.06|0.02|R|F|1992-05-27|1992-06-08|1992-05-28|TAKE BACK RETURN|SHIP|ilent packages. final | +12237|214576|14577|1|19|28320.64|0.04|0.05|A|F|1993-02-03|1993-03-24|1993-03-04|DELIVER IN PERSON|RAIL| unusual, express accounts across the | +12238|846489|34038|1|48|68901.12|0.08|0.07|R|F|1993-12-07|1993-12-28|1993-12-09|TAKE BACK RETURN|REG AIR|sly even deposits nag | +12239|856182|18700|1|33|37558.62|0.01|0.02|N|O|1997-01-24|1996-12-16|1997-02-17|NONE|REG AIR|odolites. final | +12239|849811|24844|2|30|52823.10|0.06|0.04|N|O|1997-01-04|1997-01-13|1997-01-14|NONE|FOB| quickly regular requ| +12264|285727|10738|1|29|49668.59|0.07|0.04|N|O|1998-09-29|1998-08-21|1998-10-02|NONE|TRUCK|egular, final pinto beans cajole accord| +12264|200119|120|2|42|42802.20|0.10|0.02|N|O|1998-06-07|1998-08-28|1998-06-13|DELIVER IN PERSON|AIR|. even requests cajole | +12264|383661|8676|3|28|48850.20|0.06|0.06|N|O|1998-10-03|1998-08-22|1998-11-01|TAKE BACK RETURN|RAIL|foxes play carefully fluffy, fina| +12265|488824|1334|1|16|29004.80|0.01|0.04|A|F|1993-04-02|1993-03-25|1993-04-23|NONE|RAIL|efully regular deposits affix. pendin| +12265|662564|104|2|27|41216.31|0.06|0.08|A|F|1993-03-08|1993-03-21|1993-03-30|COLLECT COD|SHIP|equests. blithely pending deposits| +12265|700727|38270|3|25|43192.25|0.05|0.05|R|F|1993-01-30|1993-02-11|1993-02-07|NONE|MAIL|eposits must pr| +12265|116009|3516|4|32|32800.00|0.08|0.00|A|F|1993-02-04|1993-03-02|1993-02-11|COLLECT COD|REG AIR|nusual packages wake quickly according to | +12265|752836|15352|5|41|77440.80|0.08|0.05|A|F|1993-01-05|1993-03-02|1993-01-21|COLLECT COD|FOB|ecoys. final sauternes boost blithely amon| +12266|713275|818|1|43|55394.32|0.02|0.00|R|F|1993-06-11|1993-04-23|1993-06-28|COLLECT COD|MAIL|riously after the pending instructions. c| +12266|998734|36292|2|42|76972.98|0.09|0.05|R|F|1993-05-05|1993-05-10|1993-05-15|NONE|RAIL|ey players boost furiously | +12266|711173|48716|3|26|30787.64|0.02|0.06|A|F|1993-05-12|1993-04-29|1993-05-23|NONE|REG AIR| use evenly according to the fluffi| +12266|669423|6963|4|22|30632.58|0.05|0.03|R|F|1993-06-27|1993-05-04|1993-07-22|TAKE BACK RETURN|REG AIR|ly special pinto beans | +12266|983280|20838|5|24|32717.76|0.07|0.03|A|F|1993-05-20|1993-05-31|1993-05-28|DELIVER IN PERSON|FOB|sits integrate quickly permanent, final gr| +12267|139943|39944|1|24|47590.56|0.03|0.05|N|O|1996-05-07|1996-05-27|1996-05-15|COLLECT COD|MAIL|lphins. deposits integrate slyly according | +12267|10606|23107|2|39|59147.40|0.10|0.01|N|O|1996-05-16|1996-04-12|1996-05-19|TAKE BACK RETURN|TRUCK|nusual dolphins sleep sometimes | +12267|250194|12700|3|15|17162.70|0.02|0.03|N|O|1996-03-17|1996-05-15|1996-03-24|COLLECT COD|REG AIR| final, unusual asympt| +12268|92461|29965|1|33|47964.18|0.03|0.00|N|O|1995-06-24|1995-04-23|1995-06-26|DELIVER IN PERSON|MAIL|ains are slyly. blithely final acc| +12268|984698|47218|2|25|44566.25|0.02|0.06|R|F|1995-04-08|1995-05-03|1995-05-02|NONE|SHIP|deposits sleep furiously ironic de| +12268|814589|27106|3|1|1503.54|0.01|0.01|N|O|1995-06-19|1995-04-24|1995-07-07|TAKE BACK RETURN|SHIP|er the busily special packages solve b| +12268|786402|11433|4|5|7441.85|0.06|0.07|N|O|1995-06-27|1995-05-09|1995-07-19|NONE|FOB|quests affix slyl| +12268|43247|5748|5|12|14282.88|0.05|0.06|A|F|1995-04-22|1995-05-21|1995-05-16|TAKE BACK RETURN|REG AIR|ntly at the furiously express f| +12269|689195|14222|1|37|43813.92|0.04|0.01|N|O|1996-07-13|1996-08-17|1996-08-10|NONE|REG AIR| pinto beans. b| +12269|283953|46459|2|11|21306.34|0.04|0.06|N|O|1996-07-13|1996-08-30|1996-08-01|NONE|TRUCK|s. special reques| +12269|387428|37429|3|44|66678.04|0.10|0.04|N|O|1996-09-10|1996-08-08|1996-09-26|NONE|TRUCK|lites nag. blithely final instru| +12269|485723|10742|4|3|5126.10|0.09|0.03|N|O|1996-08-25|1996-07-05|1996-09-23|TAKE BACK RETURN|SHIP|yly pending pinto bean| +12269|542795|42796|5|17|31242.09|0.10|0.02|N|O|1996-06-12|1996-07-14|1996-07-11|NONE|MAIL|final hockey players along the slyly caref| +12270|530090|42601|1|5|5600.35|0.01|0.02|N|O|1995-08-25|1995-08-18|1995-09-23|DELIVER IN PERSON|SHIP|ke carefully regular sheaves. furiously r| +12270|219974|32479|2|39|73864.44|0.00|0.08|N|O|1995-07-11|1995-08-30|1995-07-15|NONE|AIR| regular ideas boost. regular deposits hagg| +12270|93457|5959|3|2|2900.90|0.08|0.00|N|O|1995-08-02|1995-08-24|1995-08-17|NONE|REG AIR|lets wake blithely | +12270|715237|40266|4|11|13774.20|0.09|0.00|N|O|1995-08-15|1995-09-09|1995-08-20|TAKE BACK RETURN|AIR|fully unusual asymptotes sleep blithely. | +12270|985832|35833|5|27|51780.33|0.03|0.00|N|O|1995-07-12|1995-08-26|1995-07-25|COLLECT COD|REG AIR|ges. blithely regular dugou| +12270|862132|49684|6|10|10940.90|0.05|0.06|N|O|1995-09-30|1995-08-13|1995-10-30|COLLECT COD|FOB|yly final requests affix along| +12271|830219|30220|1|34|39071.78|0.09|0.06|A|F|1995-01-27|1995-01-13|1995-02-19|DELIVER IN PERSON|FOB|sual instructions. carefully regular f| +12271|486383|11402|2|21|28756.56|0.07|0.06|A|F|1995-02-21|1995-01-14|1995-03-15|TAKE BACK RETURN|MAIL|heodolites use along the fluff| +12271|623901|48926|3|28|51096.36|0.02|0.00|A|F|1994-12-12|1995-01-16|1994-12-21|COLLECT COD|AIR| quickly unusual d| +12271|893308|30860|4|45|58556.70|0.08|0.05|R|F|1995-01-28|1995-01-14|1995-02-27|COLLECT COD|FOB|lites-- carefu| +12271|824334|49367|5|19|23907.51|0.00|0.06|R|F|1995-03-15|1995-02-09|1995-03-17|TAKE BACK RETURN|TRUCK|unusual, quick dolph| +12296|398684|36206|1|18|32088.06|0.10|0.01|A|F|1994-06-13|1994-04-23|1994-07-06|COLLECT COD|TRUCK|its against the accounts haggle fluff| +12296|681908|6935|2|21|39687.27|0.07|0.07|R|F|1994-07-07|1994-06-06|1994-07-28|DELIVER IN PERSON|SHIP|eans boost quickly specia| +12296|814774|14775|3|43|72615.39|0.05|0.05|A|F|1994-05-14|1994-06-04|1994-06-03|TAKE BACK RETURN|AIR|quests among the special ideas integrate qu| +12296|905672|18191|4|29|48651.27|0.00|0.02|A|F|1994-07-14|1994-05-03|1994-07-22|COLLECT COD|SHIP| slyly. blithely f| +12296|612552|89|5|49|71761.48|0.05|0.07|R|F|1994-05-03|1994-05-01|1994-05-15|COLLECT COD|RAIL|lyly ironic packages. | +12297|866570|4122|1|41|62997.73|0.08|0.08|R|F|1993-10-17|1993-09-21|1993-11-09|NONE|AIR|ly pending accounts sleep ironically slyly| +12297|438297|38298|2|2|2470.54|0.08|0.00|R|F|1993-12-08|1993-10-05|1993-12-09|COLLECT COD|SHIP|s alongside of the| +12297|442621|17638|3|49|76616.40|0.04|0.05|R|F|1993-09-02|1993-09-22|1993-09-23|TAKE BACK RETURN|REG AIR|after the regular Tiresias sleep ruthless| +12297|128414|28415|4|43|62023.63|0.02|0.01|R|F|1993-09-13|1993-10-18|1993-09-26|DELIVER IN PERSON|REG AIR|fily caref| +12297|239009|1514|5|13|12323.87|0.03|0.04|A|F|1993-09-13|1993-10-01|1993-10-07|TAKE BACK RETURN|TRUCK|gular packages are furiously a| +12298|599925|49926|1|14|28348.60|0.07|0.01|N|O|1996-03-29|1996-04-09|1996-04-13|DELIVER IN PERSON|AIR|theodolites. permanently regular i| +12298|937355|37356|2|14|19492.34|0.08|0.08|N|O|1996-02-27|1996-03-23|1996-03-08|TAKE BACK RETURN|TRUCK|pendencies wake carefully. q| +12298|119256|6763|3|29|36982.25|0.03|0.04|N|O|1996-04-16|1996-04-05|1996-04-21|TAKE BACK RETURN|SHIP|. regular, final accounts across the rut| +12298|331039|18558|4|43|46010.86|0.01|0.08|N|O|1996-02-14|1996-04-22|1996-02-23|COLLECT COD|RAIL|ss the requests. f| +12299|588568|13591|1|25|41413.50|0.06|0.00|A|F|1994-07-17|1994-10-14|1994-07-23|NONE|AIR| notornis are q| +12299|61726|24228|2|17|28691.24|0.06|0.00|R|F|1994-10-04|1994-10-07|1994-10-05|NONE|TRUCK| foxes. busily pending packages wake care| +12299|416395|3920|3|11|14425.07|0.05|0.02|R|F|1994-07-22|1994-09-25|1994-08-07|TAKE BACK RETURN|TRUCK|onic packages haggle furiously sly| +12299|338774|13787|4|38|68884.88|0.08|0.07|R|F|1994-10-09|1994-09-16|1994-10-13|NONE|AIR|latelets hag| +12299|766134|41165|5|14|16801.40|0.08|0.00|R|F|1994-09-02|1994-09-10|1994-09-23|NONE|MAIL|g requests among the regular| +12300|605350|5351|1|45|56489.40|0.04|0.02|A|F|1993-08-05|1993-07-24|1993-08-07|DELIVER IN PERSON|RAIL|fluffily fi| +12300|116803|4310|2|4|7279.20|0.06|0.03|A|F|1993-05-21|1993-06-19|1993-06-04|TAKE BACK RETURN|SHIP|ingly across the final| +12300|102469|2470|3|48|70630.08|0.01|0.03|R|F|1993-07-30|1993-06-17|1993-08-07|COLLECT COD|SHIP|uriously quic| +12300|193339|43340|4|33|47266.89|0.10|0.00|R|F|1993-06-20|1993-06-25|1993-06-26|COLLECT COD|SHIP|e quickly final foxes sleep evenly | +12300|434683|22208|5|21|33970.86|0.00|0.07|R|F|1993-07-25|1993-07-12|1993-08-05|DELIVER IN PERSON|SHIP| quickly even requests. slyly final instr| +12300|709550|47093|6|34|53023.68|0.02|0.03|A|F|1993-07-01|1993-06-10|1993-07-12|COLLECT COD|TRUCK|special platelets wake slyly furiously u| +12301|869272|44307|1|28|34754.44|0.08|0.04|A|F|1992-09-08|1992-09-07|1992-09-09|COLLECT COD|REG AIR|ans boost. furiously bold theodolites| +12301|847415|34964|2|4|5449.48|0.07|0.04|A|F|1992-11-19|1992-10-14|1992-12-08|TAKE BACK RETURN|RAIL|ending packages. express pinto beans boos| +12301|502460|39991|3|21|30711.24|0.00|0.00|R|F|1992-09-28|1992-10-01|1992-10-22|COLLECT COD|RAIL|ldly across the bold accounts| +12301|833346|20895|4|44|56289.20|0.07|0.08|R|F|1992-10-09|1992-09-06|1992-10-10|COLLECT COD|SHIP|its engage foxes. packages detect blithely | +12301|33988|33989|5|18|34595.64|0.07|0.01|R|F|1992-10-04|1992-10-21|1992-10-05|COLLECT COD|RAIL|s. furiously final realms ought | +12301|221069|33574|6|4|3960.20|0.02|0.08|A|F|1992-08-03|1992-09-07|1992-08-28|TAKE BACK RETURN|TRUCK|oxes. even accounts impress | +12302|615191|27704|1|21|23229.36|0.06|0.04|N|O|1995-11-23|1995-12-16|1995-12-11|DELIVER IN PERSON|AIR| deposits. furiou| +12303|290180|27696|1|13|15212.21|0.02|0.05|N|O|1996-12-03|1996-12-19|1996-12-24|NONE|MAIL|pths. bold platele| +12303|50184|12686|2|3|3402.54|0.06|0.05|N|O|1996-12-16|1996-11-28|1997-01-13|TAKE BACK RETURN|TRUCK|s use along the| +12303|428038|15563|3|45|43470.45|0.10|0.00|N|O|1996-11-19|1996-12-02|1996-12-19|TAKE BACK RETURN|SHIP|y special th| +12303|32199|32200|4|37|41854.03|0.09|0.02|N|O|1996-11-24|1996-11-20|1996-12-02|TAKE BACK RETURN|MAIL|riously silent fo| +12303|158310|8311|5|24|32839.44|0.05|0.02|N|O|1996-11-08|1996-11-12|1996-12-07|NONE|RAIL|tect blithely regular ideas. fluf| +12328|200715|25724|1|23|37161.10|0.06|0.02|N|O|1995-11-09|1995-09-15|1995-11-22|COLLECT COD|MAIL| the busy requests maint| +12328|407690|7691|2|11|17574.37|0.03|0.00|N|O|1995-10-02|1995-10-28|1995-10-11|TAKE BACK RETURN|RAIL|l deposits. final, specia| +12328|45760|45761|3|4|6823.04|0.05|0.08|N|O|1995-11-14|1995-09-02|1995-11-17|NONE|REG AIR|g to the blithely unusual accounts a| +12328|74995|12499|4|45|88649.55|0.09|0.01|N|O|1995-09-28|1995-09-21|1995-09-30|DELIVER IN PERSON|REG AIR|olites nag across t| +12328|426595|26596|5|45|68470.65|0.08|0.08|N|O|1995-10-16|1995-10-30|1995-10-27|COLLECT COD|MAIL| quickly final ideas. silent, ir| +12328|781333|18879|6|12|16971.60|0.04|0.01|N|O|1995-09-16|1995-09-07|1995-10-13|NONE|SHIP|detect slyly. slyly ironic epitap| +12329|501101|1102|1|38|41879.04|0.06|0.08|A|F|1992-04-04|1992-04-10|1992-04-14|DELIVER IN PERSON|REG AIR|ke fluffily among the final p| +12329|987822|25380|2|13|24827.14|0.06|0.06|R|F|1992-05-06|1992-05-28|1992-05-13|DELIVER IN PERSON|RAIL|d, even in| +12329|311197|48716|3|40|48327.20|0.00|0.05|A|F|1992-03-11|1992-05-21|1992-03-16|NONE|TRUCK|egular, unusual instructions us| +12329|283342|8353|4|24|31807.92|0.04|0.08|R|F|1992-06-19|1992-05-05|1992-06-21|COLLECT COD|REG AIR|ven deposits hag| +12329|127511|2516|5|7|10769.57|0.08|0.01|R|F|1992-06-10|1992-04-26|1992-07-04|COLLECT COD|TRUCK|ly express gifts. special ideas affix| +12329|74659|24660|6|45|73514.25|0.03|0.00|R|F|1992-04-04|1992-05-20|1992-04-07|COLLECT COD|MAIL|ing accounts. carefully eve| +12329|790506|28052|7|46|73437.62|0.08|0.03|A|F|1992-06-07|1992-04-03|1992-07-07|TAKE BACK RETURN|RAIL| fluffily. furiously silent | +12330|27042|14543|1|20|19380.80|0.10|0.06|N|O|1998-10-20|1998-10-03|1998-11-17|COLLECT COD|TRUCK|efully express court| +12331|881664|31665|1|27|44431.74|0.04|0.02|N|O|1995-08-22|1995-06-06|1995-09-15|DELIVER IN PERSON|RAIL|slyly regular asymptotes| +12331|113730|13731|2|20|34874.60|0.02|0.07|A|F|1995-05-16|1995-06-19|1995-06-02|NONE|TRUCK|p quickly packages. slyly ironic| +12331|457456|7457|3|28|39576.04|0.01|0.00|N|O|1995-07-07|1995-07-11|1995-07-18|DELIVER IN PERSON|REG AIR| are quietly against the silent dep| +12332|699449|24476|1|42|60833.22|0.09|0.02|N|O|1997-02-15|1996-12-22|1997-02-17|DELIVER IN PERSON|FOB|ing, busy deposi| +12332|622842|47867|2|32|56473.92|0.08|0.06|N|O|1996-11-05|1997-01-03|1996-11-30|COLLECT COD|RAIL|s. regular, ironic deposits are blithely| +12332|102147|2148|3|49|56307.86|0.00|0.03|N|O|1996-11-09|1996-12-21|1996-12-07|DELIVER IN PERSON|TRUCK|s. ideas affix outside the carefully s| +12332|783580|33581|4|24|39925.20|0.00|0.02|N|O|1996-12-13|1996-12-15|1997-01-08|NONE|TRUCK|dencies. requests until th| +12332|621687|9224|5|45|72389.25|0.09|0.06|N|O|1996-12-01|1996-12-21|1996-12-11|COLLECT COD|RAIL|ic deposits sleep quickly blithely| +12333|433894|33895|1|46|84082.02|0.03|0.08|N|O|1997-08-14|1997-10-08|1997-08-30|NONE|REG AIR| final excuses. even requests cajole b| +12333|440723|40724|2|7|11645.90|0.04|0.06|N|O|1997-09-09|1997-11-03|1997-10-07|DELIVER IN PERSON|AIR|leep among the blithely even th| +12333|228751|41256|3|18|30235.32|0.09|0.08|N|O|1997-11-09|1997-10-28|1997-11-10|COLLECT COD|SHIP|tructions according | +12334|591658|41659|1|44|76983.72|0.09|0.01|N|O|1998-05-03|1998-04-12|1998-05-17|COLLECT COD|FOB|s above the packages doubt above | +12334|980091|5130|2|23|26934.15|0.04|0.07|N|O|1998-02-24|1998-03-10|1998-03-21|COLLECT COD|SHIP|gular accounts. idly r| +12334|375396|37904|3|19|27956.22|0.00|0.03|N|O|1998-05-06|1998-04-19|1998-05-21|NONE|RAIL|dolphins against the | +12334|279413|29414|4|43|59873.20|0.05|0.02|N|O|1998-05-20|1998-03-11|1998-05-25|DELIVER IN PERSON|TRUCK|ress, pending ideas. careful, express pa| +12335|957234|44792|1|6|7747.14|0.06|0.03|A|F|1993-09-26|1993-09-29|1993-10-19|NONE|FOB| are blithely. ironic, ironic excuses| +12360|437214|24739|1|11|12663.09|0.05|0.08|N|O|1998-10-20|1998-09-29|1998-10-29|NONE|SHIP|gular attainments are f| +12360|251971|1972|2|36|69226.56|0.00|0.04|N|O|1998-09-24|1998-08-18|1998-09-30|TAKE BACK RETURN|FOB|eans eat slyly among the carefully f| +12360|872802|47837|3|40|70990.40|0.10|0.04|N|O|1998-08-06|1998-09-24|1998-09-01|TAKE BACK RETURN|AIR| unusual, ironic accounts nag regular pa| +12360|167553|5063|4|13|21067.15|0.06|0.00|N|O|1998-10-05|1998-09-22|1998-10-14|NONE|FOB|ual pinto beans cajole slyly | +12360|61522|24024|5|1|1483.52|0.02|0.08|N|O|1998-09-02|1998-08-08|1998-09-20|COLLECT COD|REG AIR|oost. slyly bold accounts wake slyly alongs| +12360|996240|33798|6|29|38749.80|0.08|0.02|N|O|1998-08-30|1998-08-28|1998-09-27|COLLECT COD|AIR|al, regular a| +12361|217914|17915|1|32|58620.80|0.03|0.02|R|F|1994-02-18|1994-03-11|1994-03-09|TAKE BACK RETURN|TRUCK| special frays. carefully e| +12361|471728|21729|2|4|6798.80|0.09|0.00|A|F|1994-02-24|1994-03-06|1994-03-22|TAKE BACK RETURN|RAIL|fluffily eve| +12362|900385|12904|1|8|11082.72|0.00|0.02|R|F|1992-03-26|1992-03-30|1992-04-12|NONE|FOB|s use. carefully regular deposits sleep. | +12362|767678|42709|2|19|33167.16|0.06|0.02|R|F|1992-03-03|1992-04-21|1992-03-08|COLLECT COD|SHIP|he blithely unusual accou| +12362|362510|37525|3|19|29877.50|0.09|0.00|A|F|1992-03-18|1992-04-16|1992-03-30|NONE|AIR|s courts use blithely furio| +12362|689160|14187|4|18|20684.34|0.10|0.07|R|F|1992-04-23|1992-04-13|1992-04-29|DELIVER IN PERSON|FOB|cajole carefully across the slyly ir| +12363|68548|43551|1|37|56111.98|0.00|0.08|R|F|1992-04-03|1992-03-05|1992-04-15|NONE|REG AIR| ironic requests above the| +12363|82902|20406|2|38|71626.20|0.01|0.01|A|F|1992-03-09|1992-04-04|1992-04-03|COLLECT COD|MAIL|ans are slyly carefully iro| +12363|328809|3822|3|33|60647.07|0.10|0.07|A|F|1992-02-11|1992-03-27|1992-03-06|COLLECT COD|FOB| regular requests: furiously silent theodo| +12363|290027|40028|4|22|22374.22|0.05|0.05|R|F|1992-03-18|1992-03-19|1992-03-30|NONE|RAIL|nto beans. pending| +12363|467779|30289|5|16|27948.00|0.07|0.06|A|F|1992-03-13|1992-02-28|1992-04-01|TAKE BACK RETURN|REG AIR| haggle carefully alongside of t| +12364|43480|18481|1|22|31316.56|0.00|0.08|N|O|1998-05-07|1998-03-30|1998-05-19|DELIVER IN PERSON|TRUCK|ly pending courts | +12364|765316|40347|2|22|30388.16|0.07|0.07|N|O|1998-03-12|1998-04-02|1998-03-18|NONE|RAIL|s. careful| +12365|314103|14104|1|16|17873.44|0.04|0.04|R|F|1992-07-18|1992-06-17|1992-08-02|TAKE BACK RETURN|AIR|ly pending d| +12365|116373|28876|2|45|62521.65|0.05|0.06|A|F|1992-06-16|1992-07-03|1992-07-06|COLLECT COD|TRUCK|nd the slyly regular deposits-- special | +12365|865058|40093|3|26|26598.26|0.04|0.06|A|F|1992-07-29|1992-06-19|1992-08-06|NONE|RAIL|sts cajole about| +12366|18593|6094|1|1|1511.59|0.02|0.08|R|F|1992-09-20|1992-08-22|1992-09-26|DELIVER IN PERSON|RAIL|fluffily even ideas doubt| +12366|479705|42215|2|27|45486.36|0.02|0.00|R|F|1992-08-30|1992-10-01|1992-09-17|COLLECT COD|REG AIR| gifts. blithely pending packages are afte| +12366|392130|42131|3|46|56217.52|0.00|0.01|A|F|1992-07-27|1992-10-02|1992-08-12|NONE|AIR|yly ironic deposits ca| +12367|904270|4271|1|16|20387.68|0.03|0.07|R|F|1994-06-02|1994-05-29|1994-06-30|DELIVER IN PERSON|AIR|ns mold regular packages. ca| +12367|53067|40571|2|37|37742.22|0.05|0.00|A|F|1994-07-05|1994-05-18|1994-07-29|NONE|MAIL|posits sublate| +12367|892157|17192|3|5|5745.55|0.07|0.07|A|F|1994-06-13|1994-06-11|1994-06-22|COLLECT COD|FOB|iously busy instructions. carefull| +12367|473026|10554|4|10|9990.00|0.01|0.08|A|F|1994-07-19|1994-05-17|1994-08-16|NONE|SHIP|ong the regular foxes. b| +12367|133945|8950|5|18|35620.92|0.02|0.05|R|F|1994-08-06|1994-07-01|1994-08-07|TAKE BACK RETURN|MAIL| slyly ironic platelet| +12367|206532|6533|6|27|38840.04|0.03|0.05|A|F|1994-05-21|1994-06-09|1994-06-20|DELIVER IN PERSON|TRUCK|ests affix against the multipliers. brave,| +12367|172793|10303|7|12|22389.48|0.05|0.07|R|F|1994-04-17|1994-06-25|1994-05-08|DELIVER IN PERSON|RAIL|lly final asymptotes. ev| +12392|131562|31563|1|11|17529.16|0.05|0.00|R|F|1993-07-07|1993-09-25|1993-07-08|COLLECT COD|FOB|d packages| +12393|943882|43883|1|29|55849.36|0.06|0.01|N|O|1996-04-30|1996-04-23|1996-05-26|COLLECT COD|AIR|carefully slyly | +12393|809062|46611|2|25|24275.50|0.07|0.04|N|O|1996-05-29|1996-04-12|1996-06-15|NONE|AIR|es. even foxes c| +12393|888510|38511|3|32|47951.04|0.03|0.07|N|O|1996-03-19|1996-04-26|1996-03-31|COLLECT COD|SHIP|g the boldly special requests. car| +12393|176354|13864|4|45|64365.75|0.05|0.01|N|O|1996-04-10|1996-04-24|1996-04-30|NONE|MAIL|s. bold braids sleep furious| +12393|969563|19564|5|43|70198.36|0.06|0.08|N|O|1996-06-09|1996-05-12|1996-06-23|TAKE BACK RETURN|RAIL|ffily furious packages across | +12394|834443|21992|1|39|53718.60|0.01|0.04|N|O|1997-12-18|1997-11-01|1997-12-21|NONE|MAIL| accounts. regular, special dolp| +12394|473297|48316|2|43|54621.61|0.01|0.05|N|O|1997-10-23|1997-10-10|1997-11-01|COLLECT COD|SHIP| regular d| +12394|695286|32826|3|10|12812.50|0.01|0.04|N|O|1997-11-21|1997-10-23|1997-12-21|DELIVER IN PERSON|AIR|even theodolites boost fl| +12395|558699|8700|1|14|24607.38|0.08|0.04|N|O|1998-03-05|1998-02-26|1998-03-07|NONE|REG AIR|excuses about the furiously reg| +12395|50735|38239|2|50|84286.50|0.06|0.07|N|O|1998-01-14|1998-02-03|1998-01-15|COLLECT COD|REG AIR|haggle slyly furiously pending dependencies| +12395|698811|11325|3|30|54293.40|0.10|0.03|N|O|1998-03-11|1998-01-16|1998-03-16|DELIVER IN PERSON|AIR|are carefully carefully even theodo| +12395|908371|45926|4|34|46897.22|0.09|0.02|N|O|1998-02-25|1998-02-19|1998-03-08|DELIVER IN PERSON|AIR|indle around the final foxes. final accoun| +12396|618635|43660|1|22|34179.20|0.00|0.03|N|O|1997-02-24|1997-04-27|1997-03-04|COLLECT COD|TRUCK|s detect after the pending asy| +12396|390095|40096|2|27|31997.16|0.05|0.05|N|O|1997-05-21|1997-05-07|1997-05-26|COLLECT COD|TRUCK| the ironic| +12396|319314|44327|3|20|26666.00|0.02|0.01|N|O|1997-06-05|1997-04-25|1997-06-08|DELIVER IN PERSON|TRUCK|round the busy asymptotes-- carefully final| +12397|487630|25158|1|49|79262.89|0.03|0.05|N|O|1995-08-15|1995-09-24|1995-08-30|COLLECT COD|REG AIR|usly bold accounts. even, bo| +12397|588780|13803|2|13|24293.88|0.02|0.03|N|O|1995-07-29|1995-08-03|1995-08-14|TAKE BACK RETURN|TRUCK|fluffily enticing pinto beans. | +12397|611759|11760|3|31|51792.32|0.09|0.00|N|O|1995-10-25|1995-08-12|1995-10-27|COLLECT COD|REG AIR|blithely express dependencies | +12398|400548|13057|1|1|1448.52|0.08|0.02|N|O|1996-12-24|1996-12-03|1997-01-14|DELIVER IN PERSON|SHIP|carefully unusual warhorses mold slyly aro| +12398|996221|8741|2|12|15806.16|0.01|0.08|N|O|1996-12-19|1997-01-13|1997-01-03|NONE|AIR|packages. ca| +12399|444800|32325|1|12|20937.36|0.04|0.05|R|F|1993-02-05|1993-03-12|1993-02-28|COLLECT COD|MAIL|s are carefully. ironic depos| +12399|744035|19064|2|28|30212.00|0.01|0.03|A|F|1993-02-20|1993-01-28|1993-03-17|DELIVER IN PERSON|MAIL|usly requests. final deposits accor| +12399|991610|16649|3|36|61256.52|0.03|0.01|A|F|1993-03-05|1993-02-26|1993-03-26|COLLECT COD|REG AIR|key players r| +12399|980456|30457|4|9|13827.69|0.00|0.03|R|F|1993-03-23|1993-03-12|1993-04-22|NONE|RAIL|ial packages| +12399|522814|47835|5|8|14694.32|0.10|0.03|A|F|1993-03-10|1993-03-16|1993-03-13|TAKE BACK RETURN|AIR|refully blithely even theod| +12424|73948|11452|1|27|51892.38|0.01|0.02|A|F|1993-07-06|1993-04-13|1993-07-25|DELIVER IN PERSON|RAIL|lithely regu| +12424|835719|35720|2|25|41366.75|0.00|0.08|R|F|1993-06-29|1993-05-22|1993-07-26|COLLECT COD|RAIL|ending pinto bea| +12424|924115|49152|3|25|28476.75|0.05|0.04|A|F|1993-06-06|1993-04-23|1993-06-25|NONE|RAIL|ly bold packages. regular, unusual saute| +12425|828065|40582|1|10|9930.20|0.04|0.07|R|F|1995-02-17|1995-03-04|1995-03-02|NONE|REG AIR|lly about the sl| +12425|277560|40066|2|42|64577.10|0.04|0.03|R|F|1995-02-03|1995-04-12|1995-02-21|NONE|RAIL|ts. final, regular theod| +12425|942452|42453|3|46|68742.86|0.06|0.07|A|F|1995-05-15|1995-02-27|1995-05-17|DELIVER IN PERSON|TRUCK|ously bold pinto beans haggl| +12425|780488|18034|4|29|45485.05|0.09|0.00|R|F|1995-03-15|1995-04-16|1995-04-02|DELIVER IN PERSON|MAIL|ogs above the quickly even platelets cajo| +12425|650588|25615|5|24|36925.20|0.01|0.05|R|F|1995-02-22|1995-04-13|1995-03-17|TAKE BACK RETURN|TRUCK|grate. furiously final accounts a| +12425|426913|26914|6|39|71755.71|0.02|0.03|A|F|1995-04-18|1995-03-20|1995-04-25|DELIVER IN PERSON|TRUCK|ironic excuse| +12426|729054|29055|1|8|8664.16|0.10|0.02|N|O|1997-02-02|1997-01-26|1997-03-03|TAKE BACK RETURN|TRUCK| to the final instr| +12426|207481|19986|2|16|22215.52|0.03|0.05|N|O|1997-01-01|1997-01-17|1997-01-31|COLLECT COD|SHIP|arefully slyly| +12426|124429|24430|3|40|58136.80|0.05|0.04|N|O|1997-02-08|1997-01-07|1997-02-28|TAKE BACK RETURN|FOB| cajole carefully pendin| +12426|267515|5031|4|31|45957.50|0.07|0.02|N|O|1996-11-14|1996-12-17|1996-11-26|NONE|AIR|l accounts despite the specia| +12426|115012|27515|5|26|26702.26|0.03|0.00|N|O|1997-01-14|1997-01-20|1997-02-13|DELIVER IN PERSON|FOB|s serve blithely furiously special requests| +12426|993636|43637|6|37|63994.83|0.00|0.02|N|O|1997-02-04|1997-01-21|1997-03-02|NONE|SHIP|after the blithely pending accounts. re| +12427|444061|6570|1|48|48241.92|0.05|0.03|N|O|1996-04-29|1996-06-09|1996-05-17|TAKE BACK RETURN|TRUCK| the quickly regular requests. accounts | +12427|328377|40884|2|34|47782.24|0.03|0.00|N|O|1996-05-01|1996-05-02|1996-05-26|TAKE BACK RETURN|RAIL|ully final| +12427|22953|10454|3|35|65658.25|0.01|0.02|N|O|1996-06-13|1996-06-01|1996-07-04|TAKE BACK RETURN|SHIP|ng requests nag across the carefully | +12427|764590|2136|4|35|57909.60|0.06|0.04|N|O|1996-04-27|1996-04-18|1996-05-22|TAKE BACK RETURN|REG AIR|y regular packages| +12427|457332|7333|5|13|16761.03|0.06|0.07|N|O|1996-03-19|1996-05-21|1996-04-07|TAKE BACK RETURN|REG AIR|al pinto beans. final, pending deposi| +12427|371331|8853|6|30|42069.60|0.03|0.08|N|O|1996-05-28|1996-05-02|1996-06-19|TAKE BACK RETURN|RAIL| foxes after t| +12427|951155|1156|7|39|47038.29|0.06|0.07|N|O|1996-05-23|1996-04-17|1996-06-02|COLLECT COD|REG AIR|usly final accounts. ironic| +12428|59321|21823|1|34|43530.88|0.10|0.01|A|F|1993-11-24|1994-01-11|1993-12-19|DELIVER IN PERSON|TRUCK|l asymptotes; final packages ha| +12428|995256|45257|2|23|31077.83|0.02|0.07|R|F|1993-11-01|1994-01-13|1993-11-24|TAKE BACK RETURN|TRUCK| fluffily. carefu| +12429|46789|46790|1|30|52073.40|0.08|0.07|N|O|1998-05-31|1998-06-11|1998-06-29|DELIVER IN PERSON|AIR|s wake slyly. blithely ir| +12429|381265|6280|2|3|4038.75|0.10|0.05|N|O|1998-07-03|1998-05-13|1998-07-29|TAKE BACK RETURN|MAIL|uickly even foxes. f| +12429|912147|12148|3|30|34773.00|0.09|0.01|N|O|1998-07-25|1998-07-04|1998-07-27|COLLECT COD|FOB|l, even requests. regular deposit| +12429|451380|38908|4|5|6656.80|0.00|0.04|N|O|1998-05-19|1998-07-03|1998-06-11|TAKE BACK RETURN|RAIL|es. furiou| +12430|989006|14045|1|26|28468.96|0.02|0.02|A|F|1993-05-08|1993-05-27|1993-05-18|COLLECT COD|TRUCK|ght to use even ideas. | +12430|217865|5378|2|31|55268.35|0.01|0.02|A|F|1993-05-25|1993-05-11|1993-06-11|COLLECT COD|SHIP| even foxes a| +12430|645921|45922|3|32|59740.48|0.08|0.05|R|F|1993-06-01|1993-05-30|1993-06-17|DELIVER IN PERSON|FOB|ep. furiously| +12430|977517|27518|4|19|30294.93|0.06|0.05|R|F|1993-05-09|1993-04-03|1993-05-13|COLLECT COD|SHIP|o the carefully regular dependencies hag| +12430|113912|13913|5|27|51999.57|0.04|0.05|R|F|1993-06-26|1993-04-01|1993-07-23|NONE|RAIL|quickly final accounts. | +12430|504019|16530|6|2|2045.98|0.05|0.03|A|F|1993-03-16|1993-05-03|1993-03-20|TAKE BACK RETURN|REG AIR|uses; blithely final packages serve furious| +12430|37916|25417|7|6|11123.46|0.02|0.05|R|F|1993-04-08|1993-05-11|1993-04-24|DELIVER IN PERSON|TRUCK|er the carefully bold| +12431|249298|11803|1|47|58622.16|0.00|0.03|N|O|1996-07-01|1996-07-29|1996-07-30|DELIVER IN PERSON|TRUCK|gular foxes! fluffily regular theodoli| +12431|940661|28216|2|46|78274.52|0.04|0.07|N|O|1996-09-04|1996-06-15|1996-09-19|COLLECT COD|REG AIR|y slyly bold ideas. r| +12456|590597|40598|1|6|10125.42|0.10|0.03|R|F|1992-04-11|1992-03-30|1992-04-24|TAKE BACK RETURN|AIR|ly according to the carefully flu| +12456|157734|32741|2|42|75252.66|0.04|0.08|R|F|1992-03-28|1992-04-17|1992-04-26|COLLECT COD|SHIP|r, express dept| +12456|25019|25020|3|50|47200.50|0.09|0.08|A|F|1992-03-03|1992-04-15|1992-03-30|COLLECT COD|MAIL|es above the furiously express sauter| +12456|483209|45719|4|41|48879.38|0.08|0.04|R|F|1992-04-27|1992-04-24|1992-05-26|DELIVER IN PERSON|TRUCK|into beans. final attainments wake furi| +12456|291616|16627|5|6|9645.60|0.04|0.06|A|F|1992-06-05|1992-05-15|1992-06-30|COLLECT COD|TRUCK|efully regular requests sleep qui| +12456|185963|10970|6|35|71713.60|0.10|0.08|R|F|1992-05-24|1992-04-28|1992-06-09|NONE|TRUCK|into the s| +12457|63343|25845|1|6|7838.04|0.03|0.02|N|O|1996-05-19|1996-07-30|1996-06-01|TAKE BACK RETURN|SHIP|old accounts alongside of the fluffil| +12457|593399|43400|2|47|70141.39|0.06|0.00|N|O|1996-08-29|1996-06-05|1996-08-31|TAKE BACK RETURN|TRUCK|y express instructions are slyly unusua| +12457|255799|18305|3|4|7019.12|0.07|0.00|N|O|1996-05-19|1996-06-05|1996-05-29|DELIVER IN PERSON|REG AIR|eath the ironic, bold accounts. pac| +12458|170251|32755|1|26|34352.50|0.07|0.01|R|F|1994-02-08|1994-02-05|1994-02-14|DELIVER IN PERSON|FOB|uctions. carefully regular packages| +12458|400877|38402|2|44|78225.40|0.03|0.06|A|F|1994-04-13|1994-01-27|1994-05-10|NONE|RAIL|es carefully final deposits. blith| +12459|224645|24646|1|22|34531.86|0.09|0.00|N|O|1998-03-02|1998-02-28|1998-03-29|COLLECT COD|REG AIR|dencies. furiously regular ideas sle| +12459|602459|2460|2|27|36758.34|0.06|0.00|N|O|1998-01-16|1998-02-11|1998-01-25|DELIVER IN PERSON|RAIL|n, final foxes integrate boldly according | +12459|517101|42122|3|13|14535.04|0.00|0.03|N|O|1997-12-27|1998-02-16|1998-01-12|TAKE BACK RETURN|RAIL|quests according t| +12459|901001|26038|4|46|46090.16|0.01|0.05|N|O|1998-03-16|1997-12-31|1998-03-30|NONE|FOB|packages kindle| +12459|111102|23605|5|44|48976.40|0.01|0.08|N|O|1998-02-20|1998-01-22|1998-02-21|TAKE BACK RETURN|REG AIR|ly ironic depths. carefully unusual inst| +12459|281773|31774|6|40|70190.40|0.10|0.03|N|O|1998-02-21|1998-03-01|1998-03-16|COLLECT COD|RAIL|ernes alongside of the pending, final| +12460|214978|27483|1|20|37859.20|0.02|0.08|A|F|1993-08-15|1993-06-29|1993-08-18|NONE|AIR|y. regular ideas nag above the doggedly | +12460|128270|3275|2|47|61018.69|0.07|0.03|R|F|1993-07-27|1993-07-11|1993-08-26|DELIVER IN PERSON|SHIP|ccounts. special, unusual asymptotes are| +12461|415415|27924|1|21|27938.19|0.00|0.06|A|F|1994-05-01|1994-05-10|1994-05-11|COLLECT COD|AIR|us deposits? slyly f| +12462|863258|810|1|13|15875.73|0.01|0.07|A|F|1993-03-11|1993-03-15|1993-03-17|TAKE BACK RETURN|SHIP|ole slyly against the quickly r| +12462|770123|20124|2|24|28634.16|0.02|0.00|R|F|1993-02-27|1993-03-10|1993-02-28|NONE|FOB|cajole fluffily pending in| +12462|440876|15893|3|6|10901.10|0.01|0.02|A|F|1993-03-24|1993-02-26|1993-03-29|TAKE BACK RETURN|RAIL| hinder furiously slyly | +12462|787778|25324|4|25|46643.50|0.00|0.04|A|F|1993-02-04|1993-02-18|1993-02-28|COLLECT COD|RAIL|gle carefully. pack| +12462|174301|24302|5|14|19254.20|0.08|0.08|A|F|1993-03-16|1993-03-06|1993-03-28|TAKE BACK RETURN|REG AIR|ides the carefully| +12462|463977|13978|6|15|29114.25|0.04|0.05|R|F|1993-03-18|1993-03-24|1993-03-22|NONE|FOB|special accounts. carefully ironic | +12462|55037|30040|7|31|30752.93|0.05|0.04|A|F|1992-12-29|1993-03-09|1993-01-16|TAKE BACK RETURN|MAIL|ilent foxes according to the furiously | +12463|996298|8818|1|13|18125.25|0.09|0.03|R|F|1993-11-05|1993-09-07|1993-11-24|NONE|SHIP|sits detect fluffily alongsid| +12463|771607|9153|2|16|26857.12|0.00|0.05|A|F|1993-07-26|1993-10-10|1993-08-03|TAKE BACK RETURN|SHIP|ly along the final acc| +12463|393477|18492|3|16|25127.36|0.10|0.03|A|F|1993-08-13|1993-10-12|1993-08-15|DELIVER IN PERSON|SHIP|. slyly ironic deposits nag furiously a| +12463|166194|16195|4|22|27724.18|0.05|0.05|A|F|1993-09-28|1993-08-22|1993-10-03|TAKE BACK RETURN|MAIL|quests after the f| +12488|658170|45710|1|3|3384.42|0.05|0.04|R|F|1992-05-19|1992-04-11|1992-05-29|NONE|TRUCK|nts wake quietly c| +12488|851279|1280|2|15|18453.45|0.05|0.05|A|F|1992-03-19|1992-04-14|1992-03-28|TAKE BACK RETURN|REG AIR| regular excuses | +12488|440921|40922|3|25|46547.50|0.07|0.01|R|F|1992-05-10|1992-03-30|1992-06-01|DELIVER IN PERSON|AIR|ccounts. blithely regular c| +12488|555920|43454|4|36|71132.40|0.08|0.04|A|F|1992-02-09|1992-04-10|1992-02-22|NONE|RAIL|ial deposits about the slyly reg| +12489|35116|22617|1|48|50453.28|0.03|0.03|R|F|1994-09-13|1994-08-31|1994-09-20|DELIVER IN PERSON|REG AIR|s. blithely spec| +12489|177827|27828|2|10|19048.20|0.09|0.03|A|F|1994-07-29|1994-09-08|1994-08-03|TAKE BACK RETURN|AIR| silent, regul| +12489|728470|3499|3|43|64432.92|0.07|0.06|R|F|1994-09-19|1994-07-16|1994-10-02|DELIVER IN PERSON|SHIP|l foxes cajole fluffily. furiously | +12489|380426|17948|4|38|57243.58|0.06|0.00|A|F|1994-09-22|1994-08-28|1994-10-05|NONE|RAIL|sly silent accoun| +12489|805352|42901|5|32|40233.92|0.04|0.01|A|F|1994-06-27|1994-08-31|1994-07-24|COLLECT COD|REG AIR|gular, even deposits use. exp| +12489|534386|34387|6|40|56814.40|0.07|0.08|R|F|1994-07-15|1994-08-09|1994-07-18|NONE|REG AIR|pite the furiously even foxes. f| +12489|415264|27773|7|19|22405.56|0.08|0.02|R|F|1994-09-07|1994-07-18|1994-09-13|NONE|RAIL|quests. furiously | +12490|336256|36257|1|50|64612.00|0.01|0.00|A|F|1993-08-04|1993-06-22|1993-08-17|COLLECT COD|FOB|cross the slyly| +12490|438069|25594|2|4|4028.16|0.09|0.05|A|F|1993-06-07|1993-06-25|1993-07-07|DELIVER IN PERSON|MAIL|t the furiously | +12490|624425|49450|3|14|18891.46|0.10|0.08|R|F|1993-05-13|1993-05-21|1993-06-03|COLLECT COD|REG AIR|lar packages. furiou| +12491|514406|26917|1|25|35509.50|0.06|0.06|N|O|1997-07-26|1997-10-09|1997-08-07|DELIVER IN PERSON|SHIP|en packages. de| +12491|609755|34780|2|2|3329.44|0.10|0.07|N|O|1997-10-03|1997-10-17|1997-10-18|NONE|SHIP|unts cajole ironic platelets. fu| +12491|141891|4394|3|27|52188.03|0.00|0.06|N|O|1997-08-01|1997-10-10|1997-08-08|NONE|TRUCK|packages are carefully. fluffily unusual d| +12491|748598|36141|4|45|74095.20|0.07|0.06|N|O|1997-10-30|1997-08-25|1997-11-24|NONE|MAIL| haggle. enticing accounts haggle| +12492|341918|29437|1|44|86235.60|0.07|0.04|N|O|1996-01-24|1995-11-27|1996-01-30|DELIVER IN PERSON|FOB| ruthless ideas. carefu| +12492|608167|45704|2|22|23652.86|0.09|0.04|N|O|1996-01-14|1995-11-25|1996-02-08|COLLECT COD|AIR| sauternes wa| +12492|462737|265|3|37|62889.27|0.05|0.08|N|O|1996-01-09|1995-11-21|1996-02-04|DELIVER IN PERSON|FOB|he furiously special | +12492|213353|25858|4|37|46854.58|0.10|0.00|N|O|1996-01-03|1995-12-31|1996-01-15|DELIVER IN PERSON|SHIP|as affix f| +12492|814170|26687|5|15|16261.95|0.08|0.04|N|O|1995-11-05|1995-12-23|1995-12-04|DELIVER IN PERSON|REG AIR|s alongside of the slyly final | +12492|753759|3760|6|39|70696.08|0.08|0.00|N|O|1995-10-21|1995-12-17|1995-11-09|TAKE BACK RETURN|REG AIR|telets wake s| +12492|422964|35473|7|8|15095.52|0.04|0.07|N|O|1996-01-20|1995-12-26|1996-02-12|TAKE BACK RETURN|SHIP|s the expr| +12493|750828|829|1|44|82666.76|0.08|0.00|R|F|1993-03-14|1993-04-24|1993-03-26|DELIVER IN PERSON|SHIP|e fluffily specia| +12493|156846|31853|2|35|66599.40|0.01|0.07|A|F|1993-06-29|1993-05-04|1993-07-24|TAKE BACK RETURN|TRUCK|ect slyly | +12493|106699|44206|3|3|5117.07|0.01|0.05|R|F|1993-05-10|1993-05-05|1993-05-30|DELIVER IN PERSON|AIR|ly final theodolit| +12493|281425|18941|4|5|7032.05|0.04|0.08|R|F|1993-03-22|1993-05-17|1993-04-07|TAKE BACK RETURN|TRUCK|sits use closely alongside of the quickly i| +12494|601772|26797|1|12|20084.88|0.09|0.02|N|O|1997-10-26|1997-10-02|1997-11-17|DELIVER IN PERSON|AIR|eep according to the blithely unusu| +12494|980711|30712|2|47|84208.49|0.06|0.01|N|O|1997-09-01|1997-08-22|1997-09-18|TAKE BACK RETURN|RAIL|thely. even | +12495|435140|22665|1|4|4300.48|0.01|0.08|R|F|1994-12-02|1994-12-22|1994-12-27|COLLECT COD|MAIL| silent, final ideas. blithely final packa| +12495|392102|4610|2|42|50151.78|0.04|0.05|R|F|1994-11-07|1994-12-30|1994-12-05|NONE|REG AIR|es. furiously | +12495|44517|44518|3|2|2923.02|0.02|0.03|R|F|1994-12-07|1994-12-03|1994-12-09|NONE|MAIL|ously after the care| +12495|188066|570|4|5|5770.30|0.08|0.08|A|F|1995-02-02|1994-12-16|1995-02-23|COLLECT COD|TRUCK|ts use according to the s| +12495|824515|12064|5|16|23031.52|0.07|0.02|A|F|1995-01-08|1994-12-18|1995-01-16|COLLECT COD|REG AIR|the deposits boo| +12495|609117|21630|6|23|23599.84|0.01|0.08|A|F|1994-11-27|1994-11-26|1994-12-19|TAKE BACK RETURN|RAIL| the unusual deposits. slyly pen| +12520|158335|20839|1|39|54339.87|0.00|0.03|A|F|1995-05-03|1995-05-12|1995-05-22|NONE|FOB|ously final ideas detec| +12520|119900|44905|2|45|86395.50|0.06|0.01|N|F|1995-05-24|1995-03-27|1995-06-23|TAKE BACK RETURN|RAIL|al instructions maintain | +12520|156935|19439|3|21|41830.53|0.03|0.07|R|F|1995-03-10|1995-05-18|1995-04-06|COLLECT COD|SHIP|ccording to the furiously ir| +12521|326847|39354|1|28|52467.24|0.08|0.02|N|O|1998-01-19|1998-01-04|1998-02-01|TAKE BACK RETURN|MAIL|s cajole blithely express | +12521|305175|42694|2|11|12981.76|0.06|0.05|N|O|1998-02-17|1998-01-03|1998-03-14|DELIVER IN PERSON|MAIL|slyly. blith| +12522|410501|48026|1|43|60693.64|0.08|0.00|A|F|1993-07-28|1993-09-17|1993-08-20|NONE|FOB|s; special pint| +12522|285505|23021|2|34|50676.66|0.00|0.07|A|F|1993-07-12|1993-09-19|1993-08-05|NONE|MAIL|theodolites mo| +12523|974043|24044|1|40|44680.00|0.09|0.07|N|O|1996-11-09|1996-09-29|1996-11-12|TAKE BACK RETURN|RAIL|ccounts. boldly fina| +12523|734002|21545|2|41|42474.77|0.04|0.05|N|O|1996-10-06|1996-10-29|1996-10-14|DELIVER IN PERSON|TRUCK|g ideas. silent theodolites a| +12524|771386|8932|1|29|42263.15|0.06|0.07|A|F|1993-03-19|1993-05-07|1993-04-02|COLLECT COD|REG AIR|posits affix furiously around the quickly| +12524|668650|43677|2|12|19423.44|0.08|0.01|R|F|1993-04-22|1993-03-27|1993-04-23|NONE|TRUCK|yly ironic ac| +12524|992070|4590|3|39|45319.17|0.08|0.04|A|F|1993-02-27|1993-05-13|1993-03-17|NONE|TRUCK|otes. blith| +12524|713903|13904|4|32|61339.84|0.07|0.03|A|F|1993-04-23|1993-05-16|1993-05-16|TAKE BACK RETURN|AIR|quests sleep? packages wake furio| +12524|562798|37821|5|45|83734.65|0.01|0.02|A|F|1993-05-13|1993-04-10|1993-05-30|TAKE BACK RETURN|FOB|ow. blithely | +12525|765950|28466|1|47|94748.24|0.00|0.05|A|F|1993-09-14|1993-09-14|1993-09-27|TAKE BACK RETURN|RAIL|ven ideas nag after t| +12526|169547|19548|1|36|58195.44|0.05|0.03|R|F|1992-10-02|1992-10-28|1992-10-31|DELIVER IN PERSON|RAIL|e fluffily above the bold deposits; flu| +12527|85788|48290|1|11|19511.58|0.06|0.01|N|O|1997-09-07|1997-09-22|1997-09-28|NONE|TRUCK|blithely ironic forges detect | +12527|827113|27114|2|31|32242.17|0.08|0.04|N|O|1997-11-20|1997-09-18|1997-12-13|NONE|MAIL|sleep about the final deposits| +12527|287912|37913|3|19|36098.10|0.10|0.06|N|O|1997-10-30|1997-10-17|1997-11-29|COLLECT COD|TRUCK|he slyly re| +12552|996271|33829|1|19|25977.37|0.05|0.02|A|F|1994-09-29|1994-09-15|1994-10-11|NONE|AIR|ts affix furiously above the f| +12552|319987|32494|2|25|50174.25|0.08|0.04|R|F|1994-09-01|1994-08-07|1994-09-08|DELIVER IN PERSON|MAIL|e fluffily | +12552|5413|30414|3|37|48781.17|0.00|0.00|A|F|1994-10-05|1994-08-28|1994-10-21|DELIVER IN PERSON|MAIL| furiously ruthless dependencies cajole| +12552|961077|11078|4|43|48935.29|0.02|0.07|R|F|1994-07-03|1994-08-22|1994-07-19|COLLECT COD|TRUCK|deposits integrate fluffily about| +12552|815849|40882|5|49|86475.20|0.09|0.03|R|F|1994-08-06|1994-09-23|1994-08-10|COLLECT COD|MAIL|lar deposits. even fox| +12552|962600|37639|6|17|28263.52|0.06|0.04|A|F|1994-10-06|1994-07-31|1994-11-02|TAKE BACK RETURN|MAIL|ular asymptotes nag carefully regul| +12552|413516|26025|7|11|15724.39|0.01|0.03|A|F|1994-07-25|1994-09-13|1994-08-12|COLLECT COD|RAIL|ic dependencies. final, | +12553|948591|11110|1|17|27872.35|0.02|0.02|R|F|1994-10-25|1994-10-17|1994-10-31|COLLECT COD|RAIL| sleep carefully special foxes. packages w| +12554|51478|38982|1|6|8576.82|0.00|0.02|N|O|1995-12-04|1995-10-30|1995-12-09|NONE|RAIL|riously unusual dolphins. fi| +12554|174177|11687|2|23|28776.91|0.04|0.00|N|O|1995-11-18|1995-11-26|1995-11-30|DELIVER IN PERSON|FOB|s boost quickly along the| +12554|378813|16335|3|14|26485.20|0.09|0.02|N|O|1995-10-26|1995-12-16|1995-10-27|DELIVER IN PERSON|RAIL|ly regular foxes alongside of the f| +12554|705217|5218|4|7|8555.26|0.10|0.06|N|O|1995-10-09|1995-11-27|1995-10-24|TAKE BACK RETURN|FOB|the carefully ironic accounts. slyly ev| +12554|581516|31517|5|23|36742.27|0.08|0.01|N|O|1996-01-07|1995-10-29|1996-01-20|DELIVER IN PERSON|REG AIR|bold deposits sleep. frets according to| +12554|534259|46770|6|44|56902.12|0.10|0.08|N|O|1995-10-05|1995-12-20|1995-11-04|DELIVER IN PERSON|REG AIR|ins-- ruthless theodolites m| +12554|283948|46454|7|50|96596.50|0.08|0.03|N|O|1995-10-14|1995-11-09|1995-10-22|DELIVER IN PERSON|RAIL|en requests. blit| +12555|308099|45618|1|3|3321.24|0.10|0.00|N|O|1996-07-18|1996-07-17|1996-07-23|NONE|REG AIR|play blithely fluffily ironic patterns. car| +12555|218703|6216|2|9|14595.21|0.09|0.02|N|O|1996-05-06|1996-07-27|1996-05-19|NONE|RAIL| special fo| +12555|727249|27250|3|50|63810.50|0.08|0.03|N|O|1996-07-31|1996-05-31|1996-08-08|COLLECT COD|MAIL|y alongside of the closely fin| +12556|120686|20687|1|40|68267.20|0.04|0.08|N|O|1995-11-23|1995-11-30|1995-11-26|DELIVER IN PERSON|FOB|nusual ideas haggle fluffily aga| +12556|366868|4390|2|47|90937.95|0.07|0.00|N|O|1996-02-07|1995-12-28|1996-03-08|TAKE BACK RETURN|FOB|oost carefully pending theo| +12556|938638|38639|3|17|28502.03|0.00|0.06|N|O|1995-11-18|1996-01-14|1995-12-15|COLLECT COD|REG AIR|ut the furiously regular accounts. somas wa| +12557|736768|49283|1|2|3609.46|0.07|0.02|R|F|1992-08-24|1992-07-01|1992-08-30|TAKE BACK RETURN|TRUCK|lly thin accounts wake blithely idly | +12557|852149|2150|2|8|8808.80|0.05|0.07|A|F|1992-05-31|1992-07-12|1992-06-05|NONE|FOB|ending dolphin| +12557|54177|16679|3|14|15836.38|0.07|0.01|R|F|1992-07-03|1992-06-08|1992-07-05|DELIVER IN PERSON|FOB|gainst the | +12557|546261|46262|4|21|27452.04|0.07|0.01|A|F|1992-08-15|1992-07-26|1992-09-02|NONE|FOB|lar pinto beans-- slyly special theodolite| +12557|1838|14339|5|27|46975.41|0.08|0.07|R|F|1992-08-02|1992-07-04|1992-08-19|TAKE BACK RETURN|FOB| closely final packages haggle| +12557|885765|48283|6|50|87536.00|0.04|0.05|R|F|1992-07-26|1992-07-15|1992-08-20|DELIVER IN PERSON|FOB|r, final accounts. final theodolites hag| +12557|44071|19072|7|41|41617.87|0.02|0.04|R|F|1992-07-02|1992-06-18|1992-07-25|COLLECT COD|RAIL|s. final asymptotes cajole; ironic theodo| +12558|686562|36563|1|48|74329.44|0.08|0.00|R|F|1992-06-28|1992-06-30|1992-07-09|NONE|TRUCK| slyly regular packages. furio| +12558|38420|38421|2|7|9508.94|0.07|0.07|R|F|1992-06-03|1992-07-17|1992-06-25|COLLECT COD|AIR| enticingly according to | +12558|708241|20756|3|2|2498.42|0.02|0.05|R|F|1992-06-08|1992-07-20|1992-06-26|DELIVER IN PERSON|SHIP|tions nag. express deposits cajole bli| +12558|402068|27085|4|40|38801.60|0.01|0.00|A|F|1992-08-03|1992-08-12|1992-08-20|COLLECT COD|SHIP| express dinos sleep s| +12558|556180|31203|5|9|11125.44|0.06|0.05|A|F|1992-08-15|1992-08-08|1992-09-07|DELIVER IN PERSON|FOB|es wake blithely. blithely s| +12558|710438|10439|6|24|34761.60|0.00|0.05|A|F|1992-07-14|1992-07-02|1992-07-24|DELIVER IN PERSON|FOB|despite the qui| +12559|873140|48175|1|26|28940.60|0.10|0.06|R|F|1994-11-07|1994-09-22|1994-11-22|NONE|RAIL| the blithely final packages. exp| +12559|860548|48100|2|7|10559.50|0.09|0.03|A|F|1994-10-09|1994-10-15|1994-10-25|DELIVER IN PERSON|RAIL|he unusual, final cou| +12559|227071|14584|3|42|41918.52|0.07|0.00|A|F|1994-11-13|1994-10-15|1994-12-08|TAKE BACK RETURN|AIR|? foxes boost. even, regular instructions c| +12559|374869|37377|4|21|40820.85|0.01|0.06|R|F|1994-11-13|1994-10-26|1994-12-11|COLLECT COD|REG AIR|ut the ruthless, unusual ideas. slyly s| +12559|408967|8968|5|28|52526.32|0.10|0.05|R|F|1994-09-21|1994-11-02|1994-10-07|TAKE BACK RETURN|RAIL|ake. even ideas sleep along the slow acc| +12559|499614|37142|6|1|1613.59|0.08|0.01|R|F|1994-11-13|1994-09-15|1994-12-03|COLLECT COD|AIR|. slyly unusual package| +12559|11373|11374|7|1|1284.37|0.08|0.06|A|F|1994-11-10|1994-10-27|1994-12-10|DELIVER IN PERSON|MAIL| express courts. bold, regular platelets | +12584|137140|49643|1|4|4708.56|0.09|0.06|N|O|1996-08-05|1996-06-27|1996-08-27|DELIVER IN PERSON|SHIP|y quiet deposits. even, special requests ab| +12584|906515|31552|2|9|13693.23|0.00|0.04|N|O|1996-05-24|1996-07-30|1996-06-11|NONE|RAIL|sts eat blithely. slyly ironic theodolite| +12584|788501|13532|3|45|71526.15|0.06|0.01|N|O|1996-08-17|1996-06-15|1996-09-13|NONE|FOB|s cajole care| +12584|334561|9574|4|25|39888.75|0.01|0.05|N|O|1996-06-04|1996-06-11|1996-06-07|NONE|REG AIR|ss attainments. furiously fin| +12584|959994|35033|5|38|78050.10|0.04|0.08|N|O|1996-07-14|1996-06-25|1996-08-07|DELIVER IN PERSON|SHIP|according to the final,| +12585|530573|5594|1|2|3207.10|0.05|0.08|R|F|1993-08-12|1993-09-07|1993-09-07|COLLECT COD|AIR|riously sly| +12585|324031|36538|2|36|37980.72|0.04|0.04|A|F|1993-08-22|1993-07-18|1993-09-10|TAKE BACK RETURN|REG AIR|lithely pending pinto b| +12585|973861|23862|3|6|11608.92|0.05|0.01|R|F|1993-08-19|1993-07-13|1993-08-21|NONE|RAIL|lar pinto beans use-- pending package| +12585|669869|44896|4|31|57003.73|0.00|0.03|R|F|1993-09-23|1993-07-17|1993-10-12|TAKE BACK RETURN|SHIP|among the carefully express pinto bea| +12586|636462|36463|1|27|37757.61|0.09|0.05|A|F|1995-01-30|1995-04-01|1995-02-04|TAKE BACK RETURN|MAIL|behind the quickly final foxes. ironi| +12586|2270|2271|2|20|23445.40|0.03|0.08|A|F|1995-05-09|1995-04-11|1995-05-21|COLLECT COD|AIR|nt ideas ab| +12587|162266|37273|1|34|45160.84|0.07|0.02|N|O|1997-05-31|1997-05-24|1997-06-10|COLLECT COD|MAIL| nag slyly slyly ironic asymptotes. slyl| +12587|189225|1729|2|10|13142.20|0.01|0.07|N|O|1997-07-11|1997-06-24|1997-07-23|DELIVER IN PERSON|FOB|ily final accounts are. blithely regula| +12588|660888|48428|1|11|20337.35|0.08|0.03|R|F|1992-06-03|1992-05-31|1992-07-01|DELIVER IN PERSON|AIR| are about the ironic accounts. boldly e| +12588|533264|33265|2|43|55781.32|0.03|0.01|R|F|1992-05-26|1992-06-25|1992-06-11|DELIVER IN PERSON|TRUCK|eep furiously unusual asymptotes. | +12588|565743|3277|3|24|43409.28|0.02|0.00|A|F|1992-07-26|1992-07-03|1992-08-07|TAKE BACK RETURN|AIR|usual accounts a| +12588|440411|2920|4|12|16216.68|0.04|0.07|A|F|1992-06-28|1992-06-29|1992-07-15|NONE|FOB|onic accounts: special accounts grow| +12588|976960|26961|5|42|85550.64|0.10|0.03|R|F|1992-06-05|1992-06-28|1992-06-10|NONE|REG AIR|! quickly pending requests cajole careful| +12589|260926|23432|1|45|84910.95|0.00|0.08|N|O|1998-07-22|1998-05-08|1998-07-25|DELIVER IN PERSON|TRUCK|ithely bol| +12589|367387|42402|2|24|34904.88|0.01|0.05|N|O|1998-06-19|1998-06-20|1998-06-26|DELIVER IN PERSON|RAIL| carefully| +12589|657182|7183|3|10|11391.50|0.06|0.03|N|O|1998-05-23|1998-06-27|1998-06-17|DELIVER IN PERSON|FOB|ully ruthless foxes slee| +12589|254915|4916|4|40|74796.00|0.01|0.08|N|O|1998-07-07|1998-05-25|1998-07-12|TAKE BACK RETURN|MAIL|s. slyly final packages | +12589|353519|3520|5|36|56610.00|0.05|0.01|N|O|1998-05-04|1998-06-28|1998-05-22|NONE|MAIL|egular request| +12589|577833|27834|6|46|87897.26|0.02|0.08|N|O|1998-05-26|1998-06-15|1998-05-31|NONE|TRUCK|e blithely. ironic inst| +12589|634878|34879|7|14|25379.76|0.02|0.08|N|O|1998-04-05|1998-06-17|1998-05-04|DELIVER IN PERSON|FOB|s cajole furiously. quickly even packages| +12590|394501|44502|1|15|23932.35|0.10|0.01|N|O|1996-03-08|1996-03-21|1996-03-21|NONE|REG AIR|uriously special dep| +12591|758270|20786|1|32|42503.68|0.00|0.01|N|O|1997-11-26|1997-09-13|1997-12-06|TAKE BACK RETURN|MAIL|quickly asymptotes. pearls w| +12591|231259|31260|2|8|9521.92|0.07|0.03|N|O|1997-11-10|1997-08-30|1997-11-25|TAKE BACK RETURN|REG AIR|ldly ironic dependencies breach bold| +12591|755834|5835|3|26|49134.80|0.05|0.06|N|O|1997-11-10|1997-09-16|1997-11-25|NONE|RAIL|gle carefully closely| +12591|298643|36159|4|25|41040.75|0.07|0.02|N|O|1997-10-25|1997-09-15|1997-11-14|TAKE BACK RETURN|TRUCK|es. instructions boost after t| +12616|858367|20885|1|5|6626.60|0.01|0.01|R|F|1992-12-30|1993-01-01|1993-01-08|TAKE BACK RETURN|SHIP|foxes. pinto beans wak| +12616|566150|28662|2|29|35267.77|0.00|0.07|A|F|1993-01-29|1992-11-06|1993-02-03|DELIVER IN PERSON|RAIL|cross the fo| +12616|281550|6561|3|12|18378.48|0.09|0.04|R|F|1992-12-16|1992-12-02|1992-12-21|TAKE BACK RETURN|AIR|egular idea| +12616|999105|36663|4|17|20469.02|0.06|0.08|A|F|1992-12-18|1992-12-03|1993-01-07|DELIVER IN PERSON|FOB|ar, regular theodolites; slyl| +12617|657585|7586|1|12|18510.60|0.06|0.08|N|O|1996-01-29|1996-01-09|1996-02-15|DELIVER IN PERSON|SHIP|hely special accounts.| +12618|808985|8986|1|24|45454.56|0.09|0.08|N|O|1998-01-21|1998-01-17|1998-02-16|COLLECT COD|REG AIR|e slyly regular r| +12618|599131|11643|2|27|33212.97|0.04|0.01|N|O|1997-12-19|1998-01-17|1997-12-30|TAKE BACK RETURN|MAIL|tructions haggle. carefully unusual| +12618|588833|13856|3|17|32670.77|0.02|0.03|N|O|1998-01-30|1998-01-29|1998-02-06|NONE|AIR|y after the regular asymp| +12618|503942|16453|4|5|9729.60|0.09|0.02|N|O|1997-12-06|1997-12-11|1997-12-24|COLLECT COD|TRUCK|he pending packages. ironic, reg| +12618|738794|26337|5|39|71477.64|0.07|0.07|N|O|1997-12-03|1997-12-20|1997-12-22|NONE|FOB| even theodolit| +12618|897231|34783|6|43|52812.17|0.02|0.05|N|O|1997-12-10|1997-12-27|1998-01-07|NONE|TRUCK|y after the carefully final theodo| +12618|746414|46415|7|3|4381.14|0.00|0.01|N|O|1997-12-28|1997-12-08|1998-01-01|NONE|MAIL|r requests sleep regular pi| +12619|966865|29385|1|8|15454.56|0.00|0.01|N|O|1996-05-22|1996-05-08|1996-06-08|NONE|FOB|. regular, thin request| +12619|90912|15915|2|41|78019.31|0.01|0.01|N|O|1996-03-20|1996-05-15|1996-04-18|DELIVER IN PERSON|REG AIR|ly quick pearl| +12619|941335|41336|3|48|66061.92|0.07|0.00|N|O|1996-06-21|1996-03-31|1996-07-19|DELIVER IN PERSON|RAIL|was furiously. slyly| +12619|14639|39640|4|16|24858.08|0.02|0.00|N|O|1996-05-26|1996-05-11|1996-06-03|COLLECT COD|FOB|carefully pending deposits. slyly regular | +12620|364670|27178|1|2|3469.32|0.04|0.08|N|O|1996-06-18|1996-08-31|1996-06-28|NONE|FOB|lithely slyly | +12620|1361|26362|2|28|35346.08|0.02|0.00|N|O|1996-06-16|1996-07-29|1996-07-15|COLLECT COD|AIR|bold accounts eat furiously. slyly silent | +12620|860919|48471|3|12|22558.44|0.08|0.05|N|O|1996-10-08|1996-09-09|1996-10-30|TAKE BACK RETURN|TRUCK|y carefully daring foxes. qu| +12620|457620|7621|4|20|31552.00|0.04|0.06|N|O|1996-07-02|1996-08-24|1996-07-18|NONE|MAIL|fluffily unusual deposits above | +12620|213396|25901|5|47|61540.86|0.01|0.08|N|O|1996-08-04|1996-08-24|1996-08-13|NONE|REG AIR|y around the final excuses: ironic deposi| +12620|539150|26681|6|11|13080.43|0.08|0.02|N|O|1996-06-15|1996-07-29|1996-07-03|DELIVER IN PERSON|SHIP|onic excuses. bold theodolites| +12621|410775|48300|1|25|42143.75|0.05|0.08|R|F|1993-03-15|1993-03-04|1993-03-27|DELIVER IN PERSON|MAIL| according to the carefully bold packa| +12621|888498|38499|2|26|38647.70|0.06|0.02|A|F|1993-04-04|1993-03-08|1993-04-30|TAKE BACK RETURN|TRUCK|ess deposits. theodol| +12621|984349|46869|3|30|42999.00|0.03|0.02|R|F|1993-01-24|1993-03-06|1993-02-05|COLLECT COD|FOB|refully according to the slyly ironic inst| +12621|953006|15526|4|14|14825.44|0.10|0.07|A|F|1993-01-03|1993-01-27|1993-01-12|TAKE BACK RETURN|MAIL|d packages x-ray finally after the regular | +12621|165358|2868|5|31|44123.85|0.03|0.04|A|F|1993-01-31|1993-03-09|1993-02-20|TAKE BACK RETURN|SHIP|ts according to the slyly bold depos| +12621|170373|32877|6|23|33197.51|0.01|0.08|A|F|1993-03-25|1993-03-12|1993-04-04|DELIVER IN PERSON|TRUCK|nstructions are. de| +12622|747579|22608|1|11|17891.94|0.05|0.00|N|O|1996-12-11|1997-01-28|1996-12-16|COLLECT COD|RAIL|lly. special courts poach. slyly | +12622|549717|12228|2|28|49467.32|0.05|0.03|N|O|1996-12-14|1996-12-14|1997-01-11|NONE|RAIL|gle enticin| +12622|77505|40007|3|20|29650.00|0.01|0.05|N|O|1997-01-10|1997-02-02|1997-02-08|DELIVER IN PERSON|MAIL|es boost fluffily even, even asym| +12622|621135|8672|4|48|50692.80|0.00|0.05|N|O|1996-12-25|1997-02-12|1997-01-07|TAKE BACK RETURN|RAIL|nts. daring, ironic request| +12622|404683|29700|5|1|1587.66|0.09|0.06|N|O|1997-02-21|1997-01-25|1997-02-27|DELIVER IN PERSON|TRUCK|le. express accounts around the ironic pac| +12623|977899|40419|1|6|11861.10|0.07|0.07|N|O|1998-08-01|1998-05-28|1998-08-28|COLLECT COD|FOB|ep carefully among the accounts. blithe| +12623|541223|3734|2|5|6321.00|0.02|0.01|N|O|1998-05-05|1998-07-08|1998-05-26|DELIVER IN PERSON|TRUCK|ts. special foxes do aff| +12623|334078|21597|3|33|36697.98|0.06|0.02|N|O|1998-08-11|1998-07-23|1998-08-23|TAKE BACK RETURN|FOB| bold, even ide| +12623|841505|29054|4|13|18803.98|0.05|0.00|N|O|1998-06-07|1998-07-09|1998-06-12|TAKE BACK RETURN|REG AIR|ly. furiously sil| +12623|166338|3848|5|49|68812.17|0.03|0.04|N|O|1998-05-12|1998-07-24|1998-05-22|TAKE BACK RETURN|TRUCK| deposits sleep quickly about the | +12623|641179|16204|6|3|3360.42|0.03|0.01|N|O|1998-05-10|1998-06-11|1998-06-09|DELIVER IN PERSON|RAIL|ag after t| +12623|282475|19991|7|27|39351.42|0.05|0.02|N|O|1998-08-21|1998-06-27|1998-08-30|COLLECT COD|AIR| even platele| +12648|549482|11993|1|46|70447.16|0.06|0.02|A|F|1994-05-16|1994-04-05|1994-05-23|COLLECT COD|TRUCK| promise furiously. quickly | +12648|135903|48406|2|38|73678.20|0.02|0.02|R|F|1994-04-15|1994-03-19|1994-04-22|TAKE BACK RETURN|MAIL|uctions wake with the furiously even th| +12648|113354|861|3|6|8204.10|0.04|0.02|R|F|1994-03-14|1994-03-02|1994-03-27|DELIVER IN PERSON|REG AIR|fily final| +12649|414115|1640|1|34|34989.06|0.02|0.01|R|F|1993-11-14|1993-10-25|1993-11-22|NONE|SHIP|al packages. ironic packages about the fur| +12649|17857|5358|2|27|47920.95|0.07|0.00|A|F|1993-10-14|1993-10-22|1993-11-12|NONE|AIR|nic requests. express deco| +12649|113337|38342|3|10|13503.30|0.02|0.08|R|F|1993-11-08|1993-10-14|1993-11-14|COLLECT COD|MAIL|es. bold accounts print quickly as| +12649|848463|48464|4|32|45165.44|0.04|0.08|R|F|1993-11-28|1993-11-07|1993-12-05|TAKE BACK RETURN|FOB|al pinto beans. slowly pe| +12649|106390|43897|5|24|33513.36|0.03|0.08|R|F|1993-09-24|1993-11-12|1993-10-22|TAKE BACK RETURN|SHIP|ular deposits after the requests hag| +12650|549306|24327|1|37|50145.36|0.06|0.00|A|F|1993-02-14|1993-03-03|1993-02-20|TAKE BACK RETURN|TRUCK| requests. slyly final ideas cajole | +12650|176635|26636|2|16|27386.08|0.03|0.06|A|F|1993-02-06|1993-04-18|1993-03-07|DELIVER IN PERSON|FOB|lithely regular re| +12650|702591|15106|3|42|66929.52|0.04|0.07|R|F|1993-03-05|1993-04-02|1993-03-23|TAKE BACK RETURN|TRUCK|. quickly slow requests a| +12650|434259|34260|4|41|48922.43|0.00|0.07|R|F|1993-03-05|1993-04-18|1993-03-11|DELIVER IN PERSON|RAIL|ubt blithely furiously re| +12651|139055|26562|1|46|50326.30|0.08|0.07|R|F|1995-04-19|1995-03-28|1995-05-09|TAKE BACK RETURN|SHIP|t requests. slyly bold packages wake care| +12651|85438|35439|2|7|9964.01|0.05|0.08|A|F|1995-02-12|1995-02-17|1995-02-15|DELIVER IN PERSON|AIR|nd the ironic as| +12651|952844|27883|3|43|81562.40|0.06|0.03|R|F|1995-02-06|1995-03-14|1995-02-10|TAKE BACK RETURN|FOB|s boost at the fluffily bold| +12651|444114|44115|4|24|25394.16|0.08|0.08|A|F|1995-05-01|1995-03-25|1995-05-03|COLLECT COD|AIR| pending cou| +12651|218360|5873|5|47|60082.45|0.02|0.07|R|F|1995-01-14|1995-04-11|1995-01-20|NONE|REG AIR|tes sleep silently even, expres| +12651|974070|24071|6|15|17160.45|0.07|0.07|A|F|1995-04-24|1995-03-08|1995-05-03|COLLECT COD|RAIL|accounts. pending,| +12651|179409|16919|7|15|22326.00|0.09|0.01|R|F|1995-03-30|1995-02-19|1995-04-18|COLLECT COD|RAIL|eans wake. ideas after the cour| +12652|315734|3253|1|41|71738.52|0.06|0.06|N|O|1997-12-29|1998-01-12|1998-01-22|TAKE BACK RETURN|MAIL| the regular packages. sly| +12652|530501|30502|2|43|65853.64|0.01|0.00|N|O|1998-01-08|1998-01-28|1998-02-04|COLLECT COD|RAIL|ate quickly stealthily ironic| +12653|429823|4840|1|4|7011.20|0.05|0.03|A|F|1995-04-03|1995-05-08|1995-04-05|DELIVER IN PERSON|FOB|le never above the quick p| +12653|21304|33805|2|2|2450.60|0.02|0.04|A|F|1995-05-10|1995-05-01|1995-06-09|DELIVER IN PERSON|SHIP|sual accounts are furio| +12654|747304|9819|1|31|41889.37|0.03|0.08|A|F|1994-05-14|1994-06-16|1994-05-15|NONE|AIR|ges. blithely| +12654|933685|46204|2|40|68745.60|0.01|0.06|R|F|1994-05-27|1994-06-21|1994-06-16|TAKE BACK RETURN|RAIL|gs nag furiously. regular excuses use| +12655|828033|15582|1|1|960.99|0.10|0.00|A|F|1994-10-17|1994-10-01|1994-11-16|COLLECT COD|RAIL|nic instructions could hav| +12655|736891|36892|2|5|9639.30|0.01|0.05|A|F|1994-10-23|1994-08-19|1994-11-09|NONE|RAIL|tes. final i| +12655|917434|4989|3|49|71118.11|0.05|0.03|A|F|1994-08-24|1994-09-24|1994-09-23|NONE|AIR| ironic platelets are blithely. | +12680|745832|33375|1|22|41311.60|0.02|0.07|N|O|1997-06-15|1997-07-22|1997-07-13|COLLECT COD|AIR|kages. bold requests | +12680|196246|33756|2|1|1342.24|0.05|0.07|N|O|1997-06-05|1997-06-30|1997-06-08|TAKE BACK RETURN|REG AIR|y ironic dependencies. f| +12680|290824|3330|3|36|65333.16|0.08|0.06|N|O|1997-05-30|1997-07-05|1997-06-19|NONE|RAIL|ymptotes for the blithely express the| +12680|878185|40703|4|17|19773.38|0.03|0.00|N|O|1997-07-03|1997-05-29|1997-07-29|COLLECT COD|REG AIR|y unusual depo| +12680|640992|28529|5|45|86983.20|0.00|0.07|N|O|1997-05-17|1997-06-07|1997-05-26|COLLECT COD|SHIP|se unusual foxes. sl| +12680|152405|27412|6|14|20403.60|0.08|0.04|N|O|1997-08-12|1997-06-03|1997-08-23|COLLECT COD|SHIP|ts sleep careful| +12680|458030|20540|7|27|26676.27|0.03|0.07|N|O|1997-08-26|1997-06-10|1997-09-01|TAKE BACK RETURN|SHIP|nding, ironic p| +12681|98950|36454|1|7|13642.65|0.01|0.08|N|O|1998-08-28|1998-06-29|1998-09-18|NONE|MAIL|. slyly regular theodolites haggle fl| +12681|38243|25744|2|34|40162.16|0.03|0.00|N|O|1998-08-25|1998-06-21|1998-09-21|TAKE BACK RETURN|SHIP|ns cajole slyly along the so| +12681|744497|19526|3|20|30829.20|0.02|0.07|N|O|1998-06-12|1998-06-22|1998-07-05|NONE|REG AIR|y even, regular asymptotes. blithely expre| +12681|751690|14206|4|28|48766.48|0.06|0.07|N|O|1998-07-24|1998-08-12|1998-08-14|COLLECT COD|REG AIR| sleep blithely above the| +12681|643534|43535|5|14|20685.00|0.06|0.05|N|O|1998-08-19|1998-07-19|1998-09-03|COLLECT COD|RAIL|ss the packages: slyl| +12681|867930|30448|6|12|22774.68|0.10|0.03|N|O|1998-05-21|1998-07-07|1998-06-04|NONE|REG AIR|eas try to integ| +12682|875747|13299|1|33|56849.10|0.04|0.05|N|O|1997-04-08|1997-04-22|1997-05-07|TAKE BACK RETURN|SHIP|s detect across the | +12682|675968|38482|2|24|46654.32|0.03|0.06|N|O|1997-06-08|1997-05-17|1997-06-23|COLLECT COD|SHIP| ironic dugouts are carefully | +12682|984034|21592|3|8|8943.92|0.04|0.05|N|O|1997-04-20|1997-05-09|1997-05-06|NONE|REG AIR|l hockey players snooze carefull| +12682|656832|6833|4|3|5366.40|0.00|0.02|N|O|1997-07-02|1997-05-27|1997-07-19|NONE|REG AIR|al packages haggle closel| +12682|360282|10283|5|31|41610.37|0.05|0.08|N|O|1997-04-15|1997-04-21|1997-04-16|COLLECT COD|TRUCK|. requests sleep carefully alongside| +12682|248396|10901|6|2|2688.76|0.04|0.08|N|O|1997-06-17|1997-04-10|1997-07-03|DELIVER IN PERSON|RAIL| regular depen| +12682|783684|8715|7|17|30050.05|0.04|0.00|N|O|1997-06-11|1997-05-31|1997-06-25|TAKE BACK RETURN|SHIP|olites. even th| +12683|363117|13118|1|22|25962.20|0.09|0.02|N|O|1996-05-17|1996-03-23|1996-06-03|TAKE BACK RETURN|FOB|integrate fluffi| +12683|897696|10214|2|28|47422.20|0.07|0.02|N|O|1996-02-09|1996-04-29|1996-02-22|DELIVER IN PERSON|SHIP| ironic deposits. car| +12683|562311|49845|3|38|52185.02|0.04|0.04|N|O|1996-05-06|1996-03-20|1996-05-23|NONE|AIR|e furiously besides the final depo| +12684|244173|6678|1|34|37983.44|0.09|0.08|R|F|1992-07-28|1992-08-17|1992-08-02|NONE|MAIL|ns. packages use ruthlessly speci| +12684|812821|25338|2|49|84955.22|0.00|0.07|R|F|1992-07-21|1992-08-08|1992-07-25|COLLECT COD|AIR| after the express theodolites. caref| +12685|727875|27876|1|13|24736.92|0.04|0.03|R|F|1992-03-18|1992-02-26|1992-03-19|NONE|REG AIR|longside of the final depos| +12685|392194|17209|2|50|64309.00|0.04|0.06|A|F|1992-03-14|1992-03-11|1992-03-19|DELIVER IN PERSON|SHIP|arefully special pac| +12686|967963|43002|1|12|24371.04|0.06|0.04|A|F|1992-12-07|1992-12-08|1992-12-13|DELIVER IN PERSON|REG AIR|ep carefully carefully special pinto beans.| +12686|548597|48598|2|31|51012.67|0.10|0.08|R|F|1992-11-03|1992-12-14|1992-11-11|COLLECT COD|SHIP| blithe sauternes. u| +12686|266279|41290|3|44|54791.44|0.10|0.01|A|F|1992-11-17|1992-12-02|1992-11-20|DELIVER IN PERSON|SHIP|ies. warhorses according to the dogge| +12686|339688|2195|4|46|79472.82|0.09|0.06|R|F|1992-10-31|1992-11-17|1992-11-15|COLLECT COD|FOB|y regular deposits. ruthlessly ironic p| +12686|120414|45419|5|35|50204.35|0.00|0.01|A|F|1992-10-17|1992-12-11|1992-10-23|COLLECT COD|RAIL| after the regular theodolites nag sly| +12687|246416|33929|1|31|42234.40|0.06|0.08|N|O|1996-11-28|1996-12-22|1996-12-20|DELIVER IN PERSON|FOB|o beans boost| +12712|172527|22528|1|28|44786.56|0.00|0.00|A|F|1993-02-11|1993-04-19|1993-02-25|COLLECT COD|AIR|round the even depos| +12712|648203|10716|2|39|44895.63|0.02|0.05|R|F|1993-03-31|1993-02-22|1993-04-24|TAKE BACK RETURN|SHIP|y pending courts nag fluffily after| +12713|417282|4807|1|16|19188.16|0.03|0.08|N|O|1996-10-29|1996-10-12|1996-11-18|DELIVER IN PERSON|TRUCK|ccounts are deposits. excuses within th| +12713|254229|41745|2|32|37862.72|0.01|0.01|N|O|1996-10-16|1996-10-31|1996-10-22|DELIVER IN PERSON|AIR|regular excuses. bold reque| +12713|825089|122|3|13|13182.52|0.06|0.00|N|O|1996-10-18|1996-11-13|1996-11-17|TAKE BACK RETURN|TRUCK|e carefully after | +12713|258991|34002|4|50|97499.00|0.07|0.00|N|O|1996-10-08|1996-10-02|1996-10-28|TAKE BACK RETURN|REG AIR|usly pending depe| +12714|496828|46829|1|1|1824.80|0.09|0.00|N|O|1996-05-19|1996-05-27|1996-05-25|DELIVER IN PERSON|REG AIR|nusual foxes across the carefully e| +12714|176423|13933|2|34|50980.28|0.09|0.02|N|O|1996-07-06|1996-07-05|1996-07-27|COLLECT COD|SHIP|nic accounts sleep slyly s| +12714|128444|15951|3|38|55952.72|0.10|0.07|N|O|1996-05-07|1996-06-26|1996-05-19|TAKE BACK RETURN|FOB|uffily final deposits--| +12714|757169|44715|4|48|58854.24|0.01|0.00|N|O|1996-05-10|1996-05-25|1996-05-20|NONE|FOB|y final, regular | +12715|857842|45394|1|11|19797.80|0.04|0.07|R|F|1993-11-14|1993-12-05|1993-12-12|NONE|TRUCK|wake carefully fluffily specia| +12715|750105|25136|2|18|20791.26|0.02|0.06|R|F|1993-11-27|1993-10-09|1993-12-22|DELIVER IN PERSON|TRUCK|requests. slyly b| +12715|13945|13946|3|4|7435.76|0.08|0.02|A|F|1993-09-30|1993-10-15|1993-10-08|COLLECT COD|TRUCK|e blithely even pinto beans. c| +12716|61471|48975|1|29|41541.63|0.02|0.07|N|O|1997-09-25|1997-08-11|1997-10-09|DELIVER IN PERSON|FOB|e the furiously ironic ins| +12716|139065|26572|2|9|9936.54|0.08|0.01|N|O|1997-09-18|1997-08-10|1997-10-10|COLLECT COD|MAIL|ct pending ide| +12717|916793|41830|1|14|25336.50|0.02|0.02|A|F|1995-05-09|1995-03-25|1995-05-11|NONE|MAIL|counts. furiousl| +12717|526489|39000|2|49|74257.54|0.03|0.06|R|F|1995-05-08|1995-04-26|1995-05-09|TAKE BACK RETURN|SHIP|itaphs cajole furiously according to the| +12717|687250|12277|3|49|60623.78|0.10|0.06|A|F|1995-04-02|1995-04-09|1995-04-09|COLLECT COD|SHIP|even sauternes: quickly express ideas c| +12717|595650|45651|4|35|61097.05|0.07|0.07|A|F|1995-03-03|1995-04-07|1995-03-25|COLLECT COD|SHIP|al accounts haggle stealthily quickly regul| +12718|220993|20994|1|24|45935.52|0.06|0.01|A|F|1993-12-17|1993-11-17|1994-01-10|NONE|REG AIR|requests. quickly final accounts wake car| +12719|733913|33914|1|10|19468.80|0.08|0.02|R|F|1992-08-12|1992-09-23|1992-08-16|COLLECT COD|MAIL|ts kindle. enticingly f| +12744|27556|27557|1|24|35605.20|0.00|0.03|R|F|1993-08-16|1993-07-03|1993-09-12|DELIVER IN PERSON|REG AIR| cajole furiously. furi| +12744|131537|31538|2|22|34507.66|0.09|0.04|R|F|1993-09-02|1993-06-12|1993-09-09|COLLECT COD|SHIP|sly pending deposits against the carefully| +12744|738998|1513|3|41|83515.36|0.02|0.04|R|F|1993-06-26|1993-07-14|1993-07-19|DELIVER IN PERSON|AIR|. pending, unusual acc| +12745|47472|22473|1|48|68134.56|0.08|0.07|R|F|1992-06-21|1992-04-27|1992-07-04|COLLECT COD|REG AIR|nstructions. slyly| +12745|850621|38173|2|43|67577.94|0.10|0.06|A|F|1992-04-23|1992-05-02|1992-05-04|NONE|REG AIR|ld packages about the| +12745|383764|33765|3|10|18477.50|0.09|0.04|A|F|1992-05-22|1992-05-19|1992-05-28|DELIVER IN PERSON|MAIL| cajole furiously around the | +12745|916529|41566|4|36|55637.28|0.03|0.07|A|F|1992-06-10|1992-04-11|1992-06-15|TAKE BACK RETURN|SHIP|as. furiously| +12745|101092|13595|5|50|54654.50|0.00|0.08|A|F|1992-03-01|1992-05-27|1992-03-09|NONE|SHIP|kly regular packages. pinto beans cajo| +12746|744998|44999|1|45|91933.20|0.05|0.04|R|F|1993-03-25|1993-03-06|1993-04-08|COLLECT COD|REG AIR|the quickly regular instructions boost a| +12746|167682|5192|2|23|40242.64|0.10|0.06|A|F|1993-02-16|1993-02-20|1993-02-17|TAKE BACK RETURN|FOB|lent packages wake c| +12746|225560|38065|3|6|8913.30|0.04|0.07|R|F|1993-01-15|1993-02-04|1993-02-04|DELIVER IN PERSON|MAIL|nic dependencies. blithely fin| +12746|983888|46408|4|2|3943.68|0.10|0.03|A|F|1993-02-18|1993-02-06|1993-02-24|TAKE BACK RETURN|SHIP|blithely final attain| +12746|204423|16928|5|28|37167.48|0.09|0.02|A|F|1993-01-09|1993-03-28|1993-01-29|TAKE BACK RETURN|FOB|gular deposits use| +12747|847545|35094|1|46|68655.00|0.02|0.00|R|F|1995-01-03|1994-11-24|1995-01-28|COLLECT COD|REG AIR|ges. regula| +12747|683739|46253|2|27|46512.90|0.00|0.00|R|F|1994-11-28|1994-12-04|1994-12-01|DELIVER IN PERSON|REG AIR| multipliers?| +12747|598741|48742|3|44|80947.68|0.10|0.02|A|F|1994-11-08|1994-12-20|1994-11-17|NONE|AIR| haggle slyly abo| +12747|37731|25232|4|24|40049.52|0.05|0.02|A|F|1995-01-10|1994-11-11|1995-02-07|COLLECT COD|RAIL|regular excuses use fluffily. care| +12747|140687|28194|5|26|44919.68|0.10|0.01|R|F|1994-12-05|1994-12-22|1994-12-27|COLLECT COD|RAIL|lly brave packages. blithely| +12747|525824|845|6|25|46245.00|0.01|0.02|A|F|1994-11-25|1994-12-23|1994-12-10|DELIVER IN PERSON|TRUCK|thely express accounts afte| +12747|511053|11054|7|36|38305.08|0.04|0.08|A|F|1994-10-24|1994-11-19|1994-11-02|COLLECT COD|RAIL|ular packages. slyly pending theod| +12748|266502|16503|1|14|20558.86|0.04|0.04|N|O|1997-07-30|1997-08-04|1997-08-10|TAKE BACK RETURN|AIR|al asymptotes cajole theodolites. furio| +12748|85153|47655|2|26|29591.90|0.06|0.02|N|O|1997-09-19|1997-06-23|1997-10-05|NONE|MAIL|y never final accounts. furiously| +12748|159686|47196|3|35|61098.80|0.02|0.05|N|O|1997-09-02|1997-08-11|1997-09-13|NONE|RAIL|he final ideas haggle quic| +12748|835757|10790|4|50|84635.50|0.01|0.02|N|O|1997-06-19|1997-08-06|1997-06-20|TAKE BACK RETURN|AIR|sual dependencies boost blithely quickl| +12748|561651|24163|5|13|22264.19|0.03|0.02|N|O|1997-07-19|1997-08-09|1997-08-16|NONE|SHIP|dolites after the always ironic instruc| +12748|663225|38252|6|9|10693.71|0.02|0.02|N|O|1997-09-01|1997-08-01|1997-09-27|TAKE BACK RETURN|AIR|ckages. slyly even instructions about th| +12749|608537|8538|1|34|49147.00|0.09|0.03|A|F|1995-03-24|1995-01-08|1995-04-18|NONE|REG AIR|ross the blithely final | +12749|666880|41907|2|39|72027.15|0.03|0.02|A|F|1995-03-28|1995-01-05|1995-04-13|DELIVER IN PERSON|TRUCK|uriously express excuses. furious| +12749|243383|43384|3|18|23874.66|0.01|0.07|A|F|1994-12-27|1995-02-23|1995-01-23|COLLECT COD|MAIL|ges. quickly express platelets cajole furi| +12749|531997|31998|4|17|34492.49|0.03|0.00|A|F|1994-12-05|1995-02-15|1994-12-23|DELIVER IN PERSON|AIR|ages haggle slyly| +12749|262288|12289|5|3|3750.81|0.07|0.03|R|F|1994-12-29|1995-02-12|1995-01-08|COLLECT COD|FOB|rays maint| +12749|265707|40718|6|19|31781.11|0.02|0.07|A|F|1995-01-15|1995-01-26|1995-02-03|COLLECT COD|SHIP|uickly ironic tithes maintain above the b| +12749|733892|33893|7|25|48146.50|0.08|0.07|A|F|1995-04-03|1995-03-03|1995-05-02|COLLECT COD|FOB|nal deposi| +12750|506146|6147|1|36|41476.32|0.10|0.07|A|F|1992-08-17|1992-07-21|1992-08-20|COLLECT COD|AIR| packages cajole careful| +12750|781649|19195|2|20|34612.20|0.06|0.06|R|F|1992-10-06|1992-08-05|1992-10-16|NONE|TRUCK|ding accounts alongside | +12750|166149|28653|3|2|2430.28|0.09|0.01|R|F|1992-07-10|1992-08-20|1992-07-26|TAKE BACK RETURN|MAIL|xpress asymptotes w| +12750|451605|26624|4|28|43584.24|0.10|0.05|R|F|1992-09-13|1992-09-03|1992-10-08|TAKE BACK RETURN|RAIL|all haggle | +12750|109220|9221|5|48|59002.56|0.08|0.03|R|F|1992-07-05|1992-07-16|1992-07-09|NONE|TRUCK|y final ideas. evenly express escapades h| +12751|87885|37886|1|29|54313.52|0.05|0.07|R|F|1994-08-18|1994-08-04|1994-09-08|COLLECT COD|TRUCK|requests. blithely ironic foxes affix furi| +12751|75946|38448|2|8|15375.52|0.09|0.02|R|F|1994-09-22|1994-09-09|1994-10-10|TAKE BACK RETURN|RAIL|equests hagg| +12776|126232|38735|1|20|25164.60|0.04|0.01|A|F|1992-10-04|1992-12-07|1992-10-07|NONE|AIR|st the excuses play slyly against the pendi| +12776|569378|44401|2|10|14473.50|0.01|0.08|A|F|1992-11-29|1992-11-15|1992-12-18|COLLECT COD|RAIL|e sometimes quickly fin| +12776|519322|44343|3|40|53652.00|0.07|0.02|A|F|1993-01-23|1992-11-18|1993-01-27|COLLECT COD|TRUCK| pinto beans. carefully pending| +12776|233925|46430|4|9|16730.19|0.03|0.01|A|F|1992-10-30|1992-12-07|1992-11-11|DELIVER IN PERSON|RAIL|ccounts. carefully regular| +12776|565062|2596|5|3|3381.12|0.04|0.00|A|F|1992-12-16|1992-11-05|1992-12-20|DELIVER IN PERSON|SHIP|ests impress care| +12777|721451|33966|1|7|10306.94|0.06|0.06|N|O|1997-08-02|1997-08-20|1997-08-18|TAKE BACK RETURN|REG AIR|ly bold dependenc| +12777|415096|27605|2|13|13143.91|0.08|0.05|N|O|1997-08-22|1997-09-15|1997-09-16|COLLECT COD|REG AIR|e. quickly | +12777|506076|43607|3|18|19476.90|0.02|0.05|N|O|1997-09-22|1997-09-07|1997-10-18|NONE|TRUCK|ffily ironic pinto beans accor| +12777|611583|49120|4|18|26901.90|0.05|0.06|N|O|1997-09-03|1997-09-14|1997-09-09|NONE|REG AIR|carefully express accounts| +12777|872208|22209|5|23|27143.68|0.10|0.08|N|O|1997-09-04|1997-08-26|1997-09-24|NONE|TRUCK| express accou| +12778|344969|19982|1|44|88613.80|0.07|0.01|N|O|1995-11-20|1995-11-06|1995-11-30|DELIVER IN PERSON|SHIP|ongside of the packages. furiously ironic| +12778|888605|38606|2|4|6374.24|0.06|0.02|N|O|1996-01-01|1995-11-07|1996-01-26|NONE|RAIL|ndencies cajole express re| +12778|776627|14173|3|8|13628.72|0.05|0.06|N|O|1995-11-22|1995-11-04|1995-12-06|DELIVER IN PERSON|RAIL|nding, ironic ideas along the furiousl| +12779|496044|8554|1|30|31200.60|0.09|0.07|A|F|1992-07-12|1992-07-30|1992-08-03|TAKE BACK RETURN|TRUCK|nstructions. even, bold accounts impr| +12779|2053|39554|2|41|39157.05|0.05|0.02|A|F|1992-05-31|1992-07-27|1992-06-21|COLLECT COD|REG AIR|lent accounts. slyly bold | +12779|491992|41993|3|4|7935.88|0.04|0.08|R|F|1992-06-20|1992-07-04|1992-06-30|NONE|TRUCK|yly regular instructions. carefully ironic| +12779|894553|19588|4|46|71185.46|0.06|0.06|R|F|1992-08-25|1992-07-16|1992-08-30|DELIVER IN PERSON|MAIL|hely ironic in| +12779|751318|13834|5|40|54771.20|0.10|0.08|R|F|1992-08-18|1992-06-24|1992-09-05|DELIVER IN PERSON|REG AIR|yly at the unusual, even packages| +12780|196986|21993|1|29|60406.42|0.09|0.04|N|O|1996-07-10|1996-05-17|1996-07-29|COLLECT COD|MAIL| accounts promise blithely at th| +12780|727395|2424|2|11|15645.96|0.01|0.07|N|O|1996-07-20|1996-05-27|1996-07-27|TAKE BACK RETURN|SHIP|gle carefully. express foxe| +12781|756085|43631|1|4|4564.20|0.03|0.06|N|O|1995-08-24|1995-08-31|1995-08-27|DELIVER IN PERSON|FOB|-- regular requests | +12782|833923|8956|1|25|46422.00|0.04|0.06|R|F|1994-08-19|1994-07-30|1994-08-30|TAKE BACK RETURN|TRUCK| regular deposits.| +12782|729818|29819|2|44|81302.32|0.04|0.07|R|F|1994-06-12|1994-06-15|1994-06-29|DELIVER IN PERSON|AIR|fter the pending waters. | +12783|160268|22772|1|48|63756.48|0.07|0.01|R|F|1992-04-27|1992-07-03|1992-05-11|TAKE BACK RETURN|SHIP|c foxes are furiousl| +12808|279052|29053|1|15|15465.60|0.07|0.07|N|O|1995-06-18|1995-05-24|1995-07-14|NONE|RAIL|. ironic, expre| +12808|13733|38734|2|42|69162.66|0.04|0.00|R|F|1995-05-24|1995-06-27|1995-06-16|COLLECT COD|RAIL|lar packages. quickly regul| +12808|797924|10440|3|11|22240.79|0.04|0.00|R|F|1995-05-08|1995-06-02|1995-05-15|DELIVER IN PERSON|MAIL|uickly quickly regular pinto beans. | +12808|697105|22132|4|48|52899.36|0.04|0.02|A|F|1995-05-20|1995-06-22|1995-06-15|DELIVER IN PERSON|RAIL| final, ironic accounts affix fluffily a| +12808|229572|42077|5|43|64567.08|0.09|0.00|N|O|1995-07-07|1995-06-23|1995-07-28|TAKE BACK RETURN|TRUCK|equests. even, even theodolites | +12808|404694|17203|6|1|1598.67|0.03|0.05|N|O|1995-07-20|1995-06-23|1995-07-29|COLLECT COD|SHIP| quickly bold accounts nag furi| +12808|688028|542|7|22|22351.78|0.08|0.08|N|F|1995-06-09|1995-07-01|1995-06-28|TAKE BACK RETURN|RAIL|-- pending, sl| +12809|671713|46740|1|30|50540.40|0.04|0.00|N|O|1997-07-31|1997-08-20|1997-08-03|NONE|REG AIR|its sleep fluffily-- blithely pendin| +12809|476439|13967|2|22|31139.02|0.07|0.02|N|O|1997-07-25|1997-07-22|1997-08-06|DELIVER IN PERSON|TRUCK|al platelets use| +12809|507939|45470|3|27|52566.57|0.04|0.00|N|O|1997-08-08|1997-07-21|1997-08-29|COLLECT COD|REG AIR|ts are slyly. slyly ironic fox| +12809|921506|46543|4|4|6109.84|0.07|0.01|N|O|1997-08-30|1997-08-14|1997-09-13|DELIVER IN PERSON|SHIP|ry to haggle acro| +12809|738244|13273|5|42|53852.82|0.07|0.08|N|O|1997-09-07|1997-09-05|1997-09-16|COLLECT COD|AIR|r platelets along the slyly unusual d| +12810|906409|43964|1|24|33968.64|0.05|0.07|R|F|1993-09-27|1993-09-19|1993-10-14|TAKE BACK RETURN|SHIP| quickly along the pending gr| +12810|2735|27736|2|45|73697.85|0.09|0.04|A|F|1993-10-23|1993-10-05|1993-10-30|COLLECT COD|FOB|ding to the carefully regular ideas are qu| +12810|962827|12828|3|34|64252.52|0.10|0.04|R|F|1993-09-07|1993-09-29|1993-10-01|TAKE BACK RETURN|RAIL| slyly special packages. slyly bold accoun| +12810|226812|1821|4|25|43470.00|0.07|0.02|R|F|1993-08-25|1993-09-10|1993-09-12|DELIVER IN PERSON|RAIL|deposits haggle express dep| +12810|25873|38374|5|10|17988.70|0.02|0.07|A|F|1993-08-15|1993-10-09|1993-08-29|COLLECT COD|MAIL|nent deposits u| +12811|12815|316|1|15|25917.15|0.07|0.05|N|O|1998-03-16|1998-02-14|1998-04-06|NONE|AIR|hogs haggle fluffily after the final, s| +12812|580095|17629|1|45|52878.15|0.06|0.02|N|O|1997-02-02|1997-03-22|1997-02-22|COLLECT COD|TRUCK| above the furi| +12812|643860|6373|2|27|48703.41|0.03|0.05|N|O|1997-04-16|1997-03-20|1997-04-24|TAKE BACK RETURN|SHIP|iously regular, pending pinto bean| +12813|161975|36982|1|8|16295.76|0.02|0.00|R|F|1995-01-21|1995-03-05|1995-02-02|DELIVER IN PERSON|TRUCK|he furiously | +12813|310572|48091|2|7|11077.92|0.03|0.00|R|F|1995-02-06|1995-03-20|1995-02-07|DELIVER IN PERSON|SHIP|lent pinto beans cajole. car| +12814|881880|31881|1|4|7447.36|0.03|0.05|A|F|1992-07-29|1992-06-07|1992-08-03|DELIVER IN PERSON|RAIL|arefully f| +12814|744493|19522|2|26|39973.96|0.02|0.05|R|F|1992-08-13|1992-07-14|1992-09-01|DELIVER IN PERSON|RAIL|nusual ideas; furiously ironic| +12814|678905|3932|3|41|77238.67|0.07|0.04|R|F|1992-05-13|1992-07-11|1992-06-01|COLLECT COD|TRUCK| unusual platel| +12815|355535|5536|1|17|27038.84|0.04|0.02|R|F|1992-04-24|1992-06-03|1992-05-24|COLLECT COD|SHIP|al instructions.| +12815|469104|44123|2|41|43996.28|0.07|0.02|A|F|1992-06-26|1992-05-14|1992-07-01|COLLECT COD|RAIL|y express foxes-- blithely regu| +12815|214965|39974|3|49|92117.55|0.03|0.01|A|F|1992-04-26|1992-06-04|1992-05-26|COLLECT COD|MAIL|e among the fluffily regular instructio| +12815|903708|3709|4|38|65043.08|0.10|0.02|R|F|1992-05-24|1992-06-16|1992-06-21|COLLECT COD|MAIL|odolites wake. ir| +12840|919977|45014|1|16|31950.88|0.02|0.01|N|O|1997-01-27|1996-12-03|1997-02-15|DELIVER IN PERSON|MAIL|express theodol| +12840|41683|41684|2|29|47115.72|0.02|0.06|N|O|1996-11-24|1997-01-12|1996-12-08|COLLECT COD|TRUCK|e ironic accounts haggle blithely ironic ac| +12840|564242|1776|3|26|33961.72|0.09|0.01|N|O|1996-12-06|1997-01-14|1997-01-04|NONE|FOB| furiously regular pinto bean| +12840|201387|1388|4|46|59265.02|0.04|0.06|N|O|1997-01-25|1996-11-30|1997-02-13|COLLECT COD|TRUCK|fily about the regular, regul| +12840|710110|22625|5|10|11200.80|0.05|0.07|N|O|1996-11-23|1997-01-09|1996-12-16|TAKE BACK RETURN|SHIP|egular, regular excuses | +12840|816356|3905|6|16|20356.96|0.00|0.02|N|O|1996-11-21|1997-01-06|1996-12-04|DELIVER IN PERSON|SHIP|iers nag throughout the unusual requests; | +12841|180012|5019|1|21|22932.21|0.02|0.01|A|F|1995-01-07|1994-12-24|1995-01-26|TAKE BACK RETURN|MAIL|x according to| +12841|456173|31192|2|30|33874.50|0.03|0.06|A|F|1995-02-12|1994-12-03|1995-02-20|COLLECT COD|MAIL|ts haggle. slyly ir| +12841|885691|35692|3|36|60359.40|0.05|0.08|R|F|1994-10-28|1995-01-18|1994-11-20|NONE|FOB| requests s| +12841|795428|7944|4|46|70075.94|0.02|0.02|R|F|1995-02-10|1995-01-15|1995-02-22|TAKE BACK RETURN|REG AIR|blithely along the silently final account| +12841|753228|28259|5|49|62778.31|0.01|0.02|R|F|1994-11-19|1995-01-05|1994-12-02|TAKE BACK RETURN|AIR| unusual deposits whithout the quickly | +12841|498501|23520|6|8|11995.84|0.06|0.02|R|F|1995-02-07|1995-01-12|1995-02-26|TAKE BACK RETURN|REG AIR|t slyly enticing tithes. blithely spec| +12841|290244|40245|7|29|35792.67|0.04|0.06|A|F|1994-12-01|1994-12-25|1994-12-29|NONE|REG AIR|e furiously dogged dolphi| +12842|118710|31213|1|25|43217.75|0.10|0.03|N|O|1997-11-28|1997-11-22|1997-12-26|NONE|SHIP|s cajole. re| +12843|128620|28621|1|42|69242.04|0.04|0.04|N|O|1996-11-11|1996-11-10|1996-11-28|DELIVER IN PERSON|SHIP|lly final requests. regular asymptotes boo| +12843|704752|29781|2|15|26350.80|0.06|0.06|N|O|1996-10-22|1996-10-25|1996-11-12|TAKE BACK RETURN|AIR|packages across the regular depos| +12844|51393|13895|1|5|6721.95|0.01|0.02|A|F|1993-06-15|1993-08-01|1993-07-05|DELIVER IN PERSON|AIR|g platelets. regular orbits promise| +12845|871907|21908|1|23|43213.78|0.10|0.04|N|O|1996-07-07|1996-08-13|1996-07-25|TAKE BACK RETURN|MAIL|ously slyly even courts.| +12845|128520|28521|2|10|15485.20|0.03|0.07|N|O|1996-08-18|1996-08-14|1996-08-31|COLLECT COD|TRUCK|ages are! ideas wake furiousl| +12845|20893|33394|3|25|45347.25|0.03|0.05|N|O|1996-10-23|1996-09-29|1996-11-05|NONE|FOB|fluffily even deposits eat furiously acro| +12845|143190|18195|4|23|28363.37|0.09|0.01|N|O|1996-10-31|1996-09-10|1996-11-26|COLLECT COD|FOB|e carefully bold| +12845|585452|22986|5|7|10762.01|0.10|0.06|N|O|1996-08-23|1996-08-09|1996-09-13|COLLECT COD|REG AIR|final accounts. c| +12845|686011|48525|6|14|13957.72|0.05|0.08|N|O|1996-10-26|1996-08-21|1996-11-20|NONE|SHIP|ckages against the reg| +12845|783667|46183|7|50|87531.50|0.01|0.07|N|O|1996-07-29|1996-08-20|1996-08-24|COLLECT COD|RAIL| express dependencies affix fluffily a| +12846|89922|39923|1|9|17207.28|0.07|0.03|R|F|1992-09-26|1992-09-28|1992-10-03|DELIVER IN PERSON|TRUCK|packages according | +12846|308125|8126|2|19|21529.09|0.09|0.08|R|F|1992-09-11|1992-10-31|1992-10-09|TAKE BACK RETURN|SHIP|bold deposits. carefully silent fr| +12846|647329|9842|3|37|47222.73|0.08|0.08|R|F|1992-11-22|1992-10-15|1992-12-12|COLLECT COD|RAIL|foxes. requests cajo| +12846|657293|19807|4|26|32506.76|0.02|0.05|R|F|1992-10-31|1992-10-08|1992-11-29|NONE|RAIL|gular acco| +12847|113502|26005|1|26|39403.00|0.03|0.08|N|O|1997-09-07|1997-09-30|1997-09-24|COLLECT COD|RAIL|oxes according to the final, final i| +12847|613183|25696|2|3|3288.45|0.00|0.06|N|O|1997-08-15|1997-09-11|1997-09-14|NONE|FOB|blithely even deposit| +12847|750817|818|3|4|7471.12|0.06|0.05|N|O|1997-11-01|1997-10-01|1997-11-08|DELIVER IN PERSON|AIR|ongside of the fluffily pending courts na| +12872|542581|30112|1|50|81178.00|0.07|0.05|N|O|1998-05-25|1998-04-12|1998-06-04|DELIVER IN PERSON|REG AIR| express accounts nag finally ou| +12872|147545|47546|2|18|28665.72|0.09|0.01|N|O|1998-06-23|1998-04-26|1998-06-26|DELIVER IN PERSON|TRUCK|n epitaphs. deposi| +12872|785515|10546|3|30|48014.40|0.00|0.02|N|O|1998-04-07|1998-05-19|1998-04-11|TAKE BACK RETURN|MAIL|rave, final theodolites wake. th| +12873|792893|17924|1|18|35745.48|0.01|0.01|A|F|1995-03-26|1995-03-17|1995-03-27|DELIVER IN PERSON|FOB|s sleep blithel| +12873|140925|40926|2|7|13761.44|0.02|0.05|A|F|1995-05-12|1995-02-13|1995-05-24|COLLECT COD|SHIP|ests; special, f| +12873|519557|44578|3|31|48872.43|0.07|0.00|R|F|1995-04-09|1995-04-13|1995-05-03|TAKE BACK RETURN|FOB|ronic pinto beans. bravely daring ideas al| +12873|192041|42042|4|49|55518.96|0.06|0.04|A|F|1995-01-19|1995-03-01|1995-02-01|COLLECT COD|AIR|haggle slyly daring packages. care| +12873|617575|17576|5|50|74627.00|0.02|0.08|R|F|1995-05-14|1995-04-13|1995-05-23|COLLECT COD|RAIL|ounts. furiously regular ideas cajo| +12874|956867|31906|1|48|92343.36|0.09|0.01|N|O|1998-06-02|1998-06-11|1998-06-19|DELIVER IN PERSON|RAIL|y ironic dependencies believe qui| +12874|52949|15451|2|26|49450.44|0.00|0.07|N|O|1998-05-19|1998-06-25|1998-06-04|DELIVER IN PERSON|MAIL|dazzle fluffily above th| +12874|897325|34877|3|21|27767.88|0.04|0.05|N|O|1998-06-30|1998-06-16|1998-07-29|COLLECT COD|AIR|s wake caref| +12874|332357|32358|4|32|44458.88|0.00|0.05|N|O|1998-05-27|1998-06-01|1998-06-06|NONE|REG AIR|he furiously final | +12874|915792|3347|5|36|65079.00|0.10|0.00|N|O|1998-07-05|1998-06-18|1998-07-21|TAKE BACK RETURN|MAIL|fily even dependencies nag slyly blithely| +12875|500395|12906|1|24|33488.88|0.06|0.01|N|O|1998-07-14|1998-07-26|1998-08-01|NONE|REG AIR|es haggle. regu| +12875|133713|33714|2|13|22707.23|0.00|0.06|N|O|1998-06-29|1998-07-30|1998-07-26|COLLECT COD|REG AIR|along the slyly special pinto beans aff| +12875|310377|10378|3|27|37458.72|0.10|0.04|N|O|1998-05-14|1998-07-11|1998-05-27|DELIVER IN PERSON|SHIP|ake quickly| +12875|504949|29970|4|21|41032.32|0.00|0.00|N|O|1998-06-01|1998-07-31|1998-06-21|NONE|FOB| requests according to the slyly expre| +12875|667645|30159|5|32|51603.52|0.09|0.03|N|O|1998-07-02|1998-06-10|1998-07-21|TAKE BACK RETURN|SHIP|o the quickly special grouche| +12875|104487|4488|6|30|44744.40|0.08|0.03|N|O|1998-05-17|1998-08-02|1998-06-14|COLLECT COD|REG AIR|frets grow closely. pending ideas al| +12875|105404|42911|7|28|39463.20|0.07|0.03|N|O|1998-07-12|1998-07-01|1998-08-05|NONE|AIR|oost across the s| +12876|510672|35693|1|38|63940.70|0.00|0.02|R|F|1993-05-03|1993-03-07|1993-05-12|TAKE BACK RETURN|REG AIR|ic pinto beans| +12876|862098|24616|2|42|44522.10|0.02|0.07|R|F|1993-02-10|1993-03-09|1993-02-19|DELIVER IN PERSON|MAIL|ar deposits-- furiously pending de| +12876|266200|41211|3|39|45481.41|0.07|0.05|R|F|1993-03-10|1993-02-28|1993-04-02|NONE|MAIL|ncies. unusual frays would affix: slyly | +12877|683891|46405|1|37|69369.82|0.10|0.03|N|O|1995-08-07|1995-07-03|1995-08-10|DELIVER IN PERSON|MAIL|kly braids. blithely ironic req| +12877|143211|5714|2|23|28846.83|0.03|0.02|N|O|1995-07-27|1995-05-31|1995-08-04|TAKE BACK RETURN|FOB| are blithely acc| +12878|995554|8074|1|35|57732.85|0.03|0.04|N|O|1998-07-17|1998-06-17|1998-08-12|NONE|MAIL|le. furiously ironic pinto beans | +12878|262111|24617|2|16|17169.60|0.08|0.03|N|O|1998-04-15|1998-06-24|1998-04-29|NONE|MAIL|thrash blithely even| +12878|286741|36742|3|18|31099.14|0.01|0.07|N|O|1998-05-12|1998-05-29|1998-06-09|DELIVER IN PERSON|RAIL|accounts along the spe| +12878|242515|17524|4|38|55385.00|0.08|0.04|N|O|1998-06-18|1998-06-22|1998-06-22|TAKE BACK RETURN|SHIP|pecial ideas sublate furiously? foxes cajo| +12878|941148|28703|5|36|42807.60|0.01|0.08|N|O|1998-07-24|1998-07-05|1998-08-01|TAKE BACK RETURN|FOB|ns. special deposits integrate slyly. r| +12879|578594|28595|1|17|28433.69|0.10|0.06|N|O|1997-12-22|1997-11-21|1998-01-08|NONE|RAIL|ests. final, ironic accounts slee| +12879|422861|47878|2|33|58866.72|0.08|0.01|N|O|1997-09-16|1997-12-06|1997-10-02|DELIVER IN PERSON|AIR|ly final depo| +12879|10353|35354|3|3|3790.05|0.10|0.01|N|O|1997-12-12|1997-10-10|1997-12-20|DELIVER IN PERSON|AIR|y regular gift| +12879|994292|44293|4|30|41587.50|0.06|0.04|N|O|1997-10-26|1997-10-22|1997-11-01|COLLECT COD|REG AIR|uests affix f| +12904|734235|21778|1|14|17768.80|0.07|0.03|R|F|1994-12-17|1994-10-07|1995-01-14|TAKE BACK RETURN|TRUCK|ly even pinto beans boost against the bli| +12904|276528|14044|2|27|40621.77|0.04|0.08|A|F|1994-09-28|1994-11-21|1994-10-17|DELIVER IN PERSON|RAIL|ctions. final asymptotes| +12904|592847|5359|3|11|21338.02|0.02|0.08|R|F|1994-08-29|1994-11-02|1994-09-04|TAKE BACK RETURN|MAIL|ost; carefully express excuses a| +12904|970203|7761|4|4|5092.64|0.08|0.01|R|F|1994-09-17|1994-10-23|1994-10-03|TAKE BACK RETURN|REG AIR|yly final packages. instructions shall h| +12905|939374|1893|1|22|31093.26|0.08|0.06|N|O|1996-11-13|1996-10-14|1996-12-12|TAKE BACK RETURN|SHIP|y packages along the blithely e| +12905|43632|31133|2|28|44117.64|0.04|0.07|N|O|1996-12-15|1996-11-28|1996-12-17|COLLECT COD|REG AIR|y even accou| +12905|315969|40982|3|44|87337.80|0.03|0.00|N|O|1996-11-19|1996-11-18|1996-12-15|DELIVER IN PERSON|REG AIR|g the carefully iron| +12905|484907|34908|4|9|17026.92|0.02|0.08|N|O|1996-11-23|1996-11-23|1996-12-21|COLLECT COD|FOB|e carefully alongside of the fluff| +12905|817590|30107|5|15|22613.25|0.09|0.04|N|O|1996-12-17|1996-11-22|1997-01-06|TAKE BACK RETURN|AIR| regular deposit| +12906|831284|6317|1|23|27950.52|0.02|0.02|A|F|1994-03-19|1994-02-28|1994-03-20|DELIVER IN PERSON|RAIL|mptotes. quickly| +12907|251398|13904|1|26|35083.88|0.06|0.00|R|F|1994-05-13|1994-04-03|1994-05-14|TAKE BACK RETURN|AIR|ithely reques| +12907|242274|42275|2|50|60813.00|0.07|0.00|A|F|1994-04-10|1994-04-03|1994-04-26|DELIVER IN PERSON|MAIL|otes. packages| +12907|893874|43875|3|37|69109.71|0.05|0.03|A|F|1994-05-11|1994-03-28|1994-06-10|DELIVER IN PERSON|RAIL|inal excuses. regular, regular the| +12908|989450|27008|1|46|70812.86|0.07|0.03|N|O|1998-10-17|1998-08-05|1998-11-12|TAKE BACK RETURN|FOB|lly regular requests ha| +12909|990516|3036|1|29|46587.63|0.07|0.01|R|F|1993-12-16|1993-12-03|1994-01-04|COLLECT COD|SHIP| after the fluffily regular accounts| +12909|590970|3482|2|33|68011.35|0.07|0.01|A|F|1993-11-04|1993-11-30|1993-12-03|NONE|TRUCK|ackages-- regular | +12909|418156|5681|3|42|45113.46|0.07|0.00|R|F|1994-01-07|1993-11-22|1994-01-10|TAKE BACK RETURN|TRUCK|e packages. furiou| +12909|943284|43285|4|17|22563.08|0.04|0.07|R|F|1993-11-13|1993-12-15|1993-12-02|NONE|FOB|ests. even requests cajole | +12909|758908|33939|5|39|76707.93|0.10|0.05|R|F|1993-11-22|1993-12-30|1993-12-06|NONE|FOB|osits haggl| +12910|989154|39155|1|19|23619.09|0.01|0.00|N|O|1997-06-05|1997-05-04|1997-06-12|TAKE BACK RETURN|RAIL|onic dugouts. always | +12910|710477|35506|2|43|63959.92|0.09|0.03|N|O|1997-03-02|1997-05-26|1997-03-17|TAKE BACK RETURN|AIR|permanently express foxe| +12910|984528|22086|3|11|17737.28|0.08|0.04|N|O|1997-05-09|1997-05-19|1997-06-08|NONE|SHIP|bove the regular, final packages. even, | +12910|960977|48535|4|8|16303.44|0.02|0.01|N|O|1997-06-09|1997-05-16|1997-06-21|NONE|RAIL| carefully slyly even p| +12910|135778|23285|5|23|41716.71|0.06|0.07|N|O|1997-04-07|1997-04-16|1997-04-13|NONE|AIR|unts. slyl| +12911|442071|17088|1|15|15195.75|0.03|0.06|N|O|1998-07-31|1998-07-03|1998-08-14|COLLECT COD|AIR|ithely regular dolphins. c| +12911|885472|35473|2|41|59754.63|0.04|0.03|N|O|1998-04-23|1998-07-11|1998-04-28|DELIVER IN PERSON|TRUCK|lyly even requests against the | +12936|427507|15032|1|31|44468.88|0.10|0.07|A|F|1994-06-01|1994-04-11|1994-06-02|TAKE BACK RETURN|AIR|ts. slyly ir| +12936|100418|419|2|29|41133.89|0.03|0.04|R|F|1994-06-30|1994-04-10|1994-07-17|DELIVER IN PERSON|TRUCK|e the slyly pen| +12937|753862|16378|1|2|3831.66|0.06|0.02|R|F|1995-03-25|1995-02-04|1995-03-31|NONE|AIR| express pac| +12937|147786|22791|2|1|1833.78|0.03|0.05|R|F|1995-03-13|1995-03-12|1995-04-09|DELIVER IN PERSON|FOB|d packages will int| +12937|837806|37807|3|31|54056.56|0.10|0.04|R|F|1995-02-26|1995-03-01|1995-03-08|DELIVER IN PERSON|FOB| the pending packages. carefully ironic esc| +12938|166635|16636|1|27|45944.01|0.08|0.06|N|O|1995-08-20|1995-09-01|1995-09-09|TAKE BACK RETURN|REG AIR|ic deposits boost | +12938|620041|45066|2|3|2883.03|0.02|0.08|N|O|1995-08-31|1995-08-07|1995-09-10|COLLECT COD|MAIL|lar requests integrate carefully final dol| +12938|19469|6970|3|49|68034.54|0.05|0.02|N|O|1995-08-10|1995-08-31|1995-09-01|TAKE BACK RETURN|AIR|he even pinto beans cajole quickl| +12938|209276|34285|4|49|58077.74|0.06|0.08|N|O|1995-08-29|1995-09-06|1995-09-07|NONE|SHIP|ounts. furiously final packages| +12938|297078|9584|5|29|31176.74|0.08|0.07|N|O|1995-09-06|1995-09-28|1995-09-22|NONE|TRUCK|efully special asymptotes doubt ca| +12938|982943|7982|6|5|10129.50|0.08|0.01|N|O|1995-10-20|1995-08-06|1995-10-23|DELIVER IN PERSON|MAIL|the final platel| +12938|311431|36444|7|2|2884.84|0.10|0.06|N|O|1995-07-14|1995-08-12|1995-08-02|DELIVER IN PERSON|SHIP|r theodolites are blithely| +12939|207985|20490|1|30|56789.10|0.03|0.08|A|F|1994-08-24|1994-07-05|1994-09-19|DELIVER IN PERSON|SHIP|ove the fluffily| +12939|592905|42906|2|1|1997.88|0.03|0.02|A|F|1994-07-20|1994-08-21|1994-08-03|TAKE BACK RETURN|AIR|fully carefully express depos| +12939|941949|41950|3|30|59727.00|0.03|0.04|A|F|1994-08-08|1994-07-20|1994-08-17|NONE|TRUCK|ar theodolites. foxes after | +12939|320261|32768|4|3|3843.75|0.03|0.03|A|F|1994-09-18|1994-07-04|1994-09-25|TAKE BACK RETURN|REG AIR|he requests boost f| +12939|616983|16984|5|2|3799.90|0.01|0.01|R|F|1994-07-11|1994-08-11|1994-08-01|TAKE BACK RETURN|MAIL|ss ideas use carefully furiously silen| +12939|629674|4699|6|32|51316.48|0.04|0.00|A|F|1994-06-22|1994-07-23|1994-07-03|TAKE BACK RETURN|RAIL|ely blithely pending deposits. regular| +12940|673084|10624|1|13|13741.65|0.09|0.03|R|F|1995-02-09|1995-03-19|1995-02-19|TAKE BACK RETURN|FOB|lyly ironic account| +12940|516652|29163|2|40|66745.20|0.10|0.01|R|F|1995-04-26|1995-04-16|1995-05-21|NONE|REG AIR|ons haggle ironic so| +12940|364747|27255|3|3|5435.19|0.03|0.03|A|F|1995-02-15|1995-03-05|1995-03-15|COLLECT COD|MAIL|platelets about the furiously final pa| +12940|297227|9733|4|5|6121.05|0.00|0.04|R|F|1995-03-26|1995-05-01|1995-04-01|COLLECT COD|MAIL|p carefully bold packages. special, ironic| +12940|493266|30794|5|40|50369.60|0.06|0.08|A|F|1995-03-08|1995-03-30|1995-03-09|COLLECT COD|TRUCK|s do detect quickly. slyly fin| +12940|320053|45066|6|5|5365.20|0.03|0.04|R|F|1995-04-13|1995-04-04|1995-05-11|DELIVER IN PERSON|AIR|es are fluffily final instructions. s| +12940|126290|26291|7|6|7897.74|0.09|0.01|A|F|1995-03-29|1995-03-28|1995-04-15|DELIVER IN PERSON|FOB|ackages cajole after| +12941|540019|2530|1|46|48713.54|0.08|0.03|R|F|1993-05-09|1993-05-27|1993-05-23|DELIVER IN PERSON|REG AIR|y unusual platelets. ironic, unusual| +12941|98883|48884|2|48|90330.24|0.02|0.02|R|F|1993-06-24|1993-05-11|1993-07-11|NONE|SHIP|quiet packages abou| +12941|917194|4749|3|3|3633.45|0.00|0.06|R|F|1993-05-01|1993-04-15|1993-05-25|COLLECT COD|TRUCK|s the quickly ironic ideas. slyly unusual | +12942|575011|37523|1|29|31493.71|0.10|0.01|R|F|1993-02-14|1993-01-03|1993-03-08|NONE|SHIP|es. carefully regular accou| +12942|204921|17426|2|6|10955.46|0.04|0.06|A|F|1993-02-21|1993-01-05|1993-02-27|DELIVER IN PERSON|AIR|lly special accounts nag quic| +12942|93924|18927|3|10|19179.20|0.05|0.07|R|F|1993-02-26|1993-01-15|1993-03-20|COLLECT COD|SHIP|cording to the final, even ideas boost| +12942|566862|4396|4|22|42434.48|0.09|0.03|R|F|1993-02-25|1993-01-15|1993-02-26|NONE|FOB|s cajole fluffily regular requests| +12943|307507|32520|1|32|48463.68|0.03|0.03|R|F|1992-05-16|1992-03-21|1992-06-04|TAKE BACK RETURN|SHIP|s use blithely after the enticin| +12943|254005|29016|2|25|23974.75|0.02|0.07|R|F|1992-02-03|1992-04-10|1992-02-11|DELIVER IN PERSON|SHIP|fully final deposits. quickly bli| +12968|927385|39904|1|11|15535.74|0.08|0.02|R|F|1993-08-12|1993-09-29|1993-08-26|DELIVER IN PERSON|FOB| dependencies haggle about the bold,| +12968|553192|40726|2|19|23658.23|0.02|0.05|R|F|1993-08-28|1993-11-06|1993-09-03|TAKE BACK RETURN|RAIL| regular accounts sleep n| +12969|799630|24661|1|3|5188.80|0.01|0.02|R|F|1992-02-24|1992-04-13|1992-03-07|NONE|SHIP| express dependenc| +12969|375716|38224|2|39|69876.30|0.01|0.06|A|F|1992-05-15|1992-04-08|1992-06-14|TAKE BACK RETURN|FOB|ost quickly. furious| +12970|776677|39193|1|42|73652.88|0.06|0.00|R|F|1993-03-15|1993-04-07|1993-04-06|COLLECT COD|FOB|ructions along the furio| +12970|598815|48816|2|1|1913.79|0.02|0.01|R|F|1993-03-14|1993-03-06|1993-04-09|NONE|FOB|etect carefully a| +12970|278046|3057|3|46|47105.38|0.03|0.01|A|F|1993-02-21|1993-03-23|1993-03-11|COLLECT COD|RAIL|metimes bold theodolites thrash blithely d| +12970|117815|17816|4|41|75145.21|0.03|0.02|A|F|1993-03-15|1993-04-17|1993-04-03|DELIVER IN PERSON|RAIL|iously regular ins| +12971|518043|43064|1|6|6366.12|0.00|0.01|R|F|1993-03-21|1993-04-24|1993-03-25|COLLECT COD|REG AIR|ers. regular packages use | +12971|743419|18448|2|26|38021.88|0.08|0.05|R|F|1993-05-08|1993-03-31|1993-05-14|DELIVER IN PERSON|TRUCK|instructions against t| +12971|637222|49735|3|27|31298.13|0.09|0.03|R|F|1993-03-23|1993-04-11|1993-03-25|COLLECT COD|MAIL|yly final ideas. fluffily even| +12971|776752|26753|4|40|73148.80|0.08|0.05|A|F|1993-05-31|1993-04-08|1993-06-22|NONE|AIR|notornis believe c| +12971|858681|8682|5|46|75423.44|0.03|0.01|R|F|1993-04-23|1993-05-12|1993-04-25|TAKE BACK RETURN|AIR|cajole. unusual accounts slee| +12971|836568|49085|6|19|28585.88|0.07|0.00|A|F|1993-04-01|1993-04-21|1993-04-14|DELIVER IN PERSON|REG AIR|bold ideas are| +12971|195766|45767|7|32|59576.32|0.00|0.02|R|F|1993-04-03|1993-05-20|1993-04-23|DELIVER IN PERSON|REG AIR|to beans affix along the r| +12972|223967|23968|1|35|66183.25|0.08|0.02|A|F|1995-02-07|1995-02-16|1995-03-06|DELIVER IN PERSON|AIR|ironic patterns breach. unusual platele| +12972|196887|34397|2|40|79355.20|0.01|0.08|R|F|1995-04-19|1995-03-15|1995-04-30|NONE|AIR|wly regular accounts hang fluffily afte| +12972|78457|28458|3|20|28709.00|0.02|0.01|R|F|1995-01-08|1995-02-11|1995-01-15|NONE|FOB|eas. special ideas at the ironic ideas| +12972|619228|31741|4|25|28679.75|0.00|0.05|A|F|1995-01-23|1995-03-28|1995-02-13|DELIVER IN PERSON|TRUCK|ate furiously across the| +12973|872609|10161|1|29|45865.24|0.08|0.07|N|O|1995-09-08|1995-10-22|1995-09-13|TAKE BACK RETURN|REG AIR|ounts. blithely regular deposits are regul| +12973|925895|25896|2|27|51862.95|0.10|0.00|N|O|1995-09-01|1995-09-22|1995-09-29|TAKE BACK RETURN|FOB| final ideas. slyly final attainments haggl| +12973|504287|4288|3|6|7747.56|0.08|0.08|N|O|1995-10-13|1995-09-25|1995-10-30|DELIVER IN PERSON|RAIL|accounts are quickly | +12973|538603|13624|4|34|55813.72|0.01|0.07|N|O|1995-11-25|1995-08-28|1995-12-25|NONE|REG AIR|eodolites wa| +12973|290512|28028|5|31|46577.50|0.04|0.06|N|O|1995-11-21|1995-09-18|1995-11-22|COLLECT COD|TRUCK| gifts. even, even accou| +12974|579868|42380|1|5|9739.20|0.04|0.00|A|F|1994-07-27|1994-06-22|1994-08-02|TAKE BACK RETURN|TRUCK|onic dolphins. expr| +12974|835956|35957|2|13|24594.83|0.05|0.00|R|F|1994-09-16|1994-06-21|1994-09-23|TAKE BACK RETURN|RAIL|detect slyly even pinto| +12974|897931|35483|3|26|50151.14|0.00|0.06|A|F|1994-07-11|1994-06-23|1994-07-13|COLLECT COD|RAIL|ven excuses. furiously silent inst| +12974|512319|37340|4|30|39938.70|0.03|0.04|A|F|1994-08-05|1994-08-18|1994-08-14|DELIVER IN PERSON|AIR|l requests ha| +12974|536812|24343|5|37|68405.23|0.09|0.05|R|F|1994-08-09|1994-06-29|1994-09-03|COLLECT COD|SHIP|riously quick accounts are blithely| +12974|197324|22331|6|50|71066.00|0.02|0.03|R|F|1994-07-27|1994-06-21|1994-08-24|DELIVER IN PERSON|REG AIR|l, even packag| +12975|698045|48046|1|34|35462.34|0.02|0.03|R|F|1993-01-25|1992-11-21|1993-02-20|COLLECT COD|TRUCK| are carefully blithely regular excuses. fu| +12975|40309|27810|2|27|33731.10|0.02|0.03|R|F|1992-12-05|1992-12-16|1992-12-16|NONE|REG AIR|asymptotes. quickly ironic attainments ha| +13000|890647|3165|1|40|65504.00|0.02|0.03|R|F|1994-04-24|1994-04-16|1994-05-07|COLLECT COD|TRUCK|carefully pending ideas. final,| +13000|92885|30389|2|24|45069.12|0.07|0.03|R|F|1994-02-18|1994-05-16|1994-02-25|NONE|AIR|kages. caref| +13000|109238|34243|3|4|4988.92|0.08|0.06|R|F|1994-06-07|1994-03-18|1994-06-26|TAKE BACK RETURN|FOB|are according to the s| +13000|951580|39138|4|7|11420.78|0.09|0.07|R|F|1994-05-12|1994-05-05|1994-06-05|COLLECT COD|FOB|taphs about the regular deposits dazz| +13001|389635|14650|1|2|3449.24|0.00|0.07|N|O|1998-06-23|1998-07-06|1998-07-06|COLLECT COD|AIR|luffily final instructions boost careful| +13001|579450|4473|2|43|65765.49|0.07|0.02|N|O|1998-08-23|1998-09-02|1998-09-13|DELIVER IN PERSON|FOB| instruction| +13001|807336|44885|3|21|26109.09|0.03|0.05|N|O|1998-08-06|1998-07-05|1998-08-16|NONE|RAIL|al packages eat carefully theod| +13001|888071|25623|4|26|27534.78|0.01|0.06|N|O|1998-06-30|1998-08-29|1998-07-21|NONE|SHIP|, ironic sauternes doze fluf| +13001|796221|33767|5|16|21075.04|0.04|0.03|N|O|1998-09-15|1998-07-20|1998-09-23|NONE|REG AIR|ing to the fluffily | +13002|956708|6709|1|7|12352.62|0.10|0.05|A|F|1994-10-06|1994-11-04|1994-10-15|DELIVER IN PERSON|FOB| regular pinto beans nag busily past the n| +13002|386606|49114|2|20|33851.80|0.10|0.06|A|F|1994-10-31|1994-11-11|1994-11-28|TAKE BACK RETURN|SHIP|re. blithely final instruc| +13002|682896|7923|3|43|80790.98|0.10|0.02|A|F|1994-10-28|1994-10-20|1994-11-12|TAKE BACK RETURN|AIR|rouches use. carefully| +13002|421954|34463|4|45|84416.85|0.10|0.00|A|F|1994-12-22|1994-10-11|1995-01-11|DELIVER IN PERSON|FOB|ccording to the regular package| +13002|778297|3328|5|1|1375.26|0.03|0.06|R|F|1994-12-03|1994-11-19|1994-12-11|TAKE BACK RETURN|SHIP|iously special requests are fluffi| +13002|837194|24743|6|24|27147.60|0.08|0.05|A|F|1994-11-20|1994-10-04|1994-11-23|DELIVER IN PERSON|SHIP|cies wake. boldly even requests wake ab| +13003|11231|23732|1|3|3426.69|0.08|0.03|R|F|1993-07-10|1993-08-30|1993-08-03|NONE|REG AIR|iously ironic pe| +13003|749918|24947|2|35|68875.80|0.10|0.00|A|F|1993-07-18|1993-07-12|1993-07-20|DELIVER IN PERSON|REG AIR|he slyly unusual theodolites use slowly sl| +13004|242053|4558|1|46|45771.84|0.07|0.00|N|O|1995-08-31|1995-11-12|1995-09-02|COLLECT COD|RAIL|eans alongside of the | +13005|639711|39712|1|50|82534.00|0.03|0.02|N|O|1997-03-26|1997-04-11|1997-04-12|DELIVER IN PERSON|FOB|g to the ideas | +13005|608155|20668|2|50|53156.00|0.10|0.05|N|O|1997-02-07|1997-03-27|1997-02-14|NONE|TRUCK|ly regular instructions use s| +13005|260198|35209|3|18|20847.24|0.01|0.07|N|O|1997-05-15|1997-02-26|1997-05-16|NONE|FOB|unts engage quickly iron| +13006|306045|18552|1|42|44143.26|0.05|0.04|N|O|1995-08-23|1995-07-24|1995-09-07|TAKE BACK RETURN|RAIL| enticingly close packages against the ev| +13006|689223|14250|2|15|18182.85|0.04|0.01|A|F|1995-06-02|1995-07-13|1995-06-13|NONE|AIR|across the furiously bo| +13006|766691|4237|3|49|86125.34|0.01|0.00|N|O|1995-06-27|1995-08-15|1995-07-02|NONE|FOB|ly regular foxes beneath the blith| +13006|769738|32254|4|39|70500.30|0.03|0.07|N|O|1995-08-29|1995-08-02|1995-09-08|DELIVER IN PERSON|MAIL|ns wake ruthlessly. evenly unusual deposits| +13006|977602|40122|5|39|65502.84|0.01|0.00|N|O|1995-08-15|1995-07-09|1995-09-14|NONE|TRUCK|uses. regular, pending deposits across t| +13006|541582|41583|6|42|68189.52|0.09|0.01|N|O|1995-07-20|1995-07-14|1995-07-25|NONE|SHIP|e carefully regular instruct| +13006|364256|39271|7|30|39607.20|0.06|0.08|N|O|1995-08-05|1995-08-06|1995-08-20|COLLECT COD|MAIL|inst the ironic accounts. silen| +13007|49580|37081|1|21|32121.18|0.01|0.04|N|O|1996-10-23|1996-09-22|1996-11-01|NONE|FOB|egular packages wake b| +13007|289063|14074|2|6|6312.30|0.10|0.08|N|O|1996-07-26|1996-09-29|1996-07-28|COLLECT COD|TRUCK|y ironic braids wake carefully across | +13032|624875|37388|1|31|55795.04|0.06|0.06|N|O|1997-12-16|1998-02-03|1998-01-05|COLLECT COD|RAIL|ronic, ironic reque| +13032|272569|10085|2|5|7707.75|0.02|0.02|N|O|1998-01-22|1998-01-23|1998-02-14|DELIVER IN PERSON|REG AIR|tions haggle furiously blithely even | +13033|198927|23934|1|33|66855.36|0.04|0.08|N|O|1996-10-02|1996-09-05|1996-10-21|COLLECT COD|MAIL|r instructions are. final, even deposits | +13034|992697|5217|1|37|66217.05|0.03|0.03|A|F|1992-09-28|1992-09-10|1992-10-07|COLLECT COD|REG AIR|es. blithe| +13034|242084|17093|2|34|34886.38|0.05|0.04|R|F|1992-09-10|1992-08-10|1992-10-08|DELIVER IN PERSON|RAIL|ding to the ironic pack| +13034|694627|19654|3|19|30810.21|0.05|0.04|R|F|1992-07-26|1992-08-28|1992-08-11|COLLECT COD|AIR| even, regular dolphins| +13034|579677|42189|4|39|68509.35|0.00|0.03|R|F|1992-07-16|1992-08-13|1992-07-31|TAKE BACK RETURN|REG AIR|os. slyly even | +13035|291181|28697|1|26|30476.42|0.03|0.02|R|F|1995-03-01|1995-02-02|1995-03-06|DELIVER IN PERSON|REG AIR|sual epitaphs. furiously re| +13035|866648|16649|2|13|20989.80|0.05|0.06|A|F|1995-03-11|1994-12-25|1995-03-12|TAKE BACK RETURN|AIR|ously bold dolphins.| +13035|752657|27688|3|26|44450.12|0.03|0.06|R|F|1995-03-10|1995-01-24|1995-03-18|TAKE BACK RETURN|TRUCK|e blithely around th| +13035|898762|11280|4|30|52821.60|0.07|0.03|R|F|1995-03-10|1994-12-12|1995-03-14|TAKE BACK RETURN|AIR|auternes acr| +13035|486223|36224|5|37|44740.40|0.10|0.01|A|F|1995-02-08|1995-01-05|1995-03-10|TAKE BACK RETURN|AIR| to the spec| +13036|638263|25800|1|16|19219.68|0.08|0.02|R|F|1992-11-12|1992-12-23|1992-12-08|DELIVER IN PERSON|TRUCK| furiously b| +13036|272772|10288|2|21|36639.96|0.08|0.02|R|F|1992-11-11|1992-12-23|1992-11-27|DELIVER IN PERSON|TRUCK|efully express pains. blithely ir| +13036|477906|15434|3|34|64051.92|0.04|0.06|R|F|1993-01-21|1993-01-02|1993-02-06|DELIVER IN PERSON|AIR|arefully even acc| +13036|157652|45162|4|34|58128.10|0.10|0.01|A|F|1993-02-27|1993-01-22|1993-03-18|TAKE BACK RETURN|AIR|eans are carefully around the slyly | +13036|655983|43523|5|18|34901.10|0.07|0.02|A|F|1992-12-26|1992-12-01|1993-01-20|COLLECT COD|FOB| ironic theodolites. dependencies hin| +13036|104081|29086|6|35|37977.80|0.08|0.06|A|F|1993-02-27|1992-12-27|1993-02-28|TAKE BACK RETURN|AIR|deposits. regular deposits cajole a| +13037|352986|2987|1|41|83597.77|0.03|0.00|A|F|1993-05-28|1993-06-11|1993-06-02|TAKE BACK RETURN|RAIL|regular requests. ironically regular courts| +13037|628810|16347|2|39|67812.42|0.08|0.00|R|F|1993-06-29|1993-06-15|1993-07-08|COLLECT COD|RAIL|f the furiously even requests wake bli| +13037|408715|33732|3|39|63323.91|0.02|0.02|A|F|1993-04-27|1993-05-22|1993-05-27|COLLECT COD|MAIL|ent instructions sleep carefully a| +13037|266863|16864|4|3|5489.55|0.03|0.00|R|F|1993-06-25|1993-05-25|1993-07-25|COLLECT COD|TRUCK|y ironic pinto beans haggle slyly accord| +13037|166336|3846|5|50|70116.50|0.05|0.03|R|F|1993-05-05|1993-05-08|1993-05-07|NONE|MAIL|s. special ideas are| +13037|599527|37061|6|2|3253.00|0.06|0.06|R|F|1993-08-06|1993-06-22|1993-09-02|NONE|REG AIR|ests. slyly even | +13037|238367|38368|7|5|6526.75|0.08|0.06|A|F|1993-05-26|1993-05-10|1993-06-20|COLLECT COD|FOB|lar accounts haggle against the sly| +13038|217957|17958|1|41|76872.54|0.09|0.05|N|O|1996-10-31|1996-10-09|1996-11-24|DELIVER IN PERSON|TRUCK|ess slyly blithely silent packag| +13038|199901|24908|2|40|80036.00|0.05|0.06|N|O|1996-09-24|1996-09-08|1996-10-05|COLLECT COD|REG AIR|al requests. special, final asymptotes h| +13038|726117|38632|3|47|53724.76|0.01|0.00|N|O|1996-11-08|1996-09-06|1996-12-02|DELIVER IN PERSON|RAIL|final foxes. carefully special dependencie| +13038|839871|14904|4|25|45270.75|0.07|0.03|N|O|1996-10-02|1996-10-14|1996-10-11|NONE|SHIP|platelets. closely regu| +13039|978523|41043|1|30|48044.40|0.05|0.06|R|F|1994-01-05|1994-01-23|1994-01-08|TAKE BACK RETURN|REG AIR|ring accounts use blithely quickly f| +13064|692284|17311|1|41|52326.25|0.04|0.06|N|O|1997-03-25|1997-03-01|1997-03-27|NONE|MAIL|eposits. ironic pinto beans wa| +13064|206888|31897|2|2|3589.74|0.10|0.05|N|O|1996-12-04|1997-02-18|1996-12-28|NONE|TRUCK|eodolites; furiously| +13064|164497|2007|3|10|15614.90|0.07|0.02|N|O|1997-01-12|1997-01-20|1997-01-15|COLLECT COD|TRUCK|r the blithely final ideas thrash furiou| +13064|699870|24897|4|17|31787.28|0.08|0.03|N|O|1997-01-19|1997-01-28|1997-01-28|DELIVER IN PERSON|REG AIR|carefully pending dinos| +13064|714722|14723|5|24|41680.56|0.01|0.03|N|O|1997-03-04|1997-03-02|1997-03-15|NONE|SHIP|eas cajole slyl| +13064|331949|19468|6|35|69332.55|0.06|0.07|N|O|1997-02-01|1997-01-13|1997-02-26|NONE|SHIP|ual dependencies. ironic, express sen| +13065|356030|18538|1|11|11946.22|0.08|0.03|R|F|1995-04-06|1995-02-06|1995-05-02|NONE|FOB| beans against the quickly final plate| +13065|785247|10278|2|1|1332.21|0.08|0.01|R|F|1995-03-03|1995-02-23|1995-03-06|TAKE BACK RETURN|AIR|e slyly deposits. slyly final p| +13066|588274|38275|1|17|23158.25|0.05|0.00|N|O|1996-02-16|1996-02-06|1996-02-28|TAKE BACK RETURN|FOB| furiously unusual foxes. ac| +13066|112533|37538|2|1|1545.53|0.01|0.03|N|O|1996-03-23|1995-12-28|1996-03-26|NONE|REG AIR|l deposits. furiously final ideas da| +13066|339156|39157|3|10|11951.40|0.08|0.08|N|O|1995-12-31|1996-01-31|1996-01-27|DELIVER IN PERSON|FOB|er the ins| +13066|178756|16266|4|47|86233.25|0.08|0.04|N|O|1995-12-19|1996-01-28|1995-12-27|COLLECT COD|FOB|lithely slyly regular accou| +13066|347610|35129|5|35|58016.00|0.00|0.00|N|O|1995-11-29|1996-01-10|1995-12-24|NONE|MAIL|special depos| +13066|264987|2503|6|10|19519.70|0.09|0.04|N|O|1996-03-22|1996-02-22|1996-04-13|DELIVER IN PERSON|FOB|into beans. accounts use across the iro| +13067|813216|13217|1|18|20325.06|0.05|0.02|A|F|1995-04-07|1995-03-12|1995-04-13|TAKE BACK RETURN|REG AIR|oxes are across the regular p| +13067|720338|45367|2|41|55690.30|0.04|0.06|A|F|1995-05-08|1995-03-03|1995-05-11|DELIVER IN PERSON|MAIL|ular pinto beans.| +13067|717125|29640|3|47|53678.23|0.03|0.06|R|F|1995-03-24|1995-03-15|1995-04-19|NONE|SHIP|lar packages haggle slyly even a| +13067|707961|45504|4|8|15751.44|0.06|0.02|A|F|1995-04-11|1995-02-24|1995-04-22|COLLECT COD|FOB|ideas cajole furiously even theodoli| +13067|691932|4446|5|11|21162.90|0.02|0.02|R|F|1995-02-01|1995-02-22|1995-02-22|DELIVER IN PERSON|AIR|al requests. furiously even packages are | +13067|300680|13187|6|49|82352.83|0.02|0.00|R|F|1995-04-14|1995-03-04|1995-05-14|NONE|MAIL|ts haggle carefully across | +13067|514986|2517|7|16|32015.36|0.07|0.00|R|F|1995-04-11|1995-03-10|1995-04-25|TAKE BACK RETURN|AIR|hely ironic deposits haggle foxe| +13068|365449|27957|1|1|1514.43|0.01|0.02|A|F|1994-04-10|1994-02-27|1994-05-06|DELIVER IN PERSON|REG AIR|he fluffily regular foxes haggle pinto bean| +13068|99416|11918|2|38|53785.58|0.09|0.08|R|F|1994-01-28|1994-03-27|1994-02-17|COLLECT COD|AIR|uests print? regular, sil| +13068|872400|47435|3|3|4117.08|0.08|0.07|R|F|1994-04-14|1994-03-19|1994-04-26|NONE|FOB| sublate quickly against the blithely f| +13068|412739|37756|4|43|71023.53|0.06|0.08|A|F|1994-03-20|1994-02-26|1994-04-09|COLLECT COD|TRUCK|al requests. excuses affix a| +13068|901181|1182|5|21|24824.94|0.08|0.07|A|F|1994-03-21|1994-03-16|1994-04-01|NONE|FOB|ounts detect above the e| +13068|132339|19846|6|26|35654.58|0.10|0.00|R|F|1994-03-16|1994-03-11|1994-03-31|COLLECT COD|RAIL| carefully even pinto beans sleep. spec| +13068|208743|8744|7|10|16517.30|0.09|0.08|A|F|1994-04-18|1994-02-27|1994-05-15|DELIVER IN PERSON|SHIP|ccording to the quickly unusual th| +13069|339579|14592|1|43|69598.08|0.03|0.03|N|O|1997-04-10|1997-03-13|1997-04-12|COLLECT COD|FOB|uriously bold | +13069|301355|26368|2|31|42046.54|0.04|0.07|N|O|1997-04-06|1997-03-04|1997-04-08|COLLECT COD|MAIL| even, final as| +13069|863229|25747|3|47|56032.46|0.10|0.06|N|O|1997-05-15|1997-03-06|1997-05-19|COLLECT COD|SHIP| slowly ironic, regular escapades. i| +13069|289795|2301|4|2|3569.56|0.05|0.00|N|O|1997-03-10|1997-03-29|1997-03-21|TAKE BACK RETURN|MAIL|e carefully bold | +13069|572204|9738|5|2|2552.36|0.10|0.06|N|O|1997-03-14|1997-03-09|1997-03-16|NONE|MAIL|ithely regular courts along the final, pe| +13069|22339|34840|6|39|49191.87|0.04|0.03|N|O|1997-05-06|1997-03-24|1997-05-21|COLLECT COD|MAIL|deposits besides the brave, blithe dep| +13070|940315|15352|1|4|5421.08|0.06|0.07|N|O|1997-07-16|1997-06-06|1997-08-15|NONE|SHIP|ites are permanently | +13070|872894|22895|2|32|59739.20|0.10|0.05|N|O|1997-06-25|1997-06-20|1997-07-15|DELIVER IN PERSON|FOB|th the slyly special requests cajol| +13070|727067|2096|3|9|9846.27|0.00|0.02|N|O|1997-07-10|1997-05-26|1997-07-17|NONE|TRUCK|ions. idle foxes affix furiously. ironi| +13070|807339|7340|4|33|41127.57|0.10|0.04|N|O|1997-05-15|1997-05-02|1997-05-17|TAKE BACK RETURN|TRUCK|sly express | +13071|155032|17536|1|38|41307.14|0.03|0.03|N|O|1996-08-26|1996-08-20|1996-09-23|NONE|AIR|inal accounts cajole doggedly accoun| +13096|246406|8911|1|39|52743.21|0.00|0.02|N|O|1996-07-03|1996-04-30|1996-07-29|TAKE BACK RETURN|AIR|es are blithely after the pending| +13096|339542|39543|2|15|23722.95|0.04|0.08|N|O|1996-07-13|1996-04-22|1996-07-27|NONE|RAIL|equests. careful| +13096|668405|5945|3|15|20600.55|0.01|0.07|N|O|1996-07-01|1996-05-24|1996-07-17|NONE|SHIP|s use final requests. final,| +13096|876151|13703|4|8|9016.88|0.01|0.07|N|O|1996-05-16|1996-05-04|1996-05-30|TAKE BACK RETURN|REG AIR|arefully about the quickly regular request| +13096|464968|14969|5|32|61854.08|0.02|0.06|N|O|1996-05-16|1996-05-31|1996-06-09|COLLECT COD|AIR|, unusual foxes hang| +13097|334519|47026|1|25|38837.50|0.08|0.07|N|O|1997-08-16|1997-09-05|1997-08-23|COLLECT COD|REG AIR|heodolites. final| +13097|254024|16530|2|23|22494.23|0.06|0.07|N|O|1997-08-17|1997-08-12|1997-08-27|TAKE BACK RETURN|FOB|ly. blithely pending requests | +13097|367782|17783|3|46|85089.42|0.10|0.06|N|O|1997-09-28|1997-08-11|1997-09-30|TAKE BACK RETURN|SHIP|iously ruthle| +13097|309541|9542|4|8|12404.24|0.01|0.01|N|O|1997-08-13|1997-07-29|1997-09-10|COLLECT COD|TRUCK|ajole accor| +13097|454073|4074|5|9|9243.45|0.02|0.07|N|O|1997-08-21|1997-08-22|1997-09-01|COLLECT COD|RAIL| fluffily fi| +13098|57308|32311|1|34|43020.20|0.02|0.08|A|F|1992-05-04|1992-03-25|1992-05-21|TAKE BACK RETURN|FOB|uses according | +13098|170165|7675|2|12|14821.92|0.06|0.00|R|F|1992-02-16|1992-03-28|1992-03-09|TAKE BACK RETURN|AIR|ys express packages ru| +13098|960903|10904|3|43|84445.98|0.04|0.04|A|F|1992-02-29|1992-04-07|1992-03-02|COLLECT COD|REG AIR|indle slyly pinto beans. silent r| +13098|890595|3113|4|4|6342.20|0.04|0.04|A|F|1992-04-19|1992-03-08|1992-05-03|DELIVER IN PERSON|TRUCK|ons. carefully pending deposits integrate| +13098|215064|2577|5|10|9790.50|0.03|0.04|A|F|1992-03-14|1992-04-20|1992-03-23|NONE|AIR|nal, silent grouches are fluffily fi| +13099|85232|35233|1|12|14606.76|0.06|0.01|N|O|1995-09-28|1995-12-02|1995-10-17|COLLECT COD|FOB|r courts promise according to t| +13100|436205|23730|1|33|37658.94|0.08|0.08|R|F|1992-07-02|1992-06-05|1992-07-20|DELIVER IN PERSON|FOB|thely final deposits promise aft| +13100|292362|17373|2|6|8126.10|0.01|0.05|R|F|1992-04-25|1992-05-26|1992-05-03|TAKE BACK RETURN|AIR|. deposits use slyly after the ironic d| +13100|722038|34553|3|23|24380.00|0.06|0.05|A|F|1992-06-24|1992-05-01|1992-07-06|NONE|TRUCK|out the ideas cajole carefully bold escapa| +13100|279647|42153|4|49|79704.87|0.04|0.06|A|F|1992-06-02|1992-06-23|1992-06-27|TAKE BACK RETURN|TRUCK|hely against the accounts. fluffily regula| +13100|22696|10197|5|31|50179.39|0.08|0.06|A|F|1992-06-01|1992-06-14|1992-06-26|DELIVER IN PERSON|MAIL|ual courts. final,| +13101|334336|9349|1|1|1370.32|0.01|0.08|A|F|1994-07-14|1994-07-07|1994-07-21|NONE|TRUCK|. regular | +13101|170974|20975|2|7|14314.79|0.07|0.08|R|F|1994-08-17|1994-07-11|1994-08-25|TAKE BACK RETURN|AIR|ts use fluffily | +13101|555361|5362|3|36|50988.24|0.06|0.00|R|F|1994-06-05|1994-07-17|1994-07-01|DELIVER IN PERSON|REG AIR| regular dependencies are fluffily accordi| +13101|949364|11883|4|8|11306.56|0.04|0.00|A|F|1994-08-11|1994-06-28|1994-08-24|TAKE BACK RETURN|AIR| deposits. requests x-ra| +13102|724598|37113|1|37|60034.72|0.09|0.07|N|O|1995-06-28|1995-07-15|1995-07-01|NONE|AIR|ular, bold theodolites are | +13102|313385|38398|2|12|16780.44|0.06|0.08|N|F|1995-06-11|1995-06-02|1995-06-19|NONE|RAIL|ully silent deposit| +13102|48456|10957|3|14|19662.30|0.02|0.08|N|O|1995-07-06|1995-06-14|1995-07-15|TAKE BACK RETURN|FOB|ajole regular, express deposits. sl| +13102|383404|20926|4|1|1487.39|0.10|0.07|A|F|1995-04-28|1995-07-14|1995-05-26|NONE|TRUCK|c foxes believe. r| +13102|858176|8177|5|31|35158.03|0.01|0.02|A|F|1995-06-13|1995-06-05|1995-06-15|COLLECT COD|SHIP|y final deposits. unusual, regular pinto be| +13102|356979|44501|6|19|38683.24|0.01|0.00|N|O|1995-07-06|1995-06-28|1995-07-08|DELIVER IN PERSON|AIR|kly; quickly express accounts haggle c| +13102|737673|12702|7|20|34212.80|0.03|0.06|N|O|1995-07-27|1995-05-28|1995-08-20|COLLECT COD|RAIL|d the carefully ironic pinto beans sle| +13103|59160|9161|1|42|47004.72|0.05|0.05|A|F|1994-02-15|1993-12-14|1994-02-19|TAKE BACK RETURN|AIR|furiously furious| +13103|290353|15364|2|13|17463.42|0.07|0.08|A|F|1994-02-15|1994-01-25|1994-02-28|NONE|TRUCK| deposits boost carefully even exc| +13103|956342|31381|3|11|15381.30|0.01|0.01|A|F|1994-01-24|1993-12-07|1994-02-04|DELIVER IN PERSON|AIR|e ideas. ironic| +13103|223372|10885|4|40|51814.40|0.05|0.08|R|F|1993-12-22|1994-01-06|1993-12-23|TAKE BACK RETURN|AIR|pecial acc| +13103|200884|885|5|8|14278.96|0.07|0.03|A|F|1994-03-06|1994-02-05|1994-03-11|TAKE BACK RETURN|RAIL|nts detect quickly accordi| +13103|253147|28158|6|43|47305.59|0.06|0.07|R|F|1993-12-03|1994-01-17|1993-12-27|COLLECT COD|MAIL|ending forges unwin| +13128|768801|43832|1|3|5609.31|0.04|0.05|N|O|1997-12-05|1997-12-01|1997-12-16|NONE|FOB|even waters haggle furiously among the sly| +13128|231009|43514|2|21|19739.79|0.00|0.05|N|O|1997-10-24|1997-10-14|1997-11-07|TAKE BACK RETURN|SHIP|boost blithely pending pack| +13128|564140|26652|3|6|7224.72|0.03|0.03|N|O|1997-12-07|1997-11-16|1997-12-20|NONE|SHIP|es haggle dolphins! fluffi| +13128|500843|13354|4|36|66377.52|0.02|0.06|N|O|1997-11-03|1997-10-23|1997-12-03|NONE|SHIP|lay alongside of the blithely| +13129|383598|33599|1|50|84079.00|0.07|0.08|R|F|1993-02-05|1993-03-15|1993-02-15|DELIVER IN PERSON|FOB| asymptotes wake. carefully bold requ| +13130|251722|14228|1|24|40169.04|0.00|0.04|N|O|1995-10-31|1995-09-19|1995-11-16|COLLECT COD|AIR|gular instructions. express realms a| +13130|676451|26452|2|29|41395.18|0.03|0.04|N|O|1995-07-31|1995-08-17|1995-08-13|DELIVER IN PERSON|TRUCK| pending braids breach quickly| +13130|104769|29774|3|7|12416.32|0.08|0.08|N|O|1995-09-20|1995-08-13|1995-10-10|DELIVER IN PERSON|SHIP|out the slyly bold requests. carefully | +13130|844262|44263|4|26|31361.72|0.09|0.06|N|O|1995-08-06|1995-09-08|1995-08-30|DELIVER IN PERSON|REG AIR|nto beans boost furi| +13130|509855|22366|5|25|46620.75|0.07|0.08|N|O|1995-07-06|1995-09-09|1995-07-09|COLLECT COD|MAIL|pecial mul| +13130|129081|41584|6|3|3330.24|0.04|0.02|N|O|1995-07-09|1995-08-09|1995-07-23|DELIVER IN PERSON|TRUCK|latelets nag c| +13131|42361|17362|1|22|28673.92|0.08|0.01|A|F|1994-12-06|1994-09-24|1994-12-09|COLLECT COD|REG AIR|al packages.| +13131|956015|18535|2|2|2141.94|0.06|0.04|R|F|1994-11-15|1994-11-16|1994-12-12|TAKE BACK RETURN|RAIL|arefully ironic instruction| +13131|738910|38911|3|7|13642.16|0.06|0.00|R|F|1994-10-31|1994-09-25|1994-11-24|TAKE BACK RETURN|RAIL|about the slyly final d| +13131|859701|34736|4|2|3321.32|0.00|0.07|R|F|1994-09-19|1994-10-06|1994-10-10|NONE|REG AIR|ing the blithely final accounts.| +13131|978328|15886|5|40|56251.20|0.08|0.00|R|F|1994-09-01|1994-10-22|1994-09-17|COLLECT COD|REG AIR| slyly final asymptotes. accounts haggl| +13132|858884|8885|1|37|68185.08|0.09|0.02|R|F|1993-06-09|1993-05-12|1993-07-04|COLLECT COD|MAIL|sts along the carefu| +13132|249570|49571|2|37|56223.72|0.02|0.05|A|F|1993-03-20|1993-04-14|1993-04-14|NONE|AIR|ironic requests sleep.| +13132|509797|22308|3|37|66850.49|0.02|0.00|R|F|1993-06-07|1993-04-12|1993-06-25|COLLECT COD|AIR|ccounts are. | +13132|148923|36430|4|48|94652.16|0.09|0.08|A|F|1993-06-04|1993-05-30|1993-07-03|NONE|FOB| accounts are after t| +13132|932918|20473|5|48|93641.76|0.01|0.03|R|F|1993-06-06|1993-04-09|1993-06-28|COLLECT COD|RAIL|ecial pinto beans nag.| +13133|35631|35632|1|46|72064.98|0.04|0.05|A|F|1994-11-01|1994-11-23|1994-11-29|COLLECT COD|REG AIR|ular accoun| +13133|849123|36672|2|14|15009.12|0.09|0.00|A|F|1994-09-08|1994-10-14|1994-09-09|DELIVER IN PERSON|MAIL|egular multipliers| +13134|842192|42193|1|48|54439.20|0.10|0.05|N|O|1998-10-20|1998-08-01|1998-11-13|COLLECT COD|REG AIR|ven pinto beans. frays alongside of the s| +13135|995414|32972|1|40|60374.80|0.03|0.07|N|O|1998-08-24|1998-10-28|1998-09-02|COLLECT COD|FOB|regular theodolites. fluffily th| +13135|909457|47012|2|3|4399.23|0.02|0.03|N|O|1998-08-23|1998-10-28|1998-08-31|TAKE BACK RETURN|TRUCK|ss deposits| +13135|238398|38399|3|5|6681.90|0.03|0.08|N|O|1998-09-17|1998-09-05|1998-10-13|COLLECT COD|AIR|es above the silent, ironic instr| +13135|749031|11546|4|21|22680.00|0.03|0.03|N|O|1998-11-18|1998-10-05|1998-12-13|TAKE BACK RETURN|REG AIR|fully special ideas are furiousl| +13135|959591|34630|5|26|42914.30|0.09|0.00|N|O|1998-11-27|1998-09-01|1998-12-22|NONE|AIR|s boost after the carefull| +13160|684692|22232|1|40|67066.40|0.05|0.05|N|O|1997-10-26|1998-01-03|1997-11-16|DELIVER IN PERSON|RAIL| around the blithely special reque| +13160|615782|40807|2|2|3395.50|0.10|0.02|N|O|1997-12-30|1997-11-21|1998-01-27|TAKE BACK RETURN|MAIL|sts. depos| +13160|434980|34981|3|45|86173.20|0.04|0.06|N|O|1998-01-01|1997-12-14|1998-01-10|TAKE BACK RETURN|MAIL|ngly. quickly regula| +13160|701615|26644|4|22|35564.76|0.06|0.02|N|O|1998-02-09|1997-12-21|1998-02-17|DELIVER IN PERSON|SHIP|osits hang about the fluffily special in| +13160|36011|11012|5|5|4735.05|0.01|0.03|N|O|1997-12-06|1997-12-25|1997-12-19|DELIVER IN PERSON|TRUCK|blithely busy| +13160|235245|35246|6|46|54290.58|0.04|0.02|N|O|1998-01-30|1997-12-08|1998-02-23|COLLECT COD|MAIL|carefully carefully express package| +13161|150378|12882|1|28|39994.36|0.08|0.00|A|F|1992-05-06|1992-04-19|1992-05-13|COLLECT COD|RAIL|ar packages play q| +13161|388264|25786|2|35|47328.75|0.08|0.03|A|F|1992-04-26|1992-03-01|1992-05-25|NONE|FOB|. final, express instruct| +13161|536529|11550|3|46|72013.00|0.07|0.06|R|F|1992-03-10|1992-03-12|1992-03-31|DELIVER IN PERSON|SHIP|ronic somas haggl| +13161|438453|38454|4|24|33394.32|0.04|0.05|R|F|1992-03-20|1992-04-13|1992-03-29|DELIVER IN PERSON|RAIL|fully express foxes. carefull| +13161|72908|22909|5|42|78997.80|0.07|0.08|R|F|1992-03-15|1992-03-09|1992-03-20|NONE|RAIL|. quickly regula| +13161|348253|48254|6|10|13012.40|0.10|0.01|A|F|1992-04-16|1992-03-17|1992-05-15|NONE|AIR|counts along the pe| +13162|150536|38046|1|22|34903.66|0.09|0.07|N|O|1997-08-15|1997-07-27|1997-08-22|TAKE BACK RETURN|MAIL|y final deposits c| +13162|45660|45661|2|38|61015.08|0.07|0.03|N|O|1997-08-09|1997-07-14|1997-08-14|COLLECT COD|MAIL|hely regular foxes. | +13162|403267|40792|3|28|32766.72|0.06|0.06|N|O|1997-06-11|1997-07-22|1997-06-20|TAKE BACK RETURN|AIR|nusual accounts. pinto beans sleep; even t| +13162|691972|16999|4|25|49098.50|0.01|0.01|N|O|1997-08-18|1997-08-03|1997-09-12|DELIVER IN PERSON|SHIP|inal ideas | +13162|973301|10859|5|29|39853.54|0.10|0.01|N|O|1997-05-14|1997-06-14|1997-06-10|TAKE BACK RETURN|MAIL|arefully ironic notornis. slyly expre| +13162|267113|4629|6|28|30242.80|0.10|0.04|N|O|1997-08-03|1997-07-12|1997-08-22|DELIVER IN PERSON|TRUCK| pending instructions. express ideas sle| +13162|353655|28670|7|3|5125.92|0.02|0.06|N|O|1997-07-19|1997-07-09|1997-07-21|COLLECT COD|FOB|ding to the bl| +13163|867704|17705|1|2|3343.32|0.07|0.05|N|F|1995-06-16|1995-05-19|1995-06-25|TAKE BACK RETURN|TRUCK|odolites about the ev| +13163|487085|49595|2|39|41810.34|0.01|0.02|R|F|1995-04-24|1995-06-16|1995-05-09|TAKE BACK RETURN|FOB| carefully among the final | +13163|422090|9615|3|43|43519.01|0.00|0.01|R|F|1995-04-21|1995-06-10|1995-05-13|NONE|AIR|quickly ironic waters affix. fluffil| +13163|56632|44136|4|7|11120.41|0.01|0.04|N|O|1995-06-19|1995-06-16|1995-06-29|COLLECT COD|TRUCK|nic requests. evenly sp| +13163|802701|2702|5|44|70561.04|0.02|0.07|N|O|1995-07-17|1995-05-07|1995-07-22|COLLECT COD|AIR|al pinto beans aff| +13163|979750|42270|6|17|31105.07|0.08|0.05|N|O|1995-07-02|1995-05-01|1995-07-20|NONE|REG AIR|regular dependencies. quickly final| +13164|620401|45426|1|21|27748.77|0.07|0.02|N|O|1996-11-06|1996-10-31|1996-11-23|COLLECT COD|REG AIR|furiously across the carefully bold| +13164|64494|14495|2|16|23335.84|0.00|0.04|N|O|1996-09-16|1996-10-17|1996-10-06|COLLECT COD|REG AIR| carefully final pinto beans. slyly| +13164|944536|7055|3|45|71122.05|0.00|0.06|N|O|1996-09-27|1996-10-27|1996-10-01|COLLECT COD|FOB|ly special| +13164|803099|40648|4|27|27055.35|0.02|0.07|N|O|1996-11-23|1996-09-19|1996-12-11|COLLECT COD|AIR|ep quickly carefully final| +13164|675639|666|5|11|17760.60|0.08|0.08|N|O|1996-12-06|1996-10-16|1997-01-05|DELIVER IN PERSON|MAIL|ts. packages print carefully final| +13164|463470|38489|6|50|71672.50|0.02|0.00|N|O|1996-10-19|1996-09-21|1996-11-12|COLLECT COD|TRUCK|; blithely iron| +13165|478112|15640|1|33|35972.97|0.02|0.03|R|F|1994-03-27|1994-06-02|1994-04-19|TAKE BACK RETURN|SHIP| haggle across the regular acco| +13165|618340|18341|2|40|50332.40|0.06|0.01|A|F|1994-05-24|1994-04-23|1994-06-21|TAKE BACK RETURN|SHIP|sly regular req| +13166|738247|762|1|7|8996.47|0.03|0.04|N|O|1995-12-14|1995-10-24|1996-01-12|NONE|AIR|latelets could have to sleep slyly. package| +13166|703962|41505|2|35|68807.55|0.06|0.07|N|O|1995-10-15|1995-11-18|1995-10-16|DELIVER IN PERSON|MAIL|y above the| +13167|925666|25667|1|12|20299.44|0.09|0.04|A|F|1994-06-11|1994-05-03|1994-07-05|NONE|REG AIR|uriously across the blithe| +13167|666040|28554|2|48|48288.48|0.02|0.03|R|F|1994-06-26|1994-05-26|1994-07-05|NONE|AIR|ss the regular, ironic packages. regular, p| +13167|118853|6360|3|42|78617.70|0.00|0.01|R|F|1994-06-05|1994-04-29|1994-06-21|TAKE BACK RETURN|RAIL|fily. furiously ironic packages cajole furi| +13192|980049|17607|1|24|27096.00|0.03|0.04|N|O|1997-09-14|1997-09-05|1997-09-27|DELIVER IN PERSON|AIR|equests. pending deposits | +13192|669161|31675|2|18|20342.34|0.00|0.02|N|O|1997-09-10|1997-09-23|1997-09-17|COLLECT COD|RAIL| ironic platelets could have| +13193|13004|25505|1|48|44016.00|0.06|0.04|N|O|1997-05-19|1997-08-01|1997-05-24|DELIVER IN PERSON|MAIL| quickly above the idly express courts. | +13193|543481|18502|2|21|32013.66|0.05|0.01|N|O|1997-06-26|1997-07-25|1997-07-15|TAKE BACK RETURN|AIR|longside of the carefully| +13193|275346|12862|3|42|55495.86|0.01|0.04|N|O|1997-08-22|1997-06-24|1997-09-12|NONE|TRUCK|usual ideas. regular, even ideas | +13194|533861|21392|1|45|85267.80|0.07|0.04|N|O|1998-01-27|1998-01-01|1998-02-12|TAKE BACK RETURN|AIR|fy asymptotes.| +13194|601778|14291|2|30|50392.20|0.08|0.06|N|O|1998-01-02|1998-01-28|1998-01-18|TAKE BACK RETURN|FOB|uickly pending | +13194|81507|6510|3|49|72936.50|0.01|0.05|N|O|1998-02-09|1998-01-23|1998-02-18|NONE|SHIP|s. pending pinto| +13194|883402|20954|4|47|65111.92|0.08|0.07|N|O|1998-03-07|1998-02-20|1998-03-30|DELIVER IN PERSON|TRUCK|pecial dependencies after| +13194|327313|27314|5|17|22785.10|0.09|0.00|N|O|1998-02-10|1998-01-24|1998-02-18|COLLECT COD|REG AIR|lar somas. requests sleep blith| +13194|137711|214|6|3|5246.13|0.05|0.08|N|O|1998-02-09|1998-01-13|1998-02-15|NONE|REG AIR|foxes cajole slyly alongside of the sly| +13194|508085|8086|7|18|19675.08|0.04|0.04|N|O|1998-02-08|1998-01-26|1998-03-08|COLLECT COD|AIR| packages. depen| +13195|372365|47380|1|21|30184.35|0.03|0.05|R|F|1992-06-29|1992-08-05|1992-07-23|NONE|AIR|al theodolites dazz| +13195|322752|22753|2|40|70989.60|0.10|0.02|R|F|1992-08-09|1992-07-13|1992-08-24|COLLECT COD|SHIP|wake doggedly. regular| +13195|490790|3300|3|10|17807.70|0.00|0.07|R|F|1992-09-20|1992-08-24|1992-10-02|COLLECT COD|MAIL|sits. quickly ironic deposits a| +13196|428358|15883|1|42|54025.86|0.06|0.02|N|O|1996-09-12|1996-09-25|1996-09-13|COLLECT COD|MAIL|t the carefully re| +13196|412546|71|2|29|42297.08|0.05|0.07|N|O|1996-09-03|1996-10-20|1996-09-09|DELIVER IN PERSON|AIR|ut the regular acc| +13196|652298|14812|3|4|5001.04|0.00|0.03|N|O|1996-09-28|1996-10-20|1996-10-04|DELIVER IN PERSON|RAIL|ptotes along the r| +13196|165725|15726|4|8|14325.76|0.06|0.06|N|O|1996-08-27|1996-09-26|1996-09-13|COLLECT COD|MAIL|lly ironic excuses sl| +13197|525801|38312|1|41|74897.98|0.10|0.03|A|F|1993-02-10|1993-03-03|1993-02-28|COLLECT COD|TRUCK|kages wake quickly agai| +13198|392589|17604|1|43|72307.51|0.06|0.03|N|F|1995-05-24|1995-04-30|1995-06-23|DELIVER IN PERSON|RAIL|o haggle quickly quickly pend| +13198|232817|32818|2|49|85740.20|0.02|0.07|A|F|1995-04-19|1995-03-18|1995-04-30|COLLECT COD|FOB|bold courts. foxes along t| +13198|941222|3741|3|45|56843.10|0.03|0.05|A|F|1995-02-19|1995-03-16|1995-03-15|DELIVER IN PERSON|REG AIR|ely special courts haggle slyly ironic | +13198|114835|39840|4|33|61044.39|0.02|0.02|A|F|1995-02-10|1995-03-07|1995-03-02|NONE|MAIL|s doubt slyly. carefully even theo| +13198|16392|41393|5|5|6541.95|0.10|0.00|A|F|1995-04-29|1995-04-12|1995-05-22|NONE|MAIL|sly even instructions. blithely bold th| +13198|483972|33973|6|36|70414.20|0.05|0.01|A|F|1995-06-03|1995-04-05|1995-06-11|COLLECT COD|FOB|ily pending accounts. carefully| +13199|314392|39405|1|42|59067.96|0.09|0.00|N|O|1996-07-27|1996-07-27|1996-07-29|COLLECT COD|FOB|urts. iron| +13199|972635|22636|2|28|47812.52|0.02|0.01|N|O|1996-06-21|1996-09-04|1996-07-05|TAKE BACK RETURN|TRUCK| deposits about t| +13224|202954|40467|1|34|63135.96|0.07|0.07|N|O|1998-10-11|1998-09-27|1998-11-07|TAKE BACK RETURN|AIR|otes doubt fluffily ironic courts. fina| +13224|36522|36523|2|24|35004.48|0.01|0.01|N|O|1998-10-13|1998-09-16|1998-11-12|NONE|RAIL|er the slyly unusu| +13225|898852|23887|1|34|62927.54|0.03|0.07|N|O|1995-10-25|1995-11-19|1995-11-08|DELIVER IN PERSON|MAIL|sly furious packages cajole slyly| +13225|997612|47613|2|47|80349.79|0.07|0.06|N|O|1996-01-05|1995-10-11|1996-01-09|COLLECT COD|RAIL|pending request| +13225|862121|49673|3|4|4332.32|0.09|0.00|N|O|1995-10-25|1995-10-20|1995-11-05|NONE|AIR|xpress packages. fluffily iron| +13225|665846|40873|4|31|56166.11|0.00|0.08|N|O|1995-10-31|1995-12-05|1995-11-24|COLLECT COD|FOB|lly regular| +13226|178713|3720|1|17|30459.07|0.04|0.00|R|F|1995-01-04|1995-02-25|1995-01-30|NONE|TRUCK|refully furious deposit| +13226|615781|28294|2|5|8483.75|0.04|0.04|R|F|1995-02-16|1995-02-26|1995-02-28|TAKE BACK RETURN|SHIP|haggle furiously | +13227|659988|47528|1|39|75970.05|0.10|0.02|N|O|1996-05-14|1996-06-19|1996-05-29|DELIVER IN PERSON|MAIL|usual packages? slyly even account| +13227|409988|9989|2|41|77816.36|0.03|0.00|N|O|1996-04-17|1996-05-31|1996-05-14|NONE|FOB|n accounts wake slyly. busily ironic | +13227|652363|14877|3|11|14468.63|0.04|0.01|N|O|1996-04-27|1996-05-23|1996-05-18|COLLECT COD|MAIL|e slowly even ideas. regular, even as| +13227|251673|14179|4|10|16246.60|0.01|0.01|N|O|1996-04-15|1996-06-08|1996-05-02|TAKE BACK RETURN|TRUCK|egular, even packages. quickly unusual | +13227|853187|40739|5|42|47885.88|0.03|0.07|N|O|1996-07-04|1996-05-10|1996-07-15|TAKE BACK RETURN|REG AIR|ven requests. slyl| +13227|513296|25807|6|9|11783.43|0.00|0.00|N|O|1996-05-23|1996-05-29|1996-06-19|NONE|TRUCK|ts; carefully even | +13228|643828|18853|1|28|49610.12|0.02|0.01|N|O|1998-06-28|1998-06-17|1998-07-10|TAKE BACK RETURN|RAIL|ully about the iron| +13228|810611|35644|2|49|74556.93|0.08|0.02|N|O|1998-06-08|1998-07-08|1998-07-08|TAKE BACK RETURN|REG AIR|ular theodolites-- dependenci| +13228|926660|1697|3|40|67464.80|0.05|0.05|N|O|1998-04-18|1998-06-08|1998-04-21|DELIVER IN PERSON|RAIL|. carefully even requests wake blithely| +13228|372137|22138|4|8|9672.96|0.05|0.00|N|O|1998-07-03|1998-07-09|1998-07-29|COLLECT COD|SHIP|ainst the express dependencies ha| +13228|497583|35111|5|20|31611.20|0.07|0.06|N|O|1998-06-23|1998-07-09|1998-06-26|TAKE BACK RETURN|AIR|gle slyly among the carefully | +13228|870684|8236|6|28|46329.92|0.03|0.03|N|O|1998-05-25|1998-07-13|1998-06-07|COLLECT COD|AIR| carefully regular pinto| +13229|11295|11296|1|15|18094.35|0.00|0.00|N|O|1996-02-11|1996-03-03|1996-02-13|NONE|FOB|bold requests x-ray blithely among the | +13229|829416|41933|2|9|12108.33|0.01|0.01|N|O|1996-01-14|1996-02-02|1996-01-31|DELIVER IN PERSON|FOB| final instructions| +13229|994419|6939|3|43|65074.91|0.04|0.01|N|O|1996-01-11|1996-03-12|1996-01-14|DELIVER IN PERSON|RAIL|ests believe in place of the fu| +13229|184005|34006|4|38|41382.00|0.09|0.06|N|O|1996-01-19|1996-01-25|1996-01-31|TAKE BACK RETURN|TRUCK| ideas: sly| +13230|153012|3013|1|19|20235.19|0.06|0.03|R|F|1992-10-29|1992-11-25|1992-11-09|COLLECT COD|SHIP|equests. pending accounts c| +13230|667302|17303|2|47|59655.69|0.04|0.07|A|F|1993-01-08|1992-12-16|1993-01-09|NONE|AIR|wake alongside of the | +13231|205488|5489|1|12|16721.64|0.08|0.06|A|F|1992-09-07|1992-07-26|1992-09-11|TAKE BACK RETURN|TRUCK|ymptotes use furiously ironic, ironic| +13231|624939|12476|2|19|35414.10|0.06|0.02|R|F|1992-06-27|1992-08-19|1992-06-29|NONE|REG AIR|es sleep carefully: final ideas haggle d| +13231|337565|72|3|32|51281.60|0.08|0.02|R|F|1992-07-29|1992-07-14|1992-08-14|DELIVER IN PERSON|RAIL|heodolites aft| +13256|563988|26500|1|46|94390.16|0.02|0.04|R|F|1994-02-23|1994-03-05|1994-03-14|NONE|MAIL|e requests. furiously ir| +13256|936212|36213|2|23|28707.91|0.04|0.00|A|F|1994-03-28|1994-03-04|1994-04-13|DELIVER IN PERSON|RAIL|ly ironic instructions| +13256|904017|29054|3|13|13272.61|0.00|0.00|R|F|1994-04-20|1994-03-28|1994-05-17|COLLECT COD|FOB|accounts. f| +13256|805892|43441|4|30|53935.50|0.03|0.00|R|F|1994-04-14|1994-03-12|1994-05-05|NONE|REG AIR|blithely regular multipli| +13256|622976|48001|5|10|18989.40|0.00|0.07|A|F|1994-04-14|1994-03-02|1994-04-20|DELIVER IN PERSON|MAIL|ly along the ironic,| +13256|354803|17311|6|21|39013.59|0.05|0.00|R|F|1994-01-31|1994-04-04|1994-02-26|DELIVER IN PERSON|MAIL|riously even accounts about the| +13257|745969|45970|1|32|64477.76|0.02|0.03|R|F|1993-06-06|1993-05-31|1993-06-24|NONE|AIR|ccounts. furiously brave accounts sleep. ca| +13257|496353|33881|2|49|66117.17|0.04|0.02|R|F|1993-05-11|1993-06-07|1993-05-13|NONE|REG AIR|arefully final| +13257|194457|44458|3|36|55852.20|0.00|0.07|R|F|1993-07-24|1993-05-29|1993-08-02|TAKE BACK RETURN|FOB|lly regular r| +13257|237535|25048|4|12|17670.24|0.08|0.08|R|F|1993-05-29|1993-06-05|1993-06-02|COLLECT COD|SHIP|ecial instructions haggle q| +13257|245564|8069|5|47|70948.85|0.03|0.06|A|F|1993-07-04|1993-06-30|1993-08-03|DELIVER IN PERSON|RAIL|ests are slyly furiously re| +13257|181342|6349|6|36|51240.24|0.09|0.07|A|F|1993-04-21|1993-07-12|1993-05-09|TAKE BACK RETURN|MAIL|lly above the slyly reg| +13258|135298|35299|1|44|58664.76|0.08|0.02|R|F|1993-06-08|1993-07-27|1993-07-02|COLLECT COD|AIR|d accounts| +13258|947613|47614|2|30|49817.10|0.08|0.07|A|F|1993-08-23|1993-08-18|1993-09-18|TAKE BACK RETURN|TRUCK|ly according to| +13258|523801|23802|3|30|54743.40|0.00|0.02|R|F|1993-08-10|1993-07-03|1993-08-22|COLLECT COD|TRUCK|aggle carefu| +13259|342454|17467|1|27|40403.88|0.02|0.07|R|F|1992-03-07|1992-03-27|1992-03-28|COLLECT COD|RAIL|solve slyly furio| +13259|622814|22815|2|34|59050.52|0.01|0.08|R|F|1992-03-07|1992-04-20|1992-03-31|COLLECT COD|SHIP|nts print. fluffily ironic| +13259|633254|45767|3|33|39178.26|0.04|0.07|A|F|1992-04-21|1992-03-14|1992-05-15|NONE|SHIP|ly special requ| +13259|91617|29121|4|15|24129.15|0.02|0.07|A|F|1992-04-17|1992-02-26|1992-05-02|TAKE BACK RETURN|RAIL|equests across the slyly pending th| +13259|795624|33170|5|29|49868.11|0.06|0.04|R|F|1992-04-21|1992-03-16|1992-04-23|NONE|FOB|equests detect s| +13260|151122|26129|1|2|2346.24|0.00|0.07|N|O|1996-12-30|1997-02-08|1997-01-04|TAKE BACK RETURN|SHIP|hy, regular theodolites n| +13260|903677|3678|2|40|67225.20|0.01|0.06|N|O|1997-03-26|1997-01-07|1997-04-13|TAKE BACK RETURN|AIR|ounts use furiously acco| +13260|85834|48336|3|37|67333.71|0.07|0.00|N|O|1997-02-12|1997-03-03|1997-02-15|COLLECT COD|AIR|ckly regular warthogs. bo| +13260|599756|12268|4|9|16701.57|0.02|0.05|N|O|1997-03-11|1997-03-05|1997-03-16|NONE|MAIL|nic, silent pinto beans are sl| +13260|92971|42972|5|47|92306.59|0.10|0.05|N|O|1997-01-01|1997-01-19|1997-01-25|DELIVER IN PERSON|FOB|ss the packages integrate along the| +13261|795841|8357|1|2|3873.62|0.05|0.08|R|F|1992-05-22|1992-04-12|1992-06-14|COLLECT COD|RAIL|breach slyly ironic theodolites. furio| +13261|695805|8319|2|35|63026.95|0.08|0.08|A|F|1992-06-01|1992-03-12|1992-06-21|DELIVER IN PERSON|SHIP|the furiously blithe packages. fin| +13261|381918|19440|3|41|81995.90|0.03|0.06|R|F|1992-02-05|1992-04-21|1992-02-17|COLLECT COD|SHIP|tegrate. unusual instructions kindle| +13261|881430|6465|4|7|9879.73|0.07|0.08|A|F|1992-04-22|1992-05-04|1992-04-25|COLLECT COD|REG AIR|unts snooze alongside of the b| +13261|184486|9493|5|4|6281.92|0.00|0.03|R|F|1992-04-22|1992-04-21|1992-05-08|TAKE BACK RETURN|MAIL|uriously special warthogs nag sly| +13262|305100|5101|1|45|49729.05|0.04|0.03|A|F|1992-11-04|1992-09-04|1992-11-18|DELIVER IN PERSON|RAIL|kly? always regular requests play blithel| +13262|805380|5381|2|27|34704.18|0.08|0.01|A|F|1992-09-02|1992-10-20|1992-09-24|TAKE BACK RETURN|FOB|esides the carefully unus| +13262|11059|48560|3|18|17460.90|0.04|0.08|R|F|1992-08-05|1992-10-23|1992-08-31|NONE|AIR|gly silent dependencies. furiousl| +13262|855789|43341|4|6|10468.44|0.09|0.06|A|F|1992-08-11|1992-10-19|1992-08-30|TAKE BACK RETURN|AIR|uctions cajole blithely. carefully even t| +13263|636679|11704|1|18|29081.52|0.09|0.01|N|O|1997-02-19|1997-02-27|1997-02-25|DELIVER IN PERSON|REG AIR|ounts integra| +13263|659102|46642|2|47|49870.29|0.00|0.00|N|O|1997-02-12|1997-03-16|1997-02-16|TAKE BACK RETURN|AIR|cording to the final dependencie| +13263|519334|31845|3|34|46012.54|0.01|0.03|N|O|1997-04-20|1997-03-10|1997-04-27|DELIVER IN PERSON|SHIP|s. carefully regular platelets abo| +13288|523969|36480|1|29|57795.26|0.02|0.03|A|F|1995-02-04|1994-11-12|1995-03-03|DELIVER IN PERSON|MAIL|thily final foxes| +13288|333858|46365|2|47|88916.48|0.05|0.08|R|F|1995-01-31|1994-11-28|1995-02-07|TAKE BACK RETURN|REG AIR|onic accounts thrash car| +13289|306671|31684|1|32|53685.12|0.08|0.02|N|O|1997-05-19|1997-06-10|1997-05-22|TAKE BACK RETURN|SHIP|regularly blit| +13289|214931|27436|2|50|92296.00|0.01|0.04|N|O|1997-04-06|1997-05-30|1997-05-01|COLLECT COD|FOB|ully pendi| +13289|332578|20097|3|26|41874.56|0.07|0.04|N|O|1997-07-10|1997-04-26|1997-08-01|DELIVER IN PERSON|AIR|gle. fluffil| +13289|634374|34375|4|48|62800.32|0.08|0.04|N|O|1997-06-05|1997-06-09|1997-07-05|NONE|TRUCK| dependenci| +13290|495061|45062|1|12|12672.48|0.07|0.03|R|F|1994-01-23|1994-02-12|1994-02-05|TAKE BACK RETURN|REG AIR|urts. final, final in| +13291|760040|47586|1|48|52800.48|0.06|0.02|A|F|1994-07-27|1994-07-18|1994-08-17|COLLECT COD|TRUCK| packages haggle slyly final i| +13291|985925|35926|2|34|68369.92|0.06|0.06|A|F|1994-05-08|1994-06-02|1994-06-05|NONE|MAIL|usual requests. d| +13291|432611|32612|3|39|60200.01|0.09|0.08|A|F|1994-08-11|1994-07-15|1994-09-01|COLLECT COD|FOB| pending accounts sleep furiously furiously| +13291|881620|19172|4|4|6406.32|0.01|0.08|R|F|1994-06-28|1994-06-09|1994-07-06|TAKE BACK RETURN|MAIL|es. special ideas boost quickly slowly bold| +13291|372198|34706|5|22|27943.96|0.04|0.05|R|F|1994-08-11|1994-07-22|1994-09-08|COLLECT COD|TRUCK|quests cajole f| +13292|338433|13446|1|48|70628.16|0.01|0.04|A|F|1993-06-25|1993-05-29|1993-06-28|DELIVER IN PERSON|RAIL|ual pinto beans boost thinly| +13293|566849|16850|1|47|90043.54|0.06|0.03|N|O|1998-06-09|1998-05-04|1998-07-07|DELIVER IN PERSON|SHIP|st the slyly even reque| +13293|25111|37612|2|30|31083.30|0.03|0.04|N|O|1998-05-02|1998-05-19|1998-05-07|TAKE BACK RETURN|RAIL|. final, unusual theodol| +13293|28667|41168|3|8|12765.28|0.01|0.00|N|O|1998-07-02|1998-05-28|1998-07-26|COLLECT COD|FOB|ggle into the packages. quiet instruc| +13293|795565|20596|4|30|49815.90|0.09|0.04|N|O|1998-03-13|1998-06-06|1998-03-18|COLLECT COD|FOB|r instructions. furiously r| +13293|57726|32729|5|1|1683.72|0.03|0.02|N|O|1998-05-26|1998-06-04|1998-06-23|COLLECT COD|MAIL|ep unusual, ironic package| +13294|26005|26006|1|44|40964.00|0.06|0.06|N|O|1997-07-25|1997-10-03|1997-08-18|DELIVER IN PERSON|AIR|unts. bravely regular requests boo| +13294|62073|37076|2|48|49683.36|0.00|0.01|N|O|1997-08-19|1997-09-14|1997-09-12|NONE|SHIP|thely ironic courts above the bl| +13295|465843|15844|1|17|30749.94|0.05|0.08|R|F|1994-11-22|1994-12-28|1994-12-09|NONE|AIR| blithely ironic brai| +13295|413757|38774|2|14|23390.22|0.06|0.04|R|F|1995-02-22|1994-12-04|1995-03-07|COLLECT COD|SHIP|g blithely. bold accounts breach about| +13295|443|25444|3|19|25525.36|0.05|0.02|A|F|1995-01-17|1995-01-12|1995-02-01|TAKE BACK RETURN|TRUCK|to nag. quickly ironic requests sleep ste| +13295|443394|5903|4|29|38783.73|0.01|0.08|R|F|1995-02-08|1995-01-13|1995-02-09|TAKE BACK RETURN|REG AIR|ecial, special pack| +13295|118019|5526|5|40|41480.40|0.04|0.03|A|F|1994-11-27|1995-01-19|1994-12-10|NONE|SHIP|ses wake. furi| +13320|805417|30450|1|43|56861.91|0.10|0.03|N|O|1998-02-02|1998-02-16|1998-02-25|DELIVER IN PERSON|REG AIR|eposits maintain carefully even p| +13320|637505|25042|2|24|34619.28|0.00|0.04|N|O|1998-02-14|1998-02-14|1998-03-08|DELIVER IN PERSON|TRUCK|ounts until the slyly iro| +13321|251318|13824|1|35|44425.50|0.00|0.00|N|O|1995-06-26|1995-07-14|1995-07-26|NONE|REG AIR|sts use carefu| +13321|887866|25418|2|14|25953.48|0.03|0.06|N|F|1995-05-29|1995-07-25|1995-06-23|DELIVER IN PERSON|AIR|press account| +13322|589301|1813|1|35|48659.80|0.05|0.05|N|O|1997-11-12|1998-01-01|1997-11-20|DELIVER IN PERSON|TRUCK| carefully regular deposits beyond th| +13322|379468|29469|2|50|77372.50|0.00|0.06|N|O|1997-11-17|1997-12-23|1997-12-14|NONE|FOB|ily pending packages ar| +13323|44784|19785|1|50|86439.00|0.08|0.07|N|O|1997-07-23|1997-05-27|1997-08-20|NONE|AIR|arefully spec| +13323|680794|30795|2|40|70990.40|0.01|0.00|N|O|1997-06-30|1997-06-11|1997-07-22|COLLECT COD|REG AIR|ly after the quietly fin| +13323|91798|29302|3|3|5369.37|0.09|0.06|N|O|1997-07-01|1997-06-08|1997-07-11|TAKE BACK RETURN|TRUCK|inal pinto beans are carefull| +13324|118873|6380|1|16|30269.92|0.04|0.01|N|O|1997-02-19|1997-02-18|1997-02-21|COLLECT COD|FOB|thely upon the final, eve| +13324|885194|35195|2|25|29478.75|0.01|0.05|N|O|1997-03-15|1997-02-13|1997-04-10|TAKE BACK RETURN|SHIP|equests haggle sl| +13325|188213|13220|1|35|45542.35|0.10|0.07|N|O|1996-12-30|1997-02-12|1997-01-25|COLLECT COD|SHIP|l dolphins sleep furiously c| +13325|284773|34774|2|21|36912.96|0.09|0.06|N|O|1997-01-01|1997-01-28|1997-01-12|TAKE BACK RETURN|TRUCK| regular accounts slee| +13325|170509|8019|3|12|18954.00|0.03|0.04|N|O|1997-01-06|1997-03-17|1997-01-12|NONE|REG AIR|furiously ironic instructions nag. asy| +13325|736725|11754|4|48|84561.12|0.10|0.06|N|O|1997-03-03|1997-02-01|1997-04-01|DELIVER IN PERSON|SHIP|ts affix requests| +13325|120555|33058|5|39|61446.45|0.04|0.08|N|O|1997-02-26|1997-01-26|1997-03-17|TAKE BACK RETURN|MAIL| the blithely final requests. pending ac| +13325|164817|2327|6|47|88445.07|0.00|0.00|N|O|1997-03-17|1997-02-18|1997-03-26|NONE|FOB|ithely even pac| +13325|71953|21954|7|36|69298.20|0.03|0.01|N|O|1997-02-01|1997-02-01|1997-02-12|TAKE BACK RETURN|MAIL|e even grouches. carefully ironic | +13326|304806|42325|1|26|47080.54|0.00|0.07|R|F|1992-07-27|1992-09-23|1992-08-05|DELIVER IN PERSON|AIR|ll have to kindle | +13326|869946|32464|2|29|55561.10|0.08|0.06|A|F|1992-08-26|1992-09-10|1992-08-31|COLLECT COD|TRUCK|n accounts sleep slyl| +13326|177251|39755|3|45|59771.25|0.00|0.05|R|F|1992-09-12|1992-09-19|1992-09-21|DELIVER IN PERSON|MAIL|s about th| +13326|49927|49928|4|29|54430.68|0.01|0.02|A|F|1992-10-18|1992-09-19|1992-11-02|DELIVER IN PERSON|TRUCK|uthlessly bold ideas. blithely final ide| +13326|122416|34919|5|4|5753.64|0.08|0.01|R|F|1992-07-26|1992-08-27|1992-08-02|TAKE BACK RETURN|REG AIR|ts. slyly unusual reque| +13326|438816|26341|6|38|66682.02|0.04|0.03|A|F|1992-08-23|1992-08-30|1992-09-16|TAKE BACK RETURN|AIR|old deposits. carefully e| +13326|179542|4549|7|7|11350.78|0.03|0.05|A|F|1992-09-28|1992-10-12|1992-10-19|TAKE BACK RETURN|REG AIR|ns. special theodoli| +13327|548980|48981|1|26|52752.96|0.06|0.01|N|O|1997-11-21|1997-09-10|1997-12-01|DELIVER IN PERSON|RAIL|iously bold depo| +13327|706809|44352|2|48|87156.96|0.10|0.04|N|O|1997-09-20|1997-09-10|1997-10-16|DELIVER IN PERSON|RAIL|ongside of the regular packages. expre| +13327|337071|12084|3|1|1108.06|0.08|0.06|N|O|1997-09-22|1997-10-16|1997-09-25|DELIVER IN PERSON|AIR| cajole. blithely regular asymptotes acro| +13327|141392|16397|4|3|4300.17|0.04|0.01|N|O|1997-09-14|1997-10-20|1997-09-19|NONE|FOB|deposits boost. carefully | +13327|373828|36336|5|21|39938.01|0.02|0.03|N|O|1997-11-16|1997-10-15|1997-11-28|NONE|AIR|y regular theodolites boost pending | +13352|797916|47917|1|11|22152.68|0.01|0.01|N|O|1996-03-28|1996-01-22|1996-04-15|NONE|MAIL|s cajole above t| +13352|571413|21414|2|34|50469.26|0.01|0.04|N|O|1996-03-11|1996-01-29|1996-04-09|DELIVER IN PERSON|REG AIR|kly around the slyly fi| +13353|971403|33923|1|19|28012.84|0.06|0.05|N|O|1997-03-10|1997-05-13|1997-03-25|DELIVER IN PERSON|SHIP|except the bold, even fox| +13353|354153|41675|2|40|48285.60|0.05|0.01|N|O|1997-04-04|1997-04-20|1997-05-03|NONE|RAIL|ickly ironic requests according t| +13353|237966|25479|3|41|78061.95|0.05|0.03|N|O|1997-05-15|1997-04-11|1997-05-22|COLLECT COD|FOB|quests snooze quickly abo| +13353|493815|31343|4|2|3617.58|0.09|0.01|N|O|1997-03-05|1997-03-19|1997-03-07|DELIVER IN PERSON|RAIL|ironic requests serve fluffily regu| +13353|536151|11172|5|32|37988.16|0.07|0.06|N|O|1997-04-02|1997-03-30|1997-04-10|NONE|AIR|ound the furiously r| +13354|734732|9761|1|3|5300.10|0.04|0.07|A|F|1992-12-04|1992-12-19|1992-12-27|NONE|RAIL| the quickly express excuses nag about the | +13354|632953|45466|2|11|20745.12|0.00|0.01|R|F|1992-12-11|1992-11-06|1993-01-07|DELIVER IN PERSON|FOB|ingly special accounts could h| +13354|40768|3269|3|38|64932.88|0.09|0.08|A|F|1992-10-29|1992-12-23|1992-11-14|NONE|AIR| deposits use quickl| +13354|174054|36558|4|48|54146.40|0.06|0.05|R|F|1992-09-26|1992-10-30|1992-10-01|COLLECT COD|MAIL|ly special reques| +13354|323280|48293|5|3|3909.81|0.03|0.03|A|F|1992-10-17|1992-11-14|1992-11-09|COLLECT COD|RAIL|s. regular requests along the slyly final d| +13355|746310|33853|1|27|36619.56|0.01|0.05|R|F|1992-10-21|1992-10-10|1992-10-29|NONE|RAIL|metimes ex| +13355|231180|43685|2|25|27779.25|0.08|0.04|R|F|1992-11-06|1992-11-05|1992-11-11|TAKE BACK RETURN|RAIL| the carefully regular excuses. regula| +13355|429484|4501|3|16|22615.36|0.00|0.03|R|F|1992-10-29|1992-10-15|1992-11-25|COLLECT COD|AIR|thely among the carefully iro| +13356|407142|44667|1|28|29375.36|0.10|0.08|A|F|1993-10-02|1993-12-06|1993-10-06|NONE|REG AIR| asymptotes| +13357|298448|10954|1|45|65089.35|0.06|0.01|A|F|1992-05-20|1992-06-03|1992-06-08|COLLECT COD|REG AIR|refully bold theodolites. bold, ironic| +13357|10125|35126|2|47|48650.64|0.01|0.00|R|F|1992-07-16|1992-05-02|1992-07-18|TAKE BACK RETURN|AIR|n, final ideas | +13357|157822|45332|3|23|43235.86|0.03|0.07|R|F|1992-07-24|1992-05-21|1992-08-12|NONE|MAIL|carefully express dependencies haggle bl| +13357|500845|38376|4|27|49837.14|0.06|0.03|R|F|1992-04-09|1992-05-23|1992-05-06|NONE|SHIP|, ironic instructions. deposits across the | +13357|695457|45458|5|42|61001.64|0.00|0.01|R|F|1992-06-05|1992-05-08|1992-06-07|TAKE BACK RETURN|AIR| dinos detect| +13358|921308|33827|1|38|50511.88|0.05|0.00|N|O|1997-09-02|1997-10-06|1997-09-27|DELIVER IN PERSON|AIR| furiously ironic depos| +13358|416068|16069|2|20|19680.80|0.03|0.00|N|O|1997-11-24|1997-11-04|1997-12-13|TAKE BACK RETURN|TRUCK| carefully pending packages. deposits s| +13358|843724|18757|3|21|35021.28|0.04|0.04|N|O|1997-12-11|1997-11-07|1997-12-17|DELIVER IN PERSON|FOB|eposits. b| +13358|454323|29342|4|47|60033.10|0.06|0.08|N|O|1997-09-03|1997-11-04|1997-09-20|TAKE BACK RETURN|REG AIR|nag fluffily along the f| +13358|805159|42708|5|11|11705.21|0.00|0.04|N|O|1997-08-27|1997-10-13|1997-09-26|DELIVER IN PERSON|MAIL|lyly even packages u| +13358|301962|14469|6|50|98197.50|0.00|0.00|N|O|1997-11-13|1997-10-25|1997-11-18|NONE|REG AIR|lly regular courts. car| +13359|492898|30426|1|50|94543.50|0.00|0.03|R|F|1993-06-26|1993-05-28|1993-07-21|DELIVER IN PERSON|MAIL|lar asymptotes. slyly final plat| +13359|136533|24040|2|41|64350.73|0.02|0.08|R|F|1993-06-07|1993-05-11|1993-07-02|DELIVER IN PERSON|MAIL|y unusual pinto beans integrate alon| +13359|698331|10845|3|41|54501.30|0.02|0.06|A|F|1993-07-04|1993-05-12|1993-07-11|NONE|MAIL|ackages boost slyly idea| +13359|842217|4734|4|18|20865.06|0.06|0.00|A|F|1993-04-17|1993-05-16|1993-04-26|TAKE BACK RETURN|SHIP| ideas cajol| +13359|133452|20959|5|11|16339.95|0.02|0.05|A|F|1993-06-17|1993-05-25|1993-06-24|NONE|TRUCK|thily unusu| +13359|916122|41159|6|33|37556.64|0.09|0.00|R|F|1993-05-14|1993-05-14|1993-05-24|NONE|RAIL|ependencies are slyly slyly silent | +13359|246116|33629|7|46|48856.60|0.03|0.07|R|F|1993-04-17|1993-05-07|1993-05-17|DELIVER IN PERSON|MAIL|ecial deposits haggle blithely| +13384|458603|46131|1|44|68709.52|0.08|0.00|R|F|1992-11-08|1992-09-07|1992-12-06|DELIVER IN PERSON|REG AIR|hinly after the even, e| +13385|236755|36756|1|46|77820.04|0.00|0.07|A|F|1994-08-01|1994-06-24|1994-08-14|NONE|AIR|lets after th| +13385|126393|13900|2|18|25549.02|0.00|0.05|A|F|1994-07-17|1994-07-03|1994-08-09|DELIVER IN PERSON|TRUCK|ymptotes are| +13385|280909|43415|3|30|56696.70|0.06|0.04|A|F|1994-05-30|1994-06-15|1994-06-08|COLLECT COD|MAIL|uriously. silently regular pinto b| +13386|661085|23599|1|29|30335.45|0.05|0.00|R|F|1993-08-08|1993-07-31|1993-08-31|COLLECT COD|REG AIR|s cajole furiously under the final depos| +13386|846229|33778|2|26|30554.68|0.03|0.08|R|F|1993-09-24|1993-08-02|1993-10-24|TAKE BACK RETURN|TRUCK|lly fluffy| +13386|563767|13768|3|10|18307.40|0.07|0.03|R|F|1993-08-22|1993-08-29|1993-08-29|TAKE BACK RETURN|RAIL|counts. enticingly brav| +13386|218139|43148|4|28|29599.36|0.02|0.07|A|F|1993-10-05|1993-09-14|1993-10-21|DELIVER IN PERSON|AIR|the ironic requests thras| +13386|247004|34517|5|6|5705.94|0.00|0.05|R|F|1993-10-10|1993-08-26|1993-10-25|DELIVER IN PERSON|REG AIR| even dugouts sleep carefully packag| +13387|623326|48351|1|31|38727.99|0.06|0.00|N|O|1996-09-06|1996-09-28|1996-10-02|COLLECT COD|SHIP|theodolites wake slyly. deposits detect| +13387|232955|20468|2|46|86845.24|0.02|0.05|N|O|1996-09-06|1996-09-27|1996-09-24|NONE|AIR|ackages. ironic platelets sleep above the | +13387|260144|35155|3|6|6624.78|0.03|0.04|N|O|1996-09-28|1996-09-28|1996-10-19|NONE|RAIL|ding to the final accounts boost furious| +13387|235310|35311|4|18|22415.40|0.01|0.05|N|O|1996-11-07|1996-10-08|1996-11-13|TAKE BACK RETURN|TRUCK| quickly. un| +13388|45464|7965|1|19|26779.74|0.07|0.07|N|O|1998-01-20|1997-10-26|1998-02-14|NONE|RAIL|ithely final attainments. un| +13388|104241|41748|2|43|53545.32|0.03|0.06|N|O|1997-09-29|1997-11-21|1997-10-29|NONE|FOB|ts whithout the final accounts wake fur| +13388|962750|308|3|35|63444.85|0.09|0.06|N|O|1997-10-09|1997-12-10|1997-11-06|TAKE BACK RETURN|FOB|luffily. ironic deposits during the fu| +13388|928652|16207|4|11|18486.71|0.01|0.03|N|O|1997-11-23|1997-12-16|1997-12-08|COLLECT COD|TRUCK|haggle across the furiously regular i| +13388|852953|15471|5|2|3811.82|0.04|0.05|N|O|1998-01-13|1997-12-04|1998-02-02|TAKE BACK RETURN|RAIL|te carefully according to the fluffily fin| +13389|911146|23665|1|37|42812.70|0.03|0.03|N|O|1997-11-14|1997-10-28|1997-11-24|NONE|FOB|egular deposit| +13389|614583|39608|2|48|71882.40|0.01|0.05|N|O|1997-12-18|1997-11-03|1997-12-21|TAKE BACK RETURN|TRUCK|kly pending platelets integrate fluffily. r| +13390|986460|48980|1|12|18557.04|0.06|0.06|N|O|1995-10-22|1995-11-19|1995-11-11|DELIVER IN PERSON|MAIL|ns. furiously bold patterns lose fluf| +13390|421900|46917|2|34|61943.92|0.00|0.06|N|O|1995-11-09|1995-12-03|1995-11-23|TAKE BACK RETURN|TRUCK|al instructions wake fluffi| +13390|869703|32221|3|12|20071.92|0.04|0.08|N|O|1995-11-03|1995-12-17|1995-12-01|NONE|RAIL|le foxes are never according to the fi| +13390|89218|1720|4|30|36216.30|0.08|0.06|N|O|1995-12-02|1996-01-15|1995-12-06|COLLECT COD|AIR|nding deposits grow alongsid| +13390|470131|32641|5|22|24224.42|0.06|0.02|N|O|1995-12-15|1995-11-23|1996-01-05|TAKE BACK RETURN|MAIL|uffy plate| +13390|482815|45325|6|38|68316.02|0.09|0.05|N|O|1995-11-10|1996-01-08|1995-11-17|NONE|FOB|nusual deposits. slyly bold warhorse| +13390|670257|7797|7|25|30680.50|0.00|0.02|N|O|1996-02-06|1996-01-17|1996-02-14|TAKE BACK RETURN|REG AIR|s about the deposits wake furiously amon| +13391|7985|32986|1|21|39752.58|0.02|0.00|A|F|1994-10-10|1994-07-18|1994-10-22|NONE|TRUCK|haggle slyly final pinto beans.| +13391|188635|26145|2|15|25854.45|0.01|0.04|R|F|1994-09-26|1994-07-20|1994-10-13|NONE|AIR|pecial requests. bl| +13416|205542|30551|1|37|53558.61|0.08|0.05|N|O|1998-05-23|1998-06-04|1998-06-07|DELIVER IN PERSON|MAIL|across the regular deposits. inst| +13416|528063|28064|2|20|21820.80|0.09|0.05|N|O|1998-08-05|1998-06-04|1998-08-09|TAKE BACK RETURN|FOB|p blithely al| +13416|140628|15633|3|28|46721.36|0.04|0.00|N|O|1998-06-29|1998-07-18|1998-07-10|DELIVER IN PERSON|FOB|haggle blithely. fluffily| +13417|277476|39982|1|20|29069.20|0.07|0.06|N|O|1998-05-01|1998-06-06|1998-05-29|DELIVER IN PERSON|MAIL|es sleep slyly about the slyly fin| +13418|194664|32174|1|21|36931.86|0.07|0.03|N|O|1997-07-08|1997-07-11|1997-07-18|TAKE BACK RETURN|MAIL| packages | +13418|701729|1730|2|7|12114.83|0.05|0.05|N|O|1997-06-15|1997-07-23|1997-06-30|TAKE BACK RETURN|TRUCK|al instructions sleep slyly fur| +13418|948267|10786|3|29|38141.38|0.05|0.00|N|O|1997-06-23|1997-06-22|1997-07-08|NONE|TRUCK|ke furiously slyl| +13418|520711|45732|4|5|8658.45|0.10|0.01|N|O|1997-07-10|1997-08-13|1997-07-20|DELIVER IN PERSON|REG AIR|ns wake blithely. care| +13419|929321|4358|1|44|59412.32|0.04|0.03|A|F|1994-10-18|1994-09-18|1994-10-31|DELIVER IN PERSON|FOB|cial dependencies sleep furi| +13419|84756|9759|2|1|1740.75|0.01|0.02|R|F|1994-09-09|1994-08-30|1994-09-18|COLLECT COD|SHIP|ular asymptotes around the blithely final p| +13419|483504|46014|3|39|58011.72|0.04|0.08|R|F|1994-08-13|1994-09-01|1994-08-16|COLLECT COD|TRUCK|lyly. fluff| +13419|235573|35574|4|45|67885.20|0.08|0.05|R|F|1994-08-30|1994-10-02|1994-09-10|COLLECT COD|MAIL|usual deposits. slyly r| +13419|264422|39433|5|12|16636.92|0.05|0.08|R|F|1994-10-10|1994-09-13|1994-10-23|NONE|AIR|rts above the slyly express requests boos| +13420|321109|46122|1|41|46333.69|0.04|0.05|R|F|1994-08-07|1994-06-09|1994-08-19|NONE|SHIP|asymptotes. bravely bold request| +13420|868598|43633|2|25|39163.75|0.03|0.05|A|F|1994-07-24|1994-07-05|1994-08-21|NONE|RAIL|quests cajole care| +13420|521900|9431|3|49|94172.12|0.06|0.00|R|F|1994-08-09|1994-06-06|1994-09-05|TAKE BACK RETURN|FOB|s haggle carefully in place of the furiousl| +13421|320194|20195|1|13|15784.34|0.08|0.00|A|F|1992-07-23|1992-05-29|1992-08-07|NONE|FOB|x slyly bold, special theodolites. ca| +13421|492201|42202|2|39|46534.02|0.10|0.04|R|F|1992-06-27|1992-06-22|1992-07-10|DELIVER IN PERSON|MAIL|ual pinto beans. bl| +13421|413375|13376|3|37|47668.95|0.08|0.05|A|F|1992-04-09|1992-05-14|1992-05-08|DELIVER IN PERSON|AIR|he blithely ironic foxes. carefu| +13422|186119|36120|1|33|39768.63|0.01|0.02|N|O|1997-08-08|1997-07-04|1997-08-21|NONE|FOB|ial dependencies sleep packages. bli| +13422|92752|42753|2|14|24426.50|0.05|0.07|N|O|1997-06-10|1997-05-13|1997-06-29|COLLECT COD|RAIL|er the even e| +13422|878496|41014|3|10|14744.50|0.04|0.03|N|O|1997-08-04|1997-06-27|1997-08-26|NONE|SHIP|ding to the | +13422|867364|17365|4|4|5325.28|0.08|0.00|N|O|1997-05-09|1997-05-29|1997-05-13|DELIVER IN PERSON|AIR| pinto beans integra| +13423|671715|21716|1|11|18553.48|0.00|0.04|R|F|1992-09-10|1992-06-20|1992-10-10|COLLECT COD|REG AIR|s. carefully bold instructions are caref| +13423|499535|37063|2|27|41431.77|0.06|0.07|R|F|1992-07-26|1992-07-30|1992-08-14|NONE|TRUCK|e furiously thin deposits nag blithely| +13423|675952|979|3|40|77116.80|0.10|0.01|R|F|1992-06-15|1992-06-13|1992-06-24|TAKE BACK RETURN|FOB|quickly express dependencies. slyl| +13423|712812|25327|4|14|25546.92|0.07|0.06|A|F|1992-07-26|1992-08-01|1992-07-31|DELIVER IN PERSON|FOB|y across the furious| +13423|214783|39792|5|40|67910.80|0.00|0.00|R|F|1992-07-25|1992-06-21|1992-08-19|NONE|SHIP| deposits along th| +13448|735071|35072|1|48|53089.92|0.04|0.05|N|O|1997-07-12|1997-07-04|1997-08-01|NONE|TRUCK| accounts haggle fluffi| +13448|332515|45022|2|15|23212.50|0.00|0.05|N|O|1997-08-24|1997-06-20|1997-09-12|TAKE BACK RETURN|RAIL|structions. pending ideas serve carefully.| +13448|566521|16522|3|37|58737.50|0.06|0.06|N|O|1997-08-02|1997-07-04|1997-08-26|NONE|FOB|y even pac| +13449|35113|22614|1|2|2096.22|0.08|0.01|A|F|1992-04-06|1992-05-10|1992-04-09|TAKE BACK RETURN|TRUCK|the excuses. | +13449|140104|2607|2|9|10296.90|0.01|0.03|A|F|1992-06-14|1992-05-10|1992-06-30|TAKE BACK RETURN|SHIP|ly. regular platelets| +13449|716331|3874|3|15|20209.50|0.06|0.01|R|F|1992-06-01|1992-04-13|1992-06-04|TAKE BACK RETURN|RAIL|fter the pend| +13449|362773|295|4|37|67923.12|0.07|0.04|R|F|1992-06-02|1992-05-12|1992-06-10|DELIVER IN PERSON|RAIL| regular deposits i| +13450|581205|43717|1|43|55305.74|0.00|0.02|N|O|1997-05-20|1997-05-29|1997-06-14|DELIVER IN PERSON|TRUCK|ual requests boost carefully about t| +13450|310134|47653|2|9|10297.08|0.07|0.00|N|O|1997-03-22|1997-06-03|1997-04-12|DELIVER IN PERSON|FOB|. theodolites throug| +13450|415749|3274|3|15|24970.80|0.07|0.06|N|O|1997-05-30|1997-04-12|1997-06-22|NONE|REG AIR|althy foxes. final, pending courts boo| +13451|876833|1868|1|50|90489.50|0.08|0.01|N|O|1998-09-01|1998-07-25|1998-09-05|DELIVER IN PERSON|REG AIR|equests. c| +13451|924674|12229|2|35|59452.05|0.02|0.04|N|O|1998-09-21|1998-08-07|1998-09-27|COLLECT COD|FOB|indle regular, fina| +13452|59521|9522|1|38|56259.76|0.05|0.06|N|O|1997-04-14|1997-04-27|1997-04-22|COLLECT COD|RAIL|eposits haggle carefully p| +13452|363694|1216|2|25|43942.00|0.04|0.07|N|O|1997-04-03|1997-03-22|1997-04-18|DELIVER IN PERSON|TRUCK|alongside of the bold requests mold fu| +13453|861430|48982|1|3|4174.17|0.07|0.08|N|O|1996-07-31|1996-10-15|1996-08-18|NONE|SHIP|g to the furi| +13453|39946|14947|2|15|28289.10|0.04|0.06|N|O|1996-08-06|1996-09-18|1996-08-27|NONE|FOB|ly special instructions haggle carefully a| +13453|368034|18035|3|47|51794.94|0.01|0.05|N|O|1996-09-06|1996-10-16|1996-10-02|TAKE BACK RETURN|AIR|unusual excuses ca| +13453|535022|22553|4|11|11627.00|0.01|0.07|N|O|1996-09-18|1996-09-24|1996-10-01|NONE|AIR|theodolites; packages cajole carefully! b| +13453|100504|505|5|32|48144.00|0.08|0.00|N|O|1996-09-30|1996-09-26|1996-10-03|NONE|FOB|nts. even deposits wake furiously | +13454|687089|49603|1|28|30129.40|0.03|0.01|A|F|1993-08-11|1993-06-13|1993-08-28|NONE|RAIL|lly slyly bold accounts. regular requests b| +13454|891741|29293|2|3|5198.10|0.07|0.03|A|F|1993-07-17|1993-07-04|1993-07-20|DELIVER IN PERSON|REG AIR| express theodol| +13454|490331|15350|3|43|56816.33|0.05|0.05|A|F|1993-06-22|1993-07-14|1993-07-13|TAKE BACK RETURN|FOB|lly unusual depo| +13454|987826|12865|4|17|32534.26|0.02|0.08|R|F|1993-06-08|1993-06-07|1993-06-26|TAKE BACK RETURN|SHIP|y. special instructions a| +13454|382464|44972|5|44|68043.80|0.00|0.06|R|F|1993-07-07|1993-06-16|1993-07-25|DELIVER IN PERSON|RAIL|t accounts| +13454|66441|41444|6|11|15481.84|0.00|0.02|A|F|1993-06-26|1993-07-15|1993-07-22|TAKE BACK RETURN|REG AIR|ounts use deposits. pinto beans sleep reg| +13455|542761|30292|1|17|30663.58|0.03|0.07|N|O|1995-09-30|1995-11-06|1995-10-11|DELIVER IN PERSON|MAIL|y ideas affi| +13455|168970|18971|2|49|99909.53|0.09|0.00|N|O|1995-11-06|1995-10-20|1995-11-09|DELIVER IN PERSON|AIR|ng the even deposits integrate busi| +13455|869392|31910|3|19|25865.65|0.03|0.06|N|O|1995-09-30|1995-11-21|1995-10-12|TAKE BACK RETURN|REG AIR|ans. carefully final requests haggle furio| +13455|868536|31054|4|34|51152.66|0.05|0.00|N|O|1995-11-10|1995-11-29|1995-11-12|TAKE BACK RETURN|MAIL|s. stealthy, regul| +13455|478559|28560|5|32|49200.96|0.09|0.07|N|O|1995-10-20|1995-10-12|1995-10-22|DELIVER IN PERSON|AIR| place of the final, express pac| +13480|696295|33835|1|35|45194.10|0.01|0.05|N|O|1996-08-21|1996-07-23|1996-09-16|TAKE BACK RETURN|AIR|carefully against the ironic packag| +13480|616925|16926|2|35|64466.15|0.06|0.08|N|O|1996-10-05|1996-07-20|1996-10-16|NONE|MAIL|ronic, bold deposits cajole furio| +13480|652105|2106|3|24|25369.68|0.03|0.04|N|O|1996-07-30|1996-07-28|1996-08-13|COLLECT COD|AIR|e. furiously| +13480|927369|2406|4|24|33511.68|0.00|0.01|N|O|1996-09-02|1996-08-04|1996-09-10|DELIVER IN PERSON|RAIL|ously final pinto beans cajole sly| +13481|762141|37172|1|21|25265.31|0.05|0.02|A|F|1992-07-23|1992-06-08|1992-08-06|DELIVER IN PERSON|AIR|into beans.| +13481|291389|3895|2|50|69018.50|0.00|0.00|A|F|1992-05-01|1992-05-13|1992-05-04|DELIVER IN PERSON|MAIL|endencies engage | +13481|364863|2385|3|3|5783.55|0.07|0.04|A|F|1992-06-11|1992-05-11|1992-07-02|TAKE BACK RETURN|FOB|ely regular ideas nag furio| +13482|883236|33237|1|34|41452.46|0.08|0.08|N|O|1996-12-01|1996-10-17|1996-12-18|NONE|AIR| platelets. carefully regular dependenci| +13482|546729|21750|2|41|72803.70|0.04|0.03|N|O|1996-11-02|1996-09-19|1996-11-25|TAKE BACK RETURN|SHIP| quickly quick, close packages. deposits a| +13482|866189|41224|3|34|39274.76|0.00|0.04|N|O|1996-10-17|1996-10-07|1996-10-30|DELIVER IN PERSON|RAIL|e pending, unusual accounts. carefu| +13483|503501|28522|1|9|13540.32|0.06|0.06|N|O|1995-11-02|1996-01-01|1995-11-16|TAKE BACK RETURN|MAIL|ly regular ideas. speci| +13484|248008|10513|1|39|37283.61|0.05|0.07|N|O|1997-01-05|1996-12-31|1997-01-08|TAKE BACK RETURN|MAIL|s. ironic orbits use blithel| +13484|263848|1364|2|28|50731.24|0.00|0.02|N|O|1996-11-26|1997-01-11|1996-12-12|TAKE BACK RETURN|AIR|s. quickly thin foxes along the f| +13484|493326|5836|3|25|32982.50|0.03|0.01|N|O|1997-02-18|1997-01-07|1997-02-19|DELIVER IN PERSON|REG AIR|s detect furiously.| +13485|411399|36416|1|34|44552.58|0.05|0.08|N|O|1995-10-17|1995-10-23|1995-10-24|DELIVER IN PERSON|SHIP|y pending asymptotes could cajole blith| +13485|368453|30961|2|49|74550.56|0.02|0.05|N|O|1995-11-18|1995-11-11|1995-12-10|COLLECT COD|RAIL|y regular accounts cajole q| +13485|580327|30328|3|24|33775.20|0.03|0.02|N|O|1995-11-27|1995-11-27|1995-12-18|TAKE BACK RETURN|RAIL|r the regular sauternes. quickly | +13485|548929|48930|4|3|5933.70|0.02|0.04|N|O|1995-11-08|1995-12-07|1995-11-18|TAKE BACK RETURN|REG AIR|gular accounts nag always regular pint| +13486|170233|32737|1|3|3909.69|0.01|0.04|N|O|1998-07-12|1998-08-08|1998-08-06|COLLECT COD|FOB|p according to the final theod| +13486|100892|25897|2|38|71929.82|0.09|0.04|N|O|1998-07-05|1998-06-29|1998-07-28|DELIVER IN PERSON|MAIL|s. packages are slyly after the in| +13486|684816|34817|3|21|37816.38|0.06|0.01|N|O|1998-09-19|1998-08-14|1998-10-02|TAKE BACK RETURN|RAIL|wake permanent packages. carefully | +13486|686295|48809|4|1|1281.26|0.01|0.02|N|O|1998-06-20|1998-07-15|1998-07-03|TAKE BACK RETURN|TRUCK| quickly regular tithes. furiously eve| +13486|546060|33591|5|2|2212.08|0.09|0.00|N|O|1998-07-20|1998-08-17|1998-08-19|COLLECT COD|AIR|ironic accounts across the | +13486|623234|35747|6|2|2314.40|0.01|0.08|N|O|1998-08-14|1998-08-27|1998-08-31|TAKE BACK RETURN|AIR|o the slyly even theo| +13487|4506|17007|1|13|18336.50|0.03|0.03|A|F|1994-06-10|1994-04-28|1994-06-25|TAKE BACK RETURN|RAIL|among the final packages. slyly qui| +13487|717861|42890|2|40|75153.20|0.05|0.01|A|F|1994-05-28|1994-04-07|1994-06-13|DELIVER IN PERSON|MAIL|eep pendin| +13487|85865|48367|3|25|46271.50|0.01|0.02|R|F|1994-06-04|1994-04-16|1994-06-29|DELIVER IN PERSON|TRUCK|kly even instructions. fluffily| +13487|122299|34802|4|30|39638.70|0.04|0.05|A|F|1994-04-20|1994-04-11|1994-05-05|TAKE BACK RETURN|AIR| blithely express| +13487|476472|1491|5|29|42005.05|0.08|0.03|R|F|1994-05-20|1994-04-27|1994-06-11|TAKE BACK RETURN|MAIL|nts cajole slyl| +13487|52232|2233|6|33|39079.59|0.01|0.05|A|F|1994-04-06|1994-05-05|1994-04-28|COLLECT COD|SHIP|lly final accounts cajole furi| +13512|65982|15983|1|21|40907.58|0.02|0.07|N|O|1997-02-05|1997-01-16|1997-03-07|TAKE BACK RETURN|MAIL|sits about the packages c| +13512|943798|6317|2|39|71828.25|0.09|0.05|N|O|1996-12-29|1997-02-13|1997-01-08|DELIVER IN PERSON|RAIL|thin deposits. furiously silent asym| +13512|409808|47333|3|48|82453.44|0.10|0.08|N|O|1997-02-27|1997-01-20|1997-03-28|COLLECT COD|MAIL|e the carefully thin ideas. ironic acco| +13512|641981|41982|4|50|96147.50|0.01|0.05|N|O|1997-02-13|1997-02-19|1997-03-07|COLLECT COD|FOB| quickly silent m| +13512|767614|5160|5|27|45402.66|0.08|0.08|N|O|1997-01-19|1997-01-15|1997-01-30|TAKE BACK RETURN|FOB| integrate furiously about the sly| +13512|288426|38427|6|3|4243.23|0.01|0.01|N|O|1996-12-30|1997-02-04|1997-01-01|TAKE BACK RETURN|AIR|se after the iron| +13512|574653|12187|7|1|1727.63|0.07|0.01|N|O|1997-02-28|1997-02-15|1997-03-27|TAKE BACK RETURN|FOB|after the asymptotes. slyly speci| +13513|178014|15524|1|36|39312.36|0.10|0.00|N|O|1996-07-14|1996-07-11|1996-07-22|TAKE BACK RETURN|MAIL|uriously special accounts affix quickly| +13513|868644|18645|2|29|46765.40|0.08|0.06|N|O|1996-06-27|1996-07-05|1996-07-21|TAKE BACK RETURN|RAIL|accounts. quickly ironic ideas slee| +13513|287162|12173|3|20|22983.00|0.01|0.02|N|O|1996-05-25|1996-07-17|1996-06-21|COLLECT COD|AIR|al, special re| +13514|149433|36940|1|36|53367.48|0.08|0.03|N|O|1998-06-28|1998-07-10|1998-07-13|DELIVER IN PERSON|MAIL|carefully requests. forges haggle sly| +13514|514774|14775|2|19|33986.25|0.09|0.08|N|O|1998-09-07|1998-07-20|1998-09-10|DELIVER IN PERSON|AIR|uctions accor| +13514|805391|30424|3|1|1296.35|0.03|0.02|N|O|1998-05-25|1998-07-28|1998-06-14|DELIVER IN PERSON|REG AIR| packages. furio| +13514|190345|27855|4|6|8612.04|0.00|0.08|N|O|1998-07-22|1998-07-10|1998-08-16|DELIVER IN PERSON|AIR|ys affix quickly after the ironic, unusual | +13514|123440|48445|5|11|16097.84|0.09|0.03|N|O|1998-09-09|1998-06-18|1998-09-13|NONE|REG AIR|eodolites haggle fl| +13514|640730|15755|6|25|41767.50|0.07|0.03|N|O|1998-08-09|1998-07-22|1998-08-30|TAKE BACK RETURN|FOB| are according to the even pinto be| +13515|977662|2701|1|7|12177.34|0.06|0.07|A|F|1992-12-20|1992-12-02|1993-01-18|TAKE BACK RETURN|RAIL|r the furiously even ideas? permanently pe| +13515|553720|3721|2|5|8868.50|0.04|0.04|A|F|1992-12-02|1992-11-20|1992-12-17|NONE|FOB|ffily ironic package| +13515|357170|7171|3|43|52767.88|0.04|0.04|A|F|1992-09-26|1992-10-26|1992-09-29|TAKE BACK RETURN|REG AIR|jole blithely around the slyly regular requ| +13515|952268|39826|4|7|9241.54|0.06|0.00|R|F|1992-12-18|1992-11-25|1993-01-10|COLLECT COD|REG AIR|ecial accounts use | +13515|758724|46270|5|26|46349.94|0.06|0.05|R|F|1992-09-07|1992-12-01|1992-09-18|DELIVER IN PERSON|SHIP|ans cajole quickly ironic realms. caref| +13516|505699|43230|1|27|46026.09|0.06|0.01|A|F|1993-06-29|1993-06-11|1993-06-30|NONE|REG AIR|ross the unusual, expres| +13516|278117|40623|2|13|14236.30|0.00|0.04|R|F|1993-06-08|1993-07-11|1993-07-06|TAKE BACK RETURN|SHIP|grate among the quickly unusual account| +13516|311766|36779|3|40|71110.00|0.09|0.06|R|F|1993-07-14|1993-07-29|1993-08-05|DELIVER IN PERSON|AIR|realms haggle slyly slyly perma| +13517|62089|49593|1|4|4204.32|0.04|0.03|N|O|1996-03-17|1996-04-01|1996-04-10|TAKE BACK RETURN|FOB|ding requests. blithely silent re| +13517|528648|28649|2|21|35209.02|0.06|0.06|N|O|1996-04-03|1996-03-27|1996-04-09|DELIVER IN PERSON|AIR|rmanent request| +13517|983634|46154|3|16|27481.44|0.08|0.08|N|O|1996-04-30|1996-03-26|1996-05-20|DELIVER IN PERSON|RAIL|ously. furiously regula| +13517|921873|34392|4|37|70108.71|0.10|0.08|N|O|1996-04-01|1996-05-12|1996-04-30|COLLECT COD|MAIL|uests cajole furiously a| +13517|911309|48864|5|40|52810.40|0.05|0.05|N|O|1996-06-02|1996-03-20|1996-06-05|TAKE BACK RETURN|AIR|leep at the blithely final re| +13517|355197|30212|6|48|60104.64|0.06|0.07|N|O|1996-03-12|1996-04-13|1996-03-26|TAKE BACK RETURN|RAIL|packages cajole fluffil| +13517|788607|13638|7|49|83082.93|0.00|0.07|N|O|1996-04-11|1996-05-05|1996-05-03|COLLECT COD|SHIP|ual ideas | +13518|115264|2771|1|10|12792.60|0.03|0.05|N|O|1997-04-29|1997-03-23|1997-05-14|TAKE BACK RETURN|SHIP|ously regular deposits haggle | +13518|226779|26780|2|21|35820.96|0.09|0.05|N|O|1997-05-03|1997-04-05|1997-05-05|DELIVER IN PERSON|AIR|fter the final orbits. carefully spe| +13518|458962|21472|3|40|76837.60|0.08|0.04|N|O|1997-05-08|1997-05-12|1997-05-30|TAKE BACK RETURN|RAIL|ackages play. silent accounts sleep si| +13518|761941|36972|4|11|22032.01|0.02|0.01|N|O|1997-05-31|1997-03-26|1997-06-09|TAKE BACK RETURN|RAIL|posits integrate| +13518|929032|41551|5|48|50927.52|0.07|0.08|N|O|1997-05-18|1997-04-12|1997-06-05|TAKE BACK RETURN|REG AIR| affix blithely.| +13518|231859|31860|6|20|35816.80|0.06|0.06|N|O|1997-06-02|1997-04-08|1997-06-13|COLLECT COD|SHIP|ve the slyly blithe deposits. care| +13518|847210|22243|7|32|37029.44|0.01|0.00|N|O|1997-03-07|1997-05-08|1997-03-23|NONE|REG AIR|old pinto beans affix slyly de| +13519|43439|30940|1|4|5529.72|0.01|0.04|N|O|1996-02-01|1995-12-24|1996-03-02|TAKE BACK RETURN|MAIL|ng foxes believe furi| +13519|77120|27121|2|31|34010.72|0.10|0.08|N|O|1996-01-24|1995-12-11|1996-02-10|TAKE BACK RETURN|REG AIR|dly even p| +13519|149737|12240|3|45|80402.85|0.09|0.04|N|O|1996-01-12|1996-01-04|1996-01-27|COLLECT COD|MAIL| pinto beans prin| +13519|622263|34776|4|5|5926.15|0.05|0.05|N|O|1996-02-11|1996-01-27|1996-02-15|COLLECT COD|FOB| special dolp| +13519|365933|3455|5|5|9994.60|0.02|0.00|N|O|1995-12-15|1996-01-13|1996-01-01|COLLECT COD|RAIL|ar theodoli| +13519|223610|11123|6|14|21470.40|0.00|0.00|N|O|1995-12-28|1996-01-20|1996-01-11|NONE|FOB|lphins are. carefully pending deposits| +13519|199533|49534|7|22|35915.66|0.09|0.04|N|O|1996-02-15|1996-01-21|1996-03-14|TAKE BACK RETURN|FOB| furiously alongside of the express inst| +13544|539865|39866|1|48|91432.32|0.07|0.08|N|O|1998-05-08|1998-05-31|1998-06-05|DELIVER IN PERSON|AIR|ole carefully blithe| +13544|505224|17735|2|35|43022.00|0.06|0.02|N|O|1998-06-15|1998-05-29|1998-07-01|DELIVER IN PERSON|AIR|stealthy theodolites b| +13544|294203|19214|3|4|4788.76|0.05|0.08|N|O|1998-04-19|1998-06-07|1998-05-12|DELIVER IN PERSON|SHIP|d dependencies are at the final re| +13545|989198|14237|1|26|33465.90|0.04|0.03|R|F|1993-08-16|1993-06-23|1993-08-29|TAKE BACK RETURN|REG AIR| to the ironic deposits cajole acco| +13545|437751|37752|2|25|42218.25|0.06|0.05|R|F|1993-06-13|1993-07-03|1993-06-14|COLLECT COD|RAIL|usly final depths | +13545|265029|40040|3|46|45724.46|0.04|0.07|R|F|1993-06-28|1993-06-25|1993-07-28|DELIVER IN PERSON|AIR|. carefully pending foxes | +13545|341148|28667|4|28|33295.64|0.02|0.02|R|F|1993-07-20|1993-06-13|1993-08-04|TAKE BACK RETURN|RAIL|omise idly ironic deposits. regularly bold | +13545|657937|45477|5|28|53057.20|0.04|0.00|A|F|1993-06-15|1993-08-08|1993-06-30|DELIVER IN PERSON|TRUCK|blithely regular deposits haggle. slyly | +13545|936999|24554|6|50|101797.50|0.02|0.04|R|F|1993-07-25|1993-07-14|1993-07-26|COLLECT COD|REG AIR|ckages. slyly ironic dependencies acco| +13546|110078|35083|1|39|42434.73|0.00|0.05|N|O|1996-08-26|1996-06-28|1996-09-03|DELIVER IN PERSON|TRUCK|ly special gifts. doggedly speci| +13546|68151|30653|2|41|45885.15|0.05|0.04|N|O|1996-06-11|1996-08-07|1996-07-04|TAKE BACK RETURN|RAIL|eans. slyly even packages int| +13546|409021|46546|3|48|44640.00|0.09|0.02|N|O|1996-06-04|1996-06-30|1996-06-10|TAKE BACK RETURN|AIR|equests nag quickly fluffily sil| +13547|75450|37952|1|32|45614.40|0.03|0.03|A|F|1995-05-13|1995-04-14|1995-05-18|NONE|MAIL|lyly final deposits haggle i| +13547|76316|38818|2|5|6461.55|0.02|0.04|A|F|1995-05-09|1995-04-15|1995-05-25|TAKE BACK RETURN|FOB|gular dependencies; silent theodolites hagg| +13547|630060|42573|3|14|13860.42|0.08|0.02|R|F|1995-03-05|1995-05-08|1995-04-02|DELIVER IN PERSON|TRUCK|d the quickly pending | +13547|407060|19569|4|39|37714.56|0.07|0.05|A|F|1995-03-29|1995-03-11|1995-04-20|COLLECT COD|FOB|lently bold courts| +13547|440896|28421|5|40|73474.80|0.02|0.03|R|F|1995-03-10|1995-04-21|1995-03-21|COLLECT COD|TRUCK|efully. furiously regula| +13548|55524|30527|1|32|47344.64|0.10|0.00|A|F|1992-02-17|1992-02-24|1992-03-18|COLLECT COD|FOB| requests n| +13548|188855|13862|2|46|89417.10|0.01|0.00|R|F|1992-03-02|1992-03-06|1992-03-04|TAKE BACK RETURN|TRUCK|y along the unusual, final deposits. idle| +13548|81320|6323|3|32|41642.24|0.10|0.08|A|F|1992-01-29|1992-03-29|1992-02-10|TAKE BACK RETURN|TRUCK|ses among the | +13548|733093|8122|4|13|14638.78|0.08|0.03|A|F|1992-03-09|1992-03-21|1992-03-10|DELIVER IN PERSON|FOB|hely final r| +13548|79140|4143|5|20|22382.80|0.01|0.00|A|F|1992-04-03|1992-03-27|1992-04-19|DELIVER IN PERSON|MAIL|yly pending ideas are ca| +13549|240125|15134|1|26|27692.86|0.07|0.05|A|F|1994-05-07|1994-03-24|1994-05-25|DELIVER IN PERSON|SHIP|ithin the foxes. pint| +13549|776276|13822|2|9|12170.16|0.06|0.02|R|F|1994-05-08|1994-04-01|1994-06-02|COLLECT COD|RAIL|ial foxes. regular s| +13550|353192|3193|1|15|18677.70|0.06|0.04|N|O|1996-10-21|1996-09-30|1996-10-22|DELIVER IN PERSON|FOB|ng platelets sleep. quickly furious| +13550|86602|24106|2|16|25417.60|0.05|0.04|N|O|1996-11-26|1996-10-18|1996-12-11|TAKE BACK RETURN|RAIL|arefully express packag| +13550|513508|38529|3|29|44122.92|0.10|0.08|N|O|1996-09-20|1996-11-04|1996-10-18|NONE|REG AIR|ng the slyly special deposits cajole sp| +13550|521078|21079|4|31|34070.55|0.10|0.07|N|O|1996-10-16|1996-10-29|1996-10-23|TAKE BACK RETURN|RAIL|y fluffily even depo| +13551|140981|3484|1|12|24263.76|0.06|0.00|R|F|1993-10-13|1993-10-11|1993-11-10|COLLECT COD|AIR|ly ironic de| +13576|386391|11406|1|11|16251.18|0.07|0.04|N|O|1996-11-19|1996-12-02|1996-12-11|TAKE BACK RETURN|REG AIR|onic, special theodolites haggle. fluffily| +13576|65164|27666|2|13|14679.08|0.10|0.04|N|O|1996-10-04|1996-11-21|1996-10-31|NONE|TRUCK|out the fur| +13576|210923|48436|3|37|67854.67|0.00|0.07|N|O|1996-10-13|1996-12-15|1996-11-02|DELIVER IN PERSON|AIR|r, unusual requests-- slyly even de| +13576|973718|48757|4|31|55541.77|0.05|0.06|N|O|1996-11-03|1996-11-04|1996-11-22|NONE|TRUCK|kages besides the slyly| +13577|423117|23118|1|45|46804.05|0.03|0.06|N|O|1998-05-17|1998-06-29|1998-06-14|NONE|TRUCK|ual asymptot| +13577|319255|44268|2|39|49695.36|0.06|0.04|N|O|1998-06-09|1998-06-12|1998-07-06|DELIVER IN PERSON|TRUCK|ding packages according to the f| +13577|702008|14523|3|7|7069.79|0.05|0.05|N|O|1998-05-22|1998-06-05|1998-05-23|NONE|MAIL|g slyly against the furiously special| +13577|638916|1429|4|35|64920.80|0.02|0.02|N|O|1998-05-24|1998-06-29|1998-06-12|COLLECT COD|AIR|es are across the blithe| +13578|254520|42036|1|31|45709.81|0.08|0.02|R|F|1993-03-11|1993-03-31|1993-04-07|NONE|REG AIR|iously express theodoli| +13578|709095|21610|2|24|26497.44|0.09|0.04|R|F|1993-04-21|1993-05-05|1993-05-12|COLLECT COD|MAIL|s cajole blithely sly| +13578|757993|7994|3|22|45121.12|0.10|0.08|A|F|1993-04-01|1993-03-30|1993-04-10|COLLECT COD|AIR|ly special foxes. quickly even r| +13578|584047|21581|4|22|24882.44|0.08|0.07|R|F|1993-03-11|1993-05-16|1993-04-07|NONE|MAIL|ts haggle. idle pinto | +13578|64151|1655|5|18|20072.70|0.05|0.07|R|F|1993-03-21|1993-04-01|1993-03-23|DELIVER IN PERSON|SHIP| the regular foxes. quickly silent | +13579|133948|46451|1|34|67385.96|0.03|0.04|N|O|1996-10-29|1996-10-19|1996-11-10|TAKE BACK RETURN|AIR|y bold pinto beans! qui| +13579|260683|35694|2|31|50953.77|0.06|0.07|N|O|1997-01-04|1996-11-06|1997-02-01|TAKE BACK RETURN|REG AIR|s above the dogged reque| +13579|282750|32751|3|35|60645.90|0.06|0.08|N|O|1996-10-24|1996-11-04|1996-11-20|TAKE BACK RETURN|AIR|osits boost quick| +13579|164786|2296|4|42|77732.76|0.05|0.06|N|O|1996-11-30|1996-11-22|1996-12-18|COLLECT COD|AIR|lar dependencies acc| +13579|548024|23045|5|1|1072.00|0.02|0.05|N|O|1996-09-26|1996-11-28|1996-10-21|TAKE BACK RETURN|AIR|hely final, even accounts. | +13579|639117|26654|6|6|6336.48|0.09|0.06|N|O|1996-12-15|1996-11-17|1997-01-03|NONE|RAIL|oubt carefully according to the unu| +13579|627257|39770|7|7|8289.54|0.04|0.02|N|O|1996-09-25|1996-12-01|1996-10-23|TAKE BACK RETURN|TRUCK|inal requests sleep. daringly special ideas| +13580|302820|27833|1|3|5468.43|0.10|0.06|N|O|1996-08-24|1996-06-13|1996-09-05|COLLECT COD|TRUCK|nts. close| +13580|479986|5005|2|6|11795.76|0.07|0.01|N|O|1996-07-22|1996-08-01|1996-08-21|DELIVER IN PERSON|FOB| ideas wake carefully. blithely even de| +13580|118647|18648|3|15|24984.60|0.04|0.01|N|O|1996-06-12|1996-06-29|1996-06-22|NONE|SHIP|furiously | +13580|84029|46531|4|33|33429.66|0.07|0.03|N|O|1996-05-29|1996-06-15|1996-06-09|DELIVER IN PERSON|TRUCK|lyly against the regular pinto be| +13581|173995|49002|1|13|26896.87|0.01|0.03|A|F|1992-06-13|1992-07-25|1992-07-04|NONE|AIR|ss packages boost qui| +13581|331781|44288|2|17|30817.09|0.03|0.02|A|F|1992-09-19|1992-08-16|1992-10-03|COLLECT COD|SHIP|gular packages breach car| +13582|385316|10331|1|21|29427.30|0.06|0.02|A|F|1994-12-23|1995-01-21|1995-01-20|NONE|MAIL|ly special in| +13582|5896|43397|2|26|46849.14|0.03|0.07|R|F|1995-01-16|1995-02-27|1995-02-15|NONE|REG AIR|ake across the evenly regular as| +13583|441648|4157|1|14|22254.68|0.00|0.04|N|O|1998-10-10|1998-08-28|1998-10-18|TAKE BACK RETURN|REG AIR|sly ironic asymptotes nag. accou| +13583|773728|48759|2|27|48645.63|0.02|0.05|N|O|1998-10-19|1998-07-25|1998-11-14|NONE|AIR|fully silent e| +13583|38504|13505|3|28|40390.00|0.05|0.08|N|O|1998-09-24|1998-08-29|1998-10-24|COLLECT COD|REG AIR|uffily daringly pending ac| +13583|128461|40964|4|42|62557.32|0.07|0.02|N|O|1998-10-03|1998-07-29|1998-10-30|TAKE BACK RETURN|AIR|al pinto beans nod furious| +13583|38332|13333|5|22|27947.26|0.07|0.03|N|O|1998-09-06|1998-09-17|1998-09-30|DELIVER IN PERSON|REG AIR|. carefully unusual requests wa| +13583|231578|19091|6|22|33210.32|0.07|0.03|N|O|1998-07-22|1998-09-10|1998-08-06|DELIVER IN PERSON|MAIL| regular deposits. t| +13583|115277|27780|7|6|7753.62|0.04|0.06|N|O|1998-07-10|1998-07-30|1998-07-28|DELIVER IN PERSON|MAIL|lly ironic| +13608|455199|42727|1|11|12695.87|0.06|0.01|N|O|1996-05-11|1996-04-29|1996-05-12|DELIVER IN PERSON|REG AIR|the furiously special escapades nag along| +13609|422747|47764|1|49|81816.28|0.08|0.06|N|O|1997-06-07|1997-05-01|1997-06-23|TAKE BACK RETURN|REG AIR| beans afte| +13609|94638|44639|2|3|4897.89|0.08|0.05|N|O|1997-07-06|1997-05-03|1997-07-23|DELIVER IN PERSON|TRUCK|kages hang. unusual, regular accounts acro| +13609|569124|44147|3|25|29827.50|0.07|0.03|N|O|1997-03-31|1997-05-06|1997-04-11|DELIVER IN PERSON|FOB|sly final excuses among the unusual excuses| +13609|257566|45082|4|49|74653.95|0.10|0.08|N|O|1997-03-31|1997-06-03|1997-04-02|COLLECT COD|FOB|lly final deposits. silent deposi| +13609|909845|34882|5|4|7419.20|0.09|0.06|N|O|1997-03-29|1997-05-16|1997-04-22|TAKE BACK RETURN|FOB|lar deposits. furiously bold | +13609|754124|41670|6|13|15315.17|0.03|0.06|N|O|1997-05-22|1997-05-15|1997-06-07|DELIVER IN PERSON|MAIL|t requests. carefully reg| +13609|561483|49017|7|7|10811.22|0.04|0.05|N|O|1997-04-10|1997-04-14|1997-04-20|DELIVER IN PERSON|AIR| carefully across the furiously thin in| +13610|836505|36506|1|3|4324.38|0.01|0.05|R|F|1993-10-09|1993-10-26|1993-11-07|COLLECT COD|MAIL|ges cajole carefully regular p| +13610|124046|24047|2|21|22470.84|0.10|0.06|R|F|1993-11-09|1993-09-08|1993-12-03|TAKE BACK RETURN|FOB|ackages boost sly| +13610|833872|46389|3|5|9029.15|0.07|0.03|R|F|1993-09-13|1993-09-28|1993-09-14|COLLECT COD|SHIP|silent accounts among the quickly regular e| +13611|586133|48645|1|44|53640.84|0.06|0.00|R|F|1992-07-11|1992-07-31|1992-07-16|NONE|REG AIR|hely idle foxes integrate carefully| +13611|137328|37329|2|45|61439.40|0.02|0.06|A|F|1992-06-12|1992-07-09|1992-07-02|TAKE BACK RETURN|MAIL|gular dinos. foxes against the s| +13611|60683|35686|3|24|39448.32|0.00|0.03|A|F|1992-06-24|1992-07-29|1992-07-01|DELIVER IN PERSON|MAIL|y express theodolites-- i| +13612|425380|12905|1|43|56130.48|0.04|0.00|A|F|1994-11-18|1994-10-19|1994-12-01|NONE|SHIP|en deposits. f| +13612|357710|20218|2|18|31818.60|0.00|0.00|A|F|1994-11-20|1994-10-14|1994-12-03|TAKE BACK RETURN|SHIP|jole blithely regular deposits. fluffily | +13612|24493|49494|3|23|32602.27|0.04|0.02|A|F|1994-10-14|1994-10-02|1994-10-27|NONE|FOB|s; slyly special ideas cajole carefully| +13612|652748|40288|4|39|66327.69|0.00|0.07|A|F|1994-10-11|1994-11-21|1994-11-08|DELIVER IN PERSON|MAIL|sits haggle furiou| +13612|731405|18948|5|5|7181.85|0.04|0.08|R|F|1994-12-15|1994-10-09|1995-01-13|NONE|FOB|ructions detect furiously. final, bold | +13612|723352|48381|6|23|31632.36|0.04|0.05|A|F|1994-11-01|1994-10-07|1994-11-21|NONE|REG AIR|ckages. even foxes sleep blithely| +13612|361333|23841|7|16|22309.12|0.03|0.00|R|F|1994-10-31|1994-11-16|1994-11-15|NONE|FOB|ly special instru| +13613|920440|32959|1|12|17524.80|0.04|0.07|R|F|1994-11-25|1994-12-09|1994-12-22|TAKE BACK RETURN|AIR|to beans. bold, furious p| +13613|819302|19303|2|32|39080.32|0.10|0.08|A|F|1994-12-30|1994-12-06|1995-01-11|DELIVER IN PERSON|FOB|arefully. furiously even fo| +13613|3502|16003|3|37|52003.50|0.04|0.03|R|F|1995-01-25|1995-01-11|1995-02-12|COLLECT COD|AIR|sias hinder boldl| +13613|858031|45583|4|27|26702.73|0.08|0.02|A|F|1994-11-08|1994-11-29|1994-11-22|DELIVER IN PERSON|RAIL|l asymptotes. carefully sile| +13613|910362|35399|5|1|1372.32|0.10|0.08|A|F|1995-01-10|1994-12-29|1995-01-22|TAKE BACK RETURN|RAIL|thely bold requests mold qui| +13613|446646|21663|6|47|74853.14|0.04|0.01|R|F|1995-01-01|1994-12-04|1995-01-07|NONE|TRUCK|ccounts was quickly| +13613|768178|43209|7|43|53584.02|0.08|0.04|R|F|1995-01-24|1995-01-17|1995-02-20|TAKE BACK RETURN|AIR| even packages x-ray platelets. s| +13614|755312|5313|1|34|46487.52|0.07|0.03|R|F|1994-07-13|1994-09-12|1994-08-04|DELIVER IN PERSON|TRUCK|e furiously near the regular req| +13614|524720|24721|2|38|66298.60|0.07|0.01|R|F|1994-08-11|1994-10-03|1994-08-17|DELIVER IN PERSON|TRUCK|ss packages| +13614|954215|41773|3|27|34267.59|0.02|0.01|A|F|1994-07-13|1994-09-21|1994-07-29|COLLECT COD|FOB|uses! slyly | +13614|489320|14339|4|38|49753.40|0.07|0.04|A|F|1994-10-10|1994-08-21|1994-10-18|NONE|RAIL| regular soma| +13615|879561|17113|1|30|46215.60|0.00|0.07|N|O|1996-09-17|1996-10-01|1996-09-30|COLLECT COD|RAIL|y even requests cajole qu| +13615|773236|10782|2|43|56295.60|0.01|0.04|N|O|1996-10-23|1996-10-29|1996-11-19|NONE|RAIL|liers boost blithely silent foxes. pen| +13615|762064|12065|3|6|6756.18|0.03|0.04|N|O|1996-11-29|1996-10-27|1996-12-11|NONE|MAIL|fully regular | +13615|996735|21774|4|25|45792.25|0.06|0.00|N|O|1996-11-17|1996-11-01|1996-11-18|COLLECT COD|FOB|gular deposits det| +13615|120873|45878|5|46|87118.02|0.09|0.04|N|O|1996-11-30|1996-10-05|1996-12-15|DELIVER IN PERSON|REG AIR|ely. carefully r| +13615|506518|19029|6|28|42685.72|0.04|0.01|N|O|1996-09-30|1996-10-27|1996-10-14|NONE|TRUCK| carefully special pa| +13640|582943|7966|1|45|91166.40|0.07|0.08|N|O|1998-03-05|1998-05-04|1998-03-07|NONE|RAIL| carefully even pa| +13641|752475|27506|1|23|35131.12|0.10|0.06|N|O|1995-12-22|1995-12-02|1996-01-13|COLLECT COD|SHIP|ckly bold packages. quickly regular package| +13641|845750|33299|2|27|45784.17|0.09|0.07|N|O|1995-11-30|1996-01-19|1995-12-25|NONE|REG AIR| the blithely | +13641|515833|28344|3|35|64708.35|0.10|0.00|N|O|1995-12-11|1995-12-15|1995-12-30|COLLECT COD|AIR|daring ideas. accounts wake carefull| +13641|595213|7725|4|46|60176.74|0.04|0.08|N|O|1995-12-07|1995-12-18|1996-01-03|DELIVER IN PERSON|FOB|iet decoys| +13641|738137|652|5|17|19976.70|0.06|0.01|N|O|1995-11-17|1995-12-11|1995-12-03|DELIVER IN PERSON|MAIL| slyly final packages | +13641|868319|30837|6|4|5149.08|0.06|0.06|N|O|1996-02-08|1995-11-25|1996-03-09|COLLECT COD|TRUCK|unts nag quickly special instruct| +13641|826900|39417|7|32|58459.52|0.00|0.08|N|O|1996-02-01|1996-01-15|1996-02-27|TAKE BACK RETURN|REG AIR|es up the carefully regul| +13642|702433|27462|1|3|4306.20|0.10|0.03|A|F|1993-04-12|1993-04-15|1993-05-04|COLLECT COD|SHIP|pecial accounts nag bl| +13642|783655|33656|2|40|69544.80|0.06|0.03|A|F|1993-04-26|1993-03-21|1993-05-15|DELIVER IN PERSON|REG AIR|ing requests. quickly| +13642|883141|20693|3|42|47212.20|0.10|0.07|A|F|1993-02-05|1993-03-22|1993-02-27|TAKE BACK RETURN|AIR| excuses. furiously express packages n| +13642|948224|23261|4|10|12721.80|0.07|0.04|R|F|1993-01-23|1993-03-06|1993-02-20|DELIVER IN PERSON|FOB|ly blithely regular accounts. fur| +13643|70403|20404|1|4|5493.60|0.08|0.00|A|F|1993-04-09|1993-04-17|1993-04-19|NONE|MAIL|s use furiously even excuses? pendin| +13643|257264|44780|2|49|59841.25|0.01|0.02|R|F|1993-03-09|1993-03-17|1993-03-28|DELIVER IN PERSON|MAIL|ests impress furiously. close pinto beans | +13643|828817|3850|3|25|43644.25|0.03|0.06|R|F|1993-04-30|1993-04-01|1993-05-28|TAKE BACK RETURN|REG AIR|es grow. fluffily express theo| +13643|922844|10399|4|9|16801.20|0.04|0.03|R|F|1993-02-04|1993-04-10|1993-03-05|NONE|REG AIR|ring the pending ideas. de| +13643|229813|4822|5|43|74940.40|0.04|0.02|R|F|1993-02-05|1993-03-03|1993-03-02|TAKE BACK RETURN|SHIP|ounts. quickly special pack| +13643|456507|44035|6|10|14634.80|0.01|0.00|A|F|1993-03-12|1993-03-03|1993-04-10|TAKE BACK RETURN|FOB|y unusual account| +13644|369883|44898|1|2|3905.74|0.01|0.02|R|F|1992-05-28|1992-05-30|1992-06-23|DELIVER IN PERSON|FOB|ly according to the b| +13644|612188|24701|2|34|37405.10|0.04|0.03|A|F|1992-05-10|1992-06-07|1992-05-19|COLLECT COD|TRUCK|sits use quick| +13644|32721|32722|3|40|66148.80|0.04|0.08|R|F|1992-07-23|1992-06-22|1992-08-10|TAKE BACK RETURN|FOB|ideas. unusual foxes haggle. furiously reg| +13644|938737|13774|4|20|35513.80|0.02|0.07|A|F|1992-04-21|1992-06-18|1992-04-23|NONE|SHIP|ns. bold, | +13644|347638|22651|5|38|64053.56|0.04|0.07|A|F|1992-05-08|1992-05-30|1992-05-12|TAKE BACK RETURN|FOB| quickly ironic packages wake above th| +13644|750888|13404|6|14|27143.90|0.07|0.02|A|F|1992-07-18|1992-07-04|1992-07-23|COLLECT COD|FOB|nts. blithely even instructions breac| +13644|159670|22174|7|15|25945.05|0.08|0.07|A|F|1992-05-19|1992-07-08|1992-06-01|TAKE BACK RETURN|SHIP|nal accounts sleep unusual, | +13645|569645|19646|1|33|56582.46|0.02|0.08|A|F|1995-04-20|1995-05-29|1995-05-01|TAKE BACK RETURN|RAIL|le across the excuses| +13645|13779|1280|2|13|22006.01|0.10|0.03|A|F|1995-05-18|1995-04-21|1995-06-02|NONE|TRUCK|al requests across| +13645|571060|46083|3|19|21489.76|0.07|0.07|R|F|1995-05-03|1995-05-07|1995-05-21|TAKE BACK RETURN|AIR|requests. unusual, final forges haggl| +13645|789044|14075|4|25|28325.25|0.01|0.00|R|F|1995-05-18|1995-05-16|1995-05-21|DELIVER IN PERSON|MAIL| the slyly ironic foxes mus| +13646|773894|48925|1|6|11807.16|0.06|0.01|N|O|1998-08-18|1998-07-07|1998-09-12|NONE|MAIL|ress. ironic theodolites across th| +13646|825897|38414|2|43|78382.55|0.02|0.07|N|O|1998-04-26|1998-06-17|1998-05-14|COLLECT COD|SHIP|even, even account| +13646|837860|377|3|43|77306.26|0.00|0.02|N|O|1998-05-13|1998-06-06|1998-05-22|NONE|FOB|ly final courts boost. blit| +13646|896253|21288|4|41|51217.61|0.09|0.04|N|O|1998-06-29|1998-07-16|1998-07-26|NONE|SHIP|al ideas unwin| +13646|310663|35676|5|40|66946.00|0.02|0.07|N|O|1998-05-14|1998-06-24|1998-05-20|NONE|REG AIR|regular, regular orbits believe carefull| +13646|297950|47951|6|4|7791.76|0.07|0.03|N|O|1998-07-10|1998-07-14|1998-08-04|TAKE BACK RETURN|AIR|e furiously even req| +13646|645246|45247|7|40|47648.40|0.01|0.01|N|O|1998-05-12|1998-07-11|1998-05-23|NONE|RAIL|after the slyly unusual accounts. expres| +13647|649090|24115|1|49|50913.94|0.08|0.01|A|F|1993-12-26|1994-02-08|1994-01-21|COLLECT COD|TRUCK|sts after the slyly regular hockey players| +13647|243246|30759|2|10|11892.30|0.00|0.06|A|F|1994-01-17|1994-02-07|1994-02-05|TAKE BACK RETURN|TRUCK|g the regular accounts. packages integra| +13647|223907|11420|3|21|38448.69|0.02|0.05|A|F|1994-01-17|1993-12-24|1994-01-18|NONE|AIR|r bold accounts: slyly pending pac| +13647|190111|15118|4|3|3603.33|0.08|0.04|A|F|1993-12-09|1994-01-14|1993-12-12|TAKE BACK RETURN|MAIL|efully final deposits haggle.| +13647|188928|13935|5|44|88744.48|0.01|0.07|A|F|1994-02-10|1994-02-15|1994-03-05|NONE|MAIL|lyly blithely even instruction| +13647|306186|31199|6|42|50071.14|0.10|0.02|R|F|1993-12-31|1994-01-07|1994-01-01|COLLECT COD|REG AIR| the carefully ironic deposits. furiously| +13647|54626|42130|7|30|47418.60|0.10|0.03|A|F|1993-12-02|1994-02-13|1993-12-26|TAKE BACK RETURN|RAIL|ve to believe | +13672|90091|27595|1|39|42162.51|0.05|0.04|N|O|1996-09-26|1996-09-13|1996-10-20|NONE|SHIP|riously even requests wake slyly expres| +13672|144292|31799|2|25|33407.25|0.10|0.04|N|O|1996-10-08|1996-08-11|1996-11-05|COLLECT COD|SHIP|ccounts after the pinto beans hinder| +13672|100223|37730|3|23|28134.06|0.05|0.07|N|O|1996-10-28|1996-09-28|1996-11-17|DELIVER IN PERSON|TRUCK|s. deposits against the s| +13672|447582|22599|4|27|41298.12|0.06|0.05|N|O|1996-10-13|1996-09-26|1996-10-18|NONE|AIR|ounts nag blithely furiously even pi| +13672|493936|18955|5|17|32808.47|0.00|0.03|N|O|1996-09-14|1996-09-13|1996-09-18|NONE|AIR|al packages hinder furiously beneath t| +13673|423793|23794|1|3|5150.31|0.10|0.03|N|O|1996-03-16|1996-02-27|1996-03-21|COLLECT COD|AIR|s cajole slyly. slyly bol| +13673|682470|20010|2|40|58097.60|0.07|0.08|N|O|1996-01-26|1996-03-11|1996-01-28|NONE|REG AIR|jole blithely among the requests. ca| +13673|258142|8143|3|8|8801.04|0.03|0.05|N|O|1996-03-02|1996-03-06|1996-03-22|NONE|MAIL|ackages was| +13673|584685|34686|4|11|19466.26|0.01|0.02|N|O|1996-03-10|1996-03-20|1996-03-23|DELIVER IN PERSON|FOB|ncies haggle alongside of the careful| +13673|794760|7276|5|26|48222.98|0.03|0.05|N|O|1996-03-20|1996-03-18|1996-04-14|TAKE BACK RETURN|RAIL|unts. final, unusual ac| +13673|526701|39212|6|20|34553.60|0.08|0.00|N|O|1996-02-25|1996-01-30|1996-03-22|COLLECT COD|RAIL|ly ironic pinto beans haggl| +13674|991426|28984|1|20|30347.60|0.07|0.04|N|O|1995-12-09|1996-01-28|1995-12-23|TAKE BACK RETURN|MAIL|efully. quickly special asymptotes| +13674|895623|20658|2|23|37227.34|0.10|0.01|N|O|1995-11-05|1995-12-18|1995-11-20|DELIVER IN PERSON|SHIP|eep slyly special packages. ex| +13674|719777|44806|3|19|34138.06|0.01|0.05|N|O|1995-12-13|1995-12-20|1995-12-20|DELIVER IN PERSON|AIR|requests try to n| +13674|285364|10375|4|50|67467.50|0.00|0.04|N|O|1996-02-11|1995-12-30|1996-02-26|COLLECT COD|RAIL|egular accoun| +13674|99487|49488|5|38|56486.24|0.02|0.02|N|O|1996-02-12|1996-01-06|1996-03-01|COLLECT COD|RAIL| deposits thrash. i| +13674|72417|9921|6|13|18062.33|0.03|0.05|N|O|1995-11-24|1995-12-17|1995-12-01|DELIVER IN PERSON|SHIP|ructions are fluffily. specia| +13674|101795|1796|7|22|39529.38|0.08|0.06|N|O|1995-11-30|1996-01-17|1995-12-30|TAKE BACK RETURN|FOB|onic excuses haggle slowly pending | +13675|865233|15234|1|30|35945.70|0.05|0.08|R|F|1994-05-05|1994-04-07|1994-05-30|COLLECT COD|SHIP|ly regular accounts sleep furiously at | +13676|33938|21439|1|7|13103.51|0.05|0.01|N|O|1996-11-01|1996-09-08|1996-11-23|NONE|MAIL|express, pend| +13676|395880|8388|2|11|21734.57|0.01|0.02|N|O|1996-09-04|1996-10-10|1996-09-09|TAKE BACK RETURN|AIR|old, even courts across the fluffily reg| +13676|552083|2084|3|25|28376.50|0.02|0.07|N|O|1996-08-31|1996-10-26|1996-09-29|TAKE BACK RETURN|REG AIR|ld deposits alongside of t| +13676|856835|6836|4|46|82422.34|0.06|0.05|N|O|1996-11-01|1996-11-01|1996-11-27|NONE|MAIL|ncies cajole. fluffily pending accou| +13676|814602|27119|5|9|13649.04|0.05|0.04|N|O|1996-08-17|1996-10-08|1996-08-27|COLLECT COD|SHIP|he quickly spe| +13677|270223|32729|1|26|31023.46|0.03|0.01|N|O|1995-09-20|1995-09-07|1995-09-22|DELIVER IN PERSON|AIR| cajole furious| +13677|621984|47009|2|39|74332.05|0.03|0.03|N|O|1995-09-30|1995-07-23|1995-10-25|NONE|FOB| close reque| +13678|978692|3731|1|31|54890.15|0.02|0.03|N|O|1996-02-18|1996-01-28|1996-02-29|NONE|SHIP|heodolites boost blithely special realms. c| +13679|957907|32946|1|48|94313.28|0.00|0.03|R|F|1994-06-27|1994-05-03|1994-07-02|DELIVER IN PERSON|SHIP|ites are fluf| +13704|873883|23884|1|20|37136.80|0.03|0.04|N|O|1998-05-07|1998-06-16|1998-06-01|TAKE BACK RETURN|AIR|blithely. blithely unusual | +13704|350471|25486|2|27|41079.42|0.01|0.04|N|O|1998-05-29|1998-06-09|1998-06-14|DELIVER IN PERSON|FOB|rate fluffily after the slyly iro| +13704|357800|20308|3|30|55733.70|0.00|0.05|N|O|1998-07-22|1998-06-23|1998-08-02|NONE|MAIL|ments haggle thinly. even es| +13704|529637|29638|4|41|68331.01|0.08|0.01|N|O|1998-07-29|1998-07-25|1998-08-28|COLLECT COD|RAIL| requests. carefull| +13704|605551|43088|5|26|37869.52|0.04|0.03|N|O|1998-07-31|1998-07-24|1998-08-08|TAKE BACK RETURN|REG AIR|al requests. final foxes wake: idly spec| +13704|480154|42664|6|35|39694.55|0.05|0.07|N|O|1998-06-18|1998-06-21|1998-07-09|COLLECT COD|FOB|hely final foxes! | +13705|558131|45665|1|13|15458.43|0.01|0.04|A|F|1994-01-11|1993-12-03|1994-01-29|COLLECT COD|TRUCK|lar grouches cajole c| +13705|494277|44278|2|18|22882.50|0.06|0.00|A|F|1994-01-21|1993-12-09|1994-02-04|DELIVER IN PERSON|AIR|its. quickly special instructions dete| +13705|298759|48760|3|22|38670.28|0.02|0.05|R|F|1993-12-30|1993-12-11|1994-01-01|TAKE BACK RETURN|AIR|hin requests boost blithely even request| +13705|229256|16769|4|36|42668.64|0.09|0.01|A|F|1993-12-08|1993-12-03|1993-12-26|NONE|FOB| of the quickly unu| +13706|366605|29113|1|30|50147.70|0.03|0.04|R|F|1995-02-07|1995-03-12|1995-02-27|NONE|REG AIR| cajole carefu| +13706|517781|5312|2|28|50365.28|0.09|0.07|R|F|1994-12-25|1995-01-23|1995-01-09|NONE|TRUCK|onic requests. furiously specia| +13707|900921|25958|1|31|59578.28|0.00|0.04|R|F|1993-07-02|1993-05-26|1993-07-17|DELIVER IN PERSON|REG AIR|es use blithely idly spec| +13707|778154|3185|2|50|61606.00|0.03|0.02|A|F|1993-05-09|1993-06-16|1993-05-10|NONE|SHIP|lyly pending fo| +13707|423385|35894|3|48|62801.28|0.06|0.00|A|F|1993-06-12|1993-06-10|1993-06-30|NONE|AIR|s wake furiously. requests wake quickly acr| +13707|829787|42304|4|22|37768.28|0.07|0.01|R|F|1993-07-30|1993-05-08|1993-08-20|DELIVER IN PERSON|AIR| deposits sleep blithely even th| +13707|217760|5273|5|27|45299.25|0.07|0.08|A|F|1993-06-24|1993-06-19|1993-07-08|TAKE BACK RETURN|AIR|es unwind. furiously ironic | +13707|876230|38748|6|42|50659.98|0.09|0.05|R|F|1993-06-25|1993-06-02|1993-07-03|DELIVER IN PERSON|TRUCK|ounts along the pinto beans hag| +13707|784400|34401|7|39|57890.43|0.01|0.02|R|F|1993-08-01|1993-05-26|1993-08-03|TAKE BACK RETURN|SHIP|s boost ab| +13708|394062|19077|1|49|56646.45|0.05|0.03|A|F|1994-09-07|1994-10-10|1994-09-18|TAKE BACK RETURN|MAIL|lyly even excuses promise idly ironic depos| +13708|994839|19878|2|1|1933.79|0.02|0.02|R|F|1994-12-17|1994-10-20|1995-01-12|NONE|MAIL|ackages along the furiously ir| +13708|242960|30473|3|6|11417.70|0.10|0.07|R|F|1994-11-02|1994-11-08|1994-11-26|NONE|REG AIR|instructions wake ab| +13708|417045|42062|4|26|25012.52|0.07|0.07|R|F|1994-11-08|1994-09-17|1994-12-08|TAKE BACK RETURN|SHIP|lly final theodolites| +13708|259087|9088|5|6|6276.42|0.00|0.07|A|F|1994-12-02|1994-11-09|1994-12-17|DELIVER IN PERSON|SHIP|y regular warhorses run against the speci| +13709|810614|23131|1|8|12196.56|0.01|0.01|N|O|1998-07-24|1998-10-10|1998-07-31|DELIVER IN PERSON|SHIP|uctions. even, even platelets do | +13710|664038|26552|1|42|42084.00|0.00|0.05|A|F|1994-04-16|1994-04-03|1994-04-18|NONE|REG AIR| beans. pending, special dolphins inte| +13710|479795|4814|2|9|15972.93|0.01|0.08|R|F|1994-04-14|1994-03-12|1994-05-06|DELIVER IN PERSON|AIR|its wake fluffily carefully unusual | +13710|907049|44604|3|1|1056.00|0.06|0.04|R|F|1994-03-18|1994-04-30|1994-04-14|NONE|MAIL| are slyly | +13711|958131|45689|1|38|45185.42|0.05|0.01|N|O|1995-07-20|1995-06-04|1995-08-12|COLLECT COD|SHIP|y. carefully ruthless| +13711|291249|3755|2|16|19843.68|0.10|0.04|N|O|1995-08-27|1995-07-08|1995-09-05|NONE|FOB|ructions. unusual accounts | +13736|769747|19748|1|43|78118.53|0.04|0.07|N|O|1995-12-11|1996-01-09|1995-12-14|COLLECT COD|AIR|os boost furiou| +13736|132908|45411|2|6|11645.40|0.07|0.05|N|O|1996-02-21|1996-02-12|1996-02-28|NONE|RAIL|tegrate carefully. blithely express fo| +13736|777450|27451|3|46|70261.32|0.00|0.01|N|O|1995-12-27|1996-02-02|1996-01-24|TAKE BACK RETURN|AIR|sits across the regular instructions| +13736|596270|8782|4|28|38255.00|0.05|0.07|N|O|1996-03-08|1995-12-29|1996-03-10|COLLECT COD|MAIL|nic, ironic ideas wake fluffily | +13736|502798|15309|5|13|23410.01|0.08|0.01|N|O|1996-02-26|1996-01-24|1996-03-21|TAKE BACK RETURN|FOB|riously even theodolites are q| +13736|522122|22123|6|46|52628.60|0.02|0.07|N|O|1996-01-28|1996-01-29|1996-02-20|DELIVER IN PERSON|TRUCK|. silent pinto beans beyond the f| +13737|328429|15948|1|33|48094.53|0.05|0.05|N|O|1995-09-27|1995-11-14|1995-10-07|NONE|RAIL|ages. express ac| +13737|899193|24228|2|18|21458.70|0.04|0.03|N|O|1995-11-14|1995-11-14|1995-11-19|DELIVER IN PERSON|MAIL|press realms| +13737|735351|35352|3|39|54066.48|0.08|0.01|N|O|1995-12-01|1995-10-22|1995-12-25|NONE|TRUCK|l requests. carefully final deposits sleep | +13737|29205|41706|4|26|29489.20|0.00|0.01|N|O|1995-11-06|1995-12-12|1995-11-16|COLLECT COD|REG AIR|usly pending ac| +13737|840101|27650|5|50|52053.00|0.04|0.01|N|O|1995-11-05|1995-11-17|1995-11-06|COLLECT COD|FOB|ect quickly among the final accounts. caref| +13738|110487|35492|1|28|41929.44|0.10|0.08|N|O|1997-06-10|1997-08-03|1997-06-24|TAKE BACK RETURN|TRUCK|gle quickly furiously| +13738|951153|26192|2|47|56593.17|0.06|0.02|N|O|1997-08-10|1997-08-26|1997-08-15|TAKE BACK RETURN|MAIL|ts. slyly final ideas are car| +13738|26794|39295|3|15|25811.85|0.09|0.02|N|O|1997-07-31|1997-08-24|1997-08-28|DELIVER IN PERSON|RAIL|slyly regular foxe| +13739|74760|24761|1|12|20817.12|0.05|0.02|N|O|1998-04-06|1998-06-08|1998-05-04|DELIVER IN PERSON|REG AIR|ntain furiously ab| +13740|947565|35120|1|11|17737.72|0.01|0.07|N|O|1997-06-17|1997-05-11|1997-06-29|DELIVER IN PERSON|REG AIR|sits above the silent accounts sleep fin| +13741|707680|7681|1|48|81007.20|0.05|0.08|R|F|1993-05-10|1993-06-09|1993-05-16|TAKE BACK RETURN|REG AIR|ously furiously unusual deposits. slyly f| +13741|966206|16207|2|32|40709.12|0.05|0.01|R|F|1993-06-20|1993-06-18|1993-07-09|TAKE BACK RETURN|REG AIR|theodolites. furiously regular foxes| +13741|21905|21906|3|28|51153.20|0.03|0.06|A|F|1993-08-18|1993-06-01|1993-08-24|DELIVER IN PERSON|SHIP| final deposits boost rut| +13741|153733|3734|4|12|21440.76|0.09|0.04|R|F|1993-08-08|1993-06-14|1993-08-28|NONE|REG AIR| theodolites wake even a| +13741|784141|34142|5|25|30627.75|0.08|0.03|R|F|1993-07-16|1993-06-30|1993-08-05|COLLECT COD|AIR|xpress pearls. | +13741|53354|15856|6|17|22224.95|0.04|0.01|A|F|1993-05-24|1993-07-09|1993-06-22|TAKE BACK RETURN|AIR|s? furiously pending requ| +13741|717552|17553|7|39|61211.28|0.03|0.03|R|F|1993-06-15|1993-07-21|1993-07-14|DELIVER IN PERSON|RAIL|en gifts. busily| +13742|885532|35533|1|12|18209.88|0.06|0.00|N|O|1997-02-14|1996-12-10|1997-03-08|COLLECT COD|REG AIR|egular accounts. carefully unusual requ| +13742|128976|16483|2|28|56139.16|0.08|0.05|N|O|1997-01-03|1997-01-23|1997-01-20|DELIVER IN PERSON|MAIL|orbits against the special deposits| +13742|697270|47271|3|10|12672.40|0.00|0.08|N|O|1997-02-22|1996-12-17|1997-03-24|COLLECT COD|AIR|jole slyly a| +13742|9623|34624|4|45|68967.90|0.01|0.04|N|O|1997-02-04|1997-01-21|1997-02-21|DELIVER IN PERSON|SHIP| final, pending pinto be| +13742|731647|31648|5|17|28536.37|0.07|0.04|N|O|1997-02-09|1997-01-28|1997-02-25|DELIVER IN PERSON|AIR|haggle slyly. qui| +13742|788156|38157|6|14|17417.68|0.07|0.03|N|O|1996-11-04|1997-01-06|1996-11-09|TAKE BACK RETURN|MAIL| around the carefully ironic deposits| +13742|536975|36976|7|48|96573.60|0.04|0.08|N|O|1997-02-15|1997-01-31|1997-02-17|NONE|MAIL|s solve slyly. even, regular re| +13743|923444|48481|1|23|33750.20|0.00|0.06|R|F|1992-05-24|1992-06-13|1992-06-02|DELIVER IN PERSON|TRUCK|yly final ideas? fluffily regul| +13743|314270|26777|2|47|60360.22|0.04|0.07|A|F|1992-07-27|1992-07-07|1992-08-12|COLLECT COD|AIR|quickly final foxes could use quickl| +13743|921899|9454|3|45|86438.25|0.01|0.07|A|F|1992-05-24|1992-08-01|1992-06-14|COLLECT COD|FOB| even deposits. busy instructions cajole f| +13743|347511|35030|4|44|68574.00|0.04|0.03|A|F|1992-08-14|1992-07-12|1992-09-13|NONE|RAIL|elets. blithely iron| +13743|613819|38844|5|33|57181.74|0.02|0.01|R|F|1992-09-02|1992-06-16|1992-09-23|TAKE BACK RETURN|FOB|ackages. accounts affix slyly | +13743|451240|38768|6|43|51222.46|0.03|0.07|A|F|1992-06-19|1992-08-12|1992-06-30|COLLECT COD|SHIP| packages need to nag slyly.| +13743|980366|42886|7|24|34711.68|0.05|0.05|A|F|1992-09-09|1992-08-01|1992-09-13|TAKE BACK RETURN|AIR|ckages nag | +13768|8756|21257|1|13|21641.75|0.10|0.06|N|O|1995-12-14|1996-03-08|1995-12-15|NONE|SHIP|its integrate fluffily against the fl| +13768|149212|49213|2|14|17656.94|0.05|0.02|N|O|1996-02-20|1996-02-09|1996-03-20|NONE|FOB|old requests. blithely express i| +13768|793625|6141|3|16|27497.44|0.04|0.07|N|O|1996-01-11|1996-02-27|1996-01-17|DELIVER IN PERSON|REG AIR|quests according to the final multipliers | +13768|454027|16537|4|37|36297.00|0.00|0.02|N|O|1996-01-27|1996-03-11|1996-02-08|NONE|REG AIR|lly regular sheaves det| +13768|817038|29555|5|10|9549.90|0.04|0.05|N|O|1995-12-17|1996-02-14|1995-12-18|NONE|AIR|. bold ideas ha| +13768|955765|18285|6|1|1820.72|0.06|0.07|N|O|1995-12-30|1996-02-08|1996-01-08|TAKE BACK RETURN|TRUCK|icingly across the quickly ir| +13768|531728|31729|7|31|54550.70|0.00|0.04|N|O|1996-03-21|1996-01-13|1996-03-22|DELIVER IN PERSON|AIR|y. platelet| +13769|748617|36160|1|12|19986.96|0.01|0.02|A|F|1995-05-01|1995-04-28|1995-05-26|COLLECT COD|MAIL|ronic excus| +13770|176519|26520|1|26|41483.26|0.07|0.01|N|O|1995-08-30|1995-10-23|1995-09-23|NONE|RAIL|ully final ideas| +13771|813169|718|1|30|32463.60|0.06|0.01|R|F|1992-03-15|1992-04-15|1992-03-28|TAKE BACK RETURN|TRUCK|eas integrate carefull| +13771|928216|15771|2|8|9953.36|0.06|0.02|A|F|1992-05-28|1992-06-04|1992-06-19|COLLECT COD|TRUCK|ously special instruc| +13771|514511|2042|3|17|25933.33|0.05|0.07|A|F|1992-07-01|1992-05-13|1992-07-02|NONE|TRUCK|ges grow according to the slyly sp| +13772|885753|35754|1|1|1738.71|0.03|0.02|N|O|1997-02-23|1997-01-18|1997-03-18|COLLECT COD|FOB|cuses. ironic, ir| +13772|843692|6209|2|40|65426.00|0.06|0.02|N|O|1997-03-17|1997-02-11|1997-03-30|NONE|FOB|ess, bold requests haggl| +13772|924572|49609|3|30|47895.90|0.10|0.02|N|O|1997-01-28|1997-01-06|1997-02-24|COLLECT COD|REG AIR| haggle carefully slow theodolites. even | +13772|275355|12871|4|8|10642.72|0.03|0.03|N|O|1997-01-02|1997-01-23|1997-01-19|TAKE BACK RETURN|FOB|ial accounts. ironic, | +13772|888914|1432|5|6|11417.22|0.06|0.05|N|O|1997-02-04|1997-01-08|1997-03-03|COLLECT COD|MAIL|ly pending deposits nod fluf| +13772|962489|37528|6|49|76020.56|0.10|0.00|N|O|1996-12-29|1997-02-10|1997-01-21|DELIVER IN PERSON|RAIL|s thrash am| +13772|544133|44134|7|9|10593.99|0.07|0.08|N|O|1996-12-24|1997-01-05|1997-01-09|COLLECT COD|RAIL|to the carefully s| +13773|227129|2138|1|2|2112.22|0.09|0.03|A|F|1992-07-17|1992-07-11|1992-07-30|DELIVER IN PERSON|FOB|sual pinto beans. blithely regular ideas ca| +13773|342349|42350|2|42|58435.86|0.06|0.06|R|F|1992-08-08|1992-06-06|1992-09-02|DELIVER IN PERSON|AIR|the slyly enticing deposit| +13773|847262|9779|3|19|22975.18|0.02|0.01|A|F|1992-05-22|1992-06-05|1992-06-14|COLLECT COD|SHIP| carefully special sauternes cajole furi| +13773|918334|5889|4|16|21636.64|0.00|0.05|R|F|1992-05-24|1992-06-10|1992-06-21|NONE|MAIL|onic deposits. final, special instructi| +13774|349869|24882|1|46|88267.10|0.02|0.03|A|F|1993-06-05|1993-06-30|1993-06-14|TAKE BACK RETURN|RAIL|ual instructions. regular packa| +13774|233131|20644|2|19|20218.28|0.04|0.04|A|F|1993-09-02|1993-07-29|1993-09-28|TAKE BACK RETURN|RAIL|cajole blithely car| +13774|223090|35595|3|28|28366.24|0.09|0.00|R|F|1993-08-26|1993-07-19|1993-08-28|NONE|TRUCK|counts affix slyly carefully bo| +13774|468834|18835|4|1|1802.81|0.07|0.01|R|F|1993-07-16|1993-06-26|1993-07-25|NONE|AIR| the fluffily final packages.| +13774|691840|29380|5|38|69608.78|0.10|0.06|A|F|1993-06-29|1993-07-30|1993-07-18|DELIVER IN PERSON|SHIP|cajole among the qu| +13774|743655|18684|6|7|11890.34|0.07|0.03|R|F|1993-07-12|1993-08-09|1993-07-18|COLLECT COD|MAIL|ding to the slyly ironic deposits wake a| +13775|709020|46563|1|22|22637.78|0.01|0.00|N|O|1995-08-01|1995-09-06|1995-08-17|DELIVER IN PERSON|TRUCK|g excuses. quickly regular deposit| +13800|926703|1740|1|21|36322.86|0.06|0.00|N|O|1995-07-05|1995-08-14|1995-08-03|DELIVER IN PERSON|RAIL| ideas. ironically unusual theodolit| +13800|97047|34551|2|35|36541.40|0.06|0.08|N|O|1995-08-16|1995-08-14|1995-09-14|DELIVER IN PERSON|RAIL|thogs use si| +13800|53672|16174|3|18|29262.06|0.10|0.01|N|O|1995-09-02|1995-08-28|1995-09-22|NONE|TRUCK|sly about the furiously sly r| +13800|58047|20549|4|36|36181.44|0.02|0.03|N|O|1995-07-21|1995-08-14|1995-08-12|NONE|RAIL|nding somas integrate slyly ironic dep| +13800|589103|26637|5|1|1192.08|0.08|0.06|N|O|1995-09-15|1995-08-27|1995-10-03|COLLECT COD|SHIP|beans sleep carefully even warhors| +13800|43893|31394|6|22|40411.58|0.00|0.05|N|O|1995-10-19|1995-09-02|1995-11-02|TAKE BACK RETURN|RAIL|nding accounts along the close dep| +13801|454951|42479|1|19|36212.67|0.09|0.07|N|O|1996-12-19|1997-01-09|1997-01-07|DELIVER IN PERSON|SHIP|ular gifts after the pending, express a| +13801|349540|12047|2|23|36559.19|0.09|0.04|N|O|1997-02-02|1997-02-24|1997-02-09|DELIVER IN PERSON|RAIL|y final ideas! | +13801|717012|17013|3|46|47333.08|0.08|0.08|N|O|1997-03-26|1997-02-19|1997-04-18|TAKE BACK RETURN|RAIL| requests. idly r| +13801|811553|36586|4|1|1464.51|0.02|0.07|N|O|1997-03-10|1997-02-08|1997-03-28|DELIVER IN PERSON|SHIP|gged accounts grow furiously | +13801|770488|45519|5|40|62338.00|0.08|0.02|N|O|1997-04-02|1997-03-02|1997-04-08|NONE|REG AIR|uickly final| +13802|536152|23683|1|38|45148.94|0.09|0.03|N|O|1996-06-13|1996-07-12|1996-07-02|DELIVER IN PERSON|MAIL|accounts affix carefully across t| +13802|98977|36481|2|39|77062.83|0.01|0.04|N|O|1996-05-14|1996-07-17|1996-05-25|NONE|RAIL|regular requests sleep regularly along the| +13802|491445|28973|3|7|10054.94|0.07|0.07|N|O|1996-05-23|1996-06-04|1996-06-03|TAKE BACK RETURN|RAIL|ing packages? quickly regular instructio| +13803|558464|20976|1|31|47195.64|0.01|0.04|N|O|1996-10-25|1996-08-24|1996-10-27|NONE|AIR|ests sleep. blithely final asympt| +13804|493981|31509|1|24|47399.04|0.03|0.07|R|F|1993-09-10|1993-08-31|1993-09-23|COLLECT COD|SHIP| are slyly excuses. furiou| +13804|330321|5334|2|13|17567.03|0.00|0.04|R|F|1993-07-19|1993-08-31|1993-07-21|DELIVER IN PERSON|RAIL| thinly special theod| +13805|42935|5436|1|23|43192.39|0.09|0.04|N|O|1996-05-21|1996-03-20|1996-06-06|NONE|SHIP|unusual packages acro| +13805|604496|29521|2|45|63020.70|0.03|0.06|N|O|1996-02-26|1996-04-01|1996-03-24|DELIVER IN PERSON|REG AIR|e blithely acr| +13805|760276|10277|3|31|41423.44|0.05|0.03|N|O|1996-03-04|1996-03-12|1996-03-20|COLLECT COD|RAIL|permanently accordi| +13805|946193|8712|4|23|28500.45|0.07|0.03|N|O|1996-02-19|1996-03-04|1996-03-12|NONE|SHIP|quickly pending frets boost slyly | +13805|658016|20530|5|1|973.98|0.03|0.06|N|O|1996-04-04|1996-03-11|1996-04-20|COLLECT COD|REG AIR|. furiously| +13806|261511|11512|1|25|36812.50|0.01|0.08|R|F|1993-05-31|1993-03-26|1993-06-25|NONE|TRUCK| even, blithe | +13806|213225|25730|2|40|45528.40|0.04|0.03|A|F|1993-02-07|1993-04-02|1993-03-02|DELIVER IN PERSON|AIR|fully quickly final theodolites. b| +13806|666951|16952|3|48|92060.16|0.05|0.01|R|F|1993-04-16|1993-03-29|1993-05-06|DELIVER IN PERSON|MAIL| cajole slyly b| +13806|440818|40819|4|50|87939.50|0.01|0.02|A|F|1993-05-29|1993-04-01|1993-06-24|NONE|TRUCK| daring accounts. furiously regular instru| +13807|121216|8723|1|28|34641.88|0.09|0.02|A|F|1992-11-24|1992-11-30|1992-12-07|TAKE BACK RETURN|REG AIR|ular packages; slyly unusual ac| +13807|261654|49170|2|44|71088.16|0.00|0.01|A|F|1992-11-16|1992-12-08|1992-12-15|TAKE BACK RETURN|FOB| wake agai| +13807|607930|7931|3|10|18379.00|0.08|0.02|R|F|1993-01-11|1993-01-01|1993-01-21|NONE|TRUCK|refully regular as| +13807|467829|42848|4|23|41326.40|0.00|0.03|A|F|1992-11-02|1992-12-25|1992-11-04|DELIVER IN PERSON|AIR|xes haggle slyly. even instructions sleep| +13807|801698|39247|5|6|9597.90|0.00|0.01|R|F|1992-12-24|1992-12-14|1993-01-01|NONE|AIR| across the regular deposits. dependencies| +13807|122299|34802|6|47|62100.63|0.06|0.06|R|F|1992-12-17|1992-12-15|1992-12-30|TAKE BACK RETURN|FOB|mptotes. quickly special instructio| +13807|463120|648|7|35|37908.50|0.05|0.00|A|F|1992-12-31|1992-12-08|1993-01-10|DELIVER IN PERSON|RAIL|se. blithely even instructions abov| +13832|648765|48766|1|46|78831.58|0.02|0.03|N|O|1998-05-09|1998-03-17|1998-05-31|COLLECT COD|FOB|iously final asympto| +13833|408758|33775|1|40|66669.20|0.00|0.01|N|O|1996-09-06|1996-10-04|1996-09-14|TAKE BACK RETURN|TRUCK|n deposits haggle among the | +13833|988572|1092|2|22|36531.66|0.08|0.07|N|O|1996-07-19|1996-10-10|1996-08-03|DELIVER IN PERSON|REG AIR|ly after the bold| +13833|923470|11025|3|28|41816.04|0.00|0.04|N|O|1996-11-04|1996-09-25|1996-11-16|TAKE BACK RETURN|TRUCK|eans among| +13833|744313|19342|4|14|19001.92|0.08|0.04|N|O|1996-09-23|1996-09-28|1996-10-21|COLLECT COD|RAIL|s hinder. | +13833|660282|22796|5|13|16149.25|0.10|0.02|N|O|1996-09-03|1996-10-15|1996-10-03|COLLECT COD|FOB| furiously special platele| +13833|348755|48756|6|16|28859.84|0.10|0.01|N|O|1996-10-06|1996-10-13|1996-10-19|COLLECT COD|SHIP|egular package| +13833|521268|21269|7|18|23206.32|0.06|0.07|N|O|1996-07-26|1996-10-02|1996-07-30|COLLECT COD|SHIP|ording to the carefully final accounts| +13834|945401|32956|1|27|39051.72|0.09|0.08|N|O|1995-11-16|1995-10-10|1995-12-12|COLLECT COD|AIR|ep regular, even accounts. car| +13834|349737|24750|2|35|62535.20|0.09|0.00|N|O|1995-12-23|1995-11-18|1995-12-27|TAKE BACK RETURN|REG AIR|sits nag blithely alongside| +13834|16327|28828|3|24|29839.68|0.09|0.08|N|O|1995-09-27|1995-09-25|1995-09-30|TAKE BACK RETURN|REG AIR|lly silent platelets| +13834|407674|45199|4|21|33214.65|0.10|0.00|N|O|1995-10-21|1995-09-26|1995-11-01|COLLECT COD|SHIP|ts are blithely dogged packages.| +13834|772533|22534|5|17|27293.50|0.08|0.07|N|O|1995-11-28|1995-10-21|1995-12-24|COLLECT COD|RAIL| the ironic, silent ideas. regular pack| +13834|959273|46831|6|32|42631.36|0.02|0.08|N|O|1995-09-03|1995-10-06|1995-09-24|NONE|FOB| furiously express instructions wake| +13834|489192|14211|7|2|2362.34|0.01|0.04|N|O|1995-09-22|1995-11-01|1995-09-29|COLLECT COD|TRUCK|permanent instructions are | +13835|846577|21610|1|20|30470.60|0.05|0.08|N|O|1998-06-06|1998-04-20|1998-07-01|TAKE BACK RETURN|REG AIR|l pearls. ruthless, ironic instructions w| +13835|415566|28075|2|40|59261.60|0.08|0.07|N|O|1998-05-09|1998-05-06|1998-05-10|COLLECT COD|MAIL|olites boost slyly quickly silent| +13835|416947|41964|3|23|42870.16|0.06|0.01|N|O|1998-06-01|1998-05-16|1998-06-28|COLLECT COD|REG AIR| furiously regular sheaves. fluffily final| +13835|613225|38250|4|24|27316.56|0.05|0.01|N|O|1998-03-07|1998-04-06|1998-03-19|TAKE BACK RETURN|FOB| furiously f| +13835|465067|2595|5|29|29929.16|0.02|0.01|N|O|1998-04-20|1998-04-14|1998-04-22|COLLECT COD|RAIL|ly regular requests nag blithely | +13835|366518|16519|6|31|49119.50|0.07|0.01|N|O|1998-05-23|1998-04-11|1998-06-12|NONE|MAIL|kly dogged theodolites sleep according | +13836|633632|33633|1|48|75148.80|0.00|0.00|N|O|1996-04-16|1996-03-17|1996-04-27|TAKE BACK RETURN|MAIL|aggle carefully aroun| +13836|445541|45542|2|15|22297.80|0.09|0.08|N|O|1996-03-22|1996-03-07|1996-03-23|NONE|TRUCK|nto beans are fluffily! care| +13836|195844|8348|3|10|19398.40|0.04|0.01|N|O|1996-02-03|1996-04-15|1996-02-24|DELIVER IN PERSON|REG AIR|nic packages inte| +13836|533310|20841|4|6|8059.74|0.10|0.02|N|O|1996-02-12|1996-03-15|1996-02-18|TAKE BACK RETURN|SHIP|its cajole slyly about the slyly fi| +13836|337306|37307|5|17|22835.93|0.03|0.03|N|O|1996-05-23|1996-03-23|1996-05-24|COLLECT COD|MAIL|ach carefully. reg| +13836|93255|43256|6|33|41192.25|0.04|0.03|N|O|1996-03-21|1996-04-05|1996-04-18|NONE|REG AIR|after the blithely express packages. pa| +13837|774998|12544|1|17|35240.32|0.00|0.02|N|O|1996-03-30|1996-03-04|1996-04-07|DELIVER IN PERSON|SHIP|ts. furiously ironic a| +13837|387658|37659|2|30|52369.20|0.10|0.03|N|O|1996-04-06|1996-04-01|1996-04-22|DELIVER IN PERSON|FOB|rding to the fluffily e| +13837|352310|2311|3|12|16347.60|0.01|0.06|N|O|1996-05-19|1996-04-13|1996-06-06|COLLECT COD|RAIL|quests are alongs| +13837|260876|35887|4|47|86332.42|0.02|0.02|N|O|1996-04-30|1996-03-15|1996-05-29|NONE|REG AIR|r dolphins are quickly express p| +13837|535295|47806|5|16|21284.32|0.03|0.06|N|O|1996-05-09|1996-03-11|1996-05-30|TAKE BACK RETURN|SHIP|sleep. final pac| +13837|691085|41086|6|27|29053.35|0.04|0.00|N|O|1996-04-20|1996-04-02|1996-05-02|DELIVER IN PERSON|REG AIR|pending accounts about the blithe| +13837|52665|40169|7|39|63088.74|0.08|0.03|N|O|1996-03-14|1996-04-26|1996-03-31|TAKE BACK RETURN|FOB|ackages detect blithely quickly bold f| +13838|130143|30144|1|9|10558.26|0.02|0.01|R|F|1994-05-28|1994-07-11|1994-05-30|TAKE BACK RETURN|REG AIR|special requests caj| +13839|591768|16791|1|27|50212.98|0.05|0.04|A|F|1993-07-06|1993-06-21|1993-07-27|COLLECT COD|FOB|lly carefully regular instructions. | +13839|836819|24368|2|47|82521.19|0.05|0.08|R|F|1993-07-23|1993-06-25|1993-08-07|DELIVER IN PERSON|TRUCK|ld accounts. slyly final| +13839|400256|12765|3|17|19655.91|0.06|0.07|A|F|1993-08-01|1993-05-17|1993-08-10|COLLECT COD|FOB|to the furiously even | +13839|86051|23555|4|5|5185.25|0.06|0.02|A|F|1993-07-31|1993-06-26|1993-08-12|DELIVER IN PERSON|RAIL|ically furiously regular deposits. bli| +13839|243682|43683|5|9|14631.03|0.01|0.08|R|F|1993-05-16|1993-06-18|1993-05-19|NONE|TRUCK|wake slyly. excuses alongsi| +13839|560979|48513|6|28|57118.60|0.10|0.03|R|F|1993-07-11|1993-06-08|1993-08-08|COLLECT COD|RAIL|al theodolites cajole along the furiously e| +13839|367277|4799|7|44|59147.44|0.01|0.05|R|F|1993-07-29|1993-06-08|1993-08-01|NONE|FOB|ular hockey players sleep bl| +13864|821985|34502|1|47|89626.18|0.01|0.07|N|O|1996-05-12|1996-04-08|1996-05-24|TAKE BACK RETURN|SHIP|ckages. foxes use. accounts | +13864|90511|28015|2|49|73573.99|0.09|0.03|N|O|1996-04-25|1996-02-27|1996-05-05|COLLECT COD|SHIP|onic foxes wake blithely slyl| +13865|324716|24717|1|11|19147.70|0.00|0.05|N|O|1998-02-05|1998-01-02|1998-02-09|DELIVER IN PERSON|FOB|es haggle fluffily according to the | +13865|490269|2779|2|17|21407.08|0.09|0.02|N|O|1998-01-09|1997-12-08|1998-01-20|NONE|MAIL|leep according to the blithe| +13866|590494|28028|1|36|57040.92|0.08|0.07|R|F|1994-11-25|1994-11-10|1994-11-29|COLLECT COD|TRUCK|ly. even packages haggle bold| +13866|430008|17533|2|2|1875.96|0.06|0.03|R|F|1994-10-04|1994-12-08|1994-11-03|TAKE BACK RETURN|AIR|ording to the blithely sp| +13866|137522|12527|3|22|34309.44|0.10|0.00|A|F|1994-09-17|1994-11-19|1994-10-12|TAKE BACK RETURN|RAIL|s haggle d| +13866|319098|31605|4|48|53619.84|0.06|0.02|R|F|1994-11-05|1994-10-31|1994-11-21|DELIVER IN PERSON|AIR|he permanent packages. express deposits a| +13867|635001|22538|1|19|17783.43|0.02|0.03|N|O|1998-04-18|1998-05-22|1998-04-30|TAKE BACK RETURN|RAIL|nal accounts. furiously ironic accoun| +13867|455098|5099|2|40|42122.80|0.00|0.06|N|O|1998-04-07|1998-05-12|1998-04-08|COLLECT COD|AIR|ily even requests integrate a| +13867|819136|44169|3|16|16881.44|0.06|0.02|N|O|1998-04-25|1998-05-16|1998-05-02|COLLECT COD|TRUCK|o the enticing packages. even deposi| +13867|202985|40498|4|21|39647.37|0.00|0.05|N|O|1998-04-15|1998-05-14|1998-05-08|NONE|MAIL|ong the ironic| +13867|559761|34784|5|12|21848.88|0.03|0.00|N|O|1998-03-25|1998-06-05|1998-04-03|NONE|SHIP|. daring excuses detect furiously ac| +13868|134847|9852|1|24|45164.16|0.04|0.08|N|O|1998-04-27|1998-05-11|1998-05-03|DELIVER IN PERSON|AIR|ackages are foxes. unusual dependenci| +13868|370709|45724|2|32|56950.08|0.09|0.07|N|O|1998-05-06|1998-05-23|1998-05-26|COLLECT COD|REG AIR|inst the car| +13868|502655|15166|3|20|33152.60|0.07|0.06|N|O|1998-06-14|1998-05-01|1998-06-26|DELIVER IN PERSON|FOB|eposits cajole. ev| +13869|273382|35888|1|36|48793.32|0.05|0.03|N|O|1996-11-06|1996-09-05|1996-11-19|COLLECT COD|RAIL|lly carefully unusual pinto beans?| +13869|718796|18797|2|1|1814.76|0.07|0.07|N|O|1996-08-17|1996-10-17|1996-09-04|COLLECT COD|RAIL|manent packages. furiously reg| +13869|800353|25386|3|36|45119.16|0.10|0.03|N|O|1996-11-04|1996-09-02|1996-11-30|TAKE BACK RETURN|SHIP|rs cajole p| +13869|531734|19265|4|1|1765.71|0.01|0.08|N|O|1996-11-06|1996-08-30|1996-11-07|TAKE BACK RETURN|TRUCK|y! requests slee| +13869|846854|34403|5|40|72032.40|0.08|0.01|N|O|1996-11-02|1996-09-11|1996-11-28|NONE|REG AIR|intain deposits-- regular, even theo| +13869|65619|15620|6|23|36446.03|0.05|0.04|N|O|1996-09-23|1996-09-10|1996-10-13|DELIVER IN PERSON|TRUCK|x-ray? dependenc| +13870|26618|14119|1|3|4633.83|0.03|0.06|R|F|1994-07-20|1994-07-03|1994-07-26|NONE|TRUCK|ests above | +13870|358249|8250|2|34|44445.82|0.01|0.06|A|F|1994-06-11|1994-07-08|1994-06-30|NONE|MAIL| regular excuses sleep furiously. e| +13870|86161|23665|3|31|35561.96|0.05|0.04|R|F|1994-07-04|1994-07-08|1994-07-12|NONE|AIR| after the carefull| +13870|102296|2297|4|45|58423.05|0.09|0.04|R|F|1994-08-05|1994-07-31|1994-08-26|DELIVER IN PERSON|MAIL|ncies boost| +13870|286445|23961|5|14|20040.02|0.00|0.07|A|F|1994-05-22|1994-08-02|1994-05-25|COLLECT COD|SHIP|tions are. special deposits maintai| +13871|186819|36820|1|19|36210.39|0.00|0.06|R|F|1992-03-09|1992-03-14|1992-03-31|DELIVER IN PERSON|FOB|sleep. unusual, | +13871|863651|38686|2|37|59740.57|0.03|0.07|R|F|1992-02-29|1992-04-27|1992-03-16|COLLECT COD|TRUCK|ctions wake. pending th| +13871|369552|7074|3|39|63240.06|0.08|0.03|R|F|1992-05-01|1992-03-27|1992-05-04|NONE|MAIL|s. slyly regular pinto be| +13871|49972|12473|4|24|46127.28|0.06|0.03|R|F|1992-03-19|1992-04-13|1992-04-02|NONE|TRUCK|nstructions play boldly ironic foxe| +13871|863612|1164|5|47|74051.79|0.05|0.03|R|F|1992-05-17|1992-04-25|1992-05-31|DELIVER IN PERSON|MAIL|eposits. idle | +13871|725043|12586|6|17|18156.17|0.02|0.05|A|F|1992-05-22|1992-04-08|1992-06-02|TAKE BACK RETURN|RAIL|. deposits detect q| +13871|781580|6611|7|28|46523.40|0.09|0.04|A|F|1992-05-28|1992-04-07|1992-06-17|DELIVER IN PERSON|MAIL|blithely permanent requests. sly| +13896|9724|22225|1|37|60447.64|0.09|0.04|R|F|1994-03-09|1994-04-15|1994-04-03|DELIVER IN PERSON|MAIL|pending hockey players. carefully si| +13896|428029|15554|2|15|14355.00|0.03|0.02|A|F|1994-04-30|1994-04-11|1994-05-25|DELIVER IN PERSON|REG AIR|unusual idea| +13897|362165|37180|1|16|19634.40|0.02|0.04|N|O|1995-11-20|1995-10-28|1995-11-24|TAKE BACK RETURN|REG AIR|ully unusual requests about the carefully | +13897|898930|36482|2|42|81013.38|0.05|0.02|N|O|1995-10-08|1995-11-04|1995-10-19|TAKE BACK RETURN|REG AIR|ans wake. carefully r| +13897|305798|43317|3|47|84777.66|0.07|0.05|N|O|1995-10-12|1995-10-10|1995-10-23|TAKE BACK RETURN|SHIP|cally even accounts are fluffily along t| +13897|534947|47458|4|16|31710.72|0.03|0.01|N|O|1995-11-11|1995-11-14|1995-11-25|NONE|SHIP| are carefully slyly final foxes| +13898|28128|28129|1|11|11617.32|0.08|0.08|A|F|1993-03-29|1993-04-20|1993-04-04|DELIVER IN PERSON|RAIL|ckages: slyly ironic| +13898|733358|45873|2|30|41739.60|0.07|0.08|R|F|1993-03-24|1993-04-14|1993-04-21|DELIVER IN PERSON|TRUCK|ironic accounts haggle blithely. packa| +13898|532071|44582|3|41|45225.05|0.10|0.08|A|F|1993-05-09|1993-04-23|1993-05-23|COLLECT COD|AIR|oost according to the foxes| +13898|503026|40557|4|36|37044.00|0.03|0.08|R|F|1993-03-17|1993-05-06|1993-03-29|TAKE BACK RETURN|FOB|ly. unusual accounts wake qu| +13899|970098|7656|1|38|44385.90|0.02|0.03|N|O|1995-07-31|1995-08-12|1995-08-05|NONE|AIR|nstructions wake| +13899|422835|47852|2|24|42187.44|0.09|0.00|N|O|1995-06-19|1995-07-09|1995-07-17|DELIVER IN PERSON|TRUCK|ickly ironic theodo| +13899|575747|25748|3|19|34631.68|0.09|0.07|N|O|1995-07-30|1995-07-07|1995-08-08|COLLECT COD|TRUCK|ly ironic deposits. blithely special excus| +13899|569379|6913|4|5|7241.75|0.00|0.03|N|O|1995-09-12|1995-07-17|1995-09-27|DELIVER IN PERSON|SHIP|pecial foxes nag fluffily. ironic, final | +13899|542371|42372|5|33|46640.55|0.02|0.08|N|O|1995-08-31|1995-06-28|1995-09-30|DELIVER IN PERSON|REG AIR|ut the never regular packages.| +13899|612711|25224|6|17|27602.56|0.10|0.02|N|F|1995-06-10|1995-07-18|1995-07-02|TAKE BACK RETURN|TRUCK|, express accounts. pending, ironic theod| +13899|822736|35253|7|25|41467.25|0.10|0.02|N|O|1995-09-09|1995-08-14|1995-10-07|TAKE BACK RETURN|MAIL|quickly special excuses. quickly specia| +13900|711659|11660|1|21|35083.02|0.00|0.04|R|F|1992-07-30|1992-08-03|1992-08-10|COLLECT COD|RAIL| pinto beans? fluffily express pi| +13901|602739|27764|1|29|47609.30|0.02|0.05|N|O|1997-01-27|1996-12-10|1997-02-24|COLLECT COD|SHIP|nal, regular dolphins wake rea| +13902|14993|14994|1|4|7631.96|0.08|0.00|A|F|1995-06-08|1995-06-04|1995-06-09|COLLECT COD|MAIL|sly regular epitaphs play special pack| +13902|976103|1142|2|11|12969.66|0.06|0.01|R|F|1995-06-05|1995-04-23|1995-06-07|TAKE BACK RETURN|MAIL| express d| +13902|346433|33952|3|45|66573.90|0.02|0.08|A|F|1995-04-05|1995-04-12|1995-04-25|COLLECT COD|FOB|ns about the quick packages eat| +13902|498248|35776|4|42|52341.24|0.05|0.06|A|F|1995-04-10|1995-04-17|1995-04-14|COLLECT COD|RAIL|arefully pend| +13902|37630|131|5|9|14108.67|0.00|0.04|N|O|1995-06-20|1995-04-26|1995-07-05|DELIVER IN PERSON|MAIL|edly even dependencies. stealthy theodolit| +13903|349050|49051|1|9|9891.36|0.01|0.02|A|F|1993-06-03|1993-04-15|1993-06-07|TAKE BACK RETURN|MAIL|longside of the c| +13928|237539|25052|1|11|16241.72|0.04|0.01|R|F|1993-02-20|1993-02-20|1993-03-14|DELIVER IN PERSON|REG AIR|ongside of the ca| +13928|307642|45161|2|19|31342.97|0.06|0.06|R|F|1993-03-13|1993-02-28|1993-03-25|COLLECT COD|TRUCK|cajole carefully. express| +13928|539078|1589|3|3|3351.15|0.03|0.08|R|F|1993-02-02|1993-02-04|1993-03-01|COLLECT COD|MAIL|ld carefully. unusual, regular dependenc| +13928|272634|22635|4|3|4819.86|0.10|0.06|A|F|1993-04-06|1993-03-22|1993-04-07|DELIVER IN PERSON|MAIL|ully even theo| +13928|148145|23150|5|39|46532.46|0.08|0.08|A|F|1993-04-10|1993-03-26|1993-04-27|TAKE BACK RETURN|TRUCK| foxes. daring, final i| +13929|674160|11700|1|3|3402.39|0.09|0.03|N|O|1997-01-22|1997-02-25|1997-01-24|TAKE BACK RETURN|MAIL|ve the pending ideas x| +13929|591026|3538|2|15|16755.00|0.04|0.08|N|O|1996-12-22|1996-12-31|1997-01-10|DELIVER IN PERSON|AIR|s. slyly regular theodol| +13930|317598|17599|1|11|17771.38|0.03|0.01|N|O|1998-04-09|1998-05-10|1998-04-30|NONE|RAIL|ly at the quickly expr| +13930|853313|28348|2|19|24059.13|0.02|0.05|N|O|1998-05-17|1998-04-20|1998-05-31|DELIVER IN PERSON|RAIL|es. unusual pl| +13931|98506|23509|1|15|22567.50|0.10|0.01|R|F|1993-01-17|1993-01-13|1993-02-15|TAKE BACK RETURN|AIR|ct furiously furiously final plate| +13931|574125|11659|2|23|27579.30|0.10|0.01|A|F|1992-12-10|1993-02-21|1993-01-03|NONE|FOB|nts according to| +13931|314416|39429|3|5|7152.00|0.00|0.01|A|F|1993-02-15|1993-01-08|1993-02-27|COLLECT COD|RAIL|ully. blithely special packages wake| +13931|377438|39946|4|10|15154.20|0.08|0.08|R|F|1993-01-06|1993-01-13|1993-01-24|NONE|TRUCK|en instructions are across the furi| +13931|591617|16640|5|10|17085.90|0.05|0.03|A|F|1993-01-21|1993-01-24|1993-02-14|TAKE BACK RETURN|RAIL|slyly final, ironic a| +13931|294869|19880|6|47|87600.95|0.06|0.05|A|F|1993-03-04|1993-01-12|1993-03-22|DELIVER IN PERSON|SHIP|gular dependencies are car| +13931|847431|47432|7|46|63405.94|0.01|0.03|R|F|1993-02-16|1993-01-24|1993-03-14|COLLECT COD|TRUCK|ally carefully regular platele| +13932|766639|29155|1|13|22172.80|0.10|0.08|N|O|1995-07-24|1995-09-27|1995-07-29|TAKE BACK RETURN|RAIL|instructions cajole slowly regular ideas. | +13933|457297|19807|1|39|48916.53|0.01|0.02|N|O|1996-07-02|1996-07-12|1996-07-16|NONE|SHIP|ages. slyly pending dependencies agai| +13933|787891|37892|2|14|27704.04|0.07|0.01|N|O|1996-07-10|1996-08-28|1996-07-17|DELIVER IN PERSON|REG AIR|uriously final accounts. unusu| +13933|72125|9629|3|9|9874.08|0.05|0.03|N|O|1996-09-12|1996-09-10|1996-09-22|COLLECT COD|REG AIR|counts lose blithely quickly thin reque| +13933|193762|6266|4|28|51961.28|0.01|0.08|N|O|1996-07-15|1996-09-07|1996-07-21|TAKE BACK RETURN|AIR| slyly special dep| +13933|545221|45222|5|1|1266.20|0.07|0.03|N|O|1996-09-16|1996-08-13|1996-09-23|DELIVER IN PERSON|MAIL|ong the carefully ironic package| +13933|525438|459|6|38|55609.58|0.01|0.02|N|O|1996-10-11|1996-08-11|1996-11-07|NONE|FOB|lites run blithely furiously regular | +13934|25529|25530|1|29|42181.08|0.06|0.04|N|O|1996-12-30|1996-12-24|1997-01-12|COLLECT COD|FOB|e. furiously pending accounts sleep b| +13934|62225|49729|2|16|18995.52|0.08|0.07|N|O|1997-01-19|1997-01-18|1997-01-29|DELIVER IN PERSON|REG AIR|ecial reque| +13934|805770|30803|3|25|41893.25|0.00|0.00|N|O|1997-01-03|1996-12-11|1997-01-07|TAKE BACK RETURN|AIR| escapades bey| +13934|560783|48317|4|15|27656.40|0.01|0.08|N|O|1996-12-18|1997-01-24|1997-01-07|DELIVER IN PERSON|AIR|ironic packages integrate slyly re| +13934|68392|30894|5|47|63938.33|0.09|0.04|N|O|1997-02-04|1997-01-09|1997-03-05|DELIVER IN PERSON|RAIL|refully blithely | +13934|460442|22952|6|21|29450.82|0.03|0.02|N|O|1997-03-01|1997-02-01|1997-03-12|TAKE BACK RETURN|AIR|s integrate accounts. busily regular a| +13934|646758|9271|7|49|83531.28|0.05|0.07|N|O|1996-12-21|1997-01-03|1997-01-08|DELIVER IN PERSON|SHIP|ites unwind furiously. furiously | +13935|58665|21167|1|7|11365.62|0.01|0.08|R|F|1993-12-06|1993-11-08|1993-12-09|COLLECT COD|TRUCK| dependencie| +13935|981574|19132|2|22|36421.66|0.07|0.03|R|F|1993-11-04|1993-09-29|1993-11-17|COLLECT COD|AIR|uickly ruthless foxes integrate after th| +13935|310475|10476|3|5|7427.30|0.00|0.05|A|F|1993-11-08|1993-10-05|1993-12-06|TAKE BACK RETURN|MAIL|furiously after the platelets. platelet| +13935|144722|32229|4|36|63601.92|0.10|0.04|A|F|1993-08-22|1993-10-18|1993-09-16|TAKE BACK RETURN|TRUCK|ing, regular packages. slyly r| +13935|333479|20998|5|2|3024.92|0.07|0.05|A|F|1993-09-05|1993-10-01|1993-09-06|DELIVER IN PERSON|RAIL|l accounts sleep furiously across th| +13935|775988|38504|6|21|43342.95|0.07|0.02|R|F|1993-10-16|1993-11-08|1993-10-18|COLLECT COD|REG AIR|hely final theodolites wake about the ca| +13935|22394|9895|7|10|13163.90|0.06|0.08|R|F|1993-12-04|1993-09-30|1993-12-31|DELIVER IN PERSON|REG AIR| courts wake| +13960|369488|7010|1|44|68528.68|0.05|0.08|N|O|1996-03-21|1996-05-02|1996-04-14|TAKE BACK RETURN|AIR|ously specia| +13960|971858|9416|2|15|28947.15|0.03|0.07|N|O|1996-06-13|1996-04-15|1996-06-19|COLLECT COD|TRUCK|ix among the | +13961|282750|32751|1|28|48516.72|0.08|0.00|R|F|1993-04-05|1993-02-07|1993-04-15|TAKE BACK RETURN|TRUCK|lithely special deposit| +13961|171564|21565|2|8|13084.48|0.02|0.05|R|F|1993-01-18|1993-02-09|1993-02-11|TAKE BACK RETURN|MAIL|g the regular asymptotes w| +13961|459749|47277|3|29|49552.88|0.02|0.00|R|F|1993-03-07|1993-03-06|1993-03-25|DELIVER IN PERSON|FOB|al instructions boost fluffily ac| +13961|993326|5846|4|11|15612.08|0.03|0.04|R|F|1993-03-19|1993-01-07|1993-03-30|DELIVER IN PERSON|RAIL|nd the regular de| +13961|818271|18272|5|41|48758.43|0.09|0.04|R|F|1993-01-12|1993-02-27|1993-02-09|NONE|AIR|ts. slyly final requ| +13962|859284|34319|1|8|9945.92|0.07|0.07|N|O|1995-09-23|1995-11-18|1995-10-07|DELIVER IN PERSON|REG AIR|uctions alongside of the qu| +13963|169145|31649|1|48|58278.72|0.09|0.08|R|F|1994-08-16|1994-08-19|1994-08-27|NONE|AIR|nal requests are blithely alo| +13963|814807|27324|2|49|84366.24|0.02|0.00|A|F|1994-08-07|1994-08-17|1994-08-24|TAKE BACK RETURN|REG AIR| about the final i| +13963|457415|19925|3|10|13723.90|0.06|0.06|A|F|1994-09-21|1994-09-03|1994-09-28|NONE|SHIP|ss instructions. bold d| +13963|763540|1086|4|5|8017.55|0.03|0.05|A|F|1994-09-16|1994-09-30|1994-09-26|TAKE BACK RETURN|MAIL|slyly fluffy theodolites run| +13963|813675|1224|5|16|25418.08|0.08|0.05|A|F|1994-09-11|1994-08-29|1994-10-11|NONE|FOB|lways around the fluff| +13963|423270|10795|6|7|8352.75|0.08|0.04|A|F|1994-08-04|1994-09-11|1994-08-22|TAKE BACK RETURN|FOB|sits run fluffily about the even, regu| +13964|623014|48039|1|39|36542.22|0.02|0.05|R|F|1993-07-13|1993-08-06|1993-07-18|NONE|AIR|ut the furiously blithe instr| +13964|993975|43976|2|23|47585.39|0.05|0.08|A|F|1993-06-21|1993-08-29|1993-07-13|TAKE BACK RETURN|SHIP|s shall have to x-ray carefully across the | +13964|733223|20766|3|34|42710.46|0.09|0.04|R|F|1993-10-01|1993-09-11|1993-10-08|COLLECT COD|MAIL|the blithely fluffy| +13965|332325|32326|1|21|28503.51|0.08|0.01|A|F|1992-04-05|1992-05-11|1992-04-06|NONE|SHIP| even packages. fluffily even ideas sleep | +13965|383904|46412|2|8|15903.12|0.03|0.04|R|F|1992-05-13|1992-05-27|1992-05-31|TAKE BACK RETURN|RAIL|ithely ironic theodolites. regular pa| +13965|269386|44397|3|36|48793.32|0.09|0.01|A|F|1992-02-29|1992-05-02|1992-03-11|NONE|TRUCK|ependencies are. packages on the carefu| +13965|569417|19418|4|33|49050.87|0.00|0.07|A|F|1992-05-30|1992-04-26|1992-06-25|TAKE BACK RETURN|REG AIR|ithely regular packag| +13965|178780|16290|5|26|48328.28|0.03|0.07|R|F|1992-05-11|1992-04-03|1992-05-17|NONE|TRUCK|sly carefully brave pinto b| +13966|305786|43305|1|25|44794.25|0.08|0.02|A|F|1994-06-03|1994-04-30|1994-07-01|NONE|AIR| around th| +13966|342622|17635|2|33|54932.13|0.09|0.07|R|F|1994-05-24|1994-04-16|1994-06-02|DELIVER IN PERSON|FOB|ully even packages cajole blithe| +13966|441450|41451|3|47|65397.21|0.05|0.02|A|F|1994-04-17|1994-04-11|1994-05-05|NONE|SHIP| cajole quickly final plat| +13966|441503|29028|4|13|18778.24|0.07|0.06|A|F|1994-03-06|1994-04-19|1994-04-02|TAKE BACK RETURN|MAIL|te express, slow requests? pending, | +13967|457672|7673|1|10|16296.50|0.04|0.08|N|O|1998-04-05|1998-04-06|1998-04-24|COLLECT COD|REG AIR|oxes detect furiously. carefull| +13967|81473|6476|2|50|72723.50|0.09|0.04|N|O|1998-06-04|1998-04-07|1998-06-16|TAKE BACK RETURN|TRUCK|gle slyly carefully idle theodolites. caref| +13967|315998|15999|3|47|94657.06|0.05|0.00|N|O|1998-05-27|1998-04-08|1998-05-28|DELIVER IN PERSON|FOB|ickly expr| +13992|703|38204|1|28|44903.60|0.02|0.04|A|F|1993-09-02|1993-10-15|1993-10-01|DELIVER IN PERSON|MAIL|riously quic| +13992|803159|40708|2|5|5310.55|0.08|0.07|R|F|1993-12-09|1993-11-15|1994-01-08|DELIVER IN PERSON|TRUCK| blithely i| +13992|689819|27359|3|11|19896.58|0.06|0.03|A|F|1993-12-25|1993-10-27|1994-01-19|TAKE BACK RETURN|REG AIR|e tithes haggl| +13992|787747|25293|4|17|31190.07|0.01|0.05|A|F|1993-10-14|1993-10-10|1993-10-17|NONE|TRUCK|ts. furiously bold account| +13992|647508|10021|5|25|36386.75|0.01|0.02|R|F|1993-11-07|1993-10-21|1993-11-28|COLLECT COD|AIR|ve carefull| +13993|255918|30929|1|40|74956.00|0.02|0.01|R|F|1995-01-10|1994-12-02|1995-01-28|DELIVER IN PERSON|AIR|e fluffily even packages.| +13993|208857|8858|2|1|1765.84|0.04|0.01|A|F|1995-01-22|1994-11-15|1995-02-10|COLLECT COD|SHIP| carefully regular asymp| +13993|250646|647|3|21|33529.23|0.10|0.05|R|F|1994-12-04|1994-11-23|1994-12-09|NONE|RAIL|lar theodolites. pinto | +13993|593077|18100|4|20|23401.00|0.04|0.02|R|F|1994-12-30|1994-12-07|1995-01-03|TAKE BACK RETURN|REG AIR|slyly across the fluffily regular pla| +13993|837619|12652|5|48|74715.36|0.00|0.08|R|F|1994-11-22|1994-12-15|1994-12-08|TAKE BACK RETURN|RAIL|fily regular f| +13994|133334|45837|1|34|46489.22|0.02|0.04|N|O|1996-09-03|1996-07-04|1996-09-17|TAKE BACK RETURN|RAIL|ages. blithely unusual platelets | +13994|935275|22830|2|9|11792.07|0.06|0.04|N|O|1996-07-01|1996-06-14|1996-07-16|TAKE BACK RETURN|MAIL| the bold accounts!| +13994|163474|25978|3|18|27674.46|0.02|0.02|N|O|1996-08-28|1996-07-27|1996-09-17|NONE|RAIL|quickly ironic dependencies. sometime| +13994|507161|7162|4|50|58407.00|0.10|0.01|N|O|1996-06-23|1996-06-16|1996-07-20|COLLECT COD|RAIL|le packages | +13994|842477|42478|5|12|17033.16|0.10|0.04|N|O|1996-09-02|1996-07-25|1996-09-14|TAKE BACK RETURN|FOB|fix among the carefully regular packages; | +13994|495127|20146|6|6|6732.60|0.01|0.08|N|O|1996-06-28|1996-06-12|1996-07-07|DELIVER IN PERSON|TRUCK| slyly unusual dolphins a| +13994|583143|20677|7|45|55175.40|0.10|0.00|N|O|1996-07-15|1996-07-13|1996-08-08|DELIVER IN PERSON|FOB|fully. ironic deposits are about t| +13995|870202|7754|1|35|41025.60|0.10|0.02|R|F|1994-04-28|1994-05-07|1994-05-12|TAKE BACK RETURN|FOB| the requests. pinto beans nag quick| +13995|470375|7903|2|33|44396.55|0.06|0.05|A|F|1994-03-14|1994-04-05|1994-03-21|NONE|RAIL|s pinto beans. furiously fina| +13995|577462|2485|3|26|40025.44|0.02|0.04|A|F|1994-02-26|1994-04-05|1994-03-05|NONE|TRUCK|ay after the slowly even deposits. car| +13995|399485|24500|4|44|69716.68|0.08|0.07|R|F|1994-03-04|1994-04-03|1994-03-15|COLLECT COD|SHIP| haggle quickly pa| +13996|842855|42856|1|20|35956.20|0.01|0.01|R|F|1993-07-23|1993-08-26|1993-08-15|TAKE BACK RETURN|MAIL| carefully even platelets according to | +13996|862050|12051|2|7|7084.07|0.01|0.06|R|F|1993-10-16|1993-08-05|1993-10-27|NONE|TRUCK|edly ironic packages. slyly idle di| +13996|467628|42647|3|28|44676.80|0.04|0.08|R|F|1993-07-02|1993-09-02|1993-07-27|NONE|TRUCK|the blithely | +13996|423124|10649|4|7|7329.70|0.10|0.04|R|F|1993-10-17|1993-08-13|1993-10-22|NONE|FOB|es. furiously special ideas alongsi| +13996|442997|42998|5|40|77598.80|0.01|0.02|R|F|1993-10-07|1993-09-06|1993-10-08|COLLECT COD|SHIP|lar packages. ironic excuses a| +13997|964355|26875|1|20|28386.20|0.05|0.07|R|F|1993-06-17|1993-06-04|1993-07-07|TAKE BACK RETURN|TRUCK|d the express, u| +13997|898751|23786|2|31|54241.01|0.03|0.03|R|F|1993-07-31|1993-06-08|1993-08-25|NONE|RAIL| to the blithely express requests| +13997|305473|17980|3|47|69487.62|0.05|0.03|R|F|1993-07-19|1993-06-19|1993-08-03|NONE|FOB|ins are blithely b| +13997|76947|26948|4|40|76957.60|0.04|0.07|R|F|1993-05-19|1993-06-19|1993-05-31|NONE|SHIP|ests haggle carefully. carefully fin| +13997|239134|26647|5|1|1073.12|0.09|0.00|A|F|1993-07-21|1993-06-26|1993-08-02|DELIVER IN PERSON|REG AIR|. blithely ironic excuses alongside of| +13997|113466|13467|6|14|20712.44|0.03|0.00|A|F|1993-06-14|1993-06-19|1993-07-12|TAKE BACK RETURN|MAIL| deposits | +13997|13424|13425|7|47|62858.74|0.02|0.02|A|F|1993-05-07|1993-07-11|1993-05-20|NONE|REG AIR|p carefull| +13998|615498|3035|1|40|56538.40|0.00|0.05|N|O|1995-07-01|1995-06-13|1995-07-13|COLLECT COD|REG AIR|nic packages boost slyly car| +13998|662241|24755|2|39|46925.19|0.08|0.01|A|F|1995-05-08|1995-07-06|1995-05-11|NONE|SHIP| multipliers. furiously b| +13998|275347|12863|3|43|56860.19|0.02|0.00|A|F|1995-05-20|1995-06-01|1995-06-15|DELIVER IN PERSON|TRUCK|ly furious asympto| +13998|753588|3589|4|42|68945.10|0.01|0.00|A|F|1995-05-24|1995-05-26|1995-06-04|DELIVER IN PERSON|TRUCK|r pains haggle. instructions inte| +13998|542594|17615|5|47|76918.79|0.07|0.06|R|F|1995-05-09|1995-06-22|1995-05-30|NONE|AIR|lent notornis doubt slyly past the fina| +13999|264047|26553|1|7|7077.21|0.10|0.01|R|F|1994-01-01|1993-11-24|1994-01-24|COLLECT COD|TRUCK|instructions wak| +13999|823971|11520|2|6|11369.58|0.09|0.02|A|F|1993-10-20|1993-11-20|1993-11-06|TAKE BACK RETURN|RAIL|wly even requests use. slyly unusual foxes | +13999|469875|7403|3|19|35052.15|0.07|0.02|A|F|1994-01-10|1993-12-08|1994-01-12|DELIVER IN PERSON|REG AIR|ress accounts affix carefully blithely ir| +13999|173562|48569|4|9|14720.04|0.04|0.05|R|F|1993-11-13|1993-12-06|1993-12-05|TAKE BACK RETURN|REG AIR|luffily iron| +13999|43341|18342|5|12|15412.08|0.09|0.02|A|F|1994-01-27|1993-12-16|1994-02-21|TAKE BACK RETURN|SHIP|lyly regular theodolites nag over the | +14024|4642|42143|1|14|21652.96|0.06|0.08|A|F|1992-06-01|1992-06-29|1992-06-05|NONE|AIR|lent packages | +14024|1291|38792|2|36|42922.44|0.04|0.08|A|F|1992-07-19|1992-07-02|1992-08-14|NONE|TRUCK|o beans wake fluffily. pendi| +14024|682471|7498|3|6|8720.64|0.03|0.08|R|F|1992-05-16|1992-06-20|1992-06-09|TAKE BACK RETURN|AIR|s hang slyl| +14024|286708|24224|4|2|3389.38|0.09|0.07|R|F|1992-08-06|1992-06-10|1992-08-12|TAKE BACK RETURN|TRUCK| against the fluffily regula| +14024|697612|35152|5|22|35410.76|0.10|0.05|A|F|1992-07-14|1992-06-08|1992-07-19|DELIVER IN PERSON|FOB| nag about the dari| +14025|850253|254|1|27|32486.67|0.00|0.07|N|O|1995-07-20|1995-05-21|1995-07-21|COLLECT COD|MAIL|onic account| +14025|192457|29967|2|15|23241.75|0.08|0.00|N|O|1995-06-26|1995-06-08|1995-07-18|COLLECT COD|TRUCK|lar deposits. slyly ironic deposits | +14025|608472|33497|3|41|56598.04|0.09|0.03|R|F|1995-04-22|1995-07-11|1995-05-09|COLLECT COD|REG AIR|rts along t| +14025|575994|13528|4|22|45539.34|0.04|0.04|N|O|1995-07-23|1995-07-09|1995-08-19|DELIVER IN PERSON|TRUCK|st about the bold | +14025|717245|42274|5|19|23981.99|0.02|0.07|N|O|1995-08-12|1995-07-07|1995-08-28|DELIVER IN PERSON|MAIL|beans across the carefully express dep| +14025|728557|3586|6|33|52322.16|0.00|0.01|N|F|1995-05-23|1995-05-26|1995-06-19|COLLECT COD|AIR|unts sleep across the requests. deposits x| +14025|855000|42552|7|19|18144.24|0.05|0.03|N|O|1995-06-22|1995-07-19|1995-07-11|NONE|MAIL|y regular pa| +14026|971553|9111|1|8|12996.08|0.03|0.04|N|O|1996-01-10|1996-02-21|1996-02-05|NONE|AIR|t the quickly unusual dolphins. bold reques| +14026|888746|1264|2|39|67653.30|0.02|0.03|N|O|1996-01-22|1996-01-02|1996-02-11|COLLECT COD|RAIL|cial asymptotes haggle quickly c| +14026|145270|45271|3|25|32881.75|0.00|0.05|N|O|1996-01-12|1996-01-07|1996-01-15|NONE|MAIL| to the fin| +14026|544224|31755|4|21|26632.20|0.07|0.02|N|O|1996-01-05|1996-02-21|1996-01-07|NONE|REG AIR|ng to the bold a| +14026|757325|32356|5|7|9676.03|0.07|0.01|N|O|1996-01-22|1996-02-07|1996-02-14|DELIVER IN PERSON|AIR|cajole fluffily furiousl| +14026|347611|22624|6|38|63026.80|0.02|0.04|N|O|1996-01-18|1996-02-20|1996-01-21|COLLECT COD|REG AIR|ies wake carefully furio| +14026|288647|1153|7|14|22898.82|0.06|0.04|N|O|1996-03-04|1996-01-29|1996-03-20|COLLECT COD|MAIL|ke thinly. fluffily eve| +14027|274827|24828|1|23|41441.63|0.05|0.00|N|O|1995-12-26|1995-11-26|1996-01-07|TAKE BACK RETURN|REG AIR|hely regular instructi| +14027|8105|45606|2|50|50655.00|0.04|0.07|N|O|1995-09-16|1995-11-20|1995-10-08|DELIVER IN PERSON|RAIL| sleep slyly unusual p| +14027|219687|19688|3|6|9640.02|0.09|0.01|N|O|1995-09-25|1995-12-04|1995-10-06|DELIVER IN PERSON|RAIL| accounts use quickly along the furiou| +14027|272483|9999|4|48|69862.56|0.00|0.03|N|O|1995-11-11|1995-12-10|1995-11-19|TAKE BACK RETURN|REG AIR|ld accounts along the car| +14027|621581|9118|5|1|1502.55|0.06|0.06|N|O|1995-12-20|1995-10-18|1996-01-15|NONE|FOB|uctions cajole blith| +14028|28021|3022|1|6|5694.12|0.05|0.08|A|F|1995-03-03|1995-04-07|1995-03-11|NONE|TRUCK|instead of the fur| +14028|942074|42075|2|30|33480.90|0.00|0.07|R|F|1995-05-10|1995-05-16|1995-05-27|TAKE BACK RETURN|REG AIR|equests. b| +14028|426196|26197|3|48|53864.16|0.05|0.06|R|F|1995-04-24|1995-04-09|1995-05-17|TAKE BACK RETURN|FOB|nag blithely across the bold | +14028|68092|18093|4|6|6360.54|0.02|0.01|R|F|1995-04-10|1995-05-13|1995-04-12|NONE|MAIL|, even theodolites cajole slyl| +14029|492428|17447|1|23|32669.20|0.10|0.06|N|O|1996-01-12|1995-12-09|1996-02-09|TAKE BACK RETURN|TRUCK|thely ironic ac| +14029|224167|36672|2|10|10911.50|0.06|0.02|N|O|1995-11-27|1995-11-11|1995-12-08|NONE|RAIL|jole about the furious foxes. quic| +14029|572972|10506|3|35|71573.25|0.03|0.08|N|O|1995-11-26|1995-11-09|1995-12-05|DELIVER IN PERSON|SHIP|ongside of the stealt| +14030|916146|41183|1|34|39511.40|0.07|0.02|N|O|1998-01-02|1998-01-24|1998-01-30|NONE|TRUCK|eep even requests. accounts eat ca| +14030|649839|49840|2|43|76918.40|0.06|0.06|N|O|1998-03-01|1998-02-08|1998-03-12|COLLECT COD|SHIP|t the furi| +14030|835404|35405|3|26|34823.36|0.10|0.00|N|O|1997-12-18|1998-02-01|1998-01-09|COLLECT COD|FOB|. carefully unusua| +14030|632762|32763|4|47|79652.31|0.07|0.04|N|O|1997-12-31|1998-02-04|1998-01-17|NONE|REG AIR| pending the| +14030|817204|42237|5|44|49331.04|0.07|0.05|N|O|1998-02-13|1998-01-03|1998-03-14|NONE|RAIL|es are furiously quickly bold pinto be| +14030|732185|32186|6|15|18257.25|0.05|0.02|N|O|1998-01-24|1998-01-08|1998-02-06|NONE|REG AIR|ns. regular, regular theodolites cajole b| +14030|825148|25149|7|34|36485.40|0.08|0.01|N|O|1998-03-02|1998-02-05|1998-03-11|DELIVER IN PERSON|FOB|above the flu| +14031|247877|10382|1|32|58395.52|0.06|0.03|R|F|1993-12-25|1993-12-14|1993-12-29|TAKE BACK RETURN|SHIP|e slyly qui| +14031|54903|29906|2|32|59452.80|0.04|0.04|A|F|1994-03-03|1994-01-23|1994-03-23|COLLECT COD|REG AIR|rding to the q| +14031|741850|16879|3|4|7567.28|0.05|0.01|A|F|1994-02-03|1994-01-19|1994-02-19|DELIVER IN PERSON|SHIP|unts across the quickl| +14031|259430|9431|4|38|52797.96|0.07|0.00|A|F|1993-11-22|1994-01-12|1993-12-02|COLLECT COD|RAIL|r ideas. furiously quic| +14031|235577|23090|5|13|19663.28|0.06|0.06|R|F|1994-01-16|1993-12-21|1994-02-04|DELIVER IN PERSON|TRUCK|blithely pending ide| +14056|350740|13248|1|44|78792.12|0.01|0.00|N|O|1998-08-24|1998-07-14|1998-08-28|DELIVER IN PERSON|TRUCK|counts. idle depos| +14057|399469|49470|1|36|56464.20|0.08|0.00|N|O|1997-01-08|1997-01-06|1997-01-13|TAKE BACK RETURN|SHIP|ress deposits. furiously ironic dolph| +14057|875171|25172|2|14|16045.82|0.10|0.06|N|O|1997-01-22|1996-12-26|1997-02-19|TAKE BACK RETURN|FOB|otes cajole carefully. sile| +14057|983448|33449|3|19|29096.60|0.05|0.07|N|O|1997-02-13|1997-01-23|1997-03-08|NONE|FOB|fluffily among the slyly regular deposi| +14057|799535|37081|4|24|39228.00|0.00|0.08|N|O|1996-11-27|1997-01-23|1996-12-05|NONE|TRUCK|c, final deposits acros| +14057|779191|41707|5|45|57157.20|0.07|0.01|N|O|1997-01-22|1997-01-24|1997-02-17|NONE|FOB|tions. regular requests detect furiously| +14058|93131|5633|1|1|1124.13|0.03|0.01|N|O|1997-10-25|1997-09-14|1997-10-29|COLLECT COD|AIR| regular accounts about the pint| +14059|362386|49908|1|49|70970.13|0.04|0.07|N|O|1995-12-15|1995-11-24|1995-12-31|DELIVER IN PERSON|AIR|ironic, pending request| +14059|621323|33836|2|22|27374.38|0.10|0.02|N|O|1995-11-01|1995-12-11|1995-11-12|DELIVER IN PERSON|REG AIR|gular packages boost slyly ironic idea| +14059|571670|46693|3|37|64441.05|0.09|0.08|N|O|1995-09-29|1995-11-03|1995-10-16|NONE|RAIL|silent pinto beans. carefully s| +14059|49500|49501|4|4|5798.00|0.05|0.07|N|O|1995-11-07|1995-11-03|1995-11-13|NONE|TRUCK|s haggle blithely? enticingly regular dep| +14060|482581|7600|1|32|50033.92|0.06|0.07|N|O|1998-07-29|1998-06-15|1998-08-04|DELIVER IN PERSON|SHIP|phins. regular, even requests cajole qu| +14060|727724|2753|2|14|24523.66|0.07|0.01|N|O|1998-06-23|1998-06-13|1998-07-13|TAKE BACK RETURN|RAIL|ts cajole bli| +14060|847207|22240|3|35|40395.60|0.05|0.01|N|O|1998-08-07|1998-05-28|1998-08-08|NONE|FOB|deposits slee| +14061|226451|13964|1|19|26171.36|0.03|0.00|A|F|1992-07-03|1992-05-20|1992-07-10|DELIVER IN PERSON|MAIL|e quickly fluffily regular request| +14061|952618|40176|2|4|6682.28|0.03|0.04|R|F|1992-04-24|1992-05-28|1992-05-07|DELIVER IN PERSON|AIR|heodolites. slowly unusual requests| +14061|641101|41102|3|13|13546.91|0.00|0.07|R|F|1992-06-09|1992-05-30|1992-06-18|DELIVER IN PERSON|MAIL|the furiously regular r| +14061|981732|19290|4|34|61665.46|0.04|0.00|R|F|1992-05-07|1992-04-06|1992-05-15|NONE|SHIP|phins. carefully re| +14061|969093|6651|5|30|34861.50|0.02|0.03|A|F|1992-05-09|1992-04-19|1992-06-08|TAKE BACK RETURN|AIR|slyly above| +14062|225802|811|1|37|63928.23|0.02|0.00|N|O|1998-07-12|1998-06-19|1998-07-19|DELIVER IN PERSON|MAIL| carefully| +14062|52943|15445|2|11|20855.34|0.06|0.07|N|O|1998-05-22|1998-06-16|1998-05-25|NONE|SHIP|st furiously alongside of the carefully reg| +14062|805083|5084|3|35|34581.40|0.08|0.00|N|O|1998-06-28|1998-06-04|1998-07-01|NONE|MAIL|hely even requests. i| +14063|847425|9942|1|21|28819.98|0.06|0.04|R|F|1993-03-23|1993-02-07|1993-03-25|NONE|MAIL|al deposits haggle? slyly final requ| +14063|665867|28381|2|18|32990.94|0.00|0.04|R|F|1993-02-28|1993-03-13|1993-03-18|DELIVER IN PERSON|SHIP| unusual packages affix furiousl| +14063|210824|48337|3|9|15613.29|0.06|0.07|R|F|1993-02-27|1993-01-28|1993-03-17|COLLECT COD|AIR|are slyly. even foxes haggle. carefu| +14063|317510|5029|4|45|68737.50|0.10|0.06|R|F|1993-02-01|1993-02-18|1993-02-15|TAKE BACK RETURN|TRUCK|ld packages sleep flu| +14088|753103|40649|1|7|8092.49|0.00|0.05|R|F|1993-03-20|1993-04-26|1993-03-31|TAKE BACK RETURN|RAIL|around the final, ironic accounts. bli| +14088|395203|20218|2|22|28560.18|0.01|0.06|A|F|1993-03-18|1993-05-02|1993-03-22|COLLECT COD|REG AIR|cial dolphins boost slyly slyly ironic a| +14088|167369|42376|3|39|56018.04|0.00|0.02|R|F|1993-06-10|1993-05-07|1993-06-25|COLLECT COD|SHIP|ly against the ironic, regular instructions| +14088|966397|28917|4|42|61460.70|0.05|0.06|A|F|1993-06-19|1993-05-05|1993-06-23|DELIVER IN PERSON|AIR|g to the ironic theodolites haggle quickly| +14088|221012|21013|5|9|8397.00|0.03|0.06|A|F|1993-04-13|1993-04-26|1993-04-29|TAKE BACK RETURN|REG AIR|unts x-ray alongside of the theodo| +14088|540015|2526|6|45|47474.55|0.04|0.04|R|F|1993-05-16|1993-04-27|1993-06-05|COLLECT COD|AIR|ly final instructions affix. unusual depo| +14089|881279|31280|1|16|20163.68|0.05|0.05|R|F|1994-09-21|1994-09-04|1994-10-09|NONE|AIR|the slyly | +14090|97351|47352|1|32|43147.20|0.10|0.05|A|F|1995-04-19|1995-06-09|1995-04-22|DELIVER IN PERSON|AIR|cial theodolites solve past the quickly reg| +14090|173221|35725|2|8|10353.76|0.06|0.04|N|O|1995-07-05|1995-06-11|1995-07-23|DELIVER IN PERSON|AIR|endencies along the ins| +14090|318321|30828|3|48|64286.88|0.02|0.08|N|O|1995-07-19|1995-06-26|1995-08-01|COLLECT COD|MAIL|final packages. quickly bold pi| +14090|10169|10170|4|35|37770.60|0.00|0.05|N|O|1995-06-20|1995-06-14|1995-07-08|DELIVER IN PERSON|SHIP|nag carefu| +14090|899840|49841|5|32|58873.60|0.01|0.02|N|O|1995-07-20|1995-06-04|1995-08-05|TAKE BACK RETURN|REG AIR|usly regular excuses. carefully| +14091|161836|49346|1|6|11386.98|0.06|0.05|N|O|1997-08-08|1997-07-27|1997-08-23|NONE|FOB|yly ironic the| +14091|961769|11770|2|6|10984.32|0.10|0.02|N|O|1997-07-01|1997-09-10|1997-07-30|DELIVER IN PERSON|RAIL|p carefully after | +14092|133929|8934|1|23|45147.16|0.07|0.07|N|O|1998-10-15|1998-09-14|1998-10-25|DELIVER IN PERSON|MAIL|sleep requests. carefully special c| +14092|938854|38855|2|15|28392.15|0.01|0.01|N|O|1998-08-04|1998-08-18|1998-08-14|TAKE BACK RETURN|TRUCK|uriously ironic foxes| +14092|317363|29870|3|4|5521.40|0.10|0.06|N|O|1998-08-20|1998-08-13|1998-09-08|DELIVER IN PERSON|REG AIR|y express pinto beans. | +14092|918332|30851|4|27|36457.83|0.02|0.05|N|O|1998-09-06|1998-07-27|1998-09-16|TAKE BACK RETURN|TRUCK|lithely ironic packages. regular, spe| +14093|781156|31157|1|19|23505.28|0.00|0.02|N|O|1998-07-08|1998-08-12|1998-07-27|NONE|TRUCK|es above the requests haggle fluff| +14093|883964|8999|2|37|72073.04|0.00|0.06|N|O|1998-10-07|1998-09-13|1998-10-10|DELIVER IN PERSON|AIR|age slyly. unusual theodolites nag about th| +14094|534238|46749|1|18|22899.78|0.08|0.04|A|F|1992-11-23|1992-12-25|1992-11-28|DELIVER IN PERSON|RAIL|ajole busily s| +14094|935886|10923|2|20|38436.80|0.10|0.05|A|F|1992-11-15|1992-12-05|1992-12-06|DELIVER IN PERSON|TRUCK|e furiously. carefully u| +14094|428047|3064|3|46|44850.92|0.09|0.03|A|F|1993-02-15|1993-01-30|1993-03-10|DELIVER IN PERSON|MAIL|ess package| +14094|183209|8216|4|24|31012.80|0.09|0.01|A|F|1993-01-21|1993-01-31|1993-02-12|COLLECT COD|MAIL|ing ideas. f| +14094|179932|42436|5|47|94560.71|0.01|0.04|A|F|1993-03-01|1992-12-12|1993-03-20|DELIVER IN PERSON|AIR|y express courts. theodolite| +14094|113199|13200|6|50|60609.50|0.00|0.08|A|F|1992-11-16|1992-12-12|1992-11-20|DELIVER IN PERSON|FOB|ithely bold| +14094|527396|27397|7|40|56934.80|0.06|0.07|R|F|1992-11-20|1992-12-28|1992-11-29|DELIVER IN PERSON|AIR|sly regular accounts. fluffily regul| +14095|944561|19598|1|24|38532.48|0.02|0.06|N|O|1997-10-21|1997-09-23|1997-11-19|COLLECT COD|TRUCK|gs play slyly across the b| +14095|225191|37696|2|21|23439.78|0.10|0.06|N|O|1997-09-27|1997-08-07|1997-10-06|TAKE BACK RETURN|MAIL|its. furiously final deposit| +14095|771630|34146|3|32|54451.20|0.08|0.04|N|O|1997-08-11|1997-08-07|1997-08-27|NONE|AIR| cajole above the express, b| +14095|769707|32223|4|35|62183.45|0.00|0.06|N|O|1997-07-07|1997-08-07|1997-08-03|NONE|SHIP| even requests. furiously ironic idea| +14095|450746|25765|5|50|84836.00|0.04|0.06|N|O|1997-08-28|1997-07-31|1997-09-10|NONE|AIR| special theodolites boost sly| +14095|680760|43274|6|29|50481.17|0.04|0.05|N|O|1997-09-17|1997-09-21|1997-10-08|DELIVER IN PERSON|RAIL|ns nag slyly final de| +14095|525177|25178|7|26|31255.90|0.01|0.04|N|O|1997-07-25|1997-08-26|1997-08-13|NONE|AIR|ackages sleep slyl| +14120|640000|40001|1|18|16919.46|0.04|0.06|N|O|1997-06-20|1997-06-04|1997-07-08|NONE|RAIL|xes. carefully special theo| +14121|32023|44524|1|24|22920.48|0.08|0.02|R|F|1992-12-11|1992-10-26|1992-12-14|COLLECT COD|RAIL|s asymptotes haggle sly| +14121|201234|1235|2|45|51084.90|0.09|0.07|A|F|1992-11-10|1992-11-22|1992-11-13|NONE|REG AIR|sly across the fluf| +14121|128324|3329|3|3|4056.96|0.05|0.05|R|F|1992-12-20|1992-10-25|1992-12-24|NONE|SHIP|beans are slyly. carefully pending instruc| +14121|736189|23732|4|6|7350.90|0.03|0.03|A|F|1992-12-16|1992-11-19|1992-12-17|NONE|TRUCK|blithely regular excus| +14121|128120|15627|5|18|20666.16|0.09|0.03|R|F|1992-09-16|1992-11-21|1992-09-28|COLLECT COD|MAIL|furiously even deposits. carefully | +14122|972427|47466|1|5|7496.90|0.09|0.08|N|O|1996-06-15|1996-04-06|1996-06-22|DELIVER IN PERSON|TRUCK|tes cajole slyly. bl| +14122|576298|26299|2|29|39853.83|0.02|0.05|N|O|1996-04-06|1996-05-24|1996-05-04|TAKE BACK RETURN|AIR|ely carefully special courts. fl| +14122|823834|11383|3|1|1757.79|0.09|0.00|N|O|1996-05-29|1996-04-19|1996-06-16|DELIVER IN PERSON|FOB|ackages sleep. carefully e| +14122|162254|37261|4|46|60547.50|0.08|0.03|N|O|1996-06-16|1996-05-20|1996-06-24|DELIVER IN PERSON|TRUCK|sly idle foxe| +14123|729961|42476|1|35|69682.55|0.04|0.04|N|O|1998-04-15|1998-02-28|1998-04-24|DELIVER IN PERSON|FOB|hely regular theodolites. iro| +14123|450634|38162|2|19|30107.59|0.10|0.06|N|O|1998-03-16|1998-03-29|1998-03-20|TAKE BACK RETURN|RAIL|tions above the bold platelets need to | +14123|802111|27144|3|8|8104.56|0.04|0.06|N|O|1998-01-17|1998-02-08|1998-01-26|NONE|AIR|accounts above the carefully s| +14124|643545|43546|1|29|43166.79|0.06|0.04|N|O|1996-03-02|1996-03-20|1996-03-21|DELIVER IN PERSON|FOB| cajole blithely special sentiments| +14124|56021|43525|2|15|14655.30|0.09|0.05|N|O|1996-02-21|1996-02-22|1996-03-13|DELIVER IN PERSON|SHIP|lar foxes. furiou| +14124|536523|24054|3|28|43666.00|0.09|0.00|N|O|1996-03-06|1996-03-01|1996-03-20|TAKE BACK RETURN|TRUCK|sly bold deposits. slyly even ac| +14124|338456|25975|4|32|47822.08|0.03|0.04|N|O|1996-04-01|1996-03-11|1996-05-01|DELIVER IN PERSON|TRUCK|slyly special foxes| +14124|414588|27097|5|27|40569.12|0.03|0.04|N|O|1996-05-09|1996-04-19|1996-05-14|COLLECT COD|MAIL|ar, express depos| +14124|979051|16609|6|29|32770.29|0.09|0.05|N|O|1996-02-02|1996-04-20|1996-03-01|TAKE BACK RETURN|REG AIR|ly regular courts.| +14124|902957|40512|7|5|9799.55|0.10|0.05|N|O|1996-02-28|1996-04-05|1996-03-05|TAKE BACK RETURN|TRUCK|r theodolites boost quietly unusua| +14125|983543|46063|1|17|27650.50|0.01|0.05|N|O|1998-08-31|1998-08-26|1998-09-17|NONE|AIR|ly. ironically final deposits hagg| +14125|404137|29154|2|41|42685.51|0.03|0.03|N|O|1998-08-26|1998-08-26|1998-09-19|TAKE BACK RETURN|REG AIR|ing to the carefully ironic deposit| +14125|314205|1724|3|42|51205.98|0.10|0.04|N|O|1998-09-20|1998-08-10|1998-10-04|DELIVER IN PERSON|TRUCK|. blithely special packages are even accou| +14126|284718|34719|1|14|23837.80|0.06|0.01|A|F|1992-04-05|1992-04-29|1992-04-07|NONE|MAIL|unts. quic| +14126|242857|5362|2|30|53995.20|0.10|0.00|R|F|1992-04-25|1992-04-18|1992-05-04|NONE|RAIL|s. slyly regular deposits nag care| +14126|694234|19261|3|46|56497.20|0.06|0.06|R|F|1992-03-23|1992-06-11|1992-04-07|TAKE BACK RETURN|RAIL|e quickly regular excuses; expre| +14126|977321|27322|4|21|29363.88|0.00|0.03|R|F|1992-03-26|1992-06-15|1992-04-07|COLLECT COD|RAIL|uriously by the pending packa| +14126|823330|48363|5|45|56398.05|0.06|0.07|A|F|1992-04-13|1992-05-25|1992-04-22|NONE|AIR|ously iron| +14126|704070|16585|6|7|7518.28|0.06|0.05|A|F|1992-04-09|1992-05-23|1992-04-23|TAKE BACK RETURN|TRUCK|ss instructions af| +14126|291410|41411|7|38|53253.20|0.08|0.07|A|F|1992-05-10|1992-06-17|1992-06-07|COLLECT COD|TRUCK|eodolites. regular, bold packages haggle ac| +14127|718631|18632|1|33|54436.80|0.08|0.05|A|F|1994-03-16|1994-03-07|1994-03-29|TAKE BACK RETURN|RAIL|uickly ironic| +14127|21225|21226|2|43|49287.46|0.03|0.02|R|F|1994-02-08|1994-01-18|1994-02-12|COLLECT COD|REG AIR|osits. expres| +14152|909121|21640|1|42|47463.36|0.01|0.02|R|F|1994-02-02|1994-01-25|1994-02-12|NONE|AIR| the fluffily regul| +14152|582931|20465|2|44|88612.04|0.05|0.03|A|F|1994-02-07|1993-12-15|1994-03-09|DELIVER IN PERSON|TRUCK|egular packages sublate slyly. regul| +14153|376347|26348|1|28|39853.24|0.10|0.06|N|O|1996-06-15|1996-06-20|1996-06-26|COLLECT COD|RAIL|aggle furiously according to the eve| +14153|249871|49872|2|4|7283.44|0.04|0.07|N|O|1996-08-20|1996-06-26|1996-09-13|DELIVER IN PERSON|RAIL|ages about the dependencies are b| +14153|570719|8253|3|12|21476.28|0.05|0.07|N|O|1996-09-03|1996-06-29|1996-09-05|TAKE BACK RETURN|RAIL|ackages. blithely ironic asymptotes | +14153|59625|47129|4|38|60215.56|0.03|0.06|N|O|1996-05-24|1996-06-28|1996-06-06|COLLECT COD|SHIP|regular packages about the blithely un| +14153|114515|39520|5|20|30590.20|0.01|0.00|N|O|1996-05-12|1996-07-20|1996-06-02|TAKE BACK RETURN|REG AIR|express deposits b| +14154|993470|31028|1|1|1563.43|0.04|0.04|N|O|1996-04-24|1996-04-07|1996-05-23|TAKE BACK RETURN|MAIL|accounts x-r| +14154|250198|199|2|14|16074.52|0.01|0.05|N|O|1996-02-18|1996-04-13|1996-03-01|DELIVER IN PERSON|RAIL|ckages. ironic theodolites sleep fu| +14154|73846|11350|3|3|5459.52|0.07|0.00|N|O|1996-02-22|1996-04-09|1996-03-04|DELIVER IN PERSON|TRUCK|o the requests sleep theo| +14154|118434|5941|4|14|20334.02|0.08|0.05|N|O|1996-05-01|1996-04-24|1996-05-23|COLLECT COD|AIR|nst the care| +14155|583255|20789|1|47|62896.81|0.03|0.07|N|O|1997-05-13|1997-07-23|1997-05-21|NONE|FOB|pinto beans. regular | +14155|766179|41210|2|11|13696.54|0.06|0.07|N|O|1997-06-19|1997-06-14|1997-06-22|NONE|MAIL| furiously | +14155|157241|19745|3|11|14280.64|0.01|0.08|N|O|1997-08-14|1997-06-17|1997-09-12|NONE|SHIP|r forges against the slyly ironic att| +14155|744791|44792|4|16|29372.16|0.07|0.08|N|O|1997-07-23|1997-07-11|1997-08-21|TAKE BACK RETURN|AIR|t the slyly ironic package| +14156|528305|15836|1|1|1333.28|0.01|0.05|N|O|1998-07-03|1998-07-14|1998-08-02|NONE|FOB|s. carefully even| +14156|214840|39849|2|26|45625.58|0.02|0.00|N|O|1998-07-22|1998-07-26|1998-08-01|NONE|TRUCK|uctions. express, unusual re| +14156|812846|395|3|5|8794.00|0.00|0.08|N|O|1998-08-20|1998-07-03|1998-09-01|TAKE BACK RETURN|TRUCK|y about the packages. deposits haggl| +14156|495135|32663|4|50|56505.50|0.00|0.03|N|O|1998-06-13|1998-06-11|1998-07-13|NONE|TRUCK|unusual accounts nag blithely careful pl| +14157|781301|6332|1|26|35939.02|0.02|0.08|N|O|1998-10-16|1998-09-11|1998-10-27|DELIVER IN PERSON|TRUCK|ong the blithely silen| +14157|312752|25259|2|2|3529.48|0.09|0.02|N|O|1998-08-09|1998-09-10|1998-09-03|COLLECT COD|SHIP|es. slyly final deposits are| +14157|419088|19089|3|24|24169.44|0.05|0.00|N|O|1998-08-27|1998-09-20|1998-09-23|TAKE BACK RETURN|AIR|blithely special pl| +14157|599513|24536|4|44|70949.56|0.05|0.06|N|O|1998-08-15|1998-09-24|1998-08-31|COLLECT COD|RAIL|lites. quickly express requests cajole| +14157|1048|26049|5|26|24675.04|0.01|0.08|N|O|1998-10-21|1998-07-28|1998-11-15|DELIVER IN PERSON|TRUCK|t packages cajole quickly c| +14157|597607|35141|6|24|40909.92|0.00|0.07|N|O|1998-06-27|1998-08-12|1998-07-06|DELIVER IN PERSON|TRUCK|e slyly final ideas shall wake eve| +14157|979716|17274|7|12|21548.04|0.01|0.01|N|O|1998-08-10|1998-09-23|1998-09-02|NONE|FOB|mes regular, even warthogs| +14158|78167|40669|1|9|10306.44|0.08|0.03|N|O|1996-12-24|1996-12-16|1996-12-29|DELIVER IN PERSON|SHIP| regular dependencies. e| +14158|738931|38932|2|40|78796.00|0.00|0.04|N|O|1996-12-12|1996-11-20|1996-12-13|TAKE BACK RETURN|SHIP|fluffily blithely final request| +14158|198856|48857|3|23|44961.55|0.01|0.01|N|O|1997-01-22|1996-12-03|1997-02-07|NONE|RAIL|bold accounts against | +14158|168378|18379|4|6|8678.22|0.07|0.03|N|O|1997-01-03|1996-11-27|1997-01-08|TAKE BACK RETURN|TRUCK|ove the ironic accounts. f| +14158|913648|26167|5|6|9969.60|0.08|0.05|N|O|1997-01-20|1996-11-14|1997-01-31|DELIVER IN PERSON|MAIL|cial ideas use furiously regula| +14159|845909|8426|1|1|1854.86|0.04|0.03|A|F|1994-08-02|1994-09-24|1994-08-23|TAKE BACK RETURN|REG AIR|ing to the blithely fina| +14159|188241|25751|2|1|1329.24|0.00|0.03|A|F|1994-09-14|1994-08-20|1994-10-14|NONE|AIR| blithely careful, final package| +14159|751428|26459|3|31|45861.09|0.00|0.01|A|F|1994-08-15|1994-08-27|1994-09-05|DELIVER IN PERSON|SHIP| across the slyly unusual ideas b| +14159|242665|5170|4|47|75559.55|0.03|0.00|A|F|1994-08-22|1994-09-08|1994-09-08|NONE|TRUCK|oxes affix. ironic, | +14184|732397|44912|1|4|5717.44|0.06|0.01|A|F|1993-12-15|1994-01-20|1993-12-29|DELIVER IN PERSON|FOB| hinder quickly blit| +14184|387093|12108|2|46|54283.68|0.02|0.05|R|F|1994-02-12|1994-02-07|1994-02-25|NONE|RAIL| pinto beans sleep a| +14184|857554|32589|3|3|4534.53|0.10|0.03|R|F|1994-01-30|1994-03-11|1994-02-11|COLLECT COD|REG AIR|nts. pending package| +14184|904745|4746|4|19|33244.30|0.03|0.06|A|F|1994-03-12|1994-01-31|1994-04-08|TAKE BACK RETURN|RAIL|accounts. platelets use fu| +14184|48541|36042|5|2|2979.08|0.03|0.03|R|F|1994-03-08|1994-03-08|1994-03-13|COLLECT COD|AIR|e ironic, final ideas.| +14185|319269|44282|1|18|23188.50|0.05|0.07|N|O|1996-08-07|1996-10-03|1996-08-28|COLLECT COD|SHIP|pending deposits. i| +14185|945643|45644|2|47|79364.20|0.06|0.00|N|O|1996-10-07|1996-09-09|1996-10-11|DELIVER IN PERSON|REG AIR|e the carefully special instructions. s| +14185|410261|35278|3|34|39822.16|0.03|0.06|N|O|1996-10-05|1996-10-27|1996-10-14|NONE|REG AIR|iously regular deposits.| +14186|207998|33007|1|47|89581.06|0.02|0.00|R|F|1994-11-09|1994-10-30|1994-11-30|TAKE BACK RETURN|AIR| slyly regular ins| +14186|816629|41662|2|7|10819.06|0.02|0.05|A|F|1994-12-08|1994-10-07|1994-12-20|DELIVER IN PERSON|TRUCK|l dolphins sleep slyly | +14186|81160|43662|3|36|41081.76|0.07|0.02|A|F|1994-12-03|1994-10-13|1994-12-09|COLLECT COD|REG AIR|sits. carefu| +14186|54001|41505|4|5|4775.00|0.07|0.00|A|F|1994-09-28|1994-10-18|1994-10-05|DELIVER IN PERSON|REG AIR|pecial foxes. carefully unus| +14187|490483|15502|1|8|11787.68|0.06|0.02|A|F|1995-02-28|1995-01-24|1995-03-16|NONE|SHIP|ounts. bold| +14187|543449|30980|2|28|41787.76|0.09|0.07|A|F|1994-12-14|1995-01-13|1995-01-08|DELIVER IN PERSON|REG AIR|l requests. fi| +14187|731804|19347|3|34|62416.18|0.06|0.01|A|F|1995-02-27|1995-01-18|1995-03-22|DELIVER IN PERSON|SHIP|sly whithout the requests? ev| +14187|428351|3368|4|11|14072.63|0.02|0.07|R|F|1994-12-05|1995-02-01|1994-12-29|DELIVER IN PERSON|MAIL|ng the quickly ironic multipliers. final | +14187|283654|21170|5|7|11463.48|0.07|0.07|A|F|1994-12-15|1995-01-17|1995-01-06|DELIVER IN PERSON|SHIP|ular accounts after the unusual accounts| +14188|818371|30888|1|16|20629.28|0.01|0.06|N|O|1996-12-25|1997-02-26|1997-01-07|TAKE BACK RETURN|SHIP|accounts breach quickly unusua| +14188|353182|3183|2|48|59288.16|0.05|0.01|N|O|1997-03-18|1997-01-08|1997-04-13|NONE|SHIP|ending packages. carefully| +14188|926921|14476|3|33|64280.04|0.03|0.08|N|O|1996-12-16|1997-03-01|1996-12-22|NONE|RAIL|ackages use furiously. fur| +14188|748017|23046|4|37|39404.26|0.03|0.01|N|O|1997-04-01|1997-01-18|1997-04-28|COLLECT COD|RAIL|fily ironic grouches boost quickly. ideas| +14189|829077|4110|1|20|20120.60|0.02|0.00|N|O|1997-11-21|1997-10-08|1997-12-01|NONE|SHIP|lar instru| +14189|289676|27192|2|43|71623.38|0.05|0.01|N|O|1997-09-10|1997-11-30|1997-09-14|NONE|FOB|carefully special forges. b| +14189|580236|42748|3|21|27640.41|0.01|0.05|N|O|1997-11-14|1997-11-06|1997-12-11|NONE|TRUCK|platelets. carefully ironic ideas | +14190|234963|34964|1|29|55040.55|0.07|0.00|R|F|1994-08-30|1994-08-31|1994-09-23|NONE|REG AIR|express deposits| +14190|11620|36621|2|46|70454.52|0.00|0.04|A|F|1994-10-27|1994-10-06|1994-11-05|TAKE BACK RETURN|REG AIR|xpress deposits ab| +14190|287425|49931|3|3|4237.23|0.10|0.07|A|F|1994-09-04|1994-09-16|1994-09-14|DELIVER IN PERSON|FOB|nt packages. carefully bold packages| +14190|737878|37879|4|50|95792.00|0.04|0.03|A|F|1994-10-27|1994-09-18|1994-11-09|COLLECT COD|REG AIR|s wake slyly against th| +14191|564138|39161|1|45|54094.95|0.06|0.03|N|O|1996-03-26|1996-03-03|1996-04-20|COLLECT COD|SHIP|ar, ironic packa| +14191|456780|44308|2|18|31261.68|0.06|0.00|N|O|1996-02-24|1996-03-18|1996-02-25|NONE|RAIL|uickly blithely bold pac| +14191|95604|20607|3|42|67183.20|0.02|0.05|N|O|1996-01-22|1996-02-21|1996-02-05|COLLECT COD|FOB|slyly enticing platelets. bold, unusual| +14191|811564|36597|4|46|67873.92|0.03|0.03|N|O|1996-04-02|1996-03-02|1996-04-07|DELIVER IN PERSON|RAIL|ress excuses. furiously| +14191|943114|43115|5|43|49754.01|0.00|0.02|N|O|1996-01-22|1996-03-02|1996-02-20|NONE|TRUCK|. carefully regular requests sleep silen| +14216|982112|7151|1|18|21493.26|0.06|0.08|R|F|1994-12-30|1995-02-05|1995-01-26|NONE|RAIL|ronic, final accounts. slyly final| +14217|463787|13788|1|49|85787.24|0.09|0.08|N|O|1998-07-11|1998-06-13|1998-07-26|NONE|REG AIR|furiously requests. iro| +14217|855257|30292|2|40|48488.40|0.02|0.03|N|O|1998-07-24|1998-07-24|1998-08-08|TAKE BACK RETURN|MAIL|y final foxes| +14217|297767|35283|3|12|21177.00|0.08|0.07|N|O|1998-06-28|1998-07-07|1998-07-07|NONE|REG AIR|are furiously. quickly iro| +14217|558049|45583|4|50|55351.00|0.04|0.06|N|O|1998-09-01|1998-06-20|1998-09-14|COLLECT COD|REG AIR|ously ironic theo| +14217|121641|46646|5|23|38240.72|0.07|0.05|N|O|1998-05-28|1998-07-05|1998-06-15|NONE|MAIL|riously final dependencies against the clo| +14217|412247|24756|6|6|6955.32|0.05|0.07|N|O|1998-08-07|1998-08-08|1998-09-06|DELIVER IN PERSON|TRUCK|deposits bo| +14217|634218|34219|7|26|29956.68|0.01|0.04|N|O|1998-07-09|1998-07-21|1998-08-02|TAKE BACK RETURN|REG AIR|ts was blithely furi| +14218|292874|5380|1|8|14934.88|0.04|0.08|R|F|1993-07-25|1993-06-22|1993-08-24|TAKE BACK RETURN|SHIP|l pinto beans integrate fl| +14218|329330|41837|2|49|66606.68|0.03|0.00|A|F|1993-04-15|1993-05-09|1993-04-24|COLLECT COD|SHIP|uffily across the idly special | +14218|39829|14830|3|50|88441.00|0.05|0.04|A|F|1993-05-16|1993-05-29|1993-06-14|COLLECT COD|AIR|uriously regula| +14218|399545|37067|4|39|64136.67|0.06|0.00|A|F|1993-06-21|1993-05-27|1993-07-12|TAKE BACK RETURN|MAIL|e furiously| +14218|150548|38058|5|21|33569.34|0.00|0.08|A|F|1993-04-20|1993-06-26|1993-05-20|TAKE BACK RETURN|SHIP|p regular, | +14219|946039|46040|1|27|29294.73|0.01|0.06|R|F|1992-03-04|1992-04-03|1992-03-22|TAKE BACK RETURN|RAIL|ular accounts breach bl| +14219|72543|47546|2|25|37888.50|0.09|0.02|A|F|1992-04-02|1992-05-07|1992-04-04|COLLECT COD|FOB|y regular instructions use blithely| +14219|229871|17384|3|39|70233.54|0.08|0.07|A|F|1992-06-15|1992-04-05|1992-07-07|DELIVER IN PERSON|MAIL|nusual requests. fluffily final platelets| +14219|436744|24269|4|2|3361.44|0.05|0.05|R|F|1992-05-11|1992-05-07|1992-06-03|TAKE BACK RETURN|SHIP|press, even accounts.| +14220|63673|38676|1|37|60556.79|0.09|0.04|N|O|1995-07-17|1995-06-07|1995-08-09|TAKE BACK RETURN|REG AIR|ording to the quickly final accoun| +14220|138906|1409|2|31|60291.90|0.09|0.08|A|F|1995-05-21|1995-05-09|1995-05-31|TAKE BACK RETURN|AIR|gular instructio| +14220|591730|4242|3|24|43721.04|0.06|0.01|N|F|1995-05-25|1995-06-05|1995-06-23|COLLECT COD|REG AIR|yly above t| +14220|198946|23953|4|3|6134.82|0.06|0.01|N|F|1995-05-31|1995-05-10|1995-06-24|DELIVER IN PERSON|MAIL|uriously final account| +14221|432828|7845|1|25|44020.00|0.05|0.07|N|O|1998-03-31|1998-02-04|1998-04-15|COLLECT COD|FOB|xcuses boost carefully along the re| +14221|536714|11735|2|24|42016.56|0.01|0.06|N|O|1998-01-04|1998-01-14|1998-01-31|DELIVER IN PERSON|AIR|ons. quickly regular| +14221|544629|7140|3|21|35145.60|0.08|0.05|N|O|1998-03-23|1998-02-15|1998-04-08|DELIVER IN PERSON|REG AIR|dolites sleep slyly regular as| +14221|579493|42005|4|18|28304.46|0.04|0.06|N|O|1998-01-17|1998-02-20|1998-02-11|TAKE BACK RETURN|AIR|y across the ironic pinto beans.| +14221|522157|9688|5|13|15328.69|0.07|0.07|N|O|1998-03-02|1998-03-06|1998-03-15|DELIVER IN PERSON|MAIL|ctions. Tiresias amo| +14221|891951|4469|6|14|27200.74|0.00|0.04|N|O|1998-01-05|1998-01-27|1998-01-12|COLLECT COD|AIR|ses boost | +14221|8323|45824|7|48|59103.36|0.08|0.00|N|O|1998-03-11|1998-03-15|1998-03-14|COLLECT COD|MAIL|requests na| +14222|881285|18837|1|36|45584.64|0.04|0.04|R|F|1992-12-09|1993-02-10|1992-12-29|DELIVER IN PERSON|RAIL|the express p| +14222|752817|27848|2|49|91619.22|0.10|0.00|A|F|1993-01-10|1993-01-23|1993-01-14|DELIVER IN PERSON|TRUCK|s. bold, regular foxes doubt blithely. slyl| +14223|999442|37000|1|19|29286.60|0.10|0.07|N|O|1997-03-05|1997-05-13|1997-04-02|NONE|REG AIR|y even dependencies a| +14223|608749|46286|2|21|34811.91|0.00|0.05|N|O|1997-05-06|1997-04-29|1997-05-10|COLLECT COD|MAIL|sy pinto beans use alw| +14248|812774|25291|1|21|35421.33|0.01|0.05|N|O|1996-10-12|1996-08-03|1996-10-30|NONE|MAIL|ly ironic packages. ironic accounts bo| +14248|282994|20510|2|36|71171.28|0.05|0.03|N|O|1996-08-24|1996-09-08|1996-09-04|TAKE BACK RETURN|FOB|s are furiously foxes. blithely | +14248|277817|2828|3|13|23332.40|0.00|0.02|N|O|1996-09-11|1996-07-21|1996-09-23|COLLECT COD|AIR|sits sleep slyly across the carefully| +14248|259516|34527|4|12|17706.00|0.08|0.05|N|O|1996-09-27|1996-08-16|1996-09-30|NONE|REG AIR|uickly stealthy theodolites. car| +14248|682117|19657|5|23|25278.84|0.02|0.00|N|O|1996-09-16|1996-09-07|1996-10-15|TAKE BACK RETURN|MAIL|ns sleep quickly si| +14248|324338|11857|6|33|44956.56|0.10|0.03|N|O|1996-10-07|1996-07-30|1996-11-02|COLLECT COD|FOB|ular ideas| +14248|132933|7938|7|4|7863.72|0.07|0.02|N|O|1996-07-15|1996-08-21|1996-08-01|TAKE BACK RETURN|REG AIR|to beans. furiously r| +14249|195973|20980|1|1|2068.97|0.06|0.05|N|O|1997-03-15|1997-02-24|1997-04-07|TAKE BACK RETURN|REG AIR|ly alongside of the fin| +14249|711029|48572|2|42|43679.58|0.07|0.02|N|O|1997-02-22|1997-02-07|1997-03-04|DELIVER IN PERSON|REG AIR|endencies sublate slyly regula| +14250|704950|17465|1|38|74286.96|0.01|0.08|A|F|1995-03-17|1995-04-04|1995-04-11|TAKE BACK RETURN|REG AIR|ounts at the fina| +14250|83804|8807|2|10|17878.00|0.07|0.06|R|F|1995-03-28|1995-03-17|1995-04-09|COLLECT COD|FOB|le blithely according to the slyly final | +14250|477404|2423|3|8|11051.04|0.06|0.00|A|F|1995-01-22|1995-02-20|1995-01-23|COLLECT COD|AIR|sly. blithely final requests h| +14250|728152|28153|4|20|23602.40|0.06|0.04|A|F|1995-01-30|1995-03-17|1995-02-08|TAKE BACK RETURN|REG AIR|d packages. fluffily fi| +14250|39735|14736|5|22|36844.06|0.06|0.08|A|F|1995-04-14|1995-02-21|1995-04-27|NONE|SHIP|accounts. e| +14250|813336|13337|6|24|29982.96|0.05|0.04|A|F|1995-02-03|1995-03-05|1995-02-24|DELIVER IN PERSON|RAIL|ly special accounts cajole slyly acr| +14251|941190|41191|1|43|52939.45|0.02|0.07|N|O|1997-10-29|1997-09-10|1997-11-17|NONE|REG AIR|rding to the furiously special | +14251|571747|9281|2|11|20005.92|0.00|0.07|N|O|1997-08-03|1997-09-17|1997-08-05|COLLECT COD|RAIL|nusual pinto| +14251|346197|8704|3|16|19890.88|0.02|0.07|N|O|1997-10-28|1997-09-19|1997-11-21|DELIVER IN PERSON|SHIP|sts. blithely ironic deposits a| +14251|519454|44475|4|32|47149.76|0.02|0.04|N|O|1997-11-11|1997-10-10|1997-11-23|DELIVER IN PERSON|FOB|ular ideas. slyly special ideas cajole abo| +14251|462280|24790|5|41|50932.66|0.03|0.02|N|O|1997-11-23|1997-09-11|1997-12-13|NONE|REG AIR|ar sheaves. even re| +14252|542592|42593|1|37|60479.09|0.03|0.01|N|O|1996-05-17|1996-05-14|1996-06-09|NONE|FOB|tes use carefully final deposits| +14252|340356|2863|2|12|16756.08|0.02|0.06|N|O|1996-05-09|1996-05-15|1996-05-25|DELIVER IN PERSON|REG AIR|sits promise blithel| +14252|350464|37986|3|40|60578.00|0.02|0.08|N|O|1996-07-18|1996-05-30|1996-07-27|TAKE BACK RETURN|RAIL|theodolites are c| +14253|784058|46574|1|49|55958.98|0.02|0.03|N|O|1995-06-19|1995-05-26|1995-06-20|TAKE BACK RETURN|FOB|nal request| +14253|652090|2091|2|28|29177.68|0.09|0.08|N|O|1995-06-19|1995-05-10|1995-07-12|TAKE BACK RETURN|RAIL|n requests nag fu| +14253|665812|15813|3|5|8888.90|0.00|0.02|R|F|1995-03-13|1995-05-10|1995-03-27|NONE|SHIP|accounts sleep blithely special requests.| +14253|286225|36226|4|28|33913.88|0.10|0.02|R|F|1995-03-15|1995-04-22|1995-03-27|COLLECT COD|RAIL| carefully silent asymptotes. sl| +14254|675382|25383|1|9|12216.15|0.00|0.07|A|F|1993-11-16|1993-10-03|1993-12-16|TAKE BACK RETURN|FOB|ly ironic instructions. regular co| +14254|133789|46292|2|50|91139.00|0.01|0.04|A|F|1993-10-17|1993-09-10|1993-11-15|DELIVER IN PERSON|SHIP|usly regular theodolites a| +14255|684862|47376|1|20|36936.60|0.10|0.05|N|O|1995-08-11|1995-07-01|1995-08-30|DELIVER IN PERSON|AIR|nal waters ar| +14255|466255|3783|2|36|43964.28|0.04|0.07|N|O|1995-06-18|1995-05-25|1995-06-30|DELIVER IN PERSON|FOB|le? ironic instru| +14255|338951|26470|3|14|27859.16|0.05|0.01|A|F|1995-05-16|1995-05-21|1995-05-25|NONE|TRUCK|l excuses are across| +14280|458228|33247|1|39|46261.80|0.06|0.06|R|F|1992-11-16|1992-09-13|1992-12-04|COLLECT COD|TRUCK|equests are bold theodolite| +14280|422253|47270|2|25|29380.75|0.01|0.05|R|F|1992-10-15|1992-10-11|1992-10-29|DELIVER IN PERSON|TRUCK|ans. quickl| +14280|797685|47686|3|6|10695.90|0.02|0.08|A|F|1992-09-04|1992-10-04|1992-09-22|TAKE BACK RETURN|TRUCK|s sleep blithely fluffily| +14280|676855|1882|4|4|7327.28|0.06|0.06|A|F|1992-08-25|1992-09-08|1992-09-03|TAKE BACK RETURN|SHIP|s according to the bold packages| +14280|898558|48559|5|24|37356.24|0.02|0.01|A|F|1992-09-28|1992-09-24|1992-10-20|TAKE BACK RETURN|RAIL|lites. blithely pending deposits abou| +14280|62789|12790|6|9|15766.02|0.08|0.06|R|F|1992-11-08|1992-09-04|1992-11-23|DELIVER IN PERSON|TRUCK|jole slyly according| +14281|797199|47200|1|15|19442.40|0.07|0.06|A|F|1992-04-03|1992-06-15|1992-04-15|DELIVER IN PERSON|FOB|ise slyly | +14281|521606|34117|2|30|48827.40|0.00|0.08|A|F|1992-06-26|1992-05-09|1992-07-21|TAKE BACK RETURN|MAIL|eodolites lose blithely. even deposit| +14281|629482|17019|3|44|62103.80|0.05|0.04|R|F|1992-04-10|1992-06-18|1992-04-29|TAKE BACK RETURN|AIR|s-- carefully unusual requests slee| +14281|693745|31285|4|33|57377.43|0.07|0.06|R|F|1992-05-30|1992-05-28|1992-06-10|TAKE BACK RETURN|REG AIR|kly deposits. slyly| +14281|760494|48040|5|23|35752.58|0.09|0.03|A|F|1992-07-15|1992-06-16|1992-07-22|DELIVER IN PERSON|TRUCK|dolites haggle blithely carefully re| +14281|614937|2474|6|49|90743.10|0.06|0.08|R|F|1992-04-01|1992-05-19|1992-04-17|DELIVER IN PERSON|SHIP|t the slyly even excuses: | +14281|232350|44855|7|18|23082.12|0.04|0.06|A|F|1992-06-07|1992-05-24|1992-06-12|DELIVER IN PERSON|FOB|iously silent th| +14282|104405|4406|1|10|14094.00|0.05|0.00|N|O|1997-07-04|1997-06-10|1997-07-06|NONE|REG AIR|es. fluffily unusual pla| +14282|723744|48773|2|43|76011.53|0.06|0.05|N|O|1997-05-11|1997-06-27|1997-05-18|TAKE BACK RETURN|AIR|eas. blithely regular e| +14282|961091|11092|3|18|20736.90|0.01|0.00|N|O|1997-06-06|1997-06-04|1997-06-13|DELIVER IN PERSON|REG AIR|e blithely slyly regular accounts. fu| +14282|54123|41627|4|13|14002.56|0.06|0.07|N|O|1997-05-11|1997-07-09|1997-05-17|TAKE BACK RETURN|MAIL|ructions boost after the pinto beans. | +14282|630560|18097|5|30|44715.90|0.09|0.06|N|O|1997-08-14|1997-07-26|1997-08-26|TAKE BACK RETURN|RAIL|the carefully bold| +14283|61335|23837|1|11|14259.63|0.09|0.08|N|O|1998-05-13|1998-06-01|1998-06-08|COLLECT COD|MAIL|uses. blithely ev| +14284|805624|5625|1|10|15295.80|0.03|0.03|N|O|1998-05-06|1998-05-16|1998-05-10|NONE|MAIL|pecial ideas. furiously pending foxes ar| +14284|118776|18777|2|25|44869.25|0.00|0.04|N|O|1998-07-28|1998-07-01|1998-08-26|COLLECT COD|AIR|eposits. carefu| +14284|253122|40638|3|35|37628.85|0.05|0.04|N|O|1998-06-05|1998-05-17|1998-06-06|TAKE BACK RETURN|AIR| the slyly final deposits. wa| +14284|220995|46004|4|47|90051.06|0.00|0.07|N|O|1998-08-02|1998-06-09|1998-08-16|COLLECT COD|TRUCK|y bold packages-- furiou| +14284|256645|31656|5|41|65666.83|0.10|0.03|N|O|1998-07-04|1998-06-07|1998-07-14|TAKE BACK RETURN|REG AIR|ions: furiously regular dolp| +14284|426946|1963|6|16|29966.72|0.08|0.00|N|O|1998-08-08|1998-05-31|1998-08-19|COLLECT COD|MAIL| sleep. regular, final | +14284|679379|4406|7|35|47541.90|0.05|0.01|N|O|1998-05-30|1998-06-17|1998-06-08|COLLECT COD|TRUCK|y blithely final| +14285|308190|20697|1|30|35945.40|0.08|0.01|R|F|1994-03-16|1994-03-05|1994-04-01|TAKE BACK RETURN|MAIL| dependencies. slyly unusual platel| +14285|739171|14200|2|39|47195.46|0.09|0.04|A|F|1994-01-17|1994-02-05|1994-01-28|TAKE BACK RETURN|AIR|fy asymptotes. slyly ironic | +14285|231041|31042|3|21|20412.63|0.07|0.01|A|F|1993-12-18|1994-02-22|1993-12-28|COLLECT COD|REG AIR|counts hinder furiously| +14285|94518|44519|4|20|30250.20|0.09|0.01|R|F|1993-12-17|1994-01-24|1994-01-01|DELIVER IN PERSON|RAIL| carefully fluffily special | +14285|553669|3670|5|2|3445.28|0.07|0.04|A|F|1993-12-30|1994-01-13|1994-01-13|DELIVER IN PERSON|SHIP|ly bold acc| +14285|514826|2357|6|6|11044.80|0.03|0.02|R|F|1994-04-03|1994-02-02|1994-04-11|TAKE BACK RETURN|RAIL|sual instructions along the final, | +14286|713501|13502|1|12|18173.64|0.04|0.06|R|F|1994-08-23|1994-09-16|1994-08-29|DELIVER IN PERSON|FOB|refully even packages. slyly unu| +14286|809737|9738|2|20|32933.80|0.07|0.00|R|F|1994-08-24|1994-09-25|1994-09-07|NONE|REG AIR|kly about the ironic depo| +14286|247882|47883|3|39|71364.93|0.01|0.03|R|F|1994-08-31|1994-09-05|1994-09-04|NONE|REG AIR|ges boost slyly. final deposits along the f| +14287|233541|46046|1|44|64879.32|0.06|0.06|N|O|1998-02-17|1998-03-01|1998-02-28|DELIVER IN PERSON|FOB|thely carefully regular theodolites. c| +14312|774250|11796|1|1|1324.22|0.08|0.07|N|O|1997-07-27|1997-07-25|1997-08-14|NONE|TRUCK|fully special instructions| +14312|807113|32146|2|50|51003.50|0.06|0.00|N|O|1997-05-28|1997-07-27|1997-06-20|DELIVER IN PERSON|AIR|. requests around the accounts wa| +14312|145532|8035|3|49|77298.97|0.10|0.07|N|O|1997-07-17|1997-06-24|1997-08-06|COLLECT COD|REG AIR|ending requests sleep fluff| +14313|979541|4580|1|3|4861.50|0.00|0.03|A|F|1994-05-12|1994-03-31|1994-06-06|DELIVER IN PERSON|MAIL|jole ironic, ironic foxes. quickly specia| +14313|135601|48104|2|45|73647.00|0.06|0.04|A|F|1994-05-16|1994-05-15|1994-06-06|DELIVER IN PERSON|AIR| carefully according to| +14313|29807|17308|3|48|83366.40|0.04|0.03|R|F|1994-05-01|1994-04-04|1994-05-16|DELIVER IN PERSON|RAIL|le. regular, even p| +14313|954212|4213|4|1|1266.17|0.01|0.00|R|F|1994-05-26|1994-04-16|1994-06-17|DELIVER IN PERSON|FOB| theodolites. slyly silent p| +14313|433127|20652|5|47|49824.70|0.00|0.02|A|F|1994-04-05|1994-05-05|1994-04-29|TAKE BACK RETURN|AIR|old, even foxes. bli| +14313|554959|4960|6|45|90626.85|0.06|0.04|R|F|1994-06-09|1994-05-14|1994-06-29|NONE|MAIL|ress requests above the fluffily specia| +14314|445268|45269|1|44|53382.56|0.10|0.07|A|F|1992-03-08|1992-03-10|1992-03-18|DELIVER IN PERSON|SHIP|iously stealthy, ironic a| +14314|610796|35821|2|3|5120.28|0.05|0.02|R|F|1992-02-19|1992-02-25|1992-03-06|TAKE BACK RETURN|AIR|ckages. carefully unu| +14314|646278|8791|3|24|29381.76|0.07|0.03|R|F|1992-05-15|1992-03-27|1992-05-28|COLLECT COD|RAIL|regular platelets. reg| +14314|981719|19277|4|20|36013.40|0.05|0.08|A|F|1992-03-04|1992-02-22|1992-03-14|NONE|RAIL|kly above the regula| +14314|748068|10583|5|34|37945.02|0.01|0.03|A|F|1992-01-24|1992-04-01|1992-02-20|NONE|AIR| use behind the fluffi| +14314|772679|22680|6|5|8758.20|0.06|0.06|A|F|1992-04-06|1992-04-09|1992-04-18|DELIVER IN PERSON|REG AIR| wake furiously according t| +14315|487427|37428|1|39|55161.60|0.02|0.01|N|O|1998-03-25|1998-03-29|1998-04-07|NONE|AIR|slyly. furiously special packages haggle | +14315|173391|48398|2|34|49789.26|0.03|0.05|N|O|1998-02-17|1998-04-12|1998-03-04|DELIVER IN PERSON|AIR|st pending foxes. s| +14315|178702|3709|3|37|65885.90|0.10|0.05|N|O|1998-04-17|1998-02-28|1998-04-19|DELIVER IN PERSON|MAIL|bout the furiously unusual r| +14315|440979|15996|4|45|86397.75|0.07|0.00|N|O|1998-02-18|1998-02-28|1998-03-12|NONE|REG AIR|ely pending foxes. furiously regula| +14315|532996|8017|5|13|26376.61|0.00|0.04|N|O|1998-03-21|1998-03-10|1998-03-31|NONE|SHIP|pecial foxes are | +14315|48754|11255|6|43|73218.25|0.08|0.07|N|O|1998-02-25|1998-04-08|1998-03-07|COLLECT COD|RAIL|mptotes cajole fluf| +14316|365255|15256|1|31|40927.44|0.01|0.06|N|O|1996-05-08|1996-04-11|1996-05-17|TAKE BACK RETURN|AIR|tornis. special, ir| +14316|828103|28104|2|6|6186.36|0.05|0.05|N|O|1996-05-28|1996-05-04|1996-06-07|NONE|MAIL|ns. bold accounts believe quickly.| +14316|918485|18486|3|38|57130.72|0.10|0.01|N|O|1996-05-11|1996-04-06|1996-06-10|NONE|REG AIR|lyly final deposits. quick accounts boost r| +14316|966536|41575|4|33|52882.17|0.05|0.05|N|O|1996-03-30|1996-05-11|1996-04-03|TAKE BACK RETURN|REG AIR|onic somas across the furiously| +14316|567138|17139|5|6|7230.66|0.06|0.01|N|O|1996-03-10|1996-04-30|1996-04-07|NONE|MAIL|? blithely reg| +14317|348626|36145|1|10|16746.10|0.04|0.02|A|F|1994-03-16|1994-04-16|1994-04-03|TAKE BACK RETURN|AIR|lly. quickly special packages are carefully| +14317|353810|41332|2|30|55914.00|0.10|0.06|R|F|1994-02-09|1994-03-26|1994-02-11|COLLECT COD|SHIP|equests breach blithely. furi| +14317|475739|25740|3|11|18861.81|0.08|0.04|R|F|1994-03-19|1994-04-02|1994-03-30|COLLECT COD|FOB| requests. qui| +14317|744992|32535|4|28|57034.88|0.02|0.06|R|F|1994-05-18|1994-04-16|1994-06-02|NONE|MAIL|ites. caref| +14318|282124|44630|1|45|49774.95|0.10|0.06|R|F|1994-11-19|1994-10-23|1994-12-04|TAKE BACK RETURN|TRUCK|ccounts cajole. carefully final pa| +14318|657909|32936|2|8|14934.96|0.06|0.05|A|F|1994-10-31|1994-10-27|1994-11-16|DELIVER IN PERSON|AIR|tes. quickly ironic requ| +14318|462056|24566|3|10|10180.30|0.03|0.03|R|F|1994-11-18|1994-09-24|1994-12-06|NONE|RAIL|e above the regul| +14318|760886|35917|4|4|7787.40|0.09|0.03|R|F|1994-12-02|1994-09-17|1994-12-10|NONE|REG AIR|ccounts. slyly even frets cajol| +14318|201100|38613|5|26|26028.34|0.06|0.04|A|F|1994-12-04|1994-09-25|1994-12-11|NONE|AIR|x blithely.| +14319|862512|25030|1|3|4423.41|0.08|0.01|N|O|1997-09-10|1997-11-11|1997-10-01|DELIVER IN PERSON|SHIP| decoys against the iron| +14319|238227|38228|2|35|40782.35|0.00|0.01|N|O|1997-12-02|1997-11-13|1997-12-31|COLLECT COD|MAIL|final dependencies. regular packages s| +14319|872989|35507|3|15|29429.10|0.09|0.03|N|O|1997-10-31|1997-11-02|1997-11-13|COLLECT COD|AIR|y regular f| +14319|321666|21667|4|47|79319.55|0.04|0.06|N|O|1997-10-24|1997-10-13|1997-11-17|DELIVER IN PERSON|MAIL| the ironic, final theodolites. final, | +14319|237060|49565|5|28|27917.40|0.10|0.00|N|O|1997-11-15|1997-10-24|1997-11-16|NONE|SHIP|onic, regular courts integ| +14344|275031|42|1|2|2012.04|0.01|0.07|N|O|1998-02-07|1998-02-20|1998-03-01|COLLECT COD|AIR|s. pending requests | +14344|432369|32370|2|13|16917.42|0.06|0.07|N|O|1998-04-24|1998-03-01|1998-05-12|NONE|REG AIR| blithely special requests. platelets hang?| +14344|816596|4145|3|39|58989.45|0.00|0.01|N|O|1998-04-24|1998-03-30|1998-05-04|NONE|TRUCK|aggle about the q| +14344|513498|13499|4|19|28717.93|0.01|0.06|N|O|1998-02-13|1998-02-27|1998-02-25|COLLECT COD|RAIL|slyly express packages haggle fl| +14344|355152|17660|5|5|6035.70|0.05|0.04|N|O|1998-05-08|1998-03-12|1998-05-19|NONE|FOB|s according to the re| +14344|24425|49426|6|13|17542.46|0.08|0.04|N|O|1998-04-27|1998-02-28|1998-05-11|DELIVER IN PERSON|AIR|s according to the blith| +14344|502554|15065|7|28|43582.84|0.07|0.02|N|O|1998-02-09|1998-04-07|1998-02-19|NONE|AIR|the blithely ironic packages? acco| +14345|411909|24418|1|15|27313.20|0.08|0.04|N|O|1997-12-03|1997-09-23|1997-12-27|DELIVER IN PERSON|MAIL|fully carefully regular requ| +14345|942780|42781|2|7|12759.18|0.02|0.08|N|O|1997-08-16|1997-09-13|1997-09-10|NONE|TRUCK|ss packages use fluffily. caref| +14345|303345|3346|3|23|31011.59|0.07|0.08|N|O|1997-11-06|1997-09-23|1997-11-13|DELIVER IN PERSON|TRUCK|ckly above the carefully special pa| +14345|316161|28668|4|26|30605.90|0.04|0.03|N|O|1997-11-15|1997-09-18|1997-12-13|DELIVER IN PERSON|AIR|lites. silent packages nag against the car| +14345|701443|38986|5|38|54887.58|0.03|0.08|N|O|1997-11-17|1997-09-22|1997-12-16|DELIVER IN PERSON|RAIL|ily regular accounts boost | +14346|793375|30921|1|11|16151.74|0.02|0.02|N|O|1997-04-19|1997-05-02|1997-04-30|NONE|FOB|fully silent excuses. regular, ironic p| +14346|239887|2392|2|15|27403.05|0.05|0.03|N|O|1997-04-17|1997-06-04|1997-05-07|COLLECT COD|RAIL|te stealthy pinto beans! slyly ev| +14346|768862|31378|3|24|46339.92|0.07|0.05|N|O|1997-06-10|1997-04-30|1997-06-24|COLLECT COD|TRUCK|y silent accounts. slyly even pi| +14346|247608|35121|4|6|9333.54|0.09|0.05|N|O|1997-04-08|1997-04-19|1997-05-04|DELIVER IN PERSON|MAIL|structions. e| +14346|533594|21125|5|16|26041.12|0.08|0.05|N|O|1997-03-13|1997-05-24|1997-04-02|TAKE BACK RETURN|RAIL|lar deposits | +14346|98564|36068|6|5|7812.80|0.05|0.03|N|O|1997-04-17|1997-04-24|1997-04-26|DELIVER IN PERSON|RAIL|fully special dependencies. bold, final a| +14347|137064|12069|1|46|50648.76|0.08|0.05|N|O|1997-11-07|1997-10-14|1997-11-15|TAKE BACK RETURN|AIR|nal excuses. express, regular depos| +14347|627905|27906|2|18|32991.66|0.09|0.07|N|O|1997-12-08|1997-10-21|1997-12-09|TAKE BACK RETURN|REG AIR|y bold packages. carefu| +14347|196977|46978|3|45|93328.65|0.08|0.07|N|O|1997-11-05|1997-11-03|1997-11-07|NONE|TRUCK|ording to the| +14347|581863|6886|4|31|60290.04|0.07|0.06|N|O|1997-11-12|1997-11-22|1997-12-05|NONE|SHIP|deas. carefully even excuses hag| +14348|757532|45078|1|5|7947.50|0.05|0.02|N|O|1996-07-25|1996-08-21|1996-08-10|NONE|FOB|nding accounts doze about the ironic, i| +14348|837506|23|2|23|33199.58|0.01|0.01|N|O|1996-10-10|1996-08-05|1996-11-03|COLLECT COD|AIR|mptotes about the unusual accounts sleep c| +14348|961446|36485|3|19|28640.60|0.01|0.05|N|O|1996-07-25|1996-07-24|1996-08-14|NONE|SHIP|carefully. | +14348|22074|22075|4|33|32870.31|0.05|0.02|N|O|1996-09-25|1996-09-21|1996-10-25|DELIVER IN PERSON|RAIL|ly ironic theodolites? special, final in| +14348|981682|44202|5|7|12345.48|0.01|0.02|N|O|1996-10-01|1996-08-26|1996-10-06|TAKE BACK RETURN|RAIL| deposits are carefully carefully bold acco| +14349|521621|21622|1|36|59133.60|0.04|0.07|N|O|1996-07-19|1996-05-05|1996-07-31|COLLECT COD|AIR|all have to detect according to the| +14349|868030|30548|2|14|13971.86|0.03|0.02|N|O|1996-04-14|1996-05-08|1996-04-20|DELIVER IN PERSON|AIR|e packages around the even deposits s| +14349|965527|40566|3|23|36627.04|0.04|0.07|N|O|1996-04-20|1996-05-31|1996-05-01|TAKE BACK RETURN|MAIL|xcuses; final, regular braids haggle| +14349|610715|23228|4|47|76406.96|0.04|0.07|N|O|1996-04-23|1996-05-07|1996-04-27|NONE|FOB|pending excuses sleep. final | +14349|270958|8474|5|6|11573.64|0.07|0.02|N|O|1996-03-23|1996-06-09|1996-03-28|DELIVER IN PERSON|MAIL|ily regular instructions. slyly f| +14349|977747|15305|6|35|63864.50|0.01|0.03|N|O|1996-07-17|1996-05-04|1996-07-20|NONE|RAIL|slyly. never ironic requests integrate sl| +14350|643646|18671|1|22|34971.42|0.01|0.04|N|O|1997-07-02|1997-04-30|1997-07-19|DELIVER IN PERSON|MAIL|carefully express dependenci| +14350|757662|32693|2|47|80822.61|0.01|0.02|N|O|1997-06-27|1997-05-30|1997-07-14|NONE|RAIL| furiously regular, regular | +14350|8573|21074|3|44|65189.08|0.03|0.04|N|O|1997-06-20|1997-05-01|1997-07-03|TAKE BACK RETURN|SHIP|heodolites among the dependencies ha| +14351|612179|37204|1|34|37098.76|0.07|0.05|R|F|1994-08-21|1994-08-02|1994-09-14|DELIVER IN PERSON|RAIL| ironic packages s| +14351|886337|48855|2|20|26465.80|0.03|0.03|A|F|1994-10-11|1994-08-10|1994-10-28|TAKE BACK RETURN|MAIL|es. slowly iron| +14351|655948|30975|3|10|19039.10|0.01|0.02|R|F|1994-09-04|1994-07-27|1994-09-20|TAKE BACK RETURN|FOB|asymptotes.| +14351|505692|30713|4|6|10186.02|0.00|0.02|A|F|1994-09-13|1994-09-07|1994-09-20|NONE|REG AIR|ts are to the carefully ironic packages; c| +14376|91277|16280|1|29|36779.83|0.08|0.07|R|F|1992-11-27|1992-09-24|1992-12-20|TAKE BACK RETURN|SHIP|y unusual packages poach doggedly after t| +14376|85395|47897|2|3|4141.17|0.03|0.03|A|F|1992-10-22|1992-10-30|1992-11-01|TAKE BACK RETURN|AIR|al instructio| +14376|229069|4078|3|30|29941.50|0.01|0.06|R|F|1992-09-23|1992-11-06|1992-10-20|DELIVER IN PERSON|MAIL|ly regular requests. quickly i| +14376|961004|48562|4|39|41533.44|0.09|0.07|A|F|1992-12-09|1992-10-11|1992-12-22|TAKE BACK RETURN|TRUCK|lithely bold accounts| +14377|189141|14148|1|47|57816.58|0.00|0.05|N|O|1997-05-27|1997-03-25|1997-06-21|NONE|MAIL| express pinto beans outside the slyly bold| +14378|585580|23114|1|44|73284.64|0.08|0.08|N|O|1996-06-19|1996-06-12|1996-07-09|NONE|RAIL|ully even pinto beans across the fluffil| +14378|827095|27096|2|1|1022.05|0.08|0.01|N|O|1996-04-26|1996-06-11|1996-05-20|NONE|MAIL|y regular deposits. final i| +14378|970983|33503|3|25|51348.50|0.03|0.07|N|O|1996-07-05|1996-04-19|1996-07-17|NONE|SHIP|ts. doggedly final notornis eat slyly a| +14378|304731|4732|4|28|48600.16|0.01|0.04|N|O|1996-03-24|1996-05-28|1996-04-15|NONE|FOB| ironic accounts. fluffily unusual| +14378|600666|13179|5|7|10966.41|0.02|0.00|N|O|1996-06-07|1996-04-18|1996-06-30|COLLECT COD|FOB| accounts wake. qui| +14379|244021|6526|1|21|20265.21|0.01|0.03|A|F|1994-02-01|1994-01-06|1994-02-02|NONE|AIR|beans haggle. ironic, regular i| +14379|248253|48254|2|35|42043.40|0.03|0.07|R|F|1994-01-08|1993-12-30|1994-01-24|TAKE BACK RETURN|AIR|uickly ironic requests are according to| +14379|378703|28704|3|12|21380.28|0.01|0.06|R|F|1993-10-30|1994-01-19|1993-11-11|COLLECT COD|AIR|efully regular, ironic multiplier| +14379|853123|40675|4|18|19369.44|0.07|0.02|R|F|1994-01-31|1994-01-03|1994-03-02|COLLECT COD|RAIL|ar ideas wake along| +14379|427028|2045|5|39|37245.00|0.01|0.02|A|F|1994-01-20|1993-12-25|1994-02-18|TAKE BACK RETURN|RAIL|onic ideas along the bold, even d| +14379|45972|33473|6|25|47949.25|0.01|0.02|R|F|1993-12-30|1993-12-22|1994-01-17|TAKE BACK RETURN|SHIP|carefully against the speci| +14379|647529|35066|7|41|60536.09|0.07|0.00|R|F|1993-10-26|1993-11-28|1993-11-22|TAKE BACK RETURN|RAIL| above the unusual, ironic| +14380|6900|44401|1|27|48786.30|0.06|0.03|A|F|1994-11-26|1995-01-22|1994-12-05|NONE|SHIP|telets run blithely. regular, regu| +14380|965176|2734|2|9|11170.17|0.08|0.07|A|F|1995-01-15|1995-01-22|1995-02-10|TAKE BACK RETURN|MAIL|odolites arou| +14380|712911|454|3|4|7695.52|0.07|0.08|R|F|1994-11-21|1994-12-20|1994-12-02|COLLECT COD|SHIP|cajole blithely spec| +14380|893031|18066|4|4|4095.96|0.07|0.05|A|F|1995-03-10|1994-12-25|1995-03-31|TAKE BACK RETURN|RAIL|sts. stealth| +14380|163442|38449|5|3|4516.32|0.06|0.01|A|F|1995-01-20|1995-02-04|1995-02-01|DELIVER IN PERSON|AIR| requests. final frays use | +14380|955339|30378|6|30|41828.70|0.06|0.04|R|F|1995-02-13|1995-01-17|1995-03-03|TAKE BACK RETURN|FOB| quickly sly account| +14381|275069|25070|1|43|44894.15|0.02|0.05|R|F|1993-01-22|1993-02-05|1993-02-03|DELIVER IN PERSON|RAIL| packages haggle furiously accounts. fin| +14381|79641|42143|2|45|72928.80|0.00|0.04|R|F|1993-04-01|1993-01-26|1993-04-02|DELIVER IN PERSON|REG AIR|counts boost for the idly idle| +14381|517826|30337|3|11|20281.80|0.01|0.05|R|F|1993-01-12|1993-01-30|1993-01-25|NONE|RAIL|ly regular packages. requests haggle| +14381|96065|46066|4|24|25465.44|0.06|0.06|A|F|1993-03-15|1993-03-01|1993-03-31|DELIVER IN PERSON|AIR| wake never: quickly regular t| +14382|189848|2352|1|30|58135.20|0.06|0.04|N|O|1998-01-16|1998-01-10|1998-01-26|COLLECT COD|TRUCK|ter the even ac| +14382|770324|7870|2|48|66925.92|0.02|0.06|N|O|1997-12-26|1997-12-19|1998-01-14|DELIVER IN PERSON|AIR|ke. quickly even| +14382|833294|45811|3|29|35590.25|0.03|0.06|N|O|1998-01-31|1997-12-14|1998-02-19|COLLECT COD|MAIL| ideas? final dependencies sublate bli| +14383|45204|20205|1|47|54012.40|0.08|0.02|A|F|1994-02-22|1994-01-16|1994-03-20|DELIVER IN PERSON|MAIL|ts haggle. carefully final request| +14383|730952|30953|2|11|21812.12|0.10|0.02|R|F|1993-12-18|1994-01-03|1994-01-05|TAKE BACK RETURN|FOB|sy asymptotes cajole slyly among| +14383|93651|43652|3|10|16446.50|0.05|0.06|R|F|1994-02-16|1994-02-07|1994-03-13|TAKE BACK RETURN|FOB|ly regular deposits. blithely special re| +14383|986268|23826|4|19|25730.18|0.03|0.06|R|F|1994-02-13|1994-01-04|1994-02-20|NONE|SHIP|es. express, even pinto beans boost careful| +14383|204386|29395|5|13|16774.81|0.01|0.08|A|F|1993-12-01|1994-02-14|1993-12-06|TAKE BACK RETURN|SHIP|orses sleep silently carefully silent f| +14383|106544|19047|6|35|54268.90|0.06|0.04|R|F|1993-11-29|1994-01-03|1993-12-02|NONE|SHIP|bold packages. speci| +14383|673999|49026|7|6|11837.76|0.05|0.03|A|F|1994-01-13|1994-01-20|1994-01-26|DELIVER IN PERSON|TRUCK|nts use. ironic, ironic attainments af| +14408|897096|34648|1|6|6558.30|0.07|0.04|N|O|1996-11-08|1996-08-27|1996-11-30|DELIVER IN PERSON|MAIL|ticingly above the furiously ironic reques| +14408|478308|28309|2|20|25725.60|0.08|0.06|N|O|1996-08-28|1996-10-26|1996-09-02|COLLECT COD|AIR|uickly unusual| +14408|921248|21249|3|12|15230.40|0.05|0.05|N|O|1996-08-11|1996-10-26|1996-08-21|NONE|REG AIR|to beans bre| +14408|401723|39248|4|27|43866.90|0.08|0.07|N|O|1996-11-22|1996-08-27|1996-12-06|TAKE BACK RETURN|FOB|oss the slyly special foxes doubt ins| +14409|471390|46409|1|6|8168.22|0.07|0.05|A|F|1995-03-24|1995-02-15|1995-03-26|DELIVER IN PERSON|REG AIR|y bold deposits. final requ| +14409|648315|23340|2|4|5053.12|0.00|0.03|A|F|1995-03-19|1995-02-18|1995-04-01|NONE|RAIL|o the depo| +14409|228369|40874|3|2|2594.70|0.06|0.03|A|F|1995-01-27|1995-04-07|1995-02-09|DELIVER IN PERSON|AIR| sleep furiously near the slyly express fox| +14409|196038|46039|4|10|11340.30|0.10|0.04|A|F|1995-02-15|1995-02-08|1995-03-14|COLLECT COD|MAIL|ly even platelets. never ironic| +14409|808356|8357|5|20|25286.20|0.02|0.08|A|F|1995-04-20|1995-03-08|1995-05-13|COLLECT COD|AIR|ffily ironic| +14409|34746|47247|6|6|10084.44|0.09|0.01|R|F|1995-03-15|1995-03-12|1995-03-21|NONE|REG AIR|luffily bold dep| +14409|963197|38236|7|17|21422.55|0.01|0.08|A|F|1995-04-30|1995-03-23|1995-05-09|NONE|TRUCK| unusual theodolites. unusual, fi| +14410|437803|37804|1|12|20889.36|0.01|0.03|A|F|1993-05-18|1993-06-05|1993-05-19|TAKE BACK RETURN|REG AIR| against the blithely unusual deposits. sl| +14410|151467|26474|2|27|40998.42|0.08|0.00|R|F|1993-05-08|1993-05-24|1993-05-28|DELIVER IN PERSON|MAIL|lyly regul| +14410|705646|5647|3|2|3303.22|0.03|0.04|A|F|1993-07-24|1993-05-31|1993-08-07|DELIVER IN PERSON|SHIP|mong the ironic patterns. silent, fin| +14410|783545|21091|4|41|66768.91|0.10|0.00|R|F|1993-05-05|1993-06-10|1993-05-07|COLLECT COD|REG AIR|ng deposits after the silently regular dol| +14411|482518|32519|1|34|51016.66|0.09|0.04|N|O|1998-04-18|1998-03-21|1998-05-16|NONE|REG AIR| final, iro| +14411|663447|13448|2|10|14104.10|0.07|0.01|N|O|1998-05-20|1998-05-08|1998-05-22|NONE|RAIL|uriously silent asymptotes. q| +14412|817270|4819|1|28|33242.44|0.08|0.03|N|O|1998-01-17|1998-02-10|1998-02-01|COLLECT COD|REG AIR|uctions. fluffily special | +14413|902780|15299|1|37|65961.38|0.04|0.06|N|O|1998-03-21|1998-02-05|1998-04-05|TAKE BACK RETURN|REG AIR| after the ironic requests. furiou| +14413|19040|44041|2|19|18221.76|0.01|0.02|N|O|1998-03-30|1998-01-25|1998-04-26|COLLECT COD|SHIP|n pearls. ironic in| +14413|994593|7113|3|3|5062.65|0.00|0.05|N|O|1998-03-07|1998-01-10|1998-03-14|COLLECT COD|MAIL| multiplie| +14414|599703|12215|1|4|7210.72|0.06|0.00|A|F|1993-09-23|1993-07-31|1993-10-08|DELIVER IN PERSON|TRUCK|e quickly along the furiously fina| +14414|191804|16811|2|28|53082.40|0.03|0.06|A|F|1993-08-26|1993-07-18|1993-09-02|DELIVER IN PERSON|REG AIR|al pinto beans may cajole carefully | +14414|633069|20606|3|21|21042.63|0.09|0.00|A|F|1993-09-13|1993-07-29|1993-10-03|DELIVER IN PERSON|REG AIR|ording to the blithely s| +14414|980338|30339|4|10|14182.90|0.10|0.06|R|F|1993-07-16|1993-08-11|1993-07-25|DELIVER IN PERSON|AIR|s. carefully final r| +14414|526401|38912|5|41|58522.58|0.07|0.03|A|F|1993-10-09|1993-08-26|1993-10-18|DELIVER IN PERSON|RAIL|. fluffily final dugou| +14415|929096|29097|1|31|34876.55|0.07|0.03|N|O|1996-09-08|1996-10-15|1996-09-25|TAKE BACK RETURN|REG AIR|ve the blithely ironic deposits | +14415|306662|44181|2|9|15017.85|0.09|0.05|N|O|1996-08-31|1996-10-11|1996-09-26|NONE|AIR| deposits are according to the r| +14415|63193|25695|3|22|25436.18|0.08|0.03|N|O|1996-10-11|1996-09-17|1996-10-25|TAKE BACK RETURN|TRUCK|ies wake carefully| +14415|77942|27943|4|29|55678.26|0.03|0.06|N|O|1996-11-18|1996-09-12|1996-11-25|NONE|REG AIR|the blithely permanent theodoli| +14415|958387|8388|5|37|53477.58|0.02|0.08|N|O|1996-08-14|1996-09-19|1996-08-17|DELIVER IN PERSON|FOB|lithely final accounts? ironic m| +14415|607218|7219|6|10|11251.80|0.00|0.07|N|O|1996-09-15|1996-10-15|1996-09-19|TAKE BACK RETURN|TRUCK|gular, final t| +14440|50122|12624|1|34|36452.08|0.05|0.03|N|O|1997-01-20|1997-03-15|1997-02-07|TAKE BACK RETURN|MAIL|yly regular| +14440|394042|6550|2|35|39761.05|0.06|0.04|N|O|1997-01-28|1997-03-10|1997-02-21|DELIVER IN PERSON|REG AIR|nst the final, bold accounts use | +14440|654243|4244|3|34|40705.14|0.00|0.08|N|O|1997-02-12|1997-01-28|1997-03-06|COLLECT COD|REG AIR|riously regul| +14440|849958|37507|4|46|87763.86|0.03|0.02|N|O|1997-02-26|1997-01-26|1997-03-25|COLLECT COD|REG AIR|yly special deposits? quick| +14440|229028|41533|5|40|38280.40|0.10|0.02|N|O|1997-02-24|1997-03-15|1997-03-25|COLLECT COD|RAIL|al instructio| +14441|14130|26631|1|36|37588.68|0.10|0.02|A|F|1992-04-24|1992-05-22|1992-05-03|TAKE BACK RETURN|SHIP|to the fur| +14441|475961|980|2|45|87162.30|0.03|0.07|R|F|1992-04-24|1992-05-19|1992-05-09|COLLECT COD|MAIL|lar deposits pro| +14441|471745|34255|3|38|65235.36|0.05|0.08|A|F|1992-07-24|1992-07-03|1992-07-27|DELIVER IN PERSON|FOB|ckly final idea| +14441|605262|42799|4|47|54859.81|0.06|0.01|R|F|1992-07-23|1992-05-16|1992-08-18|COLLECT COD|RAIL|al deposits. slyly careful instructions af| +14441|637361|37362|5|27|35054.91|0.03|0.05|R|F|1992-05-11|1992-05-26|1992-05-18|NONE|SHIP|rate slyly by the ironic p| +14441|119763|32266|6|35|62396.60|0.02|0.04|A|F|1992-04-13|1992-05-18|1992-04-30|NONE|TRUCK|nusual pinto beans;| +14441|852468|27503|7|44|62498.48|0.07|0.01|R|F|1992-05-12|1992-05-20|1992-05-21|TAKE BACK RETURN|FOB|e regular, regular platelets. fur| +14442|424295|49312|1|34|41455.18|0.07|0.02|R|F|1992-03-23|1992-03-19|1992-04-19|DELIVER IN PERSON|RAIL| regular, even courts wake sl| +14442|120360|32863|2|26|35889.36|0.02|0.05|A|F|1992-02-24|1992-02-15|1992-03-24|TAKE BACK RETURN|AIR|ly regular packages. fluf| +14442|882900|32901|3|43|80962.98|0.05|0.06|A|F|1992-03-17|1992-03-28|1992-04-10|NONE|TRUCK|t the carefully regular deposits | +14442|884335|46853|4|9|11873.61|0.00|0.07|R|F|1992-02-22|1992-03-27|1992-03-19|NONE|FOB|ular instructions solve slyly iro| +14442|13392|13393|5|8|10443.12|0.10|0.05|A|F|1992-01-27|1992-02-17|1992-02-08|NONE|FOB|ly even foxe| +14443|485773|48283|1|33|58038.75|0.07|0.07|R|F|1993-08-25|1993-08-27|1993-09-12|DELIVER IN PERSON|SHIP|ts use furio| +14444|302188|39707|1|3|3570.51|0.01|0.01|A|F|1992-07-06|1992-08-23|1992-07-22|DELIVER IN PERSON|AIR|slow foxes boost furio| +14444|870427|7979|2|7|9781.66|0.05|0.01|A|F|1992-08-11|1992-08-27|1992-08-19|DELIVER IN PERSON|MAIL|totes affix furiously bold packages. sp| +14444|256897|44413|3|42|77862.96|0.06|0.08|R|F|1992-06-12|1992-07-26|1992-07-09|COLLECT COD|AIR|le above the silent deposits.| +14445|692497|5011|1|18|26810.28|0.07|0.01|R|F|1995-04-16|1995-03-28|1995-04-23|DELIVER IN PERSON|RAIL|ven theodolites detect slyly| +14446|844560|19593|1|50|75226.00|0.02|0.07|N|O|1997-02-25|1997-01-09|1997-03-25|COLLECT COD|AIR|y unusual pa| +14446|504582|42113|2|29|46010.24|0.04|0.04|N|O|1996-11-26|1997-01-11|1996-12-01|NONE|AIR| promise. even, i| +14446|493172|43173|3|13|15146.95|0.05|0.01|N|O|1996-11-19|1997-01-05|1996-12-01|TAKE BACK RETURN|FOB|quickly ironic reques| +14446|734212|46727|4|20|24923.60|0.09|0.02|N|O|1996-12-15|1997-02-10|1996-12-22|NONE|TRUCK|ickly. enticingl| +14447|357412|7413|1|27|39673.80|0.05|0.06|R|F|1993-09-09|1993-11-28|1993-09-15|NONE|RAIL| are regular| +14447|9716|34717|2|47|76408.37|0.07|0.06|R|F|1993-10-23|1993-10-28|1993-10-25|COLLECT COD|REG AIR|ost blithely unusual deposits. quickly regu| +14447|288844|1350|3|21|38489.43|0.08|0.02|A|F|1993-12-06|1993-10-21|1993-12-18|TAKE BACK RETURN|TRUCK|kly above the ironic packages. final th| +14447|598788|23811|4|14|26414.64|0.10|0.01|A|F|1993-12-27|1993-11-20|1994-01-11|NONE|MAIL|ding to the ironic request| +14472|793284|30830|1|30|41317.50|0.00|0.05|A|F|1993-07-10|1993-07-14|1993-08-06|DELIVER IN PERSON|FOB|riously unusual requests. asymptotes | +14472|720710|45739|2|24|41536.32|0.08|0.08|R|F|1993-07-29|1993-07-11|1993-08-03|NONE|MAIL|y instructions sha| +14472|968805|31325|3|31|58086.56|0.04|0.02|R|F|1993-06-13|1993-05-31|1993-07-01|DELIVER IN PERSON|REG AIR|urts wake fluffily si| +14472|698516|48517|4|50|75724.00|0.08|0.05|A|F|1993-06-14|1993-07-05|1993-07-08|NONE|TRUCK|grow across | +14472|956486|31525|5|27|41645.88|0.06|0.05|R|F|1993-08-01|1993-05-24|1993-08-11|COLLECT COD|TRUCK|nal requests poach fluf| +14472|650110|37650|6|48|50883.84|0.01|0.01|R|F|1993-05-22|1993-07-15|1993-06-06|DELIVER IN PERSON|AIR|s affix. bo| +14472|385929|35930|7|41|82611.31|0.08|0.01|A|F|1993-08-17|1993-05-20|1993-09-11|DELIVER IN PERSON|REG AIR| furiously silent packages. slyly fi| +14473|306611|19118|1|22|35587.20|0.06|0.01|A|F|1995-01-19|1994-12-26|1995-01-26|COLLECT COD|RAIL| accounts impress carefully quickl| +14473|197714|10218|2|35|63409.85|0.03|0.07|R|F|1994-12-26|1994-11-14|1995-01-17|TAKE BACK RETURN|MAIL|er final deposits. final, final dolphins sl| +14473|971640|34160|3|4|6846.40|0.00|0.04|R|F|1994-12-13|1994-12-11|1995-01-01|TAKE BACK RETURN|TRUCK|n deposits. ironic packages haggle | +14473|343832|6339|4|46|86287.72|0.09|0.02|A|F|1995-01-12|1994-12-02|1995-01-16|NONE|MAIL|y. ideas wake foxes. slyly si| +14473|782379|19925|5|49|71605.66|0.07|0.00|R|F|1995-01-10|1994-12-21|1995-02-04|NONE|TRUCK|y above the slyly regular i| +14474|965158|40197|1|18|22015.98|0.06|0.03|N|O|1997-08-28|1997-10-07|1997-09-09|DELIVER IN PERSON|FOB|the carefully regular dependencies s| +14474|399528|24543|2|42|68355.42|0.07|0.04|N|O|1997-11-08|1997-10-14|1997-11-22|COLLECT COD|MAIL|grate. furiously ironic deposits slee| +14474|856918|31953|3|20|37497.40|0.04|0.01|N|O|1997-10-28|1997-09-05|1997-11-16|COLLECT COD|MAIL|latelets use furiously. ironic| +14475|319119|19120|1|1|1138.10|0.01|0.00|A|F|1993-02-22|1993-01-18|1993-03-16|TAKE BACK RETURN|SHIP|deposits. carefully even accounts abou| +14475|416833|41850|2|35|61243.35|0.10|0.03|A|F|1993-02-01|1993-01-21|1993-02-28|TAKE BACK RETURN|RAIL|efully ironic packages affix f| +14475|709382|9383|3|29|40349.15|0.10|0.04|R|F|1992-12-30|1993-01-20|1993-01-02|TAKE BACK RETURN|FOB|are slyly fluffily pending| +14475|582723|45235|4|14|25279.80|0.02|0.08|R|F|1992-12-25|1993-01-11|1993-01-21|NONE|REG AIR|y bold ins| +14475|815841|40874|5|8|14054.40|0.02|0.02|R|F|1992-12-21|1993-01-19|1993-01-08|NONE|REG AIR|heodolites. furious| +14475|832729|45246|6|5|8308.40|0.10|0.07|A|F|1993-04-08|1993-01-12|1993-04-13|DELIVER IN PERSON|RAIL|ing to the even, regula| +14476|433875|46384|1|20|36177.00|0.08|0.03|R|F|1993-12-14|1993-10-17|1994-01-04|TAKE BACK RETURN|TRUCK|ctions. special, regul| +14476|122503|35006|2|23|35086.50|0.06|0.00|R|F|1993-11-05|1993-11-05|1993-12-02|COLLECT COD|RAIL|ly regular realms are| +14476|902285|2286|3|49|63074.76|0.04|0.07|A|F|1993-12-07|1993-10-03|1993-12-11|NONE|RAIL|ending theodolites nag. instructions w| +14476|693622|18649|4|20|32311.80|0.06|0.06|R|F|1993-10-23|1993-10-21|1993-11-19|DELIVER IN PERSON|FOB|theodolites. slyly ironic deposits print f| +14476|699388|24415|5|31|43007.85|0.02|0.06|A|F|1993-08-31|1993-10-15|1993-09-06|TAKE BACK RETURN|FOB|less, regular asymptotes. blithel| +14476|612278|37303|6|33|39277.92|0.04|0.07|R|F|1993-12-02|1993-10-24|1993-12-10|NONE|MAIL| quickly pending pac| +14477|757562|7563|1|5|8097.65|0.05|0.00|N|O|1996-08-26|1996-08-04|1996-09-15|TAKE BACK RETURN|REG AIR|ep blithely fluf| +14477|340703|28222|2|8|13949.52|0.00|0.04|N|O|1996-07-15|1996-09-06|1996-08-01|COLLECT COD|MAIL|ily ironic packa| +14477|183535|21045|3|13|21040.89|0.01|0.03|N|O|1996-08-14|1996-08-30|1996-08-19|TAKE BACK RETURN|REG AIR| regular idea| +14477|666264|3804|4|5|6151.15|0.10|0.01|N|O|1996-09-19|1996-07-16|1996-09-28|NONE|RAIL| accounts cajole above | +14477|891914|29466|5|44|83858.28|0.03|0.04|N|O|1996-09-21|1996-07-18|1996-10-08|TAKE BACK RETURN|REG AIR|express platelets across the ca| +14478|255220|42736|1|15|17628.15|0.06|0.03|A|F|1993-07-08|1993-08-24|1993-08-07|DELIVER IN PERSON|FOB| ideas; ironic dolphins| +14479|457493|32512|1|16|23207.52|0.04|0.02|R|F|1992-06-16|1992-06-06|1992-06-28|TAKE BACK RETURN|TRUCK|hely ironic theodolites use furious| +14479|73487|23488|2|18|26288.64|0.08|0.05|R|F|1992-06-14|1992-06-23|1992-07-09|COLLECT COD|MAIL|s. blithely close asymptotes haggle among t| +14479|82503|45005|3|4|5942.00|0.02|0.06|A|F|1992-07-06|1992-07-19|1992-07-09|NONE|AIR|ully even dependencies. quickly unusual de| +14479|619678|7215|4|7|11183.48|0.01|0.06|A|F|1992-06-30|1992-07-24|1992-07-07|TAKE BACK RETURN|FOB|quietly above the final, even| +14479|915754|15755|5|17|30085.07|0.04|0.00|R|F|1992-05-29|1992-07-02|1992-06-14|NONE|RAIL|ggle blithely. s| +14479|72143|22144|6|25|27878.50|0.07|0.03|A|F|1992-05-18|1992-06-19|1992-06-02|COLLECT COD|AIR|ross the blithely bold dependen| +14504|872907|35425|1|46|86473.56|0.10|0.01|N|O|1997-11-02|1997-10-17|1997-11-14|NONE|RAIL|ep blithely quickly even pinto beans. blith| +14504|937878|25433|2|19|36400.77|0.03|0.03|N|O|1997-09-20|1997-09-21|1997-10-10|NONE|TRUCK|s. carefully regular ideas wake fur| +14504|909200|21719|3|45|54412.20|0.09|0.08|N|O|1997-10-15|1997-10-03|1997-11-12|TAKE BACK RETURN|RAIL| never spec| +14505|810958|10959|1|11|20558.01|0.03|0.00|R|F|1993-03-16|1993-02-07|1993-04-07|TAKE BACK RETURN|REG AIR|ly past the ideas. carefull| +14506|573911|23912|1|26|51607.14|0.09|0.01|R|F|1992-04-24|1992-05-15|1992-05-13|DELIVER IN PERSON|MAIL|t the blithely express account| +14506|711007|48550|2|41|41736.77|0.02|0.00|A|F|1992-05-02|1992-05-04|1992-05-23|COLLECT COD|FOB|. slyly ironic escapa| +14507|656232|6233|1|45|53469.00|0.08|0.05|N|O|1996-05-04|1996-04-17|1996-05-17|DELIVER IN PERSON|REG AIR| along the blithely special pinto beans sol| +14507|277562|40068|2|33|50805.15|0.02|0.05|N|O|1996-06-10|1996-05-04|1996-06-22|COLLECT COD|MAIL| furiously ironic depo| +14507|984393|34394|3|40|59094.00|0.00|0.02|N|O|1996-04-06|1996-05-22|1996-04-11|COLLECT COD|SHIP|ts are packages. slyly special as| +14507|691494|29034|4|29|43078.34|0.10|0.04|N|O|1996-07-12|1996-05-27|1996-08-09|DELIVER IN PERSON|SHIP|pecial packa| +14508|131334|31335|1|8|10922.64|0.04|0.08|N|O|1996-03-17|1996-03-29|1996-04-05|COLLECT COD|FOB|nts haggle slyly blithely ironic request| +14509|587351|37352|1|29|41711.57|0.04|0.06|N|O|1998-01-05|1997-12-24|1998-01-17|NONE|REG AIR|ng the slyly pe| +14510|266872|41883|1|43|79070.98|0.08|0.00|N|O|1998-10-14|1998-09-23|1998-10-15|DELIVER IN PERSON|SHIP|inside the carefully regular ideas.| +14510|302593|2594|2|42|67014.36|0.05|0.05|N|O|1998-11-26|1998-09-02|1998-12-11|TAKE BACK RETURN|RAIL|y silent deposi| +14510|672418|47445|3|47|65347.86|0.00|0.05|N|O|1998-08-19|1998-10-19|1998-08-30|COLLECT COD|MAIL|pinto beans boost carefull| +14511|886639|36640|1|20|32511.80|0.06|0.06|N|O|1996-12-15|1996-12-30|1996-12-20|DELIVER IN PERSON|MAIL|eposits. fluffily final accounts cajole | +14511|732984|32985|2|39|78661.05|0.06|0.02|N|O|1996-11-18|1997-01-09|1996-11-20|COLLECT COD|SHIP| to the fin| +14536|351335|26350|1|35|48521.20|0.02|0.03|A|F|1994-06-06|1994-04-15|1994-07-04|NONE|AIR|e requests hang after the furiously r| +14536|880684|5719|2|9|14981.76|0.03|0.07|A|F|1994-03-23|1994-03-22|1994-04-01|NONE|SHIP|y final packages are| +14536|653138|15652|3|26|28368.60|0.09|0.03|A|F|1994-05-19|1994-04-25|1994-06-05|COLLECT COD|TRUCK|y ironic foxes cajole furiou| +14536|287602|108|4|37|58814.83|0.01|0.00|R|F|1994-06-14|1994-04-29|1994-06-28|COLLECT COD|REG AIR|ep slyly c| +14537|130686|43189|1|18|30900.24|0.00|0.03|N|O|1998-03-15|1998-05-03|1998-04-07|TAKE BACK RETURN|SHIP|the carefully pending pains! | +14537|427645|27646|2|44|69195.28|0.08|0.03|N|O|1998-05-18|1998-04-07|1998-05-30|TAKE BACK RETURN|AIR|dependencies. quickly fi| +14537|415301|40318|3|28|34055.84|0.09|0.03|N|O|1998-06-11|1998-05-07|1998-07-05|TAKE BACK RETURN|REG AIR|the special, even r| +14537|956871|44429|4|6|11566.98|0.04|0.00|N|O|1998-03-01|1998-05-12|1998-03-15|TAKE BACK RETURN|TRUCK|es lose furio| +14537|121594|9101|5|7|11309.13|0.00|0.08|N|O|1998-06-05|1998-05-13|1998-06-18|TAKE BACK RETURN|MAIL|ar foxes use. express accounts| +14537|615265|15266|6|45|53110.35|0.02|0.02|N|O|1998-03-04|1998-05-14|1998-03-12|TAKE BACK RETURN|MAIL|uickly ironic instructions. per| +14538|736099|23642|1|4|4540.24|0.09|0.02|N|O|1997-12-24|1997-10-11|1998-01-12|TAKE BACK RETURN|AIR|nt epitaphs are alongside of th| +14538|610446|22959|2|22|29841.02|0.03|0.03|N|O|1997-11-23|1997-12-05|1997-11-25|TAKE BACK RETURN|TRUCK| furiously around the unusual,| +14538|753742|16258|3|33|59258.43|0.06|0.05|N|O|1997-11-15|1997-12-08|1997-12-13|NONE|AIR|against the regular asymptotes sle| +14538|128724|41227|4|46|80625.12|0.06|0.05|N|O|1997-12-10|1997-11-23|1997-12-24|NONE|AIR|encies. ironi| +14538|456145|31164|5|27|29730.24|0.00|0.05|N|O|1997-10-23|1997-11-27|1997-10-29|COLLECT COD|SHIP|fully final foxes haggle instructions. fur| +14538|419153|31662|6|6|6432.78|0.06|0.03|N|O|1997-10-17|1997-12-03|1997-10-28|COLLECT COD|REG AIR|xes haggle | +14539|364367|14368|1|21|30058.35|0.07|0.08|R|F|1993-12-30|1993-12-22|1994-01-03|COLLECT COD|FOB| wake regularly bold pin| +14539|905486|5487|2|29|43251.76|0.01|0.04|R|F|1993-12-30|1993-12-05|1994-01-08|DELIVER IN PERSON|TRUCK|al accounts again| +14539|502454|2455|3|21|30585.03|0.00|0.07|A|F|1993-11-25|1993-12-12|1993-12-08|DELIVER IN PERSON|MAIL|foxes. quickly si| +14539|742654|5169|4|16|27145.92|0.06|0.07|A|F|1994-02-07|1994-01-10|1994-02-28|COLLECT COD|TRUCK|ully ironic foxes are ca| +14539|774099|11645|5|35|41057.10|0.05|0.08|R|F|1993-11-27|1994-02-01|1993-12-18|NONE|FOB| bold accounts impress. final account| +14540|908444|45999|1|15|21786.00|0.03|0.01|N|O|1996-07-17|1996-09-06|1996-07-24|TAKE BACK RETURN|MAIL|reful account| +14540|209510|34519|2|27|38326.50|0.06|0.04|N|O|1996-10-29|1996-08-28|1996-11-26|TAKE BACK RETURN|REG AIR|en, pending pinto beans boost-- special pi| +14540|225767|13280|3|16|27084.00|0.10|0.01|N|O|1996-09-03|1996-10-02|1996-09-26|NONE|RAIL|ut the special accounts.| +14540|453373|15883|4|4|5305.40|0.10|0.01|N|O|1996-10-17|1996-09-05|1996-10-18|NONE|RAIL|ly silent packages. blithely express at| +14540|826672|39189|5|39|62346.57|0.06|0.08|N|O|1996-07-29|1996-09-22|1996-08-09|TAKE BACK RETURN|RAIL|ar dependencies. fluffily| +14541|293261|30777|1|50|62712.50|0.02|0.05|A|F|1992-09-08|1992-07-27|1992-09-15|DELIVER IN PERSON|TRUCK|lyly blithely special dep| +14542|180154|42658|1|48|59239.20|0.07|0.04|A|F|1993-05-15|1993-03-22|1993-06-14|TAKE BACK RETURN|SHIP|ffily even accounts. r| +14542|839842|2359|2|48|85526.40|0.09|0.05|A|F|1993-04-27|1993-04-15|1993-05-12|DELIVER IN PERSON|AIR|ns sleep carefully. slyly even sentime| +14542|218288|5801|3|5|6031.35|0.06|0.08|R|F|1993-02-27|1993-05-02|1993-03-09|NONE|FOB|yly fluffi| +14542|752804|15320|4|18|33421.86|0.04|0.02|R|F|1993-04-23|1993-04-02|1993-05-07|NONE|TRUCK|fix alongside of the| +14543|450426|25445|1|16|22022.40|0.06|0.05|N|O|1997-04-19|1997-04-25|1997-05-15|NONE|MAIL|onic excuses poach carefully busy| +14543|298668|48669|2|11|18333.15|0.01|0.04|N|O|1997-03-21|1997-04-12|1997-04-19|DELIVER IN PERSON|RAIL|quests unwind. ironic requ| +14543|698262|35802|3|21|26464.83|0.06|0.01|N|O|1997-04-30|1997-05-24|1997-05-24|COLLECT COD|MAIL|y ironic accounts| +14543|682795|7822|4|31|55110.56|0.00|0.06|N|O|1997-03-26|1997-04-20|1997-04-24|DELIVER IN PERSON|MAIL|quickly express | +14543|730903|30904|5|48|92825.76|0.00|0.08|N|O|1997-04-03|1997-05-12|1997-04-19|NONE|SHIP| according to| +14543|276876|39382|6|46|85231.56|0.04|0.08|N|O|1997-06-12|1997-05-05|1997-07-10|COLLECT COD|MAIL|o the blithely ironic pinto beans. d| +14568|721751|9294|1|46|81545.12|0.06|0.00|N|O|1997-07-23|1997-06-13|1997-08-21|COLLECT COD|REG AIR|ironic depths. regular forges promise| +14569|337147|37148|1|10|11841.30|0.07|0.01|R|F|1994-09-13|1994-07-15|1994-10-11|TAKE BACK RETURN|AIR|egrate across the regul| +14569|427124|39633|2|33|34686.30|0.03|0.00|R|F|1994-08-23|1994-07-01|1994-08-24|COLLECT COD|SHIP|ly careful pinto beans | +14569|664739|39766|3|34|57925.80|0.09|0.08|A|F|1994-06-29|1994-08-14|1994-07-11|NONE|MAIL|nts cajole requests. fluffily bold r| +14569|265939|28445|4|7|13334.44|0.08|0.01|A|F|1994-06-03|1994-08-19|1994-06-23|TAKE BACK RETURN|AIR|oze along the s| +14569|633717|21254|5|7|11554.76|0.09|0.05|R|F|1994-07-09|1994-08-09|1994-08-05|TAKE BACK RETURN|TRUCK| blithely r| +14569|865213|27731|6|44|51839.48|0.04|0.06|A|F|1994-07-28|1994-07-17|1994-08-03|COLLECT COD|SHIP|g asymptotes above the furiously | +14569|624462|36975|7|37|51297.91|0.09|0.07|R|F|1994-08-22|1994-07-15|1994-08-23|NONE|MAIL|ithely regular deposits. iro| +14570|316335|16336|1|45|60809.40|0.07|0.05|R|F|1993-07-29|1993-07-10|1993-08-19|NONE|SHIP|ole above the blithely regular request| +14570|636636|36637|2|14|22016.40|0.06|0.02|R|F|1993-05-15|1993-07-31|1993-06-06|TAKE BACK RETURN|TRUCK|ironic packages boost f| +14570|939053|1572|3|47|51324.47|0.05|0.03|A|F|1993-09-05|1993-06-18|1993-09-16|COLLECT COD|MAIL|arefully regular | +14570|648211|10724|4|23|26661.14|0.05|0.02|R|F|1993-08-16|1993-06-20|1993-08-20|NONE|FOB|e slyly bold packages. | +14571|813428|977|1|21|28168.98|0.00|0.06|R|F|1993-06-29|1993-06-17|1993-07-29|TAKE BACK RETURN|TRUCK|ss foxes s| +14572|471624|9152|1|9|14360.40|0.00|0.06|N|O|1996-12-07|1996-11-20|1997-01-04|COLLECT COD|REG AIR| along the | +14572|568786|6320|2|30|55642.80|0.06|0.07|N|O|1997-01-17|1996-11-02|1997-01-22|DELIVER IN PERSON|TRUCK|ages solve slyly alongside of the pack| +14572|584122|34123|3|29|34976.90|0.00|0.06|N|O|1996-10-03|1996-11-14|1996-10-14|TAKE BACK RETURN|FOB|ecial pinto beans nag. ruthless accounts | +14572|325691|38198|4|21|36050.28|0.04|0.04|N|O|1997-01-25|1996-12-20|1997-02-09|COLLECT COD|RAIL|es. blithely final dep| +14572|877591|27592|5|14|21959.70|0.03|0.02|N|O|1997-01-27|1996-11-11|1997-01-28|COLLECT COD|MAIL|ular pinto beans se| +14572|659750|47290|6|28|47872.16|0.05|0.01|N|O|1996-12-16|1996-11-16|1997-01-13|DELIVER IN PERSON|TRUCK|foxes. ironic packages about the | +14572|407363|7364|7|15|19055.10|0.09|0.05|N|O|1996-10-27|1996-12-02|1996-11-05|COLLECT COD|AIR|es wake carefully regul| +14573|544448|6959|1|7|10446.94|0.10|0.02|A|F|1993-01-25|1993-01-20|1993-01-31|DELIVER IN PERSON|SHIP|ges. special| +14573|532953|20484|2|1|1985.93|0.07|0.02|A|F|1993-01-08|1992-12-31|1993-01-16|DELIVER IN PERSON|RAIL|mptotes use blithely among the bl| +14573|333518|33519|3|9|13963.50|0.04|0.03|R|F|1993-02-10|1993-01-31|1993-02-26|NONE|AIR|ccounts. fluffily regular requests hag| +14574|724416|11959|1|8|11523.04|0.00|0.00|N|O|1997-02-04|1997-01-13|1997-03-04|NONE|REG AIR|y even accounts are| +14574|253752|16258|2|19|32409.06|0.09|0.08|N|O|1996-11-21|1996-12-24|1996-12-03|NONE|SHIP| requests. care| +14574|797097|47098|3|48|57314.88|0.06|0.01|N|O|1997-02-10|1997-01-15|1997-02-23|DELIVER IN PERSON|FOB|ing ideas to the furiously special request| +14574|794350|31896|4|14|20220.48|0.04|0.07|N|O|1997-01-01|1997-02-08|1997-01-21|DELIVER IN PERSON|RAIL|unts boost furiously | +14574|634252|21789|5|14|16607.08|0.08|0.02|N|O|1997-03-14|1997-01-27|1997-03-24|DELIVER IN PERSON|MAIL|re furiously about the even r| +14574|865952|3504|6|33|63291.03|0.04|0.06|N|O|1996-12-31|1996-12-24|1997-01-29|COLLECT COD|RAIL| requests. furiously final theodo| +14574|52329|2330|7|41|52534.12|0.05|0.07|N|O|1996-12-16|1997-01-23|1997-01-10|TAKE BACK RETURN|REG AIR|s. furiously | +14575|483942|21470|1|18|34666.56|0.10|0.01|N|O|1997-11-28|1997-12-06|1997-12-14|COLLECT COD|TRUCK|ntegrate permanently at| +14575|596805|46806|2|5|9508.90|0.10|0.02|N|O|1998-01-24|1997-12-16|1998-02-17|DELIVER IN PERSON|AIR|ular orbits. ironic, silent realms nod | +14575|498740|36268|3|23|39990.56|0.04|0.05|N|O|1997-12-24|1998-01-08|1997-12-26|DELIVER IN PERSON|SHIP|efully final accounts cajole. orbits acro| +14575|317326|4845|4|19|25522.89|0.00|0.03|N|O|1997-12-19|1998-01-23|1998-01-12|TAKE BACK RETURN|RAIL|hely pending accounts| +14575|282212|32213|5|28|33437.60|0.10|0.06|N|O|1997-11-01|1997-12-10|1997-11-06|COLLECT COD|AIR|onic foxes wake. final excu| +14575|136067|23574|6|14|15442.84|0.04|0.00|N|O|1998-01-08|1997-12-17|1998-01-10|TAKE BACK RETURN|REG AIR|refully ironic packa| +14600|182484|32485|1|35|54826.80|0.04|0.06|N|O|1995-09-01|1995-10-14|1995-09-04|COLLECT COD|RAIL| requests. depende| +14601|834230|21779|1|31|36089.89|0.00|0.06|N|O|1997-07-19|1997-08-17|1997-07-20|NONE|FOB|uests wake enticingly| +14601|890933|28485|2|29|55792.81|0.09|0.08|N|O|1997-10-16|1997-08-31|1997-11-02|TAKE BACK RETURN|MAIL|lyly. foxes cajole | +14601|903519|41074|3|44|66988.68|0.04|0.00|N|O|1997-09-22|1997-09-25|1997-09-26|TAKE BACK RETURN|RAIL|ave ideas. carefu| +14601|441476|41477|4|28|39688.60|0.06|0.03|N|O|1997-10-21|1997-08-23|1997-10-24|COLLECT COD|MAIL|odolites boo| +14601|874974|37492|5|32|62365.76|0.03|0.08|N|O|1997-08-21|1997-08-28|1997-09-20|NONE|AIR|es integrate furiously furiously pending p| +14601|677918|27919|6|24|45501.12|0.06|0.02|N|O|1997-08-22|1997-09-18|1997-09-16|NONE|FOB| fluffily bl| +14601|762411|24927|7|32|47148.16|0.02|0.07|N|O|1997-09-26|1997-10-10|1997-09-29|NONE|MAIL|y special theodolites use qu| +14602|826519|26520|1|34|49145.98|0.02|0.07|A|F|1993-05-10|1993-07-12|1993-05-19|TAKE BACK RETURN|REG AIR|fully. carefully bol| +14602|303883|3884|2|36|67927.32|0.08|0.01|A|F|1993-06-13|1993-06-26|1993-07-05|NONE|AIR|s. silent dolphins boost slyly across the f| +14602|354967|17475|3|40|80878.00|0.01|0.06|A|F|1993-06-17|1993-07-20|1993-06-30|DELIVER IN PERSON|TRUCK|deposits. fi| +14602|929112|29113|4|5|5705.35|0.09|0.04|A|F|1993-07-29|1993-06-24|1993-08-13|NONE|REG AIR|s pinto beans boost quickly. b| +14603|926483|39002|1|19|28679.36|0.01|0.08|N|O|1997-08-21|1997-08-16|1997-09-14|COLLECT COD|REG AIR|ies are furiously sil| +14603|395886|33408|2|4|7927.48|0.00|0.00|N|O|1997-08-15|1997-08-03|1997-08-29|NONE|FOB|capades engage. requests | +14604|632541|7566|1|25|36837.75|0.07|0.04|A|F|1993-11-07|1993-09-09|1993-12-01|COLLECT COD|SHIP|c, bold accounts haggl| +14604|115151|2658|2|28|32652.20|0.00|0.06|R|F|1993-09-21|1993-09-14|1993-09-29|COLLECT COD|MAIL|ccounts. furiously express pinto beans bo| +14604|333024|8037|3|13|13741.13|0.10|0.04|A|F|1993-08-15|1993-09-23|1993-09-06|TAKE BACK RETURN|RAIL|bove the furiously| +14604|128827|16334|4|35|64953.70|0.00|0.01|A|F|1993-08-16|1993-09-28|1993-09-03|DELIVER IN PERSON|REG AIR|ously regular deposits sleep carefu| +14604|186524|49028|5|14|22547.28|0.03|0.04|R|F|1993-07-30|1993-09-09|1993-08-18|NONE|TRUCK| slyly regular theodolites are blithely| +14604|897960|10478|6|50|97896.00|0.03|0.08|R|F|1993-08-10|1993-10-06|1993-09-02|NONE|RAIL|nusual foxes use. quickly regula| +14604|10655|35656|7|37|57929.05|0.08|0.05|A|F|1993-10-11|1993-08-19|1993-11-01|TAKE BACK RETURN|REG AIR|ly bold foxes are finally. blith| +14605|73935|48938|1|44|83992.92|0.02|0.08|N|O|1996-12-12|1996-12-24|1997-01-06|DELIVER IN PERSON|SHIP|silent theo| +14605|610609|10610|2|5|7597.85|0.02|0.00|N|O|1997-03-03|1996-12-26|1997-03-25|TAKE BACK RETURN|AIR|about the b| +14605|502715|40246|3|30|51530.70|0.08|0.04|N|O|1997-02-01|1997-01-15|1997-03-02|TAKE BACK RETURN|FOB|ay furiously slyly regular dep| +14605|119120|6627|4|50|56956.00|0.09|0.03|N|O|1996-12-30|1997-01-03|1997-01-14|TAKE BACK RETURN|REG AIR|oldly even instructions alongside of t| +14605|47539|35040|5|29|43109.37|0.02|0.02|N|O|1997-03-17|1997-02-14|1997-03-29|TAKE BACK RETURN|SHIP|y among the pending, express ex| +14606|683769|21309|1|16|28043.68|0.06|0.08|R|F|1992-08-04|1992-05-19|1992-08-15|NONE|FOB|ainst the slyly unu| +14606|91709|29213|2|6|10204.20|0.03|0.00|R|F|1992-07-28|1992-06-09|1992-08-25|COLLECT COD|MAIL|even dependencies | +14606|339931|2438|3|44|86720.48|0.07|0.02|A|F|1992-05-25|1992-06-07|1992-06-12|NONE|REG AIR|nts boost. unusual fre| +14606|208722|8723|4|5|8153.55|0.03|0.03|R|F|1992-06-08|1992-07-01|1992-07-05|NONE|FOB|. slyly final packages affix after the | +14607|331439|43946|1|16|23526.72|0.00|0.03|R|F|1994-04-01|1994-02-08|1994-04-12|DELIVER IN PERSON|MAIL|ts. instructions against th| +14607|490472|2982|2|4|5849.80|0.05|0.02|A|F|1994-02-04|1994-03-04|1994-02-27|DELIVER IN PERSON|MAIL|r the furiously express | +14632|294978|7484|1|47|92729.12|0.07|0.04|N|O|1998-06-08|1998-07-21|1998-07-06|NONE|AIR|ins. deposits | +14632|684851|34852|2|27|49567.14|0.04|0.04|N|O|1998-07-21|1998-06-29|1998-08-08|TAKE BACK RETURN|RAIL|symptotes after the quick| +14632|287775|12786|3|27|47594.52|0.00|0.03|N|O|1998-06-24|1998-08-01|1998-07-12|DELIVER IN PERSON|MAIL|al packages c| +14632|619692|7229|4|39|62854.74|0.00|0.01|N|O|1998-06-13|1998-08-11|1998-07-07|COLLECT COD|MAIL|ong the carefully permanent ins| +14633|388208|716|1|7|9073.33|0.00|0.07|R|F|1994-08-25|1994-08-04|1994-09-09|DELIVER IN PERSON|AIR| haggle furiously aroun| +14633|605755|30780|2|42|69750.24|0.06|0.03|A|F|1994-06-25|1994-07-08|1994-07-11|NONE|SHIP|ckly pending requests? | +14633|912385|49940|3|9|12576.06|0.00|0.01|R|F|1994-06-22|1994-08-19|1994-07-13|NONE|AIR|y regular, stealthy packages. ironic, re| +14634|123543|48548|1|46|72060.84|0.05|0.01|N|O|1997-08-12|1997-08-11|1997-09-01|DELIVER IN PERSON|REG AIR|epitaphs. fluffily regular dep| +14634|380219|30220|2|7|9094.40|0.08|0.01|N|O|1997-06-06|1997-08-05|1997-07-02|DELIVER IN PERSON|RAIL| are fluffily after the pending instruct| +14634|329019|29020|3|47|49256.00|0.08|0.04|N|O|1997-09-09|1997-07-10|1997-09-18|DELIVER IN PERSON|FOB|about the regular asymptotes. ruthlessly f| +14635|895124|32676|1|50|55954.00|0.05|0.04|R|F|1993-06-04|1993-06-19|1993-06-13|TAKE BACK RETURN|RAIL|rts print sl| +14635|336757|24276|2|9|16143.66|0.04|0.01|R|F|1993-05-15|1993-06-10|1993-05-27|DELIVER IN PERSON|FOB|sits after the bold accounts wake st| +14635|872039|47074|3|10|10109.90|0.03|0.01|A|F|1993-07-22|1993-07-07|1993-07-27|COLLECT COD|MAIL|ar platelets run furiously. sl| +14636|292524|5030|1|11|16681.61|0.09|0.00|N|O|1997-11-23|1997-10-19|1997-12-04|TAKE BACK RETURN|REG AIR|g the sautern| +14636|439400|39401|2|43|57593.34|0.04|0.06|N|O|1997-12-04|1997-10-28|1998-01-01|NONE|RAIL|ntly above th| +14636|988917|13956|3|37|74217.19|0.06|0.07|N|O|1997-11-03|1997-09-25|1997-11-07|DELIVER IN PERSON|TRUCK| have to integrate | +14637|343992|6499|1|19|38683.62|0.05|0.07|A|F|1993-03-21|1993-03-14|1993-04-12|COLLECT COD|AIR|le ideas run above | +14638|957593|45151|1|48|79226.40|0.03|0.04|A|F|1993-06-27|1993-07-11|1993-07-10|NONE|TRUCK| the slyly unusual deposits haggle acco| +14638|248913|36426|2|7|13033.30|0.04|0.03|R|F|1993-07-13|1993-07-27|1993-07-29|TAKE BACK RETURN|TRUCK|ar ideas try to sleep pending fo| +14638|468731|6259|3|19|32294.49|0.10|0.05|R|F|1993-07-10|1993-07-28|1993-08-08|NONE|TRUCK|xcuses sleep carefully along| +14638|951224|1225|4|10|12751.80|0.01|0.00|R|F|1993-09-28|1993-09-03|1993-10-09|DELIVER IN PERSON|AIR|ly. pending, special requests sleep | +14638|213421|13422|5|38|50707.58|0.07|0.01|R|F|1993-07-04|1993-08-03|1993-07-26|NONE|SHIP|ns. carefully even deposits hagg| +14638|952109|2110|6|4|4644.24|0.10|0.02|A|F|1993-08-14|1993-07-31|1993-08-26|DELIVER IN PERSON|REG AIR|ns. blithely spec| +14639|925601|638|1|17|27651.52|0.00|0.07|R|F|1993-12-22|1994-01-22|1994-01-15|NONE|SHIP| deposits. quickly regular pinto | +14639|562709|37732|2|9|15945.12|0.09|0.00|R|F|1994-01-09|1993-12-15|1994-02-07|TAKE BACK RETURN|RAIL| even packages cajole silent, final a| +14639|447632|22649|3|46|72662.06|0.09|0.05|A|F|1993-12-12|1993-12-19|1994-01-09|TAKE BACK RETURN|RAIL|y even multipliers? pending requests da| +14664|818233|5782|1|28|32233.32|0.05|0.02|N|O|1997-09-12|1997-08-26|1997-10-02|COLLECT COD|TRUCK|s packages nag against the ca| +14664|36835|24336|2|47|83276.01|0.01|0.03|N|O|1997-07-24|1997-09-03|1997-07-28|NONE|SHIP|w slyly blithely final acc| +14664|82377|32378|3|6|8156.22|0.04|0.02|N|O|1997-09-24|1997-08-27|1997-10-20|COLLECT COD|MAIL|r accounts wake blithely fluffily ironi| +14665|175150|37654|1|2|2450.30|0.07|0.02|R|F|1993-08-24|1993-06-14|1993-09-21|TAKE BACK RETURN|AIR|e, final ide| +14665|736019|48534|2|9|9494.82|0.03|0.05|R|F|1993-09-09|1993-06-30|1993-09-29|DELIVER IN PERSON|AIR|ickly blithely regular| +14665|260890|48406|3|45|83289.60|0.06|0.08|A|F|1993-07-06|1993-07-02|1993-08-05|DELIVER IN PERSON|FOB| blithely pending ideas. blithely regular| +14666|31126|6127|1|24|25370.88|0.02|0.02|N|O|1997-08-31|1997-08-28|1997-09-06|COLLECT COD|MAIL|ly express | +14666|131881|6886|2|4|7651.52|0.04|0.04|N|O|1997-07-22|1997-09-30|1997-07-28|DELIVER IN PERSON|TRUCK|he ruthlessly special excuse| +14666|510304|35325|3|41|53885.48|0.03|0.08|N|O|1997-10-22|1997-09-10|1997-11-04|COLLECT COD|SHIP|. blithely regular pinto beans integrate fl| +14666|668121|5661|4|12|13069.08|0.08|0.03|N|O|1997-10-05|1997-09-16|1997-11-01|COLLECT COD|RAIL| the pinto beans. requests nag f| +14666|103756|3757|5|26|45753.50|0.05|0.05|N|O|1997-09-14|1997-09-27|1997-09-25|DELIVER IN PERSON|FOB| requests af| +14666|826362|13911|6|37|47667.84|0.07|0.03|N|O|1997-09-01|1997-10-09|1997-09-25|DELIVER IN PERSON|AIR|express esc| +14666|665645|15646|7|20|32212.20|0.09|0.00|N|O|1997-07-29|1997-08-26|1997-08-15|DELIVER IN PERSON|AIR|posits. bold depen| +14667|492736|17755|1|26|44946.46|0.07|0.07|N|O|1996-10-16|1996-12-06|1996-10-20|COLLECT COD|SHIP|ven, special deposits. accounts acro| +14667|397421|47422|2|36|54662.76|0.10|0.01|N|O|1996-11-01|1996-11-30|1996-11-20|TAKE BACK RETURN|TRUCK|sits nag. regular packages wake | +14668|548597|23618|1|7|11518.99|0.07|0.07|N|O|1995-07-03|1995-07-25|1995-07-29|DELIVER IN PERSON|FOB| slyly regular idea| +14668|264283|39294|2|19|23698.13|0.10|0.01|N|O|1995-08-18|1995-07-11|1995-09-15|COLLECT COD|MAIL|s boost blithely according to the| +14668|797552|10068|3|46|75877.92|0.08|0.06|N|O|1995-08-06|1995-07-14|1995-08-09|DELIVER IN PERSON|MAIL|mise furiously bold, even accounts. | +14668|441057|41058|4|15|14970.45|0.06|0.01|N|O|1995-07-11|1995-05-30|1995-08-04|COLLECT COD|REG AIR|instructions wake slyly ac| +14668|840931|15964|5|14|26206.46|0.08|0.08|R|F|1995-05-08|1995-07-18|1995-05-15|DELIVER IN PERSON|MAIL|equests nag stealthily. b| +14668|512371|49902|6|30|41500.50|0.02|0.00|N|O|1995-07-14|1995-07-16|1995-08-01|DELIVER IN PERSON|TRUCK|y regular requests. quickly f| +14668|411824|36841|7|30|52074.00|0.10|0.05|N|O|1995-07-24|1995-06-18|1995-08-14|TAKE BACK RETURN|SHIP|, regular requests are evenly of the ruth| +14669|516652|16653|1|31|51727.53|0.04|0.05|N|O|1995-09-30|1995-08-02|1995-10-11|DELIVER IN PERSON|REG AIR|even packa| +14669|356052|6053|2|50|55402.00|0.05|0.06|N|O|1995-09-29|1995-08-23|1995-10-26|TAKE BACK RETURN|MAIL|the final pinto beans. s| +14669|158745|21249|3|35|63130.90|0.06|0.08|N|O|1995-09-24|1995-08-01|1995-09-29|DELIVER IN PERSON|MAIL| affix. fluffily regular ins| +14669|15753|15754|4|47|78431.25|0.02|0.04|N|O|1995-09-23|1995-08-12|1995-09-25|DELIVER IN PERSON|TRUCK|s detect furiously even foxes. accounts sl| +14669|759757|22273|5|25|45418.00|0.00|0.02|N|O|1995-07-22|1995-07-12|1995-08-19|NONE|REG AIR|ven accounts. blit| +14669|221889|21890|6|49|88732.63|0.08|0.01|N|O|1995-09-01|1995-08-27|1995-09-16|COLLECT COD|REG AIR|unts nag along the ironic requests. regul| +14669|276363|1374|7|32|42859.20|0.05|0.02|N|O|1995-07-23|1995-07-09|1995-08-08|COLLECT COD|RAIL|excuses. ironic dependencies across the fi| +14670|832314|44831|1|7|8723.89|0.08|0.02|N|O|1997-03-07|1996-12-15|1997-04-05|NONE|TRUCK|across the fluffily| +14670|698494|36034|2|43|64175.78|0.05|0.02|N|O|1997-02-02|1997-02-05|1997-02-14|NONE|AIR|eep for the slyly pending deposits. f| +14670|573416|35928|3|43|64043.77|0.07|0.06|N|O|1996-11-28|1997-02-03|1996-12-11|COLLECT COD|MAIL|eposits ca| +14670|401531|26548|4|35|50137.85|0.04|0.04|N|O|1997-01-16|1997-01-23|1997-02-07|TAKE BACK RETURN|TRUCK|nic theodolites d| +14671|795306|20337|1|11|15413.97|0.08|0.01|A|F|1992-08-25|1992-10-14|1992-09-07|TAKE BACK RETURN|REG AIR|ress, final platelets cajole car| +14671|698047|35587|2|31|32395.31|0.05|0.08|A|F|1992-10-12|1992-10-06|1992-10-13|NONE|FOB|bove the pending packages| +14696|427087|39596|1|18|18253.08|0.02|0.05|A|F|1993-04-30|1993-03-30|1993-05-18|TAKE BACK RETURN|FOB|en deposits across the slyly special f| +14696|48608|36109|2|6|9339.60|0.05|0.04|A|F|1993-03-05|1993-03-26|1993-03-25|COLLECT COD|REG AIR|olites. closely bold platelets impress amo| +14696|953568|28607|3|3|4864.56|0.05|0.04|R|F|1993-02-18|1993-02-27|1993-03-05|TAKE BACK RETURN|TRUCK|ong the unusual, express requests. sly| +14696|604727|17240|4|27|44055.63|0.01|0.01|A|F|1993-04-15|1993-02-25|1993-05-04|TAKE BACK RETURN|FOB|efully specia| +14696|633577|46090|5|5|7552.70|0.04|0.08|R|F|1993-01-21|1993-03-29|1993-02-05|TAKE BACK RETURN|FOB|the quickly re| +14696|523696|11227|6|26|44711.42|0.02|0.00|A|F|1993-02-21|1993-03-05|1993-03-17|NONE|RAIL|ully furiously fin| +14697|49225|11726|1|14|16439.08|0.01|0.03|A|F|1994-08-05|1994-08-04|1994-08-16|COLLECT COD|AIR|ar accounts. furiously express instructions| +14697|314217|26724|2|41|50479.20|0.01|0.06|A|F|1994-07-23|1994-08-21|1994-07-27|TAKE BACK RETURN|MAIL|osits-- blithely b| +14697|38662|1163|3|23|36815.18|0.03|0.06|A|F|1994-08-28|1994-08-16|1994-09-15|COLLECT COD|AIR|ronic deposits. fluffily unu| +14697|781968|31969|4|39|79947.27|0.00|0.03|R|F|1994-09-13|1994-07-19|1994-09-22|TAKE BACK RETURN|AIR|final packag| +14697|530788|30789|5|15|27281.40|0.04|0.03|A|F|1994-07-18|1994-09-02|1994-07-29|TAKE BACK RETURN|REG AIR|ove the fluffily final | +14697|949252|11771|6|35|45542.35|0.08|0.07|R|F|1994-07-16|1994-08-05|1994-08-11|NONE|RAIL|gular gifts play. deposits nag carefu| +14698|588742|1254|1|19|34783.68|0.09|0.05|A|F|1993-01-30|1993-01-02|1993-02-10|COLLECT COD|SHIP|fully brave deposits above the slyly spe| +14698|976093|26094|2|17|19873.85|0.10|0.01|R|F|1992-11-20|1992-11-26|1992-11-28|DELIVER IN PERSON|FOB| wake. quickly bold pint| +14698|194868|7372|3|28|54960.08|0.04|0.08|R|F|1992-11-23|1992-12-19|1992-12-04|TAKE BACK RETURN|FOB| accounts. furi| +14698|137442|37443|4|13|19232.72|0.05|0.07|R|F|1992-12-10|1992-12-05|1992-12-20|COLLECT COD|SHIP|s after the never even packages ha| +14698|984960|47480|5|8|16359.36|0.00|0.00|A|F|1993-01-21|1992-12-31|1993-02-07|DELIVER IN PERSON|TRUCK|dolites. idly bold requests cajole care| +14698|212312|12313|6|40|48972.00|0.10|0.07|R|F|1992-11-12|1992-12-24|1992-11-14|DELIVER IN PERSON|AIR| beans about the blithely special| +14698|316475|3994|7|28|41760.88|0.00|0.01|A|F|1992-11-03|1992-11-30|1992-12-01|DELIVER IN PERSON|SHIP|to the slyly regular ideas. dogged, final | +14699|985447|47967|1|34|52101.60|0.09|0.03|A|F|1992-03-17|1992-05-24|1992-04-02|TAKE BACK RETURN|AIR|ouches. eve| +14699|402341|27358|2|25|31083.00|0.10|0.02|R|F|1992-04-25|1992-05-19|1992-05-16|NONE|FOB|usly unusual courts: slyly even| +14699|139482|39483|3|41|62380.68|0.08|0.08|R|F|1992-06-04|1992-04-10|1992-06-09|DELIVER IN PERSON|REG AIR| regular packages believe furiousl| +14699|264543|39554|4|32|48240.96|0.03|0.03|A|F|1992-06-30|1992-05-18|1992-07-16|COLLECT COD|TRUCK|riously unusual excuses ar| +14700|762646|12647|1|9|15377.49|0.06|0.02|R|F|1992-12-26|1993-01-10|1993-01-17|DELIVER IN PERSON|FOB|ts. blithely f| +14700|784150|9181|2|14|17277.68|0.05|0.07|A|F|1993-01-20|1993-01-02|1993-01-23|TAKE BACK RETURN|TRUCK|ies. furiously pending accounts abov| +14700|201054|1055|3|34|32471.36|0.04|0.02|A|F|1993-02-09|1993-02-21|1993-03-01|DELIVER IN PERSON|MAIL|refully at the blithely ironic plate| +14700|98690|36194|4|30|50660.70|0.06|0.03|A|F|1993-03-05|1993-02-25|1993-03-16|DELIVER IN PERSON|MAIL|p fluffily according to t| +14700|669173|44200|5|45|51396.30|0.08|0.01|A|F|1993-02-27|1993-01-03|1993-03-28|NONE|REG AIR|ounts-- fluffily regular inst| +14701|207388|32397|1|35|45337.95|0.07|0.00|N|O|1995-06-27|1995-07-17|1995-07-10|NONE|FOB|y stealthily regular packages. sly | +14701|557645|7646|2|49|83428.38|0.05|0.08|N|O|1995-07-23|1995-07-12|1995-08-09|NONE|AIR|pending instructions cajole st| +14701|323093|48106|3|22|24553.76|0.02|0.03|N|O|1995-08-08|1995-07-10|1995-08-29|TAKE BACK RETURN|AIR|requests detect| +14701|218746|31251|4|47|78242.31|0.01|0.02|N|O|1995-08-28|1995-07-28|1995-09-14|TAKE BACK RETURN|FOB| about the fluffily reg| +14702|325523|13042|1|15|23227.65|0.01|0.08|N|O|1997-11-19|1997-11-07|1997-12-01|TAKE BACK RETURN|AIR|bold theodolites. slyly si| +14702|58689|21191|2|14|23067.52|0.08|0.07|N|O|1997-11-23|1997-11-13|1997-12-06|TAKE BACK RETURN|FOB|nic deposits play carefully instruction| +14703|900733|734|1|19|32940.11|0.08|0.07|N|O|1997-05-14|1997-06-12|1997-06-05|DELIVER IN PERSON|FOB|d asymptotes haggle furiously req| +14703|612348|24861|2|42|52933.02|0.01|0.01|N|O|1997-05-22|1997-07-01|1997-06-18|TAKE BACK RETURN|TRUCK|ons. blithely final ideas after the dari| +14703|730393|42908|3|50|71168.00|0.10|0.00|N|O|1997-06-08|1997-07-14|1997-06-20|NONE|REG AIR|ly final multipliers. fluffily speci| +14703|698932|11446|4|36|69512.40|0.08|0.00|N|O|1997-06-19|1997-05-24|1997-07-06|TAKE BACK RETURN|FOB|ructions integrate sly| +14703|946146|8665|5|9|10728.90|0.01|0.05|N|O|1997-06-05|1997-06-19|1997-06-13|NONE|RAIL|he carefully i| +14728|611580|24093|1|46|68611.30|0.05|0.03|A|F|1995-01-29|1995-02-19|1995-02-28|NONE|REG AIR|sts. special pinto beans are.| +14728|822542|10091|2|48|70296.00|0.05|0.01|A|F|1994-12-24|1995-01-30|1994-12-26|NONE|SHIP|refully. fluffy, final accounts are furious| +14729|219045|19046|1|13|12532.39|0.02|0.05|A|F|1993-06-30|1993-06-29|1993-07-02|NONE|AIR|packages. furiously ironic requ| +14729|486674|24202|2|27|44837.55|0.01|0.06|R|F|1993-07-09|1993-06-27|1993-08-02|COLLECT COD|MAIL|pending platelets. bold, final pinto | +14729|528843|28844|3|27|50539.14|0.06|0.02|A|F|1993-06-24|1993-07-14|1993-07-17|DELIVER IN PERSON|FOB|ing to the fluffily bold pinto b| +14729|255893|30904|4|14|25884.32|0.04|0.06|R|F|1993-07-03|1993-08-01|1993-07-13|NONE|FOB|the final, final accounts| +14730|499940|12450|1|3|5819.76|0.09|0.04|N|O|1995-09-05|1995-10-27|1995-09-16|NONE|RAIL|y final dependencie| +14730|483782|8801|2|48|84756.48|0.07|0.03|N|O|1995-09-07|1995-10-28|1995-10-07|DELIVER IN PERSON|TRUCK|zzle slyly according to th| +14731|468286|5814|1|30|37627.80|0.03|0.04|N|O|1997-08-29|1997-09-08|1997-09-14|COLLECT COD|AIR|iously permanen| +14731|471406|46425|2|38|52340.44|0.05|0.00|N|O|1997-08-01|1997-08-29|1997-08-27|NONE|REG AIR| sleep furiousl| +14731|918536|18537|3|1|1554.49|0.03|0.04|N|O|1997-09-10|1997-08-18|1997-09-21|COLLECT COD|TRUCK| fluffily regular excuses by the bold plate| +14731|833581|21130|4|14|21203.56|0.02|0.02|N|O|1997-08-20|1997-08-16|1997-09-15|DELIVER IN PERSON|AIR|sly ironic pi| +14731|980998|18556|5|38|79000.10|0.00|0.04|N|O|1997-07-29|1997-08-14|1997-08-04|NONE|SHIP|riously ironic deposits. carefully | +14731|621461|21462|6|38|52532.34|0.04|0.05|N|O|1997-07-06|1997-08-28|1997-07-13|DELIVER IN PERSON|TRUCK|s. pinto beans use carefully b| +14731|889152|14187|7|2|2282.22|0.07|0.08|N|O|1997-08-20|1997-08-04|1997-08-25|DELIVER IN PERSON|RAIL|structions sleep ironi| +14732|967023|17024|1|44|47959.12|0.08|0.08|N|O|1996-12-21|1996-12-17|1997-01-04|DELIVER IN PERSON|FOB|l instructions wake sly foxes. fluffily | +14732|747267|9782|2|5|6571.15|0.01|0.08|N|O|1996-10-14|1996-11-16|1996-10-17|COLLECT COD|TRUCK|ronic pinto beans ought to| +14732|313547|26054|3|26|40573.78|0.10|0.05|N|O|1996-12-19|1996-11-20|1996-12-24|TAKE BACK RETURN|REG AIR| ruthlessly regu| +14732|772650|10196|4|30|51678.60|0.09|0.01|N|O|1997-01-05|1996-12-23|1997-01-08|NONE|TRUCK|ly regular multipliers. ironic pack| +14733|824904|24905|1|34|62181.24|0.08|0.02|A|F|1995-04-04|1995-05-15|1995-04-18|NONE|AIR|c requests. special pac| +14733|153778|28785|2|5|9158.85|0.03|0.02|R|F|1995-04-10|1995-04-27|1995-04-17|DELIVER IN PERSON|AIR|dogged requ| +14733|533320|20851|3|17|23006.10|0.07|0.06|R|F|1995-04-02|1995-04-25|1995-04-17|COLLECT COD|FOB|o the slyly sly accounts cajole packages| +14733|508124|8125|4|46|52076.60|0.09|0.01|A|F|1995-05-01|1995-06-03|1995-05-06|TAKE BACK RETURN|REG AIR| packages was. decoys integrate sly| +14733|37019|12020|5|40|38240.40|0.06|0.03|N|F|1995-06-05|1995-06-01|1995-06-22|DELIVER IN PERSON|RAIL|riously after the furiously | +14734|565381|40404|1|16|23141.76|0.02|0.00|N|O|1996-03-25|1996-03-23|1996-04-18|DELIVER IN PERSON|FOB|e carefully against| +14734|355511|43033|2|44|68926.00|0.04|0.01|N|O|1996-05-20|1996-05-09|1996-05-28|TAKE BACK RETURN|AIR|nding theodolites ab| +14735|79656|17160|1|23|37619.95|0.05|0.08|N|O|1996-06-09|1996-07-21|1996-06-22|COLLECT COD|AIR|ts. furiously regular asymptotes wake. | +14735|762792|12793|2|35|64916.60|0.09|0.03|N|O|1996-08-08|1996-06-19|1996-08-27|TAKE BACK RETURN|AIR|ending pinto beans haggle quickly ironic| +14735|228834|16347|3|7|12339.74|0.07|0.05|N|O|1996-06-02|1996-07-12|1996-06-16|COLLECT COD|MAIL| final waters nag furiously packag| +14735|2247|14748|4|13|14940.12|0.09|0.07|N|O|1996-07-28|1996-07-11|1996-08-13|DELIVER IN PERSON|SHIP|posits along the fluffily exp| +14735|755157|30188|5|44|53333.28|0.10|0.03|N|O|1996-06-16|1996-06-03|1996-07-09|TAKE BACK RETURN|SHIP|s. ironic, bold epitaphs affix furiously | +14760|266812|16813|1|19|33797.20|0.09|0.00|A|F|1993-06-18|1993-07-26|1993-06-19|DELIVER IN PERSON|MAIL|he unusual, final ideas impress against | +14760|298932|23943|2|7|13516.44|0.00|0.06|R|F|1993-09-04|1993-07-03|1993-09-27|COLLECT COD|SHIP|ove the quickly final accounts. furiously r| +14760|134929|9934|3|33|64809.36|0.04|0.05|R|F|1993-09-23|1993-07-28|1993-10-17|COLLECT COD|REG AIR|vely ironic foxes. unusu| +14760|744902|32445|4|4|7787.48|0.01|0.00|R|F|1993-07-31|1993-07-02|1993-08-24|DELIVER IN PERSON|FOB| requests x-| +14760|565186|40209|5|43|53799.88|0.01|0.06|R|F|1993-09-12|1993-06-27|1993-10-09|TAKE BACK RETURN|AIR|ecial foxes aft| +14760|74211|36713|6|20|23704.20|0.10|0.03|A|F|1993-07-14|1993-08-24|1993-07-27|NONE|AIR|ng the pend| +14761|838011|528|1|10|9489.70|0.02|0.08|N|O|1996-01-26|1996-03-16|1996-02-08|NONE|MAIL|hely according to the final accoun| +14761|442828|5337|2|7|12395.60|0.08|0.01|N|O|1996-04-24|1996-03-17|1996-05-01|TAKE BACK RETURN|TRUCK|usly specia| +14761|602320|2321|3|24|29334.96|0.01|0.08|N|O|1996-03-25|1996-03-14|1996-04-16|NONE|REG AIR|tegrate. slyly bold accou| +14761|180108|17618|4|17|20197.70|0.03|0.07|N|O|1996-03-25|1996-02-19|1996-03-27|TAKE BACK RETURN|SHIP| furiously ironic foxes sleep careful| +14761|59772|22274|5|1|1731.77|0.01|0.04|N|O|1996-03-26|1996-03-12|1996-04-05|TAKE BACK RETURN|REG AIR|lar requests. packa| +14762|789309|26855|1|27|37753.29|0.05|0.02|R|F|1993-11-23|1993-10-21|1993-12-06|TAKE BACK RETURN|TRUCK|uriously furiously ironic foxes. ironic| +14762|907145|7146|2|32|36867.20|0.07|0.02|A|F|1993-11-18|1993-11-08|1993-12-04|NONE|SHIP|carefully regular acc| +14762|370645|33153|3|2|3431.26|0.05|0.06|A|F|1993-09-02|1993-10-03|1993-09-16|TAKE BACK RETURN|AIR|t. quickly even ideas sleep regular| +14763|311835|11836|1|35|64638.70|0.00|0.04|N|F|1995-06-13|1995-05-25|1995-06-24|DELIVER IN PERSON|TRUCK|lites. carefully ironic n| +14763|8239|8240|2|13|14913.99|0.00|0.00|N|F|1995-06-08|1995-07-04|1995-07-05|DELIVER IN PERSON|TRUCK|ithely. instructions s| +14763|461644|36663|3|32|51379.84|0.05|0.08|N|O|1995-07-08|1995-05-29|1995-07-20|TAKE BACK RETURN|AIR|leep fluffily. carefully | +14763|850351|25386|4|25|32532.75|0.03|0.03|N|F|1995-05-28|1995-05-22|1995-06-18|COLLECT COD|REG AIR|ing instruc| +14763|833388|45905|5|1|1321.34|0.10|0.05|N|O|1995-08-15|1995-05-28|1995-09-12|COLLECT COD|TRUCK|al instructions. fluffily regul| +14763|741898|29441|6|26|50436.36|0.03|0.00|N|O|1995-07-15|1995-06-17|1995-08-01|COLLECT COD|RAIL|ly silent excuse| +14764|514455|14456|1|49|72002.07|0.04|0.04|N|O|1997-09-20|1997-07-26|1997-10-03|DELIVER IN PERSON|AIR|onic, regular| +14765|487406|12425|1|4|5573.52|0.06|0.01|R|F|1993-06-12|1993-04-15|1993-07-10|NONE|AIR|p blithely requests. pend| +14766|677190|39704|1|33|38516.28|0.07|0.04|N|O|1998-04-01|1998-03-27|1998-04-19|TAKE BACK RETURN|TRUCK|g to the blithely special ideas are car| +14766|517054|42075|2|31|33201.93|0.05|0.07|N|O|1998-04-09|1998-03-06|1998-04-10|TAKE BACK RETURN|REG AIR|slyly even ideas. blithely even ide| +14767|694413|19440|1|49|68961.62|0.01|0.04|N|O|1995-12-26|1995-12-11|1996-01-18|DELIVER IN PERSON|REG AIR|y. slyly bold packages use slyly| +14767|988681|13720|2|22|38932.08|0.01|0.05|N|O|1995-12-25|1995-12-11|1996-01-12|NONE|REG AIR| regular platelets play a| +14792|130266|42769|1|6|7777.56|0.03|0.08|N|O|1996-12-27|1996-12-11|1997-01-10|COLLECT COD|SHIP|n packages engage carefully around the| +14792|364127|1649|2|10|11911.10|0.09|0.04|N|O|1996-11-21|1996-12-15|1996-12-03|TAKE BACK RETURN|REG AIR| bold asymptotes sleep carefully| +14792|878444|28445|3|33|46939.20|0.09|0.03|N|O|1997-02-10|1996-12-19|1997-02-13|COLLECT COD|TRUCK|lly alongside of| +14792|996641|21680|4|22|38227.20|0.04|0.04|N|O|1996-10-31|1997-01-06|1996-11-09|TAKE BACK RETURN|SHIP|lly final, express accounts. carefully regu| +14792|535329|47840|5|22|30014.60|0.01|0.05|N|O|1996-12-28|1997-01-13|1997-01-14|DELIVER IN PERSON|TRUCK|pades: unusual, express accounts bo| +14793|652716|40256|1|29|48391.72|0.06|0.05|N|O|1996-09-15|1996-09-13|1996-09-25|COLLECT COD|MAIL|uriously car| +14793|195260|7764|2|41|55565.66|0.05|0.02|N|O|1996-08-17|1996-08-12|1996-09-12|TAKE BACK RETURN|AIR|ight hinder slyly. quickly regular | +14793|727175|27176|3|29|34862.06|0.07|0.07|N|O|1996-10-09|1996-08-17|1996-11-07|DELIVER IN PERSON|MAIL|ges? furiously regular deposits use qui| +14793|618736|18737|4|5|8273.50|0.07|0.02|N|O|1996-10-17|1996-08-06|1996-11-02|NONE|TRUCK|furiously regular theodolite| +14793|93152|5654|5|48|54967.20|0.02|0.01|N|O|1996-09-06|1996-08-16|1996-09-11|TAKE BACK RETURN|REG AIR|he ironic, speci| +14793|599703|24726|6|27|48672.36|0.10|0.07|N|O|1996-10-01|1996-09-02|1996-10-22|TAKE BACK RETURN|AIR|uriously unusua| +14794|66597|41600|1|37|57852.83|0.09|0.05|R|F|1993-12-17|1994-02-01|1993-12-24|DELIVER IN PERSON|SHIP|c accounts| +14794|282933|20449|2|4|7663.68|0.06|0.07|R|F|1994-03-17|1994-02-21|1994-03-22|NONE|SHIP|carefully final accounts. quickly f| +14794|246364|46365|3|39|51103.65|0.08|0.04|A|F|1994-02-27|1994-02-03|1994-03-11|NONE|RAIL| furiously silent pinto be| +14794|631341|31342|4|14|17812.34|0.10|0.00|R|F|1994-02-12|1994-01-22|1994-03-12|NONE|AIR|quests. slyly pending notornis| +14794|945494|20531|5|41|63117.45|0.09|0.05|A|F|1994-02-05|1994-01-15|1994-02-19|NONE|MAIL|uffily silent deposits haggl| +14794|906151|31188|6|16|18513.76|0.03|0.03|R|F|1994-01-13|1994-02-07|1994-02-12|TAKE BACK RETURN|MAIL|ely final accounts. expres| +14794|673180|48207|7|45|51891.75|0.10|0.01|R|F|1994-01-10|1994-01-13|1994-01-13|DELIVER IN PERSON|REG AIR|y unusual p| +14795|126889|14396|1|39|74719.32|0.05|0.00|R|F|1995-03-15|1995-05-18|1995-04-12|COLLECT COD|SHIP|nstruction| +14795|606969|6970|2|14|26263.02|0.08|0.07|A|F|1995-04-06|1995-05-08|1995-04-11|NONE|RAIL|p slyly. fluffily final depos| +14795|314242|26749|3|30|37686.90|0.01|0.00|A|F|1995-06-09|1995-04-05|1995-06-10|TAKE BACK RETURN|SHIP|equests. blithely special deposi| +14795|464659|27169|4|11|17859.93|0.03|0.08|R|F|1995-04-30|1995-05-01|1995-05-16|DELIVER IN PERSON|TRUCK|bits. furiously pending dep| +14796|120055|32558|1|16|17200.80|0.06|0.02|N|O|1998-04-07|1998-03-03|1998-05-01|NONE|MAIL|totes. furiousl| +14796|756213|6214|2|27|34267.86|0.05|0.05|N|O|1998-03-21|1998-03-31|1998-03-23|DELIVER IN PERSON|FOB|e the final c| +14796|661599|36626|3|33|51498.48|0.03|0.08|N|O|1998-02-20|1998-03-31|1998-03-10|DELIVER IN PERSON|AIR|e regular deposits. alwa| +14796|480272|5291|4|2|2504.50|0.09|0.00|N|O|1998-04-30|1998-03-29|1998-05-01|COLLECT COD|SHIP|e ironic deposits. furiously ironic pla| +14796|920108|20109|5|40|45122.40|0.02|0.03|N|O|1998-02-01|1998-03-29|1998-02-20|COLLECT COD|FOB|longside of the even pinto beans. sl| +14796|253979|28990|6|39|75385.44|0.02|0.06|N|O|1998-05-24|1998-03-07|1998-06-16|TAKE BACK RETURN|MAIL|ccounts doze blit| +14797|669023|31537|1|8|7935.92|0.00|0.05|N|O|1995-09-19|1995-07-27|1995-09-29|TAKE BACK RETURN|REG AIR|s haggle ironic forges. quickly fin| +14797|260201|47717|2|32|37158.08|0.02|0.02|N|O|1995-08-28|1995-08-06|1995-09-21|TAKE BACK RETURN|AIR|express deposits. unusual, fur| +14797|196889|46890|3|21|41703.48|0.03|0.01|N|O|1995-07-25|1995-07-20|1995-08-14|COLLECT COD|RAIL|as. quickly silent deposits wake blithely| +14797|109739|9740|4|11|19236.03|0.03|0.02|N|O|1995-06-30|1995-07-10|1995-07-02|TAKE BACK RETURN|REG AIR| around the slyly special| +14797|375767|25768|5|7|12899.25|0.04|0.04|N|O|1995-07-12|1995-08-11|1995-07-26|COLLECT COD|REG AIR|f the slyly unusual escapades. final, speci| +14797|503419|40950|6|18|25603.02|0.01|0.07|N|O|1995-07-23|1995-07-27|1995-08-10|NONE|AIR|excuses boost accord| +14797|959321|9322|7|27|37267.56|0.01|0.08|N|O|1995-08-24|1995-07-22|1995-09-11|COLLECT COD|REG AIR|ut the never final platelets boost furious| +14798|305710|43229|1|48|82353.60|0.10|0.04|N|O|1998-04-03|1998-03-20|1998-04-04|COLLECT COD|FOB| pearls! special dependencies ha| +14799|340867|28386|1|26|49604.10|0.03|0.05|R|F|1994-07-23|1994-08-28|1994-08-02|NONE|RAIL|nto beans | +14824|926571|26572|1|9|14377.77|0.10|0.00|N|O|1997-11-27|1997-12-21|1997-12-11|NONE|RAIL|ns are carefully ironic packages. f| +14824|866469|41504|2|35|50239.70|0.08|0.03|N|O|1997-10-22|1997-12-15|1997-11-02|TAKE BACK RETURN|MAIL|sly quickl| +14824|731749|19292|3|31|55202.01|0.07|0.03|N|O|1997-12-14|1997-11-03|1997-12-28|NONE|TRUCK| to the regular ideas. f| +14824|496379|33907|4|43|59140.05|0.05|0.06|N|O|1997-09-28|1997-12-22|1997-10-26|TAKE BACK RETURN|REG AIR| furiously bold instructions detect sly| +14824|632304|19841|5|22|27197.94|0.02|0.08|N|O|1998-01-01|1997-11-09|1998-01-16|COLLECT COD|MAIL|refully unusual packa| +14825|362973|37988|1|4|8143.84|0.03|0.07|R|F|1992-06-02|1992-06-04|1992-07-01|TAKE BACK RETURN|AIR|accounts nag furiously across the pac| +14825|474315|36825|2|3|3867.87|0.03|0.05|R|F|1992-05-19|1992-06-21|1992-05-23|TAKE BACK RETURN|SHIP|lly close asymp| +14825|806977|19494|3|42|79125.06|0.05|0.08|A|F|1992-07-27|1992-05-18|1992-08-08|DELIVER IN PERSON|TRUCK|sts. furiously final deposits around | +14825|858667|46219|4|32|52019.84|0.09|0.02|R|F|1992-04-16|1992-05-31|1992-05-12|TAKE BACK RETURN|MAIL|ong the quickly unus| +14825|610386|35411|5|34|44075.90|0.05|0.05|A|F|1992-05-23|1992-05-01|1992-05-31|TAKE BACK RETURN|AIR|se fluffily. slyl| +14826|208075|20580|1|37|36373.22|0.06|0.04|N|O|1998-03-11|1998-02-17|1998-03-28|NONE|TRUCK|eas. final pl| +14826|105296|5297|2|8|10410.32|0.05|0.04|N|O|1998-01-02|1998-02-19|1998-01-03|NONE|MAIL| to the fluffil| +14826|698743|48744|3|43|74893.53|0.00|0.03|N|O|1998-02-07|1998-01-12|1998-02-13|DELIVER IN PERSON|AIR|c dependencies; unusual theodolites| +14826|759538|22054|4|31|49522.50|0.08|0.02|N|O|1998-01-26|1998-02-04|1998-02-18|COLLECT COD|RAIL|r, final excuses poach fluf| +14826|544427|44428|5|15|22071.00|0.03|0.08|N|O|1997-12-04|1998-02-28|1997-12-19|DELIVER IN PERSON|FOB|yly regular deposits. | +14827|715855|40884|1|44|82316.08|0.04|0.02|N|O|1995-10-02|1995-09-10|1995-10-07|COLLECT COD|FOB| slyly brave| +14827|371134|46149|2|47|56640.64|0.02|0.05|N|O|1995-10-05|1995-09-20|1995-10-23|NONE|AIR|quickly about| +14827|640100|15125|3|25|26001.75|0.10|0.04|N|O|1995-09-15|1995-09-07|1995-09-16|COLLECT COD|MAIL|oost furiously. furiously | +14827|156518|19022|4|39|61405.89|0.04|0.08|N|O|1995-09-24|1995-10-01|1995-10-24|TAKE BACK RETURN|FOB|se blithely ironic instructio| +14828|358374|8375|1|45|64456.20|0.03|0.03|A|F|1994-04-02|1994-05-17|1994-04-23|TAKE BACK RETURN|SHIP|sits use after the final fo| +14829|817173|17174|1|1|1090.13|0.07|0.02|N|O|1996-05-31|1996-04-15|1996-06-13|TAKE BACK RETURN|REG AIR|y unusual re| +14830|569538|44561|1|40|64300.40|0.09|0.01|R|F|1994-04-27|1994-05-06|1994-05-20|TAKE BACK RETURN|MAIL|urts. regular ideas cajole slyly| +14831|599008|36542|1|47|52028.06|0.00|0.07|N|O|1996-09-27|1996-09-26|1996-10-16|TAKE BACK RETURN|RAIL|hely along the orbits: qui| +14831|519752|32263|2|44|77956.12|0.03|0.00|N|O|1996-08-11|1996-10-10|1996-08-21|TAKE BACK RETURN|MAIL| shall hang around the final depos| +14831|464277|1805|3|41|50891.25|0.06|0.01|N|O|1996-08-21|1996-10-02|1996-09-18|DELIVER IN PERSON|TRUCK|, final accounts. furiously regular frays h| +14831|92949|42950|4|7|13593.58|0.07|0.01|N|O|1996-10-27|1996-10-08|1996-11-22|NONE|TRUCK|uests. packages at the even dep| +14831|185904|10911|5|49|97505.10|0.00|0.00|N|O|1996-10-02|1996-10-19|1996-10-28|TAKE BACK RETURN|RAIL|ar accounts.| +14856|764589|27105|1|42|69449.10|0.04|0.00|N|O|1998-05-04|1998-05-28|1998-05-24|TAKE BACK RETURN|TRUCK|s are never| +14856|439543|2052|2|3|4447.56|0.08|0.07|N|O|1998-04-20|1998-05-28|1998-04-30|TAKE BACK RETURN|REG AIR|yly unusual waters wake furiou| +14856|385939|35940|3|49|99221.08|0.03|0.01|N|O|1998-06-13|1998-07-02|1998-07-06|TAKE BACK RETURN|RAIL|ress deposits serve. quickly even foxe| +14856|460258|47786|4|19|23146.37|0.02|0.06|N|O|1998-08-05|1998-06-04|1998-08-27|NONE|AIR|ideas nag slyly. carefully regular | +14856|547571|10082|5|23|37226.65|0.07|0.06|N|O|1998-07-31|1998-05-31|1998-08-09|TAKE BACK RETURN|REG AIR| carefully final | +14856|15325|27826|6|30|37209.60|0.02|0.05|N|O|1998-05-13|1998-07-15|1998-06-11|COLLECT COD|RAIL|al accounts | +14857|68784|31286|1|32|56088.96|0.05|0.05|R|F|1992-12-04|1992-09-23|1992-12-24|DELIVER IN PERSON|FOB|quests boost carefully according to the qui| +14857|48077|23078|2|18|18451.26|0.10|0.00|A|F|1992-09-07|1992-09-29|1992-09-17|NONE|SHIP| foxes sleep blithely along the pending a| +14857|28408|28409|3|36|48110.40|0.09|0.01|R|F|1992-10-23|1992-09-21|1992-11-04|COLLECT COD|MAIL|ut the regular, regular dependencies| +14857|437279|24804|4|43|52298.75|0.08|0.01|A|F|1992-09-14|1992-10-14|1992-09-19|COLLECT COD|SHIP|yly special courts use| +14857|346567|9074|5|29|46792.95|0.01|0.05|A|F|1992-10-03|1992-09-11|1992-10-29|NONE|RAIL|symptotes. final foxes around t| +14858|868973|44008|1|17|33012.81|0.01|0.00|N|O|1996-12-03|1996-12-27|1996-12-05|DELIVER IN PERSON|SHIP|egular, special accounts. qui| +14858|822065|34582|2|31|30597.62|0.03|0.01|N|O|1997-02-23|1996-12-27|1997-02-24|TAKE BACK RETURN|AIR| requests | +14858|431004|18529|3|44|41139.12|0.01|0.08|N|O|1997-02-13|1996-12-25|1997-02-14|NONE|REG AIR|onic warhorses| +14859|31897|44398|1|31|56695.59|0.03|0.02|N|O|1998-04-08|1998-04-13|1998-04-20|NONE|REG AIR|regular theodolites integrate carefully | +14859|79536|4539|2|38|57590.14|0.03|0.08|N|O|1998-05-15|1998-03-20|1998-05-26|TAKE BACK RETURN|FOB|s. even ideas use. furiously even instru| +14859|760110|35141|3|20|23401.60|0.05|0.06|N|O|1998-04-12|1998-02-28|1998-04-15|NONE|MAIL|ial, careful excuses cajole ca| +14859|155764|5765|4|43|78249.68|0.00|0.02|N|O|1998-03-19|1998-04-02|1998-04-14|NONE|RAIL|ajole slyly. eve| +14859|911956|24475|5|46|90523.86|0.01|0.02|N|O|1998-04-14|1998-03-28|1998-04-25|NONE|MAIL|s. furiously unusual forges use blithel| +14859|231549|44054|6|42|62182.26|0.07|0.03|N|O|1998-01-29|1998-03-04|1998-02-10|NONE|AIR|ular attainments across | +14859|642017|42018|7|42|40277.16|0.01|0.05|N|O|1998-05-23|1998-03-05|1998-05-27|COLLECT COD|SHIP| regular acco| +14860|365150|2672|1|15|18227.10|0.09|0.00|N|O|1997-07-21|1997-10-15|1997-08-08|NONE|FOB|theodolites. pending packages a| +14860|67013|29515|2|45|44100.45|0.08|0.02|N|O|1997-07-30|1997-10-02|1997-08-09|NONE|FOB| bold deposits dazzle above| +14860|285397|22913|3|19|26265.22|0.04|0.03|N|O|1997-10-22|1997-10-13|1997-11-03|TAKE BACK RETURN|AIR| blithely pending instructions use f| +14860|656936|44476|4|20|37858.00|0.00|0.00|N|O|1997-09-18|1997-08-20|1997-10-11|DELIVER IN PERSON|AIR|pecial deposits despite the s| +14861|369086|6608|1|11|12705.77|0.03|0.07|R|F|1995-01-07|1995-02-12|1995-01-18|NONE|MAIL|inal requests. daringly regular| +14862|865814|15815|1|5|8898.85|0.03|0.06|A|F|1995-02-09|1995-02-16|1995-02-26|DELIVER IN PERSON|SHIP|as are even| +14862|720791|33306|2|46|83340.96|0.07|0.01|A|F|1994-12-29|1995-01-26|1995-01-03|TAKE BACK RETURN|MAIL|ernes. thinly final | +14863|168540|6050|1|13|20911.02|0.06|0.01|A|F|1992-05-25|1992-06-13|1992-06-04|TAKE BACK RETURN|TRUCK|platelets | +14863|642492|42493|2|45|64550.70|0.00|0.02|R|F|1992-04-25|1992-06-11|1992-05-19|NONE|TRUCK| regular foxes. dolphins at| +14863|348814|36333|3|26|48432.80|0.00|0.01|R|F|1992-05-14|1992-05-21|1992-05-26|COLLECT COD|REG AIR|y regular requests about the blithely e| +14863|501623|26644|4|41|66608.60|0.02|0.03|R|F|1992-07-02|1992-05-23|1992-07-29|TAKE BACK RETURN|SHIP|ag along the foxes. furiously regular| +14888|430134|17659|1|46|48949.06|0.04|0.04|A|F|1992-07-26|1992-09-02|1992-08-11|TAKE BACK RETURN|TRUCK|cies. accounts caj| +14889|266239|3755|1|32|38567.04|0.07|0.05|A|F|1994-07-14|1994-05-14|1994-07-26|COLLECT COD|TRUCK| haggle across the un| +14889|677217|27218|2|1|1194.18|0.09|0.07|R|F|1994-06-16|1994-06-24|1994-06-28|NONE|RAIL|g, unusual packages. special, even packages| +14889|972799|35319|3|40|74870.00|0.10|0.04|A|F|1994-04-26|1994-06-09|1994-05-19|COLLECT COD|FOB| fluffily bold i| +14889|828612|3645|4|31|47757.67|0.02|0.04|A|F|1994-06-27|1994-06-06|1994-07-21|DELIVER IN PERSON|REG AIR|. regular requests enga| +14889|468950|6478|5|6|11513.58|0.02|0.00|A|F|1994-03-31|1994-06-08|1994-04-09|DELIVER IN PERSON|FOB| the carefully special idea| +14889|630838|5863|6|43|76058.40|0.03|0.05|A|F|1994-07-23|1994-05-17|1994-07-27|DELIVER IN PERSON|SHIP|. furiously regular dinos detect platel| +14890|327971|15490|1|42|83956.32|0.06|0.04|N|O|1997-09-07|1997-08-17|1997-09-08|TAKE BACK RETURN|MAIL| packages integrate quickly. carefully ent| +14890|196504|9008|2|31|49615.50|0.05|0.06|N|O|1997-09-26|1997-07-26|1997-10-05|TAKE BACK RETURN|RAIL|ular theodolites amo| +14890|638873|38874|3|31|56167.04|0.04|0.02|N|O|1997-07-18|1997-08-28|1997-08-11|COLLECT COD|REG AIR|equests ought to believe. carefully bold| +14890|537917|37918|4|15|29323.35|0.01|0.00|N|O|1997-07-26|1997-08-02|1997-08-22|TAKE BACK RETURN|FOB|unts. ironic | +14890|756212|43758|5|15|19022.70|0.07|0.03|N|O|1997-07-11|1997-07-09|1997-08-08|NONE|RAIL| express theodolites. requests sleep | +14891|940343|27898|1|29|40115.70|0.01|0.06|R|F|1994-12-24|1995-01-18|1994-12-28|NONE|RAIL|xpress accounts acros| +14891|333406|8419|2|44|63333.16|0.02|0.04|R|F|1995-03-05|1995-01-09|1995-04-03|TAKE BACK RETURN|TRUCK|er the deposits. express requests are b| +14892|307295|32308|1|15|19534.20|0.07|0.03|N|O|1997-05-08|1997-05-27|1997-05-19|COLLECT COD|AIR| theodolit| +14892|695981|21008|2|44|86985.80|0.09|0.03|N|O|1997-05-19|1997-06-16|1997-06-14|TAKE BACK RETURN|RAIL|ar packages wake quickly | +14892|343846|18859|3|29|54805.07|0.06|0.08|N|O|1997-04-28|1997-06-17|1997-05-25|DELIVER IN PERSON|FOB|wake carefully. express requests| +14892|15042|2543|4|37|35410.48|0.10|0.00|N|O|1997-05-11|1997-06-25|1997-05-25|TAKE BACK RETURN|TRUCK|n deposits. bold, regular warthog| +14892|796697|34243|5|13|23317.58|0.03|0.07|N|O|1997-07-14|1997-07-13|1997-07-20|DELIVER IN PERSON|REG AIR|t the fluffily express requests th| +14893|503962|41493|1|4|7863.76|0.05|0.02|N|O|1997-03-16|1997-01-14|1997-04-01|COLLECT COD|REG AIR|al theodolites| +14894|626742|14279|1|33|55067.43|0.06|0.07|A|F|1995-03-11|1995-03-24|1995-03-29|TAKE BACK RETURN|RAIL|xes. blithely even pinto beans wake| +14894|647192|47193|2|36|41009.76|0.06|0.07|R|F|1995-04-17|1995-04-11|1995-05-16|COLLECT COD|SHIP|pinto beans.| +14894|342425|29944|3|14|20543.74|0.05|0.02|A|F|1995-04-09|1995-05-13|1995-04-15|COLLECT COD|SHIP|the carefully regular de| +14894|123328|23329|4|25|33783.00|0.03|0.00|R|F|1995-04-19|1995-04-27|1995-04-22|TAKE BACK RETURN|REG AIR|odolites run slyly packa| +14895|302969|2970|1|36|70990.20|0.08|0.03|A|F|1992-11-15|1992-10-19|1992-12-15|TAKE BACK RETURN|FOB| pinto beans sublate ironically. blithely| +14895|988322|842|2|35|49359.80|0.03|0.02|R|F|1992-09-17|1992-09-30|1992-10-02|TAKE BACK RETURN|RAIL|olve-- regular pinto beans haggle. final| +14895|716671|41700|3|20|33752.80|0.00|0.08|A|F|1992-07-26|1992-09-06|1992-08-07|COLLECT COD|AIR|l excuses wake deposits. carefully si| +14895|78581|3584|4|13|20274.54|0.10|0.06|A|F|1992-10-03|1992-09-12|1992-10-17|DELIVER IN PERSON|FOB|thely regular attainments wak| +14895|709917|9918|5|45|86709.60|0.05|0.06|R|F|1992-11-06|1992-10-16|1992-11-11|NONE|TRUCK|. carefully ironic dep| +14895|564444|14445|6|2|3016.84|0.01|0.08|R|F|1992-08-26|1992-10-16|1992-09-18|COLLECT COD|FOB|icingly regular depos| +14920|879403|29404|1|13|17970.68|0.08|0.03|R|F|1995-01-28|1995-01-22|1995-01-30|DELIVER IN PERSON|AIR|ily regular deposits. q| +14920|115808|40813|2|15|27357.00|0.07|0.01|A|F|1995-02-10|1994-12-26|1995-03-05|COLLECT COD|RAIL|lar instructions: final| +14920|369175|19176|3|21|26127.36|0.05|0.04|R|F|1994-11-29|1994-11-27|1994-12-27|TAKE BACK RETURN|SHIP|ual ideas across the carefully expres| +14920|720795|20796|4|31|56288.56|0.09|0.05|R|F|1995-02-04|1995-01-14|1995-02-11|DELIVER IN PERSON|SHIP|gside of the fluffily regular de| +14921|677596|40110|1|15|23603.40|0.09|0.06|N|O|1997-04-30|1997-06-09|1997-05-22|DELIVER IN PERSON|MAIL| ideas. sly| +14921|353004|40526|2|16|16911.84|0.02|0.05|N|O|1997-07-15|1997-04-25|1997-08-03|TAKE BACK RETURN|MAIL|blithely busy| +14921|932724|32725|3|44|77293.92|0.02|0.05|N|O|1997-07-16|1997-04-25|1997-08-12|COLLECT COD|REG AIR|xes cajole blithely above the even reques| +14921|284104|9115|4|25|27202.25|0.03|0.06|N|O|1997-05-25|1997-05-29|1997-06-21|TAKE BACK RETURN|TRUCK| after the quickly silent instructions use | +14921|932735|45254|5|26|45959.94|0.02|0.04|N|O|1997-04-13|1997-05-25|1997-05-01|DELIVER IN PERSON|REG AIR|al requests. always regular | +14922|861490|49042|1|32|46446.40|0.01|0.06|A|F|1994-12-07|1995-01-01|1995-01-03|COLLECT COD|SHIP|e of the furiously even pack| +14922|54494|16996|2|45|65182.05|0.10|0.03|A|F|1994-11-22|1995-01-07|1994-12-18|TAKE BACK RETURN|SHIP|mong the sometimes ironic instructions.| +14922|874586|37104|3|2|3121.08|0.00|0.08|R|F|1995-01-14|1994-12-17|1995-01-19|COLLECT COD|SHIP| even, regular platelets. express, | +14922|164148|14149|4|47|56970.58|0.02|0.07|A|F|1995-02-21|1994-11-23|1995-03-13|NONE|TRUCK|hely regular accounts. requests about | +14923|174778|12288|1|26|48172.02|0.07|0.08|N|O|1996-11-29|1996-12-02|1996-12-21|DELIVER IN PERSON|REG AIR|ully across the caref| +14923|482719|45229|2|48|81681.12|0.07|0.06|N|O|1996-12-26|1996-11-29|1997-01-20|COLLECT COD|TRUCK|y even pinto beans.| +14923|42013|17014|3|41|39155.41|0.09|0.03|N|O|1996-11-28|1996-12-21|1996-12-11|NONE|MAIL|s wake regular dependencies. furiously bol| +14923|97313|22316|4|6|7861.86|0.06|0.08|N|O|1996-12-11|1996-12-22|1996-12-18|TAKE BACK RETURN|MAIL|ins. carefully final req| +14923|523773|11304|5|21|37731.75|0.07|0.02|N|O|1996-12-21|1996-12-20|1996-12-28|DELIVER IN PERSON|MAIL|slyly regula| +14923|49585|12086|6|7|10742.06|0.01|0.04|N|O|1996-10-20|1996-12-11|1996-11-19|NONE|SHIP|refully silent realms. carefully final foxe| +14924|194592|19599|1|29|48911.11|0.07|0.02|N|O|1996-02-07|1996-01-21|1996-02-14|NONE|REG AIR|above the unusual | +14924|507644|32665|2|39|64413.18|0.09|0.05|N|O|1996-02-13|1995-12-18|1996-03-14|TAKE BACK RETURN|MAIL|lithely final ideas. | +14924|964855|27375|3|44|84471.64|0.05|0.01|N|O|1995-12-06|1996-01-25|1995-12-31|TAKE BACK RETURN|RAIL|t the furiously even| +14924|305493|43012|4|44|65933.12|0.09|0.04|N|O|1996-02-14|1996-01-14|1996-02-24|NONE|REG AIR|inal theodolites | +14925|238136|13145|1|1|1074.12|0.01|0.02|N|O|1995-07-14|1995-08-20|1995-07-19|COLLECT COD|TRUCK|n deposits sleep after the fi| +14925|337174|12187|2|16|19378.56|0.05|0.07|N|O|1995-10-10|1995-08-22|1995-11-07|COLLECT COD|MAIL|haggle slyly above the blithely bol| +14925|872272|9824|3|38|47280.74|0.05|0.08|N|O|1995-08-28|1995-08-12|1995-09-07|TAKE BACK RETURN|SHIP|ntegrate. ironically even accounts cajol| +14926|585061|35062|1|8|9168.32|0.09|0.03|R|F|1993-05-08|1993-06-09|1993-06-03|TAKE BACK RETURN|RAIL|ully. even dolphins are carefull| +14926|120016|7523|2|39|40404.39|0.09|0.02|R|F|1993-05-13|1993-05-17|1993-05-23|DELIVER IN PERSON|FOB| requests nag qui| +14927|650099|100|1|14|14686.84|0.01|0.00|N|O|1995-08-21|1995-08-30|1995-09-11|COLLECT COD|AIR|ly pending theodolites. quickly regular | +14927|205931|30940|2|49|90009.08|0.04|0.05|N|O|1995-10-25|1995-08-06|1995-11-07|TAKE BACK RETURN|REG AIR|ic deposits wake slyly. caref| +14927|69021|31523|3|46|45540.92|0.08|0.08|N|O|1995-10-19|1995-09-05|1995-10-29|NONE|AIR|lar packages. furiously unusual i| +14927|30909|30910|4|41|75435.90|0.07|0.02|N|O|1995-10-07|1995-09-28|1995-10-29|TAKE BACK RETURN|RAIL|the blithely even foxes haggle fu| +14927|477256|27257|5|8|9865.84|0.07|0.02|N|O|1995-07-16|1995-08-06|1995-07-26|TAKE BACK RETURN|AIR|ly carefull| +14952|462203|12204|1|17|19808.06|0.02|0.05|N|O|1996-01-19|1996-03-31|1996-02-05|DELIVER IN PERSON|SHIP|ffily unusual foxes| +14952|238879|38880|2|38|69078.68|0.08|0.04|N|O|1996-01-02|1996-02-05|1996-01-18|DELIVER IN PERSON|REG AIR|arls. even ideas play quick| +14952|827120|14669|3|42|43977.36|0.04|0.08|N|O|1996-02-04|1996-02-22|1996-02-09|COLLECT COD|RAIL|atelets. slyly | +14952|397614|35136|4|29|49636.40|0.02|0.04|N|O|1996-02-10|1996-02-02|1996-02-25|NONE|MAIL|y bold asymptotes. furio| +14952|692638|42639|5|5|8153.00|0.05|0.06|N|O|1996-03-17|1996-03-18|1996-04-16|DELIVER IN PERSON|RAIL|nusual packages affix | +14952|157989|45499|6|8|16375.84|0.03|0.01|N|O|1996-01-28|1996-02-05|1996-02-24|COLLECT COD|FOB|o beans sleep. quickly ironic deposits ca| +14952|314761|14762|7|49|87011.75|0.05|0.04|N|O|1996-01-03|1996-03-07|1996-01-18|NONE|REG AIR|ut the bold| +14953|186420|36421|1|49|73814.58|0.02|0.04|N|O|1995-09-26|1995-08-17|1995-10-11|NONE|AIR|ounts affix. slyly busy deposits sleep. | +14953|147186|34693|2|17|20964.06|0.10|0.06|N|O|1995-07-07|1995-08-15|1995-08-04|COLLECT COD|REG AIR|cajole fluffily. fluffily even deposit| +14953|744372|6887|3|50|70817.00|0.02|0.04|N|O|1995-09-12|1995-08-11|1995-09-21|COLLECT COD|TRUCK|y express accounts are enticingly p| +14953|652149|2150|4|30|33033.30|0.06|0.04|N|O|1995-09-13|1995-09-08|1995-10-01|TAKE BACK RETURN|SHIP|accounts sleep. quiet accounts inte| +14954|72803|35305|1|18|31964.40|0.08|0.07|A|F|1993-01-02|1992-11-06|1993-01-22|NONE|REG AIR|ar foxes. quickly regular| +14954|589848|2360|2|21|40694.22|0.03|0.04|R|F|1992-10-05|1992-10-15|1992-10-16|NONE|TRUCK|y blithely ironic packages: car| +14954|560066|47600|3|44|49545.76|0.04|0.04|R|F|1993-01-08|1992-11-27|1993-02-05|TAKE BACK RETURN|AIR|sual accounts boost stealthily agai| +14954|13561|26062|4|22|32440.32|0.07|0.08|R|F|1992-12-04|1992-10-17|1992-12-09|NONE|REG AIR|ole carefully special, express depen| +14954|909970|35007|5|6|11879.58|0.08|0.05|A|F|1992-12-02|1992-11-06|1992-12-25|NONE|FOB|accounts cajole. unusual, unusual deposits | +14955|130064|42567|1|27|29539.62|0.01|0.06|N|O|1996-12-13|1996-12-12|1997-01-03|TAKE BACK RETURN|REG AIR|dolites. ironic instructions after the furi| +14955|979121|16679|2|19|22801.52|0.01|0.02|N|O|1996-11-16|1996-11-25|1996-11-24|COLLECT COD|MAIL|fully after the slyly final fo| +14955|75081|25082|3|32|33794.56|0.01|0.01|N|O|1996-10-26|1996-10-30|1996-11-04|COLLECT COD|TRUCK|ggle against the quickly special dep| +14955|871922|21923|4|3|5681.64|0.10|0.07|N|O|1997-01-16|1996-11-23|1997-02-01|TAKE BACK RETURN|AIR|ckly ironic deposits sleep. qu| +14955|390820|3328|5|8|15286.48|0.05|0.05|N|O|1997-01-25|1996-12-10|1997-02-11|NONE|AIR|ily final deposits ar| +14955|509863|47394|6|44|82404.96|0.02|0.04|N|O|1997-01-19|1996-12-17|1997-02-16|TAKE BACK RETURN|MAIL|slyly regular foxes| +14956|244624|32137|1|25|39215.25|0.06|0.03|R|F|1993-11-19|1993-10-28|1993-12-06|COLLECT COD|FOB|lar platele| +14956|379973|29974|2|16|32847.36|0.06|0.01|R|F|1993-11-09|1993-12-09|1993-12-01|COLLECT COD|SHIP|al waters haggle carefully among| +14956|200797|38310|3|31|52631.18|0.06|0.01|A|F|1993-10-18|1993-12-02|1993-11-04|TAKE BACK RETURN|RAIL|uriously final re| +14956|790234|2750|4|11|14566.20|0.05|0.05|R|F|1993-10-07|1993-11-01|1993-10-17|DELIVER IN PERSON|MAIL|the final deposits. s| +14956|459111|46639|5|13|13911.17|0.07|0.06|A|F|1993-12-22|1993-11-15|1993-12-30|NONE|REG AIR|yly even frets? regula| +14956|266371|41382|6|47|62855.92|0.05|0.07|A|F|1993-12-13|1993-10-13|1993-12-29|NONE|REG AIR|cuses. furiously final in| +14956|889700|2218|7|11|18586.26|0.02|0.06|R|F|1993-12-29|1993-11-19|1994-01-04|COLLECT COD|FOB|lly quickly unusual attainments. blithely p| +14957|179356|16866|1|15|21530.25|0.08|0.05|A|F|1993-10-08|1993-08-24|1993-10-28|TAKE BACK RETURN|FOB|odolites. pinto beans sleep carefully al| +14957|430775|5792|2|49|83581.75|0.08|0.08|A|F|1993-10-15|1993-08-20|1993-10-18|DELIVER IN PERSON|FOB|nusual packages sleep on the blithely | +14957|26644|1645|3|17|26700.88|0.00|0.08|R|F|1993-10-05|1993-08-21|1993-10-13|DELIVER IN PERSON|FOB|ccounts boost ironic, special pinto| +14957|797786|22817|4|15|28256.25|0.08|0.01|A|F|1993-10-19|1993-10-14|1993-11-04|DELIVER IN PERSON|MAIL|lent, regular courts. regula| +14957|379881|17403|5|50|98043.50|0.09|0.00|R|F|1993-09-14|1993-08-30|1993-09-25|NONE|AIR|arhorses haggle across the slyly ironic | +14958|15618|15619|1|1|1533.61|0.05|0.07|A|F|1992-08-16|1992-09-10|1992-08-24|TAKE BACK RETURN|MAIL|g pinto beans. slyly | +14958|480828|43338|2|46|83204.80|0.08|0.07|A|F|1992-08-08|1992-09-05|1992-08-19|NONE|RAIL|carefully ironic packages sleep f| +14958|259511|9512|3|20|29410.00|0.05|0.01|A|F|1992-07-13|1992-09-22|1992-07-20|COLLECT COD|SHIP|o beans. pinto bea| +14958|585015|10038|4|9|9899.91|0.01|0.03|A|F|1992-08-02|1992-09-10|1992-08-25|COLLECT COD|TRUCK| slyly. blithely special accounts after th| +14958|335000|35001|5|8|8279.92|0.10|0.03|R|F|1992-08-10|1992-08-23|1992-09-03|TAKE BACK RETURN|RAIL|sual requests kindle | +14959|667914|30428|1|24|45165.12|0.06|0.05|N|O|1998-07-14|1998-06-02|1998-07-23|NONE|AIR|nt foxes. ironic foxes a| +14959|626383|13920|2|50|65467.50|0.10|0.05|N|O|1998-04-15|1998-05-03|1998-05-06|COLLECT COD|REG AIR|ross the car| +14959|614024|1561|3|36|33767.64|0.10|0.07|N|O|1998-06-02|1998-05-27|1998-06-03|TAKE BACK RETURN|FOB|ffily final do| +14959|886914|49432|4|6|11405.22|0.09|0.03|N|O|1998-04-04|1998-05-02|1998-04-21|NONE|REG AIR|heodolites cajole. accounts integrate ca| +14959|359370|9371|5|49|70038.64|0.07|0.05|N|O|1998-04-29|1998-05-26|1998-05-04|NONE|FOB|kages. slyly | +14959|922330|47367|6|32|43273.28|0.08|0.02|N|O|1998-04-27|1998-06-04|1998-05-18|COLLECT COD|REG AIR|s wake according to the final deposi| +14984|684875|22415|1|20|37196.80|0.06|0.05|A|F|1994-10-27|1994-11-14|1994-11-17|DELIVER IN PERSON|AIR| slyly unusual foxes. regular, pend| +14984|690355|15382|2|40|53812.80|0.09|0.06|R|F|1994-10-16|1994-11-22|1994-10-28|NONE|MAIL|counts haggle carefully. ruthless re| +14985|533768|21299|1|35|63060.90|0.00|0.05|N|O|1996-06-20|1996-07-24|1996-07-20|TAKE BACK RETURN|AIR|g foxes sleep furiously. | +14985|34556|47057|2|40|59622.00|0.01|0.07|N|O|1996-08-25|1996-07-25|1996-09-10|NONE|REG AIR|usual packa| +14985|770969|46000|3|45|91796.85|0.03|0.08|N|O|1996-08-24|1996-06-13|1996-09-13|TAKE BACK RETURN|TRUCK|above the furiously even asymptotes. bli| +14985|673238|10778|4|17|20590.40|0.07|0.08|N|O|1996-07-23|1996-07-16|1996-08-09|DELIVER IN PERSON|TRUCK|sts would wake blithely. ironical| +14986|735012|35013|1|2|2093.96|0.01|0.04|N|O|1996-05-30|1996-05-07|1996-06-18|COLLECT COD|MAIL| special instructions wake ruthless| +14986|342064|42065|2|38|42029.90|0.09|0.02|N|O|1996-06-11|1996-06-16|1996-06-16|DELIVER IN PERSON|RAIL|ing platelets. the| +14986|64818|27320|3|45|80226.45|0.04|0.08|N|O|1996-04-15|1996-04-22|1996-04-26|COLLECT COD|SHIP|eodolites. special requests n| +14987|397797|22812|1|27|51159.06|0.04|0.01|N|O|1996-02-01|1996-02-05|1996-02-21|COLLECT COD|REG AIR|s. furiously sly deposits use evenly | +14987|773590|48621|2|3|4990.68|0.09|0.04|N|O|1996-01-07|1996-03-18|1996-01-19|COLLECT COD|SHIP|tructions. specia| +14987|718283|43312|3|8|10410.00|0.04|0.08|N|O|1996-04-11|1996-03-28|1996-05-09|DELIVER IN PERSON|TRUCK|ully final instructions across the ironic p| +14987|172713|22714|4|27|48214.17|0.05|0.04|N|O|1996-03-07|1996-02-09|1996-04-05|DELIVER IN PERSON|AIR|into beans. idly regular courts haggle ca| +14988|376902|39410|1|29|57387.81|0.07|0.01|R|F|1993-08-21|1993-07-19|1993-08-23|TAKE BACK RETURN|REG AIR|iously ironic packages hang again| +14988|579834|42346|2|2|3827.62|0.07|0.00|A|F|1993-08-23|1993-08-02|1993-09-22|TAKE BACK RETURN|AIR| permanent deposits caj| +14988|267182|42193|3|37|42519.29|0.00|0.02|A|F|1993-06-19|1993-07-31|1993-07-12|COLLECT COD|FOB| blithely pending pa| +14989|774307|24308|1|50|69063.50|0.03|0.06|N|O|1995-11-18|1995-11-14|1995-12-07|NONE|MAIL|ts. even, final packages boost blith| +14989|777607|40123|2|31|52221.67|0.03|0.03|N|O|1995-09-05|1995-11-02|1995-09-27|NONE|FOB|ly ironic realms. express, even accounts| +14989|225875|884|3|41|73835.26|0.06|0.08|N|O|1995-09-10|1995-10-06|1995-09-11|COLLECT COD|REG AIR|ckly final accounts. always pendin| +14989|278850|16366|4|12|21946.08|0.04|0.04|N|O|1995-11-20|1995-10-13|1995-12-14|NONE|SHIP|e bold excuses. packages cajole si| +14989|621143|33656|5|7|7448.77|0.07|0.04|N|O|1995-11-03|1995-09-25|1995-11-10|COLLECT COD|FOB|. furiously ironic packages acro| +14990|653085|40625|1|50|51902.50|0.01|0.04|N|O|1997-11-21|1997-09-05|1997-11-22|TAKE BACK RETURN|AIR|ag fluffily pinto bea| +14990|397086|9594|2|1|1183.07|0.10|0.01|N|O|1997-09-24|1997-10-16|1997-10-08|NONE|TRUCK| instruction| +14991|490690|28218|1|40|67226.80|0.10|0.05|R|F|1992-12-30|1993-01-17|1993-01-18|NONE|MAIL|kly even packages sleep. carefully| +14991|13927|26428|2|9|16568.28|0.04|0.08|A|F|1993-02-05|1993-01-22|1993-02-16|TAKE BACK RETURN|MAIL|al sauternes are blithely abov| +14991|59352|9353|3|44|57699.40|0.01|0.02|A|F|1993-01-22|1993-02-18|1993-02-08|DELIVER IN PERSON|FOB|l pinto beans| +14991|518793|43814|4|22|39858.94|0.00|0.01|A|F|1993-01-31|1993-01-27|1993-02-24|TAKE BACK RETURN|REG AIR|e deposits about the | +14991|346253|46254|5|32|41575.68|0.08|0.08|R|F|1992-12-25|1993-02-16|1992-12-26|TAKE BACK RETURN|REG AIR|ealthily even pinto beans. ev| +14991|463620|1148|6|23|36422.80|0.00|0.06|A|F|1993-03-02|1993-03-02|1993-03-21|NONE|TRUCK|nic packages. special dep| +15016|717|25718|1|23|37207.33|0.00|0.02|N|O|1998-01-16|1997-12-11|1998-01-27|NONE|MAIL|al foxes sleep. carefully sp| +15016|50042|12544|2|16|15872.64|0.07|0.02|N|O|1998-02-23|1997-12-20|1998-02-24|TAKE BACK RETURN|REG AIR|c deposits along the care| +15016|49346|49347|3|35|45336.90|0.02|0.01|N|O|1997-12-25|1998-01-22|1997-12-27|COLLECT COD|SHIP| somas affix. regul| +15016|357635|20143|4|16|27081.92|0.05|0.06|N|O|1998-02-15|1998-01-04|1998-02-26|COLLECT COD|REG AIR|ickly regular theodolites. final theod| +15016|765919|3465|5|17|33742.96|0.05|0.08|N|O|1997-11-22|1998-02-05|1997-12-12|TAKE BACK RETURN|TRUCK|symptotes haggle q| +15016|797961|10477|6|46|94710.78|0.04|0.01|N|O|1997-12-16|1998-01-09|1997-12-25|COLLECT COD|REG AIR|express instr| +15016|328333|40840|7|44|59898.08|0.07|0.06|N|O|1997-11-17|1998-01-05|1997-12-10|NONE|SHIP|lar dugouts are carefully carefully unu| +15017|278337|40843|1|9|11837.88|0.00|0.07|A|F|1995-04-04|1995-04-09|1995-04-17|NONE|SHIP|leep furiously am| +15017|996351|33909|2|13|18815.03|0.09|0.01|R|F|1995-03-13|1995-04-07|1995-03-14|NONE|RAIL| asymptotes unwind. never idle foxes| +15018|710561|23076|1|34|53432.02|0.04|0.00|N|O|1996-04-04|1996-03-09|1996-04-29|TAKE BACK RETURN|RAIL|l requests;| +15018|382553|32554|2|49|80141.46|0.04|0.08|N|O|1996-01-11|1996-03-06|1996-02-09|NONE|FOB|. furiously even ideas | +15018|556073|6074|3|17|19193.85|0.04|0.08|N|O|1996-03-23|1996-02-10|1996-04-09|NONE|SHIP| packages sleep care| +15018|914481|14482|4|45|67294.80|0.02|0.01|N|O|1996-01-28|1996-03-15|1996-02-02|DELIVER IN PERSON|SHIP|thely final foxes. unusual dep| +15019|465266|2794|1|3|3693.72|0.10|0.07|N|F|1995-06-16|1995-06-20|1995-07-13|COLLECT COD|TRUCK|kly unusual, regular deposits. requests thr| +15019|715586|40615|2|40|64062.00|0.09|0.05|N|F|1995-05-31|1995-05-22|1995-06-19|TAKE BACK RETURN|RAIL| regular epitaphs wake slyly. iro| +15020|716521|41550|1|12|18449.88|0.09|0.02|N|O|1997-02-05|1997-01-27|1997-02-20|TAKE BACK RETURN|REG AIR|tect alongside of the furiously final accou| +15020|561762|49296|2|37|67478.38|0.04|0.06|N|O|1997-03-24|1997-01-21|1997-04-12|TAKE BACK RETURN|MAIL|s. carefully unusual waters use| +15020|524930|12461|3|41|80151.31|0.00|0.03|N|O|1997-01-03|1997-03-05|1997-01-27|DELIVER IN PERSON|TRUCK|ously regular packages. reg| +15020|493722|6232|4|6|10294.20|0.02|0.03|N|O|1997-03-01|1997-01-20|1997-03-23|COLLECT COD|AIR| accounts may | +15020|980159|17717|5|12|14869.32|0.01|0.00|N|O|1997-02-03|1997-03-10|1997-02-28|NONE|TRUCK|packages? furiously even acc| +15020|525661|38172|6|49|82645.36|0.04|0.08|N|O|1997-04-11|1997-03-14|1997-05-02|DELIVER IN PERSON|RAIL|ess, unusual deposits according to | +15021|667404|42431|1|31|42512.47|0.05|0.00|R|F|1994-07-06|1994-05-16|1994-07-30|TAKE BACK RETURN|TRUCK|s. carefully reg| +15021|47415|22416|2|38|51771.58|0.03|0.02|A|F|1994-06-09|1994-06-29|1994-06-30|COLLECT COD|FOB|nding, ironic asymptotes. blithe| +15021|889097|14132|3|21|22807.05|0.01|0.04|A|F|1994-07-25|1994-06-05|1994-08-24|DELIVER IN PERSON|TRUCK| slyly ironic theodo| +15022|164276|26780|1|17|22784.59|0.07|0.08|R|F|1994-11-16|1994-10-03|1994-11-26|TAKE BACK RETURN|RAIL|he furiously pending pinto beans use fur| +15022|984583|34584|2|38|63366.52|0.02|0.08|A|F|1994-10-15|1994-10-08|1994-10-20|NONE|FOB|posits across the bold, bo| +15022|885162|35163|3|46|52767.52|0.09|0.03|R|F|1994-11-10|1994-09-23|1994-12-07|NONE|AIR|e pending ideas. carefu| +15022|907028|19547|4|28|28979.44|0.02|0.06|R|F|1994-10-08|1994-09-23|1994-10-12|NONE|MAIL|uriously i| +15022|418772|43789|5|46|77774.50|0.09|0.03|A|F|1994-08-05|1994-10-15|1994-08-08|COLLECT COD|RAIL|egular accounts against the quickly | +15023|899948|12466|1|13|25322.70|0.05|0.03|N|O|1996-11-23|1996-11-30|1996-11-29|TAKE BACK RETURN|RAIL|olphins. carefully ruthless foxes a| +15023|421762|34271|2|3|5051.22|0.00|0.06|N|O|1996-12-18|1996-11-17|1996-12-29|DELIVER IN PERSON|FOB|ounts. platelets affix slyly. carefully pen| +15023|547643|35174|3|42|71006.04|0.00|0.03|N|O|1996-12-15|1996-12-11|1996-12-24|DELIVER IN PERSON|MAIL|ons. quickly | +15023|222089|47098|4|31|31343.17|0.09|0.08|N|O|1996-12-10|1996-12-08|1996-12-12|DELIVER IN PERSON|MAIL|g the ironic, even accounts. slyly r| +15023|637852|25389|5|6|10738.92|0.04|0.01|N|O|1996-11-24|1996-12-12|1996-11-25|TAKE BACK RETURN|SHIP|kly slyly ironic dolphins. careful| +15023|364624|2146|6|3|5065.83|0.06|0.05|N|O|1996-12-16|1996-12-15|1997-01-04|TAKE BACK RETURN|TRUCK|nstructions detect whithout the furiou| +15023|229219|4228|7|48|55113.60|0.05|0.05|N|O|1996-11-25|1996-11-14|1996-12-04|COLLECT COD|MAIL|iously final accounts. packages among the| +15048|474279|24280|1|33|41357.25|0.09|0.03|N|O|1997-09-09|1997-10-14|1997-09-27|NONE|AIR|encies play blithely above th| +15048|192138|29648|2|4|4920.52|0.04|0.01|N|O|1997-12-22|1997-11-09|1997-12-26|NONE|REG AIR|nding excuses. blit| +15048|250031|32|3|8|7848.16|0.04|0.00|N|O|1997-10-16|1997-10-28|1997-11-12|TAKE BACK RETURN|SHIP|deposits are above the accounts. ca| +15048|256275|31286|4|36|44325.36|0.08|0.08|N|O|1997-12-20|1997-11-19|1998-01-14|NONE|AIR|l theodolites| +15048|199324|24331|5|40|56932.80|0.06|0.01|N|O|1997-11-10|1997-10-06|1997-11-30|COLLECT COD|AIR|gular requests across the carefu| +15049|280246|17762|1|7|8583.61|0.00|0.00|A|F|1993-12-12|1993-09-29|1994-01-03|TAKE BACK RETURN|TRUCK|st the real| +15050|386131|23653|1|24|29210.88|0.02|0.06|A|F|1992-07-01|1992-06-12|1992-07-30|TAKE BACK RETURN|FOB|ng the quickly final courts breach| +15050|694051|31591|2|37|38665.74|0.10|0.05|A|F|1992-05-16|1992-07-17|1992-05-29|TAKE BACK RETURN|REG AIR| waters wake closely. doggedly even requ| +15050|909329|21848|3|30|40148.40|0.06|0.06|A|F|1992-08-17|1992-06-13|1992-09-12|TAKE BACK RETURN|AIR|e the bold acco| +15050|89614|14617|4|43|68955.23|0.09|0.03|R|F|1992-07-01|1992-06-18|1992-07-18|NONE|MAIL|ely quickly unusual pains. | +15051|487470|49980|1|12|17489.40|0.06|0.00|R|F|1995-03-31|1995-04-01|1995-04-30|DELIVER IN PERSON|AIR| final accounts lose. furio| +15051|907372|32409|2|13|17931.29|0.08|0.06|R|F|1995-02-20|1995-05-04|1995-03-12|NONE|AIR|luffily ev| +15051|187088|49592|3|44|51703.52|0.03|0.04|R|F|1995-03-17|1995-04-18|1995-04-14|COLLECT COD|FOB|uctions. unusual ideas det| +15051|374911|12433|4|11|21844.90|0.09|0.07|R|F|1995-06-08|1995-03-14|1995-06-14|NONE|TRUCK|ons. caref| +15051|118318|5825|5|32|42761.92|0.08|0.02|A|F|1995-03-24|1995-04-14|1995-04-05|DELIVER IN PERSON|TRUCK|press deposits. ir| +15051|558581|8582|6|41|67221.96|0.03|0.06|R|F|1995-04-01|1995-04-28|1995-04-04|DELIVER IN PERSON|REG AIR|nal requests sleep. pinto| +15051|55355|30358|7|5|6551.75|0.02|0.07|A|F|1995-05-24|1995-03-25|1995-06-10|DELIVER IN PERSON|TRUCK|ual foxes. carefully blithe pac| +15052|350497|25512|1|48|74279.04|0.09|0.03|A|F|1994-12-07|1995-02-26|1994-12-26|COLLECT COD|FOB|e slyly across the blithely regul| +15052|797845|22876|2|27|52455.87|0.02|0.02|A|F|1995-01-19|1995-02-14|1995-02-08|COLLECT COD|AIR|ackages. fluffily ironic asym| +15052|373313|10835|3|11|15249.30|0.08|0.03|R|F|1995-03-23|1995-01-16|1995-04-21|TAKE BACK RETURN|TRUCK| slyly final foxes. special accounts slee| +15052|270396|20397|4|19|25961.22|0.09|0.08|A|F|1995-01-17|1995-01-24|1995-01-22|COLLECT COD|SHIP|deposits. regular accounts sleep quickl| +15052|542472|17493|5|31|46947.95|0.10|0.00|R|F|1994-12-10|1995-01-07|1995-01-07|DELIVER IN PERSON|FOB|nic, enticing ideas use quickly abou| +15053|624868|49893|1|18|32270.94|0.04|0.02|N|O|1996-07-01|1996-05-31|1996-07-10|DELIVER IN PERSON|RAIL|grate blithely regular exc| +15053|146329|33836|2|31|42634.92|0.09|0.06|N|O|1996-04-20|1996-05-29|1996-05-13|NONE|SHIP| of the theodolites. ironic,| +15053|348971|48972|3|23|46459.08|0.02|0.05|N|O|1996-06-30|1996-05-12|1996-07-13|NONE|RAIL|ges sleep quietly slowly| +15053|147679|10182|4|13|22446.71|0.07|0.05|N|O|1996-07-13|1996-06-07|1996-07-23|DELIVER IN PERSON|MAIL|azzle against the carefully| +15053|31840|44341|5|4|7087.36|0.03|0.06|N|O|1996-06-24|1996-05-07|1996-07-09|TAKE BACK RETURN|MAIL|d courts cajole. unusual deposits among t| +15053|120618|20619|6|1|1638.61|0.06|0.00|N|O|1996-06-11|1996-06-03|1996-06-14|NONE|FOB|blithely regular request| +15054|369267|6789|1|26|34742.50|0.10|0.03|R|F|1995-04-05|1995-05-30|1995-04-26|COLLECT COD|MAIL|nding frets nag| +15054|263192|13193|2|27|31189.86|0.07|0.08|N|O|1995-06-26|1995-05-18|1995-07-16|COLLECT COD|TRUCK|fully final pinto beans sleep regularly| +15054|458553|46081|3|12|18138.36|0.09|0.03|R|F|1995-05-23|1995-05-01|1995-06-02|TAKE BACK RETURN|AIR|ins cajole carefully furiously bo| +15054|886671|36672|4|5|8288.15|0.10|0.08|R|F|1995-04-28|1995-05-05|1995-05-02|DELIVER IN PERSON|AIR|al dolphins | +15054|270593|33099|5|5|7817.90|0.02|0.07|A|F|1995-03-21|1995-04-08|1995-04-10|DELIVER IN PERSON|REG AIR|ckages use carefully. stealthily pending| +15055|344554|32073|1|42|67138.68|0.06|0.06|A|F|1992-05-23|1992-04-27|1992-05-26|TAKE BACK RETURN|RAIL| wake slyly above th| +15055|905911|5912|2|36|69007.32|0.00|0.08|A|F|1992-05-04|1992-04-01|1992-05-23|TAKE BACK RETURN|AIR|nts. even dolp| +15055|630508|18045|3|7|10069.29|0.05|0.08|R|F|1992-06-21|1992-05-10|1992-06-23|NONE|TRUCK|ly special somas nag: unus| +15055|940112|40113|4|24|27649.68|0.10|0.06|R|F|1992-05-30|1992-04-11|1992-06-20|TAKE BACK RETURN|SHIP| finally regular asymptotes| +15055|455815|5816|5|9|15937.11|0.06|0.04|A|F|1992-03-20|1992-04-05|1992-04-17|NONE|TRUCK|ess pinto beans maintain fluffily amo| +15080|242413|17422|1|14|18975.60|0.04|0.07|N|O|1997-03-04|1997-04-28|1997-03-27|COLLECT COD|REG AIR| careful, regular dependencies| +15080|222798|35303|2|28|48181.84|0.03|0.03|N|O|1997-05-30|1997-04-20|1997-06-24|COLLECT COD|REG AIR|ts play blithely. final | +15081|925401|438|1|32|45643.52|0.01|0.05|A|F|1994-07-14|1994-07-28|1994-08-01|NONE|RAIL|nticingly unusual packages c| +15082|352188|14696|1|45|55807.65|0.02|0.02|N|O|1996-04-10|1996-05-29|1996-04-15|DELIVER IN PERSON|RAIL| regular foxes haggle slyly r| +15082|210743|35752|2|6|9922.38|0.03|0.08|N|O|1996-06-17|1996-05-29|1996-06-28|DELIVER IN PERSON|MAIL|ove the foxes. | +15082|948615|48616|3|49|81514.93|0.08|0.07|N|O|1996-07-06|1996-05-28|1996-07-23|TAKE BACK RETURN|MAIL|blithely regula| +15082|365725|28233|4|1|1790.71|0.06|0.03|N|O|1996-07-15|1996-06-20|1996-07-21|COLLECT COD|SHIP|ng dugouts. permanently unusu| +15082|733307|20850|5|5|6701.35|0.00|0.03|N|O|1996-05-09|1996-05-14|1996-06-03|TAKE BACK RETURN|MAIL|sits-- furiously e| +15083|681841|19381|1|36|65621.16|0.09|0.06|N|O|1996-03-07|1996-02-27|1996-04-05|COLLECT COD|AIR|furiously unusual | +15083|687636|25176|2|44|71438.40|0.06|0.00|N|O|1995-12-28|1996-02-27|1996-01-16|DELIVER IN PERSON|RAIL|inst the pending| +15083|96499|46500|3|48|71783.52|0.05|0.08|N|O|1996-02-15|1996-01-13|1996-03-06|NONE|REG AIR|ly special accounts. ironic asymptotes s| +15083|845260|45261|4|28|33746.16|0.00|0.05|N|O|1996-01-09|1996-01-25|1996-01-14|TAKE BACK RETURN|TRUCK|ly ironically final pearls.| +15083|274971|37477|5|35|68108.60|0.06|0.02|N|O|1996-01-31|1996-01-18|1996-02-19|NONE|FOB|t instructions! accounts after the ca| +15083|434272|21797|6|42|50662.50|0.03|0.03|N|O|1996-02-07|1996-01-11|1996-03-06|TAKE BACK RETURN|RAIL| express platelets are fluffily ironic dep| +15083|802474|14991|7|31|42669.33|0.05|0.02|N|O|1996-03-06|1996-01-14|1996-03-20|DELIVER IN PERSON|AIR|final requests. final| +15084|166759|41766|1|33|60249.75|0.09|0.04|N|O|1996-05-06|1996-05-05|1996-05-07|COLLECT COD|AIR|ording to the quickly u| +15084|703827|41370|2|9|16477.11|0.08|0.08|N|O|1996-03-15|1996-03-27|1996-04-12|TAKE BACK RETURN|RAIL|thely regular deposit| +15084|218638|31143|3|35|54481.70|0.00|0.06|N|O|1996-02-22|1996-05-12|1996-03-02|NONE|SHIP|arefully ironic pa| +15084|637521|25058|4|4|5833.96|0.10|0.07|N|O|1996-03-05|1996-05-13|1996-03-25|TAKE BACK RETURN|SHIP|carefully regular instru| +15084|812003|49552|5|49|44833.04|0.05|0.06|N|O|1996-06-09|1996-05-09|1996-07-02|DELIVER IN PERSON|REG AIR|egrate blithely across the pending, r| +15084|325438|37945|6|16|23414.72|0.03|0.01|N|O|1996-04-28|1996-03-19|1996-05-20|TAKE BACK RETURN|MAIL|ven, final pinto| +15085|931141|6178|1|12|14065.20|0.09|0.00|N|O|1996-01-19|1995-12-24|1996-01-28|NONE|MAIL|packages are slyly blithely final packages.| +15085|681500|31501|2|28|41481.16|0.00|0.06|N|O|1995-11-22|1995-12-05|1995-12-14|NONE|AIR|of the ideas. enticing| +15085|968595|31115|3|35|58224.25|0.01|0.03|N|O|1995-12-03|1995-11-12|1996-01-01|NONE|FOB|sts detect blithely blithely regular| +15085|173191|10701|4|49|61945.31|0.10|0.02|N|O|1996-01-31|1995-11-12|1996-02-11|NONE|RAIL|ng to the regu| +15085|812119|24636|5|23|23714.61|0.10|0.06|N|O|1995-11-24|1995-12-13|1995-12-05|COLLECT COD|FOB|nic instructions are. ironic ideas brea| +15086|566656|41679|1|28|48233.64|0.00|0.02|A|F|1994-01-14|1994-01-18|1994-02-09|COLLECT COD|REG AIR|the slyly pending pinto beans. blithely sp| +15086|783906|21452|2|31|61685.97|0.01|0.03|A|F|1994-02-23|1993-12-15|1994-02-27|COLLECT COD|MAIL|ress decoys about the unusua| +15086|100623|624|3|9|14612.58|0.00|0.07|R|F|1994-01-29|1994-01-20|1994-02-03|COLLECT COD|FOB| packages.| +15087|15691|3192|1|26|41773.94|0.00|0.02|N|O|1996-05-07|1996-06-30|1996-05-26|COLLECT COD|MAIL|int against the carefully| +15087|707094|32123|2|8|8808.48|0.05|0.03|N|O|1996-07-30|1996-06-17|1996-08-18|DELIVER IN PERSON|SHIP|ake. final excuses haggl| +15087|126308|13815|3|28|37360.40|0.00|0.03|N|O|1996-07-27|1996-05-09|1996-08-01|COLLECT COD|FOB|al foxes cajole ironic, ironic requests| +15112|806561|44110|1|31|45493.12|0.06|0.02|N|O|1997-05-11|1997-06-03|1997-05-30|DELIVER IN PERSON|TRUCK|deposits. final the| +15112|865681|15682|2|42|69158.88|0.06|0.08|N|O|1997-07-03|1997-04-28|1997-07-24|NONE|REG AIR|ecial notornis boost quickly regul| +15113|581441|31442|1|38|57851.96|0.09|0.08|A|F|1993-02-22|1993-02-11|1993-03-22|COLLECT COD|RAIL|y even excuses nag. furiously ir| +15113|273181|35687|2|46|53091.82|0.04|0.03|R|F|1993-01-06|1993-01-30|1993-01-25|NONE|SHIP|deposits boost sly| +15113|337069|24588|3|5|5530.25|0.04|0.00|A|F|1993-02-24|1993-03-07|1993-03-06|DELIVER IN PERSON|RAIL| regular pinto be| +15114|906190|31227|1|47|56219.05|0.06|0.02|N|O|1997-01-10|1996-12-03|1997-01-26|DELIVER IN PERSON|REG AIR|. quickly silent instruc| +15115|373701|23702|1|38|67438.22|0.00|0.02|A|F|1995-02-03|1995-03-06|1995-02-21|NONE|MAIL|le even accounts. | +15115|785293|47809|2|42|57886.92|0.09|0.03|A|F|1995-04-23|1995-04-03|1995-05-07|TAKE BACK RETURN|RAIL|quests. si| +15115|411918|24427|3|34|62216.26|0.01|0.06|A|F|1995-04-27|1995-04-11|1995-05-22|NONE|MAIL|riously alongside of the blith| +15115|94213|31717|4|6|7243.26|0.00|0.03|R|F|1995-04-17|1995-03-05|1995-05-09|TAKE BACK RETURN|MAIL|theodolites about the regular dep| +15116|651802|39342|1|21|36829.17|0.06|0.00|N|O|1995-10-03|1995-08-27|1995-10-17|TAKE BACK RETURN|TRUCK|usly final requests| +15116|825077|25078|2|22|22044.66|0.10|0.06|N|O|1995-10-01|1995-09-19|1995-10-31|NONE|FOB|c foxes nag furio| +15116|59654|47158|3|39|62932.35|0.10|0.01|N|O|1995-11-15|1995-10-10|1995-11-27|COLLECT COD|SHIP|es sleep blithely around the r| +15116|593293|43294|4|34|47133.18|0.03|0.06|N|O|1995-10-20|1995-10-06|1995-11-14|COLLECT COD|AIR|ick foxes cajole furiously| +15116|475018|12546|5|32|31775.68|0.07|0.06|N|O|1995-10-20|1995-09-24|1995-11-09|COLLECT COD|MAIL|. regular, unus| +15117|285947|23463|1|50|96646.50|0.04|0.03|A|F|1994-10-01|1994-11-29|1994-10-16|TAKE BACK RETURN|FOB|te among the never| +15118|62740|37743|1|10|17027.40|0.00|0.02|N|O|1995-11-04|1995-12-16|1995-11-13|TAKE BACK RETURN|REG AIR| pending, ironic requests. ironic dependen| +15118|462290|49818|2|27|33811.29|0.05|0.00|N|O|1996-01-29|1995-11-20|1996-02-21|DELIVER IN PERSON|REG AIR|ockey players use carefully into the depe| +15118|693652|43653|3|46|75698.52|0.10|0.02|N|O|1995-11-27|1995-12-23|1995-12-21|COLLECT COD|REG AIR|according to the blit| +15118|202718|40231|4|34|55103.80|0.02|0.03|N|O|1995-12-25|1995-11-28|1996-01-05|TAKE BACK RETURN|REG AIR|ly final deposits. platelets use. pending | +15118|70509|45512|5|41|60659.50|0.05|0.04|N|O|1995-10-19|1995-12-03|1995-10-31|DELIVER IN PERSON|REG AIR|packages. pending pearls through| +15119|667275|4815|1|37|45962.88|0.03|0.01|R|F|1993-08-02|1993-09-08|1993-08-03|DELIVER IN PERSON|FOB| foxes are w| +15119|886726|24278|2|46|78783.28|0.05|0.05|R|F|1993-08-16|1993-08-21|1993-08-18|TAKE BACK RETURN|REG AIR|y regular asy| +15119|199622|37132|3|33|56813.46|0.06|0.05|A|F|1993-09-18|1993-10-03|1993-09-19|TAKE BACK RETURN|MAIL|nic theodoli| +15119|39585|27086|4|40|60983.20|0.08|0.01|A|F|1993-07-20|1993-08-28|1993-08-08|NONE|REG AIR|he unusual dep| +15144|180721|43225|1|22|39637.84|0.05|0.04|R|F|1994-06-21|1994-07-25|1994-06-27|TAKE BACK RETURN|TRUCK|ely bold theodolites wake above the t| +15144|371280|8802|2|19|25674.13|0.08|0.06|A|F|1994-07-26|1994-07-24|1994-08-02|NONE|RAIL|ic asymptotes. asymp| +15144|92031|4533|3|7|7161.21|0.10|0.05|R|F|1994-09-16|1994-07-15|1994-09-27|TAKE BACK RETURN|TRUCK|bold accounts wake above the f| +15144|761703|36734|4|44|77645.48|0.02|0.06|A|F|1994-07-14|1994-08-02|1994-07-28|COLLECT COD|RAIL|onic frets detect carefully alon| +15145|300818|819|1|37|67295.60|0.10|0.05|A|F|1993-09-07|1993-07-22|1993-10-02|DELIVER IN PERSON|RAIL|deas sleep final, final deposits. quiet, ir| +15145|840482|15515|2|6|8534.64|0.02|0.03|R|F|1993-08-04|1993-09-08|1993-08-22|TAKE BACK RETURN|TRUCK|- accounts affix furiously alongside of the| +15145|977667|2706|3|44|76763.28|0.09|0.02|R|F|1993-07-20|1993-09-07|1993-08-07|COLLECT COD|TRUCK|tain furiously final| +15145|642432|17457|4|46|63222.40|0.02|0.02|A|F|1993-10-08|1993-09-10|1993-10-11|COLLECT COD|REG AIR|s integrate blithely. furiously| +15145|337999|38000|5|27|54998.46|0.03|0.07|A|F|1993-08-14|1993-09-11|1993-08-28|NONE|MAIL|iously bold reque| +15145|738595|38596|6|10|16335.60|0.00|0.00|R|F|1993-09-21|1993-08-08|1993-10-01|DELIVER IN PERSON|SHIP|ial deposit| +15145|557969|32992|7|46|93239.24|0.08|0.01|R|F|1993-06-30|1993-08-04|1993-07-20|COLLECT COD|FOB|cies wake fluffily accor| +15146|781422|31423|1|34|51115.26|0.04|0.03|N|O|1997-05-13|1997-04-16|1997-05-26|NONE|TRUCK|to beans. regular packages cajole caref| +15146|355255|17763|2|36|47168.64|0.05|0.02|N|O|1997-03-14|1997-05-16|1997-04-02|TAKE BACK RETURN|FOB|ular packages. blithely| +15146|756424|31455|3|26|38490.14|0.06|0.07|N|O|1997-03-23|1997-04-21|1997-03-24|COLLECT COD|RAIL|sleep slyly carefully express account| +15147|640972|28509|1|38|72691.72|0.02|0.04|N|O|1997-01-30|1997-02-06|1997-02-12|COLLECT COD|TRUCK|haggle even request| +15147|816145|28662|2|21|22283.10|0.07|0.05|N|O|1997-02-18|1997-01-18|1997-03-09|COLLECT COD|RAIL|tructions. quickly| +15147|936962|49481|3|1|1998.92|0.08|0.00|N|O|1997-01-08|1997-02-24|1997-01-23|DELIVER IN PERSON|FOB|s excuses are furiously? blithely regular | +15147|516282|28793|4|32|41544.32|0.02|0.06|N|O|1997-03-09|1997-02-03|1997-03-21|DELIVER IN PERSON|FOB|he furiously regular deposits. thin reque| +15148|371598|46613|1|46|76800.68|0.01|0.08|N|O|1995-07-01|1995-05-25|1995-07-29|NONE|RAIL|ess frets nag-- silent| +15148|445370|7879|2|32|42091.20|0.05|0.06|A|F|1995-05-08|1995-05-30|1995-05-10|NONE|RAIL|. carefully s| +15148|318784|43797|3|19|34252.63|0.07|0.07|R|F|1995-04-22|1995-04-30|1995-05-05|TAKE BACK RETURN|REG AIR|ously bold dinos. bold packages boost blit| +15148|795473|33019|4|25|39211.00|0.03|0.04|A|F|1995-04-30|1995-05-11|1995-05-13|NONE|REG AIR|y ironic, bold th| +15148|509209|21720|5|13|15836.34|0.03|0.04|R|F|1995-03-16|1995-05-11|1995-04-05|NONE|RAIL|grate across the iro| +15149|969553|19554|1|23|37317.73|0.08|0.05|A|F|1992-06-30|1992-09-24|1992-07-11|DELIVER IN PERSON|REG AIR|cajole slyly silent deposits. dogg| +15149|269246|6762|2|49|59546.27|0.05|0.06|A|F|1992-09-21|1992-09-24|1992-09-25|TAKE BACK RETURN|SHIP|, final accounts haggle agai| +15149|214877|2390|3|7|12543.02|0.10|0.04|A|F|1992-06-29|1992-09-17|1992-07-20|TAKE BACK RETURN|TRUCK|egular accounts are f| +15149|429830|4847|4|24|42235.44|0.10|0.07|A|F|1992-08-18|1992-08-29|1992-09-08|TAKE BACK RETURN|RAIL|hely special theodolites. carefully ironic | +15150|128293|15800|1|21|27747.09|0.07|0.02|N|O|1995-08-20|1995-07-30|1995-09-10|NONE|MAIL|regular pinto beans. express forges int| +15150|209796|47309|2|22|37527.16|0.10|0.02|N|O|1995-07-25|1995-07-26|1995-08-10|DELIVER IN PERSON|TRUCK|s sleep; ironically unu| +15151|649992|37529|1|49|95156.04|0.04|0.03|N|O|1998-08-12|1998-09-12|1998-08-13|COLLECT COD|FOB|counts among the q| +15176|516529|29040|1|18|27819.00|0.01|0.07|N|O|1997-01-08|1997-02-25|1997-02-04|NONE|TRUCK|egular pinto beans solve above the | +15176|286862|11873|2|15|27732.75|0.00|0.06|N|O|1997-04-07|1997-03-12|1997-04-30|DELIVER IN PERSON|AIR|ic package| +15176|277551|2562|3|10|15285.40|0.07|0.08|N|O|1997-03-31|1997-03-17|1997-04-16|DELIVER IN PERSON|TRUCK|ly idle packages haggl| +15177|847367|9884|1|8|10514.56|0.03|0.08|A|F|1995-04-30|1995-06-26|1995-05-22|TAKE BACK RETURN|TRUCK|ording to the | +15177|692595|5109|2|41|65089.96|0.06|0.06|N|F|1995-06-13|1995-06-08|1995-06-28|COLLECT COD|TRUCK|blithely pinto beans. blithe| +15177|434567|34568|3|38|57058.52|0.07|0.01|N|O|1995-06-29|1995-06-16|1995-07-14|DELIVER IN PERSON|REG AIR|tes haggle carefully. slyly pend| +15177|750852|38398|4|50|95141.00|0.07|0.01|A|F|1995-05-13|1995-06-29|1995-05-27|NONE|SHIP|ggle about the careful| +15177|564068|14069|5|2|2264.08|0.06|0.02|N|O|1995-07-31|1995-06-29|1995-08-15|NONE|FOB| blithely regular foxes. carefully| +15177|280892|43398|6|35|65550.80|0.10|0.07|N|O|1995-07-02|1995-05-11|1995-07-26|NONE|RAIL|dolites sleep. slyly final | +15177|937549|68|7|29|46008.50|0.07|0.03|R|F|1995-04-18|1995-05-27|1995-05-14|COLLECT COD|MAIL|ake quietly. ironic courts sleep qui| +15178|378720|41228|1|13|23383.23|0.06|0.08|N|O|1997-03-28|1997-02-16|1997-04-06|NONE|SHIP| packages haggle caref| +15178|136743|49246|2|21|37374.54|0.05|0.06|N|O|1997-01-27|1997-01-09|1997-02-17|COLLECT COD|AIR|r deposits. reg| +15178|224932|12445|3|43|79847.56|0.05|0.01|N|O|1997-01-24|1997-01-21|1997-02-13|TAKE BACK RETURN|SHIP|nic accounts. blithely i| +15178|427243|14768|4|50|58511.00|0.00|0.02|N|O|1997-01-26|1997-02-04|1997-01-27|TAKE BACK RETURN|TRUCK|the express packages wake against the iro| +15179|562758|25270|1|32|58263.36|0.00|0.02|N|O|1997-08-01|1997-09-04|1997-08-12|DELIVER IN PERSON|MAIL|bout the blithely pendin| +15179|271506|9022|2|43|63532.07|0.10|0.05|N|O|1997-09-09|1997-09-22|1997-10-08|COLLECT COD|AIR|carefully blithely ironi| +15179|185893|48397|3|38|75197.82|0.09|0.08|N|O|1997-09-21|1997-09-04|1997-10-14|NONE|TRUCK|heodolites wake carefully ab| +15179|291195|41196|4|36|42702.48|0.07|0.02|N|O|1997-10-27|1997-09-02|1997-11-15|TAKE BACK RETURN|REG AIR| courts sleep.| +15179|107896|45403|5|43|81867.27|0.01|0.07|N|O|1997-07-09|1997-09-02|1997-07-23|DELIVER IN PERSON|TRUCK| deposits us| +15179|404977|17486|6|36|67750.20|0.07|0.03|N|O|1997-08-20|1997-08-05|1997-09-15|COLLECT COD|RAIL|nts. blithely ironic excuses integ| +15180|376540|14062|1|11|17781.83|0.01|0.06|N|O|1997-09-27|1997-12-17|1997-10-15|COLLECT COD|FOB| the pinto be| +15180|492257|4767|2|30|37476.90|0.05|0.00|N|O|1997-12-15|1997-11-19|1997-12-16|TAKE BACK RETURN|TRUCK|ccounts nag permanently bold f| +15180|360968|10969|3|30|60868.50|0.08|0.03|N|O|1997-10-16|1997-12-19|1997-11-13|DELIVER IN PERSON|RAIL|lar dolphins against the quickly regu| +15180|788558|13589|4|42|69153.84|0.00|0.00|N|O|1997-11-10|1997-11-12|1997-11-22|COLLECT COD|RAIL|ect blithely over the blithely silent| +15181|107522|32527|1|17|26001.84|0.02|0.08|A|F|1994-04-02|1994-02-04|1994-04-11|TAKE BACK RETURN|SHIP|e quickly final packages are| +15181|113750|1257|2|37|65258.75|0.03|0.00|A|F|1994-01-20|1994-02-04|1994-02-01|TAKE BACK RETURN|FOB|eposits breach furiously. slyly final d| +15181|781820|19366|3|10|19017.90|0.09|0.01|A|F|1994-01-15|1994-02-16|1994-01-29|NONE|FOB| against the furiously iro| +15181|38293|794|4|34|41863.86|0.09|0.00|A|F|1994-01-18|1994-02-05|1994-01-29|COLLECT COD|TRUCK|totes. account| +15181|583711|33712|5|17|30509.73|0.08|0.08|R|F|1993-12-22|1994-02-09|1994-01-09|TAKE BACK RETURN|RAIL|al accounts are furiously abov| +15181|417175|17176|6|23|25119.45|0.05|0.04|A|F|1994-02-02|1994-03-02|1994-02-10|COLLECT COD|SHIP|he furiously special| +15182|462926|12927|1|36|68000.40|0.08|0.02|A|F|1993-03-23|1993-03-29|1993-04-06|DELIVER IN PERSON|REG AIR|le furiously after the final ins| +15182|386961|49469|2|14|28671.30|0.10|0.05|A|F|1993-05-23|1993-04-26|1993-06-02|DELIVER IN PERSON|REG AIR|y bold instr| +15183|792663|17694|1|47|82514.61|0.03|0.07|N|O|1997-12-03|1997-12-29|1998-01-01|DELIVER IN PERSON|SHIP|usual pinto beans. regular requests ha| +15183|281844|6855|2|5|9129.15|0.00|0.04|N|O|1998-02-04|1998-01-25|1998-03-02|DELIVER IN PERSON|REG AIR|es will have to wake | +15208|868192|43227|1|33|38284.95|0.05|0.07|A|F|1994-02-02|1994-01-19|1994-02-03|DELIVER IN PERSON|TRUCK|uffily even accounts wake: even, regul| +15208|686302|36303|2|6|7729.62|0.08|0.08|A|F|1994-03-10|1994-01-21|1994-03-15|NONE|SHIP|slyly above the ironic instr| +15208|670460|20461|3|26|37191.18|0.10|0.01|A|F|1993-12-01|1994-01-20|1993-12-15|NONE|RAIL|t packages. care| +15208|416376|3901|4|11|14215.85|0.07|0.07|A|F|1993-12-14|1994-01-25|1994-01-07|DELIVER IN PERSON|FOB| quickly around the fluffily | +15208|26909|14410|5|8|14687.20|0.08|0.05|A|F|1993-12-28|1994-01-31|1994-01-22|DELIVER IN PERSON|FOB| asymptotes are| +15209|442132|29657|1|5|5370.55|0.10|0.06|A|F|1993-10-03|1993-10-01|1993-10-12|COLLECT COD|REG AIR|latelets. fluffily i| +15209|896474|21509|2|39|57346.77|0.04|0.05|A|F|1993-08-30|1993-09-12|1993-09-18|NONE|RAIL|encies use carefully | +15209|31146|18647|3|2|2154.28|0.04|0.03|R|F|1993-10-05|1993-09-22|1993-10-07|TAKE BACK RETURN|RAIL| foxes. slyly pending de| +15209|468602|43621|4|2|3141.16|0.09|0.06|R|F|1993-08-03|1993-09-23|1993-09-01|COLLECT COD|RAIL|requests above the asymptotes solve acco| +15209|792101|29647|5|13|15509.91|0.07|0.04|A|F|1993-10-18|1993-09-05|1993-11-09|NONE|FOB|ly. carefully final d| +15210|603985|3986|1|32|60446.40|0.09|0.02|R|F|1993-07-30|1993-07-27|1993-08-21|TAKE BACK RETURN|MAIL|fully quickly ironic requests. regular f| +15210|165678|3188|2|26|45335.42|0.06|0.08|R|F|1993-09-08|1993-07-03|1993-09-29|DELIVER IN PERSON|TRUCK|re alongside of the pen| +15210|540304|40305|3|44|59148.32|0.09|0.01|A|F|1993-07-10|1993-07-02|1993-07-29|DELIVER IN PERSON|MAIL|arhorses. furious| +15210|872999|10551|4|49|96625.55|0.09|0.00|R|F|1993-09-17|1993-06-29|1993-09-24|NONE|TRUCK|final depths; slyly s| +15210|494113|31641|5|20|22141.80|0.03|0.02|R|F|1993-06-21|1993-06-26|1993-07-14|DELIVER IN PERSON|FOB|ultipliers among the regu| +15211|744528|44529|1|5|7862.45|0.03|0.05|N|O|1996-11-01|1996-09-12|1996-11-11|DELIVER IN PERSON|FOB| blithely final theodolites will sl| +15211|268340|30846|2|49|64108.17|0.03|0.06|N|O|1996-11-01|1996-10-17|1996-11-11|NONE|TRUCK|cajole unusual request| +15211|979081|41601|3|5|5800.20|0.05|0.03|N|O|1996-11-23|1996-10-16|1996-12-16|NONE|MAIL|ously unusual packa| +15211|397669|47670|4|43|75965.95|0.10|0.08|N|O|1996-11-04|1996-11-01|1996-11-23|TAKE BACK RETURN|RAIL|n packages use above the bli| +15211|618670|43695|5|12|19063.68|0.03|0.06|N|O|1996-12-05|1996-10-04|1996-12-29|TAKE BACK RETURN|TRUCK|above the slyly pending asymptotes use s| +15211|972158|22159|6|48|59045.28|0.01|0.01|N|O|1996-10-07|1996-09-29|1996-10-13|COLLECT COD|SHIP|accounts use carefully| +15211|47694|35195|7|12|19700.28|0.04|0.02|N|O|1996-10-14|1996-09-07|1996-10-31|COLLECT COD|TRUCK|ickly pending requests sleep af| +15212|587329|12352|1|21|29742.30|0.08|0.00|A|F|1994-05-01|1994-02-14|1994-05-17|COLLECT COD|RAIL|counts. thinly special accounts boost f| +15212|232251|7260|2|33|39046.92|0.09|0.04|R|F|1994-04-10|1994-03-11|1994-04-28|TAKE BACK RETURN|SHIP|nstructions. regu| +15212|433217|33218|3|36|41406.84|0.04|0.00|A|F|1994-01-28|1994-04-08|1994-02-17|COLLECT COD|REG AIR|e grouches. pending e| +15212|65229|40232|4|28|33438.16|0.05|0.04|A|F|1994-01-17|1994-02-12|1994-01-29|DELIVER IN PERSON|SHIP|re bold requests. | +15212|289827|39828|5|37|67221.97|0.09|0.02|R|F|1994-05-04|1994-03-19|1994-05-23|NONE|FOB|accounts aft| +15212|115503|40508|6|31|47073.50|0.00|0.08|R|F|1994-03-30|1994-03-25|1994-04-10|TAKE BACK RETURN|RAIL| along the pending, | +15213|805616|5617|1|11|16737.27|0.03|0.08|A|F|1992-04-18|1992-04-30|1992-05-07|DELIVER IN PERSON|RAIL| idle, final acco| +15213|973823|11381|2|31|58800.18|0.02|0.05|A|F|1992-06-16|1992-04-22|1992-07-02|TAKE BACK RETURN|RAIL|ar deposits | +15213|41748|29249|3|18|30415.32|0.06|0.02|R|F|1992-05-20|1992-04-18|1992-06-05|NONE|MAIL| furiously pending requ| +15213|654823|4824|4|13|23111.27|0.02|0.02|R|F|1992-05-06|1992-05-11|1992-05-10|NONE|MAIL|nusual requests are| +15213|597552|10064|5|15|24742.95|0.10|0.08|A|F|1992-05-23|1992-05-14|1992-06-13|TAKE BACK RETURN|TRUCK|ole slyly against the slyly even depo| +15213|44942|44943|6|39|73590.66|0.00|0.04|A|F|1992-04-22|1992-04-09|1992-05-09|COLLECT COD|AIR|the slyly pending packages. deposits haggle| +15214|994853|44854|1|44|85703.64|0.02|0.06|A|F|1992-10-30|1993-01-08|1992-11-02|COLLECT COD|MAIL|ic accounts nag acros| +15214|485749|48259|2|24|41633.28|0.02|0.00|A|F|1992-11-19|1992-11-29|1992-11-20|NONE|TRUCK|bt fluffily courts.| +15214|982308|19866|3|41|57000.66|0.09|0.06|R|F|1993-02-12|1992-12-12|1993-03-03|DELIVER IN PERSON|RAIL| sleep slyly aroun| +15214|647392|9905|4|13|17411.68|0.03|0.07|A|F|1993-02-08|1993-01-03|1993-02-18|COLLECT COD|FOB|re carefully of th| +15215|403442|3443|1|47|63234.74|0.05|0.01|A|F|1993-05-15|1993-04-03|1993-06-10|COLLECT COD|REG AIR|ily even, regular | +15215|646795|9308|2|12|20901.12|0.06|0.07|R|F|1993-04-07|1993-02-27|1993-04-21|DELIVER IN PERSON|REG AIR|ithely! quietly unusual pearls na| +15215|670601|20602|3|48|75435.36|0.04|0.08|A|F|1993-04-23|1993-03-05|1993-05-10|COLLECT COD|AIR|sits nag express, bold reques| +15215|789691|14722|4|6|10683.96|0.04|0.01|A|F|1993-05-11|1993-04-21|1993-05-19|TAKE BACK RETURN|TRUCK| the carefully regular deposits cajole fl| +15215|335012|10025|5|41|42927.00|0.05|0.08|R|F|1993-03-17|1993-03-03|1993-03-22|COLLECT COD|SHIP|ly regular theodolites. quickly bold accoun| +15240|975808|847|1|36|67815.36|0.04|0.04|A|F|1993-06-05|1993-05-30|1993-06-11|NONE|FOB|about the furiously regular th| +15240|393891|31413|2|15|29773.20|0.05|0.08|R|F|1993-05-12|1993-07-20|1993-05-21|DELIVER IN PERSON|RAIL|wake. accounts haggle furiously abov| +15241|541149|3660|1|30|35703.60|0.04|0.04|R|F|1992-10-12|1992-11-24|1992-10-20|DELIVER IN PERSON|TRUCK|ng ideas. carefully even instructions affi| +15241|83025|20529|2|21|21168.42|0.06|0.06|R|F|1992-10-26|1992-11-14|1992-11-01|DELIVER IN PERSON|AIR|onic depen| +15241|394533|19548|3|22|35805.44|0.07|0.05|R|F|1992-11-10|1992-11-02|1992-11-26|TAKE BACK RETURN|TRUCK|ironic packages. packages cajole blithely. | +15241|899980|12498|4|49|97017.06|0.07|0.04|R|F|1992-10-19|1992-10-04|1992-11-04|COLLECT COD|RAIL|ing excuses alon| +15242|6957|19458|1|10|18639.50|0.08|0.08|A|F|1993-08-25|1993-09-11|1993-09-02|NONE|FOB|ic theodolites sleep after the quickl| +15242|909498|22017|2|25|37686.25|0.03|0.05|A|F|1993-07-09|1993-08-10|1993-07-30|TAKE BACK RETURN|RAIL|y. blithely eve| +15242|930891|30892|3|26|49968.10|0.07|0.04|R|F|1993-10-11|1993-08-15|1993-10-19|DELIVER IN PERSON|AIR|lithely express requests wake a| +15242|475602|13130|4|23|36284.34|0.10|0.05|A|F|1993-08-22|1993-09-03|1993-09-12|NONE|RAIL|ecial accounts about the even| +15243|631417|43930|1|20|26967.60|0.09|0.01|A|F|1992-05-05|1992-04-17|1992-05-08|TAKE BACK RETURN|RAIL|ven theodolites; furiously even accounts c| +15243|217514|30019|2|15|21472.50|0.07|0.01|R|F|1992-04-26|1992-03-19|1992-05-07|TAKE BACK RETURN|SHIP|uests are furiously. re| +15243|742858|17887|3|6|11404.92|0.04|0.00|A|F|1992-04-16|1992-03-22|1992-04-22|DELIVER IN PERSON|TRUCK|efully. slyly pending forges wake furi| +15243|206196|31205|4|41|45189.38|0.10|0.06|R|F|1992-04-26|1992-05-05|1992-05-05|DELIVER IN PERSON|RAIL|engage according | +15243|532830|20361|5|44|81963.64|0.08|0.02|A|F|1992-05-20|1992-04-03|1992-06-19|NONE|RAIL|e furiously unusual requests. doggedly fina| +15244|626132|38645|1|15|15871.50|0.04|0.00|N|O|1996-02-11|1996-02-28|1996-02-22|DELIVER IN PERSON|MAIL|ckly bold dependencies detect carefully a| +15244|397747|47748|2|3|5534.19|0.04|0.08|N|O|1996-05-21|1996-03-14|1996-06-20|COLLECT COD|FOB|eans are s| +15244|928921|28922|3|5|9749.40|0.04|0.04|N|O|1996-04-25|1996-03-15|1996-05-18|TAKE BACK RETURN|MAIL|unts are. blithely f| +15245|485396|10415|1|31|42822.47|0.05|0.03|N|O|1995-09-05|1995-08-16|1995-09-26|COLLECT COD|TRUCK| slyly final asymptotes according | +15245|39652|39653|2|39|62074.35|0.10|0.03|N|O|1995-06-23|1995-08-22|1995-06-29|TAKE BACK RETURN|RAIL|to beans. regular gi| +15245|426402|13927|3|19|25239.22|0.10|0.03|N|O|1995-09-26|1995-08-05|1995-09-30|DELIVER IN PERSON|MAIL|lly final fo| +15246|105168|42675|1|14|16424.24|0.09|0.00|R|F|1995-06-04|1995-05-14|1995-06-13|TAKE BACK RETURN|TRUCK|en dolphins. d| +15246|544707|7218|2|17|29778.56|0.07|0.04|R|F|1995-06-14|1995-05-03|1995-06-16|NONE|REG AIR|ts. slyly regular somas c| +15246|877183|14735|3|9|10441.26|0.08|0.00|R|F|1995-05-07|1995-04-22|1995-05-11|DELIVER IN PERSON|FOB|kages about the idly re| +15246|802809|2810|4|24|41082.24|0.03|0.02|R|F|1995-03-30|1995-05-23|1995-04-12|NONE|REG AIR|ing depend| +15246|810424|22941|5|7|9340.66|0.09|0.00|R|F|1995-05-25|1995-05-19|1995-05-27|TAKE BACK RETURN|MAIL|yly furiously i| +15246|786698|49214|6|9|16061.94|0.03|0.04|N|F|1995-06-15|1995-06-12|1995-06-28|TAKE BACK RETURN|RAIL|posits at the quickly silent packages in| +15247|375502|13024|1|44|69409.56|0.01|0.07|N|O|1995-10-23|1995-10-05|1995-11-08|DELIVER IN PERSON|TRUCK|ic, even requests. ironic, regular packages| +15272|972788|47827|1|21|39075.54|0.06|0.07|A|F|1993-09-01|1993-06-29|1993-09-27|COLLECT COD|MAIL| boost after the ironic foxes. unusual | +15272|632765|20302|2|22|37350.06|0.08|0.06|A|F|1993-09-01|1993-06-24|1993-09-05|DELIVER IN PERSON|FOB| accounts sleep regularly furiously| +15272|867339|29857|3|42|54864.18|0.02|0.08|R|F|1993-08-29|1993-07-13|1993-09-09|DELIVER IN PERSON|RAIL|uriously! | +15272|363256|778|4|36|47492.64|0.10|0.04|R|F|1993-06-09|1993-06-29|1993-06-14|DELIVER IN PERSON|AIR| pending a| +15272|232842|20355|5|5|8874.15|0.01|0.08|R|F|1993-06-10|1993-07-04|1993-06-29|TAKE BACK RETURN|REG AIR| around the bold ac| +15272|360622|23130|6|47|79082.67|0.01|0.04|R|F|1993-09-03|1993-07-10|1993-09-14|COLLECT COD|AIR|l requests. busy deposits boost. sl| +15273|394397|31919|1|4|5965.52|0.01|0.05|R|F|1992-06-28|1992-06-16|1992-07-21|TAKE BACK RETURN|FOB|ously. silent, ironic theodolites above t| +15274|409565|47090|1|8|11796.32|0.03|0.04|R|F|1994-12-20|1994-12-23|1995-01-17|TAKE BACK RETURN|RAIL| slyly after the even pinto b| +15274|556147|43681|2|47|56546.64|0.10|0.02|R|F|1994-11-17|1994-12-18|1994-12-09|COLLECT COD|REG AIR|xes are along the furio| +15274|149936|24941|3|40|79437.20|0.06|0.08|R|F|1994-12-03|1994-12-17|1994-12-18|TAKE BACK RETURN|AIR|blithely idle foxes cajole a| +15274|973921|48960|4|11|21943.68|0.01|0.06|R|F|1995-01-30|1994-12-24|1995-02-20|DELIVER IN PERSON|REG AIR| frets detect about the| +15274|686781|36782|5|16|28284.00|0.02|0.03|A|F|1994-12-17|1994-12-19|1994-12-25|COLLECT COD|SHIP| beans sleep | +15274|714050|14051|6|10|10640.20|0.06|0.07|R|F|1994-11-03|1994-12-09|1994-12-01|NONE|RAIL|ick instructio| +15275|174821|37325|1|12|22749.84|0.01|0.03|A|F|1992-06-07|1992-04-07|1992-06-13|DELIVER IN PERSON|TRUCK| cajole furiously quickly fi| +15275|214688|14689|2|15|24040.05|0.02|0.02|R|F|1992-03-25|1992-04-12|1992-04-05|TAKE BACK RETURN|AIR|al requests| +15275|245186|20195|3|46|52033.82|0.01|0.02|R|F|1992-03-28|1992-05-04|1992-04-10|NONE|RAIL|ic deposits acco| +15275|840676|28225|4|5|8083.15|0.09|0.01|R|F|1992-04-26|1992-04-03|1992-05-17|NONE|REG AIR| blithely special dependencies are quickly| +15276|89369|39370|1|47|63842.92|0.00|0.00|A|F|1994-08-27|1994-07-01|1994-09-05|COLLECT COD|RAIL|sts. regula| +15276|9154|21655|2|19|20199.85|0.00|0.06|A|F|1994-07-11|1994-07-18|1994-07-28|TAKE BACK RETURN|RAIL|pinto beans affix slyly. quickly carefu| +15276|840507|15540|3|16|23159.36|0.00|0.05|A|F|1994-08-25|1994-08-06|1994-09-20|COLLECT COD|TRUCK| accounts run carefully. final reque| +15276|393279|30801|4|34|46656.84|0.07|0.05|A|F|1994-07-06|1994-06-15|1994-07-31|COLLECT COD|MAIL|cajole final ideas. carefully un| +15276|825133|12682|5|18|19045.62|0.01|0.01|R|F|1994-06-17|1994-07-13|1994-07-17|COLLECT COD|REG AIR|s detect carefully quickly final asymptot| +15276|3029|15530|6|40|37280.80|0.02|0.04|R|F|1994-06-13|1994-06-19|1994-07-10|NONE|SHIP|endencies. regular reque| +15277|629345|16882|1|41|52246.71|0.08|0.01|N|O|1996-10-12|1996-10-06|1996-11-04|NONE|SHIP|ully express packages. fluffily ruthles| +15277|390053|27575|2|9|10287.36|0.08|0.02|N|O|1996-10-19|1996-10-23|1996-10-21|NONE|TRUCK|es! pinto beans against | +15278|378309|3324|1|36|49942.44|0.07|0.08|R|F|1993-07-12|1993-05-17|1993-07-23|COLLECT COD|RAIL|old excuses cajole. unusual a| +15278|224712|49721|2|16|26187.20|0.07|0.05|A|F|1993-06-14|1993-04-16|1993-07-05|COLLECT COD|TRUCK|nd the furiously bold deposi| +15278|733502|8531|3|19|29173.93|0.09|0.00|A|F|1993-05-23|1993-05-08|1993-06-10|NONE|REG AIR|al theodolites. careful| +15278|963630|13631|4|34|57582.06|0.06|0.06|A|F|1993-04-03|1993-05-14|1993-04-22|TAKE BACK RETURN|MAIL|y special p| +15278|715348|15349|5|2|2726.62|0.07|0.02|R|F|1993-05-21|1993-05-01|1993-06-05|TAKE BACK RETURN|AIR|lithely special frets. unusual ideas| +15278|852217|27252|6|6|7015.02|0.02|0.08|R|F|1993-03-25|1993-04-15|1993-04-22|TAKE BACK RETURN|MAIL|blithely regular accounts nag blithe| +15279|74967|49970|1|35|67968.60|0.03|0.04|A|F|1993-10-02|1993-09-04|1993-10-19|TAKE BACK RETURN|TRUCK|pinto beans are | +15279|961780|24300|2|35|64460.90|0.10|0.00|R|F|1993-11-18|1993-10-18|1993-12-05|COLLECT COD|AIR|l ideas sleep across the bl| +15304|256541|31552|1|2|2995.06|0.07|0.07|N|O|1998-05-01|1998-06-04|1998-05-22|DELIVER IN PERSON|FOB|en theodolites. furio| +15304|673112|10652|2|12|13020.96|0.08|0.04|N|O|1998-07-12|1998-07-01|1998-07-15|NONE|MAIL|bold ideas. even requests boost | +15304|981820|6859|3|42|79874.76|0.07|0.05|N|O|1998-07-26|1998-05-31|1998-08-09|NONE|REG AIR|eful ideas! pending accounts ki| +15304|444723|7232|4|38|63372.60|0.08|0.06|N|O|1998-05-14|1998-07-18|1998-06-06|DELIVER IN PERSON|REG AIR| the regular fo| +15304|455157|5158|5|21|23354.73|0.09|0.05|N|O|1998-08-29|1998-05-31|1998-09-13|TAKE BACK RETURN|REG AIR|al, special | +15304|822507|10056|6|7|10006.22|0.03|0.01|N|O|1998-06-23|1998-07-07|1998-07-21|COLLECT COD|FOB| slyly about the ca| +15305|184488|21998|1|45|70761.60|0.02|0.08|R|F|1995-03-09|1995-02-14|1995-03-23|NONE|MAIL|atelets along the| +15305|683829|8856|2|18|32630.22|0.04|0.08|R|F|1995-01-14|1995-02-24|1995-02-08|NONE|MAIL|lites. permanent requests cajole f| +15305|102195|39702|3|18|21549.42|0.08|0.06|R|F|1995-01-09|1995-01-30|1995-01-16|NONE|MAIL|ch sometimes quickly bold packages. bold i| +15305|578371|28372|4|42|60872.70|0.01|0.06|A|F|1995-01-02|1995-01-24|1995-01-08|TAKE BACK RETURN|MAIL|es haggle carefully ab| +15306|545154|7665|1|2|2398.26|0.07|0.08|N|O|1998-01-21|1997-12-26|1998-02-13|COLLECT COD|FOB|inal deposits are furiously around the f| +15306|402973|2974|2|18|33767.10|0.03|0.00|N|O|1998-01-05|1998-01-31|1998-01-25|DELIVER IN PERSON|AIR| quickly sp| +15307|882490|32491|1|22|32393.90|0.07|0.02|N|O|1997-12-10|1997-10-31|1997-12-12|COLLECT COD|MAIL| sleep express pinto beans. ironi| +15307|3884|16385|2|7|12515.16|0.00|0.01|N|O|1997-12-26|1997-12-01|1998-01-09|TAKE BACK RETURN|TRUCK|xcuses haggle ironic accounts. fu| +15308|966815|41854|1|10|18817.70|0.07|0.01|R|F|1995-03-29|1995-05-04|1995-04-16|DELIVER IN PERSON|AIR| pending dinos. packages do eat | +15309|635364|22901|1|2|2598.66|0.05|0.06|N|O|1995-08-25|1995-07-06|1995-08-29|NONE|AIR|s. quickly bold foxes haggle furiously iron| +15309|562522|25034|2|47|74471.50|0.02|0.02|N|O|1995-09-07|1995-06-21|1995-09-15|COLLECT COD|TRUCK|gular deposits boost furiously even dolphin| +15309|305180|17687|3|11|13036.87|0.09|0.08|A|F|1995-06-05|1995-07-12|1995-06-09|COLLECT COD|MAIL|arefully regular pains. slyly p| +15309|150240|12744|4|20|25804.80|0.08|0.02|N|O|1995-09-15|1995-08-01|1995-10-09|COLLECT COD|REG AIR|eas are quickly furiously| +15309|69960|7464|5|3|5789.88|0.09|0.01|N|O|1995-06-18|1995-08-01|1995-07-10|COLLECT COD|SHIP|uffy requests need to us| +15309|807539|7540|6|23|33269.27|0.09|0.00|N|O|1995-09-08|1995-07-23|1995-09-09|DELIVER IN PERSON|RAIL|requests wak| +15310|106780|44287|1|35|62537.30|0.01|0.03|R|F|1994-10-30|1994-10-28|1994-11-23|DELIVER IN PERSON|RAIL|efully slyly bold accounts.| +15310|635488|35489|2|17|24198.65|0.09|0.08|R|F|1994-10-14|1994-11-26|1994-10-17|COLLECT COD|TRUCK|s wake across the fluffily final courts. ca| +15310|642396|17421|3|40|53534.40|0.06|0.05|A|F|1994-12-12|1994-10-12|1995-01-07|COLLECT COD|AIR|g quickly around the fluffil| +15310|735455|22998|4|6|8942.52|0.09|0.03|A|F|1994-11-21|1994-10-14|1994-11-22|NONE|SHIP|de of the slyly final accounts. r| +15310|775824|855|5|16|30396.64|0.08|0.04|A|F|1994-12-24|1994-10-16|1995-01-09|COLLECT COD|MAIL|ly. carefully express reque| +15310|259819|47335|6|20|35576.00|0.09|0.02|R|F|1994-09-20|1994-10-23|1994-09-24|TAKE BACK RETURN|RAIL|gle bold packages; blithely regular pin| +15310|766416|3962|7|28|41506.64|0.03|0.01|R|F|1994-11-10|1994-11-23|1994-12-09|NONE|FOB|y blithely final deposits. final, even| +15311|138414|38415|1|14|20333.74|0.09|0.01|R|F|1992-10-22|1992-11-19|1992-11-10|NONE|TRUCK|ake quickly regular foxes. furiousl| +15311|307628|32641|2|22|35983.42|0.06|0.08|A|F|1992-11-10|1992-10-20|1992-11-30|COLLECT COD|SHIP|ts. bold packages according to the slyly | +15311|291725|4231|3|19|32617.49|0.02|0.07|A|F|1992-10-26|1992-10-29|1992-10-28|NONE|FOB|s integrate blithely pendin| +15311|20840|20841|4|31|54586.04|0.00|0.01|A|F|1992-10-24|1992-09-28|1992-11-23|COLLECT COD|REG AIR|across the deposits. pendi| +15336|469076|44095|1|36|37621.80|0.09|0.05|R|F|1992-07-24|1992-07-19|1992-07-25|DELIVER IN PERSON|SHIP|excuses are furiously| +15336|745930|8445|2|46|90891.40|0.07|0.07|R|F|1992-08-12|1992-08-19|1992-09-03|DELIVER IN PERSON|REG AIR|regular asympto| +15336|844064|31613|3|15|15120.30|0.07|0.07|A|F|1992-05-27|1992-07-08|1992-06-17|NONE|AIR|aves. unusual deposits sleep.| +15336|177505|27506|4|11|17407.50|0.10|0.07|A|F|1992-08-21|1992-08-04|1992-09-03|DELIVER IN PERSON|AIR| foxes. ca| +15336|311957|11958|5|25|49223.50|0.09|0.00|R|F|1992-09-01|1992-07-28|1992-09-05|DELIVER IN PERSON|AIR| quickly bold packages | +15336|50319|37823|6|37|46964.47|0.08|0.04|A|F|1992-08-27|1992-07-17|1992-09-05|DELIVER IN PERSON|TRUCK|carefully. final, re| +15337|657834|45374|1|12|21501.60|0.02|0.08|R|F|1992-08-13|1992-10-09|1992-09-10|TAKE BACK RETURN|AIR|y express dinos. | +15338|549589|12100|1|17|27855.52|0.04|0.06|N|O|1996-09-14|1996-08-31|1996-10-06|DELIVER IN PERSON|TRUCK|deposits. slyly regul| +15338|929902|4939|2|36|69546.96|0.05|0.02|N|O|1996-11-01|1996-09-26|1996-11-28|DELIVER IN PERSON|TRUCK|unusual deposits. even, final | +15338|862842|12843|3|21|37900.80|0.04|0.00|N|O|1996-08-28|1996-08-28|1996-09-03|COLLECT COD|SHIP|. Tiresias sleep among th| +15338|770640|8186|4|43|73556.23|0.02|0.05|N|O|1996-10-26|1996-09-11|1996-11-23|NONE|FOB|uriously special depo| +15338|146201|33708|5|24|29932.80|0.05|0.01|N|O|1996-07-17|1996-09-21|1996-07-20|TAKE BACK RETURN|FOB|ng ideas. pl| +15338|190294|15301|6|43|59524.47|0.02|0.06|N|O|1996-10-13|1996-09-15|1996-10-25|NONE|SHIP|tes. ironic asymptotes haggle slyly. sil| +15338|263416|38427|7|26|35864.40|0.02|0.06|N|O|1996-08-11|1996-09-14|1996-08-17|NONE|AIR|ely final excuse| +15339|216266|3779|1|46|54383.50|0.08|0.03|N|O|1998-02-01|1998-02-19|1998-02-26|DELIVER IN PERSON|RAIL|rmanent as| +15339|782581|7612|2|31|51570.05|0.06|0.00|N|O|1998-01-22|1998-03-08|1998-01-28|COLLECT COD|REG AIR|ost ironic excuses. fl| +15339|831965|44482|3|16|30350.72|0.10|0.07|N|O|1998-03-12|1998-03-12|1998-04-01|COLLECT COD|MAIL|riously. furiousl| +15339|827535|27536|4|25|36562.25|0.04|0.08|N|O|1998-04-07|1998-03-06|1998-04-23|TAKE BACK RETURN|REG AIR|ckages. regular, pending packages haggle | +15339|370103|20104|5|29|34019.61|0.09|0.02|N|O|1998-03-08|1998-03-12|1998-03-31|TAKE BACK RETURN|SHIP|ffix against the b| +15339|313481|25988|6|34|50811.98|0.00|0.06|N|O|1998-02-24|1998-03-25|1998-03-02|NONE|FOB|regular deposits boost f| +15340|341342|41343|1|17|23516.61|0.08|0.00|N|O|1996-12-19|1996-12-25|1997-01-03|NONE|REG AIR|ut the ironi| +15340|919928|19929|2|9|17530.92|0.10|0.06|N|O|1997-02-14|1996-11-29|1997-02-26|DELIVER IN PERSON|MAIL|lar sauterne| +15340|229408|16921|3|31|41459.09|0.09|0.00|N|O|1996-12-16|1997-01-15|1996-12-26|TAKE BACK RETURN|TRUCK|ckly even requests wake| +15340|651824|26851|4|28|49722.12|0.08|0.05|N|O|1997-01-18|1996-12-22|1997-02-09|DELIVER IN PERSON|TRUCK| after the quickly regular theodolites| +15341|361550|49072|1|2|3223.08|0.02|0.01|N|O|1998-09-08|1998-08-16|1998-09-19|TAKE BACK RETURN|RAIL|tructions. even requests use| +15341|560429|35452|2|44|65533.60|0.05|0.03|N|O|1998-07-31|1998-08-31|1998-08-20|DELIVER IN PERSON|REG AIR|egular pac| +15341|123803|48808|3|19|34709.20|0.00|0.06|N|O|1998-10-19|1998-09-14|1998-10-25|TAKE BACK RETURN|TRUCK|tterns snooze among the care| +15342|889867|14902|1|8|14854.56|0.09|0.07|N|O|1998-09-24|1998-08-15|1998-10-23|DELIVER IN PERSON|AIR|ronic, bold foxes haggle furiously quick| +15342|983075|20633|2|40|46321.20|0.06|0.04|N|O|1998-08-17|1998-09-17|1998-08-20|DELIVER IN PERSON|REG AIR|uests against the blithely ironic packages | +15342|527999|28000|3|35|70943.95|0.00|0.04|N|O|1998-10-15|1998-09-21|1998-10-31|NONE|TRUCK|fts. regular, fina| +15342|77267|39769|4|14|17419.64|0.01|0.00|N|O|1998-09-12|1998-08-19|1998-09-17|COLLECT COD|AIR|along the carefully even| +15343|799817|49818|1|47|90088.66|0.07|0.02|N|O|1997-07-03|1997-06-12|1997-08-01|TAKE BACK RETURN|REG AIR| accounts. blithely unusu| +15343|511789|11790|2|13|23409.88|0.08|0.00|N|O|1997-07-13|1997-05-14|1997-08-08|NONE|SHIP|ithely ironic packa| +15343|625254|25255|3|13|15329.86|0.09|0.08|N|O|1997-07-01|1997-06-10|1997-07-16|TAKE BACK RETURN|AIR|uctions use around the quiet fo| +15368|836662|36663|1|29|46359.98|0.01|0.03|N|O|1997-06-15|1997-07-25|1997-06-17|NONE|SHIP|ss the express foxes. car| +15368|764053|14054|2|19|21223.38|0.02|0.03|N|O|1997-08-09|1997-07-16|1997-09-06|DELIVER IN PERSON|RAIL| into the pending, | +15368|423644|36153|3|46|72110.52|0.07|0.03|N|O|1997-07-02|1997-08-28|1997-07-19|COLLECT COD|RAIL|luffily final grouch| +15368|169375|6885|4|26|37553.62|0.00|0.08|N|O|1997-09-11|1997-07-20|1997-10-02|NONE|TRUCK|usly final packages. idea| +15368|685143|22683|5|27|30458.97|0.01|0.02|N|O|1997-08-05|1997-09-05|1997-08-31|NONE|AIR|lyly unusual accounts across the slyly t| +15368|182096|7103|6|16|18849.44|0.06|0.07|N|O|1997-09-26|1997-09-06|1997-10-09|COLLECT COD|RAIL|e packages wake carefully alongside o| +15369|770164|7710|1|45|55535.85|0.04|0.07|N|O|1997-01-26|1997-03-24|1997-01-28|DELIVER IN PERSON|SHIP|ounts use among the ca| +15369|141351|3854|2|26|36201.10|0.07|0.07|N|O|1997-04-23|1997-03-18|1997-04-28|DELIVER IN PERSON|AIR|ic ideas sleep across the fluffi| +15369|682892|32893|3|26|48746.36|0.02|0.05|N|O|1997-02-27|1997-02-15|1997-03-07|TAKE BACK RETURN|TRUCK|ly; quickly sil| +15369|361848|24356|4|41|78303.03|0.01|0.00|N|O|1997-03-24|1997-03-13|1997-03-31|TAKE BACK RETURN|MAIL| ruthlessly bold foxes. slyly | +15369|568085|43108|5|31|35744.86|0.06|0.06|N|O|1997-04-25|1997-01-30|1997-05-16|DELIVER IN PERSON|FOB|e carefully ironic packages boo| +15370|358848|8849|1|20|38136.60|0.00|0.08|N|O|1996-07-09|1996-07-14|1996-07-14|COLLECT COD|RAIL|c pinto beans dazzle slyl| +15370|143367|18372|2|37|52183.32|0.09|0.05|N|O|1996-10-09|1996-08-22|1996-10-12|DELIVER IN PERSON|SHIP|e the final deposits. carefully | +15371|124316|49321|1|10|13403.10|0.10|0.04|R|F|1994-10-30|1995-01-10|1994-11-20|NONE|SHIP|ons. slyly regular requests alo| +15371|364181|26689|2|4|4980.68|0.09|0.06|A|F|1994-11-25|1995-01-12|1994-12-11|DELIVER IN PERSON|SHIP|ronic accounts haggle | +15371|782624|20170|3|11|18772.49|0.09|0.04|R|F|1994-11-28|1994-11-15|1994-12-19|TAKE BACK RETURN|MAIL|thely about the carefully regular instru| +15371|557305|44839|4|23|31332.44|0.07|0.05|R|F|1994-12-26|1994-12-14|1995-01-22|COLLECT COD|SHIP|quickly silent epitaphs above th| +15371|618202|18203|5|16|17922.72|0.06|0.02|A|F|1994-12-05|1994-12-24|1994-12-30|COLLECT COD|MAIL|ets. furious| +15371|115759|28262|6|14|24846.50|0.04|0.02|R|F|1995-01-15|1994-12-28|1995-02-14|COLLECT COD|RAIL|alongside of| +15371|549058|24079|7|11|12177.33|0.09|0.06|R|F|1995-02-04|1994-12-24|1995-02-14|DELIVER IN PERSON|SHIP|uses wake across the furious theodolites?| +15372|7513|20014|1|48|68184.48|0.06|0.01|N|O|1998-05-01|1998-06-15|1998-05-08|TAKE BACK RETURN|RAIL|efully regular, bold instructions-- ca| +15373|493033|18052|1|46|47196.46|0.10|0.06|N|O|1996-05-23|1996-05-04|1996-06-21|NONE|TRUCK|kly regular packages nag s| +15373|398862|11370|2|6|11765.10|0.03|0.00|N|O|1996-07-10|1996-05-05|1996-07-12|COLLECT COD|SHIP|gular theodolites. carefully re| +15373|669061|31575|3|8|8240.24|0.00|0.02|N|O|1996-07-18|1996-05-12|1996-08-17|COLLECT COD|SHIP|its cajole slyly carefully e| +15373|894677|19712|4|50|83581.50|0.04|0.06|N|O|1996-04-28|1996-06-24|1996-05-18|TAKE BACK RETURN|SHIP|e carefully pending instructions. blithely| +15373|833836|33837|5|13|23007.27|0.10|0.02|N|O|1996-05-25|1996-05-17|1996-06-23|NONE|FOB|sly even deposits. specia| +15373|277604|15120|6|9|14234.31|0.00|0.04|N|O|1996-07-01|1996-06-24|1996-07-31|TAKE BACK RETURN|TRUCK| haggle slyl| +15374|410589|48114|1|24|35989.44|0.04|0.03|N|O|1997-12-02|1998-02-03|1997-12-31|COLLECT COD|AIR| about the special dugo| +15375|823884|11433|1|13|23501.92|0.08|0.00|N|O|1996-09-15|1996-09-02|1996-10-01|DELIVER IN PERSON|SHIP| the fluffy ideas. furiously qui| +15400|244292|19301|1|40|49451.20|0.02|0.05|R|F|1994-12-27|1995-03-11|1995-01-03|TAKE BACK RETURN|MAIL|usly carefully even d| +15401|708163|8164|1|5|5855.65|0.07|0.07|N|O|1997-10-15|1997-08-21|1997-11-01|TAKE BACK RETURN|MAIL|nts play furiously slo| +15401|87043|12046|2|25|25751.00|0.03|0.06|N|O|1997-09-04|1997-10-06|1997-09-12|NONE|MAIL|ly express dependencies use. regular ideas| +15401|919327|19328|3|12|16155.36|0.03|0.00|N|O|1997-10-11|1997-10-17|1997-10-17|NONE|SHIP|e slyly unusual ideas. boldly speci| +15401|126176|38679|4|7|8415.19|0.02|0.05|N|O|1997-07-27|1997-08-21|1997-08-06|TAKE BACK RETURN|REG AIR|ions. final d| +15402|555432|5433|1|36|53546.76|0.10|0.05|R|F|1993-04-16|1993-03-13|1993-04-19|COLLECT COD|REG AIR|ts are quickly along the furiously| +15402|130817|30818|2|4|7391.24|0.03|0.06|A|F|1993-03-09|1993-02-10|1993-03-31|TAKE BACK RETURN|FOB|wake. blithely specia| +15402|630376|5401|3|23|30045.82|0.05|0.05|R|F|1993-04-17|1993-02-20|1993-05-06|TAKE BACK RETURN|SHIP| silent dinos snooze car| +15402|725774|38289|4|27|48592.98|0.06|0.05|A|F|1993-02-03|1993-02-22|1993-03-02|TAKE BACK RETURN|AIR|osits breach after the blithely ironic | +15403|809630|47179|1|21|32331.39|0.02|0.00|A|F|1994-10-02|1994-10-07|1994-10-08|COLLECT COD|AIR|to beans are express requests| +15403|443333|30858|2|1|1276.31|0.00|0.04|A|F|1994-09-24|1994-09-02|1994-10-07|NONE|SHIP|le finally. carefully dogged dolphins cajo| +15403|85008|47510|3|39|38727.00|0.08|0.07|A|F|1994-07-25|1994-09-09|1994-07-31|NONE|REG AIR|ely bold pint| +15403|727164|14707|4|39|46454.07|0.06|0.06|A|F|1994-11-18|1994-10-07|1994-11-30|COLLECT COD|REG AIR|es boost. careful| +15404|893003|43004|1|37|36850.52|0.03|0.06|N|O|1996-06-02|1996-07-10|1996-06-28|TAKE BACK RETURN|MAIL|ound the slyly bold pinto beans; furi| +15404|684875|9902|2|44|81832.96|0.03|0.03|N|O|1996-05-01|1996-06-26|1996-05-30|TAKE BACK RETURN|MAIL|al packages. carefully final f| +15404|682670|20210|3|3|4957.92|0.04|0.00|N|O|1996-06-19|1996-06-30|1996-07-05|DELIVER IN PERSON|FOB|lithely specia| +15404|621869|46894|4|37|66260.71|0.08|0.06|N|O|1996-08-08|1996-06-18|1996-09-05|NONE|REG AIR|ly unusual foxes a| +15404|736802|11831|5|30|55163.10|0.07|0.03|N|O|1996-08-09|1996-06-25|1996-08-12|DELIVER IN PERSON|RAIL|ke blithely ab| +15404|428608|28609|6|21|32268.18|0.04|0.02|N|O|1996-07-10|1996-07-11|1996-07-25|NONE|AIR|ly regular packages nag blithely| +15404|601501|39038|7|45|63111.15|0.05|0.02|N|O|1996-08-03|1996-07-09|1996-08-26|DELIVER IN PERSON|REG AIR|are blithely bold dep| +15405|411873|36890|1|18|32127.30|0.05|0.03|A|F|1992-07-07|1992-06-09|1992-07-13|TAKE BACK RETURN|AIR| furiously special reques| +15406|142012|4515|1|1|1054.01|0.01|0.05|A|F|1995-01-31|1995-03-04|1995-02-24|DELIVER IN PERSON|FOB|. furiously bold accou| +15407|553902|41436|1|23|44985.24|0.03|0.03|A|F|1994-01-18|1993-12-13|1994-02-03|TAKE BACK RETURN|REG AIR|ly. pending packages after the f| +15407|426571|14096|2|5|7487.75|0.04|0.07|R|F|1993-11-29|1993-11-25|1993-11-30|NONE|AIR|. bold packages after the quickl| +15432|565017|15018|1|26|28131.74|0.06|0.07|A|F|1992-06-13|1992-06-05|1992-06-22|TAKE BACK RETURN|TRUCK|ly busy esc| +15432|228481|3490|2|33|46512.51|0.07|0.01|A|F|1992-04-28|1992-05-15|1992-05-09|NONE|SHIP|usly regular packages h| +15432|68466|5970|3|45|64550.70|0.02|0.05|R|F|1992-06-21|1992-05-26|1992-07-19|TAKE BACK RETURN|AIR|unts. ironic instructions acc| +15432|698018|10532|4|39|39623.22|0.10|0.02|A|F|1992-07-09|1992-06-02|1992-07-24|NONE|MAIL|lites are about the slyly unusual acco| +15432|585660|35661|5|40|69825.60|0.09|0.02|R|F|1992-04-29|1992-05-08|1992-05-24|TAKE BACK RETURN|AIR|ependencies affix. carefully express accoun| +15433|260960|10961|1|35|67233.25|0.05|0.08|N|O|1996-08-09|1996-09-15|1996-08-29|DELIVER IN PERSON|MAIL|y special accounts haggle. even| +15433|941897|16934|2|25|48471.25|0.04|0.08|N|O|1996-10-29|1996-08-01|1996-11-22|TAKE BACK RETURN|SHIP|ts. final foxes sl| +15433|451597|39125|3|45|69685.65|0.00|0.04|N|O|1996-07-31|1996-08-11|1996-08-12|TAKE BACK RETURN|TRUCK|und the slyly s| +15433|974802|37322|4|7|13137.32|0.00|0.05|N|O|1996-10-14|1996-09-22|1996-10-23|NONE|SHIP|gainst the quic| +15433|483753|21281|5|42|72942.66|0.07|0.05|N|O|1996-09-21|1996-09-13|1996-10-14|DELIVER IN PERSON|SHIP|dependencies. silentl| +15434|798643|36189|1|12|20899.32|0.08|0.04|N|O|1997-08-24|1997-09-17|1997-09-16|DELIVER IN PERSON|RAIL|lyly final packages. foxes solve f| +15434|788704|1220|2|39|69914.13|0.00|0.01|N|O|1997-09-13|1997-09-20|1997-09-20|NONE|AIR|ter the pen| +15434|744573|32116|3|40|64701.60|0.01|0.06|N|O|1997-10-21|1997-09-24|1997-11-09|TAKE BACK RETURN|SHIP|y against the carefully pendi| +15434|26590|39091|4|43|65213.37|0.06|0.02|N|O|1997-08-09|1997-09-30|1997-08-16|DELIVER IN PERSON|SHIP|al packages detect furi| +15434|886147|48665|5|42|47590.20|0.00|0.06|N|O|1997-09-21|1997-09-10|1997-09-27|TAKE BACK RETURN|AIR|ongside of the requests integrat| +15434|463705|38724|6|1|1668.68|0.05|0.05|N|O|1997-10-18|1997-08-26|1997-10-31|DELIVER IN PERSON|MAIL|gular reque| +15434|478051|40561|7|10|10290.30|0.07|0.07|N|O|1997-10-10|1997-08-14|1997-10-20|TAKE BACK RETURN|TRUCK|ily after the carefully pendi| +15435|593187|30721|1|38|48646.08|0.09|0.03|N|O|1996-11-22|1996-10-19|1996-12-11|DELIVER IN PERSON|REG AIR|. blithely ironic requests boost fu| +15435|689502|14529|2|31|46235.57|0.04|0.04|N|O|1996-10-22|1996-11-11|1996-11-01|NONE|TRUCK|ly. quickly pending deposi| +15435|457926|7927|3|10|18839.00|0.03|0.05|N|O|1996-10-26|1996-11-09|1996-10-28|TAKE BACK RETURN|MAIL|eposits. even requests sl| +15435|361480|11481|4|5|7707.35|0.07|0.00|N|O|1996-10-25|1996-10-03|1996-11-20|NONE|RAIL|ealms integrate slyly above | +15435|386200|23722|5|30|38585.70|0.08|0.01|N|O|1996-09-30|1996-10-21|1996-10-05|TAKE BACK RETURN|SHIP|quests. fluffi| +15435|851759|14277|6|23|39346.33|0.04|0.05|N|O|1996-09-18|1996-10-24|1996-10-14|COLLECT COD|AIR|ns. ironic, special pinto beans maint| +15435|505103|42634|7|22|24377.76|0.06|0.02|N|O|1996-10-29|1996-10-22|1996-11-23|DELIVER IN PERSON|RAIL|ily at the carefully final | +15436|251294|26305|1|46|57282.88|0.08|0.00|N|O|1996-10-23|1996-09-16|1996-11-21|NONE|REG AIR|uests. blithely unusual patterns nag slyly| +15436|490647|15666|2|26|42578.12|0.07|0.02|N|O|1996-09-29|1996-08-01|1996-10-02|COLLECT COD|RAIL|gular accounts sleep abo| +15436|289972|39973|3|15|29429.40|0.05|0.07|N|O|1996-06-29|1996-08-27|1996-07-09|DELIVER IN PERSON|AIR|es are blithely special packages. perman| +15436|550873|25896|4|42|80801.70|0.04|0.02|N|O|1996-08-30|1996-08-12|1996-08-31|DELIVER IN PERSON|REG AIR|cajole closely. final, express requ| +15436|515279|2810|5|46|59535.50|0.05|0.07|N|O|1996-09-18|1996-08-28|1996-09-25|TAKE BACK RETURN|TRUCK|ess deposits. furiously blithe requests nag| +15437|886850|11885|1|37|67961.97|0.02|0.05|R|F|1993-09-16|1993-09-10|1993-10-10|NONE|AIR|ial instructions haggle furiousl| +15437|279628|17144|2|45|72342.45|0.00|0.03|R|F|1993-10-23|1993-09-15|1993-10-24|NONE|RAIL|uriously ironic pearls integrate slyly| +15437|706002|43545|3|48|48382.56|0.08|0.05|R|F|1993-10-11|1993-09-11|1993-10-15|NONE|MAIL| slyly regular instructions print. thin| +15437|773214|23215|4|21|27030.78|0.07|0.07|A|F|1993-10-14|1993-10-12|1993-11-02|DELIVER IN PERSON|MAIL|st the blithely pending deposits. q| +15437|395375|20390|5|13|19114.68|0.08|0.08|A|F|1993-11-17|1993-09-22|1993-11-29|TAKE BACK RETURN|FOB|unusual packages. ironic asym| +15437|56747|6748|6|2|3407.48|0.00|0.08|A|F|1993-09-21|1993-09-20|1993-10-16|COLLECT COD|FOB|icing pinto beans. even ideas | +15437|744712|32255|7|7|12296.76|0.09|0.01|R|F|1993-09-21|1993-09-16|1993-10-13|COLLECT COD|MAIL|wake. foxes kindle blithely. carefull| +15438|371887|21888|1|5|9794.35|0.09|0.01|N|O|1996-05-27|1996-07-24|1996-06-04|NONE|TRUCK|r packages wa| +15439|35725|48226|1|20|33214.40|0.10|0.07|A|F|1994-11-18|1994-11-03|1994-12-01|DELIVER IN PERSON|REG AIR|ter the slyl| +15439|422951|47968|2|7|13117.51|0.07|0.05|R|F|1994-11-20|1994-12-18|1994-11-25|DELIVER IN PERSON|TRUCK|bove the slyly final accoun| +15439|533114|45625|3|19|21794.71|0.07|0.06|A|F|1994-11-25|1994-11-19|1994-11-28|TAKE BACK RETURN|TRUCK|ts wake fur| +15439|38656|38657|4|31|49434.15|0.06|0.00|R|F|1994-12-22|1994-12-07|1995-01-14|TAKE BACK RETURN|FOB| slyly according to the slyly even accounts| +15439|677846|2873|5|30|54714.30|0.08|0.06|R|F|1995-01-08|1994-12-22|1995-01-17|DELIVER IN PERSON|FOB|ounts. ideas cajole blithely. slyly regula| +15439|552055|14567|6|37|40960.11|0.07|0.00|R|F|1994-09-28|1994-12-03|1994-10-25|DELIVER IN PERSON|MAIL|quickly ironic requests. carefully per| +15439|376045|1060|7|20|22420.60|0.06|0.02|R|F|1995-01-03|1994-12-23|1995-01-06|COLLECT COD|AIR|ng to the pending asymptotes-- carefully re| +15464|185200|47704|1|9|11566.80|0.05|0.01|N|O|1995-09-15|1995-09-24|1995-10-04|TAKE BACK RETURN|TRUCK|xpress accounts| +15464|653415|15929|2|47|64313.86|0.04|0.08|N|O|1995-10-26|1995-08-26|1995-11-07|NONE|AIR|lites sleep carefully about the b| +15464|943079|43080|3|45|50491.35|0.02|0.03|N|O|1995-09-05|1995-09-01|1995-10-05|NONE|MAIL|d gifts. dogged platelets cajole furiousl| +15465|204836|42349|1|2|3481.64|0.02|0.00|N|O|1995-07-20|1995-06-02|1995-07-21|NONE|TRUCK|efully pendi| +15465|670033|7573|2|39|39117.00|0.02|0.04|N|O|1995-08-01|1995-06-29|1995-08-03|TAKE BACK RETURN|TRUCK|lar, regular deposits. quickly regular inst| +15465|239376|14385|3|23|30253.28|0.03|0.08|N|F|1995-06-16|1995-06-27|1995-07-08|TAKE BACK RETURN|TRUCK|platelets are a| +15465|192123|17130|4|48|58325.76|0.06|0.08|R|F|1995-05-28|1995-07-03|1995-06-13|DELIVER IN PERSON|REG AIR|timents wake ac| +15465|10951|10952|5|15|27929.25|0.02|0.00|N|F|1995-05-30|1995-06-29|1995-06-19|NONE|REG AIR|lithely ironic foxes. carefully special t| +15466|191754|16761|1|43|79367.25|0.06|0.08|A|F|1994-01-03|1994-02-25|1994-01-23|COLLECT COD|RAIL|s. furiously even accounts detect fu| +15466|800828|25861|2|7|12101.46|0.01|0.00|R|F|1994-04-07|1994-03-21|1994-04-15|TAKE BACK RETURN|TRUCK|uffily regular instruction| +15466|515022|2553|3|13|13481.00|0.08|0.04|A|F|1994-01-09|1994-03-12|1994-02-03|NONE|REG AIR| slyly regular dependencies. blithel| +15466|967649|42688|4|49|84113.40|0.06|0.03|A|F|1994-01-28|1994-02-10|1994-02-02|DELIVER IN PERSON|RAIL|! furiously f| +15466|274524|37030|5|47|70429.97|0.04|0.06|R|F|1994-03-07|1994-03-08|1994-03-10|COLLECT COD|REG AIR|ter the final requests. accounts along| +15466|923916|23917|6|7|13579.09|0.08|0.02|R|F|1994-03-29|1994-03-02|1994-04-27|DELIVER IN PERSON|AIR|ickly pending package| +15467|676263|26264|1|5|6196.15|0.06|0.08|R|F|1993-06-28|1993-06-28|1993-07-16|TAKE BACK RETURN|REG AIR|deas haggle. carefully express theodolites | +15467|946931|34486|2|10|19778.90|0.10|0.02|R|F|1993-06-05|1993-06-21|1993-06-25|COLLECT COD|RAIL|leep carefully. qui| +15468|64953|39956|1|40|76718.00|0.03|0.00|R|F|1994-11-26|1994-11-18|1994-12-22|COLLECT COD|RAIL|y even accounts haggle. careful| +15468|650895|13409|2|12|22150.32|0.08|0.00|A|F|1994-12-25|1994-11-05|1995-01-05|DELIVER IN PERSON|RAIL|n, special excuses wake above th| +15468|590799|28333|3|2|3779.54|0.06|0.06|A|F|1994-09-27|1994-11-09|1994-10-17|TAKE BACK RETURN|FOB|le. fluffily ironic instructi| +15468|545824|20845|4|10|18698.00|0.03|0.03|A|F|1994-09-10|1994-10-01|1994-10-02|TAKE BACK RETURN|RAIL|refully ironic somas. carefully final p| +15469|852409|2410|1|34|46286.24|0.01|0.05|N|O|1995-10-23|1995-11-02|1995-11-15|COLLECT COD|AIR|es. express requests do| +15469|435058|47567|2|9|8937.27|0.10|0.02|N|O|1995-10-14|1995-11-14|1995-10-31|NONE|SHIP|s wake. bold, bold| +15470|685747|48261|1|30|51981.30|0.04|0.03|N|O|1998-08-31|1998-08-26|1998-09-13|TAKE BACK RETURN|RAIL|ly even requests boost alongside of the c| +15470|343291|43292|2|13|17345.64|0.01|0.00|N|O|1998-06-13|1998-08-31|1998-07-09|COLLECT COD|TRUCK|lly bold packages s| +15470|678903|41417|3|16|30109.92|0.03|0.08|N|O|1998-08-14|1998-08-28|1998-08-22|TAKE BACK RETURN|MAIL|ng to the carefully unusual pla| +15470|316919|4438|4|19|36782.10|0.10|0.04|N|O|1998-09-09|1998-07-17|1998-09-14|TAKE BACK RETURN|AIR|eposits. special, | +15470|449831|49832|5|31|55205.11|0.04|0.03|N|O|1998-07-06|1998-08-10|1998-07-19|COLLECT COD|AIR|ons. pains a| +15470|304707|29720|6|17|29098.73|0.00|0.07|N|O|1998-06-05|1998-09-01|1998-06-14|COLLECT COD|REG AIR|l sheaves. final instructio| +15471|910565|35602|1|36|56718.72|0.05|0.05|A|F|1992-08-21|1992-07-28|1992-09-18|DELIVER IN PERSON|TRUCK|l requests. blithely special packages c| +15471|858442|8443|2|32|44812.80|0.05|0.05|A|F|1992-06-29|1992-08-01|1992-07-04|DELIVER IN PERSON|AIR|tes. furiou| +15496|438091|25616|1|46|47337.22|0.02|0.04|R|F|1994-07-04|1994-09-13|1994-07-07|DELIVER IN PERSON|AIR|slyly packages. deposits | +15496|995200|7720|2|31|40149.96|0.03|0.03|A|F|1994-10-03|1994-08-29|1994-10-26|DELIVER IN PERSON|AIR|s. carefully express packages c| +15496|311190|11191|3|41|49248.38|0.08|0.01|A|F|1994-08-15|1994-08-27|1994-08-20|COLLECT COD|MAIL| according to| +15496|161846|11847|4|46|87760.64|0.02|0.05|R|F|1994-08-23|1994-08-07|1994-09-05|NONE|MAIL|uickly sil| +15496|134888|9893|5|40|76915.20|0.00|0.06|A|F|1994-09-29|1994-08-04|1994-10-20|COLLECT COD|AIR|the permanently regular accou| +15496|57638|32641|6|40|63825.20|0.10|0.08|R|F|1994-07-30|1994-08-28|1994-07-31|DELIVER IN PERSON|AIR|requests. carefully busy a| +15497|348448|23461|1|31|46389.33|0.05|0.05|A|F|1993-07-06|1993-07-18|1993-07-10|DELIVER IN PERSON|MAIL| wake busily quickly| +15497|357852|32867|2|28|53475.52|0.04|0.00|R|F|1993-06-23|1993-07-28|1993-07-08|DELIVER IN PERSON|REG AIR|furiously unusual ideas a| +15497|415825|28334|3|23|40038.40|0.08|0.08|R|F|1993-09-07|1993-07-21|1993-09-17|COLLECT COD|REG AIR|sits haggle| +15498|461904|11905|1|48|89562.24|0.05|0.00|R|F|1994-02-23|1994-03-20|1994-02-27|COLLECT COD|REG AIR| theodolites lose blithely unus| +15498|207697|32706|2|15|24070.20|0.00|0.06|R|F|1994-04-24|1994-03-20|1994-04-26|DELIVER IN PERSON|AIR| always enticing account| +15498|760012|22528|3|30|32159.40|0.05|0.07|A|F|1994-03-27|1994-05-09|1994-04-09|COLLECT COD|REG AIR|carefully enticin| +15498|516241|41262|4|27|33944.94|0.04|0.02|R|F|1994-03-06|1994-03-23|1994-03-08|COLLECT COD|TRUCK|unusual packages nag furiously across the| +15498|455331|42859|5|2|2572.62|0.05|0.08|R|F|1994-04-28|1994-04-12|1994-05-21|COLLECT COD|FOB|ld packages. packages are| +15498|739419|1934|6|43|62710.34|0.08|0.08|R|F|1994-03-11|1994-03-30|1994-03-24|TAKE BACK RETURN|AIR|counts sleep carefully slyly regul| +15498|401830|1831|7|28|48490.68|0.02|0.00|A|F|1994-04-29|1994-04-25|1994-05-16|COLLECT COD|RAIL|ously regular escapades. bold, regular in| +15499|554886|17398|1|16|31053.76|0.08|0.03|N|O|1996-04-18|1996-07-07|1996-04-27|DELIVER IN PERSON|TRUCK| dolphins according to the blithely ironic| +15499|963947|26467|2|4|8043.60|0.07|0.08|N|O|1996-08-07|1996-07-01|1996-08-10|TAKE BACK RETURN|RAIL|ets cajole. fluffily unusual instructions | +15499|49880|12381|3|32|58556.16|0.00|0.01|N|O|1996-07-10|1996-07-01|1996-08-09|COLLECT COD|MAIL|s wake furiously. deposits cajole special p| +15500|391550|41551|1|36|59095.44|0.03|0.01|N|O|1996-07-03|1996-07-28|1996-07-22|NONE|AIR|onic asymptotes. regular dep| +15501|271384|8900|1|24|32528.88|0.09|0.02|N|O|1997-03-17|1997-01-28|1997-04-02|DELIVER IN PERSON|SHIP|ccounts run slyly according to the fluff| +15501|140980|15985|2|37|74776.26|0.02|0.07|N|O|1996-12-20|1997-02-21|1996-12-23|NONE|RAIL| to the fluffily express packages. furio| +15502|439710|39711|1|4|6598.76|0.01|0.04|A|F|1992-03-18|1992-03-14|1992-03-20|NONE|SHIP|ld furiously according to th| +15502|193422|43423|2|30|45462.60|0.06|0.05|A|F|1992-02-14|1992-05-05|1992-02-23|COLLECT COD|MAIL|uests. ideas un| +15502|827158|14707|3|33|35808.63|0.01|0.03|A|F|1992-02-10|1992-04-21|1992-03-05|DELIVER IN PERSON|REG AIR|lyly unusu| +15503|939850|2369|1|29|54804.49|0.08|0.01|N|O|1998-04-15|1998-03-16|1998-05-12|NONE|TRUCK|lar accounts. bold dependencies doubt. bl| +15503|58507|8508|2|12|17586.00|0.07|0.01|N|O|1998-02-28|1998-02-22|1998-03-05|TAKE BACK RETURN|REG AIR| blithely to the fluffily pending| +15503|323278|48291|3|16|20820.16|0.09|0.00|N|O|1998-04-07|1998-02-23|1998-04-15|COLLECT COD|SHIP|y final sauternes. dep| +15503|316892|4411|4|33|62993.04|0.00|0.01|N|O|1998-02-12|1998-04-06|1998-03-08|TAKE BACK RETURN|AIR|ggle against the blithely pending | +15528|564125|39148|1|16|19025.60|0.02|0.00|N|O|1996-01-25|1996-01-16|1996-02-06|NONE|RAIL|according to the bold| +15528|242189|17198|2|14|15836.38|0.01|0.05|N|O|1995-12-30|1996-01-06|1996-01-29|TAKE BACK RETURN|AIR| deposits sleep blithel| +15528|460991|23501|3|1|1951.97|0.07|0.01|N|O|1996-02-22|1996-01-17|1996-03-10|DELIVER IN PERSON|MAIL|kly special deposits ha| +15528|869234|6786|4|37|44518.03|0.02|0.04|N|O|1995-12-20|1996-01-02|1996-01-16|DELIVER IN PERSON|RAIL|. even accounts boost slyly | +15528|215147|40156|5|17|18056.21|0.05|0.06|N|O|1995-12-02|1996-02-19|1995-12-20|COLLECT COD|RAIL|ackages nod carefully quickly unusual plate| +15528|959169|9170|6|1|1228.12|0.01|0.06|N|O|1996-01-15|1996-01-14|1996-02-05|DELIVER IN PERSON|RAIL|ts; furiously ironic accounts affix| +15528|746182|46183|7|43|52810.45|0.01|0.01|N|O|1996-02-17|1996-01-04|1996-03-05|COLLECT COD|MAIL|ly regular requests integrate ruthlessly.| +15529|65780|28282|1|12|20949.36|0.03|0.08|A|F|1995-03-05|1995-03-20|1995-03-07|DELIVER IN PERSON|REG AIR| beans? regular pinto b| +15529|554260|41794|2|7|9199.68|0.09|0.08|R|F|1995-05-22|1995-03-20|1995-06-06|COLLECT COD|MAIL|t among the si| +15529|446066|33591|3|43|43517.72|0.04|0.01|A|F|1995-04-26|1995-04-15|1995-05-16|NONE|FOB| requests. unusual accounts are alon| +15529|21781|21782|4|39|66408.42|0.07|0.06|R|F|1995-04-26|1995-05-13|1995-05-20|TAKE BACK RETURN|TRUCK|aggle carefully blithely regular | +15529|64680|27182|5|4|6578.72|0.07|0.03|A|F|1995-03-26|1995-04-27|1995-04-18|TAKE BACK RETURN|FOB|ts. express frets sleep fluffily along| +15529|60041|10042|6|11|11011.44|0.00|0.05|A|F|1995-04-15|1995-05-05|1995-05-01|TAKE BACK RETURN|REG AIR|, regular attainments; fur| +15529|102727|40234|7|38|65729.36|0.06|0.07|A|F|1995-05-24|1995-05-10|1995-06-11|NONE|TRUCK|ckly according to the expr| +15530|531088|18619|1|37|41405.22|0.10|0.02|N|O|1997-09-26|1997-09-02|1997-10-15|DELIVER IN PERSON|AIR|as. final requests| +15530|990686|15725|2|37|65735.68|0.08|0.00|N|O|1997-07-13|1997-09-10|1997-07-31|COLLECT COD|RAIL|tions use blit| +15530|448166|48167|3|2|2228.28|0.06|0.02|N|O|1997-09-08|1997-08-24|1997-09-23|TAKE BACK RETURN|MAIL|nag furiously against | +15530|313087|606|4|34|37402.38|0.05|0.01|N|O|1997-08-27|1997-10-01|1997-09-07|NONE|RAIL|es haggle carefully. never bold| +15530|45073|7574|5|50|50903.50|0.00|0.02|N|O|1997-10-23|1997-08-08|1997-11-17|DELIVER IN PERSON|TRUCK|tes integrate fluffily carefully regular| +15531|244941|44942|1|30|56577.90|0.10|0.02|R|F|1995-03-11|1995-01-20|1995-04-02|NONE|SHIP|eep blithely ironic the| +15531|708330|20845|2|22|29442.60|0.05|0.02|R|F|1995-03-30|1995-01-12|1995-04-07|DELIVER IN PERSON|AIR|ublate furiously within the carefully iron| +15531|889259|1777|3|4|4992.84|0.10|0.00|R|F|1994-12-28|1995-02-03|1995-01-12|NONE|RAIL|egular packages. flu| +15531|761296|36327|4|47|63791.22|0.00|0.03|A|F|1995-01-21|1995-01-12|1995-02-11|COLLECT COD|TRUCK|ular instructi| +15531|100577|578|5|47|74145.79|0.06|0.04|A|F|1995-03-24|1995-03-05|1995-04-02|TAKE BACK RETURN|REG AIR|xes affix ironically furiousl| +15531|389713|2221|6|25|45067.50|0.01|0.02|A|F|1995-02-07|1995-01-15|1995-02-28|COLLECT COD|TRUCK|final pinto beans. thin accounts do wake| +15531|901895|14414|7|9|17071.65|0.09|0.01|A|F|1995-04-10|1995-01-10|1995-04-11|DELIVER IN PERSON|SHIP|ckages. slyly express in| +15532|142012|42013|1|11|11594.11|0.02|0.02|N|O|1996-01-16|1996-02-21|1996-01-21|COLLECT COD|RAIL|ructions run even deposits. express reque| +15532|786178|48694|2|2|2528.28|0.07|0.07|N|O|1995-12-21|1996-01-28|1996-01-04|COLLECT COD|TRUCK|ructions. ironic foxes boost furiousl| +15533|434479|9496|1|21|29682.45|0.06|0.06|A|F|1992-09-14|1992-09-04|1992-10-12|NONE|MAIL|w according to | +15533|284660|22176|2|23|37826.95|0.02|0.03|R|F|1992-10-19|1992-08-21|1992-10-22|TAKE BACK RETURN|RAIL|he unusual pa| +15533|274837|49848|3|16|28989.12|0.03|0.05|R|F|1992-07-31|1992-09-20|1992-08-01|NONE|TRUCK|resias cajole carefully above the caref| +15533|179832|4839|4|1|1911.83|0.08|0.03|A|F|1992-07-30|1992-09-06|1992-08-15|NONE|RAIL|slyly permanent ideas. furiously| +15533|421835|9360|5|4|7027.24|0.07|0.06|R|F|1992-08-26|1992-07-24|1992-09-18|NONE|FOB|ches breach. fl| +15534|886531|24083|1|9|13657.41|0.01|0.05|R|F|1995-05-02|1995-03-22|1995-05-06|TAKE BACK RETURN|SHIP|arefully p| +15535|446707|34232|1|5|8268.40|0.09|0.04|N|O|1998-05-04|1998-07-23|1998-05-31|DELIVER IN PERSON|REG AIR|fter the slyly even deposits| +15535|788486|13517|2|4|6297.80|0.07|0.06|N|O|1998-05-18|1998-06-24|1998-05-28|COLLECT COD|TRUCK|al requests detect s| +15535|73677|11181|3|16|26410.72|0.04|0.06|N|O|1998-07-27|1998-06-08|1998-07-30|TAKE BACK RETURN|TRUCK|atelets haggle carefully. stealthy reque| +15535|279364|41870|4|11|14776.85|0.09|0.03|N|O|1998-08-18|1998-06-06|1998-09-14|NONE|RAIL|nder accounts. slyly final pain| +15535|254614|42130|5|16|25097.60|0.06|0.07|N|O|1998-05-19|1998-06-21|1998-06-18|DELIVER IN PERSON|AIR|ar accounts. patterns are am| +15535|288527|26043|6|24|36372.24|0.03|0.01|N|O|1998-06-06|1998-07-27|1998-06-21|COLLECT COD|TRUCK|al excuses. furiously fin| +15560|538514|26045|1|19|29497.31|0.09|0.08|N|O|1995-09-22|1995-09-25|1995-10-22|NONE|SHIP|special deposits sleep. slyly final | +15560|788624|13655|2|2|3425.18|0.09|0.02|N|O|1995-07-21|1995-08-03|1995-07-24|NONE|REG AIR|orges. instruc| +15560|393397|5905|3|37|55144.06|0.08|0.07|N|O|1995-08-07|1995-08-04|1995-08-21|TAKE BACK RETURN|TRUCK|uests wake daringly bl| +15560|816694|29211|4|26|41876.90|0.09|0.03|N|O|1995-09-21|1995-08-25|1995-09-27|COLLECT COD|RAIL| regular requests. even, pending | +15560|160902|35909|5|40|78516.00|0.03|0.04|N|O|1995-09-04|1995-09-18|1995-09-13|TAKE BACK RETURN|MAIL|hely silent accounts nag| +15560|270329|45340|6|39|50673.09|0.06|0.07|N|O|1995-07-10|1995-08-05|1995-08-03|TAKE BACK RETURN|TRUCK|nusual packages. ironic| +15560|411115|11116|7|40|41043.60|0.02|0.08|N|O|1995-07-07|1995-09-27|1995-07-20|COLLECT COD|FOB|quests boost after the | +15561|603423|3424|1|36|47750.04|0.08|0.06|N|O|1997-08-18|1997-07-26|1997-09-05|COLLECT COD|FOB|slyly thin deposits wake unusua| +15561|718781|31296|2|16|28796.00|0.00|0.00|N|O|1997-09-30|1997-09-15|1997-10-14|COLLECT COD|SHIP|thely final p| +15561|537747|37748|3|8|14277.76|0.02|0.08|N|O|1997-07-24|1997-08-06|1997-07-31|NONE|AIR|y ruthless accounts use slyly| +15561|912791|12792|4|2|3607.50|0.10|0.01|N|O|1997-08-24|1997-09-09|1997-08-30|NONE|TRUCK|refully. final pint| +15561|265873|40884|5|1|1838.86|0.07|0.01|N|O|1997-07-20|1997-08-24|1997-08-11|NONE|MAIL|. blithely even theodolites wake slyl| +15562|70080|32582|1|39|40953.12|0.02|0.08|N|O|1996-06-13|1996-06-08|1996-07-01|TAKE BACK RETURN|SHIP|, special accounts cajole careful| +15562|823197|23198|2|33|36964.95|0.10|0.03|N|O|1996-05-16|1996-06-18|1996-06-13|COLLECT COD|MAIL| foxes. quickly exp| +15562|459451|21961|3|16|22566.88|0.06|0.01|N|O|1996-04-22|1996-07-14|1996-04-29|DELIVER IN PERSON|MAIL|sauternes. final packages are qui| +15563|975596|13154|1|26|43460.30|0.08|0.07|N|O|1998-06-03|1998-06-17|1998-06-20|DELIVER IN PERSON|SHIP|leep carefully during the ironic, bol| +15563|831054|18603|2|18|17730.18|0.10|0.02|N|O|1998-07-04|1998-08-05|1998-08-02|DELIVER IN PERSON|TRUCK|haggle slyly afte| +15563|517850|17851|3|46|85920.18|0.00|0.05|N|O|1998-05-16|1998-06-21|1998-06-03|TAKE BACK RETURN|MAIL|kly bold accoun| +15563|489684|39685|4|49|82009.34|0.04|0.03|N|O|1998-09-05|1998-07-14|1998-09-19|TAKE BACK RETURN|RAIL|ag above the regular, | +15563|117179|42184|5|23|27511.91|0.04|0.05|N|O|1998-07-25|1998-08-06|1998-08-20|DELIVER IN PERSON|FOB| stealthy ideas use carefully. fu| +15563|420102|20103|6|23|23507.84|0.04|0.00|N|O|1998-09-05|1998-06-17|1998-09-28|DELIVER IN PERSON|SHIP|ts maintain th| +15564|185287|47791|1|28|38423.84|0.05|0.05|R|F|1992-03-18|1992-04-16|1992-04-17|NONE|TRUCK|sely special deposits. | +15564|103642|3643|2|26|42786.64|0.05|0.05|R|F|1992-06-20|1992-03-28|1992-07-06|NONE|FOB|s against the quickly regular Tiresias use| +15564|895222|7740|3|32|38949.76|0.02|0.01|A|F|1992-03-09|1992-03-26|1992-03-16|NONE|RAIL| the special, ironi| +15564|979497|17055|4|20|31529.00|0.03|0.08|A|F|1992-05-10|1992-05-11|1992-05-17|TAKE BACK RETURN|FOB| requests breach furiously. busy theod| +15564|390695|15710|5|26|46427.68|0.07|0.08|A|F|1992-04-09|1992-05-11|1992-04-23|COLLECT COD|AIR|nusual, express deposits haggle slyl| +15565|572221|34733|1|5|6466.00|0.00|0.07|A|F|1992-10-15|1992-12-26|1992-11-01|DELIVER IN PERSON|RAIL|uctions according to the quickly reg| +15566|403835|41360|1|23|39992.63|0.00|0.07|R|F|1992-07-26|1992-06-14|1992-08-18|COLLECT COD|SHIP|ly special acco| +15566|241802|4307|2|48|83701.92|0.02|0.01|R|F|1992-06-23|1992-06-15|1992-06-26|NONE|RAIL|rthogs cajole furiously ironic, regular | +15566|960847|10848|3|23|43879.40|0.06|0.03|A|F|1992-07-21|1992-06-23|1992-07-31|NONE|MAIL|ose, even grouches. express ideas ma| +15566|948519|23556|4|12|18809.64|0.03|0.01|R|F|1992-04-12|1992-05-30|1992-04-17|DELIVER IN PERSON|FOB|r the even, p| +15566|748429|35972|5|13|19206.07|0.05|0.07|R|F|1992-06-15|1992-05-15|1992-07-03|COLLECT COD|MAIL|instruction| +15566|844001|31550|6|36|34018.56|0.06|0.05|A|F|1992-05-04|1992-05-21|1992-05-08|TAKE BACK RETURN|MAIL|fts use fluffily around the caref| +15567|827330|27331|1|43|54063.47|0.05|0.00|N|O|1998-01-10|1998-02-24|1998-01-24|TAKE BACK RETURN|MAIL|usual accounts detect carefully regular, | +15567|930531|5568|2|42|65582.58|0.09|0.05|N|O|1998-03-26|1998-03-17|1998-03-27|TAKE BACK RETURN|REG AIR| instructions sleep| +15567|428659|3676|3|18|28577.34|0.01|0.05|N|O|1998-01-21|1998-02-26|1998-02-18|TAKE BACK RETURN|FOB|ironic pinto beans haggle above th| +15567|467692|17693|4|36|59748.12|0.06|0.03|N|O|1998-02-16|1998-03-03|1998-03-16|COLLECT COD|REG AIR|uriously e| +15567|488113|25641|5|15|16516.35|0.07|0.01|N|O|1998-01-24|1998-02-11|1998-01-31|NONE|REG AIR|. unusual, unusual dolphi| +15567|710594|23109|6|47|75414.32|0.10|0.05|N|O|1998-01-18|1998-03-04|1998-01-31|COLLECT COD|SHIP|ounts. slyly express packages caj| +15567|951405|26444|7|12|17476.32|0.07|0.08|N|O|1998-04-07|1998-02-19|1998-04-29|COLLECT COD|SHIP|oxes. bold, ironic| +15592|248667|11172|1|36|58163.40|0.02|0.07|N|O|1997-04-19|1997-04-09|1997-05-16|COLLECT COD|AIR| cajole fluff| +15592|331720|44227|2|27|47296.17|0.03|0.05|N|O|1997-05-04|1997-05-05|1997-05-17|COLLECT COD|RAIL|lyly. carefully | +15592|207949|7950|3|47|87275.71|0.09|0.02|N|O|1997-02-19|1997-03-25|1997-03-02|NONE|FOB|pinto beans are above the blith| +15592|995714|33272|4|37|66957.79|0.02|0.05|N|O|1997-03-05|1997-03-15|1997-03-15|TAKE BACK RETURN|FOB|ructions. slyly unusual excuses m| +15592|951024|1025|5|23|24724.54|0.04|0.01|N|O|1997-03-08|1997-04-13|1997-03-21|DELIVER IN PERSON|RAIL|ccounts wake blithely final pinto beans!| +15592|856151|18669|6|6|6642.66|0.05|0.05|N|O|1997-05-30|1997-03-15|1997-06-20|DELIVER IN PERSON|MAIL|e quickly requests. slyl| +15592|318667|6186|7|31|52255.15|0.01|0.07|N|O|1997-03-26|1997-04-20|1997-04-17|DELIVER IN PERSON|FOB|ithely ironic requests. ironic ins| +15593|825623|656|1|9|13937.22|0.05|0.02|R|F|1993-03-09|1993-01-16|1993-03-17|COLLECT COD|FOB|sly enticing accounts past t| +15593|237160|37161|2|37|40594.55|0.02|0.02|R|F|1993-03-12|1993-01-09|1993-03-15|DELIVER IN PERSON|RAIL|bold accounts| +15593|933644|46163|3|41|68781.60|0.02|0.06|R|F|1992-12-30|1993-01-08|1993-01-12|COLLECT COD|REG AIR|ilent accounts? ca| +15593|744432|19461|4|11|16240.40|0.10|0.05|A|F|1993-01-18|1993-01-16|1993-02-17|DELIVER IN PERSON|RAIL|unts. regular deposits lose furio| +15593|652500|27527|5|44|63908.68|0.01|0.06|R|F|1993-03-27|1993-01-11|1993-04-12|TAKE BACK RETURN|MAIL|. regular depo| +15594|253783|3784|1|37|64260.49|0.04|0.07|R|F|1994-03-21|1994-03-04|1994-03-28|COLLECT COD|RAIL|counts. bold requests sleep under the | +15594|315554|40567|2|45|70629.30|0.01|0.01|A|F|1994-04-08|1994-03-16|1994-04-29|COLLECT COD|AIR| furiously regular depend| +15594|515126|40147|3|36|41079.60|0.02|0.07|A|F|1994-02-10|1994-02-14|1994-02-16|TAKE BACK RETURN|SHIP|use quickly. furiously unusual excuses| +15595|67406|17407|1|16|21974.40|0.08|0.07|A|F|1992-08-09|1992-07-16|1992-08-18|TAKE BACK RETURN|RAIL|asymptotes. unusual, final ideas behin| +15595|891909|4427|2|30|57025.80|0.01|0.02|A|F|1992-07-23|1992-07-23|1992-07-27|COLLECT COD|MAIL|lphins detect quickly after the blith| +15596|222328|47337|1|26|32508.06|0.10|0.04|N|O|1997-11-23|1997-10-15|1997-12-06|COLLECT COD|TRUCK|he bravely| +15597|249311|36824|1|9|11342.70|0.04|0.08|N|O|1997-04-24|1997-04-11|1997-04-25|COLLECT COD|SHIP| slyly unusual platelets boost | +15597|161850|24354|2|34|65002.90|0.01|0.05|N|O|1997-03-16|1997-04-15|1997-04-13|DELIVER IN PERSON|AIR|platelets haggle unusual| +15598|165541|15542|1|4|6426.16|0.05|0.08|A|F|1993-09-29|1993-10-14|1993-10-25|TAKE BACK RETURN|MAIL| the silen| +15598|232362|7371|2|3|3883.05|0.06|0.08|A|F|1993-11-18|1993-09-09|1993-12-16|NONE|MAIL|carefully regular pinto beans are e| +15598|300041|37560|3|14|14574.42|0.10|0.00|R|F|1993-09-01|1993-09-05|1993-09-02|TAKE BACK RETURN|FOB|efully alongs| +15598|773834|23835|4|36|68680.80|0.09|0.07|A|F|1993-11-04|1993-10-02|1993-11-16|COLLECT COD|TRUCK|et sentiments. slyly reg| +15598|827330|2363|5|48|60349.92|0.08|0.07|A|F|1993-11-29|1993-09-05|1993-12-03|NONE|SHIP|r carefully. carefully e| +15598|931470|43989|6|39|58555.77|0.02|0.06|R|F|1993-08-24|1993-09-06|1993-09-12|NONE|FOB|n requests cajole qu| +15598|213194|707|7|12|13286.16|0.07|0.01|R|F|1993-11-30|1993-10-06|1993-12-16|NONE|RAIL|special forges. bold ideas haggle. final, | +15599|140330|40331|1|22|30147.26|0.04|0.05|N|O|1996-05-05|1996-05-16|1996-06-04|DELIVER IN PERSON|SHIP|pendencies. slyly regular t| +15599|526129|1150|2|10|11551.00|0.09|0.04|N|O|1996-06-12|1996-05-17|1996-07-05|DELIVER IN PERSON|RAIL|al deposits. asymptotes are fluffily q| +15599|642663|17688|3|30|48168.90|0.00|0.07|N|O|1996-06-22|1996-05-07|1996-06-28|NONE|AIR|ully regular packages ac| +15599|226507|26508|4|33|47305.17|0.06|0.07|N|O|1996-06-20|1996-06-26|1996-07-15|DELIVER IN PERSON|TRUCK|inos? slyly close | +15599|894021|31573|5|35|35524.30|0.01|0.07|N|O|1996-08-06|1996-07-01|1996-09-04|DELIVER IN PERSON|REG AIR|furiously fluffily iro| +15624|158861|21365|1|30|57595.80|0.00|0.04|N|O|1997-10-11|1997-10-03|1997-10-25|COLLECT COD|REG AIR|bold foxes. reque| +15624|971274|21275|2|28|37666.44|0.09|0.05|N|O|1997-09-02|1997-09-18|1997-09-19|TAKE BACK RETURN|RAIL|ts among the furiously final cour| +15624|186115|23625|3|16|19217.76|0.03|0.08|N|O|1997-07-26|1997-08-18|1997-08-21|TAKE BACK RETURN|AIR|ely even packag| +15624|34508|47009|4|17|24522.50|0.06|0.02|N|O|1997-09-06|1997-10-11|1997-10-04|COLLECT COD|TRUCK|p among the| +15624|974276|11834|5|27|36456.21|0.08|0.03|N|O|1997-09-12|1997-08-27|1997-10-10|DELIVER IN PERSON|MAIL|ial instructions against the the| +15625|282358|7369|1|21|28147.14|0.08|0.04|R|F|1993-12-31|1993-10-10|1994-01-17|NONE|TRUCK|posits. slyly special re| +15625|576282|13816|2|16|21732.16|0.05|0.07|R|F|1993-12-31|1993-10-18|1994-01-18|NONE|RAIL| final, pending packages hag| +15626|361200|36215|1|1|1261.19|0.03|0.05|A|F|1992-02-28|1992-03-04|1992-03-25|DELIVER IN PERSON|AIR|grate carefull| +15626|683968|21508|2|13|25375.09|0.01|0.01|R|F|1992-04-07|1992-03-16|1992-04-26|DELIVER IN PERSON|MAIL|y final multipliers. fluffily ironic accoun| +15626|449425|11934|3|5|6872.00|0.10|0.00|A|F|1992-03-05|1992-04-10|1992-03-22|COLLECT COD|REG AIR|ly bold accounts above | +15626|471027|8555|4|12|11976.00|0.04|0.04|A|F|1992-04-06|1992-04-16|1992-04-18|DELIVER IN PERSON|SHIP|ding accounts. slyly ironic ideas sle| +15626|537682|193|5|20|34393.20|0.04|0.03|A|F|1992-04-19|1992-04-23|1992-05-16|NONE|REG AIR|. furiously unusual theodolites amo| +15627|251604|39120|1|35|54445.65|0.10|0.06|N|O|1996-10-15|1996-08-11|1996-11-04|TAKE BACK RETURN|REG AIR|ns haggle carefully furiously unusual inst| +15627|694955|44956|2|1|1949.92|0.05|0.08|N|O|1996-09-24|1996-08-19|1996-09-25|TAKE BACK RETURN|REG AIR|uriously regula| +15627|104491|4492|3|15|22432.35|0.06|0.06|N|O|1996-08-12|1996-09-05|1996-08-31|COLLECT COD|REG AIR|oach furiously ironic instructions. bl| +15627|177578|15088|4|4|6622.28|0.04|0.02|N|O|1996-06-23|1996-09-09|1996-07-20|TAKE BACK RETURN|TRUCK|. blithely final pinto beans nag alongside | +15627|552155|2156|5|17|20521.21|0.04|0.00|N|O|1996-10-01|1996-09-16|1996-10-26|DELIVER IN PERSON|AIR|closely regular foxes | +15628|192339|29849|1|24|34351.92|0.08|0.05|R|F|1994-08-21|1994-07-27|1994-08-26|NONE|REG AIR| pending, even dolphins boost. slyly regu| +15629|822796|35313|1|38|65312.50|0.01|0.02|R|F|1995-04-05|1995-04-22|1995-04-16|COLLECT COD|RAIL|xpress multipli| +15629|725886|915|2|33|63091.05|0.03|0.07|N|O|1995-07-07|1995-05-07|1995-07-24|DELIVER IN PERSON|REG AIR|the, slow attainments| +15629|955448|17968|3|43|64646.20|0.01|0.01|A|F|1995-03-31|1995-04-28|1995-04-30|NONE|AIR|furiously fin| +15630|101646|1647|1|19|31305.16|0.07|0.00|R|F|1994-04-21|1994-03-21|1994-04-24|TAKE BACK RETURN|RAIL|ly regular deposit| +15630|360262|47784|2|2|2644.50|0.10|0.06|A|F|1994-01-15|1994-02-24|1994-01-22|DELIVER IN PERSON|RAIL|ular dependencies use across the slyly eve| +15631|331479|18998|1|38|57397.48|0.01|0.05|A|F|1995-01-12|1995-01-21|1995-02-08|DELIVER IN PERSON|REG AIR|ng notornis according to the| +15631|161740|24244|2|45|81078.30|0.08|0.08|R|F|1995-03-20|1995-01-19|1995-04-01|TAKE BACK RETURN|SHIP| about the slyly regular ideas.| +15631|353857|28872|3|18|34395.12|0.07|0.00|A|F|1995-03-11|1995-01-29|1995-03-31|COLLECT COD|REG AIR|deposits. fin| +15631|266265|41276|4|24|29550.00|0.08|0.04|R|F|1995-04-01|1995-01-13|1995-04-25|TAKE BACK RETURN|MAIL|dogged, pending foxes | +15631|113897|1404|5|47|89811.83|0.10|0.04|R|F|1995-01-02|1995-02-20|1995-01-27|COLLECT COD|FOB|ions haggle regular | +15631|255226|17732|6|22|25986.62|0.03|0.04|R|F|1995-02-11|1995-03-06|1995-03-12|TAKE BACK RETURN|SHIP|ding to the fluffily s| +15656|311711|49230|1|34|58571.80|0.10|0.07|R|F|1992-08-28|1992-07-28|1992-09-06|TAKE BACK RETURN|FOB|beans sublate? slyly even foxes was | +15656|911617|36654|2|49|79799.93|0.07|0.01|A|F|1992-08-11|1992-07-17|1992-08-14|DELIVER IN PERSON|RAIL|ole final, silent pac| +15657|638128|641|1|31|33048.79|0.07|0.06|N|O|1996-02-05|1996-03-12|1996-03-03|DELIVER IN PERSON|RAIL|en deposits. pending, unusu| +15657|10193|22694|2|6|6619.14|0.03|0.06|N|O|1996-03-01|1996-03-21|1996-03-29|TAKE BACK RETURN|RAIL| fluffily about the carefully| +15658|895572|33124|1|12|18810.36|0.02|0.06|N|O|1998-06-29|1998-05-17|1998-07-28|TAKE BACK RETURN|TRUCK|ully silent, expre| +15659|524520|37031|1|45|69502.50|0.04|0.04|R|F|1993-08-27|1993-07-05|1993-09-12|COLLECT COD|SHIP|tly even instructions boost blithely a| +15660|35765|48266|1|2|3401.52|0.08|0.03|A|F|1993-10-21|1993-11-27|1993-11-18|COLLECT COD|SHIP| pending deposit| +15660|88975|26479|2|3|5891.91|0.00|0.02|R|F|1993-12-14|1993-12-19|1994-01-04|NONE|TRUCK|thely ironic ideas about the qu| +15660|398885|48886|3|20|39677.40|0.08|0.05|A|F|1993-12-28|1993-11-29|1994-01-09|TAKE BACK RETURN|REG AIR|o beans haggle furiously along the fluffily| +15660|51574|14076|4|12|18306.84|0.00|0.08|A|F|1993-10-03|1993-12-14|1993-10-05|DELIVER IN PERSON|FOB|s the carefully regular packages. bl| +15660|804073|4074|5|7|6839.21|0.07|0.06|A|F|1994-01-18|1993-11-26|1994-01-26|COLLECT COD|SHIP|ggle. regular, | +15660|43959|18960|6|44|83729.80|0.10|0.05|A|F|1993-12-04|1993-11-09|1993-12-11|NONE|SHIP|tegrate sly| +15660|802802|15319|7|50|85238.00|0.10|0.05|A|F|1993-12-29|1993-11-14|1994-01-06|NONE|FOB|ges nag blithely according | +15661|682040|44554|1|3|3066.03|0.07|0.02|A|F|1995-05-04|1995-03-11|1995-05-05|NONE|AIR|equests sleep dogged, regular foxes| +15661|40821|40822|2|2|3523.64|0.10|0.05|A|F|1995-05-15|1995-03-07|1995-06-02|TAKE BACK RETURN|TRUCK|odolites. express requests wake among | +15661|67215|4719|3|12|14186.52|0.04|0.04|R|F|1995-02-22|1995-02-18|1995-03-22|NONE|REG AIR|. furiously regul| +15661|678738|28739|4|1|1716.70|0.01|0.01|R|F|1995-03-29|1995-04-06|1995-04-28|NONE|REG AIR| ideas wake slyly unusual instructions.| +15662|291442|3948|1|23|32968.89|0.03|0.04|N|O|1997-03-30|1997-02-09|1997-04-24|TAKE BACK RETURN|REG AIR| against the ca| +15662|255175|17681|2|2|2260.32|0.08|0.08|N|O|1997-04-03|1997-02-26|1997-04-26|DELIVER IN PERSON|SHIP|haggle blithely to the blithely special ac| +15662|725829|38344|3|27|50079.33|0.01|0.07|N|O|1997-01-09|1997-02-04|1997-01-31|TAKE BACK RETURN|MAIL|se furiously unusual instru| +15662|4708|17209|4|23|37092.10|0.08|0.04|N|O|1997-03-31|1997-02-25|1997-04-18|NONE|MAIL|nto beans | +15663|248180|23189|1|30|33845.10|0.04|0.04|N|O|1996-03-20|1996-03-04|1996-03-25|DELIVER IN PERSON|REG AIR|y along the blithely pending deposit| +15663|158650|21154|2|17|29047.05|0.03|0.05|N|O|1996-03-16|1996-03-27|1996-04-07|COLLECT COD|SHIP|lyly. acco| +15688|179955|42459|1|45|91572.75|0.10|0.07|N|O|1995-09-24|1995-07-21|1995-10-19|NONE|REG AIR|c foxes subl| +15689|633331|33332|1|20|25286.00|0.05|0.00|N|O|1997-10-28|1997-10-18|1997-11-16|COLLECT COD|REG AIR|s cajole. carefully fina| +15690|881766|19318|1|19|33206.68|0.01|0.08|R|F|1993-11-21|1993-11-22|1993-12-11|COLLECT COD|REG AIR|ully pending requests are slyly boldly re| +15690|835164|47681|2|5|5495.60|0.03|0.06|R|F|1993-10-27|1993-12-11|1993-11-14|COLLECT COD|AIR|egular pack| +15690|588571|38572|3|26|43148.30|0.02|0.01|A|F|1993-11-10|1994-01-08|1993-12-08|COLLECT COD|MAIL|al deposits thrash carefully. fluffily blit| +15690|112096|49603|4|27|29918.43|0.07|0.00|R|F|1993-12-30|1993-11-15|1994-01-09|NONE|REG AIR|xpress platelets. slyly pen| +15690|993599|31157|5|5|8462.75|0.00|0.03|A|F|1993-10-26|1993-12-28|1993-11-15|NONE|REG AIR|ide of the carefully qui| +15691|303919|3920|1|36|69224.40|0.01|0.07|A|F|1993-07-20|1993-09-26|1993-07-23|TAKE BACK RETURN|AIR|y special instr| +15691|953912|28951|2|49|96327.63|0.09|0.03|R|F|1993-08-12|1993-08-18|1993-08-14|NONE|TRUCK|pecial, final ideas cajole ca| +15692|673320|23321|1|23|29745.67|0.03|0.07|N|O|1997-11-24|1997-10-25|1997-12-07|COLLECT COD|RAIL|ecial deposits. even, unusual packages | +15692|487736|37737|2|6|10342.26|0.01|0.06|N|O|1997-11-17|1997-09-16|1997-12-01|TAKE BACK RETURN|TRUCK| furiously regular | +15692|375375|12897|3|48|69617.28|0.09|0.04|N|O|1997-09-04|1997-10-28|1997-09-22|COLLECT COD|RAIL|ts cajole slyly bl| +15692|926499|1536|4|4|6101.80|0.00|0.06|N|O|1997-10-10|1997-10-14|1997-11-09|COLLECT COD|REG AIR|ffy accounts are fluffily. thinly regula| +15693|884197|21749|1|34|40159.10|0.08|0.00|R|F|1994-04-09|1994-03-23|1994-05-03|NONE|RAIL|e of the slyly ironic theodolites are sly| +15694|394749|44750|1|8|14749.84|0.06|0.03|N|O|1997-10-06|1997-10-31|1997-11-01|COLLECT COD|REG AIR|luffily ruthless accounts. care| +15694|531619|44130|2|2|3301.18|0.10|0.06|N|O|1997-10-09|1997-10-27|1997-10-20|NONE|TRUCK|l packages. accounts wake fluffily ab| +15694|912622|177|3|39|63748.62|0.02|0.03|N|O|1997-10-26|1997-10-05|1997-11-23|TAKE BACK RETURN|REG AIR|y ironic forge| +15694|422044|47061|4|14|13524.28|0.08|0.08|N|O|1997-11-08|1997-09-05|1997-11-09|TAKE BACK RETURN|FOB| boost carefully afte| +15694|290704|15715|5|45|76261.05|0.03|0.05|N|O|1997-09-26|1997-09-09|1997-10-05|TAKE BACK RETURN|RAIL|wake blithely amo| +15694|857064|44616|6|38|38798.76|0.04|0.04|N|O|1997-11-30|1997-09-02|1997-12-13|COLLECT COD|FOB|ove the blit| +15694|664893|39920|7|34|63167.24|0.02|0.00|N|O|1997-09-14|1997-10-15|1997-09-16|TAKE BACK RETURN|REG AIR|ly express deposits caj| +15695|855974|31009|1|50|96496.50|0.00|0.03|R|F|1993-07-31|1993-08-15|1993-08-22|DELIVER IN PERSON|REG AIR|se carefully c| +15695|354711|29726|2|43|75925.10|0.02|0.02|R|F|1993-07-03|1993-08-07|1993-07-09|NONE|RAIL|packages. furiously ironic sheav| +15720|101018|1019|1|50|50950.50|0.10|0.04|A|F|1994-11-10|1994-10-15|1994-12-08|COLLECT COD|FOB|aggle along the pending account| +15720|794859|44860|2|47|91829.54|0.01|0.03|R|F|1994-12-05|1994-10-27|1994-12-11|DELIVER IN PERSON|TRUCK|al requests will| +15720|194743|19750|3|17|31241.58|0.06|0.01|A|F|1994-11-26|1994-10-24|1994-12-20|TAKE BACK RETURN|SHIP| regular th| +15720|30161|42662|4|47|51284.52|0.08|0.05|A|F|1994-11-30|1994-11-08|1994-12-08|NONE|TRUCK| the carefully final | +15721|275705|13221|1|43|72269.67|0.04|0.03|A|F|1992-08-08|1992-07-12|1992-08-15|COLLECT COD|SHIP|ding accounts haggle a| +15722|826801|1834|1|39|67382.64|0.01|0.03|R|F|1994-05-03|1994-06-17|1994-05-04|COLLECT COD|FOB| accounts among the final dol| +15723|9759|47260|1|37|61743.75|0.01|0.00|N|O|1997-02-05|1997-02-03|1997-02-09|NONE|MAIL| detect carefully regular packages? e| +15723|17824|42825|2|35|60963.70|0.08|0.03|N|O|1997-01-30|1997-02-18|1997-02-02|TAKE BACK RETURN|FOB| deposits. blithely unusual accounts are bl| +15723|554527|42061|3|20|31630.00|0.02|0.05|N|O|1997-01-12|1997-02-10|1997-02-11|COLLECT COD|AIR|uts engage. even, even deposits ar| +15723|918852|43889|4|18|33674.58|0.01|0.07|N|O|1997-04-22|1997-02-26|1997-05-11|NONE|REG AIR|ss asymptotes cajole blithely | +15723|130780|5785|5|29|52512.62|0.03|0.03|N|O|1996-12-29|1997-03-04|1997-01-05|DELIVER IN PERSON|REG AIR| slyly daring, | +15723|17525|5026|6|41|59143.32|0.06|0.05|N|O|1997-02-04|1997-02-09|1997-02-27|DELIVER IN PERSON|MAIL|ular sauternes are car| +15723|527736|40247|7|1|1763.71|0.08|0.03|N|O|1997-01-24|1997-03-07|1997-01-27|NONE|FOB|ending orbits alongside of the c| +15724|644443|31980|1|46|63820.86|0.06|0.04|R|F|1993-07-26|1993-06-05|1993-08-13|DELIVER IN PERSON|AIR|eodolites about the | +15724|143993|6496|2|1|2036.99|0.00|0.02|A|F|1993-07-05|1993-07-07|1993-07-14|COLLECT COD|TRUCK|usly regular deposits haggle careful| +15724|82942|7945|3|5|9624.70|0.00|0.01|R|F|1993-05-20|1993-06-18|1993-06-11|NONE|SHIP|ve the furiously regular accounts.| +15724|991585|41586|4|7|11735.78|0.05|0.03|R|F|1993-07-03|1993-05-24|1993-07-14|DELIVER IN PERSON|TRUCK|fily dogged pinto bean| +15724|567615|42638|5|47|79081.73|0.00|0.01|R|F|1993-06-29|1993-06-27|1993-07-04|TAKE BACK RETURN|SHIP|ly final re| +15725|382377|32378|1|24|35024.64|0.00|0.08|N|O|1996-12-11|1996-11-09|1996-12-23|TAKE BACK RETURN|SHIP|n requests wake dur| +15725|602175|2176|2|40|43085.60|0.06|0.05|N|O|1996-12-09|1996-10-30|1996-12-11|NONE|RAIL| haggle according to the theodolites. final| +15726|713133|25648|1|46|52720.60|0.09|0.04|N|O|1995-12-24|1996-01-29|1995-12-26|NONE|AIR|usly alongside of the| +15726|614438|26951|2|26|35162.40|0.05|0.05|N|O|1996-01-03|1996-02-04|1996-01-24|NONE|RAIL|usual pinto | +15726|855553|30588|3|44|66374.44|0.04|0.00|N|O|1996-02-25|1996-03-01|1996-03-17|COLLECT COD|FOB|boost. fluffy p| +15726|263622|13623|4|43|68181.23|0.04|0.05|N|O|1995-12-17|1996-01-11|1995-12-28|TAKE BACK RETURN|RAIL|unts. fluffily regular excuses around the f| +15726|679239|4266|5|19|23145.80|0.03|0.03|N|O|1996-01-28|1996-01-31|1996-02-06|DELIVER IN PERSON|RAIL|jole quickly blithely regular ideas. bli| +15726|965390|27910|6|40|58214.00|0.02|0.00|N|O|1996-02-27|1996-02-07|1996-03-10|TAKE BACK RETURN|SHIP|s blithely around the sl| +15727|44658|44659|1|33|52887.45|0.04|0.02|R|F|1994-05-12|1994-04-06|1994-06-10|TAKE BACK RETURN|MAIL|ss the furiously un| +15727|553477|41011|2|39|59687.55|0.01|0.04|A|F|1994-05-07|1994-03-11|1994-06-01|DELIVER IN PERSON|MAIL|ly about the slyly express instru| +15752|733561|33562|1|33|52619.49|0.04|0.00|R|F|1993-10-04|1993-09-28|1993-10-10|DELIVER IN PERSON|MAIL|ove the blithely even pa| +15752|951044|26083|2|46|50370.00|0.09|0.07|A|F|1993-10-07|1993-09-26|1993-11-01|COLLECT COD|REG AIR|haggle. permanent instructions doubt bli| +15752|180389|17899|3|39|57305.82|0.00|0.04|A|F|1993-08-19|1993-09-30|1993-08-23|NONE|RAIL|s the regular, permanent requests| +15752|797692|47693|4|2|3579.32|0.10|0.07|A|F|1993-10-31|1993-09-08|1993-11-22|COLLECT COD|AIR|ic deposits doze c| +15752|798516|48517|5|25|40362.00|0.04|0.08|R|F|1993-08-28|1993-08-28|1993-09-05|COLLECT COD|TRUCK|metimes sly accounts sleep e| +15752|653475|15989|6|8|11427.52|0.09|0.04|A|F|1993-07-24|1993-09-27|1993-08-02|NONE|RAIL|e furiously express acc| +15752|947523|35078|7|2|3140.96|0.04|0.06|A|F|1993-08-05|1993-08-07|1993-08-26|COLLECT COD|MAIL|al ideas wake ab| +15753|4562|17063|1|40|58662.40|0.02|0.01|R|F|1994-09-28|1994-10-29|1994-09-30|DELIVER IN PERSON|AIR| unusual, silent forges use quickly alon| +15754|772145|9691|1|46|55987.06|0.03|0.07|A|F|1994-05-24|1994-05-14|1994-06-08|NONE|TRUCK|kages. fluffily special pinto| +15754|431909|6926|2|31|57067.28|0.00|0.00|R|F|1994-06-26|1994-04-23|1994-07-12|DELIVER IN PERSON|RAIL|posits use blithely about the ironic| +15754|80050|30051|3|1|1030.05|0.04|0.01|A|F|1994-05-06|1994-06-09|1994-05-20|NONE|TRUCK|eposits. final, special acco| +15754|384550|9565|4|21|34325.34|0.04|0.03|R|F|1994-05-12|1994-04-26|1994-05-25|COLLECT COD|TRUCK| above the quickly ironi| +15754|115239|40244|5|11|13796.53|0.05|0.01|A|F|1994-03-31|1994-05-27|1994-04-14|NONE|MAIL|ss the regular deposits wake furi| +15754|820066|32583|6|21|20706.42|0.10|0.03|R|F|1994-06-29|1994-06-02|1994-07-24|NONE|MAIL|s above the f| +15755|220162|20163|1|46|49778.90|0.01|0.00|A|F|1994-01-11|1994-01-16|1994-01-14|DELIVER IN PERSON|SHIP|-ray slyly across| +15756|436540|24065|1|26|38389.52|0.00|0.07|R|F|1992-05-22|1992-05-20|1992-05-24|DELIVER IN PERSON|TRUCK| bold packages eat. final dinos| +15756|913472|1027|2|17|25252.31|0.04|0.00|A|F|1992-05-20|1992-05-28|1992-06-01|COLLECT COD|MAIL|ages sleep alongside of the qu| +15757|47906|47907|1|14|25954.60|0.04|0.07|N|O|1996-12-27|1997-02-09|1996-12-29|DELIVER IN PERSON|FOB| detect carefully special instructions. d| +15757|139976|27483|2|39|78622.83|0.01|0.07|N|O|1997-01-16|1997-02-22|1997-01-28|NONE|TRUCK|y. regular, express deposits sleep silentl| +15757|575036|12570|3|23|25553.23|0.04|0.02|N|O|1996-12-27|1996-12-29|1997-01-08|TAKE BACK RETURN|REG AIR|ithe pinto beans. qui| +15757|623937|11474|4|41|76296.90|0.08|0.05|N|O|1997-02-10|1997-02-11|1997-03-12|COLLECT COD|MAIL|olve furiously about the bold, regular acc| +15757|495563|33091|5|24|37404.96|0.04|0.08|N|O|1997-01-05|1997-01-11|1997-01-18|COLLECT COD|RAIL|ole. furiously re| +15757|920207|45244|6|33|40496.28|0.09|0.04|N|O|1997-03-14|1997-02-10|1997-04-12|COLLECT COD|FOB|ake carefully above the slyly e| +15758|347826|10333|1|13|24359.53|0.03|0.03|N|O|1998-03-13|1998-02-13|1998-03-15|TAKE BACK RETURN|MAIL|oss the platelets int| +15758|903138|15657|2|42|47925.78|0.06|0.04|N|O|1998-03-04|1998-02-20|1998-04-01|NONE|RAIL|x-ray carefully furio| +15759|758137|45683|1|27|32267.70|0.08|0.01|N|O|1995-10-05|1995-09-06|1995-11-04|DELIVER IN PERSON|REG AIR| dependencies. slyl| +15759|995234|20273|2|25|33229.75|0.00|0.02|N|O|1995-08-22|1995-10-14|1995-09-16|DELIVER IN PERSON|MAIL| requests are fur| +15759|883611|21163|3|43|68566.51|0.03|0.05|N|O|1995-10-04|1995-09-14|1995-10-29|DELIVER IN PERSON|AIR|es wake furiously ex| +15784|23336|48337|1|45|56669.85|0.05|0.02|N|O|1998-02-26|1998-01-11|1998-03-25|TAKE BACK RETURN|SHIP|t idly. slyly regular requests ki| +15784|201082|26091|2|27|26542.89|0.02|0.07|N|O|1997-11-30|1998-01-06|1997-12-28|DELIVER IN PERSON|MAIL|en accounts integrate according to | +15785|267318|4834|1|38|48841.40|0.08|0.06|N|O|1997-11-29|1998-01-06|1997-12-13|NONE|REG AIR|ch furiously furiously bold | +15785|811861|24378|2|23|40774.86|0.09|0.04|N|O|1997-11-21|1998-01-01|1997-12-20|NONE|FOB|sts. regular deposits cajole. blithe| +15785|943999|6518|3|34|69460.30|0.04|0.00|N|O|1997-11-18|1997-12-25|1997-12-05|COLLECT COD|REG AIR| after the slyly express req| +15785|788382|25928|4|47|69106.45|0.00|0.04|N|O|1997-11-23|1997-12-10|1997-11-25|TAKE BACK RETURN|REG AIR|counts above the carefully | +15785|321282|33789|5|7|9122.89|0.06|0.00|N|O|1997-11-12|1997-12-17|1997-11-16|TAKE BACK RETURN|FOB|ely special packages haggle car| +15785|784758|34759|6|13|23955.36|0.07|0.01|N|O|1997-12-29|1997-12-10|1998-01-08|NONE|TRUCK|theodolites. silent requests detect blithe| +15785|422527|10052|7|46|66677.00|0.04|0.06|N|O|1998-01-19|1997-12-15|1998-02-06|TAKE BACK RETURN|AIR|ajole slyly after the blithely pend| +15786|396138|21153|1|38|46896.56|0.06|0.04|N|O|1996-01-08|1996-01-08|1996-01-16|TAKE BACK RETURN|REG AIR| slow platelets haggle close| +15786|888119|637|2|29|32105.03|0.01|0.06|N|O|1995-12-19|1995-12-15|1996-01-04|NONE|REG AIR|g blithely permanent courts.| +15786|606062|43599|3|40|38721.20|0.01|0.07|N|O|1995-11-16|1996-01-26|1995-11-27|NONE|FOB|l accounts wake| +15786|75652|38154|4|43|69988.95|0.03|0.06|N|O|1996-02-17|1995-12-14|1996-03-02|DELIVER IN PERSON|REG AIR|haggle blithely carefully ruthless ideas| +15786|473508|48527|5|50|74074.00|0.01|0.04|N|O|1995-11-30|1995-12-28|1995-12-09|DELIVER IN PERSON|AIR|olites. slyly expres| +15786|237759|264|6|35|59385.90|0.01|0.01|N|O|1996-01-20|1995-12-10|1996-02-16|DELIVER IN PERSON|MAIL|sly regular pinto| +15786|9265|46766|7|6|7045.56|0.04|0.06|N|O|1995-12-30|1996-01-14|1996-01-28|NONE|AIR|jole furiously against the special, | +15787|703660|28689|1|12|19963.56|0.10|0.08|N|O|1995-11-20|1995-09-17|1995-12-16|COLLECT COD|REG AIR|gle slyly across the| +15787|410662|23171|2|25|39316.00|0.00|0.07|N|O|1995-08-07|1995-09-10|1995-08-30|NONE|AIR|are pinto beans. final requests sleep| +15787|983740|8779|3|41|74771.70|0.04|0.03|N|O|1995-08-24|1995-10-28|1995-08-29|COLLECT COD|REG AIR|ls nag. ironic, | +15787|712085|49628|4|22|24135.10|0.01|0.04|N|O|1995-08-16|1995-09-28|1995-08-25|COLLECT COD|RAIL|haggle furiously. s| +15787|996506|21545|5|25|40061.50|0.03|0.03|N|O|1995-12-01|1995-10-12|1995-12-19|TAKE BACK RETURN|FOB|he blithely final theodoli| +15788|825916|13465|1|18|33153.66|0.05|0.05|A|F|1994-09-27|1994-09-07|1994-10-25|DELIVER IN PERSON|REG AIR|st carefully. ironic excuses wake qu| +15788|170018|20019|2|25|27200.25|0.06|0.05|A|F|1994-08-21|1994-10-29|1994-09-04|COLLECT COD|REG AIR|eodolites are q| +15788|491519|41520|3|6|9062.94|0.06|0.03|A|F|1994-10-04|1994-10-01|1994-10-28|COLLECT COD|TRUCK|ronic foxes wake carefully accounts. slyly | +15788|956142|31181|4|50|59905.00|0.09|0.05|R|F|1994-11-04|1994-10-03|1994-11-12|DELIVER IN PERSON|RAIL|usual accounts haggle fu| +15788|868199|18200|5|26|30345.90|0.10|0.05|A|F|1994-08-17|1994-10-09|1994-09-06|COLLECT COD|FOB|ep slyly after the ironic foxes. | +15788|819569|7118|6|45|66983.40|0.01|0.07|A|F|1994-10-15|1994-10-21|1994-11-05|COLLECT COD|RAIL| ideas cajole| +15789|863803|13804|1|33|58303.08|0.01|0.08|A|F|1993-10-30|1993-12-20|1993-11-29|COLLECT COD|TRUCK|ly final foxes. silent instru| +15789|921355|46392|2|13|17892.03|0.08|0.04|R|F|1993-12-13|1993-11-26|1993-12-15|COLLECT COD|TRUCK| final requests are carefully af| +15789|208871|21376|3|32|56955.52|0.02|0.07|R|F|1993-10-31|1993-11-27|1993-11-16|TAKE BACK RETURN|TRUCK|ideas boost quickly unus| +15789|490125|15144|4|18|20071.80|0.02|0.00|A|F|1993-10-29|1994-01-03|1993-11-16|TAKE BACK RETURN|REG AIR| quickly pending theodolites.| +15789|517856|17857|5|4|7495.32|0.03|0.08|R|F|1993-12-20|1993-12-27|1994-01-04|DELIVER IN PERSON|SHIP| special accounts are blithely. sly| +15790|419234|31743|1|16|18451.36|0.03|0.03|R|F|1992-10-03|1992-09-12|1992-10-06|NONE|FOB|t deposits dazzle slyly permanent instructi| +15790|65476|27978|2|49|70632.03|0.10|0.04|R|F|1992-09-28|1992-09-12|1992-10-21|COLLECT COD|RAIL|ly. even pint| +15790|453487|28506|3|37|53297.02|0.08|0.05|A|F|1992-08-29|1992-09-05|1992-09-23|COLLECT COD|REG AIR|. fluffily pending acco| +15790|744946|19975|4|12|23890.92|0.07|0.08|A|F|1992-10-04|1992-09-12|1992-10-28|COLLECT COD|TRUCK|g instructions. ideas wake fluff| +15790|297883|35399|5|1|1880.87|0.01|0.04|R|F|1992-10-13|1992-09-14|1992-10-24|DELIVER IN PERSON|REG AIR| ironic packages. quickly ironic requests a| +15790|510399|35420|6|48|67649.76|0.00|0.08|R|F|1992-09-15|1992-09-24|1992-09-24|NONE|RAIL|s deposits after the furiously bold accou| +15791|204712|42225|1|21|33950.70|0.07|0.06|N|O|1996-03-17|1996-02-23|1996-03-30|TAKE BACK RETURN|TRUCK|uses cajole. special deposits affix above | +15816|870301|7853|1|19|24153.94|0.09|0.04|N|O|1997-01-01|1996-11-27|1997-01-18|TAKE BACK RETURN|FOB|s pinto beans maintain fina| +15816|148481|10984|2|10|15294.80|0.03|0.03|N|O|1996-12-15|1997-01-14|1997-01-13|COLLECT COD|MAIL|uickly final foxes wak| +15816|515383|40404|3|35|48942.60|0.08|0.00|N|O|1996-12-14|1996-11-27|1997-01-02|COLLECT COD|FOB|uests. fluffily pendi| +15817|8330|8331|1|14|17336.62|0.09|0.04|A|F|1993-04-08|1993-03-11|1993-04-12|NONE|FOB| deposits mold slyly iron| +15817|998047|10567|2|35|40075.00|0.03|0.08|A|F|1993-04-23|1993-04-24|1993-05-12|NONE|SHIP|egrate slyly about the | +15817|165079|15080|3|42|48050.94|0.06|0.08|A|F|1993-02-12|1993-03-08|1993-02-17|TAKE BACK RETURN|FOB|pinto beans. slyly unusual ideas a| +15817|469793|44812|4|6|10576.62|0.05|0.05|A|F|1993-02-15|1993-04-05|1993-03-11|DELIVER IN PERSON|SHIP|pecial requests. furiously ironi| +15817|807946|32979|5|10|18539.00|0.06|0.01|R|F|1993-06-02|1993-03-27|1993-06-23|NONE|MAIL|ously regu| +15817|146226|33733|6|49|62338.78|0.09|0.07|R|F|1993-04-23|1993-03-31|1993-04-28|NONE|RAIL|e carefully express instr| +15817|611282|23795|7|47|56082.75|0.10|0.06|A|F|1993-03-14|1993-03-25|1993-03-19|NONE|TRUCK|old deposits | +15818|812578|127|1|37|55149.61|0.09|0.07|N|O|1996-03-11|1996-05-02|1996-03-31|DELIVER IN PERSON|TRUCK|slyly. quiet theodolites a| +15819|705683|5684|1|1|1688.65|0.00|0.05|N|O|1998-04-13|1998-05-06|1998-05-13|COLLECT COD|TRUCK|en, close instructio| +15819|406907|6908|2|20|36277.60|0.03|0.03|N|O|1998-06-29|1998-05-28|1998-07-09|COLLECT COD|RAIL|s must have to use furiousl| +15819|880179|42697|3|39|45206.07|0.06|0.04|N|O|1998-04-28|1998-06-17|1998-05-26|NONE|SHIP|. accounts are after the blithe, spe| +15819|155478|17982|4|41|62872.27|0.04|0.06|N|O|1998-07-19|1998-06-08|1998-08-06|DELIVER IN PERSON|MAIL|ding dependencies: ideas wake quickly| +15819|108756|21259|5|15|26471.25|0.05|0.07|N|O|1998-04-05|1998-05-09|1998-05-04|TAKE BACK RETURN|TRUCK|thely against the regular| +15819|860210|22728|6|12|14042.04|0.05|0.07|N|O|1998-05-02|1998-06-29|1998-05-21|DELIVER IN PERSON|MAIL|ideas must have to | +15820|606186|18699|1|42|45870.30|0.08|0.06|N|O|1997-07-21|1997-09-11|1997-08-04|TAKE BACK RETURN|REG AIR|ithely against the even, ironic req| +15820|158069|20573|2|22|24795.32|0.08|0.07|N|O|1997-09-27|1997-08-11|1997-10-06|NONE|SHIP|ding accounts. slyly even packa| +15820|653564|3565|3|49|74358.97|0.03|0.06|N|O|1997-08-10|1997-07-27|1997-08-26|TAKE BACK RETURN|AIR|ake. slyly regular ideas a| +15820|435073|10090|4|27|27217.35|0.10|0.07|N|O|1997-06-27|1997-07-18|1997-07-04|NONE|TRUCK|express packages-- furiously silent request| +15821|474089|49108|1|25|26576.50|0.04|0.02|N|O|1996-10-20|1996-09-15|1996-11-15|NONE|REG AIR|refully ironic accounts integrate blith| +15821|999355|36913|2|2|2908.62|0.06|0.00|N|O|1996-09-21|1996-10-07|1996-10-11|COLLECT COD|REG AIR|refully pending excuses doubt quickly| +15821|146282|8785|3|8|10626.24|0.05|0.07|N|O|1996-11-04|1996-09-16|1996-11-12|COLLECT COD|FOB|nt requests. acc| +15822|334972|47479|1|35|70243.60|0.01|0.03|A|F|1992-11-19|1992-12-11|1992-12-17|COLLECT COD|AIR| after the regular pinto beans. ev| +15822|867610|5162|2|32|50482.24|0.03|0.05|A|F|1993-01-22|1992-11-22|1993-01-24|TAKE BACK RETURN|SHIP|ly ironic platelets. pinto b| +15822|906541|31578|3|30|46425.00|0.08|0.03|A|F|1992-11-02|1992-11-21|1992-11-03|COLLECT COD|FOB|efully ironic requests. regular | +15823|624497|24498|1|33|46908.18|0.07|0.06|A|F|1994-06-14|1994-05-12|1994-07-01|NONE|MAIL|y bold theo| +15823|913111|25630|2|17|19109.19|0.09|0.00|A|F|1994-04-12|1994-03-29|1994-04-16|NONE|TRUCK|ts. even dep| +15823|656058|31085|3|30|30420.60|0.06|0.07|R|F|1994-06-24|1994-04-02|1994-07-03|TAKE BACK RETURN|RAIL|lar deposits haggle | +15848|249218|49219|1|9|10504.80|0.10|0.02|N|O|1995-11-20|1995-11-01|1995-12-20|TAKE BACK RETURN|MAIL|es. carefully sil| +15848|605819|43356|2|20|34495.60|0.01|0.02|N|O|1995-11-25|1995-10-19|1995-12-21|DELIVER IN PERSON|RAIL| ironic foxes use above t| +15848|987681|12720|3|28|49521.92|0.01|0.04|N|O|1995-12-17|1995-11-04|1995-12-22|COLLECT COD|REG AIR|. even, regular deposits haggle. even de| +15848|946014|8533|4|49|51938.53|0.03|0.04|N|O|1995-09-08|1995-09-26|1995-09-14|DELIVER IN PERSON|SHIP|ously fina| +15848|643001|43002|5|6|5663.82|0.02|0.04|N|O|1995-11-16|1995-09-30|1995-11-28|TAKE BACK RETURN|REG AIR|posits. slyly final | +15848|909907|47462|6|22|42170.92|0.01|0.01|N|O|1995-09-07|1995-10-30|1995-09-09|DELIVER IN PERSON|MAIL|s. blithely t| +15849|801989|39538|1|22|41600.68|0.08|0.07|N|O|1996-02-22|1996-03-14|1996-03-13|TAKE BACK RETURN|MAIL|counts. blithely ironic fox| +15849|28219|28220|2|36|41299.56|0.09|0.05|N|O|1996-03-15|1996-03-03|1996-03-19|NONE|RAIL|oxes haggle | +15849|267929|17930|3|2|3793.82|0.00|0.06|N|O|1996-03-03|1996-03-26|1996-03-13|TAKE BACK RETURN|AIR|es integrate about the carefu| +15849|66956|16957|4|25|48073.75|0.00|0.02|N|O|1996-02-29|1996-02-02|1996-03-30|TAKE BACK RETURN|RAIL|s. ironic Tiresias sleep carefully fluffil| +15849|327786|2799|5|9|16323.93|0.07|0.07|N|O|1996-01-19|1996-03-31|1996-01-20|COLLECT COD|TRUCK| slyly pinto beans; carefully expr| +15849|87792|37793|6|17|30256.43|0.10|0.03|N|O|1996-02-14|1996-03-04|1996-03-02|NONE|TRUCK|ss the bold foxes. slyly ironic realms acr| +15850|547888|22909|1|40|77434.40|0.08|0.00|A|F|1992-02-20|1992-05-12|1992-03-10|TAKE BACK RETURN|FOB| boost. even package| +15850|337311|12324|2|45|60673.50|0.06|0.06|A|F|1992-04-21|1992-04-04|1992-04-29|NONE|AIR|e ironic excuses. carefully pending p| +15850|179924|29925|3|36|72141.12|0.10|0.01|A|F|1992-05-30|1992-03-31|1992-05-31|TAKE BACK RETURN|FOB|pendencies nag.| +15850|977114|39634|4|21|25012.47|0.05|0.07|A|F|1992-02-22|1992-03-21|1992-03-16|TAKE BACK RETURN|RAIL|es haggle blithely ironic requests. regula| +15850|348336|35855|5|11|15227.52|0.06|0.08|R|F|1992-03-16|1992-04-18|1992-04-01|NONE|RAIL|sly slyly special accounts.| +15851|14905|39906|1|32|58236.80|0.02|0.00|R|F|1993-06-18|1993-05-29|1993-07-09|NONE|RAIL|uctions doze accounts| +15851|507375|19886|2|17|23499.95|0.10|0.08|R|F|1993-03-23|1993-05-16|1993-03-28|COLLECT COD|REG AIR|accounts a| +15851|438959|13976|3|5|9489.65|0.03|0.04|A|F|1993-04-26|1993-04-06|1993-04-28|DELIVER IN PERSON|FOB|iously final dolphins are special,| +15851|581063|43575|4|36|41185.44|0.08|0.00|A|F|1993-04-20|1993-05-13|1993-04-22|TAKE BACK RETURN|REG AIR|l pinto beans detect a| +15851|919272|19273|5|33|42610.59|0.05|0.08|R|F|1993-04-04|1993-05-04|1993-04-21|TAKE BACK RETURN|SHIP|s haggle abo| +15851|199925|49926|6|26|52647.92|0.06|0.03|R|F|1993-05-15|1993-05-04|1993-05-18|NONE|RAIL|s; slyly express deposits use busily| +15852|768192|5738|1|28|35284.48|0.06|0.02|N|O|1996-06-10|1996-06-23|1996-07-06|COLLECT COD|FOB|n dependenci| +15852|152|12653|2|8|8417.20|0.02|0.07|N|O|1996-05-25|1996-06-16|1996-06-01|NONE|TRUCK|slyly regular depo| +15852|552884|27907|3|9|17431.74|0.03|0.00|N|O|1996-06-10|1996-07-01|1996-07-02|NONE|MAIL|ermanent depe| +15853|296989|34505|1|24|47663.28|0.01|0.06|A|F|1994-03-04|1994-04-23|1994-03-19|DELIVER IN PERSON|MAIL|ular theodol| +15853|483364|45874|2|50|67367.00|0.07|0.07|R|F|1994-03-22|1994-05-03|1994-04-07|COLLECT COD|FOB|into beans. furiously final accou| +15854|586249|48761|1|5|6676.10|0.00|0.03|A|F|1994-04-25|1994-05-25|1994-05-19|TAKE BACK RETURN|TRUCK|wake. carefully even p| +15854|76733|26734|2|23|39323.79|0.08|0.05|R|F|1994-04-04|1994-05-19|1994-04-07|TAKE BACK RETURN|TRUCK|ly regular plate| +15854|650736|25763|3|1|1686.70|0.02|0.02|R|F|1994-05-07|1994-05-26|1994-06-02|COLLECT COD|MAIL|y unusual packages! quickl| +15855|269457|31963|1|39|55631.16|0.09|0.05|N|O|1995-06-23|1995-07-13|1995-07-03|COLLECT COD|TRUCK|g slyly quickly final packages. final plate| +15855|750009|25040|2|20|21179.40|0.04|0.06|N|O|1995-09-12|1995-07-03|1995-10-07|DELIVER IN PERSON|MAIL|s integrate slyly. quickly final pack| +15855|391045|16060|3|9|10224.27|0.00|0.06|N|O|1995-07-30|1995-08-22|1995-08-29|COLLECT COD|AIR|cial accounts among the quickly quick a| +15855|291134|16145|4|38|42754.56|0.04|0.03|N|O|1995-08-23|1995-07-26|1995-09-15|COLLECT COD|REG AIR| thin platelets alongside of the| +15855|80216|17720|5|43|51437.03|0.01|0.08|N|O|1995-09-15|1995-08-17|1995-09-26|NONE|MAIL|f the careful packages. enticingly regular| +15855|178015|3022|6|17|18581.17|0.00|0.07|N|O|1995-09-08|1995-08-08|1995-09-24|COLLECT COD|MAIL|posits sleep across the blithely even | +15855|897961|35513|7|21|41137.32|0.04|0.00|N|O|1995-08-27|1995-07-12|1995-09-09|TAKE BACK RETURN|MAIL|boost blithe| +15880|27717|15218|1|6|9868.26|0.02|0.01|R|F|1993-09-14|1993-10-14|1993-09-18|COLLECT COD|FOB|uriously. slyl| +15880|826313|26314|2|3|3717.81|0.04|0.01|R|F|1993-07-21|1993-10-03|1993-08-18|NONE|TRUCK|rding to the bold | +15880|830212|17761|3|16|18274.72|0.05|0.01|A|F|1993-10-21|1993-09-10|1993-10-31|COLLECT COD|FOB|g to the slyly e| +15880|360002|10003|4|9|9557.91|0.03|0.02|A|F|1993-09-05|1993-08-23|1993-09-23|COLLECT COD|RAIL|re about the carefully ironic requests. sl| +15881|449727|12236|1|36|60361.20|0.10|0.08|A|F|1994-07-11|1994-06-25|1994-07-16|TAKE BACK RETURN|TRUCK|ies: quickly final requests | +15881|549933|49934|2|15|29743.65|0.07|0.02|A|F|1994-05-08|1994-07-10|1994-05-21|COLLECT COD|RAIL|ly express pi| +15881|722222|9765|3|12|14930.28|0.07|0.07|R|F|1994-06-06|1994-05-27|1994-06-25|COLLECT COD|AIR| blithely sly packages. blithely special | +15881|374460|36968|4|8|12275.60|0.07|0.00|A|F|1994-05-29|1994-05-24|1994-06-01|NONE|REG AIR|ly along the regular foxes. slyly | +15881|536413|23944|5|19|27538.41|0.03|0.02|A|F|1994-07-19|1994-06-17|1994-08-09|NONE|TRUCK|es. blithel| +15882|614095|26608|1|45|45407.70|0.00|0.06|A|F|1995-02-14|1995-02-25|1995-02-22|TAKE BACK RETURN|SHIP|ironic theodolites| +15882|77861|40363|2|14|25744.04|0.00|0.08|R|F|1995-02-09|1995-04-01|1995-02-19|DELIVER IN PERSON|TRUCK|osits thrash fu| +15882|596129|46130|3|20|24502.00|0.08|0.00|A|F|1995-02-04|1995-04-03|1995-02-11|COLLECT COD|RAIL|pecial accounts. slyly idle deposit| +15882|139814|14819|4|33|61175.73|0.01|0.05|R|F|1995-03-09|1995-04-04|1995-04-07|TAKE BACK RETURN|FOB|foxes about the re| +15882|843899|43900|5|48|88456.80|0.04|0.01|R|F|1995-03-14|1995-03-24|1995-03-16|NONE|FOB| besides the slyly even deposits. slyl| +15883|618271|5808|1|4|4756.96|0.01|0.00|R|F|1994-05-09|1994-06-19|1994-06-02|COLLECT COD|AIR|ounts hagg| +15883|264059|26565|2|44|45013.76|0.03|0.00|A|F|1994-04-05|1994-06-05|1994-05-04|NONE|AIR|ckly ironic dolphins nag slyly a| +15883|36410|11411|3|11|14810.51|0.05|0.01|R|F|1994-07-18|1994-05-17|1994-08-12|COLLECT COD|SHIP|eep pendin| +15884|643600|43601|1|9|13892.13|0.01|0.07|R|F|1993-06-08|1993-05-22|1993-06-16|TAKE BACK RETURN|TRUCK| sentiments detect fluffily. unusual fox| +15884|983704|8743|2|23|41116.18|0.08|0.03|A|F|1993-06-01|1993-05-13|1993-06-17|DELIVER IN PERSON|SHIP|blithely f| +15884|105165|42672|3|33|38615.28|0.01|0.01|R|F|1993-05-16|1993-05-13|1993-06-08|NONE|RAIL|posits. accounts sleep sly| +15884|504111|4112|4|44|49063.96|0.07|0.00|A|F|1993-05-18|1993-04-21|1993-06-03|NONE|AIR|l instructions across th| +15884|590676|28210|5|44|77732.60|0.07|0.08|R|F|1993-05-02|1993-06-06|1993-05-17|NONE|REG AIR|uriously busy| +15884|478003|40513|6|2|1961.96|0.01|0.03|A|F|1993-06-04|1993-05-28|1993-06-15|TAKE BACK RETURN|MAIL|furiously stea| +15885|323037|10556|1|13|13780.26|0.02|0.01|N|O|1995-07-13|1995-08-30|1995-07-29|DELIVER IN PERSON|RAIL|posits use according| +15885|275621|632|2|46|73444.06|0.02|0.02|N|O|1995-06-20|1995-08-08|1995-07-03|DELIVER IN PERSON|MAIL|ecial deposits with t| +15885|355078|5079|3|40|45322.40|0.04|0.07|N|O|1995-06-21|1995-07-07|1995-06-30|DELIVER IN PERSON|MAIL| beans cajol| +15885|790520|15551|4|26|41872.74|0.10|0.01|N|F|1995-06-07|1995-07-27|1995-06-28|COLLECT COD|REG AIR|ul requests. dogged, express attainments wa| +15886|220695|8208|1|43|69474.24|0.02|0.06|R|F|1993-09-15|1993-08-03|1993-09-19|COLLECT COD|RAIL|y even instructions. bold depos| +15886|210844|48357|2|41|71948.03|0.03|0.04|R|F|1993-05-25|1993-07-01|1993-06-01|TAKE BACK RETURN|SHIP|stealthy theodolites. regular, even packag| +15886|647250|47251|3|40|47888.80|0.07|0.04|A|F|1993-07-30|1993-06-30|1993-08-02|COLLECT COD|TRUCK| ideas cajole re| +15886|327264|2277|4|16|20660.00|0.01|0.02|R|F|1993-07-07|1993-07-24|1993-07-14|DELIVER IN PERSON|SHIP| above the furiously e| +15887|583641|21175|1|3|5173.86|0.05|0.07|A|F|1993-03-15|1993-05-06|1993-04-10|TAKE BACK RETURN|SHIP|gainst the regular frays. blit| +15912|885479|47997|1|33|48326.19|0.01|0.06|R|F|1994-03-19|1994-03-05|1994-03-26|DELIVER IN PERSON|RAIL|ndencies. fluffily special accounts| +15913|370372|7894|1|39|56252.04|0.01|0.00|A|F|1993-09-16|1993-10-22|1993-10-12|DELIVER IN PERSON|SHIP|p after the ca| +15913|837397|37398|2|35|46702.25|0.10|0.08|R|F|1993-11-03|1993-09-28|1993-11-12|COLLECT COD|REG AIR|y along the sly| +15913|118086|18087|3|27|29810.16|0.01|0.04|A|F|1993-10-21|1993-09-12|1993-11-16|TAKE BACK RETURN|FOB|ke. blithel| +15913|663757|13758|4|24|41297.28|0.08|0.08|R|F|1993-09-28|1993-11-08|1993-10-17|TAKE BACK RETURN|SHIP|nic requests. blithely unusual deposit| +15913|748935|36478|5|47|93243.30|0.09|0.02|A|F|1993-09-09|1993-11-08|1993-10-03|NONE|TRUCK|c packages sleep pe| +15914|626546|14083|1|38|55955.38|0.10|0.06|N|O|1995-09-05|1995-09-12|1995-09-07|DELIVER IN PERSON|REG AIR|uffily according to t| +15914|355483|5484|2|8|12307.76|0.01|0.01|N|O|1995-11-13|1995-10-05|1995-11-20|NONE|MAIL|furiously after the fu| +15914|601034|38571|3|7|6545.00|0.08|0.00|N|O|1995-08-25|1995-10-19|1995-09-18|TAKE BACK RETURN|SHIP|sleep afte| +15914|569655|7189|4|13|22420.19|0.00|0.03|N|O|1995-12-11|1995-10-06|1996-01-04|COLLECT COD|FOB| cajole. even instructio| +15914|183791|33792|5|13|24372.27|0.02|0.05|N|O|1995-11-03|1995-10-12|1995-11-16|NONE|AIR|fully regular requests | +15914|966431|28951|6|45|67382.55|0.03|0.01|N|O|1995-11-23|1995-10-15|1995-12-01|NONE|RAIL| blithely regular packages haggle even acc| +15915|713746|13747|1|26|45752.46|0.07|0.03|R|F|1995-01-22|1995-03-03|1995-02-08|COLLECT COD|REG AIR|l theodolites. express platelets cajol| +15915|919325|19326|2|2|2688.56|0.02|0.03|A|F|1995-01-29|1995-04-08|1995-01-30|NONE|RAIL|carefully ironic deposits haggle| +15916|126292|13799|1|25|32957.25|0.10|0.07|R|F|1993-05-07|1993-05-23|1993-06-01|DELIVER IN PERSON|AIR|sy accounts; sl| +15917|416627|41644|1|9|13892.40|0.09|0.03|N|O|1996-02-14|1996-01-22|1996-02-23|TAKE BACK RETURN|MAIL|carefully above the instructions. carefull| +15917|244367|6872|2|19|24915.65|0.01|0.04|N|O|1995-12-10|1996-01-17|1995-12-13|DELIVER IN PERSON|AIR|e regular ideas haggle slyly| +15917|68552|6056|3|50|76027.50|0.05|0.00|N|O|1995-12-28|1996-01-23|1995-12-29|COLLECT COD|MAIL|lar foxes nod even, final reque| +15917|137914|25421|4|2|3903.82|0.10|0.02|N|O|1996-01-19|1996-01-22|1996-01-20|DELIVER IN PERSON|RAIL|ously final deposits. final reque| +15918|777299|39815|1|10|13762.60|0.03|0.00|A|F|1995-03-30|1995-05-22|1995-04-23|NONE|RAIL|c pearls. pending, ironic instr| +15918|52997|40501|2|14|27299.86|0.07|0.05|R|F|1995-05-12|1995-05-26|1995-06-06|NONE|MAIL|final deposits | +15918|720088|7631|3|9|9972.45|0.07|0.03|N|O|1995-07-09|1995-05-04|1995-07-19|TAKE BACK RETURN|REG AIR|eas haggle slyly. ironic| +15918|505411|5412|4|30|42491.70|0.06|0.06|R|F|1995-04-17|1995-06-02|1995-04-30|DELIVER IN PERSON|TRUCK|e carefully. p| +15918|436498|49007|5|14|20082.58|0.09|0.00|N|F|1995-05-24|1995-06-19|1995-06-22|COLLECT COD|TRUCK|kly after the| +15918|221425|33930|6|13|17503.33|0.06|0.00|R|F|1995-04-04|1995-05-05|1995-04-22|NONE|SHIP|t deposits mold: fluffily ironi| +15918|484086|21614|7|8|8560.48|0.04|0.02|A|F|1995-05-15|1995-06-09|1995-05-24|COLLECT COD|TRUCK|gular excuses wake carefully.| +15919|22776|10277|1|28|47565.56|0.07|0.06|N|O|1995-09-01|1995-07-15|1995-09-23|TAKE BACK RETURN|FOB|special asympto| +15919|793082|43083|2|28|32901.40|0.03|0.07|N|O|1995-09-09|1995-08-06|1995-10-04|TAKE BACK RETURN|FOB|ously pending excu| +15919|321468|46481|3|24|35746.80|0.06|0.05|N|O|1995-08-13|1995-07-15|1995-08-17|NONE|MAIL|le blithely at the furiously ironic pe| +15919|898205|10723|4|5|6015.80|0.06|0.04|N|F|1995-06-04|1995-07-27|1995-06-26|COLLECT COD|REG AIR|arefully ironic accounts | +15919|127717|40220|5|1|1744.71|0.09|0.06|N|F|1995-06-07|1995-07-31|1995-06-21|DELIVER IN PERSON|MAIL|ole alongs| +15919|527387|39898|6|9|12729.24|0.04|0.08|N|O|1995-09-10|1995-08-01|1995-10-09|NONE|TRUCK|y regular request| +15944|404613|29630|1|27|40974.93|0.07|0.01|N|O|1996-02-22|1996-01-04|1996-03-05|NONE|RAIL|ely blithely final requests! quickly| +15944|324361|36868|2|34|47101.90|0.07|0.05|N|O|1995-12-28|1996-02-08|1996-01-08|TAKE BACK RETURN|FOB|xcuses. slyly special requests are. b| +15944|527507|40018|3|12|18413.76|0.07|0.05|N|O|1996-02-10|1996-02-13|1996-02-26|COLLECT COD|REG AIR|special ideas| +15944|805100|5101|4|17|17086.02|0.10|0.02|N|O|1996-02-20|1996-02-01|1996-02-24|COLLECT COD|AIR|ep furiously accordin| +15944|308953|33966|5|50|98097.00|0.10|0.02|N|O|1996-02-09|1996-02-17|1996-03-09|COLLECT COD|FOB|kly ironic pinto beans. slyly regular req| +15944|558059|8060|6|1|1117.03|0.00|0.01|N|O|1996-01-31|1996-01-01|1996-02-23|DELIVER IN PERSON|RAIL|equests. final req| +15944|289618|39619|7|4|6430.40|0.04|0.01|N|O|1995-12-30|1996-01-04|1996-01-20|COLLECT COD|SHIP|ly according to the p| +15945|607794|32819|1|29|49351.04|0.06|0.02|N|O|1998-06-15|1998-06-20|1998-06-20|COLLECT COD|REG AIR| slyly pending ideas haggle carefull| +15946|988624|38625|1|10|17125.80|0.04|0.05|R|F|1994-08-11|1994-07-25|1994-09-05|NONE|TRUCK|regular dependenc| +15946|800860|13377|2|12|21129.84|0.07|0.04|A|F|1994-06-17|1994-06-30|1994-06-23|TAKE BACK RETURN|RAIL|ly about the blithely regular request| +15946|51128|38632|3|33|35610.96|0.02|0.04|R|F|1994-05-30|1994-06-16|1994-06-06|DELIVER IN PERSON|RAIL|ing, express packages wake about the | +15946|306137|6138|4|39|44581.68|0.10|0.01|R|F|1994-08-11|1994-06-18|1994-09-05|NONE|TRUCK|cies. slyly car| +15946|239095|39096|5|43|44465.44|0.08|0.02|A|F|1994-07-31|1994-07-02|1994-08-29|NONE|REG AIR|nal excuses. enticing, stealth| +15946|457953|7954|6|16|30574.88|0.04|0.05|R|F|1994-06-07|1994-06-27|1994-07-01|TAKE BACK RETURN|FOB|pinto beans | +15946|802903|2904|7|48|86681.28|0.10|0.08|A|F|1994-08-22|1994-07-05|1994-09-11|NONE|FOB|tithes are sl| +15947|380527|5542|1|38|61085.38|0.07|0.06|A|F|1992-09-26|1992-09-09|1992-10-17|COLLECT COD|REG AIR|ily even depos| +15947|503141|28162|2|1|1144.12|0.06|0.05|R|F|1992-08-01|1992-10-02|1992-08-19|NONE|REG AIR|beans outside the furiously | +15947|289843|2349|3|20|36656.60|0.03|0.02|R|F|1992-10-12|1992-08-22|1992-10-15|DELIVER IN PERSON|MAIL|ickly. regular accounts | +15947|389019|39020|4|10|11080.00|0.05|0.01|A|F|1992-10-30|1992-09-07|1992-11-18|DELIVER IN PERSON|REG AIR|. furiously regular accounts boost steal| +15947|226674|14187|5|42|67227.72|0.08|0.05|A|F|1992-10-17|1992-09-21|1992-10-31|TAKE BACK RETURN|FOB|g to the pending dugouts. slyl| +15947|700416|12931|6|14|19829.32|0.01|0.00|A|F|1992-07-31|1992-09-02|1992-08-30|COLLECT COD|MAIL| packages according to the slyly| +15948|191161|16168|1|30|37564.80|0.10|0.07|A|F|1994-12-22|1994-11-29|1995-01-15|TAKE BACK RETURN|RAIL|unts wake carefully. even re| +15948|840467|15500|2|47|66148.74|0.06|0.08|A|F|1994-11-14|1994-12-09|1994-11-30|COLLECT COD|AIR|t carefully even courts. special de| +15948|712799|25314|3|5|9058.80|0.10|0.06|A|F|1995-01-29|1994-12-27|1995-02-28|TAKE BACK RETURN|TRUCK|ave, ruthless packages sleep slyly alongsi| +15948|9067|21568|4|20|19521.20|0.08|0.06|R|F|1994-11-10|1995-01-11|1994-11-28|COLLECT COD|AIR|cajole furi| +15948|387080|49588|5|29|33845.03|0.04|0.07|A|F|1994-12-19|1994-12-24|1994-12-24|COLLECT COD|AIR| quickly furio| +15949|545679|20700|1|22|37942.30|0.03|0.08|R|F|1995-03-17|1995-02-11|1995-03-22|NONE|AIR|ggle. final, pend| +15949|224308|11821|2|37|45594.73|0.04|0.01|R|F|1995-02-24|1995-02-13|1995-03-11|NONE|FOB|pecial packages are flu| +15950|280764|43270|1|49|85492.75|0.09|0.06|A|F|1994-05-11|1994-04-29|1994-05-27|TAKE BACK RETURN|AIR|ly requests. fluffily even deposit| +15950|792208|17239|2|6|7801.02|0.02|0.00|R|F|1994-03-22|1994-04-08|1994-04-14|NONE|MAIL|regular, ironic deposits | +15950|634847|22384|3|11|19599.91|0.00|0.01|A|F|1994-03-20|1994-04-15|1994-04-10|NONE|RAIL|hely final dinos. fluffily regular acc| +15950|872638|35156|4|23|37043.57|0.09|0.05|R|F|1994-05-18|1994-04-02|1994-06-06|TAKE BACK RETURN|RAIL|evenly special requ| +15951|229754|17267|1|33|55563.42|0.07|0.03|R|F|1993-06-09|1993-06-10|1993-07-03|COLLECT COD|REG AIR| foxes. furious| +15951|467536|42555|2|21|31573.71|0.05|0.01|R|F|1993-07-09|1993-07-18|1993-07-23|COLLECT COD|AIR|nto beans! furio| +15951|869880|32398|3|8|14798.72|0.06|0.00|A|F|1993-06-20|1993-07-21|1993-07-19|NONE|FOB|arefully express epitaphs. bold theodol| +15951|58949|33952|4|36|68685.84|0.09|0.04|A|F|1993-07-03|1993-06-28|1993-07-16|TAKE BACK RETURN|FOB| carefully pending| +15951|746917|46918|5|34|66771.92|0.07|0.03|R|F|1993-07-18|1993-06-14|1993-08-10|COLLECT COD|REG AIR| the ideas. dependencies sleep carefully ag| +15976|601755|39292|1|12|19880.64|0.02|0.01|R|F|1992-11-11|1992-11-15|1992-11-23|COLLECT COD|RAIL| packages cajole furiously about t| +15976|689805|14832|2|12|21537.24|0.05|0.05|R|F|1992-12-12|1992-10-01|1992-12-19|DELIVER IN PERSON|TRUCK|quickly quick accounts. unusual de| +15976|548643|11154|3|19|32140.78|0.03|0.06|A|F|1992-11-25|1992-10-08|1992-12-15|DELIVER IN PERSON|TRUCK|apades after the furiously unusual requ| +15976|36542|36543|4|29|42877.66|0.10|0.04|R|F|1992-12-09|1992-11-04|1992-12-26|COLLECT COD|REG AIR|uests use carefully regul| +15977|786755|49271|1|35|64460.20|0.01|0.01|A|F|1993-05-24|1993-06-22|1993-06-04|COLLECT COD|MAIL|hely final deposits. slyly bold instruc| +15977|990576|28134|2|42|69994.26|0.06|0.04|A|F|1993-07-31|1993-06-16|1993-08-01|NONE|RAIL|eodolites cajole slowl| +15977|597112|9624|3|3|3627.27|0.01|0.01|R|F|1993-05-27|1993-06-16|1993-05-30|NONE|TRUCK|gular packages. careful| +15977|653124|28151|4|5|5385.45|0.06|0.06|R|F|1993-06-19|1993-06-21|1993-06-28|DELIVER IN PERSON|AIR|wake silentl| +15978|112986|25489|1|46|91953.08|0.03|0.04|N|O|1996-05-04|1996-06-09|1996-05-11|TAKE BACK RETURN|RAIL|ns sleep blithel| +15978|950926|25965|2|25|49422.00|0.09|0.01|N|O|1996-05-02|1996-06-08|1996-05-10|COLLECT COD|SHIP|ests. blithely pending packages kindle| +15978|200749|25758|3|49|80836.77|0.03|0.01|N|O|1996-05-29|1996-06-28|1996-06-20|DELIVER IN PERSON|RAIL|packages haggle against the final, even p| +15978|971870|9428|4|46|89324.18|0.04|0.06|N|O|1996-06-27|1996-06-25|1996-07-04|COLLECT COD|REG AIR|ironic pinto beans. carefully idle packages| +15978|210294|22799|5|5|6021.40|0.10|0.02|N|O|1996-07-11|1996-07-15|1996-07-13|TAKE BACK RETURN|AIR|es sleep furiously; slyly regul| +15978|395856|8364|6|16|31229.44|0.05|0.01|N|O|1996-08-28|1996-06-28|1996-09-10|TAKE BACK RETURN|MAIL|ing to the carefully s| +15978|138655|13660|7|9|15242.85|0.08|0.03|N|O|1996-08-18|1996-07-02|1996-08-30|COLLECT COD|TRUCK|ns haggle quickly unusual th| +15979|373176|48191|1|42|52464.72|0.01|0.05|N|O|1998-08-17|1998-10-08|1998-09-01|COLLECT COD|FOB|the final, | +15979|963457|25977|2|24|36489.84|0.00|0.03|N|O|1998-09-17|1998-09-29|1998-10-14|TAKE BACK RETURN|AIR| quietly unusual depende| +15979|806350|18867|3|47|59046.57|0.03|0.04|N|O|1998-08-28|1998-08-31|1998-08-30|DELIVER IN PERSON|AIR|ys haggle alon| +15979|308667|33680|4|27|45242.55|0.06|0.04|N|O|1998-10-05|1998-09-18|1998-10-19|TAKE BACK RETURN|MAIL| blithely ac| +15979|751205|13721|5|25|31404.25|0.04|0.05|N|O|1998-10-06|1998-08-31|1998-10-20|TAKE BACK RETURN|REG AIR|dependencies wake slyly final n| +15979|490132|40133|6|9|10098.99|0.02|0.04|N|O|1998-10-08|1998-09-25|1998-10-18|NONE|RAIL|ar accounts. unusual waters nag al| +15979|641771|41772|7|17|29116.58|0.04|0.07|N|O|1998-10-07|1998-08-15|1998-10-28|TAKE BACK RETURN|MAIL|blithely ironic deposits| +15980|242673|30186|1|44|71089.04|0.04|0.05|N|O|1996-07-30|1996-06-09|1996-08-20|TAKE BACK RETURN|TRUCK|nst the furiously ironic deposits. fu| +15980|589411|14434|2|38|57014.82|0.05|0.00|N|O|1996-07-02|1996-06-28|1996-07-19|DELIVER IN PERSON|RAIL|, even deposits use. pinto beans sle| +15981|810393|35426|1|21|27370.35|0.10|0.02|N|O|1998-10-14|1998-09-05|1998-11-10|NONE|REG AIR|dolites cajol| +15981|267817|42828|2|1|1784.80|0.10|0.08|N|O|1998-08-31|1998-09-17|1998-09-22|COLLECT COD|SHIP|atterns. instruction| +15981|193104|18111|3|33|39504.30|0.04|0.08|N|O|1998-11-29|1998-10-07|1998-12-02|DELIVER IN PERSON|TRUCK|y instead of the bold dol| +15981|498246|23265|4|47|58478.34|0.02|0.02|N|O|1998-08-02|1998-10-29|1998-08-15|COLLECT COD|FOB|deposits haggle fluffily according to the | +15981|16710|41711|5|8|13013.68|0.06|0.03|N|O|1998-10-04|1998-09-23|1998-10-10|NONE|RAIL|ctions are | +15981|830259|5292|6|40|47568.40|0.03|0.08|N|O|1998-10-04|1998-09-27|1998-10-11|DELIVER IN PERSON|AIR|ndle slyly bol| +15982|377247|2262|1|16|21187.68|0.02|0.01|N|O|1996-11-21|1996-11-30|1996-12-13|DELIVER IN PERSON|TRUCK| wake carefully. regular| +15982|381553|19075|2|15|24518.10|0.04|0.05|N|O|1996-10-18|1996-12-18|1996-11-01|DELIVER IN PERSON|REG AIR| the ironic | +15983|136486|11491|1|8|12179.84|0.10|0.08|N|O|1997-12-28|1998-01-28|1998-01-20|COLLECT COD|SHIP|ourts use a| +15983|907680|45235|2|28|47253.92|0.00|0.04|N|O|1998-03-29|1998-02-04|1998-04-01|TAKE BACK RETURN|REG AIR| the furiously pending asymptote| +15983|368708|31216|3|36|63960.84|0.04|0.03|N|O|1998-02-02|1998-01-16|1998-02-19|NONE|TRUCK| quick, ironic accounts cajole fin| +16008|96908|46909|1|49|93340.10|0.08|0.07|A|F|1993-10-20|1993-11-18|1993-10-22|COLLECT COD|MAIL|posits hinder furiousl| +16008|720991|33506|2|40|80478.40|0.06|0.00|R|F|1993-11-30|1993-10-26|1993-12-12|COLLECT COD|SHIP|nticingly ruthless pinto beans cajole | +16008|694140|19167|3|24|27218.64|0.09|0.01|R|F|1993-11-07|1993-11-02|1993-11-11|TAKE BACK RETURN|RAIL|n requests cajole fluffily. even asympto| +16008|400401|402|4|31|40342.78|0.01|0.02|R|F|1994-01-03|1993-11-24|1994-01-30|COLLECT COD|RAIL|ickly. pendi| +16009|513499|13500|1|23|34786.81|0.01|0.08|A|F|1993-06-10|1993-07-28|1993-07-01|COLLECT COD|MAIL|refully unusual requests maintain carefully| +16009|372690|35198|2|16|28202.88|0.00|0.08|A|F|1993-07-12|1993-08-08|1993-07-21|NONE|SHIP| sheaves cajole quickly regularly| +16009|800608|609|3|19|28662.64|0.08|0.04|A|F|1993-07-07|1993-08-07|1993-07-25|DELIVER IN PERSON|MAIL| quietly after the furiously unusual reque| +16009|814081|26598|4|5|4975.20|0.00|0.06|R|F|1993-06-30|1993-08-01|1993-07-24|TAKE BACK RETURN|REG AIR| asymptotes wake about the even ac| +16009|246854|46855|5|8|14406.72|0.10|0.08|R|F|1993-06-19|1993-07-06|1993-07-13|COLLECT COD|SHIP|? bold accounts haggle carefull| +16009|874160|36678|6|45|51035.40|0.10|0.00|A|F|1993-07-30|1993-08-04|1993-08-12|NONE|MAIL|regular accounts boost | +16009|990882|28440|7|41|80886.44|0.08|0.01|A|F|1993-08-03|1993-08-28|1993-08-27|TAKE BACK RETURN|FOB|lly alongside of the regular, ironic dep| +16010|743145|43146|1|6|7128.66|0.05|0.00|N|O|1998-06-22|1998-05-14|1998-07-03|DELIVER IN PERSON|RAIL|c packages. fluffily ir| +16010|37273|49774|2|18|21784.86|0.01|0.06|N|O|1998-07-13|1998-05-12|1998-08-11|NONE|TRUCK| slyly regular ideas nag slyly unusua| +16010|441771|16788|3|15|25691.25|0.03|0.03|N|O|1998-06-26|1998-05-19|1998-07-18|COLLECT COD|REG AIR|hely even escapades ar| +16010|830560|5593|4|46|68563.92|0.10|0.05|N|O|1998-07-02|1998-05-12|1998-07-12|DELIVER IN PERSON|RAIL| silently bold ideas sle| +16010|221530|46539|5|15|21772.80|0.03|0.03|N|O|1998-07-16|1998-05-19|1998-08-08|COLLECT COD|AIR|express ac| +16010|251977|14483|6|41|79087.36|0.05|0.03|N|O|1998-05-30|1998-04-28|1998-06-19|NONE|SHIP|cross the carefu| +16010|962202|49760|7|29|36660.64|0.08|0.08|N|O|1998-05-02|1998-06-24|1998-05-24|DELIVER IN PERSON|TRUCK|deas. fluffily express depos| +16011|723707|11250|1|16|27690.72|0.10|0.08|N|O|1996-01-12|1996-02-07|1996-01-24|COLLECT COD|AIR|endencies. regular accounts use carefully| +16012|167932|42939|1|3|5999.79|0.00|0.03|R|F|1992-08-07|1992-06-17|1992-09-02|COLLECT COD|REG AIR|uriously regular p| +16012|428289|40798|2|28|34083.28|0.05|0.01|R|F|1992-05-03|1992-06-18|1992-05-05|DELIVER IN PERSON|SHIP|otes boost quickly agai| +16012|249970|12475|3|46|88318.16|0.08|0.02|R|F|1992-04-21|1992-06-08|1992-05-12|TAKE BACK RETURN|AIR| special, express deposits across t| +16012|240021|40022|4|24|23064.24|0.10|0.03|A|F|1992-06-07|1992-06-24|1992-06-23|COLLECT COD|SHIP|s wake blithely ironic| +16013|454468|29487|1|2|2844.88|0.10|0.00|R|F|1992-04-29|1992-05-09|1992-05-16|DELIVER IN PERSON|FOB|l requests nag fu| +16014|170218|20219|1|6|7729.26|0.06|0.02|N|O|1996-05-18|1996-04-25|1996-06-15|DELIVER IN PERSON|TRUCK|he regular, final dep| +16014|843858|31407|2|41|73874.21|0.03|0.07|N|O|1996-05-08|1996-04-11|1996-06-04|COLLECT COD|MAIL| pending excuses. even | +16014|720777|33292|3|30|53932.20|0.09|0.05|N|O|1996-04-21|1996-04-21|1996-05-06|COLLECT COD|SHIP|ding accounts wake again| +16014|96303|21306|4|42|54570.60|0.01|0.07|N|O|1996-06-21|1996-04-21|1996-06-27|TAKE BACK RETURN|MAIL|efully unusual accounts nag fluffi| +16014|558427|33450|5|16|23766.40|0.09|0.06|N|O|1996-05-21|1996-04-19|1996-05-28|NONE|REG AIR|ickly express requests wake blithely even | +16014|481623|31624|6|16|25673.60|0.04|0.05|N|O|1996-04-01|1996-05-30|1996-04-05|COLLECT COD|REG AIR|dle: frets at the regular, ironic| +16015|965220|40259|1|5|6425.90|0.05|0.00|A|F|1994-10-30|1994-12-20|1994-11-17|COLLECT COD|RAIL|y along the quickly unusual requests. blith| +16015|442830|30355|2|15|26592.15|0.00|0.01|R|F|1994-09-25|1994-11-19|1994-10-15|DELIVER IN PERSON|SHIP|furiously bold accounts breach slyly ev| +16040|648728|48729|1|15|25150.35|0.08|0.00|R|F|1993-12-16|1993-12-14|1994-01-01|NONE|TRUCK|egular requests cajole slyly acr| +16040|156780|44290|2|47|86328.66|0.08|0.08|A|F|1994-01-14|1994-01-27|1994-01-24|TAKE BACK RETURN|FOB|endencies are against the furious | +16040|996059|8579|3|25|28875.25|0.08|0.01|A|F|1994-01-07|1994-01-15|1994-01-21|COLLECT COD|REG AIR|ial foxes. pending instructions sleep blit| +16040|753909|16425|4|27|52997.49|0.02|0.01|R|F|1994-02-27|1994-01-16|1994-03-19|DELIVER IN PERSON|MAIL|y regular Tir| +16040|943783|31338|5|2|3653.48|0.10|0.01|R|F|1993-12-22|1994-01-15|1994-01-10|COLLECT COD|MAIL|tes about the even, pending ac| +16040|151624|14128|6|49|82105.38|0.00|0.03|R|F|1993-12-05|1993-12-27|1993-12-29|DELIVER IN PERSON|RAIL|posits after the hockey players| +16040|341888|29407|7|44|84914.28|0.01|0.05|A|F|1994-01-30|1994-01-28|1994-02-13|COLLECT COD|MAIL| the slyly pending theodolites. fluffily | +16041|103641|28646|1|5|8223.20|0.02|0.08|N|O|1997-08-29|1997-10-07|1997-09-27|NONE|RAIL| across the pending, even instr| +16042|142873|5376|1|5|9579.35|0.10|0.07|N|O|1996-01-12|1995-11-14|1996-01-16|NONE|TRUCK|riously even platelets dete| +16042|263897|26403|2|23|42800.24|0.03|0.04|N|O|1995-10-28|1995-10-30|1995-11-14|DELIVER IN PERSON|RAIL|inal account| +16043|576408|13942|1|22|32656.36|0.09|0.01|N|O|1998-03-25|1998-03-26|1998-04-18|TAKE BACK RETURN|REG AIR|carefully fluff| +16043|685265|22805|2|28|35006.44|0.07|0.06|N|O|1998-04-03|1998-03-21|1998-05-03|COLLECT COD|SHIP|. slyly special requests cajole | +16043|241324|3829|3|14|17714.34|0.05|0.03|N|O|1998-04-13|1998-03-28|1998-04-21|COLLECT COD|MAIL|tions poach ca| +16043|919088|31607|4|22|24354.88|0.03|0.07|N|O|1998-03-10|1998-04-05|1998-03-30|TAKE BACK RETURN|MAIL|ickly dogged Tiresias are furiously| +16044|589199|14222|1|4|5152.68|0.03|0.07|N|O|1997-11-25|1997-11-12|1997-11-29|COLLECT COD|RAIL|accounts are blithely. blithely | +16044|665235|27749|2|41|49208.20|0.04|0.03|N|O|1997-10-03|1997-11-03|1997-10-17|NONE|TRUCK|foxes alon| +16044|599434|49435|3|29|44468.89|0.01|0.06|N|O|1997-12-19|1997-10-16|1997-12-20|TAKE BACK RETURN|REG AIR|slyly bold pint| +16045|721361|33876|1|47|64969.51|0.02|0.01|N|O|1998-09-03|1998-08-17|1998-09-22|DELIVER IN PERSON|SHIP|accounts. ideas wake carefully against | +16045|905264|5265|2|29|36807.38|0.04|0.07|N|O|1998-08-26|1998-08-15|1998-09-24|DELIVER IN PERSON|REG AIR|ate quickly ir| +16045|762139|49685|3|12|14413.20|0.06|0.04|N|O|1998-09-29|1998-09-18|1998-10-21|COLLECT COD|MAIL|lithely final requests sleep afte| +16045|255247|17753|4|31|37269.13|0.04|0.06|N|O|1998-09-27|1998-08-31|1998-10-25|TAKE BACK RETURN|MAIL|decoys are. carefu| +16046|685788|35789|1|9|15963.75|0.00|0.03|N|O|1997-02-06|1997-02-19|1997-02-20|NONE|REG AIR|arefully silent theodolites| +16046|22886|47887|2|26|47030.88|0.07|0.01|N|O|1997-02-04|1997-01-09|1997-02-11|TAKE BACK RETURN|AIR|hely about the bli| +16046|631199|6224|3|25|28254.00|0.04|0.07|N|O|1997-01-31|1997-02-08|1997-02-16|DELIVER IN PERSON|TRUCK|. bold somas along the brave pl| +16046|549467|11978|4|7|10615.08|0.07|0.06|N|O|1997-02-10|1997-01-09|1997-02-27|TAKE BACK RETURN|SHIP|requests a| +16046|875387|25388|5|10|13623.40|0.02|0.06|N|O|1997-01-08|1997-02-28|1997-01-24|TAKE BACK RETURN|FOB|ests. carefully even asymptot| +16046|615001|27514|6|15|13739.55|0.00|0.04|N|O|1997-01-04|1997-01-27|1997-01-21|COLLECT COD|AIR|ironic pack| +16047|982769|45289|1|14|25924.08|0.09|0.07|N|O|1996-12-31|1997-02-02|1997-01-22|NONE|SHIP|xpress accounts sleep carefully quickly p| +16047|397266|9774|2|39|53166.75|0.07|0.01|N|O|1997-02-21|1997-01-14|1997-03-05|NONE|REG AIR|fully even deposits. blithely f| +16047|849494|49495|3|33|47633.85|0.08|0.02|N|O|1996-12-20|1997-01-12|1997-01-07|COLLECT COD|FOB|y. slyly final packages doze f| +16072|472737|35247|1|43|73517.53|0.09|0.06|N|O|1998-05-10|1998-04-30|1998-05-30|COLLECT COD|MAIL|against the regular ideas. careful| +16072|282817|32818|2|19|34196.20|0.10|0.06|N|O|1998-06-07|1998-05-10|1998-06-10|DELIVER IN PERSON|RAIL|unts haggle: blithely unu| +16072|297778|22789|3|47|83460.72|0.05|0.06|N|O|1998-06-07|1998-04-09|1998-06-27|TAKE BACK RETURN|SHIP|ular theodolite| +16072|747463|22492|4|17|25677.31|0.01|0.08|N|O|1998-04-28|1998-05-14|1998-04-29|DELIVER IN PERSON|RAIL|slyly bold requests. package| +16072|599190|24213|5|42|54145.14|0.04|0.08|N|O|1998-03-22|1998-05-19|1998-03-27|NONE|REG AIR|y whithout the carefully regul| +16073|325554|25555|1|45|71079.30|0.06|0.06|N|O|1998-02-28|1998-04-20|1998-03-18|NONE|FOB|sts serve after the express ac| +16073|579557|4580|2|28|45822.84|0.03|0.00|N|O|1998-04-01|1998-04-04|1998-04-17|NONE|RAIL| the final requests boost carefu| +16073|613631|38656|3|35|54061.00|0.01|0.00|N|O|1998-05-31|1998-03-19|1998-06-25|COLLECT COD|SHIP|st blithely sl| +16073|283423|45929|4|22|30941.02|0.03|0.01|N|O|1998-02-10|1998-03-03|1998-03-01|COLLECT COD|AIR|ckages maintain ir| +16073|482162|32163|5|24|27459.36|0.07|0.05|N|O|1998-02-16|1998-04-11|1998-02-19|COLLECT COD|MAIL|kages. quick requests sleep care| +16073|687333|49847|6|11|14523.30|0.02|0.01|N|O|1998-05-14|1998-04-06|1998-06-09|NONE|RAIL|o the carefully regular gifts. slyly r| +16074|861076|11077|1|28|29036.84|0.05|0.07|A|F|1992-07-04|1992-05-10|1992-08-01|DELIVER IN PERSON|REG AIR|pinto beans nag furiously regular inst| +16075|489252|26780|1|32|39719.36|0.07|0.03|A|F|1994-08-08|1994-06-07|1994-08-10|DELIVER IN PERSON|MAIL|structions. ev| +16075|854739|17257|2|21|35567.49|0.07|0.00|A|F|1994-05-17|1994-07-19|1994-05-26|COLLECT COD|TRUCK|odolites cajole quietly| +16075|587284|12307|3|6|8227.56|0.03|0.03|A|F|1994-08-05|1994-07-07|1994-08-13|DELIVER IN PERSON|FOB|eep blithely. s| +16076|163103|38110|1|22|25654.20|0.02|0.06|N|O|1997-06-15|1997-07-09|1997-06-30|NONE|SHIP|ly permanent accounts are slyly. furio| +16077|768638|18639|1|11|18772.60|0.02|0.04|A|F|1994-06-10|1994-07-26|1994-06-18|DELIVER IN PERSON|AIR|dinos are across| +16077|488978|26506|2|32|62942.40|0.01|0.04|R|F|1994-09-03|1994-07-16|1994-10-02|DELIVER IN PERSON|SHIP|about the carefully regul| +16077|247762|10267|3|48|82068.00|0.10|0.08|A|F|1994-07-14|1994-07-26|1994-08-02|DELIVER IN PERSON|AIR|uld affix. care| +16077|131369|6374|4|27|37809.72|0.07|0.07|R|F|1994-07-06|1994-07-07|1994-07-26|NONE|TRUCK|riously final requests| +16077|910431|35468|5|16|23062.24|0.09|0.00|R|F|1994-08-10|1994-07-26|1994-08-28|DELIVER IN PERSON|TRUCK|-- special requests sleep| +16078|925951|25952|1|16|31630.56|0.04|0.02|R|F|1993-08-24|1993-09-23|1993-09-01|TAKE BACK RETURN|RAIL|dazzle. bold| +16078|443858|43859|2|6|10810.98|0.02|0.01|A|F|1993-10-08|1993-10-03|1993-10-16|COLLECT COD|AIR|e blithely special package| +16078|913145|38182|3|30|34743.00|0.01|0.07|A|F|1993-08-24|1993-10-05|1993-09-05|NONE|AIR|atelets across the furiously speci| +16078|220652|20653|4|7|11008.48|0.07|0.06|A|F|1993-09-14|1993-10-12|1993-10-12|TAKE BACK RETURN|AIR|aggle fluffily slyly regular a| +16078|492117|4627|5|6|6654.54|0.05|0.07|A|F|1993-11-14|1993-09-16|1993-12-09|NONE|FOB|lay furiously care| +16079|636221|36222|1|46|53230.74|0.07|0.04|A|F|1992-12-27|1993-02-01|1993-01-02|COLLECT COD|SHIP| final theodolites. slyl| +16104|491322|16341|1|21|27579.30|0.05|0.01|N|O|1995-09-24|1995-09-15|1995-10-10|DELIVER IN PERSON|AIR|egular escapades. fu| +16104|642058|42059|2|40|40000.80|0.00|0.03|N|O|1995-07-06|1995-08-09|1995-07-19|DELIVER IN PERSON|RAIL|al, regular packages agains| +16104|60272|22774|3|28|34503.56|0.01|0.08|N|O|1995-09-02|1995-08-02|1995-09-10|TAKE BACK RETURN|RAIL|en ideas along| +16104|990281|40282|4|10|13712.40|0.08|0.01|N|O|1995-09-14|1995-08-05|1995-10-11|NONE|MAIL|eodolites. daringly bold deposit| +16105|119091|6598|1|47|52174.23|0.07|0.05|A|F|1993-08-20|1993-08-04|1993-08-25|NONE|AIR|posits sleep. fluffily stealthy | +16105|546902|9413|2|17|33130.96|0.01|0.04|A|F|1993-09-02|1993-09-15|1993-09-13|COLLECT COD|FOB|ckly final deposits across t| +16105|775509|540|3|7|11091.29|0.08|0.05|R|F|1993-09-01|1993-08-08|1993-09-26|NONE|MAIL|the deposits nag across th| +16106|858712|21230|1|24|40096.08|0.02|0.08|R|F|1992-06-07|1992-03-27|1992-06-15|NONE|AIR|y even decoys sleep across t| +16106|362125|24633|2|49|58168.39|0.02|0.02|A|F|1992-05-29|1992-03-28|1992-06-23|TAKE BACK RETURN|REG AIR|ously even forges| +16107|489014|26542|1|27|27080.73|0.00|0.00|R|F|1993-10-31|1993-12-08|1993-11-13|TAKE BACK RETURN|FOB|nal deposits? | +16108|876878|39396|1|13|24112.79|0.05|0.07|A|F|1992-10-04|1992-11-06|1992-11-01|COLLECT COD|SHIP|x-ray slyly. even dolphins do are acros| +16109|554969|4970|1|27|54646.38|0.03|0.08|R|F|1993-09-27|1993-08-07|1993-10-13|COLLECT COD|FOB|ccording to the pending, ironic| +16110|130580|43083|1|2|3221.16|0.00|0.00|N|O|1996-11-22|1996-11-02|1996-12-11|COLLECT COD|AIR|quests boost quickly ir| +16110|645064|20089|2|15|15135.45|0.09|0.02|N|O|1996-10-04|1996-10-24|1996-10-29|DELIVER IN PERSON|SHIP| haggle slyly fo| +16110|579447|16981|3|7|10684.94|0.03|0.06|N|O|1996-09-12|1996-10-18|1996-09-22|NONE|MAIL|ly final pac| +16110|755056|5057|4|42|46662.84|0.09|0.01|N|O|1996-12-17|1996-10-26|1997-01-13|NONE|AIR|structions use fluff| +16111|572042|34554|1|29|32306.58|0.04|0.03|N|O|1996-06-07|1996-06-07|1996-06-08|COLLECT COD|FOB|od fluffily a| +16111|309344|46863|2|18|24359.94|0.02|0.08|N|O|1996-06-24|1996-07-16|1996-07-04|NONE|SHIP|pecial dependencies| +16111|128570|3575|3|30|47957.10|0.01|0.05|N|O|1996-08-17|1996-07-02|1996-08-31|COLLECT COD|FOB|cies cajole carefully deposits. pin| +16111|866587|16588|4|26|40392.04|0.09|0.02|N|O|1996-06-24|1996-06-01|1996-07-15|DELIVER IN PERSON|RAIL|g to the slyly final instructions. furi| +16136|13040|38041|1|23|21919.92|0.04|0.05|A|F|1994-05-10|1994-06-12|1994-05-14|DELIVER IN PERSON|AIR|sly slyly ironic she| +16136|162719|37726|2|32|57014.72|0.08|0.07|R|F|1994-07-07|1994-06-20|1994-07-12|COLLECT COD|AIR| silent packages | +16136|808219|45768|3|8|9017.36|0.04|0.04|A|F|1994-04-08|1994-06-05|1994-04-26|NONE|MAIL|furiously across| +16136|732040|32041|4|42|45024.42|0.06|0.06|R|F|1994-04-27|1994-05-27|1994-05-23|TAKE BACK RETURN|TRUCK|phs beyond the unusual| +16136|389018|14033|5|6|6642.00|0.05|0.01|R|F|1994-04-03|1994-04-24|1994-04-28|COLLECT COD|FOB|hins. slyly slow reque| +16137|797986|35532|1|41|85441.95|0.07|0.06|A|F|1992-07-12|1992-07-29|1992-07-29|NONE|AIR|special, silent packages. slyly final foxes| +16137|735906|48421|2|4|7767.48|0.00|0.06|A|F|1992-08-11|1992-09-23|1992-08-20|COLLECT COD|MAIL|f the slyly final requests| +16138|786894|36895|1|46|91119.56|0.01|0.08|N|O|1997-09-05|1997-08-17|1997-10-02|NONE|REG AIR|asymptotes in| +16138|314240|26747|2|50|62711.50|0.07|0.06|N|O|1997-10-20|1997-08-02|1997-10-30|DELIVER IN PERSON|MAIL|y unusual excuses affix nev| +16138|429487|17012|3|13|18413.98|0.07|0.00|N|O|1997-06-29|1997-09-05|1997-07-26|DELIVER IN PERSON|RAIL| even deposits serve. theodo| +16138|384495|34496|4|30|47384.40|0.08|0.00|N|O|1997-07-20|1997-09-09|1997-08-04|DELIVER IN PERSON|RAIL|eodolites. fi| +16138|193763|31273|5|2|3713.52|0.05|0.05|N|O|1997-07-09|1997-08-13|1997-07-25|NONE|REG AIR| beans haggle agains| +16139|753630|3631|1|6|10101.60|0.06|0.01|R|F|1992-08-27|1992-07-16|1992-09-08|COLLECT COD|RAIL|kly. furiously ironic ti| +16139|243093|30606|2|23|23829.84|0.09|0.03|R|F|1992-06-27|1992-08-02|1992-07-24|COLLECT COD|AIR|counts. requests boo| +16139|662234|37261|3|35|41867.00|0.04|0.00|R|F|1992-06-26|1992-08-06|1992-07-12|DELIVER IN PERSON|SHIP|. unusual reque| +16139|162061|12062|4|7|7861.42|0.10|0.01|A|F|1992-08-12|1992-08-27|1992-08-13|COLLECT COD|FOB|lar excuse| +16139|744104|31647|5|47|53959.29|0.07|0.03|A|F|1992-08-27|1992-07-06|1992-08-29|COLLECT COD|RAIL|ously ironic instructions are f| +16140|901936|39491|1|14|27130.46|0.02|0.05|N|O|1996-06-08|1996-06-28|1996-07-04|NONE|MAIL| furiously regular packages. quic| +16140|829825|17374|2|35|61417.30|0.06|0.01|N|O|1996-06-14|1996-07-30|1996-06-15|COLLECT COD|FOB|nusual deposits detect. carefully ironic p| +16140|853151|28186|3|35|38643.85|0.06|0.04|N|O|1996-09-05|1996-08-08|1996-09-27|NONE|TRUCK|lithely express ac| +16140|903098|15617|4|25|27526.25|0.07|0.02|N|O|1996-07-17|1996-07-13|1996-08-01|COLLECT COD|AIR|its. carefully sl| +16141|663461|1001|1|26|37035.18|0.06|0.06|A|F|1994-09-24|1994-09-09|1994-10-09|NONE|FOB| at the quickly final escapades. sl| +16141|781257|31258|2|5|6691.10|0.07|0.06|A|F|1994-10-30|1994-09-26|1994-11-18|TAKE BACK RETURN|REG AIR|special dependencies. | +16141|569991|45014|3|14|28853.58|0.09|0.08|A|F|1994-09-14|1994-10-15|1994-10-02|COLLECT COD|REG AIR|efully enticing sheav| +16141|825304|37821|4|38|46711.88|0.05|0.06|A|F|1994-08-18|1994-10-04|1994-09-07|TAKE BACK RETURN|RAIL|instructions wake blithely furiously b| +16141|876410|13962|5|30|41591.10|0.03|0.07|A|F|1994-11-16|1994-09-28|1994-11-18|COLLECT COD|MAIL|ecial packages. ironic, final courts are| +16141|810277|22794|6|24|28493.52|0.06|0.03|A|F|1994-07-31|1994-09-10|1994-08-13|DELIVER IN PERSON|RAIL|ges are furiousl| +16141|322941|47954|7|34|66773.62|0.09|0.04|A|F|1994-11-15|1994-09-19|1994-11-16|COLLECT COD|REG AIR|kages use furiously fluffy attainme| +16142|658138|20652|1|8|8768.80|0.09|0.08|N|O|1997-07-16|1997-08-11|1997-07-26|DELIVER IN PERSON|REG AIR|ironic platelets can| +16143|560944|48478|1|15|30073.80|0.03|0.07|A|F|1994-09-11|1994-10-23|1994-09-18|NONE|MAIL|even, pending deposits| +16143|779760|29761|2|23|42313.79|0.07|0.02|R|F|1994-12-10|1994-11-30|1994-12-19|NONE|RAIL|iously regular deposits. fluffily final| +16143|411767|49292|3|8|13429.92|0.06|0.04|A|F|1994-10-09|1994-11-28|1994-10-16|COLLECT COD|MAIL| express pearls cajole slyly across the b| +16143|554580|4581|4|48|78458.88|0.05|0.04|R|F|1994-12-01|1994-11-27|1994-12-28|COLLECT COD|MAIL|ly even packages nag alongside of the blith| +16143|810369|22886|5|50|63966.00|0.08|0.02|R|F|1994-09-19|1994-11-25|1994-09-22|TAKE BACK RETURN|FOB|jole regular theodolites. slyly pendi| +16143|863303|855|6|12|15195.12|0.02|0.01|R|F|1994-09-29|1994-10-08|1994-10-19|DELIVER IN PERSON|REG AIR|s wake blithely according to the even th| +16143|530986|43497|7|21|42356.16|0.06|0.03|A|F|1994-10-03|1994-10-28|1994-10-26|NONE|FOB|. slyly special excuses wake f| +16168|281563|19079|1|5|7722.75|0.00|0.02|R|F|1992-05-04|1992-07-02|1992-05-30|DELIVER IN PERSON|TRUCK|rd the blithely unusual ideas doubt | +16169|231460|43965|1|19|26437.55|0.08|0.00|N|O|1998-02-18|1998-03-26|1998-03-03|DELIVER IN PERSON|SHIP|yly ironic deposits-- close dep| +16169|140152|2655|2|19|22650.85|0.02|0.01|N|O|1998-04-27|1998-02-26|1998-05-10|NONE|FOB|oost quickly. final theodolites use ca| +16169|526681|1702|3|7|11953.62|0.10|0.06|N|O|1998-02-22|1998-04-05|1998-03-14|TAKE BACK RETURN|TRUCK|l deposits are carefully. regular pac| +16169|916895|4450|4|42|80297.70|0.09|0.00|N|O|1998-05-11|1998-04-10|1998-05-12|COLLECT COD|REG AIR|usly special foxes cajole | +16169|242381|29894|5|27|35730.99|0.09|0.00|N|O|1998-03-20|1998-03-16|1998-03-27|COLLECT COD|REG AIR|ular platelet| +16169|689611|2125|6|41|65623.78|0.05|0.06|N|O|1998-05-06|1998-04-14|1998-05-28|NONE|TRUCK|ajole slyly along the bl| +16169|284515|9526|7|26|38987.00|0.08|0.01|N|O|1998-03-28|1998-04-13|1998-04-11|DELIVER IN PERSON|REG AIR|y after the furiously even ins| +16170|834317|34318|1|34|42543.18|0.07|0.00|A|F|1994-04-24|1994-07-08|1994-05-24|TAKE BACK RETURN|REG AIR|quests are fluffily grouc| +16171|859735|47287|1|19|32199.11|0.05|0.04|N|O|1996-05-27|1996-04-26|1996-06-12|TAKE BACK RETURN|FOB|lets are blithely. fluffily| +16171|555570|5571|2|26|42264.30|0.04|0.00|N|O|1996-02-11|1996-03-21|1996-03-08|TAKE BACK RETURN|AIR|requests at | +16172|971636|46675|1|42|71718.78|0.06|0.05|N|O|1997-03-29|1997-01-10|1997-04-20|TAKE BACK RETURN|TRUCK|ong the accoun| +16172|278975|41481|2|27|52756.92|0.09|0.05|N|O|1997-03-07|1997-01-13|1997-03-24|TAKE BACK RETURN|TRUCK|oxes are bold ideas. slyly expr| +16173|998184|48185|1|43|55132.02|0.01|0.00|N|O|1997-01-06|1997-01-28|1997-01-14|NONE|FOB|ic instructions lose ca| +16173|463222|750|2|40|47408.00|0.00|0.05|N|O|1996-12-02|1997-01-26|1996-12-29|DELIVER IN PERSON|FOB|fluffily ironic dolphins affix furiously sp| +16173|357441|7442|3|10|14984.30|0.05|0.06|N|O|1997-02-27|1997-01-28|1997-03-25|TAKE BACK RETURN|TRUCK|ickly regular ideas are. carefully eve| +16173|510361|35382|4|27|37026.18|0.06|0.08|N|O|1997-02-18|1997-01-31|1997-03-15|TAKE BACK RETURN|RAIL| even multipliers cajole car| +16173|629614|29615|5|9|13892.22|0.01|0.03|N|O|1997-01-29|1996-12-17|1997-02-09|DELIVER IN PERSON|FOB|its eat slyly| +16173|915643|15644|6|18|29854.80|0.03|0.02|N|O|1996-12-26|1997-02-12|1997-01-07|DELIVER IN PERSON|FOB|gle above the even, unusual theodolites.| +16174|210303|10304|1|46|55811.34|0.04|0.05|R|F|1993-07-02|1993-09-06|1993-07-31|NONE|REG AIR|ly even req| +16174|546153|8664|2|49|58757.37|0.08|0.03|R|F|1993-09-21|1993-09-13|1993-10-05|NONE|MAIL|lithely ironic a| +16174|190339|15346|3|11|15722.63|0.05|0.08|R|F|1993-09-06|1993-09-06|1993-09-25|COLLECT COD|REG AIR| ironic requests lo| +16175|196015|46016|1|5|5555.05|0.05|0.05|N|O|1998-02-08|1998-03-24|1998-03-03|NONE|FOB| courts. unusual pi| +16175|408155|8156|2|48|51030.24|0.09|0.04|N|O|1998-02-08|1998-02-12|1998-03-07|TAKE BACK RETURN|REG AIR| deposits along the furiousl| +16175|849949|37498|3|27|51270.30|0.07|0.03|N|O|1998-01-15|1998-03-01|1998-01-28|NONE|SHIP|above the accounts. unusual| +16200|157095|7096|1|46|52996.14|0.03|0.07|N|O|1995-11-13|1995-11-24|1995-12-13|TAKE BACK RETURN|FOB|eposits. ironic, expre| +16200|279594|42100|2|46|72384.68|0.00|0.00|N|O|1995-09-14|1995-10-14|1995-09-22|NONE|TRUCK|around the slyly pending a| +16200|125458|37961|3|11|16317.95|0.01|0.01|N|O|1995-11-15|1995-12-02|1995-12-07|COLLECT COD|REG AIR| dependencies. special requests wake| +16200|563165|13166|4|30|36844.20|0.10|0.08|N|O|1995-12-01|1995-10-08|1995-12-18|NONE|SHIP|quests believe across the express platelets| +16201|417363|17364|1|6|7682.04|0.05|0.01|A|F|1994-02-22|1994-01-01|1994-02-25|TAKE BACK RETURN|REG AIR|as. carefully ir| +16201|613427|964|2|28|37530.92|0.00|0.06|R|F|1993-11-19|1994-01-26|1993-12-08|NONE|FOB|g packages haggle. final, | +16201|861218|36253|3|34|40091.78|0.03|0.07|R|F|1994-02-07|1993-12-05|1994-03-01|COLLECT COD|AIR| special instr| +16201|479692|17220|4|48|80240.16|0.04|0.05|R|F|1994-02-21|1993-12-12|1994-03-01|TAKE BACK RETURN|RAIL|ccounts haggle slyly| +16201|170518|45525|5|46|73071.46|0.05|0.06|R|F|1993-12-24|1993-12-05|1994-01-14|DELIVER IN PERSON|REG AIR|p according | +16201|895929|33481|6|39|75070.32|0.10|0.04|R|F|1994-01-16|1993-12-23|1994-02-07|TAKE BACK RETURN|MAIL|oze alongside of the furio| +16201|862242|12243|7|33|39738.60|0.03|0.08|A|F|1993-11-30|1994-01-29|1993-12-20|DELIVER IN PERSON|TRUCK|otornis sleep furiously final, final t| +16202|688281|25821|1|7|8884.75|0.08|0.02|N|F|1995-05-28|1995-06-21|1995-06-23|NONE|TRUCK| slyly besides the f| +16202|932937|20492|2|48|94554.72|0.08|0.03|A|F|1995-04-25|1995-06-09|1995-05-11|TAKE BACK RETURN|SHIP|ar deposits whithout the regular deposits| +16202|855950|30985|3|24|45741.84|0.01|0.08|A|F|1995-05-03|1995-05-25|1995-05-17|TAKE BACK RETURN|FOB| regular deposits. unusual multipliers p| +16202|937714|37715|4|39|68315.13|0.06|0.03|N|F|1995-06-09|1995-05-23|1995-07-01|COLLECT COD|RAIL|y. slyly express deposits | +16202|158834|33841|5|14|26499.62|0.09|0.00|A|F|1995-04-20|1995-06-26|1995-05-20|COLLECT COD|SHIP|ularly. carefully| +16202|515998|3529|6|43|86600.71|0.07|0.04|N|F|1995-06-15|1995-05-25|1995-07-05|NONE|REG AIR|efully final deposit| +16202|369904|44919|7|21|41451.69|0.04|0.03|N|O|1995-07-16|1995-05-22|1995-08-06|TAKE BACK RETURN|SHIP|furiously dependencies. careful| +16203|961706|24226|1|46|81312.36|0.01|0.06|A|F|1993-11-28|1993-09-08|1993-12-18|NONE|FOB| use slyly| +16203|378802|16324|2|44|82754.76|0.01|0.07|A|F|1993-09-07|1993-09-21|1993-09-28|COLLECT COD|SHIP|e regular, bold platelets. | +16203|516821|29332|3|24|44107.20|0.05|0.07|R|F|1993-12-01|1993-10-09|1993-12-25|DELIVER IN PERSON|FOB|quests. furiously iro| +16203|203880|41393|4|5|8919.35|0.03|0.01|R|F|1993-08-16|1993-10-24|1993-09-03|DELIVER IN PERSON|SHIP|rmanent, bold theodolites. carefully un| +16203|602943|2944|5|38|70144.58|0.04|0.07|R|F|1993-09-11|1993-10-23|1993-09-13|TAKE BACK RETURN|FOB| packages detect blithely against the care| +16204|433169|33170|1|23|25349.22|0.03|0.05|N|O|1996-03-08|1996-02-21|1996-04-03|COLLECT COD|AIR|uthlessly enticing instructions. | +16204|269248|31754|2|14|17041.22|0.07|0.05|N|O|1996-01-01|1996-02-13|1996-01-05|DELIVER IN PERSON|AIR|lent, regular packa| +16204|239084|26597|3|22|22507.54|0.07|0.02|N|O|1996-02-19|1996-03-12|1996-03-09|NONE|RAIL|y unusual theodolites are furiously carefu| +16204|276209|26210|4|48|56889.12|0.03|0.03|N|O|1996-02-01|1996-03-10|1996-02-19|COLLECT COD|AIR|al theodolites. furiously i| +16204|232387|44892|5|47|62010.39|0.00|0.05|N|O|1996-01-19|1996-01-20|1996-01-25|DELIVER IN PERSON|REG AIR|ronic dolphins-- fluffily unusual| +16205|369056|44071|1|23|25875.92|0.07|0.08|N|O|1995-07-22|1995-08-19|1995-08-01|DELIVER IN PERSON|RAIL|ideas wake about the pen| +16206|825807|13356|1|19|32922.44|0.03|0.08|R|F|1992-04-01|1992-02-23|1992-04-02|COLLECT COD|TRUCK|ully. furiously express requests detect | +16206|331800|19319|2|34|62280.86|0.10|0.03|A|F|1992-05-08|1992-03-06|1992-05-16|DELIVER IN PERSON|MAIL|ly express accounts. care| +16206|553529|28552|3|12|18990.00|0.04|0.03|A|F|1992-02-09|1992-03-24|1992-02-27|NONE|AIR|ites nod. bold ac| +16206|156091|31098|4|44|50471.96|0.00|0.03|R|F|1992-01-25|1992-04-02|1992-02-19|DELIVER IN PERSON|FOB|slyly slyly regular deposits. pending, sil| +16206|418464|5989|5|26|35943.44|0.02|0.01|A|F|1992-04-09|1992-03-09|1992-05-09|COLLECT COD|SHIP|hin patterns | +16207|259569|22075|1|21|32099.55|0.07|0.05|N|O|1997-01-08|1996-12-28|1997-01-12|NONE|RAIL|the slyly bold | +16207|570981|46004|2|8|16415.68|0.04|0.02|N|O|1996-11-13|1996-11-14|1996-12-11|TAKE BACK RETURN|TRUCK|yly ironic ideas. blithely u| +16207|465550|40569|3|50|75776.50|0.01|0.04|N|O|1996-11-13|1996-12-09|1996-12-12|TAKE BACK RETURN|SHIP|y idle, bold foxes. furiously ironic asym| +16207|496191|46192|4|14|16620.38|0.03|0.02|N|O|1997-02-06|1996-12-07|1997-02-21|DELIVER IN PERSON|AIR|. regular foxes | +16232|294774|7280|1|16|28300.16|0.10|0.04|N|F|1995-06-11|1995-05-17|1995-07-10|COLLECT COD|SHIP|eas are quickly. ironic deposits wake c| +16232|263945|13946|2|47|89719.71|0.05|0.01|N|O|1995-07-16|1995-06-12|1995-08-12|DELIVER IN PERSON|MAIL|ests? blithely furious depo| +16232|120577|20578|3|31|49524.67|0.10|0.06|N|O|1995-06-22|1995-06-10|1995-06-27|COLLECT COD|RAIL|y pending | +16233|186461|36462|1|43|66540.78|0.10|0.05|N|O|1996-05-05|1996-06-19|1996-05-28|DELIVER IN PERSON|TRUCK|e according to the carefully thin excuses| +16233|838012|13045|2|50|47498.50|0.05|0.08|N|O|1996-08-05|1996-07-06|1996-08-30|COLLECT COD|REG AIR|gular asymptotes. fluffy requests are i| +16233|453394|15904|3|35|47157.95|0.04|0.05|N|O|1996-05-10|1996-06-19|1996-06-01|DELIVER IN PERSON|SHIP| bold requests; regular accounts wake| +16233|178334|28335|4|32|45194.56|0.02|0.04|N|O|1996-05-15|1996-06-18|1996-06-06|NONE|REG AIR|ounts. iro| +16233|247293|22302|5|8|9922.24|0.00|0.05|N|O|1996-07-11|1996-05-21|1996-07-22|COLLECT COD|FOB|. unusual theodolites| +16233|237450|12459|6|29|40235.76|0.04|0.03|N|O|1996-06-05|1996-07-09|1996-06-30|DELIVER IN PERSON|SHIP|inal escapades affix c| +16233|819638|7187|7|8|12460.72|0.06|0.07|N|O|1996-07-27|1996-06-25|1996-08-12|NONE|RAIL|ly special deposits. quickly regular re| +16234|654032|4033|1|33|32538.00|0.09|0.04|A|F|1993-01-06|1993-03-06|1993-01-30|DELIVER IN PERSON|MAIL|sy deposits n| +16234|299541|24552|2|15|23107.95|0.06|0.02|R|F|1993-01-27|1993-01-18|1993-01-29|COLLECT COD|FOB|tructions alongside of the fluffily| +16234|374512|49527|3|23|36489.50|0.07|0.02|A|F|1993-03-31|1993-01-19|1993-04-29|NONE|FOB|hely ironic requests | +16234|420793|45810|4|25|42844.25|0.05|0.08|R|F|1992-12-21|1993-02-28|1993-01-02|COLLECT COD|RAIL|pending dolphins. slyly bold requests sleep| +16234|254848|17354|5|49|88338.67|0.00|0.00|A|F|1993-04-10|1993-03-10|1993-04-29|NONE|TRUCK| breach quickly | +16234|222413|22414|6|44|58757.60|0.01|0.05|A|F|1993-04-07|1993-01-26|1993-04-21|DELIVER IN PERSON|TRUCK|wly. bold,| +16234|79002|29003|7|18|17658.00|0.09|0.06|R|F|1993-01-25|1993-03-14|1993-02-06|NONE|TRUCK|e carefully slyly ironic pa| +16235|775688|13234|1|22|38800.30|0.07|0.03|A|F|1992-03-25|1992-03-15|1992-04-06|COLLECT COD|MAIL|ing theodolites. ironic, final foxes doub| +16235|984185|9224|2|23|29190.22|0.08|0.07|A|F|1992-02-24|1992-03-12|1992-03-22|TAKE BACK RETURN|REG AIR|s nag. quickly regula| +16236|314103|39116|1|33|36863.97|0.07|0.00|N|O|1997-07-10|1997-09-06|1997-07-13|TAKE BACK RETURN|FOB|platelets. deposits believe. spec| +16236|120521|20522|2|19|29288.88|0.03|0.02|N|O|1997-07-07|1997-09-02|1997-07-24|TAKE BACK RETURN|REG AIR|sits cajole| +16236|580086|17620|3|42|48974.52|0.01|0.05|N|O|1997-08-17|1997-08-12|1997-08-27|NONE|AIR|lar, regular| +16236|489187|14206|4|27|31756.32|0.05|0.03|N|O|1997-08-15|1997-08-16|1997-08-19|TAKE BACK RETURN|MAIL|ual, unusu| +16236|764369|14370|5|39|55899.87|0.03|0.06|N|O|1997-06-24|1997-08-17|1997-07-19|COLLECT COD|REG AIR|nts nag among the slyly pending in| +16237|952239|14759|1|46|59394.74|0.02|0.05|A|F|1995-04-19|1995-05-10|1995-05-12|TAKE BACK RETURN|MAIL|instructions are furiously blithe| +16237|278005|15521|2|18|17693.82|0.05|0.02|A|F|1995-03-25|1995-04-12|1995-03-31|NONE|REG AIR|press accounts nag sometimes. caref| +16237|419225|31734|3|34|38902.80|0.04|0.00|A|F|1995-03-09|1995-04-25|1995-03-26|DELIVER IN PERSON|SHIP| cajole escapades. special packages across| +16237|907172|19691|4|11|12970.43|0.09|0.02|N|F|1995-05-23|1995-04-09|1995-06-20|COLLECT COD|AIR|l requests. ideas haggle. express dec| +16238|227488|15001|1|41|58034.27|0.04|0.03|N|O|1996-02-26|1996-02-17|1996-03-04|TAKE BACK RETURN|MAIL|ithely afte| +16238|387734|242|2|21|38256.12|0.10|0.08|N|O|1996-01-20|1996-03-20|1996-01-30|NONE|MAIL|ously pending ac| +16238|633259|8284|3|1|1192.22|0.04|0.06|N|O|1996-01-10|1996-04-01|1996-01-23|COLLECT COD|RAIL|sits. regular pinto bea| +16238|182199|19709|4|31|39716.89|0.10|0.03|N|O|1996-04-28|1996-03-15|1996-05-16|TAKE BACK RETURN|REG AIR|ites. blithely ironic asymptotes use. car| +16239|399128|36650|1|27|33131.97|0.04|0.06|N|O|1998-04-21|1998-02-24|1998-05-12|DELIVER IN PERSON|REG AIR|gular epitaphs; slyly even depo| +16239|137299|49802|2|4|5345.16|0.08|0.07|N|O|1998-04-11|1998-02-05|1998-05-06|NONE|FOB|ffix along| +16239|580222|30223|3|34|44274.80|0.02|0.07|N|O|1998-04-11|1998-01-31|1998-04-16|NONE|TRUCK|yly unusual dugouts cajole about the| +16239|779989|5020|4|11|22758.45|0.04|0.06|N|O|1998-02-04|1998-02-18|1998-02-08|NONE|AIR| across the carefully express pinto | +16264|520932|20933|1|20|39058.20|0.07|0.01|R|F|1992-09-22|1992-08-29|1992-10-13|COLLECT COD|RAIL| requests nag evenly. regular, expres| +16265|957842|7843|1|29|55094.20|0.09|0.02|N|O|1996-05-15|1996-07-04|1996-05-23|DELIVER IN PERSON|TRUCK| depths. idle instruction| +16265|437437|37438|2|44|60474.04|0.07|0.08|N|O|1996-06-21|1996-06-26|1996-07-20|TAKE BACK RETURN|RAIL|ckly against the blithely regular packa| +16266|310351|22858|1|8|10890.72|0.01|0.07|N|O|1998-07-16|1998-06-15|1998-07-28|TAKE BACK RETURN|REG AIR|egular accounts nag quietly accou| +16266|60748|10749|2|30|51262.20|0.01|0.05|N|O|1998-07-11|1998-05-16|1998-08-01|DELIVER IN PERSON|TRUCK|eposits boost slyly foxes. slyly ir| +16266|977404|14962|3|46|68142.56|0.07|0.02|N|O|1998-07-17|1998-06-10|1998-07-28|COLLECT COD|MAIL| accounts sleep slyly never regula| +16266|213215|38224|4|9|10153.80|0.03|0.06|N|O|1998-04-10|1998-06-09|1998-04-12|DELIVER IN PERSON|SHIP|he regular asympto| +16266|499866|12376|5|1|1865.84|0.08|0.05|N|O|1998-05-26|1998-04-28|1998-06-18|NONE|FOB|d theodolites unwind furiously. | +16266|240579|3084|6|16|24312.96|0.08|0.02|N|O|1998-04-10|1998-06-21|1998-05-10|DELIVER IN PERSON|SHIP|its nag furiou| +16266|395559|20574|7|49|81072.46|0.07|0.08|N|O|1998-05-20|1998-06-11|1998-06-19|DELIVER IN PERSON|AIR|pecial requests use | +16267|154917|17421|1|44|86764.04|0.06|0.07|N|O|1998-02-16|1998-03-13|1998-02-23|COLLECT COD|RAIL|silent platelets are furious| +16267|688140|38141|2|32|36099.52|0.06|0.00|N|O|1998-04-03|1998-03-21|1998-04-07|DELIVER IN PERSON|TRUCK|y even deposits | +16267|561547|24059|3|8|12868.16|0.01|0.01|N|O|1998-04-13|1998-03-16|1998-05-04|NONE|REG AIR| unusual requests detect. fi| +16267|906142|6143|4|34|39035.40|0.03|0.05|N|O|1998-03-22|1998-02-14|1998-04-10|NONE|REG AIR|equests. carefully ironic | +16268|736446|23989|1|31|45954.71|0.00|0.08|R|F|1993-04-04|1993-04-18|1993-05-02|NONE|MAIL|deposits cajole. even dependencies sleep| +16268|442993|5502|2|41|79374.77|0.09|0.00|R|F|1993-03-17|1993-03-27|1993-03-19|TAKE BACK RETURN|TRUCK|ously according to the furi| +16268|369591|44606|3|49|81368.42|0.08|0.07|R|F|1993-02-26|1993-04-27|1993-03-13|NONE|RAIL|eep. slyly final| +16268|705853|5854|4|3|5576.46|0.02|0.01|R|F|1993-05-09|1993-03-31|1993-06-05|DELIVER IN PERSON|SHIP|nding pinto beans af| +16268|256410|18916|5|32|43724.80|0.09|0.04|R|F|1993-04-29|1993-04-29|1993-05-07|TAKE BACK RETURN|MAIL|aringly pe| +16269|35288|22789|1|44|53824.32|0.01|0.02|R|F|1993-10-31|1993-09-23|1993-11-23|COLLECT COD|REG AIR|kly among the blithely regular deposits. | +16269|83680|21184|2|38|63219.84|0.08|0.02|A|F|1993-10-10|1993-09-25|1993-10-14|NONE|FOB|xpress dependencies. silent, re| +16269|393829|6337|3|8|15382.48|0.10|0.06|R|F|1993-10-13|1993-10-24|1993-10-17|DELIVER IN PERSON|REG AIR|l requests. silent acc| +16270|531810|31811|1|48|88405.92|0.01|0.03|R|F|1992-04-02|1992-05-05|1992-04-27|TAKE BACK RETURN|AIR|nag slowly pending packages. silent | +16270|118795|31298|2|28|50786.12|0.07|0.04|R|F|1992-06-11|1992-05-05|1992-06-25|TAKE BACK RETURN|FOB|al courts above the slyly unu| +16270|586948|11971|3|5|10174.60|0.09|0.02|A|F|1992-03-12|1992-05-02|1992-04-02|NONE|TRUCK|uctions. slyly b| +16270|833811|8844|4|29|50598.33|0.01|0.07|A|F|1992-06-18|1992-05-19|1992-07-13|DELIVER IN PERSON|REG AIR|jole. quickly even deposits alongside of t| +16270|846058|8575|5|46|46184.46|0.05|0.03|R|F|1992-06-01|1992-04-19|1992-06-15|DELIVER IN PERSON|TRUCK|ests wake carefully doggedly regu| +16270|689673|39674|6|15|24939.60|0.09|0.03|A|F|1992-03-29|1992-05-08|1992-04-17|DELIVER IN PERSON|TRUCK|lar package| +16271|793324|18355|1|50|70864.50|0.03|0.07|N|O|1997-08-25|1997-07-23|1997-09-20|DELIVER IN PERSON|RAIL|the bold packages. furiously final theod| +16271|380231|17753|2|10|13112.20|0.06|0.00|N|O|1997-08-07|1997-08-02|1997-08-09|COLLECT COD|REG AIR|along the carefully bold| +16271|526674|39185|3|31|52720.15|0.10|0.04|N|O|1997-08-21|1997-07-16|1997-09-08|TAKE BACK RETURN|FOB|riously final packages affix car| +16271|803412|3413|4|38|49984.06|0.05|0.08|N|O|1997-08-18|1997-08-13|1997-09-15|TAKE BACK RETURN|SHIP|uickly thin epitaphs. quickly regul| +16271|944453|6972|5|12|17968.92|0.06|0.04|N|O|1997-07-30|1997-08-13|1997-08-18|COLLECT COD|SHIP|beans sleep. patterns sleep | +16296|709374|21889|1|23|31816.82|0.07|0.02|N|O|1997-11-30|1997-11-24|1997-12-25|NONE|FOB|usual requests | +16296|448540|11049|2|34|50609.68|0.01|0.08|N|O|1998-01-05|1997-11-10|1998-02-03|NONE|AIR|lar dependencies. unusual, ironic pac| +16296|600463|12976|3|20|27268.60|0.07|0.03|N|O|1998-01-11|1997-12-12|1998-01-31|COLLECT COD|TRUCK|lites. furio| +16296|979480|4519|4|17|26510.48|0.03|0.02|N|O|1997-12-30|1998-01-02|1998-01-10|NONE|RAIL|rate furiously ironic instructions. regul| +16296|118947|18948|5|28|55046.32|0.06|0.02|N|O|1997-12-22|1998-01-04|1997-12-28|TAKE BACK RETURN|REG AIR|al asymptotes w| +16297|322340|34847|1|1|1362.33|0.10|0.02|A|F|1995-05-18|1995-06-06|1995-05-19|NONE|FOB| cajole furiously. pending requests aft| +16297|558051|45585|2|11|12199.33|0.07|0.02|R|F|1995-03-28|1995-05-21|1995-04-21|DELIVER IN PERSON|AIR|aggle blithely. iro| +16297|162510|25014|3|2|3145.02|0.07|0.03|N|F|1995-06-08|1995-05-05|1995-06-29|NONE|TRUCK|c deposits along the slyly close depths | +16297|302577|27590|4|49|77398.44|0.00|0.06|A|F|1995-05-10|1995-05-17|1995-05-14|COLLECT COD|REG AIR|jole slyly. ironic platelets use slyl| +16297|405210|5211|5|9|10036.71|0.00|0.06|N|O|1995-07-11|1995-06-18|1995-07-26|DELIVER IN PERSON|SHIP| ironic accounts sleep carefully even d| +16297|363863|13864|6|36|69366.60|0.10|0.03|N|F|1995-06-09|1995-04-22|1995-07-07|NONE|AIR|e blithely slyly regular tithe| +16298|444700|19717|1|6|9868.08|0.10|0.00|N|O|1997-08-28|1997-08-29|1997-09-20|DELIVER IN PERSON|REG AIR|tornis. carefully final pinto beans ar| +16298|66531|16532|2|43|64393.79|0.06|0.05|N|O|1997-08-09|1997-08-11|1997-08-18|TAKE BACK RETURN|TRUCK|eep slyly. carefully regular fo| +16298|182099|7106|3|37|43700.33|0.00|0.02|N|O|1997-08-02|1997-09-11|1997-08-23|COLLECT COD|FOB|osits haggle slyly around the even dugou| +16298|535697|48208|4|43|74504.81|0.10|0.05|N|O|1997-07-26|1997-09-01|1997-08-21|DELIVER IN PERSON|MAIL|le carefully quickly enticing reque| +16299|530909|43420|1|33|64016.04|0.10|0.02|R|F|1992-05-21|1992-04-04|1992-06-03|COLLECT COD|AIR|times ironic accounts sleep carefu| +16299|972306|9864|2|40|55130.40|0.05|0.07|R|F|1992-02-09|1992-05-02|1992-02-27|TAKE BACK RETURN|RAIL| cajole blithely unus| +16299|532488|20019|3|18|27368.28|0.06|0.02|R|F|1992-02-08|1992-03-22|1992-02-15|NONE|REG AIR|ggle quickly. furiously exp| +16300|641894|16919|1|9|16522.74|0.05|0.01|N|O|1995-10-27|1995-10-25|1995-10-28|COLLECT COD|TRUCK|quickly silent pinto beans. u| +16301|785289|35290|1|41|56344.25|0.08|0.04|R|F|1994-01-24|1994-02-17|1994-02-12|DELIVER IN PERSON|RAIL|gular requ| +16301|344314|44315|2|43|58406.90|0.10|0.07|A|F|1994-02-18|1994-03-24|1994-02-19|NONE|SHIP|express requests. final requests | +16301|870799|45834|3|35|61941.25|0.10|0.02|A|F|1994-03-08|1994-02-15|1994-03-31|DELIVER IN PERSON|MAIL|ounts cajole slyly acros| +16301|509235|46766|4|49|60966.29|0.01|0.06|A|F|1994-01-31|1994-03-09|1994-02-28|NONE|REG AIR|y even packages cajole blithely again| +16301|703700|3701|5|45|76665.15|0.00|0.07|R|F|1994-02-22|1994-03-25|1994-03-23|NONE|AIR|nooze against th| +16302|453682|28701|1|49|80147.34|0.03|0.05|N|O|1996-06-14|1996-07-25|1996-06-16|NONE|REG AIR|ctions. slyly regular de| +16302|26230|13731|2|49|56655.27|0.03|0.08|N|O|1996-07-07|1996-07-11|1996-07-13|DELIVER IN PERSON|RAIL|accounts cajole blithely along the s| +16302|830940|5973|3|14|26192.60|0.02|0.00|N|O|1996-06-28|1996-07-13|1996-07-15|COLLECT COD|MAIL|equests haggle qu| +16302|597783|10295|4|35|65826.60|0.10|0.01|N|O|1996-06-14|1996-08-10|1996-07-14|COLLECT COD|FOB|ular, even depo| +16303|268179|18180|1|15|17207.40|0.08|0.08|N|O|1996-12-27|1997-03-01|1997-01-23|TAKE BACK RETURN|RAIL|aggle furiously. | +16303|271227|8743|2|35|41937.35|0.08|0.07|N|O|1996-12-24|1997-02-14|1996-12-30|DELIVER IN PERSON|MAIL|eans? special accounts| +16303|506812|6813|3|7|12731.53|0.03|0.08|N|O|1997-03-04|1997-02-03|1997-03-21|COLLECT COD|TRUCK|se special, ironic braids. blith| +16303|977638|15196|4|37|63476.83|0.00|0.07|N|O|1997-02-24|1997-03-15|1997-03-09|TAKE BACK RETURN|AIR|y idle requests! carefully final pint| +16328|218442|43451|1|10|13604.30|0.02|0.03|N|O|1996-12-15|1996-12-30|1997-01-05|TAKE BACK RETURN|TRUCK|against the dependenci| +16328|350963|25978|2|47|94655.65|0.09|0.03|N|O|1997-02-11|1997-01-05|1997-02-19|DELIVER IN PERSON|RAIL|al ideas might cajole| +16328|622477|22478|3|8|11195.52|0.09|0.07|N|O|1996-12-18|1997-01-23|1997-01-10|COLLECT COD|AIR|ses cajole blithely even Tir| +16329|334730|47237|1|19|33529.68|0.01|0.00|N|O|1998-07-22|1998-05-30|1998-08-13|COLLECT COD|REG AIR| regular ideas wake carefully| +16329|797178|47179|2|28|35703.92|0.07|0.07|N|O|1998-05-24|1998-05-06|1998-06-14|DELIVER IN PERSON|AIR|es against the furiously regular packages | +16330|95961|8463|1|8|15655.68|0.02|0.05|N|O|1997-06-03|1997-07-03|1997-07-02|COLLECT COD|SHIP|lly blithely express p| +16330|804786|42335|2|27|45649.98|0.06|0.08|N|O|1997-08-15|1997-07-08|1997-08-20|NONE|RAIL|re. regular realms according t| +16330|29753|17254|3|1|1682.75|0.08|0.06|N|O|1997-06-16|1997-07-28|1997-07-05|TAKE BACK RETURN|RAIL|ly final requests. slyly even ins| +16330|58445|45949|4|1|1403.44|0.02|0.07|N|O|1997-06-03|1997-06-15|1997-06-30|NONE|FOB|en attainments above the carefully iro| +16330|275585|596|5|38|59301.66|0.02|0.06|N|O|1997-05-08|1997-06-13|1997-05-24|COLLECT COD|AIR|nts boost quickly furiously pending instr| +16331|571110|46133|1|7|8267.63|0.00|0.08|N|O|1996-12-04|1996-11-17|1997-01-03|TAKE BACK RETURN|SHIP|es. instruc| +16331|637125|12150|2|37|39297.33|0.00|0.08|N|O|1996-11-08|1996-11-13|1996-11-09|NONE|RAIL|final foxes detect slyly furiously iron| +16331|154729|4730|3|42|74916.24|0.03|0.04|N|O|1996-11-04|1996-10-26|1996-11-11|DELIVER IN PERSON|AIR|al notornis haggle enticingly unusual, bo| +16331|520550|8081|4|4|6282.12|0.02|0.07|N|O|1996-11-27|1996-12-11|1996-12-13|DELIVER IN PERSON|RAIL|ronic forges. furious depths boost | +16331|877938|27939|5|31|59392.59|0.10|0.08|N|O|1997-01-01|1996-10-17|1997-01-26|NONE|FOB|r requests need to sleep carefully. quick | +16331|497274|34802|6|5|6356.25|0.08|0.07|N|O|1997-01-07|1996-10-18|1997-01-12|NONE|SHIP| bold forges. deposits sleep carefully bl| +16331|681246|6273|7|30|36816.30|0.07|0.02|N|O|1996-10-12|1996-10-29|1996-10-28|DELIVER IN PERSON|MAIL|ages. final instructions| +16332|686562|11589|1|29|44907.37|0.07|0.04|A|F|1992-05-15|1992-03-02|1992-05-28|DELIVER IN PERSON|AIR|en packages. ironic asymptotes | +16332|34702|34703|2|13|21277.10|0.06|0.01|R|F|1992-04-02|1992-04-04|1992-05-01|DELIVER IN PERSON|MAIL|. even foxes wake blithely. expres| +16332|227792|2801|3|30|51593.40|0.04|0.04|R|F|1992-01-27|1992-04-17|1992-02-04|COLLECT COD|AIR| unusual packages. bold so| +16332|489540|14559|4|13|19883.76|0.00|0.02|R|F|1992-04-13|1992-03-04|1992-04-24|DELIVER IN PERSON|MAIL|urts haggle quickly bold, exp| +16333|526948|26949|1|30|59247.60|0.06|0.01|N|O|1995-11-24|1996-01-13|1995-12-12|DELIVER IN PERSON|MAIL|stealthily alongside of t| +16334|715388|15389|1|48|67360.80|0.01|0.00|N|O|1998-02-05|1998-01-28|1998-02-09|TAKE BACK RETURN|RAIL|y. ironic, reg| +16334|512238|24749|2|40|50008.40|0.08|0.07|N|O|1997-12-27|1998-02-03|1998-01-12|DELIVER IN PERSON|MAIL|n, pending deposits. bold instruction| +16334|180910|18420|3|24|47781.84|0.01|0.01|N|O|1997-12-01|1998-01-03|1997-12-23|NONE|FOB|en deposits against the furiously u| +16334|538604|13625|4|10|16425.80|0.10|0.08|N|O|1997-12-23|1998-02-09|1998-01-22|TAKE BACK RETURN|MAIL|quests. carefull| +16334|303355|28368|5|8|10866.72|0.00|0.07|N|O|1998-03-08|1998-02-09|1998-04-06|TAKE BACK RETURN|REG AIR|mold furiously about the pending| +16334|479990|29991|6|34|66978.98|0.04|0.04|N|O|1997-12-22|1998-02-11|1997-12-26|DELIVER IN PERSON|SHIP|ng theodolites use blithely at the fluffi| +16335|224735|37240|1|24|39833.28|0.06|0.06|R|F|1994-12-20|1994-11-23|1995-01-01|DELIVER IN PERSON|REG AIR|t final requests. dependencies are slyl| +16360|24955|24956|1|11|20679.45|0.07|0.03|R|F|1992-07-09|1992-05-29|1992-07-24|TAKE BACK RETURN|SHIP|sly. regular| +16361|523370|23371|1|32|44587.20|0.02|0.08|N|O|1998-05-21|1998-07-31|1998-05-30|TAKE BACK RETURN|AIR| dolphins cajole ag| +16361|277968|27969|2|36|70054.20|0.10|0.04|N|O|1998-08-27|1998-08-10|1998-08-28|NONE|FOB| the even deposits. special pinto| +16361|797350|9866|3|13|18815.16|0.04|0.06|N|O|1998-08-07|1998-06-30|1998-09-06|TAKE BACK RETURN|AIR|he pinto beans. blithely dogge| +16361|46064|21065|4|31|31311.86|0.08|0.05|N|O|1998-08-24|1998-07-11|1998-08-29|TAKE BACK RETURN|RAIL|counts wake carefully fluffil| +16361|195350|7854|5|13|18789.55|0.08|0.08|N|O|1998-08-29|1998-07-05|1998-09-04|TAKE BACK RETURN|TRUCK|instructions haggl| +16362|949502|24539|1|7|10860.22|0.09|0.05|A|F|1993-02-18|1993-01-20|1993-02-24|TAKE BACK RETURN|SHIP| packages. slyly bold| +16362|269574|32080|2|28|43219.68|0.03|0.08|A|F|1993-01-10|1993-01-16|1993-01-30|TAKE BACK RETURN|REG AIR|ic requests integrate blithely after| +16362|721722|9265|3|42|73234.98|0.01|0.03|A|F|1993-02-23|1993-02-16|1993-03-18|DELIVER IN PERSON|AIR|g the blithely ironic deposits; perman| +16363|723691|23692|1|15|25719.90|0.07|0.01|N|O|1996-09-15|1996-08-17|1996-09-16|TAKE BACK RETURN|RAIL|bold, slow instructions cajole caref| +16364|303581|3582|1|9|14261.13|0.05|0.06|N|O|1997-02-03|1997-03-23|1997-03-05|DELIVER IN PERSON|REG AIR|kages. bold ideas hag| +16364|270676|8192|2|4|6586.64|0.10|0.08|N|O|1997-04-10|1997-03-14|1997-04-15|NONE|TRUCK|usly. even attainments s| +16364|246573|9078|3|24|36469.44|0.04|0.06|N|O|1997-05-15|1997-04-17|1997-06-13|COLLECT COD|TRUCK|l packages. slyly regular pinto bea| +16364|151329|13833|4|44|60734.08|0.02|0.03|N|O|1997-02-27|1997-03-14|1997-03-14|DELIVER IN PERSON|RAIL|ly after the even, pending theodolites. iro| +16364|381089|31090|5|10|11700.70|0.01|0.02|N|O|1997-04-26|1997-03-19|1997-05-24|TAKE BACK RETURN|RAIL|ccounts. carefully fi| +16364|955862|43420|6|42|80548.44|0.07|0.05|N|O|1997-04-16|1997-03-22|1997-05-14|TAKE BACK RETURN|AIR|nding requests boost| +16365|519587|7118|1|31|49803.36|0.05|0.01|N|O|1997-12-19|1998-01-19|1998-01-08|DELIVER IN PERSON|TRUCK|iously against the regular, special a| +16365|690612|28152|2|18|28846.44|0.07|0.02|N|O|1997-11-23|1998-01-20|1997-12-15|NONE|MAIL|ly. special,| +16366|827556|15105|1|4|5934.04|0.03|0.01|N|O|1997-02-03|1997-02-21|1997-03-01|COLLECT COD|RAIL|r packages nag blithely slyly regular asy| +16366|730280|30281|2|44|57651.00|0.10|0.08|N|O|1997-02-05|1997-03-19|1997-02-17|TAKE BACK RETURN|RAIL|vely against the carefully p| +16366|814029|39062|3|5|4714.90|0.05|0.01|N|O|1997-01-28|1997-02-27|1997-02-24|COLLECT COD|SHIP|er the bold,| +16366|385249|22771|4|40|53369.20|0.03|0.05|N|O|1997-03-02|1997-02-06|1997-03-14|NONE|MAIL|s print. ironic ideas above the ev| +16366|879063|29064|5|7|7294.14|0.10|0.08|N|O|1997-01-07|1997-02-24|1997-01-20|TAKE BACK RETURN|RAIL|the blithely even depos| +16366|400961|38486|6|42|78201.48|0.04|0.08|N|O|1997-02-07|1997-03-16|1997-02-18|TAKE BACK RETURN|FOB|lites integrate about the furiously regu| +16367|692106|29646|1|19|20863.33|0.00|0.08|R|F|1995-04-18|1995-03-27|1995-05-02|NONE|SHIP|lently special requests? excuses cajole! r| +16367|224948|49957|2|35|65552.55|0.10|0.08|A|F|1995-03-06|1995-03-30|1995-03-27|TAKE BACK RETURN|FOB|deposits. slyly final waters boost | +16367|688761|26301|3|25|43743.25|0.06|0.04|R|F|1995-02-25|1995-02-25|1995-03-03|DELIVER IN PERSON|MAIL|sts was furiously. bold, slow | +16392|792717|42718|1|49|88674.32|0.07|0.06|N|O|1996-12-15|1996-12-18|1997-01-07|NONE|AIR|ons. slyly even ex| +16392|181744|6751|2|41|74855.34|0.00|0.05|N|O|1996-12-14|1996-12-11|1996-12-19|NONE|MAIL| final ideas hinder acro| +16393|199298|11802|1|10|13972.90|0.03|0.05|A|F|1992-12-09|1992-12-20|1992-12-30|DELIVER IN PERSON|TRUCK|c packages use furiously. bold package| +16393|588042|554|2|12|13560.24|0.01|0.03|R|F|1993-01-08|1992-12-05|1993-02-01|DELIVER IN PERSON|AIR| even platelets haggle. carefu| +16393|209093|34102|3|19|19039.52|0.06|0.01|A|F|1993-01-10|1992-11-30|1993-02-06|COLLECT COD|TRUCK| beans sleep slyly ironic theodolites. r| +16393|209630|34639|4|40|61584.80|0.06|0.08|R|F|1992-12-26|1993-01-03|1993-01-02|COLLECT COD|TRUCK|es might cajole carefully regular pinto| +16393|246285|8790|5|4|4925.08|0.06|0.06|R|F|1993-02-05|1992-11-28|1993-03-06|TAKE BACK RETURN|AIR|uickly unusual instructions at the expres| +16393|301062|13569|6|5|5315.25|0.05|0.02|R|F|1992-12-25|1992-11-12|1993-01-20|NONE|REG AIR|hely regular depths. carefull| +16393|941492|4011|7|16|24535.20|0.02|0.08|A|F|1992-12-15|1992-11-11|1992-12-17|TAKE BACK RETURN|TRUCK|lly enticing requests. fluffily | +16394|647116|9629|1|1|1063.08|0.07|0.05|N|O|1998-07-05|1998-06-24|1998-07-10|COLLECT COD|MAIL|kages. carefully regula| +16394|75656|38158|2|3|4894.95|0.05|0.01|N|O|1998-05-13|1998-05-20|1998-05-17|COLLECT COD|AIR| boost. slyly pend| +16395|393786|31308|1|24|45114.48|0.08|0.02|R|F|1992-11-24|1992-12-04|1992-12-16|DELIVER IN PERSON|SHIP|uests thrash. fluffi| +16396|308570|46089|1|32|50513.92|0.00|0.05|A|F|1993-07-12|1993-07-09|1993-07-22|COLLECT COD|MAIL|ironic foxes ar| +16396|122389|22390|2|24|33873.12|0.05|0.08|A|F|1993-08-14|1993-06-11|1993-08-23|NONE|MAIL|fluffily. slyly final ideas kind| +16396|977202|2241|3|36|46049.76|0.01|0.05|A|F|1993-08-24|1993-07-15|1993-09-11|NONE|MAIL| the furiously express accounts wake | +16397|490664|28192|1|10|16546.40|0.05|0.04|N|O|1998-06-23|1998-06-13|1998-07-12|TAKE BACK RETURN|RAIL|lar accounts. care| +16397|588274|38275|2|45|61301.25|0.03|0.08|N|O|1998-05-07|1998-06-19|1998-05-23|DELIVER IN PERSON|FOB| slyly. blithely even requests | +16397|113668|26171|3|16|26906.56|0.07|0.05|N|O|1998-08-17|1998-07-21|1998-09-15|DELIVER IN PERSON|AIR|y across the express platelets. iro| +16397|412135|24644|4|24|25130.64|0.00|0.03|N|O|1998-06-14|1998-06-02|1998-07-09|TAKE BACK RETURN|AIR| against the | +16397|741528|16557|5|13|20403.37|0.09|0.06|N|O|1998-08-27|1998-07-08|1998-09-19|COLLECT COD|MAIL|nst the ironic ideas. final, ir| +16397|851879|14397|6|9|16477.47|0.08|0.08|N|O|1998-07-31|1998-07-31|1998-08-26|NONE|MAIL|y even theodolites. carefully f| +16398|385175|47683|1|6|7560.96|0.04|0.08|N|O|1995-07-27|1995-08-08|1995-08-26|COLLECT COD|SHIP|ss excuses. packages sleep caref| +16398|634686|47199|2|17|27551.05|0.00|0.01|N|O|1995-09-17|1995-08-12|1995-10-15|DELIVER IN PERSON|TRUCK|ep quickly. quickly ironic requests | +16398|155722|18226|3|20|35554.40|0.05|0.00|N|O|1995-09-25|1995-09-02|1995-10-16|TAKE BACK RETURN|MAIL|bold, even de| +16398|215104|27609|4|45|45859.05|0.00|0.03|N|O|1995-07-11|1995-08-09|1995-07-21|TAKE BACK RETURN|FOB|ly across the ironic d| +16398|238431|13440|5|4|5477.68|0.06|0.03|N|O|1995-07-10|1995-08-30|1995-07-31|TAKE BACK RETURN|FOB|cajole. quickly spec| +16398|299734|37250|6|13|22538.36|0.10|0.04|N|O|1995-08-16|1995-09-05|1995-09-06|NONE|MAIL|y express ideas. furiously regular ac| +16399|4961|42462|1|8|14927.68|0.10|0.00|N|O|1996-05-25|1996-06-14|1996-05-31|NONE|FOB|ly slyly pending deposits| +16399|378405|28406|2|45|66752.55|0.09|0.08|N|O|1996-07-28|1996-06-08|1996-08-07|DELIVER IN PERSON|REG AIR|ously regular package| +16399|851353|26388|3|12|15651.72|0.01|0.06|N|O|1996-07-15|1996-06-24|1996-08-11|COLLECT COD|TRUCK|ickly even instr| +16399|678928|3955|4|23|43858.47|0.10|0.00|N|O|1996-05-12|1996-07-20|1996-05-13|COLLECT COD|MAIL|thely even pinto beans ac| +16424|900868|869|1|17|31769.94|0.07|0.07|N|O|1997-09-07|1997-11-16|1997-10-01|TAKE BACK RETURN|RAIL|the accounts. evenly | +16424|875046|37564|2|37|37777.00|0.09|0.05|N|O|1997-10-28|1997-11-09|1997-11-10|DELIVER IN PERSON|RAIL|. regular, r| +16424|883398|20950|3|4|5525.40|0.09|0.03|N|O|1997-12-10|1997-10-01|1997-12-16|NONE|REG AIR|eposits nag carefully e| +16424|264843|39854|4|9|16270.47|0.03|0.07|N|O|1997-12-12|1997-11-20|1997-12-23|NONE|REG AIR|lithely final request| +16424|203087|15592|5|47|46533.29|0.05|0.01|N|O|1997-12-20|1997-11-04|1997-12-27|TAKE BACK RETURN|SHIP|use final, regular deposit| +16425|774663|49694|1|26|45178.38|0.07|0.07|N|O|1997-10-31|1997-08-23|1997-11-06|NONE|REG AIR| deposits cajole furiously a| +16426|431064|43573|1|5|4975.20|0.06|0.08|N|O|1995-08-02|1995-08-06|1995-08-25|COLLECT COD|FOB|ake slyly silent accounts. carefully | +16426|886905|36906|2|17|32161.62|0.08|0.06|R|F|1995-05-20|1995-08-09|1995-05-24|TAKE BACK RETURN|RAIL| believe slyly. quickly regular i| +16426|211139|48652|3|9|9451.08|0.04|0.02|A|F|1995-05-21|1995-06-25|1995-06-15|DELIVER IN PERSON|MAIL|. quickly pending packages| +16426|596623|34157|4|37|63625.20|0.05|0.06|N|O|1995-08-22|1995-06-17|1995-09-15|COLLECT COD|AIR| cajole slyly. blithely ironic id| +16426|429872|4889|5|35|63064.75|0.07|0.04|A|F|1995-05-18|1995-08-01|1995-06-11|NONE|TRUCK| carefully special pl| +16426|851377|1378|6|29|38521.57|0.04|0.03|A|F|1995-05-30|1995-07-24|1995-06-05|DELIVER IN PERSON|SHIP| blithely about | +16426|78879|28880|7|46|85462.02|0.10|0.00|N|O|1995-08-31|1995-07-22|1995-09-16|DELIVER IN PERSON|REG AIR|al ideas maintain carefully special | +16427|704987|30016|1|24|47806.80|0.02|0.05|N|O|1998-01-16|1998-02-16|1998-01-27|COLLECT COD|TRUCK|counts. furiously regular i| +16427|716198|16199|2|47|57065.52|0.00|0.05|N|O|1998-03-11|1998-02-05|1998-03-13|TAKE BACK RETURN|MAIL|the ideas; pending pat| +16427|125300|305|3|41|54337.30|0.10|0.01|N|O|1998-02-05|1998-02-01|1998-02-22|DELIVER IN PERSON|TRUCK| theodolites. ironi| +16427|905001|30038|4|42|42250.32|0.01|0.00|N|O|1998-03-20|1998-01-10|1998-04-14|DELIVER IN PERSON|FOB|he slyly final requests. furious| +16427|346345|8852|5|38|52870.54|0.10|0.01|N|O|1997-12-25|1998-01-15|1998-01-14|TAKE BACK RETURN|RAIL|ses wake furiously | +16427|4421|16922|6|49|64945.58|0.10|0.05|N|O|1997-12-11|1998-01-03|1997-12-15|TAKE BACK RETURN|MAIL|lly blithely even package| +16428|287314|49820|1|25|32532.50|0.04|0.05|R|F|1992-11-20|1992-10-04|1992-12-06|DELIVER IN PERSON|MAIL| ironic theodolites. final | +16428|877464|27465|2|7|10089.94|0.09|0.08|A|F|1992-10-22|1992-10-04|1992-11-19|COLLECT COD|REG AIR|ual theodolites boost above the fluffy, ex| +16428|533678|46189|3|4|6846.60|0.04|0.03|R|F|1992-10-06|1992-11-17|1992-10-09|COLLECT COD|SHIP|telets use s| +16429|72839|10343|1|6|10870.98|0.04|0.01|A|F|1993-07-03|1993-09-13|1993-07-09|TAKE BACK RETURN|REG AIR|he express, | +16429|200852|853|2|34|59596.56|0.00|0.07|A|F|1993-08-04|1993-07-25|1993-09-02|TAKE BACK RETURN|MAIL| the quickly special waters| +16429|715186|2729|3|34|40839.10|0.00|0.06|R|F|1993-10-17|1993-08-05|1993-10-28|COLLECT COD|REG AIR|ithely even foxes wake slyly. slyly u| +16429|121065|8572|4|44|47786.64|0.05|0.01|A|F|1993-09-05|1993-08-24|1993-09-09|NONE|AIR| bold excuses. | +16430|903252|40807|1|33|41421.93|0.03|0.05|N|O|1998-08-13|1998-08-13|1998-08-16|DELIVER IN PERSON|RAIL|he requests nag along the | +16430|947567|10086|2|16|25832.32|0.03|0.01|N|O|1998-08-30|1998-07-31|1998-09-24|NONE|TRUCK|e silent packages h| +16430|745484|7999|3|27|41295.15|0.10|0.00|N|O|1998-07-13|1998-08-15|1998-08-04|COLLECT COD|SHIP| express excuses. furiou| +16430|346308|33827|4|27|36565.83|0.03|0.07|N|O|1998-07-08|1998-08-14|1998-07-09|TAKE BACK RETURN|SHIP|kly special asymptotes cajol| +16430|398010|48011|5|28|31024.00|0.06|0.04|N|O|1998-08-14|1998-08-16|1998-08-16|COLLECT COD|RAIL|lly final accoun| +16431|289292|39293|1|46|58938.88|0.10|0.03|R|F|1992-09-26|1992-11-04|1992-09-30|DELIVER IN PERSON|FOB|ly regular d| +16431|129821|17328|2|18|33314.76|0.05|0.02|R|F|1992-09-19|1992-11-16|1992-09-23|TAKE BACK RETURN|TRUCK|ely unusual packages. quickly special instr| +16431|894891|19926|3|4|7543.40|0.07|0.05|R|F|1992-11-11|1992-09-27|1992-12-08|DELIVER IN PERSON|RAIL|sly after the slyly ironic r| +16456|309382|9383|1|25|34784.25|0.02|0.00|N|O|1997-11-11|1997-10-06|1997-11-23|TAKE BACK RETURN|AIR|tructions. sometimes regular depo| +16456|776429|26430|2|16|24086.24|0.01|0.06|N|O|1997-08-12|1997-10-06|1997-08-31|NONE|SHIP|nusual platelets cajole fur| +16457|469005|6533|1|46|44803.08|0.05|0.04|R|F|1993-07-04|1993-08-12|1993-07-26|NONE|TRUCK|ously. packages are above the | +16457|550617|618|2|39|65036.01|0.10|0.05|R|F|1993-08-21|1993-07-18|1993-09-09|COLLECT COD|RAIL|ular multipliers according to the special,| +16457|209219|9220|3|7|7897.40|0.07|0.05|R|F|1993-06-27|1993-08-07|1993-07-14|COLLECT COD|TRUCK|tes. regular, regular pinto bea| +16457|332251|19770|4|6|7699.44|0.08|0.01|R|F|1993-06-06|1993-08-02|1993-06-09|NONE|RAIL|fix. final deposits wake carefully after t| +16457|135958|10963|5|30|59818.50|0.02|0.01|R|F|1993-09-08|1993-08-21|1993-09-14|DELIVER IN PERSON|SHIP|gedly along the re| +16457|42916|30417|6|7|13012.37|0.01|0.01|R|F|1993-08-30|1993-07-12|1993-09-13|NONE|RAIL|egrate evenly. furiously ironic foxes wil| +16458|580644|5667|1|20|34492.40|0.01|0.03|A|F|1994-05-09|1994-04-23|1994-05-13|TAKE BACK RETURN|FOB|s are; ironic accou| +16458|872417|47452|2|13|18061.81|0.09|0.00|A|F|1994-06-18|1994-05-09|1994-07-11|TAKE BACK RETURN|FOB| deposits. even foxes according| +16458|707019|19534|3|49|50273.02|0.08|0.06|A|F|1994-04-23|1994-05-06|1994-05-12|DELIVER IN PERSON|TRUCK|t. regular accounts about the unusua| +16458|853552|41104|4|43|64736.93|0.10|0.02|A|F|1994-06-09|1994-05-16|1994-06-28|COLLECT COD|AIR|e even, regular theodolites are | +16458|648059|10572|5|21|21147.42|0.06|0.05|R|F|1994-07-06|1994-05-15|1994-07-08|COLLECT COD|REG AIR|n furiously even depths. | +16458|912354|37391|6|45|61483.95|0.02|0.01|R|F|1994-04-25|1994-06-10|1994-05-02|TAKE BACK RETURN|REG AIR|eodolites. deposits cajole. | +16458|920473|45510|7|20|29868.60|0.07|0.00|R|F|1994-07-09|1994-05-10|1994-07-12|TAKE BACK RETURN|REG AIR|le quietly | +16459|385720|35721|1|23|41531.33|0.06|0.06|A|F|1993-12-26|1993-12-11|1993-12-30|NONE|TRUCK|silent pinto beans nag fluffily w| +16459|787844|360|2|13|25113.53|0.06|0.05|A|F|1994-01-30|1993-11-16|1994-02-16|COLLECT COD|REG AIR|about the fu| +16459|282014|44520|3|39|38844.00|0.05|0.05|A|F|1993-12-25|1993-12-09|1994-01-11|DELIVER IN PERSON|AIR|y-- foxes serve: slyly fin| +16459|796360|21391|4|50|72816.50|0.04|0.08|R|F|1993-11-11|1993-11-29|1993-11-17|NONE|AIR|he furiously ironic accounts detect quickl| +16460|874|13375|1|9|15973.83|0.08|0.01|N|O|1995-09-21|1995-10-10|1995-09-26|NONE|FOB|elets detect| +16460|672995|48022|2|13|25583.48|0.03|0.06|N|O|1995-10-28|1995-09-30|1995-11-12|COLLECT COD|SHIP|dependencies alongsid| +16460|18278|30779|3|18|21532.86|0.04|0.07|N|O|1995-08-03|1995-09-24|1995-08-23|TAKE BACK RETURN|FOB|ests! expre| +16460|192132|42133|4|44|53861.72|0.05|0.02|N|O|1995-10-10|1995-08-29|1995-10-14|TAKE BACK RETURN|FOB|sly final asymptotes wake from the quick| +16460|147083|47084|5|7|7910.56|0.00|0.01|N|O|1995-11-01|1995-10-04|1995-11-13|COLLECT COD|SHIP|g to the quickly iro| +16461|952149|14669|1|29|34831.90|0.01|0.02|N|O|1998-09-20|1998-08-16|1998-09-21|TAKE BACK RETURN|MAIL|. furiously eve| +16461|754156|29187|2|49|59295.88|0.06|0.03|N|O|1998-10-10|1998-09-08|1998-11-06|NONE|SHIP|ts. quickly even asymptotes haggle| +16461|91109|16112|3|24|26402.40|0.09|0.01|N|O|1998-08-25|1998-08-22|1998-09-03|DELIVER IN PERSON|RAIL|ggle slyly about the busy, special packag| +16461|261704|49220|4|44|73290.36|0.03|0.07|N|O|1998-10-05|1998-08-25|1998-11-03|COLLECT COD|AIR|ickly final packages was quickl| +16461|447410|9919|5|44|59725.16|0.04|0.04|N|O|1998-06-26|1998-09-05|1998-07-25|NONE|FOB| against the slyly regu| +16461|605599|18112|6|45|67705.20|0.10|0.08|N|O|1998-06-27|1998-09-11|1998-07-24|COLLECT COD|MAIL|e slyly regul| +16462|311399|23906|1|22|31028.36|0.04|0.06|R|F|1993-12-02|1993-12-10|1993-12-06|DELIVER IN PERSON|FOB| deposits. regular, bold excu| +16462|675307|25308|2|11|14104.97|0.01|0.04|A|F|1993-10-27|1993-12-20|1993-11-02|DELIVER IN PERSON|REG AIR|into beans are f| +16462|867968|5520|3|5|9679.60|0.04|0.06|A|F|1993-10-28|1993-12-06|1993-11-04|COLLECT COD|SHIP|ackages are carefully. requests ha| +16462|932509|7546|4|3|4624.38|0.09|0.08|R|F|1993-11-10|1993-11-24|1993-11-22|COLLECT COD|MAIL|romise slyly after | +16463|967204|17205|1|31|39405.96|0.05|0.03|R|F|1993-02-24|1993-01-11|1993-02-25|TAKE BACK RETURN|TRUCK|egular theodolites. ironic theodolites h| +16463|782725|7756|2|8|14461.52|0.06|0.03|A|F|1993-02-21|1993-01-03|1993-03-22|DELIVER IN PERSON|RAIL|ress ideas use? pending depo| +16463|244678|19687|3|20|32453.20|0.00|0.07|R|F|1993-01-10|1993-01-11|1993-02-08|DELIVER IN PERSON|TRUCK|blithely. fi| +16488|79303|41805|1|35|44880.50|0.07|0.03|N|O|1995-12-26|1995-11-12|1996-01-15|DELIVER IN PERSON|SHIP|lets haggle accounts. furious| +16488|834215|9248|2|18|20685.06|0.07|0.05|N|O|1995-12-12|1995-12-25|1995-12-27|NONE|MAIL|ly ironic ide| +16489|358449|8450|1|5|7537.15|0.07|0.01|R|F|1994-01-30|1994-02-03|1994-02-19|DELIVER IN PERSON|SHIP| express accounts | +16489|450663|664|2|14|22590.96|0.07|0.06|A|F|1994-02-08|1994-02-26|1994-03-04|DELIVER IN PERSON|AIR|cross the packages. special, ironi| +16489|276655|39161|3|42|68528.88|0.01|0.01|A|F|1994-01-08|1994-02-08|1994-01-23|DELIVER IN PERSON|AIR| silent pinto beans sl| +16489|725220|12763|4|8|9961.52|0.09|0.07|R|F|1994-02-11|1994-03-02|1994-03-03|TAKE BACK RETURN|REG AIR|packages are slyly. blithe| +16489|755961|5962|5|7|14118.51|0.05|0.05|R|F|1993-12-24|1994-02-28|1994-01-11|DELIVER IN PERSON|RAIL|dolites haggle fluffil| +16489|419957|44974|6|14|26277.02|0.08|0.01|A|F|1994-02-15|1994-01-20|1994-03-06|NONE|REG AIR|odolites snooze. care| +16490|14849|2350|1|14|24693.76|0.04|0.08|N|O|1995-08-26|1995-11-07|1995-09-07|COLLECT COD|FOB|s. carefully regular theodolites detect ac| +16490|559281|9282|2|26|34846.76|0.01|0.02|N|O|1995-11-15|1995-10-07|1995-11-30|COLLECT COD|RAIL|s sleep. furiously unusual excuses througho| +16490|819766|32283|3|6|10114.32|0.02|0.08|N|O|1995-12-10|1995-09-22|1995-12-19|DELIVER IN PERSON|TRUCK|y pending ideas wake accor| +16490|796727|9243|4|27|49239.63|0.07|0.06|N|O|1995-08-31|1995-10-20|1995-09-05|TAKE BACK RETURN|SHIP|fluffily along the fu| +16491|736339|48854|1|5|6876.50|0.08|0.00|N|O|1996-05-18|1996-05-01|1996-06-11|COLLECT COD|REG AIR| bold packages. furiously regu| +16492|196947|9451|1|32|65406.08|0.03|0.00|A|F|1994-05-26|1994-06-04|1994-06-08|TAKE BACK RETURN|REG AIR|le blithely express reque| +16492|87433|37434|2|18|25567.74|0.06|0.01|R|F|1994-05-02|1994-05-15|1994-05-21|NONE|REG AIR|deas thrash carefully. blithel| +16493|917817|17818|1|31|56877.87|0.10|0.08|N|O|1995-11-23|1995-11-19|1995-12-01|DELIVER IN PERSON|RAIL|tainments. carefully express theodol| +16493|743585|43586|2|11|17914.05|0.03|0.01|N|O|1996-02-02|1995-12-04|1996-02-07|NONE|FOB|o the furiously r| +16493|431243|43752|3|2|2348.44|0.04|0.08|N|O|1995-10-31|1995-12-02|1995-11-30|TAKE BACK RETURN|FOB| requests. blithely perma| +16494|872445|22446|1|12|17008.80|0.00|0.05|R|F|1994-06-02|1994-07-29|1994-07-02|NONE|SHIP|es cajole carefully acros| +16494|171921|9431|2|15|29893.80|0.03|0.01|A|F|1994-08-28|1994-08-14|1994-09-10|DELIVER IN PERSON|TRUCK| carefully ironic requests | +16494|461244|11245|3|2|2410.44|0.04|0.06|R|F|1994-08-01|1994-08-10|1994-08-07|NONE|SHIP|e final excuse| +16494|115408|2915|4|47|66899.80|0.00|0.06|R|F|1994-07-21|1994-07-11|1994-08-07|NONE|FOB|lar requests int| +16494|647490|35027|5|12|17249.52|0.09|0.02|R|F|1994-08-28|1994-08-15|1994-09-10|TAKE BACK RETURN|RAIL|s sleep according to th| +16494|359910|34925|6|19|37428.10|0.00|0.03|R|F|1994-06-26|1994-07-28|1994-06-30|NONE|SHIP|arefully bold| +16494|999306|49307|7|15|21078.90|0.07|0.01|R|F|1994-07-16|1994-07-18|1994-07-29|TAKE BACK RETURN|MAIL|old, express deposits dete| +16495|332136|44643|1|34|39716.08|0.02|0.03|N|O|1996-12-11|1996-11-12|1996-12-30|DELIVER IN PERSON|RAIL|ests wake carefully beside the slyl| +16520|325505|38012|1|38|58158.62|0.00|0.07|N|O|1996-07-16|1996-06-23|1996-08-15|DELIVER IN PERSON|REG AIR|r excuses are instructions. bl| +16520|746323|46324|2|36|49294.44|0.00|0.06|N|O|1996-07-21|1996-07-06|1996-08-02|NONE|FOB|arefully regular accounts. | +16520|443016|30541|3|38|36441.62|0.01|0.02|N|O|1996-06-09|1996-06-03|1996-06-17|NONE|MAIL|kages. furiously final multipli| +16520|762796|342|4|31|57621.56|0.07|0.02|N|O|1996-07-06|1996-05-12|1996-07-28|COLLECT COD|TRUCK|usly furiou| +16521|256011|18517|1|24|23208.00|0.04|0.01|A|F|1994-10-15|1994-08-31|1994-10-19|COLLECT COD|SHIP|iously at the bl| +16522|769505|19506|1|18|28340.46|0.10|0.04|N|O|1997-11-12|1997-10-30|1997-11-13|DELIVER IN PERSON|RAIL|y bold instructions use blithely again| +16522|61764|11765|2|47|81110.72|0.04|0.01|N|O|1997-11-25|1997-12-07|1997-12-08|DELIVER IN PERSON|TRUCK|y along the blith| +16522|56200|43704|3|30|34686.00|0.03|0.04|N|O|1997-11-12|1997-11-18|1997-11-28|COLLECT COD|AIR|onic requests w| +16522|552955|40489|4|13|26103.09|0.04|0.02|N|O|1997-10-22|1997-12-04|1997-11-12|NONE|TRUCK|te silent excuses. fluffily pending theodo| +16522|501224|26245|5|21|25729.20|0.10|0.04|N|O|1997-11-21|1997-10-10|1997-11-26|COLLECT COD|RAIL| are. regular theodolites are fur| +16523|518833|43854|1|8|14814.48|0.08|0.07|N|O|1996-05-19|1996-05-22|1996-06-07|COLLECT COD|AIR|ray furiously among the | +16523|14179|26680|2|27|29515.59|0.06|0.06|N|O|1996-07-07|1996-05-23|1996-08-04|DELIVER IN PERSON|MAIL|refully final platelets h| +16523|293073|18084|3|14|14924.84|0.06|0.06|N|O|1996-05-15|1996-04-28|1996-06-07|TAKE BACK RETURN|AIR|es. ironic requests sleep carefully arou| +16523|674516|12056|4|20|29809.60|0.08|0.00|N|O|1996-04-23|1996-04-23|1996-04-28|DELIVER IN PERSON|REG AIR|ven instructions boost al| +16523|578926|3949|5|13|26063.70|0.09|0.01|N|O|1996-03-29|1996-05-07|1996-04-05|COLLECT COD|RAIL|ag furiousl| +16523|4385|41886|6|36|46417.68|0.05|0.01|N|O|1996-06-10|1996-05-22|1996-06-19|COLLECT COD|REG AIR|unts wake blithely across the qui| +16523|683185|20725|7|30|35044.50|0.03|0.06|N|O|1996-06-13|1996-05-02|1996-07-05|COLLECT COD|MAIL|ar requests cajole final acco| +16524|286317|11328|1|7|9123.10|0.02|0.04|R|F|1994-12-23|1994-11-23|1994-12-25|DELIVER IN PERSON|MAIL|ges affix q| +16524|117451|29954|2|6|8810.70|0.09|0.06|R|F|1995-01-18|1994-11-01|1995-01-29|TAKE BACK RETURN|TRUCK| dependencies poach pending depend| +16524|991125|3645|3|26|31618.08|0.08|0.05|A|F|1994-12-09|1994-12-18|1995-01-01|NONE|TRUCK|hely furious ideas. carefully special| +16524|824151|36668|4|7|7525.77|0.08|0.04|R|F|1994-11-12|1994-11-28|1994-12-11|COLLECT COD|TRUCK|brave packages wake furious| +16524|496136|21155|5|22|24906.42|0.06|0.02|A|F|1994-12-24|1994-11-01|1994-12-29|TAKE BACK RETURN|RAIL|ously unusual| +16524|547792|22813|6|33|60712.41|0.09|0.05|A|F|1995-01-03|1994-12-22|1995-01-28|NONE|RAIL|ix across the even theodolites. furiousl| +16525|968108|5666|1|48|56450.88|0.09|0.04|R|F|1992-04-25|1992-03-25|1992-05-25|NONE|SHIP|blithely regular th| +16525|986973|49493|2|33|67977.69|0.07|0.02|R|F|1992-01-16|1992-03-06|1992-01-24|DELIVER IN PERSON|REG AIR|fully. carefully regular foxes boost blithe| +16525|48015|10516|3|42|40446.42|0.07|0.00|A|F|1992-04-04|1992-03-10|1992-05-04|TAKE BACK RETURN|RAIL|heodolites. slyly pending in| +16526|420000|45017|1|10|9199.80|0.05|0.05|R|F|1994-07-11|1994-06-21|1994-08-09|NONE|RAIL| beans are slyly special accounts. slyly ir| +16526|925352|25353|2|20|27546.20|0.05|0.08|A|F|1994-08-20|1994-06-16|1994-08-26|NONE|REG AIR| blithely after the| +16526|375461|476|3|24|36874.80|0.01|0.04|R|F|1994-05-15|1994-07-09|1994-05-31|DELIVER IN PERSON|TRUCK|yly bold plat| +16527|424711|12236|1|10|16356.90|0.04|0.02|N|O|1997-08-11|1997-05-18|1997-09-06|COLLECT COD|REG AIR|counts. ex| +16527|101755|39262|2|35|61486.25|0.07|0.07|N|O|1997-08-02|1997-06-19|1997-09-01|COLLECT COD|REG AIR|ers cajole slyly against the blithely even| +16552|929998|42517|1|1|2027.95|0.10|0.05|N|O|1997-10-05|1997-09-20|1997-10-18|DELIVER IN PERSON|TRUCK|pending theodoli| +16552|473720|48739|2|5|8468.50|0.06|0.05|N|O|1997-08-29|1997-09-27|1997-09-03|DELIVER IN PERSON|RAIL|es. slyly final theodolites haggle carefu| +16552|798961|48962|3|19|39138.67|0.03|0.06|N|O|1997-08-27|1997-10-20|1997-09-16|TAKE BACK RETURN|SHIP| deposits. furi| +16552|122852|22853|4|2|3749.70|0.10|0.01|N|O|1997-11-15|1997-10-11|1997-12-13|TAKE BACK RETURN|SHIP|leep regul| +16552|770997|8543|5|43|88922.28|0.01|0.06|N|O|1997-10-25|1997-09-29|1997-11-08|COLLECT COD|RAIL| regular ideas use quickly across th| +16552|145590|20595|6|9|14720.31|0.01|0.02|N|O|1997-11-26|1997-10-29|1997-12-07|TAKE BACK RETURN|FOB|nal pinto beans haggle accordin| +16553|834803|9836|1|1|1737.76|0.04|0.02|N|O|1998-08-05|1998-07-01|1998-08-31|COLLECT COD|REG AIR| quickly unusual pa| +16553|520044|7575|2|29|30856.58|0.07|0.04|N|O|1998-06-29|1998-06-16|1998-07-23|TAKE BACK RETURN|REG AIR|ironic instructions. requests haggle quick| +16553|368859|31367|3|28|53979.52|0.02|0.03|N|O|1998-06-04|1998-07-10|1998-06-28|NONE|TRUCK|-- slyly even deposits engage furiously| +16553|404796|17305|4|40|68030.80|0.06|0.04|N|O|1998-08-17|1998-07-25|1998-08-29|TAKE BACK RETURN|FOB|tions cajole | +16553|395585|20600|5|9|15125.13|0.02|0.06|N|O|1998-06-25|1998-07-22|1998-07-06|COLLECT COD|REG AIR|uriously even accounts must detect carefull| +16553|586330|11353|6|38|53819.78|0.00|0.03|N|O|1998-06-04|1998-08-12|1998-06-15|NONE|RAIL| above the quickly express dolp| +16554|793722|18753|1|44|79890.36|0.01|0.00|N|O|1997-10-20|1997-12-31|1997-10-24|COLLECT COD|MAIL|old package| +16554|77364|27365|2|30|40240.80|0.05|0.01|N|O|1997-11-07|1997-12-31|1997-11-23|NONE|TRUCK|unts promise along the stealt| +16555|446094|46095|1|14|14560.98|0.07|0.00|R|F|1994-04-04|1994-02-07|1994-04-09|DELIVER IN PERSON|FOB| beans nag furiously.| +16555|490870|40871|2|23|42799.55|0.05|0.02|A|F|1994-02-16|1994-02-28|1994-02-21|NONE|RAIL|ies. ruthless ac| +16556|161328|48838|1|19|26397.08|0.05|0.01|A|F|1994-03-18|1994-03-31|1994-04-02|COLLECT COD|REG AIR|s-- final theodolites | +16556|427622|27623|2|29|44938.40|0.09|0.00|A|F|1994-03-04|1994-03-09|1994-03-26|TAKE BACK RETURN|REG AIR|ial packages. quickly ironic theodo| +16556|33750|21251|3|27|45461.25|0.09|0.06|R|F|1994-01-23|1994-02-23|1994-02-08|DELIVER IN PERSON|REG AIR|s. quickly ironic realms cajol| +16556|226623|14136|4|45|69732.45|0.00|0.05|A|F|1994-02-15|1994-03-25|1994-02-18|DELIVER IN PERSON|AIR|st fluffily during the final requests. sly| +16557|37847|37848|1|19|33911.96|0.01|0.04|N|O|1997-02-08|1997-01-07|1997-02-22|DELIVER IN PERSON|RAIL|ages along the daring| +16557|91316|16319|2|5|6536.55|0.06|0.08|N|O|1996-12-13|1997-01-31|1997-01-12|DELIVER IN PERSON|RAIL|ions nag nev| +16557|741065|28608|3|27|29862.81|0.10|0.03|N|O|1997-02-25|1997-02-12|1997-02-27|NONE|AIR|ven foxes | +16557|70347|32849|4|44|57962.96|0.08|0.08|N|O|1997-02-09|1997-01-31|1997-03-09|COLLECT COD|RAIL|ly slyly final dolphins. instructions at | +16557|308082|45601|5|6|6540.42|0.02|0.03|N|O|1997-01-20|1997-01-01|1997-02-04|TAKE BACK RETURN|AIR|egular deposits?| +16557|925871|908|6|17|32246.11|0.07|0.06|N|O|1996-12-16|1997-01-17|1997-01-01|TAKE BACK RETURN|MAIL|regular instructions. pending, f| +16557|109368|34373|7|23|31679.28|0.08|0.02|N|O|1997-02-26|1997-01-04|1997-03-12|DELIVER IN PERSON|SHIP|ar pinto beans against| +16558|141813|16818|1|34|63063.54|0.00|0.02|A|F|1995-03-10|1995-03-23|1995-03-16|DELIVER IN PERSON|RAIL|unusual instructions ar| +16558|445954|33479|2|2|3799.86|0.02|0.03|A|F|1995-04-21|1995-03-24|1995-05-03|TAKE BACK RETURN|FOB|foxes. carefully regular pac| +16558|140823|3326|3|45|83871.90|0.02|0.07|R|F|1995-05-02|1995-04-26|1995-05-03|COLLECT COD|FOB|ual deposits boost furiously bold, regul| +16558|798828|11344|4|31|59730.49|0.03|0.03|A|F|1995-03-09|1995-03-05|1995-03-23|COLLECT COD|REG AIR| asymptotes. ironic | +16558|899326|49327|5|22|29156.16|0.10|0.08|R|F|1995-04-28|1995-04-22|1995-05-01|COLLECT COD|MAIL|s the carefully pending th| +16558|964621|14622|6|12|20226.96|0.05|0.02|A|F|1995-02-16|1995-04-08|1995-03-02|DELIVER IN PERSON|FOB|pending asymptotes wake| +16558|384317|21839|7|33|46242.90|0.06|0.06|R|F|1995-05-19|1995-04-03|1995-06-15|COLLECT COD|SHIP|furiously ironi| +16559|215680|28185|1|17|27126.39|0.06|0.04|N|O|1997-09-17|1997-10-26|1997-09-27|TAKE BACK RETURN|FOB|dolphins sleep b| +16559|933283|45802|2|39|51333.36|0.06|0.02|N|O|1997-12-11|1997-11-12|1998-01-09|DELIVER IN PERSON|MAIL|ns boost permanently. accounts haggle--| +16559|682494|32495|3|31|45770.26|0.08|0.08|N|O|1997-11-26|1997-09-26|1997-12-12|TAKE BACK RETURN|FOB|lly bold pinto be| +16559|664080|1620|4|4|4176.20|0.04|0.05|N|O|1997-11-04|1997-10-30|1997-11-23|NONE|MAIL|re blithely fl| +16559|186681|36682|5|15|26515.20|0.07|0.01|N|O|1997-10-08|1997-11-10|1997-10-26|NONE|FOB|bold, pending packages ought to breach r| +16584|820906|8455|1|8|14614.88|0.03|0.02|N|O|1996-01-20|1996-03-22|1996-02-13|COLLECT COD|FOB|ly regular ideas sleep b| +16584|966503|29023|2|24|37667.04|0.06|0.01|N|O|1996-03-30|1996-03-24|1996-04-23|COLLECT COD|TRUCK|uriously. slyly regular realms h| +16585|190182|27692|1|3|3816.54|0.05|0.04|N|O|1996-03-01|1995-12-20|1996-03-05|DELIVER IN PERSON|TRUCK|ses. carefully regular excuses are. caref| +16585|375805|25806|2|16|30092.64|0.03|0.01|N|O|1995-11-15|1996-01-28|1995-12-13|TAKE BACK RETURN|REG AIR|ges. fluffi| +16585|143295|30802|3|6|8029.74|0.10|0.07|N|O|1995-11-08|1996-01-19|1995-11-13|TAKE BACK RETURN|RAIL|ly ironic dependencies lose furio| +16585|357342|7343|4|9|12593.97|0.10|0.02|N|O|1995-12-03|1996-01-31|1995-12-06|DELIVER IN PERSON|REG AIR|the furiously final theodolites aff| +16585|841247|41248|5|15|17823.00|0.04|0.01|N|O|1996-02-11|1996-01-17|1996-03-08|NONE|AIR|cajole furiously.| +16586|810675|23192|1|28|44397.64|0.10|0.00|R|F|1992-03-29|1992-05-01|1992-04-17|NONE|TRUCK|egular deposits are furiously. qu| +16586|7114|19615|2|47|47992.17|0.09|0.04|A|F|1992-03-23|1992-04-09|1992-04-11|TAKE BACK RETURN|SHIP|rate special| +16586|558403|8404|3|13|18997.94|0.04|0.03|R|F|1992-04-18|1992-04-20|1992-05-13|DELIVER IN PERSON|TRUCK|y carefully regular multipliers.| +16586|79128|16632|4|8|8856.96|0.04|0.07|R|F|1992-04-03|1992-05-19|1992-04-15|TAKE BACK RETURN|MAIL|ove the requests. unusual, pending | +16586|897347|22382|5|35|47050.50|0.08|0.06|R|F|1992-05-15|1992-05-30|1992-05-30|NONE|MAIL|heodolites. furiously regular deposits boo| +16587|479819|29820|1|31|55762.49|0.04|0.01|N|O|1996-11-27|1997-01-18|1996-11-29|NONE|MAIL| packages boost ca| +16587|305176|30189|2|10|11811.60|0.00|0.05|N|O|1996-12-18|1997-01-23|1996-12-28|NONE|SHIP|eposits ma| +16587|90720|15723|3|21|35925.12|0.03|0.06|N|O|1997-02-11|1996-12-19|1997-02-14|DELIVER IN PERSON|REG AIR|even asympt| +16588|450876|13386|1|13|23749.05|0.00|0.08|N|O|1997-12-19|1998-02-28|1998-01-05|COLLECT COD|SHIP|the ironic fo| +16588|868089|30607|2|8|8456.32|0.07|0.02|N|O|1998-03-27|1998-02-26|1998-04-04|NONE|AIR| blithely after the furiously even accounts| +16588|969283|31803|3|32|43271.68|0.06|0.05|N|O|1997-12-22|1998-01-19|1998-01-16|NONE|MAIL|ven ideas. fluffily regular accounts are | +16588|726657|1686|4|21|35356.02|0.06|0.06|N|O|1998-01-02|1998-02-15|1998-01-09|TAKE BACK RETURN|AIR| unusual foxes-- requests do caj| +16589|816171|16172|1|46|50007.98|0.00|0.00|R|F|1992-06-01|1992-05-11|1992-06-03|COLLECT COD|RAIL|es boost carefully from the slyly regular| +16589|370825|20826|2|6|11374.86|0.07|0.04|R|F|1992-03-21|1992-04-14|1992-03-24|COLLECT COD|AIR|blithely ironic| +16589|445105|20122|3|32|33602.56|0.10|0.01|R|F|1992-04-20|1992-03-29|1992-05-14|COLLECT COD|RAIL|ach furiously. fluffily final packages u| +16589|871966|47001|4|22|42634.24|0.01|0.02|R|F|1992-02-21|1992-03-19|1992-03-10|COLLECT COD|REG AIR|slyly furiously regular pac| +16589|128855|16362|5|36|67818.60|0.00|0.03|A|F|1992-06-01|1992-04-07|1992-06-28|COLLECT COD|AIR|ooze quickly against the express| +16589|654822|29849|6|7|12437.53|0.07|0.02|R|F|1992-04-17|1992-04-04|1992-04-26|DELIVER IN PERSON|FOB|ains. even, quiet attainments abou| +16590|410714|48239|1|39|63362.91|0.01|0.07|A|F|1993-09-19|1993-09-29|1993-10-16|NONE|MAIL|ly furiously| +16590|863228|13229|2|44|52411.92|0.06|0.05|R|F|1993-09-23|1993-10-11|1993-10-11|DELIVER IN PERSON|SHIP|furiously final instructions| +16591|808766|8767|1|25|41868.00|0.08|0.06|A|F|1994-12-12|1994-10-10|1994-12-13|NONE|TRUCK|st furiously aga| +16591|914077|39114|2|30|32730.90|0.01|0.02|R|F|1994-12-02|1994-11-10|1994-12-09|TAKE BACK RETURN|AIR|sual foxes x-ray blithely. slyly even| +16591|889748|27300|3|17|29540.90|0.01|0.07|R|F|1994-09-08|1994-11-20|1994-10-07|TAKE BACK RETURN|TRUCK|lar, pending reques| +16591|982381|32382|4|31|45363.54|0.04|0.04|A|F|1994-11-21|1994-10-02|1994-12-20|DELIVER IN PERSON|FOB|ns cajole above the care| +16591|865527|28045|5|20|29849.60|0.10|0.02|R|F|1994-11-29|1994-10-06|1994-12-03|NONE|RAIL|deposits. thinly ruthless instructions| +16591|910728|35765|6|44|76501.92|0.06|0.02|R|F|1994-12-10|1994-10-12|1994-12-27|DELIVER IN PERSON|TRUCK|usual accounts use blithe| +16616|962276|12277|1|45|60220.35|0.04|0.02|N|O|1995-10-31|1995-10-19|1995-11-27|DELIVER IN PERSON|AIR|deas. quickly ironic| +16616|960109|35148|2|26|30395.56|0.05|0.01|N|O|1995-11-07|1995-10-13|1995-11-09|DELIVER IN PERSON|AIR|s cajole even foxes. unusual, brave theodo| +16616|549351|11862|3|20|28006.60|0.02|0.06|N|O|1995-09-10|1995-10-05|1995-09-19|DELIVER IN PERSON|AIR|ly express pi| +16616|929892|29893|4|14|26905.90|0.00|0.05|N|O|1995-09-05|1995-09-29|1995-09-09|TAKE BACK RETURN|TRUCK| deposits are. foxes unwi| +16616|688548|1062|5|29|44558.79|0.03|0.06|N|O|1995-09-19|1995-10-13|1995-10-17|NONE|MAIL|requests. fluffily silent reque| +16616|424099|36608|6|38|38876.66|0.09|0.03|N|O|1995-11-09|1995-09-26|1995-11-26|DELIVER IN PERSON|RAIL|ost furiously quickly unusual| +16617|51856|26859|1|37|66890.45|0.06|0.01|N|O|1998-04-15|1998-03-10|1998-05-04|COLLECT COD|REG AIR|deas sleep carefully blithely ironic id| +16617|537038|49549|2|6|6450.06|0.04|0.08|N|O|1998-01-20|1998-02-08|1998-02-06|COLLECT COD|FOB|cajole alongsid| +16617|995187|45188|3|40|51285.60|0.07|0.02|N|O|1998-01-31|1998-02-10|1998-02-11|TAKE BACK RETURN|SHIP|tions. pending Tiresias haggle. fu| +16617|98978|23981|4|30|59309.10|0.09|0.06|N|O|1998-03-02|1998-02-12|1998-03-04|NONE|MAIL|sly bold depths. carefully pending ac| +16617|514720|39741|5|44|76326.80|0.10|0.08|N|O|1998-01-17|1998-01-30|1998-01-29|COLLECT COD|TRUCK|al theodolites haggle care| +16618|722216|22217|1|24|29716.32|0.01|0.03|N|O|1996-06-07|1996-05-01|1996-07-07|COLLECT COD|AIR|efully. realms haggle| +16618|270111|7627|2|6|6486.60|0.08|0.07|N|O|1996-05-17|1996-04-20|1996-06-13|DELIVER IN PERSON|REG AIR|side of the packages.| +16618|743084|43085|3|19|21413.95|0.10|0.00|N|O|1996-06-12|1996-04-21|1996-06-14|COLLECT COD|FOB|l packages? bold, final requests boost. q| +16618|999027|11547|4|41|46165.18|0.04|0.03|N|O|1996-05-10|1996-05-28|1996-05-20|NONE|AIR| requests ab| +16618|638796|13821|5|37|64186.12|0.06|0.02|N|O|1996-05-31|1996-04-22|1996-06-11|COLLECT COD|TRUCK|ly express dependencies. ironically bold p| +16619|350261|25276|1|38|49827.50|0.02|0.04|R|F|1993-01-14|1993-01-20|1993-01-17|COLLECT COD|SHIP| final instructions wake| +16619|836544|11577|2|16|23688.00|0.01|0.04|R|F|1992-12-18|1993-02-22|1993-01-03|DELIVER IN PERSON|MAIL| are blithely. blithely special notor| +16619|784920|22466|3|46|92224.94|0.01|0.01|A|F|1993-02-24|1993-02-13|1993-03-25|TAKE BACK RETURN|SHIP| blithely even dugouts| +16619|147778|47779|4|40|73030.80|0.08|0.08|A|F|1993-03-27|1993-01-31|1993-04-24|COLLECT COD|RAIL|ully ironic deposits among the even instruc| +16620|86460|11463|1|19|27482.74|0.10|0.02|A|F|1992-11-04|1992-11-22|1992-12-01|DELIVER IN PERSON|TRUCK|ffily express reques| +16621|764668|39699|1|30|51978.90|0.00|0.01|N|O|1997-01-09|1997-01-24|1997-01-10|TAKE BACK RETURN|FOB|counts. slyly silen| +16621|763537|38568|2|26|41613.00|0.04|0.02|N|O|1997-03-05|1997-01-17|1997-03-11|COLLECT COD|RAIL|the fluffily pending packages. slyl| +16621|765096|15097|3|44|51086.64|0.06|0.00|N|O|1997-02-28|1997-01-27|1997-03-25|DELIVER IN PERSON|SHIP|express packages use c| +16621|968219|30739|4|42|54061.14|0.01|0.04|N|O|1997-02-28|1997-02-16|1997-03-10|COLLECT COD|AIR|ross the blith| +16621|849038|36587|5|26|25661.74|0.03|0.03|N|O|1997-02-17|1997-03-01|1997-03-13|TAKE BACK RETURN|FOB|n packages. even, final foxes| +16622|653554|16068|1|28|42210.56|0.00|0.05|A|F|1992-12-18|1992-09-20|1992-12-29|TAKE BACK RETURN|AIR|ons sleep s| +16622|271095|8611|2|14|14925.12|0.02|0.04|A|F|1992-11-01|1992-11-02|1992-11-06|TAKE BACK RETURN|SHIP|ent, regular pinto beans. pending, ironic | +16622|280679|43185|3|42|69705.72|0.00|0.03|R|F|1992-09-16|1992-09-30|1992-10-04|DELIVER IN PERSON|MAIL| deposits. carefully idle accounts| +16622|369179|31687|4|44|54919.04|0.04|0.05|R|F|1992-08-28|1992-11-18|1992-09-09|COLLECT COD|AIR| instructions after the b| +16622|776518|1549|5|48|76535.04|0.04|0.02|A|F|1992-10-18|1992-09-26|1992-11-13|DELIVER IN PERSON|FOB|s: quiet, regula| +16622|934930|34931|6|25|49122.25|0.04|0.02|A|F|1992-11-25|1992-11-05|1992-12-10|DELIVER IN PERSON|MAIL| slyly regular | +16622|366483|28991|7|14|21692.58|0.09|0.04|R|F|1992-11-06|1992-09-23|1992-11-10|DELIVER IN PERSON|RAIL|y permanent d| +16623|467483|5011|1|44|63820.24|0.04|0.05|A|F|1992-03-28|1992-05-07|1992-04-15|DELIVER IN PERSON|SHIP|sits. accounts alongside of the always un| +16648|551682|26705|1|23|39874.18|0.03|0.03|N|O|1995-09-23|1995-10-16|1995-10-03|COLLECT COD|REG AIR|ar requests cajole at the sl| +16648|106059|18562|2|38|40471.90|0.00|0.03|N|O|1995-11-23|1995-11-05|1995-12-20|NONE|RAIL|hin dependencies use carefully above | +16649|489921|27449|1|29|55416.10|0.07|0.03|N|O|1998-01-03|1997-12-21|1998-01-05|TAKE BACK RETURN|REG AIR|hely ironic the| +16649|94211|6713|2|20|24104.20|0.02|0.06|N|O|1998-01-02|1998-01-20|1998-01-12|NONE|FOB|ncies will have to haggle | +16649|399450|49451|3|14|21692.16|0.01|0.01|N|O|1998-02-25|1998-02-07|1998-03-15|NONE|FOB|ular excuses haggle slyl| +16649|542151|29682|4|22|26248.86|0.09|0.04|N|O|1997-12-10|1998-02-02|1997-12-23|NONE|AIR|. slowly ironic theodo| +16649|919025|6580|5|18|18791.64|0.00|0.03|N|O|1998-01-26|1998-01-04|1998-02-07|NONE|RAIL|yly ironic depende| +16649|37470|37471|6|10|14074.70|0.01|0.01|N|O|1998-03-10|1998-01-11|1998-03-20|NONE|MAIL|ckages boost agai| +16650|77583|40085|1|2|3121.16|0.05|0.04|N|O|1996-04-08|1996-03-22|1996-04-26|NONE|MAIL|unusual foxes are quickly.| +16650|927489|40008|2|17|25779.48|0.07|0.02|N|O|1996-01-23|1996-02-24|1996-02-18|COLLECT COD|FOB|about the escapades| +16650|297666|47667|3|29|48245.85|0.00|0.06|N|O|1996-02-11|1996-04-11|1996-02-22|DELIVER IN PERSON|MAIL|packages slee| +16650|867866|42901|4|31|56848.42|0.09|0.05|N|O|1996-03-30|1996-03-22|1996-04-08|TAKE BACK RETURN|TRUCK| ruthlessly ironic packages; bold,| +16650|220914|8427|5|5|9174.50|0.00|0.02|N|O|1996-01-29|1996-02-17|1996-02-27|COLLECT COD|AIR|beans cajol| +16651|880283|30284|1|49|61898.76|0.06|0.03|N|O|1995-09-07|1995-09-24|1995-09-30|TAKE BACK RETURN|MAIL|t instructions. iro| +16651|903451|41006|2|21|30542.61|0.05|0.03|N|O|1995-08-10|1995-08-24|1995-08-13|NONE|FOB|dolites. ideas hang carefully. quic| +16651|284511|34512|3|20|29910.00|0.04|0.02|N|O|1995-10-20|1995-09-01|1995-11-19|NONE|FOB|ths sleep | +16651|775290|25291|4|15|20478.90|0.01|0.08|N|O|1995-08-13|1995-08-02|1995-08-22|COLLECT COD|MAIL|s sleep carefu| +16652|786327|48843|1|13|18372.77|0.05|0.08|R|F|1992-11-16|1992-09-28|1992-11-24|NONE|SHIP|ess accounts cajole b| +16652|796397|21428|2|4|5973.44|0.05|0.00|A|F|1992-08-19|1992-10-31|1992-09-06|COLLECT COD|TRUCK|s accounts boost furiously. iron| +16652|36882|49383|3|22|40015.36|0.08|0.03|R|F|1992-11-21|1992-10-31|1992-12-05|TAKE BACK RETURN|REG AIR|express deposits nag furi| +16653|619736|44761|1|20|33114.00|0.02|0.08|N|O|1997-11-06|1997-11-25|1997-11-08|NONE|MAIL| requests affi| +16653|889292|39293|2|31|39718.75|0.00|0.08|N|O|1998-01-02|1997-12-09|1998-01-15|NONE|MAIL|uffily even foxes haggle furiously accor| +16653|320686|8205|3|23|39253.41|0.07|0.07|N|O|1997-10-18|1997-11-16|1997-11-13|TAKE BACK RETURN|REG AIR| fluffily even instructions along | +16653|763985|1531|4|19|38930.05|0.07|0.03|N|O|1997-12-25|1997-12-22|1998-01-14|DELIVER IN PERSON|FOB| wake across the blithely final in| +16653|280117|17633|5|38|41689.80|0.05|0.01|N|O|1997-11-06|1997-12-30|1997-12-03|COLLECT COD|TRUCK|e fluffily regular accounts. final, regu| +16654|894021|6539|1|30|30449.40|0.03|0.00|A|F|1994-11-25|1994-11-07|1994-11-26|NONE|MAIL|ng theodolites haggle about the slyly un| +16654|798906|48907|2|25|50121.75|0.07|0.00|R|F|1994-09-23|1994-10-12|1994-10-12|COLLECT COD|FOB|ans nod furiously after the s| +16654|205531|30540|3|35|50278.20|0.08|0.03|R|F|1994-10-17|1994-10-22|1994-11-06|NONE|SHIP|nal dugouts sleep after the permanent dep| +16655|532774|20305|1|23|41555.25|0.00|0.06|R|F|1994-06-06|1994-04-08|1994-06-15|COLLECT COD|AIR|into beans use against the ideas. u| +16655|316437|41450|2|20|29068.40|0.03|0.01|R|F|1994-03-25|1994-04-21|1994-04-15|COLLECT COD|TRUCK|ions wake bold requests. speci| +16655|350196|197|3|13|16200.34|0.09|0.05|A|F|1994-06-03|1994-03-16|1994-06-15|COLLECT COD|SHIP|ronic packages. even pinto beans try to are| +16655|743153|30696|4|6|7176.72|0.06|0.05|R|F|1994-03-09|1994-05-04|1994-03-18|COLLECT COD|MAIL|ost. blithely ironic | +16655|166690|16691|5|45|79051.05|0.04|0.04|R|F|1994-05-18|1994-04-05|1994-05-28|DELIVER IN PERSON|TRUCK|. regular pinto beans are slyly regula| +16655|550635|13147|6|26|43825.86|0.09|0.06|A|F|1994-02-25|1994-03-26|1994-03-19|COLLECT COD|RAIL|d instructions affix fluffily across t| +16655|520168|7699|7|46|54654.44|0.00|0.07|A|F|1994-05-11|1994-04-04|1994-05-24|TAKE BACK RETURN|TRUCK|lyly regular dolphi| +16680|460112|35131|1|46|49316.14|0.05|0.00|R|F|1995-01-07|1995-01-07|1995-02-01|NONE|RAIL|ess ideas | +16680|91014|41015|2|24|24120.24|0.08|0.01|R|F|1994-12-13|1994-12-25|1994-12-28|NONE|AIR|ironic accounts. fur| +16680|671307|8847|3|11|14060.97|0.10|0.00|R|F|1994-12-17|1995-02-05|1994-12-30|TAKE BACK RETURN|SHIP|ests. permanently ironic grouches aff| +16680|653481|15995|4|19|27254.55|0.04|0.07|R|F|1994-11-20|1995-01-11|1994-12-08|COLLECT COD|SHIP|osits against the final excuses c| +16680|48076|48077|5|23|23553.61|0.04|0.00|R|F|1995-02-11|1994-12-26|1995-03-08|TAKE BACK RETURN|TRUCK|ly final foxes. slo| +16680|2064|39565|6|10|9660.60|0.00|0.03|R|F|1995-01-24|1995-02-14|1995-01-30|COLLECT COD|MAIL| blithely. unusual | +16681|979053|41573|1|34|38488.34|0.10|0.02|N|O|1998-09-20|1998-10-17|1998-10-19|COLLECT COD|FOB|furiously regular accounts | +16681|931507|6544|2|12|18461.52|0.07|0.00|N|O|1998-11-20|1998-09-16|1998-11-28|COLLECT COD|AIR|requests. ironic requests run blithely.| +16682|314741|2260|1|15|26335.95|0.10|0.03|A|F|1993-05-03|1993-06-09|1993-05-26|COLLECT COD|TRUCK|uests. pending, ironic platelet| +16682|846098|33647|2|38|39673.90|0.00|0.05|A|F|1993-06-24|1993-06-30|1993-07-22|TAKE BACK RETURN|TRUCK|beans: blit| +16682|358006|20514|3|34|36175.66|0.08|0.00|R|F|1993-07-14|1993-05-12|1993-07-29|TAKE BACK RETURN|SHIP|t nag outside the slyly final depo| +16682|2542|15043|4|26|37558.04|0.01|0.01|A|F|1993-06-23|1993-06-26|1993-07-19|TAKE BACK RETURN|AIR| of the requests. a| +16682|709812|34841|5|30|54653.40|0.00|0.02|A|F|1993-05-13|1993-07-02|1993-05-19|COLLECT COD|RAIL|ckly express requests cajol| +16682|808246|33279|6|43|49630.60|0.05|0.00|A|F|1993-06-04|1993-05-16|1993-06-05|DELIVER IN PERSON|FOB|doggedly special requests boost | +16682|184913|34914|7|28|55941.48|0.08|0.07|R|F|1993-04-23|1993-07-10|1993-05-14|COLLECT COD|MAIL|ial platelets detect above| +16683|823129|48162|1|10|10520.80|0.07|0.08|R|F|1994-11-04|1995-01-01|1994-11-18|TAKE BACK RETURN|FOB|the blithely reg| +16683|319455|31962|2|3|4423.32|0.02|0.06|R|F|1994-10-27|1994-12-11|1994-11-20|COLLECT COD|SHIP|lar accounts. furiously ironic accounts s| +16683|64936|27438|3|27|51325.11|0.06|0.04|A|F|1994-11-03|1994-11-14|1994-11-28|TAKE BACK RETURN|RAIL|eep after the courts. slyly | +16683|374178|36686|4|24|30051.84|0.07|0.06|A|F|1994-11-26|1994-11-25|1994-12-12|COLLECT COD|FOB|eodolites. carefully final packages caj| +16683|809223|46772|5|39|44155.02|0.08|0.02|R|F|1994-12-18|1994-11-27|1994-12-23|NONE|REG AIR|c pinto beans haggle| +16684|265212|2728|1|14|16480.80|0.10|0.03|A|F|1995-01-07|1994-11-30|1995-01-27|TAKE BACK RETURN|TRUCK|its breach q| +16685|295450|7956|1|18|26017.92|0.10|0.00|N|O|1996-08-28|1996-09-28|1996-09-03|DELIVER IN PERSON|REG AIR|azzle quickly| +16685|619999|45024|2|15|28784.40|0.05|0.06|N|O|1996-07-27|1996-09-12|1996-07-30|COLLECT COD|AIR|ke furiously even accounts. bold idea| +16685|319635|19636|3|14|23164.68|0.06|0.03|N|O|1996-09-19|1996-09-06|1996-10-07|COLLECT COD|SHIP|into beans. carefully even pinto beans a| +16685|100260|37767|4|12|15123.12|0.00|0.04|N|O|1996-09-12|1996-09-11|1996-09-21|DELIVER IN PERSON|RAIL|equests wake. unusual packages according| +16686|877543|27544|1|41|62340.50|0.04|0.02|R|F|1994-07-24|1994-06-17|1994-08-21|NONE|FOB|y deposits haggle sl| +16686|863323|875|2|47|60455.16|0.01|0.06|R|F|1994-07-25|1994-06-02|1994-07-26|NONE|TRUCK|, regular accounts doubt. express, un| +16686|858966|21484|3|4|7699.68|0.09|0.08|A|F|1994-08-18|1994-06-25|1994-08-22|DELIVER IN PERSON|AIR|r the even, ironic theodolite| +16687|751835|14351|1|23|43396.40|0.06|0.04|A|F|1994-03-11|1994-02-21|1994-03-15|NONE|MAIL|ttainments nag furiously bold accounts. f| +16687|78529|16033|2|26|39195.52|0.03|0.02|A|F|1994-04-03|1994-03-18|1994-04-07|NONE|RAIL| theodolites.| +16712|507141|19652|1|36|41332.32|0.00|0.08|A|F|1994-04-29|1994-05-14|1994-05-23|DELIVER IN PERSON|FOB|gle always pending de| +16713|74480|36982|1|30|43634.40|0.06|0.08|R|F|1995-02-04|1995-02-03|1995-02-23|TAKE BACK RETURN|REG AIR|luffily even acc| +16713|771312|46343|2|1|1383.28|0.03|0.03|R|F|1995-03-17|1995-02-14|1995-03-19|COLLECT COD|MAIL|es. pinto beans wake slyl| +16713|431434|6451|3|4|5461.64|0.10|0.01|A|F|1995-03-28|1995-03-03|1995-04-11|NONE|MAIL|sits are blithel| +16713|103907|41414|4|34|64970.60|0.00|0.07|R|F|1995-04-21|1995-02-24|1995-04-27|DELIVER IN PERSON|SHIP|e excuses. slyly even theod| +16713|357755|45277|5|28|50756.72|0.08|0.04|A|F|1995-01-11|1995-03-16|1995-02-07|COLLECT COD|TRUCK|oxes lose past the blithely silent pack| +16713|773994|11540|6|33|68242.68|0.07|0.08|A|F|1995-02-27|1995-02-02|1995-03-05|DELIVER IN PERSON|MAIL|es about the carefully even instru| +16713|500568|25589|7|50|78427.00|0.08|0.06|A|F|1995-05-01|1995-02-08|1995-05-27|NONE|FOB|theodolites believe never. fur| +16714|30691|18192|1|8|12973.52|0.08|0.04|N|O|1998-02-02|1998-01-17|1998-02-04|NONE|RAIL|odolites acro| +16714|811885|36918|2|3|5390.52|0.09|0.00|N|O|1997-12-06|1997-12-28|1997-12-11|TAKE BACK RETURN|AIR|onic dinos haggle warthogs. depos| +16714|348591|23604|3|10|16395.80|0.00|0.00|N|O|1997-11-26|1997-12-08|1997-12-25|NONE|TRUCK|ss forges sleep | +16714|765877|28393|4|16|31085.44|0.05|0.00|N|O|1997-12-29|1998-01-07|1998-01-14|COLLECT COD|TRUCK|kly enticing dependencies | +16715|710235|47778|1|43|53543.60|0.05|0.08|N|O|1995-11-27|1995-09-26|1995-12-17|TAKE BACK RETURN|REG AIR|the furiously| +16716|288193|13204|1|24|28348.32|0.00|0.00|N|O|1998-03-15|1998-02-15|1998-03-23|TAKE BACK RETURN|MAIL|usual requests above the fluffily| +16716|650488|489|2|37|53222.65|0.08|0.00|N|O|1998-03-26|1998-03-18|1998-04-14|DELIVER IN PERSON|AIR|ake above th| +16716|736425|11454|3|40|58455.60|0.01|0.06|N|O|1998-03-04|1998-03-13|1998-03-23|COLLECT COD|FOB|ly regular pinto beans print fur| +16716|93279|5781|4|10|12722.70|0.10|0.05|N|O|1998-01-21|1998-02-10|1998-02-04|NONE|FOB|y express packages according | +16717|302227|27240|1|21|25813.41|0.02|0.00|N|O|1996-10-14|1996-10-11|1996-10-23|COLLECT COD|TRUCK| special deposits wake. blithely| +16717|524954|24955|2|47|93009.71|0.08|0.06|N|O|1996-12-31|1996-12-05|1997-01-12|NONE|TRUCK|use carefully ironic pl| +16717|893657|18692|3|41|67675.01|0.04|0.06|N|O|1996-11-24|1996-11-15|1996-12-18|DELIVER IN PERSON|RAIL|express ideas. blithely regular dolphi| +16717|692671|5185|4|14|23290.96|0.02|0.00|N|O|1996-12-06|1996-11-08|1996-12-17|NONE|SHIP|ic packages. quickly ironic requests | +16717|713231|25746|5|9|11197.80|0.01|0.01|N|O|1996-10-11|1996-10-16|1996-10-16|COLLECT COD|FOB|ackages cajole slyly. ironic foxes| +16717|263141|25647|6|5|5520.65|0.09|0.03|N|O|1996-09-23|1996-11-08|1996-10-17|COLLECT COD|FOB| after the quickly final packages. request| +16717|606003|31028|7|8|7271.76|0.08|0.06|N|O|1996-10-24|1996-12-06|1996-11-10|DELIVER IN PERSON|MAIL|n packages| +16718|80795|43297|1|24|42618.96|0.00|0.01|N|O|1995-12-24|1995-12-27|1996-01-23|NONE|TRUCK|e carefully exp| +16718|916030|3585|2|17|17781.83|0.07|0.00|N|O|1996-01-22|1996-01-20|1996-02-15|TAKE BACK RETURN|MAIL|ackages can haggle q| +16718|711623|24138|3|11|17980.49|0.08|0.03|N|O|1996-02-17|1996-02-02|1996-03-15|TAKE BACK RETURN|MAIL|ar deposits cajole fur| +16718|239095|14104|4|18|18613.44|0.04|0.05|N|O|1996-01-07|1996-01-24|1996-01-23|TAKE BACK RETURN|FOB|osits haggle according to the furiously ir| +16718|463509|1037|5|10|14724.80|0.08|0.06|N|O|1995-11-26|1996-01-28|1995-11-29|TAKE BACK RETURN|RAIL|e fluffily carefully ironic platelets. dogg| +16718|194732|7236|6|5|9133.65|0.05|0.01|N|O|1995-12-11|1995-12-11|1995-12-16|COLLECT COD|REG AIR|bold dependenci| +16718|860305|35340|7|21|26570.46|0.03|0.07|N|O|1996-01-20|1995-12-19|1996-02-17|NONE|SHIP| the regular, ironic theodolites.| +16719|144735|32242|1|8|14237.84|0.08|0.01|N|O|1998-01-06|1997-11-08|1998-01-10|DELIVER IN PERSON|TRUCK|ic, ironic platelets. even, ironic ideas de| +16719|554582|29605|2|34|55643.04|0.06|0.07|N|O|1997-12-19|1997-11-15|1998-01-01|TAKE BACK RETURN|SHIP|gular instructions. dugouts al| +16719|850041|42|3|14|13874.00|0.01|0.03|N|O|1997-12-14|1997-12-25|1997-12-29|COLLECT COD|REG AIR|e carefully express acco| +16744|126942|14449|1|20|39378.80|0.05|0.05|R|F|1992-11-21|1992-11-07|1992-11-25|TAKE BACK RETURN|TRUCK|pinto beans n| +16744|498423|35951|2|47|66805.80|0.03|0.06|A|F|1992-09-16|1992-10-31|1992-10-09|TAKE BACK RETURN|MAIL|nts nod fluffily-- regular deposits under t| +16744|994463|44464|3|7|10901.94|0.03|0.07|A|F|1992-11-18|1992-10-07|1992-12-10|NONE|AIR|sly bold requests. quickly fin| +16744|933278|33279|4|5|6556.15|0.03|0.08|R|F|1992-10-08|1992-10-01|1992-11-07|TAKE BACK RETURN|FOB|ly final asymptotes eat blithely bli| +16744|599941|24964|5|26|53063.92|0.05|0.03|R|F|1992-10-22|1992-09-22|1992-11-04|COLLECT COD|RAIL|tructions nag bravely| +16745|690020|15047|1|3|3029.97|0.04|0.00|A|F|1992-05-13|1992-03-19|1992-06-12|DELIVER IN PERSON|SHIP|beans boost slyly regular inst| +16745|162923|25427|2|41|81422.72|0.04|0.08|A|F|1992-02-27|1992-03-15|1992-03-09|TAKE BACK RETURN|MAIL|ial theodolites. furiously pen| +16745|239409|39410|3|41|55283.99|0.01|0.04|A|F|1992-04-28|1992-04-30|1992-05-13|NONE|MAIL|nes according to| +16745|739891|14920|4|18|34755.48|0.09|0.00|R|F|1992-06-06|1992-05-01|1992-06-26|COLLECT COD|FOB|ackages wake regular| +16745|340743|28262|5|23|41025.79|0.07|0.07|A|F|1992-02-24|1992-04-16|1992-03-01|COLLECT COD|REG AIR|mptotes. carefully regular frays sublate af| +16745|856423|6424|6|30|41381.40|0.10|0.04|A|F|1992-03-14|1992-03-23|1992-04-10|NONE|SHIP|ickly dolphins. slyly final packages wake | +16746|570700|20701|1|36|63744.48|0.09|0.08|A|F|1994-12-01|1994-11-11|1994-12-18|COLLECT COD|RAIL|lites; quickly unusual i| +16746|754280|41826|2|6|8005.50|0.07|0.05|R|F|1995-01-21|1994-10-31|1995-01-28|NONE|REG AIR|final packages haggle blit| +16746|167711|30215|3|40|71148.40|0.07|0.03|A|F|1994-09-27|1994-12-06|1994-10-20|DELIVER IN PERSON|MAIL|nts. quickly final dolphins sleep. rea| +16746|709183|46726|4|11|13113.65|0.04|0.08|A|F|1994-10-29|1994-11-16|1994-11-18|TAKE BACK RETURN|RAIL|ains at the pending deposits | +16746|229969|17482|5|36|68362.20|0.05|0.02|R|F|1994-12-14|1994-11-07|1994-12-18|TAKE BACK RETURN|REG AIR|carefully regular theodol| +16746|79703|42205|6|37|62259.90|0.02|0.04|A|F|1994-10-09|1994-12-19|1994-10-10|COLLECT COD|RAIL|ual ideas are quickly according to | +16746|557544|20056|7|9|14413.68|0.05|0.01|A|F|1994-10-06|1994-11-23|1994-10-15|COLLECT COD|REG AIR|s the blit| +16747|628144|40657|1|50|53605.50|0.09|0.01|R|F|1994-11-14|1994-10-27|1994-12-14|DELIVER IN PERSON|MAIL|r requests across the slowly final account| +16748|326349|1362|1|12|16503.96|0.06|0.02|N|O|1997-03-06|1997-03-05|1997-03-31|COLLECT COD|SHIP|r foxes use quickly alongside of | +16749|597553|47554|1|49|80875.97|0.04|0.04|N|O|1996-09-11|1996-10-17|1996-10-02|TAKE BACK RETURN|TRUCK|counts. fluffily regular| +16749|57762|20264|2|10|17197.60|0.00|0.06|N|O|1996-10-17|1996-09-07|1996-10-27|TAKE BACK RETURN|MAIL| carefully among the carefully i| +16749|795186|7702|3|27|34591.05|0.05|0.03|N|O|1996-09-06|1996-09-24|1996-10-06|COLLECT COD|SHIP|courts thrash. blithel| +16749|676371|26372|4|22|29641.48|0.07|0.02|N|O|1996-08-31|1996-10-02|1996-09-23|NONE|MAIL| regular accounts abo| +16749|754666|17182|5|20|34412.60|0.09|0.05|N|O|1996-10-28|1996-08-28|1996-11-12|TAKE BACK RETURN|AIR|und the furiously express id| +16749|655043|42583|6|16|15968.16|0.07|0.02|N|O|1996-09-27|1996-09-16|1996-10-26|DELIVER IN PERSON|AIR| blithely bold theodolites. carefully bold| +16750|770774|20775|1|36|66410.64|0.03|0.07|A|F|1995-04-29|1995-03-01|1995-05-07|DELIVER IN PERSON|MAIL|regular foxes. special asymptote| +16750|384605|47113|2|48|81100.32|0.07|0.01|R|F|1995-04-29|1995-02-15|1995-05-20|NONE|AIR|al deposits? regular foxe| +16750|50005|25008|3|15|14325.00|0.06|0.04|R|F|1995-01-26|1995-02-26|1995-02-23|COLLECT COD|AIR|l foxes. carefully even pinto b| +16750|430406|17931|4|36|48109.68|0.07|0.07|R|F|1995-05-01|1995-03-20|1995-05-08|NONE|AIR|its haggle along the| +16751|964129|26649|1|32|38178.56|0.09|0.07|N|O|1997-12-04|1997-12-14|1997-12-14|TAKE BACK RETURN|REG AIR|s. blithel| +16751|110045|47552|2|48|50641.92|0.10|0.03|N|O|1997-11-15|1997-12-21|1997-11-30|COLLECT COD|SHIP|usual packages | +16751|519922|44943|3|17|33012.30|0.10|0.01|N|O|1998-02-02|1998-01-21|1998-02-19|DELIVER IN PERSON|RAIL|ests are slyly| +16751|318499|18500|4|44|66769.12|0.07|0.05|N|O|1997-11-21|1998-01-23|1997-11-23|NONE|TRUCK|ke boldly a| +16776|552011|14523|1|45|47834.55|0.05|0.08|A|F|1995-01-27|1994-11-24|1995-02-13|COLLECT COD|SHIP|y carefully bold packages. carefu| +16776|647129|22154|2|5|5380.45|0.07|0.07|A|F|1994-12-02|1994-12-31|1994-12-10|COLLECT COD|RAIL|y ironic instructions. express depos| +16776|281764|6775|3|10|17457.50|0.00|0.05|A|F|1994-12-18|1994-12-03|1995-01-12|NONE|MAIL|ng to the f| +16776|596127|8639|4|2|2446.20|0.01|0.04|R|F|1995-01-29|1994-11-19|1995-02-19|NONE|FOB|ccounts sleep express excuses. quickl| +16777|78201|28202|1|33|38913.60|0.07|0.08|R|F|1993-08-13|1993-09-02|1993-08-21|NONE|AIR|he boldly final asymptot| +16777|313754|13755|2|40|70709.60|0.07|0.07|R|F|1993-09-27|1993-07-24|1993-10-21|DELIVER IN PERSON|FOB|s. slyly blithe | +16777|254782|29793|3|40|69470.80|0.04|0.00|A|F|1993-09-18|1993-08-05|1993-10-07|COLLECT COD|AIR|ronic deposits. accounts cajole. carefull| +16778|131836|31837|1|48|89655.84|0.09|0.06|N|O|1996-06-12|1996-06-07|1996-07-04|NONE|SHIP|e about the slyly fin| +16779|950199|25238|1|33|41221.95|0.08|0.00|A|F|1994-12-15|1994-12-22|1995-01-14|TAKE BACK RETURN|AIR|e furiously even requests are car| +16779|983802|33803|2|17|32057.92|0.04|0.07|A|F|1995-02-27|1994-12-18|1995-03-17|COLLECT COD|MAIL|g to the slyly regula| +16780|411635|49160|1|5|7733.05|0.04|0.01|N|O|1998-04-30|1998-05-11|1998-05-21|NONE|TRUCK|ly special packages cajole. ironic accounts| +16780|341048|41049|2|29|31581.87|0.04|0.00|N|O|1998-04-23|1998-03-26|1998-05-01|TAKE BACK RETURN|MAIL| slyly ironic ideas. ironic pinto beans caj| +16780|977748|40268|3|20|36514.00|0.09|0.06|N|O|1998-06-02|1998-04-08|1998-06-19|TAKE BACK RETURN|AIR|ss instructions. car| +16781|594022|31556|1|40|44640.00|0.04|0.08|N|O|1998-01-08|1997-12-13|1998-01-11|TAKE BACK RETURN|REG AIR|efully about the speci| +16781|721392|33907|2|17|24027.12|0.07|0.00|N|O|1997-10-02|1997-12-11|1997-10-21|NONE|RAIL| are carefully silent requests. fin| +16781|426751|1768|3|22|36910.06|0.10|0.07|N|O|1997-10-25|1997-11-10|1997-11-16|COLLECT COD|REG AIR|sly. unusual | +16781|388038|546|4|37|41662.74|0.08|0.07|N|O|1997-12-21|1997-12-19|1998-01-16|DELIVER IN PERSON|SHIP|sly about the stea| +16781|749075|11590|5|9|10116.36|0.01|0.06|N|O|1998-01-14|1997-10-25|1998-01-19|COLLECT COD|RAIL|ke against the carefully even depend| +16781|698948|11462|6|19|36991.29|0.03|0.07|N|O|1997-10-20|1997-11-29|1997-11-04|TAKE BACK RETURN|MAIL| carefully. regular pa| +16782|496660|21679|1|3|4969.92|0.08|0.06|R|F|1993-11-26|1993-11-20|1993-12-07|NONE|RAIL|ndencies impre| +16782|362655|37670|2|17|29199.88|0.09|0.04|A|F|1994-01-20|1993-12-02|1994-02-18|COLLECT COD|FOB|y regular requests| +16782|136700|49203|3|46|79888.20|0.07|0.03|R|F|1993-11-18|1993-12-22|1993-11-19|NONE|RAIL|ecial instru| +16782|509312|46843|4|41|54172.89|0.07|0.06|A|F|1994-01-26|1993-12-10|1994-01-28|NONE|SHIP|ounts sleep carefully. blithely expre| +16782|6509|44010|5|32|45296.00|0.01|0.08|R|F|1993-11-13|1993-11-19|1993-12-04|COLLECT COD|AIR|ackages sleep over the requests. regular re| +16782|385814|10829|6|3|5699.40|0.01|0.01|A|F|1993-10-08|1993-11-12|1993-10-24|COLLECT COD|REG AIR|lar excuses wake? fur| +16783|189243|39244|1|8|10657.92|0.00|0.01|N|O|1995-10-26|1995-08-25|1995-11-09|COLLECT COD|TRUCK|deposits. regula| +16783|591638|4150|2|2|3459.22|0.04|0.08|N|O|1995-09-05|1995-08-31|1995-09-24|COLLECT COD|AIR|ckly bold ideas. e| +16783|652933|27960|3|6|11315.40|0.02|0.04|N|O|1995-10-10|1995-09-23|1995-10-14|TAKE BACK RETURN|AIR|elets wake furiously pending| +16808|558006|8007|1|12|12767.76|0.04|0.08|R|F|1994-02-05|1994-02-24|1994-02-22|NONE|RAIL|ending packages. careful| +16808|398187|48188|2|28|35984.76|0.05|0.02|R|F|1993-12-17|1994-02-08|1993-12-26|TAKE BACK RETURN|FOB|uriously ironic | +16808|322187|22188|3|4|4836.68|0.09|0.04|A|F|1994-02-03|1994-01-25|1994-02-06|DELIVER IN PERSON|SHIP|the carefully| +16808|989445|39446|4|35|53704.00|0.05|0.02|A|F|1994-01-02|1994-02-07|1994-01-17|NONE|AIR|tipliers haggle| +16808|591980|4492|5|11|22791.56|0.04|0.06|R|F|1994-02-09|1994-02-03|1994-02-26|COLLECT COD|TRUCK|ronic requests. regular, sly depos| +16808|391438|16453|6|33|50470.86|0.02|0.06|R|F|1993-12-21|1994-03-07|1993-12-31|COLLECT COD|FOB|uests. final asymptotes nag at | +16809|689312|14339|1|11|14314.08|0.06|0.01|N|O|1997-10-04|1997-10-24|1997-10-24|DELIVER IN PERSON|FOB|tions. blithely expr| +16809|253850|28861|2|39|70349.76|0.04|0.07|N|O|1997-09-13|1997-11-05|1997-09-19|DELIVER IN PERSON|REG AIR|ravely final ideas sleep against the | +16809|448703|36228|3|24|39640.32|0.09|0.06|N|O|1997-11-25|1997-11-05|1997-12-06|TAKE BACK RETURN|SHIP| pinto beans. furiously even theodolites | +16809|345320|7827|4|19|25940.89|0.06|0.00|N|O|1997-10-30|1997-10-03|1997-11-20|TAKE BACK RETURN|MAIL|lar packages. regular,| +16810|659992|47532|1|17|33183.32|0.10|0.02|N|O|1996-07-16|1996-06-26|1996-07-29|TAKE BACK RETURN|FOB|ts. ironic dependencies cajole sometime| +16810|469210|19211|2|28|33017.32|0.00|0.02|N|O|1996-06-11|1996-07-28|1996-07-07|DELIVER IN PERSON|MAIL|lyly regular pinto beans. blithely reg| +16810|998806|11326|3|42|79999.92|0.10|0.06|N|O|1996-08-21|1996-06-29|1996-08-25|COLLECT COD|FOB|sleep slyly regular deposits. silently sile| +16811|630439|30440|1|11|15063.40|0.10|0.02|N|O|1997-04-19|1997-05-01|1997-05-02|TAKE BACK RETURN|AIR|g to the ironic, unu| +16811|779923|29924|2|2|4005.78|0.05|0.03|N|O|1997-06-10|1997-05-02|1997-07-06|DELIVER IN PERSON|REG AIR|equests. furiously regular accounts affix | +16811|162563|12564|3|18|29260.08|0.02|0.01|N|O|1997-03-06|1997-04-04|1997-03-16|NONE|AIR|quietly ex| +16812|618456|30969|1|41|56351.22|0.00|0.03|R|F|1994-06-15|1994-04-19|1994-06-16|COLLECT COD|MAIL|egular asympt| +16813|269381|44392|1|26|35109.62|0.01|0.02|A|F|1993-04-24|1993-03-14|1993-04-26|TAKE BACK RETURN|FOB|usual, final dependencies | +16813|476416|1435|2|31|43164.09|0.04|0.06|A|F|1993-04-25|1993-04-16|1993-05-01|TAKE BACK RETURN|AIR|. carefully final courts haggle. fluffily | +16813|115243|40248|3|12|15098.88|0.02|0.07|R|F|1993-05-21|1993-03-22|1993-06-18|DELIVER IN PERSON|TRUCK|ages-- dolphins acro| +16813|881448|6483|4|26|37164.40|0.03|0.03|A|F|1993-02-15|1993-03-31|1993-02-23|NONE|SHIP|to beans alongside | +16813|485598|35599|5|6|9501.42|0.00|0.03|R|F|1993-02-24|1993-03-24|1993-03-19|COLLECT COD|RAIL| around the blithely close theodolites| +16813|432704|20229|6|29|47463.72|0.10|0.01|R|F|1993-05-05|1993-04-06|1993-05-29|TAKE BACK RETURN|AIR|cross the blith| +16814|410276|35293|1|3|3558.75|0.07|0.02|N|O|1997-06-25|1997-07-30|1997-07-19|NONE|SHIP|quickly final multipliers. depend| +16814|492072|29600|2|42|44690.10|0.04|0.01|N|O|1997-07-30|1997-08-26|1997-08-15|DELIVER IN PERSON|TRUCK|ly furiously pen| +16814|246794|9299|3|46|80075.88|0.04|0.07|N|O|1997-07-20|1997-09-07|1997-08-08|COLLECT COD|TRUCK|le furiously a| +16814|850353|37905|4|14|18246.34|0.08|0.03|N|O|1997-08-30|1997-07-19|1997-09-19|NONE|TRUCK|s. slyly regula| +16814|875126|12678|5|9|9909.72|0.03|0.05|N|O|1997-10-04|1997-07-21|1997-10-06|TAKE BACK RETURN|RAIL|fily since the furiously| +16814|232923|45428|6|6|11135.46|0.01|0.04|N|O|1997-08-02|1997-07-16|1997-08-13|COLLECT COD|MAIL|nal dolphins instead of | +16815|495609|33137|1|50|80229.00|0.07|0.06|N|O|1998-09-27|1998-08-13|1998-10-18|COLLECT COD|AIR|ackages haggle quic| +16815|684601|9628|2|26|41224.82|0.00|0.05|N|O|1998-09-18|1998-09-27|1998-10-16|NONE|REG AIR|tes. stealthy requests are doggedly. regu| +16815|80060|30061|3|28|29121.68|0.03|0.05|N|O|1998-09-15|1998-08-26|1998-09-21|TAKE BACK RETURN|FOB|lly. blithely final platele| +16815|564039|14040|4|46|50738.46|0.01|0.07|N|O|1998-08-17|1998-08-28|1998-08-29|NONE|SHIP| pinto bean| +16815|802873|27906|5|37|65705.71|0.07|0.06|N|O|1998-10-26|1998-08-23|1998-11-10|COLLECT COD|MAIL| dinos sleep after the carefully sil| +16815|872525|47560|6|7|10482.36|0.05|0.05|N|O|1998-07-31|1998-08-08|1998-08-22|NONE|RAIL| ironic, final packages haggle de| +16840|703985|3986|1|43|85524.85|0.01|0.07|N|O|1998-10-12|1998-10-10|1998-11-11|DELIVER IN PERSON|RAIL|ouches. carefully final d| +16840|867606|17607|2|23|36191.88|0.02|0.01|N|O|1998-09-10|1998-10-15|1998-09-19|TAKE BACK RETURN|TRUCK|lets to the evenly even de| +16841|731617|19160|1|18|29674.44|0.03|0.02|N|O|1998-01-07|1998-01-11|1998-01-21|DELIVER IN PERSON|FOB|ccounts. ironic, regula| +16841|272720|22721|2|45|76171.95|0.04|0.08|N|O|1998-03-04|1998-03-07|1998-03-24|COLLECT COD|FOB|riously. even requests| +16842|302440|39959|1|18|25963.74|0.01|0.02|N|O|1996-10-22|1996-08-13|1996-10-25|NONE|AIR|ar asymptotes. slyly pending ideas hag| +16842|99852|37356|2|48|88888.80|0.03|0.07|N|O|1996-06-26|1996-09-13|1996-07-17|NONE|TRUCK|g instructions. blith| +16842|198374|23381|3|9|13251.33|0.06|0.00|N|O|1996-10-19|1996-08-01|1996-10-23|COLLECT COD|MAIL| ideas use around the furiously| +16842|69322|44325|4|23|29700.36|0.08|0.06|N|O|1996-09-23|1996-07-25|1996-09-27|TAKE BACK RETURN|TRUCK|deposits haggle furiously. quickly bol| +16842|85890|48392|5|4|7503.56|0.01|0.00|N|O|1996-07-11|1996-09-15|1996-07-15|TAKE BACK RETURN|SHIP|uriously pending platelets. bold i| +16843|932411|7448|1|12|17320.44|0.09|0.02|N|O|1998-01-31|1998-03-07|1998-02-21|COLLECT COD|RAIL| haggle thin| +16843|25942|38443|2|8|14943.52|0.09|0.01|N|O|1998-05-08|1998-03-13|1998-06-01|NONE|AIR|y carefully b| +16843|6695|44196|3|33|52855.77|0.10|0.02|N|O|1998-01-28|1998-02-14|1998-02-03|DELIVER IN PERSON|AIR|lar asymptotes boost along the blithel| +16844|855093|5094|1|26|27249.30|0.02|0.08|A|F|1992-01-18|1992-04-04|1992-02-13|NONE|REG AIR|al excuses. carefull| +16844|546391|33922|2|17|24435.29|0.05|0.00|A|F|1992-02-15|1992-02-15|1992-02-20|COLLECT COD|RAIL|ly furiously final accounts. regular acc| +16844|185552|35553|3|6|9825.30|0.05|0.01|A|F|1992-02-04|1992-03-20|1992-03-02|DELIVER IN PERSON|SHIP| to the fur| +16844|559413|34436|4|44|64785.16|0.01|0.05|A|F|1992-01-11|1992-02-17|1992-01-26|DELIVER IN PERSON|TRUCK|uests use carefull| +16844|41069|28570|5|17|17171.02|0.05|0.06|A|F|1992-03-24|1992-02-14|1992-04-18|TAKE BACK RETURN|SHIP|o the quickly ironic deposits. care| +16844|246371|46372|6|36|47424.96|0.05|0.03|A|F|1992-02-27|1992-03-13|1992-03-14|TAKE BACK RETURN|REG AIR| pending dependencies sleep slyly regu| +16844|753002|28033|7|34|35868.98|0.08|0.02|A|F|1992-04-21|1992-03-16|1992-05-17|COLLECT COD|FOB|ep carefully except the furi| +16845|700411|37954|1|25|35284.50|0.05|0.08|A|F|1992-11-01|1992-12-20|1992-11-02|DELIVER IN PERSON|MAIL|usual accounts are carefully| +16845|790885|3401|2|9|17782.65|0.09|0.03|A|F|1993-01-10|1992-12-12|1993-01-16|TAKE BACK RETURN|FOB|ely ironic epitaphs among the fluffi| +16845|389481|39482|3|42|65959.74|0.00|0.00|R|F|1992-10-09|1992-12-26|1992-10-30|TAKE BACK RETURN|TRUCK|s asymptotes. slyly regular dep| +16845|993594|43595|4|49|82689.95|0.08|0.07|R|F|1992-12-10|1992-12-24|1992-12-25|NONE|MAIL| wake blithely quiet instructions. excuses | +16845|327520|27521|5|3|4642.53|0.05|0.06|A|F|1993-01-25|1992-11-15|1993-02-24|COLLECT COD|SHIP|e furiously pending gifts. regular, i| +16845|622802|47827|6|42|72440.34|0.00|0.07|R|F|1992-10-22|1992-11-09|1992-11-11|COLLECT COD|SHIP|s along the furious| +16846|177943|27944|1|26|52544.44|0.06|0.03|N|O|1996-12-28|1997-02-16|1997-01-15|DELIVER IN PERSON|AIR|al packages. carefully express pla| +16846|685148|35149|2|46|52123.06|0.06|0.00|N|O|1997-03-31|1997-01-22|1997-04-30|NONE|REG AIR|al, pending t| +16846|274377|24378|3|45|60811.20|0.07|0.00|N|O|1997-02-16|1997-01-21|1997-03-16|NONE|REG AIR|gular requests ar| +16846|447559|35084|4|36|54235.08|0.01|0.01|N|O|1997-04-07|1997-01-23|1997-04-15|COLLECT COD|SHIP|counts nag a| +16846|112518|37523|5|34|52037.34|0.02|0.01|N|O|1997-03-24|1997-01-18|1997-04-02|COLLECT COD|REG AIR|ss packages. unusual dolphins| +16846|85057|35058|6|36|37513.80|0.06|0.03|N|O|1997-02-04|1997-03-01|1997-02-28|COLLECT COD|MAIL|ogs affix slyly special pa| +16846|541389|3900|7|49|70087.64|0.07|0.04|N|O|1997-03-29|1997-02-22|1997-04-08|TAKE BACK RETURN|SHIP|arly final theodolites. blithely express| +16847|109614|34619|1|31|50331.91|0.03|0.08|R|F|1993-10-03|1993-11-21|1993-10-05|TAKE BACK RETURN|REG AIR|ing to the quickly e| +16847|271154|46165|2|26|29253.64|0.10|0.02|A|F|1993-10-05|1993-11-19|1993-10-15|NONE|FOB|. carefully final deposits eat. spe| +16872|17680|17681|1|41|65504.88|0.02|0.08|R|F|1993-01-19|1992-11-01|1993-02-13|TAKE BACK RETURN|FOB|s. ironic dependencie| +16872|138730|26237|2|38|67211.74|0.09|0.03|R|F|1992-11-25|1992-11-06|1992-11-28|TAKE BACK RETURN|AIR|y pending excuses. furiously | +16872|623634|23635|3|31|48285.60|0.08|0.03|A|F|1992-12-13|1992-12-15|1992-12-20|NONE|REG AIR|he regular ideas| +16873|694128|44129|1|46|51616.14|0.05|0.06|A|F|1992-08-04|1992-06-18|1992-08-27|NONE|FOB|gular tithes. | +16873|195327|32837|2|46|65426.72|0.06|0.06|R|F|1992-07-29|1992-06-11|1992-08-15|DELIVER IN PERSON|AIR|al deposits sleep do| +16873|852810|40362|3|33|58171.41|0.05|0.08|R|F|1992-04-28|1992-07-16|1992-05-23|DELIVER IN PERSON|FOB|nts haggle blithely across the s| +16873|172654|22655|4|35|60432.75|0.08|0.02|R|F|1992-07-13|1992-06-06|1992-07-19|DELIVER IN PERSON|AIR|, regular deposits inte| +16874|90530|40531|1|2|3041.06|0.09|0.03|A|F|1992-11-17|1992-11-03|1992-11-29|NONE|TRUCK|s cajole slyly a| +16875|548758|23779|1|21|37941.33|0.04|0.01|N|O|1995-10-17|1995-08-06|1995-11-13|DELIVER IN PERSON|AIR|furiously special dep| +16875|975337|37857|2|47|66377.63|0.02|0.08|N|O|1995-07-12|1995-08-31|1995-07-14|COLLECT COD|TRUCK|ven package| +16875|487364|24892|3|2|2702.68|0.00|0.00|N|O|1995-07-19|1995-08-14|1995-08-01|DELIVER IN PERSON|SHIP|ular, final accounts. even ac| +16875|124666|49671|4|35|59173.10|0.07|0.03|N|O|1995-08-04|1995-09-15|1995-08-16|TAKE BACK RETURN|REG AIR| regular i| +16875|246629|9134|5|10|15756.10|0.03|0.07|N|O|1995-07-08|1995-07-27|1995-07-09|DELIVER IN PERSON|REG AIR|ole blithely abou| +16875|83411|45913|6|25|34860.25|0.03|0.00|N|O|1995-10-19|1995-07-27|1995-11-05|NONE|MAIL|ckages. accounts could are instructions. | +16875|873968|36486|7|5|9709.60|0.02|0.00|N|O|1995-07-27|1995-09-12|1995-08-01|NONE|FOB|hockey players| +16876|771708|34224|1|50|88983.50|0.09|0.03|R|F|1992-10-01|1992-10-12|1992-10-23|NONE|RAIL|across the quickly ironic theodolites. regu| +16876|93975|43976|2|13|25596.61|0.08|0.03|R|F|1992-08-15|1992-10-25|1992-08-25|TAKE BACK RETURN|REG AIR|l accounts. slyl| +16876|433727|21252|3|23|38196.10|0.02|0.04|A|F|1992-09-20|1992-10-28|1992-10-19|DELIVER IN PERSON|TRUCK|s wake. fluffily express frays cajo| +16876|634907|34908|4|14|25786.18|0.00|0.05|A|F|1992-09-28|1992-10-15|1992-10-25|NONE|FOB|carefully. silently speci| +16876|879399|4434|5|22|30323.70|0.04|0.03|A|F|1992-11-06|1992-09-27|1992-11-19|TAKE BACK RETURN|SHIP|g to the furious| +16877|611401|48938|1|33|43308.21|0.02|0.07|N|O|1995-12-04|1995-10-02|1995-12-27|DELIVER IN PERSON|AIR|y unusual courts breach slyly above t| +16877|808873|8874|2|23|40982.09|0.10|0.08|N|O|1995-10-01|1995-11-01|1995-10-16|TAKE BACK RETURN|MAIL|ts breach carefully carefully regular| +16877|720388|32903|3|32|45067.20|0.08|0.03|N|O|1995-08-17|1995-09-24|1995-08-23|COLLECT COD|SHIP|s wake furiously. sly| +16877|548176|10687|4|15|18362.25|0.03|0.02|N|O|1995-09-10|1995-09-09|1995-09-19|DELIVER IN PERSON|SHIP|dencies. carefully ironi| +16877|179533|17043|5|36|58051.08|0.00|0.01|N|O|1995-09-05|1995-09-28|1995-09-18|COLLECT COD|SHIP|osits. regular, silent packages a| +16877|398675|23690|6|24|42567.84|0.05|0.05|N|O|1995-09-04|1995-10-11|1995-09-21|TAKE BACK RETURN|RAIL|ove the bold courts-- final depos| +16878|936858|36859|1|38|72002.78|0.09|0.01|A|F|1994-01-08|1993-11-30|1994-01-31|TAKE BACK RETURN|RAIL|lar theodolites sleep according to t| +16878|765609|40640|2|42|70331.94|0.03|0.06|R|F|1993-10-07|1993-11-15|1993-10-08|TAKE BACK RETURN|AIR| silent ideas. blithely special p| +16878|579033|41545|3|44|48928.44|0.08|0.04|A|F|1993-09-19|1993-11-30|1993-10-10|DELIVER IN PERSON|SHIP| haggle. ironic foxe| +16878|801225|26258|4|30|33785.40|0.05|0.03|A|F|1993-10-02|1993-11-10|1993-10-30|TAKE BACK RETURN|REG AIR|usly special requests?| +16878|180889|30890|5|29|57126.52|0.03|0.00|R|F|1993-10-05|1993-10-10|1993-11-02|TAKE BACK RETURN|AIR|gular ideas sl| +16879|955628|5629|1|8|13468.64|0.07|0.07|R|F|1994-06-22|1994-05-26|1994-07-08|COLLECT COD|FOB|onic, ironic packages. even, special | +16879|225822|38327|2|9|15730.29|0.03|0.07|R|F|1994-04-23|1994-05-21|1994-04-27|NONE|SHIP|. slow, special accounts ha| +16879|375483|37991|3|30|46754.10|0.07|0.01|R|F|1994-05-18|1994-06-22|1994-05-21|DELIVER IN PERSON|TRUCK|quests. dugouts about th| +16879|740408|2923|4|37|53589.69|0.04|0.07|A|F|1994-05-28|1994-05-11|1994-06-21|TAKE BACK RETURN|SHIP|e carefully unusual foxes. pinto beans boos| +16879|34524|22025|5|22|32087.44|0.05|0.06|A|F|1994-05-01|1994-04-30|1994-05-13|TAKE BACK RETURN|REG AIR|. even, even excuses nag| +16879|240702|40703|6|43|70635.67|0.01|0.06|A|F|1994-04-18|1994-05-29|1994-05-12|COLLECT COD|FOB|arefully carefully| +16879|461940|36959|7|12|22823.04|0.09|0.00|R|F|1994-04-04|1994-05-01|1994-04-06|TAKE BACK RETURN|TRUCK|se at the blithely regu| +16904|814045|39078|1|37|35483.00|0.03|0.02|N|O|1997-02-13|1996-12-15|1997-02-22|COLLECT COD|REG AIR|ording to the ir| +16904|650149|12663|2|4|4396.44|0.08|0.04|N|O|1997-01-05|1997-01-25|1997-02-02|COLLECT COD|SHIP|al platelets cajo| +16904|38578|26079|3|36|54596.52|0.02|0.04|N|O|1996-12-23|1996-12-31|1997-01-16|COLLECT COD|TRUCK|al deposits. furiously regular ac| +16904|374302|49317|4|33|45417.57|0.04|0.08|N|O|1997-02-02|1997-01-16|1997-03-02|COLLECT COD|TRUCK|ccounts nag ac| +16905|7886|32887|1|24|43053.12|0.07|0.01|N|O|1998-07-21|1998-09-01|1998-08-08|COLLECT COD|MAIL|symptotes kin| +16905|538922|13943|2|21|41178.90|0.04|0.06|N|O|1998-08-13|1998-08-24|1998-08-22|NONE|TRUCK| ideas are| +16905|656106|18620|3|28|29737.96|0.01|0.05|N|O|1998-07-30|1998-08-04|1998-08-26|TAKE BACK RETURN|MAIL|equests are care| +16905|171737|46744|4|50|90436.50|0.04|0.08|N|O|1998-09-04|1998-09-18|1998-09-07|COLLECT COD|MAIL|s. furiously pending bra| +16905|374813|24814|5|46|86838.80|0.05|0.01|N|O|1998-07-12|1998-08-24|1998-08-05|NONE|AIR|sleep slyly regular, even asympto| +16905|478662|41172|6|48|78750.72|0.01|0.07|N|O|1998-10-10|1998-09-14|1998-10-15|COLLECT COD|MAIL|c theodolites. carefully even pinto beans| +16905|865813|28331|7|33|58699.41|0.07|0.03|N|O|1998-08-10|1998-08-31|1998-09-06|DELIVER IN PERSON|FOB|round the regular foxes nod among| +16906|717934|42963|1|12|23422.80|0.01|0.03|A|F|1995-02-11|1995-03-23|1995-03-04|TAKE BACK RETURN|RAIL| quickly. unu| +16906|313259|13260|2|34|43256.16|0.04|0.06|A|F|1995-03-22|1995-03-01|1995-03-29|NONE|AIR|y; blithely final pinto bean| +16906|930538|30539|3|1|1568.49|0.09|0.02|R|F|1995-04-17|1995-04-15|1995-04-21|COLLECT COD|TRUCK|ly bold theodolites affix furiously abov| +16906|547941|10452|4|47|93479.24|0.05|0.08|R|F|1995-02-07|1995-03-13|1995-03-07|COLLECT COD|RAIL|y pending ideas sleep blithely according | +16906|235121|47626|5|32|33795.52|0.10|0.08|A|F|1995-05-13|1995-03-02|1995-06-01|NONE|SHIP|ets. silent, regular request| +16906|668829|31343|6|50|89889.50|0.07|0.05|A|F|1995-03-25|1995-03-16|1995-04-24|DELIVER IN PERSON|TRUCK|ly even accounts. pinto | +16906|997255|34813|7|17|22987.57|0.05|0.07|A|F|1995-05-12|1995-04-27|1995-06-06|DELIVER IN PERSON|AIR|etly even foxes haggle qu| +16907|856870|6871|1|44|80380.52|0.02|0.01|N|O|1997-05-04|1997-05-24|1997-05-14|NONE|RAIL|lly bold accounts. regular p| +16907|405625|5626|2|19|29081.40|0.01|0.05|N|O|1997-04-21|1997-03-28|1997-04-27|COLLECT COD|RAIL|he silent foxes sleep regular packages| +16907|338716|38717|3|41|71942.70|0.04|0.04|N|O|1997-04-18|1997-05-17|1997-05-08|COLLECT COD|RAIL|ly. quickly regular| +16907|785099|10130|4|12|14208.72|0.10|0.02|N|O|1997-06-01|1997-03-28|1997-06-13|TAKE BACK RETURN|FOB|lly brave frays doubt slyly pin| +16907|152235|2236|5|26|33467.98|0.00|0.00|N|O|1997-04-07|1997-05-11|1997-04-15|TAKE BACK RETURN|SHIP|y across the blithely busy| +16908|743594|6109|1|49|80240.44|0.04|0.03|N|O|1997-07-29|1997-09-01|1997-08-24|DELIVER IN PERSON|AIR|ys even platelets sleep above the regular a| +16909|5177|5178|1|9|9739.53|0.00|0.02|N|O|1997-05-05|1997-04-03|1997-05-22|DELIVER IN PERSON|AIR|s wake ideas. carefully unusual| +16909|996325|33883|2|24|34110.72|0.02|0.05|N|O|1997-04-11|1997-03-12|1997-04-25|NONE|AIR|e. slyly special accounts | +16909|219291|6804|3|38|45990.64|0.04|0.08|N|O|1997-05-22|1997-04-23|1997-05-24|TAKE BACK RETURN|SHIP| stealthy w| +16910|356739|6740|1|7|12570.04|0.07|0.01|A|F|1993-05-24|1993-06-10|1993-06-10|TAKE BACK RETURN|MAIL|ut the furiousl| +16911|527913|2934|1|25|48522.25|0.08|0.00|N|O|1996-04-12|1996-01-26|1996-04-18|DELIVER IN PERSON|REG AIR|ructions. slyly even r| +16911|628982|28983|2|29|55417.55|0.09|0.01|N|O|1996-03-14|1996-02-10|1996-03-16|COLLECT COD|TRUCK|arefully slyly regular accounts. fluffily f| +16911|290275|27791|3|46|58201.96|0.06|0.06|N|O|1996-04-04|1996-03-15|1996-04-05|TAKE BACK RETURN|FOB| ironic theodolites nag quickly. quickly| +16911|638929|1442|4|35|65376.15|0.10|0.05|N|O|1996-01-17|1996-02-15|1996-01-30|TAKE BACK RETURN|SHIP|jole furiously about the accounts. furious| +16911|467494|17495|5|4|5845.88|0.05|0.05|N|O|1996-02-25|1996-03-09|1996-03-07|COLLECT COD|AIR| requests: slyly regular theodolites dete| +16911|156999|7000|6|10|20559.90|0.00|0.04|N|O|1996-02-03|1996-02-27|1996-03-01|DELIVER IN PERSON|RAIL|yly across the careful a| +16936|924935|24936|1|9|17639.01|0.00|0.01|R|F|1992-11-14|1992-10-31|1992-12-02|TAKE BACK RETURN|REG AIR| regular acc| +16936|368966|43981|2|16|32559.20|0.09|0.03|R|F|1993-01-23|1992-12-04|1993-02-03|NONE|TRUCK|e slyly fluffily ironi| +16937|785446|47962|1|46|70444.86|0.04|0.03|A|F|1992-07-28|1992-06-26|1992-08-23|DELIVER IN PERSON|RAIL|s. regular, ironic deposits use. blith| +16937|986887|49407|2|32|63162.88|0.10|0.02|R|F|1992-07-19|1992-06-03|1992-08-07|COLLECT COD|SHIP| bold dependen| +16937|604965|17478|3|33|61707.69|0.04|0.07|R|F|1992-04-17|1992-06-17|1992-04-26|COLLECT COD|REG AIR|among the express, ironi| +16937|646274|8787|4|29|35386.96|0.08|0.03|R|F|1992-07-04|1992-06-22|1992-07-22|COLLECT COD|RAIL|lar pinto beans cajole furious| +16937|920744|20745|5|39|68823.30|0.01|0.07|A|F|1992-06-23|1992-05-28|1992-07-19|DELIVER IN PERSON|SHIP|gular sauternes.| +16937|937161|37162|6|28|33547.36|0.01|0.07|A|F|1992-04-28|1992-06-19|1992-05-18|NONE|RAIL|ourts affix blit| +16938|68347|43350|1|46|60505.64|0.03|0.03|R|F|1995-01-16|1995-03-23|1995-02-14|DELIVER IN PERSON|FOB|ncies integrate after the special, regular| +16938|697880|22907|2|10|18778.50|0.06|0.03|R|F|1995-04-20|1995-03-22|1995-04-27|DELIVER IN PERSON|REG AIR|ets. slyly ironic reques| +16938|262371|49887|3|30|40000.80|0.03|0.06|A|F|1995-02-11|1995-02-26|1995-03-01|COLLECT COD|MAIL|ual, ironic excuses affix furiously across | +16938|654097|4098|4|6|6306.36|0.06|0.04|R|F|1995-01-28|1995-03-09|1995-02-27|DELIVER IN PERSON|SHIP|sleep quickly b| +16938|405970|5971|5|19|35643.05|0.00|0.05|A|F|1995-03-03|1995-03-16|1995-03-18|TAKE BACK RETURN|SHIP|egular pinto beans. furiously re| +16938|134698|9703|6|30|51980.70|0.04|0.02|A|F|1995-01-24|1995-04-06|1995-01-26|NONE|AIR|ounts wake after the blithely express r| +16938|856402|31437|7|17|23092.12|0.08|0.03|A|F|1995-02-12|1995-02-26|1995-02-17|NONE|SHIP|deposits haggle slyly ironic requests. | +16939|541298|3809|1|18|24106.86|0.05|0.00|N|O|1998-08-24|1998-09-11|1998-09-09|NONE|REG AIR|lithely final warthogs grow furi| +16939|592300|4812|2|46|64044.88|0.06|0.08|N|O|1998-10-21|1998-10-06|1998-10-30|NONE|TRUCK|ld courts. slyly e| +16939|777091|39607|3|21|24529.26|0.09|0.08|N|O|1998-08-05|1998-09-20|1998-08-12|TAKE BACK RETURN|AIR|in instruct| +16939|567172|42195|4|15|18587.25|0.09|0.00|N|O|1998-10-10|1998-10-14|1998-11-01|DELIVER IN PERSON|TRUCK|ress patte| +16939|446938|21955|5|12|22618.92|0.01|0.02|N|O|1998-10-04|1998-09-22|1998-10-08|DELIVER IN PERSON|REG AIR| beans. blithely final theodolite| +16939|672932|47959|6|42|80005.80|0.09|0.07|N|O|1998-09-01|1998-09-24|1998-09-26|COLLECT COD|TRUCK|s sleep furiously carefully fina| +16940|357718|20226|1|9|15981.30|0.04|0.08|R|F|1993-02-11|1993-02-15|1993-03-04|NONE|MAIL|nts. carefully even packages wake | +16940|157291|7292|2|39|52583.31|0.06|0.06|R|F|1992-12-24|1993-02-24|1992-12-29|DELIVER IN PERSON|SHIP|s cajole carefully braids. express, | +16941|72350|22351|1|32|42315.20|0.04|0.05|N|O|1995-07-04|1995-06-03|1995-07-22|NONE|AIR|ckages wake qui| +16941|980018|5057|2|50|54898.50|0.00|0.00|N|O|1995-07-13|1995-06-15|1995-07-14|DELIVER IN PERSON|REG AIR|pinto bean| +16941|159445|9446|3|36|54159.84|0.08|0.07|N|O|1995-07-31|1995-06-10|1995-08-11|DELIVER IN PERSON|RAIL|ular requests. | +16941|779420|29421|4|18|26989.02|0.10|0.06|N|O|1995-08-16|1995-07-02|1995-08-29|NONE|REG AIR| blithely speci| +16941|709897|47440|5|30|57205.80|0.00|0.00|N|O|1995-08-07|1995-07-17|1995-08-13|DELIVER IN PERSON|MAIL|. regular requests | +16941|225179|37684|6|18|19874.88|0.07|0.08|N|O|1995-08-29|1995-07-08|1995-09-20|COLLECT COD|MAIL|ely fluffy do| +16941|575305|328|7|31|42788.68|0.03|0.07|N|O|1995-08-03|1995-06-10|1995-08-13|NONE|TRUCK|ecial accounts. blithely | +16942|144291|31798|1|23|30711.67|0.03|0.07|A|F|1992-09-29|1992-10-07|1992-10-28|TAKE BACK RETURN|TRUCK|ent theodolites wake furi| +16942|91239|3741|2|27|33216.21|0.09|0.01|R|F|1992-11-08|1992-10-29|1992-11-27|DELIVER IN PERSON|RAIL|. final, regular ideas may | +16942|442201|42202|3|27|30865.86|0.07|0.02|A|F|1992-09-27|1992-11-20|1992-10-05|NONE|AIR|etly along the requests! ironic accoun| +16942|59026|21528|4|15|14775.30|0.05|0.01|A|F|1992-12-12|1992-10-22|1993-01-09|COLLECT COD|REG AIR| unusual instructions are fur| +16942|48811|36312|5|29|51034.49|0.00|0.03|R|F|1992-11-25|1992-11-08|1992-11-28|TAKE BACK RETURN|MAIL|y unusual sheaves. slyly even deposits | +16942|349977|12484|6|25|50674.00|0.08|0.08|A|F|1992-09-18|1992-10-22|1992-09-26|NONE|AIR|ously bold sheaves. regula| +16943|675250|277|1|50|61261.00|0.03|0.05|N|O|1996-07-08|1996-05-31|1996-08-07|TAKE BACK RETURN|AIR|accounts sleep slyly theodolites| +16943|921447|46484|2|28|41115.20|0.08|0.04|N|O|1996-07-16|1996-06-09|1996-07-25|NONE|TRUCK|ending requests thrash. blithely reg| +16943|752411|27442|3|12|17560.56|0.05|0.05|N|O|1996-08-27|1996-07-26|1996-09-12|COLLECT COD|AIR|o the carefully final pinto beans| +16968|206840|19345|1|34|59392.22|0.02|0.00|N|O|1995-10-28|1995-09-19|1995-11-09|TAKE BACK RETURN|RAIL|y regular requests haggle f| +16968|345820|8327|2|45|83961.45|0.02|0.03|N|O|1995-11-12|1995-11-06|1995-12-06|TAKE BACK RETURN|FOB|xpress asymptotes| +16969|683168|20708|1|31|35685.03|0.04|0.06|N|O|1997-03-01|1996-12-19|1997-03-07|TAKE BACK RETURN|SHIP|ce of the regular Tiresias. qu| +16969|994182|44183|2|32|40836.48|0.09|0.07|N|O|1997-01-18|1997-02-09|1997-01-21|DELIVER IN PERSON|SHIP|ments above the furiously even frets| +16969|206433|18938|3|49|65631.58|0.09|0.02|N|O|1997-01-30|1996-12-14|1997-02-16|TAKE BACK RETURN|FOB|ely express platelets must boost thin| +16970|696912|9426|1|39|74446.32|0.00|0.03|N|O|1997-09-08|1997-08-07|1997-09-17|NONE|RAIL|structions. final instructions amon| +16970|984822|47342|2|12|22881.36|0.01|0.04|N|O|1997-08-10|1997-08-22|1997-09-09|COLLECT COD|TRUCK|sual theodolites nag quickly regular idea| +16971|599980|49981|1|41|85278.36|0.05|0.03|R|F|1995-03-26|1995-04-09|1995-04-21|COLLECT COD|REG AIR|haggle slyly always ironic instructio| +16971|857548|7549|2|2|3011.00|0.03|0.01|R|F|1995-04-22|1995-05-07|1995-05-08|DELIVER IN PERSON|SHIP|sleep daringl| +16971|806235|6236|3|35|39941.65|0.06|0.03|R|F|1995-03-20|1995-05-25|1995-03-30|DELIVER IN PERSON|REG AIR|arefully. bold requests cajole f| +16971|382401|32402|4|37|54885.43|0.05|0.01|A|F|1995-05-02|1995-05-08|1995-05-23|DELIVER IN PERSON|MAIL|cross the carefully special pinto | +16971|13098|38099|5|14|14155.26|0.03|0.00|R|F|1995-04-09|1995-05-25|1995-04-11|COLLECT COD|SHIP|kages are sl| +16971|130207|5212|6|22|27218.40|0.01|0.01|N|O|1995-07-03|1995-05-24|1995-07-27|DELIVER IN PERSON|AIR|ely upon the quick| +16972|906364|18883|1|30|41109.60|0.01|0.03|N|O|1997-05-05|1997-03-01|1997-06-02|NONE|FOB|s integrate slyly around the quickly f| +16972|259676|9677|2|46|75240.36|0.02|0.06|N|O|1997-04-29|1997-04-03|1997-05-06|DELIVER IN PERSON|SHIP|nusual instru| +16972|370607|33115|3|18|30196.62|0.10|0.03|N|O|1997-03-16|1997-02-24|1997-03-30|NONE|TRUCK|final, express deposits according t| +16972|790707|40708|4|29|52132.43|0.10|0.03|N|O|1997-03-15|1997-03-05|1997-03-19|NONE|FOB| against th| +16973|455818|5819|1|10|17737.90|0.03|0.00|N|O|1998-02-08|1998-02-01|1998-02-23|COLLECT COD|SHIP|l grouches? furiously ir| +16973|922005|34524|2|21|21566.16|0.07|0.07|N|O|1998-03-04|1998-03-19|1998-03-28|DELIVER IN PERSON|MAIL| fluffily f| +16974|200205|25214|1|31|34260.89|0.03|0.00|N|O|1998-02-15|1998-04-05|1998-02-23|DELIVER IN PERSON|REG AIR|nts nag across the ideas. unusual | +16974|835844|23393|2|38|67632.40|0.03|0.07|N|O|1998-06-11|1998-04-17|1998-06-29|DELIVER IN PERSON|SHIP|s. furiously regula| +16974|20220|7721|3|3|3420.66|0.04|0.08|N|O|1998-03-29|1998-04-20|1998-04-05|TAKE BACK RETURN|SHIP|r requests wake | +16975|791102|41103|1|27|32212.89|0.08|0.03|N|O|1996-06-26|1996-06-29|1996-06-28|DELIVER IN PERSON|FOB|pendencies cajole| +16975|48942|11443|2|10|18909.40|0.06|0.04|N|O|1996-07-19|1996-07-24|1996-08-09|TAKE BACK RETURN|AIR|ackages. furiously ironic idea| +17000|853842|28877|1|38|68240.40|0.05|0.01|N|O|1997-08-27|1997-09-20|1997-08-31|TAKE BACK RETURN|SHIP|regular packages are daringly accor| +17000|517555|17556|2|16|25160.48|0.03|0.04|N|O|1997-07-28|1997-09-23|1997-08-06|DELIVER IN PERSON|TRUCK|e ironic deposits integrate furiously | +17000|540296|15317|3|15|20044.05|0.09|0.05|N|O|1997-10-10|1997-08-14|1997-10-19|TAKE BACK RETURN|TRUCK|yly regular foxes| +17001|533167|8188|1|17|20402.38|0.07|0.01|N|O|1996-11-02|1996-12-08|1996-11-15|TAKE BACK RETURN|SHIP|he slyly silent ideas. idly unu| +17001|926972|2009|2|5|9994.65|0.07|0.03|N|O|1996-11-25|1996-11-11|1996-12-15|COLLECT COD|MAIL|c accounts poach furiously| +17001|611414|23927|3|43|56991.34|0.10|0.00|N|O|1996-12-26|1996-11-21|1997-01-09|TAKE BACK RETURN|RAIL| packages. furiously quiet theod| +17001|22940|35441|4|22|40984.68|0.10|0.04|N|O|1996-12-10|1996-11-20|1996-12-29|NONE|FOB|even excuses sleep slowly bold request| +17001|541969|29500|5|20|40218.80|0.07|0.01|N|O|1996-10-07|1996-12-06|1996-11-01|COLLECT COD|FOB|inal foxes? t| +17001|864948|27466|6|18|34432.20|0.07|0.04|N|O|1996-10-09|1996-12-11|1996-11-03|TAKE BACK RETURN|MAIL|t the blithely regular orbits. b| +17001|177941|27942|7|1|2018.94|0.00|0.04|N|O|1996-11-16|1996-11-02|1996-12-14|TAKE BACK RETURN|SHIP|packages wake. ideas wake fluffily. final, | +17002|648153|35690|1|36|39640.32|0.03|0.03|A|F|1994-05-29|1994-05-10|1994-06-06|COLLECT COD|REG AIR|nal dependencies. unusual, even request| +17002|495253|7763|2|40|49929.20|0.03|0.00|A|F|1994-06-12|1994-04-18|1994-06-25|TAKE BACK RETURN|FOB|hinly bold | +17002|701201|26230|3|44|52895.48|0.03|0.04|R|F|1994-05-22|1994-05-12|1994-05-25|DELIVER IN PERSON|REG AIR|special foxes caj| +17002|73345|48348|4|4|5273.36|0.10|0.01|A|F|1994-04-12|1994-05-23|1994-04-21|TAKE BACK RETURN|RAIL| after the pending, pending ideas. reg| +17002|694326|31866|5|1|1320.29|0.01|0.02|R|F|1994-06-28|1994-04-11|1994-07-09|COLLECT COD|TRUCK|ic patterns. furiously busy foxes believe s| +17002|521315|46336|6|37|49442.73|0.07|0.00|A|F|1994-06-20|1994-05-11|1994-07-12|DELIVER IN PERSON|AIR| quickly final accounts. ironic acco| +17003|277638|40144|1|32|51699.84|0.05|0.08|R|F|1992-06-06|1992-06-15|1992-06-08|DELIVER IN PERSON|RAIL|oost blithely across the | +17003|248086|10591|2|42|43430.94|0.07|0.04|R|F|1992-05-16|1992-06-30|1992-05-26|COLLECT COD|FOB| pending packages. quick| +17003|571995|9529|3|35|72343.95|0.07|0.04|A|F|1992-05-06|1992-05-31|1992-05-10|NONE|RAIL|ularly pending deposits. final| +17003|508463|33484|4|33|48557.52|0.05|0.01|A|F|1992-08-07|1992-05-31|1992-08-09|DELIVER IN PERSON|RAIL| somas sleep after t| +17004|425581|13106|1|33|49716.48|0.09|0.02|A|F|1993-06-09|1993-07-20|1993-06-14|DELIVER IN PERSON|MAIL|heodolites. carefull| +17005|820716|45749|1|30|49100.10|0.00|0.02|R|F|1992-10-06|1992-12-07|1992-10-24|DELIVER IN PERSON|SHIP|pinto beans. express platelets i| +17005|760219|35250|2|23|29421.14|0.07|0.04|A|F|1992-12-19|1992-11-09|1992-12-22|DELIVER IN PERSON|REG AIR| the blithely special pinto| +17005|999343|49344|3|10|14423.00|0.09|0.04|R|F|1992-10-02|1992-10-31|1992-10-06|DELIVER IN PERSON|AIR|riously among the furiously ironic deposits| +17005|953331|40889|4|26|35991.54|0.00|0.04|R|F|1992-09-30|1992-11-25|1992-10-21|COLLECT COD|AIR|according t| +17005|621246|33759|5|1|1167.21|0.09|0.08|A|F|1992-12-20|1992-10-26|1993-01-08|NONE|FOB|iously bold theodolites. special idea| +17006|92945|30449|1|46|89145.24|0.08|0.06|A|F|1994-10-27|1994-10-11|1994-11-12|DELIVER IN PERSON|REG AIR|ing theodolites nod f| +17007|412150|12151|1|50|53106.50|0.10|0.03|N|O|1998-09-02|1998-07-27|1998-09-06|NONE|MAIL|endencies. entici| +17007|4854|17355|2|14|24623.90|0.01|0.00|N|O|1998-10-14|1998-09-21|1998-10-30|TAKE BACK RETURN|MAIL|ost against t| +17007|572299|9833|3|31|42509.37|0.03|0.02|N|O|1998-09-20|1998-07-30|1998-09-30|TAKE BACK RETURN|FOB|ely even foxes was. ironic, ironic deposit| +17007|612907|444|4|34|61875.58|0.02|0.01|N|O|1998-07-30|1998-08-22|1998-08-02|DELIVER IN PERSON|REG AIR|ag boldly blithely special ideas. ironi| +17007|127514|27515|5|22|33913.22|0.07|0.04|N|O|1998-08-30|1998-08-12|1998-09-23|COLLECT COD|RAIL|pinto beans sleep. blit| +17032|78261|15765|1|46|57005.96|0.07|0.01|N|O|1995-09-29|1995-10-31|1995-10-06|COLLECT COD|SHIP|ily regular ideas. car| +17032|320695|33202|2|19|32597.92|0.06|0.01|N|O|1995-10-09|1995-10-08|1995-10-21|COLLECT COD|TRUCK|hely blithely final patter| +17032|906604|31641|3|33|53148.48|0.04|0.02|N|O|1995-11-25|1995-11-06|1995-12-13|NONE|SHIP|mong the slyly pending requests are a| +17033|892159|17194|1|4|4604.44|0.08|0.01|N|O|1995-11-22|1995-11-19|1995-12-11|NONE|REG AIR|ts mold daringly alongside | +17033|499573|37101|2|23|36168.65|0.10|0.00|N|O|1995-10-31|1996-01-03|1995-11-03|NONE|TRUCK|ts are slyly abo| +17033|310122|35135|3|27|30566.97|0.05|0.08|N|O|1996-01-21|1995-11-11|1996-02-11|COLLECT COD|AIR|es sleep. slyly special dolp| +17033|219785|19786|4|25|42619.25|0.00|0.00|N|O|1995-11-20|1995-12-05|1995-11-24|NONE|REG AIR|ound the blithely final sheav| +17034|997939|22978|1|35|71291.15|0.06|0.05|N|O|1998-01-21|1998-01-14|1998-02-14|DELIVER IN PERSON|MAIL|ptotes since the fluffily final depos| +17034|357767|32782|2|45|82113.75|0.06|0.01|N|O|1997-12-31|1998-01-17|1998-01-23|TAKE BACK RETURN|SHIP|ironic deposits! special deposits hang. car| +17034|974529|37049|3|8|12827.84|0.00|0.06|N|O|1998-04-03|1998-01-22|1998-04-07|TAKE BACK RETURN|RAIL|ully regular acco| +17034|893313|43314|4|33|43106.91|0.00|0.03|N|O|1998-03-04|1998-01-20|1998-03-22|TAKE BACK RETURN|FOB|eep blithely across the | +17035|157109|7110|1|10|11661.00|0.06|0.03|N|O|1996-05-18|1996-05-25|1996-06-16|DELIVER IN PERSON|TRUCK|ual foxes nag| +17035|518220|18221|2|3|3714.60|0.08|0.01|N|O|1996-04-14|1996-06-26|1996-04-18|COLLECT COD|AIR|. silent pinto be| +17035|712618|37647|3|9|14675.22|0.06|0.02|N|O|1996-07-04|1996-05-12|1996-07-30|DELIVER IN PERSON|RAIL|en accounts are regular deposits. ir| +17035|969439|6997|4|36|54302.04|0.09|0.06|N|O|1996-04-28|1996-06-08|1996-05-17|COLLECT COD|MAIL|al theodolites across the quickly reg| +17035|346307|8814|5|17|23005.93|0.01|0.06|N|O|1996-04-23|1996-06-17|1996-05-12|DELIVER IN PERSON|TRUCK|ing to the regula| +17036|807711|7712|1|35|56653.45|0.07|0.07|R|F|1993-12-23|1993-12-27|1993-12-26|COLLECT COD|FOB|nts alongside | +17036|198644|48645|2|12|20911.68|0.07|0.06|R|F|1993-12-26|1993-11-25|1994-01-16|DELIVER IN PERSON|MAIL|lphins lose| +17036|608632|21145|3|6|9243.60|0.03|0.03|A|F|1994-02-11|1993-12-06|1994-02-16|TAKE BACK RETURN|MAIL|nts. final depe| +17036|266089|41100|4|6|6330.42|0.09|0.04|A|F|1993-11-21|1993-12-05|1993-11-23|NONE|MAIL|carefully final requests| +17036|148861|36368|5|26|49656.36|0.07|0.08|R|F|1993-12-28|1994-01-23|1994-01-13|TAKE BACK RETURN|FOB|onic dugouts. regular ac| +17037|791931|41932|1|23|46526.70|0.00|0.04|A|F|1992-08-30|1992-08-29|1992-09-23|NONE|RAIL|sits. ironic packages cajole fi| +17037|978189|3228|2|26|32945.64|0.01|0.06|A|F|1992-08-13|1992-07-25|1992-09-11|NONE|RAIL|fter the slyly even deposits; furiously| +17037|414844|27353|3|19|33417.58|0.01|0.05|A|F|1992-08-04|1992-09-02|1992-08-24|COLLECT COD|RAIL|asymptotes. quickly reg| +17037|282435|19951|4|15|21261.30|0.05|0.04|R|F|1992-07-06|1992-07-29|1992-08-03|NONE|SHIP|press deposits nag carefully w| +17037|876532|26533|5|30|45254.70|0.07|0.05|A|F|1992-09-30|1992-07-12|1992-10-19|COLLECT COD|AIR|re furiously regul| +17037|859190|46742|6|44|50562.60|0.02|0.08|R|F|1992-07-24|1992-08-22|1992-07-27|TAKE BACK RETURN|REG AIR|ronic instructions use pas| +17037|389726|14741|7|28|50839.88|0.09|0.08|A|F|1992-09-06|1992-08-13|1992-10-03|DELIVER IN PERSON|REG AIR|deas serve carefu| +17038|109067|46574|1|12|12912.72|0.10|0.08|R|F|1994-08-27|1994-10-28|1994-08-28|NONE|REG AIR|cingly according to th| +17038|78802|3805|2|9|16027.20|0.00|0.05|R|F|1994-12-18|1994-11-08|1995-01-12|COLLECT COD|RAIL|ly silent packages cajole quickly ir| +17039|422330|47347|1|35|43830.85|0.03|0.04|R|F|1994-01-10|1993-10-27|1994-01-30|TAKE BACK RETURN|TRUCK| furiously against the enticing pinto | +17039|89638|27142|2|21|34180.23|0.09|0.05|R|F|1993-12-30|1993-11-03|1994-01-24|COLLECT COD|REG AIR| cajole. unusual, express foxes a| +17039|540309|27840|3|40|53971.20|0.09|0.01|A|F|1993-10-21|1993-12-14|1993-11-17|TAKE BACK RETURN|RAIL|ke furiously. deposits breach blithely pe| +17039|958330|33369|4|1|1388.29|0.08|0.02|A|F|1993-10-07|1993-11-07|1993-10-22|DELIVER IN PERSON|FOB|ounts haggle sly| +17039|650617|618|5|16|25081.28|0.07|0.02|R|F|1993-10-26|1993-11-13|1993-11-23|COLLECT COD|AIR|l attainments sleep among the idea| +17039|905511|18030|6|22|33362.34|0.00|0.05|A|F|1993-12-21|1993-11-03|1994-01-07|NONE|RAIL|luffily across the pack| +17064|505717|5718|1|12|20672.28|0.06|0.02|A|F|1995-01-15|1994-12-11|1995-02-04|DELIVER IN PERSON|RAIL|carefully final theodolites across | +17064|580348|5371|2|43|61417.76|0.09|0.00|A|F|1995-02-28|1995-01-17|1995-03-17|DELIVER IN PERSON|MAIL|carefully final | +17064|906531|19050|3|8|12299.92|0.07|0.00|A|F|1995-01-03|1994-12-16|1995-01-26|NONE|REG AIR| furiously even pinto beans wake regul| +17064|59677|47181|4|26|42553.42|0.10|0.00|A|F|1994-11-30|1995-02-06|1994-12-27|COLLECT COD|FOB|e above the slyly silen| +17065|784034|21580|1|11|12298.00|0.03|0.01|A|F|1994-05-22|1994-06-22|1994-06-05|DELIVER IN PERSON|REG AIR|ckages. blithely even asymptotes | +17066|186456|23966|1|18|27764.10|0.05|0.08|N|O|1997-07-11|1997-06-28|1997-07-29|TAKE BACK RETURN|FOB|leep-- fluffily pending requests c| +17067|99315|24318|1|27|35486.37|0.07|0.07|N|O|1995-10-26|1995-11-13|1995-11-09|DELIVER IN PERSON|SHIP|thrash according to the fina| +17067|178953|3960|2|26|52830.70|0.06|0.00|N|O|1995-09-03|1995-10-29|1995-09-29|NONE|FOB|regular pac| +17067|660754|35781|3|48|82306.56|0.04|0.02|N|O|1995-09-23|1995-10-08|1995-09-25|TAKE BACK RETURN|SHIP|ickly final re| +17067|288380|886|4|14|19157.18|0.01|0.05|N|O|1995-11-21|1995-10-16|1995-12-06|TAKE BACK RETURN|FOB| the silent requests. regular, f| +17067|792744|5260|5|3|5510.13|0.07|0.05|N|O|1995-10-13|1995-09-29|1995-10-18|COLLECT COD|TRUCK|etect carefully. bold, final requests thra| +17068|928432|3469|1|6|8762.34|0.04|0.06|N|O|1996-10-03|1996-11-04|1996-10-06|DELIVER IN PERSON|TRUCK|ggle slyly according to the blithely even | +17068|152388|39898|2|43|61936.34|0.02|0.04|N|O|1997-01-23|1996-12-18|1997-02-12|COLLECT COD|AIR| carefully ironic p| +17068|171389|33893|3|46|67177.48|0.03|0.06|N|O|1996-12-10|1996-11-12|1996-12-31|TAKE BACK RETURN|TRUCK|equests sleep | +17068|527459|39970|4|1|1486.43|0.09|0.05|N|O|1997-01-03|1996-12-12|1997-01-23|TAKE BACK RETURN|TRUCK|express attainm| +17068|993318|18357|5|48|67740.96|0.04|0.01|N|O|1996-11-06|1996-11-12|1996-12-05|NONE|FOB|ound the perma| +17068|683415|33416|6|2|2796.76|0.05|0.04|N|O|1997-01-07|1996-11-02|1997-01-13|TAKE BACK RETURN|TRUCK|silent deposits after | +17068|151620|14124|7|45|75222.90|0.01|0.03|N|O|1996-09-27|1996-12-10|1996-10-25|TAKE BACK RETURN|SHIP| carefully blithely pending platelets. b| +17069|263335|25841|1|7|9088.24|0.09|0.03|N|O|1996-06-30|1996-08-06|1996-07-11|TAKE BACK RETURN|FOB|aggle furiously final instruc| +17069|858861|33896|2|38|69153.16|0.09|0.04|N|O|1996-08-24|1996-07-15|1996-09-10|DELIVER IN PERSON|MAIL|c dependencies wake fluffil| +17069|868606|31124|3|40|62982.40|0.08|0.03|N|O|1996-07-14|1996-08-06|1996-07-24|TAKE BACK RETURN|TRUCK|counts haggle| +17070|254480|4481|1|9|12910.23|0.01|0.02|N|O|1998-03-05|1998-05-21|1998-03-14|NONE|SHIP| deposits. blithely even requests acro| +17070|44848|19849|2|29|51992.36|0.06|0.06|N|O|1998-05-14|1998-05-04|1998-06-10|DELIVER IN PERSON|RAIL|ake blithely among the pendin| +17070|751300|1301|3|49|66212.23|0.08|0.01|N|O|1998-04-01|1998-04-05|1998-04-14|COLLECT COD|MAIL|e ironic instructions. bold, unusua| +17070|93536|31040|4|11|16824.83|0.09|0.02|N|O|1998-03-06|1998-05-12|1998-03-10|DELIVER IN PERSON|RAIL| unusual pinto beans. eve| +17071|316236|41249|1|39|48836.58|0.06|0.08|N|O|1997-07-19|1997-07-31|1997-07-26|NONE|MAIL|carefully after t| +17071|975568|38088|2|50|82176.00|0.06|0.01|N|O|1997-08-22|1997-07-22|1997-08-29|TAKE BACK RETURN|MAIL|ss deposits | +17071|358897|21405|3|45|88014.60|0.06|0.00|N|O|1997-07-14|1997-06-13|1997-07-26|TAKE BACK RETURN|MAIL|ajole carefully final platelets. furiou| +17071|974629|49668|4|10|17035.80|0.08|0.08|N|O|1997-08-26|1997-08-05|1997-09-03|COLLECT COD|TRUCK|lent instructions wake always a| +17071|576202|1225|5|1|1278.18|0.04|0.00|N|O|1997-06-04|1997-08-04|1997-06-15|DELIVER IN PERSON|AIR|mold slyly ironic| +17071|213370|883|6|8|10266.88|0.07|0.06|N|O|1997-07-02|1997-07-10|1997-07-12|COLLECT COD|AIR|ing ideas. fina| +17071|105437|42944|7|12|17309.16|0.07|0.00|N|O|1997-09-07|1997-06-19|1997-10-03|NONE|TRUCK|t deposits cajole quickly above the | +17096|64083|14084|1|9|9423.72|0.04|0.08|R|F|1992-08-03|1992-08-25|1992-08-26|NONE|SHIP|press braids. fluffily even depos| +17096|30635|18136|2|14|21918.82|0.03|0.06|R|F|1992-08-30|1992-07-27|1992-09-19|TAKE BACK RETURN|FOB| blithely fluffy accounts. car| +17096|874138|36656|3|15|16681.35|0.00|0.06|A|F|1992-06-19|1992-07-16|1992-07-06|DELIVER IN PERSON|TRUCK|uickly regul| +17096|622354|9891|4|47|59987.04|0.09|0.01|A|F|1992-06-24|1992-08-25|1992-07-02|TAKE BACK RETURN|FOB|gside of the fluffil| +17096|891777|16812|5|49|86667.77|0.02|0.07|A|F|1992-10-10|1992-08-23|1992-10-11|DELIVER IN PERSON|MAIL|usly regular accounts detect blith| +17096|93862|18865|6|24|44540.64|0.07|0.00|A|F|1992-07-20|1992-09-10|1992-07-24|NONE|MAIL|bout the slyly even requests. care| +17097|886885|49403|1|45|84232.80|0.03|0.02|A|F|1995-02-11|1995-03-26|1995-02-15|NONE|MAIL|t the slyl| +17097|871365|21366|2|9|12026.88|0.03|0.02|R|F|1995-03-19|1995-02-16|1995-03-30|DELIVER IN PERSON|SHIP|ly ironic pinto beans. final depend| +17097|15088|40089|3|9|9027.72|0.03|0.06|R|F|1995-04-25|1995-03-02|1995-05-04|TAKE BACK RETURN|MAIL| slyly final, regular foxes. fluffily final| +17097|580414|17948|4|35|52303.65|0.00|0.05|A|F|1995-01-15|1995-02-20|1995-02-01|DELIVER IN PERSON|AIR| ironic theodolites| +17097|14549|2050|5|13|19026.02|0.00|0.03|R|F|1995-03-02|1995-03-05|1995-03-13|TAKE BACK RETURN|TRUCK|inal pinto beans. regularly fi| +17097|522034|9565|6|42|44352.42|0.04|0.01|A|F|1995-01-26|1995-04-03|1995-02-04|DELIVER IN PERSON|AIR|the ideas. unusual requests| +17097|810872|48421|7|37|65964.71|0.01|0.00|R|F|1995-02-28|1995-03-01|1995-03-07|NONE|FOB|elets integrate special| +17098|321229|8748|1|33|41256.93|0.01|0.01|R|F|1995-04-22|1995-05-27|1995-05-03|TAKE BACK RETURN|AIR|gular deposits; furiously final p| +17098|892482|17517|2|14|20642.16|0.00|0.00|R|F|1995-05-04|1995-05-20|1995-05-06|NONE|AIR|use among the ruthlessly ironic | +17098|930838|5875|3|36|67276.44|0.08|0.03|A|F|1995-05-20|1995-04-04|1995-06-03|TAKE BACK RETURN|TRUCK|y pending requests. blith| +17099|963858|1416|1|13|24983.53|0.04|0.07|N|O|1997-12-06|1997-11-23|1997-12-08|DELIVER IN PERSON|AIR|asymptotes are blithely according to th| +17099|550254|37788|2|14|18259.22|0.06|0.07|N|O|1998-01-14|1997-12-28|1998-01-16|TAKE BACK RETURN|TRUCK|to beans. pending, special | +17099|105332|42839|3|14|18722.62|0.01|0.02|N|O|1997-11-28|1997-12-17|1997-12-06|TAKE BACK RETURN|TRUCK|ic ideas sleep. quietl| +17099|301287|13794|4|15|19324.05|0.05|0.06|N|O|1997-11-29|1997-11-09|1997-12-18|DELIVER IN PERSON|SHIP|hely regular accounts. | +17099|722309|47338|5|24|31950.48|0.10|0.08|N|O|1997-11-23|1997-12-26|1997-12-10|DELIVER IN PERSON|MAIL|und the carefully ironic notornis nag| +17100|464757|14758|1|25|43043.25|0.02|0.00|A|F|1992-06-16|1992-07-23|1992-06-19|DELIVER IN PERSON|TRUCK|ironic ideas about the ironic deposi| +17101|709737|9738|1|28|48907.60|0.08|0.02|R|F|1994-12-27|1995-01-07|1995-01-15|DELIVER IN PERSON|FOB|ly express requests snooze after the per| +17101|549406|49407|2|50|72769.00|0.04|0.06|A|F|1995-02-25|1995-01-20|1995-03-11|TAKE BACK RETURN|MAIL|. carefully pending requests against the d| +17101|857841|20359|3|8|14390.40|0.01|0.03|R|F|1994-11-30|1995-01-16|1994-12-23|NONE|AIR|instructions. busy, regu| +17101|729475|41990|4|11|16548.84|0.06|0.06|R|F|1995-01-25|1995-01-04|1995-02-10|DELIVER IN PERSON|AIR|cingly bold instructions cajole furio| +17102|870884|20885|1|20|37096.80|0.07|0.04|N|O|1995-07-02|1995-04-21|1995-07-14|DELIVER IN PERSON|TRUCK|lly about the p| +17102|934198|34199|2|36|44357.40|0.09|0.05|N|F|1995-06-16|1995-05-29|1995-07-05|NONE|AIR|ng packages. unusual theodolites nag. eve| +17102|51863|39367|3|2|3629.72|0.00|0.06|R|F|1995-05-10|1995-05-26|1995-05-25|DELIVER IN PERSON|RAIL|sts use carefu| +17102|651671|1672|4|12|19471.68|0.01|0.07|R|F|1995-03-20|1995-04-22|1995-04-18|TAKE BACK RETURN|REG AIR|ironic courts cajole. express, bo| +17103|338303|810|1|45|60358.05|0.03|0.07|A|F|1995-04-27|1995-05-19|1995-05-09|TAKE BACK RETURN|FOB|detect quickly among| +17103|854513|42065|2|11|16142.17|0.03|0.02|A|F|1995-05-09|1995-05-11|1995-05-26|DELIVER IN PERSON|MAIL|xpress accounts snooze | +17103|784709|9740|3|44|78921.48|0.02|0.04|N|O|1995-07-06|1995-05-22|1995-07-17|DELIVER IN PERSON|RAIL|y quick pinto beans use furiously regular m| +17128|120120|45125|1|22|25082.64|0.01|0.03|N|O|1996-01-10|1995-12-27|1996-01-27|TAKE BACK RETURN|FOB|blithely final plate| +17128|844454|6971|2|16|22374.56|0.08|0.02|N|O|1996-02-06|1996-01-09|1996-03-06|DELIVER IN PERSON|REG AIR|rding to the quickly iro| +17129|128818|41321|1|21|38783.01|0.00|0.00|N|O|1996-10-11|1996-10-24|1996-10-30|DELIVER IN PERSON|RAIL|are around t| +17129|41353|16354|2|45|58245.75|0.07|0.04|N|O|1996-08-24|1996-09-26|1996-09-16|COLLECT COD|REG AIR|ce of the final,| +17129|3528|3529|3|11|15746.72|0.02|0.06|N|O|1996-09-20|1996-09-06|1996-09-29|NONE|TRUCK|nt accounts. quickly regular accoun| +17129|287534|25050|4|3|4564.56|0.10|0.04|N|O|1996-08-31|1996-10-30|1996-09-14|NONE|MAIL|excuses. attainments| +17130|488534|26062|1|14|21315.14|0.10|0.04|R|F|1992-06-08|1992-08-09|1992-06-13|DELIVER IN PERSON|AIR|e quickly along the furiously unus| +17130|785906|48422|2|48|95609.76|0.07|0.01|R|F|1992-07-17|1992-07-21|1992-08-02|DELIVER IN PERSON|RAIL|cajole carefully. quickly express| +17130|715709|3252|3|39|67262.13|0.07|0.08|A|F|1992-06-06|1992-06-12|1992-07-05|TAKE BACK RETURN|FOB|kages among th| +17131|930644|30645|1|34|56936.40|0.05|0.03|N|O|1997-09-19|1997-11-24|1997-10-16|COLLECT COD|MAIL|lly ironic sheaves cajol| +17131|320465|20466|2|15|22281.75|0.03|0.06|N|O|1997-10-27|1997-10-06|1997-11-10|COLLECT COD|FOB|y unusual packages nag after the instruct| +17131|44917|44918|3|46|85647.86|0.10|0.06|N|O|1997-10-02|1997-10-15|1997-10-30|TAKE BACK RETURN|TRUCK|y ironic platelets haggle among th| +17132|50440|25443|1|27|37541.88|0.00|0.01|N|O|1995-10-21|1995-10-20|1995-11-20|COLLECT COD|TRUCK| carefully. furiously ironic asymptotes| +17132|745040|7555|2|11|11935.11|0.00|0.02|N|O|1995-09-23|1995-11-24|1995-09-29|TAKE BACK RETURN|REG AIR| slyly slo| +17133|76861|1864|1|6|11027.16|0.00|0.07|N|O|1996-02-27|1996-03-13|1996-02-28|NONE|AIR|ic requests! depo| +17133|786990|36991|2|35|72693.60|0.06|0.05|N|O|1996-01-25|1996-02-25|1996-02-07|TAKE BACK RETURN|SHIP|express, ironic deposits acr| +17133|934565|34566|3|35|55983.20|0.08|0.01|N|O|1996-04-17|1996-02-28|1996-04-30|DELIVER IN PERSON|TRUCK|packages are blithely! regular ins| +17133|223918|11431|4|35|64466.50|0.05|0.03|N|O|1996-01-11|1996-02-18|1996-01-15|DELIVER IN PERSON|REG AIR|sleep quickly about | +17133|376770|39278|5|30|55402.80|0.05|0.01|N|O|1996-02-24|1996-02-09|1996-03-17|TAKE BACK RETURN|AIR|yly carefully fin| +17133|365175|15176|6|37|45885.92|0.10|0.06|N|O|1996-02-27|1996-02-06|1996-03-05|TAKE BACK RETURN|AIR|ly pending foxes sleep | +17134|860272|22790|1|42|51753.66|0.01|0.07|N|O|1996-09-25|1996-07-30|1996-10-06|DELIVER IN PERSON|RAIL|xcuses. furiously i| +17135|491314|16333|1|29|37853.41|0.01|0.07|R|F|1994-03-02|1994-02-26|1994-03-05|DELIVER IN PERSON|AIR| above the fur| +17135|504267|16778|2|28|35594.72|0.03|0.02|R|F|1994-03-12|1994-02-07|1994-04-09|DELIVER IN PERSON|MAIL|e furiously unusual packages. special requ| +17160|851578|26613|1|4|6118.12|0.06|0.06|N|O|1998-04-30|1998-06-24|1998-05-04|NONE|TRUCK|ngside of the regular, ironic accou| +17160|454697|17207|2|4|6606.68|0.10|0.00|N|O|1998-04-15|1998-06-11|1998-05-04|COLLECT COD|FOB|ts across | +17160|82987|7990|3|4|7879.92|0.08|0.04|N|O|1998-06-15|1998-06-29|1998-07-05|COLLECT COD|TRUCK|s mold fluffily after the furiously regul| +17160|760268|10269|4|11|14610.53|0.04|0.08|N|O|1998-05-04|1998-06-25|1998-05-16|NONE|RAIL|deposits. carefully regular dep| +17160|814554|27071|5|29|42586.79|0.07|0.01|N|O|1998-07-20|1998-05-23|1998-07-21|NONE|AIR| dolphins | +17161|182134|32135|1|14|17025.82|0.07|0.07|R|F|1992-08-16|1992-07-28|1992-08-18|DELIVER IN PERSON|RAIL|y final req| +17162|230948|5957|1|8|15031.44|0.10|0.06|N|O|1997-01-08|1997-03-23|1997-01-14|DELIVER IN PERSON|SHIP| ironic packages. blithely | +17162|537837|348|2|2|3749.62|0.03|0.06|N|O|1997-01-31|1997-03-27|1997-02-24|NONE|SHIP|elets wake. ironic, special | +17162|424532|12057|3|4|5826.04|0.05|0.03|N|O|1997-01-08|1997-03-05|1997-01-14|TAKE BACK RETURN|AIR|even platelets. pending instructions c| +17162|105031|30036|4|48|49729.44|0.02|0.02|N|O|1997-02-22|1997-03-14|1997-03-22|NONE|MAIL| slyly ironic packages cajole | +17162|243128|43129|5|49|52484.39|0.01|0.08|N|O|1997-02-25|1997-03-27|1997-03-23|NONE|TRUCK|y ironic dolphins for the quickly | +17162|244446|19455|6|11|15294.73|0.09|0.06|N|O|1997-04-28|1997-03-18|1997-05-10|DELIVER IN PERSON|TRUCK|press, ironic packa| +17162|389658|14673|7|14|24466.96|0.01|0.02|N|O|1997-03-14|1997-03-04|1997-03-30|DELIVER IN PERSON|RAIL|slyly busy ideas. ironic, regular package| +17163|979628|29629|1|8|13660.64|0.03|0.05|N|O|1995-11-30|1995-12-21|1995-12-12|NONE|MAIL|ost furiously among the carefull| +17163|597519|47520|2|48|77591.52|0.00|0.03|N|O|1996-01-30|1995-11-03|1996-02-13|NONE|AIR|inal instructions wake furiously. blithely| +17163|499405|49406|3|6|8426.28|0.04|0.02|N|O|1995-10-20|1996-01-02|1995-11-04|NONE|TRUCK|ounts according to the specia| +17163|494766|7276|4|9|15846.66|0.05|0.08|N|O|1995-10-19|1995-12-22|1995-11-12|NONE|FOB|silently. pending, final ideas affi| +17163|525869|890|5|24|45476.16|0.01|0.03|N|O|1996-01-03|1995-11-27|1996-01-16|COLLECT COD|TRUCK|unts. silent, ironic deposits are furious| +17163|278304|3315|6|13|16669.77|0.01|0.07|N|O|1996-01-07|1996-01-01|1996-01-29|TAKE BACK RETURN|SHIP|hely even deposits breach blithely-| +17164|97309|22312|1|33|43107.90|0.01|0.06|R|F|1992-10-09|1992-08-04|1992-10-14|NONE|MAIL|oost over the carefully regular foxes. pa| +17164|466719|41738|2|20|33713.80|0.05|0.02|R|F|1992-09-05|1992-07-31|1992-09-20|TAKE BACK RETURN|AIR| platelets. fluf| +17164|139110|1613|3|43|49411.73|0.02|0.08|A|F|1992-07-08|1992-08-08|1992-07-28|TAKE BACK RETURN|MAIL|ts. carefully regular platelets a| +17165|350241|242|1|9|11621.07|0.08|0.06|N|O|1996-04-03|1996-04-02|1996-04-30|TAKE BACK RETURN|RAIL|ideas play alongside of the special | +17165|486048|48558|2|13|13442.26|0.07|0.04|N|O|1996-03-05|1996-04-23|1996-04-02|COLLECT COD|RAIL|ckly pending tithes haggle blithely. specia| +17165|996616|21655|3|44|75353.08|0.05|0.06|N|O|1996-02-03|1996-04-05|1996-02-09|COLLECT COD|FOB|ronic pinto beans nag furiously even, s| +17165|119029|19030|4|35|36680.70|0.03|0.05|N|O|1996-03-24|1996-03-29|1996-03-26|NONE|RAIL|ans across the bold, final | +17166|240368|2873|1|17|22241.95|0.07|0.01|N|O|1996-06-14|1996-03-23|1996-06-21|TAKE BACK RETURN|FOB|press excuses nag finally doggedly careful| +17166|850136|12654|2|15|16291.35|0.05|0.06|N|O|1996-05-15|1996-04-22|1996-06-12|DELIVER IN PERSON|TRUCK|ecial instructions use slyly i| +17167|487270|24798|1|36|45261.00|0.06|0.08|A|F|1993-01-28|1992-12-17|1993-02-27|NONE|FOB|riously. specia| +17167|537674|12695|2|47|80447.55|0.10|0.02|R|F|1992-11-21|1992-11-28|1992-12-03|NONE|AIR|onically ironic packages haggle slyl| +17167|671638|46665|3|26|41849.60|0.02|0.04|R|F|1992-11-04|1992-12-29|1992-11-18|TAKE BACK RETURN|MAIL|s cajole. slyly final asymptote| +17167|214203|1716|4|2|2234.38|0.10|0.04|R|F|1993-01-26|1992-12-02|1993-02-25|TAKE BACK RETURN|AIR|luffily regular requests. regul| +17192|961674|24194|1|26|45126.38|0.02|0.03|N|O|1998-05-11|1998-06-09|1998-05-17|NONE|REG AIR|press patterns. blithe| +17192|841944|29493|2|26|49033.40|0.06|0.05|N|O|1998-05-21|1998-05-14|1998-05-27|NONE|AIR|hinder fluffily express requests. unusual | +17192|550706|13218|3|8|14053.44|0.09|0.03|N|O|1998-05-19|1998-07-10|1998-06-08|DELIVER IN PERSON|AIR|arefully ac| +17192|701199|13714|4|31|37204.96|0.00|0.08|N|O|1998-08-10|1998-06-15|1998-08-19|COLLECT COD|REG AIR|s the carefull| +17193|360676|23184|1|33|57309.78|0.01|0.01|N|O|1996-03-30|1996-02-20|1996-04-15|DELIVER IN PERSON|MAIL| foxes will boost iron| +17193|865129|2681|2|17|18599.36|0.09|0.08|N|O|1996-02-05|1996-02-16|1996-02-25|DELIVER IN PERSON|FOB|eans must have to cajole slyly alon| +17194|860562|23080|1|4|6090.08|0.06|0.02|A|F|1994-09-12|1994-09-08|1994-09-30|DELIVER IN PERSON|MAIL| carefully according t| +17194|464476|14477|2|27|38892.15|0.00|0.03|R|F|1994-07-20|1994-08-17|1994-08-14|NONE|REG AIR|ains affix carefully furiousl| +17194|442134|4643|3|47|50577.17|0.01|0.04|A|F|1994-10-15|1994-09-09|1994-11-07|NONE|REG AIR|ully furiously even| +17194|940810|3329|4|12|22209.24|0.01|0.05|A|F|1994-10-18|1994-10-02|1994-10-22|DELIVER IN PERSON|SHIP|ggle. slyly ironic pinto beans sle| +17195|957903|32942|1|39|76473.54|0.07|0.05|N|O|1996-01-11|1995-11-16|1996-01-16|COLLECT COD|MAIL|ajole; ironic accounts must have to | +17195|470823|45842|2|43|77133.40|0.09|0.01|N|O|1996-01-15|1995-12-30|1996-01-22|NONE|SHIP|s sleep along the f| +17195|111736|49243|3|32|55927.36|0.07|0.03|N|O|1995-11-08|1996-01-02|1995-11-10|TAKE BACK RETURN|RAIL|ckages sleep bli| +17195|934299|34300|4|35|46663.75|0.06|0.03|N|O|1995-11-16|1995-11-29|1995-11-23|COLLECT COD|RAIL|ut the per| +17195|754443|4444|5|30|44922.30|0.08|0.03|N|O|1995-12-24|1996-01-01|1996-01-22|DELIVER IN PERSON|TRUCK|p slyly among the ideas. blithely reg| +17195|908255|45810|6|22|27790.62|0.02|0.06|N|O|1995-11-23|1995-12-11|1995-12-10|DELIVER IN PERSON|REG AIR|ix carefully. furiou| +17196|34431|46932|1|34|46424.62|0.08|0.03|A|F|1992-10-18|1992-09-16|1992-10-22|DELIVER IN PERSON|MAIL|furiously special frets haggle a| +17196|679098|29099|2|47|50621.82|0.00|0.05|A|F|1992-10-27|1992-09-07|1992-11-25|COLLECT COD|REG AIR|s about the dinos cajole slyly idle pa| +17196|595534|45535|3|21|34219.71|0.03|0.05|A|F|1992-11-05|1992-09-08|1992-11-23|COLLECT COD|SHIP|quickly according to the packages. fin| +17196|128502|3507|4|27|41323.50|0.08|0.02|A|F|1992-09-19|1992-08-12|1992-10-16|DELIVER IN PERSON|FOB|y even pla| +17197|21819|34320|1|14|24371.34|0.06|0.04|N|O|1996-05-06|1996-03-10|1996-05-17|NONE|SHIP|furiously carefully fin| +17197|708970|33999|2|2|3957.88|0.04|0.01|N|O|1996-01-23|1996-03-25|1996-01-25|NONE|TRUCK|e blithely above the blithely steal| +17197|645374|7887|3|36|47496.24|0.07|0.06|N|O|1996-04-16|1996-03-24|1996-04-27|DELIVER IN PERSON|FOB|ze blithely regular packages. fluffily exp| +17197|799666|37212|4|48|84750.24|0.03|0.01|N|O|1996-02-12|1996-03-23|1996-02-22|TAKE BACK RETURN|REG AIR|c platelets. careful| +17197|985899|35900|5|36|71454.60|0.08|0.07|N|O|1996-05-01|1996-02-23|1996-05-29|COLLECT COD|REG AIR|o the express requests. carefully spe| +17197|987971|491|6|1|2058.93|0.03|0.02|N|O|1996-02-25|1996-03-17|1996-03-22|COLLECT COD|RAIL|s cajole quickly aga| +17198|167028|4538|1|2|2190.04|0.10|0.07|N|O|1995-12-09|1995-12-18|1995-12-19|NONE|AIR|cajole. slyly pending courts cajole. fu| +17198|225160|25161|2|31|33639.65|0.01|0.07|N|O|1996-02-03|1995-12-31|1996-02-07|COLLECT COD|AIR| slyly across the thinly si| +17198|256537|19043|3|37|55260.24|0.05|0.04|N|O|1995-12-12|1995-12-17|1995-12-17|NONE|FOB|orbits. carefully ironic dep| +17199|841151|3668|1|25|27302.75|0.01|0.08|N|O|1997-11-28|1997-11-19|1997-12-24|TAKE BACK RETURN|RAIL| express requests haggle requests. c| +17199|222759|35264|2|38|63906.12|0.09|0.05|N|O|1997-11-24|1997-10-27|1997-12-17|TAKE BACK RETURN|FOB|atterns. quickly ironic packages abou| +17224|47769|47770|1|10|17167.60|0.07|0.01|N|O|1996-07-20|1996-07-21|1996-08-17|TAKE BACK RETURN|REG AIR|e even, ironic deposits cajole br| +17224|837779|296|2|41|70385.93|0.05|0.04|N|O|1996-07-31|1996-09-04|1996-08-16|NONE|MAIL|en pinto beans above the idea| +17224|550814|25837|3|13|24242.27|0.03|0.02|N|O|1996-08-23|1996-09-12|1996-09-16|NONE|TRUCK|e fluffily above the never | +17224|517965|42986|4|48|95181.12|0.10|0.08|N|O|1996-10-13|1996-09-15|1996-10-29|TAKE BACK RETURN|TRUCK|ly final ac| +17224|431407|6424|5|19|25429.22|0.02|0.05|N|O|1996-07-18|1996-08-15|1996-08-16|TAKE BACK RETURN|FOB|s. ruthless| +17224|642417|29954|6|32|43500.16|0.10|0.02|N|O|1996-10-06|1996-07-26|1996-10-25|COLLECT COD|AIR|ter the quickly final depo| +17224|100539|13042|7|11|16934.83|0.07|0.02|N|O|1996-10-08|1996-08-15|1996-10-18|TAKE BACK RETURN|RAIL|kages. even | +17225|750565|566|1|29|46850.37|0.07|0.03|R|F|1993-06-10|1993-07-14|1993-06-11|NONE|RAIL|ffily daringly ironic orbits. slyly unusua| +17225|736889|11918|2|49|94366.65|0.09|0.03|R|F|1993-08-19|1993-07-05|1993-08-31|TAKE BACK RETURN|RAIL|ithely regu| +17225|877770|15322|3|4|6990.92|0.00|0.05|A|F|1993-08-18|1993-08-04|1993-08-28|COLLECT COD|REG AIR|packages sleep until the | +17225|664504|39531|4|26|38180.22|0.04|0.05|R|F|1993-06-05|1993-08-08|1993-07-05|COLLECT COD|REG AIR|the carefully| +17225|315752|40765|5|34|60103.16|0.04|0.05|A|F|1993-07-27|1993-06-18|1993-07-31|DELIVER IN PERSON|SHIP|x slowly ironic ideas. regular requests sl| +17225|828983|28984|6|4|7647.76|0.03|0.05|R|F|1993-09-05|1993-07-07|1993-10-01|TAKE BACK RETURN|RAIL|sly ironic accounts solve furiously from t| +17225|702152|14667|7|32|36931.84|0.05|0.08|A|F|1993-05-21|1993-08-10|1993-06-05|DELIVER IN PERSON|REG AIR| ruthlessly pending acc| +17226|60676|10677|1|34|55646.78|0.00|0.04|N|O|1996-08-07|1996-08-08|1996-09-01|COLLECT COD|MAIL|ns cajole doggedly. bold r| +17226|774131|49162|2|46|55434.60|0.04|0.00|N|O|1996-10-03|1996-08-14|1996-10-28|DELIVER IN PERSON|AIR|asymptotes| +17226|804439|41988|3|4|5373.56|0.01|0.06|N|O|1996-09-04|1996-08-03|1996-10-03|TAKE BACK RETURN|MAIL|regular foxes. regular pa| +17226|204000|4001|4|35|31639.65|0.07|0.05|N|O|1996-07-10|1996-09-02|1996-07-19|NONE|SHIP|ithely special i| +17227|766576|4122|1|49|80484.46|0.00|0.07|A|F|1994-05-30|1994-05-23|1994-05-31|TAKE BACK RETURN|AIR|nto beans. excuses| +17227|826787|14336|2|28|47984.72|0.02|0.04|A|F|1994-06-18|1994-04-25|1994-06-24|NONE|RAIL|ts hinder fluf| +17227|800931|13448|3|7|12823.23|0.05|0.08|A|F|1994-05-11|1994-05-08|1994-06-01|COLLECT COD|MAIL| was slyly ironic,| +17227|231110|43615|4|9|9369.90|0.04|0.08|R|F|1994-04-17|1994-04-03|1994-04-25|COLLECT COD|TRUCK|uriously above the furiously fina| +17228|119288|44293|1|48|62749.44|0.07|0.07|N|O|1998-08-19|1998-06-23|1998-09-18|DELIVER IN PERSON|REG AIR|ealms. slyly special deposits nag fi| +17228|857049|7050|2|9|9054.00|0.00|0.00|N|O|1998-07-27|1998-07-13|1998-07-28|DELIVER IN PERSON|MAIL|sts. quickly enticing plate| +17228|419928|7453|3|11|20326.90|0.06|0.02|N|O|1998-08-21|1998-07-31|1998-09-16|NONE|AIR|lithely special requests sl| +17228|723206|10749|4|17|20895.89|0.09|0.05|N|O|1998-05-22|1998-08-12|1998-06-15|NONE|MAIL|endencies; | +17228|908127|20646|5|32|36322.56|0.08|0.07|N|O|1998-06-12|1998-08-10|1998-06-16|COLLECT COD|FOB|g deposits boost carefully furiously | +17228|874595|12147|6|29|45516.95|0.08|0.05|N|O|1998-08-26|1998-06-21|1998-09-15|NONE|FOB|lithely. fin| +17229|285051|47557|1|13|13468.52|0.10|0.00|N|O|1998-10-04|1998-09-17|1998-10-29|COLLECT COD|REG AIR|ns integrate quickly ac| +17229|836395|23944|2|24|31952.40|0.03|0.06|N|O|1998-10-27|1998-09-12|1998-11-14|DELIVER IN PERSON|SHIP|nusual packages haggle slyly above the| +17229|277571|15087|3|26|40262.56|0.01|0.00|N|O|1998-09-07|1998-09-18|1998-09-20|COLLECT COD|RAIL|to beans ar| +17229|123515|48520|4|34|52309.34|0.04|0.06|N|O|1998-10-03|1998-08-30|1998-10-25|NONE|AIR|inst the qu| +17229|907217|7218|5|12|14690.04|0.08|0.07|N|O|1998-09-01|1998-08-16|1998-09-16|COLLECT COD|TRUCK|ing to the carefully express account| +17229|579717|4740|6|26|46713.94|0.06|0.01|N|O|1998-09-30|1998-08-08|1998-10-27|NONE|REG AIR| beans. slyly ironic instructions cajole | +17230|694018|31558|1|27|27323.46|0.10|0.03|A|F|1994-02-11|1994-02-26|1994-03-05|DELIVER IN PERSON|TRUCK|quests sleep carefully special pinto b| +17231|734803|9832|1|49|90050.73|0.01|0.03|R|F|1993-11-28|1993-10-19|1993-12-01|TAKE BACK RETURN|FOB|ar packages boo| +17231|827344|27345|2|9|11441.70|0.01|0.08|A|F|1994-01-04|1993-12-02|1994-01-30|COLLECT COD|SHIP|tes across the furiously regular foxes aff| +17231|154154|29161|3|4|4832.60|0.02|0.05|R|F|1993-11-21|1993-11-12|1993-12-06|DELIVER IN PERSON|TRUCK| alongside of the idly even instr| +17231|857880|7881|4|14|25729.76|0.04|0.04|R|F|1993-09-21|1993-11-08|1993-09-23|TAKE BACK RETURN|RAIL|s detect carefully al| +17231|378563|3578|5|36|59095.80|0.07|0.08|R|F|1993-10-23|1993-11-19|1993-11-01|DELIVER IN PERSON|AIR| sleep furiously slyly unus| +17231|498333|35861|6|43|57246.33|0.01|0.04|R|F|1993-11-05|1993-11-28|1993-11-20|COLLECT COD|SHIP|ncies boost quickl| +17231|468869|31379|7|12|22054.08|0.07|0.03|A|F|1993-12-21|1993-11-26|1994-01-09|COLLECT COD|MAIL|ss foxes according to the | +17256|272236|47247|1|20|24164.40|0.08|0.07|R|F|1994-06-03|1994-06-15|1994-06-08|TAKE BACK RETURN|TRUCK|even, unusual p| +17256|454486|16996|2|32|46094.72|0.05|0.03|A|F|1994-04-27|1994-06-14|1994-05-03|COLLECT COD|SHIP| even requests wake blithely along| +17256|533275|33276|3|8|10466.00|0.08|0.07|R|F|1994-04-27|1994-06-03|1994-05-13|NONE|AIR|eas sleep always furiously even re| +17256|744153|6668|4|15|17956.80|0.06|0.05|R|F|1994-08-19|1994-07-19|1994-09-06|TAKE BACK RETURN|SHIP|y regular | +17256|975829|25830|5|30|57143.40|0.06|0.08|R|F|1994-07-26|1994-07-10|1994-07-31|TAKE BACK RETURN|FOB|nal accounts use blithely s| +17256|755884|43430|6|24|46556.40|0.01|0.01|A|F|1994-07-15|1994-06-29|1994-07-23|NONE|FOB|silent requests detect against| +17257|491501|16520|1|41|61191.68|0.04|0.04|R|F|1992-09-09|1992-08-07|1992-09-17|TAKE BACK RETURN|RAIL|g to the bli| +17257|654537|17051|2|19|28338.50|0.10|0.01|A|F|1992-08-12|1992-06-29|1992-09-11|DELIVER IN PERSON|AIR|der special, unusual| +17257|796458|34004|3|21|32642.82|0.08|0.00|A|F|1992-05-24|1992-06-16|1992-06-14|COLLECT COD|RAIL|ckages boost fluffily accordi| +17257|57268|32271|4|21|25730.46|0.06|0.08|A|F|1992-06-03|1992-07-23|1992-06-09|COLLECT COD|FOB| deposits. final, special | +17257|495783|45784|5|19|33796.44|0.05|0.06|R|F|1992-06-21|1992-06-18|1992-07-08|DELIVER IN PERSON|MAIL|ely even packages. fluffily| +17258|250496|497|1|24|34715.52|0.06|0.00|R|F|1993-08-05|1993-05-30|1993-08-13|NONE|TRUCK|ar accounts. regular packages use careful| +17258|80531|30532|2|18|27207.54|0.09|0.08|A|F|1993-07-22|1993-05-30|1993-08-18|NONE|RAIL|lar accounts. carefully| +17258|472265|34775|3|22|27219.28|0.09|0.03|R|F|1993-06-25|1993-06-06|1993-07-15|COLLECT COD|MAIL|symptotes. fluffily brave accounts affix f| +17258|344742|19755|4|28|50028.44|0.04|0.05|A|F|1993-05-06|1993-06-04|1993-05-23|COLLECT COD|TRUCK|le slyly. fluff| +17258|70785|33287|5|16|28092.48|0.08|0.02|A|F|1993-08-08|1993-07-05|1993-09-04|TAKE BACK RETURN|REG AIR|es nag about the slyly express wa| +17259|148063|23068|1|23|25554.38|0.05|0.05|R|F|1993-12-23|1994-01-19|1993-12-29|COLLECT COD|REG AIR|otes sleep slyly. carefully unusual depe| +17259|493916|31444|2|7|13369.23|0.08|0.01|A|F|1994-01-31|1994-01-10|1994-03-01|NONE|SHIP|xcuses. slyly even instructions are blithel| +17259|241532|29045|3|14|20629.28|0.07|0.08|R|F|1993-12-05|1993-12-17|1993-12-07|NONE|AIR|sly bold deposits. e| +17259|426585|39094|4|18|27208.08|0.09|0.06|R|F|1994-01-06|1994-01-02|1994-01-11|NONE|TRUCK|lithely final deposits-- silent excuses n| +17259|610194|35219|5|16|17666.56|0.05|0.00|A|F|1993-12-12|1993-12-21|1994-01-07|COLLECT COD|AIR|ls. final sentiments use. furiously re| +17259|515778|3309|6|14|25112.50|0.07|0.07|A|F|1994-02-17|1994-01-06|1994-02-19|NONE|RAIL|ccounts across the furiously pend| +17260|685387|47901|1|13|17840.55|0.01|0.07|R|F|1995-05-26|1995-05-10|1995-05-28|DELIVER IN PERSON|REG AIR|regular requests nag. | +17260|290017|2523|2|10|10070.00|0.03|0.07|A|F|1995-03-07|1995-04-29|1995-03-23|NONE|MAIL|ckly final ide| +17260|302815|40334|3|44|79983.20|0.01|0.04|R|F|1995-03-22|1995-05-22|1995-04-08|COLLECT COD|RAIL|e for the qui| +17260|402889|2890|4|2|3583.72|0.03|0.04|N|F|1995-05-31|1995-05-25|1995-06-21|NONE|RAIL|ests. depos| +17260|339896|14909|5|44|85178.72|0.07|0.07|A|F|1995-04-30|1995-05-31|1995-05-17|COLLECT COD|SHIP|ironic dependencies. slyly bol| +17261|440332|27857|1|14|17812.34|0.02|0.04|N|O|1997-09-08|1997-10-11|1997-10-04|DELIVER IN PERSON|MAIL|e carefully even| +17261|658639|21153|2|44|70294.40|0.10|0.00|N|O|1997-08-30|1997-10-09|1997-09-16|COLLECT COD|RAIL|es doze. thin notornis integrate furiously| +17262|777492|2523|1|38|59639.48|0.04|0.01|N|O|1996-07-28|1996-07-17|1996-08-01|DELIVER IN PERSON|SHIP|gs. pending d| +17262|307421|19928|2|38|54279.58|0.01|0.04|N|O|1996-08-20|1996-08-08|1996-09-13|TAKE BACK RETURN|FOB|ongside of the fluffily final packag| +17262|815456|3005|3|33|45256.53|0.07|0.07|N|O|1996-07-13|1996-06-26|1996-07-22|COLLECT COD|FOB|arefully even packages. final, expre| +17262|355329|17837|4|40|55372.40|0.09|0.00|N|O|1996-05-30|1996-06-17|1996-06-09|TAKE BACK RETURN|FOB| packages. fur| +17263|491448|28976|1|31|44622.02|0.06|0.06|N|O|1995-07-26|1995-09-10|1995-08-04|COLLECT COD|MAIL|ep along the fin| +17263|750568|25599|2|46|74452.38|0.10|0.06|N|O|1995-09-17|1995-09-13|1995-09-20|DELIVER IN PERSON|TRUCK| wake slyly regular foxes. blithely regul| +17263|787314|12345|3|41|57452.48|0.02|0.06|N|O|1995-07-30|1995-09-23|1995-08-24|NONE|RAIL|final pinto bean| +17288|456190|18700|1|1|1146.17|0.05|0.02|N|O|1995-11-13|1995-10-05|1995-12-04|COLLECT COD|TRUCK|usly. even ideas nag quietly against the | +17288|169138|19139|2|27|32592.51|0.09|0.02|N|O|1995-11-15|1995-09-11|1995-11-27|NONE|RAIL|asymptotes. packages haggle final | +17289|965581|28101|1|33|54335.82|0.02|0.05|N|O|1996-05-03|1996-05-25|1996-05-13|NONE|RAIL|packages boost according to the pend| +17289|514684|2215|2|20|33973.20|0.03|0.01|N|O|1996-06-15|1996-05-21|1996-06-16|NONE|RAIL|e fluffily ironic packages. furiously final| +17289|280102|30103|3|37|40037.33|0.02|0.05|N|O|1996-04-13|1996-05-30|1996-04-14|TAKE BACK RETURN|MAIL| furiously regular asympto| +17289|659276|34303|4|2|2470.48|0.09|0.06|N|O|1996-07-08|1996-07-01|1996-07-18|NONE|SHIP|ins haggle slyly | +17289|446592|46593|5|23|35387.11|0.05|0.05|N|O|1996-07-31|1996-06-03|1996-08-23|NONE|RAIL|y. thinly final pinto beans mold quickl| +17290|802879|2880|1|16|28509.28|0.05|0.01|R|F|1995-03-21|1995-01-02|1995-04-20|DELIVER IN PERSON|SHIP|sly final packages cajole bravely alongsid| +17290|981421|6460|2|38|57090.44|0.05|0.08|R|F|1995-01-29|1995-01-13|1995-01-30|DELIVER IN PERSON|FOB|ronic foxes. silent| +17290|733635|46150|3|32|53395.20|0.04|0.02|A|F|1995-01-31|1995-01-04|1995-02-20|TAKE BACK RETURN|REG AIR|s boost quickly. e| +17290|196438|46439|4|21|32223.03|0.00|0.08|R|F|1995-02-14|1995-02-12|1995-02-22|DELIVER IN PERSON|AIR|ly pending theodol| +17290|525541|25542|5|12|18798.24|0.01|0.08|R|F|1995-01-02|1995-01-20|1995-01-17|NONE|FOB|idly pending packages cajole never ar| +17290|761402|48948|6|17|24877.29|0.08|0.05|R|F|1994-12-23|1995-01-18|1995-01-11|TAKE BACK RETURN|TRUCK|al asymptotes cajol| +17290|876709|39227|7|47|79226.02|0.00|0.03|R|F|1994-12-21|1995-01-31|1995-01-01|NONE|RAIL|hely furiously sil| +17291|838430|13463|1|50|68419.50|0.03|0.02|N|O|1997-11-24|1997-10-21|1997-12-05|DELIVER IN PERSON|TRUCK|l orbits in| +17291|484925|9944|2|43|82125.70|0.04|0.01|N|O|1997-11-30|1997-09-29|1997-12-06|DELIVER IN PERSON|MAIL|ests. unusual requests cajole regularly| +17291|120251|20252|3|25|31781.25|0.04|0.00|N|O|1997-11-11|1997-09-29|1997-11-25|DELIVER IN PERSON|SHIP|dencies boost dog| +17291|48571|11072|4|9|13676.13|0.05|0.01|N|O|1997-10-15|1997-11-02|1997-10-27|TAKE BACK RETURN|FOB|carefully. b| +17291|320626|33133|5|5|8233.05|0.01|0.07|N|O|1997-09-26|1997-10-21|1997-10-17|COLLECT COD|FOB|nding sheaves wake slyly | +17291|749186|11701|6|40|49406.00|0.08|0.02|N|O|1997-11-27|1997-09-19|1997-12-02|DELIVER IN PERSON|SHIP|al attainments use slyly carefully| +17291|564355|39378|7|8|11354.64|0.04|0.08|N|O|1997-09-06|1997-09-19|1997-09-28|COLLECT COD|AIR|inally final accounts. final requ| +17292|111577|49084|1|26|41302.82|0.08|0.04|N|O|1995-09-14|1995-10-30|1995-10-13|COLLECT COD|FOB|onic, final pinto beans | +17292|269600|7116|2|12|18835.08|0.07|0.06|N|O|1995-11-02|1995-11-13|1995-11-30|COLLECT COD|RAIL| furiously final instruction| +17292|162949|459|3|17|34202.98|0.02|0.01|N|O|1995-11-07|1995-10-28|1995-11-16|DELIVER IN PERSON|AIR|ests. regular | +17292|674970|24971|4|10|19449.40|0.04|0.05|N|O|1995-09-13|1995-10-08|1995-09-29|NONE|AIR|regular requests wake among the| +17292|212415|12416|5|38|50441.20|0.09|0.05|N|O|1995-11-03|1995-11-13|1995-11-14|NONE|TRUCK|hins kindle after the r| +17292|43739|31240|6|12|20192.76|0.06|0.05|N|O|1995-11-01|1995-11-24|1995-11-26|TAKE BACK RETURN|AIR|xpress requests? furiously express asympto| +17292|112215|49722|7|15|18408.15|0.10|0.04|N|O|1995-12-18|1995-10-03|1995-12-19|DELIVER IN PERSON|SHIP|after the careful| +17293|985739|23297|1|49|89409.81|0.04|0.05|A|F|1993-05-09|1993-04-19|1993-06-05|NONE|TRUCK|ing ideas. packages hagg| +17294|636898|49411|1|37|67889.82|0.10|0.04|N|O|1996-06-09|1996-05-29|1996-06-26|TAKE BACK RETURN|REG AIR|around the never ironic accounts. blithely | +17294|342551|5058|2|5|7967.70|0.05|0.01|N|O|1996-06-02|1996-07-14|1996-06-20|NONE|AIR|nticing packages. slow d| +17294|253172|3173|3|23|25878.68|0.07|0.06|N|O|1996-07-04|1996-07-08|1996-07-27|TAKE BACK RETURN|TRUCK|ly ironic ideas. carefully specia| +17294|59129|9130|4|10|10881.20|0.03|0.08|N|O|1996-05-18|1996-05-27|1996-06-04|NONE|AIR| to the furio| +17294|769915|19916|5|28|55576.64|0.09|0.05|N|O|1996-05-02|1996-05-26|1996-05-16|NONE|SHIP|lithely express requests| +17294|956506|31545|6|40|62498.40|0.01|0.02|N|O|1996-07-01|1996-06-03|1996-07-27|COLLECT COD|MAIL| slyly blithely special p| +17294|980656|18214|7|23|39942.03|0.01|0.04|N|O|1996-07-13|1996-06-20|1996-07-22|DELIVER IN PERSON|REG AIR|to beans. slyly ironic dependenci| +17295|884412|34413|1|44|61440.28|0.03|0.07|N|O|1997-02-04|1997-03-02|1997-02-28|NONE|RAIL|carefully: ex| +17295|297394|47395|2|50|69569.00|0.10|0.04|N|O|1997-03-04|1997-02-17|1997-04-01|NONE|TRUCK| furiously| +17295|286036|48542|3|19|19418.38|0.03|0.04|N|O|1997-04-15|1997-03-12|1997-04-19|DELIVER IN PERSON|MAIL|sual deposits wake quickly | +17295|395912|20927|4|45|90355.50|0.03|0.06|N|O|1997-02-19|1997-02-03|1997-03-17|COLLECT COD|AIR|posits detect slyly along the flu| +17320|532203|19734|1|19|23468.42|0.01|0.07|N|O|1996-12-15|1996-12-16|1996-12-29|COLLECT COD|RAIL|es. furiously | +17320|719618|19619|2|26|42577.08|0.00|0.06|N|O|1996-12-12|1996-12-11|1996-12-26|COLLECT COD|TRUCK|fluffily along the furiously eve| +17320|609771|22284|3|13|21849.62|0.02|0.06|N|O|1996-11-05|1996-12-03|1996-12-05|TAKE BACK RETURN|MAIL|enly. bold instructions after| +17320|407392|7393|4|33|42879.21|0.09|0.06|N|O|1996-10-14|1996-11-09|1996-11-12|TAKE BACK RETURN|SHIP|ng the slyly pending depo| +17320|36523|24024|5|34|49623.68|0.02|0.08|N|O|1996-10-20|1996-12-27|1996-11-07|COLLECT COD|SHIP|ending instructions. slyly pending gro| +17320|839845|14878|6|31|55328.80|0.01|0.07|N|O|1996-10-19|1996-12-09|1996-11-06|DELIVER IN PERSON|SHIP|efully even decoys. blithely ironic reques| +17321|598996|36530|1|50|104748.50|0.00|0.03|N|O|1996-09-05|1996-11-19|1996-10-05|NONE|AIR|gular hockey players| +17321|313355|874|2|44|60206.96|0.10|0.04|N|O|1996-11-21|1996-10-28|1996-12-09|DELIVER IN PERSON|REG AIR| pending, express theodolites wake fu| +17321|549728|49729|3|21|37331.70|0.04|0.04|N|O|1996-11-20|1996-10-19|1996-12-02|DELIVER IN PERSON|AIR|thely bold packages. b| +17321|269392|6908|4|5|6806.90|0.10|0.06|N|O|1996-09-10|1996-10-26|1996-09-18|NONE|MAIL|platelets. b| +17322|103970|28975|1|27|53297.19|0.06|0.00|N|O|1996-05-27|1996-07-21|1996-05-31|DELIVER IN PERSON|AIR|ar tithes wake. furiously unusual platele| +17322|419229|31738|2|29|33297.80|0.04|0.08|N|O|1996-05-21|1996-07-02|1996-05-26|COLLECT COD|TRUCK|ously regular courts. carefully ev| +17322|981124|18682|3|37|44587.96|0.09|0.00|N|O|1996-07-10|1996-07-09|1996-08-02|TAKE BACK RETURN|AIR|heodolites c| +17322|739206|26749|4|39|48561.63|0.03|0.00|N|O|1996-07-06|1996-07-03|1996-07-16|DELIVER IN PERSON|MAIL| forges promise quickl| +17322|830783|5816|5|40|68549.60|0.08|0.08|N|O|1996-06-12|1996-07-29|1996-06-25|COLLECT COD|FOB|packages. blithel| +17322|966761|4319|6|33|60314.76|0.04|0.01|N|O|1996-08-15|1996-06-14|1996-09-12|NONE|RAIL|blithely around the furi| +17322|345115|45116|7|17|19721.70|0.05|0.00|N|O|1996-08-16|1996-08-06|1996-08-29|COLLECT COD|TRUCK|ording to the quickly regular accounts w| +17323|333085|20604|1|10|11180.70|0.08|0.04|N|O|1998-02-05|1998-02-08|1998-02-12|TAKE BACK RETURN|REG AIR|counts poach carefully carefully unusua| +17323|157838|32845|2|17|32229.11|0.08|0.03|N|O|1998-03-24|1998-03-06|1998-04-17|NONE|TRUCK|es final excuses. even theodolites c| +17324|928855|41374|1|11|20721.91|0.07|0.08|R|F|1993-01-27|1993-04-03|1993-02-01|DELIVER IN PERSON|MAIL|wake above the excuses. s| +17324|252094|14600|2|9|9414.72|0.00|0.05|R|F|1993-03-06|1993-03-08|1993-03-13|TAKE BACK RETURN|MAIL|. ironic foxes along th| +17324|938979|26534|3|16|32286.88|0.00|0.01|A|F|1993-03-25|1993-03-21|1993-04-23|DELIVER IN PERSON|REG AIR|ress packages affix between the blithel| +17324|406699|44224|4|36|57804.12|0.00|0.05|R|F|1993-02-14|1993-04-07|1993-03-10|COLLECT COD|RAIL|aggle across the carefully final fret| +17324|377792|40300|5|20|37395.60|0.10|0.01|R|F|1993-01-31|1993-02-22|1993-02-04|COLLECT COD|TRUCK| accounts sleep| +17325|881023|43541|1|41|41163.18|0.02|0.04|A|F|1994-09-11|1994-08-27|1994-09-15|COLLECT COD|TRUCK|s! quickly special dolphins thro| +17325|344498|32017|2|7|10797.36|0.09|0.05|A|F|1994-08-11|1994-10-04|1994-08-18|DELIVER IN PERSON|RAIL|l pinto beans. spec| +17325|961753|24273|3|14|25405.94|0.01|0.00|A|F|1994-10-03|1994-08-21|1994-10-07|NONE|FOB|cuses. slowly re| +17325|174822|12332|4|1|1896.82|0.04|0.03|R|F|1994-10-01|1994-09-12|1994-10-20|TAKE BACK RETURN|SHIP| pinto beans use| +17325|225253|12766|5|43|50664.32|0.10|0.06|R|F|1994-09-24|1994-08-30|1994-10-21|DELIVER IN PERSON|MAIL| the ironic,| +17325|821200|46233|6|4|4484.64|0.02|0.07|A|F|1994-11-01|1994-09-22|1994-11-15|TAKE BACK RETURN|RAIL|ss patterns. fluffily express foxes haggle| +17326|413690|1215|1|28|44902.76|0.06|0.00|N|O|1998-07-23|1998-09-11|1998-08-18|NONE|RAIL|ng requests sleep furiously | +17326|874002|11554|2|37|36110.52|0.04|0.06|N|O|1998-07-19|1998-08-03|1998-08-02|TAKE BACK RETURN|TRUCK|lites! slyly pending deposits a| +17326|341085|28604|3|18|20269.26|0.06|0.02|N|O|1998-07-29|1998-09-04|1998-08-11|TAKE BACK RETURN|RAIL|n slyly special dependencies. carefull| +17326|599600|37134|4|35|59485.30|0.01|0.00|N|O|1998-08-29|1998-09-25|1998-09-26|DELIVER IN PERSON|FOB|ake blithely alongside of the ideas!| +17326|476522|14050|5|10|14985.00|0.10|0.06|N|O|1998-09-18|1998-09-25|1998-10-18|TAKE BACK RETURN|RAIL|ts. bold requests cajole. u| +17326|890655|28207|6|39|64178.79|0.01|0.06|N|O|1998-10-10|1998-08-28|1998-11-04|DELIVER IN PERSON|MAIL|gside of the regular requ| +17326|228688|16201|7|30|48500.10|0.02|0.07|N|O|1998-10-12|1998-08-13|1998-10-21|COLLECT COD|MAIL|ronic instructions affix blithely afte| +17327|552938|27961|1|4|7963.64|0.08|0.07|R|F|1992-04-16|1992-04-21|1992-05-08|NONE|FOB|ggle blithely on the car| +17327|215131|15132|2|1|1046.12|0.10|0.01|R|F|1992-06-08|1992-04-24|1992-07-02|TAKE BACK RETURN|SHIP|deposits. s| +17352|958570|46128|1|45|73283.85|0.04|0.02|N|O|1996-10-11|1996-11-14|1996-11-09|NONE|RAIL|efully even requ| +17352|679201|29202|2|1|1180.17|0.05|0.04|N|O|1996-10-11|1996-11-21|1996-11-08|NONE|AIR|r accounts wa| +17352|324269|36776|3|26|33624.50|0.05|0.01|N|O|1996-11-19|1996-11-04|1996-12-11|COLLECT COD|FOB|sits sleep final asymptotes. furiou| +17352|984374|46894|4|6|8749.98|0.05|0.06|N|O|1996-10-08|1996-10-04|1996-10-23|NONE|RAIL|ans boost furiously furi| +17353|40651|15652|1|49|77990.85|0.02|0.02|N|O|1995-10-08|1995-10-21|1995-10-23|TAKE BACK RETURN|AIR|ully slyly sp| +17354|778469|40985|1|2|3094.86|0.01|0.07|R|F|1992-08-01|1992-07-07|1992-08-26|COLLECT COD|REG AIR| detect blithely. regular| +17354|720366|32881|2|38|52680.54|0.09|0.01|R|F|1992-09-24|1992-08-23|1992-10-10|TAKE BACK RETURN|MAIL|tructions run carefully among the even dep| +17354|183256|20766|3|3|4017.75|0.00|0.03|R|F|1992-09-01|1992-08-02|1992-09-10|COLLECT COD|MAIL| slyly about the slyly regular requests. f| +17354|967085|42124|4|40|46081.60|0.00|0.01|R|F|1992-07-29|1992-07-07|1992-08-11|COLLECT COD|SHIP|kly ironic theodolites. foxes boo| +17354|789317|26863|5|32|45000.96|0.07|0.03|A|F|1992-09-20|1992-07-06|1992-10-05|TAKE BACK RETURN|SHIP|lyly regular requests| +17354|43887|31388|6|35|64080.80|0.07|0.07|A|F|1992-06-04|1992-07-19|1992-06-10|TAKE BACK RETURN|REG AIR|express requests sleep carefully fluff| +17355|355628|30643|1|32|53875.52|0.03|0.04|N|O|1998-04-10|1998-03-08|1998-04-16|NONE|RAIL|ly even dependencies| +17355|29713|42214|2|9|14784.39|0.02|0.00|N|O|1998-02-07|1998-04-11|1998-02-16|NONE|FOB|uiet requests a| +17355|376072|13594|3|40|45922.40|0.10|0.01|N|O|1998-05-03|1998-04-08|1998-05-14|TAKE BACK RETURN|REG AIR|ent packages use slyly| +17355|627375|2400|4|50|65117.00|0.09|0.02|N|O|1998-05-13|1998-03-02|1998-05-29|TAKE BACK RETURN|RAIL|about the ironic deposits. car| +17355|275370|12886|5|29|39015.44|0.05|0.01|N|O|1998-03-22|1998-03-07|1998-04-03|NONE|SHIP|final requests wake accounts| +17355|132572|20079|6|2|3209.14|0.03|0.08|N|O|1998-03-27|1998-03-21|1998-04-01|TAKE BACK RETURN|REG AIR| blithely unusual requests a| +17356|804628|4629|1|43|65900.94|0.06|0.00|N|O|1995-07-15|1995-09-30|1995-07-18|DELIVER IN PERSON|MAIL|he thin requests: blithely ironic cour| +17356|381686|19208|2|17|30050.39|0.05|0.06|N|O|1995-07-12|1995-09-15|1995-07-30|COLLECT COD|REG AIR|y. quickly sp| +17356|984751|9790|3|3|5507.13|0.10|0.00|N|O|1995-08-22|1995-10-06|1995-09-09|DELIVER IN PERSON|FOB|nding foxes cajole furiously after t| +17356|703610|28639|4|10|16135.80|0.10|0.07|N|O|1995-08-22|1995-08-28|1995-08-27|COLLECT COD|FOB|oze! carefull| +17357|997140|47141|1|46|56906.60|0.03|0.08|A|F|1993-06-11|1993-06-08|1993-07-11|TAKE BACK RETURN|SHIP|es boost. furio| +17357|920047|32566|2|45|48015.00|0.02|0.06|A|F|1993-07-10|1993-04-26|1993-08-03|TAKE BACK RETURN|SHIP|lar requests haggle blithely special i| +17357|223043|48052|3|50|48301.50|0.05|0.04|A|F|1993-03-29|1993-05-25|1993-04-27|DELIVER IN PERSON|TRUCK| express instructions. furi| +17357|667211|29725|4|36|42414.48|0.08|0.05|A|F|1993-06-17|1993-05-15|1993-07-07|TAKE BACK RETURN|AIR| accounts cajole slyly! qui| +17357|802351|27384|5|8|10026.48|0.00|0.06|A|F|1993-05-01|1993-04-29|1993-05-25|NONE|TRUCK|eposits beside th| +17357|112924|25427|6|36|69729.12|0.07|0.01|A|F|1993-07-03|1993-05-28|1993-07-09|DELIVER IN PERSON|TRUCK|hely express somas. carefully ironic| +17358|491961|29489|1|28|54682.32|0.06|0.06|A|F|1993-10-04|1993-09-19|1993-10-21|COLLECT COD|AIR|eans. blithely| +17358|376651|39159|2|29|50101.56|0.00|0.07|R|F|1993-09-08|1993-08-24|1993-09-30|DELIVER IN PERSON|AIR|ag above the furiously regu| +17358|369725|32233|3|24|43073.04|0.06|0.07|R|F|1993-11-11|1993-09-26|1993-11-18|COLLECT COD|AIR|iously regular deposits wake carefully fin| +17358|960966|10967|4|4|8107.68|0.10|0.01|R|F|1993-11-05|1993-09-01|1993-11-07|DELIVER IN PERSON|FOB|accounts wake slyly. furiously unusual | +17358|949299|49300|5|27|36402.75|0.02|0.06|A|F|1993-09-26|1993-09-22|1993-10-06|DELIVER IN PERSON|FOB|ckly even foxes. quickly regular ideas a| +17359|185378|22888|1|1|1463.37|0.06|0.06|R|F|1995-04-11|1995-02-21|1995-04-17|NONE|REG AIR|ic requests haggle ac| +17359|640506|28043|2|34|49179.98|0.06|0.06|A|F|1995-03-30|1995-03-09|1995-04-25|DELIVER IN PERSON|FOB|ronic dolphins. even requests hag| +17359|970679|20680|3|45|78733.35|0.03|0.04|A|F|1995-01-08|1995-02-26|1995-01-16|DELIVER IN PERSON|MAIL| blithely. fluffi| +17359|196616|46617|4|45|77067.45|0.06|0.07|R|F|1995-03-02|1995-02-25|1995-03-11|COLLECT COD|FOB|ully pendin| +17359|517100|42121|5|41|45800.28|0.05|0.05|R|F|1995-03-02|1995-02-15|1995-03-26|TAKE BACK RETURN|AIR| maintain quickly. furiou| +17359|897080|47081|6|15|16155.60|0.10|0.04|A|F|1995-01-03|1995-03-11|1995-01-25|TAKE BACK RETURN|FOB| quickly after the regular fo| +17359|210670|48183|7|2|3161.32|0.00|0.00|R|F|1995-03-22|1995-02-27|1995-03-27|NONE|TRUCK|ts. fluffily express p| +17384|723507|11050|1|9|13774.23|0.03|0.04|A|F|1994-03-10|1994-02-11|1994-03-19|NONE|AIR|unts wake blithely unusual packages. qu| +17384|966520|29040|2|10|15864.80|0.08|0.04|R|F|1993-12-16|1994-01-15|1994-01-10|TAKE BACK RETURN|FOB|requests around the furi| +17384|298592|11098|3|16|25449.28|0.10|0.06|R|F|1994-03-03|1994-02-01|1994-03-10|NONE|RAIL|old packages haggle furiously. slyly regula| +17384|429717|17242|4|10|16466.90|0.04|0.01|R|F|1993-12-08|1994-01-21|1993-12-09|NONE|AIR|lly. special, close depos| +17385|329179|16698|1|37|44701.92|0.08|0.06|N|O|1997-05-22|1997-07-09|1997-06-03|NONE|FOB|nusual dependencies. slyly ironic requests| +17385|503076|40607|2|33|35608.65|0.02|0.03|N|O|1997-04-30|1997-06-11|1997-05-24|DELIVER IN PERSON|MAIL|ully ironic in| +17385|187812|37813|3|39|74092.59|0.00|0.08|N|O|1997-08-23|1997-07-24|1997-09-20|COLLECT COD|SHIP|counts. bold deposits above th| +17385|553070|28093|4|45|50537.25|0.06|0.07|N|O|1997-05-02|1997-07-08|1997-05-15|DELIVER IN PERSON|AIR|arhorses according to the exp| +17386|548134|23155|1|7|8274.77|0.03|0.05|N|O|1998-10-25|1998-10-14|1998-11-22|DELIVER IN PERSON|MAIL| carefully slyly final packages.| +17387|315293|15294|1|16|20932.48|0.03|0.01|N|O|1997-07-24|1997-09-17|1997-07-31|COLLECT COD|REG AIR|e fluffy patterns| +17387|125425|25426|2|39|56566.38|0.10|0.07|N|O|1997-07-06|1997-08-18|1997-08-05|NONE|FOB|he furiousl| +17388|225299|25300|1|17|20812.76|0.06|0.06|N|O|1996-02-23|1996-01-08|1996-03-17|DELIVER IN PERSON|REG AIR| carefully regular packages. blithely| +17388|592145|17168|2|18|22268.16|0.03|0.04|N|O|1996-01-09|1996-02-08|1996-01-22|COLLECT COD|AIR|hins nag silent ideas. carefully iron| +17388|169220|19221|3|5|6446.10|0.04|0.07|N|O|1996-01-04|1996-01-22|1996-01-19|DELIVER IN PERSON|REG AIR|he special| +17389|653486|16000|1|34|48941.30|0.10|0.03|N|O|1995-09-16|1995-11-15|1995-09-28|NONE|RAIL|tructions. silent reque| +17390|123580|36083|1|31|49710.98|0.04|0.00|A|F|1995-04-27|1995-04-04|1995-05-10|TAKE BACK RETURN|FOB|ithely expre| +17390|999637|49638|2|49|85092.91|0.04|0.03|R|F|1995-02-24|1995-03-05|1995-03-03|NONE|TRUCK|as. requests cajol| +17390|887262|49780|3|30|37476.60|0.10|0.03|R|F|1995-02-09|1995-02-28|1995-02-12|DELIVER IN PERSON|FOB|ubt quickly ac| +17390|199798|37308|4|23|43649.17|0.08|0.01|R|F|1995-05-13|1995-04-13|1995-05-20|TAKE BACK RETURN|REG AIR| deposits. sp| +17390|996732|21771|5|38|69490.22|0.04|0.04|R|F|1995-05-09|1995-04-16|1995-05-11|NONE|SHIP| ironic requests. carefull| +17390|66362|16363|6|31|41179.16|0.08|0.02|R|F|1995-01-27|1995-02-27|1995-02-26|TAKE BACK RETURN|FOB|ong the slyly | +17391|241274|16283|1|46|55901.96|0.06|0.07|R|F|1995-02-12|1995-03-15|1995-03-11|NONE|TRUCK|eep even, regular excu| +17391|84774|9777|2|46|80903.42|0.08|0.05|A|F|1995-03-11|1995-04-14|1995-04-05|COLLECT COD|AIR|ully regular ideas. ir| +17391|786079|48595|3|43|50096.72|0.02|0.07|A|F|1995-03-11|1995-03-25|1995-04-06|NONE|MAIL| grow quickly along the pendin| +17391|618000|18001|4|47|43144.59|0.03|0.06|A|F|1995-05-11|1995-04-01|1995-06-04|NONE|SHIP|y. accounts boost carefully even acc| +17416|502212|27233|1|27|32783.13|0.03|0.02|N|O|1997-01-01|1996-10-23|1997-01-31|DELIVER IN PERSON|MAIL|ld deposits wake c| +17416|660506|48046|2|31|45460.57|0.10|0.07|N|O|1996-10-25|1996-11-12|1996-11-10|NONE|REG AIR| even requests wak| +17416|110719|48226|3|17|29405.07|0.03|0.08|N|O|1996-12-03|1996-11-28|1996-12-13|COLLECT COD|RAIL| dependencies would use slyly| +17416|842197|17230|4|20|22783.00|0.00|0.07|N|O|1997-01-09|1996-12-14|1997-01-10|NONE|FOB|mptotes affix deposi| +17416|800463|25496|5|45|61353.90|0.07|0.06|N|O|1996-12-29|1996-11-18|1997-01-17|DELIVER IN PERSON|AIR|s after the carefu| +17416|377849|27850|6|34|65512.22|0.02|0.05|N|O|1996-12-21|1996-12-11|1997-01-15|TAKE BACK RETURN|RAIL|ular requests | +17416|506472|6473|7|25|36961.25|0.03|0.00|N|O|1996-11-09|1996-11-18|1996-11-19|TAKE BACK RETURN|AIR|even asymptote| +17417|271440|21441|1|4|5645.72|0.03|0.02|A|F|1992-08-27|1992-07-30|1992-09-16|NONE|RAIL|efully silent platelets are blit| +17417|84566|34567|2|42|65123.52|0.04|0.08|A|F|1992-08-14|1992-08-18|1992-08-23|COLLECT COD|SHIP|ic requests. even, i| +17417|293648|18659|3|41|67306.83|0.01|0.05|R|F|1992-08-10|1992-08-21|1992-08-30|NONE|RAIL|oss the furiously reg| +17418|373864|11386|1|32|62011.20|0.08|0.07|N|O|1996-04-08|1996-05-08|1996-04-23|NONE|RAIL|r the pending, | +17418|518011|43032|2|49|50420.51|0.09|0.01|N|O|1996-04-28|1996-05-08|1996-05-05|NONE|FOB|l ideas wake slyly blithely even reques| +17418|198328|10832|3|9|12836.88|0.07|0.08|N|O|1996-04-25|1996-05-22|1996-05-17|TAKE BACK RETURN|REG AIR|ly above the dependencies. carefully p| +17419|126356|38859|1|16|22117.60|0.03|0.05|N|O|1996-10-26|1996-11-30|1996-11-15|COLLECT COD|SHIP| final platelets-- carefully f| +17420|760636|35667|1|31|52594.60|0.07|0.07|N|O|1996-08-23|1996-09-25|1996-08-30|NONE|REG AIR|bold instructi| +17420|994255|6775|2|6|8095.26|0.02|0.08|N|O|1996-10-18|1996-08-26|1996-11-13|TAKE BACK RETURN|TRUCK| at the final instructi| +17420|429937|42446|3|1|1866.91|0.06|0.08|N|O|1996-08-05|1996-08-28|1996-08-09|DELIVER IN PERSON|MAIL|yly. instructions | +17420|945221|45222|4|24|30388.32|0.04|0.01|N|O|1996-11-10|1996-09-14|1996-12-03|NONE|AIR|the ironic accounts. fur| +17420|326301|38808|5|42|55746.18|0.10|0.04|N|O|1996-09-01|1996-09-11|1996-09-17|NONE|REG AIR|uests across the final accounts boost| +17421|805469|30502|1|27|37109.34|0.06|0.05|N|O|1998-10-08|1998-09-02|1998-10-09|DELIVER IN PERSON|TRUCK|nag quickly furiously express pack| +17421|516719|4250|2|22|38185.18|0.02|0.02|N|O|1998-08-27|1998-09-07|1998-09-15|TAKE BACK RETURN|TRUCK|along the pending pinto beans. slowl| +17421|490085|2595|3|45|48377.70|0.04|0.00|N|O|1998-07-31|1998-08-22|1998-08-02|DELIVER IN PERSON|FOB|ons sleep around the | +17421|852709|15227|4|6|9969.96|0.01|0.06|N|O|1998-09-02|1998-09-08|1998-09-25|NONE|RAIL|arefully final requests. furiously pendin| +17421|471334|8862|5|21|27411.51|0.08|0.00|N|O|1998-09-20|1998-07-23|1998-09-28|TAKE BACK RETURN|REG AIR|sits sleep carefully. carefully fin| +17422|243503|18512|1|36|52073.64|0.08|0.04|N|O|1998-05-25|1998-04-01|1998-05-31|DELIVER IN PERSON|TRUCK|x quickly acros| +17422|550159|12671|2|19|22973.47|0.00|0.05|N|O|1998-06-09|1998-03-28|1998-06-12|NONE|RAIL|usual accounts are furiously according to | +17422|517103|42124|3|18|20161.44|0.03|0.06|N|O|1998-05-26|1998-04-13|1998-06-23|TAKE BACK RETURN|FOB|ly ironic accounts wake blithely regular p| +17422|943326|5845|4|7|9584.96|0.10|0.08|N|O|1998-02-12|1998-03-26|1998-02-23|COLLECT COD|SHIP|even packages sleep slyly regular, i| +17423|420198|20199|1|9|10063.53|0.00|0.03|A|F|1994-12-08|1994-12-01|1994-12-09|DELIVER IN PERSON|SHIP| wake furiously quickly special instr| +17423|259549|34560|2|3|4525.59|0.04|0.07|A|F|1995-01-22|1994-12-31|1995-01-26|NONE|MAIL|ully final dep| +17423|235503|10512|3|37|53224.13|0.10|0.07|R|F|1994-12-29|1995-01-05|1995-01-05|NONE|TRUCK|ly final deposits are slyly carefu| +17423|98262|48263|4|3|3780.78|0.07|0.02|R|F|1994-12-07|1995-01-20|1994-12-25|DELIVER IN PERSON|FOB|usual instructions sleep furiou| +17423|474055|11583|5|10|10290.30|0.03|0.05|R|F|1994-12-15|1995-01-26|1995-01-11|DELIVER IN PERSON|RAIL|ts haggle s| +17423|429501|42010|6|42|60080.16|0.09|0.03|R|F|1995-02-18|1994-12-09|1995-03-03|TAKE BACK RETURN|FOB|anent requests. bold deposits | +17423|616852|41877|7|38|67215.16|0.04|0.03|R|F|1995-01-25|1994-12-24|1995-02-13|TAKE BACK RETURN|AIR| decoys above the even, regular | +17448|419155|44172|1|22|23630.86|0.06|0.08|N|O|1996-01-27|1996-01-16|1996-02-19|NONE|SHIP|the final, regu| +17448|727300|27301|2|47|62381.69|0.00|0.03|N|O|1996-02-21|1995-11-28|1996-02-25|NONE|FOB|n foxes. ironic d| +17448|727857|2886|3|21|39581.22|0.08|0.08|N|O|1995-11-09|1996-01-14|1995-11-14|DELIVER IN PERSON|REG AIR|kly silent packages sleep f| +17448|80141|30142|4|22|24665.08|0.01|0.05|N|O|1996-01-09|1995-12-18|1996-01-20|COLLECT COD|AIR|furiously even theodolit| +17448|922376|47413|5|32|44746.56|0.05|0.05|N|O|1995-12-25|1996-01-03|1996-01-10|DELIVER IN PERSON|RAIL|ing foxes use a| +17448|369845|7367|6|21|40211.43|0.05|0.08|N|O|1996-02-14|1995-12-22|1996-03-08|COLLECT COD|MAIL|lent dolphins are among the | +17448|976640|39160|7|1|1716.60|0.08|0.02|N|O|1995-10-29|1995-12-25|1995-11-11|DELIVER IN PERSON|REG AIR|o beans. carefully ironic deposits ha| +17449|375097|37605|1|42|49227.36|0.01|0.02|N|O|1996-09-19|1996-11-15|1996-09-21|DELIVER IN PERSON|TRUCK|s after th| +17449|252943|40459|2|42|79629.06|0.03|0.04|N|O|1996-12-17|1996-10-29|1996-12-22|TAKE BACK RETURN|RAIL|ke carefully after the slyly fina| +17449|205025|17530|3|17|15810.17|0.09|0.07|N|O|1996-12-20|1996-11-29|1996-12-29|DELIVER IN PERSON|FOB|as sleep blithely. closely ironic deposit| +17449|854606|4607|4|48|74906.88|0.01|0.01|N|O|1997-01-06|1996-11-03|1997-01-29|COLLECT COD|SHIP|lent pinto bea| +17449|359985|9986|5|1|2044.97|0.10|0.02|N|O|1997-01-07|1996-10-31|1997-01-23|TAKE BACK RETURN|MAIL|ons. carefully fina| +17449|264541|27047|6|5|7527.65|0.10|0.04|N|O|1997-01-13|1996-11-09|1997-01-26|DELIVER IN PERSON|TRUCK|busy deposits haggle furiously ironic th| +17449|125581|38084|7|45|72296.10|0.08|0.05|N|O|1996-12-07|1996-12-10|1997-01-02|NONE|TRUCK|es wake. final instructions affix car| +17450|627127|2152|1|7|7378.63|0.01|0.04|N|O|1998-05-29|1998-05-11|1998-05-31|COLLECT COD|REG AIR|silent dugouts sleep fluffily regular, r| +17450|117736|42741|2|48|84179.04|0.01|0.04|N|O|1998-06-11|1998-04-28|1998-06-21|COLLECT COD|MAIL| blithely special instructions. blit| +17451|3960|41461|1|34|63374.64|0.08|0.08|A|F|1993-01-03|1993-01-05|1993-01-20|DELIVER IN PERSON|MAIL|less ideas engage| +17452|786647|36648|1|50|86680.50|0.04|0.06|R|F|1993-09-03|1993-10-01|1993-09-25|NONE|RAIL|ns. stealthy pinto beans across the blithel| +17453|216811|29316|1|21|36283.80|0.07|0.01|N|O|1998-03-11|1998-04-27|1998-03-19|TAKE BACK RETURN|SHIP|, express packages-- fluffily pe| +17453|934221|46740|2|45|56483.10|0.01|0.03|N|O|1998-04-25|1998-03-09|1998-05-01|DELIVER IN PERSON|FOB|. slyly final requests acc| +17453|439926|39927|3|32|59708.80|0.05|0.01|N|O|1998-04-24|1998-04-19|1998-04-28|TAKE BACK RETURN|FOB|ainst the quickly s| +17453|821358|33875|4|26|33262.06|0.05|0.07|N|O|1998-04-09|1998-03-30|1998-05-05|NONE|RAIL|lar escapa| +17453|563466|13467|5|12|18353.28|0.05|0.03|N|O|1998-04-10|1998-04-03|1998-04-11|TAKE BACK RETURN|SHIP|nding deposits. fluffy, ironic asym| +17453|158273|33280|6|31|41269.37|0.06|0.08|N|O|1998-04-16|1998-03-06|1998-05-04|DELIVER IN PERSON|MAIL|to beans alon| +17454|210598|48111|1|20|30171.60|0.10|0.03|A|F|1995-04-04|1995-02-04|1995-04-17|DELIVER IN PERSON|RAIL|long the furi| +17455|705841|43384|1|9|16621.29|0.04|0.01|N|O|1997-03-06|1997-03-30|1997-03-13|TAKE BACK RETURN|MAIL|ly pending pinto beans. patterns nag a| +17455|67982|42985|2|24|46799.52|0.09|0.02|N|O|1997-05-20|1997-03-16|1997-06-08|DELIVER IN PERSON|RAIL| wake carefully regular asym| +17480|434323|9340|1|19|23888.70|0.06|0.05|N|O|1997-07-21|1997-08-06|1997-07-24|NONE|FOB|boost blithely fluffily special accounts. f| +17480|665910|3450|2|31|58152.28|0.06|0.07|N|O|1997-06-27|1997-07-27|1997-07-17|COLLECT COD|TRUCK|heodolites nag furiously upon the fu| +17480|941698|16735|3|4|6958.60|0.01|0.06|N|O|1997-10-04|1997-08-03|1997-11-02|COLLECT COD|REG AIR|ter the express, special accoun| +17481|475678|13206|1|34|56224.10|0.09|0.08|A|F|1994-11-02|1994-11-28|1994-11-20|DELIVER IN PERSON|MAIL| the express dep| +17481|703733|3734|2|42|72941.40|0.02|0.00|R|F|1994-12-14|1994-12-19|1995-01-08|NONE|SHIP|accounts cajole.| +17481|627819|27820|3|41|71617.98|0.09|0.04|R|F|1994-10-10|1994-12-21|1994-10-20|DELIVER IN PERSON|FOB|ng to the ideas-- blit| +17482|411091|48616|1|43|43089.01|0.01|0.07|N|O|1997-08-02|1997-08-31|1997-08-11|COLLECT COD|SHIP|ts haggle. slyly un| +17483|226544|14057|1|20|29410.60|0.06|0.01|N|O|1997-09-05|1997-07-06|1997-09-28|COLLECT COD|MAIL|furiously re| +17483|518432|5963|2|23|33359.43|0.03|0.06|N|O|1997-08-11|1997-07-10|1997-08-12|TAKE BACK RETURN|SHIP| packages. caref| +17483|274837|37343|3|26|47107.32|0.01|0.01|N|O|1997-09-03|1997-08-04|1997-09-19|DELIVER IN PERSON|SHIP|instead of the blithely silent pinto beans| +17483|182939|20449|4|34|68745.62|0.07|0.05|N|O|1997-09-21|1997-08-18|1997-10-02|NONE|MAIL|nd the regular i| +17484|395124|7632|1|8|9752.88|0.04|0.07|R|F|1993-09-18|1993-11-05|1993-09-28|NONE|SHIP| wake after the furi| +17484|837982|13015|2|14|26879.16|0.07|0.05|A|F|1993-12-25|1993-11-17|1994-01-14|NONE|REG AIR| the depos| +17484|957703|32742|3|7|12324.62|0.06|0.05|A|F|1993-12-11|1993-10-25|1993-12-13|TAKE BACK RETURN|REG AIR|s haggle. blithely unus| +17484|100984|13487|4|40|79399.20|0.00|0.07|A|F|1993-12-24|1993-11-21|1994-01-18|NONE|FOB|even packages haggle qui| +17485|655006|5007|1|34|32672.98|0.10|0.08|A|F|1995-04-02|1995-03-06|1995-04-29|DELIVER IN PERSON|SHIP|inst the blithely special instructi| +17485|681728|19268|2|28|47871.32|0.06|0.06|R|F|1995-01-16|1995-03-18|1995-02-11|DELIVER IN PERSON|REG AIR|ithely final foxes ac| +17486|754527|42073|1|9|14233.41|0.00|0.08|R|F|1994-07-02|1994-06-28|1994-07-16|TAKE BACK RETURN|REG AIR| the accounts. bli| +17486|324992|37499|2|29|58492.42|0.02|0.03|R|F|1994-06-06|1994-06-13|1994-07-06|COLLECT COD|TRUCK|unts. bold, ironic acco| +17486|135329|35330|3|4|5457.28|0.10|0.02|R|F|1994-07-14|1994-06-09|1994-07-21|DELIVER IN PERSON|FOB|. blithely| +17486|465460|2988|4|16|22807.04|0.02|0.04|A|F|1994-07-29|1994-06-04|1994-08-04|NONE|TRUCK|old patterns. ironic pack| +17486|984629|47149|5|41|70256.78|0.01|0.04|A|F|1994-04-03|1994-06-18|1994-04-12|COLLECT COD|FOB| accounts cajole quickly above the pendin| +17486|653617|3618|6|6|9423.48|0.00|0.03|R|F|1994-05-21|1994-05-05|1994-06-12|TAKE BACK RETURN|TRUCK|re fluffily according to| +17486|339371|39372|7|37|52183.32|0.02|0.07|R|F|1994-07-28|1994-06-08|1994-08-21|NONE|TRUCK| daringly regular packages detec| +17487|794148|31694|1|28|34779.08|0.08|0.00|N|O|1997-11-30|1997-11-11|1997-12-18|COLLECT COD|SHIP|l accounts.| +17487|228842|3851|2|8|14166.64|0.01|0.04|N|O|1997-12-14|1997-11-12|1997-12-16|NONE|MAIL|al accounts poach af| +17487|143575|43576|3|38|61505.66|0.03|0.00|N|O|1997-12-12|1997-11-18|1998-01-11|TAKE BACK RETURN|SHIP|cuses. quickly regular deposit| +17487|64535|14536|4|48|71977.44|0.06|0.05|N|O|1997-11-28|1997-10-09|1997-12-12|COLLECT COD|FOB|ithely. even, regular pinto beans a| +17512|263918|13919|1|38|71512.20|0.06|0.03|R|F|1993-12-09|1993-12-11|1994-01-08|DELIVER IN PERSON|TRUCK|furiously final pack| +17512|666609|16610|2|22|34662.54|0.08|0.08|A|F|1993-12-04|1993-11-20|1993-12-09|DELIVER IN PERSON|RAIL|ding ideas| +17513|15048|2549|1|16|15408.64|0.05|0.03|R|F|1994-10-14|1994-11-18|1994-10-30|TAKE BACK RETURN|SHIP|hely. account| +17513|905492|5493|2|50|74872.50|0.08|0.07|A|F|1994-11-23|1994-11-28|1994-12-23|COLLECT COD|FOB| the ironic theodolites n| +17513|590313|15336|3|21|29469.09|0.02|0.00|R|F|1995-01-05|1994-12-03|1995-01-20|DELIVER IN PERSON|SHIP|packages. regular foxes use am| +17513|385864|23386|4|14|27297.90|0.01|0.05|R|F|1994-11-24|1994-11-15|1994-12-18|NONE|RAIL|use carefully| +17513|199446|24453|5|8|12363.52|0.09|0.02|A|F|1994-12-10|1994-11-29|1994-12-16|NONE|SHIP| silent pinto beans. depe| +17513|72977|10481|6|5|9749.85|0.03|0.01|R|F|1994-11-24|1994-11-22|1994-12-12|TAKE BACK RETURN|FOB|eep blithely above th| +17513|509130|9131|7|30|34173.30|0.04|0.00|A|F|1994-11-25|1995-01-05|1994-11-27|NONE|SHIP|ven pinto beans. bold foxes acro| +17514|944270|44271|1|3|3942.69|0.02|0.04|A|F|1995-03-14|1995-03-16|1995-04-05|COLLECT COD|AIR|ilent packages c| +17514|332372|7385|2|27|37917.72|0.06|0.06|A|F|1995-01-10|1995-03-29|1995-01-29|NONE|MAIL|y unusual req| +17514|161078|48588|3|27|30754.89|0.00|0.01|R|F|1995-01-13|1995-02-26|1995-02-02|COLLECT COD|FOB|thely bold pinto bean| +17514|234825|9834|4|19|33436.39|0.07|0.07|A|F|1995-04-28|1995-03-02|1995-05-20|DELIVER IN PERSON|MAIL| express accounts. carefully bold instruc| +17514|689121|26661|5|28|31082.52|0.00|0.06|A|F|1995-02-10|1995-03-16|1995-03-05|TAKE BACK RETURN|AIR|etly carefully bold asymptotes; final, | +17514|54180|41684|6|10|11341.80|0.06|0.02|R|F|1995-02-25|1995-03-31|1995-03-07|COLLECT COD|FOB|regular deposits alongside of th| +17514|591701|16724|7|35|62743.80|0.03|0.00|A|F|1995-03-03|1995-02-17|1995-04-02|COLLECT COD|AIR|es. express, final theodolites wake bli| +17515|710236|47779|1|28|34893.60|0.05|0.03|A|F|1994-02-10|1994-03-22|1994-02-19|DELIVER IN PERSON|MAIL|le express foxes. requests are slyly beside| +17516|551112|38646|1|47|54665.23|0.04|0.05|R|F|1993-08-31|1993-08-10|1993-09-09|NONE|RAIL|ial, final orbits. blithely f| +17516|537391|24922|2|46|65705.02|0.02|0.07|A|F|1993-10-22|1993-08-22|1993-11-07|TAKE BACK RETURN|RAIL|lyly express accounts. furiously r| +17516|928757|16312|3|4|7142.84|0.04|0.06|A|F|1993-07-01|1993-09-02|1993-07-08|DELIVER IN PERSON|REG AIR|le about the packages. quickly r| +17516|604597|42134|4|13|19520.28|0.01|0.08|A|F|1993-08-21|1993-08-15|1993-09-06|COLLECT COD|FOB|refully final not| +17516|445348|7857|5|22|28453.04|0.02|0.07|A|F|1993-09-23|1993-09-23|1993-10-22|TAKE BACK RETURN|TRUCK|ests. furiously even depos| +17517|848289|48290|1|1|1237.24|0.10|0.05|N|O|1996-11-13|1997-01-08|1996-12-04|TAKE BACK RETURN|FOB|uriously fluffi| +17517|192938|42939|2|15|30463.95|0.06|0.08|N|O|1996-12-05|1996-12-09|1996-12-09|TAKE BACK RETURN|REG AIR|nts. fluffily regular| +17517|707042|32071|3|12|12588.12|0.08|0.07|N|O|1996-12-24|1997-01-12|1997-01-02|DELIVER IN PERSON|MAIL|fily ironic theodolites. quick| +17517|248408|10913|4|26|35266.14|0.09|0.02|N|O|1996-12-04|1996-12-29|1996-12-31|COLLECT COD|AIR|lithely even | +17517|992546|17585|5|14|22939.00|0.10|0.01|N|O|1996-11-29|1997-01-15|1996-12-03|DELIVER IN PERSON|SHIP|uests. carefully regular sauternes af| +17517|712069|37098|6|39|42160.17|0.04|0.06|N|O|1997-01-03|1996-12-17|1997-01-12|DELIVER IN PERSON|REG AIR|kages are slyly. slyly ir| +17518|558382|20894|1|1|1440.36|0.08|0.00|A|F|1992-11-07|1992-10-29|1992-11-25|NONE|AIR|ntegrate after the request| +17518|716712|41741|2|38|65689.84|0.08|0.00|A|F|1992-10-03|1992-11-06|1992-11-02|NONE|AIR| even platelets sleep carefully pending p| +17518|776991|2022|3|40|82718.40|0.05|0.03|A|F|1992-10-03|1992-11-02|1992-10-26|NONE|SHIP| packages. pending | +17518|879055|41573|4|39|40326.39|0.03|0.08|R|F|1992-12-01|1992-10-09|1992-12-11|DELIVER IN PERSON|MAIL|regular foxes are carefu| +17518|272186|9702|5|1|1158.17|0.09|0.08|R|F|1992-11-28|1992-11-02|1992-12-23|TAKE BACK RETURN|RAIL| pinto beans wa| +17519|595677|8189|1|32|56724.80|0.10|0.02|N|O|1998-02-03|1998-01-22|1998-02-08|TAKE BACK RETURN|SHIP|s. final account| +17519|536637|49148|2|27|45187.47|0.03|0.07|N|O|1997-12-08|1998-01-23|1997-12-12|COLLECT COD|SHIP|t above the s| +17519|250398|25409|3|7|9438.66|0.02|0.01|N|O|1998-01-13|1997-12-16|1998-02-08|TAKE BACK RETURN|RAIL| unusual foxes mold furio| +17519|438543|38544|4|4|5926.08|0.00|0.04|N|O|1997-12-29|1997-12-06|1998-01-02|COLLECT COD|FOB|ng the quickly unusual packages. regul| +17519|581237|31238|5|31|40864.51|0.08|0.02|N|O|1997-12-13|1997-12-31|1998-01-08|TAKE BACK RETURN|MAIL|inal pinto beans use fluffi| +17544|38561|1062|1|49|73478.44|0.08|0.07|A|F|1994-12-20|1995-02-09|1994-12-25|TAKE BACK RETURN|FOB|yly furiously bo| +17544|78723|41225|2|20|34034.40|0.00|0.00|A|F|1995-01-21|1995-01-16|1995-02-14|COLLECT COD|RAIL|y special packages. finally regular dep| +17544|93492|18495|3|39|57934.11|0.03|0.07|R|F|1995-03-08|1995-02-04|1995-03-27|TAKE BACK RETURN|RAIL|lly slyly regular accounts. requests w| +17544|318588|43601|4|12|19278.84|0.07|0.08|R|F|1995-02-08|1995-02-07|1995-03-04|NONE|MAIL|xcuses. carefully special platelets are qui| +17545|922086|47123|1|14|15512.56|0.03|0.04|A|F|1992-06-28|1992-05-30|1992-07-08|COLLECT COD|FOB|ackages sleep slyly sp| +17545|487975|12994|2|22|43184.90|0.03|0.03|R|F|1992-05-02|1992-05-26|1992-05-13|COLLECT COD|SHIP|fully final requests. pending,| +17545|387454|24976|3|43|66281.92|0.02|0.02|R|F|1992-03-27|1992-04-18|1992-03-28|DELIVER IN PERSON|TRUCK|against the carefully fina| +17545|932061|19616|4|5|5465.10|0.08|0.06|A|F|1992-05-24|1992-06-03|1992-05-31|DELIVER IN PERSON|RAIL|sleep blithely. accounts wake blithely | +17546|245640|33153|1|48|76110.24|0.01|0.08|A|F|1994-04-02|1994-02-25|1994-04-07|TAKE BACK RETURN|TRUCK|idle accounts. blithely exp| +17546|462370|24880|2|13|17320.55|0.10|0.01|R|F|1994-01-11|1994-02-25|1994-02-02|COLLECT COD|REG AIR|ounts wake accor| +17546|47919|47920|3|45|84010.95|0.04|0.06|A|F|1994-04-11|1994-02-20|1994-04-21|COLLECT COD|TRUCK|fully unusua| +17547|145918|20923|1|6|11783.46|0.01|0.07|R|F|1993-10-31|1993-12-04|1993-11-12|COLLECT COD|RAIL|ach carefully | +17547|440071|40072|2|8|8088.40|0.09|0.06|A|F|1993-11-14|1993-12-07|1993-11-27|NONE|REG AIR|ns. blithel| +17547|271364|46375|3|2|2670.70|0.05|0.08|R|F|1993-11-24|1993-12-03|1993-12-13|COLLECT COD|TRUCK| platelets. furiously regular theod| +17548|593247|18270|1|27|36185.94|0.03|0.00|N|O|1997-10-14|1997-08-07|1997-11-05|COLLECT COD|RAIL|ully unusual asymptotes. ins| +17548|694713|7227|2|23|39276.64|0.04|0.07|N|O|1997-10-16|1997-08-28|1997-11-03|COLLECT COD|SHIP| escapades alongside of the | +17548|39898|27399|3|29|53298.81|0.02|0.06|N|O|1997-06-30|1997-09-13|1997-07-26|NONE|SHIP|gle quickly. quickly even instru| +17548|553457|3458|4|44|66458.92|0.00|0.02|N|O|1997-07-07|1997-09-07|1997-07-10|DELIVER IN PERSON|FOB|p slyly. carefully eve| +17548|950494|495|5|33|50966.85|0.05|0.04|N|O|1997-07-01|1997-08-04|1997-07-16|DELIVER IN PERSON|FOB|inal dugouts nag always according to | +17548|942965|42966|6|38|76300.96|0.01|0.02|N|O|1997-09-12|1997-08-06|1997-09-28|NONE|AIR|ven theodolites. carefu| +17548|404035|16544|7|45|42255.45|0.07|0.06|N|O|1997-07-10|1997-08-20|1997-07-31|DELIVER IN PERSON|REG AIR|uctions. carefully enticing pinto | +17549|614756|27269|1|3|5012.16|0.09|0.00|N|O|1997-05-28|1997-08-16|1997-05-29|DELIVER IN PERSON|MAIL|uickly final requests: unusual gi| +17550|294154|19165|1|21|24110.94|0.02|0.04|A|F|1992-08-16|1992-08-14|1992-08-21|TAKE BACK RETURN|TRUCK|lose. quickly regular| +17550|838572|38573|2|8|12084.24|0.00|0.08|A|F|1992-06-14|1992-07-31|1992-06-18|NONE|TRUCK|he excuses. fluffily i| +17550|869134|31652|3|3|3309.27|0.00|0.05|R|F|1992-07-13|1992-08-25|1992-08-06|DELIVER IN PERSON|REG AIR|s. even, pending ideas are slyly am| +17551|852960|27995|1|39|74603.88|0.04|0.04|N|O|1997-07-20|1997-08-02|1997-07-29|DELIVER IN PERSON|SHIP|ly final forges wake| +17551|689372|39373|2|17|23142.78|0.08|0.01|N|O|1997-08-27|1997-08-02|1997-09-12|TAKE BACK RETURN|MAIL| requests use | +17551|259218|46734|3|5|5886.00|0.02|0.05|N|O|1997-08-10|1997-07-19|1997-08-12|NONE|TRUCK| packages cajole. blith| +17551|661430|36457|4|10|13914.00|0.01|0.06|N|O|1997-07-10|1997-07-05|1997-07-23|DELIVER IN PERSON|FOB|ckly according to the ironic somas.| +17551|649404|11917|5|22|29774.14|0.10|0.08|N|O|1997-08-02|1997-07-08|1997-08-10|TAKE BACK RETURN|FOB|s. regular deposits haggle across | +17551|518297|5828|6|35|46034.45|0.05|0.06|N|O|1997-05-15|1997-07-22|1997-05-17|NONE|AIR|pending deposits. | +17576|733324|45839|1|15|20359.35|0.01|0.01|A|F|1992-08-22|1992-09-04|1992-08-26|DELIVER IN PERSON|FOB|longside of the platelets| +17576|964346|14347|2|24|33847.20|0.03|0.06|A|F|1992-10-26|1992-08-30|1992-11-20|COLLECT COD|REG AIR| regular asymptotes across the flu| +17576|751874|39420|3|30|57775.20|0.04|0.03|A|F|1992-09-29|1992-09-21|1992-10-23|TAKE BACK RETURN|FOB|kages solve accordin| +17576|735803|48318|4|38|69873.26|0.08|0.00|A|F|1992-09-20|1992-09-21|1992-10-05|COLLECT COD|FOB|instructions after t| +17577|806375|6376|1|19|24345.27|0.06|0.02|R|F|1993-04-17|1993-04-26|1993-05-10|NONE|REG AIR|ccounts above the regular ideas beli| +17577|729185|29186|2|7|8499.05|0.01|0.08|R|F|1993-04-11|1993-03-23|1993-04-24|COLLECT COD|FOB|eodolites impress fluffily above the e| +17577|408099|45624|3|39|39275.73|0.08|0.00|R|F|1993-05-07|1993-05-06|1993-05-10|NONE|MAIL| haggle furiously. slyly bold theodo| +17577|919699|7254|4|27|46403.55|0.00|0.07|R|F|1993-06-07|1993-04-09|1993-06-12|NONE|FOB|oxes are carefully. carefully | +17577|372010|34518|5|5|5410.00|0.02|0.08|A|F|1993-05-19|1993-03-13|1993-06-10|NONE|MAIL| final foxes cajole furiou| +17577|359106|46628|6|19|22136.71|0.06|0.07|R|F|1993-04-03|1993-04-13|1993-04-09|COLLECT COD|REG AIR|ly final tithes. deposits| +17578|981047|6086|1|2|2256.00|0.10|0.03|A|F|1993-10-25|1993-09-25|1993-11-24|COLLECT COD|AIR|ully special | +17578|449248|49249|2|48|57466.56|0.08|0.03|A|F|1993-08-21|1993-09-07|1993-08-29|DELIVER IN PERSON|RAIL|believe. never regular requests are ar| +17578|509466|34487|3|3|4426.32|0.08|0.04|A|F|1993-09-21|1993-09-09|1993-09-28|TAKE BACK RETURN|MAIL|nal deposits g| +17579|787175|37176|1|33|41650.62|0.04|0.01|N|O|1998-07-14|1998-08-16|1998-07-30|DELIVER IN PERSON|MAIL|ckages boost | +17579|45359|7860|2|30|39130.50|0.02|0.01|N|O|1998-10-16|1998-09-18|1998-10-26|TAKE BACK RETURN|AIR|ly regular requests. carefully even pac| +17579|337798|25317|3|24|44058.72|0.02|0.06|N|O|1998-09-29|1998-09-04|1998-10-20|NONE|MAIL|refully slyly unusual accoun| +17579|357815|7816|4|30|56184.00|0.10|0.06|N|O|1998-09-29|1998-10-09|1998-10-11|COLLECT COD|FOB|furiously quickly daring packages. furiou| +17579|785012|35013|5|18|19745.64|0.04|0.07|N|O|1998-09-28|1998-08-11|1998-10-01|TAKE BACK RETURN|TRUCK|affix regular package| +17580|694577|7091|1|30|47146.20|0.08|0.08|R|F|1994-08-03|1994-05-30|1994-08-21|DELIVER IN PERSON|FOB|ake fluffily furiously even | +17580|753087|3088|2|44|50162.20|0.03|0.03|R|F|1994-04-18|1994-06-05|1994-04-23|NONE|SHIP|riously blithely even accounts. fluffily | +17580|132527|45030|3|26|40547.52|0.04|0.03|A|F|1994-06-09|1994-06-02|1994-07-07|TAKE BACK RETURN|FOB|furiously u| +17580|364586|39601|4|32|52818.24|0.06|0.05|A|F|1994-06-27|1994-05-22|1994-07-19|DELIVER IN PERSON|AIR| regular excuses wake| +17580|584968|34969|5|44|90329.36|0.02|0.05|A|F|1994-05-12|1994-05-15|1994-06-01|DELIVER IN PERSON|AIR|yly final requests. slyly final pat| +17581|88471|25975|1|15|21892.05|0.00|0.07|N|O|1998-03-23|1998-03-05|1998-04-07|DELIVER IN PERSON|FOB|es sleep furiously even acc| +17582|109881|47388|1|32|60508.16|0.07|0.05|N|O|1997-02-23|1997-03-16|1997-02-24|NONE|MAIL|e above the carefully special package| +17582|753606|41152|2|26|43148.82|0.05|0.08|N|O|1997-03-21|1997-03-02|1997-04-16|COLLECT COD|REG AIR|xes are slyly regular t| +17582|840364|40365|3|4|5217.28|0.02|0.07|N|O|1997-02-06|1997-02-08|1997-02-13|TAKE BACK RETURN|REG AIR|ounts. even, regular requests sleep care| +17582|990732|28290|4|3|5468.07|0.00|0.04|N|O|1997-01-29|1997-02-20|1997-02-23|NONE|AIR|iously silent pac| +17582|223391|48400|5|9|11829.42|0.05|0.08|N|O|1997-04-21|1997-03-17|1997-05-15|TAKE BACK RETURN|AIR|ly bold requests. foxes sl| +17582|525616|38127|6|21|34473.39|0.00|0.07|N|O|1997-04-12|1997-02-22|1997-04-30|TAKE BACK RETURN|FOB|equests wake furiously alongside| +17582|19053|6554|7|14|13608.70|0.01|0.05|N|O|1997-03-19|1997-02-07|1997-03-26|TAKE BACK RETURN|AIR|. blithely final packages ru| +17583|210037|35046|1|48|45456.96|0.00|0.04|A|F|1995-04-16|1995-04-10|1995-05-11|DELIVER IN PERSON|MAIL|thely regular accounts. special, exp| +17583|80075|42577|2|21|22156.47|0.07|0.06|A|F|1995-05-30|1995-03-28|1995-06-02|DELIVER IN PERSON|RAIL|ctions use quickly blithely | +17583|809224|21741|3|44|49859.92|0.07|0.06|A|F|1995-05-26|1995-03-09|1995-05-27|TAKE BACK RETURN|RAIL|l pains above the f| +17608|420995|8520|1|29|55563.13|0.02|0.02|A|F|1992-04-07|1992-03-07|1992-04-13|COLLECT COD|MAIL|s sleep furiously; | +17608|651798|14312|2|13|22746.88|0.05|0.08|R|F|1992-04-20|1992-03-31|1992-05-13|COLLECT COD|REG AIR|even pinto beans above the special, unusu| +17608|752440|14956|3|41|61188.81|0.09|0.04|A|F|1992-03-02|1992-05-02|1992-03-26|DELIVER IN PERSON|AIR|. furiously bold warthogs above the pen| +17609|755083|42629|1|6|6828.30|0.01|0.05|N|O|1997-10-04|1997-08-27|1997-10-07|DELIVER IN PERSON|REG AIR|s alongside of the furiousl| +17610|133469|20976|1|16|24039.36|0.04|0.07|R|F|1994-01-06|1994-01-12|1994-01-13|COLLECT COD|AIR|nic accounts serve| +17610|198982|11486|2|19|39538.62|0.07|0.08|A|F|1993-12-07|1994-01-20|1993-12-13|TAKE BACK RETURN|FOB|. special, express foxes wake blith| +17610|284855|34856|3|23|42316.32|0.10|0.01|R|F|1993-11-15|1993-12-22|1993-12-15|DELIVER IN PERSON|TRUCK|uickly final foxes. nev| +17610|546158|8669|4|17|20470.21|0.05|0.02|R|F|1994-01-29|1993-12-31|1994-02-01|COLLECT COD|AIR|thely above the waters? r| +17610|265284|27790|5|16|19988.32|0.00|0.00|A|F|1993-12-01|1993-12-30|1993-12-06|NONE|AIR|ffily express gift| +17610|623643|23644|6|38|59531.18|0.10|0.02|R|F|1994-03-12|1993-12-16|1994-03-15|TAKE BACK RETURN|REG AIR|lly slyly ironic instruc| +17611|102040|14543|1|13|13546.52|0.04|0.05|N|O|1996-06-15|1996-05-21|1996-06-25|DELIVER IN PERSON|AIR|al accounts run quickly according to the| +17611|979946|29947|2|26|52673.40|0.06|0.04|N|O|1996-05-01|1996-04-25|1996-05-18|DELIVER IN PERSON|SHIP| idly pending | +17611|949183|11702|3|16|19714.24|0.09|0.08|N|O|1996-06-25|1996-05-07|1996-07-24|COLLECT COD|SHIP|nto beans cajole under the quickly | +17611|907400|7401|4|13|18295.68|0.00|0.02|N|O|1996-04-19|1996-05-24|1996-05-13|COLLECT COD|AIR|lyly even requests hagg| +17611|658478|46018|5|32|45966.08|0.08|0.07|N|O|1996-04-25|1996-04-12|1996-05-23|COLLECT COD|REG AIR|eposits are slyly-- | +17611|27429|14930|6|20|27128.40|0.10|0.08|N|O|1996-05-12|1996-04-24|1996-06-01|DELIVER IN PERSON|FOB|instructions. blithely express depende| +17611|982479|44999|7|5|7807.15|0.03|0.05|N|O|1996-06-07|1996-05-13|1996-06-18|NONE|AIR|even ideas boost| +17612|514676|2207|1|17|28741.05|0.09|0.05|R|F|1994-06-30|1994-04-29|1994-07-25|TAKE BACK RETURN|REG AIR|ts about the carefully| +17612|158832|46342|2|2|3781.66|0.08|0.06|R|F|1994-06-09|1994-06-25|1994-06-27|DELIVER IN PERSON|SHIP| deposits sle| +17612|481249|6268|3|7|8611.54|0.09|0.01|A|F|1994-05-31|1994-06-22|1994-06-13|DELIVER IN PERSON|REG AIR|al deposits sleep furiously.| +17612|342124|4631|4|41|47810.51|0.03|0.03|A|F|1994-05-04|1994-05-08|1994-05-17|TAKE BACK RETURN|RAIL|tes. ironic packages sleep carefully entic| +17612|74075|24076|5|17|17834.19|0.08|0.05|A|F|1994-07-09|1994-05-21|1994-07-10|COLLECT COD|AIR|side of the ironically expre| +17612|972216|9774|6|39|50238.63|0.09|0.03|R|F|1994-05-20|1994-06-05|1994-05-22|NONE|AIR|deas cajole | +17612|30287|17788|7|40|48691.20|0.06|0.07|R|F|1994-05-18|1994-05-30|1994-05-21|COLLECT COD|TRUCK|refully after the final accounts. bold| +17613|25093|12594|1|26|26470.34|0.09|0.07|N|O|1996-08-23|1996-10-18|1996-09-14|COLLECT COD|FOB| the slyly | +17613|724847|24848|2|28|52410.68|0.04|0.03|N|O|1996-09-18|1996-08-30|1996-10-17|TAKE BACK RETURN|FOB|ns haggle quickly furiously regula| +17613|498630|36158|3|3|4885.83|0.03|0.00|N|O|1996-09-21|1996-10-10|1996-10-15|NONE|SHIP|eposits nag sly| +17613|459119|9120|4|6|6468.54|0.04|0.06|N|O|1996-09-28|1996-10-06|1996-10-03|COLLECT COD|AIR|y ironic acc| +17614|790072|40073|1|43|49967.72|0.01|0.07|N|O|1997-12-13|1998-01-29|1997-12-29|NONE|RAIL|latelets are quickly blit| +17614|732216|32217|2|36|44934.48|0.01|0.01|N|O|1998-02-15|1998-01-05|1998-03-05|TAKE BACK RETURN|REG AIR|usly from t| +17614|344075|31594|3|4|4476.24|0.05|0.05|N|O|1998-02-23|1998-01-13|1998-03-06|TAKE BACK RETURN|MAIL|ly express foxes wak| +17614|860920|35955|4|1|1880.88|0.07|0.00|N|O|1998-01-01|1998-01-02|1998-01-15|COLLECT COD|AIR|d doubt final, unusual deposits. iro| +17615|324426|11945|1|13|18855.33|0.10|0.05|N|O|1996-09-28|1996-12-02|1996-10-06|TAKE BACK RETURN|SHIP|blithely even instr| +17640|831976|19525|1|19|36250.67|0.04|0.06|A|F|1993-07-03|1993-08-28|1993-07-13|NONE|REG AIR|efully qui| +17640|18271|18272|2|7|8324.89|0.09|0.01|R|F|1993-10-07|1993-08-19|1993-10-23|NONE|FOB|into beans. slyl| +17640|77538|15042|3|31|46981.43|0.02|0.00|A|F|1993-08-04|1993-09-21|1993-08-16|COLLECT COD|MAIL|equests. bold | +17640|170789|45796|4|31|57653.18|0.10|0.01|R|F|1993-10-10|1993-09-20|1993-10-24|TAKE BACK RETURN|TRUCK|sual excuses boost furiously of | +17640|435082|35083|5|47|47801.82|0.08|0.05|R|F|1993-10-13|1993-09-19|1993-10-18|COLLECT COD|MAIL|equests: slyly bold theodolit| +17641|753750|41296|1|14|25252.08|0.04|0.03|N|O|1997-03-11|1997-03-01|1997-03-27|DELIVER IN PERSON|RAIL|deposits. ex| +17641|263838|26344|2|4|7207.28|0.02|0.03|N|O|1997-04-30|1997-04-26|1997-05-09|DELIVER IN PERSON|FOB|f the quickly final requests detect fur| +17641|324519|49532|3|8|12348.00|0.06|0.00|N|O|1997-05-13|1997-04-02|1997-05-29|COLLECT COD|SHIP|side of the | +17642|680709|43223|1|18|30414.06|0.01|0.04|A|F|1995-05-27|1995-04-03|1995-06-11|TAKE BACK RETURN|AIR|uffily iro| +17642|663126|13127|2|40|43563.60|0.10|0.05|R|F|1995-04-25|1995-05-07|1995-05-14|DELIVER IN PERSON|FOB|l accounts nag busily reque| +17642|147249|9752|3|36|46664.64|0.05|0.07|R|F|1995-04-05|1995-05-24|1995-04-18|COLLECT COD|TRUCK|refully. fluffily bo| +17642|804751|29784|4|30|49671.30|0.08|0.03|A|F|1995-04-03|1995-05-25|1995-04-15|NONE|FOB| express packages nag. packages | +17642|443989|31514|5|24|46391.04|0.08|0.02|N|O|1995-06-20|1995-05-25|1995-06-29|COLLECT COD|RAIL| haggle final asymptotes. quickly| +17643|78683|16187|1|48|79760.64|0.10|0.01|N|O|1996-01-26|1995-12-17|1996-02-02|NONE|SHIP|o beans. furiously| +17643|415040|15041|2|9|8595.18|0.02|0.02|N|O|1995-11-04|1995-12-06|1995-11-30|TAKE BACK RETURN|FOB|the ironic gifts| +17643|570809|20810|3|16|30076.48|0.03|0.04|N|O|1995-12-02|1995-12-08|1995-12-22|DELIVER IN PERSON|RAIL|tly. carefully| +17643|582825|20359|4|3|5723.40|0.07|0.04|N|O|1995-10-16|1995-12-06|1995-10-21|DELIVER IN PERSON|TRUCK|ly regular pack| +17643|524995|16|5|15|30299.55|0.05|0.03|N|O|1996-01-05|1995-12-28|1996-01-13|DELIVER IN PERSON|REG AIR|fully bold deposits| +17644|284285|34286|1|43|54578.61|0.08|0.08|N|O|1995-10-07|1995-11-18|1995-10-18|COLLECT COD|MAIL|s haggle outside the special realms! carefu| +17644|962878|12879|2|16|31053.28|0.08|0.08|N|O|1995-11-08|1995-11-27|1995-12-02|DELIVER IN PERSON|SHIP|arefully final foxe| +17644|85232|47734|3|22|26779.06|0.05|0.01|N|O|1995-11-06|1995-10-18|1995-12-02|TAKE BACK RETURN|FOB|efully: regular| +17644|485090|35091|4|29|31177.03|0.05|0.05|N|O|1995-12-13|1995-10-30|1996-01-01|DELIVER IN PERSON|FOB|, special | +17644|891717|4235|5|36|61512.12|0.02|0.03|N|O|1995-10-01|1995-10-13|1995-10-17|TAKE BACK RETURN|REG AIR|en requests are carefully along the care| +17644|78570|41072|6|15|23228.55|0.10|0.03|N|O|1995-09-16|1995-11-19|1995-10-05|NONE|AIR| slyly regular requests are al| +17644|521716|46737|7|30|52130.70|0.01|0.00|N|O|1995-09-25|1995-10-31|1995-10-16|COLLECT COD|SHIP|ously final asymptotes af| +17645|475253|25254|1|4|4912.92|0.05|0.07|N|O|1997-11-18|1997-11-13|1997-11-26|TAKE BACK RETURN|MAIL|thin pinto beans are slyly? sil| +17645|565700|40723|2|33|58267.44|0.05|0.07|N|O|1997-11-15|1997-10-24|1997-11-29|TAKE BACK RETURN|FOB|gainst the sl| +17645|719681|32196|3|33|56121.45|0.08|0.07|N|O|1997-09-07|1997-11-20|1997-09-16|TAKE BACK RETURN|RAIL|tes nag blithely silent asymptotes| +17646|415918|40935|1|4|7335.56|0.03|0.04|N|O|1998-08-07|1998-07-13|1998-08-31|DELIVER IN PERSON|REG AIR|asymptotes across the packages affix fi| +17646|318475|43488|2|28|41816.88|0.01|0.08|N|O|1998-07-19|1998-08-22|1998-07-23|NONE|TRUCK|s thrash furious| +17646|603139|3140|3|49|51062.90|0.07|0.08|N|O|1998-09-12|1998-07-22|1998-09-24|TAKE BACK RETURN|FOB|ages boost fluffily carefully | +17647|767710|5256|1|10|17776.80|0.08|0.02|A|F|1993-01-16|1993-03-03|1993-01-27|COLLECT COD|FOB|regular Tiresias along the pending, fin| +17647|887651|37652|2|7|11470.27|0.04|0.00|A|F|1993-02-11|1993-02-02|1993-02-13|COLLECT COD|RAIL|nal foxes after| +17647|743206|5721|3|10|12491.70|0.01|0.03|R|F|1993-02-17|1993-03-29|1993-03-17|TAKE BACK RETURN|SHIP|lent deposits use slyly according to th| +17647|58340|8341|4|46|59723.64|0.01|0.04|R|F|1993-01-24|1993-04-03|1993-01-30|NONE|AIR|ecial, pending instruct| +17647|519301|31812|5|23|30366.44|0.08|0.03|R|F|1993-02-10|1993-03-23|1993-03-05|NONE|FOB|inal packages sleep am| +17672|729606|42121|1|42|68693.94|0.01|0.07|A|F|1992-02-05|1992-03-28|1992-02-25|TAKE BACK RETURN|REG AIR| ruthless e| +17672|472446|34956|2|8|11347.36|0.06|0.03|R|F|1992-02-16|1992-03-13|1992-03-02|NONE|FOB|sits wake | +17672|399562|24577|3|6|9969.30|0.09|0.04|A|F|1992-04-26|1992-04-16|1992-05-10|TAKE BACK RETURN|MAIL|s the ironic accounts. furiously pend| +17673|519361|6892|1|21|28987.14|0.03|0.07|R|F|1995-02-19|1995-03-18|1995-03-11|COLLECT COD|RAIL|blithely depo| +17673|884312|9347|2|43|55739.61|0.07|0.04|A|F|1995-04-13|1995-03-21|1995-04-24|TAKE BACK RETURN|TRUCK| express, final accounts| +17673|618332|5869|3|38|47511.40|0.00|0.00|R|F|1995-01-24|1995-02-28|1995-01-29|NONE|RAIL|dly after the asymptotes. furiously | +17673|300505|506|4|15|22582.35|0.02|0.04|R|F|1995-03-11|1995-04-06|1995-04-01|COLLECT COD|FOB|d, regular requests cajole aft| +17673|585694|48206|5|9|16017.03|0.09|0.01|A|F|1995-04-29|1995-03-08|1995-05-03|DELIVER IN PERSON|AIR|arefully express account| +17674|7773|7774|1|29|48742.33|0.09|0.07|N|O|1998-10-19|1998-09-27|1998-10-23|COLLECT COD|REG AIR|equests use| +17674|627284|27285|2|26|31492.50|0.00|0.06|N|O|1998-09-01|1998-10-16|1998-09-28|COLLECT COD|SHIP| accounts are slyly along the flu| +17674|762126|49672|3|32|38018.88|0.07|0.04|N|O|1998-11-22|1998-09-18|1998-11-30|TAKE BACK RETURN|MAIL|ly unusual instructi| +17674|38159|660|4|4|4388.60|0.02|0.04|N|O|1998-11-04|1998-09-25|1998-11-05|COLLECT COD|FOB|deas sleep carefully according to the iro| +17675|788156|25702|1|34|42300.08|0.04|0.08|N|O|1996-11-14|1996-10-18|1996-12-14|NONE|RAIL|y quickly silent deposits. final, | +17675|532975|32976|2|29|58230.55|0.05|0.05|N|O|1996-08-26|1996-10-03|1996-08-27|COLLECT COD|REG AIR|ans. slyly ironic| +17675|707634|45177|3|22|36115.20|0.02|0.07|N|O|1996-10-29|1996-09-17|1996-11-07|TAKE BACK RETURN|REG AIR|rs. foxes above th| +17675|199950|49951|4|33|67648.35|0.03|0.05|N|O|1996-10-16|1996-11-02|1996-11-13|TAKE BACK RETURN|MAIL|ven excuses use whithout the id| +17675|551682|1683|5|39|67612.74|0.08|0.03|N|O|1996-11-07|1996-10-06|1996-11-22|COLLECT COD|AIR|sleep beyond the ironic excuses. quic| +17675|103453|15956|6|3|4369.35|0.09|0.00|N|O|1996-10-12|1996-10-08|1996-11-05|DELIVER IN PERSON|MAIL|requests. accounts use instructio| +17675|725675|38190|7|23|39114.72|0.03|0.05|N|O|1996-12-01|1996-11-05|1996-12-05|COLLECT COD|AIR|packages are furiously at the pend| +17676|411441|36458|1|47|63563.74|0.04|0.07|R|F|1994-07-14|1994-07-21|1994-07-16|DELIVER IN PERSON|MAIL|ng courts. carefully pending pinto | +17676|80496|18000|2|43|63489.07|0.10|0.02|A|F|1994-08-09|1994-08-15|1994-08-29|NONE|FOB|aggle care| +17676|888292|38293|3|33|42248.25|0.10|0.03|A|F|1994-06-29|1994-07-29|1994-07-15|NONE|TRUCK|its integrate. final orbit| +17676|521142|21143|4|44|51177.28|0.02|0.04|A|F|1994-06-24|1994-07-30|1994-06-25|COLLECT COD|AIR|nag across the quick| +17676|824064|36581|5|32|31616.64|0.00|0.00|A|F|1994-06-14|1994-06-20|1994-07-05|DELIVER IN PERSON|TRUCK|fully final accounts. fl| +17676|32260|32261|6|38|45305.88|0.05|0.08|A|F|1994-07-23|1994-08-17|1994-08-19|DELIVER IN PERSON|RAIL|ages. fluffily regular excuses | +17676|193747|6251|7|29|53381.46|0.00|0.06|R|F|1994-06-05|1994-08-07|1994-06-21|NONE|MAIL|uffily ironic foxes hagg| +17677|289416|1922|1|44|61837.60|0.02|0.07|A|F|1995-01-11|1995-01-23|1995-02-09|TAKE BACK RETURN|TRUCK|players. pending, regular platelets eat | +17677|212833|25338|2|20|34916.40|0.03|0.00|R|F|1994-11-28|1994-12-24|1994-12-12|NONE|MAIL|ide of the furiously i| +17677|71819|9323|3|13|23280.53|0.07|0.04|R|F|1994-11-17|1994-12-28|1994-11-27|COLLECT COD|RAIL|tes. blithely bold account| +17678|375121|37629|1|8|9568.88|0.04|0.04|A|F|1994-05-12|1994-07-12|1994-05-18|COLLECT COD|MAIL|oze over the special courts. sly| +17678|657418|7419|2|38|52264.44|0.07|0.05|A|F|1994-05-24|1994-06-30|1994-06-12|NONE|REG AIR|hily final deposits a| +17678|209454|21959|3|24|32722.56|0.03|0.04|A|F|1994-05-20|1994-07-09|1994-06-06|TAKE BACK RETURN|REG AIR|c ideas nag qui| +17678|293263|18274|4|24|30150.00|0.00|0.08|A|F|1994-05-20|1994-06-19|1994-05-28|DELIVER IN PERSON|SHIP|final deposits. bold requests cajole r| +17678|857453|7454|5|16|22566.56|0.04|0.05|A|F|1994-05-05|1994-06-01|1994-05-14|DELIVER IN PERSON|FOB|en packages. bold fray| +17678|208137|8138|6|27|28218.24|0.10|0.03|A|F|1994-04-17|1994-07-13|1994-04-30|TAKE BACK RETURN|FOB|ccounts. furious| +17678|155289|30296|7|41|55115.48|0.08|0.04|A|F|1994-05-11|1994-06-29|1994-05-23|TAKE BACK RETURN|FOB|ely against the special, regular Tiresi| +17679|939938|39939|1|48|94938.72|0.00|0.04|N|O|1997-02-21|1997-04-16|1997-03-17|COLLECT COD|MAIL| bold foxes use. carefully final frets sle| +17679|525169|37680|2|12|14329.68|0.04|0.03|N|O|1997-03-21|1997-04-10|1997-03-30|NONE|SHIP|n packages. fluffily express fox| +17679|504776|29797|3|48|85476.00|0.04|0.03|N|O|1997-02-24|1997-04-06|1997-03-12|TAKE BACK RETURN|REG AIR|f the careful| +17679|754271|41817|4|10|13252.40|0.00|0.06|N|O|1997-04-07|1997-04-29|1997-04-10|COLLECT COD|MAIL|lyly silent du| +17679|31313|18814|5|12|14931.72|0.08|0.02|N|O|1997-02-15|1997-03-11|1997-02-21|TAKE BACK RETURN|SHIP| permanently pending pinto beans; re| +17679|268611|18612|6|1|1579.60|0.05|0.02|N|O|1997-03-23|1997-03-06|1997-04-03|TAKE BACK RETURN|RAIL|usly ironic, final dep| +17704|725204|25205|1|50|61458.50|0.06|0.00|R|F|1995-04-11|1995-03-29|1995-05-09|DELIVER IN PERSON|SHIP|y. regular asymptotes boost | +17704|490130|2640|2|14|15681.54|0.05|0.00|A|F|1995-02-28|1995-03-20|1995-03-06|DELIVER IN PERSON|MAIL|s ideas. requests are blithely re| +17705|879293|29294|1|29|36895.25|0.10|0.08|A|F|1992-02-25|1992-04-22|1992-03-19|NONE|FOB|ackages? quick dependencies affix| +17705|264668|14669|2|10|16326.50|0.05|0.04|R|F|1992-05-18|1992-03-20|1992-05-28|COLLECT COD|MAIL|. quickly even depe| +17705|262297|49813|3|33|41556.24|0.04|0.01|R|F|1992-03-07|1992-04-12|1992-03-22|COLLECT COD|SHIP|foxes. regular foxes run furio| +17705|416357|16358|4|44|56026.52|0.04|0.06|R|F|1992-03-23|1992-04-26|1992-04-08|NONE|TRUCK|tegrate regularly blithely unusual wat| +17705|704775|42318|5|12|21356.88|0.07|0.02|R|F|1992-05-20|1992-04-09|1992-06-12|DELIVER IN PERSON|SHIP|es. furiously final instructions wake b| +17705|152993|28000|6|20|40919.80|0.09|0.06|A|F|1992-06-02|1992-03-11|1992-06-14|COLLECT COD|REG AIR|ongside of the ironic pinto beans.| +17706|402702|27719|1|18|28884.24|0.02|0.08|N|O|1997-05-10|1997-04-07|1997-05-11|DELIVER IN PERSON|REG AIR|across the| +17706|196982|21989|2|5|10394.90|0.03|0.08|N|O|1997-05-04|1997-04-14|1997-05-25|NONE|SHIP|foxes. express | +17706|671037|8577|3|27|27216.00|0.09|0.06|N|O|1997-05-19|1997-06-02|1997-06-02|COLLECT COD|MAIL|ing, regular deposits. expres| +17707|658475|20989|1|31|44436.64|0.04|0.04|N|O|1997-03-31|1997-02-18|1997-04-13|NONE|AIR| ironic accounts haggle carefully| +17707|987804|324|2|18|34051.68|0.09|0.07|N|O|1997-03-09|1997-02-18|1997-03-28|TAKE BACK RETURN|SHIP|e slyly regular accounts | +17707|6658|31659|3|36|56327.40|0.08|0.08|N|O|1997-02-06|1997-03-22|1997-02-11|TAKE BACK RETURN|RAIL|bout the even instruct| +17708|887183|37184|1|12|14041.68|0.00|0.01|R|F|1994-03-30|1994-03-18|1994-04-03|COLLECT COD|REG AIR|aggle fluf| +17709|358116|45638|1|42|49312.20|0.06|0.01|N|O|1995-10-10|1995-08-11|1995-10-25|NONE|FOB|efully unusual deposits cajole re| +17710|734302|46817|1|35|46769.45|0.01|0.07|N|O|1996-04-06|1996-05-26|1996-04-20|TAKE BACK RETURN|SHIP|ular packages. carefully special pinto | +17711|896064|21099|1|35|37100.70|0.06|0.03|N|O|1995-09-23|1995-11-10|1995-10-02|COLLECT COD|MAIL|efully ironic ideas may wake ruthl| +17736|652500|15014|1|49|71171.03|0.07|0.02|N|O|1998-05-19|1998-04-24|1998-05-21|TAKE BACK RETURN|REG AIR|ial grouches| +17737|180118|5125|1|15|17971.65|0.06|0.07|N|O|1996-11-23|1996-11-26|1996-11-27|NONE|TRUCK|s nag furiously above the even accou| +17738|713427|38456|1|11|15844.29|0.07|0.06|R|F|1992-04-27|1992-04-08|1992-05-04|TAKE BACK RETURN|FOB|ely final accounts. furiously| +17738|561745|24257|2|29|52394.88|0.02|0.07|A|F|1992-05-25|1992-03-22|1992-06-14|DELIVER IN PERSON|RAIL|lly above the final, unusual theodolites| +17738|232185|7194|3|6|6703.02|0.06|0.02|A|F|1992-02-04|1992-04-02|1992-03-03|DELIVER IN PERSON|TRUCK|es. carefully regular deposits | +17739|499039|49040|1|12|12456.12|0.01|0.03|N|O|1996-08-06|1996-06-15|1996-08-26|NONE|RAIL|tructions. fluffily ironic packages| +17739|343545|6052|2|20|31770.60|0.08|0.07|N|O|1996-08-21|1996-07-03|1996-09-03|NONE|FOB| even ideas. slyly regular ideas haggle| +17739|954363|16883|3|43|60944.76|0.01|0.03|N|O|1996-07-31|1996-07-06|1996-08-18|COLLECT COD|AIR|thely blithely ironic accounts. careful| +17739|963666|1224|4|47|81292.14|0.05|0.08|N|O|1996-06-24|1996-07-16|1996-07-04|NONE|RAIL|egrate after the final epitaphs. slyly un| +17739|325688|38195|5|23|39414.41|0.00|0.07|N|O|1996-07-12|1996-07-15|1996-07-13|DELIVER IN PERSON|TRUCK|nusual dep| +17739|826625|26626|6|31|48098.98|0.08|0.04|N|O|1996-08-26|1996-07-14|1996-09-02|NONE|FOB| accounts. quickly regular ideas are| +17739|85673|35674|7|24|39808.08|0.01|0.03|N|O|1996-06-09|1996-07-03|1996-06-26|DELIVER IN PERSON|FOB|ly pending excuses. fluffily | +17740|905505|18024|1|32|48334.72|0.00|0.07|A|F|1994-10-08|1994-09-03|1994-10-19|NONE|FOB|s. carefully silent requests snooze qui| +17740|814789|27306|2|24|40889.76|0.02|0.05|A|F|1994-08-14|1994-08-14|1994-08-30|NONE|TRUCK|osits alongside of t| +17740|152703|40213|3|45|79006.50|0.08|0.08|A|F|1994-11-10|1994-08-23|1994-11-15|NONE|TRUCK|g the blithely final pa| +17740|471297|46316|4|39|49462.53|0.00|0.04|A|F|1994-07-22|1994-09-16|1994-08-11|COLLECT COD|FOB|unts nag idly | +17740|76060|13564|5|24|24865.44|0.05|0.01|A|F|1994-08-11|1994-10-07|1994-08-12|COLLECT COD|MAIL|es. carefully blithe accounts nag unusual| +17741|666054|28568|1|22|22440.44|0.09|0.06|N|O|1996-07-18|1996-08-31|1996-07-26|DELIVER IN PERSON|SHIP|e fluffily regular ide| +17741|358888|33903|2|19|36990.53|0.02|0.07|N|O|1996-11-06|1996-09-14|1996-12-01|TAKE BACK RETURN|REG AIR|uriously even accoun| +17741|814337|1886|3|16|20020.64|0.05|0.08|N|O|1996-08-15|1996-09-24|1996-09-14|TAKE BACK RETURN|AIR|final packages cajole slyly express, regul| +17741|550763|764|4|48|87059.52|0.00|0.05|N|O|1996-08-18|1996-09-17|1996-09-08|NONE|TRUCK|pinto beans according to the alway| +17742|527540|27541|1|45|70538.40|0.01|0.03|N|O|1998-06-17|1998-04-17|1998-06-27|NONE|RAIL|ages eat fl| +17742|353353|15861|2|48|67504.32|0.01|0.05|N|O|1998-06-08|1998-03-30|1998-06-24|NONE|RAIL|t the fluffily ironic theodolit| +17742|794088|19119|3|6|7092.30|0.06|0.07|N|O|1998-05-04|1998-04-13|1998-05-26|DELIVER IN PERSON|FOB|arefully special depths. regul| +17742|222089|9602|4|28|28309.96|0.04|0.00|N|O|1998-06-12|1998-03-25|1998-07-12|TAKE BACK RETURN|REG AIR| blithely. expr| +17742|648660|36197|5|14|22520.82|0.06|0.06|N|O|1998-04-24|1998-05-11|1998-04-29|COLLECT COD|REG AIR|ffily. even deposits cajo| +17742|18310|43311|6|35|42990.85|0.02|0.08|N|O|1998-04-02|1998-03-20|1998-04-10|TAKE BACK RETURN|SHIP|ctions sleep blithely ca| +17742|720169|45198|7|9|10702.17|0.00|0.06|N|O|1998-03-06|1998-05-19|1998-04-03|DELIVER IN PERSON|MAIL|furiously pending ideas. fur| +17743|870111|7663|1|39|42161.73|0.07|0.00|A|F|1995-03-28|1995-03-25|1995-03-30|TAKE BACK RETURN|RAIL|lar excuse| +17743|943693|6212|2|36|62519.40|0.08|0.00|A|F|1995-04-19|1995-04-05|1995-05-09|NONE|SHIP|furiously reg| +17743|632667|32668|3|32|51188.16|0.01|0.00|A|F|1995-05-01|1995-02-24|1995-05-23|NONE|AIR| ideas sleep| +17743|224890|49899|4|24|43557.12|0.01|0.01|R|F|1995-03-27|1995-02-17|1995-04-13|TAKE BACK RETURN|TRUCK|s! carefully dogged pinto beans| +17743|711498|24013|5|48|72454.08|0.00|0.05|A|F|1995-03-28|1995-03-22|1995-04-20|NONE|MAIL|he furiously reg| +17768|896615|34167|1|5|8057.85|0.09|0.06|N|O|1997-04-26|1997-05-20|1997-05-06|DELIVER IN PERSON|FOB|structions sleep carefully | +17768|400595|25612|2|48|71787.36|0.02|0.07|N|O|1997-06-23|1997-05-24|1997-07-19|NONE|TRUCK|r ideas: quic| +17768|797038|47039|3|47|53345.00|0.08|0.08|N|O|1997-06-26|1997-05-04|1997-07-23|TAKE BACK RETURN|RAIL|xpress depen| +17768|814606|2155|4|2|3041.12|0.09|0.07|N|O|1997-05-15|1997-06-01|1997-06-10|DELIVER IN PERSON|FOB|cajole carefully against the ironic, f| +17769|17326|29827|1|34|42272.88|0.10|0.04|N|O|1998-07-07|1998-05-25|1998-07-26|COLLECT COD|AIR| escapades wake | +17769|191065|28575|2|2|2312.12|0.07|0.05|N|O|1998-06-13|1998-06-19|1998-06-27|DELIVER IN PERSON|TRUCK|ing to the carefully final sautern| +17769|218459|43468|3|36|49587.84|0.09|0.03|N|O|1998-07-03|1998-06-22|1998-07-18|NONE|AIR|ounts. blithely | +17769|637744|25281|4|14|23543.94|0.08|0.03|N|O|1998-05-20|1998-07-07|1998-06-16|DELIVER IN PERSON|FOB|ly slyly fina| +17769|561648|36671|5|28|47869.36|0.06|0.01|N|O|1998-04-19|1998-06-06|1998-05-08|DELIVER IN PERSON|MAIL|to beans: furiously blith| +17769|605889|18402|6|34|61024.90|0.01|0.04|N|O|1998-07-04|1998-06-04|1998-07-29|DELIVER IN PERSON|SHIP|ffily unusual excuses. car| +17769|164994|14995|7|18|37061.82|0.01|0.08|N|O|1998-07-17|1998-06-01|1998-07-25|NONE|AIR|odolites u| +17770|43946|6447|1|4|7559.76|0.06|0.08|R|F|1992-09-03|1992-10-21|1992-09-22|TAKE BACK RETURN|TRUCK|kages are about the slyl| +17770|596014|21037|2|14|15539.86|0.03|0.06|A|F|1992-10-11|1992-09-19|1992-10-12|DELIVER IN PERSON|TRUCK|ing instructions. finally regular ideas hag| +17770|190602|3106|3|43|72781.80|0.10|0.07|R|F|1992-11-24|1992-10-10|1992-12-19|COLLECT COD|SHIP|express, ironic deposits.| +17770|436998|49507|4|39|75463.83|0.09|0.03|R|F|1992-10-06|1992-09-23|1992-10-10|TAKE BACK RETURN|MAIL|to the special, final instruct| +17770|613430|38455|5|18|24181.20|0.10|0.01|A|F|1992-09-24|1992-09-16|1992-10-09|NONE|RAIL|sits detect blithely f| +17770|902792|2793|6|48|86148.00|0.00|0.08|A|F|1992-11-23|1992-09-10|1992-12-09|TAKE BACK RETURN|REG AIR| requests print furiously| +17771|945990|21027|1|19|38683.05|0.08|0.00|N|O|1997-05-23|1997-06-26|1997-06-20|TAKE BACK RETURN|MAIL|. slyly ironic requ| +17771|245429|7934|2|26|35734.66|0.08|0.03|N|O|1997-05-08|1997-06-26|1997-06-02|TAKE BACK RETURN|FOB|bout the even, ironic foxes.| +17771|921807|34326|3|6|10972.56|0.02|0.08|N|O|1997-07-03|1997-07-06|1997-08-01|DELIVER IN PERSON|AIR|ans! slyly regular foxes | +17771|799479|49480|4|16|25255.04|0.04|0.06|N|O|1997-07-11|1997-06-16|1997-08-09|TAKE BACK RETURN|MAIL| accounts are sil| +17772|247497|10002|1|27|39000.96|0.08|0.08|N|O|1997-11-28|1997-09-24|1997-12-13|NONE|FOB|ar deposits haggle along the accounts. depo| +17772|679034|41548|2|29|29377.00|0.02|0.06|N|O|1997-10-19|1997-11-09|1997-10-25|TAKE BACK RETURN|AIR|use. carefully ironic hockey players| +17772|509672|34693|3|25|42041.25|0.05|0.07|N|O|1997-11-27|1997-10-24|1997-12-16|DELIVER IN PERSON|FOB|e slyly ironic, special accounts. asy| +17773|748471|48472|1|38|57738.72|0.10|0.06|A|F|1993-08-27|1993-10-05|1993-09-18|NONE|SHIP|ide of the requests haggle am| +17773|550738|739|2|36|64393.56|0.03|0.05|R|F|1993-07-23|1993-09-11|1993-07-28|COLLECT COD|AIR|nts are around the furiously bo| +17773|239097|26610|3|39|40407.12|0.05|0.04|R|F|1993-07-25|1993-10-09|1993-08-20|COLLECT COD|RAIL| to use accordin| +17773|499135|24154|4|43|48766.73|0.09|0.04|R|F|1993-09-20|1993-09-16|1993-09-23|TAKE BACK RETURN|FOB|ites. furiously | +17773|954744|17264|5|23|41370.10|0.03|0.06|A|F|1993-09-10|1993-08-29|1993-09-20|NONE|TRUCK|accounts along the re| +17773|375732|13254|6|1|1807.72|0.06|0.02|A|F|1993-10-02|1993-08-28|1993-10-05|NONE|MAIL|os. slyly pe| +17774|711047|36076|1|12|12696.12|0.05|0.03|N|O|1998-03-24|1998-02-07|1998-04-19|NONE|MAIL|nts. stealthy i| +17774|552257|27280|2|7|9164.61|0.02|0.00|N|O|1998-03-29|1998-03-01|1998-04-21|NONE|AIR| boldly regular deposits across the regu| +17774|775444|25445|3|45|68373.45|0.05|0.00|N|O|1998-03-24|1998-01-15|1998-04-15|TAKE BACK RETURN|RAIL|uickly ironic foxes. reg| +17774|886556|49074|4|2|3085.02|0.08|0.07|N|O|1998-03-29|1998-02-16|1998-04-21|NONE|REG AIR|ts. furiously ex| +17775|881749|6784|1|20|34614.00|0.02|0.00|A|F|1993-10-25|1993-10-01|1993-11-08|TAKE BACK RETURN|SHIP|ymptotes. c| +17775|548719|11230|2|43|76010.67|0.05|0.06|R|F|1993-07-29|1993-10-07|1993-08-10|COLLECT COD|AIR|eposits cajole after the slyly fina| +17775|305525|18032|3|39|59689.89|0.08|0.06|A|F|1993-09-03|1993-09-26|1993-09-10|COLLECT COD|MAIL| ironic packages. permanentl| +17775|957304|19824|4|22|29947.72|0.10|0.01|R|F|1993-07-19|1993-09-18|1993-08-14|NONE|REG AIR|hely pending requests among the final a| +17775|398771|11279|5|17|31785.92|0.09|0.04|R|F|1993-07-23|1993-09-08|1993-08-10|COLLECT COD|AIR|theodolites print furiously a| +17775|133738|46241|6|38|67325.74|0.06|0.02|R|F|1993-09-16|1993-09-03|1993-10-01|TAKE BACK RETURN|SHIP| theodolites. carefully even pinto bean| +17775|732164|44679|7|40|47845.20|0.01|0.06|A|F|1993-11-10|1993-08-27|1993-11-29|COLLECT COD|AIR|furiously unusua| +17800|470965|20966|1|11|21295.34|0.08|0.06|N|O|1997-02-25|1997-02-23|1997-03-23|DELIVER IN PERSON|AIR|ally unusual ideas along the| +17800|505274|5275|2|11|14071.75|0.00|0.07|N|O|1997-03-15|1997-04-14|1997-04-10|NONE|TRUCK|packages integrate thin instructio| +17800|136047|11052|3|42|45487.68|0.09|0.03|N|O|1997-02-13|1997-02-28|1997-03-11|DELIVER IN PERSON|REG AIR|osits nag sly| +17800|530129|30130|4|28|32454.80|0.06|0.01|N|O|1997-01-21|1997-03-03|1997-02-08|COLLECT COD|SHIP|s are around the even courts. carefully ev| +17800|878101|15653|5|41|44241.46|0.00|0.01|N|O|1997-03-27|1997-03-08|1997-03-29|NONE|FOB|l accounts grow flu| +17801|334075|9088|1|27|29944.62|0.00|0.01|R|F|1995-03-26|1995-03-10|1995-04-12|COLLECT COD|RAIL|usly bold instructions wake according to | +17802|897532|10050|1|12|18353.88|0.03|0.04|N|O|1996-09-21|1996-10-21|1996-10-16|COLLECT COD|AIR|n courts among the carefully regular accou| +17803|960728|48286|1|18|32196.24|0.09|0.01|N|O|1998-02-07|1997-12-04|1998-03-03|TAKE BACK RETURN|RAIL|against the dep| +17803|955158|5159|2|48|58229.28|0.07|0.01|N|O|1998-01-22|1997-12-17|1998-01-24|TAKE BACK RETURN|FOB|y against the regular accounts.| +17803|336865|11878|3|32|60859.20|0.10|0.07|N|O|1997-11-21|1997-12-22|1997-11-25|NONE|FOB|carefully exp| +17803|679648|29649|4|19|30924.59|0.01|0.02|N|O|1998-02-04|1997-12-03|1998-02-13|COLLECT COD|MAIL|eodolites haggle alo| +17803|842452|4969|5|35|48804.35|0.05|0.06|N|O|1997-11-21|1997-12-16|1997-12-12|TAKE BACK RETURN|SHIP|encies sleep | +17804|258999|21505|1|33|64613.34|0.10|0.07|N|O|1997-10-31|1998-01-20|1997-11-06|NONE|TRUCK|s cajole ironic | +17804|982035|44555|2|1|1116.99|0.09|0.02|N|O|1998-01-03|1998-01-20|1998-01-06|COLLECT COD|FOB|ans sleep furiously quickly special ac| +17804|52139|14641|3|39|42554.07|0.05|0.04|N|O|1998-02-24|1997-12-18|1998-03-03|COLLECT COD|AIR|ay. never regula| +17804|299384|24395|4|46|63635.02|0.09|0.01|N|O|1997-11-03|1998-01-24|1997-11-13|TAKE BACK RETURN|AIR|reach. quickly pend| +17804|739272|14301|5|29|38025.96|0.03|0.07|N|O|1998-01-13|1998-01-18|1998-01-25|DELIVER IN PERSON|AIR| stealthily b| +17804|937534|12571|6|12|18857.88|0.06|0.05|N|O|1997-11-10|1998-01-26|1997-12-04|NONE|AIR|y silent pi| +17804|119996|7503|7|22|44351.78|0.05|0.08|N|O|1998-01-16|1997-12-20|1998-02-07|COLLECT COD|SHIP|y quickly e| +17805|760542|35573|1|11|17627.61|0.00|0.00|N|O|1997-06-07|1997-05-03|1997-06-28|TAKE BACK RETURN|TRUCK|ggle furiously final deposits. regular asym| +17805|424191|49208|2|19|21188.23|0.08|0.08|N|O|1997-03-21|1997-05-24|1997-04-17|NONE|TRUCK| the regular, final asymptote| +17805|371182|33690|3|13|16291.21|0.07|0.06|N|O|1997-06-25|1997-04-18|1997-06-27|TAKE BACK RETURN|RAIL|iously around the carefully unusual | +17805|450325|326|4|17|21680.10|0.00|0.07|N|O|1997-05-31|1997-05-23|1997-06-27|COLLECT COD|REG AIR|quickly eve| +17805|606035|18548|5|31|29171.00|0.01|0.04|N|O|1997-04-20|1997-05-25|1997-04-30|COLLECT COD|AIR|cuses. carefu| +17806|90921|3423|1|10|19119.20|0.10|0.07|R|F|1992-05-13|1992-06-17|1992-05-27|COLLECT COD|AIR|ow foxes integrate ca| +17806|108139|20642|2|21|24089.73|0.05|0.08|A|F|1992-07-22|1992-06-15|1992-08-08|DELIVER IN PERSON|REG AIR|sts unwind| +17807|663266|806|1|38|46710.74|0.04|0.00|A|F|1993-04-02|1993-06-19|1993-04-28|TAKE BACK RETURN|AIR|otes nag bold, special warho| +17807|504630|17141|2|9|14711.49|0.04|0.03|R|F|1993-04-18|1993-06-21|1993-05-06|COLLECT COD|TRUCK|al foxes doze sly| +17807|301918|39437|3|17|32638.30|0.01|0.08|A|F|1993-07-11|1993-06-19|1993-07-21|DELIVER IN PERSON|MAIL|ly bold theodolites haggle. carefully final| +17807|323087|48100|4|14|15540.98|0.05|0.05|A|F|1993-05-14|1993-04-28|1993-05-21|COLLECT COD|REG AIR|y. blithely regular ideas a| +17807|118928|18929|5|36|70089.12|0.04|0.05|A|F|1993-06-05|1993-05-16|1993-06-07|COLLECT COD|AIR|oss the furiously regu| +17807|814826|2375|6|45|78335.10|0.09|0.03|A|F|1993-05-02|1993-05-01|1993-05-16|COLLECT COD|FOB| regular deposits: deposits cajole blit| +17807|775197|25198|7|46|58519.36|0.08|0.00|R|F|1993-04-06|1993-04-25|1993-04-18|TAKE BACK RETURN|MAIL|e express, even | +17832|723890|36405|1|30|57415.80|0.04|0.07|N|O|1995-08-13|1995-10-26|1995-08-22|TAKE BACK RETURN|SHIP|st about the enticingly b| +17832|412177|24686|2|28|30496.20|0.04|0.00|N|O|1995-11-03|1995-10-25|1995-11-26|DELIVER IN PERSON|SHIP|fily special theodolites | +17832|453227|3228|3|34|40126.80|0.06|0.00|N|O|1995-10-20|1995-09-03|1995-11-07|NONE|MAIL| eat special ideas. depend| +17832|372181|9703|4|34|42607.78|0.07|0.03|N|O|1995-11-19|1995-09-27|1995-11-28|COLLECT COD|AIR|ously unusual ideas integrate slyly above | +17832|241816|29329|5|28|49218.40|0.03|0.02|N|O|1995-11-09|1995-09-15|1995-11-26|NONE|TRUCK|e blithely fin| +17832|193572|43573|6|12|19986.84|0.10|0.00|N|O|1995-09-29|1995-10-21|1995-10-23|TAKE BACK RETURN|REG AIR|asymptotes are against the b| +17833|428290|40799|1|14|17055.78|0.09|0.01|A|F|1993-02-19|1993-01-04|1993-03-05|DELIVER IN PERSON|TRUCK|ans haggle furiously. even deposits hag| +17833|264324|14325|2|37|47667.47|0.05|0.02|R|F|1993-02-10|1992-12-06|1993-02-26|TAKE BACK RETURN|FOB|y sometimes ruthless pinto beans. flu| +17833|480324|17852|3|12|15651.60|0.01|0.08|R|F|1993-02-15|1992-12-05|1993-03-12|TAKE BACK RETURN|REG AIR|al deposits wake. carefully express| +17833|797695|22726|4|43|77084.38|0.00|0.03|R|F|1993-02-01|1992-12-28|1993-02-21|COLLECT COD|REG AIR|ic foxes. pending courts among the pack| +17834|516067|3598|1|45|48736.80|0.04|0.08|A|F|1995-05-11|1995-05-02|1995-06-02|DELIVER IN PERSON|RAIL|jole excuses. furiously regular asympto| +17834|528371|15902|2|24|33584.40|0.08|0.00|N|F|1995-06-09|1995-04-16|1995-07-07|TAKE BACK RETURN|TRUCK|lites. even warhorses use slyly. blithely| +17835|249109|49110|1|23|24336.07|0.10|0.08|R|F|1994-09-06|1994-08-01|1994-09-28|NONE|REG AIR|s affix carefully carefully even w| +17835|769416|44447|2|24|35649.12|0.01|0.05|R|F|1994-07-09|1994-07-19|1994-07-10|COLLECT COD|FOB|are blithely fluffily even theodol| +17835|566458|3992|3|16|24390.88|0.03|0.05|R|F|1994-06-07|1994-06-27|1994-06-21|NONE|REG AIR|quickly spec| +17835|446398|21415|4|28|37642.36|0.02|0.07|R|F|1994-06-24|1994-07-16|1994-07-06|COLLECT COD|RAIL|ctions sleep quic| +17835|600096|12609|5|15|14940.90|0.10|0.01|A|F|1994-05-25|1994-08-11|1994-06-01|TAKE BACK RETURN|RAIL|ly ironic depo| +17836|112107|37112|1|9|10071.90|0.00|0.03|N|O|1998-08-03|1998-07-02|1998-08-15|COLLECT COD|AIR|tructions. blithely| +17836|174459|49466|2|7|10734.15|0.10|0.06|N|O|1998-07-16|1998-07-05|1998-07-28|TAKE BACK RETURN|AIR|yly above the carefully bold packages.| +17836|121374|33877|3|19|26512.03|0.03|0.05|N|O|1998-07-22|1998-06-26|1998-08-01|COLLECT COD|MAIL|kages are slyly| +17836|921774|46811|4|14|25140.22|0.04|0.03|N|O|1998-08-21|1998-06-09|1998-08-27|NONE|SHIP|riously final | +17836|249817|37330|5|15|26502.00|0.06|0.08|N|O|1998-06-04|1998-06-27|1998-06-09|TAKE BACK RETURN|TRUCK|y regular foxes boost quickly carefully r| +17836|672001|47028|6|3|2918.91|0.03|0.07|N|O|1998-07-24|1998-07-14|1998-08-23|COLLECT COD|AIR|eposits. final instructi| +17837|444157|31682|1|31|34135.03|0.03|0.06|N|O|1998-02-21|1998-02-01|1998-03-19|DELIVER IN PERSON|TRUCK|ctions sleep after th| +17838|853401|40953|1|4|5417.44|0.10|0.03|N|O|1997-04-04|1997-05-12|1997-04-12|COLLECT COD|SHIP|s. furiously regular deposits after the pa| +17838|97828|22831|2|10|18258.20|0.09|0.08|N|O|1997-04-08|1997-06-14|1997-05-03|COLLECT COD|RAIL|ully blithely busy req| +17838|192549|17556|3|45|73869.30|0.02|0.00|N|O|1997-07-04|1997-04-29|1997-07-06|TAKE BACK RETURN|REG AIR|tegrate among the| +17838|170631|8141|4|16|27226.08|0.10|0.05|N|O|1997-07-04|1997-05-21|1997-07-11|TAKE BACK RETURN|MAIL|ole after the regular| +17838|781583|19129|5|19|31626.45|0.04|0.06|N|O|1997-07-06|1997-04-22|1997-07-21|DELIVER IN PERSON|MAIL|telets. quick| +17838|50766|13268|6|27|46352.52|0.03|0.04|N|O|1997-05-05|1997-05-05|1997-06-03|DELIVER IN PERSON|MAIL|y silent depen| +17838|212190|49703|7|25|27554.50|0.02|0.01|N|O|1997-05-24|1997-04-22|1997-06-13|TAKE BACK RETURN|RAIL|ven, expres| +17839|261122|23628|1|48|51989.28|0.10|0.06|N|O|1996-03-23|1996-03-23|1996-04-05|COLLECT COD|RAIL|ts kindle furiously f| +17839|663063|13064|2|45|46171.35|0.00|0.02|N|O|1996-03-02|1996-03-19|1996-03-04|NONE|REG AIR|bout the express r| +17839|88232|25736|3|14|17083.22|0.02|0.05|N|O|1996-03-08|1996-01-31|1996-03-20|COLLECT COD|SHIP|ously express deposits beneath the| +17839|900486|487|4|22|32701.68|0.05|0.08|N|O|1996-04-17|1996-02-27|1996-05-11|NONE|REG AIR| special instructions. quickly entici| +17864|835344|10377|1|20|25586.00|0.09|0.06|N|O|1998-03-02|1998-03-26|1998-03-28|NONE|AIR|ully. fluffily r| +17864|619842|7379|2|12|21141.72|0.05|0.04|N|O|1998-03-29|1998-04-11|1998-04-06|TAKE BACK RETURN|MAIL|nal theodo| +17865|39441|26942|1|4|5521.76|0.04|0.03|A|F|1993-09-23|1993-09-22|1993-10-04|COLLECT COD|AIR|ally. regular packages sleep| +17865|872314|47349|2|7|9003.89|0.05|0.06|A|F|1993-09-15|1993-09-05|1993-10-13|DELIVER IN PERSON|AIR|s are quickly| +17865|977548|15106|3|34|55267.00|0.03|0.05|R|F|1993-08-11|1993-08-17|1993-09-06|NONE|RAIL|inal deposits. requests inte| +17865|633129|45642|4|40|42483.60|0.10|0.01|R|F|1993-10-20|1993-08-24|1993-11-18|COLLECT COD|AIR|ly brave packag| +17865|983960|33961|5|50|102196.00|0.10|0.08|A|F|1993-10-23|1993-09-14|1993-11-03|DELIVER IN PERSON|RAIL|uriously ironic packages. ironic, even | +17866|784725|47241|1|5|9048.45|0.01|0.05|A|F|1992-04-23|1992-05-12|1992-05-19|COLLECT COD|FOB|posits cajol| +17866|868553|18554|2|28|42602.28|0.02|0.04|A|F|1992-06-12|1992-05-01|1992-06-29|COLLECT COD|AIR|rate during | +17866|756880|6881|3|9|17431.65|0.06|0.08|R|F|1992-05-09|1992-04-21|1992-05-25|DELIVER IN PERSON|AIR|es; depths across the bol| +17866|876598|1633|4|31|48811.05|0.09|0.06|R|F|1992-05-14|1992-05-23|1992-06-10|DELIVER IN PERSON|MAIL|ccounts wake according to the blith| +17866|973774|48813|5|9|16629.57|0.03|0.03|R|F|1992-06-22|1992-04-21|1992-06-28|TAKE BACK RETURN|RAIL|sits lose by the quickly regu| +17866|212286|49799|6|2|2396.54|0.06|0.06|R|F|1992-06-17|1992-05-04|1992-06-26|COLLECT COD|SHIP|ts sleep quickly fin| +17866|885422|47940|7|44|61924.72|0.04|0.05|R|F|1992-06-03|1992-05-08|1992-06-14|NONE|TRUCK|ular deposits detect never after the furi| +17867|278690|3701|1|15|25030.20|0.02|0.03|N|O|1996-08-16|1996-09-26|1996-09-06|COLLECT COD|SHIP|y final packages detect. blithely ironi| +17867|928011|28012|2|8|8311.76|0.03|0.01|N|O|1996-10-13|1996-10-23|1996-11-07|NONE|SHIP|lphins haggle furiously across the quickl| +17867|66166|16167|3|40|45286.40|0.08|0.02|N|O|1996-11-22|1996-10-29|1996-12-20|NONE|SHIP|bout the slyly ironic | +17867|43408|5909|4|27|36487.80|0.05|0.03|N|O|1996-08-18|1996-09-23|1996-08-20|NONE|AIR|dencies across the pending accoun| +17867|556189|31212|5|17|21167.72|0.03|0.00|N|O|1996-10-04|1996-10-24|1996-10-23|TAKE BACK RETURN|REG AIR|d after the furiously unusual wa| +17868|154502|4503|1|45|70042.50|0.03|0.06|A|F|1992-09-16|1992-08-15|1992-10-06|COLLECT COD|FOB| quickly pend| +17868|703520|28549|2|8|12187.92|0.10|0.06|R|F|1992-07-16|1992-08-08|1992-07-26|DELIVER IN PERSON|MAIL| slyly about the| +17868|57132|19634|3|14|15247.82|0.02|0.03|R|F|1992-09-29|1992-07-24|1992-10-23|COLLECT COD|FOB| ironic attainments. careful| +17868|203165|40678|4|40|42726.00|0.09|0.07|R|F|1992-09-07|1992-08-24|1992-09-13|DELIVER IN PERSON|REG AIR|ly final packages. furiously final instru| +17868|590805|3317|5|5|9478.90|0.08|0.08|A|F|1992-08-16|1992-09-13|1992-08-30|DELIVER IN PERSON|AIR|even packages sleep carefully even requ| +17868|646134|21159|6|1|1080.10|0.10|0.05|A|F|1992-09-16|1992-09-09|1992-09-23|NONE|RAIL|le carefully pending accounts. s| +17868|574101|49124|7|6|7050.48|0.05|0.07|A|F|1992-09-16|1992-07-29|1992-09-24|NONE|FOB|s. final, regular de| +17869|909839|34876|1|17|31429.43|0.02|0.07|A|F|1993-07-07|1993-08-06|1993-07-21|DELIVER IN PERSON|REG AIR|thely regular accounts. final, bold| +17869|663018|38045|2|42|41201.16|0.02|0.03|R|F|1993-07-01|1993-08-12|1993-07-17|NONE|AIR|blithely bli| +17869|330091|30092|3|33|36995.64|0.03|0.05|A|F|1993-07-25|1993-07-31|1993-08-15|DELIVER IN PERSON|TRUCK|quickly pending requests!| +17869|834949|47466|4|46|86659.40|0.06|0.05|R|F|1993-06-17|1993-07-30|1993-06-27|TAKE BACK RETURN|TRUCK| accounts use slyly enticing instruction| +17869|977860|27861|5|42|81388.44|0.03|0.03|A|F|1993-06-18|1993-06-21|1993-06-22|NONE|SHIP|arefully ironic foxes. pending asy| +17870|258964|33975|1|3|5768.85|0.01|0.01|N|O|1996-10-03|1996-11-02|1996-10-19|COLLECT COD|RAIL|oggedly packages. furio| +17870|407869|20378|2|23|40867.32|0.06|0.01|N|O|1996-11-05|1996-10-31|1996-11-25|DELIVER IN PERSON|MAIL|aggle blithely. quickly| +17870|45388|45389|3|37|49335.06|0.08|0.02|N|O|1996-11-14|1996-10-21|1996-11-15|COLLECT COD|REG AIR|uffily final requests.| +17870|826132|1165|4|1|1058.09|0.09|0.07|N|O|1996-08-29|1996-10-31|1996-09-02|NONE|REG AIR|l, final packages aff| +17870|789644|14675|5|36|62409.96|0.02|0.01|N|O|1996-10-04|1996-11-10|1996-10-27|NONE|TRUCK|ticingly dogged packages. ironic, r| +17870|534695|34696|6|3|5189.01|0.06|0.06|N|O|1996-09-24|1996-10-02|1996-10-08|NONE|AIR|xpress packages. regular accounts around th| +17870|617209|29722|7|39|43920.63|0.09|0.05|N|O|1996-09-17|1996-10-14|1996-10-06|DELIVER IN PERSON|RAIL|into beans ha| +17871|426363|13888|1|13|16761.42|0.09|0.01|A|F|1995-05-03|1995-04-08|1995-05-12|TAKE BACK RETURN|FOB|r dependencies after the brave accou| +17871|871967|47002|2|5|9694.60|0.08|0.05|R|F|1995-03-11|1995-04-22|1995-03-13|COLLECT COD|REG AIR| boost blithely. slyly unus| +17871|148961|48962|3|39|78388.44|0.03|0.05|A|F|1995-03-02|1995-04-03|1995-03-10|DELIVER IN PERSON|MAIL|sual instruc| +17871|575400|423|4|20|29507.60|0.01|0.08|A|F|1995-05-12|1995-05-08|1995-05-24|NONE|AIR|aggle carefully against the carefull| +17871|743124|18153|5|41|47850.69|0.03|0.03|A|F|1995-05-07|1995-05-18|1995-05-21|COLLECT COD|SHIP|ts nag against the quickly u| +17871|682903|20443|6|47|88635.89|0.09|0.04|N|F|1995-06-06|1995-04-12|1995-07-06|TAKE BACK RETURN|MAIL|sual, unusual attainm| +17871|542261|17282|7|26|33884.24|0.04|0.08|A|F|1995-03-27|1995-05-23|1995-04-06|DELIVER IN PERSON|MAIL|ously ironic dependencies. caref| +17896|777177|27178|1|49|61452.86|0.04|0.06|R|F|1992-05-19|1992-06-28|1992-06-15|DELIVER IN PERSON|AIR|ding to th| +17896|2207|39708|2|50|55460.00|0.04|0.08|R|F|1992-05-02|1992-06-14|1992-05-30|NONE|MAIL|ven, unusual pa| +17896|84234|46736|3|27|32892.21|0.06|0.08|R|F|1992-06-10|1992-07-04|1992-06-18|DELIVER IN PERSON|REG AIR|arefully. unus| +17896|709204|34233|4|4|4852.68|0.09|0.02|R|F|1992-07-18|1992-06-06|1992-08-05|NONE|FOB|ly. regular deposits wake | +17896|590530|15553|5|19|30789.69|0.10|0.08|R|F|1992-05-19|1992-07-13|1992-06-03|NONE|AIR|carefully even dolphins. bli| +17896|25603|38104|6|47|71844.20|0.09|0.06|R|F|1992-07-04|1992-07-11|1992-07-10|COLLECT COD|RAIL|inder careful| +17896|294737|32253|7|20|34634.40|0.08|0.02|A|F|1992-04-23|1992-06-13|1992-04-28|COLLECT COD|AIR| furiously pen| +17897|639722|2235|1|8|13293.52|0.06|0.00|R|F|1994-05-04|1994-04-13|1994-05-14|TAKE BACK RETURN|AIR|efully pendin| +17897|798133|23164|2|16|19697.60|0.05|0.02|A|F|1994-03-02|1994-03-07|1994-03-14|NONE|FOB|uriously final i| +17897|208468|33477|3|44|60563.80|0.08|0.08|A|F|1994-05-01|1994-03-22|1994-05-30|TAKE BACK RETURN|SHIP|fily. slyly final packages are closely aft| +17898|267059|42070|1|26|26677.04|0.02|0.00|N|O|1995-11-15|1996-01-03|1995-11-20|COLLECT COD|TRUCK|ld deposits; unusu| +17898|451361|38889|2|37|48556.58|0.10|0.08|N|O|1996-02-09|1995-12-25|1996-02-21|DELIVER IN PERSON|REG AIR|r multipliers. sly| +17898|7646|32647|3|40|62145.60|0.10|0.03|N|O|1995-12-07|1996-01-07|1995-12-10|TAKE BACK RETURN|TRUCK|kages. slyly final foxes| +17898|505094|42625|4|40|43962.80|0.07|0.03|N|O|1995-11-07|1995-12-31|1995-11-12|NONE|REG AIR|onic pains. sl| +17898|107031|7032|5|49|50863.47|0.10|0.06|N|O|1996-01-24|1995-12-10|1996-02-16|COLLECT COD|AIR|ular asymptotes. bold, regular | +17898|854598|42150|6|29|45023.95|0.03|0.05|N|O|1995-10-27|1995-11-26|1995-11-07|NONE|FOB|e enticingly even requests. regular, ev| +17899|252991|40507|1|42|81647.16|0.06|0.01|N|O|1998-10-27|1998-08-23|1998-11-08|TAKE BACK RETURN|TRUCK|ies along t| +17899|16792|4293|2|48|82021.92|0.07|0.02|N|O|1998-08-29|1998-10-01|1998-09-28|NONE|AIR|kly above t| +17899|217068|42077|3|45|44327.25|0.06|0.08|N|O|1998-09-02|1998-08-16|1998-09-06|DELIVER IN PERSON|SHIP|ages are carefully. carefully ironic | +17899|255214|5215|4|10|11692.00|0.03|0.05|N|O|1998-08-14|1998-10-02|1998-09-04|COLLECT COD|RAIL|quests. ironic, regula| +17900|679419|16959|1|26|36357.88|0.06|0.03|R|F|1993-05-03|1993-05-25|1993-05-31|DELIVER IN PERSON|AIR| pinto beans nod th| +17900|993389|30947|2|50|74117.00|0.10|0.02|A|F|1993-06-19|1993-06-10|1993-07-06|NONE|TRUCK|oss the stealthily pending p| +17901|427817|40326|1|19|33151.01|0.10|0.05|N|O|1997-09-26|1997-10-18|1997-10-18|DELIVER IN PERSON|SHIP|sly about the daring dolphins. final | +17901|319463|44476|2|12|17789.40|0.03|0.00|N|O|1997-10-16|1997-10-18|1997-10-19|COLLECT COD|TRUCK|l packages use ac| +17901|210068|47581|3|2|1956.10|0.09|0.08|N|O|1997-11-01|1997-10-06|1997-11-03|DELIVER IN PERSON|TRUCK|inal pinto | +17902|644363|44364|1|22|28761.26|0.10|0.06|N|O|1997-04-11|1997-04-24|1997-05-11|TAKE BACK RETURN|REG AIR|e alongside of the slyly ironic courts. fu| +17902|799689|49690|2|38|67968.70|0.00|0.02|N|O|1997-05-03|1997-05-04|1997-05-05|TAKE BACK RETURN|AIR| requests. sl| +17902|363223|13224|3|26|33441.46|0.00|0.06|N|O|1997-03-11|1997-04-20|1997-04-10|COLLECT COD|FOB|slyly slyly ironic | +17902|687813|12840|4|39|70230.42|0.02|0.07|N|O|1997-02-27|1997-05-12|1997-03-29|DELIVER IN PERSON|REG AIR|egular theodolites. furio| +17903|716828|16829|1|2|3689.58|0.03|0.05|A|F|1994-02-07|1993-12-06|1994-02-22|NONE|RAIL|the blithel| +17903|725217|12760|2|20|24843.60|0.10|0.01|R|F|1993-10-21|1994-01-03|1993-11-18|DELIVER IN PERSON|FOB|. carefully express excuses ac| +17903|712195|24710|3|50|60358.00|0.05|0.02|R|F|1993-10-30|1993-12-13|1993-11-11|DELIVER IN PERSON|SHIP|old accounts: slyly even c| +17928|399996|25011|1|14|29343.72|0.06|0.02|N|O|1996-03-04|1996-05-13|1996-03-25|NONE|SHIP|eat fluffily around the blithely even f| +17929|148769|23774|1|48|87252.48|0.10|0.03|N|O|1997-07-05|1997-09-10|1997-07-31|DELIVER IN PERSON|SHIP|ourts. fur| +17929|351766|14274|2|7|12724.25|0.10|0.05|N|O|1997-10-30|1997-09-14|1997-11-06|NONE|SHIP|c foxes integrate carefully along the alway| +17929|117415|42420|3|1|1432.41|0.10|0.01|N|O|1997-08-05|1997-10-01|1997-08-29|DELIVER IN PERSON|MAIL|s according to the slyly regular theodoli| +17929|384323|34324|4|18|25331.58|0.00|0.01|N|O|1997-08-26|1997-09-30|1997-09-01|COLLECT COD|TRUCK|regular pa| +17929|304823|17330|5|37|67628.97|0.01|0.01|N|O|1997-09-21|1997-08-11|1997-09-24|DELIVER IN PERSON|AIR|sometimes eve| +17929|148690|23695|6|16|27819.04|0.04|0.03|N|O|1997-10-14|1997-09-25|1997-10-16|TAKE BACK RETURN|TRUCK| slyly unusual tithes boost deposits.| +17929|27114|27115|7|11|11452.21|0.09|0.08|N|O|1997-07-09|1997-08-20|1997-07-11|NONE|SHIP|fily special requests. fluffil| +17930|689083|1597|1|40|42882.00|0.01|0.05|A|F|1992-07-04|1992-06-30|1992-07-28|DELIVER IN PERSON|TRUCK| wake blithely sile| +17930|405515|43040|2|45|63922.05|0.03|0.05|R|F|1992-08-20|1992-07-14|1992-09-18|TAKE BACK RETURN|FOB|ackages will ha| +17930|476744|26745|3|22|37855.84|0.04|0.02|R|F|1992-07-15|1992-05-30|1992-08-11|TAKE BACK RETURN|AIR| integrate slyly | +17930|629922|29923|4|40|74075.60|0.08|0.04|R|F|1992-05-14|1992-06-19|1992-06-04|COLLECT COD|AIR|he pinto beans could have to cajole| +17930|90032|15035|5|9|9198.27|0.03|0.03|R|F|1992-08-16|1992-07-18|1992-08-31|DELIVER IN PERSON|SHIP| across the even pinto| +17931|163574|26078|1|39|63865.23|0.08|0.00|R|F|1994-06-10|1994-06-24|1994-06-13|COLLECT COD|RAIL|eans are fluffily. even de| +17931|183819|33820|2|13|24736.53|0.08|0.06|A|F|1994-08-23|1994-07-08|1994-09-09|COLLECT COD|RAIL|s sleep final tithes. | +17932|39683|14684|1|21|34076.28|0.07|0.08|R|F|1992-10-04|1992-07-30|1992-10-09|COLLECT COD|MAIL|y regular attainments are regu| +17932|945509|20546|2|20|31089.20|0.00|0.03|A|F|1992-07-27|1992-07-14|1992-08-25|TAKE BACK RETURN|FOB|gular platel| +17932|161698|24202|3|5|8798.45|0.05|0.01|R|F|1992-10-06|1992-08-23|1992-10-11|DELIVER IN PERSON|REG AIR|o grow carefully. bold br| +17932|645038|45039|4|38|37354.00|0.02|0.04|R|F|1992-09-01|1992-09-07|1992-09-15|DELIVER IN PERSON|MAIL| furiously| +17932|151869|14373|5|37|71071.82|0.02|0.06|R|F|1992-07-31|1992-07-15|1992-08-27|TAKE BACK RETURN|REG AIR|c sauternes promis| +17932|451076|13586|6|21|21568.05|0.05|0.03|A|F|1992-10-06|1992-08-07|1992-10-30|COLLECT COD|REG AIR|packages. express frays alongside of the | +17933|920011|20012|1|27|27836.19|0.06|0.05|N|F|1995-06-16|1995-07-09|1995-06-20|COLLECT COD|FOB|lphins. furiously express foxes could have| +17933|616123|28636|2|12|12469.08|0.05|0.01|N|O|1995-06-25|1995-07-08|1995-07-09|TAKE BACK RETURN|TRUCK|r dependencies solve fluffily furiously sil| +17933|174816|12326|3|5|9454.05|0.01|0.02|N|F|1995-06-01|1995-05-22|1995-06-19|NONE|MAIL|ent accounts. even sheaves engage bli| +17933|120826|20827|4|4|7387.28|0.01|0.02|N|O|1995-07-26|1995-07-13|1995-08-07|COLLECT COD|REG AIR|egular instructions are furiously according| +17933|712493|37522|5|46|69251.16|0.01|0.06|N|F|1995-06-05|1995-05-29|1995-06-26|TAKE BACK RETURN|FOB|oost slyly frets. e| +17934|160753|48263|1|18|32647.50|0.07|0.05|N|O|1998-08-02|1998-09-08|1998-08-13|NONE|AIR|sits. quickly regular t| +17934|768661|6207|2|13|22485.19|0.02|0.08|N|O|1998-09-06|1998-09-07|1998-09-14|COLLECT COD|TRUCK|ng deposits use furiously. special | +17934|883286|20838|3|4|5076.96|0.10|0.06|N|O|1998-11-02|1998-08-27|1998-11-06|NONE|SHIP|s sleep slyly package| +17934|384604|22126|4|37|62477.83|0.03|0.07|N|O|1998-09-17|1998-09-15|1998-10-10|DELIVER IN PERSON|MAIL|osits sleep fu| +17934|38712|1213|5|45|74281.95|0.05|0.07|N|O|1998-10-03|1998-10-14|1998-10-19|TAKE BACK RETURN|TRUCK|its above the final, express requ| +17934|621378|46403|6|5|6496.70|0.08|0.05|N|O|1998-08-02|1998-08-21|1998-08-13|TAKE BACK RETURN|SHIP|ular packages| +17935|642479|4992|1|43|61121.92|0.07|0.04|A|F|1994-03-02|1994-02-18|1994-03-19|DELIVER IN PERSON|AIR|s are carefully ironic ideas. deposi| +17935|127805|2810|2|18|32990.40|0.08|0.07|A|F|1994-02-16|1994-01-01|1994-03-11|NONE|AIR|the carefully ironic instructions. even, i| +17935|6023|18524|3|7|6503.14|0.04|0.01|R|F|1994-01-26|1994-01-31|1994-01-27|COLLECT COD|FOB|ding realm| +17935|224664|49673|4|11|17475.15|0.01|0.08|A|F|1993-12-20|1994-01-30|1994-01-08|COLLECT COD|MAIL| the unusua| +17960|764173|39204|1|37|45774.18|0.10|0.00|R|F|1993-02-12|1993-03-17|1993-02-16|NONE|REG AIR|lyly ironic excuses detect slyly. thi| +17960|448294|10803|2|20|24845.40|0.02|0.07|A|F|1993-05-02|1993-03-20|1993-05-09|COLLECT COD|FOB|e fluffily slyly even pinto be| +17960|469017|19018|3|41|40425.59|0.03|0.07|R|F|1993-02-13|1993-04-30|1993-02-18|NONE|REG AIR|tes. slowly regular pinto beans sleep| +17960|759573|22089|4|11|17957.94|0.01|0.05|R|F|1993-05-29|1993-05-01|1993-05-31|NONE|AIR|usly. carefully final depos| +17961|395388|45389|1|26|38567.62|0.03|0.03|N|O|1997-12-24|1998-01-23|1998-01-03|DELIVER IN PERSON|AIR|onically bo| +17961|269687|32193|2|5|8283.35|0.04|0.05|N|O|1998-02-14|1998-01-16|1998-03-11|DELIVER IN PERSON|REG AIR|g the slyly regular | +17961|624852|49877|3|33|58635.06|0.10|0.04|N|O|1997-12-08|1998-01-19|1997-12-26|NONE|REG AIR|e furiously pending i| +17961|881493|6528|4|16|23591.20|0.04|0.04|N|O|1998-01-14|1998-02-24|1998-01-17|COLLECT COD|REG AIR|furiously r| +17961|241758|16767|5|50|84987.00|0.07|0.00|N|O|1998-02-16|1998-01-19|1998-03-11|DELIVER IN PERSON|FOB|ly special ideas. quickly | +17961|219181|31686|6|7|7701.19|0.07|0.05|N|O|1998-01-18|1998-01-03|1998-01-27|COLLECT COD|MAIL| quickly final excuses caj| +17961|770025|7571|7|36|39419.64|0.02|0.02|N|O|1998-02-10|1998-02-05|1998-03-07|NONE|SHIP|osits. quickly express p| +17962|810072|47621|1|49|48119.47|0.00|0.08|A|F|1993-07-23|1993-08-29|1993-08-10|DELIVER IN PERSON|MAIL|nly bold ideas. final tithes wake; quickly| +17962|864249|1801|2|3|3639.60|0.03|0.05|R|F|1993-09-17|1993-09-08|1993-10-13|NONE|MAIL|ent requests. | +17962|426499|1516|3|27|38487.69|0.10|0.06|A|F|1993-08-25|1993-09-06|1993-09-19|DELIVER IN PERSON|TRUCK|ccounts. doggedly ironic| +17962|160038|22542|4|5|5490.15|0.03|0.03|R|F|1993-07-21|1993-08-28|1993-07-30|TAKE BACK RETURN|AIR|y even deposi| +17963|315829|15830|1|5|9224.05|0.05|0.00|A|F|1992-06-16|1992-05-28|1992-06-18|COLLECT COD|MAIL|kly even fo| +17963|136221|48724|2|39|49031.58|0.01|0.00|A|F|1992-07-04|1992-06-15|1992-07-28|COLLECT COD|REG AIR|arefully ironic pla| +17964|479642|17170|1|29|47026.98|0.00|0.00|R|F|1993-05-25|1993-04-24|1993-06-08|DELIVER IN PERSON|SHIP|sleep carefully. f| +17964|337535|12548|2|3|4717.56|0.06|0.07|A|F|1993-03-26|1993-04-20|1993-04-23|COLLECT COD|AIR| the slyly ruthless esca| +17964|934523|47042|3|18|28034.64|0.01|0.05|A|F|1993-05-18|1993-04-18|1993-06-17|DELIVER IN PERSON|FOB|ely ironic accounts integrate | +17964|520985|20986|4|35|70208.60|0.06|0.05|R|F|1993-04-11|1993-03-16|1993-05-08|NONE|MAIL|usly final instructions use even re| +17964|178790|16300|5|32|59801.28|0.03|0.02|A|F|1993-04-15|1993-03-16|1993-04-23|NONE|AIR|the blithely ir| +17964|917557|30076|6|19|29915.69|0.05|0.06|R|F|1993-02-16|1993-03-04|1993-03-12|TAKE BACK RETURN|MAIL|ironic acco| +17964|372871|22872|7|39|75810.54|0.06|0.07|A|F|1993-04-22|1993-04-10|1993-05-20|TAKE BACK RETURN|AIR|ly ironic theod| +17965|838077|13110|1|35|35526.05|0.00|0.05|A|F|1993-01-12|1993-02-25|1993-01-15|COLLECT COD|SHIP|lithely: ex| +17965|550424|37958|2|1|1474.40|0.02|0.08|R|F|1993-03-16|1993-03-22|1993-03-29|DELIVER IN PERSON|SHIP|multipliers. deposits ca| +17966|590440|2952|1|19|29077.98|0.03|0.02|N|O|1995-09-24|1995-11-26|1995-10-17|COLLECT COD|MAIL|uriously unusual deposit| +17966|520741|45762|2|3|5285.16|0.04|0.05|N|O|1995-11-11|1995-12-05|1995-12-07|NONE|FOB|e fluffily bold accou| +17966|77295|14799|3|11|13995.19|0.03|0.04|N|O|1996-01-06|1995-11-24|1996-01-22|TAKE BACK RETURN|FOB|ly ironic excuses | +17966|92765|5267|4|14|24608.64|0.05|0.05|N|O|1995-11-06|1995-11-10|1995-11-07|COLLECT COD|TRUCK|; furiously pending deposits haggle | +17966|92116|29620|5|42|46540.62|0.09|0.04|N|O|1995-09-28|1995-11-20|1995-10-05|NONE|REG AIR|furiously brave requests are furiously s| +17967|991489|41490|1|2|3160.88|0.10|0.02|N|O|1998-04-15|1998-05-20|1998-04-26|NONE|AIR|le blithely across the regular, even e| +17967|952292|27331|2|27|36294.75|0.04|0.06|N|O|1998-04-20|1998-06-03|1998-05-07|COLLECT COD|FOB|s haggle quickly about the quickly | +17967|162705|12706|3|42|74243.40|0.00|0.01|N|O|1998-05-04|1998-07-10|1998-05-29|DELIVER IN PERSON|REG AIR|ajole blithely.| +17967|582335|32336|4|34|48188.54|0.09|0.02|N|O|1998-05-28|1998-06-18|1998-06-01|TAKE BACK RETURN|SHIP|s unwind furiously. unusual, ironic | +17992|547046|47047|1|29|31697.58|0.04|0.01|A|F|1993-11-14|1993-10-10|1993-11-24|DELIVER IN PERSON|REG AIR|ely silent dolphins according to| +17992|197950|35460|2|35|71678.25|0.07|0.01|R|F|1993-10-11|1993-10-12|1993-10-26|DELIVER IN PERSON|SHIP|ng asymptotes cajole fluffily furiousl| +17992|934193|34194|3|11|13498.65|0.10|0.03|R|F|1993-08-21|1993-09-16|1993-09-08|COLLECT COD|REG AIR| express requests will | +17992|978272|40792|4|37|49958.51|0.09|0.07|R|F|1993-11-08|1993-10-03|1993-11-16|NONE|SHIP| express, even packages boost. b| +17992|801849|14366|5|42|73533.60|0.06|0.06|A|F|1993-10-28|1993-10-24|1993-11-22|TAKE BACK RETURN|TRUCK|regular packages. furiously special theo| +17993|752869|40415|1|47|90326.01|0.06|0.06|R|F|1994-02-27|1994-01-04|1994-03-10|DELIVER IN PERSON|RAIL|ess, unusual packages. quickly even id| +17993|465074|15075|2|40|41562.00|0.08|0.05|R|F|1993-12-28|1994-01-09|1994-01-15|NONE|SHIP|e special, even instructio| +17994|721578|34093|1|32|51185.28|0.05|0.01|R|F|1993-03-15|1993-05-03|1993-04-02|COLLECT COD|SHIP|uriously final packa| +17994|552970|40504|2|23|46527.85|0.06|0.03|A|F|1993-05-19|1993-05-16|1993-06-03|DELIVER IN PERSON|SHIP| blithely regular platelets use | +17994|762899|445|3|21|41199.06|0.02|0.02|R|F|1993-05-09|1993-05-12|1993-06-05|NONE|TRUCK|even dolphins across the i| +17995|193468|43469|1|15|23421.90|0.05|0.03|N|O|1998-10-31|1998-10-24|1998-11-23|DELIVER IN PERSON|SHIP|g excuses. blithely regula| +17995|611259|36284|2|23|26915.06|0.03|0.01|N|O|1998-08-28|1998-10-09|1998-09-24|COLLECT COD|SHIP|fter the quickly even packages.| +17995|420735|33244|3|13|21524.23|0.03|0.01|N|O|1998-09-10|1998-10-25|1998-09-23|DELIVER IN PERSON|REG AIR|lyly carefully even dolphins: bravely darin| +17995|279714|29715|4|15|25405.50|0.06|0.06|N|O|1998-10-26|1998-09-04|1998-11-18|TAKE BACK RETURN|FOB|theodolites integrate regularly| +17996|317472|4991|1|21|31278.66|0.09|0.03|N|O|1995-08-07|1995-06-15|1995-08-20|NONE|MAIL|about the slyly final pac| +17996|742666|17695|2|1|1708.63|0.03|0.03|N|O|1995-07-13|1995-05-18|1995-07-28|COLLECT COD|SHIP|eodolites sleep. fox| +17996|985904|48424|3|23|45766.78|0.04|0.04|N|F|1995-06-15|1995-05-23|1995-07-11|DELIVER IN PERSON|SHIP|grate. accounts according| +17996|73756|36258|4|39|67460.25|0.06|0.02|N|F|1995-06-13|1995-06-23|1995-06-26|TAKE BACK RETURN|SHIP|otes. bold excuses cajo| +17996|610958|35983|5|16|29902.72|0.03|0.07|A|F|1995-05-22|1995-05-26|1995-06-09|DELIVER IN PERSON|SHIP|sits cajole bli| +17997|918226|5781|1|13|16174.34|0.06|0.05|N|O|1998-04-26|1998-04-20|1998-04-29|NONE|FOB|g the fluffily express| +17997|621821|34334|2|14|24399.06|0.06|0.06|N|O|1998-06-19|1998-05-17|1998-07-18|COLLECT COD|AIR|. unusual dolphins sho| +17997|942504|17541|3|42|64951.32|0.04|0.04|N|O|1998-05-20|1998-04-27|1998-06-13|TAKE BACK RETURN|FOB|efully ironic asymptotes doz| +17997|658489|8490|4|24|34738.80|0.06|0.03|N|O|1998-06-04|1998-04-22|1998-06-14|DELIVER IN PERSON|FOB|ronic reques| +17997|217351|29856|5|4|5073.36|0.03|0.02|N|O|1998-05-05|1998-06-09|1998-05-26|DELIVER IN PERSON|MAIL|quiet waters. regu| +17997|9984|9985|6|25|47349.50|0.07|0.06|N|O|1998-03-22|1998-06-03|1998-04-15|NONE|FOB|usly among the ironic ac| +17997|789030|26576|7|50|55950.00|0.10|0.05|N|O|1998-04-02|1998-06-12|1998-04-06|DELIVER IN PERSON|RAIL|ress theodolites? ideas affix quick| +17998|221583|46592|1|47|70714.79|0.02|0.06|N|O|1997-12-27|1997-11-13|1998-01-23|DELIVER IN PERSON|TRUCK|ons. blithely regular foxes boost furio| +17998|143799|18804|2|3|5528.37|0.07|0.05|N|O|1997-11-18|1997-11-12|1997-12-06|TAKE BACK RETURN|FOB| requests. quickly regula| +17998|824699|37216|3|43|69816.95|0.00|0.04|N|O|1997-12-06|1997-11-19|1997-12-20|NONE|TRUCK|g against the pending packages. furiously | +17998|705777|43320|4|2|3565.48|0.06|0.08|N|O|1997-11-09|1997-11-02|1997-11-17|DELIVER IN PERSON|REG AIR| pinto beans; unusual courts de| +17998|982301|32302|5|8|11066.08|0.04|0.00|N|O|1997-10-08|1997-10-24|1997-10-22|NONE|TRUCK|onic requests. slyly final platel| +17999|169762|32266|1|37|67775.12|0.10|0.05|N|O|1996-07-16|1996-07-23|1996-08-13|NONE|TRUCK|foxes use carefully accounts.| +17999|175731|738|2|42|75882.66|0.09|0.05|N|O|1996-08-20|1996-07-24|1996-09-11|NONE|REG AIR|ngside of t| +17999|495173|45174|3|34|39717.10|0.02|0.00|N|O|1996-06-26|1996-07-12|1996-07-16|TAKE BACK RETURN|AIR|regular accoun| +17999|358118|45640|4|2|2352.20|0.06|0.02|N|O|1996-07-12|1996-08-18|1996-08-03|DELIVER IN PERSON|TRUCK| slyly express asymptotes cajole slyly furi| +17999|873521|36039|5|47|70240.56|0.04|0.00|N|O|1996-07-18|1996-07-17|1996-08-13|COLLECT COD|MAIL|al theodoli| +18024|544101|31632|1|17|19466.36|0.03|0.01|N|F|1995-06-11|1995-07-08|1995-07-03|NONE|RAIL|- slyly careful requests| +18024|691672|41673|2|36|59891.04|0.10|0.03|N|O|1995-06-27|1995-07-12|1995-07-15|DELIVER IN PERSON|REG AIR|thely bold deposits haggle blithely blit| +18024|921497|46534|3|18|27332.10|0.04|0.05|N|O|1995-07-25|1995-08-05|1995-08-21|TAKE BACK RETURN|MAIL|r, final idea| +18024|597933|35467|4|1|2030.91|0.05|0.00|N|O|1995-09-25|1995-07-20|1995-10-17|COLLECT COD|TRUCK|osits. ironic, even packages use after the | +18024|452258|14768|5|27|32676.21|0.00|0.02|N|O|1995-10-03|1995-07-12|1995-10-09|NONE|TRUCK|jole. slyl| +18024|87299|49801|6|22|28298.38|0.09|0.00|N|O|1995-09-08|1995-07-17|1995-09-29|NONE|MAIL|inos cajole quickly caref| +18024|226844|14357|7|34|60208.22|0.10|0.06|N|O|1995-09-10|1995-07-23|1995-09-29|COLLECT COD|AIR|onic packages boost after the excuses. quic| +18025|551703|39237|1|45|78960.60|0.08|0.04|A|F|1995-05-23|1995-06-30|1995-06-04|COLLECT COD|MAIL|onic ideas sub| +18026|278100|3111|1|24|25874.16|0.01|0.06|N|O|1998-06-01|1998-04-14|1998-06-02|NONE|AIR| requests sleep about the | +18027|768073|18074|1|47|53628.88|0.07|0.03|N|O|1995-09-27|1995-09-23|1995-10-13|COLLECT COD|SHIP|gly unusual ins| +18027|998042|48043|2|10|11400.00|0.05|0.08|N|O|1995-09-11|1995-08-21|1995-10-11|COLLECT COD|SHIP| to the final, | +18027|82072|44574|3|2|2108.14|0.10|0.03|N|O|1995-11-05|1995-09-01|1995-11-26|DELIVER IN PERSON|AIR|gular packages detect f| +18027|380012|30013|4|43|46956.00|0.00|0.03|N|O|1995-10-03|1995-10-13|1995-11-01|TAKE BACK RETURN|REG AIR|even accounts wake slyl| +18028|531447|6468|1|49|72442.58|0.06|0.07|R|F|1993-09-19|1993-10-10|1993-10-11|TAKE BACK RETURN|FOB|urious packages are evenly excuses. f| +18028|26953|1954|2|1|1879.95|0.04|0.00|A|F|1993-11-06|1993-10-05|1993-11-25|DELIVER IN PERSON|MAIL|uests x-ray. bold, regular ide| +18028|992640|5160|3|21|36384.60|0.08|0.05|A|F|1993-11-08|1993-11-05|1993-11-26|DELIVER IN PERSON|SHIP|al pinto b| +18028|296752|21763|4|3|5246.22|0.07|0.06|R|F|1993-10-04|1993-11-11|1993-11-01|NONE|TRUCK|nstructions | +18028|508272|8273|5|46|58891.50|0.07|0.04|A|F|1993-11-08|1993-11-12|1993-11-11|TAKE BACK RETURN|FOB|p. slyly even pa| +18029|487222|12241|1|21|25393.20|0.02|0.02|N|O|1997-09-07|1997-09-18|1997-10-05|NONE|AIR|l instructions a| +18030|677415|39929|1|38|52910.44|0.02|0.04|R|F|1993-12-22|1993-12-07|1994-01-05|NONE|RAIL|ckages haggle finally among the accounts. | +18030|301824|39343|2|45|82161.45|0.10|0.01|R|F|1994-02-06|1994-01-13|1994-02-11|COLLECT COD|TRUCK| carefully u| +18030|742176|4691|3|25|30453.50|0.05|0.04|A|F|1993-12-08|1993-12-06|1993-12-22|NONE|MAIL|de the pen| +18030|748799|48800|4|11|20325.36|0.05|0.00|R|F|1993-12-31|1993-12-18|1994-01-08|DELIVER IN PERSON|AIR|counts against the fu| +18030|50953|38457|5|11|20943.45|0.07|0.06|R|F|1994-02-21|1994-01-20|1994-03-19|TAKE BACK RETURN|TRUCK|ffix bravely.| +18031|94457|6959|1|49|71121.05|0.09|0.00|A|F|1994-03-14|1994-02-23|1994-04-08|DELIVER IN PERSON|FOB|c requests thrash a| +18031|534841|9862|2|30|56274.60|0.02|0.06|R|F|1993-12-30|1994-02-07|1994-01-29|NONE|RAIL|ely regular theodolites. even deposit| +18031|57103|44607|3|23|24382.30|0.06|0.00|A|F|1994-04-07|1994-03-05|1994-04-14|COLLECT COD|AIR|ts. deposits s| +18031|726430|1459|4|13|18933.20|0.10|0.02|R|F|1994-03-25|1994-01-31|1994-04-12|COLLECT COD|TRUCK|s haggle blithely | +18031|97978|10480|5|11|21735.67|0.09|0.05|A|F|1994-04-18|1994-02-02|1994-04-27|COLLECT COD|FOB|forges are caref| +18056|926340|1377|1|18|24593.40|0.10|0.07|N|O|1997-07-10|1997-07-16|1997-07-30|TAKE BACK RETURN|SHIP|ns are. slyly unusual packages | +18056|983142|45662|2|25|30627.50|0.04|0.07|N|O|1997-05-15|1997-06-10|1997-05-23|NONE|MAIL|. regular packages use am| +18056|654339|4340|3|24|31039.20|0.05|0.08|N|O|1997-08-11|1997-07-30|1997-08-14|NONE|FOB|nding pinto beans haggle furiou| +18057|530076|17607|1|16|17696.80|0.10|0.00|R|F|1992-04-16|1992-04-20|1992-04-29|COLLECT COD|SHIP|detect furiously across the fu| +18058|45413|45414|1|2|2716.82|0.01|0.01|N|O|1997-08-13|1997-07-16|1997-08-18|TAKE BACK RETURN|AIR|ing, express deposits| +18059|437619|37620|1|15|23348.85|0.04|0.07|R|F|1993-11-26|1993-10-03|1993-11-30|TAKE BACK RETURN|MAIL|olites cajole| +18059|52851|27854|2|17|30665.45|0.07|0.05|A|F|1993-08-27|1993-11-08|1993-09-15|NONE|SHIP|eas. regular f| +18059|264564|39575|3|33|50442.15|0.08|0.07|R|F|1993-10-08|1993-09-15|1993-11-04|DELIVER IN PERSON|TRUCK| regular accounts. caref| +18059|524381|24382|4|15|21080.40|0.05|0.06|R|F|1993-11-23|1993-10-29|1993-11-25|DELIVER IN PERSON|MAIL| use furiously across t| +18060|578066|3089|1|5|5720.20|0.04|0.02|N|O|1997-12-31|1997-12-17|1998-01-28|TAKE BACK RETURN|REG AIR|g the caref| +18060|544745|32276|2|18|32214.96|0.06|0.03|N|O|1998-01-27|1997-12-23|1998-02-11|NONE|RAIL|s do nod blithely quiet deposits! | +18060|516550|41571|3|29|45429.37|0.10|0.08|N|O|1998-02-04|1998-01-03|1998-02-12|NONE|RAIL|special packages. busy requests try| +18061|27270|27271|1|1|1197.27|0.07|0.06|N|O|1996-08-04|1996-07-28|1996-08-16|COLLECT COD|SHIP|s wake after the slyl| +18061|324683|49696|2|46|78552.82|0.02|0.08|N|O|1996-05-04|1996-06-04|1996-06-01|DELIVER IN PERSON|MAIL|tect quickly above the special foxes. fin| +18061|939512|39513|3|45|69816.15|0.10|0.07|N|O|1996-07-29|1996-07-30|1996-08-09|TAKE BACK RETURN|MAIL|packages boost | +18061|369441|31949|4|17|25677.31|0.04|0.01|N|O|1996-06-03|1996-07-09|1996-06-15|TAKE BACK RETURN|TRUCK|ar dolphins wake fu| +18061|189698|14705|5|18|32178.42|0.10|0.07|N|O|1996-08-21|1996-06-20|1996-08-25|NONE|TRUCK|packages. fluffily express accounts | +18061|252135|27146|6|45|48920.40|0.05|0.06|N|O|1996-08-18|1996-06-12|1996-08-19|COLLECT COD|RAIL|s foxes. blithely un| +18062|855773|18291|1|9|15558.57|0.05|0.00|A|F|1993-09-26|1993-10-24|1993-10-13|TAKE BACK RETURN|MAIL|ly across the courts. final platelets wak| +18062|966762|29282|2|11|20115.92|0.02|0.06|R|F|1993-11-23|1993-11-08|1993-12-10|TAKE BACK RETURN|REG AIR|ackages. quickly regular pinto bean| +18062|362153|37168|3|30|36454.20|0.03|0.05|R|F|1993-12-09|1993-10-19|1993-12-28|DELIVER IN PERSON|REG AIR|. slyly regular requests ag| +18062|690850|28390|4|16|29453.12|0.06|0.06|A|F|1993-10-05|1993-10-01|1993-10-26|COLLECT COD|TRUCK|s are blithely except the quickly unusu| +18062|110624|35629|5|8|13076.96|0.02|0.07|R|F|1993-10-15|1993-11-20|1993-11-13|DELIVER IN PERSON|MAIL|ogged instructions.| +18062|256246|6247|6|23|27651.29|0.01|0.00|A|F|1993-09-08|1993-10-29|1993-09-12|NONE|RAIL|y. regular orbits after | +18062|719998|7541|7|15|30269.40|0.02|0.06|A|F|1993-09-22|1993-11-01|1993-10-05|COLLECT COD|AIR|the carefully thin| +18063|4149|29150|1|49|51603.86|0.09|0.03|A|F|1992-11-19|1992-12-26|1992-12-17|NONE|MAIL|times express theodo| +18088|389351|26873|1|28|40329.52|0.01|0.06|N|O|1996-06-02|1996-05-19|1996-06-17|TAKE BACK RETURN|RAIL|doubt fluffi| +18088|811853|49402|2|39|68827.59|0.04|0.05|N|O|1996-06-17|1996-06-08|1996-06-21|DELIVER IN PERSON|FOB|ckly stealthy dolphins boost| +18088|801395|26428|3|7|9074.45|0.05|0.06|N|O|1996-07-14|1996-04-17|1996-07-17|TAKE BACK RETURN|SHIP|thely express | +18088|38344|38345|4|16|20517.44|0.05|0.08|N|O|1996-03-28|1996-05-14|1996-04-14|TAKE BACK RETURN|AIR|e final requests. theodo| +18089|740804|3319|1|24|44274.48|0.10|0.01|N|O|1996-05-14|1996-07-01|1996-05-20|DELIVER IN PERSON|FOB|s. slyly iro| +18089|688167|13194|2|41|47360.33|0.04|0.07|N|O|1996-04-30|1996-06-11|1996-05-07|COLLECT COD|SHIP|nic accounts are according to the | +18089|12056|49557|3|40|38722.00|0.05|0.08|N|O|1996-05-06|1996-05-21|1996-05-07|NONE|RAIL|packages ea| +18089|615841|15842|4|2|3513.62|0.03|0.04|N|O|1996-04-10|1996-06-01|1996-05-06|COLLECT COD|REG AIR|ent requests| +18090|684089|46603|1|24|25753.20|0.03|0.00|R|F|1992-07-19|1992-07-23|1992-07-24|NONE|FOB|ackages are fluffily foxes. bold de| +18091|893507|43508|1|3|4501.38|0.07|0.07|N|O|1996-01-16|1996-01-29|1996-01-28|COLLECT COD|REG AIR|s the express reques| +18091|158078|45588|2|15|17041.05|0.06|0.06|N|O|1996-02-09|1995-12-19|1996-02-29|COLLECT COD|SHIP| blithely unusual n| +18092|171528|9038|1|41|65580.32|0.08|0.01|N|O|1995-12-14|1995-11-13|1995-12-22|NONE|FOB|y even requests; requests along t| +18092|863943|13944|2|29|55300.10|0.00|0.08|N|O|1995-10-21|1995-11-28|1995-11-11|COLLECT COD|AIR|instructions wake slyly bold foxes. special| +18093|568330|18331|1|36|50339.16|0.08|0.00|A|F|1994-01-20|1993-12-16|1994-02-04|COLLECT COD|SHIP| requests. stealthy, even ideas cajole a| +18093|917457|29976|2|31|45706.71|0.04|0.03|A|F|1993-12-07|1993-12-16|1993-12-29|TAKE BACK RETURN|MAIL|blithely along the slyly final som| +18093|697653|47654|3|21|34663.02|0.10|0.01|A|F|1993-09-26|1993-11-17|1993-10-13|NONE|TRUCK|nding accounts wake slyly pinto be| +18094|909177|21696|1|12|14233.56|0.02|0.00|N|O|1995-09-30|1995-11-26|1995-10-29|DELIVER IN PERSON|FOB|lithe foxes. quickly final foxes| +18094|530062|17593|2|32|34945.28|0.03|0.00|N|O|1995-09-24|1995-12-10|1995-10-21|NONE|RAIL|es use? packages are quickl| +18094|747222|47223|3|42|53305.98|0.03|0.08|N|O|1995-10-12|1995-11-17|1995-10-15|COLLECT COD|AIR|ly regular accounts. slyly unusual instr| +18094|553364|15876|4|7|9921.38|0.07|0.05|N|O|1996-01-09|1995-11-27|1996-02-06|NONE|SHIP|ess, bold requests unwind abov| +18094|375750|38258|5|49|89461.26|0.10|0.07|N|O|1996-01-10|1995-12-04|1996-02-08|TAKE BACK RETURN|AIR| deposits.| +18094|224613|49622|6|31|47665.60|0.05|0.04|N|O|1995-12-21|1995-12-13|1996-01-16|TAKE BACK RETURN|FOB|lphins. busily regular packages nag. idl| +18094|57157|32160|7|5|5570.75|0.06|0.04|N|O|1996-01-12|1995-11-24|1996-01-16|NONE|AIR|eposits. packages haggle slyly-- caref| +18095|621712|9249|1|2|3267.36|0.00|0.02|N|O|1996-12-29|1996-12-22|1997-01-04|COLLECT COD|AIR|engage furiousl| +18120|841142|16175|1|47|50905.70|0.06|0.00|N|O|1995-12-08|1995-12-01|1995-12-22|COLLECT COD|SHIP|arthogs sleep fluffily after the foxe| +18120|70348|45351|2|49|64598.66|0.02|0.04|N|O|1995-09-24|1995-10-31|1995-10-13|TAKE BACK RETURN|FOB|gle carefully furiously ironic requests| +18120|331843|31844|3|3|5624.49|0.04|0.05|N|O|1995-12-24|1995-10-29|1996-01-17|TAKE BACK RETURN|SHIP|ng, unusual pinto beans nag blithely| +18120|274596|12112|4|46|72246.68|0.02|0.04|N|O|1995-09-23|1995-10-15|1995-10-01|COLLECT COD|REG AIR|ealms! express instructions boost quickl| +18120|127126|39629|5|7|8071.84|0.10|0.08|N|O|1995-11-18|1995-11-18|1995-12-08|COLLECT COD|AIR|along the never | +18121|900912|13431|1|33|63124.71|0.08|0.08|R|F|1992-05-31|1992-04-26|1992-06-15|NONE|RAIL| packages. carefully final deposits ar| +18122|493285|18304|1|22|28121.72|0.10|0.05|R|F|1993-06-24|1993-05-30|1993-07-11|DELIVER IN PERSON|REG AIR|ffily special accounts. flu| +18122|625008|37521|2|1|932.97|0.07|0.03|A|F|1993-07-09|1993-04-12|1993-07-27|COLLECT COD|RAIL|egular requ| +18122|496205|46206|3|47|56455.46|0.07|0.00|R|F|1993-03-20|1993-04-11|1993-04-14|COLLECT COD|AIR|ironic instructions sn| +18123|938809|1328|1|22|40650.72|0.01|0.08|N|O|1998-08-02|1998-06-22|1998-08-11|NONE|REG AIR|inst the quickly even instru| +18123|562330|49864|2|7|9746.17|0.10|0.08|N|O|1998-05-26|1998-06-21|1998-06-17|DELIVER IN PERSON|FOB|rding to the pending packages nag blithel| +18123|73296|10800|3|12|15231.48|0.04|0.04|N|O|1998-07-08|1998-06-18|1998-07-25|COLLECT COD|TRUCK|ts sleep along the deposits. pending, | +18123|883702|8737|4|4|6742.64|0.08|0.02|N|O|1998-06-04|1998-08-13|1998-06-12|COLLECT COD|AIR|odolites dazzle ironic forges| +18123|363370|892|5|5|7166.80|0.10|0.06|N|O|1998-05-30|1998-07-03|1998-06-15|NONE|FOB|ts thrash quickly among the| +18124|348704|11211|1|45|78871.05|0.08|0.06|R|F|1994-07-11|1994-06-26|1994-07-16|TAKE BACK RETURN|REG AIR|ular accounts haggle slyly furiously r| +18124|655312|17826|2|39|49423.92|0.00|0.04|A|F|1994-05-16|1994-05-03|1994-06-12|COLLECT COD|MAIL| deposits sleep. quickly unusual foxes | +18124|815294|2843|3|4|4837.00|0.09|0.00|R|F|1994-06-16|1994-06-16|1994-06-24|DELIVER IN PERSON|SHIP|e quickly pen| +18124|643257|18282|4|28|33606.16|0.02|0.08|A|F|1994-05-29|1994-05-31|1994-06-07|COLLECT COD|MAIL|ctions breach against the s| +18125|660667|35694|1|16|26042.08|0.00|0.03|A|F|1995-02-14|1995-04-08|1995-02-21|COLLECT COD|RAIL| regular foxes. bold, even ac| +18126|100777|778|1|10|17777.70|0.03|0.04|N|O|1997-01-11|1997-01-15|1997-01-24|TAKE BACK RETURN|RAIL|refully until the| +18126|747750|10265|2|41|73706.52|0.01|0.05|N|O|1997-01-09|1997-01-19|1997-01-16|COLLECT COD|AIR|ickly. carefully ironic deposits boost| +18126|426040|26041|3|9|8694.18|0.09|0.01|N|O|1997-01-29|1997-01-10|1997-02-16|DELIVER IN PERSON|REG AIR|ts wake carefully. unusual, unusua| +18126|450790|38318|4|28|48741.56|0.06|0.07|N|O|1996-11-25|1997-01-11|1996-12-15|DELIVER IN PERSON|REG AIR|ickly regul| +18126|422332|47349|5|21|26340.51|0.07|0.04|N|O|1996-12-17|1997-01-28|1997-01-15|TAKE BACK RETURN|MAIL|deas. furiously| +18127|940125|2644|1|41|47768.28|0.06|0.02|R|F|1993-11-08|1993-12-01|1993-11-30|NONE|RAIL|ts against the c| +18127|674116|11656|2|38|41423.04|0.01|0.01|A|F|1994-01-04|1993-10-29|1994-02-03|TAKE BACK RETURN|REG AIR|eep. unusual pains wake unde| +18127|865373|15374|3|9|12044.97|0.02|0.01|R|F|1993-10-23|1993-11-25|1993-10-28|DELIVER IN PERSON|MAIL|e quickly bo| +18127|311262|11263|4|38|48383.50|0.01|0.06|A|F|1993-09-16|1993-10-30|1993-10-12|COLLECT COD|RAIL|carefully even accounts bo| +18152|173582|48589|1|22|36422.76|0.07|0.05|A|F|1993-12-22|1993-12-22|1994-01-12|COLLECT COD|FOB|t the unusual, final packages. iro| +18152|387827|25349|2|35|67018.35|0.06|0.03|A|F|1994-01-29|1994-01-22|1994-02-22|COLLECT COD|RAIL|arefully re| +18152|195630|45631|3|32|55220.16|0.04|0.06|A|F|1993-11-27|1994-01-04|1993-12-22|TAKE BACK RETURN|TRUCK|ounts wake. regular,| +18152|939308|26863|4|49|66015.74|0.07|0.04|A|F|1994-01-25|1993-12-24|1994-02-23|NONE|TRUCK|long the ironic pinto beans| +18153|2536|40037|1|10|14385.30|0.09|0.08|R|F|1994-08-20|1994-09-20|1994-08-29|NONE|MAIL| fluffily after the fluffily regular| +18154|302011|39530|1|41|41533.00|0.00|0.06|A|F|1992-10-28|1992-12-02|1992-11-12|DELIVER IN PERSON|MAIL|pths! even, | +18154|884573|22125|2|29|45168.37|0.03|0.07|R|F|1992-10-01|1992-10-05|1992-10-05|DELIVER IN PERSON|SHIP|even requests doze. pinto beans boost f| +18154|12267|49768|3|15|17688.90|0.09|0.01|R|F|1992-12-24|1992-11-18|1993-01-03|DELIVER IN PERSON|MAIL|final courts across the unusual accoun| +18154|166289|41296|4|8|10842.24|0.06|0.07|R|F|1992-12-09|1992-12-02|1992-12-27|COLLECT COD|MAIL| packages. slyly bold | +18154|814918|14919|5|44|80646.28|0.08|0.07|A|F|1992-11-13|1992-10-03|1992-11-22|TAKE BACK RETURN|TRUCK|le furiously a| +18154|312030|37043|6|29|30218.58|0.03|0.08|R|F|1992-10-15|1992-10-12|1992-11-08|NONE|TRUCK|yly regular accounts haggle slyly ex| +18155|606875|31900|1|10|17818.40|0.07|0.08|A|F|1992-09-22|1992-09-23|1992-10-09|COLLECT COD|MAIL|sts haggle according to the accounts. fu| +18156|169528|44535|1|10|15975.20|0.08|0.01|N|O|1997-07-19|1997-09-06|1997-08-13|TAKE BACK RETURN|AIR|ven accounts sleep furiously a| +18156|249272|36785|2|42|51292.92|0.03|0.00|N|O|1997-06-12|1997-07-22|1997-06-30|COLLECT COD|AIR|instructions| +18156|513012|38033|3|8|8199.92|0.03|0.07|N|O|1997-06-25|1997-08-08|1997-07-10|DELIVER IN PERSON|REG AIR|uickly regular instructi| +18156|190394|15401|4|31|46016.09|0.09|0.01|N|O|1997-07-04|1997-07-20|1997-08-01|COLLECT COD|MAIL|e fluffy instruct| +18156|936936|49455|5|30|59186.70|0.06|0.07|N|O|1997-08-13|1997-07-26|1997-08-17|DELIVER IN PERSON|FOB|e furiously daring fra| +18156|73043|23044|6|45|45721.80|0.03|0.02|N|O|1997-08-14|1997-08-10|1997-08-21|TAKE BACK RETURN|RAIL|riously express pinto beans: final, ent| +18156|624231|36744|7|31|35811.20|0.10|0.08|N|O|1997-10-03|1997-07-31|1997-10-13|DELIVER IN PERSON|SHIP|s. blithely regular deposits was after t| +18157|448324|23341|1|28|35624.40|0.00|0.00|R|F|1992-10-25|1992-10-08|1992-11-01|TAKE BACK RETURN|RAIL| the accounts. bold| +18157|978678|16236|2|41|72021.83|0.05|0.08|A|F|1992-10-14|1992-10-08|1992-11-10|DELIVER IN PERSON|MAIL|ests. slyly special deposits h| +18157|631875|44388|3|3|5420.52|0.03|0.00|A|F|1992-12-22|1992-11-07|1993-01-15|TAKE BACK RETURN|FOB|s wake furiously along the even, ev| +18157|910811|48366|4|32|58296.64|0.09|0.02|A|F|1992-10-04|1992-11-22|1992-10-11|NONE|AIR|ic deposits. fu| +18157|993989|43990|5|23|47907.62|0.03|0.05|A|F|1992-11-05|1992-11-29|1992-11-10|DELIVER IN PERSON|FOB|ly regular accounts sleep carefully alo| +18157|971098|33618|6|43|50269.15|0.05|0.02|R|F|1992-12-23|1992-11-10|1992-12-24|TAKE BACK RETURN|SHIP| regular depth| +18158|862140|37175|1|26|28654.60|0.02|0.07|R|F|1993-11-28|1993-12-17|1993-12-24|DELIVER IN PERSON|AIR|ress carefully. instructions wake blithely | +18158|974079|36599|2|23|26519.69|0.08|0.01|R|F|1993-11-12|1993-12-25|1993-11-23|NONE|RAIL|ckages. special, | +18158|342737|42738|3|24|42713.28|0.00|0.04|A|F|1994-01-30|1993-12-06|1994-02-03|COLLECT COD|RAIL|ic ideas. furiously expres| +18158|377835|2850|4|48|91815.36|0.08|0.04|A|F|1994-02-01|1993-12-12|1994-02-09|NONE|AIR|ns. carefully ir| +18158|257969|20475|5|38|73224.10|0.10|0.01|R|F|1993-11-01|1993-11-30|1993-11-06|TAKE BACK RETURN|REG AIR| accounts are carefully carefully ironic pa| +18159|234659|9668|1|19|30279.16|0.10|0.02|N|F|1995-06-17|1995-05-01|1995-07-08|COLLECT COD|TRUCK|kly pending accounts po| +18159|901635|39190|2|37|60553.83|0.07|0.08|A|F|1995-05-05|1995-05-13|1995-05-17|TAKE BACK RETURN|MAIL|carefully according to the r| +18159|766328|41359|3|49|68320.21|0.06|0.02|R|F|1995-05-08|1995-06-08|1995-05-19|COLLECT COD|AIR|fluffily ironic| +18159|666516|41543|4|37|54851.76|0.01|0.00|A|F|1995-04-17|1995-05-16|1995-04-20|TAKE BACK RETURN|AIR|tipliers haggle quickly around| +18159|127349|2354|5|15|20645.10|0.09|0.02|A|F|1995-04-24|1995-06-05|1995-05-14|TAKE BACK RETURN|SHIP|above the realms| +18159|354386|4387|6|10|14403.70|0.08|0.07|N|O|1995-07-12|1995-05-29|1995-08-11|COLLECT COD|SHIP| packages thrash furiously around the | +18184|240364|27877|1|1|1304.35|0.09|0.02|N|O|1997-11-03|1997-09-04|1997-11-21|NONE|AIR|ld foxes: pending, permanent instruction| +18184|784707|47223|2|29|51958.43|0.09|0.03|N|O|1997-09-07|1997-09-23|1997-09-09|TAKE BACK RETURN|TRUCK|s. silently unusual requests wake.| +18184|565602|3136|3|25|41689.50|0.09|0.00|N|O|1997-10-21|1997-10-11|1997-11-13|NONE|RAIL|y bold accounts wake across the qui| +18184|60639|35642|4|19|30392.97|0.04|0.08|N|O|1997-11-17|1997-08-30|1997-12-13|COLLECT COD|REG AIR|kly bold packages. carefully i| +18185|194278|44279|1|10|13722.70|0.09|0.00|R|F|1994-12-18|1995-01-12|1995-01-09|TAKE BACK RETURN|FOB|l the final ideas could have to lose sly| +18185|228641|16154|2|9|14126.67|0.09|0.02|A|F|1995-02-28|1995-01-14|1995-03-27|TAKE BACK RETURN|MAIL|cajole slyly a| +18185|753685|3686|3|13|22602.45|0.04|0.07|A|F|1994-11-27|1994-12-15|1994-12-06|TAKE BACK RETURN|MAIL|fully bold| +18185|181592|31593|4|8|13388.72|0.09|0.08|A|F|1995-01-01|1994-12-06|1995-01-18|DELIVER IN PERSON|TRUCK|ironic requests wak| +18186|938830|13867|1|49|91570.71|0.10|0.04|A|F|1994-06-14|1994-09-01|1994-06-15|COLLECT COD|AIR|nstructions. pe| +18186|902675|40230|2|24|40263.12|0.08|0.07|A|F|1994-10-05|1994-07-17|1994-10-21|COLLECT COD|MAIL|cies. express, bold foxes kindle f| +18186|257089|19595|3|47|49165.29|0.10|0.01|A|F|1994-09-08|1994-08-08|1994-09-27|DELIVER IN PERSON|SHIP|uriously fi| +18186|892348|4866|4|48|64334.40|0.06|0.03|R|F|1994-08-20|1994-08-28|1994-08-25|TAKE BACK RETURN|SHIP|ncies kind| +18186|681657|31658|5|28|45881.36|0.10|0.01|A|F|1994-07-17|1994-07-13|1994-08-05|NONE|REG AIR| sleep. bold, ironic multipliers integra| +18187|177929|2936|1|9|18062.28|0.00|0.00|N|O|1996-09-14|1996-10-27|1996-10-07|TAKE BACK RETURN|MAIL|ily regular requests could have| +18187|445254|20271|2|6|7195.38|0.03|0.02|N|O|1996-10-28|1996-09-18|1996-11-23|NONE|TRUCK|nts. carefully ironic asymptotes | +18187|378095|28096|3|20|23461.60|0.08|0.05|N|O|1996-09-02|1996-09-20|1996-09-10|DELIVER IN PERSON|SHIP|sly special deposits. furiously final the| +18188|98038|10540|1|3|3108.09|0.00|0.04|A|F|1994-02-08|1994-03-24|1994-02-13|COLLECT COD|RAIL|lithely even instructions be| +18188|709853|47396|2|4|7451.28|0.04|0.06|A|F|1994-02-20|1994-03-10|1994-02-27|DELIVER IN PERSON|SHIP|he quickly regular requ| +18188|488765|26293|3|16|28059.84|0.06|0.05|A|F|1994-04-01|1994-03-09|1994-04-17|TAKE BACK RETURN|AIR|ress instructions wake blithely blit| +18188|658668|33695|4|31|50425.53|0.04|0.02|A|F|1994-03-24|1994-04-08|1994-03-28|DELIVER IN PERSON|FOB| blithely even depos| +18188|217104|42113|5|37|37780.33|0.08|0.07|A|F|1994-04-03|1994-03-28|1994-04-12|TAKE BACK RETURN|MAIL|e regular ideas. | +18188|865726|3278|6|43|72742.24|0.02|0.03|R|F|1994-05-26|1994-03-11|1994-06-04|NONE|SHIP|ole blithely at the packages. final forg| +18188|241764|41765|7|11|18763.25|0.04|0.05|R|F|1994-04-21|1994-03-20|1994-05-09|NONE|TRUCK|oxes. slyly ironic | +18189|313348|38361|1|48|65343.84|0.04|0.01|A|F|1993-11-23|1993-09-06|1993-12-15|TAKE BACK RETURN|SHIP|foxes wake against the even, thin instruc| +18189|432692|32693|2|16|25994.72|0.05|0.06|A|F|1993-11-22|1993-10-19|1993-12-18|DELIVER IN PERSON|MAIL| courts. carefu| +18189|253308|3309|3|34|42883.86|0.09|0.00|A|F|1993-11-10|1993-10-20|1993-12-03|TAKE BACK RETURN|TRUCK|oxes. carefull| +18190|914039|14040|1|12|12635.88|0.08|0.01|R|F|1992-10-17|1992-10-05|1992-10-23|COLLECT COD|REG AIR|ly about the blit| +18190|238148|25661|2|30|32583.90|0.04|0.01|A|F|1992-11-15|1992-11-02|1992-12-10|NONE|MAIL|olites haggle | +18190|540753|40754|3|25|44843.25|0.07|0.01|A|F|1992-11-10|1992-10-11|1992-12-06|NONE|REG AIR|se carefully. slyly final instruc| +18190|433217|33218|4|26|29904.94|0.10|0.00|A|F|1992-10-07|1992-11-06|1992-10-09|TAKE BACK RETURN|MAIL|s. foxes about the regula| +18190|76694|1697|5|9|15036.21|0.02|0.03|R|F|1992-09-19|1992-10-11|1992-10-15|DELIVER IN PERSON|FOB|ffily ironic de| +18191|166497|29001|1|16|25015.84|0.07|0.03|N|O|1996-06-13|1996-08-20|1996-06-25|TAKE BACK RETURN|SHIP|ress pinto | +18191|309618|22125|2|26|42317.60|0.10|0.04|N|O|1996-05-31|1996-08-19|1996-06-07|COLLECT COD|REG AIR|ial requests at the carefully speci| +18191|749031|11546|3|15|16200.00|0.02|0.04|N|O|1996-05-28|1996-07-22|1996-06-25|NONE|RAIL|accounts. quickly idle acco| +18216|166832|41839|1|5|9494.15|0.01|0.05|N|O|1998-06-12|1998-08-04|1998-06-20|NONE|MAIL|ly near the carefully unusual excuses. quic| +18216|939838|2357|2|32|60089.28|0.00|0.07|N|O|1998-05-28|1998-08-04|1998-05-31|DELIVER IN PERSON|TRUCK| beans use fluffily carefu| +18216|849981|12498|3|19|36687.86|0.02|0.00|N|O|1998-06-28|1998-08-13|1998-07-24|COLLECT COD|RAIL|ly ironic excuses cajole carefully. u| +18216|630450|30451|4|32|44173.44|0.06|0.03|N|O|1998-08-23|1998-07-11|1998-09-13|TAKE BACK RETURN|AIR|ely unusual requests cajole about the ir| +18216|968688|31208|5|16|28106.24|0.07|0.05|N|O|1998-06-09|1998-06-22|1998-07-06|TAKE BACK RETURN|FOB|accounts! regular, regular theodolites wa| +18216|722476|22477|6|23|34464.12|0.09|0.08|N|O|1998-07-04|1998-08-14|1998-07-10|COLLECT COD|REG AIR|use blithe| +18217|640335|2848|1|8|10202.40|0.00|0.07|A|F|1994-01-30|1994-02-01|1994-02-06|COLLECT COD|MAIL| the final pinto beans? slyly| +18218|505500|43031|1|13|19571.24|0.07|0.00|A|F|1995-06-05|1995-06-16|1995-06-17|COLLECT COD|MAIL| ironic accounts was qu| +18218|926467|1504|2|26|38828.92|0.03|0.06|R|F|1995-04-22|1995-07-07|1995-04-24|NONE|FOB|rnes dazzle careful| +18219|158151|45661|1|12|14509.80|0.00|0.07|N|O|1997-07-22|1997-07-11|1997-07-28|DELIVER IN PERSON|REG AIR| braids over the iro| +18219|34785|47286|2|35|60192.30|0.07|0.02|N|O|1997-09-05|1997-08-06|1997-09-11|NONE|REG AIR|asymptotes sublate. blithely even forg| +18219|618538|18539|3|3|4369.50|0.06|0.02|N|O|1997-07-30|1997-08-31|1997-08-10|NONE|REG AIR|refully ironic deposits cajole. hocke| +18219|754493|17009|4|43|66540.78|0.00|0.06|N|O|1997-07-13|1997-08-12|1997-07-17|DELIVER IN PERSON|TRUCK|cies cajole quickly even requests. furi| +18219|763121|38152|5|18|21313.62|0.06|0.06|N|O|1997-09-11|1997-07-28|1997-09-23|COLLECT COD|AIR|efully. qu| +18220|574358|24359|1|33|47266.89|0.01|0.01|R|F|1992-08-27|1992-10-06|1992-09-03|NONE|MAIL|hely ironic ac| +18220|228109|15622|2|16|16593.44|0.09|0.06|A|F|1992-08-11|1992-08-18|1992-09-08|COLLECT COD|AIR|s unwind blithely. b| +18220|821466|9015|3|7|9711.94|0.02|0.06|A|F|1992-09-15|1992-08-30|1992-10-08|NONE|TRUCK|, pending theodolite| +18220|367060|42075|4|16|18032.80|0.05|0.05|R|F|1992-07-12|1992-09-29|1992-08-01|DELIVER IN PERSON|AIR|ar requests wake | +18220|173089|10599|5|7|8134.56|0.02|0.07|R|F|1992-10-08|1992-10-03|1992-11-04|DELIVER IN PERSON|TRUCK|fter the sometimes express packages| +18221|257392|32403|1|4|5397.52|0.01|0.00|N|O|1998-08-23|1998-07-08|1998-09-14|DELIVER IN PERSON|TRUCK|y. blithely bold packages affi| +18221|976279|13837|2|23|31170.29|0.10|0.01|N|O|1998-07-02|1998-07-18|1998-07-28|TAKE BACK RETURN|RAIL|efully across the special requests. blith| +18221|313457|38470|3|23|33820.12|0.07|0.00|N|O|1998-07-20|1998-07-23|1998-07-31|TAKE BACK RETURN|REG AIR|lyly final| +18221|262959|12960|4|33|63424.02|0.05|0.02|N|O|1998-09-29|1998-08-26|1998-10-11|TAKE BACK RETURN|RAIL| slyly regular accounts play bl| +18221|548906|23927|5|31|60601.28|0.03|0.01|N|O|1998-06-18|1998-08-22|1998-06-24|NONE|RAIL|uickly special accounts| +18221|447680|35205|6|12|19531.92|0.01|0.00|N|O|1998-08-03|1998-07-22|1998-08-11|TAKE BACK RETURN|AIR| pending platelets subla| +18221|143101|5604|7|2|2288.20|0.08|0.03|N|O|1998-07-08|1998-08-10|1998-07-17|TAKE BACK RETURN|SHIP|e dependencies. furi| +18222|90342|15345|1|44|58622.96|0.00|0.02|R|F|1994-07-26|1994-08-27|1994-08-24|DELIVER IN PERSON|AIR|fully before the regularly eve| +18222|364653|14654|2|32|54964.48|0.02|0.01|R|F|1994-10-06|1994-08-06|1994-10-07|DELIVER IN PERSON|REG AIR|ironic accounts are thi| +18222|720942|45971|3|33|64776.03|0.10|0.05|R|F|1994-09-20|1994-08-21|1994-10-16|TAKE BACK RETURN|AIR| the foxes; slyly regular accounts hag| +18222|861970|11971|4|28|54094.04|0.01|0.00|R|F|1994-08-24|1994-07-24|1994-09-02|DELIVER IN PERSON|RAIL|he careful| +18222|118926|6433|5|41|79741.72|0.02|0.08|A|F|1994-08-25|1994-09-15|1994-09-04|TAKE BACK RETURN|FOB|osits. final, bold deposits det| +18222|779169|29170|6|37|46180.81|0.01|0.03|R|F|1994-07-27|1994-09-08|1994-08-12|COLLECT COD|AIR|fluffily slow pl| +18222|489034|39035|7|25|25575.25|0.00|0.03|A|F|1994-07-25|1994-09-03|1994-08-05|DELIVER IN PERSON|SHIP| ironic deposits are slyly alongs| +18223|186042|36043|1|8|9024.32|0.01|0.04|N|O|1996-01-06|1995-12-09|1996-02-02|DELIVER IN PERSON|FOB|final instructions cajole furiously unde| +18223|802176|14693|2|44|47437.72|0.10|0.03|N|O|1996-01-05|1995-12-14|1996-02-01|DELIVER IN PERSON|MAIL|carefully quickly spec| +18223|165693|15694|3|12|21104.28|0.00|0.02|N|O|1995-10-29|1996-01-04|1995-11-18|TAKE BACK RETURN|TRUCK|quick instructions. carefully| +18223|794128|31674|4|13|15887.17|0.00|0.03|N|O|1996-02-12|1995-12-08|1996-02-18|NONE|FOB|d the fina| +18223|906545|44100|5|19|29478.50|0.04|0.03|N|O|1996-01-04|1996-01-04|1996-01-24|TAKE BACK RETURN|MAIL|le about the ironic ideas! slyly regular de| +18248|967456|5014|1|27|41132.07|0.03|0.01|N|O|1997-07-19|1997-09-06|1997-08-17|COLLECT COD|MAIL|r deposits. slyly regular depend| +18248|28859|28860|2|25|44696.25|0.10|0.00|N|O|1997-08-13|1997-08-20|1997-09-11|NONE|TRUCK|nt deposits i| +18249|759473|47019|1|11|16856.84|0.08|0.02|R|F|1992-12-16|1993-02-21|1992-12-30|NONE|TRUCK|ly express excuses.| +18250|180439|5446|1|26|39505.18|0.10|0.04|A|F|1992-04-29|1992-03-21|1992-05-07|COLLECT COD|RAIL|y regular requests.| +18250|633063|45576|2|6|5976.18|0.03|0.00|A|F|1992-01-29|1992-02-29|1992-02-01|NONE|AIR|eposits affix carefully | +18251|690403|15430|1|20|27867.40|0.05|0.03|N|O|1996-06-15|1996-06-01|1996-07-08|DELIVER IN PERSON|TRUCK|thely ironic theodolit| +18251|600190|25215|2|37|40335.92|0.09|0.03|N|O|1996-05-25|1996-06-03|1996-06-15|COLLECT COD|FOB|thily ironi| +18251|385535|35536|3|19|30789.88|0.05|0.01|N|O|1996-04-23|1996-04-28|1996-04-28|COLLECT COD|REG AIR|sly pending dependencies. carefully unus| +18251|673450|10990|4|5|7117.10|0.05|0.08|N|O|1996-03-10|1996-05-01|1996-04-04|TAKE BACK RETURN|MAIL|riously blithely regular instruc| +18251|660751|10752|5|39|66757.08|0.00|0.00|N|O|1996-06-09|1996-04-13|1996-07-05|COLLECT COD|AIR|yly regular packages. quickl| +18251|236867|11876|6|20|36077.00|0.05|0.00|N|O|1996-06-29|1996-04-19|1996-07-17|DELIVER IN PERSON|SHIP|usly ironic deposits detect after the fi| +18252|237983|488|1|22|42261.34|0.09|0.05|A|F|1993-07-05|1993-07-03|1993-07-25|COLLECT COD|TRUCK|e pending epitaphs. blithely| +18252|772551|47582|2|21|34093.92|0.06|0.04|A|F|1993-08-13|1993-07-03|1993-08-20|TAKE BACK RETURN|AIR|refully silent| +18252|254476|4477|3|47|67231.62|0.00|0.01|A|F|1993-06-18|1993-06-06|1993-07-13|TAKE BACK RETURN|AIR|ests. stealthily eve| +18252|963023|581|4|16|17375.68|0.09|0.03|A|F|1993-08-02|1993-06-26|1993-08-22|COLLECT COD|AIR|c packages was slyly before the ironic dep| +18253|534774|9795|1|22|39792.50|0.02|0.03|R|F|1994-01-04|1994-03-20|1994-01-23|NONE|REG AIR|ording to the final, even accounts wake bol| +18253|940946|3465|2|44|87423.60|0.03|0.02|R|F|1994-02-03|1994-03-15|1994-02-16|TAKE BACK RETURN|FOB|ully into the regular platelets. | +18254|715200|27715|1|43|52252.31|0.06|0.06|N|O|1996-03-17|1996-04-19|1996-03-31|DELIVER IN PERSON|MAIL|packages. express, ironic | +18254|362743|25251|2|3|5417.19|0.09|0.02|N|O|1996-06-17|1996-04-13|1996-07-09|COLLECT COD|MAIL| ironic ideas. slyly express instruct| +18254|612667|25180|3|9|14216.67|0.04|0.06|N|O|1996-04-17|1996-04-04|1996-04-22|COLLECT COD|MAIL|egular packages detect carefu| +18254|89241|26745|4|6|7381.44|0.05|0.03|N|O|1996-05-03|1996-04-11|1996-05-04|NONE|REG AIR|dolphins. silently unusual asymp| +18254|858616|46168|5|13|20469.41|0.10|0.03|N|O|1996-02-29|1996-04-23|1996-03-22|COLLECT COD|AIR|of the unusual, express | +18254|755543|30574|6|44|70334.44|0.07|0.04|N|O|1996-05-18|1996-05-02|1996-06-06|COLLECT COD|RAIL|c excuses lo| +18254|407241|32258|7|20|22964.40|0.08|0.01|N|O|1996-03-15|1996-05-05|1996-03-18|COLLECT COD|MAIL|y regular instructions are quic| +18255|483233|20761|1|3|3648.63|0.09|0.08|N|O|1997-05-03|1997-05-22|1997-05-31|COLLECT COD|RAIL| sleep furiously whithout the fi| +18255|688765|38766|2|25|43843.25|0.00|0.01|N|O|1997-04-28|1997-05-25|1997-05-28|DELIVER IN PERSON|SHIP| the carefully| +18255|71022|21023|3|9|8937.18|0.04|0.02|N|O|1997-05-24|1997-05-19|1997-05-27|NONE|MAIL|elets are carefully slyly special| +18280|481664|31665|1|15|24684.60|0.06|0.04|R|F|1993-02-15|1993-01-31|1993-03-12|NONE|TRUCK|l accounts. regular requests haggle| +18281|400043|12552|1|27|25461.54|0.10|0.00|N|O|1996-12-15|1996-10-29|1997-01-07|DELIVER IN PERSON|TRUCK|ss, ironic foxes| +18281|516287|3818|2|38|49523.88|0.05|0.05|N|O|1996-11-03|1996-10-21|1996-12-03|TAKE BACK RETURN|SHIP| slyly quick requests. blithely ir| +18281|227754|40259|3|5|8408.70|0.01|0.08|N|O|1996-10-31|1996-11-01|1996-11-21|COLLECT COD|AIR|nding accounts about the quickly express | +18281|861419|48971|4|49|67638.13|0.07|0.00|N|O|1996-11-15|1996-11-09|1996-11-23|COLLECT COD|RAIL|s above the excuses wak| +18281|869104|19105|5|31|33264.86|0.01|0.00|N|O|1996-09-21|1996-11-26|1996-10-03|COLLECT COD|REG AIR|sheaves breach quickly | +18281|29656|42157|6|38|60254.70|0.05|0.05|N|O|1996-10-12|1996-12-02|1996-10-30|COLLECT COD|MAIL|eposits among the sil| +18281|426443|26444|7|29|39713.18|0.05|0.06|N|O|1996-12-25|1996-11-24|1997-01-13|NONE|TRUCK|eodolites. blith| +18282|226775|1784|1|47|79982.72|0.04|0.04|N|O|1996-04-14|1996-04-27|1996-05-13|TAKE BACK RETURN|RAIL|osits should haggle furiously. slow | +18282|392391|42392|2|20|29667.60|0.07|0.05|N|O|1996-05-14|1996-06-07|1996-05-23|NONE|REG AIR|ously even excuses sleep furi| +18282|901515|39070|3|44|66724.68|0.02|0.03|N|O|1996-04-19|1996-05-08|1996-05-05|COLLECT COD|FOB|iously careful asymptotes ca| +18282|750161|25192|4|23|27855.99|0.10|0.06|N|O|1996-06-13|1996-06-01|1996-06-14|DELIVER IN PERSON|RAIL|carefully accordi| +18283|915615|15616|1|6|9783.42|0.04|0.03|A|F|1994-08-11|1994-06-23|1994-08-26|NONE|REG AIR|ions detect slyly packages. packages wa| +18283|726455|38970|2|27|39998.34|0.01|0.01|R|F|1994-07-01|1994-07-13|1994-07-31|TAKE BACK RETURN|FOB|c foxes. closely unusual packages cajole| +18283|527035|2056|3|19|20178.19|0.05|0.01|A|F|1994-05-01|1994-06-16|1994-05-22|DELIVER IN PERSON|SHIP|lithely regular request| +18283|868160|18161|4|41|46252.92|0.09|0.04|R|F|1994-08-25|1994-06-02|1994-09-08|NONE|MAIL|olites solve| +18283|154939|29946|5|33|65799.69|0.05|0.01|R|F|1994-08-07|1994-07-27|1994-08-11|DELIVER IN PERSON|RAIL|ets. perman| +18284|434852|47361|1|21|37523.43|0.01|0.04|N|O|1996-07-12|1996-08-23|1996-07-20|DELIVER IN PERSON|TRUCK|special acco| +18285|302052|14559|1|41|43215.64|0.00|0.05|A|F|1992-04-26|1992-04-17|1992-05-09|TAKE BACK RETURN|RAIL|, unusual g| +18285|576338|1361|2|9|12728.79|0.03|0.01|A|F|1992-04-01|1992-04-18|1992-04-21|TAKE BACK RETURN|MAIL|nag blithely. blithely furious deposits are| +18285|505823|5824|3|44|80467.20|0.07|0.06|R|F|1992-03-03|1992-03-07|1992-03-13|DELIVER IN PERSON|MAIL|r accounts. | +18285|365113|40128|4|46|54192.60|0.00|0.00|R|F|1992-02-27|1992-03-25|1992-03-23|DELIVER IN PERSON|TRUCK|. carefully unusual requests haggle furi| +18285|441428|41429|5|48|65731.20|0.06|0.05|R|F|1992-02-20|1992-03-08|1992-03-14|NONE|TRUCK|ly ironic attainments boost| +18285|75377|12881|6|18|24342.66|0.10|0.05|A|F|1992-04-06|1992-04-16|1992-04-20|TAKE BACK RETURN|FOB|ost quickly quickly regular reque| +18286|833458|21007|1|24|33393.84|0.07|0.05|N|O|1998-04-17|1998-03-17|1998-05-10|DELIVER IN PERSON|REG AIR|use after the fu| +18286|918491|31010|2|44|66415.80|0.07|0.05|N|O|1998-01-06|1998-02-23|1998-01-21|TAKE BACK RETURN|AIR| haggle furiously ac| +18286|73538|23539|3|33|49880.49|0.10|0.01|N|O|1998-04-01|1998-01-24|1998-04-24|COLLECT COD|REG AIR|lyly final instruc| +18286|951778|14298|4|22|40254.06|0.06|0.00|N|O|1997-12-30|1998-02-09|1998-01-26|DELIVER IN PERSON|AIR|tes solve for the furio| +18286|521807|21808|5|13|23774.14|0.10|0.08|N|O|1998-02-27|1998-02-17|1998-03-08|DELIVER IN PERSON|MAIL| requests breach fluffily after the| +18287|963805|26325|1|23|42981.48|0.06|0.08|A|F|1994-05-19|1994-04-03|1994-05-26|COLLECT COD|MAIL|ent platel| +18287|669732|44759|2|39|66366.30|0.04|0.06|A|F|1994-03-06|1994-05-04|1994-03-14|TAKE BACK RETURN|AIR|posits x-ray fluffily against the even| +18287|183401|33402|3|31|46016.40|0.03|0.07|A|F|1994-04-10|1994-04-19|1994-04-29|NONE|FOB|slyly final packages use slyly. b| +18287|413303|25812|4|3|3648.84|0.10|0.06|R|F|1994-06-03|1994-04-11|1994-06-30|TAKE BACK RETURN|SHIP|thely instructions-- final,| +18287|371917|21918|5|15|29833.50|0.05|0.01|A|F|1994-03-08|1994-05-01|1994-03-14|TAKE BACK RETURN|MAIL|ep blithely. slowly fluf| +18287|798998|24029|6|49|102751.04|0.08|0.08|A|F|1994-03-18|1994-04-18|1994-04-10|DELIVER IN PERSON|REG AIR|ngage furiously quietly ironic account| +18312|616121|3658|1|26|26964.34|0.10|0.03|A|F|1993-01-12|1992-12-29|1993-02-01|TAKE BACK RETURN|RAIL|osits sleep carefully.| +18312|131951|31952|2|1|1982.95|0.00|0.03|A|F|1992-12-03|1992-12-11|1992-12-14|COLLECT COD|MAIL|s deposits.| +18312|688360|13387|3|11|14831.63|0.04|0.03|R|F|1993-01-11|1993-01-11|1993-02-06|DELIVER IN PERSON|RAIL|ke furious| +18312|262144|49660|4|42|46457.46|0.09|0.04|A|F|1992-12-09|1992-12-01|1992-12-27|DELIVER IN PERSON|TRUCK|eposits boost furiously expr| +18312|839275|39276|5|41|49783.43|0.02|0.01|R|F|1992-12-02|1992-12-02|1992-12-21|NONE|REG AIR|ns use slyly across the slyly ironic| +18312|678820|3847|6|23|41372.17|0.01|0.07|A|F|1992-11-20|1992-12-06|1992-12-08|TAKE BACK RETURN|AIR|pending, regu| +18313|105298|17801|1|12|15639.48|0.04|0.03|A|F|1994-08-12|1994-06-05|1994-08-28|COLLECT COD|FOB|c theodolites use above the special,| +18313|741232|28775|2|48|61113.60|0.05|0.05|R|F|1994-06-23|1994-06-08|1994-07-05|TAKE BACK RETURN|MAIL|osits hinder slyly slyly bold account| +18313|878190|40708|3|36|42053.40|0.08|0.03|R|F|1994-06-12|1994-05-26|1994-06-14|COLLECT COD|AIR|deas. fluffily special deposits ar| +18314|776355|1386|1|48|68703.36|0.03|0.02|N|O|1995-10-15|1995-10-19|1995-10-17|DELIVER IN PERSON|AIR|ons. furiously final| +18314|196648|21655|2|5|8723.20|0.01|0.00|N|O|1995-09-02|1995-09-10|1995-09-22|DELIVER IN PERSON|TRUCK|fluffily express packages. s| +18314|56705|44209|3|31|51512.70|0.02|0.01|N|O|1995-11-20|1995-09-25|1995-12-06|NONE|MAIL|wake about the fluffily fluffy reque| +18314|32959|20460|4|5|9459.75|0.10|0.04|N|O|1995-09-17|1995-10-13|1995-10-10|NONE|AIR|thely bold deposits boost careful| +18314|930819|43338|5|25|46244.25|0.06|0.07|N|O|1995-09-16|1995-09-06|1995-09-26|TAKE BACK RETURN|RAIL|fluffily pending package| +18314|274152|24153|6|36|40541.04|0.01|0.01|N|O|1995-09-04|1995-09-23|1995-09-12|DELIVER IN PERSON|SHIP| excuses alon| +18315|877612|2647|1|44|69941.08|0.10|0.06|N|O|1997-12-26|1997-11-30|1998-01-09|COLLECT COD|FOB|regular requests. carefull| +18315|14871|27372|2|47|83935.89|0.10|0.05|N|O|1998-01-23|1997-12-23|1998-02-21|TAKE BACK RETURN|FOB|ges are finally express asymptotes. carefu| +18315|934500|9537|3|29|44499.34|0.10|0.05|N|O|1997-11-01|1998-01-26|1997-11-07|TAKE BACK RETURN|REG AIR|bold packages. unusual ideas poach enti| +18316|755531|43077|1|15|23797.50|0.02|0.07|A|F|1993-10-10|1993-10-12|1993-10-25|NONE|AIR|fluffy accounts. express requests cajole ca| +18316|196375|33885|2|29|42669.73|0.03|0.06|A|F|1993-09-02|1993-10-11|1993-09-19|COLLECT COD|AIR|ake slyly. furiously| +18316|460607|48135|3|35|54865.30|0.07|0.05|A|F|1993-09-01|1993-09-20|1993-09-18|TAKE BACK RETURN|SHIP|ar instructions a| +18317|343767|31286|1|9|16296.75|0.04|0.08|N|O|1997-09-16|1997-08-09|1997-09-20|DELIVER IN PERSON|TRUCK|nic packages haggle quickly | +18318|708303|33332|1|32|41960.64|0.10|0.04|N|O|1997-07-13|1997-08-14|1997-08-09|NONE|FOB|onic foxes boost. si| +18318|447891|35416|2|43|79071.41|0.10|0.04|N|O|1997-06-28|1997-07-26|1997-07-22|NONE|AIR|ts. blithely pending platel| +18318|687734|25274|3|45|77476.50|0.04|0.07|N|O|1997-08-29|1997-07-28|1997-09-18|COLLECT COD|SHIP|kages wake blithely; theo| +18318|738432|13461|4|31|45582.40|0.01|0.01|N|O|1997-09-15|1997-08-19|1997-09-24|DELIVER IN PERSON|AIR|ithely silent ide| +18318|815523|28040|5|14|20138.72|0.09|0.06|N|O|1997-06-27|1997-08-07|1997-07-12|NONE|FOB|ly regular deposits. furiously| +18318|493541|6051|6|34|52173.68|0.01|0.02|N|O|1997-10-02|1997-08-23|1997-10-12|NONE|MAIL|lly ironic acc| +18319|705047|30076|1|3|3156.03|0.10|0.06|N|O|1997-03-25|1997-03-04|1997-04-02|DELIVER IN PERSON|AIR|ents use. special deposits| +18319|709254|9255|2|10|12632.20|0.04|0.03|N|O|1997-01-13|1997-01-17|1997-02-01|DELIVER IN PERSON|RAIL|totes. pendi| +18319|429086|29087|3|43|43647.58|0.00|0.05|N|O|1997-04-07|1997-01-11|1997-05-07|TAKE BACK RETURN|FOB|ss the slyly regular accounts. express| +18319|641913|29450|4|26|48226.88|0.02|0.06|N|O|1996-12-25|1997-01-18|1997-01-20|DELIVER IN PERSON|TRUCK|packages sleep alongside of the express, | +18319|626984|39497|5|47|89814.65|0.06|0.01|N|O|1997-04-04|1997-02-26|1997-04-28|NONE|MAIL|the express deposit| +18319|708107|45650|6|21|23416.47|0.03|0.06|N|O|1997-03-22|1997-01-24|1997-04-10|TAKE BACK RETURN|FOB| even theodolites haggle blithely| +18344|590487|40488|1|47|74140.62|0.03|0.08|N|O|1996-10-09|1996-09-04|1996-10-18|NONE|TRUCK|ickly pending packages | +18344|305929|43448|2|46|89005.86|0.09|0.05|N|O|1996-07-06|1996-08-24|1996-07-20|COLLECT COD|TRUCK|refully. r| +18344|737428|37429|3|46|67407.94|0.07|0.08|N|O|1996-10-12|1996-07-30|1996-10-22|TAKE BACK RETURN|SHIP| fluffily final | +18344|952319|14839|4|32|43880.64|0.01|0.05|N|O|1996-07-24|1996-08-13|1996-08-17|TAKE BACK RETURN|TRUCK|quickly final foxes| +18344|625252|277|5|22|25898.84|0.09|0.06|N|O|1996-07-01|1996-08-24|1996-07-29|COLLECT COD|RAIL|, regular theodolites cajole furiously ab| +18344|597152|22175|6|7|8743.91|0.06|0.00|N|O|1996-06-29|1996-07-27|1996-07-14|COLLECT COD|FOB|ress packages eat carefully around the| +18345|789656|14687|1|10|17456.20|0.01|0.01|N|O|1996-10-22|1996-11-17|1996-11-21|COLLECT COD|MAIL|ously busy frays| +18345|733876|33877|2|39|74483.76|0.06|0.01|N|O|1997-01-14|1996-12-29|1997-01-18|NONE|AIR| ironic ideas haggle blithely-- idea| +18345|253917|41433|3|36|67352.40|0.06|0.00|N|O|1997-01-07|1996-12-28|1997-01-21|DELIVER IN PERSON|TRUCK|ges. special dugouts wake slyly| +18346|28607|41108|1|14|21498.40|0.09|0.07|R|F|1994-03-28|1994-06-13|1994-03-31|NONE|MAIL|hely regular account| +18346|789947|14978|2|15|30553.65|0.07|0.02|R|F|1994-07-07|1994-06-13|1994-08-04|COLLECT COD|RAIL|y even asymptotes nag caref| +18347|450743|38271|1|34|57586.48|0.00|0.02|N|O|1997-11-10|1997-11-03|1997-11-22|DELIVER IN PERSON|REG AIR| wake fluffily slyly silent instructions. u| +18347|624214|11751|2|45|51218.10|0.09|0.06|N|O|1997-12-15|1997-10-08|1997-12-27|NONE|MAIL|ial accounts boost carefully above the s| +18347|164658|2168|3|13|22394.45|0.09|0.05|N|O|1997-10-15|1997-11-15|1997-10-20|TAKE BACK RETURN|REG AIR|ar accounts. express packages serve around | +18347|391547|29069|4|33|54071.49|0.03|0.00|N|O|1997-11-25|1997-10-09|1997-12-23|COLLECT COD|MAIL|about the slyly bold packages. | +18347|716972|4515|5|39|77568.66|0.09|0.06|N|O|1997-10-04|1997-09-26|1997-10-18|DELIVER IN PERSON|REG AIR|instructions sleep: final, special p| +18348|795390|20421|1|45|66841.20|0.06|0.05|A|F|1995-04-17|1995-05-08|1995-04-27|TAKE BACK RETURN|SHIP|poach permane| +18349|344621|32140|1|20|33312.20|0.04|0.01|R|F|1992-08-04|1992-07-14|1992-08-09|TAKE BACK RETURN|SHIP|accounts use slyly pending, sp| +18349|38230|25731|2|31|36215.13|0.09|0.00|R|F|1992-09-04|1992-07-04|1992-10-01|NONE|AIR|ously ironic foxes sleep special, f| +18349|517697|42718|3|6|10288.02|0.10|0.05|R|F|1992-08-18|1992-07-04|1992-09-15|COLLECT COD|FOB|instructions| +18349|918127|43164|4|14|16031.12|0.00|0.06|A|F|1992-07-11|1992-07-05|1992-08-09|TAKE BACK RETURN|RAIL|ide of the | +18349|956902|19422|5|37|72477.82|0.04|0.03|A|F|1992-09-17|1992-07-24|1992-09-26|DELIVER IN PERSON|SHIP| the pendin| +18349|645757|45758|6|4|6810.88|0.08|0.01|A|F|1992-09-30|1992-07-27|1992-10-26|NONE|FOB|. regularly ironi| +18350|657487|7488|1|27|39000.15|0.05|0.05|R|F|1994-08-16|1994-07-31|1994-08-22|NONE|FOB|furiously slyly unusual deposits. slyly ev| +18351|818352|5901|1|43|54623.33|0.10|0.02|N|O|1998-04-17|1998-03-03|1998-04-22|NONE|SHIP|egular instr| +18351|32505|45006|2|35|50312.50|0.03|0.03|N|O|1998-05-06|1998-02-18|1998-05-24|DELIVER IN PERSON|TRUCK|nstructions among the carefully| +18376|222972|35477|1|34|64428.64|0.03|0.01|N|O|1998-06-20|1998-07-28|1998-07-04|DELIVER IN PERSON|FOB|lar, unusual requests. slow f| +18376|486767|24295|2|6|10522.44|0.02|0.08|N|O|1998-08-14|1998-07-23|1998-08-31|DELIVER IN PERSON|FOB|larly bold pinto beans after the | +18376|89304|39305|3|39|50438.70|0.03|0.07|N|O|1998-08-29|1998-07-31|1998-08-30|TAKE BACK RETURN|AIR|yly express ideas. ironi| +18376|917782|30301|4|40|71989.60|0.01|0.07|N|O|1998-08-26|1998-08-19|1998-09-15|TAKE BACK RETURN|FOB|atterns may are carefully special d| +18376|159026|34033|5|17|18445.34|0.10|0.07|N|O|1998-07-10|1998-07-07|1998-07-18|NONE|TRUCK|e express, careful accounts boost| +18377|677306|14846|1|15|19249.05|0.10|0.04|A|F|1994-01-11|1993-12-24|1994-02-09|DELIVER IN PERSON|RAIL|ding accounts at the express packages | +18377|474586|12114|2|25|39014.00|0.10|0.05|A|F|1993-11-20|1993-11-18|1993-11-25|NONE|RAIL|nag regular theodolit| +18377|351703|14211|3|31|54395.39|0.04|0.07|R|F|1994-01-31|1993-12-16|1994-02-18|NONE|RAIL|eas run ironic cour| +18377|63015|13016|4|27|26406.27|0.07|0.08|R|F|1993-10-06|1993-11-28|1993-10-20|TAKE BACK RETURN|REG AIR|usual asymptotes against the furiousl| +18377|87353|49855|5|23|30828.05|0.09|0.03|R|F|1993-12-28|1993-11-09|1994-01-11|COLLECT COD|TRUCK|l accounts. idly regular theodolites integ| +18378|493820|43821|1|25|45345.00|0.06|0.01|R|F|1995-03-23|1995-03-08|1995-03-28|DELIVER IN PERSON|AIR|ely regular ideas. furiously spec| +18378|631664|6689|2|45|71803.35|0.09|0.03|A|F|1995-04-20|1995-03-01|1995-04-28|COLLECT COD|REG AIR|s use slyly final| +18378|366640|29148|3|43|73385.09|0.05|0.00|R|F|1995-04-05|1995-02-16|1995-05-03|DELIVER IN PERSON|TRUCK|the even, final accounts. foxe| +18378|106629|19132|4|32|52339.84|0.00|0.04|A|F|1995-02-09|1995-03-05|1995-02-22|COLLECT COD|TRUCK|e carefully. fluffy, final dolphi| +18378|100942|38449|5|30|58288.20|0.05|0.05|R|F|1995-03-06|1995-01-27|1995-03-30|NONE|FOB|deas boost evenly re| +18379|306551|31564|1|39|60744.06|0.08|0.04|R|F|1993-11-20|1993-11-27|1993-12-06|COLLECT COD|AIR|furiously fluffily ironic accounts. si| +18380|244648|7153|1|15|23889.45|0.01|0.07|N|O|1998-07-12|1998-08-13|1998-07-17|COLLECT COD|AIR|lly regular packages wake. blithely| +18380|786076|23622|2|6|6972.24|0.02|0.00|N|O|1998-08-08|1998-09-13|1998-08-09|COLLECT COD|AIR|realms. pinto beans after the expres| +18380|565086|15087|3|2|2302.12|0.00|0.08|N|O|1998-09-19|1998-09-24|1998-09-26|TAKE BACK RETURN|AIR|ully special dolphins. carefully | +18381|277447|27448|1|4|5697.72|0.10|0.05|N|O|1998-01-26|1998-01-09|1998-02-06|NONE|AIR|ix against th| +18381|42069|4570|2|27|27298.62|0.09|0.08|N|O|1998-02-14|1997-12-09|1998-02-27|COLLECT COD|AIR|leep blithely furiously e| +18382|927861|2898|1|25|47220.50|0.01|0.02|A|F|1992-06-25|1992-05-09|1992-07-20|COLLECT COD|TRUCK|n accounts doze according to the carefully | +18382|551608|1609|2|25|41489.50|0.03|0.02|R|F|1992-07-18|1992-06-20|1992-07-20|DELIVER IN PERSON|SHIP|s solve slyly| +18383|597643|22666|1|15|26109.30|0.08|0.01|R|F|1992-08-11|1992-08-05|1992-08-28|COLLECT COD|REG AIR| fluffily | +18383|575655|38167|2|30|51918.90|0.04|0.07|R|F|1992-07-25|1992-09-18|1992-07-28|TAKE BACK RETURN|AIR|s. furiously busy packages across th| +18383|23045|35546|3|41|39689.64|0.04|0.03|A|F|1992-07-29|1992-07-28|1992-08-25|COLLECT COD|RAIL| slyly silent ideas sleep | +18408|885910|10945|1|11|20854.57|0.09|0.06|N|O|1996-02-04|1995-12-13|1996-02-12|COLLECT COD|REG AIR|e blithely fur| +18408|480983|43493|2|41|80522.36|0.02|0.08|N|O|1996-02-20|1996-01-18|1996-02-27|TAKE BACK RETURN|REG AIR|he daringly silent theodolites. pending acc| +18408|870732|8284|3|49|83431.81|0.04|0.05|N|O|1995-12-26|1996-01-03|1996-01-07|NONE|REG AIR| regular pinto beans. | +18408|378802|16324|4|17|31973.43|0.00|0.01|N|O|1996-02-23|1996-01-04|1996-03-11|COLLECT COD|MAIL|y pending packages. co| +18409|86677|11680|1|6|9982.02|0.02|0.05|N|O|1997-06-30|1997-06-08|1997-07-01|COLLECT COD|FOB| use. blithely r| +18409|780315|5346|2|33|46044.24|0.04|0.06|N|O|1997-06-30|1997-04-25|1997-07-20|NONE|REG AIR|ely ironic packages boost. | +18409|753618|16134|3|49|81907.42|0.03|0.01|N|O|1997-06-25|1997-04-21|1997-07-05|DELIVER IN PERSON|RAIL|the silent accou| +18409|56943|6944|4|14|26599.16|0.09|0.07|N|O|1997-04-01|1997-05-21|1997-04-22|TAKE BACK RETURN|RAIL|alms. quickly ironi| +18409|35943|23444|5|43|80794.42|0.02|0.08|N|O|1997-05-22|1997-06-16|1997-06-19|COLLECT COD|TRUCK|, bold requests| +18410|286814|24330|1|30|54024.00|0.00|0.03|A|F|1993-12-05|1993-11-26|1993-12-10|COLLECT COD|SHIP|al asymptotes about the furi| +18410|467600|30110|2|23|36054.34|0.06|0.08|A|F|1994-01-12|1993-11-02|1994-01-17|COLLECT COD|REG AIR|osits haggle q| +18410|945739|20776|3|25|44617.25|0.05|0.07|R|F|1993-12-19|1993-11-28|1994-01-18|TAKE BACK RETURN|MAIL|ven theodolites affix slyly speci| +18410|32534|32535|4|31|45462.43|0.01|0.02|A|F|1993-11-25|1993-11-05|1993-11-30|COLLECT COD|SHIP|cording to the express courts| +18410|788138|25684|5|44|53948.40|0.03|0.02|A|F|1993-11-18|1993-10-28|1993-11-28|TAKE BACK RETURN|REG AIR|into beans. qu| +18410|232568|20081|6|13|19507.15|0.02|0.08|R|F|1993-10-13|1993-10-23|1993-10-28|TAKE BACK RETURN|TRUCK| fluffily after th| +18411|45263|7764|1|11|13290.86|0.09|0.06|N|O|1996-08-29|1996-06-26|1996-09-12|NONE|FOB| haggle ironic requests. b| +18411|725018|37533|2|40|41719.20|0.07|0.00|N|O|1996-06-11|1996-07-02|1996-06-21|COLLECT COD|MAIL|pending deposits breach carefully amo| +18411|365812|3334|3|14|26289.20|0.03|0.05|N|O|1996-08-20|1996-07-15|1996-09-14|NONE|RAIL|as sublate furiously. quickly unusual idea| +18412|269024|6540|1|27|26811.27|0.10|0.05|R|F|1993-11-27|1993-09-19|1993-12-03|COLLECT COD|REG AIR|ages. platelets| +18412|480321|17849|2|29|37737.70|0.10|0.06|R|F|1993-11-24|1993-10-25|1993-12-03|NONE|MAIL|ccounts are carefully slyly unusual deposit| +18412|754235|4236|3|16|20627.20|0.06|0.07|R|F|1993-11-06|1993-10-08|1993-12-05|TAKE BACK RETURN|FOB|kly above the unusual, even requests-- quic| +18413|648009|48010|1|15|14354.55|0.08|0.07|N|O|1995-11-22|1995-09-20|1995-11-29|DELIVER IN PERSON|TRUCK|ular deposits sleep furiously alongsi| +18413|77891|15395|2|14|26164.46|0.07|0.06|N|O|1995-08-15|1995-11-06|1995-08-30|DELIVER IN PERSON|MAIL|y regular account| +18413|98426|10928|3|1|1424.42|0.08|0.08|N|O|1995-10-25|1995-09-11|1995-10-26|DELIVER IN PERSON|RAIL|st the furiously re| +18413|235057|22570|4|37|36705.48|0.10|0.07|N|O|1995-09-04|1995-10-21|1995-10-02|NONE|FOB|ges across the| +18413|593478|43479|5|50|78572.50|0.03|0.00|N|O|1995-09-19|1995-09-27|1995-10-01|COLLECT COD|RAIL|ss, express packages cajole carefully accor| +18414|418849|6374|1|28|49498.96|0.08|0.03|A|F|1995-06-02|1995-08-05|1995-06-05|COLLECT COD|MAIL|packages. furiously special requests aroun| +18415|999514|37072|1|31|50017.57|0.00|0.04|N|O|1995-08-21|1995-10-09|1995-08-31|COLLECT COD|AIR|press foxes boost as| +18440|257841|45357|1|42|75550.86|0.06|0.02|N|O|1996-04-07|1996-01-24|1996-04-14|COLLECT COD|SHIP|eposits use enticingly among the fox| +18441|527384|14915|1|17|23993.12|0.07|0.07|R|F|1992-06-06|1992-06-30|1992-06-20|DELIVER IN PERSON|REG AIR|the bold, ironi| +18441|729844|17387|2|21|39350.01|0.06|0.00|A|F|1992-07-03|1992-06-19|1992-07-10|NONE|TRUCK|tect quickly. quickly si| +18441|485973|23501|3|17|33302.15|0.10|0.03|R|F|1992-08-29|1992-08-10|1992-09-27|DELIVER IN PERSON|AIR|nts after the furiously final acco| +18441|739615|14644|4|1|1654.58|0.08|0.07|A|F|1992-09-02|1992-06-16|1992-09-07|TAKE BACK RETURN|MAIL|arthogs wake s| +18441|703337|40880|5|49|65674.70|0.05|0.01|R|F|1992-08-27|1992-06-26|1992-09-05|NONE|MAIL|ts. even ideas cajole fu| +18441|981588|6627|6|4|6678.16|0.04|0.05|A|F|1992-06-28|1992-06-21|1992-07-22|NONE|FOB| pinto beans cajole. doggedly regula| +18442|856131|43683|1|20|21741.80|0.06|0.04|R|F|1993-11-13|1993-09-28|1993-12-04|DELIVER IN PERSON|REG AIR|ntegrate blithely against the carefully | +18442|986492|24050|2|11|17362.95|0.08|0.07|A|F|1993-10-23|1993-10-22|1993-10-25|TAKE BACK RETURN|AIR|sly blithel| +18442|967281|29801|3|43|57974.32|0.10|0.04|A|F|1993-10-21|1993-10-25|1993-11-18|DELIVER IN PERSON|REG AIR| deposits. regular, regular dol| +18442|80470|5473|4|30|43514.10|0.01|0.08|A|F|1993-08-18|1993-10-06|1993-08-30|NONE|AIR|r accounts | +18442|446095|8604|5|36|37478.52|0.10|0.02|A|F|1993-09-17|1993-11-06|1993-10-01|TAKE BACK RETURN|TRUCK|oach unusual, exp| +18443|841157|41158|1|10|10981.10|0.01|0.07|N|O|1997-11-08|1997-12-29|1997-11-16|DELIVER IN PERSON|MAIL|uickly regular deposits.| +18443|312065|37078|2|2|2154.10|0.00|0.01|N|O|1998-01-29|1997-12-28|1998-02-24|DELIVER IN PERSON|RAIL|old dependencies around the quick| +18443|876430|38948|3|10|14063.90|0.00|0.01|N|O|1997-11-03|1997-11-22|1997-11-08|COLLECT COD|TRUCK|deposits ac| +18444|873884|23885|1|8|14862.72|0.10|0.02|A|F|1994-11-27|1994-09-30|1994-11-28|COLLECT COD|MAIL| carefully even patterns. blit| +18444|363064|38079|2|4|4508.20|0.04|0.02|R|F|1994-10-12|1994-09-26|1994-10-16|COLLECT COD|FOB|e slyly ironic instructions; carefully pen| +18444|2101|14602|3|41|41127.10|0.01|0.01|A|F|1994-09-08|1994-10-24|1994-09-27|DELIVER IN PERSON|REG AIR|de of the furious deposits. slyly even| +18444|298601|11107|4|46|73581.14|0.10|0.07|R|F|1994-11-06|1994-11-06|1994-12-05|TAKE BACK RETURN|REG AIR|accounts. bold, regu| +18444|573613|48636|5|27|45537.93|0.06|0.01|A|F|1994-08-18|1994-09-26|1994-09-15|NONE|TRUCK|heodolites a| +18444|702639|27668|6|50|82080.00|0.04|0.01|R|F|1994-08-19|1994-09-23|1994-08-25|DELIVER IN PERSON|SHIP|sual, final ideas. car| +18444|246103|33616|7|9|9441.81|0.08|0.04|R|F|1994-12-02|1994-10-06|1994-12-08|NONE|RAIL|sts sleep furiously. fluffily bo| +18445|252918|40434|1|49|91674.10|0.01|0.01|A|F|1995-01-04|1995-03-02|1995-01-23|NONE|MAIL|ding excuses. r| +18445|787606|12637|2|1|1693.57|0.03|0.02|R|F|1995-03-06|1995-03-17|1995-03-19|TAKE BACK RETURN|FOB|ironic, unusual asymptotes pri| +18445|286676|49182|3|45|74819.70|0.03|0.01|A|F|1995-03-13|1995-02-09|1995-03-31|COLLECT COD|MAIL|l deposits wake furiously ironic pinto | +18445|150126|37636|4|26|30579.12|0.06|0.02|R|F|1995-02-06|1995-02-06|1995-02-16|DELIVER IN PERSON|REG AIR|ts sleep. pe| +18445|159754|9755|5|35|63481.25|0.07|0.06|A|F|1994-12-28|1995-01-18|1995-01-25|COLLECT COD|TRUCK|erve furiously. final asymptotes cajole | +18445|984973|22531|6|20|41158.60|0.08|0.01|R|F|1995-01-25|1995-02-20|1995-02-07|COLLECT COD|FOB|ven dinos are alw| +18446|993131|30689|1|22|26929.98|0.03|0.04|N|O|1997-12-22|1997-10-09|1998-01-07|TAKE BACK RETURN|MAIL|itaphs. slyly ironic excuses h| +18446|537551|62|2|3|4765.59|0.10|0.07|N|O|1997-09-30|1997-12-08|1997-10-03|DELIVER IN PERSON|TRUCK| final packages. blithely regula| +18446|616911|4448|3|44|80426.72|0.00|0.00|N|O|1997-10-20|1997-10-21|1997-10-31|DELIVER IN PERSON|TRUCK|sts. fluffily regular instruction| +18446|414841|14842|4|26|45651.32|0.09|0.00|N|O|1997-10-04|1997-10-18|1997-10-22|COLLECT COD|RAIL|uickly. carefully silen| +18446|227783|2792|5|13|22240.01|0.05|0.03|N|O|1997-10-18|1997-11-25|1997-10-27|DELIVER IN PERSON|FOB|c packages. even, bold packages alongside | +18446|348157|10664|6|6|7230.84|0.04|0.06|N|O|1997-09-30|1997-12-01|1997-10-24|TAKE BACK RETURN|AIR|instructions. carefully bold de| +18446|467225|17226|7|27|32189.40|0.03|0.02|N|O|1997-10-31|1997-11-14|1997-11-07|DELIVER IN PERSON|FOB|ular accounts. | +18447|635854|48367|1|37|66223.34|0.10|0.04|A|F|1992-05-20|1992-06-18|1992-05-26|COLLECT COD|SHIP|final packages. slyl| +18472|549673|12184|1|31|53402.15|0.00|0.07|N|O|1998-04-03|1998-03-12|1998-04-23|COLLECT COD|SHIP|regular platelets slee| +18472|337804|25323|2|4|7367.16|0.08|0.05|N|O|1998-05-13|1998-03-20|1998-05-18|COLLECT COD|FOB|g to the final packages. q| +18472|458626|33645|3|19|30107.40|0.02|0.06|N|O|1998-04-24|1998-04-08|1998-05-12|NONE|TRUCK|ts against the even platele| +18473|166367|16368|1|46|65934.56|0.00|0.08|N|O|1996-09-05|1996-10-22|1996-09-14|TAKE BACK RETURN|MAIL|ully. fluffily bo| +18473|114228|39233|2|11|13664.42|0.07|0.04|N|O|1996-08-26|1996-10-18|1996-09-17|NONE|MAIL|erns haggle always along the regul| +18473|821004|8553|3|2|1849.92|0.04|0.04|N|O|1996-08-15|1996-10-30|1996-09-13|COLLECT COD|RAIL|s. carefully regular accounts wa| +18473|601971|26996|4|40|74917.60|0.10|0.04|N|O|1996-11-18|1996-10-07|1996-12-02|COLLECT COD|TRUCK|lithely even ideas| +18473|325827|13346|5|50|92640.50|0.01|0.01|N|O|1996-11-01|1996-09-22|1996-11-27|DELIVER IN PERSON|SHIP|he quickly unusual theodoli| +18474|587449|37450|1|49|75284.58|0.06|0.08|R|F|1992-10-24|1992-11-15|1992-11-06|COLLECT COD|RAIL|ions. carefully en| +18474|240380|15389|2|30|39611.10|0.02|0.06|A|F|1992-11-15|1992-12-01|1992-11-22|DELIVER IN PERSON|TRUCK|y ironic accounts | +18474|56587|31590|3|45|69461.10|0.00|0.04|R|F|1992-11-14|1992-12-10|1992-12-07|TAKE BACK RETURN|TRUCK|deposits are blithely| +18474|56824|31827|4|3|5342.46|0.04|0.08|R|F|1992-12-10|1992-11-18|1992-12-22|COLLECT COD|AIR|nding warthogs use quietly about the ir| +18474|33927|21428|5|19|35357.48|0.02|0.08|A|F|1992-11-26|1992-11-16|1992-12-09|DELIVER IN PERSON|MAIL|yly ruthless packages wake care| +18474|197114|34624|6|17|20588.87|0.01|0.00|R|F|1992-10-28|1992-11-12|1992-11-03|TAKE BACK RETURN|AIR|ke slyly. quick| +18475|748467|48468|1|30|45462.90|0.05|0.05|A|F|1993-06-10|1993-04-27|1993-06-12|DELIVER IN PERSON|TRUCK|odolites. final requests use| +18475|477201|27202|2|2|2356.36|0.02|0.00|A|F|1993-06-03|1993-04-27|1993-06-04|DELIVER IN PERSON|AIR|deposits beneath the sil| +18476|679833|42347|1|46|83388.80|0.02|0.01|R|F|1994-03-26|1994-05-01|1994-03-27|NONE|FOB|ow platelets nag carefully ironic | +18476|939377|1896|2|50|70816.50|0.01|0.07|R|F|1994-07-02|1994-05-03|1994-07-04|COLLECT COD|TRUCK|around the ironic requests wake carefully a| +18476|106415|18918|3|35|49749.35|0.04|0.00|R|F|1994-05-11|1994-06-15|1994-05-17|NONE|AIR|telets after the even deposits snooze | +18477|42199|29700|1|27|30812.13|0.09|0.03|N|O|1998-06-10|1998-06-04|1998-07-04|TAKE BACK RETURN|RAIL|s. regular instructions are br| +18477|223196|35701|2|1|1119.18|0.00|0.03|N|O|1998-05-19|1998-05-21|1998-06-07|COLLECT COD|REG AIR|ole blithely. slyly bold packages| +18477|242509|5014|3|21|30481.29|0.09|0.08|N|O|1998-06-06|1998-05-03|1998-06-10|DELIVER IN PERSON|SHIP|eep blithely. slyly even theodolit| +18477|837691|25240|4|18|29315.70|0.02|0.08|N|O|1998-04-12|1998-05-19|1998-04-21|COLLECT COD|AIR|thely bold packages a| +18477|66613|29115|5|1|1579.61|0.01|0.04|N|O|1998-04-12|1998-05-14|1998-05-04|TAKE BACK RETURN|RAIL|ts are blithely above the furiou| +18477|560284|10285|6|8|10754.08|0.04|0.05|N|O|1998-03-30|1998-05-11|1998-04-03|TAKE BACK RETURN|SHIP|mptotes cajole | +18478|772749|47780|1|42|76511.82|0.07|0.04|N|O|1997-06-07|1997-05-10|1997-06-30|NONE|TRUCK|nding asymptote| +18478|588869|13892|2|48|93976.32|0.01|0.01|N|O|1997-04-11|1997-04-19|1997-04-12|TAKE BACK RETURN|RAIL| the requests. quickly | +18478|111511|49018|3|48|73080.48|0.04|0.05|N|O|1997-03-17|1997-04-11|1997-04-07|DELIVER IN PERSON|REG AIR|ep furiously slowly even packages. sl| +18478|148825|48826|4|36|67457.52|0.04|0.07|N|O|1997-04-24|1997-04-26|1997-05-06|DELIVER IN PERSON|SHIP| carefully special package| +18478|293998|19009|5|24|47807.52|0.08|0.04|N|O|1997-04-21|1997-03-30|1997-04-25|NONE|MAIL|kly regular accounts | +18479|111505|49012|1|6|9099.00|0.01|0.06|N|O|1998-10-20|1998-08-30|1998-11-19|COLLECT COD|REG AIR|nts. carefully regular packag| +18479|61937|24439|2|8|15191.44|0.01|0.07|N|O|1998-08-09|1998-09-15|1998-09-04|COLLECT COD|MAIL| the accounts boost slyly car| +18479|961474|11475|3|22|33779.46|0.07|0.02|N|O|1998-09-12|1998-10-22|1998-09-27|TAKE BACK RETURN|MAIL| haggle quickly among the furio| +18479|484518|22046|4|19|28547.31|0.07|0.04|N|O|1998-08-08|1998-10-22|1998-08-26|DELIVER IN PERSON|FOB|uests against the | +18479|286508|36509|5|20|29889.80|0.06|0.00|N|O|1998-08-14|1998-08-29|1998-09-05|NONE|AIR|y final instructions. blithely unusu| +18479|329636|17155|6|25|41640.50|0.01|0.06|N|O|1998-08-10|1998-10-19|1998-08-26|NONE|SHIP|r furiously final fo| +18479|177050|39554|7|19|21413.95|0.08|0.07|N|O|1998-08-07|1998-10-16|1998-08-16|TAKE BACK RETURN|REG AIR|nts alongside of the fluff| +18504|672145|9685|1|21|23459.31|0.06|0.04|A|F|1993-07-04|1993-05-29|1993-07-08|COLLECT COD|FOB|xes. express, | +18504|728431|28432|2|26|37944.40|0.10|0.02|A|F|1993-08-10|1993-06-12|1993-08-22|COLLECT COD|AIR|into beans. slyly even ideas caj| +18504|737810|37811|3|47|86845.66|0.05|0.00|A|F|1993-07-18|1993-07-08|1993-07-29|DELIVER IN PERSON|TRUCK|furiously even excuses will use| +18504|369105|31613|4|26|30526.34|0.07|0.01|R|F|1993-06-30|1993-05-14|1993-07-22|COLLECT COD|RAIL|counts from the pinto beans cajole | +18505|918239|30758|1|35|44001.65|0.05|0.01|N|O|1995-12-28|1996-02-06|1996-01-17|DELIVER IN PERSON|RAIL|ecial instructions wake blithely| +18505|838033|13066|2|44|42723.56|0.05|0.04|N|O|1996-02-04|1996-02-06|1996-02-08|DELIVER IN PERSON|FOB|al foxes serve. final packages serve | +18505|805439|42988|3|45|60497.55|0.05|0.01|N|O|1996-01-18|1996-01-29|1996-02-13|COLLECT COD|AIR|ely even pinto beans. blithely final cou| +18506|876151|38669|1|2|2254.22|0.06|0.07|N|O|1997-05-10|1997-06-10|1997-05-29|NONE|REG AIR|bout the quickly express pin| +18506|460467|10468|2|15|21411.60|0.05|0.05|N|O|1997-05-15|1997-05-19|1997-05-16|NONE|REG AIR|e idle, dogged instructions. slyly | +18506|67207|17208|3|11|12916.20|0.00|0.03|N|O|1997-04-12|1997-06-16|1997-05-12|NONE|MAIL|he silent, final reque| +18507|258887|21393|1|13|23996.31|0.02|0.01|A|F|1993-02-26|1993-01-09|1993-03-08|COLLECT COD|SHIP|ckages. packages wake fluffily. even gif| +18507|106860|31865|2|44|82141.84|0.04|0.07|R|F|1993-02-07|1993-01-14|1993-03-04|DELIVER IN PERSON|TRUCK|silent instructi| +18507|992714|17753|3|44|79493.48|0.04|0.04|A|F|1992-12-17|1993-01-30|1993-01-03|COLLECT COD|REG AIR|y regular ideas sleep busily furiously u| +18507|531002|6023|4|13|13428.74|0.05|0.03|A|F|1993-02-07|1993-02-06|1993-03-04|NONE|REG AIR|yly bold foxes wake b| +18507|543614|6125|5|4|6630.36|0.09|0.05|A|F|1992-11-18|1993-02-01|1992-12-08|TAKE BACK RETURN|RAIL|blithely express accounts. account| +18507|505751|30772|6|31|54458.63|0.04|0.07|R|F|1992-12-22|1993-01-21|1992-12-29|COLLECT COD|FOB|e across the i| +18508|11631|24132|1|41|63247.83|0.06|0.05|R|F|1994-06-30|1994-06-09|1994-07-24|NONE|TRUCK|ts use fur| +18508|474624|24625|2|22|35169.20|0.08|0.07|A|F|1994-06-15|1994-06-23|1994-06-26|DELIVER IN PERSON|AIR|foxes. carefully unusual platelets nod blit| +18508|990233|2753|3|48|63513.12|0.08|0.08|A|F|1994-06-01|1994-06-05|1994-06-19|DELIVER IN PERSON|REG AIR|sits. asymptotes among th| +18508|836536|36537|4|24|35339.76|0.04|0.08|R|F|1994-07-31|1994-05-22|1994-08-07|COLLECT COD|TRUCK|carefully against | +18509|716955|4498|1|5|9859.60|0.09|0.08|N|O|1996-05-17|1996-07-06|1996-06-13|TAKE BACK RETURN|TRUCK|ular accounts haggle | +18509|860767|35802|2|19|32826.68|0.05|0.01|N|O|1996-06-01|1996-06-25|1996-06-25|DELIVER IN PERSON|SHIP|carefully. stealthily bold packages| +18509|902295|27332|3|20|25945.00|0.05|0.01|N|O|1996-06-19|1996-07-17|1996-06-21|DELIVER IN PERSON|TRUCK|nusual packages. blithely expre| +18509|862492|44|4|37|53814.65|0.04|0.03|N|O|1996-08-20|1996-08-02|1996-08-28|NONE|RAIL|fily daring warhors| +18509|890243|15278|5|43|53027.60|0.00|0.06|N|O|1996-08-11|1996-06-14|1996-09-01|COLLECT COD|AIR|ously regular theodolites| +18509|308315|20822|6|15|19849.50|0.04|0.05|N|O|1996-06-21|1996-06-15|1996-06-25|TAKE BACK RETURN|TRUCK|quickly. regular, final packages play| +18510|276244|26245|1|38|46368.74|0.04|0.06|A|F|1994-08-26|1994-08-23|1994-08-31|NONE|SHIP|ing platelets are idly c| +18510|823066|23067|2|33|32637.66|0.07|0.04|R|F|1994-07-24|1994-08-29|1994-08-22|NONE|REG AIR|es. furiously even requests sleep furio| +18510|265219|2735|3|21|24868.20|0.05|0.03|A|F|1994-09-21|1994-09-15|1994-10-15|NONE|TRUCK|regular foxes | +18510|530260|17791|4|47|60641.28|0.02|0.05|R|F|1994-07-08|1994-08-23|1994-07-26|NONE|REG AIR|pon the fluffily even ideas. c| +18510|70463|45466|5|10|14334.60|0.02|0.00|R|F|1994-10-04|1994-09-20|1994-10-05|COLLECT COD|TRUCK| the instructions? dolphins wake alo| +18510|260503|10504|6|23|33660.27|0.09|0.05|R|F|1994-07-23|1994-08-01|1994-08-20|DELIVER IN PERSON|REG AIR| even deposits haggle. blithely | +18510|263266|38277|7|47|57774.75|0.04|0.07|R|F|1994-06-29|1994-08-27|1994-07-28|COLLECT COD|TRUCK|hinly. slyly | +18511|702280|2281|1|48|61548.00|0.01|0.02|A|F|1992-08-16|1992-07-10|1992-08-23|TAKE BACK RETURN|TRUCK|ckages. furiously bold accounts are bl| +18536|416989|29498|1|23|43837.08|0.03|0.00|N|O|1995-07-13|1995-09-13|1995-07-22|COLLECT COD|AIR|y fluffily fl| +18536|328446|28447|2|21|30963.03|0.00|0.00|N|O|1995-10-11|1995-07-22|1995-11-02|DELIVER IN PERSON|SHIP| beans. requests haggle bl| +18536|177374|27375|3|7|10159.59|0.02|0.06|N|O|1995-08-24|1995-08-01|1995-09-08|DELIVER IN PERSON|MAIL|ake against the carefully regular| +18536|114492|1999|4|48|72311.52|0.07|0.07|N|O|1995-08-23|1995-08-01|1995-08-29|NONE|SHIP|s; even notornis wake| +18537|415141|15142|1|48|50693.76|0.05|0.06|N|O|1995-12-23|1995-12-08|1995-12-27|NONE|AIR|toward the quickly | +18537|264326|1842|2|11|14193.41|0.05|0.01|N|O|1995-11-09|1995-12-31|1995-12-03|DELIVER IN PERSON|FOB|quickly ironic pinto b| +18537|518650|6181|3|5|8343.15|0.00|0.00|N|O|1995-11-12|1995-12-20|1995-12-02|TAKE BACK RETURN|FOB|ect carefully slyly ironic re| +18537|938243|13280|4|31|39717.20|0.04|0.06|N|O|1995-12-29|1995-12-30|1996-01-12|COLLECT COD|FOB|al packages sleep slyly quickly regular | +18537|48502|48503|5|16|23208.00|0.05|0.02|N|O|1995-12-20|1995-12-04|1996-01-04|COLLECT COD|RAIL|e quickly ironic, e| +18537|159576|34583|6|24|39253.68|0.01|0.07|N|O|1996-01-20|1995-12-31|1996-02-06|COLLECT COD|FOB|uffily even deposits. carefully express p| +18538|759202|34233|1|42|52969.14|0.02|0.07|N|O|1998-03-12|1998-04-17|1998-03-23|DELIVER IN PERSON|MAIL|regular dependencies acc| +18539|486409|23937|1|45|62792.10|0.07|0.01|R|F|1992-04-16|1992-03-29|1992-04-28|COLLECT COD|SHIP|ve blithely ironic hockey players. pendin| +18539|69041|6545|2|15|15150.60|0.05|0.05|R|F|1992-05-09|1992-02-29|1992-06-04|COLLECT COD|AIR|lly. deposits across the even, pend| +18539|368085|43100|3|25|28826.75|0.05|0.02|R|F|1992-04-30|1992-04-01|1992-05-26|NONE|TRUCK|bout the furiously | +18540|438544|1053|1|15|22237.80|0.07|0.05|R|F|1992-03-16|1992-04-14|1992-03-24|DELIVER IN PERSON|REG AIR|ven instructions. even requests nag | +18540|603276|28301|2|8|9433.92|0.10|0.08|A|F|1992-05-03|1992-04-24|1992-05-20|DELIVER IN PERSON|REG AIR|ar dinos sleep at the pend| +18540|247346|22355|3|23|29746.59|0.10|0.06|A|F|1992-03-16|1992-05-01|1992-04-13|TAKE BACK RETURN|FOB|deas. regular requests kindle carefully| +18540|140394|27901|4|49|70285.11|0.02|0.01|A|F|1992-03-20|1992-03-05|1992-03-24|NONE|RAIL|ptotes: quickly ironic accou| +18540|597332|47333|5|35|50025.85|0.04|0.05|R|F|1992-05-26|1992-03-04|1992-06-09|COLLECT COD|SHIP| across the carefull| +18540|351264|1265|6|8|10522.00|0.10|0.08|A|F|1992-05-08|1992-03-16|1992-06-06|TAKE BACK RETURN|REG AIR|lites nag. unusual packages haggle blithely| +18541|796227|8743|1|37|48958.03|0.07|0.05|N|O|1996-05-19|1996-07-09|1996-06-14|NONE|RAIL|ong the furiously regular pin| +18541|180038|30039|2|47|52547.41|0.07|0.08|N|O|1996-08-08|1996-07-30|1996-08-31|NONE|RAIL|nst the carefully even requests. ir| +18541|886310|23862|3|23|29814.21|0.03|0.01|N|O|1996-07-23|1996-06-16|1996-08-04|COLLECT COD|TRUCK|gainst the furiously | +18541|202527|2528|4|13|18583.63|0.10|0.03|N|O|1996-05-26|1996-06-22|1996-06-13|TAKE BACK RETURN|FOB| slyly careful packages wake | +18541|863936|26454|5|47|89294.83|0.08|0.07|N|O|1996-06-03|1996-06-29|1996-06-22|NONE|MAIL|s cajole expre| +18542|287124|37125|1|27|29999.97|0.07|0.01|A|F|1992-11-22|1992-11-26|1992-12-06|NONE|SHIP|sits are doggedly; always| +18542|690817|3331|2|36|65080.08|0.00|0.00|R|F|1992-10-04|1992-11-28|1992-10-28|DELIVER IN PERSON|SHIP|e fluffily? quickly even accounts against t| +18542|555555|30578|3|19|30600.07|0.10|0.00|A|F|1992-10-03|1992-12-16|1992-10-25|COLLECT COD|FOB|oxes haggle. furiously pending acc| +18542|201698|14203|4|34|54389.12|0.01|0.08|A|F|1992-10-26|1992-12-15|1992-11-11|TAKE BACK RETURN|RAIL|sleep doggedly idly regular dugouts. regula| +18542|923732|36251|5|17|29846.73|0.01|0.07|A|F|1992-10-19|1992-11-06|1992-10-30|NONE|AIR|deas. blithely bold deposi| +18543|10544|10545|1|26|37818.04|0.00|0.03|N|O|1998-04-22|1998-06-17|1998-04-23|COLLECT COD|REG AIR|en waters. blith| +18543|211814|36823|2|19|32790.20|0.04|0.04|N|O|1998-06-11|1998-07-07|1998-06-17|COLLECT COD|FOB|lar, ironic requests. furiously regu| +18543|956214|18734|3|18|22863.06|0.00|0.03|N|O|1998-08-09|1998-06-11|1998-09-06|NONE|REG AIR|egular accounts. foxes haggle according| +18543|84010|21514|4|22|21868.22|0.03|0.03|N|O|1998-04-23|1998-07-06|1998-05-12|DELIVER IN PERSON|FOB|ithely fluffily ironic courts. quic| +18543|951882|26921|5|6|11603.04|0.01|0.04|N|O|1998-08-11|1998-06-04|1998-08-29|DELIVER IN PERSON|RAIL|pinto beans c| +18543|271509|21510|6|31|45895.19|0.10|0.05|N|O|1998-08-14|1998-06-08|1998-08-18|COLLECT COD|AIR|dolites! bl| +18543|244497|44498|7|47|67749.56|0.06|0.04|N|O|1998-08-16|1998-07-19|1998-08-17|NONE|SHIP|idly unusual dependencies cajo| +18568|246153|33666|1|5|5495.70|0.10|0.00|A|F|1992-05-23|1992-06-21|1992-05-29|NONE|REG AIR|the silently even| +18568|80549|5552|2|34|52004.36|0.07|0.03|R|F|1992-06-05|1992-07-04|1992-06-07|NONE|RAIL|accounts nag; e| +18568|777164|2195|3|37|45921.81|0.10|0.08|A|F|1992-07-16|1992-07-15|1992-07-24|TAKE BACK RETURN|RAIL| cajole slyly aft| +18568|793893|6409|4|13|25829.18|0.09|0.05|R|F|1992-05-20|1992-07-12|1992-05-31|TAKE BACK RETURN|RAIL|ously regular, express accounts. furiou| +18568|942927|30482|5|15|29548.20|0.10|0.02|R|F|1992-04-25|1992-06-03|1992-05-08|TAKE BACK RETURN|RAIL|ep blithely alongside of| +18568|762344|24860|6|14|19688.34|0.02|0.00|R|F|1992-07-25|1992-07-01|1992-08-17|NONE|SHIP|onic deposits detect across the s| +18568|699968|49969|7|39|76749.27|0.07|0.05|R|F|1992-04-26|1992-05-29|1992-04-27|COLLECT COD|RAIL|ounts-- regular foxes sleep. carefully iro| +18569|360044|22552|1|14|15456.42|0.06|0.04|N|O|1997-02-17|1997-01-05|1997-02-20|COLLECT COD|AIR|even, final pearls. final, ironic pinto| +18569|258075|8076|2|10|10330.60|0.04|0.01|N|O|1996-12-01|1997-01-04|1996-12-16|NONE|TRUCK|es. regular requests run slyly pending ac| +18569|453172|3173|3|45|50631.75|0.07|0.06|N|O|1997-02-09|1997-02-19|1997-02-19|COLLECT COD|MAIL|ular requests about the fu| +18569|455964|5965|4|8|15359.52|0.04|0.04|N|O|1997-03-01|1997-01-22|1997-03-30|DELIVER IN PERSON|AIR|kages wake blithely regular| +18569|376034|13556|5|21|23310.42|0.03|0.02|N|O|1997-03-05|1997-02-15|1997-03-29|DELIVER IN PERSON|TRUCK|blithely special requests. furiously exp| +18569|989713|14752|6|12|21632.04|0.10|0.02|N|O|1997-03-09|1997-01-21|1997-03-26|TAKE BACK RETURN|SHIP|ly even asymptotes. | +18569|102543|15046|7|19|29365.26|0.00|0.06|N|O|1997-01-28|1997-01-19|1997-02-06|TAKE BACK RETURN|RAIL|ironic asymptotes. regular pinto beans wa| +18570|433341|20866|1|6|7645.92|0.03|0.08|N|O|1998-02-16|1998-04-04|1998-03-07|DELIVER IN PERSON|MAIL|al deposits wake accounts| +18570|150299|12803|2|4|5397.16|0.05|0.08|N|O|1998-05-06|1998-04-09|1998-05-28|DELIVER IN PERSON|MAIL|ular requests sublate according to the slyl| +18570|61193|23695|3|3|3462.57|0.07|0.00|N|O|1998-02-16|1998-04-19|1998-02-22|COLLECT COD|TRUCK| wake fluffily ironic instructions. furious| +18570|463021|13022|4|43|42312.00|0.02|0.03|N|O|1998-03-16|1998-05-10|1998-04-08|TAKE BACK RETURN|AIR|excuses. furiously bold platelets eat| +18570|977600|2639|5|27|45294.12|0.08|0.03|N|O|1998-03-15|1998-04-29|1998-03-31|DELIVER IN PERSON|REG AIR|pecial pinto beans nag above th| +18570|521938|46959|6|44|86236.04|0.09|0.00|N|O|1998-03-09|1998-04-26|1998-04-04|COLLECT COD|MAIL|as haggle carefully after the regular acco| +18570|204408|41921|7|13|17061.07|0.09|0.00|N|O|1998-05-18|1998-05-13|1998-06-16|TAKE BACK RETURN|SHIP|he never ironic foxes caj| +18571|480222|17750|1|49|58907.80|0.08|0.06|N|O|1996-04-05|1996-03-21|1996-05-04|TAKE BACK RETURN|MAIL|theodolites thrash carefully even| +18571|77232|27233|2|29|35067.67|0.09|0.08|N|O|1996-04-06|1996-02-06|1996-04-11|DELIVER IN PERSON|AIR| final platelets;| +18571|28809|41310|3|27|46920.60|0.08|0.08|N|O|1996-02-19|1996-03-01|1996-02-29|TAKE BACK RETURN|FOB|pending requests. carefully ironi| +18571|187507|37508|4|40|63780.00|0.03|0.05|N|O|1996-02-20|1996-01-30|1996-03-21|DELIVER IN PERSON|RAIL|fter the quickly even instruct| +18571|425765|38274|5|49|82846.26|0.05|0.00|N|O|1996-01-18|1996-03-09|1996-01-20|COLLECT COD|AIR|ing to the silent| +18571|827034|39551|6|9|8648.91|0.03|0.08|N|O|1996-01-01|1996-03-01|1996-01-27|COLLECT COD|SHIP|ngside of the quiet, unusual requests. ir| +18572|545707|33238|1|19|33300.92|0.05|0.07|A|F|1993-08-06|1993-07-22|1993-08-24|DELIVER IN PERSON|SHIP|its. slyly enticing foxe| +18572|682354|32355|2|1|1336.32|0.05|0.04|R|F|1993-06-14|1993-07-10|1993-07-10|COLLECT COD|SHIP|the pending | +18572|318400|43413|3|24|34041.36|0.07|0.06|R|F|1993-08-25|1993-06-22|1993-09-19|NONE|RAIL|ong the even depos| +18572|338507|38508|4|50|77274.50|0.07|0.05|R|F|1993-06-28|1993-06-15|1993-07-17|COLLECT COD|AIR|equests wake furiously above the req| +18573|613973|13974|1|29|54721.26|0.04|0.02|A|F|1993-06-03|1993-06-16|1993-06-27|NONE|REG AIR| slyly always silent dolphins. regular| +18573|28628|41129|2|27|42028.74|0.00|0.00|A|F|1993-06-10|1993-08-05|1993-07-02|COLLECT COD|TRUCK|lyly ruthless deposits-- furiously reg| +18574|597095|22118|1|32|38146.24|0.10|0.05|R|F|1994-06-24|1994-06-26|1994-07-17|TAKE BACK RETURN|SHIP|y after the| +18574|363189|38204|2|41|51338.97|0.04|0.05|A|F|1994-05-12|1994-06-25|1994-05-26|DELIVER IN PERSON|RAIL| carefully ironic | +18575|385896|23418|1|28|55492.64|0.03|0.07|N|O|1997-01-01|1996-12-13|1997-01-18|COLLECT COD|REG AIR|ckly even deposits. quick, regular pac| +18575|749569|24598|2|14|22659.42|0.09|0.03|N|O|1997-01-12|1996-12-05|1997-01-14|NONE|TRUCK|kly bold packages wake blithely fi| +18575|995643|45644|3|49|85191.40|0.06|0.07|N|O|1996-11-24|1997-01-09|1996-12-05|DELIVER IN PERSON|MAIL|rash slyly acros| +18600|47943|22944|1|43|81310.42|0.07|0.00|N|O|1997-05-18|1997-05-16|1997-06-13|DELIVER IN PERSON|AIR|encies boost. unusu| +18600|768935|18936|2|5|10019.50|0.03|0.07|N|O|1997-04-18|1997-04-13|1997-05-07|NONE|FOB| wake carefully unusual do| +18600|477842|27843|3|11|20018.02|0.10|0.01|N|O|1997-07-01|1997-04-16|1997-07-09|TAKE BACK RETURN|MAIL| the fluffily pending platele| +18601|41363|3864|1|48|62609.28|0.07|0.01|R|F|1992-05-30|1992-07-02|1992-06-13|NONE|AIR|ns cajole slyly carefully| +18601|187244|12251|2|48|63899.52|0.07|0.00|A|F|1992-08-05|1992-06-25|1992-08-19|TAKE BACK RETURN|REG AIR| express, i| +18602|111227|48734|1|40|49528.80|0.07|0.06|N|O|1996-03-31|1996-04-16|1996-04-15|NONE|REG AIR|ts. carefully regular request| +18603|866187|16188|1|33|38053.62|0.03|0.03|A|F|1993-04-09|1993-04-01|1993-05-08|NONE|SHIP|sual pinto beans cajole. ironic, regu| +18603|3338|28339|2|30|37239.90|0.10|0.04|R|F|1993-05-09|1993-04-23|1993-05-10|COLLECT COD|AIR|s haggle furiously furiously express t| +18603|100143|12646|3|3|3429.42|0.10|0.06|R|F|1993-05-14|1993-04-10|1993-06-13|COLLECT COD|REG AIR| deposits haggle careful| +18603|98425|23428|4|5|7117.10|0.00|0.06|A|F|1993-03-20|1993-03-22|1993-03-30|TAKE BACK RETURN|AIR|pinto beans are ironic braids!| +18603|220789|20790|5|2|3419.54|0.10|0.03|R|F|1993-03-16|1993-04-14|1993-03-20|DELIVER IN PERSON|SHIP|e ironic packages detect q| +18603|800090|91|6|22|21781.10|0.03|0.03|R|F|1993-02-15|1993-05-13|1993-03-01|NONE|SHIP|ts. furiously even requ| +18604|810805|35838|1|25|42894.00|0.01|0.05|N|O|1997-12-18|1997-11-15|1997-12-24|NONE|TRUCK|mong the carefully f| +18604|184175|46679|2|10|12591.70|0.00|0.00|N|O|1997-10-19|1997-11-22|1997-11-01|NONE|TRUCK|regular frets alongside of th| +18604|424931|24932|3|40|74236.40|0.06|0.07|N|O|1997-11-12|1997-11-30|1997-11-16|NONE|REG AIR|arefully quick requests across the final, s| +18604|811603|36636|4|1|1514.56|0.02|0.08|N|O|1997-10-08|1997-12-06|1997-11-01|TAKE BACK RETURN|TRUCK|le carefully above the | +18605|880711|43229|1|7|11841.69|0.00|0.07|R|F|1992-06-01|1992-05-05|1992-06-20|NONE|AIR| to the ruthl| +18605|103468|28473|2|27|39729.42|0.09|0.06|A|F|1992-04-08|1992-05-01|1992-04-12|COLLECT COD|TRUCK|sauternes wake fluffily a| +18605|971932|34452|3|36|72140.04|0.03|0.00|A|F|1992-03-23|1992-04-10|1992-04-16|COLLECT COD|RAIL|lar forges. acco| +18605|247945|10450|4|9|17036.37|0.03|0.08|R|F|1992-06-11|1992-05-15|1992-06-17|COLLECT COD|AIR|use carefully about the fluffily| +18605|201959|26968|5|35|65132.90|0.04|0.05|R|F|1992-05-26|1992-03-18|1992-06-12|TAKE BACK RETURN|AIR| final realms cajole a| +18606|374862|24863|1|33|63916.05|0.00|0.01|N|O|1997-07-17|1997-06-20|1997-08-01|NONE|REG AIR|es use. carefully regular | +18607|889686|27238|1|8|13405.12|0.06|0.08|N|O|1997-01-26|1997-02-09|1997-01-29|DELIVER IN PERSON|FOB|e fluffily. furiously even asymptotes s| +18607|936222|48741|2|23|28938.14|0.05|0.00|N|O|1997-04-04|1997-04-06|1997-04-13|COLLECT COD|SHIP|ests nag according to the final, s| +18607|77849|2852|3|50|91342.00|0.09|0.01|N|O|1997-05-08|1997-03-01|1997-05-10|TAKE BACK RETURN|FOB|ncies kindle. even account| +18607|391705|41706|4|39|70070.91|0.09|0.04|N|O|1997-03-21|1997-02-13|1997-04-04|COLLECT COD|SHIP|lar requests boost furiously. furiou| +18607|372788|47803|5|10|18607.70|0.07|0.08|N|O|1997-03-08|1997-02-19|1997-03-14|DELIVER IN PERSON|TRUCK|ole blithely across the regular | +18607|432884|32885|6|46|83575.56|0.05|0.00|N|O|1997-01-16|1997-04-05|1997-01-29|DELIVER IN PERSON|SHIP|y alongside of the packages. bold package| +18607|466714|4242|7|24|40336.56|0.04|0.07|N|O|1997-04-01|1997-03-23|1997-04-26|DELIVER IN PERSON|FOB|und the carefully re| +18632|48457|23458|1|9|12649.05|0.05|0.04|N|O|1995-11-25|1995-10-14|1995-12-25|TAKE BACK RETURN|TRUCK|ges haggle carefully. final excuses cajole | +18632|404324|29341|2|2|2456.60|0.04|0.08|N|O|1995-09-25|1995-10-29|1995-10-02|DELIVER IN PERSON|SHIP|ily: ironic asymptotes boost furi| +18632|458684|21194|3|26|42709.16|0.06|0.04|N|O|1995-08-12|1995-10-18|1995-08-23|DELIVER IN PERSON|MAIL|. idly unusu| +18632|90005|27509|4|26|25870.00|0.10|0.02|N|O|1995-10-15|1995-09-09|1995-11-02|TAKE BACK RETURN|RAIL|special courts at th| +18632|709475|9476|5|14|20782.16|0.02|0.06|N|O|1995-09-26|1995-09-29|1995-10-01|NONE|TRUCK|iously final theo| +18633|706601|6602|1|37|59480.09|0.01|0.06|A|F|1993-10-03|1993-10-01|1993-10-28|TAKE BACK RETURN|REG AIR|efully unusu| +18633|828760|28761|2|7|11821.04|0.01|0.08|A|F|1993-08-04|1993-10-06|1993-08-26|NONE|MAIL|ial deposits hang dep| +18633|960177|22697|3|3|3711.39|0.01|0.05|A|F|1993-10-14|1993-09-30|1993-10-15|NONE|RAIL|usual pinto beans. quickly unusual foxe| +18634|975392|25393|1|20|29347.00|0.03|0.06|A|F|1995-05-06|1995-06-11|1995-05-20|NONE|FOB|final accounts are quickly ac| +18634|403793|41318|2|34|57690.18|0.03|0.06|R|F|1995-05-27|1995-04-24|1995-06-11|COLLECT COD|TRUCK|onic packages. furiously| +18634|541968|4479|3|13|26129.22|0.04|0.02|N|O|1995-07-07|1995-05-26|1995-08-04|TAKE BACK RETURN|REG AIR|en pinto beans. slyly regular attai| +18634|851831|14349|4|36|64180.44|0.00|0.08|N|O|1995-07-09|1995-06-02|1995-07-19|DELIVER IN PERSON|SHIP|nto beans haggle along the silent hoc| +18635|783311|8342|1|22|30674.16|0.04|0.08|R|F|1992-08-08|1992-10-07|1992-08-31|DELIVER IN PERSON|MAIL|eas wake blithely r| +18635|97748|35252|2|38|66338.12|0.03|0.04|A|F|1992-09-12|1992-10-03|1992-09-14|TAKE BACK RETURN|SHIP|ickly bold depo| +18636|30155|30156|1|23|24958.45|0.04|0.00|R|F|1994-12-05|1994-12-22|1994-12-21|TAKE BACK RETURN|FOB|osits. never final r| +18636|810543|48092|2|23|33430.50|0.06|0.00|A|F|1995-01-17|1995-01-01|1995-01-23|COLLECT COD|MAIL|lets. permanent requests use quickly un| +18636|792314|17345|3|46|64688.88|0.01|0.02|A|F|1995-02-19|1994-12-25|1995-03-13|COLLECT COD|SHIP|its are car| +18636|416661|29170|4|5|7888.20|0.00|0.03|A|F|1995-03-14|1994-12-21|1995-04-06|NONE|AIR|dle warthogs unwind about the quickly even| +18636|817789|5338|5|17|29014.58|0.01|0.06|R|F|1994-11-24|1995-02-07|1994-11-29|DELIVER IN PERSON|REG AIR|e ironic deposits. bold accounts nag. bold| +18636|579213|29214|6|27|34889.13|0.05|0.05|R|F|1994-11-22|1995-01-22|1994-12-21|COLLECT COD|AIR|iously silen| +18636|828660|3693|7|42|66722.04|0.03|0.01|R|F|1995-01-23|1995-01-23|1995-02-09|TAKE BACK RETURN|MAIL| haggle furiously after| +18637|285788|10799|1|20|35475.40|0.04|0.03|R|F|1992-10-04|1992-10-27|1992-10-06|COLLECT COD|TRUCK|y. blithely bold deposits wak| +18637|229787|4796|2|47|80688.19|0.01|0.07|A|F|1992-12-23|1992-11-10|1993-01-14|DELIVER IN PERSON|RAIL|slyly final t| +18638|866712|41747|1|46|77218.82|0.04|0.04|N|O|1998-02-18|1998-03-17|1998-03-07|TAKE BACK RETURN|AIR|equests: bold, regular ideas detect quickl| +18639|158424|8425|1|8|11859.36|0.04|0.00|R|F|1995-06-12|1995-07-03|1995-06-14|DELIVER IN PERSON|TRUCK|wake furiou| +18639|625287|25288|2|44|53339.00|0.04|0.00|N|O|1995-09-09|1995-06-30|1995-09-15|DELIVER IN PERSON|MAIL|uests boost furio| +18664|264686|39697|1|17|28061.39|0.02|0.01|N|O|1997-08-18|1997-07-10|1997-08-23|NONE|REG AIR| packages dazzle quickly regular packa| +18664|575735|758|2|26|47078.46|0.07|0.07|N|O|1997-07-03|1997-06-27|1997-07-18|TAKE BACK RETURN|MAIL|icing pinto beans haggle busily after the| +18664|373234|35742|3|35|45752.70|0.00|0.02|N|O|1997-04-21|1997-07-01|1997-04-24|DELIVER IN PERSON|MAIL|rbits boost across the b| +18664|942324|29879|4|40|54651.20|0.03|0.00|N|O|1997-04-21|1997-06-18|1997-05-20|COLLECT COD|TRUCK|eas must have to b| +18664|632126|7151|5|28|29626.52|0.02|0.01|N|O|1997-08-16|1997-06-24|1997-09-06|TAKE BACK RETURN|SHIP|deposits. regular, | +18664|133130|8135|6|21|24425.73|0.07|0.03|N|O|1997-06-04|1997-05-29|1997-06-29|COLLECT COD|RAIL|ss the regul| +18665|286817|36818|1|48|86582.40|0.01|0.04|R|F|1993-07-05|1993-06-21|1993-07-20|COLLECT COD|AIR|le along t| +18665|524083|49104|2|7|7749.42|0.00|0.02|A|F|1993-06-22|1993-07-07|1993-07-11|TAKE BACK RETURN|RAIL| pearls haggle slyly s| +18665|253956|3957|3|32|61118.08|0.01|0.06|A|F|1993-06-01|1993-05-30|1993-06-24|DELIVER IN PERSON|REG AIR|ss sautern| +18665|236144|11153|4|31|33484.03|0.02|0.08|A|F|1993-07-02|1993-06-13|1993-07-11|NONE|SHIP|heodolites daz| +18666|566258|16259|1|47|62238.81|0.06|0.05|A|F|1992-06-13|1992-05-04|1992-07-13|COLLECT COD|TRUCK|fluffily regular requests along the | +18666|91679|41680|2|50|83533.50|0.00|0.03|R|F|1992-06-11|1992-04-10|1992-06-22|TAKE BACK RETURN|AIR|blithely fluffy theodolites. express, f| +18666|847973|23006|3|47|90283.71|0.07|0.04|A|F|1992-03-17|1992-03-28|1992-03-21|TAKE BACK RETURN|FOB|ly. ironic, special depo| +18666|874897|12449|4|37|69258.45|0.10|0.07|R|F|1992-04-18|1992-04-24|1992-05-11|COLLECT COD|RAIL|foxes; ruthless gifts boost daringly r| +18666|385385|22907|5|22|32348.14|0.04|0.04|R|F|1992-04-10|1992-05-04|1992-04-27|NONE|REG AIR|boost furiously at the requests. unusual fo| +18666|165161|27665|6|38|46594.08|0.01|0.06|A|F|1992-04-19|1992-04-11|1992-05-10|DELIVER IN PERSON|RAIL|ons haggle carefully above the i| +18666|851954|14472|7|39|74330.49|0.02|0.02|R|F|1992-06-03|1992-03-30|1992-06-05|TAKE BACK RETURN|TRUCK|s nag busy requests. furiously final ac| +18667|775946|977|1|30|60657.30|0.07|0.00|A|F|1993-11-26|1993-12-29|1993-12-08|COLLECT COD|MAIL|ts. quickl| +18667|312942|25449|2|13|25414.09|0.03|0.08|R|F|1993-12-07|1994-01-23|1993-12-24|TAKE BACK RETURN|REG AIR|luffy courts. slyly | +18667|600530|25555|3|44|62942.00|0.09|0.04|R|F|1993-11-27|1994-01-27|1993-12-15|COLLECT COD|RAIL|ely. quickly regu| +18667|105006|17509|4|8|8088.00|0.07|0.06|A|F|1993-12-17|1994-01-10|1994-01-16|TAKE BACK RETURN|FOB| engage waters. | +18667|831336|18885|5|47|59562.63|0.10|0.03|A|F|1993-12-11|1994-01-30|1994-01-05|DELIVER IN PERSON|MAIL| use thinly. special pinto beans ha| +18668|644287|19312|1|15|18468.75|0.09|0.00|R|F|1995-05-27|1995-05-05|1995-06-16|COLLECT COD|MAIL|lar accounts use? re| +18668|516556|4087|2|25|39313.25|0.05|0.03|R|F|1995-05-23|1995-05-17|1995-06-08|DELIVER IN PERSON|MAIL|nticingly expre| +18668|742857|42858|3|23|43695.86|0.09|0.06|N|O|1995-07-18|1995-05-12|1995-08-12|DELIVER IN PERSON|MAIL|onic theodolite| +18669|752000|14516|1|10|10519.70|0.05|0.01|A|F|1993-01-13|1993-02-01|1993-01-23|DELIVER IN PERSON|SHIP| blithely pending deposits.| +18669|854886|17404|2|40|73633.60|0.02|0.01|A|F|1993-03-28|1993-01-29|1993-04-10|NONE|RAIL|al asymptotes wake furiously. carefully fl| +18669|66459|3963|3|17|24232.65|0.00|0.06|A|F|1992-12-19|1993-01-10|1993-01-11|TAKE BACK RETURN|AIR|es. foxes wake blithely agai| +18670|302475|2476|1|32|47278.72|0.10|0.06|N|O|1996-02-08|1996-02-28|1996-02-18|COLLECT COD|REG AIR| furiously express dependencies sleep.| +18670|688168|25708|2|29|33527.77|0.02|0.04|N|O|1996-03-18|1996-03-06|1996-04-16|DELIVER IN PERSON|MAIL|fily ironic packages. fu| +18670|25447|25448|3|28|38428.32|0.02|0.08|N|O|1996-05-03|1996-03-01|1996-05-05|COLLECT COD|SHIP|gular instructions across the carefully b| +18670|676997|39511|4|43|84880.28|0.05|0.05|N|O|1996-04-14|1996-03-31|1996-05-11|COLLECT COD|MAIL|old deposits are according to t| +18670|274957|49968|5|47|90801.18|0.02|0.06|N|O|1996-01-30|1996-03-12|1996-02-23|DELIVER IN PERSON|REG AIR|fully slyly ironic c| +18671|323257|48270|1|44|56330.56|0.10|0.07|N|O|1996-05-31|1996-03-27|1996-06-15|NONE|TRUCK|t unusual foxes. b| +18696|675214|241|1|50|59459.00|0.05|0.02|R|F|1995-04-27|1995-02-09|1995-05-22|DELIVER IN PERSON|AIR| against the | +18696|310959|23466|2|50|98497.00|0.06|0.06|R|F|1995-03-09|1995-02-05|1995-04-05|DELIVER IN PERSON|REG AIR| deposits sleep qu| +18696|278785|3796|3|22|38802.94|0.10|0.01|A|F|1995-04-02|1995-01-31|1995-04-07|COLLECT COD|TRUCK|the furiously express requests. carefully| +18696|529763|17294|4|10|17927.40|0.09|0.01|A|F|1995-04-25|1995-02-10|1995-05-13|COLLECT COD|AIR| boost slyly about the dependencies.| +18696|721425|8968|5|2|2892.78|0.04|0.00|A|F|1994-12-31|1995-02-05|1995-01-27|DELIVER IN PERSON|FOB|pecial ideas! blithely | +18697|538596|13617|1|27|44133.39|0.06|0.08|N|O|1996-10-13|1996-08-05|1996-10-25|DELIVER IN PERSON|FOB|express requests detect darin| +18697|182445|44949|2|34|51932.96|0.04|0.08|N|O|1996-09-10|1996-09-02|1996-09-13|COLLECT COD|SHIP|e slyly bold instructions-- carefully pendi| +18697|352701|15209|3|25|43842.25|0.10|0.07|N|O|1996-10-06|1996-08-11|1996-10-08|NONE|MAIL|n requests. final re| +18698|920258|45295|1|3|3834.63|0.05|0.02|R|F|1995-01-18|1995-03-16|1995-01-26|COLLECT COD|AIR|. ironic accounts among the busy pac| +18698|772802|22803|2|9|16872.93|0.08|0.00|A|F|1995-01-03|1995-02-10|1995-01-18|TAKE BACK RETURN|REG AIR|ly about the enticingly final requests. qu| +18698|472552|10080|3|37|56407.61|0.04|0.07|R|F|1995-04-21|1995-02-25|1995-05-13|NONE|REG AIR| above the slyly unusual deposi| +18698|174708|24709|4|46|82004.20|0.07|0.03|A|F|1995-01-19|1995-02-12|1995-02-05|TAKE BACK RETURN|FOB| the slyly special| +18698|301359|38878|5|27|36729.18|0.04|0.08|A|F|1995-03-28|1995-02-20|1995-04-06|COLLECT COD|TRUCK|ironic requests promise blithely| +18699|120960|8467|1|46|91124.16|0.04|0.07|N|O|1996-05-13|1996-04-05|1996-06-06|COLLECT COD|REG AIR|eve enticingly regul| +18699|966167|41206|2|2|2466.24|0.08|0.07|N|O|1996-05-02|1996-03-04|1996-05-18|NONE|AIR|ing to the final, pendin| +18699|355983|30998|3|26|53013.22|0.04|0.02|N|O|1996-03-09|1996-04-12|1996-03-14|COLLECT COD|FOB|special, special foxes are among the| +18700|305245|17752|1|26|32505.98|0.08|0.05|N|O|1995-09-10|1995-07-28|1995-09-27|NONE|REG AIR|tructions after the careful| +18700|243717|31230|2|35|58124.50|0.01|0.07|N|O|1995-08-11|1995-06-24|1995-08-13|COLLECT COD|MAIL|y final instructions cajole against the | +18700|135106|47609|3|12|13693.20|0.08|0.07|N|F|1995-06-15|1995-08-20|1995-07-06|TAKE BACK RETURN|AIR|e even excuses| +18700|716340|16341|4|42|56965.02|0.05|0.07|N|O|1995-09-14|1995-07-06|1995-09-21|DELIVER IN PERSON|MAIL|tructions. evenly silent packages are. | +18700|517210|17211|5|25|30679.75|0.09|0.08|N|O|1995-07-14|1995-07-03|1995-07-29|NONE|SHIP|stealthily even | +18700|746889|34432|6|36|69690.60|0.04|0.07|N|O|1995-09-07|1995-08-22|1995-09-09|DELIVER IN PERSON|REG AIR|eas cajole sl| +18700|956124|31163|7|6|7080.48|0.00|0.00|N|O|1995-07-27|1995-07-20|1995-08-06|DELIVER IN PERSON|SHIP|s escapades. ironic | +18701|575039|25040|1|48|53472.48|0.05|0.03|A|F|1993-04-29|1993-04-02|1993-05-01|DELIVER IN PERSON|SHIP|thy excuse| +18701|677101|2128|2|36|38810.52|0.04|0.07|R|F|1993-03-30|1993-04-17|1993-04-27|COLLECT COD|AIR|kly regular requests wake slyly. ca| +18701|31758|44259|3|48|81108.00|0.01|0.05|R|F|1993-06-02|1993-04-26|1993-06-24|NONE|AIR|s engage unusual deposits. | +18701|747161|34704|4|40|48325.20|0.06|0.03|A|F|1993-06-03|1993-04-04|1993-06-20|COLLECT COD|RAIL|round the carefully busy theodolites | +18701|526176|38687|5|38|45681.70|0.05|0.02|A|F|1993-03-02|1993-04-08|1993-03-26|TAKE BACK RETURN|MAIL|sly pending packages haggle furiousl| +18701|435670|48179|6|28|44958.20|0.00|0.08|A|F|1993-03-08|1993-05-07|1993-03-10|NONE|MAIL|. final dependencies haggle after the ca| +18701|292891|30407|7|1|1883.88|0.07|0.03|R|F|1993-04-24|1993-05-11|1993-05-17|NONE|FOB| the slyly bold dolphins. blit| +18702|603292|28317|1|46|54981.96|0.03|0.08|N|O|1997-12-04|1997-12-19|1997-12-09|DELIVER IN PERSON|FOB|ons. fluffily bold request| +18702|520103|32614|2|37|41553.96|0.04|0.03|N|O|1998-01-15|1997-12-17|1998-01-27|NONE|REG AIR|he regular, regular instructions. regular | +18703|731957|31958|1|37|73590.04|0.09|0.08|N|O|1995-06-27|1995-07-23|1995-07-14|DELIVER IN PERSON|MAIL|eas affix alon| +18703|558|13059|2|50|72927.50|0.01|0.04|N|F|1995-05-24|1995-07-11|1995-06-20|TAKE BACK RETURN|AIR|y alongside| +18703|361567|49089|3|8|13028.40|0.07|0.06|N|O|1995-08-11|1995-05-30|1995-09-09|COLLECT COD|RAIL|asymptotes are | +18703|846052|21085|4|40|39920.40|0.02|0.01|A|F|1995-05-05|1995-06-29|1995-05-12|NONE|AIR|r foxes. regular packages wake | +18703|595381|20404|5|24|35432.64|0.00|0.04|N|O|1995-06-26|1995-07-08|1995-07-11|NONE|RAIL|ly final theodolites sleep| +18703|565852|15853|6|1|1917.83|0.02|0.00|R|F|1995-06-05|1995-06-28|1995-06-09|NONE|RAIL|e blithely. bold foxes lose s| +18703|260402|35413|7|44|59945.16|0.05|0.08|N|O|1995-07-02|1995-06-01|1995-07-19|DELIVER IN PERSON|REG AIR|ions cajole c| +18728|563441|13442|1|10|15044.20|0.08|0.06|N|O|1998-01-14|1998-02-09|1998-01-28|DELIVER IN PERSON|SHIP|slyly even accounts grow fluffily sly| +18729|15510|3011|1|22|31361.22|0.10|0.07|N|O|1997-06-26|1997-06-20|1997-07-06|TAKE BACK RETURN|MAIL|ounts. furiously| +18729|672013|47040|2|3|2954.94|0.06|0.04|N|O|1997-06-26|1997-07-07|1997-07-20|COLLECT COD|FOB|posits are slyly.| +18730|810304|10305|1|29|35213.54|0.05|0.01|N|O|1998-01-15|1997-12-24|1998-02-03|TAKE BACK RETURN|AIR| are blithely across the| +18730|770750|8296|2|6|10924.32|0.05|0.00|N|O|1997-12-07|1998-01-29|1997-12-23|COLLECT COD|REG AIR|tes haggle against the special deposits| +18730|987299|49819|3|5|6931.25|0.03|0.02|N|O|1998-02-18|1997-12-26|1998-03-18|DELIVER IN PERSON|FOB|elets. pinto beans boost carefully besi| +18730|534190|46701|4|25|30604.25|0.08|0.01|N|O|1998-02-02|1998-01-28|1998-02-05|DELIVER IN PERSON|RAIL| blithely about the regular platelets.| +18730|126225|1230|5|26|32531.72|0.06|0.05|N|O|1997-12-30|1998-01-08|1998-01-10|COLLECT COD|AIR|ffily along the regular dep| +18730|449251|11760|6|10|12002.30|0.01|0.04|N|O|1998-02-14|1998-01-19|1998-03-10|DELIVER IN PERSON|FOB| carefully special packages.| +18731|447834|22851|1|17|30290.77|0.05|0.02|R|F|1994-12-02|1994-12-24|1994-12-13|DELIVER IN PERSON|REG AIR|deposits. pending instructions a| +18731|744187|31730|2|33|40627.95|0.07|0.02|R|F|1994-12-13|1994-12-24|1994-12-17|NONE|MAIL|ly regular accounts. ironic dependen| +18731|542693|42694|3|37|64219.79|0.08|0.02|A|F|1995-02-05|1995-01-06|1995-02-20|COLLECT COD|FOB|ts can cajole blithely. final theodoli| +18731|37880|381|4|44|79986.72|0.03|0.00|A|F|1995-01-23|1994-12-13|1995-02-04|COLLECT COD|REG AIR|ages boost carefully | +18731|633637|33638|5|43|67535.80|0.09|0.03|A|F|1994-11-15|1994-12-29|1994-11-16|TAKE BACK RETURN|AIR| accounts; blithel| +18731|520557|45578|6|39|61523.67|0.05|0.00|A|F|1994-10-19|1994-11-07|1994-10-23|TAKE BACK RETURN|REG AIR|accounts detect i| +18732|10324|10325|1|32|39498.24|0.01|0.03|N|O|1997-05-20|1997-04-11|1997-06-06|TAKE BACK RETURN|MAIL|ress deposits are evenly according to the| +18732|498820|48821|2|27|49107.60|0.06|0.04|N|O|1997-02-22|1997-05-03|1997-03-23|DELIVER IN PERSON|FOB|usly regular pinto beans. escapades c| +18732|667226|29740|3|20|23863.80|0.09|0.02|N|O|1997-06-13|1997-04-14|1997-07-13|DELIVER IN PERSON|MAIL|final, silent pinto beans| +18732|51449|38953|4|17|23807.48|0.09|0.02|N|O|1997-06-03|1997-03-25|1997-06-16|DELIVER IN PERSON|FOB|inal frets cajole| +18733|292284|4790|1|24|30630.48|0.06|0.08|A|F|1992-10-03|1992-11-10|1992-10-29|TAKE BACK RETURN|MAIL|slyly final pac| +18733|402708|15217|2|9|14496.12|0.02|0.02|R|F|1992-12-25|1992-10-22|1993-01-13|TAKE BACK RETURN|TRUCK|iously daring courts lose fur| +18734|624796|37309|1|6|10324.56|0.07|0.02|R|F|1992-08-08|1992-10-09|1992-08-26|COLLECT COD|SHIP|ng accounts alongside of the evenly sly dep| +18734|935715|10752|2|18|31512.06|0.00|0.01|A|F|1992-08-08|1992-10-17|1992-08-23|DELIVER IN PERSON|REG AIR|ly slyly regular| +18734|557750|45284|3|33|59655.09|0.00|0.02|R|F|1992-08-11|1992-09-07|1992-08-17|NONE|FOB|among the ironic accounts. carefully regula| +18734|94021|31525|4|20|20300.40|0.02|0.07|A|F|1992-09-06|1992-09-25|1992-09-15|DELIVER IN PERSON|RAIL|unusual deposits. pending pin| +18734|194833|19840|5|1|1927.83|0.00|0.08|A|F|1992-11-19|1992-10-23|1992-11-29|COLLECT COD|RAIL|of the furiou| +18734|553266|3267|6|37|48811.88|0.05|0.04|R|F|1992-11-23|1992-09-08|1992-11-30|TAKE BACK RETURN|RAIL|dependencies across the carefully| +18734|741377|3892|7|4|5673.36|0.07|0.00|A|F|1992-08-13|1992-10-26|1992-08-28|NONE|REG AIR|s. always unusual not| +18735|319853|19854|1|2|3745.68|0.09|0.04|R|F|1995-02-22|1995-01-30|1995-03-13|DELIVER IN PERSON|SHIP|to beans throughout the final, p| +18735|753328|15844|2|32|44201.28|0.03|0.08|R|F|1995-01-17|1995-01-28|1995-02-13|DELIVER IN PERSON|RAIL|ully pendin| +18735|173312|35816|3|2|2770.62|0.01|0.00|R|F|1995-04-25|1995-01-30|1995-04-26|DELIVER IN PERSON|SHIP|nto beans wa| +18735|850755|25790|4|8|13645.68|0.06|0.07|A|F|1995-03-12|1995-02-13|1995-03-28|COLLECT COD|REG AIR|riously. bold theodolites with | +18760|592209|29743|1|4|5204.72|0.04|0.01|N|O|1996-11-16|1996-11-26|1996-11-28|COLLECT COD|AIR|accounts. regular, special p| +18760|246355|8860|2|24|31232.16|0.09|0.05|N|O|1996-12-03|1996-11-09|1996-12-19|COLLECT COD|SHIP|ke. bold e| +18760|485802|48312|3|15|26816.70|0.07|0.06|N|O|1996-11-11|1996-12-01|1996-12-03|DELIVER IN PERSON|AIR|s hang quickly after the perman| +18760|868786|43821|4|15|26321.10|0.07|0.05|N|O|1996-10-04|1996-12-05|1996-11-02|COLLECT COD|AIR|sits; quickly ironic c| +18760|669580|7120|5|42|65081.10|0.08|0.01|N|O|1996-10-26|1996-12-07|1996-11-06|NONE|FOB|s use blithely | +18760|615327|15328|6|29|36026.41|0.04|0.00|N|O|1996-11-01|1996-11-19|1996-11-30|DELIVER IN PERSON|MAIL|ly unusual deposits cajole regu| +18760|787342|12373|7|16|22868.96|0.08|0.06|N|O|1996-12-14|1996-10-16|1996-12-23|DELIVER IN PERSON|RAIL|olphins are carefully blithel| +18761|841940|41941|1|28|52693.20|0.06|0.01|N|O|1997-09-05|1997-08-03|1997-10-04|NONE|MAIL|refully final requests boo| +18761|472559|10087|2|45|68918.85|0.08|0.00|N|O|1997-08-02|1997-08-28|1997-08-18|COLLECT COD|AIR|dolites after the furiously unusual | +18761|296384|21395|3|5|6901.85|0.02|0.01|N|O|1997-07-20|1997-09-08|1997-08-18|DELIVER IN PERSON|TRUCK|ven platelets| +18761|319352|6871|4|12|16456.08|0.10|0.02|N|O|1997-09-16|1997-09-15|1997-09-25|TAKE BACK RETURN|TRUCK|ironic theodolites | +18762|124637|12144|1|5|8308.15|0.09|0.03|A|F|1992-12-13|1993-01-29|1992-12-22|TAKE BACK RETURN|SHIP|press depos| +18762|758631|8632|2|38|64204.80|0.09|0.07|R|F|1992-12-03|1993-01-14|1993-01-01|COLLECT COD|AIR|dependencies are carefully; | +18762|307707|45226|3|4|6858.76|0.03|0.04|A|F|1992-11-25|1993-01-11|1992-12-07|NONE|RAIL|ructions. accounts use brav| +18763|261953|11954|1|19|36383.86|0.05|0.00|R|F|1993-07-25|1993-06-26|1993-08-15|NONE|FOB|as. unusual theodolite| +18763|627708|15245|2|1|1635.67|0.10|0.07|R|F|1993-08-18|1993-06-06|1993-08-23|NONE|SHIP|express accou| +18763|884380|9415|3|42|57302.28|0.04|0.03|R|F|1993-04-28|1993-05-30|1993-05-26|COLLECT COD|REG AIR|unts wake | +18763|766116|28632|4|32|37826.56|0.04|0.02|A|F|1993-05-24|1993-06-01|1993-06-21|COLLECT COD|MAIL|equests-- furiously regul| +18764|873368|48403|1|4|5365.28|0.04|0.04|A|F|1993-09-09|1993-09-01|1993-09-22|TAKE BACK RETURN|MAIL|lets nag furiously blithely un| +18764|686203|48717|2|37|43999.29|0.00|0.02|A|F|1993-11-13|1993-08-30|1993-11-19|NONE|MAIL| regular deposits. slyly bold | +18764|2520|27521|3|22|31295.44|0.07|0.01|R|F|1993-09-20|1993-10-17|1993-10-20|NONE|TRUCK|unts wake. regular excuses haggle | +18764|346043|46044|4|20|21780.60|0.01|0.01|R|F|1993-09-06|1993-09-06|1993-09-22|DELIVER IN PERSON|RAIL|reful accounts cajole| +18764|931853|19408|5|12|22617.72|0.07|0.04|R|F|1993-07-20|1993-08-31|1993-08-01|TAKE BACK RETURN|RAIL|pecial deposits. evenly un| +18764|649537|24562|6|49|72838.50|0.05|0.02|A|F|1993-10-19|1993-09-06|1993-11-10|COLLECT COD|SHIP|impress slyly regular requests: blithe| +18764|764997|2543|7|7|14433.72|0.03|0.06|R|F|1993-09-08|1993-09-18|1993-09-22|DELIVER IN PERSON|SHIP|uests. carefully pen| +18765|298260|10766|1|7|8807.75|0.01|0.05|N|O|1997-01-01|1996-12-01|1997-01-17|COLLECT COD|REG AIR|to the quickly final waters. packages ca| +18766|931352|18907|1|38|52565.78|0.01|0.07|R|F|1993-06-26|1993-07-07|1993-07-02|TAKE BACK RETURN|REG AIR|y express instructions are carefully.| +18767|460552|23062|1|50|75626.50|0.00|0.03|N|O|1996-10-22|1996-08-11|1996-10-27|NONE|MAIL|ular packages print q| +18767|492435|42436|2|34|48531.94|0.09|0.03|N|O|1996-07-16|1996-09-07|1996-07-31|DELIVER IN PERSON|MAIL|ets. blithely final foxes wake fluffily abo| +18767|352168|39690|3|47|57347.05|0.04|0.00|N|O|1996-07-30|1996-09-08|1996-08-18|TAKE BACK RETURN|AIR|ithely regular | +18767|873497|48532|4|4|5881.80|0.06|0.00|N|O|1996-08-21|1996-08-16|1996-09-11|NONE|SHIP|kly. carefully final| +18767|853786|3787|5|25|43493.50|0.09|0.05|N|O|1996-08-03|1996-09-11|1996-09-01|DELIVER IN PERSON|TRUCK|ously pending inst| +18767|576786|39298|6|1|1862.76|0.03|0.04|N|O|1996-07-20|1996-09-18|1996-08-17|COLLECT COD|REG AIR|refully unusual req| +18792|213741|38750|1|24|39713.52|0.06|0.03|N|O|1998-05-16|1998-06-06|1998-06-13|TAKE BACK RETURN|FOB|ites alongside of the final accounts boost | +18792|330844|30845|2|39|73118.37|0.00|0.06|N|O|1998-06-29|1998-06-04|1998-07-28|DELIVER IN PERSON|AIR|ding requests integrate slyly sly| +18792|482283|7302|3|19|24039.94|0.09|0.07|N|O|1998-07-12|1998-05-09|1998-08-10|COLLECT COD|FOB|theodolites print among the quickly even | +18792|728122|15665|4|45|51754.05|0.07|0.07|N|O|1998-05-02|1998-05-27|1998-05-26|COLLECT COD|REG AIR|heodolites wake s| +18792|535075|10096|5|36|39961.80|0.09|0.07|N|O|1998-06-26|1998-06-10|1998-07-01|COLLECT COD|SHIP|aggle bold pinto beans. quickly| +18793|263383|899|1|50|67318.50|0.02|0.00|N|O|1998-03-06|1998-04-01|1998-03-31|TAKE BACK RETURN|FOB|efully even requests. final, spec| +18793|674744|49771|2|18|30936.78|0.10|0.01|N|O|1998-03-09|1998-04-11|1998-03-16|DELIVER IN PERSON|RAIL| final asymptotes-- unusu| +18793|419944|19945|3|49|91332.08|0.01|0.00|N|O|1998-05-13|1998-03-06|1998-06-09|COLLECT COD|AIR|efully. pendin| +18793|988512|13551|4|5|8002.35|0.04|0.03|N|O|1998-03-29|1998-03-30|1998-04-06|TAKE BACK RETURN|FOB|sits should| +18793|907607|20126|5|2|3229.12|0.06|0.01|N|O|1998-02-16|1998-03-11|1998-03-06|COLLECT COD|REG AIR| slyly even deposits. regular b| +18793|139412|26919|6|28|40639.48|0.07|0.07|N|O|1998-02-15|1998-03-19|1998-03-10|TAKE BACK RETURN|RAIL|inal instructions sleep. furiou| +18794|561632|36655|1|32|54195.52|0.06|0.02|A|F|1994-01-22|1994-03-08|1994-01-29|COLLECT COD|FOB|heodolites dazzle carefully | +18794|333852|8865|2|43|81091.12|0.02|0.06|R|F|1994-03-12|1994-02-06|1994-03-29|DELIVER IN PERSON|FOB|wake blithely deposits. blithely ruthles| +18794|43016|5517|3|25|23975.25|0.01|0.01|R|F|1994-04-06|1994-02-16|1994-04-16|NONE|FOB|posits under the slyly pending| +18795|389615|39616|1|27|46024.20|0.02|0.05|N|O|1998-04-06|1998-03-05|1998-05-02|NONE|AIR|riously sile| +18795|244098|31611|2|21|21883.68|0.04|0.00|N|O|1998-01-20|1998-03-09|1998-02-09|COLLECT COD|MAIL|ackages detect. eve| +18795|544652|7163|3|36|61078.68|0.04|0.03|N|O|1998-04-18|1998-02-27|1998-04-30|NONE|TRUCK|ffily ironic packages breach past th| +18795|955620|18140|4|44|73725.52|0.00|0.07|N|O|1998-02-20|1998-01-27|1998-02-26|DELIVER IN PERSON|TRUCK|ainst the carefully final accounts.| +18796|141948|29455|1|38|75617.72|0.04|0.03|A|F|1995-01-25|1994-12-23|1995-02-10|TAKE BACK RETURN|MAIL|ackages across the regular i| +18796|712353|49896|2|4|5461.28|0.02|0.06|R|F|1994-12-27|1995-01-03|1995-01-03|COLLECT COD|AIR|sual pinto beans | +18796|511202|11203|3|20|24263.60|0.00|0.01|A|F|1994-10-15|1994-12-21|1994-11-06|DELIVER IN PERSON|AIR|ruthlessly regular ideas sleep. regular d| +18796|766056|16057|4|34|38148.68|0.05|0.04|A|F|1994-11-29|1994-12-26|1994-12-23|DELIVER IN PERSON|REG AIR|s haggle carefully. slyly ironic platelets | +18796|97779|35283|5|1|1776.77|0.06|0.04|A|F|1994-10-19|1994-11-27|1994-10-26|TAKE BACK RETURN|SHIP|eposits: ironic account| +18796|365067|2589|6|16|18112.80|0.05|0.08|R|F|1994-12-25|1994-12-22|1995-01-09|NONE|TRUCK|requests wake unusua| +18797|630867|30868|1|42|75508.86|0.05|0.07|N|O|1995-10-30|1995-10-20|1995-11-08|NONE|SHIP|n deposits haggl| +18798|385534|35535|1|20|32390.40|0.05|0.04|N|O|1996-11-12|1996-10-23|1996-12-09|COLLECT COD|FOB|es haggle. daring, unusua| +18798|654087|4088|2|31|32272.55|0.04|0.05|N|O|1996-12-02|1996-10-13|1996-12-26|DELIVER IN PERSON|RAIL|hely. expres| +18798|236263|48768|3|50|59962.50|0.03|0.00|N|O|1996-09-09|1996-10-15|1996-09-10|TAKE BACK RETURN|RAIL|furiously epitaphs. fluffily | +18798|869300|19301|4|34|43154.84|0.01|0.06|N|O|1996-08-12|1996-09-21|1996-09-03|DELIVER IN PERSON|AIR|symptotes a| +18798|310596|35609|5|1|1606.58|0.02|0.02|N|O|1996-09-27|1996-10-04|1996-10-22|NONE|REG AIR|es. unusual a| +18798|171838|34342|6|8|15278.64|0.09|0.03|N|O|1996-11-07|1996-10-30|1996-11-20|TAKE BACK RETURN|MAIL| requests. final excuses sleep r| +18798|67524|17525|7|13|19389.76|0.04|0.02|N|O|1996-11-10|1996-09-08|1996-12-01|COLLECT COD|FOB|ously boldly special| +18799|866095|41130|1|19|20159.95|0.10|0.06|N|O|1995-06-25|1995-06-23|1995-07-17|COLLECT COD|FOB|y final theodolites wake against the | +18799|451714|1715|2|8|13325.52|0.10|0.04|N|O|1995-07-08|1995-06-19|1995-08-05|NONE|FOB|regular instructions snooze| +18824|933372|45891|1|38|53402.54|0.01|0.00|R|F|1992-06-10|1992-07-17|1992-07-05|COLLECT COD|RAIL|ously blithely ironic theodolites| +18824|180868|30869|2|2|3897.72|0.03|0.01|R|F|1992-07-06|1992-07-04|1992-07-26|NONE|REG AIR|uctions sublate among the furious| +18824|836696|36697|3|13|21224.45|0.02|0.06|A|F|1992-05-28|1992-07-22|1992-06-09|TAKE BACK RETURN|MAIL| furiously unusu| +18825|752366|2367|1|21|29784.93|0.07|0.01|R|F|1992-08-25|1992-10-08|1992-09-06|TAKE BACK RETURN|MAIL|s cajole furiously express ideas| +18825|13550|13551|2|36|52687.80|0.10|0.07|A|F|1992-11-29|1992-09-11|1992-11-30|COLLECT COD|MAIL|ccounts nag. expres| +18826|275510|521|1|34|50507.00|0.00|0.07|R|F|1993-06-19|1993-05-28|1993-07-04|COLLECT COD|SHIP|ide of the quietly even ideas. bold plat| +18826|480248|30249|2|7|8597.54|0.00|0.07|R|F|1993-06-19|1993-06-04|1993-06-23|COLLECT COD|FOB|de of the bold accounts impre| +18826|518757|18758|3|16|28411.68|0.06|0.00|R|F|1993-07-06|1993-05-09|1993-07-20|DELIVER IN PERSON|RAIL|ic, regular deposits solve asymptotes| +18827|531896|44407|1|21|40485.27|0.05|0.05|R|F|1994-06-10|1994-06-20|1994-06-19|NONE|MAIL|nts. regular accounts after the sly| +18827|567730|5264|2|17|30561.07|0.06|0.03|R|F|1994-05-05|1994-07-14|1994-05-09|DELIVER IN PERSON|REG AIR|structions. ideas sleep s| +18827|835356|22905|3|13|16787.03|0.02|0.07|A|F|1994-07-18|1994-06-27|1994-08-10|NONE|REG AIR|s. requests ar| +18827|825135|12684|4|22|23321.98|0.08|0.01|A|F|1994-06-26|1994-06-27|1994-06-27|NONE|RAIL| the carefully ironi| +18827|38232|25733|5|12|14042.76|0.04|0.06|R|F|1994-05-21|1994-06-14|1994-06-04|DELIVER IN PERSON|AIR|s foxes. blith| +18827|552172|27195|6|37|45293.55|0.08|0.04|A|F|1994-05-28|1994-06-27|1994-06-15|DELIVER IN PERSON|SHIP|l orbits x-ray deposits. express, even t| +18828|398346|10854|1|4|5777.32|0.01|0.02|A|F|1992-08-14|1992-06-24|1992-08-23|COLLECT COD|REG AIR|e even accounts. blithely| +18828|999588|37146|2|17|28688.18|0.05|0.04|A|F|1992-08-17|1992-07-04|1992-08-23|TAKE BACK RETURN|TRUCK|ctions breach ca| +18829|217057|4570|1|47|45779.88|0.01|0.06|R|F|1994-04-05|1994-04-06|1994-05-01|NONE|REG AIR|luffily bold foxes. carefully quick pack| +18829|68344|30846|2|28|36745.52|0.07|0.01|R|F|1994-04-21|1994-03-12|1994-05-02|COLLECT COD|AIR|y express pinto bean| +18829|645756|8269|3|5|8508.60|0.10|0.03|A|F|1994-02-17|1994-02-21|1994-02-28|DELIVER IN PERSON|REG AIR| regularly| +18829|220702|33207|4|10|16226.90|0.02|0.05|A|F|1994-05-16|1994-02-27|1994-06-05|NONE|RAIL|y unusual, special | +18829|322652|10171|5|38|63636.32|0.00|0.07|R|F|1994-03-23|1994-04-18|1994-03-26|TAKE BACK RETURN|AIR|ly idle dependencie| +18829|796092|21123|6|38|45146.28|0.00|0.08|R|F|1994-04-13|1994-03-30|1994-04-14|NONE|FOB|ic, unusual theodolites ca| +18830|588221|13244|1|22|28802.40|0.01|0.02|N|O|1998-10-20|1998-09-15|1998-10-31|TAKE BACK RETURN|MAIL|ffily among the carefull| +18830|224154|24155|2|27|29109.78|0.10|0.03|N|O|1998-06-26|1998-08-12|1998-07-08|DELIVER IN PERSON|MAIL|. final, final exc| +18830|353286|28301|3|41|54910.07|0.08|0.05|N|O|1998-07-16|1998-09-22|1998-07-17|DELIVER IN PERSON|TRUCK|furiously unusual r| +18830|663029|569|4|26|25791.74|0.05|0.01|N|O|1998-09-08|1998-08-17|1998-10-08|COLLECT COD|FOB|rs eat carefully. bold accounts ca| +18831|731785|6814|1|28|50869.00|0.02|0.02|N|O|1997-06-12|1997-06-02|1997-06-23|DELIVER IN PERSON|FOB|unusual dolphins are ruth| +18831|107462|44969|2|43|63186.78|0.00|0.02|N|O|1997-05-11|1997-06-12|1997-06-05|TAKE BACK RETURN|FOB|ing accounts grow blithely deposits. | +18831|102802|15305|3|21|37900.80|0.05|0.01|N|O|1997-05-29|1997-07-13|1997-05-31|NONE|RAIL| final deposits above th| +18831|782650|20196|4|16|27721.92|0.06|0.08|N|O|1997-06-06|1997-06-27|1997-06-15|DELIVER IN PERSON|RAIL|equests are ca| +18831|987615|12654|5|28|47671.96|0.02|0.02|N|O|1997-08-22|1997-06-19|1997-08-25|COLLECT COD|REG AIR|ding to the blithe the| +18856|50611|25614|1|47|73395.67|0.03|0.04|N|O|1997-04-01|1997-03-05|1997-04-16|NONE|AIR|affix slyly pending| +18856|615760|15761|2|35|58650.55|0.07|0.08|N|O|1997-02-08|1997-04-05|1997-02-14|NONE|FOB|gainst the pendi| +18856|73754|23755|3|21|36282.75|0.06|0.03|N|O|1997-04-28|1997-02-20|1997-05-24|DELIVER IN PERSON|FOB|luffily pending courts haggle carefu| +18856|575003|25004|4|46|49587.08|0.10|0.03|N|O|1997-02-16|1997-03-30|1997-03-17|TAKE BACK RETURN|AIR|g the platelets. quickly final re| +18857|89133|1635|1|44|49373.72|0.10|0.07|N|O|1996-10-25|1996-11-12|1996-10-27|NONE|RAIL|all boost slyly. furiously even | +18857|44002|44003|2|45|42570.00|0.08|0.07|N|O|1996-11-23|1996-12-06|1996-11-30|DELIVER IN PERSON|AIR|nusual, final re| +18857|535522|48033|3|15|23362.50|0.06|0.02|N|O|1996-11-27|1996-12-02|1996-12-24|COLLECT COD|SHIP|e quickly. instructi| +18857|512842|373|4|33|61209.06|0.01|0.07|N|O|1996-10-11|1996-11-24|1996-10-27|NONE|TRUCK|excuses. ironic | +18857|322295|47308|5|29|38201.12|0.01|0.04|N|O|1996-10-19|1996-12-09|1996-11-03|NONE|MAIL|ins. unusual requests s| +18858|944986|32541|1|46|93423.24|0.04|0.06|R|F|1995-06-04|1995-04-04|1995-06-14|DELIVER IN PERSON|FOB|en packages. quickly regular | +18858|369899|19900|2|2|3937.76|0.09|0.05|A|F|1995-05-03|1995-04-10|1995-05-14|COLLECT COD|RAIL|ly stealthy| +18858|881501|44019|3|9|13342.14|0.09|0.06|A|F|1995-04-08|1995-05-13|1995-04-24|COLLECT COD|REG AIR|ronic, ironic theodolites| +18858|379549|42057|4|12|19542.36|0.04|0.01|N|F|1995-06-12|1995-03-21|1995-06-20|DELIVER IN PERSON|TRUCK|equests are among the quickly | +18859|764231|39262|1|1|1295.20|0.01|0.02|N|O|1998-08-07|1998-07-02|1998-08-18|NONE|FOB|al deposits| +18859|421933|21934|2|27|50082.57|0.04|0.08|N|O|1998-07-25|1998-05-13|1998-08-13|COLLECT COD|SHIP|gle. stealthily even packages along t| +18859|427551|15076|3|48|70969.44|0.04|0.02|N|O|1998-06-07|1998-07-04|1998-06-16|TAKE BACK RETURN|SHIP|ar instructi| +18859|839681|2198|4|47|76170.08|0.00|0.02|N|O|1998-06-05|1998-05-14|1998-06-20|NONE|RAIL|. accounts sleep | +18859|506286|43817|5|11|14214.86|0.10|0.07|N|O|1998-06-14|1998-06-07|1998-07-11|TAKE BACK RETURN|REG AIR|l accounts. slyly | +18860|980868|18426|1|20|38976.40|0.04|0.01|A|F|1993-05-31|1993-04-13|1993-06-16|TAKE BACK RETURN|RAIL|t fluffily according to t| +18860|434789|22314|2|32|55160.32|0.07|0.02|R|F|1993-03-15|1993-04-06|1993-04-13|TAKE BACK RETURN|RAIL| bravely express platelets. | +18860|494220|19239|3|12|14570.40|0.09|0.04|A|F|1993-03-08|1993-04-17|1993-04-03|TAKE BACK RETURN|MAIL|st the regular dependencies-- slyly f| +18860|351212|13720|4|42|53054.40|0.05|0.06|R|F|1993-06-22|1993-05-09|1993-07-06|TAKE BACK RETURN|TRUCK|y ironic requests. furiously thin theodoli| +18861|753482|3483|1|8|12283.60|0.01|0.03|N|O|1996-02-28|1996-03-24|1996-03-13|TAKE BACK RETURN|REG AIR|ests. blithely final packages| +18861|758957|33988|2|40|80636.80|0.01|0.06|N|O|1996-05-31|1996-04-14|1996-06-17|DELIVER IN PERSON|TRUCK|le slyly. blithely | +18861|779051|41567|3|4|4520.08|0.07|0.07|N|O|1996-05-05|1996-05-04|1996-05-09|COLLECT COD|TRUCK|efully according to| +18861|499164|24183|4|12|13957.68|0.08|0.05|N|O|1996-03-31|1996-03-30|1996-04-26|NONE|FOB|into beans gro| +18861|440331|27856|5|27|34325.37|0.08|0.05|N|O|1996-04-02|1996-04-20|1996-04-19|NONE|AIR|ate blithely. r| +18861|637797|25334|6|31|53777.56|0.04|0.01|N|O|1996-05-02|1996-04-22|1996-05-18|DELIVER IN PERSON|TRUCK|ajole alongside| +18862|658482|33509|1|36|51856.20|0.00|0.05|R|F|1994-05-27|1994-06-25|1994-05-29|DELIVER IN PERSON|MAIL|nusual, final pack| +18862|95502|8004|2|34|50915.00|0.02|0.02|A|F|1994-06-28|1994-06-01|1994-07-05|COLLECT COD|FOB|slyly idle pinto bean| +18863|268147|5663|1|40|44605.20|0.04|0.01|N|O|1995-11-12|1995-10-19|1995-12-12|TAKE BACK RETURN|RAIL|. slyly steal| +18863|737524|39|2|13|20299.37|0.04|0.06|N|O|1995-07-28|1995-10-22|1995-08-24|TAKE BACK RETURN|RAIL|. ironic asymptotes over the slyly fi| +18888|104929|17432|1|16|30942.72|0.02|0.05|R|F|1992-02-07|1992-03-10|1992-02-20|COLLECT COD|REG AIR|ke. carefully exp| +18888|529325|29326|2|20|27086.00|0.03|0.03|A|F|1992-04-25|1992-03-18|1992-05-12|DELIVER IN PERSON|RAIL|fluffily silent packages! ex| +18888|362674|25182|3|28|48626.48|0.02|0.05|R|F|1992-04-03|1992-04-04|1992-04-30|COLLECT COD|SHIP|s. unusual, final deposits wake s| +18888|447415|22432|4|23|31334.97|0.04|0.07|A|F|1992-05-22|1992-03-19|1992-06-21|DELIVER IN PERSON|MAIL|lites are. regular, express pinto| +18888|691040|16067|5|9|9279.09|0.03|0.05|A|F|1992-05-04|1992-02-29|1992-05-16|TAKE BACK RETURN|MAIL|ses cajole fluffil| +18889|758797|46343|1|6|11134.56|0.06|0.03|R|F|1994-11-26|1994-12-05|1994-12-02|NONE|REG AIR| deposits c| +18889|87899|401|2|43|81136.27|0.06|0.07|R|F|1994-12-03|1994-12-02|1994-12-15|COLLECT COD|FOB| the fluffily sly fo| +18890|474905|37415|1|42|78954.96|0.02|0.02|A|F|1994-10-29|1994-12-21|1994-11-16|COLLECT COD|REG AIR|even dolphins behind the even a| +18890|713212|25727|2|4|4900.72|0.04|0.07|R|F|1995-01-07|1994-12-06|1995-01-20|NONE|TRUCK|. blithely regular | +18890|945547|8066|3|20|31850.00|0.10|0.07|A|F|1994-10-22|1994-11-17|1994-10-26|NONE|TRUCK| somas boost | +18890|802560|40109|4|2|2925.04|0.10|0.02|A|F|1994-11-21|1994-11-10|1994-12-12|DELIVER IN PERSON|RAIL|braids ought to kindle slyly blithely final| +18890|616820|29333|5|19|32999.01|0.04|0.02|R|F|1995-01-21|1994-12-15|1995-02-16|DELIVER IN PERSON|MAIL| furiously among the bold reques| +18891|875314|25315|1|3|3867.81|0.01|0.08|R|F|1992-09-11|1992-10-27|1992-09-15|TAKE BACK RETURN|TRUCK|ever final package| +18891|392983|5491|2|21|43595.37|0.07|0.05|A|F|1993-01-02|1992-10-16|1993-01-22|TAKE BACK RETURN|SHIP|ideas poach enticing dependencies. sile| +18891|864522|27040|3|33|49053.84|0.04|0.05|R|F|1992-12-07|1992-10-14|1993-01-06|TAKE BACK RETURN|REG AIR|l deposits wake slyly blithely busy f| +18891|12157|12158|4|45|48111.75|0.10|0.00|R|F|1992-10-12|1992-10-22|1992-11-10|NONE|MAIL|efully even theodolit| +18891|307018|32031|5|48|49200.00|0.04|0.08|R|F|1992-09-16|1992-10-20|1992-10-07|TAKE BACK RETURN|FOB|lar, regular pinto beans: packages| +18891|40277|27778|6|42|51125.34|0.01|0.06|A|F|1992-12-01|1992-11-17|1992-12-07|DELIVER IN PERSON|AIR|regular dependencies? furiously spe| +18891|933662|21217|7|21|35608.02|0.04|0.03|R|F|1992-12-14|1992-10-13|1993-01-12|COLLECT COD|TRUCK|leep carefully regular ideas. furi| +18892|54606|42110|1|46|71787.60|0.05|0.05|A|F|1992-04-22|1992-05-26|1992-05-10|DELIVER IN PERSON|FOB|oost quickly along the final theodolites.| +18892|758119|33150|2|7|8239.56|0.02|0.08|R|F|1992-04-10|1992-04-29|1992-04-13|COLLECT COD|SHIP|usly bold dolphins among the ev| +18892|705932|43475|3|28|54261.20|0.06|0.04|R|F|1992-05-02|1992-06-01|1992-05-07|DELIVER IN PERSON|AIR|refully above the ironic orbits.| +18892|589272|1784|4|20|27225.00|0.09|0.06|R|F|1992-04-02|1992-06-07|1992-04-09|COLLECT COD|AIR|fily express ac| +18892|884936|22488|5|44|84519.16|0.04|0.07|A|F|1992-05-08|1992-05-18|1992-05-16|NONE|AIR|ly? unusual ideas cajole. | +18892|106027|31032|6|29|29957.58|0.03|0.02|R|F|1992-06-03|1992-05-20|1992-07-02|COLLECT COD|RAIL|lessly carefully | +18892|987355|12394|7|34|49038.54|0.01|0.04|R|F|1992-04-11|1992-04-29|1992-05-11|COLLECT COD|TRUCK|ld, bold packages despite the carefully exp| +18893|475280|37790|1|8|10042.08|0.02|0.05|N|O|1997-12-26|1997-12-25|1998-01-08|NONE|REG AIR| the special accou| +18893|19098|44099|2|24|24410.16|0.00|0.07|N|O|1997-12-30|1997-11-30|1998-01-04|TAKE BACK RETURN|MAIL|ing deposits integrate b| +18893|966823|16824|3|40|75591.20|0.06|0.02|N|O|1998-01-21|1997-12-24|1998-01-28|NONE|MAIL|ages. fluffily special accounts nag | +18894|804624|17141|1|38|58086.04|0.09|0.02|N|O|1997-03-29|1997-04-22|1997-04-04|DELIVER IN PERSON|AIR|ges try to integrate blithely | +18894|309253|34266|2|23|29031.52|0.05|0.00|N|O|1997-06-08|1997-04-23|1997-06-19|TAKE BACK RETURN|REG AIR|s. final foxes against| +18894|602522|27547|3|49|69800.01|0.01|0.03|N|O|1997-02-18|1997-03-22|1997-02-19|TAKE BACK RETURN|SHIP|cial tithes sleep furiously regular,| +18894|576353|13887|4|46|65749.18|0.10|0.03|N|O|1997-05-21|1997-04-27|1997-06-05|TAKE BACK RETURN|TRUCK|ly bold instructions. express requ| +18895|599217|36751|1|28|36853.32|0.05|0.00|A|F|1994-06-03|1994-05-13|1994-06-22|TAKE BACK RETURN|TRUCK| slyly pending pinto | +18895|27092|27093|2|16|16305.44|0.00|0.03|A|F|1994-03-21|1994-04-28|1994-03-27|TAKE BACK RETURN|RAIL|ing theodolites. furiou| +18895|334807|34808|3|43|79196.97|0.04|0.02|R|F|1994-03-31|1994-04-10|1994-04-18|NONE|AIR| pending deposi| +18920|527078|2099|1|7|7735.35|0.02|0.02|N|O|1996-08-07|1996-10-09|1996-09-02|NONE|REG AIR| final, regular sentim| +18920|589219|26753|2|6|7849.14|0.08|0.01|N|O|1996-11-24|1996-09-18|1996-12-06|TAKE BACK RETURN|RAIL|. ironic, pending fox| +18920|994436|31994|3|45|68867.55|0.10|0.05|N|O|1996-10-16|1996-10-16|1996-11-07|COLLECT COD|MAIL| final pains run rut| +18920|473416|10944|4|47|65301.33|0.07|0.00|N|O|1996-10-24|1996-09-12|1996-11-02|TAKE BACK RETURN|FOB| believe. final, iron| +18920|702585|15100|5|22|34926.10|0.05|0.02|N|O|1996-08-30|1996-10-14|1996-09-07|COLLECT COD|FOB|even, ironic foxes nag slyly above th| +18921|352684|27699|1|10|17366.70|0.05|0.02|N|O|1995-11-07|1995-10-15|1995-11-27|COLLECT COD|REG AIR|ly above the slyly express depos| +18921|559053|46587|2|23|25576.69|0.07|0.06|N|O|1995-09-30|1995-11-18|1995-10-19|DELIVER IN PERSON|AIR|ithout the slyly ironic accounts| +18922|703510|41053|1|1|1513.48|0.03|0.02|N|O|1995-12-20|1996-02-20|1996-01-09|NONE|REG AIR|osits are furiously. pending foxes could| +18922|892473|42474|2|22|32239.46|0.03|0.07|N|O|1996-01-22|1996-02-26|1996-01-28|DELIVER IN PERSON|AIR|ep fluffily. furiously| +18922|779641|4672|3|50|86030.50|0.06|0.06|N|O|1996-03-17|1996-01-01|1996-03-31|DELIVER IN PERSON|REG AIR|ggle doggedly along the furiously regular| +18922|410431|10432|4|14|18779.74|0.07|0.07|N|O|1995-12-20|1996-01-03|1995-12-28|COLLECT COD|MAIL| requests from the unusual ideas maintain | +18923|891337|28889|1|29|38520.41|0.10|0.00|R|F|1992-03-09|1992-04-30|1992-03-10|DELIVER IN PERSON|SHIP|ial packages wake above the final request| +18923|695313|45314|2|36|47098.08|0.09|0.02|A|F|1992-03-01|1992-04-12|1992-03-02|TAKE BACK RETURN|MAIL|nal deposits boost ir| +18923|117867|5374|3|11|20733.46|0.03|0.04|R|F|1992-02-27|1992-04-13|1992-03-10|DELIVER IN PERSON|SHIP|rate furiously. qu| +18923|974023|24024|4|31|34006.38|0.04|0.03|R|F|1992-03-18|1992-05-01|1992-04-16|DELIVER IN PERSON|REG AIR|ar requests sleep quickly. decoys| +18923|390253|27775|5|29|38953.96|0.10|0.01|A|F|1992-06-01|1992-04-14|1992-06-29|TAKE BACK RETURN|RAIL|uests integrate fl| +18924|45236|20237|1|19|22443.37|0.00|0.03|R|F|1995-01-02|1995-01-30|1995-01-04|NONE|AIR|e blithely around the quietly e| +18925|384551|9566|1|48|78505.92|0.10|0.08|N|O|1996-02-01|1996-01-10|1996-03-02|NONE|FOB|efully regular deposits wake| +18925|137865|37866|2|43|81822.98|0.02|0.02|N|O|1996-02-06|1995-12-29|1996-03-05|TAKE BACK RETURN|AIR|ackages haggle | +18925|95811|8313|3|37|66851.97|0.01|0.06|N|O|1996-02-19|1995-12-26|1996-03-09|DELIVER IN PERSON|TRUCK| the final excuses. foxes| +18925|289712|14723|4|26|44244.20|0.07|0.04|N|O|1996-02-12|1996-01-15|1996-02-16|DELIVER IN PERSON|MAIL|ickly regular requests; quickly iron| +18925|177694|40198|5|22|38977.18|0.04|0.03|N|O|1995-12-06|1996-01-30|1995-12-31|DELIVER IN PERSON|SHIP|ding pinto beans wake slyly. slyl| +18925|487710|37711|6|32|54326.08|0.07|0.06|N|O|1995-12-18|1996-01-15|1995-12-21|NONE|MAIL|ndencies. slyly unusual the| +18925|927840|27841|7|31|57901.80|0.03|0.03|N|O|1995-12-10|1995-12-19|1995-12-30|COLLECT COD|RAIL|ding packages. quick deposits sleep bl| +18926|201159|13664|1|35|37104.90|0.01|0.02|R|F|1993-08-25|1993-07-15|1993-09-20|COLLECT COD|REG AIR| haggle acros| +18926|873765|48800|2|3|5216.16|0.04|0.02|R|F|1993-06-29|1993-07-18|1993-07-25|DELIVER IN PERSON|RAIL|y. fluffily regular excuses are blithe| +18926|360288|47810|3|15|20224.05|0.04|0.05|A|F|1993-08-15|1993-07-29|1993-09-09|TAKE BACK RETURN|TRUCK|carefully aga| +18926|350577|13085|4|17|27668.52|0.08|0.08|R|F|1993-08-20|1993-08-07|1993-09-04|NONE|SHIP|deas. fluffily pending requests detect. s| +18926|141046|3549|5|50|54352.00|0.02|0.03|A|F|1993-07-07|1993-08-25|1993-08-05|TAKE BACK RETURN|MAIL| the carefully quiet instructions. pending| +18926|546203|21224|6|30|37475.40|0.03|0.03|R|F|1993-08-27|1993-07-16|1993-09-14|COLLECT COD|TRUCK|ts run ironically. fluffily ironic instru| +18926|33818|8819|7|14|24525.34|0.01|0.03|A|F|1993-09-06|1993-08-04|1993-09-15|TAKE BACK RETURN|SHIP|efully special requests; slyly pending pac| +18927|371363|33871|1|5|7171.75|0.06|0.02|N|O|1996-09-06|1996-07-15|1996-10-03|COLLECT COD|FOB|ide of the final accounts. final excuses ar| +18952|575889|13423|1|19|37332.34|0.08|0.03|N|O|1995-09-23|1995-08-25|1995-10-14|DELIVER IN PERSON|AIR|attainments use furious| +18952|955475|17995|2|28|42852.04|0.03|0.02|N|O|1995-08-24|1995-10-16|1995-08-25|NONE|SHIP|ndencies nod across the regular packages.| +18952|651682|26709|3|45|73514.25|0.04|0.06|N|O|1995-11-14|1995-10-14|1995-12-06|NONE|TRUCK|es sleep along t| +18952|807736|45285|4|36|59172.84|0.03|0.02|N|O|1995-10-06|1995-08-29|1995-10-10|DELIVER IN PERSON|TRUCK|s sleep never quickly final i| +18952|616306|16307|5|7|8555.89|0.07|0.03|N|O|1995-09-04|1995-10-13|1995-09-10|DELIVER IN PERSON|RAIL|express deposit| +18952|254234|41750|6|33|39211.26|0.07|0.01|N|O|1995-08-12|1995-09-08|1995-09-09|TAKE BACK RETURN|RAIL|bold, final ideas. carefu| +18953|471801|9329|1|23|40773.94|0.05|0.05|N|O|1996-08-16|1996-09-20|1996-09-15|TAKE BACK RETURN|REG AIR|as haggle quickly. sl| +18953|557505|45039|2|12|18749.76|0.01|0.03|N|O|1996-07-27|1996-10-01|1996-08-09|DELIVER IN PERSON|MAIL|y: blithely unus| +18953|971582|34102|3|42|69448.68|0.01|0.00|N|O|1996-09-22|1996-09-08|1996-09-23|NONE|AIR| beans sleep blithely sly| +18954|848399|48400|1|12|16168.20|0.03|0.05|N|O|1996-10-11|1996-09-12|1996-10-25|DELIVER IN PERSON|MAIL|sits run carefully furiously regular | +18954|33301|45802|2|36|44434.80|0.01|0.03|N|O|1996-10-14|1996-07-27|1996-10-24|NONE|SHIP|efully reg| +18955|52840|15342|1|10|17928.40|0.00|0.00|N|O|1996-11-02|1996-10-11|1996-11-28|NONE|AIR|uests. ironic foxes promise| +18955|76019|13523|2|44|43780.44|0.04|0.07|N|O|1996-08-30|1996-09-23|1996-09-08|TAKE BACK RETURN|RAIL|eep blithely regular ideas. carefully | +18955|647527|22552|3|32|47183.68|0.00|0.07|N|O|1996-10-23|1996-09-12|1996-10-29|NONE|SHIP|against the even dugouts. | +18955|978843|28844|4|50|96090.00|0.07|0.04|N|O|1996-11-11|1996-10-02|1996-11-17|COLLECT COD|MAIL| dependencies| +18955|402206|39731|5|49|54300.82|0.06|0.02|N|O|1996-09-22|1996-10-03|1996-10-22|TAKE BACK RETURN|FOB|xes are slyly slyly regular Tiresias. quick| +18956|192896|17903|1|32|63644.48|0.05|0.08|N|O|1997-10-10|1997-12-14|1997-10-13|COLLECT COD|MAIL|riously slyly regul| +18956|986656|11695|2|7|12198.27|0.01|0.01|N|O|1997-12-10|1997-11-20|1997-12-15|NONE|MAIL|latelets aga| +18956|721161|33676|3|30|35463.90|0.09|0.03|N|O|1997-11-09|1997-12-10|1997-11-29|COLLECT COD|MAIL|fily enticing in| +18956|545059|20080|4|25|27600.75|0.09|0.02|N|O|1997-11-10|1997-12-30|1997-11-16|COLLECT COD|FOB| courts. ironic multipl| +18956|802026|2027|5|45|41759.10|0.00|0.04|N|O|1997-11-22|1997-12-10|1997-11-24|NONE|MAIL|hely. special instructions aft| +18956|643794|18819|6|34|59083.84|0.02|0.00|N|O|1998-01-18|1997-11-03|1998-01-19|COLLECT COD|REG AIR|ies affix according to the regular account| +18956|241117|3622|7|50|52905.00|0.08|0.05|N|O|1997-11-03|1997-12-28|1997-11-14|NONE|RAIL|ely unusual pla| +18957|447968|47969|1|6|11495.64|0.00|0.00|N|O|1998-04-23|1998-02-14|1998-05-01|NONE|TRUCK|thely final theodolite| +18957|995262|20301|2|23|31216.06|0.00|0.02|N|O|1998-03-22|1998-03-16|1998-04-09|COLLECT COD|MAIL|l deposits haggle carefully specia| +18957|362084|49606|3|27|30943.89|0.00|0.05|N|O|1998-02-20|1998-02-10|1998-03-06|TAKE BACK RETURN|AIR|decoys. bl| +18958|312151|49670|1|24|27915.36|0.03|0.06|R|F|1993-07-12|1993-08-03|1993-07-14|DELIVER IN PERSON|AIR|onic dependencies wake a| +18958|320739|33246|2|34|59830.48|0.00|0.06|A|F|1993-06-23|1993-07-16|1993-07-06|DELIVER IN PERSON|FOB| express, pending package| +18958|654547|42087|3|17|25525.67|0.02|0.01|A|F|1993-08-20|1993-08-13|1993-08-22|COLLECT COD|FOB|after the fluffily e| +18958|965030|15031|4|26|28469.74|0.09|0.03|R|F|1993-07-24|1993-07-26|1993-08-02|DELIVER IN PERSON|FOB|ly regular instructions wake alon| +18958|249687|24696|5|3|4910.01|0.05|0.00|R|F|1993-07-06|1993-09-07|1993-07-24|COLLECT COD|RAIL|furiously before the quickly ironic acco| +18958|478818|28819|6|18|32342.22|0.10|0.05|A|F|1993-07-30|1993-09-03|1993-08-10|TAKE BACK RETURN|TRUCK|ct fluffily blithely ironic dolphins.| +18959|164718|39725|1|13|23175.23|0.00|0.06|A|F|1993-04-05|1993-01-31|1993-05-02|NONE|SHIP|equests. furiously final dep| +18959|412410|49935|2|23|30414.97|0.02|0.04|A|F|1993-04-02|1993-02-26|1993-04-08|COLLECT COD|FOB|ake along the furiously bold requests. pint| +18959|374519|24520|3|26|41431.00|0.01|0.06|R|F|1993-01-04|1993-02-12|1993-02-02|COLLECT COD|MAIL|ully express packa| +18959|539401|1912|4|43|61936.34|0.06|0.01|R|F|1993-04-16|1993-03-15|1993-05-05|NONE|REG AIR|osits. slyly regular asymptotes solve b| +18959|710027|35056|5|27|27998.73|0.09|0.08|R|F|1993-03-15|1993-03-03|1993-04-14|DELIVER IN PERSON|TRUCK|p according to the expr| +18984|863171|13172|1|24|27219.12|0.06|0.02|A|F|1995-02-11|1995-02-17|1995-03-03|TAKE BACK RETURN|REG AIR|structions detect. fluffily special p| +18984|310653|35666|2|31|51572.84|0.02|0.08|A|F|1995-03-27|1995-02-25|1995-04-18|NONE|AIR|regular asymptotes. slyl| +18984|142605|5108|3|43|70846.80|0.06|0.01|R|F|1995-02-02|1995-03-28|1995-03-03|COLLECT COD|REG AIR|gle. ideas sleep carefully final reque| +18985|69222|19223|1|21|25015.62|0.00|0.03|N|O|1996-08-22|1996-09-16|1996-09-16|DELIVER IN PERSON|SHIP|latelets. special ideas a| +18985|400341|342|2|20|24826.40|0.04|0.05|N|O|1996-08-03|1996-10-15|1996-08-08|COLLECT COD|TRUCK|egular asymptotes sleep carefully ab| +18985|520421|7952|3|49|70628.60|0.08|0.03|N|O|1996-08-10|1996-09-26|1996-08-26|COLLECT COD|MAIL|ss asymptotes. blithely special acco| +18985|700267|12782|4|8|10137.84|0.06|0.08|N|O|1996-11-10|1996-10-17|1996-11-13|COLLECT COD|SHIP|the unusual deposits. theodolites| +18985|370799|20800|5|16|29916.48|0.08|0.06|N|O|1996-08-23|1996-10-14|1996-08-30|COLLECT COD|AIR|e regular, sile| +18985|11555|36556|6|26|38130.30|0.05|0.06|N|O|1996-08-25|1996-10-14|1996-09-06|DELIVER IN PERSON|AIR|slyly regular requests. regu| +18985|204654|4655|7|3|4675.92|0.02|0.05|N|O|1996-08-12|1996-09-25|1996-09-03|NONE|MAIL| even instru| +18986|616427|41452|1|13|17464.07|0.01|0.01|A|F|1994-07-22|1994-08-24|1994-07-31|TAKE BACK RETURN|REG AIR|ithely even requests are fluffily| +18986|272114|34620|2|11|11947.10|0.06|0.00|R|F|1994-10-20|1994-07-31|1994-10-25|TAKE BACK RETURN|TRUCK|iously ironic account| +18987|833113|8146|1|22|23013.54|0.08|0.08|R|F|1993-10-07|1993-09-12|1993-10-26|NONE|REG AIR|olites nag blit| +18987|115653|28156|2|3|5005.95|0.01|0.05|A|F|1993-10-07|1993-08-17|1993-10-26|NONE|TRUCK| promise fluffily | +18988|874247|49282|1|16|19539.20|0.10|0.05|N|O|1997-08-05|1997-07-09|1997-08-19|DELIVER IN PERSON|MAIL| final accounts cajole careful| +18988|462004|49532|2|14|13523.72|0.07|0.08|N|O|1997-05-27|1997-06-13|1997-05-28|COLLECT COD|TRUCK|platelets haggle slyly ar| +18988|901183|13702|3|36|42629.04|0.07|0.01|N|O|1997-08-26|1997-06-14|1997-09-03|DELIVER IN PERSON|TRUCK|unusual packages. blithely expre| +18988|169686|32190|4|29|50914.72|0.00|0.03|N|O|1997-05-17|1997-06-25|1997-05-20|COLLECT COD|REG AIR|he final orbits wake qu| +18989|228486|28487|1|19|26874.93|0.04|0.01|N|O|1996-11-16|1997-01-21|1996-11-30|COLLECT COD|RAIL|onic ideas wake finally across the ironic, | +18989|163032|38039|2|41|44896.23|0.01|0.07|N|O|1997-02-24|1996-12-31|1997-03-14|NONE|RAIL|e furiously pending requests. carefu| +18989|69112|31614|3|10|10811.10|0.02|0.05|N|O|1996-12-07|1996-12-20|1996-12-20|COLLECT COD|RAIL|blithely. regular pinto beans integrate car| +18989|564768|27280|4|8|14661.92|0.03|0.03|N|O|1997-01-20|1996-12-22|1997-02-11|NONE|SHIP|o beans sleep slyly furiously express| +18989|42203|4704|5|20|22904.00|0.09|0.00|N|O|1996-11-09|1996-11-30|1996-11-23|NONE|REG AIR|ual attainments use furiously spe| +18990|381995|44503|1|17|35308.66|0.04|0.08|N|O|1995-07-04|1995-07-12|1995-08-03|NONE|REG AIR|ideas? furiously regular packa| +18990|173970|36474|2|27|55187.19|0.07|0.00|A|F|1995-06-04|1995-07-10|1995-06-06|COLLECT COD|FOB|ake blithely according | +18991|523516|11047|1|49|75435.01|0.10|0.08|R|F|1995-02-19|1995-03-14|1995-03-12|COLLECT COD|RAIL|sits affix furi| +18991|721509|21510|2|46|70401.62|0.08|0.06|A|F|1995-04-17|1995-03-08|1995-05-12|DELIVER IN PERSON|FOB|d, bold deposits caj| +18991|394026|31548|3|28|31360.28|0.01|0.07|A|F|1995-01-13|1995-03-08|1995-02-04|NONE|SHIP| packages wake according to the car| +18991|384155|46663|4|6|7434.84|0.09|0.02|R|F|1995-03-02|1995-02-01|1995-03-09|DELIVER IN PERSON|SHIP|ously even instr| +18991|480889|18417|5|48|89753.28|0.07|0.04|R|F|1995-01-21|1995-03-12|1995-01-24|TAKE BACK RETURN|TRUCK|ent packages affix furio| +19016|172532|35036|1|31|49740.43|0.03|0.05|R|F|1993-11-03|1993-08-30|1993-11-25|TAKE BACK RETURN|REG AIR|osits. quickly final braids caj| +19016|732610|45125|2|32|52562.56|0.05|0.03|A|F|1993-07-30|1993-09-01|1993-08-27|COLLECT COD|MAIL|final grouches. s| +19017|793468|18499|1|20|31228.60|0.00|0.03|A|F|1994-06-05|1994-06-19|1994-06-27|NONE|MAIL|ng to the quickly final| +19017|810201|35234|2|1|1111.16|0.02|0.07|R|F|1994-07-12|1994-07-05|1994-08-11|DELIVER IN PERSON|AIR|ar, bold platelets ca| +19017|36826|11827|3|37|65224.34|0.06|0.05|R|F|1994-07-28|1994-07-05|1994-08-09|TAKE BACK RETURN|AIR|l dinos alongside of the bl| +19017|921874|34393|4|6|11374.98|0.01|0.04|A|F|1994-05-21|1994-08-04|1994-06-17|COLLECT COD|FOB| after the quickly | +19017|930663|30664|5|45|76212.90|0.06|0.05|A|F|1994-05-13|1994-07-21|1994-05-25|COLLECT COD|RAIL|l notornis wake c| +19018|357040|7041|1|12|13164.36|0.09|0.02|N|O|1995-09-05|1995-09-24|1995-10-04|DELIVER IN PERSON|AIR|ly alongside of the pending, bold d| +19018|760157|47703|2|37|45033.44|0.08|0.04|N|O|1995-08-01|1995-09-04|1995-08-06|NONE|REG AIR|ckages. slyly bold packages promise| +19018|945030|7549|3|41|44074.59|0.03|0.08|N|O|1995-10-02|1995-08-16|1995-10-26|NONE|AIR|y bold, special packages. iro| +19018|103277|40784|4|39|49930.53|0.10|0.05|N|O|1995-09-05|1995-07-30|1995-09-15|DELIVER IN PERSON|AIR|r pinto bean| +19018|761477|11478|5|5|7692.20|0.10|0.08|N|O|1995-07-12|1995-09-13|1995-08-10|NONE|REG AIR| wake furio| +19019|444077|31602|1|31|31652.55|0.07|0.06|N|O|1996-02-08|1996-03-01|1996-02-09|TAKE BACK RETURN|REG AIR|ets haggle blithely. q| +19019|593808|6320|2|22|41839.16|0.01|0.00|N|O|1996-02-11|1996-02-21|1996-03-11|COLLECT COD|RAIL| express instructions. slyly| +19019|127038|14545|3|17|18105.51|0.04|0.05|N|O|1996-01-28|1996-03-04|1996-02-13|DELIVER IN PERSON|TRUCK| furiously ironic| +19019|119092|44097|4|6|6666.54|0.05|0.04|N|O|1996-03-23|1996-02-15|1996-04-22|TAKE BACK RETURN|SHIP|ep fluffily bold ideas. furiously ex| +19020|577480|15014|1|32|49838.72|0.01|0.02|R|F|1992-05-26|1992-05-10|1992-06-19|NONE|SHIP| silent packages sleep blithely| +19020|692128|42129|2|37|41443.33|0.07|0.06|R|F|1992-05-03|1992-05-07|1992-05-26|TAKE BACK RETURN|AIR|hinly express accounts.| +19020|595057|45058|3|12|13824.36|0.10|0.06|A|F|1992-06-15|1992-05-10|1992-07-05|DELIVER IN PERSON|REG AIR|ronic packages alongside of| +19020|110763|10764|4|41|72724.16|0.00|0.07|A|F|1992-03-20|1992-05-22|1992-04-08|NONE|AIR| the instr| +19020|580537|43049|5|29|46907.79|0.02|0.02|A|F|1992-05-26|1992-05-18|1992-06-20|COLLECT COD|SHIP|old courts. blit| +19021|559918|47452|1|45|89005.05|0.05|0.08|N|O|1998-04-27|1998-05-17|1998-05-04|TAKE BACK RETURN|FOB| carefully quickly regular foxes. even p| +19021|532618|32619|2|28|46216.52|0.06|0.01|N|O|1998-07-05|1998-06-02|1998-07-25|TAKE BACK RETURN|REG AIR|nding ideas affix qu| +19021|694204|6718|3|45|53917.65|0.02|0.06|N|O|1998-06-26|1998-05-29|1998-07-08|NONE|FOB|ecial platelets. carefully bold acco| +19021|482741|7760|4|2|3447.44|0.00|0.05|N|O|1998-07-02|1998-04-22|1998-07-14|COLLECT COD|RAIL|sual deposits along the slyly final foxes h| +19021|424346|11871|5|14|17784.48|0.04|0.06|N|O|1998-07-16|1998-05-01|1998-08-05|TAKE BACK RETURN|AIR|tes doze across the | +19021|981339|31340|6|46|65333.34|0.00|0.08|N|O|1998-04-29|1998-04-27|1998-05-27|DELIVER IN PERSON|SHIP|d the ironic deposits nag bravely unusua| +19022|25830|831|1|1|1755.83|0.05|0.01|A|F|1993-04-22|1993-06-05|1993-05-20|DELIVER IN PERSON|TRUCK|foxes breach furiously agains| +19022|114405|14406|2|26|36904.40|0.09|0.00|A|F|1993-04-19|1993-06-09|1993-05-01|DELIVER IN PERSON|FOB|ironic foxes sleep slyly express fo| +19022|788763|26309|3|39|72217.47|0.01|0.02|A|F|1993-05-08|1993-06-12|1993-05-17|NONE|SHIP|al notornis a| +19022|731235|43750|4|5|6331.00|0.02|0.05|A|F|1993-05-19|1993-04-23|1993-06-11|NONE|SHIP|ag boldly. foxes run. fur| +19022|864003|26521|5|5|4834.80|0.08|0.08|A|F|1993-06-26|1993-05-26|1993-07-08|COLLECT COD|TRUCK|sits are furiou| +19022|293511|6017|6|9|13540.50|0.10|0.01|A|F|1993-05-09|1993-05-11|1993-05-25|DELIVER IN PERSON|AIR|eep slyly: carefully regular forges detect | +19023|910904|23423|1|17|32552.62|0.03|0.02|A|F|1993-12-06|1993-12-05|1993-12-19|NONE|RAIL|heodolites above the quietly i| +19023|558848|21360|2|8|15254.56|0.02|0.01|R|F|1993-12-03|1993-12-19|1993-12-24|DELIVER IN PERSON|MAIL|s run carefully against the f| +19023|557224|19736|3|10|12812.00|0.00|0.01|A|F|1994-01-16|1993-11-20|1994-01-24|COLLECT COD|TRUCK|lessly through the carefully even | +19023|253917|3918|4|50|93545.00|0.04|0.01|R|F|1993-12-10|1994-01-04|1994-01-06|NONE|FOB|osits. even dolphins play slyly on th| +19023|580067|17601|5|34|38999.36|0.05|0.00|A|F|1994-01-22|1993-12-01|1994-02-09|COLLECT COD|REG AIR|refully slyly express dolphins: bli| +19023|184898|34899|6|22|43623.58|0.05|0.01|R|F|1993-11-11|1993-12-18|1993-11-26|TAKE BACK RETURN|AIR|en packages doze slyly car| +19023|575166|12700|7|15|18617.10|0.05|0.04|R|F|1993-12-22|1993-12-27|1994-01-12|NONE|TRUCK|s sleep against the regular requ| +19048|807713|32746|1|20|32413.40|0.06|0.04|N|O|1998-06-05|1998-06-05|1998-06-10|NONE|AIR|express platelets run slyly regular dep| +19048|221513|46522|2|24|34428.00|0.10|0.08|N|O|1998-08-15|1998-07-22|1998-09-08|DELIVER IN PERSON|FOB| beans. furiously even deposits after the c| +19049|256300|18806|1|47|59045.63|0.03|0.07|R|F|1992-09-07|1992-07-21|1992-10-06|NONE|TRUCK|ously silent deposits. asymptotes haggle | +19049|620892|20893|2|29|52572.94|0.09|0.02|R|F|1992-07-01|1992-08-04|1992-07-15|COLLECT COD|SHIP|ic pinto beans sleep. slyly quick accoun| +19049|318942|31449|3|22|43140.46|0.03|0.02|R|F|1992-06-03|1992-06-10|1992-07-02|COLLECT COD|TRUCK| according to the blithely silent re| +19049|455077|5078|4|9|9288.45|0.01|0.02|R|F|1992-05-18|1992-07-09|1992-06-02|DELIVER IN PERSON|MAIL|ly regular courts are| +19050|128774|28775|1|49|88335.73|0.07|0.05|A|F|1993-04-01|1993-03-26|1993-04-05|DELIVER IN PERSON|MAIL|d dependencies. express escapa| +19051|316347|28854|1|14|19086.62|0.05|0.04|N|O|1997-01-08|1997-02-01|1997-01-24|DELIVER IN PERSON|RAIL|across the slyly special request| +19051|839504|2021|2|19|27425.74|0.00|0.00|N|O|1997-01-25|1997-02-08|1997-02-01|NONE|FOB|c, final ideas. re| +19051|530059|30060|3|14|15246.42|0.01|0.07|N|O|1997-03-28|1997-03-05|1997-04-18|DELIVER IN PERSON|REG AIR| detect special pearl| +19051|693768|31308|4|4|7046.92|0.10|0.05|N|O|1997-01-08|1997-02-11|1997-01-13|DELIVER IN PERSON|TRUCK| ironic accoun| +19051|150271|12775|5|4|5285.08|0.05|0.01|N|O|1997-01-13|1997-02-22|1997-02-04|COLLECT COD|AIR|ar instructions. regular theod| +19051|591400|3912|6|34|50706.92|0.01|0.01|N|O|1997-02-18|1997-02-23|1997-02-22|TAKE BACK RETURN|TRUCK|ss, final packages cajole furiously. | +19051|644212|31749|7|44|50871.92|0.02|0.03|N|O|1997-04-01|1997-02-06|1997-04-27|DELIVER IN PERSON|REG AIR|n excuses. regular packages a| +19052|256925|31936|1|41|77158.31|0.10|0.01|A|F|1994-07-27|1994-07-15|1994-08-03|COLLECT COD|FOB|gular asymptotes above the ev| +19052|130469|5474|2|24|35987.04|0.07|0.06|R|F|1994-08-04|1994-08-30|1994-08-15|COLLECT COD|AIR|rly regular accounts integrate | +19053|615301|27814|1|8|9730.16|0.00|0.03|N|O|1996-03-17|1996-02-04|1996-04-13|TAKE BACK RETURN|REG AIR|olites. furiously bold packages maintai| +19053|347828|35347|2|42|78784.02|0.08|0.01|N|O|1996-03-22|1995-12-26|1996-04-09|NONE|MAIL|rays cajole slyly. blithely | +19053|942833|17870|3|12|22509.48|0.07|0.05|N|O|1996-02-02|1996-01-28|1996-02-18|TAKE BACK RETURN|FOB|al, final deposits sleep carefully final | +19053|188876|13883|4|32|62875.84|0.02|0.04|N|O|1996-02-07|1996-01-14|1996-02-14|NONE|TRUCK|ronic, express depos| +19054|198392|35902|1|23|34278.97|0.02|0.01|N|O|1996-11-30|1996-10-05|1996-12-17|TAKE BACK RETURN|REG AIR|al deposits boost slyly brave in| +19054|368430|30938|2|32|47949.44|0.10|0.04|N|O|1996-08-12|1996-10-27|1996-08-27|NONE|SHIP|k ideas cajole. sl| +19054|197078|34588|3|9|10575.63|0.10|0.08|N|O|1996-09-12|1996-10-01|1996-09-13|COLLECT COD|AIR|cies. fluffily final ide| +19054|274981|12497|4|22|43031.34|0.07|0.08|N|O|1996-11-14|1996-10-04|1996-12-04|TAKE BACK RETURN|TRUCK|, regular pint| +19054|598039|10551|5|49|55713.49|0.01|0.07|N|O|1996-11-21|1996-10-26|1996-11-30|TAKE BACK RETURN|TRUCK|es snooze furiously permanent pi| +19054|230691|30692|6|32|51893.76|0.01|0.08|N|O|1996-10-23|1996-10-21|1996-11-18|NONE|AIR|jole careful| +19054|208126|45639|7|28|28955.08|0.06|0.07|N|O|1996-11-15|1996-10-08|1996-11-17|TAKE BACK RETURN|REG AIR|al pinto be| +19055|957838|32877|1|43|81518.97|0.07|0.08|N|O|1995-06-18|1995-05-10|1995-06-20|DELIVER IN PERSON|REG AIR|ccounts. final epitaphs detect carefully.| +19055|373081|48096|2|23|26543.61|0.04|0.01|N|O|1995-07-27|1995-05-24|1995-07-31|TAKE BACK RETURN|SHIP|nstructions thrash blithely after | +19080|462472|24982|1|31|44467.95|0.09|0.07|N|O|1998-07-05|1998-08-03|1998-07-15|DELIVER IN PERSON|TRUCK|uickly pending instruct| +19080|756181|31212|2|17|21031.55|0.07|0.06|N|O|1998-07-16|1998-08-01|1998-08-08|COLLECT COD|REG AIR|sly express requests| +19081|868453|30971|1|17|24163.97|0.05|0.07|N|O|1996-12-08|1996-10-30|1996-12-23|DELIVER IN PERSON|MAIL|wake quickly instructions. eve| +19082|749278|36821|1|21|27872.04|0.03|0.03|N|O|1997-11-30|1997-09-10|1997-12-27|NONE|TRUCK|y pending depos| +19082|110979|23482|2|15|29849.55|0.09|0.00|N|O|1997-08-09|1997-10-09|1997-08-20|DELIVER IN PERSON|SHIP| ironic packages above the slyly reg| +19082|214657|2170|3|17|26717.88|0.05|0.06|N|O|1997-11-22|1997-11-01|1997-11-24|NONE|FOB|onic theodolites| +19083|859661|47213|1|5|8103.10|0.06|0.00|A|F|1994-01-31|1994-01-23|1994-02-09|TAKE BACK RETURN|RAIL|haggle slyly pending plate| +19083|320968|45981|2|23|45745.85|0.07|0.07|A|F|1993-12-25|1993-12-10|1993-12-29|TAKE BACK RETURN|REG AIR| quick accoun| +19083|503571|28592|3|8|12596.40|0.03|0.08|A|F|1994-01-28|1994-01-10|1994-02-14|COLLECT COD|FOB|ly final i| +19084|730473|42988|1|45|67654.80|0.02|0.02|R|F|1992-07-29|1992-08-03|1992-08-25|DELIVER IN PERSON|FOB|even frets are blithely special requests. | +19084|48754|36255|2|50|85137.50|0.08|0.06|R|F|1992-06-18|1992-07-21|1992-07-02|DELIVER IN PERSON|RAIL|packages after the quickly | +19084|400005|25022|3|40|44199.60|0.03|0.01|A|F|1992-09-07|1992-07-26|1992-09-19|DELIVER IN PERSON|AIR|tructions? ideas against the blithely re| +19084|870385|20386|4|33|44726.22|0.01|0.07|A|F|1992-06-25|1992-07-13|1992-07-04|NONE|MAIL|across the furio| +19085|282320|32321|1|10|13023.10|0.04|0.00|N|O|1996-04-07|1996-04-16|1996-04-15|TAKE BACK RETURN|RAIL|equests sleep above the eve| +19085|943755|6274|2|11|19785.81|0.00|0.03|N|O|1996-04-07|1996-04-25|1996-04-22|TAKE BACK RETURN|MAIL|. pinto beans across th| +19085|681643|19183|3|31|50362.91|0.01|0.05|N|O|1996-03-25|1996-04-02|1996-03-31|TAKE BACK RETURN|REG AIR|c pinto be| +19085|366172|3694|4|26|32192.16|0.09|0.07|N|O|1996-05-24|1996-03-29|1996-06-06|TAKE BACK RETURN|MAIL|the pending deposits. express, pen| +19085|248437|48438|5|11|15239.62|0.04|0.00|N|O|1996-04-09|1996-04-28|1996-04-12|NONE|SHIP|d sleep carefully. slow, sp| +19085|480152|30153|6|50|56606.50|0.01|0.08|N|O|1996-03-30|1996-04-09|1996-04-20|TAKE BACK RETURN|REG AIR|dolphins. ironic deposits w| +19086|215318|15319|1|20|24666.00|0.07|0.07|A|F|1994-04-04|1994-01-17|1994-04-29|TAKE BACK RETURN|REG AIR|nstructions. carefully special dolphin| +19087|133631|8636|1|34|56597.42|0.00|0.08|N|O|1998-08-21|1998-08-31|1998-09-06|TAKE BACK RETURN|FOB| pending requests wake care| +19112|975883|922|1|15|29382.60|0.02|0.03|N|O|1998-09-20|1998-09-09|1998-09-29|TAKE BACK RETURN|FOB|bove the express deposits sleep according | +19112|658656|33683|2|32|51667.84|0.05|0.06|N|O|1998-11-07|1998-09-28|1998-11-22|TAKE BACK RETURN|SHIP|ts. furiously f| +19112|24012|49013|3|19|17784.19|0.04|0.05|N|O|1998-11-09|1998-10-06|1998-11-27|TAKE BACK RETURN|REG AIR|en foxes. blithely| +19112|565417|40440|4|6|8894.34|0.00|0.07|N|O|1998-07-26|1998-08-31|1998-08-09|COLLECT COD|RAIL|xpress accounts sleep slyly ideas. f| +19112|947254|22291|5|26|33831.46|0.06|0.02|N|O|1998-09-24|1998-10-10|1998-10-03|NONE|FOB|ely unusual foxes above th| +19112|497293|9803|6|15|19354.05|0.09|0.02|N|O|1998-07-23|1998-09-01|1998-08-12|DELIVER IN PERSON|FOB|pecial requests sleep. final plat| +19112|999411|24450|7|32|48331.84|0.03|0.05|N|O|1998-09-29|1998-09-16|1998-10-13|NONE|REG AIR|es. special frays boos| +19113|92263|29767|1|43|53976.18|0.09|0.05|A|F|1994-08-31|1994-10-11|1994-09-25|NONE|RAIL| blithely carefully bold pinto beans| +19113|657865|7866|2|13|23696.79|0.04|0.01|A|F|1994-09-30|1994-10-02|1994-10-23|COLLECT COD|SHIP|gular asymptotes sleep | +19113|731605|19148|3|26|42550.82|0.07|0.00|R|F|1994-11-16|1994-09-30|1994-12-06|DELIVER IN PERSON|TRUCK|ar deposits solve blithely around the fur| +19113|76043|13547|4|1|1019.04|0.00|0.06|R|F|1994-11-05|1994-10-19|1994-11-24|DELIVER IN PERSON|MAIL|ies doze blithely| +19113|45169|32670|5|31|34538.96|0.06|0.07|A|F|1994-09-04|1994-10-26|1994-09-14|TAKE BACK RETURN|FOB|riously even | +19114|963734|38773|1|17|30560.73|0.05|0.07|R|F|1992-12-13|1993-02-03|1992-12-20|TAKE BACK RETURN|SHIP|kly. even accounts ar| +19114|470106|32616|2|15|16141.20|0.02|0.01|A|F|1993-02-24|1993-01-18|1993-03-23|COLLECT COD|FOB|uriously blithely ev| +19114|71234|8738|3|42|50619.66|0.07|0.07|R|F|1993-01-14|1993-02-21|1993-02-11|COLLECT COD|TRUCK|instructions kindle. express, even depen| +19114|229517|29518|4|6|8679.00|0.08|0.03|R|F|1993-02-12|1993-01-22|1993-02-20|NONE|SHIP| ironic deposits haggl| +19114|479696|17224|5|15|25135.05|0.05|0.05|A|F|1993-03-06|1993-03-12|1993-04-01|DELIVER IN PERSON|REG AIR|ckages boost carefully along the e| +19114|236847|11856|6|35|62434.05|0.01|0.04|A|F|1993-03-20|1993-03-02|1993-04-04|NONE|MAIL|s! platelets| +19115|617347|4884|1|39|49308.09|0.03|0.07|N|O|1996-07-14|1996-07-10|1996-08-09|TAKE BACK RETURN|REG AIR| of the furiously bo| +19115|748149|48150|2|27|32321.97|0.02|0.02|N|O|1996-07-09|1996-05-28|1996-07-20|COLLECT COD|TRUCK|e the blithe| +19115|135274|10279|3|27|35350.29|0.02|0.04|N|O|1996-05-09|1996-06-08|1996-05-29|NONE|SHIP|above the slyly final instructions nag q| +19116|892197|42198|1|38|45187.70|0.09|0.06|R|F|1994-05-23|1994-06-23|1994-06-05|NONE|SHIP|ending, even theodolites. slyly silent| +19116|141812|4315|2|15|27807.15|0.05|0.04|A|F|1994-06-17|1994-07-03|1994-06-21|COLLECT COD|TRUCK|fluffily regular deposits. ironi| +19116|432555|20080|3|46|68426.38|0.06|0.00|A|F|1994-06-13|1994-07-12|1994-07-02|NONE|AIR|ainst the pinto| +19117|526190|13721|1|5|6080.85|0.03|0.00|N|O|1995-10-13|1995-08-23|1995-10-17|COLLECT COD|TRUCK| deposits sl| +19117|675298|25299|2|32|40744.32|0.02|0.06|N|O|1995-11-01|1995-10-20|1995-11-13|NONE|RAIL|e the blithely ironic braids.| +19117|716888|4431|3|49|93337.65|0.05|0.08|N|O|1995-10-20|1995-09-09|1995-10-26|NONE|AIR|s. even pinto b| +19117|727047|39562|4|23|24702.23|0.00|0.07|N|O|1995-10-05|1995-10-18|1995-10-30|TAKE BACK RETURN|REG AIR| nag blithely reg| +19117|469842|32352|5|31|56166.42|0.08|0.01|N|O|1995-09-28|1995-09-27|1995-09-29|COLLECT COD|REG AIR|e unusual accounts| +19117|631124|43637|6|41|43258.69|0.08|0.02|N|O|1995-10-04|1995-08-22|1995-10-26|COLLECT COD|TRUCK|ng to the fluffily ironic dep| +19117|290783|3289|7|38|67403.26|0.03|0.07|N|O|1995-10-23|1995-08-28|1995-11-10|COLLECT COD|FOB|furiously against the ironic| +19118|179071|41575|1|5|5750.35|0.10|0.01|N|O|1998-04-19|1998-05-24|1998-05-15|COLLECT COD|SHIP|ing, final excuses| +19118|633453|20990|2|30|41592.60|0.09|0.08|N|O|1998-07-08|1998-06-23|1998-08-06|NONE|TRUCK| ironic, regular accounts. | +19118|440184|27709|3|26|29228.16|0.07|0.03|N|O|1998-07-22|1998-05-01|1998-08-13|TAKE BACK RETURN|MAIL|efully special ideas; slyly | +19118|159045|46555|4|30|33121.20|0.05|0.04|N|O|1998-06-26|1998-06-01|1998-07-10|TAKE BACK RETURN|AIR| the quickly bold requests. carefully regu| +19119|124261|11768|1|2|2570.52|0.02|0.06|R|F|1993-07-22|1993-05-31|1993-07-27|TAKE BACK RETURN|REG AIR| dependencies. quickly unu| +19119|454193|16703|2|32|36709.44|0.01|0.08|R|F|1993-05-26|1993-06-18|1993-06-03|DELIVER IN PERSON|RAIL|regular, even deposits| +19119|620921|20922|3|28|51572.92|0.09|0.03|A|F|1993-07-10|1993-06-08|1993-08-02|COLLECT COD|FOB|l, unusual requests. regular theodolites | +19119|815283|27800|4|3|3594.72|0.07|0.03|A|F|1993-08-21|1993-07-01|1993-08-27|NONE|SHIP|s above the slyly | +19119|450063|37591|5|16|16208.64|0.04|0.05|R|F|1993-05-26|1993-05-31|1993-05-29|COLLECT COD|RAIL|efully according to the slyly fina| +19119|203530|28539|6|1|1433.52|0.07|0.08|A|F|1993-07-27|1993-06-18|1993-08-21|COLLECT COD|FOB|eposits wake according to the | +19144|35896|35897|1|32|58620.48|0.10|0.05|N|O|1998-09-07|1998-08-13|1998-09-08|NONE|REG AIR|accounts-- c| +19144|301412|1413|2|50|70670.00|0.00|0.01|N|O|1998-07-18|1998-07-31|1998-07-22|DELIVER IN PERSON|TRUCK|. bold theodolites cajole ruthl| +19144|816215|16216|3|41|46377.97|0.08|0.07|N|O|1998-06-23|1998-08-10|1998-06-25|DELIVER IN PERSON|TRUCK|ole blithely. s| +19144|120106|7613|4|41|46170.10|0.01|0.00|N|O|1998-06-28|1998-07-29|1998-07-11|TAKE BACK RETURN|TRUCK|y slyly bold idea| +19145|724598|37113|1|39|63279.84|0.06|0.03|N|O|1998-07-22|1998-08-22|1998-07-24|NONE|SHIP|old platelets caj| +19145|307632|45151|2|50|81981.00|0.00|0.06|N|O|1998-06-27|1998-07-29|1998-07-18|NONE|RAIL|e theodolites. b| +19145|368181|18182|3|37|46219.29|0.09|0.07|N|O|1998-10-13|1998-08-16|1998-10-28|NONE|MAIL|ular courts. furiously express | +19145|13492|13493|4|38|53408.62|0.01|0.07|N|O|1998-07-06|1998-09-01|1998-07-14|DELIVER IN PERSON|MAIL|y even instructions among the silent, | +19145|750329|330|5|45|62068.05|0.04|0.01|N|O|1998-08-08|1998-07-30|1998-08-09|COLLECT COD|SHIP|eodolites haggle furi| +19145|773060|48091|6|40|45321.20|0.05|0.04|N|O|1998-06-28|1998-08-04|1998-07-11|COLLECT COD|MAIL|theodolites are. final pinto beans hag| +19146|481367|31368|1|48|64720.32|0.00|0.05|N|O|1995-07-28|1995-07-27|1995-08-21|COLLECT COD|REG AIR|he silently | +19146|324786|24787|2|9|16296.93|0.02|0.03|N|O|1995-07-14|1995-08-02|1995-08-01|COLLECT COD|REG AIR| accounts cajole. slyly special depen| +19146|673483|48510|3|27|39324.15|0.01|0.01|N|O|1995-09-12|1995-08-02|1995-10-08|TAKE BACK RETURN|SHIP|slyly close foxes| +19147|358300|8301|1|50|67914.50|0.10|0.08|R|F|1994-12-08|1994-11-29|1994-12-31|TAKE BACK RETURN|REG AIR|as. packages wake. bold platelets in| +19147|936707|49226|2|41|71490.06|0.06|0.07|A|F|1994-11-22|1994-11-08|1994-11-27|TAKE BACK RETURN|TRUCK|tes are abo| +19147|234498|47003|3|25|35812.00|0.01|0.02|R|F|1995-01-02|1994-12-09|1995-01-09|COLLECT COD|REG AIR| along the pending forges. carefully | +19147|206045|31054|4|9|8559.27|0.10|0.04|R|F|1994-10-06|1994-11-18|1994-10-29|DELIVER IN PERSON|AIR| the packages. fluffily expr| +19147|995185|32743|5|42|53765.88|0.03|0.00|A|F|1994-11-25|1994-12-19|1994-12-14|COLLECT COD|TRUCK|counts print. blithely unusual in| +19147|59024|9025|6|42|41286.84|0.06|0.08|R|F|1995-01-03|1994-11-16|1995-01-14|DELIVER IN PERSON|RAIL|ly even packages ar| +19147|14312|26813|7|42|51505.02|0.06|0.04|A|F|1994-11-09|1994-12-06|1994-11-16|TAKE BACK RETURN|RAIL| final deposits haggle silently. u| +19148|531407|43918|1|20|28767.60|0.08|0.06|A|F|1992-11-25|1992-12-15|1992-12-19|NONE|AIR| maintain slyly about the unusua| +19148|350387|388|2|34|48870.58|0.10|0.08|A|F|1993-01-29|1993-01-04|1993-02-22|NONE|TRUCK|ven instructions. slyly final theod| +19149|621284|21285|1|40|48210.00|0.08|0.06|N|O|1997-11-09|1997-11-06|1997-11-12|NONE|RAIL|ccounts since the | +19149|916924|4479|2|23|44640.24|0.09|0.02|N|O|1997-12-17|1997-11-23|1998-01-16|NONE|SHIP|ounts. unusual, regular depos| +19149|729682|17225|3|32|54772.80|0.04|0.01|N|O|1997-12-22|1997-12-15|1998-01-01|NONE|REG AIR|furiously. quickly bold instr| +19149|758452|20968|4|43|64948.06|0.05|0.06|N|O|1998-01-29|1997-12-02|1998-02-25|TAKE BACK RETURN|FOB|sleep carefully above the care| +19149|294296|6802|5|46|59352.88|0.00|0.08|N|O|1998-01-24|1997-11-27|1998-02-21|NONE|SHIP|to beans. slyly even accounts | +19149|226131|38636|6|32|33827.84|0.00|0.06|N|O|1998-01-25|1997-11-28|1998-01-30|DELIVER IN PERSON|FOB|e bold deposits. requests haggle blit| +19149|576012|1035|7|11|11967.89|0.04|0.05|N|O|1997-12-30|1997-11-29|1998-01-12|DELIVER IN PERSON|RAIL|ly special dep| +19150|22176|9677|1|8|8785.36|0.09|0.06|R|F|1992-08-23|1992-08-28|1992-08-24|COLLECT COD|TRUCK| foxes detect. blithely fin| +19150|703859|3860|2|21|39119.22|0.04|0.00|A|F|1992-09-27|1992-08-16|1992-10-13|COLLECT COD|TRUCK|e fluffily. furiously silent gr| +19150|749563|24592|3|10|16125.30|0.07|0.02|R|F|1992-06-14|1992-07-08|1992-06-28|COLLECT COD|RAIL|egular pack| +19150|897993|10511|4|24|47782.80|0.04|0.02|A|F|1992-07-05|1992-07-31|1992-07-08|NONE|TRUCK|deposits must have to nag. caref| +19150|565850|15851|5|26|49811.58|0.02|0.04|A|F|1992-08-01|1992-08-02|1992-08-20|COLLECT COD|MAIL|courts. special foxe| +19150|233088|45593|6|46|46969.22|0.08|0.08|A|F|1992-07-28|1992-09-03|1992-08-23|NONE|REG AIR|ackages. slyly special ideas af| +19151|684423|9450|1|40|56295.60|0.09|0.04|N|O|1995-08-16|1995-09-19|1995-09-02|NONE|TRUCK|kly. regular, even requests| +19151|94175|44176|2|24|28060.08|0.06|0.08|N|O|1995-09-22|1995-09-27|1995-09-27|NONE|FOB|bold plate| +19151|793258|18289|3|16|21619.52|0.05|0.00|N|O|1995-09-14|1995-09-14|1995-10-13|NONE|REG AIR|cial theodolites. slow account| +19151|282770|7781|4|14|24538.64|0.00|0.07|N|O|1995-07-17|1995-08-17|1995-07-23|DELIVER IN PERSON|REG AIR|ages. slyly even foxes sleep along | +19151|508794|8795|5|23|41463.71|0.02|0.08|N|O|1995-10-05|1995-09-01|1995-10-06|NONE|AIR|e blithely iro| +19151|291502|29018|6|2|2986.98|0.02|0.03|N|O|1995-10-29|1995-09-14|1995-11-20|NONE|FOB|hely furiously daring packages. ev| +19176|593806|43807|1|15|28496.70|0.01|0.04|N|O|1995-12-30|1995-11-25|1996-01-09|COLLECT COD|FOB|ts sleep slyly. dep| +19176|86740|49242|2|6|10360.44|0.01|0.04|N|O|1995-10-04|1995-11-29|1995-10-26|COLLECT COD|FOB|ges after the carefu| +19176|831021|6054|3|20|19039.60|0.03|0.02|N|O|1995-11-02|1995-11-19|1995-11-15|DELIVER IN PERSON|AIR|n excuses play quietl| +19176|964752|39791|4|24|43601.04|0.01|0.08|N|O|1995-11-16|1995-11-20|1995-11-26|TAKE BACK RETURN|SHIP|sly silent excuses. carefu| +19176|582659|45171|5|7|12191.41|0.01|0.03|N|O|1995-12-02|1995-11-09|1995-12-20|NONE|RAIL|platelets affix furiousl| +19176|733454|33455|6|26|38672.92|0.10|0.08|N|O|1995-12-22|1995-12-16|1996-01-13|NONE|MAIL| ironic instructions wake furiously | +19176|156629|31636|7|6|10113.72|0.07|0.04|N|O|1995-10-04|1995-11-15|1995-10-19|NONE|RAIL|ffily special ideas. carefully | +19177|459400|46928|1|32|43500.16|0.00|0.08|R|F|1995-04-06|1995-05-21|1995-04-08|DELIVER IN PERSON|RAIL|sits along the furiousl| +19177|120630|8137|2|36|59422.68|0.03|0.08|A|F|1995-04-20|1995-06-03|1995-05-04|COLLECT COD|FOB|c requests wake carefully furi| +19177|413569|26078|3|4|5930.16|0.04|0.08|N|O|1995-07-05|1995-06-09|1995-08-01|TAKE BACK RETURN|SHIP|t the regular reque| +19178|520820|45841|1|34|62587.20|0.02|0.07|N|O|1997-06-28|1997-06-24|1997-07-24|COLLECT COD|TRUCK|old dolphins against the carefully | +19178|420245|45262|2|35|40782.70|0.00|0.02|N|O|1997-04-30|1997-06-08|1997-05-14|NONE|RAIL|nal deposits are quickly slyly express inst| +19178|56446|6447|3|7|9817.08|0.10|0.07|N|O|1997-06-07|1997-07-17|1997-07-02|COLLECT COD|SHIP|ly even accounts. packages wake care| +19178|676168|13708|4|44|50341.72|0.02|0.02|N|O|1997-07-19|1997-06-11|1997-07-25|COLLECT COD|REG AIR|pecial attainm| +19178|343378|30897|5|2|2842.72|0.05|0.03|N|O|1997-04-28|1997-05-22|1997-05-28|COLLECT COD|AIR|carefully pending instruction| +19179|479122|41632|1|2|2202.20|0.01|0.06|N|O|1997-11-18|1997-11-16|1997-12-13|DELIVER IN PERSON|AIR|to the furiousl| +19179|596067|8579|2|16|18608.64|0.07|0.05|N|O|1997-12-15|1997-10-31|1998-01-09|NONE|FOB|o beans. regular accounts | +19180|530112|17643|1|17|19415.53|0.03|0.01|N|O|1996-10-10|1996-09-03|1996-11-02|TAKE BACK RETURN|REG AIR| quickly over the quickly pending de| +19180|576535|26536|2|3|4834.53|0.06|0.02|N|O|1996-07-10|1996-09-22|1996-07-24|NONE|FOB| accounts sleep silent packages. qu| +19180|823547|48580|3|11|16175.50|0.06|0.03|N|O|1996-08-30|1996-09-15|1996-09-18|COLLECT COD|MAIL|foxes. speci| +19180|338111|13124|4|9|10341.90|0.00|0.07|N|O|1996-08-17|1996-08-21|1996-08-29|NONE|FOB|c theodolites. furiously unusual d| +19180|627192|39705|5|29|32455.64|0.07|0.06|N|O|1996-10-15|1996-08-18|1996-11-02|NONE|REG AIR|arefully final requests. c| +19180|204702|29711|6|35|56234.15|0.10|0.01|N|O|1996-07-16|1996-08-13|1996-07-23|DELIVER IN PERSON|FOB|olve. carefully even requests nag carefully| +19181|135889|48392|1|29|55821.52|0.02|0.06|N|O|1996-04-05|1996-02-21|1996-04-19|TAKE BACK RETURN|AIR|. carefully final multipliers are blithely.| +19181|884018|21570|2|25|25049.25|0.10|0.05|N|O|1996-03-16|1996-03-29|1996-03-18|TAKE BACK RETURN|FOB|ptotes sleep blithely blithely eve| +19181|688854|13881|3|39|71869.98|0.06|0.02|N|O|1996-04-07|1996-02-26|1996-04-11|TAKE BACK RETURN|MAIL|sly dogged pinto beans cajo| +19181|566954|16955|4|39|78816.27|0.04|0.00|N|O|1996-02-23|1996-03-17|1996-03-09|COLLECT COD|TRUCK|lent, idle foxes. busy, unusual| +19181|795482|7998|5|49|77295.05|0.04|0.07|N|O|1996-02-29|1996-02-05|1996-03-28|NONE|RAIL|l instructions along the| +19181|665572|3112|6|7|10762.78|0.06|0.08|N|O|1996-04-30|1996-02-23|1996-05-14|COLLECT COD|MAIL| dependencies| +19182|469468|19469|1|37|53185.28|0.02|0.07|N|O|1996-01-14|1995-11-18|1996-02-02|COLLECT COD|AIR|ironic accounts. quickly express de| +19182|340539|28058|2|27|42647.04|0.01|0.05|N|O|1995-10-14|1995-12-17|1995-10-18|TAKE BACK RETURN|TRUCK|s. furiously bold dependencies| +19182|425883|25884|3|50|90443.00|0.09|0.04|N|O|1995-10-24|1995-12-04|1995-11-11|NONE|TRUCK|ironic, pending requests sleep| +19182|800461|462|4|32|43565.44|0.01|0.07|N|O|1995-10-13|1995-11-13|1995-11-02|NONE|FOB|eposits. dolphins are pe| +19182|334217|34218|5|46|57555.20|0.03|0.07|N|O|1995-10-21|1996-01-10|1995-10-22|TAKE BACK RETURN|FOB|lyly even asymptotes de| +19182|183303|33304|6|5|6931.50|0.05|0.04|N|O|1996-01-18|1995-12-22|1996-02-13|DELIVER IN PERSON|FOB|special, pe| +19183|110081|35086|1|19|20730.52|0.08|0.07|R|F|1994-01-22|1994-01-11|1994-02-14|NONE|RAIL|ake evenly above the re| +19183|116299|28802|2|34|44719.86|0.10|0.00|R|F|1994-02-26|1994-01-13|1994-03-21|DELIVER IN PERSON|REG AIR|e final multipliers boost | +19183|629493|17030|3|20|28449.20|0.06|0.03|R|F|1993-11-24|1994-01-28|1993-12-16|TAKE BACK RETURN|RAIL|inal requests. quickly regular dolphins a| +19183|884677|22229|4|33|54833.79|0.03|0.01|A|F|1994-03-18|1994-02-04|1994-04-05|NONE|AIR|kages. carefully bo| +19183|756374|31405|5|45|64365.30|0.10|0.00|A|F|1994-03-08|1994-01-09|1994-03-14|COLLECT COD|AIR| use blithely| +19208|493929|18948|1|27|51918.30|0.07|0.04|N|O|1995-07-31|1995-10-22|1995-08-06|NONE|SHIP|se, unusual deposi| +19209|743148|18177|1|21|25013.31|0.03|0.07|N|O|1998-04-20|1998-06-25|1998-05-04|COLLECT COD|REG AIR| packages poach pinto beans. r| +19209|84834|47336|2|7|12731.81|0.00|0.07|N|O|1998-05-16|1998-06-14|1998-05-22|DELIVER IN PERSON|REG AIR|ests; pending, final requests alo| +19209|796909|46910|3|29|58170.23|0.07|0.08|N|O|1998-08-07|1998-07-13|1998-08-15|COLLECT COD|AIR| requests haggle slyly. furio| +19210|613840|1377|1|12|21045.72|0.04|0.05|N|O|1995-09-24|1995-08-20|1995-10-06|COLLECT COD|REG AIR|n ideas. ironic packages | +19210|802002|27035|2|32|28926.72|0.10|0.08|N|O|1995-08-19|1995-08-13|1995-09-11|DELIVER IN PERSON|AIR|eodolites. final dol| +19210|240955|15964|3|2|3791.88|0.01|0.08|N|O|1995-08-29|1995-09-21|1995-09-03|TAKE BACK RETURN|REG AIR|uses sleep fluf| +19210|728086|40601|4|7|7798.35|0.09|0.01|N|O|1995-07-31|1995-09-08|1995-08-21|DELIVER IN PERSON|MAIL|instructions are regular g| +19210|930824|5861|5|32|59352.96|0.01|0.04|N|O|1995-09-19|1995-08-20|1995-10-07|NONE|REG AIR|sly even pinto beans sleep | +19210|355672|30687|6|19|32825.54|0.04|0.07|N|O|1995-08-03|1995-08-21|1995-09-02|DELIVER IN PERSON|SHIP|l ideas. furiously quiet theodolites| +19211|262648|12649|1|12|19327.56|0.08|0.03|R|F|1994-07-07|1994-07-23|1994-08-06|COLLECT COD|REG AIR|cies nag furiousl| +19212|516735|29246|1|25|43792.75|0.06|0.08|A|F|1993-08-09|1993-07-09|1993-08-10|COLLECT COD|RAIL|accounts. regular requests haggl| +19212|754014|4015|2|37|39515.26|0.10|0.04|R|F|1993-06-03|1993-06-25|1993-06-05|COLLECT COD|REG AIR|larly unusual courts are| +19213|35752|10753|1|19|32067.25|0.01|0.06|N|O|1996-11-21|1996-12-18|1996-11-26|DELIVER IN PERSON|MAIL|tes use sl| +19214|134833|34834|1|49|91523.67|0.06|0.02|A|F|1992-03-24|1992-04-08|1992-04-02|COLLECT COD|MAIL| accounts haggle about the p| +19214|122222|22223|2|33|41059.26|0.02|0.05|R|F|1992-06-22|1992-05-11|1992-07-21|COLLECT COD|REG AIR|oss the ide| +19214|177881|27882|3|35|68560.80|0.04|0.06|R|F|1992-05-08|1992-04-26|1992-05-21|NONE|MAIL|ts. slyly regular fo| +19214|644734|19759|4|32|53718.40|0.03|0.05|A|F|1992-04-07|1992-05-22|1992-04-13|COLLECT COD|RAIL|tions use slyly. furiously ex| +19215|606817|6818|1|18|31028.04|0.01|0.03|N|O|1998-01-21|1998-01-26|1998-02-14|TAKE BACK RETURN|FOB|s maintain carefully. ir| +19215|764036|26552|2|26|28600.00|0.00|0.03|N|O|1998-03-17|1998-03-13|1998-04-16|NONE|RAIL| blithely unusual | +19215|139468|26975|3|13|19596.98|0.09|0.07|N|O|1998-04-15|1998-03-05|1998-04-16|DELIVER IN PERSON|MAIL|ly special notorni| +19240|362109|12110|1|25|29277.25|0.08|0.08|N|O|1997-12-02|1997-12-01|1997-12-17|DELIVER IN PERSON|AIR|haggle above the i| +19240|951337|38895|2|49|68026.21|0.04|0.03|N|O|1997-10-01|1997-11-28|1997-10-13|TAKE BACK RETURN|SHIP|telets alongside of the furiou| +19240|105023|42530|3|48|49344.96|0.08|0.06|N|O|1997-10-17|1997-11-23|1997-10-26|COLLECT COD|TRUCK|al requests wake carefully. pending acco| +19241|7130|7131|1|38|39410.94|0.00|0.06|R|F|1993-01-15|1993-02-24|1993-01-28|NONE|SHIP|r the deposits. furio| +19242|82671|45173|1|1|1653.67|0.09|0.05|N|O|1997-10-22|1997-10-03|1997-11-05|TAKE BACK RETURN|TRUCK|y excuses are furiously packages. special t| +19242|448448|48449|2|19|26531.98|0.05|0.05|N|O|1997-11-02|1997-10-27|1997-11-13|NONE|REG AIR|structions cajole carefully bold| +19242|65438|27940|3|12|16841.16|0.10|0.06|N|O|1997-10-21|1997-11-19|1997-11-17|COLLECT COD|TRUCK|ular ideas. furio| +19242|815403|27920|4|37|48779.32|0.10|0.00|N|O|1997-09-07|1997-11-02|1997-09-20|COLLECT COD|MAIL|ackages nag across the ironi| +19243|762329|49875|1|31|43129.99|0.01|0.05|A|F|1993-05-05|1993-05-14|1993-05-09|NONE|MAIL|otes was sil| +19244|56540|44044|1|32|47889.28|0.06|0.01|N|O|1997-10-11|1997-09-04|1997-10-21|DELIVER IN PERSON|SHIP|nal accounts| +19244|265633|3149|2|49|78332.38|0.00|0.02|N|O|1997-10-24|1997-08-16|1997-11-20|NONE|MAIL|. carefully regul| +19244|484310|34311|3|33|42711.57|0.04|0.04|N|O|1997-11-09|1997-09-05|1997-12-09|COLLECT COD|FOB|instructions. furiously special packa| +19244|788277|793|4|43|58705.32|0.07|0.05|N|O|1997-10-06|1997-09-25|1997-10-24|NONE|TRUCK|final packages are fluffily regular reque| +19245|428653|3670|1|24|37959.12|0.00|0.04|N|O|1995-06-18|1995-06-13|1995-06-21|TAKE BACK RETURN|REG AIR|ch blithel| +19245|360705|35720|2|23|40610.87|0.09|0.04|N|O|1995-07-18|1995-07-02|1995-08-09|NONE|AIR|deposits snooze bold instru| +19245|366549|41564|3|1|1615.53|0.06|0.02|N|O|1995-07-06|1995-06-30|1995-07-27|TAKE BACK RETURN|MAIL|iously. req| +19245|585840|35841|4|34|65477.88|0.08|0.08|N|O|1995-06-18|1995-07-06|1995-07-05|COLLECT COD|AIR|ress foxes hinder expres| +19245|204101|29110|5|27|27137.43|0.02|0.01|N|O|1995-07-24|1995-07-30|1995-08-22|DELIVER IN PERSON|REG AIR|ily blithely pending packa| +19245|320531|20532|6|22|34133.44|0.06|0.07|N|O|1995-06-25|1995-07-12|1995-07-20|TAKE BACK RETURN|TRUCK|es shall are furiously car| +19245|159643|9644|7|48|81726.72|0.00|0.00|N|O|1995-08-09|1995-06-05|1995-08-15|TAKE BACK RETURN|FOB|pecial idea| +19246|108046|45553|1|19|20026.76|0.08|0.07|A|F|1994-12-20|1994-11-23|1995-01-07|NONE|SHIP| ironic asymptotes nag quickly. e| +19247|332893|7906|1|36|69331.68|0.04|0.03|R|F|1993-02-03|1993-02-04|1993-03-03|DELIVER IN PERSON|SHIP| sleep at the bo| +19247|923880|48917|2|7|13326.88|0.04|0.06|R|F|1993-03-24|1993-02-17|1993-04-16|DELIVER IN PERSON|TRUCK|xes thrash permanently ca| +19247|650857|13371|3|44|79544.08|0.03|0.04|R|F|1993-02-06|1993-02-16|1993-02-11|COLLECT COD|FOB|onic foxes. pending a| +19247|943722|18759|4|38|67095.84|0.02|0.01|R|F|1993-03-11|1993-02-10|1993-03-26|COLLECT COD|REG AIR|c deposits. theodolites along t| +19247|133038|33039|5|7|7497.21|0.00|0.06|R|F|1993-04-20|1993-03-19|1993-05-19|NONE|TRUCK|ar ideas above the unusual, fin| +19247|961837|49395|6|35|66457.65|0.00|0.03|A|F|1993-03-30|1993-02-27|1993-03-31|COLLECT COD|REG AIR|lyly ironic | +19247|582168|19702|7|39|48755.46|0.08|0.04|R|F|1993-04-24|1993-02-17|1993-04-26|TAKE BACK RETURN|RAIL|beans boost furiously permane| +19272|481855|19383|1|36|66125.88|0.04|0.06|N|O|1997-11-09|1997-10-25|1997-11-14|NONE|TRUCK|eans. carefully bold req| +19272|525843|38354|2|27|50458.14|0.01|0.04|N|O|1997-09-21|1997-10-30|1997-10-15|DELIVER IN PERSON|RAIL|ns. bold dolphins are. carefully special| +19273|235516|35517|1|32|46448.00|0.08|0.08|R|F|1993-04-24|1993-05-06|1993-05-02|DELIVER IN PERSON|AIR|c packages wake | +19273|301896|14403|2|43|81608.84|0.01|0.08|A|F|1993-06-02|1993-06-30|1993-06-21|TAKE BACK RETURN|TRUCK|dogged somas haggle carefully abov| +19273|955764|43322|3|4|7278.88|0.01|0.06|R|F|1993-07-22|1993-06-18|1993-07-26|NONE|MAIL|regular instruc| +19273|524379|11910|4|49|68764.15|0.07|0.07|R|F|1993-07-01|1993-05-16|1993-07-18|TAKE BACK RETURN|FOB|r, express deposits. even deposits| +19273|234634|47139|5|26|40784.12|0.07|0.00|R|F|1993-06-06|1993-06-07|1993-06-20|NONE|RAIL|nto beans use | +19274|781726|44242|1|40|72307.60|0.07|0.01|N|O|1998-04-28|1998-03-27|1998-04-29|TAKE BACK RETURN|SHIP|. ideas above the spec| +19274|461209|23719|2|1|1170.18|0.04|0.00|N|O|1998-03-19|1998-03-23|1998-04-05|COLLECT COD|RAIL|fully ironic packages haggle furio| +19275|736769|36770|1|37|66812.01|0.10|0.00|N|O|1997-05-18|1997-06-14|1997-05-21|DELIVER IN PERSON|SHIP|ns around the express a| +19275|872889|47924|2|27|50269.68|0.06|0.04|N|O|1997-07-15|1997-05-18|1997-08-04|NONE|FOB|quests. furiously regular d| +19275|629316|41829|3|41|51056.48|0.03|0.04|N|O|1997-04-11|1997-05-07|1997-04-25|TAKE BACK RETURN|MAIL|symptotes. fur| +19276|354795|42317|1|24|44394.72|0.07|0.03|A|F|1993-12-30|1994-01-13|1994-01-07|TAKE BACK RETURN|AIR|sly careful| +19276|29919|17420|2|11|20338.01|0.02|0.05|A|F|1994-03-17|1993-12-25|1994-04-09|NONE|REG AIR|ular, ironic| +19276|843717|43718|3|42|69748.14|0.07|0.04|A|F|1994-02-22|1993-12-28|1994-03-14|DELIVER IN PERSON|TRUCK|lyly even fox| +19277|489233|26761|1|49|59888.29|0.04|0.01|N|F|1995-05-30|1995-05-21|1995-06-29|DELIVER IN PERSON|RAIL|ly ironic deposits. br| +19277|533881|8902|2|27|51701.22|0.01|0.06|A|F|1995-05-18|1995-05-17|1995-05-25|TAKE BACK RETURN|FOB|s cajole ideas. regular, unusua| +19278|474972|12500|1|36|70090.20|0.02|0.07|A|F|1994-09-29|1994-10-12|1994-10-02|COLLECT COD|SHIP|y special requests hang b| +19279|415823|15824|1|7|12171.60|0.09|0.00|N|O|1997-03-27|1997-01-30|1997-04-25|TAKE BACK RETURN|TRUCK| ideas boost furiously even dolphin| +19279|722326|47355|2|33|44493.57|0.02|0.08|N|O|1997-01-22|1997-01-06|1997-01-23|DELIVER IN PERSON|AIR|s against the slyly even accounts| +19279|128936|28937|3|48|94316.64|0.04|0.01|N|O|1996-12-24|1997-01-06|1996-12-30|TAKE BACK RETURN|MAIL| sleep? furiously even| +19279|20070|20071|4|26|25741.82|0.08|0.04|N|O|1997-02-17|1997-02-23|1997-02-18|NONE|MAIL| sleep at the regular requ| +19304|253456|15962|1|24|33826.56|0.06|0.05|R|F|1993-01-08|1993-01-12|1993-01-10|NONE|REG AIR|express requests.| +19304|822969|22970|2|26|49189.92|0.00|0.03|R|F|1992-11-28|1993-01-29|1992-12-20|COLLECT COD|RAIL|uickly across the sl| +19304|637718|231|3|16|26490.88|0.05|0.03|A|F|1992-12-16|1993-01-08|1992-12-25|TAKE BACK RETURN|RAIL|odolites. furiously| +19304|115678|15679|4|7|11855.69|0.03|0.00|R|F|1992-12-07|1992-12-07|1992-12-28|TAKE BACK RETURN|FOB| packages. furiou| +19305|920524|20525|1|6|9266.88|0.06|0.08|A|F|1992-04-26|1992-06-16|1992-04-27|TAKE BACK RETURN|RAIL|ut the quickly special requests. carefu| +19305|239287|1792|2|10|12262.70|0.10|0.06|A|F|1992-05-17|1992-06-15|1992-06-10|TAKE BACK RETURN|RAIL|ly special accounts. bl| +19305|693632|31172|3|45|73152.00|0.08|0.07|R|F|1992-05-10|1992-06-05|1992-05-23|NONE|REG AIR|ckly bold deposits. blithel| +19305|865268|15269|4|44|54261.68|0.04|0.00|A|F|1992-04-23|1992-06-12|1992-05-13|COLLECT COD|SHIP| deposits around the c| +19306|342300|17313|1|21|28188.09|0.06|0.06|N|O|1996-02-24|1996-02-18|1996-03-21|DELIVER IN PERSON|FOB| across the blithely ir| +19306|23489|23490|2|15|21187.20|0.07|0.03|N|O|1996-03-30|1996-03-08|1996-04-06|TAKE BACK RETURN|FOB|hely bold requests us| +19306|776905|1936|3|17|33691.79|0.07|0.08|N|O|1996-05-07|1996-02-18|1996-05-15|TAKE BACK RETURN|REG AIR| silent accounts m| +19306|429588|29589|4|27|40974.12|0.01|0.08|N|O|1996-04-07|1996-04-04|1996-05-07|TAKE BACK RETURN|MAIL| boldly up| +19307|505007|30028|1|5|5059.90|0.10|0.04|N|O|1997-04-30|1997-04-05|1997-05-08|TAKE BACK RETURN|AIR| quickly asymptotes. careful theodolites| +19307|638452|25989|2|11|15294.62|0.01|0.06|N|O|1997-03-22|1997-04-14|1997-04-14|COLLECT COD|MAIL|tes affix. slyly u| +19307|446342|46343|3|4|5153.28|0.03|0.01|N|O|1997-05-03|1997-04-08|1997-05-28|DELIVER IN PERSON|RAIL|nding pinto beans play blithely | +19307|656385|18899|4|10|13413.50|0.06|0.07|N|O|1997-03-06|1997-04-21|1997-03-17|NONE|SHIP|. quickly b| +19308|568204|30716|1|29|36893.22|0.08|0.02|N|O|1997-06-17|1997-06-10|1997-07-09|DELIVER IN PERSON|MAIL|x across the carefully express fo| +19308|803727|28760|2|36|58704.48|0.02|0.07|N|O|1997-06-26|1997-04-18|1997-06-30|DELIVER IN PERSON|AIR| carefully ironic d| +19308|234906|34907|3|36|66272.04|0.06|0.01|N|O|1997-07-15|1997-06-02|1997-08-06|NONE|MAIL| deposits. carefully express ideas nag qui| +19309|193319|18326|1|13|18360.03|0.00|0.07|R|F|1993-04-29|1993-04-05|1993-05-18|TAKE BACK RETURN|MAIL| packages; even dolphins| +19309|105060|17563|2|6|6390.36|0.07|0.08|A|F|1993-05-13|1993-02-23|1993-06-03|COLLECT COD|MAIL|refully slyly bold deposits. ironically| +19309|732527|32528|3|23|35868.27|0.02|0.02|R|F|1993-04-10|1993-03-30|1993-04-28|COLLECT COD|TRUCK|ironic courts was depo| +19309|565414|40437|4|23|34025.97|0.02|0.05|R|F|1993-05-02|1993-04-12|1993-05-25|TAKE BACK RETURN|SHIP|l the ironic dependencies. carefu| +19310|455245|30264|1|18|21603.96|0.09|0.01|N|O|1998-10-12|1998-08-30|1998-10-24|NONE|MAIL|tect carefully packages. furiously bold pac| +19310|288707|38708|2|3|5087.07|0.07|0.01|N|O|1998-09-19|1998-08-08|1998-09-20|TAKE BACK RETURN|RAIL|uests slee| +19310|294345|6851|3|43|57591.19|0.10|0.03|N|O|1998-10-07|1998-09-01|1998-10-10|DELIVER IN PERSON|MAIL|foxes. final, r| +19310|41153|28654|4|3|3282.45|0.06|0.05|N|O|1998-07-24|1998-08-12|1998-08-10|NONE|TRUCK|ggle! asymp| +19310|658193|33220|5|34|39139.44|0.09|0.06|N|O|1998-07-06|1998-08-12|1998-07-22|DELIVER IN PERSON|RAIL|ully pending theodolit| +19311|64133|14134|1|26|28525.38|0.00|0.06|A|F|1994-06-19|1994-04-17|1994-07-04|DELIVER IN PERSON|TRUCK|bove the slyly bold packages. even packages| +19311|869739|7291|2|50|85434.50|0.05|0.02|R|F|1994-02-28|1994-05-14|1994-03-09|TAKE BACK RETURN|RAIL|final theodolites should have to af| +19311|698093|35633|3|50|54553.00|0.04|0.03|R|F|1994-06-12|1994-05-20|1994-06-17|TAKE BACK RETURN|AIR|arefully ironic deposits. caref| +19311|846973|34522|4|49|94076.57|0.00|0.05|A|F|1994-03-03|1994-05-24|1994-03-06|TAKE BACK RETURN|REG AIR|detect blithely ironic requests. slyly | +19311|65672|15673|5|46|75332.82|0.00|0.07|R|F|1994-05-17|1994-05-09|1994-06-13|NONE|RAIL|s engage carefully thin, regular asympto| +19336|775413|37929|1|42|62511.96|0.09|0.00|R|F|1993-07-29|1993-08-04|1993-08-05|NONE|REG AIR|onic packages integrate slyly across| +19336|351984|39506|2|1|2035.97|0.00|0.05|A|F|1993-07-22|1993-06-28|1993-08-04|DELIVER IN PERSON|MAIL|rses use express, regular packages. final | +19336|779240|4271|3|24|31661.04|0.02|0.08|R|F|1993-06-25|1993-08-14|1993-07-03|NONE|RAIL| packages. s| +19336|679253|16793|4|42|51753.24|0.07|0.06|R|F|1993-06-10|1993-08-08|1993-06-18|DELIVER IN PERSON|AIR|kages use according to the ironic platelets| +19336|189787|27297|5|6|11260.68|0.04|0.02|A|F|1993-06-16|1993-08-02|1993-06-20|COLLECT COD|SHIP|r ideas. slyly expres| +19336|748365|23394|6|36|50879.88|0.01|0.07|A|F|1993-05-29|1993-06-24|1993-06-03|NONE|AIR|gular, special accounts cajole qu| +19337|970060|32580|1|46|51980.92|0.03|0.07|R|F|1992-09-18|1992-10-14|1992-10-02|TAKE BACK RETURN|REG AIR| requests. special pinto bean| +19337|781683|6714|2|35|61762.75|0.05|0.08|R|F|1992-11-25|1992-11-28|1992-12-06|NONE|AIR|quests maintain qu| +19337|737067|12096|3|9|9936.27|0.02|0.01|R|F|1992-10-19|1992-10-18|1992-10-20|TAKE BACK RETURN|TRUCK| bold, unu| +19337|870174|7726|4|5|5720.65|0.01|0.03|R|F|1992-12-16|1992-11-12|1992-12-30|COLLECT COD|MAIL|deposits are blithely| +19337|6263|43764|5|8|9354.08|0.05|0.00|R|F|1992-09-22|1992-11-01|1992-09-26|DELIVER IN PERSON|SHIP| the fluffily ironic exc| +19337|255088|17594|6|46|47981.22|0.03|0.05|A|F|1992-11-24|1992-11-26|1992-11-30|DELIVER IN PERSON|FOB|usual requests cajole quickly| +19337|248273|10778|7|13|15876.38|0.05|0.04|R|F|1992-09-29|1992-10-14|1992-10-12|TAKE BACK RETURN|REG AIR|ronic packages boost fluffily carefully| +19338|722609|47638|1|49|79946.93|0.03|0.05|N|O|1997-07-17|1997-08-11|1997-07-27|NONE|RAIL|xcuses are slyly fluffy pinto | +19338|886609|11644|2|10|15955.60|0.06|0.00|N|O|1997-06-13|1997-07-13|1997-06-17|DELIVER IN PERSON|FOB|ts. regular, regular| +19338|236096|11105|3|47|48507.76|0.00|0.03|N|O|1997-08-16|1997-07-29|1997-09-07|COLLECT COD|MAIL|odolites. bol| +19338|50069|12571|4|48|48914.88|0.04|0.06|N|O|1997-09-06|1997-07-26|1997-09-19|COLLECT COD|REG AIR|aggle quickly across the brav| +19338|505475|17986|5|11|16284.95|0.01|0.06|N|O|1997-08-23|1997-08-01|1997-09-08|COLLECT COD|RAIL|the final, final dependencies | +19339|386300|23822|1|21|29112.09|0.08|0.04|N|O|1998-02-02|1998-03-21|1998-02-23|COLLECT COD|MAIL|usly final accounts boost| +19339|535696|35697|2|50|86583.50|0.05|0.08|N|O|1998-04-12|1998-03-12|1998-04-25|DELIVER IN PERSON|AIR|usly unusual accounts eat furiously even| +19340|728993|4022|1|33|66724.68|0.04|0.08|R|F|1994-05-07|1994-05-26|1994-05-25|DELIVER IN PERSON|AIR|inal deposits detect slyly accord| +19340|181961|6968|2|35|71503.60|0.10|0.05|A|F|1994-06-21|1994-06-21|1994-07-02|NONE|TRUCK| pending, final pinto be| +19341|999820|12340|1|13|24957.14|0.02|0.00|A|F|1992-12-22|1992-12-19|1993-01-01|DELIVER IN PERSON|FOB|ongside of the furiousl| +19342|937390|24945|1|44|62803.40|0.09|0.05|A|F|1993-06-05|1993-05-10|1993-06-24|NONE|REG AIR|cross the ironic, fina| +19342|703369|15884|2|5|6861.65|0.01|0.02|R|F|1993-03-01|1993-05-14|1993-03-15|DELIVER IN PERSON|REG AIR|. deposits above the fluffi| +19342|522319|34830|3|41|54992.89|0.07|0.00|R|F|1993-05-20|1993-05-10|1993-06-09|TAKE BACK RETURN|REG AIR|s deposits. ruthless packages are sl| +19342|612804|12805|4|34|58370.18|0.01|0.06|A|F|1993-06-09|1993-04-30|1993-06-19|COLLECT COD|SHIP|lowly silent requests? express packages use| +19342|383447|20969|5|36|55095.48|0.00|0.02|A|F|1993-03-06|1993-04-23|1993-03-23|DELIVER IN PERSON|SHIP|ularly unusual requests. blith| +19343|189612|39613|1|3|5104.83|0.08|0.07|N|O|1997-12-22|1997-10-18|1998-01-13|DELIVER IN PERSON|REG AIR|thely alongside of t| +19343|805674|5675|2|22|34751.86|0.08|0.06|N|O|1997-12-10|1997-12-13|1997-12-11|NONE|MAIL|bravely special ideas| +19343|946727|9246|3|28|49663.04|0.00|0.01|N|O|1997-12-27|1997-11-09|1998-01-05|COLLECT COD|REG AIR| carefully bold pack| +19343|635730|23267|4|2|3331.40|0.04|0.00|N|O|1997-09-29|1997-11-10|1997-10-17|TAKE BACK RETURN|REG AIR|sts across the final packages ha| +19343|708030|20545|5|17|17646.00|0.09|0.07|N|O|1997-10-11|1997-12-10|1997-11-02|COLLECT COD|FOB|ickly regula| +19368|371700|21701|1|2|3543.38|0.05|0.07|A|F|1992-07-20|1992-10-03|1992-08-11|DELIVER IN PERSON|SHIP|lithely above the slyly final i| +19368|158139|20643|2|39|46688.07|0.03|0.02|R|F|1992-11-05|1992-09-03|1992-12-05|COLLECT COD|AIR|less packages. ironic, bol| +19368|837568|37569|3|49|73770.48|0.01|0.04|R|F|1992-07-29|1992-08-22|1992-08-22|COLLECT COD|REG AIR|oxes are carefully among the furiousl| +19368|997814|35372|4|3|5735.31|0.01|0.07|A|F|1992-10-15|1992-10-12|1992-10-18|DELIVER IN PERSON|FOB| regular instructions. blithely fi| +19368|255979|30990|5|23|44504.08|0.01|0.03|A|F|1992-08-18|1992-10-16|1992-08-22|DELIVER IN PERSON|FOB|lly regular frays. blith| +19368|238447|952|6|19|26323.17|0.07|0.04|R|F|1992-09-25|1992-08-17|1992-10-21|COLLECT COD|RAIL|ial pains hinder after th| +19368|572827|22828|7|32|60793.60|0.06|0.01|R|F|1992-08-17|1992-10-12|1992-09-02|COLLECT COD|AIR|otes. regular, ironic packages toward | +19369|495633|45634|1|27|43972.47|0.06|0.06|N|O|1997-07-17|1997-08-04|1997-07-20|DELIVER IN PERSON|SHIP|e quickly quick pinto beans detect ca| +19369|97074|9576|2|7|7497.49|0.03|0.03|N|O|1997-08-24|1997-08-12|1997-09-07|NONE|FOB|deposits. slyly re| +19370|96393|33897|1|25|34734.75|0.08|0.08|R|F|1992-06-04|1992-03-19|1992-06-14|DELIVER IN PERSON|RAIL|eposits sleep| +19371|785558|48074|1|47|77245.44|0.09|0.03|N|O|1996-01-27|1996-01-11|1996-02-11|COLLECT COD|REG AIR| deposits. blithely pend| +19371|861271|36306|2|48|59147.04|0.09|0.07|N|O|1995-12-29|1996-01-04|1996-01-03|DELIVER IN PERSON|TRUCK| haggle blithely | +19371|379075|4090|3|48|55394.88|0.10|0.02|N|O|1996-01-06|1996-01-18|1996-01-17|DELIVER IN PERSON|AIR|nts; regular requests h| +19371|98519|36023|4|17|25797.67|0.10|0.03|N|O|1996-01-18|1996-01-01|1996-02-03|TAKE BACK RETURN|MAIL|. blithe theodolites use caref| +19371|792739|17770|5|2|3663.40|0.10|0.07|N|O|1996-02-20|1996-01-27|1996-02-22|TAKE BACK RETURN|TRUCK|regular requests. specia| +19372|65752|3256|1|16|27484.00|0.09|0.03|N|O|1998-08-08|1998-06-29|1998-08-11|TAKE BACK RETURN|SHIP|ss foxes cajole foxe| +19372|82111|19615|2|2|2186.22|0.04|0.00|N|O|1998-08-20|1998-07-07|1998-09-10|NONE|SHIP| pinto beans. bold, express p| +19372|34383|21884|3|8|10539.04|0.06|0.03|N|O|1998-05-27|1998-07-02|1998-06-12|COLLECT COD|FOB|nic deposits. furiously ironic package| +19372|863904|1456|4|15|28017.90|0.10|0.05|N|O|1998-09-08|1998-07-29|1998-09-24|TAKE BACK RETURN|AIR| furiously regular deposits nag| +19372|619521|32034|5|31|44655.19|0.05|0.04|N|O|1998-07-04|1998-07-17|1998-07-28|NONE|AIR|y special dolphins should are carefull| +19372|278143|15659|6|49|54935.37|0.05|0.08|N|O|1998-08-01|1998-06-25|1998-08-24|DELIVER IN PERSON|FOB|ts. carefully| +19373|423481|35990|1|24|33707.04|0.00|0.02|A|F|1993-09-07|1993-09-01|1993-09-18|DELIVER IN PERSON|RAIL|re express, s| +19373|440047|15064|2|27|26649.54|0.09|0.00|R|F|1993-11-19|1993-09-12|1993-12-19|TAKE BACK RETURN|AIR|gle. even, unus| +19373|854594|4595|3|41|63490.55|0.06|0.03|R|F|1993-10-16|1993-09-02|1993-10-26|NONE|REG AIR|regular packages haggle carefully| +19373|160061|10062|4|36|40358.16|0.07|0.08|R|F|1993-08-30|1993-09-30|1993-09-15|DELIVER IN PERSON|RAIL|ffily quickly unu| +19374|578657|28658|1|27|46862.01|0.08|0.08|A|F|1995-05-11|1995-06-07|1995-05-16|COLLECT COD|MAIL|ven deposits haggle slyly regular | +19375|48145|48146|1|18|19676.52|0.02|0.01|R|F|1993-08-24|1993-10-08|1993-09-21|DELIVER IN PERSON|REG AIR|ding packages haggle quickly quick| +19375|161987|11988|2|45|92204.10|0.03|0.05|A|F|1993-08-16|1993-09-14|1993-08-23|NONE|MAIL|bravely pen| +19375|502052|2053|3|18|18972.54|0.00|0.01|R|F|1993-09-26|1993-10-05|1993-10-07|TAKE BACK RETURN|SHIP|atterns use besides the slyly exp| +19400|811322|23839|1|43|53031.04|0.01|0.06|A|F|1994-11-25|1994-11-04|1994-12-03|TAKE BACK RETURN|REG AIR| carefully pending foxes cajole sly| +19400|875460|495|2|36|51675.12|0.01|0.00|R|F|1994-11-19|1994-11-03|1994-12-12|DELIVER IN PERSON|MAIL|ly express accounts. carefully sile| +19400|848656|36205|3|3|4813.83|0.05|0.03|R|F|1994-10-24|1994-11-27|1994-11-22|DELIVER IN PERSON|MAIL|sily. carefully unusual accounts haggle | +19400|344770|32289|4|14|25406.64|0.05|0.04|A|F|1994-10-27|1994-10-16|1994-11-09|NONE|TRUCK|. special ideas across the carefully | +19400|538496|1007|5|5|7672.35|0.06|0.05|A|F|1994-09-18|1994-10-30|1994-10-12|TAKE BACK RETURN|AIR|ingly pending excuses. quickly | +19400|500261|25282|6|2|2522.48|0.08|0.05|A|F|1994-11-30|1994-10-12|1994-12-01|DELIVER IN PERSON|RAIL|after the silent, fina| +19401|538597|13618|1|33|53973.81|0.02|0.06|N|O|1996-06-10|1996-05-11|1996-06-25|DELIVER IN PERSON|AIR|old, unusual courts cajole after t| +19401|196791|9295|2|6|11326.74|0.02|0.05|N|O|1996-05-07|1996-04-15|1996-05-13|COLLECT COD|RAIL|refully regular pac| +19401|461467|48995|3|12|17141.28|0.07|0.03|N|O|1996-05-21|1996-05-15|1996-05-25|DELIVER IN PERSON|FOB|cial platelets alongside of th| +19401|859895|34930|4|37|68629.45|0.10|0.05|N|O|1996-04-13|1996-04-15|1996-04-23|DELIVER IN PERSON|MAIL|requests: fox| +19402|153040|28047|1|36|39349.44|0.00|0.08|N|O|1997-11-04|1997-12-17|1997-11-14|DELIVER IN PERSON|AIR|lent request| +19402|131828|19335|2|15|27897.30|0.04|0.05|N|O|1997-10-28|1997-12-04|1997-11-22|TAKE BACK RETURN|MAIL|lar requests wake f| +19402|622864|47889|3|14|25015.62|0.05|0.00|N|O|1997-11-07|1997-10-30|1997-11-16|NONE|RAIL|ully. ironic | +19402|466786|41805|4|37|64852.12|0.04|0.05|N|O|1997-11-12|1997-10-30|1997-12-01|TAKE BACK RETURN|MAIL|to beans? carefully ironic foxes | +19403|491639|4149|1|35|57071.35|0.07|0.05|A|F|1995-04-07|1995-06-20|1995-05-07|COLLECT COD|RAIL|en packages wake slyly: furious| +19403|961344|11345|2|45|63238.50|0.06|0.01|R|F|1995-05-16|1995-06-05|1995-06-11|TAKE BACK RETURN|REG AIR|ses wake bravely ironic deposi| +19403|296437|21448|3|43|61637.06|0.03|0.05|N|O|1995-07-03|1995-06-14|1995-07-31|DELIVER IN PERSON|TRUCK|ending requests are blithely| +19404|557036|44570|1|3|3279.03|0.09|0.02|N|O|1997-05-11|1997-04-18|1997-06-05|DELIVER IN PERSON|FOB| haggle whithout the pending, final pack| +19404|98098|35602|2|34|37267.06|0.03|0.04|N|O|1997-05-03|1997-05-16|1997-05-11|DELIVER IN PERSON|MAIL|y quickly ironic accounts.| +19404|729292|29293|3|36|47565.36|0.00|0.07|N|O|1997-04-08|1997-05-24|1997-04-27|TAKE BACK RETURN|SHIP|oxes. blithely final grouc| +19405|208497|21002|1|31|43569.88|0.05|0.08|N|O|1995-12-16|1995-12-28|1996-01-11|NONE|AIR|pending deposits. final, sly request| +19405|203922|28931|2|40|73036.40|0.00|0.06|N|O|1995-10-23|1995-12-15|1995-11-17|TAKE BACK RETURN|RAIL|counts. furiously regular accounts im| +19405|314118|39131|3|5|5660.50|0.07|0.03|N|O|1995-10-14|1995-11-23|1995-11-13|NONE|SHIP| use among the | +19405|365243|27751|4|12|15698.76|0.05|0.07|N|O|1996-02-05|1995-12-15|1996-02-09|COLLECT COD|AIR|. carefully ironic sentiments wak| +19405|635183|10208|5|50|55907.50|0.07|0.04|N|O|1996-01-28|1995-11-12|1996-02-17|NONE|AIR|asymptotes around the furiously ironic ac| +19405|512007|37028|6|17|17322.66|0.02|0.04|N|O|1996-02-10|1995-12-09|1996-03-06|COLLECT COD|AIR| sheaves. fluffily pending foxes h| +19406|841386|16419|1|29|38492.86|0.00|0.05|A|F|1994-05-28|1994-04-30|1994-06-16|COLLECT COD|AIR|ding pinto beans. pending ideas affix s| +19406|173440|23441|2|40|60537.60|0.00|0.05|R|F|1994-04-26|1994-05-06|1994-05-05|COLLECT COD|MAIL|y pending platelet| +19406|990344|15383|3|18|25817.40|0.06|0.07|R|F|1994-06-09|1994-03-15|1994-06-12|TAKE BACK RETURN|AIR|eposits wake. carefully re| +19406|698837|36377|4|29|53238.20|0.06|0.07|A|F|1994-03-25|1994-04-28|1994-04-14|DELIVER IN PERSON|FOB|he furious| +19407|746632|34175|1|21|35250.60|0.02|0.08|N|O|1995-12-26|1996-01-09|1996-01-02|NONE|RAIL|ular theodol| +19407|637072|49585|2|34|34307.36|0.07|0.04|N|O|1995-11-15|1996-01-01|1995-12-11|TAKE BACK RETURN|AIR|ending, silent platelets haggle. | +19407|262812|25318|3|5|8874.00|0.04|0.03|N|O|1996-01-08|1996-01-25|1996-01-24|COLLECT COD|MAIL|s doze slyly b| +19432|440810|3319|1|36|63028.44|0.07|0.08|R|F|1993-08-28|1993-08-18|1993-09-19|NONE|FOB|even pinto beans cajole fluffily along th| +19432|689104|14131|2|26|28419.82|0.00|0.07|A|F|1993-10-09|1993-09-04|1993-11-02|TAKE BACK RETURN|MAIL|the slyly express| +19432|768063|5609|3|34|38455.02|0.10|0.08|A|F|1993-07-05|1993-07-31|1993-07-28|TAKE BACK RETURN|AIR|ites are blithely. carefu| +19432|833242|8275|4|31|36431.20|0.07|0.04|R|F|1993-10-14|1993-08-22|1993-10-22|DELIVER IN PERSON|RAIL|ackages. blithely fin| +19433|223209|10722|1|14|15850.66|0.04|0.06|N|O|1996-08-30|1996-08-18|1996-09-07|NONE|MAIL|s. furiously p| +19433|458376|45904|2|27|36027.45|0.08|0.03|N|O|1996-10-09|1996-10-01|1996-10-14|NONE|REG AIR|inal theodolites haggle slyly. regular acco| +19433|912964|38001|3|36|71169.12|0.05|0.06|N|O|1996-08-13|1996-10-03|1996-09-12|TAKE BACK RETURN|AIR|ose instructions. unusual deposits sleep| +19433|172610|35114|4|45|75717.45|0.08|0.07|N|O|1996-09-11|1996-08-17|1996-09-17|TAKE BACK RETURN|TRUCK|slyly express package| +19433|48223|23224|5|1|1171.22|0.08|0.00|N|O|1996-08-27|1996-08-28|1996-09-25|COLLECT COD|REG AIR|ndencies about the carefully ironic asymp| +19433|468443|30953|6|7|9879.94|0.05|0.04|N|O|1996-08-19|1996-09-30|1996-08-24|TAKE BACK RETURN|MAIL|ng the slyly silent platelets. final r| +19434|173473|35977|1|2|3092.94|0.08|0.06|N|O|1997-08-07|1997-08-07|1997-08-31|DELIVER IN PERSON|AIR| cajole ironica| +19434|558131|8132|2|35|41618.85|0.03|0.05|N|O|1997-10-07|1997-08-10|1997-10-24|NONE|MAIL|ts. ironic foxes haggle. final, express| +19434|502291|27312|3|42|54317.34|0.03|0.03|N|O|1997-07-01|1997-09-13|1997-07-30|NONE|TRUCK|ts nag slyly after th| +19434|993454|18493|4|25|38685.25|0.07|0.04|N|O|1997-09-22|1997-08-04|1997-10-08|COLLECT COD|RAIL|ose. blithely final foxes about the fl| +19434|969106|31626|5|9|10575.54|0.06|0.02|N|O|1997-09-28|1997-08-03|1997-10-12|DELIVER IN PERSON|MAIL| blithely upon the deposits. un| +19435|629889|42402|1|39|70935.15|0.00|0.02|R|F|1994-11-29|1994-09-26|1994-12-15|TAKE BACK RETURN|MAIL|at. carefully ironic | +19435|540292|40293|2|21|27977.67|0.07|0.02|R|F|1994-10-21|1994-10-13|1994-11-02|DELIVER IN PERSON|AIR|re slyly fi| +19435|675251|25252|3|40|49048.80|0.01|0.01|R|F|1994-09-24|1994-10-03|1994-09-29|COLLECT COD|FOB|nusual accounts wake s| +19435|928820|41339|4|16|29580.48|0.09|0.00|R|F|1994-09-29|1994-10-03|1994-10-28|COLLECT COD|REG AIR|inal ideas. fur| +19435|661008|36035|5|50|48448.50|0.03|0.07|A|F|1994-11-28|1994-10-31|1994-12-13|TAKE BACK RETURN|FOB| of the quickly fina| +19435|547529|47530|6|20|31530.00|0.06|0.05|A|F|1994-08-27|1994-09-24|1994-09-11|TAKE BACK RETURN|FOB| to the requests. bold reques| +19436|826579|1612|1|39|58715.67|0.03|0.07|N|O|1997-08-20|1997-07-21|1997-08-29|NONE|AIR|sual requests impress slyly even excuses. | +19436|302763|27776|2|30|52972.50|0.07|0.01|N|O|1997-07-09|1997-07-25|1997-07-21|COLLECT COD|RAIL|ccounts. slyly express e| +19436|522868|22869|3|25|47271.00|0.08|0.01|N|O|1997-07-20|1997-08-03|1997-08-08|NONE|MAIL|e the carefully even foxes. final reque| +19436|836383|36384|4|12|15832.08|0.10|0.02|N|O|1997-10-01|1997-07-29|1997-10-18|NONE|AIR|gular ideas.| +19436|86756|24260|5|7|12199.25|0.08|0.05|N|O|1997-08-18|1997-08-18|1997-08-23|DELIVER IN PERSON|REG AIR|posits. even reque| +19436|100702|13205|6|25|42567.50|0.04|0.08|N|O|1997-08-14|1997-07-21|1997-09-13|COLLECT COD|MAIL|ounts wake blithely furious| +19436|493856|18875|7|32|59194.56|0.03|0.08|N|O|1997-06-05|1997-07-17|1997-06-06|TAKE BACK RETURN|RAIL| slyly express grouches are? fu| +19437|230851|30852|1|34|60582.56|0.00|0.01|N|O|1995-10-19|1995-09-12|1995-11-04|COLLECT COD|FOB|l requests. pending platelets sleep slyly| +19437|899700|12218|2|1|1699.66|0.06|0.03|N|O|1995-10-14|1995-10-13|1995-10-21|NONE|FOB| sheaves. enticingly final accoun| +19437|250096|37612|3|49|51257.92|0.02|0.03|N|O|1995-11-18|1995-09-19|1995-11-29|NONE|AIR|iously unusual packages haggle about | +19437|355042|5043|4|9|9873.27|0.04|0.05|N|O|1995-08-20|1995-09-14|1995-09-07|COLLECT COD|TRUCK|efully carefully brave foxes. unusua| +19437|184015|34016|5|29|31871.29|0.10|0.01|N|O|1995-11-29|1995-10-21|1995-12-26|NONE|REG AIR|nal dolphins haggle slyly slowly regular t| +19438|71008|21009|1|19|18601.00|0.00|0.02|N|O|1997-03-10|1997-01-14|1997-04-05|NONE|AIR|n theodolite| +19438|423632|36141|2|23|35779.03|0.07|0.06|N|O|1997-02-26|1997-02-01|1997-03-16|TAKE BACK RETURN|FOB|ress, final platelets. furiou| +19438|968700|6258|3|14|24761.24|0.07|0.02|N|O|1996-12-29|1997-02-09|1997-01-17|DELIVER IN PERSON|SHIP|s. blithely unus| +19439|808855|33888|1|1|1763.81|0.09|0.04|A|F|1994-11-19|1994-12-22|1994-12-03|COLLECT COD|FOB| slyly carefully unusual deposits. | +19439|411888|49413|2|4|7199.44|0.09|0.01|R|F|1995-01-20|1994-11-07|1995-02-13|NONE|TRUCK|e furiously pending pinto beans. fl| +19439|591643|4155|3|19|32957.78|0.00|0.02|R|F|1995-01-14|1994-11-09|1995-01-25|TAKE BACK RETURN|MAIL| to the furiou| +19439|728942|3971|4|8|15767.28|0.04|0.08|R|F|1994-10-01|1994-12-04|1994-10-29|TAKE BACK RETURN|SHIP|to beans nag slyly against the b| +19439|327775|27776|5|17|30646.92|0.07|0.07|A|F|1995-01-22|1994-11-24|1995-01-23|NONE|RAIL|y express d| +19464|360927|35942|1|43|85480.13|0.04|0.02|N|O|1998-03-07|1998-02-28|1998-03-26|NONE|REG AIR|hless, regular pinto beans are deposits| +19464|89624|27128|2|10|16136.20|0.01|0.04|N|O|1998-04-03|1998-04-09|1998-04-09|COLLECT COD|TRUCK|s are carefully | +19464|295500|20511|3|42|62810.58|0.09|0.08|N|O|1998-04-07|1998-04-01|1998-04-17|DELIVER IN PERSON|MAIL|le after the carefully final gr| +19464|456317|43845|4|34|43291.86|0.00|0.03|N|O|1998-04-08|1998-03-31|1998-05-03|COLLECT COD|SHIP|the ironic ideas sleep regular, ir| +19464|316138|41151|5|19|21928.28|0.02|0.04|N|O|1998-03-26|1998-04-17|1998-04-02|NONE|RAIL|en ideas sleep sly| +19464|329385|41892|6|50|70718.50|0.07|0.01|N|O|1998-03-03|1998-03-18|1998-03-09|NONE|AIR|usly even decoys haggle fu| +19464|963615|13616|7|33|55392.81|0.10|0.01|N|O|1998-04-03|1998-04-18|1998-04-11|DELIVER IN PERSON|RAIL| carefully quick deposits ca| +19465|462369|49897|1|5|6656.70|0.02|0.01|N|O|1996-11-28|1996-11-19|1996-12-22|DELIVER IN PERSON|REG AIR|nt, pending packages are slyly. r| +19465|24753|49754|2|21|35232.75|0.06|0.01|N|O|1996-10-25|1996-10-23|1996-11-10|TAKE BACK RETURN|REG AIR|nments wake quickly account| +19466|188007|38008|1|34|37230.00|0.06|0.00|N|O|1995-06-22|1995-08-24|1995-07-13|TAKE BACK RETURN|FOB|e atop the requests. furiously pe| +19466|831802|19351|2|27|46811.52|0.03|0.07|N|O|1995-08-21|1995-07-03|1995-09-15|DELIVER IN PERSON|SHIP| furiously above the slyly e| +19466|92994|5496|3|5|9934.95|0.08|0.03|N|O|1995-07-29|1995-07-09|1995-08-18|NONE|TRUCK|ironic packages would haggle blithel| +19466|935388|22943|4|21|29890.14|0.05|0.00|N|O|1995-09-17|1995-08-10|1995-09-22|NONE|REG AIR|ndencies lose. furiously special accounts| +19466|58301|20803|5|42|52890.60|0.05|0.00|N|O|1995-09-23|1995-08-29|1995-10-23|NONE|SHIP|ly regular deposits | +19466|857973|20491|6|12|23171.16|0.02|0.00|N|O|1995-08-08|1995-07-30|1995-08-16|NONE|RAIL|ptotes. blithely unusual requests al| +19466|935823|35824|7|40|74351.20|0.09|0.03|N|O|1995-07-26|1995-07-05|1995-07-27|COLLECT COD|FOB|ironic platelets among the accounts cajo| +19467|361266|11267|1|49|65035.25|0.01|0.02|R|F|1993-11-24|1993-10-19|1993-12-10|COLLECT COD|MAIL|l, ironic ideas sleep fl| +19468|437532|12549|1|24|35268.24|0.00|0.03|A|F|1992-11-25|1992-10-18|1992-12-02|NONE|RAIL| about the carefully express deposits. f| +19468|593813|43814|2|4|7627.16|0.04|0.04|A|F|1992-11-03|1992-12-03|1992-11-18|NONE|TRUCK|ts sleep slyly along t| +19468|200872|25881|3|13|23047.18|0.01|0.04|A|F|1992-11-16|1992-11-23|1992-11-28|COLLECT COD|MAIL|among the furiously silent deposits. b| +19468|46586|46587|4|50|76629.00|0.07|0.04|A|F|1992-09-11|1992-11-18|1992-10-04|TAKE BACK RETURN|REG AIR|olites wake slyly unusua| +19469|238443|948|1|12|16577.16|0.01|0.03|R|F|1994-10-22|1994-11-27|1994-11-15|TAKE BACK RETURN|MAIL|counts. blithely unusual packages poac| +19469|511038|48569|2|3|3147.03|0.00|0.01|R|F|1994-11-18|1994-11-07|1994-11-22|DELIVER IN PERSON|AIR|bout the blithely | +19469|4796|29797|3|39|66330.81|0.06|0.04|R|F|1994-10-02|1994-11-30|1994-10-23|DELIVER IN PERSON|FOB|even pains detect carefully ironic ideas. s| +19469|593055|18078|4|17|19516.51|0.05|0.00|R|F|1994-10-29|1994-12-20|1994-11-05|NONE|FOB|tect furiously quickly ironic excuses| +19469|473317|35827|5|15|19354.35|0.08|0.06|A|F|1994-12-06|1994-12-12|1994-12-12|DELIVER IN PERSON|MAIL|gular courts. slyly close instructi| +19469|33996|8997|6|14|27019.86|0.07|0.03|R|F|1994-11-06|1994-12-20|1994-11-13|NONE|RAIL| packages. carefully unusual excuses | +19469|357999|20507|7|6|12341.88|0.04|0.02|A|F|1995-01-11|1994-12-28|1995-02-10|COLLECT COD|REG AIR|g the requests are fur| +19470|886993|12028|1|29|57418.55|0.07|0.01|R|F|1995-04-26|1995-03-26|1995-04-27|DELIVER IN PERSON|RAIL|manently pending multipliers. close| +19470|685908|35909|2|8|15150.96|0.04|0.07|A|F|1995-01-17|1995-03-23|1995-01-25|COLLECT COD|RAIL|ecial instructions prin| +19470|51269|38773|3|32|39048.32|0.01|0.08|A|F|1995-02-06|1995-02-25|1995-02-09|DELIVER IN PERSON|RAIL| the furiously express deposits. bol| +19470|674365|49392|4|14|18750.62|0.05|0.08|R|F|1995-01-15|1995-03-21|1995-02-07|TAKE BACK RETURN|FOB|e after the qu| +19471|615499|15500|1|21|29703.66|0.10|0.08|A|F|1993-12-13|1993-12-22|1993-12-18|TAKE BACK RETURN|REG AIR|sleep quickly above the foxes. unusual a| +19471|677088|14628|2|9|9585.45|0.04|0.05|R|F|1993-12-12|1993-11-29|1994-01-09|DELIVER IN PERSON|SHIP|rs boost. slowly ruthless theod| +19471|802531|27564|3|30|43004.70|0.01|0.03|R|F|1994-01-02|1993-12-09|1994-01-20|COLLECT COD|FOB|ely carefully regular request| +19471|136884|11889|4|33|63389.04|0.10|0.04|A|F|1993-12-29|1993-12-13|1994-01-19|NONE|AIR|special ideas. never regular deposits c| +19471|601894|1895|5|14|25142.04|0.03|0.01|A|F|1993-12-06|1994-01-08|1993-12-14|DELIVER IN PERSON|MAIL|hely regular platelets. qu| +19471|31956|44457|6|47|88733.65|0.04|0.06|A|F|1994-01-06|1993-11-27|1994-01-29|NONE|MAIL|uffily final accounts cajole slyly. accou| +19471|73274|23275|7|30|37418.10|0.08|0.00|A|F|1993-11-18|1993-12-29|1993-12-01|COLLECT COD|RAIL|al deposits. final asym| +19496|507684|45215|1|41|69358.06|0.06|0.06|A|F|1993-06-16|1993-06-11|1993-06-19|TAKE BACK RETURN|FOB|gle alongside of the fluffily dogged asy| +19496|630339|5364|2|47|59657.10|0.08|0.03|A|F|1993-07-13|1993-06-23|1993-08-12|DELIVER IN PERSON|RAIL|ngly regular accounts.| +19496|95156|45157|3|41|47197.15|0.04|0.05|R|F|1993-06-08|1993-06-04|1993-07-05|DELIVER IN PERSON|AIR|grate. fluff| +19496|285985|48491|4|43|84751.71|0.07|0.01|R|F|1993-07-31|1993-06-09|1993-08-11|DELIVER IN PERSON|TRUCK|es cajole. | +19496|546782|21803|5|24|43890.24|0.07|0.02|R|F|1993-07-03|1993-05-29|1993-07-07|DELIVER IN PERSON|REG AIR|attainments. slyly express theodoli| +19496|761205|48751|6|36|45582.12|0.10|0.04|R|F|1993-05-05|1993-06-29|1993-05-12|DELIVER IN PERSON|REG AIR|thely ironic packages. slow| +19496|556708|6709|7|31|54705.08|0.01|0.00|R|F|1993-05-31|1993-06-11|1993-06-19|NONE|REG AIR|g the ironic, bold pl| +19497|587935|12958|1|10|20229.10|0.03|0.05|R|F|1995-01-21|1995-02-20|1995-02-11|DELIVER IN PERSON|AIR|n accounts sl| +19497|418012|18013|2|6|5579.94|0.10|0.04|R|F|1995-04-04|1995-04-06|1995-04-20|NONE|TRUCK|pinto beans nag fin| +19498|821146|46179|1|38|40549.80|0.01|0.01|N|O|1998-08-17|1998-08-18|1998-09-05|COLLECT COD|FOB|boost blithely reg| +19498|292|25293|2|11|13115.19|0.09|0.07|N|O|1998-07-27|1998-08-24|1998-08-05|COLLECT COD|MAIL|eas sleep care| +19498|897163|9681|3|37|42924.44|0.03|0.05|N|O|1998-09-27|1998-09-05|1998-10-22|DELIVER IN PERSON|SHIP|. slyly final dinos after th| +19498|614024|39049|4|40|37519.60|0.03|0.01|N|O|1998-07-15|1998-09-18|1998-07-24|TAKE BACK RETURN|RAIL|ests. special instru| +19498|895836|8354|5|1|1831.79|0.04|0.04|N|O|1998-07-20|1998-08-12|1998-08-12|NONE|FOB|blithely ideas. blith| +19498|312448|49967|6|43|62798.49|0.09|0.00|N|O|1998-09-07|1998-08-13|1998-09-18|DELIVER IN PERSON|REG AIR| slyly final accou| +19498|312397|12398|7|48|67650.24|0.03|0.05|N|O|1998-06-24|1998-08-23|1998-07-05|NONE|RAIL|ke blithely requests. excuses among the exp| +19499|455825|30844|1|20|35616.00|0.06|0.05|R|F|1994-12-07|1994-12-01|1994-12-18|NONE|REG AIR|around the idly ironic d| +19499|39526|14527|2|36|52758.72|0.06|0.07|R|F|1995-02-13|1995-01-24|1995-03-02|DELIVER IN PERSON|MAIL|ickly special deposits. furiously regula| +19500|622162|34675|1|47|50954.11|0.05|0.00|A|F|1995-02-25|1995-02-08|1995-03-09|TAKE BACK RETURN|TRUCK|osits haggle quickly. pendi| +19501|925914|951|1|48|93113.76|0.05|0.05|N|O|1996-01-12|1995-11-04|1996-01-30|COLLECT COD|SHIP| accounts detect blithe| +19501|828854|41371|2|25|44570.25|0.05|0.05|N|O|1995-12-26|1995-11-03|1996-01-15|DELIVER IN PERSON|TRUCK|e asymptotes must haggle furiously. fina| +19502|823235|35752|1|44|50960.36|0.06|0.05|A|F|1992-05-31|1992-05-19|1992-06-14|NONE|RAIL|oost quickly about th| +19502|96604|9106|2|37|59222.20|0.10|0.08|R|F|1992-07-16|1992-06-18|1992-08-08|NONE|RAIL|ght to play furiously across the daringl| +19502|613565|26078|3|4|5914.12|0.01|0.08|A|F|1992-07-14|1992-06-21|1992-07-21|DELIVER IN PERSON|FOB| fluffily unusual, ir| +19503|780305|42821|1|44|60951.88|0.08|0.00|N|O|1998-05-22|1998-06-14|1998-06-11|COLLECT COD|AIR|heodolites cajole express, | +19503|573315|48338|2|26|36095.54|0.04|0.08|N|O|1998-06-25|1998-06-03|1998-07-08|TAKE BACK RETURN|REG AIR|sts sleep furiously quickl| +19503|689380|26920|3|6|8216.10|0.06|0.06|N|O|1998-07-04|1998-06-18|1998-07-18|COLLECT COD|REG AIR| ruthlessly regular sh| +19503|400531|13040|4|43|61554.93|0.09|0.02|N|O|1998-04-11|1998-06-01|1998-04-12|DELIVER IN PERSON|TRUCK|g excuses hang sl| +19503|707733|7734|5|12|20888.40|0.10|0.08|N|O|1998-06-07|1998-05-30|1998-06-29|DELIVER IN PERSON|MAIL|he special foxes believe requ| +19503|859101|9102|6|10|10600.60|0.01|0.08|N|O|1998-04-24|1998-05-31|1998-05-11|NONE|MAIL|. furiously regular ideas | +19528|653732|41272|1|28|47199.60|0.06|0.07|N|O|1998-07-11|1998-08-15|1998-07-25|TAKE BACK RETURN|REG AIR|es. quickly regular pinto bean| +19528|260392|35403|2|31|41923.78|0.04|0.01|N|O|1998-07-04|1998-08-25|1998-07-18|TAKE BACK RETURN|AIR| instructions slee| +19529|252735|40251|1|47|79322.84|0.04|0.06|N|O|1998-02-11|1998-03-29|1998-03-08|DELIVER IN PERSON|TRUCK|r, special requests sleep slyly ironic, ir| +19529|716664|16665|2|1|1680.63|0.08|0.07|N|O|1998-05-24|1998-03-14|1998-06-14|TAKE BACK RETURN|TRUCK|e the caref| +19529|963213|771|3|47|59979.99|0.09|0.02|N|O|1998-04-18|1998-04-19|1998-05-02|TAKE BACK RETURN|AIR|ully warhorses. furiously bo| +19530|438442|38443|1|11|15184.62|0.04|0.06|N|O|1998-01-28|1997-12-15|1998-02-25|TAKE BACK RETURN|RAIL|hockey player| +19530|884488|22040|2|2|2944.88|0.05|0.00|N|O|1997-12-22|1998-01-03|1997-12-30|COLLECT COD|AIR|packages. carefully unusual pa| +19530|576003|1026|3|40|43159.20|0.01|0.01|N|O|1998-02-05|1998-01-15|1998-02-20|DELIVER IN PERSON|FOB|kages. blithely fin| +19530|877560|15112|4|19|29212.88|0.01|0.06|N|O|1997-11-15|1997-12-11|1997-12-15|DELIVER IN PERSON|REG AIR|ing grouches. final theodolites boost fu| +19530|148610|11113|5|38|63027.18|0.08|0.04|N|O|1997-10-31|1997-12-13|1997-11-07|COLLECT COD|AIR|ounts was blith| +19531|92837|17840|1|39|71363.37|0.03|0.06|R|F|1993-11-03|1993-11-24|1993-11-18|COLLECT COD|REG AIR| near the ironic, reg| +19531|305243|30256|2|16|19971.68|0.02|0.04|R|F|1993-12-13|1993-10-14|1994-01-07|TAKE BACK RETURN|FOB|er the slow| +19531|206142|6143|3|39|40877.07|0.03|0.00|R|F|1993-10-05|1993-11-04|1993-10-14|COLLECT COD|RAIL| requests. quickly spe| +19531|622185|9722|4|49|54250.35|0.06|0.01|R|F|1993-11-10|1993-11-03|1993-11-22|TAKE BACK RETURN|REG AIR|usly final i| +19531|55188|30191|5|32|36581.76|0.03|0.07|R|F|1993-09-23|1993-10-16|1993-10-11|COLLECT COD|MAIL|es cajole blithely. express accoun| +19531|537927|37928|6|46|90385.40|0.05|0.03|A|F|1993-10-05|1993-10-22|1993-10-23|NONE|AIR|kly final gifts snooze carefully agai| +19531|931382|31383|7|4|5653.36|0.01|0.01|A|F|1993-12-05|1993-10-16|1994-01-02|NONE|SHIP|eposits. blithely special ide| +19532|733071|8100|1|6|6624.24|0.03|0.00|N|O|1996-12-21|1997-02-11|1997-01-13|NONE|RAIL|counts int| +19533|828264|28265|1|49|58418.78|0.09|0.02|N|O|1996-01-18|1995-12-31|1996-01-31|COLLECT COD|FOB|ic depende| +19533|622589|35102|2|39|58950.45|0.01|0.07|N|O|1995-12-21|1995-12-11|1996-01-16|COLLECT COD|RAIL|he blithel| +19533|850793|13311|3|43|74981.25|0.05|0.04|N|O|1996-01-29|1996-01-23|1996-01-30|TAKE BACK RETURN|REG AIR|quests. pinto beans | +19533|273221|23222|4|10|11942.10|0.08|0.04|N|O|1995-11-25|1996-01-21|1995-12-20|NONE|AIR|lithely according to the ca| +19534|833247|33248|1|7|8261.40|0.02|0.05|N|O|1997-02-10|1996-12-17|1997-03-06|COLLECT COD|FOB|ccounts. carefully even theodoli| +19534|381794|44302|2|37|69403.86|0.10|0.01|N|O|1996-10-31|1996-11-20|1996-11-11|TAKE BACK RETURN|SHIP|s boost slyly final accounts. eve| +19534|804765|17282|3|40|66788.80|0.07|0.01|N|O|1996-10-20|1997-01-03|1996-11-13|COLLECT COD|RAIL|. regular deposits wake | +19534|684705|34706|4|30|50690.10|0.02|0.02|N|O|1996-10-27|1996-11-14|1996-10-30|TAKE BACK RETURN|SHIP|nts cajole carefully according to the | +19534|820441|32958|5|45|61263.00|0.05|0.05|N|O|1996-10-31|1996-11-14|1996-11-18|TAKE BACK RETURN|MAIL|thely even packages wake furiously al| +19534|148140|10643|6|41|48713.74|0.10|0.02|N|O|1996-10-29|1996-12-15|1996-11-12|COLLECT COD|RAIL|deposits boost fluffily about the | +19534|780790|18336|7|20|37415.20|0.00|0.04|N|O|1997-02-02|1997-01-04|1997-02-15|NONE|AIR|onic instructions among| +19535|736961|36962|1|41|81915.13|0.01|0.00|R|F|1992-03-21|1992-04-20|1992-03-27|TAKE BACK RETURN|AIR|tes sleep carefully bli| +19535|98503|48504|2|27|40540.50|0.10|0.00|R|F|1992-02-21|1992-04-16|1992-03-07|TAKE BACK RETURN|AIR| have to are quickly bl| +19535|534086|9107|3|30|33601.80|0.09|0.06|A|F|1992-04-02|1992-03-27|1992-04-05|DELIVER IN PERSON|SHIP|iously iro| +19560|652234|39774|1|9|10675.80|0.04|0.01|A|F|1994-12-26|1995-02-04|1995-01-16|COLLECT COD|REG AIR| never final foxes haggle furiously a| +19560|86382|11385|2|9|12315.42|0.01|0.01|R|F|1994-11-30|1995-01-29|1994-12-21|COLLECT COD|REG AIR|s packages hag| +19560|819493|19494|3|43|60735.35|0.08|0.02|R|F|1994-11-18|1995-02-04|1994-12-17|NONE|TRUCK|deas about the slyly | +19560|211226|11227|4|33|37527.93|0.03|0.07|R|F|1994-12-14|1995-01-28|1995-01-02|NONE|SHIP|ic packages around the quickly permane| +19561|280871|18387|1|50|92593.00|0.10|0.06|N|O|1998-07-20|1998-09-03|1998-08-03|TAKE BACK RETURN|AIR|long the quickly idle depos| +19562|66887|29389|1|44|81570.72|0.00|0.08|R|F|1993-03-08|1993-02-26|1993-04-02|COLLECT COD|FOB|nto the slyly i| +19562|167284|42291|2|38|51348.64|0.09|0.05|A|F|1993-02-05|1993-03-11|1993-03-07|TAKE BACK RETURN|TRUCK|r carefully. slyly e| +19562|533028|45539|3|46|48806.00|0.08|0.01|A|F|1993-01-23|1993-01-24|1993-02-05|DELIVER IN PERSON|REG AIR|s nag slyl| +19563|154377|29384|1|39|55823.43|0.06|0.06|R|F|1992-07-03|1992-07-18|1992-07-21|NONE|FOB|en foxes: carefully special excuses haggle.| +19563|609254|9255|2|31|36059.82|0.04|0.07|A|F|1992-06-19|1992-09-04|1992-06-26|DELIVER IN PERSON|AIR|s boost along the regular, express sh| +19563|728865|16408|3|28|53027.24|0.07|0.02|A|F|1992-09-01|1992-09-03|1992-09-18|NONE|SHIP|liers haggle slyly among th| +19563|19394|44395|4|49|64356.11|0.04|0.07|R|F|1992-07-07|1992-07-10|1992-07-23|COLLECT COD|TRUCK|ic, final requests. pe| +19564|193942|6446|1|46|93653.24|0.05|0.02|R|F|1992-10-11|1992-09-29|1992-10-15|TAKE BACK RETURN|REG AIR|, final warhorses hag| +19564|574566|49589|2|31|50856.74|0.09|0.06|A|F|1992-11-09|1992-11-04|1992-12-08|TAKE BACK RETURN|SHIP|posits cajole bol| +19564|725557|38072|3|20|31650.40|0.02|0.05|R|F|1992-08-26|1992-10-31|1992-08-28|DELIVER IN PERSON|AIR|carefully pending dinos| +19565|73336|48339|1|23|30114.59|0.03|0.06|N|O|1998-06-22|1998-07-01|1998-07-05|TAKE BACK RETURN|FOB|uctions. quickly final | +19565|555486|5487|2|30|46243.80|0.07|0.04|N|O|1998-07-23|1998-06-19|1998-07-25|NONE|RAIL|hely express pac| +19565|40953|3454|3|32|60606.40|0.08|0.05|N|O|1998-08-04|1998-07-04|1998-08-30|TAKE BACK RETURN|TRUCK|s sleep ruthlessly a| +19566|936972|24527|1|40|80357.20|0.07|0.00|N|O|1998-06-12|1998-04-30|1998-06-14|NONE|RAIL|ructions above the furiously b| +19566|675094|37608|2|37|39555.22|0.10|0.01|N|O|1998-07-22|1998-06-09|1998-08-11|COLLECT COD|TRUCK|n accounts might snooze up the carefully| +19566|300122|37641|3|25|28052.75|0.06|0.07|N|O|1998-03-26|1998-04-22|1998-04-16|TAKE BACK RETURN|AIR| deposits. blithely even reque| +19566|143340|18345|4|42|58100.28|0.02|0.00|N|O|1998-04-12|1998-04-26|1998-04-20|TAKE BACK RETURN|FOB|ions use. instructions | +19566|98726|48727|5|1|1724.72|0.10|0.02|N|O|1998-05-19|1998-06-08|1998-06-13|TAKE BACK RETURN|SHIP|posits. ironic packages mo| +19566|284380|9391|6|13|17736.81|0.05|0.01|N|O|1998-07-13|1998-05-03|1998-07-29|DELIVER IN PERSON|AIR|xpress accounts sleep silently. pendi| +19567|948136|10655|1|39|46179.51|0.02|0.05|N|O|1998-08-08|1998-07-11|1998-08-31|TAKE BACK RETURN|AIR|the unusual account| +19567|318308|18309|2|12|15915.48|0.04|0.04|N|O|1998-08-02|1998-06-20|1998-08-25|DELIVER IN PERSON|TRUCK|ets after | +19592|752144|14660|1|42|50236.62|0.05|0.04|R|F|1992-05-12|1992-05-14|1992-05-16|DELIVER IN PERSON|FOB|c deposits ha| +19592|273328|10844|2|1|1301.31|0.01|0.03|A|F|1992-04-20|1992-05-11|1992-04-23|NONE|AIR|mptotes. blithely even theodol| +19593|653421|15935|1|34|46729.26|0.03|0.00|N|O|1996-01-04|1995-12-16|1996-01-21|TAKE BACK RETURN|REG AIR|ts nag enticingly| +19593|32057|32058|2|23|22748.15|0.02|0.01|N|O|1995-11-27|1995-12-20|1995-12-10|COLLECT COD|SHIP|yly regular pinto beans | +19593|766407|16408|3|8|11786.96|0.05|0.07|N|O|1995-12-14|1996-01-15|1996-01-06|DELIVER IN PERSON|SHIP| believe slyly. dari| +19593|998157|48158|4|4|5020.44|0.09|0.04|N|O|1996-03-08|1995-12-27|1996-03-13|NONE|AIR| deposits. blithely bus| +19593|18926|18927|5|26|47967.92|0.05|0.01|N|O|1995-11-16|1996-01-08|1995-11-21|COLLECT COD|FOB|ing accounts use quickly along the furious| +19593|88746|1248|6|15|26021.10|0.06|0.05|N|O|1996-01-14|1995-12-25|1996-01-16|NONE|RAIL|tes are again| +19594|520275|7806|1|38|49219.50|0.03|0.08|A|F|1992-04-09|1992-04-03|1992-04-20|COLLECT COD|SHIP|egular accounts sl| +19594|252343|2344|2|13|16839.29|0.04|0.04|A|F|1992-03-06|1992-05-03|1992-03-21|COLLECT COD|TRUCK|n deposits. silent foxes hag| +19594|112961|12962|3|12|23687.52|0.02|0.07|R|F|1992-04-21|1992-03-16|1992-04-22|NONE|AIR|ove the theodolites need to sleep car| +19594|534485|22016|4|1|1519.46|0.01|0.02|A|F|1992-05-19|1992-04-02|1992-06-08|DELIVER IN PERSON|SHIP|ckly ironic platelets? slowly e| +19594|75041|25042|5|43|43689.72|0.04|0.06|R|F|1992-02-17|1992-04-22|1992-02-24|DELIVER IN PERSON|SHIP|y pending pint| +19594|212676|189|6|23|36539.18|0.02|0.00|A|F|1992-03-26|1992-03-23|1992-04-01|DELIVER IN PERSON|MAIL|usly slowly final asymptotes.| +19594|436774|24299|7|36|61587.00|0.05|0.02|R|F|1992-03-18|1992-04-21|1992-03-19|TAKE BACK RETURN|AIR|gedly across the slyly even depo| +19595|851153|1154|1|18|19873.98|0.02|0.03|R|F|1993-02-08|1992-12-26|1993-02-20|TAKE BACK RETURN|MAIL|ly pinto b| +19595|320351|7870|2|14|19198.76|0.08|0.01|A|F|1992-12-08|1993-01-27|1992-12-11|DELIVER IN PERSON|REG AIR|es unwind slyly after the fluffily ev| +19595|129147|16654|3|15|17642.10|0.06|0.08|A|F|1992-12-14|1993-01-31|1992-12-18|TAKE BACK RETURN|RAIL|ts haggle slyly ev| +19595|571872|9406|4|21|40820.85|0.04|0.00|R|F|1993-01-02|1993-02-15|1993-01-04|DELIVER IN PERSON|FOB|he final ideas integrate fluffily be| +19595|444595|7104|5|30|46187.10|0.09|0.05|R|F|1993-02-28|1993-01-25|1993-03-10|TAKE BACK RETURN|FOB|y silent instructi| +19595|299674|24685|6|31|51883.46|0.06|0.04|R|F|1993-01-11|1993-02-09|1993-01-20|TAKE BACK RETURN|TRUCK|gular, even de| +19595|605662|5663|7|40|62705.20|0.01|0.05|A|F|1993-01-06|1993-01-09|1993-02-01|TAKE BACK RETURN|TRUCK|ng, ironic acco| +19596|344974|7481|1|20|40379.20|0.01|0.04|N|O|1996-06-21|1996-08-05|1996-06-26|NONE|REG AIR|y final packages boost carefully. dolphin| +19596|975705|25706|2|37|65884.42|0.09|0.08|N|O|1996-07-27|1996-07-15|1996-07-29|TAKE BACK RETURN|AIR|s haggle ironic theodolites| +19596|660671|23185|3|31|50580.84|0.04|0.07|N|O|1996-06-18|1996-08-13|1996-07-14|TAKE BACK RETURN|TRUCK|s. regular, special acc| +19596|895811|45812|4|28|50589.56|0.04|0.00|N|O|1996-08-01|1996-07-24|1996-08-11|TAKE BACK RETURN|FOB|posits boo| +19597|55578|30581|1|31|47540.67|0.01|0.02|N|O|1997-06-26|1997-07-31|1997-07-23|DELIVER IN PERSON|AIR|use fluffily carefully unusual pinto b| +19597|87487|37488|2|49|72249.52|0.06|0.03|N|O|1997-08-13|1997-07-04|1997-08-16|NONE|REG AIR|express deposits: always pending accounts n| +19597|381692|31693|3|28|49663.04|0.01|0.00|N|O|1997-08-19|1997-07-28|1997-09-11|NONE|TRUCK|pending foxes. accounts| +19597|91792|16795|4|46|82054.34|0.09|0.01|N|O|1997-06-29|1997-08-08|1997-07-26|NONE|SHIP|. quickly pending requests sh| +19597|745938|33481|5|30|59517.00|0.04|0.06|N|O|1997-07-19|1997-06-18|1997-07-25|TAKE BACK RETURN|FOB|ts. blithely| +19597|972362|22363|6|14|20080.48|0.01|0.00|N|O|1997-08-26|1997-08-08|1997-09-16|NONE|REG AIR| ironic pinto bea| +19598|950004|5|1|5|5269.80|0.04|0.05|N|O|1997-06-09|1997-07-10|1997-06-20|TAKE BACK RETURN|REG AIR|blithely final ideas main| +19598|701931|26960|2|26|50255.40|0.02|0.03|N|O|1997-05-23|1997-06-24|1997-06-06|COLLECT COD|MAIL|hely pending packages are ironically sl| +19598|349263|49264|3|24|31494.00|0.02|0.02|N|O|1997-05-23|1997-06-14|1997-05-24|TAKE BACK RETURN|REG AIR|ts affix slyly across the slyly regular r| +19599|957495|20015|1|34|52783.30|0.07|0.08|R|F|1993-09-26|1993-08-04|1993-10-17|DELIVER IN PERSON|RAIL| packages. | +19599|605000|17513|2|37|33483.89|0.06|0.07|A|F|1993-08-24|1993-08-20|1993-08-30|TAKE BACK RETURN|AIR|ts. final, regular platelets haggle sl| +19599|219407|44416|3|35|46423.65|0.10|0.04|A|F|1993-08-09|1993-07-19|1993-08-29|COLLECT COD|REG AIR|sleep along the regular, stealthy reque| +19599|564508|2042|4|37|58181.76|0.07|0.04|R|F|1993-07-27|1993-09-13|1993-08-23|DELIVER IN PERSON|MAIL|eep accounts-- final, regular| +19599|670510|20511|5|8|11843.84|0.03|0.00|R|F|1993-10-05|1993-08-09|1993-11-03|DELIVER IN PERSON|MAIL|ng to the bold excuses. bravely even| +19599|259425|9426|6|33|45685.53|0.06|0.03|A|F|1993-07-02|1993-09-13|1993-07-12|COLLECT COD|TRUCK|against the slyly| +19599|145910|33417|7|38|74324.58|0.06|0.02|R|F|1993-07-01|1993-08-17|1993-07-30|COLLECT COD|RAIL|ages. always pen| +19624|298054|10560|1|35|36821.40|0.05|0.07|A|F|1993-04-26|1993-05-06|1993-05-18|COLLECT COD|AIR|lessly special platelets. fluffily| +19624|386661|36662|2|29|50681.85|0.03|0.00|R|F|1993-07-08|1993-05-12|1993-07-12|DELIVER IN PERSON|MAIL|yly bold packages haggle ca| +19625|15561|15562|1|14|20671.84|0.02|0.03|N|O|1998-06-08|1998-06-28|1998-06-22|NONE|TRUCK|arefully even pearls. special re| +19625|527317|2338|2|47|63181.63|0.06|0.07|N|O|1998-05-27|1998-06-21|1998-06-12|NONE|SHIP|y. regular packages use. quic| +19625|616168|3705|3|28|30355.64|0.03|0.03|N|O|1998-08-28|1998-07-12|1998-09-22|DELIVER IN PERSON|FOB|eposits. carefully bold| +19626|81187|18691|1|7|8177.26|0.07|0.08|R|F|1992-10-31|1992-12-19|1992-11-22|NONE|REG AIR|accounts breach around the carefully re| +19626|501333|13844|2|35|46700.85|0.01|0.06|A|F|1993-02-19|1992-12-27|1993-02-25|DELIVER IN PERSON|MAIL|yly ironic requests cajole fluffi| +19626|895011|45012|3|14|14083.58|0.08|0.07|A|F|1993-01-31|1993-01-13|1993-02-03|NONE|FOB|e accounts; furiously regular accou| +19626|447323|22340|4|36|45730.80|0.09|0.06|R|F|1992-12-11|1992-11-28|1992-12-13|DELIVER IN PERSON|FOB|kages acco| +19626|150763|764|5|37|67109.12|0.08|0.05|R|F|1992-12-21|1992-11-28|1993-01-14|NONE|AIR|ounts. carefully final packages use re| +19626|867472|29990|6|25|35985.75|0.06|0.03|R|F|1992-12-19|1992-12-19|1993-01-01|DELIVER IN PERSON|RAIL|fily against the fluffily ironic requ| +19626|593662|18685|7|24|42135.36|0.02|0.07|R|F|1993-01-06|1992-12-25|1993-01-27|TAKE BACK RETURN|MAIL| foxes are. express | +19627|660933|35960|1|25|47347.50|0.00|0.08|R|F|1994-05-21|1994-04-10|1994-05-25|DELIVER IN PERSON|RAIL|he packages. accounts boost slyly ag| +19627|298973|23984|2|31|61130.76|0.03|0.08|R|F|1994-04-17|1994-04-21|1994-04-22|NONE|REG AIR|y about the even foxes. furiously pendin| +19627|828322|15871|3|8|10002.24|0.08|0.05|R|F|1994-05-01|1994-04-29|1994-05-06|COLLECT COD|RAIL|uests maintain amo| +19627|598318|23341|4|45|63733.05|0.10|0.08|R|F|1994-05-26|1994-04-18|1994-06-01|NONE|AIR|. final, regular ideas ha| +19627|929917|42436|5|10|19468.70|0.03|0.07|A|F|1994-04-04|1994-04-22|1994-04-08|COLLECT COD|REG AIR|y pending acc| +19628|965042|27562|1|25|27675.00|0.01|0.02|A|F|1993-03-23|1993-06-04|1993-04-11|DELIVER IN PERSON|RAIL|theodolites use| +19628|454691|17201|2|19|31267.73|0.00|0.06|A|F|1993-03-27|1993-06-01|1993-04-08|COLLECT COD|SHIP|oxes wake abo| +19628|979640|17198|3|49|84260.40|0.02|0.00|A|F|1993-05-01|1993-04-30|1993-05-29|DELIVER IN PERSON|MAIL|lithely ironic dependencies kindle. c| +19628|803775|16292|4|11|18466.03|0.04|0.01|R|F|1993-04-07|1993-05-21|1993-04-09|COLLECT COD|FOB|ep. silently | +19628|46274|33775|5|12|14643.24|0.01|0.08|R|F|1993-06-30|1993-06-07|1993-07-06|COLLECT COD|AIR|ven packages haggle furi| +19628|717427|17428|6|43|62108.77|0.07|0.02|A|F|1993-05-28|1993-05-10|1993-06-18|NONE|TRUCK|fully pending | +19628|791446|28992|7|16|24598.56|0.05|0.05|A|F|1993-04-22|1993-06-06|1993-05-06|COLLECT COD|SHIP|yly. platelets above the ev| +19629|826078|1111|1|10|10040.30|0.00|0.04|A|F|1994-10-16|1994-12-07|1994-10-23|NONE|MAIL|mptotes are| +19629|892421|42422|2|3|4240.14|0.03|0.03|R|F|1994-10-01|1994-10-23|1994-10-04|DELIVER IN PERSON|SHIP|ly pending accounts across the | +19629|911125|11126|3|48|54531.84|0.01|0.08|A|F|1994-10-14|1994-11-26|1994-10-29|DELIVER IN PERSON|MAIL|kly silent foxes| +19630|333553|33554|1|40|63461.60|0.02|0.03|R|F|1994-08-20|1994-09-21|1994-09-10|COLLECT COD|RAIL|es use slyly furiously unusu| +19630|13118|38119|2|23|23715.53|0.07|0.06|A|F|1994-09-02|1994-10-07|1994-09-20|COLLECT COD|AIR|uests wake about the quickly special | +19630|463641|38660|3|6|9627.72|0.02|0.05|R|F|1994-10-31|1994-09-15|1994-11-29|DELIVER IN PERSON|FOB|s doze fluffily | +19631|327881|2894|1|36|68719.32|0.06|0.04|R|F|1995-02-09|1995-01-22|1995-02-23|TAKE BACK RETURN|RAIL|furiously. slyly expres| +19631|695227|32767|2|13|15888.47|0.00|0.06|A|F|1994-12-29|1995-03-07|1995-01-08|COLLECT COD|RAIL|iously slyly | +19631|665738|28252|3|32|54518.40|0.08|0.06|A|F|1995-01-30|1995-02-22|1995-02-25|TAKE BACK RETURN|FOB|usual packages. even i| +19631|58197|8198|4|3|3465.57|0.09|0.04|R|F|1995-04-20|1995-03-06|1995-05-16|TAKE BACK RETURN|REG AIR|jole silently. final in| +19656|700927|38470|1|35|67476.15|0.03|0.01|N|O|1997-04-28|1997-04-16|1997-05-18|COLLECT COD|MAIL|lar ideas. blithely specia| +19656|466822|4350|2|16|28620.80|0.06|0.08|N|O|1997-05-16|1997-05-06|1997-06-14|NONE|RAIL|ter the fur| +19656|867602|42637|3|18|28252.08|0.09|0.03|N|O|1997-03-25|1997-04-27|1997-03-30|COLLECT COD|FOB|e ironic ideas. regular ac| +19656|784724|22270|4|35|63304.15|0.03|0.06|N|O|1997-03-25|1997-05-04|1997-04-09|TAKE BACK RETURN|AIR|l, special deposits. blithely u| +19657|581337|31338|1|19|26947.89|0.01|0.05|R|F|1995-01-24|1995-02-22|1995-02-17|COLLECT COD|TRUCK|ic theodolites wak| +19657|524762|12293|2|49|87550.26|0.09|0.01|R|F|1995-03-07|1995-02-26|1995-03-23|DELIVER IN PERSON|TRUCK|arefully bold warthogs slee| +19657|663660|1200|3|5|8118.15|0.06|0.07|R|F|1995-03-11|1995-01-07|1995-03-15|NONE|MAIL|cuses cajo| +19657|126740|39243|4|37|65369.38|0.09|0.00|R|F|1994-12-29|1995-01-05|1995-01-05|COLLECT COD|AIR| final excuses w| +19657|107524|32529|5|6|9189.12|0.01|0.03|A|F|1995-04-01|1995-01-30|1995-04-29|COLLECT COD|AIR|ncies cajole blithely. excuses | +19657|143145|43146|6|16|19010.24|0.08|0.06|R|F|1995-03-11|1995-02-26|1995-03-20|TAKE BACK RETURN|MAIL|ckly even ideas | +19657|837752|12785|7|4|6758.84|0.06|0.00|R|F|1995-01-10|1995-01-27|1995-02-04|NONE|REG AIR|al deposits b| +19658|91883|4385|1|33|61871.04|0.01|0.01|A|F|1994-10-28|1994-10-14|1994-11-27|DELIVER IN PERSON|REG AIR|ilent, bold frays are carefully s| +19659|929637|42156|1|21|34998.39|0.01|0.05|R|F|1994-07-23|1994-05-24|1994-08-17|DELIVER IN PERSON|FOB|m the fluffily bold requests. furiously| +19660|867622|17623|1|49|77889.42|0.03|0.08|N|O|1996-12-04|1996-11-17|1996-12-15|NONE|TRUCK|ccounts. carefully express accounts| +19660|114363|26866|2|38|52339.68|0.04|0.02|N|O|1997-01-04|1996-12-01|1997-01-23|COLLECT COD|TRUCK|carefully among the regular p| +19661|135850|48353|1|31|58461.35|0.00|0.02|R|F|1994-07-12|1994-09-02|1994-08-08|TAKE BACK RETURN|RAIL|uriously ironic r| +19661|229750|17263|2|3|5039.22|0.10|0.07|A|F|1994-10-13|1994-08-29|1994-11-12|DELIVER IN PERSON|FOB|out the final, ironic exc| +19661|392841|5349|3|15|29007.45|0.02|0.03|R|F|1994-09-21|1994-09-04|1994-09-29|NONE|SHIP|ely ironic requests. furiously iron| +19661|473230|23231|4|28|33689.88|0.06|0.05|R|F|1994-09-25|1994-08-22|1994-10-17|NONE|REG AIR|express ideas. furiously bold accounts n| +19661|561754|11755|5|13|23604.49|0.10|0.00|R|F|1994-09-14|1994-08-20|1994-10-01|COLLECT COD|MAIL|ress account| +19661|390058|27580|6|14|16072.56|0.10|0.06|R|F|1994-10-23|1994-09-20|1994-11-10|DELIVER IN PERSON|TRUCK|ld, special courts wake blithely according | +19662|633642|8667|1|31|48843.91|0.07|0.06|N|O|1996-11-22|1996-09-19|1996-11-25|TAKE BACK RETURN|TRUCK|ag final, unusual instructions. furiously e| +19663|950785|786|1|33|60579.42|0.04|0.06|A|F|1994-07-25|1994-09-29|1994-08-05|DELIVER IN PERSON|AIR| haggle blithely ironic, thin asymptotes. t| +19663|830533|43050|2|18|26342.82|0.07|0.07|A|F|1994-08-31|1994-08-31|1994-09-11|NONE|FOB|re even theodolites. pending, pending asym| +19663|752731|40277|3|24|42808.80|0.03|0.06|A|F|1994-08-21|1994-10-13|1994-09-02|DELIVER IN PERSON|RAIL|ests unwind slyl| +19663|138467|38468|4|41|61723.86|0.03|0.08|R|F|1994-09-30|1994-10-10|1994-10-25|COLLECT COD|FOB|ts. final deposits ac| +19688|501436|1437|1|17|24435.97|0.07|0.00|A|F|1994-10-05|1994-10-31|1994-10-16|TAKE BACK RETURN|SHIP|lithely fin| +19688|626846|26847|2|34|60275.54|0.10|0.02|R|F|1994-10-30|1994-12-24|1994-11-09|NONE|FOB|s use furiously across the carefu| +19688|392159|42160|3|25|31278.50|0.02|0.04|R|F|1995-01-27|1994-12-25|1995-01-31|NONE|MAIL|endencies cajole quickly| +19688|7669|45170|4|18|28379.88|0.05|0.02|R|F|1994-11-04|1994-12-12|1994-11-13|DELIVER IN PERSON|FOB|ng requests believe finally above the regu| +19688|885964|48482|5|13|25348.96|0.05|0.06|R|F|1994-10-31|1994-12-19|1994-11-28|NONE|AIR|nts wake furiously regular, regular deposi| +19688|393491|18506|6|42|66548.16|0.03|0.04|R|F|1994-11-14|1994-11-03|1994-12-01|TAKE BACK RETURN|MAIL|ross the pendin| +19688|387602|110|7|35|59135.65|0.00|0.04|R|F|1995-01-25|1994-11-16|1995-01-26|COLLECT COD|RAIL|fily bold, unusu| +19689|425738|755|1|13|21628.23|0.01|0.02|R|F|1994-04-07|1994-03-19|1994-04-20|TAKE BACK RETURN|RAIL| furiously| +19689|370600|8122|2|3|5011.77|0.09|0.05|A|F|1994-04-06|1994-02-27|1994-05-04|DELIVER IN PERSON|RAIL|riously. fluffily final packa| +19689|665595|28109|3|1|1560.56|0.02|0.05|R|F|1994-02-15|1994-02-21|1994-02-22|DELIVER IN PERSON|TRUCK|as. furiously b| +19690|640453|40454|1|31|43196.02|0.01|0.06|N|O|1997-03-21|1997-03-13|1997-04-07|NONE|RAIL|onic requests wake | +19690|77166|14670|2|38|43440.08|0.07|0.08|N|O|1997-03-23|1997-03-20|1997-04-12|NONE|MAIL|ly final deposit| +19690|921957|46994|3|12|23746.92|0.05|0.01|N|O|1997-05-16|1997-03-29|1997-05-30|COLLECT COD|MAIL|ithely ironic accounts believe a| +19690|324281|36788|4|41|53516.07|0.01|0.07|N|O|1997-02-08|1997-03-29|1997-02-20|NONE|FOB|hinder slyly express, expres| +19690|187468|12475|5|4|6221.84|0.08|0.08|N|O|1997-04-12|1997-04-05|1997-04-17|COLLECT COD|AIR| should sleep carefull| +19691|23821|36322|1|25|43620.50|0.10|0.05|N|O|1996-01-30|1995-12-09|1996-02-28|TAKE BACK RETURN|SHIP|nic pinto beans sleep. bold, spe| +19691|350461|12969|2|8|12091.60|0.10|0.04|N|O|1996-01-12|1995-11-21|1996-02-08|DELIVER IN PERSON|REG AIR|heodolites affix. ironically silent | +19691|196952|21959|3|6|12293.70|0.08|0.04|N|O|1995-12-06|1995-12-09|1995-12-14|NONE|RAIL|quickly final i| +19691|165015|15016|4|33|35640.33|0.10|0.08|N|O|1996-01-14|1995-11-04|1996-01-20|COLLECT COD|SHIP|, brave requests| +19691|404969|29986|5|41|76831.54|0.04|0.07|N|O|1996-01-02|1995-12-13|1996-01-04|DELIVER IN PERSON|SHIP|equests-- silent instructions across th| +19692|508933|21444|1|29|56315.39|0.02|0.08|A|F|1993-03-09|1993-02-14|1993-03-29|NONE|SHIP|y. quickly final deposits cajole furi| +19692|633324|20861|2|1|1257.29|0.10|0.06|A|F|1993-01-19|1993-02-07|1993-02-07|COLLECT COD|MAIL|ly. slyly even theodolites detect f| +19692|271098|21099|3|43|45970.44|0.08|0.04|A|F|1993-03-17|1993-02-21|1993-04-10|NONE|SHIP|usly final deposits| +19692|329524|17043|4|1|1553.51|0.04|0.08|A|F|1993-03-08|1993-03-23|1993-03-25|NONE|RAIL|t, pending theodolites | +19692|296514|34030|5|36|54378.00|0.01|0.04|A|F|1993-03-23|1993-02-14|1993-04-20|TAKE BACK RETURN|TRUCK|uests. special pint| +19692|509334|46865|6|39|52389.09|0.08|0.02|R|F|1993-03-31|1993-02-16|1993-04-11|COLLECT COD|RAIL|ully among t| +19693|366811|41826|1|46|86378.80|0.04|0.06|A|F|1992-11-28|1992-09-27|1992-12-15|COLLECT COD|FOB|ainst the foxes wake carefull| +19693|991765|41766|2|46|85409.12|0.06|0.06|A|F|1992-10-20|1992-10-30|1992-10-23|TAKE BACK RETURN|REG AIR|quickly along the blith| +19694|159256|34263|1|33|43403.25|0.01|0.00|A|F|1995-04-18|1995-04-26|1995-05-04|NONE|RAIL| blithely ironic foxes are slyly alon| +19694|606407|6408|2|15|19700.55|0.04|0.08|N|F|1995-06-16|1995-04-07|1995-07-15|DELIVER IN PERSON|AIR|e of the ironic | +19694|870601|20602|3|10|15715.60|0.03|0.05|R|F|1995-04-09|1995-04-19|1995-04-24|DELIVER IN PERSON|TRUCK|le pinto beans haggle fu| +19694|181823|19333|4|1|1904.82|0.08|0.00|R|F|1995-03-11|1995-04-25|1995-04-07|DELIVER IN PERSON|SHIP|atterns. q| +19694|886920|24472|5|12|22882.56|0.08|0.08|R|F|1995-04-13|1995-04-09|1995-04-21|NONE|SHIP|es. requests integrate blithely alongsi| +19695|331627|19146|1|32|53075.52|0.07|0.05|A|F|1992-10-28|1992-12-05|1992-10-29|DELIVER IN PERSON|SHIP|sly final acco| +19695|652325|39865|2|7|8941.03|0.00|0.07|A|F|1992-09-26|1992-10-19|1992-10-03|NONE|SHIP|among the foxes. ironic packages boost. ev| +19720|319929|7448|1|4|7795.64|0.03|0.05|N|O|1998-06-11|1998-07-04|1998-06-23|COLLECT COD|FOB|s. furious pa| +19720|30466|17967|2|3|4189.38|0.09|0.04|N|O|1998-05-02|1998-05-20|1998-05-09|TAKE BACK RETURN|AIR|the furiously unusual accounts. pe| +19720|35733|48234|3|4|6674.92|0.04|0.01|N|O|1998-06-02|1998-07-12|1998-06-25|TAKE BACK RETURN|TRUCK|nusual requests. c| +19720|549652|12163|4|37|62960.31|0.03|0.03|N|O|1998-06-22|1998-07-03|1998-06-29|COLLECT COD|REG AIR|regular pinto beans. iro| +19720|998366|10886|5|8|11714.56|0.08|0.04|N|O|1998-07-25|1998-07-15|1998-07-27|COLLECT COD|TRUCK|os. carefully furi| +19721|520861|33372|1|3|5645.52|0.04|0.04|R|F|1994-11-26|1994-12-16|1994-11-30|NONE|TRUCK|ay blithely according to th| +19721|106313|6314|2|34|44856.54|0.06|0.05|A|F|1994-10-25|1994-10-21|1994-11-10|COLLECT COD|RAIL|ay furiously deposits. foxes | +19721|790492|3008|3|15|23736.90|0.07|0.03|R|F|1994-12-04|1994-11-16|1994-12-20|COLLECT COD|AIR|ts wake carefully. f| +19721|794317|31863|4|32|45160.96|0.06|0.01|R|F|1994-09-27|1994-11-19|1994-10-11|NONE|REG AIR|lites after the slyly bold packag| +19721|72593|22594|5|8|12524.72|0.01|0.04|A|F|1994-11-07|1994-12-17|1994-11-21|DELIVER IN PERSON|FOB|s after the slyly bold asymp| +19722|457224|44752|1|22|25986.40|0.05|0.04|R|F|1995-03-10|1995-03-13|1995-03-15|COLLECT COD|FOB|onic deposits. pending ac| +19722|556012|6013|2|27|28835.73|0.04|0.01|R|F|1995-02-28|1995-02-19|1995-03-16|NONE|RAIL|ions believe. furiously furious ideas are | +19722|892733|42734|3|39|67301.91|0.01|0.08|R|F|1995-05-09|1995-02-16|1995-05-22|NONE|TRUCK|ke above the| +19722|160443|22947|4|7|10524.08|0.10|0.05|A|F|1995-04-06|1995-02-18|1995-04-27|TAKE BACK RETURN|MAIL|ntegrate carefu| +19723|155893|30900|1|28|54568.92|0.09|0.05|A|F|1992-04-01|1992-05-03|1992-04-30|DELIVER IN PERSON|MAIL|slyly. special pinto b| +19723|76925|1928|2|30|57057.60|0.09|0.08|A|F|1992-07-02|1992-06-02|1992-07-11|NONE|SHIP|ully even packages; even the| +19723|872194|47229|3|9|10495.35|0.10|0.00|R|F|1992-04-06|1992-06-16|1992-04-08|TAKE BACK RETURN|TRUCK|al, even requests | +19723|964269|39308|4|16|21331.52|0.07|0.01|R|F|1992-05-04|1992-06-06|1992-05-31|TAKE BACK RETURN|REG AIR|ironic packages detect above | +19724|373896|11418|1|10|19698.80|0.07|0.00|N|O|1997-09-13|1997-10-08|1997-10-01|TAKE BACK RETURN|SHIP|silent packages. carefully s| +19724|66757|4261|2|9|15513.75|0.10|0.07|N|O|1997-11-02|1997-09-05|1997-11-21|TAKE BACK RETURN|TRUCK|heodolites above the quickly regular| +19724|970344|32864|3|15|21214.50|0.00|0.01|N|O|1997-07-29|1997-09-18|1997-08-27|TAKE BACK RETURN|SHIP|ymptotes. quickly ironic foxes w| +19724|560519|10520|4|27|42646.23|0.07|0.00|N|O|1997-10-31|1997-09-18|1997-11-07|TAKE BACK RETURN|RAIL|final requests. regu| +19725|659622|34649|1|42|66426.78|0.05|0.07|N|O|1998-08-02|1998-08-10|1998-09-01|NONE|REG AIR|ix near the s| +19725|260160|10161|2|35|39205.25|0.04|0.07|N|O|1998-06-28|1998-07-10|1998-07-12|COLLECT COD|FOB|al accounts nod. furiously| +19725|494582|44583|3|20|31531.20|0.03|0.03|N|O|1998-07-31|1998-06-27|1998-08-25|DELIVER IN PERSON|TRUCK|furiously sly| +19725|434782|34783|4|27|46352.52|0.09|0.01|N|O|1998-06-23|1998-06-17|1998-07-13|TAKE BACK RETURN|TRUCK|ackages maintain sometimes as| +19725|376574|26575|5|47|77576.32|0.09|0.02|N|O|1998-06-18|1998-08-01|1998-06-30|COLLECT COD|FOB|he carefully regular instruc| +19726|784165|34166|1|15|18736.95|0.04|0.06|R|F|1994-05-21|1994-05-12|1994-05-23|TAKE BACK RETURN|AIR|g against the blithel| +19726|456796|44324|2|41|71863.57|0.08|0.02|R|F|1994-05-08|1994-04-18|1994-05-10|TAKE BACK RETURN|TRUCK|ress accounts affix furiously.| +19726|358993|21501|3|42|86183.16|0.06|0.05|R|F|1994-04-08|1994-05-21|1994-04-11|COLLECT COD|AIR|ely. slyly bold pinto beans haggle fluffi| +19726|584286|21820|4|24|32886.24|0.07|0.06|A|F|1994-06-24|1994-05-16|1994-07-04|TAKE BACK RETURN|AIR|ong the deposits. furiously pending | +19726|84627|22131|5|4|6446.48|0.00|0.07|R|F|1994-04-08|1994-05-08|1994-05-02|TAKE BACK RETURN|REG AIR| sleep even, unusual pinto beans; unus| +19726|315591|40604|6|15|24098.70|0.04|0.08|R|F|1994-03-23|1994-05-20|1994-04-12|COLLECT COD|AIR|ing to the furiously b| +19726|136719|11724|7|33|57938.43|0.03|0.04|A|F|1994-04-16|1994-04-19|1994-05-01|DELIVER IN PERSON|MAIL|uffily among the fluffily regula| +19727|834569|34570|1|8|12028.16|0.04|0.08|N|O|1998-02-01|1997-12-01|1998-02-13|DELIVER IN PERSON|REG AIR|s. packages wake. bold platelets int| +19727|585446|35447|2|6|9188.52|0.01|0.03|N|O|1997-11-19|1997-12-16|1997-12-02|COLLECT COD|REG AIR|totes. unusual requests along the quick| +19727|587399|49911|3|37|54995.69|0.03|0.03|N|O|1998-01-09|1998-01-20|1998-02-01|DELIVER IN PERSON|SHIP|bout the theodolites. requests hag| +19752|771545|46576|1|14|22631.14|0.02|0.00|N|O|1997-09-01|1997-11-14|1997-09-25|TAKE BACK RETURN|MAIL|quick ideas. carefull| +19752|345065|20078|2|16|17760.80|0.07|0.01|N|O|1997-09-13|1997-10-18|1997-09-18|NONE|REG AIR|fluffily final requests. s| +19752|495633|33161|3|26|42343.86|0.07|0.06|N|O|1997-12-18|1997-10-18|1998-01-06|COLLECT COD|RAIL|as. carefully id| +19752|88356|25860|4|48|64528.80|0.08|0.07|N|O|1997-11-21|1997-11-12|1997-11-28|NONE|TRUCK| haggle against the somas| +19752|983013|33014|5|13|14247.61|0.04|0.05|N|O|1997-10-11|1997-10-28|1997-11-06|NONE|FOB|regular asymptotes wake carefully a| +19753|801536|39085|1|6|8624.94|0.02|0.02|R|F|1994-05-06|1994-03-28|1994-05-26|NONE|REG AIR|he carefully final deposits caj| +19753|402314|27331|2|4|4865.16|0.08|0.05|A|F|1994-03-13|1994-03-27|1994-03-24|NONE|AIR|, ironic packages detec| +19753|688691|26231|3|35|58788.10|0.05|0.03|A|F|1994-03-12|1994-05-11|1994-03-28|NONE|MAIL| the regular, special asymptotes lose furio| +19754|932473|7510|1|4|6021.72|0.07|0.01|N|O|1998-05-30|1998-05-09|1998-06-29|DELIVER IN PERSON|FOB|egular foxes sleep furiously among the ca| +19754|61301|36304|2|26|32819.80|0.05|0.03|N|O|1998-06-18|1998-05-24|1998-06-19|NONE|SHIP| bold deposit| +19754|272227|22228|3|22|26382.62|0.08|0.08|N|O|1998-06-28|1998-05-23|1998-07-23|DELIVER IN PERSON|TRUCK|ns doze slyly over| +19754|305010|5011|4|15|15225.00|0.02|0.03|N|O|1998-04-19|1998-04-26|1998-05-14|DELIVER IN PERSON|FOB|usly toward the b| +19755|434417|34418|1|50|67569.50|0.09|0.08|R|F|1992-10-29|1992-08-20|1992-11-13|NONE|RAIL|ts: final accounts haggle ironic instr| +19755|238650|38651|2|21|33361.44|0.01|0.01|A|F|1992-10-25|1992-09-21|1992-11-04|NONE|MAIL|ts. slyly unusual dependencies affix e| +19755|986376|11415|3|11|16085.63|0.01|0.04|A|F|1992-10-09|1992-08-17|1992-10-10|COLLECT COD|RAIL|eposits. carefully exp| +19755|17310|29811|4|37|45410.47|0.08|0.01|R|F|1992-07-25|1992-08-22|1992-08-23|COLLECT COD|FOB| eat furiously unusual, i| +19755|914403|39440|5|45|63781.20|0.09|0.04|A|F|1992-07-25|1992-08-14|1992-08-16|TAKE BACK RETURN|RAIL|uickly blithely final accounts. regular, s| +19755|357648|45170|6|29|49463.27|0.04|0.08|R|F|1992-09-06|1992-08-21|1992-09-20|NONE|REG AIR|st furiously-- | +19755|989605|27163|7|29|49142.24|0.00|0.05|R|F|1992-07-23|1992-09-21|1992-08-21|DELIVER IN PERSON|TRUCK|e blithely above the b| +19756|279484|41990|1|48|70246.56|0.05|0.08|N|O|1995-10-19|1995-11-05|1995-10-22|COLLECT COD|AIR|s boost. slyly regular deposits play | +19756|284046|21562|2|31|31930.93|0.08|0.01|N|O|1995-12-24|1995-11-22|1996-01-14|NONE|FOB|usly regular decoys. quickly regular requ| +19757|814990|14991|1|20|38099.00|0.00|0.03|A|F|1993-11-29|1993-11-03|1993-12-10|TAKE BACK RETURN|TRUCK|ld silently along the furiously f| +19758|703055|15570|1|27|28566.54|0.05|0.06|R|F|1993-06-29|1993-07-15|1993-07-02|NONE|MAIL|above the regular,| +19758|242071|17080|2|33|33430.98|0.08|0.08|R|F|1993-07-15|1993-07-29|1993-07-30|TAKE BACK RETURN|AIR|quickly carefully pending platelets. busy | +19758|487126|49636|3|29|32279.90|0.02|0.08|R|F|1993-08-16|1993-07-20|1993-09-12|COLLECT COD|FOB|he unusual, bold foxes. car| +19758|118300|18301|4|8|10546.40|0.05|0.03|R|F|1993-07-08|1993-08-26|1993-08-04|NONE|MAIL|l accounts. fu| +19758|263652|26158|5|31|50084.84|0.06|0.07|A|F|1993-07-26|1993-08-11|1993-08-12|COLLECT COD|TRUCK|carefully special deposits. quiet, regular | +19758|185347|35348|6|19|27214.46|0.10|0.06|A|F|1993-06-04|1993-08-17|1993-06-22|DELIVER IN PERSON|MAIL|cajole blithely pending packa| +19758|119536|7043|7|26|40443.78|0.06|0.02|A|F|1993-06-25|1993-08-22|1993-07-03|DELIVER IN PERSON|TRUCK|counts! furiously | +19759|26274|13775|1|21|25205.67|0.03|0.07|R|F|1994-11-11|1994-12-22|1994-11-19|TAKE BACK RETURN|FOB|y even dugouts haggle c| +19759|572739|35251|2|49|88773.79|0.02|0.03|R|F|1994-11-17|1995-01-09|1994-12-17|DELIVER IN PERSON|TRUCK| to affix regularly alongside | +19784|254041|16547|1|42|41791.26|0.02|0.03|R|F|1993-04-01|1993-05-12|1993-04-19|DELIVER IN PERSON|FOB|uffily pending deposits. quickly special r| +19784|662406|37433|2|26|35577.62|0.01|0.08|A|F|1993-07-03|1993-05-02|1993-07-07|COLLECT COD|RAIL|ests are care| +19784|49576|12077|3|14|21357.98|0.10|0.03|R|F|1993-07-19|1993-05-06|1993-08-06|TAKE BACK RETURN|RAIL|foxes cajole blithely. fluffil| +19784|216427|3940|4|25|33585.25|0.09|0.07|R|F|1993-07-05|1993-05-22|1993-08-01|TAKE BACK RETURN|SHIP|nal excuses. requests use. fluff| +19784|472363|34873|5|16|21365.44|0.06|0.00|A|F|1993-06-30|1993-05-26|1993-07-05|NONE|REG AIR|fter the depths wake furiou| +19785|164743|14744|1|27|48808.98|0.10|0.03|N|O|1996-08-22|1996-08-19|1996-08-25|DELIVER IN PERSON|FOB|s. fluffily unusual accounts use| +19785|823170|35687|2|4|4372.52|0.04|0.08|N|O|1996-08-23|1996-07-29|1996-09-18|TAKE BACK RETURN|RAIL|bout the slyly pending ideas. ironic reque| +19785|3792|16293|3|13|22045.27|0.10|0.01|N|O|1996-07-20|1996-07-12|1996-08-06|COLLECT COD|MAIL|ress grouches are ca| +19785|729131|4160|4|11|12761.10|0.02|0.08|N|O|1996-06-15|1996-08-02|1996-06-26|COLLECT COD|AIR|lets against the slyly dar| +19786|952809|15329|1|7|13032.32|0.00|0.07|N|O|1995-10-21|1995-11-23|1995-10-30|DELIVER IN PERSON|REG AIR|even instructions across the braids brea| +19786|846453|34002|2|36|50378.76|0.05|0.06|N|O|1996-01-26|1995-12-19|1996-01-31|NONE|RAIL|kages-- blithely u| +19786|335169|47676|3|42|50574.30|0.00|0.06|N|O|1996-01-05|1995-12-11|1996-01-21|DELIVER IN PERSON|AIR|ss the furiously unusual requests| +19786|173640|36144|4|26|44554.64|0.10|0.08|N|O|1996-01-23|1995-12-09|1996-02-14|NONE|TRUCK|fluffily. blithely regular requ| +19786|362084|37099|5|22|25213.54|0.08|0.02|N|O|1995-12-02|1995-11-09|1995-12-28|COLLECT COD|FOB|nts. ironic, ironic accou| +19787|551871|26894|1|19|36534.15|0.07|0.04|R|F|1992-12-18|1993-01-05|1993-01-08|COLLECT COD|REG AIR| carefully special accounts. furio| +19787|280795|43301|2|11|19533.58|0.07|0.07|A|F|1993-02-22|1992-12-20|1993-03-23|COLLECT COD|TRUCK|al theodolites s| +19788|950310|37868|1|22|29925.94|0.02|0.04|N|O|1996-12-01|1996-09-17|1996-12-02|DELIVER IN PERSON|AIR|e furiously furiously even instructi| +19788|851150|38702|2|50|55055.50|0.03|0.06|N|O|1996-12-15|1996-10-05|1997-01-10|NONE|REG AIR|ounts: express requests| +19788|269292|31798|3|7|8828.96|0.06|0.04|N|O|1996-09-30|1996-10-16|1996-10-16|TAKE BACK RETURN|TRUCK|ress asymptotes cajole ironic req| +19788|976618|14176|4|2|3389.14|0.06|0.02|N|O|1996-08-28|1996-11-05|1996-09-03|NONE|FOB|ouches. dolp| +19789|115930|40935|1|34|66161.62|0.09|0.06|A|F|1994-03-10|1994-02-11|1994-03-24|COLLECT COD|AIR|dolites engage final instructions. final d| +19789|425898|13423|2|28|51068.36|0.08|0.08|R|F|1994-02-17|1994-02-01|1994-02-22|TAKE BACK RETURN|RAIL|tructions are slyly acr| +19789|62292|49796|3|7|8780.03|0.01|0.00|R|F|1994-03-31|1994-02-07|1994-04-01|COLLECT COD|SHIP| pearls. boldly special pack| +19789|930920|30921|4|18|35115.84|0.09|0.08|A|F|1994-01-05|1994-01-31|1994-01-27|COLLECT COD|SHIP|the quickly final packages; blith| +19789|959357|9358|5|46|65150.26|0.10|0.02|A|F|1994-04-07|1994-02-07|1994-04-10|COLLECT COD|SHIP|all are quickl| +19789|911932|36969|6|21|40821.69|0.00|0.08|R|F|1994-02-03|1994-01-25|1994-02-21|TAKE BACK RETURN|FOB|s boost abou| +19790|395878|45879|1|30|59215.80|0.10|0.03|N|O|1996-04-13|1996-03-28|1996-05-11|COLLECT COD|RAIL|ng requests. ironic deposits wake furiousl| +19791|397708|10216|1|40|72227.60|0.05|0.01|A|F|1994-07-18|1994-06-21|1994-07-24|DELIVER IN PERSON|RAIL|ng to the even foxes. caref| +19791|271506|21507|2|6|8864.94|0.01|0.08|R|F|1994-08-30|1994-06-20|1994-09-06|NONE|AIR|thely among the even accounts. even,| +19791|196756|46757|3|28|51877.00|0.02|0.07|R|F|1994-09-11|1994-07-18|1994-10-11|TAKE BACK RETURN|REG AIR|packages use| +19791|865645|15646|4|24|38654.40|0.07|0.05|A|F|1994-06-05|1994-07-29|1994-06-28|COLLECT COD|REG AIR|es. idle requests among the reg| +19816|291890|41891|1|36|67747.68|0.05|0.04|N|O|1997-07-06|1997-04-10|1997-07-26|NONE|REG AIR|e quickly even deposits nag fluffily| +19816|790185|27731|2|18|22952.70|0.07|0.03|N|O|1997-03-30|1997-06-04|1997-04-06|DELIVER IN PERSON|REG AIR| ironic, regular dependencies boost sly| +19816|625195|12732|3|42|47046.72|0.02|0.00|N|O|1997-04-10|1997-04-16|1997-04-30|TAKE BACK RETURN|TRUCK|tealthy accounts. furiously eve| +19817|487422|37423|1|19|26778.60|0.02|0.06|A|F|1992-04-19|1992-06-19|1992-04-22|DELIVER IN PERSON|AIR|y ironic the| +19817|99839|24842|2|12|22065.96|0.06|0.03|R|F|1992-04-01|1992-05-17|1992-04-28|NONE|REG AIR|ges along the slyly expres| +19817|986569|36570|3|21|34765.92|0.08|0.04|R|F|1992-06-10|1992-06-19|1992-07-10|DELIVER IN PERSON|TRUCK| ironic requests across the | +19817|262161|24667|4|11|12354.65|0.00|0.07|A|F|1992-04-12|1992-05-13|1992-04-17|TAKE BACK RETURN|TRUCK| blithely? blithely special pinto bea| +19817|139056|26563|5|10|10950.50|0.06|0.07|A|F|1992-06-15|1992-06-08|1992-07-09|COLLECT COD|AIR|final deposits. furiously bold requests| +19818|239952|14961|1|15|28379.10|0.03|0.07|N|O|1995-12-20|1995-12-30|1995-12-31|COLLECT COD|FOB|e slyly bold excuses.| +19818|857494|32529|2|48|69669.60|0.03|0.06|N|O|1996-03-16|1996-01-11|1996-04-11|COLLECT COD|TRUCK|le fluffily s| +19819|439932|27457|1|31|58029.21|0.01|0.08|A|F|1995-05-14|1995-05-06|1995-06-04|COLLECT COD|RAIL|ly at the stealthily regular deposits. bli| +19819|921364|21365|2|36|49871.52|0.05|0.03|R|F|1995-04-19|1995-06-13|1995-05-15|NONE|RAIL|ccounts are fluffily. furiously fin| +19819|353323|15831|3|28|38536.68|0.03|0.08|A|F|1995-06-07|1995-05-29|1995-06-14|NONE|FOB| dependencies. furiously| +19820|748937|11452|1|43|85393.70|0.00|0.02|R|F|1993-11-04|1993-12-19|1993-11-18|NONE|SHIP|sts. bold accounts | +19820|367958|17959|2|35|70907.90|0.04|0.08|R|F|1994-02-02|1994-01-10|1994-03-02|NONE|AIR|oss the ironic, express d| +19820|259566|47082|3|16|24408.80|0.01|0.02|R|F|1993-11-15|1994-01-20|1993-11-17|NONE|TRUCK|xes wake enticingly. bravely final request| +19820|518708|31219|4|48|82880.64|0.08|0.00|R|F|1994-01-16|1994-01-17|1994-01-23|TAKE BACK RETURN|RAIL|s maintain | +19820|924663|12218|5|15|25314.30|0.01|0.03|R|F|1994-01-13|1993-12-05|1994-02-11|TAKE BACK RETURN|REG AIR|beans use. regul| +19820|808244|20761|6|4|4608.80|0.00|0.01|R|F|1993-11-15|1993-12-02|1993-11-16|TAKE BACK RETURN|TRUCK|the carefully silent reques| +19820|143175|18180|7|21|25581.57|0.03|0.07|R|F|1993-11-17|1994-01-30|1993-12-04|DELIVER IN PERSON|MAIL|ial theodolites solve quickly fluff| +19821|332105|32106|1|30|34112.70|0.09|0.03|N|O|1998-04-27|1998-04-13|1998-05-17|NONE|TRUCK|nstructions. furiously i| +19822|577479|27480|1|37|57588.65|0.07|0.03|A|F|1994-04-01|1994-05-31|1994-04-19|NONE|SHIP|y final deposits around the re| +19822|687112|49626|2|34|37368.72|0.05|0.00|A|F|1994-05-12|1994-05-20|1994-06-06|NONE|RAIL|o the furiously special | +19822|279335|16851|3|9|11828.88|0.10|0.03|R|F|1994-04-18|1994-06-03|1994-05-15|TAKE BACK RETURN|AIR|ts are alongside o| +19822|767751|30267|4|9|16368.48|0.06|0.08|R|F|1994-04-09|1994-06-01|1994-05-02|TAKE BACK RETURN|RAIL|quickly furiously f| +19822|585802|10825|5|16|30204.48|0.07|0.08|R|F|1994-05-25|1994-06-14|1994-06-02|DELIVER IN PERSON|MAIL|uickly unusual asymptotes sleep bl| +19823|404319|16828|1|1|1223.29|0.10|0.01|N|O|1996-04-11|1996-04-28|1996-04-17|NONE|RAIL|c dependencies around the fluffil| +19823|380334|42842|2|27|38186.64|0.04|0.06|N|O|1996-05-27|1996-05-10|1996-06-04|COLLECT COD|AIR|hely express instructions cajol| +19848|865107|27625|1|46|49314.76|0.03|0.06|A|F|1994-11-25|1994-11-23|1994-12-13|DELIVER IN PERSON|TRUCK|ggle blithely alongside of the silent| +19848|845496|45497|2|9|12973.05|0.05|0.00|A|F|1994-11-14|1994-12-21|1994-12-05|TAKE BACK RETURN|AIR|ly-- slyly regular reque| +19849|302395|27408|1|6|8384.28|0.07|0.03|N|O|1997-09-04|1997-07-22|1997-10-03|DELIVER IN PERSON|SHIP| furiously un| +19849|337540|12553|2|36|56791.08|0.10|0.03|N|O|1997-08-13|1997-09-02|1997-09-09|COLLECT COD|AIR|egular ideas haggle furiously up the busily| +19849|23196|23197|3|15|16787.85|0.05|0.06|N|O|1997-08-20|1997-07-22|1997-09-18|COLLECT COD|SHIP|pending accounts. | +19849|844124|31673|4|16|17089.28|0.02|0.07|N|O|1997-08-24|1997-08-23|1997-08-30|COLLECT COD|FOB| asymptotes. slyly bold a| +19849|187091|24601|5|20|23561.80|0.05|0.01|N|O|1997-10-02|1997-08-18|1997-10-25|COLLECT COD|SHIP|uffily ironic| +19849|423552|23553|6|33|48692.49|0.01|0.08|N|O|1997-10-01|1997-07-11|1997-10-07|COLLECT COD|FOB|uriously bold requests. slyly| +19850|645658|8171|1|28|44901.36|0.02|0.05|A|F|1992-11-18|1992-10-09|1992-11-28|DELIVER IN PERSON|FOB|pecial requests nag| +19850|565925|15926|2|50|99545.00|0.10|0.01|R|F|1992-12-28|1992-10-30|1992-12-31|DELIVER IN PERSON|TRUCK|accounts! blit| +19850|498878|23897|3|16|30029.60|0.00|0.03|R|F|1992-11-04|1992-11-03|1992-11-24|TAKE BACK RETURN|SHIP|lites. quickly even platelets boost| +19850|629188|29189|4|41|45803.15|0.04|0.06|R|F|1992-11-27|1992-10-14|1992-12-04|DELIVER IN PERSON|RAIL| packages among the fluffily si| +19850|755603|30634|5|6|9951.42|0.10|0.06|A|F|1992-11-24|1992-12-03|1992-12-01|COLLECT COD|TRUCK|counts wake. accounts are furiously| +19850|414612|39629|6|30|45797.70|0.05|0.03|R|F|1992-12-27|1992-10-18|1993-01-22|NONE|TRUCK| instructions are carefully. | +19850|369634|19635|7|39|66441.18|0.08|0.00|R|F|1992-12-02|1992-11-28|1992-12-20|DELIVER IN PERSON|TRUCK|old courts. ironic deposits| +19851|427812|15337|1|21|36535.59|0.00|0.03|A|F|1993-07-19|1993-06-04|1993-08-12|NONE|AIR|old requests. carefully special package| +19852|314040|1559|1|32|33728.96|0.00|0.08|N|O|1998-05-20|1998-07-10|1998-05-31|DELIVER IN PERSON|AIR|nto beans--| +19852|68383|30885|2|6|8108.28|0.01|0.00|N|O|1998-08-19|1998-07-19|1998-08-25|NONE|MAIL|ainst the carefully regular requests.| +19852|297537|10043|3|22|33759.44|0.00|0.05|N|O|1998-06-09|1998-07-04|1998-06-18|DELIVER IN PERSON|AIR| cajole unusual idea| +19852|687698|212|4|34|57312.44|0.07|0.07|N|O|1998-09-01|1998-06-18|1998-09-21|DELIVER IN PERSON|FOB|ickly alongside of the carefu| +19852|133884|8889|5|16|30686.08|0.08|0.04|N|O|1998-07-20|1998-08-04|1998-08-18|TAKE BACK RETURN|AIR|thes are? carefully fina| +19852|179078|41582|6|20|23141.40|0.10|0.01|N|O|1998-05-30|1998-07-25|1998-06-01|NONE|AIR|ess accounts. carefull| +19852|760428|47974|7|15|22325.85|0.05|0.01|N|O|1998-06-17|1998-07-19|1998-07-04|COLLECT COD|REG AIR|usual dolphins ought to nag special, regu| +19853|509259|21770|1|42|53265.66|0.02|0.08|A|F|1993-12-16|1993-11-17|1993-12-21|DELIVER IN PERSON|AIR| even accounts. carefully silent depos| +19853|99793|49794|2|37|66333.23|0.10|0.02|A|F|1993-11-05|1993-10-23|1993-11-22|COLLECT COD|SHIP|riously after the furiously regu| +19853|206906|19411|3|48|87018.72|0.01|0.02|A|F|1993-10-03|1993-10-05|1993-10-26|COLLECT COD|AIR|ages are. accounts solve about the furiousl| +19853|467707|17708|4|30|50240.40|0.03|0.04|A|F|1993-12-19|1993-10-18|1994-01-18|DELIVER IN PERSON|AIR| express instructions nag| +19854|525810|13341|1|35|64252.65|0.10|0.01|N|O|1998-07-26|1998-08-18|1998-08-20|DELIVER IN PERSON|RAIL|c requests doubt fluffi| +19854|272827|22828|2|34|61193.54|0.10|0.03|N|O|1998-09-21|1998-08-10|1998-10-10|NONE|MAIL|eans. pinto beans hinder carefully acr| +19854|387768|12783|3|6|11134.50|0.10|0.02|N|O|1998-08-12|1998-09-15|1998-08-16|DELIVER IN PERSON|SHIP|y. enticing, ev| +19854|214751|27256|4|4|6662.96|0.03|0.04|N|O|1998-08-02|1998-08-21|1998-08-07|DELIVER IN PERSON|FOB|sts haggle fluffily| +19854|308320|33333|5|16|21252.96|0.07|0.07|N|O|1998-07-19|1998-08-08|1998-08-02|COLLECT COD|RAIL|g requests b| +19854|933818|21373|6|26|48146.02|0.10|0.04|N|O|1998-07-03|1998-09-04|1998-07-18|NONE|RAIL|es. furiously u| +19855|672152|34666|1|30|33723.60|0.06|0.01|A|F|1993-12-26|1993-11-27|1994-01-03|DELIVER IN PERSON|AIR|usly pinto beans. quickly quick platelets | +19855|847713|35262|2|5|8303.35|0.02|0.04|A|F|1994-01-27|1993-11-27|1994-02-08|DELIVER IN PERSON|FOB|uses against the carefu| +19855|505239|30260|3|43|53501.03|0.09|0.04|R|F|1993-11-12|1993-12-07|1993-11-14|TAKE BACK RETURN|RAIL|packages cajole blith| +19855|549820|37351|4|11|20567.80|0.07|0.06|R|F|1994-01-29|1993-11-16|1994-02-13|TAKE BACK RETURN|SHIP|pecial packages use blithely.| +19855|823646|11195|5|19|29822.40|0.08|0.01|A|F|1993-11-15|1993-12-23|1993-12-04|DELIVER IN PERSON|FOB|ts. final, even deposits grow al| +19880|925235|25236|1|49|61749.31|0.05|0.08|R|F|1992-12-01|1992-10-10|1992-12-28|NONE|RAIL|fully special pla| +19880|415182|15183|2|8|8777.28|0.05|0.04|A|F|1992-09-07|1992-10-01|1992-09-12|DELIVER IN PERSON|MAIL|ep after the | +19881|789687|2203|1|12|21319.80|0.09|0.00|A|F|1994-08-28|1994-06-23|1994-08-30|DELIVER IN PERSON|REG AIR|odolites. slowly regular | +19881|269247|19248|2|49|59595.27|0.07|0.05|R|F|1994-07-21|1994-06-26|1994-08-18|DELIVER IN PERSON|RAIL| special pinto beans wake | +19882|162624|37631|1|6|10119.72|0.04|0.08|R|F|1995-01-19|1995-03-26|1995-02-09|NONE|MAIL|y express theodolites sleep. slyly special| +19882|209769|22274|2|8|13430.00|0.10|0.07|R|F|1995-04-09|1995-03-27|1995-05-05|COLLECT COD|SHIP|l accounts print abov| +19882|585727|48239|3|10|18127.00|0.08|0.01|A|F|1995-04-24|1995-03-02|1995-05-23|TAKE BACK RETURN|REG AIR|refully blithely ironic ex| +19882|313618|38631|4|45|73422.00|0.10|0.00|R|F|1995-04-14|1995-03-01|1995-05-08|NONE|TRUCK| are. furiously even pack| +19882|973192|23193|5|45|56931.75|0.08|0.07|R|F|1995-02-01|1995-03-16|1995-02-27|COLLECT COD|RAIL|sts. even requests cajole furiou| +19882|427251|14776|6|5|5891.15|0.01|0.07|A|F|1995-03-05|1995-03-09|1995-03-10|DELIVER IN PERSON|AIR|uld have to are against the | +19882|792729|30275|7|45|81976.05|0.01|0.05|R|F|1995-01-25|1995-03-27|1995-01-27|COLLECT COD|SHIP|ggle slyly according to the furiously expre| +19883|390535|40536|1|20|32510.40|0.07|0.07|A|F|1992-09-29|1992-09-19|1992-10-07|DELIVER IN PERSON|RAIL|eans. furiously re| +19883|720821|45850|2|35|64462.65|0.01|0.08|R|F|1992-09-23|1992-09-09|1992-09-27|COLLECT COD|TRUCK|t furiously final, re| +19884|340958|28477|1|4|7995.76|0.09|0.01|N|O|1998-07-01|1998-09-04|1998-07-08|DELIVER IN PERSON|MAIL|olites: final deposits sleep abou| +19884|478607|41117|2|14|22198.12|0.04|0.04|N|O|1998-08-01|1998-08-21|1998-08-28|DELIVER IN PERSON|TRUCK|ole fluffil| +19884|946708|34263|3|47|82469.02|0.03|0.04|N|O|1998-09-08|1998-08-04|1998-09-13|NONE|REG AIR|uthless theodolites.| +19884|314708|14709|4|16|27563.04|0.02|0.07|N|O|1998-09-14|1998-08-09|1998-09-20|NONE|AIR|ymptotes. requests affix above the quickly| +19885|325156|169|1|21|24803.94|0.04|0.02|N|O|1997-07-16|1997-05-12|1997-07-30|NONE|MAIL| slyly regular ideas haggle carefu| +19885|890234|15269|2|44|53864.36|0.00|0.08|N|O|1997-07-26|1997-05-28|1997-08-12|NONE|FOB|usly. slyly regular packages haggle-- bol| +19886|74884|24885|1|28|52048.64|0.10|0.02|A|F|1994-08-23|1994-07-28|1994-09-10|DELIVER IN PERSON|FOB|ges. silent theodolites cajole qu| +19886|560507|35530|2|27|42321.96|0.05|0.04|A|F|1994-07-29|1994-07-12|1994-08-17|COLLECT COD|AIR| epitaphs above the furiously unu| +19886|437279|37280|3|27|32838.75|0.03|0.04|R|F|1994-07-17|1994-07-05|1994-08-15|NONE|FOB|. furiously f| +19886|341989|29508|4|25|50774.25|0.06|0.01|R|F|1994-06-25|1994-06-26|1994-07-19|COLLECT COD|MAIL|packages. bo| +19887|153231|28238|1|44|56506.12|0.08|0.02|R|F|1992-10-02|1992-09-13|1992-10-05|TAKE BACK RETURN|TRUCK|ic asymptotes cajole quickly above the blit| +19887|339880|14893|2|47|90233.89|0.06|0.07|A|F|1992-08-08|1992-08-12|1992-08-24|COLLECT COD|MAIL|y even packages. slyly| +19887|356837|6838|3|43|81434.26|0.07|0.03|R|F|1992-07-26|1992-09-10|1992-07-31|TAKE BACK RETURN|SHIP|cording to| +19887|355170|42692|4|42|51456.72|0.09|0.02|A|F|1992-08-31|1992-07-27|1992-09-09|TAKE BACK RETURN|REG AIR|endencies. ironic package| +19887|325693|706|5|39|67028.52|0.06|0.00|A|F|1992-08-02|1992-08-27|1992-08-12|DELIVER IN PERSON|REG AIR|oze quickly. platelets are furiously. regu| +19887|918170|30689|6|50|59406.50|0.05|0.00|A|F|1992-08-02|1992-07-20|1992-08-05|COLLECT COD|RAIL|as among the even theodolites grow d| +19912|220959|33464|1|40|75197.60|0.05|0.00|N|O|1998-02-11|1998-02-26|1998-03-06|NONE|SHIP|al accounts. quickly quick pinto be| +19912|645382|20407|2|10|13273.50|0.10|0.03|N|O|1998-04-13|1998-03-15|1998-05-03|TAKE BACK RETURN|AIR|final, even requests| +19912|931079|18634|3|50|55501.50|0.06|0.08|N|O|1998-02-26|1998-02-17|1998-03-24|TAKE BACK RETURN|AIR|ckages wake furiously| +19912|636899|49412|4|46|84449.56|0.05|0.01|N|O|1998-03-07|1998-02-14|1998-03-17|TAKE BACK RETURN|MAIL|yly final ideas. quickly regular re| +19913|768858|31374|1|15|28902.30|0.10|0.03|R|F|1994-12-29|1995-01-19|1995-01-24|TAKE BACK RETURN|MAIL| furiously final requests sleep | +19913|182688|20198|2|37|65515.16|0.08|0.03|R|F|1994-11-29|1995-02-11|1994-12-13|NONE|AIR|nt packages haggle into the unusu| +19913|427641|15166|3|15|23529.30|0.02|0.00|A|F|1994-12-27|1994-12-19|1995-01-23|NONE|TRUCK|ietly regular fo| +19913|352416|14924|4|28|41115.20|0.02|0.07|R|F|1995-02-12|1994-12-18|1995-02-18|DELIVER IN PERSON|REG AIR|n asymptotes after the u| +19914|961885|49443|1|19|36989.96|0.03|0.07|A|F|1994-04-16|1994-02-27|1994-04-21|TAKE BACK RETURN|MAIL|uctions. blithely even requests sleep caref| +19914|399037|24052|2|29|32944.58|0.05|0.01|A|F|1994-02-25|1994-01-27|1994-03-19|DELIVER IN PERSON|AIR|as. instructions according to the pac| +19914|606954|31979|3|43|80019.56|0.01|0.07|R|F|1994-01-07|1994-03-10|1994-01-26|NONE|AIR|er fluffily quickl| +19914|75742|25743|4|23|39508.02|0.07|0.01|R|F|1993-12-28|1994-02-11|1994-01-22|DELIVER IN PERSON|AIR|osits integrate blithely. ironic t| +19914|982103|44623|5|25|29626.50|0.04|0.07|R|F|1994-03-05|1994-02-08|1994-03-30|NONE|RAIL|usly around the bold acco| +19914|198726|48727|6|18|32844.96|0.02|0.08|R|F|1993-12-29|1994-02-09|1994-01-07|COLLECT COD|REG AIR|refully. slow, even foxes sleep| +19914|979960|42480|7|24|48958.08|0.02|0.04|A|F|1994-04-16|1994-02-15|1994-04-19|COLLECT COD|SHIP|pinto beans against the evenly even pinto | +19915|185790|48294|1|41|76907.39|0.09|0.00|N|O|1995-10-08|1995-08-06|1995-10-23|COLLECT COD|AIR| according to the blithely exp| +19915|557811|32834|2|9|16819.11|0.10|0.03|N|O|1995-07-25|1995-09-01|1995-08-20|DELIVER IN PERSON|REG AIR|e foxes are slyly ironic| +19915|118578|31081|3|48|76635.36|0.06|0.07|N|O|1995-07-10|1995-09-20|1995-07-14|COLLECT COD|SHIP|theodolites. blithely furious accounts| +19915|938217|736|4|8|10041.36|0.07|0.00|N|O|1995-09-25|1995-08-31|1995-10-11|COLLECT COD|RAIL|ls: quickly special deposits ha| +19915|601600|14113|5|16|24025.12|0.08|0.04|N|O|1995-08-03|1995-09-28|1995-08-24|TAKE BACK RETURN|FOB|ar, close packages wake quickly ir| +19915|88798|1300|6|18|32162.22|0.04|0.00|N|O|1995-09-13|1995-08-20|1995-10-04|NONE|AIR| pending forges cajole blithe| +19916|919369|31888|1|49|68027.68|0.03|0.08|N|O|1996-05-10|1996-07-04|1996-05-20|COLLECT COD|TRUCK|e the special, special instructions.| +19916|831066|43583|2|38|37886.76|0.08|0.06|N|O|1996-06-30|1996-06-08|1996-07-02|TAKE BACK RETURN|TRUCK|ses; quickly bold asymptotes | +19916|709705|34734|3|5|8573.35|0.03|0.03|N|O|1996-05-17|1996-06-22|1996-06-15|COLLECT COD|RAIL|e. doggedly regular hockey players thras| +19917|750780|38326|1|22|40276.50|0.06|0.03|A|F|1993-10-27|1993-09-19|1993-11-09|NONE|SHIP|ts. quickly final theodolites| +19917|355363|17871|2|8|11346.80|0.01|0.00|R|F|1993-09-04|1993-09-08|1993-09-15|TAKE BACK RETURN|TRUCK|ely even foxes haggl| +19917|584891|47403|3|36|71131.32|0.08|0.04|R|F|1993-08-21|1993-09-03|1993-09-09|COLLECT COD|AIR|its past the| +19917|251589|39105|4|1|1540.57|0.10|0.00|R|F|1993-10-12|1993-10-21|1993-10-19|COLLECT COD|RAIL| haggle fl| +19917|452346|27365|5|14|18176.48|0.06|0.01|A|F|1993-11-02|1993-09-18|1993-11-19|TAKE BACK RETURN|REG AIR|fully blithely special accounts. accounts | +19917|564597|14598|6|18|29908.26|0.02|0.06|A|F|1993-08-09|1993-10-05|1993-09-05|DELIVER IN PERSON|RAIL|requests. | +19917|168196|18197|7|32|40454.08|0.09|0.06|A|F|1993-10-17|1993-09-28|1993-11-12|DELIVER IN PERSON|SHIP|alongside of the furiously reg| +19918|856715|19233|1|23|38448.41|0.09|0.07|N|O|1997-09-13|1997-08-13|1997-09-24|NONE|TRUCK|ckly even instructions are slyly regular| +19918|802786|27819|2|43|72615.82|0.07|0.07|N|O|1997-09-17|1997-09-02|1997-10-13|TAKE BACK RETURN|REG AIR| pending i| +19918|421899|34408|3|23|41880.01|0.01|0.03|N|O|1997-09-05|1997-08-31|1997-09-16|NONE|SHIP|e final packages. ironic dolphins| +19918|856281|43833|4|49|60624.76|0.02|0.05|N|O|1997-10-31|1997-08-09|1997-11-29|COLLECT COD|TRUCK|lar theodolites. bold packages wake flu| +19919|974445|49484|1|6|9116.40|0.09|0.03|N|O|1996-07-06|1996-08-19|1996-07-31|COLLECT COD|REG AIR|sits lose about the exp| +19944|254662|42178|1|50|80832.50|0.06|0.06|N|O|1996-12-09|1997-01-26|1996-12-19|DELIVER IN PERSON|SHIP|inal dependencies use slyly sly| +19944|99973|37477|2|37|72999.89|0.08|0.02|N|O|1996-12-17|1997-01-24|1996-12-25|TAKE BACK RETURN|MAIL|s cajole fluffily against the special| +19944|236893|11902|3|13|23788.44|0.10|0.02|N|O|1997-02-24|1997-02-11|1997-03-07|COLLECT COD|REG AIR|lithely regular instru| +19944|453924|16434|4|26|48825.40|0.00|0.05|N|O|1996-12-30|1997-01-29|1997-01-19|NONE|RAIL|quickly regular theodoli| +19945|793756|31302|1|18|33294.96|0.09|0.05|R|F|1994-06-23|1994-06-30|1994-06-28|COLLECT COD|FOB|ges. carefully perman| +19945|643039|18064|2|42|41244.00|0.09|0.08|A|F|1994-06-22|1994-07-09|1994-07-20|COLLECT COD|SHIP|t the ideas. ideas bel| +19945|541769|29300|3|35|63375.90|0.02|0.08|R|F|1994-07-14|1994-07-17|1994-07-18|COLLECT COD|MAIL| are along the bold, regu| +19945|497567|47568|4|45|70404.30|0.02|0.03|A|F|1994-07-23|1994-07-21|1994-08-11|COLLECT COD|REG AIR|ove the even | +19946|736865|24408|1|21|39938.43|0.02|0.05|N|O|1997-04-19|1997-02-15|1997-05-10|DELIVER IN PERSON|RAIL|unts will have to eat slyly | +19946|474876|24877|2|41|75884.85|0.08|0.02|N|O|1997-01-28|1997-03-28|1997-02-08|TAKE BACK RETURN|FOB|nusual requests sublate sau| +19946|230709|43214|3|27|44271.63|0.01|0.01|N|O|1997-04-01|1997-03-19|1997-04-25|NONE|FOB| haggle blithely against the| +19946|509370|21881|4|48|66208.80|0.08|0.03|N|O|1997-03-21|1997-03-03|1997-04-12|TAKE BACK RETURN|MAIL|al platelets. | +19946|978841|41361|5|12|23037.60|0.01|0.06|N|O|1997-04-20|1997-02-23|1997-04-27|TAKE BACK RETURN|SHIP|s. furiously regula| +19946|377537|27538|6|30|48435.60|0.05|0.02|N|O|1997-01-17|1997-03-08|1997-01-18|COLLECT COD|MAIL|accounts. furiously final dugouts slee| +19947|964332|26852|1|4|5585.16|0.03|0.06|N|O|1997-12-07|1997-12-07|1997-12-27|TAKE BACK RETURN|AIR|. requests use quickly among| +19947|527680|15211|2|1|1707.66|0.03|0.05|N|O|1997-12-03|1998-01-16|1997-12-05|NONE|AIR|s. furiously ironic| +19947|704324|29353|3|35|46490.15|0.01|0.04|N|O|1997-11-27|1998-01-16|1997-12-21|TAKE BACK RETURN|TRUCK|detect according| +19947|561806|24318|4|1|1867.78|0.00|0.05|N|O|1997-11-11|1998-01-10|1997-12-10|DELIVER IN PERSON|FOB|ong the quickly regular asymptotes a| +19948|89109|26613|1|12|13177.20|0.05|0.04|R|F|1994-06-17|1994-05-26|1994-06-24|NONE|AIR|beans nag blithely. careful| +19949|96570|46571|1|45|70495.65|0.08|0.05|R|F|1993-08-28|1993-09-11|1993-09-11|TAKE BACK RETURN|SHIP| ideas. slyly pending T| +19949|47468|22469|2|32|45294.72|0.08|0.04|A|F|1993-09-08|1993-08-15|1993-09-21|TAKE BACK RETURN|RAIL|. bold dependencies are furiousl| +19949|794608|44609|3|33|56184.81|0.07|0.08|A|F|1993-10-06|1993-08-31|1993-10-27|TAKE BACK RETURN|AIR|the furious| +19949|967814|30334|4|50|94088.50|0.06|0.03|R|F|1993-07-23|1993-10-13|1993-07-30|TAKE BACK RETURN|SHIP|fluffily pending pinto beans. quickly r| +19950|742135|29678|1|19|22364.90|0.05|0.00|A|F|1995-02-04|1995-01-17|1995-02-12|NONE|MAIL|lyly even accounts. accounts use fluf| +19950|46679|21680|2|9|14631.03|0.08|0.00|R|F|1994-12-25|1995-01-30|1995-01-22|DELIVER IN PERSON|MAIL|ously unusual dinos breach| +19950|532904|7925|3|45|87159.60|0.05|0.04|R|F|1995-02-11|1994-12-31|1995-03-01|NONE|FOB|oxes. regular theo| +19950|501184|13695|4|20|23703.20|0.00|0.03|R|F|1994-12-05|1995-02-14|1994-12-16|DELIVER IN PERSON|SHIP|ly after the even req| +19950|386832|24354|5|10|19188.20|0.09|0.01|A|F|1995-03-14|1995-02-14|1995-03-20|COLLECT COD|AIR|ependencies haggle neve| +19950|480055|30056|6|47|48646.41|0.07|0.07|R|F|1995-02-10|1995-01-18|1995-02-17|NONE|REG AIR|ons above th| +19951|590493|28027|1|20|31669.40|0.07|0.00|A|F|1992-05-11|1992-04-18|1992-05-18|NONE|RAIL| against the regular, expre| +19951|414950|14951|2|27|50353.11|0.00|0.01|R|F|1992-05-24|1992-05-21|1992-06-07|TAKE BACK RETURN|FOB|sly theodolites. furiously regula| +19951|58817|46321|3|14|24861.34|0.04|0.07|A|F|1992-03-18|1992-04-12|1992-03-28|DELIVER IN PERSON|SHIP|regular foxes dazzle furiously regu| +19951|534458|46969|4|30|44772.90|0.00|0.03|A|F|1992-03-03|1992-05-19|1992-03-07|DELIVER IN PERSON|FOB|d platelets. accounts wake fur| +19976|121160|33663|1|36|42521.76|0.04|0.00|N|O|1998-06-29|1998-06-28|1998-07-06|NONE|SHIP|y ironic instructions are bravely c| +19976|319382|6901|2|34|47646.58|0.08|0.06|N|O|1998-05-28|1998-06-12|1998-06-09|COLLECT COD|MAIL|odolites w| +19976|852851|2852|3|43|77563.83|0.02|0.06|N|O|1998-07-25|1998-07-18|1998-08-03|DELIVER IN PERSON|REG AIR|tions. even| +19976|853853|41405|4|37|66851.97|0.10|0.01|N|O|1998-08-05|1998-06-25|1998-08-11|DELIVER IN PERSON|RAIL| dependencies. express asymptotes boost q| +19976|701764|14279|5|32|56503.36|0.06|0.02|N|O|1998-06-03|1998-06-15|1998-06-17|DELIVER IN PERSON|MAIL| even asymptotes. blithely regular plate| +19976|545216|7727|6|13|16395.47|0.01|0.06|N|O|1998-08-01|1998-07-10|1998-08-30|NONE|AIR|lyly even ideas sleep carefully blithely b| +19976|433964|21489|7|38|72121.72|0.03|0.05|N|O|1998-07-22|1998-06-28|1998-08-08|TAKE BACK RETURN|MAIL|unts cajole furiou| +19977|618107|30620|1|16|16401.12|0.03|0.00|N|O|1996-11-24|1997-01-21|1996-12-12|TAKE BACK RETURN|FOB|fully ironic accounts nod fluffily amo| +19977|510523|23034|2|30|46005.00|0.04|0.03|N|O|1997-02-09|1997-01-23|1997-02-20|TAKE BACK RETURN|REG AIR|s. regular patterns haggle c| +19977|359483|9484|3|50|77123.50|0.05|0.05|N|O|1996-12-03|1996-12-23|1996-12-16|COLLECT COD|SHIP|refully regular reque| +19977|822299|47332|4|8|9770.00|0.04|0.08|N|O|1997-02-19|1996-12-31|1997-03-10|NONE|RAIL|ithely. ironic dugouts along the| +19977|365813|40828|5|23|43212.40|0.06|0.07|N|O|1996-11-20|1997-01-09|1996-11-24|NONE|MAIL|refully bold instructions detect | +19978|30367|17868|1|38|49299.68|0.09|0.02|N|O|1996-12-03|1996-11-10|1996-12-17|TAKE BACK RETURN|FOB| carefully pending requests use blithely a| +19978|368098|30606|2|31|36148.48|0.08|0.07|N|O|1996-12-18|1996-11-30|1997-01-11|TAKE BACK RETURN|FOB|accounts cajole express| +19978|609293|9294|3|27|32461.02|0.01|0.04|N|O|1997-01-23|1996-12-10|1997-02-01|DELIVER IN PERSON|FOB|accounts impre| +19978|371918|46933|4|17|33828.30|0.04|0.05|N|O|1997-01-20|1996-11-25|1997-02-04|TAKE BACK RETURN|FOB|re slyly even theodolites. furiously| +19978|821757|9306|5|50|83935.50|0.05|0.05|N|O|1996-10-06|1996-11-22|1996-10-25|NONE|MAIL|hould have to boost toward the deposi| +19978|254651|17157|6|2|3211.28|0.07|0.00|N|O|1996-11-09|1996-11-05|1996-11-30|DELIVER IN PERSON|SHIP|ideas cajole sl| +19978|916398|3953|7|38|53745.30|0.03|0.07|N|O|1996-12-31|1996-11-15|1997-01-08|NONE|REG AIR|ely evenly | +19979|886534|24086|1|28|42573.72|0.08|0.07|N|O|1996-02-08|1996-02-02|1996-03-08|TAKE BACK RETURN|FOB|r deposits. even, r| +19979|975487|25488|2|22|34373.68|0.07|0.04|N|O|1996-03-05|1996-02-04|1996-03-10|COLLECT COD|FOB|the blithely sly packages. regular instru| +19979|995457|7977|3|50|77620.50|0.02|0.00|N|O|1996-01-24|1996-03-13|1996-02-02|TAKE BACK RETURN|FOB|ithely even accounts sleep above the car| +19979|645018|7531|4|15|14444.70|0.08|0.02|N|O|1996-04-16|1996-02-17|1996-05-12|DELIVER IN PERSON|FOB|the slyly special i| +19979|817417|42450|5|19|25353.03|0.09|0.08|N|O|1996-04-15|1996-02-16|1996-05-09|COLLECT COD|RAIL|c, special| +19979|315238|2757|6|27|33836.94|0.08|0.06|N|O|1996-04-16|1996-01-23|1996-04-28|NONE|AIR|ironic deposits sh| +19979|192240|4744|7|18|23980.32|0.10|0.02|N|O|1996-04-14|1996-01-29|1996-05-13|NONE|MAIL|ckly unusual sauternes. fu| +19980|965273|27793|1|32|42823.36|0.03|0.03|A|F|1993-08-21|1993-08-05|1993-09-05|NONE|RAIL|even ideas cajole car| +19980|341000|3507|2|14|14573.86|0.02|0.03|R|F|1993-07-21|1993-07-13|1993-08-09|DELIVER IN PERSON|AIR|fily across the f| +19980|172947|47954|3|4|8079.76|0.10|0.08|A|F|1993-06-30|1993-06-26|1993-07-18|COLLECT COD|MAIL|arefully regular somas. carefully r| +19980|716197|16198|4|34|41247.44|0.01|0.06|A|F|1993-07-07|1993-08-05|1993-07-18|NONE|REG AIR|refully final excuses. e| +19980|107683|7684|5|42|71008.56|0.06|0.04|A|F|1993-06-09|1993-06-15|1993-06-18|DELIVER IN PERSON|FOB|atelets doze. quickly regula| +19980|813440|989|6|28|37895.20|0.05|0.01|R|F|1993-05-14|1993-07-30|1993-05-31|COLLECT COD|TRUCK|al, even deposits. blithely final pac| +19980|478764|28765|7|28|48796.72|0.00|0.03|A|F|1993-05-19|1993-07-15|1993-05-20|DELIVER IN PERSON|SHIP|wake according to the furiousl| +19981|582974|45486|1|45|92562.75|0.08|0.04|R|F|1994-11-03|1994-11-22|1994-11-13|DELIVER IN PERSON|SHIP|de of the theodolites haggle carefull| +19981|29417|29418|2|32|43085.12|0.10|0.06|R|F|1994-12-17|1994-11-22|1995-01-09|COLLECT COD|FOB|he deposits. p| +19981|410186|22695|3|35|38365.60|0.08|0.01|A|F|1994-12-05|1994-12-02|1994-12-16|NONE|TRUCK|es. unusual, even p| +19981|980033|42553|4|27|30050.73|0.00|0.05|R|F|1995-01-07|1994-12-20|1995-01-31|DELIVER IN PERSON|MAIL|y under the slyly regular d| +19982|668189|30703|1|33|38185.95|0.01|0.01|N|O|1996-03-27|1996-03-13|1996-04-09|TAKE BACK RETURN|MAIL|long the unusual accounts. blith| +19983|668274|30788|1|24|29813.76|0.03|0.07|A|F|1993-10-19|1993-09-22|1993-11-16|COLLECT COD|RAIL|g packages| +19983|673913|23914|2|9|16981.92|0.02|0.00|R|F|1993-11-16|1993-11-02|1993-11-22|NONE|FOB|y about the carefully silen| +19983|441375|16392|3|33|43439.55|0.02|0.02|R|F|1993-08-15|1993-10-28|1993-08-19|COLLECT COD|SHIP|egular ideas wake blithely acro| +20008|624360|36873|1|49|62932.17|0.06|0.05|N|O|1997-02-28|1997-02-13|1997-03-15|NONE|SHIP| epitaphs boost about the unusual decoys. | +20008|603456|28481|2|25|33985.50|0.04|0.04|N|O|1997-03-04|1997-01-17|1997-03-21|COLLECT COD|RAIL|- blithely express depths| +20008|276323|38829|3|23|29884.13|0.05|0.06|N|O|1997-01-05|1997-03-08|1997-01-16|DELIVER IN PERSON|RAIL|cross the furiously regular requests. iron| +20008|158237|45747|4|45|58285.35|0.01|0.06|N|O|1996-12-14|1997-03-07|1996-12-22|COLLECT COD|REG AIR|gged foxes haggle regular | +20008|480339|42849|5|36|47495.16|0.06|0.04|N|O|1996-12-15|1997-03-09|1996-12-31|DELIVER IN PERSON|AIR|gular deposits. blithely express p| +20008|42621|17622|6|22|34399.64|0.03|0.04|N|O|1997-03-27|1997-03-02|1997-04-03|DELIVER IN PERSON|MAIL|eaves. bold dependenci| +20008|324319|49332|7|6|8059.80|0.03|0.04|N|O|1997-04-09|1997-02-12|1997-04-18|NONE|MAIL|use. packages sleep bravely be| +20009|818438|30955|1|33|44760.87|0.08|0.05|R|F|1992-09-04|1992-06-22|1992-10-04|DELIVER IN PERSON|SHIP|unusual warhorses-- blithely fi| +20009|481494|6513|2|5|7377.35|0.04|0.05|R|F|1992-07-12|1992-07-06|1992-07-24|TAKE BACK RETURN|AIR|kages detect furiously regular, special de| +20009|466762|29272|3|31|53590.94|0.05|0.05|A|F|1992-08-12|1992-07-11|1992-09-05|NONE|REG AIR|. quickly special courts | +20009|856107|18625|4|41|43585.46|0.00|0.06|R|F|1992-06-29|1992-06-23|1992-07-20|TAKE BACK RETURN|TRUCK|y special asy| +20010|157307|32314|1|38|51843.40|0.00|0.07|A|F|1992-02-04|1992-04-01|1992-02-16|DELIVER IN PERSON|MAIL|ironic deposits haggle sile| +20010|858178|45730|2|17|19314.21|0.01|0.05|A|F|1992-01-19|1992-02-23|1992-01-30|DELIVER IN PERSON|SHIP|inal deposits after the accounts sleep c| +20010|384473|34474|3|48|74758.08|0.02|0.05|A|F|1992-02-29|1992-04-09|1992-03-17|COLLECT COD|TRUCK|ld pinto beans. pat| +20010|829923|4956|4|24|44469.12|0.06|0.05|A|F|1992-02-03|1992-03-14|1992-02-12|COLLECT COD|TRUCK|osits. quickly ironic platelets across th| +20010|500657|25678|5|49|81223.87|0.03|0.04|R|F|1992-04-17|1992-02-18|1992-04-22|DELIVER IN PERSON|RAIL|d, silent sentiments. quickly final depe| +20010|528267|40778|6|19|24609.56|0.10|0.04|R|F|1992-01-15|1992-02-17|1992-02-06|NONE|SHIP|al, even pinto beans| +20011|426993|14518|1|40|76798.80|0.07|0.02|N|O|1998-03-12|1998-04-18|1998-03-24|COLLECT COD|TRUCK|e bold packages. f| +20011|468621|31131|2|27|42919.20|0.01|0.06|N|O|1998-03-14|1998-05-29|1998-03-15|DELIVER IN PERSON|REG AIR|heodolites. blithely ironic dolphins wake | +20011|104897|42404|3|21|39939.69|0.01|0.04|N|O|1998-06-09|1998-04-30|1998-07-05|NONE|SHIP|uctions. carefully regular deposits atop| +20011|2282|39783|4|33|39081.24|0.03|0.02|N|O|1998-03-14|1998-05-28|1998-03-29|NONE|MAIL|press acco| +20011|344944|32463|5|45|89501.85|0.05|0.01|N|O|1998-03-30|1998-06-03|1998-04-08|DELIVER IN PERSON|TRUCK|d the furiously fin| +20011|473807|36317|6|11|19588.58|0.00|0.06|N|O|1998-06-12|1998-04-17|1998-06-27|DELIVER IN PERSON|REG AIR|gainst the slyly quick excuses. blith| +20012|682104|32105|1|9|9774.63|0.02|0.02|A|F|1994-05-22|1994-04-06|1994-06-11|TAKE BACK RETURN|AIR|according to the never ironic asy| +20013|171069|8579|1|14|15960.84|0.05|0.08|N|O|1996-07-23|1996-09-10|1996-07-30|COLLECT COD|REG AIR| dolphins haggle blithely furious| +20014|916924|4479|1|10|19408.80|0.07|0.02|R|F|1994-10-01|1994-09-19|1994-10-08|TAKE BACK RETURN|SHIP|symptotes.| +20014|727170|27171|2|22|26337.08|0.09|0.06|A|F|1994-09-05|1994-09-20|1994-10-05|DELIVER IN PERSON|REG AIR|nto beans wake. blithely fi| +20015|602537|15050|1|24|34548.00|0.00|0.01|A|F|1992-12-31|1992-11-05|1993-01-30|COLLECT COD|FOB|quickly regular| +20015|833989|21538|2|34|65379.96|0.08|0.01|A|F|1992-11-28|1992-10-28|1992-12-15|TAKE BACK RETURN|SHIP|uffily bold accounts cajole carefully reg| +20015|843847|18880|3|29|51933.20|0.05|0.01|A|F|1992-10-12|1992-12-17|1992-11-06|DELIVER IN PERSON|TRUCK| the unusual packages! fu| +20040|996528|9048|1|50|81224.00|0.07|0.00|N|O|1997-12-13|1997-10-26|1998-01-03|TAKE BACK RETURN|AIR|ly even foxes nag carefully| +20040|632073|32074|2|32|32161.28|0.01|0.02|N|O|1997-11-17|1997-11-14|1997-12-17|COLLECT COD|MAIL|deposits according| +20040|249008|49009|3|33|31580.67|0.08|0.04|N|O|1997-11-05|1997-10-13|1997-11-11|DELIVER IN PERSON|RAIL|carefully final instru| +20040|69842|7346|4|36|65226.24|0.09|0.08|N|O|1997-09-12|1997-10-21|1997-10-08|DELIVER IN PERSON|AIR|ts haggle carefully toward the care| +20040|820385|45418|5|7|9137.38|0.02|0.01|N|O|1997-11-29|1997-10-09|1997-12-24|NONE|MAIL|nusual pin| +20040|194630|19637|6|43|74159.09|0.08|0.02|N|O|1997-11-24|1997-11-08|1997-12-13|COLLECT COD|SHIP| furiously express foxes. slyly pe| +20041|73742|36244|1|17|29167.58|0.09|0.06|R|F|1994-03-15|1994-04-13|1994-04-07|COLLECT COD|RAIL|le sometimes inside th| +20041|376981|26982|2|31|63797.07|0.01|0.01|A|F|1994-04-19|1994-04-24|1994-04-29|DELIVER IN PERSON|TRUCK| accounts. | +20041|903250|3251|3|40|50128.40|0.08|0.03|A|F|1994-03-20|1994-05-05|1994-04-14|DELIVER IN PERSON|RAIL|es. ironic dugouts sleep.| +20041|912544|99|4|24|37356.00|0.05|0.04|R|F|1994-04-22|1994-05-01|1994-04-23|DELIVER IN PERSON|TRUCK|ct quickly around the slyly enticin| +20041|113882|38887|5|20|37917.60|0.04|0.01|R|F|1994-03-26|1994-05-01|1994-04-24|COLLECT COD|TRUCK|ully ironic ideas| +20042|212643|25148|1|40|62225.20|0.04|0.03|A|F|1992-07-13|1992-07-13|1992-07-19|TAKE BACK RETURN|FOB| haggle blithely regular deposits.| +20042|877776|15328|2|47|82425.31|0.01|0.00|A|F|1992-06-03|1992-06-13|1992-06-13|COLLECT COD|RAIL|ver bold escapades after the blith| +20042|764635|2181|3|36|61185.60|0.06|0.03|R|F|1992-05-23|1992-07-01|1992-06-13|TAKE BACK RETURN|SHIP|sleep pending theod| +20042|210213|10214|4|12|13478.40|0.08|0.00|R|F|1992-05-07|1992-06-19|1992-05-30|DELIVER IN PERSON|REG AIR|ns. carefully bold platelets sl| +20043|137960|37961|1|17|33965.32|0.10|0.00|N|O|1998-10-06|1998-08-31|1998-10-07|NONE|TRUCK| theodolites integr| +20043|693259|30799|2|41|51341.02|0.02|0.06|N|O|1998-09-14|1998-09-22|1998-10-12|DELIVER IN PERSON|REG AIR|use about the carefully unusu| +20043|599187|11699|3|7|9003.12|0.02|0.05|N|O|1998-07-29|1998-09-10|1998-08-20|DELIVER IN PERSON|SHIP|its sleep slyly. blithely brave dependen| +20044|197425|34935|1|38|57851.96|0.08|0.02|A|F|1992-04-25|1992-06-05|1992-05-05|TAKE BACK RETURN|SHIP|carefully regular deposits| +20044|116513|16514|2|36|55062.36|0.08|0.02|A|F|1992-06-20|1992-06-19|1992-07-10|NONE|MAIL| platelets haggle quickly.| +20044|219269|19270|3|16|19012.00|0.03|0.04|R|F|1992-07-13|1992-05-14|1992-08-05|NONE|MAIL|requests alo| +20045|36636|24137|1|9|14153.67|0.08|0.05|R|F|1992-08-22|1992-07-03|1992-09-06|COLLECT COD|REG AIR|ptotes. carefully final theodo| +20045|735485|23028|2|2|3040.90|0.06|0.03|R|F|1992-06-26|1992-08-14|1992-07-21|DELIVER IN PERSON|RAIL|ites haggle regular pinto beans. re| +20045|293288|30804|3|35|44844.45|0.07|0.01|R|F|1992-06-14|1992-06-23|1992-06-17|COLLECT COD|SHIP| even deposits wake! | +20045|275295|25296|4|43|54622.04|0.08|0.06|A|F|1992-08-10|1992-07-12|1992-08-28|DELIVER IN PERSON|FOB|ts are during the special deposits. car| +20045|879108|16660|5|23|25002.38|0.02|0.01|R|F|1992-06-21|1992-07-13|1992-06-25|DELIVER IN PERSON|RAIL|deas use. f| +20045|167836|30340|6|20|38076.60|0.06|0.02|A|F|1992-09-15|1992-08-19|1992-10-07|TAKE BACK RETURN|MAIL|ajole slyly carefully final | +20046|435207|22732|1|11|12563.98|0.07|0.00|N|F|1995-06-11|1995-06-24|1995-07-07|TAKE BACK RETURN|MAIL|packages cajole evenly above th| +20046|516774|16775|2|43|77002.25|0.01|0.05|N|F|1995-05-31|1995-07-09|1995-06-30|COLLECT COD|RAIL|ts wake quickly. even reque| +20046|419286|31795|3|35|42184.10|0.02|0.08|N|O|1995-06-24|1995-06-18|1995-07-09|NONE|TRUCK|egular deposits serve | +20046|939682|2201|4|13|22381.32|0.09|0.00|N|O|1995-07-03|1995-07-24|1995-07-17|COLLECT COD|TRUCK|refully carefully final i| +20047|610818|35843|1|11|19016.58|0.02|0.03|N|O|1998-02-03|1998-02-10|1998-02-17|TAKE BACK RETURN|AIR|ously. accounts wake carefully pl| +20047|16308|41309|2|13|15915.90|0.08|0.08|N|O|1998-02-08|1998-01-23|1998-02-11|NONE|AIR|ourts. carefu| +20047|88343|25847|3|28|37277.52|0.02|0.02|N|O|1998-03-07|1998-02-20|1998-03-27|DELIVER IN PERSON|REG AIR|ests against | +20072|442846|30371|1|14|25043.48|0.06|0.02|N|O|1997-05-06|1997-06-09|1997-05-29|TAKE BACK RETURN|MAIL|ecial theodolites. furi| +20073|397489|35011|1|41|65045.27|0.05|0.05|N|O|1997-01-27|1996-12-30|1997-02-18|NONE|MAIL|regular asy| +20074|90682|28186|1|25|41817.00|0.05|0.03|A|F|1993-05-13|1993-05-26|1993-05-14|COLLECT COD|RAIL|the furiously s| +20074|89580|39581|2|22|34530.76|0.02|0.05|A|F|1993-03-31|1993-05-02|1993-04-20|COLLECT COD|MAIL|kly after the ironic packages. expr| +20074|560666|48200|3|21|36259.44|0.09|0.03|R|F|1993-03-18|1993-05-18|1993-04-05|NONE|TRUCK|nic packages are fluff| +20074|110313|35318|4|42|55579.02|0.03|0.08|R|F|1993-04-15|1993-04-09|1993-05-06|TAKE BACK RETURN|AIR|deposits detect slyly. blithely pend| +20074|21227|46228|5|23|26409.06|0.10|0.00|A|F|1993-03-25|1993-05-26|1993-04-14|DELIVER IN PERSON|AIR|encies sleep e| +20075|946446|34001|1|4|5969.60|0.09|0.04|R|F|1995-04-02|1995-03-30|1995-04-11|DELIVER IN PERSON|AIR|al pinto beans do nag slyly final, regular | +20075|911648|24167|2|6|9957.60|0.09|0.02|A|F|1995-04-24|1995-04-07|1995-05-20|TAKE BACK RETURN|MAIL|nd the carefully ironic acco| +20075|52191|14693|3|10|11431.90|0.09|0.04|A|F|1995-05-05|1995-05-03|1995-05-27|DELIVER IN PERSON|MAIL|ording to the pending, i| +20075|169966|7476|4|41|83474.36|0.02|0.08|R|F|1995-03-05|1995-03-27|1995-04-04|DELIVER IN PERSON|TRUCK|sits boost. express| +20075|608212|45749|5|15|16802.70|0.08|0.03|N|F|1995-06-15|1995-05-16|1995-06-19|COLLECT COD|RAIL|. fluffily eve| +20076|189730|14737|1|17|30935.41|0.00|0.02|N|O|1997-06-22|1997-08-03|1997-07-21|NONE|REG AIR|fully silently ironic dep| +20076|787201|37202|2|25|32204.25|0.00|0.04|N|O|1997-08-18|1997-07-08|1997-08-29|COLLECT COD|AIR|cial packages cajole sly| +20076|473156|48175|3|24|27099.12|0.01|0.02|N|O|1997-08-10|1997-08-13|1997-08-16|NONE|RAIL|olites! sly| +20076|324835|24836|4|17|31616.94|0.09|0.03|N|O|1997-08-31|1997-08-12|1997-09-23|TAKE BACK RETURN|SHIP|. ironic platelets are fluff| +20077|409901|9902|1|50|90544.00|0.05|0.07|A|F|1994-08-02|1994-09-27|1994-08-30|COLLECT COD|FOB|packages sleep asym| +20078|670009|7549|1|49|47969.53|0.01|0.01|A|F|1995-03-06|1995-04-02|1995-03-09|COLLECT COD|FOB|blithely? pending, final pint| +20078|834604|9637|2|16|24616.96|0.03|0.03|N|F|1995-06-11|1995-03-22|1995-06-27|DELIVER IN PERSON|FOB|are furiou| +20078|189259|26769|3|11|14830.75|0.02|0.04|R|F|1995-03-18|1995-04-08|1995-03-22|NONE|FOB|quests haggle. slyly regular| +20078|859292|46844|4|7|8758.75|0.09|0.03|R|F|1995-05-07|1995-05-07|1995-05-11|NONE|REG AIR|lar deposits boost furiously ab| +20078|113749|38754|5|11|19390.14|0.04|0.05|A|F|1995-03-22|1995-05-12|1995-04-08|TAKE BACK RETURN|AIR|s. quickly final pinto beans mu| +20078|779190|41706|6|19|24114.04|0.10|0.06|A|F|1995-04-07|1995-03-21|1995-04-13|DELIVER IN PERSON|SHIP|efully ironic | +20079|700322|12837|1|17|22478.93|0.02|0.07|A|F|1993-04-24|1993-05-18|1993-05-24|DELIVER IN PERSON|SHIP|d the stealthily final ideas use ca| +20079|310730|48249|2|28|48740.16|0.10|0.08|R|F|1993-05-09|1993-05-04|1993-05-25|TAKE BACK RETURN|MAIL| special pinto beans lo| +20079|436836|24361|3|8|14182.48|0.01|0.04|R|F|1993-04-29|1993-06-13|1993-05-17|NONE|SHIP|le furiously ex| +20079|892639|42640|4|47|76684.73|0.09|0.04|A|F|1993-07-08|1993-04-17|1993-07-15|TAKE BACK RETURN|REG AIR|blithely silent accounts. dep| +20079|579970|42482|5|17|34849.15|0.06|0.05|A|F|1993-06-18|1993-06-04|1993-07-12|COLLECT COD|RAIL|slyly according to the furiou| +20104|911946|24465|1|8|15663.20|0.07|0.00|R|F|1993-08-18|1993-09-24|1993-08-28|TAKE BACK RETURN|TRUCK|nusual request| +20104|74435|49438|2|50|70471.50|0.03|0.05|A|F|1993-07-30|1993-08-30|1993-08-15|DELIVER IN PERSON|MAIL|nwind slyly. slyly regular theodolite| +20105|693782|43783|1|19|33739.25|0.08|0.04|R|F|1994-03-16|1994-03-27|1994-04-13|COLLECT COD|RAIL|ly regular requests.| +20105|392888|5396|2|10|19808.70|0.02|0.02|A|F|1994-02-12|1994-04-22|1994-03-12|COLLECT COD|AIR|nusual foxes. car| +20105|262832|348|3|31|55639.42|0.10|0.01|R|F|1994-03-31|1994-04-15|1994-04-01|NONE|AIR|ntegrate! slyly ironic theod| +20105|409200|46725|4|40|44367.20|0.00|0.02|A|F|1994-03-12|1994-03-04|1994-04-03|COLLECT COD|TRUCK|de of the fluffily e| +20105|411015|48540|5|26|24075.74|0.09|0.03|A|F|1994-05-19|1994-03-07|1994-05-28|TAKE BACK RETURN|TRUCK|nst the unusual, bold excuses haggle qui| +20105|914829|2384|6|19|35031.82|0.01|0.06|A|F|1994-05-21|1994-03-01|1994-06-10|DELIVER IN PERSON|TRUCK|ag along the| +20106|400247|248|1|45|51624.90|0.08|0.05|N|O|1998-10-03|1998-08-05|1998-10-05|DELIVER IN PERSON|AIR| quickly regul| +20106|936277|23832|2|27|35457.21|0.07|0.07|N|O|1998-07-06|1998-08-15|1998-07-14|NONE|REG AIR|hely alongside of the furiously unusua| +20106|5031|42532|3|9|8424.27|0.00|0.00|N|O|1998-06-20|1998-07-19|1998-06-25|TAKE BACK RETURN|AIR|ake blithely even forges. carefully final d| +20107|924302|36821|1|11|14588.86|0.04|0.03|A|F|1994-06-04|1994-07-15|1994-06-29|COLLECT COD|RAIL|iously alongside of the furiously | +20107|732962|7991|2|48|95756.64|0.05|0.04|A|F|1994-06-20|1994-07-30|1994-07-18|TAKE BACK RETURN|MAIL|uld have to haggle requests. slyly ironic p| +20107|882826|32827|3|45|81395.10|0.02|0.06|R|F|1994-09-16|1994-07-02|1994-10-13|DELIVER IN PERSON|MAIL|uriously. regular packages accordin| +20107|655908|30935|4|29|54052.23|0.08|0.03|R|F|1994-07-17|1994-06-24|1994-07-20|NONE|MAIL|usual accounts above t| +20107|842165|29714|5|34|37642.08|0.04|0.03|R|F|1994-06-26|1994-07-09|1994-07-13|DELIVER IN PERSON|REG AIR|uriously final warhorses. requests| +20108|340189|27708|1|30|36875.10|0.02|0.00|R|F|1993-10-16|1993-09-16|1993-11-02|NONE|REG AIR|iously regular foxes about the perma| +20108|552122|27145|2|29|34048.90|0.04|0.05|A|F|1993-10-04|1993-09-17|1993-10-16|NONE|RAIL|s should have to a| +20108|506619|6620|3|38|61772.42|0.07|0.07|A|F|1993-08-29|1993-09-26|1993-09-16|NONE|MAIL|ial accounts sleep carefully regul| +20109|708429|8430|1|7|10061.73|0.08|0.06|N|O|1995-10-23|1995-10-22|1995-11-10|TAKE BACK RETURN|RAIL|l dugouts cajole along the requests| +20109|549701|24722|2|21|36764.28|0.00|0.01|N|O|1995-11-26|1995-11-16|1995-12-15|TAKE BACK RETURN|MAIL|cial packages detect| +20109|818429|30946|3|37|49853.06|0.01|0.00|N|O|1995-12-24|1995-10-29|1996-01-10|TAKE BACK RETURN|REG AIR|ions. final| +20109|325734|25735|4|2|3519.44|0.03|0.01|N|O|1995-11-08|1995-10-07|1995-12-02|COLLECT COD|AIR|arefully regular fo| +20109|601702|26727|5|32|51317.44|0.10|0.08|N|O|1995-10-21|1995-11-16|1995-11-10|NONE|AIR|l deposits integrate slyly above the ca| +20110|771954|34470|1|15|30388.80|0.00|0.05|N|O|1996-01-03|1996-01-24|1996-01-12|TAKE BACK RETURN|FOB|y excuses are slyly | +20110|223293|35798|2|50|60814.00|0.00|0.03|N|O|1995-12-25|1996-02-04|1996-01-02|COLLECT COD|RAIL|even requests cajole against the carefully| +20110|875356|391|3|15|19969.65|0.02|0.01|N|O|1996-03-02|1996-01-24|1996-03-09|COLLECT COD|AIR|ests affix slyly| +20110|92583|17586|4|44|69325.52|0.10|0.06|N|O|1996-03-23|1996-01-18|1996-04-20|NONE|MAIL|stealthily even acc| +20111|103630|3631|1|41|66978.83|0.01|0.04|N|O|1997-05-30|1997-06-18|1997-06-13|DELIVER IN PERSON|SHIP|ily dogged dependencies integrate a| +20111|695328|20355|2|42|55578.18|0.06|0.01|N|O|1997-05-18|1997-06-06|1997-05-22|TAKE BACK RETURN|AIR| ironic inst| +20136|735526|48041|1|14|21860.86|0.10|0.00|N|O|1996-07-31|1996-06-18|1996-08-19|COLLECT COD|MAIL|uests? even forges are blithely pending,| +20136|979644|4683|2|27|46537.20|0.01|0.04|N|O|1996-06-05|1996-06-17|1996-06-10|NONE|REG AIR| instead of the express accoun| +20137|235527|48032|1|13|19012.63|0.02|0.06|N|O|1996-06-12|1996-05-12|1996-07-06|DELIVER IN PERSON|AIR|in at the quickl| +20137|497226|22245|2|16|19571.20|0.10|0.02|N|O|1996-03-21|1996-04-20|1996-03-25|TAKE BACK RETURN|REG AIR|egular ideas-- furiously final deposits n| +20137|875881|25882|3|15|27852.60|0.00|0.00|N|O|1996-03-25|1996-04-14|1996-04-24|NONE|SHIP|s poach deposits. care| +20137|922011|34530|4|24|24791.28|0.07|0.04|N|O|1996-06-06|1996-03-21|1996-06-23|COLLECT COD|SHIP|ular theodolites sleep blithely a| +20137|224627|24628|5|44|68270.84|0.07|0.04|N|O|1996-05-18|1996-04-23|1996-05-28|TAKE BACK RETURN|TRUCK|ckages sleep. quietly r| +20138|921258|21259|1|18|23025.78|0.03|0.00|N|O|1997-03-22|1997-03-11|1997-04-10|TAKE BACK RETURN|RAIL|y unusual packages | +20138|566813|4347|2|49|92109.71|0.04|0.03|N|O|1997-04-26|1997-04-17|1997-05-02|DELIVER IN PERSON|TRUCK|ncies. dolphins| +20138|415257|40274|3|20|23444.60|0.10|0.00|N|O|1997-06-01|1997-04-19|1997-06-28|DELIVER IN PERSON|RAIL|yly special waters nag. requests affix amo| +20138|209601|22106|4|33|49849.47|0.08|0.01|N|O|1997-03-13|1997-04-22|1997-04-04|DELIVER IN PERSON|MAIL|lose packages use. furious pinto bea| +20138|762044|37075|5|20|22120.20|0.06|0.08|N|O|1997-02-18|1997-03-29|1997-02-27|DELIVER IN PERSON|AIR|slyly ruthless requests. fluff| +20138|663496|1036|6|9|13135.14|0.07|0.06|N|O|1997-02-27|1997-03-24|1997-03-02|TAKE BACK RETURN|FOB|ely final pinto beans | +20138|373392|10914|7|23|33703.74|0.02|0.01|N|O|1997-03-28|1997-04-04|1997-04-02|NONE|TRUCK|nic, final packages. care| +20139|587504|25038|1|15|23872.20|0.05|0.07|N|O|1996-12-26|1996-11-21|1997-01-14|TAKE BACK RETURN|REG AIR|y theodolites wake at th| +20139|168376|18377|2|37|53441.69|0.06|0.04|N|O|1996-11-24|1996-11-07|1996-12-02|COLLECT COD|MAIL| regular foxes haggle sly| +20139|886741|49259|3|32|55286.40|0.01|0.04|N|O|1996-11-07|1996-11-04|1996-11-25|NONE|TRUCK|mptotes sleep fluffily after the regular re| +20139|446693|46694|4|43|70505.81|0.08|0.07|N|O|1996-10-01|1996-11-21|1996-10-19|DELIVER IN PERSON|TRUCK|pecial accounts. frets are c| +20140|969745|32265|1|25|45367.50|0.02|0.01|N|O|1997-11-12|1997-09-13|1997-12-04|DELIVER IN PERSON|AIR| the slyly special deposits. furiously | +20140|503274|28295|2|28|35763.00|0.09|0.02|N|O|1997-11-14|1997-10-10|1997-12-06|COLLECT COD|RAIL|es. carefull| +20140|522769|35280|3|38|68086.12|0.10|0.03|N|O|1997-10-08|1997-09-15|1997-10-29|COLLECT COD|SHIP|uctions. quickly final pac| +20140|172278|47285|4|33|44558.91|0.00|0.07|N|O|1997-08-31|1997-09-26|1997-09-25|NONE|FOB|al multipliers| +20140|469939|44958|5|50|95445.50|0.01|0.07|N|O|1997-10-04|1997-10-28|1997-10-17|DELIVER IN PERSON|RAIL|eposits boost carefully blithel| +20141|998694|48695|1|47|84254.55|0.03|0.03|N|O|1998-07-24|1998-08-14|1998-08-03|DELIVER IN PERSON|RAIL|counts nag slyly. final, even re| +20141|45829|45830|2|9|15973.38|0.10|0.03|N|O|1998-07-18|1998-07-26|1998-07-28|COLLECT COD|REG AIR|ly: express, even | +20141|247440|22449|3|39|54109.77|0.04|0.01|N|O|1998-06-23|1998-07-22|1998-06-26|NONE|TRUCK|heodolites sleep blithel| +20141|708024|8025|4|13|13415.87|0.10|0.08|N|O|1998-07-24|1998-09-01|1998-07-26|TAKE BACK RETURN|SHIP|uriously bold instructions-- carefully eve| +20141|747835|47836|5|30|56484.00|0.08|0.00|N|O|1998-07-27|1998-08-31|1998-08-02|DELIVER IN PERSON|TRUCK| among the| +20141|852905|15423|6|45|83603.70|0.10|0.01|N|O|1998-06-11|1998-07-11|1998-07-01|NONE|FOB|ndencies detect | +20142|606648|31673|1|44|68402.84|0.10|0.00|A|F|1993-09-10|1993-10-29|1993-09-26|NONE|AIR|thely final packages. blithely even fo| +20142|924018|49055|2|7|7293.79|0.09|0.06|A|F|1993-11-03|1993-11-12|1993-11-27|NONE|FOB|de of the final, regular deposits. sly| +20142|969982|19983|3|42|86181.48|0.02|0.07|R|F|1993-12-08|1993-11-20|1993-12-10|COLLECT COD|TRUCK| the special, specia| +20142|484181|21709|4|44|51267.04|0.05|0.03|R|F|1993-09-08|1993-11-15|1993-09-25|DELIVER IN PERSON|SHIP|ly bold deposits.| +20142|613322|859|5|17|20999.93|0.10|0.04|A|F|1993-10-31|1993-11-16|1993-11-04|COLLECT COD|REG AIR|lyly carefully even excuses? pendin| +20143|905866|30903|1|1|1871.82|0.02|0.00|R|F|1994-07-11|1994-07-07|1994-08-06|COLLECT COD|AIR|thely even requests cajole i| +20143|880609|18161|2|42|66761.52|0.01|0.06|A|F|1994-06-12|1994-08-08|1994-06-14|TAKE BACK RETURN|FOB|odolites boost carefully above the furiou| +20143|383866|8881|3|23|44846.55|0.01|0.00|R|F|1994-05-28|1994-07-20|1994-06-24|COLLECT COD|FOB|kages are blithely final requests. bol| +20143|620659|33172|4|22|34751.64|0.05|0.08|R|F|1994-07-09|1994-07-16|1994-07-14|DELIVER IN PERSON|AIR|y after the| +20143|402158|2159|5|14|14841.82|0.03|0.00|R|F|1994-08-23|1994-07-08|1994-08-25|DELIVER IN PERSON|MAIL|cies sleep busily pending requests. | +20168|548806|23827|1|30|55643.40|0.05|0.02|N|O|1997-10-26|1997-11-02|1997-11-24|TAKE BACK RETURN|MAIL|foxes boost quickly| +20168|778832|16378|2|36|68788.80|0.00|0.03|N|O|1997-12-04|1997-10-31|1997-12-08|DELIVER IN PERSON|SHIP|, ironic accounts cajole slyly slowl| +20169|607232|32257|1|38|43289.60|0.01|0.05|R|F|1995-02-14|1995-03-30|1995-02-26|COLLECT COD|RAIL|es use finally. requests alongside of| +20169|740133|2648|2|9|10557.90|0.03|0.02|A|F|1995-05-18|1995-03-18|1995-06-11|NONE|RAIL|ter the dolphins? r| +20169|399232|36754|3|4|5324.88|0.06|0.08|A|F|1995-05-05|1995-03-16|1995-05-22|NONE|MAIL|blithely after the blithely e| +20170|957128|7129|1|49|58068.92|0.10|0.03|A|F|1992-11-19|1992-12-05|1992-12-16|NONE|TRUCK|s. unusual requests alongside of the blith| +20170|447635|22652|2|50|79130.50|0.10|0.01|R|F|1992-11-06|1992-12-06|1992-11-30|TAKE BACK RETURN|RAIL|unts. fluffily unusual deposits a| +20171|134426|21933|1|31|45273.02|0.05|0.08|A|F|1995-02-14|1995-03-18|1995-03-08|COLLECT COD|AIR|inst the carefully fi| +20171|286123|23639|2|42|46582.62|0.06|0.05|R|F|1995-04-10|1995-03-12|1995-04-25|COLLECT COD|MAIL|ependencies haggle furiously. unusu| +20171|866072|16073|3|15|15570.45|0.03|0.04|A|F|1995-05-08|1995-03-22|1995-05-18|DELIVER IN PERSON|REG AIR|instruction| +20172|545892|8403|1|35|67825.45|0.01|0.05|A|F|1994-04-08|1994-04-30|1994-04-20|DELIVER IN PERSON|SHIP|ithely ironic packages wake slyly theodo| +20172|799793|24824|2|42|79495.92|0.05|0.06|A|F|1994-04-16|1994-03-11|1994-05-03|COLLECT COD|SHIP|yly final brai| +20172|107862|20365|3|29|54225.94|0.05|0.06|A|F|1994-02-01|1994-03-17|1994-02-16|TAKE BACK RETURN|AIR|press, final packages. regular ideas | +20173|660726|10727|1|37|62407.53|0.06|0.04|A|F|1992-11-18|1992-11-30|1992-11-26|DELIVER IN PERSON|TRUCK|e blithely unusual packages cajole across | +20173|816974|4523|2|38|71855.34|0.09|0.05|A|F|1993-01-27|1992-12-24|1993-01-28|COLLECT COD|AIR|ounts. blithely reg| +20173|877150|39668|3|43|48465.73|0.06|0.04|R|F|1992-12-22|1993-01-05|1992-12-31|NONE|REG AIR|lites sleep furiously a| +20174|533021|8042|1|31|32674.00|0.07|0.07|R|F|1994-04-08|1994-04-16|1994-05-03|DELIVER IN PERSON|SHIP|sly ironic accounts sleep carefully. | +20174|468968|43987|2|43|83288.42|0.08|0.05|R|F|1994-04-03|1994-04-16|1994-04-28|NONE|RAIL| ironic theodolites. slyly sp| +20174|932905|20460|3|29|56197.94|0.05|0.03|R|F|1994-06-24|1994-05-19|1994-07-07|COLLECT COD|RAIL|s. blithely regu| +20175|486672|36673|1|28|46442.20|0.03|0.05|N|O|1995-07-15|1995-07-10|1995-08-04|NONE|SHIP|theodolites use. furiously bold pac| +20175|490220|2730|2|22|26624.40|0.00|0.07|N|O|1995-09-06|1995-08-03|1995-09-11|NONE|REG AIR|s after the dependencies a| +20175|116909|41914|3|46|88591.40|0.00|0.05|N|O|1995-09-02|1995-06-22|1995-09-16|NONE|SHIP|ual pinto beans sublate fluff| +20175|879595|4630|4|26|40938.30|0.02|0.05|N|O|1995-08-21|1995-06-25|1995-08-22|NONE|AIR|ly even requests; slyly reg| +20200|318601|6120|1|42|68022.78|0.00|0.07|N|O|1998-09-12|1998-09-11|1998-10-02|NONE|REG AIR|ven pinto | +20200|712752|25267|2|45|79412.40|0.06|0.01|N|O|1998-09-05|1998-09-12|1998-09-06|NONE|FOB|mes final foxes integrate sl| +20200|221375|21376|3|35|45372.60|0.08|0.05|N|O|1998-10-11|1998-08-30|1998-10-24|DELIVER IN PERSON|FOB|cies. slyly | +20201|858041|20559|1|10|9990.00|0.07|0.00|N|O|1996-03-20|1996-01-11|1996-03-22|NONE|REG AIR|rges. furiously express accounts | +20201|85367|35368|2|47|63560.92|0.08|0.08|N|O|1996-01-01|1996-02-16|1996-01-03|COLLECT COD|MAIL|kly express ideas. ironic, fi| +20201|763127|38158|3|23|27372.07|0.07|0.00|N|O|1996-03-01|1996-01-22|1996-03-30|NONE|AIR|gular excuses use carefully brav| +20201|858787|46339|4|26|45389.24|0.07|0.07|N|O|1996-03-17|1996-03-01|1996-04-01|DELIVER IN PERSON|AIR|ly unusual deposits. quickly expre| +20201|630912|5937|5|41|75558.08|0.10|0.04|N|O|1996-04-04|1996-02-24|1996-04-11|COLLECT COD|RAIL|g packages. regula| +20202|453983|3984|1|39|75541.44|0.06|0.03|A|F|1995-03-13|1995-03-12|1995-03-28|COLLECT COD|AIR|ns boost slyly against the slyly express d| +20202|90211|15214|2|45|54054.45|0.02|0.00|A|F|1995-05-22|1995-05-03|1995-05-25|COLLECT COD|AIR|efully express dependenc| +20202|172918|22919|3|11|21900.01|0.09|0.02|R|F|1995-03-17|1995-04-15|1995-03-31|NONE|FOB|usly ironic requests serve slyly a| +20202|221061|46070|4|35|34371.75|0.02|0.07|A|F|1995-04-30|1995-04-01|1995-05-16|TAKE BACK RETURN|AIR|nic pinto | +20202|369516|7038|5|5|7927.50|0.09|0.05|N|F|1995-06-04|1995-03-10|1995-06-21|DELIVER IN PERSON|AIR|uickly. express dinos eat f| +20202|442731|30256|6|18|30126.78|0.02|0.06|A|F|1995-06-06|1995-05-09|1995-06-07|DELIVER IN PERSON|AIR|kages hagg| +20203|63699|1203|1|12|19952.28|0.00|0.04|R|F|1992-04-24|1992-03-29|1992-05-09|COLLECT COD|TRUCK|inal requests among th| +20204|791410|41411|1|28|42038.64|0.08|0.03|N|O|1996-09-27|1996-09-07|1996-10-05|DELIVER IN PERSON|TRUCK|lithely even ideas are furiously after| +20205|877129|39647|1|12|13272.96|0.09|0.05|N|O|1995-09-16|1995-08-11|1995-10-10|COLLECT COD|MAIL|the unusual, unusual platelets. idly reg| +20205|899756|24791|2|42|73739.82|0.00|0.00|N|O|1995-08-26|1995-08-18|1995-09-24|DELIVER IN PERSON|REG AIR| evenly even foxes along the deposits | +20205|191201|28711|3|19|24551.80|0.04|0.03|N|O|1995-08-02|1995-07-19|1995-08-06|TAKE BACK RETURN|REG AIR|onic asymptotes across the pinto b| +20205|510991|10992|4|8|16015.76|0.08|0.06|N|O|1995-08-11|1995-08-24|1995-09-04|TAKE BACK RETURN|AIR| carefully express packages wake a| +20205|212798|12799|5|6|10264.68|0.10|0.02|N|O|1995-06-20|1995-07-31|1995-07-20|COLLECT COD|MAIL|nusual requests! platelets boost furiousl| +20205|495046|45047|6|50|52051.00|0.02|0.00|N|O|1995-10-10|1995-09-14|1995-11-03|DELIVER IN PERSON|MAIL|ackages. final, ironic sheaves above the| +20206|475246|12774|1|35|42742.70|0.02|0.06|A|F|1994-11-08|1995-01-09|1994-11-15|TAKE BACK RETURN|TRUCK|ackages slee| +20206|444642|7151|2|4|6346.48|0.10|0.06|R|F|1994-12-21|1995-01-16|1995-01-11|DELIVER IN PERSON|TRUCK| accounts may hag| +20206|93174|5676|3|10|11671.70|0.04|0.01|A|F|1994-12-18|1994-12-13|1994-12-23|NONE|TRUCK|cording to the blithel| +20207|729794|17337|1|41|74774.16|0.09|0.00|R|F|1992-10-24|1992-10-13|1992-11-03|TAKE BACK RETURN|REG AIR|usly express| +20207|639035|39036|2|39|37986.00|0.05|0.00|A|F|1992-12-09|1992-12-02|1992-12-28|COLLECT COD|FOB|e slyly. ironic requests nag sl| +20207|246333|46334|3|33|42217.56|0.07|0.01|R|F|1992-12-11|1992-11-08|1993-01-10|TAKE BACK RETURN|FOB|fully final theodolites. slyly daring requ| +20232|6304|6305|1|24|29047.20|0.10|0.02|A|F|1994-11-04|1994-12-23|1994-11-27|DELIVER IN PERSON|FOB|ccounts. regular requ| +20232|943080|43081|2|1|1123.04|0.10|0.00|R|F|1994-11-20|1994-11-27|1994-12-15|COLLECT COD|TRUCK|es special deposits kindle even i| +20232|340616|28135|3|14|23192.40|0.01|0.00|R|F|1995-02-18|1994-11-22|1995-03-08|COLLECT COD|FOB|uffily express depos| +20232|719668|19669|4|48|81006.24|0.10|0.03|R|F|1994-11-20|1995-01-14|1994-12-09|COLLECT COD|REG AIR| quickly even pinto beans use furiously f| +20232|443756|43757|5|2|3399.46|0.06|0.02|A|F|1995-01-29|1994-11-22|1995-02-04|NONE|MAIL|eep despite the fluffily| +20232|205635|18140|6|5|7703.10|0.00|0.00|R|F|1995-01-23|1995-01-04|1995-01-24|DELIVER IN PERSON|SHIP|lites about the pending, bold| +20232|95262|20265|7|4|5029.04|0.08|0.03|R|F|1994-12-22|1994-12-17|1995-01-19|COLLECT COD|RAIL|ular ideas. unusual dinos doze | +20233|56553|19055|1|30|45286.50|0.09|0.05|N|O|1996-10-08|1996-10-13|1996-10-19|TAKE BACK RETURN|REG AIR|special platelets. boldly regula| +20234|700852|13367|1|39|72259.98|0.03|0.07|N|O|1996-06-10|1996-04-25|1996-06-26|NONE|SHIP|ts. final | +20234|206260|18765|2|4|4665.00|0.06|0.08|N|O|1996-06-17|1996-05-31|1996-07-11|NONE|FOB|elets sleep blithely about the ironi| +20234|602217|14730|3|25|27979.50|0.06|0.07|N|O|1996-04-26|1996-05-16|1996-05-05|COLLECT COD|SHIP|haggle blithely regular deposits; spe| +20234|457899|7900|4|28|51992.36|0.04|0.06|N|O|1996-03-10|1996-05-19|1996-04-01|NONE|MAIL|ly regular| +20234|906416|31453|5|26|36981.62|0.04|0.06|N|O|1996-06-15|1996-05-07|1996-07-05|COLLECT COD|MAIL|sts around t| +20235|293182|30698|1|1|1175.17|0.04|0.03|A|F|1994-05-23|1994-07-18|1994-05-31|NONE|AIR|equests affix alongside of the pla| +20235|500275|276|2|1|1275.25|0.02|0.00|R|F|1994-07-12|1994-06-10|1994-07-18|DELIVER IN PERSON|TRUCK|regular accounts against the quickly exp| +20235|108758|33763|3|9|15900.75|0.09|0.05|A|F|1994-09-01|1994-06-16|1994-09-24|DELIVER IN PERSON|TRUCK|eposits amon| +20236|700329|330|1|2|2658.58|0.08|0.01|N|O|1996-08-20|1996-10-14|1996-09-12|DELIVER IN PERSON|AIR|t blithely pe| +20236|421896|34405|2|39|70896.93|0.00|0.05|N|O|1996-10-17|1996-11-15|1996-11-02|TAKE BACK RETURN|AIR|, bold foxes sleep furiously care| +20236|799579|49580|3|41|68820.14|0.09|0.02|N|O|1996-09-26|1996-10-31|1996-09-28|NONE|MAIL|y final platelets boost carefully ab| +20236|510636|10637|4|7|11526.27|0.10|0.07|N|O|1996-10-05|1996-11-15|1996-10-20|NONE|FOB|dependencies hang carefully alongside o| +20236|246444|8949|5|6|8342.58|0.10|0.02|N|O|1996-08-22|1996-10-25|1996-08-25|TAKE BACK RETURN|RAIL|gular instructions haggle bravely| +20237|133675|8680|1|32|54677.44|0.09|0.06|N|O|1996-01-25|1996-01-22|1996-02-22|TAKE BACK RETURN|FOB|cial grouches. blithely regul| +20237|668873|43900|2|45|82882.80|0.08|0.06|N|O|1996-01-03|1996-01-12|1996-02-02|NONE|REG AIR|ress ideas. special accounts sl| +20237|747068|47069|3|25|27875.75|0.02|0.04|N|O|1996-03-19|1996-02-05|1996-04-12|TAKE BACK RETURN|RAIL|ithely ironic accounts c| +20238|756040|18556|1|21|23016.21|0.04|0.05|A|F|1994-08-26|1994-08-31|1994-09-03|DELIVER IN PERSON|RAIL| special foxes| +20238|761952|49498|2|4|8055.68|0.03|0.01|R|F|1994-08-05|1994-07-30|1994-08-20|TAKE BACK RETURN|SHIP|dolites. sp| +20238|124378|49383|3|8|11218.96|0.03|0.07|R|F|1994-07-31|1994-08-08|1994-08-16|COLLECT COD|MAIL|ideas are furiously. carefully | +20238|415051|27560|4|34|32845.02|0.04|0.00|A|F|1994-08-31|1994-07-25|1994-09-20|COLLECT COD|RAIL|ular escapades nag acc| +20238|756052|18568|5|4|4432.08|0.06|0.01|R|F|1994-08-30|1994-08-23|1994-09-05|COLLECT COD|SHIP|ly bold requests. slyly unusual dolphins | +20239|371028|21029|1|27|29673.27|0.01|0.06|N|O|1997-10-16|1997-12-11|1997-11-04|TAKE BACK RETURN|SHIP|whithout the| +20239|855884|5885|2|33|60714.72|0.08|0.02|N|O|1998-02-03|1997-11-25|1998-03-01|COLLECT COD|MAIL|ly ironic accounts. slyly regular notornis | +20239|829266|16815|3|4|4780.88|0.05|0.00|N|O|1997-11-18|1997-12-13|1997-12-17|COLLECT COD|SHIP|boost furiously about the e| +20239|461899|24409|4|6|11165.22|0.06|0.01|N|O|1997-12-11|1997-12-07|1998-01-06|COLLECT COD|REG AIR|into beans sleep | +20239|134216|46719|5|12|15002.52|0.02|0.03|N|O|1997-12-10|1998-01-04|1997-12-11|NONE|MAIL|ctions. deposits cajole. slyl| +20239|751719|39265|6|21|37184.28|0.06|0.06|N|O|1997-10-28|1997-12-31|1997-11-05|NONE|MAIL|y ironic ideas sleep carefully. | +20239|137871|374|7|2|3817.74|0.00|0.02|N|O|1997-10-30|1997-11-16|1997-11-25|COLLECT COD|TRUCK|pecial excuses affix quickly after the qu| +20264|189242|14249|1|19|25293.56|0.06|0.06|N|O|1998-01-20|1998-02-28|1998-02-03|NONE|MAIL|aggle even, bold accounts. slyly even pat| +20264|587827|37828|2|33|63188.40|0.07|0.03|N|O|1998-01-18|1998-03-24|1998-01-22|DELIVER IN PERSON|SHIP| across the furiousl| +20264|594030|6542|3|25|28100.25|0.08|0.03|N|O|1998-04-09|1998-03-27|1998-04-15|COLLECT COD|MAIL|al packages boost along the deposits. expr| +20264|852985|28020|4|49|94959.06|0.03|0.02|N|O|1998-05-04|1998-03-22|1998-06-01|NONE|SHIP| wake. quickly | +20264|103120|40627|5|1|1123.12|0.06|0.08|N|O|1998-04-25|1998-03-22|1998-04-26|DELIVER IN PERSON|TRUCK|frets hang | +20265|647278|22303|1|16|19603.84|0.09|0.08|A|F|1994-05-12|1994-04-08|1994-06-08|TAKE BACK RETURN|SHIP| slyly regular packages; carefully final | +20265|791070|41071|2|11|12771.44|0.06|0.01|R|F|1994-03-31|1994-03-04|1994-04-26|TAKE BACK RETURN|AIR|into beans ac| +20265|504837|42368|3|3|5525.43|0.02|0.06|R|F|1994-02-09|1994-03-16|1994-02-16|TAKE BACK RETURN|FOB|after the carefu| +20265|794005|31551|4|45|49453.65|0.02|0.07|A|F|1994-02-15|1994-03-19|1994-02-27|NONE|TRUCK|ave ideas sleep carefully accounts. fu| +20265|826468|26469|5|39|54382.38|0.00|0.05|R|F|1994-03-24|1994-03-09|1994-03-27|TAKE BACK RETURN|TRUCK| slyly unusual packages so| +20265|435665|10682|6|46|73629.44|0.00|0.06|A|F|1994-05-08|1994-03-25|1994-05-23|DELIVER IN PERSON|FOB|ously acco| +20265|210440|10441|7|40|54017.20|0.10|0.00|R|F|1994-05-23|1994-04-09|1994-05-28|TAKE BACK RETURN|AIR|s run blithely| +20266|852694|27729|1|39|64219.35|0.03|0.03|N|O|1998-06-19|1998-05-01|1998-07-04|COLLECT COD|MAIL| boost quickly express p| +20266|218034|18035|2|6|5712.12|0.00|0.05|N|O|1998-03-30|1998-04-03|1998-04-18|NONE|MAIL|silent foxes. blithely special requests| +20266|484709|9728|3|11|18630.48|0.08|0.01|N|O|1998-04-08|1998-05-16|1998-04-11|TAKE BACK RETURN|TRUCK|ly. carefully bold pinto| +20266|495570|8080|4|18|28179.90|0.02|0.01|N|O|1998-06-16|1998-04-27|1998-07-05|NONE|TRUCK|ial deposits. deposits among the ruthless| +20266|31984|6985|5|5|9579.90|0.01|0.04|N|O|1998-06-04|1998-05-31|1998-07-02|TAKE BACK RETURN|FOB|s foxes. furiously bold platelets h| +20267|344322|19335|1|45|61483.95|0.00|0.08|R|F|1995-03-03|1995-03-28|1995-03-17|DELIVER IN PERSON|REG AIR|e closely regular| +20267|10899|23400|2|20|36197.80|0.01|0.03|A|F|1995-01-23|1995-02-17|1995-02-11|DELIVER IN PERSON|SHIP| boost slyly. foxes snooze f| +20267|167181|29685|3|30|37445.40|0.09|0.05|A|F|1995-04-22|1995-03-03|1995-04-27|COLLECT COD|TRUCK|s according to the slyly busy| +20268|171904|21905|1|39|77060.10|0.10|0.08|A|F|1993-12-31|1993-11-29|1994-01-30|NONE|RAIL|ideas. foxes sleep according to the | +20268|188237|13244|2|39|51683.97|0.06|0.05|R|F|1993-12-09|1993-10-29|1993-12-21|TAKE BACK RETURN|FOB| requests. quickly ev| +20268|682744|45258|3|6|10360.26|0.06|0.03|R|F|1993-10-28|1993-11-25|1993-11-02|TAKE BACK RETURN|MAIL|l pains affix quickly a| +20268|867036|4588|4|18|18053.82|0.02|0.03|A|F|1993-12-15|1993-11-04|1993-12-20|TAKE BACK RETURN|MAIL|fully final pinto beans. regular | +20269|146578|46579|1|50|81228.50|0.01|0.08|R|F|1994-08-13|1994-09-19|1994-08-27|COLLECT COD|FOB|ironic pinto beans use furiously | +20270|767392|17393|1|34|49618.24|0.05|0.00|N|O|1997-07-27|1997-08-03|1997-08-13|TAKE BACK RETURN|MAIL|cross the even packages| +20271|600522|38059|1|17|24182.33|0.00|0.08|A|F|1993-03-05|1993-02-27|1993-03-21|NONE|AIR|xpress theod| +20296|406602|44127|1|38|57326.04|0.10|0.06|N|O|1996-12-25|1996-11-10|1997-01-09|TAKE BACK RETURN|MAIL|ding to the pendin| +20296|750635|38181|2|38|64052.80|0.10|0.04|N|O|1996-09-22|1996-11-22|1996-10-15|DELIVER IN PERSON|SHIP|carefully stealthy requests | +20296|921449|46486|3|29|42641.60|0.07|0.02|N|O|1996-09-07|1996-09-29|1996-09-21|TAKE BACK RETURN|AIR|o wake quickly Tiresias. quickly special | +20296|779694|4725|4|35|62078.10|0.06|0.03|N|O|1996-10-31|1996-10-28|1996-11-10|TAKE BACK RETURN|SHIP|bove the unusual ideas. careful| +20296|308045|45564|5|32|33696.96|0.09|0.07|N|O|1996-09-12|1996-10-25|1996-09-24|DELIVER IN PERSON|SHIP|oost. express, special requests h| +20296|306469|43988|6|13|19180.85|0.08|0.01|N|O|1996-12-11|1996-10-14|1996-12-30|NONE|MAIL|s around the unusua| +20296|814201|14202|7|42|46836.72|0.06|0.03|N|O|1996-12-12|1996-10-26|1996-12-15|NONE|REG AIR|blithely unu| +20297|269799|32305|1|50|88439.00|0.03|0.04|N|O|1995-10-07|1995-11-07|1995-10-17|DELIVER IN PERSON|AIR|into beans boost fluffily deposits. slyl| +20297|498563|36091|2|38|59338.52|0.06|0.08|N|O|1995-10-07|1995-10-01|1995-10-19|COLLECT COD|SHIP|leep across the blithely regular th| +20297|343352|18365|3|14|19534.76|0.04|0.01|N|O|1995-11-24|1995-10-30|1995-12-19|NONE|TRUCK| unwind across t| +20297|711945|49488|4|41|80233.31|0.05|0.07|N|O|1995-10-02|1995-11-15|1995-10-15|NONE|FOB|quests. special ideas hag| +20297|647265|22290|5|26|31517.98|0.03|0.03|N|O|1995-11-06|1995-09-29|1995-11-25|TAKE BACK RETURN|REG AIR|lar platelets. slyly final accounts wak| +20297|574334|49357|6|26|36616.06|0.03|0.05|N|O|1995-12-05|1995-09-27|1995-12-29|TAKE BACK RETURN|SHIP|s wake carefully. even packages among the | +20298|815817|3366|1|24|41586.48|0.10|0.03|A|F|1993-04-25|1993-03-06|1993-05-01|DELIVER IN PERSON|AIR| boost furiously quickly busy depe| +20298|428364|40873|2|22|28431.48|0.10|0.02|R|F|1993-05-01|1993-03-02|1993-05-29|NONE|TRUCK|unts boost along the furiously even deposit| +20299|45202|7703|1|40|45888.00|0.01|0.08|N|O|1996-01-08|1996-02-22|1996-01-20|COLLECT COD|MAIL|osits nag around the slyly specia| +20299|708952|21467|2|27|52944.84|0.01|0.02|N|O|1996-01-23|1996-02-18|1996-02-08|DELIVER IN PERSON|FOB|cajole quickly upon the blithe| +20299|340929|15942|3|7|13789.37|0.10|0.00|N|O|1996-03-05|1996-01-24|1996-03-08|DELIVER IN PERSON|AIR| deposits. furiously unusual requests boost| +20300|654679|29706|1|31|50642.84|0.10|0.01|A|F|1994-09-01|1994-08-20|1994-09-02|NONE|MAIL|hely over the thinly pending foxes. r| +20300|189589|27099|2|27|45321.66|0.10|0.04|R|F|1994-09-08|1994-09-12|1994-09-23|TAKE BACK RETURN|TRUCK|y packages kindle| +20300|419051|6576|3|37|35891.11|0.04|0.00|A|F|1994-07-26|1994-09-13|1994-08-17|TAKE BACK RETURN|TRUCK|haggle furiously requests. unusu| +20300|979993|5032|4|9|18656.55|0.04|0.02|A|F|1994-09-07|1994-09-08|1994-09-28|TAKE BACK RETURN|RAIL|kages poach; even | +20300|732814|7843|5|32|59096.96|0.09|0.01|A|F|1994-07-30|1994-07-31|1994-08-07|COLLECT COD|TRUCK|t even theodolites. carefully even accounts| +20300|391513|41514|6|42|67389.00|0.06|0.04|A|F|1994-07-28|1994-08-16|1994-08-02|TAKE BACK RETURN|MAIL|lites above the carefull| +20301|289188|26704|1|49|57681.33|0.00|0.08|A|F|1993-07-04|1993-07-26|1993-08-03|COLLECT COD|AIR| regularly final deposits. asymptotes sl| +20301|367659|42674|2|41|70792.24|0.03|0.03|R|F|1993-09-17|1993-07-30|1993-09-21|DELIVER IN PERSON|REG AIR|, ironic foxes use blithely blithely unusu| +20301|241126|3631|3|27|28811.97|0.05|0.04|A|F|1993-10-04|1993-08-08|1993-10-06|DELIVER IN PERSON|MAIL|quickly even packages detect sly| +20301|595120|7632|4|12|14581.20|0.00|0.04|A|F|1993-08-14|1993-08-27|1993-09-08|COLLECT COD|REG AIR|slyly even ideas lose above t| +20301|168755|31259|5|9|16413.75|0.03|0.04|R|F|1993-08-22|1993-07-11|1993-08-24|TAKE BACK RETURN|TRUCK|e. blithel| +20301|253351|40867|6|34|44347.56|0.08|0.01|A|F|1993-07-02|1993-07-16|1993-07-16|COLLECT COD|AIR|otornis sleep carefully fluffi| +20302|884729|47247|1|27|46269.36|0.07|0.06|R|F|1994-10-03|1994-09-10|1994-11-01|DELIVER IN PERSON|AIR|s. final, | +20302|633373|33374|2|44|57478.96|0.03|0.06|A|F|1994-08-23|1994-08-04|1994-09-07|DELIVER IN PERSON|RAIL|lar, regular pinto beans are carefull| +20302|92303|42304|3|5|6476.50|0.06|0.04|R|F|1994-08-25|1994-09-03|1994-09-21|TAKE BACK RETURN|FOB|nag blithely among the ironic fre| +20302|326558|1571|4|43|68135.22|0.01|0.07|A|F|1994-07-20|1994-07-31|1994-07-27|DELIVER IN PERSON|SHIP|are carefully quie| +20302|451762|39290|5|44|75404.56|0.05|0.05|R|F|1994-08-10|1994-09-24|1994-09-01|NONE|REG AIR|ar multiplie| +20303|316314|16315|1|6|7981.80|0.08|0.04|A|F|1993-08-29|1993-09-04|1993-09-09|COLLECT COD|SHIP| accounts. blithely bold instructions a| +20303|289255|26771|2|13|16175.12|0.09|0.07|R|F|1993-11-05|1993-09-15|1993-11-25|NONE|TRUCK|efully stealt| +20303|502788|40319|3|8|14326.08|0.03|0.02|R|F|1993-10-04|1993-08-31|1993-10-19|COLLECT COD|SHIP|ajole along the slyly fina| +20303|350380|25395|4|8|11442.96|0.00|0.06|R|F|1993-09-17|1993-09-04|1993-10-03|TAKE BACK RETURN|RAIL|y even packages. bl| +20303|835446|10479|5|37|51111.80|0.04|0.08|A|F|1993-10-01|1993-09-01|1993-10-15|COLLECT COD|AIR|as. closely clo| +20303|325239|25240|6|31|39190.82|0.02|0.03|A|F|1993-08-12|1993-10-22|1993-08-27|TAKE BACK RETURN|SHIP|ounts promise blithely above the fluf| +20303|280698|43204|7|44|73861.92|0.03|0.07|A|F|1993-08-05|1993-09-24|1993-08-17|DELIVER IN PERSON|MAIL|y pending realms. | +20328|691093|16120|1|16|17344.96|0.07|0.07|N|O|1996-06-02|1996-05-29|1996-06-03|TAKE BACK RETURN|TRUCK|carefully regular pinto beans sleep; regula| +20328|188820|1324|2|37|70626.34|0.02|0.04|N|O|1996-05-31|1996-05-16|1996-06-15|COLLECT COD|FOB|thely bold theodolites. unus| +20329|953926|28965|1|5|9899.40|0.10|0.06|R|F|1994-11-05|1994-12-02|1994-12-04|NONE|AIR|according to the blithely pending | +20329|620653|33166|2|27|42487.74|0.09|0.00|A|F|1994-12-06|1994-11-30|1994-12-17|COLLECT COD|FOB|slyly. theodolites cajole.| +20329|311340|23847|3|37|49999.21|0.00|0.06|R|F|1995-01-11|1994-12-29|1995-01-14|DELIVER IN PERSON|AIR|ly ironic the| +20329|689129|26669|4|7|7826.63|0.10|0.07|R|F|1995-02-15|1994-12-31|1995-02-24|NONE|TRUCK|xpress instructions. furiousl| +20329|185898|48402|5|41|81339.49|0.05|0.06|R|F|1995-01-17|1994-11-29|1995-01-27|COLLECT COD|AIR|ar accounts. theodolites among the fu| +20329|372675|22676|6|26|45439.16|0.04|0.02|R|F|1994-12-27|1995-01-17|1995-01-18|COLLECT COD|FOB| requests boost furious| +20329|547809|35340|7|3|5570.34|0.07|0.08|R|F|1994-11-07|1994-12-15|1994-11-27|TAKE BACK RETURN|SHIP|ate fluffily. de| +20330|11986|36987|1|38|72123.24|0.02|0.08|N|O|1998-08-29|1998-08-01|1998-09-06|NONE|RAIL|slyly slyly regular packages. fluffily| +20330|439342|26867|2|8|10250.56|0.06|0.08|N|O|1998-08-08|1998-07-24|1998-08-28|DELIVER IN PERSON|FOB|cajole. decoys| +20330|16248|3749|3|1|1164.24|0.04|0.00|N|O|1998-09-06|1998-08-11|1998-09-13|TAKE BACK RETURN|RAIL|y. busily regular platelets | +20330|76346|38848|4|2|2644.68|0.06|0.06|N|O|1998-08-19|1998-08-22|1998-09-02|DELIVER IN PERSON|AIR|thely. carefully daring ideas should| +20330|142468|4971|5|37|55887.02|0.00|0.05|N|O|1998-10-09|1998-09-20|1998-11-05|COLLECT COD|MAIL|e furiously silent accounts. | +20330|449125|49126|6|6|6444.60|0.03|0.05|N|O|1998-06-27|1998-07-25|1998-07-08|COLLECT COD|REG AIR|ily. carefully unusual dependencies among | +20331|877356|27357|1|28|37332.68|0.04|0.00|R|F|1994-04-02|1994-05-04|1994-04-12|COLLECT COD|REG AIR|. quickly blithe din| +20331|706299|18814|2|47|61347.22|0.05|0.08|R|F|1994-05-17|1994-05-09|1994-06-15|TAKE BACK RETURN|FOB|into beans boost d| +20331|751372|1373|3|35|49816.90|0.08|0.02|R|F|1994-04-10|1994-04-12|1994-04-19|NONE|SHIP|ding to the e| +20331|293968|31484|4|14|27467.30|0.03|0.02|A|F|1994-06-10|1994-04-23|1994-06-30|COLLECT COD|TRUCK| sometimes bold deposits. final p| +20332|753412|40958|1|10|14653.80|0.10|0.01|N|O|1997-08-13|1997-06-24|1997-08-15|COLLECT COD|MAIL|sleep regul| +20332|592444|17467|2|39|59920.38|0.05|0.03|N|O|1997-06-18|1997-08-10|1997-07-14|DELIVER IN PERSON|TRUCK|n warthogs boost against the unusual| +20332|203266|40779|3|31|36246.75|0.07|0.06|N|O|1997-07-24|1997-06-28|1997-07-28|DELIVER IN PERSON|AIR|ly pending pinto beans| +20332|281496|6507|4|41|60576.68|0.10|0.01|N|O|1997-05-18|1997-07-04|1997-05-19|DELIVER IN PERSON|TRUCK|ns maintain slyly according to the pa| +20332|96818|9320|5|20|36296.20|0.02|0.05|N|O|1997-09-04|1997-08-05|1997-09-26|TAKE BACK RETURN|REG AIR|xpress asymptotes. blithely speci| +20332|213828|13829|6|41|71414.21|0.06|0.01|N|O|1997-05-21|1997-08-13|1997-06-04|DELIVER IN PERSON|SHIP|the careful| +20333|705480|17995|1|11|16339.95|0.09|0.05|A|F|1994-04-26|1994-04-28|1994-05-06|DELIVER IN PERSON|TRUCK| bold packages doze perman| +20333|988318|838|2|32|45000.64|0.09|0.03|A|F|1994-04-09|1994-04-27|1994-05-01|TAKE BACK RETURN|AIR|nooze. accounts of the dependenci| +20333|648167|10680|3|25|27878.25|0.10|0.05|R|F|1994-05-21|1994-05-13|1994-06-10|DELIVER IN PERSON|REG AIR|blithely express dep| +20333|728322|40837|4|2|2700.58|0.07|0.00|R|F|1994-06-17|1994-04-23|1994-07-17|COLLECT COD|FOB|olites. pendin| +20333|896532|21567|5|36|55025.64|0.03|0.04|R|F|1994-04-17|1994-04-09|1994-05-09|TAKE BACK RETURN|AIR| haggle. bold accou| +20334|329645|29646|1|26|43540.38|0.04|0.03|R|F|1993-03-28|1993-03-20|1993-04-16|TAKE BACK RETURN|MAIL|ing deposits alongside of the bold packa| +20334|334282|21801|2|42|55283.34|0.04|0.04|A|F|1993-04-06|1993-05-01|1993-04-09|COLLECT COD|TRUCK|ronic packages| +20334|266309|3825|3|17|21679.93|0.08|0.04|A|F|1993-06-13|1993-05-05|1993-06-25|COLLECT COD|MAIL|ng the blithely regular accounts. final | +20334|839354|1871|4|36|46559.16|0.00|0.00|R|F|1993-05-02|1993-04-20|1993-06-01|COLLECT COD|REG AIR|iously bold requests haggle across the f| +20334|18961|18962|5|25|46999.00|0.06|0.06|R|F|1993-06-01|1993-03-26|1993-06-15|NONE|FOB|nal deposits. blithely final ideas nag| +20334|662904|444|6|24|44804.88|0.10|0.02|R|F|1993-04-27|1993-04-07|1993-05-20|DELIVER IN PERSON|RAIL|regular excuses solve care| +20335|237922|12931|1|10|18599.10|0.00|0.08|N|O|1997-06-23|1997-06-24|1997-07-14|DELIVER IN PERSON|RAIL|y; final accounts detect carefully| +20335|743321|5836|2|14|19100.06|0.00|0.01|N|O|1997-06-07|1997-07-18|1997-06-24|TAKE BACK RETURN|RAIL|dencies about the quickly regular foxes h| +20335|983032|45552|3|22|24529.78|0.01|0.03|N|O|1997-06-17|1997-07-16|1997-06-24|NONE|SHIP|efully pending packages nag. final | +20360|791385|41386|1|41|60530.35|0.09|0.03|N|O|1995-08-25|1995-09-21|1995-09-10|DELIVER IN PERSON|TRUCK|gle carefully above the final,| +20360|799760|24791|2|19|35334.87|0.03|0.01|N|O|1995-11-18|1995-10-15|1995-11-23|NONE|TRUCK| accounts are furiously. slyly pending acc| +20361|206089|18594|1|40|39802.80|0.02|0.07|A|F|1994-04-11|1994-05-30|1994-04-20|NONE|MAIL|s. special deposits nag furiously f| +20361|730042|42557|2|19|20368.19|0.00|0.05|A|F|1994-07-01|1994-05-21|1994-07-17|TAKE BACK RETURN|FOB|nes except the express, regu| +20361|799642|37188|3|36|62697.96|0.07|0.03|A|F|1994-04-14|1994-07-04|1994-04-17|NONE|RAIL|its wake f| +20361|576039|13573|4|8|8920.08|0.06|0.06|R|F|1994-04-15|1994-07-05|1994-04-22|DELIVER IN PERSON|SHIP|ong the blithely final| +20361|485544|35545|5|4|6118.08|0.07|0.03|R|F|1994-06-25|1994-06-28|1994-07-19|NONE|MAIL|above the express instructions| +20361|530144|42655|6|26|30527.12|0.06|0.02|A|F|1994-07-09|1994-05-23|1994-07-18|NONE|MAIL|kages are fluffily ir| +20362|737704|37705|1|15|26125.05|0.08|0.02|N|O|1996-09-13|1996-10-04|1996-10-03|COLLECT COD|MAIL|en theodolites according to the spec| +20362|582908|7931|2|46|91580.48|0.02|0.06|N|O|1996-10-16|1996-10-16|1996-11-11|NONE|RAIL| ironic, pending | +20362|930673|43192|3|15|25554.45|0.00|0.01|N|O|1996-09-17|1996-10-27|1996-09-23|NONE|TRUCK|he regular | +20362|820108|32625|4|48|49346.88|0.08|0.01|N|O|1996-09-15|1996-09-24|1996-10-09|DELIVER IN PERSON|SHIP|sly final | +20362|548850|36381|5|34|64560.22|0.00|0.03|N|O|1996-09-04|1996-11-08|1996-09-22|DELIVER IN PERSON|MAIL|ic accounts. special, eve| +20362|517179|29690|6|14|16746.10|0.01|0.01|N|O|1996-11-17|1996-11-20|1996-12-07|COLLECT COD|REG AIR|refully regula| +20363|906770|19289|1|25|44418.25|0.01|0.00|R|F|1994-06-04|1994-05-25|1994-06-12|DELIVER IN PERSON|FOB|t ideas wake packages.| +20363|74519|24520|2|31|46298.81|0.02|0.05|R|F|1994-04-07|1994-04-23|1994-04-08|DELIVER IN PERSON|FOB|ss the bold requests. care| +20364|743565|6080|1|17|27345.01|0.10|0.07|N|O|1996-06-01|1996-05-26|1996-06-18|NONE|REG AIR|nal orbits. unusual theodolites| +20364|89677|39678|2|14|23333.38|0.03|0.03|N|O|1996-05-05|1996-06-04|1996-05-15|NONE|AIR|y! unusual package| +20365|3735|16236|1|3|4916.19|0.06|0.03|N|O|1998-05-03|1998-04-24|1998-05-14|DELIVER IN PERSON|TRUCK|unts sleep blithely toward t| +20365|768405|43436|2|49|72195.13|0.08|0.08|N|O|1998-06-30|1998-04-29|1998-07-14|DELIVER IN PERSON|RAIL|packages across the fina| +20365|582368|32369|3|16|23205.44|0.06|0.04|N|O|1998-06-24|1998-05-16|1998-06-27|TAKE BACK RETURN|FOB|te blithely slyly final somas. ev| +20365|845433|7950|4|9|12405.51|0.00|0.04|N|O|1998-03-26|1998-04-12|1998-04-12|TAKE BACK RETURN|SHIP|uffily even sauternes. blithely unusual i| +20365|178742|41246|5|32|58263.68|0.08|0.05|N|O|1998-04-23|1998-05-04|1998-05-06|TAKE BACK RETURN|TRUCK|e ironic platelets. carefu| +20366|373305|35813|1|34|46861.86|0.09|0.03|A|F|1994-01-09|1994-02-19|1994-01-12|DELIVER IN PERSON|MAIL|blithely express packages aff| +20366|135321|10326|2|4|5425.28|0.07|0.07|A|F|1994-03-05|1994-02-10|1994-04-04|DELIVER IN PERSON|MAIL|yly regular p| +20366|331786|19305|3|4|7271.08|0.07|0.05|A|F|1994-02-27|1994-01-14|1994-03-20|DELIVER IN PERSON|REG AIR|en foxes lose quickly. slyly sile| +20366|319208|6727|4|4|4908.76|0.02|0.03|A|F|1994-03-05|1994-02-08|1994-03-12|TAKE BACK RETURN|RAIL|y regular accounts. blithely regular acco| +20366|914714|39751|5|27|46674.09|0.07|0.00|A|F|1994-02-04|1994-02-10|1994-02-06|TAKE BACK RETURN|REG AIR|kages are according to | +20367|405940|18449|1|26|47993.92|0.04|0.02|A|F|1994-08-19|1994-09-02|1994-09-09|DELIVER IN PERSON|TRUCK|riously silent pinto bea| +20367|621531|21532|2|40|58100.00|0.01|0.03|A|F|1994-08-21|1994-08-30|1994-08-30|COLLECT COD|TRUCK|furiously bold accounts are blith| +20367|55171|42675|3|24|27028.08|0.05|0.06|A|F|1994-09-14|1994-08-06|1994-10-09|TAKE BACK RETURN|SHIP|ickly ironic dependencies: care| +20367|255927|43443|4|18|33892.38|0.01|0.02|A|F|1994-06-17|1994-07-15|1994-06-18|COLLECT COD|SHIP|quests according to the fur| +20367|361800|36815|5|13|24203.27|0.03|0.04|A|F|1994-07-21|1994-08-04|1994-08-03|TAKE BACK RETURN|FOB|ic, express requests a| +20392|778497|41013|1|45|70895.70|0.01|0.00|A|F|1993-06-03|1993-05-11|1993-07-03|TAKE BACK RETURN|AIR| instructions cajole slyly re| +20393|240075|40076|1|46|46692.76|0.03|0.06|N|O|1997-10-12|1997-11-09|1997-11-03|TAKE BACK RETURN|REG AIR|nts about the quickl| +20393|929869|4906|2|4|7595.28|0.04|0.01|N|O|1997-12-13|1997-12-15|1997-12-16|NONE|MAIL| among the slyly | +20393|307936|7937|3|24|46654.08|0.07|0.00|N|O|1998-01-02|1997-10-26|1998-01-11|TAKE BACK RETURN|RAIL|uctions: slyly unusual decoys cajole s| +20393|478386|3405|4|20|27287.20|0.01|0.03|N|O|1997-12-09|1997-10-22|1998-01-02|NONE|TRUCK|ully sometimes bold requests. slyly even d| +20393|217647|30152|5|13|20340.19|0.06|0.01|N|O|1997-11-15|1997-12-19|1997-11-21|DELIVER IN PERSON|RAIL|ven pinto beans wake carefully alongside of| +20393|978640|28641|6|8|13748.80|0.07|0.08|N|O|1997-11-09|1997-10-31|1997-11-16|COLLECT COD|AIR|ly regular requests wake fur| +20393|749|750|7|50|82487.00|0.05|0.08|N|O|1997-12-27|1997-11-25|1998-01-07|NONE|SHIP|entiments. caref| +20394|572037|9571|1|26|28834.26|0.09|0.04|N|O|1997-04-23|1997-04-08|1997-05-01|DELIVER IN PERSON|FOB|egular requests| +20394|225202|37707|2|12|13526.28|0.00|0.02|N|O|1997-03-09|1997-03-04|1997-03-10|DELIVER IN PERSON|AIR|ress platelets are closely. sp| +20395|236372|48877|1|19|24858.84|0.07|0.07|N|O|1997-11-14|1997-10-24|1997-11-24|COLLECT COD|AIR|ns. quickly ironic pinto| +20395|688148|662|2|32|36355.52|0.09|0.02|N|O|1997-10-03|1997-11-22|1997-10-07|DELIVER IN PERSON|RAIL|nce the blithely even instruc| +20395|692560|30100|3|5|7762.65|0.02|0.02|N|O|1997-11-06|1997-11-16|1997-12-06|TAKE BACK RETURN|RAIL|kly regular request| +20395|848716|23749|4|5|8323.35|0.00|0.01|N|O|1997-10-19|1997-10-10|1997-10-24|NONE|MAIL|regular accounts! reque| +20395|358183|45705|5|28|34752.76|0.05|0.08|N|O|1997-11-26|1997-11-20|1997-12-18|DELIVER IN PERSON|TRUCK|ntegrate about the furi| +20396|113225|13226|1|44|54481.68|0.03|0.00|R|F|1995-01-29|1994-12-09|1995-02-06|DELIVER IN PERSON|TRUCK|nts are from the special accounts. express | +20396|969868|19869|2|42|81388.44|0.06|0.03|A|F|1995-01-04|1995-01-26|1995-02-01|COLLECT COD|REG AIR|s mold acc| +20396|564951|2485|3|37|74589.41|0.02|0.06|R|F|1994-11-19|1994-12-11|1994-11-21|DELIVER IN PERSON|AIR|ly pending pinto| +20396|127686|27687|4|10|17136.80|0.05|0.02|R|F|1994-11-21|1995-01-24|1994-12-07|TAKE BACK RETURN|REG AIR|uests boost fluffily across the even,| +20396|15488|27989|5|3|4210.44|0.08|0.06|R|F|1994-12-27|1995-01-04|1995-01-10|NONE|SHIP|s theodolites wake blithel| +20397|395182|32704|1|26|33206.42|0.07|0.00|R|F|1993-02-05|1992-12-30|1993-02-16|TAKE BACK RETURN|REG AIR|regular instruct| +20398|470866|20867|1|18|33063.12|0.03|0.07|N|O|1995-10-31|1995-09-18|1995-11-28|NONE|AIR|cuses run. fluffily ironic ideas boost c| +20398|834008|9041|2|50|47098.00|0.00|0.05|N|O|1995-08-07|1995-09-12|1995-08-12|TAKE BACK RETURN|SHIP|ular instructions. carefully si| +20399|285595|10606|1|26|41095.08|0.09|0.04|N|O|1997-12-15|1998-01-06|1998-01-10|COLLECT COD|AIR| regular deposits nag. slyly pendi| +20399|983659|21217|2|21|36594.81|0.04|0.00|N|O|1998-01-20|1997-11-25|1998-02-05|COLLECT COD|TRUCK|. furiously special req| +20399|355908|30923|3|4|7855.56|0.04|0.05|N|O|1997-11-03|1997-12-25|1997-11-22|NONE|AIR|e slyly quickly bold accounts.| +20399|733963|21506|4|7|13978.51|0.06|0.00|N|O|1998-02-09|1997-11-19|1998-02-15|DELIVER IN PERSON|MAIL|d excuses. blithely regular pin| +20399|715155|27670|5|10|11701.20|0.10|0.05|N|O|1997-10-23|1998-01-16|1997-11-14|NONE|MAIL|lar pains. bold platelets wake sly| +20399|607624|7625|6|50|76579.50|0.02|0.07|N|O|1998-01-09|1997-12-21|1998-02-03|COLLECT COD|MAIL|ar accounts affix car| +20424|265334|2850|1|34|44176.88|0.05|0.06|A|F|1995-06-12|1995-05-16|1995-06-16|COLLECT COD|REG AIR| ironic pinto beans | +20424|459288|34307|2|47|58621.22|0.03|0.07|R|F|1995-05-20|1995-05-23|1995-05-21|COLLECT COD|SHIP|ly pending requests against the c| +20425|753285|28316|1|33|44162.25|0.08|0.08|R|F|1993-04-18|1993-02-19|1993-04-29|TAKE BACK RETURN|AIR|furiously express excuses. quickly| +20425|449843|24860|2|19|34063.58|0.02|0.00|A|F|1993-01-01|1993-03-12|1993-01-09|TAKE BACK RETURN|SHIP|aring instructions. final requests dazzle.| +20425|497619|22638|3|4|6466.36|0.00|0.05|R|F|1992-12-24|1993-02-22|1992-12-31|COLLECT COD|RAIL|en pinto beans? slyly regular ideas hagg| +20425|479255|41765|4|18|22216.14|0.03|0.03|R|F|1993-04-10|1993-02-26|1993-05-10|COLLECT COD|SHIP| packages sleep furiously. quickly expre| +20425|826152|1185|5|37|39890.07|0.06|0.05|A|F|1993-02-05|1993-03-14|1993-02-18|COLLECT COD|SHIP|accounts sleep furiously express, final in| +20425|125544|25545|6|18|28251.72|0.05|0.00|R|F|1993-02-17|1993-02-23|1993-03-16|NONE|TRUCK|g the carefully ruthless foxes. fluf| +20426|442032|42033|1|46|44804.46|0.03|0.08|A|F|1993-08-10|1993-09-16|1993-08-20|TAKE BACK RETURN|TRUCK|, unusual pinto be| +20426|231375|6384|2|32|41803.52|0.10|0.07|R|F|1993-12-03|1993-09-30|1993-12-08|TAKE BACK RETURN|FOB|. slyly final grouches wake quickly. ir| +20426|709030|9031|3|46|47794.00|0.09|0.01|A|F|1993-09-14|1993-10-26|1993-09-21|TAKE BACK RETURN|MAIL|y special packa| +20426|658279|33306|4|33|40828.92|0.00|0.00|A|F|1993-11-13|1993-10-02|1993-11-19|COLLECT COD|REG AIR|lly final excuses. | +20426|683284|20824|5|38|48155.50|0.03|0.03|R|F|1993-09-23|1993-09-19|1993-10-19|NONE|AIR|nst the dependencies. furiously ev| +20426|937908|427|6|46|89509.56|0.07|0.03|R|F|1993-08-29|1993-10-23|1993-09-14|NONE|MAIL|ss packages are carefully along| +20427|626662|14199|1|24|38127.12|0.02|0.00|R|F|1992-04-19|1992-05-03|1992-05-18|COLLECT COD|FOB| accounts will b| +20427|302841|27854|2|10|18438.30|0.02|0.07|A|F|1992-06-09|1992-03-31|1992-06-20|TAKE BACK RETURN|RAIL|nal instructions. dependencie| +20427|833480|8513|3|30|42403.20|0.07|0.07|A|F|1992-03-24|1992-04-20|1992-03-30|DELIVER IN PERSON|RAIL|sublate about the blithely ironi| +20427|285924|48430|4|17|32468.47|0.05|0.00|R|F|1992-03-01|1992-04-26|1992-03-25|COLLECT COD|TRUCK|gly about the | +20427|509616|47147|5|30|48767.70|0.03|0.07|R|F|1992-05-12|1992-03-31|1992-05-20|TAKE BACK RETURN|TRUCK|ts. even pinto beans are along the fluffi| +20428|355152|30167|1|13|15692.82|0.04|0.06|A|F|1993-02-05|1993-01-26|1993-02-26|DELIVER IN PERSON|FOB|ironic tithes. daring account| +20428|38176|38177|2|11|12255.87|0.03|0.04|A|F|1993-02-05|1993-01-13|1993-02-08|NONE|RAIL|ironic, ironic deposits c| +20428|614447|14448|3|6|8168.46|0.05|0.01|R|F|1993-02-11|1993-01-19|1993-02-16|COLLECT COD|RAIL|n foxes was blithel| +20428|10460|10461|4|6|8222.76|0.08|0.00|R|F|1993-03-07|1993-01-03|1993-03-28|DELIVER IN PERSON|FOB| theodolites are | +20428|791062|3578|5|6|6918.18|0.06|0.07|R|F|1993-02-09|1993-01-28|1993-02-17|TAKE BACK RETURN|MAIL|es. regular ideas b| +20429|358833|33848|1|23|43511.86|0.07|0.01|R|F|1992-09-03|1992-06-11|1992-10-01|COLLECT COD|REG AIR| special acco| +20429|903833|16352|2|8|14694.32|0.03|0.06|A|F|1992-05-18|1992-06-18|1992-06-03|DELIVER IN PERSON|FOB|ages are furiously slyly unusual id| +20429|707566|20081|3|13|20455.89|0.00|0.06|R|F|1992-08-09|1992-06-18|1992-08-29|TAKE BACK RETURN|TRUCK|y final theodolites. fina| +20429|48793|11294|4|19|33094.01|0.09|0.00|A|F|1992-06-18|1992-06-28|1992-07-03|NONE|AIR| instructions| +20429|53037|15539|5|3|2970.09|0.02|0.04|R|F|1992-05-14|1992-06-30|1992-05-17|COLLECT COD|RAIL|quickly bold orbits nag sometime| +20429|383427|33428|6|32|48333.12|0.00|0.03|R|F|1992-08-19|1992-07-10|1992-09-01|COLLECT COD|FOB| special pains. regular, sp| +20429|253721|28732|7|12|20096.52|0.10|0.08|R|F|1992-05-12|1992-07-13|1992-05-29|TAKE BACK RETURN|FOB| regular hockey players are carefu| +20430|276792|39298|1|32|56600.96|0.10|0.02|R|F|1994-06-26|1994-07-07|1994-07-23|DELIVER IN PERSON|AIR|o beans. packages boost ruthl| +20431|893498|31050|1|36|53692.20|0.10|0.00|R|F|1993-06-21|1993-05-18|1993-06-25|DELIVER IN PERSON|AIR|ges use furiously. unusu| +20431|12969|12970|2|46|86570.16|0.00|0.02|R|F|1993-07-20|1993-07-07|1993-08-08|TAKE BACK RETURN|SHIP|p carefully after the c| +20431|963797|26317|3|43|80012.25|0.03|0.05|R|F|1993-08-04|1993-06-13|1993-08-20|TAKE BACK RETURN|FOB| deposits. carefully| +20431|534454|9475|4|38|56560.34|0.02|0.00|R|F|1993-05-22|1993-06-22|1993-05-25|COLLECT COD|TRUCK|gside of the slyly | +20431|552733|40267|5|34|60714.14|0.08|0.05|A|F|1993-05-19|1993-06-16|1993-06-13|TAKE BACK RETURN|REG AIR|blithely ironic dolphins wake | +20431|775309|12855|6|15|20764.05|0.06|0.00|R|F|1993-05-28|1993-05-28|1993-06-17|TAKE BACK RETURN|AIR|ar excuses wak| +20456|917299|17300|1|6|7897.50|0.10|0.02|R|F|1994-08-31|1994-09-25|1994-09-14|COLLECT COD|SHIP|sleep furiously even packag| +20456|33228|33229|2|3|3483.66|0.00|0.08|R|F|1994-09-10|1994-09-03|1994-10-04|NONE|TRUCK|fluffily even dugouts. fluffily iron| +20456|449929|12438|3|30|56367.00|0.02|0.02|R|F|1994-09-15|1994-09-25|1994-09-21|TAKE BACK RETURN|RAIL|s wake ironic, even asympt| +20456|955320|42878|4|15|20629.20|0.08|0.00|A|F|1994-08-26|1994-08-12|1994-09-11|TAKE BACK RETURN|AIR| ideas sleep furiously unusual depe| +20457|566829|16830|1|9|17062.20|0.06|0.06|R|F|1995-02-25|1994-12-20|1995-03-13|TAKE BACK RETURN|FOB|g to the slyly final accounts serve sl| +20458|301725|14232|1|30|51801.30|0.09|0.01|N|O|1998-10-22|1998-10-04|1998-11-10|COLLECT COD|TRUCK|arefully bold pa| +20458|77202|14706|2|18|21225.60|0.02|0.07|N|O|1998-08-05|1998-08-16|1998-08-25|TAKE BACK RETURN|SHIP|ar instructions. pending, unusual accounts | +20458|531287|6308|3|18|23728.68|0.05|0.06|N|O|1998-09-07|1998-09-13|1998-10-02|TAKE BACK RETURN|FOB|ly. slyly regular d| +20458|330315|5328|4|14|18834.20|0.09|0.07|N|O|1998-08-28|1998-08-20|1998-09-03|DELIVER IN PERSON|MAIL|le. regular packages t| +20459|310232|35245|1|22|27328.84|0.09|0.04|A|F|1993-06-27|1993-08-19|1993-07-05|COLLECT COD|RAIL|fluffily. | +20459|56101|31104|2|16|16913.60|0.02|0.01|A|F|1993-09-06|1993-08-19|1993-10-04|TAKE BACK RETURN|SHIP|te furiously slyly sile| +20459|888349|25901|3|35|46805.50|0.08|0.08|A|F|1993-07-04|1993-07-11|1993-07-11|TAKE BACK RETURN|TRUCK|y pending dugouts. slyly ironic deposi| +20460|146920|34427|1|22|43272.24|0.09|0.04|R|F|1994-02-24|1994-02-01|1994-03-17|TAKE BACK RETURN|MAIL|er the deposits. express packages detect | +20460|279561|17077|2|6|9243.30|0.07|0.04|R|F|1993-12-16|1994-01-10|1993-12-22|NONE|REG AIR|ions-- unusual| +20460|580156|17690|3|39|48209.07|0.00|0.06|A|F|1993-12-24|1994-02-25|1994-01-10|NONE|SHIP|ests cajole quic| +20461|436056|23581|1|44|43649.32|0.00|0.08|R|F|1995-02-03|1994-12-11|1995-02-24|DELIVER IN PERSON|AIR|cross the bold, ev| +20461|779792|4823|2|47|87972.72|0.09|0.03|R|F|1995-02-02|1994-12-03|1995-02-27|TAKE BACK RETURN|RAIL|d the unusual, ev| +20462|177791|2798|1|6|11212.74|0.05|0.05|A|F|1993-04-03|1993-03-19|1993-04-20|NONE|SHIP|riously slyly u| +20463|728807|3836|1|44|80773.88|0.04|0.00|R|F|1992-06-03|1992-07-02|1992-06-05|COLLECT COD|TRUCK|ounts boost blit| +20463|43532|18533|2|24|35412.72|0.06|0.01|A|F|1992-07-28|1992-07-07|1992-08-21|NONE|TRUCK|iously ruthless, express platelets. r| +20463|628087|15624|3|30|30451.50|0.04|0.06|R|F|1992-07-12|1992-06-05|1992-07-22|NONE|SHIP| boldly final accounts ac| +20488|779406|41922|1|29|43075.73|0.06|0.03|R|F|1993-07-02|1993-08-25|1993-07-26|DELIVER IN PERSON|SHIP|otes. stealthily regular i| +20488|465550|28060|2|36|54559.08|0.03|0.08|A|F|1993-06-08|1993-08-07|1993-06-28|TAKE BACK RETURN|AIR|ickly. fluffily regular requests play sl| +20488|483895|21423|3|48|90185.76|0.08|0.07|A|F|1993-09-03|1993-08-05|1993-09-22|NONE|TRUCK|g instructions use against the unusua| +20488|821541|9090|4|4|5850.00|0.06|0.00|A|F|1993-09-12|1993-07-10|1993-10-08|DELIVER IN PERSON|RAIL|use fluffily carefully ex| +20488|628522|28523|5|32|46415.68|0.05|0.00|R|F|1993-09-06|1993-07-10|1993-09-30|COLLECT COD|REG AIR|sits across the asymptotes sleep carefully| +20488|565320|15321|6|39|54026.70|0.08|0.08|R|F|1993-06-12|1993-08-16|1993-06-21|TAKE BACK RETURN|TRUCK| to the even requests. furiously | +20489|279064|4075|1|43|44851.15|0.10|0.08|R|F|1994-06-08|1994-03-24|1994-07-03|NONE|REG AIR|ys sublate furiously| +20489|213485|998|2|45|62931.15|0.01|0.02|R|F|1994-03-22|1994-04-11|1994-04-12|TAKE BACK RETURN|RAIL|ending ideas about the spec| +20489|36891|49392|3|16|29246.24|0.05|0.01|A|F|1994-02-28|1994-04-18|1994-03-19|DELIVER IN PERSON|MAIL|egular foxes. sl| +20489|11743|11744|4|39|64534.86|0.09|0.08|A|F|1994-05-29|1994-04-17|1994-06-17|DELIVER IN PERSON|TRUCK|s. doggedly regular requests haggle fl| +20489|356889|6890|5|43|83672.41|0.03|0.01|R|F|1994-06-18|1994-04-23|1994-06-19|TAKE BACK RETURN|AIR|dencies after the furiously pe| +20489|222895|35400|6|3|5453.64|0.08|0.01|A|F|1994-05-24|1994-05-02|1994-06-10|COLLECT COD|SHIP|ccording to | +20489|183340|20850|7|40|56933.60|0.01|0.00|R|F|1994-02-21|1994-04-10|1994-02-26|TAKE BACK RETURN|RAIL|y regular reques| +20490|391453|3961|1|3|4633.32|0.03|0.02|A|F|1993-07-22|1993-08-21|1993-08-10|DELIVER IN PERSON|FOB|y along the quickly| +20490|140608|40609|2|29|47809.40|0.09|0.05|A|F|1993-10-18|1993-09-09|1993-11-11|DELIVER IN PERSON|REG AIR| furiously pe| +20491|290386|27902|1|34|46796.58|0.01|0.01|N|O|1995-07-23|1995-09-07|1995-08-07|COLLECT COD|FOB|cross the final, | +20491|504046|16557|2|31|32550.62|0.03|0.05|N|O|1995-07-21|1995-10-05|1995-08-10|COLLECT COD|RAIL|rate according to the slyl| +20491|500862|38393|3|41|76376.44|0.02|0.06|N|O|1995-10-29|1995-08-24|1995-11-24|COLLECT COD|MAIL|requests are blithely dependencies. blithe| +20491|972542|47581|4|10|16145.00|0.07|0.07|N|O|1995-08-08|1995-10-03|1995-08-14|COLLECT COD|RAIL|sly unusual pinto b| +20492|507341|19852|1|48|64719.36|0.09|0.04|N|O|1996-12-28|1997-02-26|1997-01-23|NONE|MAIL| requests | +20492|874756|37274|2|14|24229.94|0.05|0.08|N|O|1997-03-13|1997-01-16|1997-04-09|COLLECT COD|SHIP|lways carefully ironic instr| +20492|21916|9417|3|32|58813.12|0.09|0.06|N|O|1997-03-04|1997-03-04|1997-03-18|NONE|FOB|rs. final, even dep| +20492|331595|19114|4|42|68316.36|0.01|0.02|N|O|1997-01-25|1997-01-15|1997-02-17|TAKE BACK RETURN|FOB|s. requests are caref| +20492|111915|49422|5|38|73222.58|0.00|0.07|N|O|1997-02-12|1997-01-17|1997-02-22|DELIVER IN PERSON|FOB|s. fluffily regular foxes cajole slyly| +20493|553769|41303|1|49|89314.26|0.07|0.06|R|F|1994-02-19|1994-03-10|1994-03-01|COLLECT COD|REG AIR|equests at the carefully express reque| +20493|195445|45446|2|44|67779.36|0.06|0.04|R|F|1994-03-23|1994-03-08|1994-04-02|DELIVER IN PERSON|MAIL|. slyly express excuses cajole id| +20493|833218|45735|3|8|9209.36|0.00|0.01|R|F|1994-01-02|1994-03-21|1994-01-25|DELIVER IN PERSON|RAIL|carefully bold packages use blithe| +20493|889179|26731|4|18|21026.34|0.04|0.00|R|F|1994-04-05|1994-02-26|1994-04-22|DELIVER IN PERSON|REG AIR| the blithely fina| +20493|421766|9291|5|6|10126.44|0.08|0.08|R|F|1994-03-16|1994-03-22|1994-04-08|TAKE BACK RETURN|AIR|ions boost. theod| +20494|179916|17426|1|11|21955.01|0.04|0.05|N|O|1997-07-30|1997-07-04|1997-08-27|TAKE BACK RETURN|SHIP|eposits are carefully p| +20494|832725|7758|2|24|39784.32|0.05|0.02|N|O|1997-06-29|1997-06-18|1997-07-26|COLLECT COD|TRUCK|pending, silent foxes| +20494|607683|7684|3|1|1590.65|0.06|0.02|N|O|1997-05-12|1997-06-18|1997-05-24|NONE|TRUCK|fluffily slyly ironic accounts. fina| +20495|512835|37856|1|19|35108.39|0.10|0.01|N|O|1995-10-26|1995-10-11|1995-11-08|NONE|REG AIR|e furiously thinly ironic attainme| +20495|205902|30911|2|10|18078.90|0.10|0.03|N|O|1995-11-19|1995-09-22|1995-12-14|DELIVER IN PERSON|MAIL|ut the slyly pending accounts detect blit| +20495|579881|4904|3|40|78434.40|0.09|0.02|N|O|1995-09-21|1995-10-10|1995-10-12|TAKE BACK RETURN|REG AIR| cajole quickly alongside o| +20495|50688|25691|4|4|6554.72|0.10|0.02|N|O|1995-09-29|1995-09-30|1995-10-11|DELIVER IN PERSON|RAIL|express re| +20495|900224|225|5|31|37949.58|0.10|0.01|N|O|1995-11-02|1995-10-10|1995-11-26|DELIVER IN PERSON|SHIP|s are furiously dogged| +20495|55544|30547|6|7|10496.78|0.09|0.05|N|O|1995-09-29|1995-11-15|1995-10-08|DELIVER IN PERSON|RAIL|t foxes. ironic, reg| +20495|520482|8013|7|5|7512.30|0.05|0.02|N|O|1995-10-08|1995-10-30|1995-10-26|DELIVER IN PERSON|REG AIR|uriously regular d| +20520|732017|19560|1|44|46155.12|0.06|0.01|N|O|1998-02-24|1998-01-07|1998-03-20|DELIVER IN PERSON|FOB|ously regular pac| +20520|997410|22449|2|44|66324.28|0.04|0.01|N|O|1997-11-20|1997-12-24|1997-12-05|COLLECT COD|SHIP| carefully even acc| +20520|461180|36199|3|40|45646.40|0.03|0.01|N|O|1998-02-17|1997-12-15|1998-03-17|DELIVER IN PERSON|REG AIR|ts. blithely careful ideas hagg| +20520|51546|14048|4|35|52413.90|0.10|0.08|N|O|1997-12-16|1997-12-22|1998-01-04|DELIVER IN PERSON|MAIL|gular accounts use am| +20521|683253|33254|1|28|34614.16|0.08|0.03|N|O|1997-10-07|1997-09-20|1997-10-31|NONE|SHIP|ng packages eat. carefully even pinto be| +20521|424850|24851|2|19|33721.77|0.09|0.00|N|O|1997-08-27|1997-10-07|1997-09-25|COLLECT COD|FOB| ironic packages cajole furiously f| +20521|445643|20660|3|27|42892.74|0.04|0.01|N|O|1997-10-15|1997-11-04|1997-11-03|TAKE BACK RETURN|MAIL|ccounts impress c| +20521|919766|44803|4|50|89286.00|0.04|0.04|N|O|1997-11-27|1997-09-24|1997-12-24|TAKE BACK RETURN|TRUCK|ly pending platelets serve c| +20522|499800|24819|1|13|23397.14|0.00|0.08|N|O|1998-09-19|1998-10-09|1998-09-21|NONE|REG AIR|ly alongside of| +20522|133930|33931|2|38|74629.34|0.05|0.08|N|O|1998-11-13|1998-09-23|1998-11-17|TAKE BACK RETURN|RAIL|le alongside of the un| +20522|952316|2317|3|21|28733.67|0.08|0.00|N|O|1998-07-25|1998-09-27|1998-08-22|DELIVER IN PERSON|MAIL|lithely regular platelets. quickly expres| +20522|562359|37382|4|3|4263.99|0.04|0.07|N|O|1998-11-19|1998-10-01|1998-12-07|NONE|RAIL|olphins. carefully even req| +20522|559486|34509|5|9|13909.14|0.00|0.03|N|O|1998-09-08|1998-10-19|1998-10-08|TAKE BACK RETURN|TRUCK|gainst the spe| +20523|416357|16358|1|50|63666.50|0.00|0.04|N|O|1995-08-20|1995-08-05|1995-09-10|COLLECT COD|RAIL|elets are slyl| +20523|697896|35436|2|4|7575.44|0.05|0.00|N|O|1995-08-09|1995-09-01|1995-08-12|TAKE BACK RETURN|SHIP|dencies are quickly. final| +20524|759981|47527|1|26|53064.70|0.07|0.01|N|O|1998-09-29|1998-07-09|1998-10-17|DELIVER IN PERSON|FOB|ully special theodoli| +20524|998268|10788|2|41|56015.02|0.09|0.04|N|O|1998-08-26|1998-08-02|1998-08-28|COLLECT COD|TRUCK|. blithely regul| +20524|889898|14933|3|28|52859.80|0.09|0.06|N|O|1998-09-25|1998-08-23|1998-10-08|NONE|REG AIR|heodolites are blithely. blithely regul| +20525|496045|21064|1|20|20820.40|0.07|0.07|N|O|1998-01-21|1997-10-31|1998-02-09|DELIVER IN PERSON|RAIL|ong the deposits ca| +20525|20437|32938|2|25|33935.75|0.08|0.08|N|O|1997-11-03|1997-12-06|1997-11-18|TAKE BACK RETURN|AIR|into beans. blithely final packag| +20525|474256|36766|3|46|56590.58|0.02|0.03|N|O|1998-01-04|1997-12-14|1998-01-19|TAKE BACK RETURN|TRUCK|ifts. slyly fin| +20525|811455|49004|4|31|42358.71|0.09|0.05|N|O|1997-11-13|1997-12-23|1997-12-10|TAKE BACK RETURN|AIR|ges. regular, special excuses | +20525|120478|32981|5|33|49449.51|0.03|0.01|N|O|1997-11-19|1997-11-01|1997-11-25|TAKE BACK RETURN|RAIL|ely regular platelets. furiously quiet| +20526|704789|4790|1|9|16143.75|0.07|0.05|A|F|1993-06-10|1993-05-13|1993-06-20|TAKE BACK RETURN|MAIL|c foxes. final | +20527|965973|15974|1|15|30583.95|0.01|0.01|N|O|1995-11-21|1995-12-09|1995-12-13|DELIVER IN PERSON|MAIL|refully regular accounts haggle furiously | +20527|92864|42865|2|49|90986.14|0.01|0.06|N|O|1995-12-27|1995-11-01|1995-12-31|NONE|TRUCK|al theodolites. regular, special ideas| +20552|508477|8478|1|42|62388.90|0.07|0.07|N|O|1997-10-05|1997-10-07|1997-11-01|TAKE BACK RETURN|AIR|s between the fu| +20552|958920|33959|2|35|69260.80|0.06|0.04|N|O|1997-11-15|1997-09-09|1997-11-16|NONE|AIR|lyly express theodolites aff| +20553|215910|15911|1|16|29214.40|0.10|0.02|R|F|1993-04-25|1993-04-09|1993-05-21|COLLECT COD|REG AIR|lyly even Tiresia| +20553|791104|28650|2|26|31071.82|0.00|0.00|R|F|1993-06-15|1993-03-31|1993-07-15|NONE|TRUCK|its. slyly regu| +20553|78252|15756|3|33|40598.25|0.03|0.04|A|F|1993-03-09|1993-04-29|1993-03-27|TAKE BACK RETURN|TRUCK|nstructions promise fluffily after the qu| +20553|173128|48135|4|21|25223.52|0.07|0.04|A|F|1993-03-25|1993-04-18|1993-03-29|NONE|REG AIR|yly pending excuses. pinto beans sleep qui| +20553|761609|36640|5|5|8352.85|0.01|0.02|R|F|1993-04-14|1993-05-16|1993-05-09|DELIVER IN PERSON|SHIP|rding to t| +20553|354880|4881|6|33|63850.71|0.00|0.05|A|F|1993-06-08|1993-05-24|1993-06-23|NONE|FOB|ccounts. slyly i| +20554|335399|47906|1|25|35859.50|0.09|0.07|A|F|1992-09-26|1992-09-03|1992-10-12|NONE|TRUCK|s. furiously even request| +20554|35930|35931|2|5|9329.65|0.06|0.04|R|F|1992-08-18|1992-09-04|1992-09-04|COLLECT COD|RAIL|e across the blithely ironic p| +20554|865920|40955|3|21|39603.48|0.04|0.04|A|F|1992-07-17|1992-09-30|1992-08-08|DELIVER IN PERSON|FOB|st the slyly even theodolites cajole| +20554|505336|42867|4|25|33532.75|0.00|0.00|R|F|1992-08-08|1992-08-05|1992-09-06|TAKE BACK RETURN|SHIP|ronic, even d| +20554|176390|38894|5|38|55722.82|0.02|0.08|R|F|1992-09-29|1992-08-17|1992-10-03|TAKE BACK RETURN|RAIL|quests nag ca| +20554|585232|22766|6|16|21075.36|0.06|0.01|R|F|1992-10-30|1992-08-06|1992-11-03|DELIVER IN PERSON|MAIL|theodolites haggl| +20554|982370|7409|7|47|68259.51|0.10|0.08|A|F|1992-11-03|1992-10-04|1992-12-01|TAKE BACK RETURN|FOB|riously ironic depos| +20555|682336|19876|1|39|51413.70|0.10|0.07|A|F|1992-09-11|1992-10-20|1992-10-07|DELIVER IN PERSON|TRUCK|s are. regular, ironic foxes breach abou| +20555|5721|30722|2|48|78082.56|0.05|0.05|R|F|1992-09-21|1992-09-24|1992-10-10|NONE|REG AIR|hely sly ideas wake| +20555|140795|40796|3|36|66088.44|0.09|0.06|A|F|1992-10-25|1992-09-11|1992-11-17|DELIVER IN PERSON|FOB|e furiously. iro| +20555|338638|38639|4|37|62034.94|0.04|0.08|A|F|1992-08-08|1992-09-30|1992-08-11|NONE|MAIL|tructions about the re| +20555|477383|39893|5|35|47612.60|0.01|0.00|R|F|1992-09-04|1992-09-17|1992-10-03|TAKE BACK RETURN|MAIL|uses. accounts lose agai| +20556|502121|27142|1|32|35939.20|0.00|0.03|N|F|1995-06-12|1995-06-01|1995-06-26|NONE|REG AIR|mptotes detect furiously dependencies| +20556|133127|33128|2|17|19722.04|0.02|0.01|A|F|1995-04-23|1995-06-23|1995-05-23|TAKE BACK RETURN|FOB|cial courts u| +20557|138229|13234|1|40|50688.80|0.03|0.00|N|O|1995-09-11|1995-09-30|1995-09-20|COLLECT COD|MAIL|ecial deposi| +20557|204151|29160|2|35|36929.90|0.00|0.03|N|O|1995-08-15|1995-09-17|1995-08-24|COLLECT COD|TRUCK|thrash carefully about | +20557|165677|28181|3|13|22654.71|0.00|0.06|N|O|1995-08-26|1995-09-05|1995-09-25|TAKE BACK RETURN|AIR|ely regular | +20557|530771|30772|4|37|66664.75|0.01|0.05|N|O|1995-08-26|1995-08-31|1995-09-10|NONE|MAIL| final pinto beans use cl| +20557|659974|22488|5|44|85093.36|0.10|0.00|N|O|1995-07-14|1995-09-12|1995-07-25|NONE|REG AIR|express depo| +20557|166830|16831|6|43|81563.69|0.04|0.04|N|O|1995-09-07|1995-10-05|1995-09-17|TAKE BACK RETURN|SHIP|s thrash quickly. unusual, fina| +20558|349917|49918|1|12|23602.80|0.01|0.00|N|O|1996-05-25|1996-04-26|1996-06-04|COLLECT COD|REG AIR|ully idle instructions. care| +20559|398553|36075|1|41|67713.14|0.01|0.05|N|O|1998-03-21|1998-03-26|1998-03-25|TAKE BACK RETURN|TRUCK|ckages are carefully along the bol| +20559|471538|34048|2|17|25661.67|0.08|0.07|N|O|1998-04-07|1998-04-28|1998-05-07|COLLECT COD|MAIL|requests nag carefully of the speci| +20584|243791|18800|1|2|3469.56|0.00|0.07|R|F|1992-09-21|1992-10-02|1992-10-05|NONE|SHIP|le carefully dependenc| +20584|391770|29292|2|49|91226.24|0.04|0.06|A|F|1992-12-03|1992-11-07|1992-12-13|DELIVER IN PERSON|FOB|xpress accounts n| +20585|537038|12059|1|8|8600.08|0.06|0.04|R|F|1993-02-27|1993-04-22|1993-02-28|COLLECT COD|SHIP|y ironic foxes use furiously furious| +20585|981616|19174|2|22|37346.54|0.06|0.07|R|F|1993-02-12|1993-03-17|1993-02-28|NONE|REG AIR|er the caref| +20586|694746|32286|1|22|38295.62|0.05|0.07|R|F|1994-07-16|1994-08-19|1994-07-31|TAKE BACK RETURN|RAIL|eposits. regular depende| +20586|591665|16688|2|17|29862.88|0.04|0.01|A|F|1994-07-28|1994-08-07|1994-07-29|COLLECT COD|REG AIR|egular instructions boost qu| +20586|99059|24062|3|3|3174.15|0.02|0.00|R|F|1994-07-13|1994-08-07|1994-08-02|DELIVER IN PERSON|AIR|ven asymptotes nag aft| +20586|881314|18866|4|34|44039.18|0.06|0.01|R|F|1994-07-18|1994-07-05|1994-08-08|TAKE BACK RETURN|SHIP|arefully. regular excuses after the silent| +20586|235916|35917|5|49|90743.10|0.05|0.03|A|F|1994-08-14|1994-08-19|1994-08-21|COLLECT COD|RAIL|s pinto beans maintain | +20587|888504|13539|1|40|59698.40|0.06|0.06|A|F|1992-06-13|1992-07-08|1992-07-07|COLLECT COD|MAIL|ts affix along the ruthlessly regular a| +20587|82445|19949|2|21|29976.24|0.00|0.02|R|F|1992-06-14|1992-05-24|1992-06-23|NONE|AIR|dolites nag blithely r| +20587|647643|10156|3|38|60443.18|0.08|0.02|R|F|1992-04-19|1992-05-21|1992-05-03|COLLECT COD|AIR|s wake. furiously ironic foxes boost | +20588|206936|6937|1|16|29486.72|0.04|0.00|N|O|1998-01-20|1997-11-28|1998-02-02|NONE|RAIL|cajole qui| +20589|868057|5609|1|38|38950.38|0.08|0.03|N|O|1996-08-26|1996-09-23|1996-09-15|NONE|RAIL|sly final ide| +20589|422212|9737|2|28|31757.32|0.02|0.04|N|O|1996-09-12|1996-10-01|1996-10-02|NONE|SHIP| have to sleep furiously silen| +20589|103728|16231|3|33|57146.76|0.01|0.04|N|O|1996-09-07|1996-10-24|1996-09-27|COLLECT COD|AIR|sleep carefully e| +20589|352718|2719|4|6|10624.20|0.09|0.02|N|O|1996-09-14|1996-09-20|1996-09-30|DELIVER IN PERSON|FOB|usly. final pinto beans haggle blithely fin| +20590|905107|42662|1|28|31137.68|0.04|0.04|N|O|1996-11-28|1996-10-18|1996-12-03|NONE|RAIL|ular packages. ironic theodolites haggle c| +20590|122531|35034|2|19|29517.07|0.06|0.03|N|O|1996-12-03|1996-11-18|1996-12-28|NONE|SHIP| even asympto| +20590|373902|48917|3|30|59276.70|0.05|0.05|N|O|1996-12-30|1996-11-10|1997-01-08|DELIVER IN PERSON|AIR|ly pending requests ac| +20590|160736|35743|4|2|3593.46|0.04|0.06|N|O|1996-12-20|1996-10-04|1997-01-05|TAKE BACK RETURN|RAIL|final requests. slyly pending| +20590|476104|26105|5|27|29162.16|0.00|0.06|N|O|1996-12-13|1996-10-29|1997-01-09|COLLECT COD|FOB|g the pending courts haggle furiousl| +20591|238130|13139|1|25|26703.00|0.05|0.00|R|F|1993-05-15|1993-03-10|1993-06-07|COLLECT COD|REG AIR|ven deposits c| +20591|249276|11781|2|22|26955.72|0.09|0.08|R|F|1993-05-01|1993-03-20|1993-05-08|COLLECT COD|AIR|ccounts use carefully. requests across t| +20616|226977|14490|1|8|15231.68|0.05|0.07|N|O|1998-10-19|1998-09-11|1998-11-13|TAKE BACK RETURN|SHIP|y furiously express pinto beans. u| +20616|790381|15412|2|25|36783.75|0.00|0.07|N|O|1998-08-23|1998-09-17|1998-09-08|TAKE BACK RETURN|REG AIR|carefully special foxes nag quickly| +20616|926068|26069|3|46|50324.92|0.07|0.07|N|O|1998-10-28|1998-09-11|1998-11-04|DELIVER IN PERSON|AIR| final notornis. slyly ironic pinto be| +20617|370726|8248|1|45|80851.95|0.07|0.08|N|O|1996-08-22|1996-07-31|1996-09-10|COLLECT COD|AIR|ular theodolites. packag| +20617|778308|40824|2|12|16635.24|0.01|0.07|N|O|1996-09-14|1996-08-18|1996-10-12|COLLECT COD|MAIL|arefully pending ideas above th| +20617|6150|31151|3|46|48582.90|0.04|0.08|N|O|1996-10-08|1996-09-24|1996-10-22|NONE|AIR|ccounts believe blithely express courts. c| +20617|352176|2177|4|30|36844.80|0.03|0.05|N|O|1996-08-09|1996-08-03|1996-09-01|TAKE BACK RETURN|TRUCK|bold platelets cajole| +20617|18926|6427|5|40|73796.80|0.05|0.07|N|O|1996-07-06|1996-07-30|1996-07-26|COLLECT COD|AIR|osits sleep furiously abo| +20617|88966|38967|6|39|76243.44|0.04|0.06|N|O|1996-09-11|1996-08-01|1996-09-26|NONE|SHIP|cial foxes.| +20617|234883|22396|7|1|1817.87|0.03|0.03|N|O|1996-09-08|1996-09-17|1996-09-12|TAKE BACK RETURN|AIR|tes. furiously pendi| +20618|677224|39738|1|38|45645.22|0.03|0.04|N|O|1997-10-10|1997-08-10|1997-10-17|COLLECT COD|TRUCK|y pending instructi| +20619|22554|35055|1|43|63491.65|0.03|0.01|R|F|1995-01-24|1995-02-20|1995-02-14|NONE|TRUCK|escapades. always even | +20620|137157|12162|1|20|23883.00|0.06|0.05|A|F|1993-12-18|1994-01-20|1993-12-20|COLLECT COD|RAIL|usly express deposits wake across the furio| +20621|107800|20303|1|28|50618.40|0.10|0.03|R|F|1993-09-23|1993-10-31|1993-10-07|COLLECT COD|SHIP|thely silent requests. ir| +20621|780160|17706|2|4|4960.52|0.07|0.00|R|F|1993-10-06|1993-11-02|1993-10-28|NONE|RAIL|he carefully even | +20621|135698|23205|3|41|71081.29|0.06|0.01|R|F|1993-12-08|1993-10-04|1993-12-16|DELIVER IN PERSON|RAIL|arefully regular theodolites. b| +20621|666809|16810|4|35|62151.95|0.06|0.04|A|F|1993-10-17|1993-11-16|1993-10-24|NONE|RAIL|ticing pinto beans around | +20621|55669|43173|5|43|69860.38|0.01|0.06|A|F|1993-12-26|1993-10-23|1994-01-14|COLLECT COD|RAIL|ites. slyly bold packages s| +20622|438987|38988|1|34|65482.64|0.08|0.05|A|F|1994-03-15|1994-05-14|1994-03-31|NONE|MAIL|lyly final pint| +20622|43476|30977|2|47|66715.09|0.05|0.00|A|F|1994-03-15|1994-04-02|1994-04-07|TAKE BACK RETURN|RAIL|ly bold excuses. furiously unusual | +20622|697947|47948|3|43|83631.13|0.01|0.06|A|F|1994-06-26|1994-05-27|1994-07-05|NONE|RAIL|to beans. blithely | +20622|384782|9797|4|19|35468.63|0.09|0.06|A|F|1994-04-27|1994-05-23|1994-05-18|NONE|FOB|lyly final sauterne| +20622|14446|14447|5|13|17685.72|0.05|0.02|R|F|1994-06-01|1994-05-16|1994-06-24|NONE|REG AIR|ar foxes use furiously account| +20623|136988|24495|1|33|66824.34|0.03|0.05|N|O|1996-08-16|1996-06-18|1996-08-30|TAKE BACK RETURN|MAIL|ole quickly. regular, regular ideas ar| +20623|354046|29061|2|43|47301.29|0.07|0.06|N|O|1996-05-22|1996-06-22|1996-06-09|DELIVER IN PERSON|MAIL|s. brave theodolites | +20623|448890|36415|3|21|38616.27|0.09|0.00|N|O|1996-08-16|1996-07-10|1996-09-07|TAKE BACK RETURN|REG AIR|odolites; furiously bold packages detect ca| +20648|540574|40575|1|2|3229.10|0.10|0.05|R|F|1993-08-06|1993-06-02|1993-09-03|COLLECT COD|MAIL|special accou| +20648|421865|9390|2|44|78620.96|0.08|0.01|R|F|1993-07-12|1993-06-06|1993-07-30|DELIVER IN PERSON|SHIP|le blithely slyly specia| +20648|281950|19466|3|29|56026.26|0.03|0.07|R|F|1993-04-29|1993-07-02|1993-05-05|NONE|AIR|ess deposits cajo| +20648|732866|7895|4|18|34178.94|0.00|0.04|R|F|1993-05-01|1993-06-15|1993-05-18|DELIVER IN PERSON|MAIL|heodolites. blithely s| +20648|266039|28545|5|24|24120.48|0.08|0.02|R|F|1993-07-21|1993-05-24|1993-08-13|COLLECT COD|REG AIR|ng foxes grow blithely. reg| +20648|316558|29065|6|12|18894.48|0.09|0.03|R|F|1993-06-06|1993-06-14|1993-06-15|DELIVER IN PERSON|FOB|atelets wake. quick| +20649|392051|4559|1|37|42292.48|0.06|0.00|R|F|1994-12-25|1995-01-09|1995-01-09|TAKE BACK RETURN|MAIL|ep quickly. quickly regular Tiresias | +20649|185002|35003|2|33|35871.00|0.02|0.07|A|F|1995-04-01|1995-02-16|1995-04-20|DELIVER IN PERSON|RAIL|ges sleep sl| +20649|313559|26066|3|26|40886.04|0.05|0.06|R|F|1995-02-23|1995-03-02|1995-03-15|DELIVER IN PERSON|AIR|al deposits integrate quickly a| +20649|981215|31216|4|16|20738.72|0.08|0.08|A|F|1995-01-17|1995-02-26|1995-01-18|DELIVER IN PERSON|TRUCK| foxes boost quickly. slyly final pack| +20649|275679|38185|5|11|18201.26|0.01|0.08|R|F|1995-02-08|1995-01-23|1995-02-12|COLLECT COD|SHIP|s are express theodolites| +20649|329352|29353|6|14|19338.76|0.03|0.03|R|F|1995-03-21|1995-03-03|1995-04-15|COLLECT COD|AIR|egular pinto| +20650|539014|14035|1|22|23165.78|0.03|0.06|R|F|1992-02-15|1992-02-17|1992-03-09|DELIVER IN PERSON|RAIL|r packages. f| +20650|197134|34644|2|47|57863.11|0.08|0.08|R|F|1992-03-25|1992-02-22|1992-04-11|COLLECT COD|TRUCK|ss pinto beans haggle. quickly pen| +20650|225298|37803|3|30|36698.40|0.02|0.00|R|F|1992-03-22|1992-03-07|1992-04-11|TAKE BACK RETURN|REG AIR|ironic attainments; fi| +20650|573964|48987|4|22|44834.68|0.01|0.02|R|F|1992-03-14|1992-03-04|1992-04-02|DELIVER IN PERSON|TRUCK|ously across the bold deposits. boldly da| +20650|606938|19451|5|34|62726.60|0.09|0.01|A|F|1992-04-05|1992-02-29|1992-05-01|TAKE BACK RETURN|REG AIR|n packages int| +20651|492281|4791|1|33|42017.58|0.02|0.06|N|O|1997-06-20|1997-07-26|1997-07-11|NONE|SHIP|ns. regularly final reque| +20652|723333|48362|1|44|59677.20|0.10|0.06|N|O|1997-09-24|1997-09-22|1997-10-06|TAKE BACK RETURN|SHIP|ecial pinto beans.| +20653|391806|29328|1|10|18977.90|0.10|0.05|R|F|1994-04-28|1994-06-10|1994-05-05|COLLECT COD|FOB| blithely a| +20653|71305|8809|2|21|26802.30|0.03|0.05|R|F|1994-07-22|1994-07-05|1994-08-15|TAKE BACK RETURN|MAIL|regular excus| +20653|421355|46372|3|49|62540.17|0.10|0.00|R|F|1994-07-26|1994-06-14|1994-08-03|COLLECT COD|MAIL|ously even pinto beans pla| +20653|711763|24278|4|25|44368.25|0.03|0.05|R|F|1994-06-27|1994-06-15|1994-07-05|DELIVER IN PERSON|MAIL|ironic requests are. blithely even war| +20653|593337|43338|5|33|47200.23|0.09|0.05|A|F|1994-05-15|1994-06-03|1994-06-12|COLLECT COD|RAIL|ts wake slyly. slyly final packages | +20653|214023|14024|6|32|29984.32|0.02|0.07|R|F|1994-07-13|1994-05-23|1994-07-28|NONE|MAIL|y ironic dolphins. slyly specia| +20653|76097|26098|7|35|37558.15|0.04|0.00|R|F|1994-06-11|1994-06-04|1994-06-22|COLLECT COD|MAIL|bout the r| +20654|947839|35394|1|46|86792.34|0.04|0.01|A|F|1995-01-17|1994-11-16|1995-01-19|COLLECT COD|AIR|ns x-ray slyly furiously express packages.| +20654|324654|37161|2|23|38608.72|0.01|0.05|A|F|1994-12-08|1994-11-27|1994-12-28|NONE|MAIL| grow after the regular de| +20655|699545|24572|1|15|23167.65|0.04|0.03|A|F|1993-02-21|1993-02-14|1993-03-18|NONE|SHIP|s-- regular, iro| +20655|246407|21416|2|19|25714.41|0.10|0.08|A|F|1993-03-27|1993-02-04|1993-04-01|COLLECT COD|RAIL|nt, ironic packag| +20655|353222|28237|3|45|57384.45|0.10|0.08|R|F|1993-03-07|1993-01-12|1993-03-22|TAKE BACK RETURN|SHIP|carefully even deposit| +20655|596459|8971|4|35|54440.05|0.08|0.06|A|F|1993-02-12|1993-01-20|1993-02-26|NONE|RAIL|fully even accounts. reque| +20680|745438|45439|1|1|1483.40|0.03|0.02|N|O|1997-05-27|1997-07-03|1997-05-28|TAKE BACK RETURN|REG AIR|. furiously regular dep| +20681|506842|44373|1|37|68406.34|0.06|0.05|N|O|1998-05-22|1998-03-22|1998-06-11|COLLECT COD|FOB|ould are furiously. depths haggle. f| +20681|489357|14376|2|12|16155.96|0.03|0.04|N|O|1998-03-27|1998-05-03|1998-04-01|TAKE BACK RETURN|TRUCK|onic packages sleep furiously quickl| +20681|621103|21104|3|3|3072.21|0.09|0.06|N|O|1998-04-13|1998-04-05|1998-04-22|DELIVER IN PERSON|REG AIR|eep. slyly regular fox| +20681|876841|14393|4|3|5453.40|0.05|0.03|N|O|1998-05-09|1998-03-25|1998-05-29|TAKE BACK RETURN|REG AIR| instructions| +20682|587663|37664|1|26|45516.64|0.06|0.01|N|O|1998-06-21|1998-04-26|1998-07-05|COLLECT COD|REG AIR|ccounts was alongside of the r| +20682|850715|13233|2|15|24985.05|0.05|0.07|N|O|1998-04-16|1998-05-25|1998-05-16|COLLECT COD|TRUCK|l requests accordi| +20682|964409|1967|3|12|17680.32|0.08|0.05|N|O|1998-04-12|1998-04-12|1998-04-17|COLLECT COD|AIR|ly alongside of th| +20682|814374|39407|4|34|43803.22|0.02|0.04|N|O|1998-06-18|1998-05-29|1998-07-10|NONE|AIR|onic instructions wa| +20682|174383|49390|5|45|65582.10|0.07|0.05|N|O|1998-04-28|1998-04-11|1998-04-29|DELIVER IN PERSON|MAIL|equests. f| +20682|854801|42353|6|26|45649.76|0.05|0.05|N|O|1998-03-14|1998-04-28|1998-03-29|COLLECT COD|AIR|ng packages solve quickl| +20683|618105|43130|1|28|28645.96|0.07|0.01|N|O|1998-08-21|1998-09-21|1998-09-13|COLLECT COD|RAIL|t the quickly express requests. slyly fin| +20683|486551|36552|2|27|41513.31|0.02|0.02|N|O|1998-07-13|1998-09-13|1998-07-24|COLLECT COD|SHIP| orbits about the carefully pen| +20683|459238|46766|3|50|59860.50|0.02|0.00|N|O|1998-09-22|1998-08-08|1998-10-20|TAKE BACK RETURN|RAIL|gular deposits dete| +20683|403197|15706|4|47|51707.99|0.06|0.08|N|O|1998-10-13|1998-09-04|1998-10-25|COLLECT COD|RAIL|counts grow alongside of the blithely | +20683|520459|20460|5|9|13314.87|0.00|0.07|N|O|1998-10-04|1998-08-15|1998-10-24|TAKE BACK RETURN|AIR|uickly regular T| +20683|344870|19883|6|5|9574.30|0.08|0.06|N|O|1998-08-26|1998-08-19|1998-09-13|TAKE BACK RETURN|FOB|pinto beans cajol| +20683|217644|30149|7|22|34355.86|0.02|0.05|N|O|1998-08-24|1998-08-02|1998-09-11|TAKE BACK RETURN|SHIP| are quickly about the un| +20684|932707|20262|1|15|26094.90|0.01|0.04|A|F|1992-02-12|1992-02-13|1992-03-08|NONE|RAIL| unusual asymptotes against| +20684|5470|42971|2|49|67398.03|0.01|0.05|R|F|1992-03-02|1992-03-29|1992-03-08|COLLECT COD|AIR|s use among the slyly expr| +20685|992160|29718|1|19|23790.28|0.01|0.08|A|F|1993-12-14|1993-12-16|1994-01-12|NONE|FOB|theodolites cajole accordin| +20685|222498|10011|2|7|9943.36|0.09|0.06|A|F|1994-03-04|1994-02-01|1994-03-13|COLLECT COD|TRUCK|s. theodolites about the pac| +20685|523765|36276|3|28|50084.72|0.02|0.01|R|F|1993-11-26|1994-01-16|1993-12-26|NONE|REG AIR| against the carefully even requests.| +20685|914455|26974|4|12|17632.92|0.09|0.01|R|F|1993-12-22|1993-12-18|1994-01-12|TAKE BACK RETURN|AIR|uests boost blithe| +20685|237872|37873|5|42|76014.12|0.10|0.06|A|F|1993-12-01|1993-12-25|1993-12-17|NONE|AIR|ct blithely according t| +20686|205734|18239|1|24|39353.28|0.02|0.04|N|O|1997-03-24|1997-04-06|1997-03-26|NONE|SHIP|furiously regular requests cajole| +20686|756182|31213|2|12|14857.80|0.09|0.03|N|O|1997-04-07|1997-04-16|1997-04-25|DELIVER IN PERSON|REG AIR| dolphins after the regular in| +20686|137490|37491|3|17|25967.33|0.08|0.08|N|O|1997-03-04|1997-02-17|1997-03-12|NONE|TRUCK|theodolites boost furiou| +20686|789213|1729|4|13|16928.34|0.09|0.00|N|O|1997-03-26|1997-03-06|1997-04-09|NONE|AIR|ounts. packages cajole blithe| +20686|298497|23508|5|34|50846.32|0.01|0.04|N|O|1997-02-07|1997-03-15|1997-02-25|NONE|RAIL|olites wake furiously a| +20687|629192|16729|1|2|2242.32|0.05|0.03|A|F|1994-02-11|1993-12-06|1994-03-08|NONE|TRUCK|the furiously special re| +20687|823387|48420|2|28|36689.52|0.04|0.00|A|F|1994-01-04|1993-11-20|1994-01-28|COLLECT COD|TRUCK|ously iron| +20687|663395|935|3|18|24450.48|0.04|0.04|A|F|1993-10-19|1993-12-10|1993-11-09|COLLECT COD|RAIL|s pinto beans cajole according | +20687|667329|17330|4|12|15555.48|0.00|0.05|A|F|1994-01-01|1993-12-25|1994-01-26|TAKE BACK RETURN|TRUCK|ously unusual requests. ironic, | +20687|796604|21635|5|6|10203.42|0.08|0.07|R|F|1994-02-03|1994-01-13|1994-02-06|TAKE BACK RETURN|SHIP|luffily regul| +20687|519796|32307|6|6|10894.62|0.09|0.07|A|F|1993-11-20|1993-12-26|1993-12-20|COLLECT COD|RAIL| regular platel| +20712|49376|11877|1|2|2650.74|0.06|0.05|R|F|1993-12-16|1993-12-06|1994-01-04|NONE|SHIP|ect slyly atop the unusual, regular| +20712|861951|36986|2|28|53561.48|0.01|0.04|A|F|1993-12-05|1994-01-08|1993-12-20|TAKE BACK RETURN|TRUCK|ong the even, regular ideas. bli| +20712|797912|22943|3|23|46227.24|0.10|0.01|R|F|1993-11-14|1993-12-08|1993-12-05|NONE|SHIP| doggedly against the slowly bold | +20713|116747|4254|1|24|42329.76|0.06|0.06|R|F|1993-12-31|1993-11-23|1994-01-21|DELIVER IN PERSON|MAIL|counts. furiously ironic accou| +20713|165105|40112|2|28|32762.80|0.08|0.08|A|F|1993-10-10|1993-10-27|1993-10-23|NONE|FOB|sts. quickly i| +20713|912453|24972|3|8|11723.28|0.08|0.08|R|F|1994-01-02|1993-10-22|1994-01-30|COLLECT COD|AIR| among the ev| +20713|585244|10267|4|41|54498.02|0.10|0.00|R|F|1993-12-07|1993-11-26|1994-01-03|NONE|AIR|ily final deposits hag| +20714|313731|38744|1|19|33149.68|0.05|0.06|N|O|1996-08-14|1996-08-20|1996-08-31|DELIVER IN PERSON|TRUCK|s use even, ironic p| +20714|875320|25321|2|38|49220.64|0.01|0.02|N|O|1996-10-25|1996-09-18|1996-11-03|TAKE BACK RETURN|AIR|osits are slyly. unu| +20714|502819|2820|3|49|89267.71|0.00|0.08|N|O|1996-10-01|1996-09-12|1996-10-18|DELIVER IN PERSON|REG AIR|nts at the slyly i| +20714|865841|15842|4|33|59624.40|0.00|0.08|N|O|1996-08-27|1996-08-16|1996-09-02|TAKE BACK RETURN|RAIL|phins. bold attainments kindle carefully a| +20715|806883|6884|1|42|75173.28|0.10|0.01|R|F|1992-06-26|1992-05-28|1992-07-05|TAKE BACK RETURN|RAIL|ly sly accounts use. fluffily r| +20715|278750|16266|2|22|38032.28|0.04|0.03|R|F|1992-06-23|1992-04-09|1992-07-17|COLLECT COD|AIR|row quickly silent pinto beans. bli| +20716|755023|30054|1|38|40963.62|0.05|0.01|N|O|1996-04-23|1996-05-03|1996-04-27|TAKE BACK RETURN|SHIP|y special multipliers| +20716|660279|35306|2|39|48330.36|0.06|0.04|N|O|1996-06-07|1996-05-22|1996-06-23|DELIVER IN PERSON|REG AIR|ong the bl| +20716|299684|12190|3|14|23571.38|0.10|0.01|N|O|1996-05-22|1996-05-27|1996-05-31|COLLECT COD|TRUCK|lly final accounts? | +20716|779336|4367|4|3|4245.90|0.02|0.01|N|O|1996-06-26|1996-05-21|1996-07-09|DELIVER IN PERSON|TRUCK|ecial platelets. accounts play slyly.| +20716|300031|37550|5|13|13403.26|0.02|0.00|N|O|1996-04-16|1996-05-12|1996-05-07|DELIVER IN PERSON|RAIL|express ide| +20717|533576|21107|1|7|11266.85|0.07|0.07|N|O|1997-11-26|1997-11-17|1997-12-13|NONE|SHIP|accounts sleep according to the bl| +20718|460505|23015|1|24|35171.52|0.03|0.01|N|O|1998-02-10|1997-12-27|1998-02-22|DELIVER IN PERSON|SHIP|blithely special foxes boo| +20718|697934|22961|2|9|17387.10|0.06|0.08|N|O|1998-02-03|1998-02-21|1998-02-09|TAKE BACK RETURN|TRUCK|s are above| +20718|162067|24571|3|30|33871.80|0.03|0.03|N|O|1998-01-24|1998-02-18|1998-02-20|NONE|FOB|s instructions cajole furiousl| +20718|843609|43610|4|9|13973.04|0.09|0.00|N|O|1997-12-06|1998-02-15|1997-12-17|COLLECT COD|MAIL|d packages affix iron| +20719|432481|20006|1|27|38163.42|0.09|0.03|A|F|1994-06-05|1994-05-09|1994-06-18|NONE|RAIL|the regular pinto beans. carefully regu| +20744|641011|3524|1|17|16183.66|0.08|0.08|N|O|1997-04-15|1997-03-13|1997-04-28|DELIVER IN PERSON|AIR|osits doubt care| +20744|463401|38420|2|15|20465.70|0.04|0.06|N|O|1997-04-18|1997-03-26|1997-05-06|TAKE BACK RETURN|AIR|ic theodolites are. bli| +20745|55449|30452|1|10|14044.40|0.04|0.01|N|O|1997-05-17|1997-06-29|1997-05-27|NONE|MAIL|ly. quickly| +20745|915184|40221|2|21|25181.94|0.03|0.06|N|O|1997-05-25|1997-07-02|1997-05-29|COLLECT COD|TRUCK|its. furiously i| +20746|152238|27245|1|23|29675.29|0.05|0.07|N|O|1996-01-17|1995-12-27|1996-02-04|COLLECT COD|MAIL|g deposits across the slyly | +20746|653388|40928|2|42|56336.70|0.09|0.04|N|O|1995-12-11|1995-11-30|1995-12-30|TAKE BACK RETURN|SHIP|al deposits use carefully according to the| +20746|480266|17794|3|28|34894.72|0.03|0.07|N|O|1995-10-22|1995-11-16|1995-10-24|TAKE BACK RETURN|TRUCK|kages main| +20746|826192|38709|4|47|52553.05|0.10|0.00|N|O|1995-10-30|1995-12-30|1995-11-16|DELIVER IN PERSON|AIR|nusual deposits haggle blithely abo| +20746|800521|25554|5|34|48330.32|0.00|0.01|N|O|1995-11-25|1995-11-25|1995-12-11|TAKE BACK RETURN|RAIL|e ironic, ruthless | +20746|350025|26|6|40|43000.40|0.06|0.08|N|O|1995-11-29|1995-11-22|1995-12-21|DELIVER IN PERSON|SHIP|ding packages: blithel| +20747|53352|15854|1|49|63962.15|0.08|0.08|A|F|1992-04-28|1992-03-26|1992-05-06|NONE|AIR|ular packages sleep across the even instr| +20747|686653|24193|2|15|24594.30|0.07|0.02|R|F|1992-02-20|1992-04-12|1992-03-18|COLLECT COD|FOB|ously final theodolites us| +20748|56012|6013|1|49|47432.49|0.06|0.03|R|F|1993-01-08|1992-10-26|1993-01-11|DELIVER IN PERSON|SHIP|efully along the silent, dogged accoun| +20748|379072|4087|2|31|35682.86|0.03|0.02|A|F|1992-12-31|1992-11-03|1993-01-06|TAKE BACK RETURN|TRUCK|jole carefully. carefully re| +20748|61234|23736|3|14|16733.22|0.10|0.05|A|F|1992-09-25|1992-11-10|1992-10-18|NONE|TRUCK|y among the quick| +20748|146716|9219|4|18|31728.78|0.02|0.00|A|F|1992-09-11|1992-10-27|1992-10-01|COLLECT COD|AIR|slyly ironic requests. carefully fin| +20749|960548|23068|1|20|32170.00|0.00|0.07|A|F|1994-03-19|1994-01-31|1994-03-23|COLLECT COD|FOB|ven theodolites. even packages cajole a| +20749|913831|13832|2|1|1844.79|0.04|0.04|R|F|1994-02-10|1994-02-26|1994-03-02|NONE|SHIP|riously fi| +20749|752392|14908|3|50|72218.00|0.05|0.05|R|F|1994-01-14|1994-02-28|1994-01-23|DELIVER IN PERSON|SHIP|fily fluffily special inst| +20749|451443|38971|4|34|47410.28|0.04|0.08|A|F|1994-02-08|1994-03-29|1994-02-26|DELIVER IN PERSON|FOB|ously ironic platelets alongside of the p| +20750|721138|21139|1|39|45204.90|0.06|0.05|R|F|1994-03-18|1994-05-30|1994-04-06|COLLECT COD|TRUCK| the silent packages. special requests doz| +20750|153060|28067|2|27|30052.62|0.05|0.08|R|F|1994-05-18|1994-05-06|1994-05-30|COLLECT COD|AIR|es nag. regular e| +20750|468831|43850|3|37|66592.97|0.07|0.04|A|F|1994-06-03|1994-05-16|1994-06-30|NONE|TRUCK| express packages. carefully regul| +20750|640021|27558|4|14|13453.86|0.08|0.04|R|F|1994-06-09|1994-05-10|1994-06-17|COLLECT COD|SHIP|fully express asymptotes cajole carefully| +20750|831960|6993|5|17|32162.64|0.10|0.01|R|F|1994-05-10|1994-04-23|1994-05-28|NONE|TRUCK|integrate furio| +20751|38391|892|1|23|30575.97|0.01|0.01|R|F|1993-07-12|1993-08-21|1993-08-04|COLLECT COD|FOB| pinto beans. fluffily| +20751|232813|7822|2|2|3491.60|0.03|0.02|A|F|1993-09-10|1993-08-18|1993-10-08|TAKE BACK RETURN|MAIL|ly special packages-- regularly even| +20751|876052|1087|3|27|27756.27|0.10|0.08|R|F|1993-07-19|1993-08-14|1993-07-20|TAKE BACK RETURN|FOB|s the furi| +20751|799673|12189|4|7|12408.48|0.06|0.07|A|F|1993-08-22|1993-07-13|1993-08-24|DELIVER IN PERSON|AIR|ts wake quickly. carefully pendin| +20776|41247|16248|1|47|55847.28|0.05|0.07|N|O|1998-07-19|1998-07-07|1998-07-23|DELIVER IN PERSON|AIR|sly express deposits! carefully final| +20776|232115|7124|2|2|2094.20|0.03|0.01|N|O|1998-06-22|1998-07-29|1998-07-05|COLLECT COD|SHIP|ffily unusual accounts. blithely regular as| +20777|754517|42063|1|11|17286.28|0.09|0.05|A|F|1992-06-11|1992-04-29|1992-07-03|COLLECT COD|AIR|he accounts lose fu| +20777|154557|42067|2|18|29007.90|0.01|0.05|A|F|1992-03-13|1992-04-09|1992-04-02|DELIVER IN PERSON|FOB|l theodolites cajole blithely spe| +20777|636917|49430|3|35|64885.80|0.10|0.00|A|F|1992-04-28|1992-04-07|1992-04-29|COLLECT COD|TRUCK| even theodolites ab| +20777|648359|48360|4|42|54907.44|0.05|0.04|R|F|1992-04-19|1992-04-17|1992-05-15|COLLECT COD|TRUCK|egular pinto beans c| +20778|303540|41059|1|21|32414.13|0.02|0.00|A|F|1993-01-10|1993-02-25|1993-01-26|NONE|RAIL|ages cajole. unusual packages promise fluf| +20778|591903|29437|2|6|11969.28|0.05|0.00|R|F|1992-12-31|1993-01-29|1993-01-14|NONE|MAIL|ts. slyly unusual requests| +20778|105746|30751|3|47|82331.78|0.09|0.03|R|F|1992-12-17|1993-01-12|1992-12-21|NONE|SHIP|nal foxes. pinto beans are furious| +20778|257341|19847|4|45|58424.85|0.06|0.08|A|F|1993-02-20|1993-02-24|1993-03-19|COLLECT COD|FOB|jole slyly according to the | +20778|113797|13798|5|8|14486.32|0.00|0.03|R|F|1993-01-09|1993-01-07|1993-01-31|NONE|SHIP| pinto beans past the furiously speci| +20779|387067|49575|1|2|2308.10|0.01|0.07|N|O|1996-03-03|1996-04-06|1996-03-31|NONE|SHIP| furiously unusual | +20779|432582|20107|2|19|28776.64|0.00|0.06|N|O|1996-05-04|1996-04-09|1996-05-06|DELIVER IN PERSON|REG AIR| the express accounts. quickly i| +20779|402849|2850|3|9|15766.38|0.08|0.05|N|O|1996-04-09|1996-03-05|1996-05-05|NONE|MAIL|thely unusual dependencies promise quickly| +20779|679546|17086|4|24|36612.24|0.10|0.01|N|O|1996-04-09|1996-03-25|1996-04-18|TAKE BACK RETURN|TRUCK|lyly ironic packages| +20779|115125|15126|5|50|57006.00|0.10|0.07|N|O|1996-04-11|1996-03-25|1996-05-10|DELIVER IN PERSON|REG AIR|. ideas sleep furiously along t| +20779|898426|23461|6|47|66945.86|0.08|0.03|N|O|1996-01-24|1996-03-02|1996-02-08|NONE|MAIL|cajole fluffily final dep| +20780|422982|22983|1|30|57148.80|0.00|0.07|N|O|1995-06-25|1995-08-02|1995-07-12|DELIVER IN PERSON|MAIL|usly pending packages above t| +20780|56135|18637|2|33|36007.29|0.00|0.04|N|O|1995-09-27|1995-09-21|1995-10-26|COLLECT COD|TRUCK| haggle. quickly regular d| +20780|445962|20979|3|11|20987.34|0.01|0.05|N|O|1995-09-24|1995-08-25|1995-10-15|COLLECT COD|TRUCK|lent accounts. instr| +20780|270318|45329|4|8|10306.40|0.03|0.07|N|O|1995-09-09|1995-08-19|1995-09-30|TAKE BACK RETURN|RAIL|requests. furiously unusual packages slee| +20781|551028|38562|1|2|2158.00|0.02|0.05|N|O|1998-01-11|1997-12-27|1998-01-13|COLLECT COD|REG AIR| use stealthily against th| +20781|114377|39382|2|22|30610.14|0.03|0.00|N|O|1997-12-13|1997-11-27|1997-12-31|DELIVER IN PERSON|REG AIR|osits cajole. regular, fluffy excuses | +20781|333503|46010|3|42|64532.58|0.07|0.07|N|O|1997-12-14|1997-11-24|1998-01-08|COLLECT COD|MAIL|above the furiously unusual requests. | +20781|178099|28100|4|12|14125.08|0.03|0.01|N|O|1998-01-05|1997-12-17|1998-01-07|NONE|FOB|ag ironic accounts.| +20781|302411|27424|5|31|43815.40|0.08|0.07|N|O|1998-01-04|1998-01-01|1998-01-27|TAKE BACK RETURN|RAIL|nt foxes. depo| +20781|615337|40362|6|8|10018.40|0.03|0.05|N|O|1998-01-22|1997-11-25|1998-02-05|COLLECT COD|RAIL|the slyly final| +20781|956986|19506|7|36|73545.84|0.03|0.05|N|O|1998-01-25|1998-01-19|1998-02-21|DELIVER IN PERSON|TRUCK|ss pinto beans. silent inst| +20782|55036|5037|1|17|16847.51|0.00|0.06|A|F|1994-12-11|1994-12-28|1994-12-29|TAKE BACK RETURN|SHIP|ending deposits haggle f| +20782|973523|11081|2|25|39912.00|0.03|0.01|R|F|1994-11-12|1994-11-16|1994-11-22|DELIVER IN PERSON|RAIL|accounts haggle blithely across the| +20783|553529|28552|1|10|15825.00|0.07|0.07|R|F|1994-07-02|1994-06-01|1994-07-21|NONE|MAIL|ost carefully| +20783|161844|24348|2|6|11435.04|0.06|0.05|R|F|1994-06-24|1994-07-22|1994-07-06|DELIVER IN PERSON|FOB|lar ideas cajole furiously about the foxe| +20783|98738|36242|3|2|3473.46|0.06|0.01|R|F|1994-06-17|1994-06-22|1994-07-12|DELIVER IN PERSON|AIR|r theodolites. blithely p| +20783|484594|22122|4|20|31571.40|0.05|0.05|R|F|1994-07-19|1994-07-16|1994-08-05|TAKE BACK RETURN|TRUCK|ily regular f| +20808|43343|30844|1|44|56598.96|0.07|0.04|N|O|1995-09-04|1995-07-31|1995-09-13|NONE|REG AIR|ully express requests. blithely iro| +20808|461758|36777|2|17|29235.41|0.09|0.07|N|O|1995-08-14|1995-09-03|1995-08-23|COLLECT COD|MAIL| dolphins use furiously packages| +20808|750264|37810|3|20|26284.60|0.08|0.06|N|O|1995-08-21|1995-08-23|1995-09-06|NONE|REG AIR|ing packages. pinto bean| +20808|683762|33763|4|24|41897.52|0.05|0.07|N|O|1995-09-07|1995-08-20|1995-10-07|DELIVER IN PERSON|SHIP|y even accounts. blithel| +20808|978704|16262|5|44|78437.04|0.09|0.07|N|O|1995-07-23|1995-08-29|1995-08-03|TAKE BACK RETURN|FOB|pains nag among the quickly un| +20808|65808|3312|6|27|47892.60|0.02|0.04|N|F|1995-06-11|1995-08-09|1995-07-11|NONE|MAIL|nt accounts sleep acr| +20809|531078|6099|1|34|37707.70|0.05|0.03|N|O|1995-06-29|1995-04-23|1995-07-23|TAKE BACK RETURN|REG AIR|nts; slyly silent theodolites c| +20809|827663|15212|2|8|12724.96|0.01|0.04|N|O|1995-06-30|1995-06-11|1995-07-18|TAKE BACK RETURN|TRUCK|y final gifts haggle blithely | +20809|516039|41060|3|25|26375.25|0.07|0.02|A|F|1995-04-25|1995-06-01|1995-05-06|DELIVER IN PERSON|AIR|final packages until the| +20809|54226|29229|4|44|51929.68|0.03|0.01|R|F|1995-04-20|1995-05-22|1995-05-20|TAKE BACK RETURN|TRUCK|n foxes integrate furiously | +20809|362825|37840|5|30|56634.30|0.09|0.01|A|F|1995-05-19|1995-05-10|1995-06-11|NONE|RAIL|st the carefully ironic deposits. q| +20809|996964|34522|6|4|8243.68|0.01|0.01|N|O|1995-06-20|1995-04-20|1995-07-12|TAKE BACK RETURN|TRUCK|ld deposit| +20809|967056|4614|7|40|44920.40|0.02|0.01|N|O|1995-06-26|1995-06-14|1995-07-26|DELIVER IN PERSON|FOB|ajole quickly. furiously express e| +20810|305585|5586|1|15|23858.55|0.03|0.06|N|O|1997-12-30|1998-02-26|1998-01-07|COLLECT COD|TRUCK|usly bold deposit| +20810|956277|6278|2|40|53329.20|0.05|0.08|N|O|1998-02-24|1998-01-06|1998-03-05|COLLECT COD|SHIP|elets sleep fl| +20810|145125|7628|3|12|14041.44|0.02|0.07|N|O|1998-03-11|1998-01-10|1998-03-21|NONE|RAIL|t ideas. bold, p| +20810|108274|20777|4|24|30774.48|0.07|0.07|N|O|1997-12-18|1998-01-16|1997-12-29|DELIVER IN PERSON|AIR|ly quickly regular deposits. dari| +20810|752303|14819|5|2|2710.54|0.00|0.00|N|O|1997-12-15|1998-02-01|1998-01-13|COLLECT COD|RAIL|l packages cajo| +20810|946683|34238|6|33|57078.12|0.05|0.01|N|O|1998-03-12|1998-02-14|1998-04-04|TAKE BACK RETURN|SHIP| slyly silent ideas| +20810|893736|6254|7|49|84754.81|0.03|0.04|N|O|1998-04-03|1998-03-01|1998-04-30|NONE|FOB|deposits run regularly bold| +20811|4950|42451|1|7|12984.65|0.10|0.00|R|F|1995-01-21|1995-02-02|1995-02-02|COLLECT COD|MAIL|heodolites sleep slyly special foxes. | +20811|180320|17830|2|31|43409.92|0.10|0.00|A|F|1995-02-02|1995-01-22|1995-02-28|COLLECT COD|FOB|the even accounts sleep slyly a| +20811|629935|29936|3|24|44757.60|0.04|0.07|R|F|1995-03-09|1995-01-07|1995-04-07|DELIVER IN PERSON|RAIL|e: regular attainments w| +20811|308223|8224|4|26|32011.46|0.05|0.05|A|F|1994-12-14|1995-01-01|1994-12-24|TAKE BACK RETURN|MAIL|. furiously bold pinto beans| +20811|294561|44562|5|46|71555.30|0.05|0.05|A|F|1995-01-05|1994-12-25|1995-01-21|COLLECT COD|RAIL|lphins detect furiousl| +20812|201631|14136|1|42|64370.04|0.03|0.08|N|O|1998-04-26|1998-04-30|1998-05-13|DELIVER IN PERSON|RAIL| unusual, final theodolit| +20812|809062|46611|2|46|44666.92|0.03|0.06|N|O|1998-07-11|1998-05-11|1998-07-19|NONE|RAIL|was furiously ideas. furiously even i| +20812|891366|28918|3|17|23074.44|0.09|0.05|N|O|1998-04-23|1998-05-19|1998-05-19|COLLECT COD|AIR|ns cajole over the carefully unusual grouch| +20812|187646|25156|4|31|53742.84|0.04|0.06|N|O|1998-04-18|1998-05-03|1998-05-04|NONE|TRUCK|to beans from the unusual | +20812|765505|28021|5|17|26697.99|0.03|0.07|N|O|1998-04-13|1998-06-27|1998-05-06|DELIVER IN PERSON|REG AIR| slowly even platelets. carefull| +20813|754546|17062|1|39|62419.89|0.00|0.04|A|F|1995-01-08|1994-11-02|1995-01-27|COLLECT COD|RAIL|t the regular accounts. pen| +20813|644582|19607|2|39|59535.45|0.02|0.08|A|F|1995-01-09|1994-12-01|1995-02-02|TAKE BACK RETURN|REG AIR|olites accord| +20813|480908|18436|3|10|18888.80|0.10|0.05|A|F|1994-10-15|1994-12-13|1994-10-29|DELIVER IN PERSON|RAIL| furiously f| +20813|608792|21305|4|42|71431.92|0.03|0.02|A|F|1995-01-11|1994-12-03|1995-02-02|TAKE BACK RETURN|FOB|ns. special id| +20813|962766|25286|5|37|67662.64|0.08|0.02|R|F|1995-01-11|1994-10-16|1995-01-16|TAKE BACK RETURN|SHIP|. regular, unusual accounts cajo| +20814|861051|23569|1|15|15180.15|0.07|0.01|R|F|1993-06-16|1993-05-30|1993-06-20|DELIVER IN PERSON|REG AIR|ly ironic packag| +20814|669556|7096|2|19|28984.88|0.07|0.07|A|F|1993-06-03|1993-05-31|1993-06-11|NONE|REG AIR|cial packages use even packages. slyl| +20814|212308|49821|3|17|20744.93|0.10|0.03|A|F|1993-05-07|1993-05-07|1993-05-16|DELIVER IN PERSON|RAIL|ructions use carefully furiously regul| +20815|16052|3553|1|16|15488.80|0.02|0.02|N|O|1998-11-26|1998-10-16|1998-12-01|TAKE BACK RETURN|AIR|s haggle. regular deposits sleep about t| +20815|772476|22477|2|27|41807.88|0.07|0.02|N|O|1998-10-29|1998-10-24|1998-11-07|TAKE BACK RETURN|REG AIR|e foxes. fluffil| +20815|991354|28912|3|12|17343.72|0.01|0.06|N|O|1998-10-24|1998-10-24|1998-11-21|NONE|TRUCK|ng the furiously final asy| +20840|54815|4816|1|39|69022.59|0.03|0.07|N|O|1998-09-28|1998-09-27|1998-10-15|NONE|FOB|xpress deposits are furiously depos| +20840|269201|6717|2|29|33935.51|0.07|0.07|N|O|1998-09-20|1998-08-31|1998-10-18|TAKE BACK RETURN|RAIL|iously unusual package| +20840|451524|14034|3|5|7377.50|0.07|0.06|N|O|1998-09-23|1998-10-23|1998-10-18|TAKE BACK RETURN|FOB|carefully alongside of the pl| +20840|760126|22642|4|26|30838.34|0.02|0.01|N|O|1998-11-10|1998-09-26|1998-11-14|TAKE BACK RETURN|REG AIR|en attainments. dependencies about the| +20840|424419|36928|5|45|60452.55|0.10|0.03|N|O|1998-09-15|1998-10-09|1998-10-09|NONE|RAIL| the slyly special i| +20840|209609|9610|6|1|1518.59|0.06|0.07|N|O|1998-09-03|1998-09-04|1998-09-06|NONE|FOB|posits boost s| +20841|725095|124|1|19|21281.14|0.00|0.00|R|F|1995-05-05|1995-05-14|1995-05-26|DELIVER IN PERSON|TRUCK|ounts dazzle after the carefully regular pa| +20841|666109|16110|2|40|43002.80|0.09|0.02|A|F|1995-03-08|1995-03-31|1995-03-15|TAKE BACK RETURN|TRUCK|he regular cou| +20841|279002|41508|3|20|19619.80|0.10|0.07|R|F|1995-03-10|1995-04-10|1995-04-01|COLLECT COD|SHIP|efully expre| +20841|185938|23448|4|13|26311.09|0.01|0.08|A|F|1995-03-23|1995-05-11|1995-04-22|COLLECT COD|TRUCK|about the furiously even ideas wake| +20842|613993|13994|1|1|1906.96|0.00|0.05|N|O|1995-12-14|1995-11-21|1996-01-04|TAKE BACK RETURN|TRUCK|ent foxes. pinto beans according to | +20842|374890|12412|2|50|98244.00|0.00|0.08|N|O|1995-10-05|1995-11-18|1995-10-17|NONE|MAIL|sits. unusual accounts hagg| +20842|762656|12657|3|21|36091.02|0.01|0.03|N|O|1995-10-24|1995-09-29|1995-11-23|COLLECT COD|RAIL|ironic deposits. furio| +20842|955336|5337|4|22|30608.38|0.07|0.08|N|O|1995-12-10|1995-11-09|1995-12-25|DELIVER IN PERSON|MAIL|e quickly sp| +20842|327094|39601|5|28|31390.24|0.07|0.01|N|O|1995-09-24|1995-10-17|1995-10-03|DELIVER IN PERSON|MAIL|he deposits. care| +20842|453902|41430|6|34|63099.92|0.02|0.07|N|O|1995-10-24|1995-11-24|1995-10-29|TAKE BACK RETURN|RAIL|ress dependencies according| +20842|723508|23509|7|43|65853.21|0.02|0.02|N|O|1995-09-11|1995-09-27|1995-09-28|DELIVER IN PERSON|REG AIR|ly final pinto bea| +20843|992050|17089|1|38|43396.38|0.03|0.03|A|F|1993-02-07|1992-11-25|1993-02-10|COLLECT COD|REG AIR|kly according to th| +20843|374857|12379|2|23|44432.32|0.10|0.04|A|F|1992-11-15|1992-12-04|1992-11-21|NONE|MAIL|lar courts. fluffily | +20843|214278|26783|3|41|48882.66|0.08|0.08|A|F|1993-02-08|1992-12-03|1993-03-07|NONE|RAIL|en instructions are c| +20843|365597|3119|4|3|4987.74|0.05|0.03|A|F|1992-12-15|1992-11-18|1992-12-25|NONE|RAIL| carefully ironic foxes boost. | +20843|573378|10912|5|30|43540.50|0.02|0.03|A|F|1992-10-14|1992-12-30|1992-11-13|DELIVER IN PERSON|TRUCK|xes. final, unusual deposits wake da| +20843|756458|6459|6|14|21201.88|0.10|0.02|A|F|1992-11-06|1992-11-15|1992-11-19|DELIVER IN PERSON|AIR| the furio| +20844|959782|22302|1|23|42360.02|0.06|0.07|A|F|1992-05-11|1992-03-13|1992-05-21|DELIVER IN PERSON|RAIL|furiously blithe pinto beans| +20844|52688|40192|2|46|75471.28|0.03|0.03|R|F|1992-05-28|1992-04-12|1992-06-27|NONE|AIR| the carefully silent instructions s| +20844|521297|46318|3|35|46139.45|0.08|0.02|R|F|1992-03-12|1992-04-14|1992-03-14|COLLECT COD|MAIL|o beans sleep furiously. furiously | +20844|425032|12557|4|33|31581.33|0.07|0.00|R|F|1992-01-30|1992-03-04|1992-02-16|COLLECT COD|RAIL|encies do affix slyly. blithe| +20844|511545|49076|5|19|29573.88|0.01|0.08|A|F|1992-03-27|1992-03-08|1992-04-03|NONE|FOB|s are blithely bo| +20844|532893|32894|6|43|82812.41|0.04|0.00|R|F|1992-03-14|1992-04-22|1992-04-02|TAKE BACK RETURN|SHIP| daringly specia| +20845|879911|42429|1|1|1890.87|0.07|0.02|N|O|1998-07-16|1998-07-20|1998-07-25|DELIVER IN PERSON|SHIP|inal foxes. final courts a| +20845|654048|41588|2|35|35070.35|0.03|0.05|N|O|1998-07-02|1998-08-07|1998-07-26|COLLECT COD|SHIP|s cajole fu| +20846|378012|15534|1|14|15260.00|0.05|0.05|N|O|1997-10-10|1997-10-06|1997-10-31|NONE|REG AIR|riously. f| +20846|246789|46790|2|13|22565.01|0.01|0.08|N|O|1997-11-08|1997-09-27|1997-12-06|COLLECT COD|SHIP|onic requests. regular| +20846|781043|18589|3|41|46084.41|0.04|0.05|N|O|1997-08-01|1997-09-30|1997-08-23|DELIVER IN PERSON|MAIL|ecial, final pinto beans. ironic| +20846|976474|14032|4|17|26357.31|0.05|0.02|N|O|1997-09-19|1997-09-08|1997-10-08|NONE|AIR| the fluffily bold packages. ironi| +20846|592189|29723|5|5|6405.80|0.03|0.08|N|O|1997-07-31|1997-10-08|1997-08-23|TAKE BACK RETURN|MAIL| requests wake closely. fur| +20847|582047|44559|1|41|46289.82|0.10|0.07|A|F|1994-10-24|1994-12-18|1994-10-31|COLLECT COD|MAIL|e somas. final packages hagg| +20847|452939|15449|2|7|13243.37|0.06|0.07|A|F|1994-11-05|1994-12-09|1994-11-24|DELIVER IN PERSON|MAIL|ccounts doubt against the bus| +20847|538107|618|3|36|41222.88|0.00|0.06|R|F|1995-01-10|1994-11-26|1995-01-12|TAKE BACK RETURN|MAIL|press packages detect. deposits acro| +20847|953903|16423|4|7|13698.02|0.03|0.05|A|F|1994-12-31|1995-01-06|1995-01-04|DELIVER IN PERSON|RAIL|le blithely about the slyly ironic foxes. c| +20847|232238|44743|5|5|5851.10|0.06|0.08|A|F|1995-01-29|1995-01-14|1995-02-25|TAKE BACK RETURN|SHIP|use always brave, p| +20847|222453|22454|6|38|52266.72|0.05|0.07|A|F|1995-02-12|1995-01-10|1995-03-02|COLLECT COD|RAIL|nal packages wake fluffily slyly| +20872|838500|13533|1|31|44592.26|0.04|0.03|R|F|1994-01-29|1993-12-20|1994-02-28|DELIVER IN PERSON|FOB|ncies. patterns cou| +20872|667450|4990|2|4|5669.68|0.08|0.03|R|F|1993-11-19|1993-12-18|1993-12-03|COLLECT COD|SHIP|express deposits are| +20872|822350|9899|3|2|2544.62|0.05|0.07|R|F|1994-01-27|1993-12-13|1994-02-26|COLLECT COD|AIR|special, regular ideas: slyly ev| +20872|234728|9737|4|29|48218.59|0.02|0.02|R|F|1993-12-04|1993-12-31|1993-12-14|DELIVER IN PERSON|REG AIR|se accounts haggle furiously express d| +20872|62309|24811|5|20|25426.00|0.00|0.03|A|F|1994-01-21|1993-12-13|1994-02-05|COLLECT COD|SHIP|en packages us| +20872|214923|14924|6|38|69840.58|0.01|0.03|A|F|1994-01-10|1993-12-10|1994-01-16|COLLECT COD|TRUCK|nts. blithely fina| +20872|202614|15119|7|38|57630.80|0.04|0.08|A|F|1993-12-05|1993-12-25|1993-12-12|NONE|RAIL|s. unusual pac| +20873|317864|17865|1|33|62101.05|0.02|0.04|N|O|1996-04-25|1996-02-29|1996-04-27|NONE|TRUCK|al foxes are against the furiously reg| +20873|333995|33996|2|37|75072.26|0.04|0.06|N|O|1996-04-10|1996-03-17|1996-05-10|NONE|SHIP| the furiously sly p| +20873|453389|28408|3|30|40270.80|0.01|0.06|N|O|1996-04-16|1996-02-24|1996-04-27|DELIVER IN PERSON|REG AIR|eas sleep slyly. carefully care| +20873|98082|10584|4|33|35642.64|0.06|0.05|N|O|1996-02-17|1996-03-12|1996-02-25|COLLECT COD|REG AIR|e according to the furiously pending| +20873|458813|8814|5|21|37207.59|0.05|0.08|N|O|1996-03-07|1996-03-26|1996-03-26|DELIVER IN PERSON|SHIP| sleep along the deposits. packages wa| +20873|260477|22983|6|23|33061.58|0.09|0.06|N|O|1996-02-27|1996-03-27|1996-03-20|TAKE BACK RETURN|FOB| haggle. final pinto beans a| +20874|658779|8780|1|24|41705.76|0.07|0.00|R|F|1993-11-02|1993-09-14|1993-11-26|COLLECT COD|MAIL|requests haggle furiously slyly s| +20874|92044|29548|2|33|34189.32|0.06|0.03|A|F|1993-09-19|1993-10-02|1993-10-10|TAKE BACK RETURN|AIR|fully along the ironic fret| +20874|979018|4057|3|14|15357.58|0.01|0.03|A|F|1993-08-16|1993-09-16|1993-09-01|TAKE BACK RETURN|FOB|detect slyly along the foxes. caref| +20875|680209|17749|1|13|15459.21|0.05|0.00|R|F|1992-12-22|1992-12-09|1992-12-24|NONE|RAIL|even accounts doze. ironic, regu| +20875|265526|40537|2|47|70100.97|0.08|0.06|R|F|1993-01-06|1992-11-30|1993-01-30|DELIVER IN PERSON|RAIL|ss deposits cajol| +20875|679025|16565|3|35|35139.65|0.10|0.00|A|F|1992-10-27|1993-01-01|1992-11-16|DELIVER IN PERSON|RAIL|yly even accounts. special deposit| +20875|361300|11301|4|48|65341.92|0.03|0.05|R|F|1992-12-20|1993-01-10|1992-12-25|COLLECT COD|TRUCK|lent foxes nag between the silent, regu| +20875|356237|6238|5|21|27157.62|0.06|0.01|A|F|1992-12-28|1992-12-06|1993-01-20|NONE|RAIL|ets are. quickly regular excus| +20875|260155|35166|6|29|32339.06|0.00|0.05|R|F|1993-01-28|1992-12-12|1993-02-22|TAKE BACK RETURN|RAIL|efully final instr| +20875|415825|15826|7|46|80076.80|0.00|0.06|R|F|1993-02-01|1992-12-10|1993-02-25|COLLECT COD|AIR|equests do are. deposits| +20876|770020|45051|1|40|43599.60|0.02|0.06|A|F|1993-07-24|1993-09-29|1993-08-14|TAKE BACK RETURN|MAIL|cial, quick foxes sleep ironic, ironic | +20876|720217|32732|2|25|30929.50|0.08|0.05|R|F|1993-09-08|1993-10-11|1993-09-20|COLLECT COD|AIR|riously after the fluffily r| +20876|678903|16443|3|4|7527.48|0.06|0.07|R|F|1993-11-02|1993-08-25|1993-11-13|DELIVER IN PERSON|TRUCK|inal requests cajole final packages. dogge| +20876|321795|21796|4|35|63587.30|0.02|0.03|A|F|1993-11-02|1993-08-24|1993-12-01|DELIVER IN PERSON|SHIP|ructions. furiously even a| +20877|824554|37071|1|21|31048.71|0.01|0.05|N|O|1998-01-21|1997-11-20|1998-02-15|DELIVER IN PERSON|MAIL| instructions are pending attai| +20877|270015|7531|2|4|3940.00|0.10|0.03|N|O|1998-01-30|1997-11-22|1998-02-02|TAKE BACK RETURN|MAIL| regular theodolites boost at the slyly | +20877|134186|9191|3|22|26843.96|0.00|0.07|N|O|1997-12-18|1997-12-09|1998-01-11|COLLECT COD|TRUCK| pinto beans detect quickly according to th| +20877|249767|12272|4|14|24034.50|0.06|0.01|N|O|1997-11-11|1998-01-04|1997-11-29|COLLECT COD|REG AIR|. foxes along the blithely express plat| +20877|830291|5324|5|33|40301.25|0.10|0.08|N|O|1997-10-22|1998-01-07|1997-10-31|TAKE BACK RETURN|REG AIR| sly ideas. unusual p| +20877|686298|23838|6|38|48801.88|0.06|0.02|N|O|1997-12-10|1997-11-23|1997-12-12|NONE|REG AIR|s mold evenly final packages. furiously | +20877|602966|2967|7|47|87839.71|0.02|0.07|N|O|1997-11-27|1997-12-26|1997-12-23|NONE|TRUCK|entiments nag agains| +20878|34491|21992|1|1|1425.49|0.01|0.05|R|F|1993-12-25|1994-02-25|1994-01-20|COLLECT COD|SHIP|ndencies are. furio| +20878|686610|49124|2|44|70249.52|0.07|0.05|R|F|1994-03-04|1994-01-26|1994-03-29|NONE|SHIP|ons boost ac| +20879|216398|16399|1|20|26287.60|0.08|0.06|R|F|1994-05-25|1994-04-06|1994-05-29|TAKE BACK RETURN|REG AIR| express packages cajo| +20879|566|38067|2|4|5866.24|0.00|0.06|A|F|1994-02-09|1994-04-25|1994-02-15|TAKE BACK RETURN|FOB|s are furiou| +20879|509587|47118|3|42|67055.52|0.00|0.02|R|F|1994-05-19|1994-04-11|1994-06-06|DELIVER IN PERSON|AIR|d depths haggle regular requests. regular p| +20879|620240|45265|4|14|16242.94|0.09|0.08|R|F|1994-01-28|1994-04-22|1994-02-08|TAKE BACK RETURN|FOB|y. carefully bold theodolites wake among t| +20879|358840|33855|5|8|15190.64|0.03|0.02|A|F|1994-02-09|1994-04-03|1994-02-16|COLLECT COD|MAIL|, ironic requests| +20879|15797|15798|6|29|49670.91|0.09|0.05|R|F|1994-03-25|1994-04-09|1994-04-24|TAKE BACK RETURN|AIR|g instructions are. ruthless account| +20904|738532|1047|1|47|73813.50|0.03|0.03|A|F|1993-09-06|1993-08-27|1993-09-10|NONE|MAIL|sheaves. fluffily fina| +20904|501824|26845|2|46|83986.80|0.07|0.02|R|F|1993-07-12|1993-08-21|1993-07-28|COLLECT COD|FOB|ly. unusual instructions wake ironica| +20904|151526|14030|3|13|20507.76|0.00|0.04|R|F|1993-07-27|1993-08-13|1993-07-31|TAKE BACK RETURN|SHIP|ual pinto beans nag carefully. ironic| +20904|683840|8867|4|7|12766.67|0.03|0.01|R|F|1993-08-07|1993-08-20|1993-08-29|TAKE BACK RETURN|TRUCK|ic ideas. furio| +20904|297071|34587|5|5|5340.30|0.02|0.01|A|F|1993-07-05|1993-09-28|1993-07-16|COLLECT COD|SHIP| accounts print carefully. excuses cajole | +20904|869296|44331|6|8|10122.00|0.07|0.02|A|F|1993-10-22|1993-08-18|1993-11-11|COLLECT COD|RAIL|ironic notornis sleep| +20905|63101|13102|1|10|10641.00|0.05|0.00|R|F|1993-04-08|1993-04-23|1993-04-24|COLLECT COD|FOB|odolites promise ca| +20906|997542|22581|1|38|62301.00|0.07|0.01|A|F|1994-06-18|1994-07-26|1994-06-24|COLLECT COD|FOB|side of the special pint| +20906|682985|8012|2|1|1967.95|0.03|0.06|A|F|1994-08-27|1994-08-06|1994-09-01|TAKE BACK RETURN|REG AIR|lites haggle daringly eve| +20906|919608|32127|3|44|71612.64|0.10|0.03|A|F|1994-06-01|1994-08-06|1994-06-21|DELIVER IN PERSON|SHIP|theodolites play against the deposits| +20906|849437|49438|4|37|51296.43|0.08|0.01|A|F|1994-07-24|1994-08-07|1994-08-05|COLLECT COD|MAIL|mptotes are | +20907|779813|17359|1|44|83282.32|0.01|0.02|A|F|1994-07-29|1994-09-06|1994-08-09|TAKE BACK RETURN|FOB|le. silent, final theodolites un| +20907|313521|38534|2|32|49104.32|0.07|0.07|A|F|1994-07-29|1994-09-05|1994-08-15|NONE|TRUCK| pinto beans. fluffily e| +20907|338529|26048|3|7|10972.57|0.07|0.08|R|F|1994-08-14|1994-10-02|1994-08-26|COLLECT COD|AIR|es use slyly always special requests. bold| +20907|655592|43132|4|47|72735.32|0.01|0.00|A|F|1994-08-12|1994-09-10|1994-08-13|TAKE BACK RETURN|TRUCK|blithely regular platelets sublate qui| +20907|531504|31505|5|13|19961.24|0.07|0.02|A|F|1994-08-02|1994-10-17|1994-08-20|TAKE BACK RETURN|SHIP|s haggle bravely. slyly ironic deposits w| +20907|972081|22082|6|46|53039.84|0.02|0.03|A|F|1994-10-07|1994-08-30|1994-10-27|DELIVER IN PERSON|REG AIR|l deposits after the careful| +20907|759012|21528|7|23|24632.54|0.03|0.06|R|F|1994-09-09|1994-09-04|1994-09-23|NONE|RAIL|. packages above the fluff| +20908|706671|44214|1|12|20131.68|0.05|0.08|R|F|1994-02-02|1993-11-27|1994-02-05|TAKE BACK RETURN|REG AIR|ng theodolites poach| +20908|15504|3005|2|11|15614.50|0.02|0.06|A|F|1993-11-26|1993-12-16|1993-12-10|COLLECT COD|REG AIR|. ironic packages about the | +20908|561144|11145|3|3|3615.36|0.01|0.01|R|F|1993-12-07|1993-11-19|1993-12-23|TAKE BACK RETURN|AIR|onic packages. regular asymptotes cajo| +20909|538727|13748|1|22|38845.40|0.01|0.02|N|O|1995-10-25|1995-11-01|1995-11-17|NONE|MAIL|y ironic pearls cajole slyly: iron| +20910|90719|28223|1|10|17097.10|0.09|0.08|N|O|1996-10-19|1996-08-30|1996-11-08|TAKE BACK RETURN|TRUCK|ests detect carefully above the careful| +20910|699317|11831|2|1|1316.28|0.03|0.01|N|O|1996-08-14|1996-09-05|1996-09-13|NONE|FOB| furiously | +20910|406665|6666|3|35|55007.40|0.01|0.02|N|O|1996-07-17|1996-09-22|1996-07-31|TAKE BACK RETURN|TRUCK|ses. blithely regular p| +20910|809755|9756|4|4|6658.84|0.09|0.00|N|O|1996-09-17|1996-09-11|1996-09-26|DELIVER IN PERSON|AIR| nag. furiously ironic plat| +20910|535705|23236|5|47|81811.96|0.00|0.06|N|O|1996-10-23|1996-09-13|1996-11-17|COLLECT COD|SHIP| beans. ca| +20910|581131|43643|6|36|43635.96|0.02|0.07|N|O|1996-08-03|1996-08-16|1996-08-27|TAKE BACK RETURN|FOB| the furiously bold deposits. even e| +20910|54448|29451|7|12|16829.28|0.09|0.07|N|O|1996-08-28|1996-08-16|1996-09-07|NONE|AIR| final, even | +20911|98406|35910|1|11|15448.40|0.10|0.05|R|F|1993-07-09|1993-04-28|1993-08-03|DELIVER IN PERSON|MAIL| might cajole. furi| +20911|904009|16528|2|14|14181.44|0.02|0.06|A|F|1993-05-02|1993-05-01|1993-05-14|NONE|RAIL|ss packages. ins| +20911|676577|1604|3|47|73016.38|0.06|0.04|R|F|1993-05-08|1993-04-15|1993-06-01|TAKE BACK RETURN|SHIP|c pinto beans solve carefully quick| +20911|224103|36608|4|9|9243.81|0.06|0.04|R|F|1993-06-16|1993-05-13|1993-07-15|TAKE BACK RETURN|RAIL|equests. fluffily stealthy r| +20911|488065|38066|5|23|24219.92|0.06|0.08|R|F|1993-06-03|1993-04-15|1993-06-15|DELIVER IN PERSON|TRUCK|odolites around the care| +20911|897474|22509|6|26|38257.18|0.08|0.07|A|F|1993-05-18|1993-05-31|1993-05-31|COLLECT COD|SHIP|ions are slyly. sly| +20936|633717|8742|1|11|18157.48|0.08|0.07|N|O|1997-06-20|1997-07-08|1997-06-30|COLLECT COD|REG AIR|ifts affix courts. regularly| +20936|876264|1299|2|33|40927.26|0.00|0.03|N|O|1997-06-29|1997-07-28|1997-07-28|DELIVER IN PERSON|FOB|he accounts. s| +20936|355818|43340|3|44|82447.20|0.02|0.01|N|O|1997-07-20|1997-08-05|1997-07-28|NONE|RAIL|deas affix| +20936|231050|31051|4|26|25507.04|0.09|0.08|N|O|1997-08-29|1997-08-15|1997-09-18|COLLECT COD|SHIP|quickly unu| +20936|250623|25634|5|47|73959.67|0.09|0.08|N|O|1997-07-12|1997-07-25|1997-07-18|TAKE BACK RETURN|FOB|cial packages. notornis wake blithe| +20936|206392|6393|6|36|46741.68|0.10|0.00|N|O|1997-05-29|1997-07-05|1997-06-28|TAKE BACK RETURN|RAIL|inal packages ought to ha| +20936|818582|31099|7|22|33011.88|0.06|0.01|N|O|1997-09-13|1997-08-12|1997-09-19|DELIVER IN PERSON|REG AIR| accounts. theod| +20937|907199|32236|1|42|50658.30|0.10|0.08|R|F|1995-03-27|1995-05-30|1995-04-11|NONE|SHIP|r, pending ideas. carefully dogged ideas | +20937|288819|13830|2|10|18078.00|0.03|0.08|R|F|1995-03-27|1995-04-22|1995-04-05|COLLECT COD|RAIL|le around the furiousl| +20937|169668|19669|3|6|10425.96|0.02|0.08|A|F|1995-06-03|1995-05-12|1995-06-11|COLLECT COD|REG AIR|ses sleep slyl| +20937|599797|12309|4|12|22761.24|0.07|0.04|A|F|1995-04-10|1995-06-09|1995-04-18|DELIVER IN PERSON|REG AIR|odolites affix fluffily idle theodolites| +20937|783077|33078|5|8|9280.32|0.10|0.08|A|F|1995-05-22|1995-04-19|1995-06-08|DELIVER IN PERSON|MAIL|nently ironic depo| +20937|159230|34237|6|33|42544.59|0.07|0.02|R|F|1995-05-05|1995-05-25|1995-06-02|DELIVER IN PERSON|SHIP|are fluffily theodolites. fluffi| +20937|165657|3167|7|32|55124.80|0.03|0.08|N|F|1995-05-21|1995-05-17|1995-06-18|COLLECT COD|MAIL|efully pending requests na| +20938|188524|1028|1|20|32250.40|0.10|0.06|A|F|1993-04-26|1993-02-28|1993-05-06|TAKE BACK RETURN|AIR|foxes after the quic| +20939|367787|17788|1|36|66771.72|0.04|0.03|N|O|1998-05-16|1998-07-07|1998-06-01|COLLECT COD|SHIP|ly carefully pend| +20940|439645|39646|1|10|15846.20|0.09|0.07|A|F|1992-10-20|1992-10-22|1992-11-09|TAKE BACK RETURN|TRUCK|ctions need to sleep. furiously ir| +20940|100939|940|2|42|81477.06|0.08|0.03|A|F|1992-09-10|1992-09-19|1992-10-03|NONE|AIR|oze around the flu| +20940|467312|4840|3|23|29423.67|0.00|0.02|A|F|1992-10-17|1992-11-03|1992-11-13|DELIVER IN PERSON|FOB|ructions against th| +20940|97429|47430|4|17|24249.14|0.04|0.01|R|F|1992-09-03|1992-10-25|1992-09-29|DELIVER IN PERSON|RAIL|inal accounts sleep carefully above the| +20940|477384|2403|5|34|46286.24|0.00|0.08|R|F|1992-10-27|1992-10-17|1992-11-15|NONE|SHIP|furiously bold depe| +20940|380724|18246|6|7|12632.97|0.05|0.00|R|F|1992-10-29|1992-10-03|1992-11-24|NONE|MAIL|cross the quic| +20940|814243|26760|7|28|32401.60|0.06|0.08|R|F|1992-10-16|1992-09-23|1992-10-25|NONE|FOB|oxes boost above the even accounts| +20941|981873|19431|1|20|39096.60|0.06|0.04|N|O|1996-02-13|1996-04-20|1996-02-19|COLLECT COD|FOB|ght cajole even instructions. regular, | +20941|332680|20199|2|1|1712.67|0.01|0.00|N|O|1996-04-26|1996-03-11|1996-04-28|TAKE BACK RETURN|RAIL|equests. furiously ironic package| +20941|337987|494|3|48|97198.56|0.04|0.01|N|O|1996-02-11|1996-03-08|1996-03-07|COLLECT COD|SHIP|dolites detect fluffily even packag| +20941|535548|35549|4|24|38004.48|0.01|0.07|N|O|1996-05-03|1996-03-27|1996-05-05|NONE|RAIL|phins are slyly. carefully r| +20942|643217|5730|1|9|10441.62|0.07|0.04|R|F|1993-09-11|1993-09-12|1993-09-24|TAKE BACK RETURN|REG AIR|ts above the bold deposits are express| +20942|532553|20084|2|10|15855.30|0.09|0.03|R|F|1993-08-13|1993-09-05|1993-08-17|TAKE BACK RETURN|MAIL|ggle above the carefully special theodol| +20942|611003|36028|3|15|13709.55|0.08|0.05|R|F|1993-08-31|1993-09-07|1993-09-19|TAKE BACK RETURN|TRUCK| quickly ironic attainments. slyly ironic f| +20942|126711|14218|4|22|38229.62|0.08|0.05|A|F|1993-09-27|1993-09-18|1993-10-13|DELIVER IN PERSON|REG AIR| furiously blithely d| +20942|625333|358|5|28|35232.40|0.04|0.08|A|F|1993-10-26|1993-09-01|1993-11-11|COLLECT COD|FOB| furiously regular pint| +20942|968480|6038|6|26|40259.44|0.04|0.01|A|F|1993-08-25|1993-09-28|1993-09-07|DELIVER IN PERSON|REG AIR|y pending pac| +20943|198605|23612|1|43|73254.80|0.03|0.04|R|F|1994-03-11|1994-02-17|1994-03-21|TAKE BACK RETURN|SHIP|usly silent requests? quickly reg| +20943|951342|26381|2|7|9753.10|0.01|0.08|R|F|1994-01-18|1994-01-13|1994-01-28|NONE|REG AIR|ess accounts| +20943|196490|46491|3|30|47594.70|0.06|0.00|R|F|1994-03-05|1994-02-13|1994-03-31|TAKE BACK RETURN|TRUCK|ests play fluffily special asymptotes! s| +20943|391482|16497|4|4|6293.88|0.09|0.06|R|F|1993-12-27|1994-02-22|1994-01-05|NONE|SHIP|excuses x-ray furiously bo| +20943|628433|15970|5|39|53094.60|0.09|0.04|A|F|1994-03-29|1994-02-20|1994-04-23|NONE|FOB|nts cajole across the ironic, r| +20943|71978|21979|6|8|15599.76|0.01|0.00|A|F|1994-01-28|1994-01-10|1994-02-14|DELIVER IN PERSON|AIR|slyly above the blithely ironic t| +20968|983141|8180|1|22|26930.20|0.09|0.08|R|F|1994-02-06|1994-02-19|1994-02-22|DELIVER IN PERSON|SHIP|furiously ironi| +20968|640463|2976|2|26|36489.18|0.09|0.07|R|F|1994-02-09|1994-01-22|1994-03-05|DELIVER IN PERSON|MAIL| bold ideas. unusual accounts slee| +20969|574671|49694|1|49|85536.85|0.00|0.02|N|O|1997-09-29|1997-11-03|1997-10-27|DELIVER IN PERSON|TRUCK|nto beans are quickly. fluffil| +20969|492704|5214|2|25|42417.00|0.00|0.07|N|O|1997-10-01|1997-10-26|1997-10-03|DELIVER IN PERSON|RAIL|equests wake slyly ironic pinto bea| +20969|871567|21568|3|45|69233.40|0.08|0.05|N|O|1997-12-10|1997-11-24|1997-12-25|NONE|RAIL|ial instructions about the pending du| +20969|421562|9087|4|12|17802.48|0.06|0.06|N|O|1997-12-07|1997-11-21|1998-01-02|DELIVER IN PERSON|AIR|are furious| +20969|191930|41931|5|36|72789.48|0.03|0.06|N|O|1997-12-02|1997-11-18|1997-12-19|NONE|RAIL|y regular deposits. reg| +20969|764667|2213|6|14|24242.82|0.08|0.06|N|O|1997-11-19|1997-12-12|1997-12-15|NONE|REG AIR|ses integrate slyly even requests. spe| +20970|947559|35114|1|22|35343.22|0.06|0.01|R|F|1993-01-03|1992-12-22|1993-01-11|TAKE BACK RETURN|FOB|tes according to the regular, even | +20970|620834|33347|2|4|7019.20|0.06|0.04|R|F|1992-10-28|1993-01-06|1992-11-25|NONE|SHIP|s doze. special, regular deposits ki| +20970|343957|43958|3|43|86040.42|0.07|0.00|A|F|1993-02-22|1993-01-13|1993-03-23|NONE|FOB|uick packages affix? express | +20971|850219|25254|1|10|11691.70|0.00|0.02|N|O|1995-10-24|1995-10-07|1995-11-18|TAKE BACK RETURN|FOB| final foxes about the theodolites lo| +20971|616545|29058|2|12|17538.12|0.09|0.03|N|O|1995-10-25|1995-09-26|1995-11-09|COLLECT COD|SHIP|refully fluffy as| +20971|268793|18794|3|14|24664.92|0.00|0.00|N|O|1995-07-25|1995-10-05|1995-08-18|DELIVER IN PERSON|AIR|r the pending,| +20971|602755|40292|4|50|82886.00|0.10|0.06|N|O|1995-07-15|1995-08-27|1995-07-29|DELIVER IN PERSON|FOB|nal dependencies boost | +20971|488637|26165|5|37|60147.57|0.02|0.03|N|O|1995-08-09|1995-08-28|1995-08-28|DELIVER IN PERSON|AIR|accounts. ca| +20971|518625|31136|6|34|55882.40|0.00|0.03|N|O|1995-08-08|1995-08-21|1995-08-15|TAKE BACK RETURN|MAIL|to beans wake quickl| +20971|524315|49336|7|17|22767.93|0.03|0.02|N|O|1995-07-26|1995-10-10|1995-07-31|NONE|MAIL|lent escapades. packages along| +20972|146425|46426|1|12|17657.04|0.09|0.05|A|F|1995-05-13|1995-05-14|1995-05-28|NONE|RAIL|telets cajole fur| +20973|251502|1503|1|8|11627.92|0.02|0.04|N|O|1996-06-06|1996-06-02|1996-06-11|TAKE BACK RETURN|MAIL|bove the final pinto beans. blithely ev| +20973|980229|5268|2|13|17019.34|0.00|0.00|N|O|1996-05-29|1996-07-06|1996-06-16|COLLECT COD|AIR|atelets was furiousl| +20973|701260|26289|3|39|49187.97|0.02|0.00|N|O|1996-06-13|1996-06-14|1996-07-11|DELIVER IN PERSON|AIR|ronic, slow instructions affix furiousl| +20973|73907|36409|4|23|43260.70|0.04|0.00|N|O|1996-07-14|1996-07-04|1996-08-11|TAKE BACK RETURN|MAIL|deposits. even, express | +20973|142851|42852|5|5|9469.25|0.01|0.07|N|O|1996-05-20|1996-06-23|1996-06-02|TAKE BACK RETURN|FOB|l accounts integr| +20974|905105|5106|1|22|24421.32|0.05|0.07|A|F|1995-05-13|1995-07-04|1995-06-01|COLLECT COD|REG AIR|ages. furiously| +20974|85262|35263|2|3|3741.78|0.03|0.02|N|F|1995-06-08|1995-07-06|1995-06-25|DELIVER IN PERSON|FOB|s are furiously. p| +20975|211668|11669|1|18|28433.70|0.09|0.08|N|O|1995-09-02|1995-07-23|1995-09-03|DELIVER IN PERSON|FOB| packages. furiously pending reque| +20975|495494|8004|2|9|13405.23|0.06|0.06|N|O|1995-09-04|1995-08-27|1995-09-28|TAKE BACK RETURN|RAIL| deposits according to the | +20975|761889|24405|3|37|72181.45|0.03|0.00|N|F|1995-06-11|1995-08-11|1995-06-29|COLLECT COD|RAIL|lyly ironic request| +20975|60109|47613|4|23|24589.30|0.01|0.01|N|O|1995-08-17|1995-07-14|1995-09-06|COLLECT COD|MAIL|even, stea| +21000|594586|7098|1|30|50416.80|0.03|0.00|N|O|1997-11-29|1998-01-18|1997-12-03|COLLECT COD|RAIL|e furiously s| +21000|206075|43588|2|28|27469.68|0.00|0.04|N|O|1998-01-30|1997-12-19|1998-02-08|TAKE BACK RETURN|FOB|es about the bold deposits hag| +21000|493748|43749|3|42|73152.24|0.05|0.04|N|O|1998-01-08|1997-11-29|1998-01-14|NONE|FOB| wake according to the fluffily regu| +21001|302515|27528|1|26|39455.00|0.01|0.01|A|F|1993-10-12|1993-10-29|1993-10-20|TAKE BACK RETURN|RAIL|thely along the pending requests-- qu| +21001|366651|29159|2|33|56682.12|0.09|0.03|A|F|1993-12-17|1993-12-25|1994-01-06|DELIVER IN PERSON|TRUCK|nic foxes in| +21001|299377|11883|3|26|35785.36|0.04|0.03|A|F|1993-12-09|1993-11-21|1993-12-10|DELIVER IN PERSON|TRUCK|ct quickly speci| +21001|613588|1125|4|34|51052.70|0.09|0.03|R|F|1994-01-26|1993-12-07|1994-02-02|DELIVER IN PERSON|SHIP| furious requests hang pending, expre| +21001|572194|22195|5|25|31654.25|0.08|0.02|R|F|1993-10-09|1993-12-07|1993-10-26|DELIVER IN PERSON|TRUCK|excuses integrate. acc| +21001|854127|4128|6|46|49729.68|0.00|0.08|A|F|1994-01-08|1993-12-09|1994-01-22|NONE|FOB|sleep carefully among t| +21002|715125|27640|1|23|26222.07|0.05|0.07|N|O|1997-08-08|1997-10-16|1997-08-31|COLLECT COD|MAIL|uriously abo| +21002|105609|30614|2|43|69427.80|0.01|0.07|N|O|1997-09-25|1997-09-11|1997-10-04|TAKE BACK RETURN|MAIL|its wake blithely silent d| +21002|960833|35872|3|10|18937.90|0.05|0.02|N|O|1997-10-23|1997-09-28|1997-11-14|DELIVER IN PERSON|TRUCK|le furiously | +21002|717547|30062|4|18|28161.18|0.06|0.03|N|O|1997-07-30|1997-10-09|1997-08-06|DELIVER IN PERSON|FOB|e requests. fur| +21002|805226|30259|5|32|36197.76|0.08|0.07|N|O|1997-10-13|1997-09-04|1997-10-18|NONE|FOB|onic packages dete| +21002|419732|44749|6|36|59461.56|0.09|0.00|N|O|1997-10-23|1997-09-20|1997-11-03|DELIVER IN PERSON|REG AIR|encies. furiously even depos| +21003|800620|25653|1|31|47137.98|0.07|0.07|N|O|1997-04-24|1997-03-21|1997-05-18|DELIVER IN PERSON|RAIL|instructions sleep furiously reg| +21003|7024|19525|2|18|16758.36|0.06|0.06|N|O|1997-05-28|1997-04-25|1997-06-16|TAKE BACK RETURN|MAIL|e even, even excuses.| +21003|47946|47947|3|31|58712.14|0.01|0.05|N|O|1997-05-19|1997-05-13|1997-06-05|TAKE BACK RETURN|REG AIR|ests hang quickly. quietly ironi| +21003|812168|24685|4|39|42124.68|0.00|0.08|N|O|1997-04-10|1997-03-31|1997-04-16|TAKE BACK RETURN|TRUCK|ts cajole fluffily final | +21003|92584|5086|5|41|64639.78|0.08|0.08|N|O|1997-04-26|1997-04-26|1997-05-21|TAKE BACK RETURN|REG AIR|ses nod alongside of the | +21004|232694|7703|1|46|74827.28|0.09|0.04|N|O|1995-07-05|1995-07-31|1995-07-31|DELIVER IN PERSON|MAIL|xes sleep blit| +21004|882425|44943|2|26|36591.88|0.01|0.07|N|O|1995-06-30|1995-07-19|1995-07-03|DELIVER IN PERSON|FOB|cial ideas. express packages haggl| +21005|462938|12939|1|17|32315.47|0.00|0.05|N|O|1996-07-29|1996-09-11|1996-08-10|COLLECT COD|MAIL|sly pending| +21005|589046|39047|2|46|52210.92|0.09|0.07|N|O|1996-09-21|1996-09-23|1996-10-16|COLLECT COD|FOB|final requests shall h| +21005|87566|37567|3|33|51267.48|0.08|0.03|N|O|1996-07-23|1996-09-28|1996-08-17|TAKE BACK RETURN|SHIP|accounts. slyly ironic depo| +21006|531698|44209|1|17|29404.39|0.06|0.06|R|F|1995-04-30|1995-03-18|1995-05-15|TAKE BACK RETURN|AIR|cuses impress c| +21006|247698|22707|2|26|42787.68|0.01|0.06|A|F|1995-04-03|1995-02-19|1995-04-18|DELIVER IN PERSON|TRUCK|he unusual epitaphs. blit| +21007|554657|4658|1|26|44502.38|0.04|0.01|N|O|1997-06-30|1997-07-11|1997-07-28|COLLECT COD|REG AIR|ns. carefully special the| +21032|347478|34997|1|5|7627.30|0.05|0.07|N|O|1996-08-24|1996-07-15|1996-09-20|NONE|RAIL|fily regul| +21032|54680|42184|2|6|9808.08|0.10|0.00|N|O|1996-09-17|1996-07-26|1996-10-13|TAKE BACK RETURN|SHIP| unusual foxes are ca| +21032|997042|9562|3|46|52394.00|0.02|0.08|N|O|1996-07-08|1996-08-04|1996-08-01|NONE|SHIP| even packages. bravely special a| +21032|269333|19334|4|4|5209.28|0.00|0.02|N|O|1996-09-26|1996-07-24|1996-09-29|COLLECT COD|REG AIR|ckly silent accounts cajole fluffily.| +21032|667381|42408|5|35|47192.25|0.00|0.07|N|O|1996-09-07|1996-07-23|1996-09-16|DELIVER IN PERSON|RAIL|ily final ideas nag with the| +21032|659469|9470|6|39|55708.77|0.01|0.05|N|O|1996-09-14|1996-09-05|1996-09-15|TAKE BACK RETURN|REG AIR|ructions boost according to the blithely un| +21032|692477|30017|7|20|29388.80|0.08|0.02|N|O|1996-06-30|1996-08-04|1996-07-10|TAKE BACK RETURN|TRUCK|uickly even platelets. carefully | +21033|445510|33035|1|22|32020.78|0.06|0.01|A|F|1994-11-26|1994-09-24|1994-12-23|DELIVER IN PERSON|FOB|ely final requests. silent packages po| +21033|685071|10098|2|50|52802.00|0.03|0.07|A|F|1994-10-11|1994-09-17|1994-10-21|TAKE BACK RETURN|TRUCK|deas boost fluffily. final i| +21033|982643|32644|3|4|6902.40|0.09|0.03|A|F|1994-08-08|1994-09-17|1994-08-13|COLLECT COD|REG AIR|uctions sleep ru| +21033|267164|17165|4|22|24885.30|0.00|0.05|R|F|1994-08-05|1994-10-10|1994-08-24|TAKE BACK RETURN|MAIL|arefully special asy| +21033|209695|34704|5|8|12837.44|0.06|0.05|A|F|1994-09-18|1994-10-17|1994-10-01|DELIVER IN PERSON|RAIL|ter the slyly regular epitaphs. ca| +21033|339433|26952|6|33|48589.86|0.07|0.05|A|F|1994-08-06|1994-10-26|1994-08-24|COLLECT COD|TRUCK|onic excuses. doggedly r| +21034|114870|39875|1|10|18848.70|0.04|0.08|N|O|1996-12-09|1996-11-01|1997-01-07|NONE|TRUCK|carefully final packages. sl| +21034|604293|41830|2|44|52679.44|0.09|0.03|N|O|1996-11-30|1996-11-26|1996-12-11|NONE|FOB|tect. packages across| +21035|18269|30770|1|28|33243.28|0.01|0.02|A|F|1994-03-07|1994-04-10|1994-03-08|NONE|TRUCK|its haggle ca| +21035|46459|21460|2|27|37947.15|0.01|0.03|A|F|1994-02-17|1994-02-25|1994-03-05|NONE|FOB|ecial packages. pendi| +21035|834232|46749|3|18|20991.42|0.09|0.01|A|F|1994-03-06|1994-02-19|1994-03-14|COLLECT COD|REG AIR|gular foxes. ironic waters wake qu| +21035|926347|1384|4|7|9613.10|0.00|0.07|A|F|1994-05-07|1994-02-25|1994-06-02|NONE|RAIL| carefully. quickly close | +21036|449667|37192|1|39|63048.96|0.10|0.02|R|F|1993-04-01|1993-02-07|1993-04-22|NONE|REG AIR|ress, silent ideas. slyly pending ac| +21036|552729|15241|2|29|51669.30|0.05|0.08|A|F|1993-05-03|1993-02-16|1993-06-01|TAKE BACK RETURN|REG AIR|iously final requests! slyly f| +21036|703408|3409|3|44|62100.28|0.08|0.05|A|F|1993-02-05|1993-03-14|1993-02-08|DELIVER IN PERSON|SHIP|xpress foxes sleep furi| +21037|377275|14797|1|28|37863.28|0.01|0.06|A|F|1993-09-03|1993-09-13|1993-09-30|TAKE BACK RETURN|FOB| even pinto | +21037|851096|38648|2|35|36646.75|0.07|0.00|A|F|1993-11-08|1993-11-04|1993-11-14|TAKE BACK RETURN|AIR|s. carefully regul| +21037|365283|15284|3|40|53930.80|0.01|0.04|A|F|1993-10-22|1993-11-02|1993-11-21|TAKE BACK RETURN|MAIL|d requests after the theodolites run fu| +21038|578236|3259|1|25|32855.25|0.03|0.04|R|F|1995-04-08|1995-05-09|1995-04-28|DELIVER IN PERSON|AIR|ans boost bli| +21038|396368|33890|2|5|7321.75|0.03|0.07|A|F|1995-03-22|1995-04-11|1995-03-30|NONE|MAIL| slyly. furiously final requests | +21038|756576|31607|3|13|21223.02|0.03|0.07|A|F|1995-05-14|1995-04-17|1995-06-02|TAKE BACK RETURN|FOB|s pinto beans wake specia| +21038|761674|24190|4|8|13885.12|0.01|0.07|R|F|1995-05-27|1995-04-06|1995-06-07|TAKE BACK RETURN|REG AIR|uriously regular requests. slyl| +21038|452333|39861|5|11|14138.41|0.07|0.04|R|F|1995-04-28|1995-04-15|1995-05-16|DELIVER IN PERSON|FOB|ss the express excus| +21039|250679|38195|1|11|17926.26|0.07|0.00|R|F|1995-01-22|1995-01-03|1995-02-09|COLLECT COD|FOB|silent requests under the| +21039|151786|14290|2|17|31242.26|0.10|0.03|R|F|1995-01-30|1995-02-15|1995-02-24|TAKE BACK RETURN|FOB|lithely above the blithely silent packages| +21039|57239|32242|3|1|1196.23|0.01|0.01|A|F|1995-02-28|1995-02-07|1995-03-11|NONE|AIR|zle furiously ironic accounts. | +21039|7699|45200|4|41|65874.29|0.02|0.00|A|F|1995-02-11|1995-01-14|1995-02-25|DELIVER IN PERSON|REG AIR|-- dolphins affix carefully special | +21064|584537|34538|1|33|53509.83|0.00|0.02|N|O|1997-08-31|1997-06-19|1997-09-14|DELIVER IN PERSON|SHIP| regular courts. ironic, express deposi| +21064|301569|39088|2|29|45545.95|0.09|0.02|N|O|1997-05-24|1997-07-12|1997-06-19|DELIVER IN PERSON|FOB|e final dolphins. blithely| +21064|454296|29315|3|32|40008.64|0.09|0.04|N|O|1997-08-03|1997-07-13|1997-08-21|NONE|RAIL| pending accounts integ| +21064|351582|39104|4|39|63709.23|0.01|0.08|N|O|1997-08-04|1997-08-03|1997-08-19|DELIVER IN PERSON|RAIL|d deposits. bli| +21065|611289|11290|1|33|39608.25|0.01|0.02|A|F|1993-09-25|1993-11-08|1993-09-26|DELIVER IN PERSON|FOB| blithely | +21065|918687|6242|2|2|3411.28|0.03|0.02|R|F|1993-11-30|1993-11-17|1993-12-02|COLLECT COD|REG AIR|al foxes in| +21065|371484|21485|3|34|52885.98|0.10|0.01|R|F|1993-11-15|1993-11-23|1993-11-25|TAKE BACK RETURN|FOB|tes. carefully reg| +21065|528786|16317|4|4|7259.04|0.09|0.00|A|F|1993-10-25|1993-10-31|1993-11-04|TAKE BACK RETURN|RAIL|encies. blithely| +21065|292921|17932|5|28|53589.48|0.05|0.02|R|F|1993-10-11|1993-11-24|1993-11-08|TAKE BACK RETURN|SHIP| to the carefully dogged requ| +21065|119331|44336|6|7|9452.31|0.09|0.02|A|F|1993-12-06|1993-11-24|1993-12-31|COLLECT COD|SHIP|xes detect. furious p| +21066|956373|43931|1|35|50026.55|0.02|0.06|N|O|1998-05-12|1998-05-27|1998-05-15|NONE|TRUCK|tes doubt regular, pending req| +21066|753514|41060|2|42|65834.16|0.05|0.08|N|O|1998-06-06|1998-05-30|1998-06-11|NONE|REG AIR|s accounts | +21066|307577|20084|3|1|1584.56|0.10|0.02|N|O|1998-03-27|1998-05-01|1998-04-04|TAKE BACK RETURN|AIR|xpress packages h| +21066|446462|8971|4|48|67605.12|0.04|0.01|N|O|1998-03-23|1998-05-22|1998-04-20|NONE|AIR|telets are thinly | +21067|272354|34860|1|4|5305.36|0.02|0.00|N|O|1997-07-06|1997-05-30|1997-07-11|TAKE BACK RETURN|RAIL|st slyly around the furiously unusual | +21068|688924|38925|1|36|68864.04|0.00|0.02|N|O|1995-08-24|1995-09-23|1995-09-05|TAKE BACK RETURN|REG AIR|ial deposits wake across the slyly speci| +21069|769707|19708|1|19|33756.73|0.10|0.06|R|F|1992-08-18|1992-08-22|1992-09-08|COLLECT COD|SHIP|. blithely express theodolites according | +21069|454252|16762|2|39|47042.97|0.06|0.05|A|F|1992-10-22|1992-10-19|1992-11-05|NONE|AIR|riously silent deposits. ironic depen| +21069|609689|9690|3|30|47959.50|0.05|0.06|A|F|1992-08-14|1992-08-26|1992-08-23|COLLECT COD|SHIP|structions use slyly| +21069|36361|23862|4|26|33731.36|0.06|0.08|A|F|1992-11-15|1992-10-11|1992-12-08|DELIVER IN PERSON|FOB|ges wake furious| +21070|901579|26616|1|4|6322.12|0.00|0.03|A|F|1992-01-12|1992-02-06|1992-01-29|TAKE BACK RETURN|FOB| across the care| +21071|224495|37000|1|49|69554.52|0.06|0.06|N|O|1998-05-03|1998-06-21|1998-05-21|COLLECT COD|FOB|. special requests| +21071|78932|16436|2|4|7643.72|0.03|0.00|N|O|1998-07-30|1998-06-22|1998-08-25|COLLECT COD|AIR|fily special accounts are fluf| +21071|604229|41766|3|37|41928.03|0.08|0.03|N|O|1998-06-28|1998-06-08|1998-07-08|NONE|RAIL|he special packages. furiously bold sautern| +21071|276517|1528|4|4|5974.00|0.10|0.02|N|O|1998-04-27|1998-06-05|1998-04-29|TAKE BACK RETURN|FOB| wake furi| +21096|195971|45972|1|37|76477.89|0.03|0.06|R|F|1995-03-25|1995-01-30|1995-04-06|NONE|AIR|gular pinto beans. bli| +21096|667827|42854|2|34|61022.86|0.05|0.03|A|F|1994-11-30|1995-02-13|1994-12-21|COLLECT COD|MAIL|e furiously expre| +21096|164417|1927|3|34|50367.94|0.01|0.06|R|F|1995-02-05|1995-01-16|1995-02-21|COLLECT COD|MAIL|ding instructions. permanent| +21097|18668|18669|1|37|58706.42|0.09|0.05|N|O|1996-03-10|1996-01-20|1996-03-17|COLLECT COD|MAIL|into beans haggle accordin| +21097|750566|567|2|31|50112.43|0.09|0.04|N|O|1996-03-30|1996-02-12|1996-04-13|TAKE BACK RETURN|REG AIR|ests cajole. even packages use careful| +21098|103140|40647|1|22|25149.08|0.10|0.04|A|F|1994-08-17|1994-08-31|1994-09-11|COLLECT COD|FOB|e furiously final instructions. furio| +21099|20013|7514|1|16|14928.16|0.00|0.06|R|F|1992-09-03|1992-10-17|1992-09-13|TAKE BACK RETURN|SHIP|against the| +21099|354984|29999|2|19|38740.43|0.02|0.04|A|F|1992-07-25|1992-10-15|1992-08-23|TAKE BACK RETURN|AIR|the carefully express deposits caj| +21099|199395|36905|3|2|2988.78|0.01|0.02|A|F|1992-07-28|1992-10-14|1992-08-05|COLLECT COD|MAIL|nding, ironic re| +21099|227932|40437|4|8|14879.36|0.04|0.05|A|F|1992-08-01|1992-09-04|1992-08-29|NONE|FOB|t the dependen| +21100|151386|1387|1|39|56057.82|0.10|0.07|A|F|1992-09-29|1992-10-06|1992-10-09|NONE|MAIL|s. carefully e| +21100|335640|35641|2|48|80430.24|0.02|0.04|A|F|1992-08-10|1992-08-25|1992-09-05|NONE|REG AIR|ke blithely about the unusual pac| +21100|93730|43731|3|38|65501.74|0.06|0.07|R|F|1992-08-17|1992-09-02|1992-09-07|TAKE BACK RETURN|SHIP|run carefull| +21100|315241|27748|4|1|1256.23|0.08|0.00|R|F|1992-07-28|1992-10-05|1992-08-08|DELIVER IN PERSON|FOB|blithely throughout the r| +21100|241577|29090|5|7|10629.92|0.00|0.02|R|F|1992-10-19|1992-09-18|1992-11-16|TAKE BACK RETURN|FOB|s platelets. slyly final dependenci| +21100|179490|17000|6|23|36098.27|0.07|0.08|R|F|1992-08-28|1992-10-06|1992-09-11|DELIVER IN PERSON|MAIL| unusual excuses cajole alongside of t| +21100|676951|39465|7|17|32774.64|0.02|0.01|A|F|1992-08-05|1992-10-07|1992-08-23|NONE|FOB|iers. pending platelets can boost alo| +21101|503379|15890|1|16|22117.60|0.03|0.06|N|O|1995-09-13|1995-10-22|1995-10-03|COLLECT COD|MAIL|en requests. final reques| +21101|280861|30862|2|28|51571.80|0.02|0.08|N|O|1995-10-02|1995-10-12|1995-10-05|TAKE BACK RETURN|RAIL|ests. packages sleep carefu| +21101|426393|26394|3|2|2638.74|0.02|0.00|N|O|1995-12-05|1995-10-15|1995-12-26|TAKE BACK RETURN|RAIL|nusual multipliers breach ca| +21102|7282|44783|1|12|14271.36|0.00|0.07|N|O|1997-12-30|1998-02-16|1998-01-25|TAKE BACK RETURN|REG AIR|w. slyly ironic ideas wa| +21102|380843|30844|2|26|50019.58|0.06|0.08|N|O|1998-02-24|1998-02-07|1998-03-08|DELIVER IN PERSON|MAIL|lithely. qu| +21103|99211|36715|1|3|3630.63|0.00|0.05|N|O|1997-05-23|1997-06-21|1997-05-29|DELIVER IN PERSON|AIR|n foxes wake s| +21103|431294|18819|2|45|55137.15|0.00|0.03|N|O|1997-05-23|1997-05-11|1997-06-09|COLLECT COD|SHIP| final packages. slyly ironic fox| +21103|746511|34054|3|24|37379.52|0.04|0.06|N|O|1997-05-01|1997-05-09|1997-05-18|DELIVER IN PERSON|SHIP|. instructions integrate blithely-- slyl| +21103|597512|35046|4|40|64379.60|0.04|0.08|N|O|1997-04-26|1997-06-16|1997-05-12|COLLECT COD|RAIL|e slyly ironic epitaphs. slyly bold exc| +21103|383685|21207|5|47|83127.49|0.05|0.01|N|O|1997-07-04|1997-05-08|1997-07-23|DELIVER IN PERSON|RAIL|hely even requests nag quickly. slyly e| +21103|577031|14565|6|20|22160.20|0.05|0.05|N|O|1997-06-28|1997-06-06|1997-07-03|TAKE BACK RETURN|SHIP| ideas detect carefully ir| +21128|677453|39967|1|41|58647.22|0.08|0.04|N|O|1996-02-14|1996-04-11|1996-02-16|NONE|RAIL|the quickly | +21128|945652|8171|2|38|64509.18|0.04|0.06|N|O|1996-04-17|1996-04-03|1996-04-29|TAKE BACK RETURN|SHIP|sits boost blithely after | +21128|566780|41803|3|3|5540.28|0.03|0.06|N|O|1996-03-01|1996-03-15|1996-03-22|COLLECT COD|TRUCK|fily even asymptotes haggle final, fluffy| +21128|865024|15025|4|2|1977.96|0.05|0.04|N|O|1996-02-05|1996-04-01|1996-02-29|NONE|AIR|furiously. furiously final ideas abou| +21128|445406|45407|5|28|37838.64|0.10|0.06|N|O|1996-02-15|1996-04-08|1996-03-16|DELIVER IN PERSON|MAIL|regular accounts. special deposits ca| +21128|929867|4904|6|19|36039.58|0.02|0.03|N|O|1996-03-15|1996-03-30|1996-03-24|COLLECT COD|MAIL| regular pinto beans are quickly bold, re| +21128|265971|28477|7|24|46487.04|0.06|0.06|N|O|1996-05-06|1996-02-23|1996-06-05|COLLECT COD|FOB|ckly. regular dol| +21129|172766|22767|1|17|31258.92|0.06|0.00|N|O|1997-07-12|1997-08-02|1997-08-05|DELIVER IN PERSON|SHIP|s. furiously silent dependen| +21129|661909|36936|2|29|54255.23|0.09|0.00|N|O|1997-09-30|1997-09-03|1997-10-03|NONE|FOB|slyly regular packages engage slyly-- p| +21130|966440|41479|1|5|7532.00|0.10|0.01|N|O|1995-08-16|1995-06-03|1995-09-04|COLLECT COD|TRUCK|al requests cajole carefu| +21130|951087|26126|2|45|51211.80|0.04|0.04|A|F|1995-05-31|1995-07-03|1995-06-13|COLLECT COD|AIR|kages. express, reg| +21131|596279|46280|1|14|19253.50|0.06|0.02|N|O|1996-11-07|1996-11-25|1996-11-21|TAKE BACK RETURN|RAIL|thely regular| +21131|655186|30213|2|45|51351.75|0.07|0.03|N|O|1996-12-24|1996-11-14|1997-01-16|TAKE BACK RETURN|MAIL|nts are. caref| +21131|694395|19422|3|7|9725.52|0.07|0.03|N|O|1996-11-19|1996-11-19|1996-12-18|DELIVER IN PERSON|AIR|es doze bli| +21131|691897|41898|4|25|47221.50|0.02|0.05|N|O|1996-11-23|1996-11-16|1996-11-24|COLLECT COD|RAIL|furiously pending requests| +21131|705148|42691|5|4|4612.44|0.00|0.03|N|O|1996-12-03|1996-12-06|1996-12-22|DELIVER IN PERSON|REG AIR|along the regular platelets cajole | +21131|410073|10074|6|25|24576.25|0.06|0.07|N|O|1997-01-26|1996-12-20|1997-02-20|TAKE BACK RETURN|FOB|slowly bold foxes am| +21132|34927|22428|1|3|5585.76|0.02|0.05|N|O|1997-08-21|1997-06-27|1997-09-07|NONE|TRUCK|e slyly unusual instruc| +21132|15003|40004|2|36|33048.00|0.04|0.03|N|O|1997-07-13|1997-07-14|1997-07-18|DELIVER IN PERSON|REG AIR|lar accounts above the final deposits impr| +21132|151374|26381|3|43|61290.91|0.05|0.01|N|O|1997-07-25|1997-07-23|1997-08-10|COLLECT COD|SHIP|the silent deposits. carefully f| +21133|477772|15300|1|43|75239.25|0.04|0.04|A|F|1995-04-14|1995-05-19|1995-05-03|NONE|RAIL|s. quickly e| +21134|94811|32315|1|39|70426.59|0.01|0.05|N|O|1998-04-01|1998-04-08|1998-04-18|DELIVER IN PERSON|AIR| quickly fin| +21134|479954|42464|2|12|23207.16|0.04|0.03|N|O|1998-06-24|1998-04-18|1998-07-13|COLLECT COD|SHIP|ully final requests cajole! fu| +21134|580959|5982|3|12|24479.16|0.09|0.03|N|O|1998-04-10|1998-05-05|1998-04-23|DELIVER IN PERSON|AIR|s hinder carefully after the furiously unu| +21134|174908|37412|4|35|69401.50|0.01|0.03|N|O|1998-05-25|1998-04-24|1998-06-13|COLLECT COD|TRUCK|tegrate quickly. ir| +21135|239976|39977|1|14|26823.44|0.02|0.03|R|F|1993-04-08|1993-03-04|1993-05-05|DELIVER IN PERSON|SHIP|blithely regular theodolites in| +21135|272558|22559|2|28|42855.12|0.10|0.02|R|F|1993-03-08|1993-02-16|1993-04-07|COLLECT COD|MAIL|foxes are carefully at the quickly| +21135|865919|3471|3|48|90473.76|0.00|0.08|R|F|1993-04-08|1993-03-15|1993-04-30|COLLECT COD|RAIL|lar pinto b| +21135|495358|45359|4|1|1353.33|0.09|0.08|R|F|1993-02-06|1993-03-09|1993-02-12|DELIVER IN PERSON|FOB|tructions nag ac| +21135|465711|40730|5|39|65390.91|0.04|0.00|A|F|1993-04-19|1993-02-18|1993-04-22|COLLECT COD|RAIL|ideas run alongside o| +21135|188446|25956|6|15|23016.60|0.05|0.00|R|F|1993-03-28|1993-03-02|1993-04-01|TAKE BACK RETURN|SHIP|ously special accounts. slyly sile| +21160|404108|4109|1|9|9108.72|0.09|0.06|N|O|1996-05-22|1996-04-26|1996-05-30|TAKE BACK RETURN|TRUCK|y about the dogged asymptotes. carefully ev| +21160|832758|45275|2|42|71009.82|0.04|0.08|N|O|1996-06-27|1996-05-08|1996-07-10|COLLECT COD|AIR|regular, regular packages. quickly regula| +21160|158910|46420|3|47|92538.77|0.07|0.02|N|O|1996-06-22|1996-06-07|1996-06-27|COLLECT COD|FOB| even accounts.| +21160|786124|48640|4|37|44773.33|0.10|0.02|N|O|1996-07-18|1996-05-15|1996-08-14|DELIVER IN PERSON|FOB|leep after the blithely regular c| +21160|374466|24467|5|22|33889.90|0.05|0.00|N|O|1996-04-10|1996-06-01|1996-04-18|COLLECT COD|TRUCK|tes dazzle | +21160|638234|13259|6|24|28132.80|0.10|0.02|N|O|1996-05-02|1996-06-02|1996-05-05|NONE|TRUCK|ests. carefully pending accounts wa| +21160|791412|41413|7|27|40591.26|0.10|0.02|N|O|1996-07-02|1996-05-24|1996-07-17|TAKE BACK RETURN|SHIP|silent, final deposits int| +21161|246246|21255|1|27|32190.21|0.00|0.06|A|F|1994-12-08|1994-10-07|1994-12-16|TAKE BACK RETURN|REG AIR|ic deposits sleep regular, final packag| +21161|652311|14825|2|34|42951.52|0.04|0.00|R|F|1994-10-08|1994-10-27|1994-10-22|DELIVER IN PERSON|TRUCK|quickly even, furiou| +21161|379619|17141|3|45|76437.00|0.00|0.01|R|F|1994-11-12|1994-11-17|1994-12-01|COLLECT COD|FOB| requests. fluffily even requests bo| +21161|255144|5145|4|8|8793.04|0.02|0.00|R|F|1994-10-28|1994-10-12|1994-11-14|NONE|SHIP|al, ironic asymptotes| +21161|190271|40272|5|17|23141.59|0.07|0.05|A|F|1994-12-15|1994-11-03|1994-12-28|TAKE BACK RETURN|AIR| use deposits. deposits ab| +21161|873866|23867|6|38|69913.16|0.04|0.03|R|F|1994-12-06|1994-11-01|1995-01-01|NONE|REG AIR|orges. regula| +21161|54399|16901|7|33|44661.87|0.10|0.01|R|F|1994-10-30|1994-10-10|1994-11-11|NONE|REG AIR| theodolites. never ironic theodolites use | +21162|283274|33275|1|29|36460.54|0.10|0.01|R|F|1995-03-28|1995-05-10|1995-04-04|COLLECT COD|AIR|fily idle packages affix carefully; sheave| +21162|980299|30300|2|30|41377.50|0.01|0.05|A|F|1995-03-09|1995-04-30|1995-03-18|DELIVER IN PERSON|AIR|s. final, ironic theodolites | +21162|871060|8612|3|5|5155.10|0.02|0.00|A|F|1995-04-26|1995-05-03|1995-05-03|DELIVER IN PERSON|MAIL|ven deposits cajole furiously| +21162|895563|8081|4|26|40521.52|0.03|0.03|R|F|1995-04-17|1995-05-13|1995-05-03|COLLECT COD|REG AIR|egular courts. fu| +21162|714754|14755|5|26|45986.72|0.04|0.00|R|F|1995-04-11|1995-05-13|1995-04-26|COLLECT COD|REG AIR|y about the si| +21163|515726|40747|1|49|85343.30|0.07|0.07|N|O|1996-08-23|1996-09-18|1996-09-17|TAKE BACK RETURN|FOB| warthogs wi| +21163|797003|47004|2|24|26399.28|0.02|0.06|N|O|1996-07-26|1996-09-20|1996-08-10|COLLECT COD|SHIP|ymptotes w| +21163|221320|33825|3|31|38480.61|0.00|0.04|N|O|1996-08-08|1996-08-03|1996-09-07|COLLECT COD|AIR|leep carefu| +21163|722675|47704|4|28|47533.92|0.03|0.06|N|O|1996-10-30|1996-08-14|1996-11-11|COLLECT COD|RAIL|structions sleep. packages wake furious| +21163|996639|9159|5|27|46860.93|0.08|0.00|N|O|1996-08-16|1996-09-11|1996-08-27|TAKE BACK RETURN|TRUCK|ic instructions. b| +21164|770986|8532|1|35|71993.25|0.03|0.07|A|F|1992-08-12|1992-07-01|1992-08-14|NONE|RAIL|ly. carefully | +21164|954283|29322|2|10|13372.40|0.10|0.02|A|F|1992-08-01|1992-07-11|1992-08-03|COLLECT COD|REG AIR| deposits haggle at t| +21164|619017|44042|3|10|9359.80|0.05|0.04|R|F|1992-09-13|1992-07-27|1992-10-13|DELIVER IN PERSON|MAIL|ut the account| +21164|818307|30824|4|9|11027.34|0.03|0.05|A|F|1992-09-10|1992-07-03|1992-10-08|NONE|REG AIR|ding packages. carefully final re| +21164|276219|38725|5|41|49003.20|0.05|0.04|R|F|1992-06-24|1992-07-02|1992-07-21|TAKE BACK RETURN|AIR|efully special asymptotes d| +21165|436986|49495|1|26|49996.96|0.03|0.03|A|F|1993-02-05|1993-02-05|1993-02-13|DELIVER IN PERSON|REG AIR|uests cajole blithely regular pack| +21165|417191|42208|2|23|25487.91|0.02|0.00|R|F|1993-04-04|1993-03-27|1993-04-14|TAKE BACK RETURN|RAIL| final, fluffy| +21165|724292|36807|3|45|59231.70|0.05|0.00|R|F|1993-02-10|1993-02-25|1993-03-10|DELIVER IN PERSON|MAIL|l excuses. regular cour| +21165|160574|35581|4|44|71921.08|0.05|0.02|R|F|1993-02-19|1993-03-13|1993-03-14|COLLECT COD|AIR|egular requests cajole carefully. sl| +21165|752582|15098|5|21|34325.55|0.06|0.04|R|F|1993-03-27|1993-03-12|1993-04-22|COLLECT COD|SHIP| furiously| +21165|639718|39719|6|50|82884.00|0.06|0.05|R|F|1993-01-03|1993-03-23|1993-01-21|DELIVER IN PERSON|MAIL|kages affix slyly above the| +21165|739169|26712|7|46|55573.98|0.00|0.07|R|F|1993-04-11|1993-03-06|1993-04-27|TAKE BACK RETURN|FOB|oxes wake across the| +21166|202772|2773|1|39|65315.64|0.09|0.03|R|F|1994-01-25|1994-02-04|1994-02-11|TAKE BACK RETURN|RAIL| unusual deposits affix around the fluffily| +21166|980027|42547|2|39|43172.22|0.10|0.06|A|F|1994-01-06|1994-02-03|1994-02-01|NONE|RAIL| ironic pinto beans. blithely unu| +21166|307246|32259|3|46|57648.58|0.02|0.02|A|F|1994-02-04|1993-12-11|1994-02-20|NONE|TRUCK|refully regular deposits. plat| +21166|870549|45584|4|20|30390.00|0.03|0.05|R|F|1994-01-28|1994-01-15|1994-02-15|TAKE BACK RETURN|TRUCK| pending accounts. even ideas are| +21166|316406|28913|5|14|19913.46|0.04|0.01|A|F|1993-12-02|1993-12-14|1994-01-01|COLLECT COD|TRUCK| slyly express idea| +21167|188525|26035|1|7|11294.64|0.05|0.01|N|O|1995-08-24|1995-07-25|1995-09-17|COLLECT COD|SHIP|regular instructions haggle thi| +21167|528816|41327|2|9|16603.11|0.02|0.00|N|O|1995-08-12|1995-07-24|1995-08-28|COLLECT COD|SHIP| express dependencies. blithely | +21192|455812|5813|1|18|31820.22|0.00|0.04|R|F|1992-03-30|1992-04-13|1992-04-15|TAKE BACK RETURN|TRUCK|y around the carefully u| +21192|815754|3303|2|19|31724.49|0.03|0.05|R|F|1992-07-08|1992-05-16|1992-07-15|TAKE BACK RETURN|REG AIR|s wake against the slyly express in| +21192|375389|25390|3|5|7321.85|0.10|0.02|R|F|1992-06-07|1992-05-17|1992-06-20|NONE|REG AIR|uriously unusual| +21193|522495|10026|1|2|3034.94|0.01|0.07|R|F|1993-12-12|1994-01-24|1994-01-05|COLLECT COD|FOB|nticing, daring deposits. final foxes | +21194|440130|2639|1|20|21402.20|0.03|0.02|A|F|1994-03-07|1994-03-24|1994-04-02|DELIVER IN PERSON|RAIL|ld requests integrate according to the ex| +21194|253785|3786|2|18|31297.86|0.02|0.03|A|F|1994-03-27|1994-02-17|1994-03-30|DELIVER IN PERSON|AIR|packages wake quickly. slyly final | +21195|64253|1757|1|7|8520.75|0.09|0.02|N|O|1996-07-28|1996-09-05|1996-08-01|DELIVER IN PERSON|MAIL|heodolites wake | +21195|891212|41213|2|22|26469.74|0.02|0.04|N|O|1996-10-01|1996-09-10|1996-10-18|TAKE BACK RETURN|AIR|osits are carefully even dugouts. quickly e| +21195|593393|43394|3|46|68373.02|0.04|0.00|N|O|1996-09-30|1996-09-01|1996-10-30|NONE|TRUCK|ely across the quickly ironi| +21195|145643|8146|4|8|13509.12|0.10|0.03|N|O|1996-08-27|1996-09-07|1996-09-11|COLLECT COD|MAIL| regular multipliers can c| +21195|808246|20763|5|34|39242.80|0.07|0.01|N|O|1996-09-14|1996-07-31|1996-10-14|COLLECT COD|RAIL|final patterns about t| +21196|929335|41854|1|45|61393.05|0.05|0.03|N|O|1996-06-17|1996-07-13|1996-06-21|NONE|TRUCK|, ironic accounts. dependencies haggle| +21196|319703|7222|2|7|12058.83|0.02|0.02|N|O|1996-06-11|1996-07-15|1996-06-13|NONE|AIR|gle. quickly final excuses sleep | +21196|247904|35417|3|19|35185.91|0.04|0.08|N|O|1996-06-26|1996-07-16|1996-07-24|TAKE BACK RETURN|MAIL|, enticing pinto beans. r| +21196|507345|44876|4|39|52740.48|0.08|0.07|N|O|1996-06-21|1996-07-02|1996-07-01|DELIVER IN PERSON|AIR|xes. carefully even instructions are. clo| +21197|600488|489|1|24|33322.80|0.05|0.01|A|F|1993-09-04|1993-09-27|1993-09-30|COLLECT COD|MAIL|nusual accounts! carefully unusual pin| +21198|174952|12462|1|38|77024.10|0.06|0.03|A|F|1994-08-02|1994-08-06|1994-08-30|COLLECT COD|MAIL| theodolites eat fluffily car| +21199|115072|27575|1|2|2174.14|0.05|0.01|N|O|1995-08-09|1995-08-02|1995-08-28|DELIVER IN PERSON|AIR| doubt car| +21199|9577|47078|2|50|74328.50|0.03|0.08|N|O|1995-07-15|1995-07-26|1995-08-13|DELIVER IN PERSON|SHIP|ideas wake blithely even foxes. | +21199|957314|7315|3|44|60335.88|0.08|0.08|N|O|1995-08-07|1995-09-01|1995-08-21|COLLECT COD|REG AIR|the slyly regular excuses wa| +21224|318963|18964|1|9|17837.55|0.03|0.02|A|F|1994-08-03|1994-10-13|1994-08-25|COLLECT COD|TRUCK|the never even accounts. slyly even courts| +21225|913246|801|1|43|54145.60|0.03|0.03|N|O|1997-02-06|1997-04-02|1997-02-22|COLLECT COD|REG AIR|ress, final packages sleep slyly. | +21225|923983|49020|2|33|66229.02|0.04|0.06|N|O|1997-04-03|1997-02-26|1997-04-17|DELIVER IN PERSON|MAIL|riously unusual requests against | +21225|376329|13851|3|41|57617.71|0.08|0.02|N|O|1997-03-26|1997-04-05|1997-04-22|COLLECT COD|RAIL|egular packages. ironic requests nag | +21225|948336|10855|4|40|55371.60|0.05|0.02|N|O|1997-05-14|1997-03-15|1997-05-18|NONE|MAIL| deposits maintain c| +21226|194705|19712|1|44|79186.80|0.10|0.01|N|O|1997-08-28|1997-10-28|1997-09-24|DELIVER IN PERSON|FOB|s use. unusual packages wake. final| +21226|405335|30352|2|16|19844.96|0.06|0.04|N|O|1997-11-08|1997-09-28|1997-11-23|COLLECT COD|FOB|gged dependencies wake blithely silen| +21226|458497|46025|3|43|62585.21|0.02|0.05|N|O|1997-11-24|1997-10-25|1997-12-03|NONE|AIR|e accounts. | +21226|950387|25426|4|19|27309.46|0.09|0.03|N|O|1997-11-01|1997-10-12|1997-11-02|DELIVER IN PERSON|SHIP|ajole fluffily carefully even ins| +21227|334408|34409|1|45|64907.55|0.09|0.06|A|F|1993-04-17|1993-04-10|1993-04-23|TAKE BACK RETURN|AIR|pending, unusual ideas s| +21227|380532|18054|2|42|67725.84|0.08|0.04|A|F|1993-02-18|1993-03-12|1993-03-20|DELIVER IN PERSON|TRUCK|uriously: car| +21227|588981|1493|3|20|41399.20|0.01|0.08|A|F|1993-03-31|1993-04-15|1993-04-09|COLLECT COD|FOB| slow accounts nag. e| +21227|996304|8824|4|17|23804.42|0.03|0.00|R|F|1993-05-19|1993-02-28|1993-05-24|TAKE BACK RETURN|REG AIR|ironic dependencies s| +21228|422990|35499|1|12|22955.64|0.10|0.05|R|F|1992-09-14|1992-12-09|1992-09-18|NONE|REG AIR|bold, bold braids. blithel| +21228|176512|39016|2|33|52420.83|0.04|0.03|R|F|1992-09-24|1992-12-01|1992-09-29|TAKE BACK RETURN|SHIP|lent pinto beans. platelets wake | +21228|628681|28682|3|16|25754.40|0.05|0.04|A|F|1992-09-16|1992-11-05|1992-09-24|TAKE BACK RETURN|RAIL|lly slow accounts against the blithely fi| +21228|235778|23291|4|44|75405.44|0.01|0.02|R|F|1992-09-22|1992-11-09|1992-10-19|TAKE BACK RETURN|TRUCK|hithout the car| +21228|720750|8293|5|38|67287.36|0.04|0.04|R|F|1992-10-21|1992-12-01|1992-10-25|COLLECT COD|FOB| accounts haggle carefu| +21228|637866|379|6|42|75760.86|0.08|0.02|R|F|1992-10-04|1992-10-13|1992-10-15|NONE|MAIL|refully regular d| +21228|600949|950|7|5|9249.55|0.06|0.08|R|F|1992-10-26|1992-11-17|1992-11-22|COLLECT COD|FOB|. quickly even instruct| +21229|144270|6773|1|16|21028.32|0.05|0.08|N|O|1995-12-13|1996-02-25|1996-01-03|DELIVER IN PERSON|MAIL|y furiously sly requests. quickly sile| +21229|732588|45103|2|13|21067.15|0.07|0.08|N|O|1996-02-15|1996-01-10|1996-02-26|COLLECT COD|FOB|s the ironic, ironic | +21229|591521|16544|3|9|14512.50|0.00|0.00|N|O|1996-04-04|1996-01-22|1996-04-09|COLLECT COD|MAIL|regular ideas alongsid| +21229|689532|27072|4|19|28908.50|0.10|0.04|N|O|1995-12-24|1996-02-04|1996-01-07|COLLECT COD|REG AIR|the regular| +21229|947865|35420|5|25|47820.50|0.07|0.03|N|O|1996-02-06|1996-02-27|1996-02-11|DELIVER IN PERSON|TRUCK|ake slyly around the un| +21229|758556|33587|6|22|35519.44|0.05|0.05|N|O|1995-12-21|1996-02-28|1996-01-19|DELIVER IN PERSON|RAIL|y ironic ideas.| +21230|808668|21185|1|7|11036.34|0.09|0.08|N|O|1998-04-11|1998-03-24|1998-04-22|TAKE BACK RETURN|AIR|es haggle | +21230|266932|41943|2|27|51270.84|0.02|0.02|N|O|1998-03-11|1998-05-10|1998-03-23|TAKE BACK RETURN|SHIP|; carefully s| +21230|315317|27824|3|9|11990.70|0.05|0.03|N|O|1998-04-14|1998-05-05|1998-04-30|NONE|RAIL|ly pending tithes alon| +21230|530666|43177|4|20|33932.80|0.02|0.07|N|O|1998-04-10|1998-04-03|1998-05-09|COLLECT COD|SHIP| are quickly as| +21230|900113|25150|5|22|24487.54|0.04|0.07|N|O|1998-06-15|1998-05-19|1998-07-15|COLLECT COD|REG AIR| alongside| +21231|905303|17822|1|16|20932.16|0.10|0.08|A|F|1995-05-13|1995-05-17|1995-05-16|TAKE BACK RETURN|FOB|lar accounts. unusual| +21231|412933|12934|2|19|35072.29|0.10|0.05|N|O|1995-07-01|1995-04-15|1995-07-21|NONE|SHIP|onic requests. excus| +21231|148482|10985|3|7|10713.36|0.06|0.04|R|F|1995-03-14|1995-05-04|1995-03-16|NONE|REG AIR|furious, pending deposits| +21231|528320|15851|4|36|48538.80|0.01|0.00|R|F|1995-03-27|1995-04-23|1995-04-06|NONE|AIR|ts integrate. deposits above the regular| +21231|457818|32837|5|44|78134.76|0.08|0.00|A|F|1995-06-09|1995-05-03|1995-06-12|NONE|AIR|ly express foxes. silently even ins| +21256|970902|45941|1|37|72995.82|0.02|0.07|R|F|1992-03-21|1992-05-07|1992-04-19|TAKE BACK RETURN|AIR|thes detect quickly al| +21256|947865|35420|2|13|24866.66|0.03|0.08|A|F|1992-04-15|1992-06-09|1992-05-10|NONE|SHIP|packages. th| +21256|762797|37828|3|20|37195.20|0.10|0.00|R|F|1992-05-22|1992-05-19|1992-06-09|TAKE BACK RETURN|MAIL|lyly slyly sil| +21256|328456|15975|4|50|74222.00|0.02|0.00|R|F|1992-03-21|1992-05-11|1992-04-11|COLLECT COD|SHIP|ckages cajole on the carefully spec| +21256|346752|46753|5|40|71949.60|0.06|0.04|A|F|1992-03-17|1992-05-03|1992-03-26|DELIVER IN PERSON|SHIP|uffily iron| +21256|855303|42855|6|11|13840.86|0.00|0.04|R|F|1992-04-23|1992-05-06|1992-05-10|NONE|MAIL|se deposits along the fluff| +21257|206545|19050|1|4|5806.12|0.05|0.01|A|F|1992-09-08|1992-10-24|1992-09-30|NONE|RAIL|re ironic patterns. carefully i| +21257|398295|35817|2|17|23685.76|0.06|0.00|A|F|1992-12-27|1992-10-17|1993-01-07|DELIVER IN PERSON|AIR| requests nod slyly sl| +21257|129851|29852|3|44|82757.40|0.09|0.08|A|F|1992-11-22|1992-10-22|1992-12-03|DELIVER IN PERSON|AIR|the packages; carefully | +21257|403910|16419|4|19|34463.91|0.01|0.00|A|F|1992-11-06|1992-10-15|1992-11-29|DELIVER IN PERSON|RAIL|sits nag slyly. bold instructions| +21257|508852|33873|5|33|61407.39|0.01|0.00|R|F|1993-01-02|1992-10-15|1993-01-15|DELIVER IN PERSON|REG AIR|und the stealthy, bold pinto bean| +21257|271059|33565|6|15|15450.60|0.05|0.05|A|F|1992-10-10|1992-10-30|1992-10-11|TAKE BACK RETURN|REG AIR|ecial Tiresias? special de| +21257|672156|22157|7|15|16921.80|0.04|0.02|A|F|1993-01-05|1992-10-26|1993-01-18|DELIVER IN PERSON|AIR|! ideas unwind carefully ironic ideas. fina| +21258|911537|49092|1|2|3096.98|0.02|0.01|N|O|1996-12-10|1996-11-22|1996-12-28|NONE|TRUCK|es against the furiously regular exc| +21258|195902|8406|2|35|69926.50|0.04|0.06|N|O|1996-10-15|1996-12-12|1996-11-13|TAKE BACK RETURN|REG AIR|counts sleep slyly. theo| +21258|511223|36244|3|37|45665.40|0.01|0.01|N|O|1996-11-03|1996-11-18|1996-11-09|NONE|RAIL|arefully s| +21258|115472|15473|4|3|4462.41|0.07|0.05|N|O|1996-11-18|1996-11-28|1996-12-08|TAKE BACK RETURN|MAIL|excuses hinder along the furiously| +21258|733869|21412|5|44|83724.52|0.02|0.04|N|O|1996-09-29|1996-12-07|1996-10-16|NONE|AIR|pecial accounts. carefully pendin| +21259|556948|44482|1|34|68167.28|0.04|0.01|R|F|1993-03-08|1993-02-19|1993-03-23|COLLECT COD|MAIL|aids snooze blithely final accounts. fluff| +21260|248881|36394|1|6|10979.22|0.05|0.03|A|F|1992-08-28|1992-09-28|1992-09-22|TAKE BACK RETURN|TRUCK|. carefully bold foxes ca| +21261|841239|3756|1|18|21243.42|0.07|0.06|A|F|1994-03-25|1994-04-14|1994-04-14|DELIVER IN PERSON|TRUCK|kly. quickly express deposits affix at the| +21261|690250|40251|2|23|28525.06|0.05|0.03|A|F|1994-06-10|1994-05-10|1994-06-19|COLLECT COD|MAIL|kages boost slyly-- bl| +21261|23233|10734|3|33|38155.59|0.09|0.01|R|F|1994-07-09|1994-05-16|1994-07-24|COLLECT COD|RAIL|t permanently a| +21261|464184|1712|4|43|49370.88|0.05|0.06|A|F|1994-04-04|1994-04-29|1994-04-16|COLLECT COD|MAIL|ly final requests are. brave,| +21262|195576|45577|1|42|70205.94|0.02|0.08|R|F|1992-05-11|1992-05-29|1992-05-28|NONE|SHIP| carefully unusual packages inte| +21262|45381|45382|2|50|66319.00|0.10|0.06|A|F|1992-05-29|1992-06-19|1992-06-18|COLLECT COD|TRUCK|inal packages according to the b| +21262|702687|2688|3|11|18586.15|0.10|0.03|A|F|1992-06-09|1992-05-22|1992-07-02|TAKE BACK RETURN|FOB|nd the silent deposits. p| +21262|44111|6612|4|23|24267.53|0.01|0.06|A|F|1992-07-07|1992-05-10|1992-07-23|TAKE BACK RETURN|TRUCK|onic, final requests| +21262|371948|21949|5|17|34338.81|0.02|0.00|R|F|1992-05-29|1992-06-19|1992-06-26|DELIVER IN PERSON|MAIL|final foxes integrate alongside o| +21262|328678|16197|6|47|80213.02|0.04|0.06|A|F|1992-07-07|1992-06-25|1992-08-02|DELIVER IN PERSON|MAIL|he blithely ironic theodolites. slyl| +21262|88727|38728|7|20|34314.40|0.10|0.08|A|F|1992-05-07|1992-05-26|1992-05-30|COLLECT COD|MAIL|ly express requests. special reques| +21263|228722|16235|1|11|18157.81|0.01|0.07|N|O|1996-06-25|1996-05-10|1996-07-12|DELIVER IN PERSON|RAIL|furiously along the blithely express| +21288|185803|23313|1|28|52886.40|0.05|0.04|A|F|1992-08-04|1992-09-24|1992-08-26|DELIVER IN PERSON|AIR|ide of the slyly final packages main| +21288|778334|15880|2|6|8473.80|0.03|0.04|A|F|1992-09-07|1992-09-15|1992-09-15|COLLECT COD|TRUCK|t. blithely regular pinto| +21288|458835|8836|3|33|59195.73|0.02|0.02|R|F|1992-08-12|1992-08-29|1992-09-04|TAKE BACK RETURN|REG AIR|ven deposits| +21288|629380|41893|4|15|19640.25|0.03|0.03|A|F|1992-11-11|1992-10-05|1992-11-20|TAKE BACK RETURN|TRUCK|tions. dogged, final re| +21288|986368|11407|5|27|39266.64|0.06|0.04|R|F|1992-08-28|1992-10-17|1992-09-10|NONE|FOB|o the carefully bold p| +21289|495520|45521|1|49|74259.50|0.02|0.00|N|O|1997-11-05|1997-10-22|1997-11-07|NONE|SHIP|y unusual hockey players. furiously bold r| +21289|202193|39706|2|2|2190.36|0.09|0.03|N|O|1997-09-02|1997-09-19|1997-09-03|NONE|FOB|sly special packages. | +21289|244532|44533|3|18|26577.36|0.07|0.03|N|O|1997-08-16|1997-10-12|1997-09-05|TAKE BACK RETURN|RAIL|kages. slyly u| +21289|848752|36301|4|8|13605.68|0.06|0.06|N|O|1997-09-24|1997-09-22|1997-10-17|NONE|REG AIR|osits sleep al| +21289|964085|14086|5|33|37918.32|0.02|0.08|N|O|1997-11-13|1997-09-04|1997-11-24|COLLECT COD|AIR| quickly regular deposits are bl| +21290|889139|26691|1|28|31586.52|0.06|0.05|N|O|1998-04-09|1998-03-27|1998-04-21|COLLECT COD|RAIL|beans hang silen| +21290|743854|18883|2|18|34160.76|0.09|0.07|N|O|1998-05-28|1998-03-24|1998-06-07|NONE|TRUCK|t carefully always| +21290|947238|22275|3|5|6425.95|0.02|0.07|N|O|1998-06-06|1998-05-18|1998-06-16|TAKE BACK RETURN|TRUCK|ly unusual asymptotes | +21291|359017|46539|1|3|3228.00|0.01|0.02|R|F|1994-11-26|1995-01-03|1994-12-17|COLLECT COD|MAIL|ial accounts! platelets are carefu| +21291|997503|47504|2|34|54415.64|0.02|0.03|A|F|1994-10-15|1994-11-30|1994-10-21|NONE|AIR|ts. pinto beans wa| +21291|16765|29266|3|37|62225.12|0.08|0.08|A|F|1994-11-08|1994-12-02|1994-11-20|NONE|FOB| regularly speci| +21292|449046|49047|1|17|16915.34|0.03|0.05|N|O|1998-06-03|1998-04-18|1998-06-17|TAKE BACK RETURN|RAIL| furiously even theodolite| +21292|106858|6859|2|1|1864.85|0.04|0.02|N|O|1998-03-29|1998-04-23|1998-04-07|COLLECT COD|MAIL|kly among the carefully p| +21292|954498|42056|3|13|20181.85|0.09|0.08|N|O|1998-04-12|1998-03-28|1998-05-11|COLLECT COD|AIR| pending packag| +21292|231983|19496|4|36|68938.92|0.07|0.00|N|O|1998-06-07|1998-04-30|1998-06-08|COLLECT COD|RAIL|t the slyly regular p| +21292|922825|47862|5|40|73911.20|0.03|0.02|N|O|1998-05-25|1998-05-12|1998-05-26|COLLECT COD|RAIL|slyly final warhorses | +21293|833924|21473|1|46|85462.48|0.10|0.02|R|F|1992-07-09|1992-07-06|1992-07-27|TAKE BACK RETURN|RAIL| packages ab| +21293|755763|43309|2|15|27280.95|0.10|0.08|R|F|1992-07-11|1992-06-17|1992-07-27|DELIVER IN PERSON|RAIL|express, special theodolites at the quic| +21293|93820|31324|3|18|32648.76|0.09|0.05|R|F|1992-06-08|1992-06-01|1992-06-26|NONE|REG AIR|s pinto beans are slyly quickly e| +21293|832187|32188|4|5|5595.70|0.09|0.06|A|F|1992-05-12|1992-07-12|1992-06-06|NONE|TRUCK|lly accord| +21293|553364|3365|5|26|36850.84|0.10|0.07|A|F|1992-05-08|1992-07-07|1992-06-07|COLLECT COD|MAIL|ey players are about the ironic packages. | +21293|381064|18586|6|13|14885.65|0.09|0.07|R|F|1992-05-01|1992-05-25|1992-05-20|COLLECT COD|AIR|ly unusual requests. furiously iro| +21293|538771|26302|7|13|23526.75|0.04|0.06|A|F|1992-04-30|1992-06-04|1992-05-22|NONE|TRUCK|ggle sometimes. slyly silen| +21294|113170|25673|1|18|21297.06|0.05|0.03|N|O|1996-09-08|1996-09-25|1996-09-09|COLLECT COD|REG AIR|s about the blithely ironic | +21294|45151|7652|2|31|33980.65|0.07|0.08|N|O|1996-10-07|1996-08-26|1996-10-30|COLLECT COD|RAIL|gular pinto beans. ironic requests from the| +21294|849131|49132|3|28|30242.52|0.06|0.01|N|O|1996-10-29|1996-09-18|1996-11-16|DELIVER IN PERSON|RAIL|ide of the final, fi| +21295|885598|48116|1|27|42755.85|0.04|0.00|N|O|1997-10-14|1997-10-31|1997-11-08|COLLECT COD|TRUCK|the ironic foxe| +21320|637719|12744|1|11|18223.48|0.01|0.00|N|O|1997-06-30|1997-08-08|1997-07-28|TAKE BACK RETURN|RAIL|ptotes haggle fluffily ac| +21320|127981|15488|2|41|82368.18|0.08|0.07|N|O|1997-06-24|1997-06-12|1997-07-02|NONE|MAIL| carefully even ideas. slyly pend| +21320|965510|28030|3|3|4726.41|0.01|0.08|N|O|1997-05-19|1997-07-26|1997-06-11|DELIVER IN PERSON|RAIL|egrate blithely even theod| +21320|318486|30993|4|47|70710.09|0.04|0.02|N|O|1997-06-23|1997-06-20|1997-07-06|NONE|TRUCK|es. slyly pending plat| +21321|647769|10282|1|31|53218.63|0.09|0.01|R|F|1992-01-11|1992-03-29|1992-02-09|TAKE BACK RETURN|FOB|horses. sometimes final foxes na| +21322|124262|49267|1|16|20580.16|0.07|0.02|N|O|1997-03-22|1997-03-20|1997-04-16|COLLECT COD|REG AIR|nal dependencies. evenly even ide| +21322|471278|21279|2|7|8744.75|0.03|0.05|N|O|1997-03-07|1997-02-22|1997-04-02|NONE|RAIL|counts was requests. quietly regular pi| +21322|767913|5459|3|39|77254.32|0.05|0.04|N|O|1997-02-06|1997-03-16|1997-02-22|DELIVER IN PERSON|MAIL|the expres| +21322|301701|39220|4|34|57891.46|0.07|0.01|N|O|1997-01-18|1997-01-26|1997-01-26|TAKE BACK RETURN|REG AIR| final, silent epita| +21323|734294|21837|1|12|15939.12|0.06|0.04|R|F|1992-08-19|1992-07-11|1992-09-06|DELIVER IN PERSON|AIR|yly at the ca| +21324|195515|8019|1|1|1610.51|0.10|0.08|N|O|1997-10-13|1997-11-07|1997-10-14|COLLECT COD|RAIL|s. even, pending| +21324|14382|1883|2|11|14260.18|0.01|0.07|N|O|1997-10-20|1997-10-09|1997-10-21|NONE|SHIP| about the expres| +21324|703703|3704|3|9|15360.03|0.05|0.05|N|O|1997-08-22|1997-11-13|1997-09-20|TAKE BACK RETURN|TRUCK|dle finally. quickly bold ideas around the | +21324|132597|7602|4|37|60294.83|0.02|0.08|N|O|1997-10-03|1997-10-30|1997-10-17|TAKE BACK RETURN|AIR|luffily against the pinto beans. expre| +21324|555470|30493|5|41|62543.45|0.07|0.04|N|O|1997-11-07|1997-11-08|1997-11-27|DELIVER IN PERSON|AIR|uests. furiously regular accounts are am| +21325|853249|15767|1|32|38470.40|0.07|0.00|A|F|1995-03-18|1995-02-18|1995-03-28|TAKE BACK RETURN|TRUCK|ly express deposits are fluffily blithel| +21325|549617|24638|2|31|51664.29|0.08|0.02|R|F|1995-02-11|1995-02-10|1995-03-11|DELIVER IN PERSON|REG AIR|. carefully regular deposits| +21326|863395|38430|1|43|58409.05|0.00|0.02|N|O|1998-08-15|1998-07-17|1998-09-14|COLLECT COD|RAIL|y final asymptotes haggle after the iron| +21326|63304|808|2|1|1267.30|0.07|0.03|N|O|1998-08-12|1998-08-23|1998-09-09|TAKE BACK RETURN|RAIL|jole silently. slyly even theodolites h| +21326|933566|21121|3|13|20793.76|0.04|0.07|N|O|1998-06-27|1998-08-03|1998-07-26|DELIVER IN PERSON|FOB|rate carefully slyly express inst| +21326|436418|11435|4|23|31150.97|0.03|0.08|N|O|1998-09-02|1998-07-14|1998-09-26|NONE|AIR|ithely boldly iro| +21326|873505|11057|5|49|72444.54|0.00|0.05|N|O|1998-06-09|1998-06-26|1998-06-12|NONE|FOB|y final ideas haggle regular, | +21327|398161|35683|1|8|10073.20|0.01|0.04|N|O|1996-11-25|1996-12-04|1996-12-05|TAKE BACK RETURN|RAIL|s haggle. quickly even foxes nag b| +21327|885703|48221|2|26|43905.16|0.00|0.08|N|O|1996-11-07|1996-12-25|1996-12-05|NONE|FOB|ly across the quickly regular pinto beans| +21352|528559|28560|1|35|55563.55|0.07|0.05|A|F|1994-12-09|1994-11-18|1995-01-04|TAKE BACK RETURN|MAIL| across the unusual foxes. blithely p| +21352|484579|34580|2|16|25016.80|0.00|0.03|R|F|1994-10-16|1994-11-13|1994-10-17|TAKE BACK RETURN|AIR|fully final Tiresias x-ray after th| +21352|305470|30483|3|10|14754.60|0.01|0.02|R|F|1994-12-05|1994-11-17|1994-12-23|DELIVER IN PERSON|FOB|inal accounts sleep quickly | +21352|23501|36002|4|22|31339.00|0.09|0.07|R|F|1994-11-04|1994-12-23|1994-11-09|TAKE BACK RETURN|RAIL|ts are blithely re| +21352|967579|30099|5|49|80679.97|0.01|0.05|A|F|1995-01-13|1994-12-24|1995-01-26|NONE|RAIL|ly above th| +21352|84721|47223|6|22|37525.84|0.07|0.05|A|F|1994-11-07|1995-01-05|1994-12-04|TAKE BACK RETURN|FOB|into beans cajole enticingly ev| +21353|348033|48034|1|25|27025.50|0.05|0.04|A|F|1994-03-30|1994-04-23|1994-04-19|DELIVER IN PERSON|FOB|s? carefully regular requ| +21353|389958|27480|2|18|36862.92|0.00|0.03|R|F|1994-06-09|1994-05-24|1994-07-01|DELIVER IN PERSON|MAIL| among the requests. carefully regul| +21353|7663|32664|3|3|4711.98|0.08|0.05|A|F|1994-06-01|1994-03-28|1994-06-12|NONE|REG AIR|lyly above | +21353|786436|48952|4|45|68508.00|0.05|0.01|R|F|1994-03-18|1994-05-02|1994-03-31|NONE|MAIL|blithely against the furiously bold| +21354|169642|32146|1|15|25674.60|0.01|0.04|N|O|1995-07-13|1995-06-04|1995-07-17|NONE|TRUCK|iously ironic pinto beans | +21354|161622|49132|2|40|67344.80|0.03|0.05|N|F|1995-06-14|1995-05-13|1995-06-26|DELIVER IN PERSON|SHIP|. carefully regular acc| +21354|376932|39440|3|25|50223.00|0.06|0.05|R|F|1995-05-22|1995-05-06|1995-06-09|TAKE BACK RETURN|RAIL| unusual packages boost careful| +21354|84056|46558|4|39|40561.95|0.07|0.08|R|F|1995-05-26|1995-05-12|1995-06-06|DELIVER IN PERSON|SHIP|ng accounts integrate furiousl| +21354|720721|20722|5|34|59217.46|0.08|0.04|A|F|1995-05-22|1995-06-09|1995-05-29|DELIVER IN PERSON|AIR|l instructions. blithely silent deposit| +21354|149203|24208|6|29|36313.80|0.10|0.04|R|F|1995-04-21|1995-05-05|1995-04-28|NONE|REG AIR|lly unusual ideas. quickly spe| +21354|644533|32070|7|16|23640.00|0.06|0.06|R|F|1995-05-24|1995-05-23|1995-06-10|DELIVER IN PERSON|MAIL| the final, express accounts. furiously | +21355|659162|46702|1|5|5605.65|0.10|0.01|A|F|1993-03-15|1993-02-21|1993-03-16|COLLECT COD|MAIL|ual foxes. slyl| +21355|535651|35652|2|46|77584.98|0.00|0.05|R|F|1993-03-15|1993-04-01|1993-03-26|TAKE BACK RETURN|MAIL|ording to the accounts nag after the regul| +21355|670752|20753|3|27|46513.44|0.03|0.07|A|F|1993-02-10|1993-03-19|1993-03-12|COLLECT COD|RAIL|de of the bold theodolites| +21355|315856|3375|4|39|73001.76|0.04|0.07|A|F|1993-02-01|1993-03-25|1993-02-23|DELIVER IN PERSON|RAIL|y final deposits dete| +21355|576118|13652|5|30|35822.70|0.05|0.04|A|F|1993-03-14|1993-03-15|1993-03-22|NONE|TRUCK|ns wake sil| +21355|803364|15881|6|4|5069.28|0.10|0.08|R|F|1993-03-16|1993-02-27|1993-04-05|COLLECT COD|SHIP|osits haggle | +21355|125987|25988|7|3|6038.94|0.00|0.03|R|F|1993-02-04|1993-02-23|1993-02-05|COLLECT COD|MAIL|nic foxes hagg| +21356|453631|28650|1|42|66553.62|0.10|0.03|R|F|1994-08-17|1994-08-12|1994-09-03|DELIVER IN PERSON|REG AIR|ly. final requests ca| +21356|164218|26722|2|7|8975.47|0.06|0.05|A|F|1994-06-25|1994-07-23|1994-07-20|COLLECT COD|AIR|y. carefully special packages haggle blit| +21356|995878|8398|3|36|71057.88|0.07|0.01|A|F|1994-06-25|1994-08-18|1994-07-10|NONE|AIR| fluffily unu| +21356|716386|16387|4|30|42070.50|0.08|0.06|A|F|1994-10-01|1994-07-11|1994-10-03|TAKE BACK RETURN|SHIP|p across the fluffily final att| +21356|286676|49182|5|1|1662.66|0.04|0.08|A|F|1994-08-13|1994-08-03|1994-08-28|NONE|RAIL|egrate quickly alongside of the b| +21356|147606|22611|6|47|77719.20|0.02|0.03|R|F|1994-10-02|1994-08-04|1994-10-10|DELIVER IN PERSON|REG AIR|ages nag furiously across the theodo| +21357|680060|42574|1|45|46801.35|0.07|0.02|R|F|1994-10-24|1994-11-28|1994-11-01|COLLECT COD|REG AIR|r pinto beans? hockey play| +21357|753582|3583|2|36|58879.80|0.04|0.04|A|F|1995-01-21|1994-12-19|1995-02-13|COLLECT COD|REG AIR|l pinto beans. blithely bold accounts s| +21358|377045|27046|1|44|49369.32|0.10|0.03|R|F|1993-11-12|1993-10-23|1993-11-23|COLLECT COD|RAIL| sleep. bold courts | +21358|979556|29557|2|24|39252.24|0.02|0.06|A|F|1993-10-29|1993-09-30|1993-11-13|DELIVER IN PERSON|RAIL|pending platelets wake furiously. quickl| +21358|383783|8798|3|14|26134.78|0.06|0.08|A|F|1993-10-14|1993-11-14|1993-11-11|NONE|REG AIR|al excuses. ironic, regular dependencies af| +21358|224607|12120|4|3|4594.77|0.03|0.04|A|F|1993-11-09|1993-09-23|1993-11-13|NONE|RAIL|usual hockey players wake furiously across | +21358|954584|29623|5|3|4915.62|0.09|0.02|A|F|1993-10-10|1993-10-13|1993-10-30|TAKE BACK RETURN|SHIP|ackages integrat| +21358|687460|25000|6|29|41975.47|0.07|0.01|R|F|1993-12-11|1993-10-28|1994-01-10|NONE|RAIL|al accounts haggle | +21358|136824|24331|7|3|5582.46|0.05|0.03|R|F|1993-10-24|1993-11-03|1993-11-06|DELIVER IN PERSON|AIR|the special, brave req| +21359|594531|19554|1|24|39012.24|0.05|0.03|N|O|1997-03-16|1997-03-09|1997-03-24|NONE|FOB|gular asymptotes sleep furio| +21359|277093|2104|2|12|12840.96|0.10|0.06|N|O|1997-04-03|1997-02-28|1997-04-12|NONE|TRUCK|s. fluffily bold r| +21359|89833|14836|3|6|10936.98|0.00|0.01|N|O|1997-04-16|1997-02-16|1997-04-30|COLLECT COD|FOB|n blithely express requests! unusual, iro| +21384|153615|16119|1|32|53395.52|0.09|0.03|R|F|1994-04-01|1994-05-17|1994-04-05|COLLECT COD|RAIL|s cajole carefully slyly ironi| +21384|803624|16141|2|38|58048.04|0.09|0.05|A|F|1994-04-21|1994-06-16|1994-05-06|DELIVER IN PERSON|FOB|ould haggle according to the carefully si| +21384|495300|20319|3|23|29791.44|0.01|0.03|R|F|1994-04-07|1994-05-27|1994-04-25|DELIVER IN PERSON|AIR| dependencies. blithely ironic accounts | +21384|501533|1534|4|19|29155.69|0.00|0.03|A|F|1994-06-09|1994-06-20|1994-06-17|NONE|SHIP|usly slyly spe| +21385|40178|15179|1|46|51435.82|0.04|0.03|R|F|1994-04-29|1994-04-28|1994-05-29|TAKE BACK RETURN|TRUCK|ly foxes use. carefu| +21385|262991|12992|2|32|62527.36|0.08|0.08|R|F|1994-05-17|1994-06-04|1994-06-08|DELIVER IN PERSON|AIR| boost final, ironic pinto beans: s| +21386|632938|20475|1|27|50514.30|0.03|0.01|R|F|1995-03-02|1995-04-09|1995-03-13|TAKE BACK RETURN|TRUCK|ect carefully special reques| +21386|772840|47871|2|28|53558.68|0.03|0.01|R|F|1995-04-27|1995-04-14|1995-05-12|COLLECT COD|RAIL|dencies sho| +21386|109415|34420|3|15|21366.15|0.10|0.05|R|F|1995-05-03|1995-04-04|1995-05-11|TAKE BACK RETURN|FOB|of the quickly even sentiments are perma| +21387|705788|5789|1|30|53812.50|0.07|0.02|N|O|1998-10-01|1998-09-03|1998-10-25|DELIVER IN PERSON|FOB|ges. blithely ironic| +21387|174767|37271|2|28|51569.28|0.09|0.01|N|O|1998-08-31|1998-09-10|1998-09-23|NONE|TRUCK|bout the even, pend| +21387|293453|18464|3|36|52071.84|0.08|0.06|N|O|1998-08-11|1998-09-18|1998-08-13|TAKE BACK RETURN|RAIL|dependencie| +21387|63682|26184|4|36|59244.48|0.01|0.08|N|O|1998-10-20|1998-09-26|1998-11-16|COLLECT COD|FOB|furiously pendi| +21387|293806|6312|5|24|43194.96|0.04|0.05|N|O|1998-11-21|1998-10-11|1998-12-09|TAKE BACK RETURN|REG AIR|ly alongside of the | +21387|987633|37634|6|37|63661.83|0.04|0.02|N|O|1998-10-08|1998-09-29|1998-10-27|TAKE BACK RETURN|AIR|ing to the blithely p| +21388|279320|4331|1|33|42877.23|0.10|0.08|A|F|1992-07-14|1992-09-14|1992-08-07|COLLECT COD|REG AIR|ccounts sleep fluffil| +21388|514639|14640|2|44|72758.84|0.01|0.03|A|F|1992-07-17|1992-09-28|1992-08-05|DELIVER IN PERSON|RAIL|refully. ironic, fina| +21389|795275|7791|1|17|23294.08|0.04|0.05|R|F|1994-07-11|1994-05-28|1994-07-24|TAKE BACK RETURN|TRUCK|refully sile| +21389|180787|30788|2|49|91521.22|0.06|0.07|A|F|1994-06-13|1994-07-19|1994-06-27|DELIVER IN PERSON|SHIP|ecial accounts wake quickly ironic mu| +21389|474454|36964|3|33|47138.19|0.04|0.05|R|F|1994-08-13|1994-06-11|1994-09-12|NONE|AIR|ly even accounts until the furio| +21389|132497|7502|4|37|56591.13|0.07|0.02|A|F|1994-06-04|1994-06-02|1994-06-25|DELIVER IN PERSON|SHIP|carefully thin dependencies. carefu| +21390|154312|4313|1|5|6831.55|0.01|0.08|N|O|1997-12-20|1997-10-25|1997-12-30|TAKE BACK RETURN|FOB|are carefully caref| +21390|521741|46762|2|33|58169.76|0.05|0.02|N|O|1997-12-29|1997-10-26|1998-01-05|COLLECT COD|AIR|ccounts. accounts use quickly.| +21390|895513|8031|3|16|24135.52|0.09|0.05|N|O|1997-12-27|1997-11-28|1997-12-31|COLLECT COD|SHIP|d blithely after the blithely fin| +21390|881848|6883|4|21|38425.80|0.03|0.03|N|O|1997-10-08|1997-11-19|1997-10-10|TAKE BACK RETURN|FOB|deas are regula| +21390|214272|26777|5|36|42705.36|0.03|0.03|N|O|1997-11-07|1997-10-03|1997-11-13|NONE|SHIP|fluffily ironic req| +21390|256834|44350|6|40|71632.80|0.06|0.06|N|O|1997-10-28|1997-10-15|1997-11-10|TAKE BACK RETURN|SHIP|ng the furiously ironic instr| +21391|109296|46803|1|32|41769.28|0.03|0.01|A|F|1994-06-19|1994-07-03|1994-06-21|COLLECT COD|TRUCK|to the requests. blith| +21391|927834|15389|2|19|35374.01|0.01|0.06|R|F|1994-05-23|1994-06-22|1994-05-24|DELIVER IN PERSON|TRUCK|gle slyly alon| +21416|105718|30723|1|12|20684.52|0.01|0.05|N|O|1996-05-18|1996-06-03|1996-06-16|TAKE BACK RETURN|FOB| are permanently. furious| +21416|793988|43989|2|36|74950.20|0.06|0.08|N|O|1996-05-08|1996-04-24|1996-05-27|NONE|SHIP|arefully ironic accounts maintain f| +21416|550588|38122|3|4|6554.24|0.09|0.00|N|O|1996-06-16|1996-05-15|1996-06-28|DELIVER IN PERSON|SHIP|nts unwind. furiously s| +21416|728633|41148|4|17|28247.20|0.07|0.07|N|O|1996-05-28|1996-04-24|1996-06-21|DELIVER IN PERSON|TRUCK|ges. slyly bold notornis haggle quickly.| +21416|122832|35335|5|26|48225.58|0.00|0.07|N|O|1996-05-05|1996-04-20|1996-06-03|COLLECT COD|SHIP|ly unusual pinto beans dazzle bl| +21416|435544|48053|6|28|41426.56|0.03|0.03|N|O|1996-05-29|1996-05-12|1996-06-26|TAKE BACK RETURN|TRUCK|accounts could have to c| +21416|172915|22916|7|14|27830.74|0.01|0.00|N|O|1996-07-11|1996-05-09|1996-07-30|DELIVER IN PERSON|FOB|sts. furiously regular packages sleep| +21417|173391|35895|1|35|51253.65|0.09|0.00|A|F|1994-09-26|1994-08-07|1994-09-28|COLLECT COD|FOB|ctions use about the slyly final request| +21417|172848|10358|2|31|59546.04|0.09|0.01|R|F|1994-09-16|1994-08-11|1994-09-17|DELIVER IN PERSON|FOB|refully even packag| +21417|50714|25717|3|9|14982.39|0.02|0.00|R|F|1994-07-08|1994-09-25|1994-07-12|TAKE BACK RETURN|FOB|ve the quick| +21417|340215|27734|4|48|60249.60|0.10|0.04|A|F|1994-06-30|1994-09-05|1994-07-01|TAKE BACK RETURN|REG AIR|ithely silent| +21417|978456|28457|5|21|32222.61|0.06|0.08|R|F|1994-10-18|1994-08-05|1994-11-10|TAKE BACK RETURN|REG AIR|lphins haggle above the carefully regular| +21417|896090|8608|6|35|38011.75|0.01|0.01|R|F|1994-07-18|1994-08-07|1994-08-10|COLLECT COD|REG AIR|al accounts are furiously ironic| +21418|638730|38731|1|13|21693.10|0.06|0.01|N|O|1997-05-23|1997-03-11|1997-05-26|DELIVER IN PERSON|FOB|quickly unusual excuses haggle slyl| +21418|127677|15184|2|27|46026.09|0.01|0.00|N|O|1997-05-07|1997-03-10|1997-05-15|TAKE BACK RETURN|TRUCK|e carefully final, regular theodolites. bli| +21418|852825|15343|3|35|62222.30|0.10|0.01|N|O|1997-03-31|1997-03-12|1997-04-01|DELIVER IN PERSON|MAIL|the special, regular dependenc| +21418|416852|41869|4|23|40683.09|0.06|0.01|N|O|1997-04-04|1997-05-05|1997-04-29|TAKE BACK RETURN|TRUCK| could are. instructions sle| +21419|493871|31399|1|17|31702.45|0.05|0.04|A|F|1993-09-13|1993-11-14|1993-09-20|COLLECT COD|MAIL| packages. carefully| +21420|378400|3415|1|18|26611.02|0.09|0.07|R|F|1993-06-21|1993-04-24|1993-06-23|COLLECT COD|MAIL|r braids are furiously. blithel| +21421|106843|6844|1|45|83242.80|0.04|0.01|N|O|1997-11-07|1997-10-04|1997-11-09|TAKE BACK RETURN|AIR|y final accounts hang carefully under the | +21421|705470|17985|2|22|32459.68|0.01|0.02|N|O|1997-11-25|1997-09-26|1997-12-22|COLLECT COD|RAIL| eat according to | +21421|831102|18651|3|47|48553.82|0.10|0.03|N|O|1997-11-04|1997-10-20|1997-11-15|NONE|FOB| carefully final ideas. special ex| +21421|317078|17079|4|30|32851.80|0.08|0.05|N|O|1997-10-24|1997-09-14|1997-11-18|NONE|TRUCK| foxes use: furiously | +21421|128610|3615|5|40|65544.40|0.00|0.06|N|O|1997-10-02|1997-09-11|1997-10-03|DELIVER IN PERSON|MAIL| haggle ironic dolphins. | +21422|843119|30668|1|48|50979.36|0.02|0.04|A|F|1994-10-12|1994-12-18|1994-10-21|DELIVER IN PERSON|FOB|ly across the even, even escapades. | +21422|297394|22405|2|5|6956.90|0.01|0.00|A|F|1994-10-21|1994-11-03|1994-11-19|DELIVER IN PERSON|RAIL|ns-- final, special theodolites alon| +21422|299849|37365|3|18|33278.94|0.09|0.00|A|F|1995-01-18|1994-11-04|1995-02-05|NONE|RAIL|deposits affix furiously-- regular ex| +21423|995166|45167|1|31|39094.72|0.03|0.05|R|F|1994-06-11|1994-05-14|1994-06-28|DELIVER IN PERSON|TRUCK|heodolites | +21423|753366|15882|2|11|15612.63|0.05|0.07|R|F|1994-06-18|1994-05-19|1994-07-17|TAKE BACK RETURN|AIR| finally special accounts nag slyly| +21448|252832|2833|1|12|21417.84|0.07|0.08|N|O|1997-01-05|1996-11-19|1997-01-14|NONE|REG AIR| packages haggle furiously across the furio| +21449|80519|18023|1|25|37487.75|0.01|0.05|N|O|1996-04-02|1996-04-09|1996-04-19|COLLECT COD|SHIP|lly final pinto beans. carefully ironic | +21449|281974|44480|2|7|13691.72|0.09|0.06|N|O|1996-05-18|1996-04-24|1996-05-27|COLLECT COD|REG AIR|latelets boost regular theodolites. special| +21449|134961|34962|3|21|41915.16|0.10|0.06|N|O|1996-04-21|1996-05-13|1996-04-24|TAKE BACK RETURN|AIR|blithe, even patterns wake carefully a| +21449|282981|45487|4|43|84450.71|0.10|0.01|N|O|1996-03-22|1996-04-30|1996-03-28|DELIVER IN PERSON|RAIL|ide of the| +21449|51197|38701|5|30|34445.70|0.02|0.04|N|O|1996-05-23|1996-03-31|1996-06-02|NONE|AIR|accounts nag about the carefully ironic | +21450|651118|38658|1|23|24588.84|0.04|0.05|N|O|1998-05-01|1998-03-31|1998-05-19|COLLECT COD|AIR|the slyly fina| +21450|324806|37313|2|20|36615.80|0.05|0.06|N|O|1998-04-21|1998-03-16|1998-05-20|DELIVER IN PERSON|MAIL|c, silent packages. even, bo| +21451|703721|16236|1|16|27595.04|0.04|0.04|A|F|1994-02-26|1994-02-01|1994-03-04|DELIVER IN PERSON|REG AIR|lyly carefu| +21452|904656|29693|1|2|3321.22|0.07|0.07|R|F|1993-02-20|1993-01-02|1993-03-21|COLLECT COD|REG AIR|s sleep busy deposits. bravely even excus| +21452|545753|8264|2|20|35974.60|0.08|0.05|A|F|1993-03-03|1993-02-09|1993-03-13|TAKE BACK RETURN|TRUCK|unusual pinto beans around the slyly b| +21453|921772|46809|1|34|60986.82|0.00|0.06|A|F|1994-05-20|1994-04-19|1994-06-05|COLLECT COD|SHIP|f the carefully regular p| +21453|207093|32102|2|48|48003.84|0.05|0.08|A|F|1994-05-09|1994-05-01|1994-05-11|DELIVER IN PERSON|TRUCK|he unusual foxes. ironic instruction| +21453|607216|7217|3|24|26956.32|0.00|0.07|R|F|1994-04-17|1994-04-11|1994-04-26|COLLECT COD|SHIP|r theodolites haggle carefu| +21453|462883|411|4|47|86755.42|0.00|0.06|A|F|1994-05-01|1994-05-25|1994-05-11|DELIVER IN PERSON|REG AIR|nts are furiously blithely regular foxes| +21454|655626|43166|1|48|75916.32|0.01|0.02|N|O|1996-08-10|1996-06-08|1996-09-07|COLLECT COD|MAIL|y final instru| +21454|100340|25345|2|39|52273.26|0.02|0.06|N|O|1996-05-03|1996-06-26|1996-05-30|DELIVER IN PERSON|REG AIR| doze along the furiously ironic a| +21454|401599|14108|3|14|21007.98|0.00|0.02|N|O|1996-05-31|1996-06-30|1996-06-16|NONE|RAIL|ic requests; carefully| +21455|441479|29004|1|21|29829.45|0.08|0.01|N|O|1998-02-08|1998-03-15|1998-03-07|TAKE BACK RETURN|SHIP|g the fluffily unusual pinto beans. car| +21455|934517|22072|2|37|57404.39|0.04|0.04|N|O|1998-02-08|1998-04-27|1998-03-07|DELIVER IN PERSON|RAIL|ld theodolites kin| +21455|417410|29919|3|37|49113.43|0.04|0.05|N|O|1998-03-25|1998-04-15|1998-04-24|COLLECT COD|AIR|fully instructions. blit| +21455|407702|7703|4|10|16096.80|0.06|0.05|N|O|1998-05-07|1998-04-19|1998-05-30|COLLECT COD|RAIL|even foxes boost furiously iro| +21455|236723|36724|5|29|48131.59|0.07|0.05|N|O|1998-05-11|1998-04-13|1998-05-19|DELIVER IN PERSON|RAIL| furiously express accounts wake| +21455|597025|22048|6|19|21318.00|0.09|0.07|N|O|1998-05-31|1998-04-17|1998-06-26|DELIVER IN PERSON|AIR|ual pinto beans sleep slyly excuses. iron| +21480|844552|19585|1|37|55370.87|0.05|0.03|N|O|1996-01-02|1996-01-03|1996-01-11|NONE|AIR|special sentiments sleep quickly. slyly sp| +21480|373185|10707|2|15|18872.55|0.09|0.02|N|O|1996-01-24|1996-02-09|1996-01-27|DELIVER IN PERSON|REG AIR|furiously. carefully bold deposits accor| +21480|105247|42754|3|4|5008.96|0.08|0.07|N|O|1996-01-27|1995-12-23|1996-02-09|DELIVER IN PERSON|TRUCK|luffily around the carefully ir| +21480|876457|26458|4|47|67370.27|0.09|0.03|N|O|1995-11-26|1995-12-24|1995-12-07|DELIVER IN PERSON|FOB|r platelets affix regular, final ideas| +21480|610289|22802|5|31|37176.75|0.10|0.08|N|O|1995-12-25|1995-12-19|1996-01-14|TAKE BACK RETURN|FOB|equests haggle blithely blith| +21480|115645|40650|6|4|6642.56|0.07|0.03|N|O|1996-01-01|1995-12-22|1996-01-29|NONE|AIR|even accounts cajole doggedly carefully| +21480|634172|46685|7|46|50882.44|0.07|0.05|N|O|1995-11-29|1996-01-19|1995-12-29|TAKE BACK RETURN|AIR|ts. regular, unusual pinto beans against t| +21481|525350|371|1|26|35758.58|0.07|0.05|A|F|1992-06-24|1992-04-19|1992-06-25|DELIVER IN PERSON|TRUCK|beans. busily pending the| +21482|362121|49643|1|4|4732.44|0.09|0.01|A|F|1994-06-24|1994-08-05|1994-06-26|TAKE BACK RETURN|FOB|ng blithely quickly bold requests. fluf| +21482|153319|3320|2|38|52147.78|0.08|0.03|R|F|1994-06-15|1994-06-12|1994-06-27|TAKE BACK RETURN|SHIP|ts affix against the furiously unusual req| +21482|832259|44776|3|26|30971.46|0.01|0.06|A|F|1994-08-31|1994-07-04|1994-09-15|TAKE BACK RETURN|REG AIR|ily final theodolites be| +21483|134586|34587|1|8|12964.64|0.08|0.02|N|O|1997-04-05|1997-03-16|1997-04-08|NONE|MAIL|s dolphins detect furiously iro| +21483|970646|8204|2|44|75530.40|0.10|0.08|N|O|1997-03-16|1997-04-20|1997-04-12|DELIVER IN PERSON|REG AIR| beans nag blithely final | +21483|642783|5296|3|14|24160.50|0.03|0.04|N|O|1997-04-30|1997-03-01|1997-05-13|DELIVER IN PERSON|SHIP|unusual requests. | +21483|245522|45523|4|26|38155.26|0.10|0.08|N|O|1997-02-22|1997-03-12|1997-03-21|COLLECT COD|FOB|timents wake. grouches bo| +21483|486455|11474|5|35|50450.05|0.02|0.06|N|O|1997-03-11|1997-04-17|1997-04-04|NONE|MAIL|oxes. furiously daring theodolites wake f| +21483|834085|34086|6|12|12228.48|0.02|0.06|N|O|1997-02-04|1997-04-13|1997-02-17|DELIVER IN PERSON|REG AIR|ely final foxes are bef| +21483|449951|24968|7|42|79839.06|0.10|0.01|N|O|1997-04-12|1997-03-02|1997-04-27|DELIVER IN PERSON|FOB|ng, final ideas.| +21484|319700|32207|1|35|60189.15|0.09|0.05|A|F|1993-10-02|1993-10-31|1993-10-07|COLLECT COD|MAIL|onic, bold platelets haggle carefully-| +21484|186326|23836|2|45|63554.40|0.09|0.06|A|F|1993-12-25|1993-11-28|1994-01-02|TAKE BACK RETURN|SHIP|le according to the b| +21484|568028|30540|3|22|24112.00|0.05|0.04|R|F|1993-12-07|1993-10-13|1993-12-27|COLLECT COD|REG AIR|lites sleep slyly about t| +21484|838707|13740|4|1|1645.66|0.08|0.00|A|F|1993-12-31|1993-11-11|1994-01-09|COLLECT COD|AIR|bits integrate. carefully final| +21484|143868|6371|5|46|87945.56|0.01|0.05|A|F|1993-10-11|1993-10-31|1993-10-14|NONE|SHIP|tly regular deposits. furiously | +21484|987079|24637|6|7|8162.21|0.07|0.07|R|F|1993-11-07|1993-11-11|1993-11-29|COLLECT COD|REG AIR| the blithely regular t| +21484|829610|29611|7|11|16935.27|0.09|0.01|R|F|1993-10-11|1993-10-20|1993-10-29|TAKE BACK RETURN|TRUCK|ress excuses serve furiously regular, bold| +21485|240358|27871|1|20|25966.80|0.09|0.01|A|F|1994-04-30|1994-04-27|1994-05-23|NONE|SHIP|posits sleep carefully furiou| +21485|692411|29951|2|12|16840.56|0.00|0.04|R|F|1994-05-28|1994-03-08|1994-05-31|DELIVER IN PERSON|TRUCK|inal, ironic frets cajole slyly. slyly s| +21485|340466|15479|3|32|48206.40|0.01|0.05|A|F|1994-03-26|1994-05-01|1994-04-15|COLLECT COD|MAIL|ic deposits wake. | +21485|207074|19579|4|33|32374.98|0.00|0.01|A|F|1994-02-18|1994-03-10|1994-03-20|COLLECT COD|REG AIR|ounts poac| +21485|289175|1681|5|21|24447.36|0.07|0.06|A|F|1994-03-09|1994-05-03|1994-03-10|TAKE BACK RETURN|RAIL|express packages bo| +21485|161787|49297|6|46|85043.88|0.04|0.05|R|F|1994-04-02|1994-03-26|1994-04-12|NONE|AIR|egular courts| +21485|139609|2112|7|9|14837.40|0.10|0.04|A|F|1994-05-31|1994-05-06|1994-06-25|DELIVER IN PERSON|FOB|al instruc| +21486|397119|34641|1|15|18241.50|0.00|0.06|N|O|1995-11-28|1995-10-30|1995-12-28|COLLECT COD|TRUCK|heodolites run carefully. de| +21486|377035|14557|2|37|41144.74|0.05|0.02|N|O|1995-10-27|1995-11-10|1995-11-09|DELIVER IN PERSON|AIR|nts can haggle. express| +21486|811171|23688|3|19|20560.47|0.04|0.01|N|O|1995-12-10|1995-10-19|1995-12-22|TAKE BACK RETURN|AIR| wake. ironic requests use quickly: furio| +21487|229930|4939|1|28|52077.76|0.07|0.00|R|F|1993-04-03|1993-01-20|1993-04-17|TAKE BACK RETURN|FOB|sts sleep exp| +21487|429613|29614|2|15|23138.85|0.07|0.05|R|F|1993-03-06|1993-01-21|1993-03-30|DELIVER IN PERSON|AIR|es boost slyly after the iro| +21487|502709|2710|3|4|6846.72|0.08|0.00|R|F|1993-01-19|1993-02-24|1993-01-30|COLLECT COD|FOB|eposits. pen| +21487|27661|40162|4|36|57191.76|0.09|0.03|R|F|1993-03-22|1993-02-11|1993-04-10|COLLECT COD|AIR|s nag blithely bli| +21512|765832|28348|1|46|87298.80|0.02|0.04|N|O|1998-01-26|1997-12-23|1998-01-30|DELIVER IN PERSON|REG AIR|egular depths. ironic, pe| +21513|431715|31716|1|42|69160.98|0.04|0.03|A|F|1993-03-11|1993-01-29|1993-03-17|TAKE BACK RETURN|MAIL|special pinto beans haggle quickl| +21513|829438|16987|2|45|61532.55|0.07|0.07|R|F|1992-12-21|1993-02-09|1993-01-19|TAKE BACK RETURN|MAIL|instructions affix carefully blit| +21513|348084|35603|3|29|32830.03|0.09|0.00|A|F|1993-02-14|1993-02-06|1993-02-24|DELIVER IN PERSON|AIR|ctions. blithely ironic ide| +21513|245114|32627|4|7|7413.70|0.03|0.04|A|F|1993-01-16|1993-02-11|1993-02-03|COLLECT COD|FOB|deposits thrash furiously| +21513|615622|28135|5|45|69191.55|0.06|0.00|R|F|1993-03-05|1993-01-17|1993-03-22|NONE|REG AIR| use. furiously even dependencie| +21514|699683|49684|1|41|68988.65|0.04|0.00|N|O|1997-04-02|1997-03-11|1997-04-08|NONE|RAIL|gle. slyly unusual in| +21514|566464|28976|2|45|68869.80|0.04|0.01|N|O|1997-05-31|1997-03-14|1997-06-27|COLLECT COD|FOB|symptotes; furiously special platele| +21514|546677|21698|3|44|75840.60|0.02|0.06|N|O|1997-03-19|1997-04-18|1997-04-17|NONE|AIR|le slyly even, reg| +21514|993776|43777|4|8|14957.84|0.02|0.04|N|O|1997-05-18|1997-03-29|1997-06-15|NONE|SHIP|y express deposits. bold theodolites are| +21514|378012|40520|5|27|29430.00|0.09|0.05|N|O|1997-02-19|1997-03-25|1997-02-26|COLLECT COD|REG AIR|lites. blithely special epitaphs mold | +21514|238024|529|6|42|40404.42|0.03|0.03|N|O|1997-04-17|1997-03-04|1997-04-27|COLLECT COD|RAIL|thlessly sl| +21515|698513|48514|1|15|22672.20|0.10|0.06|N|O|1997-11-07|1997-09-15|1997-11-16|TAKE BACK RETURN|MAIL|t express, ironic platelets.| +21515|904041|29078|2|5|5225.00|0.05|0.02|N|O|1997-09-11|1997-09-29|1997-09-28|COLLECT COD|REG AIR|equests thras| +21515|215391|15392|3|46|60093.48|0.07|0.02|N|O|1997-08-22|1997-08-31|1997-09-15|NONE|MAIL|uches are fluffily. bravely even | +21515|74665|24666|4|20|32793.20|0.10|0.07|N|O|1997-09-20|1997-09-09|1997-10-03|DELIVER IN PERSON|FOB|ges sleep slyly stealth| +21515|892077|29629|5|1|1069.03|0.00|0.08|N|O|1997-09-29|1997-09-26|1997-09-30|COLLECT COD|TRUCK|. blithely| +21515|124456|11963|6|42|62178.90|0.00|0.03|N|O|1997-09-09|1997-09-17|1997-10-04|NONE|AIR|sts. even platelet| +21516|97859|47860|1|6|11141.10|0.04|0.06|N|O|1996-10-07|1996-09-13|1996-10-14|DELIVER IN PERSON|FOB|ely regular deposits. in| +21516|709912|9913|2|21|40359.48|0.07|0.04|N|O|1996-09-18|1996-09-01|1996-09-22|TAKE BACK RETURN|MAIL| regular ideas wake f| +21516|476116|38626|3|28|30578.52|0.08|0.00|N|O|1996-07-15|1996-09-13|1996-08-11|DELIVER IN PERSON|REG AIR|s. carefully even foxes are packages| +21516|71406|8910|4|12|16528.80|0.00|0.05|N|O|1996-07-28|1996-08-31|1996-07-29|NONE|RAIL| quickly ironic foxes | +21516|117737|30240|5|47|82472.31|0.06|0.07|N|O|1996-09-17|1996-09-29|1996-10-04|DELIVER IN PERSON|TRUCK|rbits? silent, bold foxes will w| +21516|790419|15450|6|14|21131.32|0.01|0.05|N|O|1996-08-11|1996-08-31|1996-09-06|TAKE BACK RETURN|FOB|quickly unusual deposits. quickly regul| +21516|558134|45668|7|46|54837.06|0.09|0.00|N|O|1996-09-15|1996-10-08|1996-09-23|COLLECT COD|MAIL|ests boost stealthily. regul| +21517|547418|9929|1|7|10257.73|0.06|0.02|N|O|1996-03-11|1996-02-12|1996-03-17|COLLECT COD|MAIL|l instructions haggle a| +21517|440340|40341|2|44|56334.08|0.06|0.02|N|O|1995-12-28|1996-02-17|1996-01-19|DELIVER IN PERSON|SHIP|ar requests detect slyly | +21517|789394|14425|3|22|32633.92|0.08|0.04|N|O|1995-12-11|1996-02-04|1996-01-03|NONE|FOB|e idly express asymptotes| +21517|339308|26827|4|46|61975.34|0.10|0.06|N|O|1996-01-12|1996-01-11|1996-02-06|TAKE BACK RETURN|RAIL|refully final d| +21517|733573|46088|5|30|48196.20|0.00|0.08|N|O|1996-03-07|1996-02-16|1996-03-15|TAKE BACK RETURN|AIR|uickly final exc| +21517|148558|23563|6|44|70688.20|0.00|0.08|N|O|1996-01-26|1996-01-27|1996-02-25|NONE|AIR|courts. bold, final deposits use acro| +21517|799549|37095|7|20|32970.20|0.04|0.07|N|O|1996-02-25|1996-01-16|1996-03-11|COLLECT COD|FOB|g. fluffily special requests ac| +21518|9208|46709|1|4|4468.80|0.03|0.01|R|F|1994-05-07|1994-06-13|1994-05-29|COLLECT COD|SHIP|l excuses are. blithel| +21518|751896|14412|2|40|77914.40|0.04|0.05|A|F|1994-04-25|1994-06-10|1994-05-19|NONE|AIR|ely ironic packages sleep blithely furio| +21519|782656|7687|1|24|41726.88|0.00|0.03|R|F|1994-06-06|1994-05-20|1994-06-14|COLLECT COD|RAIL|efully final foxes sleep slyly unusual p| +21519|87698|12701|2|25|42142.25|0.00|0.00|A|F|1994-05-29|1994-04-26|1994-06-11|TAKE BACK RETURN|TRUCK|ades. patterns believe careful| +21544|181555|19065|1|32|52369.60|0.05|0.01|A|F|1994-07-19|1994-07-26|1994-08-03|TAKE BACK RETURN|AIR|deposits sleep qui| +21545|620991|46016|1|4|7647.84|0.07|0.00|R|F|1992-03-13|1992-03-08|1992-04-03|TAKE BACK RETURN|MAIL| silent ideas. furiously bold dep| +21545|989684|14723|2|29|51435.56|0.09|0.06|A|F|1992-03-22|1992-03-16|1992-04-13|COLLECT COD|AIR|ly pending theodolites sleep furious| +21546|190190|27700|1|6|7681.14|0.00|0.06|R|F|1994-07-17|1994-08-23|1994-07-31|TAKE BACK RETURN|SHIP|counts. quickl| +21546|522925|22926|2|47|91551.30|0.07|0.02|R|F|1994-07-04|1994-09-12|1994-07-22|NONE|RAIL|elets cajole sl| +21546|790637|15668|3|39|67376.40|0.03|0.00|A|F|1994-08-04|1994-07-19|1994-08-27|DELIVER IN PERSON|SHIP|ole instruction| +21546|226189|38694|4|23|25648.91|0.07|0.08|R|F|1994-08-25|1994-08-01|1994-09-19|COLLECT COD|FOB| bold deposi| +21546|546427|46428|5|4|5893.60|0.03|0.05|R|F|1994-09-30|1994-07-30|1994-10-02|NONE|RAIL|c theodolites. express deposits boost bol| +21547|155371|5372|1|11|15690.07|0.00|0.07|N|O|1996-09-30|1996-10-05|1996-10-20|TAKE BACK RETURN|FOB|lyly about the carefully pend| +21547|306062|6063|2|14|14952.70|0.04|0.00|N|O|1996-10-07|1996-09-25|1996-10-16|COLLECT COD|MAIL|ly regular requests. deposit| +21547|972240|22241|3|26|34117.20|0.00|0.05|N|O|1996-10-22|1996-09-10|1996-11-17|NONE|FOB|ins. even deposits ca| +21547|436186|36187|4|43|48252.88|0.02|0.02|N|O|1996-07-29|1996-10-18|1996-08-10|DELIVER IN PERSON|AIR|its cajole. fl| +21547|969399|44438|5|25|36708.75|0.00|0.06|N|O|1996-10-28|1996-10-13|1996-11-22|DELIVER IN PERSON|TRUCK|er carefully across th| +21548|366352|3874|1|25|35458.50|0.09|0.04|A|F|1994-09-07|1994-09-12|1994-09-10|TAKE BACK RETURN|TRUCK| the requests cajole along the bl| +21548|276992|14508|2|50|98449.00|0.10|0.04|A|F|1994-11-04|1994-09-03|1994-11-07|DELIVER IN PERSON|TRUCK| asymptotes ar| +21549|352224|14732|1|49|62534.29|0.06|0.00|N|O|1997-12-25|1998-01-07|1998-01-11|COLLECT COD|AIR|nding theodolites wake | +21550|184824|47328|1|42|80170.44|0.08|0.08|A|F|1994-10-12|1994-10-02|1994-10-29|TAKE BACK RETURN|TRUCK|yly unusual platelets. care| +21550|326735|14254|2|26|45804.72|0.04|0.00|A|F|1994-08-05|1994-08-15|1994-08-06|DELIVER IN PERSON|MAIL| pending, pe| +21550|425899|38408|3|42|76644.54|0.06|0.06|R|F|1994-10-09|1994-08-08|1994-11-08|NONE|REG AIR|use. daringly ironic theodolites br| +21550|82938|45440|4|2|3841.86|0.06|0.06|R|F|1994-10-18|1994-09-10|1994-11-10|TAKE BACK RETURN|RAIL|its. requests nag. ironic, special theodoli| +21550|927605|15160|5|35|57139.60|0.09|0.02|A|F|1994-07-15|1994-08-28|1994-08-01|DELIVER IN PERSON|FOB|ke. unusual, express e| +21550|246197|33710|6|40|45727.20|0.01|0.01|A|F|1994-10-13|1994-08-23|1994-11-12|COLLECT COD|MAIL|ng to the slyly regula| +21550|830980|30981|7|22|42040.68|0.04|0.07|R|F|1994-07-26|1994-08-10|1994-08-16|COLLECT COD|FOB|t dependencies. deposits use. quickly | +21551|277981|40487|1|41|80317.77|0.08|0.02|N|O|1996-04-23|1996-04-08|1996-05-10|NONE|SHIP|cross the unusual, | +21551|10211|10212|2|28|31393.88|0.10|0.01|N|O|1996-06-05|1996-05-04|1996-06-26|COLLECT COD|SHIP|ress depos| +21551|610826|10827|3|49|85102.71|0.01|0.08|N|O|1996-02-11|1996-04-07|1996-03-10|TAKE BACK RETURN|REG AIR|arefully express excuses. furiously regul| +21551|148903|23908|4|42|81979.80|0.09|0.07|N|O|1996-06-05|1996-04-04|1996-07-01|DELIVER IN PERSON|FOB|s wake quic| +21551|601549|39086|5|7|10153.57|0.00|0.08|N|O|1996-03-14|1996-03-21|1996-03-22|NONE|MAIL|luffily alon| +21576|789046|26592|1|36|40860.36|0.09|0.04|N|O|1998-09-27|1998-08-19|1998-10-17|COLLECT COD|FOB|elets. blithely e| +21577|364231|26739|1|10|12952.20|0.09|0.00|N|O|1998-06-14|1998-07-27|1998-07-02|COLLECT COD|SHIP|tes. pending id| +21577|621713|9250|2|9|14712.12|0.02|0.03|N|O|1998-09-21|1998-07-15|1998-10-17|COLLECT COD|REG AIR|t the requests. regular a| +21577|118185|30688|3|6|7219.08|0.01|0.03|N|O|1998-06-13|1998-07-17|1998-06-16|NONE|TRUCK|egular, idle accounts? f| +21578|54210|29213|1|10|11642.10|0.09|0.06|R|F|1992-04-25|1992-05-04|1992-05-02|NONE|REG AIR|ously above the regular, final | +21578|90804|28308|2|26|46664.80|0.07|0.00|R|F|1992-05-06|1992-06-04|1992-06-04|NONE|RAIL|ironic, ironic deposi| +21578|138062|38063|3|12|13200.72|0.00|0.02|A|F|1992-04-20|1992-05-12|1992-04-27|TAKE BACK RETURN|RAIL|s. special deposits boost after the s| +21579|978548|16106|1|33|53674.50|0.06|0.00|N|O|1997-04-17|1997-06-05|1997-05-14|COLLECT COD|TRUCK|s are slyly packages. express packages use.| +21580|685377|47891|1|50|68117.00|0.00|0.00|R|F|1993-09-24|1993-10-01|1993-10-23|NONE|REG AIR|equests. furious| +21580|128512|16019|2|14|21567.14|0.06|0.03|R|F|1993-11-10|1993-10-08|1993-11-14|TAKE BACK RETURN|MAIL|arefully bold packages must h| +21580|889019|1537|3|19|19151.43|0.08|0.05|R|F|1993-11-28|1993-10-03|1993-12-23|NONE|RAIL|he final requests impress carefully among | +21580|731460|31461|4|17|25354.31|0.04|0.01|R|F|1993-12-26|1993-11-16|1994-01-21|NONE|TRUCK|le slyly at the slyly bold deposits. sl| +21580|635773|35774|5|18|30757.32|0.08|0.05|A|F|1993-09-21|1993-09-30|1993-10-20|NONE|REG AIR|s nag slyly a| +21580|431288|18813|6|43|52428.18|0.08|0.00|A|F|1993-12-23|1993-10-31|1994-01-16|TAKE BACK RETURN|AIR|tes. slowly regular r| +21581|627632|2657|1|47|73301.20|0.01|0.06|R|F|1992-07-17|1992-08-09|1992-07-30|DELIVER IN PERSON|FOB|sts. unusua| +21582|347420|34939|1|39|57228.99|0.05|0.03|A|F|1992-04-24|1992-02-17|1992-05-17|COLLECT COD|AIR|r, even requests| +21582|73120|10624|2|50|54656.00|0.08|0.04|A|F|1992-02-01|1992-03-22|1992-02-21|NONE|RAIL| quickly even requests are requ| +21582|922266|47303|3|45|57969.90|0.03|0.05|A|F|1992-03-12|1992-03-30|1992-04-04|NONE|SHIP|unts cajole warhorses; quic| +21583|250879|880|1|37|67704.82|0.04|0.00|R|F|1995-02-08|1995-03-02|1995-03-02|NONE|RAIL|te furiously. slyly regular excuses| +21583|508876|8877|2|18|33927.30|0.07|0.04|R|F|1995-01-15|1995-03-21|1995-01-16|COLLECT COD|FOB|nstructions sleep quickly| +21583|665312|40339|3|6|7663.68|0.01|0.05|A|F|1994-12-22|1995-01-28|1994-12-25|TAKE BACK RETURN|FOB|ajole slyly at the regular r| +21608|184484|34485|1|19|29801.12|0.02|0.08|N|O|1998-05-09|1998-03-31|1998-06-01|NONE|AIR|y special pinto beans. furious| +21608|606410|31435|2|46|60553.48|0.07|0.08|N|O|1998-04-20|1998-03-08|1998-05-09|COLLECT COD|SHIP|ide of the ca| +21608|930394|30395|3|14|19940.90|0.08|0.05|N|O|1998-05-10|1998-04-02|1998-06-01|TAKE BACK RETURN|RAIL| special, regular| +21608|130524|43027|4|39|60626.28|0.06|0.02|N|O|1998-06-06|1998-05-03|1998-07-04|NONE|SHIP|ns are furiously alongside of the pending | +21609|179811|29812|1|40|75632.40|0.04|0.06|A|F|1995-01-14|1994-12-28|1995-02-02|DELIVER IN PERSON|FOB|nic accounts. pending accounts use caref| +21610|895173|20208|1|18|21026.34|0.09|0.06|A|F|1993-04-14|1993-03-30|1993-05-01|COLLECT COD|FOB|y across the even req| +21610|161391|36398|2|23|33404.97|0.05|0.07|A|F|1993-04-25|1993-04-22|1993-05-02|NONE|REG AIR| slyly regular accounts. furiou| +21610|482624|7643|3|45|72297.00|0.05|0.03|R|F|1993-05-05|1993-04-17|1993-05-14|DELIVER IN PERSON|SHIP|e. furiously ironic multipliers u| +21611|195556|8060|1|24|39637.20|0.06|0.02|A|F|1994-08-16|1994-06-23|1994-08-27|NONE|MAIL| fluffily. deposits above the bo| +21611|699158|49159|2|20|23142.40|0.04|0.03|R|F|1994-08-13|1994-06-29|1994-09-01|NONE|FOB|inally against th| +21611|734015|34016|3|38|39861.24|0.06|0.07|A|F|1994-05-22|1994-07-15|1994-06-05|NONE|FOB|ccounts beyond the regular dolphins a| +21611|575868|25869|4|44|85528.96|0.06|0.08|R|F|1994-07-07|1994-06-26|1994-08-02|DELIVER IN PERSON|TRUCK|e carefully unusu| +21612|68989|31491|1|4|7831.92|0.01|0.03|N|O|1995-12-16|1995-11-06|1996-01-02|NONE|SHIP| deposits. even accounts affix finall| +21612|496884|46885|2|1|1880.86|0.00|0.07|N|O|1995-10-14|1995-12-30|1995-10-29|NONE|FOB|nto beans wake b| +21613|784777|9808|1|48|89363.52|0.06|0.02|N|O|1997-07-01|1997-07-23|1997-07-04|DELIVER IN PERSON|MAIL|sits are a| +21613|742523|5038|2|30|46964.70|0.04|0.02|N|O|1997-08-17|1997-07-21|1997-08-27|DELIVER IN PERSON|FOB|efully; foxes | +21613|581682|44194|3|35|61728.10|0.00|0.06|N|O|1997-08-09|1997-07-16|1997-08-28|COLLECT COD|MAIL|lly even packages. bli| +21613|322927|22928|4|11|21449.01|0.01|0.07|N|O|1997-07-05|1997-08-18|1997-07-23|COLLECT COD|REG AIR|s. carefully bold n| +21613|434006|9023|5|29|27259.42|0.09|0.06|N|O|1997-06-17|1997-08-19|1997-06-30|COLLECT COD|SHIP|e regular pinto beans. accounts are careful| +21614|750982|13498|1|22|44724.90|0.08|0.07|A|F|1993-05-29|1993-07-07|1993-06-26|COLLECT COD|RAIL|iously. slyly| +21614|750943|38489|2|45|89725.95|0.04|0.00|A|F|1993-06-08|1993-06-04|1993-06-30|TAKE BACK RETURN|RAIL|ts sleep blithely accoun| +21614|95806|33310|3|46|82882.80|0.00|0.01|R|F|1993-05-11|1993-06-24|1993-05-31|TAKE BACK RETURN|AIR|side of the| +21615|822084|22085|1|15|15090.60|0.02|0.00|N|O|1996-01-11|1995-12-16|1996-02-04|DELIVER IN PERSON|TRUCK|ong the furiously pending packages. i| +21615|764306|1852|2|9|12332.43|0.01|0.07|N|O|1996-01-16|1996-02-01|1996-02-09|TAKE BACK RETURN|MAIL|olites nag carefully c| +21615|677721|27722|3|18|30576.42|0.07|0.04|N|O|1995-12-09|1996-01-20|1995-12-24|TAKE BACK RETURN|AIR|posits. silent dolphins nag. fi| +21615|454885|17395|4|13|23918.18|0.03|0.02|N|O|1996-01-25|1996-02-02|1996-02-24|DELIVER IN PERSON|RAIL|lar accounts. idly busy packages slee| +21615|247259|22268|5|43|51868.32|0.02|0.06|N|O|1995-11-26|1996-01-04|1995-12-18|DELIVER IN PERSON|SHIP|fully ironic packages w| +21615|671854|34368|6|5|9129.10|0.08|0.06|N|O|1995-12-26|1996-02-02|1996-01-18|TAKE BACK RETURN|REG AIR|eep above the blithely ironi| +21615|846765|9282|7|14|23964.08|0.08|0.01|N|O|1996-02-13|1995-12-31|1996-03-13|COLLECT COD|SHIP|inal packages sleep quickly| +21640|568607|18608|1|9|15080.22|0.02|0.08|N|O|1995-07-13|1995-06-30|1995-07-29|COLLECT COD|REG AIR|ajole special epitaphs. quickly ev| +21640|571807|9341|2|43|80787.54|0.08|0.07|R|F|1995-05-14|1995-05-27|1995-05-18|NONE|REG AIR|e slyly even requests caj| +21640|351799|14307|3|44|81434.32|0.06|0.03|A|F|1995-04-30|1995-05-28|1995-05-17|NONE|REG AIR| final, pending packages ar| +21640|678315|3342|4|40|51731.20|0.07|0.03|N|O|1995-08-09|1995-06-15|1995-09-04|NONE|REG AIR|he dolphins.| +21640|434523|47032|5|41|59757.50|0.01|0.01|N|F|1995-06-12|1995-07-02|1995-07-04|NONE|RAIL|arefully above the carefully r| +21640|27054|27055|6|31|30412.55|0.06|0.04|N|O|1995-07-20|1995-07-11|1995-07-21|COLLECT COD|TRUCK|posits detect bli| +21640|686345|11372|7|15|19969.65|0.02|0.01|R|F|1995-04-30|1995-06-28|1995-05-07|COLLECT COD|MAIL|. carefully final hockey players haggle| +21641|389484|39485|1|23|36189.81|0.03|0.01|R|F|1992-09-18|1992-10-18|1992-10-05|NONE|MAIL|ironic idea| +21641|56049|31052|2|19|19095.76|0.06|0.04|A|F|1992-10-13|1992-09-20|1992-11-10|COLLECT COD|MAIL|efully silent ideas. carefully ir| +21642|690414|27954|1|24|33705.12|0.03|0.03|A|F|1992-10-13|1992-11-02|1992-11-03|DELIVER IN PERSON|MAIL|eaves run slyly | +21642|787999|515|2|16|33391.36|0.09|0.08|R|F|1992-10-27|1992-10-26|1992-11-16|TAKE BACK RETURN|MAIL|hely ironic packages cajole | +21642|897837|35389|3|28|51374.12|0.06|0.03|R|F|1992-10-16|1992-11-07|1992-11-14|TAKE BACK RETURN|AIR|uriously alongside of the blithely iro| +21643|167638|5148|1|8|13645.04|0.10|0.06|A|F|1994-06-29|1994-07-24|1994-07-22|TAKE BACK RETURN|TRUCK| accounts are quickly against the furiou| +21643|489162|39163|2|41|47196.74|0.00|0.01|R|F|1994-06-24|1994-07-26|1994-07-22|COLLECT COD|RAIL|ironic requests p| +21643|330326|42833|3|4|5425.24|0.10|0.06|R|F|1994-06-17|1994-07-09|1994-06-30|DELIVER IN PERSON|RAIL| quickly ironic ac| +21643|788447|25993|4|39|59880.99|0.09|0.06|R|F|1994-07-12|1994-06-05|1994-08-01|COLLECT COD|TRUCK|sh slyly ironic| +21644|161710|49220|1|13|23032.23|0.01|0.01|A|F|1994-10-18|1994-11-19|1994-11-17|NONE|MAIL|ent instructions. care| +21644|859802|9803|2|4|7047.04|0.01|0.00|A|F|1994-12-18|1994-12-15|1995-01-04|TAKE BACK RETURN|SHIP| at the carefully regula| +21644|680313|42827|3|45|58197.60|0.00|0.00|R|F|1994-10-28|1994-11-28|1994-11-12|COLLECT COD|SHIP| packages. blithely even| +21644|16723|29224|4|41|67228.52|0.00|0.04|A|F|1994-10-21|1994-11-08|1994-10-23|NONE|MAIL|bold theodolites unwind. final pla| +21644|48349|10850|5|13|16865.42|0.00|0.07|R|F|1994-10-25|1995-01-06|1994-11-12|TAKE BACK RETURN|AIR|g the quickly express accounts. ironic pack| +21645|126129|1134|1|11|12706.32|0.02|0.04|N|O|1996-01-29|1996-02-20|1996-02-26|COLLECT COD|RAIL| haggle about t| +21645|847521|10038|2|14|20558.72|0.01|0.04|N|O|1996-01-03|1996-03-05|1996-01-09|TAKE BACK RETURN|MAIL|ts. sometimes express pains are furiou| +21645|285166|22682|3|50|57557.50|0.00|0.03|N|O|1996-01-19|1996-02-21|1996-01-21|NONE|TRUCK|ly fluffy deposits| +21645|773805|11351|4|28|52605.56|0.08|0.05|N|O|1996-03-20|1996-03-01|1996-04-16|TAKE BACK RETURN|MAIL|re blithely. bold packages imp| +21645|325488|501|5|3|4540.41|0.01|0.08|N|O|1996-02-24|1996-03-11|1996-03-15|COLLECT COD|AIR|ts. packages haggle quickl| +21645|465419|2947|6|30|41531.70|0.08|0.01|N|O|1996-01-01|1996-03-13|1996-01-02|NONE|RAIL|ously across the furiously un| +21645|288724|13735|7|6|10276.26|0.03|0.00|N|O|1996-04-09|1996-01-22|1996-04-27|COLLECT COD|MAIL|l theodolites. carefu| +21646|576571|14105|1|13|21418.15|0.00|0.08|N|O|1996-02-15|1995-12-30|1996-03-12|TAKE BACK RETURN|MAIL| ideas are blithely even acco| +21646|425332|37841|2|17|21374.27|0.01|0.01|N|O|1995-12-09|1995-12-04|1995-12-17|DELIVER IN PERSON|SHIP|s among the special, ironic dolphins| +21647|238648|26161|1|41|65051.83|0.08|0.07|R|F|1993-12-31|1994-02-13|1994-01-12|COLLECT COD|REG AIR|lithely after the pending asymptotes. re| +21647|954664|42222|2|39|67026.18|0.03|0.04|A|F|1994-01-18|1994-02-22|1994-01-19|COLLECT COD|REG AIR|quests cajole| +21647|26192|38693|3|11|12300.09|0.05|0.04|A|F|1994-01-17|1994-03-10|1994-01-31|TAKE BACK RETURN|SHIP|nal, regular deposits bo| +21647|201637|14142|4|24|36926.88|0.00|0.06|R|F|1994-04-06|1994-01-21|1994-04-13|COLLECT COD|SHIP|r packages. silent dinos use. care| +21647|907314|32351|5|12|15855.24|0.08|0.02|A|F|1994-04-04|1994-01-26|1994-04-26|COLLECT COD|FOB|ly blithely regular excuses. furi| +21647|216759|41768|6|7|11730.18|0.02|0.08|A|F|1993-12-19|1994-02-05|1993-12-28|TAKE BACK RETURN|RAIL|old accounts boost. | +21672|659261|34288|1|17|20743.91|0.10|0.01|N|O|1997-10-04|1997-09-08|1997-10-24|NONE|REG AIR|ests. regular, ironic accounts boost car| +21673|447847|10356|1|3|5384.46|0.06|0.07|N|O|1996-09-17|1996-10-20|1996-09-20|TAKE BACK RETURN|MAIL| beans sleep carefully bold deposits. bold | +21673|956892|19412|2|25|48721.25|0.05|0.01|N|O|1996-12-28|1996-11-19|1997-01-04|TAKE BACK RETURN|AIR|symptotes hinder ironic, unusual dept| +21673|476699|1718|3|39|65351.13|0.07|0.06|N|O|1996-10-04|1996-11-28|1996-11-03|NONE|SHIP|lithely regular foxes x-ray c| +21673|879326|16878|4|8|10442.24|0.04|0.02|N|O|1996-11-28|1996-11-01|1996-12-20|NONE|TRUCK|ickly regular the| +21674|588903|38904|1|40|79675.20|0.03|0.05|N|O|1997-03-18|1997-01-29|1997-03-25|DELIVER IN PERSON|TRUCK|es. blithely ironic fox| +21674|684096|46610|2|43|46442.58|0.06|0.08|N|O|1996-12-29|1997-01-07|1997-01-18|NONE|SHIP|ajole slyly carefully regular| +21674|584943|22477|3|29|58809.68|0.10|0.07|N|O|1997-03-11|1997-02-02|1997-03-26|COLLECT COD|REG AIR|boost furiously pending request| +21675|893104|30656|1|7|7679.42|0.05|0.00|A|F|1993-01-11|1993-02-06|1993-02-01|NONE|FOB|yly regular accounts d| +21675|383025|45533|2|25|27700.25|0.02|0.07|R|F|1992-12-12|1993-01-24|1992-12-19|DELIVER IN PERSON|AIR|affix quickly blith| +21675|488865|1375|3|19|35222.96|0.07|0.01|A|F|1993-02-08|1993-01-20|1993-02-18|NONE|SHIP|usly after the silently regu| +21676|58610|8611|1|39|61175.79|0.04|0.02|N|O|1998-08-04|1998-07-15|1998-08-20|TAKE BACK RETURN|RAIL|eans use slyly. furiously final ins| +21676|44492|44493|2|27|38785.23|0.01|0.06|N|O|1998-07-18|1998-07-06|1998-08-13|NONE|REG AIR|packages doze: | +21676|764949|27465|3|8|16111.28|0.10|0.03|N|O|1998-08-06|1998-07-26|1998-08-17|NONE|MAIL|ts alongside of the packages detect blithe| +21676|497074|34602|4|42|44984.10|0.09|0.02|N|O|1998-06-26|1998-07-30|1998-07-20|TAKE BACK RETURN|AIR|unts. even theodolites wa| +21677|529410|29411|1|8|11515.12|0.10|0.06|N|O|1995-09-09|1995-10-25|1995-09-14|TAKE BACK RETURN|REG AIR|express instructions. special, regular | +21677|783848|21394|2|2|3863.62|0.09|0.08|N|O|1995-11-11|1995-09-27|1995-11-18|DELIVER IN PERSON|REG AIR|t requests wake blithely again| +21677|131288|6293|3|50|65964.00|0.04|0.06|N|O|1995-09-17|1995-11-11|1995-09-25|DELIVER IN PERSON|TRUCK|wake furiously across the unusual instructi| +21677|550286|25309|4|5|6681.30|0.08|0.01|N|O|1995-10-30|1995-11-09|1995-11-24|DELIVER IN PERSON|REG AIR|omise about the slyly i| +21677|653561|28588|5|38|57552.14|0.07|0.04|N|O|1995-12-10|1995-11-07|1995-12-24|DELIVER IN PERSON|RAIL|e quickly carefully sil| +21677|391809|41810|6|19|36115.01|0.07|0.03|N|O|1995-10-18|1995-10-21|1995-11-10|DELIVER IN PERSON|MAIL|e slyly slyly final| +21677|119524|7031|7|32|49392.64|0.07|0.01|N|O|1995-10-11|1995-10-22|1995-10-22|DELIVER IN PERSON|SHIP|hes haggle slyly across| +21678|825668|701|1|28|44621.36|0.10|0.01|N|O|1996-10-15|1996-11-05|1996-11-06|NONE|TRUCK|sly unusual dugou| +21678|996153|33711|2|9|11241.99|0.08|0.06|N|O|1996-10-20|1996-10-09|1996-10-31|TAKE BACK RETURN|SHIP|ges use about the | +21678|336800|11813|3|3|5510.37|0.05|0.06|N|O|1996-11-02|1996-09-18|1996-11-06|DELIVER IN PERSON|AIR|gle quickly. slyly regular de| +21678|592973|5485|4|25|51648.75|0.00|0.06|N|O|1996-10-20|1996-09-20|1996-11-02|NONE|MAIL|posits. express accounts| +21678|83644|46146|5|7|11393.48|0.00|0.05|N|O|1996-11-26|1996-10-03|1996-11-30|DELIVER IN PERSON|RAIL|s requests. accounts boost. blit| +21679|593618|6130|1|25|42789.75|0.02|0.04|A|F|1993-04-15|1993-05-14|1993-04-19|DELIVER IN PERSON|REG AIR|ray carefully among | +21679|936932|49451|2|20|39377.80|0.09|0.07|A|F|1993-07-26|1993-06-22|1993-08-17|TAKE BACK RETURN|TRUCK|usual deposits. carefully ironic instruc| +21679|1267|26268|3|23|26869.98|0.07|0.08|R|F|1993-07-05|1993-05-08|1993-07-15|DELIVER IN PERSON|SHIP|packages thrash quickly against the spec| +21679|291176|16187|4|42|49020.72|0.07|0.08|R|F|1993-04-23|1993-05-29|1993-05-13|NONE|MAIL|xes use according to the carefully iro| +21679|791914|4430|5|14|28082.32|0.09|0.03|A|F|1993-06-19|1993-05-24|1993-06-25|DELIVER IN PERSON|MAIL|e quickly do| +21704|836113|23662|1|11|11539.77|0.08|0.02|N|O|1998-06-03|1998-05-13|1998-07-01|TAKE BACK RETURN|SHIP|en accounts. quic| +21704|547814|35345|2|4|7447.16|0.09|0.02|N|O|1998-05-13|1998-05-31|1998-05-27|COLLECT COD|TRUCK|pecial packa| +21704|102780|40287|3|10|17827.80|0.09|0.02|N|O|1998-07-02|1998-04-29|1998-07-04|NONE|MAIL|ggedly even | +21704|409222|46747|4|1|1131.20|0.08|0.01|N|O|1998-03-23|1998-04-05|1998-04-16|COLLECT COD|RAIL|s are against the regular, unusua| +21705|594645|32179|1|16|27833.92|0.07|0.02|N|O|1998-04-27|1998-03-27|1998-05-26|TAKE BACK RETURN|AIR|latelets. pending requests | +21705|197144|9648|2|35|43439.90|0.02|0.05|N|O|1998-04-01|1998-02-23|1998-04-15|COLLECT COD|AIR|tipliers. quickly regular theod| +21705|386936|36937|3|45|91031.40|0.10|0.08|N|O|1998-02-09|1998-02-11|1998-02-23|NONE|REG AIR|unts sleep quickly above the packages. b| +21705|223903|48912|4|9|16442.01|0.05|0.08|N|O|1998-05-05|1998-02-27|1998-06-04|DELIVER IN PERSON|FOB|ng to the brave, ironic accou| +21705|123657|23658|5|14|23529.10|0.10|0.04|N|O|1998-03-01|1998-03-07|1998-03-20|DELIVER IN PERSON|AIR|y. furiously ironic requests caj| +21706|656356|18870|1|50|65616.00|0.05|0.03|N|O|1997-12-22|1997-10-29|1998-01-21|TAKE BACK RETURN|AIR|onic, express requests.| +21707|650626|38166|1|38|59910.42|0.02|0.07|R|F|1994-12-15|1994-11-21|1994-12-25|DELIVER IN PERSON|FOB|s wake. carefully ironic acc| +21707|59378|34381|2|44|58844.28|0.06|0.02|A|F|1995-01-02|1994-11-17|1995-01-16|COLLECT COD|SHIP|ole among the pending, final theodolites.| +21707|955716|30755|3|49|86811.83|0.06|0.07|A|F|1994-12-03|1994-10-22|1994-12-29|NONE|RAIL|during the furiously silent pac| +21707|706352|43895|4|39|52974.48|0.08|0.08|R|F|1994-11-07|1994-10-15|1994-12-03|NONE|FOB| fluffily requests. slyly express packag| +21707|641942|29479|5|2|3767.82|0.02|0.03|A|F|1994-09-27|1994-10-15|1994-10-10|COLLECT COD|SHIP|uriously about the foxes. blithely | +21707|110419|22922|6|3|4288.23|0.02|0.04|A|F|1994-11-18|1994-11-23|1994-11-26|DELIVER IN PERSON|SHIP|o the furiously ironic requests. en| +21708|884537|47055|1|7|10650.43|0.08|0.06|A|F|1994-02-10|1994-01-10|1994-02-25|TAKE BACK RETURN|SHIP|. ironic, sly theodolites around th| +21708|409136|34153|2|39|40759.29|0.09|0.03|A|F|1994-02-22|1994-01-21|1994-02-26|NONE|FOB|e furiously even requests. fluffily| +21708|338184|25703|3|5|6110.85|0.10|0.05|R|F|1993-12-09|1993-12-12|1994-01-02|NONE|RAIL|instructions sleep regular, final requ| +21708|846368|33917|4|27|35486.64|0.02|0.03|R|F|1994-02-28|1994-02-03|1994-03-15|TAKE BACK RETURN|REG AIR|r sentiments are fluffily ironic, | +21709|298728|23739|1|19|32807.49|0.09|0.07|R|F|1992-09-11|1992-09-13|1992-10-03|NONE|RAIL|longside of the quickly final foxes.| +21709|712982|12983|2|13|25934.35|0.07|0.00|R|F|1992-09-11|1992-09-13|1992-09-12|COLLECT COD|SHIP|as. special, final sent| +21710|984147|21705|1|45|55399.50|0.02|0.05|N|O|1997-10-18|1997-10-21|1997-11-04|COLLECT COD|RAIL|lly regular ideas. slyly regular deposits | +21710|545569|20590|2|9|14530.86|0.07|0.06|N|O|1997-08-14|1997-09-05|1997-09-11|TAKE BACK RETURN|AIR| according to the ironic dependencies enga| +21710|374694|24695|3|34|60135.12|0.01|0.08|N|O|1997-11-23|1997-09-13|1997-12-06|TAKE BACK RETURN|SHIP|egular requests. blithel| +21710|480801|5820|4|17|30290.26|0.08|0.05|N|O|1997-09-22|1997-09-21|1997-10-02|COLLECT COD|TRUCK|l pinto beans. f| +21710|820021|7570|5|2|1881.96|0.02|0.05|N|O|1997-08-03|1997-09-17|1997-08-25|DELIVER IN PERSON|RAIL|mong the carefu| +21711|839542|39543|1|42|62223.00|0.08|0.00|N|O|1995-12-26|1995-12-03|1996-01-19|DELIVER IN PERSON|REG AIR|g the slyly ironic accounts haggle| +21736|363169|13170|1|36|44357.40|0.05|0.07|R|F|1995-04-30|1995-06-12|1995-05-03|COLLECT COD|SHIP|efully pending deposits integrate blith| +21736|768301|18302|2|29|39708.83|0.07|0.08|N|O|1995-07-28|1995-06-20|1995-08-06|NONE|RAIL|. even pinto beans above the slyly regular | +21736|825864|38381|3|27|48325.14|0.03|0.08|R|F|1995-04-26|1995-06-12|1995-05-23|DELIVER IN PERSON|MAIL|ironic foxes cajole furiously. sly| +21736|293489|43490|4|49|72641.03|0.05|0.04|N|F|1995-05-25|1995-06-04|1995-06-23|NONE|RAIL|tions! blithely fin| +21737|487281|24809|1|45|57071.70|0.00|0.00|N|O|1998-05-28|1998-05-04|1998-06-12|TAKE BACK RETURN|FOB|capades was across the sl| +21737|723926|36441|2|50|97494.50|0.05|0.00|N|O|1998-02-12|1998-05-05|1998-02-15|TAKE BACK RETURN|SHIP|refully along the final ideas. ironic, fina| +21737|7920|7921|3|29|53009.68|0.06|0.04|N|O|1998-03-11|1998-04-05|1998-04-05|NONE|REG AIR|inst the care| +21737|109660|47167|4|46|76804.36|0.03|0.01|N|O|1998-02-06|1998-03-12|1998-03-08|NONE|AIR|. regular, regular theodol| +21737|49307|11808|5|36|45226.80|0.04|0.05|N|O|1998-04-09|1998-04-28|1998-04-28|DELIVER IN PERSON|AIR|quests nag furiously; slyly silent i| +21737|689858|39859|6|26|48043.32|0.05|0.01|N|O|1998-06-01|1998-05-01|1998-06-10|DELIVER IN PERSON|MAIL| excuses. ir| +21737|435684|10701|7|41|66406.06|0.10|0.08|N|O|1998-04-13|1998-04-16|1998-04-30|COLLECT COD|AIR|ual asymptotes-- even foxes use. theod| +21738|529450|4471|1|15|22191.45|0.03|0.04|A|F|1993-11-30|1994-01-30|1993-12-28|NONE|MAIL|y final platelets. regular ideas cajol| +21738|464476|39495|2|37|53296.65|0.04|0.00|A|F|1993-12-24|1993-12-26|1994-01-22|NONE|AIR|dolites. regular Tires| +21738|446572|9081|3|13|19741.15|0.08|0.00|R|F|1994-02-07|1994-01-28|1994-02-28|COLLECT COD|FOB| slowly bli| +21738|522736|10267|4|7|12310.97|0.03|0.03|R|F|1994-01-22|1994-01-01|1994-01-25|NONE|FOB|f the furiou| +21738|620934|20935|5|6|11129.40|0.07|0.08|R|F|1993-12-24|1993-12-30|1993-12-27|COLLECT COD|MAIL| excuses are fluffily quickly unusual | +21738|27377|27378|6|34|44348.58|0.03|0.08|R|F|1994-01-07|1994-02-05|1994-01-18|COLLECT COD|REG AIR|egular theod| +21738|124122|49127|7|7|8022.84|0.06|0.02|A|F|1994-02-27|1993-12-23|1994-03-28|COLLECT COD|AIR|. theodolites affix slyly? careful| +21739|107762|45269|1|5|8848.80|0.04|0.07|A|F|1993-09-14|1993-10-04|1993-09-26|NONE|MAIL| permanent th| +21740|191783|29293|1|6|11248.68|0.07|0.08|R|F|1993-08-28|1993-07-23|1993-09-25|COLLECT COD|SHIP|r the regular, final requests | +21740|281485|31486|2|15|21997.05|0.01|0.07|R|F|1993-08-07|1993-08-10|1993-08-25|DELIVER IN PERSON|REG AIR|atelets. quickly iro| +21741|921368|46405|1|9|12503.88|0.06|0.08|R|F|1992-06-23|1992-05-17|1992-07-18|TAKE BACK RETURN|MAIL|sts affix blithely slyly| +21742|311121|11122|1|5|5660.55|0.01|0.05|R|F|1993-12-13|1993-11-24|1993-12-16|NONE|SHIP|lets are blithely final deposits. slyly sp| +21742|997212|9732|2|39|51057.63|0.03|0.04|R|F|1993-12-12|1993-10-20|1994-01-10|TAKE BACK RETURN|REG AIR| above the pending| +21742|128172|3177|3|4|4800.68|0.01|0.06|R|F|1993-10-13|1993-11-21|1993-11-10|TAKE BACK RETURN|REG AIR|ependencies. escap| +21742|185247|10254|4|41|54621.84|0.08|0.00|R|F|1993-11-19|1993-11-29|1993-11-30|NONE|FOB|. blithely e| +21742|438377|13394|5|46|60506.10|0.00|0.04|A|F|1993-11-26|1993-10-22|1993-12-21|COLLECT COD|RAIL|s are fluffily| +21742|788616|13647|6|7|11932.06|0.09|0.08|A|F|1993-12-07|1993-11-24|1993-12-26|NONE|TRUCK|ly final foxes. final, regu| +21742|260294|22800|7|41|51425.48|0.00|0.06|A|F|1993-11-07|1993-11-25|1993-11-14|DELIVER IN PERSON|AIR|ingly express, even ideas. spe| +21743|753531|16047|1|46|72887.00|0.04|0.08|N|O|1997-10-30|1997-08-24|1997-11-20|COLLECT COD|MAIL|s. carefully ironic platelets above the | +21768|118817|43822|1|2|3671.62|0.01|0.02|R|F|1994-06-27|1994-09-05|1994-07-10|DELIVER IN PERSON|SHIP|iously close ideas wake regular ti| +21768|943792|43793|2|43|78937.25|0.03|0.02|R|F|1994-07-25|1994-09-02|1994-08-04|NONE|REG AIR|ly regular asymptotes. | +21768|299261|36777|3|16|20164.00|0.09|0.08|R|F|1994-08-13|1994-08-15|1994-09-01|TAKE BACK RETURN|RAIL| sleep slyly regular dependencies. | +21768|670724|20725|4|29|49146.01|0.06|0.05|A|F|1994-10-07|1994-09-09|1994-10-11|NONE|RAIL|to beans doub| +21769|379507|17029|1|4|6345.96|0.06|0.05|N|O|1997-02-26|1997-04-14|1997-03-03|COLLECT COD|REG AIR| bold forges are fur| +21769|363440|38455|2|5|7517.15|0.07|0.01|N|O|1997-05-03|1997-03-12|1997-05-18|COLLECT COD|MAIL|le about the brave deposits. fu| +21769|323037|10556|3|17|18020.34|0.04|0.01|N|O|1997-03-15|1997-02-19|1997-03-20|NONE|FOB|e fluffily express pinto beans. busy,| +21769|267043|29549|4|24|24240.72|0.07|0.04|N|O|1997-03-10|1997-03-13|1997-03-21|DELIVER IN PERSON|RAIL|e the final, slow asymptotes. pending asym| +21769|189662|27172|5|31|54301.46|0.00|0.02|N|O|1997-03-02|1997-03-31|1997-03-16|TAKE BACK RETURN|FOB|e blithely regular excu| +21769|647086|9599|6|31|32024.55|0.04|0.02|N|O|1997-03-05|1997-04-06|1997-04-04|COLLECT COD|MAIL|al asymptotes ac| +21770|763919|38950|1|4|7931.52|0.00|0.08|R|F|1993-09-19|1993-11-16|1993-10-05|TAKE BACK RETURN|AIR|ecoys are fluffily. furiously express fo| +21770|183713|33714|2|20|35934.20|0.06|0.08|A|F|1993-11-08|1993-11-09|1993-11-26|TAKE BACK RETURN|REG AIR|he carefully ironic | +21770|659796|9797|3|2|3511.52|0.08|0.07|R|F|1993-12-12|1993-10-26|1993-12-28|DELIVER IN PERSON|SHIP|s. blithely bold packages wake qu| +21770|175114|12624|4|40|47564.40|0.02|0.03|R|F|1993-09-22|1993-09-29|1993-10-06|NONE|RAIL|refully expre| +21770|138389|38390|5|46|65659.48|0.05|0.06|R|F|1993-11-07|1993-11-20|1993-11-27|NONE|MAIL|es must integra| +21770|903850|41405|6|43|79713.83|0.02|0.06|R|F|1993-11-30|1993-09-26|1993-12-06|COLLECT COD|AIR|fully special in| +21770|994160|44161|7|31|38877.72|0.07|0.07|A|F|1993-11-22|1993-10-10|1993-12-15|TAKE BACK RETURN|TRUCK|ut the slyly regular depo| +21771|831057|43574|1|21|20748.21|0.03|0.03|N|O|1997-05-24|1997-06-10|1997-06-01|COLLECT COD|FOB|tructions sleep quickly along the slyly sil| +21771|564330|14331|2|50|69715.50|0.07|0.08|N|O|1997-07-08|1997-06-09|1997-07-11|TAKE BACK RETURN|RAIL|y after the carefully even requests. pac| +21771|692608|17635|3|4|6402.28|0.08|0.04|N|O|1997-06-20|1997-06-22|1997-07-07|DELIVER IN PERSON|MAIL|instructions. pinto beans dazzle ironically| +21772|501617|14128|1|23|37227.57|0.02|0.04|N|O|1997-06-11|1997-07-03|1997-06-19|NONE|RAIL|. express, even deposits wak| +21772|672775|22776|2|41|71657.34|0.05|0.02|N|O|1997-05-21|1997-07-03|1997-06-19|DELIVER IN PERSON|RAIL|d the pending, u| +21773|625833|858|1|2|3517.60|0.09|0.07|R|F|1995-01-28|1994-12-10|1995-02-11|COLLECT COD|MAIL|nto beans wake fluffily. platelets hagg| +21773|372029|22030|2|50|55050.50|0.04|0.03|A|F|1995-02-11|1994-12-31|1995-02-14|DELIVER IN PERSON|SHIP| furiously according to the finally speci| +21773|675190|37704|3|40|46606.40|0.04|0.05|R|F|1995-01-11|1995-01-10|1995-02-09|COLLECT COD|MAIL| wake regular| +21773|902102|27139|4|20|22081.20|0.09|0.02|A|F|1994-12-22|1994-12-25|1995-01-11|COLLECT COD|REG AIR|e unusual, enticing foxes.| +21773|613195|25708|5|26|28812.16|0.07|0.06|A|F|1994-11-15|1995-01-07|1994-11-27|DELIVER IN PERSON|SHIP|longside of the furiously | +21774|691004|41005|1|41|40793.77|0.08|0.08|N|O|1998-06-07|1998-04-02|1998-06-18|TAKE BACK RETURN|MAIL|ng asymptotes haggle blithely| +21774|703986|41529|2|9|17909.55|0.02|0.03|N|O|1998-05-02|1998-05-05|1998-05-10|TAKE BACK RETURN|AIR|final deposits| +21774|880801|43319|3|42|74833.92|0.08|0.08|N|O|1998-05-16|1998-04-26|1998-05-19|DELIVER IN PERSON|FOB|ids use fluffily final accounts. pint| +21774|610772|23285|4|13|21875.62|0.09|0.03|N|O|1998-03-11|1998-04-18|1998-03-17|TAKE BACK RETURN|TRUCK|dependencies. deposits according to| +21774|229164|16677|5|39|42632.85|0.08|0.04|N|O|1998-06-02|1998-04-10|1998-07-02|TAKE BACK RETURN|TRUCK|ickly after the blithely bold ex| +21774|543762|6273|6|47|84869.78|0.00|0.07|N|O|1998-04-23|1998-05-02|1998-05-08|TAKE BACK RETURN|REG AIR|nt carefully. bold, fin| +21775|555248|17760|1|42|54735.24|0.10|0.02|N|O|1995-06-21|1995-06-30|1995-07-07|TAKE BACK RETURN|FOB|p carefully blithely bold requests: plat| +21775|48840|11341|2|3|5366.52|0.08|0.02|N|O|1995-07-14|1995-05-29|1995-08-03|NONE|SHIP|furiously. quickly final instructions wa| +21800|922032|22033|1|23|24241.77|0.02|0.06|N|O|1997-07-25|1997-09-19|1997-08-22|COLLECT COD|REG AIR|he furiously express packages. furio| +21800|591018|28552|2|27|29942.73|0.06|0.05|N|O|1997-09-13|1997-09-06|1997-09-30|NONE|RAIL|eep blithely fluffily special foxes. s| +21800|236168|36169|3|15|16562.25|0.09|0.03|N|O|1997-07-12|1997-07-24|1997-07-22|COLLECT COD|TRUCK|. closely r| +21800|272900|47911|4|40|74915.60|0.09|0.03|N|O|1997-08-03|1997-07-23|1997-08-11|COLLECT COD|REG AIR|al requests integrate. careful| +21800|627184|39697|5|25|27778.75|0.08|0.06|N|O|1997-10-13|1997-09-07|1997-11-07|NONE|RAIL|bove the express asymptotes sleep bravely e| +21801|603309|40846|1|17|20608.59|0.03|0.00|A|F|1993-01-08|1992-12-16|1993-01-31|DELIVER IN PERSON|FOB|he slyly silent packa| +21801|813764|38797|2|13|21810.36|0.06|0.04|A|F|1993-01-16|1993-01-09|1993-02-05|DELIVER IN PERSON|TRUCK|lieve carefully e| +21801|924736|24737|3|25|44017.25|0.05|0.02|R|F|1993-01-29|1993-01-14|1993-02-01|NONE|REG AIR|xpress deposits wake regular, spec| +21801|21315|46316|4|47|58106.57|0.01|0.08|A|F|1993-01-17|1993-01-17|1993-02-02|COLLECT COD|SHIP|after the furiously even deposit| +21801|237262|37263|5|8|9594.00|0.05|0.08|R|F|1993-01-13|1992-12-22|1993-02-06|TAKE BACK RETURN|SHIP|unusual packages wake r| +21801|645834|33371|6|13|23137.40|0.04|0.00|A|F|1993-01-04|1993-01-19|1993-01-14|TAKE BACK RETURN|FOB|riously slyly| +21802|940047|15084|1|3|3261.00|0.05|0.05|N|O|1996-02-23|1995-12-24|1996-03-15|TAKE BACK RETURN|AIR| special a| +21803|778172|40688|1|12|15001.68|0.06|0.01|N|O|1996-10-11|1996-10-09|1996-11-07|COLLECT COD|FOB|quietly according to the slyly| +21803|734468|34469|2|5|7512.15|0.00|0.07|N|O|1996-10-13|1996-11-14|1996-11-09|DELIVER IN PERSON|REG AIR|lar packages. stealthy deposits against t| +21803|193790|31300|3|26|48978.54|0.04|0.08|N|O|1996-10-20|1996-10-08|1996-10-21|COLLECT COD|MAIL| express waters nag closely. slyly special | +21803|18106|30607|4|16|16385.60|0.04|0.08|N|O|1997-01-07|1996-10-10|1997-01-27|NONE|FOB|nal, regular s| +21804|924244|24245|1|47|59605.40|0.10|0.03|N|O|1995-09-02|1995-09-25|1995-09-16|TAKE BACK RETURN|AIR|ests. final, unusual| +21804|757726|20242|2|21|37457.49|0.05|0.08|N|O|1995-09-15|1995-09-05|1995-10-03|DELIVER IN PERSON|AIR|ly even sauternes above the furiously| +21804|90584|40585|3|28|44088.24|0.00|0.00|N|O|1995-09-04|1995-09-16|1995-09-11|TAKE BACK RETURN|MAIL|as use against the express packages. quick| +21804|432315|32316|4|8|9978.32|0.00|0.06|N|O|1995-09-16|1995-09-30|1995-10-15|NONE|REG AIR|regular, unusual ac| +21804|907876|20395|5|50|94191.50|0.10|0.01|N|O|1995-11-15|1995-09-17|1995-11-24|COLLECT COD|SHIP|the pending requests. silent, ironic c| +21804|660917|35944|6|12|22534.56|0.05|0.08|N|O|1995-10-13|1995-09-02|1995-10-14|COLLECT COD|RAIL|slyly regular pin| +21805|157607|32614|1|38|63254.80|0.09|0.06|N|O|1997-09-26|1997-09-27|1997-10-15|TAKE BACK RETURN|SHIP|use quietly carefully unusual courts. slyly| +21805|898618|36170|2|40|64662.80|0.06|0.04|N|O|1997-07-16|1997-08-11|1997-07-29|COLLECT COD|FOB|refully ironic| +21805|60784|35787|3|37|64556.86|0.05|0.08|N|O|1997-09-04|1997-09-05|1997-09-25|COLLECT COD|TRUCK|ckages. accounts according to the c| +21805|592392|4904|4|40|59374.80|0.06|0.01|N|O|1997-07-04|1997-08-01|1997-07-20|TAKE BACK RETURN|AIR|sts lose fluffily carefully stealthy | +21805|321070|46083|5|49|53461.94|0.08|0.08|N|O|1997-07-28|1997-08-01|1997-07-31|COLLECT COD|REG AIR|e furiously ironic i| +21806|712308|37337|1|13|17163.51|0.08|0.03|N|O|1996-06-15|1996-06-13|1996-06-17|TAKE BACK RETURN|SHIP|out the slyly unusual excuses boost furious| +21806|748820|11335|2|40|74751.60|0.07|0.06|N|O|1996-05-27|1996-05-29|1996-06-08|TAKE BACK RETURN|TRUCK|attainments. carefully special pack| +21806|407038|44563|3|33|31185.33|0.01|0.02|N|O|1996-04-22|1996-06-13|1996-05-13|COLLECT COD|MAIL|uickly even requests sleep care| +21806|72133|22134|4|35|38679.55|0.07|0.04|N|O|1996-07-16|1996-05-15|1996-08-13|DELIVER IN PERSON|FOB|nusual packages. pending| +21806|338417|25936|5|11|16009.40|0.03|0.04|N|O|1996-04-17|1996-05-03|1996-05-14|DELIVER IN PERSON|SHIP|ly even deposits. theodolites wake| +21807|262163|24669|1|37|41630.55|0.05|0.01|N|O|1997-01-18|1996-12-02|1997-02-14|TAKE BACK RETURN|REG AIR|nding requests.| +21807|162378|37385|2|8|11522.96|0.02|0.08|N|O|1997-02-26|1996-12-25|1997-03-05|COLLECT COD|FOB|ecial ideas inte| +21807|84866|9869|3|32|59227.52|0.06|0.03|N|O|1997-02-12|1997-01-24|1997-03-04|DELIVER IN PERSON|AIR|ts affix furiously. closely even i| +21807|331411|31412|4|11|15866.40|0.04|0.01|N|O|1996-12-06|1996-12-17|1996-12-07|DELIVER IN PERSON|AIR|es according to the | +21807|17345|4846|5|9|11361.06|0.02|0.05|N|O|1997-01-01|1996-12-14|1997-01-22|COLLECT COD|SHIP|the regular reques| +21807|503861|41392|6|10|18648.40|0.02|0.05|N|O|1996-12-18|1996-12-27|1997-01-06|DELIVER IN PERSON|MAIL|lly pending requests. slyly express| +21832|915657|40694|1|38|63559.18|0.00|0.07|A|F|1993-06-22|1993-05-18|1993-06-24|NONE|RAIL|sts integrate quickly r| +21832|431470|18995|2|7|9810.15|0.08|0.05|A|F|1993-03-31|1993-03-27|1993-04-12|TAKE BACK RETURN|REG AIR|lly close, silent platelets. slyl| +21832|714066|14067|3|25|27000.75|0.00|0.08|A|F|1993-04-08|1993-05-09|1993-05-06|TAKE BACK RETURN|REG AIR| slyly unusual dep| +21832|306794|6795|4|34|61226.52|0.05|0.01|A|F|1993-03-02|1993-04-08|1993-03-11|TAKE BACK RETURN|FOB|ely. fluffily unusual de| +21833|307970|32983|1|20|39559.20|0.04|0.01|N|O|1998-08-10|1998-08-07|1998-08-14|COLLECT COD|RAIL|beans sleep | +21834|626912|1937|1|14|25744.32|0.06|0.01|R|F|1993-04-22|1993-02-27|1993-05-12|COLLECT COD|FOB|y final request| +21835|805009|5010|1|36|32902.56|0.07|0.02|N|O|1997-04-05|1997-06-17|1997-04-17|NONE|MAIL|nding packages. final, i| +21835|777966|15512|2|4|8175.72|0.06|0.05|N|O|1997-05-30|1997-05-27|1997-06-26|DELIVER IN PERSON|MAIL|riously special multiplie| +21835|267480|42491|3|26|37634.22|0.08|0.07|N|O|1997-06-12|1997-06-11|1997-07-10|NONE|TRUCK|ly ironic dolphins hinder. ev| +21835|532096|7117|4|15|16921.05|0.00|0.00|N|O|1997-04-18|1997-05-14|1997-04-30|TAKE BACK RETURN|AIR|ns. deposits| +21836|291767|41768|1|29|51003.75|0.03|0.08|N|O|1996-06-01|1996-08-15|1996-06-16|TAKE BACK RETURN|REG AIR|ously even t| +21836|723796|36311|2|37|67331.12|0.07|0.08|N|O|1996-08-13|1996-07-23|1996-08-26|TAKE BACK RETURN|MAIL|ully even theodolites according to the s| +21836|834530|22079|3|47|68831.03|0.00|0.05|N|O|1996-06-23|1996-08-10|1996-07-05|NONE|MAIL|y final, final instructions? s| +21836|934355|34356|4|36|50015.16|0.01|0.07|N|O|1996-06-01|1996-06-26|1996-06-24|NONE|FOB| instructions nag furiously final ac| +21836|695728|8242|5|31|53434.39|0.03|0.07|N|O|1996-08-25|1996-08-14|1996-09-10|NONE|TRUCK| pending waters. ironic asympt| +21836|89573|27077|6|39|60940.23|0.04|0.06|N|O|1996-08-10|1996-07-09|1996-08-31|TAKE BACK RETURN|MAIL|y along the quickly final requests. th| +21836|441087|41088|7|31|31869.86|0.09|0.06|N|O|1996-06-09|1996-08-05|1996-07-04|NONE|FOB|ans wake carefully express excuses. s| +21837|344448|6955|1|16|23878.88|0.00|0.04|N|O|1998-06-16|1998-07-02|1998-07-13|COLLECT COD|RAIL|g to the furiously silent account| +21837|127509|40012|2|6|9219.00|0.05|0.05|N|O|1998-07-22|1998-06-23|1998-08-17|TAKE BACK RETURN|FOB|lar frets. slyly ev| +21837|35833|23334|3|4|7075.32|0.07|0.01|N|O|1998-07-24|1998-07-18|1998-08-09|DELIVER IN PERSON|TRUCK| bold accounts. carefully final | +21837|231539|44044|4|8|11764.16|0.02|0.03|N|O|1998-07-05|1998-06-20|1998-07-22|COLLECT COD|TRUCK|ully after the regular ideas. blithely| +21837|469038|6566|5|45|45315.45|0.10|0.00|N|O|1998-07-05|1998-07-05|1998-07-21|DELIVER IN PERSON|REG AIR|old account| +21838|200181|37694|1|35|37840.95|0.00|0.01|A|F|1994-11-02|1994-12-02|1994-11-03|DELIVER IN PERSON|SHIP|s boost blithely. blithely pending account| +21838|435455|35456|2|17|23637.31|0.07|0.05|A|F|1995-01-04|1994-10-11|1995-01-10|DELIVER IN PERSON|RAIL|quickly express realms doze at t| +21838|678517|3544|3|4|5981.92|0.09|0.01|A|F|1994-10-25|1994-10-29|1994-11-04|COLLECT COD|SHIP|lly final accounts boost slyly | +21838|821972|34489|4|24|45454.32|0.05|0.08|A|F|1994-12-07|1994-10-13|1994-12-27|DELIVER IN PERSON|AIR|ies-- quickly regular Tiresias after th| +21838|870207|45242|5|27|31783.32|0.03|0.03|A|F|1994-12-10|1994-10-22|1994-12-21|DELIVER IN PERSON|AIR| unusual packages. furiously reg| +21839|35581|23082|1|32|48530.56|0.08|0.01|A|F|1995-02-06|1995-01-21|1995-02-18|COLLECT COD|MAIL| courts use about the doggedly re| +21839|8892|33893|2|33|59429.37|0.01|0.05|A|F|1995-03-01|1995-03-12|1995-03-11|NONE|REG AIR|ts detect blithely idly regula| +21839|439286|14303|3|7|8576.82|0.10|0.03|R|F|1994-12-29|1995-02-26|1994-12-31|TAKE BACK RETURN|AIR|ess, pending foxes haggle carefully thro| +21839|65814|28316|4|11|19577.91|0.06|0.00|A|F|1995-01-24|1995-01-22|1995-02-02|TAKE BACK RETURN|REG AIR|ts. carefully pe| +21864|179240|16750|1|2|2638.48|0.00|0.06|N|O|1995-07-06|1995-04-24|1995-08-05|DELIVER IN PERSON|AIR|ully ironic ideas. blithely regular ideas a| +21864|473768|36278|2|10|17417.40|0.07|0.08|A|F|1995-03-21|1995-04-28|1995-04-16|NONE|AIR|osits integrate blithely| +21864|608105|33130|3|27|27352.89|0.02|0.01|N|F|1995-06-12|1995-05-02|1995-07-06|DELIVER IN PERSON|MAIL|orbits after the packages | +21865|368200|18201|1|25|31704.75|0.08|0.07|N|O|1997-06-10|1997-04-29|1997-06-21|DELIVER IN PERSON|AIR|oss the courts cajol| +21865|321780|34287|2|10|18017.70|0.00|0.02|N|O|1997-03-14|1997-04-11|1997-04-11|TAKE BACK RETURN|MAIL|gs are careful| +21865|155342|5343|3|19|26549.46|0.10|0.03|N|O|1997-04-06|1997-05-19|1997-04-12|TAKE BACK RETURN|REG AIR|ticing requests nag accordin| +21865|822306|47339|4|41|50358.66|0.04|0.04|N|O|1997-03-23|1997-05-21|1997-04-18|DELIVER IN PERSON|REG AIR|. final asympto| +21866|807961|32994|1|26|48591.92|0.10|0.00|R|F|1992-05-20|1992-05-22|1992-06-03|DELIVER IN PERSON|REG AIR|tes wake furiously. silent excus| +21866|384155|34156|2|39|48326.46|0.07|0.08|A|F|1992-07-18|1992-04-27|1992-07-20|DELIVER IN PERSON|SHIP| blithely express packages use fur| +21867|64504|27006|1|17|24964.50|0.08|0.06|A|F|1993-09-17|1993-09-16|1993-10-03|NONE|TRUCK|unts boost fluff| +21868|135489|35490|1|48|73175.04|0.08|0.05|R|F|1992-06-07|1992-05-19|1992-06-30|COLLECT COD|TRUCK|e always even patterns. | +21868|147377|34884|2|33|47004.21|0.03|0.02|A|F|1992-05-13|1992-06-05|1992-05-28|TAKE BACK RETURN|RAIL|iously special i| +21868|959257|46815|3|29|38170.09|0.02|0.07|A|F|1992-07-11|1992-04-30|1992-07-21|COLLECT COD|AIR|to beans. carefully pending dolphi| +21869|251526|14032|1|41|60577.91|0.04|0.07|N|O|1996-12-02|1996-12-05|1996-12-14|DELIVER IN PERSON|REG AIR|around the quickly | +21869|389118|1626|2|18|21727.80|0.04|0.07|N|O|1996-11-13|1996-12-09|1996-12-06|DELIVER IN PERSON|TRUCK|blithely above the fluffily | +21869|893002|18037|3|38|37808.48|0.05|0.03|N|O|1997-01-31|1996-11-29|1997-02-16|COLLECT COD|AIR|hely requests. quickly bo| +21870|751079|13595|1|7|7910.28|0.03|0.02|N|O|1998-02-15|1998-03-19|1998-02-22|NONE|REG AIR| carefully. c| +21870|372395|9917|2|27|39619.26|0.02|0.03|N|O|1998-02-03|1998-02-06|1998-03-04|NONE|AIR|thely careful requests w| +21871|431582|19107|1|23|34811.88|0.04|0.01|A|F|1993-02-14|1992-12-15|1993-02-19|DELIVER IN PERSON|MAIL|e requests.| +21871|598617|11129|2|14|24018.26|0.04|0.02|A|F|1992-12-16|1992-12-21|1993-01-08|DELIVER IN PERSON|AIR|ong the special, regul| +21871|948490|23527|3|18|27692.10|0.00|0.02|R|F|1993-02-05|1992-12-18|1993-02-21|DELIVER IN PERSON|FOB|c pinto beans. blithely | +21871|259680|22186|4|44|72145.48|0.10|0.04|R|F|1993-02-05|1993-01-22|1993-02-19|COLLECT COD|RAIL| packages mold blithely blithely unusual t| +21871|440669|15686|5|39|62775.96|0.04|0.03|A|F|1992-12-02|1993-02-05|1992-12-17|NONE|MAIL|e the excuses a| +21896|149322|24327|1|25|34283.00|0.06|0.08|N|O|1996-12-30|1996-10-18|1997-01-12|TAKE BACK RETURN|MAIL|ual ideas was afte| +21896|646432|33969|2|9|12405.60|0.03|0.07|N|O|1996-09-27|1996-10-21|1996-10-01|COLLECT COD|MAIL|s maintain quickly above the quiet braids.| +21896|578454|28455|3|41|62829.63|0.05|0.07|N|O|1996-11-23|1996-11-13|1996-12-01|TAKE BACK RETURN|SHIP|deposits wake slyly carefully | +21897|298701|36217|1|30|50990.70|0.04|0.01|N|O|1997-01-12|1997-01-22|1997-02-01|TAKE BACK RETURN|FOB|unusual foxes are blithely iro| +21897|253050|3051|2|37|37112.48|0.00|0.02|N|O|1997-01-20|1997-02-10|1997-02-12|DELIVER IN PERSON|RAIL|according to the p| +21897|1983|1984|3|42|79169.16|0.01|0.08|N|O|1997-02-02|1997-01-20|1997-03-01|TAKE BACK RETURN|MAIL|sits. silent, quiet packages haggle careful| +21897|325377|25378|4|10|14023.60|0.02|0.03|N|O|1996-11-25|1996-12-20|1996-11-30|DELIVER IN PERSON|MAIL|deposits wake quickly special dependencie| +21897|608777|21290|5|13|21914.62|0.04|0.06|N|O|1996-12-29|1997-02-07|1997-01-10|DELIVER IN PERSON|RAIL|sts. furiously pendin| +21897|710781|23296|6|18|32251.50|0.10|0.04|N|O|1997-03-12|1997-02-11|1997-03-17|TAKE BACK RETURN|SHIP|lar attainments wake furiously| +21898|313186|705|1|18|21585.06|0.06|0.02|R|F|1994-12-06|1994-12-13|1994-12-10|NONE|REG AIR|r requests eat carefully unusual packages-| +21898|702753|15268|2|6|10534.32|0.02|0.04|A|F|1994-12-10|1994-12-28|1994-12-17|TAKE BACK RETURN|REG AIR|ly regular platelets wake| +21898|162813|37820|3|37|69404.97|0.05|0.03|R|F|1995-01-04|1994-12-25|1995-01-23|DELIVER IN PERSON|AIR|ake furiousl| +21898|383386|20908|4|3|4408.11|0.08|0.06|R|F|1995-02-03|1995-01-19|1995-02-19|COLLECT COD|REG AIR| theodolites run carefully car| +21899|140323|15328|1|14|19086.48|0.05|0.02|N|O|1998-04-27|1998-05-25|1998-05-22|TAKE BACK RETURN|RAIL|ag evenly final deposits. asymptotes i| +21899|399663|12171|2|42|74031.30|0.09|0.04|N|O|1998-06-03|1998-06-15|1998-06-21|NONE|TRUCK|ideas affix requests. | +21899|123544|11051|3|15|23513.10|0.01|0.08|N|O|1998-07-25|1998-07-07|1998-08-13|DELIVER IN PERSON|MAIL|ironic theodolites print| +21899|400106|37631|4|36|36218.88|0.02|0.03|N|O|1998-05-22|1998-07-08|1998-06-16|DELIVER IN PERSON|RAIL|tainments d| +21899|566539|41562|5|38|61009.38|0.00|0.02|N|O|1998-08-11|1998-06-23|1998-08-24|TAKE BACK RETURN|SHIP|blithely. regular, even packag| +21900|964908|39947|1|24|47348.64|0.09|0.04|N|O|1996-04-30|1996-03-29|1996-05-18|DELIVER IN PERSON|TRUCK|re slyly against the | +21900|196314|8818|2|10|14103.10|0.06|0.00|N|O|1996-04-01|1996-05-19|1996-04-25|COLLECT COD|SHIP|ully daring requests sleep regul| +21900|435494|35495|3|27|38595.69|0.04|0.04|N|O|1996-06-15|1996-04-13|1996-07-12|DELIVER IN PERSON|RAIL|nusual, unusual | +21901|631624|6649|1|26|40445.34|0.08|0.08|A|F|1994-04-25|1994-05-16|1994-04-28|NONE|AIR|epitaphs use slyly foxes-- silen| +21901|689721|39722|2|34|58163.46|0.01|0.02|A|F|1994-05-31|1994-05-20|1994-06-08|TAKE BACK RETURN|FOB|engage according to the final packages. | +21901|140257|27764|3|40|51890.00|0.01|0.02|R|F|1994-04-07|1994-04-15|1994-04-11|TAKE BACK RETURN|MAIL| mold quickl| +21901|285415|47921|4|33|46213.20|0.09|0.00|A|F|1994-04-14|1994-05-16|1994-05-11|NONE|MAIL|ackages. express, iro| +21901|957109|32148|5|25|29151.50|0.07|0.08|R|F|1994-05-10|1994-04-18|1994-05-22|TAKE BACK RETURN|AIR|bove the theodolites. car| +21901|114779|27282|6|2|3587.54|0.05|0.07|A|F|1994-05-03|1994-05-08|1994-05-22|NONE|SHIP|ckages nag bl| +21902|205339|30348|1|20|24886.40|0.01|0.00|N|O|1996-07-24|1996-07-07|1996-07-29|COLLECT COD|SHIP|er the caref| +21903|575092|12626|1|38|44348.66|0.01|0.07|A|F|1993-12-16|1993-12-28|1993-12-22|NONE|FOB|sly silent packages am| +21903|561348|23860|2|23|32414.36|0.05|0.08|R|F|1993-11-28|1993-12-04|1993-12-05|NONE|REG AIR|lent instructions detect by| +21903|565676|28188|3|4|6966.60|0.03|0.00|A|F|1993-12-22|1993-11-30|1994-01-20|NONE|MAIL|ss the quick| +21903|303279|15786|4|2|2564.52|0.05|0.05|R|F|1993-12-06|1994-01-08|1993-12-16|DELIVER IN PERSON|TRUCK|theodolites: doggedly close re| +21903|194031|6535|5|11|12375.33|0.08|0.01|R|F|1994-01-21|1993-12-09|1994-01-24|COLLECT COD|REG AIR|st. Tiresias sleep b| +21903|76454|13958|6|10|14304.50|0.04|0.00|A|F|1993-12-17|1993-11-26|1994-01-13|DELIVER IN PERSON|AIR|d the blithely ironic packag| +21903|958639|46197|7|31|52625.29|0.05|0.08|R|F|1994-01-16|1993-11-14|1994-02-05|COLLECT COD|FOB|ending, ironic requests wake alo| +21928|845166|20199|1|41|45555.92|0.01|0.08|A|F|1994-03-13|1994-03-05|1994-03-29|COLLECT COD|AIR|fully regular packages sleep furiously unus| +21928|692409|42410|2|45|63061.65|0.06|0.04|R|F|1994-03-26|1994-04-12|1994-04-19|NONE|TRUCK|lyly among the furiously| +21928|309669|9670|3|2|3357.30|0.10|0.05|A|F|1994-04-23|1994-03-14|1994-04-26|NONE|FOB|s. quickly pending pinto b| +21929|792721|5237|1|2|3627.38|0.05|0.08|R|F|1995-03-20|1995-03-31|1995-04-16|DELIVER IN PERSON|RAIL|aggle furiou| +21929|256470|43986|2|22|31382.12|0.09|0.06|R|F|1995-05-28|1995-05-15|1995-06-05|COLLECT COD|AIR|above the ironic, ev| +21929|478510|28511|3|9|13396.41|0.07|0.08|A|F|1995-03-07|1995-04-05|1995-03-19|COLLECT COD|REG AIR|ackages haggle | +21930|381293|43801|1|25|34357.00|0.00|0.07|R|F|1992-12-24|1993-01-10|1993-01-15|TAKE BACK RETURN|SHIP|slyly ironic a| +21930|388358|38359|2|2|2892.68|0.04|0.00|R|F|1993-02-27|1993-01-11|1993-03-22|DELIVER IN PERSON|MAIL|usual platelets nag besides the final, fi| +21930|131175|31176|3|46|55483.82|0.03|0.01|R|F|1993-01-15|1993-02-26|1993-02-03|COLLECT COD|TRUCK|its. ironic ideas about the ex| +21930|657401|7402|4|24|32600.88|0.03|0.01|R|F|1993-02-15|1993-01-17|1993-03-03|DELIVER IN PERSON|RAIL|luffily special deposits | +21930|924121|36640|5|20|22901.60|0.03|0.06|A|F|1993-01-30|1993-02-09|1993-01-31|DELIVER IN PERSON|REG AIR|inly. ironic, unusual r| +21931|741628|4143|1|40|66783.60|0.00|0.02|N|O|1996-07-13|1996-05-25|1996-08-02|TAKE BACK RETURN|REG AIR|regular packages. quickly| +21931|527348|14879|2|26|35758.32|0.08|0.00|N|O|1996-03-30|1996-05-26|1996-04-17|TAKE BACK RETURN|AIR| the excuses sleep slowly about the | +21932|549870|24891|1|50|95992.50|0.07|0.07|R|F|1992-12-06|1993-01-14|1992-12-20|NONE|TRUCK|foxes sleep thinly alongside of| +21932|658321|33348|2|6|7675.74|0.01|0.03|R|F|1993-02-20|1993-01-11|1993-02-22|TAKE BACK RETURN|FOB|fts use slyly accord| +21932|390615|28137|3|11|18761.60|0.04|0.00|A|F|1992-12-26|1993-02-05|1993-01-06|TAKE BACK RETURN|SHIP|ss ideas cajole carefull| +21932|60124|10125|4|34|36860.08|0.07|0.08|A|F|1993-01-19|1993-02-20|1993-02-15|COLLECT COD|AIR|sts play above the unusual, regul| +21932|503154|15665|5|24|27771.12|0.03|0.01|A|F|1992-12-24|1993-01-12|1993-01-14|TAKE BACK RETURN|TRUCK|, regular pinto beans use s| +21933|926822|14377|1|23|42521.94|0.02|0.02|N|O|1997-09-29|1997-11-15|1997-10-24|DELIVER IN PERSON|TRUCK|e slyly carefully | +21934|600498|499|1|12|16781.52|0.07|0.00|A|F|1993-06-20|1993-09-07|1993-07-06|DELIVER IN PERSON|MAIL|hs according to the slyly final court| +21934|568665|43688|2|26|45074.64|0.07|0.08|R|F|1993-08-12|1993-07-31|1993-09-01|DELIVER IN PERSON|MAIL|s. always express p| +21934|546714|46715|3|34|59863.46|0.05|0.06|A|F|1993-08-04|1993-09-07|1993-08-28|DELIVER IN PERSON|AIR|xcuses. furiously sly platelets hag| +21934|619455|6992|4|29|39858.18|0.00|0.01|A|F|1993-08-15|1993-08-19|1993-08-23|NONE|FOB| are furiously| +21934|166485|41492|5|37|57404.76|0.10|0.02|A|F|1993-06-29|1993-08-16|1993-07-20|DELIVER IN PERSON|RAIL|instructions after the blithely| +21934|105507|18010|6|44|66550.00|0.05|0.08|R|F|1993-07-07|1993-08-11|1993-07-27|TAKE BACK RETURN|FOB|y final packages. carefully regular requ| +21935|775308|25309|1|32|44264.64|0.03|0.01|N|O|1995-09-22|1995-09-22|1995-10-19|NONE|FOB|against the idl| +21935|596192|21215|2|16|20610.72|0.05|0.06|N|O|1995-08-18|1995-09-11|1995-09-07|NONE|MAIL|posits. ironic instructions use i| +21935|197235|22242|3|35|46628.05|0.06|0.04|N|O|1995-09-19|1995-08-21|1995-09-22|DELIVER IN PERSON|REG AIR|inal, even pinto beans | +21960|839724|14757|1|41|68210.88|0.03|0.05|A|F|1993-05-22|1993-07-20|1993-06-12|DELIVER IN PERSON|MAIL| packages. dolphins sleep. qui| +21960|234507|47012|2|9|12973.41|0.10|0.03|R|F|1993-05-15|1993-06-16|1993-06-07|TAKE BACK RETURN|REG AIR|uickly across| +21961|711617|36646|1|15|24428.70|0.05|0.04|A|F|1994-06-10|1994-05-24|1994-06-22|DELIVER IN PERSON|AIR|g packages use| +21962|330332|5345|1|23|31333.36|0.09|0.04|N|O|1997-03-10|1997-03-04|1997-03-20|TAKE BACK RETURN|REG AIR|p blithely furiou| +21962|885087|35088|2|48|51457.92|0.07|0.02|N|O|1997-02-02|1997-02-17|1997-02-25|COLLECT COD|TRUCK|ithes integrate flu| +21962|651687|14201|3|4|6554.60|0.04|0.07|N|O|1997-02-14|1997-03-18|1997-03-13|TAKE BACK RETURN|TRUCK|lar deposits | +21962|889091|1609|4|26|28081.30|0.09|0.00|N|O|1997-04-28|1997-03-05|1997-05-15|DELIVER IN PERSON|RAIL| the furious| +21963|587234|24768|1|36|47563.56|0.06|0.08|N|O|1997-10-04|1997-11-05|1997-10-20|NONE|AIR|e. carefully silent ideas sleep | +21963|638246|25783|2|18|21315.78|0.09|0.06|N|O|1997-09-25|1997-12-01|1997-10-11|TAKE BACK RETURN|REG AIR|he final packa| +21963|368|25369|3|50|63418.00|0.01|0.02|N|O|1997-09-21|1997-10-18|1997-10-19|DELIVER IN PERSON|MAIL|sly even packages. slyly fina| +21963|173652|36156|4|3|5176.95|0.03|0.00|N|O|1997-10-27|1997-11-05|1997-11-13|TAKE BACK RETURN|AIR|y bold asymptotes are carefully about the | +21964|181587|31588|1|22|36708.76|0.10|0.08|A|F|1994-12-24|1995-01-09|1995-01-15|DELIVER IN PERSON|RAIL|theodolites kindle.| +21965|658530|21044|1|9|13396.50|0.10|0.05|R|F|1993-03-07|1993-03-29|1993-03-15|TAKE BACK RETURN|MAIL|bold waters use quickly. pending plat| +21966|617539|17540|1|25|36412.50|0.04|0.00|N|O|1997-02-24|1997-04-21|1997-03-12|DELIVER IN PERSON|AIR|. fluffily ironic accounts cajole| +21966|961696|24216|2|4|7030.60|0.08|0.08|N|O|1997-04-09|1997-03-23|1997-04-26|DELIVER IN PERSON|FOB|ut the blithely regular courts. quickl| +21966|208774|33783|3|7|11779.32|0.01|0.08|N|O|1997-03-13|1997-04-12|1997-03-23|COLLECT COD|REG AIR|about the dari| +21966|858374|33409|4|46|61287.18|0.10|0.03|N|O|1997-03-03|1997-03-28|1997-03-24|NONE|MAIL|ar, express requests are car| +21966|678255|40769|5|38|46862.36|0.05|0.04|N|O|1997-03-27|1997-02-26|1997-04-19|TAKE BACK RETURN|MAIL|gular instructions.| +21967|646837|34374|1|37|66000.60|0.04|0.02|R|F|1992-02-29|1992-03-16|1992-03-10|TAKE BACK RETURN|AIR|ithely regular excuses: closely pe| +21967|388882|13897|2|16|31533.92|0.06|0.00|A|F|1992-05-01|1992-03-09|1992-05-11|DELIVER IN PERSON|AIR|efully special, ironic theo| +21992|7634|7635|1|49|75539.87|0.06|0.04|A|F|1993-07-30|1993-09-23|1993-08-28|COLLECT COD|REG AIR|s are furiously. foxes doubt quickly exp| +21992|289955|27471|2|26|50568.44|0.01|0.01|R|F|1993-08-14|1993-09-14|1993-08-15|DELIVER IN PERSON|REG AIR| final deposits| +21993|7613|32614|1|39|59303.79|0.07|0.06|N|O|1997-08-10|1997-07-03|1997-08-28|DELIVER IN PERSON|FOB|y regular dependencies | +21993|943012|30567|2|23|24264.31|0.00|0.08|N|O|1997-06-04|1997-07-16|1997-06-30|TAKE BACK RETURN|AIR|foxes was. asymptotes affix furiously?| +21993|194624|32134|3|8|13748.96|0.08|0.02|N|O|1997-08-19|1997-06-14|1997-09-18|COLLECT COD|RAIL|arefully iron| +21994|519776|32287|1|34|61055.50|0.02|0.08|R|F|1993-10-08|1993-10-28|1993-10-20|TAKE BACK RETURN|AIR|special excuses wake across| +21995|938117|38118|1|42|48512.94|0.09|0.00|R|F|1992-05-30|1992-06-26|1992-06-21|TAKE BACK RETURN|RAIL|al requests haggle after the slyly silent| +21995|915832|40869|2|8|14782.32|0.02|0.00|A|F|1992-05-24|1992-06-16|1992-06-02|COLLECT COD|MAIL|ckly bold requests; theodolites accor| +21995|375383|398|3|42|61251.54|0.05|0.04|A|F|1992-06-19|1992-06-24|1992-07-01|DELIVER IN PERSON|RAIL|se quietly silent warthogs. qu| +21995|47690|35191|4|1|1637.69|0.07|0.03|R|F|1992-08-27|1992-07-05|1992-08-31|NONE|AIR|ly stealthy requests nag furiously. blithe| +21995|515553|15554|5|50|78426.50|0.01|0.06|A|F|1992-05-17|1992-07-08|1992-06-05|NONE|SHIP|eposits. quickly pending dolphins s| +21995|899196|49197|6|45|53781.75|0.06|0.03|A|F|1992-08-23|1992-07-03|1992-09-21|TAKE BACK RETURN|FOB|ously regular pinto beans us| +21995|776807|14353|7|22|41442.94|0.02|0.03|R|F|1992-06-11|1992-06-12|1992-06-30|DELIVER IN PERSON|TRUCK|lar deposits are carefully alo| +21996|784869|22415|1|28|54707.24|0.10|0.06|N|O|1996-01-14|1995-11-23|1996-01-28|DELIVER IN PERSON|TRUCK|gular deposits nag alongside of the qu| +21997|557270|44804|1|23|30526.75|0.07|0.06|N|O|1997-10-16|1997-10-11|1997-11-07|TAKE BACK RETURN|TRUCK|unusual, silent pains s| +21997|30004|30005|2|16|14944.00|0.10|0.05|N|O|1997-10-28|1997-10-27|1997-11-12|DELIVER IN PERSON|RAIL|posits cajole fina| +21997|261753|24259|3|8|13717.92|0.09|0.02|N|O|1997-11-20|1997-11-28|1997-11-29|NONE|AIR|uests wake across the slyly bold e| +21997|275463|37969|4|40|57538.00|0.10|0.03|N|O|1997-12-04|1997-10-22|1997-12-29|NONE|TRUCK|riously. reg| +21997|698198|10712|5|22|26315.52|0.00|0.03|N|O|1997-10-04|1997-11-05|1997-10-12|NONE|TRUCK|refully. quickly bol| +21997|605276|30301|6|45|53155.80|0.02|0.08|N|O|1997-12-22|1997-11-05|1997-12-28|NONE|SHIP|re packages| +21998|47326|47327|1|14|17826.48|0.10|0.00|A|F|1992-10-09|1992-11-04|1992-10-13|NONE|TRUCK| express, ironic notornis after | +21998|406759|31776|2|16|26651.68|0.09|0.01|R|F|1992-11-12|1992-10-07|1992-12-01|COLLECT COD|FOB|have to use i| +21998|394039|6547|3|13|14729.26|0.09|0.04|R|F|1992-11-11|1992-09-24|1992-12-02|NONE|FOB|s. even, final courts hag| +21998|598621|11133|4|10|17196.00|0.00|0.04|R|F|1992-10-11|1992-10-27|1992-10-29|COLLECT COD|REG AIR|deas. careful pac| +21998|10897|10898|5|26|47005.14|0.06|0.08|R|F|1992-09-29|1992-10-31|1992-10-17|COLLECT COD|RAIL|blithely ironic requests may dazzle fluff| +21999|593139|18162|1|22|27106.42|0.01|0.05|A|F|1994-04-28|1994-05-01|1994-05-03|COLLECT COD|TRUCK|excuses detect carefull| +21999|871193|46228|2|47|54715.05|0.05|0.08|R|F|1994-06-08|1994-04-26|1994-06-18|DELIVER IN PERSON|RAIL|iously even ideas sleep blithel| +21999|129874|4879|3|8|15230.96|0.10|0.01|A|F|1994-05-13|1994-05-07|1994-05-23|DELIVER IN PERSON|RAIL| requests. pa| +21999|780202|42718|4|38|48722.46|0.04|0.00|A|F|1994-04-11|1994-04-07|1994-04-25|NONE|SHIP|usly alongside of the furiously fin| +21999|845706|8223|5|17|28078.22|0.09|0.01|A|F|1994-02-15|1994-03-20|1994-02-28|NONE|RAIL|nal dinos | +21999|774950|12496|6|40|80996.80|0.07|0.07|R|F|1994-04-08|1994-03-24|1994-04-26|DELIVER IN PERSON|SHIP|gular packages boost deposits. packages m| +22024|360312|47834|1|25|34307.50|0.10|0.06|A|F|1993-02-24|1993-02-10|1993-03-03|TAKE BACK RETURN|FOB|gular depen| +22024|753580|16096|2|42|68609.10|0.05|0.07|A|F|1993-03-25|1993-02-16|1993-04-15|NONE|REG AIR|ick gifts.| +22025|96117|21120|1|48|53429.28|0.08|0.07|R|F|1992-08-24|1992-07-23|1992-09-12|DELIVER IN PERSON|RAIL|usual accounts. furiously silen| +22026|873369|48404|1|15|20134.80|0.07|0.04|N|O|1995-07-27|1995-05-01|1995-08-12|COLLECT COD|TRUCK|accounts x-ray| +22026|707710|7711|2|42|72142.56|0.00|0.06|A|F|1995-05-24|1995-05-17|1995-06-01|COLLECT COD|REG AIR|nt pinto beans. final, regular f| +22026|468362|18363|3|26|34588.84|0.05|0.01|N|O|1995-06-26|1995-05-02|1995-07-05|DELIVER IN PERSON|REG AIR|ions haggle across the slyly sile| +22026|749468|24497|4|18|27313.74|0.07|0.08|N|O|1995-07-26|1995-06-10|1995-08-05|NONE|TRUCK|ays. unusual pinto beans nag doggedly| +22026|302416|27429|5|46|65246.40|0.02|0.01|A|F|1995-06-07|1995-05-23|1995-06-15|COLLECT COD|RAIL|ests? slyly ironic instructions against | +22027|576865|39377|1|33|64080.72|0.01|0.06|N|O|1996-09-01|1996-09-06|1996-09-02|DELIVER IN PERSON|RAIL|s. furiously pending courts above| +22028|935512|35513|1|32|49519.04|0.08|0.08|R|F|1992-11-01|1992-11-01|1992-11-17|TAKE BACK RETURN|AIR| asymptotes wake according to the fin| +22028|139200|26707|2|39|48328.80|0.00|0.08|A|F|1992-08-25|1992-10-25|1992-09-01|DELIVER IN PERSON|REG AIR|ackages detect furiously | +22028|519697|7228|3|10|17166.70|0.10|0.00|A|F|1992-12-04|1992-09-30|1992-12-07|DELIVER IN PERSON|SHIP|escapades haggle regularly sl| +22028|545704|33235|4|28|48991.04|0.05|0.03|R|F|1992-10-05|1992-10-18|1992-10-30|DELIVER IN PERSON|MAIL|nal accounts sleep never. reg| +22028|634292|9317|5|14|17167.64|0.09|0.03|R|F|1992-10-14|1992-10-06|1992-11-10|DELIVER IN PERSON|FOB|ts sleep slyly. care| +22028|544843|19864|6|11|20766.02|0.01|0.04|A|F|1992-08-26|1992-11-02|1992-09-14|TAKE BACK RETURN|REG AIR|ts doubt care| +22028|166224|28728|7|31|39996.82|0.02|0.01|A|F|1992-11-03|1992-09-29|1992-11-30|NONE|FOB|he slyly pending deposits. unus| +22029|712010|37039|1|16|16351.68|0.03|0.00|N|O|1998-01-17|1998-01-21|1998-01-29|TAKE BACK RETURN|MAIL|s wake carefully. furiously pe| +22029|743849|6364|2|25|47320.25|0.06|0.00|N|O|1998-03-02|1998-01-10|1998-03-24|COLLECT COD|FOB| theodolites cajole slyly furiously even | +22029|859982|22500|3|47|91271.18|0.02|0.05|N|O|1997-12-15|1997-12-18|1997-12-30|TAKE BACK RETURN|MAIL|ts. excuses lose. ironic dep| +22029|712984|527|4|33|65899.35|0.10|0.06|N|O|1998-02-15|1998-01-14|1998-03-02|DELIVER IN PERSON|SHIP|lyly special ideas| +22030|183049|20559|1|24|27168.96|0.09|0.08|A|F|1993-10-08|1993-08-11|1993-10-24|COLLECT COD|FOB|s mold. furiously express requests | +22030|497076|22095|2|33|35410.65|0.06|0.04|A|F|1993-06-18|1993-08-21|1993-07-09|NONE|MAIL|al grouches. q| +22030|354037|16545|3|18|19638.36|0.03|0.00|A|F|1993-07-29|1993-08-21|1993-08-13|TAKE BACK RETURN|SHIP|s must have to are blithely.| +22030|289764|27280|4|17|29813.75|0.07|0.05|A|F|1993-09-11|1993-08-26|1993-09-19|DELIVER IN PERSON|REG AIR| final ideas. unusual, ironic pin| +22030|55288|17790|5|44|54704.32|0.00|0.07|R|F|1993-09-21|1993-09-06|1993-10-10|DELIVER IN PERSON|AIR|ously final asympt| +22030|214508|2021|6|21|29872.29|0.04|0.05|R|F|1993-09-06|1993-07-19|1993-10-06|NONE|FOB| blithely? quickly | +22031|16402|41403|1|33|43507.20|0.00|0.08|R|F|1995-05-07|1995-06-06|1995-05-20|TAKE BACK RETURN|FOB|e carefully blithely ironic pinto beans. pl| +22031|662398|37425|2|14|19045.04|0.07|0.02|N|O|1995-08-11|1995-05-18|1995-09-09|COLLECT COD|MAIL|lly regular packages; c| +22056|609818|47355|1|47|81205.66|0.08|0.07|A|F|1994-11-03|1994-09-17|1994-11-14|DELIVER IN PERSON|AIR| after the blithely ir| +22056|204633|29642|2|12|18451.44|0.04|0.08|A|F|1994-08-28|1994-10-05|1994-09-20|COLLECT COD|MAIL| slyly above the even a| +22056|264850|39861|3|26|47185.84|0.02|0.01|R|F|1994-11-24|1994-11-06|1994-12-23|TAKE BACK RETURN|REG AIR|s the furiously fin| +22056|331595|19114|4|1|1626.58|0.09|0.01|R|F|1994-11-29|1994-11-02|1994-12-27|TAKE BACK RETURN|RAIL|es haggle. ideas are along the furiously | +22056|116884|29387|5|28|53224.64|0.10|0.04|A|F|1994-09-17|1994-10-13|1994-10-13|NONE|AIR|ajole furi| +22056|466402|3930|6|22|30104.36|0.04|0.07|A|F|1994-09-17|1994-10-29|1994-09-28|TAKE BACK RETURN|RAIL|arefully ironic accounts. packages are| +22057|796603|34149|1|15|25493.55|0.02|0.06|N|O|1996-06-22|1996-07-08|1996-07-04|COLLECT COD|FOB| silent accounts haggle accord| +22057|502641|27662|2|12|19723.44|0.08|0.02|N|O|1996-09-13|1996-07-20|1996-10-07|COLLECT COD|SHIP|are quickly about the| +22057|872301|34819|3|17|21645.42|0.04|0.08|N|O|1996-08-07|1996-08-17|1996-08-13|COLLECT COD|FOB|dolites. regular excuses are fluffily ag| +22057|762510|56|4|12|18869.76|0.03|0.05|N|O|1996-06-17|1996-08-29|1996-06-23|COLLECT COD|AIR|. deposits about the fluffily bo| +22057|500862|25883|5|5|9314.20|0.06|0.08|N|O|1996-08-03|1996-08-25|1996-08-30|NONE|TRUCK|egrate furiously. bl| +22057|972127|9685|6|18|21583.44|0.08|0.05|N|O|1996-09-08|1996-08-18|1996-09-24|DELIVER IN PERSON|RAIL| requests cajole carefully blithely ev| +22057|535177|10198|7|27|32728.05|0.07|0.03|N|O|1996-07-17|1996-07-13|1996-07-28|DELIVER IN PERSON|TRUCK|dependencies do nag carefully even req| +22058|703735|28764|1|44|76502.80|0.06|0.00|A|F|1993-07-01|1993-08-31|1993-07-29|NONE|SHIP|grate carefully above the exp| +22059|401183|26200|1|46|49871.36|0.08|0.03|R|F|1994-02-09|1994-02-25|1994-02-21|COLLECT COD|RAIL|es about the furiously regular pinto beans | +22059|674840|24841|2|34|61703.54|0.02|0.02|R|F|1994-03-18|1994-04-24|1994-04-11|TAKE BACK RETURN|RAIL|its. stealthily iron| +22059|24702|37203|3|41|66694.70|0.01|0.00|A|F|1994-03-07|1994-02-24|1994-04-06|DELIVER IN PERSON|SHIP|ctions believe carefully according to the| +22059|154282|41792|4|18|24053.04|0.00|0.05|A|F|1994-04-28|1994-04-01|1994-05-03|DELIVER IN PERSON|SHIP|ts. carefully silent deposits are ab| +22059|896|38397|5|25|44922.25|0.06|0.00|R|F|1994-04-21|1994-04-08|1994-05-01|COLLECT COD|FOB| deposits. pending requests imp| +22059|55712|18214|6|5|8338.55|0.03|0.08|R|F|1994-02-22|1994-04-11|1994-03-10|DELIVER IN PERSON|AIR| fluffily ironic orbits use| +22060|47992|22993|1|29|56259.71|0.10|0.06|A|F|1992-05-23|1992-05-10|1992-06-12|NONE|FOB|nding theodolites nag. ins| +22060|597184|47185|2|20|25623.20|0.10|0.07|R|F|1992-04-11|1992-03-23|1992-05-03|DELIVER IN PERSON|SHIP|he patterns are never pac| +22060|858886|8887|3|9|16603.56|0.08|0.04|A|F|1992-04-02|1992-03-22|1992-05-01|COLLECT COD|TRUCK| regular, pending accounts sleep blithely| +22060|290087|40088|4|24|25849.68|0.04|0.07|R|F|1992-04-03|1992-05-17|1992-04-05|TAKE BACK RETURN|TRUCK|xes nag about the slyly special instructi| +22060|480926|5945|5|44|83903.60|0.05|0.01|A|F|1992-03-27|1992-04-04|1992-03-31|DELIVER IN PERSON|AIR|telets. furiously express idea| +22061|679008|29009|1|7|6908.79|0.04|0.04|R|F|1993-05-19|1993-05-07|1993-06-03|DELIVER IN PERSON|FOB|riously regular deposits impress furiously | +22061|82501|45003|2|29|43021.50|0.05|0.05|R|F|1993-06-15|1993-05-15|1993-06-20|DELIVER IN PERSON|REG AIR|s sleep silent| +22061|585610|35611|3|50|84779.50|0.05|0.07|R|F|1993-05-14|1993-05-19|1993-05-29|DELIVER IN PERSON|TRUCK|sits promise furiously| +22061|331762|6775|4|5|8968.75|0.04|0.05|R|F|1993-04-14|1993-05-16|1993-05-08|COLLECT COD|MAIL|refully. expres| +22062|808540|8541|1|21|30418.50|0.00|0.04|R|F|1993-06-14|1993-05-19|1993-07-06|DELIVER IN PERSON|FOB|the thinly unusual th| +22062|123986|48991|2|34|68339.32|0.10|0.05|A|F|1993-05-01|1993-05-07|1993-05-22|NONE|SHIP|furiously | +22062|822008|47041|3|47|43708.12|0.02|0.03|A|F|1993-04-07|1993-05-02|1993-04-15|COLLECT COD|REG AIR|ntain carefully. pe| +22062|481791|19319|4|25|44319.25|0.06|0.06|A|F|1993-03-20|1993-04-10|1993-04-18|DELIVER IN PERSON|TRUCK|furiously f| +22062|448841|48842|5|27|48325.14|0.08|0.01|R|F|1993-03-27|1993-04-08|1993-04-02|DELIVER IN PERSON|RAIL|ven requests. carefully regular instru| +22063|571892|21893|1|1|1963.87|0.08|0.06|N|O|1995-07-20|1995-08-07|1995-07-25|TAKE BACK RETURN|REG AIR|ironic accounts: car| +22063|785942|35943|2|45|91255.95|0.01|0.01|N|O|1995-07-01|1995-06-20|1995-07-18|COLLECT COD|FOB| quickly ironic p| +22088|746747|21776|1|40|71748.40|0.08|0.03|A|F|1993-12-15|1993-11-08|1993-12-30|DELIVER IN PERSON|REG AIR|ronic ideas thrash blithely alongside o| +22088|564112|26624|2|28|32930.52|0.06|0.00|A|F|1993-10-03|1993-11-02|1993-10-30|COLLECT COD|FOB|ngside of the furiously unusual | +22088|23160|23161|3|43|46575.88|0.01|0.05|R|F|1993-10-24|1993-11-20|1993-10-26|TAKE BACK RETURN|MAIL|ckly regular asympto| +22089|954393|29432|1|46|66578.10|0.09|0.00|A|F|1992-10-30|1992-12-21|1992-11-16|TAKE BACK RETURN|MAIL|essly among the slyly unusual ideas. iron| +22089|475151|25152|2|11|12387.43|0.02|0.08|R|F|1992-11-17|1992-12-06|1992-11-22|TAKE BACK RETURN|SHIP|use slyly. slyly regular foxes use furiou| +22089|846294|33843|3|47|58291.75|0.10|0.02|A|F|1992-12-18|1992-12-02|1993-01-01|NONE|TRUCK|cajole. ideas haggle blithely among| +22089|656852|19366|4|39|70543.98|0.07|0.05|A|F|1992-11-15|1992-11-05|1992-11-16|COLLECT COD|REG AIR|ajole quickly pending ideas. special accou| +22090|706551|31580|1|14|21805.28|0.05|0.08|N|O|1996-04-20|1996-04-21|1996-05-16|DELIVER IN PERSON|AIR|le blithely bold, final| +22090|996003|8523|2|7|7692.72|0.10|0.04|N|O|1996-03-03|1996-04-18|1996-03-07|DELIVER IN PERSON|RAIL|ajole carefully| +22091|240048|15057|1|16|15808.48|0.05|0.03|N|O|1996-02-17|1996-03-13|1996-03-12|TAKE BACK RETURN|FOB|s boost ironic | +22091|482459|19987|2|37|53332.91|0.00|0.01|N|O|1996-01-09|1996-02-26|1996-02-04|DELIVER IN PERSON|TRUCK| ironic courts. pending, even warh| +22091|687202|24742|3|17|20215.89|0.03|0.05|N|O|1996-02-15|1996-03-18|1996-03-03|DELIVER IN PERSON|MAIL|ular, regular packages nag furiously. care| +22092|172462|47469|1|35|53706.10|0.07|0.08|R|F|1995-03-20|1995-03-23|1995-03-27|NONE|SHIP|uests dazzle quickly. sl| +22092|565933|28445|2|37|73959.67|0.02|0.02|A|F|1995-04-09|1995-04-08|1995-05-06|TAKE BACK RETURN|RAIL|ngside of the expr| +22092|628177|3202|3|11|12156.54|0.10|0.02|A|F|1995-05-26|1995-04-02|1995-05-29|TAKE BACK RETURN|SHIP|ly even deposits. carefully pen| +22092|764986|27502|4|40|82038.00|0.09|0.01|A|F|1995-03-08|1995-04-21|1995-03-09|TAKE BACK RETURN|TRUCK|l dependencies haggle slyly slyl| +22092|111131|23634|5|7|7994.91|0.03|0.04|A|F|1995-05-13|1995-04-22|1995-05-15|COLLECT COD|REG AIR|he special ideas. requests| +22092|773441|35957|6|43|65119.63|0.01|0.01|R|F|1995-04-18|1995-03-12|1995-04-24|TAKE BACK RETURN|TRUCK|uffily according to the quickly final noto| +22093|852529|40081|1|45|66666.60|0.03|0.00|N|O|1996-12-06|1996-10-05|1996-12-24|COLLECT COD|SHIP|its haggle after the express requests:| +22093|446857|46858|2|38|68545.54|0.00|0.02|N|O|1996-12-28|1996-10-24|1997-01-15|TAKE BACK RETURN|MAIL|y fluffily final packages. blit| +22093|321608|21609|3|33|53776.47|0.08|0.07|N|O|1996-12-07|1996-10-21|1996-12-30|COLLECT COD|REG AIR|e quickly regular d| +22093|251876|26887|4|2|3655.72|0.03|0.06|N|O|1996-10-22|1996-10-08|1996-11-17|NONE|TRUCK|nic courts a| +22094|692524|17551|1|44|66725.56|0.03|0.03|N|O|1995-12-17|1995-10-28|1995-12-27|TAKE BACK RETURN|FOB|arefully furiously express instructions. ir| +22094|234221|34222|2|41|47363.61|0.10|0.06|N|O|1995-11-25|1995-10-25|1995-12-25|NONE|TRUCK|atelets nag never. unusual deposits| +22095|809865|34898|1|35|62118.70|0.04|0.06|N|O|1997-05-02|1997-06-13|1997-05-23|COLLECT COD|MAIL|ole. carefully fina| +22095|385577|23099|2|19|31588.64|0.06|0.05|N|O|1997-07-06|1997-06-20|1997-08-05|TAKE BACK RETURN|MAIL|ter the regular accounts hagg| +22120|877770|2805|1|8|13981.84|0.00|0.04|N|O|1997-03-11|1997-04-09|1997-04-04|NONE|SHIP|y ironic packages. furiously final pinto| +22120|668003|18004|2|46|44664.62|0.07|0.01|N|O|1997-05-06|1997-05-13|1997-05-15|TAKE BACK RETURN|REG AIR|ly: ironic | +22120|113143|650|3|35|40464.90|0.00|0.07|N|O|1997-04-28|1997-04-16|1997-05-13|TAKE BACK RETURN|RAIL|kages along the furiou| +22120|584562|9585|4|32|52689.28|0.05|0.07|N|O|1997-05-09|1997-04-20|1997-05-15|NONE|REG AIR| special courts throughout | +22120|718761|43790|5|1|1779.73|0.07|0.03|N|O|1997-03-22|1997-04-09|1997-04-09|NONE|AIR|mong the carefully regular| +22120|207631|32640|6|13|20002.06|0.00|0.04|N|O|1997-03-03|1997-03-30|1997-03-21|NONE|RAIL|ctions. even theodolites boost| +22120|648887|11400|7|41|75269.85|0.02|0.02|N|O|1997-06-03|1997-05-06|1997-07-03|TAKE BACK RETURN|TRUCK|nusual, regular ideas above the blith| +22121|833383|45900|1|50|65817.00|0.10|0.06|N|O|1997-01-31|1996-12-30|1997-03-01|NONE|MAIL|s boost; flu| +22121|656528|19042|2|30|44534.70|0.10|0.02|N|O|1996-10-31|1996-12-29|1996-11-19|COLLECT COD|FOB| beans. slyly regular orbits print car| +22121|262889|37900|3|50|92593.50|0.03|0.02|N|O|1997-02-24|1997-01-03|1997-03-18|TAKE BACK RETURN|REG AIR| quickly across the excuses. | +22121|371601|46616|4|9|15053.31|0.02|0.08|N|O|1996-11-25|1996-12-22|1996-12-20|COLLECT COD|AIR|ar, unusual request| +22121|481285|43795|5|8|10130.08|0.03|0.05|N|O|1996-10-29|1996-12-29|1996-10-31|DELIVER IN PERSON|MAIL|lites. furiously special packag| +22121|945694|45695|6|16|27834.40|0.10|0.03|N|O|1996-12-29|1997-01-17|1997-01-13|NONE|RAIL|lly regular asymptotes. accou| +22122|254664|17170|1|7|11330.55|0.03|0.00|N|O|1997-10-31|1997-11-14|1997-11-20|DELIVER IN PERSON|FOB|arefully special requests are. blithe| +22122|128461|3466|2|44|65536.24|0.04|0.01|N|O|1997-11-07|1997-11-18|1997-11-22|COLLECT COD|SHIP|ully according to th| +22122|34442|34443|3|16|22023.04|0.01|0.05|N|O|1997-10-13|1997-10-06|1997-11-12|TAKE BACK RETURN|RAIL|cally express| +22122|857297|19815|4|33|41390.25|0.05|0.03|N|O|1997-12-10|1997-09-25|1997-12-24|COLLECT COD|AIR|ole carefully. fluffily even fray| +22123|36159|36160|1|36|39425.40|0.01|0.00|N|O|1996-01-14|1996-01-14|1996-01-30|COLLECT COD|TRUCK|ts sleep slyly across the gif| +22123|710608|10609|2|39|63124.23|0.04|0.00|N|O|1995-10-31|1996-01-07|1995-11-24|TAKE BACK RETURN|FOB|cial pains. even accounts across th| +22123|180686|18196|3|12|21200.16|0.10|0.03|N|O|1995-12-03|1995-12-28|1996-01-02|NONE|FOB| can wake fluffily along the requests. sl| +22123|779708|4739|4|48|85808.16|0.01|0.06|N|O|1995-12-15|1995-12-21|1995-12-23|TAKE BACK RETURN|REG AIR|e even platelets. quic| +22123|545239|45240|5|13|16694.73|0.03|0.03|N|O|1995-11-24|1995-12-14|1995-12-15|DELIVER IN PERSON|RAIL|refully pending accounts x-ray according t| +22123|822214|47247|6|17|19314.89|0.00|0.08|N|O|1995-12-10|1996-01-11|1996-01-01|COLLECT COD|TRUCK|around the closely final foxes| +22124|579347|29348|1|29|41363.28|0.07|0.01|N|O|1996-07-29|1996-06-24|1996-08-19|TAKE BACK RETURN|TRUCK| even requests promise quickly. fluff| +22125|613280|13281|1|38|45343.50|0.09|0.07|R|F|1993-07-18|1993-08-20|1993-07-27|TAKE BACK RETURN|FOB|ironic, even packages wake| +22125|380353|5368|2|28|40133.52|0.00|0.02|A|F|1993-11-04|1993-08-13|1993-11-21|DELIVER IN PERSON|FOB|es cajole along t| +22125|579304|29305|3|45|62247.60|0.06|0.06|A|F|1993-09-14|1993-09-09|1993-09-15|COLLECT COD|REG AIR|ray quickly at the caref| +22125|350647|38169|4|5|8488.15|0.03|0.04|A|F|1993-09-20|1993-09-09|1993-09-24|NONE|TRUCK|es alongside| +22125|307910|45429|5|44|84387.60|0.08|0.03|A|F|1993-08-01|1993-09-09|1993-08-17|TAKE BACK RETURN|AIR|: fluffily final instructions acc| +22125|41189|3690|6|38|42946.84|0.06|0.02|R|F|1993-11-04|1993-08-21|1993-11-10|COLLECT COD|RAIL|ly past the quickly even requests| +22126|354132|4133|1|16|18977.92|0.08|0.00|A|F|1995-03-26|1995-02-01|1995-04-20|TAKE BACK RETURN|RAIL|ross the blit| +22126|887079|12114|2|2|2132.06|0.07|0.00|A|F|1995-01-14|1995-03-11|1995-01-18|COLLECT COD|MAIL| eat furiously furiously ironi| +22127|434630|47139|1|10|15646.10|0.04|0.03|N|O|1995-08-14|1995-08-25|1995-09-09|TAKE BACK RETURN|AIR|into beans sleep | +22127|820052|45085|2|32|31104.32|0.03|0.08|N|O|1995-08-23|1995-09-28|1995-08-31|COLLECT COD|REG AIR|refully even foxes wake car| +22127|598995|48996|3|30|62819.10|0.09|0.03|N|O|1995-07-18|1995-09-16|1995-08-07|COLLECT COD|RAIL|thely about the q| +22152|225176|185|1|28|30832.48|0.03|0.00|N|O|1998-02-11|1998-01-09|1998-03-01|TAKE BACK RETURN|AIR|eaves haggle among the fluffily even g| +22152|530538|30539|2|28|43918.28|0.09|0.08|N|O|1997-11-26|1998-01-05|1997-12-17|TAKE BACK RETURN|SHIP|eep furiously regular, ironic depo| +22153|254772|42288|1|26|44895.76|0.03|0.06|N|O|1997-02-12|1997-04-24|1997-02-19|DELIVER IN PERSON|FOB|y regular deposits w| +22153|952467|27506|2|31|47102.02|0.02|0.02|N|O|1997-02-24|1997-03-24|1997-03-26|DELIVER IN PERSON|REG AIR|tes. regular asymptotes use. account| +22153|99809|24812|3|36|65116.80|0.06|0.08|N|O|1997-05-31|1997-04-25|1997-06-22|COLLECT COD|FOB|ng to the final requests. | +22153|478082|15610|4|29|30741.74|0.06|0.01|N|O|1997-05-01|1997-03-13|1997-05-24|DELIVER IN PERSON|AIR|ld requests sleep about the silent id| +22153|120528|8035|5|38|58843.76|0.05|0.07|N|O|1997-03-30|1997-03-09|1997-04-12|COLLECT COD|SHIP| beans haggle pending, daring decoys. even| +22153|705667|43210|6|43|71923.09|0.10|0.07|N|O|1997-04-03|1997-04-24|1997-04-04|NONE|FOB|- ironic instr| +22154|207369|44882|1|13|16592.55|0.05|0.05|R|F|1993-04-20|1993-05-24|1993-05-05|COLLECT COD|RAIL| excuses. unusual de| +22154|242657|42658|2|48|76782.72|0.08|0.06|A|F|1993-06-11|1993-04-27|1993-07-11|DELIVER IN PERSON|RAIL|olites. bold foxes wake. blithe| +22154|321734|9253|3|26|45648.72|0.04|0.06|A|F|1993-05-19|1993-05-10|1993-06-15|TAKE BACK RETURN|RAIL|apades haggle blithel| +22154|371343|33851|4|22|31115.26|0.02|0.07|A|F|1993-06-10|1993-05-21|1993-06-27|TAKE BACK RETURN|SHIP|e of the spe| +22154|155917|30924|5|25|49322.75|0.07|0.03|A|F|1993-06-05|1993-05-21|1993-06-20|COLLECT COD|SHIP|ly fluffily even deposits. regular accou| +22155|920854|20855|1|22|41245.82|0.07|0.01|N|O|1998-07-22|1998-07-31|1998-08-01|COLLECT COD|RAIL|t foxes wake slyly blithe| +22155|790429|2945|2|25|37984.75|0.04|0.00|N|O|1998-09-03|1998-06-23|1998-09-23|TAKE BACK RETURN|AIR|e slowly special accounts. silen| +22155|736771|49286|3|30|54232.20|0.10|0.00|N|O|1998-08-13|1998-06-30|1998-09-02|COLLECT COD|SHIP|thely above t| +22156|477001|27002|1|14|13691.72|0.10|0.02|N|O|1997-09-22|1997-10-20|1997-10-06|NONE|FOB| quickly according to the ironic pinto bean| +22156|941923|41924|2|41|80560.08|0.04|0.06|N|O|1997-10-03|1997-10-13|1997-10-16|TAKE BACK RETURN|TRUCK|al accounts unwind furious| +22156|886711|49229|3|47|79790.49|0.08|0.08|N|O|1997-10-17|1997-10-13|1997-11-11|COLLECT COD|FOB|nly regular accou| +22156|949671|24708|4|33|56780.79|0.02|0.04|N|O|1997-09-23|1997-09-12|1997-10-18|DELIVER IN PERSON|AIR|ding to the furiously even dependencies. | +22156|117245|42250|5|8|10097.92|0.04|0.08|N|O|1997-09-27|1997-09-24|1997-10-21|DELIVER IN PERSON|AIR|e platelets. slow requests cajole s| +22156|535164|10185|6|30|35974.20|0.06|0.02|N|O|1997-08-05|1997-10-18|1997-08-16|COLLECT COD|MAIL|equests hagg| +22156|499200|11710|7|50|59959.00|0.02|0.08|N|O|1997-08-02|1997-09-10|1997-08-30|NONE|MAIL| regular accounts according to the | +22157|53566|16068|1|27|41028.12|0.01|0.05|R|F|1995-03-02|1995-01-11|1995-03-08|COLLECT COD|AIR|lieve slyly ideas. bo| +22157|281187|43693|2|45|52567.65|0.03|0.02|R|F|1995-01-15|1995-02-06|1995-02-08|COLLECT COD|SHIP|requests cajole sometimes after the furiou| +22157|907372|19891|3|3|4137.99|0.08|0.01|A|F|1995-03-02|1995-02-09|1995-03-04|COLLECT COD|RAIL|lar dependencies haggle fluffily final acc| +22157|189569|27079|4|29|48098.24|0.03|0.06|R|F|1994-12-09|1995-01-25|1994-12-19|DELIVER IN PERSON|TRUCK|p. bold deposits cajole slyly. carefully ir| +22157|72390|47393|5|9|12261.51|0.02|0.04|A|F|1995-01-17|1994-12-12|1995-02-11|DELIVER IN PERSON|MAIL|le ironically busily s| +22157|645205|32742|6|41|47156.97|0.06|0.08|R|F|1995-03-09|1995-01-25|1995-03-23|TAKE BACK RETURN|REG AIR|losely unusual sheaves. ironic pinto be| +22157|950672|13192|7|3|5167.89|0.04|0.01|A|F|1995-01-28|1994-12-31|1995-02-23|TAKE BACK RETURN|RAIL|lithely before the slyly ev| +22158|942570|5089|1|15|24187.95|0.08|0.04|A|F|1994-06-05|1994-04-14|1994-06-13|COLLECT COD|AIR|eep furiously along the regular| +22158|760559|48105|2|49|79356.48|0.02|0.03|A|F|1994-05-31|1994-05-12|1994-06-04|NONE|FOB|yly quickly regular dep| +22158|710988|10989|3|24|47974.80|0.06|0.05|A|F|1994-04-12|1994-04-21|1994-05-11|NONE|SHIP|ar deposits. | +22158|573429|10963|4|35|52584.00|0.04|0.00|R|F|1994-06-11|1994-05-12|1994-06-22|COLLECT COD|REG AIR|ily unusual, regular asympt| +22159|412331|49856|1|40|49732.40|0.00|0.07|A|F|1992-01-30|1992-04-05|1992-02-12|DELIVER IN PERSON|REG AIR|, unusual courts. furiously even foxes acr| +22159|40883|15884|2|35|63835.80|0.03|0.03|R|F|1992-04-19|1992-03-16|1992-05-11|COLLECT COD|TRUCK|counts along the regul| +22159|105688|43195|3|32|54197.76|0.09|0.02|R|F|1992-04-03|1992-03-11|1992-04-25|NONE|SHIP|kly according to the sl| +22159|296309|33825|4|2|2610.58|0.06|0.01|R|F|1992-03-11|1992-02-28|1992-03-27|NONE|FOB|luffily along| +22184|766917|29433|1|47|93242.36|0.10|0.00|R|F|1995-02-12|1994-12-28|1995-02-22|TAKE BACK RETURN|FOB|ndencies. close depo| +22184|558256|33279|2|22|28913.06|0.03|0.00|A|F|1994-10-29|1994-12-16|1994-11-02|COLLECT COD|MAIL|t the quickly ironic | +22184|606246|18759|3|50|57610.50|0.03|0.02|R|F|1994-11-06|1995-01-06|1994-11-30|COLLECT COD|REG AIR|s the quickly express foxes haggle a| +22184|165503|28007|4|31|48623.50|0.06|0.05|R|F|1995-01-26|1994-11-26|1995-02-22|COLLECT COD|AIR| across the silent accounts p| +22184|592267|42268|5|41|55728.84|0.10|0.06|A|F|1994-11-25|1994-11-29|1994-12-23|DELIVER IN PERSON|SHIP|e furiously above | +22184|218962|18963|6|10|18809.50|0.10|0.07|R|F|1995-01-05|1994-12-13|1995-01-22|NONE|MAIL|haggle: regular dinos hind| +22185|208991|34000|1|36|68399.28|0.08|0.01|N|O|1997-02-06|1997-02-05|1997-02-22|TAKE BACK RETURN|RAIL|ons haggle. ironic courts after the | +22185|497424|47425|2|30|42642.00|0.07|0.07|N|O|1997-03-13|1997-01-31|1997-04-08|NONE|MAIL|le fluffily pinto beans. | +22185|198222|23229|3|30|39606.60|0.10|0.07|N|O|1997-04-09|1997-01-31|1997-05-08|TAKE BACK RETURN|SHIP|ronic accounts nag. c| +22186|409609|9610|1|6|9111.48|0.08|0.04|N|O|1997-04-17|1997-06-06|1997-04-21|COLLECT COD|FOB|ructions across the furiously sly depen| +22186|288664|38665|2|24|39663.60|0.06|0.04|N|O|1997-06-24|1997-05-18|1997-07-06|NONE|FOB|special requests n| +22187|362721|37736|1|30|53511.30|0.01|0.03|N|O|1998-04-18|1998-05-08|1998-05-18|DELIVER IN PERSON|FOB|detect carefully? pinto bea| +22187|236728|24241|2|33|54935.43|0.00|0.03|N|O|1998-05-29|1998-05-30|1998-06-07|NONE|FOB|y. blithely express pinto bea| +22187|671587|9127|3|7|10909.85|0.10|0.00|N|O|1998-05-22|1998-05-13|1998-06-10|TAKE BACK RETURN|TRUCK|blithely e| +22187|356965|44487|4|33|66724.35|0.09|0.07|N|O|1998-03-04|1998-04-16|1998-04-02|COLLECT COD|REG AIR| unusual pinto beans haggle| +22187|496456|46457|5|16|23238.88|0.02|0.08|N|O|1998-04-11|1998-04-25|1998-04-19|NONE|AIR|tes. final, final theodoli| +22187|932991|32992|6|34|68814.30|0.00|0.08|N|O|1998-06-28|1998-05-18|1998-07-10|NONE|MAIL|c platelets integrate slyly. unusual, ex| +22187|778718|41234|7|22|39526.96|0.04|0.02|N|O|1998-03-12|1998-04-16|1998-04-07|DELIVER IN PERSON|MAIL|ironic pinto beans prom| +22188|900625|13144|1|2|3251.16|0.10|0.08|R|F|1994-10-27|1994-11-18|1994-10-29|NONE|TRUCK|hely carefully regular sentiments. sly| +22188|804347|41896|2|46|57559.80|0.00|0.07|A|F|1994-11-09|1994-11-22|1994-11-17|COLLECT COD|MAIL|nd blithely-- carefully| +22188|659802|9803|3|32|56376.64|0.00|0.04|R|F|1994-09-26|1994-11-21|1994-10-25|NONE|TRUCK|l packages wa| +22188|291031|3537|4|17|17374.34|0.04|0.05|R|F|1995-01-08|1994-11-02|1995-01-25|TAKE BACK RETURN|SHIP|. furiously final ideas inte| +22189|646610|21635|1|1|1556.58|0.00|0.08|R|F|1995-03-08|1995-03-25|1995-03-18|COLLECT COD|REG AIR|. carefully blithe excuses boost slyly| +22190|577504|15038|1|39|61677.72|0.00|0.08|N|O|1997-01-04|1996-11-09|1997-01-13|DELIVER IN PERSON|FOB|foxes cajole slyly. blit| +22190|100516|13019|2|44|66726.44|0.02|0.05|N|O|1996-10-09|1996-11-26|1996-10-16|DELIVER IN PERSON|FOB|ickly ruthless dinos sl| +22190|368380|5902|3|11|15932.07|0.10|0.03|N|O|1997-01-01|1996-12-18|1997-01-20|DELIVER IN PERSON|SHIP|boost even, regular theod| +22190|352080|27095|4|24|27169.68|0.03|0.02|N|O|1996-11-19|1996-11-18|1996-12-11|TAKE BACK RETURN|MAIL|ge. request| +22190|403071|3072|5|47|45780.35|0.05|0.01|N|O|1996-12-13|1996-11-26|1996-12-25|DELIVER IN PERSON|AIR|packages hagg| +22190|402612|15121|6|15|22718.85|0.07|0.01|N|O|1997-01-15|1996-12-23|1997-01-17|COLLECT COD|RAIL|sly according to the bold accoun| +22190|693247|43248|7|7|8681.47|0.06|0.06|N|O|1996-11-10|1996-12-16|1996-11-26|NONE|RAIL|kages. regular pinto bean| +22191|395037|20052|1|31|35092.62|0.03|0.03|N|O|1996-02-12|1995-12-28|1996-02-28|COLLECT COD|TRUCK|of the even instruc| +22191|372408|9930|2|17|25166.63|0.01|0.05|N|O|1995-12-13|1995-12-05|1996-01-11|NONE|REG AIR|s among the ruthless, p| +22191|59957|9958|3|33|63259.35|0.05|0.05|N|O|1995-12-19|1995-12-11|1996-01-01|COLLECT COD|REG AIR|accounts nag carefully above the | +22191|692744|42745|4|40|69468.40|0.06|0.00|N|O|1996-01-16|1995-12-09|1996-01-20|NONE|RAIL|tornis detect slyly! silently even wart| +22191|946252|8771|5|30|38946.30|0.08|0.05|N|O|1996-02-16|1996-01-08|1996-03-01|NONE|MAIL|even asymptote| +22191|647050|47051|6|40|39880.80|0.00|0.01|N|O|1996-01-12|1996-01-17|1996-02-07|COLLECT COD|SHIP|se furiously. unusual, ironic packages wa| +22216|33129|45630|1|50|53106.00|0.06|0.05|R|F|1994-08-22|1994-07-08|1994-09-12|TAKE BACK RETURN|RAIL|as wake fluffily alongside | +22216|795983|21014|2|5|10394.75|0.10|0.03|R|F|1994-07-16|1994-07-17|1994-08-15|DELIVER IN PERSON|RAIL|ending acc| +22216|74551|49554|3|26|39664.30|0.07|0.01|A|F|1994-06-01|1994-07-22|1994-06-23|COLLECT COD|RAIL| special pinto b| +22216|977246|39766|4|17|22494.40|0.00|0.02|R|F|1994-05-21|1994-07-13|1994-06-14|TAKE BACK RETURN|REG AIR| patterns use above the slyly final reques| +22216|563058|25570|5|26|29146.78|0.04|0.08|R|F|1994-07-18|1994-06-06|1994-07-22|DELIVER IN PERSON|FOB|endencies are against | +22216|305583|30596|6|44|69897.08|0.08|0.08|R|F|1994-06-26|1994-06-18|1994-07-11|COLLECT COD|MAIL|nding reque| +22216|921982|21983|7|40|80157.60|0.01|0.05|R|F|1994-07-13|1994-07-06|1994-07-26|TAKE BACK RETURN|REG AIR|ajole carefully furiousl| +22217|746537|34080|1|28|44338.00|0.05|0.04|N|O|1996-05-14|1996-04-02|1996-05-27|DELIVER IN PERSON|RAIL| beans sleep blithely: furiously iron| +22217|45752|20753|2|42|71305.50|0.08|0.03|N|O|1996-04-25|1996-04-02|1996-04-30|TAKE BACK RETURN|TRUCK| theodolites sleep fur| +22217|947425|47426|3|37|54478.06|0.08|0.01|N|O|1996-05-22|1996-03-18|1996-06-20|TAKE BACK RETURN|RAIL| wake fluffily alongside of the | +22217|360649|48171|4|19|32482.97|0.04|0.05|N|O|1996-03-05|1996-03-19|1996-03-27|DELIVER IN PERSON|SHIP|posits are blithely after the| +22217|414581|2106|5|41|61317.96|0.10|0.04|N|O|1996-04-22|1996-04-07|1996-05-12|DELIVER IN PERSON|AIR| wake about th| +22217|855441|17959|6|46|64234.40|0.04|0.03|N|O|1996-05-08|1996-04-21|1996-05-14|COLLECT COD|MAIL|nd the carefully ironic accounts. unus| +22218|953085|15605|1|44|50073.76|0.06|0.00|N|O|1998-03-06|1998-03-24|1998-04-01|COLLECT COD|FOB|ckly unusual ac| +22218|483953|33954|2|34|65855.62|0.03|0.02|N|O|1998-04-29|1998-03-24|1998-05-24|COLLECT COD|MAIL|its. fluffily spec| +22218|788457|26003|3|28|43271.76|0.02|0.05|N|O|1998-03-01|1998-03-26|1998-03-07|TAKE BACK RETURN|RAIL| above the express, pending | +22219|745119|32662|1|50|58204.00|0.00|0.00|N|F|1995-05-29|1995-04-14|1995-06-21|COLLECT COD|REG AIR|nding foxes. ir| +22219|211045|23550|2|18|17208.54|0.00|0.04|R|F|1995-05-22|1995-04-22|1995-05-27|DELIVER IN PERSON|SHIP|the blithely blithe packages. bl| +22219|32053|19554|3|45|44327.25|0.03|0.01|A|F|1995-03-20|1995-05-07|1995-03-28|TAKE BACK RETURN|TRUCK|ithely unusu| +22219|710644|48187|4|46|76112.06|0.06|0.04|A|F|1995-03-30|1995-05-19|1995-04-13|DELIVER IN PERSON|SHIP|nic requests. eve| +22219|791417|3933|5|20|30167.60|0.07|0.02|A|F|1995-03-23|1995-05-23|1995-03-24|TAKE BACK RETURN|SHIP|rthogs are. regular d| +22219|331006|43513|6|12|12443.88|0.02|0.00|A|F|1995-05-31|1995-05-10|1995-06-07|TAKE BACK RETURN|REG AIR|ose dolphins.| +22220|585259|35260|1|24|32261.52|0.09|0.03|R|F|1993-12-06|1994-01-01|1993-12-21|DELIVER IN PERSON|REG AIR|totes. regular requests sleep| +22221|595123|20146|1|46|56032.60|0.08|0.06|R|F|1993-04-25|1993-05-23|1993-05-25|TAKE BACK RETURN|REG AIR|ng to the | +22221|223062|35567|2|38|37431.90|0.03|0.02|A|F|1993-04-28|1993-06-21|1993-05-15|COLLECT COD|AIR|rding to the slyly | +22221|994063|44064|3|23|26611.46|0.03|0.02|A|F|1993-06-06|1993-07-08|1993-07-04|COLLECT COD|MAIL|posits. slyly final e| +22221|214998|14999|4|41|78432.18|0.03|0.02|R|F|1993-06-29|1993-06-06|1993-06-30|NONE|RAIL| quickly sly requests hinder accordin| +22221|457995|7996|5|5|9764.85|0.06|0.04|R|F|1993-05-01|1993-05-18|1993-05-05|NONE|SHIP|ly final de| +22221|505233|30254|6|6|7429.26|0.06|0.06|R|F|1993-05-24|1993-07-07|1993-06-14|NONE|SHIP|uests. regular, regular deposits hagg| +22222|769150|44181|1|31|37792.72|0.09|0.04|N|O|1998-09-29|1998-10-18|1998-10-02|TAKE BACK RETURN|FOB|fully express | +22222|94032|6534|2|2|2052.06|0.03|0.07|N|O|1998-11-22|1998-09-17|1998-11-24|NONE|TRUCK|e blithely even | +22222|388137|13152|3|25|30628.00|0.03|0.07|N|O|1998-10-18|1998-09-07|1998-11-10|COLLECT COD|RAIL|ic accounts af| +22222|405096|30113|4|46|46049.22|0.04|0.07|N|O|1998-09-08|1998-09-17|1998-10-03|TAKE BACK RETURN|REG AIR|ake carefu| +22222|437230|37231|5|16|18675.36|0.02|0.06|N|O|1998-09-06|1998-09-30|1998-10-02|DELIVER IN PERSON|TRUCK|blithely ironic accounts! i| +22222|519461|44482|6|48|71061.12|0.10|0.00|N|O|1998-08-16|1998-08-29|1998-08-26|DELIVER IN PERSON|TRUCK|press slyly alongside of the even, ironic d| +22223|246255|46256|1|39|46848.36|0.09|0.08|A|F|1994-09-03|1994-09-26|1994-09-14|NONE|FOB|aggle: ruthlessly unusual depths | +22223|805731|43280|2|38|62194.22|0.04|0.01|A|F|1994-09-04|1994-08-18|1994-09-27|TAKE BACK RETURN|FOB|s haggle pending, final packages. c| +22223|914880|2435|3|10|18948.40|0.08|0.01|A|F|1994-07-19|1994-09-24|1994-08-18|COLLECT COD|SHIP|r instructions sle| +22223|386275|48783|4|11|14973.86|0.02|0.02|A|F|1994-10-23|1994-09-24|1994-10-28|NONE|RAIL|pains mainta| +22223|108807|21310|5|28|50842.40|0.04|0.04|R|F|1994-10-05|1994-10-03|1994-10-13|DELIVER IN PERSON|TRUCK| print quick| +22248|498886|48887|1|4|7539.44|0.03|0.01|N|O|1996-12-29|1997-01-12|1997-01-07|NONE|RAIL|ly quickly regular pack| +22248|765343|40374|2|39|54924.09|0.09|0.07|N|O|1997-02-24|1997-01-15|1997-03-01|TAKE BACK RETURN|RAIL|al deposits| +22248|118504|43509|3|41|62422.50|0.01|0.05|N|O|1997-01-07|1996-12-16|1997-02-04|COLLECT COD|REG AIR|e furiously careful c| +22248|680402|30403|4|18|24882.66|0.08|0.02|N|O|1997-01-01|1997-01-27|1997-01-19|COLLECT COD|TRUCK|unts. blithely silent requests | +22248|505979|43510|5|49|97262.55|0.09|0.04|N|O|1996-12-08|1997-01-22|1996-12-30|DELIVER IN PERSON|FOB|ss pinto beans. fluffily regular a| +22248|979441|4480|6|9|13683.60|0.09|0.05|N|O|1996-11-22|1997-02-06|1996-12-16|NONE|FOB|n deposits haggle regular dinos. furiously| +22249|232809|20322|1|12|20901.48|0.09|0.07|N|O|1997-07-01|1997-08-15|1997-07-21|TAKE BACK RETURN|REG AIR|structions after the| +22249|805435|17952|2|27|36190.53|0.05|0.07|N|O|1997-07-05|1997-08-07|1997-07-10|TAKE BACK RETURN|MAIL| the deposits. b| +22249|934210|46729|3|34|42301.78|0.00|0.01|N|O|1997-09-25|1997-08-21|1997-10-25|TAKE BACK RETURN|FOB| unusual excuses. fo| +22249|264051|1567|4|8|8120.32|0.03|0.01|N|O|1997-09-16|1997-08-29|1997-09-29|TAKE BACK RETURN|AIR|t theodolites. ironic packages accord| +22249|904183|4184|5|12|14245.68|0.00|0.04|N|O|1997-08-16|1997-08-13|1997-08-28|DELIVER IN PERSON|SHIP|even packages. quickly blithe package| +22250|748543|36086|1|32|50928.32|0.02|0.02|N|O|1996-07-23|1996-08-21|1996-08-11|TAKE BACK RETURN|AIR| the ironic, special | +22250|759763|22279|2|48|87491.04|0.01|0.00|N|O|1996-09-05|1996-09-26|1996-09-12|TAKE BACK RETURN|MAIL|ely even packages. | +22251|210404|47917|1|38|49946.82|0.06|0.06|N|O|1998-04-04|1998-04-13|1998-04-13|TAKE BACK RETURN|AIR|y final excuses| +22251|252584|27595|2|40|61462.80|0.05|0.02|N|O|1998-04-15|1998-05-03|1998-04-17|COLLECT COD|AIR| requests use asympt| +22251|163515|38522|3|7|11049.57|0.03|0.07|N|O|1998-02-03|1998-04-19|1998-02-08|NONE|REG AIR|ptotes according to the theodolites| +22252|615955|40980|1|16|29934.72|0.09|0.00|N|O|1997-05-20|1997-05-07|1997-05-24|COLLECT COD|REG AIR|as are slyly silently silent ideas. even d| +22252|355562|18070|2|12|19410.60|0.07|0.02|N|O|1997-05-31|1997-04-27|1997-06-04|DELIVER IN PERSON|RAIL|grate against the slyly final| +22252|921092|46129|3|12|13356.60|0.06|0.06|N|O|1997-04-25|1997-05-04|1997-05-09|NONE|REG AIR|its haggle. furio| +22253|121786|34289|1|16|28924.48|0.04|0.01|N|O|1997-03-27|1997-02-13|1997-04-18|NONE|TRUCK|he slyly pending th| +22253|840652|3169|2|3|4777.83|0.10|0.03|N|O|1997-01-15|1997-01-17|1997-02-13|COLLECT COD|TRUCK|: furiously | +22253|836812|49329|3|25|43719.25|0.05|0.04|N|O|1997-02-09|1997-02-06|1997-03-08|TAKE BACK RETURN|MAIL|thely even grouc| +22253|290272|27788|4|33|41654.58|0.04|0.03|N|O|1996-12-09|1997-02-21|1996-12-24|NONE|MAIL|yly quickly regu| +22254|389290|1798|1|12|16551.36|0.01|0.08|N|O|1998-03-04|1998-01-17|1998-03-25|TAKE BACK RETURN|RAIL|he carefully unusual packages. sly| +22254|788539|1055|2|38|61845.00|0.00|0.02|N|O|1998-01-07|1997-12-24|1998-01-18|DELIVER IN PERSON|REG AIR|es haggle blithely regular pint| +22254|972520|47559|3|24|38219.52|0.08|0.08|N|O|1997-12-25|1998-02-11|1998-01-19|NONE|TRUCK|above the furiously final deposits. deposit| +22254|131256|31257|4|28|36043.00|0.08|0.02|N|O|1997-12-05|1998-01-14|1997-12-06|DELIVER IN PERSON|TRUCK|ithely furious | +22254|14657|27158|5|26|40862.90|0.04|0.08|N|O|1997-12-17|1998-02-12|1998-01-14|DELIVER IN PERSON|REG AIR|ches haggle carefull| +22254|338878|1385|6|46|88175.56|0.01|0.04|N|O|1997-11-25|1998-01-26|1997-12-20|COLLECT COD|AIR|kages. final d| +22254|519163|44184|7|39|46103.46|0.05|0.00|N|O|1998-01-19|1997-12-31|1998-02-11|COLLECT COD|SHIP|thily regular p| +22255|563145|25657|1|37|44700.44|0.07|0.05|R|F|1995-01-25|1995-01-12|1995-02-20|DELIVER IN PERSON|SHIP|ing to the | +22255|768707|43738|2|31|55045.77|0.08|0.00|A|F|1995-02-16|1995-01-16|1995-03-09|TAKE BACK RETURN|AIR|ngside of the| +22255|648400|23425|3|19|25619.03|0.07|0.07|R|F|1995-03-29|1995-02-13|1995-04-06|COLLECT COD|RAIL|ven packages inside t| +22255|650311|312|4|11|13874.08|0.01|0.06|R|F|1995-04-01|1995-02-10|1995-04-11|DELIVER IN PERSON|FOB|capades amon| +22255|770615|45646|5|14|23598.12|0.01|0.08|A|F|1994-12-10|1995-01-18|1994-12-12|COLLECT COD|AIR|al accounts may wake furiously ex| +22280|311493|11494|1|29|43629.92|0.01|0.00|R|F|1995-03-30|1995-03-18|1995-04-24|COLLECT COD|REG AIR|s nag fluf| +22280|256530|6531|2|48|71352.96|0.06|0.06|A|F|1995-04-30|1995-03-28|1995-05-05|TAKE BACK RETURN|FOB|ular instructions. furiously iro| +22280|499609|37137|3|11|17694.38|0.01|0.01|A|F|1995-01-12|1995-03-15|1995-01-29|COLLECT COD|SHIP|lithely ironic instructions: | +22281|767374|42405|1|34|49005.56|0.05|0.06|A|F|1994-09-16|1994-08-31|1994-09-25|COLLECT COD|TRUCK|uickly regular packages cajole! quickly| +22281|252391|2392|2|42|56421.96|0.04|0.00|A|F|1994-08-03|1994-08-10|1994-08-06|NONE|SHIP|e slyly final pinto beans. furiously i| +22281|931921|44440|3|1|1952.88|0.07|0.04|A|F|1994-07-30|1994-08-01|1994-08-17|NONE|SHIP|re blithely. fi| +22281|780174|30175|4|18|22574.52|0.07|0.03|A|F|1994-07-24|1994-09-04|1994-07-27|NONE|FOB|iously ironic theodolites into the account| +22281|371561|21562|5|38|62036.90|0.04|0.02|A|F|1994-08-25|1994-08-23|1994-09-08|NONE|AIR|s cajole flu| +22281|821131|46164|6|6|6312.54|0.08|0.00|A|F|1994-08-23|1994-08-15|1994-08-25|COLLECT COD|MAIL|ost. quickly regular dependencies use| +22282|959370|46928|1|44|62890.52|0.09|0.01|R|F|1993-02-15|1993-03-19|1993-03-01|NONE|RAIL|l pinto beans. slyly ironic depo| +22282|116036|28539|2|34|35769.02|0.07|0.01|R|F|1993-03-20|1993-04-05|1993-04-02|COLLECT COD|SHIP|s haggle slyly: furiously regular ac| +22282|211985|11986|3|45|85363.65|0.09|0.07|R|F|1993-03-05|1993-03-13|1993-03-29|COLLECT COD|MAIL| of the slyly regul| +22282|827075|2108|4|29|29058.87|0.08|0.08|A|F|1993-03-03|1993-03-10|1993-03-05|COLLECT COD|FOB|ithely final dinos about the carefully | +22283|389757|27279|1|33|60942.42|0.01|0.01|N|O|1998-08-06|1998-07-15|1998-08-15|COLLECT COD|FOB|ideas affix ironically arou| +22283|635922|10947|2|50|92894.50|0.06|0.01|N|O|1998-07-03|1998-08-27|1998-07-21|DELIVER IN PERSON|RAIL|us dolphins. unusual pa| +22283|939624|14661|3|22|36598.76|0.05|0.01|N|O|1998-09-08|1998-07-21|1998-09-17|DELIVER IN PERSON|SHIP|blithely regular| +22283|253741|3742|4|7|11863.11|0.04|0.00|N|O|1998-08-09|1998-08-17|1998-09-04|NONE|SHIP|wake blithely across the quickly final| +22283|622185|22186|5|27|29893.05|0.05|0.01|N|O|1998-09-14|1998-08-31|1998-09-30|DELIVER IN PERSON|REG AIR|ithely against the carefully pending depos| +22283|56323|18825|6|47|60128.04|0.09|0.08|N|O|1998-10-01|1998-08-23|1998-10-15|NONE|FOB|deposits cajole according to the qui| +22283|610906|35931|7|9|16351.83|0.08|0.06|N|O|1998-07-03|1998-08-07|1998-07-19|COLLECT COD|FOB|ess instruct| +22284|494154|44155|1|21|24110.73|0.01|0.02|A|F|1995-02-05|1995-01-15|1995-02-18|DELIVER IN PERSON|FOB|sual dependencies hi| +22284|237340|37341|2|31|39597.23|0.00|0.08|R|F|1995-04-02|1995-02-08|1995-04-26|NONE|AIR|ously along t| +22285|248137|48138|1|20|21702.40|0.06|0.01|R|F|1995-04-29|1995-06-02|1995-05-27|DELIVER IN PERSON|MAIL|ilent theodolites affix even, pend| +22285|436065|11082|2|1|1001.04|0.06|0.03|N|O|1995-07-09|1995-04-21|1995-07-23|COLLECT COD|AIR|uests wake blithe| +22285|937963|25518|3|17|34015.64|0.10|0.00|R|F|1995-06-01|1995-05-07|1995-06-09|TAKE BACK RETURN|MAIL|ully regula| +22286|691674|41675|1|16|26650.24|0.05|0.00|N|O|1998-02-14|1998-02-08|1998-02-22|NONE|RAIL|kages. instructions | +22287|694082|31622|1|15|16140.75|0.00|0.06|N|O|1997-01-31|1997-02-27|1997-02-09|DELIVER IN PERSON|MAIL|p carefully. packages| +22287|431160|18685|2|47|51283.58|0.01|0.00|N|O|1996-12-26|1997-01-26|1997-01-18|NONE|MAIL|ideas haggle quickly | +22287|503176|15687|3|3|3537.45|0.07|0.05|N|O|1996-12-17|1997-03-05|1996-12-19|COLLECT COD|AIR|nal theodolites nod even, silent asympt| +22312|654202|4203|1|20|23123.40|0.02|0.03|N|O|1996-05-08|1996-04-08|1996-05-12|NONE|TRUCK|ular, quick courts nag acc| +22312|170950|33454|2|37|74775.15|0.03|0.05|N|O|1996-02-18|1996-02-22|1996-02-27|DELIVER IN PERSON|TRUCK|ithely idle de| +22313|927887|15442|1|10|19148.40|0.00|0.03|A|F|1995-02-20|1995-03-25|1995-03-02|COLLECT COD|REG AIR|ithely. regular asymptotes sl| +22313|981292|31293|2|32|43944.00|0.10|0.08|A|F|1995-04-27|1995-05-03|1995-05-23|DELIVER IN PERSON|MAIL|nding frays are carefull| +22313|560487|22999|3|31|47971.26|0.03|0.03|R|F|1995-03-05|1995-04-11|1995-03-31|TAKE BACK RETURN|RAIL|y ironically| +22314|441162|3671|1|27|29784.78|0.04|0.00|N|O|1995-08-11|1995-07-04|1995-08-28|COLLECT COD|AIR|arefully pending, even dol| +22314|606340|31365|2|12|14955.72|0.08|0.08|N|O|1995-06-28|1995-08-26|1995-07-03|TAKE BACK RETURN|AIR|y even platelets wake bli| +22315|963922|13923|1|41|81421.08|0.01|0.08|N|O|1996-03-14|1996-01-27|1996-03-25|NONE|MAIL|. quickly special pinto beans are furious| +22315|631670|19207|2|25|40041.00|0.10|0.06|N|O|1995-12-30|1996-02-03|1996-01-11|COLLECT COD|SHIP|he busily bold accounts| +22315|470746|45765|3|15|25750.80|0.10|0.01|N|O|1996-04-05|1996-01-28|1996-04-20|TAKE BACK RETURN|FOB|fully among the bo| +22315|822287|34804|4|8|9673.92|0.08|0.07|N|O|1996-01-25|1996-03-04|1996-02-08|NONE|FOB|ctions. carefully unusual ideas slee| +22315|162938|12939|5|49|98045.57|0.01|0.06|N|O|1996-03-20|1996-02-21|1996-04-16|TAKE BACK RETURN|AIR|dinos. final packages hag| +22315|488374|13393|6|33|44957.55|0.08|0.05|N|O|1996-04-09|1996-02-10|1996-05-01|NONE|REG AIR|gular decoys a| +22315|88470|25974|7|1|1458.47|0.08|0.07|N|O|1996-04-02|1996-02-20|1996-04-20|DELIVER IN PERSON|MAIL|cross the q| +22316|901647|14166|1|47|77484.20|0.02|0.05|R|F|1992-12-05|1993-01-26|1992-12-31|TAKE BACK RETURN|RAIL|thogs boost among the express courts. spe| +22316|975769|38289|2|33|60875.76|0.08|0.04|R|F|1992-11-18|1993-01-17|1992-11-20|NONE|TRUCK| nag quickly regular, un| +22316|749265|49266|3|12|15770.76|0.06|0.01|R|F|1993-02-18|1992-12-08|1993-03-09|NONE|AIR|aggle. final| +22317|745682|33225|1|41|70833.65|0.01|0.05|N|O|1997-01-11|1997-01-25|1997-02-02|TAKE BACK RETURN|MAIL|s. furiously expr| +22317|664290|26804|2|12|15051.12|0.05|0.02|N|O|1996-12-29|1997-03-09|1997-01-11|NONE|FOB|s. ironic accounts grow carefully to| +22317|711756|36785|3|16|28283.52|0.01|0.01|N|O|1997-01-07|1997-01-18|1997-01-28|DELIVER IN PERSON|AIR|ep after the express deposits. blithely eve| +22317|466769|29279|4|22|38186.28|0.03|0.02|N|O|1997-01-24|1997-02-22|1997-02-01|DELIVER IN PERSON|MAIL|kages affix c| +22317|984913|9952|5|7|13985.09|0.01|0.00|N|O|1997-01-31|1997-02-21|1997-02-05|TAKE BACK RETURN|REG AIR|ounts. fluffily unusual c| +22318|412890|25399|1|34|61297.58|0.07|0.04|N|O|1996-01-19|1995-11-15|1996-02-09|DELIVER IN PERSON|RAIL|of the deposits. ironic accou| +22319|244838|19847|1|17|30307.94|0.02|0.05|N|O|1998-07-09|1998-05-03|1998-07-25|TAKE BACK RETURN|TRUCK|s cajole fluffily special depen| +22319|981645|19203|2|23|39711.80|0.06|0.08|N|O|1998-06-29|1998-05-19|1998-07-10|TAKE BACK RETURN|REG AIR|instructions. quickly bold theod| +22319|496287|33815|3|31|39781.06|0.07|0.05|N|O|1998-04-21|1998-06-03|1998-05-15|DELIVER IN PERSON|TRUCK|g deposits wake. slyly final i| +22344|970604|8162|1|23|38514.88|0.05|0.06|N|O|1995-09-11|1995-10-03|1995-09-13|COLLECT COD|REG AIR|the ideas. carefully final packages a| +22344|936884|24439|2|18|34575.12|0.05|0.02|N|O|1995-10-29|1995-09-19|1995-11-14|NONE|RAIL|uests. asymptotes are slow| +22344|194721|7225|3|32|58103.04|0.02|0.05|N|O|1995-10-06|1995-10-08|1995-10-23|COLLECT COD|FOB|ackages. quickly bold ideas| +22344|664419|14420|4|19|26284.22|0.05|0.03|N|O|1995-08-22|1995-10-20|1995-09-10|NONE|TRUCK|hely excuses. accounts lose furiously| +22345|997166|22205|1|47|59366.64|0.05|0.01|A|F|1992-10-15|1992-11-04|1992-11-08|TAKE BACK RETURN|TRUCK|e slyly. requests impress slyly| +22345|364890|39905|2|21|41052.48|0.09|0.07|A|F|1992-12-22|1992-12-18|1993-01-10|TAKE BACK RETURN|FOB|even reque| +22345|699383|11897|3|50|69117.50|0.03|0.02|R|F|1992-12-31|1992-12-09|1993-01-22|TAKE BACK RETURN|AIR| final requests. care| +22345|518119|5650|4|10|11370.90|0.06|0.04|A|F|1992-10-18|1992-12-01|1992-11-04|TAKE BACK RETURN|RAIL|hockey players. final, ironic requests sl| +22345|17200|4701|5|13|14523.60|0.00|0.04|R|F|1992-10-15|1992-11-22|1992-10-26|TAKE BACK RETURN|RAIL|s. regular deposits wake furio| +22345|69931|19932|6|44|83640.92|0.10|0.01|R|F|1992-10-28|1992-12-14|1992-11-05|DELIVER IN PERSON|AIR|lithely pending accounts sleep carefully. e| +22345|320966|45979|7|9|17882.55|0.08|0.01|A|F|1992-09-29|1992-12-18|1992-10-23|NONE|MAIL|uriously bold asymptotes. i| +22346|460902|10903|1|23|42846.24|0.05|0.02|A|F|1994-08-17|1994-09-24|1994-09-03|NONE|AIR| above the slyly ironic th| +22346|368293|43308|2|24|32670.72|0.10|0.03|R|F|1994-10-30|1994-09-11|1994-11-09|DELIVER IN PERSON|FOB|e carefully of the s| +22346|898136|35688|3|1|1134.09|0.01|0.00|R|F|1994-11-08|1994-10-18|1994-12-03|TAKE BACK RETURN|TRUCK|ly regular courts. blithely ir| +22346|970479|20480|4|38|58878.34|0.07|0.02|R|F|1994-11-12|1994-09-12|1994-12-07|COLLECT COD|SHIP|uffily regular | +22346|823881|48914|5|14|25267.76|0.08|0.00|R|F|1994-08-29|1994-09-05|1994-09-22|COLLECT COD|REG AIR|structions boost carefull| +22346|964989|40028|6|19|39024.86|0.06|0.01|A|F|1994-11-07|1994-10-21|1994-11-24|TAKE BACK RETURN|RAIL|ounts. ironic deposits| +22346|561506|11507|7|49|76806.52|0.06|0.08|A|F|1994-08-17|1994-09-27|1994-08-30|DELIVER IN PERSON|RAIL|al pinto bean| +22347|229568|17081|1|48|71882.40|0.10|0.01|R|F|1993-08-26|1993-11-06|1993-08-28|TAKE BACK RETURN|FOB| quickly si| +22348|208809|21314|1|8|13742.32|0.08|0.02|N|O|1997-10-29|1997-12-09|1997-10-30|COLLECT COD|AIR|nusual accounts according to the unus| +22348|440718|3227|2|40|66347.60|0.05|0.05|N|O|1997-11-08|1997-11-03|1997-12-08|NONE|REG AIR|lites against the| +22348|141995|4498|3|8|16295.92|0.07|0.04|N|O|1997-12-07|1997-12-21|1998-01-04|NONE|TRUCK|s accounts cajole fluffily| +22348|509641|22152|4|44|72627.28|0.01|0.08|N|O|1997-10-19|1997-11-12|1997-11-01|NONE|AIR|lly after the carefully final fr| +22348|528756|3777|5|16|28555.68|0.09|0.04|N|O|1997-12-30|1997-12-29|1998-01-11|DELIVER IN PERSON|SHIP|sts sublate carefully al| +22349|429077|41586|1|29|29175.45|0.07|0.01|N|O|1996-08-11|1996-08-04|1996-08-31|COLLECT COD|REG AIR|e platelets. slyly silent theodolites ca| +22350|706372|31401|1|18|24810.12|0.03|0.05|N|O|1998-01-11|1997-12-10|1998-01-30|TAKE BACK RETURN|TRUCK|excuses. blithely regul| +22350|993236|43237|2|15|19937.85|0.01|0.06|N|O|1997-11-20|1998-01-04|1997-12-05|COLLECT COD|SHIP|inal, ironic packages | +22350|315577|3096|3|34|54147.04|0.10|0.04|N|O|1997-11-24|1997-12-26|1997-12-19|DELIVER IN PERSON|AIR|luffily final theodolites. pending account| +22350|897773|22808|4|9|15936.57|0.03|0.00|N|O|1998-01-12|1997-11-26|1998-02-01|COLLECT COD|FOB|gle alongside of the blithely e| +22350|854359|41911|5|28|36772.68|0.06|0.00|N|O|1997-11-03|1997-12-29|1997-11-19|TAKE BACK RETURN|TRUCK| hinder blithely carefully regular acco| +22350|199354|24361|6|48|69760.80|0.00|0.08|N|O|1997-10-26|1998-01-18|1997-11-21|DELIVER IN PERSON|SHIP| ironic theodolites wake slyl| +22350|540221|2732|7|27|34052.40|0.06|0.08|N|O|1998-01-30|1998-01-23|1998-02-16|TAKE BACK RETURN|REG AIR|leep furiou| +22351|491011|16030|1|28|28055.72|0.07|0.05|N|O|1997-01-15|1996-11-25|1997-02-14|COLLECT COD|AIR|asymptotes ab| +22376|787100|49616|1|30|35612.10|0.00|0.02|A|F|1992-07-14|1992-09-19|1992-07-16|TAKE BACK RETURN|AIR| grow blithely | +22377|756251|43797|1|18|23529.96|0.01|0.07|N|O|1996-05-24|1996-06-05|1996-05-29|NONE|MAIL|nder along the| +22377|299988|49989|2|13|25843.61|0.07|0.02|N|O|1996-07-07|1996-07-24|1996-07-21|COLLECT COD|FOB|ronic, pending pinto beans integrate. speci| +22377|886113|48631|3|35|38467.45|0.01|0.01|N|O|1996-05-05|1996-06-11|1996-06-04|NONE|SHIP|st pending,| +22377|890635|15670|4|45|73151.55|0.04|0.01|N|O|1996-06-10|1996-06-12|1996-06-15|COLLECT COD|RAIL|ly final requests. express, exp| +22377|886590|36591|5|18|28377.90|0.09|0.00|N|O|1996-06-07|1996-07-09|1996-07-07|COLLECT COD|RAIL| enticingly regular instructions are qui| +22377|904680|29717|6|44|74124.16|0.07|0.00|N|O|1996-08-19|1996-06-01|1996-09-14|DELIVER IN PERSON|TRUCK|ly ironic ideas. re| +22377|950893|894|7|7|13606.95|0.05|0.03|N|O|1996-07-14|1996-06-04|1996-08-07|DELIVER IN PERSON|SHIP|eneath the ironic instructions hi| +22378|642501|17526|1|7|10104.29|0.01|0.02|R|F|1992-06-30|1992-07-11|1992-07-04|DELIVER IN PERSON|FOB|ns are furiously ironic instructions. | +22378|512980|12981|2|39|77725.44|0.01|0.02|A|F|1992-07-12|1992-08-24|1992-08-11|TAKE BACK RETURN|REG AIR|accounts nod care| +22379|64960|27462|1|49|94323.04|0.09|0.05|N|O|1998-05-11|1998-05-04|1998-05-19|COLLECT COD|SHIP| special platelets wa| +22379|775335|37851|2|30|42309.00|0.02|0.07|N|O|1998-02-23|1998-03-11|1998-03-09|TAKE BACK RETURN|MAIL|y ironic pinto bea| +22379|41630|16631|3|14|22002.82|0.05|0.05|N|O|1998-02-15|1998-04-02|1998-03-16|DELIVER IN PERSON|FOB| above the ironic requests boo| +22379|670447|20448|4|45|63783.45|0.02|0.08|N|O|1998-04-06|1998-04-27|1998-04-08|COLLECT COD|FOB|er ironic pinto beans. fluffil| +22379|191368|16375|5|35|51077.60|0.04|0.01|N|O|1998-05-15|1998-04-27|1998-05-19|DELIVER IN PERSON|TRUCK|onic deposits. carefully | +22379|315500|3019|6|24|36371.76|0.01|0.04|N|O|1998-04-27|1998-03-14|1998-05-25|TAKE BACK RETURN|AIR|arefully even, pending reque| +22380|861807|24325|1|42|74287.92|0.05|0.00|N|O|1997-02-17|1997-01-10|1997-02-24|COLLECT COD|REG AIR|lithely regular theodolites. final, expr| +22380|384056|34057|2|35|39901.40|0.04|0.05|N|O|1997-02-16|1997-02-21|1997-03-12|NONE|SHIP| carefully even deposits. ironic packag| +22380|819867|19868|3|46|82193.72|0.10|0.02|N|O|1997-01-23|1997-01-29|1997-02-21|NONE|REG AIR|oxes. furiously fluffy pack| +22380|498430|10940|4|8|11427.28|0.00|0.08|N|O|1997-03-26|1997-01-31|1997-04-21|COLLECT COD|FOB|above the carefu| +22380|107992|7993|5|23|45999.77|0.00|0.07|N|O|1997-01-15|1997-01-11|1997-01-21|TAKE BACK RETURN|FOB|instructions. regular ideas after the ide| +22380|20433|32934|6|25|33835.75|0.04|0.03|N|O|1997-01-04|1997-02-25|1997-01-31|TAKE BACK RETURN|TRUCK|ackages affix| +22381|382304|19826|1|20|27725.80|0.01|0.02|N|O|1997-09-06|1997-10-12|1997-09-22|TAKE BACK RETURN|MAIL|ng the carefully even pin| +22381|383288|33289|2|35|47994.45|0.09|0.00|N|O|1997-10-02|1997-09-05|1997-10-08|DELIVER IN PERSON|RAIL|even deposits? stealthily ironic depen| +22381|911977|49532|3|50|99446.50|0.02|0.07|N|O|1997-10-22|1997-09-17|1997-11-20|NONE|MAIL|leep furious| +22381|592126|29660|4|12|14617.20|0.10|0.06|N|O|1997-09-02|1997-08-19|1997-09-09|DELIVER IN PERSON|TRUCK|use. special deposits at the regular de| +22381|850992|38544|5|3|5828.85|0.07|0.07|N|O|1997-10-17|1997-08-20|1997-11-08|COLLECT COD|REG AIR|nto beans across t| +22381|613554|1091|6|23|33752.96|0.07|0.04|N|O|1997-08-10|1997-10-01|1997-08-13|NONE|MAIL|ckly above the fu| +22381|995891|20930|7|36|71526.60|0.06|0.03|N|O|1997-09-29|1997-08-31|1997-10-24|DELIVER IN PERSON|AIR|s the ideas| +22382|937559|12596|1|31|49491.81|0.07|0.07|N|O|1997-04-22|1997-04-07|1997-04-23|DELIVER IN PERSON|SHIP|sleep across the accounts:| +22383|749592|24621|1|25|41039.00|0.04|0.07|A|F|1992-03-21|1992-03-24|1992-04-06|DELIVER IN PERSON|SHIP| dependencies pr| +22383|384974|22496|2|12|24707.52|0.06|0.00|A|F|1992-03-30|1992-02-14|1992-04-07|COLLECT COD|AIR| blithely unusual dolphins wake closely reg| +22383|241642|41643|3|46|72846.98|0.10|0.06|R|F|1992-05-03|1992-03-17|1992-05-05|DELIVER IN PERSON|FOB|op the deposits. blith| +22383|263051|38062|4|14|14196.56|0.09|0.00|A|F|1992-01-15|1992-03-11|1992-02-09|TAKE BACK RETURN|RAIL| foxes. slyly final asymptot| +22383|83719|8722|5|33|56189.43|0.01|0.08|R|F|1992-02-16|1992-04-04|1992-02-24|TAKE BACK RETURN|FOB|tes cajole. e| +22383|60237|22739|6|21|25141.83|0.08|0.03|A|F|1992-03-26|1992-03-08|1992-04-08|NONE|FOB|haggle. blithely special ideas are. furiou| +22383|391626|4134|7|44|75574.84|0.09|0.05|R|F|1992-05-08|1992-02-11|1992-05-16|DELIVER IN PERSON|FOB|y bold ideas are acro| +22408|50413|12915|1|13|17724.33|0.05|0.08|N|O|1998-07-16|1998-08-13|1998-07-29|NONE|FOB|nding deposits b| +22408|282048|32049|2|13|13390.39|0.08|0.02|N|O|1998-07-04|1998-08-08|1998-07-19|DELIVER IN PERSON|MAIL|ake. slyly ironic depths nag | +22408|369054|44069|3|7|7861.28|0.00|0.07|N|O|1998-09-30|1998-07-22|1998-10-12|TAKE BACK RETURN|FOB|. ironically expre| +22408|687566|25106|4|34|52820.02|0.07|0.03|N|O|1998-08-30|1998-08-03|1998-09-13|NONE|RAIL|egular, special packages| +22408|920822|8377|5|21|38698.38|0.09|0.04|N|O|1998-06-25|1998-07-27|1998-06-29|NONE|MAIL| until the bold accounts. p| +22409|11455|11456|1|32|43726.40|0.03|0.04|N|O|1996-10-25|1996-11-01|1996-11-03|NONE|TRUCK|counts are. even accounts wake across the| +22409|508070|45601|2|17|18326.85|0.06|0.02|N|O|1996-08-27|1996-10-19|1996-09-10|NONE|RAIL| beans are afte| +22410|643358|30895|1|26|33834.32|0.08|0.02|N|O|1997-06-09|1997-06-11|1997-07-02|COLLECT COD|RAIL|he ironic packages. furiously unusual| +22410|905297|30334|2|39|50787.75|0.09|0.08|N|O|1997-06-11|1997-06-23|1997-06-19|NONE|AIR|. regular deposits serve ca| +22410|316848|4367|3|40|74593.20|0.01|0.02|N|O|1997-08-26|1997-07-16|1997-09-07|DELIVER IN PERSON|SHIP|r, silent excuses haggle fluffily closely | +22410|259057|21563|4|34|34545.36|0.08|0.08|N|O|1997-08-08|1997-07-27|1997-08-30|COLLECT COD|SHIP|ly bold accounts are blithely ag| +22410|961779|24299|5|13|23929.49|0.04|0.02|N|O|1997-06-15|1997-07-23|1997-07-13|COLLECT COD|RAIL|lar dolphins! final inst| +22410|610148|22661|6|8|8464.88|0.01|0.06|N|O|1997-05-31|1997-07-15|1997-06-23|COLLECT COD|SHIP|n accounts use blithely around the f| +22411|856037|43589|1|47|46670.53|0.07|0.04|A|F|1993-05-21|1993-04-14|1993-06-07|DELIVER IN PERSON|AIR|symptotes ar| +22412|313606|38619|1|7|11337.13|0.01|0.03|A|F|1994-09-14|1994-08-02|1994-09-25|NONE|FOB|deposits. s| +22412|764744|39775|2|39|70539.69|0.02|0.08|A|F|1994-07-05|1994-09-05|1994-07-31|DELIVER IN PERSON|AIR| silent accounts. spe| +22412|49801|24802|3|29|50773.20|0.06|0.02|A|F|1994-06-28|1994-09-09|1994-07-20|DELIVER IN PERSON|AIR| deposits wake. busily unusual | +22412|578|25579|4|10|14785.70|0.02|0.03|A|F|1994-07-19|1994-07-31|1994-07-29|COLLECT COD|FOB|ts are care| +22412|702922|2923|5|41|78920.49|0.09|0.04|A|F|1994-07-28|1994-08-28|1994-08-25|DELIVER IN PERSON|TRUCK|furiously. e| +22412|998220|23259|6|26|34272.68|0.06|0.02|R|F|1994-06-25|1994-08-01|1994-07-20|COLLECT COD|FOB|symptotes should sublate slyl| +22412|77114|39616|7|13|14184.43|0.09|0.08|R|F|1994-09-30|1994-09-15|1994-10-25|DELIVER IN PERSON|TRUCK| among the unusual requests. regular d| +22413|50006|37510|1|40|38240.00|0.10|0.03|A|F|1993-04-09|1993-05-31|1993-04-10|DELIVER IN PERSON|MAIL|e quickly accounts. carefully bold foxes w| +22413|436229|48738|2|17|19808.40|0.02|0.00|A|F|1993-05-03|1993-06-16|1993-05-14|NONE|FOB|the fluffily ironic accounts use f| +22414|521116|33627|1|10|11370.90|0.09|0.00|R|F|1993-07-16|1993-07-23|1993-07-31|COLLECT COD|AIR|pendencies. accounts serve ca| +22415|3414|15915|1|1|1317.41|0.07|0.03|A|F|1994-08-14|1994-09-19|1994-08-18|COLLECT COD|TRUCK|the slyly silent p| +22440|864347|14348|1|16|20980.80|0.04|0.04|N|O|1996-06-18|1996-05-09|1996-06-27|NONE|SHIP|uests. final requests haggle | +22440|71375|21376|2|1|1346.37|0.09|0.03|N|O|1996-06-07|1996-05-30|1996-07-06|TAKE BACK RETURN|MAIL|eas use slyly. blithe| +22440|588510|1022|3|36|57545.64|0.03|0.08|N|O|1996-07-26|1996-05-20|1996-08-19|COLLECT COD|RAIL|nic forges. carefully| +22440|73647|36149|4|13|21068.32|0.10|0.02|N|O|1996-07-23|1996-06-30|1996-08-14|NONE|RAIL|its boost along the idly final | +22440|770642|33158|5|7|11988.27|0.00|0.03|N|O|1996-04-17|1996-05-18|1996-05-10|NONE|TRUCK| slyly regular deposits along the c| +22440|166847|29351|6|18|34449.12|0.09|0.08|N|O|1996-08-03|1996-06-22|1996-08-29|TAKE BACK RETURN|AIR|ctions use. slyly ironi| +22441|550255|12767|1|20|26104.60|0.04|0.06|A|F|1994-10-27|1994-12-08|1994-10-31|NONE|FOB|e. slyly final foxes shall hav| +22442|392576|42577|1|14|23359.84|0.04|0.06|N|O|1996-04-04|1996-04-22|1996-04-26|TAKE BACK RETURN|RAIL|y. fluffily bold deposits among the c| +22442|19822|32323|2|14|24385.48|0.07|0.07|N|O|1996-02-08|1996-03-11|1996-02-15|COLLECT COD|AIR|ts are quickly| +22442|140318|15323|3|14|19016.34|0.10|0.02|N|O|1996-05-15|1996-02-24|1996-05-27|TAKE BACK RETURN|REG AIR|y bold requ| +22443|995161|45162|1|34|42708.08|0.09|0.05|N|O|1996-10-21|1996-09-15|1996-11-17|COLLECT COD|TRUCK| the ironic requests; furiously reg| +22443|669365|31879|2|42|56041.86|0.03|0.00|N|O|1996-11-18|1996-10-04|1996-12-13|DELIVER IN PERSON|TRUCK|ackages snooze blith| +22443|10916|23417|3|19|34711.29|0.00|0.02|N|O|1996-10-10|1996-10-01|1996-11-04|NONE|SHIP|onic instructions. ironic, re| +22444|322966|22967|1|7|13922.65|0.08|0.00|N|O|1997-11-21|1997-09-22|1997-12-12|COLLECT COD|TRUCK| regular, fin| +22445|18057|5558|1|3|2925.15|0.00|0.00|N|O|1998-03-31|1998-04-28|1998-04-18|TAKE BACK RETURN|RAIL|even foxes| +22446|774154|24155|1|43|52809.16|0.02|0.02|A|F|1994-04-22|1994-04-07|1994-05-01|DELIVER IN PERSON|TRUCK|unusual deposits across| +22446|193285|5789|2|7|9647.96|0.02|0.06|R|F|1994-04-08|1994-03-13|1994-04-26|COLLECT COD|FOB|te pinto beans. regular requ| +22446|527466|2487|3|27|40322.88|0.01|0.02|A|F|1994-04-22|1994-03-17|1994-05-07|DELIVER IN PERSON|REG AIR|theodolites use furiously af| +22447|191499|29009|1|37|58848.13|0.10|0.03|A|F|1994-07-06|1994-06-14|1994-07-31|COLLECT COD|TRUCK|lent deposits mold care| +22447|515523|40544|2|25|38462.50|0.01|0.01|A|F|1994-08-27|1994-06-14|1994-09-14|TAKE BACK RETURN|FOB|luffily. even, permanent deposits wake fur| +22447|393738|31260|3|49|89754.28|0.05|0.01|R|F|1994-07-29|1994-07-03|1994-08-05|NONE|AIR|posits haggle. regular accounts sleep.| +22447|540297|40298|4|1|1337.27|0.00|0.07|A|F|1994-07-24|1994-07-15|1994-08-07|DELIVER IN PERSON|TRUCK| slyly unusual pinto beans. furiously s| +22447|770740|45771|5|46|83292.66|0.06|0.07|A|F|1994-06-12|1994-07-03|1994-07-11|NONE|TRUCK|c requests are according to t| +22447|821373|46406|6|29|37535.57|0.08|0.08|A|F|1994-06-21|1994-06-18|1994-06-24|COLLECT COD|AIR|quickly around the slyly even ac| +22447|801544|14061|7|8|11564.00|0.01|0.06|A|F|1994-08-27|1994-07-26|1994-09-20|NONE|MAIL|ly. blithely unusual f| +22472|537789|12810|1|24|43842.24|0.01|0.02|A|F|1992-03-16|1992-04-04|1992-04-08|DELIVER IN PERSON|RAIL|thely final asym| +22472|607804|20317|2|2|3423.54|0.08|0.05|R|F|1992-03-30|1992-02-29|1992-04-19|TAKE BACK RETURN|RAIL| pinto beans. furiously ironic| +22472|347611|35130|3|5|8293.00|0.00|0.00|A|F|1992-04-23|1992-04-16|1992-05-02|COLLECT COD|RAIL|ages use doggedly alongs| +22472|294125|31641|4|21|23501.31|0.00|0.03|A|F|1992-05-06|1992-04-17|1992-05-22|DELIVER IN PERSON|FOB|ckly about the slyly ironic ideas. eve| +22473|209550|47063|1|26|37948.04|0.10|0.07|N|O|1997-10-09|1997-10-07|1997-10-18|DELIVER IN PERSON|RAIL|inal theodolite| +22473|893012|18047|2|33|33164.01|0.07|0.05|N|O|1997-09-30|1997-09-23|1997-10-05|DELIVER IN PERSON|SHIP|al accounts. instruction| +22473|839039|1556|3|27|26405.73|0.05|0.04|N|O|1997-09-16|1997-09-19|1997-10-05|DELIVER IN PERSON|RAIL| final, special accounts cajole blithe| +22473|714021|1564|4|42|43469.58|0.09|0.05|N|O|1997-10-16|1997-10-09|1997-10-20|DELIVER IN PERSON|MAIL|ke slyly a| +22474|659553|47093|1|31|46888.12|0.00|0.04|N|O|1997-01-24|1997-02-06|1997-02-15|NONE|AIR|ly bold pinto beans. regular, even account| +22475|319697|7216|1|37|63517.16|0.08|0.04|N|O|1996-10-30|1996-09-21|1996-11-20|COLLECT COD|REG AIR|ets wake furiously. thinly even reque| +22475|143445|43446|2|4|5953.76|0.00|0.02|N|O|1996-08-28|1996-11-06|1996-09-14|NONE|FOB|e furiously even dolphi| +22476|482906|45416|1|19|35888.72|0.05|0.06|N|O|1996-08-19|1996-08-23|1996-09-16|COLLECT COD|FOB|ular deposits. blithely regular pinto | +22476|192627|17634|2|5|8598.10|0.04|0.05|N|O|1996-09-05|1996-07-29|1996-09-24|DELIVER IN PERSON|MAIL|riously ironic packages are flu| +22476|475459|37969|3|33|47336.19|0.07|0.07|N|O|1996-09-12|1996-07-01|1996-09-22|TAKE BACK RETURN|AIR|kages. unu| +22476|24697|24698|4|44|71354.36|0.07|0.04|N|O|1996-08-30|1996-07-18|1996-09-01|DELIVER IN PERSON|RAIL|deposits after the regular, ev| +22476|81293|6296|5|44|56068.76|0.00|0.07|N|O|1996-06-10|1996-06-25|1996-06-13|COLLECT COD|SHIP| carefully final instructions. | +22476|279484|41990|6|16|23415.52|0.03|0.05|N|O|1996-07-10|1996-07-10|1996-07-28|NONE|RAIL|platelets. | +22477|976526|26527|1|10|16024.80|0.07|0.04|A|F|1992-11-23|1992-12-16|1992-11-24|TAKE BACK RETURN|RAIL|nal instructions. bold, express o| +22477|460736|23246|2|32|54294.72|0.03|0.00|A|F|1992-12-04|1993-01-07|1992-12-24|TAKE BACK RETURN|TRUCK| even deposits according to the sly| +22477|583812|33813|3|23|43603.17|0.10|0.06|R|F|1993-02-09|1992-12-17|1993-02-17|DELIVER IN PERSON|FOB|iously close accounts sleep a| +22477|120795|8302|4|42|76263.18|0.01|0.04|R|F|1993-02-15|1992-12-27|1993-03-12|NONE|RAIL|requests according to the furiously ir| +22478|824276|24277|1|20|24004.60|0.05|0.06|A|F|1992-02-16|1992-03-30|1992-03-12|NONE|FOB|the bold, special Tiresias. pe| +22478|601922|26947|2|12|21886.68|0.10|0.03|R|F|1992-03-07|1992-04-10|1992-04-01|TAKE BACK RETURN|REG AIR|lyly blith| +22478|499683|12193|3|23|38701.18|0.10|0.06|R|F|1992-04-03|1992-04-21|1992-04-07|TAKE BACK RETURN|FOB|ies. slyly silent accounts grow | +22478|166107|28611|4|22|25808.20|0.04|0.00|R|F|1992-03-03|1992-03-27|1992-03-04|NONE|MAIL|uickly. deposits hang furiously.| +22479|943838|18875|1|5|9408.95|0.10|0.02|A|F|1994-05-10|1994-07-26|1994-05-20|TAKE BACK RETURN|REG AIR|le. pending pinto beans use blithe| +22479|74181|11685|2|42|48517.56|0.03|0.08|A|F|1994-08-24|1994-07-11|1994-09-07|TAKE BACK RETURN|FOB|osits. pending realms above t| +22479|753279|3280|3|36|47960.64|0.08|0.03|A|F|1994-05-09|1994-06-01|1994-05-10|NONE|MAIL|s cajole slyly | +22504|439070|39071|1|24|24217.20|0.08|0.02|N|O|1995-08-25|1995-10-07|1995-08-26|DELIVER IN PERSON|FOB|xpress, even packages ac| +22504|434113|34114|2|9|9423.81|0.02|0.01|N|O|1995-11-17|1995-08-30|1995-12-06|DELIVER IN PERSON|TRUCK|ffily ironic epitaphs. furious ideas| +22504|121371|46376|3|12|16708.44|0.06|0.02|N|O|1995-09-22|1995-09-04|1995-09-24|TAKE BACK RETURN|AIR|xes. blithely unusual dependenc| +22505|306665|31678|1|3|5014.95|0.08|0.01|N|O|1995-11-22|1996-02-02|1995-12-17|COLLECT COD|FOB|lithely slyly ironic accounts. | +22505|110128|22631|2|12|13657.44|0.08|0.04|N|O|1996-01-01|1996-02-03|1996-01-11|TAKE BACK RETURN|TRUCK|y pending ideas. thinly silent th| +22505|910057|22576|3|30|32010.30|0.00|0.04|N|O|1995-12-21|1995-12-28|1996-01-11|COLLECT COD|SHIP|nts cajole blithely. fur| +22506|520605|45626|1|31|50392.98|0.08|0.00|R|F|1994-10-06|1994-08-04|1994-10-18|COLLECT COD|MAIL|ions kindle quiet pinto beans| +22507|804908|4909|1|8|14502.88|0.03|0.04|A|F|1992-11-07|1992-12-26|1992-11-12|COLLECT COD|FOB|usual requests. permane| +22508|783749|21295|1|7|12828.97|0.04|0.04|N|O|1995-11-12|1995-12-04|1995-12-06|TAKE BACK RETURN|REG AIR| the pending asymptotes. carefully| +22508|458856|33875|2|48|87111.84|0.03|0.08|N|O|1995-11-13|1995-12-23|1995-12-07|DELIVER IN PERSON|MAIL|s. ironic, final packages a| +22508|977262|27263|3|14|18749.08|0.08|0.06|N|O|1995-11-15|1995-12-19|1995-11-17|TAKE BACK RETURN|AIR|dolites boos| +22508|841051|16084|4|16|15872.16|0.09|0.02|N|O|1995-10-17|1995-11-26|1995-11-14|DELIVER IN PERSON|TRUCK| haggle blithely among the pending foxe| +22508|527818|15349|5|34|62756.86|0.03|0.06|N|O|1995-12-29|1995-11-02|1996-01-22|DELIVER IN PERSON|AIR|lithely ironic deposits.| +22508|23027|23028|6|22|20900.44|0.02|0.03|N|O|1995-11-05|1995-12-21|1995-11-13|COLLECT COD|AIR|cording to| +22509|938025|38026|1|9|9566.82|0.09|0.06|R|F|1993-11-09|1994-01-16|1993-11-29|COLLECT COD|TRUCK|ng theodolites wake furiously. slyly ex| +22509|377723|15245|2|23|41416.33|0.01|0.01|R|F|1994-02-08|1994-01-14|1994-03-08|TAKE BACK RETURN|FOB|accounts. slyly pending platelets are| +22510|153489|3490|1|25|38562.00|0.04|0.00|R|F|1994-04-04|1994-03-19|1994-04-05|COLLECT COD|SHIP| above the fluff| +22510|677551|15091|2|14|21399.28|0.08|0.06|A|F|1994-05-20|1994-03-28|1994-06-10|COLLECT COD|RAIL|ng the carefully re| +22511|134960|34961|1|11|21944.56|0.07|0.04|A|F|1995-01-05|1995-03-03|1995-01-29|TAKE BACK RETURN|REG AIR|ly. deposits along| +22536|946252|46253|1|30|38946.30|0.08|0.08|N|O|1997-03-31|1997-05-25|1997-04-26|TAKE BACK RETURN|TRUCK|al theodolites. requests ca| +22537|553397|28420|1|20|29007.40|0.02|0.07|N|O|1995-09-14|1995-09-06|1995-10-07|TAKE BACK RETURN|AIR| cajole slyly unusual packages. c| +22537|933590|33591|2|17|27600.35|0.00|0.07|N|O|1995-07-31|1995-09-16|1995-08-18|COLLECT COD|FOB|nto beans. carefully regular attai| +22538|923616|48653|1|26|42628.82|0.01|0.03|R|F|1992-10-02|1992-08-27|1992-10-19|COLLECT COD|AIR| the quickly bold requests. f| +22538|209353|46866|2|10|12623.40|0.07|0.07|A|F|1992-06-28|1992-07-28|1992-06-29|DELIVER IN PERSON|FOB|deposits. pa| +22538|591262|28796|3|32|43303.68|0.10|0.02|A|F|1992-07-22|1992-07-30|1992-08-15|COLLECT COD|SHIP|ess, bold requests | +22538|334666|34667|4|15|25509.75|0.02|0.03|R|F|1992-09-11|1992-08-07|1992-09-26|COLLECT COD|MAIL| warhorses. quickly ironic requests ar| +22538|718720|43749|5|45|78241.05|0.04|0.08|A|F|1992-08-28|1992-07-08|1992-09-07|COLLECT COD|SHIP|ons use final pi| +22538|511100|11101|6|30|33332.40|0.02|0.00|R|F|1992-07-08|1992-07-28|1992-07-23|NONE|MAIL| after the furiously ironic theo| +22539|470918|8446|1|23|43444.47|0.00|0.02|N|O|1995-12-12|1995-09-18|1995-12-14|DELIVER IN PERSON|MAIL|c accounts solve carefull| +22539|712087|12088|2|32|35169.60|0.07|0.01|N|O|1995-09-20|1995-11-08|1995-09-26|TAKE BACK RETURN|MAIL|ackages are carefully silent dolphins. fi| +22539|44294|19295|3|7|8668.03|0.10|0.08|N|O|1995-09-23|1995-11-03|1995-10-23|DELIVER IN PERSON|SHIP|nding deposits| +22540|456311|31330|1|29|36751.41|0.00|0.01|A|F|1994-08-03|1994-08-22|1994-08-13|DELIVER IN PERSON|RAIL|nic requests. p| +22540|210568|35577|2|46|68013.30|0.10|0.05|R|F|1994-11-12|1994-09-26|1994-11-18|TAKE BACK RETURN|MAIL|nusual foxes hang blithely. iro| +22540|16161|41162|3|27|29083.32|0.08|0.04|A|F|1994-08-03|1994-09-19|1994-08-11|DELIVER IN PERSON|REG AIR|blithely quickly even pinto beans. acc| +22540|603424|15937|4|23|30529.97|0.08|0.00|R|F|1994-10-24|1994-08-19|1994-11-03|TAKE BACK RETURN|MAIL|s wake blithely. slyly expr| +22540|730739|30740|5|27|47781.90|0.05|0.04|R|F|1994-09-18|1994-10-12|1994-10-16|TAKE BACK RETURN|AIR|s. express, si| +22540|527488|27489|6|6|9092.76|0.02|0.06|A|F|1994-08-16|1994-10-02|1994-08-23|COLLECT COD|AIR|gle slyly fi| +22541|83275|33276|1|14|17615.78|0.02|0.08|A|F|1994-09-20|1994-07-06|1994-10-03|COLLECT COD|TRUCK|arefully regul| +22541|587432|24966|2|26|39504.66|0.04|0.00|R|F|1994-08-08|1994-07-02|1994-08-09|DELIVER IN PERSON|MAIL|xes run fluff| +22542|592189|17212|1|11|14092.76|0.00|0.06|R|F|1993-07-09|1993-09-15|1993-08-03|DELIVER IN PERSON|RAIL|lyly express requests wake blith| +22542|914306|14307|2|4|5281.04|0.07|0.07|A|F|1993-07-23|1993-09-03|1993-08-08|NONE|RAIL|ts are furiously even packa| +22542|732065|32066|3|11|12067.33|0.06|0.06|R|F|1993-09-07|1993-08-17|1993-10-02|DELIVER IN PERSON|MAIL|t the instru| +22542|801781|26814|4|30|50482.20|0.05|0.00|A|F|1993-07-21|1993-09-05|1993-08-01|COLLECT COD|TRUCK|e blithely fluffily express pac| +22542|520432|45453|5|46|66810.86|0.06|0.06|A|F|1993-08-17|1993-09-18|1993-09-06|TAKE BACK RETURN|RAIL|s the final, unusual deposits-- d| +22543|880008|17560|1|5|4939.80|0.02|0.01|N|O|1998-01-01|1997-11-12|1998-01-17|TAKE BACK RETURN|FOB|yly alongside of the furiously | +22543|279217|4228|2|10|11962.00|0.01|0.05|N|O|1997-12-13|1997-11-07|1998-01-05|NONE|RAIL|ons wake permanent packages. c| +22568|333703|46210|1|17|29523.73|0.10|0.02|A|F|1993-08-14|1993-09-30|1993-09-12|COLLECT COD|FOB| express platelets. slyly regu| +22568|541841|16862|2|29|54601.78|0.05|0.07|R|F|1993-09-26|1993-08-26|1993-10-19|NONE|RAIL|fluffily even braids. e| +22569|584514|22048|1|13|20780.37|0.01|0.04|A|F|1993-06-05|1993-06-30|1993-06-27|DELIVER IN PERSON|SHIP|ounts; quickly qu| +22569|921841|46878|2|41|76374.80|0.05|0.03|R|F|1993-08-11|1993-06-25|1993-09-01|COLLECT COD|FOB|refully dogged orbits cajole blithely. | +22569|372354|9876|3|4|5705.36|0.03|0.00|R|F|1993-08-15|1993-06-19|1993-09-13|COLLECT COD|TRUCK|eposits. carefully| +22570|53554|41058|1|14|21105.70|0.03|0.05|N|O|1998-02-23|1998-02-16|1998-03-13|DELIVER IN PERSON|REG AIR|lly special in| +22570|81490|18994|2|24|35315.76|0.08|0.02|N|O|1998-04-04|1998-02-02|1998-05-03|DELIVER IN PERSON|RAIL|ronic accounts. blithely unusual r| +22570|589170|14193|3|3|3777.45|0.10|0.08|N|O|1998-02-26|1998-03-12|1998-03-03|COLLECT COD|SHIP|ly special theodoli| +22571|552142|2143|1|42|50153.04|0.07|0.03|N|O|1996-12-12|1997-01-15|1996-12-17|TAKE BACK RETURN|MAIL|ronic excus| +22571|848444|23477|2|45|62658.00|0.00|0.01|N|O|1997-01-31|1997-01-22|1997-02-11|NONE|SHIP|ly. special packages run| +22572|270359|32865|1|32|42538.88|0.06|0.07|A|F|1995-02-21|1995-02-21|1995-03-20|COLLECT COD|SHIP|final deposits. careful, unusu| +22572|913803|38840|2|8|14534.08|0.05|0.00|A|F|1994-12-24|1995-02-17|1995-01-15|COLLECT COD|TRUCK|e furiously sly requests;| +22572|275555|566|3|29|44385.66|0.01|0.06|A|F|1995-02-06|1995-01-12|1995-02-13|DELIVER IN PERSON|MAIL|st the blithely final packages-- slyl| +22572|248625|36138|4|30|47208.30|0.03|0.05|R|F|1995-01-12|1995-01-03|1995-02-01|NONE|RAIL|ggle furiously about the regular pa| +22573|194792|32302|1|27|50943.33|0.01|0.02|N|O|1995-08-25|1995-07-03|1995-09-06|TAKE BACK RETURN|TRUCK|ully final deposits | +22573|865728|40763|2|19|32179.92|0.02|0.08|N|O|1995-07-11|1995-08-20|1995-08-08|TAKE BACK RETURN|FOB|d the closely regul| +22573|278227|3238|3|48|57850.08|0.03|0.02|N|O|1995-09-22|1995-08-08|1995-10-13|COLLECT COD|SHIP|he furiously bold pi| +22573|147903|47904|4|50|97545.00|0.07|0.03|N|O|1995-07-27|1995-07-12|1995-08-18|NONE|SHIP| carefully special platelets. final, qu| +22573|797889|10405|5|29|57618.65|0.04|0.03|N|O|1995-07-05|1995-07-01|1995-07-19|DELIVER IN PERSON|RAIL|sual, unusual packages cajole quickly | +22573|104273|16776|6|13|16604.51|0.00|0.08|A|F|1995-06-06|1995-08-17|1995-06-17|COLLECT COD|REG AIR|furiously ironic forges cajole ca| +22574|812749|298|1|36|59821.20|0.01|0.08|N|O|1997-06-26|1997-07-15|1997-07-25|TAKE BACK RETURN|FOB|hely special packag| +22574|857835|32870|2|2|3585.58|0.02|0.08|N|O|1997-08-01|1997-07-26|1997-08-16|DELIVER IN PERSON|TRUCK| silent, special dolph| +22575|544242|31773|1|34|43731.48|0.07|0.02|R|F|1992-04-30|1992-02-22|1992-05-18|TAKE BACK RETURN|REG AIR|wake furiously above the fluff| +22575|64150|14151|2|28|31196.20|0.09|0.07|R|F|1992-05-11|1992-04-02|1992-06-08|DELIVER IN PERSON|MAIL|fily ironic T| +22575|155057|42567|3|16|17792.80|0.07|0.03|A|F|1992-01-24|1992-04-05|1992-02-05|DELIVER IN PERSON|RAIL|dencies impress permanently. bold, pen| +22575|39698|14699|4|24|39304.56|0.10|0.03|R|F|1992-02-26|1992-04-03|1992-03-01|NONE|SHIP|eas boost blithely. furiously | +22575|194599|19606|5|12|20323.08|0.10|0.05|A|F|1992-05-21|1992-04-09|1992-06-17|TAKE BACK RETURN|REG AIR| quickly final br| +22575|614881|2418|6|1|1795.85|0.10|0.07|A|F|1992-02-20|1992-03-27|1992-03-07|DELIVER IN PERSON|RAIL|ts. requests are alongsid| +22575|295628|20639|7|33|53579.13|0.07|0.08|R|F|1992-04-11|1992-04-13|1992-04-17|NONE|AIR|uests. accounts are c| +22600|609618|34643|1|50|76379.00|0.00|0.06|N|O|1998-05-10|1998-06-25|1998-05-20|TAKE BACK RETURN|FOB| packages alongside| +22600|833941|46458|2|18|33748.20|0.10|0.01|N|O|1998-06-22|1998-06-09|1998-07-16|NONE|TRUCK|he accounts. | +22600|44102|6603|3|9|9414.90|0.03|0.06|N|O|1998-05-26|1998-07-01|1998-06-08|TAKE BACK RETURN|SHIP|s are regular accounts. c| +22601|433114|8131|1|45|47119.05|0.07|0.05|N|O|1996-08-31|1996-11-14|1996-09-13|COLLECT COD|SHIP| closely ironic| +22601|330921|5934|2|41|80028.31|0.02|0.01|N|O|1996-10-30|1996-11-18|1996-11-14|COLLECT COD|AIR|gside of the care| +22601|779050|41566|3|50|56451.00|0.06|0.06|N|O|1996-10-09|1996-11-07|1996-10-13|NONE|FOB|rts. furiously regula| +22602|48884|23885|1|39|71482.32|0.09|0.04|R|F|1994-08-11|1994-07-10|1994-08-12|TAKE BACK RETURN|RAIL|thely regular| +22602|591294|28828|2|44|60951.88|0.00|0.05|R|F|1994-06-27|1994-07-07|1994-07-08|DELIVER IN PERSON|RAIL| unusual requests. even, silent theod| +22603|871760|46795|1|21|36366.12|0.02|0.05|N|O|1998-01-11|1998-01-22|1998-01-15|COLLECT COD|REG AIR|tes cajole across the slyly reg| +22603|655990|18504|2|45|87568.20|0.01|0.08|N|O|1998-02-10|1998-01-23|1998-03-03|NONE|TRUCK|ss requests| +22603|208250|8251|3|7|8107.68|0.03|0.03|N|O|1998-01-11|1998-02-04|1998-01-24|DELIVER IN PERSON|FOB|uests. fur| +22603|42986|30487|4|7|13502.86|0.05|0.05|N|O|1998-01-09|1998-03-06|1998-01-29|DELIVER IN PERSON|TRUCK|ithely regular| +22604|613634|1171|1|19|29404.40|0.10|0.07|N|O|1997-11-18|1998-01-15|1997-12-18|TAKE BACK RETURN|AIR|c theodolites are a| +22604|330178|5191|2|32|38661.12|0.10|0.07|N|O|1997-12-12|1998-01-02|1998-01-01|COLLECT COD|SHIP|ss sautern| +22604|288908|38909|3|7|13278.23|0.05|0.04|N|O|1998-01-21|1998-01-05|1998-02-10|TAKE BACK RETURN|MAIL|riously ironic deposits. regular r| +22604|673528|23529|4|3|4504.47|0.01|0.03|N|O|1997-12-13|1997-12-26|1997-12-17|COLLECT COD|TRUCK|arefully special deposits. always| +22604|980402|5441|5|20|29647.20|0.08|0.06|N|O|1997-12-28|1998-01-20|1998-01-15|TAKE BACK RETURN|TRUCK|ven gifts are after the slyly express ac| +22604|612552|25065|6|30|43935.60|0.03|0.02|N|O|1997-12-12|1998-01-20|1997-12-20|COLLECT COD|MAIL| instruction| +22604|158029|20533|7|32|34784.64|0.01|0.02|N|O|1997-12-19|1997-12-30|1998-01-15|TAKE BACK RETURN|FOB|. regular packages sle| +22605|988627|13666|1|6|10293.48|0.01|0.02|N|O|1997-09-03|1997-07-07|1997-09-18|COLLECT COD|REG AIR|print pending pinto beans! eve| +22606|121072|33575|1|29|31699.03|0.06|0.01|N|O|1996-02-26|1996-03-31|1996-03-10|COLLECT COD|REG AIR|refully according to the| +22606|851938|14456|2|11|20788.79|0.05|0.07|N|O|1996-04-02|1996-04-25|1996-04-10|TAKE BACK RETURN|AIR|final packages across the blithely| +22606|517574|42595|3|32|50929.60|0.05|0.06|N|O|1996-02-28|1996-03-16|1996-03-20|DELIVER IN PERSON|REG AIR|ual instructions. special accounts are | +22606|855942|30977|4|38|72120.20|0.00|0.00|N|O|1996-05-11|1996-04-14|1996-05-16|TAKE BACK RETURN|SHIP|latelets along the| +22606|802029|39578|5|14|13033.72|0.03|0.07|N|O|1996-02-18|1996-03-09|1996-03-07|NONE|MAIL|ses boost careful| +22606|688201|38202|6|26|30918.42|0.09|0.00|N|O|1996-03-05|1996-03-26|1996-03-08|TAKE BACK RETURN|REG AIR|eans poach unusual, blithe acc| +22607|752566|40112|1|34|55030.02|0.04|0.05|A|F|1992-05-24|1992-05-19|1992-06-04|COLLECT COD|RAIL|es. fluffily regular reques| +22632|759643|9644|1|14|23836.54|0.01|0.08|R|F|1994-09-29|1994-09-16|1994-10-20|DELIVER IN PERSON|MAIL|ic, ironic deposits. | +22632|311527|49046|2|7|10769.57|0.09|0.02|A|F|1994-09-26|1994-09-05|1994-09-30|DELIVER IN PERSON|MAIL|ideas use regular theodol| +22633|266324|41335|1|31|39999.61|0.08|0.02|R|F|1994-04-04|1994-06-20|1994-04-28|TAKE BACK RETURN|SHIP|final packages. blit| +22633|91919|29423|2|40|76436.40|0.05|0.08|R|F|1994-07-20|1994-06-11|1994-07-21|TAKE BACK RETURN|AIR|sly regular deposits. fluffily unusual| +22633|874922|49957|3|19|36040.72|0.02|0.05|A|F|1994-04-09|1994-05-10|1994-04-27|COLLECT COD|REG AIR| slyly silent as| +22634|159842|34849|1|35|66564.40|0.10|0.02|R|F|1993-10-27|1993-10-18|1993-11-21|NONE|AIR|ong the accounts. even th| +22635|229614|42119|1|35|54026.00|0.01|0.02|A|F|1993-12-07|1993-10-05|1993-12-13|NONE|SHIP|g blithely along| +22635|112018|49525|2|5|5150.05|0.05|0.00|R|F|1993-12-11|1993-10-08|1993-12-12|DELIVER IN PERSON|MAIL|egular requests maintain al| +22635|678707|16247|3|9|15171.03|0.03|0.05|A|F|1993-09-18|1993-10-05|1993-10-12|COLLECT COD|FOB| idly pending, express ideas; furiously| +22635|13917|38918|4|22|40280.02|0.04|0.01|R|F|1993-11-03|1993-11-17|1993-11-04|COLLECT COD|AIR|ously among the carefull| +22636|489524|27052|1|38|57513.00|0.04|0.06|N|O|1998-01-22|1998-03-09|1998-02-20|COLLECT COD|TRUCK|unts alongside of the slyly final pin| +22636|418240|5765|2|30|34746.60|0.02|0.07|N|O|1998-05-16|1998-04-02|1998-06-08|COLLECT COD|TRUCK|. ideas above the slyly pendi| +22636|350786|13294|3|30|55103.10|0.04|0.03|N|O|1998-03-20|1998-02-28|1998-04-09|DELIVER IN PERSON|RAIL|s. blithely even th| +22636|646265|8778|4|48|58139.04|0.08|0.04|N|O|1998-03-28|1998-03-30|1998-03-29|NONE|AIR| finally after the f| +22636|769993|7539|5|19|39196.24|0.05|0.05|N|O|1998-05-17|1998-02-28|1998-06-01|TAKE BACK RETURN|FOB| foxes. blithely final accounts use careful| +22636|256285|18791|6|30|37238.10|0.01|0.04|N|O|1998-05-08|1998-02-21|1998-05-10|TAKE BACK RETURN|REG AIR|quests. pending, regular requests su| +22637|549506|12017|1|37|57552.76|0.07|0.03|R|F|1992-08-28|1992-08-15|1992-09-21|NONE|RAIL| unusual reque| +22637|535353|47864|2|12|16659.96|0.05|0.03|A|F|1992-07-11|1992-08-22|1992-07-12|COLLECT COD|RAIL|ns hang ironically furi| +22637|670524|45551|3|10|14944.90|0.04|0.04|R|F|1992-08-25|1992-08-01|1992-09-16|DELIVER IN PERSON|TRUCK|egrate accounts. slyly silent | +22637|480700|43210|4|28|47059.04|0.00|0.07|R|F|1992-07-30|1992-09-15|1992-08-23|DELIVER IN PERSON|AIR|express requests thra| +22637|113794|26297|5|48|86773.92|0.05|0.02|A|F|1992-08-19|1992-09-04|1992-08-21|TAKE BACK RETURN|REG AIR|y blithely ironic packages. re| +22637|527329|14860|6|21|28482.30|0.10|0.06|A|F|1992-09-10|1992-08-12|1992-10-08|NONE|REG AIR|s boost. sly| +22637|801840|39389|7|45|78381.00|0.03|0.08|R|F|1992-07-27|1992-07-25|1992-08-11|TAKE BACK RETURN|AIR|lyly final | +22638|524282|11813|1|30|39187.80|0.03|0.03|A|F|1994-09-26|1994-10-22|1994-10-23|NONE|REG AIR|ains. blithe| +22638|594141|44142|2|38|46934.56|0.01|0.06|R|F|1994-10-05|1994-10-26|1994-10-10|DELIVER IN PERSON|TRUCK|t the ironic deposits use bold reques| +22638|722595|22596|3|43|69555.08|0.05|0.02|R|F|1995-01-04|1994-10-29|1995-01-10|DELIVER IN PERSON|TRUCK|the slyly ironic plat| +22638|639179|1692|4|38|42489.32|0.07|0.07|R|F|1994-11-10|1994-11-13|1994-12-10|TAKE BACK RETURN|RAIL|e fluffily. ironic, express excus| +22638|668923|31437|5|17|32162.13|0.05|0.08|R|F|1995-01-05|1994-11-30|1995-01-22|NONE|AIR|nd quickly blithely unusual instructi| +22638|587808|320|6|24|45498.72|0.06|0.00|R|F|1994-11-01|1994-11-09|1994-11-30|NONE|MAIL|sts nag quickly inside the fu| +22638|281554|19070|7|35|53743.90|0.06|0.06|R|F|1994-11-19|1994-11-11|1994-12-19|TAKE BACK RETURN|FOB|ages impress| +22639|75255|25256|1|5|6151.25|0.07|0.02|R|F|1992-10-20|1992-11-06|1992-11-08|DELIVER IN PERSON|RAIL| special asymptotes along the silen| +22639|805026|42575|2|29|26998.42|0.05|0.01|A|F|1993-01-30|1992-12-18|1993-02-11|COLLECT COD|RAIL|leep slyly. slyly ironic | +22639|70758|33260|3|2|3457.50|0.03|0.04|R|F|1993-01-24|1992-11-27|1993-01-29|DELIVER IN PERSON|SHIP|ealthy, final asymptotes use. blithe| +22639|227672|27673|4|48|76783.68|0.04|0.00|A|F|1992-11-19|1992-12-08|1992-12-09|DELIVER IN PERSON|FOB|hely! specia| +22639|482805|7824|5|48|85813.44|0.05|0.08|R|F|1992-11-29|1992-11-23|1992-12-19|NONE|REG AIR|leep carefully. ruthle| +22664|205705|43218|1|49|78923.81|0.09|0.06|N|O|1996-05-12|1996-05-24|1996-06-04|NONE|TRUCK|s. furiously unusual theodolites integ| +22664|277904|15420|2|46|86566.94|0.04|0.05|N|O|1996-04-03|1996-05-09|1996-04-08|TAKE BACK RETURN|TRUCK|indle furiously unu| +22664|731719|6748|3|19|33262.92|0.00|0.03|N|O|1996-03-08|1996-04-21|1996-03-11|COLLECT COD|TRUCK|es are carefully ac| +22664|992369|42370|4|11|16074.52|0.04|0.05|N|O|1996-04-21|1996-03-28|1996-04-30|COLLECT COD|FOB|ve slyly pending excuses.| +22664|730285|30286|5|47|61816.75|0.01|0.05|N|O|1996-03-06|1996-04-21|1996-03-30|TAKE BACK RETURN|RAIL|uickly pending excuses. furiously u| +22664|891949|29501|6|25|48522.50|0.10|0.08|N|O|1996-03-18|1996-05-13|1996-04-12|NONE|AIR|ly ironic accounts cajole. | +22665|685651|23191|1|46|75284.52|0.04|0.03|N|O|1996-05-30|1996-04-24|1996-05-31|TAKE BACK RETURN|SHIP|odolites-- quick dep| +22666|313130|13131|1|29|33150.48|0.08|0.01|N|O|1995-07-06|1995-09-27|1995-07-11|COLLECT COD|SHIP|ly bold platelets wake fu| +22666|767972|17973|2|15|30599.10|0.03|0.04|N|O|1995-08-21|1995-08-22|1995-08-30|DELIVER IN PERSON|RAIL|old asymptotes. final deposits| +22666|289397|39398|3|20|27727.60|0.09|0.08|N|O|1995-07-10|1995-08-19|1995-08-03|DELIVER IN PERSON|TRUCK| blithely special reques| +22666|883703|8738|4|35|59033.10|0.08|0.06|N|O|1995-10-22|1995-08-28|1995-11-15|COLLECT COD|SHIP|fily special platelets wake| +22666|381676|31677|5|1|1757.66|0.03|0.00|N|O|1995-07-26|1995-09-07|1995-08-25|DELIVER IN PERSON|RAIL|al foxes. quick| +22666|819748|32265|6|36|60037.20|0.00|0.01|N|O|1995-09-01|1995-09-17|1995-09-28|NONE|FOB|uickly pending deposits along the furio| +22667|131362|18869|1|26|36227.36|0.01|0.02|N|O|1996-03-30|1996-01-13|1996-04-28|DELIVER IN PERSON|SHIP|lent excuses. slyly regular requests are.| +22667|797880|35426|2|41|81091.85|0.10|0.07|N|O|1995-12-21|1996-03-02|1996-01-01|TAKE BACK RETURN|SHIP|uickly bold deposits| +22667|960831|35870|3|32|60537.28|0.02|0.07|N|O|1996-04-11|1996-02-26|1996-05-05|COLLECT COD|SHIP|ar asymptotes ar| +22667|680614|5641|4|7|11162.06|0.04|0.02|N|O|1995-12-25|1996-02-07|1996-01-04|TAKE BACK RETURN|AIR| use quickly f| +22667|78403|3406|5|33|45586.20|0.03|0.07|N|O|1996-01-08|1996-02-12|1996-01-18|COLLECT COD|AIR|bold pinto beans wake blithely even| +22667|718217|18218|6|30|37055.40|0.01|0.02|N|O|1996-02-05|1996-02-04|1996-02-27|DELIVER IN PERSON|REG AIR|ages. caref| +22667|61086|48590|7|40|41883.20|0.05|0.01|N|O|1996-03-06|1996-01-26|1996-03-30|NONE|REG AIR|e bold ideas. accounts wake above the sile| +22668|672026|34540|1|35|34929.65|0.04|0.02|A|F|1992-07-03|1992-05-28|1992-07-16|COLLECT COD|SHIP|express pinto bea| +22668|738624|13653|2|13|21613.67|0.08|0.00|R|F|1992-04-15|1992-04-20|1992-05-06|DELIVER IN PERSON|TRUCK|sts play furi| +22668|44402|19403|3|23|30967.20|0.10|0.00|A|F|1992-06-19|1992-05-07|1992-07-11|TAKE BACK RETURN|TRUCK|he furiously final requests. accoun| +22668|249569|37082|4|49|74408.95|0.01|0.07|R|F|1992-05-31|1992-05-24|1992-06-28|TAKE BACK RETURN|REG AIR|posits x-ra| +22668|492845|5355|5|30|55134.60|0.01|0.08|A|F|1992-05-24|1992-04-27|1992-06-05|TAKE BACK RETURN|AIR|s wake furiously final asymptotes.| +22668|238073|25586|6|50|50553.00|0.03|0.06|R|F|1992-03-13|1992-05-03|1992-04-07|NONE|RAIL|pending theodolite| +22668|291790|16801|7|12|21381.36|0.04|0.05|A|F|1992-05-07|1992-05-17|1992-05-24|NONE|TRUCK| after the quickly regular requests boos| +22669|106834|19337|1|45|82837.35|0.00|0.04|A|F|1994-04-04|1994-02-05|1994-04-16|TAKE BACK RETURN|AIR|ar, silent accounts. fluffily regu| +22669|556957|19469|2|8|16111.44|0.10|0.02|A|F|1994-02-12|1994-01-25|1994-02-21|TAKE BACK RETURN|REG AIR|es cajole fur| +22669|770034|20035|3|23|25392.00|0.07|0.07|A|F|1994-04-15|1994-03-09|1994-05-08|NONE|AIR|are quickly. unusual courts nag al| +22669|950484|13004|4|33|50636.52|0.08|0.00|A|F|1994-03-23|1994-01-31|1994-04-11|DELIVER IN PERSON|REG AIR|quick requests along the slyl| +22669|783706|33707|5|15|26845.05|0.09|0.02|R|F|1994-02-04|1994-01-28|1994-02-23|COLLECT COD|RAIL|s are after the regular requests. pendi| +22669|741584|4099|6|45|73149.75|0.05|0.06|R|F|1994-04-12|1994-02-22|1994-04-18|DELIVER IN PERSON|FOB|lithely reg| +22669|802055|27088|7|31|29667.31|0.03|0.02|A|F|1994-02-15|1994-02-28|1994-03-09|TAKE BACK RETURN|REG AIR|dogged inst| +22670|124482|36985|1|17|25610.16|0.08|0.00|R|F|1992-09-20|1992-10-17|1992-09-29|TAKE BACK RETURN|FOB|slyly acco| +22670|160527|35534|2|40|63500.80|0.07|0.08|R|F|1992-10-10|1992-10-31|1992-10-18|DELIVER IN PERSON|MAIL|s about the express deposits ca| +22670|971252|46291|3|9|11908.89|0.02|0.08|A|F|1992-11-16|1992-11-30|1992-11-21|DELIVER IN PERSON|FOB|uffily unusual pa| +22670|827715|40232|4|2|3285.34|0.05|0.00|R|F|1992-11-28|1992-11-28|1992-12-27|DELIVER IN PERSON|TRUCK|ages. furiously final p| +22671|954797|4798|1|20|37035.00|0.09|0.02|N|O|1997-07-09|1997-08-01|1997-07-17|NONE|TRUCK|e furiously furiously express | +22671|265379|15380|2|8|10754.88|0.03|0.00|N|O|1997-09-24|1997-07-28|1997-09-26|DELIVER IN PERSON|SHIP|structions. furiously ironi| +22671|215127|2640|3|23|23968.53|0.05|0.01|N|O|1997-07-18|1997-09-16|1997-07-22|TAKE BACK RETURN|REG AIR|en pinto beans nag | +22671|634837|47350|4|44|77959.20|0.00|0.08|N|O|1997-07-17|1997-09-10|1997-08-01|DELIVER IN PERSON|FOB|accounts. a| +22671|688703|1217|5|12|20300.04|0.06|0.02|N|O|1997-07-29|1997-07-30|1997-08-28|TAKE BACK RETURN|AIR| pending, special excuses c| +22671|25623|25624|6|18|27875.16|0.04|0.04|N|O|1997-07-13|1997-07-26|1997-07-21|COLLECT COD|RAIL|thely regular platelets. car| +22671|634143|34144|7|40|43084.40|0.02|0.00|N|O|1997-08-20|1997-08-04|1997-08-30|COLLECT COD|RAIL|play blithely ac| +22696|38980|26481|1|49|94030.02|0.06|0.02|N|O|1998-05-14|1998-05-12|1998-06-07|NONE|REG AIR|e carefully ironic packag| +22696|134140|34141|2|24|28179.36|0.05|0.00|N|O|1998-07-21|1998-05-29|1998-07-28|TAKE BACK RETURN|MAIL|s around the furiously final pac| +22696|488739|38740|3|23|39737.33|0.06|0.00|N|O|1998-06-21|1998-05-17|1998-07-07|DELIVER IN PERSON|SHIP| accounts cajole| +22696|227309|14822|4|17|21016.93|0.01|0.08|N|O|1998-04-10|1998-06-05|1998-04-13|TAKE BACK RETURN|AIR|lar accounts. fluffily even requests hag| +22696|380373|5388|5|38|55227.68|0.09|0.00|N|O|1998-05-09|1998-06-19|1998-05-14|TAKE BACK RETURN|RAIL|es haggle during the blithely final | +22697|314291|14292|1|47|61348.16|0.03|0.06|A|F|1994-05-23|1994-07-17|1994-05-27|NONE|REG AIR|y silent dependencies.| +22697|278179|15695|2|36|41657.76|0.07|0.03|R|F|1994-08-16|1994-06-24|1994-09-08|DELIVER IN PERSON|RAIL| use fluffily. carefully final excus| +22697|342241|42242|3|24|30797.52|0.03|0.07|R|F|1994-07-25|1994-07-06|1994-08-07|COLLECT COD|REG AIR|e carefully after the final pinto beans.| +22697|34902|34903|4|44|80823.60|0.04|0.03|A|F|1994-08-09|1994-07-28|1994-08-25|TAKE BACK RETURN|REG AIR|ake express, ironic| +22697|581195|43707|5|12|15314.04|0.07|0.02|A|F|1994-09-02|1994-06-22|1994-09-21|NONE|REG AIR|riously quic| +22698|761276|48822|1|9|12035.16|0.03|0.08|R|F|1995-01-28|1995-01-25|1995-02-05|NONE|TRUCK|iously carefully regu| +22698|752131|39677|2|50|59155.00|0.03|0.07|A|F|1995-03-29|1995-03-11|1995-04-27|COLLECT COD|TRUCK|lly special theodolites. express, fi| +22698|64310|26812|3|29|36954.99|0.09|0.06|R|F|1995-04-05|1995-03-05|1995-04-29|COLLECT COD|REG AIR|onic accounts sleep furiou| +22698|841740|29289|4|36|60541.20|0.06|0.04|R|F|1995-04-08|1995-03-01|1995-04-16|TAKE BACK RETURN|AIR|nal platelets promise unus| +22699|829490|42007|1|4|5677.80|0.09|0.03|R|F|1992-09-13|1992-08-30|1992-10-07|COLLECT COD|FOB|ending deposits; even depende| +22699|232855|7864|2|21|37544.64|0.04|0.08|R|F|1992-09-27|1992-09-13|1992-10-13|COLLECT COD|FOB|. blithely ir| +22699|592063|29597|3|15|17325.60|0.00|0.06|R|F|1992-09-11|1992-08-06|1992-09-14|TAKE BACK RETURN|TRUCK|ccounts: quickly bold foxes eat furiou| +22700|960327|10328|1|40|55491.20|0.00|0.07|N|O|1997-09-13|1997-09-27|1997-10-06|NONE|FOB|sleep pinto beans. furiously even platelet| +22701|281137|43643|1|5|5590.60|0.00|0.01|A|F|1993-07-17|1993-07-26|1993-07-21|TAKE BACK RETURN|REG AIR|ests along the furiously even depo| +22702|499324|24343|1|19|25142.70|0.07|0.08|N|O|1997-07-29|1997-07-19|1997-07-30|NONE|AIR|final packages: bold requests na| +22702|131248|43751|2|27|34539.48|0.03|0.06|N|O|1997-10-09|1997-08-06|1997-10-21|NONE|RAIL|imes furious deposits cajole ar| +22703|979028|41548|1|42|46493.16|0.04|0.06|N|O|1996-07-31|1996-08-14|1996-08-28|TAKE BACK RETURN|MAIL|s lose fluffily abou| +22703|516686|16687|2|13|22134.58|0.05|0.05|N|O|1996-06-20|1996-08-12|1996-07-13|COLLECT COD|FOB|y ironic platelets; slyly enticing depos| +22728|808948|33981|1|37|68705.30|0.05|0.07|R|F|1993-04-11|1993-05-06|1993-04-20|NONE|RAIL|hinly ironic| +22728|979510|4549|2|49|77884.03|0.07|0.05|A|F|1993-03-05|1993-05-24|1993-03-06|TAKE BACK RETURN|REG AIR|ed to haggl| +22728|610608|48145|3|13|19741.41|0.09|0.05|R|F|1993-05-25|1993-04-03|1993-06-21|TAKE BACK RETURN|AIR|y theodolites. fluffily final | +22728|474978|49997|4|21|41011.95|0.02|0.07|A|F|1993-03-17|1993-05-31|1993-04-10|DELIVER IN PERSON|FOB|ing excuses. carefully bol| +22728|949199|11718|5|22|27459.30|0.10|0.06|A|F|1993-06-18|1993-05-10|1993-06-29|COLLECT COD|TRUCK|es against the grouches affix | +22728|182277|44781|6|1|1359.27|0.07|0.00|R|F|1993-04-23|1993-04-07|1993-04-25|COLLECT COD|MAIL|blithely regular packages.| +22728|528673|3694|7|11|18718.15|0.09|0.01|A|F|1993-05-19|1993-04-15|1993-05-28|COLLECT COD|AIR|al packages detect. slyly r| +22729|397555|35077|1|12|19830.48|0.00|0.00|R|F|1992-08-16|1992-10-06|1992-08-23|TAKE BACK RETURN|RAIL|t slyly abou| +22730|256107|18613|1|16|17009.44|0.10|0.07|N|F|1995-06-09|1995-05-13|1995-06-18|TAKE BACK RETURN|SHIP|lly even packages haggle. theodo| +22730|390253|15268|2|8|10745.92|0.04|0.05|R|F|1995-04-26|1995-05-21|1995-05-24|NONE|MAIL|e. slyly ironi| +22731|628691|3716|1|20|32393.20|0.01|0.01|N|O|1996-03-09|1996-03-10|1996-03-26|COLLECT COD|TRUCK|oze blithe| +22731|406088|43613|2|5|4970.30|0.00|0.07|N|O|1996-03-05|1996-05-01|1996-03-22|NONE|RAIL|tealthy frets affix. sometimes pending pi| +22731|114558|27061|3|44|69192.20|0.09|0.07|N|O|1996-03-19|1996-03-22|1996-04-15|TAKE BACK RETURN|SHIP|final packages sleep slyly. quick| +22732|329415|4428|1|16|23110.40|0.03|0.00|N|O|1996-01-20|1996-03-07|1996-01-24|NONE|AIR|s cajole blithely. blithely pending| +22733|639015|26552|1|6|5723.88|0.06|0.04|A|F|1995-05-11|1995-03-28|1995-05-28|COLLECT COD|REG AIR|ully after the fluffily special | +22733|909307|34344|2|4|5265.04|0.08|0.02|R|F|1995-04-06|1995-02-24|1995-04-29|COLLECT COD|MAIL|sely regular account| +22733|706020|18535|3|4|4103.96|0.05|0.06|R|F|1995-04-20|1995-02-15|1995-05-13|TAKE BACK RETURN|REG AIR|eas are furiously. furiously fina| +22734|60772|48276|1|34|58914.18|0.04|0.05|N|O|1996-08-19|1996-07-28|1996-09-09|NONE|SHIP|ince the quickly express | +22734|389313|39314|2|29|40666.70|0.01|0.05|N|O|1996-07-14|1996-07-27|1996-07-24|COLLECT COD|RAIL|osits are blithely slyly unusual deposit| +22735|693336|30876|1|14|18610.20|0.01|0.01|N|O|1998-03-22|1998-05-11|1998-04-10|COLLECT COD|RAIL| ironic dependencies. special deposits a| +22735|890460|15495|2|44|63818.48|0.07|0.08|N|O|1998-05-26|1998-04-12|1998-06-09|TAKE BACK RETURN|MAIL|ic, final accou| +22760|7742|32743|1|19|31345.06|0.02|0.04|A|F|1993-03-26|1993-03-18|1993-04-15|TAKE BACK RETURN|SHIP|inal theodol| +22760|108905|46412|2|17|32536.30|0.04|0.00|A|F|1993-01-24|1993-02-02|1993-02-22|DELIVER IN PERSON|REG AIR|to beans. carefully unusual asympto| +22760|356728|31743|3|17|30340.07|0.06|0.04|R|F|1993-03-08|1993-02-11|1993-04-02|TAKE BACK RETURN|FOB|gular excuses. furiously bold theodolites | +22760|519643|19644|4|43|71492.66|0.02|0.00|A|F|1993-03-13|1993-03-01|1993-03-20|DELIVER IN PERSON|FOB|hely quickly even dependencies. even | +22760|636702|11727|5|15|24580.05|0.05|0.05|A|F|1993-01-27|1993-02-11|1993-02-12|COLLECT COD|REG AIR|egular, special requests use. fluffily | +22760|46351|33852|6|30|38920.50|0.03|0.06|A|F|1993-03-01|1993-03-21|1993-03-26|DELIVER IN PERSON|SHIP|e about the regular sentiments. quic| +22761|788001|13032|1|23|25046.31|0.02|0.01|N|O|1998-07-29|1998-07-30|1998-08-03|TAKE BACK RETURN|TRUCK|furiously ironic pains alongside of th| +22761|928454|3491|2|28|41507.48|0.04|0.07|N|O|1998-08-31|1998-08-12|1998-09-23|NONE|FOB|y ironic deposits haggle about the | +22761|510194|35215|3|35|42145.95|0.07|0.05|N|O|1998-07-15|1998-08-20|1998-07-18|NONE|MAIL|the carefully ironic sentime| +22761|815987|15988|4|29|55185.26|0.00|0.03|N|O|1998-09-22|1998-09-04|1998-10-15|COLLECT COD|MAIL|press accounts hang blithely across | +22762|527700|2721|1|7|12093.76|0.07|0.05|N|O|1998-02-16|1998-05-13|1998-03-05|COLLECT COD|RAIL| accounts h| +22762|49099|36600|2|1|1048.09|0.06|0.05|N|O|1998-02-22|1998-05-04|1998-03-17|COLLECT COD|SHIP|furiously pending dep| +22762|195987|8491|3|29|60406.42|0.03|0.00|N|O|1998-04-09|1998-04-10|1998-05-02|TAKE BACK RETURN|REG AIR|eposits wa| +22762|941688|41689|4|37|63996.68|0.10|0.08|N|O|1998-05-01|1998-04-06|1998-05-03|DELIVER IN PERSON|FOB|symptotes across the i| +22763|105898|30903|1|26|49501.14|0.08|0.06|N|O|1997-07-06|1997-06-15|1997-07-10|NONE|MAIL|out the furiously ironic pinto bean| +22763|822230|9779|2|26|29956.94|0.08|0.03|N|O|1997-04-06|1997-05-15|1997-04-19|DELIVER IN PERSON|AIR|s sleep fluffily final plat| +22763|203879|3880|3|26|46354.36|0.05|0.08|N|O|1997-05-18|1997-05-25|1997-06-02|TAKE BACK RETURN|RAIL|lar accounts cajole carefully. | +22764|52654|2655|1|44|70692.60|0.05|0.04|R|F|1995-03-13|1995-02-02|1995-03-24|NONE|REG AIR| the carefully regul| +22764|940017|27572|2|38|40164.86|0.08|0.03|R|F|1994-12-29|1995-02-22|1994-12-30|TAKE BACK RETURN|FOB|iously pending requests. eve| +22764|850431|432|3|19|26246.41|0.07|0.04|R|F|1994-12-28|1995-02-12|1995-01-10|DELIVER IN PERSON|RAIL|posits. theodolites nag car| +22764|193055|5559|4|21|24109.05|0.00|0.06|A|F|1995-01-29|1995-02-13|1995-02-04|DELIVER IN PERSON|RAIL|c theodolites try to doze furious| +22764|670295|32809|5|44|55671.44|0.02|0.05|R|F|1994-12-07|1995-01-24|1994-12-10|COLLECT COD|FOB| requests haggle furio| +22764|634102|46615|6|41|42478.87|0.07|0.08|A|F|1995-03-16|1995-03-05|1995-04-04|NONE|TRUCK|omas haggle | +22764|343224|30743|7|20|25344.20|0.06|0.08|A|F|1995-01-01|1995-03-02|1995-01-31|DELIVER IN PERSON|SHIP|n foxes. stealthily ex| +22765|556312|31335|1|46|62941.34|0.03|0.04|N|O|1997-10-01|1997-08-10|1997-10-13|NONE|AIR|ress foxes | +22765|931201|6238|2|44|54215.04|0.02|0.07|N|O|1997-08-01|1997-09-10|1997-08-16|COLLECT COD|AIR|ly express foxes are slowly| +22765|689232|39233|3|49|59838.80|0.05|0.08|N|O|1997-08-12|1997-08-16|1997-08-13|COLLECT COD|MAIL|ly across the bravely daring foxes? | +22765|905734|5735|4|7|12177.83|0.08|0.01|N|O|1997-10-21|1997-08-24|1997-11-03|COLLECT COD|TRUCK|regular pinto beans | +22765|670082|32596|5|14|14728.70|0.04|0.02|N|O|1997-10-13|1997-08-08|1997-11-04|NONE|RAIL|nal, unusual acc| +22766|506996|19507|1|5|10014.85|0.10|0.04|R|F|1994-02-22|1994-03-10|1994-02-23|TAKE BACK RETURN|FOB|y about the quickly final accounts| +22766|78485|40987|2|33|48294.84|0.07|0.00|R|F|1994-04-23|1994-03-30|1994-05-08|TAKE BACK RETURN|SHIP|. even packages use.| +22766|83715|46217|3|48|81538.08|0.06|0.07|R|F|1994-01-27|1994-02-15|1994-02-21|NONE|MAIL| the express instructions. pac| +22767|934644|9681|1|35|58751.00|0.01|0.03|N|O|1996-05-14|1996-07-27|1996-06-10|COLLECT COD|AIR|eans haggle even deposits| +22767|555214|17726|2|28|35537.32|0.02|0.03|N|O|1996-07-02|1996-06-18|1996-07-05|COLLECT COD|TRUCK|y bold reques| +22767|480684|43194|3|6|9987.96|0.04|0.02|N|O|1996-07-31|1996-07-07|1996-08-26|TAKE BACK RETURN|MAIL|oost blithely above t| +22767|852902|2903|4|20|37097.20|0.09|0.00|N|O|1996-05-09|1996-07-08|1996-05-19|TAKE BACK RETURN|TRUCK|rls wake alongside of the ironi| +22767|715161|27676|5|43|50573.59|0.10|0.01|N|O|1996-06-12|1996-06-07|1996-07-07|TAKE BACK RETURN|TRUCK|ts. carefully special deposits wake slyly a| +22767|698425|35965|6|40|56935.60|0.08|0.04|N|O|1996-05-01|1996-05-28|1996-05-12|COLLECT COD|SHIP|unusual packages. unusual, silent dependen| +22792|798282|23313|1|36|49689.00|0.03|0.05|A|F|1994-07-10|1994-07-11|1994-08-07|DELIVER IN PERSON|RAIL|ording to the even instructions ca| +22792|718118|5661|2|18|20449.44|0.03|0.07|A|F|1994-06-04|1994-06-21|1994-06-07|TAKE BACK RETURN|FOB|nding deposits sleep. car| +22792|406897|44422|3|34|61331.58|0.08|0.01|R|F|1994-08-29|1994-07-30|1994-09-27|COLLECT COD|RAIL|to beans use quickly accor| +22792|713587|26102|4|22|35212.10|0.07|0.04|A|F|1994-07-25|1994-06-17|1994-07-26|NONE|TRUCK|affix furiously. final courts after the ca| +22793|60264|22766|1|36|44073.36|0.02|0.08|N|O|1998-08-06|1998-07-28|1998-08-07|TAKE BACK RETURN|TRUCK| theodolites are after the regular orbits| +22793|840946|3463|2|30|56607.00|0.05|0.08|N|O|1998-06-09|1998-08-01|1998-06-28|NONE|TRUCK|instructions wake. enticingly special| +22793|766368|3914|3|11|15777.63|0.09|0.04|N|O|1998-09-09|1998-08-19|1998-09-16|DELIVER IN PERSON|FOB|requests cajole fluffily among the caref| +22793|339200|1707|4|17|21066.23|0.10|0.07|N|O|1998-08-11|1998-07-06|1998-09-05|TAKE BACK RETURN|MAIL|s. quickly regular pa| +22793|931778|31779|5|33|59721.09|0.09|0.06|N|O|1998-07-14|1998-08-17|1998-07-30|NONE|FOB|oxes. regular accounts boost aft| +22793|387434|49942|6|48|73028.16|0.09|0.01|N|O|1998-07-31|1998-08-17|1998-08-23|NONE|RAIL|arefully iro| +22794|117187|42192|1|26|31308.68|0.03|0.02|R|F|1994-08-21|1994-10-18|1994-09-13|TAKE BACK RETURN|SHIP|silent acc| +22795|550874|25897|1|34|65444.90|0.04|0.02|N|O|1997-04-11|1997-04-23|1997-04-15|TAKE BACK RETURN|TRUCK|theodolites among the ideas haggle among th| +22795|531104|6125|2|7|7945.56|0.10|0.00|N|O|1997-05-25|1997-04-28|1997-06-03|NONE|TRUCK|ts wake quic| +22795|261157|11158|3|33|36898.62|0.04|0.06|N|O|1997-05-21|1997-03-27|1997-06-17|NONE|AIR|e carefully express ideas. even, even acc| +22795|262586|102|4|39|60394.23|0.03|0.08|N|O|1997-04-28|1997-03-18|1997-05-20|NONE|AIR| cajole. furiously pending packages h| +22795|277417|27418|5|5|6972.00|0.06|0.06|N|O|1997-02-27|1997-04-17|1997-03-24|NONE|MAIL|packages. slyly final accounts inte| +22795|534982|10003|6|37|74627.52|0.04|0.08|N|O|1997-03-19|1997-04-27|1997-04-14|NONE|REG AIR|ns cajole fluffily si| +22796|897428|9946|1|3|4276.14|0.05|0.07|R|F|1992-01-25|1992-03-22|1992-02-06|TAKE BACK RETURN|TRUCK|ns. slyly regular foxes haggle| +22796|59832|22334|2|22|39420.26|0.05|0.06|A|F|1992-05-03|1992-03-22|1992-05-31|TAKE BACK RETURN|SHIP|ingly ironi| +22796|594080|44081|3|39|45788.34|0.09|0.01|R|F|1992-01-23|1992-02-26|1992-02-16|COLLECT COD|TRUCK| wake carefully packages. blithely | +22796|693748|6262|4|4|6966.84|0.04|0.07|A|F|1992-02-12|1992-02-20|1992-02-21|COLLECT COD|AIR|boldly even requests. instructions | +22797|233291|45796|1|14|17139.92|0.06|0.04|N|O|1997-02-26|1997-02-08|1997-03-07|DELIVER IN PERSON|SHIP|ully fluffily expr| +22797|919580|32099|2|10|15995.40|0.05|0.00|N|O|1997-01-21|1997-02-16|1997-02-10|TAKE BACK RETURN|RAIL|lthily stealthy gifts sleep furi| +22797|366823|4345|3|48|90710.88|0.01|0.00|N|O|1997-05-03|1997-02-15|1997-05-21|COLLECT COD|REG AIR|quickly pending deposit| +22797|193944|6448|4|4|8151.76|0.01|0.08|N|O|1997-01-12|1997-02-28|1997-01-22|NONE|TRUCK|tes. express, ironic deposits cajole above| +22797|601458|26483|5|18|24469.56|0.07|0.01|N|O|1997-03-06|1997-03-16|1997-03-14|NONE|SHIP| furiously regular theodoli| +22797|689397|39398|6|14|19409.04|0.02|0.07|N|O|1997-03-09|1997-03-02|1997-03-14|TAKE BACK RETURN|RAIL| silent deposits. carefully bold | +22797|688118|13145|7|39|43137.12|0.01|0.06|N|O|1997-04-27|1997-02-10|1997-05-23|TAKE BACK RETURN|MAIL|the slyly even reque| +22798|195296|7800|1|13|18086.77|0.01|0.07|N|O|1996-07-22|1996-08-18|1996-08-09|TAKE BACK RETURN|AIR|ly express deposits. careful| +22798|332271|7284|2|5|6516.30|0.01|0.02|N|O|1996-10-03|1996-09-07|1996-10-14|DELIVER IN PERSON|TRUCK|express packages boost| +22798|462827|25337|3|4|7159.20|0.06|0.04|N|O|1996-08-06|1996-09-02|1996-09-02|NONE|MAIL|ar ideas are carefully | +22798|718638|31153|4|42|69577.20|0.02|0.06|N|O|1996-08-06|1996-08-22|1996-08-10|NONE|TRUCK|its. bold dependencies a| +22798|134653|47156|5|16|27002.40|0.06|0.00|N|O|1996-08-19|1996-08-08|1996-08-23|COLLECT COD|SHIP| express requests. fluffily final de| +22798|103404|40911|6|37|52073.80|0.03|0.01|N|O|1996-10-05|1996-08-29|1996-10-08|COLLECT COD|REG AIR|ers above the sl| +22798|896088|46089|7|7|7588.28|0.01|0.08|N|O|1996-10-03|1996-09-26|1996-10-10|TAKE BACK RETURN|MAIL|t deposits. deposits boost final the| +22799|537436|24967|1|16|23574.56|0.10|0.01|N|O|1997-09-26|1997-10-09|1997-10-23|TAKE BACK RETURN|RAIL|sublate blithely.| +22799|671949|34463|2|21|40339.11|0.01|0.00|N|O|1997-09-24|1997-11-25|1997-10-13|DELIVER IN PERSON|SHIP| requests sleep blithely according | +22799|432959|32960|3|42|79461.06|0.01|0.00|N|O|1997-10-19|1997-09-30|1997-11-03|TAKE BACK RETURN|REG AIR|hely bold asymptotes| +22799|726743|14286|4|13|23006.23|0.01|0.06|N|O|1997-11-01|1997-10-03|1997-11-11|NONE|RAIL|. ironic p| +22824|549694|49695|1|20|34873.40|0.04|0.02|A|F|1994-08-03|1994-10-02|1994-08-18|COLLECT COD|REG AIR|ld excuses. furiously regular packag| +22824|700556|25585|2|29|45139.08|0.04|0.03|R|F|1994-08-20|1994-08-28|1994-09-18|COLLECT COD|TRUCK| regular accounts sleep furiously. carefu| +22824|235107|10116|3|48|50020.32|0.08|0.07|R|F|1994-10-27|1994-09-04|1994-11-11|COLLECT COD|MAIL|eodolites. | +22824|429945|42454|4|26|48747.92|0.07|0.07|A|F|1994-11-11|1994-08-28|1994-12-11|COLLECT COD|REG AIR|ptotes use fluffily across th| +22825|684328|46842|1|34|44617.86|0.09|0.00|A|F|1992-07-22|1992-07-25|1992-07-25|COLLECT COD|MAIL|e slyly along the fluffi| +22826|4772|29773|1|33|55333.41|0.02|0.04|A|F|1992-11-13|1992-10-30|1992-11-20|DELIVER IN PERSON|TRUCK|ts. pending| +22826|187164|24674|2|33|41288.28|0.08|0.00|R|F|1992-11-06|1992-11-10|1992-11-26|DELIVER IN PERSON|REG AIR|ake. furiously fina| +22826|660549|23063|3|16|24152.16|0.00|0.07|A|F|1992-11-20|1992-11-19|1992-11-30|COLLECT COD|SHIP|hockey players. ironic| +22826|830776|18325|4|36|61442.28|0.07|0.08|A|F|1992-09-04|1992-11-09|1992-09-29|TAKE BACK RETURN|REG AIR|uickly above the carefully bold r| +22826|844858|44859|5|32|57689.92|0.01|0.07|A|F|1992-12-08|1992-11-10|1992-12-18|DELIVER IN PERSON|SHIP|nic accounts promise ironic, regular pint| +22827|223383|48392|1|43|56173.91|0.01|0.05|N|O|1998-07-26|1998-09-19|1998-08-02|DELIVER IN PERSON|FOB|ly fluffily | +22827|392419|4927|2|50|75570.00|0.07|0.07|N|O|1998-08-05|1998-08-30|1998-08-24|DELIVER IN PERSON|FOB|blithely ironic instructions use quick| +22827|377436|2451|3|24|36322.08|0.10|0.01|N|O|1998-07-05|1998-09-11|1998-07-11|DELIVER IN PERSON|TRUCK|its. carefu| +22827|563058|25570|4|35|39236.05|0.09|0.05|N|O|1998-10-08|1998-09-01|1998-11-07|NONE|TRUCK|nd slyly fur| +22828|823735|48768|1|19|31515.11|0.10|0.02|A|F|1992-01-20|1992-03-22|1992-01-21|NONE|AIR|nstructions on the carefully r| +22828|509567|47098|2|36|56755.44|0.02|0.07|R|F|1992-01-13|1992-03-08|1992-01-31|DELIVER IN PERSON|TRUCK|und the blit| +22829|437549|25074|1|36|53514.72|0.07|0.08|R|F|1993-07-22|1993-07-03|1993-08-20|DELIVER IN PERSON|MAIL|ccounts. car| +22829|879577|4612|2|38|59148.14|0.01|0.01|R|F|1993-07-24|1993-07-30|1993-07-31|TAKE BACK RETURN|MAIL|counts. sile| +22829|40130|15131|3|32|34244.16|0.06|0.02|R|F|1993-09-15|1993-06-29|1993-10-02|DELIVER IN PERSON|FOB|e excuses. slyly even package| +22830|978515|28516|1|38|60551.86|0.03|0.03|N|O|1996-10-13|1996-11-08|1996-10-18|TAKE BACK RETURN|AIR|y after the quickly bold pinto beans. ev| +22830|898445|23480|2|42|60622.80|0.06|0.06|N|O|1996-12-22|1996-11-16|1997-01-09|DELIVER IN PERSON|REG AIR|unusual packag| +22830|154462|29469|3|35|53076.10|0.04|0.04|N|O|1996-12-10|1996-10-27|1997-01-06|NONE|TRUCK|ss pinto beans nag carefully quickly spec| +22830|34765|34766|4|28|47593.28|0.01|0.04|N|O|1996-11-07|1996-12-06|1996-11-08|TAKE BACK RETURN|RAIL| fluffily furi| +22831|218465|30970|1|28|38736.60|0.09|0.00|A|F|1995-03-04|1995-02-16|1995-03-05|NONE|TRUCK|silent instructions use blithely along t| +22856|280884|5895|1|38|70865.06|0.04|0.03|R|F|1994-12-15|1994-10-25|1994-12-23|NONE|AIR|egular pinto beans. pending, ironic| +22856|809134|21651|2|49|51111.41|0.09|0.02|A|F|1994-11-27|1994-10-25|1994-12-25|TAKE BACK RETURN|SHIP|its use along t| +22857|50754|25757|1|41|69894.75|0.08|0.03|A|F|1993-04-24|1993-05-27|1993-05-15|NONE|AIR|uiet accounts. regular, even a| +22857|14855|2356|2|9|15928.65|0.04|0.04|R|F|1993-06-11|1993-06-23|1993-06-19|DELIVER IN PERSON|TRUCK| affix bravely ironic frets. accounts abov| +22857|667331|42358|3|35|45440.50|0.04|0.03|A|F|1993-05-22|1993-07-05|1993-06-20|DELIVER IN PERSON|FOB|en foxes. regular theodolites about| +22857|830469|18018|4|27|37784.34|0.04|0.02|A|F|1993-07-20|1993-07-20|1993-08-15|COLLECT COD|MAIL|s use furiousl| +22858|145787|8290|1|18|32990.04|0.09|0.04|A|F|1994-07-01|1994-08-03|1994-07-11|DELIVER IN PERSON|RAIL|ke after the special ideas. slyl| +22858|234311|46816|2|32|39849.60|0.00|0.03|A|F|1994-09-06|1994-07-21|1994-09-27|NONE|MAIL|tes about the blithely pending packages | +22858|55767|18269|3|50|86138.00|0.04|0.02|R|F|1994-07-13|1994-08-15|1994-08-11|DELIVER IN PERSON|MAIL|al deposits are quickly a| +22858|273163|23164|4|49|55671.35|0.05|0.08|R|F|1994-06-23|1994-09-17|1994-07-14|DELIVER IN PERSON|RAIL|equests boost care| +22858|49129|49130|5|17|18328.04|0.02|0.07|R|F|1994-09-01|1994-08-18|1994-09-21|TAKE BACK RETURN|FOB|hely; even, even t| +22858|704560|17075|6|27|42242.31|0.02|0.08|A|F|1994-07-18|1994-09-02|1994-07-19|COLLECT COD|SHIP|ending, regular packa| +22858|530237|42748|7|20|25344.20|0.07|0.08|R|F|1994-08-16|1994-09-03|1994-08-20|NONE|RAIL|al dolphins nag slyly alongside of the unus| +22859|679747|42261|1|33|56981.43|0.03|0.02|N|O|1996-01-30|1995-12-17|1996-02-28|NONE|AIR| furiously f| +22859|499505|12015|2|43|64692.64|0.07|0.08|N|O|1996-01-17|1995-12-10|1996-02-08|DELIVER IN PERSON|SHIP|l dolphins impress above the s| +22859|178766|28767|3|35|64566.60|0.08|0.07|N|O|1996-01-13|1995-12-27|1996-01-19|TAKE BACK RETURN|AIR|ole furious| +22859|511744|49275|4|22|38625.84|0.06|0.07|N|O|1995-11-28|1995-11-23|1995-12-14|NONE|TRUCK|oxes. blithely unusual requests wake-- pe| +22859|875480|37998|5|48|69861.12|0.06|0.08|N|O|1995-11-12|1995-12-31|1995-11-17|COLLECT COD|TRUCK| integrate blithely slyly regular dolphi| +22859|190910|40911|6|39|78035.49|0.06|0.05|N|O|1996-01-23|1995-11-19|1996-02-18|DELIVER IN PERSON|REG AIR|ckly ironic ideas. bold packages use| +22860|914841|2396|1|13|24125.40|0.00|0.00|N|O|1995-08-16|1995-07-03|1995-08-19|DELIVER IN PERSON|SHIP|se furiously furiou| +22860|729180|16723|2|30|36274.50|0.02|0.00|N|O|1995-08-08|1995-06-17|1995-08-26|DELIVER IN PERSON|AIR|to beans haggle q| +22860|327652|15171|3|21|35272.44|0.00|0.00|N|O|1995-07-06|1995-07-18|1995-07-17|COLLECT COD|RAIL|ng, bold acco| +22860|842775|5292|4|21|36072.33|0.07|0.02|N|O|1995-07-21|1995-08-11|1995-07-24|COLLECT COD|FOB|s are blithely blithely bold deposits.| +22861|299571|24582|1|38|59681.28|0.06|0.05|N|O|1997-06-11|1997-05-10|1997-06-15|TAKE BACK RETURN|AIR|ly regular dependencies. | +22861|877638|40156|2|39|63008.01|0.06|0.05|N|O|1997-03-06|1997-04-16|1997-03-10|NONE|FOB|ges. furiously qu| +22861|459041|46569|3|12|12000.24|0.03|0.06|N|O|1997-04-08|1997-04-08|1997-05-08|COLLECT COD|FOB|tealthy packages use| +22861|98591|48592|4|12|19075.08|0.02|0.07|N|O|1997-06-08|1997-03-29|1997-06-26|TAKE BACK RETURN|REG AIR|onic deposits. blithely ironic ac| +22861|4793|42294|5|10|16977.90|0.09|0.02|N|O|1997-05-02|1997-04-03|1997-05-22|NONE|MAIL| after the carefully even asymptotes wak| +22861|553626|3627|6|33|55426.80|0.06|0.01|N|O|1997-04-15|1997-05-12|1997-04-29|COLLECT COD|AIR|eposits haggle slyly above the deposits. ca| +22862|294383|19394|1|1|1377.37|0.05|0.04|R|F|1993-09-26|1993-11-23|1993-10-23|COLLECT COD|REG AIR|platelets. final, pending deposits sleep | +22863|623218|35731|1|26|29670.68|0.04|0.08|N|O|1996-05-20|1996-03-26|1996-06-10|DELIVER IN PERSON|SHIP|ss the pinto beans? dep| +22863|414756|14757|2|3|5012.19|0.01|0.00|N|O|1996-02-24|1996-04-13|1996-03-18|DELIVER IN PERSON|MAIL|nt blithely above the silent th| +22863|795816|45817|3|18|34412.04|0.04|0.01|N|O|1996-01-27|1996-04-02|1996-02-03|TAKE BACK RETURN|MAIL|structions. b| +22863|273674|36180|4|48|79087.68|0.06|0.03|N|O|1996-04-05|1996-03-18|1996-04-14|TAKE BACK RETURN|AIR|ffily alongside of the fluffy, | +22863|628239|15776|5|16|18675.20|0.09|0.01|N|O|1996-03-06|1996-03-02|1996-03-30|TAKE BACK RETURN|REG AIR|ar instructions; slyly ironic depen| +22888|781359|31360|1|35|50411.20|0.07|0.04|N|O|1995-07-12|1995-06-17|1995-08-01|NONE|FOB|s sleep among the furiously express fox| +22888|289812|39813|2|42|75675.60|0.04|0.06|N|O|1995-08-26|1995-06-06|1995-09-03|COLLECT COD|RAIL|ffily carefully | +22888|859635|34670|3|24|38270.16|0.05|0.06|N|F|1995-06-11|1995-06-06|1995-06-19|DELIVER IN PERSON|MAIL|y final requests poach. plat| +22889|222144|34649|1|49|52240.37|0.00|0.04|A|F|1994-10-31|1994-10-25|1994-11-21|COLLECT COD|MAIL|uffily bold accounts. bold ideas acco| +22889|567914|17915|2|6|11891.34|0.09|0.07|A|F|1994-08-31|1994-10-15|1994-09-23|TAKE BACK RETURN|FOB|regular instructions. carefully spec| +22889|920754|45791|3|47|83411.37|0.00|0.03|A|F|1994-12-05|1994-09-10|1994-12-29|TAKE BACK RETURN|TRUCK|ial requests nag care| +22890|897332|22367|1|29|38549.41|0.08|0.04|R|F|1994-03-20|1994-04-05|1994-03-27|DELIVER IN PERSON|RAIL|ate blithely always even deposits. even, | +22890|445683|20700|2|11|17915.26|0.08|0.00|A|F|1994-06-04|1994-05-20|1994-06-28|TAKE BACK RETURN|AIR|ly ironic deposits| +22890|582964|45476|3|36|73689.84|0.08|0.06|R|F|1994-06-04|1994-04-13|1994-07-01|DELIVER IN PERSON|AIR| accounts wake furiously | +22890|874072|36590|4|21|21966.63|0.09|0.04|R|F|1994-03-30|1994-04-24|1994-04-25|COLLECT COD|MAIL|ve the furiously| +22891|516420|3951|1|48|68947.20|0.06|0.05|N|O|1998-01-19|1998-01-06|1998-02-05|COLLECT COD|TRUCK|ronic deposits. furiously bold pac| +22892|870360|32878|1|27|35918.64|0.04|0.02|N|O|1995-09-25|1995-09-18|1995-09-30|DELIVER IN PERSON|FOB|its wake according to the blithely specia| +22892|137351|37352|2|5|6941.75|0.04|0.00|N|O|1995-11-12|1995-10-26|1995-12-11|TAKE BACK RETURN|TRUCK|ents. ironic, final grouches mold across| +22892|446452|33977|3|18|25171.74|0.09|0.05|N|O|1995-12-07|1995-10-23|1996-01-05|DELIVER IN PERSON|FOB|s wake along the express acco| +22892|513919|13920|4|12|23194.68|0.10|0.04|N|O|1995-08-27|1995-09-30|1995-09-03|DELIVER IN PERSON|RAIL|platelets; fluffy accounts ab| +22892|422238|47255|5|27|31325.67|0.06|0.07|N|O|1995-12-16|1995-10-27|1995-12-23|NONE|RAIL|ly ironic foxes. s| +22892|542514|17535|6|16|24903.84|0.06|0.06|N|O|1995-11-13|1995-09-25|1995-11-27|COLLECT COD|FOB|regular dugouts affix furi| +22892|18811|31312|7|49|84760.69|0.00|0.02|N|O|1995-08-22|1995-11-15|1995-08-27|DELIVER IN PERSON|AIR|l accounts after t| +22893|142634|30141|1|40|67065.20|0.05|0.06|R|F|1994-01-09|1994-01-09|1994-02-08|TAKE BACK RETURN|TRUCK|sly permanent packages wake flu| +22893|233888|46393|2|30|54656.10|0.01|0.00|R|F|1993-11-17|1993-11-14|1993-12-08|COLLECT COD|REG AIR|en packages cajole furious| +22893|945253|20290|3|26|33753.46|0.04|0.05|R|F|1994-01-09|1994-01-04|1994-01-18|DELIVER IN PERSON|REG AIR|ding deposits across the silent accounts s| +22893|851888|26923|4|47|86472.48|0.00|0.00|R|F|1993-12-01|1993-12-14|1993-12-26|TAKE BACK RETURN|RAIL|are carefully frays. blithely bo| +22893|678939|3966|5|20|38358.00|0.06|0.06|R|F|1993-12-19|1993-12-29|1994-01-15|COLLECT COD|SHIP|lites boost furiously. final theodo| +22893|924253|49290|6|50|63860.50|0.10|0.01|R|F|1994-01-26|1993-12-04|1994-02-06|DELIVER IN PERSON|REG AIR|lly silent ideas are amon| +22894|33315|45816|1|1|1248.31|0.02|0.06|R|F|1993-11-02|1993-09-22|1993-12-02|COLLECT COD|REG AIR|ructions. permanent asym| +22894|913202|38239|2|22|26733.52|0.01|0.05|R|F|1993-11-17|1993-10-08|1993-11-25|NONE|SHIP|egular requests wake blithely after the | +22894|180955|30956|3|8|16287.60|0.02|0.02|R|F|1993-08-30|1993-10-10|1993-09-12|DELIVER IN PERSON|SHIP|s. unusual ideas sleep ideas: regular th| +22894|310260|47779|4|28|35567.00|0.07|0.00|R|F|1993-08-26|1993-09-14|1993-09-08|COLLECT COD|FOB| slyly ironic depende| +22894|534653|22184|5|37|62442.31|0.08|0.03|R|F|1993-10-10|1993-10-29|1993-11-06|COLLECT COD|RAIL| even accounts lose carefull| +22895|476042|13570|1|36|36648.72|0.02|0.02|R|F|1992-05-22|1992-05-15|1992-05-23|DELIVER IN PERSON|REG AIR|y even ideas. furio| +22895|825887|13436|2|38|68887.92|0.08|0.02|A|F|1992-07-10|1992-05-04|1992-08-08|NONE|RAIL| haggle abo| +22895|667980|17981|3|11|21427.45|0.09|0.04|A|F|1992-04-20|1992-05-01|1992-05-13|NONE|SHIP| cajole furious| +22895|737023|49538|4|28|29679.72|0.03|0.00|R|F|1992-04-08|1992-04-14|1992-05-04|NONE|REG AIR| nag carefully requests.| +22920|920991|46028|1|38|76454.10|0.04|0.05|N|O|1995-11-23|1995-12-04|1995-12-01|DELIVER IN PERSON|RAIL|y according to | +22920|92806|30310|2|3|5396.40|0.04|0.07|N|O|1995-12-29|1995-12-16|1996-01-08|TAKE BACK RETURN|TRUCK|tions are blithely| +22920|786362|23908|3|8|11586.64|0.09|0.08|N|O|1995-12-04|1995-12-25|1995-12-09|COLLECT COD|RAIL|s are silently special packages? furiously | +22920|382326|7341|4|24|33799.44|0.00|0.03|N|O|1995-11-25|1995-12-30|1995-12-02|TAKE BACK RETURN|TRUCK|thes are dolphins. final accounts do hagg| +22920|744929|19958|5|2|3947.78|0.07|0.05|N|O|1996-02-06|1996-01-15|1996-02-16|NONE|AIR|gular courts. furio| +22921|156288|43798|1|48|64525.44|0.07|0.02|A|F|1995-03-31|1995-03-29|1995-04-02|COLLECT COD|REG AIR|atelets. blithely regular packages use. sly| +22921|722060|47089|2|46|49773.38|0.02|0.02|A|F|1995-01-14|1995-02-16|1995-02-02|NONE|REG AIR|s affix; unusual platelets along the furi| +22921|661973|49513|3|4|7739.76|0.01|0.06|A|F|1995-01-29|1995-02-20|1995-02-09|COLLECT COD|SHIP|osits cajole. express| +22921|775185|12731|4|20|25203.00|0.08|0.06|A|F|1995-03-29|1995-02-15|1995-04-08|TAKE BACK RETURN|FOB|he quickly ironic requests. slyly silent| +22921|525406|427|5|11|15745.18|0.02|0.03|R|F|1995-02-15|1995-03-04|1995-03-05|NONE|FOB|y regular accounts against the qu| +22922|546186|8697|1|10|12321.60|0.05|0.01|N|O|1997-11-19|1997-11-21|1997-12-15|NONE|TRUCK|the furiously final | +22923|801508|14025|1|33|46512.18|0.01|0.04|R|F|1992-08-28|1992-07-01|1992-09-17|TAKE BACK RETURN|RAIL|low ideas cajole furiously ironic w| +22923|930627|43146|2|4|6630.32|0.07|0.08|A|F|1992-05-30|1992-07-23|1992-06-18|TAKE BACK RETURN|MAIL| the unusual, regular acc| +22923|37737|37738|3|46|77037.58|0.05|0.03|R|F|1992-09-19|1992-07-08|1992-10-19|TAKE BACK RETURN|RAIL|old requests cajole fluffily slowly even de| +22923|242321|4826|4|31|39162.61|0.03|0.03|A|F|1992-07-28|1992-07-30|1992-08-15|DELIVER IN PERSON|SHIP|unusual de| +22923|675541|38055|5|4|6066.04|0.00|0.08|A|F|1992-07-15|1992-08-20|1992-07-18|COLLECT COD|FOB| slyly silent, regul| +22923|801767|14284|6|19|31705.68|0.05|0.05|R|F|1992-09-03|1992-08-24|1992-09-08|COLLECT COD|AIR|lphins was fluffi| +22923|297115|9621|7|15|16681.50|0.08|0.03|R|F|1992-07-28|1992-07-26|1992-08-17|COLLECT COD|REG AIR|al accounts wake bli| +22924|600498|13011|1|40|55938.40|0.04|0.07|A|F|1994-09-25|1994-07-20|1994-10-16|COLLECT COD|TRUCK|ronic packages| +22925|807888|45437|1|38|68241.92|0.09|0.07|N|O|1996-10-04|1996-08-30|1996-10-08|TAKE BACK RETURN|AIR|unts cajole b| +22925|159368|21872|2|16|22837.76|0.05|0.07|N|O|1996-09-27|1996-09-25|1996-10-20|COLLECT COD|SHIP|ound the quickl| +22925|485424|47934|3|15|21141.00|0.00|0.00|N|O|1996-09-18|1996-09-02|1996-10-08|COLLECT COD|SHIP|s use furiously regular depo| +22925|515081|2612|4|39|42746.34|0.09|0.05|N|O|1996-09-10|1996-09-15|1996-10-07|DELIVER IN PERSON|MAIL|arefully even accounts. qu| +22925|952418|39976|5|32|47051.84|0.02|0.03|N|O|1996-08-04|1996-09-24|1996-08-24|NONE|SHIP| regular packages. slyly regular depende| +22925|279793|17309|6|20|35455.60|0.05|0.03|N|O|1996-08-11|1996-08-25|1996-08-29|NONE|TRUCK|final pains. accounts cajol| +22926|817290|29807|1|9|10865.25|0.10|0.04|R|F|1994-04-06|1994-04-12|1994-05-03|TAKE BACK RETURN|REG AIR|ously even ex| +22926|179445|29446|2|47|71648.68|0.07|0.05|A|F|1994-03-12|1994-04-26|1994-04-08|TAKE BACK RETURN|RAIL|ess asymptotes. fluffily expre| +22927|773052|48083|1|19|21375.38|0.05|0.08|R|F|1992-11-24|1992-11-12|1992-12-16|COLLECT COD|FOB|old requests. attainments| +22927|668801|31315|2|4|7079.08|0.06|0.06|R|F|1992-10-25|1992-11-02|1992-11-14|COLLECT COD|REG AIR|y pinto beans. blithely dogged theo| +22927|527501|2522|3|41|62667.68|0.03|0.05|R|F|1992-12-29|1992-11-30|1993-01-10|TAKE BACK RETURN|MAIL|y along the blithely express platelets. fin| +22927|695750|33290|4|50|87286.00|0.06|0.01|A|F|1992-11-08|1992-11-13|1992-11-23|DELIVER IN PERSON|MAIL|ngside of the slyly bold accounts | +22952|783953|46469|1|34|69255.28|0.04|0.02|A|F|1993-12-22|1993-11-27|1994-01-03|TAKE BACK RETURN|REG AIR|ts must have to cajole carefull| +22952|893497|31049|2|39|58127.55|0.10|0.04|R|F|1994-01-03|1993-10-18|1994-01-22|COLLECT COD|AIR|ole furiously. blithely regular account| +22952|993278|5798|3|36|49364.28|0.08|0.02|R|F|1993-09-24|1993-11-01|1993-10-22|NONE|RAIL|eodolites. ironic, ironic deposits cajo| +22952|14722|2223|4|21|34371.12|0.08|0.07|A|F|1993-10-01|1993-11-16|1993-10-23|DELIVER IN PERSON|TRUCK|ounts. furiously pend| +22953|703074|40617|1|7|7539.28|0.08|0.03|N|O|1996-09-18|1996-11-08|1996-09-24|TAKE BACK RETURN|RAIL|thely along the regular, silent requests. | +22953|553044|40578|2|28|30716.56|0.07|0.00|N|O|1996-10-27|1996-10-26|1996-11-13|NONE|RAIL|l Tiresias was. blithely bol| +22953|9600|34601|3|23|34720.80|0.04|0.07|N|O|1996-12-13|1996-09-30|1996-12-20|DELIVER IN PERSON|REG AIR|lly regular gi| +22953|340172|40173|4|23|27879.68|0.08|0.08|N|O|1996-08-25|1996-10-17|1996-09-13|COLLECT COD|RAIL|ial platelet| +22953|267994|30500|5|9|17657.82|0.10|0.00|N|O|1996-11-15|1996-09-26|1996-11-23|TAKE BACK RETURN|SHIP|as along the carefully fin| +22953|158758|46268|6|34|61769.50|0.07|0.01|N|O|1996-10-12|1996-09-27|1996-10-14|NONE|SHIP| silent theodolites cajo| +22953|243845|43846|7|50|89441.50|0.08|0.03|N|O|1996-09-20|1996-09-26|1996-10-01|DELIVER IN PERSON|SHIP|bold accounts a| +22954|297054|47055|1|18|18918.72|0.03|0.07|R|F|1993-03-28|1993-03-16|1993-04-24|TAKE BACK RETURN|FOB|te blithely after the blit| +22954|583399|45911|2|6|8894.22|0.09|0.00|R|F|1993-04-03|1993-03-02|1993-04-19|TAKE BACK RETURN|AIR|e finally. pending packages| +22954|175808|38312|3|38|71584.40|0.04|0.05|R|F|1993-02-03|1993-02-11|1993-02-27|TAKE BACK RETURN|TRUCK|ckages within the furiously permanent p| +22954|800681|682|4|30|47449.20|0.01|0.04|A|F|1993-01-26|1993-03-13|1993-02-03|NONE|TRUCK|y final plat| +22955|942281|4800|1|5|6616.20|0.09|0.02|R|F|1994-01-29|1993-12-17|1994-02-07|DELIVER IN PERSON|TRUCK|jole fluffily. final pinto beans before| +22956|552452|14964|1|5|7522.15|0.09|0.05|N|O|1995-12-13|1995-11-25|1995-12-14|TAKE BACK RETURN|REG AIR| the furiously | +22956|50123|25126|2|28|30047.36|0.10|0.03|N|O|1995-10-27|1995-11-22|1995-11-26|DELIVER IN PERSON|REG AIR|y regular packages b| +22956|401720|26737|3|3|4865.10|0.01|0.07|N|O|1995-08-31|1995-10-18|1995-09-28|NONE|FOB|nic theodolites| +22956|692813|5327|4|3|5417.34|0.02|0.00|N|O|1995-11-15|1995-10-23|1995-11-16|TAKE BACK RETURN|FOB|ly across the ironic, ironic deposits. | +22956|98779|11281|5|21|37333.17|0.03|0.02|N|O|1995-12-16|1995-10-03|1996-01-04|NONE|FOB|ecial packages cajole furiously| +22956|164807|2317|6|13|24333.40|0.00|0.03|N|O|1995-12-07|1995-11-03|1995-12-25|DELIVER IN PERSON|FOB|liers. blithely even warthogs sleep again| +22956|908656|46211|7|2|3329.22|0.07|0.01|N|O|1995-11-28|1995-11-08|1995-12-22|NONE|SHIP|ly about the slyly final ideas. blithely re| +22957|768857|6403|1|22|42368.04|0.08|0.08|N|O|1996-05-29|1996-07-21|1996-06-19|TAKE BACK RETURN|REG AIR| beans detect slyly.| +22957|164899|14900|2|27|53025.03|0.09|0.04|N|O|1996-05-24|1996-07-12|1996-05-29|NONE|AIR|egrate slyly. grouch| +22957|442248|4757|3|33|39277.26|0.02|0.02|N|O|1996-06-04|1996-07-11|1996-07-02|DELIVER IN PERSON|TRUCK|ccounts. pending | +22957|861519|49071|4|8|11843.76|0.09|0.07|N|O|1996-05-19|1996-06-26|1996-06-05|TAKE BACK RETURN|AIR|e express, final packages. | +22957|538993|1504|5|47|95502.59|0.01|0.00|N|O|1996-08-09|1996-06-28|1996-08-28|COLLECT COD|SHIP| accounts haggle| +22957|852899|27934|6|24|44444.40|0.04|0.02|N|O|1996-07-22|1996-07-17|1996-08-21|NONE|SHIP|less accou| +22958|29473|16974|1|39|54696.33|0.07|0.02|N|O|1997-09-01|1997-09-03|1997-09-18|TAKE BACK RETURN|SHIP|quickly final pack| +22959|603382|15895|1|3|3856.05|0.00|0.05|N|O|1997-08-09|1997-07-17|1997-09-01|NONE|MAIL|ts above the furious| +22959|39514|14515|2|39|56686.89|0.08|0.05|N|O|1997-05-19|1997-07-15|1997-06-11|COLLECT COD|TRUCK|ecial accounts boost. ironic, even de| +22959|110039|22542|3|31|32519.93|0.10|0.07|N|O|1997-07-31|1997-06-15|1997-08-28|DELIVER IN PERSON|MAIL|efully final foxes | +22984|973749|48788|1|10|18227.00|0.00|0.04|A|F|1992-07-05|1992-08-08|1992-07-23|NONE|MAIL|st the slyly express packages! | +22984|796690|34236|2|49|87546.34|0.06|0.00|A|F|1992-08-14|1992-08-21|1992-08-29|COLLECT COD|SHIP|al pinto beans detect. carefully spe| +22984|965796|15797|3|23|42820.25|0.04|0.06|A|F|1992-09-08|1992-09-14|1992-10-06|TAKE BACK RETURN|FOB|y silent instructions detect accordi| +22984|124870|12377|4|49|92848.63|0.09|0.01|A|F|1992-08-27|1992-09-21|1992-09-23|DELIVER IN PERSON|RAIL|eposits boost | +22984|688705|26245|5|39|66053.13|0.10|0.06|R|F|1992-09-14|1992-09-03|1992-09-26|NONE|SHIP|sts. doggedly fin| +22984|60325|10326|6|42|53983.44|0.10|0.07|A|F|1992-10-05|1992-09-02|1992-10-09|COLLECT COD|REG AIR|eep carefully| +22984|872696|10248|7|16|26698.40|0.04|0.01|A|F|1992-07-09|1992-08-07|1992-07-20|TAKE BACK RETURN|TRUCK|ges. quickly stealthy accounts ha| +22985|392979|17994|1|39|80806.44|0.05|0.08|N|O|1997-10-16|1997-09-08|1997-10-31|DELIVER IN PERSON|MAIL|accounts nag slyly. fluffily final t| +22985|788825|1341|2|31|59327.49|0.08|0.01|N|O|1997-08-13|1997-09-15|1997-08-24|TAKE BACK RETURN|MAIL|ul deposits sleep | +22985|778670|28671|3|15|26229.60|0.07|0.00|N|O|1997-09-27|1997-09-21|1997-10-10|DELIVER IN PERSON|FOB| dugouts wake carefully. carefully sly| +22985|92342|4844|4|3|4003.02|0.07|0.03|N|O|1997-09-03|1997-08-24|1997-09-10|COLLECT COD|SHIP|es wake carefully. pend| +22985|976201|13759|5|48|61303.68|0.02|0.01|N|O|1997-09-29|1997-08-26|1997-10-25|DELIVER IN PERSON|FOB|instructions try| +22985|8942|46443|6|4|7403.76|0.03|0.08|N|O|1997-08-15|1997-09-03|1997-08-30|TAKE BACK RETURN|FOB|g to the ironic, ironic foxes. carefu| +22985|281356|6367|7|38|50818.92|0.00|0.02|N|O|1997-07-23|1997-10-16|1997-08-02|TAKE BACK RETURN|SHIP|ial decoys kindle car| +22986|742591|30134|1|43|70243.08|0.05|0.01|N|O|1996-07-20|1996-09-27|1996-08-12|NONE|MAIL| special instructions across the caref| +22986|726390|13933|2|20|28327.20|0.01|0.00|N|O|1996-10-24|1996-10-06|1996-11-08|TAKE BACK RETURN|SHIP|e blithely above the accounts. sly| +22987|637645|12670|1|45|71217.45|0.06|0.05|A|F|1994-04-19|1994-03-30|1994-05-02|DELIVER IN PERSON|REG AIR|riously regular deposits sleep slyly regul| +22987|885889|10924|2|19|35621.96|0.08|0.08|R|F|1994-04-15|1994-04-20|1994-05-13|DELIVER IN PERSON|REG AIR|accounts. carefully bold acc| +22987|129305|41808|3|11|14677.30|0.09|0.07|R|F|1994-05-27|1994-04-04|1994-06-08|COLLECT COD|RAIL|lithely regular platelets nag| +22987|220221|45230|4|30|34236.30|0.06|0.06|R|F|1994-06-02|1994-03-20|1994-06-14|COLLECT COD|SHIP|ound the unusual sentim| +22988|384908|47416|1|43|85694.27|0.10|0.04|A|F|1994-01-09|1993-11-23|1994-02-04|NONE|TRUCK|en foxes. ironically final de| +22988|136848|11853|2|5|9424.20|0.08|0.04|R|F|1993-09-29|1993-11-22|1993-10-05|TAKE BACK RETURN|RAIL|haggle across| +22988|994263|19302|3|22|29858.84|0.07|0.01|A|F|1993-10-31|1993-11-27|1993-11-10|COLLECT COD|MAIL|ly unusual foxes mold; quickly even pinto| +22989|322889|22890|1|19|36325.53|0.02|0.04|N|O|1998-08-27|1998-08-26|1998-09-02|NONE|TRUCK|leep furiously bold ideas. enticingl| +22989|789027|1543|2|33|36827.67|0.01|0.03|N|O|1998-09-08|1998-07-21|1998-10-05|NONE|AIR|ts. carefully bold| +22990|205231|5232|1|18|20451.96|0.06|0.00|N|O|1995-07-01|1995-04-20|1995-07-09|COLLECT COD|FOB|rays. ironic, b| +22990|313001|25508|2|18|18251.82|0.00|0.06|R|F|1995-03-17|1995-05-20|1995-03-23|TAKE BACK RETURN|AIR|leep furiously. slyly special accounts da| +22990|593188|43189|3|1|1281.16|0.00|0.05|N|O|1995-07-09|1995-05-12|1995-08-06|TAKE BACK RETURN|REG AIR|ts wake slyly| +22990|700365|12880|4|21|28671.93|0.08|0.03|N|F|1995-06-07|1995-05-21|1995-06-24|TAKE BACK RETURN|SHIP|platelets. blithely regular theodolites | +22990|32376|32377|5|48|62801.76|0.04|0.00|R|F|1995-05-30|1995-06-01|1995-06-05|COLLECT COD|MAIL|wake furiously. regular plate| +22990|141667|16672|6|29|49551.14|0.10|0.06|N|O|1995-06-24|1995-05-15|1995-06-30|NONE|AIR|thely even deposi| +22991|332685|7698|1|45|77295.15|0.07|0.06|N|O|1995-10-31|1995-10-09|1995-11-10|COLLECT COD|FOB|cial accounts sublate along | +22991|420453|20454|2|47|64551.21|0.09|0.01|N|O|1995-09-28|1995-10-05|1995-10-25|COLLECT COD|MAIL|ual dugouts against the carefully even d| +22991|549221|36752|3|33|41916.60|0.00|0.03|N|O|1995-10-01|1995-09-24|1995-10-06|COLLECT COD|MAIL|regular requests are. ne| +22991|754874|17390|4|38|73295.92|0.01|0.08|N|O|1995-11-15|1995-09-21|1995-12-11|NONE|TRUCK|r the requests are | +22991|153383|3384|5|5|7181.90|0.00|0.02|N|O|1995-09-30|1995-10-05|1995-10-10|DELIVER IN PERSON|FOB|e slyly alongside of the even a| +22991|904613|29650|6|4|6470.28|0.10|0.05|N|O|1995-11-27|1995-09-13|1995-12-11|COLLECT COD|SHIP|furiously along the | +22991|816163|28680|7|46|49639.52|0.07|0.00|N|O|1995-10-02|1995-09-11|1995-10-23|DELIVER IN PERSON|FOB|mptotes. even theodolites are slyly against| +23016|241674|41675|1|16|25850.56|0.06|0.07|R|F|1994-03-31|1994-03-19|1994-04-17|COLLECT COD|AIR|s. quickly final | +23017|237671|176|1|37|59520.42|0.00|0.03|N|O|1998-02-17|1997-12-28|1998-03-09|COLLECT COD|TRUCK| furiously bo| +23017|521738|46759|2|36|63349.56|0.05|0.06|N|O|1997-12-07|1997-12-06|1997-12-25|COLLECT COD|TRUCK|ts sleep. theodolit| +23017|842419|4936|3|40|54454.80|0.02|0.02|N|O|1997-12-01|1997-12-21|1997-12-24|DELIVER IN PERSON|SHIP|rs cajole carefully. quickly cl| +23017|529493|29494|4|4|6089.88|0.08|0.06|N|O|1998-01-03|1997-12-23|1998-01-23|NONE|MAIL|le foxes. ironic | +23017|187766|270|5|39|72296.64|0.10|0.04|N|O|1998-01-05|1997-12-08|1998-02-02|DELIVER IN PERSON|SHIP|e carefully final | +23017|774339|24340|6|49|69251.70|0.05|0.03|N|O|1997-12-07|1997-12-08|1997-12-10|NONE|MAIL|sits doubt. special p| +23017|299798|37314|7|9|16180.02|0.07|0.05|N|O|1997-12-16|1998-01-10|1997-12-22|COLLECT COD|SHIP|raids cajole about th| +23018|690176|27716|1|38|44313.32|0.01|0.08|N|O|1997-06-10|1997-05-22|1997-06-20|COLLECT COD|RAIL|unusual requests| +23018|777157|14703|2|29|35789.48|0.06|0.05|N|O|1997-05-20|1997-07-16|1997-06-06|COLLECT COD|RAIL|fully ironic requests | +23018|675245|12785|3|1|1220.21|0.04|0.06|N|O|1997-08-08|1997-05-29|1997-08-22|DELIVER IN PERSON|RAIL|bold accounts play s| +23018|830059|5092|4|33|32637.33|0.08|0.03|N|O|1997-05-04|1997-06-20|1997-05-05|TAKE BACK RETURN|SHIP|e of the final, regular ideas; ev| +23018|785659|23205|5|9|15701.58|0.04|0.06|N|O|1997-08-07|1997-05-30|1997-08-13|COLLECT COD|TRUCK|structions. asymptotes towa| +23018|563968|1502|6|7|14223.58|0.08|0.03|N|O|1997-08-02|1997-06-11|1997-08-19|DELIVER IN PERSON|TRUCK|furiously silent instructions. | +23019|836810|36811|1|15|26201.55|0.07|0.07|A|F|1992-01-13|1992-03-30|1992-01-25|NONE|TRUCK|nusual theodoli| +23019|256790|19296|2|30|52403.40|0.01|0.07|A|F|1992-01-29|1992-03-16|1992-02-14|COLLECT COD|MAIL|ic accounts. furiously special i| +23020|715652|15653|1|12|20011.44|0.09|0.02|N|O|1998-06-01|1998-03-30|1998-06-20|COLLECT COD|TRUCK|al, final plat| +23020|947997|35552|2|30|61348.50|0.08|0.04|N|O|1998-06-09|1998-04-29|1998-07-05|TAKE BACK RETURN|MAIL| final requests boost bli| +23020|984633|22191|3|5|8587.95|0.06|0.08|N|O|1998-03-17|1998-05-18|1998-04-10|COLLECT COD|SHIP|express accounts. furiously pending| +23021|748911|36454|1|34|66635.92|0.04|0.07|R|F|1995-04-21|1995-06-18|1995-05-17|DELIVER IN PERSON|RAIL|ccounts are slyly regular platelets. slyly | +23021|941436|41437|2|43|63527.77|0.00|0.07|N|O|1995-07-27|1995-06-15|1995-07-29|NONE|REG AIR|to the final excuses. enticing foxe| +23021|713188|731|3|1|1201.15|0.04|0.00|N|O|1995-06-26|1995-07-03|1995-07-20|DELIVER IN PERSON|REG AIR|s sleep quickly. bold packages wake. furi| +23021|539859|2370|4|22|41774.26|0.02|0.02|N|O|1995-07-05|1995-06-11|1995-07-21|DELIVER IN PERSON|AIR|efully pending excuses haggle quickly| +23021|409774|22283|5|23|38726.25|0.05|0.02|R|F|1995-05-21|1995-06-04|1995-06-01|COLLECT COD|FOB|pecial pinto beans. carefu| +23021|59339|34342|6|45|58424.85|0.09|0.00|N|O|1995-06-22|1995-05-21|1995-07-13|DELIVER IN PERSON|AIR| slyly careful| +23022|494610|32138|1|15|24068.85|0.07|0.08|R|F|1992-04-26|1992-05-17|1992-05-21|TAKE BACK RETURN|TRUCK|the courts. blithel| +23022|906931|6932|2|32|62012.48|0.02|0.00|A|F|1992-05-24|1992-06-29|1992-06-07|NONE|RAIL|eodolites haggle furiously furiou| +23022|788257|38258|3|32|43047.04|0.06|0.00|R|F|1992-07-17|1992-05-14|1992-08-02|NONE|FOB|sly bold p| +23022|233058|20571|4|35|34686.40|0.03|0.04|A|F|1992-06-21|1992-05-24|1992-07-10|TAKE BACK RETURN|RAIL|t the slyly regula| +23022|3664|3665|5|32|50165.12|0.10|0.08|A|F|1992-04-27|1992-06-14|1992-05-21|NONE|FOB|cial platelets. requests after the reques| +23022|566064|16065|6|28|31641.12|0.10|0.03|R|F|1992-06-18|1992-06-05|1992-07-13|NONE|MAIL|e atop the enticing requests.| +23022|826589|26590|7|4|6062.16|0.04|0.07|A|F|1992-07-01|1992-06-08|1992-07-12|COLLECT COD|SHIP|phins: pending requests are. ironic pla| +23023|466600|16601|1|6|9399.48|0.05|0.04|N|O|1998-10-12|1998-09-05|1998-10-23|COLLECT COD|REG AIR|bold requests solve q| +23023|134925|22432|2|33|64677.36|0.07|0.06|N|O|1998-08-01|1998-08-28|1998-08-30|COLLECT COD|RAIL|ular packages. regular,| +23023|678198|15738|3|16|18818.56|0.10|0.06|N|O|1998-08-15|1998-10-13|1998-09-13|COLLECT COD|MAIL| blithely. slyly pending acc| +23023|468618|31128|4|12|19039.08|0.02|0.01|N|O|1998-09-03|1998-09-03|1998-09-18|NONE|RAIL|final theodolites cajole flu| +23023|50050|25053|5|50|50002.50|0.10|0.02|N|O|1998-09-19|1998-09-16|1998-10-19|DELIVER IN PERSON|RAIL|ular patterns engage carefully along the fl| +23023|185463|35464|6|40|61938.40|0.03|0.05|N|O|1998-07-31|1998-09-17|1998-08-10|NONE|MAIL|es. regular, pending requests| +23023|62847|25349|7|48|86872.32|0.03|0.05|N|O|1998-09-04|1998-09-19|1998-10-03|COLLECT COD|AIR|refully careful| +23048|253683|3684|1|40|65466.80|0.06|0.06|A|F|1992-05-05|1992-02-29|1992-05-15|TAKE BACK RETURN|AIR|s unwind caref| +23048|641056|28593|2|50|49851.00|0.00|0.03|A|F|1992-03-08|1992-04-01|1992-03-23|NONE|TRUCK|aggle furiously. requests alongside of | +23048|216126|3639|3|39|40642.29|0.09|0.04|A|F|1992-05-01|1992-03-26|1992-05-05|DELIVER IN PERSON|REG AIR|s use slyly along the| +23048|416505|41522|4|6|8528.88|0.08|0.07|R|F|1992-01-25|1992-02-29|1992-02-24|COLLECT COD|REG AIR|ole carefully carefully silent re| +23048|196316|46317|5|9|12710.79|0.00|0.07|R|F|1992-03-04|1992-02-18|1992-03-25|NONE|MAIL|asymptotes haggle blithel| +23048|470924|8452|6|43|81480.70|0.03|0.01|A|F|1992-05-01|1992-03-16|1992-05-20|COLLECT COD|RAIL|ackages sleep slyly. carefu| +23049|589500|14523|1|18|28610.64|0.07|0.07|N|O|1996-09-10|1996-10-30|1996-10-07|TAKE BACK RETURN|TRUCK|ccounts grow alongside of th| +23050|311848|24355|1|13|24177.79|0.09|0.03|A|F|1993-10-05|1993-10-15|1993-10-12|DELIVER IN PERSON|AIR|ccording to the final| +23050|228684|16197|2|23|37091.41|0.05|0.08|R|F|1993-12-03|1993-11-01|1994-01-02|COLLECT COD|RAIL| cajole quickly ironic,| +23050|486523|24051|3|9|13585.50|0.04|0.03|R|F|1993-10-19|1993-11-06|1993-11-15|DELIVER IN PERSON|MAIL|deas are fluffily: sometim| +23050|985461|47981|4|50|77321.00|0.05|0.03|A|F|1993-10-31|1993-10-24|1993-11-08|TAKE BACK RETURN|SHIP|ongside of the silent, iron| +23051|620160|32673|1|49|52926.37|0.07|0.07|A|F|1994-12-05|1994-10-20|1994-12-20|TAKE BACK RETURN|AIR|ic ideas about the pending, b| +23051|19404|19405|2|41|54259.40|0.07|0.06|A|F|1994-08-31|1994-09-15|1994-09-02|COLLECT COD|AIR| final instructions play carefu| +23052|280043|5054|1|29|29667.87|0.00|0.08|N|O|1998-07-10|1998-06-24|1998-07-28|COLLECT COD|RAIL|t the carefully | +23052|673968|36482|2|26|50490.18|0.00|0.01|N|O|1998-05-15|1998-06-13|1998-05-29|DELIVER IN PERSON|MAIL|press instructions! blithely even p| +23052|365216|2738|3|47|60216.40|0.09|0.01|N|O|1998-07-15|1998-06-25|1998-07-31|COLLECT COD|TRUCK|ged accoun| +23052|170226|32730|4|3|3888.66|0.09|0.07|N|O|1998-05-14|1998-06-30|1998-06-05|DELIVER IN PERSON|FOB|lithely bold requests cajole | +23052|983551|46071|5|3|4903.53|0.04|0.00|N|O|1998-07-08|1998-08-03|1998-08-01|DELIVER IN PERSON|SHIP| final forges. pending, unu| +23052|538758|26289|6|20|35934.60|0.00|0.06|N|O|1998-06-09|1998-07-10|1998-06-28|TAKE BACK RETURN|AIR|ong the blithely e| +23052|895699|33251|7|24|40671.60|0.09|0.01|N|O|1998-07-12|1998-07-24|1998-07-23|NONE|TRUCK| pending platelets wake slyly blit| +23053|4632|29633|1|1|1536.63|0.08|0.00|R|F|1992-06-26|1992-06-30|1992-07-07|COLLECT COD|REG AIR|ccounts sleep among the furiously bl| +23053|844043|6560|2|26|25662.00|0.10|0.05|A|F|1992-07-22|1992-07-09|1992-08-08|NONE|SHIP| affix furi| +23054|629824|4849|1|5|8768.95|0.07|0.08|R|F|1993-11-23|1993-11-17|1993-11-27|COLLECT COD|TRUCK|of the slyly ironic ideas. expre| +23054|442565|42566|2|38|57286.52|0.10|0.00|R|F|1993-11-28|1993-11-13|1993-12-20|NONE|AIR|ickly regular ideas sleep ac| +23054|185086|10093|3|5|5855.40|0.03|0.06|A|F|1993-10-27|1993-10-23|1993-11-06|TAKE BACK RETURN|TRUCK|lyly silent deposits. quick| +23054|726328|38843|4|41|55525.89|0.01|0.04|A|F|1993-12-12|1993-10-24|1994-01-11|DELIVER IN PERSON|RAIL|iously ironic asymptotes| +23054|393504|18519|5|2|3194.98|0.07|0.01|R|F|1994-01-20|1993-12-21|1994-01-25|TAKE BACK RETURN|AIR|y bold accounts detect quic| +23054|614810|14811|6|23|39669.94|0.04|0.05|A|F|1993-10-04|1993-11-15|1993-10-29|DELIVER IN PERSON|TRUCK|inal theodolites detect c| +23054|99266|11768|7|17|21509.42|0.01|0.01|R|F|1993-12-11|1993-12-20|1993-12-19|NONE|AIR| pinto beans. even theodolites sle| +23055|348709|23722|1|37|65034.53|0.10|0.00|A|F|1992-07-19|1992-08-05|1992-08-06|DELIVER IN PERSON|TRUCK|xes. fluffily even depo| +23055|737575|12604|2|1|1612.54|0.04|0.00|A|F|1992-07-05|1992-08-05|1992-08-03|COLLECT COD|SHIP|uickly bold| +23055|408985|8986|3|42|79546.32|0.05|0.05|A|F|1992-07-10|1992-07-06|1992-08-03|TAKE BACK RETURN|AIR|ly after the quickly idl| +23055|810799|23316|4|1|1709.75|0.07|0.00|R|F|1992-05-29|1992-08-03|1992-06-12|TAKE BACK RETURN|FOB| blithely across the final deposit| +23055|85367|47869|5|15|20285.40|0.07|0.03|A|F|1992-07-20|1992-08-02|1992-07-23|DELIVER IN PERSON|REG AIR|ggle blithely alongside of the fluffily| +23055|760356|47902|6|45|63734.40|0.09|0.06|R|F|1992-07-17|1992-08-07|1992-08-03|NONE|RAIL|re to the furiously bold th| +23055|294410|31926|7|49|68815.60|0.10|0.02|A|F|1992-06-03|1992-07-07|1992-07-02|NONE|AIR|the excuses? carefully special | +23080|146628|34135|1|22|36841.64|0.09|0.01|A|F|1995-02-21|1995-04-01|1995-03-21|TAKE BACK RETURN|MAIL|use carefully furiously i| +23080|370769|33277|2|45|82788.75|0.01|0.01|R|F|1995-03-13|1995-05-18|1995-03-31|NONE|REG AIR| at the carefully regul| +23080|500979|38510|3|34|67318.30|0.06|0.05|R|F|1995-03-13|1995-05-03|1995-03-20|TAKE BACK RETURN|REG AIR| after the fluffily special foxes. slyl| +23080|942431|4950|4|20|29467.80|0.09|0.05|R|F|1995-03-26|1995-05-06|1995-03-27|NONE|SHIP| the final accounts. slyly ironic instruct| +23080|436417|48926|5|48|64962.72|0.00|0.02|A|F|1995-03-05|1995-05-18|1995-03-15|COLLECT COD|AIR|ckly pending instructions. | +23080|854808|29843|6|16|28204.16|0.03|0.08|R|F|1995-03-14|1995-05-07|1995-03-18|TAKE BACK RETURN|RAIL|eas over the slyly en| +23080|750134|135|7|44|52100.40|0.00|0.03|A|F|1995-03-17|1995-04-19|1995-03-26|TAKE BACK RETURN|MAIL|accounts. platelets wake blithely a| +23081|488231|25759|1|21|25603.41|0.02|0.00|N|O|1996-05-04|1996-05-06|1996-05-15|COLLECT COD|TRUCK|y. slyly final foxes haggle | +23081|682996|8023|2|17|33642.32|0.07|0.08|N|O|1996-05-04|1996-03-12|1996-05-21|TAKE BACK RETURN|RAIL|ests against the even requ| +23081|104772|17275|3|44|78177.88|0.04|0.07|N|O|1996-03-24|1996-04-19|1996-04-19|COLLECT COD|FOB|ites along the bli| +23081|901966|39521|4|31|61005.52|0.06|0.06|N|O|1996-04-13|1996-03-26|1996-04-17|NONE|SHIP| wake fluffily ironic packages. fi| +23081|337967|474|5|3|6014.85|0.07|0.01|N|O|1996-05-07|1996-04-10|1996-05-11|DELIVER IN PERSON|TRUCK|aggle slyly quickly| +23081|207122|19627|6|24|24698.64|0.03|0.06|N|O|1996-02-17|1996-04-21|1996-02-20|COLLECT COD|MAIL|inly along the bravely express packag| +23082|135203|47706|1|32|39622.40|0.02|0.00|R|F|1992-09-30|1992-08-14|1992-10-11|TAKE BACK RETURN|REG AIR|s. regular, silent | +23083|515795|15796|1|1|1810.77|0.07|0.07|N|O|1997-01-07|1997-01-11|1997-01-08|TAKE BACK RETURN|TRUCK|accounts. instruc| +23083|957067|44625|2|46|51704.92|0.05|0.06|N|O|1997-03-14|1997-01-27|1997-04-03|NONE|SHIP| to are slyly quickly final platel| +23083|409968|22477|3|8|15023.52|0.09|0.07|N|O|1996-12-15|1997-03-06|1996-12-21|NONE|AIR| sleep quickly around the regular packages.| +23083|321558|21559|4|19|30011.26|0.02|0.01|N|O|1996-12-31|1997-01-20|1997-01-24|COLLECT COD|SHIP|ly deposits integrate furiously| +23084|959224|34263|1|17|21814.06|0.03|0.08|N|O|1995-12-18|1995-12-02|1996-01-02|NONE|TRUCK|sly ironic requests nag; quickly| +23084|676940|14480|2|10|19169.10|0.04|0.07|N|O|1995-09-25|1995-10-18|1995-10-03|TAKE BACK RETURN|MAIL|ously special requests nag furious| +23084|328773|3786|3|25|45044.00|0.08|0.03|N|O|1995-10-04|1995-10-20|1995-10-11|TAKE BACK RETURN|REG AIR|into beans are slyly along the fur| +23084|672808|10348|4|42|74792.34|0.10|0.08|N|O|1995-10-03|1995-11-13|1995-10-09|NONE|FOB|ing, ruthless foxes wake blith| +23085|888069|587|1|4|4228.08|0.07|0.00|R|F|1992-08-23|1992-11-02|1992-09-19|TAKE BACK RETURN|AIR|ronic deposits abo| +23085|768046|18047|2|8|8912.08|0.02|0.04|R|F|1992-09-13|1992-09-30|1992-09-20|COLLECT COD|SHIP|es are quickly furiousl| +23085|535449|10470|3|18|26719.56|0.05|0.04|A|F|1992-09-07|1992-10-25|1992-09-23|DELIVER IN PERSON|RAIL|sauternes wake careful| +23085|278028|28029|4|24|24144.24|0.05|0.06|A|F|1992-09-25|1992-10-27|1992-09-27|TAKE BACK RETURN|SHIP|the regular deposits. regul| +23086|61336|11337|1|27|35027.91|0.04|0.05|N|O|1996-05-25|1996-07-12|1996-06-24|NONE|MAIL|y even foxes are fluffily. | +23086|865317|40352|2|25|32056.75|0.04|0.00|N|O|1996-08-15|1996-06-25|1996-08-28|NONE|FOB| even ideas about the carefully final| +23086|370133|32641|3|12|14437.44|0.03|0.07|N|O|1996-08-24|1996-06-20|1996-09-20|TAKE BACK RETURN|RAIL|blithely pending ideas. | +23086|819980|19981|4|20|37998.80|0.00|0.02|N|O|1996-08-28|1996-06-20|1996-09-27|NONE|SHIP|nst the regular| +23086|403752|16261|5|42|69540.66|0.00|0.01|N|O|1996-06-03|1996-06-27|1996-06-07|NONE|RAIL|deposits haggle. fluffily ironic | +23087|326712|39219|1|47|81718.90|0.05|0.04|R|F|1992-12-22|1993-01-11|1992-12-24|TAKE BACK RETURN|RAIL|deposits use slyly abou| +23087|33485|8486|2|1|1418.48|0.03|0.01|R|F|1992-12-24|1992-12-05|1993-01-08|TAKE BACK RETURN|TRUCK| instructions| +23087|778240|40756|3|2|2636.42|0.02|0.08|A|F|1993-01-18|1993-01-19|1993-01-26|COLLECT COD|REG AIR|telets. ir| +23112|193154|43155|1|24|29931.60|0.10|0.03|N|O|1997-01-15|1996-12-21|1997-01-28|TAKE BACK RETURN|AIR|re silently final, special excuses. c| +23112|333923|33924|2|31|60664.21|0.00|0.01|N|O|1996-10-05|1996-10-22|1996-10-14|DELIVER IN PERSON|FOB|iet excuses according to | +23112|227114|2123|3|50|52055.00|0.06|0.07|N|O|1996-11-03|1996-11-02|1996-11-13|NONE|RAIL|al requests. blithely final somas| +23113|38669|26170|1|17|27330.22|0.03|0.00|N|O|1996-09-21|1996-09-17|1996-10-10|NONE|REG AIR|ic theodolites! ironic accounts| +23114|874953|37471|1|37|71332.67|0.09|0.01|R|F|1993-03-09|1993-01-10|1993-03-20|TAKE BACK RETURN|RAIL|inal deposits. regul| +23114|334388|21907|2|35|49782.95|0.00|0.08|A|F|1993-03-05|1992-12-29|1993-04-02|COLLECT COD|AIR|xes above t| +23114|42738|42739|3|29|48741.17|0.10|0.07|R|F|1993-01-02|1993-01-29|1993-01-08|NONE|SHIP|e carefully across t| +23114|286507|49013|4|41|61233.09|0.02|0.08|R|F|1993-02-11|1993-01-22|1993-03-06|NONE|AIR|g furiously| +23114|314992|14993|5|41|82286.18|0.06|0.06|A|F|1992-12-16|1993-01-02|1993-01-05|NONE|RAIL|ns. furiously fina| +23114|69848|19849|6|3|5453.52|0.01|0.03|R|F|1993-02-10|1992-12-28|1993-02-13|COLLECT COD|SHIP|sits. slyly ironic pinto beans haggle | +23114|934587|47106|7|34|55132.36|0.02|0.01|R|F|1993-01-20|1993-02-16|1993-01-22|NONE|SHIP|courts! silent courts haggle slyl| +23115|594035|31569|1|30|33870.30|0.03|0.04|N|O|1996-10-21|1996-10-19|1996-11-16|TAKE BACK RETURN|RAIL|ges. regular, unusual foxes poach carefu| +23116|305646|18153|1|15|24774.45|0.02|0.03|N|O|1996-08-04|1996-06-03|1996-08-20|COLLECT COD|SHIP|oss the quickly ironic instructi| +23117|57161|7162|1|47|52553.52|0.00|0.05|R|F|1993-08-09|1993-09-11|1993-09-08|TAKE BACK RETURN|SHIP|cording to t| +23117|696524|34064|2|38|57778.62|0.06|0.08|A|F|1993-07-20|1993-08-19|1993-07-30|NONE|AIR| orbits haggle slyly bold requests. fina| +23117|469894|7422|3|14|26094.18|0.05|0.07|R|F|1993-09-09|1993-09-25|1993-10-02|DELIVER IN PERSON|FOB|y regular pains affix furio| +23117|494435|19454|4|41|58605.81|0.07|0.05|R|F|1993-09-10|1993-09-18|1993-09-18|COLLECT COD|FOB|ions. even packages use furiously| +23117|961117|23637|5|47|55369.29|0.01|0.00|A|F|1993-09-16|1993-08-28|1993-09-19|NONE|TRUCK|lar depths. eve| +23118|928608|16163|1|22|36004.32|0.00|0.03|A|F|1994-01-05|1993-11-21|1994-02-01|COLLECT COD|TRUCK|iously ironic accou| +23118|108971|8972|2|43|85138.71|0.00|0.03|A|F|1993-11-23|1993-12-26|1993-12-10|COLLECT COD|SHIP|ironic pinto be| +23118|464691|39710|3|41|67882.47|0.08|0.05|A|F|1993-11-15|1993-12-16|1993-11-26|TAKE BACK RETURN|SHIP|across the pending,| +23118|61235|48739|4|3|3588.69|0.03|0.01|A|F|1994-02-15|1993-12-04|1994-02-19|DELIVER IN PERSON|MAIL|es sleep regular packages. packag| +23118|170955|45962|5|7|14181.65|0.05|0.01|A|F|1993-11-03|1994-01-13|1993-11-17|TAKE BACK RETURN|RAIL|ironic requests p| +23119|402091|39616|1|48|47667.36|0.01|0.05|N|O|1996-11-11|1996-11-26|1996-12-10|DELIVER IN PERSON|SHIP|al deposits boost carefu| +23119|940682|3201|2|19|32730.16|0.07|0.08|N|O|1996-11-14|1996-12-27|1996-11-22|TAKE BACK RETURN|FOB|are among the carefully express p| +23119|30431|42932|3|31|42204.33|0.00|0.04|N|O|1997-01-15|1996-11-11|1997-01-19|DELIVER IN PERSON|SHIP|oss the regular ac| +23119|449569|37094|4|23|34926.42|0.03|0.00|N|O|1996-11-09|1997-01-06|1996-11-16|DELIVER IN PERSON|MAIL|ccounts. slyly final deposi| +23119|895472|33024|5|34|49892.62|0.02|0.03|N|O|1996-10-11|1996-11-29|1996-11-10|DELIVER IN PERSON|TRUCK|itaphs. unusual pinto| +23119|182155|32156|6|23|28454.45|0.04|0.02|N|O|1996-12-27|1996-11-17|1996-12-28|COLLECT COD|TRUCK|refully pending| +23119|472936|47955|7|13|24815.83|0.02|0.07|N|O|1996-11-08|1996-11-14|1996-11-09|TAKE BACK RETURN|FOB|al requests sleep| +23144|629819|17356|1|34|59458.52|0.01|0.00|N|O|1996-07-28|1996-06-03|1996-08-07|COLLECT COD|RAIL|lites haggle carefully final platelet| +23144|353642|28657|2|42|71216.46|0.01|0.04|N|O|1996-04-21|1996-06-03|1996-05-03|TAKE BACK RETURN|RAIL|uests against the evenly special| +23144|652737|27764|3|50|84485.00|0.07|0.04|N|O|1996-05-29|1996-05-14|1996-06-05|DELIVER IN PERSON|FOB|inly slow asympto| +23144|538658|26189|4|10|16966.30|0.00|0.00|N|O|1996-06-16|1996-05-22|1996-06-27|NONE|FOB|uests use. f| +23144|210705|48218|5|19|30698.11|0.00|0.08|N|O|1996-04-10|1996-05-27|1996-04-17|NONE|SHIP|ular, even deposits haggle al| +23145|827779|15328|1|38|64855.74|0.07|0.06|N|O|1995-08-10|1995-07-08|1995-09-03|COLLECT COD|AIR|yly ironic deposits. unusual| +23145|476662|26663|2|15|24579.60|0.03|0.05|N|O|1995-08-14|1995-07-02|1995-09-08|COLLECT COD|MAIL|lyly even packages are across the fi| +23145|243222|18231|3|46|53599.66|0.09|0.00|N|O|1995-08-14|1995-07-19|1995-09-13|COLLECT COD|AIR| regular requests integrate | +23145|830115|42632|4|34|35532.38|0.09|0.07|N|O|1995-07-15|1995-06-24|1995-07-16|COLLECT COD|SHIP|. quickly bold waters use slyly | +23145|734763|9792|5|16|28763.68|0.05|0.03|N|O|1995-08-23|1995-06-14|1995-08-25|NONE|RAIL|e around th| +23146|338308|13321|1|13|17501.77|0.00|0.02|N|O|1998-02-15|1998-04-10|1998-02-21|DELIVER IN PERSON|TRUCK|ole carefully packages. pinto beans affi| +23146|939671|39672|2|2|3421.26|0.08|0.02|N|O|1998-04-26|1998-03-14|1998-05-19|COLLECT COD|MAIL|fully unusual depend| +23146|47382|47383|3|22|29246.36|0.01|0.06|N|O|1998-04-01|1998-03-20|1998-04-27|DELIVER IN PERSON|SHIP|equests wake sly| +23146|343130|30649|4|8|9384.96|0.08|0.02|N|O|1998-02-22|1998-04-03|1998-03-17|COLLECT COD|FOB|accounts. furiously even dependencies caj| +23146|969625|7183|5|38|64394.04|0.01|0.01|N|O|1998-04-07|1998-04-08|1998-05-03|TAKE BACK RETURN|TRUCK|xcuses. regular id| +23147|12589|12590|1|25|37539.50|0.04|0.07|R|F|1994-08-15|1994-08-13|1994-08-17|NONE|SHIP|dolites. regula| +23147|571438|8972|2|38|57357.58|0.03|0.08|A|F|1994-07-20|1994-09-14|1994-08-17|DELIVER IN PERSON|AIR| final courts. doggedl| +23147|152156|39666|3|8|9665.20|0.05|0.02|R|F|1994-10-21|1994-09-02|1994-11-10|COLLECT COD|RAIL|ts. carefully special epi| +23147|282513|20029|4|10|14955.00|0.04|0.02|A|F|1994-08-10|1994-09-22|1994-08-11|DELIVER IN PERSON|SHIP|y regular accounts. furiously regular instr| +23147|189757|27267|5|38|70176.50|0.06|0.00|A|F|1994-07-10|1994-09-10|1994-07-11|COLLECT COD|MAIL|ular packages boost fl| +23148|307953|32966|1|16|31375.04|0.03|0.02|N|O|1996-01-27|1996-01-07|1996-02-24|TAKE BACK RETURN|RAIL| ironic, special instructions kindle sly| +23148|757403|7404|2|13|18984.81|0.08|0.04|N|O|1996-02-07|1996-01-20|1996-02-15|COLLECT COD|TRUCK|es. bold pinto beans nag accounts. slyl| +23148|671332|46359|3|6|7819.80|0.09|0.03|N|O|1996-03-02|1996-01-06|1996-03-15|NONE|RAIL|ithely slyly un| +23148|63982|38985|4|32|62271.36|0.03|0.05|N|O|1996-01-07|1996-02-16|1996-01-11|NONE|TRUCK|lphins. ironic, bold accounts detec| +23149|153422|28429|1|36|53115.12|0.03|0.07|R|F|1994-12-09|1994-12-10|1994-12-16|TAKE BACK RETURN|SHIP|ously bold requests. quickly| +23149|559789|22301|2|47|86891.72|0.08|0.01|A|F|1994-12-08|1994-11-19|1994-12-14|COLLECT COD|RAIL|ly boldly even accounts. furiously ir| +23149|370560|20561|3|10|16305.50|0.07|0.04|A|F|1995-01-03|1994-10-29|1995-01-12|COLLECT COD|MAIL| pending, pending| +23149|985616|35617|4|20|34031.40|0.02|0.05|A|F|1995-01-13|1994-11-09|1995-01-16|TAKE BACK RETURN|REG AIR|ly epitaphs. blithely final dolphins after | +23149|245669|45670|5|14|22605.10|0.00|0.05|R|F|1994-11-11|1994-11-10|1994-12-01|DELIVER IN PERSON|REG AIR|alongside of| +23150|222872|47881|1|31|55640.66|0.04|0.08|R|F|1994-09-09|1994-09-05|1994-09-17|DELIVER IN PERSON|AIR|ly even hockey players | +23150|809467|9468|2|7|9634.94|0.08|0.05|A|F|1994-09-29|1994-07-31|1994-09-30|TAKE BACK RETURN|REG AIR|final deposits. quickly ruthle| +23150|699776|24803|3|11|19533.14|0.02|0.08|A|F|1994-08-04|1994-09-21|1994-08-21|NONE|REG AIR|ss foxes. quickly regular deposi| +23150|118761|43766|4|28|49833.28|0.06|0.01|A|F|1994-07-24|1994-08-17|1994-08-17|DELIVER IN PERSON|SHIP|egular account| +23150|14653|27154|5|3|4702.95|0.05|0.08|R|F|1994-08-06|1994-07-29|1994-08-28|DELIVER IN PERSON|MAIL|sts unwind above the blithely fi| +23151|357427|7428|1|20|29688.20|0.07|0.03|N|O|1996-10-22|1996-10-20|1996-11-06|TAKE BACK RETURN|TRUCK|nticingly even pinto be| +23151|261655|24161|2|4|6466.56|0.01|0.04|N|O|1996-08-26|1996-10-29|1996-09-16|TAKE BACK RETURN|FOB|ests doubt theodolites. fluffy d| +23151|621782|34295|3|2|3407.50|0.08|0.04|N|O|1996-09-01|1996-10-25|1996-09-14|TAKE BACK RETURN|TRUCK| pearls maintain slyly| +23151|289714|39715|4|10|17037.00|0.00|0.02|N|O|1996-08-19|1996-10-08|1996-09-09|COLLECT COD|RAIL|oxes use blithely after the | +23151|223118|48127|5|49|51013.90|0.03|0.06|N|O|1996-08-25|1996-11-14|1996-09-18|TAKE BACK RETURN|AIR|ar foxes. slyly ruthless | +23151|933032|8069|6|31|33014.69|0.05|0.03|N|O|1996-10-14|1996-10-26|1996-10-26|COLLECT COD|AIR| about the bold, pending pearls wake | +23151|461130|11131|7|27|29459.97|0.00|0.05|N|O|1996-12-12|1996-10-09|1997-01-11|COLLECT COD|TRUCK| haggle across the ironic| +23176|206525|19030|1|44|62986.44|0.07|0.03|A|F|1992-09-11|1992-08-25|1992-09-15|COLLECT COD|FOB|haggle slyly carefully regular ideas. fl| +23176|54811|29814|2|42|74164.02|0.03|0.06|A|F|1992-09-23|1992-08-16|1992-10-19|TAKE BACK RETURN|REG AIR|leep quietly after the slyly furiou| +23176|199405|24412|3|45|67698.00|0.04|0.07|A|F|1992-07-14|1992-09-13|1992-08-05|NONE|REG AIR|theodolites use silen| +23177|217421|17422|1|42|56213.22|0.02|0.08|R|F|1995-05-06|1995-06-23|1995-05-09|COLLECT COD|REG AIR|xes. pending foxes believe car| +23177|181208|43712|2|48|61881.60|0.10|0.08|N|O|1995-08-18|1995-06-20|1995-09-16|DELIVER IN PERSON|TRUCK|ans; regular, unusual packages s| +23177|550564|25587|3|45|72654.30|0.07|0.02|N|O|1995-07-20|1995-06-17|1995-08-06|DELIVER IN PERSON|AIR|. ironic somas after the requests sl| +23177|313655|26162|4|44|73420.16|0.08|0.07|N|O|1995-08-17|1995-07-18|1995-09-07|DELIVER IN PERSON|SHIP|ove the fi| +23177|594692|44693|5|17|30373.39|0.02|0.05|N|O|1995-06-30|1995-06-03|1995-07-12|NONE|TRUCK|uriously regular attainments. regular acco| +23177|974545|24546|6|47|76116.50|0.07|0.06|A|F|1995-05-13|1995-07-06|1995-06-03|DELIVER IN PERSON|RAIL|ove the requests. express accounts cajol| +23178|256162|6163|1|27|30190.05|0.07|0.06|R|F|1994-03-21|1994-02-06|1994-04-09|DELIVER IN PERSON|AIR|o the final requests. pendin| +23178|299911|37427|2|44|84079.60|0.08|0.06|A|F|1994-02-15|1994-01-06|1994-03-04|NONE|SHIP|old accounts are idly among the slyl| +23178|604028|4029|3|31|28891.69|0.04|0.08|R|F|1994-04-02|1994-01-12|1994-04-12|TAKE BACK RETURN|FOB|furiously furiously express fox| +23178|896332|46333|4|47|62429.63|0.03|0.06|R|F|1993-12-12|1994-01-25|1993-12-30|NONE|FOB|s, express theodolites above the slyly| +23178|645129|7642|5|17|18259.53|0.10|0.06|R|F|1994-01-15|1994-02-09|1994-02-08|NONE|REG AIR| pinto bean| +23178|674669|12209|6|48|78894.24|0.04|0.07|R|F|1994-02-14|1994-01-09|1994-02-26|COLLECT COD|FOB|en dinos nag fluffi| +23179|624434|11971|1|36|48902.40|0.07|0.08|A|F|1993-05-23|1993-04-28|1993-06-20|NONE|MAIL|y express account| +23179|852130|39682|2|45|48694.05|0.10|0.00|R|F|1993-06-06|1993-05-28|1993-07-02|DELIVER IN PERSON|SHIP|e the idly expr| +23180|645821|33358|1|14|24735.06|0.04|0.08|N|O|1997-05-14|1997-05-23|1997-05-30|NONE|MAIL|, permanent requests. even not| +23180|310477|47996|2|19|28261.74|0.03|0.01|N|O|1997-07-22|1997-05-01|1997-08-10|COLLECT COD|TRUCK| furiously| +23180|170424|45431|3|26|38854.92|0.00|0.04|N|O|1997-06-21|1997-06-10|1997-06-26|COLLECT COD|REG AIR|osits. even courts aft| +23180|303575|16082|4|26|41042.56|0.00|0.03|N|O|1997-04-03|1997-05-29|1997-04-24|DELIVER IN PERSON|RAIL| the sometimes ironic deposits | +23180|183866|46370|5|13|25348.18|0.05|0.02|N|O|1997-04-05|1997-05-10|1997-05-03|COLLECT COD|FOB|uffily spec| +23180|229427|29428|6|31|42048.71|0.00|0.04|N|O|1997-04-21|1997-05-31|1997-05-05|TAKE BACK RETURN|AIR|ar deposits nag carefully slyly fina| +23180|977095|14653|7|33|38677.65|0.02|0.04|N|O|1997-05-18|1997-05-17|1997-06-02|COLLECT COD|FOB| regular depos| +23181|33826|8827|1|3|5279.46|0.10|0.05|N|O|1995-09-01|1995-11-01|1995-09-16|COLLECT COD|REG AIR|ironic courts ha| +23181|501664|14175|2|47|78285.08|0.00|0.08|N|O|1995-08-23|1995-11-14|1995-09-15|NONE|SHIP|s except the carefully blithe the| +23182|61760|24262|1|28|48209.28|0.08|0.01|A|F|1993-10-09|1993-11-02|1993-11-02|NONE|REG AIR|osits. blithely final| +23182|994560|19599|2|6|9927.12|0.07|0.06|R|F|1993-10-29|1993-10-01|1993-11-28|DELIVER IN PERSON|REG AIR|arefully regular packages. quickly qu| +23183|490781|28309|1|47|83272.72|0.06|0.02|N|O|1996-05-20|1996-05-27|1996-05-25|TAKE BACK RETURN|SHIP|cies. pinto beans haggle. blithely iron| +23183|554563|29586|2|42|67936.68|0.08|0.00|N|O|1996-05-01|1996-06-25|1996-05-17|COLLECT COD|MAIL|s. gifts could wake ruthl| +23183|536023|11044|3|36|38124.00|0.04|0.05|N|O|1996-08-19|1996-07-11|1996-09-02|NONE|AIR|ng the quickly unusua| +23183|937678|197|4|37|63478.31|0.02|0.04|N|O|1996-05-02|1996-06-28|1996-05-26|DELIVER IN PERSON|RAIL|n, pending deposit| +23183|542022|17043|5|8|8512.00|0.04|0.02|N|O|1996-06-02|1996-07-15|1996-06-25|COLLECT COD|RAIL| deposits after the patterns | +23208|827509|40026|1|22|31602.12|0.06|0.05|N|O|1997-01-05|1996-12-23|1997-01-20|DELIVER IN PERSON|RAIL|nts: accounts| +23208|927287|27288|2|4|5256.96|0.09|0.03|N|O|1997-02-14|1996-12-25|1997-02-15|DELIVER IN PERSON|TRUCK|es are quickly regular pattern| +23208|905428|30465|3|37|53035.06|0.02|0.07|N|O|1997-02-08|1996-12-27|1997-03-01|COLLECT COD|MAIL|thely among t| +23208|523587|11118|4|6|9663.36|0.08|0.01|N|O|1997-02-04|1997-01-07|1997-02-16|COLLECT COD|RAIL|s boost. blithel| +23208|916877|16878|5|34|64390.22|0.08|0.01|N|O|1996-12-04|1996-12-31|1996-12-06|NONE|FOB|ly against the fluffily regul| +23208|949636|24673|6|41|69109.19|0.04|0.00|N|O|1997-01-11|1997-01-05|1997-01-22|COLLECT COD|REG AIR|he careful| +23208|518646|43667|7|24|39950.88|0.07|0.05|N|O|1996-11-18|1996-12-23|1996-11-26|COLLECT COD|MAIL|arefully. even | +23209|867438|4990|1|31|43567.09|0.08|0.06|N|O|1995-10-31|1995-08-23|1995-11-03|COLLECT COD|RAIL|ously express pinto beans nag fluf| +23209|26132|38633|2|25|26453.25|0.07|0.07|N|O|1995-08-02|1995-09-15|1995-08-11|TAKE BACK RETURN|SHIP|theodolite| +23210|659605|47145|1|39|61018.23|0.05|0.00|A|F|1993-05-07|1993-05-03|1993-06-06|COLLECT COD|FOB|e packages. even dependencies affix at th| +23211|720832|8375|1|1|1852.80|0.07|0.04|A|F|1992-12-10|1992-11-21|1992-12-11|COLLECT COD|REG AIR|e quickly in place of the regular, brave fo| +23211|20981|8482|2|9|17117.82|0.07|0.05|R|F|1992-11-25|1992-12-13|1992-12-16|NONE|REG AIR| special excuses against the quickly re| +23211|616559|16560|3|20|29510.40|0.02|0.03|R|F|1993-01-14|1993-01-11|1993-02-02|DELIVER IN PERSON|TRUCK|r the pending theodolites. silent depo| +23211|494835|7345|4|12|21957.72|0.03|0.06|A|F|1993-01-21|1993-01-02|1993-02-15|COLLECT COD|REG AIR|ges sleep.| +23211|677152|2179|5|37|41777.44|0.08|0.02|R|F|1992-11-29|1992-11-30|1992-12-15|NONE|FOB|otes along the ironic| +23212|907665|32702|1|4|6690.48|0.05|0.02|N|O|1998-07-26|1998-05-02|1998-07-27|DELIVER IN PERSON|AIR|uriously express accou| +23212|125644|38147|2|13|21705.32|0.00|0.07|N|O|1998-06-16|1998-05-23|1998-07-08|TAKE BACK RETURN|AIR|special instructions. carefully pending acc| +23212|692296|17323|3|46|59259.96|0.02|0.05|N|O|1998-05-09|1998-05-09|1998-06-05|TAKE BACK RETURN|MAIL|n forges. packages w| +23212|410703|48228|4|22|35500.96|0.08|0.06|N|O|1998-07-04|1998-06-28|1998-07-22|TAKE BACK RETURN|TRUCK|ng packages. closely| +23212|671576|21577|5|21|32498.34|0.04|0.02|N|O|1998-07-02|1998-05-18|1998-07-09|TAKE BACK RETURN|MAIL| after the slyly special deposits. | +23212|173671|48678|6|7|12212.69|0.04|0.01|N|O|1998-07-13|1998-04-29|1998-07-20|NONE|TRUCK|ular instructions nag. furiously regular a| +23212|881458|43976|7|10|14394.10|0.10|0.03|N|O|1998-05-15|1998-05-15|1998-05-31|DELIVER IN PERSON|FOB|ding deposits maintain furiously furi| +23213|656346|18860|1|16|20836.96|0.07|0.02|N|O|1996-10-15|1996-10-11|1996-10-25|NONE|RAIL| the silent, even theodolites. ironic, p| +23213|192628|5132|2|29|49897.98|0.09|0.01|N|O|1996-08-30|1996-10-17|1996-09-15|DELIVER IN PERSON|FOB|sits wake. bli| +23213|491925|29453|3|29|55590.10|0.08|0.06|N|O|1996-10-17|1996-10-15|1996-10-25|DELIVER IN PERSON|FOB|ckages. unusual tithes haggle | +23213|780204|5235|4|43|55219.31|0.00|0.00|N|O|1996-09-24|1996-10-04|1996-10-23|DELIVER IN PERSON|SHIP|riously ironic deposits cajol| +23213|874891|37409|5|41|76499.85|0.04|0.00|N|O|1996-09-15|1996-11-02|1996-10-04|NONE|MAIL|detect carefully around the platelets.| +23213|279362|4373|6|13|17437.55|0.08|0.06|N|O|1996-12-04|1996-10-21|1996-12-10|TAKE BACK RETURN|AIR|ress ideas are abo| +23214|666654|16655|1|32|51859.84|0.06|0.04|A|F|1994-08-09|1994-08-08|1994-08-31|DELIVER IN PERSON|REG AIR|quickly. unusual, even f| +23214|442609|5118|2|13|20170.54|0.10|0.07|R|F|1994-07-22|1994-09-19|1994-08-18|DELIVER IN PERSON|REG AIR| final, express asymptotes hag| +23214|915176|15177|3|28|33351.64|0.02|0.00|R|F|1994-10-19|1994-08-17|1994-11-08|COLLECT COD|FOB|xcuses wake blithely carefully b| +23214|360433|35448|4|8|11947.36|0.03|0.03|R|F|1994-10-14|1994-09-10|1994-11-07|COLLECT COD|REG AIR|t epitaphs are| +23214|791590|29136|5|29|48765.24|0.02|0.08|R|F|1994-07-30|1994-08-04|1994-08-14|TAKE BACK RETURN|SHIP|s. unusual depo| +23214|251016|26027|6|12|11604.00|0.08|0.07|R|F|1994-07-14|1994-07-27|1994-08-07|NONE|FOB|sleep quickly regular| +23215|175364|25365|1|38|54695.68|0.10|0.00|A|F|1994-07-14|1994-08-15|1994-08-12|NONE|FOB|, ironic notorni| +23215|341643|29162|2|22|37061.86|0.10|0.07|R|F|1994-09-02|1994-08-16|1994-09-30|NONE|MAIL|heodolites l| +23215|982963|20521|3|40|81836.80|0.06|0.03|A|F|1994-10-02|1994-07-11|1994-10-31|DELIVER IN PERSON|SHIP|oss the expres| +23215|655314|17828|4|33|41886.24|0.05|0.06|R|F|1994-09-24|1994-08-27|1994-10-06|TAKE BACK RETURN|SHIP| deposits at the f| +23215|846858|21891|5|19|34291.39|0.09|0.07|A|F|1994-06-26|1994-08-26|1994-07-07|NONE|AIR|ly even requests cajo| +23215|135157|47660|6|39|46493.85|0.06|0.06|A|F|1994-06-17|1994-08-23|1994-07-10|NONE|SHIP|leep fluffily-- caref| +23215|570095|7629|7|29|33787.03|0.00|0.06|A|F|1994-06-28|1994-08-18|1994-07-11|NONE|FOB|ns ought to | +23240|579906|29907|1|27|53618.76|0.03|0.01|N|O|1995-08-01|1995-09-07|1995-08-16|TAKE BACK RETURN|FOB|tain carefully. regular f| +23240|464671|27181|2|49|80146.85|0.03|0.08|N|O|1995-07-12|1995-07-24|1995-08-05|TAKE BACK RETURN|SHIP| accounts. furiously final acc| +23240|723066|23067|3|41|44650.23|0.10|0.07|N|O|1995-06-28|1995-07-19|1995-07-07|TAKE BACK RETURN|RAIL|to the special, reg| +23240|554667|4668|4|40|68865.60|0.00|0.03|N|O|1995-06-28|1995-07-22|1995-07-20|TAKE BACK RETURN|SHIP|ts wake unusual | +23240|277860|15376|5|35|64324.75|0.04|0.00|N|O|1995-07-06|1995-09-08|1995-07-25|COLLECT COD|MAIL|requests about the quickly re| +23240|987807|37808|6|28|53053.28|0.07|0.01|N|O|1995-08-18|1995-08-21|1995-09-03|NONE|TRUCK|ar packages | +23240|62530|12531|7|10|14925.30|0.00|0.07|N|O|1995-09-28|1995-08-14|1995-10-19|NONE|AIR|enly final deposits doze. deposit| +23241|933200|33201|1|20|24663.20|0.03|0.00|R|F|1995-01-24|1994-12-19|1995-01-30|TAKE BACK RETURN|REG AIR|ly quickly express ac| +23241|279609|4620|2|16|25417.44|0.07|0.03|A|F|1994-11-15|1995-01-28|1994-11-21|DELIVER IN PERSON|AIR|even ideas shall are after | +23241|384018|21540|3|8|8816.00|0.06|0.03|A|F|1994-11-13|1995-01-02|1994-12-12|NONE|SHIP|l, quiet dependencies. carefully express| +23241|177072|39576|4|24|27577.68|0.06|0.06|R|F|1995-02-05|1995-01-02|1995-02-08|DELIVER IN PERSON|SHIP|ly bold accounts sl| +23242|172002|9512|1|18|19332.00|0.08|0.03|A|F|1992-08-27|1992-07-27|1992-09-08|TAKE BACK RETURN|FOB|fily. regular theod| +23242|826413|38930|2|34|45538.58|0.07|0.05|R|F|1992-09-24|1992-07-25|1992-10-13|TAKE BACK RETURN|AIR| unusual dep| +23243|290421|2927|1|39|55044.99|0.07|0.06|A|F|1993-11-29|1994-01-12|1993-12-08|DELIVER IN PERSON|SHIP|al packages boost above the quickly re| +23243|91752|16755|2|1|1743.75|0.00|0.07|A|F|1994-01-06|1993-12-29|1994-02-05|COLLECT COD|AIR|sly atop the| +23243|67987|5491|3|49|95794.02|0.00|0.08|A|F|1993-11-12|1993-12-19|1993-11-16|NONE|FOB|e slyly ironic s| +23243|643002|43003|4|19|17954.43|0.00|0.03|R|F|1993-11-06|1993-12-01|1993-11-13|DELIVER IN PERSON|SHIP|ages. final pint| +23243|921036|33555|5|48|50735.52|0.06|0.00|A|F|1994-02-01|1993-12-02|1994-02-05|DELIVER IN PERSON|REG AIR|uests cajole. carefully unusual ideas wak| +23244|228707|3716|1|31|50706.39|0.01|0.08|N|O|1996-04-20|1996-05-11|1996-05-02|NONE|REG AIR| blithely special accounts cajole e| +23244|862940|12941|2|27|51378.30|0.09|0.05|N|O|1996-05-03|1996-05-09|1996-05-11|NONE|SHIP|usual gifts nag blith| +23244|426919|39428|3|47|86756.83|0.07|0.04|N|O|1996-05-30|1996-04-06|1996-06-19|DELIVER IN PERSON|RAIL|quickly regular deposits-- stealthily| +23244|225230|37735|4|46|53140.12|0.10|0.08|N|O|1996-04-24|1996-05-13|1996-05-09|DELIVER IN PERSON|AIR|ajole furiously slyly regular dug| +23244|433420|33421|5|48|64963.20|0.07|0.00|N|O|1996-06-10|1996-04-16|1996-06-14|DELIVER IN PERSON|FOB|, regular de| +23245|677265|39779|1|14|17391.22|0.10|0.02|R|F|1992-08-03|1992-06-03|1992-08-06|NONE|MAIL|s. even, permanent platele| +23246|454196|4197|1|3|3450.51|0.09|0.06|N|O|1997-10-29|1997-11-11|1997-11-16|NONE|RAIL|slyly ironic pinto beans wake b| +23247|249471|36984|1|10|14204.60|0.08|0.00|N|O|1995-08-05|1995-07-10|1995-08-10|TAKE BACK RETURN|REG AIR|. final pinto beans at t| +23247|845606|45607|2|2|3103.12|0.06|0.08|A|F|1995-05-14|1995-06-30|1995-06-07|TAKE BACK RETURN|AIR|ntly special theodolites. slyly| +23247|85190|22694|3|33|38781.27|0.00|0.02|N|O|1995-06-26|1995-05-23|1995-07-23|COLLECT COD|RAIL|accounts. quickly special in| +23247|772812|22813|4|22|41465.16|0.02|0.00|N|O|1995-07-21|1995-07-03|1995-08-13|TAKE BACK RETURN|MAIL|, thin dependencie| +23247|637618|37619|5|3|4666.74|0.04|0.03|N|O|1995-08-17|1995-07-08|1995-08-26|DELIVER IN PERSON|TRUCK|e carefully. special, express realms | +23247|438197|706|6|27|30649.59|0.05|0.03|N|O|1995-07-17|1995-06-15|1995-07-28|DELIVER IN PERSON|SHIP|ifts are slyly platelets. blithely even| +23247|773210|23211|7|25|32079.50|0.05|0.03|A|F|1995-05-04|1995-07-13|1995-06-03|NONE|FOB|r accounts are doggedly about the sly| +23272|328976|16495|1|5|10024.80|0.01|0.01|A|F|1992-11-23|1992-11-21|1992-11-24|NONE|FOB|y about the blithely ironic de| +23272|90153|2655|2|2|2286.30|0.05|0.01|R|F|1992-10-16|1992-12-19|1992-11-07|COLLECT COD|REG AIR|es. furiously regular packages| +23272|189159|1663|3|43|53670.45|0.06|0.01|R|F|1993-01-26|1992-12-16|1993-01-30|TAKE BACK RETURN|TRUCK|ss the blit| +23272|184167|34168|4|14|17516.24|0.09|0.05|A|F|1992-12-26|1992-11-06|1993-01-11|DELIVER IN PERSON|SHIP|ests. furiously slow platelets wake| +23272|291726|16737|5|1|1717.71|0.03|0.04|A|F|1992-10-03|1992-12-13|1992-10-16|COLLECT COD|REG AIR|deas sleep sile| +23273|331896|6909|1|35|67475.80|0.06|0.06|R|F|1995-03-15|1995-02-26|1995-04-05|DELIVER IN PERSON|REG AIR|luffily. furiously ironic packages in| +23273|162325|12326|2|16|22197.12|0.08|0.03|R|F|1995-04-24|1995-03-27|1995-05-06|NONE|FOB|uests. furiously bol| +23273|195360|32870|3|11|16008.96|0.08|0.05|R|F|1995-05-09|1995-03-26|1995-06-02|DELIVER IN PERSON|FOB|equests. enticing packages boost quic| +23273|404100|41625|4|29|29118.32|0.06|0.04|R|F|1995-04-26|1995-03-08|1995-05-10|COLLECT COD|TRUCK|s according to| +23273|694451|6965|5|45|65043.90|0.02|0.02|R|F|1995-02-26|1995-03-19|1995-03-21|DELIVER IN PERSON|SHIP|al requests cajole around the furiou| +23274|109334|46841|1|30|40299.90|0.04|0.06|N|O|1995-12-02|1996-01-24|1995-12-25|DELIVER IN PERSON|TRUCK|elets. quickly unusual pearls w| +23275|941557|41558|1|26|41561.26|0.02|0.03|A|F|1994-11-10|1994-12-08|1994-12-06|NONE|FOB|lly. blithely regular excuses haggle blith| +23276|672407|34921|1|20|27587.40|0.04|0.02|A|F|1993-02-06|1993-01-07|1993-02-23|NONE|FOB| among the express, even| +23277|535350|22881|1|24|33247.92|0.04|0.02|R|F|1992-04-29|1992-04-20|1992-05-09|NONE|AIR|ending, even accounts do prom| +23277|618306|18307|2|30|36728.10|0.00|0.05|R|F|1992-03-13|1992-05-15|1992-03-17|DELIVER IN PERSON|MAIL|requests detect fluf| +23277|860577|35612|3|48|73801.44|0.02|0.06|A|F|1992-03-17|1992-04-29|1992-03-27|NONE|SHIP|ar, final pinto | +23277|715084|27599|4|1|1099.05|0.10|0.07|R|F|1992-04-15|1992-04-05|1992-04-26|TAKE BACK RETURN|AIR|f the quickly permanent | +23277|413648|1173|5|45|70272.90|0.00|0.03|R|F|1992-06-06|1992-04-02|1992-06-22|DELIVER IN PERSON|MAIL|ccounts. slyly regular | +23277|178832|28833|6|12|22929.96|0.09|0.07|A|F|1992-03-18|1992-03-24|1992-03-30|NONE|MAIL|nusual, pending packag| +23278|712462|5|1|48|70772.64|0.04|0.05|R|F|1992-07-01|1992-05-24|1992-07-08|NONE|AIR|pinto beans. carefully regular depo| +23278|337204|49711|2|31|38476.89|0.10|0.02|R|F|1992-07-22|1992-06-09|1992-08-03|COLLECT COD|TRUCK|ndencies. regular, regular theodolit| +23278|373559|11081|3|4|6530.16|0.01|0.06|R|F|1992-05-03|1992-06-09|1992-06-01|DELIVER IN PERSON|FOB|ges sleep b| +23278|397922|35444|4|17|34338.47|0.01|0.03|A|F|1992-05-06|1992-06-18|1992-06-03|COLLECT COD|RAIL|he bold, ironic theod| +23279|139905|39906|1|46|89465.40|0.07|0.02|N|O|1996-01-11|1996-03-17|1996-02-08|NONE|SHIP| the quickly permanent pinto beans. | +23279|374729|37237|2|19|34270.49|0.01|0.03|N|O|1996-04-08|1996-03-05|1996-04-25|DELIVER IN PERSON|FOB| sauternes unwind along th| +23304|811483|11484|1|5|6972.20|0.09|0.07|N|O|1997-02-14|1997-01-24|1997-02-23|TAKE BACK RETURN|MAIL|enticingly r| +23304|584182|34183|2|34|43049.44|0.03|0.07|N|O|1997-04-03|1997-03-04|1997-04-13|DELIVER IN PERSON|FOB|riously even theod| +23304|340207|40208|3|26|32426.94|0.04|0.08|N|O|1997-02-15|1997-02-20|1997-03-09|DELIVER IN PERSON|AIR|ly furiously bold pinto beans. quietly u| +23304|857992|33027|4|15|29249.25|0.04|0.05|N|O|1997-03-10|1997-02-24|1997-03-25|COLLECT COD|REG AIR|uests cajole around the final, b| +23304|266455|3971|5|21|29850.24|0.06|0.02|N|O|1997-03-10|1997-01-20|1997-04-05|COLLECT COD|RAIL| beans are blithely among the accounts. fi| +23305|774358|49389|1|5|7161.60|0.04|0.07|R|F|1994-03-23|1994-05-22|1994-04-17|TAKE BACK RETURN|SHIP|kages. regular platelets integrate slyly. | +23305|633029|33030|2|6|5771.94|0.08|0.05|R|F|1994-03-07|1994-03-29|1994-03-19|COLLECT COD|SHIP|blithely despite the even, iron| +23305|306119|6120|3|10|11251.00|0.04|0.02|A|F|1994-03-19|1994-05-16|1994-04-02|TAKE BACK RETURN|FOB|e furiously pinto bea| +23306|629638|4663|1|28|43892.80|0.03|0.03|R|F|1994-12-19|1995-01-18|1994-12-24|TAKE BACK RETURN|REG AIR| unusual, pending accounts cajole| +23306|310640|10641|2|38|62723.94|0.02|0.01|A|F|1994-11-30|1995-01-19|1994-12-24|DELIVER IN PERSON|FOB|regular packages at the final, regu| +23306|919178|44215|3|50|59856.50|0.04|0.01|R|F|1995-01-30|1994-12-31|1995-02-21|DELIVER IN PERSON|REG AIR| closely even instructions | +23306|610914|23427|4|7|12774.16|0.00|0.02|R|F|1995-01-05|1995-01-25|1995-01-28|TAKE BACK RETURN|REG AIR|ts; instructions along the carefully unusu| +23306|618311|18312|5|14|17209.92|0.07|0.03|A|F|1995-01-01|1995-01-23|1995-01-09|COLLECT COD|AIR|ve to poach above t| +23306|952811|40369|6|15|27956.55|0.00|0.08|R|F|1995-01-05|1995-02-06|1995-01-18|COLLECT COD|TRUCK|ully furiously final foxes. final, regul| +23307|222370|34875|1|45|58156.20|0.04|0.03|N|O|1997-07-08|1997-06-28|1997-08-03|NONE|FOB|es. blithely stealthy | +23307|370637|20638|2|24|40982.88|0.08|0.08|N|O|1997-04-26|1997-05-29|1997-05-12|TAKE BACK RETURN|RAIL|round the slyly even f| +23307|290483|2989|3|31|45677.57|0.05|0.03|N|O|1997-06-05|1997-06-16|1997-06-30|NONE|FOB|tions along | +23307|146473|21478|4|43|65337.21|0.08|0.03|N|O|1997-06-20|1997-06-25|1997-06-29|NONE|REG AIR|press pinto beans wake. regular foxes arou| +23308|217726|17727|1|9|14793.39|0.07|0.00|N|O|1997-01-03|1996-11-15|1997-01-12|TAKE BACK RETURN|RAIL|osits. fluffily silent| +23309|620916|45941|1|3|5510.64|0.08|0.00|N|O|1996-03-26|1996-03-19|1996-04-18|TAKE BACK RETURN|FOB|ar ideas haggle | +23309|726054|1083|2|27|29160.54|0.03|0.00|N|O|1996-03-27|1996-03-08|1996-04-08|COLLECT COD|SHIP|ts nag. ne| +23309|787741|12772|3|30|54861.30|0.04|0.04|N|O|1996-01-27|1996-04-02|1996-02-16|DELIVER IN PERSON|MAIL|s sleep alongside of the quickly speci| +23309|547252|34783|4|16|20787.68|0.09|0.03|N|O|1996-02-04|1996-03-12|1996-02-14|DELIVER IN PERSON|RAIL|usly about the bold theodolites. c| +23310|460546|35565|1|42|63273.84|0.01|0.04|N|O|1997-01-10|1997-02-09|1997-01-29|TAKE BACK RETURN|RAIL|ng packages are evenly among the slyly bol| +23310|383469|8484|2|34|52783.30|0.10|0.01|N|O|1997-03-20|1997-01-27|1997-04-08|NONE|FOB|as detect slyly r| +23310|951543|14063|3|34|54213.00|0.00|0.02|N|O|1997-02-17|1997-02-18|1997-02-20|DELIVER IN PERSON|FOB|al excuses. slyly even theodolites | +23310|580596|30597|4|17|28501.69|0.04|0.07|N|O|1997-02-08|1997-02-23|1997-02-10|TAKE BACK RETURN|TRUCK|the ironic grouches. iro| +23310|67999|43002|5|14|27537.86|0.04|0.02|N|O|1997-01-02|1997-01-07|1997-01-19|TAKE BACK RETURN|FOB|nic waters sleep | +23311|211549|24054|1|48|70105.44|0.01|0.05|N|O|1998-05-13|1998-04-05|1998-05-18|NONE|TRUCK|special requests; even reque| +23311|497391|9901|2|48|66641.76|0.08|0.03|N|O|1998-03-22|1998-02-27|1998-03-31|TAKE BACK RETURN|TRUCK|lithely across the blithely ironic| +23336|915888|15889|1|50|95192.00|0.10|0.00|N|O|1997-02-24|1997-03-28|1997-03-18|DELIVER IN PERSON|TRUCK|quests nag blithely even requ| +23336|328400|40907|2|10|14283.90|0.09|0.08|N|O|1997-02-05|1997-03-02|1997-02-13|NONE|AIR|intain furiously. pending epitaph| +23336|404152|4153|3|44|46469.72|0.01|0.03|N|O|1997-02-25|1997-03-08|1997-02-28|NONE|RAIL|aggle blithely pendin| +23336|575637|25638|4|11|18838.71|0.08|0.01|N|O|1997-01-19|1997-02-10|1997-02-06|COLLECT COD|SHIP|posits. carefully unusual t| +23337|904409|16928|1|42|59361.12|0.01|0.04|N|O|1998-05-16|1998-04-09|1998-05-26|TAKE BACK RETURN|AIR|ts boost idly regular instru| +23337|397378|22393|2|40|59014.40|0.00|0.08|N|O|1998-04-22|1998-04-15|1998-05-17|COLLECT COD|RAIL|y stealthy hockey players wake acr| +23337|721217|8760|3|33|40859.94|0.02|0.00|N|O|1998-02-01|1998-04-06|1998-03-01|COLLECT COD|RAIL|into beans wake slyly idle packages| +23337|491236|28764|4|29|35589.09|0.04|0.01|N|O|1998-03-04|1998-02-28|1998-03-05|NONE|FOB| even packages. blithely silent req| +23337|194461|19468|5|2|3110.92|0.08|0.00|N|O|1998-02-01|1998-03-17|1998-02-18|COLLECT COD|MAIL|s wake furiously even,| +23337|304826|17333|6|4|7323.24|0.04|0.06|N|O|1998-05-14|1998-04-14|1998-06-05|COLLECT COD|AIR|al requests wake s| +23338|875903|13455|1|47|88306.42|0.05|0.06|N|O|1996-05-01|1996-04-17|1996-05-11|TAKE BACK RETURN|TRUCK|en packages. fluffily unusual | +23338|285052|47558|2|42|43555.68|0.01|0.02|N|O|1996-04-11|1996-05-12|1996-04-22|COLLECT COD|FOB| unusual, ironic | +23338|868005|5557|3|2|1945.92|0.07|0.04|N|O|1996-05-30|1996-04-21|1996-06-02|NONE|MAIL|dolphins boost around the bli| +23338|558697|8698|4|42|73738.14|0.03|0.06|N|O|1996-02-21|1996-03-24|1996-02-26|TAKE BACK RETURN|AIR|s wake-- carefully final foxes| +23338|13411|912|5|4|5297.64|0.01|0.03|N|O|1996-04-21|1996-03-31|1996-05-10|TAKE BACK RETURN|MAIL|otes. regular foxes nag even accou| +23338|395099|45100|6|42|50151.36|0.09|0.06|N|O|1996-05-29|1996-05-12|1996-06-19|DELIVER IN PERSON|MAIL|al pinto beans wake. furiously permanent | +23338|426589|1606|7|17|25764.52|0.07|0.06|N|O|1996-04-21|1996-05-08|1996-05-17|COLLECT COD|REG AIR|thely even p| +23339|673869|48896|1|7|12899.81|0.06|0.04|N|O|1995-12-03|1996-02-20|1995-12-08|DELIVER IN PERSON|FOB|oss the pending, unusual p| +23340|583232|45744|1|9|11836.89|0.09|0.06|N|O|1996-05-24|1996-06-12|1996-06-15|NONE|RAIL|ey players boost silently c| +23340|371558|9080|2|40|65181.60|0.03|0.05|N|O|1996-05-25|1996-06-21|1996-06-16|NONE|RAIL|ts. carefully ironic requests | +23340|758887|8888|3|41|79779.85|0.09|0.01|N|O|1996-07-01|1996-06-19|1996-07-10|DELIVER IN PERSON|RAIL|. slowly final accou| +23340|613235|772|4|20|22964.00|0.10|0.04|N|O|1996-06-24|1996-05-15|1996-07-06|NONE|TRUCK|ccounts haggle across| +23340|630242|42755|5|8|9377.68|0.07|0.01|N|O|1996-07-22|1996-05-21|1996-08-16|TAKE BACK RETURN|TRUCK| dolphins haggle furiously.| +23341|444666|19683|1|50|80532.00|0.02|0.01|R|F|1994-08-31|1994-08-05|1994-09-24|NONE|RAIL|thely regular platelet| +23341|498086|35614|2|3|3252.18|0.04|0.04|A|F|1994-06-30|1994-08-08|1994-07-15|COLLECT COD|AIR| fluffily unusual pinto bean| +23342|586344|48856|1|29|41479.28|0.02|0.08|R|F|1995-03-01|1995-04-23|1995-03-04|COLLECT COD|MAIL| above the caref| +23342|670190|32704|2|27|31324.32|0.07|0.05|R|F|1995-03-08|1995-05-09|1995-03-11|TAKE BACK RETURN|TRUCK|ets after the pendi| +23342|875939|25940|3|32|61276.48|0.05|0.03|R|F|1995-03-09|1995-05-19|1995-03-29|NONE|MAIL|impress quickly blithely pe| +23343|600363|25388|1|29|36636.57|0.06|0.02|R|F|1993-03-17|1993-02-01|1993-04-03|DELIVER IN PERSON|MAIL|sts according to the slyly i| +23343|285228|22744|2|11|13345.31|0.09|0.08|A|F|1993-03-05|1993-02-27|1993-03-24|TAKE BACK RETURN|MAIL| according to the express deposit| +23343|818570|43603|3|2|2977.06|0.09|0.00|R|F|1993-02-04|1993-03-04|1993-02-22|TAKE BACK RETURN|RAIL|e requests haggle around the flu| +23343|699440|49441|4|34|48939.94|0.04|0.06|R|F|1993-04-15|1993-01-25|1993-05-08|NONE|MAIL|gside of the packa| +23343|486695|11714|5|3|5045.01|0.02|0.00|R|F|1993-04-05|1993-02-19|1993-04-25|TAKE BACK RETURN|RAIL|y express instructions boos| +23343|870785|45820|6|14|24580.36|0.02|0.04|A|F|1993-04-24|1993-02-17|1993-05-08|DELIVER IN PERSON|SHIP|s use around the even, e| +23343|273395|10911|7|9|12315.42|0.00|0.05|R|F|1993-01-02|1993-02-08|1993-01-30|DELIVER IN PERSON|RAIL|ideas. neve| +23368|943992|31547|1|27|54970.65|0.02|0.02|N|O|1997-07-03|1997-09-18|1997-07-27|COLLECT COD|REG AIR| ruthless foxes nag furio| +23368|668669|31183|2|39|63867.57|0.10|0.03|N|O|1997-07-01|1997-07-23|1997-07-27|TAKE BACK RETURN|RAIL|telets. qu| +23368|319275|44288|3|18|23296.68|0.03|0.07|N|O|1997-06-24|1997-08-12|1997-07-15|TAKE BACK RETURN|TRUCK|the special depos| +23368|45750|20751|4|1|1695.75|0.00|0.06|N|O|1997-10-12|1997-08-17|1997-10-31|COLLECT COD|FOB|ages. regular, r| +23368|910109|35146|5|10|11190.60|0.02|0.01|N|O|1997-07-03|1997-08-07|1997-07-12|NONE|SHIP|s cajole slyly fluffily quiet r| +23368|188475|38476|6|32|50031.04|0.08|0.07|N|O|1997-06-28|1997-07-31|1997-07-12|DELIVER IN PERSON|TRUCK|t theodolites; final dependencies nag blit| +23368|688405|38406|7|47|65488.39|0.00|0.01|N|O|1997-09-16|1997-08-06|1997-10-16|DELIVER IN PERSON|SHIP|. silently| +23369|11612|11613|1|26|39613.86|0.05|0.07|N|O|1998-07-30|1998-06-16|1998-08-13|COLLECT COD|REG AIR|uriously express re| +23369|160943|10944|2|48|96189.12|0.00|0.00|N|O|1998-05-28|1998-06-05|1998-06-19|NONE|FOB|ts are blithely against the special, ironi| +23369|955684|30723|3|33|57408.12|0.06|0.04|N|O|1998-07-02|1998-05-25|1998-07-15|NONE|RAIL|counts. regular r| +23369|175223|12733|4|27|35051.94|0.00|0.08|N|O|1998-05-01|1998-06-04|1998-05-23|COLLECT COD|SHIP|ses wake ironically ironic accounts. blithe| +23369|961487|36526|5|11|17032.84|0.05|0.00|N|O|1998-05-01|1998-05-31|1998-05-15|DELIVER IN PERSON|AIR|g, pending instructions. special inst| +23370|168738|6248|1|12|21680.76|0.09|0.02|N|O|1996-05-10|1996-03-24|1996-05-11|COLLECT COD|AIR|c accounts. bold, furious bra| +23370|962915|37954|2|22|43513.14|0.08|0.01|N|O|1996-03-21|1996-03-14|1996-04-18|DELIVER IN PERSON|FOB|pendencies-- packages agai| +23371|626054|1079|1|24|23520.48|0.04|0.02|A|F|1995-02-05|1994-12-18|1995-02-13|COLLECT COD|TRUCK| dependencies cajole blithely carefully| +23371|80734|5737|2|32|54871.36|0.04|0.08|R|F|1994-11-15|1994-12-28|1994-11-24|DELIVER IN PERSON|AIR| express somas oug| +23371|881470|19022|3|9|13062.87|0.05|0.08|R|F|1994-10-19|1994-11-25|1994-11-18|NONE|MAIL|regular deposits wake after | +23371|862946|37981|4|2|3817.80|0.00|0.02|A|F|1994-10-31|1994-11-17|1994-11-01|COLLECT COD|RAIL| silent packages. | +23371|527159|2180|5|19|22536.47|0.03|0.06|R|F|1994-12-04|1995-01-05|1994-12-22|COLLECT COD|REG AIR|s. carefully regular grouches sleep slyly| +23371|961221|11222|6|35|44876.30|0.09|0.02|A|F|1994-10-27|1994-12-05|1994-10-30|TAKE BACK RETURN|RAIL|dolphins maintain slyly according to| +23371|226386|1395|7|48|62993.76|0.05|0.07|R|F|1994-10-18|1994-12-16|1994-11-02|COLLECT COD|SHIP|en deposits. | +23372|864424|1976|1|27|37486.26|0.03|0.06|N|O|1997-05-25|1997-06-08|1997-06-21|DELIVER IN PERSON|RAIL|kly. furiously express forges a| +23372|363962|13963|2|33|66856.35|0.02|0.03|N|O|1997-06-25|1997-05-15|1997-07-05|COLLECT COD|FOB|g dolphins use carefully sl| +23372|106524|31529|3|35|53568.20|0.07|0.00|N|O|1997-06-12|1997-06-26|1997-07-03|NONE|REG AIR|ly express deposits. un| +23373|344980|32499|1|1|2024.97|0.05|0.08|N|O|1998-01-14|1998-03-15|1998-01-25|DELIVER IN PERSON|TRUCK|areful accounts| +23373|74223|49226|2|40|47888.80|0.04|0.05|N|O|1998-01-07|1998-02-01|1998-01-19|COLLECT COD|TRUCK|tect always theodolites-- c| +23374|253207|3208|1|19|22043.61|0.04|0.00|A|F|1994-06-12|1994-07-27|1994-06-13|TAKE BACK RETURN|AIR|across the ironic, thin ideas. request| +23374|636543|24080|2|8|11836.08|0.04|0.00|A|F|1994-09-08|1994-08-11|1994-10-07|COLLECT COD|TRUCK|oldly regular platelets h| +23375|143731|18736|1|13|23071.49|0.08|0.03|N|O|1998-01-03|1997-11-29|1998-01-15|TAKE BACK RETURN|MAIL| accounts. carefully | +23375|676993|26994|2|36|70918.56|0.06|0.03|N|O|1997-11-24|1997-10-31|1997-12-24|TAKE BACK RETURN|FOB|f the accounts. fluffily regular deposits | +23375|215297|40306|3|11|13335.08|0.09|0.02|N|O|1997-12-30|1997-11-21|1998-01-28|TAKE BACK RETURN|REG AIR|ages. furiousl| +23375|484222|34223|4|25|30155.00|0.03|0.02|N|O|1997-11-25|1997-12-10|1997-12-10|COLLECT COD|AIR|uffily pending requests alongsid| +23375|308921|21428|5|22|42458.02|0.02|0.03|N|O|1997-12-15|1997-11-06|1997-12-26|DELIVER IN PERSON|REG AIR|quickly. bold, express | +23375|33301|33302|6|31|38263.30|0.10|0.00|N|O|1997-11-10|1997-11-11|1997-12-05|TAKE BACK RETURN|SHIP|e quickly blithel| +23400|270941|45952|1|46|87948.78|0.09|0.08|N|O|1998-03-04|1998-04-08|1998-03-14|TAKE BACK RETURN|SHIP|ickly express acco| +23400|699903|37443|2|1|1902.87|0.05|0.01|N|O|1998-04-22|1998-04-21|1998-04-27|NONE|FOB|ters. quickly u| +23400|257387|32398|3|35|47052.95|0.05|0.01|N|O|1998-04-15|1998-04-17|1998-05-01|COLLECT COD|REG AIR|riously express platelets. careful| +23400|899103|49104|4|31|34163.86|0.08|0.02|N|O|1998-04-19|1998-05-24|1998-04-27|COLLECT COD|RAIL|even realms. unusu| +23400|219328|6841|5|44|54881.64|0.02|0.07|N|O|1998-03-14|1998-05-23|1998-03-29|TAKE BACK RETURN|AIR|dolphins against the blithely regular depo| +23400|238877|1382|6|50|90793.00|0.08|0.01|N|O|1998-04-25|1998-05-05|1998-05-08|NONE|MAIL|nusual accounts. ironic, regular packag| +23400|799955|24986|7|49|100691.08|0.06|0.00|N|O|1998-03-24|1998-05-22|1998-04-02|DELIVER IN PERSON|TRUCK|lly ironic f| +23401|829952|4985|1|8|15055.28|0.07|0.04|A|F|1992-09-09|1992-09-19|1992-10-07|COLLECT COD|FOB|ly unusual sentiments. ideas abov| +23402|814324|14325|1|31|38386.68|0.09|0.02|N|O|1997-09-17|1997-09-07|1997-10-10|COLLECT COD|SHIP|p carefully ironically r| +23402|339756|27275|2|20|35914.80|0.06|0.02|N|O|1997-07-25|1997-07-30|1997-08-24|TAKE BACK RETURN|REG AIR|ickly even pinto | +23402|270460|20461|3|40|57218.00|0.06|0.05|N|O|1997-06-29|1997-09-01|1997-07-28|COLLECT COD|FOB|eans around the f| +23402|616993|42018|4|46|87858.16|0.03|0.01|N|O|1997-07-13|1997-08-21|1997-07-17|TAKE BACK RETURN|REG AIR|even braids. slyly fi| +23402|792087|29633|5|50|58952.50|0.09|0.02|N|O|1997-08-10|1997-08-04|1997-08-23|DELIVER IN PERSON|FOB|r courts sleep car| +23403|424190|11715|1|46|51251.82|0.01|0.04|R|F|1993-07-29|1993-08-23|1993-08-18|DELIVER IN PERSON|TRUCK|unts sleep blithe, ev| +23403|350458|37980|2|31|46761.64|0.04|0.07|A|F|1993-06-21|1993-09-03|1993-07-21|TAKE BACK RETURN|TRUCK|bold deposi| +23403|138262|38263|3|42|54610.92|0.03|0.04|R|F|1993-08-03|1993-08-30|1993-08-31|NONE|RAIL|ial requests mold| +23403|763142|25658|4|5|6025.55|0.05|0.01|R|F|1993-08-03|1993-09-09|1993-08-11|COLLECT COD|AIR|sts boost doggedly according to the | +23403|120658|33161|5|44|73860.60|0.01|0.06|R|F|1993-07-05|1993-09-09|1993-07-20|TAKE BACK RETURN|FOB|es. blithely blithe accounts sleep furio| +23404|533995|9016|1|44|89274.68|0.01|0.02|A|F|1992-11-04|1992-10-30|1992-11-27|TAKE BACK RETURN|FOB|counts will wake| +23404|845747|45748|2|18|30468.60|0.02|0.01|A|F|1992-10-07|1992-12-19|1992-10-12|NONE|REG AIR|d the carefully regular asymptotes. sly| +23404|464586|27096|3|27|41865.12|0.06|0.04|R|F|1992-10-15|1992-10-28|1992-10-31|NONE|RAIL|ly ironic foxes. slyly even re| +23404|285776|10787|4|13|22902.88|0.00|0.02|A|F|1992-12-22|1992-11-19|1993-01-17|DELIVER IN PERSON|AIR|s above the | +23405|957681|20201|1|21|36511.44|0.09|0.05|N|O|1997-06-28|1997-05-22|1997-07-08|DELIVER IN PERSON|MAIL|uriously. carefu| +23405|735508|23051|2|49|75630.03|0.09|0.06|N|O|1997-06-29|1997-05-29|1997-06-30|NONE|MAIL|eep deposits. fin| +23405|676975|39489|3|49|95645.06|0.06|0.06|N|O|1997-06-11|1997-04-20|1997-06-30|TAKE BACK RETURN|AIR|eposits. carefully | +23405|915359|27878|4|18|24737.58|0.08|0.00|N|O|1997-06-05|1997-05-10|1997-06-11|DELIVER IN PERSON|FOB|ironic requests| +23406|909317|46872|1|28|37135.56|0.09|0.01|R|F|1992-05-03|1992-03-26|1992-05-13|TAKE BACK RETURN|SHIP|ingly ironic frays. f| +23406|879084|29085|2|7|7441.28|0.05|0.08|A|F|1992-02-29|1992-03-25|1992-03-12|NONE|MAIL|ng to the packages. ironic acc| +23406|762031|24547|3|41|44813.00|0.05|0.07|A|F|1992-02-12|1992-03-15|1992-02-18|NONE|TRUCK|xes. furiously even acco| +23406|445978|8487|4|2|3847.90|0.08|0.05|A|F|1992-05-23|1992-04-09|1992-05-24|DELIVER IN PERSON|FOB|equests. bold requests wake. slyly| +23406|543646|18667|5|39|65895.18|0.05|0.02|A|F|1992-03-12|1992-04-17|1992-03-25|DELIVER IN PERSON|MAIL|es haggle flu| +23407|686912|36913|1|33|62663.04|0.01|0.05|N|O|1998-04-05|1998-01-30|1998-05-03|TAKE BACK RETURN|MAIL|kages. furiously re| +23407|914027|1582|2|47|48926.06|0.04|0.04|N|O|1998-04-03|1998-02-03|1998-04-09|DELIVER IN PERSON|TRUCK|e. carefully even ideas k| +23407|45001|7502|3|31|29326.00|0.09|0.06|N|O|1998-03-22|1998-01-15|1998-04-21|NONE|MAIL|iously slyly unusual requests. qu| +23407|319680|44693|4|31|52689.77|0.03|0.06|N|O|1998-01-06|1998-01-28|1998-01-22|COLLECT COD|SHIP|o the express, silent requests. blit| +23407|849471|37020|5|29|41192.47|0.04|0.00|N|O|1998-02-03|1998-02-03|1998-02-05|COLLECT COD|REG AIR|ronic accounts. furiously regular theodol| +23407|50089|25092|6|37|38445.96|0.01|0.00|N|O|1998-02-25|1998-02-25|1998-03-20|COLLECT COD|SHIP|sly careful, regular theodolite| +23407|830035|30036|7|12|11579.88|0.10|0.08|N|O|1997-12-10|1998-01-21|1998-01-06|COLLECT COD|TRUCK|f the furiously pend| +23432|383540|8555|1|50|81176.50|0.09|0.04|N|O|1997-09-03|1997-07-16|1997-09-18|NONE|FOB|c accounts. blit| +23432|152414|14918|2|36|52790.76|0.01|0.04|N|O|1997-07-18|1997-06-12|1997-08-03|TAKE BACK RETURN|REG AIR|al theodolites-- furiously| +23433|976258|13816|1|33|44028.93|0.07|0.00|N|O|1998-08-24|1998-09-24|1998-09-16|NONE|TRUCK|hely. final fo| +23433|961716|36755|2|42|74662.14|0.01|0.02|N|O|1998-09-01|1998-08-30|1998-09-22|COLLECT COD|SHIP|mong the unusual, re| +23433|560147|10148|3|7|8449.84|0.10|0.04|N|O|1998-09-10|1998-10-03|1998-09-30|COLLECT COD|MAIL|carefully special,| +23433|378910|3925|4|35|69611.50|0.03|0.03|N|O|1998-09-16|1998-09-15|1998-09-28|TAKE BACK RETURN|MAIL| final requests. blithely even | +23433|334801|47308|5|43|78938.97|0.08|0.02|N|O|1998-10-27|1998-08-29|1998-11-02|TAKE BACK RETURN|FOB|leep enticingly ironic plat| +23433|985150|22708|6|22|27172.42|0.10|0.05|N|O|1998-08-22|1998-08-28|1998-08-24|DELIVER IN PERSON|TRUCK|old accounts boost slyly. slyly special | +23433|407631|20140|7|8|12308.88|0.10|0.03|N|O|1998-08-09|1998-09-01|1998-08-11|COLLECT COD|RAIL|c deposits. quickly pending requ| +23434|38467|968|1|32|44974.72|0.06|0.00|R|F|1994-09-21|1994-12-06|1994-10-11|COLLECT COD|FOB|its. pending, bold gifts sleep requests. | +23434|503972|3973|2|17|33591.15|0.07|0.00|A|F|1994-10-26|1994-11-19|1994-11-11|DELIVER IN PERSON|FOB|thely final accounts sleep furiously blithe| +23434|243602|31115|3|31|47913.29|0.02|0.00|A|F|1994-10-08|1994-10-22|1994-10-31|TAKE BACK RETURN|FOB| are fluffily even, | +23434|216104|41113|4|48|48964.32|0.02|0.04|R|F|1994-10-10|1994-10-29|1994-10-22|TAKE BACK RETURN|SHIP|al deposits.| +23434|45301|45302|5|8|9970.40|0.08|0.04|R|F|1994-10-28|1994-11-16|1994-11-22|COLLECT COD|REG AIR|the packages. dinos boost fluf| +23434|359024|34039|6|33|35739.33|0.06|0.00|A|F|1995-01-05|1994-11-04|1995-01-17|DELIVER IN PERSON|REG AIR|to haggle among the unusu| +23434|110492|10493|7|8|12019.92|0.08|0.08|R|F|1994-12-25|1994-12-02|1995-01-03|TAKE BACK RETURN|SHIP|es haggle blithely alongside of the | +23435|27813|15314|1|3|5222.43|0.03|0.06|N|O|1995-10-27|1995-11-09|1995-11-13|NONE|SHIP|carefully even theodolite| +23435|439429|26954|2|42|57472.80|0.01|0.07|N|O|1995-09-20|1995-12-06|1995-10-11|DELIVER IN PERSON|SHIP|lyly. carefully regular foxes kindl| +23435|478339|28340|3|16|21076.96|0.04|0.01|N|O|1995-11-27|1995-11-09|1995-11-29|TAKE BACK RETURN|MAIL| asymptotes sleep silently| +23435|439776|2285|4|28|48041.00|0.00|0.04|N|O|1995-10-19|1995-11-12|1995-10-24|DELIVER IN PERSON|SHIP|express asymptotes-- carefully iro| +23435|306339|31352|5|6|8071.92|0.09|0.06|N|O|1995-12-16|1995-11-12|1996-01-12|NONE|REG AIR| carefully final dependencies co| +23435|632170|7195|6|39|42983.46|0.04|0.00|N|O|1996-01-11|1995-11-18|1996-02-02|NONE|REG AIR|oxes according to the furiously regular req| +23436|956709|44267|1|3|5296.98|0.09|0.02|N|O|1997-06-05|1997-07-12|1997-06-06|COLLECT COD|AIR|riously even foxes. pinto bea| +23436|393321|5829|2|36|50915.16|0.05|0.00|N|O|1997-06-01|1997-07-25|1997-06-10|NONE|SHIP|e even braids haggle quickly bold accou| +23436|542318|4829|3|15|20404.35|0.02|0.06|N|O|1997-09-16|1997-07-24|1997-10-03|TAKE BACK RETURN|AIR|pending pi| +23436|731321|31322|4|14|18932.06|0.04|0.00|N|O|1997-06-05|1997-07-14|1997-07-02|COLLECT COD|REG AIR|lly bold ideas | +23436|300111|112|5|5|5555.50|0.08|0.03|N|O|1997-09-18|1997-08-09|1997-10-06|COLLECT COD|AIR|riously permanent packages.| +23436|951484|1485|6|32|49134.08|0.10|0.02|N|O|1997-06-02|1997-08-15|1997-06-29|DELIVER IN PERSON|REG AIR|iously. idle, bold packages | +23437|375512|25513|1|46|73025.00|0.10|0.00|R|F|1992-07-07|1992-08-05|1992-07-19|DELIVER IN PERSON|AIR|equests hagg| +23437|215845|40854|2|6|10564.98|0.01|0.04|R|F|1992-09-26|1992-08-07|1992-10-02|DELIVER IN PERSON|AIR|le carefully bold theodo| +23438|904924|17443|1|46|88728.48|0.09|0.08|N|O|1995-11-18|1995-11-06|1995-11-25|COLLECT COD|RAIL|haggle qui| +23438|48122|23123|2|24|25682.88|0.03|0.06|N|O|1995-09-14|1995-10-28|1995-10-05|NONE|SHIP| carefully against the final, furiou| +23438|779199|4230|3|35|44735.60|0.03|0.04|N|O|1995-10-29|1995-11-06|1995-11-17|DELIVER IN PERSON|FOB|nto beans use along the quickly | +23439|842677|17710|1|18|29153.34|0.08|0.06|N|O|1995-08-25|1995-06-18|1995-09-06|NONE|FOB|ons according to th| +23439|859143|21661|2|28|30858.80|0.04|0.00|N|O|1995-08-22|1995-07-29|1995-09-08|DELIVER IN PERSON|SHIP|onic request| +23439|602158|27183|3|43|45585.16|0.10|0.08|N|O|1995-08-16|1995-07-10|1995-08-27|NONE|RAIL|he slyly unusual pinto | +23439|461446|23956|4|39|54889.38|0.03|0.06|N|O|1995-08-23|1995-06-21|1995-09-03|DELIVER IN PERSON|FOB|sts. regular, regular req| +23464|368515|18516|1|32|50672.00|0.10|0.03|N|O|1996-02-17|1996-04-08|1996-03-09|COLLECT COD|TRUCK|pinto beans hagg| +23465|607837|32862|1|10|17448.00|0.00|0.06|R|F|1993-06-01|1993-06-18|1993-06-28|TAKE BACK RETURN|REG AIR|side of the requests. express fox| +23465|914029|14030|2|45|46934.10|0.07|0.07|R|F|1993-08-20|1993-06-22|1993-08-21|DELIVER IN PERSON|AIR|gular deposits wak| +23465|78466|15970|3|47|67889.62|0.03|0.05|R|F|1993-05-13|1993-06-23|1993-05-28|COLLECT COD|MAIL|egular foxes believe slyly final | +23465|775262|25263|4|33|44128.59|0.00|0.04|A|F|1993-06-29|1993-08-02|1993-07-24|COLLECT COD|TRUCK| quickly regular instruct| +23465|817829|42862|5|50|87339.00|0.00|0.05|R|F|1993-07-22|1993-06-23|1993-08-10|TAKE BACK RETURN|FOB|s detect above the doggedly even accoun| +23466|653021|15535|1|39|37985.61|0.05|0.02|R|F|1994-10-03|1994-10-05|1994-10-06|NONE|FOB|ely. slyly final| +23466|315193|40206|2|48|57992.64|0.06|0.04|A|F|1994-10-19|1994-11-18|1994-11-06|NONE|MAIL|fully final foxes-- special asymptotes| +23466|432800|20325|3|29|50250.62|0.09|0.01|R|F|1994-09-24|1994-10-09|1994-09-27|DELIVER IN PERSON|FOB|es. bold excuses cajole | +23467|184078|46582|1|19|22079.33|0.07|0.05|N|O|1997-02-16|1997-01-11|1997-03-11|NONE|MAIL|courts doubt about th| +23467|792061|17092|2|40|46121.20|0.05|0.05|N|O|1997-01-08|1996-11-28|1997-02-02|TAKE BACK RETURN|MAIL|es about the requests cajole slyly accoun| +23467|162098|24602|3|22|25521.98|0.00|0.01|N|O|1996-12-18|1997-01-19|1997-01-03|COLLECT COD|FOB|he pinto be| +23467|376937|1952|4|32|64445.44|0.07|0.04|N|O|1996-11-01|1997-01-05|1996-11-20|TAKE BACK RETURN|AIR|kages against the regular pinto b| +23467|169567|19568|5|22|36004.32|0.10|0.05|N|O|1996-11-29|1996-12-31|1996-12-12|COLLECT COD|TRUCK|tes haggle carefully | +23467|902594|27631|6|47|75037.85|0.00|0.03|N|O|1996-12-17|1996-12-12|1996-12-26|NONE|RAIL|even requests. blithely| +23467|892953|42954|7|37|71998.67|0.07|0.02|N|O|1997-01-31|1996-12-09|1997-02-16|TAKE BACK RETURN|REG AIR|symptotes use blithely from the even, | +23468|855874|18392|1|32|58554.56|0.06|0.01|R|F|1992-09-25|1992-08-01|1992-10-19|DELIVER IN PERSON|AIR|final ideas could have to sleep furiously | +23468|673998|23999|2|31|61130.76|0.03|0.01|A|F|1992-09-04|1992-08-17|1992-09-15|COLLECT COD|RAIL|tes haggle idly. bl| +23468|883720|8755|3|6|10222.08|0.07|0.01|R|F|1992-06-01|1992-07-18|1992-06-06|TAKE BACK RETURN|AIR|outs wake regularly permane| +23468|680228|17768|4|30|36245.70|0.05|0.05|A|F|1992-09-13|1992-08-14|1992-09-30|COLLECT COD|FOB|blithely careful deposits are blithe| +23468|591752|4264|5|36|66374.28|0.04|0.02|A|F|1992-08-11|1992-08-05|1992-08-30|TAKE BACK RETURN|RAIL|ickly quiet packages| +23468|568648|18649|6|6|10299.72|0.05|0.08|A|F|1992-07-15|1992-06-29|1992-08-09|COLLECT COD|SHIP|ic packages hag| +23468|257945|7946|7|10|19029.30|0.03|0.00|A|F|1992-07-23|1992-06-29|1992-08-15|COLLECT COD|MAIL|y carefully ironic theodolites. carefully p| +23469|269686|44697|1|9|14901.03|0.06|0.08|N|O|1996-07-10|1996-09-04|1996-07-16|NONE|AIR|lithely. regular, dog| +23469|596912|21935|2|37|74328.93|0.03|0.03|N|O|1996-07-26|1996-08-10|1996-08-10|COLLECT COD|MAIL|posits. blit| +23469|291589|4095|3|18|28450.26|0.03|0.07|N|O|1996-06-29|1996-07-25|1996-07-12|NONE|TRUCK|even ideas cajole. asymptotes sleep fluff| +23469|730758|30759|4|19|33985.68|0.07|0.06|N|O|1996-07-02|1996-09-04|1996-07-08|COLLECT COD|MAIL|er the platelets wake slyly pend| +23469|838210|13243|5|1|1148.17|0.09|0.04|N|O|1996-09-24|1996-08-24|1996-10-23|TAKE BACK RETURN|TRUCK|s doze blithely. furiously| +23469|790988|3504|6|44|91473.80|0.00|0.07|N|O|1996-09-11|1996-09-08|1996-09-26|DELIVER IN PERSON|FOB|ld foxes over the pending instructions run| +23470|914969|40006|1|35|69437.20|0.07|0.02|N|O|1998-06-04|1998-04-02|1998-06-10|COLLECT COD|FOB|ly slyly ironic packages. fluffily pen| +23470|879460|29461|2|18|25909.56|0.00|0.06|N|O|1998-05-13|1998-05-12|1998-05-23|DELIVER IN PERSON|MAIL|ounts. blith| +23470|71869|34371|3|17|31294.62|0.09|0.02|N|O|1998-03-24|1998-05-02|1998-04-10|DELIVER IN PERSON|SHIP|hely ironic deposits | +23470|893837|43838|4|18|32954.22|0.03|0.08|N|O|1998-03-04|1998-05-12|1998-03-30|TAKE BACK RETURN|SHIP| express deposits. carefull| +23470|711349|11350|5|23|31287.13|0.02|0.05|N|O|1998-06-04|1998-04-20|1998-06-07|NONE|SHIP|uests about the | +23471|713786|26301|1|45|80988.75|0.10|0.04|R|F|1992-07-30|1992-08-13|1992-08-29|DELIVER IN PERSON|RAIL|furiously furiously silent packages. unus| +23471|600868|38405|2|28|49527.24|0.04|0.05|R|F|1992-08-23|1992-09-06|1992-08-28|NONE|REG AIR|lites according to the regular | +23471|787952|12983|3|10|20399.20|0.08|0.01|A|F|1992-10-09|1992-08-21|1992-11-05|COLLECT COD|MAIL|nal braids haggle even| +23496|912606|25125|1|1|1618.56|0.05|0.07|N|O|1995-10-16|1995-11-26|1995-10-27|DELIVER IN PERSON|SHIP|en deposits wake regular requests| +23496|155940|30947|2|16|31935.04|0.08|0.08|N|O|1996-01-23|1995-12-02|1996-01-26|TAKE BACK RETURN|REG AIR|riously among the fina| +23496|874370|36888|3|45|60494.85|0.04|0.06|N|O|1995-11-08|1995-12-19|1995-11-11|TAKE BACK RETURN|REG AIR|deas after the deposits sleep slyly after t| +23496|520504|20505|4|21|32014.08|0.02|0.02|N|O|1996-01-11|1995-11-29|1996-02-10|DELIVER IN PERSON|MAIL|packages-- evenly pending d| +23496|101758|39265|5|40|70390.00|0.09|0.05|N|O|1995-11-03|1996-01-03|1995-11-18|TAKE BACK RETURN|TRUCK|sts may are slyly doggedly | +23496|237135|37136|6|23|24658.76|0.08|0.06|N|O|1995-11-24|1995-12-02|1995-12-22|TAKE BACK RETURN|FOB|requests integrate. blithely final| +23496|523417|35928|7|34|48973.26|0.03|0.02|N|O|1995-11-21|1995-12-15|1995-12-04|DELIVER IN PERSON|RAIL|yly alongside of th| +23497|59728|34731|1|28|47256.16|0.01|0.08|R|F|1995-04-09|1995-04-21|1995-05-06|DELIVER IN PERSON|SHIP|thely final requests boost above t| +23497|843932|6449|2|4|7503.56|0.04|0.08|R|F|1995-06-03|1995-05-26|1995-06-14|NONE|FOB|ithely bold dependencies cajo| +23497|950488|13008|3|30|46153.20|0.05|0.04|A|F|1995-03-27|1995-04-24|1995-04-25|NONE|REG AIR|es. enticing accounts use furiously again| +23497|839727|14760|4|44|73333.92|0.00|0.02|A|F|1995-03-18|1995-05-16|1995-03-19|TAKE BACK RETURN|AIR| pinto beans nag furiously furiously even| +23497|289072|14083|5|6|6366.36|0.02|0.07|A|F|1995-04-06|1995-05-07|1995-04-17|COLLECT COD|MAIL|ctions. slyly daring asymptotes accor| +23498|708413|33442|1|49|69647.62|0.03|0.05|A|F|1994-07-11|1994-08-25|1994-07-19|TAKE BACK RETURN|FOB|ntegrate slyly alongside of t| +23498|281108|6119|2|18|19603.62|0.01|0.06|R|F|1994-10-24|1994-09-18|1994-11-09|TAKE BACK RETURN|REG AIR| furiously e| +23498|573078|10612|3|38|43739.90|0.05|0.03|A|F|1994-09-01|1994-09-30|1994-09-17|COLLECT COD|MAIL|fully ironic deposits after the fluffily ev| +23499|247770|47771|1|21|36072.96|0.04|0.00|A|F|1994-09-27|1994-08-19|1994-10-04|NONE|RAIL|x quickly. express,| +23499|265075|40086|2|15|15600.90|0.07|0.08|R|F|1994-06-30|1994-09-11|1994-07-03|TAKE BACK RETURN|REG AIR|-ray. special | +23499|102004|27009|3|6|6036.00|0.07|0.01|A|F|1994-08-04|1994-08-20|1994-08-19|TAKE BACK RETURN|AIR|lar ideas. even deposits haggle| +23499|367087|42102|4|26|30005.82|0.08|0.00|A|F|1994-10-13|1994-07-17|1994-11-12|TAKE BACK RETURN|TRUCK|beans sleep furiously ironic d| +23499|619607|19608|5|39|59536.23|0.06|0.05|R|F|1994-07-10|1994-08-31|1994-08-08|NONE|RAIL|inal deposits. unusual r| +23499|721435|21436|6|38|55343.20|0.02|0.01|R|F|1994-06-19|1994-07-29|1994-06-23|TAKE BACK RETURN|FOB|ajole bold escapades. final, ir| +23500|623368|23369|1|28|36157.24|0.04|0.00|R|F|1992-11-15|1992-10-25|1992-11-26|TAKE BACK RETURN|TRUCK|c, ironic requests are furio| +23500|945475|45476|2|33|50174.19|0.00|0.01|R|F|1992-12-19|1992-11-25|1992-12-21|COLLECT COD|REG AIR|heodolites. furiously bold packages | +23501|34369|9370|1|9|11730.24|0.00|0.05|R|F|1992-04-21|1992-06-20|1992-04-23|TAKE BACK RETURN|REG AIR|s the fluffily pending ideas.| +23501|626929|39442|2|9|16703.01|0.03|0.01|R|F|1992-07-15|1992-06-05|1992-08-04|TAKE BACK RETURN|RAIL|encies nag| +23502|390660|40661|1|10|17506.50|0.05|0.02|N|O|1996-08-29|1996-08-12|1996-09-13|NONE|TRUCK|fily along the ironic r| +23502|815299|15300|2|18|21856.50|0.06|0.05|N|O|1996-07-09|1996-09-19|1996-08-06|TAKE BACK RETURN|TRUCK|excuses along the reg| +23502|715870|15871|3|3|5657.52|0.07|0.01|N|O|1996-07-24|1996-09-09|1996-08-02|COLLECT COD|REG AIR|ly along the even instructions. ironic, spe| +23502|621429|8966|4|21|28358.19|0.06|0.00|N|O|1996-08-14|1996-09-03|1996-09-11|TAKE BACK RETURN|REG AIR|s pinto beans hinder carefully ex| +23502|350103|12611|5|41|47276.69|0.10|0.04|N|O|1996-10-05|1996-09-28|1996-10-12|NONE|REG AIR|unusual packag| +23503|327060|27061|1|24|26089.20|0.07|0.02|R|F|1992-11-19|1993-01-05|1992-11-30|NONE|TRUCK|regular instruct| +23503|896406|46407|2|39|54692.04|0.01|0.01|A|F|1992-12-27|1993-01-14|1993-01-15|NONE|RAIL|xes-- blithely final excuses alon| +23503|892245|29797|3|11|13609.20|0.01|0.04|A|F|1992-11-29|1992-12-24|1992-12-24|COLLECT COD|TRUCK|eposits nag furiousl| +23503|958134|33173|4|44|52451.96|0.01|0.03|A|F|1992-11-18|1993-01-03|1992-12-09|TAKE BACK RETURN|TRUCK|mptotes. bold pa| +23503|350010|25025|5|48|50880.00|0.04|0.04|A|F|1992-11-18|1993-01-11|1992-11-23|DELIVER IN PERSON|RAIL|uests sleep bl| +23528|444231|44232|1|13|15277.73|0.07|0.00|R|F|1992-10-18|1992-09-17|1992-11-05|NONE|MAIL|unts are slyly. blithely thin ac| +23528|186082|23592|2|20|23361.60|0.09|0.03|R|F|1992-11-26|1992-09-10|1992-12-20|TAKE BACK RETURN|AIR|s are fluffily alongsid| +23528|467840|42859|3|28|50618.96|0.06|0.01|R|F|1992-10-17|1992-09-11|1992-11-11|TAKE BACK RETURN|SHIP| carefully| +23528|980726|5765|4|27|48780.36|0.05|0.03|R|F|1992-10-03|1992-09-30|1992-10-08|DELIVER IN PERSON|RAIL|ounts beside the slyly bo| +23529|836396|36397|1|37|49296.95|0.06|0.02|A|F|1993-07-13|1993-07-25|1993-07-19|COLLECT COD|MAIL|ously bold reques| +23529|300244|25257|2|21|26128.83|0.02|0.00|A|F|1993-08-06|1993-07-17|1993-08-14|DELIVER IN PERSON|AIR|ts might haggle. quickly fin| +23529|188487|38488|3|5|7877.40|0.05|0.00|R|F|1993-08-19|1993-07-05|1993-09-13|NONE|TRUCK|kages promise blithely above the | +23530|638083|596|1|16|16336.80|0.01|0.01|R|F|1992-07-25|1992-08-19|1992-08-23|DELIVER IN PERSON|TRUCK|ly about the even theodolites. b| +23530|255762|5763|2|50|85887.50|0.07|0.00|R|F|1992-09-18|1992-08-14|1992-09-26|NONE|RAIL|usly even ideas sleep slyly around| +23530|581341|43853|3|37|52625.84|0.10|0.00|R|F|1992-08-30|1992-07-20|1992-09-17|DELIVER IN PERSON|TRUCK|slyly ironic depos| +23531|982748|32749|1|19|34783.30|0.04|0.00|N|O|1995-09-15|1995-11-17|1995-09-21|TAKE BACK RETURN|RAIL| unwind slyly furiously regular | +23532|911354|48909|1|7|9557.17|0.10|0.06|N|O|1996-01-08|1996-02-06|1996-01-28|NONE|AIR|ily. fluff| +23532|113823|1330|2|40|73472.80|0.04|0.00|N|O|1996-03-13|1996-01-23|1996-03-26|NONE|RAIL|sauternes haggle fluf| +23533|57771|7772|1|36|62235.72|0.00|0.04|N|O|1997-05-03|1997-02-14|1997-05-13|TAKE BACK RETURN|SHIP|ticingly ironic pinto be| +23533|946595|21632|2|19|31189.45|0.06|0.07|N|O|1997-02-15|1997-02-21|1997-03-08|DELIVER IN PERSON|SHIP|ackages sleep be| +23533|406420|6421|3|36|47750.40|0.03|0.02|N|O|1997-01-22|1997-02-20|1997-01-30|COLLECT COD|TRUCK|deposits aga| +23533|695229|20256|4|6|7345.14|0.10|0.02|N|O|1997-03-07|1997-02-23|1997-03-10|TAKE BACK RETURN|MAIL|s affix carefully. ins| +23534|509750|9751|1|26|45752.98|0.06|0.03|N|O|1995-09-27|1995-09-20|1995-10-13|DELIVER IN PERSON|REG AIR|aggle fluffily bravely express accounts. | +23534|366818|29326|2|32|60313.60|0.08|0.01|N|O|1995-10-23|1995-09-09|1995-11-22|TAKE BACK RETURN|AIR|unts play even ideas. quietly special | +23534|98673|11175|3|22|36776.74|0.04|0.03|N|O|1995-07-27|1995-08-09|1995-08-25|DELIVER IN PERSON|RAIL|nd the requests wa| +23534|391963|29485|4|27|55483.65|0.09|0.02|N|O|1995-09-24|1995-08-07|1995-09-28|DELIVER IN PERSON|SHIP|mpress furiously regular | +23534|705810|43353|5|5|9078.90|0.03|0.04|N|O|1995-09-29|1995-08-03|1995-10-21|COLLECT COD|REG AIR|theodolites are sl| +23534|540062|27593|6|39|42979.56|0.06|0.07|N|O|1995-09-26|1995-08-08|1995-10-20|TAKE BACK RETURN|TRUCK|re blithely. furiously ironic foxes sleep| +23535|942095|4614|1|43|48893.15|0.09|0.03|N|O|1998-04-06|1998-04-20|1998-04-13|COLLECT COD|TRUCK|s. even dependencies sleep caref| +23535|788713|38714|2|12|21620.16|0.06|0.06|N|O|1998-02-09|1998-03-07|1998-02-28|TAKE BACK RETURN|SHIP|efully blithe exc| +23535|898439|48440|3|12|17248.68|0.06|0.04|N|O|1998-02-11|1998-03-17|1998-02-28|DELIVER IN PERSON|RAIL|y ironic instructions. slyly silent courts| +23535|59505|34508|4|2|2929.00|0.01|0.08|N|O|1998-04-27|1998-03-28|1998-05-19|COLLECT COD|MAIL|ve to sleep ironica| +23535|86781|24285|5|18|31820.04|0.02|0.03|N|O|1998-04-14|1998-04-15|1998-04-27|COLLECT COD|TRUCK|even frays run blithely sl| +23535|525298|12829|6|10|13232.70|0.08|0.00|N|O|1998-02-14|1998-04-24|1998-02-23|TAKE BACK RETURN|SHIP|xes. express requests a| +23535|681938|44452|7|5|9599.50|0.02|0.02|N|O|1998-05-26|1998-04-21|1998-06-20|NONE|AIR|the regular, regular dependencies: eve| +23560|330790|5803|1|48|87397.44|0.04|0.00|A|F|1994-02-23|1994-04-17|1994-02-28|NONE|AIR|y ironic accounts cajole qu| +23561|29999|5000|1|35|67514.65|0.03|0.00|A|F|1992-06-07|1992-06-01|1992-06-14|DELIVER IN PERSON|TRUCK|efully final foxes use quickly | +23561|178340|40844|2|43|60988.62|0.01|0.07|R|F|1992-07-05|1992-06-19|1992-07-31|COLLECT COD|MAIL|uffily regular attainments | +23561|345717|33236|3|36|63457.20|0.00|0.02|R|F|1992-05-26|1992-05-03|1992-06-22|DELIVER IN PERSON|TRUCK|slyly foxes. courts engage| +23561|456674|19184|4|36|58703.40|0.00|0.05|R|F|1992-05-30|1992-05-07|1992-06-28|TAKE BACK RETURN|FOB|ross the silent accounts| +23561|312170|24677|5|22|26007.52|0.07|0.08|R|F|1992-04-15|1992-06-11|1992-04-24|TAKE BACK RETURN|TRUCK|final gifts. blithely r| +23561|638091|604|6|39|40133.34|0.05|0.01|R|F|1992-05-03|1992-05-05|1992-05-17|TAKE BACK RETURN|RAIL|ding theodoli| +23562|5240|42741|1|11|12597.64|0.09|0.07|R|F|1994-06-20|1994-06-23|1994-06-23|DELIVER IN PERSON|MAIL|n excuses. bold dolphins abo| +23562|53886|3887|2|13|23918.44|0.07|0.02|A|F|1994-08-17|1994-08-07|1994-09-08|COLLECT COD|RAIL|against the slyly silent ideas. carefully | +23562|657527|45067|3|1|1484.49|0.00|0.00|R|F|1994-08-13|1994-07-27|1994-09-11|COLLECT COD|SHIP|. bravely regular dolphi| +23562|54012|29015|4|31|29946.31|0.10|0.03|A|F|1994-05-18|1994-07-28|1994-05-20|DELIVER IN PERSON|FOB|le slyly pending instructi| +23562|776861|1892|5|3|5813.49|0.09|0.05|R|F|1994-09-01|1994-06-18|1994-09-09|NONE|RAIL|even deposits. carefully even request| +23563|401639|14148|1|5|7703.05|0.10|0.01|N|O|1996-01-23|1996-02-22|1996-02-13|DELIVER IN PERSON|SHIP|ons. bold asymptotes wake silently | +23563|335767|35768|2|7|12619.25|0.01|0.08|N|O|1995-12-31|1996-01-31|1996-01-11|TAKE BACK RETURN|TRUCK|ly silent packages cajole flu| +23563|235541|48046|3|16|23624.48|0.02|0.03|N|O|1996-03-16|1996-01-27|1996-04-02|NONE|FOB|regular requests. fluffily iro| +23563|735571|10600|4|49|78720.46|0.08|0.05|N|O|1995-12-05|1996-01-22|1995-12-27|NONE|MAIL|furiously whithout the ironic deposits. car| +23563|727681|40196|5|35|59802.75|0.06|0.02|N|O|1995-12-16|1996-01-17|1995-12-29|TAKE BACK RETURN|RAIL|eodolites haggle quickly. careful| +23564|188065|25575|1|25|28826.50|0.04|0.05|N|O|1997-06-03|1997-07-02|1997-06-25|TAKE BACK RETURN|FOB|nstructions cajole. regula| +23564|792802|42803|2|45|85264.65|0.08|0.02|N|O|1997-06-12|1997-08-16|1997-06-21|TAKE BACK RETURN|MAIL|patterns haggle about the theod| +23564|618000|30513|3|47|43144.59|0.10|0.02|N|O|1997-07-14|1997-08-05|1997-07-21|NONE|TRUCK|alongside of th| +23565|969691|32211|1|7|12324.55|0.06|0.00|N|O|1996-08-21|1996-09-09|1996-08-31|TAKE BACK RETURN|AIR|hely regular packages sleep fluffi| +23566|546984|22005|1|32|64990.72|0.04|0.07|N|O|1998-03-02|1998-03-10|1998-03-16|DELIVER IN PERSON|RAIL|heodolites. final, special foxes wake ca| +23566|147980|35487|2|9|18251.82|0.00|0.01|N|O|1998-03-10|1998-03-12|1998-03-20|DELIVER IN PERSON|REG AIR| ideas. slyly iro| +23566|87612|114|3|9|14396.49|0.03|0.02|N|O|1998-04-02|1998-04-18|1998-04-21|DELIVER IN PERSON|SHIP|nag permanently afte| +23566|479457|16985|4|26|37347.18|0.10|0.04|N|O|1998-02-27|1998-04-16|1998-03-04|DELIVER IN PERSON|SHIP|e furiousl| +23566|217451|42460|5|33|45158.52|0.00|0.04|N|O|1998-03-10|1998-03-07|1998-03-25|TAKE BACK RETURN|AIR|. fluffily special instructi| +23566|685289|10316|6|49|62438.25|0.00|0.08|N|O|1998-04-03|1998-03-30|1998-04-09|TAKE BACK RETURN|AIR|lly stealthy req| +23567|341247|16260|1|40|51529.20|0.03|0.03|A|F|1994-12-12|1995-02-19|1994-12-23|COLLECT COD|REG AIR| platelets-- closely regular ideas| +23592|596374|8886|1|6|8822.10|0.06|0.07|N|O|1997-04-30|1997-03-28|1997-05-27|NONE|SHIP| accounts wak| +23592|246936|46937|2|17|32009.64|0.04|0.03|N|O|1997-02-03|1997-03-03|1997-02-21|NONE|TRUCK|kly final accounts cajole slyly final| +23592|244361|6866|3|17|22190.95|0.02|0.02|N|O|1997-03-16|1997-02-17|1997-03-24|DELIVER IN PERSON|SHIP| foxes. courts use| +23592|969141|6699|4|13|15731.30|0.09|0.02|N|O|1997-04-02|1997-03-06|1997-04-17|COLLECT COD|SHIP|lites doze| +23593|110107|35112|1|44|49152.40|0.10|0.06|A|F|1992-04-15|1992-04-18|1992-04-20|DELIVER IN PERSON|AIR|uctions was. instructio| +23593|557714|7715|2|8|14173.52|0.03|0.05|A|F|1992-03-31|1992-04-30|1992-04-25|NONE|TRUCK| the accounts. ac| +23593|492282|4792|3|27|34405.02|0.00|0.00|R|F|1992-05-22|1992-05-05|1992-05-23|COLLECT COD|RAIL|etly special deposits cajole boldly| +23593|780454|18000|4|38|58307.96|0.03|0.08|R|F|1992-06-05|1992-05-07|1992-06-21|TAKE BACK RETURN|AIR| across the express, special packages. fl| +23594|857328|32363|1|26|33417.28|0.00|0.07|N|O|1996-07-25|1996-06-28|1996-08-18|DELIVER IN PERSON|MAIL|ar requests. regular asymp| +23594|100950|38457|2|35|68283.25|0.10|0.00|N|O|1996-04-19|1996-07-08|1996-04-23|COLLECT COD|REG AIR|odolites across the final pinto | +23594|658134|20648|3|11|12013.10|0.03|0.00|N|O|1996-05-26|1996-07-13|1996-06-22|COLLECT COD|AIR|requests. bold sauternes integr| +23594|251779|39295|4|27|46730.52|0.09|0.07|N|O|1996-08-10|1996-07-06|1996-09-04|TAKE BACK RETURN|REG AIR|thely carefully express r| +23594|646350|46351|5|36|46667.52|0.07|0.00|N|O|1996-05-09|1996-07-12|1996-06-06|TAKE BACK RETURN|FOB| requests. furiously regular de| +23594|188240|38241|6|41|54457.84|0.06|0.02|N|O|1996-04-18|1996-06-22|1996-05-13|COLLECT COD|SHIP|even packages a| +23594|745026|20055|7|15|16064.85|0.10|0.07|N|O|1996-06-20|1996-07-06|1996-07-07|NONE|AIR| the quickly regular idea| +23595|644754|7267|1|6|10192.32|0.10|0.03|A|F|1992-06-23|1992-05-27|1992-06-24|TAKE BACK RETURN|FOB|ent theodolites are furio| +23596|240285|27798|1|32|39208.64|0.04|0.08|N|O|1996-02-19|1996-04-17|1996-03-08|DELIVER IN PERSON|SHIP|ackages wake furio| +23596|469752|19753|2|32|55095.36|0.00|0.08|N|O|1996-02-27|1996-04-12|1996-03-09|DELIVER IN PERSON|MAIL|s cajole finally furiously final theodolit| +23596|112589|25092|3|35|56055.30|0.08|0.04|N|O|1996-04-09|1996-03-08|1996-04-12|DELIVER IN PERSON|RAIL|sleep; fluffily even deposits| +23596|276825|14341|4|11|19819.91|0.08|0.00|N|O|1996-04-17|1996-04-14|1996-04-23|TAKE BACK RETURN|SHIP|ts wake above the blithel| +23596|589616|27150|5|2|3411.18|0.03|0.04|N|O|1996-05-15|1996-04-28|1996-06-08|NONE|FOB|tegrate permanent| +23596|665656|15657|6|20|32432.40|0.09|0.08|N|O|1996-03-21|1996-03-09|1996-03-26|DELIVER IN PERSON|REG AIR|ic foxes. quickly bold accounts wake.| +23597|946041|46042|1|4|4348.00|0.06|0.03|A|F|1992-05-17|1992-04-27|1992-06-04|DELIVER IN PERSON|RAIL|usly. slyly regular requests ha| +23597|94371|31875|2|47|64172.39|0.01|0.01|R|F|1992-04-15|1992-04-05|1992-04-17|NONE|TRUCK|to the blithely pending pi| +23597|88762|13765|3|25|43769.00|0.09|0.05|R|F|1992-05-09|1992-04-21|1992-06-01|COLLECT COD|TRUCK|final depths. slyly daring foxes hagg| +23597|819988|7537|4|1|1907.94|0.02|0.00|R|F|1992-06-05|1992-03-16|1992-06-08|DELIVER IN PERSON|TRUCK| the requests. blith| +23598|271107|33613|1|12|12937.08|0.07|0.04|N|O|1998-01-02|1998-01-12|1998-01-03|COLLECT COD|MAIL|ular accounts use blithely; e| +23598|492602|17621|2|11|17540.38|0.02|0.06|N|O|1998-03-10|1998-01-06|1998-03-31|TAKE BACK RETURN|TRUCK|against the carefully ironic deposits wake| +23598|149406|11909|3|18|26197.20|0.02|0.04|N|O|1997-12-29|1998-01-30|1998-01-15|DELIVER IN PERSON|RAIL|arhorses are against| +23598|57433|44937|4|41|57007.63|0.07|0.08|N|O|1998-02-02|1998-01-08|1998-02-16|NONE|AIR|ely unusual a| +23598|263203|25709|5|50|58309.50|0.10|0.08|N|O|1998-01-28|1998-01-09|1998-02-03|DELIVER IN PERSON|FOB| the pending requests use carefully about t| +23598|637737|37738|6|6|10048.20|0.10|0.01|N|O|1998-01-20|1997-12-29|1998-02-13|NONE|TRUCK|unts sleep furiously slyly re| +23599|854445|16963|1|35|48979.00|0.00|0.08|N|O|1995-12-15|1995-09-30|1996-01-04|NONE|SHIP|press attainments against the pa| +23624|249668|24677|1|15|24264.75|0.09|0.02|A|F|1992-06-03|1992-06-25|1992-06-23|DELIVER IN PERSON|REG AIR|nusual accounts c| +23624|161912|49422|2|30|59217.30|0.00|0.06|A|F|1992-06-11|1992-07-16|1992-07-10|COLLECT COD|REG AIR|kages integra| +23624|249848|12353|3|3|5393.49|0.07|0.07|A|F|1992-06-14|1992-06-22|1992-07-10|TAKE BACK RETURN|AIR|xes dazzle fi| +23625|779428|4459|1|37|55773.43|0.02|0.07|N|O|1995-07-28|1995-08-07|1995-08-11|NONE|AIR|ter the silen| +23626|745150|45151|1|28|33463.36|0.10|0.05|N|O|1995-11-10|1996-01-06|1995-11-22|TAKE BACK RETURN|REG AIR|nic packages. furiously final deposits bo| +23626|728251|40766|2|19|24305.18|0.07|0.03|N|O|1995-12-18|1996-01-12|1996-01-06|NONE|RAIL|cial requests. special platelets| +23626|706783|31812|3|42|75169.50|0.08|0.06|N|O|1995-12-04|1995-12-20|1995-12-24|NONE|RAIL|ns. furiously blithe instruct| +23626|888362|38363|4|25|33758.00|0.03|0.06|N|O|1995-11-14|1996-01-11|1995-12-04|NONE|FOB|wake about the fluffily iro| +23627|528721|16252|1|37|64738.90|0.01|0.08|N|O|1997-05-18|1997-06-03|1997-05-26|DELIVER IN PERSON|FOB|doze carefully above the carefull| +23628|293047|18058|1|27|28080.81|0.04|0.04|R|F|1994-12-01|1994-12-26|1994-12-27|TAKE BACK RETURN|SHIP|nding theodolites. blithely express reque| +23628|235214|35215|2|1|1149.20|0.08|0.02|R|F|1995-02-03|1995-01-25|1995-02-09|NONE|FOB|idly after the never express asymp| +23628|231340|31341|3|18|22883.94|0.06|0.04|A|F|1995-01-16|1994-12-06|1995-02-01|DELIVER IN PERSON|MAIL|y final pinto beans nag about th| +23628|122044|9551|4|49|52235.96|0.07|0.08|A|F|1994-11-20|1995-01-07|1994-11-21|NONE|REG AIR|ully regular accounts across| +23628|192630|5134|5|48|82686.24|0.05|0.03|R|F|1994-11-25|1994-12-04|1994-12-12|DELIVER IN PERSON|AIR|iously slyly regular hockey players! pinto | +23628|528514|16045|6|16|24679.84|0.09|0.04|A|F|1994-11-14|1995-01-29|1994-11-15|TAKE BACK RETURN|SHIP|out the furiously reg| +23629|329772|4785|1|25|45044.00|0.02|0.04|N|O|1998-02-05|1998-02-18|1998-02-13|COLLECT COD|FOB|lyly bold dependencies. slyl| +23629|468728|6256|2|1|1696.70|0.10|0.05|N|O|1998-01-02|1998-03-03|1998-01-03|DELIVER IN PERSON|FOB|g slyly. platele| +23629|909580|47135|3|27|42917.58|0.04|0.08|N|O|1998-03-02|1998-02-09|1998-04-01|NONE|SHIP|usual theodo| +23629|300850|38369|4|18|33315.12|0.05|0.05|N|O|1998-01-12|1998-01-03|1998-01-26|TAKE BACK RETURN|MAIL|ly special sentiments. furiously bold d| +23629|376189|13711|5|21|26568.57|0.05|0.07|N|O|1998-02-23|1998-01-09|1998-03-18|NONE|SHIP| dependencies. instructions slee| +23630|480879|18407|1|34|63234.90|0.04|0.08|N|O|1995-12-02|1995-10-30|1995-12-24|DELIVER IN PERSON|SHIP|fily regular instructions. regular| +23630|123229|35732|2|43|53845.46|0.05|0.03|N|O|1995-10-31|1995-10-27|1995-11-21|TAKE BACK RETURN|AIR|es. even dolphins h| +23631|470229|7757|1|19|22784.80|0.01|0.08|N|O|1998-07-05|1998-08-19|1998-08-03|DELIVER IN PERSON|MAIL|nding, unusual theodolit| +23656|68473|18474|1|45|64866.15|0.05|0.04|R|F|1992-06-15|1992-06-16|1992-06-22|TAKE BACK RETURN|MAIL|ording to the furiously unusual pin| +23656|818020|18021|2|40|37519.20|0.08|0.04|A|F|1992-04-30|1992-05-04|1992-05-21|NONE|RAIL|f the carefully final theodolites.| +23656|454565|17075|3|7|10636.78|0.06|0.04|R|F|1992-05-29|1992-06-14|1992-06-03|COLLECT COD|RAIL| blithely unusual platelets haggle at | +23656|869064|31582|4|49|50617.98|0.04|0.06|R|F|1992-06-12|1992-05-19|1992-06-28|TAKE BACK RETURN|FOB| express accounts are blithe| +23656|350758|759|5|41|74158.34|0.10|0.04|R|F|1992-06-04|1992-06-19|1992-06-10|DELIVER IN PERSON|SHIP|osits. furiou| +23656|181011|43515|6|39|42588.39|0.03|0.03|R|F|1992-06-23|1992-06-22|1992-07-04|NONE|FOB| fluffily unusual deposits use slyly pendi| +23657|786697|36698|1|9|16052.94|0.05|0.07|N|O|1996-04-16|1996-06-05|1996-05-10|TAKE BACK RETURN|TRUCK|uffily silent request| +23657|7505|7506|2|22|31075.00|0.03|0.00|N|O|1996-05-24|1996-06-19|1996-06-22|TAKE BACK RETURN|REG AIR|eposits-- blithely regula| +23657|135543|35544|3|1|1578.54|0.03|0.05|N|O|1996-06-03|1996-05-15|1996-06-29|TAKE BACK RETURN|AIR| the blithely regular accounts integ| +23658|838744|38745|1|13|21875.10|0.08|0.04|N|O|1997-04-21|1997-03-13|1997-04-24|NONE|AIR|o beans cajole furiously regular in| +23658|753840|16356|2|37|70070.97|0.09|0.08|N|O|1997-01-25|1997-02-24|1997-02-03|COLLECT COD|MAIL|ourts. even, regular packages solve furio| +23658|779211|41727|3|45|58058.10|0.01|0.05|N|O|1997-04-17|1997-03-20|1997-05-17|DELIVER IN PERSON|TRUCK| special instructions doze fluffily qu| +23658|197211|22218|4|19|24855.99|0.09|0.03|N|O|1997-04-26|1997-02-01|1997-05-17|DELIVER IN PERSON|FOB|unusual deposits w| +23658|514340|1871|5|31|41983.92|0.00|0.05|N|O|1997-04-27|1997-03-03|1997-05-06|COLLECT COD|FOB| kindle fluffily slow requests. blithe| +23659|770373|32889|1|40|57733.60|0.01|0.04|N|O|1998-04-02|1998-02-20|1998-04-18|NONE|FOB|ular accounts believe quickly pa| +23659|647479|47480|2|46|65616.24|0.00|0.06|N|O|1998-02-11|1998-03-19|1998-03-10|TAKE BACK RETURN|RAIL|posits was. pending packages boost car| +23659|165065|40072|3|6|6780.36|0.01|0.02|N|O|1998-01-25|1998-03-18|1998-02-21|DELIVER IN PERSON|SHIP|uriously ironi| +23659|234533|47038|4|1|1467.52|0.10|0.04|N|O|1998-02-21|1998-03-12|1998-03-17|TAKE BACK RETURN|RAIL|gainst the special, regular fo| +23659|782035|44551|5|49|54733.00|0.07|0.03|N|O|1998-04-15|1998-03-08|1998-04-24|NONE|RAIL| platelets| +23659|650241|25268|6|26|30971.46|0.09|0.02|N|O|1998-05-06|1998-04-15|1998-05-22|COLLECT COD|REG AIR| against the regular t| +23660|829421|41938|1|36|48613.68|0.06|0.05|R|F|1995-02-13|1995-02-22|1995-03-13|NONE|REG AIR|nusual packages wake fluff| +23660|69012|6516|2|5|4905.05|0.00|0.06|A|F|1995-02-01|1995-01-30|1995-02-25|TAKE BACK RETURN|SHIP|quickly. bold, specia| +23660|870664|33182|3|9|14711.58|0.07|0.02|R|F|1995-02-12|1995-02-08|1995-03-10|TAKE BACK RETURN|AIR|o the pending, express Tiresias. qu| +23660|241044|41045|4|10|9850.30|0.01|0.07|A|F|1994-12-19|1995-02-25|1995-01-16|COLLECT COD|SHIP|ial accoun| +23660|211167|48680|5|41|44204.15|0.02|0.02|A|F|1995-02-16|1995-02-25|1995-02-28|DELIVER IN PERSON|MAIL| bold theodolites nod furiously. re| +23661|49539|49540|1|13|19350.89|0.06|0.01|N|O|1998-06-06|1998-05-01|1998-07-04|COLLECT COD|REG AIR|es are carefully i| +23661|588603|38604|2|24|40597.92|0.02|0.00|N|O|1998-05-15|1998-05-12|1998-05-31|NONE|MAIL|o beans sleep after the blithely regu| +23661|642536|17561|3|41|60618.50|0.03|0.04|N|O|1998-02-25|1998-04-26|1998-03-04|COLLECT COD|REG AIR|the pending, slow instructions. carefull| +23661|98728|36232|4|28|48348.16|0.03|0.00|N|O|1998-06-11|1998-04-21|1998-07-07|NONE|FOB|requests. slyly regular requests boost a| +23661|320945|20946|5|43|84534.99|0.10|0.00|N|O|1998-05-23|1998-03-29|1998-05-27|TAKE BACK RETURN|AIR|ly final requests sleep among t| +23662|131724|6729|1|26|45648.72|0.01|0.01|R|F|1995-04-23|1995-04-06|1995-05-19|NONE|RAIL|ing asymptotes; carefully | +23662|880409|30410|2|35|48627.60|0.03|0.07|R|F|1995-04-11|1995-04-09|1995-04-25|DELIVER IN PERSON|TRUCK|ts x-ray quickly fluf| +23662|25171|12672|3|34|37269.78|0.07|0.02|A|F|1995-05-20|1995-04-13|1995-05-21|DELIVER IN PERSON|RAIL|onic deposits sleep blithely-- requests | +23662|47339|9840|4|6|7717.98|0.09|0.02|R|F|1995-03-15|1995-05-21|1995-04-05|TAKE BACK RETURN|RAIL|lites. ideas haggle quickly accordi| +23662|622532|47557|5|48|69816.00|0.01|0.06|A|F|1995-03-15|1995-04-27|1995-04-12|DELIVER IN PERSON|AIR|rts cajole fluffil| +23662|890858|28410|6|22|40673.82|0.05|0.03|R|F|1995-03-08|1995-05-01|1995-04-02|COLLECT COD|FOB|n accounts h| +23662|637354|49867|7|25|32283.00|0.07|0.08|A|F|1995-04-23|1995-05-02|1995-05-01|NONE|SHIP|r excuses dazzle | +23663|995034|45035|1|24|27095.76|0.10|0.06|N|O|1998-09-09|1998-08-23|1998-09-23|DELIVER IN PERSON|REG AIR| beans. grouches integrate o| +23663|534739|47250|2|2|3547.42|0.03|0.03|N|O|1998-08-05|1998-07-20|1998-08-08|DELIVER IN PERSON|SHIP|he furiously iro| +23663|342275|4782|3|41|54007.66|0.06|0.08|N|O|1998-09-26|1998-08-07|1998-10-06|DELIVER IN PERSON|FOB|requests. even theodolites wake idly a| +23663|613208|25721|4|27|30271.59|0.06|0.05|N|O|1998-08-07|1998-09-05|1998-08-11|COLLECT COD|MAIL|posits. bo| +23663|171437|46444|5|28|42236.04|0.07|0.02|N|O|1998-07-12|1998-09-07|1998-08-02|NONE|REG AIR|symptotes-- blithely final ide| +23663|331783|31784|6|25|45369.25|0.07|0.04|N|O|1998-08-26|1998-08-12|1998-08-29|TAKE BACK RETURN|FOB| against the careful| +23663|263343|13344|7|50|65316.50|0.09|0.07|N|O|1998-06-26|1998-07-19|1998-07-09|TAKE BACK RETURN|TRUCK|uffily even deposits impres| +23688|997983|47984|1|32|66590.08|0.03|0.07|R|F|1994-07-21|1994-07-23|1994-07-25|TAKE BACK RETURN|FOB|ular deposits ki| +23688|84328|9331|2|23|30183.36|0.06|0.05|R|F|1994-10-02|1994-07-24|1994-10-28|DELIVER IN PERSON|REG AIR|al deposits haggle. furiously spec| +23689|544055|6566|1|35|38466.05|0.01|0.05|N|O|1996-06-24|1996-06-13|1996-07-14|TAKE BACK RETURN|RAIL|lly ironic instructions wake fluff| +23689|924210|49247|2|3|3702.51|0.03|0.05|N|O|1996-05-31|1996-06-30|1996-06-14|TAKE BACK RETURN|SHIP|ages detect bli| +23689|194454|44455|3|8|12387.60|0.02|0.08|N|O|1996-05-30|1996-06-15|1996-06-09|TAKE BACK RETURN|FOB|age regular excuses.| +23689|184433|46937|4|17|25796.31|0.02|0.02|N|O|1996-07-25|1996-07-01|1996-07-26|COLLECT COD|FOB| carefully final deposits. blithely eve| +23689|761671|36702|5|29|50246.56|0.03|0.00|N|O|1996-05-25|1996-06-14|1996-06-06|TAKE BACK RETURN|REG AIR|old deposits. always blithe deposits | +23690|309592|47111|1|17|27226.86|0.01|0.01|N|O|1996-01-06|1996-01-06|1996-01-31|DELIVER IN PERSON|SHIP|uctions use quickly even foxes. foxes a| +23690|309534|34547|2|28|43218.56|0.00|0.06|N|O|1995-12-04|1996-02-12|1995-12-25|TAKE BACK RETURN|MAIL|iously regular p| +23690|326080|26081|3|41|45348.87|0.03|0.02|N|O|1996-02-16|1996-01-12|1996-03-13|TAKE BACK RETURN|TRUCK|sual requests cajole. regu| +23690|419160|19161|4|50|53957.00|0.03|0.08|N|O|1996-03-27|1996-01-20|1996-04-01|NONE|RAIL|l foxes. pint| +23691|102370|27375|1|32|43915.84|0.09|0.07|N|O|1998-06-04|1998-05-30|1998-07-02|NONE|REG AIR|e slyly ironic requests haggle quickly ca| +23691|522941|10472|2|49|96232.08|0.03|0.08|N|O|1998-06-10|1998-07-08|1998-06-25|DELIVER IN PERSON|MAIL|ites solve quickly e| +23691|61484|48988|3|34|49146.32|0.05|0.02|N|O|1998-05-03|1998-05-27|1998-05-06|TAKE BACK RETURN|TRUCK|at against the | +23691|354423|16931|4|48|70915.68|0.01|0.03|N|O|1998-07-20|1998-06-12|1998-07-30|NONE|REG AIR|s boost packages. final, final requests ab| +23691|779812|4843|5|40|75671.20|0.03|0.04|N|O|1998-04-28|1998-06-28|1998-05-21|DELIVER IN PERSON|REG AIR|ges. blithe| +23691|292257|42258|6|8|9993.92|0.02|0.03|N|O|1998-05-30|1998-06-10|1998-06-03|COLLECT COD|MAIL|ross the quickly final excuses inte| +23691|950359|360|7|27|38051.37|0.05|0.08|N|O|1998-04-29|1998-07-13|1998-05-21|DELIVER IN PERSON|REG AIR|deas wake q| +23692|675932|959|1|19|36250.10|0.03|0.04|N|O|1997-07-14|1997-09-07|1997-07-31|NONE|RAIL|pendencies cajole. idly e| +23692|379095|16617|2|7|8218.56|0.07|0.05|N|O|1997-08-06|1997-07-22|1997-08-27|NONE|AIR|ly quickly pending accounts.| +23692|443497|31022|3|19|27368.93|0.06|0.08|N|O|1997-08-30|1997-08-31|1997-09-13|TAKE BACK RETURN|TRUCK|gular excuses wake carefully pin| +23693|584085|21619|1|16|18704.96|0.06|0.03|N|O|1997-07-31|1997-06-09|1997-08-02|TAKE BACK RETURN|RAIL|as wake sl| +23694|561538|24050|1|4|6398.04|0.06|0.01|N|O|1997-01-31|1997-02-15|1997-02-13|NONE|SHIP|fully even pinto beans integrate careful| +23694|758654|33685|2|23|39390.26|0.03|0.02|N|O|1997-03-02|1997-03-19|1997-03-22|TAKE BACK RETURN|REG AIR| dependencies nag furiously acro| +23694|695472|7986|3|22|32283.68|0.01|0.05|N|O|1997-02-03|1997-02-24|1997-02-12|TAKE BACK RETURN|MAIL| accounts haggle. regu| +23694|786565|36566|4|2|3303.06|0.02|0.04|N|O|1997-02-21|1997-02-16|1997-03-15|TAKE BACK RETURN|RAIL| to the quietly even accounts. furio| +23694|781326|31327|5|45|63328.05|0.07|0.04|N|O|1997-03-08|1997-03-12|1997-03-27|TAKE BACK RETURN|FOB|unts lose across the final account| +23694|737857|25400|6|4|7579.28|0.09|0.04|N|O|1997-01-03|1997-01-30|1997-01-20|TAKE BACK RETURN|FOB|among the quickly| +23695|813798|26315|1|17|29099.75|0.01|0.08|N|O|1996-01-19|1996-01-19|1996-01-27|COLLECT COD|RAIL|y stealthy foxes k| +23695|500263|37794|2|10|12632.40|0.10|0.00|N|O|1996-01-22|1996-01-25|1996-02-07|TAKE BACK RETURN|SHIP|efully. blithely even accounts haggle car| +23695|915642|15643|3|34|56358.40|0.09|0.03|N|O|1996-02-20|1996-01-04|1996-03-17|DELIVER IN PERSON|FOB|cial, regular packages. carefu| +23720|882406|32407|1|39|54146.04|0.09|0.02|N|O|1997-07-17|1997-06-04|1997-07-30|DELIVER IN PERSON|RAIL|n theodolites. special the| +23720|595991|21014|2|9|18782.73|0.06|0.02|N|O|1997-08-14|1997-06-29|1997-09-10|DELIVER IN PERSON|AIR|s wake quickly. final,| +23720|812690|25207|3|49|78529.85|0.02|0.04|N|O|1997-06-25|1997-06-03|1997-06-26|DELIVER IN PERSON|SHIP|ages haggle under the final packages.| +23721|63760|38763|1|10|17237.60|0.07|0.04|N|O|1996-08-22|1996-07-22|1996-08-28|TAKE BACK RETURN|MAIL|ts. carefully ironic asymptotes affix | +23721|602046|27071|2|5|4740.05|0.07|0.06|N|O|1996-08-17|1996-08-25|1996-09-15|NONE|FOB|e carefully unusual| +23721|581223|18757|3|4|5216.80|0.01|0.03|N|O|1996-07-17|1996-09-15|1996-07-24|COLLECT COD|TRUCK|ously ironic ideas. fluf| +23721|613930|26443|4|33|60848.70|0.08|0.06|N|O|1996-10-09|1996-08-03|1996-10-19|NONE|MAIL|even deposits above the unusual deposits| +23722|423830|36339|1|13|22799.53|0.01|0.01|A|F|1993-07-16|1993-07-08|1993-08-09|NONE|REG AIR|r requests haggle. ironic, iron| +23722|295533|45534|2|27|41270.04|0.05|0.07|A|F|1993-09-30|1993-08-03|1993-10-19|TAKE BACK RETURN|SHIP|dencies. furiously final packa| +23722|7701|45202|3|4|6434.80|0.09|0.07|R|F|1993-06-15|1993-08-09|1993-06-21|NONE|RAIL|tions wake blithely theo| +23722|416389|16390|4|39|50909.04|0.03|0.04|R|F|1993-09-23|1993-07-14|1993-10-04|COLLECT COD|REG AIR|y furiously eve| +23723|137348|24855|1|24|33248.16|0.08|0.04|N|O|1996-12-25|1997-01-25|1997-01-10|DELIVER IN PERSON|MAIL|c requests cajole carefully along| +23723|405489|5490|2|14|19522.44|0.01|0.07|N|O|1997-02-06|1996-12-25|1997-02-09|DELIVER IN PERSON|RAIL|riously after the pending, | +23723|45136|20137|3|10|10811.30|0.08|0.04|N|O|1997-01-30|1997-01-24|1997-02-15|DELIVER IN PERSON|SHIP|ss accounts. ironic, | +23724|2367|14868|1|26|33003.36|0.10|0.00|A|F|1992-11-17|1992-11-20|1992-11-26|TAKE BACK RETURN|RAIL|y slow excuses sublate s| +23725|962776|25296|1|17|31258.41|0.06|0.01|N|O|1996-08-03|1996-10-17|1996-08-29|TAKE BACK RETURN|SHIP|es sublate slyly final theo| +23725|362758|280|2|46|83754.04|0.05|0.08|N|O|1996-09-08|1996-10-20|1996-09-30|NONE|MAIL|nal deposits. slyly express excuses | +23725|859448|21966|3|27|37999.80|0.08|0.08|N|O|1996-11-08|1996-10-17|1996-11-29|NONE|TRUCK|egular packages. requests sleep carefull| +23725|738776|1291|4|21|38109.54|0.10|0.01|N|O|1996-10-05|1996-09-23|1996-10-19|NONE|SHIP|ow ideas. pending| +23725|605636|18149|5|10|15416.00|0.00|0.03|N|O|1996-11-24|1996-09-19|1996-12-05|COLLECT COD|FOB|fily special packages above the blithely r| +23725|911503|36540|6|1|1514.46|0.05|0.03|N|O|1996-11-21|1996-10-14|1996-11-23|NONE|TRUCK|y final asymptotes nod. unusual account| +23725|623771|23772|7|26|44063.24|0.07|0.02|N|O|1996-08-16|1996-08-30|1996-08-26|DELIVER IN PERSON|TRUCK|tes! slyly final pinto beans hagg| +23726|704296|29325|1|40|52010.40|0.09|0.08|A|F|1993-06-10|1993-04-22|1993-06-24|DELIVER IN PERSON|SHIP|ss the pending packages. ironic, dar| +23726|99604|37108|2|44|70558.40|0.03|0.04|R|F|1993-05-23|1993-06-14|1993-06-21|DELIVER IN PERSON|REG AIR|ar requests above the ev| +23726|33275|33276|3|15|18124.05|0.05|0.06|A|F|1993-05-31|1993-04-24|1993-06-19|TAKE BACK RETURN|SHIP|ackages shall | +23726|236926|36927|4|48|89419.68|0.04|0.04|A|F|1993-04-21|1993-05-04|1993-05-04|TAKE BACK RETURN|FOB|efully quiet pains use quickly careful| +23726|682|38183|5|31|49063.08|0.10|0.05|R|F|1993-05-02|1993-04-21|1993-05-21|NONE|FOB|osits across the| +23726|454369|29388|6|34|44993.56|0.05|0.06|A|F|1993-05-16|1993-06-12|1993-06-01|NONE|TRUCK|t requests ca| +23726|576753|39265|7|30|54891.90|0.07|0.00|R|F|1993-07-07|1993-06-09|1993-07-24|NONE|AIR|carefully slowly final| +23727|480958|30959|1|23|44595.39|0.10|0.05|A|F|1994-10-22|1994-12-07|1994-11-02|NONE|FOB|nts. furiously even packages thrash | +23752|69477|31979|1|16|23143.52|0.09|0.08|R|F|1993-05-14|1993-06-15|1993-06-08|COLLECT COD|FOB|e furiously furious asym| +23752|684034|9061|2|45|45810.00|0.08|0.04|R|F|1993-06-23|1993-07-02|1993-07-07|NONE|FOB|y ironic foxes wake blithely fluffily p| +23752|544921|19942|3|1|1965.90|0.00|0.05|A|F|1993-04-22|1993-05-20|1993-04-27|NONE|REG AIR|y doggedly unusual id| +23752|472922|10450|4|23|43582.70|0.09|0.00|R|F|1993-07-23|1993-06-11|1993-08-05|COLLECT COD|MAIL| regular deposits boost st| +23752|392656|17671|5|29|50710.56|0.02|0.08|A|F|1993-06-13|1993-06-03|1993-07-12|COLLECT COD|AIR|even deposits. slyly i| +23752|364048|26556|6|40|44481.20|0.08|0.06|R|F|1993-05-21|1993-05-25|1993-05-27|DELIVER IN PERSON|SHIP|press dependencies sleep b| +23752|544658|19679|7|35|59592.05|0.02|0.06|A|F|1993-06-30|1993-05-22|1993-07-30|TAKE BACK RETURN|RAIL|ndencies impres| +23753|63710|38713|1|46|76990.66|0.07|0.05|N|O|1998-02-21|1998-02-04|1998-03-02|DELIVER IN PERSON|AIR|ar dinos wake blithely idl| +23753|765110|15111|2|6|7050.48|0.00|0.03|N|O|1998-01-14|1998-03-03|1998-01-31|TAKE BACK RETURN|FOB|inal packages| +23753|193235|5739|3|37|49144.51|0.03|0.04|N|O|1998-04-22|1998-03-02|1998-05-14|COLLECT COD|MAIL| brave asymptotes haggl| +23753|691985|41986|4|11|21746.45|0.05|0.04|N|O|1998-04-15|1998-02-24|1998-05-12|COLLECT COD|RAIL|e ironic courts. furiously regula| +23753|190264|2768|5|6|8125.56|0.10|0.01|N|O|1998-03-14|1998-01-24|1998-03-18|NONE|MAIL|al pinto beans are dep| +23753|757676|32707|6|6|10401.84|0.02|0.06|N|O|1998-03-20|1998-02-23|1998-03-26|DELIVER IN PERSON|MAIL|cross the thinly pending| +23754|566661|4195|1|14|24186.96|0.02|0.06|N|O|1996-02-19|1996-03-12|1996-02-27|TAKE BACK RETURN|FOB|g to the carefully regu| +23755|64993|27495|1|40|78319.60|0.01|0.05|R|F|1993-08-10|1993-07-27|1993-08-15|NONE|SHIP|the blithely even accounts. fl| +23755|325161|37668|2|25|29653.75|0.06|0.04|A|F|1993-07-26|1993-09-08|1993-08-13|TAKE BACK RETURN|REG AIR|final pinto beans shall wake r| +23755|965861|3419|3|28|53950.96|0.08|0.03|A|F|1993-08-01|1993-08-30|1993-08-20|TAKE BACK RETURN|MAIL|jole. instructions| +23755|211147|48660|4|38|40208.94|0.07|0.02|R|F|1993-06-24|1993-09-09|1993-07-11|COLLECT COD|TRUCK| sleep against the car| +23755|739086|39087|5|27|30376.35|0.04|0.00|R|F|1993-10-02|1993-07-19|1993-10-05|DELIVER IN PERSON|RAIL|e slyly eve| +23755|812230|24747|6|2|2284.38|0.07|0.00|R|F|1993-08-13|1993-08-09|1993-08-27|COLLECT COD|SHIP|nt packages.| +23756|887230|12265|1|18|21909.42|0.04|0.00|A|F|1992-12-24|1993-01-04|1993-01-18|TAKE BACK RETURN|RAIL|inal, silent theodolites. blithely even id| +23756|667010|29524|2|42|41033.16|0.02|0.00|A|F|1993-02-07|1992-12-31|1993-02-17|COLLECT COD|RAIL|al requests integrate| +23756|430266|42775|3|30|35887.20|0.09|0.08|R|F|1993-01-04|1992-12-22|1993-01-30|DELIVER IN PERSON|RAIL|sly final packages. furiously iro| +23756|478449|28450|4|29|41395.18|0.09|0.03|A|F|1992-11-14|1992-12-13|1992-12-04|TAKE BACK RETURN|AIR|ch carefully a| +23757|176785|1792|1|48|89365.44|0.04|0.03|R|F|1993-07-05|1993-07-03|1993-07-18|NONE|SHIP|nusual ideas sleep fluffily carefully f| +23757|223535|36040|2|35|51048.20|0.00|0.03|R|F|1993-05-08|1993-06-24|1993-05-13|COLLECT COD|REG AIR|lets after the fluffily final | +23757|939660|14697|3|8|13596.96|0.09|0.00|A|F|1993-07-29|1993-05-16|1993-08-28|NONE|AIR| fluffily ironic packages are quickl| +23757|849805|49806|4|25|43869.00|0.09|0.08|A|F|1993-07-11|1993-07-02|1993-08-06|TAKE BACK RETURN|RAIL|rate fluffily.| +23757|671668|21669|5|21|34432.23|0.06|0.00|A|F|1993-07-13|1993-05-31|1993-08-03|DELIVER IN PERSON|FOB|ke quickly even requests. quickly| +23757|713267|25782|6|50|64011.50|0.09|0.08|R|F|1993-05-19|1993-05-22|1993-05-28|DELIVER IN PERSON|REG AIR|ic accounts doze carefully above the quickl| +23757|863604|1156|7|47|73675.32|0.05|0.01|R|F|1993-07-08|1993-05-19|1993-07-10|NONE|MAIL|riously bold accounts.| +23758|579723|29724|1|43|77516.10|0.07|0.03|R|F|1992-05-19|1992-04-26|1992-06-06|NONE|SHIP|old theodolites poach. even inst| +23759|518450|5981|1|16|23494.88|0.03|0.01|N|O|1997-09-30|1997-09-11|1997-10-26|NONE|AIR|foxes! final ideas wak| +23759|587790|12813|2|8|15022.16|0.03|0.06|N|O|1997-10-05|1997-09-02|1997-10-14|DELIVER IN PERSON|REG AIR|eposits. special tithes are above the care| +23759|984473|46993|3|26|40493.18|0.00|0.03|N|O|1997-09-03|1997-08-27|1997-09-24|NONE|SHIP|nts hang carefu| +23759|32355|44856|4|3|3862.05|0.09|0.03|N|O|1997-11-21|1997-08-27|1997-12-20|COLLECT COD|MAIL|fily. blit| +23784|11051|48552|1|9|8658.45|0.10|0.08|N|O|1997-12-07|1997-11-04|1997-12-15|NONE|TRUCK|ress courts| +23785|116712|41717|1|37|63962.27|0.07|0.02|R|F|1995-03-14|1995-02-07|1995-03-18|TAKE BACK RETURN|REG AIR|carefully regula| +23785|569205|44228|2|3|3822.54|0.09|0.08|A|F|1995-03-16|1995-01-04|1995-04-08|DELIVER IN PERSON|TRUCK|ess ideas. instructions boost fluffily a| +23785|625264|289|3|30|35676.90|0.06|0.08|A|F|1995-02-19|1995-01-04|1995-02-27|NONE|REG AIR|y unusual deposits haggle. bold| +23785|796012|8528|4|25|27699.50|0.02|0.01|R|F|1995-03-14|1995-01-09|1995-03-21|COLLECT COD|TRUCK|ckages. quickly bold packag| +23785|562205|12206|5|24|30412.32|0.01|0.08|A|F|1995-02-19|1995-01-08|1995-03-11|NONE|FOB|busily ironic re| +23785|965287|40326|6|5|6761.20|0.02|0.00|R|F|1995-01-15|1995-02-05|1995-02-02|NONE|SHIP|ts. ironic accounts x-ray slowly carefu| +23786|336653|36654|1|46|77723.44|0.07|0.02|N|O|1996-04-17|1996-04-11|1996-05-09|NONE|SHIP|iously final foxes. blithely express req| +23787|486388|36389|1|38|52225.68|0.05|0.00|R|F|1995-01-01|1995-02-08|1995-01-04|NONE|TRUCK|ajole carefully ex| +23787|709858|9859|2|28|52298.96|0.00|0.01|A|F|1994-12-06|1995-02-04|1995-01-04|TAKE BACK RETURN|SHIP|tructions b| +23787|572835|47858|3|3|5723.43|0.08|0.02|A|F|1995-02-04|1995-02-03|1995-02-12|COLLECT COD|RAIL|sits; pending, close platelets abov| +23787|637588|12613|4|50|76277.50|0.10|0.08|R|F|1994-12-19|1995-02-04|1995-01-17|TAKE BACK RETURN|TRUCK|r packages cajole fluffily quickly un| +23787|929475|41994|5|24|36106.32|0.07|0.02|A|F|1995-03-23|1995-02-01|1995-03-30|DELIVER IN PERSON|SHIP|. even ideas wa| +23787|685443|47957|6|28|39995.48|0.09|0.04|R|F|1995-03-26|1995-01-19|1995-04-21|TAKE BACK RETURN|FOB|eaves: final deposits serve slyly above the| +23787|227428|27429|7|42|56927.22|0.00|0.01|R|F|1995-03-06|1995-01-01|1995-03-28|COLLECT COD|REG AIR|ndencies would boost slyly| +23788|372928|35436|1|23|46020.93|0.01|0.04|R|F|1995-03-28|1995-05-01|1995-03-30|NONE|MAIL|of the packages| +23788|785960|23506|2|21|42964.53|0.09|0.04|A|F|1995-03-14|1995-03-12|1995-03-16|COLLECT COD|REG AIR| quickly unusual accoun| +23788|618097|18098|3|30|30451.80|0.07|0.05|A|F|1995-04-17|1995-04-05|1995-04-29|DELIVER IN PERSON|REG AIR|ing accounts. final, pending | +23789|143787|43788|1|40|73231.20|0.00|0.01|N|O|1997-05-09|1997-06-07|1997-05-29|DELIVER IN PERSON|RAIL|arefully even accounts wake furio| +23790|185813|48317|1|34|64559.54|0.07|0.02|R|F|1992-06-01|1992-05-06|1992-06-03|NONE|SHIP|ar instructions nag fluffily. ste| +23790|943956|43957|2|1|1999.91|0.02|0.01|R|F|1992-07-10|1992-04-30|1992-07-29|DELIVER IN PERSON|FOB|c deposits are slyl| +23790|61508|49012|3|20|29390.00|0.05|0.08|A|F|1992-06-08|1992-06-03|1992-06-30|DELIVER IN PERSON|FOB|egular court| +23790|749209|11724|4|12|15098.04|0.00|0.05|A|F|1992-05-08|1992-05-14|1992-05-09|NONE|TRUCK| requests sleep about the slyly regular co| +23790|940459|40460|5|27|40484.07|0.04|0.00|A|F|1992-06-10|1992-04-24|1992-07-07|DELIVER IN PERSON|RAIL|regular acc| +23790|291524|41525|6|42|63651.42|0.02|0.06|A|F|1992-06-04|1992-05-04|1992-06-29|NONE|REG AIR|ual instructions. furio| +23790|638964|26501|7|29|55184.97|0.10|0.02|R|F|1992-07-13|1992-05-27|1992-08-08|DELIVER IN PERSON|REG AIR|ecial requests affix quickly regular depos| +23791|53689|28692|1|11|18069.48|0.02|0.08|N|O|1997-11-22|1997-12-09|1997-12-17|NONE|AIR|ic instructions cajole slyly| +23791|337331|12344|2|16|21893.12|0.10|0.04|N|O|1997-12-20|1997-11-26|1998-01-19|COLLECT COD|AIR|cajole fluffi| +23816|504142|16653|1|29|33237.48|0.08|0.04|N|O|1997-05-04|1997-06-18|1997-05-21|DELIVER IN PERSON|REG AIR|ffily above the blithely bold accounts. i| +23817|197209|22216|1|48|62697.60|0.05|0.01|R|F|1992-12-14|1993-02-12|1992-12-16|COLLECT COD|RAIL|s. bold packa| +23817|481642|44152|2|50|81181.00|0.04|0.05|R|F|1993-02-10|1993-02-16|1993-02-20|DELIVER IN PERSON|RAIL|quests cajol| +23817|940481|15518|3|42|63900.48|0.04|0.00|R|F|1993-03-02|1993-01-06|1993-03-17|COLLECT COD|MAIL|nic packages. carefully pe| +23818|682126|32127|1|38|42107.42|0.07|0.03|N|O|1998-04-09|1998-05-16|1998-04-18|COLLECT COD|RAIL|ronic excuses. dependencies are furio| +23818|485248|22776|2|6|7399.32|0.03|0.00|N|O|1998-05-07|1998-05-13|1998-05-31|COLLECT COD|MAIL|sleep final, special foxes. expre| +23818|549857|12368|3|18|34322.94|0.03|0.03|N|O|1998-05-15|1998-06-09|1998-05-17|COLLECT COD|AIR|ly quiet theodolit| +23818|441397|16414|4|22|29444.14|0.06|0.00|N|O|1998-06-19|1998-05-13|1998-07-04|COLLECT COD|REG AIR|equests. furiously unusual warhorses about| +23819|798766|11282|1|32|59671.36|0.10|0.00|N|O|1998-03-20|1998-05-18|1998-04-08|NONE|RAIL|ges? final accounts detect| +23820|842327|4844|1|48|60925.44|0.05|0.06|N|O|1998-07-05|1998-07-20|1998-08-01|DELIVER IN PERSON|AIR|haggle quickly about the final, unusu| +23821|973915|36435|1|7|13922.09|0.06|0.02|N|O|1998-05-25|1998-04-06|1998-06-07|DELIVER IN PERSON|RAIL|icingly pending accounts nag o| +23821|577219|2242|2|43|55736.17|0.10|0.03|N|O|1998-02-06|1998-04-16|1998-03-05|NONE|FOB|arefully. slyly even dol| +23821|316554|4073|3|37|58109.98|0.05|0.02|N|O|1998-02-13|1998-04-03|1998-02-19|TAKE BACK RETURN|SHIP|ages cajole fluf| +23821|316924|4443|4|8|15527.28|0.10|0.08|N|O|1998-02-06|1998-04-21|1998-02-15|TAKE BACK RETURN|SHIP|ts alongside of the slyly final | +23821|531625|19156|5|20|33132.00|0.07|0.03|N|O|1998-04-10|1998-03-18|1998-05-02|COLLECT COD|REG AIR| ruthless, final dependencies gro| +23821|6131|18632|6|8|8297.04|0.05|0.06|N|O|1998-05-23|1998-03-03|1998-05-25|TAKE BACK RETURN|MAIL|ts. furiously ironic platelets are amo| +23821|35537|10538|7|29|42703.37|0.06|0.07|N|O|1998-04-13|1998-03-21|1998-04-19|COLLECT COD|SHIP|fily. furiously even asymptotes ab| +23822|263094|13095|1|30|31712.40|0.01|0.08|N|O|1996-03-25|1996-04-19|1996-04-19|NONE|MAIL| furiously special warthogs. quickly spec| +23823|418303|18304|1|11|13434.08|0.03|0.06|N|O|1998-08-10|1998-08-05|1998-09-03|DELIVER IN PERSON|SHIP|ly alongside of the instruc| +23823|415704|40721|2|20|32393.60|0.01|0.01|N|O|1998-08-23|1998-08-21|1998-08-28|DELIVER IN PERSON|REG AIR|uffily slyly regular a| +23823|730022|5051|3|47|49443.53|0.03|0.08|N|O|1998-10-02|1998-07-25|1998-10-17|DELIVER IN PERSON|MAIL|lyly. ironic deposits detect c| +23823|474973|49992|4|23|44802.85|0.05|0.05|N|O|1998-07-15|1998-08-09|1998-07-31|NONE|RAIL|old platelets haggle blit| +23848|802192|2193|1|2|2188.30|0.08|0.07|N|O|1997-08-18|1997-08-20|1997-08-26|NONE|FOB|ngly ironic accounts. excus| +23849|752076|14592|1|19|21432.76|0.07|0.00|R|F|1995-01-15|1994-12-07|1995-02-03|TAKE BACK RETURN|AIR|ithely quickly final | +23849|140352|2855|2|34|47339.90|0.10|0.08|R|F|1995-02-09|1994-12-03|1995-02-23|COLLECT COD|MAIL|ounts are furiously quickly eve| +23849|885085|35086|3|4|4280.16|0.07|0.04|R|F|1994-12-23|1995-01-19|1995-01-07|NONE|REG AIR|ding to the theodolites! accounts wake alon| +23850|286599|36600|1|21|33297.18|0.10|0.07|A|F|1994-04-04|1994-03-15|1994-04-19|DELIVER IN PERSON|REG AIR|ccounts impress about the| +23850|860184|22702|2|22|25171.08|0.09|0.01|A|F|1994-01-07|1994-03-10|1994-01-29|DELIVER IN PERSON|SHIP|y even, express packages. daringly r| +23850|101513|39020|3|50|75725.50|0.06|0.02|R|F|1994-03-24|1994-03-12|1994-03-29|TAKE BACK RETURN|RAIL|e fluffily | +23851|723267|48296|1|9|11612.07|0.09|0.04|R|F|1995-04-09|1995-02-23|1995-05-03|NONE|REG AIR| accounts haggle among the finally regul| +23851|932207|32208|2|18|22304.88|0.00|0.00|A|F|1995-02-08|1995-01-29|1995-02-22|COLLECT COD|SHIP|posits haggle never. final accou| +23851|594173|19196|3|39|49418.85|0.07|0.00|R|F|1995-01-06|1995-02-04|1995-02-01|TAKE BACK RETURN|REG AIR|-- express, ironic reque| +23852|911547|24066|1|21|32728.50|0.08|0.00|N|O|1997-07-02|1997-08-21|1997-07-22|NONE|MAIL|posits haggle about the furiously regular p| +23852|355419|17927|2|26|38334.40|0.10|0.03|N|O|1997-06-06|1997-07-27|1997-07-05|DELIVER IN PERSON|SHIP|e above the pinto beans. even, ironic d| +23853|420316|20317|1|3|3708.87|0.10|0.06|N|O|1995-12-28|1995-12-01|1996-01-23|COLLECT COD|TRUCK|sts haggle carefully. | +23853|244810|32323|2|37|64927.60|0.06|0.08|N|O|1996-01-16|1995-12-04|1996-02-06|TAKE BACK RETURN|SHIP|sts sleep care| +23853|505457|17968|3|6|8774.58|0.08|0.00|N|O|1995-12-08|1995-11-24|1996-01-04|NONE|TRUCK|entiments. bold packages alongside of t| +23853|211106|48619|4|42|42717.78|0.08|0.08|N|O|1995-10-08|1995-11-30|1995-10-25|COLLECT COD|MAIL|o the final theodolites. packages | +23854|897638|10156|1|16|26169.44|0.05|0.02|N|O|1995-08-15|1995-07-25|1995-08-16|DELIVER IN PERSON|SHIP|sual packages wake. furiously iro| +23854|587975|25509|2|14|28881.30|0.04|0.02|N|O|1995-08-25|1995-06-28|1995-08-30|TAKE BACK RETURN|AIR|; quickly dogged theodolites around the| +23854|92050|42051|3|25|26051.25|0.01|0.04|R|F|1995-05-12|1995-06-17|1995-05-29|COLLECT COD|MAIL| are slyly. regular ideas are| +23854|84204|34205|4|20|23764.00|0.10|0.03|N|O|1995-08-30|1995-06-15|1995-09-24|TAKE BACK RETURN|FOB|s. regular requests b| +23855|40370|40371|1|6|7862.22|0.04|0.01|N|O|1996-02-28|1996-01-29|1996-03-27|DELIVER IN PERSON|AIR|efully carefully even | +23880|371866|46881|1|9|17440.65|0.03|0.07|A|F|1994-02-07|1993-11-17|1994-02-11|DELIVER IN PERSON|MAIL|; slyly final | +23880|944272|44273|2|40|52649.20|0.03|0.06|A|F|1994-02-08|1993-11-25|1994-02-10|NONE|REG AIR|rses doze carefully carefully regular reque| +23881|49693|24694|1|12|19712.28|0.07|0.01|A|F|1993-06-07|1993-06-24|1993-06-22|TAKE BACK RETURN|REG AIR|final pearls. fluffily i| +23882|525736|13267|1|27|47566.17|0.04|0.05|N|O|1996-12-01|1997-02-08|1996-12-02|COLLECT COD|SHIP|the close requests sleep accou| +23882|42623|30124|2|4|6262.48|0.04|0.00|N|O|1997-01-30|1997-02-06|1997-02-04|COLLECT COD|SHIP|t deposits past the reg| +23882|357464|44986|3|4|6085.80|0.04|0.00|N|O|1997-01-08|1996-12-21|1997-02-03|COLLECT COD|RAIL|nto beans. accounts are furi| +23882|880971|6006|4|2|3903.86|0.03|0.04|N|O|1997-01-18|1997-01-03|1997-02-03|COLLECT COD|AIR|ously dependencies-- unusual accou| +23882|470034|7562|5|25|25100.25|0.08|0.04|N|O|1997-03-03|1996-12-28|1997-03-17|DELIVER IN PERSON|RAIL|about the bli| +23882|850070|37622|6|38|38761.14|0.10|0.04|N|O|1997-02-06|1997-01-08|1997-02-24|NONE|AIR|urious requests cajole. ironic, bold reques| +23883|870063|20064|1|27|27891.54|0.08|0.04|A|F|1995-03-31|1995-05-08|1995-04-05|NONE|TRUCK|ly pending ideas haggle f| +23884|638897|26434|1|19|34881.34|0.06|0.03|A|F|1992-08-26|1992-10-22|1992-09-07|COLLECT COD|AIR| special deposi| +23884|941155|28710|2|1|1196.11|0.04|0.07|A|F|1992-10-13|1992-10-18|1992-11-12|COLLECT COD|TRUCK|gside of the packages de| +23885|421820|21821|1|20|34836.00|0.10|0.06|A|F|1994-11-28|1995-01-07|1994-12-05|COLLECT COD|AIR|l excuses against the fluffily ironic c| +23885|526909|14440|2|12|23230.56|0.05|0.06|A|F|1995-02-17|1995-01-03|1995-03-06|NONE|FOB|bold deposits integrate blithely despi| +23885|756292|18808|3|2|2696.52|0.07|0.04|R|F|1994-12-16|1995-01-07|1995-01-03|NONE|TRUCK|ecial accounts cajo| +23885|998186|35744|4|34|43660.76|0.02|0.00|R|F|1994-11-18|1995-01-06|1994-11-20|NONE|RAIL|ld platelets. permanent instr| +23885|503731|28752|5|8|13877.68|0.03|0.04|R|F|1994-12-31|1994-12-23|1995-01-12|DELIVER IN PERSON|SHIP|tly bold foxes. carefully regular packages| +23886|602697|27722|1|41|65586.06|0.07|0.08|R|F|1994-08-19|1994-06-22|1994-09-06|TAKE BACK RETURN|TRUCK|xes during th| +23886|518864|18865|2|29|54602.36|0.00|0.00|R|F|1994-07-29|1994-08-02|1994-08-23|TAKE BACK RETURN|FOB|lites. regular, regular accounts haggle| +23886|539759|27290|3|14|25182.22|0.08|0.08|R|F|1994-06-14|1994-08-10|1994-06-29|TAKE BACK RETURN|FOB|ealms haggle finally even instructions. | +23887|887343|49861|1|50|66515.00|0.04|0.04|N|O|1996-03-28|1996-03-31|1996-04-12|DELIVER IN PERSON|AIR|ages affix carefully among the ironic | +23912|209119|34128|1|39|40095.90|0.09|0.07|N|O|1997-07-11|1997-07-08|1997-07-30|NONE|AIR|unts breach quickly furio| +23912|658191|8192|2|9|10342.44|0.03|0.06|N|O|1997-08-21|1997-06-22|1997-09-14|TAKE BACK RETURN|FOB|yly ruthles| +23912|203074|40587|3|26|25403.56|0.02|0.05|N|O|1997-08-03|1997-07-29|1997-08-05|NONE|MAIL|fluffily even deposits. slyly special acco| +23912|64498|2002|4|6|8774.94|0.05|0.08|N|O|1997-08-28|1997-07-22|1997-09-25|DELIVER IN PERSON|MAIL| are slyly| +23912|15153|40154|5|45|48066.75|0.05|0.07|N|O|1997-07-13|1997-06-04|1997-08-12|TAKE BACK RETURN|SHIP|eans are blithely express accounts. bo| +23913|863610|1162|1|1|1573.57|0.06|0.06|N|O|1998-02-25|1998-03-13|1998-03-26|TAKE BACK RETURN|REG AIR|ar courts boost blithely along the| +23913|690614|40615|2|49|78624.42|0.07|0.05|N|O|1998-03-06|1998-03-13|1998-03-08|NONE|TRUCK|final accounts wake abo| +23913|146850|9353|3|30|56905.50|0.00|0.01|N|O|1998-04-28|1998-03-20|1998-05-02|NONE|AIR|lithely ironic theodolites detect. slyl| +23913|101912|39419|4|9|17225.19|0.07|0.00|N|O|1998-04-10|1998-03-18|1998-05-02|COLLECT COD|MAIL|cial deposits wake blithely bold account| +23913|826098|13647|5|50|51202.50|0.06|0.03|N|O|1998-01-19|1998-03-14|1998-02-17|NONE|REG AIR|. special | +23913|223735|48744|6|13|21563.36|0.01|0.04|N|O|1998-02-26|1998-02-18|1998-03-12|COLLECT COD|RAIL|alongside of the accoun| +23914|307572|45091|1|36|56864.16|0.03|0.05|N|O|1996-07-15|1996-09-10|1996-08-04|COLLECT COD|SHIP|nticing deposits above the furiously | +23915|768342|43373|1|13|18334.03|0.05|0.07|A|F|1995-03-27|1995-02-18|1995-04-20|TAKE BACK RETURN|FOB|oost slyly slyly furio| +23915|508958|21469|2|10|19669.30|0.00|0.05|R|F|1995-03-21|1995-01-26|1995-04-07|TAKE BACK RETURN|RAIL|ackages. blithely ironic ideas | +23915|43175|18176|3|10|11181.70|0.02|0.04|R|F|1994-12-13|1995-01-13|1994-12-31|TAKE BACK RETURN|MAIL| players. theodolites cajole agai| +23915|641987|17012|4|39|75229.05|0.09|0.03|R|F|1995-02-23|1995-03-06|1995-03-15|COLLECT COD|MAIL|he pinto beans are slyly | +23915|869036|19037|5|26|26129.74|0.01|0.03|R|F|1995-01-07|1995-01-31|1995-01-22|COLLECT COD|SHIP|nent ideas along the platel| +23915|886623|11658|6|10|16095.80|0.02|0.08|A|F|1995-03-08|1995-02-05|1995-04-04|TAKE BACK RETURN|RAIL|sts. theodolites eat furiously r| +23916|825073|12622|1|24|23952.72|0.08|0.02|N|O|1995-12-07|1995-12-26|1996-01-03|NONE|REG AIR|s carefully furiously pending c| +23916|999273|24312|2|31|42539.13|0.00|0.06|N|O|1995-11-12|1995-12-02|1995-11-24|NONE|FOB|ic packages. furiously ironic accounts are| +23916|779258|41774|3|37|49477.14|0.01|0.07|N|O|1995-10-26|1995-12-05|1995-11-20|DELIVER IN PERSON|AIR|ly regular packages. | +23916|979957|29958|4|20|40738.20|0.07|0.07|N|O|1995-10-22|1995-11-23|1995-11-07|NONE|SHIP|final instructions. requests hagg| +23916|134683|22190|5|21|36071.28|0.04|0.03|N|O|1995-12-21|1995-11-10|1996-01-07|NONE|RAIL|lent pinto beans: furiou| +23916|616054|3591|6|41|39770.82|0.01|0.05|N|O|1995-10-25|1995-12-07|1995-11-14|TAKE BACK RETURN|REG AIR|y final ideas sleep | +23916|15824|40825|7|48|83511.36|0.03|0.07|N|O|1995-11-26|1995-11-09|1995-12-10|TAKE BACK RETURN|RAIL|ously regular fox| +23917|952855|40413|1|33|62957.73|0.10|0.03|A|F|1995-01-30|1994-11-29|1995-02-13|NONE|SHIP|es doze sly| +23917|631540|31541|2|36|52974.36|0.04|0.04|R|F|1995-02-12|1995-01-03|1995-02-20|COLLECT COD|RAIL| express dependenci| +23917|285311|22827|3|17|22037.10|0.02|0.02|R|F|1994-12-01|1994-11-20|1994-12-18|TAKE BACK RETURN|RAIL|usly bold packages hagg| +23917|210326|22831|4|42|51925.02|0.04|0.06|A|F|1994-11-22|1994-11-30|1994-12-18|COLLECT COD|TRUCK|y bold courts affix busy, special in| +23917|932768|32769|5|15|27010.80|0.02|0.06|A|F|1994-11-11|1994-12-27|1994-11-12|DELIVER IN PERSON|FOB|ter the furiously| +23917|25535|536|6|30|43815.90|0.07|0.06|R|F|1994-10-30|1994-11-28|1994-10-31|DELIVER IN PERSON|FOB|es. sometimes silent acco| +23917|165095|40102|7|29|33642.61|0.01|0.04|A|F|1994-11-05|1994-11-17|1994-11-21|DELIVER IN PERSON|TRUCK|sts boost slyly quic| +23918|738457|972|1|27|40376.34|0.03|0.00|N|O|1996-10-16|1996-09-05|1996-10-29|DELIVER IN PERSON|SHIP| dolphins. requests af| +23918|237138|37139|2|16|17201.92|0.05|0.06|N|O|1996-07-27|1996-09-19|1996-08-16|NONE|FOB|e bold, enticing requests. enticingl| +23918|565726|15727|3|8|14333.60|0.04|0.00|N|O|1996-09-12|1996-08-21|1996-10-07|TAKE BACK RETURN|RAIL|al platelets. unusual packages cajole ab| +23918|153011|28018|4|15|15960.15|0.04|0.01|N|O|1996-07-24|1996-08-17|1996-08-02|TAKE BACK RETURN|SHIP| packages. spe| +23918|646303|8816|5|10|12492.70|0.00|0.03|N|O|1996-08-11|1996-08-04|1996-08-24|TAKE BACK RETURN|RAIL|ual accounts. slyly ironic instructi| +23918|413101|25610|6|40|40563.20|0.04|0.01|N|O|1996-08-16|1996-08-27|1996-09-02|COLLECT COD|REG AIR|ly pending packages. slyly f| +23918|979413|16971|7|36|53725.32|0.06|0.01|N|O|1996-07-20|1996-08-17|1996-08-10|NONE|FOB|gular platelets na| +23919|982433|44953|1|47|71223.33|0.06|0.06|A|F|1993-10-17|1993-10-15|1993-11-04|NONE|AIR|y bold requests after th| +23919|748146|23175|2|13|15523.43|0.08|0.05|R|F|1993-11-14|1993-11-28|1993-12-01|TAKE BACK RETURN|MAIL|fore the unusual notornis. furiou| +23919|84786|47288|3|36|63748.08|0.08|0.05|R|F|1993-12-04|1993-12-11|1993-12-16|TAKE BACK RETURN|TRUCK|eposits-- ironic instructions eat. pe| +23919|984782|22340|4|36|67202.64|0.01|0.04|A|F|1993-09-29|1993-11-18|1993-10-29|NONE|AIR|posits. ironically even accounts wake | +23919|230903|5912|5|47|86192.83|0.03|0.03|A|F|1993-12-08|1993-10-25|1993-12-26|TAKE BACK RETURN|RAIL|totes wake. special theodolites| +23919|785309|35310|6|46|64136.42|0.00|0.01|A|F|1993-11-03|1993-10-19|1993-11-19|TAKE BACK RETURN|RAIL|eyond the blithely daring requests hag| +23944|386486|48994|1|11|17297.17|0.06|0.05|N|O|1998-08-21|1998-08-07|1998-09-06|TAKE BACK RETURN|SHIP|oss the slyly regul| +23944|656993|44533|2|22|42899.12|0.05|0.06|N|O|1998-08-10|1998-07-03|1998-08-11|DELIVER IN PERSON|SHIP|s might nag according to the slyl| +23944|76267|26268|3|5|6216.30|0.02|0.06|N|O|1998-09-07|1998-08-21|1998-09-09|NONE|MAIL|ld deposits. quickly thin | +23945|968743|43782|1|37|67032.90|0.07|0.04|N|O|1996-01-03|1996-01-27|1996-01-08|COLLECT COD|MAIL|egular requests| +23945|650612|613|2|16|25001.28|0.01|0.05|N|O|1996-02-26|1996-01-17|1996-03-08|TAKE BACK RETURN|AIR|fully ironic | +23945|835880|35881|3|31|56291.04|0.04|0.03|N|O|1996-01-26|1996-01-11|1996-02-16|DELIVER IN PERSON|AIR|e slyly final | +23945|631100|31101|4|16|16497.12|0.09|0.00|N|O|1995-12-29|1996-01-30|1996-01-02|COLLECT COD|REG AIR|nal instructions nag carefu| +23945|885166|22718|5|10|11511.20|0.06|0.01|N|O|1996-01-24|1996-02-14|1996-02-10|TAKE BACK RETURN|REG AIR| pinto beans a| +23945|970125|7683|6|34|40632.72|0.08|0.00|N|O|1996-04-01|1996-02-25|1996-04-15|COLLECT COD|REG AIR|as? final, expres| +23945|876420|26421|7|15|20945.70|0.06|0.07|N|O|1996-02-15|1996-01-15|1996-02-20|DELIVER IN PERSON|FOB|ar instructions ar| +23946|979797|4836|1|44|82577.00|0.10|0.01|N|O|1995-12-29|1995-11-01|1996-01-09|DELIVER IN PERSON|MAIL|packages boost packages. bold deposits| +23946|431432|6449|2|11|14997.51|0.08|0.01|N|O|1995-11-28|1995-12-27|1995-12-05|TAKE BACK RETURN|AIR|es. furiously express accounts am| +23946|69416|6920|3|16|22166.56|0.05|0.02|N|O|1995-11-18|1995-11-27|1995-11-19|COLLECT COD|MAIL|iresias believe entici| +23946|670722|20723|4|24|40624.56|0.02|0.02|N|O|1996-01-22|1995-12-26|1996-02-10|TAKE BACK RETURN|TRUCK| accounts nag sly| +23946|821339|46372|5|20|25205.80|0.05|0.05|N|O|1995-10-23|1995-11-01|1995-11-09|DELIVER IN PERSON|SHIP|ickly. slyly silent deposits unde| +23946|229436|4445|6|5|6827.10|0.00|0.02|N|O|1995-12-02|1995-11-19|1995-12-13|COLLECT COD|AIR| boost expr| +23947|858751|46303|1|13|22226.23|0.01|0.01|A|F|1993-06-11|1993-04-28|1993-06-25|NONE|AIR|usly even ideas; quic| +23947|22968|22969|2|49|92657.04|0.09|0.04|A|F|1993-06-21|1993-05-19|1993-06-23|TAKE BACK RETURN|REG AIR|ts. excuses sleep quickly iro| +23947|9070|21571|3|48|46995.36|0.03|0.00|A|F|1993-04-08|1993-05-01|1993-05-01|DELIVER IN PERSON|TRUCK|usly regular accoun| +23947|434758|34759|4|48|81251.04|0.06|0.07|R|F|1993-03-31|1993-05-16|1993-04-10|NONE|TRUCK|odolites ha| +23947|970386|45425|5|1|1456.34|0.03|0.07|R|F|1993-04-27|1993-04-18|1993-04-30|TAKE BACK RETURN|SHIP|tructions inte| +23947|263976|38987|6|31|60138.76|0.10|0.05|R|F|1993-04-08|1993-05-03|1993-04-19|DELIVER IN PERSON|TRUCK|ctions. final packages nag quickly above| +23948|842318|29867|1|26|32767.02|0.00|0.00|R|F|1992-08-20|1992-10-02|1992-08-31|TAKE BACK RETURN|RAIL| blithely ironic pinto beans. final instru| +23948|837174|49691|2|23|25555.99|0.03|0.07|R|F|1992-11-14|1992-11-02|1992-11-22|COLLECT COD|FOB|even requests cajole carefully. slyly| +23948|377222|27223|3|7|9094.47|0.07|0.03|R|F|1992-10-19|1992-10-04|1992-10-21|NONE|FOB|players wake blithely bold accounts. fi| +23948|968704|6262|4|35|62043.10|0.06|0.01|R|F|1992-12-17|1992-10-07|1993-01-14|DELIVER IN PERSON|MAIL|its. blithely ironic warhorses acc| +23948|5821|18322|5|20|34536.40|0.07|0.00|A|F|1992-10-31|1992-10-17|1992-11-10|COLLECT COD|SHIP|uriously. carefully ironic deposi| +23948|832129|32130|6|7|7427.56|0.07|0.05|R|F|1992-11-04|1992-10-28|1992-11-10|COLLECT COD|TRUCK| foxes integrate slyly special | +23949|76747|26748|1|24|41369.76|0.07|0.05|N|O|1995-10-28|1996-01-21|1995-11-02|COLLECT COD|FOB|r ideas? ironic pinto beans cajole.| +23949|875736|38254|2|8|13693.52|0.06|0.05|N|O|1995-10-30|1995-12-27|1995-11-23|COLLECT COD|REG AIR|avely ironic packages nag| +23949|485936|48446|3|27|51891.57|0.05|0.07|N|O|1995-12-13|1995-12-09|1995-12-20|TAKE BACK RETURN|AIR|en accounts nag fluffily iro| +23950|235680|23193|1|14|22619.38|0.05|0.02|A|F|1995-03-17|1995-03-26|1995-04-15|COLLECT COD|MAIL|he furiously enticing gifts hang ironi| +23950|72791|47794|2|37|65260.23|0.02|0.05|R|F|1995-03-28|1995-04-09|1995-04-09|DELIVER IN PERSON|MAIL|s nag boldly blithely even accounts. u| +23951|739918|27461|1|42|82230.96|0.09|0.01|N|O|1995-09-17|1995-08-08|1995-10-08|NONE|TRUCK|e above the unusu| +23951|798758|36304|2|11|20423.92|0.02|0.07|N|O|1995-08-15|1995-08-21|1995-09-03|NONE|REG AIR|encies. regula| +23951|710861|35890|3|49|91719.67|0.08|0.05|N|O|1995-08-24|1995-08-11|1995-09-15|DELIVER IN PERSON|SHIP|blithely ironic| +23951|425341|12866|4|40|50652.80|0.08|0.04|N|O|1995-09-29|1995-08-10|1995-09-30|NONE|RAIL|leep furiously | +23951|693721|31261|5|41|70302.29|0.00|0.00|N|O|1995-08-01|1995-08-24|1995-08-22|TAKE BACK RETURN|TRUCK|s are carefully: furiously ir| +23951|358547|8548|6|26|41743.78|0.09|0.03|N|O|1995-09-12|1995-08-08|1995-09-29|NONE|SHIP|r deposits cajole final requests.| +23976|854213|16731|1|41|47853.97|0.09|0.08|A|F|1993-01-30|1993-02-13|1993-02-19|COLLECT COD|AIR|ely even pinto beans prom| +23976|750930|38476|2|4|7923.60|0.01|0.05|R|F|1992-11-23|1993-01-04|1992-12-10|DELIVER IN PERSON|REG AIR| quickly even deposits. quickly fi| +23977|594108|31642|1|35|42072.80|0.00|0.06|N|O|1998-01-11|1998-03-28|1998-01-25|DELIVER IN PERSON|MAIL|ully acros| +23978|882159|19711|1|16|18257.76|0.04|0.00|A|F|1993-10-21|1993-09-12|1993-10-31|COLLECT COD|AIR|e bold instructions i| +23979|321882|34389|1|29|55212.23|0.03|0.04|N|O|1997-08-14|1997-07-25|1997-08-24|TAKE BACK RETURN|FOB|ptotes. blithely special package| +23979|869027|31545|2|17|16931.66|0.05|0.08|N|O|1997-08-14|1997-07-24|1997-08-30|COLLECT COD|RAIL|ly pending pinto | +23979|731011|31012|3|13|13545.74|0.00|0.05|N|O|1997-09-18|1997-08-25|1997-09-24|COLLECT COD|RAIL| bold accounts cajole furio| +23979|98181|10683|4|23|27121.14|0.04|0.06|N|O|1997-07-13|1997-08-27|1997-07-31|NONE|RAIL|. blithely express escapade| +23979|124452|24453|5|20|29529.00|0.01|0.01|N|O|1997-09-19|1997-08-11|1997-10-03|TAKE BACK RETURN|AIR|. pending foxes about the s| +23980|414456|39473|1|42|57558.06|0.06|0.03|N|O|1998-10-06|1998-08-06|1998-10-26|COLLECT COD|TRUCK|ular excuses| +23980|746579|46580|2|48|78025.92|0.06|0.03|N|O|1998-07-14|1998-09-02|1998-08-03|COLLECT COD|SHIP|its nag slyly across the furiou| +23980|748889|36432|3|28|54259.80|0.07|0.05|N|O|1998-08-25|1998-08-01|1998-09-06|DELIVER IN PERSON|RAIL|en theodolites nag alongside of the quic| +23980|565387|15388|4|5|7261.80|0.02|0.08|N|O|1998-09-08|1998-08-21|1998-10-08|COLLECT COD|RAIL|even excuse| +23981|126349|13856|1|28|38509.52|0.03|0.03|N|O|1996-03-27|1996-01-17|1996-04-01|TAKE BACK RETURN|SHIP|ular, express packages need to | +23981|535495|10516|2|45|68871.15|0.00|0.07|N|O|1996-03-08|1996-02-01|1996-03-26|COLLECT COD|SHIP|bout the slyly pending som| +23981|47846|35347|3|42|75341.28|0.10|0.03|N|O|1996-03-04|1996-01-06|1996-04-01|NONE|FOB|sits haggle carefully boldly final acco| +23981|136151|48654|4|11|13058.65|0.10|0.00|N|O|1996-01-21|1996-01-06|1996-02-01|TAKE BACK RETURN|SHIP|fully regular requests. blithely pen| +23981|275253|264|5|42|51586.08|0.10|0.03|N|O|1996-01-22|1996-01-29|1996-02-02|NONE|FOB|fully even r| +23982|128802|16309|1|23|42108.40|0.10|0.01|N|O|1995-06-30|1995-06-13|1995-07-17|TAKE BACK RETURN|AIR|lites alongside of the pending, bold| +23982|772673|10219|2|37|64588.68|0.00|0.03|N|F|1995-05-31|1995-06-21|1995-06-20|COLLECT COD|SHIP|g blithely never pending deposit| +23982|311261|48780|3|4|5089.00|0.04|0.01|N|O|1995-07-03|1995-05-24|1995-07-30|NONE|AIR|ronic deposits. regular i| +23982|356823|6824|4|48|90230.88|0.09|0.07|N|O|1995-07-25|1995-05-01|1995-07-30|COLLECT COD|FOB| blithely quiet requests | +23982|113609|13610|5|14|22716.40|0.08|0.01|N|O|1995-06-25|1995-05-24|1995-07-15|DELIVER IN PERSON|TRUCK|rint fluffily final asymptotes| +23982|411862|49387|6|48|85144.32|0.04|0.04|R|F|1995-04-01|1995-06-26|1995-04-07|NONE|REG AIR|platelets. furiously final accounts | +23983|446860|21877|1|20|36136.80|0.03|0.02|R|F|1994-04-26|1994-02-20|1994-05-06|DELIVER IN PERSON|FOB|fully even packages are furious| +23983|360176|10177|2|7|8653.12|0.01|0.08|A|F|1994-04-25|1994-02-06|1994-05-02|TAKE BACK RETURN|RAIL|ts. carefully b| +23983|470096|45115|3|15|15991.05|0.04|0.07|A|F|1994-02-20|1994-03-18|1994-02-28|DELIVER IN PERSON|MAIL|busily even ideas| +23983|899000|11518|4|24|23975.04|0.07|0.01|R|F|1994-04-04|1994-03-16|1994-04-25|COLLECT COD|FOB| regular pack| +23983|477413|27414|5|7|9732.73|0.03|0.00|R|F|1994-04-24|1994-02-24|1994-04-25|DELIVER IN PERSON|RAIL|s affix furiously carefully unusual i| +24008|70089|32591|1|47|49776.76|0.08|0.00|N|O|1996-12-31|1996-12-15|1997-01-26|DELIVER IN PERSON|FOB|y final foxes use about the| +24008|982534|32535|2|43|69509.07|0.01|0.06|N|O|1997-01-18|1996-12-19|1997-01-22|NONE|AIR|ent, regular dependencies are quick| +24008|437280|24805|3|23|27996.98|0.05|0.00|N|O|1997-02-17|1996-12-16|1997-03-16|DELIVER IN PERSON|FOB| fluffily regular platelets| +24008|359449|46971|4|49|73913.07|0.02|0.03|N|O|1997-02-18|1996-12-16|1997-03-03|COLLECT COD|RAIL|its. fluffily | +24008|259051|46567|5|1|1010.04|0.08|0.08|N|O|1997-01-05|1996-12-14|1997-01-21|COLLECT COD|AIR|rding to the quickly speci| +24009|756937|19453|1|45|89725.50|0.02|0.01|R|F|1993-08-12|1993-09-13|1993-08-24|COLLECT COD|FOB|sts. furiou| +24009|837825|342|2|42|74036.76|0.00|0.05|R|F|1993-07-09|1993-09-10|1993-07-25|NONE|REG AIR|encies. dolphins sleep carefully. final| +24009|313376|25883|3|23|31955.28|0.00|0.01|R|F|1993-09-21|1993-08-12|1993-10-20|TAKE BACK RETURN|MAIL| among the final excuses. final, regular p| +24009|902353|2354|4|17|23040.27|0.00|0.00|A|F|1993-07-10|1993-08-10|1993-07-26|TAKE BACK RETURN|FOB|al excuses| +24009|835975|23524|5|20|38218.60|0.08|0.00|R|F|1993-07-09|1993-09-27|1993-07-11|TAKE BACK RETURN|RAIL|beans. furiously unusua| +24010|38885|1386|1|48|87546.24|0.09|0.04|R|F|1992-04-01|1992-06-18|1992-04-21|TAKE BACK RETURN|REG AIR| pinto beans engage en| +24010|529069|29070|2|33|36235.32|0.00|0.00|A|F|1992-06-20|1992-05-15|1992-07-17|NONE|MAIL|theodolites haggle alongside o| +24010|61458|11459|3|29|41164.05|0.00|0.08|R|F|1992-06-02|1992-04-26|1992-06-05|NONE|TRUCK| slyly reg| +24010|909807|9808|4|15|27251.40|0.02|0.06|A|F|1992-07-24|1992-06-06|1992-08-13|NONE|SHIP|deposits according to the eve| +24010|118068|43073|5|13|14118.78|0.01|0.04|R|F|1992-04-20|1992-06-18|1992-04-26|TAKE BACK RETURN|MAIL|odolites. slyly reg| +24010|353903|16411|6|7|13698.23|0.05|0.02|R|F|1992-04-30|1992-05-13|1992-05-29|TAKE BACK RETURN|SHIP|es. furiously regular wartho| +24010|36364|36365|7|16|20805.76|0.00|0.08|A|F|1992-06-14|1992-05-23|1992-07-13|NONE|TRUCK|he blithely silent accounts| +24011|169175|6685|1|21|26127.57|0.09|0.06|N|O|1997-03-13|1996-12-31|1997-03-22|NONE|RAIL|regular theodolites ar| +24011|307720|32733|2|30|51831.30|0.04|0.05|N|O|1997-02-13|1996-12-30|1997-02-16|DELIVER IN PERSON|REG AIR|ts are after the expre| +24012|539988|39989|1|29|58810.84|0.09|0.05|A|F|1994-07-07|1994-07-30|1994-07-23|DELIVER IN PERSON|REG AIR|e fluffily slyly ironic excuses.| +24012|572708|10242|2|38|67665.84|0.07|0.02|A|F|1994-08-06|1994-06-30|1994-08-21|NONE|TRUCK|tect carefully slyly iron| +24012|500159|25180|3|8|9273.04|0.07|0.07|R|F|1994-05-29|1994-07-20|1994-06-25|NONE|FOB|es detect blithely: quickly even| +24012|170307|32811|4|15|20659.50|0.06|0.03|A|F|1994-05-31|1994-06-28|1994-06-11|COLLECT COD|TRUCK|ounts after the deposits sublate bl| +24013|718418|30933|1|27|38782.26|0.09|0.00|R|F|1994-12-29|1994-12-21|1994-12-30|TAKE BACK RETURN|FOB|ntegrate f| +24013|451141|26160|2|8|8736.96|0.10|0.02|R|F|1994-12-06|1995-01-29|1994-12-30|NONE|TRUCK| the regular, | +24013|317263|42276|3|42|53770.50|0.00|0.07|A|F|1995-02-23|1994-12-22|1995-03-20|NONE|SHIP|e fluffily bold| +24013|228775|16288|4|7|11926.32|0.07|0.05|A|F|1995-03-01|1994-12-29|1995-03-19|DELIVER IN PERSON|RAIL| silent packages. foxes haggle slyly spec| +24013|18245|43246|5|15|17448.60|0.01|0.06|A|F|1995-01-20|1995-01-12|1995-02-07|NONE|SHIP|sts against the packag| +24014|989944|14983|1|48|97627.20|0.09|0.01|R|F|1993-02-08|1993-03-25|1993-03-07|DELIVER IN PERSON|MAIL|thely final accounts are about the | +24015|927836|27837|1|44|82006.76|0.07|0.04|N|O|1996-09-23|1996-08-14|1996-10-10|NONE|MAIL|sly ironic pinto beans. pe| +24040|173876|23877|1|36|70195.32|0.04|0.06|N|O|1996-09-20|1996-10-06|1996-10-09|TAKE BACK RETURN|SHIP|ths. slyly regular accounts boost caref| +24040|322955|22956|2|3|5933.82|0.00|0.00|N|O|1996-09-27|1996-09-26|1996-10-23|TAKE BACK RETURN|RAIL|hely ironic depende| +24040|899464|11982|3|24|35122.08|0.04|0.02|N|O|1996-08-27|1996-08-29|1996-08-29|TAKE BACK RETURN|SHIP| platelets use between the p| +24040|276562|1573|4|21|32309.55|0.07|0.07|N|O|1996-08-30|1996-08-29|1996-09-06|COLLECT COD|AIR|y regular requests. slyly bol| +24041|255494|18000|1|3|4348.44|0.08|0.06|N|O|1996-11-04|1996-11-25|1996-11-20|DELIVER IN PERSON|TRUCK|es wake blithe deposits. care| +24041|83558|46060|2|6|9249.30|0.09|0.05|N|O|1996-10-17|1996-10-28|1996-11-15|COLLECT COD|FOB| bold deposits according to th| +24041|354489|16997|3|38|58651.86|0.05|0.02|N|O|1996-12-03|1996-11-27|1996-12-10|NONE|FOB|encies. furiously silent instructions cajo| +24042|679751|42265|1|30|51921.60|0.01|0.05|N|O|1997-01-06|1997-01-29|1997-01-12|NONE|FOB|hely special foxes haggle alongs| +24042|562015|37038|2|45|48464.55|0.08|0.07|N|O|1996-12-21|1997-03-03|1996-12-30|TAKE BACK RETURN|AIR|hely ironic accounts. | +24042|771080|33596|3|46|52948.30|0.01|0.06|N|O|1997-03-10|1997-02-14|1997-03-18|NONE|MAIL|- never ironic fre| +24042|531453|43964|4|49|72737.07|0.02|0.07|N|O|1997-01-30|1997-01-11|1997-02-27|TAKE BACK RETURN|FOB| slyly. regular warthogs are express packa| +24043|660191|22705|1|42|48348.72|0.05|0.05|A|F|1992-06-23|1992-05-31|1992-07-03|NONE|FOB|s hinder boldl| +24043|821674|21675|2|13|20743.19|0.10|0.08|A|F|1992-06-08|1992-06-03|1992-06-27|DELIVER IN PERSON|MAIL|s nag at the blithely fi| +24043|868046|18047|3|34|34476.00|0.04|0.05|R|F|1992-07-08|1992-05-12|1992-08-01|DELIVER IN PERSON|MAIL|ill have to cajole ca| +24044|427018|39527|1|2|1889.98|0.10|0.07|R|F|1995-05-28|1995-06-12|1995-05-29|TAKE BACK RETURN|SHIP|inal packages| +24044|875717|38235|2|45|76170.15|0.04|0.08|N|O|1995-06-18|1995-04-26|1995-06-19|COLLECT COD|TRUCK|eans affix. foxes haggle benea| +24044|174485|24486|3|40|62379.20|0.05|0.07|N|F|1995-05-31|1995-06-09|1995-06-19|DELIVER IN PERSON|FOB|ts mold deposits. furiously final ex| +24045|754861|17377|1|47|90044.01|0.02|0.03|A|F|1992-02-27|1992-04-19|1992-03-25|COLLECT COD|FOB|y express epitaphs. fluffily| +24046|473970|23971|1|7|13607.65|0.06|0.06|A|F|1992-05-12|1992-07-12|1992-06-09|DELIVER IN PERSON|TRUCK| deposits. speci| +24047|867371|29889|1|4|5353.32|0.02|0.04|R|F|1994-03-04|1994-02-02|1994-03-24|TAKE BACK RETURN|AIR|e evenly final | +24047|896576|34128|2|40|62901.20|0.09|0.05|A|F|1993-12-12|1994-02-04|1994-01-02|COLLECT COD|FOB|e furiously after the quickly pendin| +24047|743877|6392|3|16|30733.44|0.08|0.02|A|F|1994-02-04|1994-01-16|1994-02-14|COLLECT COD|REG AIR|gainst the blithely silent foxes run about | +24047|329697|29698|4|28|48347.04|0.10|0.02|R|F|1994-02-09|1994-01-13|1994-02-17|COLLECT COD|REG AIR|ructions are c| +24072|851280|26315|1|23|28318.52|0.04|0.00|N|O|1995-09-27|1995-10-11|1995-10-05|NONE|RAIL|ly against the regular instructions.| +24072|456535|31554|2|30|44745.30|0.01|0.05|N|O|1995-12-09|1995-10-05|1995-12-12|TAKE BACK RETURN|FOB|s. fluffily regular requests use quic| +24072|973808|23809|3|49|92206.24|0.08|0.03|N|O|1995-12-22|1995-11-05|1995-12-24|COLLECT COD|RAIL|the carefully ironic foxes. pending, close | +24072|777749|40265|4|7|12786.97|0.00|0.07|N|O|1995-11-24|1995-10-17|1995-12-23|TAKE BACK RETURN|SHIP|arefully instructions| +24073|31836|44337|1|43|76016.69|0.05|0.07|R|F|1994-08-16|1994-07-24|1994-08-19|NONE|REG AIR|l packages. blithely ironic foxes are | +24073|63580|1084|2|38|58656.04|0.01|0.06|A|F|1994-06-29|1994-06-28|1994-07-23|COLLECT COD|MAIL|eodolites.| +24073|576755|1778|3|24|43961.52|0.07|0.00|R|F|1994-07-03|1994-07-14|1994-07-14|TAKE BACK RETURN|MAIL|usly regular requests. regular, express in| +24073|517679|5210|4|28|47506.20|0.01|0.08|R|F|1994-05-08|1994-07-01|1994-05-25|COLLECT COD|SHIP|carefully bold ideas.| +24073|621030|21031|5|18|17118.00|0.07|0.06|R|F|1994-05-31|1994-06-14|1994-06-06|NONE|RAIL|kages boost thinl| +24073|650926|927|6|34|63814.26|0.07|0.04|A|F|1994-06-20|1994-06-17|1994-06-27|TAKE BACK RETURN|REG AIR|te furiously final instructio| +24073|112121|24624|7|2|2266.24|0.05|0.08|A|F|1994-05-17|1994-07-11|1994-05-20|NONE|MAIL|l, ironic theodolites haggle pe| +24074|409430|34447|1|20|26788.20|0.06|0.07|N|O|1996-11-13|1996-12-16|1996-11-24|DELIVER IN PERSON|FOB| even, special theodoli| +24074|280387|30388|2|50|68368.50|0.08|0.04|N|O|1996-09-30|1996-11-14|1996-10-24|COLLECT COD|SHIP|icingly. daringly regular requests| +24075|494274|31802|1|48|60876.00|0.00|0.06|N|O|1995-12-20|1995-11-26|1996-01-18|COLLECT COD|REG AIR|ual ideas | +24075|253452|28463|2|27|37946.88|0.06|0.02|N|O|1995-11-22|1995-12-19|1995-11-23|DELIVER IN PERSON|FOB|ts are deposits. ironic requests about | +24075|757001|7002|3|48|50782.56|0.02|0.04|N|O|1995-10-30|1995-12-22|1995-11-15|NONE|RAIL|ss the slyly final ideas use | +24075|905702|43257|4|10|17076.60|0.09|0.03|N|O|1996-01-25|1996-01-02|1996-02-22|NONE|SHIP| blithely pending platelets use stealth| +24076|176497|39001|1|29|45631.21|0.00|0.01|N|O|1997-09-09|1997-08-07|1997-10-05|NONE|SHIP|. carefully ironic accoun| +24076|381454|6469|2|31|47598.64|0.06|0.06|N|O|1997-08-10|1997-06-30|1997-08-14|DELIVER IN PERSON|RAIL|symptotes wake carefully above the ca| +24076|88589|38590|3|34|53637.72|0.08|0.05|N|O|1997-06-17|1997-08-18|1997-06-26|DELIVER IN PERSON|AIR|nal deposits use above the asymp| +24076|904227|4228|4|18|22161.24|0.00|0.00|N|O|1997-09-06|1997-07-23|1997-10-04|COLLECT COD|AIR|l packages. unusual theodolites | +24077|640206|2719|1|44|50431.48|0.02|0.07|N|O|1998-03-04|1998-03-23|1998-03-21|COLLECT COD|TRUCK|requests; carefully unusua| +24077|933980|46499|2|22|44306.68|0.06|0.01|N|O|1998-03-08|1998-04-20|1998-03-13|COLLECT COD|TRUCK| enticingly unusual ideas boost e| +24077|395368|20383|3|31|45363.85|0.05|0.05|N|O|1998-04-02|1998-04-08|1998-04-07|DELIVER IN PERSON|FOB|nts grow quickly furiously regul| +24077|933975|9012|4|22|44196.46|0.04|0.04|N|O|1998-06-06|1998-04-25|1998-06-12|COLLECT COD|RAIL|among the carefully bold packages nag| +24077|311430|48949|5|12|17297.04|0.03|0.03|N|O|1998-04-29|1998-04-05|1998-05-25|COLLECT COD|TRUCK|uests on the quickly unusual foxes haggle t| +24077|191197|3701|6|16|20611.04|0.10|0.06|N|O|1998-03-19|1998-03-12|1998-04-18|COLLECT COD|REG AIR|tect blithely. deposits| +24078|168532|43539|1|32|51216.96|0.08|0.05|R|F|1994-10-18|1994-09-28|1994-10-27|COLLECT COD|RAIL| carefully final foxes| +24078|515728|15729|2|16|27899.20|0.02|0.07|A|F|1994-11-22|1994-10-11|1994-12-19|TAKE BACK RETURN|TRUCK|unts hinder fluffily slyly| +24078|831259|43776|3|31|36896.51|0.02|0.04|R|F|1994-11-10|1994-10-10|1994-12-02|NONE|TRUCK|inal realms integ| +24078|962219|37258|4|11|14092.87|0.05|0.07|A|F|1994-11-28|1994-10-03|1994-12-23|DELIVER IN PERSON|FOB|s boost caref| +24078|7171|7172|5|44|47439.48|0.00|0.08|A|F|1994-11-06|1994-10-18|1994-11-21|COLLECT COD|SHIP|s-- doggedly bold foxes | +24078|508266|33287|6|35|44598.40|0.05|0.06|R|F|1994-08-31|1994-09-29|1994-09-15|NONE|FOB|ly regular theodolites about the | +24078|425862|38371|7|34|60786.56|0.10|0.04|A|F|1994-09-11|1994-10-25|1994-09-21|NONE|SHIP|re quickly amon| +24079|448485|10994|1|41|58771.86|0.00|0.02|N|O|1995-10-19|1995-12-25|1995-10-22|TAKE BACK RETURN|SHIP|ideas. quickly even depend| +24079|685271|35272|2|46|57787.04|0.06|0.01|N|O|1996-02-13|1995-12-09|1996-03-12|COLLECT COD|MAIL|ggle slyly. final courts affi| +24104|301765|26778|1|1|1766.75|0.00|0.00|R|F|1993-05-22|1993-05-08|1993-06-20|TAKE BACK RETURN|TRUCK|y deposits are ruthlessly; doggedly regular| +24104|759114|9115|2|23|26980.84|0.01|0.03|A|F|1993-06-26|1993-05-25|1993-06-30|NONE|AIR|after the quickly final request| +24104|418768|18769|3|10|16867.40|0.00|0.04|R|F|1993-05-03|1993-04-25|1993-05-11|NONE|REG AIR|es. unusual ideas detect f| +24105|307642|20149|1|47|77532.61|0.10|0.05|N|O|1998-08-23|1998-10-08|1998-09-20|DELIVER IN PERSON|FOB| throughout the unusual, ironic excuses. qu| +24105|538882|1393|2|35|67230.10|0.01|0.06|N|O|1998-11-18|1998-10-14|1998-12-08|DELIVER IN PERSON|AIR|nts about the furiously ironic deposits u| +24105|984189|21747|3|33|42013.62|0.02|0.07|N|O|1998-10-13|1998-10-09|1998-11-03|NONE|MAIL|courts. accounts against the | +24105|258012|45528|4|9|8730.00|0.06|0.00|N|O|1998-11-26|1998-10-07|1998-11-30|DELIVER IN PERSON|TRUCK|ecial instructions play quickly ironic | +24105|391087|28609|5|33|38876.31|0.09|0.08|N|O|1998-11-05|1998-10-14|1998-11-09|COLLECT COD|REG AIR| accounts na| +24105|988886|13925|6|42|82943.28|0.04|0.05|N|O|1998-08-26|1998-09-21|1998-09-17|DELIVER IN PERSON|TRUCK|e carefully-- fluffil| +24106|414910|39927|1|15|27373.35|0.08|0.00|A|F|1994-08-07|1994-07-29|1994-09-04|DELIVER IN PERSON|FOB|yly silent requests. even theodolites nag | +24106|391823|16838|2|47|89996.07|0.00|0.07|A|F|1994-09-10|1994-07-15|1994-09-19|DELIVER IN PERSON|REG AIR|aggle according to the quickly even de| +24106|358001|33016|3|32|33887.68|0.05|0.00|R|F|1994-07-05|1994-07-25|1994-07-16|TAKE BACK RETURN|TRUCK| beans. furiously regular accounts are. s| +24106|913611|26130|4|11|17870.27|0.05|0.02|A|F|1994-06-29|1994-08-08|1994-07-23|COLLECT COD|RAIL|d quickly across | +24106|45926|8427|5|24|44926.08|0.10|0.00|R|F|1994-08-27|1994-06-22|1994-09-23|DELIVER IN PERSON|MAIL|riously. furiou| +24106|864970|2522|6|40|77397.20|0.01|0.04|R|F|1994-06-25|1994-06-19|1994-07-12|NONE|RAIL|thely bold deposits | +24106|543464|18485|7|5|7537.20|0.06|0.05|A|F|1994-09-10|1994-06-30|1994-09-15|TAKE BACK RETURN|RAIL|es are. ac| +24107|989010|39011|1|42|46156.74|0.07|0.00|A|F|1993-04-12|1993-04-28|1993-05-03|DELIVER IN PERSON|AIR| unusual deposits wake blithely: ironic a| +24107|286220|48726|2|20|24124.20|0.03|0.03|R|F|1993-02-26|1993-04-29|1993-03-11|NONE|SHIP|ronic ideas. pending | +24107|496962|34490|3|28|54850.32|0.01|0.03|A|F|1993-03-10|1993-05-09|1993-04-07|TAKE BACK RETURN|RAIL|otes use among the slyly iro| +24107|434401|34402|4|38|50744.44|0.00|0.04|R|F|1993-06-06|1993-05-18|1993-06-07|COLLECT COD|AIR|ding accou| +24108|136976|24483|1|19|38246.43|0.02|0.03|N|O|1997-03-13|1997-01-27|1997-03-24|NONE|RAIL|ges. silently special asymptotes beside| +24108|145098|32605|2|39|44580.51|0.04|0.08|N|O|1997-02-24|1997-02-09|1997-03-23|NONE|SHIP|y fluffy accounts nod blithely| +24108|653022|15536|3|45|43874.55|0.01|0.06|N|O|1996-11-20|1997-01-15|1996-12-09|TAKE BACK RETURN|REG AIR|eodolites for the pending, bold| +24108|330704|5717|4|9|15612.21|0.05|0.05|N|O|1997-02-26|1997-02-03|1997-03-12|DELIVER IN PERSON|RAIL|ns. blithely even dependencies| +24108|140696|3199|5|32|55574.08|0.08|0.01|N|O|1997-02-09|1996-12-24|1997-03-10|NONE|MAIL|ites alongside of the fin| +24109|543410|43411|1|39|56682.21|0.04|0.03|A|F|1992-08-12|1992-07-02|1992-08-27|DELIVER IN PERSON|REG AIR| ideas: blithely pending ideas| +24110|385844|10859|1|25|48245.75|0.07|0.03|R|F|1994-02-09|1994-01-26|1994-02-22|DELIVER IN PERSON|FOB|kly busy packages. final, final| +24110|866269|16270|2|42|51879.24|0.00|0.05|A|F|1993-12-24|1994-03-11|1993-12-27|DELIVER IN PERSON|RAIL|requests a| +24110|377798|2813|3|38|71279.64|0.04|0.07|R|F|1993-12-27|1994-02-07|1994-01-25|COLLECT COD|FOB|out the carefully even| +24110|634959|9984|4|2|3787.84|0.04|0.05|A|F|1994-03-18|1994-01-23|1994-04-10|TAKE BACK RETURN|AIR| requests try to are r| +24110|749504|49505|5|24|37283.28|0.07|0.02|R|F|1994-01-07|1994-01-29|1994-01-25|DELIVER IN PERSON|FOB|ic, special instructions. unusual reque| +24110|898308|48309|6|2|2612.52|0.02|0.07|A|F|1993-12-22|1994-02-13|1993-12-28|DELIVER IN PERSON|TRUCK|even theodolites. bold, ironic| +24111|498468|48469|1|47|68922.68|0.00|0.07|N|O|1998-04-03|1998-04-20|1998-04-22|COLLECT COD|RAIL|uffily regular platelets must have to integ| +24111|739260|14289|2|14|18189.22|0.08|0.07|N|O|1998-05-06|1998-05-02|1998-05-29|TAKE BACK RETURN|TRUCK|tructions. dari| +24111|726887|39402|3|45|86123.25|0.10|0.01|N|O|1998-04-07|1998-05-22|1998-04-28|NONE|RAIL|thless platelets breach | +24111|780428|30429|4|26|39218.14|0.05|0.04|N|O|1998-03-01|1998-04-01|1998-03-12|NONE|MAIL|ily brave deposits integrate | +24111|643295|18320|5|2|2476.52|0.03|0.06|N|O|1998-04-19|1998-05-05|1998-04-28|COLLECT COD|AIR|accounts. careful| +24111|855890|18408|6|10|18458.50|0.00|0.03|N|O|1998-05-03|1998-05-05|1998-05-23|DELIVER IN PERSON|AIR|g foxes alongside of the even braids bo| +24136|163825|1335|1|44|83108.08|0.08|0.05|N|O|1996-02-01|1996-02-22|1996-02-15|DELIVER IN PERSON|TRUCK|ide of the accounts. slyly| +24136|400190|191|2|21|22893.57|0.09|0.04|N|O|1995-12-20|1996-01-13|1995-12-30|NONE|REG AIR|al pinto beans nod slyly ironic deposits| +24136|982353|7392|3|36|51671.16|0.05|0.05|N|O|1996-01-14|1996-02-04|1996-02-05|NONE|FOB|gged packages haggle fluffily slyly| +24136|390185|40186|4|26|33154.42|0.09|0.04|N|O|1996-01-07|1996-02-25|1996-01-21|COLLECT COD|FOB| above the regula| +24136|831627|6660|5|39|60784.62|0.05|0.01|N|O|1996-03-03|1996-01-12|1996-03-14|DELIVER IN PERSON|AIR|furiously blit| +24136|149723|12226|6|6|10636.32|0.08|0.01|N|O|1996-03-08|1996-02-24|1996-03-24|TAKE BACK RETURN|FOB| carefully | +24137|809178|21695|1|30|32613.90|0.02|0.07|A|F|1994-02-02|1994-02-21|1994-02-22|COLLECT COD|FOB|ven platelets haggle bli| +24138|264264|39275|1|21|25793.25|0.04|0.05|A|F|1992-03-26|1992-05-18|1992-04-24|NONE|FOB|nusual accounts acco| +24139|137147|24654|1|6|7104.84|0.02|0.01|R|F|1993-05-26|1993-04-17|1993-06-10|DELIVER IN PERSON|TRUCK|ch along the special pinto beans. fu| +24139|12946|12947|2|42|78075.48|0.08|0.01|A|F|1993-04-14|1993-04-23|1993-05-13|DELIVER IN PERSON|AIR|yly regular deposits. furi| +24139|570882|33394|3|4|7811.44|0.02|0.02|A|F|1993-05-03|1993-04-20|1993-05-12|DELIVER IN PERSON|MAIL|carefully unusual accounts. fluffily bold r| +24140|290308|27824|1|31|40246.99|0.08|0.02|A|F|1994-08-20|1994-10-24|1994-09-15|TAKE BACK RETURN|MAIL|he even, express depo| +24140|205315|17820|2|50|61015.00|0.00|0.00|R|F|1994-11-09|1994-09-24|1994-11-17|COLLECT COD|TRUCK|ronic theodolites boost slyly u| +24140|725684|38199|3|26|44450.90|0.10|0.07|R|F|1994-08-27|1994-09-17|1994-09-11|TAKE BACK RETURN|MAIL|ymptotes cajol| +24140|558561|33584|4|28|45347.12|0.08|0.07|A|F|1994-10-01|1994-10-04|1994-10-22|TAKE BACK RETURN|REG AIR|ily silent theodolites. slyly ironic pac| +24140|727838|2867|5|27|50376.60|0.03|0.04|R|F|1994-08-05|1994-09-13|1994-08-14|DELIVER IN PERSON|RAIL|y. express deposits detect carefu| +24140|757139|19655|6|47|56216.70|0.07|0.01|A|F|1994-10-20|1994-08-29|1994-10-28|NONE|AIR|ously final dependencies sleep ca| +24141|782593|45109|1|24|40213.44|0.10|0.04|N|O|1998-04-20|1998-04-28|1998-05-17|COLLECT COD|SHIP|beneath the slyly final packag| +24141|27045|27046|2|40|38881.60|0.04|0.06|N|O|1998-05-10|1998-05-11|1998-06-03|NONE|RAIL|s. unusual | +24141|538442|953|3|12|17765.04|0.02|0.04|N|O|1998-04-09|1998-03-13|1998-04-26|TAKE BACK RETURN|FOB|express platelets sle| +24141|588364|38365|4|11|15975.74|0.09|0.03|N|O|1998-02-19|1998-04-03|1998-03-10|COLLECT COD|AIR|inal platelets affix alongside of t| +24142|554032|29055|1|37|40182.37|0.01|0.05|R|F|1992-03-31|1992-04-12|1992-04-26|DELIVER IN PERSON|RAIL| even instructions. f| +24143|304856|17363|1|44|81876.96|0.02|0.02|N|O|1995-11-03|1995-11-27|1995-11-04|COLLECT COD|AIR|equests. silent | +24143|708518|8519|2|41|62585.68|0.06|0.00|N|O|1996-01-04|1995-12-11|1996-01-08|DELIVER IN PERSON|RAIL|ove the evenly even requests. regular | +24143|56637|31640|3|26|41434.38|0.03|0.05|N|O|1995-10-24|1995-12-15|1995-11-04|TAKE BACK RETURN|SHIP|. blithely ironic dependencies al| +24143|893385|43386|4|3|4135.02|0.04|0.06|N|O|1996-01-12|1995-12-08|1996-02-04|COLLECT COD|MAIL|ongside of the final, even packa| +24143|108101|8102|5|49|54345.90|0.04|0.08|N|O|1995-12-04|1995-11-02|1995-12-25|COLLECT COD|MAIL|y about the reg| +24168|238474|979|1|23|32486.58|0.01|0.04|A|F|1992-10-09|1992-10-07|1992-11-05|TAKE BACK RETURN|RAIL|ely according to the slyly regular theod| +24168|24628|49629|2|3|4657.86|0.02|0.06|R|F|1992-10-03|1992-11-02|1992-10-13|TAKE BACK RETURN|FOB|sleep carefully. th| +24168|909067|21586|3|24|25824.48|0.03|0.08|R|F|1992-10-29|1992-11-17|1992-11-14|TAKE BACK RETURN|REG AIR|r foxes. final deposits boost quickly reg| +24168|681114|18654|4|20|21901.60|0.03|0.04|A|F|1992-11-24|1992-10-28|1992-12-20|TAKE BACK RETURN|AIR|ts at the furiously bold pinto| +24168|470924|20925|5|24|45477.60|0.02|0.04|A|F|1992-11-17|1992-10-29|1992-11-29|TAKE BACK RETURN|RAIL| the carefully bold platelets. fluffily ir| +24168|818416|5965|6|22|29356.14|0.09|0.05|R|F|1992-11-26|1992-10-19|1992-11-28|DELIVER IN PERSON|FOB|ions cajole furiously ironic pa| +24169|95843|20846|1|46|84586.64|0.00|0.05|R|F|1992-02-29|1992-04-11|1992-03-24|COLLECT COD|REG AIR|onic platelets cajole furiously. bol| +24169|825223|12772|2|24|27556.32|0.08|0.07|R|F|1992-05-13|1992-04-19|1992-05-15|DELIVER IN PERSON|FOB| carefully quick realms wake q| +24169|519309|6840|3|2|2656.56|0.10|0.04|R|F|1992-04-02|1992-05-13|1992-04-10|COLLECT COD|SHIP|t furiously. slyly reg| +24169|26276|38777|4|13|15629.51|0.02|0.04|R|F|1992-04-28|1992-05-03|1992-05-24|DELIVER IN PERSON|FOB|latelets cajole blithely| +24170|341108|16121|1|6|6894.54|0.08|0.04|A|F|1993-12-01|1993-12-15|1993-12-20|NONE|FOB|eodolites. carefully unusua| +24170|989964|15003|2|20|41078.40|0.02|0.03|A|F|1993-11-03|1993-11-29|1993-11-09|TAKE BACK RETURN|FOB|the accounts. enticingly| +24170|318319|43332|3|4|5349.20|0.09|0.05|A|F|1994-02-08|1994-01-28|1994-02-26|NONE|FOB|nto beans. caref| +24170|972915|10473|4|6|11927.22|0.06|0.01|A|F|1994-02-08|1993-12-29|1994-03-04|COLLECT COD|SHIP|nusual requests wake. | +24170|779968|17514|5|1|2047.93|0.02|0.03|A|F|1994-01-25|1993-12-10|1994-02-23|COLLECT COD|AIR| even accounts. flu| +24170|917205|42242|6|30|36664.80|0.09|0.06|A|F|1994-01-23|1994-01-05|1994-02-14|NONE|FOB|ages are blithely regular packages. final, | +24170|461427|36446|7|10|13884.00|0.09|0.05|R|F|1993-11-24|1993-12-12|1993-12-17|TAKE BACK RETURN|REG AIR|ests. furious| +24171|189785|27295|1|17|31871.26|0.08|0.00|N|O|1998-02-12|1998-01-13|1998-03-07|NONE|TRUCK|dogged deposits. blithely express platelets| +24171|716042|16043|2|4|4232.04|0.01|0.03|N|O|1998-03-02|1998-03-02|1998-03-09|NONE|TRUCK|yly carefully pending instruction| +24171|509391|9392|3|45|63016.65|0.01|0.07|N|O|1998-03-14|1998-02-13|1998-03-17|NONE|SHIP|kages. pending packages are sl| +24172|711998|11999|1|45|90448.20|0.10|0.07|R|F|1992-03-04|1992-02-20|1992-03-30|TAKE BACK RETURN|TRUCK|ious requests boost furiousl| +24172|543807|31338|2|30|55523.40|0.01|0.07|R|F|1992-04-20|1992-03-29|1992-05-13|DELIVER IN PERSON|MAIL|se fluffily. quickly final | +24173|722659|47688|1|1|1681.62|0.00|0.03|N|O|1996-06-19|1996-06-26|1996-07-04|TAKE BACK RETURN|MAIL|, special requ| +24174|353257|3258|1|30|39307.20|0.03|0.08|N|O|1998-08-02|1998-09-11|1998-08-07|TAKE BACK RETURN|RAIL|accounts: regular, expr| +24175|668311|43338|1|16|20468.48|0.00|0.00|N|O|1995-12-29|1996-01-24|1996-01-06|TAKE BACK RETURN|FOB|uffily quick packages nag above the foxes! | +24175|294105|31621|2|5|5495.45|0.06|0.03|N|O|1996-01-05|1996-01-08|1996-01-30|NONE|TRUCK|the fluffily silent p| +24175|21859|46860|3|43|76576.55|0.10|0.06|N|O|1995-12-19|1995-12-22|1995-12-21|TAKE BACK RETURN|FOB|ely final pinto beans| +24175|374790|37298|4|11|20512.58|0.08|0.02|N|O|1996-02-26|1995-12-09|1996-03-15|TAKE BACK RETURN|SHIP| pinto beans wake stealthily across| +24200|627927|27928|1|44|81615.16|0.00|0.05|A|F|1992-05-09|1992-06-25|1992-05-31|DELIVER IN PERSON|RAIL| was furiously special ideas. fina| +24200|559079|34102|2|17|19346.85|0.09|0.05|R|F|1992-06-23|1992-05-16|1992-07-01|TAKE BACK RETURN|MAIL|nstructions. even accounts boost.| +24200|440707|40708|3|45|74145.60|0.01|0.02|R|F|1992-07-28|1992-06-23|1992-08-26|NONE|TRUCK|uriously regular theodol| +24201|450765|38293|1|12|20588.88|0.09|0.06|N|O|1995-08-11|1995-09-02|1995-08-12|NONE|FOB|ully regular packages | +24201|995302|20341|2|12|16767.12|0.06|0.01|N|O|1995-07-13|1995-07-11|1995-08-02|TAKE BACK RETURN|SHIP|es cajole furiously slyly even r| +24201|28882|16383|3|26|47082.88|0.02|0.04|N|O|1995-07-08|1995-08-13|1995-07-16|TAKE BACK RETURN|MAIL|tes. boldly bold theo| +24201|417899|5424|4|19|34520.53|0.01|0.06|N|O|1995-06-26|1995-09-02|1995-07-26|TAKE BACK RETURN|TRUCK|olites affix fluffily blithely ironic th| +24201|612977|514|5|20|37798.80|0.03|0.01|N|O|1995-09-11|1995-08-31|1995-09-24|COLLECT COD|FOB|into beans a| +24202|415867|28376|1|23|41005.32|0.07|0.03|A|F|1994-06-30|1994-07-10|1994-07-20|COLLECT COD|AIR|y regular packages. even, fur| +24203|581242|43754|1|19|25141.18|0.05|0.03|N|O|1995-12-04|1996-01-19|1995-12-25|TAKE BACK RETURN|MAIL|thely. finally final ideas thrash | +24204|754966|42512|1|5|10104.65|0.05|0.06|A|F|1992-11-11|1993-01-04|1992-12-10|TAKE BACK RETURN|AIR|bold packages along the unusual, special| +24204|698191|23218|2|19|22594.04|0.09|0.07|R|F|1993-01-10|1993-01-06|1993-01-28|DELIVER IN PERSON|TRUCK|boost above the boldly even account| +24204|490925|28453|3|13|24906.70|0.03|0.07|A|F|1992-12-12|1993-01-03|1992-12-14|NONE|TRUCK|l instructio| +24204|972684|10242|4|34|59725.76|0.04|0.08|A|F|1993-02-08|1992-12-14|1993-02-16|DELIVER IN PERSON|AIR|. slyly unu| +24205|385949|10964|1|50|101746.50|0.02|0.02|N|O|1995-09-24|1995-10-13|1995-10-07|TAKE BACK RETURN|RAIL|side of the furiously unusual a| +24205|642010|42011|2|6|5711.88|0.01|0.02|N|O|1995-10-15|1995-10-17|1995-11-04|DELIVER IN PERSON|FOB|nic accounts promise foxes. | +24205|249625|24634|3|25|39365.25|0.00|0.00|N|O|1995-08-09|1995-10-02|1995-09-07|COLLECT COD|REG AIR|lar patterns ac| +24205|437723|37724|4|25|41517.50|0.06|0.07|N|O|1995-11-21|1995-10-18|1995-11-22|TAKE BACK RETURN|SHIP|kly express requests. fluffily sil| +24205|795236|20267|5|27|35942.40|0.08|0.08|N|O|1995-11-30|1995-10-02|1995-12-27|COLLECT COD|AIR|onic packages. fluffily regular foxes | +24206|545530|33061|1|30|47265.30|0.00|0.01|N|O|1996-05-27|1996-04-23|1996-06-12|TAKE BACK RETURN|FOB| furiously final instructions. s| +24206|712599|12600|2|38|61239.28|0.08|0.06|N|O|1996-04-06|1996-04-19|1996-04-17|DELIVER IN PERSON|REG AIR|nto beans. regular s| +24206|647000|22025|3|10|9469.70|0.02|0.06|N|O|1996-05-14|1996-03-14|1996-05-17|DELIVER IN PERSON|MAIL|ake carefully fluffily | +24206|120974|20975|4|25|49874.25|0.07|0.07|N|O|1996-05-10|1996-03-13|1996-05-31|DELIVER IN PERSON|AIR|r the unusual courts. quietly unusual pa| +24206|196661|34171|5|3|5272.98|0.05|0.05|N|O|1996-03-05|1996-04-13|1996-04-03|NONE|FOB| ironic do| +24206|275382|12898|6|10|13573.70|0.04|0.04|N|O|1996-05-10|1996-03-25|1996-05-29|TAKE BACK RETURN|FOB|quests are furiously. quickly p| +24207|299127|11633|1|3|3378.33|0.06|0.06|N|O|1995-08-15|1995-09-15|1995-08-21|NONE|REG AIR|. packages impress carefully. furious| +24207|417488|17489|2|22|30920.12|0.06|0.06|N|O|1995-09-16|1995-08-28|1995-09-21|TAKE BACK RETURN|SHIP|uriously bold deposits| +24207|718619|18620|3|45|73691.10|0.00|0.00|N|O|1995-09-30|1995-08-23|1995-10-24|COLLECT COD|RAIL|re across the fluffily fina| +24207|816237|41270|4|14|16144.66|0.06|0.02|N|O|1995-08-13|1995-08-30|1995-09-07|COLLECT COD|MAIL|ajole. caref| +24207|488493|13512|5|48|71110.56|0.00|0.02|N|O|1995-09-23|1995-09-04|1995-10-18|TAKE BACK RETURN|TRUCK|ross the blithely fi| +24207|93554|18557|6|14|21665.70|0.03|0.03|N|O|1995-07-17|1995-09-16|1995-07-25|TAKE BACK RETURN|RAIL|slyly busy deposits along the final| +24207|356818|19326|7|1|1874.80|0.06|0.05|N|O|1995-08-03|1995-10-02|1995-08-31|NONE|SHIP| dependencies affix carefully carefu| +24232|36895|49396|1|28|51292.92|0.09|0.03|N|O|1996-11-07|1996-09-13|1996-11-12|NONE|FOB|e the blithely silent th| +24232|78463|40965|2|15|21621.90|0.09|0.00|N|O|1996-12-08|1996-11-11|1997-01-05|NONE|SHIP|ng the furiously sly d| +24232|716533|16534|3|25|38737.50|0.02|0.07|N|O|1996-11-22|1996-10-05|1996-12-18|COLLECT COD|AIR|bout the fluffily regular deposits. regu| +24232|758266|33297|4|19|25160.37|0.02|0.07|N|O|1996-12-05|1996-09-18|1996-12-24|NONE|TRUCK|he carefully pending packages are bl| +24232|175715|722|5|21|37604.91|0.06|0.01|N|O|1996-11-19|1996-11-05|1996-12-09|TAKE BACK RETURN|MAIL|lyly. furiously regular pa| +24233|245458|20467|1|27|37892.88|0.02|0.05|R|F|1992-08-28|1992-08-12|1992-09-10|NONE|MAIL|fter the final, unusual packages. | +24233|410000|47525|2|45|40949.10|0.09|0.01|A|F|1992-10-01|1992-08-19|1992-10-10|NONE|TRUCK|unts sleep carefully unusual instruct| +24233|863628|1180|3|7|11141.06|0.01|0.02|A|F|1992-09-07|1992-07-22|1992-09-21|TAKE BACK RETURN|SHIP|ld have to sleep blithely. final dep| +24233|982726|32727|4|18|32556.24|0.04|0.02|R|F|1992-10-06|1992-08-21|1992-10-31|TAKE BACK RETURN|REG AIR|ly according to the pending instru| +24233|663255|13256|5|34|41419.48|0.07|0.06|A|F|1992-07-13|1992-08-24|1992-07-22|NONE|FOB|ar packages! pending accounts | +24234|228104|28105|1|24|24770.16|0.04|0.01|A|F|1994-01-28|1993-12-22|1994-01-31|TAKE BACK RETURN|FOB|rs. silent deposits wake f| +24234|732981|8010|2|9|18125.55|0.00|0.03|R|F|1993-12-08|1993-12-08|1993-12-17|TAKE BACK RETURN|FOB|ously at t| +24234|200827|13332|3|5|8639.05|0.02|0.01|A|F|1994-01-02|1994-01-02|1994-01-17|NONE|SHIP|sly express requests| +24234|299316|11822|4|27|35513.10|0.00|0.05|A|F|1993-11-20|1993-12-24|1993-11-21|DELIVER IN PERSON|REG AIR|ep furiously according to the| +24234|597616|35150|5|46|78825.14|0.00|0.04|A|F|1994-02-03|1993-12-28|1994-02-10|TAKE BACK RETURN|MAIL|, bold ideas. fluffily reg| +24234|125764|38267|6|27|48323.52|0.00|0.06|R|F|1994-01-23|1993-12-19|1994-02-05|NONE|RAIL|unts detect furiously | +24235|89848|2350|1|23|42270.32|0.07|0.08|N|O|1997-10-04|1997-10-19|1997-10-28|TAKE BACK RETURN|TRUCK|ully final foxes are slyly alongside | +24235|68968|43971|2|18|34865.28|0.03|0.02|N|O|1997-10-30|1997-11-21|1997-11-09|DELIVER IN PERSON|AIR|xes integrate | +24235|137795|12800|3|38|69646.02|0.01|0.03|N|O|1998-01-03|1997-12-07|1998-01-14|DELIVER IN PERSON|REG AIR| pinto beans kindle finally| +24235|911024|11025|4|14|14489.72|0.07|0.03|N|O|1997-11-30|1997-11-28|1997-12-12|NONE|REG AIR| asymptotes use furiously quickly| +24235|573192|10726|5|22|27833.74|0.04|0.08|N|O|1997-10-18|1997-11-29|1997-11-16|TAKE BACK RETURN|TRUCK|e pending, ironic| +24235|621598|34111|6|42|63821.52|0.08|0.03|N|O|1998-01-09|1997-11-07|1998-01-31|COLLECT COD|MAIL| sleep after the carefully regular theo| +24236|492372|29900|1|34|46387.90|0.02|0.04|N|O|1997-12-18|1998-01-25|1998-01-06|DELIVER IN PERSON|FOB|luffily ironic instructions. carefully re| +24236|283696|8707|2|6|10078.08|0.02|0.05|N|O|1998-01-11|1998-01-05|1998-02-02|COLLECT COD|AIR|ular platelets. quickly unusual packa| +24236|71584|9088|3|49|76223.42|0.01|0.04|N|O|1998-01-29|1998-01-08|1998-02-09|COLLECT COD|MAIL|s according to t| +24236|103990|3991|4|31|61813.69|0.10|0.07|N|O|1998-01-16|1998-01-14|1998-02-12|DELIVER IN PERSON|REG AIR|e carefully unusual asymptotes. furiously| +24236|743476|43477|5|31|47102.64|0.09|0.01|N|O|1998-01-03|1998-01-03|1998-01-13|DELIVER IN PERSON|RAIL|ven, ironic excuses solve quickly| +24236|591687|29221|6|10|17786.60|0.02|0.00|N|O|1998-02-09|1998-01-04|1998-03-10|TAKE BACK RETURN|FOB|ial pinto beans. pending pinto beans affix| +24237|705749|5750|1|3|5264.13|0.10|0.01|N|O|1997-12-14|1997-11-21|1997-12-21|COLLECT COD|FOB|ly unusual accounts. pending, special pi| +24237|513407|25918|2|42|59655.96|0.08|0.04|N|O|1997-12-23|1997-10-20|1998-01-02|TAKE BACK RETURN|SHIP|y special ideas use | +24237|824204|36721|3|3|3384.48|0.05|0.04|N|O|1997-10-15|1997-11-21|1997-11-12|COLLECT COD|SHIP|ss dependencies p| +24237|391535|4043|4|42|68313.84|0.10|0.02|N|O|1997-09-28|1997-12-02|1997-10-20|NONE|FOB|ously final theodolites sleep caref| +24237|523058|23059|5|5|5405.15|0.04|0.02|N|O|1997-11-27|1997-10-10|1997-11-30|NONE|MAIL|s. fluffily even packages wake furiously| +24237|25003|4|6|2|1856.00|0.01|0.01|N|O|1997-09-14|1997-10-21|1997-10-04|NONE|TRUCK|egular, final accounts. carefully ev| +24237|212401|37410|7|40|52535.60|0.10|0.07|N|O|1997-10-11|1997-10-11|1997-10-20|COLLECT COD|REG AIR|fily above the furi| +24238|821071|8620|1|35|34721.05|0.03|0.02|R|F|1995-01-26|1994-12-23|1995-02-07|TAKE BACK RETURN|MAIL| final depo| +24238|730604|43119|2|16|26153.12|0.02|0.02|A|F|1994-10-23|1994-11-20|1994-11-20|COLLECT COD|REG AIR|sits sleep afte| +24238|258717|46233|3|30|50271.00|0.06|0.06|R|F|1995-01-20|1994-11-07|1995-01-27|TAKE BACK RETURN|SHIP|manent requ| +24238|251394|13900|4|13|17489.94|0.04|0.05|R|F|1994-11-16|1994-12-13|1994-12-05|DELIVER IN PERSON|MAIL|n instructions haggle| +24238|167634|42641|5|26|44242.38|0.07|0.04|R|F|1995-01-23|1994-11-15|1995-02-05|TAKE BACK RETURN|FOB|fter the fluffily unusual requests snooze f| +24239|313647|38660|1|13|21588.19|0.09|0.01|N|O|1996-06-05|1996-04-24|1996-06-22|NONE|TRUCK|ful grouches use. furiously r| +24239|458779|33798|2|49|85149.75|0.02|0.05|N|O|1996-04-05|1996-04-16|1996-04-08|COLLECT COD|REG AIR|ly furiously pending deposits. regular,| +24239|689316|14343|3|35|45684.80|0.00|0.06|N|O|1996-05-14|1996-06-12|1996-06-01|COLLECT COD|AIR|alongside of the ironic pinto beans | +24264|919527|44564|1|2|3092.96|0.00|0.06|N|O|1995-10-04|1995-08-06|1995-10-25|DELIVER IN PERSON|FOB|c requests doubt quickly across the bo| +24264|480456|5475|2|36|51711.48|0.08|0.06|N|O|1995-07-23|1995-08-23|1995-08-06|COLLECT COD|REG AIR|e above the fluffily unusu| +24264|13285|786|3|36|43138.08|0.02|0.04|N|O|1995-09-10|1995-08-08|1995-09-19|NONE|MAIL|tect. blithely even excuses snooze| +24264|276298|13814|4|14|17839.92|0.03|0.02|N|O|1995-09-11|1995-09-17|1995-09-13|NONE|SHIP|uests sleep fluffily blithely| +24264|727356|27357|5|23|31816.36|0.10|0.02|N|O|1995-07-27|1995-07-31|1995-08-19|DELIVER IN PERSON|SHIP|ets; furiou| +24265|341306|3813|1|12|16167.48|0.02|0.01|N|O|1995-08-02|1995-06-20|1995-08-26|NONE|RAIL|he regular, iro| +24265|318182|18183|2|47|56407.99|0.10|0.04|N|O|1995-06-19|1995-06-08|1995-07-02|TAKE BACK RETURN|MAIL|quickly ironic dugouts sleep careful| +24266|242143|4648|1|36|39064.68|0.07|0.02|R|F|1994-07-30|1994-09-26|1994-08-10|NONE|FOB| among the final platelets. furiously regu| +24266|688943|13970|2|46|88867.86|0.06|0.06|R|F|1994-10-27|1994-08-07|1994-11-15|COLLECT COD|FOB|slyly blithely | +24267|744005|6520|1|34|35664.98|0.03|0.08|A|F|1994-11-14|1994-10-27|1994-12-02|NONE|AIR|ding, special instr| +24267|478341|28342|2|3|3957.96|0.06|0.08|A|F|1994-11-07|1994-11-29|1994-11-20|NONE|MAIL|egular depend| +24267|469234|44253|3|6|7219.26|0.06|0.06|A|F|1994-12-26|1994-12-08|1995-01-22|DELIVER IN PERSON|RAIL|quickly ironic pack| +24267|414574|2099|4|7|10419.85|0.04|0.04|R|F|1995-01-02|1994-10-26|1995-01-31|COLLECT COD|REG AIR|ss, silent pac| +24267|730603|18146|5|24|39205.68|0.07|0.00|A|F|1995-01-09|1994-11-12|1995-02-04|TAKE BACK RETURN|RAIL|ffily. bold dugouts haggle| +24268|555699|5700|1|8|14037.36|0.06|0.04|N|O|1996-01-11|1995-12-04|1996-02-07|COLLECT COD|SHIP|eposits above the furiously ironic accoun| +24268|618253|18254|2|32|37479.04|0.05|0.06|N|O|1996-02-05|1995-12-09|1996-02-13|TAKE BACK RETURN|FOB|al deposits. carefully pending pinto| +24268|978115|15673|3|30|35792.10|0.02|0.07|N|O|1995-12-23|1996-01-22|1996-01-06|DELIVER IN PERSON|SHIP|ndencies haggle. slyly daring accounts | +24269|969407|44446|1|23|33956.28|0.04|0.07|N|O|1997-02-07|1997-03-31|1997-03-09|DELIVER IN PERSON|MAIL|regular foxes boost furiously blithe plate| +24270|642304|42305|1|2|2492.54|0.03|0.03|N|O|1995-10-14|1995-10-02|1995-10-17|TAKE BACK RETURN|REG AIR|ording to the packages. quickly pending p| +24270|196407|21414|2|23|34578.20|0.04|0.04|N|O|1995-10-19|1995-09-01|1995-10-20|TAKE BACK RETURN|AIR|lites above the realms are furiously car| +24270|1323|13824|3|34|41626.88|0.02|0.03|N|O|1995-10-27|1995-10-02|1995-11-25|TAKE BACK RETURN|AIR|ccounts. unusual, ironic depo| +24270|228814|41319|4|18|31370.40|0.02|0.06|N|O|1995-10-26|1995-10-06|1995-10-28|COLLECT COD|FOB|pecial epitaph| +24270|676623|1650|5|17|27193.03|0.05|0.02|N|O|1995-10-01|1995-09-17|1995-10-28|NONE|AIR|deas. grouches nag a| +24271|14991|14992|1|18|34307.82|0.07|0.01|A|F|1994-06-06|1994-04-10|1994-06-23|COLLECT COD|AIR|ic pinto beans. final platele| +24271|953132|3133|2|5|5925.45|0.09|0.06|R|F|1994-05-25|1994-05-08|1994-06-08|TAKE BACK RETURN|MAIL|int thinly at the ironic, final accoun| +24271|283025|8036|3|44|44352.44|0.03|0.06|R|F|1994-05-26|1994-04-10|1994-06-09|TAKE BACK RETURN|RAIL|sts after the| +24271|796627|21658|4|3|5170.77|0.05|0.08|R|F|1994-03-08|1994-04-19|1994-03-23|NONE|REG AIR|s. quickly pending theodolites | +24271|899492|12010|5|19|28337.55|0.08|0.03|R|F|1994-06-21|1994-04-09|1994-06-28|DELIVER IN PERSON|AIR|ording to t| +24271|758925|8926|6|11|21822.79|0.10|0.04|A|F|1994-04-08|1994-05-06|1994-04-29|COLLECT COD|SHIP|cial pinto beans| +24296|273101|10617|1|35|37593.15|0.04|0.04|N|O|1997-01-23|1997-04-01|1997-01-25|DELIVER IN PERSON|SHIP|ncies. slyly final packages x-r| +24296|435|436|2|42|56088.06|0.01|0.08|N|O|1997-02-11|1997-02-09|1997-02-26|DELIVER IN PERSON|FOB|egular requests-- ca| +24297|768394|18395|1|14|20473.04|0.07|0.00|N|O|1998-03-19|1998-04-17|1998-04-02|NONE|FOB|deposits among | +24297|397744|47745|2|8|14733.84|0.03|0.04|N|O|1998-04-11|1998-03-31|1998-04-18|COLLECT COD|MAIL|furiously | +24297|869010|19011|3|20|19579.40|0.07|0.05|N|O|1998-06-09|1998-04-06|1998-06-26|DELIVER IN PERSON|SHIP|yly finally | +24297|449192|36717|4|16|18258.72|0.00|0.08|N|O|1998-03-20|1998-05-02|1998-04-01|NONE|RAIL|doubt slyly according to the slyly| +24297|553968|3969|5|49|99075.06|0.04|0.07|N|O|1998-05-23|1998-04-05|1998-06-22|NONE|REG AIR| above the evenly even pint| +24297|532405|19936|6|36|51745.68|0.04|0.02|N|O|1998-04-27|1998-05-04|1998-05-26|NONE|REG AIR|above the regular deposits. regul| +24298|352825|2826|1|14|26289.34|0.09|0.06|R|F|1993-03-12|1993-04-03|1993-03-19|COLLECT COD|SHIP|s against the blithely busy requests b| +24299|65443|2947|1|26|36619.44|0.07|0.08|N|O|1998-04-24|1998-07-09|1998-05-13|COLLECT COD|AIR|nag above the slyly even ideas. quic| +24299|895201|32753|2|1|1196.16|0.01|0.00|N|O|1998-08-17|1998-06-23|1998-09-03|TAKE BACK RETURN|RAIL|ly regular excuses. pending| +24300|698174|23201|1|17|19926.38|0.09|0.01|R|F|1994-12-13|1995-02-02|1994-12-21|DELIVER IN PERSON|AIR|ar packages after the regular packages boos| +24300|206672|6673|2|43|67882.38|0.07|0.08|R|F|1994-12-04|1994-12-22|1994-12-12|TAKE BACK RETURN|AIR|ls. carefully even packages after | +24301|981549|19107|1|29|47284.50|0.02|0.01|N|O|1997-06-05|1997-07-27|1997-06-12|TAKE BACK RETURN|REG AIR|e evenly s| +24301|883108|20660|2|41|44733.46|0.09|0.03|N|O|1997-06-02|1997-07-26|1997-06-08|TAKE BACK RETURN|MAIL|quests? slyl| +24301|392263|42264|3|36|48789.00|0.03|0.05|N|O|1997-07-26|1997-07-28|1997-08-10|DELIVER IN PERSON|MAIL|s was. unusual r| +24301|749255|24284|4|19|24780.18|0.01|0.03|N|O|1997-08-24|1997-07-11|1997-08-27|TAKE BACK RETURN|RAIL|y regular pin| +24301|726884|14427|5|29|55414.65|0.09|0.04|N|O|1997-09-09|1997-07-17|1997-10-05|NONE|FOB|t slyly fluffily regular sauternes. accoun| +24302|53545|3546|1|50|74927.00|0.04|0.08|N|O|1998-01-11|1998-02-09|1998-01-14|DELIVER IN PERSON|MAIL|al packages grow carefully carefully bold p| +24302|920415|7970|2|7|10047.59|0.09|0.07|N|O|1998-03-09|1998-02-08|1998-03-30|DELIVER IN PERSON|RAIL| along the idly final pinto beans use | +24302|409952|34969|3|22|40962.46|0.04|0.08|N|O|1998-03-24|1998-02-21|1998-03-29|COLLECT COD|AIR|s sleep quickly slyly ironi| +24303|326896|14415|1|25|48072.00|0.02|0.07|N|O|1997-08-20|1997-08-10|1997-09-02|COLLECT COD|TRUCK|excuses. final packages do sleep ca| +24303|133706|8711|2|49|85245.30|0.01|0.02|N|O|1997-06-23|1997-07-18|1997-06-29|COLLECT COD|FOB|sts use carefully even, | +24303|184569|22079|3|32|52913.92|0.04|0.07|N|O|1997-06-01|1997-07-03|1997-06-18|DELIVER IN PERSON|FOB|ess accounts are blithely about the q| +24303|35004|35005|4|21|19719.00|0.07|0.07|N|O|1997-08-29|1997-07-16|1997-08-30|NONE|SHIP|ly ironic requests doze| +24303|312091|49610|5|35|38607.80|0.05|0.05|N|O|1997-08-26|1997-08-06|1997-09-03|TAKE BACK RETURN|AIR|al, close requests. blith| +24328|741752|41753|1|2|3587.44|0.10|0.08|N|O|1996-12-06|1996-11-06|1996-12-12|TAKE BACK RETURN|REG AIR|use slyly. pen| +24328|619892|32405|2|35|63415.10|0.03|0.03|N|O|1996-09-18|1996-12-01|1996-09-20|NONE|RAIL|equests sleep toward the carefully | +24328|515876|40897|3|17|32161.45|0.10|0.03|N|O|1996-10-09|1996-10-18|1996-10-28|TAKE BACK RETURN|RAIL|into beans. sometimes pending theodoli| +24329|915952|28471|1|22|43294.02|0.09|0.07|A|F|1994-09-15|1994-10-23|1994-09-16|TAKE BACK RETURN|TRUCK|ut the slyly ironic reques| +24329|396535|9043|2|46|75049.92|0.09|0.03|R|F|1994-09-28|1994-10-20|1994-10-21|DELIVER IN PERSON|SHIP|e carefully bold depos| +24329|549940|37471|3|15|29848.80|0.03|0.00|R|F|1994-09-08|1994-08-28|1994-09-15|TAKE BACK RETURN|RAIL|hless platelets caj| +24330|506586|19097|1|28|44591.68|0.08|0.03|N|O|1997-01-03|1996-11-26|1997-01-08|DELIVER IN PERSON|FOB|nic, ironic accounts sleep blithel| +24330|175071|37575|2|43|49281.01|0.08|0.02|N|O|1996-12-09|1997-01-02|1996-12-17|TAKE BACK RETURN|FOB|ajole furiously around the sl| +24330|415390|40407|3|37|48298.69|0.08|0.02|N|O|1996-12-06|1997-01-02|1996-12-27|TAKE BACK RETURN|SHIP|lithely iron| +24330|442981|17998|4|37|71186.52|0.09|0.02|N|O|1996-10-26|1996-12-31|1996-11-15|TAKE BACK RETURN|AIR|y, express platelets. re| +24330|174495|12005|5|38|59640.62|0.05|0.02|N|O|1996-10-26|1996-11-12|1996-11-22|DELIVER IN PERSON|TRUCK|t carefully. fin| +24330|731870|31871|6|14|26625.76|0.04|0.06|N|O|1997-01-02|1996-12-23|1997-01-16|DELIVER IN PERSON|REG AIR|eposits nag furiously requests. fu| +24330|526938|26939|7|4|7859.64|0.04|0.08|N|O|1997-01-20|1996-11-19|1997-02-12|NONE|MAIL|g warhorses. ironic| +24331|242975|42976|1|28|53702.88|0.02|0.07|R|F|1994-05-28|1994-04-04|1994-05-29|COLLECT COD|REG AIR|ckages boost. sly| +24331|675542|25543|2|24|36420.24|0.00|0.03|A|F|1994-06-24|1994-04-21|1994-07-06|NONE|TRUCK| ideas. quickly | +24331|820692|8241|3|44|70956.60|0.10|0.06|R|F|1994-05-24|1994-04-07|1994-06-02|NONE|RAIL|lithely even foxes. fina| +24331|355487|17995|4|10|15424.70|0.00|0.05|A|F|1994-05-22|1994-04-24|1994-06-07|NONE|TRUCK|into beans. express forges integrate fo| +24332|742177|42178|1|42|51203.88|0.10|0.07|N|O|1997-03-13|1997-05-09|1997-03-28|DELIVER IN PERSON|AIR|atelets are furiously after the ironic pac| +24332|760233|47779|2|17|21984.40|0.06|0.05|N|O|1997-03-10|1997-03-31|1997-04-03|DELIVER IN PERSON|SHIP|otes solve ironic courts. blith| +24332|227662|27663|3|6|9537.90|0.01|0.07|N|O|1997-04-14|1997-05-01|1997-05-02|COLLECT COD|AIR| blithely unusual requests han| +24333|789288|14319|1|10|13772.50|0.02|0.02|N|O|1996-12-09|1996-12-13|1996-12-19|TAKE BACK RETURN|FOB|. gifts sleep q| +24333|547781|22802|2|15|27431.40|0.09|0.04|N|O|1996-10-31|1997-01-04|1996-11-25|DELIVER IN PERSON|RAIL| the furiously even ideas haggle ironi| +24333|550027|12539|3|12|12924.00|0.10|0.08|N|O|1997-01-14|1996-12-21|1997-02-11|NONE|RAIL|ackages. slyly regul| +24333|289859|14870|4|44|81348.96|0.02|0.08|N|O|1996-11-15|1996-11-18|1996-11-25|DELIVER IN PERSON|SHIP|nal ideas. slyly even asympt| +24334|164193|26697|1|43|54059.17|0.04|0.02|R|F|1995-04-22|1995-05-06|1995-05-11|DELIVER IN PERSON|REG AIR|blithely even packages boost carefu| +24334|577034|2057|2|13|14443.13|0.09|0.03|R|F|1995-02-23|1995-04-06|1995-03-17|TAKE BACK RETURN|REG AIR|cross the pending | +24334|208578|33587|3|33|49056.48|0.02|0.04|R|F|1995-05-20|1995-04-22|1995-05-22|DELIVER IN PERSON|RAIL|thely unusual package| +24334|556648|31671|4|1|1704.62|0.09|0.00|A|F|1995-02-24|1995-04-08|1995-03-13|DELIVER IN PERSON|FOB|e the carefully final pinto beans. fluffi| +24334|568496|31008|5|27|42240.69|0.07|0.04|R|F|1995-02-25|1995-04-28|1995-03-06|TAKE BACK RETURN|AIR|tes wake slyly above the regular, even th| +24335|66856|41859|1|12|21874.20|0.02|0.02|N|O|1997-02-24|1997-03-17|1997-03-19|TAKE BACK RETURN|RAIL|sly at the even re| +24335|639028|1541|2|48|46415.52|0.05|0.00|N|O|1997-04-21|1997-02-18|1997-05-14|DELIVER IN PERSON|REG AIR|uriously carefully| +24335|126942|14449|3|42|82695.48|0.00|0.03|N|O|1997-02-22|1997-04-02|1997-03-17|NONE|RAIL|y express t| +24335|508833|21344|4|50|92090.50|0.03|0.05|N|O|1997-03-23|1997-04-01|1997-04-13|DELIVER IN PERSON|SHIP|of the slyly unusual excuse| +24335|939721|2240|5|50|88034.00|0.00|0.04|N|O|1997-02-22|1997-04-10|1997-03-09|COLLECT COD|TRUCK|ithes against the furiously | +24360|783917|8948|1|39|78034.32|0.08|0.07|N|O|1996-03-05|1996-03-07|1996-03-06|COLLECT COD|MAIL|le pinto beans: express packages alongside| +24360|277460|2471|2|37|53185.65|0.02|0.08|N|O|1996-05-11|1996-04-08|1996-05-31|NONE|AIR|lly regular packages. furiously even | +24360|259360|46876|3|41|54093.35|0.01|0.06|N|O|1996-02-14|1996-04-19|1996-02-23|TAKE BACK RETURN|TRUCK|deas x-ray fluffily. slyly pending | +24361|680198|17738|1|7|8247.12|0.06|0.08|R|F|1994-04-11|1994-02-11|1994-04-29|NONE|REG AIR|ial dolphins cajole| +24361|74586|24587|2|28|43696.24|0.01|0.00|R|F|1994-02-16|1994-04-01|1994-03-13|NONE|AIR|old deposit| +24361|551607|26630|3|13|21561.54|0.04|0.03|R|F|1994-03-04|1994-02-22|1994-03-19|NONE|TRUCK|the unusual instructions| +24361|858254|45806|4|47|56973.87|0.09|0.08|R|F|1994-01-21|1994-02-13|1994-02-09|COLLECT COD|SHIP|furiously ironic requests: blithely speci| +24361|668968|31482|5|19|36801.67|0.10|0.00|R|F|1994-02-13|1994-03-31|1994-02-16|TAKE BACK RETURN|SHIP|gular packages. id| +24361|337864|25383|6|13|24724.05|0.08|0.07|A|F|1994-01-28|1994-02-20|1994-02-14|COLLECT COD|RAIL|cial theodolites according to the bl| +24361|468557|31067|7|1|1525.53|0.09|0.03|A|F|1994-02-14|1994-03-13|1994-02-16|DELIVER IN PERSON|MAIL| requests. careful| +24362|22518|47519|1|7|10083.57|0.08|0.05|N|O|1997-10-26|1997-11-01|1997-11-18|NONE|TRUCK|ugouts haggle permanen| +24362|457720|32739|2|35|58719.50|0.06|0.08|N|O|1997-12-25|1997-10-29|1997-12-26|TAKE BACK RETURN|MAIL|e requests. carefully even accounts | +24362|884490|47008|3|47|69299.15|0.06|0.00|N|O|1997-09-30|1997-11-07|1997-10-29|DELIVER IN PERSON|RAIL|sts haggle evenly fluffil| +24362|619213|31726|4|18|20379.24|0.02|0.03|N|O|1997-10-23|1997-11-24|1997-11-18|NONE|RAIL|s. thinly regular| +24362|97689|35193|5|46|77587.28|0.06|0.04|N|O|1998-01-01|1997-12-05|1998-01-28|DELIVER IN PERSON|AIR|ong the express,| +24363|368773|43788|1|3|5525.28|0.10|0.07|N|O|1998-02-20|1998-02-23|1998-02-25|NONE|FOB|s sublate slyly. iron| +24363|966505|4063|2|16|25143.36|0.03|0.02|N|O|1998-04-11|1998-03-18|1998-04-27|NONE|TRUCK| the theodolites. silent| +24363|38569|38570|3|17|25628.52|0.08|0.05|N|O|1998-04-14|1998-03-14|1998-04-29|DELIVER IN PERSON|REG AIR|d, pending account| +24363|218244|30749|4|19|22082.37|0.07|0.00|N|O|1998-04-09|1998-02-19|1998-04-27|DELIVER IN PERSON|RAIL|. slyly iro| +24363|17642|42643|5|11|17156.04|0.02|0.08|N|O|1998-03-05|1998-03-23|1998-03-07|TAKE BACK RETURN|REG AIR|mong the slyly regular asymptotes. re| +24363|494667|19686|6|33|54834.12|0.09|0.00|N|O|1998-04-06|1998-02-15|1998-05-05|COLLECT COD|REG AIR|ts. deposits sleep. ironic | +24364|629172|4197|1|18|19820.52|0.06|0.06|R|F|1994-06-25|1994-05-04|1994-07-03|DELIVER IN PERSON|MAIL|ular, quick foxes cajole qu| +24364|492747|5257|2|28|48712.16|0.08|0.07|A|F|1994-05-01|1994-05-24|1994-05-08|COLLECT COD|SHIP| the dependencies. | +24364|586459|11482|3|5|7727.15|0.01|0.07|R|F|1994-06-21|1994-05-17|1994-06-27|DELIVER IN PERSON|REG AIR| to the carefully regular pinto beans n| +24364|609283|21796|4|6|7153.50|0.07|0.04|R|F|1994-05-03|1994-06-04|1994-05-13|COLLECT COD|AIR|ccording to the slyly close pinto beans. bo| +24365|555475|43009|1|28|42852.60|0.01|0.00|R|F|1992-07-01|1992-05-25|1992-07-09|TAKE BACK RETURN|RAIL|packages. requests are quickly bold ac| +24365|864257|14258|2|42|51290.82|0.05|0.03|R|F|1992-07-05|1992-07-10|1992-07-20|COLLECT COD|REG AIR|e blithely pending requests. always even p| +24365|562654|12655|3|26|44632.38|0.04|0.07|A|F|1992-07-17|1992-06-01|1992-08-09|TAKE BACK RETURN|MAIL|kly furiously pending ideas. blithely expre| +24365|522938|47959|4|41|80397.31|0.06|0.01|A|F|1992-04-27|1992-07-04|1992-05-26|TAKE BACK RETURN|FOB|kages boost alongside of| +24365|13266|13267|5|23|27122.98|0.01|0.07|R|F|1992-06-18|1992-06-15|1992-07-04|DELIVER IN PERSON|RAIL|tions use | +24365|950110|12630|6|19|22041.33|0.01|0.02|A|F|1992-04-29|1992-05-19|1992-05-25|COLLECT COD|AIR|quests cajole s| +24366|548794|23815|1|38|70025.26|0.06|0.02|N|O|1996-07-03|1996-05-19|1996-07-31|TAKE BACK RETURN|FOB|ven packages wake. blithely sly accou| +24366|571409|8943|2|34|50332.92|0.06|0.01|N|O|1996-04-15|1996-06-07|1996-05-09|DELIVER IN PERSON|REG AIR|uffily across the fluffily regular re| +24366|668385|30899|3|47|63607.45|0.07|0.08|N|O|1996-06-18|1996-05-29|1996-07-12|DELIVER IN PERSON|MAIL|structions boost furiou| +24366|537215|37216|4|11|13774.09|0.09|0.04|N|O|1996-06-18|1996-05-23|1996-06-20|NONE|RAIL|s sleep caref| +24366|957976|20496|5|38|77289.34|0.05|0.03|N|O|1996-06-28|1996-06-07|1996-07-02|COLLECT COD|SHIP|jole. fluffily fi| +24366|701746|26775|6|46|80394.66|0.10|0.03|N|O|1996-05-01|1996-06-09|1996-05-27|TAKE BACK RETURN|FOB|special ideas. regular deposits sleep. sly| +24366|243517|18526|7|6|8763.00|0.06|0.02|N|O|1996-07-06|1996-05-25|1996-08-04|TAKE BACK RETURN|RAIL|sual theodolites p| +24367|783768|46284|1|23|42589.79|0.05|0.00|N|O|1996-01-24|1995-12-29|1996-01-26|NONE|AIR|en asymptotes affix. accou| +24367|788541|38542|2|13|21183.63|0.09|0.03|N|O|1995-11-23|1995-12-23|1995-12-02|NONE|AIR|ly sly deposits nag among the blithely even| +24367|6588|19089|3|32|47826.56|0.05|0.08|N|O|1995-12-07|1995-12-13|1995-12-24|TAKE BACK RETURN|FOB|gular accounts. furiously brave ins| +24367|715248|2791|4|40|50528.40|0.09|0.07|N|O|1995-11-13|1995-12-27|1995-12-05|NONE|AIR|ctions. furiously final request| +24392|692483|42484|1|35|51640.75|0.09|0.04|A|F|1994-04-06|1994-02-19|1994-04-30|NONE|MAIL|ions wake spec| +24392|553921|16433|2|42|82945.80|0.07|0.02|A|F|1994-03-06|1994-01-16|1994-04-03|DELIVER IN PERSON|FOB|r the slyly regular pa| +24392|746513|21542|3|8|12475.84|0.02|0.08|R|F|1994-01-09|1994-02-18|1994-01-29|COLLECT COD|RAIL|counts. pending, final acc| +24393|503645|16156|1|8|13188.96|0.01|0.07|N|O|1998-07-29|1998-08-18|1998-08-24|TAKE BACK RETURN|FOB|uthlessly sile| +24393|748928|23957|2|12|23722.68|0.04|0.03|N|O|1998-08-19|1998-07-27|1998-09-14|DELIVER IN PERSON|SHIP|each regular pearls. final co| +24393|218106|5619|3|19|19457.71|0.07|0.02|N|O|1998-07-07|1998-07-31|1998-07-22|TAKE BACK RETURN|RAIL|es use. quickly regular fo| +24393|705537|5538|4|9|13882.50|0.03|0.04|N|O|1998-08-13|1998-08-07|1998-09-12|DELIVER IN PERSON|RAIL|t furiously careful, close packages. r| +24393|943604|18641|5|31|51074.36|0.03|0.02|N|O|1998-10-19|1998-09-24|1998-10-27|COLLECT COD|AIR|ithely after the ironic pa| +24394|731634|31635|1|35|58296.00|0.10|0.03|N|O|1996-07-30|1996-06-21|1996-08-14|NONE|AIR|sly along the accounts. unusual deposit| +24395|282539|7550|1|32|48688.64|0.02|0.06|A|F|1994-10-13|1994-10-15|1994-10-22|TAKE BACK RETURN|AIR|es cajole furiously; carefully pendin| +24395|625279|37792|2|13|15655.12|0.05|0.04|R|F|1994-08-24|1994-10-05|1994-09-05|DELIVER IN PERSON|SHIP|cial platelets. special requests wake ca| +24395|57186|19688|3|27|30865.86|0.08|0.00|A|F|1994-10-13|1994-09-20|1994-10-21|TAKE BACK RETURN|REG AIR|ts. platelets to t| +24395|109733|34738|4|30|52281.90|0.01|0.03|A|F|1994-09-21|1994-10-25|1994-10-05|DELIVER IN PERSON|AIR|he furiously final ideas snoo| +24395|270494|20495|5|46|67366.08|0.08|0.08|A|F|1994-11-20|1994-10-18|1994-11-25|COLLECT COD|TRUCK|ncies among the blithely even wa| +24395|188631|26141|6|25|42990.75|0.02|0.00|A|F|1994-11-26|1994-11-06|1994-12-20|NONE|REG AIR|s? unusual, ironic dependencies| +24396|2785|15286|1|37|62447.86|0.04|0.01|N|O|1997-05-13|1997-03-26|1997-05-19|TAKE BACK RETURN|FOB| deposits. furiously even deposits wake fl| +24396|800366|37915|2|24|30391.68|0.08|0.08|N|O|1997-04-25|1997-03-09|1997-05-08|NONE|FOB|efully quickly ironic theodolites. fu| +24396|743210|5725|3|3|3759.54|0.08|0.06|N|O|1997-03-30|1997-03-27|1997-04-15|NONE|AIR|y fluffily bold excuses! slyly reg| +24397|854423|16941|1|27|37189.26|0.01|0.01|A|F|1994-02-25|1994-02-13|1994-03-19|DELIVER IN PERSON|FOB| integrate blithely. carefully stealthy e| +24397|278736|16252|2|41|70303.52|0.09|0.01|R|F|1994-03-05|1994-02-09|1994-03-17|DELIVER IN PERSON|SHIP| escapades are. quickly regular ins| +24397|705811|30840|3|25|45419.50|0.10|0.08|A|F|1994-04-04|1994-02-16|1994-04-13|TAKE BACK RETURN|FOB|s are blithely. blithely re| +24397|554627|29650|4|35|58856.00|0.03|0.05|R|F|1994-04-08|1994-03-15|1994-04-18|TAKE BACK RETURN|TRUCK| beans haggle blithely. furi| +24397|611539|49076|5|28|40614.00|0.03|0.00|R|F|1994-04-30|1994-03-20|1994-05-11|TAKE BACK RETURN|TRUCK|. requests use blithely. blit| +24397|123600|36103|6|48|77932.80|0.08|0.03|A|F|1994-03-21|1994-02-10|1994-03-25|NONE|SHIP|against the unusual accounts. always fi| +24398|378268|3283|1|27|36348.75|0.03|0.07|A|F|1993-05-19|1993-03-25|1993-05-25|NONE|REG AIR|ongside of the quickly special accoun| +24398|542550|17571|2|11|17517.83|0.04|0.06|R|F|1993-03-31|1993-03-14|1993-04-27|DELIVER IN PERSON|RAIL|otes! carefully bold requests cajo| +24398|636812|24349|3|2|3497.56|0.02|0.04|A|F|1993-05-25|1993-04-05|1993-06-05|COLLECT COD|AIR|lly pending foxes. slowly express pla| +24398|892536|30088|4|32|48911.68|0.03|0.03|A|F|1993-03-29|1993-04-21|1993-04-03|DELIVER IN PERSON|AIR|e the thin, even | +24398|852550|40102|5|8|12020.08|0.03|0.06|A|F|1993-04-01|1993-03-28|1993-04-10|NONE|SHIP|uickly. car| +24398|794270|19301|6|13|17735.12|0.03|0.00|A|F|1993-04-20|1993-03-15|1993-05-07|COLLECT COD|SHIP|counts. re| +24399|572129|47152|1|10|12011.00|0.08|0.02|A|F|1992-09-16|1992-11-02|1992-10-08|NONE|RAIL|leep furiously-- unusual fra| +24399|755328|30359|2|48|66397.92|0.09|0.00|R|F|1992-09-01|1992-11-11|1992-09-25|COLLECT COD|AIR|fully ironic foxes a| +24399|787232|49748|3|42|55406.40|0.08|0.06|A|F|1992-09-01|1992-09-29|1992-09-03|NONE|MAIL|phins haggle carefully alo| +24399|994705|7225|4|17|30594.22|0.08|0.08|R|F|1992-10-30|1992-11-13|1992-11-24|DELIVER IN PERSON|FOB|ctions boost furiously about the care| +24399|3037|3038|5|49|46061.47|0.08|0.06|R|F|1992-12-16|1992-11-17|1993-01-02|DELIVER IN PERSON|FOB|posits. fin| +24424|882243|19795|1|30|36756.00|0.00|0.01|N|O|1996-06-20|1996-05-04|1996-06-28|COLLECT COD|FOB|ously unusual ideas poach carefully. pac| +24424|850078|79|2|32|32896.96|0.00|0.05|N|O|1996-04-01|1996-05-10|1996-04-11|COLLECT COD|TRUCK|bout the ideas. furio| +24425|271982|46993|1|30|58619.10|0.05|0.00|N|O|1996-08-22|1996-08-30|1996-09-15|DELIVER IN PERSON|REG AIR|detect carefully about the | +24425|200674|13179|2|47|74009.02|0.05|0.03|N|O|1996-08-21|1996-08-07|1996-08-23|DELIVER IN PERSON|SHIP|eposits. never unusual deposi| +24425|720050|45079|3|49|52430.98|0.06|0.02|N|O|1996-07-28|1996-09-17|1996-08-12|COLLECT COD|REG AIR|thely final pl| +24425|872618|10170|4|38|60441.66|0.10|0.02|N|O|1996-07-29|1996-09-02|1996-08-14|TAKE BACK RETURN|FOB|lyly express deposit| +24425|80176|17680|5|41|47402.97|0.04|0.00|N|O|1996-10-17|1996-07-26|1996-11-02|COLLECT COD|AIR|. final deposits hi| +24426|660563|35590|1|24|36564.72|0.03|0.03|N|O|1998-03-13|1998-03-30|1998-03-31|NONE|MAIL|y special courts. doggedly dari| +24426|67031|29533|2|19|18962.57|0.09|0.03|N|O|1998-03-16|1998-02-05|1998-03-31|COLLECT COD|FOB|iously. furiously unu| +24426|576068|13602|3|42|48049.68|0.10|0.01|N|O|1998-02-24|1998-03-29|1998-03-20|DELIVER IN PERSON|RAIL|al dolphins. silent, express| +24426|970388|20389|4|30|43750.20|0.10|0.02|N|O|1998-03-03|1998-02-18|1998-03-23|TAKE BACK RETURN|REG AIR|ggle beneath the blithely re| +24427|513266|13267|1|6|7675.44|0.05|0.07|A|F|1994-10-15|1994-11-15|1994-11-10|NONE|REG AIR|e carefully alongs| +24428|918768|31287|1|11|19653.92|0.03|0.03|R|F|1994-12-28|1995-02-25|1995-01-16|COLLECT COD|SHIP|. quickly final asymptotes snooze acros| +24428|728976|28977|2|47|94232.18|0.06|0.06|A|F|1995-04-12|1995-02-02|1995-05-01|NONE|RAIL|silent ideas haggle blith| +24428|889677|39678|3|4|6666.52|0.08|0.06|A|F|1995-01-25|1995-02-12|1995-02-10|NONE|FOB|ironic orbits haggle fluffily. regularly| +24428|791661|41662|4|15|26289.45|0.10|0.03|R|F|1995-02-27|1995-02-15|1995-03-10|NONE|SHIP|according t| +24428|443364|43365|5|22|28761.48|0.06|0.06|A|F|1995-03-16|1995-01-31|1995-03-23|COLLECT COD|AIR|lyly ironic | +24428|605798|18311|6|16|27260.16|0.04|0.07|R|F|1994-12-28|1995-01-28|1995-01-27|NONE|REG AIR|hely express ac| +24429|689241|1755|1|50|61510.50|0.05|0.03|A|F|1995-03-23|1995-02-01|1995-03-29|DELIVER IN PERSON|SHIP|he furiously pending requ| +24429|71583|34085|2|45|69956.10|0.04|0.02|A|F|1995-02-18|1995-02-02|1995-03-20|DELIVER IN PERSON|TRUCK|ial frays might poach a| +24429|87351|24855|3|23|30782.05|0.03|0.07|A|F|1995-01-14|1995-01-27|1995-02-10|COLLECT COD|RAIL|en deposits haggle fluffily after the| +24429|94138|31642|4|14|15849.82|0.01|0.07|A|F|1995-03-06|1995-01-31|1995-03-28|NONE|REG AIR|along the special, busy instruction| +24429|174772|49779|5|3|5540.31|0.04|0.05|R|F|1994-12-28|1995-02-17|1995-01-12|COLLECT COD|TRUCK|nst the quickly reg| +24429|377524|40032|6|24|38436.24|0.10|0.04|A|F|1994-12-28|1995-02-25|1995-01-21|COLLECT COD|TRUCK|tructions boost fluff| +24430|6177|43678|1|10|10831.70|0.03|0.01|N|O|1996-04-05|1996-05-11|1996-04-21|DELIVER IN PERSON|RAIL|kages according to the regular instructio| +24431|98279|10781|1|6|7663.62|0.10|0.01|R|F|1993-01-28|1993-01-12|1993-02-07|TAKE BACK RETURN|SHIP|s use. regular, pending packa| +24456|352182|14690|1|48|59240.16|0.05|0.01|R|F|1994-05-24|1994-04-30|1994-06-13|TAKE BACK RETURN|TRUCK|ndle acros| +24456|114134|26637|2|22|25258.86|0.00|0.06|R|F|1994-06-19|1994-05-01|1994-06-25|DELIVER IN PERSON|SHIP|y bold packages unwind fluffily unusual acc| +24457|963098|38137|1|46|53408.30|0.04|0.03|N|O|1995-12-26|1995-11-14|1996-01-02|COLLECT COD|SHIP|ng pinto beans. blithely unusual accounts a| +24457|781571|19117|2|19|31398.26|0.00|0.03|N|O|1995-12-10|1995-11-10|1995-12-30|COLLECT COD|SHIP| slyly blithely ironic requests. regular fo| +24457|861665|36700|3|9|14639.58|0.00|0.02|N|O|1995-11-27|1995-12-16|1995-12-14|TAKE BACK RETURN|MAIL|haggle carefully slow packages. blithely i| +24457|996152|33710|4|37|46180.07|0.04|0.05|N|O|1995-10-31|1995-12-09|1995-11-19|COLLECT COD|REG AIR|ar packages kind| +24457|325327|25328|5|3|4056.93|0.10|0.04|N|O|1995-11-16|1995-11-15|1995-12-15|COLLECT COD|RAIL|mong the platelet| +24458|408626|21135|1|33|50641.80|0.08|0.02|N|O|1996-11-11|1996-11-21|1996-12-09|COLLECT COD|FOB| wake upon t| +24458|773404|23405|2|40|59094.80|0.04|0.02|N|O|1996-11-27|1996-11-25|1996-12-06|TAKE BACK RETURN|RAIL|ep-- carefully ironic asymptotes| +24458|599451|49452|3|33|51164.19|0.07|0.06|N|O|1996-09-26|1996-10-22|1996-10-04|NONE|RAIL|en packages. | +24459|484272|34273|1|44|55275.00|0.00|0.04|N|O|1995-09-02|1995-07-25|1995-09-14|DELIVER IN PERSON|REG AIR|the blithely regular asymptotes. bl| +24459|159139|46649|2|46|55113.98|0.01|0.00|N|F|1995-06-03|1995-07-08|1995-06-20|TAKE BACK RETURN|SHIP|was. blithely unusual requests impr| +24460|590986|28520|1|15|31154.40|0.00|0.03|R|F|1994-09-09|1994-08-01|1994-10-01|TAKE BACK RETURN|SHIP|ogs wake daringl| +24460|687845|37846|2|15|27492.15|0.07|0.01|R|F|1994-10-15|1994-08-11|1994-10-27|NONE|SHIP|ent instructions cajol| +24460|603925|28950|3|26|47551.14|0.00|0.07|R|F|1994-08-28|1994-08-21|1994-09-14|DELIVER IN PERSON|RAIL|gle slyly deposits. slyly speci| +24460|162705|25209|4|39|68940.30|0.01|0.06|R|F|1994-08-25|1994-07-31|1994-09-01|COLLECT COD|REG AIR|ar pinto beans sleep c| +24460|578140|28141|5|48|58469.76|0.08|0.07|R|F|1994-07-24|1994-08-30|1994-08-19|DELIVER IN PERSON|REG AIR|ets. furiously final attainmen| +24460|784144|46660|6|50|61405.50|0.07|0.02|A|F|1994-08-01|1994-09-04|1994-08-23|TAKE BACK RETURN|MAIL|iously regular | +24461|820907|20908|1|36|65802.96|0.08|0.04|A|F|1992-07-22|1992-08-14|1992-08-20|DELIVER IN PERSON|RAIL|osits along the carefully regular| +24461|983807|21365|2|23|43487.48|0.05|0.07|A|F|1992-07-22|1992-09-17|1992-08-17|DELIVER IN PERSON|SHIP| to the fin| +24461|835826|10859|3|45|79280.10|0.03|0.07|A|F|1992-09-21|1992-08-19|1992-10-06|TAKE BACK RETURN|SHIP|bold packages sublate against t| +24461|718279|18280|4|16|20755.84|0.03|0.03|A|F|1992-10-22|1992-09-13|1992-11-09|COLLECT COD|RAIL|y dinos. unusual pinto be| +24461|106783|31788|5|43|76960.54|0.01|0.03|R|F|1992-10-28|1992-09-06|1992-11-09|COLLECT COD|TRUCK|furiously final foxes integrate furiously| +24461|698976|36516|6|9|17774.46|0.07|0.05|A|F|1992-09-11|1992-08-17|1992-10-08|DELIVER IN PERSON|FOB|es. slyly pending ac| +24462|205828|30837|1|34|58949.54|0.06|0.07|N|O|1998-04-01|1998-05-30|1998-04-18|TAKE BACK RETURN|RAIL| decoys across the furiously final| +24462|345694|33213|2|29|50450.72|0.01|0.02|N|O|1998-04-13|1998-05-26|1998-05-02|TAKE BACK RETURN|SHIP|s. final instruc| +24462|67649|5153|3|3|4849.92|0.05|0.00|N|O|1998-04-18|1998-05-22|1998-05-05|TAKE BACK RETURN|TRUCK|efully blithe accoun| +24462|963335|25855|4|12|16779.48|0.03|0.03|N|O|1998-07-15|1998-05-18|1998-07-21|COLLECT COD|TRUCK|al theodolites. q| +24463|249611|12116|1|46|71787.60|0.02|0.02|R|F|1994-05-09|1994-04-17|1994-05-16|COLLECT COD|TRUCK|ts are. quickly even| +24488|541308|16329|1|18|24287.04|0.05|0.00|R|F|1993-02-18|1993-02-15|1993-03-02|NONE|SHIP| deposits. furious| +24489|265702|40713|1|19|31686.11|0.09|0.03|A|F|1994-04-05|1994-02-20|1994-04-12|COLLECT COD|FOB|he slowly si| +24489|642667|42668|2|24|38631.12|0.04|0.05|R|F|1994-02-13|1994-02-21|1994-03-15|COLLECT COD|TRUCK|hely pending braids. | +24489|301687|26700|3|50|84433.50|0.08|0.07|A|F|1994-01-17|1994-03-13|1994-01-25|NONE|AIR|ly. pending pinto beans d| +24490|293217|30733|1|7|8471.40|0.10|0.08|A|F|1994-01-13|1993-11-25|1994-01-29|COLLECT COD|REG AIR|sly regular | +24490|96699|46700|2|31|52566.39|0.05|0.07|A|F|1994-02-16|1993-12-20|1994-03-11|DELIVER IN PERSON|TRUCK|s. instructions maintain caref| +24490|208979|8980|3|39|73630.44|0.07|0.03|R|F|1994-01-19|1994-01-21|1994-02-09|TAKE BACK RETURN|FOB|ing deposits boost ca| +24490|295551|8057|4|3|4639.62|0.07|0.03|A|F|1993-11-04|1994-01-13|1993-11-06|NONE|RAIL|ts maintain accor| +24490|312514|25021|5|13|19844.50|0.02|0.07|A|F|1993-12-06|1993-12-31|1993-12-29|DELIVER IN PERSON|TRUCK|ess request| +24491|829397|4430|1|24|31832.40|0.04|0.01|R|F|1995-02-28|1995-05-01|1995-03-03|COLLECT COD|RAIL| above the slyly unusual ideas. regular req| +24492|770502|20503|1|21|33021.87|0.01|0.06|R|F|1994-07-25|1994-07-22|1994-08-06|COLLECT COD|FOB|nag. ironic packages haggle fluffily specia| +24492|819695|7244|2|18|29063.70|0.06|0.07|R|F|1994-09-23|1994-08-26|1994-10-18|COLLECT COD|AIR|cajole across the furiously ironic pinto be| +24492|609702|47239|3|49|78971.83|0.07|0.02|R|F|1994-09-06|1994-07-15|1994-09-10|NONE|TRUCK|gular waters. sl| +24493|109696|47203|1|18|30702.42|0.06|0.06|R|F|1995-02-04|1995-04-02|1995-03-05|NONE|RAIL|. carefully express deposit| +24493|650043|44|2|32|31776.32|0.01|0.06|A|F|1995-03-25|1995-03-13|1995-04-08|COLLECT COD|SHIP|usly. regular, unusual asymptotes cajole| +24493|267400|17401|3|39|53328.21|0.09|0.05|A|F|1995-02-03|1995-04-24|1995-02-28|NONE|MAIL|ithely quick ideas grow instructions.| +24493|189005|1509|4|4|4376.00|0.04|0.03|A|F|1995-05-12|1995-03-04|1995-05-21|TAKE BACK RETURN|TRUCK| pending excuses boost blithely bold instr| +24493|596277|33811|5|2|2746.50|0.05|0.04|A|F|1995-04-19|1995-03-29|1995-05-04|COLLECT COD|RAIL|er the carefu| +24493|612086|24599|6|30|29941.50|0.00|0.06|A|F|1995-05-02|1995-03-20|1995-05-20|NONE|SHIP|sits cajole? quickly express requ| +24494|573388|35900|1|24|35072.64|0.05|0.03|R|F|1995-03-11|1995-02-03|1995-03-23|DELIVER IN PERSON|FOB|elets? dinos are blithel| +24494|918871|31390|2|33|62364.39|0.05|0.04|R|F|1995-01-19|1994-12-23|1995-02-04|TAKE BACK RETURN|MAIL|ts thrash a| +24494|460897|10898|3|23|42731.01|0.05|0.07|A|F|1994-12-07|1995-01-29|1995-01-03|NONE|SHIP|express accounts | +24495|781421|43937|1|34|51081.26|0.00|0.01|N|O|1996-09-20|1996-09-17|1996-10-04|NONE|TRUCK|iously above the furiously ironic dep| +24495|333497|21016|2|32|48975.36|0.01|0.02|N|O|1996-11-02|1996-08-26|1996-11-09|DELIVER IN PERSON|TRUCK|y regular requests. carefully special re| +24520|856939|31974|1|13|24646.57|0.08|0.03|N|O|1997-06-25|1997-08-02|1997-07-19|TAKE BACK RETURN|TRUCK|lly express packages. quickly| +24520|572232|34744|2|45|58689.45|0.04|0.07|N|O|1997-09-03|1997-07-09|1997-09-22|COLLECT COD|REG AIR|al courts believe blithely sly| +24520|492954|42955|3|24|46726.32|0.00|0.04|N|O|1997-07-04|1997-07-30|1997-07-11|COLLECT COD|TRUCK|y slyly. careful| +24520|70031|32533|4|11|11011.33|0.08|0.04|N|O|1997-08-01|1997-06-20|1997-08-02|DELIVER IN PERSON|REG AIR|ss Tiresias use doggedl| +24520|999550|49551|5|28|46186.28|0.06|0.07|N|O|1997-09-08|1997-08-07|1997-09-10|TAKE BACK RETURN|RAIL| quickly reg| +24521|261131|23637|1|24|26210.88|0.08|0.08|N|O|1996-03-15|1996-04-12|1996-03-28|TAKE BACK RETURN|AIR| accounts doze against the ca| +24522|358544|46066|1|40|64101.20|0.05|0.01|N|O|1997-07-31|1997-05-23|1997-08-15|COLLECT COD|TRUCK|ly. carefully ironic requests | +24522|41106|3607|2|9|9423.90|0.04|0.03|N|O|1997-06-14|1997-06-06|1997-07-06|NONE|MAIL|ding dolphins. regular ideas use sl| +24522|859810|9811|3|22|38934.94|0.10|0.07|N|O|1997-05-03|1997-07-09|1997-05-08|COLLECT COD|TRUCK|into beans against the e| +24523|233578|21091|1|7|10580.92|0.08|0.07|N|O|1996-03-20|1996-01-29|1996-04-12|COLLECT COD|FOB|its. requests wake| +24523|731584|6613|2|6|9693.30|0.04|0.06|N|O|1996-02-17|1996-03-09|1996-02-26|TAKE BACK RETURN|RAIL|ely unusual| +24524|342352|4859|1|46|64139.64|0.05|0.02|N|O|1998-01-13|1998-02-09|1998-02-01|TAKE BACK RETURN|FOB| instructions about the furiously even | +24524|909113|46668|2|48|53859.36|0.08|0.06|N|O|1998-01-27|1998-02-01|1998-02-26|COLLECT COD|TRUCK|slyly regula| +24524|461473|49001|3|10|14344.50|0.08|0.06|N|O|1998-03-24|1998-02-12|1998-03-26|TAKE BACK RETURN|TRUCK|xcuses sleep. even pinto beans | +24524|972242|9800|4|25|32855.00|0.09|0.04|N|O|1998-03-02|1998-02-08|1998-03-19|COLLECT COD|MAIL|the instructions. request| +24524|469487|44506|5|15|21846.90|0.00|0.02|N|O|1998-02-02|1998-01-25|1998-02-20|COLLECT COD|REG AIR| the slyly fina| +24525|26733|26734|1|49|81326.77|0.06|0.05|N|O|1995-07-28|1995-07-02|1995-08-11|COLLECT COD|SHIP|y ironic accounts doze carefully ac| +24525|290948|15959|2|16|31022.88|0.10|0.05|N|O|1995-07-30|1995-06-21|1995-08-13|TAKE BACK RETURN|MAIL|nag according to the special, i| +24525|948330|23367|3|36|49618.44|0.08|0.06|N|O|1995-08-23|1995-07-11|1995-08-25|DELIVER IN PERSON|RAIL|into beans doubt along th| +24525|569796|44819|4|15|27986.55|0.04|0.02|N|O|1995-06-19|1995-05-27|1995-07-19|TAKE BACK RETURN|MAIL|e. stealthily pendin| +24525|560573|23085|5|3|4900.65|0.06|0.01|A|F|1995-05-08|1995-05-25|1995-05-16|TAKE BACK RETURN|MAIL|ly even depths. carefully pending packages | +24526|713660|38689|1|23|38493.49|0.05|0.04|A|F|1993-01-06|1993-02-14|1993-01-08|TAKE BACK RETURN|REG AIR|bold foxes. blithe| +24526|468887|31397|2|18|33405.48|0.01|0.08|A|F|1993-03-19|1993-01-30|1993-03-25|NONE|RAIL|pinto beans nag slyly. slyly final frets ab| +24526|579084|4107|3|47|54663.82|0.06|0.04|A|F|1993-01-28|1993-02-16|1993-02-13|COLLECT COD|AIR|ackages about the furiously pending packa| +24526|656545|31572|4|12|18018.12|0.03|0.03|A|F|1993-02-08|1993-01-13|1993-02-12|NONE|TRUCK|sits. special platelets hagg| +24526|551142|1143|5|38|45338.56|0.10|0.03|R|F|1993-03-16|1993-02-05|1993-04-03|COLLECT COD|SHIP|ickly even accounts wak| +24526|39876|27377|6|27|49028.49|0.05|0.04|A|F|1993-03-13|1993-02-16|1993-04-07|COLLECT COD|MAIL|e fluffily speci| +24526|180907|18417|7|26|51685.40|0.05|0.08|A|F|1993-01-05|1993-02-03|1993-01-15|TAKE BACK RETURN|SHIP|nic theodolites promise slyly | +24527|488703|1213|1|23|38908.64|0.10|0.03|A|F|1992-08-09|1992-10-24|1992-08-24|TAKE BACK RETURN|RAIL|he carefully regular inst| +24552|271099|46110|1|16|17121.28|0.10|0.02|N|O|1996-10-28|1996-12-25|1996-11-02|TAKE BACK RETURN|MAIL|thely dogged | +24552|359929|22437|2|45|89500.95|0.02|0.04|N|O|1996-11-29|1996-12-15|1996-12-18|COLLECT COD|RAIL|sly regular theodolites pr| +24552|320821|8340|3|31|57096.11|0.07|0.07|N|O|1996-11-03|1996-11-06|1996-11-28|TAKE BACK RETURN|REG AIR|depths. foxes use blithely. regular, exp| +24552|36011|48512|4|33|31251.33|0.00|0.07|N|O|1996-12-26|1996-11-15|1997-01-07|NONE|RAIL|dle slowly special dependencies. blithe| +24552|226166|1175|5|26|28395.90|0.01|0.06|N|O|1997-01-15|1996-12-04|1997-02-14|DELIVER IN PERSON|FOB|blithe, fina| +24552|167529|30033|6|1|1596.52|0.09|0.02|N|O|1996-12-11|1996-12-06|1996-12-20|COLLECT COD|RAIL|latelets: silent, even accounts wake | +24553|354110|29125|1|36|41907.60|0.09|0.01|A|F|1992-03-24|1992-05-12|1992-04-10|COLLECT COD|RAIL|sits haggle among the | +24554|183250|33251|1|19|25331.75|0.06|0.00|N|O|1998-10-22|1998-09-30|1998-11-21|DELIVER IN PERSON|SHIP|boost quickly slyly final requ| +24555|557189|19701|1|39|48600.24|0.06|0.01|R|F|1993-12-01|1993-10-04|1993-12-22|TAKE BACK RETURN|FOB|iously ironic pack| +24555|659935|47475|2|12|22738.80|0.08|0.08|A|F|1993-11-01|1993-11-24|1993-11-04|NONE|AIR|gle accounts.| +24555|519636|7167|3|48|79469.28|0.08|0.00|R|F|1993-10-19|1993-10-24|1993-10-25|COLLECT COD|RAIL|packages cajole regular, ironic accounts. | +24555|518970|18971|4|44|87513.80|0.08|0.07|A|F|1993-11-15|1993-10-17|1993-11-17|DELIVER IN PERSON|TRUCK| fluffily pending theodo| +24556|510901|35922|1|21|40149.48|0.05|0.05|R|F|1993-11-07|1993-11-24|1993-11-13|COLLECT COD|SHIP|lar packages hinder carefully ca| +24556|707154|19669|2|40|46444.80|0.09|0.05|R|F|1993-10-09|1993-11-09|1993-10-29|TAKE BACK RETURN|RAIL| blithely pinto beans: theodolites sl| +24556|123826|48831|3|13|24047.66|0.07|0.06|R|F|1994-01-03|1993-10-20|1994-01-28|TAKE BACK RETURN|AIR|sly above th| +24556|129643|42146|4|33|55197.12|0.07|0.00|R|F|1993-09-24|1993-11-23|1993-10-06|NONE|MAIL|s sleep careful| +24557|468614|18615|1|18|28486.62|0.06|0.00|N|O|1996-07-02|1996-07-17|1996-07-11|COLLECT COD|SHIP|atelets haggle blithely final package| +24557|984285|34286|2|9|12323.16|0.01|0.08|N|O|1996-08-04|1996-07-21|1996-08-26|TAKE BACK RETURN|FOB|into beans. regular,| +24557|873429|23430|3|4|5609.52|0.09|0.04|N|O|1996-07-03|1996-08-06|1996-07-18|TAKE BACK RETURN|RAIL|furiously | +24557|711324|36353|4|14|18694.06|0.02|0.06|N|O|1996-06-27|1996-07-24|1996-07-15|COLLECT COD|AIR|al asymptotes. regular foxes are. fu| +24557|216624|29129|5|36|55461.96|0.02|0.00|N|O|1996-06-01|1996-07-17|1996-06-18|TAKE BACK RETURN|AIR|s accounts along the ev| +24557|797960|47961|6|21|43216.53|0.03|0.01|N|O|1996-06-05|1996-06-25|1996-06-30|NONE|RAIL|ests affix blithely. blithely | +24558|100595|38102|1|31|49463.29|0.07|0.03|A|F|1993-03-07|1993-04-20|1993-04-02|NONE|RAIL| ironic requests. | +24558|696100|33640|2|47|51515.29|0.06|0.05|R|F|1993-04-30|1993-03-25|1993-05-29|DELIVER IN PERSON|FOB|s platelets among the pending platelets ar| +24558|343225|18238|3|43|54533.03|0.09|0.02|A|F|1993-02-27|1993-03-15|1993-03-10|TAKE BACK RETURN|SHIP|eposits. some| +24559|350415|25430|1|8|11723.20|0.03|0.01|N|O|1996-01-29|1996-02-20|1996-02-16|COLLECT COD|SHIP|eas. final, regu| +24559|422580|10105|2|40|60102.40|0.04|0.03|N|O|1996-04-17|1996-04-14|1996-05-03|DELIVER IN PERSON|SHIP|press, fin| +24559|290105|27621|3|31|33947.79|0.08|0.08|N|O|1996-01-29|1996-03-21|1996-02-05|COLLECT COD|AIR|permanently silent pinto beans cajole quic| +24559|791970|17001|4|8|16495.52|0.05|0.02|N|O|1996-03-27|1996-03-26|1996-04-19|COLLECT COD|FOB|s run slyly deposi| +24559|623990|49015|5|37|70816.52|0.00|0.02|N|O|1996-02-11|1996-03-25|1996-02-16|TAKE BACK RETURN|SHIP|e slyly. slyly sp| +24584|850817|13335|1|31|54800.87|0.04|0.08|R|F|1993-09-04|1993-10-19|1993-09-28|DELIVER IN PERSON|AIR| requests. deposits wake qui| +24584|680552|18092|2|40|61300.80|0.06|0.03|A|F|1993-12-06|1993-10-15|1993-12-28|DELIVER IN PERSON|AIR|egular accoun| +24584|25945|946|3|2|3741.88|0.08|0.03|R|F|1993-09-15|1993-11-14|1993-09-16|TAKE BACK RETURN|RAIL|s haggle. caref| +24584|42618|5119|4|28|43697.08|0.07|0.03|R|F|1993-11-07|1993-11-24|1993-12-05|COLLECT COD|FOB|riously bold re| +24584|279779|29780|5|46|80902.96|0.05|0.08|A|F|1993-10-15|1993-11-21|1993-11-09|TAKE BACK RETURN|MAIL| deposits. regular, regular asymptotes | +24584|236886|24399|6|22|40103.14|0.03|0.04|R|F|1993-09-08|1993-10-11|1993-10-02|DELIVER IN PERSON|AIR|affix ironi| +24585|288861|13872|1|28|51795.80|0.07|0.03|A|F|1994-10-13|1994-10-13|1994-10-14|TAKE BACK RETURN|REG AIR|g to the enticingly ironic p| +24585|877759|15311|2|45|78151.95|0.02|0.02|R|F|1994-11-11|1994-10-30|1994-11-28|COLLECT COD|RAIL|ously about the unusual pac| +24585|481179|43689|3|26|30163.90|0.04|0.06|A|F|1994-11-08|1994-10-21|1994-11-18|TAKE BACK RETURN|AIR|posits haggle. | +24585|174602|12112|4|25|41915.00|0.03|0.00|R|F|1994-09-23|1994-12-09|1994-10-10|COLLECT COD|REG AIR|dolites sleep furiously. ironi| +24585|529916|42427|5|43|83673.27|0.10|0.00|R|F|1994-09-17|1994-11-09|1994-10-03|NONE|FOB|y bold ideas nod ab| +24585|281462|18978|6|24|34642.80|0.10|0.05|A|F|1994-09-26|1994-10-25|1994-10-21|COLLECT COD|TRUCK|ly ironic reque| +24585|520907|8438|7|17|32773.96|0.03|0.08|A|F|1994-10-11|1994-10-28|1994-10-26|TAKE BACK RETURN|TRUCK|aggle carefully. i| +24586|874150|11702|1|14|15737.54|0.08|0.08|R|F|1994-10-19|1994-11-03|1994-11-09|NONE|REG AIR|cross the special reques| +24586|831349|18898|2|13|16643.90|0.04|0.07|A|F|1995-01-12|1994-11-03|1995-01-22|NONE|SHIP|lyly final, bold platelets| +24586|476872|1891|3|29|53616.65|0.09|0.01|A|F|1995-01-01|1994-12-29|1995-01-13|DELIVER IN PERSON|AIR|ges. ironic| +24586|778386|40902|4|34|49787.90|0.10|0.05|A|F|1994-11-04|1994-12-02|1994-11-06|NONE|TRUCK|. furiously | +24586|317482|17483|5|23|34487.81|0.08|0.05|A|F|1994-11-02|1994-12-14|1994-11-08|DELIVER IN PERSON|REG AIR|fluffily final packages nag carefull| +24586|903193|40748|6|7|8373.05|0.02|0.00|R|F|1994-10-30|1994-11-24|1994-11-18|COLLECT COD|SHIP|lyly. slyly pending theodo| +24586|957476|7477|7|50|76671.50|0.09|0.06|R|F|1995-01-16|1994-12-18|1995-02-13|COLLECT COD|REG AIR| accounts among the| +24587|294520|32036|1|22|33319.22|0.04|0.01|R|F|1993-06-17|1993-04-12|1993-06-21|COLLECT COD|MAIL|ackages sleep furiously accordin| +24588|144478|6981|1|6|9134.82|0.04|0.01|N|O|1997-04-17|1997-05-20|1997-04-27|DELIVER IN PERSON|AIR|ithely iron| +24588|228462|15975|2|4|5561.80|0.08|0.03|N|O|1997-05-31|1997-06-07|1997-06-24|TAKE BACK RETURN|MAIL|y about the carefully | +24588|759191|46737|3|13|16252.08|0.06|0.00|N|O|1997-08-05|1997-07-13|1997-08-14|NONE|RAIL|gular excuses. eve| +24588|719244|31759|4|16|20211.36|0.10|0.05|N|O|1997-05-23|1997-07-08|1997-06-06|TAKE BACK RETURN|TRUCK| fluffily | +24589|650794|38334|1|35|61066.60|0.09|0.05|N|O|1996-12-11|1996-10-26|1996-12-16|NONE|AIR|s. pending depos| +24589|879798|4833|2|26|46221.50|0.01|0.07|N|O|1996-10-17|1996-12-17|1996-11-08|TAKE BACK RETURN|TRUCK|ly special packages. bl| +24589|754580|4581|3|7|11441.85|0.03|0.07|N|O|1997-01-07|1996-11-13|1997-01-25|NONE|AIR|unts cajole ironically e| +24590|541061|3572|1|3|3306.12|0.02|0.08|N|O|1995-08-17|1995-09-20|1995-08-18|COLLECT COD|AIR|oxes wake according to the regular accou| +24590|602613|15126|2|22|33342.76|0.04|0.05|N|O|1995-10-05|1995-10-26|1995-10-18|NONE|AIR| final excuses. spec| +24590|101141|38648|3|12|13705.68|0.02|0.02|N|O|1995-10-01|1995-09-20|1995-10-13|NONE|RAIL|ages haggle around the blithely r| +24590|864050|39085|4|32|32448.32|0.06|0.03|N|O|1995-07-30|1995-10-08|1995-08-09|COLLECT COD|SHIP|ular requests sleep fluffily blithe| +24590|75936|38438|5|42|80301.06|0.04|0.01|N|O|1995-11-20|1995-09-08|1995-12-04|TAKE BACK RETURN|REG AIR|cuses. carefully unusual requests in| +24590|254480|29491|6|4|5737.88|0.03|0.04|N|O|1995-11-18|1995-09-06|1995-12-02|TAKE BACK RETURN|MAIL|ly bold pinto beans along the fina| +24591|188487|38488|1|42|66170.16|0.01|0.06|A|F|1994-06-25|1994-08-13|1994-07-19|COLLECT COD|MAIL|xes sleep blithely. slow, reg| +24591|896250|46251|2|11|13708.31|0.03|0.08|A|F|1994-09-19|1994-08-18|1994-10-12|DELIVER IN PERSON|FOB|ronic packages pla| +24591|260652|10653|3|42|67730.88|0.09|0.06|A|F|1994-08-06|1994-08-23|1994-08-20|TAKE BACK RETURN|SHIP|lar theodolites. fluffily spe| +24591|771484|34000|4|45|69995.25|0.08|0.01|R|F|1994-08-08|1994-07-31|1994-08-24|NONE|AIR|ic foxes above the slyly final | +24591|327238|14757|5|40|50608.80|0.08|0.00|A|F|1994-09-11|1994-07-19|1994-09-15|NONE|TRUCK|final requests c| +24591|874747|12299|6|43|74033.10|0.03|0.00|A|F|1994-10-02|1994-09-09|1994-10-30|DELIVER IN PERSON|RAIL|usual packages.| +24591|860599|35634|7|35|54584.25|0.05|0.01|A|F|1994-09-18|1994-09-09|1994-10-06|TAKE BACK RETURN|REG AIR|oxes cajole carefully ironically unu| +24616|74706|24707|1|36|60505.20|0.00|0.03|A|F|1992-10-13|1992-10-13|1992-10-18|COLLECT COD|MAIL|are furiously atop the unusual deposi| +24616|575013|36|2|10|10879.90|0.00|0.00|R|F|1992-10-15|1992-09-07|1992-10-18|TAKE BACK RETURN|REG AIR|accounts boost along| +24616|243387|18396|3|37|49223.69|0.03|0.05|A|F|1992-09-12|1992-09-26|1992-09-18|DELIVER IN PERSON|FOB|y Tiresias. slyly regular foxe| +24617|231662|31663|1|36|57371.40|0.10|0.03|N|O|1998-09-02|1998-09-08|1998-09-18|COLLECT COD|FOB|rts. packages are furiously regular| +24617|531795|31796|2|39|71244.03|0.07|0.03|N|O|1998-08-19|1998-09-18|1998-09-06|COLLECT COD|TRUCK|te slyly fluffily even reques| +24617|874088|11640|3|22|23364.88|0.02|0.04|N|O|1998-11-09|1998-09-03|1998-11-20|DELIVER IN PERSON|MAIL| pinto beans grow blithely. ironic p| +24617|794927|19958|4|48|97050.72|0.03|0.02|N|O|1998-07-30|1998-08-27|1998-08-24|TAKE BACK RETURN|MAIL|ts will have to maintain always| +24617|322202|22203|5|34|41622.46|0.09|0.01|N|O|1998-10-14|1998-10-10|1998-11-06|DELIVER IN PERSON|AIR|e among the final requests. fi| +24617|232383|7392|6|9|11838.33|0.06|0.06|N|O|1998-10-13|1998-08-27|1998-11-01|DELIVER IN PERSON|MAIL|gle furiously. carefully ironic foxe| +24617|656461|6462|7|41|58114.63|0.06|0.04|N|O|1998-11-15|1998-10-03|1998-11-23|TAKE BACK RETURN|RAIL|ic requests. idle pinto beans br| +24618|136244|48747|1|31|39687.44|0.02|0.01|A|F|1993-04-06|1993-05-07|1993-04-27|TAKE BACK RETURN|MAIL|lites cajo| +24618|849308|24341|2|28|35203.28|0.04|0.03|R|F|1993-06-15|1993-04-13|1993-07-05|DELIVER IN PERSON|RAIL|ely ironic foxes poach furiously quick w| +24618|317128|29635|3|50|57255.50|0.06|0.01|R|F|1993-04-14|1993-06-03|1993-04-24|NONE|FOB|y regular deposits. instructions| +24618|965953|28473|4|12|24226.92|0.08|0.08|R|F|1993-04-24|1993-04-19|1993-05-05|TAKE BACK RETURN|MAIL|y regular packages | +24618|760635|48181|5|48|81388.80|0.06|0.04|A|F|1993-06-12|1993-04-26|1993-06-24|DELIVER IN PERSON|MAIL|mise permanently slyly regul| +24618|984996|10035|6|5|10404.75|0.05|0.07|A|F|1993-03-17|1993-06-10|1993-03-25|COLLECT COD|RAIL|into beans. boldly final packages nag. dep| +24619|64125|39128|1|10|10891.20|0.02|0.06|N|O|1997-01-24|1997-03-17|1997-02-22|DELIVER IN PERSON|MAIL|d, ironic platelets ca| +24619|743195|18224|2|45|55717.20|0.05|0.08|N|O|1997-04-18|1997-03-13|1997-05-13|COLLECT COD|SHIP|unts detect blithely among th| +24619|863597|1149|3|27|42134.85|0.08|0.05|N|O|1997-03-10|1997-03-07|1997-03-24|COLLECT COD|FOB|gside of the carefully special ideas. sl| +24619|464518|27028|4|20|29649.80|0.02|0.06|N|O|1997-03-08|1997-03-21|1997-04-05|TAKE BACK RETURN|RAIL|beans use quickly across | +24619|151688|26695|5|37|64368.16|0.10|0.05|N|O|1997-01-10|1997-03-14|1997-01-28|COLLECT COD|FOB|accounts are blithely| +24619|419759|32268|6|23|38610.79|0.10|0.00|N|O|1997-02-06|1997-03-19|1997-02-09|NONE|FOB|s regular accounts x-ray. | +24620|111013|11014|1|36|36864.36|0.10|0.03|N|O|1996-01-21|1995-11-21|1996-02-11|COLLECT COD|AIR| busy requ| +24621|973604|23605|1|21|35228.76|0.07|0.07|A|F|1994-05-15|1994-04-10|1994-06-05|TAKE BACK RETURN|TRUCK|ding to the even deposi| +24621|360506|35521|2|40|62659.60|0.01|0.07|A|F|1994-03-22|1994-04-20|1994-04-19|COLLECT COD|RAIL|arefully regular dependencie| +24621|14641|39642|3|45|70003.80|0.06|0.06|R|F|1994-05-16|1994-03-31|1994-06-07|TAKE BACK RETURN|TRUCK|he carefully even accounts.| +24621|55783|43287|4|48|83461.44|0.07|0.07|R|F|1994-04-03|1994-03-30|1994-04-05|TAKE BACK RETURN|REG AIR|uctions. furiousl| +24622|391888|16903|1|7|13859.09|0.00|0.02|A|F|1995-04-11|1995-04-15|1995-04-13|COLLECT COD|RAIL|al notornis. slowly sp| +24622|458623|46151|2|43|68008.80|0.02|0.06|A|F|1995-05-07|1995-03-05|1995-05-11|NONE|REG AIR| slyly bold theodolites wake blit| +24623|170599|45606|1|19|31722.21|0.00|0.07|N|O|1998-05-15|1998-06-25|1998-06-13|COLLECT COD|TRUCK|kages after the dependencies use | +24648|21001|33502|1|35|32270.00|0.10|0.06|R|F|1994-04-08|1994-06-07|1994-05-04|NONE|MAIL|manent accoun| +24648|962758|37797|2|44|80111.24|0.01|0.06|A|F|1994-06-04|1994-06-05|1994-06-17|COLLECT COD|REG AIR|e deposits. ideas cajol| +24648|68893|6397|3|33|61442.37|0.03|0.03|R|F|1994-04-14|1994-05-06|1994-04-28|COLLECT COD|FOB|odolites doubt. furiously ironi| +24648|878579|28580|4|47|73203.91|0.06|0.03|A|F|1994-04-16|1994-05-29|1994-05-08|TAKE BACK RETURN|RAIL|urious packages haggle sly| +24648|270139|32645|5|7|7763.84|0.04|0.00|R|F|1994-05-11|1994-05-27|1994-05-18|NONE|SHIP|arefully express accounts boost! | +24649|144242|31749|1|20|25724.80|0.03|0.04|N|O|1997-05-09|1997-05-31|1997-05-26|COLLECT COD|TRUCK|eep furiously carefully u| +24649|273047|35553|2|24|24480.72|0.03|0.04|N|O|1997-07-09|1997-07-06|1997-07-27|COLLECT COD|REG AIR|dolites. furiously | +24649|87215|49717|3|37|44481.77|0.03|0.07|N|O|1997-06-02|1997-06-16|1997-06-24|NONE|AIR|ular accounts | +24650|489937|39938|1|29|55880.39|0.04|0.03|N|O|1997-03-08|1997-05-29|1997-03-16|DELIVER IN PERSON|SHIP|osits sleep. quick, final requests affix | +24650|367351|42366|2|2|2836.68|0.01|0.02|N|O|1997-05-19|1997-05-16|1997-06-04|DELIVER IN PERSON|FOB|ely even accounts. silent deposits u| +24651|934689|34690|1|41|70669.24|0.07|0.02|A|F|1994-10-21|1994-11-20|1994-11-11|NONE|AIR|g packages. fluffily bold| +24651|306108|31121|2|21|23395.89|0.03|0.00|A|F|1994-10-08|1994-12-02|1994-11-02|NONE|RAIL|less instructions cajole | +24651|742230|4745|3|6|7633.20|0.10|0.03|A|F|1995-01-11|1994-12-05|1995-02-03|NONE|SHIP|atelets-- regular asymptotes abov| +24651|649935|24960|4|6|11309.40|0.06|0.05|A|F|1994-12-05|1994-10-28|1995-01-01|DELIVER IN PERSON|MAIL| requests believe carefully. even the| +24651|443418|18435|5|8|10891.12|0.07|0.04|R|F|1994-10-24|1994-10-28|1994-11-08|DELIVER IN PERSON|FOB|nto beans. theodol| +24651|518251|5782|6|36|45692.28|0.03|0.00|A|F|1994-11-01|1994-11-30|1994-11-07|NONE|RAIL|ses. slyly expr| +24652|446940|9449|1|33|62268.36|0.09|0.07|R|F|1994-10-29|1994-09-23|1994-11-08|DELIVER IN PERSON|FOB| bold accounts. fluffily | +24652|714514|39543|2|25|38212.00|0.06|0.03|R|F|1994-09-11|1994-10-15|1994-09-21|TAKE BACK RETURN|RAIL|sleep furiously a| +24652|821259|8808|3|49|57830.29|0.04|0.01|R|F|1994-07-28|1994-08-30|1994-08-12|TAKE BACK RETURN|RAIL|ncies wake blithely against the ac| +24652|888795|13830|4|5|8918.75|0.09|0.04|R|F|1994-10-01|1994-10-07|1994-10-24|DELIVER IN PERSON|REG AIR|, regular instructions. bold, ironic theo| +24653|46836|9337|1|8|14262.64|0.06|0.08|N|O|1996-07-08|1996-05-30|1996-08-02|TAKE BACK RETURN|RAIL|r hockey players snooze ag| +24653|164058|14059|2|16|17952.80|0.01|0.00|N|O|1996-04-27|1996-05-05|1996-04-30|COLLECT COD|AIR|accounts maintain quick| +24653|321717|9236|3|25|43467.50|0.00|0.08|N|O|1996-05-18|1996-05-28|1996-06-05|TAKE BACK RETURN|FOB|elets are fluffily. fluffily spec| +24653|95706|8208|4|18|30630.60|0.06|0.03|N|O|1996-07-04|1996-05-08|1996-07-18|COLLECT COD|REG AIR|frets. ironic, | +24653|526556|14087|5|21|33233.13|0.10|0.03|N|O|1996-06-06|1996-06-06|1996-06-19|COLLECT COD|REG AIR|hins. furiously even requests hinder. sp| +24653|818630|6179|6|46|71235.14|0.04|0.06|N|O|1996-04-10|1996-04-26|1996-05-07|DELIVER IN PERSON|REG AIR|ncies. quickly bold instruc| +24653|698304|23331|7|40|52090.80|0.05|0.00|N|O|1996-03-27|1996-05-29|1996-04-25|COLLECT COD|FOB|es hang regular requ| +24654|391520|16535|1|37|59625.87|0.10|0.03|R|F|1995-01-27|1995-02-27|1995-02-09|TAKE BACK RETURN|RAIL|s. express,| +24654|266846|16847|2|25|45320.75|0.10|0.07|R|F|1995-03-26|1995-01-28|1995-04-21|DELIVER IN PERSON|TRUCK|y unusual accounts wake: i| +24654|872432|34950|3|43|60388.77|0.09|0.01|R|F|1995-02-14|1995-02-14|1995-02-19|COLLECT COD|RAIL|efully. packages nag stealthily blithe| +24654|960969|23489|4|18|36538.56|0.01|0.01|A|F|1994-12-18|1995-02-03|1995-01-13|NONE|TRUCK|. carefully final ideas are quickly alon| +24655|151793|1794|1|4|7379.16|0.05|0.01|N|O|1998-06-06|1998-06-06|1998-06-28|TAKE BACK RETURN|RAIL|eas after the even escap| +24655|173398|23399|2|9|13242.51|0.08|0.04|N|O|1998-06-01|1998-06-07|1998-06-04|TAKE BACK RETURN|TRUCK|ecial, regular excus| +24655|291551|41552|3|24|37020.96|0.06|0.02|N|O|1998-06-08|1998-07-31|1998-06-09|NONE|RAIL| the carefully pend| +24680|537762|37763|1|47|84587.78|0.08|0.00|A|F|1995-05-19|1995-05-25|1995-05-29|TAKE BACK RETURN|RAIL| express i| +24681|37952|37953|1|30|56698.50|0.09|0.08|N|O|1995-07-23|1995-06-25|1995-08-17|TAKE BACK RETURN|FOB|osits. regular instr| +24681|849072|36621|2|41|41862.23|0.07|0.04|R|F|1995-05-05|1995-06-06|1995-06-04|DELIVER IN PERSON|RAIL|uriously regul| +24681|339055|39056|3|12|13128.48|0.09|0.07|R|F|1995-05-14|1995-05-07|1995-06-07|NONE|RAIL| across the| +24681|492080|4590|4|17|18225.02|0.04|0.02|A|F|1995-04-27|1995-05-06|1995-05-02|TAKE BACK RETURN|AIR|final pinto beans. | +24681|375811|826|5|18|33962.40|0.05|0.00|N|F|1995-06-12|1995-05-15|1995-07-05|TAKE BACK RETURN|MAIL|olites. ironic excuses sleep| +24681|250791|792|6|35|60962.30|0.03|0.07|N|O|1995-07-31|1995-06-06|1995-08-24|COLLECT COD|FOB|rs nag blithely entic| +24682|80347|42849|1|36|47784.24|0.08|0.00|R|F|1992-05-18|1992-07-11|1992-06-12|DELIVER IN PERSON|MAIL|gular accounts. blithely special r| +24682|388174|13189|2|15|18932.40|0.00|0.00|A|F|1992-05-14|1992-08-02|1992-05-30|DELIVER IN PERSON|TRUCK|nto beans boost carefully agains| +24682|37795|12796|3|13|22526.27|0.03|0.04|A|F|1992-07-15|1992-07-27|1992-08-13|NONE|REG AIR| pending depo| +24683|904272|4273|1|11|14038.53|0.10|0.05|N|F|1995-06-08|1995-04-20|1995-06-26|DELIVER IN PERSON|SHIP|the furiously unusual requests cajole q| +24683|95744|33248|2|41|71329.34|0.03|0.01|R|F|1995-04-06|1995-05-15|1995-04-21|TAKE BACK RETURN|RAIL|olites? ironic ide| +24683|167716|30220|3|29|51727.59|0.01|0.07|R|F|1995-03-24|1995-05-02|1995-04-15|TAKE BACK RETURN|TRUCK|eep carefully after the silent excu| +24683|788848|13879|4|7|13557.67|0.05|0.04|N|O|1995-07-15|1995-04-21|1995-07-27|NONE|REG AIR|eposits. expre| +24683|153114|40624|5|14|16339.54|0.07|0.01|R|F|1995-04-12|1995-06-03|1995-05-07|DELIVER IN PERSON|REG AIR|leep blithely quickly final theod| +24683|386277|48785|6|3|4089.78|0.01|0.03|R|F|1995-05-08|1995-06-11|1995-06-03|TAKE BACK RETURN|TRUCK|xpress, expr| +24684|665854|3394|1|12|21837.84|0.10|0.06|R|F|1995-03-06|1995-04-08|1995-03-10|TAKE BACK RETURN|MAIL|equests. final, unusual excuses are| +24684|997063|47064|2|39|45240.78|0.01|0.07|R|F|1995-03-16|1995-05-03|1995-04-13|COLLECT COD|AIR|e regular, unusual requests.| +24684|625902|38415|3|37|67631.19|0.04|0.07|A|F|1995-04-22|1995-04-03|1995-04-27|DELIVER IN PERSON|MAIL|ccounts. fu| +24684|529009|29010|4|45|46709.10|0.03|0.01|R|F|1995-04-03|1995-03-25|1995-04-22|TAKE BACK RETURN|SHIP|eposits above the| +24684|37949|450|5|9|16982.46|0.05|0.05|R|F|1995-05-09|1995-04-21|1995-05-12|NONE|TRUCK|ets sleep carefully carefully pe| +24684|792487|30033|6|13|20532.85|0.07|0.08|R|F|1995-02-11|1995-03-22|1995-02-13|NONE|TRUCK|quests are carefully. qu| +24685|465600|15601|1|15|23483.70|0.00|0.04|R|F|1992-07-12|1992-06-27|1992-07-25|TAKE BACK RETURN|AIR| silently bold packages. bold p| +24686|385462|22984|1|27|41781.15|0.07|0.04|N|O|1996-09-15|1996-11-26|1996-10-10|DELIVER IN PERSON|MAIL|ending, final foxes. blithely pen| +24686|444898|44899|2|25|46071.75|0.10|0.02|N|O|1996-12-11|1996-11-05|1996-12-23|TAKE BACK RETURN|MAIL|s instructions. s| +24686|384920|22442|3|2|4009.82|0.10|0.08|N|O|1996-11-10|1996-10-12|1996-11-29|DELIVER IN PERSON|AIR|rding to th| +24686|335810|35811|4|17|31378.60|0.10|0.07|N|O|1996-10-25|1996-10-16|1996-11-07|TAKE BACK RETURN|FOB| cajole slyly; stealthily bo| +24687|378801|16323|1|43|80830.97|0.03|0.00|R|F|1994-09-29|1994-10-17|1994-10-25|DELIVER IN PERSON|FOB|o beans haggle furiously. bravely| +24687|495228|32756|2|13|15901.60|0.08|0.06|A|F|1994-11-11|1994-11-24|1994-12-02|NONE|MAIL|eas are slyly. permanently regular packa| +24687|291123|16134|3|43|47906.73|0.03|0.02|R|F|1994-11-25|1994-11-03|1994-12-24|DELIVER IN PERSON|TRUCK| furiously alongside of the quickly regular| +24712|473152|48171|1|38|42754.94|0.09|0.07|R|F|1992-04-12|1992-04-14|1992-05-09|DELIVER IN PERSON|MAIL|y ironic foxes| +24712|251330|13836|2|8|10250.56|0.03|0.00|A|F|1992-02-18|1992-03-27|1992-03-05|COLLECT COD|AIR|e blithely | +24712|97425|9927|3|28|39827.76|0.07|0.07|R|F|1992-03-10|1992-04-14|1992-03-25|NONE|AIR|s wake final, bold instructions| +24712|414687|39704|4|33|52854.78|0.07|0.02|A|F|1992-05-16|1992-05-02|1992-06-02|COLLECT COD|AIR|, ironic accou| +24712|631503|19040|5|28|40165.16|0.09|0.03|A|F|1992-02-17|1992-03-24|1992-03-09|TAKE BACK RETURN|RAIL|usly regular theodolites| +24712|660007|22521|6|45|43513.65|0.10|0.02|R|F|1992-05-03|1992-04-01|1992-05-11|NONE|AIR|its nag blithely. bravely pendi| +24712|735666|10695|7|19|32330.97|0.10|0.08|A|F|1992-03-30|1992-04-05|1992-04-18|DELIVER IN PERSON|SHIP|pending requests p| +24713|334341|9354|1|27|37133.91|0.10|0.03|N|O|1997-05-30|1997-06-13|1997-06-27|DELIVER IN PERSON|FOB|ets. foxes promise quickly fi| +24713|255945|43461|2|47|89343.71|0.08|0.00|N|O|1997-09-08|1997-08-01|1997-10-06|NONE|FOB|sheaves snooze special theodolites. fur| +24713|661127|11128|3|46|50052.14|0.02|0.02|N|O|1997-07-28|1997-08-05|1997-08-04|NONE|FOB|ular requests. slyly regular packages | +24713|556347|43881|4|14|19646.48|0.10|0.05|N|O|1997-07-22|1997-06-25|1997-08-02|COLLECT COD|AIR|ly final reques| +24713|513436|967|5|26|37684.66|0.04|0.04|N|O|1997-08-07|1997-06-28|1997-08-25|TAKE BACK RETURN|SHIP|lly among the slyly spe| +24713|311443|11444|6|8|11635.44|0.00|0.08|N|O|1997-06-19|1997-08-06|1997-06-25|NONE|TRUCK|carefully. ironic asymptotes run furiousl| +24714|487996|37997|1|40|79358.80|0.08|0.01|N|O|1997-05-18|1997-06-20|1997-05-19|DELIVER IN PERSON|MAIL|olites haggle blithely bl| +24714|747616|22645|2|21|34935.18|0.05|0.02|N|O|1997-05-04|1997-07-22|1997-05-10|DELIVER IN PERSON|FOB|ackages. bold,| +24714|169534|19535|3|24|38484.72|0.03|0.02|N|O|1997-05-05|1997-06-20|1997-05-20|TAKE BACK RETURN|RAIL|final packages serve. quickly ironic att| +24714|344175|44176|4|44|53643.04|0.03|0.03|N|O|1997-07-31|1997-08-01|1997-08-19|NONE|FOB|final forges x-ray furio| +24714|540231|15252|5|12|15254.52|0.10|0.08|N|O|1997-06-20|1997-07-03|1997-07-09|COLLECT COD|AIR|ecial requests are quickly. quickly ex| +24714|660531|48071|6|48|71592.00|0.00|0.03|N|O|1997-07-04|1997-06-04|1997-08-01|COLLECT COD|TRUCK|old accounts af| +24714|528436|40947|7|44|64434.04|0.05|0.07|N|O|1997-08-09|1997-07-10|1997-09-07|DELIVER IN PERSON|MAIL| cajole. fluffily even courts nag furiously| +24715|408564|21073|1|3|4417.62|0.08|0.05|N|O|1998-04-11|1998-02-16|1998-04-20|NONE|REG AIR|old ideas. blit| +24715|723325|10868|2|2|2696.58|0.04|0.06|N|O|1998-04-05|1998-02-12|1998-05-03|TAKE BACK RETURN|MAIL| even hockey players wake| +24715|911341|23860|3|20|27046.00|0.05|0.06|N|O|1998-02-10|1998-02-28|1998-02-20|DELIVER IN PERSON|AIR|ar deposits along th| +24715|892235|17270|4|47|57677.93|0.05|0.05|N|O|1998-04-05|1998-03-23|1998-04-28|DELIVER IN PERSON|TRUCK|ely dogged theodolites. blithel| +24715|780092|5123|5|33|38677.98|0.04|0.01|N|O|1998-01-06|1998-03-12|1998-01-30|TAKE BACK RETURN|RAIL|leep daringly around | +24715|996867|21906|6|18|35348.76|0.03|0.02|N|O|1998-02-16|1998-03-29|1998-03-06|NONE|SHIP|cording to the carefu| +24716|414026|39043|1|37|34780.00|0.00|0.07|N|O|1996-03-09|1996-03-21|1996-03-22|TAKE BACK RETURN|TRUCK| accounts. spec| +24716|522347|9878|2|8|10954.56|0.06|0.08|N|O|1996-04-25|1996-03-12|1996-05-25|TAKE BACK RETURN|TRUCK|fully special ideas. ironic pinto beans | +24716|83552|8555|3|38|58350.90|0.10|0.03|N|O|1996-04-09|1996-04-30|1996-04-24|COLLECT COD|FOB|quickly about the slyly regular| +24716|249866|24875|4|30|54475.50|0.05|0.06|N|O|1996-04-03|1996-05-03|1996-04-19|DELIVER IN PERSON|FOB| final requests are blithely. acco| +24716|487282|49792|5|41|52039.66|0.01|0.03|N|O|1996-04-08|1996-03-08|1996-04-22|DELIVER IN PERSON|MAIL|quests haggle carefully after t| +24717|981772|19330|1|36|66734.28|0.08|0.02|A|F|1992-07-21|1992-08-14|1992-07-27|TAKE BACK RETURN|AIR|ns wake sl| +24717|633348|33349|2|43|55096.33|0.03|0.04|A|F|1992-06-29|1992-07-23|1992-07-16|TAKE BACK RETURN|TRUCK|, final requests. regular a| +24717|669585|7125|3|14|21763.70|0.10|0.05|A|F|1992-09-14|1992-08-05|1992-10-08|DELIVER IN PERSON|SHIP|always. deposits after th| +24717|707545|20060|4|9|13972.59|0.04|0.05|A|F|1992-09-09|1992-08-06|1992-09-28|TAKE BACK RETURN|REG AIR|oss the carefully | +24717|697099|9613|5|2|2192.12|0.08|0.01|R|F|1992-08-05|1992-08-14|1992-08-12|NONE|RAIL|g silently special, blithe foxe| +24717|139451|39452|6|32|47694.40|0.04|0.05|A|F|1992-07-02|1992-07-02|1992-07-22|NONE|REG AIR|ic gifts use blithely bold deposi| +24717|747064|9579|7|25|27775.75|0.06|0.00|R|F|1992-09-01|1992-07-23|1992-09-17|COLLECT COD|REG AIR| impress furio| +24718|892743|30295|1|39|67692.30|0.06|0.04|R|F|1995-04-26|1995-04-15|1995-05-25|DELIVER IN PERSON|AIR|endencies a| +24718|315444|27951|2|44|64214.92|0.10|0.04|A|F|1995-04-20|1995-03-05|1995-05-04|TAKE BACK RETURN|AIR| the unusual instructions. caref| +24718|661701|36728|3|14|23277.38|0.02|0.00|R|F|1995-04-15|1995-02-26|1995-05-04|NONE|SHIP|. fluffily final | +24718|192908|30418|4|41|82036.90|0.06|0.00|A|F|1995-05-16|1995-03-30|1995-06-02|DELIVER IN PERSON|SHIP|ccording to the pinto| +24718|202750|2751|5|6|9916.44|0.08|0.00|R|F|1995-04-21|1995-02-25|1995-05-02|TAKE BACK RETURN|RAIL|r excuses boost carefully even accounts.| +24718|611029|48566|6|22|20679.78|0.09|0.01|A|F|1995-02-27|1995-03-23|1995-03-15|NONE|SHIP|slyly regular theo| +24719|590819|28353|1|32|61113.28|0.10|0.07|R|F|1992-04-27|1992-06-09|1992-05-19|NONE|REG AIR| carefully ironic asympt| +24719|879986|17538|2|36|70773.84|0.09|0.00|A|F|1992-05-20|1992-06-10|1992-06-13|NONE|SHIP|es haggle blithely ironic plat| +24719|923211|23212|3|25|30854.25|0.05|0.03|R|F|1992-05-12|1992-06-11|1992-05-20|DELIVER IN PERSON|FOB|kly final packages| +24719|396867|34389|4|11|21602.35|0.04|0.08|R|F|1992-05-27|1992-06-29|1992-06-26|NONE|SHIP|ts? even, spe| +24719|128960|16467|5|26|51712.96|0.04|0.08|R|F|1992-05-30|1992-05-21|1992-06-11|NONE|AIR|ies nag carefully| +24719|415145|27654|6|33|34983.96|0.05|0.05|A|F|1992-05-26|1992-06-29|1992-06-17|NONE|REG AIR|usual accounts al| +24744|670993|8533|1|26|51062.96|0.02|0.03|A|F|1993-10-28|1994-01-22|1993-11-03|COLLECT COD|AIR|carefully across the special e| +24744|368201|18202|2|22|27922.18|0.04|0.03|A|F|1994-01-20|1993-12-29|1994-01-21|TAKE BACK RETURN|REG AIR|ross the care| +24744|343600|43601|3|14|23010.26|0.05|0.07|A|F|1993-12-18|1994-01-10|1993-12-24|DELIVER IN PERSON|RAIL|s wake above the unusual| +24744|882695|45213|4|5|8388.25|0.06|0.00|R|F|1993-12-20|1993-12-12|1993-12-21|NONE|FOB|odolites. foxes boo| +24744|449944|24961|5|17|32196.64|0.09|0.06|A|F|1993-12-12|1994-01-13|1993-12-23|TAKE BACK RETURN|FOB|riously regular somas are slyly ironic | +24744|206585|44098|6|11|16407.27|0.00|0.07|A|F|1993-11-08|1994-01-14|1993-11-19|TAKE BACK RETURN|REG AIR|the slyly regular deposi| +24744|70674|20675|7|17|27959.39|0.09|0.00|A|F|1993-12-19|1994-01-08|1994-01-08|DELIVER IN PERSON|TRUCK|ly. bold deposits th| +24745|804306|16823|1|31|37518.06|0.05|0.04|R|F|1992-11-05|1992-10-09|1992-12-02|TAKE BACK RETURN|REG AIR|unts. slyly regular theodolites doubt betw| +24746|224041|24042|1|47|45356.41|0.06|0.00|R|F|1993-11-15|1993-11-13|1993-12-01|DELIVER IN PERSON|AIR|arefully ironic foxes. special requ| +24747|689123|14150|1|3|3336.27|0.09|0.04|A|F|1993-03-03|1993-03-17|1993-03-05|COLLECT COD|AIR|lites. pending, silent requests sleep. slyl| +24747|86385|11388|2|11|15085.18|0.03|0.07|R|F|1993-04-02|1993-03-23|1993-04-11|COLLECT COD|FOB|platelets. acco| +24747|869699|44734|3|10|16686.50|0.03|0.04|R|F|1993-03-16|1993-04-01|1993-04-13|DELIVER IN PERSON|SHIP|ges. blith| +24747|26137|13638|4|11|11694.43|0.00|0.00|R|F|1993-05-13|1993-04-28|1993-05-22|NONE|SHIP|totes sleep blithely| +24747|275559|570|5|4|6138.16|0.09|0.06|R|F|1993-03-09|1993-04-23|1993-03-11|TAKE BACK RETURN|TRUCK|along the iron| +24748|904051|29088|1|15|15825.15|0.05|0.07|A|F|1992-06-29|1992-08-13|1992-07-24|DELIVER IN PERSON|AIR|ggle-- furiously bold r| +24748|377593|40101|2|9|15035.22|0.02|0.05|A|F|1992-07-23|1992-08-06|1992-07-29|COLLECT COD|MAIL|ly blithe instructions above the final, car| +24748|195325|45326|3|14|19884.48|0.03|0.02|R|F|1992-08-18|1992-06-27|1992-08-23|NONE|SHIP|ng instructions. foxes sleep carefu| +24748|812379|37412|4|2|2582.66|0.01|0.02|A|F|1992-08-16|1992-08-02|1992-09-03|DELIVER IN PERSON|REG AIR|he regular, ironi| +24749|709583|34612|1|37|58924.35|0.04|0.00|N|O|1996-07-28|1996-07-25|1996-08-13|COLLECT COD|RAIL| sleep. sly| +24749|947373|9892|2|3|4260.99|0.03|0.03|N|O|1996-06-07|1996-08-10|1996-06-17|DELIVER IN PERSON|REG AIR|se, special foxes. close ideas caj| +24749|489417|1927|3|21|29534.19|0.04|0.07|N|O|1996-09-05|1996-08-12|1996-09-18|DELIVER IN PERSON|REG AIR|inst the epitaphs boost blithely| +24749|628005|3030|4|39|36385.83|0.04|0.02|N|O|1996-07-26|1996-08-07|1996-08-03|COLLECT COD|TRUCK|etect fluffily. carefully unu| +24749|870975|46010|5|42|81729.06|0.01|0.06|N|O|1996-07-15|1996-07-22|1996-07-31|DELIVER IN PERSON|TRUCK|lyly final theodolites sleep fur| +24749|462445|49973|6|28|39407.76|0.10|0.03|N|O|1996-07-10|1996-07-24|1996-07-16|COLLECT COD|FOB|ions haggle. furiously regular dependenci| +24750|947331|22368|1|26|35835.54|0.05|0.04|N|O|1995-09-26|1995-08-11|1995-10-04|DELIVER IN PERSON|MAIL|re furiously ironic accounts. accounts are| +24750|781780|19326|2|18|33511.50|0.08|0.03|N|O|1995-07-03|1995-07-28|1995-07-17|COLLECT COD|REG AIR|telets was final packages. theodolite| +24750|375814|829|3|21|39685.80|0.00|0.07|N|O|1995-10-19|1995-08-08|1995-11-05|NONE|SHIP|ns cajole sometimes across the u| +24750|304558|17065|4|22|34375.88|0.01|0.01|N|O|1995-09-16|1995-09-10|1995-10-14|NONE|MAIL|ar accounts doubt slyly furio| +24751|148716|36223|1|22|38823.62|0.03|0.05|N|O|1997-05-26|1997-07-11|1997-05-29|COLLECT COD|AIR|eodolites doze blithely slyly ir| +24751|464709|14710|2|48|80336.64|0.06|0.06|N|O|1997-06-14|1997-07-28|1997-07-11|TAKE BACK RETURN|SHIP|es detect carefully. even account| +24751|361431|23939|3|14|20893.88|0.07|0.01|N|O|1997-07-29|1997-07-26|1997-08-28|NONE|FOB|sleep carefully caref| +24776|558192|8193|1|48|60008.16|0.08|0.03|R|F|1994-09-23|1994-09-22|1994-10-03|DELIVER IN PERSON|AIR|fter the attainments nag b| +24776|520775|20776|2|40|71830.00|0.08|0.06|R|F|1994-10-20|1994-09-28|1994-10-30|DELIVER IN PERSON|MAIL|g deposits maintain furiously quickly| +24776|663514|1054|3|24|35459.52|0.07|0.07|A|F|1994-08-24|1994-09-18|1994-08-29|DELIVER IN PERSON|SHIP|lar requests are blith| +24777|691423|41424|1|14|19801.46|0.09|0.00|N|O|1997-03-12|1997-02-22|1997-03-21|COLLECT COD|RAIL|nal deposits lose carefully. ironic, ironi| +24777|735180|10209|2|11|13366.65|0.01|0.08|N|O|1997-02-19|1997-01-22|1997-03-01|COLLECT COD|TRUCK|arefully e| +24777|166593|29097|3|50|82979.50|0.08|0.06|N|O|1996-12-25|1997-02-11|1997-01-13|TAKE BACK RETURN|AIR|gular ideas. blith| +24777|921021|8576|4|16|16671.68|0.05|0.07|N|O|1997-03-18|1997-01-10|1997-03-21|COLLECT COD|AIR|nto beans. ironic platelets s| +24777|590383|2895|5|43|63354.48|0.09|0.03|N|O|1997-03-06|1997-01-22|1997-04-03|TAKE BACK RETURN|FOB|ly at the c| +24777|564319|39342|6|39|53948.31|0.05|0.05|N|O|1997-03-25|1997-02-01|1997-04-08|NONE|MAIL|eas. furiously ironic ex| +24778|344366|19379|1|3|4231.05|0.07|0.07|A|F|1993-02-18|1993-04-24|1993-03-07|COLLECT COD|SHIP|requests along the express,| +24778|752745|2746|2|18|32358.78|0.04|0.05|A|F|1993-02-21|1993-04-30|1993-03-06|TAKE BACK RETURN|REG AIR|final deposits. fluffily i| +24778|371043|33551|3|24|26736.72|0.08|0.03|R|F|1993-02-25|1993-03-23|1993-03-10|NONE|AIR|foxes sleep. regular courts are alon| +24778|111853|49360|4|33|61540.05|0.08|0.06|R|F|1993-05-26|1993-04-15|1993-06-08|NONE|REG AIR|ts across the fu| +24779|436986|36987|1|47|90379.12|0.10|0.07|N|O|1997-04-22|1997-05-24|1997-05-17|TAKE BACK RETURN|REG AIR|s. blithely fin| +24779|417019|29528|2|11|10295.89|0.08|0.08|N|O|1997-03-10|1997-05-26|1997-03-18|TAKE BACK RETURN|AIR|ts detect a| +24779|830460|5493|3|28|38931.76|0.01|0.01|N|O|1997-03-09|1997-04-13|1997-03-16|TAKE BACK RETURN|SHIP|ns. blithely regul| +24779|537257|12278|4|33|42709.59|0.00|0.00|N|O|1997-06-14|1997-05-05|1997-07-08|TAKE BACK RETURN|FOB|regular ideas. final re| +24779|662279|24793|5|14|17377.36|0.06|0.01|N|O|1997-03-18|1997-05-19|1997-03-21|DELIVER IN PERSON|AIR|ven requests wake| +24780|167790|42797|1|39|72453.81|0.10|0.00|N|O|1997-07-21|1997-05-21|1997-07-24|DELIVER IN PERSON|REG AIR|lly regular accounts affix f| +24780|45003|45004|2|27|25596.00|0.05|0.01|N|O|1997-05-25|1997-05-05|1997-06-11|DELIVER IN PERSON|REG AIR|sly regular decoys sleep c| +24781|427938|15463|1|10|18659.10|0.03|0.05|N|O|1996-09-20|1996-09-28|1996-10-17|DELIVER IN PERSON|AIR|fluffily regu| +24781|352660|40182|2|33|56517.45|0.10|0.08|N|O|1996-08-29|1996-10-14|1996-09-26|TAKE BACK RETURN|SHIP|y regular | +24781|148975|23980|3|22|44527.34|0.07|0.04|N|O|1996-08-26|1996-10-03|1996-09-10|NONE|TRUCK|cial theodolites | +24781|806364|18881|4|46|58434.72|0.10|0.02|N|O|1996-10-17|1996-08-30|1996-11-04|NONE|REG AIR| fluffily final ideas nag alongside| +24782|271120|21121|1|12|13093.32|0.00|0.05|R|F|1994-09-08|1994-08-31|1994-09-21|COLLECT COD|RAIL|s integrate. | +24782|706755|31784|2|17|29949.24|0.00|0.08|R|F|1994-06-24|1994-08-17|1994-07-20|NONE|TRUCK|cajole blithely. carefully special de| +24782|417903|5428|3|15|27313.20|0.03|0.01|A|F|1994-08-28|1994-08-11|1994-09-13|NONE|REG AIR|theodolites.| +24782|685864|10891|4|50|92491.50|0.08|0.06|R|F|1994-09-26|1994-09-04|1994-10-25|COLLECT COD|REG AIR|gular ideas: ironic accou| +24782|306762|31775|5|18|31837.50|0.05|0.08|A|F|1994-09-05|1994-08-02|1994-09-07|TAKE BACK RETURN|REG AIR|e carefully above the b| +24783|136278|11283|1|42|55199.34|0.04|0.08|N|O|1997-04-09|1997-04-27|1997-05-02|NONE|FOB|. blithely regular instructions abov| +24808|246328|33841|1|15|19114.65|0.10|0.06|R|F|1995-01-30|1995-01-25|1995-02-05|DELIVER IN PERSON|REG AIR|e across the pending foxes. carefully speci| +24808|32632|7633|2|17|26598.71|0.09|0.01|A|F|1995-01-14|1994-12-11|1995-01-20|DELIVER IN PERSON|SHIP|l, special d| +24808|436239|11256|3|31|36431.51|0.05|0.00|A|F|1994-12-17|1995-01-07|1994-12-24|DELIVER IN PERSON|AIR|fully express acc| +24808|854609|29644|4|16|25016.96|0.02|0.07|R|F|1995-02-22|1994-12-20|1995-03-22|NONE|AIR|y express accoun| +24809|448147|10656|1|10|10951.20|0.09|0.05|N|O|1997-11-15|1997-12-08|1997-11-18|NONE|MAIL|al dolphins.| +24809|992683|5203|2|26|46166.64|0.03|0.06|N|O|1998-02-08|1998-01-09|1998-02-28|DELIVER IN PERSON|SHIP|wind furiously ab| +24809|19565|32066|3|12|17814.72|0.01|0.03|N|O|1997-11-04|1998-01-10|1997-11-16|NONE|FOB|ages use silent, fina| +24810|929715|4752|1|18|31404.06|0.04|0.08|A|F|1994-11-26|1994-09-24|1994-12-25|COLLECT COD|REG AIR|g, unusual packages. blithely e| +24810|718653|6196|2|29|48476.98|0.06|0.00|A|F|1994-09-20|1994-09-18|1994-09-30|COLLECT COD|FOB|gainst the carefully special packages no| +24811|937329|49848|1|4|5465.12|0.02|0.04|R|F|1993-10-23|1993-09-13|1993-10-31|NONE|RAIL|ording to the blithely final idea| +24811|684016|34017|2|29|28999.42|0.03|0.06|R|F|1993-10-16|1993-09-18|1993-10-18|TAKE BACK RETURN|MAIL| according to the furiousl| +24811|251565|26576|3|5|7582.75|0.04|0.01|A|F|1993-07-17|1993-08-19|1993-07-27|COLLECT COD|FOB|excuses. furiously speci| +24811|42009|4510|4|44|41844.00|0.03|0.01|A|F|1993-08-10|1993-09-22|1993-08-20|COLLECT COD|MAIL|osits are attainments.| +24811|38364|25865|5|24|31256.64|0.09|0.00|A|F|1993-10-11|1993-08-23|1993-11-05|COLLECT COD|FOB|ly according to | +24811|781153|43669|6|17|20980.04|0.07|0.05|R|F|1993-10-01|1993-08-16|1993-10-09|DELIVER IN PERSON|AIR|ess deposits. slyly express dependencies pl| +24812|816529|16530|1|12|17345.76|0.00|0.08|R|F|1992-03-26|1992-03-18|1992-04-06|COLLECT COD|SHIP|ounts. regular, stealthy requ| +24812|391760|4268|2|40|74070.00|0.08|0.06|R|F|1992-02-10|1992-03-23|1992-02-12|NONE|REG AIR|he special pa| +24813|492593|17612|1|48|76107.36|0.03|0.00|R|F|1994-10-02|1994-11-07|1994-10-19|NONE|MAIL|out the carefull| +24813|994021|44022|2|14|15609.72|0.08|0.05|A|F|1994-11-09|1994-10-18|1994-11-10|NONE|REG AIR|ccounts. furiously silent requests | +24814|617404|42429|1|37|48890.69|0.05|0.00|A|F|1994-10-07|1994-09-27|1994-10-28|DELIVER IN PERSON|FOB|, final requests haggle | +24814|698380|48381|2|30|41350.50|0.00|0.07|R|F|1994-10-06|1994-10-03|1994-10-16|COLLECT COD|TRUCK|ts. theodolites wake | +24814|664283|1823|3|41|51137.25|0.10|0.08|R|F|1994-10-16|1994-10-14|1994-11-05|TAKE BACK RETURN|SHIP|final depths nag bold ideas. regular a| +24814|599643|49644|4|39|67962.18|0.08|0.00|R|F|1994-10-28|1994-10-23|1994-11-07|TAKE BACK RETURN|FOB|lly careful deposits haggle quickly account| +24814|187954|458|5|44|89845.80|0.05|0.00|A|F|1994-11-15|1994-10-12|1994-12-15|NONE|RAIL|st the blithely pending f| +24814|938673|1192|6|37|63330.31|0.00|0.02|R|F|1994-11-21|1994-10-04|1994-12-21|NONE|MAIL|ag carefully care| +24814|263686|38697|7|10|16496.70|0.09|0.04|A|F|1994-10-17|1994-10-08|1994-10-26|DELIVER IN PERSON|AIR|press instr| +24815|767230|4776|1|8|10377.60|0.02|0.06|N|O|1996-09-09|1996-10-02|1996-10-04|DELIVER IN PERSON|FOB|ests cajole among| +24815|822546|47579|2|50|73425.00|0.09|0.04|N|O|1996-12-13|1996-09-22|1997-01-07|DELIVER IN PERSON|MAIL|. express, final idea| +24815|526374|38885|3|7|9802.45|0.05|0.02|N|O|1996-12-12|1996-10-26|1996-12-19|COLLECT COD|FOB|e ironic pearls. slyly even i| +24840|64418|26920|1|5|6912.05|0.09|0.01|R|F|1992-08-08|1992-10-11|1992-08-20|COLLECT COD|FOB|instructions. blithely silent platelet| +24840|666255|3795|2|40|48848.80|0.01|0.06|A|F|1992-10-14|1992-10-18|1992-10-21|COLLECT COD|FOB|. final, silent de| +24840|736162|23705|3|10|11981.30|0.02|0.03|R|F|1992-10-29|1992-10-19|1992-11-20|COLLECT COD|AIR|. ironic, fin| +24841|821174|33691|1|42|45995.46|0.08|0.01|R|F|1994-02-22|1994-03-01|1994-03-06|COLLECT COD|TRUCK|. furiously final instructions| +24842|41150|41151|1|3|3273.45|0.05|0.05|R|F|1994-09-03|1994-09-09|1994-09-26|NONE|RAIL|to beans? ironic ideas| +24842|600106|12619|2|12|12072.84|0.07|0.06|A|F|1994-10-27|1994-09-30|1994-11-09|COLLECT COD|MAIL|yly express deposits nag slyly af| +24842|975755|794|3|8|14645.68|0.05|0.07|A|F|1994-09-13|1994-08-24|1994-10-04|COLLECT COD|RAIL|. regular instructions use quickly ag| +24843|681831|6858|1|15|27192.00|0.09|0.02|A|F|1995-04-24|1995-06-15|1995-05-18|COLLECT COD|TRUCK| requests sleep quickly| +24843|531743|6764|2|23|40818.56|0.05|0.00|A|F|1995-04-05|1995-05-18|1995-04-25|NONE|RAIL|furiously reg| +24844|85048|35049|1|10|10330.40|0.05|0.00|A|F|1994-01-15|1993-11-22|1994-02-06|COLLECT COD|AIR|final dolphins. quickly permanent ideas p| +24844|397532|47533|2|27|43997.04|0.10|0.00|R|F|1993-11-25|1993-12-08|1993-11-28|COLLECT COD|SHIP|l platelets sleep slyly. final pint| +24845|289272|39273|1|41|51711.66|0.01|0.06|N|O|1995-08-13|1995-10-27|1995-08-18|NONE|RAIL|lly regular pinto beans doubt | +24845|779192|16738|2|47|59744.52|0.09|0.05|N|O|1995-09-15|1995-11-04|1995-09-19|NONE|AIR| ironic, bold deposits. | +24845|870444|45479|3|39|55161.60|0.00|0.02|N|O|1995-08-25|1995-09-15|1995-09-09|TAKE BACK RETURN|SHIP|y among the furiously bold theo| +24845|548610|48611|4|6|9951.54|0.10|0.08|N|O|1995-11-20|1995-10-07|1995-12-03|DELIVER IN PERSON|FOB|s haggle c| +24846|663531|26045|1|23|34373.50|0.04|0.01|A|F|1994-08-16|1994-09-10|1994-09-03|DELIVER IN PERSON|REG AIR|uriously bold accounts detect. final, ev| +24846|958249|8250|2|28|36601.60|0.03|0.07|R|F|1994-11-04|1994-09-21|1994-11-28|NONE|SHIP|al accounts-- quickly even deposits are. f| +24846|274874|37380|3|37|68407.82|0.09|0.05|A|F|1994-07-20|1994-09-07|1994-07-28|DELIVER IN PERSON|RAIL|endencies. bold, ironic| +24846|798498|11014|4|45|71840.70|0.03|0.02|R|F|1994-09-03|1994-08-16|1994-09-27|COLLECT COD|AIR|r theodolites above the| +24847|603881|28906|1|20|35697.00|0.02|0.03|N|O|1998-08-31|1998-07-13|1998-09-29|NONE|TRUCK| wake. slyly sp| +24872|791502|29048|1|43|68519.21|0.09|0.01|N|O|1996-05-19|1996-06-08|1996-05-25|DELIVER IN PERSON|FOB| deposits. blithely special pinto beans wak| +24872|768131|5677|2|46|55158.60|0.05|0.07|N|O|1996-05-30|1996-06-18|1996-06-10|NONE|REG AIR|. final, final theodolites doubt so| +24872|964442|2000|3|47|70800.80|0.07|0.00|N|O|1996-05-05|1996-07-25|1996-05-10|NONE|AIR|inst the ironic packages. ironi| +24873|162290|12291|1|4|5409.16|0.01|0.01|N|O|1996-04-16|1996-02-27|1996-05-06|NONE|REG AIR|requests affix quickly silent de| +24873|600657|38194|2|1|1557.62|0.05|0.03|N|O|1996-03-06|1996-02-07|1996-03-31|TAKE BACK RETURN|REG AIR|e regular, final theodolites. pending pa| +24873|242192|42193|3|20|22683.60|0.05|0.07|N|O|1996-03-26|1996-03-03|1996-04-08|COLLECT COD|MAIL|uests wake of the regular accounts. r| +24874|796362|8878|1|43|62708.19|0.01|0.01|R|F|1993-12-15|1993-11-05|1993-12-26|DELIVER IN PERSON|SHIP|rate blithely| +24874|451430|13940|2|45|62163.45|0.03|0.08|R|F|1993-10-09|1993-10-28|1993-10-20|COLLECT COD|RAIL|ironic packages serve furiously | +24874|177798|40302|3|48|90037.92|0.08|0.00|R|F|1993-12-04|1993-12-11|1993-12-11|TAKE BACK RETURN|TRUCK| the slyly bold instructions? sly| +24874|245950|33463|4|28|53086.32|0.08|0.04|A|F|1994-01-09|1993-12-13|1994-01-20|DELIVER IN PERSON|REG AIR|blithely ironic instructions. pack| +24875|716776|16777|1|47|84258.78|0.03|0.05|R|F|1992-05-16|1992-03-28|1992-05-23|TAKE BACK RETURN|RAIL|ld dependencies caj| +24875|845541|45542|2|18|26757.00|0.05|0.01|R|F|1992-02-21|1992-04-03|1992-03-21|COLLECT COD|MAIL|slyly pending pinto beans across the | +24875|996346|8866|3|2|2884.60|0.05|0.04|A|F|1992-02-27|1992-03-29|1992-03-21|DELIVER IN PERSON|FOB| deposits. slyly final foxes was. ex| +24876|632178|32179|1|13|14431.82|0.00|0.01|N|O|1996-06-21|1996-05-17|1996-07-07|COLLECT COD|FOB|ickly bold platelets| +24876|7922|45423|2|39|71366.88|0.00|0.02|N|O|1996-04-07|1996-04-28|1996-04-15|COLLECT COD|MAIL|. furiously regular re| +24876|135425|22932|3|37|54035.54|0.05|0.06|N|O|1996-05-29|1996-04-10|1996-06-03|NONE|REG AIR| affix fluffily pending foxes| +24876|71705|34207|4|16|26827.20|0.06|0.02|N|O|1996-04-29|1996-03-31|1996-05-29|NONE|FOB|ar, bold sheaves| +24876|142579|30086|5|3|4864.71|0.03|0.00|N|O|1996-04-12|1996-04-22|1996-05-03|DELIVER IN PERSON|REG AIR|lyly ironic deposits. even acco| +24877|278118|40624|1|33|36171.30|0.02|0.03|N|O|1996-01-12|1995-12-28|1996-02-09|NONE|RAIL| into the regular excuses. deposits | +24877|317448|4967|2|34|49824.62|0.04|0.00|N|O|1996-01-14|1995-12-13|1996-02-04|DELIVER IN PERSON|FOB| unusual excuses u| +24877|345384|45385|3|13|18581.81|0.07|0.03|N|O|1995-11-15|1995-12-10|1995-12-12|TAKE BACK RETURN|MAIL|egular the| +24877|864702|27220|4|36|59999.76|0.10|0.01|N|O|1995-10-05|1995-12-14|1995-10-25|NONE|RAIL|ites haggle quickly q| +24877|36391|11392|5|48|63714.72|0.03|0.07|N|O|1995-11-13|1995-12-17|1995-11-14|NONE|RAIL|t the regular instructions. express foxes| +24878|683040|8067|1|14|14322.14|0.08|0.07|N|O|1996-01-19|1995-12-20|1996-02-16|COLLECT COD|FOB|s wake quickly carefully idle ideas. | +24878|839418|14451|2|15|20360.55|0.01|0.05|N|O|1996-01-05|1996-01-07|1996-01-08|TAKE BACK RETURN|MAIL|nently ironic deposits | +24878|91064|16067|3|4|4220.24|0.00|0.02|N|O|1995-12-20|1996-01-25|1995-12-23|COLLECT COD|FOB| express excuses x-r| +24878|498351|10861|4|42|56671.86|0.00|0.08|N|O|1995-12-27|1996-01-26|1995-12-30|COLLECT COD|RAIL|y notornis. regular, r| +24878|777705|27706|5|45|80220.15|0.07|0.06|N|O|1996-01-14|1996-01-29|1996-01-27|NONE|TRUCK|egular patterns nag| +24878|884893|9928|6|49|92014.65|0.03|0.06|N|O|1996-01-31|1996-01-26|1996-02-08|TAKE BACK RETURN|AIR|y players. fluffi| +24879|326131|13650|1|37|42813.44|0.02|0.02|N|O|1998-03-04|1998-04-27|1998-04-03|NONE|FOB|ggle fluffily accounts. carefully re| +24879|272109|9625|2|9|9729.81|0.06|0.02|N|O|1998-06-02|1998-04-26|1998-06-07|COLLECT COD|FOB|. silent, special deposits aroun| +24904|171938|34442|1|15|30148.95|0.07|0.07|A|F|1994-08-30|1994-08-19|1994-09-28|COLLECT COD|TRUCK|le; instructions maintain bl| +24904|746726|34269|2|11|19499.59|0.02|0.06|A|F|1994-07-13|1994-08-02|1994-08-01|TAKE BACK RETURN|REG AIR|nag fluffi| +24904|219306|6819|3|37|45335.73|0.05|0.06|R|F|1994-07-29|1994-07-16|1994-08-28|TAKE BACK RETURN|AIR|-ray slyly regular platelet| +24904|862828|37863|4|12|21489.36|0.10|0.02|A|F|1994-06-17|1994-07-22|1994-06-29|COLLECT COD|SHIP|g dependencies. requests m| +24904|540772|3283|5|39|70697.25|0.05|0.06|A|F|1994-06-17|1994-07-01|1994-07-15|DELIVER IN PERSON|FOB| carefully bold de| +24904|749825|12340|6|3|5624.37|0.02|0.05|R|F|1994-08-04|1994-06-29|1994-08-26|NONE|REG AIR|nal dolphins. gro| +24904|306376|18883|7|17|23500.12|0.06|0.02|R|F|1994-08-05|1994-07-05|1994-08-30|NONE|REG AIR|foxes. excuses integrate carefu| +24905|250391|37907|1|16|21462.08|0.05|0.04|N|O|1997-05-22|1997-02-22|1997-06-03|DELIVER IN PERSON|FOB|lyly regul| +24905|309736|47255|2|38|66337.36|0.10|0.00|N|O|1997-03-16|1997-03-28|1997-04-06|COLLECT COD|AIR|riously unusual pinto beans among | +24905|732319|19862|3|31|41889.68|0.10|0.05|N|O|1997-04-01|1997-03-16|1997-04-16|DELIVER IN PERSON|TRUCK|s alongside of th| +24905|84542|22046|4|27|41216.58|0.04|0.01|N|O|1997-02-05|1997-03-19|1997-03-01|TAKE BACK RETURN|AIR|nto beans haggle carefully.| +24905|891936|16971|5|5|9639.45|0.08|0.03|N|O|1997-02-14|1997-03-13|1997-03-13|TAKE BACK RETURN|TRUCK|ly regular platelets cajole slyl| +24906|833199|8232|1|35|39625.25|0.06|0.02|N|F|1995-06-04|1995-06-04|1995-06-25|DELIVER IN PERSON|TRUCK|nal accounts cajole. ironic war| +24906|563078|13079|2|29|33090.45|0.10|0.06|R|F|1995-05-06|1995-05-30|1995-05-18|TAKE BACK RETURN|SHIP|se carefully according to the exp| +24906|636748|24285|3|48|80866.08|0.08|0.08|N|O|1995-07-09|1995-06-29|1995-08-08|TAKE BACK RETURN|SHIP|ges detect among | +24906|811950|24467|4|5|9309.55|0.10|0.08|A|F|1995-05-11|1995-07-15|1995-05-18|NONE|MAIL|ly blithely ironic ac| +24906|430141|42650|5|39|41773.68|0.05|0.04|N|O|1995-07-26|1995-07-20|1995-08-16|TAKE BACK RETURN|SHIP| along the slyly| +24907|399659|24674|1|22|38690.08|0.04|0.01|N|O|1998-03-14|1998-04-19|1998-04-12|DELIVER IN PERSON|RAIL|eep against the slyly final a| +24907|60472|10473|2|15|21487.05|0.03|0.05|N|O|1998-02-07|1998-04-13|1998-02-22|TAKE BACK RETURN|RAIL|lthy package| +24907|337071|12084|3|19|21053.14|0.10|0.07|N|O|1998-04-19|1998-03-25|1998-05-02|DELIVER IN PERSON|AIR| special instr| +24907|143247|5750|4|40|51609.60|0.05|0.03|N|O|1998-04-17|1998-05-04|1998-04-23|TAKE BACK RETURN|REG AIR|er after the ironic pack| +24907|548283|10794|5|7|9318.82|0.09|0.03|N|O|1998-04-09|1998-04-28|1998-05-08|TAKE BACK RETURN|REG AIR|furiously alongside of the carefu| +24907|990860|40861|6|39|76081.98|0.09|0.08|N|O|1998-04-28|1998-03-16|1998-05-08|TAKE BACK RETURN|TRUCK|ages cajole blithely ironi| +24907|372825|47840|7|24|45547.44|0.06|0.03|N|O|1998-02-19|1998-04-23|1998-03-11|TAKE BACK RETURN|TRUCK| regular packages ha| +24908|63752|13753|1|32|54904.00|0.10|0.04|N|O|1996-06-27|1996-06-09|1996-07-20|TAKE BACK RETURN|FOB|kly furiously unusual platelets. ca| +24908|464740|27250|2|4|6818.88|0.09|0.07|N|O|1996-07-06|1996-05-30|1996-07-28|NONE|MAIL|gle carefully furiously final | +24909|73083|35585|1|19|20065.52|0.06|0.04|R|F|1992-03-05|1992-03-09|1992-04-02|COLLECT COD|AIR| regular warthogs int| +24909|292940|17951|2|48|92780.64|0.04|0.02|A|F|1992-02-27|1992-02-13|1992-03-05|TAKE BACK RETURN|SHIP|the even requests kindle car| +24909|431557|6574|3|48|71449.44|0.07|0.05|R|F|1992-01-28|1992-03-10|1992-02-18|DELIVER IN PERSON|SHIP|fily regular packages cajole bol| +24910|604241|29266|1|33|37791.93|0.09|0.04|R|F|1992-07-29|1992-09-05|1992-08-12|TAKE BACK RETURN|TRUCK|ccounts. fur| +24910|474564|24565|2|25|38463.50|0.05|0.05|R|F|1992-10-25|1992-09-11|1992-11-20|COLLECT COD|MAIL| packages wake above the e| +24910|984944|47464|3|19|38549.10|0.09|0.02|R|F|1992-11-22|1992-09-07|1992-11-24|COLLECT COD|REG AIR|boost unusual| +24910|939187|26742|4|46|56402.44|0.09|0.08|R|F|1992-11-08|1992-10-23|1992-11-18|TAKE BACK RETURN|RAIL|d. sheaves alongside of the | +24910|910744|35781|5|25|43867.50|0.06|0.08|R|F|1992-08-25|1992-09-16|1992-09-04|COLLECT COD|MAIL|lithely about t| +24910|870913|8465|6|42|79122.54|0.04|0.00|A|F|1992-08-18|1992-10-14|1992-08-19|DELIVER IN PERSON|SHIP|xcuses haggle according to the fluff| +24911|628431|28432|1|9|12234.60|0.01|0.02|N|O|1996-02-04|1996-03-29|1996-02-18|COLLECT COD|REG AIR|gularly along the slyly special re| +24911|26859|14360|2|11|19644.35|0.08|0.03|N|O|1996-03-20|1996-03-05|1996-03-22|TAKE BACK RETURN|REG AIR|quickly pinto beans| +24911|408278|45803|3|24|28470.00|0.09|0.07|N|O|1996-04-07|1996-04-18|1996-05-03|TAKE BACK RETURN|FOB|s. thinly ironic realms wa| +24911|918458|6013|4|32|47245.12|0.10|0.08|N|O|1996-03-07|1996-04-10|1996-03-09|DELIVER IN PERSON|TRUCK|sits wake slyly even theodolites. | +24911|522452|9983|5|24|35386.32|0.09|0.00|N|O|1996-03-11|1996-03-08|1996-03-15|NONE|MAIL|cajole slyly outside the bli| +24911|849964|24997|6|32|61245.44|0.04|0.00|N|O|1996-03-02|1996-03-18|1996-03-28|COLLECT COD|TRUCK|h. regular instruction| +24911|328650|3663|7|32|53716.48|0.05|0.06|N|O|1996-03-05|1996-04-04|1996-03-11|TAKE BACK RETURN|MAIL|hely ironic accounts above the| +24936|608501|8502|1|41|57788.27|0.08|0.00|A|F|1993-11-25|1993-09-22|1993-12-13|DELIVER IN PERSON|AIR| slyly unusual requests play against th| +24936|70041|7545|2|17|17187.68|0.00|0.01|A|F|1993-08-13|1993-10-02|1993-08-21|DELIVER IN PERSON|MAIL|counts. carefully express deposits | +24936|171659|34163|3|46|79609.90|0.04|0.02|A|F|1993-08-14|1993-10-08|1993-09-02|TAKE BACK RETURN|REG AIR|l, even instructions haggle bl| +24936|70126|7630|4|16|17537.92|0.07|0.07|R|F|1993-09-05|1993-09-29|1993-10-01|TAKE BACK RETURN|MAIL| requests. furiously express asymp| +24937|883713|21265|1|14|23753.38|0.02|0.04|R|F|1993-07-04|1993-06-20|1993-07-10|TAKE BACK RETURN|SHIP|und the slyly bold acco| +24938|618736|18737|1|6|9928.20|0.07|0.06|N|O|1997-07-05|1997-07-21|1997-07-30|TAKE BACK RETURN|REG AIR|counts integrate blithely pending ideas. r| +24938|91657|16660|2|21|34621.65|0.10|0.00|N|O|1997-08-19|1997-08-08|1997-09-10|DELIVER IN PERSON|RAIL|ully bold attai| +24938|475986|13514|3|27|52972.92|0.10|0.05|N|O|1997-10-08|1997-09-05|1997-11-05|COLLECT COD|REG AIR|y carefully re| +24939|645820|8333|1|16|28252.64|0.01|0.08|A|F|1993-01-21|1993-01-03|1993-01-24|TAKE BACK RETURN|SHIP|heodolites haggle slyly alongside of t| +24939|282333|44839|2|36|47351.52|0.06|0.05|A|F|1993-02-22|1993-01-07|1993-03-10|TAKE BACK RETURN|TRUCK|ing accoun| +24939|160538|48048|3|8|12788.24|0.07|0.08|R|F|1993-01-09|1993-01-13|1993-02-07|TAKE BACK RETURN|RAIL|pths! even| +24939|146837|9340|4|41|77237.03|0.06|0.08|R|F|1993-01-04|1992-12-17|1993-01-29|DELIVER IN PERSON|RAIL|ffix slyly. blithely regular packages u| +24939|877992|27993|5|36|70918.20|0.06|0.05|A|F|1993-02-19|1993-01-22|1993-03-07|NONE|SHIP|e quickly about th| +24940|861386|36421|1|35|47156.90|0.04|0.05|N|O|1996-09-30|1996-10-28|1996-10-02|TAKE BACK RETURN|SHIP|ully regular | +24940|304142|4143|2|23|26360.99|0.04|0.07|N|O|1996-10-22|1996-10-27|1996-11-05|COLLECT COD|FOB|y furiously | +24940|711344|48887|3|8|10842.48|0.10|0.05|N|O|1996-11-06|1996-09-28|1996-11-15|TAKE BACK RETURN|MAIL|tions. furiou| +24940|545050|45051|4|36|39421.08|0.10|0.01|N|O|1996-11-21|1996-09-28|1996-12-07|NONE|SHIP|nt dolphins| +24941|740451|40452|1|14|20879.88|0.06|0.06|A|F|1994-11-02|1994-10-15|1994-11-20|NONE|AIR| carefully even foxes against the final i| +24941|746520|46521|2|4|6265.96|0.09|0.03|R|F|1994-09-02|1994-11-11|1994-10-01|NONE|AIR|fluffily expr| +24941|759440|34471|3|48|71971.68|0.10|0.08|A|F|1994-12-29|1994-10-22|1995-01-09|TAKE BACK RETURN|RAIL|ry to cajole quickly fluffily even depo| +24941|900521|522|4|14|21300.72|0.03|0.06|R|F|1994-09-23|1994-10-21|1994-10-20|DELIVER IN PERSON|MAIL| final theodolites cajole slyly. boldl| +24941|51147|13649|5|9|9883.26|0.09|0.05|R|F|1994-11-23|1994-11-28|1994-11-27|DELIVER IN PERSON|AIR|notornis boost. c| +24941|616805|16806|6|3|5165.31|0.03|0.05|R|F|1994-12-30|1994-11-25|1995-01-12|DELIVER IN PERSON|RAIL|he even ideas use care| +24942|211217|11218|1|25|28205.00|0.10|0.00|N|O|1998-09-02|1998-09-17|1998-09-22|DELIVER IN PERSON|MAIL|gle carefully idle, unu| +24942|919890|44927|2|19|36287.15|0.07|0.06|N|O|1998-08-07|1998-09-04|1998-08-30|NONE|RAIL|ully even f| +24942|576016|26017|3|7|7643.93|0.01|0.07|N|O|1998-10-31|1998-09-10|1998-11-01|DELIVER IN PERSON|FOB|oss the carefully daring deposits. c| +24942|88043|38044|4|43|44334.72|0.01|0.02|N|O|1998-07-30|1998-09-13|1998-08-22|NONE|FOB| ironic accounts. carefully even platelets | +24942|725884|13427|5|17|32467.45|0.10|0.00|N|O|1998-07-22|1998-09-08|1998-07-26|TAKE BACK RETURN|FOB|nic warhorses. silent asymptotes wa| +24942|923955|36474|6|46|91029.86|0.00|0.02|N|O|1998-09-25|1998-08-29|1998-10-09|DELIVER IN PERSON|RAIL|silent, bold | +24942|897504|10022|7|14|21020.44|0.02|0.06|N|O|1998-09-03|1998-10-02|1998-09-15|TAKE BACK RETURN|SHIP|y unusual platelets alongside of the r| +24943|334920|22439|1|37|72331.67|0.08|0.08|A|F|1992-07-13|1992-07-19|1992-08-12|COLLECT COD|REG AIR|heodolites| +24943|993600|43601|2|36|60968.16|0.07|0.02|R|F|1992-08-27|1992-08-27|1992-09-15|NONE|AIR|s. slyly special pinto beans after the s| +24968|916981|4536|1|26|51946.44|0.08|0.00|R|F|1992-07-24|1992-07-01|1992-08-23|COLLECT COD|TRUCK|ndencies sleep | +24968|695855|8369|2|27|49972.14|0.09|0.07|R|F|1992-07-06|1992-08-11|1992-07-16|DELIVER IN PERSON|FOB|cept the carefu| +24968|229936|4945|3|4|7463.68|0.00|0.08|A|F|1992-08-21|1992-07-30|1992-09-05|COLLECT COD|REG AIR|ly regular theodolites. ironic ideas ne| +24968|526926|39437|4|34|66398.60|0.07|0.00|A|F|1992-06-27|1992-08-14|1992-07-18|COLLECT COD|SHIP|s. even dolphins after the furiously | +24968|43567|31068|5|50|75528.00|0.05|0.08|R|F|1992-07-04|1992-08-02|1992-07-10|DELIVER IN PERSON|RAIL|ckages cajole above the final, regul| +24968|224238|49247|6|4|4648.88|0.07|0.01|A|F|1992-08-20|1992-08-13|1992-08-31|NONE|SHIP|n deposits cajole? slyly ironi| +24969|408775|21284|1|23|38726.25|0.07|0.01|A|F|1995-05-15|1995-04-27|1995-06-05|NONE|RAIL|ently evenly regular instructions. pendi| +24969|277725|15241|2|14|23837.94|0.03|0.04|N|O|1995-06-24|1995-05-07|1995-07-04|NONE|RAIL|c requests. express platelets | +24969|718590|18591|3|36|57908.16|0.06|0.05|R|F|1995-03-18|1995-04-10|1995-04-14|DELIVER IN PERSON|REG AIR|s. furiously silent dependenci| +24969|338547|26066|4|3|4756.59|0.06|0.08|A|F|1995-03-20|1995-04-25|1995-03-25|DELIVER IN PERSON|RAIL|refully along the dogged | +24969|948056|10575|5|9|9936.09|0.07|0.02|N|O|1995-07-03|1995-05-10|1995-07-22|TAKE BACK RETURN|RAIL|s around the| +24969|967109|4667|6|3|3528.18|0.05|0.05|R|F|1995-05-23|1995-05-02|1995-06-03|DELIVER IN PERSON|REG AIR|the furiously regular sauternes. bold pack| +24970|55792|18294|1|49|85641.71|0.02|0.06|N|O|1998-03-12|1998-05-14|1998-03-22|DELIVER IN PERSON|RAIL|ackages affix around| +24971|147773|10276|1|17|30953.09|0.00|0.01|R|F|1994-09-29|1994-08-08|1994-10-27|TAKE BACK RETURN|MAIL|s packages haggle ironically in pl| +24971|609135|21648|2|42|43852.20|0.08|0.04|R|F|1994-10-26|1994-08-11|1994-10-27|NONE|RAIL|- packages dazzle. bl| +24971|720290|20291|3|14|18343.64|0.09|0.04|A|F|1994-07-07|1994-08-13|1994-07-16|DELIVER IN PERSON|AIR|ve to nag r| +24972|70444|7948|1|13|18387.72|0.04|0.00|N|O|1997-11-10|1998-01-16|1997-12-02|DELIVER IN PERSON|TRUCK|after the even, pending platelets. e| +24972|950172|25211|2|13|15887.69|0.05|0.01|N|O|1997-12-20|1997-11-30|1998-01-11|NONE|TRUCK|hogs. never slow requests after the d| +24972|526890|1911|3|18|34503.66|0.09|0.06|N|O|1998-02-08|1997-12-20|1998-02-11|DELIVER IN PERSON|MAIL|egular foxes are quietly af| +24972|440044|40045|4|37|36408.74|0.02|0.08|N|O|1997-12-16|1998-01-05|1997-12-31|NONE|MAIL|among the regular packages. furiously bold | +24972|819243|44276|5|13|15108.60|0.05|0.00|N|O|1998-01-15|1997-12-12|1998-02-11|NONE|FOB|d requests cajole fluffily slyly ironic | +24972|3872|28873|6|46|81690.02|0.04|0.01|N|O|1998-02-05|1998-01-14|1998-03-02|TAKE BACK RETURN|MAIL|en requests. never ironi| +24973|464979|14980|1|15|29159.25|0.10|0.05|N|O|1998-08-04|1998-09-17|1998-08-30|TAKE BACK RETURN|RAIL|uickly special foxes believe blithel| +24973|899896|12414|2|24|45500.40|0.04|0.05|N|O|1998-07-16|1998-08-23|1998-07-21|COLLECT COD|REG AIR|ccording to t| +24973|540012|40013|3|38|39975.62|0.07|0.03|N|O|1998-08-20|1998-07-28|1998-09-17|TAKE BACK RETURN|FOB|riously special dolp| +24973|974279|36799|4|37|50069.51|0.01|0.06|N|O|1998-10-14|1998-08-10|1998-10-18|DELIVER IN PERSON|RAIL|c accounts. tithes use furious| +24973|704069|41612|5|24|25752.72|0.03|0.08|N|O|1998-10-23|1998-08-07|1998-10-24|COLLECT COD|FOB|the pending accoun| +24973|279389|29390|6|28|38314.36|0.02|0.07|N|O|1998-09-06|1998-09-20|1998-09-25|DELIVER IN PERSON|MAIL|es. regular excus| +24974|411450|11451|1|34|46288.62|0.03|0.06|N|O|1996-12-22|1996-10-18|1997-01-16|TAKE BACK RETURN|SHIP|lyly unusual pinto beans haggle across t| +24974|239637|27150|2|35|55181.70|0.09|0.03|N|O|1996-11-09|1996-10-06|1996-11-28|COLLECT COD|SHIP|t the notornis. furious| +24974|577676|2699|3|21|36826.65|0.00|0.03|N|O|1996-12-14|1996-11-01|1997-01-08|COLLECT COD|MAIL|tructions are. slyly pendi| +24974|999763|12283|4|18|33528.96|0.00|0.06|N|O|1996-09-16|1996-11-14|1996-09-18|COLLECT COD|REG AIR|ckages. blithely ironic pac| +24974|15846|15847|5|14|24665.76|0.05|0.06|N|O|1996-09-06|1996-10-21|1996-09-13|NONE|AIR|sits. fluffily ironic deposits | +24975|894642|44643|1|14|22912.40|0.10|0.03|N|O|1996-07-06|1996-07-18|1996-07-10|NONE|FOB|uriously ironic accoun| +24975|247986|22995|2|30|58019.10|0.03|0.02|N|O|1996-06-30|1996-08-26|1996-07-18|TAKE BACK RETURN|AIR|onic somas after the idly regul| +24975|884935|22487|3|37|71035.93|0.09|0.02|N|O|1996-07-01|1996-09-01|1996-07-09|DELIVER IN PERSON|REG AIR|fily inste| +24975|91313|28817|4|27|35216.37|0.08|0.03|N|O|1996-08-22|1996-08-11|1996-09-08|COLLECT COD|RAIL|s boost quickly bold accounts. closely eve| +25000|364417|1939|1|1|1481.40|0.02|0.07|A|F|1995-03-06|1995-02-06|1995-03-09|DELIVER IN PERSON|REG AIR|ests. slyly ir| +25000|746305|21334|2|15|20269.05|0.04|0.02|A|F|1994-12-02|1995-01-24|1994-12-25|TAKE BACK RETURN|RAIL|al asymptotes. blithely | +25001|99742|12244|1|10|17417.40|0.02|0.05|A|F|1993-02-18|1993-01-24|1993-02-20|DELIVER IN PERSON|AIR|fluffily regular deposits sleep even instru| +25001|361502|49024|2|39|60976.11|0.04|0.06|R|F|1993-03-06|1993-02-21|1993-03-21|COLLECT COD|FOB|nstructions haggle slyly. final instructi| +25001|755831|18347|3|15|28302.00|0.07|0.00|A|F|1992-11-25|1993-02-13|1992-12-14|DELIVER IN PERSON|FOB|regular foxes above| +25001|249955|24964|4|41|78102.54|0.01|0.01|R|F|1993-01-05|1993-01-16|1993-01-14|DELIVER IN PERSON|SHIP| quickly ironic foxes. flu| +25002|513383|914|1|45|62836.20|0.02|0.03|R|F|1993-03-06|1993-03-02|1993-03-20|COLLECT COD|RAIL|are slyly. unusual| +25002|421052|33561|2|22|21406.66|0.00|0.02|A|F|1993-01-06|1993-02-02|1993-02-01|TAKE BACK RETURN|FOB|onic, regular instru| +25003|368334|5856|1|24|33655.68|0.03|0.01|N|O|1995-07-05|1995-05-08|1995-07-22|NONE|MAIL|s thrash. blithely i| +25003|579422|29423|2|9|13512.60|0.01|0.03|N|O|1995-06-30|1995-05-23|1995-07-27|COLLECT COD|RAIL|onic accounts sleep fur| +25003|334936|34937|3|17|33505.64|0.05|0.02|N|O|1995-07-12|1995-06-27|1995-07-17|COLLECT COD|FOB|arefully across th| +25004|580221|30222|1|11|14313.20|0.02|0.03|N|O|1997-04-01|1997-03-11|1997-04-10|COLLECT COD|FOB|oost. ideas wake blithely across| +25004|773572|48603|2|7|11518.78|0.06|0.07|N|O|1997-04-19|1997-03-27|1997-05-05|TAKE BACK RETURN|RAIL|he asymptotes. pen| +25005|942940|42941|1|38|75350.20|0.06|0.07|R|F|1992-06-18|1992-07-15|1992-07-12|TAKE BACK RETURN|AIR|e ironic, ironic excuses. ev| +25005|977326|2365|2|4|5613.12|0.10|0.06|R|F|1992-09-01|1992-07-08|1992-09-10|COLLECT COD|FOB|ly final platelets. excuses ar| +25005|911471|49026|3|19|28166.17|0.08|0.07|R|F|1992-09-23|1992-08-09|1992-10-11|DELIVER IN PERSON|RAIL|ternes. even foxes sleep. regular ideas sl| +25005|82640|20144|4|35|56792.40|0.01|0.02|R|F|1992-06-06|1992-07-18|1992-06-13|DELIVER IN PERSON|AIR|le quickly across the quic| +25006|644596|19621|1|27|41595.12|0.10|0.08|N|O|1996-09-28|1996-11-05|1996-10-28|NONE|SHIP|special requests are.| +25006|724621|24622|2|37|60886.83|0.08|0.02|N|O|1996-11-06|1996-10-20|1996-12-02|TAKE BACK RETURN|AIR| express deposits p| +25006|695515|45516|3|49|74013.52|0.00|0.06|N|O|1996-12-02|1996-10-19|1996-12-18|TAKE BACK RETURN|TRUCK| daring exc| +25006|512499|12500|4|33|49878.51|0.04|0.00|N|O|1996-11-17|1996-11-13|1996-12-01|TAKE BACK RETURN|REG AIR|gular dependencies acros| +25006|568865|6399|5|45|87022.80|0.07|0.04|N|O|1996-11-12|1996-11-15|1996-11-17|NONE|TRUCK|ular forges. ironic theodoli| +25006|909517|47072|6|4|6105.88|0.04|0.03|N|O|1996-09-17|1996-11-16|1996-10-15|NONE|REG AIR|jole among the pen| +25006|250113|37629|7|6|6378.60|0.00|0.06|N|O|1996-10-12|1996-10-17|1996-11-04|COLLECT COD|AIR|. blithely express pinto beans hag| +25007|638905|26442|1|42|77442.54|0.07|0.01|A|F|1994-07-05|1994-07-21|1994-08-01|TAKE BACK RETURN|REG AIR|ffix slyly. carefully pend| +25007|59591|9592|2|8|12404.72|0.10|0.08|A|F|1994-08-02|1994-07-23|1994-08-08|NONE|REG AIR|heodolites. carefully pending| +25007|539019|26550|3|10|10579.90|0.02|0.06|R|F|1994-08-19|1994-07-02|1994-08-24|NONE|TRUCK| blithely thin deposits! ironic| +25007|282653|32654|4|49|80146.36|0.10|0.08|R|F|1994-06-26|1994-07-31|1994-07-07|TAKE BACK RETURN|SHIP|e above the ironic accounts. furiou| +25007|538709|1220|5|45|78645.60|0.09|0.08|A|F|1994-06-17|1994-06-20|1994-07-16|COLLECT COD|RAIL|c accounts| +25007|73320|48323|6|3|3879.96|0.00|0.02|R|F|1994-06-18|1994-06-14|1994-07-11|NONE|RAIL|lithely pending p| +25032|347998|47999|1|35|71609.30|0.03|0.01|A|F|1992-05-02|1992-05-03|1992-05-09|DELIVER IN PERSON|AIR| express, unusu| +25032|786670|36671|2|18|31619.52|0.04|0.00|A|F|1992-05-31|1992-03-25|1992-06-28|NONE|MAIL|en pinto bean| +25032|548802|48803|3|36|66628.08|0.08|0.03|R|F|1992-03-16|1992-05-07|1992-03-25|NONE|AIR|ackages: carefully ironic| +25032|705780|18295|4|13|23214.75|0.10|0.08|A|F|1992-03-07|1992-03-28|1992-03-15|DELIVER IN PERSON|RAIL|ily unusual requests. blithe| +25032|40670|3171|5|4|6442.68|0.05|0.06|R|F|1992-05-07|1992-04-21|1992-06-01|NONE|AIR|the slyly final| +25032|524991|37502|6|7|14111.79|0.04|0.07|A|F|1992-05-31|1992-05-01|1992-06-15|TAKE BACK RETURN|TRUCK|nding requests. slyly pending packages at| +25033|782446|7477|1|1|1528.41|0.02|0.02|N|O|1997-09-01|1997-10-04|1997-09-29|NONE|REG AIR|ate. fluffily regular requests sleep slyly| +25033|553787|16299|2|34|62585.84|0.09|0.05|N|O|1997-11-03|1997-10-17|1997-11-08|COLLECT COD|REG AIR|nic dolphins | +25034|702595|27624|1|47|75085.32|0.07|0.06|N|O|1997-07-15|1997-08-19|1997-07-27|DELIVER IN PERSON|RAIL| the deposi| +25034|498975|23994|2|23|45400.85|0.00|0.04|N|O|1997-06-14|1997-07-27|1997-07-02|COLLECT COD|RAIL| fluffily final pinto| +25034|261049|23555|3|25|25250.75|0.01|0.00|N|O|1997-09-17|1997-07-06|1997-09-28|NONE|TRUCK| against the ironic deposits. even,| +25034|436733|11750|4|33|55100.43|0.03|0.00|N|O|1997-08-18|1997-08-01|1997-09-16|TAKE BACK RETURN|SHIP|inal foxes. accounts ar| +25034|169132|44139|5|50|60056.50|0.09|0.03|N|O|1997-07-30|1997-08-09|1997-08-21|COLLECT COD|TRUCK|quickly even accounts. package| +25034|591341|41342|6|12|17187.84|0.06|0.05|N|O|1997-06-20|1997-06-25|1997-07-11|COLLECT COD|MAIL|ole quickly bli| +25035|964776|14777|1|19|34973.87|0.01|0.06|N|O|1995-06-18|1995-03-30|1995-06-27|TAKE BACK RETURN|RAIL|as. instructions boost blith| +25035|976458|38978|2|12|18412.92|0.03|0.04|A|F|1995-04-08|1995-04-03|1995-04-18|COLLECT COD|FOB|. unusual asymptotes are bold accounts.| +25035|320340|45353|3|14|19044.62|0.07|0.00|R|F|1995-05-12|1995-04-02|1995-06-11|TAKE BACK RETURN|SHIP|mold blithely ironic excuses. regular | +25036|990770|3290|1|48|89315.04|0.06|0.04|N|O|1996-03-07|1996-02-27|1996-03-19|NONE|FOB|sts. fluffily final packages above the| +25036|859158|21676|2|16|17873.76|0.10|0.01|N|O|1996-01-05|1996-02-10|1996-01-08|DELIVER IN PERSON|REG AIR|ic packages are idly fluffi| +25036|866298|41333|3|41|51834.25|0.05|0.02|N|O|1996-03-23|1996-03-05|1996-03-25|DELIVER IN PERSON|AIR|odolites detect slyly. furiousl| +25036|861796|24314|4|42|73825.50|0.09|0.05|N|O|1996-01-08|1996-01-20|1996-02-07|NONE|AIR|lithely final pinto beans. fluffily re| +25037|241053|16062|1|19|18886.76|0.09|0.03|A|F|1993-08-30|1993-10-24|1993-09-06|TAKE BACK RETURN|SHIP|ic pinto b| +25037|372469|22470|2|1|1541.45|0.09|0.02|A|F|1993-10-24|1993-10-01|1993-11-18|COLLECT COD|AIR| theodolites. c| +25037|72415|47418|3|14|19423.74|0.04|0.02|A|F|1993-09-15|1993-09-09|1993-10-06|COLLECT COD|AIR|yly final theodolites. ir| +25037|78708|3711|4|35|59034.50|0.08|0.03|R|F|1993-11-04|1993-09-07|1993-11-19|NONE|SHIP|ending requests sleep abov| +25037|828758|28759|5|17|28674.07|0.05|0.07|A|F|1993-10-08|1993-10-07|1993-10-22|DELIVER IN PERSON|RAIL|across the instructions. ironic, speci| +25037|921366|21367|6|49|67978.68|0.02|0.02|A|F|1993-11-06|1993-10-13|1993-12-04|COLLECT COD|AIR|lar pinto beans. blithel| +25037|391366|3874|7|47|68495.45|0.03|0.02|A|F|1993-11-08|1993-09-23|1993-12-02|NONE|RAIL|c pinto beans. blithely | +25038|688269|783|1|45|56575.35|0.04|0.00|R|F|1994-03-04|1994-02-12|1994-03-21|TAKE BACK RETURN|TRUCK| regular foxes are furiously bold depe| +25038|722759|22760|2|4|7126.88|0.03|0.04|R|F|1993-12-10|1994-02-01|1993-12-17|NONE|TRUCK|uests alongside of the c| +25038|408649|33666|3|25|38940.50|0.04|0.02|A|F|1994-01-23|1994-01-27|1994-02-19|COLLECT COD|AIR|about the blithely i| +25038|156787|6788|4|23|42406.94|0.08|0.01|R|F|1993-12-05|1994-01-05|1993-12-16|NONE|TRUCK|yly pending instr| +25038|109541|9542|5|28|43415.12|0.02|0.01|R|F|1994-02-17|1994-01-30|1994-03-06|DELIVER IN PERSON|RAIL|ate furiously among the sl| +25039|578537|28538|1|35|56542.85|0.09|0.01|N|O|1997-02-01|1997-01-18|1997-02-21|TAKE BACK RETURN|SHIP|ts after the even theodolites cajole duri| +25039|466831|4359|2|5|8989.05|0.01|0.03|N|O|1997-01-16|1997-02-04|1997-02-04|DELIVER IN PERSON|SHIP| regular request| +25039|11842|24343|3|8|14030.72|0.00|0.06|N|O|1997-02-21|1997-01-30|1997-02-26|NONE|TRUCK|kages. blithely express p| +25039|26160|26161|4|30|32584.80|0.03|0.03|N|O|1997-03-26|1997-01-29|1997-04-13|DELIVER IN PERSON|TRUCK| the final acc| +25039|654652|29679|5|26|41772.12|0.04|0.02|N|O|1997-03-26|1997-02-20|1997-03-29|COLLECT COD|SHIP|nts use. blithel| +25039|731301|6330|6|33|43964.91|0.05|0.01|N|O|1996-12-12|1997-01-27|1996-12-28|NONE|MAIL|arefully final theodoli| +25039|960791|48349|7|41|75921.75|0.00|0.01|N|O|1997-01-27|1997-02-10|1997-02-09|COLLECT COD|FOB| furiously close ideas. blithely ironi| +25064|999141|24180|1|50|62005.00|0.01|0.00|N|O|1998-03-24|1998-03-08|1998-04-16|TAKE BACK RETURN|SHIP|kages above the ironic, regul| +25064|557039|44573|2|35|38360.35|0.01|0.08|N|O|1998-03-23|1998-03-05|1998-04-18|COLLECT COD|RAIL|ully ironic requests sleep furiously. fluf| +25064|140392|15397|3|20|28647.80|0.07|0.05|N|O|1998-04-26|1998-02-10|1998-05-02|COLLECT COD|TRUCK|s. special deposits are slyly p| +25064|559499|9500|4|22|34286.34|0.03|0.00|N|O|1998-04-23|1998-03-26|1998-05-11|COLLECT COD|FOB|s asymptotes detect. | +25064|497596|47597|5|20|31871.40|0.02|0.03|N|O|1998-03-26|1998-02-19|1998-04-14|TAKE BACK RETURN|RAIL|braids use along the furio| +25064|86434|11437|6|3|4261.29|0.09|0.08|N|O|1998-01-09|1998-03-15|1998-01-25|DELIVER IN PERSON|TRUCK| carefully pending theodolites wake slyly| +25064|681489|6516|7|47|69111.15|0.08|0.08|N|O|1998-03-05|1998-03-17|1998-03-30|TAKE BACK RETURN|TRUCK|s sleep carefully i| +25065|783212|8243|1|10|12951.80|0.10|0.07|R|F|1995-03-10|1995-04-19|1995-03-19|TAKE BACK RETURN|AIR|packages integ| +25065|437603|12620|2|33|50839.14|0.10|0.06|N|F|1995-06-02|1995-04-16|1995-06-23|DELIVER IN PERSON|FOB|carefully express| +25065|788852|38853|3|6|11644.92|0.01|0.02|A|F|1995-03-01|1995-05-07|1995-03-03|TAKE BACK RETURN|AIR|slyly bold requests engage furi| +25066|832075|7108|1|9|9063.27|0.01|0.05|N|O|1996-04-02|1996-01-12|1996-04-09|COLLECT COD|MAIL|ly across the special, silent pa| +25066|669072|6612|2|5|5205.20|0.09|0.02|N|O|1996-03-08|1996-02-24|1996-03-16|COLLECT COD|AIR|nto beans sleep until the accounts.| +25066|80115|17619|3|5|5475.55|0.09|0.05|N|O|1996-03-14|1996-02-03|1996-03-27|DELIVER IN PERSON|FOB|usly final asy| +25067|780559|43075|1|39|63941.28|0.00|0.02|N|O|1996-03-28|1996-01-27|1996-04-17|TAKE BACK RETURN|MAIL|l accounts haggle idly. even asympt| +25068|906838|6839|1|29|53498.91|0.07|0.06|N|O|1996-03-24|1996-04-20|1996-04-16|DELIVER IN PERSON|FOB|ckages. doggedly regular deposits bo| +25068|218882|31387|2|43|77437.41|0.02|0.06|N|O|1996-02-17|1996-04-30|1996-03-12|COLLECT COD|MAIL| packages | +25068|749629|37172|3|15|25178.85|0.10|0.08|N|O|1996-04-10|1996-03-24|1996-04-19|TAKE BACK RETURN|AIR| deposits nag| +25068|2036|39537|4|18|16884.54|0.05|0.02|N|O|1996-02-26|1996-04-07|1996-03-23|DELIVER IN PERSON|TRUCK|ests are bli| +25068|207010|32019|5|43|39431.00|0.02|0.07|N|O|1996-05-30|1996-04-06|1996-06-18|TAKE BACK RETURN|SHIP|y sly foxes s| +25068|209074|9075|6|6|5898.36|0.02|0.04|N|O|1996-03-31|1996-03-30|1996-04-11|COLLECT COD|AIR|he platelets: requ| +25069|560303|47837|1|16|21812.48|0.04|0.08|N|O|1997-09-25|1997-10-14|1997-10-04|COLLECT COD|AIR|ously final accounts boost bl| +25069|9713|34714|2|13|21095.23|0.01|0.02|N|O|1997-11-04|1997-09-23|1997-11-05|NONE|TRUCK|regular accounts wake furiously. fu| +25069|236134|23647|3|12|12841.44|0.06|0.08|N|O|1997-11-29|1997-09-27|1997-12-23|COLLECT COD|REG AIR|ely bold deposit| +25069|691785|29325|4|35|62186.25|0.05|0.02|N|O|1997-11-29|1997-10-25|1997-12-16|NONE|RAIL|silent patterns nag furiously: blith| +25069|814876|2425|5|28|50143.24|0.07|0.01|N|O|1997-10-28|1997-10-01|1997-11-02|NONE|SHIP|gular instructions | +25069|614254|14255|6|18|21027.96|0.06|0.05|N|O|1997-08-19|1997-10-21|1997-09-07|COLLECT COD|SHIP|lites are about the ironi| +25069|758619|8620|7|10|16775.80|0.10|0.05|N|O|1997-08-15|1997-10-22|1997-09-03|TAKE BACK RETURN|REG AIR| Tiresias boost furiously | +25070|103164|40671|1|42|49020.72|0.01|0.00|A|F|1993-08-23|1993-10-27|1993-09-13|DELIVER IN PERSON|REG AIR|ly express notor| +25070|875220|25221|2|34|40636.12|0.03|0.06|A|F|1993-11-26|1993-10-17|1993-12-26|DELIVER IN PERSON|MAIL|nic theodolit| +25070|814937|27454|3|35|64816.15|0.01|0.05|A|F|1993-11-12|1993-09-18|1993-11-14|DELIVER IN PERSON|SHIP|al accounts across the quickly| +25070|637223|12248|4|46|53368.74|0.10|0.04|A|F|1993-08-23|1993-10-20|1993-09-01|DELIVER IN PERSON|REG AIR|counts cajole carefully | +25070|799832|37378|5|8|15454.40|0.09|0.05|R|F|1993-09-13|1993-10-15|1993-09-28|TAKE BACK RETURN|REG AIR| maintain | +25071|755005|42551|1|49|51938.53|0.04|0.02|N|O|1995-07-31|1995-07-15|1995-08-01|TAKE BACK RETURN|FOB|ptotes under| +25071|354550|4551|2|39|62577.06|0.05|0.03|N|O|1995-07-03|1995-06-27|1995-07-20|TAKE BACK RETURN|RAIL|ully ironic accounts try to nag. fin| +25071|907528|32565|3|46|70632.08|0.05|0.06|N|O|1995-07-17|1995-07-28|1995-08-13|COLLECT COD|RAIL|yly final dependencies| +25071|813030|13031|4|44|41491.56|0.06|0.01|N|O|1995-06-20|1995-06-08|1995-06-27|DELIVER IN PERSON|SHIP|uickly. regular depende| +25071|591278|16301|5|43|58877.75|0.00|0.08|N|O|1995-06-26|1995-07-03|1995-07-06|COLLECT COD|MAIL|ithely even packages wake | +25096|782688|20234|1|5|8853.25|0.09|0.00|A|F|1994-05-11|1994-06-16|1994-06-07|NONE|FOB|odolites along the sl| +25096|631490|44003|2|33|46908.18|0.10|0.06|R|F|1994-05-12|1994-05-23|1994-06-03|TAKE BACK RETURN|FOB|he unusual, even theodolites are care| +25096|442700|30225|3|43|70635.24|0.10|0.08|R|F|1994-07-03|1994-06-10|1994-07-31|COLLECT COD|FOB| doze blithely iro| +25096|457441|7442|4|6|8390.52|0.10|0.07|R|F|1994-07-28|1994-05-17|1994-08-18|TAKE BACK RETURN|RAIL|out the blithel| +25097|935579|48098|1|14|22603.42|0.03|0.06|R|F|1992-08-08|1992-09-12|1992-08-18|COLLECT COD|FOB|the slyly even forges. slyly final| +25098|760375|47921|1|28|40189.52|0.09|0.01|N|O|1995-12-25|1996-01-08|1996-01-02|DELIVER IN PERSON|FOB|requests x-ray | +25098|611010|36035|2|6|5525.88|0.02|0.04|N|O|1996-01-27|1996-02-03|1996-02-23|DELIVER IN PERSON|TRUCK|sleep furiously at the pending pinto b| +25098|244772|44773|3|29|49786.04|0.09|0.00|N|O|1996-02-23|1996-02-27|1996-03-14|TAKE BACK RETURN|SHIP| ironic requests except the furio| +25098|872867|47902|4|1|1839.82|0.02|0.00|N|O|1995-12-09|1996-01-10|1996-01-07|TAKE BACK RETURN|AIR| sleep furiously unusual fr| +25098|274766|12282|5|39|67889.25|0.06|0.07|N|O|1996-01-28|1996-01-05|1996-02-19|COLLECT COD|RAIL|lithely final pack| +25098|975486|525|6|36|56211.84|0.00|0.04|N|O|1996-02-18|1996-03-01|1996-03-19|DELIVER IN PERSON|RAIL|le carefully pending packa| +25099|950668|38226|1|7|12030.34|0.06|0.08|N|O|1996-12-14|1997-02-15|1996-12-15|DELIVER IN PERSON|FOB|ng packages | +25099|864525|39560|2|46|68516.08|0.01|0.04|N|O|1997-02-07|1997-02-19|1997-02-26|TAKE BACK RETURN|SHIP|iously eve| +25099|65736|40739|3|33|56157.09|0.06|0.05|N|O|1997-01-31|1997-01-13|1997-02-18|DELIVER IN PERSON|AIR|uickly pending somas dazzle | +25099|814715|39748|4|14|22815.38|0.01|0.03|N|O|1996-12-04|1997-01-09|1996-12-13|COLLECT COD|SHIP|tructions. final instruction| +25100|752709|27740|1|1|1761.67|0.01|0.07|A|F|1992-06-27|1992-07-10|1992-07-06|DELIVER IN PERSON|REG AIR|cial requests. blithely unu| +25100|773375|35891|2|18|26070.12|0.06|0.07|A|F|1992-07-09|1992-07-13|1992-08-01|TAKE BACK RETURN|RAIL| detect blithely among the blithely ca| +25100|97124|34628|3|27|30270.24|0.00|0.05|R|F|1992-06-03|1992-07-18|1992-06-20|DELIVER IN PERSON|AIR|bold accounts mold blithely id| +25100|348130|48131|4|26|30631.12|0.01|0.00|A|F|1992-08-15|1992-07-31|1992-08-30|COLLECT COD|SHIP|onic platelets? fluffily regular deposits | +25100|13593|26094|5|24|36158.16|0.02|0.04|R|F|1992-08-22|1992-08-22|1992-09-10|DELIVER IN PERSON|AIR|its wake. pending,| +25100|442578|5087|6|7|10643.85|0.10|0.01|R|F|1992-06-22|1992-08-08|1992-07-18|NONE|AIR|nic instructi| +25100|399763|24778|7|15|27941.25|0.05|0.06|R|F|1992-07-06|1992-07-05|1992-07-18|DELIVER IN PERSON|REG AIR| slyly special forges along the fluffily e| +25101|807857|32890|1|40|70592.40|0.09|0.07|A|F|1993-08-05|1993-08-12|1993-08-13|NONE|RAIL|requests around the furiously final| +25102|911211|48766|1|40|48886.80|0.09|0.06|N|O|1997-06-22|1997-07-04|1997-07-17|DELIVER IN PERSON|RAIL|ts haggle. regu| +25102|711503|49046|2|2|3028.94|0.05|0.03|N|O|1997-06-20|1997-06-13|1997-07-08|TAKE BACK RETURN|MAIL|pinto beans. bold accounts | +25102|222342|47351|3|37|46780.21|0.02|0.05|N|O|1997-07-17|1997-06-29|1997-07-30|DELIVER IN PERSON|FOB|tions cajole quickly about the carefully ir| +25102|885496|35497|4|37|54813.65|0.09|0.06|N|O|1997-05-14|1997-06-27|1997-06-10|NONE|FOB|al packages. special| +25102|526072|1093|5|45|49412.25|0.05|0.02|N|O|1997-06-05|1997-06-28|1997-06-21|NONE|RAIL| furiously pending dolphins sleep against| +25103|618735|18736|1|15|24805.50|0.05|0.03|R|F|1995-04-26|1995-05-24|1995-05-09|COLLECT COD|SHIP|s across the pending, | +25103|64022|1526|2|6|5916.12|0.09|0.05|N|O|1995-07-01|1995-06-21|1995-07-04|TAKE BACK RETURN|REG AIR|ccounts. furious th| +25103|16056|3557|3|10|9720.50|0.02|0.07|N|O|1995-07-31|1995-05-31|1995-08-18|NONE|TRUCK|dependencies. always | +25103|841434|16467|4|8|11003.12|0.01|0.03|A|F|1995-04-26|1995-06-08|1995-05-08|COLLECT COD|RAIL|ding, express accounts. furiously| +25103|970806|8364|5|18|33781.68|0.08|0.01|A|F|1995-04-22|1995-06-13|1995-05-16|NONE|AIR|he slyly special ideas. ironic, pending pi| +25103|323275|35782|6|23|29859.98|0.01|0.00|R|F|1995-05-02|1995-06-06|1995-05-28|COLLECT COD|TRUCK|ns. carefully final| +25103|280272|17788|7|21|26297.46|0.03|0.00|R|F|1995-04-19|1995-06-30|1995-04-22|DELIVER IN PERSON|FOB|usly. final ideas sleep acros| +25128|531280|31281|1|47|61629.22|0.10|0.07|A|F|1993-11-07|1993-09-25|1993-11-08|NONE|SHIP|- evenly reg| +25128|211018|36027|2|48|44592.00|0.09|0.00|R|F|1993-10-23|1993-09-05|1993-11-13|COLLECT COD|REG AIR|p furiously regular, fi| +25128|564929|2463|3|11|21932.90|0.00|0.02|A|F|1993-08-18|1993-09-09|1993-08-21|NONE|TRUCK|pending platelets use about| +25128|746221|33764|4|15|19007.85|0.03|0.01|A|F|1993-08-06|1993-10-03|1993-08-15|DELIVER IN PERSON|FOB| attainments | +25129|787264|37265|1|21|28375.83|0.02|0.03|N|O|1996-08-25|1996-10-19|1996-09-20|TAKE BACK RETURN|REG AIR| doggedly about the slyly f| +25129|531109|31110|2|49|55863.92|0.09|0.02|N|O|1996-10-27|1996-10-02|1996-11-25|TAKE BACK RETURN|AIR|uickly ironic deposits cajole according t| +25130|597475|35009|1|42|66042.90|0.09|0.06|R|F|1994-08-14|1994-09-25|1994-09-09|TAKE BACK RETURN|FOB|nding deposits run fluffily besides the sly| +25130|752073|14589|2|33|37126.32|0.08|0.07|A|F|1994-08-19|1994-10-12|1994-09-16|COLLECT COD|REG AIR|lyly ironic instruct| +25130|82914|45416|3|15|28453.65|0.03|0.08|R|F|1994-08-15|1994-09-09|1994-09-13|NONE|MAIL|ts. slyly express accounts wake | +25130|529258|41769|4|2|2574.46|0.06|0.00|A|F|1994-11-13|1994-09-25|1994-12-05|NONE|SHIP|boost unusual packages. packages eat f| +25130|235856|10865|5|46|82424.64|0.06|0.03|R|F|1994-08-15|1994-10-03|1994-09-08|DELIVER IN PERSON|RAIL| platelets-- caref| +25131|223361|10874|1|19|24402.65|0.10|0.00|N|O|1996-01-18|1996-01-18|1996-02-06|TAKE BACK RETURN|MAIL|ves promise blit| +25132|229786|4795|1|35|60051.95|0.10|0.02|R|F|1994-01-04|1994-01-26|1994-01-08|NONE|MAIL|y regular somas c| +25132|998547|23586|2|2|3291.00|0.09|0.02|R|F|1993-12-31|1994-01-03|1994-01-19|NONE|AIR|rly final pinto beans hi| +25132|577267|14801|3|38|51081.12|0.01|0.04|A|F|1994-01-25|1994-01-04|1994-02-16|COLLECT COD|RAIL|l somas sleep fluffily. slyly bo| +25132|124455|36958|4|18|26630.10|0.03|0.08|A|F|1993-12-17|1994-01-13|1993-12-25|NONE|MAIL|ctions wake slyly against the carefull| +25132|699718|49719|5|17|29200.56|0.07|0.06|R|F|1993-12-11|1993-12-16|1993-12-18|TAKE BACK RETURN|SHIP| sleep furiously ar| +25132|157824|32831|6|10|18818.20|0.01|0.03|R|F|1994-02-27|1994-01-14|1994-03-04|TAKE BACK RETURN|MAIL|among the bli| +25132|541949|41950|7|17|33845.64|0.02|0.00|R|F|1994-01-18|1994-01-10|1994-02-14|NONE|RAIL| across the carefu| +25133|531921|6942|1|8|15623.20|0.07|0.08|N|O|1997-06-10|1997-04-12|1997-06-28|NONE|REG AIR|sh quickly. ironic instru| +25133|981980|44500|2|49|101035.06|0.00|0.01|N|O|1997-05-12|1997-05-15|1997-05-23|TAKE BACK RETURN|TRUCK|indle accounts. slyly| +25133|130483|17990|3|49|74160.52|0.01|0.03|N|O|1997-04-19|1997-05-25|1997-05-04|DELIVER IN PERSON|RAIL|re blithely after the even deposi| +25133|14839|27340|4|44|77168.52|0.04|0.08|N|O|1997-04-16|1997-06-07|1997-04-24|NONE|RAIL| alongside of the quickly final packages. | +25133|389714|14729|5|43|77559.10|0.04|0.05|N|O|1997-06-01|1997-05-28|1997-06-07|COLLECT COD|FOB| deposits haggle carefully. fluffil| +25133|922048|9603|6|24|25680.00|0.04|0.03|N|O|1997-05-12|1997-05-13|1997-06-05|DELIVER IN PERSON|SHIP|slyly ironic patterns. s| +25134|469883|32393|1|33|61144.38|0.02|0.08|N|O|1998-08-03|1998-06-19|1998-08-30|NONE|AIR|encies about the r| +25134|309052|46571|2|16|16976.64|0.05|0.00|N|O|1998-06-10|1998-06-19|1998-06-28|DELIVER IN PERSON|RAIL|. fluffily regular accounts boost ca| +25134|225530|25531|3|31|45121.12|0.00|0.04|N|O|1998-07-12|1998-07-26|1998-07-24|DELIVER IN PERSON|FOB| accounts. even requ| +25134|467685|30195|4|48|79327.68|0.07|0.01|N|O|1998-06-17|1998-06-19|1998-06-23|COLLECT COD|MAIL|egrate fluffily. regular packages cajo| +25134|366531|41546|5|32|51120.64|0.08|0.02|N|O|1998-09-01|1998-07-03|1998-09-18|COLLECT COD|REG AIR| accounts. regular packages u| +25134|271056|46067|6|20|20540.80|0.00|0.02|N|O|1998-09-09|1998-06-22|1998-10-09|NONE|FOB|latelets are bold, unusual depos| +25134|622724|35237|7|2|3293.38|0.06|0.02|N|O|1998-07-17|1998-07-13|1998-08-07|COLLECT COD|RAIL|structions.| +25135|118867|18868|1|2|3771.72|0.01|0.05|N|O|1997-08-18|1997-08-31|1997-08-20|DELIVER IN PERSON|RAIL|oost despite | +25135|792687|17718|2|3|5338.95|0.04|0.08|N|O|1997-08-01|1997-09-07|1997-08-07|DELIVER IN PERSON|TRUCK|ests. blithely bold pac| +25135|676990|39504|3|31|60975.76|0.07|0.05|N|O|1997-09-15|1997-08-11|1997-09-19|DELIVER IN PERSON|REG AIR|ts. excuses abo| +25135|157601|20105|4|25|41465.00|0.10|0.04|N|O|1997-08-23|1997-09-24|1997-09-03|DELIVER IN PERSON|AIR|lites. final, final depos| +25135|787648|12679|5|47|81573.67|0.07|0.08|N|O|1997-08-23|1997-09-22|1997-09-12|COLLECT COD|TRUCK|ymptotes wake.| +25160|120849|45854|1|40|74793.60|0.10|0.08|A|F|1994-03-28|1994-05-15|1994-04-06|DELIVER IN PERSON|MAIL|nic ideas. furiously| +25160|103820|28825|2|34|62009.88|0.02|0.08|A|F|1994-03-03|1994-05-19|1994-03-25|COLLECT COD|TRUCK|ake. bold, final pinto bean| +25160|886992|36993|3|16|31663.20|0.06|0.06|R|F|1994-05-08|1994-05-10|1994-05-15|TAKE BACK RETURN|RAIL|es. silent, final deposits int| +25160|666694|16695|4|39|64765.74|0.02|0.05|R|F|1994-03-01|1994-04-26|1994-03-04|NONE|AIR|xpress accounts against the pending | +25161|662460|12461|1|42|59742.06|0.03|0.00|A|F|1995-05-15|1995-07-28|1995-06-05|DELIVER IN PERSON|TRUCK|phins detect slyly silent| +25161|953420|28459|2|37|54515.06|0.08|0.05|N|O|1995-08-26|1995-08-02|1995-09-20|TAKE BACK RETURN|AIR|refully ironic theodolites according to th| +25161|120966|20967|3|43|85439.28|0.10|0.01|N|O|1995-07-06|1995-07-28|1995-07-16|TAKE BACK RETURN|MAIL| sleep furi| +25161|64208|26710|4|12|14066.40|0.03|0.04|N|O|1995-08-03|1995-07-10|1995-08-13|TAKE BACK RETURN|AIR| pending deposits| +25162|864762|2314|1|27|46621.44|0.02|0.06|A|F|1995-03-06|1995-03-18|1995-03-16|DELIVER IN PERSON|TRUCK|ies cajole along the| +25162|53349|15851|2|45|58605.30|0.09|0.06|A|F|1995-02-23|1995-02-09|1995-02-24|COLLECT COD|MAIL|beans wake quickly about t| +25163|475782|13310|1|37|65037.12|0.03|0.01|N|O|1996-02-16|1996-02-10|1996-03-14|NONE|AIR|fily regular foxes haggle carefu| +25164|483527|33528|1|49|74014.50|0.08|0.01|N|O|1995-11-06|1995-10-25|1995-11-28|DELIVER IN PERSON|AIR|ously regular attain| +25164|625600|38113|2|25|38139.25|0.07|0.07|N|O|1995-11-09|1995-12-21|1995-11-16|NONE|REG AIR|owly special pinto| +25164|450094|95|3|22|22969.54|0.01|0.00|N|O|1996-01-20|1995-10-29|1996-02-15|COLLECT COD|RAIL|ies. carefully regula| +25164|721871|34386|4|17|32178.28|0.09|0.00|N|O|1995-11-10|1995-11-23|1995-11-14|TAKE BACK RETURN|RAIL|ironic accounts alongside of the blithely| +25164|474254|49273|5|17|20879.91|0.09|0.01|N|O|1995-10-08|1995-10-29|1995-10-14|TAKE BACK RETURN|REG AIR|y ironic foxes. deposits wake pending,| +25164|776385|38901|6|27|39456.45|0.07|0.08|N|O|1995-12-04|1995-12-18|1995-12-26|NONE|SHIP|es. regula| +25165|990349|2869|1|6|8635.80|0.04|0.00|N|O|1996-10-16|1996-11-18|1996-11-06|TAKE BACK RETURN|MAIL|even, unusua| +25165|787016|24562|2|47|51840.06|0.02|0.04|N|O|1996-12-26|1996-12-17|1997-01-15|COLLECT COD|RAIL|permanently. bold, f| +25166|314503|27010|1|4|6069.96|0.04|0.04|N|O|1998-05-09|1998-04-28|1998-06-07|TAKE BACK RETURN|MAIL|encies could have to wake blit| +25166|848365|48366|2|15|19699.80|0.06|0.05|N|O|1998-05-21|1998-06-13|1998-06-08|NONE|FOB|jole furiously. blithely regular asymptote| +25166|461209|48737|3|20|23403.60|0.08|0.05|N|O|1998-05-06|1998-04-17|1998-05-17|DELIVER IN PERSON|MAIL|ckages nag blithely slyly ironi| +25167|292033|4539|1|2|2050.04|0.00|0.03|N|O|1995-11-29|1995-11-23|1995-12-15|COLLECT COD|MAIL|heodolites are around| +25167|185484|47988|2|10|15694.80|0.04|0.00|N|O|1996-01-28|1995-12-11|1996-02-05|NONE|MAIL|kly. final pac| +25167|422946|22947|3|25|46723.00|0.06|0.00|N|O|1995-10-17|1995-11-12|1995-10-26|TAKE BACK RETURN|REG AIR|. regular deposits a| +25167|438853|26378|4|3|5375.49|0.03|0.01|N|O|1995-11-05|1995-12-25|1995-12-02|COLLECT COD|MAIL|inst the warthogs. c| +25192|727438|14981|1|47|68873.80|0.01|0.00|A|F|1992-04-29|1992-07-06|1992-05-23|COLLECT COD|AIR|re furiously even asymptotes.| +25193|207239|7240|1|15|17193.30|0.09|0.01|N|O|1996-01-20|1996-02-03|1996-01-22|TAKE BACK RETURN|RAIL|tect caref| +25193|58207|8208|2|10|11652.00|0.08|0.08|N|O|1995-12-31|1996-02-07|1996-01-02|COLLECT COD|REG AIR|ly regular dep| +25193|283534|21050|3|8|12140.16|0.03|0.00|N|O|1996-01-22|1996-01-28|1996-01-28|COLLECT COD|REG AIR|tructions solve furiously. excu| +25193|347444|34963|4|14|20880.02|0.06|0.04|N|O|1996-03-20|1996-03-15|1996-04-09|DELIVER IN PERSON|RAIL|xpress packages sleep quickly| +25193|482995|45505|5|14|27691.58|0.08|0.02|N|O|1996-03-24|1996-01-26|1996-04-18|DELIVER IN PERSON|TRUCK|the bold pi| +25193|687769|25309|6|43|75539.39|0.09|0.03|N|O|1996-02-17|1996-02-18|1996-02-25|DELIVER IN PERSON|FOB| silent ideas. blithel| +25193|322968|35475|7|18|35837.10|0.09|0.04|N|O|1996-02-18|1996-01-23|1996-03-19|DELIVER IN PERSON|RAIL|thely about the slyly express p| +25194|109844|34849|1|4|7415.36|0.10|0.05|R|F|1992-08-05|1992-07-28|1992-08-16|TAKE BACK RETURN|SHIP| blithely furiously bold| +25195|916943|29462|1|41|80355.90|0.01|0.07|A|F|1992-05-13|1992-07-09|1992-05-16|NONE|REG AIR|xpress accounts use-- regular dep| +25196|873292|35810|1|6|7591.50|0.00|0.06|N|O|1998-01-08|1998-01-06|1998-02-05|NONE|RAIL|xcuses haggle fluffi| +25196|402350|2351|2|1|1252.33|0.10|0.04|N|O|1997-12-17|1997-12-13|1998-01-02|DELIVER IN PERSON|SHIP|hinder fluffi| +25196|280677|18193|3|47|77910.02|0.01|0.05|N|O|1998-01-10|1997-11-18|1998-01-16|COLLECT COD|REG AIR|special requests cajole carefully care| +25196|337779|12792|4|22|39968.72|0.00|0.05|N|O|1997-11-29|1998-01-03|1997-12-18|TAKE BACK RETURN|REG AIR|y even excuses sleep. furiously f| +25196|46912|9413|5|4|7435.64|0.10|0.04|N|O|1997-12-17|1997-11-18|1998-01-13|DELIVER IN PERSON|REG AIR| requests. quickly brave ideas ca| +25196|446378|33903|6|32|42379.20|0.05|0.08|N|O|1997-11-04|1997-11-28|1997-11-24|NONE|SHIP|. silent packages after the| +25196|262153|37164|7|46|51296.44|0.02|0.02|N|O|1997-11-01|1997-12-22|1997-11-18|DELIVER IN PERSON|MAIL| x-ray carefully against| +25197|5327|5328|1|16|19717.12|0.10|0.06|N|O|1996-12-11|1997-01-20|1996-12-17|TAKE BACK RETURN|TRUCK| are slyly fluffily regular dinos. fluffil| +25197|516071|3602|2|3|3261.15|0.03|0.02|N|O|1997-01-11|1997-01-17|1997-01-20|COLLECT COD|AIR|wake furiously e| +25197|599411|11923|3|35|52863.65|0.00|0.07|N|O|1996-12-22|1997-01-27|1996-12-28|NONE|MAIL|beans after t| +25197|285147|10158|4|29|32831.77|0.08|0.02|N|O|1996-12-15|1996-12-22|1997-01-12|TAKE BACK RETURN|RAIL|r theodolites| +25197|463708|1236|5|30|50150.40|0.00|0.07|N|O|1997-02-26|1997-01-28|1997-03-16|COLLECT COD|FOB| furiously regular packages. blithe| +25197|535246|35247|6|48|61498.56|0.08|0.06|N|O|1997-02-23|1996-12-15|1997-03-02|COLLECT COD|FOB|ickly excuses. final, | +25197|871343|8895|7|16|21028.80|0.03|0.08|N|O|1996-12-18|1997-01-23|1997-01-11|NONE|FOB|ronic ideas. final deposits det| +25198|653197|15711|1|44|50607.04|0.01|0.06|N|O|1995-11-09|1995-09-09|1995-12-03|NONE|SHIP|o beans wake carefull| +25198|273091|48102|2|43|45755.44|0.04|0.00|N|O|1995-08-12|1995-09-15|1995-08-16|DELIVER IN PERSON|FOB|ickly bold dolphins. regular d| +25198|824451|49484|3|6|8252.46|0.05|0.03|N|O|1995-10-19|1995-08-15|1995-11-05|DELIVER IN PERSON|TRUCK| along the courts haggle quickly af| +25199|226330|13843|1|9|11306.88|0.06|0.06|A|F|1993-04-22|1993-07-18|1993-05-12|TAKE BACK RETURN|REG AIR|the ironic packages hagg| +25199|923154|48191|2|14|16479.54|0.05|0.07|R|F|1993-08-19|1993-07-04|1993-09-12|COLLECT COD|RAIL|packages. slyly final | +25199|445720|33245|3|17|28316.90|0.10|0.03|A|F|1993-07-05|1993-06-10|1993-07-24|NONE|TRUCK| beans haggle| +25199|210029|35038|4|21|19719.21|0.05|0.08|A|F|1993-08-16|1993-06-20|1993-08-29|TAKE BACK RETURN|SHIP|lar deposits affix quickly quickly final i| +25224|39327|1828|1|43|54451.76|0.10|0.04|A|F|1994-12-07|1994-12-15|1994-12-31|COLLECT COD|RAIL|l, unusual grouches are carefu| +25224|964347|14348|2|44|62097.20|0.09|0.03|A|F|1995-01-07|1995-01-10|1995-02-04|TAKE BACK RETURN|FOB|ding packages ar| +25224|774789|49820|3|5|9318.75|0.09|0.04|R|F|1994-11-16|1994-11-19|1994-11-24|COLLECT COD|RAIL|ronic instructions | +25224|878447|3482|4|33|47038.20|0.04|0.01|A|F|1994-12-05|1994-11-30|1994-12-11|COLLECT COD|MAIL| cajole un| +25224|44249|19250|5|22|26251.28|0.07|0.05|R|F|1995-01-26|1995-01-06|1995-02-22|NONE|FOB|gage never slyly even| +25224|679694|4721|6|40|66946.40|0.03|0.00|R|F|1995-01-04|1994-12-20|1995-01-15|DELIVER IN PERSON|REG AIR|. special p| +25224|613193|38218|7|13|14380.08|0.06|0.07|A|F|1994-11-30|1995-01-05|1994-12-22|DELIVER IN PERSON|RAIL|y regular instructions. | +25225|918872|6427|1|23|43489.09|0.02|0.04|A|F|1994-12-24|1994-11-17|1995-01-13|TAKE BACK RETURN|SHIP|into beans cajole. packages wake blithely.| +25225|475822|841|2|31|55731.80|0.10|0.05|R|F|1994-10-20|1994-10-28|1994-11-19|DELIVER IN PERSON|TRUCK|ntain silent foxes| +25225|123990|48995|3|46|92643.54|0.09|0.07|R|F|1994-12-09|1994-10-30|1995-01-04|COLLECT COD|MAIL| blithely. reque| +25226|47580|47581|1|15|22913.70|0.04|0.06|R|F|1993-11-23|1993-12-01|1993-12-01|NONE|AIR| even, silent asymptotes haggle. i| +25226|676388|1415|2|44|60031.40|0.03|0.00|R|F|1993-12-11|1993-12-10|1993-12-15|DELIVER IN PERSON|MAIL|nts are car| +25226|45133|32634|3|6|6468.78|0.04|0.08|R|F|1993-10-26|1993-12-10|1993-11-24|NONE|SHIP|onic accounts. express, final depo| +25226|548512|23533|4|6|9362.94|0.03|0.05|A|F|1993-12-27|1993-12-01|1994-01-06|COLLECT COD|REG AIR|packages. sometimes ironic accou| +25226|838467|984|5|41|57622.22|0.06|0.07|A|F|1994-01-02|1993-12-17|1994-01-23|DELIVER IN PERSON|TRUCK|s serve slyly express pack| +25227|501247|1248|1|21|26212.62|0.07|0.07|N|O|1998-08-26|1998-08-15|1998-09-10|TAKE BACK RETURN|RAIL|ess deposits. blithel| +25228|967777|42816|1|29|53497.17|0.09|0.00|N|O|1997-09-14|1997-08-25|1997-09-26|NONE|MAIL|deas. unusual, bold excuses haggle slyly b| +25228|427809|27810|2|25|43419.50|0.06|0.03|N|O|1997-08-28|1997-09-09|1997-09-01|TAKE BACK RETURN|FOB|kages wake above the pinto bean| +25228|178643|28644|3|4|6886.56|0.05|0.08|N|O|1997-09-12|1997-08-17|1997-09-15|COLLECT COD|AIR|le quickly against the| +25229|64567|39570|1|26|39820.56|0.06|0.02|N|O|1997-06-07|1997-07-05|1997-06-23|NONE|TRUCK|he unusual, ironic accounts. quickly ironi| +25229|170583|33087|2|32|52914.56|0.09|0.01|N|O|1997-09-11|1997-08-21|1997-10-10|TAKE BACK RETURN|FOB|eep carefully since the furiously si| +25229|986838|36839|3|13|25022.27|0.06|0.02|N|O|1997-07-22|1997-06-22|1997-08-08|COLLECT COD|FOB| furiously regular deposits. slyly re| +25229|782993|32994|4|35|72658.60|0.07|0.08|N|O|1997-07-17|1997-06-27|1997-08-06|COLLECT COD|FOB|de of the f| +25229|758537|21053|5|11|17550.50|0.09|0.07|N|O|1997-07-27|1997-07-31|1997-08-26|COLLECT COD|REG AIR|nently final dolphins. e| +25229|716175|16176|6|6|7146.84|0.05|0.05|N|O|1997-08-07|1997-06-26|1997-09-06|NONE|SHIP|ccounts inte| +25229|748405|10920|7|30|43601.10|0.05|0.01|N|O|1997-07-27|1997-08-03|1997-08-15|COLLECT COD|FOB|s. ironic pinto| +25230|439738|14755|1|47|78852.37|0.02|0.02|N|O|1995-08-08|1995-06-19|1995-08-20|COLLECT COD|TRUCK|rts use regularly regular pinto bea| +25230|660844|48384|2|25|45120.25|0.06|0.08|A|F|1995-05-04|1995-06-25|1995-05-10|COLLECT COD|FOB|y among the regu| +25230|790018|27564|3|44|48751.12|0.03|0.05|N|O|1995-08-03|1995-06-10|1995-08-05|DELIVER IN PERSON|AIR|ronic, silent ideas haggle. regular, final | +25230|816617|41650|4|39|59809.23|0.10|0.00|N|F|1995-05-30|1995-07-19|1995-06-27|TAKE BACK RETURN|RAIL|gular asymptotes. | +25230|869778|19779|5|9|15729.57|0.07|0.03|N|O|1995-08-17|1995-07-01|1995-08-31|DELIVER IN PERSON|SHIP| deposits. slyly | +25231|632509|32510|1|47|67749.09|0.10|0.05|N|O|1998-03-09|1997-12-30|1998-03-27|TAKE BACK RETURN|AIR|as. requests breach slyly| +25231|574858|49881|2|40|77313.20|0.04|0.04|N|O|1998-01-20|1998-02-03|1998-01-28|TAKE BACK RETURN|RAIL|es above the dependencies d| +25256|348854|36373|1|8|15222.72|0.03|0.04|R|F|1994-10-02|1994-09-18|1994-11-01|TAKE BACK RETURN|AIR|ajole quickly carefull| +25256|184880|9887|2|17|33402.96|0.06|0.07|A|F|1994-09-22|1994-09-17|1994-10-19|DELIVER IN PERSON|FOB|cajole furiously above the care| +25256|275338|25339|3|34|44652.88|0.08|0.07|R|F|1994-11-25|1994-10-02|1994-11-30|COLLECT COD|SHIP|, final instructions. carefully even foxes| +25256|595049|7561|4|43|49192.86|0.04|0.08|R|F|1994-10-01|1994-10-16|1994-10-20|NONE|MAIL|lithely regular ideas wake carefully. | +25256|981620|44140|5|19|32330.02|0.09|0.04|R|F|1994-10-27|1994-10-14|1994-11-20|NONE|AIR|regular theodolites. carefu| +25256|75495|12999|6|45|66172.05|0.01|0.07|A|F|1994-08-21|1994-09-30|1994-08-30|DELIVER IN PERSON|RAIL| the bold, final| +25256|831975|7008|7|1|1906.93|0.00|0.02|R|F|1994-11-15|1994-10-23|1994-12-10|NONE|MAIL| nag about the pend| +25257|998118|23157|1|42|51074.94|0.03|0.08|R|F|1995-02-20|1995-04-03|1995-03-15|DELIVER IN PERSON|SHIP|s hang against the packages. e| +25257|367733|30241|2|13|23409.36|0.09|0.03|R|F|1995-02-19|1995-03-13|1995-03-21|TAKE BACK RETURN|FOB|ng the pending foxes nag furiously acro| +25257|487084|12103|3|50|53553.00|0.05|0.00|A|F|1995-02-16|1995-02-19|1995-02-18|DELIVER IN PERSON|FOB|hely even deposits haggle furious| +25258|187193|49697|1|41|52487.79|0.01|0.00|A|F|1993-04-26|1993-03-01|1993-05-11|NONE|REG AIR|ss ideas haggle blithely eve| +25258|136274|36275|2|28|36687.56|0.06|0.04|R|F|1993-01-08|1993-03-22|1993-01-30|NONE|AIR|foxes cajole furiously. ironic requests | +25258|355228|30243|3|29|37213.09|0.09|0.08|R|F|1993-04-26|1993-02-16|1993-05-10|DELIVER IN PERSON|AIR| furiously even asym| +25258|314367|14368|4|16|22101.60|0.06|0.04|R|F|1993-02-06|1993-02-06|1993-02-09|DELIVER IN PERSON|RAIL| detect requests. regular dependencies un| +25259|999416|49417|1|10|15153.70|0.01|0.04|N|O|1997-04-18|1997-04-07|1997-05-05|TAKE BACK RETURN|REG AIR|fily speci| +25259|169251|19252|2|35|46208.75|0.09|0.06|N|O|1997-05-22|1997-05-28|1997-06-18|DELIVER IN PERSON|SHIP|cross the blithely ironic forges. carefu| +25259|595087|7599|3|23|27187.38|0.05|0.04|N|O|1997-04-08|1997-05-29|1997-04-24|COLLECT COD|SHIP|olve carefully final depend| +25259|621159|8696|4|2|2160.24|0.05|0.04|N|O|1997-05-29|1997-06-04|1997-06-28|COLLECT COD|REG AIR|pecial pinto beans are slyly slyly pend| +25259|817391|17392|5|44|57567.40|0.07|0.02|N|O|1997-05-31|1997-05-04|1997-06-19|DELIVER IN PERSON|SHIP| pinto beans. slyly care| +25260|975306|345|1|20|27625.20|0.10|0.05|A|F|1994-09-04|1994-10-13|1994-09-18|COLLECT COD|AIR|nic pinto beans integrate blith| +25260|955954|18474|2|16|32158.56|0.05|0.02|R|F|1994-10-21|1994-10-19|1994-11-20|COLLECT COD|REG AIR|ngside of the unusual excuses use slyl| +25260|708851|21366|3|15|27897.30|0.00|0.01|R|F|1994-08-06|1994-10-20|1994-08-29|COLLECT COD|TRUCK| the furiously express | +25260|645252|32789|4|44|52677.68|0.01|0.04|A|F|1994-09-23|1994-10-21|1994-10-09|COLLECT COD|RAIL|ular accou| +25260|739453|1968|5|41|61189.22|0.07|0.05|R|F|1994-09-25|1994-10-06|1994-10-11|COLLECT COD|MAIL|affix slyly. slyly final p| +25260|978548|41068|6|10|16265.00|0.04|0.01|A|F|1994-10-08|1994-09-17|1994-11-07|COLLECT COD|MAIL| about the theo| +25261|764534|39565|1|17|27174.50|0.08|0.08|N|O|1997-03-10|1997-01-25|1997-03-31|DELIVER IN PERSON|MAIL|. furiously | +25261|519451|19452|2|8|11763.44|0.07|0.08|N|O|1997-02-26|1997-03-15|1997-03-17|DELIVER IN PERSON|AIR|finally pending theodolites! f| +25261|408951|33968|3|3|5579.79|0.01|0.01|N|O|1997-02-16|1997-03-06|1997-02-28|NONE|RAIL|hins snooze. furiously ironic asymp| +25262|362568|37583|1|28|45655.40|0.04|0.05|R|F|1994-06-26|1994-07-07|1994-07-20|TAKE BACK RETURN|FOB|symptotes wake quickly| +25262|675368|12908|2|47|63136.51|0.07|0.07|A|F|1994-06-09|1994-08-01|1994-07-09|COLLECT COD|MAIL|fully final packages hagg| +25262|905048|42603|3|42|44226.00|0.00|0.04|R|F|1994-05-11|1994-07-09|1994-05-14|DELIVER IN PERSON|FOB|ts sleep slyly. express depos| +25262|136354|48857|4|15|20855.25|0.04|0.06|R|F|1994-07-26|1994-08-01|1994-08-24|NONE|RAIL|n packages. special pinto beans slee| +25263|467943|30453|1|12|22931.04|0.02|0.06|N|O|1998-03-26|1998-03-21|1998-04-20|NONE|SHIP|quickly bold asymptotes sleep. blit| +25288|128282|3287|1|38|49790.64|0.06|0.03|N|O|1997-06-28|1997-06-17|1997-07-02|NONE|SHIP|posits use. furiously final pl| +25288|19153|31654|2|15|16082.25|0.00|0.08|N|O|1997-05-18|1997-06-13|1997-05-28|NONE|TRUCK|s. even packages| +25288|899046|24081|3|8|8360.00|0.06|0.06|N|O|1997-06-30|1997-07-07|1997-07-14|TAKE BACK RETURN|SHIP|ing accoun| +25288|250134|25145|4|22|23850.64|0.07|0.04|N|O|1997-07-18|1997-06-12|1997-08-09|DELIVER IN PERSON|SHIP|lyly final instructions. carefu| +25289|690185|15212|1|15|17627.25|0.00|0.04|N|O|1995-10-13|1995-11-20|1995-11-01|DELIVER IN PERSON|FOB|ests. doggedly brave deposits wak| +25289|934624|34625|2|14|23220.12|0.09|0.00|N|O|1995-10-23|1995-11-24|1995-11-01|DELIVER IN PERSON|TRUCK|the furiously eve| +25289|215542|28047|3|21|30608.13|0.07|0.05|N|O|1995-11-15|1995-11-25|1995-11-18|DELIVER IN PERSON|TRUCK|e furiously fin| +25290|374488|49503|1|37|57811.39|0.05|0.01|R|F|1993-07-22|1993-07-09|1993-07-28|DELIVER IN PERSON|RAIL|al requests. blithel| +25291|306515|19022|1|39|59338.50|0.02|0.02|N|O|1996-12-06|1996-11-09|1996-12-22|NONE|MAIL| furiously even requests across the fu| +25291|596095|21118|2|2|2382.14|0.08|0.03|N|O|1996-11-05|1996-12-09|1996-11-16|DELIVER IN PERSON|AIR|ajole against the busy deposits. carefu| +25291|552523|40057|3|5|7877.50|0.03|0.05|N|O|1996-11-01|1996-11-06|1996-11-10|NONE|REG AIR|uests sleep qui| +25291|248277|23286|4|32|39208.32|0.05|0.06|N|O|1996-11-28|1996-10-12|1996-12-01|NONE|SHIP| quickly ag| +25291|784782|47298|5|46|85870.50|0.02|0.05|N|O|1996-10-13|1996-11-06|1996-10-28|DELIVER IN PERSON|AIR| deposits cajo| +25291|822798|10347|6|36|61947.00|0.07|0.00|N|O|1996-10-17|1996-12-02|1996-10-18|TAKE BACK RETURN|FOB|ounts hang | +25291|764775|14776|7|24|44153.76|0.00|0.02|N|O|1996-12-17|1996-11-23|1997-01-15|COLLECT COD|FOB|equests. package| +25292|566717|29229|1|38|67780.22|0.04|0.01|A|F|1992-11-06|1992-09-28|1992-11-11|TAKE BACK RETURN|MAIL|ss packages sleep fluffily furi| +25292|808409|45958|2|28|36886.08|0.02|0.01|R|F|1992-10-05|1992-10-24|1992-10-31|TAKE BACK RETURN|FOB|beans haggle sp| +25292|923242|48279|3|11|13917.20|0.03|0.00|R|F|1992-12-10|1992-10-03|1993-01-06|TAKE BACK RETURN|AIR|ly express requests. carefully regul| +25292|922133|47170|4|48|55444.32|0.01|0.01|A|F|1992-11-18|1992-10-15|1992-11-29|TAKE BACK RETURN|SHIP|the carefully bold depend| +25292|287611|12622|5|31|49556.60|0.01|0.02|A|F|1992-10-27|1992-11-01|1992-11-13|NONE|MAIL|lly bold asymptotes. instruct| +25293|344132|19145|1|12|14113.44|0.08|0.07|N|O|1995-07-08|1995-05-29|1995-07-13|DELIVER IN PERSON|SHIP|y silent, express tithes| +25294|434118|34119|1|22|23145.98|0.09|0.02|N|O|1996-09-07|1996-09-26|1996-10-02|TAKE BACK RETURN|SHIP|ns sleep fluffily ag| +25294|207555|20060|2|5|7312.70|0.01|0.08|N|O|1996-09-09|1996-09-15|1996-10-06|NONE|TRUCK|ven accounts among the| +25294|366184|3706|3|8|10001.36|0.04|0.03|N|O|1996-07-28|1996-10-19|1996-08-16|DELIVER IN PERSON|REG AIR| accounts will have to cajole across | +25294|447595|35120|4|40|61702.80|0.07|0.04|N|O|1996-09-01|1996-08-25|1996-09-18|NONE|FOB|after the clo| +25294|722247|34762|5|45|57114.45|0.04|0.03|N|O|1996-11-19|1996-10-15|1996-12-15|NONE|REG AIR|odolites. clo| +25294|799518|37064|6|49|79256.52|0.04|0.02|N|O|1996-10-17|1996-10-04|1996-10-31|DELIVER IN PERSON|MAIL|. quickly even packages above the regular,| +25295|165442|27946|1|14|21104.16|0.10|0.04|N|O|1996-09-30|1996-10-23|1996-10-19|NONE|FOB|ular, regular d| +25295|568319|18320|2|24|33294.96|0.08|0.00|N|O|1996-09-06|1996-09-11|1996-09-07|DELIVER IN PERSON|FOB| haggle quickly against th| +25295|735526|35527|3|14|21860.86|0.01|0.03|N|O|1996-09-09|1996-09-19|1996-10-09|COLLECT COD|FOB|e slyly final excuses. regular,| +25295|970229|45268|4|1|1299.18|0.07|0.08|N|O|1996-11-20|1996-10-26|1996-12-19|NONE|FOB|ms. excuses are quickly fu| +25295|636281|23818|5|37|45038.25|0.01|0.08|N|O|1996-10-17|1996-10-13|1996-11-02|TAKE BACK RETURN|FOB|ng accounts. silently even depend| +25320|514031|26542|1|12|12540.12|0.08|0.03|N|O|1995-12-26|1995-12-02|1996-01-03|DELIVER IN PERSON|REG AIR| furiously even d| +25320|310029|10030|2|18|18702.18|0.10|0.08|N|O|1996-01-15|1995-12-11|1996-01-24|DELIVER IN PERSON|MAIL|final pinto beans snooze furiously| +25320|640854|28391|3|24|43075.68|0.03|0.01|N|O|1996-01-30|1996-01-11|1996-01-31|DELIVER IN PERSON|MAIL| fluffily even deposits. final fo| +25320|822972|35489|4|6|11369.58|0.03|0.03|N|O|1996-01-02|1995-11-25|1996-01-04|NONE|TRUCK| along the quickly pend| +25320|682305|19845|5|39|50203.53|0.06|0.08|N|O|1995-11-25|1995-11-19|1995-11-29|NONE|MAIL|hins are except the | +25321|436721|49230|1|2|3315.40|0.03|0.07|R|F|1994-12-01|1994-11-12|1994-12-30|COLLECT COD|MAIL|ly bold theodolites-- brave ideas wake | +25321|958430|45988|2|2|2976.78|0.00|0.06|R|F|1994-11-15|1994-11-28|1994-12-01|COLLECT COD|AIR|quickly after the blit| +25321|331009|31010|3|10|10399.90|0.03|0.00|A|F|1994-09-19|1994-11-22|1994-10-14|NONE|SHIP|y special ideas. reg| +25321|252466|2467|4|10|14184.50|0.03|0.07|A|F|1994-11-07|1994-11-27|1994-11-16|TAKE BACK RETURN|FOB|ely. deposits believe blithely across t| +25321|185924|35925|5|22|44218.24|0.09|0.06|R|F|1994-11-14|1994-12-04|1994-11-15|TAKE BACK RETURN|TRUCK|yly ironic | +25321|816892|41925|6|3|5426.55|0.01|0.03|A|F|1994-11-25|1994-11-21|1994-11-29|COLLECT COD|AIR|riously. furiously bold requests thrash | +25322|414468|26977|1|5|6912.20|0.02|0.00|N|O|1997-03-12|1997-01-22|1997-04-04|NONE|RAIL|ic, final requests. | +25322|962180|49738|2|17|21116.38|0.04|0.07|N|O|1997-04-05|1997-03-08|1997-05-01|DELIVER IN PERSON|AIR| kindle idly. special theodolite| +25322|351877|26892|3|20|38577.20|0.10|0.05|N|O|1997-03-04|1997-02-08|1997-03-29|COLLECT COD|MAIL| furiously abov| +25322|980803|30804|4|9|16953.84|0.04|0.02|N|O|1996-12-31|1997-02-02|1997-01-21|DELIVER IN PERSON|SHIP|ts: express packages ag| +25322|347840|35359|5|33|62298.39|0.06|0.01|N|O|1997-02-06|1997-01-27|1997-02-22|DELIVER IN PERSON|RAIL|Tiresias. furiou| +25322|131590|44093|6|6|9729.54|0.10|0.03|N|O|1997-04-09|1997-03-06|1997-05-03|DELIVER IN PERSON|RAIL|. busily regular p| +25322|617250|17251|7|35|40852.70|0.03|0.02|N|O|1997-01-14|1997-01-19|1997-02-09|COLLECT COD|RAIL|uthless deposits alongside of the f| +25323|111436|11437|1|33|47765.19|0.09|0.01|R|F|1993-04-08|1993-02-13|1993-04-28|NONE|MAIL|even ideas| +25323|900715|13234|2|14|24019.38|0.07|0.06|A|F|1993-04-05|1993-02-19|1993-04-25|COLLECT COD|RAIL|ronic deposits. final dolphins ha| +25323|305234|17741|3|28|34698.16|0.01|0.04|A|F|1993-02-28|1993-02-17|1993-03-22|TAKE BACK RETURN|SHIP| packages nag f| +25323|56048|43552|4|43|43173.72|0.00|0.02|A|F|1993-03-17|1993-02-20|1993-03-24|DELIVER IN PERSON|FOB|ogged pinto beans are c| +25323|990484|15523|5|17|26765.48|0.01|0.04|A|F|1993-03-07|1993-02-12|1993-03-29|NONE|TRUCK|en, ironic deposits acc| +25323|56319|31322|6|46|58664.26|0.00|0.05|A|F|1993-03-28|1993-02-13|1993-04-06|DELIVER IN PERSON|TRUCK| ironic excuses thra| +25324|521303|46324|1|40|52971.20|0.02|0.08|A|F|1994-04-13|1994-02-12|1994-05-07|COLLECT COD|REG AIR| blithely un| +25324|533795|33796|2|45|82294.65|0.06|0.06|R|F|1994-01-16|1994-04-06|1994-01-30|TAKE BACK RETURN|SHIP|refully regular deposits hagg| +25324|492187|29715|3|11|12970.76|0.02|0.08|A|F|1994-02-17|1994-04-08|1994-02-23|COLLECT COD|AIR|cajole quietly ironic waters. furiously| +25324|180055|42559|4|26|29511.30|0.00|0.01|A|F|1994-02-19|1994-03-24|1994-02-20|COLLECT COD|TRUCK|le quickly after the regular requ| +25324|183242|45746|5|26|34456.24|0.00|0.03|R|F|1994-04-27|1994-02-14|1994-05-22|NONE|RAIL|ress, ironic instructions wa| +25324|746209|46210|6|50|62758.50|0.08|0.03|A|F|1994-05-09|1994-02-15|1994-05-15|NONE|SHIP| patterns! | +25324|529860|29861|7|12|22678.08|0.08|0.01|A|F|1994-03-28|1994-03-04|1994-04-04|NONE|AIR|ending, eve| +25325|350484|12992|1|33|50637.51|0.09|0.07|N|O|1997-05-16|1997-04-28|1997-06-05|DELIVER IN PERSON|REG AIR|deposits cajole carefully even | +25325|574856|24857|2|32|61786.56|0.07|0.05|N|O|1997-03-08|1997-05-29|1997-03-18|DELIVER IN PERSON|RAIL|r packages use slyly: furio| +25325|598654|11166|3|29|50826.27|0.07|0.02|N|O|1997-05-04|1997-03-30|1997-05-08|DELIVER IN PERSON|TRUCK|s are blithely. carefully express depende| +25326|229663|42168|1|22|35038.30|0.07|0.05|N|O|1997-07-06|1997-06-13|1997-07-19|DELIVER IN PERSON|FOB|cial theodolites? fluffily bold | +25326|932816|20371|2|44|81345.88|0.03|0.01|N|O|1997-05-17|1997-06-20|1997-05-22|TAKE BACK RETURN|TRUCK|cuses. final accounts boost across| +25326|835776|48293|3|10|17117.30|0.06|0.06|N|O|1997-05-10|1997-07-20|1997-05-21|DELIVER IN PERSON|AIR|nis are carefully above the carefully | +25326|877688|2723|4|23|38309.72|0.08|0.00|N|O|1997-05-27|1997-05-31|1997-06-05|NONE|REG AIR| above the ruthle| +25326|290648|28164|5|9|14747.67|0.02|0.03|N|O|1997-08-02|1997-07-10|1997-08-10|TAKE BACK RETURN|FOB|counts use slyly regular foxes. close, reg| +25327|340694|28213|1|5|8673.40|0.09|0.02|N|O|1997-03-26|1997-02-22|1997-03-27|DELIVER IN PERSON|RAIL|telets affix fluffily ab| +25327|34286|21787|2|39|47590.92|0.07|0.06|N|O|1997-04-05|1997-03-11|1997-05-04|TAKE BACK RETURN|TRUCK|ajole caref| +25327|240644|3149|3|8|12677.04|0.04|0.00|N|O|1997-01-01|1997-02-06|1997-01-21|TAKE BACK RETURN|RAIL|ly silent p| +25327|498420|48421|4|15|21276.00|0.10|0.07|N|O|1997-01-04|1997-02-07|1997-01-21|DELIVER IN PERSON|FOB|ages cajole across the| +25327|933871|21426|5|43|81907.69|0.05|0.05|N|O|1997-04-23|1997-02-18|1997-04-24|DELIVER IN PERSON|MAIL|yly even packages. even deposits detect ab| +25327|567722|42745|6|37|66218.90|0.04|0.01|N|O|1997-02-10|1997-03-16|1997-02-16|DELIVER IN PERSON|FOB|ve the slyl| +25327|703537|28566|7|38|58539.00|0.08|0.00|N|O|1997-04-10|1997-03-12|1997-04-18|NONE|REG AIR|ular requests cajole quickly on the e| +25352|334169|9182|1|20|24063.00|0.06|0.01|N|O|1996-02-16|1996-04-28|1996-03-03|DELIVER IN PERSON|MAIL|c accounts | +25352|377790|15312|2|35|65372.30|0.10|0.01|N|O|1996-05-18|1996-03-22|1996-06-01|NONE|REG AIR| ironic, spe| +25352|508000|33021|3|5|5039.90|0.06|0.00|N|O|1996-02-18|1996-04-21|1996-03-07|COLLECT COD|SHIP| sleep across the ironic acc| +25352|943504|6023|4|10|15474.60|0.01|0.06|N|O|1996-04-01|1996-03-27|1996-04-18|COLLECT COD|AIR|l multipliers across the| +25352|468771|31281|5|42|73069.50|0.02|0.03|N|O|1996-03-24|1996-03-26|1996-04-15|DELIVER IN PERSON|RAIL|l accounts alongside of the f| +25352|627117|2142|6|16|16705.28|0.04|0.01|N|O|1996-04-22|1996-04-12|1996-05-04|DELIVER IN PERSON|MAIL| platelets wake requests. ev| +25352|948342|23379|7|27|37538.10|0.09|0.08|N|O|1996-03-12|1996-04-07|1996-03-14|TAKE BACK RETURN|RAIL|l, even requests integrate bravel| +25353|783339|33340|1|10|14223.00|0.00|0.00|A|F|1993-12-23|1993-12-04|1993-12-29|TAKE BACK RETURN|AIR|sts cajole among the slyly final deposits| +25353|569123|19124|2|39|46491.90|0.10|0.01|R|F|1993-12-29|1993-12-25|1994-01-16|NONE|AIR|re blithely fin| +25354|480345|5364|1|37|49036.84|0.10|0.03|N|O|1998-03-26|1998-04-07|1998-03-30|TAKE BACK RETURN|RAIL|es are above the| +25354|153576|41086|2|28|45627.96|0.04|0.03|N|O|1998-04-15|1998-04-05|1998-05-01|DELIVER IN PERSON|FOB|symptotes boost along the| +25354|135541|10546|3|18|28377.72|0.03|0.02|N|O|1998-03-09|1998-02-16|1998-04-08|NONE|AIR|, express foxes. exp| +25354|35091|35092|4|16|16417.44|0.01|0.05|N|O|1998-02-14|1998-04-07|1998-02-20|DELIVER IN PERSON|SHIP|. fluffily regular gi| +25354|764415|39446|5|32|47340.16|0.02|0.04|N|O|1998-05-03|1998-04-13|1998-05-04|DELIVER IN PERSON|FOB|ackages again| +25355|529433|16964|1|10|14624.10|0.00|0.07|A|F|1994-03-13|1994-01-07|1994-03-19|TAKE BACK RETURN|TRUCK|ies nag slyly| +25355|170604|20605|2|5|8373.00|0.03|0.01|R|F|1994-01-05|1994-01-27|1994-02-03|COLLECT COD|AIR|uests. accounts according to the final | +25355|334165|9178|3|33|39571.95|0.01|0.03|R|F|1994-01-20|1994-02-02|1994-02-04|DELIVER IN PERSON|TRUCK|even deposits. requ| +25355|298493|23504|4|19|28338.12|0.05|0.00|A|F|1994-01-06|1994-01-03|1994-01-07|TAKE BACK RETURN|SHIP|osits use carefully alongside of the final| +25355|767130|42161|5|13|15562.30|0.05|0.07|A|F|1993-12-12|1994-02-14|1994-01-08|COLLECT COD|MAIL|even, bold p| +25355|150380|12884|6|35|50063.30|0.10|0.07|A|F|1994-02-16|1994-02-24|1994-02-21|COLLECT COD|FOB|s across the excuses caj| +25355|425634|13159|7|44|68622.84|0.06|0.06|A|F|1994-03-18|1994-01-06|1994-04-09|TAKE BACK RETURN|MAIL|hogs. always spe| +25356|629468|41981|1|39|54499.77|0.06|0.04|A|F|1992-11-29|1993-01-11|1992-12-13|NONE|REG AIR|fully even dependencies. silent, final| +25356|453867|28886|2|30|54625.20|0.01|0.05|R|F|1992-12-10|1992-12-16|1992-12-31|TAKE BACK RETURN|TRUCK|s. slyly regu| +25356|127287|2292|3|50|65714.00|0.00|0.08|R|F|1993-03-14|1992-12-23|1993-04-12|COLLECT COD|TRUCK|s are blithely| +25356|311811|36824|4|28|51038.40|0.08|0.04|A|F|1992-11-23|1993-01-23|1992-12-14|NONE|FOB|bove the s| +25356|605807|5808|5|5|8563.85|0.00|0.08|R|F|1993-01-30|1993-01-28|1993-03-01|COLLECT COD|TRUCK|ites. care| +25356|788578|13609|6|29|48329.66|0.00|0.02|R|F|1993-01-04|1993-01-11|1993-01-28|COLLECT COD|MAIL|oss the quickly ironic asymptotes. fu| +25357|43604|31105|1|41|63451.60|0.04|0.03|N|O|1997-12-03|1997-11-11|1997-12-18|DELIVER IN PERSON|FOB|c theodolites nag slyly aft| +25357|850551|25586|2|42|63063.42|0.02|0.00|N|O|1997-12-12|1997-11-24|1998-01-06|NONE|RAIL|along the blithely ironic platelets. | +25357|195721|33231|3|48|87202.56|0.06|0.06|N|O|1997-12-08|1997-11-04|1997-12-16|NONE|SHIP|ect slyly against the unusua| +25357|480289|30290|4|6|7615.56|0.00|0.07|N|O|1997-11-01|1997-10-20|1997-11-08|NONE|SHIP|ackages. even, quick accounts caj| +25357|213182|13183|5|12|13142.04|0.10|0.00|N|O|1997-11-17|1997-10-14|1997-11-22|TAKE BACK RETURN|REG AIR|riously silent requests. fluffily iron| +25357|949531|49532|6|40|63219.60|0.09|0.06|N|O|1997-09-03|1997-10-15|1997-09-08|NONE|FOB|packages are furiously. e| +25357|766392|16393|7|2|2916.72|0.08|0.07|N|O|1997-11-11|1997-11-21|1997-11-25|COLLECT COD|SHIP|y alongside| +25358|740513|15542|1|47|73013.56|0.01|0.03|N|O|1998-01-03|1998-02-07|1998-01-14|NONE|FOB|ironic, pending theodolites haggle| +25358|794941|19972|2|23|46825.93|0.10|0.08|N|O|1998-03-14|1998-01-07|1998-04-01|COLLECT COD|REG AIR|onic accounts grow fluffily re| +25358|561540|24052|3|45|72068.40|0.02|0.07|N|O|1997-12-22|1998-02-20|1997-12-24|DELIVER IN PERSON|FOB|carefully among the furiously specia| +25359|308005|20512|1|33|33428.67|0.05|0.02|N|O|1998-08-25|1998-08-06|1998-09-06|NONE|RAIL|ously express packages cajole ironic| +25359|637361|24898|2|40|51933.20|0.01|0.02|N|O|1998-09-26|1998-09-04|1998-10-11|DELIVER IN PERSON|FOB|dolites. fluff| +25359|122542|47547|3|32|50065.28|0.09|0.00|N|O|1998-07-06|1998-09-01|1998-07-28|TAKE BACK RETURN|RAIL|ully brave excuses hagg| +25384|614846|2383|1|36|63389.16|0.04|0.04|R|F|1994-01-25|1994-01-31|1994-02-18|COLLECT COD|MAIL|ons. blithely ironic foxes boost| +25384|714230|14231|2|5|6221.00|0.04|0.01|R|F|1994-01-10|1994-03-24|1994-01-17|DELIVER IN PERSON|TRUCK|pecial asymptotes-- ide| +25384|61950|11951|3|24|45886.80|0.10|0.01|A|F|1994-04-02|1994-02-15|1994-05-02|TAKE BACK RETURN|TRUCK|ccording to the | +25385|338120|38121|1|46|53273.06|0.06|0.02|A|F|1992-04-15|1992-05-02|1992-05-13|NONE|AIR|posits above the express | +25386|392965|5473|1|28|57622.60|0.07|0.02|N|O|1998-04-23|1998-05-23|1998-05-18|COLLECT COD|MAIL|ages. regular, ev| +25387|585051|47563|1|13|14768.39|0.09|0.05|N|O|1996-09-25|1996-10-09|1996-10-10|COLLECT COD|TRUCK|hely regular platelets cajole carefull| +25387|942499|30054|2|32|49326.40|0.06|0.07|N|O|1996-09-21|1996-10-19|1996-10-01|COLLECT COD|TRUCK|y ironic requests after the caref| +25387|563892|13893|3|2|3911.74|0.01|0.08|N|O|1996-12-03|1996-10-26|1996-12-25|NONE|TRUCK|s use-- platelets haggle id| +25387|320106|7625|4|31|34908.79|0.00|0.00|N|O|1996-10-08|1996-10-02|1996-11-05|TAKE BACK RETURN|MAIL|ts haggle fur| +25387|8454|45955|5|13|17711.85|0.02|0.06|N|O|1996-09-16|1996-09-22|1996-10-06|NONE|FOB|ven pinto beans | +25387|84886|47388|6|43|80447.84|0.06|0.08|N|O|1996-11-14|1996-11-17|1996-12-12|COLLECT COD|RAIL|s nag about the pinto beans; ide| +25387|663985|39012|7|35|68213.25|0.00|0.07|N|O|1996-11-16|1996-09-28|1996-12-14|NONE|TRUCK|ross the quick| +25388|584114|21648|1|15|17971.35|0.09|0.02|N|O|1996-03-25|1996-01-31|1996-04-21|DELIVER IN PERSON|FOB|atelets. slyly ironic deposits | +25388|196423|8927|2|50|75971.00|0.00|0.08|N|O|1995-12-27|1996-02-03|1996-01-26|DELIVER IN PERSON|TRUCK|equests sleep carefully deposi| +25388|267944|42955|3|18|34414.74|0.07|0.07|N|O|1996-04-10|1996-02-18|1996-04-13|TAKE BACK RETURN|FOB| haggle furiously blithely ironic dep| +25388|326643|14162|4|19|31722.97|0.01|0.03|N|O|1996-04-04|1996-01-18|1996-04-14|TAKE BACK RETURN|AIR|. furiously express deposits d| +25389|297592|35108|1|6|9537.48|0.10|0.01|N|O|1997-08-16|1997-07-15|1997-09-04|DELIVER IN PERSON|MAIL|g carefully even foxes. bold| +25390|769547|44578|1|36|58194.36|0.07|0.08|N|O|1998-02-14|1998-01-13|1998-02-19|TAKE BACK RETURN|RAIL|arefully express depos| +25391|882900|7935|1|5|9414.30|0.04|0.05|R|F|1994-09-07|1994-11-13|1994-09-21|NONE|REG AIR|accounts. slyly bold ideas h| +25391|892435|17470|2|39|55668.21|0.06|0.07|R|F|1994-10-15|1994-11-02|1994-10-28|TAKE BACK RETURN|TRUCK| the packages. requests along the sly| +25391|155002|17506|3|19|20083.00|0.07|0.03|R|F|1994-10-08|1994-11-19|1994-10-15|COLLECT COD|MAIL| requests. ironic, ironic packages| +25391|116484|16485|4|8|12003.84|0.02|0.05|A|F|1994-10-15|1994-09-29|1994-10-20|COLLECT COD|FOB| carefully ironic, even requests. slyly| +25416|320758|45771|1|33|58698.42|0.04|0.03|N|O|1997-06-22|1997-07-18|1997-07-21|COLLECT COD|TRUCK|platelets. ironic packages wake. pe| +25416|970404|20405|2|46|67820.56|0.03|0.03|N|O|1997-08-21|1997-08-03|1997-09-10|COLLECT COD|MAIL|latelets along | +25416|567084|29596|3|8|9208.48|0.01|0.05|N|O|1997-07-10|1997-06-27|1997-08-02|TAKE BACK RETURN|TRUCK|e about the carefull| +25417|39032|1533|1|14|13594.42|0.02|0.02|A|F|1994-10-27|1994-09-14|1994-11-18|DELIVER IN PERSON|SHIP|ans. regular accounts| +25417|996763|9283|2|26|48352.72|0.03|0.06|A|F|1994-11-16|1994-08-25|1994-12-01|COLLECT COD|REG AIR|l deposits are after the| +25417|583748|21282|3|13|23812.36|0.09|0.06|A|F|1994-09-05|1994-09-26|1994-09-13|COLLECT COD|MAIL|the carefully final packages | +25417|45922|8423|4|34|63509.28|0.09|0.06|R|F|1994-08-24|1994-09-22|1994-09-17|COLLECT COD|MAIL|omas cajole | +25417|797914|10430|5|9|18106.92|0.00|0.03|A|F|1994-10-02|1994-09-24|1994-10-29|DELIVER IN PERSON|MAIL|egular requests acros| +25417|527695|2716|6|39|67184.13|0.04|0.01|A|F|1994-08-11|1994-10-13|1994-08-16|DELIVER IN PERSON|SHIP|xes. quickly even deposits nag sl| +25417|962610|168|7|27|45159.39|0.05|0.02|R|F|1994-08-22|1994-09-10|1994-09-05|NONE|TRUCK|sely ironic foxes | +25418|571890|34402|1|17|33351.79|0.02|0.05|R|F|1995-04-16|1995-05-08|1995-05-16|TAKE BACK RETURN|REG AIR|ly quickly regular deposits. blithely| +25419|299298|49299|1|34|44107.52|0.05|0.06|R|F|1994-01-11|1994-01-30|1994-02-04|NONE|AIR|ng the blithely | +25419|293546|43547|2|16|24632.48|0.09|0.03|A|F|1994-01-24|1994-01-02|1994-01-25|NONE|FOB| dolphins detect fluffily even foxes! c| +25419|619619|32132|3|25|38464.50|0.04|0.03|A|F|1993-12-26|1994-01-28|1994-01-02|COLLECT COD|SHIP|ans. blithely pending requ| +25420|133595|46098|1|10|16285.90|0.02|0.00|N|O|1995-11-13|1996-02-07|1995-12-12|NONE|SHIP|ld packages. quickly reg| +25420|321212|33719|2|49|60426.80|0.05|0.08|N|O|1996-02-16|1996-01-04|1996-03-05|DELIVER IN PERSON|FOB|he carefully unusual foxes. slyly | +25420|597639|10151|3|10|17366.10|0.00|0.07|N|O|1995-12-31|1995-12-22|1996-01-16|DELIVER IN PERSON|RAIL|ely regular depos| +25421|908351|8352|1|2|2718.62|0.05|0.08|A|F|1993-08-02|1993-08-18|1993-08-19|COLLECT COD|AIR|y express de| +25421|652031|27058|2|48|47184.00|0.06|0.08|R|F|1993-08-20|1993-08-28|1993-09-13|COLLECT COD|FOB| foxes haggle quietly careful foxes. th| +25421|679775|42289|3|38|66680.12|0.08|0.04|A|F|1993-06-17|1993-07-17|1993-07-09|TAKE BACK RETURN|TRUCK|across the even, unusual a| +25421|971835|34355|4|29|55296.91|0.05|0.02|R|F|1993-07-25|1993-07-25|1993-08-04|TAKE BACK RETURN|REG AIR|y express | +25421|615818|28331|5|38|65883.64|0.04|0.05|R|F|1993-06-27|1993-07-16|1993-07-05|COLLECT COD|REG AIR|te carefully f| +25421|48544|23545|6|31|46268.74|0.00|0.03|R|F|1993-08-26|1993-07-01|1993-09-13|COLLECT COD|REG AIR|sly ironic ideas x-ray slyly across th| +25422|226456|1465|1|20|27648.80|0.02|0.05|A|F|1994-04-17|1994-05-27|1994-05-07|TAKE BACK RETURN|TRUCK|sly unusual hockey players| +25422|29637|29638|2|20|31332.60|0.08|0.08|R|F|1994-05-10|1994-06-01|1994-05-23|TAKE BACK RETURN|REG AIR|g theodolites nag quickly special requ| +25422|104474|4475|3|27|39918.69|0.00|0.01|R|F|1994-04-12|1994-05-11|1994-05-09|NONE|SHIP|r foxes affix busily. ironic pin| +25422|893708|31260|4|2|3403.32|0.02|0.03|R|F|1994-06-28|1994-05-04|1994-07-24|TAKE BACK RETURN|FOB|nusual depos| +25423|191871|4375|1|49|96180.63|0.09|0.05|N|O|1995-09-14|1995-10-18|1995-10-12|COLLECT COD|SHIP|otes sleep sometimes ironic as| +25423|760622|35653|2|12|20191.08|0.08|0.08|N|O|1995-10-22|1995-10-13|1995-11-03|TAKE BACK RETURN|SHIP|y regular packages ha| +25423|761013|48559|3|32|34367.36|0.04|0.07|N|O|1995-12-22|1995-11-25|1995-12-29|NONE|RAIL|pending requests in| +25423|340775|15788|4|43|78077.68|0.02|0.00|N|O|1995-09-12|1995-10-22|1995-10-06|COLLECT COD|FOB|s cajole blithely along the packag| +25423|395409|45410|5|41|61679.99|0.06|0.03|N|O|1995-12-17|1995-11-02|1996-01-15|DELIVER IN PERSON|SHIP| the regular instructions. silently fluffy| +25423|635069|10094|6|22|22088.66|0.10|0.07|N|O|1995-12-25|1995-11-16|1996-01-21|NONE|MAIL|ular requests. quickl| +25423|598029|48030|7|25|28175.00|0.08|0.02|N|O|1995-09-08|1995-10-05|1995-09-14|DELIVER IN PERSON|FOB|e carefully silent| +25448|71565|21566|1|28|43023.68|0.10|0.04|R|F|1995-05-18|1995-06-06|1995-05-30|COLLECT COD|REG AIR|ggle. carefully regular packages maint| +25448|781817|6848|2|42|79748.76|0.04|0.07|R|F|1995-05-25|1995-05-26|1995-05-31|DELIVER IN PERSON|REG AIR|y regular accounts aro| +25448|990427|27985|3|16|24278.08|0.04|0.01|R|F|1995-03-25|1995-06-15|1995-04-14|DELIVER IN PERSON|FOB|ages haggle blithely| +25448|98598|48599|4|24|38318.16|0.10|0.05|N|F|1995-06-05|1995-05-25|1995-06-27|TAKE BACK RETURN|REG AIR|ctions. boldly regular realms boost slyly| +25449|232578|7587|1|19|28700.64|0.09|0.05|R|F|1994-04-03|1994-02-03|1994-04-10|COLLECT COD|TRUCK|gular, even deposits. spe| +25449|925465|37984|2|49|73030.58|0.04|0.07|R|F|1994-01-02|1994-03-01|1994-01-09|DELIVER IN PERSON|MAIL|gle slyly | +25449|286512|24028|3|14|20979.00|0.00|0.00|R|F|1993-12-24|1994-01-23|1993-12-29|TAKE BACK RETURN|SHIP|en dependencies. ironic requests c| +25449|391941|16956|4|40|81317.20|0.01|0.02|R|F|1993-12-18|1994-02-16|1993-12-21|DELIVER IN PERSON|FOB|equests are at the even deposi| +25449|349381|49382|5|9|12873.33|0.09|0.06|A|F|1993-12-28|1994-01-28|1994-01-21|TAKE BACK RETURN|RAIL|re carefully ag| +25449|46115|8616|6|43|45627.73|0.08|0.03|A|F|1994-03-02|1994-01-25|1994-03-11|TAKE BACK RETURN|AIR|ar deposits.| +25450|97787|22790|1|41|73175.98|0.10|0.07|A|F|1993-11-13|1994-01-04|1993-12-11|TAKE BACK RETURN|TRUCK|l accounts. quickly final pains| +25450|503187|15698|2|14|16662.24|0.05|0.06|A|F|1994-01-03|1993-12-04|1994-01-23|DELIVER IN PERSON|TRUCK|ithely regular, ironic theodolites.| +25450|59175|34178|3|28|31756.76|0.08|0.06|R|F|1994-01-08|1993-11-27|1994-01-29|DELIVER IN PERSON|REG AIR|usly final| +25450|553593|28616|4|7|11525.99|0.02|0.07|R|F|1994-02-15|1994-01-04|1994-02-20|NONE|FOB|oach slyly re| +25450|229846|42351|5|24|42619.92|0.05|0.05|R|F|1993-12-24|1993-11-26|1994-01-08|COLLECT COD|TRUCK|requests. quickly final in| +25450|8384|45885|6|10|12923.80|0.08|0.08|A|F|1993-11-30|1994-01-07|1993-12-10|DELIVER IN PERSON|FOB|yly ironic courts boost furiously fin| +25451|879177|16729|1|28|32371.64|0.07|0.02|A|F|1992-10-14|1992-12-04|1992-10-29|COLLECT COD|FOB|tly express dependencies | +25451|326240|38747|2|22|27857.06|0.09|0.02|A|F|1992-12-01|1992-11-19|1992-12-05|TAKE BACK RETURN|FOB|iously even requests. thin| +25451|114467|26970|3|4|5925.84|0.01|0.06|R|F|1993-01-10|1992-11-05|1993-01-26|COLLECT COD|FOB|ithely pendi| +25452|439202|39203|1|20|22823.60|0.00|0.07|A|F|1992-12-29|1993-01-01|1993-01-14|NONE|REG AIR|theodolites| +25453|872712|47747|1|21|35378.07|0.01|0.07|R|F|1993-03-14|1993-04-14|1993-03-15|DELIVER IN PERSON|REG AIR| into the slyly unusual ideas.| +25453|663497|1037|2|47|68641.62|0.04|0.04|R|F|1993-05-07|1993-04-10|1993-05-12|TAKE BACK RETURN|SHIP|e ideas. pearls by the fluffily ironic a| +25453|392472|29994|3|23|35982.58|0.03|0.07|R|F|1993-02-14|1993-03-10|1993-03-13|TAKE BACK RETURN|MAIL|egular excuses | +25454|378515|41023|1|31|49398.50|0.01|0.00|R|F|1993-01-05|1992-12-22|1993-02-02|DELIVER IN PERSON|RAIL|ever final requests use slyly furiou| +25454|701530|39073|2|13|19909.50|0.02|0.03|R|F|1992-11-21|1992-12-20|1992-12-08|NONE|RAIL|nal accounts sleep fu| +25454|606658|19171|3|14|21904.68|0.01|0.08|A|F|1992-11-05|1992-10-29|1992-11-12|COLLECT COD|SHIP| beans cajole furiously slyly final platele| +25455|363453|25961|1|35|53075.40|0.07|0.06|N|O|1995-10-27|1995-12-10|1995-11-23|DELIVER IN PERSON|FOB|he slyly express asymptotes d| +25455|539060|14081|2|48|52753.92|0.00|0.01|N|O|1995-12-31|1995-12-27|1996-01-24|NONE|SHIP|e along the | +25455|973072|10630|3|8|9160.24|0.04|0.01|N|O|1996-01-01|1995-12-02|1996-01-10|NONE|REG AIR|quests haggl| +25455|407766|20275|4|39|65275.86|0.06|0.02|N|O|1995-11-02|1996-01-14|1995-11-11|TAKE BACK RETURN|MAIL|y ironic fox| +25455|308028|20535|5|48|49728.48|0.08|0.08|N|O|1996-02-02|1995-12-08|1996-02-15|COLLECT COD|MAIL|usly requests. s| +25455|15618|3119|6|8|12268.88|0.09|0.07|N|O|1995-12-31|1995-11-26|1996-01-13|COLLECT COD|AIR|olites wake car| +25480|709210|21725|1|24|29260.32|0.06|0.08|N|O|1995-11-06|1995-09-27|1995-11-28|COLLECT COD|FOB|against the c| +25480|683711|33712|2|1|1694.68|0.10|0.04|N|O|1995-11-20|1995-10-18|1995-12-19|TAKE BACK RETURN|RAIL|gular, pending theo| +25480|114508|2015|3|29|44152.50|0.09|0.06|N|O|1995-09-01|1995-10-22|1995-09-12|COLLECT COD|REG AIR|alongside of th| +25480|531703|6724|4|29|50305.72|0.02|0.06|N|O|1995-11-24|1995-09-16|1995-12-06|NONE|REG AIR|refully sly | +25481|823725|23726|1|43|70893.24|0.09|0.01|R|F|1995-04-16|1995-05-03|1995-04-28|NONE|SHIP|ular ideas. accounts against the unusua| +25481|340659|3166|2|26|44190.64|0.10|0.04|A|F|1995-03-31|1995-04-26|1995-04-19|COLLECT COD|MAIL|s. carefully| +25482|120642|45647|1|28|46553.92|0.10|0.05|N|O|1996-04-21|1996-07-01|1996-04-22|COLLECT COD|TRUCK|iously pending theodoli| +25482|621257|21258|2|43|50663.46|0.00|0.01|N|O|1996-08-09|1996-05-31|1996-08-11|TAKE BACK RETURN|MAIL| platelets nag furiously along the bold, | +25482|465100|40119|3|45|47928.60|0.05|0.07|N|O|1996-08-01|1996-06-02|1996-08-31|TAKE BACK RETURN|RAIL|ep fluffily quickly pending packa| +25482|921635|34154|4|33|54667.47|0.03|0.08|N|O|1996-06-15|1996-05-30|1996-06-23|TAKE BACK RETURN|MAIL|iously regular dep| +25482|907596|20115|5|11|17639.05|0.08|0.08|N|O|1996-06-16|1996-05-31|1996-06-17|NONE|FOB|es are furiou| +25483|843226|5743|1|49|57289.82|0.07|0.05|A|F|1995-01-09|1995-02-04|1995-01-12|COLLECT COD|FOB|refully silent depen| +25483|89437|1939|2|21|29955.03|0.08|0.06|R|F|1995-01-30|1995-01-25|1995-02-03|NONE|AIR|special requests use| +25483|164889|27393|3|37|72293.56|0.00|0.07|R|F|1995-03-03|1995-02-23|1995-03-04|TAKE BACK RETURN|RAIL|arefully final acco| +25484|36164|48665|1|45|49507.20|0.03|0.01|N|O|1995-10-25|1995-09-13|1995-11-04|DELIVER IN PERSON|SHIP|furiously even ideas sleep furiously. fur| +25485|401840|14349|1|25|43545.50|0.08|0.03|N|O|1996-04-13|1996-02-21|1996-05-10|DELIVER IN PERSON|SHIP|pecial sheaves print req| +25485|711014|11015|2|48|49199.04|0.04|0.01|N|O|1995-12-29|1996-02-26|1996-01-04|TAKE BACK RETURN|AIR|the regular, ironic in| +25486|931521|6558|1|40|62099.20|0.07|0.07|A|F|1994-12-17|1994-11-27|1995-01-09|COLLECT COD|TRUCK|ideas across the b| +25486|63787|38790|2|35|61277.30|0.01|0.04|R|F|1994-11-14|1994-11-04|1994-12-08|TAKE BACK RETURN|SHIP|egular accoun| +25487|745510|45511|1|26|40442.48|0.04|0.08|R|F|1993-02-06|1992-12-26|1993-02-15|COLLECT COD|TRUCK|ic courts. slyly unusual request| +25487|777541|27542|2|41|66358.91|0.04|0.08|A|F|1993-01-23|1993-02-17|1993-02-04|DELIVER IN PERSON|MAIL|riously special| +25487|130137|30138|3|15|17506.95|0.00|0.02|R|F|1993-02-04|1993-01-27|1993-02-28|NONE|RAIL| requests wake furiously. flu| +25487|199283|49284|4|26|35939.28|0.03|0.08|R|F|1993-01-06|1993-01-14|1993-01-10|TAKE BACK RETURN|FOB|ites are. final instruc| +25512|53244|15746|1|14|16761.36|0.10|0.07|N|O|1995-10-14|1995-08-30|1995-10-19|COLLECT COD|REG AIR|s. carefully ironic deposits d| +25512|868549|31067|2|46|69805.00|0.02|0.05|N|O|1995-11-05|1995-10-03|1995-11-30|NONE|SHIP|arefully even foxes. blithel| +25512|688470|38471|3|39|56879.16|0.01|0.05|N|O|1995-10-30|1995-09-01|1995-11-16|NONE|FOB|ss the ironic, silent req| +25512|104792|42299|4|30|53903.70|0.02|0.08|N|O|1995-09-28|1995-10-06|1995-10-27|DELIVER IN PERSON|TRUCK|ng requests about the blith| +25512|227653|15166|5|28|44257.92|0.01|0.08|N|O|1995-10-14|1995-09-09|1995-11-01|DELIVER IN PERSON|REG AIR|uffily even accounts cajole furiously e| +25512|151483|38993|6|20|30689.60|0.07|0.03|N|O|1995-08-28|1995-08-31|1995-09-15|TAKE BACK RETURN|MAIL|onic requests. doggedly bol| +25512|967000|17001|7|35|37343.60|0.02|0.08|N|O|1995-07-27|1995-09-08|1995-08-04|TAKE BACK RETURN|FOB|ing packages cajole blithely;| +25513|356442|31457|1|15|22476.45|0.08|0.04|A|F|1994-12-11|1994-10-25|1995-01-03|NONE|AIR|ptotes. special pa| +25513|711020|23535|2|36|37115.64|0.02|0.08|A|F|1994-10-12|1994-11-28|1994-11-10|COLLECT COD|SHIP| regular frays. | +25513|109676|9677|3|43|72483.81|0.08|0.08|A|F|1994-09-14|1994-11-11|1994-10-12|TAKE BACK RETURN|TRUCK|n theodolites after the regular packages| +25513|313525|38538|4|21|32308.71|0.08|0.01|A|F|1994-11-24|1994-11-28|1994-12-14|COLLECT COD|TRUCK|ar deposits. final| +25513|405586|18095|5|37|55187.72|0.08|0.00|R|F|1994-12-28|1994-10-20|1994-12-31|COLLECT COD|SHIP|regular grouches. theodolit| +25514|686411|36412|1|49|68471.62|0.03|0.00|N|O|1995-07-22|1995-07-24|1995-07-24|COLLECT COD|REG AIR|ze regular accounts. final, fi| +25514|508702|46233|2|23|39345.64|0.02|0.03|N|F|1995-06-14|1995-08-17|1995-07-09|COLLECT COD|SHIP|osits wake. even theodolites sleep| +25514|748980|24009|3|7|14202.65|0.02|0.07|N|O|1995-08-09|1995-08-12|1995-08-28|COLLECT COD|RAIL| requests boost blit| +25514|93775|6277|4|34|60138.18|0.03|0.05|N|O|1995-07-28|1995-08-24|1995-08-18|NONE|SHIP|espite the fluffily unusual| +25514|74038|11542|5|5|5060.15|0.01|0.03|N|O|1995-07-14|1995-08-06|1995-07-26|TAKE BACK RETURN|SHIP|its sleep carefull| +25514|356289|43811|6|49|65918.23|0.06|0.03|N|O|1995-09-21|1995-07-10|1995-10-01|COLLECT COD|SHIP| ironic excuses. regul| +25514|137898|12903|7|6|11615.34|0.06|0.01|N|O|1995-08-08|1995-07-15|1995-08-22|TAKE BACK RETURN|FOB| pinto beans wake regularly. bl| +25515|641841|4354|1|50|89140.50|0.06|0.04|R|F|1995-05-05|1995-03-28|1995-05-26|TAKE BACK RETURN|FOB| pending sheaves unwind blithely. accou| +25515|418115|43132|2|10|10330.90|0.05|0.02|A|F|1995-04-28|1995-04-13|1995-05-08|COLLECT COD|AIR|onic requests cajo| +25515|249812|24821|3|6|10570.80|0.02|0.04|N|F|1995-05-23|1995-04-04|1995-06-22|NONE|SHIP|ckages are. final, final platelets | +25516|393854|18869|1|5|9739.20|0.04|0.06|N|O|1997-12-29|1997-10-23|1998-01-19|COLLECT COD|FOB|. carefully pending pains use furio| +25517|539049|1560|1|26|28288.52|0.08|0.04|N|O|1998-06-27|1998-05-11|1998-07-07|COLLECT COD|FOB|ctions alongside of| +25517|780214|5245|2|1|1294.18|0.07|0.06|N|O|1998-07-07|1998-05-30|1998-07-22|NONE|AIR|ns cajole furiou| +25517|53590|16092|3|25|38589.75|0.06|0.05|N|O|1998-06-10|1998-05-06|1998-07-05|DELIVER IN PERSON|RAIL|ze blithely packa| +25517|681678|19218|4|9|14936.76|0.04|0.06|N|O|1998-04-17|1998-05-07|1998-05-07|COLLECT COD|AIR| the carefully final foxes nag fluffily ca| +25517|959067|21587|5|11|12386.22|0.03|0.07|N|O|1998-05-04|1998-05-16|1998-05-27|COLLECT COD|RAIL|jole; silent reques| +25518|410278|47803|1|20|23765.00|0.03|0.00|N|O|1997-04-17|1997-03-16|1997-05-04|COLLECT COD|SHIP|kages haggle s| +25518|530155|5176|2|5|5925.65|0.08|0.01|N|O|1996-12-27|1997-01-30|1997-01-19|DELIVER IN PERSON|RAIL|quests. quickly silent acc| +25519|414711|2236|1|7|11379.83|0.00|0.07|N|O|1997-09-21|1997-10-19|1997-10-03|DELIVER IN PERSON|TRUCK|lyly pending deposits! final, regul| +25519|40313|2814|2|46|57652.26|0.03|0.07|N|O|1997-12-25|1997-10-23|1998-01-11|COLLECT COD|SHIP| courts. carefully enticing packag| +25519|536371|36372|3|36|50664.60|0.05|0.05|N|O|1997-11-10|1997-11-28|1997-12-02|COLLECT COD|RAIL|equests. orbits around the thin| +25544|931875|6912|1|50|95341.50|0.01|0.02|R|F|1992-07-15|1992-08-15|1992-07-24|NONE|FOB|ts. fluffily regular deposits int| +25544|11922|49423|2|44|80692.48|0.05|0.07|A|F|1992-06-17|1992-08-23|1992-06-24|COLLECT COD|REG AIR|ly against the fluffily pending pi| +25544|359202|9203|3|49|61798.31|0.07|0.00|A|F|1992-06-15|1992-08-20|1992-06-25|NONE|RAIL|among the carefully idle patterns. c| +25545|218368|18369|1|18|23154.30|0.03|0.01|A|F|1992-10-11|1992-08-11|1992-10-25|NONE|AIR|rate slyly across the asy| +25545|108738|21241|2|6|10480.38|0.07|0.00|R|F|1992-09-23|1992-09-11|1992-10-08|COLLECT COD|FOB| regular th| +25545|550129|25152|3|2|2358.20|0.06|0.07|R|F|1992-07-10|1992-08-10|1992-08-03|DELIVER IN PERSON|SHIP|accounts are careful| +25545|16513|16514|4|18|25731.18|0.06|0.07|A|F|1992-09-19|1992-07-26|1992-09-28|TAKE BACK RETURN|SHIP|ys detect slyly across the accounts. furiou| +25545|523321|10852|5|24|32263.20|0.09|0.07|A|F|1992-09-14|1992-08-23|1992-10-11|TAKE BACK RETURN|AIR|s. blithely final pinto beans use. sly| +25545|439842|39843|6|42|74836.44|0.07|0.06|R|F|1992-08-11|1992-08-11|1992-09-01|COLLECT COD|REG AIR|eans? furiously special| +25545|415617|28126|7|26|39847.34|0.10|0.04|A|F|1992-10-08|1992-08-24|1992-10-10|DELIVER IN PERSON|TRUCK|ost. carefully ironic instructions wake!| +25546|272110|22111|1|30|32463.00|0.07|0.05|N|O|1998-03-05|1998-04-22|1998-03-20|TAKE BACK RETURN|AIR| regular packages. careful| +25546|352722|27737|2|17|30170.07|0.07|0.05|N|O|1998-05-06|1998-04-06|1998-05-30|TAKE BACK RETURN|SHIP|ully final as| +25546|191807|16814|3|21|39874.80|0.09|0.05|N|O|1998-04-11|1998-02-27|1998-05-08|COLLECT COD|TRUCK|the regular, unusual accounts. final| +25546|690483|40484|4|33|48623.85|0.09|0.00|N|O|1998-05-13|1998-04-24|1998-06-12|NONE|SHIP|tes. blithely even ideas nag | +25546|941551|16588|5|10|15925.10|0.06|0.01|N|O|1998-05-28|1998-03-01|1998-06-11|NONE|REG AIR|ctions boost furiously regul| +25546|647045|22070|6|4|3968.04|0.04|0.01|N|O|1998-04-26|1998-02-27|1998-05-16|COLLECT COD|RAIL|accounts along the deposits affix ca| +25546|869621|44656|7|44|69985.52|0.03|0.08|N|O|1998-02-25|1998-03-12|1998-03-24|DELIVER IN PERSON|REG AIR|regular packages. pending theo| +25547|706862|19377|1|29|54196.07|0.09|0.08|N|O|1996-07-02|1996-08-31|1996-07-21|NONE|AIR|. instructions detect slyly. slyly slow pla| +25547|213687|26192|2|32|51221.44|0.07|0.03|N|O|1996-06-19|1996-08-28|1996-07-08|NONE|MAIL|y sly dependencies | +25547|425967|25968|3|44|83289.36|0.02|0.05|N|O|1996-09-01|1996-07-18|1996-09-12|TAKE BACK RETURN|REG AIR|ously brave platelets cajole car| +25547|214756|2269|4|48|80195.52|0.06|0.00|N|O|1996-09-06|1996-08-26|1996-09-16|COLLECT COD|MAIL|pending foxes. slyly | +25547|396375|46376|5|35|51497.60|0.01|0.02|N|O|1996-07-06|1996-07-12|1996-07-29|COLLECT COD|REG AIR|s. final reques| +25547|865472|40507|6|44|63246.92|0.02|0.01|N|O|1996-10-02|1996-08-13|1996-10-30|NONE|AIR|ld packages promise. sly| +25547|978459|16017|7|13|19986.33|0.02|0.07|N|O|1996-08-26|1996-07-20|1996-09-24|COLLECT COD|FOB|ess requests boost furiously above th| +25548|944786|44787|1|38|69568.12|0.06|0.04|N|O|1996-03-23|1996-03-11|1996-04-18|DELIVER IN PERSON|FOB| nag furiously r| +25548|11901|49402|2|29|52574.10|0.02|0.07|N|O|1996-02-01|1996-03-20|1996-02-15|COLLECT COD|SHIP|ages. instructions sleep fluffi| +25548|15045|2546|3|13|12480.52|0.02|0.06|N|O|1996-05-19|1996-03-18|1996-05-21|COLLECT COD|RAIL|key players cajol| +25549|707109|19624|1|16|17857.12|0.01|0.02|R|F|1992-08-20|1992-08-06|1992-08-29|NONE|MAIL| instructions wake fluffily into the c| +25549|368785|43800|2|47|87127.19|0.09|0.05|A|F|1992-08-17|1992-08-15|1992-08-23|COLLECT COD|FOB|yly regular deposits nod acr| +25549|153070|15574|3|18|20215.26|0.03|0.08|R|F|1992-07-03|1992-08-10|1992-07-15|TAKE BACK RETURN|TRUCK|regular, even foxes are quickly. p| +25550|401981|39506|1|17|32010.32|0.07|0.00|R|F|1994-12-15|1995-01-17|1995-01-06|DELIVER IN PERSON|REG AIR|d accounts. blithe| +25550|78734|16238|2|6|10276.38|0.03|0.06|A|F|1994-11-29|1994-12-30|1994-12-19|NONE|SHIP|s detect. q| +25550|269867|32373|3|11|20205.35|0.02|0.06|A|F|1994-11-15|1994-12-30|1994-11-17|NONE|MAIL|uests affix accounts. pending, regular | +25550|654181|4182|4|25|28378.75|0.03|0.00|A|F|1994-11-25|1994-12-23|1994-12-22|TAKE BACK RETURN|AIR|even requests wa| +25550|818536|31053|5|47|68361.03|0.06|0.07|A|F|1994-11-21|1994-12-12|1994-12-16|TAKE BACK RETURN|TRUCK|boost about the r| +25550|127004|2009|6|45|46395.00|0.00|0.05|A|F|1995-02-19|1995-01-21|1995-03-10|DELIVER IN PERSON|SHIP|ly. theodolites above the blithel| +25551|386309|36310|1|50|69764.50|0.02|0.01|A|F|1992-11-29|1992-11-28|1992-12-26|TAKE BACK RETURN|TRUCK|s cajole carefully unusual, fina| +25551|685446|47960|2|22|31491.02|0.08|0.03|R|F|1992-12-21|1992-11-04|1993-01-01|DELIVER IN PERSON|RAIL|blithely even accounts haggle furiousl| +25551|282713|45219|3|11|18652.70|0.09|0.05|A|F|1992-10-28|1992-12-06|1992-11-12|DELIVER IN PERSON|FOB|above the notornis. blithely iro| +25551|555863|5864|4|10|19188.40|0.06|0.00|A|F|1992-12-23|1992-12-17|1992-12-29|DELIVER IN PERSON|REG AIR|ccording to the r| +25551|381956|44464|5|18|36682.92|0.10|0.02|R|F|1992-12-09|1992-12-12|1992-12-13|TAKE BACK RETURN|TRUCK|ly past the even pa| +25551|522629|47650|6|8|13212.80|0.02|0.00|R|F|1992-12-03|1992-11-06|1992-12-04|TAKE BACK RETURN|FOB|nusual dep| +25551|812393|49942|7|18|23496.30|0.05|0.00|R|F|1992-12-23|1992-12-17|1992-12-25|DELIVER IN PERSON|REG AIR|ilent asymptotes cajo| +25576|880680|43198|1|13|21588.32|0.10|0.05|A|F|1994-07-09|1994-08-17|1994-07-16|TAKE BACK RETURN|REG AIR|ly even sheaves cajole| +25576|579453|41965|2|36|55167.48|0.10|0.05|R|F|1994-07-05|1994-08-12|1994-07-22|DELIVER IN PERSON|RAIL| blithely above the ironic instruct| +25576|859327|21845|3|7|9003.96|0.10|0.00|A|F|1994-09-05|1994-07-10|1994-09-28|TAKE BACK RETURN|TRUCK|ly special requests after the carefu| +25577|502583|27604|1|28|44395.68|0.04|0.04|N|O|1998-02-27|1998-02-04|1998-03-08|DELIVER IN PERSON|AIR|ickly even asymptotes nag. furiously | +25577|903992|16511|2|11|21955.45|0.10|0.04|N|O|1997-12-23|1998-01-14|1998-01-20|COLLECT COD|FOB|even deposits are. flu| +25578|114025|1532|1|11|11429.22|0.02|0.02|A|F|1993-06-02|1993-04-04|1993-06-16|DELIVER IN PERSON|MAIL|e blithely d| +25578|412448|37465|2|19|25847.98|0.04|0.08|A|F|1993-06-12|1993-04-08|1993-06-19|DELIVER IN PERSON|SHIP|s detect quickly? reg| +25578|1404|13905|3|31|40467.40|0.04|0.04|A|F|1993-05-12|1993-04-20|1993-06-03|TAKE BACK RETURN|AIR|en accounts haggle furiously| +25578|584694|22228|4|24|42688.08|0.02|0.02|A|F|1993-05-27|1993-04-21|1993-06-25|DELIVER IN PERSON|MAIL|beans haggle slyly after the furi| +25578|940730|15767|5|5|8853.45|0.04|0.07|A|F|1993-02-25|1993-05-11|1993-03-02|COLLECT COD|RAIL|along the carefully bold theodolites. | +25578|837987|25536|6|39|75072.66|0.10|0.07|R|F|1993-04-20|1993-05-15|1993-04-23|COLLECT COD|AIR|er the blithel| +25579|275037|25038|1|3|3036.06|0.08|0.00|R|F|1994-06-04|1994-06-29|1994-06-18|NONE|REG AIR|ackages. ironic depths haggle fu| +25579|537368|37369|2|19|26701.46|0.01|0.08|R|F|1994-05-22|1994-07-27|1994-06-02|NONE|MAIL|ully instructions. pending p| +25579|527561|40072|3|4|6354.16|0.05|0.00|A|F|1994-08-15|1994-06-17|1994-09-04|NONE|FOB|r forges use quickly blithely ironi| +25579|714501|14502|4|34|51525.98|0.01|0.05|R|F|1994-08-04|1994-06-17|1994-08-24|COLLECT COD|MAIL|ely regular requests| +25580|562480|37503|1|46|70953.16|0.03|0.06|N|O|1997-10-14|1997-09-13|1997-10-29|DELIVER IN PERSON|MAIL|tes boost carefully enticingly rut| +25580|591822|4334|2|20|38276.00|0.02|0.04|N|O|1997-09-27|1997-08-27|1997-10-13|TAKE BACK RETURN|FOB|ironic accounts nag after the | +25580|743926|31469|3|28|55156.92|0.10|0.07|N|O|1997-08-31|1997-09-05|1997-09-04|COLLECT COD|MAIL|s wake carefully. caref| +25581|612810|25323|1|28|48237.84|0.00|0.05|R|F|1993-03-27|1992-12-29|1993-04-16|NONE|TRUCK|pecial foxes. fur| +25581|481183|43693|2|16|18626.56|0.10|0.03|R|F|1992-12-03|1993-01-26|1992-12-30|TAKE BACK RETURN|FOB|carefully carefu| +25581|226655|1664|3|11|17398.04|0.00|0.00|A|F|1993-02-11|1993-01-18|1993-03-08|COLLECT COD|FOB|gular, ironic | +25581|387744|12759|4|6|10990.38|0.08|0.02|A|F|1993-01-28|1993-01-28|1993-02-13|TAKE BACK RETURN|RAIL| final platelets according to the slyly| +25581|812460|9|5|33|45289.86|0.03|0.01|A|F|1993-02-21|1992-12-27|1993-03-04|TAKE BACK RETURN|FOB|gage. blithely final excuses against the| +25581|2934|27935|6|28|51434.04|0.08|0.00|R|F|1993-02-19|1993-02-14|1993-03-13|COLLECT COD|AIR|es haggle again| +25581|309046|34059|7|27|28485.81|0.04|0.03|A|F|1992-11-28|1993-02-24|1992-11-30|TAKE BACK RETURN|SHIP|arefully. quickly final req| +25582|128897|41400|1|41|78961.49|0.01|0.03|N|O|1998-02-15|1998-01-29|1998-03-17|DELIVER IN PERSON|SHIP| permanently regular requests hagg| +25582|370614|20615|2|20|33692.00|0.10|0.08|N|O|1998-01-30|1998-02-06|1998-02-27|TAKE BACK RETURN|SHIP|ccounts. slyly slow foxes haggle slyly a| +25583|734331|46846|1|4|5461.20|0.05|0.03|R|F|1993-11-19|1993-10-31|1993-11-20|COLLECT COD|SHIP|t pinto beans are. in| +25583|884878|9913|2|13|24216.79|0.02|0.03|A|F|1993-12-17|1993-10-20|1994-01-11|DELIVER IN PERSON|FOB|fily across| +25583|134462|46965|3|34|50879.64|0.01|0.03|R|F|1993-12-28|1993-12-04|1994-01-27|DELIVER IN PERSON|AIR|onic asymptotes hag| +25583|886335|11370|4|34|44923.86|0.10|0.00|A|F|1993-12-05|1993-11-28|1993-12-17|TAKE BACK RETURN|MAIL|gular deposit| +25583|630583|43096|5|25|37838.75|0.01|0.02|R|F|1993-11-27|1993-10-16|1993-12-14|NONE|FOB| carefully final excuses in| +25583|191721|4225|6|16|29003.52|0.09|0.02|A|F|1993-12-23|1993-10-26|1994-01-15|TAKE BACK RETURN|TRUCK|ackages hagg| +25608|796184|21215|1|44|56326.60|0.07|0.03|N|O|1998-06-27|1998-07-10|1998-07-26|COLLECT COD|FOB|p closely even deposits. express, pe| +25608|458407|8408|2|14|19115.32|0.01|0.04|N|O|1998-06-21|1998-07-16|1998-07-08|DELIVER IN PERSON|TRUCK|ithes doze slyly according | +25608|444554|44555|3|3|4495.59|0.05|0.08|N|O|1998-07-01|1998-07-14|1998-07-07|COLLECT COD|RAIL| boost. fl| +25608|613794|38819|4|32|54648.32|0.02|0.08|N|O|1998-08-07|1998-07-04|1998-08-30|DELIVER IN PERSON|SHIP|regular, pending instructions| +25609|538286|797|1|47|62240.22|0.07|0.00|A|F|1992-10-06|1992-10-26|1992-10-08|NONE|TRUCK|ons. quickly pending dependencies doubt. | +25609|969598|19599|2|31|51694.05|0.05|0.01|R|F|1992-10-11|1992-11-09|1992-11-02|DELIVER IN PERSON|AIR| ironic packages. blithely silen| +25609|30455|42956|3|20|27709.00|0.09|0.02|A|F|1992-12-12|1992-11-07|1993-01-11|NONE|RAIL|rmanently around the quickly ev| +25609|843227|18260|4|41|47977.38|0.06|0.02|A|F|1992-12-18|1992-10-21|1993-01-11|NONE|REG AIR|ep fluffily. fu| +25609|114677|27180|5|8|13533.36|0.05|0.05|A|F|1992-09-26|1992-10-23|1992-10-08|COLLECT COD|RAIL|ular hockey players sleep carefully amo| +25610|289093|26609|1|25|27052.00|0.08|0.07|N|O|1998-03-31|1998-06-04|1998-04-20|NONE|FOB|carefully regular foxes | +25611|951878|26917|1|29|55965.07|0.07|0.01|A|F|1994-01-01|1994-03-07|1994-01-17|TAKE BACK RETURN|MAIL|ar, silent dependencies are slyly quickly| +25611|202606|15111|2|32|48274.88|0.07|0.06|R|F|1994-04-14|1994-03-15|1994-04-18|TAKE BACK RETURN|RAIL|ctions nag| +25611|185810|48314|3|46|87207.26|0.02|0.08|R|F|1994-01-17|1994-02-24|1994-02-07|TAKE BACK RETURN|FOB|l requests slee| +25612|762126|49672|1|43|51087.87|0.02|0.08|N|O|1998-01-20|1998-03-13|1998-01-31|COLLECT COD|FOB| across the special, fin| +25612|37376|37377|2|32|42027.84|0.06|0.08|N|O|1998-01-23|1998-03-18|1998-01-24|DELIVER IN PERSON|AIR|at carefully| +25612|174411|36915|3|14|20795.74|0.08|0.03|N|O|1998-02-11|1998-02-16|1998-02-15|TAKE BACK RETURN|FOB| doubt across the furiously unusual co| +25612|323789|11308|4|16|29004.32|0.08|0.08|N|O|1998-01-12|1998-01-24|1998-01-24|TAKE BACK RETURN|TRUCK|y quickly ironic accounts| +25612|905784|18303|5|37|66220.38|0.07|0.02|N|O|1998-03-07|1998-02-27|1998-03-20|DELIVER IN PERSON|RAIL|cial requests nag careful| +25612|511432|23943|6|23|33198.43|0.10|0.01|N|O|1998-02-05|1998-03-15|1998-03-03|TAKE BACK RETURN|SHIP|encies cajole fluffily pe| +25613|3173|40674|1|23|24751.91|0.06|0.02|N|O|1996-09-11|1996-09-21|1996-09-28|TAKE BACK RETURN|REG AIR|nto beans? carefully | +25613|313478|13479|2|29|43252.34|0.07|0.00|N|O|1996-10-21|1996-09-03|1996-10-29|TAKE BACK RETURN|TRUCK|ns are quickly abou| +25613|622041|9578|3|26|25038.26|0.05|0.03|N|O|1996-08-20|1996-10-09|1996-09-13|TAKE BACK RETURN|SHIP|bold platelets use fluffi| +25613|634163|21700|4|42|46079.46|0.09|0.01|N|O|1996-07-26|1996-08-17|1996-07-27|TAKE BACK RETURN|RAIL|ickly even foxes alongside of the speci| +25614|431081|31082|1|27|27325.62|0.09|0.01|N|O|1997-06-04|1997-06-25|1997-06-18|NONE|REG AIR|yly express accounts a| +25614|174978|12488|2|25|51324.25|0.00|0.03|N|O|1997-05-18|1997-06-24|1997-05-24|DELIVER IN PERSON|SHIP|r requests. carefully special theodolites t| +25614|854044|41596|3|9|8982.00|0.09|0.08|N|O|1997-07-07|1997-05-27|1997-08-04|NONE|AIR|onic accoun| +25615|323221|35728|1|46|57233.66|0.10|0.06|N|O|1998-06-04|1998-05-30|1998-06-21|COLLECT COD|TRUCK|-- even, ironi| +25615|368696|6218|2|48|84704.64|0.07|0.01|N|O|1998-03-30|1998-05-20|1998-04-18|TAKE BACK RETURN|FOB| ironic packages. slyly| +25615|667406|29920|3|5|6866.85|0.04|0.03|N|O|1998-05-05|1998-05-28|1998-05-29|NONE|SHIP|bravely carefully regular fo| +25615|81115|18619|4|15|16441.65|0.03|0.08|N|O|1998-05-29|1998-04-25|1998-06-01|NONE|RAIL|efully express dependencies nag furiousl| +25640|817558|5107|1|28|41314.28|0.04|0.04|A|F|1993-05-08|1993-05-14|1993-05-26|TAKE BACK RETURN|AIR|sits. bold accounts sleep fluffily| +25640|693327|43328|2|44|58092.76|0.02|0.05|A|F|1993-06-18|1993-04-09|1993-06-22|NONE|REG AIR|jole furiously about the blithely regul| +25640|738394|13423|3|29|41538.44|0.00|0.00|A|F|1993-05-04|1993-04-05|1993-05-17|TAKE BACK RETURN|REG AIR|ess fluffily. bold, bold reques| +25640|176054|1061|4|1|1130.05|0.01|0.04|A|F|1993-02-28|1993-03-30|1993-03-26|DELIVER IN PERSON|TRUCK|e slyly special dependencies grow among| +25641|896587|34139|1|40|63341.60|0.06|0.08|A|F|1994-10-01|1994-11-02|1994-10-12|COLLECT COD|MAIL|c packages cajole fl| +25641|930849|18404|2|42|78951.60|0.10|0.07|A|F|1994-12-20|1994-11-27|1994-12-25|DELIVER IN PERSON|FOB| around th| +25641|767456|29972|3|3|4570.26|0.07|0.08|R|F|1994-11-08|1994-10-15|1994-11-16|NONE|FOB|ironic depths haggle slyly about the spec| +25641|627563|2588|4|4|5962.12|0.05|0.08|R|F|1994-10-25|1994-11-20|1994-11-08|NONE|MAIL|atelets against the fluffily exp| +25642|352416|27431|1|17|24962.80|0.07|0.01|R|F|1994-03-09|1994-02-14|1994-04-08|TAKE BACK RETURN|TRUCK|yly regular accounts. final, r| +25642|51894|1895|2|11|20304.79|0.07|0.03|A|F|1994-03-02|1994-02-17|1994-03-16|COLLECT COD|TRUCK|he foxes. carefully bold platelets s| +25642|168885|43892|3|32|62524.16|0.08|0.00|A|F|1994-02-28|1994-02-16|1994-03-05|COLLECT COD|MAIL|packages. platelets according to th| +25643|991300|3820|1|22|30607.72|0.08|0.07|N|O|1998-08-30|1998-07-20|1998-09-20|DELIVER IN PERSON|REG AIR|ts. regular excu| +25643|775216|37732|2|6|7747.08|0.07|0.08|N|O|1998-07-10|1998-08-05|1998-07-16|COLLECT COD|SHIP|uests. platelets slee| +25643|55298|42802|3|15|18799.35|0.09|0.08|N|O|1998-06-30|1998-08-22|1998-07-12|DELIVER IN PERSON|SHIP|ffily. regular reques| +25643|379816|42324|4|18|34124.40|0.09|0.02|N|O|1998-08-16|1998-08-23|1998-08-21|COLLECT COD|SHIP|ckages cajole furiou| +25643|560595|48129|5|15|24833.55|0.02|0.02|N|O|1998-07-08|1998-08-07|1998-07-14|DELIVER IN PERSON|RAIL|as are carefully. brave accounts affix f| +25643|912018|12019|6|1|1029.97|0.08|0.06|N|O|1998-06-29|1998-08-23|1998-07-13|NONE|AIR| haggle after the boldly fin| +25644|20317|20318|1|39|48255.09|0.03|0.03|R|F|1994-06-14|1994-07-07|1994-06-22|COLLECT COD|TRUCK|fully. deposits solve slyly. regular id| +25645|377461|27462|1|38|58461.10|0.04|0.08|A|F|1994-07-26|1994-07-13|1994-08-22|COLLECT COD|SHIP|ckages. slyly ironic sauternes use. | +25645|981636|6675|2|21|36069.39|0.05|0.02|R|F|1994-07-22|1994-07-14|1994-08-19|NONE|SHIP|ages? fluffily final grouches wake. furi| +25645|349003|36522|3|7|7363.93|0.07|0.06|R|F|1994-07-04|1994-08-05|1994-07-29|TAKE BACK RETURN|SHIP| carefully final depths. furiously final | +25646|377677|27678|1|18|31583.88|0.08|0.03|N|O|1998-03-05|1998-01-17|1998-03-21|TAKE BACK RETURN|SHIP| across the even excuses i| +25646|604251|29276|2|35|40432.70|0.07|0.01|N|O|1998-03-23|1998-01-22|1998-03-25|COLLECT COD|TRUCK|nly fluffily expres| +25646|639614|39615|3|3|4660.74|0.07|0.03|N|O|1998-03-21|1998-01-10|1998-04-19|TAKE BACK RETURN|SHIP|beans are blithely slow ideas.| +25646|985358|10397|4|48|69278.88|0.08|0.02|N|O|1997-12-18|1998-01-11|1997-12-31|DELIVER IN PERSON|SHIP|to beans haggle q| +25646|899827|24862|5|49|89512.22|0.04|0.07|N|O|1998-03-22|1998-01-27|1998-04-02|COLLECT COD|REG AIR|ole. bold accounts ha| +25646|383376|33377|6|17|24809.12|0.08|0.08|N|O|1997-12-20|1998-01-04|1998-01-05|DELIVER IN PERSON|AIR|eans-- requests use | +25647|60318|47822|1|2|2556.62|0.04|0.04|R|F|1994-06-19|1994-06-30|1994-07-06|TAKE BACK RETURN|RAIL|efully regular foxes c| +25647|752342|14858|2|22|30674.82|0.07|0.02|R|F|1994-06-29|1994-07-18|1994-07-09|COLLECT COD|AIR|leep. platelets are sly| +25647|604873|17386|3|36|64002.24|0.06|0.08|R|F|1994-06-20|1994-07-02|1994-07-07|TAKE BACK RETURN|SHIP| silent excuses wake to the car| +25647|90181|27685|4|16|18738.88|0.07|0.04|R|F|1994-05-15|1994-07-12|1994-06-04|COLLECT COD|REG AIR|ix according to| +25672|556834|31857|1|41|77523.21|0.09|0.02|N|O|1997-10-29|1997-10-27|1997-10-30|COLLECT COD|TRUCK|leep blithely. quickly | +25672|699740|49741|2|49|85245.79|0.03|0.00|N|O|1997-10-12|1997-10-11|1997-11-02|DELIVER IN PERSON|SHIP|even instructions boost quietly among| +25673|542289|4800|1|43|57244.18|0.07|0.01|N|O|1997-04-14|1997-03-01|1997-05-02|TAKE BACK RETURN|RAIL|lar warhorses wake furiously| +25673|245428|45429|2|29|39828.89|0.04|0.04|N|O|1997-02-20|1997-04-04|1997-02-25|DELIVER IN PERSON|AIR|ent notornis. for| +25673|908072|8073|3|44|47521.32|0.05|0.06|N|O|1997-04-15|1997-04-25|1997-05-09|COLLECT COD|AIR|counts run. qui| +25673|950661|13181|4|40|68464.80|0.05|0.07|N|O|1997-04-01|1997-04-22|1997-04-17|NONE|MAIL|ong the pinto beans. carefully ironic de| +25674|974125|24126|1|38|45565.04|0.02|0.04|R|F|1992-11-16|1992-10-21|1992-12-16|NONE|TRUCK| thin foxes eat furiously. blithe| +25674|115732|3239|2|45|78647.85|0.04|0.02|R|F|1992-11-13|1992-10-16|1992-11-25|TAKE BACK RETURN|REG AIR|l, regular de| +25674|102094|27099|3|11|12056.99|0.00|0.02|A|F|1992-09-12|1992-08-28|1992-10-02|COLLECT COD|SHIP|pinto beans wake along the | +25674|884432|46950|4|35|49573.65|0.01|0.03|R|F|1992-11-09|1992-09-09|1992-11-29|COLLECT COD|AIR|tegrate according to the slyly ir| +25675|404289|41814|1|9|10739.34|0.04|0.07|N|O|1997-03-16|1997-04-06|1997-03-29|TAKE BACK RETURN|FOB|ajole fluffily bo| +25675|876684|1719|2|6|9963.84|0.00|0.05|N|O|1997-04-03|1997-03-19|1997-04-08|DELIVER IN PERSON|MAIL| fluffily bold accounts h| +25675|413928|26437|3|40|73676.00|0.06|0.00|N|O|1997-02-15|1997-04-19|1997-03-12|NONE|SHIP|thrash slyly requests. even accounts ar| +25676|402920|27937|1|18|32812.20|0.08|0.03|N|O|1996-11-04|1996-09-30|1996-11-08|DELIVER IN PERSON|FOB|l, final braids. excuses i| +25676|864372|39407|2|40|53453.20|0.09|0.01|N|O|1996-09-15|1996-10-21|1996-09-21|TAKE BACK RETURN|AIR|lar packages-- fluffily ironic rea| +25676|489334|39335|3|8|10586.48|0.05|0.03|N|O|1996-09-24|1996-10-01|1996-10-01|COLLECT COD|MAIL| deposits! ironic, pending requests hagg| +25676|232548|20061|4|43|63662.79|0.06|0.05|N|O|1996-11-15|1996-10-17|1996-12-06|COLLECT COD|REG AIR|. carefully even warth| +25676|420273|45290|5|40|47730.00|0.04|0.05|N|O|1996-09-15|1996-09-21|1996-09-26|COLLECT COD|SHIP|iously bold asymptotes according t| +25676|522287|34798|6|20|26185.20|0.09|0.03|N|O|1996-09-24|1996-10-28|1996-10-02|TAKE BACK RETURN|MAIL| play along the | +25676|68394|18395|7|47|64032.33|0.02|0.02|N|O|1996-10-03|1996-10-27|1996-10-15|COLLECT COD|RAIL|ss the bold requ| +25677|483366|20894|1|14|18890.76|0.08|0.06|A|F|1995-01-03|1995-01-05|1995-01-20|TAKE BACK RETURN|SHIP|ructions? ironic requests| +25677|920940|20941|2|45|88240.50|0.06|0.00|R|F|1995-02-20|1994-12-10|1995-03-08|DELIVER IN PERSON|SHIP|l, final T| +25677|226654|26655|3|6|9483.84|0.07|0.03|R|F|1994-12-18|1994-12-09|1995-01-12|TAKE BACK RETURN|FOB|lets are blithely al| +25678|170744|8254|1|29|52627.46|0.03|0.08|N|O|1995-08-12|1995-08-01|1995-08-18|DELIVER IN PERSON|AIR|furiously unusual pinto beans.| +25678|681567|19107|2|32|49552.96|0.08|0.08|N|O|1995-07-13|1995-09-12|1995-08-09|NONE|REG AIR|ding warhorses engage above the slyly silen| +25678|84980|34981|3|6|11789.88|0.01|0.06|N|O|1995-10-12|1995-09-08|1995-11-10|TAKE BACK RETURN|FOB|ully regular excuses. furiously stealthy d| +25679|780831|43347|1|13|24853.40|0.01|0.06|A|F|1993-02-08|1993-02-24|1993-02-23|TAKE BACK RETURN|FOB|leep furiously fluffily| +25704|236522|24035|1|31|45213.81|0.02|0.06|N|O|1998-06-11|1998-06-04|1998-06-20|COLLECT COD|TRUCK|xpress packa| +25704|211228|36237|2|37|42150.77|0.06|0.06|N|O|1998-07-26|1998-06-09|1998-08-25|TAKE BACK RETURN|AIR|accounts believe against the blithely| +25704|107777|20280|3|35|62466.95|0.06|0.04|N|O|1998-05-23|1998-07-05|1998-05-24|DELIVER IN PERSON|FOB| the deposits. fluffily bold instructi| +25704|403696|16205|4|23|36792.41|0.10|0.08|N|O|1998-07-10|1998-06-13|1998-08-08|DELIVER IN PERSON|MAIL|tegrate boldly at th| +25704|905013|5014|5|39|39700.83|0.06|0.00|N|O|1998-06-26|1998-07-21|1998-07-13|DELIVER IN PERSON|TRUCK|r theodolites? slyly | +25704|539601|2112|6|49|80388.42|0.09|0.01|N|O|1998-07-16|1998-07-19|1998-08-07|NONE|REG AIR|lyly ironic somas. reg| +25704|67023|17024|7|4|3960.08|0.00|0.00|N|O|1998-07-17|1998-06-16|1998-07-30|NONE|SHIP|y regular theodolites. | +25705|450690|13200|1|28|45938.76|0.00|0.03|A|F|1992-12-22|1992-10-26|1992-12-26|COLLECT COD|AIR|ut the blithely regular rea| +25705|735022|35023|2|24|25367.76|0.05|0.07|A|F|1992-12-28|1992-11-13|1993-01-20|NONE|TRUCK|jole along the furiously ironic ins| +25706|821318|46351|1|5|6196.35|0.07|0.05|A|F|1993-10-06|1993-08-06|1993-10-22|COLLECT COD|TRUCK|lar accounts doze slyly. regular deposits| +25706|889639|39640|2|49|79800.91|0.03|0.01|A|F|1993-08-07|1993-09-15|1993-08-28|DELIVER IN PERSON|RAIL| even requests. slyly sp| +25706|149328|11831|3|48|66111.36|0.08|0.01|R|F|1993-09-28|1993-08-26|1993-10-15|COLLECT COD|REG AIR|e carefully. slowly special pinto b| +25706|742477|17506|4|44|66855.36|0.08|0.05|R|F|1993-09-06|1993-09-10|1993-09-29|COLLECT COD|RAIL|press escapades. iro| +25706|810190|47739|5|10|11001.50|0.10|0.02|R|F|1993-08-30|1993-09-18|1993-09-15|TAKE BACK RETURN|FOB|ickly carefully pending packages. slyl| +25707|434284|34285|1|37|45075.62|0.07|0.06|N|O|1998-04-29|1998-04-21|1998-05-05|DELIVER IN PERSON|AIR|ly ironic accounts about the ironic r| +25707|994564|19603|2|3|4975.56|0.04|0.07|N|O|1998-06-18|1998-05-18|1998-07-10|NONE|MAIL|ng requests| +25707|630231|30232|3|20|23224.00|0.07|0.04|N|O|1998-05-28|1998-05-25|1998-06-14|NONE|FOB|press quickly above the fluffil| +25707|280855|43361|4|22|40388.48|0.08|0.01|N|O|1998-05-29|1998-06-01|1998-06-16|NONE|TRUCK|lent, careful | +25708|988499|13538|1|47|74610.15|0.09|0.08|A|F|1993-10-31|1993-08-27|1993-11-17|DELIVER IN PERSON|MAIL|final requests according | +25709|815450|40483|1|38|51885.58|0.10|0.04|A|F|1993-08-29|1993-10-17|1993-09-16|TAKE BACK RETURN|TRUCK| final accounts. pending, pending pinto b| +25709|265576|40587|2|9|13874.04|0.01|0.00|R|F|1993-11-27|1993-11-10|1993-12-16|NONE|SHIP| are carefully alongside of the fin| +25709|528202|28203|3|19|23373.42|0.10|0.04|R|F|1993-09-18|1993-10-15|1993-10-12|COLLECT COD|FOB|usly even packages haggle furiou| +25709|474389|11917|4|41|55897.76|0.00|0.01|R|F|1993-08-20|1993-11-11|1993-08-31|NONE|REG AIR| notornis eat against the ironic, silen| +25710|279655|42161|1|43|70289.52|0.08|0.06|R|F|1993-01-29|1993-01-12|1993-02-25|DELIVER IN PERSON|MAIL| stealthy accounts nag alw| +25710|155166|30173|2|10|12211.60|0.07|0.03|A|F|1993-03-06|1992-12-31|1993-04-03|COLLECT COD|RAIL|the ironic, special pack| +25710|858413|45965|3|3|4114.11|0.06|0.04|A|F|1993-01-05|1992-12-30|1993-01-10|TAKE BACK RETURN|REG AIR|e the carefully express theodoli| +25711|226538|1547|1|8|11716.16|0.06|0.00|N|O|1997-10-23|1997-09-26|1997-11-16|DELIVER IN PERSON|TRUCK|jole carefull| +25711|413151|13152|2|43|45757.59|0.09|0.07|N|O|1997-07-12|1997-09-17|1997-08-11|TAKE BACK RETURN|RAIL|p blithely stealthily regular excuses. sl| +25711|828511|16060|3|32|46063.04|0.07|0.03|N|O|1997-08-29|1997-09-23|1997-09-14|DELIVER IN PERSON|MAIL|beans. even accounts nag blithely. fina| +25711|780145|5176|4|33|40428.63|0.07|0.02|N|O|1997-08-11|1997-08-03|1997-08-31|TAKE BACK RETURN|REG AIR| foxes. deposits sleep blithely slyly f| +25736|550947|25970|1|27|53943.84|0.02|0.00|A|F|1994-05-23|1994-03-08|1994-05-29|COLLECT COD|RAIL|ts. carefully careful packa| +25737|590975|15998|1|18|37187.10|0.06|0.03|N|O|1996-07-17|1996-06-01|1996-08-13|COLLECT COD|FOB|s. sentiments are quickly a| +25737|515814|15815|2|35|64042.65|0.07|0.08|N|O|1996-07-15|1996-07-11|1996-07-19|DELIVER IN PERSON|FOB|final platelets cajole according | +25737|271804|34310|3|48|85237.92|0.09|0.04|N|O|1996-07-27|1996-07-14|1996-08-22|COLLECT COD|SHIP|riously unusual deposits cajole e| +25737|202118|2119|4|29|29582.90|0.07|0.06|N|O|1996-05-28|1996-06-08|1996-06-02|NONE|TRUCK|e regular, regular packages| +25737|989590|14629|5|50|83977.50|0.01|0.00|N|O|1996-06-18|1996-07-06|1996-07-07|TAKE BACK RETURN|REG AIR|nt ideas. slyly ironic requests instead | +25738|733198|45713|1|32|39397.12|0.10|0.00|R|F|1992-03-06|1992-04-17|1992-03-13|NONE|FOB|nt foxes. deposits affix blithely. | +25738|858466|46018|2|10|14244.20|0.03|0.06|R|F|1992-04-07|1992-05-06|1992-04-20|COLLECT COD|MAIL| packages after the furiously | +25738|221529|46538|3|31|44965.81|0.06|0.02|A|F|1992-06-18|1992-04-08|1992-07-17|DELIVER IN PERSON|TRUCK|dazzle blithely a| +25739|276267|1278|1|12|14919.00|0.02|0.04|N|O|1998-11-11|1998-10-01|1998-12-05|COLLECT COD|TRUCK|ording to the furiously even re| +25739|205494|17999|2|31|43383.88|0.09|0.05|N|O|1998-09-15|1998-09-21|1998-10-14|TAKE BACK RETURN|AIR|es cajole slyly above the carefully b| +25740|490407|27935|1|13|18165.94|0.07|0.06|N|O|1996-11-25|1996-12-17|1996-12-20|TAKE BACK RETURN|TRUCK|thin accounts around the regular req| +25740|259799|22305|2|29|51004.62|0.08|0.04|N|O|1996-10-13|1996-11-20|1996-10-17|COLLECT COD|FOB|the furiously| +25741|748598|36141|1|24|39517.44|0.08|0.04|N|O|1996-04-10|1996-06-03|1996-05-05|DELIVER IN PERSON|FOB|fully regular packages. furio| +25741|677780|27781|2|31|54490.25|0.02|0.07|N|O|1996-05-08|1996-05-31|1996-05-23|COLLECT COD|MAIL|, even requests will have to slee| +25741|447621|35146|3|8|12548.80|0.03|0.06|N|O|1996-04-13|1996-05-20|1996-05-02|TAKE BACK RETURN|FOB|lets are bl| +25741|157996|45506|4|13|26701.87|0.10|0.02|N|O|1996-06-26|1996-05-02|1996-07-09|NONE|REG AIR|ely thin packages nag carefully bli| +25741|428948|16473|5|38|71322.96|0.07|0.06|N|O|1996-06-13|1996-05-23|1996-06-22|NONE|RAIL|ely unusua| +25741|322749|35256|6|35|62010.55|0.09|0.06|N|O|1996-03-19|1996-05-27|1996-03-29|DELIVER IN PERSON|TRUCK|ronic accounts. quickly silent | +25742|449797|37322|1|45|78604.65|0.01|0.07|N|O|1997-09-15|1997-08-07|1997-09-26|NONE|SHIP|ymptotes sleep slyly; car| +25742|726143|26144|2|16|18705.76|0.07|0.07|N|O|1997-09-18|1997-08-13|1997-10-06|TAKE BACK RETURN|MAIL| requests against the | +25742|273326|35832|3|6|7795.86|0.05|0.07|N|O|1997-07-14|1997-09-06|1997-08-12|DELIVER IN PERSON|TRUCK|nts nag blithely at the blithely | +25742|787122|37123|4|44|53199.96|0.07|0.00|N|O|1997-10-22|1997-09-26|1997-11-05|NONE|SHIP|unts nod ca| +25742|147440|9943|5|31|46110.64|0.04|0.03|N|O|1997-10-18|1997-09-25|1997-11-09|TAKE BACK RETURN|MAIL|sleep pending accounts. enticingly ev| +25742|7364|32365|6|49|62296.64|0.09|0.03|N|O|1997-10-23|1997-08-10|1997-11-14|NONE|SHIP|ilent accounts. | +25742|759199|9200|7|9|11323.44|0.05|0.03|N|O|1997-07-25|1997-08-14|1997-08-21|COLLECT COD|REG AIR|riously regula| +25743|855376|17894|1|8|10650.64|0.08|0.06|N|O|1998-02-04|1998-01-22|1998-02-09|DELIVER IN PERSON|RAIL| instructions wak| +25743|298429|10935|2|46|65660.86|0.04|0.05|N|O|1997-12-30|1998-01-06|1998-01-14|NONE|AIR|uses against the regular de| +25768|391617|16632|1|26|44423.60|0.07|0.01|R|F|1993-08-20|1993-08-30|1993-09-09|COLLECT COD|SHIP|counts haggle slyly above| +25768|906267|43822|2|47|59841.34|0.10|0.04|R|F|1993-08-15|1993-07-17|1993-08-21|TAKE BACK RETURN|FOB|unts thrash carefully unusual pinto b| +25768|619066|6603|3|27|26595.81|0.04|0.04|A|F|1993-07-05|1993-08-19|1993-08-03|COLLECT COD|AIR|lites haggle among the fluffily pending dep| +25768|630230|42743|4|15|17403.00|0.08|0.04|R|F|1993-08-01|1993-09-10|1993-08-08|TAKE BACK RETURN|TRUCK|. accounts x-ray carefully regul| +25768|269437|44448|5|3|4219.26|0.04|0.02|R|F|1993-09-07|1993-07-19|1993-09-23|NONE|SHIP|s sleep sly| +25769|775730|761|1|42|75839.40|0.04|0.08|A|F|1995-05-20|1995-03-30|1995-05-28|COLLECT COD|AIR| carefully unusual deposits hag| +25769|681099|6126|2|24|25921.44|0.00|0.02|A|F|1995-05-06|1995-03-24|1995-05-29|NONE|TRUCK| somas sleep| +25769|226867|26868|3|23|41258.55|0.03|0.04|A|F|1995-02-02|1995-03-21|1995-03-01|DELIVER IN PERSON|SHIP|g packages was furiously at th| +25770|496043|8553|1|42|43638.84|0.07|0.03|A|F|1995-04-04|1995-05-23|1995-04-18|DELIVER IN PERSON|RAIL|low sentiments. furiously reg| +25771|494965|32493|1|47|92117.18|0.00|0.06|N|O|1996-11-10|1996-09-14|1996-11-16|COLLECT COD|RAIL|even, unusual instructions. reques| +25771|876221|1256|2|3|3591.54|0.07|0.01|N|O|1996-09-08|1996-10-07|1996-09-12|TAKE BACK RETURN|TRUCK| quickly sl| +25771|632341|7366|3|43|54752.33|0.04|0.07|N|O|1996-10-31|1996-09-30|1996-11-23|TAKE BACK RETURN|RAIL|he carefully unus| +25771|746376|33919|4|21|29869.14|0.09|0.06|N|O|1996-10-16|1996-09-15|1996-10-20|TAKE BACK RETURN|REG AIR|ainst the fluffily ironi| +25772|101056|26061|1|24|25369.20|0.03|0.04|N|O|1998-02-17|1997-12-17|1998-03-18|DELIVER IN PERSON|SHIP| the regular, unusual foxes u| +25772|437451|37452|2|32|44429.76|0.06|0.03|N|O|1997-11-27|1998-01-30|1997-11-29|TAKE BACK RETURN|REG AIR|ily ironic asymptot| +25772|236376|11385|3|22|28871.92|0.10|0.01|N|O|1997-12-07|1997-12-17|1997-12-17|NONE|RAIL|its across th| +25773|920964|46001|1|12|23819.04|0.01|0.01|A|F|1992-09-04|1992-08-08|1992-09-22|DELIVER IN PERSON|REG AIR| requests. slyly regular t| +25773|632029|44542|2|5|4804.95|0.10|0.08|R|F|1992-06-04|1992-07-28|1992-06-11|DELIVER IN PERSON|FOB|es are about the unusual packa| +25773|499085|24104|3|12|13008.72|0.07|0.02|A|F|1992-06-22|1992-07-05|1992-06-23|TAKE BACK RETURN|TRUCK|ully regular instructions. ironic, ironi| +25773|118982|18983|4|33|66032.34|0.07|0.02|A|F|1992-08-04|1992-08-15|1992-08-17|DELIVER IN PERSON|FOB|inal asymptotes. boldly final theodolites b| +25773|718412|5955|5|1|1430.38|0.04|0.07|A|F|1992-08-25|1992-07-23|1992-09-12|COLLECT COD|FOB|ial, final deposits affix slyly pe| +25773|338989|14002|6|38|77062.86|0.02|0.05|A|F|1992-07-12|1992-07-06|1992-08-06|TAKE BACK RETURN|FOB|riously sl| +25773|380759|5774|7|10|18397.40|0.10|0.05|R|F|1992-06-29|1992-07-22|1992-07-14|NONE|AIR| orbits. f| +25774|404508|17017|1|21|29662.08|0.02|0.04|A|F|1994-08-14|1994-06-10|1994-08-25|TAKE BACK RETURN|FOB|counts haggle bold, express accounts. | +25775|113178|685|1|31|36926.27|0.04|0.03|A|F|1994-10-17|1994-08-15|1994-11-10|TAKE BACK RETURN|TRUCK|r the slyly even | +25775|178145|15655|2|14|17123.96|0.10|0.04|R|F|1994-10-28|1994-09-06|1994-11-20|TAKE BACK RETURN|FOB|rts. carefully final acc| +25800|314761|14762|1|26|46169.50|0.04|0.05|R|F|1995-05-13|1995-06-08|1995-06-03|NONE|TRUCK|le fluffily decoys. fluffily unusual depe| +25800|187187|37188|2|34|43322.12|0.00|0.03|N|O|1995-07-18|1995-07-24|1995-07-20|DELIVER IN PERSON|MAIL| quickly regular accounts. carefully fina| +25800|37889|390|3|44|80382.72|0.01|0.03|N|O|1995-07-30|1995-06-28|1995-08-24|COLLECT COD|SHIP| impress blithely among the c| +25800|793694|43695|4|26|46479.16|0.06|0.05|R|F|1995-05-09|1995-08-01|1995-05-21|COLLECT COD|FOB|ly regular deposits wake finally furio| +25800|599862|37396|5|18|35313.12|0.07|0.05|N|O|1995-07-07|1995-08-04|1995-07-19|TAKE BACK RETURN|TRUCK|unusual pinto beans sleep along th| +25800|869987|45022|6|13|25440.22|0.06|0.02|N|O|1995-08-03|1995-06-18|1995-08-13|TAKE BACK RETURN|RAIL|nic dependencies doubt quickly regul| +25801|121593|46598|1|23|37135.57|0.03|0.03|N|O|1998-06-05|1998-06-18|1998-06-19|DELIVER IN PERSON|TRUCK|. sly deposits are fluffily. saute| +25801|601545|39082|2|22|31823.22|0.03|0.05|N|O|1998-07-10|1998-05-10|1998-07-27|NONE|FOB|lithely expres| +25801|160895|10896|3|35|68456.15|0.07|0.01|N|O|1998-04-10|1998-04-28|1998-04-23|TAKE BACK RETURN|FOB|. even requests | +25801|159969|9970|4|6|12173.76|0.09|0.06|N|O|1998-04-24|1998-05-17|1998-05-24|NONE|TRUCK|bold ideas. final, unus| +25801|596765|21788|5|38|70746.12|0.10|0.07|N|O|1998-07-07|1998-05-01|1998-08-05|DELIVER IN PERSON|AIR|lyly special dependencies. furiousl| +25801|812775|12776|6|18|30379.14|0.03|0.05|N|O|1998-07-09|1998-06-05|1998-07-24|TAKE BACK RETURN|MAIL|ic foxes. furiously careful | +25802|986933|49453|1|42|84835.38|0.08|0.08|R|F|1994-11-11|1994-12-11|1994-11-27|COLLECT COD|REG AIR|kly bold ideas use slyly across the| +25802|369304|44319|2|44|60424.76|0.03|0.06|A|F|1994-12-20|1995-01-05|1994-12-24|TAKE BACK RETURN|FOB|y regular asymptotes s| +25802|889740|14775|3|26|44972.20|0.09|0.05|R|F|1994-10-22|1994-11-21|1994-10-23|TAKE BACK RETURN|MAIL|the accounts. fluffily regular dependencies| +25802|847720|10237|4|9|15009.12|0.02|0.05|A|F|1995-01-05|1995-01-02|1995-01-19|DELIVER IN PERSON|RAIL|ongside of the furiously furious | +25802|626345|13882|5|34|43224.54|0.08|0.05|A|F|1995-02-02|1994-11-14|1995-02-08|DELIVER IN PERSON|SHIP|e slyly bold instructions. regular, re| +25802|965554|40593|6|39|63160.89|0.09|0.02|R|F|1994-12-17|1995-01-07|1995-01-13|DELIVER IN PERSON|AIR| blithely permanent packages. silent| +25803|169189|31693|1|41|51585.38|0.01|0.05|A|F|1995-02-08|1995-04-06|1995-03-09|NONE|RAIL|according to the fin| +25803|548349|48350|2|30|41919.60|0.00|0.00|A|F|1995-05-11|1995-03-23|1995-06-06|COLLECT COD|SHIP|silent accounts nag b| +25803|99684|12186|3|23|38724.64|0.06|0.07|R|F|1995-05-04|1995-03-12|1995-05-08|TAKE BACK RETURN|MAIL| carefully final pinto bean| +25804|973758|23759|1|5|9158.55|0.01|0.02|N|O|1998-06-22|1998-05-15|1998-07-14|NONE|TRUCK|otes after the bold requests are slyly | +25804|947293|47294|2|12|16083.00|0.05|0.00|N|O|1998-03-05|1998-03-30|1998-04-04|TAKE BACK RETURN|REG AIR| nod slyly slyly ironic tithes-- furious| +25804|147453|9956|3|6|9002.70|0.04|0.01|N|O|1998-05-05|1998-04-15|1998-05-19|COLLECT COD|TRUCK|final deposits maintain! special, regular p| +25804|238085|25598|4|44|45015.08|0.03|0.05|N|O|1998-03-30|1998-04-21|1998-04-09|TAKE BACK RETURN|REG AIR|ar request| +25804|493194|43195|5|15|17807.55|0.01|0.04|N|O|1998-04-08|1998-05-18|1998-04-24|NONE|RAIL|al attainments. final,| +25804|100274|275|6|16|20388.32|0.05|0.06|N|O|1998-04-30|1998-04-15|1998-05-24|NONE|SHIP|after the even requests. packa| +25804|304318|4319|7|48|63470.40|0.09|0.05|N|O|1998-04-02|1998-04-04|1998-04-17|NONE|MAIL|ular deposits are blithely across the slyly| +25805|672529|10069|1|18|27026.82|0.00|0.08|N|O|1996-08-07|1996-08-18|1996-08-20|NONE|AIR|ily furiously | +25805|182572|32573|2|42|69491.94|0.05|0.05|N|O|1996-08-16|1996-08-15|1996-09-04|NONE|SHIP|nstructions cajole | +25805|479407|29408|3|15|20795.70|0.09|0.00|N|O|1996-08-27|1996-08-16|1996-09-26|NONE|MAIL|special requests integrate carefull| +25805|387738|25260|4|17|31037.24|0.06|0.05|N|O|1996-09-03|1996-08-19|1996-09-30|DELIVER IN PERSON|FOB|tes. slyly regular packages believe again| +25805|706679|44222|5|5|8428.20|0.01|0.03|N|O|1996-09-16|1996-06-25|1996-10-05|COLLECT COD|TRUCK|its. evenly pending accounts boost carefu| +25805|138190|25697|6|34|41758.46|0.01|0.05|N|O|1996-09-17|1996-08-01|1996-09-18|COLLECT COD|SHIP|hin theodolites are carefully. carefull| +25805|547511|10022|7|40|62339.60|0.05|0.08|N|O|1996-06-04|1996-08-14|1996-06-06|NONE|TRUCK|osits! final requests b| +25806|13714|38715|1|2|3255.42|0.10|0.08|N|O|1996-11-11|1996-10-24|1996-11-26|DELIVER IN PERSON|TRUCK|s. requests behind the qu| +25806|488634|1144|2|42|68149.62|0.10|0.08|N|O|1996-10-29|1996-10-14|1996-11-01|COLLECT COD|TRUCK|lar accounts snooze regular frays. slyl| +25807|320251|7770|1|23|29238.52|0.09|0.03|N|O|1996-03-16|1996-04-27|1996-03-22|DELIVER IN PERSON|MAIL|silent, slow instructions engage ironic, | +25807|453193|40721|2|38|43554.46|0.06|0.06|N|O|1996-04-24|1996-05-22|1996-04-28|TAKE BACK RETURN|RAIL|telets nag along the express requests. i| +25807|806843|44392|3|28|48994.40|0.04|0.04|N|O|1996-05-01|1996-06-03|1996-05-11|DELIVER IN PERSON|AIR|tes; carefully final accounts dete| +25807|609690|47227|4|11|17596.26|0.00|0.04|N|O|1996-03-30|1996-04-23|1996-03-31|TAKE BACK RETURN|MAIL|quests wake fluffily unusual acc| +25807|43123|43124|5|4|4264.48|0.05|0.01|N|O|1996-06-30|1996-05-13|1996-07-14|COLLECT COD|REG AIR|es. idly regular packages sleep. | +25807|763908|26424|6|6|11831.22|0.02|0.06|N|O|1996-05-10|1996-05-08|1996-05-28|COLLECT COD|SHIP| alongside of the sl| +25832|747499|10014|1|42|64951.32|0.03|0.02|N|O|1996-08-09|1996-08-07|1996-08-14|NONE|MAIL|y ironic deposits cajole quickly. | +25832|212472|12473|2|4|5537.84|0.00|0.08|N|O|1996-07-17|1996-09-10|1996-07-22|TAKE BACK RETURN|TRUCK| boost slyly furious inst| +25832|4872|4873|3|48|85289.76|0.01|0.05|N|O|1996-08-10|1996-08-18|1996-08-31|DELIVER IN PERSON|REG AIR|y final theodolites sleep | +25832|873363|35881|4|21|28062.72|0.01|0.03|N|O|1996-10-28|1996-10-01|1996-11-03|TAKE BACK RETURN|AIR|e sly, final pinto beans. c| +25833|746594|9109|1|25|41014.00|0.09|0.05|A|F|1993-10-20|1993-11-16|1993-11-06|DELIVER IN PERSON|SHIP|bout the furious accounts! deposits ea| +25834|420389|7914|1|9|11784.24|0.07|0.00|N|O|1997-05-26|1997-06-08|1997-06-19|TAKE BACK RETURN|TRUCK|iously ironic requests use after the fu| +25834|467093|42112|2|18|19081.26|0.00|0.07|N|O|1997-07-24|1997-07-05|1997-08-05|COLLECT COD|REG AIR|e furious packages! regular foxe| +25834|419520|32029|3|15|21592.50|0.05|0.03|N|O|1997-06-16|1997-07-28|1997-06-23|TAKE BACK RETURN|SHIP|press accounts boost sly| +25834|872299|9851|4|49|62291.25|0.00|0.06|N|O|1997-05-12|1997-06-10|1997-05-16|NONE|TRUCK|ecial accounts. never thin attai| +25835|90575|28079|1|28|43835.96|0.01|0.04|R|F|1992-10-08|1992-11-19|1992-10-14|COLLECT COD|TRUCK|nt excuses. packages haggle quickly above t| +25835|285132|22648|2|27|30162.24|0.06|0.00|R|F|1992-10-10|1992-11-13|1992-10-24|COLLECT COD|RAIL|s. regular request| +25835|208232|8233|3|10|11402.20|0.09|0.08|R|F|1992-10-31|1992-12-16|1992-11-30|DELIVER IN PERSON|FOB|its. fluffily ironic waters thrash| +25835|747228|22257|4|12|15302.28|0.08|0.02|R|F|1992-11-02|1992-11-15|1992-11-24|NONE|SHIP|ly ironic a| +25835|646811|21836|5|27|47460.06|0.09|0.03|A|F|1993-01-19|1992-10-23|1993-01-25|TAKE BACK RETURN|REG AIR|ickly according to the furiously final acc| +25836|339732|2239|1|4|7086.88|0.02|0.01|N|O|1997-11-11|1997-12-12|1997-11-14|TAKE BACK RETURN|RAIL|ter the requests. ironicall| +25836|862526|12527|2|19|28281.12|0.05|0.04|N|O|1998-01-14|1997-12-04|1998-02-08|NONE|TRUCK|er the blithely ironic instruc| +25836|472862|47881|3|43|78898.12|0.06|0.02|N|O|1997-11-07|1997-12-14|1997-11-24|TAKE BACK RETURN|FOB|al foxes. slyly silent accounts beside | +25836|375878|25879|4|13|25400.18|0.00|0.04|N|O|1997-11-02|1997-12-06|1997-11-24|TAKE BACK RETURN|AIR|carefully about the fluffily spec| +25836|369226|6748|5|12|15542.52|0.05|0.04|N|O|1997-11-12|1998-01-22|1997-11-14|NONE|MAIL|ld accounts impress even packages: furious| +25836|568015|5549|6|33|35738.67|0.02|0.06|N|O|1997-11-14|1998-01-05|1997-12-10|TAKE BACK RETURN|TRUCK|ward the foxes. slow r| +25836|614521|14522|7|41|58855.09|0.06|0.05|N|O|1998-01-04|1998-01-26|1998-01-12|TAKE BACK RETURN|FOB|counts. slyly final requests a| +25837|243927|43928|1|44|82320.04|0.10|0.01|N|O|1997-01-23|1997-01-15|1997-02-10|NONE|FOB|l, unusual requests | +25837|672625|35139|2|35|55915.65|0.07|0.03|N|O|1996-11-30|1997-01-13|1996-12-15|NONE|RAIL|press idly final | +25837|796581|21612|3|17|28518.35|0.03|0.03|N|O|1997-02-08|1996-12-28|1997-02-26|TAKE BACK RETURN|MAIL|t along the| +25837|122843|10350|4|5|9329.20|0.04|0.04|N|O|1997-01-04|1997-01-28|1997-01-06|TAKE BACK RETURN|TRUCK|ages. slyly | +25837|606518|31543|5|31|44158.88|0.06|0.05|N|O|1997-02-16|1996-12-29|1997-03-07|DELIVER IN PERSON|AIR|on the unusual deposits. | +25837|747435|22464|6|37|54848.80|0.07|0.00|N|O|1996-11-15|1997-01-08|1996-12-01|NONE|MAIL| fluffily | +25837|127260|27261|7|12|15447.12|0.08|0.01|N|O|1996-12-12|1996-12-06|1997-01-04|TAKE BACK RETURN|SHIP|sleep quickly blithel| +25838|843630|6147|1|17|26751.03|0.09|0.05|A|F|1993-05-20|1993-07-23|1993-06-19|NONE|RAIL|es haggle daringly. bold, unusual foxes c| +25838|883782|33783|2|18|31783.32|0.01|0.01|R|F|1993-08-19|1993-06-15|1993-08-20|TAKE BACK RETURN|MAIL|ss accounts? blithely regular pinto beans| +25838|722599|10142|3|25|40539.00|0.04|0.04|A|F|1993-06-10|1993-05-30|1993-07-07|TAKE BACK RETURN|TRUCK|e deposits accordin| +25838|715141|15142|4|27|31214.97|0.05|0.02|R|F|1993-06-29|1993-07-19|1993-07-12|TAKE BACK RETURN|MAIL|nal deposits. regular,| +25839|114061|1568|1|25|26876.50|0.03|0.05|R|F|1993-08-14|1993-09-22|1993-09-01|NONE|AIR|ly among the slyly regular accou| +25839|22889|10390|2|34|61603.92|0.03|0.06|R|F|1993-09-23|1993-09-09|1993-09-30|NONE|SHIP|ic foxes cajole instructions. ironic | +25839|685803|10830|3|15|26831.55|0.01|0.00|A|F|1993-11-07|1993-08-28|1993-12-01|NONE|RAIL|press dependencies.| +25839|288614|13625|4|25|40065.00|0.01|0.04|A|F|1993-08-30|1993-08-21|1993-09-02|COLLECT COD|RAIL|frets haggle e| +25864|661012|36039|1|9|8756.82|0.09|0.07|N|O|1998-06-16|1998-07-28|1998-06-17|TAKE BACK RETURN|REG AIR|totes wake fluffily agains| +25864|627554|15091|2|27|40001.04|0.05|0.00|N|O|1998-05-06|1998-06-12|1998-05-30|DELIVER IN PERSON|REG AIR|n ideas. slyly quiet accounts cajole| +25864|288624|26140|3|12|19351.32|0.01|0.01|N|O|1998-08-07|1998-07-14|1998-08-15|DELIVER IN PERSON|RAIL|odolites use according to th| +25864|890998|3516|4|23|45745.85|0.06|0.05|N|O|1998-05-31|1998-06-19|1998-06-21|COLLECT COD|SHIP|jole quickly. quickly regular sentiments | +25864|362|37863|5|11|13885.96|0.10|0.05|N|O|1998-06-16|1998-06-29|1998-06-25|TAKE BACK RETURN|REG AIR|ggle furiou| +25864|67871|30373|6|24|44132.88|0.01|0.03|N|O|1998-07-12|1998-06-25|1998-08-05|COLLECT COD|SHIP|h slyly across the carefully regular e| +25864|694064|44065|7|34|35973.02|0.09|0.00|N|O|1998-08-27|1998-07-17|1998-09-15|TAKE BACK RETURN|REG AIR|y. even requests abou| +25865|117957|5464|1|16|31599.20|0.06|0.00|N|O|1997-03-24|1997-02-25|1997-04-12|NONE|MAIL|ly pending packages. final, expres| +25865|492432|29960|2|36|51278.76|0.03|0.08|N|O|1997-04-24|1997-02-25|1997-05-21|DELIVER IN PERSON|RAIL|symptotes cajole about the caref| +25865|299606|49607|3|44|70645.96|0.00|0.08|N|O|1997-03-15|1997-03-10|1997-04-11|NONE|SHIP|latelets aft| +25866|683845|46359|1|24|43891.44|0.01|0.06|R|F|1993-01-20|1993-02-17|1993-02-02|TAKE BACK RETURN|REG AIR| sleep acr| +25866|379201|29202|2|49|62729.31|0.06|0.01|R|F|1993-03-12|1993-01-28|1993-03-14|TAKE BACK RETURN|RAIL|onic requests are slyly requests. ironic, e| +25866|226845|39350|3|33|58470.39|0.03|0.08|R|F|1993-02-26|1993-02-13|1993-03-16|DELIVER IN PERSON|AIR|ly even req| +25867|500119|25140|1|3|3357.27|0.10|0.00|N|O|1996-03-12|1996-02-20|1996-04-09|DELIVER IN PERSON|RAIL|ully special deposits. | +25867|488450|25978|2|40|57537.20|0.09|0.02|N|O|1996-04-22|1996-03-29|1996-04-23|COLLECT COD|TRUCK| after the ironic, fi| +25867|371603|21604|3|14|23444.26|0.03|0.05|N|O|1996-05-11|1996-04-06|1996-05-15|TAKE BACK RETURN|AIR|into beans. packages nod furiously. | +25867|522013|47034|4|50|51749.50|0.04|0.05|N|O|1996-03-09|1996-02-15|1996-03-10|NONE|TRUCK|ccounts grow quickly special instruc| +25867|468343|30853|5|45|59009.40|0.10|0.03|N|O|1996-03-24|1996-02-29|1996-04-17|TAKE BACK RETURN|TRUCK|ding to the ironic theodolites. fur| +25867|438393|902|6|30|39941.10|0.01|0.05|N|O|1996-01-31|1996-04-01|1996-02-24|COLLECT COD|MAIL|usly unusual accounts cajole.| +25867|69950|44953|7|43|82557.85|0.10|0.03|N|O|1996-04-22|1996-03-11|1996-04-26|NONE|REG AIR|ffily regul| +25868|649164|49165|1|16|17810.08|0.08|0.07|N|O|1996-07-20|1996-07-01|1996-08-08|DELIVER IN PERSON|MAIL| slyly blithely special asymptotes. q| +25868|498048|48049|2|41|42886.82|0.07|0.01|N|O|1996-08-09|1996-05-29|1996-08-24|TAKE BACK RETURN|FOB| carefully bold pla| +25868|677480|39994|3|36|52468.20|0.07|0.01|N|O|1996-07-31|1996-07-02|1996-08-26|COLLECT COD|FOB|yly at the| +25869|753408|3409|1|14|20459.18|0.04|0.07|N|O|1998-01-03|1998-03-02|1998-01-30|NONE|RAIL|posits integrate | +25869|524347|49368|2|18|24683.76|0.05|0.00|N|O|1998-02-08|1998-02-07|1998-02-11|NONE|AIR|ans sleep slyly about the carefully regu| +25869|692971|17998|3|11|21603.34|0.09|0.07|N|O|1998-02-21|1998-02-24|1998-03-16|TAKE BACK RETURN|RAIL| against the special pearls. unusual fo| +25870|370274|32782|1|39|52426.14|0.04|0.03|N|O|1997-04-03|1997-03-04|1997-04-08|COLLECT COD|AIR|unts are even| +25870|186416|36417|2|7|10516.87|0.06|0.04|N|O|1997-02-03|1997-03-29|1997-02-26|NONE|RAIL|. fluffily express foxe| +25870|90139|40140|3|35|39519.55|0.06|0.00|N|O|1997-02-04|1997-03-01|1997-03-03|NONE|FOB|ructions lose furiously accord| +25870|965434|40473|4|37|55477.43|0.07|0.08|N|O|1997-03-15|1997-03-06|1997-03-21|DELIVER IN PERSON|AIR|furiously. ironic,| +25870|44955|32456|5|8|15199.60|0.05|0.07|N|O|1997-03-06|1997-04-20|1997-03-25|TAKE BACK RETURN|RAIL|accounts haggle carefully requests! in| +25870|557986|45520|6|49|100154.04|0.10|0.08|N|O|1997-03-30|1997-03-06|1997-04-12|DELIVER IN PERSON|REG AIR|structions about| +25871|517711|30222|1|14|24201.66|0.01|0.06|N|O|1996-10-11|1996-09-05|1996-10-22|NONE|FOB| blithely final requests. final ideas s| +25871|164595|39602|2|33|54766.47|0.10|0.08|N|O|1996-10-31|1996-08-28|1996-11-09|NONE|SHIP|blithely unus| +25871|344926|7433|3|21|41389.11|0.01|0.04|N|O|1996-11-04|1996-08-21|1996-11-10|COLLECT COD|MAIL|xpress packages detect. i| +25871|168563|18564|4|23|37525.88|0.10|0.07|N|O|1996-08-20|1996-09-27|1996-09-13|NONE|FOB|lly final dependencies nag furiously | +25871|37042|37043|5|47|46014.88|0.03|0.05|N|O|1996-11-13|1996-09-23|1996-12-01|NONE|AIR|e carefully regular packages.| +25871|563327|13328|6|39|54221.70|0.00|0.08|N|O|1996-09-18|1996-09-16|1996-09-23|COLLECT COD|SHIP| quickly regular packages. spec| +25871|832730|7763|7|29|48218.01|0.08|0.05|N|O|1996-09-28|1996-10-08|1996-10-01|DELIVER IN PERSON|SHIP|kly final dolphins. | +25896|692458|29998|1|24|34810.08|0.06|0.02|R|F|1994-02-20|1993-12-19|1994-03-16|NONE|FOB|l theodolites. car| +25896|133950|46453|2|23|45630.85|0.01|0.05|A|F|1994-01-23|1993-12-15|1994-01-26|TAKE BACK RETURN|TRUCK|s promise fluffily platelets. iron| +25896|297263|47264|3|48|60492.00|0.09|0.03|A|F|1994-01-27|1994-01-25|1994-02-25|DELIVER IN PERSON|AIR|cuses solve a| +25896|90371|2873|4|48|65345.76|0.10|0.01|R|F|1994-01-31|1994-01-25|1994-02-03|TAKE BACK RETURN|RAIL| sleep care| +25896|864062|39097|5|4|4104.08|0.01|0.07|A|F|1994-02-16|1993-12-25|1994-03-01|NONE|TRUCK|er the slyly | +25897|42494|17495|1|35|50277.15|0.06|0.05|N|O|1997-01-12|1997-02-27|1997-01-19|DELIVER IN PERSON|TRUCK|lar, daring asym| +25897|189356|39357|2|12|17344.20|0.02|0.07|N|O|1997-01-07|1997-02-20|1997-01-13|DELIVER IN PERSON|MAIL|nic packages across the bravely| +25897|493673|6183|3|21|34999.65|0.01|0.04|N|O|1997-02-13|1997-03-14|1997-02-22|TAKE BACK RETURN|AIR|ffily against the| +25897|150047|25054|4|41|44978.64|0.05|0.05|N|O|1997-01-20|1997-03-09|1997-02-19|DELIVER IN PERSON|AIR|en, even excuses wake furiously furiously f| +25898|557611|20123|1|50|83429.50|0.02|0.01|R|F|1992-09-10|1992-07-09|1992-09-16|TAKE BACK RETURN|MAIL|usly final accounts. i| +25898|764040|1586|2|1|1104.01|0.08|0.08|A|F|1992-07-23|1992-09-04|1992-08-19|TAKE BACK RETURN|REG AIR|nts. fluffily bold theodolites | +25898|211463|48976|3|9|12370.05|0.02|0.02|R|F|1992-09-20|1992-07-12|1992-10-01|NONE|MAIL|ajole furiously around t| +25899|567664|30176|1|49|84850.36|0.02|0.03|N|O|1997-10-21|1997-08-31|1997-11-10|DELIVER IN PERSON|MAIL|ake fluffily final pains. blithely even | +25899|714761|14762|2|17|30187.41|0.03|0.03|N|O|1997-08-09|1997-09-05|1997-09-08|TAKE BACK RETURN|SHIP|counts boost final| +25899|981553|19111|3|46|75187.46|0.02|0.04|N|O|1997-08-17|1997-08-30|1997-09-10|NONE|MAIL|gged requests. fluffily pending acco| +25900|57349|44853|1|40|52253.60|0.10|0.03|R|F|1994-12-24|1994-12-13|1995-01-04|NONE|FOB| the furious| +25901|964414|39453|1|29|42872.73|0.08|0.05|N|O|1995-12-28|1995-12-10|1996-01-17|TAKE BACK RETURN|MAIL|ts cajole furiously. qu| +25902|747360|47361|1|50|70366.50|0.10|0.01|R|F|1994-02-20|1994-02-26|1994-03-22|DELIVER IN PERSON|REG AIR|nstructions wake blithely silent dependenc| +25903|682602|32603|1|45|71305.65|0.02|0.08|A|F|1994-09-18|1994-07-09|1994-09-22|TAKE BACK RETURN|TRUCK|al, final foxes serve blithely about the | +25903|482889|45399|2|8|14974.88|0.07|0.05|A|F|1994-07-20|1994-08-10|1994-08-01|TAKE BACK RETURN|MAIL|st fluffily blithely even real| +25903|910956|10957|3|14|27536.74|0.03|0.01|A|F|1994-07-09|1994-07-11|1994-07-30|NONE|FOB|s wake furiously quickly bold theodolites| +25903|430463|5480|4|24|33442.56|0.07|0.08|A|F|1994-09-01|1994-08-20|1994-09-24|DELIVER IN PERSON|RAIL|less courts haggle among the carefully s| +25903|789152|39153|5|1|1241.12|0.07|0.00|A|F|1994-08-31|1994-08-02|1994-09-04|TAKE BACK RETURN|REG AIR|kly enticing p| +25928|939362|39363|1|45|63059.40|0.03|0.03|R|F|1995-03-30|1995-04-19|1995-04-04|DELIVER IN PERSON|AIR|ructions wake carefully alongside of | +25928|840788|40789|2|30|51862.20|0.05|0.08|A|F|1995-02-12|1995-03-31|1995-03-07|DELIVER IN PERSON|SHIP| beans. quickly ironic ideas are quickl| +25928|119576|32079|3|29|46271.53|0.01|0.04|R|F|1995-04-10|1995-04-22|1995-04-15|DELIVER IN PERSON|FOB|dolites! boldly special theodolites dete| +25928|706166|18681|4|46|53917.98|0.05|0.03|A|F|1995-03-30|1995-04-02|1995-04-09|NONE|MAIL|refully against the fur| +25928|523470|35981|5|39|58244.55|0.02|0.01|A|F|1995-04-12|1995-04-02|1995-04-23|COLLECT COD|RAIL|riously final packa| +25929|528921|16452|1|3|5849.70|0.01|0.04|R|F|1992-10-09|1992-11-27|1992-11-07|TAKE BACK RETURN|AIR| nag blithely silent | +25929|574018|36530|2|44|48047.56|0.02|0.08|R|F|1992-10-10|1992-11-14|1992-10-31|COLLECT COD|AIR| foxes. slyly final packages nag. blithel| +25929|517677|42698|3|4|6778.60|0.06|0.01|R|F|1992-12-14|1992-10-07|1992-12-21|DELIVER IN PERSON|REG AIR|ully ironic escapades. express, special gr| +25929|589725|14748|4|20|36294.00|0.10|0.05|R|F|1992-10-10|1992-11-14|1992-10-15|COLLECT COD|SHIP|among the blithely silent instr| +25929|499774|37302|5|49|86913.75|0.10|0.05|A|F|1992-10-01|1992-10-24|1992-10-26|DELIVER IN PERSON|RAIL|efully. car| +25929|690832|40833|6|38|69266.40|0.06|0.03|A|F|1992-12-19|1992-10-10|1992-12-22|DELIVER IN PERSON|SHIP|nstructions play deposits. slyly | +25929|808902|21419|7|46|83299.56|0.00|0.03|A|F|1992-12-22|1992-11-06|1993-01-14|NONE|TRUCK|. quickly pending dinos ar| +25930|211438|23943|1|6|8096.52|0.10|0.04|N|O|1996-07-24|1996-09-03|1996-08-22|DELIVER IN PERSON|MAIL|he slyly final foxes use slyly close accoun| +25930|623617|11154|2|42|64704.36|0.10|0.03|N|O|1996-06-19|1996-07-28|1996-07-10|DELIVER IN PERSON|AIR|lyly fluffily even | +25930|124263|49268|3|27|34756.02|0.05|0.06|N|O|1996-10-12|1996-07-25|1996-10-23|DELIVER IN PERSON|RAIL|s are about the final, u| +25930|483902|46412|4|10|18858.80|0.01|0.05|N|O|1996-08-09|1996-07-23|1996-08-20|DELIVER IN PERSON|RAIL|r deposits| +25930|938365|13402|5|3|4209.96|0.05|0.00|N|O|1996-08-14|1996-07-27|1996-09-03|DELIVER IN PERSON|RAIL|endencies. fluffily ironic accounts u| +25931|587964|476|1|29|59506.26|0.01|0.02|N|O|1997-08-05|1997-08-19|1997-08-30|NONE|REG AIR| even theodolites haggle above the quickly | +25931|895616|45617|2|11|17727.27|0.02|0.03|N|O|1997-11-05|1997-09-03|1997-11-10|DELIVER IN PERSON|AIR|ckly even accounts. fluffily final platel| +25931|617259|17260|3|48|56458.56|0.07|0.05|N|O|1997-07-24|1997-08-18|1997-08-20|NONE|RAIL| bold deposits? slyly regular instructions| +25932|718851|43880|1|46|86011.72|0.05|0.07|A|F|1993-07-02|1993-08-06|1993-07-22|NONE|MAIL|ly! ideas | +25932|719639|19640|2|3|4975.80|0.08|0.07|R|F|1993-05-27|1993-07-16|1993-06-08|NONE|SHIP|posits after the | +25932|960329|35368|3|15|20839.20|0.09|0.02|A|F|1993-05-29|1993-06-29|1993-06-11|TAKE BACK RETURN|RAIL|s dependencies.| +25932|247999|35512|4|41|79826.18|0.02|0.00|R|F|1993-08-17|1993-08-12|1993-08-31|TAKE BACK RETURN|FOB|silent, regular dependencies boost fluffily| +25933|218870|43879|1|40|71554.40|0.09|0.05|R|F|1993-04-08|1993-01-26|1993-04-26|NONE|TRUCK|ironic requests. carefully | +25933|535805|23336|2|46|84675.88|0.04|0.04|A|F|1993-01-05|1993-03-22|1993-01-29|COLLECT COD|MAIL|ake. slyly regu| +25933|258126|45642|3|4|4336.44|0.01|0.03|R|F|1993-01-20|1993-02-13|1993-02-15|DELIVER IN PERSON|AIR|ions against the| +25933|314002|1521|4|9|9143.91|0.06|0.08|A|F|1993-03-14|1993-02-26|1993-03-28|TAKE BACK RETURN|AIR|ts are ironic, even platelets. ironic,| +25933|428820|41329|5|18|31478.40|0.08|0.00|R|F|1993-01-03|1993-03-14|1993-01-28|COLLECT COD|MAIL|old, ironic pinto beans impress| +25934|703753|16268|1|6|10540.32|0.09|0.08|R|F|1994-04-06|1994-04-27|1994-04-29|DELIVER IN PERSON|FOB|ffily pending notornis nag! fluffily busy | +25934|973204|23205|2|17|21711.72|0.05|0.08|R|F|1994-06-11|1994-05-07|1994-06-18|DELIVER IN PERSON|TRUCK|ly ironic ideas believe furiously. final, i| +25934|634681|47194|3|26|42006.90|0.05|0.03|A|F|1994-03-16|1994-05-13|1994-03-23|NONE|REG AIR|dle, silent accounts cajole quickl| +25934|70266|20267|4|19|23488.94|0.04|0.06|A|F|1994-04-02|1994-04-18|1994-04-25|COLLECT COD|MAIL|ounts can nag furi| +25935|330588|18107|1|43|69598.51|0.06|0.05|N|O|1997-07-01|1997-08-05|1997-07-30|DELIVER IN PERSON|SHIP|ts. quickly bold pinto| +25935|189606|27116|2|49|83084.40|0.09|0.02|N|O|1997-06-05|1997-06-25|1997-06-24|NONE|RAIL|le asymptotes throughou| +25935|698241|35781|3|42|52046.82|0.05|0.02|N|O|1997-09-05|1997-06-29|1997-09-12|DELIVER IN PERSON|MAIL|carefully even accounts wake slyly. furious| +25935|327509|15028|4|19|29193.31|0.00|0.04|N|O|1997-06-15|1997-06-26|1997-07-04|NONE|REG AIR| accounts boost fluffily | +25935|441472|3981|5|16|22615.20|0.00|0.08|N|O|1997-08-19|1997-08-11|1997-08-24|COLLECT COD|RAIL|odolites haggle slyly about the carefu| +25935|817669|30186|6|32|50771.84|0.08|0.04|N|O|1997-08-08|1997-07-09|1997-09-04|COLLECT COD|AIR|y regular foxes. furiou| +25935|558233|8234|7|35|45192.35|0.06|0.07|N|O|1997-07-31|1997-06-19|1997-08-20|COLLECT COD|REG AIR|iously. theodolites i| +25960|220241|32746|1|45|52255.35|0.10|0.03|A|F|1995-03-29|1995-03-28|1995-04-03|COLLECT COD|RAIL|unts haggle furiou| +25960|590253|27787|2|24|32237.52|0.01|0.04|A|F|1995-05-12|1995-03-16|1995-05-16|DELIVER IN PERSON|FOB|l requests along| +25960|382171|44679|3|5|6265.80|0.00|0.03|R|F|1995-04-17|1995-04-07|1995-04-22|NONE|FOB| beans use furiously bl| +25960|135805|23312|4|40|73632.00|0.04|0.03|A|F|1995-04-27|1995-04-29|1995-05-21|NONE|REG AIR|leep furiously. blithely regu| +25961|911521|49076|1|12|18389.76|0.10|0.08|N|O|1996-12-14|1997-01-04|1997-01-07|TAKE BACK RETURN|TRUCK|nal sheaves are carefully packages. | +25961|924272|11827|2|18|23332.14|0.06|0.07|N|O|1997-01-19|1996-11-09|1997-02-07|NONE|SHIP|haggle around the carefully pending acc| +25961|229210|29211|3|34|38732.80|0.06|0.01|N|O|1996-11-08|1996-11-22|1996-11-19|COLLECT COD|AIR|ag slyly along the blith| +25961|321555|34062|4|46|72520.84|0.08|0.01|N|O|1996-12-26|1996-12-19|1997-01-02|TAKE BACK RETURN|SHIP|ven accounts. bold accounts | +25961|363740|26248|5|9|16233.57|0.07|0.07|N|O|1996-11-01|1996-12-11|1996-11-24|COLLECT COD|SHIP|odolites cajole across the | +25962|779453|16999|1|43|65894.06|0.06|0.01|N|O|1996-07-27|1996-07-05|1996-08-07|TAKE BACK RETURN|REG AIR|nto beans among| +25962|266422|16423|2|3|4165.23|0.02|0.02|N|O|1996-08-12|1996-06-20|1996-08-18|COLLECT COD|FOB|to beans. slyly pendi| +25962|745756|8271|3|3|5405.16|0.04|0.02|N|O|1996-07-07|1996-06-17|1996-08-06|DELIVER IN PERSON|RAIL|unts are flu| +25963|354641|4642|1|33|55955.79|0.01|0.00|A|F|1992-07-12|1992-05-05|1992-08-11|TAKE BACK RETURN|AIR|osits integr| +25963|439962|14979|2|6|11411.64|0.09|0.05|R|F|1992-05-28|1992-06-04|1992-05-29|COLLECT COD|FOB|nto beans sleep after the furiously unu| +25963|438100|13117|3|14|14533.12|0.00|0.06|R|F|1992-05-11|1992-05-19|1992-05-27|TAKE BACK RETURN|TRUCK|wake carefully among the ironic platele| +25963|135785|10790|4|28|50981.84|0.05|0.06|R|F|1992-07-28|1992-07-03|1992-08-23|DELIVER IN PERSON|FOB|lly above the blithely iro| +25963|124478|36981|5|21|31551.87|0.08|0.06|R|F|1992-05-06|1992-06-30|1992-05-25|DELIVER IN PERSON|SHIP|ven, slow foxes haggle carefully ex| +25963|100248|249|6|25|31206.00|0.02|0.07|R|F|1992-05-15|1992-07-01|1992-06-07|COLLECT COD|RAIL|onic platelets wake enticing deposits| +25964|155523|30530|1|42|66297.84|0.08|0.01|A|F|1993-06-05|1993-04-25|1993-06-19|COLLECT COD|FOB|ar foxes affix qu| +25964|869722|44757|2|6|10150.08|0.03|0.03|A|F|1993-05-07|1993-05-24|1993-05-13|NONE|AIR|ending requests against the | +25965|630152|5177|1|13|14067.56|0.09|0.08|A|F|1992-06-30|1992-06-12|1992-07-02|DELIVER IN PERSON|FOB|ven courts integrate afte| +25965|955702|43260|2|27|47456.82|0.09|0.05|A|F|1992-06-05|1992-07-01|1992-06-26|TAKE BACK RETURN|FOB|rmanent requests are along the silent | +25966|34753|9754|1|23|38818.25|0.06|0.02|N|O|1996-10-10|1996-08-30|1996-10-16|NONE|MAIL|y. finally final exc| +25966|88943|13946|2|12|23183.28|0.06|0.00|N|O|1996-09-26|1996-07-29|1996-10-05|NONE|AIR|ly regular packages haggle idly f| +25966|855445|5446|3|5|7002.00|0.07|0.05|N|O|1996-08-27|1996-09-15|1996-09-25|NONE|RAIL|ut the furiously ironic dep| +25966|462179|12180|4|38|43363.70|0.01|0.08|N|O|1996-10-22|1996-08-10|1996-11-06|NONE|TRUCK| final requests. quickly reg| +25966|837316|37317|5|9|11279.43|0.02|0.04|N|O|1996-09-16|1996-08-08|1996-10-05|NONE|AIR|s cajole furi| +25967|813019|568|1|18|16775.46|0.06|0.02|R|F|1993-09-09|1993-10-03|1993-10-05|NONE|TRUCK|silent dep| +25992|550704|25727|1|19|33338.92|0.03|0.02|A|F|1993-09-25|1993-10-15|1993-10-10|TAKE BACK RETURN|AIR|use furiously regular epitaphs. blithely r| +25992|671537|46564|2|15|22627.50|0.04|0.02|R|F|1993-09-22|1993-11-09|1993-10-09|COLLECT COD|RAIL|ns. quickly bold excuses| +25992|510277|35298|3|3|3861.75|0.08|0.07|A|F|1993-11-20|1993-11-16|1993-12-19|DELIVER IN PERSON|TRUCK|pending hockey player| +25992|212384|37393|4|22|28520.14|0.02|0.00|R|F|1993-09-06|1993-10-21|1993-10-04|TAKE BACK RETURN|FOB| furiously| +25992|526815|14346|5|35|64462.65|0.08|0.03|A|F|1993-09-05|1993-10-28|1993-09-24|NONE|FOB|l, bold requests among the ex| +25993|923734|11289|1|2|3515.38|0.06|0.05|N|O|1996-10-20|1996-08-29|1996-10-21|COLLECT COD|RAIL| the blithely ironic deposit| +25993|185042|47546|2|44|49589.76|0.07|0.07|N|O|1996-11-24|1996-09-02|1996-12-18|COLLECT COD|FOB|thinly carefully specia| +25993|990501|40502|3|42|66841.32|0.05|0.04|N|O|1996-09-11|1996-10-14|1996-09-27|TAKE BACK RETURN|REG AIR|c packages ca| +25993|342201|29720|4|10|12431.90|0.01|0.01|N|O|1996-09-04|1996-09-07|1996-10-03|NONE|TRUCK|rthogs. final excuses haggle slyly? final | +25993|358022|33037|5|28|30240.28|0.05|0.02|N|O|1996-08-02|1996-10-11|1996-08-16|COLLECT COD|MAIL|osits cajole slyly about the blit| +25993|272512|22513|6|24|35628.00|0.00|0.08|N|O|1996-07-30|1996-10-06|1996-08-12|DELIVER IN PERSON|MAIL|uickly express deposits after the slyly | +25993|105814|5815|7|17|30936.77|0.07|0.01|N|O|1996-11-06|1996-08-26|1996-11-30|COLLECT COD|FOB|as. final accounts | +25994|413835|1360|1|29|50715.49|0.06|0.05|N|O|1998-03-09|1998-01-22|1998-03-15|TAKE BACK RETURN|RAIL| requests. stealthy accounts wake along| +25994|321214|8733|2|28|34585.60|0.10|0.04|N|O|1998-01-12|1998-02-13|1998-01-31|DELIVER IN PERSON|FOB|ding, pending instructions. fluffily reg| +25994|628983|41496|3|1|1911.95|0.03|0.04|N|O|1998-03-19|1998-01-31|1998-03-26|TAKE BACK RETURN|REG AIR|iously regular pinto beans sleep slyly| +25994|316587|16588|4|48|76971.36|0.09|0.01|N|O|1998-01-22|1998-02-16|1998-01-31|TAKE BACK RETURN|MAIL|refully blithe foxes affix slyly a| +25995|839893|14926|1|24|43988.40|0.00|0.00|N|O|1997-06-27|1997-06-08|1997-07-20|TAKE BACK RETURN|REG AIR|egular asymptotes detect carefully ca| +25996|242667|17676|1|48|77263.20|0.08|0.01|N|O|1997-11-17|1998-01-13|1997-12-03|DELIVER IN PERSON|TRUCK|n furiously. u| +25996|490940|3450|2|47|90753.24|0.03|0.03|N|O|1997-12-28|1998-01-23|1998-01-16|COLLECT COD|RAIL|nt. instructions ca| +25996|218323|30828|3|18|22343.58|0.03|0.05|N|O|1997-12-18|1998-01-23|1997-12-25|DELIVER IN PERSON|FOB|egrate furious| +25997|895032|7550|1|33|33890.67|0.02|0.06|R|F|1993-08-31|1993-09-27|1993-09-06|NONE|TRUCK|lly carefully even pinto beans; fl| +25997|791949|41950|2|46|93881.86|0.06|0.05|A|F|1993-08-25|1993-09-29|1993-08-29|NONE|REG AIR|fluffily according to the final requests.| +25997|285726|10737|3|1|1711.71|0.00|0.00|R|F|1993-09-30|1993-10-07|1993-10-17|NONE|SHIP|ajole carefully| +25997|192230|29740|4|18|23800.14|0.04|0.01|R|F|1993-08-09|1993-10-05|1993-08-20|COLLECT COD|SHIP|pinto beans. u| +25997|793571|6087|5|38|63252.52|0.06|0.07|A|F|1993-08-26|1993-09-08|1993-09-22|DELIVER IN PERSON|MAIL|dolphins according to the expre| +25997|533466|20997|6|18|26989.92|0.08|0.07|R|F|1993-08-09|1993-09-20|1993-09-04|COLLECT COD|REG AIR|y special | +25997|947784|47785|7|18|32971.32|0.10|0.07|R|F|1993-08-04|1993-10-17|1993-08-30|NONE|RAIL|ss accounts are final grouches. blithely | +25998|390952|40953|1|16|32687.04|0.06|0.04|N|O|1995-09-20|1995-09-26|1995-10-05|TAKE BACK RETURN|FOB|y ironic excuses. carefully unu| +25998|727261|14804|2|12|15458.76|0.01|0.07|N|O|1995-10-26|1995-11-01|1995-11-01|NONE|AIR|lent deposits. deposits are fluffily ac| +25998|67851|5355|3|25|45471.25|0.10|0.05|N|O|1995-11-04|1995-10-05|1995-11-05|COLLECT COD|REG AIR|jole furiously besides the sp| +25998|366929|41944|4|23|45905.93|0.04|0.05|N|O|1995-08-16|1995-10-06|1995-08-19|NONE|TRUCK| furiously regular packages. ide| +25999|327955|2968|1|43|85266.42|0.02|0.04|R|F|1993-06-07|1993-06-23|1993-07-04|NONE|REG AIR|gainst the slyly iro| +25999|933413|8450|2|42|60747.54|0.08|0.00|R|F|1993-08-15|1993-06-07|1993-08-28|NONE|REG AIR|ackages. quickly stealth| +25999|864587|2139|3|33|51200.82|0.10|0.07|A|F|1993-08-13|1993-06-06|1993-09-04|TAKE BACK RETURN|AIR|xes. blithely regular dol| +25999|109406|21909|4|36|50954.40|0.06|0.04|R|F|1993-07-26|1993-06-10|1993-07-29|DELIVER IN PERSON|AIR|de of the fluffily final exc| +25999|773378|23379|5|35|50796.90|0.04|0.06|A|F|1993-07-15|1993-06-01|1993-07-31|DELIVER IN PERSON|RAIL|gular excuses | +25999|150844|25851|6|2|3789.68|0.07|0.08|A|F|1993-06-20|1993-07-20|1993-06-30|TAKE BACK RETURN|MAIL| platelets. furiously spec| +26024|488524|1034|1|28|42350.00|0.05|0.01|A|F|1992-08-27|1992-07-29|1992-09-03|TAKE BACK RETURN|RAIL|blithely ironic account| +26024|617084|42109|2|45|45047.25|0.02|0.03|R|F|1992-07-17|1992-06-10|1992-08-03|COLLECT COD|REG AIR|sly even foxes. | +26024|314081|39094|3|32|35042.24|0.07|0.08|A|F|1992-06-25|1992-06-29|1992-07-17|TAKE BACK RETURN|MAIL| carefully special requests. ex| +26024|743712|18741|4|15|26335.20|0.06|0.07|R|F|1992-05-05|1992-06-29|1992-05-26|NONE|SHIP| theodolites boost slyly ironic pac| +26025|131227|6232|1|26|32713.72|0.08|0.05|N|O|1995-08-29|1995-08-08|1995-09-18|NONE|TRUCK|iously special accounts.| +26025|529657|29658|2|26|43852.38|0.04|0.04|N|O|1995-08-12|1995-08-31|1995-08-25|COLLECT COD|TRUCK|fily pending ideas. regular, unus| +26025|942147|17184|3|25|29727.50|0.06|0.02|N|O|1995-09-08|1995-09-11|1995-09-19|NONE|REG AIR| the quickly unusual packages. furiously s| +26025|657347|19861|4|44|57389.64|0.03|0.03|N|O|1995-07-06|1995-08-13|1995-07-23|TAKE BACK RETURN|AIR|ly final, fin| +26025|14470|1971|5|3|4153.41|0.08|0.08|N|O|1995-10-13|1995-09-19|1995-10-17|DELIVER IN PERSON|FOB|he slyly express deposits. quickl| +26026|295444|45445|1|12|17273.16|0.04|0.01|N|O|1996-09-07|1996-08-17|1996-10-02|NONE|AIR|thely entic| +26026|524111|36622|2|3|3405.27|0.08|0.04|N|O|1996-08-27|1996-08-26|1996-08-29|TAKE BACK RETURN|MAIL| packages haggle s| +26026|718655|18656|3|11|18409.82|0.06|0.06|N|O|1996-08-29|1996-08-02|1996-09-16|NONE|MAIL|ndencies use slyly regular, silent | +26026|423853|23854|4|20|35536.60|0.05|0.05|N|O|1996-09-06|1996-08-20|1996-09-15|DELIVER IN PERSON|TRUCK|t the fluffily fluffy packages are bl| +26026|687751|12778|5|50|86936.00|0.07|0.01|N|O|1996-09-30|1996-09-14|1996-10-27|TAKE BACK RETURN|REG AIR|ckages. quickly slow pinto beans | +26027|486906|49416|1|50|94644.00|0.05|0.04|N|O|1997-02-02|1996-12-06|1997-02-13|DELIVER IN PERSON|MAIL|sometimes final dependencies. | +26027|412812|12813|2|22|37945.38|0.08|0.04|N|O|1997-02-23|1996-12-28|1997-03-16|DELIVER IN PERSON|RAIL|es. permanently| +26027|119402|6909|3|35|49749.00|0.02|0.07|N|O|1996-12-27|1997-01-22|1997-01-02|COLLECT COD|REG AIR|arhorses are blithely fina| +26027|778290|40806|4|28|38311.28|0.00|0.03|N|O|1997-01-26|1996-12-03|1997-01-30|NONE|FOB| cajole agains| +26027|710775|48318|5|19|33929.06|0.00|0.04|N|O|1997-02-09|1996-12-05|1997-02-18|NONE|TRUCK|deposits wa| +26027|984514|34515|6|49|78325.03|0.02|0.07|N|O|1997-01-07|1996-12-06|1997-01-26|COLLECT COD|REG AIR|inal theodolites hang blithely. regul| +26028|174337|24338|1|35|49396.55|0.09|0.07|N|O|1996-05-12|1996-03-28|1996-05-13|DELIVER IN PERSON|TRUCK|as. slyly special deposits boost sl| +26028|66576|4080|2|18|27766.26|0.01|0.02|N|O|1996-05-12|1996-04-18|1996-06-01|NONE|SHIP|ld ideas. slyl| +26028|938573|38574|3|30|48345.90|0.00|0.00|N|O|1996-04-01|1996-05-03|1996-04-28|DELIVER IN PERSON|TRUCK|refully daring deposits. s| +26028|583686|8709|4|2|3539.32|0.06|0.08|N|O|1996-04-30|1996-03-21|1996-05-27|NONE|RAIL|ess accounts. blithely unu| +26029|468982|6510|1|5|9754.80|0.07|0.04|R|F|1993-07-18|1993-10-01|1993-08-17|DELIVER IN PERSON|TRUCK|ular accounts among the slyly pen| +26030|259354|9355|1|10|13133.40|0.06|0.04|N|O|1998-10-29|1998-09-16|1998-11-18|DELIVER IN PERSON|AIR|, regular requests. even | +26030|947192|9711|2|36|44609.40|0.02|0.04|N|O|1998-09-13|1998-09-24|1998-09-22|TAKE BACK RETURN|TRUCK| fluffily ironic deposits sleep. quickly | +26030|444271|31796|3|36|43749.00|0.05|0.03|N|O|1998-09-07|1998-09-22|1998-10-01|DELIVER IN PERSON|REG AIR|onic packages. | +26030|853092|40644|4|25|26126.25|0.10|0.00|N|O|1998-07-16|1998-09-02|1998-07-25|TAKE BACK RETURN|REG AIR|furiously pending frets boost. even de| +26030|907372|19891|5|27|37241.91|0.00|0.04|N|O|1998-09-26|1998-09-13|1998-09-27|NONE|TRUCK|uriously final instructions boost furio| +26031|555441|5442|1|33|49381.86|0.04|0.00|N|O|1996-01-02|1995-12-28|1996-01-28|COLLECT COD|RAIL|. regular foxes sleep furiously | +26031|286147|23663|2|27|30594.51|0.06|0.02|N|O|1995-11-04|1995-11-07|1995-11-08|TAKE BACK RETURN|FOB| pending asymptotes han| +26031|260858|48374|3|29|52746.36|0.02|0.05|N|O|1995-12-14|1995-12-10|1995-12-15|DELIVER IN PERSON|TRUCK|ly final asymptotes across the carefully | +26031|224604|49613|4|45|68786.55|0.02|0.02|N|O|1996-01-15|1995-12-27|1996-02-11|COLLECT COD|FOB|ns. ironic, even packages am| +26031|903971|41526|5|12|23699.16|0.02|0.01|N|O|1995-12-23|1996-01-01|1996-01-13|COLLECT COD|MAIL|s hinder against the| +26031|32584|32585|6|11|16682.38|0.05|0.02|N|O|1996-01-05|1995-11-19|1996-01-13|TAKE BACK RETURN|RAIL|ffily bold requests wake blithel| +26056|504128|4129|1|45|50944.50|0.04|0.04|N|O|1995-10-19|1995-09-01|1995-11-09|TAKE BACK RETURN|SHIP|riously above the final foxes.| +26056|871368|21369|2|44|58930.08|0.00|0.05|N|O|1995-11-27|1995-09-17|1995-12-02|NONE|SHIP|eans. carefully special accounts wa| +26056|80775|18279|3|13|22825.01|0.02|0.07|N|O|1995-11-01|1995-10-22|1995-11-08|DELIVER IN PERSON|TRUCK|unusual accounts use quickly af| +26056|577070|39582|4|14|16058.70|0.08|0.07|N|O|1995-09-01|1995-10-14|1995-09-08|NONE|FOB|s. slyly bold packages among the f| +26056|810019|22536|5|15|13934.55|0.07|0.08|N|O|1995-09-07|1995-09-08|1995-09-25|TAKE BACK RETURN|AIR|ke slyly. carefully | +26057|45680|20681|1|7|11379.76|0.09|0.02|N|O|1996-07-04|1996-07-05|1996-07-22|TAKE BACK RETURN|SHIP|s are busily | +26057|737946|12975|2|39|77372.49|0.06|0.07|N|O|1996-08-17|1996-07-11|1996-09-02|DELIVER IN PERSON|MAIL|ding, bold theodolite| +26057|642407|42408|3|43|58022.91|0.05|0.06|N|O|1996-08-10|1996-07-29|1996-08-23|TAKE BACK RETURN|REG AIR|efully blithely stealthy| +26058|256008|31019|1|9|8675.91|0.09|0.02|R|F|1992-11-06|1993-01-03|1992-11-21|TAKE BACK RETURN|AIR|rmanently ironic courts wake furio| +26058|713977|13978|2|13|25882.22|0.00|0.00|A|F|1992-12-18|1992-12-15|1992-12-19|NONE|RAIL| final excuses nag quickly above the c| +26058|808835|46384|3|5|8718.95|0.10|0.01|A|F|1993-02-02|1992-11-27|1993-02-27|TAKE BACK RETURN|TRUCK|; furiously final dependencies need| +26059|471657|21658|1|24|39087.12|0.07|0.05|R|F|1992-02-08|1992-02-05|1992-03-06|TAKE BACK RETURN|TRUCK|r pinto beans. blithe| +26059|124435|49440|2|6|8756.58|0.04|0.06|R|F|1992-03-10|1992-02-17|1992-03-22|DELIVER IN PERSON|RAIL|blithely. final pinto beans cajole slyly. f| +26059|372467|47482|3|26|40025.70|0.10|0.04|A|F|1992-04-20|1992-03-17|1992-05-13|TAKE BACK RETURN|TRUCK|ys. furiousl| +26059|36751|36752|4|37|62446.75|0.09|0.08|R|F|1992-03-11|1992-03-29|1992-03-12|DELIVER IN PERSON|MAIL|ffily special dolphins are. braids use agai| +26060|571066|33578|1|26|29563.04|0.08|0.01|A|F|1994-04-15|1994-06-17|1994-05-07|TAKE BACK RETURN|REG AIR| deposits snooze among the bl| +26060|891257|16292|2|16|19971.36|0.01|0.02|R|F|1994-07-21|1994-06-05|1994-08-20|NONE|RAIL|r deposits cajole above th| +26060|340443|40444|3|45|66754.35|0.01|0.06|R|F|1994-06-18|1994-05-14|1994-06-27|COLLECT COD|SHIP|tect slyly. carefull| +26061|240547|3052|1|27|40163.31|0.10|0.00|N|O|1998-03-15|1998-03-06|1998-03-18|NONE|REG AIR|y even instructions: even frays eat | +26061|869455|7007|2|9|12819.69|0.01|0.08|N|O|1998-01-20|1998-02-24|1998-02-05|COLLECT COD|AIR|ully over the carefully | +26061|921723|21724|3|6|10468.08|0.04|0.07|N|O|1998-04-11|1998-02-07|1998-04-19|TAKE BACK RETURN|TRUCK| bold foxes can wake slyly ironic pa| +26062|735670|23213|1|6|10233.84|0.00|0.00|A|F|1993-04-23|1993-04-26|1993-05-16|TAKE BACK RETURN|REG AIR|ns are. furiously | +26062|399065|24080|2|28|32593.40|0.09|0.04|A|F|1993-06-24|1993-05-30|1993-06-26|DELIVER IN PERSON|FOB|es accordi| +26062|73453|48456|3|29|41367.05|0.05|0.06|A|F|1993-05-03|1993-04-24|1993-05-14|COLLECT COD|MAIL|n, silent accounts. regular ac| +26062|517142|42163|4|42|48683.04|0.03|0.07|A|F|1993-04-18|1993-05-25|1993-05-16|TAKE BACK RETURN|REG AIR|posits detect| +26063|467050|29560|1|14|14238.42|0.10|0.03|A|F|1992-07-16|1992-09-30|1992-07-29|NONE|FOB|the carefully unusual patterns | +26063|699205|49206|2|29|34920.93|0.08|0.05|A|F|1992-08-30|1992-09-09|1992-09-19|COLLECT COD|TRUCK|ckages! theodolites above the ironi| +26063|528892|16423|3|11|21129.57|0.04|0.07|A|F|1992-10-18|1992-08-18|1992-11-11|TAKE BACK RETURN|MAIL|to the even, | +26063|79783|17287|4|49|86376.22|0.02|0.03|R|F|1992-09-13|1992-09-28|1992-10-08|COLLECT COD|MAIL|de of the final accounts | +26063|906356|18875|5|7|9536.17|0.01|0.06|A|F|1992-07-29|1992-08-16|1992-07-30|COLLECT COD|MAIL|regular pinto beans boost| +26088|439790|39791|1|45|77839.65|0.02|0.08|N|O|1997-06-22|1997-09-05|1997-07-02|NONE|AIR|y express dependencies boost blithely | +26088|536286|48797|2|48|63468.48|0.05|0.07|N|O|1997-08-04|1997-07-29|1997-08-11|TAKE BACK RETURN|MAIL|l asymptotes cajole ca| +26088|343924|18937|3|17|33454.47|0.04|0.05|N|O|1997-10-04|1997-07-30|1997-10-12|COLLECT COD|MAIL| wake after the furiously | +26088|316747|16748|4|34|59966.82|0.00|0.03|N|O|1997-09-26|1997-09-10|1997-10-04|TAKE BACK RETURN|FOB| ironic, final accounts are bl| +26089|949190|11709|1|3|3717.45|0.06|0.04|N|O|1996-05-29|1996-07-08|1996-06-11|DELIVER IN PERSON|FOB|ter the dependencies. slyly| +26089|24357|49358|2|30|38440.50|0.00|0.07|N|O|1996-06-05|1996-06-16|1996-07-05|COLLECT COD|AIR|es. express excuses promise slyly pending, | +26090|515994|15995|1|24|48239.28|0.09|0.02|R|F|1994-01-13|1994-02-14|1994-02-04|NONE|REG AIR|xes promise sl| +26091|144249|44250|1|23|29744.52|0.09|0.05|N|O|1996-06-04|1996-06-13|1996-07-01|NONE|AIR| slyly dogg| +26091|389793|27315|2|35|65897.30|0.04|0.02|N|O|1996-06-14|1996-06-30|1996-06-17|COLLECT COD|TRUCK|efully silent foxes. car| +26092|254477|29488|1|47|67278.62|0.02|0.07|A|F|1993-10-25|1993-09-25|1993-11-16|TAKE BACK RETURN|REG AIR|resias sleep carefully. car| +26093|646862|34399|1|49|88632.67|0.08|0.05|N|O|1997-05-24|1997-08-01|1997-06-16|NONE|AIR|refully even courts. even asymp| +26093|793318|5834|2|17|23991.76|0.05|0.05|N|O|1997-08-16|1997-06-05|1997-08-20|COLLECT COD|MAIL|ly ironic package| +26093|280014|30015|3|44|43736.00|0.07|0.07|N|O|1997-08-05|1997-07-08|1997-08-15|DELIVER IN PERSON|MAIL|. accounts after the i| +26093|185297|35298|4|44|60820.76|0.04|0.01|N|O|1997-05-23|1997-06-05|1997-06-11|NONE|SHIP|slyly about the quickly silent epitaphs. q| +26094|85221|47723|1|39|47042.58|0.01|0.01|N|O|1995-10-21|1995-11-05|1995-11-01|TAKE BACK RETURN|FOB|manently. carefully bold platelets are | +26094|303064|15571|2|37|39480.85|0.06|0.05|N|O|1995-11-17|1995-09-27|1995-11-21|NONE|AIR|ic theodolites. wa| +26095|555997|18509|1|40|82118.80|0.02|0.01|A|F|1994-01-14|1993-11-30|1994-02-08|DELIVER IN PERSON|RAIL|lyly express pinto beans | +26095|626465|26466|2|48|66788.64|0.05|0.01|R|F|1993-11-15|1993-12-21|1993-11-19|NONE|TRUCK|sly express pinto be| +26095|981815|19373|3|41|77767.57|0.02|0.06|R|F|1994-02-01|1993-12-15|1994-03-03|COLLECT COD|MAIL|. carefully ironic | +26095|351535|14043|4|37|58701.24|0.09|0.06|A|F|1994-01-01|1994-01-13|1994-01-18|DELIVER IN PERSON|FOB| eat across the fluffily thin ideas. quic| +26095|234714|34715|5|39|64299.30|0.05|0.05|A|F|1994-01-23|1993-11-27|1994-01-26|TAKE BACK RETURN|AIR| blithely id| +26095|829936|17485|6|25|46647.25|0.06|0.03|R|F|1993-12-16|1993-12-18|1994-01-12|NONE|REG AIR|sits. packages affix slyly at th| +26095|726455|1484|7|17|25184.14|0.01|0.00|A|F|1994-01-15|1994-01-05|1994-02-01|COLLECT COD|RAIL| final deposits. blithely ironic asymptote| +26120|524992|37503|1|32|64543.04|0.01|0.01|A|F|1995-02-27|1995-04-17|1995-03-04|COLLECT COD|RAIL|e of the packages haggle blithely reg| +26120|536797|49308|2|36|66015.72|0.09|0.04|A|F|1995-04-26|1995-04-07|1995-05-19|NONE|SHIP|gle pending, silent excuses. final, ir| +26120|941949|16986|3|23|45790.70|0.06|0.06|R|F|1995-04-21|1995-04-29|1995-05-16|NONE|SHIP|final idea| +26120|336188|23707|4|7|8569.19|0.02|0.07|A|F|1995-04-26|1995-03-05|1995-05-20|DELIVER IN PERSON|FOB|sleep across the iro| +26120|296382|46383|5|47|64783.39|0.10|0.08|A|F|1995-02-12|1995-04-29|1995-03-11|TAKE BACK RETURN|FOB|ular deposits wake carefully. idly silent| +26121|854412|16930|1|36|49189.32|0.00|0.00|N|O|1998-04-15|1998-06-11|1998-05-11|NONE|MAIL|s x-ray. furiously | +26121|98596|36100|2|11|17540.49|0.06|0.06|N|O|1998-05-09|1998-06-11|1998-06-03|TAKE BACK RETURN|FOB| bold excuse| +26122|552337|27360|1|32|44457.92|0.10|0.00|N|O|1997-02-14|1997-01-23|1997-03-13|NONE|TRUCK|along the furiously bold packages hag| +26122|113362|13363|2|29|39885.44|0.01|0.05|N|O|1996-12-10|1997-01-17|1996-12-19|DELIVER IN PERSON|REG AIR|ully according to the sly, final attainm| +26122|271439|8955|3|41|57827.22|0.03|0.05|N|O|1997-03-17|1997-01-06|1997-03-29|DELIVER IN PERSON|MAIL|l, regular foxes integrate fur| +26123|825860|38377|1|23|41073.86|0.02|0.01|N|O|1995-07-14|1995-08-18|1995-07-29|DELIVER IN PERSON|MAIL| ironic asy| +26123|228874|41379|2|11|19831.46|0.00|0.08|N|O|1995-07-14|1995-08-22|1995-07-15|TAKE BACK RETURN|REG AIR| accounts dazz| +26123|677882|15422|3|2|3719.70|0.09|0.02|N|O|1995-10-16|1995-09-22|1995-10-31|DELIVER IN PERSON|TRUCK|bold accounts wake blithely among the | +26123|149332|11835|4|8|11050.64|0.06|0.02|N|O|1995-07-09|1995-09-21|1995-07-11|COLLECT COD|MAIL|nly unusual, final deposits. close, speci| +26123|813885|26402|5|36|64758.24|0.07|0.05|N|O|1995-08-03|1995-09-18|1995-08-13|TAKE BACK RETURN|AIR|le carefully among the foxes. regu| +26123|960969|48527|6|11|22329.12|0.00|0.04|N|O|1995-10-12|1995-08-23|1995-10-17|DELIVER IN PERSON|AIR|ular theodolites sleep slyly fina| +26123|996883|21922|7|21|41576.64|0.09|0.08|N|O|1995-09-21|1995-08-20|1995-10-14|COLLECT COD|TRUCK|g excuses. pendi| +26124|607569|32594|1|2|2953.06|0.05|0.05|N|O|1998-04-16|1998-02-24|1998-05-02|COLLECT COD|REG AIR|etect thinly along| +26124|402558|27575|2|15|21907.95|0.02|0.01|N|O|1998-04-01|1998-02-05|1998-04-20|TAKE BACK RETURN|FOB|as sleep slyly. silent foxes| +26124|778180|28181|3|33|41518.95|0.06|0.06|N|O|1998-03-31|1998-03-01|1998-04-14|DELIVER IN PERSON|TRUCK| express exc| +26124|865309|15310|4|39|49696.14|0.06|0.07|N|O|1998-01-13|1998-02-17|1998-01-17|NONE|AIR|uriously final dependencies. ide| +26124|242532|17541|5|29|42761.08|0.08|0.04|N|O|1998-03-18|1998-02-21|1998-04-13|DELIVER IN PERSON|RAIL|e. even pinto| +26125|19227|6728|1|15|17193.30|0.04|0.06|R|F|1994-01-06|1993-12-19|1994-01-10|DELIVER IN PERSON|FOB|nal deposits wake fur| +26125|143477|30984|2|29|44093.63|0.07|0.08|A|F|1993-12-06|1994-01-29|1993-12-09|NONE|AIR|dolphins sleep carefully deposits. fi| +26125|416138|28647|3|49|51651.39|0.09|0.04|R|F|1994-02-17|1994-01-11|1994-03-15|NONE|TRUCK| special foxes sleep carefully acr| +26125|18062|43063|4|46|45082.76|0.05|0.02|R|F|1993-12-26|1994-01-21|1994-01-22|TAKE BACK RETURN|MAIL|ess requests sleep furi| +26126|263825|26331|1|50|89440.50|0.03|0.02|N|O|1995-07-29|1995-05-06|1995-08-12|COLLECT COD|REG AIR|fluffy requests. final, expre| +26127|153328|28335|1|46|63540.72|0.00|0.06|N|O|1996-02-28|1996-01-28|1996-03-09|DELIVER IN PERSON|REG AIR|tions. fluffily final theodoli| +26127|977822|2861|2|31|58893.18|0.01|0.00|N|O|1996-02-05|1995-12-29|1996-03-02|COLLECT COD|RAIL|ar packages against the | +26152|953463|28502|1|29|43976.18|0.01|0.04|A|F|1992-12-28|1993-01-10|1993-01-15|TAKE BACK RETURN|SHIP|heodolites integrate | +26152|847652|10169|2|21|33591.81|0.01|0.08|A|F|1992-12-24|1992-11-20|1992-12-28|DELIVER IN PERSON|TRUCK| the silent, even| +26152|479375|4394|3|38|51465.30|0.05|0.01|R|F|1993-02-02|1992-12-02|1993-02-12|NONE|TRUCK|ole. carefully ironic| +26152|839626|39627|4|23|36008.34|0.03|0.01|R|F|1993-01-21|1993-01-08|1993-02-10|TAKE BACK RETURN|MAIL|according to the slyly| +26152|589224|14247|5|12|15758.40|0.10|0.07|R|F|1993-01-04|1992-12-31|1993-01-25|DELIVER IN PERSON|SHIP| ruthlessly bold excuses use| +26153|193009|30519|1|20|22040.00|0.07|0.08|R|F|1994-05-29|1994-04-24|1994-06-22|DELIVER IN PERSON|RAIL|e the regular noto| +26153|900978|979|2|24|47494.32|0.05|0.06|A|F|1994-06-21|1994-05-11|1994-07-19|COLLECT COD|TRUCK|ests alongside of th| +26153|732603|32604|3|46|75236.22|0.09|0.02|R|F|1994-03-11|1994-05-13|1994-03-26|DELIVER IN PERSON|SHIP| requests. instructions abo| +26153|851263|1264|4|34|41283.48|0.03|0.03|A|F|1994-05-29|1994-04-21|1994-06-16|DELIVER IN PERSON|SHIP|to are fluffily alongside of the b| +26153|165644|15645|5|32|54708.48|0.08|0.06|A|F|1994-03-16|1994-04-20|1994-03-23|DELIVER IN PERSON|REG AIR|ly. final, even deposits are sly| +26153|977298|2337|6|17|23379.25|0.07|0.02|R|F|1994-06-07|1994-04-08|1994-06-13|TAKE BACK RETURN|AIR|n accounts wake slyly around the| +26153|439134|39135|7|15|16096.65|0.00|0.01|R|F|1994-05-04|1994-05-22|1994-05-13|TAKE BACK RETURN|RAIL|usly ironic d| +26154|514050|26561|1|31|32984.93|0.00|0.05|A|F|1992-10-09|1993-01-01|1992-11-08|COLLECT COD|RAIL|ously special pinto beans print fluffil| +26154|626143|1168|2|15|16036.65|0.03|0.08|A|F|1992-12-01|1992-11-08|1992-12-30|COLLECT COD|TRUCK|s above the slyly even the| +26155|615814|28327|1|43|74380.54|0.00|0.05|N|O|1996-03-16|1996-03-04|1996-04-06|DELIVER IN PERSON|AIR|ing to the deposits mold| +26155|983209|20767|2|20|25843.20|0.10|0.08|N|O|1996-02-14|1996-04-06|1996-02-29|DELIVER IN PERSON|MAIL|ly express foxes.| +26155|792137|4653|3|26|31956.60|0.09|0.07|N|O|1996-05-29|1996-03-03|1996-06-10|NONE|FOB| platelets cajole slyly. quickly | +26155|433226|8243|4|13|15069.60|0.08|0.05|N|O|1996-03-25|1996-03-21|1996-04-01|NONE|FOB| ironic pinto beans. silently ironi| +26155|218336|18337|5|33|41392.56|0.00|0.05|N|O|1996-03-13|1996-03-15|1996-03-29|TAKE BACK RETURN|SHIP|deposits boost with the slyly thin forges| +26156|816585|41618|1|12|18018.48|0.04|0.08|N|O|1996-10-12|1996-12-18|1996-11-07|COLLECT COD|AIR|e furiously e| +26156|331081|43588|2|41|45594.87|0.09|0.04|N|O|1996-12-04|1996-11-26|1996-12-16|DELIVER IN PERSON|REG AIR| foxes hagg| +26157|787431|12462|1|31|47070.40|0.10|0.05|A|F|1994-03-10|1994-04-23|1994-03-21|TAKE BACK RETURN|MAIL|ely final g| +26157|337340|12353|2|34|46829.22|0.03|0.06|R|F|1994-06-02|1994-05-01|1994-06-23|DELIVER IN PERSON|MAIL|beans are quickly | +26157|660815|35842|3|6|10654.68|0.05|0.05|R|F|1994-04-04|1994-05-17|1994-04-12|NONE|REG AIR|fily bold theodolit| +26157|316507|4026|4|31|47228.19|0.07|0.00|R|F|1994-06-11|1994-05-09|1994-06-18|DELIVER IN PERSON|FOB|ffily carefully even plat| +26157|517359|29870|5|18|24773.94|0.01|0.08|A|F|1994-06-10|1994-03-19|1994-06-30|COLLECT COD|MAIL|bove the furiously final deposits; bli| +26157|236575|36576|6|45|68020.20|0.07|0.02|A|F|1994-03-12|1994-04-08|1994-04-11|DELIVER IN PERSON|TRUCK| ideas. carefully express request| +26157|99600|24603|7|42|67183.20|0.09|0.03|R|F|1994-05-24|1994-05-03|1994-06-23|COLLECT COD|TRUCK|olites. furiously fin| +26158|962109|24629|1|4|4684.24|0.00|0.07|N|O|1998-05-20|1998-04-14|1998-06-09|DELIVER IN PERSON|SHIP|even ideas. slyly even ideas haggle acro| +26158|163818|13819|2|21|39518.01|0.10|0.01|N|O|1998-03-06|1998-05-31|1998-03-19|DELIVER IN PERSON|FOB|iously across the special packages. sl| +26158|281487|19003|3|28|41117.16|0.02|0.02|N|O|1998-05-07|1998-05-03|1998-05-17|COLLECT COD|MAIL|ts upon the slyly special foxes| +26158|948720|48721|4|48|84896.64|0.00|0.07|N|O|1998-06-19|1998-05-18|1998-07-13|NONE|FOB|. unusual frets by the s| +26158|124263|11770|5|9|11585.34|0.03|0.04|N|O|1998-05-15|1998-05-01|1998-05-21|TAKE BACK RETURN|TRUCK|nstructions? fluffy packages unwin| +26158|485076|10095|6|18|19098.90|0.01|0.04|N|O|1998-06-08|1998-05-04|1998-07-04|TAKE BACK RETURN|FOB|s accounts are furiously. fluffily s| +26159|433884|33885|1|14|25450.04|0.02|0.01|A|F|1993-01-13|1992-12-05|1993-01-16|DELIVER IN PERSON|AIR| carefully final instruc| +26159|283484|33485|2|15|22012.05|0.09|0.06|A|F|1992-09-22|1992-12-12|1992-10-04|COLLECT COD|MAIL|arefully special| +26159|503049|40580|3|21|22092.42|0.02|0.08|A|F|1992-12-29|1992-11-06|1993-01-15|COLLECT COD|REG AIR|ithely idle depos| +26159|739494|27037|4|50|76673.00|0.09|0.02|R|F|1992-11-20|1992-12-08|1992-12-20|DELIVER IN PERSON|RAIL|ke blithely unusual accounts; regul| +26159|673952|11492|5|46|88592.32|0.05|0.07|R|F|1992-11-06|1992-11-13|1992-12-05|DELIVER IN PERSON|RAIL|ly among the sp| +26159|101584|39091|6|16|25369.28|0.10|0.00|R|F|1992-12-11|1992-11-27|1992-12-19|DELIVER IN PERSON|RAIL| regular pearls cajole! ev| +26184|418273|43290|1|22|26207.50|0.08|0.01|N|O|1997-08-09|1997-06-04|1997-08-27|TAKE BACK RETURN|RAIL| haggle quickly ironic, final foxes. | +26184|909064|34101|2|47|50431.94|0.01|0.06|N|O|1997-05-15|1997-06-05|1997-05-21|NONE|SHIP|the dependencies. regular, regular | +26184|631307|18844|3|8|9906.16|0.10|0.08|N|O|1997-06-10|1997-06-18|1997-06-13|TAKE BACK RETURN|MAIL|endencies-- slyly iron| +26184|364441|14442|4|36|54195.48|0.06|0.01|N|O|1997-06-18|1997-06-19|1997-07-07|DELIVER IN PERSON|RAIL|ending pinto beans| +26184|146146|33653|5|25|29803.50|0.10|0.06|N|O|1997-06-16|1997-07-01|1997-06-18|COLLECT COD|SHIP|te blithely slyly regular account| +26184|267244|4760|6|20|24224.60|0.00|0.06|N|O|1997-07-24|1997-07-18|1997-08-15|COLLECT COD|REG AIR|g deposits | +26184|565144|27656|7|35|42319.20|0.10|0.02|N|O|1997-05-11|1997-07-26|1997-05-17|TAKE BACK RETURN|AIR| are even pinto beans. thin theodolites | +26185|368961|18962|1|28|56838.60|0.07|0.02|N|O|1995-06-22|1995-05-30|1995-06-26|TAKE BACK RETURN|RAIL|usly ironic deposits sublate acco| +26185|127372|2377|2|9|12594.33|0.01|0.08|R|F|1995-05-29|1995-06-04|1995-05-30|TAKE BACK RETURN|MAIL|oss the pending foxes. final grouches| +26185|731217|43732|3|21|26211.78|0.01|0.02|N|F|1995-06-16|1995-05-08|1995-06-18|COLLECT COD|AIR|nto beans are blithely slyly| +26186|726501|26502|1|27|41241.69|0.08|0.05|A|F|1994-04-13|1994-04-13|1994-04-21|COLLECT COD|SHIP|inal requests| +26186|301407|1408|2|35|49293.65|0.09|0.02|A|F|1994-06-17|1994-06-10|1994-06-30|NONE|RAIL|al requests shall have to are qu| +26186|743070|43071|3|43|47860.72|0.00|0.04|A|F|1994-06-09|1994-05-15|1994-06-22|DELIVER IN PERSON|RAIL|ges. ironic, regular accounts wake. i| +26186|767938|42969|4|16|32094.40|0.04|0.06|A|F|1994-03-14|1994-04-13|1994-03-28|NONE|TRUCK|blithely bold asymptotes. sl| +26186|722525|10068|5|44|68089.56|0.09|0.02|R|F|1994-07-10|1994-04-12|1994-07-31|COLLECT COD|TRUCK| even requests. car| +26186|470170|7698|6|14|15962.10|0.02|0.06|R|F|1994-03-26|1994-05-11|1994-04-08|NONE|TRUCK|ly special pinto beans ac| +26186|132584|32585|7|43|69512.94|0.01|0.01|R|F|1994-07-04|1994-04-19|1994-07-20|DELIVER IN PERSON|MAIL|sly alongside of the blithely unu| +26187|332042|19561|1|47|50479.41|0.04|0.05|N|O|1997-03-27|1997-05-04|1997-04-10|NONE|AIR|cajole quickly. foxes along the blithe| +26187|628649|28650|2|33|52061.13|0.00|0.01|N|O|1997-04-15|1997-05-12|1997-04-22|DELIVER IN PERSON|TRUCK| furiously daringly unusual platelets. bol| +26187|698537|48538|3|8|12284.00|0.01|0.08|N|O|1997-04-07|1997-05-10|1997-04-25|NONE|REG AIR|ts impress slyly against the bli| +26188|279242|16758|1|28|34194.44|0.02|0.04|A|F|1993-07-04|1993-05-31|1993-07-26|TAKE BACK RETURN|MAIL|ey players use fluffily blithel| +26188|213841|26346|2|19|33341.77|0.09|0.07|A|F|1993-05-21|1993-06-01|1993-06-05|COLLECT COD|MAIL|iously. re| +26188|21042|46043|3|45|43336.80|0.03|0.04|R|F|1993-07-31|1993-06-12|1993-08-16|NONE|SHIP|ns. excuses| +26189|650748|25775|1|44|74743.24|0.03|0.05|R|F|1993-03-26|1993-02-17|1993-04-17|NONE|RAIL|ct carefully after the special f| +26190|27538|2539|1|24|35172.72|0.00|0.03|N|O|1997-08-28|1997-09-26|1997-09-08|DELIVER IN PERSON|TRUCK|press requests across the fu| +26190|823765|36282|2|35|59105.20|0.05|0.03|N|O|1997-07-07|1997-08-28|1997-07-29|COLLECT COD|MAIL|final reque| +26190|15480|40481|3|18|25118.64|0.08|0.00|N|O|1997-08-02|1997-08-29|1997-08-22|DELIVER IN PERSON|RAIL|the regular, ironic account| +26190|156169|18673|4|10|12251.60|0.01|0.02|N|O|1997-09-04|1997-09-19|1997-09-15|DELIVER IN PERSON|REG AIR| slyly express excuses. carefully regular a| +26191|17939|30440|1|47|87275.71|0.06|0.06|A|F|1995-04-23|1995-04-15|1995-05-01|NONE|MAIL|express, express r| +26191|495630|8140|2|11|17881.71|0.00|0.00|A|F|1995-05-17|1995-04-21|1995-06-12|DELIVER IN PERSON|AIR|s haggle carefully blithe| +26191|52605|27608|3|15|23364.00|0.05|0.07|R|F|1995-02-28|1995-05-26|1995-03-17|TAKE BACK RETURN|AIR|inst the express, ironic | +26191|118397|18398|4|33|46707.87|0.10|0.00|A|F|1995-06-08|1995-04-13|1995-06-16|TAKE BACK RETURN|REG AIR|s after the deposits unwind furiously| +26191|881894|31895|5|35|65654.75|0.10|0.06|R|F|1995-03-17|1995-05-20|1995-03-31|TAKE BACK RETURN|TRUCK|ress instructions sleep furiou| +26191|990726|28284|6|32|58133.76|0.05|0.00|R|F|1995-05-11|1995-05-24|1995-05-14|COLLECT COD|AIR|. final foxes| +26191|120795|20796|7|1|1815.79|0.01|0.06|A|F|1995-05-27|1995-04-13|1995-05-31|TAKE BACK RETURN|FOB|. unusual t| +26216|196751|46752|1|46|84996.50|0.02|0.05|R|F|1994-09-11|1994-10-07|1994-10-04|DELIVER IN PERSON|FOB|final plat| +26216|788884|26430|2|25|49321.25|0.04|0.08|A|F|1994-12-04|1994-10-31|1994-12-30|DELIVER IN PERSON|REG AIR| requests kindle| +26216|765457|3003|3|29|44150.18|0.00|0.01|A|F|1994-11-04|1994-10-01|1994-11-11|COLLECT COD|MAIL|requests after the regular ideas slee| +26217|211600|24105|1|29|43836.11|0.04|0.03|N|O|1996-05-03|1996-05-30|1996-05-08|TAKE BACK RETURN|MAIL|its cajole after the final deposits. | +26217|346826|34345|2|49|91767.69|0.10|0.05|N|O|1996-04-13|1996-05-05|1996-04-29|DELIVER IN PERSON|FOB|lyly silent dolphins detect carefully. | +26217|92261|4763|3|50|62663.00|0.06|0.07|N|O|1996-05-10|1996-05-01|1996-05-12|TAKE BACK RETURN|MAIL|eans along th| +26217|622576|10113|4|34|50950.36|0.05|0.03|N|O|1996-05-20|1996-05-18|1996-05-25|COLLECT COD|SHIP|its past the slyly express the| +26218|903309|40864|1|35|45929.10|0.07|0.06|N|O|1997-05-09|1997-05-19|1997-05-23|DELIVER IN PERSON|REG AIR|iously final requests are furiousl| +26218|910445|10446|2|27|39295.80|0.06|0.06|N|O|1997-04-24|1997-05-01|1997-05-08|DELIVER IN PERSON|FOB|e ironic, ironic accounts. slyly express| +26218|839560|27109|3|7|10496.64|0.01|0.00|N|O|1997-03-24|1997-06-06|1997-04-08|DELIVER IN PERSON|SHIP|uests sleep carefully among the| +26218|469098|31608|4|41|43749.87|0.03|0.08|N|O|1997-03-16|1997-06-09|1997-04-07|COLLECT COD|AIR|e blithely abo| +26219|188425|929|1|2|3026.84|0.02|0.02|N|O|1997-04-11|1997-03-23|1997-04-12|COLLECT COD|REG AIR|yly final ideas c| +26219|855937|30972|2|40|75715.60|0.06|0.06|N|O|1997-05-03|1997-02-19|1997-05-16|COLLECT COD|FOB|ending gifts hagg| +26219|731701|31702|3|7|12128.69|0.07|0.06|N|O|1997-01-26|1997-04-09|1997-02-18|NONE|TRUCK|ly regular foxes sleep.| +26219|689637|14664|4|33|53677.80|0.08|0.02|N|O|1997-03-14|1997-03-01|1997-04-10|NONE|TRUCK|inal theodolites hagg| +26219|717102|17103|5|29|32453.03|0.01|0.05|N|O|1997-04-07|1997-03-19|1997-04-10|NONE|TRUCK|equests. packages cajole ca| +26220|716140|28655|1|18|20809.98|0.00|0.05|N|O|1998-01-03|1997-11-24|1998-02-02|TAKE BACK RETURN|SHIP| express foxes sleep carefully| +26220|161388|48898|2|8|11595.04|0.07|0.05|N|O|1997-12-28|1997-12-18|1998-01-13|TAKE BACK RETURN|SHIP|es. quickly pending foxes above| +26220|447938|22955|3|8|15087.28|0.08|0.05|N|O|1997-12-09|1997-12-20|1998-01-05|COLLECT COD|RAIL|. express, even ideas about the packages ar| +26220|483652|33653|4|9|14720.67|0.01|0.00|N|O|1997-10-31|1997-11-26|1997-11-03|TAKE BACK RETURN|AIR|ges boost quickly slyly | +26220|736873|49388|5|41|78303.44|0.05|0.01|N|O|1998-01-12|1997-10-27|1998-01-30|TAKE BACK RETURN|SHIP|r packages boost. q| +26220|609975|9976|6|11|20734.34|0.06|0.03|N|O|1997-11-07|1997-12-08|1997-11-29|NONE|AIR|blithely bold dolphins b| +26220|836007|11040|7|7|6600.72|0.09|0.05|N|O|1998-01-08|1997-11-15|1998-01-29|NONE|MAIL|pths sleep fluffily accordin| +26221|768442|30958|1|3|4531.23|0.04|0.05|A|F|1992-07-02|1992-06-09|1992-07-07|DELIVER IN PERSON|REG AIR|ar theodolites against the instructions | +26221|197419|34929|2|10|15164.10|0.06|0.00|R|F|1992-05-25|1992-08-06|1992-05-28|NONE|MAIL|accounts boost carefully exp| +26221|5589|43090|3|5|7472.90|0.02|0.06|R|F|1992-06-29|1992-07-04|1992-07-08|NONE|MAIL|n dependencies could nag. final, | +26221|934197|9234|4|7|8618.05|0.01|0.05|R|F|1992-05-14|1992-07-30|1992-06-11|NONE|RAIL|s wake. carefully bold dol| +26221|48498|10999|5|1|1446.49|0.09|0.06|R|F|1992-06-16|1992-06-19|1992-07-04|NONE|RAIL| ironic foxes.| +26221|90422|40423|6|25|35310.50|0.06|0.04|R|F|1992-05-31|1992-06-14|1992-06-07|TAKE BACK RETURN|REG AIR|deposits should wake f| +26221|718881|31396|7|38|72194.30|0.02|0.00|R|F|1992-08-20|1992-06-20|1992-09-16|DELIVER IN PERSON|AIR|nts maintai| +26222|230575|18088|1|6|9033.36|0.04|0.00|R|F|1995-06-09|1995-07-19|1995-06-12|TAKE BACK RETURN|MAIL|ly at the blithely even deposit| +26222|273291|10807|2|35|44249.80|0.09|0.00|N|O|1995-07-30|1995-06-21|1995-08-28|COLLECT COD|FOB|ly ironic attainments boost furiou| +26222|185853|23363|3|24|46532.40|0.07|0.06|A|F|1995-05-10|1995-06-19|1995-05-11|DELIVER IN PERSON|RAIL|s. fluffily ruthless ideas play above th| +26222|625328|37841|4|15|18799.35|0.10|0.01|N|O|1995-07-26|1995-06-16|1995-08-16|NONE|RAIL|l requests.| +26222|872881|10433|5|8|14830.72|0.05|0.08|N|O|1995-08-03|1995-07-07|1995-08-16|COLLECT COD|TRUCK|g, ironic accounts | +26222|504164|41695|6|20|23362.80|0.02|0.01|N|O|1995-06-18|1995-06-16|1995-07-16|TAKE BACK RETURN|REG AIR|s. slyly final requests wake blithely | +26223|539981|2492|1|26|52544.96|0.06|0.04|R|F|1994-09-07|1994-10-03|1994-10-05|NONE|RAIL|e blithely final deposits. car| +26223|444685|32210|2|45|73334.70|0.02|0.04|A|F|1994-07-26|1994-08-21|1994-07-28|DELIVER IN PERSON|TRUCK|y ironic theodolites ought to sublat| +26223|805021|30054|3|36|33335.28|0.10|0.06|A|F|1994-07-23|1994-08-24|1994-08-18|COLLECT COD|TRUCK|ide of the f| +26248|162586|37593|1|22|36268.76|0.08|0.08|R|F|1994-01-16|1994-02-17|1994-02-09|DELIVER IN PERSON|SHIP|l theodolites. furiously e| +26248|582102|32103|2|30|35522.40|0.10|0.04|R|F|1994-03-01|1994-03-22|1994-03-04|NONE|FOB|y bold instructions are after th| +26249|459360|34379|1|34|44857.56|0.01|0.03|A|F|1993-04-27|1993-07-03|1993-05-24|DELIVER IN PERSON|SHIP|ackages boost carefully a| +26249|449393|36918|2|20|26847.40|0.06|0.04|A|F|1993-05-27|1993-07-01|1993-06-19|DELIVER IN PERSON|MAIL| are quickly bu| +26249|943631|43632|3|31|51912.29|0.06|0.06|R|F|1993-06-18|1993-05-20|1993-07-03|NONE|MAIL|quests nag requests. even, final accounts l| +26249|600752|38289|4|3|4958.16|0.05|0.00|R|F|1993-04-24|1993-06-27|1993-05-15|DELIVER IN PERSON|REG AIR| cajole quickly pinto be| +26249|835985|11018|5|30|57628.20|0.06|0.07|R|F|1993-04-29|1993-06-10|1993-05-23|DELIVER IN PERSON|REG AIR|ccounts. slyly regular accounts are alongsi| +26250|692266|17293|1|47|59136.81|0.10|0.00|N|O|1996-10-21|1996-09-29|1996-11-14|COLLECT COD|SHIP|e bold platelets. express, even | +26250|908938|8939|2|14|27256.46|0.00|0.00|N|O|1996-08-13|1996-08-14|1996-08-27|DELIVER IN PERSON|RAIL|en deposits | +26250|520903|8434|3|21|40401.48|0.06|0.07|N|O|1996-07-29|1996-08-18|1996-08-21|DELIVER IN PERSON|REG AIR|ts since the ironic requests nag| +26250|805255|30288|4|34|39447.14|0.04|0.03|N|O|1996-10-29|1996-09-11|1996-11-12|COLLECT COD|AIR|es affix. regular e| +26250|904200|16719|5|13|15654.08|0.06|0.02|N|O|1996-09-25|1996-09-04|1996-10-01|TAKE BACK RETURN|FOB|y close theodolites. furiously special in| +26251|367491|17492|1|49|76365.52|0.03|0.01|A|F|1993-12-13|1994-02-06|1994-01-11|TAKE BACK RETURN|TRUCK|t atop the regular accounts. asymptotes al| +26251|405476|5477|2|7|9670.15|0.10|0.04|R|F|1994-02-03|1994-01-10|1994-02-10|TAKE BACK RETURN|AIR| the excuses. asymptotes detect carefully| +26252|428026|28027|1|15|14310.00|0.02|0.08|A|F|1994-07-08|1994-06-30|1994-07-17|DELIVER IN PERSON|RAIL|regular requests use | +26252|828087|15636|2|5|5075.20|0.04|0.06|A|F|1994-08-02|1994-08-13|1994-08-23|NONE|RAIL|accounts boost. packages x-ray slyly | +26252|652795|40335|3|32|55928.32|0.10|0.03|R|F|1994-06-14|1994-08-07|1994-07-06|DELIVER IN PERSON|AIR|equests. blithely iron| +26252|521704|9235|4|25|43142.00|0.07|0.04|R|F|1994-07-18|1994-08-11|1994-07-25|DELIVER IN PERSON|SHIP|e blithely final deposi| +26252|277660|15176|5|19|31115.35|0.05|0.04|R|F|1994-05-28|1994-08-13|1994-06-21|DELIVER IN PERSON|SHIP|lar requests. even, sile| +26252|631163|31164|6|44|48141.72|0.04|0.06|R|F|1994-09-02|1994-06-24|1994-09-30|COLLECT COD|MAIL|efully final theo| +26253|122169|22170|1|36|42881.76|0.03|0.04|A|F|1992-11-21|1993-01-06|1992-11-26|TAKE BACK RETURN|SHIP|beans. fluffy| +26254|670555|45582|1|42|64071.84|0.09|0.04|A|F|1994-08-13|1994-06-20|1994-09-10|COLLECT COD|SHIP|against the pending, bold reques| +26254|3900|16401|2|22|39685.80|0.07|0.00|A|F|1994-06-01|1994-07-13|1994-06-14|NONE|TRUCK| bold acco| +26254|546469|34000|3|45|68194.80|0.09|0.06|R|F|1994-06-28|1994-07-24|1994-07-26|NONE|MAIL|platelets cajole. fluffy depths x-ray aro| +26254|498723|11233|4|33|56816.10|0.02|0.02|R|F|1994-05-18|1994-06-28|1994-05-23|DELIVER IN PERSON|SHIP|ven packages. regular, regular pa| +26255|702233|2234|1|49|60524.80|0.05|0.08|N|O|1996-06-14|1996-04-26|1996-06-26|COLLECT COD|RAIL|s. even, regular dependenc| +26280|250919|920|1|21|39267.90|0.08|0.05|A|F|1995-05-04|1995-05-17|1995-05-10|NONE|RAIL|ncies dazzle fluffily even package| +26281|86597|24101|1|44|69677.96|0.04|0.05|R|F|1993-05-22|1993-05-26|1993-06-21|NONE|REG AIR|cial dolphins unwind blithely even atta| +26281|434963|47472|2|11|20877.34|0.06|0.00|A|F|1993-06-19|1993-06-03|1993-07-07|DELIVER IN PERSON|AIR|leep accordin| +26282|317286|29793|1|8|10426.16|0.07|0.06|R|F|1994-05-12|1994-04-17|1994-05-19|COLLECT COD|REG AIR|use carefully. bold instructions accordin| +26282|622770|22771|2|30|50782.20|0.00|0.07|A|F|1994-02-15|1994-04-09|1994-03-04|NONE|AIR|ole stealthil| +26283|99463|24466|1|8|11699.68|0.09|0.05|A|F|1992-10-11|1992-12-30|1992-10-28|COLLECT COD|SHIP| pending braids wake | +26283|669954|7494|2|30|57717.60|0.08|0.01|A|F|1993-01-13|1992-12-17|1993-01-25|TAKE BACK RETURN|MAIL|tes wake quickly about the c| +26283|902578|2579|3|16|25288.48|0.04|0.00|A|F|1992-11-24|1992-11-06|1992-12-11|COLLECT COD|FOB|ubt carefully a| +26283|617144|4681|4|20|21222.20|0.05|0.05|R|F|1992-10-23|1992-12-19|1992-11-04|COLLECT COD|SHIP|equests. slyly regul| +26283|332683|20202|5|11|18872.37|0.05|0.01|R|F|1992-12-12|1992-11-22|1992-12-13|NONE|FOB| deposits | +26283|386839|11854|6|26|50071.32|0.06|0.00|A|F|1992-11-09|1992-12-28|1992-11-25|NONE|FOB|ltipliers sublate car| +26283|594421|31955|7|17|25761.80|0.02|0.05|R|F|1992-10-05|1992-12-14|1992-10-29|NONE|MAIL|jole quickly. quickly regu| +26284|430015|30016|1|25|23624.75|0.09|0.08|N|O|1996-08-08|1996-08-14|1996-08-31|TAKE BACK RETURN|FOB|e ideas. patterns wake blithely acc| +26284|251067|26078|2|26|26469.30|0.05|0.06|N|O|1996-07-18|1996-08-11|1996-08-10|COLLECT COD|SHIP|yly according to the blithely express ac| +26284|669328|31842|3|19|24648.51|0.06|0.07|N|O|1996-08-07|1996-08-26|1996-09-01|NONE|REG AIR|egular depos| +26284|386458|36459|4|19|29344.36|0.06|0.04|N|O|1996-08-12|1996-07-25|1996-08-23|COLLECT COD|FOB|timents wake furiously after the speci| +26284|185047|47551|5|4|4528.16|0.01|0.02|N|O|1996-09-24|1996-07-04|1996-09-30|NONE|TRUCK| ironic foxes nag furiously pending,| +26284|84566|9569|6|41|63572.96|0.07|0.08|N|O|1996-07-03|1996-07-04|1996-07-18|TAKE BACK RETURN|MAIL|unts wake quickly a| +26285|978390|15948|1|11|16151.85|0.00|0.02|N|O|1995-08-30|1995-06-20|1995-08-31|DELIVER IN PERSON|TRUCK|express tithes. carefully| +26285|788448|25994|2|28|43019.48|0.03|0.04|R|F|1995-05-28|1995-06-30|1995-06-03|NONE|RAIL|uring the furiously special deposits| +26285|435241|35242|3|24|28229.28|0.08|0.04|N|O|1995-08-27|1995-07-28|1995-09-21|COLLECT COD|TRUCK| furiously among| +26285|84296|21800|4|23|29446.67|0.08|0.02|N|O|1995-07-28|1995-06-20|1995-08-17|COLLECT COD|SHIP|theodolites. fluffily special dolph| +26285|750456|38002|5|21|31634.82|0.10|0.05|A|F|1995-05-19|1995-06-09|1995-06-04|TAKE BACK RETURN|TRUCK|, final excuses use? | +26285|904015|41570|6|48|48910.56|0.07|0.04|N|O|1995-06-21|1995-07-20|1995-07-15|NONE|REG AIR| the furiously pe| +26285|780089|42605|7|46|53776.30|0.07|0.07|N|O|1995-06-28|1995-07-05|1995-07-24|DELIVER IN PERSON|SHIP|ests. carefully ironic ideas| +26286|942889|5408|1|26|50227.84|0.05|0.01|N|O|1995-07-15|1995-08-17|1995-08-07|COLLECT COD|MAIL|n courts breach slyly. regular, si| +26286|124056|36559|2|27|29161.35|0.04|0.00|R|F|1995-06-02|1995-06-29|1995-06-14|TAKE BACK RETURN|REG AIR|y final accounts. ironic| +26286|4119|4120|3|16|16369.76|0.06|0.04|N|O|1995-06-18|1995-07-28|1995-07-13|TAKE BACK RETURN|RAIL| wake up the quickly special instru| +26286|212387|49900|4|11|14293.07|0.07|0.06|N|O|1995-09-09|1995-08-14|1995-09-14|DELIVER IN PERSON|TRUCK|refully bold instru| +26286|587916|37917|5|17|34066.13|0.03|0.06|R|F|1995-05-22|1995-06-30|1995-06-15|NONE|REG AIR|ly above the asym| +26286|88358|860|6|16|21541.60|0.00|0.03|N|O|1995-06-23|1995-07-28|1995-07-21|DELIVER IN PERSON|REG AIR|uthlessly regular packages sl| +26287|605314|17827|1|47|57306.16|0.09|0.05|A|F|1995-01-13|1994-11-13|1995-01-23|DELIVER IN PERSON|TRUCK| above the slyly special deposit| +26287|498864|23883|2|1|1862.84|0.04|0.06|A|F|1994-11-18|1994-12-17|1994-11-21|COLLECT COD|RAIL|uickly special asymptotes. regul| +26287|404869|42394|3|12|21286.08|0.01|0.06|R|F|1994-10-21|1994-11-28|1994-11-14|COLLECT COD|SHIP|. slyly regular id| +26287|619519|44544|4|41|58977.68|0.08|0.02|A|F|1994-10-16|1994-11-18|1994-10-20|NONE|SHIP|side of th| +26312|414554|14555|1|31|45524.43|0.10|0.05|N|O|1996-07-22|1996-09-16|1996-07-26|DELIVER IN PERSON|FOB|gle carefully carefully pending acco| +26312|404830|4831|2|21|36431.01|0.04|0.03|N|O|1996-10-10|1996-09-13|1996-10-21|COLLECT COD|TRUCK|egular acco| +26312|975441|37961|3|48|72787.20|0.09|0.03|N|O|1996-08-22|1996-09-13|1996-09-07|TAKE BACK RETURN|FOB|slyly special depo| +26312|221054|46063|4|10|9750.40|0.04|0.05|N|O|1996-10-18|1996-09-06|1996-11-07|NONE|REG AIR|deposits are. even, ironic| +26312|243957|6462|5|10|19009.40|0.07|0.02|N|O|1996-09-12|1996-07-25|1996-09-14|DELIVER IN PERSON|FOB|arefully final acc| +26312|181996|7003|6|43|89353.57|0.10|0.03|N|O|1996-08-06|1996-09-13|1996-08-12|DELIVER IN PERSON|SHIP|osits after the pending, regular depos| +26313|939632|39633|1|44|73549.96|0.01|0.00|R|F|1994-06-06|1994-05-12|1994-06-12|TAKE BACK RETURN|SHIP|tions grow. escapades use carefully | +26313|391705|41706|2|30|53900.70|0.07|0.03|A|F|1994-05-19|1994-05-07|1994-05-31|NONE|SHIP|the even deposits.| +26313|370314|45329|3|43|59524.90|0.06|0.00|R|F|1994-04-27|1994-04-16|1994-05-13|DELIVER IN PERSON|SHIP|unts. express ideas haggle beneath t| +26314|267581|5097|1|33|51102.81|0.09|0.03|N|O|1995-12-05|1996-02-02|1995-12-14|COLLECT COD|AIR|mise slyly carefully express pac| +26314|223907|48916|2|28|51264.92|0.10|0.07|N|O|1996-02-19|1995-12-23|1996-03-01|DELIVER IN PERSON|RAIL|he pending asymptotes. final, expr| +26314|188225|25735|3|40|52528.80|0.01|0.00|N|O|1995-12-17|1996-01-19|1995-12-22|DELIVER IN PERSON|AIR|ies cajole fluff| +26314|488321|13340|4|5|6546.50|0.05|0.07|N|O|1995-12-29|1996-01-22|1996-01-09|DELIVER IN PERSON|MAIL|ymptotes. carefully ironic sauter| +26315|375128|25129|1|25|30077.75|0.05|0.06|N|O|1998-08-01|1998-10-06|1998-08-11|TAKE BACK RETURN|REG AIR|s. fluffily final accoun| +26315|762471|37502|2|25|38336.00|0.04|0.00|N|O|1998-10-18|1998-08-17|1998-11-02|NONE|REG AIR|. carefully bold platelets up| +26315|841185|28734|3|45|50676.30|0.00|0.03|N|O|1998-10-09|1998-08-25|1998-10-21|COLLECT COD|SHIP|es cajole. e| +26315|783503|33504|4|2|3172.94|0.08|0.03|N|O|1998-09-09|1998-08-26|1998-09-16|COLLECT COD|REG AIR|to beans. slyly silent ideas are du| +26315|318174|18175|5|24|28611.84|0.10|0.02|N|O|1998-10-09|1998-09-22|1998-11-05|TAKE BACK RETURN|AIR| fluffily even pinto beans wake. fluffy | +26315|542765|42766|6|34|61463.16|0.05|0.08|N|O|1998-08-30|1998-09-25|1998-08-31|TAKE BACK RETURN|MAIL|al accounts.| +26315|244447|19456|7|27|37568.61|0.08|0.03|N|O|1998-11-05|1998-08-14|1998-11-13|NONE|REG AIR|luffily special pi| +26316|419821|7346|1|28|48742.40|0.04|0.07|A|F|1993-09-09|1993-07-20|1993-10-08|COLLECT COD|MAIL|ven asymptotes. sile| +26316|926263|38782|2|29|37387.38|0.03|0.01|A|F|1993-10-08|1993-08-03|1993-10-27|TAKE BACK RETURN|SHIP|ular theodolites boost. slyly enticing | +26316|700431|12946|3|22|31490.80|0.07|0.05|R|F|1993-07-26|1993-07-21|1993-07-31|COLLECT COD|REG AIR|into beans according to the c| +26316|137014|37015|4|14|14714.14|0.08|0.06|A|F|1993-08-29|1993-07-29|1993-09-12|DELIVER IN PERSON|FOB|y pending requests use according to t| +26316|779699|17245|5|6|10671.96|0.08|0.06|A|F|1993-08-27|1993-08-01|1993-09-09|TAKE BACK RETURN|TRUCK|fully ironic pinto beans sleep e| +26317|786643|36644|1|18|31132.98|0.06|0.06|N|O|1997-10-04|1997-09-28|1997-10-24|COLLECT COD|TRUCK|y pending dependencies haggle ab| +26317|105657|43164|2|23|38240.95|0.05|0.07|N|O|1997-11-13|1997-10-13|1997-12-10|COLLECT COD|TRUCK|ts cajole. accounts haggle bold | +26317|773140|10686|3|33|40032.63|0.04|0.02|N|O|1997-08-27|1997-09-12|1997-09-21|NONE|FOB|es. slyly regular packa| +26318|793528|18559|1|37|59995.13|0.07|0.07|A|F|1995-02-11|1995-01-08|1995-03-05|COLLECT COD|FOB|kly within the regular, regular ide| +26318|814786|39819|2|45|76533.30|0.04|0.00|R|F|1994-12-16|1994-12-27|1995-01-11|TAKE BACK RETURN|AIR|hockey players sleep packages. fu| +26318|95774|33278|3|44|77869.88|0.08|0.01|R|F|1994-12-14|1995-01-21|1994-12-18|COLLECT COD|REG AIR|uests. depo| +26318|665426|2966|4|38|52872.82|0.07|0.07|R|F|1994-12-31|1994-12-31|1995-01-22|TAKE BACK RETURN|FOB|ly. furiously final asymptotes hagg| +26318|802947|2948|5|1|1849.90|0.01|0.00|R|F|1995-01-11|1994-12-12|1995-01-21|NONE|MAIL|gular courts lose. bold| +26318|117974|5481|6|12|23903.64|0.08|0.00|R|F|1994-11-29|1995-01-11|1994-12-07|TAKE BACK RETURN|FOB|symptotes. carefully regular| +26319|956933|6934|1|21|41787.69|0.07|0.03|N|O|1997-02-08|1997-01-11|1997-02-27|TAKE BACK RETURN|TRUCK|s. furiously bold requests ca| +26319|156349|43859|2|33|46376.22|0.04|0.00|N|O|1997-03-05|1997-02-08|1997-03-19|COLLECT COD|REG AIR|leep quickly across the unusual p| +26319|752386|2387|3|24|34520.40|0.09|0.01|N|O|1996-11-25|1996-12-22|1996-12-09|DELIVER IN PERSON|SHIP| should are about the final, fi| +26319|348707|36226|4|39|68471.91|0.00|0.08|N|O|1997-03-22|1997-02-17|1997-04-15|DELIVER IN PERSON|RAIL| to the requests wake deposits. blithely i| +26344|85612|23116|1|20|31952.20|0.08|0.01|N|O|1997-02-24|1997-02-05|1997-03-25|TAKE BACK RETURN|RAIL|ep according to the qui| +26344|875821|13373|2|39|70074.42|0.01|0.05|N|O|1997-01-19|1997-03-08|1997-01-30|NONE|MAIL|ly above the furiously bold accounts. f| +26344|914154|1709|3|3|3504.33|0.10|0.00|N|O|1997-03-12|1997-02-01|1997-03-29|NONE|MAIL| slyly unusual accounts cajole q| +26345|659675|9676|1|22|35962.08|0.01|0.04|N|O|1998-08-30|1998-07-12|1998-09-05|COLLECT COD|MAIL|deposits are | +26345|150714|25721|2|15|26470.65|0.10|0.03|N|O|1998-07-11|1998-06-29|1998-07-15|NONE|MAIL|quests nag blithely carefully| +26345|47957|35458|3|7|13334.65|0.02|0.05|N|O|1998-06-05|1998-07-28|1998-06-06|NONE|MAIL|ully even deposits against the deposits c| +26345|8789|46290|4|2|3395.56|0.02|0.08|N|O|1998-06-01|1998-07-16|1998-06-05|NONE|AIR|e quickly pen| +26345|716436|3979|5|32|46476.80|0.04|0.05|N|O|1998-09-25|1998-08-23|1998-10-22|TAKE BACK RETURN|RAIL| carefully ironic requ| +26345|126359|26360|6|22|30477.70|0.01|0.05|N|O|1998-06-30|1998-07-08|1998-07-04|DELIVER IN PERSON|SHIP| packages hinder excuses. final | +26345|705358|42901|7|39|53169.48|0.04|0.07|N|O|1998-09-09|1998-07-05|1998-09-29|TAKE BACK RETURN|MAIL|ial somas wake slyly. fluffily iro| +26346|944000|6519|1|4|4175.84|0.06|0.08|A|F|1993-12-24|1993-12-14|1994-01-09|NONE|RAIL|accounts s| +26346|794064|31610|2|41|47479.23|0.06|0.07|A|F|1993-11-26|1993-10-27|1993-11-27|COLLECT COD|MAIL|g the ironic, ironic deposits hag| +26346|817717|30234|3|26|42501.42|0.07|0.01|A|F|1993-09-21|1993-11-06|1993-09-22|COLLECT COD|AIR|requests along the id| +26346|354222|41744|4|17|21695.57|0.03|0.00|R|F|1993-11-13|1993-12-06|1993-12-03|TAKE BACK RETURN|FOB|ts nag quickly at t| +26346|402522|15031|5|11|15669.50|0.06|0.02|A|F|1993-11-17|1993-10-24|1993-11-29|COLLECT COD|FOB|ld deposits across the carefully bl| +26347|760453|10454|1|34|51456.28|0.03|0.08|N|O|1998-07-02|1998-08-20|1998-07-06|NONE|AIR| the slyly regular instructions. care| +26347|931436|6473|2|42|61630.38|0.07|0.03|N|O|1998-08-24|1998-07-27|1998-09-20|COLLECT COD|RAIL|s are. final theodolites are furiously bold| +26348|83092|8095|1|7|7525.63|0.08|0.00|R|F|1992-08-22|1992-07-17|1992-08-25|COLLECT COD|MAIL|lites haggle furiously. regular ideas haggl| +26348|525232|37743|2|41|51545.61|0.10|0.02|A|F|1992-07-09|1992-07-11|1992-07-31|DELIVER IN PERSON|FOB| across the fur| +26348|558847|8848|3|36|68609.52|0.05|0.08|R|F|1992-09-01|1992-07-18|1992-09-08|NONE|AIR|ecial foxes since the | +26348|526654|14185|4|23|38654.49|0.06|0.05|R|F|1992-05-29|1992-07-18|1992-06-24|NONE|AIR| express acco| +26348|467317|42336|5|38|48803.02|0.10|0.08|A|F|1992-06-25|1992-08-13|1992-07-12|TAKE BACK RETURN|TRUCK|ve the quickly| +26349|586337|36338|1|40|56932.40|0.03|0.02|N|O|1998-08-24|1998-07-23|1998-08-30|NONE|SHIP| regular requests cajole across the| +26349|553131|40665|2|16|18945.76|0.01|0.07|N|O|1998-08-17|1998-08-13|1998-08-29|COLLECT COD|FOB|owly regular theodolites ar| +26349|465242|40261|3|9|10864.98|0.10|0.06|N|O|1998-09-15|1998-07-11|1998-10-01|TAKE BACK RETURN|AIR|y carefully regular platelets. slyly ir| +26349|316465|41478|4|2|2962.90|0.09|0.00|N|O|1998-07-31|1998-08-12|1998-08-15|COLLECT COD|SHIP|riously silent theodolites cajole-- en| +26350|954038|4039|1|12|13103.88|0.01|0.08|N|O|1995-07-08|1995-07-25|1995-07-20|TAKE BACK RETURN|SHIP|structions wake sly| +26350|505658|43189|2|2|3327.26|0.07|0.02|N|O|1995-06-27|1995-07-25|1995-07-13|NONE|RAIL|final accounts against the express| +26351|848935|48936|1|46|86658.94|0.08|0.02|N|O|1997-05-19|1997-05-05|1997-06-03|COLLECT COD|AIR| from the slyly iro| +26351|42994|5495|2|45|87164.55|0.02|0.06|N|O|1997-05-12|1997-05-15|1997-05-19|NONE|AIR|eans cajole furiously slyly| +26351|593483|43484|3|21|33105.66|0.07|0.01|N|O|1997-07-01|1997-04-29|1997-07-26|DELIVER IN PERSON|MAIL|ts boost at the f| +26351|664412|1952|4|26|35785.88|0.06|0.08|N|O|1997-05-09|1997-05-31|1997-05-10|TAKE BACK RETURN|TRUCK|y ironic foxes haggle by the i| +26351|768338|18339|5|36|50626.80|0.04|0.06|N|O|1997-04-19|1997-06-02|1997-05-12|DELIVER IN PERSON|MAIL| nag among the reg| +26376|673892|23893|1|24|44780.64|0.10|0.00|A|F|1994-12-04|1995-01-05|1994-12-08|TAKE BACK RETURN|MAIL|lly special sentiments s| +26376|101484|1485|2|1|1485.48|0.08|0.02|R|F|1994-11-29|1995-01-25|1994-12-20|COLLECT COD|RAIL|fix pending, unusual excuses. blithely e| +26377|502818|15329|1|11|20028.69|0.06|0.08|R|F|1994-01-01|1993-12-22|1994-01-27|COLLECT COD|FOB|nic dependencies sleep | +26377|860534|10535|2|38|56790.62|0.00|0.02|A|F|1993-12-11|1994-02-18|1993-12-18|NONE|TRUCK| the ideas sleep furiously about t| +26378|49306|36807|1|15|18829.50|0.00|0.03|N|O|1998-02-24|1998-03-22|1998-02-25|COLLECT COD|TRUCK|e furiously ironic pinto | +26378|681413|18953|2|23|32070.74|0.00|0.08|N|O|1998-03-26|1998-03-01|1998-04-14|DELIVER IN PERSON|RAIL|d platelets are furiously unusual requests.| +26378|506410|43941|3|45|63737.55|0.05|0.02|N|O|1998-05-03|1998-03-26|1998-05-14|DELIVER IN PERSON|FOB|ly ironic deposits. q| +26378|231308|43813|4|14|17350.06|0.10|0.04|N|O|1998-03-18|1998-03-05|1998-03-22|DELIVER IN PERSON|MAIL|lent packag| +26378|580984|43496|5|26|53688.96|0.01|0.07|N|O|1998-02-19|1998-03-12|1998-03-07|NONE|RAIL|eposits haggle alongside of the furiously | +26379|859793|34828|1|16|28044.00|0.07|0.08|R|F|1994-08-21|1994-07-14|1994-09-09|COLLECT COD|SHIP|ously silent pearls-- | +26379|532348|32349|2|42|57973.44|0.10|0.07|A|F|1994-07-12|1994-08-03|1994-08-11|TAKE BACK RETURN|MAIL|t against the fu| +26379|163300|38307|3|23|31355.90|0.08|0.06|R|F|1994-08-21|1994-08-10|1994-09-02|NONE|TRUCK|ily among the ironic requests. notorn| +26380|422007|9532|1|32|29727.36|0.02|0.02|A|F|1993-02-07|1993-03-01|1993-03-06|TAKE BACK RETURN|TRUCK|kages lose doggedly ironic p| +26380|668829|43856|2|24|43146.96|0.03|0.01|A|F|1992-12-21|1993-01-10|1993-01-12|DELIVER IN PERSON|MAIL|final accounts. daringly special pint| +26380|995956|8476|3|8|16415.28|0.03|0.07|R|F|1992-12-29|1993-01-29|1993-01-17|NONE|SHIP|are quickly alongs| +26380|21597|34098|4|14|21260.26|0.10|0.07|A|F|1993-03-28|1993-01-30|1993-04-25|NONE|AIR|uches according to the furiously | +26380|975142|25143|5|15|18256.50|0.09|0.05|R|F|1993-01-10|1993-01-26|1993-01-26|COLLECT COD|FOB|lly fluffily unusual dolphins. furi| +26381|805010|17527|1|21|19214.37|0.09|0.07|N|O|1996-11-06|1996-12-23|1996-11-09|NONE|MAIL|ress frets are| +26381|796045|46046|2|7|7987.07|0.03|0.04|N|O|1997-01-25|1997-02-02|1997-01-31|DELIVER IN PERSON|FOB|s accounts boost. furio| +26382|964831|14832|1|8|15166.32|0.08|0.07|N|O|1997-05-13|1997-07-22|1997-05-31|DELIVER IN PERSON|AIR| nod even mu| +26382|901292|1293|2|4|5173.00|0.06|0.06|N|O|1997-07-17|1997-07-25|1997-07-30|TAKE BACK RETURN|RAIL| frays. blithely| +26382|9227|46728|3|34|38631.48|0.05|0.05|N|O|1997-07-18|1997-07-23|1997-08-07|DELIVER IN PERSON|SHIP|as. requests haggle blithely quickl| +26382|74945|37447|4|26|49918.44|0.01|0.00|N|O|1997-07-18|1997-06-08|1997-07-26|COLLECT COD|TRUCK|t the carefully reg| +26383|206023|6024|1|48|44592.48|0.10|0.05|R|F|1994-07-08|1994-08-09|1994-08-06|NONE|RAIL| final deposit| +26383|623886|11423|2|20|36197.00|0.07|0.06|R|F|1994-10-25|1994-08-26|1994-11-14|COLLECT COD|MAIL| the pending requests. blithely expr| +26383|643279|5792|3|7|8555.68|0.05|0.02|R|F|1994-08-30|1994-08-23|1994-09-14|NONE|FOB| unusual requests nag. silent| +26408|592782|17805|1|22|41244.72|0.09|0.02|A|F|1993-10-17|1993-12-25|1993-11-07|NONE|MAIL|ely. slyly even pinto beans h| +26408|880420|17972|2|27|37810.26|0.08|0.02|R|F|1993-11-18|1993-12-07|1993-12-13|NONE|FOB| boldly about th| +26408|214562|2075|3|45|66444.75|0.08|0.04|R|F|1993-12-28|1993-12-19|1994-01-11|NONE|RAIL|arthogs would sleep furiously bold ideas. f| +26408|130275|17782|4|23|30021.21|0.01|0.06|A|F|1993-11-20|1993-12-08|1993-12-08|NONE|TRUCK| packages haggle theodolites. furiously exp| +26409|588384|13407|1|32|47115.52|0.10|0.02|A|F|1993-01-27|1993-03-12|1993-02-06|TAKE BACK RETURN|FOB|osits; slyly final ideas acco| +26409|967406|17407|2|37|54514.32|0.01|0.02|A|F|1993-01-21|1993-02-01|1993-02-13|NONE|RAIL|oost about the sly| +26410|528393|3414|1|11|15635.07|0.10|0.02|N|O|1997-04-08|1997-04-03|1997-05-06|COLLECT COD|MAIL|posits detect furiously. care| +26410|694830|44831|2|14|25547.20|0.06|0.05|N|O|1997-03-15|1997-04-09|1997-04-04|NONE|TRUCK|oxes. final| +26410|3197|40698|3|23|25304.37|0.10|0.04|N|O|1997-06-13|1997-04-01|1997-07-13|NONE|RAIL|eans. blithely even excuses ab| +26410|728378|15921|4|15|21095.10|0.08|0.07|N|O|1997-04-21|1997-04-03|1997-04-23|COLLECT COD|TRUCK|are. fluffily ironic foxes among | +26411|59361|46865|1|44|58095.84|0.05|0.08|N|O|1997-11-28|1998-01-19|1997-12-05|COLLECT COD|MAIL|sual dependencies cajole. specia| +26411|667306|42333|2|36|45837.72|0.02|0.01|N|O|1998-02-14|1997-12-29|1998-02-26|COLLECT COD|RAIL|print furiously along the din| +26411|407321|44846|3|5|6141.50|0.00|0.04|N|O|1998-02-16|1998-01-01|1998-03-06|TAKE BACK RETURN|FOB| the bold requests. silently silent ac| +26411|830214|17763|4|20|22883.40|0.00|0.03|N|O|1998-01-04|1998-01-15|1998-01-29|NONE|FOB|un furiously. asymptotes m| +26411|394407|6915|5|22|33030.58|0.01|0.02|N|O|1997-11-02|1997-12-27|1997-11-23|DELIVER IN PERSON|REG AIR| haggle slyly a| +26412|767984|43015|1|17|34883.15|0.08|0.05|R|F|1994-02-21|1994-02-27|1994-02-22|NONE|SHIP|cial deposits among the ironic accounts are| +26412|494502|19521|2|30|44894.40|0.10|0.07|A|F|1994-04-03|1994-02-12|1994-04-05|COLLECT COD|FOB| furiously ironic cour| +26413|696137|33677|1|8|9064.80|0.09|0.03|A|F|1995-02-03|1994-12-28|1995-02-28|DELIVER IN PERSON|REG AIR|express packages? blithely | +26413|968466|18467|2|15|23016.30|0.00|0.05|R|F|1995-01-27|1995-01-19|1995-02-21|COLLECT COD|MAIL|nally fina| +26413|1522|26523|3|37|52670.24|0.05|0.08|R|F|1994-10-28|1994-12-20|1994-11-13|COLLECT COD|RAIL|nding packages sublate furiously a| +26413|575127|25128|4|35|42073.50|0.03|0.04|A|F|1994-11-14|1995-01-07|1994-11-16|TAKE BACK RETURN|FOB|e blithely thin platelets haggle slyly afte| +26413|157162|32169|5|42|51204.72|0.07|0.03|R|F|1995-02-12|1994-11-29|1995-03-10|COLLECT COD|FOB|ggle. packages are slyly. even p| +26413|405949|5950|6|23|42663.16|0.04|0.00|A|F|1995-01-21|1994-12-14|1995-01-29|NONE|FOB|nding instructions. furiously special requ| +26414|769925|32441|1|30|59846.70|0.05|0.05|A|F|1995-05-26|1995-06-28|1995-05-28|TAKE BACK RETURN|FOB|. regular asympto| +26414|113471|25974|2|26|38596.22|0.07|0.08|N|O|1995-07-02|1995-07-05|1995-07-28|NONE|AIR| regular requests detect despite the qu| +26414|102535|40042|3|42|64576.26|0.02|0.05|N|O|1995-08-25|1995-07-18|1995-09-03|COLLECT COD|AIR|ep alongside of the foxes. slyly| +26414|304754|17261|4|14|24622.36|0.00|0.06|A|F|1995-05-07|1995-07-07|1995-05-26|DELIVER IN PERSON|MAIL|telets against the furiou| +26414|984439|9478|5|26|39608.14|0.09|0.01|A|F|1995-05-07|1995-07-03|1995-05-18|TAKE BACK RETURN|MAIL|pinto beans nag carefully. e| +26414|465749|3277|6|14|24006.08|0.10|0.06|N|F|1995-06-09|1995-06-19|1995-07-01|NONE|TRUCK|. blithely | +26414|841353|41354|7|29|37534.99|0.02|0.01|N|O|1995-07-08|1995-06-11|1995-07-13|TAKE BACK RETURN|REG AIR|ironic deposits. fluffily reg| +26415|611890|49427|1|46|82885.56|0.08|0.03|N|O|1996-05-22|1996-04-15|1996-06-10|COLLECT COD|MAIL|s according| +26415|22507|47508|2|30|42885.00|0.04|0.01|N|O|1996-03-27|1996-05-08|1996-04-21|TAKE BACK RETURN|MAIL| blithely final asym| +26415|261364|48880|3|9|11928.15|0.06|0.08|N|O|1996-05-27|1996-05-19|1996-06-23|COLLECT COD|FOB|to beans sleep slyly carefully| +26415|732924|20467|4|32|62620.48|0.10|0.02|N|O|1996-06-03|1996-04-28|1996-06-07|DELIVER IN PERSON|FOB|ccounts. sly| +26415|237284|49789|5|2|2442.54|0.07|0.08|N|O|1996-06-30|1996-05-06|1996-07-24|TAKE BACK RETURN|REG AIR|after the special frays. slyl| +26415|24529|37030|6|30|43605.60|0.08|0.08|N|O|1996-05-03|1996-05-24|1996-05-07|DELIVER IN PERSON|RAIL|yly ironic deposits cajole before | +26440|414772|2297|1|5|8433.75|0.01|0.00|N|O|1997-06-21|1997-07-24|1997-06-26|COLLECT COD|REG AIR|fully even excuses slee| +26440|66397|41400|2|26|35448.14|0.05|0.03|N|O|1997-06-08|1997-06-10|1997-07-01|DELIVER IN PERSON|RAIL|carefully ironic asympt| +26440|929623|42142|3|46|76018.68|0.10|0.00|N|O|1997-08-02|1997-06-17|1997-08-19|COLLECT COD|FOB| silent accounts. silent,| +26440|171043|33547|4|12|13368.48|0.04|0.00|N|O|1997-07-20|1997-07-04|1997-08-11|COLLECT COD|REG AIR|unts. ironic depos| +26440|708178|20693|5|20|23722.80|0.10|0.05|N|O|1997-06-27|1997-06-19|1997-06-28|DELIVER IN PERSON|RAIL|arefully spec| +26441|763328|38359|1|34|47303.86|0.06|0.04|R|F|1994-12-22|1994-10-22|1995-01-03|NONE|FOB|ld packages detect carefu| +26441|249491|49492|2|49|70583.52|0.08|0.08|R|F|1994-12-05|1994-11-28|1994-12-08|COLLECT COD|AIR|ges boost around the final, bold| +26441|193785|18792|3|12|22545.36|0.07|0.06|R|F|1994-12-09|1994-10-11|1994-12-19|TAKE BACK RETURN|SHIP|ingly around the p| +26441|938308|13345|4|2|2692.52|0.02|0.08|A|F|1994-09-19|1994-10-11|1994-10-04|COLLECT COD|REG AIR|ar account| +26442|829491|4524|1|8|11363.60|0.05|0.03|N|O|1995-11-28|1996-02-07|1995-12-01|COLLECT COD|MAIL|ely special deposits above th| +26442|249862|12367|2|9|16306.65|0.07|0.02|N|O|1995-12-09|1996-01-21|1996-01-03|COLLECT COD|AIR|s the regular, regular packages; | +26443|188278|38279|1|21|28691.67|0.00|0.08|R|F|1993-10-11|1993-08-28|1993-10-31|NONE|TRUCK|indle alongside of the slyly p| +26443|375949|25950|2|31|62772.83|0.06|0.05|R|F|1993-09-05|1993-09-10|1993-10-05|TAKE BACK RETURN|MAIL|uickly unusual packages. carefully regula| +26443|563545|1079|3|41|65949.32|0.07|0.02|A|F|1993-09-02|1993-09-07|1993-09-16|DELIVER IN PERSON|REG AIR|bold decoys sleep alongside of the reg| +26443|497561|47562|4|41|63900.14|0.04|0.03|R|F|1993-09-30|1993-08-25|1993-10-27|DELIVER IN PERSON|REG AIR|cajole furiously toward the blithely iron| +26443|497898|35426|5|48|91001.76|0.01|0.02|R|F|1993-09-30|1993-09-26|1993-10-24|NONE|SHIP|ter the carefully regular cour| +26443|171359|33863|6|6|8582.10|0.09|0.01|R|F|1993-09-23|1993-09-22|1993-10-21|COLLECT COD|REG AIR|dolphins are specia| +26444|406333|18842|1|36|44615.16|0.08|0.03|A|F|1993-12-29|1993-11-18|1994-01-22|DELIVER IN PERSON|AIR| theodolites are| +26444|225366|12879|2|48|61984.80|0.07|0.08|R|F|1993-09-15|1993-12-10|1993-09-26|DELIVER IN PERSON|SHIP|ts nag blithely on the regular sentiments?| +26444|720042|32557|3|33|35046.33|0.02|0.05|A|F|1993-11-11|1993-11-27|1993-11-20|NONE|TRUCK| express reque| +26444|737558|73|4|11|17550.72|0.06|0.06|R|F|1993-11-20|1993-11-06|1993-12-14|TAKE BACK RETURN|MAIL| across the furiously bold ideas haggle c| +26445|696347|33887|1|42|56419.02|0.03|0.04|R|F|1994-11-20|1994-10-14|1994-12-20|COLLECT COD|REG AIR|ly special orbits. carefully unusual dep| +26446|944933|7452|1|30|59336.70|0.06|0.02|N|O|1996-03-08|1995-12-10|1996-04-03|TAKE BACK RETURN|REG AIR|ns cajole sl| +26446|483289|8308|2|10|12722.60|0.10|0.01|N|O|1995-11-21|1996-01-03|1995-12-10|DELIVER IN PERSON|MAIL|nal platelets boost q| +26446|623171|35684|3|17|18600.38|0.04|0.04|N|O|1996-02-23|1996-01-05|1996-03-21|TAKE BACK RETURN|FOB| the carefully regula| +26446|630624|43137|4|38|59074.42|0.04|0.08|N|O|1996-01-09|1996-01-03|1996-01-30|DELIVER IN PERSON|TRUCK|al ideas. special| +26446|893284|18319|5|39|49812.36|0.07|0.01|N|O|1996-01-14|1995-12-31|1996-01-21|COLLECT COD|REG AIR|across the unusual, unusual | +26446|420838|45855|6|14|24623.34|0.05|0.02|N|O|1995-12-18|1995-12-25|1996-01-13|TAKE BACK RETURN|FOB|e never. carefully regular packages boo| +26447|314883|27390|1|8|15182.96|0.00|0.00|R|F|1994-08-11|1994-07-18|1994-09-02|NONE|FOB|ular packages cajole slyl| +26447|232483|7492|2|3|4246.41|0.01|0.05|R|F|1994-05-11|1994-06-19|1994-05-25|COLLECT COD|TRUCK|telets haggle fluffily ironic packages.| +26447|334216|34217|3|26|32505.20|0.04|0.06|R|F|1994-08-13|1994-06-06|1994-08-17|DELIVER IN PERSON|AIR|rate braids. special, even dolphins detect| +26447|154964|17468|4|4|8075.84|0.07|0.07|A|F|1994-06-11|1994-07-14|1994-06-27|COLLECT COD|TRUCK|ages about the carefully final foxes nag| +26447|473438|48457|5|37|52222.17|0.04|0.05|A|F|1994-05-09|1994-07-11|1994-06-06|TAKE BACK RETURN|SHIP|blithely. carefull| +26472|479327|41837|1|49|64008.70|0.07|0.06|N|O|1997-09-18|1997-07-22|1997-10-10|TAKE BACK RETURN|RAIL|special asy| +26473|854865|17383|1|12|21837.84|0.09|0.06|A|F|1993-08-25|1993-10-15|1993-09-22|COLLECT COD|TRUCK| about the furious| +26473|712237|12238|2|2|2498.40|0.06|0.06|R|F|1993-08-23|1993-10-24|1993-09-13|COLLECT COD|RAIL|ep above the silently final account| +26474|448838|23855|1|31|55391.11|0.03|0.08|R|F|1993-06-27|1993-07-18|1993-07-07|NONE|TRUCK| quickly-- re| +26474|608361|33386|2|38|48234.54|0.03|0.06|R|F|1993-06-06|1993-06-22|1993-06-16|COLLECT COD|SHIP| even, ironic re| +26474|721669|21670|3|46|77768.98|0.05|0.02|R|F|1993-05-11|1993-05-28|1993-05-22|DELIVER IN PERSON|REG AIR|ular requests along the final hockey p| +26474|74487|11991|4|12|17537.76|0.03|0.01|A|F|1993-08-14|1993-06-20|1993-08-22|COLLECT COD|RAIL|he blithely silent frets. blithely spe| +26474|892754|5272|5|48|83842.08|0.03|0.03|A|F|1993-07-25|1993-06-30|1993-08-11|NONE|MAIL|haggle blithely. packages nag| +26474|503293|15804|6|16|20740.32|0.04|0.05|A|F|1993-05-18|1993-07-04|1993-05-20|NONE|RAIL|ly regular requests. slyly blithe depo| +26474|831692|19241|7|27|43838.55|0.07|0.02|A|F|1993-05-04|1993-07-07|1993-05-19|DELIVER IN PERSON|TRUCK|lyly pending requests ki| +26475|231852|6861|1|21|37460.64|0.08|0.05|N|O|1997-04-23|1997-04-23|1997-05-01|TAKE BACK RETURN|RAIL|e fluffily final instructions. accounts ca| +26475|723216|35731|2|32|39653.76|0.02|0.07|N|O|1997-02-02|1997-03-08|1997-02-04|COLLECT COD|FOB|packages. blithely final foxes | +26475|90262|15265|3|36|45081.36|0.01|0.03|N|O|1997-05-08|1997-03-03|1997-06-03|TAKE BACK RETURN|REG AIR|slyly special requests kindle | +26476|895755|8273|1|5|8753.55|0.09|0.05|N|O|1996-07-09|1996-09-27|1996-08-03|NONE|AIR|bold deposits. pinto be| +26476|945823|20860|2|27|50457.06|0.07|0.05|N|O|1996-10-20|1996-09-27|1996-10-25|DELIVER IN PERSON|TRUCK| regular theodolites might are | +26476|446907|46908|3|34|63031.92|0.05|0.06|N|O|1996-07-29|1996-08-23|1996-08-03|NONE|TRUCK|ing, unusual pearls wake; bold,| +26476|165674|28178|4|40|69586.80|0.09|0.06|N|O|1996-07-17|1996-08-18|1996-07-23|NONE|REG AIR|old instructions haggle furiously. careful| +26476|470790|45809|5|34|59866.18|0.05|0.07|N|O|1996-08-29|1996-08-04|1996-09-20|DELIVER IN PERSON|RAIL|ular accoun| +26477|810212|10213|1|7|7855.19|0.05|0.01|N|O|1998-05-30|1998-06-01|1998-06-18|TAKE BACK RETURN|AIR|uriously across the caref| +26477|221810|46819|2|7|12122.60|0.06|0.05|N|O|1998-04-16|1998-04-18|1998-05-10|NONE|FOB|sly among the fluffily final instr| +26477|949035|36590|3|32|34687.68|0.01|0.01|N|O|1998-03-28|1998-04-18|1998-04-18|TAKE BACK RETURN|RAIL| theodolites | +26477|418059|43076|4|28|27356.84|0.08|0.00|N|O|1998-05-07|1998-05-07|1998-06-06|COLLECT COD|AIR|ies. final, silent ideas are into th| +26478|706706|44249|1|26|44529.42|0.08|0.07|N|O|1996-11-23|1996-11-18|1996-11-24|DELIVER IN PERSON|FOB|s cajole. regular, express accounts| +26478|591477|16500|2|13|20389.85|0.02|0.08|N|O|1996-09-27|1996-10-13|1996-10-13|COLLECT COD|REG AIR|hely regular accounts. daringly special | +26478|953125|40683|3|35|41232.80|0.08|0.04|N|O|1996-11-07|1996-10-10|1996-12-07|TAKE BACK RETURN|MAIL|ructions sleep sly| +26478|162765|25269|4|26|47521.76|0.02|0.07|N|O|1996-12-10|1996-10-21|1996-12-16|COLLECT COD|FOB|arefully even pa| +26478|586974|24508|5|9|18548.55|0.02|0.07|N|O|1996-11-01|1996-11-05|1996-11-05|DELIVER IN PERSON|RAIL|s haggle blithely carefully final pinto bea| +26479|740213|15242|1|17|21304.06|0.07|0.01|N|O|1995-12-18|1996-02-02|1996-01-07|NONE|RAIL|pending foxes cajole| +26479|746244|21273|2|45|58059.45|0.03|0.05|N|O|1996-03-18|1996-02-12|1996-03-30|COLLECT COD|AIR|ns doubt furious| +26479|112862|37867|3|29|54370.94|0.09|0.06|N|O|1996-03-22|1996-01-25|1996-04-17|DELIVER IN PERSON|RAIL| wake carefully. carefully ironic accounts| +26479|863398|38433|4|19|25865.65|0.06|0.04|N|O|1995-12-22|1996-01-07|1996-01-13|TAKE BACK RETURN|MAIL|he carefully special pa| +26479|126517|26518|5|37|57109.87|0.05|0.05|N|O|1996-02-07|1996-02-07|1996-02-13|COLLECT COD|MAIL|equests cajole| +26479|364281|14282|6|44|59191.88|0.01|0.02|N|O|1996-02-15|1996-01-21|1996-02-21|TAKE BACK RETURN|RAIL|e quietly ex| +26504|390621|28143|1|20|34232.20|0.08|0.01|N|O|1998-05-08|1998-04-08|1998-06-05|COLLECT COD|REG AIR|elets. enticingly slow | +26505|561210|48744|1|24|30508.56|0.03|0.03|N|O|1997-01-22|1997-01-30|1997-01-26|TAKE BACK RETURN|MAIL|l, final platelets. slyly unusual package| +26506|145829|45830|1|20|37496.40|0.09|0.00|N|O|1997-11-12|1997-11-19|1997-11-14|TAKE BACK RETURN|TRUCK| blithely regular req| +26507|117413|42418|1|39|55785.99|0.03|0.01|A|F|1995-01-17|1995-03-24|1995-02-15|NONE|REG AIR|fily close acc| +26507|358457|33472|2|34|51524.96|0.04|0.02|R|F|1995-01-15|1995-02-11|1995-01-31|TAKE BACK RETURN|FOB|slyly regular packages aft| +26507|572433|9967|3|47|70754.27|0.09|0.04|A|F|1995-02-05|1995-03-30|1995-03-06|TAKE BACK RETURN|TRUCK|ular packages poach slyly fluf| +26507|873100|10652|4|38|40776.28|0.03|0.04|R|F|1995-05-02|1995-04-09|1995-05-03|NONE|AIR| run furiou| +26507|188428|25938|5|25|37910.50|0.09|0.01|A|F|1995-03-12|1995-03-11|1995-03-22|COLLECT COD|SHIP|tes cajole carefully about the t| +26508|994288|19327|1|2|2764.48|0.02|0.07|R|F|1994-03-26|1994-05-12|1994-03-27|COLLECT COD|TRUCK|ccounts use blithely furiously si| +26508|982033|32034|2|26|28989.74|0.00|0.08|A|F|1994-03-23|1994-05-10|1994-04-21|NONE|AIR| unusual pa| +26508|15410|15411|3|15|19881.15|0.04|0.07|R|F|1994-04-21|1994-05-13|1994-04-30|NONE|REG AIR|latelets sleep furiously slyly bol| +26508|992544|42545|4|18|29457.00|0.06|0.00|R|F|1994-05-06|1994-05-11|1994-05-08|COLLECT COD|MAIL| requests thrash. pinto beans| +26508|683495|46009|5|26|38439.96|0.10|0.02|R|F|1994-04-21|1994-05-13|1994-04-22|COLLECT COD|REG AIR|iously regular deposits are furiously the| +26508|492465|29993|6|32|46638.08|0.03|0.05|A|F|1994-04-14|1994-06-05|1994-04-30|NONE|TRUCK|ar requests a| +26508|843351|18384|7|40|51772.40|0.06|0.05|R|F|1994-06-15|1994-05-20|1994-07-09|TAKE BACK RETURN|SHIP|regular courts above the quickly pending| +26509|185081|22591|1|45|52473.60|0.03|0.08|N|O|1996-11-05|1996-12-16|1996-11-26|DELIVER IN PERSON|TRUCK|refully regular requests | +26509|643807|31344|2|11|19258.47|0.05|0.01|N|O|1996-10-08|1996-12-13|1996-11-01|NONE|AIR|y across the slyly express accounts.| +26509|459066|34085|3|37|37926.48|0.05|0.05|N|O|1997-01-02|1997-01-03|1997-01-20|COLLECT COD|RAIL|was slyly along the slyly even in| +26509|512293|49824|4|33|43073.91|0.07|0.06|N|O|1996-12-19|1996-11-25|1997-01-09|DELIVER IN PERSON|TRUCK| frets along | +26510|370552|33060|1|36|58411.44|0.09|0.00|N|O|1998-10-19|1998-08-15|1998-11-15|DELIVER IN PERSON|RAIL|usly. deposits hang slyly daring reque| +26510|861224|23742|2|14|16592.52|0.01|0.06|N|O|1998-07-12|1998-09-05|1998-07-24|DELIVER IN PERSON|SHIP|as cajole | +26510|584064|34065|3|6|6888.24|0.00|0.06|N|O|1998-08-21|1998-09-03|1998-09-09|COLLECT COD|TRUCK|blithely regular accounts. | +26510|358461|20969|4|49|74453.05|0.03|0.08|N|O|1998-08-18|1998-08-28|1998-09-16|TAKE BACK RETURN|REG AIR| carefully even deposits haggl| +26510|648505|36042|5|48|69766.56|0.01|0.04|N|O|1998-09-26|1998-07-25|1998-10-15|TAKE BACK RETURN|MAIL|o beans across the furi| +26510|420401|20402|6|6|7928.28|0.02|0.02|N|O|1998-09-28|1998-08-03|1998-10-23|COLLECT COD|FOB|round the pendin| +26511|972645|47684|1|2|3435.20|0.06|0.07|A|F|1992-12-16|1992-12-04|1992-12-31|NONE|FOB|ular instructions above the | +26536|132658|20165|1|19|32122.35|0.08|0.05|N|O|1997-02-20|1997-04-24|1997-02-24|COLLECT COD|SHIP|s cajole about the slyly final deposits.| +26537|677327|14867|1|47|61301.63|0.06|0.01|N|O|1997-07-11|1997-05-13|1997-07-23|COLLECT COD|RAIL|ajole quickly. slow sauternes sleep | +26537|832039|32040|2|24|23303.76|0.05|0.00|N|O|1997-05-15|1997-06-24|1997-06-06|NONE|RAIL|ts. final requests wak| +26537|77101|27102|3|29|31264.90|0.10|0.05|N|O|1997-04-04|1997-06-25|1997-04-06|NONE|SHIP|requests integrate blithely. bli| +26537|824896|12445|4|21|38237.85|0.01|0.04|N|O|1997-04-11|1997-05-04|1997-05-07|DELIVER IN PERSON|TRUCK|brave, bold theodolites| +26538|162577|37584|1|19|31151.83|0.04|0.08|A|F|1994-05-04|1994-04-09|1994-05-19|COLLECT COD|REG AIR|to the never| +26538|419877|32386|2|11|19765.35|0.08|0.01|R|F|1994-04-21|1994-03-05|1994-05-07|COLLECT COD|MAIL|structions after the slyly ironic | +26538|871384|33902|3|5|6776.70|0.02|0.00|R|F|1994-01-31|1994-03-01|1994-02-28|TAKE BACK RETURN|RAIL|x regular accounts. quickly ironic pinto| +26538|335265|22784|4|24|31206.00|0.08|0.06|R|F|1994-03-20|1994-03-30|1994-04-15|DELIVER IN PERSON|RAIL|ts. bold, pending fo| +26538|791327|41328|5|50|70914.50|0.04|0.06|R|F|1994-01-31|1994-03-07|1994-02-24|NONE|MAIL|xpress asymptotes dazzle blithely. ironic,| +26538|828280|28281|6|29|35038.96|0.09|0.07|A|F|1994-02-01|1994-04-05|1994-02-08|NONE|FOB|lyly even pinto beans| +26538|898931|11449|7|28|54036.92|0.06|0.04|R|F|1994-01-31|1994-02-28|1994-02-20|NONE|AIR|side of the unusual, un| +26539|318555|6074|1|18|28323.72|0.06|0.01|N|O|1996-03-24|1996-05-09|1996-04-02|NONE|SHIP|uffily pending in| +26539|941542|16579|2|44|69674.00|0.03|0.04|N|O|1996-05-02|1996-03-18|1996-05-09|DELIVER IN PERSON|SHIP|ly regular accounts wake slyl| +26539|487731|37732|3|50|85935.50|0.10|0.08|N|O|1996-02-28|1996-05-07|1996-03-19|NONE|SHIP|ly about the carefully final packages. | +26539|286405|48911|4|39|54264.21|0.08|0.00|N|O|1996-04-06|1996-03-24|1996-05-03|DELIVER IN PERSON|AIR|arefully unusual fo| +26539|604923|4924|5|44|80427.16|0.06|0.04|N|O|1996-05-20|1996-04-25|1996-06-07|DELIVER IN PERSON|FOB|regular, regular pinto b| +26540|81559|6562|1|36|55459.80|0.06|0.06|N|O|1997-05-20|1997-06-09|1997-05-31|TAKE BACK RETURN|FOB|ular requests are blithely above the| +26540|756167|43713|2|16|19570.08|0.05|0.03|N|O|1997-06-26|1997-04-22|1997-06-30|COLLECT COD|TRUCK|le fluffily | +26541|718212|18213|1|19|23373.42|0.07|0.03|N|O|1996-09-20|1996-08-10|1996-09-28|COLLECT COD|REG AIR|ide of the regular deposits. furiousl| +26541|980694|43214|2|3|5323.95|0.10|0.03|N|O|1996-09-23|1996-09-22|1996-09-29|COLLECT COD|REG AIR| wake after the daringly quick in| +26541|515867|15868|3|34|64016.56|0.03|0.06|N|O|1996-07-11|1996-08-23|1996-08-06|TAKE BACK RETURN|TRUCK|-ray. deposits doz| +26541|160754|48264|4|38|68960.50|0.08|0.01|N|O|1996-07-30|1996-09-11|1996-08-25|COLLECT COD|RAIL|regular deposits wake fina| +26541|790246|27792|5|5|6681.05|0.00|0.07|N|O|1996-10-10|1996-09-16|1996-10-28|NONE|TRUCK|l deposits. ironic re| +26541|664506|39533|6|15|22057.05|0.05|0.05|N|O|1996-09-07|1996-08-18|1996-09-24|DELIVER IN PERSON|RAIL|longside of the slyly bo| +26541|344083|19096|7|17|19160.19|0.03|0.00|N|O|1996-07-27|1996-09-27|1996-08-19|NONE|AIR|ld packages are carefu| +26542|995776|8296|1|41|76740.93|0.00|0.00|N|O|1997-09-23|1997-09-15|1997-09-29|COLLECT COD|SHIP|furious, un| +26542|993418|18457|2|24|36272.88|0.09|0.00|N|O|1997-08-20|1997-08-16|1997-09-17|TAKE BACK RETURN|RAIL|es use along the pa| +26542|374154|49169|3|50|61407.00|0.10|0.05|N|O|1997-10-03|1997-08-22|1997-10-07|TAKE BACK RETURN|REG AIR|nto beans should have to cajole bravel| +26542|391530|29052|4|19|30808.88|0.02|0.03|N|O|1997-07-12|1997-09-18|1997-08-03|DELIVER IN PERSON|REG AIR|ongside of the sl| +26543|616865|29378|1|27|48109.41|0.07|0.00|N|O|1996-06-17|1996-05-13|1996-07-17|COLLECT COD|REG AIR|ng the final| +26543|644139|6652|2|42|45490.20|0.02|0.05|N|O|1996-05-15|1996-05-02|1996-05-23|NONE|REG AIR|ronic accounts detect slyly regular | +26543|44096|19097|3|29|30162.61|0.03|0.04|N|O|1996-06-10|1996-05-27|1996-06-22|NONE|AIR|usly across the even accounts. furiously | +26543|114054|1561|4|11|11748.55|0.01|0.04|N|O|1996-04-05|1996-06-09|1996-04-28|NONE|RAIL|ously regular do| +26543|895483|45484|5|19|28090.36|0.09|0.05|N|O|1996-07-03|1996-05-06|1996-07-17|DELIVER IN PERSON|RAIL| regular excuses. special, final | +26543|382150|7165|6|6|7392.84|0.07|0.05|N|O|1996-04-20|1996-06-07|1996-05-09|NONE|RAIL|fully final foxes maintain | +26543|789574|2090|7|42|69868.68|0.10|0.06|N|O|1996-04-06|1996-05-11|1996-04-07|COLLECT COD|AIR|fluffily unusual ideas. careful| +26568|368222|43237|1|46|59349.66|0.03|0.00|N|O|1997-07-30|1997-08-29|1997-08-12|DELIVER IN PERSON|TRUCK| carefully special deposits | +26569|970042|20043|1|48|53376.00|0.03|0.00|R|F|1994-06-28|1994-05-13|1994-07-09|NONE|AIR|onically blithely r| +26569|488750|26278|2|50|86936.50|0.08|0.00|R|F|1994-04-16|1994-05-30|1994-05-15|TAKE BACK RETURN|FOB|to beans. blithely | +26569|409194|21703|3|22|24269.74|0.01|0.00|A|F|1994-07-21|1994-05-11|1994-08-03|NONE|FOB|e carefully. furiously | +26569|318570|43583|4|3|4765.68|0.02|0.03|R|F|1994-05-25|1994-05-05|1994-06-08|NONE|MAIL|inside the carefully b| +26570|889669|14704|1|32|53075.84|0.04|0.02|N|O|1996-04-21|1996-03-14|1996-05-04|TAKE BACK RETURN|MAIL|eep quickly along the carefull| +26570|659122|46662|2|18|19459.62|0.00|0.06|N|O|1996-03-08|1996-05-06|1996-03-29|TAKE BACK RETURN|MAIL|s. carefully express ideas enga| +26570|850922|923|3|49|91771.12|0.00|0.08|N|O|1996-04-15|1996-04-09|1996-04-19|COLLECT COD|AIR|ly even excuses haggle | +26570|429667|17192|4|3|4789.92|0.00|0.05|N|O|1996-06-06|1996-04-29|1996-06-30|DELIVER IN PERSON|TRUCK|furiously ex| +26570|406217|43742|5|22|24710.18|0.05|0.02|N|O|1996-04-30|1996-04-06|1996-05-06|DELIVER IN PERSON|AIR|lithely furi| +26571|386775|36776|1|24|44682.24|0.08|0.08|N|O|1997-05-04|1997-04-10|1997-06-01|NONE|RAIL|sts. quickly express instructio| +26571|520158|32669|2|20|23562.60|0.01|0.02|N|O|1997-03-10|1997-03-30|1997-03-31|TAKE BACK RETURN|AIR|he slyly regular deposi| +26571|290139|40140|3|40|45164.80|0.07|0.03|N|O|1997-04-30|1997-04-10|1997-05-16|TAKE BACK RETURN|SHIP|pending excuses. even, final deposits | +26571|353332|28347|4|2|2770.64|0.05|0.06|N|O|1997-02-02|1997-03-01|1997-03-01|COLLECT COD|TRUCK|sits wake blithely car| +26571|434920|34921|5|6|11129.40|0.09|0.00|N|O|1997-03-20|1997-04-19|1997-03-29|COLLECT COD|TRUCK|s lose quickly. slyly regular| +26572|646455|46456|1|11|15415.62|0.08|0.08|A|F|1993-04-11|1993-04-25|1993-04-14|DELIVER IN PERSON|TRUCK|ly slow excuses sublate | +26572|966110|28630|2|47|55275.29|0.09|0.03|A|F|1993-03-16|1993-04-19|1993-04-13|COLLECT COD|TRUCK|xes along the regular wartho| +26572|395132|7640|3|14|17179.68|0.08|0.08|A|F|1993-06-10|1993-04-24|1993-06-28|NONE|SHIP|, special frays cajole boldly even instr| +26572|972165|34685|4|44|54433.28|0.07|0.05|A|F|1993-04-07|1993-05-12|1993-04-25|NONE|REG AIR|s. ironic, | +26572|173080|10590|5|45|51888.60|0.01|0.03|R|F|1993-03-13|1993-03-25|1993-04-12|COLLECT COD|MAIL|uffily along the express| +26573|466980|16981|1|46|89560.16|0.02|0.01|A|F|1994-07-13|1994-08-08|1994-07-19|DELIVER IN PERSON|SHIP|nts. deposits w| +26573|529139|16670|2|27|31538.97|0.07|0.05|R|F|1994-06-19|1994-07-10|1994-07-05|COLLECT COD|REG AIR|ructions. bl| +26574|128532|3537|1|25|39013.25|0.03|0.06|R|F|1992-07-26|1992-08-05|1992-07-30|TAKE BACK RETURN|SHIP| accounts could have to cajole ruthless| +26574|224520|24521|2|46|66447.46|0.09|0.08|A|F|1992-07-26|1992-09-25|1992-08-17|TAKE BACK RETURN|TRUCK|s. fluffily| +26574|493362|43363|3|16|21685.44|0.02|0.02|R|F|1992-10-15|1992-08-27|1992-11-10|DELIVER IN PERSON|SHIP|eodolites sleep furi| +26574|924725|24726|4|41|71736.88|0.06|0.08|R|F|1992-07-16|1992-09-15|1992-08-15|TAKE BACK RETURN|RAIL|odolites integrate above the care| +26574|845144|7661|5|11|11980.10|0.03|0.04|A|F|1992-09-01|1992-08-13|1992-09-04|DELIVER IN PERSON|REG AIR| the regular excuses use blithely a| +26575|314950|2469|1|37|72702.78|0.06|0.02|A|F|1993-07-05|1993-06-26|1993-07-26|COLLECT COD|REG AIR|aggle slyly. slyly final packages | +26575|349533|37052|2|16|25320.32|0.05|0.05|A|F|1993-07-23|1993-07-08|1993-08-08|DELIVER IN PERSON|RAIL| packages. quickly even asymptote| +26575|591180|3692|3|46|58473.36|0.05|0.01|R|F|1993-05-25|1993-07-23|1993-06-16|TAKE BACK RETURN|REG AIR|al foxes. carefully regular account| +26575|946996|34551|4|50|102147.50|0.05|0.05|A|F|1993-06-18|1993-05-29|1993-06-27|DELIVER IN PERSON|FOB|theodolites. final, regu| +26575|148117|10620|5|23|26797.53|0.06|0.07|A|F|1993-08-19|1993-06-17|1993-08-31|COLLECT COD|REG AIR| close asymptotes are according to the| +26575|398238|48239|6|22|29396.84|0.07|0.01|A|F|1993-06-05|1993-07-05|1993-06-27|DELIVER IN PERSON|REG AIR|are. carefully silent ideas along | +26600|110354|22857|1|30|40930.50|0.08|0.05|R|F|1992-07-12|1992-07-29|1992-07-17|DELIVER IN PERSON|FOB|nts. ironic| +26600|715637|3180|2|32|52883.20|0.05|0.03|R|F|1992-06-12|1992-07-26|1992-07-10|COLLECT COD|FOB|he slyly even ideas. fluff| +26600|704527|42070|3|33|50539.17|0.03|0.08|R|F|1992-07-07|1992-07-24|1992-07-10|COLLECT COD|RAIL|s. blithel| +26600|975582|13140|4|22|36465.88|0.04|0.03|A|F|1992-07-27|1992-08-08|1992-08-14|COLLECT COD|TRUCK|er. accounts wake slyly alongside of th| +26600|596701|46702|5|35|62918.80|0.02|0.08|R|F|1992-07-13|1992-07-13|1992-08-02|DELIVER IN PERSON|RAIL|ular, unusual instruction| +26600|750321|12837|6|26|35653.54|0.09|0.03|R|F|1992-09-08|1992-06-22|1992-10-07|COLLECT COD|TRUCK|lar packages wake behind the fi| +26600|643917|43918|7|19|35356.72|0.02|0.01|A|F|1992-07-21|1992-08-12|1992-08-08|COLLECT COD|MAIL|. regular, final platelets b| +26601|297629|35145|1|2|3253.22|0.01|0.01|N|O|1998-02-14|1998-03-08|1998-03-13|NONE|AIR| deposits wake among the carefully final fo| +26601|237945|37946|2|11|20712.23|0.06|0.05|N|O|1998-02-27|1998-03-09|1998-03-08|DELIVER IN PERSON|RAIL|ickly bold mult| +26602|804486|4487|1|36|50055.84|0.03|0.08|R|F|1993-02-14|1993-01-15|1993-02-24|TAKE BACK RETURN|REG AIR|gle pending, ironic | +26602|990824|3344|2|41|78505.98|0.04|0.05|R|F|1992-11-25|1992-12-16|1992-12-09|NONE|AIR|g, regular pinto beans cajol| +26602|768927|6473|3|13|25946.57|0.08|0.06|A|F|1992-12-09|1992-12-29|1993-01-06|DELIVER IN PERSON|REG AIR|egrate carefully. furious| +26602|344943|32462|4|3|5963.79|0.02|0.05|R|F|1993-01-04|1993-01-07|1993-01-05|DELIVER IN PERSON|FOB|uctions. carefully regular pinto beans | +26602|446869|46870|5|12|21790.08|0.10|0.02|A|F|1993-01-26|1993-01-11|1993-02-20|NONE|FOB|sly above the slyly ironic accounts. f| +26602|520789|33300|6|19|34385.44|0.08|0.02|R|F|1992-12-09|1993-01-29|1992-12-22|COLLECT COD|REG AIR|nusual theodolites doze blithely reg| +26602|888585|1103|7|50|78677.00|0.00|0.00|A|F|1993-02-22|1993-01-02|1993-03-15|DELIVER IN PERSON|FOB|ly special ideas impre| +26603|431422|6439|1|13|17594.20|0.02|0.06|A|F|1993-11-02|1993-11-27|1993-11-13|DELIVER IN PERSON|FOB|blithely quickly final pinto beans| +26603|895420|32972|2|35|49538.30|0.00|0.03|A|F|1993-11-05|1993-12-15|1993-11-22|NONE|TRUCK|nal instructions integrate slyly aroun| +26603|322616|47629|3|49|80291.40|0.08|0.08|R|F|1993-11-14|1993-10-23|1993-11-26|TAKE BACK RETURN|REG AIR|platelets sleep ir| +26603|203816|16321|4|32|55033.60|0.06|0.05|A|F|1993-09-21|1993-11-12|1993-10-02|COLLECT COD|RAIL|to beans. regular, | +26603|519703|44724|5|14|24117.52|0.05|0.00|A|F|1993-10-21|1993-11-24|1993-11-09|COLLECT COD|AIR|nic ideas haggle careful| +26603|644253|19278|6|6|7183.32|0.06|0.02|A|F|1993-11-28|1993-12-09|1993-11-30|TAKE BACK RETURN|AIR|ets mold fluffily fur| +26604|127060|2065|1|47|51091.82|0.02|0.04|A|F|1992-05-02|1992-06-03|1992-05-17|NONE|MAIL|s are furiou| +26604|488685|13704|2|46|76988.36|0.10|0.07|R|F|1992-07-18|1992-04-27|1992-08-11|NONE|MAIL|sts. carefully pending deposits detect acc| +26604|317064|42077|3|28|30269.40|0.02|0.04|R|F|1992-05-13|1992-05-23|1992-06-04|TAKE BACK RETURN|FOB|kages boost carefully slyly i| +26604|877923|40441|4|29|55125.52|0.03|0.08|A|F|1992-04-13|1992-06-02|1992-04-19|TAKE BACK RETURN|SHIP|y. evenly expr| +26604|245790|45791|5|35|60752.30|0.07|0.08|R|F|1992-04-24|1992-06-05|1992-05-21|NONE|TRUCK|forges about the slyly special ac| +26605|230013|5022|1|42|39606.00|0.02|0.04|R|F|1992-06-25|1992-07-11|1992-06-30|NONE|SHIP|uriously bold reques| +26605|818152|43185|2|8|8560.88|0.09|0.04|R|F|1992-07-24|1992-08-10|1992-07-25|NONE|RAIL|ccording to the sly, | +26606|327552|27553|1|19|30011.26|0.04|0.05|N|O|1995-12-24|1995-12-28|1996-01-08|COLLECT COD|SHIP|instructions haggle furiousl| +26607|146421|46422|1|30|44022.60|0.09|0.01|N|O|1996-05-24|1996-05-23|1996-06-12|DELIVER IN PERSON|MAIL|uests. quickly| +26607|885804|10839|2|6|10738.56|0.08|0.04|N|O|1996-03-31|1996-05-21|1996-04-24|COLLECT COD|REG AIR|haggle quick| +26607|696985|46986|3|23|45584.85|0.09|0.08|N|O|1996-05-04|1996-05-09|1996-05-20|TAKE BACK RETURN|MAIL|ests cajole slyly. slyly pending requ| +26632|226300|26301|1|31|38014.99|0.10|0.08|N|O|1995-08-08|1995-08-21|1995-08-12|COLLECT COD|TRUCK| slyly bold requests pro| +26633|692966|42967|1|28|54850.04|0.10|0.03|A|F|1993-08-05|1993-06-09|1993-08-27|NONE|MAIL|nst the dependencies. final,| +26634|273658|36164|1|28|45685.92|0.05|0.05|A|F|1992-04-19|1992-03-28|1992-05-03|NONE|AIR|jole across the sl| +26635|654097|29124|1|19|19970.14|0.01|0.06|R|F|1992-09-03|1992-10-07|1992-09-17|COLLECT COD|SHIP|en requests wake| +26635|403325|28342|2|41|50360.30|0.04|0.04|R|F|1992-10-18|1992-10-02|1992-11-10|NONE|REG AIR| according to the dinos. evenly express pa| +26635|674925|49952|3|15|28498.35|0.01|0.06|A|F|1992-11-16|1992-10-11|1992-12-14|DELIVER IN PERSON|RAIL|tructions. furiously bold deposi| +26636|666091|41118|1|18|19027.08|0.10|0.03|R|F|1994-01-15|1994-02-16|1994-01-16|DELIVER IN PERSON|RAIL|e carefully. car| +26636|990663|40664|2|26|45594.12|0.06|0.00|A|F|1994-02-14|1994-03-18|1994-03-11|TAKE BACK RETURN|RAIL|ymptotes up the final, unusual sen| +26636|70747|8251|3|37|63556.38|0.07|0.04|R|F|1994-02-27|1994-02-17|1994-03-19|TAKE BACK RETURN|AIR|ng ideas use car| +26636|34792|34793|4|36|62164.44|0.10|0.05|A|F|1994-04-19|1994-02-26|1994-05-09|COLLECT COD|FOB|lithely final frays use alongside of the r| +26636|734016|46531|5|32|33599.36|0.00|0.02|A|F|1993-12-30|1994-02-28|1994-01-17|COLLECT COD|TRUCK|ts. furiously sil| +26636|594558|32092|6|7|11567.71|0.04|0.02|A|F|1994-03-08|1994-02-27|1994-03-12|COLLECT COD|SHIP|. furiousl| +26636|719650|32165|7|20|33392.40|0.07|0.07|R|F|1994-04-16|1994-02-12|1994-05-15|COLLECT COD|REG AIR|fully furiously special excuses. pinto be| +26637|157139|32146|1|28|33491.64|0.02|0.01|R|F|1993-10-18|1993-11-29|1993-11-14|NONE|TRUCK|ts. regular waters detect | +26637|28757|28758|2|1|1685.75|0.02|0.06|R|F|1993-12-25|1993-11-21|1994-01-13|NONE|SHIP|pending, thin pinto beans. deposits can s| +26637|317152|17153|3|38|44427.32|0.06|0.02|R|F|1993-11-16|1993-12-24|1993-12-01|COLLECT COD|FOB|ng the carefully ironic pinto beans. ironic| +26637|371421|8943|4|35|52234.35|0.07|0.03|R|F|1993-12-22|1993-12-28|1994-01-07|DELIVER IN PERSON|RAIL|ttainments affix| +26637|470363|20364|5|5|6666.70|0.09|0.05|R|F|1993-12-16|1993-12-08|1994-01-08|TAKE BACK RETURN|REG AIR|eas affix final dolphins. blithely final| +26637|385528|23050|6|29|46791.79|0.00|0.04|A|F|1993-10-11|1993-12-21|1993-10-28|DELIVER IN PERSON|AIR|silent pac| +26637|566768|4302|7|23|42199.02|0.03|0.06|R|F|1993-10-29|1993-12-16|1993-11-02|DELIVER IN PERSON|SHIP|busy packages. special| +26638|669161|31675|1|5|5650.65|0.03|0.00|A|F|1992-05-27|1992-06-23|1992-06-16|DELIVER IN PERSON|SHIP|nal packages. regul| +26638|580720|5743|2|13|23409.10|0.00|0.05|R|F|1992-06-29|1992-06-02|1992-07-18|DELIVER IN PERSON|SHIP|ugouts nag | +26639|34417|34418|1|12|16216.92|0.03|0.04|N|O|1997-09-04|1997-07-17|1997-09-12|COLLECT COD|REG AIR|g the regul| +26664|971639|46678|1|35|59870.65|0.02|0.08|R|F|1993-04-01|1993-03-02|1993-04-04|NONE|MAIL|eposits sleep about the blith| +26664|323147|35654|2|7|8190.91|0.10|0.07|A|F|1993-01-09|1993-02-02|1993-01-31|TAKE BACK RETURN|SHIP|ers nag slyly blithely slow | +26664|128005|28006|3|27|27891.00|0.03|0.06|R|F|1993-02-16|1993-02-05|1993-03-16|COLLECT COD|AIR|sy accounts. slyly regula| +26664|376465|13987|4|2|3082.90|0.04|0.05|A|F|1993-01-10|1993-01-04|1993-01-29|TAKE BACK RETURN|AIR| regular pin| +26664|236203|11212|5|3|3417.57|0.00|0.04|R|F|1993-03-18|1993-01-15|1993-03-29|DELIVER IN PERSON|RAIL|use fluffily | +26664|861349|36384|6|39|51101.70|0.09|0.04|A|F|1993-04-03|1993-02-12|1993-05-02|TAKE BACK RETURN|AIR|ending requests. furio| +26665|517998|30509|1|43|86686.71|0.04|0.07|R|F|1994-01-04|1993-12-06|1994-01-10|COLLECT COD|REG AIR|t carefully about the neve| +26666|335294|10307|1|7|9304.96|0.08|0.03|N|O|1997-02-23|1997-03-27|1997-03-25|TAKE BACK RETURN|MAIL|ully silent dependencies are carefully bl| +26666|283622|33623|2|2|3211.22|0.05|0.04|N|O|1997-04-16|1997-03-12|1997-05-06|DELIVER IN PERSON|AIR|e unusual instructions| +26666|818230|30747|3|32|36742.08|0.05|0.02|N|O|1997-05-13|1997-03-11|1997-05-29|NONE|MAIL|ggle bold instructions| +26666|984907|47427|4|10|19918.60|0.06|0.04|N|O|1997-02-09|1997-04-02|1997-02-25|DELIVER IN PERSON|AIR|l packages use carefully. blithe| +26667|486854|49364|1|30|55224.90|0.04|0.08|N|O|1998-01-21|1997-12-18|1998-02-19|TAKE BACK RETURN|MAIL|iet accounts sleep c| +26667|553343|15855|2|16|22341.12|0.00|0.00|N|O|1998-01-15|1997-12-14|1998-02-03|DELIVER IN PERSON|RAIL|g the special depo| +26667|34121|21622|3|11|11606.32|0.08|0.05|N|O|1997-10-17|1997-11-22|1997-10-31|NONE|RAIL|ndencies haggle fluffily instru| +26667|468622|18623|4|17|27040.20|0.07|0.04|N|O|1997-10-12|1997-12-25|1997-11-05|DELIVER IN PERSON|AIR|kages cajole; carefully bold requests| +26668|875718|753|1|12|20324.04|0.02|0.05|A|F|1995-06-11|1995-05-10|1995-06-17|COLLECT COD|FOB|e fluffily. quick requests engage furio| +26668|179964|4971|2|47|96066.12|0.10|0.05|A|F|1995-04-21|1995-03-16|1995-05-10|NONE|FOB|blithely ac| +26668|645173|7686|3|34|38016.76|0.04|0.01|R|F|1995-02-26|1995-04-09|1995-03-01|DELIVER IN PERSON|FOB|gular accounts. car| +26668|413932|13933|4|16|29534.56|0.01|0.06|R|F|1995-02-25|1995-03-20|1995-03-06|DELIVER IN PERSON|TRUCK| theodolites nag. instructions wake ag| +26668|949521|49522|5|12|18845.76|0.02|0.00|R|F|1995-06-02|1995-05-06|1995-06-12|NONE|MAIL|kages. finally final id| +26669|863520|38555|1|35|51921.80|0.01|0.06|N|O|1995-06-18|1995-07-12|1995-07-08|COLLECT COD|TRUCK|ncies snooze carefully. furiously even soma| +26669|167399|17400|2|46|67453.94|0.06|0.01|N|O|1995-08-22|1995-07-03|1995-09-18|DELIVER IN PERSON|SHIP|final foxes alongside of the r| +26669|473295|48314|3|34|43121.18|0.08|0.08|N|O|1995-09-10|1995-07-26|1995-09-15|TAKE BACK RETURN|REG AIR|ever special packag| +26669|660474|22988|4|23|32992.12|0.02|0.05|N|O|1995-06-30|1995-07-28|1995-07-28|DELIVER IN PERSON|MAIL|ould use blithely. furiously regular instr| +26669|585522|10545|5|48|77160.00|0.06|0.06|N|O|1995-06-26|1995-07-03|1995-07-12|NONE|SHIP|fily around the accounts. blithely silen| +26670|202097|2098|1|17|16984.36|0.09|0.07|A|F|1993-07-15|1993-08-02|1993-08-14|TAKE BACK RETURN|REG AIR|ructions are.| +26670|628239|40752|2|26|30347.20|0.01|0.04|A|F|1993-08-09|1993-08-06|1993-08-25|DELIVER IN PERSON|AIR| the quick| +26670|796282|21313|3|40|55130.00|0.04|0.03|A|F|1993-07-26|1993-08-16|1993-08-07|DELIVER IN PERSON|AIR| regular acco| +26671|136758|49261|1|5|8973.75|0.10|0.01|N|O|1997-11-17|1998-02-02|1997-11-24|TAKE BACK RETURN|AIR|s. slyly sly accounts abo| +26671|484775|34776|2|12|21117.00|0.03|0.06|N|O|1998-02-11|1997-12-15|1998-03-01|COLLECT COD|REG AIR|sly instructions. final,| +26671|613347|13348|3|22|27726.82|0.10|0.03|N|O|1998-02-16|1998-01-05|1998-03-05|DELIVER IN PERSON|TRUCK|xcuses use fluffily pending pac| +26696|199809|37319|1|48|91622.40|0.03|0.00|N|O|1998-03-24|1998-05-23|1998-04-22|DELIVER IN PERSON|SHIP|tes are alongside of the | +26696|173358|23359|2|10|14313.50|0.07|0.07|N|O|1998-06-17|1998-04-12|1998-07-12|COLLECT COD|FOB|lar requests accordi| +26696|611165|36190|3|19|20446.47|0.06|0.02|N|O|1998-04-24|1998-04-12|1998-05-22|DELIVER IN PERSON|SHIP|ts! ironic, final sa| +26696|846734|46735|4|8|13445.52|0.00|0.03|N|O|1998-03-31|1998-04-18|1998-04-07|DELIVER IN PERSON|SHIP| furiously. | +26696|57451|44955|5|32|45070.40|0.08|0.05|N|O|1998-04-15|1998-05-03|1998-04-26|TAKE BACK RETURN|FOB|lphins use| +26696|575788|25789|6|2|3727.52|0.06|0.01|N|O|1998-04-17|1998-05-13|1998-05-06|DELIVER IN PERSON|TRUCK| ironic courts. express court| +26697|320899|33406|1|47|90234.36|0.03|0.06|N|O|1996-02-05|1996-02-08|1996-03-05|COLLECT COD|REG AIR|fully even accounts. pending, u| +26697|340714|15727|2|1|1754.70|0.07|0.06|N|O|1996-01-21|1996-02-10|1996-02-14|NONE|SHIP|ts. carefully bold deposits boost abou| +26697|364676|39691|3|39|67885.74|0.09|0.04|N|O|1996-01-22|1996-02-17|1996-01-27|TAKE BACK RETURN|AIR| are carefully above the final pinto bean| +26697|108371|33376|4|46|63451.02|0.06|0.07|N|O|1996-01-31|1996-02-15|1996-02-11|NONE|REG AIR|t accounts. slyly ironic pinto | +26698|65588|40591|1|21|32625.18|0.08|0.01|R|F|1992-07-21|1992-08-23|1992-07-23|NONE|SHIP|kages-- bold,| +26698|322643|10162|2|45|74953.35|0.05|0.05|A|F|1992-07-30|1992-07-14|1992-08-21|COLLECT COD|RAIL| above the carefully even dep| +26698|651813|14327|3|4|7059.12|0.05|0.08|R|F|1992-08-31|1992-06-27|1992-09-11|TAKE BACK RETURN|FOB|regular accounts. special, unusual foxes| +26699|150429|12933|1|9|13314.78|0.01|0.05|N|O|1996-01-03|1995-11-20|1996-01-24|COLLECT COD|TRUCK|ckages wake b| +26699|244985|7490|2|18|34739.46|0.03|0.05|N|O|1995-12-01|1995-11-13|1995-12-25|NONE|REG AIR|the carefully regular deposits. e| +26699|452046|39574|3|45|44910.90|0.07|0.03|N|O|1995-10-18|1995-12-06|1995-11-04|COLLECT COD|FOB|y according to the carefully fluffy | +26699|530653|43164|4|36|60610.68|0.05|0.08|N|O|1995-12-12|1995-12-21|1996-01-04|DELIVER IN PERSON|SHIP|sual accounts.| +26699|668249|5789|5|44|53557.24|0.07|0.00|N|O|1996-01-20|1995-12-29|1996-02-14|DELIVER IN PERSON|MAIL|e quickly regularly express accounts. i| +26699|246663|21672|6|26|41850.90|0.03|0.05|N|O|1995-12-21|1995-11-13|1996-01-03|TAKE BACK RETURN|TRUCK|ons promise fluffily furiously final | +26700|936494|11531|1|48|73461.60|0.02|0.08|R|F|1995-02-23|1994-12-30|1995-03-09|TAKE BACK RETURN|TRUCK|symptotes haggle even warho| +26700|650757|38297|2|16|27323.52|0.10|0.02|A|F|1995-01-30|1995-02-24|1995-01-31|DELIVER IN PERSON|SHIP| packages. blithe, pending dep| +26700|263628|26134|3|5|7958.05|0.03|0.06|A|F|1995-03-14|1995-01-04|1995-03-24|DELIVER IN PERSON|TRUCK|final asymptotes cajole along the qu| +26700|784520|34521|4|49|78620.01|0.08|0.02|A|F|1995-03-13|1995-02-06|1995-03-23|DELIVER IN PERSON|REG AIR|ts. final, unus| +26700|411716|49241|5|34|55341.46|0.07|0.06|A|F|1995-03-17|1995-01-02|1995-03-29|TAKE BACK RETURN|REG AIR|es sleep blithely alo| +26701|338355|13368|1|6|8360.04|0.06|0.01|N|O|1998-05-17|1998-06-07|1998-05-24|DELIVER IN PERSON|REG AIR|y packages. slyly silent reques| +26701|718426|18427|2|3|4333.17|0.05|0.06|N|O|1998-05-16|1998-06-11|1998-05-25|TAKE BACK RETURN|RAIL|t packages sleep ac| +26701|583454|20988|3|13|19986.59|0.02|0.04|N|O|1998-06-27|1998-06-09|1998-07-06|DELIVER IN PERSON|REG AIR|mptotes: bl| +26701|95109|20112|4|42|46372.20|0.10|0.06|N|O|1998-05-15|1998-06-24|1998-06-07|NONE|MAIL|y pending attainments nag under the spec| +26701|492352|17371|5|46|61839.18|0.08|0.08|N|O|1998-07-05|1998-06-24|1998-07-07|NONE|MAIL|d pinto beans do cajole sly| +26701|957376|19896|6|43|61633.19|0.10|0.00|N|O|1998-07-21|1998-06-06|1998-07-24|NONE|TRUCK|ely even dependencies are beside the p| +26702|140081|2584|1|40|44843.20|0.09|0.05|N|O|1997-07-31|1997-08-31|1997-08-15|COLLECT COD|SHIP|ruthless depos| +26702|326225|26226|2|48|60058.08|0.08|0.06|N|O|1997-10-15|1997-09-19|1997-11-12|DELIVER IN PERSON|AIR|, regular package| +26702|861723|49275|3|19|32008.92|0.03|0.04|N|O|1997-07-13|1997-08-08|1997-08-04|NONE|RAIL|accounts are furiously. blithely | +26702|964431|1989|4|19|28412.41|0.02|0.07|N|O|1997-10-26|1997-08-30|1997-11-25|COLLECT COD|SHIP|inal accounts.| +26703|371239|46254|1|2|2620.44|0.01|0.03|N|O|1996-08-02|1996-07-26|1996-08-09|DELIVER IN PERSON|TRUCK|lithely. final, even requests are fluff| +26703|403937|28954|2|9|16568.19|0.08|0.08|N|O|1996-09-10|1996-08-04|1996-09-17|COLLECT COD|REG AIR|st the regular| +26703|959369|34408|3|33|47134.56|0.05|0.02|N|O|1996-07-08|1996-08-23|1996-07-23|DELIVER IN PERSON|TRUCK|g to the furiously ironic| +26728|677825|2852|1|38|68506.02|0.00|0.00|N|O|1997-01-02|1997-01-20|1997-01-28|NONE|AIR|regular packages. ironic, pen| +26728|191760|16767|2|41|75922.16|0.03|0.03|N|O|1997-02-11|1996-12-30|1997-02-22|NONE|RAIL|. furiously final foxes along the ca| +26728|902430|39985|3|37|52998.43|0.10|0.08|N|O|1996-12-09|1996-12-15|1996-12-15|COLLECT COD|SHIP|above the regular | +26728|138588|26095|4|38|61810.04|0.08|0.00|N|O|1997-01-07|1997-01-26|1997-01-24|DELIVER IN PERSON|SHIP|above the careful deposits nag fur| +26728|235942|23455|5|39|73239.27|0.07|0.00|N|O|1997-01-02|1996-12-27|1997-01-25|COLLECT COD|FOB|ffix across the furiously unus| +26728|470537|8065|6|33|49747.83|0.08|0.02|N|O|1997-01-06|1996-12-29|1997-01-08|TAKE BACK RETURN|REG AIR|ing to the slyly dogged packages. sometim| +26729|775297|12843|1|21|28817.46|0.07|0.00|R|F|1994-09-18|1994-12-04|1994-09-21|NONE|AIR|intain among the even, ironic packages. ir| +26729|409471|34488|2|39|53837.55|0.07|0.04|R|F|1994-12-15|1994-11-13|1994-12-20|NONE|MAIL|uriously express dolphins nag quickly. slyl| +26729|968685|31205|3|35|61377.40|0.00|0.05|R|F|1994-11-13|1994-11-29|1994-12-11|TAKE BACK RETURN|FOB|rding to the furiously ironic de| +26729|682678|32679|4|9|14945.76|0.02|0.06|R|F|1994-11-19|1994-11-24|1994-11-22|NONE|SHIP|kly. furiously unusual asympto| +26729|768394|5940|5|45|65806.20|0.08|0.00|A|F|1994-12-24|1994-10-18|1994-12-27|DELIVER IN PERSON|REG AIR|nts sleep. furiously ironic requests sle| +26729|387272|12287|6|5|6796.30|0.02|0.08|A|F|1995-01-05|1994-10-16|1995-01-20|NONE|SHIP|iously regular requests| +26730|449270|36795|1|3|3657.75|0.02|0.00|N|O|1996-03-27|1996-04-06|1996-04-24|NONE|TRUCK|ly regular| +26730|880092|5127|2|16|17152.80|0.02|0.07|N|O|1996-01-24|1996-02-26|1996-02-05|COLLECT COD|MAIL| accounts. thin, even theodolit| +26730|689842|2356|3|44|80599.64|0.09|0.01|N|O|1996-02-01|1996-04-05|1996-02-04|DELIVER IN PERSON|REG AIR|lly ironic | +26730|158709|21213|4|35|61869.50|0.07|0.07|N|O|1996-03-05|1996-04-05|1996-03-25|TAKE BACK RETURN|SHIP|uctions ma| +26730|407128|7129|5|26|26912.60|0.10|0.01|N|O|1996-01-17|1996-02-11|1996-01-29|DELIVER IN PERSON|RAIL|theodolites about the fina| +26731|890204|40205|1|9|10747.44|0.06|0.02|R|F|1994-02-05|1994-01-02|1994-02-26|COLLECT COD|FOB|ounts haggle about the ca| +26731|655330|5331|2|14|17994.20|0.08|0.02|R|F|1994-01-06|1994-02-05|1994-01-30|COLLECT COD|MAIL| shall boost caref| +26731|118410|5917|3|49|69992.09|0.09|0.03|A|F|1994-01-20|1994-01-01|1994-02-01|NONE|SHIP|yly final requests sleep blithely agai| +26732|949954|37509|1|2|4007.82|0.03|0.04|A|F|1992-09-18|1992-08-23|1992-10-03|COLLECT COD|AIR|are furiously carefully bold | +26732|861716|24234|2|32|53685.44|0.02|0.05|A|F|1992-07-29|1992-07-16|1992-08-04|DELIVER IN PERSON|REG AIR|ges. unusual p| +26732|846941|21974|3|28|52861.20|0.10|0.00|A|F|1992-06-17|1992-08-18|1992-06-21|COLLECT COD|REG AIR|riously special | +26733|388632|1140|1|39|67104.18|0.03|0.07|R|F|1992-11-10|1992-11-09|1992-11-11|DELIVER IN PERSON|FOB|ze fluffily-- caref| +26733|725591|25592|2|17|27481.52|0.03|0.06|R|F|1992-11-21|1992-12-11|1992-12-10|DELIVER IN PERSON|REG AIR|instructions. pin| +26733|995166|32724|3|45|56750.40|0.06|0.02|A|F|1992-10-18|1992-11-25|1992-11-08|DELIVER IN PERSON|TRUCK|ests sleep quickly across the express | +26734|739984|27527|1|6|12143.70|0.09|0.04|N|O|1998-03-19|1998-02-07|1998-03-21|DELIVER IN PERSON|FOB|-- silent sauternes use slyly. platelets | +26734|905907|30944|2|38|72688.68|0.01|0.00|N|O|1998-04-29|1998-03-10|1998-05-06|COLLECT COD|AIR|, special requests haggl| +26735|973801|11359|1|33|61867.08|0.05|0.00|A|F|1994-03-27|1994-01-04|1994-04-02|DELIVER IN PERSON|AIR| haggle slyly alongside of the regu| +26735|669237|19238|2|44|53072.80|0.05|0.04|R|F|1994-01-08|1994-02-16|1994-01-21|TAKE BACK RETURN|AIR|! pinto beans wake. slyly final deposits bo| +26735|850720|25755|3|7|11694.76|0.01|0.01|R|F|1994-02-27|1994-01-17|1994-03-04|COLLECT COD|FOB|print according to| +26760|303151|28164|1|47|54244.58|0.07|0.00|R|F|1993-03-21|1993-05-06|1993-04-05|NONE|RAIL|rays promis| +26760|58380|45884|2|19|25429.22|0.08|0.08|A|F|1993-03-04|1993-04-11|1993-03-27|COLLECT COD|AIR| instructions mold quickly theodolites. qui| +26761|118050|5557|1|25|26701.25|0.07|0.02|A|F|1994-07-12|1994-08-07|1994-07-15|COLLECT COD|SHIP|ges. slyly un| +26762|313965|26472|1|46|91031.70|0.04|0.07|N|O|1997-06-14|1997-06-14|1997-06-19|COLLECT COD|RAIL|lyly even foxes. slyly regular instructions| +26762|802045|27078|2|25|23675.00|0.09|0.07|N|O|1997-08-11|1997-06-12|1997-08-19|DELIVER IN PERSON|SHIP|ely special excuses are slyly. furiou| +26763|502177|39708|1|31|36553.65|0.03|0.00|A|F|1993-02-23|1993-02-15|1993-02-26|DELIVER IN PERSON|MAIL|ronic requests! bold, re| +26763|73145|48148|2|34|38016.76|0.01|0.08|R|F|1993-01-29|1993-03-22|1993-02-07|NONE|FOB|ular packa| +26763|331256|31257|3|44|56638.56|0.01|0.04|A|F|1993-04-27|1993-04-01|1993-05-10|TAKE BACK RETURN|FOB|accounts should have to boos| +26763|418372|30881|4|33|42581.55|0.07|0.05|A|F|1993-01-23|1993-03-31|1993-02-22|NONE|AIR|ch carefully among t| +26764|620038|7575|1|22|21076.00|0.07|0.03|A|F|1994-01-22|1993-12-24|1994-01-25|DELIVER IN PERSON|TRUCK|onic asymptotes. quickly regular pinto bean| +26764|966430|28950|2|4|5985.56|0.00|0.02|A|F|1994-01-28|1994-01-03|1994-02-12|TAKE BACK RETURN|TRUCK|quickly final pinto beans cajole care| +26764|777686|40202|3|37|65255.05|0.03|0.02|R|F|1993-11-13|1993-11-28|1993-11-25|DELIVER IN PERSON|RAIL|onic pearls of the blithel| +26765|771541|34057|1|12|19350.12|0.07|0.02|R|F|1993-05-22|1993-06-25|1993-06-05|TAKE BACK RETURN|AIR|egular decoys try to cajole fu| +26765|275762|25763|2|11|19115.25|0.02|0.06|R|F|1993-05-20|1993-06-27|1993-06-18|DELIVER IN PERSON|AIR|ndle carefully a| +26765|728519|41034|3|35|54161.80|0.03|0.03|A|F|1993-04-10|1993-05-25|1993-04-22|TAKE BACK RETURN|AIR|equests cajole alongside of the unusual pa| +26765|203227|15732|4|21|23734.41|0.02|0.04|R|F|1993-05-22|1993-06-18|1993-06-05|DELIVER IN PERSON|TRUCK|special packages. carefully special packag| +26766|221459|8972|1|35|48315.40|0.09|0.03|N|O|1995-06-25|1995-06-02|1995-06-29|TAKE BACK RETURN|MAIL|eposits use.| +26766|55246|17748|2|45|54055.80|0.02|0.03|N|O|1995-06-18|1995-07-13|1995-07-01|TAKE BACK RETURN|AIR|ns. furiously quick | +26767|796434|33980|1|10|15304.00|0.04|0.07|N|O|1995-10-21|1995-09-25|1995-11-08|DELIVER IN PERSON|SHIP|final deposits haggle slyly quietl| +26767|658522|33549|2|32|47375.68|0.01|0.00|N|O|1995-09-11|1995-10-24|1995-09-15|DELIVER IN PERSON|REG AIR|uses among| +26767|777015|27016|3|35|38219.30|0.10|0.01|N|O|1995-10-13|1995-10-29|1995-10-27|COLLECT COD|AIR|hely silent asymptotes. quietly| +26767|277214|27215|4|24|28588.80|0.03|0.03|N|O|1995-10-17|1995-09-11|1995-11-06|DELIVER IN PERSON|AIR|y through the blithe| +26767|125620|625|5|25|41140.50|0.00|0.07|N|O|1995-12-05|1995-09-25|1996-01-02|COLLECT COD|FOB|r the dogge| +26767|292517|17528|6|36|54342.00|0.08|0.06|N|O|1995-09-02|1995-09-26|1995-09-16|NONE|TRUCK|lly even excuses acc| +26767|328947|41454|7|35|69157.55|0.00|0.06|N|O|1995-09-27|1995-10-08|1995-10-07|DELIVER IN PERSON|FOB|pecial foxes use ac| +26792|596113|33647|1|25|30227.25|0.07|0.06|A|F|1992-12-14|1992-11-04|1992-12-17|COLLECT COD|SHIP| unusual excuses affix alongside of the c| +26793|827073|39590|1|22|22000.66|0.10|0.04|N|O|1995-12-04|1996-01-12|1995-12-16|DELIVER IN PERSON|TRUCK|g the carefully ironic | +26793|609741|34766|2|13|21459.23|0.08|0.07|N|O|1995-12-21|1996-01-04|1996-01-05|COLLECT COD|SHIP| the quickly regular fo| +26794|809902|22419|1|46|83345.56|0.08|0.05|N|O|1995-09-13|1995-07-29|1995-10-03|COLLECT COD|REG AIR|phins are. slyly re| +26794|19967|44968|2|30|56608.80|0.10|0.04|N|O|1995-07-31|1995-08-14|1995-08-25|TAKE BACK RETURN|MAIL|unts nag carefully. even requests ag| +26794|568919|6453|3|29|57648.81|0.06|0.00|N|F|1995-06-10|1995-08-29|1995-06-28|NONE|RAIL|ts doze regularly re| +26794|807030|44579|4|29|27172.71|0.00|0.01|N|O|1995-07-24|1995-07-23|1995-08-10|TAKE BACK RETURN|MAIL|nic warthogs. final deposits sleep. sl| +26794|740582|40583|5|40|64902.00|0.09|0.03|N|O|1995-07-09|1995-08-30|1995-07-27|DELIVER IN PERSON|FOB|atelets. furiously ironic atta| +26794|946043|21080|6|6|6534.00|0.02|0.02|N|O|1995-09-24|1995-08-30|1995-10-21|NONE|REG AIR|ronic deposits boost furiously along the b| +26794|139420|1923|7|25|36485.50|0.05|0.07|N|O|1995-07-27|1995-07-09|1995-08-25|COLLECT COD|AIR| wake along the iron| +26795|220271|7784|1|37|44076.62|0.00|0.03|N|O|1997-01-12|1996-11-26|1997-02-05|COLLECT COD|AIR|ckages cajole fluffily furiously even requ| +26795|84223|9226|2|32|38631.04|0.10|0.08|N|O|1996-10-27|1996-12-07|1996-11-02|DELIVER IN PERSON|RAIL|xcuses-- carefu| +26795|521207|46228|3|25|30704.50|0.06|0.08|N|O|1996-11-09|1996-11-22|1996-11-13|COLLECT COD|MAIL|refully express requests. | +26795|921321|21322|4|41|55033.48|0.06|0.06|N|O|1996-12-12|1996-11-13|1996-12-29|COLLECT COD|REG AIR| stealthily ironic theodolites-- platelets | +26796|179518|29519|1|50|79875.50|0.05|0.00|A|F|1995-06-03|1995-07-01|1995-06-10|COLLECT COD|RAIL|n, bold deposits detect idly excu| +26796|149742|12245|2|7|12542.18|0.03|0.07|N|O|1995-08-01|1995-07-31|1995-08-09|TAKE BACK RETURN|REG AIR|le thinly along the regular, s| +26796|701161|38704|3|15|17431.95|0.08|0.01|N|O|1995-08-22|1995-07-09|1995-08-31|COLLECT COD|REG AIR|lly regular packages. carefully unusual the| +26796|398375|10883|4|6|8840.16|0.03|0.03|N|O|1995-07-04|1995-07-10|1995-07-15|NONE|MAIL|special platelets. slyly dog| +26796|480863|18391|5|4|7375.36|0.05|0.08|N|O|1995-07-15|1995-07-05|1995-07-21|DELIVER IN PERSON|TRUCK|nd the sil| +26796|851513|1514|6|20|29289.40|0.10|0.00|N|O|1995-07-24|1995-07-24|1995-08-03|TAKE BACK RETURN|RAIL|press pinto bean| +26797|832782|20331|1|12|20576.88|0.09|0.01|N|O|1996-06-27|1996-04-30|1996-07-12|DELIVER IN PERSON|TRUCK|sly ironic platelets might cajole f| +26798|399405|24420|1|39|58671.21|0.07|0.03|N|O|1996-04-24|1996-02-15|1996-05-17|TAKE BACK RETURN|MAIL|ideas about the regular reques| +26798|786476|11507|2|39|60935.16|0.02|0.00|N|O|1996-02-28|1996-03-10|1996-03-20|COLLECT COD|RAIL|s carefully special deposi| +26799|904748|4749|1|38|66602.60|0.10|0.08|N|O|1998-04-06|1998-03-19|1998-05-04|NONE|FOB|equests. regular packages in| +26799|85129|10132|2|39|43450.68|0.04|0.02|N|O|1998-02-02|1998-02-19|1998-03-03|NONE|TRUCK|lve. carefully ir| +26799|756448|6449|3|48|72211.68|0.10|0.08|N|O|1998-04-06|1998-03-18|1998-04-13|DELIVER IN PERSON|TRUCK|ole slyly | +26799|614299|1836|4|16|19412.16|0.01|0.08|N|O|1998-01-22|1998-02-02|1998-02-05|COLLECT COD|TRUCK|. furiously final ideas haggle flu| +26799|508636|46167|5|6|9867.66|0.07|0.06|N|O|1998-02-13|1998-03-24|1998-03-02|NONE|MAIL|le packages was. stealth| +26824|174379|11889|1|35|50867.95|0.07|0.00|R|F|1994-10-01|1994-10-05|1994-10-26|NONE|TRUCK| slyly bold ideas wake furious| +26824|787119|49635|2|47|56685.76|0.05|0.04|R|F|1994-11-20|1994-09-29|1994-12-03|COLLECT COD|REG AIR|cuses haggle furiously blithely ir| +26824|96576|46577|3|41|64475.37|0.04|0.07|R|F|1994-10-28|1994-10-08|1994-11-10|COLLECT COD|TRUCK|ckages thrash. pendi| +26824|143279|18284|4|6|7933.62|0.07|0.05|R|F|1994-09-02|1994-10-29|1994-09-07|COLLECT COD|RAIL|ily unusual pinto beans. enticing packages| +26824|80210|5213|5|28|33325.88|0.10|0.05|R|F|1994-09-16|1994-10-18|1994-10-03|COLLECT COD|TRUCK|sly bold platelets. regular, pen| +26825|678618|16158|1|36|57476.88|0.08|0.00|A|F|1993-11-24|1993-10-15|1993-11-26|COLLECT COD|REG AIR|as. blithe| +26825|522798|10329|2|8|14566.16|0.06|0.06|A|F|1993-09-17|1993-11-01|1993-10-05|TAKE BACK RETURN|FOB|es. even, final request| +26825|662326|49866|3|11|14171.19|0.08|0.01|R|F|1993-11-23|1993-10-15|1993-11-28|COLLECT COD|RAIL|latelets might | +26825|708543|21058|4|28|43442.28|0.05|0.03|A|F|1993-09-16|1993-11-07|1993-10-01|DELIVER IN PERSON|TRUCK|s solve. dependenci| +26825|479504|17032|5|24|35603.52|0.09|0.06|A|F|1993-11-16|1993-09-30|1993-11-26|COLLECT COD|SHIP|. ideas cajole. quickly regular ideas sle| +26825|11616|36617|6|2|3055.22|0.01|0.07|A|F|1993-10-11|1993-09-23|1993-10-24|DELIVER IN PERSON|SHIP|al instructi| +26825|219265|19266|7|32|37896.00|0.09|0.07|A|F|1993-10-14|1993-09-16|1993-11-05|TAKE BACK RETURN|AIR| among the slyly regular pa| +26826|175281|37785|1|24|32550.72|0.09|0.04|N|O|1998-08-10|1998-06-18|1998-08-20|COLLECT COD|RAIL|s. evenly ironic platelets haggle| +26826|946084|8603|2|32|36161.28|0.07|0.08|N|O|1998-07-05|1998-08-06|1998-08-01|TAKE BACK RETURN|TRUCK|ding ideas nag br| +26827|819165|6714|1|13|14093.56|0.05|0.02|N|O|1996-10-07|1996-09-27|1996-11-03|TAKE BACK RETURN|REG AIR|excuses. blithely ironic account| +26827|702683|40226|2|35|58997.75|0.08|0.03|N|O|1996-09-21|1996-10-15|1996-09-27|TAKE BACK RETURN|AIR|. carefully ironic theodolit| +26827|984459|9498|3|5|7717.05|0.07|0.05|N|O|1996-10-15|1996-10-17|1996-10-28|DELIVER IN PERSON|MAIL|y even requests nag carefully b| +26828|207311|32320|1|2|2436.60|0.09|0.01|N|O|1997-08-05|1997-08-20|1997-09-03|TAKE BACK RETURN|TRUCK|furiously. pending deposits | +26829|160466|22970|1|30|45793.80|0.04|0.00|A|F|1995-01-16|1995-02-19|1995-02-07|TAKE BACK RETURN|MAIL|cing foxes. fluffily express d| +26829|950208|12728|2|38|47810.08|0.09|0.00|A|F|1995-04-21|1995-02-27|1995-04-24|DELIVER IN PERSON|RAIL|nto beans about the packages print fl| +26829|144798|32305|3|46|84768.34|0.04|0.00|R|F|1994-12-31|1995-02-20|1995-01-16|COLLECT COD|REG AIR| the slyly ironic package| +26829|611494|49031|4|19|26703.74|0.05|0.05|R|F|1995-02-13|1995-02-22|1995-02-17|NONE|RAIL|osits. carefully unusual requests d| +26829|370641|33149|5|12|20539.56|0.07|0.08|R|F|1995-02-25|1995-03-11|1995-03-18|TAKE BACK RETURN|RAIL| bold foxes eat | +26830|730658|5687|1|18|30395.16|0.02|0.01|N|O|1996-09-13|1996-08-30|1996-09-19|DELIVER IN PERSON|FOB|ttainments affix bold inst| +26831|787457|49973|1|18|27799.56|0.08|0.03|N|O|1995-12-02|1995-11-09|1995-12-26|NONE|FOB|l foxes. carefully | +26831|776908|26909|2|39|77409.93|0.04|0.04|N|O|1996-01-05|1995-11-26|1996-01-20|COLLECT COD|FOB|ithely express theodolites shall ha| +26831|480686|30687|3|28|46666.48|0.08|0.01|N|O|1996-01-11|1995-11-26|1996-01-17|NONE|RAIL|indle carefully along t| +26831|889428|26980|4|7|9921.66|0.09|0.02|N|O|1995-11-14|1995-10-16|1995-11-22|NONE|RAIL|ously even instru| +26831|602018|14531|5|1|919.98|0.10|0.03|N|O|1995-10-01|1995-11-10|1995-10-18|TAKE BACK RETURN|REG AIR|ic excuses. carefully regula| +26856|222979|47988|1|4|7607.84|0.07|0.06|N|O|1996-04-27|1996-04-24|1996-05-10|TAKE BACK RETURN|SHIP|xpress depths| +26856|600641|38178|2|46|70914.06|0.10|0.01|N|O|1996-05-01|1996-03-28|1996-05-06|DELIVER IN PERSON|FOB|s nag slyly final packages. warthogs hag| +26856|964121|39160|3|43|50958.44|0.01|0.01|N|O|1996-03-01|1996-04-20|1996-03-10|DELIVER IN PERSON|RAIL|fully ironic deposits a| +26856|975220|25221|4|33|42740.94|0.02|0.05|N|O|1996-03-08|1996-03-16|1996-03-29|COLLECT COD|RAIL|round the furiously even foxes are among| +26856|518446|5977|5|14|20501.88|0.09|0.05|N|O|1996-03-09|1996-04-02|1996-03-13|DELIVER IN PERSON|RAIL|s snooze blithely final, fina| +26856|505614|18125|6|2|3239.18|0.07|0.06|N|O|1996-03-22|1996-04-23|1996-03-29|NONE|TRUCK| packages. even accounts cajole q| +26856|837698|25247|7|46|75239.90|0.06|0.06|N|O|1996-04-20|1996-04-06|1996-05-05|COLLECT COD|TRUCK|. quickly regu| +26857|176472|38976|1|35|54196.45|0.01|0.07|N|O|1996-02-10|1996-01-13|1996-03-05|DELIVER IN PERSON|FOB|nusual platelets| +26857|956216|6217|2|10|12721.70|0.05|0.08|N|O|1996-02-20|1996-01-23|1996-03-20|TAKE BACK RETURN|TRUCK|xpress deposits. slyly b| +26857|114408|1915|3|48|68275.20|0.02|0.05|N|O|1995-12-11|1996-02-02|1996-01-10|TAKE BACK RETURN|FOB| regular theodol| +26857|844651|7168|4|50|79780.50|0.02|0.07|N|O|1996-03-20|1996-01-07|1996-03-28|DELIVER IN PERSON|SHIP|in slyly ac| +26857|42580|5081|5|2|3045.16|0.00|0.07|N|O|1996-03-09|1996-02-24|1996-03-19|NONE|RAIL|e around the blithe| +26857|641609|41610|6|40|62022.80|0.10|0.07|N|O|1995-12-12|1996-01-19|1995-12-24|TAKE BACK RETURN|MAIL|ely even packages wake careful| +26857|514103|26614|7|11|12287.88|0.01|0.02|N|O|1996-03-25|1996-02-15|1996-04-18|NONE|TRUCK|ideas. pending asymptotes into the expre| +26858|518029|5560|1|28|29316.00|0.07|0.07|A|F|1993-03-29|1993-03-17|1993-04-20|DELIVER IN PERSON|SHIP|the unusual packages kindle slyly pinto | +26858|498454|35982|2|2|2904.86|0.00|0.08|R|F|1993-04-28|1993-03-28|1993-05-28|COLLECT COD|MAIL|l deposits play along the final, final dep| +26859|727479|15022|1|13|19583.72|0.01|0.08|N|O|1997-12-29|1997-11-23|1998-01-13|DELIVER IN PERSON|FOB|regular instructions sleep blithe| +26859|731249|6278|2|11|14082.31|0.04|0.07|N|O|1998-01-27|1998-01-07|1998-02-03|NONE|SHIP|fluffily bold theodolites cajol| +26859|100954|13457|3|5|9774.75|0.07|0.03|N|O|1997-11-11|1997-12-07|1997-11-13|COLLECT COD|AIR|iously. furiously even courts cajole | +26859|731585|6614|4|39|63045.45|0.06|0.00|N|O|1998-01-29|1997-12-26|1998-02-28|TAKE BACK RETURN|TRUCK|ously according to the si| +26859|733921|8950|5|33|64511.37|0.10|0.08|N|O|1997-12-30|1998-01-12|1998-01-03|DELIVER IN PERSON|AIR|ross the ironic dependencies are unu| +26860|765549|40580|1|30|48435.30|0.05|0.01|R|F|1992-07-18|1992-07-29|1992-07-28|COLLECT COD|AIR|inal dinos. furiously fi| +26861|268868|43879|1|48|88168.80|0.07|0.04|N|F|1995-06-17|1995-08-13|1995-07-15|TAKE BACK RETURN|AIR|ilent excuses sleep against | +26861|850059|37611|2|43|43387.43|0.03|0.02|N|O|1995-07-27|1995-07-25|1995-07-28|TAKE BACK RETURN|MAIL|xpress asymptotes. fluffily | +26862|34525|22026|1|4|5838.08|0.02|0.02|N|O|1996-12-12|1997-01-25|1997-01-09|DELIVER IN PERSON|RAIL|ptotes integrate idly. fina| +26862|260440|10441|2|16|22406.88|0.08|0.06|N|O|1997-01-04|1997-02-28|1997-01-31|DELIVER IN PERSON|MAIL|final deposits would sleep about t| +26863|527659|15190|1|18|30359.34|0.05|0.08|N|O|1998-09-14|1998-07-19|1998-10-04|COLLECT COD|SHIP|al excuses above the furiously| +26863|361607|24115|2|44|73417.96|0.07|0.00|N|O|1998-08-31|1998-07-10|1998-09-25|COLLECT COD|FOB|ithely pending platelets u| +26863|522063|34574|3|28|30381.12|0.08|0.01|N|O|1998-06-13|1998-07-02|1998-06-20|NONE|RAIL|he fluffily unusual theodolites. | +26888|565676|15677|1|7|12191.55|0.00|0.07|A|F|1992-12-27|1993-02-24|1993-01-13|COLLECT COD|RAIL|pending deposits. b| +26888|308906|46425|2|15|28723.35|0.09|0.05|R|F|1993-02-04|1993-02-26|1993-02-10|DELIVER IN PERSON|MAIL|ons hang quickly about the sp| +26889|134748|34749|1|45|80223.30|0.02|0.06|R|F|1994-06-09|1994-05-03|1994-06-20|DELIVER IN PERSON|REG AIR|ly regular requ| +26889|709609|34638|2|43|69598.51|0.03|0.03|A|F|1994-05-19|1994-03-26|1994-05-26|COLLECT COD|AIR|s sleep furiously among t| +26889|396348|21363|3|15|21664.95|0.10|0.04|R|F|1994-05-25|1994-04-07|1994-06-11|TAKE BACK RETURN|TRUCK|tithes. pearls after the bold re| +26890|335858|48365|1|23|43558.32|0.08|0.01|N|O|1998-01-31|1998-02-02|1998-02-28|DELIVER IN PERSON|SHIP|ts. ironic, | +26891|303591|16098|1|17|27107.86|0.07|0.07|R|F|1993-07-13|1993-08-31|1993-08-07|DELIVER IN PERSON|MAIL|ss asymptotes integrate| +26891|446981|34506|2|8|15423.68|0.09|0.08|R|F|1993-10-07|1993-09-21|1993-11-06|COLLECT COD|AIR|express pinto beans. blit| +26891|398327|35849|3|31|44184.61|0.09|0.08|R|F|1993-09-16|1993-08-23|1993-09-21|COLLECT COD|AIR|sleep carefully idly final| +26891|672422|34936|4|31|43226.09|0.05|0.07|A|F|1993-08-27|1993-09-22|1993-09-19|TAKE BACK RETURN|FOB|ests sublate furiously pending p| +26891|392611|5119|5|6|10221.60|0.07|0.04|A|F|1993-09-12|1993-09-10|1993-10-02|NONE|SHIP|e evenly even accounts. fi| +26891|603419|28444|6|5|6611.90|0.00|0.01|R|F|1993-08-20|1993-09-02|1993-08-30|NONE|MAIL|even asymptotes across the slyly fi| +26891|650104|25131|7|10|10540.70|0.05|0.05|A|F|1993-09-25|1993-08-17|1993-10-15|DELIVER IN PERSON|MAIL|ing, regular requests. blithely even p| +26892|293656|43657|1|30|49489.20|0.06|0.02|R|F|1992-04-17|1992-06-15|1992-04-19|TAKE BACK RETURN|RAIL|blithely slyly regular instructions| +26892|476088|38598|2|31|32985.86|0.03|0.06|A|F|1992-05-10|1992-06-08|1992-06-03|NONE|FOB| deposits. fluffily ironic packages n| +26892|610965|48502|3|19|35642.67|0.08|0.06|A|F|1992-04-02|1992-05-01|1992-04-12|COLLECT COD|AIR|ly. depths sleep regular packages. bl| +26892|486585|49095|4|35|55004.60|0.07|0.00|R|F|1992-04-19|1992-06-01|1992-05-07|COLLECT COD|REG AIR|y express, pend| +26893|633490|46003|1|40|56938.40|0.02|0.04|R|F|1993-03-22|1993-02-15|1993-03-23|TAKE BACK RETURN|TRUCK| requests against the final excuses| +26893|60533|10534|2|46|68702.38|0.09|0.02|R|F|1993-02-14|1993-02-05|1993-03-14|TAKE BACK RETURN|RAIL|ully quickly ironic pains. carefully fina| +26893|370285|7807|3|7|9486.89|0.07|0.07|R|F|1992-12-12|1993-01-22|1992-12-31|COLLECT COD|TRUCK|ven dependencies after the sl| +26893|367425|4947|4|14|20893.74|0.02|0.00|A|F|1993-02-26|1993-01-09|1993-03-09|NONE|MAIL|ndencies kindle?| +26894|398653|11161|1|27|47294.28|0.10|0.03|N|O|1996-05-05|1996-02-26|1996-05-30|TAKE BACK RETURN|TRUCK|furiously final foxes. carefully f| +26894|153839|41349|2|30|56784.90|0.07|0.01|N|O|1996-04-15|1996-02-26|1996-05-15|TAKE BACK RETURN|SHIP|bout the pending, pending foxes serve bl| +26894|565595|28107|3|8|13284.56|0.00|0.06|N|O|1996-01-15|1996-03-21|1996-01-19|COLLECT COD|TRUCK| fluffily bold sheaves cajole| +26894|947767|10286|4|26|47182.72|0.00|0.03|N|O|1996-03-19|1996-03-20|1996-04-10|TAKE BACK RETURN|AIR|ently. carefully even deposits a| +26894|112201|24704|5|10|12132.00|0.00|0.04|N|O|1996-04-25|1996-03-14|1996-05-21|COLLECT COD|MAIL|blithely express requests.| +26894|745861|20890|6|46|87714.18|0.09|0.03|N|O|1996-02-22|1996-02-10|1996-02-28|NONE|SHIP|ncies detect. slyly final courts are. slyly| +26894|673091|23092|7|41|43626.46|0.08|0.00|N|O|1996-04-06|1996-04-01|1996-05-03|TAKE BACK RETURN|RAIL|ously regular i| +26895|625180|205|1|41|45311.15|0.03|0.00|N|O|1997-01-13|1996-11-29|1997-02-06|DELIVER IN PERSON|SHIP|ests affix furiously. quickly sil| +26895|399255|36777|2|21|28439.04|0.02|0.03|N|O|1996-11-29|1996-12-02|1996-12-14|NONE|FOB|efully unusual idea| +26920|915912|40949|1|8|15422.96|0.08|0.00|R|F|1993-10-06|1993-09-18|1993-10-10|NONE|AIR|ead of the carefully pending package| +26920|720454|20455|2|40|58976.80|0.04|0.04|A|F|1993-08-20|1993-10-11|1993-08-26|NONE|AIR| the busily regular deposits| +26920|658111|45651|3|7|7483.56|0.09|0.03|A|F|1993-10-07|1993-09-24|1993-10-30|COLLECT COD|REG AIR|st the carefully regul| +26920|868647|43682|4|43|69470.80|0.09|0.03|R|F|1993-07-25|1993-09-17|1993-07-28|TAKE BACK RETURN|FOB|hs sleep fluffily final, sp| +26920|345469|20482|5|16|24231.20|0.01|0.03|R|F|1993-08-18|1993-09-23|1993-09-01|COLLECT COD|TRUCK|ites. slyly iro| +26921|557414|19926|1|47|69155.33|0.09|0.00|R|F|1995-02-09|1994-12-22|1995-02-24|NONE|SHIP|ess requests. carefully b| +26921|446505|46506|2|33|47898.84|0.00|0.00|A|F|1995-01-21|1995-01-09|1995-01-25|COLLECT COD|RAIL|blithely even deposits. s| +26921|395371|20386|3|15|21995.40|0.06|0.03|A|F|1994-12-06|1994-12-26|1995-01-02|COLLECT COD|AIR|y final theodolites among the furiously | +26921|997165|9685|4|3|3786.36|0.06|0.06|A|F|1994-11-16|1995-01-21|1994-11-24|NONE|TRUCK|ic, regular theodolites after th| +26921|347531|22544|5|40|63140.80|0.07|0.07|R|F|1994-10-31|1994-11-28|1994-11-14|NONE|FOB| even, special foxes cajole carefully af| +26921|948569|48570|6|12|19410.24|0.02|0.02|R|F|1994-12-12|1995-01-14|1994-12-27|DELIVER IN PERSON|MAIL|nts haggle around the blithely even| +26922|731207|6236|1|18|22287.06|0.04|0.03|A|F|1995-03-08|1995-02-16|1995-03-29|DELIVER IN PERSON|SHIP|sleep. fluffily pending theodo| +26922|392198|4706|2|24|30964.32|0.03|0.03|A|F|1995-01-01|1995-02-28|1995-01-22|DELIVER IN PERSON|AIR| deposits. car| +26922|669490|7030|3|9|13135.14|0.09|0.01|R|F|1995-01-30|1995-02-08|1995-02-23|COLLECT COD|MAIL|ly about the regular pinto b| +26922|115943|3450|4|42|82275.48|0.05|0.07|R|F|1995-01-03|1995-02-24|1995-01-23|COLLECT COD|AIR|s believe slyly furiously express r| +26922|646351|46352|5|6|7783.92|0.01|0.01|A|F|1995-02-19|1995-02-27|1995-03-21|DELIVER IN PERSON|AIR|al instruction| +26923|216273|41282|1|36|42813.36|0.02|0.06|N|O|1998-03-21|1998-03-25|1998-04-08|DELIVER IN PERSON|TRUCK|lent dependencies about the carefully final| +26923|899476|49477|2|49|72296.07|0.05|0.08|N|O|1998-04-18|1998-03-24|1998-05-05|COLLECT COD|MAIL|equests. bold reques| +26924|999729|49730|1|35|64003.80|0.07|0.00|N|O|1997-02-02|1997-02-19|1997-02-10|TAKE BACK RETURN|AIR|ts. final, exp| +26925|730593|30594|1|28|45459.68|0.00|0.08|N|O|1995-07-04|1995-06-16|1995-07-16|DELIVER IN PERSON|MAIL|posits after the packag| +26925|63410|13411|2|13|17854.33|0.04|0.03|N|O|1995-06-18|1995-06-03|1995-07-16|NONE|TRUCK| theodolites. silent| +26926|460381|22891|1|21|28168.56|0.04|0.02|N|O|1996-12-24|1996-12-20|1997-01-14|NONE|SHIP|furiously regular ideas. f| +26926|620307|32820|2|39|47863.53|0.06|0.00|N|O|1997-02-24|1996-12-21|1997-02-27|COLLECT COD|SHIP|efully pending instructions sleep carefully| +26926|483137|33138|3|10|11201.10|0.05|0.06|N|O|1996-12-11|1997-02-16|1996-12-19|TAKE BACK RETURN|RAIL|special platelets. blithely| +26926|76752|14256|4|25|43218.75|0.02|0.03|N|O|1997-01-03|1997-01-03|1997-01-08|NONE|RAIL|s platelets are slyly. special, fin| +26926|969723|44762|5|20|35853.60|0.10|0.07|N|O|1997-03-12|1997-01-10|1997-03-25|COLLECT COD|REG AIR|ve deposits use furiously about the fluff| +26927|733438|33439|1|38|55913.20|0.07|0.08|A|F|1994-04-23|1994-03-21|1994-05-17|TAKE BACK RETURN|RAIL|ronic, final accounts haggle | +26927|878183|40701|2|30|34834.20|0.08|0.01|R|F|1994-04-05|1994-04-26|1994-04-15|TAKE BACK RETURN|RAIL|y. furiously pending | +26927|607973|45510|3|47|88404.18|0.01|0.03|A|F|1994-02-05|1994-04-21|1994-02-18|DELIVER IN PERSON|REG AIR|dolites. furious| +26927|194477|6981|4|7|11000.29|0.09|0.05|R|F|1994-04-21|1994-03-07|1994-04-28|TAKE BACK RETURN|FOB|mptotes after the package| +26952|955690|43248|1|45|78554.25|0.00|0.04|A|F|1992-12-06|1992-11-13|1992-12-16|NONE|REG AIR|ges. slyly dogged requests| +26952|270454|20455|2|15|21366.60|0.03|0.07|A|F|1992-12-19|1992-11-13|1993-01-01|NONE|FOB|ily around the furiously spec| +26952|513294|25805|3|48|62748.96|0.10|0.08|A|F|1993-01-11|1993-01-05|1993-01-28|DELIVER IN PERSON|MAIL|nstructions. regular packages integrate | +26952|916394|16395|4|15|21155.25|0.07|0.06|R|F|1992-11-13|1992-12-25|1992-11-29|DELIVER IN PERSON|MAIL|s. quickly enticing inst| +26952|819533|19534|5|29|42122.21|0.10|0.00|A|F|1992-10-17|1993-01-02|1992-10-29|NONE|RAIL|sual theodolites. b| +26952|880482|30483|6|12|17549.28|0.09|0.08|R|F|1992-12-06|1992-11-19|1992-12-26|NONE|SHIP|thely regular dependencies. quickly| +26952|258294|45810|7|48|60109.44|0.09|0.00|R|F|1993-02-09|1992-12-19|1993-03-05|NONE|SHIP|o beans-- even fox| +26953|141239|16244|1|1|1280.23|0.01|0.08|R|F|1992-03-07|1992-04-18|1992-03-23|DELIVER IN PERSON|TRUCK|s cajole. pendin| +26954|554911|4912|1|29|57010.81|0.05|0.08|N|O|1997-05-29|1997-06-25|1997-06-01|COLLECT COD|RAIL|sts sleep carefully platelets. regu| +26954|384121|34122|2|10|12051.10|0.02|0.00|N|O|1997-05-15|1997-05-26|1997-06-13|COLLECT COD|REG AIR|ructions sle| +26954|919112|31631|3|11|12441.77|0.07|0.06|N|O|1997-04-26|1997-05-01|1997-05-04|TAKE BACK RETURN|FOB|en packages nag quickly. even, ironic pa| +26954|506926|44457|4|45|86980.50|0.02|0.05|N|O|1997-07-09|1997-06-08|1997-07-12|DELIVER IN PERSON|TRUCK|s could nag. accounts are carefully quickly| +26954|897916|22951|5|2|3827.74|0.00|0.00|N|O|1997-05-31|1997-06-16|1997-06-22|DELIVER IN PERSON|MAIL|blithely ironic t| +26954|266062|3578|6|17|17476.85|0.03|0.00|N|O|1997-05-02|1997-05-29|1997-05-22|DELIVER IN PERSON|AIR|en accounts. regular epi| +26955|75861|13365|1|9|16531.74|0.08|0.00|A|F|1993-07-19|1993-08-28|1993-07-20|COLLECT COD|FOB|e quickly ironic | +26955|987814|25372|2|36|68463.72|0.09|0.04|A|F|1993-08-02|1993-07-23|1993-08-29|TAKE BACK RETURN|MAIL|pinto bean| +26955|176920|1927|3|35|69892.20|0.03|0.05|A|F|1993-09-22|1993-07-13|1993-10-06|NONE|SHIP|unts. silent| +26955|489511|39512|4|26|39012.74|0.02|0.01|R|F|1993-09-07|1993-08-23|1993-09-24|DELIVER IN PERSON|TRUCK|ly pending, even deposits! ironic, ironi| +26956|344282|6789|1|29|38461.83|0.06|0.03|A|F|1994-07-02|1994-08-25|1994-07-09|NONE|FOB|tes. blithely bold inst| +26957|9220|46721|1|6|6775.32|0.07|0.01|N|O|1998-01-13|1998-03-13|1998-01-31|TAKE BACK RETURN|TRUCK|ages shall have to believe slyly. furiously| +26958|887179|49697|1|37|43146.81|0.09|0.05|R|F|1993-07-27|1993-07-07|1993-08-18|NONE|SHIP|quests haggle furiou| +26959|592263|17286|1|15|20328.60|0.04|0.02|N|O|1998-03-26|1998-04-29|1998-04-25|DELIVER IN PERSON|RAIL|al instructio| +26959|153087|15591|2|6|6840.48|0.08|0.08|N|O|1998-03-19|1998-04-25|1998-03-22|COLLECT COD|RAIL|egular ideas boost furiously. quickly| +26959|927785|40304|3|22|39880.28|0.06|0.05|N|O|1998-04-25|1998-05-12|1998-05-22|NONE|AIR|sly above the furiously regular asympt| +26959|278994|4005|4|27|53270.46|0.01|0.00|N|O|1998-05-30|1998-05-08|1998-06-20|DELIVER IN PERSON|TRUCK|cross the furiously bo| +26959|39264|14265|5|50|60163.00|0.03|0.03|N|O|1998-03-31|1998-05-02|1998-04-29|DELIVER IN PERSON|RAIL|lar instructions h| +26959|896384|21419|6|20|27606.80|0.03|0.00|N|O|1998-03-10|1998-04-21|1998-03-24|TAKE BACK RETURN|RAIL|ng excuses. | +26984|242996|30509|1|48|93071.04|0.06|0.06|N|O|1996-04-17|1996-06-23|1996-04-24|NONE|SHIP|ideas affi| +26984|23197|48198|2|30|33605.70|0.08|0.02|N|O|1996-06-02|1996-06-08|1996-07-02|NONE|TRUCK|r requests according to the car| +26984|860779|10780|3|11|19137.03|0.05|0.05|N|O|1996-07-06|1996-06-01|1996-07-26|NONE|FOB|ously final frets. pending | +26984|99504|12006|4|38|57133.00|0.01|0.04|N|O|1996-04-13|1996-06-26|1996-05-06|TAKE BACK RETURN|RAIL|t, unusual ide| +26984|351677|26692|5|37|63960.42|0.04|0.07|N|O|1996-07-19|1996-06-24|1996-07-28|TAKE BACK RETURN|MAIL|sts. quickly final instr| +26985|511074|48605|1|47|50997.35|0.07|0.02|N|O|1997-04-26|1997-04-13|1997-05-20|TAKE BACK RETURN|AIR|ding dependencies| +26985|609821|34846|2|47|81347.13|0.00|0.00|N|O|1997-06-17|1997-05-06|1997-07-03|NONE|AIR|ly pending pains are furiousl| +26985|253306|28317|3|9|11333.61|0.01|0.03|N|O|1997-06-06|1997-04-11|1997-06-26|NONE|REG AIR|haggle ironic, reg| +26985|298355|10861|4|1|1353.34|0.06|0.01|N|O|1997-03-31|1997-06-04|1997-04-24|COLLECT COD|TRUCK|eodolites sleep carefully regular deposit| +26986|517009|29520|1|20|20519.60|0.04|0.02|N|O|1996-11-15|1996-12-05|1996-11-27|DELIVER IN PERSON|REG AIR|y quickly b| +26986|367072|4594|2|10|11390.60|0.04|0.04|N|O|1997-02-26|1996-12-27|1997-03-26|TAKE BACK RETURN|MAIL|s sleep slyly slyly | +26987|308664|21171|1|28|46834.20|0.09|0.00|R|F|1992-09-23|1992-08-25|1992-10-10|DELIVER IN PERSON|MAIL|luffily ironic the| +26987|707690|20205|2|18|30557.88|0.08|0.06|R|F|1992-08-19|1992-08-24|1992-09-07|NONE|RAIL|s. multipliers boost after the bli| +26987|140030|15035|3|1|1070.03|0.04|0.08|R|F|1992-10-06|1992-09-30|1992-10-08|NONE|REG AIR|fter the regular, unusual foxes. final| +26987|476180|26181|4|36|41621.76|0.04|0.01|A|F|1992-07-24|1992-09-19|1992-08-16|TAKE BACK RETURN|TRUCK|. ironic ideas sleep | +26987|147939|35446|5|39|77490.27|0.02|0.03|R|F|1992-09-03|1992-09-23|1992-09-29|NONE|REG AIR|quests above the quickly d| +26987|403571|3572|6|10|14745.50|0.03|0.02|A|F|1992-08-17|1992-08-30|1992-09-05|COLLECT COD|TRUCK|lyly about the blithely express d| +26987|813697|38730|7|20|32213.00|0.02|0.07|R|F|1992-07-08|1992-09-23|1992-07-30|DELIVER IN PERSON|REG AIR|ke carefully f| +26988|801080|1081|1|8|7848.32|0.00|0.05|N|O|1995-11-03|1995-08-21|1995-11-30|NONE|REG AIR|uctions cajole fur| +26988|746458|34001|2|15|22566.30|0.03|0.07|N|O|1995-10-10|1995-09-19|1995-11-05|COLLECT COD|AIR|g deposits. regular,| +26988|714338|26853|3|18|24341.40|0.07|0.04|N|O|1995-10-20|1995-09-05|1995-10-28|COLLECT COD|AIR| regular excuses sleep around the sly| +26988|870444|45479|4|49|69305.60|0.09|0.01|N|O|1995-10-25|1995-09-19|1995-11-13|NONE|FOB|inal requests. theod| +26988|538842|13863|5|38|71471.16|0.07|0.06|N|O|1995-11-02|1995-09-11|1995-11-13|TAKE BACK RETURN|REG AIR|slyly at the furiously quiet platelets; | +26988|312788|307|6|24|43218.48|0.08|0.05|N|O|1995-07-09|1995-08-09|1995-07-29|COLLECT COD|RAIL|y evenly unusual accounts. caref| +26989|277312|27313|1|3|3867.90|0.05|0.01|A|F|1994-03-28|1994-05-05|1994-04-09|DELIVER IN PERSON|TRUCK| ironic, regular instructions. in| +26989|770019|32535|2|6|6533.88|0.09|0.04|R|F|1994-04-18|1994-05-18|1994-05-04|TAKE BACK RETURN|TRUCK|n, express deposits among the deposits d| +26989|697184|22211|3|19|22441.85|0.10|0.05|R|F|1994-04-18|1994-05-01|1994-05-17|COLLECT COD|FOB|decoys. blithely even | +26989|563193|727|4|48|60296.16|0.09|0.06|R|F|1994-04-10|1994-04-28|1994-04-24|TAKE BACK RETURN|TRUCK|nusual, bold theodolites breach. slyly ex| +26989|575332|25333|5|10|14073.10|0.01|0.05|R|F|1994-06-19|1994-06-17|1994-07-12|COLLECT COD|SHIP|tions wake carefully blithely sly ideas.| +26990|546462|21483|1|7|10559.08|0.01|0.02|A|F|1993-09-13|1993-09-06|1993-09-25|COLLECT COD|SHIP|inal accoun| +26991|71952|34454|1|11|21163.45|0.00|0.05|N|O|1996-01-11|1996-03-01|1996-01-14|NONE|REG AIR|o beans sleep fluf| +26991|288770|26286|2|10|17587.60|0.08|0.07|N|O|1996-03-11|1996-02-25|1996-03-27|TAKE BACK RETURN|FOB|lent, final packages haggle carefully | +27016|785123|47639|1|26|31410.34|0.03|0.00|R|F|1992-12-04|1992-10-20|1992-12-08|NONE|AIR|are fluffily.| +27016|555176|42710|2|1|1231.15|0.06|0.03|A|F|1992-09-26|1992-10-21|1992-10-15|COLLECT COD|MAIL|y stealthy request| +27016|828474|3507|3|9|12621.87|0.05|0.01|A|F|1992-10-22|1992-11-09|1992-11-16|TAKE BACK RETURN|RAIL|s. pending, express requests are quick| +27017|834489|34490|1|18|25621.92|0.00|0.01|N|O|1998-06-11|1998-06-16|1998-07-07|TAKE BACK RETURN|FOB|lyly special accounts. slyly special acc| +27017|255026|5027|2|9|8829.09|0.07|0.07|N|O|1998-04-08|1998-05-31|1998-04-15|TAKE BACK RETURN|SHIP|ut the carefully eve| +27017|215717|15718|3|48|78369.60|0.02|0.07|N|O|1998-07-20|1998-05-29|1998-08-05|TAKE BACK RETURN|RAIL|olites thrash. courts according to the | +27017|547606|10117|4|41|67796.78|0.01|0.05|N|O|1998-07-06|1998-05-26|1998-07-08|DELIVER IN PERSON|TRUCK|l foxes nag fluffily. special, iro| +27018|563145|25657|1|26|31411.12|0.03|0.06|N|F|1995-06-15|1995-07-20|1995-07-15|COLLECT COD|RAIL|le across the slyly final requests. r| +27018|774115|49146|2|19|22592.52|0.03|0.08|N|O|1995-08-22|1995-08-01|1995-08-26|COLLECT COD|FOB|l, regular req| +27018|541012|3523|3|10|10529.90|0.02|0.00|N|O|1995-06-27|1995-07-29|1995-07-18|COLLECT COD|REG AIR|equests. regular| +27018|773589|48620|4|3|4987.65|0.10|0.02|N|O|1995-09-23|1995-08-22|1995-09-25|COLLECT COD|MAIL| nag carefully carefully ironic re| +27018|697856|35396|5|37|68591.34|0.08|0.03|N|O|1995-10-09|1995-08-21|1995-10-27|DELIVER IN PERSON|MAIL|o beans. quickly ironic f| +27018|859086|46638|6|31|32396.24|0.07|0.00|N|O|1995-09-23|1995-08-07|1995-09-26|COLLECT COD|TRUCK|ously special asymptotes wake slyly regu| +27018|643412|18437|7|18|24396.84|0.08|0.02|N|O|1995-07-09|1995-08-25|1995-07-14|DELIVER IN PERSON|MAIL|unts cajole sly| +27019|819323|19324|1|22|27330.16|0.09|0.05|N|O|1996-10-20|1996-09-16|1996-10-27|COLLECT COD|MAIL|bold pinto beans print fluffily furiously f| +27019|352050|14558|2|28|30857.12|0.01|0.03|N|O|1996-09-16|1996-10-01|1996-09-28|COLLECT COD|MAIL|d of the slow asymptotes| +27019|893425|18460|3|34|48224.92|0.01|0.06|N|O|1996-08-13|1996-09-28|1996-08-17|NONE|FOB|ounts. slyly regular| +27019|793386|5902|4|25|36983.75|0.04|0.06|N|O|1996-08-23|1996-09-11|1996-09-15|NONE|REG AIR|y against the unusual package| +27019|430271|5288|5|5|6006.25|0.01|0.08|N|O|1996-12-03|1996-10-03|1996-12-27|COLLECT COD|MAIL|kly final deposits: un| +27020|656703|44243|1|42|69706.14|0.08|0.02|N|O|1997-11-20|1997-11-23|1997-11-25|COLLECT COD|FOB|slyly. quickly | +27020|194381|31891|2|19|28032.22|0.03|0.04|N|O|1997-12-20|1998-01-10|1997-12-27|NONE|MAIL|ests. accounts wake carefully reg| +27020|954754|4755|3|41|74157.11|0.00|0.06|N|O|1997-12-26|1997-11-26|1998-01-09|NONE|FOB|s haggle fluffily blithely quiet t| +27020|544398|6909|4|30|43271.10|0.03|0.05|N|O|1998-01-05|1997-11-18|1998-01-18|TAKE BACK RETURN|FOB|sly ruthless platelets. carefully regular | +27020|691008|41009|5|19|18980.43|0.08|0.05|N|O|1998-01-21|1997-11-19|1998-02-10|DELIVER IN PERSON|TRUCK|ccounts; busily unusual re| +27020|761345|23861|6|40|56252.40|0.00|0.00|N|O|1997-11-28|1997-12-01|1997-12-13|DELIVER IN PERSON|FOB|lly pending pinto beans wake blit| +27021|442178|29703|1|13|14561.95|0.08|0.04|R|F|1994-10-18|1994-12-25|1994-11-13|TAKE BACK RETURN|MAIL|sly among the requests. unus| +27021|675980|1007|2|38|74326.10|0.03|0.02|R|F|1995-01-23|1994-12-20|1995-01-30|COLLECT COD|RAIL|cies. bold accounts| +27021|194845|44846|3|18|34917.12|0.07|0.06|A|F|1995-02-06|1994-12-12|1995-03-07|NONE|REG AIR| blithely slyly silent| +27021|758693|8694|4|15|26274.90|0.10|0.06|A|F|1994-11-10|1994-12-05|1994-11-23|NONE|SHIP|ly blithe p| +27021|345240|45241|5|27|34701.21|0.04|0.01|R|F|1994-10-28|1995-01-04|1994-11-15|TAKE BACK RETURN|TRUCK|bold accounts haggle quickly. bol| +27021|448350|48351|6|25|32458.25|0.07|0.07|R|F|1995-01-14|1995-01-08|1995-02-10|NONE|TRUCK|regular instruct| +27021|401991|39516|7|6|11357.82|0.05|0.05|R|F|1995-02-07|1994-12-02|1995-02-21|NONE|FOB|quests wake fluffily quickly | +27022|247760|10265|1|47|80264.25|0.09|0.00|A|F|1994-10-28|1994-11-06|1994-11-16|NONE|MAIL|ffily even| +27022|91478|41479|2|39|57309.33|0.05|0.05|A|F|1994-12-05|1994-10-23|1994-12-30|DELIVER IN PERSON|MAIL|al, pending dependencies. regula| +27023|126736|39239|1|25|44068.25|0.04|0.05|N|O|1995-10-14|1995-11-25|1995-10-20|DELIVER IN PERSON|SHIP| regular pinto beans.| +27023|47190|22191|2|10|11371.90|0.05|0.00|N|O|1995-12-04|1995-12-04|1995-12-14|TAKE BACK RETURN|TRUCK|eep furiously. slyly regular foxes| +27023|118337|18338|3|24|32527.92|0.04|0.07|N|O|1995-09-24|1995-11-21|1995-10-11|NONE|AIR|instructions. carefully ironic re| +27023|876323|26324|4|32|41576.96|0.01|0.03|N|O|1995-10-28|1995-11-17|1995-11-16|TAKE BACK RETURN|TRUCK|as breach furiously. speci| +27023|358016|45538|5|27|28998.00|0.10|0.00|N|O|1995-09-27|1995-10-24|1995-10-12|TAKE BACK RETURN|RAIL|sly ironic accounts. accounts ca| +27023|170973|20974|6|44|89934.68|0.03|0.06|N|O|1995-12-06|1995-11-05|1995-12-16|COLLECT COD|FOB|al requests. furiously special platele| +27023|534551|22082|7|48|76105.44|0.05|0.04|N|O|1995-11-21|1995-12-05|1995-12-14|NONE|TRUCK|ven, sly dependencies across the ca| +27048|190385|15392|1|24|35409.12|0.05|0.06|N|O|1995-12-13|1995-12-14|1995-12-17|TAKE BACK RETURN|MAIL|ounts cajole. q| +27048|794402|6918|2|22|32920.14|0.06|0.03|N|O|1995-12-05|1995-11-19|1995-12-13|COLLECT COD|AIR|nic deposits use slyly iron| +27048|506845|19356|3|20|37036.40|0.00|0.06|N|O|1995-11-16|1996-01-06|1995-12-05|COLLECT COD|AIR|e slyly pending platelets use care| +27048|540104|40105|4|21|24025.68|0.00|0.01|N|O|1995-12-01|1995-12-24|1995-12-16|NONE|FOB|onic accounts about | +27048|512122|24633|5|35|39693.50|0.00|0.04|N|O|1996-01-13|1996-01-15|1996-02-03|NONE|TRUCK|ly bold requests. carefully ironic request| +27048|221750|9263|6|36|60182.64|0.03|0.05|N|O|1995-10-26|1996-01-14|1995-11-17|DELIVER IN PERSON|SHIP|ar requests slee| +27048|947173|22210|7|4|4880.52|0.05|0.01|N|O|1996-02-13|1995-12-14|1996-03-10|DELIVER IN PERSON|FOB| requests a| +27049|134261|9266|1|44|56991.44|0.06|0.02|A|F|1994-12-08|1994-12-02|1994-12-24|DELIVER IN PERSON|FOB|ecial courts kindle carefully ironic pack| +27049|509766|22277|2|28|49720.72|0.08|0.07|R|F|1994-12-12|1994-12-24|1994-12-18|DELIVER IN PERSON|TRUCK|t the ironically regular re| +27049|624955|12492|3|19|35718.48|0.03|0.07|A|F|1994-10-28|1995-01-09|1994-11-21|NONE|REG AIR|iously. carefully ironic requests sleep sl| +27049|609540|47077|4|23|33338.73|0.06|0.03|A|F|1994-11-19|1994-11-22|1994-12-19|DELIVER IN PERSON|REG AIR|ithely according to the furiously u| +27049|522304|34815|5|10|13262.80|0.10|0.07|A|F|1994-11-28|1994-12-22|1994-12-16|TAKE BACK RETURN|RAIL| are carefully across the blithely express | +27049|363111|13112|6|2|2348.20|0.00|0.03|A|F|1994-11-22|1994-12-09|1994-11-29|DELIVER IN PERSON|RAIL| ironic warthogs unwind careful| +27050|750558|25589|1|39|62732.28|0.02|0.07|R|F|1995-03-10|1995-01-25|1995-04-04|DELIVER IN PERSON|TRUCK|lithely pending courts. furiousl| +27050|614672|2209|2|49|77745.36|0.01|0.00|A|F|1995-04-16|1995-02-17|1995-05-04|NONE|FOB|uriously even dependencies h| +27051|411949|49474|1|23|42801.16|0.02|0.05|N|O|1998-04-12|1998-04-28|1998-04-24|DELIVER IN PERSON|REG AIR|quests! regular pinto beans affix furi| +27051|622712|35225|2|26|42501.68|0.09|0.00|N|O|1998-05-29|1998-05-01|1998-06-15|DELIVER IN PERSON|FOB|he fluffily ironic d| +27051|911766|24285|3|17|30221.24|0.00|0.06|N|O|1998-03-28|1998-03-17|1998-04-17|DELIVER IN PERSON|FOB| carefully according to the tith| +27051|39737|27238|4|12|20120.76|0.09|0.06|N|O|1998-03-31|1998-04-17|1998-04-14|TAKE BACK RETURN|AIR|fully even excuse| +27052|888498|26050|1|39|57971.55|0.00|0.01|A|F|1993-04-05|1993-02-12|1993-04-07|NONE|SHIP|s. furiously exp| +27052|969894|19895|2|46|90337.10|0.00|0.08|R|F|1993-03-24|1993-01-28|1993-03-27|COLLECT COD|MAIL|ng to the requests. bold accounts wak| +27052|2711|27712|3|17|27433.07|0.07|0.02|R|F|1993-01-09|1993-02-15|1993-01-16|NONE|TRUCK|its. slyly| +27052|562328|12329|4|1|1390.30|0.09|0.06|A|F|1993-03-28|1993-01-29|1993-04-03|TAKE BACK RETURN|AIR|posits engag| +27052|43580|6081|5|16|24377.28|0.06|0.04|R|F|1993-01-12|1993-01-11|1993-02-03|COLLECT COD|RAIL|ccounts. ideas use slyly blithely ironic | +27052|434720|9737|6|28|46331.60|0.07|0.05|R|F|1993-02-17|1993-03-01|1993-02-22|TAKE BACK RETURN|MAIL|blithely regul| +27053|658310|20824|1|44|55804.32|0.02|0.05|A|F|1994-10-18|1994-10-21|1994-11-15|TAKE BACK RETURN|REG AIR|thlessly after the blithely silent s| +27054|686535|24075|1|14|21301.00|0.06|0.05|N|O|1997-12-12|1997-11-18|1998-01-02|NONE|TRUCK|jole slyly regular, expr| +27054|590438|2950|2|23|35153.43|0.06|0.01|N|O|1997-09-01|1997-11-22|1997-09-06|DELIVER IN PERSON|SHIP| furiously ironic warhorses.| +27055|39308|39309|1|35|43655.50|0.05|0.02|N|O|1996-09-06|1996-10-03|1996-09-23|TAKE BACK RETURN|TRUCK|gular ideas | +27080|229534|29535|1|37|54150.24|0.09|0.08|A|F|1995-04-05|1995-03-22|1995-05-03|COLLECT COD|FOB| use slyly alongside of th| +27080|762525|37556|2|27|42862.23|0.08|0.01|A|F|1995-04-13|1995-03-10|1995-05-08|TAKE BACK RETURN|RAIL|ajole furiously abov| +27080|749435|49436|3|10|14844.00|0.10|0.07|A|F|1995-04-30|1995-03-09|1995-05-19|NONE|AIR|y bold depos| +27080|743817|43818|4|12|22329.36|0.01|0.04|A|F|1995-02-01|1995-03-31|1995-02-25|COLLECT COD|RAIL|ts sleep among the carefully pend| +27080|315815|40828|5|40|73232.00|0.08|0.02|A|F|1995-03-29|1995-03-16|1995-04-03|TAKE BACK RETURN|MAIL|rets promise fluffily after the final| +27080|890575|3093|6|36|56359.08|0.03|0.00|R|F|1995-02-18|1995-02-06|1995-02-21|COLLECT COD|AIR|ily ironic inst| +27081|633395|20932|1|21|27895.56|0.03|0.03|N|O|1998-04-29|1998-05-02|1998-05-15|DELIVER IN PERSON|REG AIR|luffily bold tithes c| +27081|453975|41503|2|47|90660.65|0.10|0.03|N|O|1998-03-06|1998-04-12|1998-04-03|COLLECT COD|FOB|haggle about the ironic packages. enti| +27081|950824|13344|3|14|26246.92|0.07|0.04|N|O|1998-05-09|1998-03-26|1998-05-30|TAKE BACK RETURN|REG AIR|ily final dolphin| +27081|484911|22439|4|1|1895.89|0.00|0.00|N|O|1998-04-29|1998-04-15|1998-05-18|COLLECT COD|TRUCK| the blithely re| +27081|890273|2791|5|8|10105.84|0.02|0.05|N|O|1998-04-07|1998-05-04|1998-04-14|COLLECT COD|REG AIR|nic accounts cajole! expre| +27081|810666|23183|6|27|42568.74|0.06|0.06|N|O|1998-06-03|1998-03-12|1998-06-04|DELIVER IN PERSON|SHIP|xpress deposits hagg| +27082|315060|40073|1|3|3225.15|0.10|0.01|N|O|1997-01-09|1997-03-23|1997-01-16|TAKE BACK RETURN|AIR|y above the eve| +27082|199084|49085|2|20|23661.60|0.07|0.01|N|O|1997-04-20|1997-02-18|1997-05-13|TAKE BACK RETURN|FOB| thrash fluffily slyly ironi| +27082|995887|8407|3|24|47588.16|0.10|0.03|N|O|1997-03-12|1997-02-23|1997-04-07|DELIVER IN PERSON|REG AIR|y was fluffily unusual asymptot| +27082|863553|26071|4|23|34879.73|0.04|0.06|N|O|1997-02-18|1997-03-29|1997-02-21|NONE|MAIL|ltipliers abov| +27082|723244|48273|5|40|50688.40|0.07|0.01|N|O|1997-04-09|1997-03-20|1997-04-21|DELIVER IN PERSON|AIR| special ideas boost carefull| +27083|835192|22741|1|28|31560.20|0.03|0.06|N|O|1997-04-07|1997-06-11|1997-04-14|TAKE BACK RETURN|REG AIR|ndencies are qui| +27084|482505|7524|1|11|16362.28|0.04|0.08|N|O|1995-09-29|1995-10-14|1995-10-10|TAKE BACK RETURN|FOB|iously. ironic, iro| +27084|451924|26943|2|46|86291.40|0.07|0.03|N|O|1995-11-01|1995-10-12|1995-11-07|TAKE BACK RETURN|AIR|osits. caref| +27084|477749|40259|3|17|29354.24|0.09|0.03|N|O|1995-09-21|1995-10-25|1995-10-14|DELIVER IN PERSON|FOB|final packages. quickly regular asymptotes| +27085|342428|17441|1|18|26467.38|0.08|0.03|N|O|1996-04-21|1996-03-30|1996-05-20|COLLECT COD|SHIP|carefully final asymptot| +27085|178527|16037|2|38|61009.76|0.04|0.08|N|O|1996-02-07|1996-04-09|1996-03-03|COLLECT COD|REG AIR|iously ironic ideas | +27085|496097|46098|3|39|42629.73|0.00|0.06|N|O|1996-01-25|1996-04-11|1996-01-31|DELIVER IN PERSON|FOB|aves nod. slyly| +27085|888686|26238|4|40|66985.60|0.00|0.06|N|O|1996-03-14|1996-03-05|1996-04-02|TAKE BACK RETURN|SHIP|y. furiously quiet depo| +27085|144935|7438|5|49|97016.57|0.02|0.01|N|O|1996-05-05|1996-02-20|1996-05-24|NONE|SHIP|ound the deposits. carefully ex| +27086|522349|47370|1|7|9599.24|0.00|0.03|A|F|1992-04-04|1992-04-13|1992-05-02|NONE|TRUCK|egular deposits wake carefull| +27087|206271|31280|1|12|14127.12|0.08|0.07|N|O|1995-10-31|1995-11-20|1995-11-21|DELIVER IN PERSON|RAIL|ackages doze. daringly special | +27087|785707|10738|2|19|34060.73|0.03|0.05|N|O|1996-02-04|1995-11-29|1996-02-13|DELIVER IN PERSON|SHIP|; silent, blithe depo| +27087|361342|48864|3|4|5613.32|0.04|0.01|N|O|1995-11-02|1995-11-14|1995-11-26|NONE|AIR|y. quickly final packages sleep slyly again| +27112|461302|23812|1|43|54321.04|0.04|0.02|A|F|1993-06-10|1993-04-04|1993-06-17|COLLECT COD|SHIP|s? even, express deposi| +27112|92045|17048|2|26|26963.04|0.07|0.05|A|F|1993-05-12|1993-04-04|1993-05-29|TAKE BACK RETURN|AIR|he slyly regular accounts| +27112|984997|10036|3|20|41639.00|0.04|0.01|A|F|1993-04-29|1993-04-19|1993-05-07|NONE|TRUCK|bold asymptote| +27113|965027|2585|1|9|9827.82|0.07|0.02|R|F|1992-02-26|1992-03-27|1992-03-19|NONE|MAIL|nto beans haggle furiou| +27113|207612|32621|2|40|60784.00|0.10|0.00|R|F|1992-05-05|1992-03-15|1992-05-08|NONE|SHIP|quests! idle pin| +27113|331668|44175|3|4|6798.60|0.09|0.02|A|F|1992-05-17|1992-05-02|1992-05-29|DELIVER IN PERSON|FOB|al pinto beans haggle| +27113|343754|43755|4|32|57527.68|0.09|0.01|R|F|1992-05-30|1992-03-17|1992-06-10|COLLECT COD|AIR|nto beans at the slyly e| +27114|627545|27546|1|41|60372.91|0.06|0.08|A|F|1993-11-01|1993-08-23|1993-11-23|DELIVER IN PERSON|AIR|tes are furiously across the pac| +27114|133309|33310|2|27|36242.10|0.07|0.02|A|F|1993-11-04|1993-08-24|1993-11-13|NONE|TRUCK|ages nag against the bli| +27114|523593|11124|3|18|29098.26|0.09|0.05|R|F|1993-10-27|1993-08-20|1993-11-18|NONE|TRUCK|al accounts after the final asympto| +27115|892023|17058|1|13|13194.74|0.06|0.01|N|O|1997-11-13|1997-12-23|1997-11-30|COLLECT COD|REG AIR|ajole carefully final platelets. slyly s| +27115|229300|41805|2|3|3687.87|0.01|0.04|N|O|1998-01-12|1997-11-06|1998-02-08|NONE|TRUCK|ironic deposits. fluffily pending dep| +27115|828538|3571|3|14|20530.86|0.04|0.04|N|O|1997-12-12|1997-12-11|1997-12-24|NONE|MAIL| requests haggle carefully after the regula| +27116|295668|20679|1|15|24954.75|0.10|0.02|R|F|1994-12-25|1994-12-16|1995-01-12|TAKE BACK RETURN|AIR|furiously ironic ideas. fluffily exp| +27117|479287|4306|1|32|40520.32|0.04|0.05|R|F|1994-04-28|1994-04-02|1994-05-18|TAKE BACK RETURN|TRUCK|he request| +27117|367126|29634|2|4|4772.44|0.04|0.00|A|F|1994-04-03|1994-04-18|1994-04-30|COLLECT COD|REG AIR| ironic theodolites sleep fur| +27117|280536|43042|3|45|68243.40|0.10|0.03|A|F|1994-03-08|1994-03-14|1994-03-15|NONE|SHIP|urts haggle a| +27117|956105|43663|4|29|33670.74|0.06|0.06|R|F|1994-02-15|1994-03-17|1994-03-03|TAKE BACK RETURN|FOB|ges. blithely even dolphins cajole furi| +27117|256451|31462|5|34|47852.96|0.00|0.04|A|F|1994-05-14|1994-04-12|1994-06-05|COLLECT COD|RAIL|. unusual, even foxes n| +27117|168359|43366|6|30|42820.50|0.08|0.00|A|F|1994-05-31|1994-03-27|1994-06-30|COLLECT COD|SHIP| above the even theodolites. final Ti| +27117|605907|30932|7|45|81579.15|0.09|0.07|A|F|1994-04-27|1994-03-27|1994-05-21|NONE|MAIL|ly alongside of the regular asymp| +27118|476241|1260|1|19|23127.18|0.01|0.05|N|O|1997-08-19|1997-08-22|1997-09-14|COLLECT COD|AIR|unts wake blithely even | +27119|979347|41867|1|38|54199.40|0.09|0.07|N|O|1998-08-04|1998-07-04|1998-08-13|COLLECT COD|REG AIR| boost slyly. requests integrate!| +27119|884754|9789|2|27|46945.17|0.02|0.03|N|O|1998-06-22|1998-06-18|1998-07-02|TAKE BACK RETURN|MAIL|ously ironic depen| +27119|47208|22209|3|33|38121.60|0.08|0.01|N|O|1998-05-17|1998-06-05|1998-05-18|TAKE BACK RETURN|FOB|ter the slyly ironic packages.| +27119|415927|40944|4|50|92145.00|0.06|0.02|N|O|1998-06-24|1998-05-15|1998-07-04|TAKE BACK RETURN|FOB|unts haggle blithely around the slyly pen| +27119|469180|44199|5|35|40220.60|0.06|0.01|N|O|1998-07-07|1998-05-28|1998-07-11|COLLECT COD|RAIL|y with the silent asymptotes. accou| +27144|475986|1005|1|37|72592.52|0.07|0.04|R|F|1992-05-20|1992-04-03|1992-06-02|TAKE BACK RETURN|AIR|bold accounts de| +27144|894486|7004|2|36|53295.84|0.08|0.07|A|F|1992-02-18|1992-03-19|1992-02-29|TAKE BACK RETURN|SHIP| carefully express pinto b| +27144|618889|31402|3|34|61466.90|0.08|0.03|R|F|1992-02-17|1992-04-03|1992-02-20|NONE|TRUCK|even requests. bold foxes| +27144|658839|8840|4|39|70114.20|0.08|0.06|R|F|1992-03-20|1992-04-13|1992-03-25|TAKE BACK RETURN|REG AIR|heodolites according to the fluffily brav| +27145|235305|47810|1|46|57053.34|0.10|0.04|N|O|1995-12-31|1996-02-24|1996-01-12|DELIVER IN PERSON|MAIL|ully regular instruc| +27145|760581|10582|2|38|62378.90|0.03|0.05|N|O|1995-12-05|1996-01-14|1995-12-29|DELIVER IN PERSON|AIR|inal ideas. ideas kindle slyly about the | +27145|79696|42198|3|49|82108.81|0.09|0.00|N|O|1996-01-31|1996-02-28|1996-02-08|NONE|AIR| promise quickly furiously ironic account| +27145|450166|25185|4|10|11161.40|0.05|0.00|N|O|1996-02-12|1996-02-14|1996-03-02|TAKE BACK RETURN|TRUCK|y bold dependencies near the carefully fina| +27145|929691|29692|5|46|79149.90|0.01|0.04|N|O|1996-03-05|1996-02-15|1996-03-29|COLLECT COD|AIR| requests. accounts promise| +27145|306485|18992|6|28|41761.16|0.09|0.08|N|O|1996-01-10|1996-02-25|1996-01-18|TAKE BACK RETURN|AIR|slyly ironic warthogs. blith| +27145|78944|41446|7|31|59611.14|0.03|0.06|N|O|1996-03-28|1996-01-31|1996-03-29|COLLECT COD|AIR|ow alongside of the brave, regular | +27146|798558|11074|1|14|23191.28|0.02|0.00|N|O|1998-02-11|1998-01-18|1998-02-23|COLLECT COD|FOB|onic asymptotes according to the deposi| +27146|359797|9798|2|16|29708.48|0.06|0.01|N|O|1998-01-11|1998-02-02|1998-01-30|COLLECT COD|SHIP| cajole always accounts. quickly | +27147|375337|37845|1|12|16947.84|0.07|0.06|A|F|1992-05-02|1992-03-10|1992-05-31|TAKE BACK RETURN|FOB|ar requests wake quickly against the ca| +27147|284955|9966|2|29|56258.26|0.04|0.02|R|F|1992-02-08|1992-03-11|1992-03-07|DELIVER IN PERSON|SHIP|rash blithely. regular, final ideas hind| +27147|237334|24847|3|14|17798.48|0.07|0.05|R|F|1992-04-22|1992-03-06|1992-05-20|COLLECT COD|SHIP|le furiously. furiously special fo| +27147|871311|46346|4|34|43597.18|0.06|0.07|A|F|1992-04-03|1992-04-18|1992-04-30|TAKE BACK RETURN|FOB|eposits use acr| +27147|110900|23403|5|12|22930.80|0.05|0.01|A|F|1992-03-23|1992-03-29|1992-04-21|TAKE BACK RETURN|RAIL|bt express accounts? furiously clo| +27147|888212|38213|6|33|39605.61|0.03|0.03|R|F|1992-05-04|1992-03-15|1992-05-25|COLLECT COD|SHIP|g, daring excuses wake furiously a| +27147|176071|1078|7|46|52765.22|0.03|0.04|A|F|1992-03-12|1992-03-01|1992-03-20|TAKE BACK RETURN|RAIL|even requests against the fur| +27148|213642|26147|1|26|40446.38|0.10|0.08|R|F|1992-06-07|1992-07-05|1992-06-09|TAKE BACK RETURN|MAIL|r packages sublate al| +27148|679167|16707|2|44|50429.72|0.08|0.02|R|F|1992-06-17|1992-05-11|1992-07-01|COLLECT COD|TRUCK|lyly pending instructions sle| +27148|747474|35017|3|7|10650.08|0.04|0.06|R|F|1992-07-14|1992-06-20|1992-07-15|DELIVER IN PERSON|SHIP|ven packages | +27148|780926|18472|4|41|82282.49|0.05|0.07|R|F|1992-04-28|1992-05-16|1992-05-17|DELIVER IN PERSON|TRUCK|osits wake even instructions. fur| +27149|967577|17578|1|27|44402.31|0.08|0.01|A|F|1992-11-02|1992-10-13|1992-11-07|TAKE BACK RETURN|MAIL|es are furiously | +27149|64896|2400|2|43|80018.27|0.03|0.01|R|F|1992-09-30|1992-09-26|1992-10-24|NONE|AIR|ithely final courts among the requests caj| +27150|463426|38445|1|47|65301.80|0.05|0.06|N|O|1995-09-23|1995-10-29|1995-10-02|TAKE BACK RETURN|TRUCK|al requests are enticingl| +27150|790392|27938|2|7|10376.52|0.06|0.08|N|O|1995-11-30|1995-10-08|1995-12-01|DELIVER IN PERSON|REG AIR|e packages sleep slyly bold f| +27150|114214|14215|3|30|36846.30|0.09|0.02|N|O|1995-09-28|1995-09-20|1995-10-16|TAKE BACK RETURN|RAIL|inal requests haggle blithely. s| +27151|149565|37072|1|49|79113.44|0.02|0.00|R|F|1994-03-28|1994-04-19|1994-04-12|NONE|MAIL|ages are? caref| +27151|730881|18424|2|48|91768.80|0.06|0.05|R|F|1994-06-13|1994-04-11|1994-07-11|NONE|TRUCK|dencies nag carefully amo| +27151|913943|38980|3|40|78276.00|0.03|0.05|R|F|1994-05-29|1994-04-25|1994-06-09|DELIVER IN PERSON|MAIL|ld accounts haggle carefully dogged | +27151|637773|37774|4|24|41057.76|0.09|0.03|R|F|1994-02-28|1994-04-20|1994-03-16|TAKE BACK RETURN|REG AIR|above the even requests engage sl| +27151|36145|48646|5|1|1081.14|0.10|0.06|R|F|1994-05-28|1994-05-22|1994-06-11|COLLECT COD|AIR|he regular accounts. daringly final i| +27176|84144|9147|1|39|43997.46|0.03|0.02|N|O|1997-01-12|1997-01-30|1997-01-26|COLLECT COD|RAIL| alongside of the regular depo| +27177|909944|47499|1|49|95741.10|0.02|0.08|N|O|1998-02-13|1998-02-21|1998-03-10|TAKE BACK RETURN|SHIP| sleep carefully unusual request| +27177|421235|8760|2|32|36998.72|0.07|0.01|N|O|1998-02-15|1998-04-02|1998-03-05|DELIVER IN PERSON|TRUCK| near the carefully final ideas! f| +27177|688811|13838|3|14|25196.92|0.00|0.06|N|O|1998-02-25|1998-03-12|1998-03-27|COLLECT COD|RAIL|ges. packages are carefully; furiously | +27177|837396|37397|4|39|52000.65|0.08|0.07|N|O|1998-03-25|1998-03-12|1998-04-17|NONE|SHIP|c, pending theodolites sleep carefully ir| +27177|105947|18450|5|35|68352.90|0.02|0.05|N|O|1998-02-13|1998-04-02|1998-03-04|TAKE BACK RETURN|REG AIR|e boldly express asymptotes| +27177|648647|23672|6|9|14360.49|0.10|0.01|N|O|1998-03-10|1998-02-23|1998-04-01|TAKE BACK RETURN|AIR|ding, express deposits haggle.| +27178|973131|35651|1|5|6020.45|0.05|0.04|N|O|1996-09-06|1996-09-11|1996-09-10|TAKE BACK RETURN|AIR|uriously even accounts wake a| +27178|403108|40633|2|19|19210.52|0.09|0.01|N|O|1996-07-23|1996-08-20|1996-08-22|NONE|MAIL|e of the quiet requests| +27178|20848|45849|3|29|51296.36|0.04|0.01|N|O|1996-09-28|1996-09-12|1996-10-04|NONE|REG AIR|t the furiously unusual accounts haggle fl| +27179|154709|4710|1|48|84657.60|0.04|0.04|R|F|1993-08-10|1993-11-06|1993-09-02|COLLECT COD|AIR|press, bold foxes. f| +27179|188665|1169|2|28|49102.48|0.07|0.07|R|F|1993-12-06|1993-09-09|1994-01-02|TAKE BACK RETURN|SHIP| sly dinos. furiously even account| +27179|886494|36495|3|44|65139.80|0.08|0.08|R|F|1993-10-25|1993-10-26|1993-11-06|COLLECT COD|SHIP|. slyly even deposits print furio| +27179|297981|35497|4|8|15831.76|0.09|0.02|A|F|1993-09-27|1993-10-13|1993-10-19|NONE|SHIP|. quickly r| +27179|163751|38758|5|50|90737.50|0.10|0.01|R|F|1993-10-23|1993-10-29|1993-10-24|DELIVER IN PERSON|REG AIR|e! slyly unus| +27179|159092|9093|6|26|29928.34|0.04|0.00|R|F|1993-08-25|1993-09-21|1993-09-15|TAKE BACK RETURN|TRUCK| theodolites. regular, express dolphins bo| +27180|253797|41313|1|7|12255.46|0.06|0.08|N|O|1998-05-11|1998-05-01|1998-05-18|NONE|REG AIR|y. carefully even deposits haggle | +27180|552357|39891|2|39|54963.87|0.03|0.03|N|O|1998-03-07|1998-05-08|1998-03-22|DELIVER IN PERSON|FOB|e even deposits integrate quickly acc| +27180|453982|16492|3|2|3871.92|0.10|0.07|N|O|1998-04-11|1998-04-07|1998-04-30|COLLECT COD|FOB|y ironic accounts. furi| +27180|59055|46559|4|3|3042.15|0.03|0.01|N|O|1998-06-19|1998-05-25|1998-07-17|TAKE BACK RETURN|FOB|inst the carefully special | +27180|520983|33494|5|40|80158.40|0.00|0.02|N|O|1998-04-21|1998-05-18|1998-04-24|NONE|TRUCK|bove the ironic, fluffy instructions| +27180|156274|43784|6|12|15963.24|0.00|0.06|N|O|1998-05-13|1998-05-08|1998-05-14|DELIVER IN PERSON|TRUCK| regular ideas| +27181|496359|8869|1|47|63700.51|0.10|0.06|N|O|1996-07-23|1996-09-20|1996-08-13|DELIVER IN PERSON|MAIL|onic instructions are carefully slyly e| +27181|301647|14154|2|36|59350.68|0.08|0.00|N|O|1996-09-30|1996-09-03|1996-10-14|COLLECT COD|REG AIR|old requests snooze against the blith| +27181|779082|4113|3|47|54569.35|0.01|0.06|N|O|1996-10-02|1996-08-05|1996-10-08|NONE|RAIL|requests. furiously | +27181|16057|41058|4|14|13622.70|0.10|0.04|N|O|1996-08-09|1996-08-15|1996-08-12|TAKE BACK RETURN|SHIP|ickly pendin| +27181|853549|41101|5|43|64607.50|0.03|0.02|N|O|1996-09-15|1996-08-01|1996-09-28|COLLECT COD|SHIP|arefully final epitaphs are against| +27181|591302|28836|6|31|43191.68|0.01|0.08|N|O|1996-10-23|1996-08-03|1996-10-25|NONE|FOB| across th| +27181|314|12815|7|11|13357.41|0.01|0.04|N|O|1996-06-27|1996-07-27|1996-07-27|DELIVER IN PERSON|SHIP|lites. accounts along the blithe| +27182|270677|20678|1|8|13181.28|0.09|0.00|N|O|1995-08-03|1995-07-09|1995-08-15|NONE|MAIL|ecial packa| +27182|254963|42479|2|47|90143.65|0.07|0.06|R|F|1995-05-01|1995-07-01|1995-05-17|COLLECT COD|RAIL|ronic, special courts nag slyly | +27182|159838|9839|3|35|66424.05|0.03|0.00|N|F|1995-06-16|1995-06-11|1995-06-22|TAKE BACK RETURN|AIR|t, final dugouts breach f| +27182|389994|15009|4|47|97947.06|0.08|0.05|N|O|1995-06-30|1995-07-18|1995-07-01|NONE|TRUCK|ly about the unu| +27182|628803|3828|5|14|24244.78|0.04|0.03|N|O|1995-08-14|1995-06-10|1995-08-23|DELIVER IN PERSON|TRUCK|thily special packages. slowly close req| +27182|282992|32993|6|50|98749.00|0.03|0.01|R|F|1995-04-27|1995-06-13|1995-05-02|COLLECT COD|REG AIR| haggle ruthlessly about th| +27183|122440|9947|1|8|11699.52|0.09|0.01|N|O|1996-07-02|1996-05-07|1996-07-23|NONE|AIR|erns are regularly according to the furiou| +27183|843808|18841|2|19|33283.44|0.02|0.00|N|O|1996-07-17|1996-06-03|1996-07-30|DELIVER IN PERSON|MAIL|es. busily pending requests nag. r| +27183|865465|3017|3|16|22886.72|0.09|0.08|N|O|1996-07-07|1996-06-02|1996-07-08|NONE|MAIL|onic theodolites; special requests | +27183|857588|7589|4|34|52548.36|0.10|0.04|N|O|1996-07-05|1996-06-02|1996-07-27|DELIVER IN PERSON|SHIP|otes. final, regular requests sleep| +27183|475186|205|5|33|38318.28|0.06|0.07|N|O|1996-04-28|1996-06-04|1996-05-24|TAKE BACK RETURN|FOB|usly carefully regular frays. final, regula| +27183|443305|30830|6|31|38696.68|0.08|0.05|N|O|1996-04-26|1996-05-05|1996-05-20|NONE|FOB|p furiously furiously regular | +27183|622407|22408|7|28|37222.36|0.08|0.00|N|O|1996-06-29|1996-06-03|1996-07-28|TAKE BACK RETURN|RAIL| final packages along the regular, r| +27208|791583|4099|1|11|18420.05|0.07|0.00|R|F|1992-06-30|1992-05-13|1992-07-17|NONE|MAIL|nstructions. pending p| +27208|124902|12409|2|37|71295.30|0.06|0.04|R|F|1992-05-09|1992-05-31|1992-05-24|TAKE BACK RETURN|RAIL|as lose according t| +27208|223857|23858|3|25|44521.00|0.03|0.00|A|F|1992-05-18|1992-05-19|1992-06-10|NONE|TRUCK| regular dependencies| +27208|351203|26218|4|36|45150.84|0.08|0.01|R|F|1992-04-20|1992-05-16|1992-05-12|NONE|TRUCK|s wake about the permanen| +27208|653417|3418|5|29|39741.02|0.05|0.00|R|F|1992-04-07|1992-05-20|1992-04-22|TAKE BACK RETURN|SHIP|es print slyly about the regular instruct| +27208|971700|34220|6|20|35433.20|0.10|0.06|R|F|1992-05-03|1992-05-24|1992-05-22|TAKE BACK RETURN|SHIP|hely final depos| +27208|346985|34504|7|13|26415.61|0.07|0.08|R|F|1992-06-29|1992-06-02|1992-07-11|TAKE BACK RETURN|RAIL|ts. bold, regular excuses above the| +27209|769912|7458|1|12|23782.56|0.06|0.02|R|F|1993-08-01|1993-06-20|1993-08-17|DELIVER IN PERSON|SHIP|ironic courts sleep | +27209|909109|34146|2|45|50312.70|0.08|0.08|A|F|1993-05-03|1993-07-19|1993-05-31|DELIVER IN PERSON|AIR|. quickly thin braids about| +27209|387811|12826|3|26|49368.80|0.06|0.08|R|F|1993-05-14|1993-06-05|1993-05-21|COLLECT COD|TRUCK|ress dependencies af| +27209|938580|38581|4|48|77689.92|0.00|0.03|R|F|1993-06-28|1993-06-03|1993-07-13|TAKE BACK RETURN|RAIL|lly unusual pains are blith| +27209|712195|12196|5|6|7242.96|0.10|0.08|R|F|1993-07-24|1993-07-04|1993-08-11|NONE|FOB|ke. quickly regul| +27209|847646|35195|6|30|47808.00|0.05|0.00|R|F|1993-05-01|1993-07-25|1993-05-02|TAKE BACK RETURN|TRUCK|kages: carefully busy instruct| +27210|182871|45375|1|29|56662.23|0.00|0.07|N|O|1996-09-26|1996-08-24|1996-10-12|COLLECT COD|SHIP|use theodolites. furiously bold accoun| +27210|507020|19531|2|50|51350.00|0.04|0.03|N|O|1996-10-02|1996-09-18|1996-10-19|TAKE BACK RETURN|SHIP|as haggle slyly. careful| +27210|473615|23616|3|21|33360.39|0.07|0.04|N|O|1996-11-04|1996-10-04|1996-11-14|NONE|SHIP|y unusual courts. regular, pending asympto| +27210|32025|44526|4|20|19140.40|0.05|0.02|N|O|1996-08-20|1996-08-13|1996-08-31|TAKE BACK RETURN|RAIL|ts engage: bold, final warhorses boo| +27210|231037|43542|5|47|45496.94|0.04|0.03|N|O|1996-09-07|1996-08-18|1996-10-06|DELIVER IN PERSON|SHIP|, bold foxes. re| +27210|24221|36722|6|38|43518.36|0.09|0.02|N|O|1996-09-10|1996-09-02|1996-09-27|DELIVER IN PERSON|TRUCK|final foxe| +27210|81256|31257|7|12|14847.00|0.05|0.06|N|O|1996-10-25|1996-09-26|1996-10-29|DELIVER IN PERSON|FOB|osits are ex| +27211|667822|5362|1|30|53693.70|0.01|0.00|R|F|1992-10-14|1992-09-07|1992-11-04|NONE|TRUCK|ts are. escapades are furiously carefu| +27211|76183|38685|2|36|41730.48|0.04|0.07|R|F|1992-06-23|1992-08-21|1992-07-07|COLLECT COD|FOB|dencies haggle after t| +27211|398175|35697|3|37|47106.92|0.10|0.03|R|F|1992-08-15|1992-09-11|1992-08-28|DELIVER IN PERSON|TRUCK| theodolites cajole slyly. q| +27211|118326|43331|4|21|28230.72|0.08|0.03|R|F|1992-07-20|1992-07-28|1992-08-16|COLLECT COD|TRUCK|packages. furiously blithe deposits nag. sl| +27211|693139|43140|5|19|21509.90|0.10|0.03|R|F|1992-09-26|1992-08-08|1992-09-29|DELIVER IN PERSON|MAIL|onic deposits wake. war| +27211|584547|34548|6|31|50577.12|0.03|0.04|R|F|1992-07-26|1992-08-06|1992-08-18|COLLECT COD|SHIP|s nag carefully exp| +27212|369563|44578|1|31|50609.05|0.00|0.02|A|F|1994-07-27|1994-09-30|1994-08-13|TAKE BACK RETURN|SHIP|gle. blithely pending theodolites sleep | +27212|240426|2931|2|32|43725.12|0.02|0.08|A|F|1994-07-09|1994-08-21|1994-07-14|NONE|AIR|iously regular pinto beans caj| +27212|835687|10720|3|21|34075.44|0.09|0.02|A|F|1994-07-21|1994-09-02|1994-08-02|DELIVER IN PERSON|MAIL| excuses use furiously carefully iron| +27212|380558|5573|4|29|47517.66|0.01|0.05|A|F|1994-07-06|1994-08-29|1994-07-13|DELIVER IN PERSON|FOB|onic theodolites. s| +27212|32541|32542|5|25|36838.50|0.03|0.06|R|F|1994-08-23|1994-08-16|1994-09-04|NONE|TRUCK|s. blithely pending theodolites sl| +27212|900447|12966|6|38|55001.20|0.09|0.04|R|F|1994-08-08|1994-09-09|1994-09-05|DELIVER IN PERSON|FOB|accounts ar| +27213|697548|35088|1|36|55638.36|0.05|0.02|N|O|1997-01-05|1997-02-06|1997-01-21|COLLECT COD|REG AIR| ironic foxes poach carefully. slyly bold | +27213|674656|49683|2|16|26089.92|0.05|0.02|N|O|1996-12-16|1997-03-04|1996-12-28|NONE|MAIL|furiously! furiously final packages slee| +27213|934875|22430|3|9|17188.47|0.06|0.01|N|O|1996-12-29|1997-02-16|1997-01-21|TAKE BACK RETURN|SHIP|hely ironic requests| +27213|430136|17661|4|29|30917.19|0.06|0.03|N|O|1997-03-05|1997-03-11|1997-03-11|DELIVER IN PERSON|TRUCK|y blithely | +27213|286510|11521|5|21|31426.50|0.05|0.00|N|O|1996-12-28|1997-02-28|1996-12-31|COLLECT COD|RAIL|final theod| +27213|359579|34594|6|14|22939.84|0.07|0.01|N|O|1997-01-04|1997-02-23|1997-01-20|DELIVER IN PERSON|FOB|en packages | +27214|618107|30620|1|45|46128.15|0.03|0.00|N|O|1996-03-16|1996-02-25|1996-04-14|NONE|REG AIR| unusual dugouts. regular ideas c| +27214|523836|36347|2|30|55794.30|0.02|0.00|N|O|1996-01-26|1996-01-26|1996-01-29|DELIVER IN PERSON|AIR|ve the blithely even accoun| +27214|105261|5262|3|34|43052.84|0.00|0.07|N|O|1996-01-23|1996-01-29|1996-02-02|NONE|MAIL|ial ideas was slyly | +27214|106952|19455|4|48|94029.60|0.05|0.02|N|O|1996-01-27|1996-01-31|1996-02-19|NONE|RAIL|ve the furiously regular ideas unwind| +27214|529687|4708|5|14|24033.24|0.09|0.01|N|O|1996-02-23|1996-01-29|1996-02-26|NONE|SHIP|y ironic accounts. carefully regular deposi| +27214|447989|23006|6|38|73604.48|0.02|0.05|N|O|1996-03-12|1996-02-11|1996-04-07|NONE|TRUCK|s sleep slyly. slyly| +27215|53259|28262|1|23|27881.75|0.03|0.03|R|F|1993-12-06|1994-02-27|1993-12-26|COLLECT COD|REG AIR|al, bold courts c| +27215|116981|29484|2|14|27971.72|0.06|0.05|R|F|1994-01-05|1994-01-06|1994-01-18|NONE|TRUCK|as. blithely final deposi| +27215|92479|4981|3|19|27957.93|0.00|0.05|A|F|1994-02-20|1994-01-21|1994-03-22|COLLECT COD|AIR|is. furiously even accoun| +27240|693694|6208|1|33|55692.78|0.02|0.03|A|F|1993-09-15|1993-10-15|1993-10-12|TAKE BACK RETURN|MAIL|lently according to t| +27240|913728|26247|2|7|12191.76|0.10|0.01|R|F|1993-10-01|1993-10-19|1993-10-30|NONE|AIR|ions use. | +27240|15486|15487|3|47|65869.56|0.09|0.01|R|F|1993-08-23|1993-09-03|1993-08-24|COLLECT COD|FOB|special frays. slyly unusual asym| +27240|270121|45132|4|37|40371.07|0.08|0.07|A|F|1993-09-19|1993-10-20|1993-09-27|DELIVER IN PERSON|TRUCK|y even idea| +27240|912032|24551|5|22|22967.78|0.07|0.00|R|F|1993-11-16|1993-10-07|1993-12-08|DELIVER IN PERSON|SHIP|luffily final| +27241|108916|21419|1|25|48122.75|0.06|0.04|N|O|1998-01-16|1998-01-14|1998-01-26|NONE|TRUCK|lly above the furiously unusual| +27241|541383|28914|2|50|71218.00|0.04|0.07|N|O|1998-02-16|1998-01-17|1998-03-06|NONE|AIR|ter the blithe| +27241|22217|22218|3|36|41011.56|0.04|0.07|N|O|1998-01-26|1998-01-25|1998-01-28|TAKE BACK RETURN|REG AIR| cajole sly| +27241|388674|38675|4|24|42303.84|0.02|0.02|N|O|1998-03-15|1998-02-10|1998-04-09|TAKE BACK RETURN|TRUCK|usual packages| +27241|437563|25088|5|43|64523.22|0.00|0.04|N|O|1998-02-07|1998-03-07|1998-02-08|COLLECT COD|REG AIR|es across the expres| +27241|119291|6798|6|47|61583.63|0.00|0.04|N|O|1997-12-14|1998-01-25|1998-01-01|TAKE BACK RETURN|SHIP|e carefully af| +27241|911043|23562|7|39|41106.00|0.06|0.07|N|O|1998-01-11|1998-02-16|1998-01-21|TAKE BACK RETURN|REG AIR|t furiously near the even, special de| +27242|899129|11647|1|18|20305.44|0.02|0.04|N|O|1998-04-17|1998-05-13|1998-05-11|DELIVER IN PERSON|TRUCK|anent, unusual deposi| +27242|644323|44324|2|34|43087.86|0.09|0.04|N|O|1998-05-10|1998-05-26|1998-05-11|NONE|RAIL|quickly silent instruction| +27242|135387|22894|3|12|17068.56|0.07|0.01|N|O|1998-05-28|1998-06-11|1998-06-01|TAKE BACK RETURN|MAIL| deposits. final, final instructions acros| +27242|435766|35767|4|47|79981.78|0.07|0.08|N|O|1998-06-09|1998-05-26|1998-06-28|COLLECT COD|MAIL|s. fluffily| +27242|908065|45620|5|15|16095.30|0.05|0.05|N|O|1998-04-20|1998-06-18|1998-05-06|DELIVER IN PERSON|SHIP| fluffily bold requests boost| +27243|743475|43476|1|37|56182.28|0.10|0.03|R|F|1993-05-29|1993-05-26|1993-06-27|NONE|FOB|n accounts nag regular dep| +27243|569804|7338|2|7|13116.46|0.07|0.08|R|F|1993-04-04|1993-05-19|1993-04-30|DELIVER IN PERSON|TRUCK|efully final pinto beans wake above the| +27244|986311|23869|1|30|41918.10|0.07|0.01|N|O|1997-11-20|1997-11-07|1997-12-01|DELIVER IN PERSON|FOB|ely blithe instructions use blithel| +27244|919254|44291|2|18|22917.78|0.09|0.01|N|O|1997-12-05|1997-11-28|1997-12-25|NONE|TRUCK|rmanent instructions sleep carefull| +27244|899651|24686|3|27|44566.47|0.03|0.01|N|O|1998-01-16|1997-11-30|1998-02-13|DELIVER IN PERSON|MAIL|accounts! fluffily ironic requests cajole| +27244|419734|7259|4|28|46303.88|0.03|0.03|N|O|1998-01-25|1997-12-08|1998-01-30|NONE|REG AIR|furiously final f| +27244|458796|21306|5|50|87738.50|0.03|0.03|N|O|1997-12-18|1997-12-18|1997-12-27|NONE|AIR|. furiously regular ideas sleep| +27244|970541|33061|6|9|14503.50|0.06|0.05|N|O|1998-02-01|1997-12-13|1998-03-01|COLLECT COD|SHIP|ironic dinos wake | +27244|872286|22287|7|45|56620.80|0.00|0.08|N|O|1997-11-19|1997-11-30|1997-12-18|NONE|SHIP|uriously sile| +27245|504013|16524|1|15|15254.85|0.10|0.00|N|O|1997-04-12|1997-03-07|1997-05-07|NONE|MAIL|tipliers. blithely i| +27245|939257|26812|2|17|22035.57|0.07|0.01|N|O|1997-03-25|1997-03-10|1997-03-27|COLLECT COD|AIR| the quick packages. | +27245|83941|46443|3|17|32723.98|0.02|0.01|N|O|1997-04-22|1997-02-23|1997-05-06|COLLECT COD|RAIL|thy, final pi| +27246|47186|9687|1|2|2266.36|0.03|0.01|N|O|1998-07-01|1998-05-22|1998-07-09|COLLECT COD|RAIL|fluffily express dolphins after the fluffi| +27246|47563|22564|2|49|74017.44|0.03|0.01|N|O|1998-07-16|1998-05-28|1998-07-20|NONE|SHIP|e slyly regular theodolites. quick| +27246|380105|42613|3|44|52143.96|0.01|0.08|N|O|1998-06-01|1998-06-11|1998-06-09|TAKE BACK RETURN|TRUCK|ely final pinto beans haggle aft| +27246|419088|31597|4|34|34240.04|0.07|0.04|N|O|1998-04-04|1998-05-15|1998-04-06|DELIVER IN PERSON|AIR|refully regular deposits | +27247|369938|19939|1|2|4015.84|0.02|0.00|N|O|1997-11-10|1997-09-22|1997-11-15|DELIVER IN PERSON|MAIL| haggle slyly regular foxes. fur| +27272|874170|36688|1|37|42332.81|0.10|0.00|N|O|1998-04-29|1998-05-27|1998-05-06|TAKE BACK RETURN|TRUCK|ly bold instructions detec| +27273|289005|14016|1|36|35783.64|0.03|0.03|N|O|1997-10-23|1997-11-15|1997-10-26|TAKE BACK RETURN|AIR|ecial requests | +27273|298032|23043|2|37|38110.74|0.07|0.05|N|O|1997-12-08|1997-11-23|1997-12-10|NONE|AIR|gside of the carefully | +27273|16012|41013|3|11|10208.11|0.02|0.07|N|O|1998-01-08|1997-11-26|1998-01-31|COLLECT COD|TRUCK|lyly final accounts haggle| +27274|233536|8545|1|15|22042.80|0.05|0.08|N|O|1996-04-02|1996-03-03|1996-04-21|TAKE BACK RETURN|RAIL|al foxes. slyly final packages sl| +27274|29582|29583|2|35|52905.30|0.00|0.05|N|O|1996-03-06|1996-03-24|1996-04-03|TAKE BACK RETURN|MAIL|slyly according to | +27274|173191|35695|3|5|6320.95|0.03|0.06|N|O|1996-03-27|1996-02-13|1996-04-04|COLLECT COD|AIR|ording to the bl| +27274|817684|42717|4|36|57659.04|0.02|0.01|N|O|1996-02-07|1996-02-28|1996-02-19|DELIVER IN PERSON|TRUCK| deposits sleep fluffily-- final, ironic| +27275|581412|6435|1|43|64215.77|0.06|0.02|R|F|1994-01-14|1993-11-27|1994-02-01|DELIVER IN PERSON|SHIP|le. sentiments sle| +27276|12135|49636|1|7|7329.91|0.04|0.08|N|O|1997-09-03|1997-07-26|1997-09-04|DELIVER IN PERSON|REG AIR| among the fu| +27277|474209|36719|1|34|40228.12|0.08|0.01|N|O|1996-06-27|1996-06-29|1996-07-19|NONE|AIR|ess requests. carefully final pinto beans | +27278|919541|44578|1|42|65541.00|0.05|0.03|A|F|1993-03-10|1993-04-15|1993-03-16|COLLECT COD|MAIL|y ironic deposi| +27278|724106|36621|2|14|15820.98|0.06|0.06|R|F|1993-03-26|1993-04-25|1993-03-27|TAKE BACK RETURN|MAIL| furiously | +27278|47706|47707|3|37|61186.90|0.02|0.00|A|F|1993-03-10|1993-04-20|1993-03-22|DELIVER IN PERSON|FOB|y quickly ironic dol| +27278|781188|18734|4|24|30459.60|0.10|0.01|A|F|1993-03-28|1993-03-28|1993-04-21|TAKE BACK RETURN|RAIL|ss the careful deposits. regular| +27279|934298|21853|1|35|46628.75|0.02|0.04|R|F|1993-04-14|1993-03-24|1993-05-12|COLLECT COD|TRUCK|ccording to th| +27279|734548|22091|2|33|52222.83|0.04|0.08|A|F|1993-05-15|1993-05-15|1993-05-24|COLLECT COD|RAIL|kly ironic pinto beans. regular pinto beans| +27304|541088|3599|1|50|56453.00|0.07|0.03|N|O|1998-08-02|1998-06-20|1998-08-09|COLLECT COD|SHIP|egular dependencies alongside | +27304|56565|19067|2|42|63905.52|0.09|0.05|N|O|1998-08-23|1998-06-05|1998-09-21|DELIVER IN PERSON|REG AIR|ages impress about the slyly final ide| +27304|687466|37467|3|25|36335.75|0.05|0.03|N|O|1998-05-15|1998-06-27|1998-05-30|DELIVER IN PERSON|AIR|g fluffily according to the| +27304|239553|39554|4|29|43283.66|0.10|0.01|N|O|1998-08-20|1998-07-01|1998-09-03|DELIVER IN PERSON|MAIL|ly above th| +27305|917362|4917|1|26|35862.32|0.06|0.05|N|O|1997-06-17|1997-06-16|1997-07-15|NONE|RAIL|nts wake permanently. fluffily| +27305|86422|36423|2|44|61970.48|0.09|0.08|N|O|1997-08-12|1997-06-04|1997-09-03|DELIVER IN PERSON|TRUCK|ual pinto beans nag enticingl| +27305|490080|27608|3|5|5350.30|0.10|0.06|N|O|1997-06-24|1997-06-14|1997-06-26|DELIVER IN PERSON|REG AIR|lly final packages wake furiously pending| +27305|763527|38558|4|41|65210.09|0.01|0.03|N|O|1997-07-15|1997-06-26|1997-07-25|COLLECT COD|MAIL|y unusual pin| +27305|598238|48239|5|40|53448.40|0.06|0.00|N|O|1997-07-01|1997-07-20|1997-07-05|DELIVER IN PERSON|FOB|y final packa| +27306|360833|48355|1|12|22725.84|0.05|0.04|N|O|1996-03-10|1996-03-03|1996-03-16|COLLECT COD|REG AIR|es pending pinto| +27306|510231|47762|2|4|4964.84|0.01|0.04|N|O|1996-01-22|1996-02-02|1996-01-23|COLLECT COD|FOB|wake blithely. quickl| +27306|443701|18718|3|19|31248.92|0.03|0.05|N|O|1996-02-02|1996-02-15|1996-02-29|NONE|SHIP|ffily regular| +27306|279877|29878|4|3|5570.58|0.02|0.03|N|O|1996-03-11|1996-02-29|1996-04-04|TAKE BACK RETURN|MAIL|s sleep slyly above the bli| +27306|884916|22468|5|41|77935.67|0.04|0.03|N|O|1996-04-02|1996-02-09|1996-04-05|TAKE BACK RETURN|SHIP|forges cajole slyly. | +27306|769806|7352|6|29|54397.33|0.07|0.00|N|O|1996-03-14|1996-01-22|1996-04-10|COLLECT COD|REG AIR|l accounts are. pending, fi| +27307|670638|20639|1|49|78821.40|0.05|0.05|N|O|1996-01-04|1995-11-24|1996-01-10|TAKE BACK RETURN|RAIL|ully special req| +27308|397815|35337|1|2|3825.60|0.01|0.03|R|F|1993-04-17|1993-04-25|1993-05-02|DELIVER IN PERSON|AIR|e regular packages caj| +27308|60004|22506|2|41|39524.00|0.01|0.01|A|F|1993-05-06|1993-05-30|1993-05-27|COLLECT COD|FOB|nal deposits alongside o| +27308|475178|37688|3|42|48432.30|0.10|0.03|A|F|1993-03-19|1993-04-17|1993-04-11|COLLECT COD|RAIL| final pinto beans promise above the carefu| +27308|305084|30097|4|39|42473.73|0.02|0.05|R|F|1993-06-02|1993-06-08|1993-06-07|TAKE BACK RETURN|SHIP|ter the furiously final theodoli| +27308|533531|21062|5|35|54757.85|0.01|0.02|A|F|1993-06-22|1993-04-23|1993-07-21|NONE|SHIP|each carefully regular, ironic packag| +27308|45988|45989|6|43|83161.14|0.07|0.00|R|F|1993-06-14|1993-05-06|1993-06-16|DELIVER IN PERSON|FOB|s. carefully slow depos| +27309|21677|34178|1|4|6394.68|0.00|0.07|N|O|1998-01-09|1998-01-16|1998-01-10|NONE|AIR|eposits. i| +27310|975264|37784|1|24|32141.28|0.07|0.08|N|O|1996-08-16|1996-08-06|1996-09-14|DELIVER IN PERSON|REG AIR|ter the fluffily unusual dependencies. qu| +27310|259603|34614|2|14|21876.26|0.01|0.02|N|O|1996-08-16|1996-08-02|1996-09-07|COLLECT COD|MAIL| quickly final requests ar| +27310|134151|34152|3|27|31999.05|0.01|0.08|N|O|1996-09-04|1996-09-11|1996-09-26|DELIVER IN PERSON|REG AIR| furiously. foxes affix carefully after the| +27310|661710|36737|4|1|1671.68|0.09|0.03|N|O|1996-07-24|1996-09-09|1996-08-05|COLLECT COD|FOB| sentiments. carefully even accounts in| +27310|343965|6472|5|40|80358.00|0.09|0.07|N|O|1996-08-23|1996-07-24|1996-09-04|TAKE BACK RETURN|RAIL|s boost. thinly final in| +27311|969807|7365|1|8|15014.08|0.10|0.06|A|F|1993-01-13|1993-01-23|1993-01-18|DELIVER IN PERSON|RAIL|e carefully ironic ideas. idly silent dep| +27311|531268|43779|2|26|33780.24|0.03|0.01|A|F|1993-03-07|1993-02-12|1993-03-08|TAKE BACK RETURN|TRUCK|along the slyly spe| +27311|11242|48743|3|39|44976.36|0.04|0.07|R|F|1992-12-02|1992-12-25|1992-12-19|DELIVER IN PERSON|FOB|heodolites use. final, even reques| +27311|931348|6385|4|4|5517.20|0.05|0.01|A|F|1992-12-30|1992-12-20|1993-01-01|DELIVER IN PERSON|RAIL|ffily bold foxes against| +27311|164767|39774|5|3|5495.28|0.00|0.07|R|F|1992-12-12|1993-01-21|1992-12-15|TAKE BACK RETURN|REG AIR|rs among the slyly idle instruction| +27336|309034|21541|1|29|30247.58|0.07|0.01|A|F|1992-04-24|1992-03-21|1992-05-18|NONE|SHIP|s detect evenly blithely| +27336|926390|26391|2|48|67984.80|0.04|0.04|A|F|1992-04-01|1992-03-08|1992-04-04|NONE|AIR|ven pinto beans.| +27337|653366|28393|1|43|56731.19|0.06|0.07|N|O|1998-06-02|1998-06-05|1998-06-04|COLLECT COD|FOB| cajole carefully. furiously bold account| +27338|688611|1125|1|36|57584.88|0.00|0.07|N|O|1997-02-06|1997-01-16|1997-03-01|NONE|RAIL|nal deposits wake c| +27338|476377|38887|2|38|51427.30|0.00|0.03|N|O|1996-11-18|1997-01-14|1996-11-21|NONE|SHIP|packages. regular packages | +27339|804504|42053|1|48|67606.08|0.07|0.03|N|O|1997-06-23|1997-08-07|1997-06-29|DELIVER IN PERSON|AIR|egular accounts. regular ex| +27340|962772|37811|1|18|33025.14|0.03|0.05|N|O|1996-06-26|1996-05-17|1996-06-30|NONE|SHIP|es: carefully even | +27340|305735|30748|2|21|36555.12|0.09|0.02|N|O|1996-07-08|1996-06-07|1996-08-05|COLLECT COD|MAIL|y regular asympt| +27340|475124|25125|3|16|17585.60|0.07|0.02|N|O|1996-05-12|1996-05-20|1996-05-19|COLLECT COD|TRUCK|ounts doze furiously final pla| +27340|398399|35921|4|19|28450.22|0.07|0.01|N|O|1996-05-17|1996-05-27|1996-06-15|TAKE BACK RETURN|SHIP|e blithely. blithely special packages us| +27340|880775|5810|5|33|57939.09|0.00|0.03|N|O|1996-06-10|1996-04-30|1996-06-12|NONE|TRUCK| instructions. express | +27341|937223|37224|1|5|6300.90|0.09|0.06|N|O|1996-03-23|1996-04-04|1996-04-01|COLLECT COD|REG AIR|s. platelets nod always. fluffily s| +27341|891277|28829|2|46|58338.58|0.09|0.00|N|O|1996-05-15|1996-03-27|1996-06-12|NONE|FOB|y above the express| +27341|679662|4689|3|16|26266.08|0.03|0.06|N|O|1996-04-12|1996-04-14|1996-05-10|COLLECT COD|MAIL|al requests cajole. regular requests wa| +27342|588560|13583|1|48|79129.92|0.03|0.04|N|O|1996-02-10|1996-04-13|1996-02-29|TAKE BACK RETURN|TRUCK|ckly. doggedly regu| +27342|924256|24257|2|23|29444.83|0.01|0.02|N|O|1996-02-05|1996-04-10|1996-02-19|NONE|REG AIR|g asymptotes wake ca| +27343|266667|41678|1|1|1633.65|0.02|0.01|A|F|1994-06-10|1994-06-22|1994-07-04|DELIVER IN PERSON|SHIP|iously special foxes. ideas nag. ironica| +27343|858051|8052|2|14|14126.14|0.06|0.02|R|F|1994-06-05|1994-07-07|1994-06-10|NONE|SHIP|ickly regular ideas maintain| +27343|261101|11102|3|34|36111.06|0.10|0.00|A|F|1994-05-03|1994-06-18|1994-05-21|TAKE BACK RETURN|RAIL|sits. pending, | +27368|610151|35176|1|34|36078.08|0.01|0.03|R|F|1992-10-21|1992-12-01|1992-11-11|DELIVER IN PERSON|RAIL|es after t| +27368|793796|6312|2|40|75590.40|0.02|0.06|A|F|1992-11-03|1992-11-24|1992-12-03|DELIVER IN PERSON|SHIP|bove the fur| +27368|318564|6083|3|18|28485.90|0.05|0.07|R|F|1993-02-05|1992-12-26|1993-02-25|COLLECT COD|FOB|ost final dolphins. silent platelets| +27368|94414|6916|4|37|52111.17|0.02|0.08|R|F|1992-10-27|1992-11-27|1992-11-09|COLLECT COD|RAIL|regular somas across the | +27368|815347|15348|5|10|12623.00|0.06|0.01|R|F|1992-11-07|1992-11-25|1992-11-09|NONE|MAIL|eans. unusual theodolites cajole| +27368|525164|37675|6|17|20215.38|0.03|0.06|A|F|1993-01-11|1992-12-28|1993-01-21|NONE|FOB|reful package| +27369|474050|11578|1|15|15360.45|0.07|0.03|N|O|1997-02-24|1997-02-28|1997-03-01|NONE|REG AIR|furiously foxes. carefully enticing Tiresi| +27369|345869|33388|2|3|5744.55|0.03|0.08|N|O|1996-12-26|1997-02-11|1997-01-13|NONE|MAIL|ainst the blithely regular theodolites. eve| +27369|4048|29049|3|12|11424.48|0.02|0.04|N|O|1997-01-29|1997-01-19|1997-02-21|TAKE BACK RETURN|REG AIR|uests. daringly ironic pinto beans thr| +27370|203607|41120|1|27|40785.93|0.01|0.06|N|O|1996-01-06|1995-11-30|1996-01-09|TAKE BACK RETURN|TRUCK|lithely among the final, regular| +27371|922412|47449|1|3|4303.11|0.05|0.08|N|O|1996-08-06|1996-09-29|1996-08-13|NONE|FOB|the special requests. theod| +27371|973509|11067|2|21|33231.66|0.08|0.08|N|O|1996-10-19|1996-09-17|1996-11-06|NONE|RAIL|fluffily ironic deposit| +27371|749315|49316|3|7|9549.96|0.04|0.02|N|O|1996-09-25|1996-08-08|1996-10-17|TAKE BACK RETURN|MAIL|efully ironic depende| +27372|5323|5324|1|15|18424.80|0.06|0.04|A|F|1994-05-10|1994-06-11|1994-06-08|DELIVER IN PERSON|TRUCK|iously. quick| +27372|457882|32901|2|37|68074.82|0.06|0.00|R|F|1994-06-23|1994-05-27|1994-07-14|COLLECT COD|FOB|sleep along the final accounts. p| +27372|615956|3493|3|8|14975.36|0.08|0.07|R|F|1994-05-17|1994-05-15|1994-06-14|DELIVER IN PERSON|SHIP|even accounts wake accordin| +27372|359577|22085|4|18|29458.08|0.04|0.01|R|F|1994-04-08|1994-06-23|1994-04-27|COLLECT COD|REG AIR|ffix carefully even, final esc| +27373|876475|26476|1|10|14514.30|0.05|0.00|R|F|1993-02-15|1993-01-24|1993-03-06|DELIVER IN PERSON|FOB|carefully special account| +27373|913921|13922|2|12|23218.56|0.04|0.06|A|F|1992-12-30|1993-01-20|1993-01-28|COLLECT COD|TRUCK|etect quickly at | +27373|255674|30685|3|12|19555.92|0.09|0.08|R|F|1993-01-05|1992-12-25|1993-01-10|DELIVER IN PERSON|AIR|. slyly regular in| +27373|98252|10754|4|34|42508.50|0.06|0.04|R|F|1993-01-14|1993-02-12|1993-01-19|DELIVER IN PERSON|RAIL|yly carefully special accounts. carefully| +27373|315868|40881|5|3|5651.55|0.05|0.02|R|F|1993-02-20|1993-01-15|1993-02-21|NONE|REG AIR| use requests. final pinto | +27374|182688|20198|1|17|30101.56|0.04|0.05|A|F|1992-08-05|1992-06-02|1992-09-02|COLLECT COD|RAIL|cajole. exp| +27375|31107|43608|1|19|19723.90|0.01|0.01|A|F|1992-04-30|1992-03-21|1992-05-17|DELIVER IN PERSON|AIR|ions haggle after the fu| +27375|809231|9232|2|22|25084.18|0.09|0.06|R|F|1992-03-01|1992-03-12|1992-03-30|NONE|SHIP|o beans. s| +27375|733450|33451|3|28|41535.76|0.01|0.01|A|F|1992-04-24|1992-03-06|1992-05-17|NONE|TRUCK|he blithely sp| +27375|83108|20612|4|9|9819.90|0.04|0.04|R|F|1992-03-13|1992-03-09|1992-04-07|TAKE BACK RETURN|TRUCK|oxes. fluffily | +27375|793418|5934|5|19|28716.22|0.08|0.07|R|F|1992-03-22|1992-02-21|1992-04-16|NONE|TRUCK|ind the slyly ironic| +27375|964233|26753|6|45|58373.55|0.07|0.07|R|F|1992-03-17|1992-03-06|1992-03-23|NONE|MAIL|ounts. platelets h| +27400|31387|43888|1|43|56690.34|0.09|0.05|A|F|1994-02-22|1994-01-30|1994-03-04|NONE|AIR|nal packages. carefully pending accounts ab| +27400|520603|8134|2|10|16235.80|0.09|0.07|R|F|1994-01-02|1994-01-28|1994-01-07|TAKE BACK RETURN|TRUCK|nic asymptote| +27400|771921|34437|3|12|23914.68|0.09|0.00|A|F|1993-12-20|1994-01-07|1993-12-28|COLLECT COD|REG AIR|ross the furiously final| +27400|664201|1741|4|36|41946.12|0.01|0.02|R|F|1994-01-13|1994-01-22|1994-02-06|DELIVER IN PERSON|FOB|refully pending pa| +27400|210384|47897|5|23|29770.51|0.00|0.02|A|F|1994-01-27|1994-02-08|1994-02-25|NONE|TRUCK|gular packages breac| +27401|278769|16285|1|40|69910.00|0.10|0.00|A|F|1993-06-04|1993-06-15|1993-06-07|COLLECT COD|SHIP|et requests haggle quick| +27401|254917|29928|2|47|87979.30|0.08|0.05|A|F|1993-07-04|1993-07-03|1993-07-12|COLLECT COD|SHIP|oxes boost f| +27401|377381|27382|3|27|39375.99|0.03|0.06|R|F|1993-06-21|1993-06-08|1993-07-02|DELIVER IN PERSON|REG AIR|ve the quickly ironic accounts.| +27401|636549|36550|4|36|53478.36|0.09|0.05|A|F|1993-08-20|1993-07-16|1993-09-10|DELIVER IN PERSON|SHIP|ake carefully quickl| +27402|239869|2374|1|37|66927.45|0.08|0.02|N|O|1996-03-05|1996-03-26|1996-03-15|DELIVER IN PERSON|MAIL|accounts. slyly regular packages engage| +27403|369175|19176|1|14|17418.24|0.08|0.06|N|O|1997-02-24|1997-01-05|1997-03-16|TAKE BACK RETURN|REG AIR|g warthogs affix across the fluff| +27403|709008|46551|2|32|32543.04|0.09|0.03|N|O|1997-03-03|1997-02-06|1997-03-28|DELIVER IN PERSON|FOB|ts wake against the fluffily ironic | +27404|83532|46034|1|7|10608.71|0.06|0.00|N|O|1996-03-17|1996-04-05|1996-04-10|COLLECT COD|AIR|egular tithes snooz| +27405|808988|34021|1|46|87259.24|0.05|0.01|A|F|1994-07-14|1994-06-06|1994-07-22|COLLECT COD|REG AIR|s detect after the slyly eve| +27406|308135|33148|1|49|56012.88|0.04|0.08|N|O|1995-12-11|1996-01-21|1996-01-06|TAKE BACK RETURN|REG AIR|counts. even packages haggl| +27407|162898|12899|1|9|17648.01|0.03|0.02|A|F|1994-08-14|1994-08-11|1994-09-04|NONE|TRUCK|t the even r| +27407|810461|10462|2|45|61713.90|0.09|0.04|R|F|1994-07-13|1994-09-03|1994-07-23|DELIVER IN PERSON|RAIL|yers. blithely unusual | +27407|416799|16800|3|10|17157.70|0.10|0.00|A|F|1994-08-24|1994-07-29|1994-08-31|DELIVER IN PERSON|FOB|ly even requests. final platelets do| +27407|124244|24245|4|1|1268.24|0.10|0.00|R|F|1994-08-15|1994-08-02|1994-08-20|TAKE BACK RETURN|RAIL|s. even packages affix slyl| +27432|332954|20473|1|43|85438.42|0.00|0.08|N|O|1997-03-09|1997-03-14|1997-03-26|DELIVER IN PERSON|MAIL| unusual accounts believe ca| +27432|950309|37867|2|10|13592.60|0.06|0.04|N|O|1997-04-02|1997-03-13|1997-04-05|DELIVER IN PERSON|RAIL|yly final packages cajole carefull| +27432|831772|31773|3|38|64741.74|0.05|0.06|N|O|1997-02-09|1997-03-08|1997-02-20|DELIVER IN PERSON|FOB|sly express reque| +27432|581728|6751|4|16|28955.20|0.10|0.04|N|O|1997-04-01|1997-02-22|1997-04-09|DELIVER IN PERSON|TRUCK|ter the platelets. never express | +27432|97840|35344|5|19|34918.96|0.07|0.03|N|O|1997-05-18|1997-02-22|1997-06-08|COLLECT COD|RAIL|latelets kindle f| +27433|383271|20793|1|19|25730.94|0.05|0.03|R|F|1993-11-15|1993-10-19|1993-11-22|COLLECT COD|REG AIR| across the blithely ironic theodolites.| +27433|633460|20997|2|6|8360.58|0.03|0.05|R|F|1993-08-26|1993-10-24|1993-09-02|NONE|AIR|kages boost sly| +27434|367811|42826|1|18|33818.40|0.02|0.01|R|F|1994-12-06|1995-02-12|1994-12-25|NONE|SHIP|eep slyly accor| +27434|795332|7848|2|49|69937.70|0.06|0.04|A|F|1995-03-03|1995-01-13|1995-03-08|COLLECT COD|FOB|ccounts across the fluffily brave asympto| +27434|136120|11125|3|10|11561.20|0.03|0.05|A|F|1995-01-25|1995-01-21|1995-02-06|TAKE BACK RETURN|RAIL|of the special, pending theodol| +27435|67276|29778|1|42|52217.34|0.10|0.02|N|O|1995-07-16|1995-08-25|1995-07-27|DELIVER IN PERSON|AIR|. slyly silent deposits use along t| +27435|702435|2436|2|20|28748.00|0.10|0.03|N|O|1995-10-15|1995-08-21|1995-10-31|NONE|RAIL|ost accounts. carefully r| +27436|208675|46188|1|14|22171.24|0.04|0.02|R|F|1994-08-28|1994-08-06|1994-09-08|TAKE BACK RETURN|FOB|l tithes are carefully acc| +27436|188540|26050|2|10|16285.40|0.01|0.05|R|F|1994-09-03|1994-08-10|1994-09-21|NONE|AIR|otes. carefully even theodolites imp| +27436|775777|38293|3|7|12969.18|0.10|0.07|A|F|1994-08-08|1994-07-05|1994-09-03|NONE|SHIP|he regular packages are quickly according t| +27436|477284|2303|4|24|30270.24|0.09|0.05|R|F|1994-05-22|1994-07-19|1994-05-23|DELIVER IN PERSON|MAIL|sual ideas boost carefully quickly | +27436|697593|35133|5|9|14315.04|0.07|0.02|A|F|1994-06-24|1994-07-06|1994-07-08|COLLECT COD|RAIL|xpress deposits cajole slyly final theo| +27436|429063|41572|6|16|15872.64|0.05|0.00|R|F|1994-08-20|1994-06-30|1994-09-16|NONE|TRUCK|grate about the final, regular acco| +27437|493958|6468|1|38|74173.34|0.00|0.05|A|F|1992-07-09|1992-08-09|1992-07-30|NONE|REG AIR|ronic realms about the packages are across| +27437|948676|11195|2|37|63811.31|0.05|0.08|R|F|1992-09-16|1992-08-27|1992-09-17|TAKE BACK RETURN|FOB| ideas. decoys boost quickly alo| +27438|959270|46828|1|7|9304.61|0.10|0.04|N|O|1996-07-27|1996-08-04|1996-08-16|DELIVER IN PERSON|SHIP|arefully at the slyly pending a| +27438|445443|32968|2|32|44429.44|0.09|0.07|N|O|1996-06-21|1996-08-21|1996-07-06|COLLECT COD|REG AIR| requests; requests haggle fur| +27439|387114|12129|1|31|37234.10|0.08|0.06|N|O|1997-02-15|1996-12-28|1997-02-26|NONE|RAIL|along the blithely unusual| +27439|210054|22559|2|49|47237.96|0.04|0.06|N|O|1997-01-07|1997-01-18|1997-02-02|NONE|MAIL|es: carefully express dependencies among t| +27439|366723|4245|3|21|37583.91|0.06|0.01|N|O|1996-12-23|1997-01-22|1997-01-01|DELIVER IN PERSON|FOB|tes sleep. fluf| +27464|835157|10190|1|47|51329.17|0.10|0.00|A|F|1993-10-10|1993-08-28|1993-11-08|TAKE BACK RETURN|AIR|sts promise according to the carefully r| +27465|944488|19525|1|25|38311.00|0.06|0.04|R|F|1994-12-16|1995-01-24|1995-01-12|COLLECT COD|REG AIR|ts. blithely f| +27465|993203|43204|2|21|27219.36|0.03|0.01|R|F|1994-12-30|1995-01-23|1995-01-10|TAKE BACK RETURN|AIR| packages haggle regular, special | +27465|750709|710|3|1|1759.67|0.09|0.01|R|F|1995-01-15|1994-12-24|1995-02-03|NONE|TRUCK|. quickly regular pla| +27465|157913|20417|4|39|76865.49|0.03|0.00|R|F|1995-03-03|1995-01-19|1995-04-01|COLLECT COD|MAIL|thinly regularly even pi| +27465|40229|15230|5|14|16369.08|0.01|0.03|A|F|1995-01-07|1995-02-20|1995-01-15|DELIVER IN PERSON|SHIP|inal deposits are carefully alongside of t| +27466|111738|36743|1|18|31495.14|0.10|0.05|N|O|1997-12-01|1997-12-11|1997-12-06|NONE|SHIP|al packages cajole furiously. furious| +27466|974769|24770|2|9|16593.48|0.04|0.06|N|O|1997-10-03|1997-10-31|1997-10-06|DELIVER IN PERSON|AIR|eas. furio| +27467|863244|796|1|25|30180.00|0.08|0.04|R|F|1992-03-27|1992-04-28|1992-04-19|COLLECT COD|REG AIR|symptotes. regular packages ha| +27467|537953|37954|2|15|29863.95|0.09|0.05|A|F|1992-04-18|1992-04-07|1992-04-30|COLLECT COD|AIR|slyly about t| +27467|372390|47405|3|5|7311.90|0.03|0.07|R|F|1992-05-02|1992-03-30|1992-05-04|TAKE BACK RETURN|RAIL|y against the theodolite| +27467|755895|43441|4|22|42918.92|0.03|0.07|A|F|1992-03-11|1992-04-08|1992-04-09|COLLECT COD|AIR|ular packages nag alongside of the q| +27467|318137|43150|5|39|45049.68|0.05|0.05|R|F|1992-06-20|1992-05-03|1992-06-25|COLLECT COD|SHIP|might are fluff| +27468|417758|5283|1|27|45244.71|0.01|0.04|R|F|1994-10-01|1994-11-01|1994-10-02|COLLECT COD|SHIP|usly ironic ins| +27468|249781|49782|2|35|60576.95|0.08|0.06|A|F|1994-09-27|1994-10-26|1994-10-23|TAKE BACK RETURN|RAIL| ironic packag| +27468|65598|3102|3|50|78179.50|0.08|0.08|A|F|1994-09-10|1994-11-01|1994-09-30|DELIVER IN PERSON|SHIP|s boost carefully among the ironic d| +27468|501436|38967|4|3|4312.23|0.03|0.00|A|F|1994-10-26|1994-09-27|1994-11-17|TAKE BACK RETURN|SHIP|ithely platelets. carefully en| +27468|632583|20120|5|9|13639.95|0.08|0.07|R|F|1994-11-18|1994-10-22|1994-12-01|NONE|MAIL|c packages. express, regular| +27468|809358|21875|6|50|63365.50|0.06|0.05|A|F|1994-09-24|1994-11-02|1994-10-10|TAKE BACK RETURN|MAIL| pinto beans above the sil| +27469|76511|26512|1|17|25287.67|0.01|0.06|A|F|1994-09-12|1994-08-02|1994-10-06|DELIVER IN PERSON|RAIL|ual deposits. carefull| +27469|911876|24395|2|24|45307.92|0.07|0.04|R|F|1994-09-05|1994-09-02|1994-10-03|DELIVER IN PERSON|REG AIR|nding, iro| +27469|884686|47204|3|6|10023.84|0.08|0.07|A|F|1994-10-05|1994-07-29|1994-10-19|COLLECT COD|MAIL|n asymptotes. | +27470|313683|38696|1|18|30540.06|0.00|0.01|N|O|1996-04-01|1996-05-02|1996-04-19|TAKE BACK RETURN|TRUCK| ideas promise theodolites. sly| +27470|65315|27817|2|21|26886.51|0.08|0.00|N|O|1996-06-25|1996-04-28|1996-07-20|TAKE BACK RETURN|RAIL|eposits detect slyly furiously| +27471|830239|5272|1|13|15199.47|0.03|0.00|R|F|1992-12-12|1992-12-11|1993-01-04|COLLECT COD|RAIL|theodolites? slyly final package| +27471|817148|29665|2|20|21302.00|0.04|0.01|R|F|1992-12-08|1993-01-23|1993-01-06|NONE|REG AIR| quickly unusual accounts| +27471|805441|5442|3|4|5385.60|0.10|0.05|A|F|1993-01-24|1992-12-21|1993-01-31|DELIVER IN PERSON|FOB|asymptotes | +27496|645300|7813|1|42|52301.34|0.07|0.06|R|F|1995-03-28|1995-02-28|1995-04-03|TAKE BACK RETURN|SHIP|nt ideas. ideas wake never. final, r| +27496|541437|41438|2|16|23654.56|0.04|0.01|A|F|1995-02-28|1995-03-15|1995-03-21|COLLECT COD|AIR|ages wake slyly against t| +27497|987678|37679|1|16|28250.08|0.01|0.08|N|O|1997-08-27|1997-09-09|1997-09-15|TAKE BACK RETURN|REG AIR|he final accounts wake carefully abo| +27497|887378|12413|2|15|20479.95|0.01|0.06|N|O|1997-09-08|1997-09-14|1997-10-08|DELIVER IN PERSON|RAIL|leep fluffi| +27497|161892|24396|3|34|66432.26|0.00|0.06|N|O|1997-11-10|1997-09-09|1997-12-09|COLLECT COD|SHIP|xes haggle carefully permanent de| +27497|914833|14834|4|37|68368.23|0.06|0.05|N|O|1997-09-15|1997-10-21|1997-09-21|DELIVER IN PERSON|TRUCK|ly. blithely regular sentiments ab| +27497|587453|12476|5|50|77021.50|0.06|0.01|N|O|1997-11-10|1997-10-23|1997-12-07|TAKE BACK RETURN|RAIL| haggle furiously above the fi| +27498|809664|47213|1|19|29898.78|0.01|0.01|N|O|1996-12-01|1997-01-23|1996-12-11|NONE|SHIP|furiously bold packages. deposits wake care| +27498|12498|24999|2|13|18336.37|0.08|0.05|N|O|1996-11-07|1996-12-23|1996-11-19|TAKE BACK RETURN|RAIL|onic accoun| +27498|39113|39114|3|40|42084.40|0.04|0.05|N|O|1997-02-12|1996-12-02|1997-02-13|COLLECT COD|MAIL|pitaphs cajole furi| +27498|368616|43631|4|49|82545.40|0.07|0.06|N|O|1996-11-11|1996-12-31|1996-11-22|COLLECT COD|REG AIR|its haggle fluffily regular deposits. e| +27498|316481|28988|5|1|1497.47|0.04|0.08|N|O|1996-12-23|1996-12-10|1997-01-21|NONE|RAIL|uests are. instructions wake furi| +27499|165672|40679|1|40|69506.80|0.04|0.04|N|O|1997-05-17|1997-05-26|1997-05-28|NONE|AIR|eposits sleep s| +27499|442544|42545|2|7|10405.64|0.03|0.00|N|O|1997-07-23|1997-07-05|1997-07-27|TAKE BACK RETURN|FOB| bold foxes wa| +27499|834488|22037|3|9|12801.96|0.03|0.04|N|O|1997-08-19|1997-06-30|1997-08-26|NONE|TRUCK|xes. blithely even packages sl| +27499|228033|40538|4|29|27869.58|0.04|0.00|N|O|1997-07-23|1997-06-01|1997-08-05|COLLECT COD|AIR|. final re| +27499|541886|16907|5|45|86753.70|0.00|0.06|N|O|1997-05-13|1997-07-18|1997-06-02|COLLECT COD|AIR|. furiously final d| +27499|464850|2378|6|19|34481.77|0.02|0.06|N|O|1997-05-31|1997-05-28|1997-06-11|DELIVER IN PERSON|REG AIR| the bold | +27499|725331|25332|7|34|46114.20|0.10|0.07|N|O|1997-07-28|1997-06-15|1997-08-04|NONE|RAIL|le furiousl| +27500|634039|9064|1|11|10703.00|0.08|0.06|N|O|1996-04-27|1996-06-04|1996-05-18|DELIVER IN PERSON|TRUCK|into beans must affix quick| +27500|279902|42408|2|50|94094.50|0.07|0.05|N|O|1996-07-09|1996-05-10|1996-07-22|COLLECT COD|MAIL| use slyly unusual, regula| +27500|306264|43783|3|6|7621.50|0.10|0.02|N|O|1996-06-23|1996-06-01|1996-07-07|TAKE BACK RETURN|REG AIR| deposits boost slyly among the asymp| +27500|369706|32214|4|26|46167.94|0.10|0.08|N|O|1996-06-04|1996-06-18|1996-06-09|COLLECT COD|REG AIR|e furiously ev| +27500|647708|10221|5|42|69538.14|0.01|0.08|N|O|1996-04-18|1996-05-20|1996-05-13|NONE|RAIL|around the final d| +27500|17791|17792|6|4|6835.16|0.05|0.01|N|O|1996-07-14|1996-06-27|1996-08-03|COLLECT COD|TRUCK| special, even accounts: regular, bold| +27500|999191|49192|7|43|55476.45|0.08|0.06|N|O|1996-05-09|1996-06-02|1996-06-07|TAKE BACK RETURN|TRUCK|sits wake b| +27501|392018|29540|1|2|2220.00|0.00|0.08|R|F|1993-11-01|1993-12-23|1993-11-24|NONE|RAIL|ges integrate blithely since the| +27501|643933|43934|2|41|76952.90|0.08|0.04|R|F|1993-11-02|1993-12-02|1993-11-13|DELIVER IN PERSON|TRUCK| final tithes. final ideas| +27501|580114|17648|3|40|47763.60|0.05|0.04|R|F|1993-10-29|1993-12-02|1993-11-20|TAKE BACK RETURN|SHIP|foxes. carefully express| +27501|962871|12872|4|1|1933.83|0.07|0.00|A|F|1993-10-31|1994-01-15|1993-11-01|TAKE BACK RETURN|RAIL|y unusual warhorses along the furiously e| +27501|957459|7460|5|28|42459.48|0.04|0.06|A|F|1994-01-12|1993-12-28|1994-02-05|NONE|MAIL|ely. even | +27501|999160|11680|6|32|40291.84|0.10|0.03|R|F|1994-01-04|1993-12-20|1994-01-17|COLLECT COD|SHIP| unusual, regular somas a| +27502|156516|31523|1|37|58182.87|0.00|0.05|N|O|1996-06-26|1996-06-15|1996-07-05|TAKE BACK RETURN|RAIL|l requests w| +27502|563798|26310|2|5|9308.85|0.00|0.00|N|O|1996-05-11|1996-06-10|1996-05-25|DELIVER IN PERSON|AIR|tes serve furiou| +27502|747577|22606|3|45|73104.30|0.04|0.04|N|O|1996-06-30|1996-05-15|1996-07-29|DELIVER IN PERSON|SHIP|ts cajole slyly. regular, dog| +27502|515296|15297|4|28|36715.56|0.09|0.07|N|O|1996-07-10|1996-05-22|1996-07-21|DELIVER IN PERSON|MAIL|ep according to the| +27502|574313|49336|5|23|31907.67|0.09|0.03|N|O|1996-04-25|1996-05-11|1996-05-14|NONE|TRUCK|requests! carefully | +27502|468928|43947|6|44|83463.60|0.01|0.04|N|O|1996-04-17|1996-06-16|1996-04-21|NONE|AIR|ic deposits nag speci| +27502|261403|11404|7|27|36838.53|0.06|0.07|N|O|1996-06-19|1996-05-20|1996-07-16|TAKE BACK RETURN|RAIL|express packages sleep. foxes affix. regu| +27503|383991|46499|1|45|93374.10|0.04|0.07|N|O|1996-07-27|1996-08-19|1996-08-15|NONE|FOB|ual pinto beans boost. b| +27503|734342|34343|2|5|6881.55|0.02|0.04|N|O|1996-10-18|1996-09-07|1996-10-30|NONE|AIR| fluffily quiet account| +27503|75677|680|3|45|74370.15|0.09|0.01|N|O|1996-10-31|1996-10-03|1996-11-19|COLLECT COD|SHIP|he fluffily unusual somas. | +27503|894199|19234|4|42|50112.30|0.02|0.00|N|O|1996-10-11|1996-08-12|1996-10-21|NONE|MAIL| hinder caref| +27503|788485|13516|5|17|26748.65|0.09|0.03|N|O|1996-11-03|1996-10-07|1996-11-10|COLLECT COD|REG AIR|ns cajole ruthlessly. furious| +27503|62149|49653|6|35|38889.90|0.07|0.02|N|O|1996-08-14|1996-09-14|1996-09-07|TAKE BACK RETURN|AIR|unusual asymptotes. slyly express instructi| +27503|524202|49223|7|6|7357.08|0.08|0.02|N|O|1996-09-18|1996-08-16|1996-10-07|TAKE BACK RETURN|FOB|lar foxes cajole. blithely special pin| +27528|247974|22983|1|19|36517.24|0.01|0.01|R|F|1992-12-08|1992-10-28|1992-12-14|NONE|SHIP|s. idle pinto beans wake furiously across| +27528|696883|46884|2|28|52635.80|0.03|0.06|A|F|1992-10-13|1992-11-13|1992-11-03|NONE|TRUCK|nding accounts wake quickly after the| +27529|358266|8267|1|29|38403.25|0.00|0.08|N|O|1995-10-23|1995-08-20|1995-11-10|NONE|RAIL| express, unusual accounts sleep a| +27530|662830|12831|1|12|21513.60|0.02|0.03|N|O|1998-05-20|1998-04-12|1998-06-06|DELIVER IN PERSON|RAIL|uests. deposits haggle about the dogge| +27530|179665|17175|2|18|31403.88|0.10|0.01|N|O|1998-04-20|1998-03-13|1998-04-21|DELIVER IN PERSON|FOB|ndencies. regular deposits affix f| +27530|613710|13711|3|38|61699.84|0.08|0.05|N|O|1998-03-27|1998-04-07|1998-04-07|NONE|SHIP|pendencies. evenly unusual foxes| +27530|611464|36489|4|26|35761.18|0.02|0.07|N|O|1998-05-14|1998-03-23|1998-06-10|COLLECT COD|RAIL| requests! furiously ironic pinto be| +27531|68058|43061|1|3|3078.15|0.02|0.02|R|F|1993-07-08|1993-06-08|1993-07-14|NONE|FOB|ous, even | +27531|842260|17293|2|13|15628.86|0.06|0.05|A|F|1993-07-02|1993-06-21|1993-07-10|DELIVER IN PERSON|FOB| daringly ironic ideas. f| +27531|850926|25961|3|1|1876.88|0.01|0.01|R|F|1993-06-27|1993-06-30|1993-07-21|DELIVER IN PERSON|MAIL|ites are ca| +27531|511312|36333|4|36|47638.44|0.05|0.03|A|F|1993-05-30|1993-05-22|1993-06-06|NONE|RAIL|t the express foxes. accounts haggle fur| +27531|608423|8424|5|49|65238.11|0.10|0.02|A|F|1993-05-30|1993-06-16|1993-06-26|NONE|AIR|beans cajole. even accounts cajole bli| +27531|750797|25828|6|10|18477.60|0.05|0.03|A|F|1993-04-29|1993-05-26|1993-05-14|NONE|AIR|ously. regular requ| +27531|635939|10964|7|27|50622.30|0.01|0.08|A|F|1993-06-23|1993-07-02|1993-06-25|TAKE BACK RETURN|MAIL|furious, ironic ideas. silent theodol| +27532|214596|14597|1|35|52870.30|0.08|0.08|N|O|1996-01-05|1995-12-06|1996-01-15|DELIVER IN PERSON|SHIP|kages against the doggedly pending orbit| +27532|702390|2391|2|45|62656.20|0.01|0.03|N|O|1995-12-30|1996-01-20|1996-01-23|COLLECT COD|REG AIR|usly bold deposits. carefully unusual instr| +27532|59575|47079|3|47|72124.79|0.06|0.00|N|O|1995-10-24|1995-12-28|1995-11-21|COLLECT COD|FOB|atterns caj| +27532|270058|32564|4|27|27757.08|0.06|0.08|N|O|1996-02-12|1996-01-19|1996-03-06|DELIVER IN PERSON|AIR|ounts are furi| +27532|855026|5027|5|13|12752.74|0.01|0.04|N|O|1995-12-15|1996-01-14|1995-12-23|NONE|FOB|cross the carefully pending foxes l| +27532|406206|18715|6|4|4448.72|0.08|0.07|N|O|1996-02-07|1995-12-15|1996-02-14|COLLECT COD|AIR|kages integrate fluffily a| +27532|102886|15389|7|19|35888.72|0.05|0.04|N|O|1996-01-23|1996-01-12|1996-02-10|COLLECT COD|REG AIR|wake carefully quickly| +27533|198049|48050|1|22|25234.88|0.00|0.00|N|O|1996-05-15|1996-05-29|1996-06-11|DELIVER IN PERSON|AIR|. furiously regular foxes wak| +27534|259049|46565|1|1|1008.03|0.09|0.07|N|O|1997-04-09|1997-04-18|1997-04-18|COLLECT COD|REG AIR|es doze furiously. express theo| +27534|827361|2394|2|22|28343.04|0.07|0.04|N|O|1997-03-10|1997-05-14|1997-03-12|COLLECT COD|FOB|e unusual, special c| +27534|448637|36162|3|46|72938.06|0.05|0.08|N|O|1997-04-24|1997-05-18|1997-05-07|TAKE BACK RETURN|SHIP| the slyly express pin| +27534|230234|42739|4|5|5821.10|0.08|0.06|N|O|1997-06-18|1997-04-17|1997-07-14|COLLECT COD|FOB|r courts. slyly final asy| +27535|49540|49541|1|50|74477.00|0.00|0.03|A|F|1992-07-03|1992-07-08|1992-07-09|DELIVER IN PERSON|RAIL|nt dependencies. slyly | +27535|602260|2261|2|48|55787.04|0.00|0.00|R|F|1992-08-27|1992-07-20|1992-09-08|TAKE BACK RETURN|AIR|packages are. slyly regular packages ar| +27560|224580|24581|1|11|16550.27|0.03|0.07|N|O|1995-09-22|1995-09-10|1995-09-23|TAKE BACK RETURN|AIR|carefully according to| +27560|499340|11850|2|43|57590.76|0.01|0.04|N|O|1995-08-14|1995-10-04|1995-09-03|DELIVER IN PERSON|SHIP|ingly furiously final theodolites. dar| +27560|397400|9908|3|38|56900.82|0.06|0.06|N|O|1995-08-27|1995-10-15|1995-09-17|NONE|RAIL| accounts. expr| +27560|86443|11446|4|25|35736.00|0.00|0.06|N|O|1995-09-22|1995-09-21|1995-10-04|DELIVER IN PERSON|FOB|lyly regular accounts haggle slyly | +27561|323367|48380|1|24|33368.40|0.06|0.02|N|O|1998-06-09|1998-06-14|1998-06-14|COLLECT COD|TRUCK|beans after the permanent, fina| +27561|825292|325|2|40|48690.00|0.01|0.03|N|O|1998-05-16|1998-06-07|1998-05-18|COLLECT COD|REG AIR|refully. slyly pending notornis | +27562|511008|48539|1|37|37702.26|0.06|0.07|A|F|1994-12-29|1994-10-29|1995-01-02|DELIVER IN PERSON|REG AIR|ironic foxes solve blithely until th| +27562|502711|15222|2|14|23991.66|0.05|0.04|R|F|1994-12-30|1994-10-28|1995-01-17|COLLECT COD|RAIL|lar packages according to | +27562|49333|49334|3|34|43599.22|0.04|0.06|A|F|1994-09-30|1994-11-13|1994-10-01|TAKE BACK RETURN|SHIP| ironic plate| +27562|125082|12589|4|39|43176.12|0.07|0.02|A|F|1995-01-09|1994-11-13|1995-02-07|NONE|FOB| carefully around the quickly unusual ide| +27563|632644|45157|1|28|44145.08|0.01|0.04|A|F|1994-03-01|1994-04-18|1994-03-08|NONE|FOB| packages cajole dolphins. furiously | +27563|843088|43089|2|23|23713.92|0.09|0.00|A|F|1994-06-25|1994-05-23|1994-07-23|DELIVER IN PERSON|FOB|ding to the quickly final dependenc| +27563|772042|22043|3|12|13368.12|0.07|0.02|A|F|1994-06-20|1994-05-23|1994-07-08|TAKE BACK RETURN|FOB|inal theodolites detect | +27564|772481|22482|1|31|48156.95|0.05|0.04|N|O|1996-12-27|1997-02-17|1997-01-16|COLLECT COD|TRUCK|e carefully final courts cajole quic| +27564|78258|3261|2|28|34615.00|0.01|0.02|N|O|1997-04-21|1997-02-25|1997-05-19|TAKE BACK RETURN|SHIP|iously. even, bold foxes mold carefully | +27564|280381|17897|3|20|27227.40|0.06|0.03|N|O|1997-02-08|1997-03-18|1997-02-12|TAKE BACK RETURN|FOB|ake quickly slyl| +27564|355458|42980|4|46|69618.24|0.03|0.00|N|O|1996-12-29|1997-03-09|1997-01-16|COLLECT COD|REG AIR|counts about the carefully regular| +27564|170216|20217|5|35|45017.35|0.07|0.02|N|O|1997-02-20|1997-03-16|1997-02-24|COLLECT COD|AIR|ges. slyly| +27564|809031|21548|6|18|16919.82|0.06|0.02|N|O|1997-02-20|1997-02-09|1997-03-03|COLLECT COD|REG AIR|s boost furiously bold depo| +27564|377620|2635|7|42|71299.62|0.00|0.05|N|O|1997-02-03|1997-01-26|1997-02-05|TAKE BACK RETURN|TRUCK|l foxes wake carefully sl| +27565|652619|2620|1|30|47147.40|0.03|0.03|R|F|1994-04-28|1994-04-08|1994-05-11|DELIVER IN PERSON|MAIL|ickly across th| +27565|565340|27852|2|50|70266.00|0.06|0.06|R|F|1994-03-14|1994-05-07|1994-04-07|COLLECT COD|FOB|es x-ray br| +27565|667416|17417|3|46|63635.48|0.02|0.04|R|F|1994-04-26|1994-05-11|1994-04-30|COLLECT COD|FOB|ess deposits.| +27565|254336|4337|4|42|54193.44|0.00|0.05|R|F|1994-06-04|1994-03-24|1994-06-14|DELIVER IN PERSON|SHIP|ideas. ironic multipliers wake c| +27565|616678|16679|5|44|70164.16|0.09|0.07|A|F|1994-05-23|1994-03-31|1994-06-17|DELIVER IN PERSON|REG AIR|ng accounts hinder. furious| +27565|494840|44841|6|23|42200.86|0.05|0.00|A|F|1994-04-26|1994-04-07|1994-05-17|DELIVER IN PERSON|TRUCK| final dolphins cajole| +27566|554824|4825|1|38|71394.40|0.09|0.07|N|O|1996-09-11|1996-10-10|1996-09-18|TAKE BACK RETURN|SHIP|wake. blithely ironic acc| +27566|916998|16999|2|5|10074.75|0.02|0.05|N|O|1996-09-13|1996-10-09|1996-10-05|TAKE BACK RETURN|SHIP|. carefully ironic accoun| +27566|976884|26885|3|32|62746.88|0.03|0.04|N|O|1996-09-08|1996-10-18|1996-09-20|COLLECT COD|REG AIR|ate furiously ironic| +27566|488833|38834|4|48|87446.88|0.05|0.01|N|O|1996-10-09|1996-08-22|1996-10-26|COLLECT COD|TRUCK|ickly even theod| +27566|802836|2837|5|24|41730.96|0.03|0.01|N|O|1996-10-28|1996-10-02|1996-11-16|COLLECT COD|RAIL|uriously bold ideas are quickly| +27566|252504|15010|6|23|33499.27|0.06|0.03|N|O|1996-08-04|1996-08-29|1996-08-09|NONE|FOB|ely final e| +27566|830199|42716|7|32|36132.80|0.09|0.06|N|O|1996-09-18|1996-09-27|1996-10-14|NONE|AIR|ns. regular, even instr| +27567|139150|39151|1|26|30917.90|0.08|0.04|R|F|1993-05-16|1993-05-05|1993-06-01|NONE|MAIL|s according to the slyly | +27567|686854|49368|2|4|7363.28|0.00|0.08|A|F|1993-03-19|1993-05-10|1993-04-02|COLLECT COD|REG AIR|gular deposits poach care| +27567|951978|27017|3|21|42628.53|0.00|0.03|A|F|1993-04-24|1993-04-21|1993-05-21|DELIVER IN PERSON|AIR|ven ideas | +27592|491014|41015|1|21|21104.79|0.09|0.01|R|F|1994-02-01|1994-03-27|1994-02-10|TAKE BACK RETURN|MAIL|old accounts nag | +27592|471137|8665|2|43|47648.73|0.08|0.03|A|F|1994-02-26|1994-03-29|1994-03-19|COLLECT COD|SHIP| packages. | +27592|385957|10972|3|22|44944.68|0.01|0.07|R|F|1994-05-05|1994-03-13|1994-05-09|TAKE BACK RETURN|RAIL|nic, regular| +27593|505935|5936|1|22|42700.02|0.09|0.06|N|O|1997-02-10|1997-03-08|1997-02-16|DELIVER IN PERSON|TRUCK|pinto beans | +27593|234144|9153|2|4|4312.52|0.07|0.07|N|O|1997-05-02|1997-04-06|1997-05-04|DELIVER IN PERSON|SHIP|odolites: quickly bold pinto beans hag| +27593|243690|18699|3|27|44109.36|0.09|0.06|N|O|1997-04-15|1997-02-25|1997-05-13|TAKE BACK RETURN|TRUCK|tes use. sentiments sleep. bold, sly notor| +27594|892426|42427|1|9|12765.42|0.06|0.07|A|F|1995-01-19|1995-01-27|1995-02-17|NONE|FOB|eodolites wake. asymptotes wake fluffily a| +27594|992543|30101|2|38|62149.00|0.09|0.02|A|F|1995-02-28|1995-01-12|1995-03-23|NONE|FOB|pendencies. furiously regular asy| +27594|655077|30104|3|38|39217.52|0.03|0.02|A|F|1995-03-28|1995-01-21|1995-04-09|TAKE BACK RETURN|REG AIR|eposits. furiously regular requests detect | +27594|878756|3791|4|36|62449.56|0.05|0.02|A|F|1995-01-25|1995-02-05|1995-02-19|COLLECT COD|SHIP| even, regul| +27595|418260|30769|1|30|35347.20|0.09|0.08|N|O|1995-10-16|1995-12-29|1995-10-17|TAKE BACK RETURN|TRUCK|s sleep carefully a| +27595|693291|5805|2|15|19263.90|0.09|0.01|N|O|1995-12-23|1995-12-26|1996-01-20|DELIVER IN PERSON|TRUCK|ing realms. carefully regul| +27595|134488|9493|3|49|74601.52|0.03|0.00|N|O|1996-01-23|1995-12-22|1996-02-21|DELIVER IN PERSON|MAIL| the express requests lo| +27595|325708|13227|4|21|36407.49|0.10|0.05|N|O|1995-11-16|1995-11-24|1995-12-15|TAKE BACK RETURN|TRUCK|wake blithely platelets. s| +27596|348892|11399|1|23|44640.24|0.02|0.01|A|F|1995-04-01|1995-02-10|1995-04-06|TAKE BACK RETURN|AIR|packages against the slyly final | +27596|827128|14677|2|28|29542.24|0.00|0.04|R|F|1995-01-12|1995-02-08|1995-02-01|TAKE BACK RETURN|SHIP|oxes. express, pending reques| +27596|529308|4329|3|4|5349.12|0.04|0.08|R|F|1995-03-21|1995-02-18|1995-03-30|NONE|SHIP|kages. furious| +27597|573414|23415|1|12|17848.68|0.03|0.02|N|O|1996-02-23|1996-01-13|1996-02-28|COLLECT COD|TRUCK|blithely ironic instructions. fluffi| +27597|364129|26637|2|1|1193.11|0.00|0.08|N|O|1996-02-13|1995-12-14|1996-02-14|NONE|TRUCK| foxes believe across| +27598|243727|6232|1|28|46779.88|0.10|0.00|R|F|1993-07-28|1993-06-28|1993-07-29|NONE|FOB| beans are furiously ca| +27598|304969|29982|2|6|11843.70|0.01|0.07|R|F|1993-05-01|1993-06-06|1993-05-24|TAKE BACK RETURN|SHIP|ular theodolites are slyly after | +27598|612494|25007|3|3|4219.38|0.01|0.03|A|F|1993-07-27|1993-05-04|1993-08-21|DELIVER IN PERSON|AIR|e carefully ironic deposits | +27598|175123|130|4|5|5990.60|0.04|0.06|A|F|1993-06-09|1993-05-16|1993-06-14|TAKE BACK RETURN|TRUCK|bold dependencies unwin| +27598|289352|1858|5|21|28168.14|0.01|0.05|A|F|1993-05-29|1993-06-20|1993-06-20|COLLECT COD|RAIL| slyly silent courts-- pendin| +27598|136245|11250|6|12|15374.88|0.10|0.00|A|F|1993-06-14|1993-06-30|1993-06-30|TAKE BACK RETURN|MAIL|. slyly regular depos| +27598|865219|15220|7|45|53287.65|0.06|0.01|R|F|1993-07-09|1993-06-19|1993-08-01|TAKE BACK RETURN|SHIP|tes integrate carefully e| +27599|733452|8481|1|43|63873.06|0.05|0.08|A|F|1994-03-23|1994-01-28|1994-03-26|DELIVER IN PERSON|FOB|urts engage fluff| +27599|111573|49080|2|10|15845.70|0.04|0.04|A|F|1994-01-25|1994-02-23|1994-02-20|COLLECT COD|MAIL|uses nag slyly final | +27599|196353|46354|3|20|28987.00|0.05|0.01|A|F|1994-01-30|1994-03-01|1994-02-23|COLLECT COD|TRUCK|s above the slyly ironic theo| +27599|100790|38297|4|31|55514.49|0.04|0.07|R|F|1994-03-31|1994-03-04|1994-04-16|TAKE BACK RETURN|REG AIR| deposits. express deposits are iro| +27599|964760|2318|5|31|56566.32|0.05|0.05|R|F|1994-02-28|1994-02-23|1994-03-26|TAKE BACK RETURN|TRUCK|efully. express accounts x-ray above the| +27599|705830|30859|6|42|77103.60|0.10|0.03|A|F|1994-03-07|1994-03-02|1994-03-20|NONE|FOB|und the thinly slo| +27599|875164|12716|7|11|12530.32|0.05|0.04|R|F|1994-02-21|1994-01-23|1994-03-07|DELIVER IN PERSON|FOB|regular re| +27624|873190|35708|1|30|34894.50|0.03|0.08|N|O|1996-08-02|1996-06-07|1996-08-15|DELIVER IN PERSON|MAIL|ckly even requests cajole slyly enticingly| +27624|695176|7690|2|32|37476.48|0.10|0.06|N|O|1996-07-06|1996-06-21|1996-07-23|COLLECT COD|SHIP|ironic pac| +27624|811412|36445|3|28|37054.36|0.05|0.00|N|O|1996-07-23|1996-06-05|1996-08-04|TAKE BACK RETURN|MAIL|heodolites detect slyly packages. blithely | +27624|393243|18258|4|44|58794.12|0.00|0.05|N|O|1996-07-21|1996-06-20|1996-07-30|DELIVER IN PERSON|TRUCK|regular the| +27625|116147|41152|1|6|6978.84|0.03|0.01|N|O|1996-02-01|1996-02-20|1996-02-15|TAKE BACK RETURN|SHIP|ages. unusu| +27625|76516|14020|2|37|55222.87|0.07|0.04|N|O|1996-04-18|1996-02-21|1996-04-26|NONE|REG AIR|uffily exp| +27625|995109|45110|3|8|9632.48|0.00|0.03|N|O|1996-04-21|1996-03-16|1996-05-08|TAKE BACK RETURN|RAIL|ges. final excuses along the | +27625|789063|14094|4|41|47233.23|0.09|0.00|N|O|1996-02-05|1996-02-15|1996-02-19|DELIVER IN PERSON|FOB| accounts boo| +27625|772043|22044|5|9|10035.09|0.04|0.07|N|O|1996-03-28|1996-03-06|1996-04-01|COLLECT COD|RAIL| carefully| +27626|404156|29173|1|32|33924.16|0.03|0.07|N|O|1996-10-12|1996-11-15|1996-10-17|NONE|TRUCK|nal, dogged deposits. q| +27627|593236|43237|1|17|22596.57|0.09|0.00|R|F|1993-10-03|1993-09-07|1993-10-19|DELIVER IN PERSON|REG AIR|ages cajole| +27627|504634|17145|2|14|22940.54|0.03|0.08|R|F|1993-08-22|1993-09-16|1993-09-19|TAKE BACK RETURN|SHIP| regular deposits. special, ironic de| +27627|381637|44145|3|43|73900.66|0.05|0.06|A|F|1993-11-06|1993-09-28|1993-11-11|COLLECT COD|FOB| blithely pending asymptotes across the | +27627|166997|42004|4|48|99071.52|0.00|0.04|A|F|1993-09-23|1993-10-04|1993-10-07|TAKE BACK RETURN|MAIL|was slyly. express requests sl| +27628|42162|4663|1|19|20979.04|0.07|0.01|R|F|1994-12-14|1995-02-24|1994-12-28|TAKE BACK RETURN|SHIP|old accounts. even, even packages h| +27628|608638|33663|2|38|58770.80|0.09|0.03|R|F|1995-02-11|1995-02-05|1995-03-02|DELIVER IN PERSON|MAIL|sly final packages. blithely special a| +27628|369233|6755|3|24|31253.28|0.03|0.04|A|F|1994-12-18|1995-01-18|1995-01-12|DELIVER IN PERSON|REG AIR|he deposits. express, regula| +27629|641306|41307|1|40|49890.80|0.08|0.04|A|F|1995-02-14|1994-12-10|1995-03-12|DELIVER IN PERSON|REG AIR|boost about the ironic as| +27629|415842|3367|2|1|1757.82|0.07|0.04|A|F|1994-11-12|1995-01-20|1994-11-26|NONE|FOB|t quickly final theodoli| +27629|40539|28040|3|48|71017.44|0.02|0.02|A|F|1994-11-11|1994-11-28|1994-11-22|DELIVER IN PERSON|SHIP|e instructions wake across the slyly| +27629|323864|48877|4|16|30205.60|0.04|0.02|A|F|1994-12-09|1995-01-02|1995-01-06|DELIVER IN PERSON|AIR|ntly fluffily | +27629|176865|1872|5|15|29127.90|0.01|0.07|A|F|1994-11-22|1994-12-04|1994-12-14|TAKE BACK RETURN|SHIP| instructions. final deposits sleep caref| +27630|371098|21099|1|33|38579.64|0.07|0.01|N|O|1995-08-28|1995-07-03|1995-08-31|NONE|REG AIR|g instructions hinder. requests u| +27631|3486|40987|1|23|31958.04|0.02|0.02|A|F|1992-04-17|1992-05-18|1992-05-04|DELIVER IN PERSON|FOB|nal requests ac| +27631|587966|12989|2|5|10269.70|0.02|0.05|A|F|1992-07-17|1992-05-26|1992-07-22|NONE|AIR|s cajole carefully after the | +27631|935907|35908|3|5|9714.30|0.07|0.00|A|F|1992-04-27|1992-05-13|1992-05-04|NONE|SHIP| even pinto beans. even foxes wake. q| +27631|773793|48824|4|33|61603.08|0.03|0.07|A|F|1992-07-09|1992-06-28|1992-07-16|COLLECT COD|SHIP|counts. foxes integrate blit| +27656|585644|35645|1|34|58807.08|0.05|0.01|N|O|1997-03-24|1997-04-14|1997-04-18|NONE|AIR|s breach fluffily. | +27656|904535|29572|2|50|76974.50|0.08|0.06|N|O|1997-04-20|1997-03-22|1997-04-29|DELIVER IN PERSON|FOB|eodolites bo| +27656|515201|40222|3|28|34053.04|0.08|0.06|N|O|1997-06-01|1997-04-26|1997-06-08|COLLECT COD|SHIP|to the furiously un| +27656|978227|28228|4|28|36545.04|0.00|0.00|N|O|1997-03-09|1997-03-21|1997-03-20|COLLECT COD|MAIL|the regular, regular platelets are furi| +27657|782246|7277|1|47|62425.87|0.00|0.04|N|O|1998-07-08|1998-09-15|1998-07-29|TAKE BACK RETURN|SHIP|eposits boost f| +27657|196095|21102|2|41|48834.69|0.08|0.04|N|O|1998-10-18|1998-09-09|1998-11-10|TAKE BACK RETURN|FOB|s. final dinos should haggle. bold escapade| +27657|756302|31333|3|5|6791.35|0.01|0.03|N|O|1998-08-07|1998-08-24|1998-08-24|COLLECT COD|FOB|inly for the blithely | +27658|480212|30213|1|12|14306.28|0.10|0.07|A|F|1994-09-29|1994-10-26|1994-10-28|NONE|AIR| foxes. fluffily special the| +27659|734201|46716|1|46|56817.82|0.03|0.08|N|O|1995-09-24|1995-07-20|1995-09-27|TAKE BACK RETURN|FOB|ely even platelets use blithely | +27659|705406|42949|2|33|46575.21|0.10|0.04|N|O|1995-09-14|1995-08-23|1995-09-19|NONE|SHIP|tes. slyly ironic pa| +27659|754295|29326|3|14|18889.64|0.08|0.01|N|F|1995-06-15|1995-08-10|1995-07-15|NONE|AIR|he carefully slow deposits. fina| +27659|427421|14946|4|40|53936.00|0.05|0.03|N|O|1995-07-01|1995-07-23|1995-07-10|NONE|FOB|ven packages are quickly blithely ev| +27659|659145|34172|5|21|23186.31|0.02|0.01|N|O|1995-08-29|1995-07-19|1995-09-15|COLLECT COD|SHIP|lar deposits nag f| +27659|236981|11990|6|36|69046.92|0.05|0.01|N|O|1995-08-09|1995-08-29|1995-09-04|COLLECT COD|RAIL|ly regular attainments believe| +27659|925681|38200|7|16|27306.24|0.09|0.06|N|O|1995-08-11|1995-08-28|1995-08-13|DELIVER IN PERSON|TRUCK| deposits i| +27660|905550|5551|1|21|32665.71|0.01|0.01|N|O|1996-02-25|1996-05-04|1996-03-17|NONE|AIR|packages promise furiously acro| +27660|569783|19784|2|28|51877.28|0.08|0.07|N|O|1996-03-02|1996-04-16|1996-03-25|NONE|MAIL|ely. quickly specia| +27660|340050|40051|3|6|6540.24|0.02|0.08|N|O|1996-05-31|1996-03-19|1996-06-26|DELIVER IN PERSON|AIR|e furiously along the accounts| +27661|966091|28611|1|14|16198.70|0.08|0.03|R|F|1994-11-10|1994-10-23|1994-12-06|NONE|RAIL|lithely pending platelets wake blithely abo| +27661|80394|17898|2|13|17867.07|0.04|0.02|R|F|1994-11-28|1994-11-10|1994-12-10|COLLECT COD|SHIP|pending deposit| +27661|180015|5022|3|24|26280.24|0.10|0.06|A|F|1994-08-28|1994-10-10|1994-09-16|NONE|MAIL| the waters. slyly final idea| +27661|505048|17559|4|14|14742.28|0.02|0.04|A|F|1994-11-27|1994-10-12|1994-12-01|DELIVER IN PERSON|MAIL|ent packages. regular epitaphs affix slyly| +27661|339178|1685|5|30|36514.80|0.00|0.06|R|F|1994-09-16|1994-10-01|1994-09-20|NONE|RAIL|foxes. fluffily final account| +27661|550665|13177|6|30|51469.20|0.06|0.01|A|F|1994-11-02|1994-10-30|1994-11-06|COLLECT COD|SHIP|ously enticing deposits against the quickl| +27662|629898|4923|1|34|62147.24|0.08|0.07|N|O|1998-09-23|1998-08-29|1998-10-12|NONE|SHIP|al theodolites breach quickly aroun| +27662|690362|27902|2|11|14875.63|0.02|0.01|N|O|1998-09-04|1998-10-19|1998-09-12|TAKE BACK RETURN|MAIL|usly even pinto beans cajo| +27662|912338|12339|3|19|25655.51|0.01|0.08|N|O|1998-08-23|1998-09-08|1998-08-29|DELIVER IN PERSON|REG AIR|unts sleep. final, special depths cajole d| +27663|907095|7096|1|19|20938.95|0.07|0.03|N|O|1998-04-29|1998-05-04|1998-05-18|COLLECT COD|TRUCK|sly slyly regular requests. blithely | +27663|533709|21240|2|3|5228.04|0.09|0.03|N|O|1998-05-09|1998-03-22|1998-05-11|COLLECT COD|AIR|re furiously regular depths. carefully ev| +27663|31450|18951|3|35|48350.75|0.06|0.00|N|O|1998-03-15|1998-04-03|1998-04-04|NONE|MAIL|r, bold accounts nag| +27688|151070|26077|1|14|15694.98|0.01|0.05|N|O|1997-11-03|1997-10-28|1997-11-14|NONE|AIR|osits sleep blithely ideas. blithe| +27688|26552|39053|2|41|60620.55|0.07|0.07|N|O|1997-12-16|1997-09-20|1998-01-04|NONE|AIR|y express requests wake slyly ironic depend| +27688|251303|1304|3|45|56443.05|0.02|0.08|N|O|1997-08-23|1997-11-11|1997-08-24|TAKE BACK RETURN|SHIP|yly about the furiously | +27688|644482|19507|4|23|32808.35|0.07|0.06|N|O|1997-10-03|1997-11-13|1997-10-06|NONE|MAIL| packages haggle. quickly bold waters ha| +27688|796736|21767|5|21|38486.70|0.02|0.05|N|O|1997-11-28|1997-11-13|1997-12-28|COLLECT COD|MAIL|ickly after the brave| +27689|364568|2090|1|48|78362.40|0.07|0.00|A|F|1994-10-22|1994-12-03|1994-11-06|TAKE BACK RETURN|MAIL|ts. carefully ironic depos| +27689|290391|15402|2|27|37297.26|0.03|0.03|R|F|1994-12-13|1994-11-04|1995-01-11|COLLECT COD|REG AIR|lar requests haggle stealthil| +27690|704957|42500|1|19|37276.48|0.09|0.00|N|O|1998-04-29|1998-03-21|1998-05-03|DELIVER IN PERSON|SHIP|riously. carefully slow instructions ins| +27690|199556|37066|2|44|72844.20|0.01|0.00|N|O|1998-04-08|1998-04-30|1998-04-13|DELIVER IN PERSON|AIR| furiously pending ideas according to t| +27690|921291|8846|3|50|65612.50|0.05|0.03|N|O|1998-02-09|1998-03-27|1998-02-24|TAKE BACK RETURN|RAIL| across the carefully special instructi| +27691|731064|18607|1|12|13140.36|0.03|0.00|A|F|1993-09-19|1993-09-29|1993-10-07|NONE|REG AIR| foxes boost. slyly speci| +27691|980910|30911|2|28|55744.36|0.06|0.05|A|F|1993-10-06|1993-09-17|1993-10-14|TAKE BACK RETURN|RAIL| fluffily thin accounts sleep furio| +27691|140039|40040|3|24|25896.72|0.10|0.03|A|F|1993-10-27|1993-09-22|1993-11-05|TAKE BACK RETURN|RAIL|ly bold instructions affix. regular foxes| +27691|627385|2410|4|41|53806.35|0.05|0.01|R|F|1993-11-08|1993-10-26|1993-11-23|COLLECT COD|REG AIR|pitaphs. final packages ag| +27691|458006|20516|5|32|30847.36|0.06|0.04|A|F|1993-09-23|1993-09-08|1993-10-18|COLLECT COD|SHIP|ts cajole carefully. furiously iro| +27692|864107|14108|1|25|26776.50|0.10|0.00|N|O|1996-11-06|1996-09-17|1996-11-28|NONE|REG AIR|y regular accounts above the blithely ironi| +27692|37938|12939|2|7|13131.51|0.04|0.03|N|O|1996-08-24|1996-10-12|1996-09-03|TAKE BACK RETURN|REG AIR|e alongside o| +27693|401620|39145|1|2|3043.20|0.02|0.08|R|F|1992-09-07|1992-09-28|1992-10-04|TAKE BACK RETURN|TRUCK|excuses. ironic fo| +27694|136834|11839|1|33|61737.39|0.06|0.01|R|F|1995-01-25|1994-11-16|1995-02-04|NONE|SHIP|luffily careful foxe| +27694|764277|14278|2|37|49625.88|0.06|0.04|R|F|1994-10-21|1994-11-04|1994-11-01|NONE|MAIL|de of the slyly special d| +27694|200180|181|3|12|12962.04|0.05|0.02|R|F|1994-10-01|1994-11-01|1994-10-23|COLLECT COD|SHIP|ilent requests grow slyly special pinto| +27694|413666|38683|4|38|60026.32|0.09|0.02|R|F|1994-10-27|1994-10-30|1994-11-22|TAKE BACK RETURN|SHIP|efully special instructions haggle flu| +27694|477315|27316|5|22|28430.38|0.01|0.03|R|F|1995-01-06|1994-12-24|1995-01-17|NONE|TRUCK|s sleep alongside of| +27694|216755|29260|6|41|68541.34|0.10|0.05|A|F|1994-09-30|1994-12-16|1994-10-13|NONE|FOB|, even packages mold furi| +27695|335935|23454|1|44|86720.48|0.06|0.04|N|O|1996-08-17|1996-09-05|1996-09-16|COLLECT COD|FOB|express deposits caj| +27695|50459|25462|2|35|49330.75|0.06|0.00|N|O|1996-09-09|1996-08-18|1996-09-27|DELIVER IN PERSON|AIR|s. slyly pending dep| +27695|63370|25872|3|6|8000.22|0.02|0.04|N|O|1996-08-22|1996-10-07|1996-09-05|COLLECT COD|MAIL|ons. regular instructions| +27695|49520|37021|4|5|7347.60|0.06|0.02|N|O|1996-09-15|1996-10-11|1996-10-09|TAKE BACK RETURN|FOB|y busy foxes detect carefully i| +27695|278092|3103|5|34|36382.72|0.05|0.00|N|O|1996-09-01|1996-10-03|1996-09-17|NONE|SHIP|ress foxes. furiously un| +27695|880792|5827|6|44|78001.00|0.10|0.03|N|O|1996-07-19|1996-09-06|1996-08-02|NONE|TRUCK|ar dolphins. flu| +27695|457570|32589|7|33|50409.15|0.07|0.02|N|O|1996-07-20|1996-09-12|1996-07-30|COLLECT COD|FOB|inal ideas. furiously busy| +27720|376961|39469|1|46|93745.70|0.02|0.04|N|O|1997-11-18|1997-11-22|1997-12-07|NONE|TRUCK|wake carefully even, ironic excuses| +27720|569580|44603|2|44|72580.64|0.00|0.01|N|O|1997-10-29|1997-11-28|1997-11-21|DELIVER IN PERSON|AIR|ssly about the slyly bold | +27720|930484|5521|3|8|12115.52|0.09|0.03|N|O|1997-10-28|1997-10-29|1997-11-26|TAKE BACK RETURN|TRUCK|e. regular, final dol| +27720|636576|49089|4|29|43863.66|0.08|0.07|N|O|1997-10-31|1997-12-02|1997-11-06|NONE|SHIP|ven, close accounts. quickly even somas int| +27720|922767|47804|5|10|17897.20|0.01|0.03|N|O|1998-01-16|1997-11-24|1998-01-21|DELIVER IN PERSON|REG AIR|dependencies since the acco| +27720|940270|15307|6|44|57650.12|0.09|0.08|N|O|1997-11-19|1997-11-21|1997-12-02|NONE|TRUCK|sly despite the carefully final excuse| +27720|106693|19196|7|15|25495.35|0.00|0.03|N|O|1997-10-07|1997-11-15|1997-10-09|DELIVER IN PERSON|FOB|lets sleep fluffil| +27721|177608|15118|1|26|43825.60|0.08|0.08|R|F|1993-05-28|1993-07-28|1993-06-27|DELIVER IN PERSON|RAIL|. silent pains are slyly| +27721|46296|8797|2|37|45964.73|0.07|0.05|A|F|1993-08-17|1993-06-13|1993-09-15|DELIVER IN PERSON|REG AIR| instructions. ca| +27721|87247|49749|3|27|33324.48|0.09|0.08|R|F|1993-08-19|1993-06-17|1993-09-08|DELIVER IN PERSON|FOB|uickly according| +27721|346549|21562|4|2|3191.06|0.05|0.00|A|F|1993-05-15|1993-06-10|1993-06-14|COLLECT COD|MAIL|ole slyly above the | +27721|444368|31893|5|36|47244.24|0.06|0.08|R|F|1993-08-27|1993-07-06|1993-09-24|TAKE BACK RETURN|AIR|eep slyly above the requests.| +27722|745899|20928|1|38|73904.68|0.00|0.06|N|O|1997-11-29|1997-09-30|1997-11-30|DELIVER IN PERSON|TRUCK|tes cajole. slyly ironic theodoli| +27722|315839|40852|2|50|92741.00|0.09|0.05|N|O|1997-08-28|1997-09-28|1997-09-09|COLLECT COD|REG AIR|tions besides the blithely reg| +27722|297569|22580|3|11|17232.05|0.00|0.08|N|O|1997-10-09|1997-10-21|1997-10-27|TAKE BACK RETURN|SHIP|s. furiously | +27722|241946|16955|4|8|15103.44|0.10|0.03|N|O|1997-09-13|1997-11-09|1997-09-21|TAKE BACK RETURN|MAIL| sleep above the ironic, even ideas. unusu| +27722|376965|1980|5|22|44922.90|0.03|0.08|N|O|1997-09-25|1997-10-23|1997-09-30|NONE|FOB|blithely against the blithely idle foxes. | +27722|636785|36786|6|31|53374.25|0.10|0.03|N|O|1997-12-21|1997-10-27|1997-12-31|DELIVER IN PERSON|REG AIR|usly above t| +27723|19478|19479|1|35|48911.45|0.07|0.00|N|F|1995-05-27|1995-05-24|1995-06-24|NONE|MAIL|ly ironic deposits. slyly even deposits | +27723|351450|26465|2|46|69066.24|0.08|0.02|A|F|1995-05-03|1995-05-18|1995-05-21|TAKE BACK RETURN|SHIP|cajole fluffily. carefully pend| +27723|812537|86|3|18|26090.82|0.03|0.05|R|F|1995-03-16|1995-04-27|1995-03-25|COLLECT COD|SHIP| the evenly daring reques| +27723|309226|46745|4|47|58054.87|0.03|0.00|A|F|1995-04-07|1995-05-31|1995-04-17|NONE|REG AIR|unts haggle carefully even requests. | +27723|149727|24732|5|49|87059.28|0.09|0.04|A|F|1995-04-04|1995-04-15|1995-04-20|NONE|RAIL|tes. slyly final acco| +27724|554447|4448|1|19|28526.98|0.04|0.03|N|O|1997-09-01|1997-10-02|1997-09-28|NONE|FOB|press requests. blithely unusual accoun| +27725|401707|14216|1|30|48260.40|0.07|0.02|N|O|1998-09-10|1998-08-11|1998-09-20|TAKE BACK RETURN|MAIL| are besides the regularly regular re| +27725|481290|18818|2|39|49579.53|0.03|0.01|N|O|1998-07-28|1998-06-26|1998-08-02|DELIVER IN PERSON|MAIL|ess deposits | +27725|26979|14480|3|38|72426.86|0.06|0.01|N|O|1998-08-07|1998-08-04|1998-08-17|NONE|MAIL|cally unusual deposits run. unusual, expr| +27725|419764|44781|4|4|6734.96|0.05|0.06|N|O|1998-07-24|1998-07-12|1998-08-13|COLLECT COD|AIR|eans cajole.| +27725|971540|46579|5|28|45122.00|0.08|0.06|N|O|1998-08-28|1998-07-25|1998-09-17|DELIVER IN PERSON|SHIP| regular packages. express, even p| +27725|668731|18732|6|9|15297.30|0.05|0.03|N|O|1998-07-20|1998-06-24|1998-08-11|DELIVER IN PERSON|MAIL|refully silent, regula| +27725|354970|4971|7|41|83023.36|0.00|0.08|N|O|1998-07-12|1998-07-21|1998-07-22|NONE|MAIL|tions wake quickly. quickly e| +27726|967406|4964|1|23|33887.28|0.02|0.01|N|O|1998-01-23|1998-01-14|1998-02-05|DELIVER IN PERSON|TRUCK| deposits are deposits. sil| +27726|184816|9823|2|25|47520.25|0.04|0.01|N|O|1998-02-23|1997-12-14|1998-03-17|DELIVER IN PERSON|MAIL|int evenly. packages solve. careful| +27726|195033|7537|3|32|36096.96|0.03|0.01|N|O|1998-02-08|1997-12-23|1998-02-23|NONE|RAIL|symptotes sleep. final requests sleep s| +27726|908001|45556|4|2|2017.92|0.05|0.04|N|O|1997-11-11|1998-01-01|1997-12-02|TAKE BACK RETURN|MAIL|ounts sleep. stealthily| +27726|756576|44122|5|23|37548.42|0.09|0.06|N|O|1997-11-27|1998-01-12|1997-11-28|NONE|FOB|furiously across the requests. blith| +27727|185793|35794|1|20|37575.80|0.03|0.03|N|O|1995-09-04|1995-09-26|1995-10-04|COLLECT COD|SHIP|onic pinto beans: regular | +27727|611179|11180|2|40|43605.60|0.06|0.00|N|O|1995-08-06|1995-09-27|1995-08-29|COLLECT COD|REG AIR|unts dazzle blithely according to the pen| +27727|74756|37258|3|43|74422.25|0.06|0.03|N|O|1995-09-08|1995-09-08|1995-10-07|DELIVER IN PERSON|FOB|ously about the | +27752|716607|4150|1|39|63319.23|0.01|0.05|N|O|1997-10-29|1997-09-27|1997-11-03|COLLECT COD|MAIL|ffily final accounts again| +27752|9570|22071|2|30|44387.10|0.06|0.06|N|O|1997-07-03|1997-09-08|1997-07-09|TAKE BACK RETURN|SHIP|sts. fluffily special packag| +27752|831897|19446|3|36|65838.60|0.05|0.04|N|O|1997-08-08|1997-08-21|1997-08-11|TAKE BACK RETURN|MAIL|requests cajole furiously a| +27752|677880|15420|4|6|11147.10|0.01|0.07|N|O|1997-09-04|1997-08-07|1997-09-13|TAKE BACK RETURN|RAIL|side of the express ideas nod carefully ac| +27752|126714|39217|5|44|76591.24|0.08|0.04|N|O|1997-08-14|1997-08-24|1997-08-24|TAKE BACK RETURN|AIR| silent theodolites believe caref| +27752|669678|19679|6|20|32952.80|0.10|0.02|N|O|1997-10-25|1997-08-22|1997-11-16|TAKE BACK RETURN|RAIL|ggle fluffily | +27752|261588|11589|7|17|26342.69|0.02|0.02|N|O|1997-10-13|1997-08-13|1997-10-22|NONE|MAIL|ake regular| +27753|498002|48003|1|36|35999.28|0.01|0.05|N|O|1998-01-20|1998-02-13|1998-02-07|COLLECT COD|TRUCK|eans haggle quickly among the accounts| +27753|910253|22772|2|16|20211.36|0.07|0.02|N|O|1998-04-20|1998-02-23|1998-05-09|NONE|RAIL|es integrate fluffily regular requ| +27753|610509|23022|3|37|52520.39|0.06|0.04|N|O|1998-03-14|1998-03-17|1998-03-20|DELIVER IN PERSON|SHIP|e quickly against the slyly unusua| +27753|819239|19240|4|8|9265.52|0.09|0.03|N|O|1998-04-23|1998-03-04|1998-05-06|DELIVER IN PERSON|REG AIR|nusual instruc| +27753|946277|8796|5|3|3969.69|0.00|0.06|N|O|1998-01-14|1998-01-30|1998-02-04|NONE|TRUCK| packages wake careful| +27753|75919|13423|6|49|92850.59|0.04|0.08|N|O|1998-01-26|1998-03-15|1998-02-17|DELIVER IN PERSON|FOB|counts cajole. express deposits na| +27754|693575|31115|1|40|62741.60|0.09|0.00|N|F|1995-06-05|1995-07-06|1995-06-21|COLLECT COD|FOB|y regular epitaphs impress f| +27754|905912|30949|2|9|17260.83|0.00|0.08|N|O|1995-07-13|1995-06-01|1995-07-29|COLLECT COD|SHIP|instructions| +27754|653627|3628|3|18|28450.62|0.01|0.05|N|O|1995-08-05|1995-07-01|1995-08-20|NONE|MAIL|iously even, bold pinto beans. fluffily spe| +27755|47849|10350|1|7|12577.88|0.01|0.07|R|F|1993-09-29|1993-09-15|1993-10-17|NONE|SHIP|s use packages. deposits wake quic| +27755|192594|30104|2|1|1686.59|0.00|0.06|A|F|1993-10-03|1993-10-30|1993-10-08|DELIVER IN PERSON|SHIP|r the expr| +27756|597033|9545|1|39|44070.39|0.08|0.06|R|F|1992-12-13|1992-12-04|1992-12-16|TAKE BACK RETURN|AIR|n theodolites. de| +27756|329161|41668|2|6|7140.90|0.04|0.06|A|F|1992-11-16|1992-11-05|1992-11-26|TAKE BACK RETURN|AIR| requests. careful| +27756|199288|36798|3|27|37456.56|0.10|0.00|R|F|1992-10-09|1992-10-30|1992-11-05|DELIVER IN PERSON|SHIP|ccording to the carefully express acc| +27756|417028|29537|4|16|15120.00|0.04|0.04|A|F|1992-09-27|1992-12-12|1992-10-10|TAKE BACK RETURN|RAIL|regular foxes. blithely regular ideas arou| +27756|976884|26885|5|43|84316.12|0.07|0.02|R|F|1992-11-11|1992-11-01|1992-12-09|NONE|AIR|yly along t| +27756|477735|15263|6|47|80497.37|0.05|0.05|A|F|1992-11-25|1992-10-25|1992-12-07|TAKE BACK RETURN|AIR|nusual accounts haggle silent excuses.| +27757|804157|41706|1|3|3183.33|0.09|0.05|N|O|1997-09-09|1997-09-24|1997-09-18|NONE|FOB|brave pinto beans ca| +27757|464312|26822|2|2|2552.58|0.05|0.06|N|O|1997-10-18|1997-09-26|1997-11-15|TAKE BACK RETURN|REG AIR|e carefully furiously final warhors| +27757|675207|12747|3|45|53197.65|0.04|0.07|N|O|1997-11-24|1997-10-19|1997-11-28|NONE|RAIL|ckages about the slyly final warthogs nag | +27757|202728|40241|4|11|17937.81|0.10|0.00|N|O|1997-09-30|1997-10-10|1997-10-19|DELIVER IN PERSON|RAIL| against the | +27757|242713|30226|5|33|54638.10|0.09|0.07|N|O|1997-08-13|1997-11-01|1997-09-03|NONE|TRUCK|hs nag furi| +27758|346128|8635|1|42|49312.62|0.10|0.02|N|O|1996-12-13|1996-11-22|1996-12-14|TAKE BACK RETURN|TRUCK|ffily after the sile| +27758|364251|14252|2|37|48663.88|0.05|0.05|N|O|1996-12-20|1996-12-31|1997-01-07|DELIVER IN PERSON|MAIL|blithely final deposits use; f| +27758|958599|8600|3|50|82877.50|0.02|0.03|N|O|1997-02-10|1996-11-29|1997-03-11|TAKE BACK RETURN|AIR| unusual platelets. slyly i| +27758|162276|12277|4|45|60222.15|0.04|0.07|N|O|1997-01-23|1996-12-24|1997-02-17|NONE|SHIP|eposits cajole sl| +27758|362705|227|5|5|8838.45|0.00|0.02|N|O|1996-12-20|1996-11-18|1997-01-11|COLLECT COD|RAIL|even packages nag fluffily| +27758|967281|17282|6|40|53929.60|0.05|0.03|N|O|1996-11-20|1996-11-22|1996-12-10|NONE|REG AIR|onic excuses. final deposit| +27758|88617|38618|7|22|35323.42|0.10|0.07|N|O|1996-12-17|1996-11-22|1996-12-27|TAKE BACK RETURN|RAIL|into beans. | +27759|376932|26933|1|2|4017.84|0.04|0.00|N|O|1998-01-23|1998-02-17|1998-02-09|NONE|SHIP|uests unwind slyly ironic, final| +27759|89714|27218|2|27|46000.17|0.06|0.03|N|O|1997-12-10|1998-02-06|1997-12-15|DELIVER IN PERSON|RAIL|nusual asymptotes| +27759|822542|22543|3|50|73225.00|0.05|0.05|N|O|1998-01-08|1998-01-30|1998-01-22|DELIVER IN PERSON|TRUCK|e regular accounts. platelets are furi| +27759|451851|26870|4|14|25239.62|0.08|0.06|N|O|1998-02-26|1998-01-18|1998-03-01|NONE|FOB|deposits. special, ironic accounts sle| +27759|248578|48579|5|8|12212.48|0.03|0.00|N|O|1998-01-23|1998-01-16|1998-02-12|DELIVER IN PERSON|RAIL|ithely fina| +27784|684009|46523|1|21|20852.37|0.06|0.03|N|O|1998-02-15|1998-02-23|1998-03-04|COLLECT COD|TRUCK|ly ironic pinto bea| +27785|991514|16553|1|22|35320.34|0.07|0.06|N|O|1995-09-05|1995-07-26|1995-09-21|NONE|TRUCK| unusual, bold requests sleep| +27785|369148|6670|2|45|54770.85|0.00|0.07|N|O|1995-08-14|1995-07-08|1995-09-09|NONE|FOB|pliers. furiously pending acco| +27785|259915|47431|3|39|73121.10|0.10|0.04|N|O|1995-08-14|1995-07-01|1995-09-02|COLLECT COD|MAIL|. ironic a| +27786|284440|21956|1|5|7122.15|0.00|0.01|R|F|1994-05-07|1994-03-18|1994-05-15|DELIVER IN PERSON|MAIL|the carefully even accounts. s| +27787|167192|4702|1|43|54145.17|0.00|0.05|R|F|1992-10-26|1992-08-17|1992-11-13|NONE|FOB|ly above the fluffily quiet ideas:| +27787|992142|42143|2|13|16043.30|0.00|0.06|R|F|1992-07-15|1992-09-03|1992-08-11|COLLECT COD|RAIL|r requests | +27787|915384|2939|3|44|61570.96|0.10|0.00|A|F|1992-08-20|1992-09-28|1992-08-24|COLLECT COD|SHIP|ven, regular pinto beans use slyly wi| +27787|849421|36970|4|21|28777.98|0.04|0.02|R|F|1992-09-12|1992-09-03|1992-10-06|DELIVER IN PERSON|FOB|arefully express sauter| +27787|206007|18512|5|43|39258.57|0.02|0.04|R|F|1992-09-17|1992-09-16|1992-10-13|TAKE BACK RETURN|SHIP|packages sleep| +27787|348046|10553|6|29|31726.87|0.10|0.07|R|F|1992-10-01|1992-08-29|1992-10-19|DELIVER IN PERSON|RAIL|accounts cajole slyly. busy, special | +27788|277036|39542|1|31|31403.62|0.03|0.04|N|O|1997-06-18|1997-04-19|1997-07-18|DELIVER IN PERSON|FOB|e furiously. accou| +27788|127949|27950|2|23|45469.62|0.03|0.07|N|O|1997-03-15|1997-05-27|1997-03-30|TAKE BACK RETURN|MAIL|dolites wake blit| +27788|425827|13352|3|26|45572.80|0.06|0.00|N|O|1997-06-05|1997-04-27|1997-06-27|TAKE BACK RETURN|RAIL|uests. pending accounts among | +27788|867229|29747|4|49|58612.82|0.08|0.02|N|O|1997-05-13|1997-04-13|1997-05-21|NONE|AIR|e. quickly silen| +27788|505284|30305|5|35|45124.10|0.10|0.05|N|O|1997-03-22|1997-06-05|1997-04-04|NONE|FOB|ss, ironic requests affi| +27788|293474|43475|6|34|49893.64|0.08|0.01|N|O|1997-06-29|1997-05-06|1997-07-27|NONE|SHIP|somas promise slyly. bold| +27788|412738|25247|7|44|72631.24|0.05|0.00|N|O|1997-05-09|1997-04-06|1997-05-15|TAKE BACK RETURN|FOB|he furiously regular theodolit| +27789|879157|16709|1|31|35219.41|0.03|0.07|A|F|1992-05-08|1992-07-10|1992-05-12|COLLECT COD|MAIL|lithely ev| +27789|985003|35004|2|20|21759.20|0.10|0.03|A|F|1992-07-14|1992-05-29|1992-07-18|DELIVER IN PERSON|MAIL|lar foxes | +27789|935367|35368|3|30|42069.60|0.10|0.05|A|F|1992-07-25|1992-07-17|1992-07-30|DELIVER IN PERSON|RAIL|ual patterns are entici| +27789|698108|10622|4|40|44242.80|0.07|0.06|A|F|1992-06-21|1992-07-07|1992-07-19|TAKE BACK RETURN|TRUCK|. fluffily| +27789|94349|6851|5|40|53733.60|0.08|0.05|A|F|1992-06-30|1992-07-24|1992-07-04|COLLECT COD|REG AIR|ncies detect furiously atop| +27789|712079|24594|6|20|21820.80|0.03|0.03|R|F|1992-08-20|1992-07-01|1992-09-06|TAKE BACK RETURN|AIR|s. carefully express | +27789|906245|43800|7|27|33782.40|0.10|0.01|A|F|1992-06-21|1992-07-04|1992-07-04|NONE|RAIL| instructions. quick| +27790|246891|21900|1|8|14703.04|0.04|0.07|A|F|1995-06-09|1995-07-24|1995-06-17|DELIVER IN PERSON|AIR|e furiously according to | +27790|482253|19781|2|42|51879.66|0.10|0.02|N|O|1995-06-24|1995-07-27|1995-07-08|TAKE BACK RETURN|REG AIR|s sleep about th| +27791|494121|19140|1|24|26762.40|0.06|0.06|A|F|1995-03-19|1995-03-13|1995-03-25|NONE|REG AIR|ong the theodolites use sometimes along| +27791|682748|20288|2|33|57113.43|0.09|0.00|R|F|1995-02-10|1995-03-30|1995-02-14|COLLECT COD|SHIP|le slyly according to the regular pa| +27791|934343|46862|3|48|66110.40|0.06|0.08|A|F|1995-01-14|1995-04-09|1995-01-21|TAKE BACK RETURN|REG AIR|lithely bold deposits. evenly | +27791|492336|42337|4|22|29222.82|0.04|0.02|R|F|1995-03-01|1995-02-15|1995-03-05|COLLECT COD|TRUCK|he accounts. even requests slee| +27791|685535|10562|5|20|30410.00|0.01|0.04|A|F|1995-02-13|1995-04-03|1995-02-15|NONE|FOB|ctions. fluffily ironic notornis po| +27816|572543|47566|1|50|80776.00|0.07|0.03|R|F|1994-09-28|1994-11-02|1994-10-12|NONE|RAIL|pending dinos| +27816|724498|49527|2|10|15224.60|0.07|0.08|A|F|1994-11-16|1994-11-29|1994-12-03|NONE|FOB|s print carefully alongside of the f| +27816|636053|11078|3|39|38571.78|0.06|0.03|R|F|1995-01-04|1994-10-28|1995-01-28|TAKE BACK RETURN|TRUCK|s. furiously regula| +27817|842777|42778|1|12|20636.76|0.08|0.03|R|F|1993-03-16|1993-03-06|1993-03-23|NONE|SHIP| ironic instructions after the carefully | +27817|551102|1103|2|47|54194.76|0.01|0.08|A|F|1993-02-18|1993-02-04|1993-03-02|TAKE BACK RETURN|AIR|ily pending patterns. quickly regular p| +27817|361963|24471|3|39|78973.05|0.06|0.03|R|F|1992-12-25|1993-03-21|1993-01-07|TAKE BACK RETURN|SHIP|es are quickly ironic, final sheav| +27818|802960|27993|1|10|18629.20|0.04|0.01|A|F|1993-04-11|1993-02-21|1993-05-08|TAKE BACK RETURN|REG AIR| pinto beans about the bravely ir| +27818|343217|30736|2|50|63010.00|0.07|0.04|A|F|1993-02-18|1993-02-20|1993-03-15|TAKE BACK RETURN|SHIP|hely ironic sentiments. even att| +27818|440310|15327|3|13|16253.77|0.05|0.06|R|F|1993-01-01|1993-02-05|1993-01-08|COLLECT COD|REG AIR|nly special theodolites boost sly| +27819|648696|48697|1|3|4933.98|0.06|0.08|N|O|1997-06-18|1997-04-18|1997-06-28|DELIVER IN PERSON|MAIL|elets need to detect furiously. | +27819|624524|12061|2|39|56491.11|0.05|0.00|N|O|1997-04-12|1997-05-13|1997-04-14|NONE|FOB|usly ironic deposits use. quickly even hock| +27819|374163|24164|3|20|24743.00|0.02|0.03|N|O|1997-03-29|1997-05-12|1997-04-22|TAKE BACK RETURN|REG AIR|er slyly bold deposits. blithely pe| +27819|547157|9668|4|3|3612.39|0.02|0.02|N|O|1997-06-09|1997-05-22|1997-07-06|COLLECT COD|REG AIR|press packages solve furiously. sl| +27819|65611|40614|5|17|26802.37|0.01|0.00|N|O|1997-05-10|1997-04-29|1997-06-09|TAKE BACK RETURN|MAIL|ias wake furiously. bold dolphins sleep f| +27819|717342|4885|6|3|4077.93|0.07|0.01|N|O|1997-04-10|1997-05-20|1997-04-23|COLLECT COD|AIR|ronic ideas mold fluffily. furiously ex| +27820|693381|18408|1|9|12369.15|0.05|0.00|N|O|1997-11-30|1998-01-06|1997-12-03|DELIVER IN PERSON|SHIP|ions wake quick| +27820|647560|35097|2|35|52763.55|0.07|0.05|N|O|1998-01-06|1997-12-20|1998-01-08|COLLECT COD|FOB|sly silent pains. express, ironic ac| +27821|962781|37820|1|9|16593.66|0.07|0.04|N|O|1997-04-07|1997-03-24|1997-04-17|DELIVER IN PERSON|RAIL|y above the regula| +27821|445021|45022|2|8|7728.00|0.10|0.04|N|O|1997-02-23|1997-03-21|1997-03-20|NONE|SHIP|structions x-ray blit| +27821|453139|28158|3|15|16381.65|0.04|0.05|N|O|1997-03-29|1997-03-04|1997-04-06|DELIVER IN PERSON|FOB|s among the in| +27821|906318|43873|4|44|58267.88|0.04|0.02|N|O|1997-01-31|1997-03-24|1997-02-19|COLLECT COD|REG AIR|ngly unusual| +27821|477172|14700|5|25|28728.75|0.09|0.03|N|O|1997-02-28|1997-03-22|1997-03-01|TAKE BACK RETURN|TRUCK|ld packages. furiously even request| +27821|827936|27937|6|2|3727.78|0.02|0.04|N|O|1997-04-30|1997-04-01|1997-05-25|COLLECT COD|TRUCK|ckly after the silent d| +27821|103778|3779|7|24|42762.48|0.06|0.01|N|O|1997-02-08|1997-02-24|1997-02-28|TAKE BACK RETURN|AIR|refully even pinto beans. thinly final pac| +27822|190257|27767|1|46|61973.50|0.08|0.06|N|O|1998-09-23|1998-09-21|1998-09-28|COLLECT COD|AIR|uriously alongside of| +27822|646643|46644|2|13|20664.93|0.02|0.05|N|O|1998-11-03|1998-08-27|1998-11-21|DELIVER IN PERSON|SHIP|ly even requests are alongside of the | +27822|117796|42801|3|27|48972.33|0.10|0.01|N|O|1998-08-20|1998-10-06|1998-08-24|TAKE BACK RETURN|AIR|sual ideas wake bl| +27822|793955|31501|4|49|100397.08|0.04|0.02|N|O|1998-07-26|1998-08-22|1998-08-22|TAKE BACK RETURN|RAIL|nic pinto beans. fi| +27823|868411|43446|1|34|46898.58|0.08|0.00|N|O|1997-05-07|1997-06-20|1997-05-16|TAKE BACK RETURN|SHIP|he closely | +27823|380974|43482|2|15|30824.40|0.04|0.07|N|O|1997-05-11|1997-06-19|1997-05-25|NONE|SHIP|equests wake blithely final instructions. | +27823|29487|29488|3|40|56659.20|0.01|0.06|N|O|1997-07-02|1997-05-11|1997-07-31|NONE|RAIL| ironic excuses haggle| +27823|576878|39390|4|17|33232.45|0.09|0.08|N|O|1997-07-03|1997-05-16|1997-07-28|NONE|FOB|ial instructions use blithely| +27823|581187|43699|5|19|24095.04|0.10|0.04|N|O|1997-07-12|1997-06-11|1997-08-02|NONE|FOB|ar sheaves | +27823|5790|30791|6|23|39003.17|0.05|0.05|N|O|1997-06-01|1997-04-25|1997-06-29|DELIVER IN PERSON|REG AIR| requests. furiously ironic theodolites | +27848|264554|27060|1|7|10629.78|0.05|0.06|R|F|1993-06-23|1993-05-16|1993-07-07|COLLECT COD|TRUCK|ver regular | +27848|352013|27028|2|29|30885.00|0.04|0.04|A|F|1993-04-14|1993-05-31|1993-04-26|COLLECT COD|REG AIR|ts wake. carefu| +27848|278414|3425|3|34|47341.60|0.06|0.07|A|F|1993-05-05|1993-06-12|1993-05-29|TAKE BACK RETURN|REG AIR|inal theodolites. regular, regular requ| +27848|290918|40919|4|33|62993.70|0.05|0.04|R|F|1993-04-12|1993-06-17|1993-04-15|COLLECT COD|MAIL|ic, even ideas. request| +27849|405923|5924|1|25|45722.50|0.07|0.08|N|O|1998-09-03|1998-08-22|1998-09-22|COLLECT COD|SHIP|fluffily final package| +27849|334350|34351|2|18|24918.12|0.10|0.06|N|O|1998-08-23|1998-09-02|1998-09-05|DELIVER IN PERSON|RAIL|accounts. regular requests boost. slyly bol| +27849|407573|32590|3|13|19247.15|0.08|0.05|N|O|1998-11-05|1998-08-26|1998-11-08|TAKE BACK RETURN|RAIL|lent pinto beans. blithel| +27850|523350|48371|1|21|28839.93|0.08|0.06|A|F|1994-02-24|1994-03-31|1994-03-10|TAKE BACK RETURN|MAIL|ckly ironic accounts affix. quickly | +27850|930391|17946|2|18|25584.30|0.01|0.07|R|F|1994-02-28|1994-02-28|1994-03-22|NONE|RAIL|es cajole. ev| +27851|651051|38591|1|2|2004.04|0.08|0.08|R|F|1995-03-06|1995-05-29|1995-03-23|TAKE BACK RETURN|TRUCK|blithely special dependencies al| +27851|208633|33642|2|4|6166.48|0.05|0.02|A|F|1995-04-08|1995-04-04|1995-04-29|TAKE BACK RETURN|REG AIR|structions coul| +27851|489042|14061|3|31|31961.62|0.04|0.06|R|F|1995-05-15|1995-05-07|1995-06-09|NONE|RAIL|. silently ironic deposits inte| +27851|322886|47899|4|4|7635.48|0.06|0.01|A|F|1995-05-09|1995-05-04|1995-05-10|NONE|FOB|ly final packages haggle quickly alongsid| +27851|740402|2917|5|48|69233.76|0.07|0.08|R|F|1995-04-22|1995-04-11|1995-05-03|COLLECT COD|REG AIR|inal ideas along the unusual i| +27852|341691|41692|1|35|60643.80|0.01|0.05|A|F|1994-09-03|1994-10-30|1994-09-11|DELIVER IN PERSON|TRUCK|sly final foxes play against t| +27852|787295|37296|2|33|45614.58|0.02|0.05|A|F|1994-10-28|1994-11-04|1994-11-02|DELIVER IN PERSON|AIR|pecial ideas. accounts poach. furio| +27852|56877|19379|3|35|64185.45|0.03|0.03|A|F|1994-09-17|1994-10-20|1994-09-19|COLLECT COD|FOB|ly regular requests across | +27852|917031|42068|4|23|24103.77|0.10|0.04|R|F|1994-11-07|1994-09-26|1994-11-11|NONE|RAIL|le final theodolites. asymptot| +27852|526515|26516|5|8|12331.92|0.05|0.00|R|F|1994-09-09|1994-10-09|1994-09-17|DELIVER IN PERSON|REG AIR|the unusual, regular package| +27852|124618|37121|6|42|68989.62|0.00|0.00|R|F|1994-11-15|1994-09-23|1994-12-12|NONE|RAIL|hely regular d| +27852|453403|40931|7|37|50186.06|0.05|0.05|R|F|1994-10-16|1994-10-11|1994-11-07|NONE|REG AIR|olites. quickly f| +27853|333969|46476|1|36|72106.20|0.00|0.06|R|F|1993-02-24|1993-01-24|1993-03-15|NONE|REG AIR| quickly special tithes. unu| +27853|7748|7749|2|45|74508.30|0.01|0.03|R|F|1993-02-04|1993-01-24|1993-02-06|TAKE BACK RETURN|TRUCK|ts cajole slyly according to the slyl| +27854|324552|49565|1|39|61485.06|0.07|0.05|R|F|1995-05-03|1995-06-01|1995-05-28|NONE|FOB|ly ruthless foxes engage| +27854|743174|43175|2|14|17039.96|0.04|0.04|R|F|1995-05-18|1995-05-08|1995-06-03|NONE|TRUCK|ins. furiously fin| +27854|525341|37852|3|9|12296.88|0.06|0.06|N|O|1995-07-03|1995-06-16|1995-07-21|TAKE BACK RETURN|SHIP|inal excuses. deposits sublat| +27854|401315|1316|4|44|53516.76|0.05|0.08|R|F|1995-05-11|1995-06-17|1995-06-05|NONE|REG AIR|to beans cajole careful| +27854|889663|2181|5|42|69410.04|0.06|0.04|N|F|1995-05-23|1995-05-15|1995-06-19|TAKE BACK RETURN|TRUCK|ackages cajole against the | +27855|694980|44981|1|7|13824.65|0.04|0.02|N|O|1996-03-22|1996-02-09|1996-04-09|COLLECT COD|REG AIR|nic requests detect fluffi| +27855|520064|45085|2|11|11924.44|0.09|0.03|N|O|1995-12-11|1996-01-12|1995-12-18|COLLECT COD|SHIP|yly regular | +27855|702591|2592|3|23|36651.88|0.00|0.01|N|O|1995-12-13|1996-01-19|1996-01-04|NONE|REG AIR|eaves affix| +27880|651345|13859|1|27|35000.37|0.09|0.07|N|O|1996-03-13|1996-05-29|1996-04-10|NONE|RAIL| final packages| +27880|153889|28896|2|1|1942.88|0.10|0.01|N|O|1996-05-04|1996-05-06|1996-05-16|COLLECT COD|RAIL|refully pending pac| +27880|402774|2775|3|37|62039.75|0.01|0.00|N|O|1996-03-30|1996-06-05|1996-04-04|TAKE BACK RETURN|AIR|haggle furiousl| +27880|413427|952|4|17|22786.80|0.05|0.00|N|O|1996-07-05|1996-05-01|1996-07-30|NONE|RAIL|ithely. silent ideas affix re| +27880|457910|32929|5|1|1867.89|0.00|0.00|N|O|1996-05-09|1996-04-20|1996-05-28|NONE|REG AIR|e slyly at the i| +27880|91822|41823|6|7|12696.74|0.02|0.02|N|O|1996-06-24|1996-05-16|1996-07-09|TAKE BACK RETURN|AIR|uctions affix bli| +27880|251709|1710|7|25|41517.25|0.00|0.00|N|O|1996-05-24|1996-05-16|1996-05-28|COLLECT COD|MAIL|sly regular deposits cajole. car| +27881|470383|45402|1|16|21653.76|0.02|0.04|N|O|1998-05-25|1998-06-17|1998-06-06|TAKE BACK RETURN|RAIL|final packages cajole above the quickly bo| +27881|714807|27322|2|20|36435.40|0.04|0.00|N|O|1998-05-19|1998-05-24|1998-05-22|NONE|REG AIR| even accounts will ha| +27881|756129|6130|3|49|58069.41|0.06|0.01|N|O|1998-05-31|1998-06-18|1998-06-15|NONE|TRUCK|eans haggle acros| +27881|251882|14388|4|22|40345.14|0.04|0.02|N|O|1998-05-28|1998-05-27|1998-06-26|DELIVER IN PERSON|SHIP|es nag abou| +27881|367720|17721|5|22|39329.62|0.07|0.02|N|O|1998-04-02|1998-04-29|1998-04-06|DELIVER IN PERSON|REG AIR|es. final requests ac| +27881|267053|29559|6|32|32641.28|0.10|0.03|N|O|1998-05-30|1998-06-15|1998-06-19|NONE|SHIP| slyly final dependenci| +27881|357616|32631|7|6|10041.60|0.01|0.08|N|O|1998-07-12|1998-05-06|1998-07-24|NONE|SHIP|xes are. furiously iron| +27882|448020|10529|1|1|968.00|0.00|0.06|N|O|1996-02-04|1996-03-03|1996-02-20|NONE|SHIP|c accounts. blithely ironic deposits h| +27882|864545|27063|2|9|13585.50|0.03|0.08|N|O|1996-01-15|1996-02-27|1996-01-18|TAKE BACK RETURN|MAIL|ickly after| +27882|395750|8258|3|34|62755.16|0.03|0.06|N|O|1996-01-20|1996-03-21|1996-02-12|DELIVER IN PERSON|AIR|le pending, unusual packages. b| +27883|604719|17232|1|36|58452.48|0.05|0.00|A|F|1994-11-05|1994-10-29|1994-11-07|COLLECT COD|AIR|the fluffily ironic instructions| +27883|503706|3707|2|43|73516.24|0.08|0.02|A|F|1994-09-29|1994-11-16|1994-10-22|DELIVER IN PERSON|MAIL| regular accounts according to the | +27883|785640|35641|3|20|34512.20|0.04|0.08|R|F|1994-10-15|1994-11-29|1994-10-27|COLLECT COD|RAIL|ckages above the furious| +27883|239675|27188|4|43|69430.38|0.00|0.01|R|F|1994-09-18|1994-11-04|1994-09-19|COLLECT COD|RAIL|ely final deposits hinder am| +27884|123607|36110|1|37|60332.20|0.01|0.08|N|O|1996-03-30|1996-04-06|1996-04-06|TAKE BACK RETURN|MAIL|thely. fluffily stealt| +27884|449677|12186|2|8|13013.20|0.07|0.06|N|O|1996-04-19|1996-02-29|1996-05-12|NONE|TRUCK|ong the final dep| +27884|704693|29722|3|50|84883.00|0.06|0.05|N|O|1996-03-11|1996-03-12|1996-03-26|TAKE BACK RETURN|REG AIR|e blithely ironi| +27884|772640|47671|4|13|22263.93|0.09|0.02|N|O|1996-01-20|1996-03-29|1996-02-12|TAKE BACK RETURN|RAIL|yly final requests along the | +27884|755268|17784|5|4|5292.92|0.05|0.00|N|O|1996-04-11|1996-02-28|1996-04-27|NONE|FOB|regular requests| +27885|447840|35365|1|35|62573.70|0.01|0.02|N|O|1996-07-17|1996-07-17|1996-08-01|NONE|SHIP|olve slyly regular, regular requests-- d| +27885|842588|17621|2|5|7652.70|0.10|0.08|N|O|1996-08-07|1996-07-14|1996-08-22|TAKE BACK RETURN|AIR|r deposits. courts are carefully ac| +27885|367304|29812|3|42|57594.18|0.00|0.05|N|O|1996-06-10|1996-07-05|1996-07-10|DELIVER IN PERSON|RAIL|somas. ruthle| +27885|263596|1112|4|39|60823.62|0.07|0.04|N|O|1996-09-01|1996-07-17|1996-09-23|TAKE BACK RETURN|MAIL| foxes. re| +27886|502283|14794|1|20|25705.20|0.05|0.01|N|O|1996-09-26|1996-09-23|1996-10-16|TAKE BACK RETURN|RAIL|ic theodolites cajole| +27886|864906|39941|2|27|50513.22|0.09|0.07|N|O|1996-07-30|1996-08-07|1996-08-04|TAKE BACK RETURN|MAIL|sly regular packages wake after the| +27887|967429|42468|1|36|53869.68|0.01|0.04|N|O|1997-04-11|1997-04-07|1997-04-24|TAKE BACK RETURN|RAIL|dly bold a| +27887|575845|868|2|1|1920.82|0.09|0.00|N|O|1997-04-14|1997-04-21|1997-04-15|NONE|RAIL|sias. excuses agai| +27887|217542|5055|3|43|62759.79|0.03|0.06|N|O|1997-02-12|1997-03-14|1997-02-19|TAKE BACK RETURN|MAIL|nto beans cajole after the even r| +27887|216713|41722|4|43|70077.10|0.00|0.08|N|O|1997-05-18|1997-04-13|1997-05-22|DELIVER IN PERSON|RAIL|regular packages. quickly| +27887|293117|5623|5|46|51064.60|0.05|0.05|N|O|1997-04-09|1997-03-20|1997-05-07|NONE|MAIL|s. carefully expre| +27887|412668|12669|6|29|45838.56|0.07|0.05|N|O|1997-04-27|1997-04-28|1997-05-10|COLLECT COD|FOB|even hockey players. slyly regular ac| +27912|675953|980|1|25|48223.00|0.02|0.03|N|O|1996-04-27|1996-05-27|1996-05-08|TAKE BACK RETURN|MAIL|eans across | +27912|729028|41543|2|11|11626.89|0.04|0.01|N|O|1996-06-21|1996-07-05|1996-07-13|TAKE BACK RETURN|TRUCK|ackages dazzle furious| +27912|761081|11082|3|14|15988.70|0.03|0.06|N|O|1996-05-30|1996-06-30|1996-06-26|NONE|REG AIR|quickly ironic deposits? doggedly ironi| +27913|42966|42967|1|18|34361.28|0.08|0.04|N|O|1995-08-05|1995-08-09|1995-09-01|COLLECT COD|FOB|s wake furiously across the blithel| +27913|113242|13243|2|5|6276.20|0.07|0.06|N|O|1995-09-20|1995-09-14|1995-09-26|DELIVER IN PERSON|REG AIR| regular deposits| +27913|242656|42657|3|30|47959.20|0.06|0.02|N|O|1995-08-13|1995-09-13|1995-08-22|TAKE BACK RETURN|MAIL|ithely between | +27913|314557|14558|4|6|9429.24|0.05|0.01|N|O|1995-07-19|1995-09-05|1995-08-02|DELIVER IN PERSON|REG AIR|egular pinto beans | +27914|349744|49745|1|47|84305.31|0.09|0.06|R|F|1994-11-27|1994-10-12|1994-11-28|TAKE BACK RETURN|REG AIR|ccounts sleep blithely foxes| +27915|446688|46689|1|5|8173.30|0.06|0.08|N|O|1995-10-25|1995-10-14|1995-11-08|DELIVER IN PERSON|TRUCK|s. slyly even in| +27916|907049|7050|1|17|17952.00|0.09|0.07|A|F|1993-08-02|1993-06-24|1993-08-31|NONE|RAIL|bout the blithely| +27916|759235|21751|2|44|56944.80|0.00|0.00|R|F|1993-06-07|1993-07-14|1993-07-02|TAKE BACK RETURN|REG AIR|etect quickly| +27916|446549|34074|3|23|34396.96|0.03|0.00|A|F|1993-05-13|1993-07-17|1993-06-10|DELIVER IN PERSON|SHIP|the instructions. carefully express pains| +27916|136795|36796|4|1|1831.79|0.00|0.00|R|F|1993-05-03|1993-05-27|1993-05-12|NONE|TRUCK|gular accounts wake slyly. slyly unus| +27916|97987|47988|5|5|9924.90|0.00|0.07|A|F|1993-06-29|1993-06-23|1993-06-30|DELIVER IN PERSON|SHIP| bold, regular pinto beans ne| +27916|862124|24642|6|34|36926.72|0.04|0.04|R|F|1993-07-19|1993-06-30|1993-07-24|COLLECT COD|FOB|ffily unusual packages integr| +27916|710166|22681|7|18|21170.34|0.10|0.03|A|F|1993-08-21|1993-07-16|1993-09-14|TAKE BACK RETURN|AIR|en requests! quickly fi| +27917|756983|6984|1|44|89757.80|0.01|0.03|A|F|1992-12-11|1993-01-10|1992-12-31|NONE|AIR|furiously ironic accoun| +27917|610765|23278|2|31|51947.63|0.02|0.02|R|F|1993-03-14|1993-01-17|1993-04-03|DELIVER IN PERSON|RAIL|egular pinto| +27917|116871|29374|3|32|60411.84|0.00|0.08|R|F|1993-02-21|1993-02-18|1993-03-19|COLLECT COD|FOB|lyly foxes. qu| +27917|239578|2083|4|1|1517.56|0.05|0.05|A|F|1992-12-05|1993-01-19|1992-12-15|DELIVER IN PERSON|SHIP|efully about the blithely final fo| +27917|581654|6677|5|12|20827.56|0.07|0.02|R|F|1993-03-18|1993-01-19|1993-04-05|NONE|FOB|dolites could are. even deposits h| +27918|212227|49740|1|20|22784.20|0.08|0.02|A|F|1994-09-02|1994-10-27|1994-09-09|NONE|SHIP| pinto beans haggle fu| +27918|887372|49890|2|36|48935.88|0.04|0.01|R|F|1994-11-08|1994-09-12|1994-11-10|TAKE BACK RETURN|AIR|fter the regular pearls| +27918|53794|41298|3|12|20973.48|0.05|0.05|A|F|1994-11-23|1994-10-25|1994-11-27|COLLECT COD|AIR|ular requests| +27918|114903|2410|4|12|23014.80|0.05|0.03|R|F|1994-10-22|1994-10-23|1994-11-02|DELIVER IN PERSON|FOB|ress requests might nag fluffily. carefull| +27918|166743|29247|5|41|74199.34|0.00|0.00|R|F|1994-10-27|1994-09-15|1994-11-26|DELIVER IN PERSON|AIR|ckly alongside of the quickly regula| +27918|434225|46734|6|41|47527.20|0.06|0.04|R|F|1994-11-22|1994-10-14|1994-12-13|TAKE BACK RETURN|TRUCK|ts are care| +27918|4912|29913|7|35|63591.85|0.06|0.05|R|F|1994-11-28|1994-09-17|1994-12-20|COLLECT COD|AIR|le sometimes until the slyly eve| +27919|545382|20403|1|9|12846.24|0.05|0.03|N|O|1997-05-15|1997-05-26|1997-06-12|COLLECT COD|SHIP|oze fluffily after the blith| +27919|232258|32259|2|36|42848.64|0.09|0.08|N|O|1997-06-29|1997-06-29|1997-07-02|DELIVER IN PERSON|RAIL|y express foxes a| +27944|872312|22313|1|21|26969.67|0.04|0.00|N|O|1998-04-25|1998-04-12|1998-05-25|DELIVER IN PERSON|AIR|t the regular, regular epitaphs. regula| +27945|409054|21563|1|29|27927.87|0.10|0.08|N|O|1997-11-22|1998-01-29|1997-12-10|DELIVER IN PERSON|AIR|ffily even pac| +27945|963623|13624|2|4|6746.32|0.10|0.00|N|O|1997-12-05|1998-01-10|1997-12-16|NONE|REG AIR|slyly express, ironic excuses. ironic, regu| +27945|601561|39098|3|18|26325.54|0.06|0.04|N|O|1998-01-04|1997-12-13|1998-02-01|TAKE BACK RETURN|FOB|bove the fluffily regular | +27945|424315|11840|4|11|13632.19|0.07|0.04|N|O|1998-02-25|1997-12-19|1998-03-27|TAKE BACK RETURN|RAIL|nal deposits| +27945|458843|8844|5|37|66667.34|0.01|0.08|N|O|1997-11-17|1998-01-22|1997-12-17|COLLECT COD|FOB|t, special frets wake sometimes bold| +27945|760699|10700|6|42|73905.72|0.10|0.02|N|O|1998-01-09|1998-02-05|1998-01-11|TAKE BACK RETURN|REG AIR|furiously. excuses after the careful| +27946|172947|22948|1|25|50498.50|0.06|0.03|A|F|1993-01-10|1993-02-22|1993-01-27|DELIVER IN PERSON|RAIL|tes. final ideas are carefully. furious| +27946|715226|27741|2|12|14894.28|0.02|0.03|R|F|1993-02-18|1993-02-02|1993-03-15|TAKE BACK RETURN|REG AIR|deposits. sl| +27946|796997|46998|3|45|94228.20|0.01|0.08|A|F|1993-04-10|1993-03-28|1993-05-06|NONE|SHIP|yly bold dependencies. carefu| +27946|118380|5887|4|49|68520.62|0.07|0.08|A|F|1993-03-26|1993-03-02|1993-04-02|DELIVER IN PERSON|AIR|fully unusual packages affix. dependencie| +27946|606148|43685|5|19|20028.09|0.09|0.06|A|F|1993-03-24|1993-03-02|1993-03-29|DELIVER IN PERSON|SHIP|express requests cajole qui| +27947|576653|1676|1|36|62266.68|0.08|0.05|N|O|1997-01-26|1997-03-21|1997-01-27|NONE|MAIL|ly final requests use a| +27947|800808|809|2|9|15378.84|0.09|0.07|N|O|1997-02-17|1997-03-30|1997-02-20|COLLECT COD|FOB|ckages haggle slyly| +27947|176446|26447|3|27|41105.88|0.03|0.01|N|O|1997-04-07|1997-03-17|1997-04-08|DELIVER IN PERSON|FOB|al pinto b| +27947|511397|23908|4|41|57743.17|0.05|0.07|N|O|1997-03-22|1997-02-14|1997-04-01|TAKE BACK RETURN|FOB|ording to t| +27947|32681|45182|5|50|80684.00|0.09|0.07|N|O|1997-02-19|1997-03-11|1997-03-18|NONE|RAIL|the deposits haggl| +27948|282903|32904|1|28|52804.92|0.00|0.07|A|F|1995-05-26|1995-04-25|1995-06-16|TAKE BACK RETURN|AIR| foxes across the blit| +27948|749789|12304|2|45|82743.75|0.08|0.05|R|F|1995-02-10|1995-02-25|1995-02-18|DELIVER IN PERSON|AIR|ithely unusual attainments cajol| +27948|690221|40222|3|33|39969.27|0.06|0.07|A|F|1995-01-27|1995-03-31|1995-02-24|DELIVER IN PERSON|AIR|ly ruthlessly | +27948|543406|18427|4|9|13044.42|0.08|0.08|R|F|1995-02-25|1995-03-15|1995-03-14|COLLECT COD|FOB|ously carefully final deposits. quickly | +27948|13931|26432|5|39|71952.27|0.05|0.08|R|F|1995-03-23|1995-04-13|1995-04-21|TAKE BACK RETURN|SHIP|y according to the regular, final deposit| +27949|673114|35628|1|28|30438.24|0.07|0.03|N|O|1998-06-05|1998-05-18|1998-06-16|TAKE BACK RETURN|SHIP|latelets around the carefully unusual cour| +27950|190372|2876|1|17|24860.29|0.09|0.04|N|O|1995-11-04|1995-11-17|1995-11-30|DELIVER IN PERSON|RAIL|quickly even | +27950|574317|36829|2|23|31999.67|0.10|0.04|N|O|1995-11-24|1995-12-27|1995-12-17|DELIVER IN PERSON|REG AIR|ross the foxes. quickly regular dinos n| +27950|532705|45216|3|29|50392.72|0.08|0.00|N|O|1995-12-05|1995-11-13|1996-01-03|TAKE BACK RETURN|TRUCK|s above the accounts will haggle blithely | +27950|162838|25342|4|14|26611.62|0.03|0.00|N|O|1995-12-25|1995-12-13|1996-01-10|NONE|MAIL|deposits. quickly busy packages s| +27950|811762|36795|5|32|53559.04|0.03|0.08|N|O|1996-01-22|1996-01-07|1996-02-04|NONE|RAIL|uriously bold depths. r| +27950|274267|49278|6|42|52132.50|0.01|0.04|N|O|1995-12-05|1995-12-22|1996-01-02|TAKE BACK RETURN|TRUCK|ng instruct| +27951|192608|30118|1|44|74826.40|0.05|0.01|A|F|1994-12-31|1994-12-21|1995-01-17|DELIVER IN PERSON|FOB|lyly unusual deposits above the e| +27951|155063|17567|2|44|49194.64|0.04|0.06|R|F|1994-12-18|1994-12-23|1994-12-28|DELIVER IN PERSON|FOB|ts; carefully express dependenci| +27951|130726|43229|3|7|12297.04|0.02|0.04|A|F|1995-02-03|1994-12-26|1995-03-01|DELIVER IN PERSON|FOB|ight use along the slyly bu| +27951|110613|48120|4|28|45461.08|0.03|0.06|R|F|1994-12-20|1994-12-28|1995-01-01|DELIVER IN PERSON|REG AIR|en requests integra| +27951|60383|10384|5|26|34927.88|0.00|0.05|A|F|1995-01-02|1995-01-24|1995-02-01|NONE|SHIP|its. regular, daring packages ag| +27951|855312|17830|6|50|63363.50|0.03|0.06|R|F|1995-02-08|1994-12-30|1995-02-11|COLLECT COD|MAIL|ans. carefully regular packages along t| +27951|225356|25357|7|46|58941.64|0.00|0.06|A|F|1995-03-22|1995-01-01|1995-04-01|DELIVER IN PERSON|RAIL| slyly reg| +27976|548238|23259|1|46|59165.66|0.00|0.07|N|O|1997-09-28|1997-10-14|1997-10-04|DELIVER IN PERSON|REG AIR|ual requests haggle furiously above th| +27976|220033|7546|2|6|5718.12|0.01|0.02|N|O|1997-11-16|1997-10-05|1997-11-25|DELIVER IN PERSON|RAIL|dolphins are quickly bold packages. ex| +27977|288862|38863|1|48|88840.80|0.09|0.01|R|F|1994-06-19|1994-07-01|1994-07-10|COLLECT COD|MAIL| special requests. even packag| +27977|887268|49786|2|45|56484.90|0.03|0.06|R|F|1994-09-02|1994-08-08|1994-09-18|TAKE BACK RETURN|AIR|pecial, ex| +27977|299592|12098|3|28|44564.24|0.09|0.07|R|F|1994-07-21|1994-08-06|1994-08-07|TAKE BACK RETURN|TRUCK| always. deposits cajole furiously unusua| +27977|235069|35070|4|32|32129.60|0.06|0.00|R|F|1994-07-26|1994-08-16|1994-08-11|DELIVER IN PERSON|TRUCK|the regular foxes boost sl| +27978|33359|20860|1|4|5169.40|0.10|0.07|N|O|1997-05-08|1997-06-08|1997-05-16|COLLECT COD|MAIL|counts boost slyly blithely| +27979|299634|37150|1|47|76780.14|0.00|0.02|N|O|1995-12-08|1995-12-28|1995-12-23|DELIVER IN PERSON|TRUCK|ly regular accounts need to use fluffily | +27979|939700|39701|2|45|78284.70|0.08|0.04|N|O|1995-11-18|1995-11-28|1995-11-23|DELIVER IN PERSON|REG AIR|hely final deposits. bold deposits c| +27979|531506|31507|3|25|38437.00|0.09|0.05|N|O|1995-10-20|1995-12-09|1995-11-06|TAKE BACK RETURN|AIR|refully ex| +27979|7628|32629|4|42|64496.04|0.04|0.07|N|O|1995-10-16|1995-12-05|1995-10-26|COLLECT COD|SHIP|yly even dependencies use sl| +27980|389937|14952|1|45|91211.40|0.08|0.04|N|O|1996-05-11|1996-04-25|1996-05-30|NONE|AIR|ccording to the ironic packages breach a| +27980|657308|44848|2|38|48080.26|0.02|0.03|N|O|1996-03-24|1996-05-14|1996-04-21|DELIVER IN PERSON|FOB|s wake furiously blithely unu| +27980|365812|15813|3|7|13144.60|0.03|0.05|N|O|1996-04-07|1996-05-24|1996-04-22|COLLECT COD|SHIP|he regular, regular requ| +27980|199585|24592|4|38|64014.04|0.03|0.06|N|O|1996-05-01|1996-04-06|1996-05-07|NONE|FOB|sts above the stealth| +27981|162333|37340|1|38|53022.54|0.08|0.03|N|O|1996-10-11|1996-11-10|1996-11-08|NONE|MAIL|ng the bold, bold theodolites. regular| +27981|319016|44029|2|7|7245.00|0.06|0.06|N|O|1996-12-01|1996-11-26|1996-12-28|COLLECT COD|MAIL|nic dolphins. ironic, fi| +27981|701152|1153|3|12|13837.44|0.04|0.06|N|O|1997-01-04|1996-11-05|1997-01-17|DELIVER IN PERSON|MAIL|ackages sleep carefully pending theod| +27981|258541|33552|4|8|11996.24|0.02|0.03|N|O|1996-10-20|1996-12-23|1996-10-31|DELIVER IN PERSON|AIR|s haggle fur| +27981|295202|45203|5|50|59859.50|0.09|0.00|N|O|1997-01-06|1996-12-09|1997-01-13|COLLECT COD|MAIL|refully express asymptotes. car| +27982|880551|43069|1|27|41350.77|0.10|0.04|N|O|1998-03-16|1998-03-05|1998-04-06|COLLECT COD|SHIP|pending packages sleep doggedly re| +27982|407197|7198|2|20|22083.40|0.10|0.07|N|O|1998-02-28|1998-04-28|1998-03-29|TAKE BACK RETURN|AIR| blithely about the furi| +27982|757001|44547|3|11|11637.67|0.00|0.00|N|O|1998-01-29|1998-04-13|1998-02-12|DELIVER IN PERSON|MAIL|theodolites hang carefull| +27982|902790|27827|4|44|78881.00|0.01|0.02|N|O|1998-04-02|1998-04-27|1998-04-13|NONE|AIR|s dolphins. furiously regular instruc| +27982|186360|48864|5|27|39051.72|0.04|0.04|N|O|1998-05-20|1998-04-17|1998-06-10|TAKE BACK RETURN|TRUCK|equests ha| +27982|140965|15970|6|10|20059.60|0.05|0.04|N|O|1998-02-04|1998-04-25|1998-02-19|COLLECT COD|TRUCK|efully carefully regular excuses. fl| +27982|194026|6530|7|30|33600.60|0.05|0.08|N|O|1998-03-19|1998-04-24|1998-04-18|DELIVER IN PERSON|SHIP|es x-ray fluffily. slyly bold r| +27983|987085|12124|1|46|53913.84|0.01|0.08|R|F|1994-04-24|1994-06-21|1994-05-22|TAKE BACK RETURN|AIR|e. stealthy dependencies slee| +27983|928637|3674|2|31|51633.29|0.00|0.08|R|F|1994-04-14|1994-06-22|1994-04-25|TAKE BACK RETURN|TRUCK|lly alongs| +27983|587992|13015|3|38|79038.86|0.08|0.01|R|F|1994-07-09|1994-07-01|1994-07-19|DELIVER IN PERSON|FOB|its. even foxes nag furiously above the fl| +28008|417316|17317|1|34|41931.86|0.00|0.02|N|O|1996-02-02|1996-02-14|1996-02-27|COLLECT COD|AIR|efully regu| +28008|814871|2420|2|4|7143.32|0.06|0.06|N|O|1996-02-24|1996-02-25|1996-02-29|TAKE BACK RETURN|FOB|ans. silent pinto beans a| +28008|534542|34543|3|11|17341.72|0.01|0.01|N|O|1995-12-27|1996-02-06|1996-01-12|DELIVER IN PERSON|FOB|tect carefully according to the even| +28008|46247|8748|4|27|32217.48|0.09|0.05|N|O|1996-03-09|1996-02-02|1996-03-28|DELIVER IN PERSON|MAIL|er the ironic, regular theodolites! bol| +28008|262958|37969|5|37|71074.78|0.08|0.06|N|O|1996-01-02|1996-02-07|1996-01-31|COLLECT COD|SHIP| cajole closely carefu| +28009|537910|421|1|14|27270.46|0.03|0.00|A|F|1993-06-06|1993-08-18|1993-06-23|DELIVER IN PERSON|MAIL|ironic dependencies ca| +28009|650416|25443|2|49|66952.62|0.08|0.00|R|F|1993-08-31|1993-08-22|1993-09-22|NONE|REG AIR| ironic asymptotes above the furiousl| +28009|526477|1498|3|18|27062.10|0.07|0.07|R|F|1993-07-21|1993-07-18|1993-08-02|TAKE BACK RETURN|MAIL|ully after the silent| +28009|482770|20298|4|37|64851.75|0.09|0.08|R|F|1993-07-30|1993-08-09|1993-08-10|COLLECT COD|REG AIR|ic accounts. closely final acc| +28009|907859|45414|5|7|13067.67|0.10|0.02|A|F|1993-08-12|1993-08-05|1993-08-26|NONE|AIR|kly express dolphins. quickly fina| +28010|430980|43489|1|5|9554.80|0.00|0.01|N|O|1997-01-27|1996-12-22|1997-02-12|DELIVER IN PERSON|RAIL| unusual deposits breach| +28010|474332|36842|2|21|27432.51|0.03|0.01|N|O|1996-12-17|1996-12-08|1996-12-18|NONE|MAIL|y. carefully unusual depo| +28011|669252|19253|1|28|34194.16|0.01|0.07|A|F|1995-01-15|1995-04-05|1995-02-09|COLLECT COD|AIR| according to the accounts wake about | +28011|102315|27320|2|40|52692.40|0.07|0.05|R|F|1995-05-04|1995-03-13|1995-05-25|COLLECT COD|SHIP|ickly ironic theodolites cajole slyly| +28011|596307|46308|3|50|70164.00|0.01|0.07|R|F|1995-01-21|1995-03-21|1995-02-06|COLLECT COD|AIR|gular, regular pinto beans haggle slyly c| +28011|118906|31409|4|34|65446.60|0.04|0.06|R|F|1995-04-28|1995-02-16|1995-05-09|DELIVER IN PERSON|AIR|ly special ideas cajole careful| +28011|439880|14897|5|47|85533.42|0.00|0.04|R|F|1995-02-17|1995-02-16|1995-02-27|COLLECT COD|SHIP|nts wake quickly bold foxes. quickly spec| +28012|401657|1658|1|33|51434.79|0.07|0.02|A|F|1994-03-24|1994-03-20|1994-03-25|DELIVER IN PERSON|MAIL|ests. quickly unusual instr| +28012|640417|15442|2|22|29862.36|0.09|0.01|R|F|1994-04-10|1994-03-28|1994-04-27|NONE|TRUCK|lphins haggle slyly expres| +28012|475483|25484|3|26|37919.96|0.07|0.03|A|F|1994-02-08|1994-03-26|1994-02-24|DELIVER IN PERSON|REG AIR|ockey player| +28012|428342|15867|4|4|5081.28|0.00|0.01|R|F|1994-03-06|1994-03-16|1994-03-10|DELIVER IN PERSON|REG AIR|structions wake | +28013|446795|34320|1|29|50511.33|0.05|0.05|N|O|1997-01-17|1997-02-17|1997-01-21|TAKE BACK RETURN|FOB|tructions according to the fina| +28013|280771|43277|2|8|14014.08|0.06|0.06|N|O|1997-04-17|1997-03-15|1997-05-03|TAKE BACK RETURN|AIR| even foxes. slyly | +28013|909893|47448|3|15|28542.75|0.07|0.08|N|O|1997-03-18|1997-03-15|1997-04-14|DELIVER IN PERSON|FOB|leep furiously. carefull| +28013|568568|43591|4|47|76917.38|0.03|0.05|N|O|1997-03-16|1997-02-24|1997-04-12|TAKE BACK RETURN|REG AIR|ly unusual fra| +28014|723666|36181|1|23|38861.49|0.01|0.02|N|O|1997-08-14|1997-08-09|1997-08-24|NONE|AIR|y with the furiously pending accoun| +28014|639648|39649|2|49|77792.89|0.04|0.07|N|O|1997-08-24|1997-08-08|1997-09-04|COLLECT COD|SHIP|uriously idle ideas. carefull| +28014|556284|31307|3|24|32166.24|0.10|0.05|N|O|1997-07-17|1997-07-20|1997-08-06|COLLECT COD|SHIP|efully regular courts impress| +28014|449934|12443|4|25|47097.75|0.01|0.06|N|O|1997-09-13|1997-08-09|1997-09-20|NONE|RAIL|e furiously. blithely regular pl| +28014|36025|36026|5|1|961.02|0.08|0.07|N|O|1997-07-24|1997-07-18|1997-08-04|COLLECT COD|RAIL|posits wake. silent, special frets hagg| +28014|467657|30167|6|36|58486.68|0.02|0.08|N|O|1997-09-06|1997-07-17|1997-09-08|NONE|SHIP|timents: furiously pen| +28014|897520|35072|7|35|53111.80|0.08|0.07|N|O|1997-06-25|1997-07-26|1997-07-10|NONE|MAIL|inal excuses nag | +28015|606026|18539|1|50|46599.50|0.02|0.08|R|F|1993-04-13|1993-04-23|1993-04-25|DELIVER IN PERSON|MAIL|blithely regular theo| +28015|462581|109|2|37|57111.72|0.06|0.05|R|F|1993-03-06|1993-03-23|1993-03-11|COLLECT COD|AIR|ep slyly. slyly final foxes are| +28015|592411|4923|3|2|3006.78|0.01|0.02|A|F|1993-06-08|1993-04-03|1993-06-25|DELIVER IN PERSON|RAIL|lly around the dogged, pending pac| +28015|650450|451|4|34|47614.28|0.07|0.06|A|F|1993-03-03|1993-03-31|1993-03-08|DELIVER IN PERSON|MAIL|row around the regular deposits! slyly exp| +28040|790774|3290|1|38|70860.12|0.00|0.05|A|F|1994-08-18|1994-06-18|1994-08-19|NONE|AIR|s impress. slyly ironic packages wak| +28040|523353|10884|2|30|41289.90|0.03|0.08|A|F|1994-07-11|1994-07-14|1994-07-20|TAKE BACK RETURN|FOB|es. carefully regu| +28040|991851|41852|3|10|19428.10|0.03|0.01|A|F|1994-06-28|1994-06-05|1994-07-12|NONE|REG AIR| serve furiously around | +28040|38891|1392|4|9|16469.01|0.07|0.00|R|F|1994-05-14|1994-06-28|1994-05-22|COLLECT COD|TRUCK|ar instructions? un| +28040|626696|26697|5|1|1622.66|0.05|0.05|A|F|1994-05-10|1994-06-21|1994-06-09|DELIVER IN PERSON|MAIL|y inside the carefully specia| +28040|863827|26345|6|6|10744.68|0.07|0.05|R|F|1994-06-27|1994-06-13|1994-07-11|TAKE BACK RETURN|RAIL|egular deposits boost alongside o| +28040|330596|18115|7|12|19518.96|0.10|0.07|A|F|1994-06-25|1994-06-28|1994-06-28|COLLECT COD|AIR|ggle fluffily ag| +28041|319813|44826|1|16|29324.80|0.06|0.08|N|O|1997-07-02|1997-05-30|1997-07-24|COLLECT COD|SHIP| blithely bold pac| +28041|92422|17425|2|32|45261.44|0.07|0.02|N|O|1997-08-01|1997-05-30|1997-08-25|DELIVER IN PERSON|REG AIR|ding requests around the carefully eve| +28041|333255|20774|3|14|18035.36|0.02|0.04|N|O|1997-08-09|1997-06-03|1997-08-17|DELIVER IN PERSON|AIR|f the regular, regular| +28042|862548|25066|1|5|7552.50|0.02|0.01|A|F|1992-09-23|1992-09-30|1992-10-21|TAKE BACK RETURN|FOB|ithely regu| +28043|365494|40509|1|22|34308.56|0.08|0.05|N|O|1997-03-09|1997-02-28|1997-03-30|NONE|FOB|ffily final pinto bean| +28043|851326|26361|2|15|19159.20|0.01|0.07|N|O|1997-02-20|1997-04-15|1997-02-28|COLLECT COD|RAIL|press dependencie| +28043|233858|33859|3|5|8959.20|0.07|0.04|N|O|1997-02-25|1997-02-23|1997-02-26|COLLECT COD|AIR| special requests sleep. blithely ir| +28043|438464|13481|4|47|65914.68|0.06|0.08|N|O|1997-02-11|1997-03-30|1997-02-25|NONE|SHIP|uriously final| +28044|104038|41545|1|39|40639.17|0.04|0.02|N|O|1996-08-26|1996-11-06|1996-09-01|COLLECT COD|TRUCK|unts cajole slyly ruthles| +28045|421262|8787|1|25|29581.00|0.08|0.03|N|O|1995-09-12|1995-07-22|1995-10-05|TAKE BACK RETURN|FOB|cies. ironic pinto beans wa| +28045|146020|46021|2|24|25584.48|0.02|0.02|N|O|1995-08-11|1995-08-10|1995-08-18|NONE|RAIL| the slyly regular| +28045|143442|43443|3|27|40106.88|0.01|0.02|N|O|1995-06-24|1995-08-27|1995-07-13|COLLECT COD|FOB|. carefully final accoun| +28045|813265|13266|4|40|47128.80|0.01|0.03|N|O|1995-07-27|1995-09-16|1995-08-19|NONE|TRUCK|pecial accounts integ| +28046|702542|2543|1|50|77225.50|0.10|0.08|R|F|1993-10-03|1993-10-12|1993-10-06|DELIVER IN PERSON|RAIL|ons. carefu| +28047|856790|19308|1|19|33188.25|0.08|0.04|N|O|1996-12-24|1997-01-29|1997-01-04|TAKE BACK RETURN|MAIL|eas. ironic foxes sleep ag| +28047|61752|36755|2|36|61695.00|0.09|0.04|N|O|1997-02-02|1997-01-07|1997-02-05|NONE|AIR|o beans haggle slyly. fluffi| +28047|853576|3577|3|5|7647.65|0.03|0.07|N|O|1997-03-14|1997-01-01|1997-04-04|DELIVER IN PERSON|MAIL|sly final asympto| +28047|39620|27121|4|20|31192.40|0.03|0.05|N|O|1997-01-23|1997-01-14|1997-02-22|DELIVER IN PERSON|TRUCK|s? requests wake slyly| +28047|879432|29433|5|9|12702.51|0.01|0.04|N|O|1997-02-17|1997-01-16|1997-03-03|DELIVER IN PERSON|FOB|etimes along the bold, bold asymptot| +28072|665499|28013|1|26|38075.96|0.02|0.01|N|O|1996-01-14|1996-02-13|1996-02-03|DELIVER IN PERSON|RAIL| wake carefully regular orb| +28072|29065|4066|2|8|7952.48|0.10|0.04|N|O|1996-01-30|1996-03-17|1996-02-22|DELIVER IN PERSON|AIR|. fluffily silent | +28072|485554|35555|3|5|7697.65|0.04|0.03|N|O|1996-04-03|1996-03-16|1996-04-07|COLLECT COD|AIR|deas wake quickly carefully unusual account| +28073|593506|31040|1|46|73576.08|0.00|0.07|A|F|1993-05-17|1993-04-14|1993-06-12|NONE|MAIL|unts solve carefully against the furio| +28074|422579|22580|1|10|15015.50|0.01|0.05|N|O|1998-05-31|1998-03-23|1998-06-20|TAKE BACK RETURN|AIR|ar packages eng| +28074|275094|37600|2|18|19243.44|0.05|0.05|N|O|1998-02-13|1998-04-02|1998-02-15|DELIVER IN PERSON|REG AIR|s wake across the even requests. | +28074|502492|27513|3|4|5977.88|0.08|0.08|N|O|1998-04-25|1998-04-02|1998-05-11|TAKE BACK RETURN|SHIP|uctions prom| +28074|372982|22983|4|9|18494.73|0.10|0.07|N|O|1998-04-12|1998-04-21|1998-05-02|NONE|TRUCK|furiously spe| +28074|696018|21045|5|11|11153.78|0.05|0.01|N|O|1998-04-02|1998-04-30|1998-04-29|TAKE BACK RETURN|AIR|ackages. express theodolites boost careful| +28074|963640|38679|6|20|34072.00|0.08|0.06|N|O|1998-02-25|1998-03-30|1998-03-05|NONE|MAIL|y whithout th| +28074|887098|49616|7|8|8680.40|0.07|0.06|N|O|1998-04-07|1998-04-23|1998-04-22|COLLECT COD|RAIL|e blithely! theodolites nag furiou| +28075|448978|36503|1|7|13488.65|0.04|0.03|N|O|1997-05-27|1997-05-15|1997-06-25|DELIVER IN PERSON|AIR|unusual sentiments haggle around | +28075|963418|25938|2|49|72587.13|0.10|0.05|N|O|1997-05-01|1997-05-09|1997-05-21|COLLECT COD|RAIL|blithely even pinto bean| +28075|152112|27119|3|50|58205.50|0.10|0.00|N|O|1997-04-20|1997-05-19|1997-05-18|COLLECT COD|RAIL|ccounts. express | +28076|568451|43474|1|45|68374.35|0.10|0.03|A|F|1995-03-17|1995-02-07|1995-04-09|COLLECT COD|MAIL| bold instructions. furiously e| +28076|941763|16800|2|31|55946.32|0.00|0.04|A|F|1995-03-08|1995-01-26|1995-03-16|TAKE BACK RETURN|MAIL|y even deposits cajole al| +28077|93250|30754|1|12|14919.00|0.02|0.01|N|O|1998-01-14|1997-12-26|1998-01-19|DELIVER IN PERSON|REG AIR|en ideas grow. sly| +28077|246810|46811|2|37|65001.60|0.05|0.01|N|O|1998-02-05|1998-01-02|1998-03-03|NONE|RAIL|cial pinto beans serve at the | +28078|767244|4790|1|19|24912.99|0.10|0.05|N|O|1997-06-12|1997-07-15|1997-07-10|NONE|TRUCK|ly regular braids integrate carefully reque| +28078|59004|46508|2|20|19260.00|0.00|0.03|N|O|1997-08-04|1997-05-27|1997-08-19|NONE|FOB|ach furiously across | +28078|677567|2594|3|38|58692.14|0.05|0.03|N|O|1997-06-19|1997-06-03|1997-06-27|TAKE BACK RETURN|AIR| regular dep| +28078|854997|42549|4|46|89789.70|0.00|0.02|N|O|1997-06-10|1997-06-23|1997-07-07|COLLECT COD|AIR|e slyly! furiously ironic packages| +28078|920189|20190|5|20|24182.80|0.06|0.01|N|O|1997-07-09|1997-06-19|1997-08-03|COLLECT COD|TRUCK|ts. unusual t| +28078|606242|43779|6|45|51669.45|0.08|0.08|N|O|1997-04-29|1997-07-13|1997-05-12|NONE|MAIL| the special packages. furi| +28079|423408|48425|1|37|49261.06|0.03|0.04|N|O|1996-07-24|1996-09-29|1996-08-18|COLLECT COD|TRUCK| the slyly | +28079|205946|30955|2|22|40742.46|0.09|0.05|N|O|1996-10-06|1996-08-10|1996-11-05|NONE|MAIL|gular requests. carefully even requests ab| +28079|318471|18472|3|48|71494.08|0.04|0.01|N|O|1996-10-04|1996-09-12|1996-10-29|DELIVER IN PERSON|REG AIR|ajole. regular accounts sleep blithely p| +28079|534830|22361|4|22|41025.82|0.09|0.06|N|O|1996-10-28|1996-08-24|1996-11-25|COLLECT COD|REG AIR|es are carefully; regul| +28104|348349|23362|1|29|40522.57|0.04|0.05|A|F|1992-07-15|1992-06-20|1992-08-02|COLLECT COD|AIR|ide of the ironic packag| +28104|691931|41932|2|5|9614.50|0.09|0.01|R|F|1992-07-29|1992-06-05|1992-08-10|TAKE BACK RETURN|MAIL|e of the quickly | +28104|282241|32242|3|34|41589.82|0.08|0.01|A|F|1992-06-14|1992-07-03|1992-06-17|COLLECT COD|REG AIR| theodolites. bli| +28104|611957|24470|4|19|35509.48|0.06|0.04|R|F|1992-07-27|1992-06-01|1992-08-21|COLLECT COD|MAIL|ng deposits. slyly slow packages | +28104|159310|34317|5|4|5477.24|0.01|0.06|R|F|1992-07-06|1992-06-18|1992-07-18|COLLECT COD|TRUCK| to the requests. blithely final depos| +28105|544896|7407|1|41|79575.67|0.10|0.08|A|F|1995-04-28|1995-04-10|1995-05-07|DELIVER IN PERSON|TRUCK| unusual deposits doze blithely accor| +28105|64065|14066|2|42|43220.52|0.01|0.05|A|F|1995-04-28|1995-04-22|1995-05-04|TAKE BACK RETURN|MAIL|t the even | +28106|535439|35440|1|2|2948.82|0.05|0.05|N|O|1996-10-14|1996-10-12|1996-10-26|COLLECT COD|MAIL|ests. even pinto beans nag even platelet| +28106|120311|20312|2|40|53252.40|0.09|0.08|N|O|1996-09-04|1996-08-31|1996-10-04|TAKE BACK RETURN|SHIP|cies use despite the caref| +28106|66727|4231|3|21|35568.12|0.07|0.08|N|O|1996-09-28|1996-10-14|1996-10-01|TAKE BACK RETURN|MAIL| carefully stealthy packag| +28106|466099|16100|4|21|22366.47|0.03|0.03|N|O|1996-10-07|1996-09-20|1996-10-19|DELIVER IN PERSON|REG AIR|ts! blithely silent dolp| +28106|712367|12368|5|28|38621.24|0.06|0.07|N|O|1996-10-10|1996-09-12|1996-10-14|NONE|MAIL|inal sentiments. express reque| +28106|735968|35969|6|15|30058.95|0.09|0.06|N|O|1996-10-09|1996-09-04|1996-11-02|NONE|SHIP|ously regular theodolites hag| +28106|399794|12302|7|44|83326.32|0.05|0.06|N|O|1996-11-15|1996-08-25|1996-11-17|NONE|AIR|usly ironic deposits nag alongside of the| +28107|327027|2040|1|41|43214.41|0.00|0.04|N|O|1997-02-18|1997-01-21|1997-03-18|COLLECT COD|FOB| furiously f| +28107|338206|38207|2|10|12441.90|0.02|0.01|N|O|1997-02-11|1996-12-16|1997-02-23|DELIVER IN PERSON|AIR|pinto beans nod slyly ab| +28107|222582|47591|3|8|12036.56|0.06|0.00|N|O|1997-03-01|1997-01-26|1997-03-28|COLLECT COD|SHIP|rnes. regular packages cajole q| +28108|81069|31070|1|47|49352.82|0.01|0.07|N|O|1998-03-28|1998-02-14|1998-04-02|TAKE BACK RETURN|REG AIR|usual ideas. final pint| +28108|517881|5412|2|26|49370.36|0.08|0.07|N|O|1998-03-23|1998-03-26|1998-04-01|NONE|RAIL| even request| +28108|10287|47788|3|26|31129.28|0.08|0.05|N|O|1998-03-06|1998-02-11|1998-03-28|TAKE BACK RETURN|REG AIR|ar theodolites| +28108|879309|16861|4|10|12882.60|0.03|0.03|N|O|1998-02-08|1998-03-31|1998-03-06|COLLECT COD|REG AIR|hes sleep furiously. furiously final dep| +28108|530530|18061|5|27|42133.77|0.00|0.03|N|O|1998-01-13|1998-03-23|1998-02-01|COLLECT COD|MAIL|eposits cajole. car| +28108|600960|13473|6|9|16748.37|0.07|0.01|N|O|1998-02-22|1998-03-29|1998-02-25|COLLECT COD|FOB|furiously final p| +28108|329152|4165|7|42|49607.88|0.10|0.05|N|O|1998-01-14|1998-03-24|1998-02-02|COLLECT COD|MAIL|nstructions. sly| +28109|49757|49758|1|29|49495.75|0.06|0.06|A|F|1992-01-22|1992-02-07|1992-02-03|DELIVER IN PERSON|RAIL|against the slyly bold foxes. carefully e| +28109|256047|43563|2|40|40121.20|0.10|0.04|A|F|1992-04-19|1992-03-07|1992-04-23|TAKE BACK RETURN|TRUCK|ly bold foxes cajole carefully bold pac| +28109|381598|19120|3|28|47028.24|0.03|0.00|A|F|1992-02-27|1992-02-20|1992-03-13|DELIVER IN PERSON|MAIL|thy, ironic id| +28109|508314|8315|4|16|21156.64|0.01|0.01|A|F|1992-03-01|1992-02-20|1992-03-21|COLLECT COD|AIR|e carefully ironic pinto beans use qui| +28109|231414|43919|5|48|64579.20|0.10|0.04|R|F|1992-04-02|1992-03-30|1992-04-15|COLLECT COD|SHIP|e fluffily fluffily regular requests. b| +28110|285927|48433|1|9|17216.19|0.03|0.05|N|O|1995-12-03|1995-12-05|1995-12-17|DELIVER IN PERSON|AIR|ymptotes integrate across t| +28110|565598|40621|2|16|26617.12|0.00|0.02|N|O|1996-02-28|1995-12-09|1996-03-29|TAKE BACK RETURN|AIR|ajole. platel| +28111|520600|33111|1|42|68064.36|0.05|0.08|A|F|1993-06-28|1993-08-01|1993-07-26|NONE|REG AIR|hockey playe| +28111|710382|47925|2|32|44555.20|0.08|0.04|R|F|1993-05-17|1993-07-31|1993-05-24|COLLECT COD|FOB|ions could haggle even, regular instructio| +28111|382572|7587|3|23|38054.88|0.01|0.00|A|F|1993-08-29|1993-08-06|1993-09-04|COLLECT COD|AIR| slyly regular accounts. blithely fi| +28111|885736|48254|4|26|44763.94|0.02|0.03|R|F|1993-08-26|1993-07-02|1993-09-22|COLLECT COD|RAIL| unusual deposits on the slyly speci| +28136|343099|43100|1|17|19415.36|0.02|0.04|A|F|1993-08-25|1993-10-05|1993-09-05|TAKE BACK RETURN|SHIP| accounts above the slyly unusua| +28137|623707|23708|1|34|55442.78|0.06|0.07|N|O|1996-04-23|1996-04-08|1996-05-10|COLLECT COD|REG AIR|ckly. ironically brave hock| +28137|638830|26367|2|39|68983.20|0.01|0.04|N|O|1996-05-28|1996-05-15|1996-06-24|NONE|AIR|theodolites engage. express theodolites ar| +28137|808202|33235|3|40|44406.40|0.08|0.03|N|O|1996-05-15|1996-04-24|1996-06-01|DELIVER IN PERSON|REG AIR| unusual, ironic orbits sleep furiously. | +28137|435922|10939|4|36|66884.40|0.01|0.03|N|O|1996-03-08|1996-05-02|1996-03-19|COLLECT COD|TRUCK| thin asymptotes snoo| +28138|16791|41792|1|41|70019.39|0.08|0.03|R|F|1992-12-12|1992-12-25|1992-12-31|NONE|REG AIR|le carefull| +28138|196133|33643|2|7|8603.91|0.04|0.01|A|F|1992-11-30|1993-01-15|1992-12-11|DELIVER IN PERSON|TRUCK|, unusual excuses grow f| +28138|391631|41632|3|13|22394.06|0.09|0.03|R|F|1992-12-09|1992-12-18|1993-01-08|TAKE BACK RETURN|TRUCK|pades. even ideas ca| +28138|129287|41790|4|17|22376.76|0.01|0.04|A|F|1992-12-14|1992-12-12|1992-12-27|NONE|SHIP|al packages: quickly ironic packag| +28138|919877|32396|5|12|22761.96|0.04|0.05|A|F|1992-11-09|1993-01-14|1992-11-29|NONE|MAIL|eposits. permanently i| +28138|359491|47013|6|28|43413.44|0.08|0.08|A|F|1992-12-17|1992-12-04|1993-01-06|DELIVER IN PERSON|SHIP|the slyly regular| +28138|963596|13597|7|8|13276.40|0.03|0.07|A|F|1992-12-18|1992-11-29|1992-12-23|COLLECT COD|REG AIR|ites nag. daringly final braids| +28139|149040|11543|1|24|26136.96|0.04|0.00|A|F|1992-12-05|1992-10-28|1993-01-04|NONE|AIR|press, even requests haggle fur| +28139|909405|46960|2|42|59403.12|0.06|0.05|R|F|1992-12-04|1992-10-26|1993-01-01|NONE|SHIP|affix blithely blithely bold deposit| +28139|359113|9114|3|38|44539.80|0.02|0.01|A|F|1992-09-12|1992-10-13|1992-09-24|NONE|FOB| foxes. quickly even pac| +28139|610071|35096|4|13|12753.52|0.09|0.02|R|F|1992-09-27|1992-11-08|1992-10-23|DELIVER IN PERSON|FOB| print carefully according to the even, si| +28139|457248|19758|5|32|38567.04|0.07|0.01|A|F|1992-11-02|1992-10-28|1992-11-08|DELIVER IN PERSON|REG AIR|refully regular accounts boost | +28139|952794|2795|6|16|29548.00|0.04|0.03|A|F|1992-10-04|1992-11-01|1992-10-15|TAKE BACK RETURN|REG AIR|slyly final requests-- quic| +28139|595517|20540|7|26|41924.74|0.04|0.05|R|F|1992-12-05|1992-11-06|1993-01-03|DELIVER IN PERSON|SHIP|its breach slyly blith| +28140|839068|39069|1|12|12084.24|0.03|0.08|N|O|1996-04-16|1996-04-25|1996-05-10|DELIVER IN PERSON|RAIL|pliers are | +28140|200195|25204|2|1|1095.18|0.08|0.07|N|O|1996-05-13|1996-03-25|1996-05-17|COLLECT COD|TRUCK|ronic instructions. ironic, ironic pla| +28141|24707|49708|1|2|3263.40|0.00|0.04|N|O|1998-08-02|1998-10-15|1998-08-10|COLLECT COD|FOB|usly slyly special dependencies. ideas u| +28141|246218|8723|2|23|26776.60|0.01|0.04|N|O|1998-11-27|1998-10-15|1998-12-13|TAKE BACK RETURN|RAIL|ay quickly fluffily unusual deposit| +28142|491993|29521|1|4|7939.88|0.04|0.05|A|F|1995-04-27|1995-02-03|1995-05-15|NONE|FOB|ove the furiously final do| +28142|913916|26435|2|21|40527.27|0.06|0.00|R|F|1995-04-29|1995-02-28|1995-05-05|NONE|FOB|accounts mold quickly unusual packages! flu| +28142|175806|38310|3|29|54572.20|0.07|0.00|A|F|1995-02-14|1995-03-19|1995-02-27|NONE|REG AIR|dolites haggle quickly blithely ironic | +28142|755124|30155|4|36|42447.24|0.01|0.06|R|F|1995-01-03|1995-02-02|1995-01-30|COLLECT COD|AIR|s. pending requests a| +28142|363555|26063|5|33|53411.82|0.01|0.01|R|F|1995-02-21|1995-03-10|1995-03-22|COLLECT COD|AIR|ithely since the slyly fin| +28142|263131|647|6|43|47047.16|0.10|0.06|A|F|1995-02-24|1995-03-10|1995-03-22|COLLECT COD|TRUCK| unusual accounts affix carefully ac| +28142|432422|44931|7|20|27088.00|0.03|0.08|R|F|1995-04-11|1995-03-10|1995-05-04|TAKE BACK RETURN|RAIL|lets wake | +28143|704192|4193|1|40|47846.40|0.06|0.04|N|O|1997-04-10|1997-06-03|1997-04-12|COLLECT COD|RAIL|equests. slyly even courts sleep. unusual t| +28143|345589|45590|2|9|14711.13|0.10|0.04|N|O|1997-05-14|1997-04-07|1997-06-11|TAKE BACK RETURN|FOB|r packages wake fluffily quickly e| +28143|310347|47866|3|4|5429.32|0.09|0.03|N|O|1997-03-07|1997-04-26|1997-04-03|NONE|MAIL|s? special dolph| +28168|29750|42251|1|16|26876.00|0.03|0.08|N|O|1998-04-21|1998-03-28|1998-05-16|NONE|RAIL|es. unusual accounts nag carefu| +28168|843|38344|2|39|68009.76|0.10|0.00|N|O|1998-04-04|1998-03-05|1998-04-05|DELIVER IN PERSON|TRUCK|manently. | +28168|157464|19968|3|19|28907.74|0.03|0.03|N|O|1998-04-17|1998-03-11|1998-04-25|DELIVER IN PERSON|TRUCK|ut the pin| +28168|492635|17654|4|39|63476.79|0.09|0.04|N|O|1998-04-16|1998-04-06|1998-05-14|NONE|SHIP| special, silent in| +28168|713953|1496|5|33|64908.36|0.00|0.03|N|O|1998-03-17|1998-04-03|1998-04-11|DELIVER IN PERSON|FOB|ainst the fluffil| +28168|404243|41768|6|29|33269.38|0.03|0.01|N|O|1998-05-08|1998-03-28|1998-05-21|DELIVER IN PERSON|SHIP|wake quickly! ex| +28169|906354|6355|1|7|9522.17|0.06|0.04|A|F|1994-08-26|1994-07-19|1994-08-29|COLLECT COD|MAIL|structions boost according to the even pac| +28169|76234|13738|2|15|18153.45|0.09|0.08|A|F|1994-08-21|1994-06-26|1994-09-09|TAKE BACK RETURN|RAIL|even frays sleep blithely un| +28169|256391|6392|3|47|63326.86|0.08|0.07|A|F|1994-06-27|1994-08-21|1994-07-18|TAKE BACK RETURN|TRUCK|lyly. enticing, even foxes boo| +28169|157560|45070|4|19|30733.64|0.08|0.02|A|F|1994-09-08|1994-07-08|1994-09-23|NONE|TRUCK|l foxes. f| +28169|105955|5956|5|15|29414.25|0.06|0.05|R|F|1994-05-26|1994-07-16|1994-06-15|COLLECT COD|FOB|round the b| +28170|777058|27059|1|18|20430.36|0.07|0.00|N|O|1998-02-06|1998-01-19|1998-03-04|NONE|SHIP|regular deposi| +28170|11906|36907|2|7|12725.30|0.03|0.01|N|O|1998-04-06|1998-02-10|1998-04-14|COLLECT COD|RAIL|lar deposits. ruth| +28170|103944|41451|3|3|5843.82|0.03|0.02|N|O|1998-02-20|1998-02-19|1998-02-26|TAKE BACK RETURN|REG AIR|ithout the unusual braid| +28170|986533|49053|4|14|22672.86|0.06|0.00|N|O|1998-02-06|1998-03-05|1998-02-16|COLLECT COD|TRUCK| slyly regular packages sleep car| +28170|651431|38971|5|4|5529.60|0.03|0.00|N|O|1998-01-18|1998-01-14|1998-01-22|NONE|RAIL|usly final requests. idle, express a| +28171|864506|2058|1|20|29409.20|0.04|0.03|N|O|1996-10-26|1996-12-03|1996-11-21|COLLECT COD|RAIL|t, regular dep| +28171|748580|36123|2|46|74913.30|0.03|0.02|N|O|1997-01-06|1996-12-17|1997-01-31|NONE|SHIP|ular accounts. pending depe| +28171|377389|14911|3|2|2932.74|0.08|0.06|N|O|1996-11-27|1997-01-02|1996-12-09|NONE|REG AIR|ular ideas cajole carefully. spe| +28171|764237|39268|4|24|31228.80|0.02|0.04|N|O|1997-01-22|1996-12-26|1997-02-13|NONE|TRUCK|nts breach after the pa| +28171|514519|2050|5|37|56739.13|0.00|0.07|N|O|1996-12-04|1996-12-13|1996-12-22|DELIVER IN PERSON|SHIP|hely regular decoys us| +28171|519585|32096|6|21|33695.76|0.06|0.05|N|O|1997-01-14|1996-11-18|1997-01-22|NONE|MAIL|oost after the| +28172|337347|37348|1|28|38761.24|0.04|0.06|A|F|1993-10-25|1993-09-28|1993-10-28|COLLECT COD|RAIL|ironic accounts cajole after the sl| +28172|783337|45853|2|37|52551.10|0.08|0.05|R|F|1993-07-30|1993-08-21|1993-08-14|NONE|FOB|e final, final i| +28172|540580|28111|3|1|1620.56|0.01|0.08|R|F|1993-11-03|1993-08-31|1993-11-11|DELIVER IN PERSON|RAIL| the theodolites. carefully| +28172|518678|43699|4|14|23753.10|0.01|0.07|R|F|1993-07-20|1993-09-10|1993-08-12|DELIVER IN PERSON|REG AIR|l, special ide| +28173|647285|47286|1|32|39432.00|0.00|0.01|R|F|1992-02-02|1992-03-12|1992-02-16|DELIVER IN PERSON|AIR|ess excuses across th| +28173|908630|46185|2|20|32771.80|0.09|0.07|R|F|1992-02-27|1992-02-10|1992-03-07|NONE|TRUCK| blithely after the theodolites. pla| +28173|333953|8966|3|27|53647.38|0.10|0.01|A|F|1992-05-03|1992-03-29|1992-06-02|NONE|AIR|ly within the carefully bold accounts. care| +28173|741549|29092|4|22|34991.22|0.05|0.04|A|F|1992-01-14|1992-03-06|1992-01-25|TAKE BACK RETURN|REG AIR|special instructions cajole accounts. sl| +28173|210099|35108|5|43|43390.44|0.02|0.02|R|F|1992-03-13|1992-04-09|1992-04-12|DELIVER IN PERSON|REG AIR| play about the accounts. carefully i| +28173|132338|44841|6|34|46591.22|0.00|0.00|R|F|1992-04-05|1992-04-01|1992-04-10|NONE|MAIL|quests. slyly eve| +28173|196378|46379|7|25|36859.25|0.03|0.05|R|F|1992-03-29|1992-03-05|1992-04-13|NONE|MAIL| pinto beans c| +28174|509874|34895|1|5|9419.25|0.09|0.06|N|O|1998-08-14|1998-06-12|1998-09-12|TAKE BACK RETURN|MAIL| the slowly even packages wake| +28174|444946|44947|2|50|94546.00|0.04|0.08|N|O|1998-04-25|1998-06-05|1998-05-19|DELIVER IN PERSON|TRUCK|ithely across the furiously unusu| +28174|196021|33531|3|42|46914.84|0.04|0.06|N|O|1998-04-24|1998-07-01|1998-05-03|COLLECT COD|SHIP|y of the blithe| +28174|517560|5091|4|47|74144.38|0.05|0.08|N|O|1998-07-26|1998-05-31|1998-08-14|NONE|REG AIR|hely regular packages a| +28174|616689|16690|5|33|52986.45|0.04|0.08|N|O|1998-05-05|1998-05-22|1998-05-31|NONE|SHIP|requests after the permanently ironic ac| +28174|691845|41846|6|3|5510.43|0.01|0.00|N|O|1998-04-27|1998-05-27|1998-05-10|TAKE BACK RETURN|REG AIR|use slyly. doggedly sp| +28174|833502|8535|7|13|18660.98|0.00|0.03|N|O|1998-06-21|1998-07-02|1998-07-11|DELIVER IN PERSON|AIR|uffily. furi| +28175|651994|14508|1|31|60324.76|0.00|0.07|A|F|1994-08-31|1994-09-05|1994-09-04|COLLECT COD|SHIP|ly. quickly ironic ideas am| +28175|58119|8120|2|41|44161.51|0.06|0.02|A|F|1994-10-30|1994-08-16|1994-11-17|DELIVER IN PERSON|AIR|egular foxes haggle slyly | +28175|793785|6301|3|21|39453.75|0.07|0.04|R|F|1994-10-20|1994-08-16|1994-11-05|DELIVER IN PERSON|RAIL| haggle. bold| +28175|129471|4476|4|19|28508.93|0.00|0.08|A|F|1994-11-15|1994-09-14|1994-12-15|TAKE BACK RETURN|FOB| the quickly ironic deposits. ironic cou| +28175|9915|47416|5|50|91245.50|0.09|0.02|A|F|1994-09-21|1994-10-15|1994-10-10|DELIVER IN PERSON|AIR|itaphs. special, even requests sleep qui| +28175|635157|35158|6|38|41500.56|0.10|0.00|R|F|1994-07-24|1994-08-22|1994-08-05|TAKE BACK RETURN|TRUCK|e blithely. sl| +28175|79326|4329|7|40|52212.80|0.01|0.01|R|F|1994-08-08|1994-08-31|1994-08-22|TAKE BACK RETURN|AIR|its sleep fluffily r| +28200|228727|28728|1|27|44704.17|0.06|0.03|R|F|1994-11-23|1994-09-16|1994-12-12|TAKE BACK RETURN|AIR|ully pending courts nag finally. blithe| +28200|201149|26158|2|33|34654.29|0.07|0.05|A|F|1994-08-16|1994-11-01|1994-09-08|COLLECT COD|TRUCK|ly final excuses. foxes integrate f| +28200|700896|38439|3|18|34143.48|0.06|0.02|A|F|1994-08-31|1994-09-27|1994-09-15|NONE|AIR|the pending, pending the| +28200|953623|3624|4|2|3353.16|0.08|0.06|R|F|1994-10-10|1994-11-03|1994-10-19|COLLECT COD|TRUCK|nts nag furiously blithely final | +28200|540220|40221|5|22|27724.40|0.07|0.07|A|F|1994-08-22|1994-10-11|1994-09-21|TAKE BACK RETURN|TRUCK| requests. foxe| +28200|476932|26933|6|43|82083.13|0.10|0.00|A|F|1994-10-05|1994-10-12|1994-10-27|TAKE BACK RETURN|MAIL|the fluffily final excus| +28200|783464|45980|7|7|10832.01|0.09|0.03|A|F|1994-10-22|1994-09-21|1994-11-18|TAKE BACK RETURN|REG AIR|eodolites | +28201|663310|25824|1|29|36925.12|0.07|0.07|N|O|1997-07-31|1997-07-05|1997-08-11|NONE|REG AIR|l requests. regular accounts are e| +28201|249880|49881|2|1|1829.87|0.03|0.02|N|O|1997-08-11|1997-05-24|1997-09-09|DELIVER IN PERSON|SHIP|refully ironic platelets. special instru| +28201|724718|12261|3|2|3485.36|0.00|0.00|N|O|1997-06-07|1997-05-26|1997-06-19|COLLECT COD|FOB|carefully silent Tiresias cajole. even, ir| +28201|328683|3696|4|10|17116.70|0.09|0.03|N|O|1997-06-30|1997-05-20|1997-07-17|NONE|REG AIR|uriously s| +28202|453380|3381|1|34|45334.24|0.01|0.02|N|O|1995-10-04|1995-09-23|1995-10-13|COLLECT COD|TRUCK|blithely ironic excuses cajole. foxes are q| +28203|488371|25899|1|36|48936.60|0.01|0.02|N|O|1996-02-14|1996-04-29|1996-02-28|DELIVER IN PERSON|RAIL|ts. quiet warhorses boost above the| +28203|41598|29099|2|11|16935.49|0.09|0.02|N|O|1996-03-16|1996-03-24|1996-04-03|NONE|REG AIR|thes about the furiou| +28203|121834|9341|3|3|5567.49|0.03|0.06|N|O|1996-02-22|1996-03-13|1996-02-25|NONE|REG AIR| are furiously ag| +28203|655495|5496|4|42|60919.32|0.01|0.07|N|O|1996-02-10|1996-03-05|1996-02-26|NONE|FOB| upon the furiously| +28204|783013|8044|1|2|2191.96|0.09|0.01|A|F|1993-01-03|1992-12-26|1993-01-11|TAKE BACK RETURN|FOB|o beans sleep blithely after| +28204|86360|23864|2|19|25580.84|0.03|0.07|R|F|1992-11-02|1992-12-25|1992-11-25|COLLECT COD|RAIL|: even accounts ha| +28204|439507|14524|3|36|52073.28|0.01|0.06|A|F|1992-11-04|1992-11-22|1992-11-25|DELIVER IN PERSON|FOB|ully final ideas; ev| +28205|374456|49471|1|17|26017.48|0.06|0.04|A|F|1993-06-14|1993-05-18|1993-06-17|DELIVER IN PERSON|RAIL|uickly. theodoli| +28205|476173|13701|2|48|55159.20|0.03|0.07|A|F|1993-04-17|1993-05-24|1993-05-13|COLLECT COD|TRUCK|ses. carefully regular accounts are care| +28206|37403|24904|1|2|2680.80|0.08|0.06|R|F|1994-09-17|1994-09-04|1994-09-23|NONE|FOB| affix slyly furiously regular excuse| +28206|622174|34687|2|24|26307.36|0.00|0.08|A|F|1994-08-15|1994-10-02|1994-08-23|TAKE BACK RETURN|TRUCK|s cajole. a| +28206|863724|13725|3|9|15189.12|0.03|0.02|A|F|1994-10-11|1994-09-18|1994-11-02|NONE|MAIL|beans nag sly| +28206|597478|47479|4|21|33084.45|0.03|0.08|A|F|1994-07-27|1994-08-14|1994-07-31|TAKE BACK RETURN|REG AIR| final requests wake carefully a| +28206|802780|2781|5|48|80771.52|0.00|0.07|A|F|1994-09-17|1994-09-14|1994-10-06|TAKE BACK RETURN|REG AIR|ic pinto beans. quickly unu| +28206|316244|41257|6|43|54189.89|0.01|0.07|R|F|1994-07-09|1994-09-08|1994-07-17|NONE|MAIL|fully silent accounts wake blithely af| +28207|830061|17610|1|20|19820.40|0.08|0.08|A|F|1994-12-04|1995-01-09|1994-12-14|DELIVER IN PERSON|TRUCK|e requests. slyly fi| +28207|830222|17771|2|26|29956.68|0.08|0.01|A|F|1994-12-29|1995-01-19|1995-01-24|TAKE BACK RETURN|MAIL|yly. accounts above| +28207|540134|15155|3|20|23482.20|0.08|0.03|R|F|1995-02-21|1995-01-22|1995-03-05|DELIVER IN PERSON|RAIL|ly regular a| +28207|25430|37931|4|12|16265.16|0.03|0.03|A|F|1995-01-17|1995-02-04|1995-02-04|COLLECT COD|REG AIR|nag ironically blithely | +28207|390661|15676|5|42|73569.30|0.00|0.01|A|F|1994-12-31|1994-12-31|1995-01-27|TAKE BACK RETURN|RAIL|he unusual, regular requests boost ide| +28232|114566|2073|1|36|56900.16|0.01|0.05|A|F|1993-07-29|1993-09-27|1993-08-07|COLLECT COD|MAIL|s. final id| +28232|501109|38640|2|7|7770.56|0.08|0.06|A|F|1993-09-01|1993-08-27|1993-09-27|COLLECT COD|SHIP|ptotes according to | +28232|124783|24784|3|40|72311.20|0.04|0.02|R|F|1993-10-28|1993-08-24|1993-11-07|NONE|AIR|latelets. fluffily pending packages nag ca| +28233|576267|38779|1|26|34924.24|0.06|0.03|N|O|1998-04-21|1998-06-02|1998-04-25|NONE|AIR|g. furiously fi| +28233|307825|32838|2|14|25659.34|0.09|0.08|N|O|1998-04-10|1998-06-20|1998-05-05|TAKE BACK RETURN|FOB|egular asympt| +28233|612806|343|3|19|32656.63|0.05|0.01|N|O|1998-07-30|1998-06-05|1998-08-14|DELIVER IN PERSON|FOB|express platelets sleep. slyly exp| +28233|423549|36058|4|30|44175.60|0.01|0.02|N|O|1998-07-15|1998-05-04|1998-07-19|NONE|RAIL|sual ideas wake furiou| +28234|704998|42541|1|6|12017.76|0.04|0.08|N|O|1998-06-21|1998-07-03|1998-07-10|DELIVER IN PERSON|SHIP|ross the regular account| +28234|893598|6116|2|23|36605.65|0.00|0.01|N|O|1998-06-15|1998-06-07|1998-06-19|COLLECT COD|REG AIR|y bold deposits. fluffil| +28235|647630|22655|1|23|36284.80|0.07|0.02|A|F|1995-05-07|1995-06-19|1995-05-17|NONE|SHIP|en instructi| +28235|704002|41545|2|48|48286.56|0.08|0.02|A|F|1995-05-01|1995-06-03|1995-05-23|DELIVER IN PERSON|SHIP|xpress accounts are slyly. quickly bo| +28235|145309|32816|3|20|27086.00|0.10|0.04|N|O|1995-07-13|1995-05-24|1995-07-16|COLLECT COD|AIR|ickly bold deposits. slyly even ideas det| +28235|193397|30907|4|3|4471.17|0.06|0.00|N|O|1995-08-01|1995-06-23|1995-08-27|NONE|MAIL|cross the quick| +28235|422238|9763|5|20|23204.20|0.02|0.06|R|F|1995-05-23|1995-05-29|1995-06-14|NONE|AIR|osits wake f| +28235|542271|4782|6|35|45963.75|0.01|0.05|N|O|1995-07-28|1995-06-27|1995-08-22|DELIVER IN PERSON|REG AIR|es wake slyly across the| +28235|941139|16176|7|25|29502.25|0.04|0.03|N|O|1995-07-25|1995-06-13|1995-08-10|DELIVER IN PERSON|FOB|s haggle. quickly express deposits along| +28236|718869|43898|1|20|37756.60|0.08|0.03|R|F|1992-05-26|1992-06-15|1992-06-15|TAKE BACK RETURN|TRUCK|ithely regular pin| +28237|57835|7836|1|4|7171.32|0.02|0.03|N|O|1997-08-23|1997-08-17|1997-09-10|COLLECT COD|AIR|the carefully bold ideas. unusual waters | +28237|24638|37139|2|10|15626.30|0.09|0.03|N|O|1997-08-20|1997-09-13|1997-09-01|TAKE BACK RETURN|RAIL|platelets cajole carefully.| +28237|79048|4051|3|49|50324.96|0.00|0.07|N|O|1997-06-24|1997-08-24|1997-07-10|TAKE BACK RETURN|MAIL|y according to the blithely ironic package| +28238|670411|45438|1|1|1381.38|0.10|0.08|N|O|1998-05-20|1998-07-22|1998-05-31|TAKE BACK RETURN|SHIP|bout the carefully even th| +28238|587243|24777|2|30|39906.60|0.09|0.00|N|O|1998-05-07|1998-07-06|1998-05-14|TAKE BACK RETURN|TRUCK|g to the packag| +28239|77460|27461|1|44|63248.24|0.07|0.00|R|F|1993-04-23|1993-05-25|1993-05-07|TAKE BACK RETURN|AIR|tes sleep | +28239|861633|24151|2|9|14351.31|0.10|0.00|R|F|1993-06-07|1993-07-11|1993-06-28|DELIVER IN PERSON|AIR| sleep slyly furiously even ideas. b| +28239|451570|26589|3|38|57818.90|0.09|0.00|A|F|1993-05-20|1993-05-27|1993-06-07|DELIVER IN PERSON|AIR|se carefully across the regular accounts. r| +28239|531414|31415|4|14|20235.46|0.03|0.00|A|F|1993-07-06|1993-06-11|1993-07-13|COLLECT COD|TRUCK|uctions along the furiousl| +28239|473441|48460|5|38|53747.96|0.05|0.00|R|F|1993-06-25|1993-06-05|1993-07-16|NONE|SHIP|nal accounts. furiously r| +28239|114112|14113|6|38|42792.18|0.05|0.06|R|F|1993-08-02|1993-05-15|1993-08-15|NONE|FOB|iously unusual deposits d| +28264|936342|36343|1|46|63401.80|0.04|0.06|N|O|1995-10-01|1995-09-17|1995-10-05|DELIVER IN PERSON|REG AIR|sits haggl| +28264|93921|18924|2|2|3829.84|0.10|0.07|N|O|1995-11-18|1995-10-18|1995-12-08|NONE|REG AIR|ccounts. bold packages eat carefully| +28264|525930|25931|3|44|86060.04|0.07|0.08|N|O|1995-08-25|1995-10-09|1995-08-28|NONE|MAIL|platelets haggle according to the careful| +28264|303785|41304|4|50|89438.50|0.00|0.02|N|O|1995-09-19|1995-10-15|1995-10-10|COLLECT COD|REG AIR|ay slyly slyly r| +28264|706867|31896|5|2|3747.66|0.00|0.08|N|O|1995-10-13|1995-10-05|1995-10-30|NONE|AIR|lithely regu| +28265|97460|22463|1|11|16032.06|0.05|0.05|N|O|1996-05-26|1996-05-01|1996-06-19|COLLECT COD|TRUCK|ependencies w| +28265|9749|47250|2|4|6634.96|0.07|0.03|N|O|1996-04-29|1996-05-20|1996-05-03|NONE|TRUCK|usly platelets. f| +28265|844149|44150|3|22|24048.20|0.07|0.07|N|O|1996-07-12|1996-05-10|1996-07-28|COLLECT COD|SHIP| are foxes. carefully sly deposits cajole q| +28265|599470|24493|4|26|40805.70|0.01|0.00|N|O|1996-04-13|1996-05-30|1996-04-28|COLLECT COD|SHIP|even hockey players wake regularly| +28265|281147|31148|5|32|36100.16|0.04|0.04|N|O|1996-05-16|1996-06-05|1996-06-14|DELIVER IN PERSON|REG AIR| epitaphs haggle slyly | +28265|225703|38208|6|27|43974.63|0.03|0.06|N|O|1996-04-01|1996-06-03|1996-04-09|COLLECT COD|FOB|al deposits k| +28266|604432|4433|1|19|25391.60|0.06|0.00|R|F|1995-02-10|1995-03-19|1995-03-08|DELIVER IN PERSON|REG AIR|etect furiously pending accounts. express, | +28267|790813|3329|1|20|38075.60|0.05|0.06|N|O|1998-06-28|1998-06-11|1998-07-04|COLLECT COD|SHIP|ly unusual Tiresias are carefully among| +28267|192672|42673|2|9|15882.03|0.10|0.05|N|O|1998-07-22|1998-05-08|1998-07-27|COLLECT COD|AIR|thrash carefully. furi| +28267|235031|10040|3|41|39606.82|0.08|0.03|N|O|1998-07-09|1998-05-19|1998-07-27|COLLECT COD|SHIP|ithely silent dugouts wake fluffily reg| +28267|161650|11651|4|14|23963.10|0.09|0.01|N|O|1998-04-16|1998-06-24|1998-05-04|NONE|RAIL|eep according to the fluffily | +28267|844628|7145|5|26|40887.08|0.06|0.03|N|O|1998-07-01|1998-05-20|1998-07-02|COLLECT COD|RAIL| hang blithely carefully pendi| +28268|622437|34950|1|6|8156.40|0.08|0.03|R|F|1994-05-14|1994-06-29|1994-05-25|NONE|RAIL|. blithely bold deposits accor| +28268|281874|6885|2|19|35261.34|0.09|0.04|R|F|1994-05-09|1994-06-27|1994-05-25|COLLECT COD|SHIP|s snooze across the slyly regula| +28268|441178|16195|3|39|43646.85|0.06|0.07|R|F|1994-05-17|1994-07-11|1994-05-22|TAKE BACK RETURN|SHIP|ans cajole furiously | +28269|504012|41543|1|6|6095.94|0.02|0.07|A|F|1992-03-28|1992-06-05|1992-04-05|COLLECT COD|AIR| fluffy requests nag against the | +28269|928965|28966|2|44|87732.48|0.00|0.00|A|F|1992-06-13|1992-05-15|1992-06-17|NONE|FOB|ess requests. slyly silent pi| +28270|183516|33517|1|14|22393.14|0.05|0.06|A|F|1994-05-19|1994-05-15|1994-06-18|TAKE BACK RETURN|FOB| across th| +28270|340460|40461|2|28|42012.60|0.01|0.01|A|F|1994-04-19|1994-06-21|1994-05-15|COLLECT COD|RAIL|olites haggle quickly furiously | +28270|105331|30336|3|16|21381.28|0.02|0.03|A|F|1994-05-27|1994-05-11|1994-06-24|COLLECT COD|FOB|s haggle slyly according to the furious| +28270|297929|10435|4|32|61661.12|0.02|0.01|R|F|1994-04-12|1994-05-31|1994-04-26|DELIVER IN PERSON|SHIP|furiously fina| +28270|292598|5104|5|38|60442.04|0.09|0.05|A|F|1994-04-11|1994-06-07|1994-04-12|COLLECT COD|MAIL|usly regular ideas nag unusual p| +28270|687894|408|6|32|60219.52|0.06|0.07|R|F|1994-05-18|1994-05-20|1994-05-31|TAKE BACK RETURN|MAIL|pecial requests. bold, special | +28271|907612|7613|1|21|34010.97|0.06|0.06|N|O|1996-04-07|1996-05-14|1996-04-28|TAKE BACK RETURN|RAIL|ajole blithely dep| +28296|880114|5149|1|32|35010.24|0.09|0.07|N|O|1995-07-07|1995-06-07|1995-07-11|TAKE BACK RETURN|MAIL|al requests along the fluffil| +28296|65272|15273|2|3|3711.81|0.06|0.02|N|F|1995-06-05|1995-05-01|1995-06-19|TAKE BACK RETURN|RAIL|ng pinto beans. ironic theodolites cajo| +28296|26406|38907|3|33|43969.20|0.05|0.04|A|F|1995-04-10|1995-06-09|1995-04-15|NONE|RAIL|cial foxes| +28296|794434|31980|4|47|71834.80|0.09|0.03|R|F|1995-05-24|1995-05-08|1995-05-25|TAKE BACK RETURN|FOB|ally quickly | +28297|385570|48078|1|38|62911.28|0.06|0.05|N|O|1998-01-29|1998-02-24|1998-02-09|TAKE BACK RETURN|SHIP| alongside of the regular depos| +28297|258878|21384|2|26|47758.36|0.03|0.03|N|O|1998-05-12|1998-03-23|1998-06-04|NONE|REG AIR|. carefully express r| +28297|950380|381|3|18|25746.12|0.09|0.04|N|O|1998-02-28|1998-03-28|1998-03-02|NONE|RAIL|pecial deposits. final theodolites wake s| +28297|26178|26179|4|23|25395.91|0.05|0.00|N|O|1998-02-16|1998-02-25|1998-03-12|TAKE BACK RETURN|SHIP|ets cajole slyly even pac| +28297|958190|45748|5|33|41188.95|0.03|0.01|N|O|1998-02-05|1998-03-23|1998-02-25|DELIVER IN PERSON|SHIP|e carefully for the even pinto bea| +28298|285858|23374|1|32|59002.88|0.10|0.08|N|O|1997-08-12|1997-08-18|1997-09-06|COLLECT COD|AIR|lent packages. final p| +28298|401574|26591|2|19|28035.45|0.03|0.04|N|O|1997-06-28|1997-08-24|1997-07-11|NONE|SHIP|aggle fluffily among the s| +28298|253475|40991|3|48|68566.08|0.05|0.05|N|O|1997-08-24|1997-08-29|1997-09-01|TAKE BACK RETURN|FOB|uthlessly final| +28298|137895|37896|4|27|52188.03|0.07|0.08|N|O|1997-09-09|1997-08-29|1997-09-23|DELIVER IN PERSON|MAIL|y according to the | +28299|527785|2806|1|15|27191.40|0.09|0.01|A|F|1993-07-12|1993-05-25|1993-07-28|COLLECT COD|RAIL|efully final excuses. ironic theo| +28299|482177|7196|2|4|4636.60|0.06|0.00|A|F|1993-06-21|1993-05-31|1993-07-05|COLLECT COD|REG AIR|regular, final requests. fluffily fina| +28299|948836|11355|3|49|92354.71|0.10|0.06|A|F|1993-04-28|1993-05-29|1993-05-15|DELIVER IN PERSON|RAIL| attainments eat carefully final theodo| +28299|76629|1632|4|45|72252.90|0.08|0.04|R|F|1993-04-29|1993-06-18|1993-05-15|NONE|SHIP|pecial packages cajol| +28299|901706|14225|5|44|75137.04|0.05|0.05|A|F|1993-05-01|1993-06-24|1993-05-25|COLLECT COD|SHIP|uctions doze slyly across the even| +28299|972708|35228|6|33|58761.78|0.09|0.07|R|F|1993-08-02|1993-07-07|1993-08-23|NONE|SHIP| requests use fur| +28300|398529|23544|1|48|78120.48|0.08|0.06|A|F|1993-05-20|1993-05-14|1993-06-06|NONE|TRUCK|blithely careful accounts | +28301|517240|29751|1|18|22629.96|0.10|0.00|N|O|1995-11-24|1996-01-30|1995-12-08|DELIVER IN PERSON|RAIL|lithely pending accounts affix. packages | +28301|246548|46549|2|7|10461.71|0.07|0.08|N|O|1995-12-21|1995-12-14|1996-01-16|NONE|AIR|ct requests. do| +28301|723133|48162|3|46|53180.60|0.00|0.05|N|O|1996-01-22|1996-02-01|1996-02-03|NONE|RAIL|es. final packages along t| +28301|685624|35625|4|27|43458.93|0.05|0.07|N|O|1995-12-25|1995-12-21|1996-01-24|COLLECT COD|REG AIR|kly above the eve| +28301|277474|2485|5|48|69670.08|0.09|0.03|N|O|1996-02-28|1996-01-01|1996-03-10|NONE|REG AIR|according to the idly unusual accounts. ca| +28301|490496|28024|6|29|43107.63|0.05|0.01|N|O|1996-02-24|1995-12-21|1996-03-12|TAKE BACK RETURN|MAIL|ges affix sly| +28302|995609|45610|1|20|34091.20|0.04|0.03|N|O|1996-11-28|1997-01-12|1996-11-30|TAKE BACK RETURN|MAIL|are carefully. dolphi| +28302|195789|33299|2|17|32041.26|0.07|0.03|N|O|1997-01-28|1997-01-18|1997-02-12|DELIVER IN PERSON|RAIL|wake above the blithely final excu| +28302|613328|13329|3|23|28549.67|0.03|0.07|N|O|1996-12-14|1997-02-14|1997-01-04|DELIVER IN PERSON|SHIP|ly ironic multipliers integra| +28302|201848|39361|4|33|57744.39|0.07|0.02|N|O|1996-11-26|1997-01-22|1996-12-16|DELIVER IN PERSON|MAIL|pecial instructions. quickly re| +28302|443236|43237|5|16|18867.36|0.08|0.04|N|O|1996-12-22|1997-01-03|1997-01-09|COLLECT COD|TRUCK|efully ironic as| +28303|954264|41822|1|6|7909.32|0.09|0.04|N|O|1997-11-21|1998-01-13|1997-12-20|DELIVER IN PERSON|TRUCK| are fluffily. quickly special depos| +28303|304718|17225|2|7|12058.90|0.08|0.00|N|O|1997-11-14|1998-01-12|1997-12-04|TAKE BACK RETURN|FOB|aters sleep fluffil| +28328|152449|14953|1|30|45043.20|0.02|0.02|N|O|1997-03-08|1996-12-31|1997-03-13|NONE|MAIL| realms. furiously express depos| +28328|196127|46128|2|5|6115.60|0.00|0.01|N|O|1996-11-28|1997-02-17|1996-12-08|NONE|RAIL|st about the spe| +28329|598640|11152|1|23|39988.26|0.06|0.02|N|O|1995-07-13|1995-09-07|1995-07-16|COLLECT COD|AIR| final foxes. furiously bold asymptotes n| +28329|341444|3951|2|50|74271.50|0.06|0.02|N|O|1995-09-22|1995-08-08|1995-10-04|COLLECT COD|AIR|lar, even packages. blithely final t| +28330|709568|9569|1|12|18930.36|0.07|0.00|R|F|1992-08-17|1992-10-11|1992-08-18|TAKE BACK RETURN|TRUCK|y regular | +28331|84147|9150|1|10|11311.40|0.10|0.02|N|O|1996-12-13|1996-10-12|1997-01-02|TAKE BACK RETURN|SHIP|s. slyly ironic depen| +28331|257217|19723|2|12|14090.40|0.02|0.03|N|O|1996-09-19|1996-11-26|1996-09-25|COLLECT COD|MAIL|y sentiments. quickly regular| +28331|42385|4886|3|5|6636.90|0.10|0.08|N|O|1996-11-24|1996-10-11|1996-12-02|TAKE BACK RETURN|MAIL|lyly final accounts detect blithely pen| +28331|348202|35721|4|50|62509.50|0.01|0.04|N|O|1996-12-24|1996-11-11|1996-12-31|TAKE BACK RETURN|AIR|nusual patterns. silent dependencies d| +28332|256045|43561|1|44|44045.32|0.01|0.02|N|O|1996-12-14|1996-12-01|1996-12-23|DELIVER IN PERSON|TRUCK|s boost quic| +28332|333928|8941|2|27|52971.57|0.10|0.03|N|O|1996-12-13|1996-11-16|1997-01-12|NONE|AIR|ages sleep furiously carefully ironic | +28332|311647|11648|3|42|69662.46|0.00|0.07|N|O|1996-11-03|1996-12-12|1996-11-07|TAKE BACK RETURN|FOB|according | +28332|839397|39398|4|40|53454.00|0.09|0.07|N|O|1997-01-22|1997-01-05|1997-02-07|TAKE BACK RETURN|TRUCK|ate furiously| +28332|731990|31991|5|29|58636.84|0.10|0.04|N|O|1997-01-22|1996-12-27|1997-02-04|TAKE BACK RETURN|RAIL|o beans. i| +28332|544631|32162|6|32|53619.52|0.10|0.08|N|O|1996-10-13|1996-12-08|1996-10-27|TAKE BACK RETURN|TRUCK|efully across| +28332|605523|43060|7|46|65710.54|0.07|0.03|N|O|1996-12-07|1996-12-02|1997-01-01|COLLECT COD|REG AIR|even attainments | +28333|16841|41842|1|20|35156.80|0.09|0.04|R|F|1992-07-07|1992-06-05|1992-07-09|DELIVER IN PERSON|REG AIR|ages-- slyly special | +28333|35252|35253|2|30|35617.50|0.03|0.03|A|F|1992-06-17|1992-07-01|1992-06-30|NONE|AIR|ly around the slyly ironic acco| +28333|478662|41172|3|49|80391.36|0.02|0.00|R|F|1992-06-21|1992-06-06|1992-06-22|DELIVER IN PERSON|RAIL|rnis use. enticing asymptotes boost bli| +28334|131657|44160|1|20|33773.00|0.05|0.05|N|O|1997-04-17|1997-03-19|1997-04-24|DELIVER IN PERSON|REG AIR| slyly. quickly sp| +28334|747753|35296|2|36|64825.92|0.05|0.07|N|O|1997-03-30|1997-03-08|1997-04-23|NONE|AIR|lets integrate carefully | +28335|557042|32065|1|11|12089.22|0.04|0.03|N|O|1997-05-21|1997-05-18|1997-05-26|COLLECT COD|TRUCK|es wake blithely along the | +28335|196319|21326|2|25|35382.75|0.02|0.06|N|O|1997-06-07|1997-03-21|1997-07-02|TAKE BACK RETURN|FOB|gainst the furiously bold deposits. | +28335|528533|28534|3|23|35914.73|0.04|0.02|N|O|1997-04-14|1997-05-02|1997-04-21|DELIVER IN PERSON|MAIL|wake fluffily regul| +28360|618431|18432|1|20|26988.00|0.08|0.04|N|O|1997-10-13|1997-10-28|1997-10-26|NONE|SHIP|sly furiousl| +28360|956119|6120|2|28|32901.96|0.03|0.06|N|O|1997-09-27|1997-09-26|1997-10-09|COLLECT COD|TRUCK|refully final packa| +28361|721374|21375|1|50|69767.00|0.10|0.03|R|F|1992-11-20|1992-10-20|1992-12-10|TAKE BACK RETURN|REG AIR|ly express ideas haggle final foxe| +28361|116959|16960|2|5|9879.75|0.09|0.06|A|F|1992-10-22|1992-11-25|1992-11-18|COLLECT COD|RAIL|g furiously special frays. doggedly si| +28361|727770|27771|3|12|21572.88|0.08|0.03|R|F|1992-10-25|1992-11-13|1992-11-16|NONE|TRUCK|s. regular depths affix according to th| +28361|623607|48632|4|1|1530.57|0.05|0.05|R|F|1992-11-30|1992-12-13|1992-12-25|COLLECT COD|MAIL|ess requests| +28361|950776|25815|5|13|23747.49|0.07|0.08|A|F|1992-10-04|1992-11-10|1992-10-14|TAKE BACK RETURN|FOB|packages impress asymptotes. | +28361|685753|10780|6|35|60855.20|0.03|0.00|A|F|1992-09-28|1992-12-05|1992-10-28|COLLECT COD|AIR|yly bold a| +28362|195612|33122|1|19|32444.59|0.10|0.05|N|O|1996-12-14|1996-10-24|1996-12-28|TAKE BACK RETURN|TRUCK|e. pains cajole. slyly| +28362|634612|47125|2|21|32478.18|0.06|0.03|N|O|1996-12-05|1996-10-15|1996-12-16|NONE|AIR|furiously about the even| +28362|919680|7235|3|21|35692.44|0.07|0.07|N|O|1996-10-18|1996-11-06|1996-11-07|DELIVER IN PERSON|RAIL|ideas integrate car| +28362|57609|20111|4|8|12532.80|0.10|0.01|N|O|1996-10-10|1996-10-21|1996-11-07|COLLECT COD|REG AIR|n pinto beans.| +28362|223081|35586|5|32|32130.24|0.00|0.07|N|O|1996-09-11|1996-11-06|1996-09-23|DELIVER IN PERSON|REG AIR| pending accou| +28362|308449|8450|6|32|46637.76|0.08|0.03|N|O|1996-10-01|1996-11-02|1996-10-09|NONE|AIR| kindle stealthy, thin| +28363|123787|23788|1|42|76052.76|0.03|0.06|N|O|1995-09-10|1995-09-11|1995-09-16|NONE|REG AIR|ely brave pa| +28363|481033|18561|2|50|50700.50|0.06|0.05|N|O|1995-12-03|1995-10-18|1995-12-07|DELIVER IN PERSON|REG AIR|ecial asymptotes wake furiously around t| +28363|710024|35053|3|34|35155.66|0.08|0.08|N|O|1995-09-11|1995-09-24|1995-09-27|NONE|SHIP|e quickly acros| +28363|359665|47187|4|21|36217.65|0.07|0.06|N|O|1995-09-13|1995-10-10|1995-09-22|DELIVER IN PERSON|AIR|nts. carefully express packages affix care| +28363|876265|1300|5|45|55854.90|0.03|0.02|N|O|1995-11-09|1995-09-07|1995-12-08|DELIVER IN PERSON|RAIL|oze furiously carefully ironic | +28364|50860|38364|1|41|74245.26|0.06|0.07|A|F|1994-05-03|1994-03-02|1994-05-18|COLLECT COD|SHIP|lites use blithely furiously pending pin| +28364|797914|10430|2|30|60356.40|0.03|0.04|A|F|1994-03-24|1994-04-06|1994-04-05|TAKE BACK RETURN|AIR| daring asymptotes are furiously. slyly un| +28364|526991|2012|3|4|8071.88|0.07|0.07|R|F|1994-04-09|1994-04-09|1994-04-23|NONE|SHIP|ven asymptotes| +28364|124209|11716|4|7|8632.40|0.01|0.05|A|F|1994-05-19|1994-04-01|1994-05-27|TAKE BACK RETURN|RAIL|pending accounts unwi| +28364|567411|29923|5|28|41394.92|0.09|0.03|A|F|1994-05-25|1994-03-21|1994-06-08|NONE|RAIL|egular packages hang-- f| +28364|468760|31270|6|19|32846.06|0.00|0.01|A|F|1994-05-02|1994-03-26|1994-05-15|DELIVER IN PERSON|FOB|dependencies wake quickly slyl| +28364|443041|43042|7|19|18696.38|0.02|0.08|R|F|1994-05-22|1994-04-16|1994-06-11|DELIVER IN PERSON|TRUCK|olites wake after the pending sheaves. c| +28365|179565|42069|1|43|70716.08|0.06|0.06|A|F|1993-09-14|1993-09-12|1993-10-14|NONE|SHIP|al accounts | +28366|139972|39973|1|7|14083.79|0.07|0.04|N|O|1998-04-19|1998-04-09|1998-05-03|TAKE BACK RETURN|AIR|s poach carefully according to the dep| +28367|491944|16963|1|23|44526.16|0.00|0.03|A|F|1994-03-03|1994-04-26|1994-03-24|NONE|RAIL|ess. express, unusual deposits ea| +28367|95919|8421|2|35|67021.85|0.02|0.03|R|F|1994-03-20|1994-03-06|1994-04-02|DELIVER IN PERSON|SHIP|esias: regular, pending | +28367|109264|34269|3|9|11459.34|0.01|0.03|R|F|1994-04-20|1994-04-02|1994-04-28|DELIVER IN PERSON|SHIP|s. furiously regular pinto beans wake furi| +28367|398059|10567|4|46|53223.84|0.08|0.00|A|F|1994-04-30|1994-05-05|1994-05-06|DELIVER IN PERSON|RAIL|ully final instruction| +28367|169067|31571|5|19|21585.14|0.03|0.06|A|F|1994-03-19|1994-03-13|1994-03-31|DELIVER IN PERSON|RAIL|furiously even acc| +28367|497011|22030|6|5|5039.95|0.06|0.04|A|F|1994-05-30|1994-05-03|1994-06-25|DELIVER IN PERSON|SHIP|beans. pending, idle | +28367|256185|43701|7|36|41082.12|0.05|0.05|R|F|1994-02-09|1994-03-26|1994-02-13|COLLECT COD|REG AIR|al packages haggle against the special as| +28392|694994|7508|1|19|37790.24|0.04|0.01|R|F|1993-02-15|1993-02-24|1993-03-17|DELIVER IN PERSON|TRUCK|structions sleep abov| +28392|763112|25628|2|47|55228.76|0.04|0.03|A|F|1993-02-09|1993-02-07|1993-02-26|TAKE BACK RETURN|REG AIR|e blithely. | +28392|608602|46139|3|14|21147.98|0.08|0.08|R|F|1993-04-12|1993-02-08|1993-04-24|TAKE BACK RETURN|REG AIR|tainments cajole slyly about the slyly ev| +28392|762439|12440|4|35|52549.00|0.05|0.03|A|F|1993-04-23|1993-03-11|1993-05-23|TAKE BACK RETURN|REG AIR|, regular hock| +28392|297581|22592|5|36|56828.52|0.04|0.03|R|F|1993-03-25|1993-03-14|1993-04-13|TAKE BACK RETURN|REG AIR|ckages believe furiously r| +28393|621902|34415|1|1|1823.87|0.03|0.07|N|O|1996-08-12|1996-08-13|1996-09-08|DELIVER IN PERSON|RAIL|le above t| +28393|297671|10177|2|45|75089.70|0.09|0.03|N|O|1996-09-29|1996-07-31|1996-10-07|NONE|MAIL|quickly pending deposits sleep above the| +28393|952657|15177|3|41|70094.01|0.06|0.02|N|O|1996-06-10|1996-08-05|1996-06-16|TAKE BACK RETURN|FOB|counts. dependencies along the foxes cajol| +28394|107275|44782|1|14|17951.78|0.07|0.02|A|F|1994-04-18|1994-02-10|1994-05-09|DELIVER IN PERSON|SHIP|atelets. fu| +28394|965884|15885|2|24|46796.16|0.01|0.05|A|F|1994-03-01|1994-02-23|1994-03-12|COLLECT COD|AIR|ng packages breach s| +28394|595633|20656|3|11|19014.71|0.00|0.00|R|F|1994-05-04|1994-03-30|1994-05-22|NONE|TRUCK| packages wake. carefully final s| +28395|474957|12485|1|49|94664.57|0.05|0.01|A|F|1992-06-04|1992-07-06|1992-06-23|COLLECT COD|FOB|e of the carefully ironic grouches are qui| +28395|591127|28661|2|44|53596.40|0.04|0.04|R|F|1992-05-10|1992-06-05|1992-05-14|NONE|REG AIR|ironic tithes. u| +28396|58093|45597|1|6|6306.54|0.08|0.02|A|F|1994-04-19|1994-06-14|1994-04-25|TAKE BACK RETURN|REG AIR|ges. bold requests serv| +28396|363733|1255|2|35|62885.20|0.04|0.05|R|F|1994-07-20|1994-05-31|1994-08-01|DELIVER IN PERSON|AIR|d deposits mold slyly | +28396|259550|34561|3|50|75477.00|0.08|0.04|R|F|1994-04-02|1994-05-15|1994-04-16|TAKE BACK RETURN|MAIL|ully carefully regula| +28396|253066|15572|4|4|4076.20|0.01|0.02|R|F|1994-05-30|1994-05-02|1994-06-10|NONE|FOB| ironic deposits. blithely blithe fox| +28397|146533|9036|1|21|33170.13|0.05|0.04|R|F|1993-02-01|1993-02-22|1993-02-20|TAKE BACK RETURN|MAIL|gle carefully special accounts? carefully i| +28398|546979|46980|1|47|95219.65|0.04|0.00|R|F|1995-01-02|1994-12-28|1995-01-10|TAKE BACK RETURN|TRUCK|ular theodolites. quickly dogge| +28399|510301|35322|1|38|49828.64|0.05|0.06|N|O|1998-04-11|1998-05-05|1998-04-13|DELIVER IN PERSON|AIR|ly. always silent the| +28399|621108|33621|2|34|34988.38|0.10|0.00|N|O|1998-06-09|1998-04-28|1998-07-02|COLLECT COD|FOB|inal accounts| +28399|956263|31302|3|18|23745.96|0.01|0.07|N|O|1998-05-04|1998-04-27|1998-05-27|NONE|REG AIR|uffily among t| +28399|905192|17711|4|29|34717.35|0.05|0.03|N|O|1998-03-08|1998-04-22|1998-03-24|NONE|RAIL|he furiously permanent courts. deposi| +28399|554303|41837|5|46|62434.88|0.05|0.04|N|O|1998-04-30|1998-04-10|1998-05-19|COLLECT COD|MAIL| forges. fluff| +28424|848538|48539|1|28|41621.72|0.09|0.04|N|O|1995-11-22|1995-12-17|1995-12-14|COLLECT COD|MAIL|deposits boost| +28424|373174|35682|2|22|27437.52|0.00|0.06|N|O|1995-11-12|1996-01-08|1995-11-26|TAKE BACK RETURN|FOB|ously. blithely | +28424|933521|33522|3|4|6217.92|0.04|0.02|N|O|1995-12-06|1995-11-29|1995-12-25|COLLECT COD|TRUCK|s; furiously eve| +28424|674310|24311|4|49|62929.72|0.00|0.08|N|O|1996-01-17|1996-01-26|1996-02-16|COLLECT COD|RAIL|y special courts.| +28424|118309|18310|5|26|34509.80|0.02|0.01|N|O|1996-01-13|1995-12-23|1996-01-27|DELIVER IN PERSON|REG AIR|ly express packages integrate som| +28425|122884|10391|1|2|3813.76|0.02|0.05|R|F|1993-07-21|1993-06-22|1993-07-24|DELIVER IN PERSON|AIR|r deposits are carefully. carefully pe| +28425|297016|22027|2|28|28364.00|0.10|0.01|R|F|1993-04-14|1993-05-18|1993-05-11|DELIVER IN PERSON|FOB|rthogs sleep blithely alongsid| +28425|931869|19424|3|38|72231.16|0.01|0.02|R|F|1993-05-25|1993-06-04|1993-06-24|NONE|FOB|ously pending dependencies. furiousl| +28425|918021|30540|4|39|40520.22|0.10|0.02|R|F|1993-04-12|1993-06-03|1993-04-30|DELIVER IN PERSON|MAIL| accounts. blithely even no| +28425|168819|6329|5|45|84951.45|0.04|0.04|R|F|1993-07-15|1993-07-03|1993-07-31|NONE|RAIL|instructions nag blithely | +28425|338838|38839|6|32|60058.24|0.00|0.03|R|F|1993-05-16|1993-06-03|1993-05-28|TAKE BACK RETURN|FOB| fluffily alongsid| +28425|834731|34732|7|4|6662.76|0.01|0.06|R|F|1993-06-11|1993-07-06|1993-06-19|COLLECT COD|TRUCK|quests are fluff| +28426|320496|8015|1|42|63692.16|0.03|0.01|N|O|1995-07-29|1995-07-07|1995-08-21|TAKE BACK RETURN|AIR| carefully regular deposits nag alongside| +28426|572070|47093|2|46|52534.30|0.03|0.03|N|O|1995-06-22|1995-07-03|1995-06-29|NONE|SHIP| are quickly. special escapades acr| +28427|482210|32211|1|12|14306.28|0.03|0.07|N|O|1996-01-30|1996-03-23|1996-02-08|DELIVER IN PERSON|FOB|special theodolites. fluffily regular | +28427|493395|43396|2|41|56923.17|0.08|0.03|N|O|1996-03-14|1996-03-15|1996-03-26|COLLECT COD|REG AIR|xpress instructions.| +28428|426067|26068|1|2|1986.08|0.06|0.05|R|F|1993-04-17|1993-05-06|1993-05-17|NONE|MAIL|ously express tithes. | +28428|896455|46456|2|19|27576.79|0.02|0.01|A|F|1993-03-23|1993-05-31|1993-03-27|COLLECT COD|FOB|carefully even account| +28428|710140|10141|3|3|3450.33|0.10|0.07|A|F|1993-04-11|1993-04-22|1993-04-15|NONE|MAIL|ending pinto beans cajole quickly. r| +28428|314684|39697|4|4|6794.68|0.06|0.00|A|F|1993-05-12|1993-06-02|1993-05-15|TAKE BACK RETURN|MAIL|leep furiously among th| +28428|884206|21758|5|36|42845.76|0.05|0.00|R|F|1993-07-12|1993-05-07|1993-07-19|TAKE BACK RETURN|RAIL|ly after t| +28428|837692|25241|6|3|4888.95|0.10|0.05|A|F|1993-06-27|1993-05-02|1993-07-16|DELIVER IN PERSON|SHIP|lly regular | +28428|86023|36024|7|38|38342.76|0.05|0.07|A|F|1993-05-22|1993-06-08|1993-05-26|DELIVER IN PERSON|SHIP|le furiously r| +28429|773998|49029|1|2|4143.92|0.10|0.05|N|O|1998-06-16|1998-07-12|1998-06-23|DELIVER IN PERSON|RAIL|st furiously across| +28429|583699|21233|2|41|73089.47|0.06|0.03|N|O|1998-06-29|1998-06-08|1998-07-29|COLLECT COD|RAIL|g accounts | +28429|225076|37581|3|33|33034.98|0.08|0.06|N|O|1998-07-14|1998-07-01|1998-07-22|NONE|RAIL|l theodolites sleep sl| +28429|851618|1619|4|3|4708.71|0.10|0.02|N|O|1998-08-04|1998-07-17|1998-08-05|TAKE BACK RETURN|FOB|thely. slyly regular | +28429|130293|30294|5|50|66164.50|0.05|0.07|N|O|1998-08-04|1998-06-10|1998-09-02|DELIVER IN PERSON|REG AIR|eep carefully. regular depos| +28429|819473|19474|6|14|19494.02|0.00|0.04|N|O|1998-05-08|1998-07-13|1998-06-04|COLLECT COD|SHIP|ly unusual packages-- even gifts use slyly| +28430|869892|7444|1|2|3723.70|0.01|0.01|R|F|1992-07-15|1992-06-24|1992-08-11|DELIVER IN PERSON|AIR|ions? blithely sile| +28430|258654|46170|2|27|43541.28|0.03|0.06|R|F|1992-05-09|1992-06-15|1992-06-08|NONE|MAIL|lets are furiousl| +28430|196658|9162|3|34|59658.10|0.10|0.04|R|F|1992-07-16|1992-06-19|1992-08-11|COLLECT COD|MAIL|according to the unu| +28430|214539|2052|4|46|66861.92|0.01|0.08|R|F|1992-06-10|1992-07-31|1992-06-27|NONE|RAIL|after the blithely b| +28430|755532|5533|5|12|19050.00|0.04|0.01|R|F|1992-07-25|1992-06-10|1992-08-08|TAKE BACK RETURN|AIR|ag carefully pin| +28430|223352|48361|6|22|28057.48|0.09|0.07|R|F|1992-08-31|1992-06-12|1992-09-27|TAKE BACK RETURN|SHIP|al deposits. foxes use slyly u| +28431|986115|11154|1|42|50444.94|0.07|0.05|A|F|1994-05-27|1994-04-07|1994-06-21|TAKE BACK RETURN|FOB|telets. quickl| +28431|627523|27524|2|34|49316.66|0.08|0.05|A|F|1994-02-28|1994-03-19|1994-03-22|TAKE BACK RETURN|REG AIR|he regularly regular | +28431|763647|26163|3|18|30790.98|0.02|0.00|R|F|1994-04-28|1994-03-26|1994-05-25|TAKE BACK RETURN|RAIL|eas. package| +28431|599245|36779|4|48|64522.56|0.03|0.00|A|F|1994-02-25|1994-03-23|1994-03-10|DELIVER IN PERSON|RAIL|le across the ironic deposits.| +28431|506559|19070|5|28|43834.84|0.03|0.05|A|F|1994-05-13|1994-04-18|1994-05-30|TAKE BACK RETURN|RAIL|al packages dazzle slyly carefully e| +28431|734322|34323|6|11|14919.19|0.08|0.02|R|F|1994-03-07|1994-04-05|1994-03-14|NONE|AIR|e carefully bol| +28456|773656|36172|1|5|8648.10|0.00|0.04|A|F|1994-01-28|1994-02-21|1994-02-04|DELIVER IN PERSON|MAIL|ven packages wake. furiously| +28456|833666|8699|2|33|52787.46|0.09|0.05|A|F|1994-04-07|1994-03-04|1994-04-21|COLLECT COD|TRUCK| fluffily final deposits cajole carefully s| +28456|412128|37145|3|30|31203.00|0.03|0.08|A|F|1994-04-18|1994-04-13|1994-04-22|DELIVER IN PERSON|AIR|even accou| +28456|621401|46426|4|13|17190.81|0.08|0.02|A|F|1994-02-20|1994-02-18|1994-03-19|COLLECT COD|REG AIR|leep carefully. deposits wak| +28457|190359|2863|1|35|50727.25|0.00|0.05|N|O|1997-12-17|1997-12-03|1997-12-21|COLLECT COD|SHIP|lly bold platelets are. sl| +28457|351171|13679|2|4|4888.64|0.06|0.02|N|O|1997-10-14|1997-11-17|1997-11-08|NONE|SHIP|ts nag furiously. accounts along the eve| +28457|127289|27290|3|32|42120.96|0.03|0.00|N|O|1997-10-13|1997-12-07|1997-11-07|TAKE BACK RETURN|FOB|ular platelets boost against the| +28457|343892|31411|4|30|58076.40|0.03|0.07|N|O|1997-12-25|1997-12-11|1998-01-24|NONE|FOB|boost. slyly bold i| +28458|856511|6512|1|48|70438.56|0.05|0.08|N|O|1997-08-29|1997-08-02|1997-09-08|NONE|RAIL|lithely silen| +28458|364255|39270|2|46|60685.04|0.05|0.04|N|O|1997-08-25|1997-07-19|1997-08-31|DELIVER IN PERSON|MAIL|egrate. blithe| +28458|31603|44104|3|11|16880.60|0.10|0.07|N|O|1997-07-08|1997-06-26|1997-07-22|TAKE BACK RETURN|RAIL|ial pinto beans sleep enticingly against t| +28458|146764|9267|4|6|10864.56|0.07|0.01|N|O|1997-07-15|1997-06-27|1997-08-14|DELIVER IN PERSON|MAIL|se quickly across the requests. packages | +28459|828222|3255|1|13|14952.34|0.08|0.08|A|F|1992-10-09|1992-09-04|1992-11-06|NONE|AIR|iously thin requests. stealthily regular | +28459|921895|21896|2|44|84341.40|0.08|0.00|A|F|1992-07-03|1992-07-25|1992-07-16|NONE|SHIP| against the quickly special a| +28459|272621|47632|3|20|31872.20|0.00|0.04|A|F|1992-08-08|1992-09-01|1992-08-25|DELIVER IN PERSON|FOB|ll lose. re| +28459|928724|28725|4|32|56085.76|0.04|0.06|R|F|1992-10-10|1992-08-01|1992-10-13|TAKE BACK RETURN|REG AIR|s sleep quickly even deposits| +28459|63912|38915|5|39|73160.49|0.01|0.04|R|F|1992-08-11|1992-08-12|1992-08-13|TAKE BACK RETURN|FOB|al warhorses. blit| +28459|157254|19758|6|24|31470.00|0.02|0.03|A|F|1992-10-03|1992-08-25|1992-10-18|COLLECT COD|REG AIR|usual depos| +28459|959061|46619|7|3|3360.06|0.08|0.08|A|F|1992-06-30|1992-08-24|1992-07-02|NONE|SHIP|o the closely | +28460|928758|16313|1|3|5360.13|0.08|0.07|N|O|1996-03-21|1996-03-13|1996-04-20|DELIVER IN PERSON|MAIL|le quickly regular, silent deposits. | +28460|623693|11230|2|1|1616.66|0.00|0.01|N|O|1996-02-01|1996-03-24|1996-02-24|NONE|REG AIR|ing packages sleep quickly. slyly| +28460|397551|47552|3|35|57698.90|0.10|0.00|N|O|1996-02-16|1996-03-01|1996-03-03|COLLECT COD|MAIL|tructions haggle. special theod| +28461|495906|20925|1|41|77977.08|0.08|0.04|N|O|1995-07-19|1995-06-20|1995-07-23|COLLECT COD|REG AIR|es. blithely ironic foxes a| +28461|678318|3345|2|15|19444.20|0.04|0.01|R|F|1995-05-20|1995-06-12|1995-06-15|DELIVER IN PERSON|RAIL|ckly final packages: slyly bold pac| +28461|475776|795|3|38|66566.50|0.06|0.00|N|O|1995-08-23|1995-06-25|1995-09-10|DELIVER IN PERSON|SHIP|re slyly against the blithel| +28461|362735|12736|4|13|23370.36|0.02|0.02|N|F|1995-06-08|1995-07-31|1995-06-26|DELIVER IN PERSON|SHIP|its. quickly pending dep| +28461|481998|19526|5|37|73258.89|0.03|0.07|N|F|1995-06-05|1995-06-25|1995-07-04|NONE|FOB|ronic theodolites. slyly re| +28461|934330|21885|6|20|27285.80|0.05|0.05|N|O|1995-07-03|1995-08-04|1995-07-30|TAKE BACK RETURN|REG AIR| the slowly ironic packages. ironic, regula| +28461|272157|22158|7|49|55327.86|0.00|0.03|N|O|1995-07-23|1995-06-19|1995-08-18|DELIVER IN PERSON|TRUCK|egular foxes wake. unusual, even pac| +28462|132941|45444|1|20|39478.80|0.02|0.08|R|F|1992-11-24|1992-11-29|1992-12-19|COLLECT COD|REG AIR|ges. blithely final pinto beans doze d| +28462|325445|25446|2|9|13233.87|0.00|0.05|R|F|1992-12-09|1992-11-03|1992-12-16|NONE|TRUCK|olites wake blith| +28462|740658|28201|3|8|13588.96|0.06|0.04|R|F|1992-10-16|1992-10-08|1992-11-09|DELIVER IN PERSON|REG AIR|furious courts may cajole unusual | +28462|231853|44358|4|23|41051.32|0.10|0.03|R|F|1992-10-04|1992-11-09|1992-10-06|TAKE BACK RETURN|FOB|cial, regular realms. final, fin| +28462|745709|45710|5|46|80714.82|0.09|0.03|R|F|1992-10-13|1992-10-20|1992-10-16|DELIVER IN PERSON|TRUCK|instructions nag according t| +28463|916176|16177|1|45|53645.85|0.00|0.06|R|F|1992-08-25|1992-06-19|1992-08-27|NONE|FOB|ake slyly across the ir| +28463|163961|26465|2|17|34424.32|0.10|0.03|R|F|1992-08-01|1992-07-18|1992-08-07|DELIVER IN PERSON|RAIL|. fluffily even ac| +28488|655760|5761|1|48|82355.04|0.00|0.02|N|O|1997-08-30|1997-09-17|1997-09-13|DELIVER IN PERSON|REG AIR|e slyly regular requests sle| +28488|357019|7020|2|35|37660.00|0.02|0.07|N|O|1997-09-21|1997-10-14|1997-09-23|TAKE BACK RETURN|REG AIR|tions according to the accounts| +28488|402046|39571|3|15|14220.30|0.07|0.06|N|O|1997-07-27|1997-09-21|1997-08-04|COLLECT COD|RAIL|affix carefully fina| +28488|170457|32961|4|27|41241.15|0.01|0.03|N|O|1997-08-22|1997-09-07|1997-09-04|DELIVER IN PERSON|SHIP|tes wake boldly slyly ruthless pac| +28488|870549|33067|5|45|68377.50|0.06|0.02|N|O|1997-10-25|1997-09-26|1997-11-02|NONE|AIR|y ironic accou| +28489|427252|2269|1|7|8254.61|0.03|0.08|N|O|1995-12-01|1995-12-31|1995-12-15|DELIVER IN PERSON|MAIL|press theodolites cajole| +28489|823573|48606|2|38|56868.14|0.06|0.04|N|O|1995-12-21|1996-01-09|1995-12-22|NONE|REG AIR| according to the carefu| +28489|780959|18505|3|9|18359.28|0.06|0.08|N|O|1996-02-17|1996-01-09|1996-02-19|COLLECT COD|RAIL|ts wake quickly dolphins. furiously e| +28490|470618|45637|1|11|17474.49|0.07|0.03|A|F|1994-05-22|1994-05-21|1994-06-20|NONE|SHIP| special instr| +28490|661418|36445|2|36|49657.68|0.06|0.07|R|F|1994-05-06|1994-04-04|1994-05-07|DELIVER IN PERSON|FOB|breach against the ironic | +28490|448094|48095|3|43|44809.01|0.09|0.08|R|F|1994-05-10|1994-05-24|1994-05-11|NONE|TRUCK|counts boost after the furiously even in| +28490|103310|28315|4|24|31519.44|0.06|0.03|A|F|1994-03-21|1994-05-17|1994-03-28|DELIVER IN PERSON|TRUCK|eans. quickl| +28490|328395|15914|5|43|61205.34|0.03|0.05|R|F|1994-05-15|1994-05-29|1994-05-28|TAKE BACK RETURN|TRUCK|ainst the furiously ironic excuse| +28490|334630|34631|6|15|24969.30|0.09|0.07|R|F|1994-05-13|1994-04-16|1994-05-26|DELIVER IN PERSON|REG AIR|equests alongside of the pending req| +28491|683683|46197|1|17|28333.05|0.03|0.05|R|F|1994-01-02|1994-02-04|1994-01-30|NONE|RAIL|packages above the dependen| +28491|654185|29212|2|16|18226.40|0.09|0.06|R|F|1994-03-02|1994-02-26|1994-03-20|NONE|FOB|sts sleep flu| +28491|873618|23619|3|29|46155.53|0.04|0.07|R|F|1994-01-26|1994-01-30|1994-02-14|COLLECT COD|FOB|carefully ironic| +28491|889957|14992|4|11|21416.01|0.03|0.02|A|F|1994-01-28|1994-02-17|1994-02-04|DELIVER IN PERSON|AIR|r packages haggle blithely along | +28492|317467|4986|1|49|72738.05|0.10|0.04|A|F|1994-03-17|1994-03-14|1994-04-10|NONE|RAIL|le after the special requests. s| +28492|655872|5873|2|47|85908.48|0.07|0.03|A|F|1993-12-26|1994-02-12|1994-01-17|NONE|AIR| regular depo| +28492|231833|31834|3|31|54709.42|0.09|0.01|R|F|1994-01-09|1994-01-21|1994-02-01|COLLECT COD|FOB|. slyly brave hockey players ar| +28493|193433|18440|1|12|18317.16|0.07|0.03|R|F|1993-09-21|1993-07-30|1993-10-08|DELIVER IN PERSON|FOB|ickly above the ironic, pe| +28493|12111|49612|2|27|27623.97|0.06|0.00|R|F|1993-07-01|1993-09-11|1993-07-10|COLLECT COD|TRUCK|efully reg| +28494|816878|41911|1|1|1794.83|0.07|0.08|N|O|1997-09-12|1997-08-29|1997-10-04|COLLECT COD|SHIP|quests. quickly| +28494|254267|41783|2|35|42743.75|0.06|0.04|N|O|1997-09-01|1997-09-03|1997-09-16|DELIVER IN PERSON|SHIP|uses use above t| +28494|449555|12064|3|32|48144.96|0.00|0.01|N|O|1997-07-26|1997-07-20|1997-08-01|DELIVER IN PERSON|FOB|nal ideas. furiously final a| +28494|659107|46647|4|38|40510.66|0.08|0.03|N|O|1997-10-03|1997-09-16|1997-10-05|DELIVER IN PERSON|REG AIR| packages haggle slyly| +28494|609415|9416|5|2|2648.76|0.01|0.00|N|O|1997-10-09|1997-08-31|1997-10-27|NONE|REG AIR|ts solve alongside of the blithely even | +28494|436601|49110|6|17|26138.86|0.01|0.00|N|O|1997-07-09|1997-07-31|1997-07-14|COLLECT COD|REG AIR|xes dazzle quickly along | +28494|937184|37185|7|23|28086.22|0.10|0.08|N|O|1997-09-09|1997-08-28|1997-09-21|COLLECT COD|REG AIR|es are carefully according to the | +28495|250305|37821|1|37|46445.73|0.10|0.03|N|O|1997-10-02|1997-07-23|1997-10-07|TAKE BACK RETURN|FOB|y. blithely ironic dolphins haggle fluff| +28495|866350|28868|2|24|31591.44|0.06|0.08|N|O|1997-07-21|1997-09-07|1997-08-07|NONE|MAIL|l accounts by the carefully regular ide| +28495|744203|6718|3|29|36167.93|0.08|0.01|N|O|1997-09-20|1997-07-22|1997-10-12|COLLECT COD|SHIP|nts wake slyly. even pa| +28495|817391|29908|4|44|57567.40|0.00|0.05|N|O|1997-08-10|1997-07-25|1997-09-09|COLLECT COD|SHIP|nts. slyly express a| +28520|582809|32810|1|25|47294.50|0.03|0.00|A|F|1993-05-14|1993-04-21|1993-06-08|NONE|FOB|ully furiously speci| +28520|258804|46320|2|11|19390.69|0.08|0.07|A|F|1993-05-10|1993-03-25|1993-05-18|DELIVER IN PERSON|MAIL|deposits. packa| +28520|717805|5348|3|14|25518.78|0.07|0.04|R|F|1993-04-22|1993-04-12|1993-05-04|COLLECT COD|MAIL|eodolites. express depo| +28520|139923|14928|4|33|64776.36|0.01|0.00|A|F|1993-04-16|1993-03-13|1993-05-13|NONE|AIR|ven deposits! regular, express i| +28520|675998|38512|5|46|90802.16|0.09|0.08|A|F|1993-02-23|1993-04-13|1993-03-07|DELIVER IN PERSON|MAIL| blithely stealthy accounts. furiously unus| +28521|403603|28620|1|31|46703.98|0.05|0.05|A|F|1994-11-04|1994-09-22|1994-11-09|TAKE BACK RETURN|MAIL|ide of the pending account| +28521|344967|32486|2|19|38227.05|0.09|0.06|R|F|1994-09-24|1994-10-25|1994-10-24|TAKE BACK RETURN|SHIP| requests. carefully bold t| +28521|849215|11732|3|14|16298.38|0.01|0.08|R|F|1994-10-14|1994-09-08|1994-11-04|COLLECT COD|AIR|ckages along the slyly un| +28521|746939|9454|4|13|25816.70|0.00|0.08|A|F|1994-09-17|1994-10-01|1994-10-07|DELIVER IN PERSON|FOB|st furiously. regular deposits about the| +28522|795426|45427|1|20|30427.80|0.00|0.02|A|F|1993-10-28|1993-10-13|1993-10-30|NONE|TRUCK|bravely carefully pending | +28522|720491|45520|2|25|37786.50|0.01|0.05|R|F|1993-09-09|1993-09-12|1993-10-04|COLLECT COD|TRUCK|furiously ironic ideas boost acco| +28522|275933|38439|3|29|55358.68|0.06|0.01|R|F|1993-07-30|1993-09-06|1993-08-05|TAKE BACK RETURN|FOB|sits. slyly pen| +28522|593181|43182|4|17|21660.72|0.10|0.00|R|F|1993-11-17|1993-09-10|1993-11-28|NONE|MAIL| slyly regular pinto be| +28522|585208|10231|5|10|12931.80|0.06|0.06|R|F|1993-11-06|1993-09-29|1993-11-14|DELIVER IN PERSON|SHIP|y excuses. furiously express packag| +28522|585362|10385|6|15|21710.10|0.03|0.03|R|F|1993-11-17|1993-09-11|1993-12-15|NONE|TRUCK|ites sleep slyly unusual, unusual decoys. e| +28522|164956|27460|7|29|58607.55|0.00|0.03|A|F|1993-09-22|1993-09-28|1993-09-26|NONE|FOB|- furiously regular ins| +28523|414542|14543|1|20|29130.40|0.09|0.03|N|O|1997-04-29|1997-06-19|1997-05-23|TAKE BACK RETURN|SHIP|t the deposits. bold id| +28523|195553|8057|2|31|51105.05|0.10|0.08|N|O|1997-07-14|1997-06-02|1997-08-13|TAKE BACK RETURN|TRUCK|ncies. unusual de| +28523|654986|4987|3|40|77638.00|0.03|0.01|N|O|1997-05-11|1997-05-10|1997-05-26|NONE|RAIL|even pains breach ironica| +28523|334738|9751|4|14|24818.08|0.01|0.05|N|O|1997-07-06|1997-05-14|1997-07-15|TAKE BACK RETURN|SHIP|the express| +28523|939430|1949|5|13|19102.07|0.07|0.03|N|O|1997-05-11|1997-05-27|1997-05-20|TAKE BACK RETURN|FOB|ts use sometimes about the regular reques| +28524|966595|16596|1|32|53169.60|0.05|0.01|N|O|1995-06-20|1995-07-15|1995-07-19|COLLECT COD|AIR|y special deposits around | +28524|549176|49177|2|5|6125.75|0.09|0.06|N|O|1995-06-25|1995-07-06|1995-07-14|TAKE BACK RETURN|MAIL|ic deposits integrat| +28524|984422|46942|3|3|4519.14|0.10|0.07|N|O|1995-08-20|1995-07-30|1995-09-15|TAKE BACK RETURN|REG AIR|y quickly final deposits. slyly ironic| +28524|178905|28906|4|46|91259.40|0.10|0.01|N|O|1995-07-27|1995-07-28|1995-08-04|TAKE BACK RETURN|MAIL|ely packages. reg| +28524|849880|37429|5|2|3659.68|0.07|0.08|N|O|1995-07-30|1995-07-09|1995-08-17|COLLECT COD|SHIP|into beans are blithely along the| +28524|921226|33745|6|7|8730.26|0.03|0.03|R|F|1995-05-21|1995-07-10|1995-06-04|COLLECT COD|MAIL| deposits are. bold instructions wake | +28524|36522|24023|7|41|59799.32|0.06|0.01|A|F|1995-05-31|1995-07-11|1995-06-05|NONE|TRUCK|ctions. bold, final packages haggle fluffi| +28525|809345|46894|1|12|15051.60|0.07|0.02|N|O|1997-04-21|1997-06-03|1997-05-14|TAKE BACK RETURN|AIR|o the final, final requ| +28525|659785|9786|2|37|64555.75|0.02|0.04|N|O|1997-03-21|1997-05-16|1997-03-24|TAKE BACK RETURN|REG AIR|blithe, special platelets cajo| +28525|5055|30056|3|28|26881.40|0.07|0.01|N|O|1997-06-05|1997-04-05|1997-06-10|NONE|AIR|onic, regular packages wake across the| +28526|800171|37720|1|22|23564.86|0.01|0.02|R|F|1994-01-14|1994-01-16|1994-02-11|COLLECT COD|FOB|mold blithely across the| +28526|460142|10143|2|47|51799.64|0.10|0.04|A|F|1994-02-07|1994-02-03|1994-03-01|COLLECT COD|MAIL|aves alongside | +28526|605755|30780|3|27|44839.44|0.02|0.04|A|F|1994-02-23|1994-01-26|1994-03-25|NONE|REG AIR|e fluffily unusual instructions. carefully | +28526|911633|49188|4|11|18090.49|0.10|0.08|R|F|1993-12-01|1994-01-23|1993-12-20|TAKE BACK RETURN|SHIP|as wake fur| +28527|626769|39282|1|21|35610.33|0.05|0.01|N|O|1998-06-12|1998-05-27|1998-06-15|NONE|RAIL|the ironic accounts wake furiously fl| +28552|957049|32088|1|17|18802.00|0.10|0.01|R|F|1994-03-01|1994-02-09|1994-03-02|COLLECT COD|MAIL|encies cajole furi| +28552|122451|9958|2|31|45676.95|0.06|0.02|R|F|1994-01-02|1994-02-02|1994-01-31|TAKE BACK RETURN|TRUCK|wake blithely. special realms ag| +28553|398875|48876|1|36|71058.96|0.06|0.07|N|O|1996-07-24|1996-08-15|1996-08-18|COLLECT COD|AIR|y unusual packages cajole| +28553|875669|13221|2|13|21380.06|0.03|0.05|N|O|1996-08-02|1996-07-09|1996-08-15|DELIVER IN PERSON|SHIP| boost furiously final theodol| +28553|360747|23255|3|41|74116.93|0.03|0.02|N|O|1996-07-02|1996-07-26|1996-07-31|NONE|AIR|ular instructi| +28553|58737|21239|4|42|71220.66|0.03|0.01|N|O|1996-06-30|1996-08-13|1996-07-19|DELIVER IN PERSON|AIR|slyly ironic platelets wake slyly am| +28553|182437|44941|5|5|7597.15|0.10|0.03|N|O|1996-09-06|1996-08-04|1996-09-09|NONE|RAIL|ructions nag blithely. | +28554|692421|42422|1|12|16960.68|0.10|0.08|R|F|1994-09-18|1994-08-13|1994-10-17|COLLECT COD|REG AIR|ar account| +28554|515362|40383|2|16|22037.44|0.05|0.08|A|F|1994-08-22|1994-08-05|1994-08-26|DELIVER IN PERSON|AIR|slowly ironic requests? sile| +28554|682026|19566|3|48|48383.52|0.07|0.00|R|F|1994-07-20|1994-07-30|1994-08-13|TAKE BACK RETURN|MAIL|kly regular foxes. excuses are slyly up t| +28554|801310|13827|4|29|35126.83|0.01|0.07|A|F|1994-09-26|1994-08-09|1994-10-02|TAKE BACK RETURN|TRUCK| theodolites haggle blithe| +28554|616285|41310|5|26|31232.50|0.07|0.07|A|F|1994-10-07|1994-09-13|1994-10-28|COLLECT COD|FOB| ironic ideas. fluffily bol| +28554|889063|26615|6|22|23144.44|0.01|0.07|R|F|1994-07-03|1994-08-28|1994-07-21|NONE|RAIL|onic accounts nag final, permanent pinto | +28554|478056|15584|7|29|29986.87|0.08|0.08|R|F|1994-10-03|1994-08-19|1994-10-27|DELIVER IN PERSON|MAIL|posits boo| +28555|683073|45587|1|38|40129.52|0.07|0.08|A|F|1994-12-29|1995-02-19|1995-01-21|NONE|FOB|phins. blith| +28556|12567|37568|1|49|72498.44|0.06|0.02|R|F|1993-01-11|1993-02-11|1993-01-24|TAKE BACK RETURN|AIR| sleep care| +28556|209868|9869|2|40|71114.00|0.05|0.02|A|F|1992-12-09|1993-02-05|1992-12-21|TAKE BACK RETURN|SHIP|counts. even| +28557|893728|31280|1|27|46485.36|0.07|0.02|A|F|1992-09-23|1992-08-21|1992-10-01|COLLECT COD|REG AIR|haggle. carefully even accounts sle| +28557|886349|11384|2|8|10682.40|0.08|0.01|A|F|1992-09-07|1992-09-19|1992-10-04|NONE|SHIP|bold, ironic requests snoo| +28557|856678|6679|3|3|4903.89|0.06|0.01|R|F|1992-09-09|1992-09-23|1992-10-01|DELIVER IN PERSON|SHIP|en foxes. furiously bold packag| +28558|956488|31527|1|5|7722.20|0.02|0.00|N|O|1995-12-25|1995-11-14|1996-01-14|DELIVER IN PERSON|RAIL|nts boost carefully. carefully iron| +28558|685712|23252|2|25|42442.00|0.06|0.08|N|O|1996-01-07|1995-10-24|1996-01-16|COLLECT COD|RAIL|ular foxes cajo| +28558|751328|26359|3|6|8275.74|0.02|0.07|N|O|1995-10-08|1995-10-21|1995-10-20|NONE|AIR|es. blithely bo| +28559|788339|855|1|8|11418.40|0.07|0.07|N|O|1995-12-01|1996-02-09|1995-12-08|COLLECT COD|AIR|sual accounts: closely unus| +28559|596928|21951|2|9|18224.10|0.05|0.03|N|O|1995-11-19|1996-01-30|1995-12-16|NONE|RAIL|ent accounts| +28584|955287|5288|1|16|21475.84|0.08|0.02|A|F|1992-04-23|1992-04-21|1992-05-14|TAKE BACK RETURN|SHIP|ans cajole furiously; furiously unusual r| +28584|507368|7369|2|4|5501.36|0.04|0.05|R|F|1992-04-28|1992-04-26|1992-05-04|NONE|TRUCK|ross the quickly regular ideas solv| +28584|317510|17511|3|40|61100.00|0.05|0.01|A|F|1992-03-29|1992-04-11|1992-04-23|TAKE BACK RETURN|FOB|y regular accounts was slyly final reques| +28585|959539|22059|1|35|55947.15|0.06|0.06|A|F|1994-10-13|1994-09-26|1994-10-26|TAKE BACK RETURN|SHIP|riously final requests. blithel| +28585|961798|11799|2|46|85548.50|0.05|0.06|A|F|1994-11-19|1994-09-21|1994-12-01|COLLECT COD|TRUCK| theodolites during the even packa| +28585|930208|17763|3|42|52002.72|0.02|0.07|A|F|1994-09-07|1994-10-16|1994-09-18|NONE|FOB|ironic ideas. even instructions | +28585|989489|14528|4|43|67872.92|0.00|0.04|A|F|1994-11-18|1994-10-07|1994-11-26|DELIVER IN PERSON|AIR|rding to the even pin| +28585|335688|48195|5|15|25855.05|0.07|0.04|A|F|1994-10-20|1994-09-27|1994-10-24|TAKE BACK RETURN|SHIP| the even accounts nag special, expres| +28586|376748|39256|1|49|89411.77|0.09|0.01|N|O|1998-09-01|1998-07-20|1998-09-08|COLLECT COD|AIR|as. even, special inst| +28586|993352|5872|2|10|14453.10|0.09|0.05|N|O|1998-08-27|1998-07-08|1998-09-07|COLLECT COD|MAIL|. regular, final excuses cajole. iron| +28586|264343|26849|3|7|9151.31|0.06|0.06|N|O|1998-07-30|1998-08-02|1998-08-10|COLLECT COD|SHIP|. carefully final requests detect.| +28586|807020|7021|4|24|22247.52|0.10|0.00|N|O|1998-07-23|1998-07-22|1998-08-06|COLLECT COD|TRUCK|gular deposits. pending requests abo| +28586|579585|42097|5|11|18310.16|0.08|0.01|N|O|1998-05-12|1998-07-01|1998-06-01|NONE|RAIL|de of the quickly pending | +28586|82203|32204|6|33|39111.60|0.04|0.01|N|O|1998-07-22|1998-07-20|1998-07-23|TAKE BACK RETURN|AIR|serve among the | +28586|582337|7360|7|49|69546.19|0.08|0.06|N|O|1998-05-27|1998-07-27|1998-06-04|TAKE BACK RETURN|REG AIR|iously regular packages detect furiou| +28587|328407|40914|1|39|55980.21|0.07|0.01|N|O|1996-02-05|1995-12-26|1996-03-03|NONE|FOB|cross the regular excuses boost qu| +28587|529382|16913|2|3|4234.08|0.01|0.00|N|O|1995-10-24|1995-12-30|1995-11-21|TAKE BACK RETURN|TRUCK| cajole across the sil| +28587|311785|36798|3|3|5390.31|0.02|0.05|N|O|1995-12-11|1996-01-02|1995-12-25|NONE|SHIP|rs believe-- pending deposi| +28587|166521|29025|4|24|38100.48|0.09|0.07|N|O|1996-01-22|1995-12-23|1996-02-05|COLLECT COD|RAIL|ole regular instructions. slyly ironic wa| +28588|158282|20786|1|48|64333.44|0.02|0.06|N|O|1997-10-26|1997-10-02|1997-10-29|TAKE BACK RETURN|FOB|l, final deposits. final deposits after t| +28588|235552|23065|2|14|20825.56|0.10|0.07|N|O|1997-09-06|1997-10-21|1997-09-12|DELIVER IN PERSON|FOB|gle slyly after the carefully iro| +28588|913026|25545|3|5|5194.90|0.00|0.04|N|O|1997-12-27|1997-10-05|1998-01-23|TAKE BACK RETURN|TRUCK|heaves sleep according to the packages-- | +28588|215489|15490|4|7|9831.29|0.03|0.07|N|O|1997-10-02|1997-10-22|1997-11-01|DELIVER IN PERSON|FOB|sual asymptotes. final accounts use | +28588|721568|21569|5|43|68349.79|0.05|0.07|N|O|1997-10-30|1997-10-16|1997-11-18|DELIVER IN PERSON|TRUCK|xpress theodolites. ironic | +28589|473393|35903|1|33|45090.21|0.04|0.07|N|O|1996-12-13|1996-12-31|1996-12-19|NONE|TRUCK| integrate slyly according to the carefull| +28589|307628|7629|2|46|75238.06|0.00|0.08|N|O|1997-02-24|1997-01-22|1997-03-11|DELIVER IN PERSON|REG AIR|ve the regular instructions. fur| +28589|291491|29007|3|7|10377.36|0.06|0.00|N|O|1997-01-23|1997-01-05|1997-01-28|TAKE BACK RETURN|REG AIR| beans. carefully regular asympt| +28589|74706|12210|4|7|11764.90|0.10|0.02|N|O|1996-11-11|1997-01-23|1996-11-29|DELIVER IN PERSON|MAIL|ckages wake above th| +28589|573777|23778|5|1|1850.75|0.00|0.05|N|O|1996-11-09|1997-01-04|1996-12-02|COLLECT COD|AIR|o beans. slow ideas are across | +28590|900300|301|1|18|23404.68|0.01|0.05|N|O|1996-05-26|1996-04-23|1996-06-03|DELIVER IN PERSON|TRUCK| blithely pending ideas cajole carefully| +28590|334592|47099|2|46|74822.68|0.07|0.04|N|O|1996-05-27|1996-03-26|1996-06-18|TAKE BACK RETURN|FOB| the carefully regular requests| +28590|478123|28124|3|49|53953.90|0.07|0.02|N|O|1996-06-20|1996-05-07|1996-07-02|DELIVER IN PERSON|SHIP|lly regular packages. carefully ironic cour| +28591|728873|41388|1|15|28527.60|0.09|0.00|N|O|1995-11-08|1995-09-02|1995-12-04|TAKE BACK RETURN|TRUCK|y bold requests nag furiously upon| +28591|164596|39603|2|43|71405.37|0.06|0.01|N|O|1995-11-03|1995-10-06|1995-11-13|DELIVER IN PERSON|REG AIR| the idly ironic packages integr| +28591|363937|38952|3|2|4001.84|0.02|0.01|N|O|1995-10-08|1995-10-04|1995-10-20|NONE|RAIL| warthogs integrate above | +28591|673851|23852|4|26|47445.32|0.05|0.00|N|O|1995-10-02|1995-10-03|1995-10-03|NONE|AIR| furiously against the final fox| +28616|544322|31853|1|5|6831.50|0.01|0.00|N|O|1997-10-08|1997-11-16|1997-10-28|DELIVER IN PERSON|REG AIR|hes integrate slyly even requests. caref| +28616|405323|30340|2|1|1228.30|0.02|0.06|N|O|1997-12-05|1997-11-03|1997-12-10|TAKE BACK RETURN|MAIL|mptotes boost furiously. dolphins e| +28617|457320|7321|1|26|33209.80|0.04|0.00|N|O|1998-04-27|1998-06-07|1998-05-08|TAKE BACK RETURN|AIR| accounts. quickly careful packages cajole| +28617|165012|27516|2|18|19386.18|0.09|0.05|N|O|1998-04-25|1998-06-02|1998-05-04|DELIVER IN PERSON|TRUCK|s pinto beans haggle. final, cl| +28617|351984|39506|3|27|54971.19|0.01|0.00|N|O|1998-06-13|1998-05-01|1998-07-11|NONE|MAIL|ironic deposits| +28618|917406|42443|1|50|71168.00|0.08|0.07|A|F|1993-01-12|1993-01-17|1993-01-27|NONE|SHIP|ar accounts alongside of the| +28618|837472|25021|2|11|15503.73|0.06|0.00|A|F|1992-12-08|1992-12-02|1992-12-10|NONE|TRUCK|ily close asy| +28618|382381|7396|3|21|30730.77|0.10|0.07|R|F|1993-01-01|1992-12-25|1993-01-08|NONE|FOB|ickly unusual ideas. reques| +28618|672667|10207|4|41|67224.83|0.08|0.05|R|F|1992-12-20|1992-12-02|1992-12-27|DELIVER IN PERSON|TRUCK|t blithely. slyly pending p| +28618|499498|49499|5|29|43426.63|0.04|0.05|R|F|1992-12-20|1992-11-30|1993-01-01|NONE|SHIP|osits affix after the special foxes| +28618|57747|20249|6|50|85237.00|0.07|0.03|A|F|1992-10-25|1993-01-07|1992-10-29|COLLECT COD|AIR| accounts. b| +28618|542926|42927|7|3|5906.70|0.06|0.01|A|F|1993-02-14|1992-12-28|1993-02-27|DELIVER IN PERSON|REG AIR|elets x-ray carefully alongside of | +28619|950383|384|1|9|12900.06|0.04|0.01|A|F|1992-06-03|1992-07-15|1992-07-02|NONE|RAIL|regular theodo| +28619|83921|46423|2|22|41908.24|0.07|0.07|R|F|1992-08-16|1992-06-20|1992-09-09|COLLECT COD|REG AIR|ording to the pending, special excuses na| +28619|443991|31516|3|16|30959.52|0.07|0.03|A|F|1992-05-04|1992-06-21|1992-05-27|TAKE BACK RETURN|REG AIR|tly silent | +28619|148943|11446|4|19|37846.86|0.01|0.03|A|F|1992-08-02|1992-07-12|1992-08-29|COLLECT COD|REG AIR|onic, express dependencie| +28619|278280|3291|5|17|21390.59|0.01|0.08|A|F|1992-07-31|1992-06-15|1992-08-13|COLLECT COD|SHIP|deposits nag slyly. quickly final plat| +28619|42535|30036|6|35|51713.55|0.01|0.04|R|F|1992-05-07|1992-07-02|1992-05-29|NONE|SHIP|t the slyly final de| +28620|348653|36172|1|33|56154.12|0.10|0.03|R|F|1993-11-07|1993-09-23|1993-11-25|TAKE BACK RETURN|MAIL|ly regular asymptotes.| +28621|21867|9368|1|36|64398.96|0.10|0.03|R|F|1992-11-03|1992-10-12|1992-11-12|TAKE BACK RETURN|SHIP|ithe packag| +28621|516573|29084|2|22|34970.10|0.06|0.03|A|F|1992-08-12|1992-09-15|1992-08-24|DELIVER IN PERSON|AIR|ions solve carefully pending accounts. re| +28621|29733|17234|3|15|24940.95|0.05|0.05|R|F|1992-08-23|1992-09-17|1992-08-29|DELIVER IN PERSON|FOB|n ideas nag special, ironic pinto | +28621|712864|37893|4|7|13137.81|0.03|0.01|R|F|1992-08-05|1992-08-27|1992-08-27|TAKE BACK RETURN|MAIL|posits eat ev| +28621|93012|30516|5|29|29145.29|0.05|0.07|A|F|1992-11-02|1992-09-14|1992-11-24|DELIVER IN PERSON|FOB|uriously final packa| +28622|700975|26004|1|34|67181.96|0.10|0.02|A|F|1994-01-31|1994-01-11|1994-02-07|NONE|SHIP|een the silent, unusu| +28623|337237|12250|1|50|63711.00|0.06|0.02|R|F|1994-12-05|1994-10-18|1994-12-09|NONE|RAIL|aring, special ideas alongs| +28623|928879|3916|2|43|82036.69|0.08|0.08|A|F|1994-10-25|1994-10-25|1994-11-10|NONE|RAIL|s slyly final decoys. accounts wake careful| +28623|661679|36706|3|31|50859.84|0.02|0.02|A|F|1995-01-07|1994-12-09|1995-01-18|TAKE BACK RETURN|FOB|ve the final dolphins| +28623|837583|12616|4|35|53218.90|0.01|0.01|R|F|1994-11-30|1994-12-17|1994-12-17|TAKE BACK RETURN|REG AIR|ly final platelets. furiously| +28648|425473|37982|1|39|54539.55|0.07|0.04|R|F|1993-01-26|1993-01-24|1993-02-03|TAKE BACK RETURN|SHIP|rding to the iron| +28649|648285|23310|1|44|54263.00|0.08|0.02|R|F|1992-09-10|1992-07-06|1992-09-11|DELIVER IN PERSON|MAIL| alongside of the pending th| +28649|710522|23037|2|16|24519.84|0.02|0.07|A|F|1992-09-20|1992-07-21|1992-09-24|DELIVER IN PERSON|REG AIR| the regular, | +28649|735210|35211|3|49|61013.82|0.09|0.02|A|F|1992-09-23|1992-07-23|1992-10-23|TAKE BACK RETURN|AIR| the furiously pending instructions| +28649|671003|46030|4|37|36036.89|0.00|0.03|A|F|1992-07-21|1992-07-31|1992-08-06|DELIVER IN PERSON|RAIL| carefully final instructions. fluffily | +28649|531467|31468|5|31|46451.64|0.06|0.00|R|F|1992-08-20|1992-07-27|1992-09-10|COLLECT COD|MAIL| slyly bold ideas. slyly regular | +28650|350346|347|1|15|20944.95|0.07|0.06|A|F|1993-12-24|1993-12-24|1994-01-05|NONE|REG AIR| quickly against the unusual, | +28650|263925|13926|2|38|71778.58|0.08|0.08|A|F|1993-11-24|1994-01-03|1993-12-17|DELIVER IN PERSON|REG AIR|l foxes. iro| +28650|778260|15806|3|45|60220.35|0.08|0.07|R|F|1993-10-17|1993-11-28|1993-10-30|COLLECT COD|TRUCK|arefully among the fluf| +28650|202045|14550|4|46|43563.38|0.04|0.01|A|F|1993-10-29|1993-11-15|1993-11-12|NONE|TRUCK|lly regular pinto b| +28651|130610|30611|1|47|77108.67|0.02|0.02|N|O|1997-11-08|1998-01-18|1997-11-22|NONE|RAIL|c, pending accounts are above the e| +28652|60758|10759|1|1|1718.75|0.01|0.04|R|F|1992-09-09|1992-08-22|1992-10-07|DELIVER IN PERSON|AIR| final excuses.| +28652|149998|25003|2|25|51199.75|0.05|0.08|R|F|1992-09-23|1992-10-04|1992-09-29|COLLECT COD|FOB|ag quickly furiously ironic water| +28652|16057|3558|3|44|42814.20|0.04|0.07|R|F|1992-09-10|1992-10-03|1992-09-14|COLLECT COD|REG AIR|the packages. bol| +28652|864036|26554|4|34|33999.66|0.02|0.04|R|F|1992-11-07|1992-09-14|1992-11-26|NONE|FOB|ideas serve. | +28652|851938|14456|5|32|60476.48|0.05|0.04|A|F|1992-07-19|1992-10-03|1992-08-16|DELIVER IN PERSON|SHIP|uests. furiously bold Tir| +28652|511446|36467|6|21|30605.82|0.04|0.07|R|F|1992-10-27|1992-09-21|1992-10-30|NONE|RAIL| of the fluffily even dependen| +28652|861853|11854|7|24|43555.44|0.00|0.02|A|F|1992-07-15|1992-08-30|1992-07-18|COLLECT COD|SHIP|carefully express deposits. blithely unu| +28653|163061|571|1|36|40466.16|0.06|0.04|N|O|1996-01-30|1995-12-14|1996-02-20|DELIVER IN PERSON|RAIL|xpress depend| +28653|565148|2682|2|12|14557.44|0.01|0.08|N|O|1995-11-22|1996-01-10|1995-11-29|NONE|MAIL|unusual ideas caj| +28653|429780|4797|3|35|59841.60|0.02|0.07|N|O|1996-01-12|1996-01-10|1996-02-11|TAKE BACK RETURN|TRUCK|platelets sleep sl| +28654|861746|24264|1|13|22200.10|0.04|0.00|N|O|1995-07-29|1995-09-14|1995-08-05|NONE|REG AIR|ress pinto beans cajole unusual, eve| +28655|901874|14393|1|35|65654.05|0.06|0.01|N|O|1996-01-03|1996-01-18|1996-01-18|NONE|FOB|ly even ideas are. furiou| +28680|993671|18710|1|4|7058.52|0.06|0.08|A|F|1994-10-25|1994-12-09|1994-11-11|TAKE BACK RETURN|RAIL| into the fina| +28680|620765|20766|2|9|15171.57|0.04|0.01|R|F|1994-10-17|1994-10-31|1994-11-06|TAKE BACK RETURN|MAIL|ng accounts. fluffil| +28681|194031|44032|1|17|19125.51|0.05|0.08|A|F|1994-02-17|1994-01-04|1994-02-22|NONE|FOB|ests. regular deposi| +28682|630002|5027|1|17|15843.49|0.06|0.06|N|O|1996-06-30|1996-07-09|1996-07-24|COLLECT COD|RAIL|ar, regular | +28682|430282|42791|2|23|27881.98|0.01|0.07|N|O|1996-05-18|1996-07-16|1996-06-05|COLLECT COD|AIR|ges believe blithely after t| +28682|735709|35710|3|18|31404.06|0.01|0.04|N|O|1996-08-13|1996-08-03|1996-09-03|TAKE BACK RETURN|FOB|ts are around the packages. slyly pe| +28682|58076|45580|4|46|47567.22|0.00|0.04|N|O|1996-07-11|1996-08-04|1996-07-27|COLLECT COD|MAIL|unts play above the r| +28682|81366|18870|5|28|37726.08|0.04|0.01|N|O|1996-07-27|1996-08-06|1996-08-12|TAKE BACK RETURN|AIR|usual packages boo| +28682|507692|20203|6|21|35693.07|0.09|0.08|N|O|1996-05-26|1996-06-13|1996-06-23|NONE|FOB|ously alongside of the regular packages. i| +28683|630949|30950|1|42|78956.22|0.02|0.03|A|F|1992-03-06|1992-03-27|1992-03-14|TAKE BACK RETURN|TRUCK|. accounts wake. ir| +28683|343239|43240|2|16|20515.52|0.03|0.07|A|F|1992-01-11|1992-03-11|1992-02-06|TAKE BACK RETURN|MAIL|symptotes. sl| +28684|49822|49823|1|12|21261.84|0.10|0.02|R|F|1992-10-28|1992-11-14|1992-11-01|DELIVER IN PERSON|REG AIR|equests according to t| +28684|349947|24960|2|17|33947.81|0.01|0.05|R|F|1993-01-20|1992-11-11|1993-02-14|TAKE BACK RETURN|REG AIR|jole carefully blithely bol| +28684|549785|12296|3|29|53208.04|0.07|0.04|R|F|1992-11-18|1992-11-01|1992-12-18|TAKE BACK RETURN|AIR|ggle according to the slyly final re| +28684|219803|7316|4|38|65466.02|0.01|0.06|A|F|1992-12-27|1992-11-16|1993-01-26|NONE|FOB|furiously final packages across the sl| +28684|219003|44012|5|47|43333.53|0.02|0.01|R|F|1993-01-15|1992-11-20|1993-01-24|DELIVER IN PERSON|MAIL|ccounts are quickly quickly u| +28685|758980|34011|1|17|34662.15|0.06|0.05|N|O|1996-10-24|1996-12-03|1996-11-03|TAKE BACK RETURN|SHIP|row never! blithely even| +28685|165940|28444|2|26|52154.44|0.01|0.04|N|O|1996-12-05|1996-12-02|1996-12-13|NONE|MAIL|y about the final, expr| +28686|699060|24087|1|45|47656.35|0.04|0.04|N|O|1996-12-19|1996-11-02|1996-12-22|TAKE BACK RETURN|FOB|have to sleep. platelets are ste| +28686|96574|21577|2|3|4711.71|0.08|0.03|N|O|1996-10-18|1996-11-25|1996-11-13|DELIVER IN PERSON|FOB|cing requests was carefully beneath th| +28686|108295|33300|3|8|10426.32|0.02|0.04|N|O|1996-09-30|1996-10-19|1996-10-01|COLLECT COD|MAIL|ly between the blithely unusual excuses. bl| +28686|106297|43804|4|25|32582.25|0.08|0.05|N|O|1996-10-08|1996-12-16|1996-11-04|COLLECT COD|MAIL|al deposits detect furiously even, even | +28686|532379|44890|5|35|49397.25|0.08|0.06|N|O|1996-10-12|1996-11-30|1996-11-09|DELIVER IN PERSON|TRUCK|blate fluffily bold accounts. blithe, | +28686|678064|3091|6|32|33344.96|0.09|0.00|N|O|1997-01-15|1996-11-26|1997-01-18|NONE|MAIL|cingly even pinto beans snooze slyly. u| +28686|209067|9068|7|44|42946.20|0.09|0.05|N|O|1996-10-05|1996-12-06|1996-10-18|COLLECT COD|SHIP|s above the quickly exp| +28687|775235|37751|1|11|14412.20|0.04|0.03|A|F|1993-06-27|1993-07-02|1993-07-26|NONE|AIR|efully silent packages sleep slyly| +28687|372892|10414|2|50|98244.00|0.08|0.04|A|F|1993-04-17|1993-06-29|1993-04-19|TAKE BACK RETURN|AIR| ironic platelets af| +28687|183259|33260|3|24|32214.00|0.07|0.05|R|F|1993-06-04|1993-06-04|1993-06-05|COLLECT COD|AIR|lly. quickly even i| +28687|24570|12071|4|20|29891.40|0.10|0.00|R|F|1993-06-26|1993-05-06|1993-07-06|NONE|AIR|p across the blithely ironic asymptotes. ex| +28687|934371|46890|5|39|54807.87|0.05|0.07|A|F|1993-06-04|1993-06-21|1993-06-21|COLLECT COD|TRUCK|efully about the carefully even accoun| +28687|964978|14979|6|6|12257.58|0.06|0.06|R|F|1993-07-15|1993-05-26|1993-08-12|NONE|FOB|furiously even foxes. slyly regular d| +28712|530987|18518|1|31|62556.76|0.01|0.05|A|F|1993-11-13|1993-10-23|1993-12-07|NONE|SHIP|ly alongside o| +28712|284936|22452|2|25|48023.00|0.01|0.05|R|F|1993-08-18|1993-09-18|1993-09-02|COLLECT COD|TRUCK|cial requests g| +28712|918778|43815|3|25|44918.25|0.07|0.00|A|F|1993-10-08|1993-09-07|1993-10-23|TAKE BACK RETURN|MAIL|cajole blithely ironic pinto| +28712|888720|1238|4|31|52969.08|0.08|0.08|A|F|1993-11-06|1993-10-21|1993-11-30|COLLECT COD|FOB|c accounts sleep carefull| +28712|707471|32500|5|2|2956.88|0.02|0.04|R|F|1993-11-01|1993-10-29|1993-11-10|DELIVER IN PERSON|REG AIR|uriously-- furiously i| +28713|917881|30400|1|18|34179.12|0.08|0.08|A|F|1995-01-02|1995-01-27|1995-01-09|TAKE BACK RETURN|REG AIR| the requests.| +28713|822153|9702|2|6|6450.66|0.00|0.04|R|F|1994-12-03|1994-12-26|1994-12-26|TAKE BACK RETURN|SHIP|ndencies sleep boldly furiously exp| +28713|916903|41940|3|19|36477.34|0.07|0.02|A|F|1995-01-19|1995-01-06|1995-02-04|TAKE BACK RETURN|AIR|lithely enticing accoun| +28714|185095|10102|1|37|43663.33|0.02|0.06|R|F|1993-05-21|1993-07-20|1993-05-31|DELIVER IN PERSON|RAIL|round the regular f| +28714|876282|38800|2|50|62912.00|0.04|0.03|R|F|1993-09-16|1993-07-11|1993-10-13|COLLECT COD|SHIP|iously bold| +28714|657525|7526|3|19|28167.31|0.07|0.07|R|F|1993-06-06|1993-08-02|1993-07-06|DELIVER IN PERSON|RAIL|posits haggle carefully bold, unusual| +28714|12783|12784|4|41|69526.98|0.01|0.04|R|F|1993-06-22|1993-07-22|1993-07-04|DELIVER IN PERSON|TRUCK|al pinto beans hang| +28715|783832|8863|1|22|42147.60|0.10|0.00|N|O|1997-08-23|1997-08-19|1997-08-28|COLLECT COD|RAIL|quickly even instructions haggle al| +28715|858774|46326|2|17|29456.41|0.04|0.00|N|O|1997-08-22|1997-08-11|1997-09-05|NONE|SHIP|ously above the silent,| +28715|404503|42028|3|13|18297.24|0.10|0.04|N|O|1997-06-27|1997-08-05|1997-07-23|DELIVER IN PERSON|SHIP|, express packages. blithely pending | +28715|476242|38752|4|7|8527.54|0.08|0.04|N|O|1997-06-08|1997-07-09|1997-06-29|TAKE BACK RETURN|MAIL|special ideas. fluffily final packag| +28715|194215|6719|5|27|35348.67|0.04|0.06|N|O|1997-10-02|1997-07-12|1997-10-16|TAKE BACK RETURN|MAIL|gular accou| +28716|902617|40172|1|19|30771.83|0.08|0.08|A|F|1993-04-10|1993-01-25|1993-04-29|DELIVER IN PERSON|MAIL|the requests.| +28716|267359|29865|2|43|57032.62|0.02|0.06|R|F|1993-04-15|1993-03-06|1993-04-24|TAKE BACK RETURN|REG AIR| the boldly regular ideas| +28716|492121|4631|3|28|31166.80|0.07|0.02|R|F|1993-03-24|1993-02-05|1993-04-04|COLLECT COD|RAIL|cajole furiously| +28716|77007|39509|4|10|9840.00|0.06|0.04|R|F|1993-01-11|1993-03-17|1993-02-09|COLLECT COD|MAIL|nd carefully bold packages. unusual reques| +28716|247381|9886|5|8|10626.96|0.09|0.05|A|F|1993-03-25|1993-02-04|1993-04-21|NONE|AIR|into beans. requests above| +28716|732099|32100|6|38|42980.28|0.10|0.05|A|F|1993-03-10|1993-02-06|1993-03-25|DELIVER IN PERSON|MAIL|uffily carefully ironic ideas. regularly| +28717|136043|36044|1|30|32371.20|0.04|0.06|R|F|1995-05-17|1995-03-19|1995-06-04|NONE|AIR|nic asymptotes across | +28718|686183|36184|1|2|2338.30|0.05|0.02|N|O|1998-04-26|1998-02-23|1998-05-11|NONE|FOB|wake blithely regular | +28719|738877|26420|1|4|7663.36|0.06|0.03|A|F|1995-05-28|1995-04-09|1995-06-12|TAKE BACK RETURN|MAIL|y express theodolites cajole silent, | +28719|289330|14341|2|6|7915.92|0.08|0.05|A|F|1995-05-17|1995-03-23|1995-05-27|NONE|REG AIR| haggle slyly pending packages. carefully f| +28719|767404|42435|3|19|27956.03|0.06|0.08|A|F|1995-03-30|1995-04-05|1995-04-24|TAKE BACK RETURN|RAIL|ts haggle quickly furiously final pinto bea| +28719|752340|27371|4|6|8353.86|0.04|0.01|A|F|1995-03-07|1995-05-08|1995-04-03|TAKE BACK RETURN|AIR|jole. furiously pending accounts| +28719|565827|40850|5|20|37856.00|0.01|0.08|A|F|1995-04-27|1995-04-08|1995-05-14|COLLECT COD|AIR|structions haggle ironic deposits. regular | +28719|848156|35705|6|5|5520.55|0.10|0.05|R|F|1995-04-19|1995-04-09|1995-04-26|DELIVER IN PERSON|SHIP|haggle about the furiously pendin| +28719|941988|17025|7|25|50748.50|0.04|0.01|R|F|1995-05-06|1995-04-28|1995-05-16|DELIVER IN PERSON|REG AIR|ly slyly regul| +28744|992256|29814|1|35|47187.35|0.00|0.04|N|O|1997-02-20|1997-03-14|1997-03-15|COLLECT COD|TRUCK|gular deposits across the iro| +28744|846087|8604|2|50|51652.00|0.07|0.08|N|O|1997-02-08|1997-01-20|1997-03-04|TAKE BACK RETURN|MAIL|ccounts against the fluffily ev| +28744|169453|31957|3|26|39583.70|0.06|0.06|N|O|1997-03-10|1997-02-01|1997-03-16|DELIVER IN PERSON|FOB|. final, even| +28744|994150|6670|4|43|53496.73|0.03|0.02|N|O|1997-03-27|1997-01-31|1997-04-19|COLLECT COD|TRUCK|regular courts are instructions-| +28744|666390|3930|5|10|13563.60|0.05|0.04|N|O|1997-01-03|1997-02-09|1997-01-31|DELIVER IN PERSON|AIR|t the furiously eve| +28744|9268|21769|6|9|10595.34|0.09|0.06|N|O|1997-02-03|1997-01-21|1997-02-08|COLLECT COD|RAIL| unusual Tiresias engage | +28745|658412|33439|1|29|39741.02|0.00|0.04|N|O|1995-11-01|1995-11-03|1995-11-24|DELIVER IN PERSON|REG AIR|lar foxes use furiously. thi| +28745|920561|20562|2|17|26885.84|0.09|0.04|N|O|1995-10-20|1995-10-22|1995-10-30|TAKE BACK RETURN|MAIL|uickly regular foxes haggle slyly along| +28745|856177|31212|3|4|4532.52|0.02|0.07|N|O|1995-10-07|1995-10-26|1995-10-17|TAKE BACK RETURN|TRUCK|y ironic foxes are slyly carefully pending | +28745|765169|2715|4|26|32087.38|0.07|0.00|N|O|1995-09-22|1995-10-31|1995-10-01|NONE|TRUCK|eans haggle even, bold instructions. ex| +28745|187974|12981|5|25|51549.25|0.02|0.02|N|O|1995-09-22|1995-11-13|1995-09-29|COLLECT COD|RAIL|luffily express foxes wake furiously carefu| +28746|648093|10606|1|25|26026.50|0.07|0.08|N|O|1997-04-19|1997-02-26|1997-05-18|TAKE BACK RETURN|SHIP|ermanently regula| +28746|493039|18058|2|20|20640.20|0.09|0.03|N|O|1997-02-14|1997-02-27|1997-03-09|DELIVER IN PERSON|FOB|ged deposits cajole against the blit| +28746|498202|35730|3|25|30004.50|0.10|0.07|N|O|1997-02-23|1997-02-03|1997-02-24|COLLECT COD|AIR|ns haggle blithe| +28746|278206|15722|4|6|7105.14|0.09|0.00|N|O|1997-04-21|1997-03-09|1997-04-24|COLLECT COD|REG AIR|he fluffily ironic h| +28747|932264|7301|1|21|27220.62|0.03|0.00|A|F|1995-01-23|1994-12-20|1995-02-14|COLLECT COD|RAIL|nal, idle pinto bean| +28748|259395|46911|1|42|56883.96|0.02|0.04|N|O|1998-08-05|1998-09-18|1998-08-16|TAKE BACK RETURN|FOB|te. slyly silent depo| +28748|647683|47684|2|43|70117.95|0.06|0.06|N|O|1998-08-31|1998-08-12|1998-09-23|DELIVER IN PERSON|RAIL|bout the even request| +28748|602461|39998|3|39|53173.77|0.07|0.04|N|O|1998-10-17|1998-09-02|1998-11-07|COLLECT COD|RAIL|hely. slyly regular ideas wake quick| +28748|551850|39384|4|49|93189.67|0.09|0.06|N|O|1998-08-02|1998-08-10|1998-08-25|COLLECT COD|RAIL|ily special f| +28749|236771|36772|1|37|63187.12|0.10|0.01|A|F|1995-04-30|1995-05-29|1995-05-28|COLLECT COD|RAIL|jole along the fi| +28749|393765|6273|2|50|92937.50|0.07|0.02|N|F|1995-06-09|1995-05-05|1995-07-08|TAKE BACK RETURN|RAIL|. carefully regular accou| +28750|846309|21342|1|26|32636.76|0.07|0.01|R|F|1994-03-09|1994-01-03|1994-03-20|DELIVER IN PERSON|SHIP|among the furiously final grouches. sly| +28751|710338|35367|1|26|35055.80|0.05|0.01|N|O|1995-10-18|1995-09-16|1995-11-04|COLLECT COD|REG AIR|quickly re| +28751|642793|30330|2|19|32979.44|0.09|0.06|N|O|1995-08-30|1995-10-23|1995-09-02|COLLECT COD|FOB|osits. carefully ironic foxes dete| +28751|407849|32866|3|38|66759.16|0.07|0.04|N|O|1995-10-19|1995-10-13|1995-11-17|NONE|MAIL|uriously special dinos| +28751|711718|36747|4|42|72646.56|0.01|0.00|N|O|1995-11-07|1995-09-28|1995-12-05|DELIVER IN PERSON|SHIP|. regular instructions boost| +28751|844072|19105|5|35|35561.05|0.02|0.06|N|O|1995-11-18|1995-09-12|1995-11-20|COLLECT COD|REG AIR|. furiously even platelets use quickly am| +28751|312337|24844|6|45|60719.40|0.06|0.07|N|O|1995-09-23|1995-10-25|1995-10-22|DELIVER IN PERSON|FOB|eas wake ir| +28751|444971|44972|7|28|53646.60|0.05|0.05|N|O|1995-11-21|1995-10-24|1995-12-14|COLLECT COD|RAIL|ithely? slyly exp| +28776|618809|6346|1|2|3455.54|0.10|0.05|N|O|1998-02-18|1998-02-21|1998-03-18|NONE|RAIL|cajole furiously bold instructio| +28777|744655|19684|1|19|32292.78|0.09|0.06|R|F|1993-07-03|1993-06-26|1993-07-27|COLLECT COD|MAIL|ng platelets boost| +28778|751883|1884|1|48|92872.80|0.01|0.07|N|O|1997-03-01|1997-02-25|1997-03-28|COLLECT COD|AIR|regular no| +28778|887768|12803|2|9|15801.48|0.09|0.05|N|O|1997-04-11|1997-02-28|1997-04-12|COLLECT COD|MAIL|ding ideas nag?| +28778|701098|26127|3|15|16485.90|0.04|0.00|N|O|1997-01-17|1997-01-20|1997-02-06|DELIVER IN PERSON|FOB|express excuses promise slyly| +28779|873413|48448|1|17|23568.29|0.06|0.02|R|F|1995-01-09|1995-02-02|1995-01-31|TAKE BACK RETURN|REG AIR| pinto beans. final, fin| +28779|435906|48415|2|34|62623.92|0.03|0.03|R|F|1995-02-06|1995-03-09|1995-03-07|COLLECT COD|SHIP|ously regular dolphins detect | +28779|270322|20323|3|4|5169.24|0.07|0.08|R|F|1994-12-28|1995-02-24|1995-01-11|TAKE BACK RETURN|MAIL|ts sleep blithely blithe| +28779|291066|41067|4|27|28540.35|0.00|0.07|A|F|1995-01-31|1995-03-08|1995-02-26|COLLECT COD|MAIL|nts affix about the furiously | +28780|796136|8652|1|5|6160.50|0.03|0.07|A|F|1994-02-06|1994-03-03|1994-02-28|DELIVER IN PERSON|SHIP| regular, ironic dependencies slee| +28780|650914|38454|2|7|13054.16|0.03|0.06|A|F|1994-03-16|1994-02-25|1994-03-29|DELIVER IN PERSON|MAIL|nal deposits| +28780|901725|1726|3|34|58707.12|0.02|0.08|R|F|1993-12-12|1994-03-06|1993-12-22|NONE|TRUCK|g to the special, even| +28780|279071|29072|4|49|51452.94|0.07|0.01|R|F|1994-02-06|1994-02-24|1994-03-02|TAKE BACK RETURN|REG AIR|heodolites. pinto beans breach sly| +28780|342511|17524|5|35|54372.50|0.00|0.07|A|F|1994-01-19|1994-02-13|1994-02-06|TAKE BACK RETURN|TRUCK| are furiously| +28781|662964|37991|1|15|28903.95|0.04|0.06|N|O|1996-08-06|1996-06-07|1996-08-09|COLLECT COD|AIR|luffily about the final requests. care| +28781|423571|36080|2|6|8967.30|0.03|0.00|N|O|1996-05-29|1996-06-22|1996-06-22|COLLECT COD|MAIL|ully express excuse| +28781|944486|7005|3|10|15304.40|0.04|0.05|N|O|1996-08-01|1996-05-31|1996-08-28|DELIVER IN PERSON|FOB|oze after the ironic deposits. package| +28781|968996|31516|4|7|14454.65|0.05|0.03|N|O|1996-08-03|1996-06-26|1996-08-17|COLLECT COD|RAIL|egular accounts sleep | +28781|904330|29367|5|27|36025.83|0.04|0.06|N|O|1996-06-26|1996-07-09|1996-07-18|NONE|TRUCK|es sleep furiously through th| +28782|277017|2028|1|3|2982.00|0.08|0.02|N|O|1996-12-16|1997-01-03|1996-12-23|DELIVER IN PERSON|RAIL|after the dolphins. bli| +28782|824098|11647|2|17|17374.85|0.00|0.08|N|O|1997-03-20|1997-01-24|1997-04-12|TAKE BACK RETURN|TRUCK|gular packag| +28782|602740|15253|3|46|75564.66|0.02|0.05|N|O|1997-01-31|1996-12-27|1997-02-16|DELIVER IN PERSON|AIR|ogged foxes. quickly| +28782|246200|33713|4|11|12608.09|0.09|0.07|N|O|1997-03-19|1997-01-03|1997-03-26|COLLECT COD|TRUCK|ular requests integrate furiousl| +28782|872562|22563|5|5|7672.60|0.01|0.02|N|O|1996-12-14|1997-01-09|1996-12-21|TAKE BACK RETURN|MAIL|ns eat blit| +28783|418977|18978|1|26|49294.70|0.04|0.00|N|F|1995-06-09|1995-04-03|1995-06-27|TAKE BACK RETURN|AIR| doze furi| +28783|741235|28778|2|13|16590.60|0.10|0.01|A|F|1995-04-27|1995-05-04|1995-05-07|DELIVER IN PERSON|MAIL|ly pending accou| +28783|931706|19261|3|24|41703.84|0.03|0.02|A|F|1995-04-28|1995-05-30|1995-05-23|TAKE BACK RETURN|RAIL|fter the bravely express foxes. final the| +28808|19272|44273|1|34|40503.18|0.10|0.04|N|O|1998-05-24|1998-06-07|1998-06-10|DELIVER IN PERSON|FOB| furiously bold | +28808|887734|252|2|44|75754.36|0.00|0.03|N|O|1998-05-06|1998-06-21|1998-05-29|COLLECT COD|MAIL|ctions believe fluffily| +28809|18649|18650|1|4|6270.56|0.03|0.05|A|F|1993-05-04|1993-05-07|1993-06-02|COLLECT COD|FOB|nstructions use. pa| +28809|418963|31472|2|28|52694.32|0.01|0.02|A|F|1993-06-13|1993-06-09|1993-06-16|COLLECT COD|MAIL|s. final requests boost blithely. f| +28809|505161|17672|3|10|11661.40|0.02|0.02|A|F|1993-05-28|1993-05-14|1993-06-10|COLLECT COD|AIR|es. daring packages x-ray un| +28809|225865|38370|4|31|55516.35|0.04|0.08|A|F|1993-06-30|1993-06-24|1993-07-08|NONE|FOB|heodolites. quietly regular re| +28809|102177|2178|5|27|31837.59|0.09|0.02|R|F|1993-05-16|1993-05-17|1993-06-04|TAKE BACK RETURN|MAIL|c decoys. slyly regular a| +28809|287113|37114|6|14|15401.40|0.01|0.04|R|F|1993-05-09|1993-06-27|1993-06-08|NONE|RAIL|sts. regular accounts integrate fur| +28810|822751|47784|1|49|82011.79|0.08|0.03|A|F|1992-11-16|1992-11-23|1992-11-23|DELIVER IN PERSON|AIR|, unusual theodolite| +28811|199690|37200|1|33|59059.77|0.04|0.01|R|F|1993-07-27|1993-06-03|1993-08-25|TAKE BACK RETURN|SHIP|ending deposits haggle quickly about the pa| +28811|185507|35508|2|28|44590.00|0.01|0.08|R|F|1993-05-01|1993-07-11|1993-05-21|TAKE BACK RETURN|REG AIR|e. regular pac| +28811|802204|39753|3|41|45352.56|0.08|0.03|A|F|1993-06-30|1993-05-21|1993-07-20|DELIVER IN PERSON|MAIL|le blithely sly deposits. deposits | +28812|270648|20649|1|5|8093.15|0.03|0.07|N|O|1997-09-27|1997-08-13|1997-10-12|DELIVER IN PERSON|SHIP|y regular packages. careful| +28813|956946|6947|1|3|6008.70|0.01|0.00|A|F|1993-02-07|1993-03-02|1993-02-20|COLLECT COD|TRUCK|ic deposits. even p| +28814|217832|42841|1|7|12248.74|0.07|0.05|A|F|1994-11-25|1994-11-18|1994-11-28|TAKE BACK RETURN|SHIP|furiously sp| +28814|96682|34186|2|42|70504.56|0.09|0.03|R|F|1995-01-13|1994-12-05|1995-01-18|COLLECT COD|MAIL|furiously beside the blithely regul| +28814|918620|18621|3|14|22940.12|0.06|0.05|R|F|1995-01-31|1994-12-09|1995-02-15|COLLECT COD|SHIP|cajole furiously slyly regular s| +28814|243611|31124|4|25|38865.00|0.07|0.00|R|F|1994-10-21|1995-01-13|1994-11-11|DELIVER IN PERSON|MAIL|egular grouches boost q| +28814|355061|5062|5|50|55802.50|0.00|0.01|R|F|1994-10-17|1994-12-02|1994-11-06|DELIVER IN PERSON|REG AIR|ndencies. slyly furious accounts above the| +28814|498729|48730|6|24|41464.80|0.07|0.08|A|F|1994-11-19|1995-01-10|1994-12-16|TAKE BACK RETURN|SHIP|ess carefully regular, bol| +28815|443584|31109|1|20|30551.20|0.05|0.04|N|O|1997-09-14|1997-06-29|1997-10-12|DELIVER IN PERSON|AIR|. furiously special packages boost along| +28815|310113|47632|2|43|48293.30|0.02|0.07|N|O|1997-06-01|1997-07-06|1997-06-21|COLLECT COD|REG AIR| to the fluffily f| +28815|59782|34785|3|24|41802.72|0.05|0.01|N|O|1997-09-13|1997-07-16|1997-10-10|DELIVER IN PERSON|FOB|s wake. ironic, regular de| +28815|755500|43046|4|8|12443.76|0.01|0.03|N|O|1997-08-27|1997-08-20|1997-08-30|TAKE BACK RETURN|MAIL|ng the dependencies n| +28815|682824|7851|5|22|39749.38|0.06|0.07|N|O|1997-09-14|1997-08-27|1997-10-14|NONE|SHIP|r dependencies affix furiously. sly| +28815|214025|26530|6|4|3756.04|0.02|0.01|N|O|1997-06-03|1997-07-06|1997-06-27|DELIVER IN PERSON|REG AIR|requests. | +28840|956161|31200|1|44|53553.28|0.07|0.05|N|O|1998-09-08|1998-08-28|1998-09-19|NONE|SHIP| regular ideas cajo| +28840|194395|31905|2|40|59575.60|0.00|0.08|N|O|1998-08-16|1998-08-14|1998-09-02|NONE|MAIL|ly above the quietly re| +28840|183042|33043|3|13|14625.52|0.08|0.07|N|O|1998-07-25|1998-07-20|1998-07-26|NONE|MAIL|le carefully carefully even dep| +28840|370140|32648|4|42|50825.46|0.04|0.08|N|O|1998-06-29|1998-08-28|1998-07-21|TAKE BACK RETURN|TRUCK|y silent theodolites detec| +28840|942651|42652|5|6|10161.66|0.01|0.04|N|O|1998-08-31|1998-09-05|1998-09-04|NONE|MAIL|es. final ideas h| +28840|127043|14550|6|27|28891.08|0.05|0.08|N|O|1998-08-10|1998-09-06|1998-08-17|DELIVER IN PERSON|RAIL|against the theodolites; slyly even account| +28841|262684|200|1|47|77393.49|0.07|0.06|A|F|1995-04-09|1995-05-14|1995-05-04|DELIVER IN PERSON|REG AIR|ly fluffy requests use b| +28841|920391|7946|2|28|39517.80|0.00|0.02|R|F|1995-05-19|1995-05-03|1995-06-05|TAKE BACK RETURN|AIR|ncies. instructions wake slyly pending | +28841|999772|24811|3|27|50536.71|0.09|0.04|R|F|1995-05-10|1995-06-28|1995-05-26|DELIVER IN PERSON|SHIP|g to the blithely iron| +28841|155555|30562|4|13|20937.15|0.04|0.05|N|O|1995-07-14|1995-06-01|1995-08-01|TAKE BACK RETURN|MAIL|nto beans. furiously unusual | +28842|675941|25942|1|37|70925.67|0.00|0.07|R|F|1994-01-23|1993-11-18|1994-02-01|COLLECT COD|AIR|slyly even accounts ca| +28842|525370|37881|2|15|20930.25|0.03|0.04|R|F|1994-01-04|1993-12-02|1994-01-20|NONE|MAIL|ven instructions integr| +28842|884757|9792|3|18|31350.78|0.00|0.05|R|F|1994-01-29|1993-11-07|1994-01-30|DELIVER IN PERSON|TRUCK|n deposits. ironic requests across the e| +28842|110375|47882|4|8|11082.96|0.03|0.03|R|F|1994-01-15|1993-11-19|1994-02-11|COLLECT COD|FOB| boost. furiously express somas cajole| +28842|57415|7416|5|26|35682.66|0.05|0.07|R|F|1993-10-14|1993-12-17|1993-10-23|COLLECT COD|SHIP|regular att| +28842|959735|34774|6|11|19741.59|0.01|0.08|A|F|1993-12-01|1993-12-28|1993-12-07|COLLECT COD|RAIL|permanent deposits. | +28843|847962|47963|1|50|95496.00|0.00|0.06|R|F|1992-12-31|1993-02-02|1993-01-25|COLLECT COD|MAIL|ites about the blithely ironic packa| +28843|695579|33119|2|24|37788.96|0.08|0.05|A|F|1993-02-17|1993-03-03|1993-03-15|DELIVER IN PERSON|AIR|. instruction| +28843|591584|16607|3|14|23457.84|0.06|0.08|A|F|1993-04-27|1993-02-28|1993-05-04|TAKE BACK RETURN|FOB|bove the blithely regular r| +28843|736019|48534|4|13|13714.74|0.01|0.05|A|F|1993-04-03|1993-02-21|1993-04-27|DELIVER IN PERSON|AIR|ounts: exp| +28843|260131|10132|5|28|30551.36|0.06|0.02|R|F|1993-03-06|1993-02-03|1993-03-12|NONE|RAIL|arefully furiously s| +28843|13002|13003|6|2|1830.00|0.07|0.02|A|F|1993-01-31|1993-02-26|1993-02-11|TAKE BACK RETURN|RAIL|ost fluffily blithely final deposit| +28844|714284|14285|1|47|61017.75|0.03|0.04|A|F|1992-10-06|1992-11-08|1992-10-16|NONE|TRUCK|ets. furiously special excuses run furi| +28844|956613|6614|2|34|56765.38|0.10|0.05|A|F|1992-08-19|1992-10-05|1992-09-16|COLLECT COD|MAIL|nic theodolite| +28844|792085|42086|3|20|23541.00|0.04|0.04|R|F|1992-11-22|1992-09-25|1992-12-12|COLLECT COD|RAIL|y final packages dazzle. fur| +28844|568553|43576|4|5|8107.65|0.07|0.06|R|F|1992-11-04|1992-11-13|1992-11-24|COLLECT COD|MAIL|g slyly. quickly| +28845|626661|1686|1|7|11113.41|0.07|0.05|N|O|1996-08-09|1996-09-21|1996-09-03|DELIVER IN PERSON|SHIP| accounts. furiously special | +28846|627812|27813|1|36|62632.08|0.09|0.07|N|O|1998-03-11|1998-01-13|1998-03-14|NONE|FOB|ts boost blithely ironic packages. slyly| +28846|623971|23972|2|18|34108.92|0.00|0.03|N|O|1997-12-13|1997-12-31|1997-12-31|DELIVER IN PERSON|RAIL|nt theodolites affix slyly blithely steal| +28846|64900|2404|3|48|89515.20|0.07|0.01|N|O|1998-02-01|1998-01-19|1998-02-15|NONE|REG AIR|s. frays above| +28847|434183|9200|1|11|12288.76|0.04|0.04|N|O|1995-10-16|1995-09-12|1995-11-15|DELIVER IN PERSON|TRUCK| regular packages. blithely even packages n| +28847|299733|49734|2|12|20792.64|0.03|0.03|N|O|1995-08-27|1995-08-17|1995-09-26|COLLECT COD|FOB|gle above the ironic, regular instruc| +28847|596057|21080|3|37|42662.11|0.01|0.06|N|O|1995-08-20|1995-09-18|1995-08-26|COLLECT COD|AIR|could have to sleep enticingly e| +28872|288679|38680|1|23|38356.18|0.07|0.00|R|F|1993-02-02|1992-12-21|1993-02-23|TAKE BACK RETURN|TRUCK|se. deposits haggle | +28873|86627|49129|1|40|64544.80|0.03|0.05|R|F|1994-10-29|1994-09-30|1994-11-18|DELIVER IN PERSON|MAIL|blithely iro| +28873|934661|47180|2|26|44086.12|0.03|0.06|A|F|1994-11-20|1994-10-28|1994-11-21|NONE|MAIL|grate carefully| +28874|21942|46943|1|40|74557.60|0.09|0.02|N|O|1998-04-02|1998-05-07|1998-04-27|NONE|SHIP|pinto beans are blithely. dependencies | +28874|777213|14759|2|21|27093.78|0.05|0.06|N|O|1998-07-06|1998-05-14|1998-08-01|DELIVER IN PERSON|AIR| blithely express platelets again| +28874|610496|35521|3|16|22503.36|0.05|0.01|N|O|1998-05-20|1998-05-06|1998-05-26|TAKE BACK RETURN|RAIL| blithely above the regular, express reques| +28874|595742|20765|4|46|84535.12|0.07|0.05|N|O|1998-05-10|1998-06-22|1998-05-30|TAKE BACK RETURN|TRUCK|ly regular deposits cajole f| +28874|621661|21662|5|20|31652.60|0.03|0.07|N|O|1998-06-03|1998-05-03|1998-07-03|COLLECT COD|AIR| carefully ironic accounts sleep quickly | +28874|254733|42249|6|20|33754.40|0.03|0.01|N|O|1998-04-07|1998-05-08|1998-04-20|TAKE BACK RETURN|REG AIR|structions. special foxes use caref| +28874|293596|18607|7|50|79479.00|0.00|0.00|N|O|1998-06-15|1998-06-06|1998-07-06|NONE|AIR|egular theodolites haggle | +28875|459576|34595|1|2|3071.10|0.02|0.03|R|F|1992-04-24|1992-04-19|1992-05-07|COLLECT COD|MAIL|ly quickly ex| +28875|88428|930|2|17|24079.14|0.05|0.03|R|F|1992-02-29|1992-04-17|1992-03-14|DELIVER IN PERSON|MAIL|g to the regularly b| +28875|200522|13027|3|22|31295.22|0.01|0.08|R|F|1992-05-24|1992-04-19|1992-06-01|DELIVER IN PERSON|FOB|e the blithely express | +28876|74512|12016|1|12|17838.12|0.06|0.06|N|O|1996-06-07|1996-03-26|1996-06-27|NONE|TRUCK|s the fina| +28876|315205|2724|2|3|3660.57|0.08|0.02|N|O|1996-05-28|1996-05-09|1996-06-23|COLLECT COD|TRUCK| pinto beans. blithe, express acco| +28876|650021|25048|3|24|23303.76|0.01|0.08|N|O|1996-04-07|1996-04-26|1996-04-19|COLLECT COD|TRUCK|ove the slyly ironi| +28876|895773|8291|4|30|53061.90|0.10|0.06|N|O|1996-06-03|1996-05-01|1996-06-10|NONE|TRUCK|nt, pending | +28876|248673|36186|5|36|58379.76|0.05|0.07|N|O|1996-03-23|1996-04-29|1996-04-06|TAKE BACK RETURN|MAIL|ress packages integrate alongside of th| +28876|433157|8174|6|14|15261.82|0.06|0.06|N|O|1996-03-26|1996-04-04|1996-03-27|DELIVER IN PERSON|TRUCK|quests. unusual deposits haggle enticin| +28877|396295|8803|1|40|55651.20|0.00|0.03|R|F|1995-02-21|1994-12-24|1995-03-16|DELIVER IN PERSON|TRUCK|ounts. carefully quick f| +28877|515384|27895|2|44|61571.84|0.01|0.04|R|F|1995-02-04|1995-01-03|1995-02-11|DELIVER IN PERSON|MAIL| pending pinto b| +28877|52315|27318|3|5|6336.55|0.10|0.02|R|F|1994-11-13|1995-01-19|1994-11-30|COLLECT COD|AIR|-ray along the blithely express instr| +28877|248681|36194|4|13|21185.71|0.04|0.00|A|F|1994-12-11|1995-01-18|1994-12-28|NONE|SHIP|s. furiously regular| +28877|570894|45917|5|44|86454.28|0.01|0.04|A|F|1994-12-13|1994-12-03|1994-12-26|DELIVER IN PERSON|SHIP|across the furiou| +28877|2755|15256|6|50|82887.50|0.04|0.00|A|F|1995-01-11|1994-11-28|1995-01-24|COLLECT COD|MAIL|e carefully special platel| +28878|299056|24067|1|27|28486.08|0.06|0.03|N|O|1996-12-19|1996-12-14|1997-01-01|NONE|MAIL|onic instructio| +28878|222926|10439|2|12|22186.92|0.10|0.07|N|O|1997-01-09|1997-01-15|1997-01-13|DELIVER IN PERSON|FOB|accounts are express, final depos| +28878|711401|11402|3|12|16948.44|0.03|0.03|N|O|1996-11-18|1997-01-02|1996-11-22|DELIVER IN PERSON|AIR| packages. sentiments wake about the pi| +28878|509095|34116|4|38|41954.66|0.03|0.02|N|O|1997-01-23|1997-01-27|1997-02-21|COLLECT COD|TRUCK|ts. unusual requests acr| +28878|342907|17920|5|9|17549.01|0.06|0.02|N|O|1997-02-20|1996-12-21|1997-03-08|NONE|SHIP|ding to the unusual deposits. furiousl| +28879|475988|13516|1|35|68738.60|0.03|0.07|N|O|1996-05-04|1996-06-06|1996-05-28|TAKE BACK RETURN|TRUCK|gle furiously| +28879|920133|32652|2|46|53042.14|0.06|0.05|N|O|1996-06-18|1996-06-15|1996-07-06|COLLECT COD|SHIP| to boost sl| +28879|668221|43248|3|2|2378.38|0.09|0.01|N|O|1996-06-11|1996-06-28|1996-06-19|DELIVER IN PERSON|SHIP|ress frays: final, | +28904|400512|25529|1|17|24012.33|0.06|0.04|N|O|1997-10-15|1997-10-13|1997-10-27|DELIVER IN PERSON|TRUCK|y special foxes integrate slyly across| +28904|400258|259|2|37|42854.51|0.02|0.02|N|O|1997-11-26|1997-10-08|1997-12-25|DELIVER IN PERSON|TRUCK| the slyly even acc| +28904|134018|34019|3|17|17884.17|0.06|0.03|N|O|1997-11-27|1997-09-18|1997-12-15|COLLECT COD|FOB| regular packages. fluffily bu| +28905|91364|16367|1|39|52859.04|0.04|0.02|N|O|1998-04-16|1998-03-09|1998-04-28|DELIVER IN PERSON|AIR|oxes. caref| +28905|553575|41109|2|36|58627.80|0.10|0.07|N|O|1998-03-14|1998-04-08|1998-03-18|TAKE BACK RETURN|FOB|ironic dependencies cajole furious| +28906|476876|14404|1|29|53732.65|0.10|0.03|R|F|1994-05-13|1994-07-09|1994-05-25|NONE|MAIL|fully regular frays hang. even, ironic de| +28906|839134|39135|2|22|23607.98|0.05|0.03|A|F|1994-08-30|1994-06-14|1994-09-10|TAKE BACK RETURN|AIR|ding deposits cajole slyly around the care| +28906|313793|38806|3|7|12647.46|0.01|0.02|A|F|1994-06-06|1994-06-23|1994-06-13|DELIVER IN PERSON|FOB|iously pending hockey| +28906|911704|49259|4|9|15440.94|0.09|0.00|R|F|1994-05-31|1994-08-03|1994-06-05|NONE|REG AIR|ording to the evenly even pa| +28906|999800|12320|5|40|75990.40|0.07|0.00|A|F|1994-07-10|1994-07-19|1994-07-15|DELIVER IN PERSON|FOB|sleep blithely. furiously f| +28906|633816|8841|6|42|73490.76|0.01|0.06|R|F|1994-06-28|1994-07-07|1994-07-14|DELIVER IN PERSON|REG AIR|ar requests. fluffily regular foxes across | +28907|106082|43589|1|16|17409.28|0.08|0.03|N|O|1995-08-05|1995-06-09|1995-08-27|NONE|REG AIR|ounts lose theodolites-- furiously fin| +28907|909059|21578|2|36|38448.36|0.08|0.04|A|F|1995-05-26|1995-07-05|1995-05-29|TAKE BACK RETURN|FOB|ing requests wak| +28907|549052|11563|3|15|16515.45|0.05|0.06|A|F|1995-05-14|1995-06-29|1995-06-05|TAKE BACK RETURN|TRUCK|es detect blithely after the carefully | +28907|902287|2288|4|48|61883.52|0.04|0.04|R|F|1995-05-19|1995-07-05|1995-05-28|TAKE BACK RETURN|AIR|ently silent deposits. fluffily | +28907|734210|9239|5|25|31104.50|0.07|0.07|N|O|1995-08-05|1995-06-28|1995-08-27|DELIVER IN PERSON|TRUCK|ly special ideas are blithely am| +28907|854358|4359|6|46|60366.26|0.08|0.06|N|O|1995-06-22|1995-07-04|1995-07-11|NONE|RAIL|slyly regular platel| +28908|107913|32918|1|37|71073.67|0.04|0.01|A|F|1993-01-03|1992-12-21|1993-01-11|DELIVER IN PERSON|AIR|uests about the theodolites us| +28908|688455|969|2|3|4330.26|0.05|0.00|R|F|1993-02-19|1992-12-03|1993-03-03|DELIVER IN PERSON|REG AIR|ly even accounts sleep furiously | +28908|863043|595|3|3|3018.00|0.08|0.00|A|F|1992-11-23|1993-01-18|1992-12-18|COLLECT COD|MAIL|ly even pinto beans nag blithely-- bold som| +28908|156915|31922|4|17|33522.47|0.06|0.04|A|F|1993-02-05|1992-12-26|1993-02-15|COLLECT COD|AIR|xes cajole alo| +28908|258686|33697|5|1|1644.67|0.05|0.06|A|F|1993-01-30|1993-01-04|1993-02-12|NONE|TRUCK|mptotes after the furiously| +28908|723075|10618|6|24|26352.96|0.10|0.04|A|F|1993-01-14|1993-01-23|1993-01-31|COLLECT COD|FOB|uriously even| +28908|709245|46788|7|16|20067.36|0.01|0.06|R|F|1993-02-04|1993-01-23|1993-02-06|TAKE BACK RETURN|TRUCK|fully quickly final packages. brave| +28909|280714|5725|1|16|27115.20|0.09|0.03|R|F|1995-05-30|1995-04-30|1995-06-16|NONE|TRUCK|st the pending frays. p| +28909|948526|48527|2|17|26766.16|0.05|0.01|N|O|1995-07-16|1995-05-08|1995-07-20|TAKE BACK RETURN|RAIL|quickly unusual | +28910|820126|32643|1|41|42889.28|0.05|0.07|R|F|1994-05-17|1994-04-08|1994-05-29|TAKE BACK RETURN|TRUCK|ackages haggle ab| +28910|851058|13576|2|8|8072.08|0.02|0.08|R|F|1994-02-24|1994-04-14|1994-02-26|COLLECT COD|AIR|cial, express deposi| +28910|717330|42359|3|29|39071.70|0.06|0.03|A|F|1994-05-07|1994-03-31|1994-05-09|DELIVER IN PERSON|MAIL|lent hockey player| +28910|164767|14768|4|26|47625.76|0.05|0.06|R|F|1994-02-21|1994-05-16|1994-03-11|COLLECT COD|FOB|al packages. furiously final a| +28910|222964|35469|5|2|3773.90|0.06|0.04|A|F|1994-04-27|1994-04-21|1994-05-20|COLLECT COD|TRUCK| blithely quickly bold requests| +28910|348624|36143|6|2|3345.22|0.06|0.01|A|F|1994-02-23|1994-04-26|1994-03-02|NONE|TRUCK|accounts use acro| +28911|728240|40755|1|5|6341.05|0.07|0.00|N|O|1997-03-16|1997-05-07|1997-03-25|NONE|RAIL| integrate ironic war| +28911|525547|568|2|41|64473.32|0.04|0.06|N|O|1997-06-04|1997-06-01|1997-07-01|NONE|RAIL|ial theodolites | +28936|798709|23740|1|43|77729.81|0.05|0.02|A|F|1992-04-20|1992-07-02|1992-04-27|TAKE BACK RETURN|FOB| accounts detect ac| +28936|892183|42184|2|35|41129.90|0.03|0.06|R|F|1992-08-03|1992-05-08|1992-08-16|DELIVER IN PERSON|AIR|latelets. slyly regul| +28936|915012|40049|3|1|1026.97|0.02|0.02|A|F|1992-06-25|1992-05-16|1992-07-04|NONE|RAIL|sual requests. quick| +28936|598993|11505|4|32|66943.04|0.00|0.08|A|F|1992-08-02|1992-06-05|1992-08-29|DELIVER IN PERSON|TRUCK|ely regular ideas. express deposits mainta| +28936|261498|11499|5|27|39405.96|0.04|0.05|R|F|1992-06-17|1992-06-11|1992-07-04|COLLECT COD|FOB|ages impre| +28936|980344|17902|6|27|38456.10|0.03|0.02|R|F|1992-06-03|1992-06-13|1992-06-24|TAKE BACK RETURN|MAIL|fily unusual pinto beans integrate | +28937|648850|36387|1|35|62958.70|0.08|0.01|R|F|1992-02-22|1992-04-01|1992-03-13|DELIVER IN PERSON|FOB|yly special saute| +28937|220257|20258|2|13|15304.12|0.00|0.02|R|F|1992-05-08|1992-04-03|1992-05-25|DELIVER IN PERSON|RAIL|ly across the slyly| +28937|854667|4668|3|27|43783.74|0.07|0.01|R|F|1992-02-26|1992-03-22|1992-03-09|TAKE BACK RETURN|TRUCK|s integrate along | +28937|386343|11358|4|36|51455.88|0.01|0.01|R|F|1992-04-21|1992-02-21|1992-04-29|COLLECT COD|REG AIR| along the waters. slyly express accou| +28937|261615|11616|5|43|67793.80|0.10|0.06|A|F|1992-05-18|1992-03-06|1992-06-08|DELIVER IN PERSON|FOB|ly final packages cajole slyly above the | +28937|963139|25659|6|13|15627.17|0.02|0.07|A|F|1992-04-03|1992-04-20|1992-04-12|COLLECT COD|AIR|nticing dolphins cajole furious| +28937|464078|1606|7|48|50018.40|0.03|0.05|R|F|1992-02-28|1992-02-28|1992-03-17|TAKE BACK RETURN|TRUCK|ackages haggle carefully even packages. e| +28938|746018|46019|1|10|10639.80|0.05|0.06|A|F|1994-02-15|1993-12-30|1994-02-21|TAKE BACK RETURN|SHIP|express theodo| +28938|313880|26387|2|11|20832.57|0.06|0.02|A|F|1993-12-01|1994-01-31|1993-12-02|COLLECT COD|TRUCK|slyly even depths are fluffily within| +28939|321819|46832|1|15|27612.00|0.10|0.00|N|O|1997-03-12|1997-03-29|1997-04-06|COLLECT COD|MAIL|nts. carefully pe| +28939|798208|23239|2|9|11755.53|0.03|0.07|N|O|1997-01-27|1997-02-25|1997-02-15|COLLECT COD|MAIL| the blithely even deposits| +28939|467762|30272|3|23|39784.02|0.02|0.02|N|O|1997-03-16|1997-02-21|1997-04-11|DELIVER IN PERSON|AIR|l, unusual excuses aff| +28939|666788|16789|4|14|24566.50|0.09|0.02|N|O|1997-05-02|1997-03-17|1997-05-12|NONE|FOB| the furiously special reques| +28940|675976|38490|1|9|17567.46|0.07|0.03|A|F|1994-11-07|1994-12-15|1994-12-01|DELIVER IN PERSON|REG AIR|lithely. furiously quick account| +28941|901042|26079|1|26|27118.00|0.05|0.06|A|F|1994-12-22|1994-11-08|1994-12-25|COLLECT COD|REG AIR|ites cajol| +28942|862805|12806|1|44|77781.44|0.04|0.01|N|O|1998-07-14|1998-09-29|1998-07-20|COLLECT COD|AIR| furiously carefully even pin| +28942|156623|6624|2|21|35272.02|0.02|0.08|N|O|1998-10-17|1998-08-12|1998-10-26|NONE|AIR| even instructions. pe| +28942|349032|36551|3|31|33511.62|0.04|0.04|N|O|1998-08-18|1998-09-07|1998-09-03|COLLECT COD|RAIL|theodolites use among the slowly silent pla| +28942|174741|24742|4|33|59919.42|0.07|0.07|N|O|1998-08-17|1998-09-21|1998-09-09|COLLECT COD|AIR|furiously even foxes. r| +28943|946600|21637|1|14|23051.84|0.03|0.01|N|O|1995-12-29|1995-12-29|1996-01-10|NONE|AIR|r deposits. final, ironic deposit| +28943|496173|33701|2|17|19875.55|0.00|0.02|N|O|1995-11-22|1995-11-24|1995-12-22|DELIVER IN PERSON|AIR| foxes. slyly final accounts print blit| +28943|170583|45590|3|45|74411.10|0.05|0.00|N|O|1996-01-31|1996-01-02|1996-02-24|NONE|MAIL|lithely quic| +28943|982330|44850|4|28|39544.12|0.00|0.06|N|O|1995-12-12|1995-12-11|1995-12-15|NONE|MAIL|bold accounts use regular packages. | +28968|874477|49512|1|30|43542.90|0.01|0.01|R|F|1994-05-26|1994-04-23|1994-06-23|DELIVER IN PERSON|SHIP| furiously| +28968|319246|6765|2|16|20243.68|0.06|0.05|R|F|1994-07-04|1994-05-04|1994-07-05|DELIVER IN PERSON|AIR|ptotes are furiously courts. furiou| +28968|563145|13146|3|30|36243.60|0.03|0.08|A|F|1994-04-17|1994-06-12|1994-05-03|COLLECT COD|RAIL|furiously final | +28968|763941|38972|4|28|56137.48|0.10|0.06|A|F|1994-04-08|1994-05-14|1994-04-12|NONE|AIR|y unusual instructions grow c| +28969|261677|24183|1|37|60630.42|0.02|0.08|N|O|1998-04-17|1998-04-28|1998-04-23|TAKE BACK RETURN|AIR|the blithely u| +28969|996470|8990|2|32|50125.76|0.03|0.06|N|O|1998-04-29|1998-03-30|1998-05-14|TAKE BACK RETURN|RAIL|e the regular ideas. express instructi| +28969|661322|11323|3|34|43631.86|0.01|0.02|N|O|1998-03-16|1998-04-22|1998-04-14|TAKE BACK RETURN|AIR|as? furiously ironic platelets use | +28969|827918|40435|4|14|25842.18|0.05|0.05|N|O|1998-05-08|1998-05-26|1998-06-01|NONE|FOB|lphins. final, regular asymptotes | +28969|808098|8099|5|17|17102.85|0.07|0.00|N|O|1998-04-09|1998-04-08|1998-04-10|TAKE BACK RETURN|AIR|ar asymptotes affix | +28970|315812|15813|1|16|29244.80|0.08|0.08|N|O|1997-12-24|1997-12-27|1997-12-26|TAKE BACK RETURN|SHIP|s quickly special packages. furiously bol| +28970|847725|22758|2|20|33453.60|0.00|0.07|N|O|1997-11-09|1997-12-27|1997-11-19|NONE|RAIL|ts sleep carefully. q| +28970|712959|25474|3|7|13803.44|0.00|0.01|N|O|1997-10-16|1997-12-19|1997-10-21|TAKE BACK RETURN|RAIL|ng the furiously silen| +28970|694256|19283|4|14|17503.08|0.05|0.05|N|O|1998-02-09|1998-01-04|1998-02-11|COLLECT COD|TRUCK|quickly bold theodolites. platelets nag | +28970|344503|7010|5|44|68089.56|0.04|0.03|N|O|1997-12-05|1997-12-31|1997-12-16|NONE|MAIL|le fluffily. slyly silent pa| +28970|50199|37703|6|18|20685.42|0.09|0.06|N|O|1997-11-30|1997-12-18|1997-12-28|DELIVER IN PERSON|AIR|ironic deposits ha| +28971|320999|21000|1|7|14139.86|0.10|0.06|A|F|1993-12-31|1994-01-02|1994-01-20|TAKE BACK RETURN|SHIP|ithely. final, expr| +28971|26341|13842|2|22|27881.48|0.03|0.03|A|F|1993-12-07|1994-01-16|1993-12-09|DELIVER IN PERSON|SHIP|uffily ironic excuses detect? slyly expres| +28971|710411|10412|3|1|1421.38|0.03|0.01|R|F|1994-02-15|1993-12-24|1994-03-06|NONE|MAIL|ggedly about the blithely regul| +28971|871454|21455|4|10|14254.10|0.08|0.07|A|F|1994-02-20|1994-01-01|1994-03-15|COLLECT COD|TRUCK|ke around the blithely regular frays. ca| +28971|525210|25211|5|36|44466.84|0.04|0.05|A|F|1994-02-15|1994-01-11|1994-02-20|NONE|MAIL|re. carefull| +28971|191250|3754|6|21|28166.25|0.01|0.05|A|F|1994-02-14|1993-12-09|1994-03-03|COLLECT COD|SHIP|sts. unusual deposits are slyly. furiou| +28971|328283|28284|7|9|11801.43|0.03|0.00|R|F|1993-12-18|1994-01-14|1994-01-14|DELIVER IN PERSON|REG AIR|nts. carefully final p| +28972|440939|28464|1|6|11279.46|0.01|0.02|R|F|1994-01-29|1994-02-24|1994-02-27|TAKE BACK RETURN|MAIL|efore the carefully brave deposits. care| +28972|847633|10150|2|50|79029.50|0.02|0.04|R|F|1994-03-27|1994-02-27|1994-04-25|TAKE BACK RETURN|SHIP|packages use furiousl| +28972|153109|3110|3|6|6972.60|0.04|0.08|A|F|1994-01-30|1994-01-15|1994-02-24|COLLECT COD|AIR|theodolites. even deposits sleep furio| +28972|292314|17325|4|48|62702.40|0.05|0.02|R|F|1994-01-03|1994-02-06|1994-01-15|COLLECT COD|MAIL|inal ideas| +28972|914552|39589|5|34|53261.34|0.07|0.01|R|F|1993-12-22|1994-02-05|1993-12-23|TAKE BACK RETURN|MAIL|ckages solve carefully slyly| +28972|868356|43391|6|31|41053.61|0.07|0.06|R|F|1994-03-18|1994-01-31|1994-03-23|COLLECT COD|MAIL|fluffily ironic ideas nag. | +28973|222450|47459|1|12|16469.28|0.01|0.06|N|O|1995-11-03|1995-09-06|1995-11-29|COLLECT COD|AIR|uriously special ideas. ironic,| +28974|230701|30702|1|42|68530.98|0.01|0.00|R|F|1992-11-18|1992-11-04|1992-11-20|COLLECT COD|AIR| requests hag| +28974|384000|46508|2|2|2167.98|0.08|0.08|A|F|1992-12-18|1992-11-24|1993-01-10|NONE|MAIL|ix about the regula| +28974|875013|12565|3|7|6915.79|0.02|0.03|A|F|1992-12-18|1992-11-02|1993-01-03|NONE|TRUCK|o detect blithely fluffily ironic package| +28974|335881|10894|4|33|63256.71|0.00|0.06|A|F|1992-12-30|1992-11-04|1993-01-12|TAKE BACK RETURN|AIR|hely special requests. carefu| +28974|144260|44261|5|26|33910.76|0.10|0.07|A|F|1992-12-28|1992-11-01|1993-01-17|COLLECT COD|MAIL|ar courts nag carefully bold deposits. re| +28975|96617|21620|1|28|45181.08|0.01|0.00|A|F|1994-03-02|1994-01-25|1994-03-12|COLLECT COD|MAIL|ven, enticing requests. special packages | +29000|984219|46739|1|33|43004.61|0.01|0.07|N|O|1997-03-27|1997-04-03|1997-03-31|COLLECT COD|FOB|ully silent ideas wake permanentl| +29001|86783|24287|1|15|26546.70|0.06|0.07|R|F|1995-03-14|1995-02-26|1995-03-18|DELIVER IN PERSON|REG AIR| bold deposits haggle | +29001|555735|18247|2|29|51930.59|0.02|0.08|A|F|1995-03-15|1995-02-14|1995-03-23|NONE|AIR| to the even, ev| +29001|232397|32398|3|3|3988.14|0.07|0.05|A|F|1995-01-15|1995-03-11|1995-02-01|TAKE BACK RETURN|AIR|ar requests haggle close| +29001|879888|17440|4|35|65374.40|0.08|0.04|A|F|1995-02-25|1995-02-04|1995-03-11|NONE|TRUCK|le furiously along| +29001|277020|2031|5|6|5982.06|0.07|0.00|R|F|1995-04-18|1995-02-10|1995-05-03|COLLECT COD|AIR| accounts x-ray carefully| +29002|405046|30063|1|12|11412.24|0.01|0.06|A|F|1995-06-01|1995-05-19|1995-06-10|COLLECT COD|SHIP|lly bold deposits. furiously iron| +29002|607486|19999|2|25|34836.25|0.02|0.04|A|F|1995-05-07|1995-06-25|1995-05-17|COLLECT COD|FOB|the slyly fina| +29002|14700|2201|3|1|1614.70|0.01|0.04|N|O|1995-08-03|1995-06-07|1995-08-30|DELIVER IN PERSON|TRUCK| cajole carefully. blithely iron| +29002|50671|672|4|42|68110.14|0.05|0.06|N|F|1995-06-09|1995-06-23|1995-06-22|TAKE BACK RETURN|FOB|ents integra| +29002|617919|30432|5|24|44085.12|0.00|0.03|N|F|1995-06-04|1995-06-27|1995-06-27|TAKE BACK RETURN|TRUCK|al foxes. packages believe fluffily. blit| +29002|355988|43510|6|35|71538.95|0.07|0.00|N|O|1995-06-21|1995-06-24|1995-07-04|DELIVER IN PERSON|AIR|eans would boost. even, iro| +29003|763108|25624|1|4|4684.28|0.08|0.06|N|O|1997-06-27|1997-05-15|1997-07-07|DELIVER IN PERSON|RAIL|kly special in| +29003|550389|12901|2|42|60453.12|0.04|0.07|N|O|1997-04-27|1997-05-21|1997-05-15|TAKE BACK RETURN|TRUCK|final, ironic courts doubt furiously. b| +29003|384370|46878|3|5|7271.80|0.08|0.03|N|O|1997-07-20|1997-06-21|1997-07-22|NONE|REG AIR|ecial packages. b| +29003|105194|30199|4|6|7195.14|0.03|0.06|N|O|1997-04-02|1997-04-26|1997-04-29|NONE|AIR|ly express requests affix.| +29003|992132|29690|5|22|26929.98|0.09|0.00|N|O|1997-04-02|1997-06-15|1997-04-25|NONE|RAIL|ously pinto beans. unusual fo| +29003|760993|48539|6|18|36971.28|0.00|0.04|N|O|1997-04-08|1997-05-10|1997-04-17|TAKE BACK RETURN|MAIL|equests. asymptotes | +29003|3474|40975|7|9|12397.23|0.03|0.07|N|O|1997-06-11|1997-05-10|1997-07-11|NONE|FOB|ges x-ray never| +29004|379816|29817|1|11|20853.80|0.04|0.01|N|O|1996-01-29|1996-01-02|1996-02-25|TAKE BACK RETURN|AIR|encies. bold, ironic ideas sleep careful| +29004|556893|44427|2|9|17548.83|0.10|0.03|N|O|1995-12-13|1996-01-11|1996-01-09|NONE|SHIP|tes across the regular| +29004|694644|7158|3|30|49158.30|0.10|0.05|N|O|1995-11-25|1995-11-21|1995-12-12|COLLECT COD|FOB|uests. regular foxes haggle blithe| +29005|818525|43558|1|3|4330.44|0.06|0.04|N|O|1997-09-15|1997-10-15|1997-10-08|DELIVER IN PERSON|AIR|ld instructions. furio| +29005|947992|35547|2|12|24479.40|0.04|0.00|N|O|1997-10-29|1997-09-04|1997-11-04|NONE|SHIP|ctions? furiously pendi| +29005|885966|48484|3|47|91740.24|0.01|0.01|N|O|1997-10-20|1997-10-13|1997-11-07|TAKE BACK RETURN|TRUCK|structions haggle blithely. enticin| +29006|330449|5462|1|22|32547.46|0.09|0.04|N|O|1998-03-12|1998-05-16|1998-03-27|NONE|TRUCK|heodolites. furi| +29006|849960|49961|2|5|9549.60|0.06|0.03|N|O|1998-03-14|1998-05-19|1998-04-03|DELIVER IN PERSON|REG AIR|ithely final accounts. pending, pending r| +29006|265702|15703|3|32|53366.08|0.09|0.05|N|O|1998-07-02|1998-05-26|1998-07-25|DELIVER IN PERSON|AIR|grate furiously furiously silen| +29006|650071|72|4|37|37778.48|0.10|0.04|N|O|1998-05-27|1998-06-06|1998-06-14|NONE|RAIL|gle furiously. blithe| +29006|736435|48950|5|41|60327.40|0.05|0.00|N|O|1998-05-19|1998-05-08|1998-05-22|DELIVER IN PERSON|AIR|nwind furiously furiously speci| +29007|514492|14493|1|3|4519.41|0.06|0.01|A|F|1994-01-25|1993-11-19|1994-02-20|COLLECT COD|FOB|ly final pinto beans dazzle ab| +29007|56334|6335|2|5|6451.65|0.00|0.06|A|F|1993-10-22|1993-11-06|1993-11-05|TAKE BACK RETURN|RAIL|tegrate. carefully e| +29007|797424|34970|3|49|74548.11|0.06|0.04|R|F|1993-11-21|1993-12-23|1993-11-22|DELIVER IN PERSON|RAIL|ages. blithely ironic ideas cajole furio| +29007|302721|27734|4|50|86185.50|0.05|0.02|R|F|1993-12-12|1993-11-06|1993-12-14|COLLECT COD|SHIP| regular t| +29007|823379|35896|5|15|19534.95|0.10|0.05|R|F|1993-09-29|1993-11-18|1993-10-17|NONE|FOB|ily slyly ironic requests. carefully b| +29007|515030|2561|6|10|10450.10|0.01|0.05|R|F|1993-11-30|1993-12-09|1993-12-29|NONE|REG AIR|ironic asymptote| +29032|786511|49027|1|1|1597.48|0.05|0.06|N|O|1997-01-14|1997-03-13|1997-01-27|NONE|TRUCK|c packages at the carefully bold req| +29033|852305|39857|1|6|7543.56|0.07|0.03|N|O|1997-09-13|1997-10-05|1997-10-01|NONE|REG AIR|, final deposits boos| +29033|684698|9725|2|18|30287.88|0.05|0.03|N|O|1997-10-05|1997-09-04|1997-10-18|COLLECT COD|MAIL|ly final packages serve quickly | +29033|712234|24749|3|12|14954.40|0.05|0.08|N|O|1997-10-18|1997-10-15|1997-11-03|TAKE BACK RETURN|AIR|fully quick accounts detect careful| +29033|506681|44212|4|5|8438.30|0.03|0.00|N|O|1997-09-04|1997-09-19|1997-09-24|NONE|TRUCK|iously special foxes. furiously reg| +29033|781606|31607|5|36|60752.52|0.00|0.01|N|O|1997-08-15|1997-09-19|1997-08-18|NONE|AIR|! ironic pack| +29033|440237|15254|6|28|32961.88|0.04|0.05|N|O|1997-11-03|1997-10-16|1997-12-03|COLLECT COD|AIR|ruthlessly above the| +29034|204375|41888|1|18|23028.48|0.00|0.02|N|O|1996-07-28|1996-08-09|1996-08-04|COLLECT COD|FOB| express instructions. quickly sile| +29034|928228|28229|2|18|22611.24|0.09|0.07|N|O|1996-07-29|1996-07-18|1996-08-17|NONE|SHIP|pending requests dazzle f| +29034|717034|4577|3|48|50448.00|0.10|0.02|N|O|1996-09-10|1996-07-09|1996-09-22|DELIVER IN PERSON|RAIL|al, regular ideas are alongsid| +29034|185435|22945|4|3|4561.29|0.04|0.04|N|O|1996-09-07|1996-08-17|1996-09-20|NONE|REG AIR|regular packages. packages wak| +29034|593703|18726|5|33|59290.44|0.03|0.06|N|O|1996-06-27|1996-08-21|1996-07-12|DELIVER IN PERSON|SHIP|ngly expres| +29035|892618|5136|1|39|62812.23|0.03|0.01|R|F|1994-05-23|1994-06-01|1994-06-15|TAKE BACK RETURN|REG AIR|final ideas. even theodolites haggle fu| +29035|217226|17227|2|10|11432.10|0.08|0.01|A|F|1994-05-31|1994-06-05|1994-06-22|COLLECT COD|MAIL|xpress instructions affix. even pinto bean| +29035|906851|6852|3|32|59449.92|0.08|0.00|A|F|1994-05-04|1994-06-09|1994-05-23|NONE|REG AIR|t accounts poach slyly. ironic requests sl| +29035|428449|3466|4|26|35812.92|0.06|0.00|R|F|1994-05-21|1994-06-01|1994-05-26|NONE|FOB|phs haggle furiously around the blithely | +29035|936982|49501|5|3|6056.82|0.10|0.00|R|F|1994-07-11|1994-06-08|1994-07-19|COLLECT COD|TRUCK| the carefully | +29035|845748|8265|6|22|37261.40|0.09|0.00|R|F|1994-07-01|1994-06-08|1994-07-15|NONE|SHIP|quickly final deposit| +29036|117390|4897|1|16|22518.24|0.10|0.04|N|O|1995-12-12|1995-11-10|1995-12-26|DELIVER IN PERSON|RAIL|r deposits believe car| +29036|964853|39892|2|47|90137.07|0.03|0.03|N|O|1995-10-30|1995-10-17|1995-11-01|NONE|FOB|tes are around the final pa| +29036|273992|36498|3|28|55047.44|0.10|0.02|N|O|1995-10-16|1995-10-29|1995-10-17|DELIVER IN PERSON|AIR|. quickly ironic pinto beans haggle quickl| +29037|26449|13950|1|49|67396.56|0.09|0.00|R|F|1994-08-13|1994-09-09|1994-08-30|DELIVER IN PERSON|RAIL|gside of the carefully e| +29037|517692|42713|2|24|41032.08|0.09|0.05|A|F|1994-08-17|1994-10-08|1994-08-20|NONE|AIR|nal instruction| +29037|840568|3085|3|5|7542.60|0.03|0.07|R|F|1994-09-20|1994-10-09|1994-10-08|DELIVER IN PERSON|MAIL|sts. express, re| +29037|417422|4947|4|20|26788.00|0.10|0.03|A|F|1994-10-17|1994-09-03|1994-11-16|COLLECT COD|AIR|ccounts. slyly pending instructions caj| +29037|597014|47015|5|34|37773.66|0.08|0.05|R|F|1994-10-14|1994-09-27|1994-11-09|DELIVER IN PERSON|SHIP| wake furiou| +29038|484498|9517|1|46|68193.62|0.01|0.04|N|O|1997-12-05|1997-11-01|1997-12-18|DELIVER IN PERSON|FOB|wake across the even r| +29038|951258|13778|2|42|54986.82|0.09|0.00|N|O|1997-09-25|1997-10-18|1997-10-01|DELIVER IN PERSON|FOB|e quickly ironic plate| +29038|776943|26944|3|50|100995.50|0.03|0.04|N|O|1997-12-10|1997-10-17|1997-12-21|COLLECT COD|REG AIR| dependencies wake carefully | +29038|67469|4973|4|39|56021.94|0.09|0.08|N|O|1997-11-25|1997-10-06|1997-12-07|TAKE BACK RETURN|MAIL|y pending foxes boost along the | +29038|935094|10131|5|22|24839.10|0.02|0.00|N|O|1997-09-13|1997-09-23|1997-09-24|NONE|REG AIR|carefully even ideas nag acc| +29039|165925|15926|1|7|13936.44|0.06|0.03|R|F|1992-09-01|1992-09-04|1992-09-26|TAKE BACK RETURN|FOB|e slyly hockey players| +29039|687974|25514|2|39|76515.66|0.09|0.04|R|F|1992-10-15|1992-07-22|1992-10-28|DELIVER IN PERSON|FOB|nic, ironic requests are nev| +29064|80193|17697|1|37|43408.03|0.10|0.08|N|O|1996-12-29|1997-03-02|1997-01-12|NONE|RAIL|ccounts alongside of the carefull| +29064|803297|28330|2|12|14403.00|0.10|0.03|N|O|1997-03-30|1997-02-25|1997-04-16|COLLECT COD|TRUCK|osits. blithely ironic deposits cajole acc| +29064|203|12704|3|43|47437.60|0.04|0.01|N|O|1997-04-15|1997-01-20|1997-04-24|TAKE BACK RETURN|TRUCK|xcuses. carefully final re| +29064|400495|13004|4|47|65587.09|0.00|0.03|N|O|1997-02-13|1997-02-01|1997-03-10|TAKE BACK RETURN|SHIP|posits are around t| +29065|102518|2519|1|48|72984.48|0.09|0.03|N|O|1996-06-16|1996-05-30|1996-07-04|DELIVER IN PERSON|MAIL|pending packages i| +29065|14787|27288|2|26|44246.28|0.02|0.01|N|O|1996-08-02|1996-06-23|1996-08-29|DELIVER IN PERSON|TRUCK|y ironic instructions. never f| +29065|509389|21900|3|37|51739.32|0.04|0.05|N|O|1996-05-23|1996-05-11|1996-06-11|COLLECT COD|SHIP|anently fluffily| +29066|258333|45849|1|38|49070.16|0.05|0.01|R|F|1993-02-19|1992-11-24|1993-03-05|DELIVER IN PERSON|MAIL|re among the bravely silent depo| +29066|795164|32710|2|48|60438.24|0.01|0.03|A|F|1992-12-20|1993-01-17|1993-01-03|NONE|REG AIR|atelets doubt. ironic packages cajole fu| +29066|305448|17955|3|49|71218.07|0.05|0.05|R|F|1993-01-22|1993-01-03|1993-02-16|NONE|TRUCK|ording to the fina| +29067|32928|45429|1|21|39079.32|0.05|0.02|N|O|1997-11-01|1997-09-18|1997-11-26|NONE|RAIL|usly final| +29067|417464|29973|2|36|49731.84|0.00|0.00|N|O|1997-08-22|1997-09-21|1997-08-23|DELIVER IN PERSON|RAIL|rding to the quickly even | +29067|316015|41028|3|25|25775.00|0.06|0.06|N|O|1997-08-06|1997-08-27|1997-08-30|NONE|REG AIR|foxes cajole across the care| +29068|338431|13444|1|16|23510.72|0.10|0.04|A|F|1992-09-22|1992-07-15|1992-10-02|NONE|AIR|lithely special ideas| +29068|9316|46817|2|22|26956.82|0.05|0.01|R|F|1992-09-28|1992-08-05|1992-10-06|NONE|RAIL|ounts are q| +29068|557768|32791|3|42|76681.08|0.04|0.04|R|F|1992-07-26|1992-08-24|1992-08-22|COLLECT COD|MAIL| the blithely final de| +29068|392557|5065|4|12|19794.48|0.07|0.07|A|F|1992-06-23|1992-07-17|1992-07-04|DELIVER IN PERSON|MAIL| regular deposits-- fluff| +29069|726124|38639|1|23|26452.07|0.02|0.08|N|O|1996-01-07|1996-01-20|1996-01-13|COLLECT COD|SHIP|final deposits. unu| +29069|951490|14010|2|22|33911.90|0.01|0.07|N|O|1996-02-09|1996-01-25|1996-02-29|NONE|SHIP|the even, ironi| +29069|690198|27738|3|13|15446.08|0.05|0.07|N|O|1996-01-16|1996-02-18|1996-02-15|COLLECT COD|MAIL|cajole quickly final braids. | +29070|729721|17264|1|12|21008.28|0.02|0.02|N|O|1996-01-15|1996-02-15|1996-02-04|DELIVER IN PERSON|TRUCK|regular accounts doubt.| +29070|419483|44500|2|43|60305.78|0.04|0.06|N|O|1996-03-01|1996-02-17|1996-03-22|TAKE BACK RETURN|REG AIR|e slyly ironic foxes affix slyly a| +29071|231938|44443|1|9|16829.28|0.01|0.02|N|O|1995-09-26|1995-10-20|1995-10-26|DELIVER IN PERSON|MAIL|c deposits cajole alongside of t| +29071|169709|19710|2|29|51582.30|0.05|0.02|N|O|1995-12-03|1995-11-19|1996-01-02|NONE|MAIL|ven deposits. enticin| +29071|298880|48881|3|49|92064.63|0.04|0.01|N|O|1995-09-05|1995-10-03|1995-09-15|DELIVER IN PERSON|REG AIR|ely ironic requests sleep fluffily against| +29071|264465|26971|4|19|27159.55|0.03|0.06|N|O|1995-10-10|1995-10-23|1995-10-12|TAKE BACK RETURN|MAIL|counts x-ray above the even, fina| +29071|849029|11546|5|29|28361.42|0.08|0.04|N|O|1995-12-21|1995-10-09|1995-12-30|COLLECT COD|FOB|he stealthily even request| +29071|630041|17578|6|13|12623.13|0.02|0.01|N|O|1995-12-10|1995-10-12|1995-12-20|TAKE BACK RETURN|TRUCK|ep. deposits | +29096|822858|22859|1|11|19588.91|0.08|0.00|N|O|1995-10-14|1995-10-24|1995-10-24|DELIVER IN PERSON|SHIP|refully pending accounts. c| +29097|531396|31397|1|45|64231.65|0.03|0.06|N|O|1997-12-01|1997-10-03|1997-12-27|NONE|REG AIR| requests sleep carefully aft| +29097|161584|24088|2|27|44430.66|0.04|0.00|N|O|1997-09-19|1997-11-18|1997-09-23|DELIVER IN PERSON|TRUCK|dencies. careful| +29097|727868|2897|3|6|11374.98|0.01|0.03|N|O|1997-10-04|1997-10-03|1997-11-03|TAKE BACK RETURN|TRUCK|. packages haggle regular accounts. f| +29097|260672|10673|4|37|60408.42|0.07|0.03|N|O|1997-11-09|1997-11-04|1997-11-21|DELIVER IN PERSON|REG AIR|nts along the requests sle| +29097|104535|29540|5|12|18474.36|0.04|0.05|N|O|1997-10-31|1997-10-25|1997-11-28|TAKE BACK RETURN|SHIP|ans nag slyl| +29097|917812|17813|6|44|80509.88|0.01|0.04|N|O|1997-11-09|1997-11-08|1997-11-20|TAKE BACK RETURN|AIR|unusual foxes| +29097|659233|34260|7|49|58417.80|0.02|0.06|N|O|1997-11-15|1997-09-30|1997-11-20|NONE|MAIL| sleep foxes. foxes| +29098|716963|41992|1|5|9899.65|0.10|0.03|R|F|1994-11-10|1994-12-01|1994-11-25|COLLECT COD|RAIL|its wake according to the slyly | +29098|984494|22052|2|33|52088.85|0.03|0.02|A|F|1995-02-11|1994-12-21|1995-02-25|COLLECT COD|RAIL|ly. special | +29098|383188|33189|3|11|13982.87|0.06|0.03|A|F|1994-11-20|1994-12-31|1994-12-19|COLLECT COD|RAIL|rate about| +29098|227030|27031|4|8|7656.16|0.07|0.04|A|F|1995-01-28|1994-12-02|1995-02-04|NONE|RAIL|ests haggle fluffily carefully regu| +29098|690179|27719|5|18|21044.52|0.05|0.06|A|F|1994-11-28|1994-12-01|1994-12-09|DELIVER IN PERSON|SHIP|ld foxes do impress furiously b| +29099|4582|42083|1|47|69869.26|0.05|0.04|N|O|1997-10-23|1997-09-15|1997-11-09|TAKE BACK RETURN|RAIL|ular theodolites. regul| +29099|995375|45376|2|9|13232.97|0.06|0.02|N|O|1997-09-15|1997-09-04|1997-10-12|NONE|REG AIR|g the plate| +29099|262099|49615|3|15|15916.20|0.00|0.01|N|O|1997-08-02|1997-08-31|1997-08-26|COLLECT COD|FOB| wake regul| +29099|90252|15255|4|23|28571.75|0.00|0.03|N|O|1997-10-11|1997-08-26|1997-10-23|NONE|MAIL|lly pending requests use furiously. sl| +29099|854806|29841|5|10|17607.60|0.01|0.06|N|O|1997-07-16|1997-08-29|1997-08-06|NONE|SHIP|inal dugouts; carefu| +29099|713929|1472|6|25|48572.25|0.04|0.04|N|O|1997-09-01|1997-09-10|1997-09-10|DELIVER IN PERSON|AIR|. always final accounts believe. furio| +29100|252775|40291|1|20|34555.20|0.00|0.00|A|F|1995-04-27|1995-06-05|1995-05-26|DELIVER IN PERSON|TRUCK|slyly dogged deposits haggle carefully c| +29101|452759|27778|1|47|80451.31|0.10|0.07|R|F|1993-02-26|1993-05-09|1993-03-20|DELIVER IN PERSON|SHIP|ts nag during the | +29101|518255|18256|2|18|22918.14|0.01|0.02|R|F|1993-03-16|1993-05-07|1993-04-09|COLLECT COD|AIR|en pinto beans after the reg| +29101|309121|34134|3|25|28252.75|0.08|0.03|R|F|1993-03-05|1993-05-12|1993-03-27|DELIVER IN PERSON|SHIP|ackages. ironic dependencie| +29101|385038|22560|4|24|26952.48|0.04|0.04|R|F|1993-04-13|1993-04-19|1993-05-05|TAKE BACK RETURN|FOB|ar, bold platelets wake fu| +29101|317149|42162|5|20|23322.60|0.00|0.07|R|F|1993-06-14|1993-04-05|1993-06-21|NONE|REG AIR|ilent instructi| +29102|220016|20017|1|35|32760.00|0.02|0.07|N|O|1998-01-11|1997-12-09|1998-01-15|DELIVER IN PERSON|RAIL| slyly. fluffily unusual in| +29102|798158|48159|2|34|42708.08|0.00|0.04|N|O|1997-10-20|1997-11-07|1997-11-10|NONE|REG AIR|ual dependencies. blithely special pa| +29102|640757|3270|3|35|59420.20|0.05|0.00|N|O|1997-12-28|1997-12-08|1998-01-23|COLLECT COD|REG AIR|its cajole before the f| +29103|477716|15244|1|20|33873.80|0.03|0.04|R|F|1994-09-05|1994-08-21|1994-10-02|DELIVER IN PERSON|FOB|slyly even, pending excuses-- express de| +29103|960737|10738|2|46|82693.74|0.01|0.02|A|F|1994-09-11|1994-10-05|1994-10-03|TAKE BACK RETURN|MAIL|thely fluffily pending pinto | +29103|100283|37790|3|4|5133.12|0.00|0.02|R|F|1994-08-31|1994-09-28|1994-09-17|DELIVER IN PERSON|FOB|luffily ironic asymptotes. | +29103|442070|42071|4|16|16192.80|0.02|0.00|A|F|1994-08-11|1994-09-05|1994-08-21|NONE|REG AIR|. even, expr| +29103|869138|44173|5|13|14392.17|0.04|0.00|A|F|1994-10-10|1994-10-10|1994-10-29|TAKE BACK RETURN|SHIP|ial requests along the| +29128|623884|48909|1|21|37964.85|0.09|0.06|A|F|1994-07-17|1994-07-11|1994-08-08|NONE|RAIL| furiously even foxes. deposits use ac| +29129|710409|10410|1|18|25548.66|0.05|0.02|A|F|1992-09-23|1992-09-07|1992-10-03|NONE|REG AIR|wake furiously furiously regular as| +29129|831188|6221|2|23|25740.22|0.00|0.00|A|F|1992-08-03|1992-07-28|1992-08-30|TAKE BACK RETURN|SHIP|slyly. slyly even pinto beans detect| +29129|763290|13291|3|4|5413.04|0.01|0.02|R|F|1992-07-05|1992-07-14|1992-07-19|COLLECT COD|RAIL|fix alongside of the slyly even reque| +29129|601867|14380|4|24|42451.92|0.04|0.05|A|F|1992-07-29|1992-09-01|1992-08-22|NONE|FOB|posits. carefull| +29129|573354|23355|5|4|5709.32|0.04|0.02|A|F|1992-07-05|1992-07-21|1992-07-23|NONE|TRUCK|pending pinto beans wak| +29129|353502|3503|6|2|3110.98|0.06|0.02|A|F|1992-08-02|1992-09-08|1992-08-20|COLLECT COD|RAIL| express deposi| +29129|302619|15126|7|3|4864.80|0.04|0.00|R|F|1992-09-26|1992-08-17|1992-10-11|TAKE BACK RETURN|FOB|gular depos| +29130|108558|21061|1|1|1566.55|0.09|0.06|N|O|1996-05-17|1996-03-12|1996-05-29|TAKE BACK RETURN|RAIL|efully at t| +29130|533346|33347|2|24|33103.68|0.01|0.00|N|O|1996-05-12|1996-03-25|1996-06-02|NONE|RAIL|he carefully ironic theodolites| +29131|346778|21791|1|44|80289.44|0.05|0.00|R|F|1992-08-29|1992-11-02|1992-09-21|DELIVER IN PERSON|TRUCK|ackages. ironic requests alongside of the f| +29131|282584|45090|2|19|29764.83|0.05|0.02|A|F|1992-08-21|1992-10-20|1992-08-29|NONE|REG AIR|s about the quickly final in| +29131|380704|18226|3|47|83880.43|0.08|0.04|A|F|1992-09-13|1992-10-06|1992-10-07|COLLECT COD|REG AIR|the furiously pending de| +29131|479111|29112|4|31|33792.79|0.02|0.07|R|F|1992-08-24|1992-10-18|1992-09-14|COLLECT COD|AIR|r packages. special packages cajole. fu| +29132|909674|34711|1|47|79130.61|0.01|0.03|N|O|1998-08-13|1998-06-23|1998-09-06|NONE|SHIP|al foxes. packages a| +29132|890276|2794|2|29|36720.67|0.10|0.08|N|O|1998-09-01|1998-08-09|1998-09-16|NONE|SHIP|tructions use quickly. even, regular a| +29132|859432|46984|3|49|68178.11|0.00|0.00|N|O|1998-06-19|1998-07-03|1998-07-10|NONE|REG AIR|lent packages. silent theodo| +29132|470191|7719|4|37|42963.29|0.10|0.00|N|O|1998-07-30|1998-07-14|1998-08-02|DELIVER IN PERSON|TRUCK|sly fluffily final theodolites. thinly u| +29133|198243|10747|1|3|4023.72|0.01|0.05|N|O|1998-09-07|1998-09-05|1998-10-07|TAKE BACK RETURN|SHIP| bold accounts. slyly | +29133|858247|33282|2|34|40976.80|0.00|0.04|N|O|1998-10-12|1998-10-03|1998-11-03|NONE|REG AIR| are slyly unusual| +29133|556135|31158|3|20|23822.20|0.01|0.00|N|O|1998-09-05|1998-08-23|1998-09-23|DELIVER IN PERSON|RAIL|ly permanent foxes. even, ironic accou| +29133|957572|7573|4|13|21183.89|0.07|0.08|N|O|1998-07-21|1998-09-09|1998-08-10|NONE|FOB|l orbits around the | +29133|906627|19146|5|46|75144.68|0.08|0.07|N|O|1998-08-11|1998-09-10|1998-09-02|TAKE BACK RETURN|FOB|ke. even, even accounts haggle a| +29134|149901|12404|1|45|87790.50|0.03|0.04|N|O|1996-11-25|1996-12-25|1996-12-20|COLLECT COD|RAIL|slyly final pinto beans can cajo| +29134|376981|26982|2|46|94666.62|0.03|0.03|N|O|1996-12-06|1996-12-11|1997-01-04|DELIVER IN PERSON|RAIL|efully above the furiously regular d| +29134|905066|17585|3|34|36414.68|0.04|0.08|N|O|1997-02-18|1996-12-02|1997-02-24|NONE|RAIL|ely bold acc| +29134|429311|4328|4|6|7441.74|0.08|0.04|N|O|1997-02-09|1997-01-05|1997-02-25|NONE|FOB|press theodolites. doggedly pending | +29134|414317|1842|5|6|7387.74|0.01|0.06|N|O|1997-02-24|1996-12-26|1997-03-13|TAKE BACK RETURN|MAIL| ironic theodolites. furiously express th| +29134|419322|6847|6|45|55858.50|0.06|0.06|N|O|1997-02-22|1997-01-03|1997-03-03|TAKE BACK RETURN|REG AIR|en pinto beans use furious| +29134|540669|15690|7|9|15386.76|0.09|0.05|N|O|1996-11-17|1997-01-06|1996-12-06|NONE|AIR|its are furi| +29135|11174|23675|1|24|26044.08|0.10|0.05|R|F|1992-12-07|1992-10-08|1992-12-27|COLLECT COD|RAIL|ross the blithely ironic ideas! carefull| +29160|921921|21922|1|34|66057.92|0.03|0.08|A|F|1992-05-08|1992-04-12|1992-06-01|DELIVER IN PERSON|RAIL|hely about the foxe| +29160|713989|13990|2|32|64094.40|0.00|0.01|A|F|1992-03-29|1992-02-29|1992-04-06|DELIVER IN PERSON|FOB| foxes. final accounts caj| +29160|2287|39788|3|34|40435.52|0.00|0.03|R|F|1992-04-22|1992-03-06|1992-04-26|TAKE BACK RETURN|MAIL|. blithely pending accounts cajole fur| +29160|426057|26058|4|5|4915.15|0.06|0.07|R|F|1992-04-06|1992-04-15|1992-04-08|NONE|MAIL|s boost furiously. carefu| +29160|731444|43959|5|34|50163.94|0.05|0.08|A|F|1992-03-05|1992-03-23|1992-03-26|NONE|MAIL|uriously s| +29161|704824|29853|1|49|89610.71|0.09|0.02|N|O|1997-12-10|1998-01-30|1998-01-08|COLLECT COD|RAIL|iously silent platelets cajole ruthle| +29161|973259|23260|2|36|47959.56|0.03|0.06|N|O|1997-12-18|1997-12-07|1998-01-14|NONE|AIR|ong the carefully even ideas. quic| +29161|550538|539|3|41|65128.91|0.10|0.02|N|O|1998-03-02|1997-12-22|1998-04-01|DELIVER IN PERSON|MAIL|es cajole. evenly special p| +29161|885310|10345|4|40|51810.80|0.08|0.08|N|O|1997-12-19|1997-12-11|1998-01-10|NONE|FOB|fter the blithely regular fox| +29161|400009|25026|5|19|21070.81|0.07|0.02|N|O|1998-02-28|1997-12-05|1998-03-11|DELIVER IN PERSON|MAIL|ously silent r| +29161|939656|2175|6|12|20347.32|0.01|0.00|N|O|1997-12-13|1997-12-05|1997-12-31|TAKE BACK RETURN|AIR|ake blithely c| +29162|372491|34999|1|41|64102.68|0.03|0.05|R|F|1994-07-26|1994-09-26|1994-08-15|NONE|AIR|kly. furiously ironic packages are regular| +29162|444685|44686|2|8|13037.28|0.00|0.08|R|F|1994-07-17|1994-09-18|1994-07-22|TAKE BACK RETURN|SHIP|sits haggle slyly above the bli| +29162|805138|17655|3|17|17732.53|0.02|0.05|A|F|1994-09-20|1994-09-03|1994-10-15|COLLECT COD|RAIL|s? ironic requests| +29162|951513|14033|4|9|14080.23|0.09|0.08|R|F|1994-09-04|1994-10-02|1994-10-02|DELIVER IN PERSON|AIR| accounts sleep quickly blithely| +29162|73541|36043|5|2|3029.08|0.05|0.00|A|F|1994-09-13|1994-10-06|1994-09-26|COLLECT COD|TRUCK|egular asymptotes. carefully regular t| +29162|997781|10301|6|34|63877.16|0.01|0.04|A|F|1994-08-06|1994-09-11|1994-09-01|NONE|MAIL|s. final plat| +29162|700926|25955|7|20|38537.80|0.06|0.02|R|F|1994-10-06|1994-08-23|1994-10-17|COLLECT COD|REG AIR|of the slyly ironic ideas s| +29163|446974|34499|1|31|59549.45|0.06|0.04|N|O|1998-05-17|1998-07-03|1998-06-07|DELIVER IN PERSON|MAIL|y carefully idle theodolit| +29163|287772|37773|2|30|52792.80|0.10|0.05|N|O|1998-07-09|1998-07-05|1998-07-12|TAKE BACK RETURN|SHIP| furiously busy pinto beans across the c| +29163|569627|7161|3|9|15269.40|0.05|0.07|N|O|1998-05-28|1998-08-07|1998-06-25|DELIVER IN PERSON|AIR|he slyly bold req| +29163|711830|36859|4|7|12892.60|0.00|0.04|N|O|1998-06-04|1998-06-17|1998-06-08|TAKE BACK RETURN|FOB|old accounts. carefully unusual | +29163|711655|49198|5|29|48331.98|0.08|0.03|N|O|1998-09-03|1998-07-18|1998-09-11|NONE|AIR| express, pending theodo| +29163|780109|30110|6|29|34483.03|0.07|0.06|N|O|1998-05-26|1998-07-04|1998-06-15|TAKE BACK RETURN|AIR|hs. regular packages a| +29163|276190|38696|7|41|47813.38|0.05|0.00|N|O|1998-06-09|1998-07-15|1998-06-25|COLLECT COD|AIR|ular deposits nag across the blithely fur| +29164|923840|11395|1|7|13046.60|0.09|0.03|N|O|1998-04-13|1998-02-18|1998-04-26|TAKE BACK RETURN|AIR|s against the blit| +29164|967975|30495|2|16|32686.88|0.05|0.05|N|O|1998-04-06|1998-02-13|1998-04-13|NONE|TRUCK|h the platelets. bold, sp| +29164|745556|45557|3|49|78474.48|0.02|0.08|N|O|1998-02-22|1998-03-19|1998-03-12|NONE|REG AIR| theodolites are furiousl| +29164|546255|8766|4|19|24723.37|0.09|0.06|N|O|1998-04-02|1998-02-20|1998-04-12|NONE|MAIL|ackages. quick| +29164|903226|15745|5|50|61459.00|0.06|0.02|N|O|1998-03-07|1998-02-22|1998-03-22|NONE|FOB|al, regular | +29164|509634|9635|6|24|39446.64|0.04|0.03|N|O|1998-05-11|1998-02-20|1998-05-29|COLLECT COD|REG AIR| nag blithely express depos| +29164|417011|42028|7|19|17631.81|0.02|0.06|N|O|1998-02-28|1998-02-22|1998-03-11|DELIVER IN PERSON|REG AIR|er ironic deposits unwind | +29165|694900|19927|1|3|5684.61|0.00|0.07|A|F|1993-12-17|1993-09-30|1994-01-10|COLLECT COD|REG AIR|uriously bold pinto beans are fluffily | +29165|171228|21229|2|7|9094.54|0.06|0.07|R|F|1993-10-05|1993-10-04|1993-10-15|COLLECT COD|AIR|into beans use furiously among the| +29165|822494|47527|3|40|56658.00|0.02|0.00|R|F|1993-10-15|1993-11-03|1993-10-29|NONE|REG AIR| unusual dolphins across the bold| +29166|746964|9479|1|9|18098.37|0.00|0.08|A|F|1992-09-17|1992-08-31|1992-09-22|NONE|REG AIR|hely unusual pinto beans. eve| +29166|214260|26765|2|14|16439.50|0.03|0.01|A|F|1992-09-06|1992-09-15|1992-09-12|COLLECT COD|REG AIR|e of the quickly f| +29166|63710|1214|3|47|78664.37|0.07|0.01|R|F|1992-07-30|1992-07-27|1992-08-23|TAKE BACK RETURN|AIR|l accounts at the carefully | +29166|766276|3822|4|46|61743.04|0.01|0.08|A|F|1992-09-13|1992-09-22|1992-09-23|DELIVER IN PERSON|REG AIR|ffily final courts w| +29166|792365|4881|5|4|5829.32|0.05|0.08|R|F|1992-09-11|1992-07-30|1992-09-26|NONE|TRUCK|s dolphins across the fur| +29166|277178|27179|6|21|24258.36|0.05|0.05|A|F|1992-07-15|1992-08-09|1992-08-04|DELIVER IN PERSON|MAIL|fully silent instru| +29167|139994|14999|1|49|99665.51|0.02|0.00|A|F|1995-01-10|1995-02-03|1995-02-03|TAKE BACK RETURN|TRUCK|lets nag fluff| +29167|869315|44350|2|28|35959.56|0.06|0.00|R|F|1995-03-22|1995-02-27|1995-04-02|DELIVER IN PERSON|REG AIR|s. slyly express deposits haggle slyl| +29167|576309|1332|3|13|18008.64|0.09|0.00|R|F|1995-02-20|1995-02-02|1995-02-28|NONE|REG AIR|ly even requests. slyly permanent requests | +29167|11283|23784|4|18|21497.04|0.01|0.04|R|F|1995-02-16|1995-03-07|1995-03-18|DELIVER IN PERSON|SHIP|y even accounts sleep. special ideas cou| +29167|623818|23819|5|19|33093.82|0.02|0.06|R|F|1995-01-10|1995-01-14|1995-01-19|NONE|SHIP| slyly unusual r| +29167|496724|34252|6|3|5162.10|0.03|0.00|R|F|1995-04-01|1995-02-26|1995-04-11|NONE|AIR| even accounts haggle. doggedly regular| +29192|827752|40269|1|7|11757.97|0.02|0.03|N|O|1997-04-30|1997-06-13|1997-05-11|DELIVER IN PERSON|TRUCK|nusual accounts could sleep after| +29193|941162|3681|1|30|36093.60|0.02|0.06|R|F|1992-03-05|1992-03-15|1992-03-08|TAKE BACK RETURN|REG AIR|ke slyly ironic accounts. even ideas | +29193|94550|44551|2|28|43247.40|0.09|0.08|A|F|1992-03-18|1992-05-02|1992-03-31|DELIVER IN PERSON|MAIL|egular foxes across the | +29193|92640|42641|3|26|42448.64|0.06|0.05|A|F|1992-06-06|1992-03-16|1992-06-08|COLLECT COD|FOB|t the busy dol| +29194|91208|28712|1|29|34776.80|0.09|0.08|N|O|1997-12-30|1998-02-11|1998-01-05|COLLECT COD|TRUCK|lly. special, ironic somas a| +29194|921974|47011|2|48|95804.64|0.09|0.06|N|O|1998-03-06|1998-03-03|1998-04-05|NONE|AIR|blithely silent courts | +29195|818763|31280|1|19|31952.68|0.09|0.01|N|O|1998-01-03|1998-01-16|1998-01-22|NONE|SHIP|ven platelets throughout the blit| +29195|935816|10853|2|30|55553.10|0.07|0.08|N|O|1998-02-16|1998-01-15|1998-02-27|COLLECT COD|SHIP| slyly unusual accoun| +29195|255923|5924|3|19|35699.29|0.06|0.06|N|O|1998-03-06|1998-01-22|1998-03-25|COLLECT COD|TRUCK|unts after the foxes haggle| +29195|294830|32346|4|38|69343.16|0.10|0.00|N|O|1998-01-10|1998-01-08|1998-02-02|TAKE BACK RETURN|MAIL|jole doggedly according| +29195|193248|30758|5|31|41578.44|0.10|0.02|N|O|1998-02-04|1998-01-02|1998-03-01|NONE|AIR|sy instructions. silent Tiresias a| +29195|917541|17542|6|48|74808.00|0.08|0.08|N|O|1997-11-22|1998-02-09|1997-12-12|COLLECT COD|MAIL|quests across the | +29196|303061|3062|1|41|43626.05|0.08|0.03|N|O|1997-04-03|1997-05-29|1997-04-17|TAKE BACK RETURN|RAIL|ages. slyly express packages sleep b| +29197|283974|8985|1|49|95940.04|0.03|0.08|N|O|1998-07-07|1998-07-15|1998-07-13|DELIVER IN PERSON|FOB|ke about the express epitaphs. ideas integ| +29197|737470|25013|2|11|16581.84|0.01|0.06|N|O|1998-08-11|1998-07-26|1998-09-03|TAKE BACK RETURN|TRUCK|ash slyly bold, furiou| +29197|644836|44837|3|9|16027.20|0.01|0.00|N|O|1998-08-13|1998-07-22|1998-08-25|COLLECT COD|TRUCK|osits. dolphins above the blithely p| +29197|746436|8951|4|26|38542.40|0.09|0.08|N|O|1998-08-30|1998-08-28|1998-09-12|TAKE BACK RETURN|SHIP|posits. careful| +29198|337479|12492|1|41|62174.86|0.09|0.01|N|O|1998-01-04|1998-03-03|1998-01-31|COLLECT COD|SHIP| instructions | +29198|996783|34341|2|49|92107.26|0.01|0.05|N|O|1998-02-15|1998-02-12|1998-02-18|TAKE BACK RETURN|REG AIR|cuses. final, quiet requests| +29198|926285|26286|3|23|30158.52|0.09|0.05|N|O|1997-12-27|1998-03-05|1998-01-09|TAKE BACK RETURN|REG AIR|ly unusual, quiet accounts. special| +29198|60295|22797|4|39|48956.31|0.03|0.02|N|O|1998-01-10|1998-02-25|1998-01-28|COLLECT COD|AIR|ickly ruthless pinto beans sleep qu| +29198|376050|38558|5|3|3378.12|0.05|0.03|N|O|1998-02-04|1998-02-05|1998-02-23|NONE|FOB|e ironic package| +29198|268019|43030|6|1|987.00|0.09|0.07|N|O|1998-01-17|1998-02-07|1998-02-03|NONE|FOB|e final, express acco| +29199|758598|8599|1|17|28161.52|0.03|0.01|A|F|1994-04-13|1994-04-11|1994-04-18|NONE|TRUCK|s deposits. request| +29199|748990|11505|2|38|77480.48|0.10|0.00|A|F|1994-04-17|1994-04-05|1994-05-17|NONE|TRUCK|iously final deposits cajol| +29199|264155|14156|3|14|15667.96|0.02|0.01|R|F|1994-05-06|1994-04-18|1994-06-03|DELIVER IN PERSON|RAIL|to beans are slyly dogged somas. final a| +29224|159601|9602|1|36|59781.60|0.10|0.00|A|F|1994-09-25|1994-07-31|1994-10-04|TAKE BACK RETURN|TRUCK|quests are carefully slow dep| +29224|411107|23616|2|12|12216.96|0.09|0.03|A|F|1994-08-24|1994-09-24|1994-09-10|TAKE BACK RETURN|RAIL|out the quickly even instructions.| +29224|475000|37510|3|38|37049.24|0.00|0.02|A|F|1994-08-06|1994-08-11|1994-09-03|COLLECT COD|SHIP|ending packages use. speci| +29224|315215|2734|4|5|6151.00|0.03|0.01|A|F|1994-10-07|1994-08-13|1994-10-24|COLLECT COD|TRUCK|packages cajole. f| +29224|810016|22533|5|7|6481.79|0.08|0.04|R|F|1994-10-27|1994-09-10|1994-11-24|DELIVER IN PERSON|FOB|xpress foxes | +29224|922776|22777|6|3|5396.19|0.04|0.02|R|F|1994-07-17|1994-09-09|1994-08-10|DELIVER IN PERSON|AIR|requests. packages affix blithely amon| +29225|617804|30317|1|37|63705.49|0.07|0.00|N|O|1998-10-20|1998-10-02|1998-11-12|DELIVER IN PERSON|AIR|nes use slyly pending de| +29226|935725|23280|1|10|17606.80|0.05|0.03|A|F|1993-05-04|1993-03-21|1993-05-27|DELIVER IN PERSON|RAIL|xpress foxes above the carefully fluffy d| +29226|723254|35769|2|47|60029.34|0.07|0.00|R|F|1993-03-04|1993-05-03|1993-03-23|COLLECT COD|RAIL|, ironic instructions. slyly final| +29226|723626|11169|3|45|74231.55|0.04|0.05|A|F|1993-02-16|1993-05-05|1993-02-18|DELIVER IN PERSON|FOB| requests hind| +29226|980582|18140|4|50|83127.00|0.00|0.04|R|F|1993-04-30|1993-04-01|1993-05-24|DELIVER IN PERSON|MAIL|es wake after the quickly final| +29226|627606|40119|5|20|30671.40|0.08|0.00|A|F|1993-04-13|1993-03-29|1993-04-14|DELIVER IN PERSON|FOB|ntegrate. fluffily bold deposits inte| +29226|170147|7657|6|33|40165.62|0.08|0.00|R|F|1993-02-22|1993-03-22|1993-03-09|COLLECT COD|FOB|ly. bold pinto beans cajole idly ca| +29227|605827|43364|1|44|76242.76|0.03|0.07|N|O|1998-06-30|1998-05-08|1998-07-19|DELIVER IN PERSON|TRUCK|refully speci| +29227|125480|485|2|8|12043.84|0.08|0.08|N|O|1998-04-28|1998-06-11|1998-05-09|TAKE BACK RETURN|FOB|es. furiously bold theodolites dete| +29227|931849|6886|3|49|92159.20|0.06|0.04|N|O|1998-04-14|1998-05-08|1998-05-05|NONE|REG AIR|lithely slow packages. platelets sleep| +29227|585909|10932|4|20|39897.60|0.07|0.07|N|O|1998-05-23|1998-06-04|1998-06-16|TAKE BACK RETURN|MAIL|ons are about the slyly | +29228|342777|5284|1|29|52773.04|0.02|0.03|N|O|1998-03-23|1998-01-21|1998-03-30|DELIVER IN PERSON|FOB|nic account| +29228|38998|13999|2|15|29054.85|0.08|0.00|N|O|1998-02-19|1998-02-03|1998-03-05|NONE|RAIL|al instructions. blithely | +29228|438774|13791|3|2|3425.50|0.04|0.05|N|O|1998-01-28|1998-01-10|1998-02-26|TAKE BACK RETURN|TRUCK|hely final platelets wake. blithely eve| +29229|48461|23462|1|48|67654.08|0.06|0.01|N|O|1998-02-06|1997-11-27|1998-02-08|DELIVER IN PERSON|AIR|ructions boost final, even ac| +29229|478932|28933|2|1|1910.91|0.09|0.00|N|O|1997-12-08|1997-12-20|1997-12-20|TAKE BACK RETURN|TRUCK|o the special, unusual deposits. even packa| +29229|408418|33435|3|48|63666.72|0.04|0.00|N|O|1997-12-28|1997-11-18|1998-01-04|DELIVER IN PERSON|TRUCK|ly carefully pending grouch| +29229|275542|13058|4|44|66771.32|0.01|0.01|N|O|1997-11-09|1997-12-23|1997-11-23|NONE|RAIL|ckages. accounts cajole carefully across| +29230|182927|32928|1|2|4019.84|0.09|0.07|N|O|1997-12-10|1998-01-09|1998-01-05|COLLECT COD|RAIL| quickly express deposits use| +29230|446106|33631|2|39|41031.12|0.09|0.03|N|O|1997-11-04|1997-12-11|1997-11-05|NONE|RAIL|attainments above the b| +29230|692814|17841|3|18|32522.04|0.04|0.06|N|O|1997-10-19|1997-11-17|1997-11-03|NONE|REG AIR|ular requests haggle at the unusual ac| +29230|114635|14636|4|7|11547.41|0.02|0.06|N|O|1998-01-02|1998-01-07|1998-01-20|COLLECT COD|SHIP|st the deposits. carefully ironic a| +29230|660366|47906|5|1|1326.33|0.07|0.02|N|O|1998-01-16|1998-01-01|1998-02-10|TAKE BACK RETURN|AIR|etect against the doggedly special packag| +29230|765039|40070|6|37|40848.00|0.06|0.00|N|O|1998-01-29|1997-11-26|1998-02-14|COLLECT COD|REG AIR| regular pack| +29230|994024|31582|7|5|5589.90|0.00|0.02|N|O|1998-02-04|1997-11-24|1998-02-06|COLLECT COD|AIR|special depende| +29231|551322|26345|1|13|17852.90|0.08|0.02|A|F|1994-03-29|1994-04-22|1994-04-13|DELIVER IN PERSON|AIR| snooze slyly.| +29256|677105|39619|1|6|6492.42|0.08|0.06|A|F|1995-05-18|1995-04-18|1995-06-06|NONE|RAIL|less dependencies sleep ca| +29256|102015|27020|2|37|37629.37|0.08|0.06|N|O|1995-06-25|1995-05-20|1995-07-25|NONE|FOB|er the slyly final pack| +29256|561885|36908|3|26|50618.36|0.04|0.02|N|O|1995-06-21|1995-05-02|1995-07-16|COLLECT COD|AIR|unts wake boldl| +29257|839623|27172|1|7|10938.06|0.03|0.00|N|O|1997-11-06|1997-10-10|1997-11-08|NONE|MAIL|quests. ideas c| +29257|532412|44923|2|42|60664.38|0.02|0.07|N|O|1997-09-28|1997-09-30|1997-10-15|NONE|RAIL|round the carefully regu| +29257|242251|42252|3|36|42956.64|0.09|0.00|N|O|1997-11-12|1997-09-17|1997-12-06|TAKE BACK RETURN|TRUCK|lithely about the slyly even accoun| +29257|505138|42669|4|46|52583.06|0.08|0.08|N|O|1997-10-04|1997-10-03|1997-10-22|DELIVER IN PERSON|REG AIR| to the quickly final deposits wake | +29258|354394|16902|1|49|70970.62|0.05|0.06|R|F|1994-11-22|1994-12-17|1994-11-29|TAKE BACK RETURN|REG AIR| blithely express packages brea| +29258|286665|11676|2|48|79279.20|0.05|0.01|R|F|1994-12-31|1994-12-06|1995-01-11|COLLECT COD|RAIL|ic asymptotes. slyly even the| +29258|964688|27208|3|20|35052.80|0.02|0.03|R|F|1994-12-30|1994-12-07|1995-01-16|TAKE BACK RETURN|AIR|lithely unusual dep| +29259|518590|18591|1|11|17694.27|0.09|0.08|N|O|1998-09-18|1998-07-21|1998-09-19|DELIVER IN PERSON|FOB|r accounts around the furio| +29259|941774|29329|2|5|9078.65|0.06|0.08|N|O|1998-08-21|1998-06-29|1998-09-09|NONE|FOB|deposits nag fu| +29259|394240|31762|3|22|29353.06|0.10|0.06|N|O|1998-07-19|1998-08-18|1998-07-20|COLLECT COD|TRUCK|ornis: furiously final pint| +29259|978744|3783|4|17|30985.90|0.07|0.04|N|O|1998-07-01|1998-07-27|1998-07-08|NONE|TRUCK| even pinto beans affix whithout the fu| +29259|734681|34682|5|38|65194.70|0.03|0.05|N|O|1998-06-29|1998-07-02|1998-07-06|TAKE BACK RETURN|SHIP|s engage busy| +29259|769001|31517|6|26|27819.22|0.04|0.01|N|O|1998-06-25|1998-07-15|1998-07-11|TAKE BACK RETURN|SHIP|the regular asym| +29260|902537|2538|1|34|52342.66|0.07|0.07|N|O|1997-09-04|1997-11-01|1997-09-21|DELIVER IN PERSON|RAIL|sts. furiously| +29260|935217|10254|2|27|33808.59|0.08|0.04|N|O|1997-11-30|1997-09-28|1997-12-15|DELIVER IN PERSON|TRUCK|ay against the blithely spec| +29260|182126|44630|3|17|20538.04|0.10|0.04|N|O|1997-10-16|1997-11-14|1997-10-22|COLLECT COD|RAIL|th the even foxes wake furiously abov| +29261|577828|40340|1|44|83855.20|0.10|0.08|N|O|1996-02-13|1996-03-26|1996-02-14|NONE|REG AIR|ajole closely. blithely even account| +29261|545947|45948|2|48|95660.16|0.05|0.00|N|O|1996-05-08|1996-04-27|1996-06-04|NONE|SHIP|ructions about the doggedl| +29261|730614|5643|3|9|14801.22|0.09|0.00|N|O|1996-02-26|1996-03-14|1996-02-29|COLLECT COD|RAIL|ously ironic foxes wake above| +29261|423157|35666|4|48|51846.24|0.07|0.01|N|O|1996-02-28|1996-03-25|1996-03-11|NONE|FOB|ng the speci| +29262|98106|10608|1|44|48580.40|0.09|0.01|A|F|1993-01-03|1993-01-22|1993-01-13|TAKE BACK RETURN|AIR|oss the pending, sly ideas. pat| +29262|865111|15112|2|29|31206.03|0.04|0.08|R|F|1993-02-24|1992-12-26|1993-03-01|DELIVER IN PERSON|TRUCK|regular dependencies b| +29263|616192|3729|1|36|39893.76|0.00|0.01|A|F|1993-03-05|1993-03-11|1993-04-02|DELIVER IN PERSON|TRUCK| about the foxes. fluffily ironic d| +29288|137846|37847|1|48|90424.32|0.04|0.04|R|F|1994-08-22|1994-11-18|1994-09-07|DELIVER IN PERSON|RAIL|es use blith| +29288|763558|26074|2|31|50267.12|0.10|0.04|A|F|1994-09-03|1994-11-15|1994-09-24|COLLECT COD|TRUCK| special ideas haggle quickly bli| +29288|115992|3499|3|2|4015.98|0.03|0.06|R|F|1994-08-25|1994-11-14|1994-09-14|DELIVER IN PERSON|REG AIR|hely. bold deposits wake blithely after t| +29289|688673|13700|1|30|49849.20|0.01|0.05|N|O|1998-07-24|1998-08-16|1998-08-14|TAKE BACK RETURN|RAIL|dolites wake final instructions. | +29289|516463|3994|2|15|22191.60|0.00|0.01|N|O|1998-06-24|1998-08-01|1998-07-02|COLLECT COD|AIR| final platelets. ideas sle| +29289|180260|5267|3|49|65672.74|0.01|0.02|N|O|1998-09-28|1998-07-06|1998-10-06|NONE|SHIP|t the express packages| +29290|798776|36322|1|16|29995.84|0.00|0.07|R|F|1993-09-06|1993-10-15|1993-09-18|COLLECT COD|MAIL|ckages among the furiously dogged | +29290|20902|8403|2|16|29166.40|0.03|0.00|R|F|1993-08-03|1993-09-04|1993-08-31|DELIVER IN PERSON|RAIL|ys careful | +29290|294818|7324|3|40|72512.00|0.09|0.07|R|F|1993-11-13|1993-08-21|1993-12-13|DELIVER IN PERSON|AIR|eodolites; quickly even accounts c| +29290|998560|48561|4|43|71316.36|0.08|0.05|R|F|1993-08-27|1993-10-07|1993-09-02|DELIVER IN PERSON|AIR|lites boost along the unusual deposi| +29290|783524|33525|5|1|1607.49|0.05|0.02|A|F|1993-10-26|1993-08-16|1993-11-04|NONE|SHIP|lithely ironic requests. fluffily s| +29290|671323|21324|6|24|31062.96|0.00|0.05|R|F|1993-07-23|1993-09-12|1993-08-21|COLLECT COD|TRUCK|deposits before the blithely final ideas| +29290|922379|9934|7|1|1401.33|0.09|0.08|A|F|1993-10-14|1993-09-27|1993-10-18|COLLECT COD|MAIL|uickly ironic theodolites.| +29291|423401|48418|1|2|2648.76|0.05|0.04|A|F|1993-01-31|1993-01-07|1993-02-06|NONE|REG AIR| alongside of the fina| +29291|89724|27228|2|15|25705.80|0.01|0.05|R|F|1992-12-12|1993-02-01|1992-12-24|DELIVER IN PERSON|SHIP|o beans are through the ironic | +29291|982317|44837|3|9|12593.43|0.02|0.00|A|F|1993-03-14|1993-02-18|1993-03-30|TAKE BACK RETURN|AIR|ost slyly forges. slyly bold acco| +29291|795796|33342|4|15|28376.40|0.01|0.03|R|F|1993-03-15|1993-03-06|1993-04-05|DELIVER IN PERSON|RAIL|side of the deposits. final, final pinto be| +29291|931231|43750|5|13|16408.47|0.02|0.03|R|F|1993-02-25|1993-03-01|1993-03-24|TAKE BACK RETURN|TRUCK|cajole enticingly pending, expr| +29291|192318|42319|6|21|29616.51|0.00|0.05|A|F|1993-01-04|1993-01-16|1993-01-21|COLLECT COD|RAIL|eas. careful deposits nag | +29291|286294|36295|7|40|51211.20|0.01|0.00|R|F|1992-12-25|1993-01-15|1993-01-23|TAKE BACK RETURN|TRUCK|ng to the slyly iro| +29292|735798|23341|1|11|20171.36|0.04|0.07|R|F|1993-11-13|1993-12-03|1993-12-02|DELIVER IN PERSON|FOB| across the carefully expres| +29292|550886|25909|2|5|9684.30|0.03|0.02|A|F|1993-11-03|1993-11-22|1993-11-22|NONE|AIR| sleep furiously car| +29292|730614|5643|3|29|47692.82|0.01|0.01|A|F|1994-02-01|1993-11-11|1994-02-19|DELIVER IN PERSON|FOB|posits. quickly pending ins| +29292|422453|34962|4|13|17880.59|0.10|0.08|A|F|1993-12-12|1993-11-07|1994-01-01|TAKE BACK RETURN|FOB|osits. fina| +29292|153460|3461|5|11|16648.06|0.01|0.02|A|F|1993-12-10|1993-11-05|1993-12-15|NONE|AIR|iously pending foxes | +29293|149055|49056|1|19|20976.95|0.08|0.05|R|F|1992-11-14|1993-01-24|1992-11-29|COLLECT COD|FOB|uriously bold| +29293|158784|46294|2|26|47912.28|0.02|0.08|R|F|1993-02-04|1993-01-11|1993-03-02|DELIVER IN PERSON|RAIL| special theodolites cajole c| +29293|679195|29196|3|13|15264.08|0.01|0.06|A|F|1993-01-14|1993-01-26|1993-02-03|NONE|SHIP|he carefully express ide| +29293|218058|43067|4|17|16592.68|0.06|0.04|A|F|1993-01-29|1992-12-21|1993-02-23|DELIVER IN PERSON|TRUCK|uffily. regular, bold de| +29293|885051|35052|5|19|19684.19|0.00|0.03|R|F|1993-03-04|1993-01-06|1993-03-07|TAKE BACK RETURN|MAIL|y express packages nag blit| +29293|48047|35548|6|11|10945.44|0.09|0.08|A|F|1993-03-08|1993-01-18|1993-03-15|COLLECT COD|SHIP|e thinly iron| +29293|511030|48561|7|23|23943.23|0.07|0.00|A|F|1992-11-28|1993-01-27|1992-12-25|COLLECT COD|REG AIR|, bold pinto be| +29294|868719|31237|1|28|47254.76|0.10|0.06|A|F|1992-10-06|1992-08-29|1992-10-08|TAKE BACK RETURN|RAIL| asymptotes sleep among the fluffil| +29294|545533|33064|2|39|61561.89|0.00|0.01|A|F|1992-10-22|1992-09-21|1992-11-11|TAKE BACK RETURN|SHIP| believe slyly dogged| +29295|630437|42950|1|39|53328.60|0.00|0.02|N|O|1995-07-01|1995-04-14|1995-07-26|TAKE BACK RETURN|RAIL| pending accounts doze slyly c| +29295|747757|47758|2|45|81212.40|0.02|0.04|A|F|1995-04-30|1995-04-18|1995-05-16|DELIVER IN PERSON|TRUCK|s nag. quickly silent requests inte| +29295|542254|4765|3|47|60922.81|0.07|0.07|R|F|1995-05-19|1995-04-22|1995-06-02|NONE|FOB|ate furiously around the slyly i| +29320|265083|15084|1|28|29345.96|0.09|0.05|A|F|1992-03-26|1992-05-03|1992-03-29|COLLECT COD|REG AIR|, regular | +29320|239623|27136|2|6|9375.66|0.10|0.01|A|F|1992-02-20|1992-04-07|1992-03-19|TAKE BACK RETURN|FOB|onic excuse| +29320|327554|15073|3|8|12652.32|0.01|0.01|R|F|1992-02-17|1992-05-04|1992-03-05|NONE|SHIP|platelets wake sl| +29320|183592|46096|4|19|31836.21|0.03|0.05|R|F|1992-03-15|1992-04-22|1992-03-31|DELIVER IN PERSON|TRUCK|y regular accounts en| +29321|178007|15517|1|27|29295.00|0.03|0.07|R|F|1995-01-22|1995-02-06|1995-02-10|TAKE BACK RETURN|TRUCK|regular foxes. flu| +29321|749096|24125|2|14|16030.84|0.04|0.03|A|F|1995-04-05|1995-03-03|1995-05-04|TAKE BACK RETURN|SHIP|he quickly regu| +29321|47448|9949|3|47|65585.68|0.08|0.07|R|F|1995-02-12|1995-02-16|1995-03-12|NONE|MAIL|ht sleep furiou| +29321|457479|45007|4|11|15800.95|0.02|0.08|A|F|1995-04-05|1995-01-23|1995-05-04|COLLECT COD|RAIL|xpress foxes detect slyly across| +29322|542920|17941|1|22|43183.80|0.07|0.07|N|O|1997-02-01|1996-12-08|1997-03-02|DELIVER IN PERSON|TRUCK|riously about the p| +29322|856224|18742|2|36|42486.48|0.06|0.08|N|O|1997-02-03|1996-12-09|1997-02-11|NONE|REG AIR|posits lose ideas. furiously sile| +29322|552791|15303|3|42|77438.34|0.08|0.02|N|O|1996-12-12|1996-12-28|1997-01-09|DELIVER IN PERSON|TRUCK|boost accordin| +29322|756360|43906|4|4|5665.32|0.01|0.04|N|O|1997-02-08|1996-12-04|1997-02-20|DELIVER IN PERSON|AIR|ual deposits against the silent pa| +29322|129206|29207|5|20|24704.00|0.09|0.01|N|O|1997-01-20|1997-01-26|1997-01-25|TAKE BACK RETURN|REG AIR|luffily even deposits. blithely unusual| +29323|888674|1192|1|32|53204.16|0.07|0.08|N|O|1997-09-01|1997-09-16|1997-09-03|DELIVER IN PERSON|AIR|fully bold she| +29323|927244|39763|2|30|38136.00|0.08|0.07|N|O|1997-10-14|1997-08-16|1997-10-30|COLLECT COD|FOB|ly blithely even packages. carefully fina| +29323|186717|49221|3|39|70344.69|0.02|0.06|N|O|1997-08-10|1997-09-04|1997-09-02|TAKE BACK RETURN|MAIL|foxes. excuses sleep carefully furiously re| +29323|145426|20431|4|29|42671.18|0.07|0.04|N|O|1997-08-07|1997-08-13|1997-08-31|DELIVER IN PERSON|FOB|nusual pint| +29323|168930|18931|5|13|25986.09|0.09|0.05|N|O|1997-10-04|1997-09-11|1997-10-05|COLLECT COD|RAIL|ular requests. special de| +29323|190721|40722|6|15|27175.80|0.04|0.08|N|O|1997-08-12|1997-08-27|1997-08-18|TAKE BACK RETURN|FOB|carefully even p| +29323|437700|12717|7|16|26202.88|0.00|0.06|N|O|1997-07-09|1997-08-06|1997-08-07|TAKE BACK RETURN|REG AIR|the slyly ironic T| +29324|407439|7440|1|34|45777.94|0.05|0.04|A|F|1995-03-10|1995-03-15|1995-03-13|NONE|MAIL|ts along the u| +29324|824936|24937|2|42|78157.38|0.09|0.00|N|F|1995-05-21|1995-04-24|1995-06-19|NONE|MAIL|slyly regular excuses poach slyly| +29324|693547|31087|3|39|60079.89|0.07|0.05|A|F|1995-03-22|1995-03-13|1995-03-31|TAKE BACK RETURN|FOB|c excuses are slyly boldly fina| +29324|431493|31494|4|24|34187.28|0.06|0.05|A|F|1995-02-13|1995-03-25|1995-03-15|DELIVER IN PERSON|SHIP|carefully according to the quickly spe| +29324|95985|20988|5|6|11885.88|0.07|0.08|R|F|1995-04-02|1995-05-09|1995-04-17|COLLECT COD|MAIL|ronic instr| +29324|219317|19318|6|32|39561.60|0.10|0.03|R|F|1995-04-06|1995-03-16|1995-04-27|TAKE BACK RETURN|FOB|lyly on the carefully ir| +29324|60240|47744|7|16|19203.84|0.07|0.01|R|F|1995-03-13|1995-03-31|1995-03-15|NONE|RAIL| idle deposits beli| +29325|449940|24957|1|9|17009.28|0.07|0.00|N|O|1996-01-02|1996-02-09|1996-01-18|DELIVER IN PERSON|REG AIR|y beyond the re| +29325|138472|25979|2|3|4531.41|0.03|0.07|N|O|1996-02-21|1996-01-22|1996-02-25|COLLECT COD|FOB|ly ironic foxes dazzle regu| +29325|297303|47304|3|46|59813.34|0.00|0.01|N|O|1996-01-08|1996-01-31|1996-02-03|TAKE BACK RETURN|RAIL|ly even requests| +29325|771187|33703|4|33|41518.95|0.08|0.00|N|O|1996-03-25|1996-01-20|1996-04-04|COLLECT COD|FOB| pinto beans mold final re| +29325|336252|36253|5|36|46376.64|0.07|0.01|N|O|1996-03-27|1996-02-05|1996-04-26|TAKE BACK RETURN|MAIL|cajole deposits. furio| +29326|464477|14478|1|17|24504.65|0.05|0.06|R|F|1994-03-14|1994-03-18|1994-04-12|TAKE BACK RETURN|REG AIR|s. dependencies wake ca| +29326|448974|23991|2|12|23075.40|0.09|0.08|R|F|1994-03-25|1994-03-03|1994-04-18|DELIVER IN PERSON|SHIP|ffily packages. care| +29327|587817|12840|1|36|68572.44|0.04|0.06|R|F|1994-03-05|1994-01-24|1994-04-02|DELIVER IN PERSON|SHIP|etect quickly | +29352|895123|45124|1|36|40250.88|0.05|0.08|R|F|1992-09-05|1992-09-24|1992-09-12|NONE|SHIP|deposits bel| +29352|321003|8522|2|17|17407.83|0.10|0.07|A|F|1992-09-01|1992-10-09|1992-09-28|TAKE BACK RETURN|RAIL|efully ironic accounts. fu| +29353|591711|29245|1|29|52278.01|0.04|0.08|R|F|1992-08-15|1992-08-03|1992-08-22|DELIVER IN PERSON|SHIP| pinto beans cajole slyly ironic ideas| +29353|884725|9760|2|38|64967.84|0.08|0.07|R|F|1992-08-17|1992-08-09|1992-09-10|TAKE BACK RETURN|RAIL|ounts against the even, ir| +29353|565252|27764|3|17|22392.91|0.07|0.03|A|F|1992-09-24|1992-07-10|1992-10-09|NONE|SHIP|e after the deposits. furiously fina| +29353|187395|12402|4|33|48918.87|0.04|0.05|A|F|1992-08-01|1992-07-01|1992-08-27|COLLECT COD|TRUCK|ng instructi| +29353|537834|345|5|21|39308.01|0.01|0.00|A|F|1992-07-07|1992-07-31|1992-08-02|NONE|FOB| fluffily unusual ideas. close, sp| +29354|750333|25364|1|28|38732.40|0.04|0.04|N|O|1998-07-14|1998-07-23|1998-07-15|TAKE BACK RETURN|FOB|gage alongside of the furiously reg| +29354|839975|27524|2|33|63192.69|0.06|0.06|N|O|1998-07-30|1998-06-27|1998-08-29|COLLECT COD|RAIL|arhorses al| +29354|450760|25779|3|36|61586.64|0.09|0.01|N|O|1998-05-18|1998-06-18|1998-06-05|DELIVER IN PERSON|SHIP|e slyly ironic reques| +29354|906872|6873|4|45|84547.35|0.07|0.01|N|O|1998-06-27|1998-08-05|1998-07-06|COLLECT COD|MAIL|lly regular requests. blithe| +29354|783414|8445|5|20|29947.60|0.02|0.00|N|O|1998-06-22|1998-07-09|1998-07-10|COLLECT COD|SHIP|cial foxes. blithely permanent tithes a| +29354|833363|33364|6|2|2592.64|0.07|0.01|N|O|1998-07-03|1998-07-05|1998-07-29|DELIVER IN PERSON|SHIP|he express, special d| +29354|325136|12655|7|34|39478.08|0.02|0.07|N|O|1998-08-24|1998-06-25|1998-09-23|NONE|SHIP|ar deposits integrate furiously | +29355|558326|33349|1|12|16611.60|0.09|0.08|N|O|1998-06-25|1998-05-14|1998-07-17|COLLECT COD|AIR|platelets acco| +29355|775443|474|2|24|36441.84|0.00|0.01|N|O|1998-08-12|1998-05-17|1998-09-07|NONE|AIR|dolites. theodolites wake against the ca| +29355|858749|21267|3|24|40984.80|0.02|0.02|N|O|1998-05-28|1998-07-12|1998-05-30|COLLECT COD|MAIL|efully ironic a| +29355|982560|45080|4|25|41063.00|0.01|0.07|N|O|1998-05-21|1998-05-18|1998-05-23|NONE|TRUCK|eodolites sleep bol| +29356|586730|11753|1|2|3633.42|0.00|0.08|N|O|1997-07-12|1997-07-22|1997-07-31|TAKE BACK RETURN|MAIL|into beans haggle along the bold a| +29356|156004|31011|2|21|22260.00|0.07|0.03|N|O|1997-08-23|1997-06-13|1997-09-12|NONE|RAIL|ests; slyly pending | +29357|85400|22904|1|10|13854.00|0.06|0.06|N|O|1996-03-22|1996-04-12|1996-03-25|COLLECT COD|FOB|uld have to haggle aft| +29357|301338|38857|2|31|41518.92|0.06|0.05|N|O|1996-05-03|1996-03-23|1996-05-26|NONE|MAIL| beans sleep furiously. ironic foxes w| +29357|580940|5963|3|27|54564.84|0.08|0.05|N|O|1996-05-12|1996-03-29|1996-05-28|NONE|MAIL| even accounts along the iro| +29357|853314|15832|4|31|39285.37|0.02|0.03|N|O|1996-02-26|1996-04-28|1996-03-25|COLLECT COD|TRUCK|ely unusual packages are fl| +29357|643838|18863|5|25|44545.00|0.03|0.06|N|O|1996-03-26|1996-05-07|1996-04-12|COLLECT COD|SHIP|y quickly express| +29358|301424|26437|1|34|48463.94|0.04|0.06|N|O|1996-06-29|1996-05-20|1996-07-01|COLLECT COD|REG AIR|t the foxes. ideas wake closely. re| +29359|65963|40966|1|17|32792.32|0.05|0.02|R|F|1993-05-14|1993-03-19|1993-05-22|NONE|AIR|ar packages. final instructio| +29359|635721|35722|2|22|36447.18|0.09|0.07|R|F|1993-03-29|1993-05-01|1993-04-09|NONE|SHIP|l sentimen| +29359|556316|43850|3|44|60380.76|0.01|0.05|A|F|1993-03-18|1993-05-03|1993-04-04|TAKE BACK RETURN|MAIL|engage furiously. fi| +29359|994078|6598|4|26|30472.78|0.10|0.00|R|F|1993-04-20|1993-03-30|1993-05-01|NONE|AIR|foxes boost. fu| +29384|313741|1260|1|36|63170.28|0.04|0.07|R|F|1993-11-18|1993-10-04|1993-12-02|COLLECT COD|TRUCK|refully among the carefully regular f| +29385|252874|15380|1|7|12788.02|0.05|0.02|A|F|1992-10-31|1992-11-03|1992-11-06|TAKE BACK RETURN|TRUCK|riously regular | +29385|50973|25976|2|25|48099.25|0.04|0.07|A|F|1992-09-10|1992-11-10|1992-10-04|TAKE BACK RETURN|FOB| can boost theo| +29385|686980|36981|3|23|45239.85|0.02|0.06|A|F|1992-09-26|1992-11-05|1992-10-09|TAKE BACK RETURN|MAIL| somas. enticingly silent reque| +29386|59763|9764|1|9|15504.84|0.04|0.02|N|O|1996-07-02|1996-07-07|1996-07-16|TAKE BACK RETURN|REG AIR|ayers. quickly unusual ideas boos| +29387|639667|14692|1|30|48198.90|0.08|0.03|N|O|1996-05-27|1996-04-04|1996-06-16|TAKE BACK RETURN|SHIP|sts boost against the requests. furiously p| +29387|879434|41952|2|4|5653.56|0.02|0.02|N|O|1996-03-02|1996-03-07|1996-03-21|NONE|SHIP|ly near the carefull| +29387|645207|45208|3|38|43782.46|0.04|0.02|N|O|1996-02-28|1996-03-06|1996-03-16|COLLECT COD|SHIP|ar, ironic dolphins are furiously | +29387|979779|29780|4|39|72490.47|0.00|0.06|N|O|1996-05-19|1996-04-10|1996-06-10|TAKE BACK RETURN|AIR|resias. deposits wake | +29388|934785|47304|1|20|36394.80|0.05|0.07|A|F|1994-05-04|1994-05-22|1994-05-12|TAKE BACK RETURN|AIR|s the instructions| +29388|916571|29090|2|13|20637.89|0.05|0.03|R|F|1994-05-16|1994-05-23|1994-05-19|TAKE BACK RETURN|FOB|its. carefully bold accounts daz| +29388|799047|49048|3|41|46986.41|0.01|0.06|A|F|1994-07-01|1994-05-18|1994-07-07|COLLECT COD|FOB|cies haggle. furi| +29388|579504|4527|4|4|6333.92|0.10|0.00|A|F|1994-04-24|1994-04-25|1994-05-07|TAKE BACK RETURN|RAIL|ests lose quic| +29388|715664|28179|5|24|40311.12|0.00|0.02|A|F|1994-06-18|1994-06-06|1994-07-14|COLLECT COD|AIR|le. carefully iro| +29389|5797|30798|1|3|5108.37|0.06|0.06|N|O|1997-02-22|1997-03-18|1997-03-08|TAKE BACK RETURN|TRUCK|he blithely sil| +29389|422762|47779|2|9|15162.66|0.03|0.00|N|O|1997-01-29|1997-02-01|1997-02-13|COLLECT COD|SHIP| slyly bold escapade| +29389|359873|9874|3|23|44455.78|0.04|0.04|N|O|1997-03-04|1997-02-01|1997-03-18|NONE|REG AIR|kages. ironic, silent requests sleep fu| +29389|384764|47272|4|38|70252.50|0.02|0.06|N|O|1997-02-20|1997-03-28|1997-03-19|TAKE BACK RETURN|RAIL|re according to the slyly regular dolphin| +29389|721936|46965|5|39|76358.10|0.06|0.00|N|O|1997-03-13|1997-03-15|1997-04-05|NONE|MAIL| accounts | +29390|88308|38309|1|10|12963.00|0.03|0.01|A|F|1992-08-16|1992-07-06|1992-08-20|DELIVER IN PERSON|FOB|al sauternes. unu| +29391|150428|25435|1|50|73921.00|0.01|0.08|N|O|1996-08-21|1996-09-27|1996-09-10|TAKE BACK RETURN|FOB|uests. furiously final theodolites | +29391|234959|47464|2|33|62500.02|0.08|0.05|N|O|1996-07-30|1996-10-11|1996-08-19|COLLECT COD|TRUCK|ep carefully along t| +29391|952140|14660|3|41|48876.10|0.00|0.04|N|O|1996-09-03|1996-09-17|1996-09-10|COLLECT COD|RAIL|slyly even dolphins. sl| +29391|600235|37772|4|46|52219.20|0.09|0.03|N|O|1996-09-28|1996-09-29|1996-10-24|DELIVER IN PERSON|REG AIR|es. bold deposits nag blithely above the fl| +29391|137430|37431|5|9|13206.87|0.00|0.03|N|O|1996-10-12|1996-09-01|1996-10-21|COLLECT COD|REG AIR|yly. fluffy theod| +29391|771832|46863|6|5|9519.00|0.04|0.04|N|O|1996-08-17|1996-10-07|1996-08-18|DELIVER IN PERSON|SHIP|regular, final foxes print carefull| +29391|175265|272|7|46|61651.96|0.06|0.05|N|O|1996-08-06|1996-09-25|1996-08-08|DELIVER IN PERSON|SHIP|ts after the silent re| +29416|672341|47368|1|10|13133.10|0.05|0.02|R|F|1994-09-22|1994-10-13|1994-10-06|DELIVER IN PERSON|REG AIR|lites wake blithely pending | +29416|25055|12556|2|13|12740.65|0.00|0.03|A|F|1994-09-26|1994-11-25|1994-10-13|COLLECT COD|MAIL|ructions could have to cajole silently af| +29416|84932|22436|3|47|90095.71|0.01|0.06|A|F|1994-10-16|1994-10-07|1994-11-08|NONE|RAIL|ully even platelets. even deposits c| +29416|442920|17937|4|17|31669.30|0.01|0.06|R|F|1994-11-24|1994-10-09|1994-12-01|DELIVER IN PERSON|TRUCK|ding to the regular, ironic pint| +29416|145555|33062|5|24|38413.20|0.08|0.00|A|F|1994-11-19|1994-10-13|1994-11-27|COLLECT COD|MAIL|accounts nag. blithely special deposits | +29416|327325|14844|6|18|24341.58|0.10|0.07|R|F|1994-11-14|1994-11-06|1994-12-07|DELIVER IN PERSON|MAIL|eposits sle| +29416|339624|27143|7|24|39926.64|0.09|0.00|A|F|1994-11-25|1994-10-23|1994-12-14|DELIVER IN PERSON|TRUCK|usly alongside of the | +29417|51481|26484|1|39|55866.72|0.06|0.04|N|O|1997-05-09|1997-04-27|1997-05-16|NONE|REG AIR|accounts according to the pending theodo| +29418|340547|3054|1|35|55563.55|0.07|0.03|A|F|1994-05-19|1994-08-05|1994-06-17|DELIVER IN PERSON|MAIL|g blithely furiously special accounts. iro| +29419|701048|26077|1|20|20980.20|0.10|0.06|N|O|1997-11-11|1997-12-05|1997-11-20|DELIVER IN PERSON|AIR|e deposits.| +29419|508761|21272|2|3|5309.22|0.04|0.04|N|O|1998-01-05|1997-12-08|1998-01-12|NONE|AIR| deposits boost blithely slyly final d| +29419|734218|34219|3|14|17530.52|0.00|0.04|N|O|1997-10-11|1997-11-01|1997-11-08|COLLECT COD|AIR|ar accounts are about the ir| +29419|991311|28869|4|4|5609.08|0.07|0.00|N|O|1998-01-17|1997-12-13|1998-01-18|TAKE BACK RETURN|REG AIR|ly according to the | +29419|961234|23754|5|47|60873.93|0.07|0.08|N|O|1997-10-03|1997-12-23|1997-11-02|NONE|SHIP|ic dependencie| +29419|445446|45447|6|44|61222.48|0.00|0.01|N|O|1997-12-26|1997-10-27|1998-01-06|DELIVER IN PERSON|SHIP|unusual requests. regular foxes use: i| +29420|756931|19447|1|49|97407.10|0.03|0.06|A|F|1993-05-30|1993-07-29|1993-06-06|NONE|FOB|round the blithely eve| +29420|723716|48745|2|40|69587.20|0.07|0.05|R|F|1993-05-30|1993-07-23|1993-05-31|NONE|TRUCK|even theodol| +29421|128380|3385|1|27|38026.26|0.07|0.08|A|F|1993-01-10|1993-01-29|1993-02-03|DELIVER IN PERSON|TRUCK|ructions after th| +29421|681497|44011|2|31|45832.26|0.05|0.01|R|F|1993-01-08|1993-02-01|1993-02-02|DELIVER IN PERSON|RAIL|ns. regular accounts haggle carefully e| +29421|919861|19862|3|38|71471.16|0.02|0.03|A|F|1993-02-16|1993-01-14|1993-02-22|COLLECT COD|FOB|ly regular requests. furiou| +29421|87384|12387|4|18|24684.84|0.09|0.03|R|F|1993-01-16|1992-12-23|1993-02-10|DELIVER IN PERSON|AIR|ts wake carefully furiou| +29421|657778|32805|5|7|12150.18|0.00|0.00|A|F|1993-02-25|1993-01-09|1993-03-07|TAKE BACK RETURN|REG AIR|lithely unusu| +29422|107803|45310|1|27|48891.60|0.00|0.07|N|O|1995-08-31|1995-10-07|1995-09-24|NONE|SHIP|ing accounts are furiously. fu| +29422|837081|49598|2|36|36649.44|0.08|0.05|N|O|1995-12-08|1995-10-18|1995-12-10|COLLECT COD|FOB| ironic foxes hag| +29423|594481|32015|1|20|31509.20|0.03|0.04|N|O|1998-04-24|1998-03-04|1998-05-19|DELIVER IN PERSON|FOB| packages sleep carefully | +29423|426562|26563|2|39|58053.06|0.06|0.08|N|O|1998-02-27|1998-03-26|1998-03-26|DELIVER IN PERSON|RAIL|ilent pinto beans. packages a| +29423|220707|20708|3|28|45575.32|0.07|0.02|N|O|1998-01-03|1998-02-19|1998-01-14|DELIVER IN PERSON|TRUCK| final pinto beans. slyly final theodolit| +29448|579948|17482|1|48|97340.16|0.10|0.02|N|O|1996-01-04|1996-01-11|1996-02-03|DELIVER IN PERSON|AIR|ng asymptotes nag quickly| +29448|180518|43022|2|44|70334.44|0.08|0.07|N|O|1996-02-14|1996-02-10|1996-03-02|COLLECT COD|TRUCK|busily accord| +29448|958396|45954|3|31|45084.85|0.06|0.00|N|O|1995-11-27|1996-01-29|1995-12-21|DELIVER IN PERSON|REG AIR|haggle account| +29448|751067|38613|4|14|15652.42|0.09|0.07|N|O|1995-12-07|1995-12-28|1995-12-26|TAKE BACK RETURN|TRUCK|nusual courts. slyly | +29448|170827|33331|5|30|56934.60|0.09|0.05|N|O|1996-02-03|1996-02-22|1996-02-22|NONE|AIR|cally furiously silent gifts. sl| +29448|75944|947|6|44|84477.36|0.03|0.06|N|O|1995-12-29|1996-01-06|1996-01-20|COLLECT COD|SHIP|lar accounts a| +29449|916066|41103|1|7|7574.14|0.08|0.05|N|O|1998-03-15|1998-04-24|1998-04-14|DELIVER IN PERSON|TRUCK|en decoys. carefully final p| +29449|319802|44815|2|15|27326.85|0.05|0.00|N|O|1998-05-07|1998-05-06|1998-06-04|TAKE BACK RETURN|TRUCK|ites mold even asymptotes. daring, r| +29449|909074|34111|3|26|28158.78|0.10|0.02|N|O|1998-04-02|1998-05-09|1998-04-30|COLLECT COD|REG AIR|o beans. blithely unusual foxes engage. f| +29449|797492|35038|4|2|3178.92|0.08|0.00|N|O|1998-04-03|1998-05-13|1998-04-05|TAKE BACK RETURN|REG AIR|egular, sp| +29450|344663|19676|1|43|73428.95|0.08|0.08|R|F|1992-03-17|1992-04-09|1992-04-05|COLLECT COD|SHIP|nding excuses. ironic theodolit| +29450|748324|10839|2|13|17839.77|0.08|0.06|A|F|1992-06-10|1992-05-04|1992-06-13|TAKE BACK RETURN|MAIL|symptotes. ironic accounts along the in| +29450|72753|35255|3|20|34515.00|0.02|0.07|R|F|1992-06-11|1992-05-03|1992-06-29|DELIVER IN PERSON|AIR| unusual instructions are s| +29450|744615|7130|4|24|39829.92|0.00|0.01|R|F|1992-04-12|1992-05-13|1992-04-17|NONE|AIR| up the final ideas are along the fluf| +29450|742022|29565|5|45|47879.55|0.01|0.08|A|F|1992-03-28|1992-04-17|1992-04-06|NONE|TRUCK|gular accounts. even accounts alongs| +29450|149975|12478|6|41|83023.77|0.08|0.01|A|F|1992-03-19|1992-05-04|1992-04-01|TAKE BACK RETURN|MAIL|ronic ideas breach | +29451|62560|25062|1|21|31973.76|0.04|0.01|N|O|1997-12-22|1997-10-24|1998-01-10|DELIVER IN PERSON|REG AIR|lyly. regular inst| +29452|580512|30513|1|16|25479.84|0.03|0.00|N|O|1997-05-17|1997-05-20|1997-06-10|COLLECT COD|RAIL|e fluffily unusual instructions| +29452|660114|35141|2|34|36518.72|0.10|0.06|N|O|1997-04-28|1997-07-02|1997-05-20|DELIVER IN PERSON|TRUCK|ts use. blit| +29452|525831|13362|3|42|77986.02|0.08|0.04|N|O|1997-07-16|1997-05-20|1997-08-03|DELIVER IN PERSON|RAIL| pending platelets wake ca| +29452|630312|42825|4|8|9938.24|0.00|0.01|N|O|1997-05-27|1997-06-18|1997-05-31|DELIVER IN PERSON|FOB|ilent excuses nag slyly dependencies-- fi| +29452|639317|39318|5|8|10050.24|0.03|0.00|N|O|1997-04-26|1997-05-27|1997-05-09|DELIVER IN PERSON|FOB|e blithely even pinto beans. qu| +29453|142921|5424|1|36|70701.12|0.02|0.04|N|O|1995-09-11|1995-08-20|1995-09-18|NONE|RAIL|ss the special, furious ideas. furiously | +29454|398674|48675|1|16|28362.56|0.09|0.07|A|F|1993-04-12|1993-02-13|1993-05-10|DELIVER IN PERSON|SHIP|y. idly even in| +29454|512232|49763|2|26|32349.46|0.06|0.05|R|F|1993-01-26|1993-02-10|1993-01-31|DELIVER IN PERSON|MAIL|s-- regula| +29454|75527|38029|3|50|75126.00|0.01|0.00|R|F|1993-04-15|1993-01-25|1993-04-21|NONE|TRUCK|luffily final courts sleep c| +29454|382286|44794|4|6|8209.62|0.04|0.01|R|F|1993-02-25|1993-01-22|1993-03-03|DELIVER IN PERSON|TRUCK|sheaves. blithely| +29455|939291|14328|1|34|45228.50|0.10|0.07|N|O|1996-10-02|1996-11-11|1996-10-09|DELIVER IN PERSON|TRUCK|tions. slyly regular requests use careful| +29455|651235|1236|2|4|4744.80|0.01|0.03|N|O|1996-09-28|1996-11-14|1996-10-27|COLLECT COD|RAIL|are above the blithely regular instru| +29455|296543|46544|3|48|73897.44|0.09|0.03|N|O|1996-08-25|1996-09-24|1996-08-27|COLLECT COD|RAIL|ng foxes use blithely along| +29455|986430|23988|4|28|42458.92|0.04|0.08|N|O|1996-11-24|1996-11-11|1996-12-10|COLLECT COD|TRUCK| haggle fluffily along the carefully unusu| +29455|913969|26488|5|21|41641.32|0.08|0.04|N|O|1996-11-28|1996-09-22|1996-11-30|NONE|AIR|ending foxes according | +29480|76569|26570|1|5|7727.80|0.09|0.07|A|F|1992-11-29|1992-11-26|1992-12-16|DELIVER IN PERSON|MAIL|blithely regul| +29480|889107|14142|2|26|28497.56|0.07|0.00|R|F|1992-10-24|1992-12-03|1992-11-06|COLLECT COD|FOB|unts. unusual pinto beans according | +29480|219065|44074|3|23|22633.15|0.01|0.03|A|F|1992-10-29|1993-01-01|1992-11-13|COLLECT COD|SHIP|ng the fluff| +29480|812392|49941|4|48|62608.80|0.02|0.01|R|F|1992-11-21|1993-01-15|1992-11-27|TAKE BACK RETURN|SHIP|ts must cajole quickly| +29480|868510|31028|5|47|69488.09|0.05|0.03|A|F|1992-12-27|1992-12-09|1992-12-29|TAKE BACK RETURN|AIR|ily regular requests cajole carefull| +29480|38193|694|6|17|19230.23|0.02|0.07|A|F|1993-02-08|1992-11-30|1993-03-04|COLLECT COD|AIR|carefully final accounts. | +29481|492642|42643|1|7|11442.34|0.01|0.04|N|O|1997-11-13|1997-08-26|1997-12-02|TAKE BACK RETURN|TRUCK| bold, bold accounts. bold asy| +29481|829322|41839|2|49|61312.72|0.01|0.08|N|O|1997-09-27|1997-09-23|1997-10-23|COLLECT COD|TRUCK|pending ideas across the slyly expre| +29481|402778|15287|3|33|55464.75|0.00|0.06|N|O|1997-08-10|1997-09-21|1997-08-24|NONE|AIR|ans wake fluffily at th| +29481|475568|38078|4|39|60198.06|0.09|0.06|N|O|1997-08-07|1997-09-08|1997-08-10|DELIVER IN PERSON|REG AIR|ffix furiously above the pack| +29481|867948|17949|5|24|45981.60|0.03|0.00|N|O|1997-11-17|1997-09-22|1997-12-07|COLLECT COD|FOB|ress dolphins doze | +29481|598081|10593|6|42|49520.52|0.02|0.02|N|O|1997-09-15|1997-10-17|1997-09-30|DELIVER IN PERSON|REG AIR|. ironic war| +29481|933757|8794|7|50|89535.50|0.00|0.02|N|O|1997-09-05|1997-08-28|1997-09-21|DELIVER IN PERSON|TRUCK|onic packages are carefu| +29482|642248|42249|1|38|45227.98|0.09|0.06|R|F|1995-01-09|1994-12-25|1995-01-14|NONE|RAIL|as. furiou| +29482|250747|25758|2|6|10186.38|0.04|0.00|R|F|1995-02-16|1994-12-08|1995-02-28|COLLECT COD|SHIP|. permanently regula| +29482|290382|40383|3|28|38426.36|0.06|0.05|A|F|1994-10-31|1995-01-10|1994-11-17|DELIVER IN PERSON|TRUCK|ronic pinto beans alo| +29482|437734|243|4|29|48479.59|0.04|0.04|R|F|1994-12-25|1994-12-22|1995-01-04|TAKE BACK RETURN|SHIP| the packages na| +29483|614014|1551|1|42|38975.16|0.06|0.00|N|O|1997-09-07|1997-09-11|1997-09-18|DELIVER IN PERSON|MAIL|quickly regular| +29483|729393|41908|2|40|56894.40|0.04|0.06|N|O|1997-09-05|1997-08-05|1997-09-27|DELIVER IN PERSON|TRUCK|uctions. carefully even requests haggle q| +29483|898308|23343|3|24|31350.24|0.00|0.07|N|O|1997-06-26|1997-09-02|1997-07-26|NONE|REG AIR|sly express packages| +29483|854010|29045|4|14|13495.58|0.04|0.07|N|O|1997-08-07|1997-08-12|1997-09-01|COLLECT COD|REG AIR|into beans. slyly regular| +29484|924986|37505|1|36|72393.84|0.09|0.02|N|O|1998-07-11|1998-08-17|1998-07-16|NONE|FOB|y above the ironic deposits.| +29484|231072|43577|2|32|32097.92|0.03|0.05|N|O|1998-09-29|1998-07-26|1998-10-13|TAKE BACK RETURN|RAIL|efully furiously ironic| +29484|624277|49302|3|5|6006.20|0.04|0.01|N|O|1998-08-12|1998-07-04|1998-09-07|COLLECT COD|TRUCK|e requests. ironic packa| +29484|215011|40020|4|7|6482.00|0.09|0.04|N|O|1998-08-14|1998-07-08|1998-08-17|TAKE BACK RETURN|FOB|beans. slyly brave pinto beans sleep.| +29485|938101|25656|1|16|18224.96|0.08|0.04|A|F|1994-01-02|1994-03-28|1994-01-11|NONE|TRUCK|e carefully. sauternes cajole. fu| +29485|650909|25936|2|37|68815.19|0.00|0.02|A|F|1994-02-23|1994-01-31|1994-03-13|NONE|RAIL|ect blithely.| +29485|821254|33771|3|10|11752.10|0.09|0.08|R|F|1994-01-08|1994-02-13|1994-01-21|COLLECT COD|REG AIR|ironic packages are across the carefully i| +29485|807534|20051|4|40|57659.60|0.10|0.06|R|F|1994-01-17|1994-02-15|1994-01-20|DELIVER IN PERSON|SHIP|e across the dependencies. even foxes | +29485|208588|33597|5|28|41903.96|0.05|0.05|R|F|1994-01-16|1994-01-29|1994-02-03|DELIVER IN PERSON|SHIP|owly final packages| +29485|728209|28210|6|8|9897.36|0.06|0.06|R|F|1994-02-24|1994-02-25|1994-02-25|TAKE BACK RETURN|MAIL|ously daring request| +29486|324610|12129|1|29|47403.40|0.00|0.04|N|O|1998-03-31|1998-04-20|1998-04-26|TAKE BACK RETURN|RAIL|ies. requests poach with the | +29486|710827|23342|2|47|86376.13|0.04|0.05|N|O|1998-04-18|1998-05-30|1998-05-03|TAKE BACK RETURN|FOB| foxes shall sleep furiously. u| +29486|857467|32502|3|17|24215.14|0.02|0.01|N|O|1998-03-16|1998-05-12|1998-04-01|NONE|AIR|c platelets wake furiously along| +29486|443351|5860|4|20|25886.60|0.02|0.05|N|O|1998-05-06|1998-04-28|1998-05-07|DELIVER IN PERSON|REG AIR|efully ironic deposits will are carefully| +29486|391974|4482|5|47|97100.12|0.09|0.02|N|O|1998-05-22|1998-05-26|1998-06-06|NONE|TRUCK|nd the blithel| +29486|902291|2292|6|31|40090.75|0.05|0.05|N|O|1998-04-09|1998-05-26|1998-04-25|TAKE BACK RETURN|FOB|are slyly. blithely even reques| +29487|291329|28845|1|7|9242.17|0.10|0.07|N|O|1995-08-16|1995-10-10|1995-08-30|NONE|SHIP|iously even accounts. qu| +29487|353657|3658|2|18|30791.52|0.06|0.07|N|O|1995-11-23|1995-08-30|1995-12-01|NONE|TRUCK|the furiously regular orbits. fur| +29487|910209|47764|3|44|53643.04|0.10|0.04|N|O|1995-09-21|1995-10-15|1995-10-20|DELIVER IN PERSON|SHIP|sits cajole | +29512|147091|9594|1|40|45523.60|0.06|0.02|A|F|1993-04-28|1993-06-18|1993-05-07|COLLECT COD|AIR|y. permanently silent accounts hag| +29512|150446|25453|2|23|34418.12|0.00|0.00|R|F|1993-05-01|1993-06-02|1993-05-17|COLLECT COD|REG AIR|rmanently unusual dependencies. ironic acc| +29513|436265|36266|1|32|38439.68|0.06|0.02|N|O|1998-07-30|1998-05-28|1998-08-03|NONE|REG AIR|regular deposits| +29514|988519|26077|1|14|22504.58|0.05|0.06|R|F|1993-05-22|1993-05-27|1993-06-13|TAKE BACK RETURN|REG AIR| bold waters. regular, bold asympt| +29514|25026|12527|2|24|22824.48|0.10|0.08|R|F|1993-03-25|1993-06-13|1993-04-20|TAKE BACK RETURN|RAIL|ven packag| +29514|600848|13361|3|37|64705.97|0.09|0.03|R|F|1993-05-12|1993-06-14|1993-06-02|COLLECT COD|RAIL| impress slyly busy packages| +29514|436110|23635|4|37|38705.33|0.08|0.01|A|F|1993-04-18|1993-05-26|1993-05-10|DELIVER IN PERSON|FOB|s wake furiously alon| +29515|768929|18930|1|6|11987.34|0.05|0.08|R|F|1994-08-20|1994-06-26|1994-09-18|NONE|FOB|s integrate slyly permanent instructions. b| +29516|640994|40995|1|5|9674.80|0.07|0.05|N|O|1998-02-24|1998-04-13|1998-03-11|TAKE BACK RETURN|REG AIR| furiously f| +29516|181628|44132|2|31|52998.22|0.08|0.00|N|O|1998-03-31|1998-03-20|1998-04-06|COLLECT COD|TRUCK|sits wake slyly pending, fin| +29516|620131|32644|3|3|3153.30|0.08|0.07|N|O|1998-04-13|1998-04-01|1998-05-08|DELIVER IN PERSON|TRUCK| packages hinder. bold, even pinto beans c| +29517|308131|45650|1|30|34173.60|0.08|0.02|N|O|1998-10-07|1998-08-25|1998-10-13|NONE|MAIL|ly ironic requests detect blithe| +29517|748783|23812|2|11|20149.25|0.08|0.06|N|O|1998-08-16|1998-08-30|1998-09-08|DELIVER IN PERSON|MAIL|xcuses nag above the furiously | +29517|781640|19186|3|36|61977.96|0.02|0.03|N|O|1998-10-15|1998-09-06|1998-11-03|TAKE BACK RETURN|FOB|al ideas across the final| +29517|19021|6522|4|2|1880.04|0.06|0.06|N|O|1998-08-10|1998-09-03|1998-08-14|DELIVER IN PERSON|AIR|y bold accounts. bold asymptotes affix| +29517|672725|35239|5|44|74698.36|0.01|0.03|N|O|1998-10-07|1998-09-10|1998-11-06|COLLECT COD|MAIL|fully furious pinto| +29518|452543|27562|1|37|55334.24|0.01|0.05|A|F|1992-06-05|1992-07-28|1992-06-14|DELIVER IN PERSON|RAIL|st the slowly blith| +29518|874141|11693|2|19|21186.90|0.09|0.01|A|F|1992-06-13|1992-08-10|1992-06-23|TAKE BACK RETURN|REG AIR|y ironic deposits affix| +29518|684206|46720|3|25|29754.25|0.04|0.06|A|F|1992-05-21|1992-07-13|1992-06-05|TAKE BACK RETURN|RAIL| final realms. silent plat| +29518|434917|9934|4|43|79631.27|0.00|0.08|R|F|1992-07-02|1992-07-17|1992-07-07|NONE|TRUCK|hely at the sly| +29519|305814|30827|1|26|47314.80|0.10|0.03|N|O|1998-03-02|1998-01-16|1998-03-22|TAKE BACK RETURN|RAIL|nstructions! stealthily silent accounts ac| +29544|11612|36613|1|30|45708.30|0.07|0.00|N|O|1998-01-18|1998-01-25|1998-02-09|NONE|FOB|eposits. slyly unusual packages kindl| +29544|154228|4229|2|33|42313.26|0.05|0.07|N|O|1998-04-14|1998-03-10|1998-04-25|TAKE BACK RETURN|SHIP|s across the fin| +29544|96262|33766|3|11|13840.86|0.03|0.08|N|O|1998-01-29|1998-02-06|1998-02-09|DELIVER IN PERSON|RAIL|pending, final requ| +29545|804457|4458|1|19|25866.79|0.06|0.06|N|O|1996-07-11|1996-08-13|1996-07-24|DELIVER IN PERSON|REG AIR|foxes. ideas haggle| +29546|963183|38222|1|24|29907.36|0.02|0.04|R|F|1992-12-20|1993-01-25|1992-12-22|TAKE BACK RETURN|TRUCK| the regular, even instru| +29546|210651|48164|2|5|7808.20|0.10|0.04|R|F|1993-01-04|1992-12-27|1993-01-14|NONE|RAIL| close, bold ac| +29546|398704|36226|3|28|50475.32|0.10|0.00|A|F|1993-02-19|1993-02-07|1993-03-01|TAKE BACK RETURN|RAIL| the dependenc| +29546|16775|16776|4|31|52444.87|0.00|0.07|R|F|1993-02-15|1993-01-15|1993-03-02|TAKE BACK RETURN|MAIL|ns. accounts around t| +29546|922116|22117|5|29|33004.03|0.02|0.01|R|F|1993-02-16|1993-01-16|1993-02-28|COLLECT COD|AIR|pinto beans.| +29546|990592|3112|6|21|35333.55|0.07|0.04|R|F|1993-01-12|1993-01-04|1993-01-15|COLLECT COD|AIR|ns integra| +29547|661458|11459|1|9|12774.78|0.08|0.02|A|F|1992-09-24|1992-11-01|1992-09-26|TAKE BACK RETURN|RAIL|ckly carefull| +29548|282511|32512|1|11|16428.50|0.01|0.01|R|F|1994-01-10|1993-12-20|1994-01-15|COLLECT COD|RAIL|ully pending| +29548|146775|9278|2|4|7287.08|0.03|0.02|A|F|1994-01-14|1993-11-23|1994-02-08|TAKE BACK RETURN|FOB|ependencies affix quickly| +29548|836819|36820|3|6|10534.62|0.03|0.04|R|F|1993-12-03|1993-11-30|1993-12-30|NONE|FOB|ic packages wa| +29548|400334|25351|4|4|4937.24|0.04|0.01|A|F|1994-01-28|1993-12-10|1994-02-15|COLLECT COD|RAIL|refully eve| +29549|694950|7464|1|31|60292.52|0.05|0.07|N|O|1995-08-06|1995-06-03|1995-08-19|NONE|FOB|quickly special | +29549|11577|24078|2|19|28282.83|0.07|0.01|R|F|1995-05-16|1995-06-20|1995-06-15|TAKE BACK RETURN|MAIL| furiously sp| +29549|560958|35981|3|49|98927.57|0.05|0.01|N|F|1995-06-14|1995-05-30|1995-07-14|TAKE BACK RETURN|RAIL|usly final dolphins. quickly iron| +29550|115585|3092|1|4|6402.32|0.10|0.07|R|F|1992-12-23|1992-11-03|1993-01-21|DELIVER IN PERSON|AIR|lent dinos was regular exc| +29550|634369|46882|2|43|56043.19|0.01|0.02|R|F|1992-12-03|1992-12-11|1992-12-08|TAKE BACK RETURN|RAIL| carefully about the| +29550|835990|48507|3|48|92445.60|0.04|0.06|A|F|1992-11-22|1992-12-03|1992-12-12|NONE|SHIP|packages use a| +29550|481285|18813|4|36|45585.36|0.10|0.08|R|F|1993-01-27|1992-11-08|1993-02-12|NONE|REG AIR|ickly express foxes boost. ironic accoun| +29550|944434|31989|5|1|1478.39|0.02|0.08|R|F|1992-11-10|1992-12-30|1992-12-09|TAKE BACK RETURN|RAIL|. blithely final accounts detect furious| +29551|285790|23306|1|10|17757.80|0.06|0.02|N|O|1996-08-18|1996-06-01|1996-08-23|NONE|SHIP|s-- blithely bold packages alon| +29551|258917|8918|2|40|75036.00|0.05|0.03|N|O|1996-07-22|1996-07-29|1996-08-16|DELIVER IN PERSON|AIR|y dogged pla| +29551|604868|42405|3|14|24819.62|0.06|0.02|N|O|1996-05-28|1996-07-30|1996-06-14|TAKE BACK RETURN|SHIP|ideas. deposits ag| +29551|5249|30250|4|19|21930.56|0.10|0.08|N|O|1996-07-07|1996-06-18|1996-07-26|COLLECT COD|MAIL|around the carefully| +29576|966774|41813|1|13|23929.49|0.04|0.06|N|O|1996-05-23|1996-07-09|1996-06-05|TAKE BACK RETURN|MAIL|. regular, unusual instructions are caref| +29576|554650|4651|2|25|42615.75|0.03|0.01|N|O|1996-06-28|1996-07-24|1996-07-24|DELIVER IN PERSON|RAIL| beans are furiously. special forges am| +29576|994287|19326|3|45|62155.80|0.09|0.04|N|O|1996-09-03|1996-07-02|1996-09-12|COLLECT COD|REG AIR|y ironic theodolites| +29577|835819|48336|1|47|82474.19|0.06|0.06|N|O|1997-02-08|1997-01-06|1997-03-03|TAKE BACK RETURN|SHIP|egular deposits are. slyly ironic| +29577|609492|22005|2|47|65868.62|0.08|0.06|N|O|1996-12-10|1997-01-14|1996-12-26|DELIVER IN PERSON|MAIL|ly furiously ironic foxes. final foxes | +29577|731528|44043|3|48|74855.52|0.06|0.03|N|O|1996-12-10|1997-02-02|1997-01-03|DELIVER IN PERSON|SHIP|s. final excuses a| +29577|784997|22543|4|7|14573.72|0.02|0.07|N|O|1996-12-21|1997-02-28|1996-12-24|NONE|MAIL|accounts. carefull| +29577|440099|2608|5|36|37406.52|0.10|0.08|N|O|1997-01-26|1997-01-17|1997-02-09|DELIVER IN PERSON|MAIL|ly unusual decoys wa| +29578|147483|9986|1|27|41322.96|0.02|0.04|N|O|1998-09-18|1998-09-26|1998-09-28|TAKE BACK RETURN|AIR|ounts sleep furiously accounts. quickly | +29578|743771|6286|2|33|59886.42|0.01|0.03|N|O|1998-09-01|1998-08-28|1998-09-07|TAKE BACK RETURN|RAIL|e slyly beneath the carefully| +29579|173195|35699|1|41|51995.79|0.05|0.06|N|O|1998-02-14|1998-02-09|1998-03-15|COLLECT COD|FOB|s nag carefully according to t| +29580|263033|549|1|11|10956.22|0.02|0.03|N|O|1997-11-24|1997-10-15|1997-12-17|DELIVER IN PERSON|RAIL|blithely express dinos. | +29580|779469|17015|2|23|35613.89|0.06|0.03|N|O|1997-11-09|1997-11-16|1997-11-17|TAKE BACK RETURN|MAIL|ts wake furiously ironic pinto | +29580|528723|41234|3|1|1751.70|0.04|0.00|N|O|1997-10-23|1997-11-18|1997-11-02|DELIVER IN PERSON|TRUCK|haggle idly regular packages. sly| +29580|234726|34727|4|22|36535.62|0.02|0.01|N|O|1997-11-05|1997-10-06|1997-11-21|NONE|AIR|y final asymptot| +29581|828111|40628|1|30|31172.10|0.02|0.08|N|O|1996-09-04|1996-08-03|1996-09-19|DELIVER IN PERSON|REG AIR|ffily even deposi| +29581|54953|29956|2|35|66778.25|0.10|0.01|N|O|1996-07-26|1996-06-12|1996-07-29|TAKE BACK RETURN|RAIL|ely ironic deposits wake blithe accounts. p| +29581|590948|3460|3|50|101946.00|0.06|0.02|N|O|1996-05-13|1996-06-24|1996-05-24|COLLECT COD|FOB|ndencies along the sly| +29581|57141|7142|4|23|25257.22|0.08|0.05|N|O|1996-06-05|1996-07-21|1996-06-16|DELIVER IN PERSON|AIR| use furio| +29581|368192|30700|5|13|16382.34|0.04|0.07|N|O|1996-05-31|1996-06-18|1996-06-03|TAKE BACK RETURN|AIR|lly regular depe| +29582|670783|20784|1|25|43843.75|0.01|0.06|R|F|1995-03-25|1995-01-11|1995-04-16|NONE|TRUCK|ckly regular pin| +29582|839808|27357|2|31|54180.56|0.01|0.03|A|F|1994-12-18|1995-02-09|1994-12-31|COLLECT COD|SHIP|ependencies detect blithely. bo| +29583|491800|41801|1|40|71671.20|0.02|0.07|A|F|1993-03-23|1993-05-14|1993-03-27|TAKE BACK RETURN|AIR|re above the furiously| +29583|672586|47613|2|22|34288.10|0.02|0.06|A|F|1993-03-30|1993-06-03|1993-04-14|TAKE BACK RETURN|AIR|onic theodolites. ideas wake: ironic ideas| +29583|143157|30664|3|17|20402.55|0.00|0.07|A|F|1993-06-14|1993-05-20|1993-06-26|COLLECT COD|MAIL|uctions x-ray | +29608|941164|28719|1|23|27717.76|0.07|0.00|R|F|1994-11-14|1994-12-25|1994-12-08|TAKE BACK RETURN|SHIP|ter the quickly ironic pa| +29608|128775|41278|2|10|18037.70|0.03|0.04|A|F|1994-11-24|1994-11-21|1994-12-16|NONE|SHIP|t slyly bold foxes. express, bold pinto bea| +29609|817315|4864|1|40|49290.80|0.00|0.06|A|F|1992-12-05|1992-11-25|1992-12-29|COLLECT COD|FOB|ent accounts. fluffily even | +29609|597381|9893|2|48|70961.28|0.08|0.05|R|F|1992-11-16|1992-11-14|1992-12-15|TAKE BACK RETURN|REG AIR|refully final deposits. | +29609|173893|36397|3|29|57039.81|0.01|0.02|R|F|1992-12-27|1992-11-22|1993-01-24|TAKE BACK RETURN|REG AIR|dependencie| +29609|619473|19474|4|14|19494.16|0.08|0.00|A|F|1992-11-23|1992-12-02|1992-12-12|NONE|RAIL|ns. regular requests wake bravely | +29610|2602|2603|1|44|66202.40|0.09|0.06|N|O|1997-07-19|1997-07-08|1997-08-16|DELIVER IN PERSON|MAIL|uests cajole-- furiously | +29610|723546|23547|2|12|18834.12|0.04|0.00|N|O|1997-05-21|1997-05-24|1997-06-04|DELIVER IN PERSON|MAIL|heodolites. ironic accounts after the c| +29610|634869|22406|3|16|28861.28|0.05|0.07|N|O|1997-05-30|1997-06-29|1997-06-04|DELIVER IN PERSON|RAIL| beneath the regular deposits. furio| +29611|969228|44267|1|22|28537.96|0.04|0.04|N|O|1996-01-07|1995-12-01|1996-01-28|NONE|TRUCK| slyly against the blithely pend| +29611|798270|35816|2|28|38310.72|0.09|0.06|N|O|1995-11-23|1995-11-25|1995-12-15|DELIVER IN PERSON|RAIL|erve carefully silent packages| +29611|513302|833|3|1|1315.28|0.01|0.08|N|O|1996-01-14|1995-12-17|1996-02-09|TAKE BACK RETURN|MAIL|n requests are slyly. final package| +29611|62982|37985|4|23|44734.54|0.08|0.05|N|O|1995-12-08|1995-12-20|1995-12-24|COLLECT COD|AIR| slyly regular theo| +29611|522305|47326|5|9|11945.52|0.03|0.05|N|O|1995-11-26|1995-12-19|1995-12-11|DELIVER IN PERSON|TRUCK|ickly. furio| +29611|368167|30675|6|47|58052.05|0.07|0.06|N|O|1996-02-09|1995-12-07|1996-03-04|NONE|TRUCK|its are blithely regular braids. blithel| +29611|775265|25266|7|36|48248.28|0.07|0.02|N|O|1996-01-28|1996-01-17|1996-02-15|NONE|SHIP|. slyly unusual requests| +29612|871596|46631|1|37|57999.35|0.09|0.08|N|O|1997-07-04|1997-07-24|1997-07-27|DELIVER IN PERSON|MAIL|ct blithely. carefully silent ideas | +29612|902657|40212|2|18|29872.98|0.02|0.06|N|O|1997-07-24|1997-08-16|1997-07-26|TAKE BACK RETURN|SHIP|iously even request| +29612|951305|13825|3|17|23056.42|0.07|0.07|N|O|1997-07-13|1997-07-28|1997-07-30|TAKE BACK RETURN|SHIP|-ray; blithely ironic foxes cajole slyl| +29612|579427|41939|4|24|36153.60|0.08|0.07|N|O|1997-06-22|1997-07-06|1997-06-30|NONE|AIR|ronic deposit| +29612|426114|26115|5|6|6240.54|0.06|0.05|N|O|1997-06-14|1997-08-17|1997-07-06|COLLECT COD|FOB|. packages cajole. final packages against | +29613|223560|48569|1|47|69726.85|0.07|0.00|R|F|1992-09-07|1992-08-08|1992-10-06|NONE|FOB| accounts detect furiously | +29613|365054|27562|2|3|3357.12|0.06|0.03|R|F|1992-09-20|1992-08-20|1992-10-12|COLLECT COD|AIR|accounts! even foxes| +29613|454742|4743|3|27|45811.44|0.08|0.07|A|F|1992-09-27|1992-08-11|1992-10-10|TAKE BACK RETURN|RAIL|side of the final instructions cajol| +29614|451000|38528|1|41|38990.18|0.07|0.07|R|F|1993-11-07|1993-12-02|1993-11-17|COLLECT COD|MAIL|ual accounts wake about the dolphins! even| +29614|942922|42923|2|43|84489.84|0.02|0.08|A|F|1994-01-19|1993-11-09|1994-02-11|DELIVER IN PERSON|SHIP|theodolites despite the blith| +29614|689222|39223|3|22|26646.18|0.02|0.06|R|F|1994-01-20|1993-12-17|1994-01-30|NONE|SHIP|le regularly accordi| +29614|742414|42415|4|16|23302.08|0.04|0.02|A|F|1993-12-22|1993-12-01|1994-01-11|TAKE BACK RETURN|TRUCK|uests. deposi| +29614|739519|27062|5|7|10909.36|0.07|0.03|A|F|1993-09-29|1993-11-10|1993-10-14|COLLECT COD|SHIP| regular accounts. ironic, special fo| +29614|89892|27396|6|23|43283.47|0.05|0.07|A|F|1993-10-22|1993-11-19|1993-11-17|COLLECT COD|FOB|sits. ironic deposits wake blithely ironic| +29614|808873|46422|7|21|37418.43|0.08|0.07|R|F|1993-11-03|1993-12-08|1993-11-06|DELIVER IN PERSON|MAIL|g deposits. requests ar| +29615|720286|45315|1|38|49637.50|0.02|0.01|N|O|1997-07-08|1997-07-17|1997-07-29|DELIVER IN PERSON|AIR|ependencies. caref| +29615|838184|13217|2|4|4488.56|0.01|0.03|N|O|1997-08-26|1997-08-11|1997-09-11|COLLECT COD|SHIP|iously regular packages sleep fu| +29615|356664|44186|3|34|58502.10|0.09|0.00|N|O|1997-08-14|1997-08-13|1997-09-07|TAKE BACK RETURN|REG AIR|slyly even packages nod | +29615|436223|11240|4|38|44049.60|0.10|0.06|N|O|1997-09-07|1997-06-22|1997-09-08|NONE|REG AIR|. quickly ironic | +29640|753792|16308|1|37|68293.12|0.04|0.00|N|O|1997-07-23|1997-06-01|1997-08-17|COLLECT COD|FOB|ake carefully fluffily special braid| +29640|970372|20373|2|17|24519.61|0.09|0.07|N|O|1997-05-20|1997-06-22|1997-05-30|TAKE BACK RETURN|SHIP|counts doub| +29640|29882|42383|3|16|28990.08|0.06|0.00|N|O|1997-04-18|1997-07-04|1997-04-22|DELIVER IN PERSON|RAIL|the bold dugo| +29640|215502|15503|4|4|5669.96|0.07|0.03|N|O|1997-07-29|1997-06-30|1997-08-22|COLLECT COD|TRUCK|structions; furiously special orb| +29640|931526|44045|5|12|18689.76|0.01|0.04|N|O|1997-06-09|1997-06-07|1997-06-24|NONE|RAIL|sts. ironic| +29641|680482|30483|1|15|21936.75|0.00|0.00|N|O|1997-08-29|1997-07-24|1997-09-10|COLLECT COD|MAIL|cajole unusual dep| +29641|854306|29341|2|36|45369.36|0.05|0.08|N|O|1997-09-08|1997-09-02|1997-09-14|DELIVER IN PERSON|FOB|ular pinto beans about the quickly even d| +29641|309582|9583|3|41|65254.37|0.00|0.00|N|O|1997-08-23|1997-09-07|1997-08-29|NONE|MAIL|lyly dogged| +29642|110533|23036|1|26|40131.78|0.09|0.01|N|O|1998-05-16|1998-03-22|1998-06-10|NONE|AIR|foxes use foxes. furiously dogged instru| +29642|717605|5148|2|14|22715.98|0.09|0.08|N|O|1998-05-04|1998-04-08|1998-05-08|TAKE BACK RETURN|MAIL| final courts a| +29643|248115|35628|1|41|43587.10|0.09|0.06|N|O|1996-11-09|1996-12-24|1996-12-04|TAKE BACK RETURN|RAIL|s cajole ironi| +29643|56259|6260|2|25|30381.25|0.03|0.02|N|O|1997-01-16|1996-12-26|1997-02-15|COLLECT COD|MAIL|es. carefully bold asympto| +29644|663493|13494|1|48|69910.08|0.00|0.05|A|F|1994-04-24|1994-03-15|1994-04-28|NONE|AIR|ial theodolites. furi| +29644|323640|48653|2|42|69872.46|0.00|0.07|R|F|1994-02-23|1994-03-01|1994-03-10|NONE|AIR|foxes along the pinto beans cajole| +29645|944130|6649|1|41|48137.69|0.09|0.08|A|F|1993-08-20|1993-06-22|1993-08-23|NONE|RAIL|ts. slyly ironic warthog| +29645|991473|3993|2|37|57883.91|0.06|0.06|R|F|1993-07-02|1993-06-26|1993-07-28|TAKE BACK RETURN|TRUCK|cajole. slyly pendin| +29645|682494|32495|3|42|62011.32|0.10|0.01|R|F|1993-05-31|1993-06-15|1993-06-01|DELIVER IN PERSON|MAIL|press theodolites. furi| +29645|660535|23049|4|22|32901.00|0.09|0.01|R|F|1993-08-02|1993-07-20|1993-08-30|TAKE BACK RETURN|RAIL|le slyly. slyly final theodol| +29646|477348|27349|1|37|49036.84|0.05|0.02|N|O|1996-11-28|1996-10-07|1996-12-06|NONE|TRUCK|boost: unusual pi| +29646|777991|15537|2|36|74482.56|0.08|0.08|N|O|1996-09-14|1996-09-28|1996-10-11|NONE|MAIL|ter the pending pac| +29646|694565|7079|3|16|24952.48|0.00|0.03|N|O|1996-12-18|1996-10-26|1996-12-29|NONE|TRUCK| platelets nag ironic, special pi| +29646|549195|11706|4|36|44790.12|0.07|0.00|N|O|1996-10-01|1996-11-12|1996-10-03|COLLECT COD|AIR|nts. packa| +29646|310070|35083|5|6|6480.36|0.10|0.03|N|O|1996-10-30|1996-10-08|1996-11-20|NONE|SHIP|r accounts hinder qu| +29646|334732|9745|6|9|15900.48|0.06|0.03|N|O|1996-08-24|1996-10-21|1996-09-13|COLLECT COD|RAIL|l excuses cajole fluffil| +29647|894565|44566|1|46|71737.92|0.02|0.05|N|O|1997-07-02|1997-04-22|1997-08-01|DELIVER IN PERSON|MAIL|after the fluffily ironic theodolites| +29647|948503|23540|2|1|1551.46|0.10|0.03|N|O|1997-06-29|1997-04-19|1997-07-03|COLLECT COD|SHIP|nusual packages| +29647|482129|19657|3|47|52221.70|0.03|0.06|N|O|1997-04-05|1997-04-09|1997-04-18|COLLECT COD|TRUCK|regular packages sl| +29647|139221|1724|4|17|21423.74|0.10|0.07|N|O|1997-06-12|1997-05-07|1997-06-30|COLLECT COD|RAIL|ld requests boost slyly! re| +29647|887059|37060|5|14|14644.14|0.08|0.04|N|O|1997-06-29|1997-04-27|1997-07-24|NONE|MAIL|s could hinder| +29672|123385|23386|1|28|39434.64|0.09|0.07|A|F|1992-06-14|1992-08-15|1992-07-05|NONE|AIR|lent pinto beans. platelet| +29672|727581|40096|2|38|61124.90|0.09|0.01|R|F|1992-08-29|1992-07-03|1992-09-14|COLLECT COD|TRUCK|ular requests. | +29672|437257|12274|3|41|48963.43|0.03|0.00|A|F|1992-07-10|1992-08-08|1992-07-23|DELIVER IN PERSON|TRUCK|ndencies. quickly regular deposits haggl| +29672|971089|46128|4|7|8120.28|0.01|0.04|A|F|1992-08-09|1992-08-22|1992-08-11|TAKE BACK RETURN|FOB|braids haggle fluffily. instructions use| +29672|90927|28431|5|8|15343.36|0.05|0.00|R|F|1992-07-08|1992-07-25|1992-07-25|COLLECT COD|SHIP|ously regular excus| +29672|206978|19483|6|41|77283.36|0.04|0.07|A|F|1992-06-13|1992-08-20|1992-07-07|DELIVER IN PERSON|FOB|cial, regular deposits wa| +29673|781082|18628|1|14|16282.70|0.04|0.05|R|F|1994-12-23|1994-11-05|1994-12-25|COLLECT COD|MAIL|y even pinto beans.| +29673|645081|20106|2|42|43094.10|0.04|0.03|A|F|1994-10-15|1994-10-26|1994-10-16|COLLECT COD|TRUCK|refully special reques| +29673|865430|15431|3|15|20930.85|0.09|0.04|R|F|1994-10-26|1994-12-17|1994-11-09|TAKE BACK RETURN|RAIL|, bold accounts. excuses use blithel| +29673|277372|2383|4|33|44528.88|0.05|0.07|A|F|1994-11-20|1994-10-31|1994-12-20|TAKE BACK RETURN|MAIL|he special instructions breach | +29673|789724|39725|5|26|47155.94|0.06|0.06|A|F|1994-12-09|1994-11-19|1995-01-01|DELIVER IN PERSON|TRUCK| haggle. even requests boos| +29673|887139|49657|6|40|45043.60|0.05|0.02|A|F|1995-01-13|1994-12-17|1995-02-09|DELIVER IN PERSON|MAIL| regular packages use about t| +29673|136227|36228|7|33|41686.26|0.09|0.07|R|F|1995-01-02|1994-11-12|1995-01-10|DELIVER IN PERSON|FOB|ckages thrash blithely final pinto | +29674|559670|34693|1|26|44970.90|0.09|0.05|R|F|1994-11-24|1995-01-10|1994-12-12|DELIVER IN PERSON|MAIL|counts are caref| +29674|366665|4187|2|43|74460.95|0.09|0.03|A|F|1995-01-26|1995-01-02|1995-02-13|COLLECT COD|RAIL|eside the fluffil| +29674|524189|49210|3|34|41247.44|0.05|0.08|A|F|1994-12-28|1995-01-02|1995-01-11|DELIVER IN PERSON|TRUCK|sits play bravely unusual, final dep| +29675|317753|42766|1|34|60205.16|0.05|0.02|N|O|1995-11-18|1996-01-10|1995-12-16|TAKE BACK RETURN|TRUCK|xes poach slyly special, un| +29675|462210|24720|2|37|43371.03|0.08|0.03|N|O|1996-02-13|1995-12-25|1996-03-09|NONE|FOB|ously unusual packag| +29675|349825|37344|3|25|46870.25|0.00|0.00|N|O|1996-03-03|1996-01-31|1996-03-06|DELIVER IN PERSON|REG AIR|requests haggle quickly after | +29675|506805|31826|4|3|5435.34|0.10|0.06|N|O|1995-11-15|1996-01-25|1995-12-04|DELIVER IN PERSON|SHIP|ns are furiously | +29676|280187|42693|1|1|1167.17|0.04|0.03|N|O|1997-04-28|1997-05-12|1997-05-28|DELIVER IN PERSON|RAIL|ully against the ironic requests. express e| +29676|90899|40900|2|23|43467.47|0.10|0.05|N|O|1997-06-13|1997-06-29|1997-06-20|COLLECT COD|MAIL|ar foxes. blithely pending accounts integ| +29676|733412|8441|3|47|67932.86|0.05|0.00|N|O|1997-07-25|1997-05-27|1997-08-20|DELIVER IN PERSON|SHIP|ironic requests. slyly stealthy accounts s| +29676|450221|222|4|43|50361.60|0.02|0.01|N|O|1997-07-12|1997-06-18|1997-07-16|COLLECT COD|REG AIR|ts cajole furiou| +29676|858642|21160|5|37|59222.20|0.07|0.08|N|O|1997-04-29|1997-05-10|1997-05-25|DELIVER IN PERSON|AIR|ly ironic theodolites about the slyly sl| +29676|184248|46752|6|10|13322.40|0.05|0.03|N|O|1997-05-29|1997-06-11|1997-06-03|DELIVER IN PERSON|SHIP|elets. final dep| +29677|275967|38473|1|5|9714.75|0.09|0.04|N|O|1996-03-16|1996-04-29|1996-04-04|COLLECT COD|REG AIR|after the quickly express cou| +29677|167042|4552|2|14|15526.56|0.06|0.03|N|O|1996-06-08|1996-03-26|1996-06-18|DELIVER IN PERSON|MAIL|gular somas. regular deposi| +29677|461986|49514|3|31|60386.76|0.10|0.00|N|O|1996-05-27|1996-03-18|1996-05-31|COLLECT COD|SHIP|. blithely regular | +29677|590006|2518|4|4|4383.92|0.06|0.04|N|O|1996-04-05|1996-04-10|1996-04-12|TAKE BACK RETURN|SHIP|atelets haggle care| +29677|227230|2239|5|15|17358.30|0.06|0.06|N|O|1996-05-31|1996-03-27|1996-06-06|COLLECT COD|MAIL|ial accounts. carefully even theod| +29677|39458|1959|6|32|44718.40|0.07|0.08|N|O|1996-02-15|1996-04-10|1996-02-16|COLLECT COD|AIR|ss packages haggle furiously. bold,| +29677|158932|8933|7|31|61718.83|0.09|0.07|N|O|1996-03-22|1996-03-23|1996-03-29|DELIVER IN PERSON|TRUCK|carefully express accounts. b| +29678|154425|4426|1|38|56217.96|0.01|0.08|N|O|1996-02-03|1996-02-23|1996-02-11|DELIVER IN PERSON|AIR| furiously special epitaphs sleep blithel| +29678|411238|48763|2|6|6895.26|0.01|0.03|N|O|1995-12-21|1996-03-12|1996-01-03|COLLECT COD|FOB|ular instructions nag slyly stea| +29678|669091|44118|3|45|47702.70|0.02|0.01|N|O|1996-02-18|1996-03-10|1996-02-25|TAKE BACK RETURN|REG AIR|usly careful| +29678|407970|20479|4|39|73240.05|0.09|0.07|N|O|1996-01-01|1996-02-01|1996-01-05|DELIVER IN PERSON|RAIL|e slyly regular dolphins. final| +29678|739672|27215|5|18|30809.52|0.08|0.07|N|O|1996-01-29|1996-02-06|1996-02-18|TAKE BACK RETURN|SHIP|lyly regular foxes along th| +29678|652660|2661|6|30|48378.90|0.04|0.08|N|O|1996-04-05|1996-03-14|1996-04-22|TAKE BACK RETURN|REG AIR|onic pinto beans thrash furi| +29678|252214|27225|7|27|31487.40|0.05|0.04|N|O|1996-03-09|1996-02-19|1996-03-11|DELIVER IN PERSON|TRUCK|lyly special deposits haggle | +29679|949855|49856|1|35|66668.35|0.05|0.05|N|O|1997-02-10|1997-01-21|1997-03-07|COLLECT COD|AIR|xes. bold, silent warthogs cajole| +29704|746646|46647|1|27|45700.47|0.00|0.01|N|O|1996-04-27|1996-02-22|1996-05-22|TAKE BACK RETURN|RAIL|riously silent accounts against th| +29705|559746|22258|1|14|25280.08|0.02|0.03|N|O|1997-08-21|1997-09-08|1997-09-10|COLLECT COD|TRUCK|ven dependencies after the caref| +29705|648475|36012|2|42|59784.48|0.07|0.01|N|O|1997-09-24|1997-08-23|1997-10-16|TAKE BACK RETURN|TRUCK|theodolites are about the fluffily si| +29706|332041|44548|1|28|30044.84|0.03|0.07|A|F|1994-01-20|1994-01-05|1994-02-12|TAKE BACK RETURN|FOB|foxes. slyly final foxes ca| +29706|604403|29428|2|24|31376.88|0.09|0.06|A|F|1994-01-04|1994-02-15|1994-01-24|TAKE BACK RETURN|RAIL|nod enticingly alongside of the blithely | +29706|194470|6974|3|30|46934.10|0.04|0.04|R|F|1993-12-02|1994-01-05|1993-12-22|DELIVER IN PERSON|MAIL|ackages. accounts wa| +29706|443995|31520|4|11|21328.67|0.01|0.00|R|F|1994-03-12|1994-01-26|1994-04-02|NONE|FOB|ckly ironic deposits detect carefully: p| +29706|212415|37424|5|24|31857.60|0.02|0.03|A|F|1993-12-31|1994-02-20|1994-01-07|DELIVER IN PERSON|AIR|ular, even ideas haggle according| +29706|49742|12243|6|24|40601.76|0.05|0.02|R|F|1994-02-01|1994-01-16|1994-02-23|TAKE BACK RETURN|REG AIR|es are slyly furiously bold | +29706|1698|1699|7|17|27194.73|0.04|0.03|R|F|1994-01-08|1994-01-17|1994-01-28|NONE|MAIL|rash depend| +29707|535021|47532|1|5|5280.00|0.01|0.01|A|F|1994-10-20|1994-10-11|1994-11-11|COLLECT COD|AIR|cies haggle after the final accou| +29707|90948|15951|2|19|36839.86|0.04|0.04|R|F|1994-12-17|1994-10-24|1995-01-09|TAKE BACK RETURN|MAIL| ironic instructions ca| +29707|560777|35800|3|46|84536.50|0.00|0.02|R|F|1994-12-08|1994-11-29|1994-12-22|NONE|MAIL|en dependencies after the final theodolite| +29707|967495|17496|4|2|3124.90|0.08|0.08|A|F|1994-12-25|1994-11-06|1995-01-15|TAKE BACK RETURN|REG AIR|t along the even fo| +29707|675278|305|5|16|20051.84|0.08|0.02|A|F|1994-12-23|1994-11-15|1995-01-17|NONE|RAIL|regular packages should have to | +29707|382945|32946|6|48|97340.64|0.08|0.03|A|F|1994-11-11|1994-11-10|1994-11-28|TAKE BACK RETURN|AIR| bold packages near the quickly sl| +29708|546350|33881|1|28|39097.24|0.05|0.06|N|O|1996-01-26|1995-12-28|1996-02-14|DELIVER IN PERSON|SHIP|uriously about t| +29708|488645|13664|2|24|39206.88|0.01|0.08|N|O|1996-01-03|1996-01-08|1996-01-26|NONE|TRUCK|al deposits nag slyly around the final ac| +29708|645530|33067|3|50|73775.00|0.08|0.06|N|O|1996-01-20|1996-01-14|1996-01-29|NONE|MAIL|en asymptotes doze again| +29708|409549|9550|4|26|37921.52|0.06|0.08|N|O|1995-12-14|1996-01-26|1996-01-04|NONE|MAIL|le carefully regular, pending pa| +29709|655989|31016|1|1|1944.95|0.01|0.08|R|F|1992-10-02|1992-12-04|1992-10-29|COLLECT COD|SHIP|unusual foxes. saut| +29709|201902|26911|2|21|37881.69|0.05|0.03|A|F|1993-01-04|1992-10-28|1993-01-16|DELIVER IN PERSON|TRUCK|ts doze blithely silent accounts-- furi| +29709|365840|3362|3|21|40022.43|0.04|0.08|A|F|1992-10-30|1992-11-10|1992-11-19|TAKE BACK RETURN|AIR|ess accounts. accounts doubt slyly even,| +29710|176994|26995|1|39|80768.61|0.02|0.02|A|F|1993-03-12|1993-01-20|1993-03-19|NONE|MAIL|ake quickl| +29710|729623|42138|2|11|18178.49|0.00|0.05|A|F|1993-04-05|1993-02-19|1993-04-12|DELIVER IN PERSON|SHIP|ly. furiously express deposits affix blithe| +29710|764143|1689|3|35|42248.85|0.03|0.07|A|F|1993-01-02|1993-01-18|1993-01-18|TAKE BACK RETURN|AIR|ng dependencies maintain slyly| +29710|944464|32019|4|19|28659.98|0.05|0.01|A|F|1993-03-08|1993-01-31|1993-03-18|DELIVER IN PERSON|SHIP|blithely silent deposits lose carefully| +29710|592367|29901|5|33|48158.22|0.01|0.03|A|F|1993-01-06|1993-01-22|1993-01-18|COLLECT COD|TRUCK|e silently reg| +29710|911351|36388|6|9|12260.79|0.05|0.06|R|F|1993-02-05|1993-01-20|1993-02-22|COLLECT COD|SHIP|l ideas sleep furiously| +29710|75732|735|7|9|15369.57|0.00|0.06|R|F|1992-12-30|1993-02-11|1993-01-14|NONE|TRUCK|express, final accounts affix fur| +29711|815073|15074|1|9|8892.27|0.09|0.05|N|O|1998-11-09|1998-08-29|1998-11-11|TAKE BACK RETURN|SHIP|regular asymptotes sleep fluffily silent| +29711|919251|31770|2|40|50808.40|0.02|0.08|N|O|1998-11-08|1998-10-28|1998-12-06|COLLECT COD|REG AIR|dolites. regular request| +29736|270813|8329|1|3|5351.40|0.07|0.00|A|F|1994-02-23|1993-12-28|1994-03-23|DELIVER IN PERSON|FOB|according to the s| +29736|544904|19925|2|22|42875.36|0.01|0.02|R|F|1993-12-24|1994-01-12|1993-12-31|DELIVER IN PERSON|FOB|ages above the unusual, pending foxes| +29736|195884|8388|3|17|33657.96|0.05|0.03|A|F|1994-01-08|1994-01-10|1994-01-29|NONE|FOB|urts haggle furiously | +29736|218031|43040|4|34|32266.68|0.01|0.05|A|F|1993-12-06|1994-01-09|1993-12-27|NONE|AIR|c accounts wake furiously expr| +29736|446853|46854|5|41|73793.03|0.00|0.05|R|F|1994-01-21|1993-12-22|1994-01-22|NONE|RAIL|y across the regular, even | +29737|47832|47833|1|7|12458.81|0.10|0.00|A|F|1993-03-02|1993-01-28|1993-03-21|TAKE BACK RETURN|AIR|sts among the furiously| +29737|907910|20429|2|2|3835.74|0.06|0.08|R|F|1992-11-13|1993-02-07|1992-11-19|TAKE BACK RETURN|TRUCK|es detect quickly against the quickly unus| +29737|238738|1243|3|34|57008.48|0.07|0.08|A|F|1993-02-21|1993-01-29|1993-03-04|NONE|MAIL|ays final depo| +29737|456090|18600|4|13|13598.91|0.06|0.05|R|F|1992-12-08|1993-02-05|1993-01-03|TAKE BACK RETURN|REG AIR|eodolites wak| +29737|498545|23564|5|25|38588.00|0.00|0.08|R|F|1993-01-30|1993-01-11|1993-02-13|TAKE BACK RETURN|MAIL|riously regular depos| +29738|349118|49119|1|13|15172.30|0.02|0.04|R|F|1993-03-29|1993-02-12|1993-04-27|COLLECT COD|FOB|to the pending, eve| +29739|243637|6142|1|47|74289.14|0.02|0.08|N|O|1997-03-28|1997-04-02|1997-04-08|NONE|MAIL|gular pinto bean| +29739|797337|47338|2|34|48766.20|0.10|0.04|N|O|1997-06-29|1997-04-22|1997-06-30|DELIVER IN PERSON|TRUCK|nic theodolites play blit| +29739|830675|30676|3|17|27295.71|0.10|0.00|N|O|1997-04-03|1997-05-26|1997-04-23|DELIVER IN PERSON|MAIL|pendencies. furiously bold requ| +29739|143882|31389|4|42|80886.96|0.02|0.08|N|O|1997-04-01|1997-04-21|1997-04-17|TAKE BACK RETURN|RAIL|the slyly fluffy accounts use furiousl| +29739|221189|33694|5|10|11101.70|0.09|0.00|N|O|1997-05-21|1997-05-15|1997-06-02|COLLECT COD|RAIL|ggle; bold accounts | +29740|293807|31323|1|6|10804.74|0.07|0.00|N|O|1998-08-04|1998-07-30|1998-08-07|DELIVER IN PERSON|FOB|eodolites. slyly regular ideas ca| +29740|6839|19340|2|37|64595.71|0.07|0.01|N|O|1998-09-14|1998-08-24|1998-09-16|DELIVER IN PERSON|RAIL|l instructions ar| +29740|933215|33216|3|18|22467.06|0.09|0.08|N|O|1998-07-30|1998-08-11|1998-08-13|NONE|AIR|ts across the blithely even packages h| +29740|534780|47291|4|5|9073.80|0.03|0.05|N|O|1998-09-12|1998-08-15|1998-09-22|COLLECT COD|SHIP|iously unusual accounts | +29740|42062|42063|5|13|13052.78|0.01|0.08|N|O|1998-07-23|1998-09-02|1998-07-26|COLLECT COD|MAIL|ng the ironically express multipliers.| +29740|932997|8034|6|9|18269.55|0.03|0.01|N|O|1998-08-27|1998-09-17|1998-09-21|COLLECT COD|FOB|slyly unusual packages around the quickly e| +29741|74678|24679|1|15|24790.05|0.07|0.01|A|F|1995-03-10|1995-01-28|1995-03-31|NONE|MAIL|r sheaves wake slyly. quickl| +29741|113109|616|2|15|16831.50|0.00|0.02|R|F|1995-01-04|1995-02-24|1995-01-30|NONE|TRUCK|fily. even| +29741|14669|39670|3|28|44342.48|0.03|0.05|R|F|1995-03-26|1995-02-26|1995-04-05|NONE|TRUCK|lithely according to the furiousl| +29741|531642|44153|4|28|46861.36|0.02|0.08|A|F|1994-12-29|1995-02-28|1995-01-25|DELIVER IN PERSON|RAIL|lly even pinto beans. deposits | +29741|294885|7391|5|44|82714.28|0.09|0.06|R|F|1995-01-15|1995-03-12|1995-02-03|COLLECT COD|AIR|usual, ironic accounts. carefully| +29742|705457|17972|1|11|16086.62|0.02|0.05|A|F|1993-05-25|1993-04-29|1993-05-29|COLLECT COD|REG AIR| asymptotes. frets believe dog| +29742|615070|40095|2|47|46296.88|0.04|0.00|A|F|1993-05-05|1993-03-11|1993-06-04|DELIVER IN PERSON|TRUCK|ep fluffily. quickly | +29742|479512|29513|3|45|67117.05|0.06|0.08|R|F|1993-05-19|1993-03-29|1993-06-08|COLLECT COD|FOB| blithely. slyly regular| +29742|154901|42411|4|8|15647.20|0.02|0.03|R|F|1993-04-21|1993-04-06|1993-05-02|DELIVER IN PERSON|SHIP|p quickly around the furiously | +29742|413090|25599|5|32|32098.24|0.04|0.00|R|F|1993-02-14|1993-04-18|1993-03-10|NONE|SHIP| the blithely special | +29743|724853|49882|1|50|93891.00|0.09|0.01|A|F|1993-02-05|1993-01-08|1993-03-01|DELIVER IN PERSON|SHIP|ully regular deposits. slyly final hockey| +29743|597070|9582|2|18|21006.90|0.00|0.03|A|F|1992-11-12|1992-12-09|1992-12-07|COLLECT COD|MAIL|instructio| +29768|459399|46927|1|25|33959.25|0.09|0.01|N|O|1996-08-30|1996-06-17|1996-09-01|NONE|MAIL|ily special deposi| +29768|104484|29489|2|7|10419.36|0.06|0.03|N|O|1996-06-11|1996-07-23|1996-06-25|NONE|TRUCK|ithely express deposit| +29768|51112|38616|3|37|39335.07|0.04|0.02|N|O|1996-08-21|1996-06-16|1996-09-12|COLLECT COD|MAIL|ial sauternes detect slyl| +29768|33036|45537|4|1|969.03|0.05|0.01|N|O|1996-09-12|1996-07-24|1996-09-20|TAKE BACK RETURN|FOB|. deposits use doggedly. fluffily ironic | +29769|467777|30287|1|3|5234.25|0.05|0.08|N|O|1997-12-28|1998-02-11|1998-01-08|NONE|RAIL|ncies are furi| +29769|922335|9890|2|3|4071.87|0.00|0.01|N|O|1998-01-16|1998-01-22|1998-01-31|DELIVER IN PERSON|AIR|ions are along the furiously| +29769|667961|17962|3|31|59796.83|0.04|0.07|N|O|1998-01-20|1998-02-04|1998-01-31|TAKE BACK RETURN|FOB|boost fluffily regular pinto| +29769|404723|17232|4|9|14649.30|0.08|0.07|N|O|1997-12-10|1998-02-18|1997-12-26|COLLECT COD|FOB|ly special patterns cajol| +29770|156858|19362|1|8|15318.80|0.00|0.02|N|O|1997-06-13|1997-03-24|1997-06-30|COLLECT COD|MAIL|ld, ironic | +29770|304714|4715|2|48|82497.60|0.00|0.04|N|O|1997-05-04|1997-05-15|1997-05-20|NONE|SHIP|osits snooze quickly. spec| +29770|319002|31509|3|35|35734.65|0.10|0.08|N|O|1997-02-24|1997-05-06|1997-03-13|DELIVER IN PERSON|SHIP|old deposits; furiously unusual | +29770|465313|27823|4|22|28122.38|0.02|0.05|N|O|1997-05-14|1997-05-14|1997-05-27|COLLECT COD|SHIP|s. even dinos are furiously. r| +29770|498833|11343|5|39|71440.59|0.04|0.07|N|O|1997-06-09|1997-03-29|1997-06-15|COLLECT COD|AIR|e doggedly unu| +29770|884423|9458|6|9|12666.42|0.04|0.00|N|O|1997-04-20|1997-04-22|1997-04-24|COLLECT COD|AIR|ons wake quickly aro| +29770|488146|38147|7|19|21548.28|0.02|0.03|N|O|1997-04-06|1997-04-16|1997-04-18|DELIVER IN PERSON|RAIL|fluffily silent courts| +29771|256546|6547|1|22|33055.66|0.05|0.01|N|O|1998-08-11|1998-07-17|1998-08-17|NONE|MAIL|ing deposit| +29771|764430|14431|2|38|56787.20|0.08|0.06|N|O|1998-04-27|1998-07-16|1998-05-21|DELIVER IN PERSON|MAIL| carefully against the even, silent account| +29771|764732|27248|3|38|68274.60|0.05|0.05|N|O|1998-08-13|1998-07-01|1998-09-08|DELIVER IN PERSON|SHIP|mong the carefull| +29771|847623|22656|4|22|34552.76|0.00|0.01|N|O|1998-06-19|1998-05-25|1998-07-03|NONE|SHIP|s accounts use caref| +29771|984897|34898|5|12|23782.20|0.00|0.05|N|O|1998-06-01|1998-05-30|1998-06-25|NONE|AIR|n theodoli| +29772|101070|1071|1|41|43913.87|0.09|0.08|N|O|1996-07-12|1996-07-18|1996-08-06|NONE|TRUCK|cajole quickly regular pinto beans. blith| +29772|677345|2372|2|22|29090.82|0.09|0.02|N|O|1996-06-09|1996-07-15|1996-06-16|TAKE BACK RETURN|FOB|wake furiously. blithely ironic theodolite| +29772|132658|20165|3|46|77769.90|0.08|0.05|N|O|1996-07-03|1996-07-29|1996-08-02|NONE|TRUCK|y ironic ideas could have to boost pint| +29772|575081|37593|4|36|41618.16|0.08|0.06|N|O|1996-06-11|1996-06-15|1996-06-15|NONE|TRUCK|nding requests? express excuses along| +29773|932540|20095|1|40|62900.00|0.04|0.05|N|O|1998-02-11|1998-01-20|1998-02-26|COLLECT COD|FOB|slyly brave dependencies s| +29773|193330|43331|2|27|38429.91|0.05|0.03|N|O|1998-03-02|1998-01-21|1998-03-12|NONE|MAIL|ests sleep across the furiously regular fo| +29773|292517|5023|3|42|63399.00|0.08|0.06|N|O|1998-01-23|1998-01-24|1998-02-16|TAKE BACK RETURN|SHIP|o beans maintain carefully about| +29773|325628|13147|4|46|76066.06|0.01|0.05|N|O|1998-01-25|1998-01-28|1998-02-19|NONE|REG AIR|ages haggle blithely furiously even d| +29773|824091|11640|5|43|43647.15|0.10|0.04|N|O|1998-02-13|1998-01-01|1998-03-04|COLLECT COD|RAIL|d deposits. fluffily regular foxes nag| +29774|108840|46347|1|14|25883.76|0.01|0.02|A|F|1994-09-24|1994-07-20|1994-10-08|NONE|MAIL|ly blithely ironic ideas. furiously | +29774|267892|5408|2|5|9299.40|0.10|0.00|A|F|1994-06-06|1994-08-07|1994-06-20|COLLECT COD|RAIL|uickly fina| +29774|456406|31425|3|48|65394.24|0.07|0.08|R|F|1994-06-29|1994-08-22|1994-07-22|DELIVER IN PERSON|TRUCK|lyly special ideas. blit| +29774|801857|1858|4|14|24623.34|0.04|0.03|A|F|1994-08-28|1994-06-29|1994-09-26|TAKE BACK RETURN|AIR|oxes hang blithely across the bl| +29774|805397|5398|5|41|53396.35|0.05|0.06|R|F|1994-06-13|1994-07-01|1994-07-13|NONE|REG AIR|osits against the slow, blithe foxes ca| +29775|893267|43268|1|15|18903.30|0.02|0.08|R|F|1992-07-13|1992-08-03|1992-07-24|DELIVER IN PERSON|AIR|ts. carefull| +29775|135324|22831|2|30|40779.60|0.01|0.00|A|F|1992-10-18|1992-09-21|1992-11-02|DELIVER IN PERSON|TRUCK|long the slyly final dep| +29775|382822|7837|3|6|11428.86|0.02|0.02|R|F|1992-10-12|1992-08-01|1992-10-14|TAKE BACK RETURN|TRUCK|tions! final deposits d| +29800|238794|38795|1|11|19060.58|0.07|0.05|N|O|1995-12-30|1996-01-04|1996-01-20|COLLECT COD|REG AIR|lithely ironic packages around th| +29800|399473|11981|2|32|50318.72|0.07|0.03|N|O|1995-12-30|1995-12-31|1996-01-02|COLLECT COD|REG AIR|l packages sleep blithely. slyly p| +29800|931990|19545|3|3|6065.85|0.05|0.08|N|O|1996-02-07|1996-01-25|1996-03-01|DELIVER IN PERSON|RAIL|sts wake furiously bold theodolites. dep| +29800|947790|35345|4|9|16539.75|0.03|0.04|N|O|1995-12-18|1996-01-25|1996-01-08|DELIVER IN PERSON|MAIL|ffily unusual requests! even excuses a| +29800|494174|6684|5|22|25699.30|0.09|0.07|N|O|1995-12-05|1996-01-24|1995-12-21|NONE|MAIL|es-- even de| +29800|579149|4172|6|50|61406.00|0.07|0.05|N|O|1995-12-16|1995-12-07|1995-12-19|TAKE BACK RETURN|TRUCK| haggle furiously silent| +29801|503519|41050|1|39|59377.11|0.06|0.08|N|O|1996-10-06|1996-10-14|1996-10-08|COLLECT COD|REG AIR|yers boost boldly iron| +29801|637044|37045|2|36|35316.36|0.05|0.06|N|O|1996-08-21|1996-10-01|1996-09-07|DELIVER IN PERSON|FOB|lly along th| +29801|798278|10794|3|19|26148.56|0.05|0.02|N|O|1996-08-27|1996-10-24|1996-09-26|TAKE BACK RETURN|AIR|pinto beans grow. courts mold s| +29802|118306|18307|1|35|46350.50|0.05|0.05|N|O|1997-01-07|1997-02-17|1997-01-08|DELIVER IN PERSON|SHIP|against the bold, | +29802|355909|5910|2|4|7859.56|0.10|0.00|N|O|1997-02-08|1997-02-15|1997-03-06|NONE|REG AIR|iet deposits may cajole. blithely ruthless| +29802|752794|2795|3|8|14774.08|0.03|0.01|N|O|1997-01-01|1997-02-24|1997-01-19|TAKE BACK RETURN|REG AIR|nic packages snooze alongside of the bli| +29802|195074|32584|4|46|53777.22|0.07|0.08|N|O|1997-02-12|1997-03-10|1997-02-14|TAKE BACK RETURN|AIR|es use carefully quiet| +29802|594029|19052|5|7|7861.00|0.07|0.01|N|O|1997-03-20|1997-02-12|1997-03-24|DELIVER IN PERSON|RAIL|c hockey players according to the| +29802|832933|20482|6|27|50379.03|0.02|0.03|N|O|1997-01-04|1997-03-21|1997-01-24|DELIVER IN PERSON|FOB|iously regular excuse| +29802|103307|3308|7|43|56342.90|0.04|0.02|N|O|1997-02-01|1997-02-17|1997-02-14|NONE|MAIL|ests. ironic, ironic packages po| +29803|275090|101|1|12|12780.96|0.08|0.04|A|F|1995-05-01|1995-04-16|1995-05-12|COLLECT COD|SHIP|oss the instructions. sly| +29803|430755|5772|2|27|45514.71|0.06|0.02|A|F|1995-03-14|1995-04-10|1995-03-23|DELIVER IN PERSON|FOB|er the carefully exp| +29803|697616|22643|3|25|40339.50|0.00|0.06|R|F|1995-05-30|1995-04-22|1995-06-01|TAKE BACK RETURN|FOB| express accounts sleep carefully after | +29803|817635|42668|4|13|20183.67|0.06|0.06|R|F|1995-02-28|1995-03-14|1995-03-29|TAKE BACK RETURN|MAIL|l, even pinto beans. slyly even dep| +29803|976531|26532|5|26|41794.74|0.07|0.02|A|F|1995-02-16|1995-04-21|1995-02-23|TAKE BACK RETURN|REG AIR|ithely ironic deposits. care| +29803|542600|17621|6|39|64060.62|0.05|0.00|A|F|1995-04-17|1995-03-30|1995-05-03|TAKE BACK RETURN|SHIP|ously above the furiously final | +29804|752465|14981|1|31|47040.33|0.09|0.05|N|O|1995-07-24|1995-07-19|1995-08-02|COLLECT COD|MAIL|ajole furiously above the even, bo| +29804|678117|40631|2|20|21901.60|0.01|0.04|N|O|1995-07-20|1995-06-22|1995-08-14|TAKE BACK RETURN|RAIL|nal foxes. unusual ide| +29804|107949|20452|3|46|90019.24|0.06|0.03|N|F|1995-06-10|1995-06-29|1995-07-05|TAKE BACK RETURN|AIR|riously slow deposits cajole slyly ag| +29805|53798|41302|1|43|75326.97|0.06|0.05|A|F|1993-05-09|1993-03-15|1993-05-31|COLLECT COD|RAIL|ilent, ironic accounts. | +29805|180285|17795|2|35|47784.80|0.09|0.06|R|F|1993-04-05|1993-02-23|1993-05-01|COLLECT COD|TRUCK|lyly ironic accounts beside the carefully f| +29805|33425|45926|3|39|52978.38|0.03|0.03|A|F|1993-04-06|1993-03-16|1993-04-17|DELIVER IN PERSON|FOB|ely bold ideas boost ins| +29805|761086|36117|4|37|42440.85|0.05|0.07|A|F|1993-02-26|1993-03-08|1993-02-27|TAKE BACK RETURN|RAIL|are? quickly ironic packages sl| +29806|570368|7902|1|35|50341.90|0.01|0.01|N|O|1996-09-01|1996-07-31|1996-09-03|DELIVER IN PERSON|AIR|ly pending asy| +29806|162503|37510|2|24|37572.00|0.08|0.01|N|O|1996-09-01|1996-08-21|1996-09-06|DELIVER IN PERSON|REG AIR|y. quickly express theodolites | +29807|237796|25309|1|3|5201.34|0.05|0.01|N|O|1995-08-19|1995-06-11|1995-09-12|DELIVER IN PERSON|SHIP|silent accounts| +29807|627462|39975|2|26|36125.18|0.08|0.01|N|O|1995-08-09|1995-07-19|1995-08-22|COLLECT COD|FOB|uests after the carefully iro| +29807|742008|17037|3|23|24149.31|0.05|0.03|N|O|1995-08-17|1995-06-26|1995-08-28|COLLECT COD|MAIL|ss foxes are carefully about the| +29807|919457|44494|4|33|48721.53|0.04|0.03|A|F|1995-05-20|1995-07-27|1995-06-14|NONE|SHIP|lly against the furiously | +29807|299011|11517|5|9|9090.00|0.08|0.03|N|O|1995-06-26|1995-07-30|1995-07-24|COLLECT COD|TRUCK|ss the fur| +29832|279391|29392|1|45|61667.10|0.02|0.01|R|F|1994-12-26|1994-11-01|1995-01-24|TAKE BACK RETURN|REG AIR|ructions haggle. platelets wake slyly among| +29832|723554|11097|2|44|69410.88|0.05|0.02|R|F|1995-01-12|1994-11-07|1995-01-27|COLLECT COD|REG AIR|fully regular| +29832|769717|19718|3|37|66107.16|0.09|0.04|A|F|1995-01-09|1994-11-09|1995-01-14|DELIVER IN PERSON|REG AIR| unusual Tiresias | +29832|627176|14713|4|4|4412.56|0.05|0.08|R|F|1994-10-05|1994-12-18|1994-11-03|DELIVER IN PERSON|FOB|ests. furiously specia| +29833|636008|11033|1|43|40590.71|0.08|0.05|R|F|1995-01-29|1995-01-26|1995-02-26|TAKE BACK RETURN|MAIL|t the final asymptote| +29833|377007|2022|2|25|27099.75|0.10|0.05|A|F|1995-03-10|1995-01-22|1995-03-25|TAKE BACK RETURN|MAIL|ts maintain | +29833|352374|2375|3|7|9984.52|0.02|0.05|R|F|1995-03-05|1995-01-31|1995-04-03|TAKE BACK RETURN|FOB|inal packages| +29833|340054|2561|4|3|3282.12|0.00|0.00|R|F|1995-03-04|1995-02-02|1995-03-19|NONE|TRUCK|olites use quickly. furiously special de| +29833|280902|18418|5|43|80964.27|0.03|0.06|R|F|1995-02-27|1994-12-19|1995-03-26|COLLECT COD|TRUCK|ect carefully unusual request| +29833|108962|8963|6|31|61099.76|0.06|0.07|R|F|1995-01-18|1995-02-12|1995-02-01|DELIVER IN PERSON|TRUCK|es wake. regul| +29833|319356|44369|7|29|39884.86|0.05|0.06|A|F|1995-01-02|1995-01-12|1995-01-06|NONE|AIR|e quickly. even requests along the | +29834|404509|17018|1|48|67847.04|0.03|0.00|N|O|1998-06-02|1998-05-12|1998-06-08|NONE|AIR| after the special deposits. ironic| +29834|580122|5145|2|36|43275.60|0.05|0.01|N|O|1998-04-21|1998-07-03|1998-04-24|DELIVER IN PERSON|RAIL|express dependencies around the id| +29834|95277|7779|3|31|39440.37|0.05|0.01|N|O|1998-04-22|1998-07-05|1998-05-01|NONE|MAIL| blithely. furiously quick p| +29834|313758|38771|4|38|67326.12|0.10|0.04|N|O|1998-07-07|1998-05-08|1998-07-16|COLLECT COD|AIR|bold deposits are alon| +29834|330001|17520|5|50|51549.50|0.00|0.05|N|O|1998-06-27|1998-06-14|1998-07-19|DELIVER IN PERSON|AIR|ent hockey players haggle. ca| +29835|915312|27831|1|10|13272.70|0.02|0.03|N|O|1998-02-09|1998-03-29|1998-02-24|DELIVER IN PERSON|RAIL|ly carefully ironic foxes. slyly bold | +29835|648394|10907|2|45|60406.20|0.05|0.04|N|O|1998-04-18|1998-03-22|1998-05-12|COLLECT COD|RAIL|ts wake blithely. furiously bold pi| +29835|548576|36107|3|13|21119.15|0.02|0.02|N|O|1998-03-09|1998-03-05|1998-04-08|COLLECT COD|TRUCK|even, special ideas grow among the regul| +29835|910907|23426|4|26|49864.36|0.01|0.03|N|O|1998-04-16|1998-03-01|1998-05-07|TAKE BACK RETURN|FOB|ide of the qui| +29835|603341|28366|5|6|7465.86|0.07|0.06|N|O|1998-04-22|1998-04-01|1998-05-16|COLLECT COD|RAIL|e carefully bli| +29835|349550|49551|6|16|25592.64|0.07|0.01|N|O|1998-05-02|1998-03-03|1998-05-07|COLLECT COD|MAIL|uests sublate bravely among| +29835|870174|20175|7|33|37756.29|0.05|0.02|N|O|1998-03-25|1998-04-20|1998-04-24|DELIVER IN PERSON|SHIP|zzle special, eve| +29836|6067|43568|1|40|38922.40|0.03|0.08|N|O|1998-04-06|1998-02-07|1998-05-03|DELIVER IN PERSON|TRUCK|ns. final deposits alongsid| +29837|533857|33858|1|48|90759.84|0.10|0.05|R|F|1992-07-11|1992-08-16|1992-07-15|TAKE BACK RETURN|RAIL| after the reques| +29837|529056|16587|2|43|46656.29|0.10|0.08|A|F|1992-07-09|1992-08-30|1992-07-19|NONE|MAIL|ly ironic theodolites. slyly bold f| +29837|832380|44897|3|16|20997.44|0.09|0.00|A|F|1992-08-04|1992-08-14|1992-08-29|TAKE BACK RETURN|REG AIR|latelets haggle deposits. slyly| +29837|798748|11264|4|24|44321.04|0.05|0.06|A|F|1992-06-28|1992-07-27|1992-07-23|NONE|AIR|grouches are furiously. blithely p| +29837|550287|288|5|31|41455.06|0.06|0.08|A|F|1992-09-16|1992-08-10|1992-09-22|DELIVER IN PERSON|TRUCK|nts use blithely. stealthy accounts alongsi| +29838|233791|21304|1|4|6899.12|0.07|0.03|N|O|1996-12-12|1996-11-17|1997-01-10|TAKE BACK RETURN|RAIL|en courts affix slyly silent,| +29838|311803|24310|2|40|72591.60|0.08|0.02|N|O|1996-12-21|1996-11-18|1997-01-19|TAKE BACK RETURN|TRUCK|ven pinto beans. furiously busy deposits| +29838|468587|43606|3|10|15555.60|0.00|0.05|N|O|1997-01-01|1997-01-03|1997-01-25|TAKE BACK RETURN|SHIP|nal depende| +29838|536539|36540|4|37|58293.87|0.07|0.00|N|O|1996-12-05|1996-11-19|1996-12-08|TAKE BACK RETURN|AIR|quests nag alo| +29838|596569|34103|5|13|21652.02|0.02|0.01|N|O|1997-02-05|1996-11-11|1997-02-23|COLLECT COD|AIR|asymptotes integrate about th| +29839|184307|34308|1|28|38956.40|0.01|0.02|A|F|1994-09-25|1994-10-28|1994-10-24|TAKE BACK RETURN|SHIP|counts are towa| +29839|647033|47034|2|12|11760.00|0.03|0.07|R|F|1994-11-23|1994-11-29|1994-11-27|TAKE BACK RETURN|AIR|s escapades haggle enticingly around | +29839|678102|40616|3|39|42122.73|0.01|0.01|A|F|1994-12-07|1994-12-11|1995-01-04|TAKE BACK RETURN|FOB|final depende| +29864|246126|46127|1|2|2144.22|0.03|0.02|N|O|1996-06-01|1996-06-30|1996-06-04|COLLECT COD|TRUCK| even requests. blithely final re| +29864|636669|49182|2|12|19267.56|0.01|0.02|N|O|1996-07-30|1996-07-11|1996-07-31|DELIVER IN PERSON|RAIL|lly express ide| +29864|479972|42482|3|33|64414.35|0.00|0.05|N|O|1996-07-30|1996-05-25|1996-08-21|COLLECT COD|RAIL| beans. fluffily pending theodolites cajole| +29865|177591|27592|1|19|31703.21|0.05|0.05|N|O|1998-05-10|1998-05-16|1998-05-20|NONE|RAIL|t blithely across the even, pending| +29865|766793|29309|2|33|61372.08|0.01|0.03|N|O|1998-05-12|1998-05-15|1998-05-20|TAKE BACK RETURN|MAIL|lar deposits. express asymptotes wake care| +29865|478219|40729|3|35|41901.65|0.03|0.08|N|O|1998-05-04|1998-05-21|1998-05-10|COLLECT COD|FOB|requests are furiously. slyly express r| +29865|413678|38695|4|39|62074.35|0.04|0.07|N|O|1998-03-24|1998-06-10|1998-04-06|COLLECT COD|AIR|nts nag ruthlessly. sile| +29865|672207|34721|5|47|55420.99|0.03|0.04|N|O|1998-05-16|1998-06-17|1998-06-14|TAKE BACK RETURN|SHIP|ely regular ins| +29865|770755|8301|6|9|16431.48|0.05|0.01|N|O|1998-04-03|1998-06-19|1998-04-13|TAKE BACK RETURN|MAIL|e after the | +29865|71973|34475|7|34|66128.98|0.08|0.00|N|O|1998-06-28|1998-04-28|1998-07-24|DELIVER IN PERSON|RAIL|instructions. fluffily special instruct| +29866|641520|4033|1|5|7307.45|0.06|0.05|N|O|1997-09-21|1997-10-08|1997-10-02|DELIVER IN PERSON|REG AIR|ronic dependencie| +29866|20205|20206|2|50|56260.00|0.07|0.02|N|O|1997-11-04|1997-10-05|1997-11-11|DELIVER IN PERSON|AIR|e blithely blithely | +29866|585028|10051|3|17|18921.00|0.04|0.03|N|O|1997-09-12|1997-09-30|1997-10-12|NONE|RAIL|yly final packages are regularly bold accou| +29866|554553|17065|4|33|53048.49|0.04|0.01|N|O|1997-10-11|1997-10-09|1997-10-31|TAKE BACK RETURN|FOB|fter the furi| +29866|367271|29779|5|50|66913.00|0.09|0.06|N|O|1997-08-23|1997-10-09|1997-08-25|COLLECT COD|TRUCK|s play caref| +29867|345694|8201|1|38|66107.84|0.10|0.01|R|F|1993-11-17|1993-11-13|1993-12-04|COLLECT COD|AIR| blithely ironic attainments af| +29868|877841|15393|1|33|60020.40|0.08|0.02|N|O|1997-11-07|1997-12-16|1997-11-10|NONE|REG AIR|leep fluffily final patterns| +29868|862831|12832|2|42|75339.18|0.05|0.01|N|O|1997-10-20|1997-11-14|1997-10-25|DELIVER IN PERSON|AIR|bout the bravely regular forg| +29868|592645|42646|3|44|76455.28|0.09|0.02|N|O|1997-10-29|1997-12-07|1997-11-10|NONE|REG AIR|pliers haggle slyly| +29868|582285|44797|4|48|65628.48|0.02|0.08|N|O|1997-10-31|1998-01-09|1997-11-25|COLLECT COD|SHIP| even deposits: carefully fina| +29868|458451|8452|5|42|59196.06|0.02|0.03|N|O|1997-12-17|1997-12-09|1998-01-04|TAKE BACK RETURN|SHIP|longside of the furiously pending i| +29869|993806|43807|1|43|81689.68|0.06|0.00|R|F|1992-08-26|1992-10-04|1992-09-14|DELIVER IN PERSON|AIR|odolites lose carefu| +29869|896258|33810|2|18|22575.78|0.04|0.07|A|F|1992-07-22|1992-10-10|1992-08-14|COLLECT COD|SHIP| slyly regular instruction| +29869|407279|7280|3|43|51008.75|0.04|0.03|A|F|1992-07-23|1992-08-22|1992-07-27|NONE|FOB|ly. daring, permanent t| +29870|275062|37568|1|32|33185.60|0.06|0.07|N|O|1998-04-11|1998-04-12|1998-04-15|COLLECT COD|REG AIR|ully even fox| +29870|955898|43456|2|43|84015.55|0.05|0.06|N|O|1998-03-23|1998-04-23|1998-04-19|NONE|MAIL|special Ti| +29870|773858|23859|3|19|36704.58|0.02|0.03|N|O|1998-02-12|1998-03-24|1998-02-16|TAKE BACK RETURN|RAIL|nding courts. fluffily express packag| +29870|220316|32821|4|6|7417.80|0.08|0.01|N|O|1998-04-17|1998-04-19|1998-05-15|COLLECT COD|TRUCK|ly according to the blithely even the| +29870|838426|25975|5|45|61397.10|0.10|0.01|N|O|1998-04-18|1998-03-24|1998-05-09|NONE|FOB|ins according to the requests ha| +29870|423237|23238|6|7|8121.47|0.05|0.03|N|O|1998-04-29|1998-03-20|1998-05-07|NONE|AIR|ilent accounts hang slyly. furiously fi| +29871|367421|29929|1|20|29768.20|0.10|0.08|N|O|1998-02-27|1998-02-10|1998-03-23|COLLECT COD|MAIL|carefully. fin| +29871|240286|2791|2|20|24525.40|0.01|0.01|N|O|1998-01-16|1998-02-16|1998-02-13|COLLECT COD|MAIL|requests. silent sheav| +29871|477821|40331|3|37|66555.60|0.10|0.05|N|O|1998-03-09|1998-01-13|1998-04-08|NONE|RAIL|ns. silent asymptotes doubt carefully t| +29896|425564|13089|1|39|58092.06|0.10|0.07|A|F|1993-12-27|1993-11-08|1994-01-23|TAKE BACK RETURN|RAIL|ependencies sl| +29896|449040|49041|2|45|44505.90|0.09|0.03|A|F|1994-01-14|1993-12-19|1994-02-08|COLLECT COD|MAIL|uctions nag after the ironic, even | +29896|3894|41395|3|13|23372.57|0.03|0.06|R|F|1994-01-27|1993-12-01|1994-02-07|DELIVER IN PERSON|TRUCK| the carefully pending waters. | +29896|443357|30882|4|1|1300.33|0.10|0.00|R|F|1993-10-17|1993-11-17|1993-10-20|TAKE BACK RETURN|TRUCK|nd the carefully regul| +29896|488364|25892|5|7|9466.38|0.03|0.03|R|F|1993-12-04|1993-11-28|1993-12-11|TAKE BACK RETURN|MAIL| ideas after the slyly unusual ac| +29896|921690|34209|6|34|58196.10|0.07|0.08|R|F|1994-01-03|1993-12-10|1994-01-08|DELIVER IN PERSON|SHIP|packages poach furiously deposits: | +29897|26354|13855|1|50|64017.50|0.02|0.04|N|O|1998-07-03|1998-07-17|1998-07-15|NONE|REG AIR|refully slyly sly account| +29897|914953|14954|2|13|25582.83|0.05|0.05|N|O|1998-05-05|1998-06-25|1998-05-15|NONE|SHIP|y special reques| +29897|611547|36572|3|45|65632.95|0.03|0.04|N|O|1998-07-30|1998-07-04|1998-08-21|TAKE BACK RETURN|SHIP| blithely even deposi| +29898|358677|21185|1|17|29506.22|0.10|0.01|N|O|1998-01-02|1997-11-03|1998-01-20|COLLECT COD|FOB|s. furiousl| +29899|247126|34639|1|10|10731.10|0.03|0.01|R|F|1992-05-30|1992-05-31|1992-06-01|COLLECT COD|AIR|ns detect furio| +29899|440118|27643|2|34|35975.06|0.09|0.00|A|F|1992-05-25|1992-04-27|1992-05-29|NONE|AIR|s sleep slyly | +29900|379942|4957|1|27|54592.11|0.03|0.06|A|F|1994-10-14|1994-12-17|1994-10-18|TAKE BACK RETURN|REG AIR|re carefully reg| +29900|679851|42365|2|30|54924.60|0.02|0.05|A|F|1994-11-07|1994-11-13|1994-11-12|TAKE BACK RETURN|AIR|e furiously furiously regular deposits. b| +29900|240442|15451|3|40|55297.20|0.09|0.08|A|F|1994-09-27|1994-12-23|1994-10-25|COLLECT COD|SHIP| blithely regular accounts nag| +29900|102050|39557|4|36|37873.80|0.00|0.00|R|F|1994-12-14|1994-12-08|1994-12-27|DELIVER IN PERSON|AIR|xpress theodolites sle| +29900|137640|12645|5|4|6710.56|0.06|0.03|R|F|1994-12-13|1994-11-11|1994-12-27|DELIVER IN PERSON|MAIL|, ironic accounts integrate quickly. f| +29900|304076|29089|6|8|8640.48|0.08|0.06|R|F|1994-11-21|1994-12-02|1994-12-15|TAKE BACK RETURN|TRUCK| deposits hinder fluffily ex| +29901|999986|37544|1|41|85523.54|0.04|0.01|N|O|1996-05-01|1996-04-14|1996-05-08|NONE|REG AIR| theodolites. quickly ironic d| +29901|754495|17011|2|35|54231.10|0.01|0.07|N|O|1996-05-27|1996-05-16|1996-06-10|DELIVER IN PERSON|AIR|y dinos. ironic reque| +29901|791124|28670|3|14|17011.26|0.03|0.04|N|O|1996-06-11|1996-05-08|1996-06-22|NONE|REG AIR|aggle. carefully bold | +29901|416649|41666|4|38|59493.56|0.04|0.02|N|O|1996-07-02|1996-05-19|1996-07-20|COLLECT COD|RAIL|gular packages sol| +29901|604012|41549|5|11|10075.78|0.10|0.01|N|O|1996-03-16|1996-05-05|1996-03-18|DELIVER IN PERSON|FOB|es wake beside the pending requests. | +29901|624530|12067|6|18|26181.00|0.10|0.06|N|O|1996-03-15|1996-05-15|1996-03-22|DELIVER IN PERSON|RAIL|cajole quickly qui| +29902|257434|44950|1|29|40351.18|0.00|0.02|A|F|1995-04-06|1995-04-13|1995-05-06|TAKE BACK RETURN|TRUCK|inal deposits thrash car| +29902|692697|42698|2|34|57448.44|0.02|0.07|R|F|1995-03-21|1995-05-30|1995-04-17|TAKE BACK RETURN|REG AIR| blithely among th| +29902|151046|38556|3|20|21940.80|0.07|0.08|A|F|1995-05-29|1995-05-14|1995-06-12|NONE|TRUCK|ickly final| +29902|618548|43573|4|2|2933.02|0.06|0.07|R|F|1995-04-30|1995-04-12|1995-05-29|COLLECT COD|TRUCK|xes are slyly regular foxes. unusual| +29903|507465|7466|1|30|44173.20|0.10|0.06|A|F|1993-04-11|1993-06-04|1993-05-01|COLLECT COD|MAIL|al requests! regular packages e| +29903|961971|11972|2|21|42691.53|0.04|0.04|A|F|1993-07-19|1993-06-28|1993-07-27|NONE|SHIP|osits sleep furiously among t| +29928|882468|44986|1|28|40611.76|0.07|0.08|N|O|1995-11-10|1995-12-01|1995-11-15|COLLECT COD|REG AIR|theodolites detect carefully abov| +29928|626786|39299|2|10|17127.50|0.04|0.06|N|O|1995-12-19|1995-12-07|1996-01-05|TAKE BACK RETURN|RAIL| slyly special depos| +29928|391691|16706|3|31|55263.08|0.03|0.04|N|O|1995-11-01|1995-11-28|1995-11-09|NONE|REG AIR|ously silent accounts. excuses hinder acc| +29929|216072|28577|1|39|38534.34|0.03|0.04|N|O|1996-01-20|1995-12-24|1996-02-11|NONE|AIR|. quickly express ideas sle| +29929|516175|3706|2|40|47646.00|0.00|0.07|N|O|1995-12-06|1996-01-05|1995-12-23|TAKE BACK RETURN|TRUCK|fully even pi| +29930|847363|22396|1|29|37999.28|0.07|0.04|R|F|1994-09-25|1994-11-21|1994-09-29|DELIVER IN PERSON|FOB|tes wake. furiously final pack| +29930|620561|45586|2|1|1481.53|0.08|0.05|A|F|1994-09-16|1994-10-25|1994-10-02|NONE|AIR|lithely special deposits detect blit| +29930|760764|48310|3|24|43793.52|0.09|0.02|A|F|1994-10-18|1994-10-13|1994-11-11|DELIVER IN PERSON|RAIL|to beans are. furious| +29930|159467|46977|4|20|30529.20|0.03|0.06|A|F|1994-11-11|1994-10-17|1994-11-25|NONE|TRUCK|s. accounts are | +29930|148254|23259|5|42|54694.50|0.04|0.04|A|F|1994-09-26|1994-09-30|1994-10-09|NONE|AIR|eodolites are furiously regular c| +29930|691239|28779|6|18|22143.60|0.07|0.08|R|F|1994-12-05|1994-11-09|1994-12-31|NONE|RAIL|sits. blithely express not| +29931|380072|17594|1|44|50690.64|0.03|0.06|A|F|1995-05-17|1995-05-17|1995-05-28|DELIVER IN PERSON|AIR|tes sleep blithely regular excuses. | +29931|865889|15890|2|20|37096.80|0.02|0.05|N|O|1995-07-22|1995-07-04|1995-07-31|NONE|SHIP|ages at the slyly unu| +29931|980813|5852|3|16|30300.32|0.05|0.06|N|O|1995-08-05|1995-05-24|1995-09-03|COLLECT COD|AIR|. blithely express deposits are a| +29931|513829|38850|4|8|14742.40|0.02|0.01|A|F|1995-04-24|1995-06-08|1995-05-01|NONE|TRUCK|ng accounts integrate slyly bold requests.| +29931|916538|16539|5|30|46634.70|0.03|0.08|N|O|1995-08-04|1995-05-10|1995-08-28|DELIVER IN PERSON|FOB| packages. furiously pending frays agai| +29931|250528|529|6|23|34005.73|0.08|0.04|A|F|1995-05-04|1995-05-27|1995-06-03|NONE|FOB|lites boost carefully even pack| +29932|361053|36068|1|7|7798.28|0.01|0.03|N|O|1995-08-18|1995-09-12|1995-09-12|DELIVER IN PERSON|FOB|lar packages c| +29932|210617|10618|2|32|48883.20|0.09|0.01|N|O|1995-09-14|1995-07-28|1995-09-21|TAKE BACK RETURN|FOB|uriously above the unusual frets.| +29932|825313|346|3|4|4953.08|0.05|0.02|N|O|1995-09-01|1995-08-05|1995-09-06|TAKE BACK RETURN|FOB|und the furiously bold accounts; slyly r| +29932|32264|7265|4|7|8373.82|0.10|0.02|N|O|1995-09-17|1995-09-02|1995-09-30|TAKE BACK RETURN|RAIL|s. furious| +29932|253790|16296|5|32|55800.96|0.09|0.00|N|O|1995-07-25|1995-08-10|1995-07-29|COLLECT COD|AIR|y regular packages haggl| +29932|447327|34852|6|8|10194.40|0.02|0.08|N|O|1995-07-30|1995-09-09|1995-08-24|COLLECT COD|SHIP|requests nag quickly ironic deposi| +29933|835631|48148|1|45|70496.55|0.02|0.02|N|O|1997-09-21|1997-11-11|1997-10-03|DELIVER IN PERSON|AIR|le slyly pending packages. iro| +29933|436213|48722|2|6|6895.14|0.00|0.07|N|O|1997-11-27|1997-10-25|1997-12-04|DELIVER IN PERSON|SHIP|unts are blithely unusua| +29934|437393|49902|1|32|42571.84|0.01|0.08|A|F|1994-06-07|1994-04-21|1994-07-03|NONE|FOB|lyly among the slyly even depos| +29934|255669|30680|2|6|9747.90|0.03|0.00|A|F|1994-03-23|1994-04-17|1994-04-13|TAKE BACK RETURN|SHIP|efully along the doggedly bold pl| +29934|23589|23590|3|4|6050.32|0.10|0.00|A|F|1994-02-28|1994-03-24|1994-03-27|COLLECT COD|RAIL| the furiously silent deposits. sometim| +29934|445369|45370|4|25|32858.50|0.03|0.06|R|F|1994-04-29|1994-05-10|1994-05-18|DELIVER IN PERSON|MAIL|ccounts. fluffily final deposits sleep car| +29934|312953|37966|5|20|39318.80|0.02|0.03|A|F|1994-02-17|1994-05-11|1994-03-06|TAKE BACK RETURN|RAIL|ular pinto beans sleep regularly| +29934|799821|49822|6|41|78752.39|0.02|0.04|A|F|1994-03-17|1994-04-13|1994-03-31|COLLECT COD|REG AIR|kages. silent deposits are furio| +29934|583244|33245|7|17|22562.74|0.00|0.00|A|F|1994-06-10|1994-03-27|1994-07-04|DELIVER IN PERSON|REG AIR|es use careful| +29935|565260|40283|1|19|25179.56|0.08|0.01|R|F|1993-02-02|1993-03-22|1993-02-14|DELIVER IN PERSON|AIR|fully regular warthogs wake e| +29960|399829|49830|1|37|71365.97|0.06|0.06|N|O|1996-04-22|1996-01-29|1996-05-16|COLLECT COD|REG AIR|counts wake| +29960|915515|15516|2|34|52035.98|0.04|0.02|N|O|1995-12-27|1996-02-01|1996-01-05|TAKE BACK RETURN|AIR|s. final, regul| +29960|59110|34113|3|46|49179.06|0.02|0.00|N|O|1996-04-18|1996-02-17|1996-04-19|TAKE BACK RETURN|AIR|ven, regular| +29960|453573|28592|4|39|59535.45|0.08|0.01|N|O|1996-02-15|1996-02-28|1996-03-05|NONE|TRUCK| accounts boost| +29960|199109|36619|5|9|10872.90|0.07|0.02|N|O|1996-02-08|1996-03-17|1996-02-12|COLLECT COD|REG AIR| deposits. furiously unu| +29961|845657|20690|1|38|60899.18|0.02|0.00|N|O|1998-09-30|1998-09-20|1998-10-09|TAKE BACK RETURN|AIR|y ironic ideas use slyly carefull| +29961|955724|43282|2|15|26695.20|0.01|0.00|N|O|1998-08-08|1998-09-01|1998-08-14|NONE|AIR| carefully thin requests | +29961|852525|27560|3|4|5909.92|0.09|0.05|N|O|1998-08-01|1998-09-21|1998-08-07|NONE|AIR| theodolites after the quickly bold g| +29961|373211|10733|4|41|52652.20|0.06|0.01|N|O|1998-07-17|1998-08-27|1998-07-24|COLLECT COD|FOB| blithely ironic ideas. daringly express r| +29961|551021|13533|5|8|8576.00|0.09|0.06|N|O|1998-11-02|1998-08-10|1998-11-06|TAKE BACK RETURN|SHIP|sts sleep according to the foxes. regula| +29961|5794|30795|6|40|67991.60|0.08|0.07|N|O|1998-11-02|1998-08-29|1998-11-17|DELIVER IN PERSON|SHIP|d packages. quickly expr| +29962|909859|9860|1|13|24294.53|0.03|0.03|R|F|1993-07-12|1993-07-11|1993-07-27|NONE|TRUCK|ual deposit| +29962|990481|40482|2|39|61286.16|0.10|0.04|R|F|1993-09-21|1993-08-31|1993-10-13|NONE|SHIP|ss furiously special requests. carefull| +29962|2685|15186|3|27|42867.36|0.03|0.07|R|F|1993-07-22|1993-08-11|1993-08-08|NONE|TRUCK|ven deposits | +29962|117235|17236|4|26|32557.98|0.10|0.01|R|F|1993-08-04|1993-07-25|1993-08-05|COLLECT COD|TRUCK|usual accounts. furious| +29962|358030|20538|5|41|44608.82|0.07|0.07|A|F|1993-09-16|1993-08-18|1993-09-20|NONE|REG AIR| theodolites according to the caref| +29962|404441|41966|6|11|14799.62|0.09|0.01|A|F|1993-08-03|1993-08-07|1993-08-07|DELIVER IN PERSON|TRUCK|lyly. slyly pending asymp| +29962|438309|13326|7|29|36171.12|0.05|0.01|R|F|1993-07-25|1993-08-31|1993-08-03|NONE|MAIL|fully silent packages. regular| +29963|652752|15266|1|31|52846.32|0.06|0.03|N|O|1998-03-16|1998-01-22|1998-04-04|COLLECT COD|RAIL|. blithely silent ideas are| +29964|958039|45597|1|15|16454.85|0.09|0.05|N|O|1998-06-21|1998-07-06|1998-07-21|NONE|TRUCK|ss, regular pinto beans! slyly eve| +29965|807834|45383|1|33|57479.07|0.00|0.06|A|F|1993-05-05|1993-05-01|1993-05-22|TAKE BACK RETURN|SHIP|es. slyly special instructions haggle | +29965|259265|46781|2|43|52642.75|0.04|0.02|R|F|1993-07-02|1993-04-25|1993-07-17|TAKE BACK RETURN|FOB|riously regular ideas d| +29965|455948|5949|3|22|41886.24|0.02|0.07|R|F|1993-07-10|1993-05-22|1993-07-16|NONE|REG AIR|y regular pack| +29965|102580|27585|4|41|64885.78|0.10|0.05|R|F|1993-06-27|1993-05-14|1993-07-08|TAKE BACK RETURN|RAIL| the even, regular account| +29966|263023|38034|1|31|30566.31|0.02|0.08|A|F|1993-09-23|1993-09-25|1993-10-08|COLLECT COD|FOB|o the quickly unusual | +29966|627223|14760|2|27|31055.13|0.06|0.01|R|F|1993-10-04|1993-08-30|1993-10-18|TAKE BACK RETURN|MAIL| after the unusual, silent pinto beans | +29966|724130|11673|3|3|3462.30|0.04|0.04|R|F|1993-07-31|1993-08-15|1993-08-30|TAKE BACK RETURN|REG AIR| deposits haggle about the pendi| +29966|444393|19410|4|1|1337.37|0.06|0.02|R|F|1993-08-30|1993-09-07|1993-09-14|TAKE BACK RETURN|FOB|uffily after the theodolites. slyly even| +29966|905518|5519|5|2|3046.94|0.06|0.07|R|F|1993-09-04|1993-09-24|1993-09-27|DELIVER IN PERSON|FOB|ic decoys thrash package| +29966|34624|47125|6|23|35848.26|0.06|0.01|R|F|1993-09-14|1993-09-26|1993-10-04|DELIVER IN PERSON|SHIP|dencies haggle carefully pending reque| +29966|917634|42671|7|11|18167.49|0.10|0.06|A|F|1993-11-01|1993-09-07|1993-11-02|TAKE BACK RETURN|FOB|lar foxes haggle against the acc| +29967|669192|19193|1|3|3483.48|0.08|0.01|R|F|1992-01-16|1992-02-25|1992-01-31|NONE|REG AIR| detect furiously above the quic| +29967|99616|12118|2|9|14540.49|0.01|0.07|R|F|1992-05-02|1992-02-25|1992-05-25|COLLECT COD|TRUCK|ng the slyly final instructions haggle| +29967|237965|25478|3|32|60894.40|0.06|0.03|R|F|1992-03-29|1992-03-08|1992-04-04|COLLECT COD|RAIL| theodolites boost carefully alon| +29967|476237|38747|4|47|57020.87|0.09|0.00|R|F|1992-02-16|1992-02-23|1992-03-01|DELIVER IN PERSON|FOB|silent asymptotes about the| +29967|102279|39786|5|22|28187.94|0.04|0.07|R|F|1992-04-07|1992-04-02|1992-04-09|DELIVER IN PERSON|RAIL|the even packages. regular excuses | +29967|989920|14959|6|35|70345.80|0.05|0.05|R|F|1992-02-28|1992-02-07|1992-03-18|DELIVER IN PERSON|REG AIR|c pinto beans. blithely regular| +29967|571080|21081|7|5|5755.30|0.08|0.00|R|F|1992-03-15|1992-02-23|1992-04-08|COLLECT COD|REG AIR|ld deposits slee| +29992|139517|39518|1|22|34243.22|0.10|0.00|A|F|1993-03-19|1993-04-01|1993-04-04|NONE|FOB|onic pinto beans nag carefully regu| +29992|850621|13139|2|8|12572.64|0.07|0.07|A|F|1993-01-29|1993-02-11|1993-01-30|TAKE BACK RETURN|MAIL|d platelets boost carefully along th| +29992|378560|28561|3|8|13108.40|0.04|0.00|A|F|1993-01-11|1993-02-24|1993-02-02|DELIVER IN PERSON|TRUCK|pecial, final pinto beans nag bli| +29992|443900|18917|4|15|27658.20|0.10|0.04|R|F|1993-03-17|1993-04-02|1993-03-26|NONE|RAIL|nto beans wake | +29992|623552|11089|5|11|16230.72|0.06|0.04|R|F|1993-01-27|1993-03-22|1993-02-19|NONE|SHIP|ully ironic requests. furiously r| +29992|37220|49721|6|3|3471.66|0.08|0.07|A|F|1993-03-20|1993-03-23|1993-03-25|COLLECT COD|FOB|ccounts. carefully regular ideas| +29993|137139|24646|1|18|21170.34|0.04|0.06|N|O|1997-06-26|1997-07-16|1997-07-03|DELIVER IN PERSON|AIR|tions cajole blithel| +29993|883012|20564|2|29|28854.13|0.00|0.08|N|O|1997-05-25|1997-05-30|1997-06-06|NONE|TRUCK|ronic depos| +29993|780524|30525|3|41|65784.09|0.06|0.02|N|O|1997-05-26|1997-07-05|1997-06-02|DELIVER IN PERSON|REG AIR|the bold pearls. special so| +29993|251779|14285|4|7|12115.32|0.02|0.06|N|O|1997-05-19|1997-06-05|1997-06-15|DELIVER IN PERSON|TRUCK|efully. ironic re| +29993|633647|21184|5|46|72708.06|0.10|0.06|N|O|1997-06-19|1997-05-30|1997-06-23|DELIVER IN PERSON|REG AIR|furiously ironic requests sleep agai| +29994|255590|43106|1|29|44821.82|0.08|0.06|A|F|1993-09-21|1993-07-31|1993-09-29|TAKE BACK RETURN|REG AIR|eodolites use unusual, | +29994|693286|43287|2|38|48611.50|0.08|0.03|A|F|1993-07-18|1993-07-19|1993-08-06|TAKE BACK RETURN|SHIP|fily even pinto beans according | +29994|46754|9255|3|48|81636.00|0.03|0.00|A|F|1993-08-14|1993-08-03|1993-09-01|DELIVER IN PERSON|AIR|pinto beans are blithe| +29994|787103|49619|4|35|41652.45|0.09|0.07|A|F|1993-06-07|1993-08-20|1993-06-15|TAKE BACK RETURN|FOB| requests wake furiou| +29994|826347|13896|5|26|33105.80|0.02|0.02|A|F|1993-07-26|1993-08-09|1993-08-18|NONE|RAIL|requests. ironically dari| +29995|816414|16415|1|1|1330.37|0.09|0.01|R|F|1993-01-02|1993-01-29|1993-02-01|NONE|SHIP|ly regular foxes haggle fluffily carefu| +29995|456980|44508|2|28|54234.88|0.02|0.02|R|F|1993-01-19|1993-01-24|1993-01-21|COLLECT COD|AIR|ructions us| +29995|455832|43360|3|2|3575.62|0.04|0.01|A|F|1992-12-21|1993-01-23|1993-01-03|DELIVER IN PERSON|AIR|ideas cajole along the furi| +29995|166290|41297|4|15|20344.35|0.03|0.02|R|F|1992-12-25|1993-03-03|1993-01-08|TAKE BACK RETURN|MAIL|kly regular gifts are caref| +29995|821382|33899|5|11|14336.74|0.00|0.06|R|F|1993-02-01|1993-02-03|1993-02-10|NONE|MAIL|ccounts solve am| +29995|962243|12244|6|26|33935.20|0.05|0.05|R|F|1992-12-12|1993-03-07|1992-12-13|NONE|SHIP|use carefully carefully sile| +29996|451884|1885|1|46|84449.56|0.00|0.05|N|O|1997-01-05|1997-01-20|1997-01-15|DELIVER IN PERSON|MAIL| idle, ironi| +29996|810770|23287|2|37|62187.01|0.02|0.00|N|O|1997-03-14|1997-01-06|1997-03-20|DELIVER IN PERSON|REG AIR|onic, even accounts haggle slyly sp| +29996|603811|28836|3|3|5144.34|0.08|0.02|N|O|1997-03-13|1997-01-26|1997-04-07|COLLECT COD|REG AIR|equests. fluffily| +29996|240252|2757|4|18|21460.32|0.07|0.07|N|O|1997-01-26|1997-01-15|1997-02-24|DELIVER IN PERSON|AIR|uests after the s| diff --git a/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u2 b/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u2 new file mode 100644 index 0000000..503f551 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u2 @@ -0,0 +1,30000 @@ +29997|942244|42245|1|46|59165.20|0.09|0.00|N|O|1996-04-09|1996-01-26|1996-04-16|COLLECT COD|AIR|gular deposits nag furiously| +29997|287196|12207|2|17|20114.06|0.02|0.00|N|O|1996-01-10|1996-02-14|1996-01-12|NONE|AIR|as cajole regular excuses? express, perman| +29997|890388|27940|3|29|39971.86|0.00|0.02|N|O|1996-01-25|1996-01-30|1996-01-26|DELIVER IN PERSON|SHIP|ously regular pinto beans hang above| +29997|746957|21986|4|3|6011.76|0.03|0.00|N|O|1996-03-06|1996-02-21|1996-04-03|DELIVER IN PERSON|TRUCK|ress pearls. carefully pending re| +29997|96246|46247|5|19|23602.56|0.06|0.05|N|O|1996-03-22|1996-01-22|1996-04-04|DELIVER IN PERSON|MAIL|s dolphins are furi| +29997|605403|17916|6|29|37942.73|0.07|0.08|N|O|1996-03-31|1996-01-18|1996-04-20|DELIVER IN PERSON|REG AIR|ronic orbits detect. fluffily| +29997|993623|43624|7|22|37764.76|0.05|0.05|N|O|1995-12-30|1996-03-12|1996-01-28|COLLECT COD|FOB|ts. regular theodoli| +29998|807026|7027|1|9|8396.82|0.02|0.05|A|F|1993-06-28|1993-05-28|1993-07-28|COLLECT COD|AIR|g carefully. slyly special | +29998|680005|17545|2|13|12804.61|0.08|0.07|A|F|1993-04-09|1993-04-19|1993-04-20|COLLECT COD|RAIL|iously. ironic ideas cajole furiously about| +29998|843563|31112|3|40|60260.80|0.02|0.04|A|F|1993-03-26|1993-05-06|1993-04-12|COLLECT COD|AIR|ng to the quickly blithe theodolites ar| +29998|754226|29257|4|33|42246.27|0.03|0.08|R|F|1993-07-03|1993-05-09|1993-07-16|COLLECT COD|TRUCK|blithely even deposits cajole fl| +29998|268250|43261|5|3|3654.72|0.03|0.04|R|F|1993-05-29|1993-04-18|1993-06-08|TAKE BACK RETURN|AIR|es around the blithely ironic a| +29998|465805|15806|6|32|56664.96|0.02|0.03|A|F|1993-06-14|1993-04-24|1993-07-05|COLLECT COD|SHIP|en pinto beans. express, regula| +29999|795991|45992|1|10|20869.60|0.08|0.02|A|F|1993-02-15|1993-02-10|1993-03-15|COLLECT COD|REG AIR|nic packages. frays are carefully. theodo| +30024|810240|35273|1|30|34506.00|0.06|0.07|A|F|1994-06-26|1994-09-13|1994-07-05|NONE|RAIL| blithely regular requests about| +30024|687807|321|2|44|78969.88|0.02|0.06|A|F|1994-07-17|1994-09-04|1994-08-11|COLLECT COD|MAIL|ests are slyly ironic packa| +30024|972016|22017|3|50|54398.50|0.06|0.01|R|F|1994-09-29|1994-09-07|1994-10-03|NONE|REG AIR|ts nod fluffily pac| +30024|670153|7693|4|5|5615.60|0.10|0.01|A|F|1994-07-18|1994-08-05|1994-08-14|TAKE BACK RETURN|MAIL|ut the slyly even courts c| +30024|248820|48821|5|16|28300.96|0.06|0.07|A|F|1994-09-04|1994-08-25|1994-10-04|COLLECT COD|RAIL|posits det| +30024|913843|1398|6|39|72415.20|0.04|0.06|A|F|1994-08-24|1994-07-26|1994-09-06|DELIVER IN PERSON|FOB|s cajole furiously quickly regular th| +30024|944240|6759|7|41|52652.20|0.10|0.00|A|F|1994-07-27|1994-08-20|1994-08-25|TAKE BACK RETURN|MAIL|usly even requests. carefully bold reques| +30025|837244|12277|1|47|55516.40|0.06|0.01|N|O|1997-10-11|1997-11-21|1997-10-26|TAKE BACK RETURN|FOB|ackages. slyly ironic foxes are quic| +30025|554449|4450|2|41|61640.22|0.09|0.02|N|O|1997-11-16|1997-11-11|1997-11-20|COLLECT COD|RAIL|nusual, even packages haggle| +30025|619721|19722|3|32|52502.08|0.07|0.05|N|O|1997-09-24|1997-10-24|1997-10-24|NONE|AIR|ar, even accoun| +30025|647175|9688|4|24|26931.36|0.10|0.06|N|O|1997-10-21|1997-11-01|1997-11-19|NONE|REG AIR|ffily. enticing deposits across the bli| +30025|67672|5176|5|26|42631.42|0.10|0.05|N|O|1997-12-16|1997-12-10|1998-01-03|COLLECT COD|TRUCK|al deposits above the regular| +30025|357737|32752|6|9|16152.48|0.09|0.05|N|O|1997-12-10|1997-12-03|1997-12-14|DELIVER IN PERSON|AIR|its. caref| +30026|232818|7827|1|21|36766.80|0.10|0.03|N|O|1998-09-19|1998-09-10|1998-10-03|TAKE BACK RETURN|MAIL|daring accounts are quickly Tiresias.| +30026|958918|46476|2|31|61282.97|0.06|0.04|N|O|1998-08-31|1998-10-13|1998-09-10|DELIVER IN PERSON|RAIL|ss requests at the carefully| +30026|521774|9305|3|5|8978.75|0.05|0.01|N|O|1998-09-03|1998-09-13|1998-09-05|DELIVER IN PERSON|MAIL|inal, special warthogs use | +30026|440025|40026|4|47|45355.00|0.03|0.01|N|O|1998-11-12|1998-09-09|1998-11-30|TAKE BACK RETURN|RAIL|gular accounts nag carefully again| +30027|340512|3019|1|8|12420.00|0.07|0.02|R|F|1994-10-07|1994-10-05|1994-10-15|DELIVER IN PERSON|RAIL|eposits nag between the careful| +30028|204064|4065|1|45|43562.25|0.05|0.04|N|O|1995-11-23|1995-12-07|1995-11-28|DELIVER IN PERSON|TRUCK|ns engage. unusu| +30028|688708|13735|2|2|3393.34|0.10|0.06|N|O|1995-12-16|1995-12-06|1995-12-29|TAKE BACK RETURN|FOB|fluffily. slyly regular | +30029|933401|33402|1|42|60243.12|0.00|0.00|R|F|1995-05-26|1995-04-28|1995-06-06|COLLECT COD|MAIL| carefully: carefully unusual fo| +30029|655224|17738|2|37|43630.03|0.07|0.08|A|F|1995-03-30|1995-05-20|1995-04-09|DELIVER IN PERSON|TRUCK|ly slow foxes. permanent, b| +30030|126555|1560|1|32|50609.60|0.06|0.07|R|F|1992-09-06|1992-09-14|1992-09-23|NONE|AIR|uriously regular accounts cajole alongsi| +30030|4040|4041|2|50|47202.00|0.07|0.04|A|F|1992-10-18|1992-09-20|1992-11-12|COLLECT COD|FOB|lly ironic foxes. thin dolphins haggle sly| +30030|885560|10595|3|9|13909.68|0.01|0.04|R|F|1992-11-22|1992-10-05|1992-11-23|COLLECT COD|SHIP|ully blithely express depo| +30031|691129|16156|1|32|35842.88|0.01|0.06|R|F|1994-02-15|1994-03-08|1994-03-15|NONE|REG AIR| the regular packages hag| +30031|789948|39949|2|20|40758.20|0.03|0.08|R|F|1994-01-21|1994-02-18|1994-02-14|NONE|RAIL|jole around the silent deposits. special, | +30031|647475|47476|3|46|65432.24|0.04|0.03|A|F|1994-03-09|1994-02-18|1994-04-07|NONE|MAIL|ar packages amon| +30031|97296|9798|4|22|28452.38|0.04|0.05|A|F|1994-04-06|1994-03-03|1994-04-29|NONE|REG AIR|ar packages | +30031|248825|36338|5|14|24833.34|0.10|0.04|A|F|1994-02-22|1994-02-04|1994-03-06|DELIVER IN PERSON|MAIL|r deposits. furio| +30031|995550|33108|6|22|36201.22|0.09|0.01|R|F|1993-12-29|1994-02-15|1994-01-19|DELIVER IN PERSON|REG AIR|dolites nag b| +30031|198748|48749|7|24|44321.76|0.01|0.08|R|F|1994-01-10|1994-02-27|1994-01-21|COLLECT COD|AIR| are quickly regula| +30056|356808|31823|1|22|41025.38|0.04|0.04|N|O|1996-01-27|1996-01-13|1996-02-15|DELIVER IN PERSON|RAIL|s deposits cajole against the| +30056|861827|49379|2|32|57240.96|0.10|0.07|N|O|1996-03-10|1996-02-01|1996-03-29|DELIVER IN PERSON|SHIP|ly regular reque| +30056|709680|47223|3|32|54068.80|0.09|0.01|N|O|1996-01-29|1996-01-31|1996-02-11|DELIVER IN PERSON|MAIL| asymptotes. ironic| +30056|581081|31082|4|6|6972.36|0.02|0.04|N|O|1996-02-20|1995-12-16|1996-03-13|TAKE BACK RETURN|TRUCK|ing pains hang across| +30056|213465|13466|5|33|45488.85|0.10|0.01|N|O|1995-11-14|1996-01-31|1995-11-29|COLLECT COD|AIR|osits. packages against the furiously si| +30056|705381|5382|6|39|54067.65|0.05|0.07|N|O|1996-01-07|1995-12-17|1996-01-08|TAKE BACK RETURN|SHIP|eodolites-- furiously pending requests inte| +30056|334113|46620|7|39|44736.90|0.03|0.06|N|O|1996-02-05|1996-01-23|1996-02-18|DELIVER IN PERSON|TRUCK|ithely regular| +30057|426651|39160|1|10|15776.30|0.04|0.07|A|F|1994-09-04|1994-08-01|1994-09-28|TAKE BACK RETURN|MAIL|uests: carefully silent e| +30057|720607|8150|2|50|81378.50|0.01|0.00|A|F|1994-06-15|1994-06-12|1994-07-11|DELIVER IN PERSON|MAIL| unusual ideas are busily against the | +30058|140082|40083|1|40|44883.20|0.09|0.03|N|O|1996-12-19|1996-12-30|1996-12-26|COLLECT COD|REG AIR|theodolites af| +30058|344790|19803|2|12|22017.36|0.04|0.07|N|O|1997-01-12|1997-01-19|1997-01-27|TAKE BACK RETURN|FOB|deposits sl| +30059|961069|36108|1|31|35030.62|0.01|0.04|N|O|1997-06-11|1997-06-02|1997-06-26|DELIVER IN PERSON|TRUCK| regular foxes use fluffily after the even | +30059|671045|21046|2|11|11176.11|0.09|0.05|N|O|1997-05-19|1997-05-12|1997-06-05|TAKE BACK RETURN|FOB|ual warthogs. even, even pint| +30059|250444|445|3|16|22310.88|0.07|0.01|N|O|1997-05-23|1997-06-04|1997-06-05|DELIVER IN PERSON|TRUCK| instructions boost fluffily. fin| +30059|203844|28853|4|18|31460.94|0.00|0.03|N|O|1997-04-12|1997-06-28|1997-05-06|DELIVER IN PERSON|TRUCK|r packages boost sl| +30059|3850|3851|5|24|42092.40|0.09|0.08|N|O|1997-05-22|1997-06-28|1997-06-08|NONE|MAIL| depths. quickly ironic request| +30059|703366|40909|6|42|57511.86|0.08|0.08|N|O|1997-05-05|1997-06-04|1997-05-13|TAKE BACK RETURN|TRUCK|nding ideas. ironic a| +30060|682871|45385|1|39|72299.76|0.04|0.03|R|F|1993-04-26|1993-06-14|1993-04-27|TAKE BACK RETURN|SHIP|y bold theodolite| +30061|52028|27031|1|10|9800.20|0.08|0.06|N|O|1996-12-26|1997-01-05|1996-12-31|DELIVER IN PERSON|TRUCK|lithely according to the fluffily regula| +30061|434345|21870|2|37|47334.84|0.03|0.03|N|O|1996-12-04|1997-02-04|1996-12-16|NONE|RAIL| regular packages boost carefully | +30061|21282|33783|3|49|58960.72|0.04|0.06|N|O|1997-02-16|1997-01-17|1997-02-18|NONE|MAIL|dolites. fluffily regular asymptote| +30061|678044|40558|4|44|44968.44|0.03|0.05|N|O|1997-01-02|1997-02-07|1997-01-22|COLLECT COD|MAIL|nic instructions cajole| +30062|545049|32580|1|32|35008.64|0.08|0.02|A|F|1994-05-29|1994-08-01|1994-06-01|DELIVER IN PERSON|AIR|ts-- furiously even requests integrate-- c| +30062|630566|43079|2|31|46392.43|0.09|0.00|A|F|1994-08-06|1994-07-05|1994-08-09|DELIVER IN PERSON|TRUCK|ctions boost slyly about the fluffily expre| +30062|913932|1487|3|12|23350.68|0.04|0.03|A|F|1994-07-28|1994-07-07|1994-08-25|TAKE BACK RETURN|RAIL|ely silent requests among the blithe| +30062|439719|39720|4|34|56395.46|0.05|0.07|A|F|1994-07-26|1994-07-17|1994-08-25|DELIVER IN PERSON|AIR|ies sleep. regular ideas haggle f| +30062|340878|15891|5|16|30701.76|0.00|0.06|R|F|1994-08-12|1994-08-17|1994-08-23|NONE|RAIL| decoys alongside of the sp| +30063|876435|13987|1|36|50810.04|0.10|0.05|A|F|1992-12-07|1992-10-31|1992-12-29|DELIVER IN PERSON|TRUCK|nusual ideas. ironic foxes acro| +30063|226914|14427|2|17|31295.30|0.05|0.03|R|F|1992-11-14|1992-10-27|1992-11-23|COLLECT COD|FOB|y even packages. regular, even instr| +30063|737093|37094|3|10|11300.60|0.06|0.07|A|F|1992-10-08|1992-10-25|1992-11-03|TAKE BACK RETURN|RAIL|Tiresias. carefu| +30063|307465|19972|4|11|16196.95|0.03|0.04|A|F|1992-10-02|1992-10-03|1992-10-27|NONE|TRUCK|he regular, special | +30088|559232|46766|1|48|61978.08|0.01|0.08|A|F|1993-11-01|1993-11-19|1993-11-18|COLLECT COD|REG AIR| cajole carefully slyly regular f| +30088|12186|24687|2|42|46123.56|0.07|0.06|R|F|1993-11-18|1993-12-01|1993-11-23|DELIVER IN PERSON|SHIP|onic accounts. bold, i| +30088|806982|19499|3|50|94447.00|0.02|0.06|R|F|1993-11-21|1993-12-02|1993-12-19|TAKE BACK RETURN|AIR|es final foxes cajole carefully. | +30088|937260|37261|4|13|16863.86|0.05|0.01|A|F|1993-10-03|1993-11-23|1993-10-21|COLLECT COD|MAIL|ar dependencies: fu| +30088|512855|386|5|5|9339.15|0.01|0.00|A|F|1993-10-06|1993-11-04|1993-10-29|COLLECT COD|TRUCK|lyly blithe| +30088|542334|4845|6|16|22020.96|0.05|0.04|R|F|1993-12-17|1993-10-16|1994-01-05|DELIVER IN PERSON|TRUCK|posits haggle idly ironic| +30089|256673|19179|1|40|65186.40|0.03|0.05|N|O|1995-11-05|1995-08-13|1995-11-26|TAKE BACK RETURN|FOB|-- sentiments | +30089|893445|30997|2|2|2876.80|0.01|0.08|N|O|1995-08-08|1995-09-20|1995-08-11|NONE|AIR|lar packages. busy pack| +30089|120779|20780|3|4|7199.08|0.01|0.07|N|O|1995-09-23|1995-10-03|1995-10-05|TAKE BACK RETURN|RAIL|slyly regular dependencies.| +30089|919025|6580|4|42|43847.16|0.09|0.02|N|O|1995-11-06|1995-08-26|1995-11-29|DELIVER IN PERSON|SHIP|onic requests. ironic, pending ideas cajol| +30089|38934|26435|5|12|22475.16|0.09|0.00|N|O|1995-09-06|1995-10-06|1995-10-01|COLLECT COD|REG AIR|ongside of the pending foxes. slyly regular| +30089|354994|4995|6|36|73763.28|0.04|0.03|N|O|1995-10-04|1995-09-20|1995-10-10|DELIVER IN PERSON|REG AIR|ccording to the carefully unusual s| +30090|695064|7578|1|22|23298.66|0.05|0.06|N|O|1997-05-29|1997-05-15|1997-06-05|COLLECT COD|RAIL|. express requests c| +30090|925140|37659|2|19|22136.90|0.01|0.01|N|O|1997-07-05|1997-06-24|1997-08-03|NONE|REG AIR|structions are ironically busy war| +30090|813234|25751|3|38|43593.22|0.08|0.03|N|O|1997-05-22|1997-06-02|1997-05-26|COLLECT COD|SHIP|s. fluffily specia| +30090|18257|18258|4|3|3525.75|0.08|0.08|N|O|1997-04-23|1997-06-08|1997-05-09|DELIVER IN PERSON|MAIL|t the furiously regular dependencies b| +30091|618339|5876|1|30|37719.00|0.00|0.04|A|F|1994-05-26|1994-07-05|1994-05-31|TAKE BACK RETURN|RAIL|even deposits boos| +30091|415373|27882|2|33|42515.55|0.05|0.01|A|F|1994-05-02|1994-07-03|1994-06-01|TAKE BACK RETURN|FOB|s nag furiously alongside of the car| +30091|165810|28314|3|12|22509.72|0.05|0.08|R|F|1994-06-18|1994-06-14|1994-07-03|NONE|TRUCK| furiously| +30091|763728|13729|4|30|53750.70|0.04|0.00|A|F|1994-07-19|1994-05-14|1994-08-18|DELIVER IN PERSON|AIR|ourts. quickly final instructions ar| +30091|969384|44423|5|20|29066.80|0.04|0.05|R|F|1994-04-12|1994-06-21|1994-04-25|TAKE BACK RETURN|AIR| bold deposits. slyly bold depo| +30092|235958|10967|1|1|1893.94|0.07|0.07|N|O|1996-04-01|1996-05-27|1996-04-20|NONE|SHIP|packages among the| +30092|735608|23151|2|9|14792.13|0.07|0.02|N|O|1996-05-04|1996-05-14|1996-05-23|DELIVER IN PERSON|TRUCK|ully express acco| +30092|361539|49061|3|23|36811.96|0.07|0.00|N|O|1996-07-13|1996-06-19|1996-08-01|COLLECT COD|MAIL|pecial acco| +30092|371954|46969|4|23|46596.62|0.01|0.02|N|O|1996-07-30|1996-06-24|1996-08-18|TAKE BACK RETURN|TRUCK|inal, final dolph| +30092|430789|30790|5|44|75669.44|0.09|0.07|N|O|1996-05-31|1996-05-06|1996-06-08|DELIVER IN PERSON|MAIL|pains. slyly unusual depe| +30093|122500|35003|1|44|66990.00|0.08|0.08|A|F|1993-09-15|1993-10-31|1993-10-14|NONE|RAIL| dependencies. requests integrate furio| +30093|856368|43920|2|43|56945.76|0.06|0.00|A|F|1993-10-15|1993-10-02|1993-10-20|DELIVER IN PERSON|TRUCK|ily regular packages. expre| +30093|961419|11420|3|22|32568.14|0.01|0.03|A|F|1993-10-02|1993-10-23|1993-10-07|TAKE BACK RETURN|AIR|xcuses cajo| +30093|562963|497|4|23|46596.62|0.09|0.06|R|F|1993-08-12|1993-09-07|1993-08-23|DELIVER IN PERSON|MAIL| furiously. final excuses | +30093|711954|49497|5|28|55045.76|0.03|0.06|R|F|1993-11-10|1993-09-12|1993-11-24|TAKE BACK RETURN|RAIL|even dependencies. carefully bold dugo| +30094|329939|17458|1|10|19689.20|0.05|0.05|R|F|1993-12-12|1993-12-05|1994-01-01|DELIVER IN PERSON|RAIL|ully ironic instructions. regular, expres| +30095|640428|15453|1|35|47893.65|0.00|0.06|N|O|1997-02-12|1997-03-24|1997-02-17|TAKE BACK RETURN|REG AIR|heodolites nag ruthless ac| +30095|668528|6068|2|32|47887.68|0.07|0.05|N|O|1997-03-24|1997-04-04|1997-04-19|DELIVER IN PERSON|RAIL|kages boost among t| +30095|939425|14462|3|37|54182.06|0.04|0.06|N|O|1997-03-26|1997-03-28|1997-04-16|DELIVER IN PERSON|AIR|egular sentiments x-ray s| +30095|903594|16113|4|14|22365.70|0.09|0.07|N|O|1997-03-12|1997-03-13|1997-03-17|COLLECT COD|TRUCK|ously alongside of the caref| +30095|688130|13157|5|17|19007.70|0.04|0.00|N|O|1997-05-09|1997-04-20|1997-05-10|TAKE BACK RETURN|FOB|arefully ironic platelets. fur| +30095|397709|47710|6|32|57814.08|0.03|0.06|N|O|1997-04-08|1997-03-03|1997-04-30|NONE|RAIL|e the requests wake blithely ironic, | +30120|683275|45789|1|39|49071.36|0.06|0.01|N|O|1995-08-21|1995-11-11|1995-09-06|NONE|TRUCK|al asymptotes kindle quickly ironic fo| +30120|787000|12031|2|2|2173.94|0.02|0.06|N|O|1995-10-25|1995-11-04|1995-11-10|DELIVER IN PERSON|RAIL|gle quickly. quickly | +30120|93714|18717|3|46|78554.66|0.07|0.05|N|O|1995-11-13|1995-11-04|1995-11-16|TAKE BACK RETURN|MAIL| about the ironic deposits; blithely re| +30120|44840|19841|4|23|41051.32|0.01|0.03|N|O|1995-09-23|1995-09-30|1995-10-13|NONE|AIR|ess pinto beans. even packages use th| +30121|395326|20341|1|2|2842.62|0.04|0.05|N|O|1998-05-05|1998-05-06|1998-05-27|DELIVER IN PERSON|REG AIR|quests wake ironic| +30121|240974|15983|2|34|65108.64|0.04|0.07|N|O|1998-03-04|1998-04-11|1998-03-15|COLLECT COD|FOB|es. quickly eve| +30121|34903|47404|3|9|16541.10|0.01|0.03|N|O|1998-05-24|1998-04-17|1998-05-28|DELIVER IN PERSON|REG AIR|onic asymptotes ar| +30122|171627|21628|1|18|30575.16|0.02|0.06|R|F|1993-08-18|1993-07-10|1993-09-15|DELIVER IN PERSON|REG AIR|ve the carefully ironi| +30122|528135|40646|2|14|16283.54|0.07|0.08|R|F|1993-08-05|1993-08-02|1993-08-19|COLLECT COD|AIR|at the permanently b| +30122|348323|48324|3|7|9599.17|0.06|0.01|A|F|1993-07-19|1993-08-02|1993-07-30|NONE|FOB|. slyly express depos| +30122|256410|31421|4|30|40992.00|0.10|0.05|A|F|1993-08-20|1993-07-17|1993-09-19|TAKE BACK RETURN|RAIL|ously ironic, | +30122|467406|17407|5|18|24720.84|0.01|0.05|A|F|1993-05-27|1993-08-01|1993-06-10|TAKE BACK RETURN|MAIL|g to the bl| +30123|88477|38478|1|45|65946.15|0.05|0.07|N|O|1998-06-23|1998-06-27|1998-07-08|TAKE BACK RETURN|SHIP|re carefully ruthless| +30123|31988|31989|2|33|63359.34|0.00|0.07|N|O|1998-07-29|1998-05-19|1998-08-10|COLLECT COD|FOB|atelets boost tow| +30124|288187|13198|1|8|9401.36|0.08|0.02|N|O|1998-05-31|1998-05-07|1998-06-14|TAKE BACK RETURN|RAIL| blithely pending excuses alongsi| +30124|558676|46210|2|31|53774.15|0.09|0.03|N|O|1998-06-19|1998-05-30|1998-07-17|TAKE BACK RETURN|FOB|oss the slyly regular pinto beans h| +30124|666633|4173|3|45|71982.00|0.06|0.08|N|O|1998-05-03|1998-05-08|1998-05-27|DELIVER IN PERSON|SHIP|cording to the instru| +30125|421834|9359|1|25|43895.25|0.09|0.00|N|O|1997-01-28|1996-12-04|1997-02-18|TAKE BACK RETURN|REG AIR|e furiously bold packages. deposits boost| +30125|762960|506|2|8|16183.44|0.06|0.05|N|O|1996-11-07|1996-12-11|1996-11-16|TAKE BACK RETURN|REG AIR|en packages. furious| +30125|67521|42524|3|42|62517.84|0.02|0.07|N|O|1996-11-03|1996-12-24|1996-11-19|NONE|FOB|nstructions. silent platelets cajole| +30125|810309|47858|4|2|2438.52|0.04|0.04|N|O|1996-12-26|1997-01-09|1997-01-02|DELIVER IN PERSON|TRUCK| across the quickly sly theodolites. bli| +30126|515367|15368|1|23|31793.82|0.03|0.07|N|O|1995-06-22|1995-08-08|1995-07-08|DELIVER IN PERSON|FOB|cies cajole dolphins. blithely regu| +30126|757590|7591|2|32|52721.92|0.03|0.08|N|O|1995-08-08|1995-07-31|1995-09-07|TAKE BACK RETURN|REG AIR|s must sleep | +30126|798655|23686|3|47|82420.14|0.05|0.07|N|O|1995-07-31|1995-08-22|1995-08-04|DELIVER IN PERSON|REG AIR|kly final accounts. final warhorses detect | +30126|985671|23229|4|26|45672.38|0.02|0.04|N|O|1995-08-17|1995-08-29|1995-08-26|COLLECT COD|RAIL|nic orbits| +30127|616769|41794|1|47|79229.31|0.01|0.00|N|O|1997-03-17|1997-03-17|1997-04-13|DELIVER IN PERSON|TRUCK|y ironic gr| +30127|23893|11394|2|44|79943.16|0.10|0.03|N|O|1997-02-20|1997-02-04|1997-03-06|NONE|FOB|o beans haggle bl| +30127|565044|15045|3|15|16635.30|0.01|0.01|N|O|1997-01-04|1997-01-27|1997-01-12|COLLECT COD|AIR|deposits! carefully even foxes ab| +30127|677832|15372|4|44|79631.20|0.09|0.07|N|O|1996-12-27|1997-02-24|1997-01-16|TAKE BACK RETURN|SHIP|posits haggle carefully. bli| +30127|310572|10573|5|46|72797.76|0.05|0.01|N|O|1996-12-26|1997-01-31|1997-01-12|TAKE BACK RETURN|MAIL|lyly regular requests to the slyly regul| +30152|3595|28596|1|37|55447.83|0.01|0.05|N|O|1998-01-01|1998-03-19|1998-01-13|TAKE BACK RETURN|TRUCK|ully pending ins| +30152|409968|9969|2|49|92019.06|0.01|0.03|N|O|1998-01-03|1998-03-16|1998-01-26|TAKE BACK RETURN|SHIP| across the furious| +30152|327600|27601|3|24|39062.16|0.06|0.04|N|O|1998-03-18|1998-02-10|1998-03-29|COLLECT COD|REG AIR|old foxes.| +30153|713432|975|1|14|20235.60|0.09|0.06|N|O|1996-10-13|1996-12-02|1996-10-31|TAKE BACK RETURN|TRUCK|ronic pinto beans use at the slyly unu| +30153|647216|9729|2|18|20937.24|0.01|0.07|N|O|1996-11-11|1996-11-09|1996-11-13|COLLECT COD|TRUCK| according to t| +30153|756369|43915|3|15|21379.95|0.04|0.02|N|O|1997-01-11|1996-11-12|1997-02-08|NONE|AIR|dolites. express forg| +30153|288480|25996|4|30|44054.10|0.10|0.07|N|O|1997-01-02|1996-11-19|1997-01-18|DELIVER IN PERSON|REG AIR|ly ironic dolphins. furiously s| +30154|273293|35799|1|15|18994.20|0.01|0.07|N|O|1996-04-08|1996-06-17|1996-05-04|DELIVER IN PERSON|AIR|tions maintain carefully| +30154|225118|127|2|14|14603.40|0.00|0.07|N|O|1996-07-26|1996-05-15|1996-08-09|TAKE BACK RETURN|MAIL|ajole slyly even excuses. furious| +30155|467524|42543|1|50|74575.00|0.08|0.06|N|O|1995-07-30|1995-09-12|1995-08-26|COLLECT COD|MAIL|nstruction| +30155|669305|19306|2|40|50970.80|0.08|0.06|N|O|1995-09-01|1995-10-05|1995-09-12|DELIVER IN PERSON|SHIP| daring theodolites s| +30155|8514|8515|3|49|69702.99|0.03|0.07|N|O|1995-09-14|1995-08-28|1995-10-03|DELIVER IN PERSON|TRUCK|ids sleep slyly bold deposits. unus| +30155|93720|31224|4|4|6854.88|0.00|0.08|N|O|1995-11-06|1995-10-07|1995-11-12|COLLECT COD|MAIL| against the furiously even de| +30155|147952|35459|5|17|33999.15|0.00|0.00|N|O|1995-09-25|1995-09-27|1995-10-10|DELIVER IN PERSON|RAIL|special orbi| +30155|621356|33869|6|3|3831.96|0.04|0.04|N|O|1995-07-14|1995-09-18|1995-07-30|TAKE BACK RETURN|AIR|is wake carefully| +30155|115728|15729|7|31|54055.32|0.10|0.06|N|O|1995-07-26|1995-09-25|1995-08-15|NONE|TRUCK|s above the bold,| +30156|30381|42882|1|40|52455.20|0.06|0.05|N|O|1996-01-04|1995-12-13|1996-01-23|NONE|REG AIR|riously bo| +30157|976527|39047|1|11|17638.28|0.05|0.01|N|O|1998-05-11|1998-05-31|1998-06-06|DELIVER IN PERSON|TRUCK|even requests.| +30157|482329|19857|2|42|55074.60|0.10|0.01|N|O|1998-07-03|1998-06-01|1998-07-25|NONE|MAIL|even deposits haggle around| +30157|496570|9080|3|36|56395.80|0.00|0.05|N|O|1998-05-10|1998-06-16|1998-06-07|DELIVER IN PERSON|AIR|equests. silen| +30157|835879|23428|4|45|81667.35|0.03|0.08|N|O|1998-07-15|1998-06-11|1998-08-03|TAKE BACK RETURN|FOB|after the closely even th| +30157|613451|988|5|42|57305.64|0.10|0.08|N|O|1998-06-05|1998-06-24|1998-07-04|COLLECT COD|AIR|osits. ironic, final theo| +30157|267453|17454|6|42|59658.48|0.00|0.01|N|O|1998-08-20|1998-06-15|1998-09-02|DELIVER IN PERSON|TRUCK|sly excuses. ideas hag| +30158|620372|45397|1|45|58155.30|0.04|0.04|N|O|1996-02-13|1996-01-07|1996-02-15|NONE|RAIL| furiously even tithes. s| +30158|589676|39677|2|26|45906.90|0.03|0.04|N|O|1996-02-15|1996-01-03|1996-03-13|NONE|AIR| instructions haggle above the car| +30158|678467|28468|3|43|62153.49|0.06|0.03|N|O|1996-02-03|1995-12-25|1996-02-11|COLLECT COD|FOB|r theodolites are fluffily slyly pend| +30158|983807|21365|4|36|68067.36|0.07|0.04|N|O|1996-02-12|1996-01-23|1996-03-03|TAKE BACK RETURN|RAIL| theodolites sleep fluffily regular, sp| +30158|830786|43303|5|36|61802.64|0.05|0.01|N|O|1996-02-01|1996-01-02|1996-02-12|NONE|REG AIR|t after the fluffily reg| +30159|328291|28292|1|23|30343.44|0.07|0.00|N|O|1997-07-19|1997-07-06|1997-08-06|DELIVER IN PERSON|MAIL|ptotes hinder furiou| +30184|282873|7884|1|18|33405.48|0.00|0.03|R|F|1994-10-17|1994-12-24|1994-10-26|NONE|FOB|e final dependencies. furiously iro| +30184|240026|27539|2|1|966.01|0.01|0.02|R|F|1994-10-27|1994-11-02|1994-10-28|TAKE BACK RETURN|SHIP|le regular sauternes. carefully s| +30184|107929|20432|3|31|60044.52|0.03|0.04|R|F|1994-12-14|1994-12-18|1994-12-26|NONE|MAIL| packages are qui| +30184|946350|21387|4|9|12566.79|0.07|0.04|R|F|1994-10-29|1994-12-27|1994-11-15|COLLECT COD|RAIL|lar packages. carefully pending dep| +30185|469082|19083|1|7|7357.42|0.04|0.07|N|O|1996-06-25|1996-07-01|1996-07-08|DELIVER IN PERSON|AIR|regular courts: ideas boost pending | +30185|852353|14871|2|10|13053.10|0.06|0.01|N|O|1996-08-09|1996-05-30|1996-08-20|TAKE BACK RETURN|FOB|ing pinto beans; slyly express| +30185|494907|44908|3|23|43743.24|0.09|0.00|N|O|1996-08-18|1996-06-06|1996-09-13|COLLECT COD|SHIP|sual frays. fluffily final theodo| +30185|898676|23711|4|2|3349.26|0.02|0.05|N|O|1996-05-12|1996-07-10|1996-05-25|COLLECT COD|TRUCK|excuses against the asymptotes lose| +30185|36451|11452|5|44|61047.80|0.02|0.03|N|O|1996-07-16|1996-07-04|1996-07-22|NONE|SHIP| according to the even, ironic| +30185|619213|19214|6|1|1132.18|0.08|0.05|N|O|1996-06-11|1996-06-22|1996-07-08|TAKE BACK RETURN|TRUCK|s. pending | +30186|370525|8047|1|41|65415.91|0.02|0.03|N|O|1997-12-26|1998-01-08|1998-01-21|NONE|FOB|ckages haggle; | +30186|404180|4181|2|48|52039.68|0.05|0.01|N|O|1998-02-05|1997-12-31|1998-02-20|NONE|REG AIR|special requests. pa| +30186|40312|15313|3|34|42578.54|0.06|0.01|N|O|1998-01-08|1998-01-03|1998-01-16|COLLECT COD|RAIL|ounts believ| +30186|518856|31367|4|31|58119.73|0.06|0.01|N|O|1998-01-30|1997-11-27|1998-03-01|COLLECT COD|RAIL|y permanent excuses affix fur| +30187|661148|48688|1|21|23291.31|0.00|0.02|R|F|1993-07-13|1993-07-08|1993-08-06|DELIVER IN PERSON|MAIL|bold foxes about the stealthily u| +30188|190547|3051|1|32|52401.28|0.04|0.02|A|F|1992-10-02|1992-08-27|1992-10-29|NONE|FOB|al packages. blithely final dependencies u| +30188|517924|5455|2|28|54373.20|0.00|0.06|R|F|1992-08-12|1992-08-27|1992-08-21|COLLECT COD|REG AIR|gle carefully| +30188|736355|23898|3|25|34783.00|0.00|0.05|R|F|1992-09-09|1992-08-08|1992-10-05|NONE|MAIL|nal request| +30188|902990|2991|4|24|47830.80|0.03|0.03|R|F|1992-06-30|1992-08-25|1992-07-30|DELIVER IN PERSON|REG AIR|eposits en| +30188|547480|35011|5|22|33604.12|0.08|0.01|A|F|1992-10-03|1992-07-22|1992-10-29|TAKE BACK RETURN|AIR|ealthily bold a| +30188|490999|41000|6|18|35819.46|0.02|0.08|A|F|1992-07-22|1992-07-31|1992-07-26|COLLECT COD|FOB|blithely regular accounts hag| +30189|331391|18910|1|50|71119.00|0.08|0.06|R|F|1992-04-27|1992-06-09|1992-05-22|COLLECT COD|TRUCK|ts sleep after the quickly pending re| +30189|679183|16723|2|15|17432.25|0.08|0.05|A|F|1992-06-12|1992-05-18|1992-06-30|TAKE BACK RETURN|MAIL|efully ironic packages. bl| +30190|603016|15529|1|18|16541.64|0.04|0.08|N|O|1997-12-17|1998-01-02|1997-12-30|TAKE BACK RETURN|FOB|the carefully regular requests? unusual epi| +30191|608659|46196|1|48|75245.76|0.07|0.01|N|O|1996-08-26|1996-08-09|1996-08-30|NONE|SHIP|y ironic pinto beans. furiousl| +30191|719204|6747|2|23|28132.91|0.04|0.06|N|O|1996-08-27|1996-08-10|1996-09-11|TAKE BACK RETURN|MAIL|as about the fluffily pe| +30216|109945|22448|1|4|7819.76|0.01|0.07|A|F|1992-06-14|1992-04-10|1992-07-04|DELIVER IN PERSON|SHIP|en packages a| +30216|834083|34084|2|40|40681.60|0.04|0.07|R|F|1992-05-09|1992-05-19|1992-05-27|NONE|FOB|lly ironic pinto beans; carefully iron| +30216|421244|46261|3|11|12817.42|0.05|0.01|A|F|1992-03-09|1992-05-15|1992-04-03|COLLECT COD|SHIP|tructions c| +30217|1573|14074|1|20|29491.40|0.01|0.01|A|F|1995-01-10|1995-02-13|1995-01-27|DELIVER IN PERSON|FOB|special depths cajole| +30217|427427|2444|2|40|54176.00|0.00|0.07|A|F|1995-02-25|1995-02-12|1995-03-11|NONE|MAIL|ously accounts. blithely ironic | +30218|308286|33299|1|24|31062.48|0.03|0.04|N|O|1998-05-20|1998-03-18|1998-06-07|NONE|FOB| about the carefully stealthy instructions.| +30218|351285|26300|2|32|42760.64|0.01|0.04|N|O|1998-04-24|1998-03-09|1998-05-15|TAKE BACK RETURN|TRUCK|ss packages| +30218|42331|17332|3|21|26739.93|0.02|0.05|N|O|1998-05-17|1998-04-03|1998-06-10|COLLECT COD|FOB|odolites play furiously alongs| +30219|198772|11276|1|30|56123.10|0.02|0.00|A|F|1995-05-29|1995-07-13|1995-06-12|COLLECT COD|MAIL|courts wake | +30219|758442|8443|2|20|30008.20|0.10|0.04|A|F|1995-05-26|1995-07-30|1995-05-29|TAKE BACK RETURN|MAIL| slyly regular instructions cajole. sly| +30219|118038|43043|3|4|4224.12|0.04|0.08|R|F|1995-05-29|1995-07-25|1995-06-12|TAKE BACK RETURN|TRUCK|y regular platelets sleep fluffily acr| +30219|863604|26122|4|30|47026.80|0.04|0.04|R|F|1995-05-28|1995-08-12|1995-06-05|DELIVER IN PERSON|TRUCK|o beans are! even requests according to th| +30220|569728|19729|1|33|59324.10|0.06|0.01|N|O|1996-10-10|1996-10-20|1996-11-03|DELIVER IN PERSON|AIR|the slyly even ideas. accounts kindle | +30221|622698|35211|1|24|38895.84|0.04|0.03|N|O|1997-11-01|1997-10-18|1997-11-14|DELIVER IN PERSON|FOB| the sauternes. | +30221|684269|34270|2|36|45116.28|0.10|0.04|N|O|1997-09-10|1997-09-22|1997-10-05|COLLECT COD|MAIL|olites are furiously | +30221|499311|36839|3|29|37998.41|0.04|0.08|N|O|1997-10-23|1997-11-19|1997-11-14|TAKE BACK RETURN|TRUCK|ual request| +30221|913448|1003|4|46|67224.40|0.04|0.08|N|O|1997-10-20|1997-11-12|1997-10-21|COLLECT COD|RAIL|ounts sleep furiously carefully| +30222|476990|14518|1|4|7867.88|0.01|0.03|N|O|1998-08-11|1998-06-30|1998-08-27|COLLECT COD|TRUCK|blithely bold foxes haggle| +30222|763121|25637|2|13|15393.17|0.07|0.08|N|O|1998-07-11|1998-07-13|1998-08-01|TAKE BACK RETURN|REG AIR|wake blithely blithely regular | +30222|774403|36919|3|40|59094.80|0.00|0.00|N|O|1998-09-01|1998-06-09|1998-09-18|DELIVER IN PERSON|FOB|st the regular ideas. eve| +30222|390480|40481|4|40|62818.80|0.06|0.08|N|O|1998-06-15|1998-07-05|1998-07-11|COLLECT COD|TRUCK|rnes. slyly exp| +30222|796331|33877|5|17|24264.10|0.09|0.00|N|O|1998-08-14|1998-07-29|1998-08-19|COLLECT COD|RAIL|e express depo| +30222|934858|9895|6|10|18928.10|0.04|0.04|N|O|1998-09-05|1998-07-26|1998-09-06|NONE|TRUCK|engage fluffily along the carefully | +30222|157630|32637|7|14|23626.82|0.05|0.01|N|O|1998-05-11|1998-07-31|1998-05-14|NONE|REG AIR|e foxes cajole quick| +30223|272264|34770|1|30|37087.50|0.02|0.03|N|O|1998-03-06|1998-03-20|1998-03-17|DELIVER IN PERSON|RAIL|ithely pending re| +30223|937866|12903|2|7|13326.74|0.10|0.04|N|O|1998-03-10|1998-03-14|1998-03-27|TAKE BACK RETURN|SHIP|eep careful| +30223|701684|39227|3|18|30341.70|0.08|0.07|N|O|1998-02-10|1998-02-17|1998-03-07|TAKE BACK RETURN|SHIP|nce the regular accounts haggle c| +30248|108133|45640|1|42|47927.46|0.10|0.08|R|F|1993-07-01|1993-09-05|1993-07-27|NONE|MAIL|eep furiously about the carefully ir| +30248|376045|26046|2|16|17936.48|0.10|0.03|R|F|1993-09-09|1993-07-23|1993-09-11|NONE|MAIL|hely even asymptot| +30248|180371|42875|3|6|8708.22|0.06|0.02|A|F|1993-10-06|1993-09-07|1993-10-13|NONE|REG AIR|p carefully after the b| +30248|494600|19619|4|13|20729.54|0.07|0.04|R|F|1993-09-20|1993-08-17|1993-10-13|TAKE BACK RETURN|RAIL| sly, close deposits. final, even e| +30249|527759|15290|1|26|46454.98|0.08|0.06|N|O|1997-09-11|1997-08-31|1997-10-10|NONE|SHIP|ronic frets| +30249|31496|18997|2|11|15702.39|0.07|0.00|N|O|1997-09-14|1997-10-06|1997-09-16|COLLECT COD|TRUCK|gside of the furiously unus| +30249|345306|7813|3|14|18918.06|0.07|0.08|N|O|1997-09-16|1997-08-10|1997-10-05|COLLECT COD|TRUCK| platelets use by | +30249|544151|19172|4|2|2390.26|0.03|0.08|N|O|1997-09-03|1997-09-16|1997-10-03|COLLECT COD|MAIL|slyly special request| +30249|533860|33861|5|48|90904.32|0.03|0.00|N|O|1997-09-08|1997-08-30|1997-10-03|NONE|MAIL|l instructions. regular pinto beans boost a| +30249|571342|8876|6|11|15546.52|0.04|0.06|N|O|1997-10-14|1997-08-17|1997-10-31|DELIVER IN PERSON|TRUCK|uriously fi| +30249|531049|18580|7|1|1080.02|0.07|0.02|N|O|1997-08-31|1997-09-14|1997-09-17|DELIVER IN PERSON|SHIP| detect according to the theo| +30250|334304|9317|1|10|13382.90|0.05|0.04|N|O|1997-04-07|1997-04-05|1997-04-21|DELIVER IN PERSON|AIR| deposits doze blithely bli| +30250|636950|36951|2|17|32077.64|0.00|0.04|N|O|1997-03-20|1997-05-08|1997-03-21|DELIVER IN PERSON|MAIL|into beans according to th| +30251|682255|32256|1|43|53200.46|0.10|0.01|N|O|1995-07-14|1995-06-03|1995-07-16|TAKE BACK RETURN|TRUCK|ld requests run furiously. ironic, express | +30251|658294|45834|2|13|16279.38|0.08|0.06|N|O|1995-08-06|1995-07-10|1995-08-09|COLLECT COD|TRUCK|carefully final depende| +30251|937500|12537|3|44|67648.24|0.09|0.07|N|O|1995-07-20|1995-06-02|1995-08-17|NONE|REG AIR| nag slyly. bl| +30252|65770|28272|1|13|22565.01|0.01|0.08|N|O|1998-08-04|1998-08-13|1998-08-27|TAKE BACK RETURN|REG AIR|cial ideas cajole furiously even, unus| +30252|389147|1655|2|28|34611.64|0.05|0.04|N|O|1998-08-13|1998-07-24|1998-08-30|NONE|SHIP|heodolites about| +30252|393349|43350|3|7|10096.31|0.08|0.01|N|O|1998-07-16|1998-08-14|1998-08-02|COLLECT COD|AIR|ithely even accounts sublate. blithely ev| +30252|16299|41300|4|1|1215.29|0.01|0.07|N|O|1998-08-29|1998-07-26|1998-09-04|TAKE BACK RETURN|REG AIR|yly pending requests. careful| +30252|922846|10401|5|32|59801.60|0.05|0.07|N|O|1998-08-04|1998-09-07|1998-09-01|TAKE BACK RETURN|MAIL|uffily express warhorses. even, quick depe| +30252|269633|19634|6|12|19231.44|0.07|0.04|N|O|1998-09-08|1998-09-12|1998-09-11|DELIVER IN PERSON|AIR|ect after the blithely pending deposits. sl| +30253|30820|18321|1|25|43770.50|0.03|0.01|A|F|1995-02-05|1995-02-18|1995-02-12|COLLECT COD|REG AIR| packages. slyly ironic| +30253|981754|19312|2|8|14685.68|0.05|0.04|A|F|1995-02-04|1995-03-29|1995-02-07|COLLECT COD|TRUCK|eposits. quickly s| +30254|877125|27126|1|28|30858.24|0.07|0.05|N|F|1995-06-09|1995-05-01|1995-06-26|DELIVER IN PERSON|AIR|r packages breach carefully | +30254|828215|15764|2|32|36581.44|0.00|0.03|A|F|1995-05-15|1995-04-04|1995-06-13|TAKE BACK RETURN|AIR|r the slyly | +30254|804280|29313|3|4|4736.96|0.03|0.01|A|F|1995-02-27|1995-04-16|1995-03-26|TAKE BACK RETURN|AIR|ests. packages cajole always ab| +30254|522741|10272|4|41|72312.52|0.00|0.01|A|F|1995-03-09|1995-04-11|1995-03-18|DELIVER IN PERSON|FOB|fully realms. fluffily regular packages| +30254|691943|4457|5|42|81266.22|0.04|0.03|R|F|1995-04-02|1995-04-15|1995-04-15|TAKE BACK RETURN|MAIL|e upon the blithely express sau| +30254|469729|32239|6|46|78140.20|0.04|0.02|A|F|1995-05-16|1995-05-16|1995-05-20|TAKE BACK RETURN|TRUCK|odolites. packa| +30254|731210|31211|7|46|57094.28|0.03|0.08|A|F|1995-04-04|1995-04-14|1995-05-01|TAKE BACK RETURN|TRUCK|slyly express requests cajol| +30255|440409|15426|1|16|21590.08|0.08|0.05|N|O|1997-11-28|1997-10-03|1997-12-14|TAKE BACK RETURN|RAIL|nic excuses impre| +30255|942265|4784|2|37|48367.14|0.04|0.03|N|O|1997-10-04|1997-09-03|1997-10-06|DELIVER IN PERSON|TRUCK|e the blithely final accounts haggle i| +30255|644728|44729|3|3|5018.07|0.07|0.06|N|O|1997-08-17|1997-09-28|1997-09-14|NONE|MAIL|. fluffily ir| +30255|931164|18719|4|35|41829.20|0.03|0.00|N|O|1997-11-11|1997-09-30|1997-11-29|NONE|AIR| the packages. regular excuses cajol| +30255|64891|39894|5|29|53820.81|0.03|0.08|N|O|1997-11-14|1997-09-21|1997-11-30|NONE|RAIL|s haggle slyly sly| +30255|610223|35248|6|31|35128.89|0.02|0.07|N|O|1997-11-09|1997-10-18|1997-11-23|COLLECT COD|MAIL|around the carefully fi| +30255|11109|23610|7|31|31623.10|0.08|0.07|N|O|1997-08-05|1997-09-26|1997-08-10|COLLECT COD|MAIL|ites. depe| +30280|706132|43675|1|30|34143.00|0.10|0.06|R|F|1995-02-12|1995-02-05|1995-02-28|COLLECT COD|SHIP|refully stealthily special d| +30280|946229|46230|2|3|3825.54|0.06|0.01|A|F|1995-01-23|1995-01-26|1995-01-24|NONE|RAIL|ccounts affix about the blithely ironic she| +30280|256866|19372|3|35|63799.75|0.03|0.03|R|F|1995-01-31|1995-02-01|1995-02-12|DELIVER IN PERSON|RAIL|nts sleep bravely r| +30280|141271|41272|4|42|55115.34|0.03|0.03|R|F|1995-01-20|1995-01-04|1995-02-10|DELIVER IN PERSON|AIR|leep quickly. slyly regular r| +30281|767011|4557|1|26|28027.48|0.02|0.08|R|F|1992-11-06|1992-12-23|1992-11-18|TAKE BACK RETURN|AIR|egular packages against the slyly bold depe| +30282|583318|33319|1|24|33630.96|0.06|0.08|A|F|1994-08-09|1994-06-09|1994-09-06|COLLECT COD|SHIP|pinto beans are carefully a| +30282|822011|47044|2|12|11195.64|0.01|0.05|A|F|1994-06-15|1994-06-19|1994-06-17|TAKE BACK RETURN|TRUCK|uests nag sile| +30282|525626|38137|3|50|82580.00|0.06|0.08|A|F|1994-05-11|1994-06-29|1994-06-02|DELIVER IN PERSON|RAIL|e quickly permanent requests shall hav| +30282|191992|16999|4|17|35427.83|0.09|0.05|R|F|1994-07-17|1994-06-05|1994-07-23|TAKE BACK RETURN|FOB|ronic foxes unwind. regul| +30282|800541|13058|5|17|24505.50|0.09|0.03|A|F|1994-06-18|1994-05-27|1994-06-27|DELIVER IN PERSON|RAIL|ithely even| +30282|690879|28419|6|25|46746.00|0.10|0.08|A|F|1994-06-20|1994-05-23|1994-07-19|TAKE BACK RETURN|RAIL| regular theodolites; care| +30283|176345|38849|1|2|2842.68|0.07|0.02|N|O|1997-05-15|1997-06-04|1997-05-24|TAKE BACK RETURN|MAIL|ans. blithely final dependencie| +30283|817199|17200|2|17|18974.55|0.02|0.06|N|O|1997-06-01|1997-05-13|1997-06-22|COLLECT COD|TRUCK|ly. furiously ex| +30283|653068|40608|3|30|30630.90|0.05|0.05|N|O|1997-05-13|1997-04-16|1997-06-06|NONE|AIR|ithely. slyly bold instructions nag account| +30283|109647|9648|4|10|16566.40|0.05|0.07|N|O|1997-05-31|1997-06-01|1997-06-16|TAKE BACK RETURN|RAIL|as cajole furiousl| +30283|833675|8708|5|42|67562.46|0.01|0.08|N|O|1997-03-28|1997-04-11|1997-04-13|COLLECT COD|MAIL|, even waters are fluffily along the reg| +30284|801016|1017|1|8|7335.76|0.00|0.07|R|F|1994-10-18|1994-11-16|1994-11-02|COLLECT COD|SHIP|ickly blithely regular deposits. | +30284|661551|11552|2|3|4537.56|0.07|0.06|A|F|1995-01-12|1994-11-18|1995-02-10|TAKE BACK RETURN|FOB| sentiments. accounts boo| +30284|683070|20610|3|17|17901.68|0.08|0.03|R|F|1994-09-30|1994-11-28|1994-10-27|NONE|TRUCK|ccounts are. dependencies are! fl| +30284|349470|11977|4|2|3038.92|0.06|0.00|R|F|1994-11-12|1994-11-06|1994-11-22|NONE|SHIP| patterns. carefully| +30284|540255|15276|5|35|45333.05|0.08|0.04|R|F|1994-12-07|1994-12-03|1994-12-22|COLLECT COD|AIR|its cajole about the slyly | +30284|52804|2805|6|2|3513.60|0.04|0.00|R|F|1994-12-02|1994-11-06|1994-12-11|TAKE BACK RETURN|SHIP| deposits use after the| +30285|858523|21041|1|35|51851.80|0.09|0.03|N|O|1997-01-26|1997-03-12|1997-02-16|DELIVER IN PERSON|TRUCK|nal asymptotes. slyly bold d| +30285|185237|22747|2|27|35700.21|0.09|0.03|N|O|1997-03-13|1997-03-11|1997-04-12|TAKE BACK RETURN|TRUCK|bold ideas.| +30285|270814|8330|3|7|12493.60|0.03|0.01|N|O|1997-05-17|1997-04-01|1997-05-29|DELIVER IN PERSON|REG AIR|ccording to th| +30285|564572|2106|4|26|42550.30|0.08|0.02|N|O|1997-03-11|1997-04-07|1997-04-02|NONE|AIR| special deposits de| +30285|750346|25377|5|37|51663.47|0.06|0.02|N|O|1997-03-04|1997-03-20|1997-03-29|COLLECT COD|FOB|lly. quickly bold deposi| +30285|54206|4207|6|26|30165.20|0.02|0.01|N|O|1997-04-13|1997-04-04|1997-04-27|TAKE BACK RETURN|FOB|lar, special deposits after| +30286|91356|41357|1|36|48504.60|0.03|0.02|A|F|1992-04-12|1992-03-14|1992-05-12|NONE|SHIP| ideas promise about t| +30286|413475|25984|2|1|1388.45|0.08|0.06|A|F|1992-05-06|1992-04-15|1992-05-14|TAKE BACK RETURN|MAIL|ts run among the furiously regular| +30286|270953|20954|3|34|65413.96|0.03|0.05|A|F|1992-02-04|1992-03-21|1992-02-14|TAKE BACK RETURN|TRUCK|inos. final dep| +30286|894944|32496|4|31|60105.90|0.06|0.04|A|F|1992-02-01|1992-04-19|1992-02-20|TAKE BACK RETURN|AIR|e carefully among the | +30287|331201|6214|1|38|46823.22|0.04|0.03|R|F|1995-02-11|1995-01-14|1995-02-28|NONE|TRUCK| furiously pen| +30287|481837|44347|2|48|87302.88|0.02|0.06|R|F|1995-02-13|1995-01-21|1995-03-01|TAKE BACK RETURN|REG AIR|arefully pending accounts lose. reques| +30287|228832|3841|3|36|63389.52|0.06|0.00|R|F|1994-12-17|1995-02-01|1994-12-19|TAKE BACK RETURN|SHIP|y silent accounts atop t| +30312|230731|5740|1|1|1661.72|0.04|0.02|N|O|1998-04-20|1998-05-09|1998-05-05|COLLECT COD|SHIP|al, even ideas wake according to the furi| +30312|892330|42331|2|20|26445.80|0.02|0.06|N|O|1998-05-28|1998-05-07|1998-06-09|TAKE BACK RETURN|FOB|, silent ideas. ironic, pen| +30312|385891|48399|3|15|29653.20|0.03|0.04|N|O|1998-04-24|1998-04-16|1998-05-24|TAKE BACK RETURN|MAIL| to the slyly| +30312|657163|44703|4|35|39204.55|0.07|0.08|N|O|1998-05-26|1998-03-23|1998-06-21|COLLECT COD|FOB|the blithely ironic | +30312|928978|4015|5|44|88304.92|0.02|0.03|N|O|1998-06-16|1998-05-19|1998-06-26|DELIVER IN PERSON|FOB|ts cajole fl| +30312|330794|43301|6|44|80290.32|0.04|0.00|N|O|1998-06-12|1998-05-20|1998-06-21|COLLECT COD|SHIP|y final platelets. special ideas whit| +30313|691484|41485|1|50|73772.50|0.08|0.04|N|O|1998-01-25|1997-11-29|1998-02-23|NONE|SHIP|ing, regular foxes hinder furious| +30313|770132|45163|2|6|7212.60|0.07|0.01|N|O|1998-02-17|1997-12-26|1998-03-08|COLLECT COD|RAIL|y even asym| +30313|592159|4671|3|48|60054.24|0.01|0.04|N|O|1997-11-24|1998-01-16|1997-11-29|COLLECT COD|TRUCK|sts. blithe| +30313|413223|38240|4|25|28405.00|0.01|0.04|N|O|1998-01-13|1997-12-31|1998-02-09|COLLECT COD|REG AIR|unusual, silent acco| +30313|25179|180|5|29|32020.93|0.08|0.08|N|O|1997-12-14|1997-11-27|1998-01-11|DELIVER IN PERSON|SHIP|efully ironic| +30314|477370|27371|1|27|36378.45|0.05|0.02|A|F|1992-06-27|1992-07-17|1992-07-19|DELIVER IN PERSON|MAIL|nts after the blithe, ruthless deposi| +30314|144039|19044|2|44|47653.32|0.07|0.06|R|F|1992-07-29|1992-06-20|1992-08-28|NONE|SHIP|uickly dogged acco| +30314|848454|10971|3|25|35060.25|0.10|0.07|R|F|1992-05-22|1992-06-17|1992-05-24|TAKE BACK RETURN|REG AIR|lphins. blithely iro| +30314|965719|3277|4|22|39262.74|0.03|0.00|R|F|1992-06-10|1992-08-02|1992-07-04|TAKE BACK RETURN|MAIL|ickly ironic theodolites. furiousl| +30314|835390|35391|5|50|66267.50|0.04|0.03|A|F|1992-05-08|1992-06-22|1992-05-19|DELIVER IN PERSON|TRUCK| blithely slyly pending theodo| +30314|391193|41194|6|50|64209.00|0.07|0.00|A|F|1992-07-10|1992-07-28|1992-07-16|COLLECT COD|TRUCK|carefully ironic deposits do| +30314|771835|46866|7|1|1906.80|0.10|0.00|R|F|1992-07-29|1992-07-05|1992-08-16|TAKE BACK RETURN|RAIL|ests; regular, final theod| +30315|218310|30815|1|30|36849.00|0.00|0.00|N|O|1996-01-26|1995-12-25|1996-01-29|NONE|AIR|d foxes. quickly| +30315|130176|42679|2|20|24123.40|0.00|0.00|N|O|1995-12-08|1996-01-08|1996-01-04|NONE|MAIL|gular excuses ought to boost | +30315|854327|41879|3|1|1281.28|0.01|0.08|N|O|1996-02-21|1996-01-04|1996-03-06|TAKE BACK RETURN|AIR|e carefully carefully special excuses| +30315|660658|48198|4|30|48558.60|0.01|0.01|N|O|1996-01-17|1996-01-20|1996-02-10|NONE|REG AIR|sly at the d| +30315|662726|266|5|28|47283.32|0.03|0.04|N|O|1996-02-07|1995-12-20|1996-02-15|NONE|FOB|to the blithely u| +30315|421079|21080|6|48|48002.40|0.10|0.00|N|O|1996-01-23|1996-01-31|1996-02-11|NONE|FOB|s besides | +30315|72714|47717|7|19|32047.49|0.09|0.04|N|O|1995-11-29|1996-01-01|1995-11-30|DELIVER IN PERSON|RAIL|ag blithely. blithel| +30316|95567|20570|1|42|65627.52|0.03|0.04|N|O|1996-01-17|1996-02-13|1996-01-18|NONE|TRUCK|fily quickly final theodolites. s| +30316|181713|6720|2|45|80761.95|0.00|0.02|N|O|1996-04-04|1996-03-29|1996-04-26|TAKE BACK RETURN|FOB|tect blithely| +30316|45000|7501|3|15|14175.00|0.09|0.06|N|O|1996-03-13|1996-02-26|1996-04-05|DELIVER IN PERSON|REG AIR|out the asymptotes. furiously speci| +30316|298932|23943|4|43|83029.56|0.03|0.06|N|O|1996-04-01|1996-03-11|1996-04-10|COLLECT COD|FOB|e fluffily ironic depo| +30316|142795|5298|5|1|1837.79|0.03|0.07|N|O|1996-02-04|1996-03-02|1996-02-18|NONE|AIR|deposits. bold, regular dep| +30316|940379|27934|6|41|58192.53|0.07|0.00|N|O|1996-02-19|1996-03-19|1996-02-26|TAKE BACK RETURN|RAIL|leep against th| +30317|17594|5095|1|32|48370.88|0.01|0.00|N|O|1996-08-18|1996-06-22|1996-09-17|COLLECT COD|RAIL|uriously waters. carefully ironic req| +30317|691611|4125|2|42|67308.36|0.07|0.08|N|O|1996-05-22|1996-07-15|1996-06-14|NONE|SHIP|yly unusual theodolites accordi| +30317|891993|29545|3|6|11909.70|0.08|0.07|N|O|1996-07-14|1996-08-13|1996-08-04|TAKE BACK RETURN|FOB| regular foxes. regular, thin foxes| +30318|3456|40957|1|40|54378.00|0.04|0.01|R|F|1992-10-26|1992-10-05|1992-11-21|NONE|SHIP|ests during the ironic depo| +30318|72584|35086|2|17|26461.86|0.01|0.05|A|F|1992-11-29|1992-11-01|1992-12-23|TAKE BACK RETURN|FOB|fully ironic do| +30319|603577|41114|1|19|28130.26|0.03|0.03|N|O|1997-10-05|1997-10-08|1997-10-26|NONE|SHIP|fluffily permanent deposits haggle fu| +30319|305200|17707|2|8|9641.52|0.08|0.08|N|O|1997-10-17|1997-11-16|1997-10-25|TAKE BACK RETURN|SHIP|around the final, ironic accounts wake pack| +30319|488284|25812|3|32|40712.32|0.10|0.04|N|O|1997-10-31|1997-11-11|1997-11-28|DELIVER IN PERSON|RAIL|! evenly final instructio| +30319|581643|31644|4|7|12072.34|0.09|0.08|N|O|1997-12-14|1997-10-20|1997-12-16|NONE|REG AIR| quickly pending deposits along the ironic| +30319|668220|5760|5|41|48715.79|0.05|0.07|N|O|1997-10-13|1997-11-11|1997-11-02|TAKE BACK RETURN|SHIP| quickly final pinto bean| +30344|139623|14628|1|50|83131.00|0.07|0.04|N|O|1996-03-14|1996-04-17|1996-04-07|COLLECT COD|SHIP|es sleep slyly regular instr| +30344|640504|40505|2|6|8666.82|0.07|0.06|N|O|1996-04-03|1996-05-20|1996-04-25|TAKE BACK RETURN|REG AIR|quests. caref| +30344|939170|26725|3|11|13300.43|0.05|0.08|N|O|1996-06-14|1996-04-28|1996-06-22|COLLECT COD|FOB|t foxes. even, special requests cajole| +30344|625481|37994|4|39|54851.55|0.06|0.00|N|O|1996-04-30|1996-04-20|1996-05-11|NONE|REG AIR|unts haggle pinto bea| +30345|193822|18829|1|34|65137.88|0.00|0.07|N|O|1997-11-05|1997-12-11|1997-11-19|TAKE BACK RETURN|RAIL|ic accounts wake. carefully e| +30346|862696|37731|1|6|9951.90|0.08|0.05|A|F|1995-03-09|1995-03-03|1995-04-02|NONE|FOB|ironic decoys. carefully ironic | +30346|315759|28266|2|1|1774.74|0.00|0.06|R|F|1995-05-08|1995-03-23|1995-05-19|TAKE BACK RETURN|FOB|never unusual deposits doze | +30346|951270|13790|3|23|30388.29|0.00|0.07|R|F|1995-05-03|1995-03-23|1995-05-10|COLLECT COD|RAIL|hely specia| +30347|441286|28811|1|5|6136.30|0.00|0.01|N|O|1998-09-19|1998-08-16|1998-10-15|COLLECT COD|FOB|ly permanent ideas? f| +30347|689524|14551|2|26|39350.74|0.01|0.07|N|O|1998-10-10|1998-08-12|1998-10-27|NONE|MAIL|slyly ironic accou| +30348|64643|14644|1|24|38583.36|0.01|0.05|N|O|1996-04-25|1996-02-24|1996-05-14|COLLECT COD|RAIL|uests: final, express requests haggle sl| +30348|447683|35208|2|9|14675.94|0.00|0.00|N|O|1996-03-03|1996-03-05|1996-03-23|DELIVER IN PERSON|RAIL|ounts sleep furiously above the fu| +30348|191570|41571|3|12|19938.84|0.05|0.02|N|O|1996-04-03|1996-04-04|1996-04-10|DELIVER IN PERSON|SHIP|thely silent requests. packag| +30348|703864|41407|4|48|89655.84|0.01|0.02|N|O|1996-04-22|1996-03-15|1996-04-30|NONE|MAIL|aggle throughout the quickly| +30348|828414|28415|5|9|12081.33|0.06|0.08|N|O|1996-04-01|1996-03-23|1996-04-09|COLLECT COD|RAIL| frets about the blithely reg| +30348|141209|3712|6|21|26254.20|0.06|0.06|N|O|1996-02-29|1996-04-16|1996-03-18|COLLECT COD|RAIL|ccounts. slow theo| +30349|133167|8172|1|46|55207.36|0.09|0.01|N|O|1997-12-14|1997-11-12|1998-01-07|COLLECT COD|REG AIR|iously slyly ironic excuses. foxes | +30349|126477|26478|2|32|48111.04|0.05|0.03|N|O|1997-11-17|1998-01-03|1997-11-27|COLLECT COD|SHIP|ly silent packages nag sl| +30349|698226|23253|3|23|28156.37|0.02|0.03|N|O|1998-01-14|1997-12-20|1998-02-06|NONE|AIR|ndencies haggle fluffily c| +30349|68684|43687|4|35|57843.80|0.04|0.02|N|O|1997-11-21|1997-11-15|1997-12-09|COLLECT COD|RAIL|final asymptotes. slyly silen| +30349|355281|42803|5|46|61468.42|0.04|0.02|N|O|1998-01-05|1997-11-25|1998-01-16|DELIVER IN PERSON|MAIL| haggle after the unusual deposits. regular| +30350|74933|24934|1|26|49606.18|0.06|0.02|A|F|1992-11-03|1992-12-10|1992-11-22|DELIVER IN PERSON|FOB|thily regular id| +30350|391002|3510|2|15|16394.85|0.05|0.08|R|F|1993-01-20|1992-12-14|1993-01-27|COLLECT COD|RAIL|eep carefully pending foxes. spe| +30350|569668|32180|3|49|85144.36|0.04|0.06|R|F|1992-10-24|1992-11-13|1992-11-19|NONE|RAIL| stealthily platelets. carefully spec| +30350|400754|25771|4|40|66189.20|0.02|0.06|A|F|1992-11-19|1992-12-08|1992-12-09|DELIVER IN PERSON|AIR| unusual theodolites| +30350|456994|6995|5|23|44872.31|0.06|0.03|A|F|1993-01-24|1992-12-13|1993-02-18|NONE|TRUCK|fully special excuses. bold theodolites b| +30350|694200|6714|6|40|47766.80|0.09|0.04|R|F|1992-12-21|1992-12-13|1992-12-27|TAKE BACK RETURN|REG AIR|warhorses according to the | +30350|412703|12704|7|37|59780.16|0.02|0.04|A|F|1993-02-01|1992-12-31|1993-02-18|COLLECT COD|RAIL|osits wake. | +30351|292680|17691|1|50|83633.50|0.08|0.06|R|F|1992-10-12|1992-11-14|1992-10-24|NONE|MAIL|riously regular ideas: doggedly sly requ| +30376|840467|15500|1|31|43630.02|0.00|0.00|R|F|1995-02-06|1994-12-31|1995-02-07|DELIVER IN PERSON|REG AIR|s use furiously blithely even accounts. sl| +30376|726785|39300|2|15|27176.25|0.00|0.04|R|F|1995-01-21|1995-02-12|1995-02-06|TAKE BACK RETURN|RAIL|eans. fluffily r| +30376|67095|29597|3|20|21241.80|0.09|0.04|R|F|1994-12-04|1995-02-07|1994-12-30|DELIVER IN PERSON|FOB|ans nag furiously; quickl| +30376|653791|3792|4|16|27916.16|0.09|0.03|A|F|1995-03-20|1994-12-31|1995-04-06|TAKE BACK RETURN|TRUCK|lithely bold platelets. special| +30376|249966|12471|5|12|22991.40|0.03|0.00|R|F|1995-03-11|1995-01-15|1995-03-16|DELIVER IN PERSON|SHIP|. slyly express pa| +30377|293037|18048|1|21|21630.42|0.08|0.04|A|F|1994-06-17|1994-07-18|1994-07-02|NONE|MAIL| final requests use ironic accounts. slyly | +30377|69060|31562|2|33|33958.98|0.06|0.04|A|F|1994-06-04|1994-07-16|1994-06-09|DELIVER IN PERSON|TRUCK|he blithely bu| +30377|684098|34099|3|28|30297.68|0.03|0.00|A|F|1994-08-28|1994-07-13|1994-08-29|NONE|TRUCK|ng to the unusual theodolites. fl| +30377|621054|21055|4|23|22425.46|0.00|0.06|R|F|1994-08-02|1994-07-12|1994-08-24|TAKE BACK RETURN|SHIP|accounts cajole across the car| +30377|50330|37834|5|45|57614.85|0.06|0.06|A|F|1994-07-08|1994-07-09|1994-07-27|DELIVER IN PERSON|TRUCK| ironic pac| +30377|880063|5098|6|1|1043.02|0.07|0.01|A|F|1994-06-18|1994-07-15|1994-06-22|NONE|TRUCK|l instructions. even c| +30377|215838|40847|7|1|1753.82|0.03|0.00|A|F|1994-08-13|1994-07-26|1994-08-21|DELIVER IN PERSON|REG AIR|riously regular escapades| +30378|572570|22571|1|14|22995.70|0.02|0.00|N|O|1996-01-30|1996-02-26|1996-02-28|COLLECT COD|REG AIR|s sleep quickly across the furiously reg| +30378|170789|33293|2|49|91129.22|0.03|0.02|N|O|1996-01-04|1996-03-13|1996-01-17|COLLECT COD|SHIP|ickly express excuses kindle| +30378|446884|9393|3|34|62249.24|0.06|0.04|N|O|1996-03-18|1996-02-07|1996-03-19|COLLECT COD|SHIP|riously even idea| +30378|770669|8215|4|1|1739.63|0.01|0.03|N|O|1996-02-14|1996-02-24|1996-02-16|NONE|SHIP| requests wake fo| +30378|627084|2109|5|25|25276.25|0.01|0.03|N|O|1996-03-24|1996-02-18|1996-04-11|DELIVER IN PERSON|SHIP|ending packages haggle quickly blithely eve| +30378|398149|35671|6|3|3741.39|0.09|0.08|N|O|1996-01-05|1996-02-21|1996-01-24|COLLECT COD|RAIL|s sleep blithely carefully even pinto be| +30379|514972|27483|1|5|9934.75|0.09|0.07|N|O|1998-10-14|1998-09-09|1998-11-03|TAKE BACK RETURN|SHIP|carefully. fluff| +30379|132717|20224|2|44|76987.24|0.10|0.03|N|O|1998-09-01|1998-09-09|1998-09-21|TAKE BACK RETURN|MAIL|regular pinto| +30380|242991|18000|1|24|46415.52|0.10|0.00|N|O|1995-10-26|1995-10-21|1995-11-08|DELIVER IN PERSON|MAIL| pending depo| +30380|939494|2013|2|23|35269.35|0.03|0.07|N|O|1995-10-26|1995-10-24|1995-11-12|DELIVER IN PERSON|FOB|ow instructions. pint| +30380|64135|14136|3|29|31874.77|0.02|0.06|N|O|1995-10-25|1995-09-17|1995-11-19|DELIVER IN PERSON|FOB|he pending packages. furiously unusual cour| +30380|900583|25620|4|43|68092.22|0.10|0.01|N|O|1995-09-02|1995-10-05|1995-09-09|DELIVER IN PERSON|MAIL|s carefully final pinto beans. deposi| +30381|368903|31411|1|42|82819.38|0.09|0.04|N|O|1997-09-03|1997-10-16|1997-09-26|NONE|MAIL|lly accounts.| +30381|151674|39184|2|27|46593.09|0.09|0.00|N|O|1997-11-05|1997-09-02|1997-11-23|NONE|SHIP|uests cajole carefully. fluffily bold| +30381|178245|15755|3|7|9262.68|0.01|0.08|N|O|1997-10-26|1997-10-13|1997-11-20|COLLECT COD|MAIL| packages use furiously. pending d| +30382|768287|43318|1|35|47433.75|0.08|0.06|R|F|1994-10-11|1994-09-17|1994-10-23|DELIVER IN PERSON|REG AIR|ily regular not| +30382|594885|32419|2|14|27718.04|0.07|0.08|R|F|1994-07-21|1994-09-08|1994-07-28|DELIVER IN PERSON|MAIL| blithely b| +30382|218747|43756|3|17|28317.41|0.03|0.04|R|F|1994-09-29|1994-08-19|1994-10-08|COLLECT COD|RAIL|sts sleep against the qui| +30382|473987|23988|4|50|98048.00|0.00|0.01|R|F|1994-09-20|1994-09-27|1994-09-30|TAKE BACK RETURN|FOB|ncies cajol| +30383|296167|21178|1|13|15120.95|0.02|0.00|A|F|1994-08-25|1994-09-12|1994-09-14|TAKE BACK RETURN|RAIL|n theodolites cajole| +30383|673531|11071|2|31|46639.50|0.05|0.02|R|F|1994-09-04|1994-08-30|1994-09-25|DELIVER IN PERSON|AIR|ully final deposits | +30383|34835|34836|3|48|84951.84|0.10|0.06|A|F|1994-07-29|1994-08-27|1994-08-22|COLLECT COD|REG AIR|arefully enticingly regul| +30383|457869|32888|4|32|58458.88|0.04|0.01|R|F|1994-10-17|1994-09-06|1994-10-21|NONE|RAIL|packages grow blithel| +30408|137778|25285|1|46|83525.42|0.01|0.02|R|F|1992-10-14|1992-11-21|1992-10-23|DELIVER IN PERSON|SHIP|busily special, even courts. | +30408|633337|45850|2|4|5081.20|0.08|0.05|A|F|1993-02-02|1992-12-08|1993-02-03|DELIVER IN PERSON|MAIL|e carefully requests. never iron| +30408|480930|18458|3|12|22930.92|0.02|0.08|A|F|1992-10-31|1992-11-17|1992-11-30|TAKE BACK RETURN|REG AIR|at the regular pinto beans wake fluffi| +30408|989162|14201|4|16|20017.92|0.04|0.07|R|F|1992-12-29|1992-11-12|1993-01-21|TAKE BACK RETURN|RAIL|accounts across the blithely iro| +30408|830808|43325|5|30|52162.80|0.10|0.02|R|F|1993-02-02|1992-11-07|1993-02-12|NONE|RAIL|t requests. blithely even foxes abo| +30408|378021|3036|6|12|13188.12|0.03|0.04|R|F|1993-02-03|1992-12-17|1993-02-11|COLLECT COD|RAIL|s accounts a| +30408|392806|17821|7|4|7595.16|0.05|0.01|R|F|1992-12-20|1992-11-28|1993-01-09|COLLECT COD|RAIL|ly above the | +30409|881556|31557|1|14|21525.14|0.03|0.03|N|O|1997-11-16|1997-09-22|1997-11-24|TAKE BACK RETURN|REG AIR|l dugouts w| +30409|304970|4971|2|8|15799.68|0.01|0.07|N|O|1997-09-19|1997-09-01|1997-09-22|COLLECT COD|RAIL|arefully unusual ideas sol| +30409|627700|15237|3|35|56968.45|0.05|0.07|N|O|1997-09-09|1997-09-27|1997-09-16|DELIVER IN PERSON|FOB|ts wake carefully across | +30409|753046|40592|4|28|30772.28|0.10|0.07|N|O|1997-10-16|1997-10-03|1997-11-06|TAKE BACK RETURN|RAIL|s run regular, special w| +30409|430493|18018|5|29|41280.63|0.04|0.08|N|O|1997-07-26|1997-08-24|1997-08-15|TAKE BACK RETURN|FOB|usly pending accounts.| +30409|293452|43453|6|25|36136.00|0.06|0.02|N|O|1997-09-12|1997-09-16|1997-10-06|NONE|RAIL| beans boost bl| +30409|31962|31963|7|46|87122.16|0.03|0.05|N|O|1997-08-21|1997-10-02|1997-08-27|COLLECT COD|RAIL|refully across t| +30410|171151|8661|1|47|57441.05|0.07|0.08|A|F|1993-09-10|1993-09-09|1993-10-07|NONE|REG AIR| excuses. carefully regu| +30410|519262|44283|2|43|55093.32|0.02|0.02|A|F|1993-08-19|1993-10-25|1993-08-28|COLLECT COD|REG AIR|bold instructions nag. special somas sleep| +30410|230498|5507|3|36|51425.28|0.04|0.00|A|F|1993-11-15|1993-10-06|1993-12-02|DELIVER IN PERSON|MAIL|ing requests. pending, express t| +30411|438857|1366|1|44|79016.52|0.05|0.00|A|F|1994-04-23|1994-04-08|1994-05-12|NONE|MAIL|nal asymptotes. ironic deposits haggle | +30411|868787|18788|2|8|14045.92|0.08|0.00|R|F|1994-04-25|1994-05-24|1994-04-29|DELIVER IN PERSON|FOB|urts. quickly spec| +30411|687369|12396|3|2|2712.66|0.07|0.00|R|F|1994-04-21|1994-04-27|1994-05-11|NONE|FOB| furiously. slyly even excuses wake c| +30411|600719|25744|4|11|17816.48|0.04|0.07|A|F|1994-05-13|1994-04-17|1994-06-10|NONE|MAIL|ly special theodolites detect quickly ac| +30411|278239|28240|5|36|43819.92|0.01|0.06|A|F|1994-04-29|1994-05-27|1994-05-26|COLLECT COD|AIR|courts since the fluffily s| +30412|990615|40616|1|4|6822.28|0.02|0.00|N|O|1996-07-21|1996-07-13|1996-07-28|COLLECT COD|RAIL|quietly even| +30413|91938|4440|1|32|61757.76|0.05|0.01|N|O|1997-06-23|1997-06-18|1997-06-26|DELIVER IN PERSON|SHIP|ic requests integrate fluffily ironic| +30413|197720|35230|2|6|10906.32|0.07|0.06|N|O|1997-06-27|1997-05-01|1997-07-18|TAKE BACK RETURN|MAIL|iously about the| +30414|816786|41819|1|21|35757.54|0.10|0.02|N|O|1996-03-29|1996-05-01|1996-04-04|NONE|RAIL|against the slyly perm| +30414|711736|11737|2|21|36701.70|0.08|0.06|N|O|1996-04-15|1996-05-13|1996-05-05|NONE|RAIL|nto beans are carefully special accounts. | +30414|140739|3242|3|1|1779.73|0.08|0.07|N|O|1996-06-12|1996-05-18|1996-07-03|TAKE BACK RETURN|REG AIR|he furiously even accoun| +30414|383735|8750|4|5|9093.60|0.04|0.00|N|O|1996-04-16|1996-05-15|1996-04-25|TAKE BACK RETURN|RAIL|ts nag pending, pending | +30414|420314|7839|5|4|4937.16|0.00|0.08|N|O|1996-05-10|1996-06-08|1996-05-28|NONE|RAIL|ts doubt accordin| +30414|210710|48223|6|5|8103.50|0.03|0.05|N|O|1996-04-14|1996-05-21|1996-04-16|NONE|TRUCK|xcuses inside t| +30415|38717|38718|1|40|66228.40|0.00|0.03|N|O|1997-04-17|1997-03-22|1997-05-11|DELIVER IN PERSON|SHIP|etly pending theodoli| +30415|703844|16359|2|4|7391.24|0.02|0.05|N|O|1997-03-27|1997-03-27|1997-04-10|NONE|MAIL|ular courts | +30440|627256|39769|1|31|36679.82|0.01|0.02|R|F|1993-10-05|1993-09-19|1993-10-21|TAKE BACK RETURN|TRUCK|regular req| +30440|291307|16318|2|10|12982.90|0.10|0.07|A|F|1993-08-21|1993-10-10|1993-09-06|TAKE BACK RETURN|RAIL|the furiously unusual dolphins-- | +30441|422953|10478|1|14|26263.02|0.08|0.03|A|F|1995-05-09|1995-05-14|1995-05-15|NONE|REG AIR|hs. foxes wake quickly regular acc| +30441|563997|1531|2|6|12365.82|0.06|0.02|R|F|1995-04-04|1995-05-31|1995-04-25|DELIVER IN PERSON|REG AIR|lyly special r| +30441|86768|49270|3|24|42114.24|0.10|0.00|N|O|1995-07-11|1995-05-02|1995-07-31|TAKE BACK RETURN|AIR|er the silent, pending idea| +30441|296448|8954|4|40|57777.20|0.03|0.04|N|O|1995-07-09|1995-05-04|1995-07-14|COLLECT COD|REG AIR| affix above the furiou| +30441|385475|10490|5|36|56176.56|0.02|0.01|N|O|1995-07-01|1995-05-23|1995-07-07|DELIVER IN PERSON|SHIP| the final, u| +30441|675564|13104|6|39|60041.67|0.01|0.02|N|O|1995-07-14|1995-06-19|1995-08-09|TAKE BACK RETURN|TRUCK|ending foxe| +30441|198150|35660|7|3|3744.45|0.02|0.01|A|F|1995-04-20|1995-06-12|1995-05-13|NONE|REG AIR|ically even ideas sleep theodol| +30442|291471|41472|1|11|16087.06|0.10|0.01|N|O|1997-05-06|1997-06-07|1997-05-16|DELIVER IN PERSON|TRUCK|e. ironic theodolites cajole fluffily. care| +30442|743251|43252|2|11|14236.42|0.01|0.02|N|O|1997-06-09|1997-05-08|1997-06-13|NONE|RAIL| the carefully regular accounts| +30442|816911|29428|3|7|12795.09|0.08|0.03|N|O|1997-05-10|1997-06-02|1997-05-12|DELIVER IN PERSON|FOB| carefully express, ironic courts; furio| +30442|819417|44450|4|42|56127.54|0.07|0.05|N|O|1997-06-02|1997-04-22|1997-07-01|COLLECT COD|MAIL|thely final foxes hinder care| +30442|924774|49811|5|31|55760.63|0.10|0.00|N|O|1997-05-10|1997-06-09|1997-05-28|DELIVER IN PERSON|MAIL|pitaphs eat slyly through the f| +30443|91581|4083|1|25|39314.50|0.06|0.07|N|O|1998-10-22|1998-09-04|1998-10-24|COLLECT COD|TRUCK|ss accounts cajole slyl| +30443|198988|36498|2|44|91827.12|0.04|0.08|N|O|1998-07-10|1998-08-12|1998-08-02|NONE|RAIL|luffily even foxes. acco| +30443|389086|26608|3|45|52878.15|0.07|0.03|N|O|1998-08-21|1998-08-10|1998-08-28|NONE|MAIL|t furiously beneath the unu| +30443|366420|16421|4|5|7432.05|0.09|0.04|N|O|1998-10-25|1998-09-04|1998-11-10|COLLECT COD|FOB| even acco| +30443|416965|29474|5|7|13173.58|0.07|0.08|N|O|1998-07-24|1998-08-27|1998-08-03|NONE|REG AIR|ites cajole r| +30443|926100|13655|6|19|21395.14|0.09|0.04|N|O|1998-10-24|1998-08-24|1998-11-18|TAKE BACK RETURN|TRUCK|ickly slyly final sauternes. final dependen| +30443|951223|38781|7|13|16564.34|0.10|0.08|N|O|1998-08-15|1998-08-29|1998-08-23|TAKE BACK RETURN|SHIP|carefully ironic packages affix against t| +30444|200484|485|1|37|51225.39|0.04|0.00|A|F|1993-08-04|1993-07-21|1993-08-05|COLLECT COD|MAIL| regular accounts. slyly final requests af| +30444|520145|32656|2|8|9320.96|0.01|0.08|R|F|1993-07-29|1993-08-08|1993-08-19|COLLECT COD|AIR|totes from the q| +30444|69482|19483|3|25|36287.00|0.03|0.06|A|F|1993-07-13|1993-07-31|1993-08-05|DELIVER IN PERSON|MAIL|hely after the regu| +30445|311156|23663|1|5|5835.70|0.09|0.05|N|O|1997-07-06|1997-05-04|1997-07-25|COLLECT COD|FOB|nal requests integrate final, unusual de| +30445|590200|40201|2|48|61928.64|0.04|0.03|N|O|1997-07-17|1997-06-10|1997-07-19|COLLECT COD|TRUCK|lyly final d| +30445|483304|33305|3|41|52778.48|0.00|0.02|N|O|1997-04-30|1997-05-13|1997-05-07|TAKE BACK RETURN|MAIL|theodolites haggle quickly s| +30446|230012|5021|1|22|20724.00|0.02|0.07|A|F|1992-06-03|1992-03-31|1992-06-20|TAKE BACK RETURN|FOB| requests. quickly express foxes print sly| +30446|803055|15572|2|39|37362.39|0.09|0.05|A|F|1992-04-14|1992-03-10|1992-05-10|TAKE BACK RETURN|TRUCK|fully regul| +30446|937613|12650|3|1|1650.57|0.00|0.04|A|F|1992-05-30|1992-03-10|1992-06-11|TAKE BACK RETURN|MAIL|sits after the sly| +30446|450048|12558|4|38|37924.76|0.02|0.02|R|F|1992-04-21|1992-04-16|1992-05-10|DELIVER IN PERSON|TRUCK|oxes. bold pi| +30446|949948|49949|5|12|23974.80|0.10|0.07|A|F|1992-05-30|1992-03-30|1992-06-26|TAKE BACK RETURN|RAIL|nts wake fluffily| +30447|578487|40999|1|36|56356.56|0.03|0.08|N|O|1996-05-16|1996-06-24|1996-06-15|DELIVER IN PERSON|FOB| along the deposits haggle blit| +30447|624956|12493|2|42|78998.64|0.02|0.05|N|O|1996-07-15|1996-06-16|1996-08-02|COLLECT COD|MAIL|ructions sleep. blithely ironic deposi| +30447|623510|11047|3|47|67373.56|0.09|0.03|N|O|1996-04-27|1996-05-13|1996-04-29|NONE|FOB| pending packages kindle sl| +30447|317256|42269|4|9|11459.16|0.00|0.05|N|O|1996-08-06|1996-06-08|1996-08-19|DELIVER IN PERSON|FOB|; furiously regular de| +30472|456820|19330|1|6|10660.80|0.04|0.04|N|O|1997-04-28|1997-04-19|1997-05-25|TAKE BACK RETURN|TRUCK|dependencies. fluffily ir| +30472|758310|33341|2|48|65677.44|0.08|0.01|N|O|1997-04-23|1997-04-23|1997-05-07|NONE|REG AIR|al ideas. | +30472|905313|5314|3|14|18455.78|0.06|0.08|N|O|1997-02-18|1997-04-24|1997-02-19|DELIVER IN PERSON|RAIL|ounts cajole. quickly regular deposits| +30472|579376|29377|4|31|45115.85|0.00|0.04|N|O|1997-04-15|1997-03-23|1997-05-07|NONE|AIR|eposits are? even, bold platelets haggle f| +30472|562622|156|5|26|43799.60|0.03|0.06|N|O|1997-04-26|1997-03-14|1997-05-09|COLLECT COD|REG AIR|ial, regula| +30473|895855|33407|1|2|3701.62|0.08|0.07|N|O|1997-06-18|1997-08-11|1997-07-15|COLLECT COD|MAIL|bout the carefully r| +30473|622983|22984|2|39|74332.05|0.01|0.08|N|O|1997-08-13|1997-08-15|1997-08-30|COLLECT COD|REG AIR|ages. furiously fin| +30474|283288|8299|1|1|1271.27|0.00|0.05|N|O|1997-11-25|1997-11-29|1997-12-21|DELIVER IN PERSON|FOB| after the| +30474|215176|2689|2|18|19640.88|0.01|0.06|N|O|1998-02-27|1998-01-27|1998-03-15|COLLECT COD|REG AIR|ar courts haggle furiously| +30474|451620|26639|3|27|42433.20|0.00|0.00|N|O|1998-02-22|1997-12-07|1998-02-26|COLLECT COD|REG AIR| ironic accounts against | +30474|366887|16888|4|11|21492.57|0.01|0.04|N|O|1997-12-28|1998-01-24|1998-01-01|NONE|REG AIR|among the quickly b| +30474|263863|13864|5|8|14614.80|0.02|0.05|N|O|1998-01-04|1998-01-22|1998-01-13|TAKE BACK RETURN|SHIP|quickly pending | +30474|737861|376|6|18|34178.94|0.03|0.08|N|O|1997-12-04|1997-12-17|1997-12-06|TAKE BACK RETURN|FOB|lyly express deposits wak| +30475|371703|46718|1|32|56790.08|0.04|0.03|A|F|1993-08-05|1993-09-01|1993-08-26|DELIVER IN PERSON|SHIP|old dolphi| +30475|206021|43534|2|45|41715.45|0.05|0.07|R|F|1993-06-06|1993-07-12|1993-06-11|TAKE BACK RETURN|REG AIR|kly regular r| +30475|585756|35757|3|45|82877.85|0.09|0.07|A|F|1993-09-19|1993-07-10|1993-09-21|COLLECT COD|TRUCK|efully slyly ironic i| +30476|314595|2114|1|23|37020.34|0.10|0.01|A|F|1992-08-27|1992-07-29|1992-09-22|NONE|AIR|yly even, ironic pinto | +30477|608566|46103|1|49|72251.97|0.05|0.00|N|O|1995-12-24|1995-10-05|1996-01-03|NONE|TRUCK|egular accounts us| +30477|153062|40572|2|17|18956.02|0.01|0.07|N|O|1995-08-30|1995-11-17|1995-09-06|COLLECT COD|TRUCK|ges. ironic, silent deposits | +30477|502320|39851|3|8|10578.40|0.08|0.03|N|O|1995-11-01|1995-10-02|1995-11-19|COLLECT COD|MAIL|foxes. blithely even | +30477|490217|15236|4|18|21729.42|0.00|0.01|N|O|1995-12-10|1995-09-30|1995-12-16|COLLECT COD|FOB|the furiously final package| +30478|964750|39789|1|33|59885.43|0.08|0.03|N|O|1997-10-08|1997-10-18|1997-10-30|COLLECT COD|TRUCK| the blithely express ideas. carefully ir| +30478|536726|36727|2|14|24677.80|0.06|0.07|N|O|1997-10-12|1997-10-01|1997-10-18|DELIVER IN PERSON|TRUCK|ly. blithely silent pinto beans| +30478|738176|13205|3|25|30353.50|0.06|0.05|N|O|1997-10-04|1997-09-25|1997-10-21|COLLECT COD|SHIP|l pinto beans are carefully about| +30479|741963|16992|1|48|96236.64|0.05|0.01|A|F|1993-05-18|1993-06-17|1993-05-25|NONE|AIR|hely alongside of the furiously ev| +30479|166176|16177|2|29|36022.93|0.00|0.04|A|F|1993-06-02|1993-05-25|1993-06-16|COLLECT COD|REG AIR| accounts. carefu| +30504|772451|47482|1|43|65507.06|0.02|0.04|A|F|1994-10-29|1994-09-19|1994-11-06|DELIVER IN PERSON|FOB|nts. carefull| +30504|577042|39554|2|30|33570.60|0.05|0.03|R|F|1994-09-10|1994-09-30|1994-10-06|DELIVER IN PERSON|MAIL|y carefully ironic ideas. slyly final depo| +30505|821308|33825|1|50|61463.00|0.05|0.01|A|F|1992-05-05|1992-04-12|1992-05-30|DELIVER IN PERSON|AIR|ed accounts | +30505|711143|11144|2|2|2308.22|0.01|0.00|A|F|1992-03-24|1992-05-22|1992-04-06|DELIVER IN PERSON|REG AIR| dependencies. furiously sile| +30505|166994|42001|3|22|45341.78|0.04|0.00|A|F|1992-04-05|1992-03-31|1992-04-24|NONE|AIR| accounts. reques| +30505|651894|1895|4|7|12921.02|0.09|0.02|R|F|1992-06-15|1992-03-29|1992-07-05|COLLECT COD|TRUCK|e foxes. slyly express foxes about t| +30505|376631|14153|5|25|42690.50|0.10|0.07|A|F|1992-05-19|1992-05-04|1992-06-04|COLLECT COD|FOB|ogged packages. fl| +30506|487722|25250|1|40|68388.00|0.01|0.06|N|O|1997-02-11|1997-05-07|1997-03-13|COLLECT COD|AIR|ccounts are furiously a| +30506|126966|1971|2|36|71746.56|0.01|0.05|N|O|1997-04-05|1997-04-27|1997-04-12|TAKE BACK RETURN|SHIP|e the blith| +30506|917103|4658|3|27|30241.62|0.06|0.05|N|O|1997-04-21|1997-04-04|1997-04-27|TAKE BACK RETURN|MAIL|es mold slyly regular deposits. fina| +30506|739978|2493|4|37|74663.78|0.10|0.01|N|O|1997-03-29|1997-04-26|1997-04-06|DELIVER IN PERSON|AIR|ely express foxes boost clos| +30506|795594|45595|5|18|30412.08|0.07|0.08|N|O|1997-04-15|1997-04-26|1997-05-09|NONE|MAIL|nding deposits. furiou| +30507|502374|39905|1|3|4129.05|0.00|0.06|N|O|1996-06-09|1996-07-26|1996-07-03|DELIVER IN PERSON|SHIP|was ironic dependencies? i| +30507|388809|13824|2|27|51240.33|0.00|0.08|N|O|1996-07-30|1996-06-23|1996-08-17|TAKE BACK RETURN|REG AIR|s affix furiously abov| +30507|709817|22332|3|1|1826.78|0.01|0.03|N|O|1996-06-20|1996-06-11|1996-07-17|COLLECT COD|AIR|pitaphs. fluffily final pa| +30507|879936|42454|4|8|15327.12|0.03|0.07|N|O|1996-06-14|1996-05-31|1996-07-11|TAKE BACK RETURN|MAIL|osits integrate inside the care| +30507|71052|8556|5|8|8184.40|0.09|0.08|N|O|1996-07-31|1996-07-19|1996-08-30|NONE|SHIP|ingly ironic a| +30508|212831|37840|1|4|6975.28|0.10|0.03|A|F|1993-09-09|1993-09-25|1993-10-09|DELIVER IN PERSON|RAIL|iously blithely special theodolites. furiou| +30508|40325|27826|2|16|20245.12|0.06|0.05|A|F|1993-10-11|1993-09-27|1993-11-04|TAKE BACK RETURN|TRUCK|icing accounts. | +30509|349882|37401|1|23|44433.01|0.03|0.01|N|O|1996-03-12|1996-03-18|1996-03-26|COLLECT COD|REG AIR|sleep alongside of the packages| +30509|457834|32853|2|15|26877.15|0.01|0.04|N|O|1996-03-14|1996-03-13|1996-03-16|COLLECT COD|TRUCK|s could sublate slyly. final requests sle| +30509|804526|42075|3|32|45775.36|0.01|0.02|N|O|1996-02-25|1996-04-19|1996-03-15|TAKE BACK RETURN|SHIP|mes ironic accounts. regular| +30509|653240|40780|4|5|5966.05|0.01|0.02|N|O|1996-03-15|1996-03-21|1996-03-29|COLLECT COD|RAIL|y ironic asymptotes boost. re| +30509|995777|45778|5|3|5618.19|0.07|0.04|N|O|1996-04-02|1996-03-05|1996-04-29|DELIVER IN PERSON|AIR|ffily special accounts nag quickly| +30509|23808|23809|6|31|53685.80|0.10|0.00|N|O|1996-03-31|1996-04-15|1996-04-17|NONE|AIR|le furiously regular dependencies| +30509|135385|10390|7|43|61076.34|0.06|0.08|N|O|1996-02-02|1996-03-05|1996-02-20|TAKE BACK RETURN|TRUCK|regular ideas| +30510|406996|32013|1|16|30447.52|0.01|0.03|A|F|1994-07-19|1994-07-07|1994-07-23|TAKE BACK RETURN|RAIL|orses. blithely daring requests ab| +30511|526569|39080|1|23|36697.42|0.05|0.01|N|O|1996-08-09|1996-08-01|1996-08-31|TAKE BACK RETURN|FOB|nt, ironic dolphins ha| +30511|34050|46551|2|35|34441.75|0.08|0.05|N|O|1996-06-14|1996-06-17|1996-06-24|TAKE BACK RETURN|REG AIR|ly bold foxes: always final pinto beans do| +30511|275923|25924|3|14|26584.74|0.10|0.00|N|O|1996-06-09|1996-07-18|1996-06-24|COLLECT COD|RAIL|the carefully regular | +30511|428013|28014|4|7|6586.93|0.04|0.02|N|O|1996-06-19|1996-06-28|1996-06-29|TAKE BACK RETURN|TRUCK|inal, special packag| +30511|611727|36752|5|19|31135.11|0.07|0.07|N|O|1996-09-02|1996-07-06|1996-09-22|NONE|FOB|y unusual foxes are furiously. even pinto| +30511|290642|40643|6|14|22856.82|0.10|0.07|N|O|1996-05-26|1996-07-13|1996-06-13|TAKE BACK RETURN|AIR| requests. bold, slow instructions s| +30536|894763|19798|1|31|54489.32|0.05|0.01|N|O|1996-09-13|1996-09-14|1996-09-27|DELIVER IN PERSON|RAIL|ly final requests. express | +30536|280885|18401|2|40|74634.80|0.02|0.07|N|O|1996-10-02|1996-09-05|1996-10-23|TAKE BACK RETURN|TRUCK|apades. final, final accou| +30536|825405|12954|3|27|35919.72|0.08|0.00|N|O|1996-07-02|1996-09-01|1996-07-21|DELIVER IN PERSON|REG AIR|lar dependenc| +30536|573754|11288|4|32|58487.36|0.10|0.06|N|O|1996-10-11|1996-09-09|1996-10-16|TAKE BACK RETURN|RAIL|t the blithe| +30536|68081|18082|5|9|9441.72|0.04|0.08|N|O|1996-08-27|1996-08-18|1996-09-04|NONE|RAIL|r requests engage carefully? requests use s| +30537|203479|15984|1|41|56680.86|0.03|0.04|N|O|1998-02-10|1998-04-16|1998-03-12|COLLECT COD|RAIL|s the dogged asymptotes boost | +30538|205452|42965|1|13|17646.72|0.08|0.08|A|F|1993-08-20|1993-08-20|1993-08-31|COLLECT COD|REG AIR|grate finally b| +30539|495248|20267|1|32|39783.04|0.01|0.03|R|F|1992-05-02|1992-05-13|1992-05-19|DELIVER IN PERSON|REG AIR|ly across the quickly | +30539|633088|8113|2|36|36757.80|0.06|0.04|A|F|1992-03-04|1992-05-19|1992-03-30|NONE|FOB|egular accounts. pending pint| +30539|299974|24985|3|32|63166.72|0.02|0.01|R|F|1992-02-29|1992-04-13|1992-03-15|COLLECT COD|AIR|after the b| +30539|661206|48746|4|2|2334.34|0.04|0.06|R|F|1992-03-23|1992-03-29|1992-04-17|DELIVER IN PERSON|AIR|ust are according to the e| +30539|889217|1735|5|21|25329.57|0.09|0.00|R|F|1992-03-01|1992-05-01|1992-03-03|DELIVER IN PERSON|SHIP|he careful| +30540|818791|31308|1|19|32485.25|0.07|0.04|N|O|1996-01-17|1995-12-17|1996-01-18|TAKE BACK RETURN|SHIP| alongside of the silent, ironic theodol| +30541|849743|12260|1|49|82942.30|0.01|0.00|N|O|1996-10-02|1996-08-22|1996-10-15|NONE|RAIL|ly ironic d| +30541|613809|1346|2|21|36178.17|0.05|0.08|N|O|1996-09-18|1996-09-11|1996-10-08|TAKE BACK RETURN|TRUCK| furiously regular pa| +30541|276594|1605|3|8|12564.64|0.03|0.07|N|O|1996-10-25|1996-08-13|1996-11-02|TAKE BACK RETURN|AIR|carefully ironic dependencies subl| +30541|714624|2167|4|34|55712.06|0.10|0.05|N|O|1996-09-23|1996-08-13|1996-09-28|DELIVER IN PERSON|AIR|ing to the permanently iron| +30541|675991|13531|5|48|94414.08|0.04|0.02|N|O|1996-08-03|1996-10-01|1996-09-02|NONE|MAIL|ffix furiously above the| +30541|371518|46533|6|3|4768.50|0.03|0.00|N|O|1996-08-12|1996-09-08|1996-08-16|COLLECT COD|RAIL|nding accounts about | +30542|379784|29785|1|5|9318.85|0.04|0.06|A|F|1994-08-09|1994-06-03|1994-08-17|COLLECT COD|TRUCK|ans wake slowly unusual instructions. blit| +30542|16428|16429|2|9|12099.78|0.08|0.08|A|F|1994-07-11|1994-07-26|1994-08-06|DELIVER IN PERSON|RAIL|ven platel| +30542|89608|14611|3|4|6390.40|0.01|0.00|R|F|1994-07-23|1994-06-07|1994-07-25|COLLECT COD|MAIL| instructions about | +30542|32432|44933|4|9|12279.87|0.09|0.02|A|F|1994-06-01|1994-07-20|1994-06-20|DELIVER IN PERSON|TRUCK|p across the express theodoli| +30543|58463|8464|1|17|24164.82|0.08|0.07|R|F|1994-12-05|1994-09-29|1994-12-19|DELIVER IN PERSON|AIR|beans. unusual deposits along| +30543|587239|49751|2|12|15914.52|0.03|0.02|R|F|1994-09-11|1994-10-01|1994-09-14|NONE|AIR|ously special foxes-- | +30543|714068|26583|3|20|21640.60|0.07|0.02|A|F|1994-08-23|1994-11-03|1994-09-17|TAKE BACK RETURN|RAIL|ole dugouts. fluff| +30543|338459|13472|4|43|64389.92|0.00|0.01|A|F|1994-09-15|1994-09-21|1994-10-12|COLLECT COD|FOB|blithely quiet deposits cajole furiously do| +30543|478013|3032|5|20|19819.80|0.00|0.04|A|F|1994-12-15|1994-10-03|1994-12-19|DELIVER IN PERSON|TRUCK|refully ironic a| +30568|884212|46730|1|50|59808.50|0.04|0.08|N|O|1996-06-15|1996-03-26|1996-06-16|NONE|SHIP|silent requests. slyly | +30568|949829|37384|2|36|67636.08|0.10|0.05|N|O|1996-06-13|1996-05-05|1996-06-17|COLLECT COD|TRUCK|le. bold requests w| +30568|759451|21967|3|18|27187.56|0.07|0.00|N|O|1996-06-07|1996-05-04|1996-06-09|COLLECT COD|TRUCK| deposits wake furio| +30569|185554|35555|1|22|36070.10|0.07|0.08|N|O|1997-06-15|1997-07-13|1997-07-12|DELIVER IN PERSON|REG AIR|lithely slow theodolites haggle q| +30569|593137|5649|2|27|33212.97|0.09|0.02|N|O|1997-07-26|1997-07-11|1997-07-29|TAKE BACK RETURN|RAIL| deposits hagg| +30569|837399|37400|3|45|60135.75|0.09|0.03|N|O|1997-05-21|1997-07-24|1997-05-26|TAKE BACK RETURN|REG AIR|ge blithely careful| +30570|104732|29737|1|4|6946.92|0.02|0.07|R|F|1993-08-04|1993-07-13|1993-09-03|NONE|TRUCK|gular theodolites. blithely expre| +30571|245601|20610|1|14|21652.26|0.01|0.05|R|F|1994-09-03|1994-09-02|1994-09-30|NONE|SHIP|ven courts should are ca| +30571|813744|38777|2|42|69623.40|0.00|0.00|R|F|1994-08-07|1994-08-26|1994-09-06|TAKE BACK RETURN|TRUCK|furiously iro| +30571|590651|28185|3|37|64440.31|0.09|0.08|A|F|1994-08-27|1994-09-08|1994-09-05|TAKE BACK RETURN|SHIP|lly special excuses serve | +30571|67753|5257|4|39|67109.25|0.06|0.00|R|F|1994-07-24|1994-09-29|1994-07-29|COLLECT COD|FOB|sts nag along the furiously | +30571|712873|37902|5|36|67890.24|0.07|0.01|R|F|1994-09-18|1994-09-10|1994-10-09|COLLECT COD|FOB|accounts cajole f| +30571|247653|22662|6|4|6402.56|0.08|0.06|A|F|1994-10-12|1994-09-02|1994-11-09|NONE|FOB|ffily express excuses. regular mul| +30572|229260|41765|1|43|51137.75|0.03|0.04|A|F|1992-09-18|1992-10-03|1992-09-26|DELIVER IN PERSON|RAIL| quickly silent platelets. quickly u| +30572|168931|31435|2|23|45998.39|0.09|0.06|A|F|1992-12-02|1992-10-01|1992-12-16|COLLECT COD|MAIL|ending deposits boost slyly | +30572|223138|10651|3|22|23344.64|0.00|0.02|R|F|1992-10-29|1992-10-19|1992-11-24|NONE|AIR|t ironic frays. waters wake closely. dog| +30572|267218|42229|4|13|15407.60|0.07|0.00|A|F|1992-10-11|1992-10-24|1992-10-31|TAKE BACK RETURN|REG AIR|ly unusual instructions cajol| +30572|124684|37187|5|45|76890.60|0.07|0.03|R|F|1992-12-05|1992-10-11|1992-12-10|NONE|MAIL|uickly unusua| +30573|360443|22951|1|40|60137.20|0.01|0.07|R|F|1992-10-16|1992-09-24|1992-10-19|DELIVER IN PERSON|AIR|ought to boost carefully qu| +30573|954786|4787|2|20|36814.80|0.04|0.05|A|F|1992-08-27|1992-10-23|1992-09-13|COLLECT COD|SHIP|ajole careful| +30574|629651|17188|1|47|74289.14|0.10|0.03|A|F|1993-12-28|1994-02-22|1994-01-07|NONE|FOB|y. dinos sleep furiously blithe| +30574|533934|21465|2|13|25582.83|0.03|0.05|A|F|1994-01-30|1994-02-19|1994-02-17|TAKE BACK RETURN|SHIP|nts above the | +30574|823811|36328|3|12|20817.24|0.09|0.01|R|F|1994-01-18|1994-03-07|1994-02-14|COLLECT COD|AIR|ests integrate caref| +30574|786361|48877|4|33|47761.89|0.08|0.08|R|F|1994-02-14|1994-02-05|1994-03-10|TAKE BACK RETURN|SHIP| along the unusual | +30574|365225|40240|5|12|15482.52|0.01|0.00|R|F|1993-12-14|1994-01-13|1993-12-19|NONE|TRUCK|uriously. packages could have| +30575|452316|14826|1|41|51999.89|0.04|0.01|R|F|1992-05-19|1992-05-30|1992-05-30|TAKE BACK RETURN|RAIL|al requests are regular, unus| +30600|594611|19634|1|9|15350.31|0.07|0.04|N|O|1998-02-01|1998-01-03|1998-02-18|DELIVER IN PERSON|RAIL|n pinto beans sleep regular, silent pa| +30600|621413|8950|2|12|16012.56|0.08|0.03|N|O|1998-01-17|1998-01-25|1998-02-16|TAKE BACK RETURN|SHIP|quickly even epitaphs cajole. regula| +30601|913253|25772|1|4|5064.84|0.01|0.04|N|O|1995-10-18|1995-12-17|1995-10-23|COLLECT COD|TRUCK|egular theodolit| +30601|38311|25812|2|9|11243.79|0.06|0.07|N|O|1995-11-18|1995-12-01|1995-11-30|DELIVER IN PERSON|FOB|e furiously. blithe, express depen| +30601|880338|42856|3|40|52731.60|0.09|0.03|N|O|1995-11-15|1995-11-02|1995-12-02|DELIVER IN PERSON|REG AIR|le against t| +30602|422459|34968|1|14|19340.02|0.06|0.02|A|F|1992-11-22|1992-12-15|1992-12-11|DELIVER IN PERSON|REG AIR|y. blithely pendin| +30603|363798|1320|1|45|83780.10|0.06|0.01|N|O|1996-09-15|1996-10-04|1996-09-26|TAKE BACK RETURN|REG AIR| about the platelets. slyly f| +30603|348096|48097|2|19|21737.52|0.07|0.08|N|O|1996-09-08|1996-10-11|1996-10-03|NONE|REG AIR|uickly ironic dependencies sleep | +30603|449405|49406|3|20|27087.60|0.01|0.04|N|O|1996-11-05|1996-09-11|1996-12-03|DELIVER IN PERSON|AIR|uriously slyly even grouches.| +30603|146506|21511|4|5|7762.50|0.10|0.07|N|O|1996-11-02|1996-10-22|1996-11-23|DELIVER IN PERSON|REG AIR|pths are slyly final packages. even inst| +30604|58104|8105|1|24|25490.40|0.10|0.01|A|F|1995-01-07|1995-01-18|1995-01-26|TAKE BACK RETURN|AIR|pinto beans | +30604|552294|27317|2|12|16155.24|0.05|0.03|R|F|1995-04-04|1995-02-08|1995-04-17|TAKE BACK RETURN|RAIL|ar dependencies | +30604|399480|49481|3|34|53701.98|0.01|0.03|R|F|1995-02-07|1995-03-03|1995-03-03|NONE|TRUCK|nic foxes. furiously ironi| +30604|52093|14595|4|47|49119.23|0.10|0.03|A|F|1995-03-15|1995-03-11|1995-03-28|DELIVER IN PERSON|FOB|silent, final i| +30604|526687|1708|5|37|63405.42|0.01|0.06|A|F|1995-04-06|1995-02-05|1995-04-30|COLLECT COD|FOB|s. pending requests doubt after the regula| +30604|13449|25950|6|45|61309.80|0.10|0.08|R|F|1995-03-03|1995-02-05|1995-03-06|COLLECT COD|RAIL|et deposits. furiously regular requests d| +30605|592471|30005|1|7|10944.15|0.01|0.06|A|F|1993-03-21|1993-02-14|1993-03-26|COLLECT COD|FOB|uriously express plate| +30605|651192|38732|2|34|38867.44|0.05|0.01|A|F|1993-02-08|1993-03-13|1993-02-25|DELIVER IN PERSON|REG AIR| the regular, regular asy| +30605|583725|33726|3|50|90435.00|0.04|0.03|A|F|1993-02-06|1993-02-15|1993-03-03|TAKE BACK RETURN|RAIL|ependencies. quickly unusual ac| +30605|656223|6224|4|41|48346.79|0.01|0.01|A|F|1993-04-23|1993-02-08|1993-05-11|DELIVER IN PERSON|TRUCK|ide of the s| +30605|136829|49332|5|32|59706.24|0.02|0.01|R|F|1993-03-16|1993-02-26|1993-03-29|COLLECT COD|SHIP|deposits sleep flu| +30606|492838|5348|1|23|42108.63|0.05|0.05|N|O|1996-02-19|1996-03-20|1996-02-25|NONE|SHIP|arefully special accou| +30606|112507|37512|2|36|54702.00|0.02|0.00|N|O|1996-05-23|1996-03-31|1996-06-11|NONE|SHIP|sts. furiously ironic| +30606|899517|37069|3|37|56109.39|0.07|0.02|N|O|1996-03-10|1996-04-12|1996-03-26|NONE|REG AIR|uses are furiously according to the fluffi| +30606|175045|25046|4|18|20160.72|0.03|0.00|N|O|1996-05-19|1996-05-03|1996-05-31|TAKE BACK RETURN|FOB|posits above the furiou| +30607|999884|24923|1|8|15870.72|0.02|0.08|N|O|1996-12-20|1996-12-31|1997-01-03|DELIVER IN PERSON|SHIP|regular theodolites. slyly regular reque| +30607|36067|11068|2|40|40122.40|0.04|0.08|N|O|1997-01-22|1997-01-23|1997-02-13|TAKE BACK RETURN|REG AIR| slyly final platelets. ironic ideas wa| +30632|718097|30612|1|32|35681.92|0.10|0.06|N|O|1997-09-25|1997-09-06|1997-10-16|NONE|RAIL|quests sleep quickly after the slyly| +30632|45679|8180|2|29|47115.43|0.08|0.01|N|O|1997-07-13|1997-09-14|1997-07-21|NONE|MAIL|tions sleep blithely furiously| +30632|718513|18514|3|47|71979.56|0.05|0.05|N|O|1997-09-17|1997-08-24|1997-10-15|COLLECT COD|SHIP|beans. deposits wake carefully among the sp| +30632|34079|34080|4|47|47614.29|0.06|0.06|N|O|1997-08-14|1997-08-09|1997-09-03|DELIVER IN PERSON|RAIL|. regular, ironic pint| +30632|755679|30710|5|19|32958.16|0.00|0.03|N|O|1997-10-27|1997-09-18|1997-11-23|COLLECT COD|RAIL|carefully regular pinto beans| +30633|543729|31260|1|40|70908.00|0.08|0.03|N|O|1998-02-07|1998-03-02|1998-03-09|DELIVER IN PERSON|MAIL|ld pinto beans run. never| +30633|444226|6735|2|31|36276.20|0.04|0.08|N|O|1998-05-15|1998-03-02|1998-06-08|DELIVER IN PERSON|REG AIR|. silent foxe| +30634|904542|4543|1|43|66499.50|0.02|0.07|R|F|1994-10-03|1994-10-16|1994-10-22|TAKE BACK RETURN|FOB|ronic accounts nag. re| +30634|629106|16643|2|43|44508.01|0.01|0.02|R|F|1994-10-12|1994-09-17|1994-11-03|COLLECT COD|REG AIR|among the bold accounts affix ca| +30634|379195|4210|3|35|44596.30|0.07|0.03|A|F|1994-09-04|1994-09-26|1994-09-19|TAKE BACK RETURN|REG AIR|ctions. final pinto beans use fluffi| +30634|126886|14393|4|35|66950.80|0.07|0.04|A|F|1994-09-29|1994-09-15|1994-10-28|DELIVER IN PERSON|MAIL|ly regular requests. r| +30634|572830|47853|5|38|72306.78|0.01|0.07|A|F|1994-08-15|1994-10-21|1994-09-10|DELIVER IN PERSON|MAIL|deposits? slyly pending somas | +30635|883439|8474|1|12|17068.68|0.00|0.02|A|F|1994-08-23|1994-08-03|1994-09-18|NONE|REG AIR|ar, bold instructi| +30636|84046|21550|1|39|40171.56|0.06|0.06|A|F|1994-01-12|1994-03-12|1994-02-10|TAKE BACK RETURN|SHIP|gular accounts wake according to the | +30636|559764|9765|2|48|87539.52|0.02|0.07|A|F|1994-04-04|1994-04-05|1994-05-01|DELIVER IN PERSON|REG AIR|even deposits play| +30636|943052|5571|3|9|9855.09|0.05|0.03|R|F|1994-01-30|1994-02-08|1994-02-12|COLLECT COD|TRUCK|ag across t| +30636|865477|27995|4|6|8654.58|0.01|0.07|A|F|1994-04-15|1994-02-26|1994-05-13|NONE|MAIL|ly even somas! slyly | +30636|60549|35552|5|14|21133.56|0.01|0.01|R|F|1994-01-09|1994-02-10|1994-02-08|COLLECT COD|SHIP|hely about the final requests. final de| +30636|644646|19671|6|9|14315.49|0.09|0.02|A|F|1994-01-13|1994-03-21|1994-02-04|DELIVER IN PERSON|RAIL|e slyly pending requests. quickly even f| +30636|556126|18638|7|41|48466.10|0.02|0.06|A|F|1994-01-26|1994-03-18|1994-02-14|NONE|TRUCK|ymptotes haggle to the final | +30637|796279|21310|1|22|30255.28|0.10|0.03|R|F|1993-12-18|1993-12-01|1994-01-16|TAKE BACK RETURN|RAIL|re carefully carefully eve| +30638|706361|18876|1|45|61529.85|0.00|0.08|A|F|1993-07-13|1993-08-26|1993-08-07|NONE|FOB|refully idle deposits: regular | +30638|794689|7205|2|46|82047.90|0.10|0.05|R|F|1993-06-29|1993-07-02|1993-07-28|TAKE BACK RETURN|RAIL|yly ironic reques| +30638|333430|33431|3|50|73171.00|0.04|0.07|A|F|1993-07-01|1993-08-21|1993-07-09|TAKE BACK RETURN|RAIL|t, silent packages wake quickly care| +30638|946354|46355|4|43|60213.33|0.01|0.05|R|F|1993-09-21|1993-06-29|1993-10-14|NONE|REG AIR|lly bold instructions b| +30638|359162|21670|5|24|29307.60|0.04|0.03|R|F|1993-09-02|1993-08-18|1993-09-16|NONE|AIR| unusual pinto beans. slyly| +30639|16143|41144|1|3|3177.42|0.07|0.01|N|O|1998-06-13|1998-06-22|1998-07-07|NONE|TRUCK|eans. even | +30639|300942|25955|2|44|85488.92|0.06|0.00|N|O|1998-06-03|1998-06-10|1998-06-12|DELIVER IN PERSON|AIR|ely fluffy deposits along the special| +30639|926765|39284|3|34|60918.48|0.06|0.02|N|O|1998-07-18|1998-05-26|1998-07-20|NONE|SHIP|fily fluffily special ideas| +30639|137390|12395|4|31|44249.09|0.09|0.04|N|O|1998-07-21|1998-05-23|1998-07-27|NONE|TRUCK|taphs cajole slyly silent accounts. | +30639|108774|21277|5|6|10696.62|0.10|0.02|N|O|1998-05-31|1998-05-22|1998-06-06|COLLECT COD|AIR|r theodolites haggle sile| +30664|727228|2257|1|3|3765.57|0.02|0.06|R|F|1993-04-12|1993-06-01|1993-04-20|DELIVER IN PERSON|RAIL|theodolites. de| +30664|511811|11812|2|13|23696.27|0.08|0.04|A|F|1993-05-11|1993-06-04|1993-05-19|COLLECT COD|RAIL|y final pa| +30664|1695|39196|3|37|59077.53|0.10|0.00|A|F|1993-07-10|1993-06-09|1993-07-11|COLLECT COD|FOB| final theodolites. quickly special| +30664|478624|16152|4|27|43270.20|0.05|0.03|R|F|1993-06-23|1993-05-07|1993-07-02|DELIVER IN PERSON|MAIL|osits: accounts use. un| +30665|554565|42099|1|24|38868.96|0.07|0.03|R|F|1993-09-20|1993-09-30|1993-10-06|DELIVER IN PERSON|SHIP|oach quickly above the quiet ide| +30666|372347|9869|1|23|32644.59|0.03|0.03|R|F|1994-08-16|1994-09-21|1994-09-11|COLLECT COD|FOB|carefully regular | +30666|25296|297|2|32|39081.28|0.09|0.02|R|F|1994-08-27|1994-08-29|1994-09-01|TAKE BACK RETURN|RAIL|sly ironic depos| +30666|134076|46579|3|21|23311.47|0.07|0.00|A|F|1994-10-05|1994-09-14|1994-10-20|DELIVER IN PERSON|REG AIR|lly final deposits. foxes us| +30666|411447|23956|4|30|40752.60|0.04|0.06|A|F|1994-09-13|1994-09-27|1994-10-10|NONE|SHIP|ans. fluffily specia| +30666|182309|32310|5|29|40347.70|0.07|0.08|A|F|1994-09-06|1994-10-24|1994-09-16|TAKE BACK RETURN|FOB|ending pack| +30667|403630|41155|1|30|46008.30|0.10|0.02|N|O|1998-08-26|1998-07-27|1998-09-05|NONE|REG AIR|requests. quick| +30667|801252|26285|2|20|23064.20|0.04|0.07|N|O|1998-08-02|1998-07-08|1998-08-04|TAKE BACK RETURN|TRUCK|nic deposits. regular a| +30667|633801|21338|3|10|17347.70|0.09|0.07|N|O|1998-06-28|1998-06-04|1998-07-10|TAKE BACK RETURN|MAIL|rbits sleep ca| +30667|292829|17840|4|29|52832.49|0.06|0.08|N|O|1998-07-31|1998-07-14|1998-08-11|COLLECT COD|REG AIR|lar accounts. care| +30667|563935|38958|5|10|19989.10|0.07|0.03|N|O|1998-07-21|1998-06-28|1998-08-17|TAKE BACK RETURN|MAIL|xcuses. blithely iro| +30667|38762|1263|6|47|79935.72|0.08|0.07|N|O|1998-06-21|1998-07-13|1998-07-13|COLLECT COD|AIR|round the carefully b| +30667|465851|15852|7|35|63589.05|0.10|0.04|N|O|1998-08-25|1998-05-30|1998-09-17|COLLECT COD|FOB|ilent dependen| +30668|543596|31127|1|2|3279.14|0.08|0.07|A|F|1992-08-27|1992-10-02|1992-09-03|TAKE BACK RETURN|FOB|its according to the silent | +30668|212349|37358|2|22|27749.26|0.05|0.03|A|F|1992-08-04|1992-09-04|1992-08-05|DELIVER IN PERSON|AIR|ular asymptotes mainta| +30668|935689|48208|3|32|55188.48|0.07|0.08|A|F|1992-11-30|1992-09-10|1992-12-08|NONE|MAIL|ithely special pinto b| +30668|123707|11214|4|47|81342.90|0.07|0.03|R|F|1992-09-18|1992-09-13|1992-10-11|TAKE BACK RETURN|REG AIR|equests cajole furiou| +30668|139828|2331|5|1|1867.82|0.07|0.04|R|F|1992-10-07|1992-09-21|1992-11-05|TAKE BACK RETURN|SHIP|he ironic theodolites! blithel| +30668|79270|16774|6|15|18739.05|0.04|0.07|A|F|1992-11-22|1992-10-22|1992-12-01|COLLECT COD|AIR|ke-- final, unusual theodolites exce| +30669|3158|3159|1|29|30773.35|0.06|0.05|N|O|1995-09-11|1995-09-26|1995-10-06|NONE|AIR|the fluffily express platelets.| +30669|62338|37341|2|32|41610.56|0.06|0.04|N|O|1995-09-18|1995-10-11|1995-09-21|TAKE BACK RETURN|TRUCK| deposits boost slyly pending realms! | +30669|705957|5958|3|25|49073.00|0.06|0.06|N|O|1995-07-30|1995-09-19|1995-08-15|COLLECT COD|REG AIR|counts. carefully special| +30669|14979|14980|4|14|26515.58|0.01|0.08|N|O|1995-10-25|1995-09-28|1995-10-31|NONE|TRUCK|ithely pending | +30670|816392|3941|1|12|15700.20|0.04|0.05|N|O|1995-08-10|1995-09-12|1995-08-13|DELIVER IN PERSON|MAIL|fluffily according to| +30670|85079|22583|2|13|13832.91|0.02|0.08|N|O|1995-11-01|1995-09-11|1995-11-28|COLLECT COD|REG AIR|usly enticingly blithe ideas. unusual | +30670|911678|49233|3|6|10137.78|0.00|0.06|N|O|1995-11-03|1995-09-25|1995-11-06|DELIVER IN PERSON|TRUCK|regular excuses are | +30670|556984|6985|4|15|30614.40|0.06|0.01|N|O|1995-10-21|1995-09-05|1995-11-02|NONE|TRUCK|l, unusual sheaves| +30670|225763|13276|5|45|75993.75|0.04|0.07|N|O|1995-10-15|1995-10-14|1995-10-16|NONE|FOB|sits haggle against the pendi| +30670|395888|8396|6|24|47612.88|0.00|0.02|N|O|1995-10-04|1995-09-20|1995-10-09|DELIVER IN PERSON|REG AIR|pinto beans in| +30670|681618|19158|7|33|52786.14|0.08|0.04|N|O|1995-09-27|1995-10-21|1995-10-06|NONE|FOB|theodolites affix fu| +30671|938766|26321|1|19|34289.68|0.02|0.07|R|F|1994-12-18|1994-12-07|1994-12-20|TAKE BACK RETURN|AIR|theodolites. quickly pend| +30671|838289|38290|2|7|8590.68|0.03|0.02|A|F|1994-12-13|1994-12-03|1995-01-03|COLLECT COD|MAIL|special dolph| +30696|110124|35129|1|18|20414.16|0.09|0.01|N|O|1996-10-14|1996-11-21|1996-10-17|DELIVER IN PERSON|MAIL|nal instructions. fluffily bold deposi| +30696|843760|6277|2|16|27259.52|0.10|0.00|N|O|1996-12-08|1996-11-07|1997-01-02|TAKE BACK RETURN|MAIL|luffily final requests. | +30696|66901|16902|3|23|42961.70|0.05|0.05|N|O|1996-11-20|1996-11-18|1996-12-16|NONE|TRUCK|bold ideas| +30696|399375|11883|4|10|14743.60|0.03|0.07|N|O|1996-11-30|1996-12-28|1996-12-09|NONE|RAIL| carefully even theodolites boost furious| +30697|291006|41007|1|1|996.99|0.09|0.03|N|O|1998-08-23|1998-10-09|1998-09-10|COLLECT COD|SHIP|ular pinto beans wake furiou| +30697|927487|27488|2|45|68149.80|0.09|0.03|N|O|1998-10-06|1998-09-23|1998-10-10|NONE|FOB|y even instructio| +30698|220822|20823|1|5|8714.05|0.07|0.04|N|O|1995-11-09|1995-12-26|1995-12-01|NONE|RAIL| idle realms are q| +30698|343811|43812|2|11|20402.80|0.03|0.01|N|O|1996-01-07|1996-01-10|1996-01-13|TAKE BACK RETURN|MAIL|sly regular foxes. slyly i| +30698|429880|29881|3|2|3619.72|0.02|0.05|N|O|1996-01-30|1995-12-10|1996-02-10|COLLECT COD|SHIP|ular, ironic dinos. even, even excu| +30698|979353|29354|4|10|14323.10|0.06|0.02|N|O|1995-11-29|1996-01-16|1995-12-06|NONE|MAIL|ts haggle along the pending accounts.| +30698|984790|47310|5|12|22497.00|0.08|0.01|N|O|1996-02-23|1996-01-16|1996-03-02|NONE|SHIP|ideas cajole furiously regular excu| +30698|363216|738|6|1|1279.20|0.05|0.05|N|O|1995-11-07|1996-01-13|1995-11-10|NONE|SHIP|ost according to the pending, silent | +30699|935166|22721|1|30|36033.60|0.06|0.04|N|O|1995-12-27|1996-03-02|1996-01-02|TAKE BACK RETURN|MAIL|nding platelets| +30700|30194|42695|1|21|23607.99|0.04|0.05|A|F|1994-08-16|1994-07-13|1994-08-30|NONE|REG AIR|re carefully| +30700|454865|17375|2|46|83712.64|0.09|0.00|A|F|1994-08-04|1994-07-12|1994-08-17|TAKE BACK RETURN|TRUCK|refully final | +30701|327907|27908|1|38|73525.82|0.10|0.05|A|F|1992-01-28|1992-02-22|1992-02-05|NONE|AIR|ep carefully. regular, busy ideas slee| +30701|125333|25334|2|31|42108.23|0.05|0.08|A|F|1992-02-05|1992-02-23|1992-02-22|TAKE BACK RETURN|SHIP|bold requests. quickly express courts h| +30701|456424|18934|3|6|8282.40|0.04|0.01|R|F|1992-04-25|1992-04-03|1992-05-21|TAKE BACK RETURN|TRUCK|ffily ironic foxes. ironic tithes against t| +30702|84855|47357|1|46|84633.10|0.03|0.03|N|O|1998-11-09|1998-09-29|1998-11-17|DELIVER IN PERSON|MAIL|ing theodolites about the slyly expre| +30702|156202|6203|2|28|35229.60|0.06|0.07|N|O|1998-09-24|1998-10-10|1998-10-06|COLLECT COD|RAIL|n instructions sleep. ironic, carefu| +30702|280882|5893|3|12|22354.44|0.08|0.08|N|O|1998-10-03|1998-10-25|1998-10-14|DELIVER IN PERSON|AIR|quests inte| +30703|526243|13774|1|24|30461.28|0.02|0.02|N|O|1996-08-14|1996-10-16|1996-09-11|DELIVER IN PERSON|SHIP| final accounts affix slyly ideas. f| +30703|562377|49911|2|48|69088.80|0.02|0.05|N|O|1996-08-23|1996-09-15|1996-09-20|DELIVER IN PERSON|TRUCK|ymptotes impre| +30703|867485|30003|3|38|55192.72|0.02|0.08|N|O|1996-09-03|1996-10-01|1996-09-23|NONE|RAIL|ular forges sleep furiously blithely bo| +30703|812291|24808|4|40|48130.00|0.00|0.01|N|O|1996-08-10|1996-10-03|1996-08-23|COLLECT COD|TRUCK|fully ironic accounts are furi| +30728|451096|1097|1|47|49212.29|0.01|0.08|N|O|1995-06-20|1995-03-30|1995-07-07|TAKE BACK RETURN|RAIL|s wake furiously regular excuses. caref| +30728|554787|29810|2|37|68145.12|0.00|0.04|R|F|1995-05-08|1995-04-22|1995-05-29|COLLECT COD|TRUCK|iously ironic theod| +30728|291303|3809|3|46|59537.34|0.07|0.03|N|O|1995-06-19|1995-04-10|1995-07-17|NONE|REG AIR|y unusual ideas| +30728|925336|12891|4|20|27225.80|0.03|0.07|A|F|1995-03-03|1995-05-03|1995-03-18|TAKE BACK RETURN|MAIL|tructions wake bl| +30728|110139|47646|5|49|56307.37|0.08|0.01|A|F|1995-05-30|1995-05-04|1995-06-17|COLLECT COD|RAIL|dinos are quickly quickly| +30728|100739|25744|6|31|53931.63|0.03|0.03|A|F|1995-02-25|1995-03-22|1995-03-15|TAKE BACK RETURN|AIR|r excuses integrate quickly. furiously | +30728|110175|47682|7|9|10666.53|0.10|0.02|R|F|1995-04-08|1995-05-01|1995-04-17|COLLECT COD|TRUCK|y even forges. fluffily unusual du| +30729|700129|12644|1|7|7903.63|0.06|0.05|R|F|1994-01-31|1994-01-08|1994-02-25|TAKE BACK RETURN|RAIL|lar requests h| +30729|63218|38221|2|37|43704.77|0.03|0.04|R|F|1994-02-01|1993-11-13|1994-02-05|COLLECT COD|FOB|carefully pen| +30729|489335|26863|3|27|35756.37|0.02|0.05|R|F|1993-11-25|1993-11-24|1993-12-25|COLLECT COD|REG AIR|run fluffily. ideas sleep blithel| +30729|242221|42222|4|37|43038.77|0.02|0.08|A|F|1993-10-11|1993-11-11|1993-11-10|TAKE BACK RETURN|REG AIR|e fluffily unus| +30729|979|980|5|9|16919.73|0.08|0.05|A|F|1994-02-05|1993-11-13|1994-02-07|NONE|FOB|ow accounts integrate amo| +30729|450465|12975|6|15|21231.60|0.03|0.02|R|F|1993-11-13|1993-12-11|1993-11-24|DELIVER IN PERSON|FOB| even orbits cajole. unusual warhorses | +30729|959957|34996|7|28|56473.48|0.02|0.01|A|F|1993-11-24|1993-12-23|1993-12-19|DELIVER IN PERSON|TRUCK|ely ironic excuses. | +30730|983671|33672|1|48|84222.24|0.06|0.04|N|O|1996-01-02|1996-01-02|1996-01-03|NONE|AIR|. carefully fina| +30731|169380|44387|1|21|30436.98|0.06|0.06|N|O|1996-10-30|1996-12-23|1996-11-17|TAKE BACK RETURN|RAIL|eodolites se| +30731|754735|29766|2|24|42952.80|0.04|0.07|N|O|1996-11-27|1996-12-11|1996-11-29|TAKE BACK RETURN|REG AIR|foxes against the| +30731|816109|41142|3|35|35877.10|0.04|0.08|N|O|1997-01-15|1996-12-02|1997-02-01|NONE|RAIL| requests lose| +30731|328024|3037|4|31|32612.31|0.00|0.06|N|O|1996-12-15|1996-12-22|1997-01-03|NONE|RAIL|after the carefully regular deposit| +30732|682575|20115|1|12|18690.48|0.03|0.03|A|F|1993-06-13|1993-06-30|1993-06-20|COLLECT COD|RAIL|le thinly. bold,| +30732|33147|33148|2|11|11881.54|0.01|0.06|R|F|1993-07-17|1993-06-11|1993-08-04|NONE|FOB|bold, unusual| +30732|91960|16963|3|24|46847.04|0.05|0.07|A|F|1993-06-13|1993-05-07|1993-06-25|COLLECT COD|TRUCK| beans cajole furiously above the b| +30732|570623|45646|4|17|28791.20|0.00|0.06|A|F|1993-07-28|1993-06-04|1993-08-06|DELIVER IN PERSON|SHIP|furiously qui| +30733|520491|45512|1|6|9068.82|0.10|0.01|R|F|1995-03-17|1995-01-13|1995-03-20|NONE|FOB|kly silent theodolites han| +30733|879833|42351|2|41|74324.39|0.09|0.02|A|F|1995-02-08|1995-01-28|1995-02-21|TAKE BACK RETURN|REG AIR|totes sleep carefull| +30733|351615|39137|3|47|78330.20|0.08|0.00|R|F|1994-12-11|1995-01-12|1994-12-14|DELIVER IN PERSON|TRUCK|refully after the regular pinto beans. reg| +30733|578901|3924|4|21|41577.48|0.02|0.07|R|F|1995-01-12|1995-01-04|1995-01-24|DELIVER IN PERSON|MAIL|lar, regula| +30733|576587|1610|5|42|69869.52|0.05|0.08|R|F|1995-03-07|1995-01-16|1995-03-20|DELIVER IN PERSON|SHIP| final accounts haggle qu| +30733|696148|21175|6|37|42332.07|0.08|0.01|R|F|1995-01-31|1995-02-13|1995-02-20|TAKE BACK RETURN|RAIL| packages print b| +30734|842590|42591|1|47|72029.85|0.05|0.05|A|F|1993-01-29|1993-03-07|1993-02-06|DELIVER IN PERSON|AIR|lly above the slyly spec| +30734|401160|1161|2|43|45629.02|0.08|0.06|A|F|1992-12-24|1993-01-18|1993-01-23|TAKE BACK RETURN|REG AIR|usual, ruthle| +30734|296067|21078|3|30|31891.50|0.10|0.00|R|F|1993-02-02|1993-02-06|1993-02-23|DELIVER IN PERSON|AIR|e quickly-- blithely eve| +30734|990369|27927|4|8|11674.56|0.00|0.01|R|F|1993-02-25|1993-03-07|1993-03-09|NONE|MAIL|tructions cajole carefully around | +30734|123503|36006|5|33|50374.50|0.10|0.07|R|F|1993-03-28|1993-02-07|1993-04-13|COLLECT COD|MAIL|y even deposits; unusual frets wake f| +30734|710462|48005|6|30|44172.90|0.05|0.02|A|F|1993-03-04|1993-03-02|1993-03-08|DELIVER IN PERSON|FOB|eposits nag blit| +30734|719723|44752|7|22|38339.18|0.10|0.05|A|F|1993-01-17|1993-02-21|1993-01-24|COLLECT COD|RAIL|t platelets wake evenly theodolites| +30735|379915|42423|1|38|75806.20|0.06|0.05|N|O|1996-02-28|1996-04-17|1996-03-17|NONE|REG AIR| regular, unusu| +30735|229701|17214|2|9|14676.21|0.06|0.06|N|O|1996-02-27|1996-03-13|1996-03-10|TAKE BACK RETURN|TRUCK|c, final asymptotes haggle| +30735|581481|31482|3|8|12499.68|0.06|0.07|N|O|1996-04-06|1996-03-21|1996-04-22|COLLECT COD|TRUCK|thely quickly | +30735|950733|38291|4|22|39241.18|0.05|0.04|N|O|1996-05-11|1996-04-23|1996-05-25|TAKE BACK RETURN|REG AIR|e of the final packages sleep carefully ac| +30760|134795|9800|1|3|5489.37|0.02|0.04|N|F|1995-06-06|1995-06-09|1995-06-27|DELIVER IN PERSON|AIR|hely final p| +30760|492575|17594|2|18|28215.90|0.10|0.00|R|F|1995-05-12|1995-06-21|1995-05-28|DELIVER IN PERSON|SHIP| deposits are quickly| +30760|699750|37290|3|27|47242.44|0.05|0.00|N|O|1995-07-25|1995-06-18|1995-08-18|COLLECT COD|AIR|structions according to| +30760|685353|35354|4|9|12044.88|0.00|0.05|R|F|1995-05-10|1995-06-27|1995-05-25|DELIVER IN PERSON|FOB|ing to the instructions. blithely final | +30761|773353|10899|1|33|47068.56|0.04|0.05|A|F|1994-10-14|1994-11-07|1994-10-28|NONE|REG AIR|ly sly pac| +30761|739834|14863|2|22|41223.60|0.01|0.00|A|F|1994-12-19|1994-11-06|1994-12-29|DELIVER IN PERSON|RAIL|regular, pending ideas wake fluff| +30761|385026|22548|3|44|48884.44|0.05|0.01|R|F|1994-10-01|1994-11-07|1994-10-16|TAKE BACK RETURN|REG AIR|ntegrate carefully. quickly | +30761|119424|44429|4|17|24538.14|0.09|0.08|R|F|1994-09-12|1994-10-02|1994-09-23|COLLECT COD|RAIL|its. furious ideas breach furiously a| +30761|146755|46756|5|22|39638.50|0.09|0.07|A|F|1994-09-04|1994-10-19|1994-09-28|NONE|RAIL| theodolites wake | +30762|966672|16673|1|22|38249.86|0.03|0.02|N|O|1996-04-27|1996-06-11|1996-05-12|TAKE BACK RETURN|AIR|sleep quickly final packages. even| +30762|855874|18392|2|47|86002.01|0.05|0.05|N|O|1996-05-24|1996-05-29|1996-05-30|COLLECT COD|TRUCK|es use slyly about the blithely unusual i| +30762|665069|27583|3|16|16544.48|0.09|0.06|N|O|1996-06-25|1996-05-22|1996-07-08|DELIVER IN PERSON|MAIL|onic ideas sleep slyly. fluffily special p| +30762|799104|49105|4|12|14436.84|0.00|0.06|N|O|1996-03-27|1996-05-23|1996-04-18|COLLECT COD|FOB|ed instructions bo| +30762|534556|34557|5|41|65211.73|0.07|0.00|N|O|1996-03-26|1996-05-23|1996-03-28|DELIVER IN PERSON|MAIL|are carefully. fu| +30763|425513|25514|1|27|38839.23|0.04|0.07|N|O|1997-07-22|1997-06-29|1997-07-24|NONE|MAIL|ickly iron| +30763|591778|16801|2|19|35525.25|0.01|0.06|N|O|1997-06-15|1997-06-25|1997-07-03|COLLECT COD|TRUCK|the ironic| +30763|12270|49771|3|10|11822.70|0.08|0.03|N|O|1997-07-02|1997-07-10|1997-07-25|DELIVER IN PERSON|REG AIR|sits boost daringly silent acco| +30763|214390|39399|4|38|49566.44|0.07|0.04|N|O|1997-05-10|1997-07-19|1997-05-17|TAKE BACK RETURN|SHIP|ar theodolites! ir| +30763|246164|21173|5|12|13321.80|0.07|0.00|N|O|1997-07-15|1997-06-26|1997-08-01|NONE|AIR|. finally express packages b| +30763|262340|37351|6|14|18232.62|0.00|0.05|N|O|1997-07-19|1997-08-03|1997-08-07|NONE|AIR|ely unusual foxes | +30763|136907|36908|7|43|83587.70|0.07|0.02|N|O|1997-05-31|1997-06-27|1997-06-30|COLLECT COD|MAIL|s. furiously even requ| +30764|994316|6836|1|24|33846.48|0.05|0.00|R|F|1993-10-09|1993-10-20|1993-10-25|COLLECT COD|AIR|ccounts. carefully even| +30764|468191|5719|2|47|54480.99|0.02|0.05|A|F|1993-09-23|1993-10-18|1993-10-08|NONE|SHIP|y ironic d| +30764|879734|42252|3|3|5141.07|0.07|0.03|A|F|1993-10-23|1993-10-10|1993-11-02|NONE|FOB|ns sleep. unusual packages shal| +30764|683948|21488|4|49|94663.59|0.05|0.04|A|F|1993-11-19|1993-10-01|1993-11-25|NONE|MAIL|bout the slyly si| +30764|112390|24893|5|8|11219.12|0.01|0.08|A|F|1993-09-06|1993-09-13|1993-09-23|DELIVER IN PERSON|SHIP|except the bold, regular theodolit| +30765|502551|2552|1|42|65248.26|0.03|0.08|N|O|1995-07-02|1995-07-12|1995-07-06|TAKE BACK RETURN|TRUCK|hely. carefully specia| +30765|362290|12291|2|3|4056.84|0.07|0.06|N|O|1995-09-09|1995-06-21|1995-09-26|DELIVER IN PERSON|TRUCK|s. carefully ironic r| +30765|993204|18243|3|38|49292.08|0.09|0.04|N|F|1995-06-16|1995-08-08|1995-06-21|TAKE BACK RETURN|TRUCK| even attainments impress carefully b| +30765|765603|3149|4|34|56731.38|0.08|0.06|R|F|1995-05-22|1995-06-23|1995-06-16|DELIVER IN PERSON|FOB|regular requests try to wake| +30765|474324|11852|5|30|38949.00|0.00|0.03|N|F|1995-05-20|1995-07-18|1995-06-18|COLLECT COD|RAIL|y ironic account| +30766|920914|33433|1|26|50306.62|0.05|0.02|N|O|1997-08-17|1997-06-02|1997-09-02|NONE|MAIL|its boost quickly accord| +30766|791070|3586|2|32|37153.28|0.08|0.02|N|O|1997-05-28|1997-06-22|1997-06-15|TAKE BACK RETURN|REG AIR|eas. slyly regular accounts cajole r| +30766|500674|675|3|42|70335.30|0.06|0.04|N|O|1997-06-30|1997-07-13|1997-07-26|COLLECT COD|REG AIR|ackages are furiously acco| +30766|815901|40934|4|28|50872.08|0.06|0.00|N|O|1997-05-07|1997-06-08|1997-06-03|DELIVER IN PERSON|RAIL|riously even theodolites lose blithely| +30766|844436|19469|5|38|52454.82|0.07|0.03|N|O|1997-08-18|1997-05-21|1997-08-28|DELIVER IN PERSON|AIR|uests are furiously above the| +30766|433795|21320|6|24|41490.48|0.01|0.00|N|O|1997-05-12|1997-06-21|1997-05-15|DELIVER IN PERSON|RAIL|hely regul| +30767|366407|41422|1|27|39781.53|0.07|0.03|A|F|1993-11-10|1993-10-10|1993-11-19|DELIVER IN PERSON|SHIP|efully ironic deposits against the | +30767|190298|2802|2|11|15271.19|0.05|0.01|R|F|1993-12-23|1993-11-23|1994-01-19|COLLECT COD|FOB| regular requests detec| +30767|328680|3693|3|19|32464.73|0.03|0.02|A|F|1993-12-11|1993-11-21|1994-01-02|COLLECT COD|REG AIR|fluffily unusual asymptotes wake. car| +30792|270758|45769|1|11|19016.14|0.01|0.04|N|O|1996-10-02|1996-09-23|1996-10-08|TAKE BACK RETURN|RAIL|y special deposits. b| +30792|618536|43561|2|10|14545.00|0.01|0.01|N|O|1996-09-18|1996-08-22|1996-09-20|COLLECT COD|AIR|endencies. carefully pending ideas | +30793|611834|24347|1|9|15712.20|0.05|0.04|N|O|1998-07-29|1998-07-26|1998-08-25|TAKE BACK RETURN|TRUCK|ully bold deposits. slyly unusual pearls c| +30793|85698|35699|2|40|67347.60|0.09|0.07|N|O|1998-07-28|1998-08-07|1998-08-22|COLLECT COD|TRUCK|ending deposits detect fluff| +30793|319661|44674|3|39|65545.35|0.10|0.05|N|O|1998-07-25|1998-08-05|1998-08-19|COLLECT COD|TRUCK|uctions cajole brav| +30793|531462|31463|4|1|1493.44|0.05|0.02|N|O|1998-06-20|1998-09-14|1998-07-12|TAKE BACK RETURN|FOB|al accounts abo| +30793|275143|154|5|39|43607.07|0.03|0.07|N|O|1998-07-25|1998-08-14|1998-08-12|NONE|TRUCK|eep slyly final, final| +30793|318978|6497|6|26|51920.96|0.00|0.06|N|O|1998-08-06|1998-08-27|1998-08-19|NONE|SHIP|os haggle ruthlessly regularly pen| +30794|221256|8769|1|20|23544.80|0.09|0.03|N|O|1996-07-02|1996-06-09|1996-07-29|TAKE BACK RETURN|FOB|ess dolphins de| +30794|638653|26190|2|32|50931.84|0.09|0.03|N|O|1996-06-21|1996-06-28|1996-07-20|TAKE BACK RETURN|RAIL|nal, even deposits. pending, bold depos| +30794|829141|16690|3|14|14981.40|0.00|0.05|N|O|1996-08-22|1996-07-31|1996-08-26|TAKE BACK RETURN|SHIP|y express | +30794|366092|16093|4|39|45165.12|0.04|0.00|N|O|1996-08-31|1996-06-27|1996-09-29|NONE|MAIL|uses are. furiously special theodo| +30794|893004|5522|5|22|21933.12|0.09|0.00|N|O|1996-07-22|1996-06-04|1996-08-14|COLLECT COD|AIR| carefully. ironic pinto beans | +30794|713699|38728|6|6|10275.96|0.01|0.02|N|O|1996-05-07|1996-07-25|1996-05-25|COLLECT COD|TRUCK| among the even, regular plate| +30794|136343|36344|7|40|55173.60|0.08|0.01|N|O|1996-05-08|1996-07-02|1996-05-17|DELIVER IN PERSON|TRUCK|sts by the instructions doubt carefully| +30795|516270|41291|1|42|54022.50|0.09|0.05|R|F|1993-04-29|1993-05-17|1993-05-25|DELIVER IN PERSON|AIR|lar packages | +30795|945238|20275|2|42|53893.98|0.02|0.03|A|F|1993-03-13|1993-04-10|1993-04-11|NONE|RAIL|ly regular deposits. fluffily regu| +30795|610343|10344|3|6|7519.86|0.07|0.05|A|F|1993-04-09|1993-04-05|1993-04-29|DELIVER IN PERSON|SHIP|s. packages above | +30795|28184|15685|4|30|33365.40|0.03|0.01|A|F|1993-05-03|1993-04-07|1993-05-09|NONE|REG AIR|s! furiously even accounts among the furi| +30795|677194|2221|5|35|40990.60|0.02|0.04|R|F|1993-04-08|1993-05-02|1993-04-22|NONE|FOB|usly pending pinto beans. regul| +30796|175835|842|1|41|78344.03|0.08|0.06|N|O|1998-03-14|1998-04-23|1998-04-07|COLLECT COD|MAIL| regular excuses. final depos| +30796|242965|17974|2|33|62962.35|0.09|0.02|N|O|1998-06-14|1998-04-28|1998-06-25|DELIVER IN PERSON|REG AIR|ackages. even, even pains nag| +30797|742410|17439|1|50|72619.00|0.00|0.04|A|F|1993-05-22|1993-05-31|1993-06-14|COLLECT COD|FOB|r deposits. speci| +30797|668933|6473|2|32|60860.80|0.09|0.04|A|F|1993-05-13|1993-05-25|1993-05-30|COLLECT COD|REG AIR|ully pending ideas sleep | +30797|750581|25612|3|4|6526.20|0.09|0.02|A|F|1993-07-26|1993-06-19|1993-08-14|TAKE BACK RETURN|MAIL|, unusual deposits cajole s| +30797|4472|4473|4|36|49552.92|0.04|0.08|R|F|1993-04-05|1993-06-17|1993-04-14|DELIVER IN PERSON|FOB|ully. carefully ironic courts ar| +30798|140830|40831|1|19|35545.77|0.10|0.03|A|F|1992-08-22|1992-06-27|1992-09-07|TAKE BACK RETURN|AIR|ests against the slyly | +30798|916733|29252|2|13|22745.97|0.06|0.03|R|F|1992-07-27|1992-08-11|1992-08-26|TAKE BACK RETURN|FOB| requests. accounts be| +30798|516104|28615|3|30|33602.40|0.04|0.01|R|F|1992-05-26|1992-08-01|1992-06-02|COLLECT COD|TRUCK|oost furiously about the bold, bold foxes.| +30799|409637|22146|1|47|72690.67|0.10|0.07|A|F|1992-05-20|1992-05-26|1992-06-18|DELIVER IN PERSON|RAIL|lyly about the | +30799|761040|23556|2|22|24222.22|0.08|0.07|A|F|1992-06-15|1992-06-19|1992-06-26|COLLECT COD|REG AIR|ully pending a| +30799|787034|49550|3|7|7847.00|0.03|0.01|A|F|1992-04-02|1992-06-15|1992-04-25|NONE|FOB|lets sleep quickly expr| +30799|680089|30090|4|33|35278.65|0.08|0.04|A|F|1992-04-01|1992-05-23|1992-04-11|DELIVER IN PERSON|SHIP|press soma| +30799|250541|13047|5|48|71593.44|0.09|0.02|R|F|1992-05-09|1992-06-21|1992-05-30|COLLECT COD|SHIP|le fluffily about the requ| +30799|828552|3585|6|39|57739.89|0.06|0.01|R|F|1992-06-22|1992-06-08|1992-07-12|COLLECT COD|MAIL|ckly at the blithely bold pac| +30799|459442|21952|7|35|49049.70|0.05|0.08|A|F|1992-06-27|1992-04-30|1992-07-05|NONE|FOB|ffily silent id| +30824|834621|47138|1|43|66889.94|0.08|0.06|N|O|1997-12-22|1998-02-07|1997-12-28|TAKE BACK RETURN|AIR|slyly special asymptotes| +30825|569501|44524|1|4|6281.92|0.06|0.01|A|F|1992-04-25|1992-07-11|1992-05-23|TAKE BACK RETURN|RAIL|riously special accounts are caref| +30825|588254|25788|2|7|9395.61|0.08|0.04|A|F|1992-06-20|1992-07-11|1992-06-26|TAKE BACK RETURN|REG AIR| dolphins sleep fluffily. blithely eve| +30825|774372|49403|3|8|11570.72|0.07|0.03|A|F|1992-08-15|1992-07-14|1992-09-14|DELIVER IN PERSON|FOB|lly special, express foxes. sometimes reg| +30825|854405|4406|4|44|59811.84|0.07|0.01|A|F|1992-08-06|1992-07-04|1992-08-17|DELIVER IN PERSON|RAIL|ven accounts affix quickly according to th| +30825|983995|46515|5|30|62368.50|0.04|0.01|A|F|1992-08-14|1992-05-27|1992-08-25|COLLECT COD|MAIL|t the blithely special theo| +30825|992709|17748|6|7|12611.62|0.10|0.06|R|F|1992-06-09|1992-07-11|1992-06-22|NONE|FOB|ackages! regular requests nag!| +30826|847571|47572|1|12|18222.36|0.04|0.01|A|F|1994-06-29|1994-06-20|1994-07-24|TAKE BACK RETURN|MAIL|regular as| +30826|109439|34444|2|2|2896.86|0.04|0.00|R|F|1994-05-15|1994-05-28|1994-05-25|TAKE BACK RETURN|AIR|nstructions. furi| +30826|333652|46159|3|27|45512.28|0.02|0.08|A|F|1994-07-01|1994-06-23|1994-07-07|TAKE BACK RETURN|AIR|ular foxes. final packages sleep furiou| +30826|678021|40535|4|12|11987.88|0.00|0.03|R|F|1994-06-21|1994-07-07|1994-07-15|TAKE BACK RETURN|RAIL|sits. slyly pending theodolites haggle car| +30826|497313|47314|5|42|55032.18|0.09|0.08|R|F|1994-05-06|1994-06-07|1994-05-20|DELIVER IN PERSON|TRUCK|ly after the furiously express pa| +30826|334168|21687|6|31|37266.65|0.02|0.00|A|F|1994-08-10|1994-06-08|1994-08-11|COLLECT COD|REG AIR|ests. carefully ironic ideas lose. re| +30826|358075|33090|7|18|20395.08|0.00|0.01|A|F|1994-06-20|1994-06-11|1994-07-07|DELIVER IN PERSON|AIR|ns detect blithely. deposi| +30827|164311|1821|1|30|41259.30|0.06|0.01|N|O|1998-06-17|1998-07-18|1998-06-22|NONE|RAIL|ly after the blithely ironic dolphins. slyl| +30827|573698|36210|2|28|49606.76|0.06|0.06|N|O|1998-06-10|1998-07-12|1998-07-07|COLLECT COD|MAIL| promise sometimes slyly | +30828|89345|14348|1|44|58710.96|0.07|0.02|A|F|1992-03-16|1992-06-05|1992-04-10|COLLECT COD|SHIP|lent foxes nag fluffily abo| +30828|605595|5596|2|15|22508.40|0.04|0.06|R|F|1992-06-09|1992-04-12|1992-06-24|TAKE BACK RETURN|AIR|es are blithely regular | +30828|225999|13512|3|50|96249.00|0.08|0.04|A|F|1992-04-11|1992-06-03|1992-04-27|COLLECT COD|TRUCK| ironically final deposits. quickly ironic| +30829|820754|45787|1|50|83735.50|0.00|0.05|N|O|1997-11-12|1997-11-21|1997-12-09|DELIVER IN PERSON|REG AIR|sits doze. furio| +30829|409792|22301|2|10|17017.70|0.08|0.08|N|O|1997-10-17|1997-11-15|1997-10-21|DELIVER IN PERSON|TRUCK|as along the slyly pending depende| +30829|372684|22685|3|13|22836.71|0.05|0.07|N|O|1997-10-20|1997-11-29|1997-11-18|DELIVER IN PERSON|AIR|s engage quic| +30829|683862|8889|4|8|14766.64|0.07|0.06|N|O|1997-12-04|1997-12-17|1997-12-07|DELIVER IN PERSON|AIR|s cajole blithely according t| +30829|664895|2435|5|14|26038.04|0.03|0.08|N|O|1998-01-08|1997-10-25|1998-01-14|DELIVER IN PERSON|SHIP| the carefully ironic asymptotes may| +30830|702001|39544|1|8|8023.76|0.08|0.08|N|O|1998-02-06|1998-02-06|1998-03-02|COLLECT COD|MAIL|final ideas? furiously regular f| +30830|528963|16494|2|26|51790.44|0.06|0.00|N|O|1997-12-17|1998-01-13|1998-01-09|NONE|AIR|uriously. blithely quick | +30830|272733|47744|3|1|1705.72|0.03|0.02|N|O|1997-12-09|1998-01-29|1997-12-23|COLLECT COD|TRUCK|ckages. bold deposits poac| +30830|816789|4338|4|29|49466.46|0.09|0.01|N|O|1997-12-21|1998-03-02|1998-01-12|DELIVER IN PERSON|RAIL|es. slyly express accounts ought to haggle.| +30830|766075|28591|5|24|27384.96|0.03|0.07|N|O|1998-01-20|1998-02-16|1998-01-23|COLLECT COD|RAIL|its nag caref| +30830|407602|20111|6|43|64911.94|0.02|0.07|N|O|1998-02-17|1998-02-02|1998-03-19|TAKE BACK RETURN|FOB|ake along the final foxes. carefull| +30831|828180|28181|1|47|52082.58|0.10|0.08|A|F|1993-04-18|1993-02-28|1993-04-20|COLLECT COD|FOB|ly silently ironic foxes. | +30831|213639|26144|2|12|18631.44|0.01|0.08|A|F|1993-03-15|1993-03-11|1993-04-08|TAKE BACK RETURN|TRUCK|ly across the regular, unusual | +30831|628945|41458|3|40|74956.40|0.05|0.03|A|F|1993-03-22|1993-03-04|1993-04-21|DELIVER IN PERSON|SHIP|efully carefully regular accounts. c| +30831|669487|32001|4|28|40780.60|0.09|0.05|R|F|1993-01-14|1993-03-26|1993-02-11|COLLECT COD|FOB|regular asymptotes: slyly bol| +30831|61573|36576|5|14|21483.98|0.03|0.03|A|F|1993-03-17|1993-02-15|1993-03-26|NONE|REG AIR|ckages detect carefully quick pinto beans.| +30856|579169|41681|1|8|9985.12|0.03|0.08|R|F|1994-12-25|1994-10-16|1995-01-04|TAKE BACK RETURN|RAIL|lly according to the silently regular | +30856|82275|32276|2|34|42747.18|0.09|0.01|A|F|1994-12-26|1994-11-20|1995-01-05|COLLECT COD|REG AIR|, regular wart| +30856|790008|2524|3|21|23057.37|0.02|0.08|A|F|1994-11-05|1994-10-30|1994-11-06|COLLECT COD|FOB| packages. slyly sly dinos agains| +30856|661420|48960|4|34|46967.26|0.08|0.08|R|F|1994-12-08|1994-10-21|1995-01-04|COLLECT COD|RAIL|ns. blithely unusual | +30856|475439|37949|5|16|22630.56|0.00|0.02|A|F|1994-10-02|1994-10-30|1994-10-22|DELIVER IN PERSON|FOB|. furiously pending theo| +30857|858191|45743|1|39|44816.85|0.06|0.01|R|F|1994-06-05|1994-04-08|1994-06-27|NONE|TRUCK|lyly ironic orbits grow enticing| +30857|614193|1730|2|46|50929.36|0.01|0.02|A|F|1994-02-16|1994-04-27|1994-03-10|DELIVER IN PERSON|MAIL|dencies x-ray for th| +30857|727080|14623|3|30|33211.50|0.09|0.02|A|F|1994-03-18|1994-05-06|1994-04-06|NONE|MAIL|y final requests could are slyly acro| +30857|28074|40575|4|35|35072.45|0.02|0.04|A|F|1994-05-14|1994-04-19|1994-05-19|DELIVER IN PERSON|RAIL|ckages should run dependencies. b| +30857|826939|39456|5|47|87696.83|0.02|0.05|R|F|1994-04-05|1994-04-13|1994-04-21|DELIVER IN PERSON|RAIL|ilent accounts haggle above the pendin| +30858|322196|34703|1|16|19490.88|0.06|0.07|N|O|1998-07-03|1998-06-04|1998-07-22|TAKE BACK RETURN|RAIL|n theodolites nag about the care| +30858|142067|4570|2|30|33271.80|0.00|0.02|N|O|1998-08-15|1998-06-05|1998-08-26|DELIVER IN PERSON|SHIP|counts. slyly final pa| +30858|710386|10387|3|46|64232.10|0.00|0.00|N|O|1998-07-29|1998-06-14|1998-08-03|COLLECT COD|MAIL|lyly regular excuses detect slyly acc| +30858|450826|827|4|18|31982.40|0.09|0.07|N|O|1998-07-12|1998-06-05|1998-07-30|TAKE BACK RETURN|TRUCK|onic packages boost blithel| +30858|26786|39287|5|11|18840.58|0.05|0.02|N|O|1998-08-07|1998-05-31|1998-08-23|COLLECT COD|SHIP| blithely ironic theodolites sl| +30858|183209|33210|6|27|34889.40|0.09|0.00|N|O|1998-05-05|1998-07-10|1998-05-14|NONE|FOB| thrash. ideas haggle. final, regular pac| +30859|865764|40799|1|1|1729.72|0.00|0.04|N|O|1997-06-16|1997-07-04|1997-07-05|NONE|MAIL| wake. blithely| +30859|886163|11198|2|21|24131.52|0.06|0.07|N|O|1997-09-01|1997-06-21|1997-09-04|DELIVER IN PERSON|REG AIR| quickly unus| +30859|740210|2725|3|34|42506.12|0.06|0.02|N|O|1997-06-02|1997-08-01|1997-06-18|TAKE BACK RETURN|MAIL|ns lose always! carefully express theodo| +30860|189533|2037|1|12|19470.36|0.01|0.07|R|F|1992-11-11|1992-10-02|1992-11-29|DELIVER IN PERSON|TRUCK|riously slow re| +30861|556551|44085|1|17|27328.01|0.07|0.05|R|F|1993-08-09|1993-07-09|1993-08-16|DELIVER IN PERSON|AIR|ide of the silently pending theodoli| +30861|947944|22981|2|49|97603.10|0.09|0.05|A|F|1993-06-18|1993-07-22|1993-06-19|TAKE BACK RETURN|FOB|he requests nag flu| +30862|309465|34478|1|41|60452.45|0.07|0.01|N|O|1995-12-21|1996-01-16|1995-12-22|DELIVER IN PERSON|SHIP| carefully even ideas. furiously iro| +30862|174852|12362|2|8|15414.80|0.09|0.07|N|O|1995-12-14|1995-12-28|1996-01-09|NONE|MAIL| against the bold ideas. special reques| +30862|736675|36676|3|7|11981.48|0.06|0.00|N|O|1995-12-25|1995-12-12|1996-01-20|DELIVER IN PERSON|FOB|l instructions. furiously ironi| +30862|289504|2010|4|22|32856.78|0.04|0.03|N|O|1996-02-10|1996-01-02|1996-02-16|TAKE BACK RETURN|MAIL|s boost quickly bold courts. regul| +30862|693245|30785|5|19|23525.99|0.05|0.02|N|O|1995-11-23|1995-12-19|1995-11-30|NONE|MAIL|packages nag after the fluffily f| +30862|365210|2732|6|23|29329.60|0.00|0.07|N|O|1995-12-02|1996-01-15|1995-12-16|DELIVER IN PERSON|TRUCK| deposits sleep blithely.| +30862|81898|6901|7|30|56396.70|0.05|0.08|N|O|1996-02-06|1996-02-02|1996-03-04|NONE|AIR|ests. quickly final ideas are. idly ex| +30863|448074|48075|1|7|7154.35|0.06|0.04|R|F|1992-05-05|1992-07-26|1992-06-01|COLLECT COD|RAIL|blithely ironic frets against the sl| +30863|777092|27093|2|4|4676.24|0.08|0.01|A|F|1992-05-06|1992-06-24|1992-05-09|TAKE BACK RETURN|TRUCK|promise slyly theodolit| +30888|959925|47483|1|50|99244.00|0.02|0.05|N|O|1996-05-05|1996-04-03|1996-05-11|NONE|TRUCK|t the silently even packages. u| +30889|197122|34632|1|27|32916.24|0.01|0.01|A|F|1992-08-14|1992-10-14|1992-08-25|TAKE BACK RETURN|MAIL|es wake fluffily after the ironic platelets| +30889|22861|22862|2|5|8919.30|0.04|0.01|R|F|1992-09-21|1992-09-06|1992-09-30|COLLECT COD|FOB| the regular requests. slyly expre| +30889|217536|30041|3|48|69768.96|0.03|0.05|R|F|1992-08-23|1992-08-29|1992-08-25|TAKE BACK RETURN|AIR|wake. slyly express id| +30889|119674|44679|4|29|49116.43|0.00|0.07|A|F|1992-10-04|1992-10-02|1992-10-28|NONE|MAIL| slyly special depos| +30889|356082|18590|5|28|31865.96|0.02|0.05|A|F|1992-08-16|1992-09-28|1992-09-03|DELIVER IN PERSON|FOB|e furiously. quickly| +30889|662278|12279|6|24|29765.76|0.06|0.01|A|F|1992-10-29|1992-08-23|1992-11-07|COLLECT COD|TRUCK|against the carefully express acco| +30890|894976|44977|1|46|90662.78|0.01|0.02|R|F|1993-05-12|1993-04-23|1993-05-24|COLLECT COD|RAIL|ly quickly idle accounts. theodolites ha| +30890|854076|29111|2|9|9270.27|0.05|0.00|A|F|1993-06-07|1993-06-17|1993-07-03|COLLECT COD|RAIL|totes are bl| +30890|454884|42412|3|25|45971.50|0.02|0.01|R|F|1993-03-24|1993-04-27|1993-04-07|DELIVER IN PERSON|REG AIR|ironic idea| +30890|228444|40949|4|29|39800.47|0.02|0.01|A|F|1993-06-18|1993-04-24|1993-07-12|NONE|MAIL|nic, even foxes a| +30890|455012|30031|5|21|20306.79|0.00|0.04|R|F|1993-04-19|1993-06-20|1993-05-15|NONE|MAIL|quests. fluffily | +30890|371570|34078|6|3|4924.68|0.09|0.02|A|F|1993-07-12|1993-05-07|1993-07-21|COLLECT COD|SHIP|ts among the furiously r| +30890|973690|48729|7|50|88182.50|0.02|0.03|A|F|1993-04-18|1993-05-09|1993-04-20|TAKE BACK RETURN|SHIP| even, unus| +30891|799368|11884|1|32|46954.56|0.01|0.07|N|O|1997-02-26|1997-02-05|1997-03-01|COLLECT COD|FOB|sts sleep quickly final, regular re| +30891|973915|48954|2|44|87510.28|0.05|0.04|N|O|1997-02-20|1997-01-02|1997-02-26|NONE|AIR|counts. always regular theodolites hag| +30891|583058|33059|3|12|13692.36|0.02|0.02|N|O|1997-01-02|1997-01-17|1997-01-16|NONE|RAIL|ng the ironic d| +30891|443744|31269|4|22|37129.84|0.10|0.02|N|O|1997-03-22|1997-02-05|1997-04-02|NONE|SHIP|se busily along the| +30891|998494|48495|5|27|42996.15|0.05|0.04|N|O|1996-12-31|1997-02-03|1997-01-29|COLLECT COD|REG AIR|xcuses affix carefully across the blithe| +30891|684623|22163|6|9|14468.31|0.09|0.01|N|O|1997-01-16|1997-01-18|1997-01-20|COLLECT COD|TRUCK|ily. carefully close pac| +30891|450490|491|7|22|31690.34|0.06|0.07|N|O|1997-02-16|1997-02-03|1997-02-20|COLLECT COD|RAIL| the unusual deposits hinder always e| +30892|379090|4105|1|44|51439.52|0.09|0.00|A|F|1994-04-30|1994-03-26|1994-05-17|COLLECT COD|FOB|e quickly reg| +30892|358377|8378|2|23|33013.28|0.06|0.05|A|F|1994-04-19|1994-03-19|1994-05-17|COLLECT COD|FOB| excuses are furiously e| +30892|241919|16928|3|26|48383.40|0.08|0.08|R|F|1994-03-26|1994-04-05|1994-04-25|NONE|MAIL|nwind quickly regular sheav| +30892|922965|35484|4|39|77528.88|0.05|0.08|A|F|1994-04-08|1994-04-10|1994-04-15|NONE|MAIL|fully furiousl| +30892|261233|23739|5|13|15524.86|0.09|0.02|A|F|1994-04-07|1994-04-02|1994-05-06|DELIVER IN PERSON|MAIL|ffily special courts d| +30892|536336|36337|6|2|2744.62|0.00|0.04|A|F|1994-05-06|1994-03-19|1994-06-04|DELIVER IN PERSON|FOB|c foxes impress sly| +30893|56775|6776|1|13|22513.01|0.04|0.05|N|O|1998-04-12|1998-06-19|1998-05-03|COLLECT COD|REG AIR|ideas above the slyly reg| +30893|209098|9099|2|37|37261.96|0.10|0.01|N|O|1998-07-03|1998-06-14|1998-07-14|DELIVER IN PERSON|REG AIR|jole quickly arou| +30893|298084|35600|3|13|14066.91|0.02|0.08|N|O|1998-04-25|1998-05-24|1998-05-18|TAKE BACK RETURN|SHIP|riously about the ironic, e| +30893|886366|11401|4|12|16227.84|0.10|0.01|N|O|1998-07-05|1998-05-25|1998-07-14|DELIVER IN PERSON|AIR|tions wake ironic, | +30894|752380|39926|1|43|61591.05|0.03|0.06|N|O|1997-04-14|1997-05-25|1997-04-29|NONE|FOB|encies was quickly. slyly re| +30894|246729|9234|2|10|16757.10|0.07|0.03|N|O|1997-06-06|1997-05-07|1997-07-01|DELIVER IN PERSON|RAIL|le. fluffily ironic packages sleep furiousl| +30894|767262|29778|3|46|61144.58|0.07|0.07|N|O|1997-06-18|1997-05-31|1997-06-22|COLLECT COD|REG AIR|osits! carefully ironic requests sleep | +30894|360625|10626|4|39|65738.79|0.07|0.05|N|O|1997-06-18|1997-06-03|1997-06-24|DELIVER IN PERSON|AIR|sly. unusual pinto beans main| +30895|922805|22806|1|19|34727.44|0.00|0.05|N|O|1998-06-18|1998-04-21|1998-07-11|COLLECT COD|TRUCK|ites are slyly. slyly ironic orbits cajole| +30895|575622|13156|2|9|15278.40|0.03|0.07|N|O|1998-03-26|1998-03-22|1998-03-28|NONE|TRUCK|ular requests wake slyly! ironic, p| +30895|475872|25873|3|44|81305.40|0.05|0.00|N|O|1998-05-21|1998-04-14|1998-05-28|COLLECT COD|SHIP| ironic sentiments. | +30920|573357|10891|1|14|20024.62|0.02|0.04|N|O|1995-11-08|1995-10-13|1995-11-14|DELIVER IN PERSON|MAIL|y after th| +30920|403685|3686|2|13|20652.58|0.05|0.04|N|O|1995-11-15|1995-10-20|1995-11-27|COLLECT COD|MAIL|y bold forges: r| +30921|975469|13027|1|20|30888.40|0.04|0.03|N|O|1997-10-13|1997-12-10|1997-10-14|DELIVER IN PERSON|FOB|p bold, silent instructions. furiously eve| +30922|78620|28621|1|43|68740.66|0.10|0.08|A|F|1993-07-30|1993-06-19|1993-08-19|COLLECT COD|TRUCK|resias around the ironic package| +30923|411890|49415|1|50|90093.50|0.05|0.05|R|F|1993-11-11|1993-10-15|1993-11-23|DELIVER IN PERSON|FOB|kly quiet foxes. closely unusual deposits| +30923|634688|22225|2|3|4867.95|0.04|0.05|R|F|1993-11-07|1993-12-10|1993-11-19|COLLECT COD|SHIP|furiously regular excuses. car| +30923|186777|36778|3|19|35411.63|0.10|0.06|R|F|1993-09-17|1993-12-01|1993-09-28|COLLECT COD|RAIL|sleep thinly above the | +30924|835013|10046|1|11|10427.67|0.01|0.02|A|F|1994-06-25|1994-08-11|1994-07-08|COLLECT COD|REG AIR|nts poach sl| +30924|51443|13945|2|10|13944.40|0.04|0.03|A|F|1994-10-05|1994-07-30|1994-10-27|NONE|TRUCK|above the reque| +30924|586549|24083|3|39|63785.28|0.05|0.01|R|F|1994-09-26|1994-07-26|1994-10-06|DELIVER IN PERSON|TRUCK|symptotes. even requests haggle carefu| +30924|127066|39569|4|14|15302.84|0.07|0.00|A|F|1994-08-12|1994-08-29|1994-09-08|COLLECT COD|SHIP|gainst the express accou| +30924|590811|28345|5|31|58955.49|0.01|0.04|R|F|1994-07-31|1994-08-08|1994-08-20|NONE|MAIL|y ironic requests. frets cajole across th| +30924|753661|3662|6|5|8573.15|0.08|0.07|R|F|1994-07-14|1994-07-25|1994-08-06|TAKE BACK RETURN|REG AIR|blithe instructions. regular pinto beans| +30924|771772|34288|7|24|44249.76|0.01|0.04|A|F|1994-06-25|1994-08-10|1994-07-11|DELIVER IN PERSON|MAIL|al ideas. quickly even theodolites sleep qu| +30925|171361|21362|1|31|44403.16|0.06|0.06|A|F|1992-10-23|1992-11-23|1992-11-13|NONE|FOB|lar accounts! unusual, even asymp| +30925|57180|7181|2|21|23880.78|0.03|0.04|R|F|1993-01-26|1992-12-16|1993-02-04|NONE|REG AIR|ilent theodolites. unusual, regular dep| +30925|19166|44167|3|1|1085.16|0.02|0.04|R|F|1993-01-21|1992-11-29|1993-02-15|DELIVER IN PERSON|MAIL|ecial requ| +30925|115210|2717|4|26|31855.46|0.02|0.05|A|F|1993-01-19|1992-12-29|1993-01-26|COLLECT COD|AIR|ckly. quickly express instructions ha| +30925|323843|36350|5|20|37336.60|0.09|0.01|R|F|1992-12-19|1992-11-30|1993-01-04|COLLECT COD|SHIP|le furiously about the fluffily ir| +30925|812806|37839|6|13|22343.88|0.04|0.06|A|F|1992-11-09|1992-12-17|1992-11-10|DELIVER IN PERSON|FOB|ss requests are furiously| +30925|820314|45347|7|9|11108.43|0.03|0.07|R|F|1992-11-20|1992-11-16|1992-12-18|DELIVER IN PERSON|FOB|he even forges.| +30926|4662|42163|1|25|39166.50|0.05|0.04|N|O|1997-12-23|1997-11-19|1997-12-26|TAKE BACK RETURN|TRUCK|fluffily silent asymptotes haggle f| +30926|342912|30431|2|6|11729.40|0.07|0.07|N|O|1998-01-06|1997-11-15|1998-01-25|TAKE BACK RETURN|TRUCK|regular ideas. re| +30926|306924|31937|3|18|34756.38|0.06|0.08|N|O|1997-11-18|1997-12-20|1997-12-07|COLLECT COD|MAIL|onic deposits acro| +30926|459022|34041|4|30|29430.00|0.01|0.01|N|O|1997-11-08|1997-12-29|1997-11-17|COLLECT COD|RAIL| packages about the ca| +30926|775870|25871|5|12|23350.08|0.07|0.00|N|O|1997-11-08|1997-12-23|1997-12-02|COLLECT COD|REG AIR|ites sleep carefully. f| +30926|44099|6600|6|41|42766.69|0.04|0.05|N|O|1998-01-20|1997-11-21|1998-01-22|NONE|TRUCK|g to the furiously final deposits. carefull| +30927|347751|47752|1|39|70150.86|0.07|0.06|N|O|1995-06-23|1995-05-26|1995-07-11|NONE|FOB|e among the blithely special multipliers. t| +30952|44178|44179|1|15|16832.55|0.05|0.03|A|F|1993-12-01|1993-11-24|1993-12-19|TAKE BACK RETURN|AIR|counts run carefully ev| +30952|489116|39117|2|11|12155.99|0.09|0.07|A|F|1993-12-21|1993-11-26|1994-01-18|DELIVER IN PERSON|RAIL|osits nag. slyly regular accounts | +30952|558709|33732|3|29|51262.72|0.06|0.01|R|F|1994-01-31|1994-01-05|1994-02-20|COLLECT COD|MAIL|ts. furiously final i| +30952|214839|2352|4|13|22799.66|0.05|0.02|R|F|1993-10-29|1994-01-09|1993-11-22|COLLECT COD|MAIL|arefully after the quickly furi| +30952|783153|33154|5|15|18541.80|0.09|0.08|R|F|1993-12-13|1993-11-16|1994-01-05|COLLECT COD|TRUCK|s haggle fl| +30953|537612|12633|1|46|75881.14|0.04|0.04|N|O|1996-07-15|1996-06-07|1996-07-25|COLLECT COD|MAIL|ependencies cajole| +30953|637000|49513|2|31|29046.07|0.02|0.01|N|O|1996-07-18|1996-07-24|1996-07-29|NONE|REG AIR|ts doze above the regular| +30953|50148|12650|3|36|39533.04|0.04|0.05|N|O|1996-07-22|1996-06-22|1996-08-21|TAKE BACK RETURN|AIR|ffy pinto bean| +30954|590725|3237|1|1|1815.70|0.04|0.00|N|O|1996-02-04|1996-03-05|1996-02-26|DELIVER IN PERSON|AIR| foxes: carefully express ideas cajole fu| +30954|314000|26507|2|4|4055.96|0.03|0.06|N|O|1996-02-01|1996-01-22|1996-02-05|TAKE BACK RETURN|REG AIR| regular pinto be| +30954|395644|45645|3|45|78283.35|0.01|0.01|N|O|1995-12-10|1996-02-17|1995-12-20|NONE|FOB|fily ironic, ironic packages! ideas nag b| +30955|466690|29200|1|6|9940.02|0.02|0.04|N|O|1996-03-19|1996-01-23|1996-04-07|NONE|MAIL|es cajole slyly| +30955|648138|23163|2|6|6516.60|0.09|0.01|N|O|1996-04-04|1996-01-29|1996-04-09|TAKE BACK RETURN|TRUCK|ccounts. special pinto bean| +30955|246460|8965|3|11|15470.95|0.01|0.01|N|O|1996-01-11|1996-02-20|1996-01-19|TAKE BACK RETURN|MAIL|le accounts haggle furiously ac| +30955|246454|33967|4|28|39212.32|0.08|0.06|N|O|1995-12-13|1996-01-18|1996-01-07|NONE|SHIP|g epitaphs. carefully i| +30955|135757|23264|5|41|73502.75|0.09|0.05|N|O|1996-03-07|1996-02-18|1996-03-26|DELIVER IN PERSON|MAIL|n dugouts. fluffily brave foxes integrate | +30955|665282|27796|6|5|6236.25|0.04|0.05|N|O|1996-03-03|1996-02-09|1996-04-01|DELIVER IN PERSON|MAIL|ests cajole furi| +30956|236139|48644|1|20|21502.40|0.00|0.04|R|F|1994-10-02|1994-11-26|1994-10-08|DELIVER IN PERSON|REG AIR|ently! blithely ironic packages sleep f| +30956|776333|38849|2|15|21139.50|0.08|0.07|A|F|1994-12-01|1994-11-18|1994-12-26|TAKE BACK RETURN|SHIP|furiously final accounts. regular accou| +30956|817601|5150|3|45|68335.20|0.09|0.05|A|F|1995-01-11|1994-12-13|1995-01-12|COLLECT COD|RAIL|es. instructions according to th| +30957|37926|427|1|39|72692.88|0.07|0.07|N|O|1997-12-22|1998-01-09|1998-01-02|DELIVER IN PERSON|RAIL| express do| +30957|412759|37776|2|25|41793.25|0.03|0.01|N|O|1998-03-11|1998-01-12|1998-04-07|DELIVER IN PERSON|TRUCK|sly across the even theodolites| +30957|238904|38905|3|16|29486.24|0.07|0.05|N|O|1998-02-03|1998-01-17|1998-02-21|COLLECT COD|SHIP|uriously fluffily final reque| +30957|250973|38489|4|48|92350.08|0.06|0.00|N|O|1998-02-26|1998-03-03|1998-03-01|DELIVER IN PERSON|RAIL| fluffily close asym| +30957|89607|2109|5|26|41511.60|0.03|0.01|N|O|1998-02-19|1998-02-15|1998-02-20|NONE|REG AIR| carefully express, even platelets; care| +30957|10072|35073|6|13|12766.91|0.02|0.02|N|O|1997-12-18|1998-02-24|1998-01-17|COLLECT COD|FOB|ons haggle. fluffily even court| +30958|390038|15053|1|32|36096.64|0.09|0.01|A|F|1994-05-30|1994-03-22|1994-06-29|COLLECT COD|TRUCK|uriously even foxes. final, ironic req| +30958|359074|46596|2|18|20395.08|0.07|0.02|A|F|1994-03-01|1994-04-23|1994-03-15|NONE|REG AIR|ironic packages are blithely a| +30958|942466|30021|3|35|52794.70|0.04|0.08|A|F|1994-02-27|1994-03-25|1994-03-26|NONE|MAIL|y. special, bold instructions along the ins| +30958|20843|20844|4|23|40568.32|0.04|0.01|R|F|1994-03-18|1994-04-11|1994-04-11|DELIVER IN PERSON|TRUCK|fully quick ideas. quickly silent | +30959|543682|43683|1|4|6902.64|0.06|0.03|N|O|1995-10-12|1995-12-24|1995-10-20|DELIVER IN PERSON|MAIL|slyly blithely fina| +30959|663052|13053|2|43|43645.86|0.07|0.08|N|O|1995-12-20|1995-10-30|1996-01-10|DELIVER IN PERSON|REG AIR|g regular ideas. ironic deposits boost. qu| +30984|240264|27777|1|31|37331.75|0.05|0.06|R|F|1995-05-30|1995-05-24|1995-06-13|TAKE BACK RETURN|REG AIR|ts. slyly regular requests wak| +30984|105121|5122|2|13|14639.56|0.06|0.00|N|F|1995-06-10|1995-04-11|1995-06-21|TAKE BACK RETURN|TRUCK|express ideas cajole slyl| +30984|767040|4586|3|18|19926.18|0.01|0.02|N|F|1995-06-05|1995-04-12|1995-07-05|NONE|REG AIR|e ideas. bli| +30984|624864|12401|4|27|48298.41|0.02|0.05|A|F|1995-05-11|1995-05-02|1995-05-22|NONE|MAIL|ely ironic instructions. instruc| +30985|137371|12376|1|19|26759.03|0.10|0.03|R|F|1994-07-17|1994-07-31|1994-08-06|COLLECT COD|FOB|ymptotes x-ray about the car| +30985|787212|49728|2|27|35077.86|0.06|0.05|R|F|1994-06-13|1994-07-30|1994-06-26|TAKE BACK RETURN|TRUCK| special pl| +30985|669214|31728|3|38|44960.84|0.04|0.08|A|F|1994-08-09|1994-06-18|1994-08-27|NONE|REG AIR|ly. fluffily pending requests run furio| +30985|477966|2985|4|2|3887.88|0.06|0.03|R|F|1994-07-16|1994-07-06|1994-07-29|NONE|MAIL|ding to the blithely even | +30985|169258|31762|5|23|30526.75|0.02|0.04|R|F|1994-06-19|1994-06-11|1994-06-28|COLLECT COD|RAIL|n, bold ideas. ideas sleep deposits| +30985|704328|16843|6|28|37304.12|0.05|0.01|R|F|1994-09-01|1994-06-09|1994-09-30|TAKE BACK RETURN|FOB|leep along the regular, even e| +30986|556478|31501|1|43|65981.35|0.06|0.07|N|O|1997-10-18|1997-09-24|1997-11-12|TAKE BACK RETURN|FOB|dugouts. stealthily slow pinto beans h| +30986|715025|27540|2|21|21839.79|0.07|0.02|N|O|1997-08-01|1997-09-17|1997-08-08|DELIVER IN PERSON|MAIL| fluffily final pinto beans | +30986|417398|4923|3|42|55245.54|0.10|0.06|N|O|1997-11-15|1997-08-28|1997-11-19|COLLECT COD|AIR|sts nag furiously. f| +30986|207629|20134|4|39|59927.79|0.05|0.00|N|O|1997-08-14|1997-10-01|1997-09-10|NONE|SHIP|ly. regular pinto beans| +30986|604707|42244|5|42|67690.14|0.02|0.06|N|O|1997-09-08|1997-09-04|1997-09-12|COLLECT COD|REG AIR|ress foxes. pending, b| +30987|182895|20405|1|42|83071.38|0.06|0.07|N|O|1996-01-20|1996-02-29|1996-02-08|TAKE BACK RETURN|RAIL|, pending c| +30987|900545|546|2|49|75729.50|0.06|0.01|N|O|1996-01-20|1996-03-20|1996-02-11|COLLECT COD|RAIL|ackages sleep blithely. furiously bold | +30987|456678|6679|3|32|52308.80|0.09|0.06|N|O|1996-01-24|1996-03-25|1996-01-28|TAKE BACK RETURN|RAIL|nding ideas wake after | +30987|378835|16357|4|16|30621.12|0.04|0.06|N|O|1996-01-08|1996-02-23|1996-01-23|COLLECT COD|RAIL|ly special theodolites. quickly regular f| +30987|76970|39472|5|15|29204.55|0.00|0.07|N|O|1996-03-18|1996-03-30|1996-04-11|TAKE BACK RETURN|SHIP| stealthy, special pinto beans. e| +30987|626453|38966|6|3|4138.26|0.01|0.05|N|O|1996-04-10|1996-03-11|1996-04-30|TAKE BACK RETURN|AIR|ts. slyly special excuses grow iron| +30987|787063|49579|7|3|3450.09|0.09|0.04|N|O|1996-02-07|1996-03-19|1996-02-23|NONE|RAIL| ironic asympto| +30988|165215|2725|1|33|42246.93|0.09|0.00|R|F|1994-10-10|1994-12-10|1994-10-25|NONE|RAIL|old accounts. deposits nag after the regul| +30989|724425|11968|1|49|71020.11|0.05|0.02|R|F|1993-12-14|1993-11-20|1993-12-29|NONE|RAIL|ounts impress blithely furiously final excu| +30989|398360|35882|2|39|56875.65|0.07|0.04|A|F|1993-12-01|1993-11-22|1993-12-22|COLLECT COD|RAIL|onic deposits wake above the depos| +30989|220808|45817|3|30|51863.70|0.08|0.05|A|F|1994-01-09|1993-12-08|1994-01-26|DELIVER IN PERSON|SHIP| deposits sleep slyly final a| +30989|113888|1395|4|26|49448.88|0.03|0.00|A|F|1993-12-07|1993-11-14|1993-12-09|DELIVER IN PERSON|AIR|ily above the fluffily unusual req| +30989|112740|25243|5|26|45571.24|0.07|0.00|A|F|1993-12-27|1993-11-25|1994-01-11|NONE|MAIL|y ironic excuses sublate after the| +30989|806198|6199|6|21|23187.15|0.02|0.02|A|F|1993-10-26|1993-11-23|1993-11-24|COLLECT COD|FOB|g after the regular, even instructions. fu| +30989|761215|11216|7|13|16590.34|0.05|0.03|R|F|1994-01-16|1993-11-19|1994-01-28|NONE|FOB|ependencies haggle blithely blithely ev| +30990|727315|27316|1|4|5369.12|0.08|0.00|A|F|1992-12-28|1993-01-24|1992-12-29|DELIVER IN PERSON|REG AIR|ructions. s| +30991|971370|8928|1|6|8647.98|0.00|0.01|A|F|1995-03-10|1995-03-14|1995-03-31|NONE|MAIL|pending packages. blithely regul| +30991|803497|16014|2|11|15404.95|0.01|0.08|R|F|1995-01-25|1995-02-11|1995-02-08|TAKE BACK RETURN|REG AIR|usly at the bli| +30991|370730|33238|3|44|79231.68|0.02|0.00|R|F|1995-03-18|1995-01-29|1995-04-15|NONE|TRUCK|ggle ruthlessly deposits. | +30991|858950|21468|4|48|91627.68|0.00|0.08|A|F|1995-02-02|1995-01-29|1995-03-02|DELIVER IN PERSON|RAIL|ross the fin| +30991|371519|21520|5|22|34991.00|0.05|0.03|A|F|1995-02-20|1995-03-07|1995-03-18|COLLECT COD|REG AIR|thely care| +31016|722580|10123|1|28|44871.40|0.03|0.00|N|O|1998-06-14|1998-08-19|1998-06-16|TAKE BACK RETURN|TRUCK|sual dependencies. careful| +31016|390339|2847|2|46|65748.72|0.01|0.08|N|O|1998-08-13|1998-07-17|1998-08-27|COLLECT COD|FOB|ronic foxes.| +31016|424949|24950|3|46|86200.32|0.00|0.00|N|O|1998-07-30|1998-07-23|1998-07-31|TAKE BACK RETURN|TRUCK|ts play silent accounts. instructi| +31016|116589|41594|4|21|33717.18|0.00|0.01|N|O|1998-06-23|1998-08-27|1998-07-05|DELIVER IN PERSON|SHIP|dinos cajole slyly furiously final| +31017|287186|24702|1|35|41060.95|0.00|0.01|N|O|1997-07-07|1997-06-04|1997-07-23|DELIVER IN PERSON|REG AIR| special packages us| +31017|724000|36515|2|48|49150.56|0.02|0.06|N|O|1997-08-17|1997-07-24|1997-08-20|COLLECT COD|REG AIR|iously. fluffily silent idea| +31017|253581|16087|3|40|61382.80|0.09|0.06|N|O|1997-06-30|1997-07-19|1997-07-02|TAKE BACK RETURN|REG AIR|ackages believe quickly dogg| +31017|927097|39616|4|47|52830.35|0.05|0.03|N|O|1997-08-15|1997-07-10|1997-09-03|NONE|AIR|e furiously accordin| +31018|511465|23976|1|2|2952.88|0.08|0.01|N|O|1997-09-02|1997-11-17|1997-09-03|TAKE BACK RETURN|TRUCK|ess requests. ca| +31018|179682|17192|2|21|36995.28|0.06|0.05|N|O|1997-12-06|1997-11-01|1997-12-26|DELIVER IN PERSON|REG AIR|arefully ironic asymptotes sleep | +31018|912638|193|3|16|26409.44|0.05|0.06|N|O|1997-09-04|1997-10-03|1997-10-02|DELIVER IN PERSON|REG AIR|ly special requests. carefully regular a| +31018|697282|34822|4|13|16630.25|0.03|0.07|N|O|1997-08-29|1997-10-27|1997-09-25|NONE|FOB|sleep carefully. bl| +31018|211638|36647|5|9|13946.58|0.10|0.07|N|O|1997-10-22|1997-10-31|1997-11-05|DELIVER IN PERSON|REG AIR|ut the carefully b| +31019|214180|14181|1|6|6565.02|0.09|0.07|A|F|1993-06-04|1993-07-26|1993-07-02|TAKE BACK RETURN|RAIL|dly. regular foxes wake caref| +31019|711376|48919|2|23|31908.82|0.02|0.01|R|F|1993-05-18|1993-06-08|1993-06-04|COLLECT COD|TRUCK| platelets slee| +31019|88787|38788|3|13|23085.14|0.07|0.05|A|F|1993-05-11|1993-06-04|1993-06-02|TAKE BACK RETURN|FOB|ly unusual pinto beans. blithely final | +31019|237533|37534|4|16|23528.32|0.10|0.07|R|F|1993-06-23|1993-06-02|1993-07-12|NONE|TRUCK|ronic asymptotes cajole carefully abo| +31019|203583|28592|5|10|14865.70|0.04|0.05|R|F|1993-08-21|1993-07-01|1993-08-29|NONE|MAIL|ut the even, ironic foxes. f| +31019|612647|12648|6|32|49907.52|0.04|0.04|A|F|1993-05-30|1993-06-03|1993-06-04|TAKE BACK RETURN|FOB|en escapades across| +31019|744270|6785|7|23|30227.52|0.08|0.01|R|F|1993-06-09|1993-07-20|1993-07-04|NONE|RAIL|are. slyly reg| +31020|935991|23546|1|15|30404.25|0.10|0.00|N|O|1996-05-12|1996-05-16|1996-05-29|NONE|SHIP| across the quiet| +31020|184152|9159|2|30|37084.50|0.10|0.02|N|O|1996-07-15|1996-04-29|1996-08-06|TAKE BACK RETURN|FOB| carefully.| +31020|26726|26727|3|44|72719.68|0.03|0.04|N|O|1996-05-05|1996-05-02|1996-05-18|NONE|AIR|al packages. fluffily even sentime| +31021|237311|37312|1|26|32455.80|0.06|0.08|R|F|1994-06-18|1994-07-18|1994-07-11|DELIVER IN PERSON|MAIL| are slyly acco| +31021|473395|23396|2|30|41051.10|0.00|0.04|A|F|1994-08-13|1994-07-24|1994-08-18|TAKE BACK RETURN|SHIP|usly regular instructions integrat| +31021|335137|47644|3|12|14065.44|0.10|0.01|A|F|1994-07-23|1994-07-18|1994-08-06|TAKE BACK RETURN|TRUCK|use-- pending | +31021|646816|21841|4|12|21153.36|0.09|0.08|A|F|1994-07-05|1994-08-21|1994-07-08|NONE|RAIL|oxes cajole along the carefully bold| +31022|858051|45603|1|10|10090.10|0.05|0.07|R|F|1994-09-26|1994-09-04|1994-10-13|DELIVER IN PERSON|FOB|after the platelets affix fluffily regul| +31022|262126|24632|2|37|40260.07|0.00|0.06|A|F|1994-08-24|1994-08-19|1994-08-31|NONE|MAIL|ironic instructions| +31023|956641|31680|1|38|64508.80|0.00|0.02|R|F|1992-10-19|1992-10-19|1992-11-12|DELIVER IN PERSON|SHIP|nic theodolites haggle alon| +31023|249842|37355|2|40|71673.20|0.07|0.06|R|F|1992-11-01|1992-10-26|1992-12-01|NONE|RAIL|are slyly spec| +31023|82244|7247|3|48|58859.52|0.10|0.07|R|F|1992-10-22|1992-11-07|1992-11-05|TAKE BACK RETURN|REG AIR|ular reque| +31023|260116|10117|4|18|19369.80|0.06|0.03|R|F|1992-11-29|1992-10-19|1992-12-06|COLLECT COD|FOB| express Tiresias haggle carefully| +31023|763936|38967|5|17|33998.30|0.05|0.08|R|F|1992-10-07|1992-10-04|1992-10-27|COLLECT COD|AIR|riously abou| +31023|461495|11496|6|4|5825.88|0.01|0.04|A|F|1992-08-28|1992-10-31|1992-09-18|COLLECT COD|AIR|deposits sleep silent | +31048|874815|49850|1|45|80539.65|0.06|0.06|N|O|1995-06-26|1995-04-30|1995-07-03|COLLECT COD|FOB|bold packages wake | +31048|7522|45023|2|19|27160.88|0.03|0.05|R|F|1995-05-02|1995-06-01|1995-05-04|NONE|AIR|fully bold dependencies. furiously| +31049|712143|24658|1|24|27722.64|0.03|0.08|N|O|1998-06-08|1998-04-30|1998-06-14|DELIVER IN PERSON|FOB|out the ironic excuses. bli| +31049|982472|44992|2|24|37306.32|0.06|0.01|N|O|1998-07-09|1998-06-11|1998-08-01|NONE|FOB|enticing packages. r| +31049|402752|2753|3|40|66189.20|0.09|0.03|N|O|1998-07-03|1998-05-03|1998-07-04|COLLECT COD|REG AIR|un after the regular deposits. slyl| +31049|36924|11925|4|43|80019.56|0.03|0.02|N|O|1998-06-21|1998-05-11|1998-07-04|DELIVER IN PERSON|TRUCK| to the ironic| +31049|569536|7070|5|45|72247.95|0.07|0.00|N|O|1998-07-06|1998-06-13|1998-08-02|TAKE BACK RETURN|FOB|osits: slyly r| +31049|186588|36589|6|5|8372.90|0.03|0.07|N|O|1998-05-24|1998-05-24|1998-06-20|DELIVER IN PERSON|MAIL|. quickly even requests | +31050|636893|36894|1|30|54895.80|0.08|0.03|A|F|1994-10-20|1994-08-29|1994-10-26|NONE|TRUCK|the quickl| +31050|245231|32744|2|17|19995.74|0.06|0.03|R|F|1994-11-04|1994-08-25|1994-12-03|TAKE BACK RETURN|RAIL|. quickly unusual requests aroun| +31050|580777|30778|3|27|50159.25|0.04|0.08|A|F|1994-11-14|1994-10-12|1994-12-06|NONE|FOB|sly careful requests. ironic| +31050|106947|31952|4|19|37124.86|0.02|0.08|A|F|1994-08-17|1994-09-13|1994-08-18|COLLECT COD|TRUCK|nd the final deposits| +31051|884609|47127|1|5|7967.80|0.07|0.08|N|O|1996-08-03|1996-08-09|1996-08-31|NONE|FOB|leep slyly across the caref| +31051|614639|2176|2|25|38840.00|0.09|0.03|N|O|1996-06-12|1996-08-06|1996-07-03|DELIVER IN PERSON|REG AIR|y final packages nag slyly packages. d| +31051|235229|47734|3|34|39583.14|0.05|0.04|N|O|1996-07-26|1996-07-01|1996-08-17|TAKE BACK RETURN|REG AIR|es along the ironic deposi| +31051|489751|27279|4|10|17407.30|0.02|0.04|N|O|1996-06-07|1996-08-27|1996-07-03|TAKE BACK RETURN|TRUCK| affix blithely-- final, quiet| +31051|236733|24246|5|28|46752.16|0.03|0.07|N|O|1996-09-11|1996-08-16|1996-09-26|NONE|TRUCK|y instructions cajole. carefully bold | +31051|769159|31675|6|44|54037.28|0.03|0.02|N|O|1996-09-08|1996-08-23|1996-09-27|NONE|REG AIR|ep slyly along th| +31051|238569|38570|7|4|6030.20|0.02|0.04|N|O|1996-07-25|1996-07-31|1996-08-19|COLLECT COD|RAIL| slyly regular packages| +31052|628008|28009|1|50|46798.50|0.02|0.03|N|F|1995-05-29|1995-07-15|1995-06-27|NONE|MAIL|ate ironic packages. fu| +31052|924186|49223|2|49|59296.86|0.00|0.08|N|O|1995-07-31|1995-06-29|1995-08-26|COLLECT COD|RAIL|s ideas about the blith| +31052|787867|37868|3|7|13683.81|0.06|0.08|N|O|1995-09-06|1995-06-25|1995-09-29|TAKE BACK RETURN|REG AIR|n courts. carefully ruthless excuses a| +31052|664801|39828|4|48|84756.96|0.05|0.06|R|F|1995-06-09|1995-08-14|1995-06-14|DELIVER IN PERSON|REG AIR|quickly special requests. fl| +31052|309578|47097|5|35|55564.60|0.02|0.06|N|O|1995-08-14|1995-07-10|1995-08-22|COLLECT COD|REG AIR|ns hang car| +31052|66228|41231|6|25|29855.50|0.02|0.08|N|O|1995-07-05|1995-07-26|1995-07-13|TAKE BACK RETURN|MAIL|t the blithely final deposit| +31053|160903|23407|1|11|21602.90|0.07|0.03|R|F|1995-05-28|1995-05-30|1995-06-09|COLLECT COD|REG AIR|thely furiou| +31053|294677|32193|2|40|66866.40|0.03|0.04|N|O|1995-07-07|1995-06-18|1995-08-02|NONE|AIR|ong the pend| +31053|625174|199|3|28|30775.92|0.00|0.03|N|O|1995-07-03|1995-06-09|1995-07-08|NONE|REG AIR|t. furiously regular dolphin| +31053|291580|4086|4|11|17287.27|0.06|0.08|N|O|1995-08-08|1995-06-21|1995-08-10|NONE|REG AIR|efully even requests wake furi| +31054|621674|21675|1|23|36699.72|0.02|0.07|N|O|1998-04-10|1998-06-09|1998-04-28|TAKE BACK RETURN|MAIL|quickly about the carefully ironic deposit| +31054|467227|29737|2|5|5971.00|0.01|0.03|N|O|1998-05-10|1998-06-04|1998-06-04|COLLECT COD|REG AIR|e slyly around the quickly even excuse| +31054|676082|26083|3|30|31741.50|0.02|0.05|N|O|1998-05-22|1998-05-23|1998-06-04|DELIVER IN PERSON|REG AIR| sly courts x-ray regularly even, regula| +31054|899679|24714|4|39|65466.57|0.07|0.01|N|O|1998-04-20|1998-07-03|1998-05-10|TAKE BACK RETURN|RAIL|ke furiously express foxes. slyly even asy| +31054|898160|23195|5|50|57906.00|0.07|0.03|N|O|1998-05-19|1998-06-07|1998-06-02|TAKE BACK RETURN|MAIL| cajole. carefu| +31054|363785|13786|6|13|24034.01|0.00|0.07|N|O|1998-05-10|1998-06-13|1998-05-27|NONE|FOB|ccounts use regular p| +31054|123887|23888|7|3|5732.64|0.09|0.04|N|O|1998-05-17|1998-06-29|1998-06-05|DELIVER IN PERSON|RAIL|s. fluffily pen| +31055|154851|17355|1|16|30493.60|0.06|0.00|A|F|1994-11-28|1994-12-27|1994-12-22|COLLECT COD|FOB|thely-- fluffily ironic platelets are caref| +31055|565236|40259|2|13|16915.73|0.02|0.05|R|F|1994-11-17|1995-01-11|1994-11-18|DELIVER IN PERSON|SHIP|as wake abo| +31055|914317|26836|3|2|2662.54|0.06|0.05|A|F|1994-12-17|1994-11-22|1995-01-01|DELIVER IN PERSON|SHIP|nt furiously. pendin| +31055|921330|8885|4|23|31079.67|0.05|0.06|A|F|1994-11-20|1994-12-25|1994-12-07|NONE|SHIP|d pinto bean| +31055|780111|30112|5|35|41687.80|0.02|0.05|R|F|1994-10-26|1994-11-28|1994-11-21|NONE|TRUCK|tect furiously after the iro| +31055|323939|11458|6|29|56924.68|0.08|0.08|R|F|1994-11-03|1994-11-26|1994-11-12|TAKE BACK RETURN|REG AIR|haggle slyly regular dependencies| +31055|435885|35886|7|39|71013.54|0.06|0.06|A|F|1994-12-25|1995-01-20|1994-12-28|DELIVER IN PERSON|RAIL|latelets are across the carefully| +31080|916046|3601|1|7|7434.00|0.10|0.06|A|F|1994-01-04|1993-11-16|1994-01-13|TAKE BACK RETURN|RAIL|ly regular requests| +31080|970011|45050|2|47|50805.59|0.08|0.03|A|F|1993-12-17|1993-11-30|1993-12-18|NONE|AIR|y express excus| +31080|959171|21691|3|45|55355.85|0.07|0.04|R|F|1993-11-06|1994-01-01|1993-11-17|TAKE BACK RETURN|REG AIR|tes serve quickly expr| +31080|773222|10768|4|36|46626.84|0.08|0.07|R|F|1993-11-29|1993-12-04|1993-12-21|TAKE BACK RETURN|FOB|ly carefully ironic courts. deposits wake a| +31080|528838|3859|5|20|37336.20|0.02|0.08|A|F|1994-01-20|1993-12-25|1994-01-26|DELIVER IN PERSON|MAIL|nal accounts boost above the carefully bold| +31081|732586|7615|1|41|66360.55|0.04|0.05|N|O|1998-07-02|1998-07-11|1998-08-01|NONE|SHIP|e slyly final ideas sno| +31081|568668|6202|2|34|59045.76|0.06|0.04|N|O|1998-06-22|1998-07-15|1998-07-08|TAKE BACK RETURN|TRUCK|express pearls haggle slyly silen| +31081|599190|36724|3|31|39964.27|0.01|0.02|N|O|1998-06-16|1998-07-17|1998-07-01|DELIVER IN PERSON|FOB|press, unusual accounts a| +31082|896653|21688|1|3|4948.83|0.05|0.06|A|F|1993-06-24|1993-07-25|1993-07-05|DELIVER IN PERSON|AIR| the closely regular theodolites. quie| +31082|30344|17845|2|6|7646.04|0.10|0.06|A|F|1993-06-15|1993-07-23|1993-07-10|DELIVER IN PERSON|RAIL|ts. silent| +31083|462370|37389|1|18|23982.30|0.02|0.06|A|F|1994-11-26|1995-01-13|1994-12-22|NONE|TRUCK|furiously. pinto beans ha| +31083|40508|15509|2|13|18830.50|0.10|0.04|R|F|1995-02-05|1995-01-23|1995-02-06|NONE|TRUCK|quests cajole dogged requests. expre| +31083|803755|3756|3|18|29856.78|0.09|0.05|R|F|1994-12-30|1995-02-06|1995-01-18|COLLECT COD|REG AIR|ounts-- slyly final instructions sl| +31083|701616|1617|4|27|43674.66|0.09|0.07|R|F|1995-01-19|1995-02-14|1995-01-24|TAKE BACK RETURN|MAIL| furiously silent accounts. carefu| +31084|888820|26372|1|16|28940.48|0.00|0.01|N|O|1996-10-08|1996-11-18|1996-11-03|NONE|SHIP|s integrate. ironic, i| +31084|386477|36478|2|32|50030.72|0.10|0.06|N|O|1996-12-17|1996-09-29|1997-01-15|DELIVER IN PERSON|SHIP|arefully. furiously express instr| +31085|954925|42483|1|40|79195.20|0.02|0.05|N|O|1997-12-26|1998-01-04|1998-01-03|DELIVER IN PERSON|REG AIR|e furiously special packages. pe| +31085|411729|11730|2|46|75472.20|0.01|0.02|N|O|1998-02-07|1997-11-30|1998-02-17|NONE|AIR|ons use up the carefully| +31085|927374|2411|3|25|35033.25|0.09|0.04|N|O|1997-11-26|1997-11-14|1997-12-03|NONE|FOB|final requests. unusual dependencies sleep| +31085|372027|47042|4|37|40663.37|0.09|0.04|N|O|1997-12-27|1997-12-24|1997-12-28|NONE|REG AIR|ly regular excuses. sl| +31086|836799|36800|1|10|17357.50|0.05|0.08|R|F|1993-08-13|1993-09-01|1993-09-10|COLLECT COD|FOB|onic accounts are| +31086|67283|29785|2|37|46260.36|0.08|0.06|R|F|1993-10-20|1993-08-29|1993-10-25|TAKE BACK RETURN|MAIL|unts affix carefully blithely spec| +31086|810854|23371|3|9|15883.29|0.09|0.07|R|F|1993-09-15|1993-08-26|1993-09-24|NONE|TRUCK|y final accounts: | +31086|15250|2751|4|34|39618.50|0.07|0.05|R|F|1993-10-07|1993-09-21|1993-10-09|NONE|FOB|luffily. carefully ironic platelets slee| +31087|577315|39827|1|28|38984.12|0.01|0.01|N|O|1995-09-05|1995-11-01|1995-10-04|NONE|SHIP|ously unusual d| +31112|619827|7364|1|47|82099.13|0.06|0.06|R|F|1995-05-01|1995-04-20|1995-05-19|DELIVER IN PERSON|SHIP|jole carefully after t| +31112|421405|8930|2|24|31833.12|0.00|0.04|N|O|1995-06-20|1995-05-16|1995-07-09|TAKE BACK RETURN|FOB|ously ironic requests are above the specia| +31113|489225|26753|1|40|48568.00|0.02|0.05|R|F|1993-04-03|1993-05-11|1993-04-04|NONE|AIR|ts doubt fluffily regular waters. fu| +31113|392474|29996|2|15|23496.90|0.09|0.02|R|F|1993-04-02|1993-05-11|1993-04-17|DELIVER IN PERSON|RAIL|equests. even, regular | +31114|472847|47866|1|47|85531.54|0.02|0.06|N|O|1997-03-30|1997-05-17|1997-04-01|DELIVER IN PERSON|REG AIR|s use blithely | +31114|126498|14005|2|29|44210.21|0.04|0.01|N|O|1997-05-03|1997-05-20|1997-05-28|COLLECT COD|FOB|wake slyly bold foxes! ironic pinto bea| +31114|49144|36645|3|38|41539.32|0.06|0.08|N|O|1997-07-09|1997-06-09|1997-08-02|NONE|TRUCK|s platelets boost furiously alon| +31115|766930|29446|1|50|99845.00|0.06|0.06|A|F|1995-05-21|1995-05-27|1995-06-01|DELIVER IN PERSON|MAIL| ironic foxes sublat| +31115|777504|2535|2|17|26884.99|0.02|0.01|A|F|1995-04-27|1995-05-03|1995-05-13|COLLECT COD|SHIP|furiously bold foxes besides the| +31115|505843|43374|3|8|14790.56|0.01|0.02|N|F|1995-05-29|1995-05-27|1995-06-18|COLLECT COD|RAIL|cial instru| +31115|692998|5512|4|4|7963.84|0.07|0.05|R|F|1995-04-18|1995-06-18|1995-05-01|COLLECT COD|RAIL| requests a| +31115|217062|29567|5|35|34266.75|0.00|0.06|R|F|1995-04-05|1995-06-03|1995-04-10|NONE|SHIP|ly ironic ideas. regular req| +31115|160351|22855|6|2|2822.70|0.07|0.08|R|F|1995-04-07|1995-06-17|1995-04-16|NONE|REG AIR|. furiously eve| +31116|116869|4376|1|37|69776.82|0.03|0.06|R|F|1993-02-04|1993-02-24|1993-02-13|TAKE BACK RETURN|REG AIR|ously silent accounts| +31116|213602|26107|2|5|7577.95|0.03|0.02|R|F|1992-12-21|1993-02-08|1993-01-03|DELIVER IN PERSON|TRUCK|lithely above the carefully unusual foxes. | +31116|7735|45236|3|10|16427.30|0.09|0.05|R|F|1993-01-24|1993-03-01|1993-02-08|NONE|SHIP|egrate furiously blithely silent packages.| +31116|989091|14130|4|15|17700.75|0.08|0.05|R|F|1993-01-17|1993-03-03|1993-01-26|DELIVER IN PERSON|MAIL|fily thin requests c| +31117|912713|25232|1|42|72478.14|0.07|0.08|N|O|1998-09-20|1998-09-11|1998-09-29|COLLECT COD|REG AIR|eas. ironic instructions abou| +31117|962908|12909|2|40|78834.40|0.09|0.04|N|O|1998-08-19|1998-08-25|1998-08-31|COLLECT COD|RAIL|ial, ironic accounts. even request| +31117|581972|31973|3|9|18485.55|0.01|0.07|N|O|1998-10-20|1998-09-07|1998-10-31|COLLECT COD|AIR|ong the pinto| +31117|188503|1007|4|26|41379.00|0.08|0.06|N|O|1998-11-02|1998-08-23|1998-11-06|NONE|TRUCK|s haggle. ideas cajo| +31117|161517|24021|5|5|7892.55|0.05|0.01|N|O|1998-10-22|1998-09-16|1998-11-09|NONE|MAIL|even packages ma| +31117|602443|39980|6|8|10763.28|0.03|0.00|N|O|1998-08-04|1998-08-11|1998-08-29|NONE|FOB| bold orbits. braids snooze slowly. accou| +31118|814809|14810|1|25|43094.00|0.05|0.08|N|O|1998-07-26|1998-06-10|1998-08-16|TAKE BACK RETURN|REG AIR| packages cajole furiously slyly p| +31118|487492|25020|2|18|26630.46|0.01|0.06|N|O|1998-08-09|1998-06-24|1998-08-29|DELIVER IN PERSON|MAIL|ep carefull| +31118|263260|25766|3|17|20795.25|0.00|0.00|N|O|1998-08-10|1998-06-07|1998-08-17|TAKE BACK RETURN|REG AIR|quickly. daring packages | +31118|604928|17441|4|35|64151.15|0.07|0.01|N|O|1998-07-05|1998-07-15|1998-07-26|COLLECT COD|TRUCK| unusual deposits haggle again| +31118|15727|3228|5|12|19712.64|0.06|0.02|N|O|1998-08-11|1998-07-14|1998-08-16|NONE|FOB|ole furiously accounts. quickly pending th| +31118|315767|3286|6|41|73092.75|0.00|0.05|N|O|1998-05-20|1998-06-03|1998-06-10|DELIVER IN PERSON|RAIL|lites. ironic foxe| +31119|786435|11466|1|38|57813.20|0.07|0.00|A|F|1992-06-09|1992-05-04|1992-07-02|COLLECT COD|SHIP| above the carefully special requests. qui| +31119|610330|47867|2|43|53332.90|0.05|0.01|R|F|1992-06-29|1992-06-24|1992-07-16|COLLECT COD|TRUCK|ntegrate carefully even | +31119|813115|664|3|34|34954.38|0.09|0.08|A|F|1992-06-18|1992-05-07|1992-07-07|COLLECT COD|MAIL|the unusual, sile| +31144|244525|7030|1|9|13225.59|0.02|0.04|N|O|1998-01-14|1997-11-09|1998-02-01|TAKE BACK RETURN|MAIL|sly even deposits. regular, re| +31144|722450|9993|2|34|50062.28|0.01|0.04|N|O|1997-09-29|1997-11-19|1997-10-27|NONE|TRUCK|slyly regular foxes d| +31144|207260|44773|3|34|39686.50|0.02|0.00|N|O|1997-12-08|1997-10-24|1997-12-16|DELIVER IN PERSON|RAIL|lyly regular court| +31145|741222|3737|1|48|60633.12|0.06|0.02|R|F|1994-01-30|1994-04-04|1994-02-25|NONE|MAIL| foxes. blithely iro| +31145|708984|46527|2|15|29894.25|0.09|0.06|R|F|1994-03-17|1994-03-27|1994-03-27|TAKE BACK RETURN|AIR| theodolites are blithely special asymptote| +31145|878741|41259|3|9|15477.30|0.07|0.00|R|F|1994-04-16|1994-03-30|1994-05-06|NONE|FOB|fully even p| +31145|993433|30991|4|20|30527.80|0.01|0.08|A|F|1994-03-17|1994-03-04|1994-03-20|NONE|REG AIR| furiously unusual ideas. p| +31145|625396|12933|5|40|52854.40|0.06|0.03|A|F|1994-04-02|1994-03-09|1994-04-26|TAKE BACK RETURN|FOB|ickly ironic requests nag. ironic, regu| +31145|17605|30106|6|30|45678.00|0.03|0.08|R|F|1994-04-02|1994-02-21|1994-04-25|NONE|SHIP|nst the silent, final accounts. carefull| +31146|92046|17049|1|47|48787.88|0.04|0.04|N|O|1996-01-18|1995-12-19|1996-01-23|TAKE BACK RETURN|AIR| packages. courts hagg| +31146|1526|14027|2|16|22840.32|0.06|0.05|N|O|1995-11-22|1995-11-08|1995-11-23|COLLECT COD|TRUCK|iously final requests after the ironic pint| +31147|565842|28354|1|22|41972.04|0.08|0.07|R|F|1993-06-03|1993-05-07|1993-06-30|COLLECT COD|TRUCK|al accounts a| +31147|93951|31455|2|13|25284.35|0.06|0.07|A|F|1993-06-19|1993-05-05|1993-07-13|DELIVER IN PERSON|FOB|r accounts. close, ironic theodoli| +31147|17763|30264|3|41|68911.16|0.06|0.04|A|F|1993-06-03|1993-04-20|1993-06-29|DELIVER IN PERSON|SHIP|oxes. enticingly ironic asymptotes wake.| +31147|533005|20536|4|6|6227.88|0.09|0.07|R|F|1993-06-04|1993-04-24|1993-06-17|DELIVER IN PERSON|AIR| players detect fluffily. ironic | +31147|212130|49643|5|15|15631.80|0.03|0.00|A|F|1993-05-21|1993-04-20|1993-05-27|DELIVER IN PERSON|FOB| beans. slyly regular deposits | +31147|257312|7313|6|8|10154.40|0.06|0.06|A|F|1993-04-19|1993-04-08|1993-05-15|COLLECT COD|FOB| fluffily regular ideas. fluffily | +31148|149607|24612|1|31|51354.60|0.03|0.04|R|F|1992-07-27|1992-07-10|1992-08-10|NONE|REG AIR|en, unusual ac| +31148|434566|9583|2|45|67524.30|0.06|0.05|R|F|1992-07-03|1992-07-08|1992-07-10|COLLECT COD|RAIL| slyly regular accounts. regular | +31148|739551|27094|3|12|19086.24|0.07|0.00|A|F|1992-08-29|1992-07-04|1992-09-08|NONE|AIR|its against the packages sleep furiously ag| +31149|959678|47236|1|39|67767.57|0.04|0.02|A|F|1993-03-26|1993-02-17|1993-04-23|DELIVER IN PERSON|RAIL|al deposits cajole furiously| +31150|357546|45068|1|1|1603.53|0.05|0.02|R|F|1993-08-09|1993-08-24|1993-09-04|TAKE BACK RETURN|RAIL|ent pinto beans use furi| +31150|263765|38776|2|2|3457.50|0.09|0.04|A|F|1993-10-11|1993-07-29|1993-11-08|DELIVER IN PERSON|RAIL|s cajole. ironic packag| +31151|972066|9624|1|19|21622.38|0.03|0.02|N|O|1996-02-13|1995-12-26|1996-03-12|NONE|FOB|deposits are quickly alongs| +31151|511221|11222|2|40|49288.00|0.06|0.03|N|O|1996-01-25|1995-12-31|1996-02-17|DELIVER IN PERSON|AIR|y regular acco| +31151|88761|38762|3|47|82238.72|0.02|0.05|N|O|1996-01-01|1996-02-20|1996-01-06|COLLECT COD|SHIP|oost furiously.| +31151|795398|7914|4|19|28373.84|0.00|0.02|N|O|1996-01-31|1996-01-15|1996-02-12|NONE|SHIP|rave packages haggle regular courts. fluff| +31151|239318|14327|5|31|38976.30|0.06|0.03|N|O|1996-02-03|1996-02-01|1996-02-13|NONE|RAIL|aggle accordi| +31151|201180|26189|6|41|44327.97|0.06|0.00|N|O|1996-02-25|1995-12-28|1996-02-27|COLLECT COD|TRUCK|ost quickly aga| +31151|222367|34872|7|24|30944.40|0.04|0.05|N|O|1995-12-03|1996-02-14|1995-12-27|DELIVER IN PERSON|REG AIR|e. blithely even courts boost blithe| +31176|316447|3966|1|26|38049.18|0.00|0.00|R|F|1993-01-10|1993-03-19|1993-02-08|DELIVER IN PERSON|TRUCK|ke. blithely regular requests| +31176|522838|47859|2|4|7443.24|0.10|0.02|A|F|1993-04-26|1993-01-30|1993-05-14|COLLECT COD|TRUCK|ideas. fluffily regular instructions do| +31176|335222|10235|3|46|57831.66|0.05|0.05|R|F|1993-02-26|1993-02-01|1993-03-17|COLLECT COD|RAIL|k deposits haggle slyly slyly bold| +31177|848204|48205|1|28|32260.48|0.03|0.07|A|F|1995-03-03|1995-02-23|1995-03-17|TAKE BACK RETURN|TRUCK|ter the final packages | +31177|748097|10612|2|18|20611.08|0.03|0.02|A|F|1995-03-05|1995-02-07|1995-03-12|TAKE BACK RETURN|REG AIR|s. packages cajole o| +31177|252897|27908|3|15|27748.20|0.10|0.01|R|F|1995-01-06|1995-03-12|1995-02-01|DELIVER IN PERSON|RAIL| even deposits | +31177|438667|1176|4|25|40141.00|0.02|0.00|A|F|1995-01-15|1995-02-13|1995-01-18|DELIVER IN PERSON|MAIL|l frets. furiously bold deposits | +31178|557693|32716|1|43|75278.81|0.00|0.01|N|O|1996-05-24|1996-06-16|1996-05-31|COLLECT COD|MAIL|platelets. final, even attainments play re| +31178|143602|6105|2|18|29620.80|0.02|0.04|N|O|1996-06-25|1996-05-20|1996-07-19|DELIVER IN PERSON|REG AIR|es. final, final requests a| +31178|508917|33938|3|19|36591.91|0.10|0.04|N|O|1996-06-19|1996-04-20|1996-06-26|COLLECT COD|RAIL|s. express pinto beans haggl| +31179|169208|6718|1|32|40870.40|0.03|0.08|N|O|1995-10-29|1995-10-17|1995-10-30|DELIVER IN PERSON|AIR|he slyly ironic ideas. s| +31179|877268|2303|2|9|11206.98|0.06|0.05|N|O|1995-08-31|1995-11-15|1995-09-25|NONE|AIR|int at the final theodolite| +31179|238306|811|3|14|17420.06|0.01|0.03|N|O|1995-10-01|1995-09-22|1995-10-22|TAKE BACK RETURN|TRUCK|elieve blithely blithely ironic a| +31179|208450|33459|4|19|25810.36|0.01|0.05|N|O|1995-10-31|1995-10-03|1995-11-23|NONE|RAIL|yly across the silent packages. f| +31179|403684|3685|5|40|63506.40|0.10|0.06|N|O|1995-12-08|1995-11-17|1995-12-21|DELIVER IN PERSON|AIR|posits sleep furiously ab| +31179|706818|31847|6|13|23722.14|0.02|0.05|N|O|1995-11-28|1995-10-13|1995-12-25|DELIVER IN PERSON|TRUCK|ic package| +31180|117844|17845|1|32|59578.88|0.00|0.02|N|O|1995-11-22|1996-01-28|1995-12-02|TAKE BACK RETURN|REG AIR|decoys are th| +31180|594749|7261|2|28|51624.16|0.04|0.03|N|O|1996-02-20|1995-12-29|1996-02-24|COLLECT COD|RAIL|ickly blithely regular accounts. unusual i| +31180|937501|25056|3|45|69230.70|0.08|0.04|N|O|1996-01-18|1996-01-14|1996-02-07|COLLECT COD|REG AIR|uriously final pinto beans should x-ray | +31181|634618|34619|1|30|46577.40|0.07|0.01|A|F|1995-01-31|1995-03-06|1995-02-13|COLLECT COD|SHIP|ously regular decoys lose quickly | +31181|14708|27209|2|23|37322.10|0.10|0.02|A|F|1995-03-01|1995-03-12|1995-03-13|TAKE BACK RETURN|FOB|uriously silent foxes. b| +31181|189432|1936|3|25|38035.75|0.01|0.01|A|F|1995-05-05|1995-03-09|1995-05-18|DELIVER IN PERSON|TRUCK|kages subla| +31181|782903|45419|4|21|41703.27|0.02|0.07|R|F|1995-02-06|1995-04-13|1995-02-21|COLLECT COD|RAIL|regular frets are sl| +31181|238350|855|5|4|5153.36|0.08|0.03|A|F|1995-03-18|1995-02-16|1995-03-29|TAKE BACK RETURN|REG AIR|pending accounts | +31181|947744|35299|6|12|21500.40|0.05|0.06|R|F|1995-04-05|1995-03-29|1995-04-23|TAKE BACK RETURN|RAIL|y bold sauternes. furiously fin| +31181|726227|38742|7|29|36342.51|0.03|0.08|R|F|1995-04-28|1995-04-09|1995-05-02|COLLECT COD|REG AIR|fully special requests nag furiously| +31182|696763|34303|1|42|73908.66|0.03|0.02|R|F|1995-03-29|1995-05-12|1995-04-07|TAKE BACK RETURN|FOB|y ironic r| +31182|485416|47926|2|48|67266.72|0.09|0.06|A|F|1995-06-02|1995-04-26|1995-06-14|NONE|MAIL| unusual packages. ruthle| +31183|572480|34992|1|30|46573.80|0.04|0.05|N|O|1996-01-14|1996-01-01|1996-01-17|TAKE BACK RETURN|MAIL|uses. slyly ironic dep| +31183|658163|45703|2|31|34755.03|0.05|0.02|N|O|1996-01-03|1996-02-05|1996-02-01|COLLECT COD|SHIP|efully regular p| +31183|743956|43957|3|48|95996.16|0.08|0.06|N|O|1995-12-21|1996-02-25|1996-01-12|NONE|FOB|e furiously final somas do are sl| +31183|663232|772|4|27|32270.40|0.02|0.04|N|O|1996-01-08|1996-01-25|1996-01-09|DELIVER IN PERSON|TRUCK|ernes sleep| +31183|940137|15174|5|25|29427.25|0.09|0.06|N|O|1996-01-15|1996-02-28|1996-01-28|COLLECT COD|RAIL| even packages. ironic packag| +31208|60863|35866|1|23|41948.78|0.03|0.06|N|O|1998-03-07|1998-03-23|1998-04-01|DELIVER IN PERSON|MAIL|t the blithel| +31208|912293|37330|2|20|26105.00|0.07|0.02|N|O|1998-03-17|1998-05-05|1998-04-04|NONE|AIR|cial instructions cajole slyly caref| +31208|905964|31001|3|34|66977.28|0.06|0.08|N|O|1998-03-16|1998-04-26|1998-04-03|NONE|AIR|s cajole carefull| +31208|536856|36857|4|22|41642.26|0.00|0.03|N|O|1998-04-26|1998-03-22|1998-05-23|NONE|AIR|arefully ruthless packages| +31208|936744|49263|5|43|76570.10|0.08|0.06|N|O|1998-06-14|1998-04-30|1998-06-27|NONE|SHIP|ts cajole blithely final packa| +31208|841363|28912|6|33|43042.56|0.10|0.03|N|O|1998-03-02|1998-04-28|1998-03-21|NONE|MAIL|nent excuses. slyly iro| +31208|777676|27677|7|35|61377.40|0.03|0.07|N|O|1998-06-14|1998-05-06|1998-06-24|DELIVER IN PERSON|AIR| pearls. carefully iro| +31209|387473|12488|1|34|53055.64|0.06|0.06|R|F|1993-07-07|1993-07-27|1993-07-15|TAKE BACK RETURN|SHIP|y. deposits | +31209|248904|23913|2|43|79674.27|0.06|0.00|A|F|1993-08-13|1993-07-08|1993-09-06|COLLECT COD|TRUCK|te. carefully final| +31209|318668|43681|3|48|80959.20|0.03|0.00|R|F|1993-07-25|1993-07-11|1993-08-19|TAKE BACK RETURN|REG AIR|eposits wake slyly unusual reque| +31209|845674|8191|4|31|50208.53|0.06|0.02|A|F|1993-08-30|1993-07-10|1993-09-15|DELIVER IN PERSON|REG AIR| about the eve| +31209|236973|36974|5|45|85948.20|0.04|0.08|R|F|1993-07-28|1993-08-04|1993-08-18|DELIVER IN PERSON|AIR|rding to the special| +31209|794479|6995|6|21|33042.24|0.05|0.06|R|F|1993-07-16|1993-08-08|1993-07-23|DELIVER IN PERSON|FOB|ross the blithely expr| +31210|602162|27187|1|35|37244.55|0.10|0.07|R|F|1995-01-31|1994-11-21|1995-02-10|TAKE BACK RETURN|FOB|eposits cajole | +31210|529238|29239|2|29|36749.09|0.07|0.02|A|F|1995-01-08|1994-12-03|1995-01-28|COLLECT COD|FOB|fluffily i| +31210|895550|8068|3|23|35546.73|0.02|0.01|R|F|1995-01-02|1994-11-19|1995-01-22|NONE|FOB|ronic ideas wake against the blithely f| +31210|505187|5188|4|43|51262.88|0.01|0.05|R|F|1994-11-04|1994-12-06|1994-11-08|NONE|SHIP|ges are furiously according to the| +31210|672946|10486|5|12|23026.92|0.06|0.01|A|F|1995-01-04|1994-12-14|1995-01-30|NONE|MAIL|yly final ideas. quietly| +31211|888687|1205|1|14|23458.96|0.05|0.05|N|O|1996-06-16|1996-05-12|1996-06-27|TAKE BACK RETURN|FOB|d. furiously pen| +31211|151188|26195|2|10|12391.80|0.05|0.01|N|O|1996-06-09|1996-06-18|1996-07-06|DELIVER IN PERSON|MAIL|ly final dependencies. blithely regular| +31211|8987|8988|3|16|30335.68|0.09|0.03|N|O|1996-07-21|1996-05-10|1996-08-10|TAKE BACK RETURN|RAIL|onic deposits according to| +31211|36115|23616|4|31|32584.41|0.10|0.06|N|O|1996-04-12|1996-05-30|1996-05-02|TAKE BACK RETURN|RAIL|ructions a| +31212|542088|29619|1|30|33901.80|0.06|0.07|R|F|1994-09-03|1994-09-18|1994-09-08|TAKE BACK RETURN|MAIL|lar warthogs. pack| +31212|859945|9946|2|46|87625.40|0.06|0.04|A|F|1994-10-09|1994-09-06|1994-10-24|NONE|RAIL| regular, final accoun| +31212|80903|30904|3|46|86659.40|0.00|0.07|R|F|1994-09-01|1994-10-10|1994-09-02|NONE|RAIL| quickly pending sheav| +31212|734018|9047|4|5|5259.90|0.09|0.07|R|F|1994-08-22|1994-09-03|1994-09-18|DELIVER IN PERSON|MAIL|counts. pains use carefully regular de| +31212|624431|11968|5|28|37951.20|0.10|0.06|R|F|1994-09-28|1994-08-24|1994-10-15|TAKE BACK RETURN|AIR|ades. requests wake. bl| +31212|799388|11904|6|12|17848.20|0.02|0.03|A|F|1994-09-03|1994-09-14|1994-09-13|DELIVER IN PERSON|RAIL|ely agains| +31213|696311|33851|1|34|44447.52|0.10|0.08|N|O|1997-11-12|1997-10-18|1997-11-16|TAKE BACK RETURN|TRUCK|g packages: slyly express platelets det| +31214|408150|45675|1|11|11639.43|0.02|0.00|A|F|1994-09-30|1994-11-04|1994-10-12|TAKE BACK RETURN|SHIP|ess requests. final, regular acco| +31214|763366|25882|2|29|41450.57|0.10|0.01|R|F|1994-11-14|1994-10-30|1994-11-25|COLLECT COD|FOB|ges. even, ironic pinto beans cajole th| +31215|825005|12554|1|45|41848.20|0.04|0.03|R|F|1995-04-01|1995-03-15|1995-04-16|COLLECT COD|MAIL|g theodolite| +31215|845095|20128|2|39|40561.95|0.04|0.04|A|F|1995-02-27|1995-03-11|1995-03-05|DELIVER IN PERSON|SHIP|kly final requests. slyly bo| +31240|142168|17173|1|45|54457.20|0.10|0.01|N|O|1995-12-01|1995-11-22|1995-12-16|DELIVER IN PERSON|TRUCK|ld, quiet packages after the car| +31240|415149|15150|2|48|51077.76|0.00|0.05|N|O|1995-12-17|1995-11-04|1995-12-26|COLLECT COD|RAIL|onic, regular requests. ir| +31240|406453|31470|3|46|62533.78|0.03|0.05|N|O|1995-12-24|1995-10-17|1996-01-14|TAKE BACK RETURN|TRUCK| fluffily close foxes. final,| +31240|244882|7387|4|39|71247.93|0.09|0.07|N|O|1995-12-29|1995-10-09|1996-01-03|COLLECT COD|MAIL|uests sleep blithely against the ideas| +31240|730894|5923|5|33|63520.38|0.05|0.01|N|O|1995-10-17|1995-10-20|1995-11-10|NONE|REG AIR| packages wake regular accounts: | +31240|134897|47400|6|16|30910.24|0.04|0.05|N|O|1995-10-03|1995-11-26|1995-10-30|NONE|REG AIR|as cajole fluffily| +31241|285601|48107|1|34|53944.06|0.02|0.08|R|F|1995-03-20|1995-05-05|1995-03-25|NONE|MAIL|al accounts. sly| +31242|73322|23323|1|14|18134.48|0.04|0.05|N|O|1998-04-14|1998-04-14|1998-04-29|TAKE BACK RETURN|AIR|e carefully bold theodol| +31243|995359|20398|1|12|17451.72|0.01|0.01|R|F|1992-03-05|1992-04-06|1992-03-08|NONE|AIR|lyly regular accounts haggle.| +31243|983840|33841|2|39|75028.20|0.04|0.05|R|F|1992-03-11|1992-04-04|1992-03-16|DELIVER IN PERSON|RAIL|ructions. pending pinto beans detect | +31244|764977|14978|1|41|83719.54|0.06|0.08|R|F|1995-03-07|1995-01-24|1995-03-20|DELIVER IN PERSON|FOB|egular platele| +31244|964582|27102|2|43|70801.22|0.06|0.01|A|F|1995-01-13|1995-03-07|1995-02-03|COLLECT COD|FOB|above the bl| +31244|728358|15901|3|17|23567.44|0.01|0.05|R|F|1995-03-07|1995-02-25|1995-03-12|DELIVER IN PERSON|FOB|althily. deposits around| +31244|507505|20016|4|24|36299.52|0.05|0.03|R|F|1995-04-16|1995-02-25|1995-04-28|COLLECT COD|REG AIR| ideas integrate daringly| +31244|628809|16346|5|14|24328.78|0.00|0.00|A|F|1995-01-12|1995-03-20|1995-02-02|NONE|MAIL| pinto beans. ironically unusual pl| +31244|380337|42845|6|44|62362.08|0.10|0.08|R|F|1995-01-15|1995-02-25|1995-02-14|NONE|REG AIR|osits affix among the even foxes. quickl| +31244|310844|48363|7|11|20403.13|0.08|0.06|R|F|1994-12-22|1995-03-14|1995-01-02|TAKE BACK RETURN|TRUCK|ly special foxes thrash. ironi| +31245|341438|41439|1|19|28108.98|0.06|0.07|N|O|1996-05-30|1996-06-19|1996-06-20|DELIVER IN PERSON|RAIL| final dependencies above| +31245|534148|9169|2|39|46102.68|0.07|0.02|N|O|1996-05-30|1996-06-22|1996-06-02|DELIVER IN PERSON|SHIP|y regular depths boost about th| +31245|424364|49381|3|42|54110.28|0.01|0.04|N|O|1996-07-23|1996-06-12|1996-07-27|COLLECT COD|RAIL|carefully unusual platelets haggle | +31245|271948|46959|4|20|38398.60|0.05|0.00|N|O|1996-08-15|1996-06-10|1996-08-31|COLLECT COD|MAIL|le blithely? furiously ironic pinto be| +31245|616123|41148|5|22|22859.98|0.00|0.03|N|O|1996-08-22|1996-06-26|1996-09-19|DELIVER IN PERSON|MAIL|believe furio| +31245|162654|25158|6|7|12016.55|0.06|0.03|N|O|1996-06-18|1996-07-02|1996-06-23|NONE|SHIP|ily regular requests use above the pending| +31246|501823|1824|1|18|32846.40|0.06|0.08|N|O|1995-10-08|1995-10-01|1995-10-29|TAKE BACK RETURN|RAIL|efully. carefully ironic packages| +31246|123742|48747|2|42|74161.08|0.01|0.08|N|O|1995-08-17|1995-10-02|1995-09-04|DELIVER IN PERSON|MAIL|accounts-- slyly express instruc| +31246|724692|24693|3|25|42916.50|0.06|0.04|N|O|1995-10-31|1995-09-14|1995-11-10|TAKE BACK RETURN|RAIL|ily unusual courts accor| +31246|898178|35730|4|38|44692.94|0.02|0.04|N|O|1995-10-09|1995-09-14|1995-10-13|TAKE BACK RETURN|MAIL|urious instructions. blithely special pint| +31246|661328|36355|5|27|34810.83|0.09|0.04|N|O|1995-08-21|1995-08-12|1995-09-18|TAKE BACK RETURN|REG AIR|gular theodolites play blithely. i| +31246|927516|15071|6|1|1543.47|0.04|0.01|N|O|1995-10-04|1995-08-31|1995-10-30|DELIVER IN PERSON|FOB| packages about the| +31246|757990|20506|7|41|83966.36|0.00|0.07|N|O|1995-10-05|1995-09-29|1995-10-10|TAKE BACK RETURN|SHIP|quests. bli| +31247|525952|25953|1|31|61315.83|0.07|0.04|N|O|1998-06-27|1998-08-06|1998-06-29|NONE|FOB|eposits use silently above the final instr| +31272|951993|27032|1|18|36809.10|0.04|0.00|N|O|1997-02-07|1997-03-18|1997-03-08|COLLECT COD|SHIP|es along the f| +31273|238312|13321|1|3|3750.90|0.08|0.05|A|F|1993-09-03|1993-08-26|1993-09-07|DELIVER IN PERSON|RAIL|ndencies run blithely against t| +31273|295401|7907|2|47|65630.33|0.06|0.00|R|F|1993-07-01|1993-08-14|1993-07-05|TAKE BACK RETURN|AIR| the quickly final pa| +31274|603187|28212|1|47|51237.05|0.10|0.02|N|O|1998-09-16|1998-09-25|1998-10-02|TAKE BACK RETURN|FOB| carefully even dependen| +31274|763428|13429|2|36|53690.04|0.07|0.06|N|O|1998-08-21|1998-09-12|1998-08-25|DELIVER IN PERSON|MAIL|press pinto b| +31274|918073|30592|3|38|41459.14|0.07|0.05|N|O|1998-11-04|1998-10-07|1998-11-16|TAKE BACK RETURN|MAIL|. carefully even requests nag expres| +31274|50217|25220|4|17|19842.57|0.09|0.00|N|O|1998-11-02|1998-09-11|1998-11-05|DELIVER IN PERSON|SHIP|he carefully enticing pin| +31274|993000|30558|5|2|2185.92|0.07|0.02|N|O|1998-11-19|1998-10-04|1998-12-18|NONE|RAIL|ly furiously final deposi| +31274|350512|25527|6|16|25000.00|0.05|0.02|N|O|1998-11-29|1998-10-26|1998-12-15|COLLECT COD|MAIL|ly blithely special n| +31275|285580|48086|1|33|51663.81|0.09|0.07|N|O|1998-05-04|1998-03-03|1998-05-10|NONE|MAIL|s after the requests are ca| +31275|741668|4183|2|12|20515.56|0.05|0.08|N|O|1998-03-23|1998-04-02|1998-04-15|TAKE BACK RETURN|FOB|foxes cajole | +31275|207498|32507|3|19|26704.12|0.02|0.02|N|O|1998-01-20|1998-03-02|1998-02-12|DELIVER IN PERSON|SHIP|oost carefully! evenly expre| +31275|417401|29910|4|19|25049.22|0.07|0.00|N|O|1998-04-12|1998-03-13|1998-05-04|TAKE BACK RETURN|TRUCK| the furiously bold accoun| +31275|253076|28087|5|22|22639.32|0.01|0.02|N|O|1998-04-07|1998-02-21|1998-04-08|COLLECT COD|TRUCK|ong the blithely regular acc| +31275|444643|32168|6|44|69855.28|0.04|0.02|N|O|1998-03-11|1998-02-27|1998-03-13|NONE|SHIP|s are quickly slyly | +31276|645801|20826|1|9|15720.93|0.10|0.07|A|F|1995-03-05|1995-03-02|1995-03-13|TAKE BACK RETURN|SHIP|ar excuses cajole | +31277|783627|21173|1|49|83818.91|0.05|0.03|N|O|1998-01-30|1998-01-09|1998-02-06|DELIVER IN PERSON|RAIL|blithely even theodolites are. slyly regul| +31277|416087|3612|2|27|27082.62|0.06|0.07|N|O|1997-12-18|1998-01-13|1997-12-23|NONE|FOB| unusual dependencies are abov| +31277|167641|30145|3|36|61511.04|0.06|0.01|N|O|1998-02-16|1998-01-01|1998-03-09|NONE|RAIL| ironic requests need to ar| +31277|540299|27830|4|36|48213.72|0.01|0.00|N|O|1997-12-11|1998-01-13|1998-01-04|NONE|RAIL|ingly quickly| +31278|775702|38218|1|30|53330.10|0.04|0.08|N|O|1997-07-06|1997-07-21|1997-07-08|DELIVER IN PERSON|FOB|ons. carefully bold instruct| +31278|219109|31614|2|23|23646.07|0.02|0.08|N|O|1997-06-25|1997-06-23|1997-07-10|DELIVER IN PERSON|AIR|nto beans. pending pearls sleep alo| +31278|551233|1234|3|5|6421.05|0.01|0.04|N|O|1997-06-11|1997-06-26|1997-07-02|DELIVER IN PERSON|FOB|courts. carefully silent account| +31279|452348|39876|1|16|20805.12|0.10|0.08|N|O|1998-09-27|1998-08-10|1998-10-08|NONE|TRUCK|ess packag| +31279|602727|40264|2|44|71706.36|0.10|0.05|N|O|1998-07-09|1998-09-15|1998-07-24|DELIVER IN PERSON|MAIL|eas. blithely final instr| +31279|20300|20301|3|1|1220.30|0.05|0.00|N|O|1998-08-08|1998-09-06|1998-08-18|DELIVER IN PERSON|MAIL|usly regular multipliers are careful| +31279|165845|40852|4|31|59236.04|0.08|0.05|N|O|1998-08-24|1998-08-20|1998-09-23|COLLECT COD|AIR|final pinto | +31279|346229|8736|5|49|62485.29|0.07|0.07|N|O|1998-09-16|1998-08-05|1998-10-13|COLLECT COD|FOB| regular courts wake carefully. furiously f| +31304|703281|28310|1|42|53938.50|0.06|0.08|A|F|1995-05-14|1995-06-07|1995-05-24|DELIVER IN PERSON|AIR|c accounts haggle! ironic deposits wake a| +31304|35904|35905|2|30|55197.00|0.07|0.01|N|O|1995-08-02|1995-07-03|1995-08-31|TAKE BACK RETURN|AIR|side the even, ironic packa| +31304|429928|17453|3|23|42731.70|0.03|0.04|N|F|1995-06-14|1995-06-07|1995-07-01|DELIVER IN PERSON|REG AIR|oxes. requests nag along the packages? furi| +31304|798234|48235|4|11|14654.20|0.01|0.05|R|F|1995-05-06|1995-07-05|1995-05-22|TAKE BACK RETURN|FOB|ajole slyly pend| +31304|915102|27621|5|21|23458.26|0.06|0.02|N|O|1995-08-24|1995-06-08|1995-09-10|DELIVER IN PERSON|SHIP|, regular request| +31304|103683|28688|6|14|23613.52|0.00|0.07|N|O|1995-06-20|1995-06-30|1995-06-24|TAKE BACK RETURN|FOB| above the regular, bold reques| +31305|903984|29021|1|11|21867.34|0.00|0.04|A|F|1992-11-25|1993-01-08|1992-11-27|DELIVER IN PERSON|MAIL|g excuses could sleep slyly accordin| +31305|244241|19250|2|43|50964.89|0.05|0.05|R|F|1992-10-25|1993-01-07|1992-11-10|NONE|RAIL| closely brave deposits. express, final the| +31305|945148|20185|3|12|14317.20|0.07|0.01|R|F|1992-12-10|1992-12-20|1992-12-14|TAKE BACK RETURN|AIR|pending dolphins. ironic package| +31305|94461|6963|4|48|69862.08|0.02|0.01|A|F|1993-02-04|1992-12-03|1993-02-19|NONE|MAIL| warhorses a| +31305|605536|5537|5|18|25947.00|0.05|0.01|R|F|1992-11-12|1993-01-10|1992-11-16|NONE|REG AIR|sts are ironic excuses. blithely regular | +31305|237944|449|6|3|5645.79|0.08|0.06|R|F|1992-11-05|1992-12-04|1992-11-19|TAKE BACK RETURN|TRUCK|ost. slyly re| +31306|84619|22123|1|25|40090.25|0.02|0.07|N|O|1997-04-25|1997-04-30|1997-05-03|NONE|FOB|theodolites| +31306|189994|15001|2|26|54183.74|0.08|0.08|N|O|1997-05-07|1997-04-26|1997-05-23|COLLECT COD|MAIL| furiously special dependencie| +31306|218295|30800|3|5|6066.40|0.07|0.01|N|O|1997-05-20|1997-04-24|1997-06-07|DELIVER IN PERSON|SHIP|d foxes sleep blithely s| +31306|880358|30359|4|38|50855.78|0.07|0.04|N|O|1997-04-22|1997-04-18|1997-04-26|TAKE BACK RETURN|REG AIR|efully bold ideas: express packages ab| +31306|168129|18130|5|32|38307.84|0.08|0.05|N|O|1997-04-15|1997-05-24|1997-04-23|DELIVER IN PERSON|MAIL|foxes lose quickly above| +31306|738773|13802|6|25|45293.50|0.05|0.07|N|O|1997-06-22|1997-04-30|1997-06-24|NONE|AIR|es nag fluffily carefully bold foxes. i| +31307|490861|3371|1|31|57407.04|0.10|0.06|A|F|1994-10-30|1994-12-29|1994-11-11|NONE|FOB|ar packages. close, regular theodo| +31307|895486|8004|2|16|23703.04|0.09|0.04|A|F|1994-10-30|1994-12-31|1994-11-11|NONE|FOB|gside of the carefully eve| +31307|431417|43926|3|26|35058.14|0.08|0.07|A|F|1995-01-29|1994-12-26|1995-02-28|TAKE BACK RETURN|REG AIR|ly pending re| +31308|169783|44790|1|49|90786.22|0.04|0.00|N|O|1996-11-14|1996-09-03|1996-11-26|COLLECT COD|AIR|slyly regular| +31308|534687|34688|2|36|61979.76|0.07|0.04|N|O|1996-09-24|1996-08-20|1996-10-08|TAKE BACK RETURN|FOB|hely special| +31308|475826|13354|3|33|59459.40|0.02|0.01|N|O|1996-10-12|1996-08-21|1996-10-14|NONE|SHIP|s are care| +31308|196220|8724|4|4|5264.88|0.09|0.00|N|O|1996-09-20|1996-10-03|1996-09-22|DELIVER IN PERSON|RAIL|e ironic requests. slyly re| +31308|861822|49374|5|8|14270.24|0.03|0.03|N|O|1996-09-10|1996-09-10|1996-09-21|DELIVER IN PERSON|MAIL|arefully even packag| +31308|634328|21865|6|4|5049.16|0.01|0.00|N|O|1996-09-14|1996-08-22|1996-10-12|COLLECT COD|MAIL|ts; carefully express ideas s| +31309|245423|45424|1|9|12315.69|0.01|0.08|R|F|1993-05-02|1993-06-08|1993-06-01|TAKE BACK RETURN|RAIL|oxes. regular accounts are| +31309|821911|9460|2|8|14662.96|0.07|0.00|A|F|1993-05-12|1993-04-29|1993-05-17|NONE|REG AIR|ar request| +31309|851151|38703|3|11|12123.21|0.01|0.01|R|F|1993-06-06|1993-05-13|1993-06-28|NONE|SHIP|le blithely at the bl| +31309|287605|37606|4|22|35036.98|0.09|0.02|R|F|1993-05-03|1993-04-19|1993-05-26|DELIVER IN PERSON|AIR|ccounts haggle qui| +31309|775042|25043|5|36|40212.36|0.01|0.07|R|F|1993-06-08|1993-04-17|1993-06-22|NONE|REG AIR|blithely special grouc| +31310|201552|14057|1|42|61048.68|0.00|0.08|N|O|1997-04-12|1997-04-01|1997-04-20|TAKE BACK RETURN|REG AIR|n somas. even packages along the c| +31310|480426|17954|2|19|26721.60|0.10|0.03|N|O|1997-06-01|1997-04-03|1997-06-16|TAKE BACK RETURN|SHIP|deas eat alongside of the car| +31310|510300|35321|3|7|9171.96|0.02|0.00|N|O|1997-03-23|1997-03-11|1997-03-31|NONE|MAIL|ffily against the packages| +31310|605729|18242|4|41|67022.29|0.00|0.03|N|O|1997-05-17|1997-03-21|1997-05-26|DELIVER IN PERSON|SHIP|bove the regular requ| +31311|272319|34825|1|48|61982.40|0.08|0.05|N|O|1997-05-27|1997-05-24|1997-05-31|NONE|SHIP|ronic asymptotes haggle furiously. quickly| +31311|854788|17306|2|18|31369.32|0.10|0.05|N|O|1997-04-03|1997-05-23|1997-04-22|DELIVER IN PERSON|SHIP|ounts are carefully about the slyly | +31311|405867|30884|3|45|79777.80|0.01|0.03|N|O|1997-05-22|1997-04-29|1997-06-15|NONE|SHIP|he slyly p| +31336|761279|48825|1|50|67012.00|0.03|0.05|A|F|1995-04-02|1995-02-18|1995-04-18|DELIVER IN PERSON|FOB|c packages haggle careful| +31336|808544|21061|2|15|21787.50|0.08|0.01|R|F|1995-02-27|1995-02-28|1995-03-25|TAKE BACK RETURN|AIR|y regular accounts | +31336|188686|38687|3|28|49691.04|0.02|0.06|R|F|1995-04-05|1995-02-28|1995-04-25|DELIVER IN PERSON|FOB|y. enticing,| +31337|927084|39603|1|40|44441.60|0.02|0.04|N|O|1997-09-01|1997-08-19|1997-09-23|TAKE BACK RETURN|SHIP|y regular packages sleep caref| +31337|489735|39736|2|27|46567.17|0.08|0.02|N|O|1997-10-07|1997-09-15|1997-10-13|TAKE BACK RETURN|AIR|theodolites must wake blithely fluffily f| +31338|156099|18603|1|6|6930.54|0.07|0.01|R|F|1994-01-28|1994-02-06|1994-02-06|COLLECT COD|RAIL|ly according to the enticingly iro| +31338|554384|29407|2|12|17260.32|0.01|0.03|R|F|1994-04-30|1994-03-13|1994-05-01|NONE|RAIL|tions are along the slyly ironic instruct| +31338|531449|6470|3|18|26647.56|0.08|0.05|R|F|1994-01-05|1994-02-18|1994-01-10|NONE|FOB|beans. ironic ideas are blithely blithe| +31338|54658|4659|4|36|58055.40|0.04|0.03|A|F|1994-03-15|1994-02-17|1994-04-10|TAKE BACK RETURN|RAIL|. even, pending | +31338|636410|36411|5|45|60587.10|0.08|0.02|R|F|1994-03-10|1994-02-27|1994-04-05|TAKE BACK RETURN|AIR|nos. slyly fi| +31338|139593|2096|6|37|60405.83|0.02|0.00|R|F|1994-03-04|1994-02-09|1994-03-05|TAKE BACK RETURN|RAIL|ual ideas. carefully regular deposit| +31338|129739|17246|7|15|26530.95|0.05|0.06|R|F|1994-03-31|1994-03-02|1994-04-02|DELIVER IN PERSON|MAIL|ronic, regular excuses. furiousl| +31339|520040|32551|1|9|9540.18|0.09|0.00|A|F|1993-12-25|1993-12-28|1994-01-08|DELIVER IN PERSON|REG AIR|into beans. fluffily bold requests| +31339|310944|35957|2|17|33233.81|0.06|0.05|R|F|1994-01-22|1993-11-29|1994-02-14|DELIVER IN PERSON|SHIP|ing instructions. | +31339|25164|165|3|40|43566.40|0.09|0.03|R|F|1994-01-01|1993-12-27|1994-01-19|TAKE BACK RETURN|SHIP|ally final dep| +31340|947204|9723|1|46|57553.36|0.01|0.00|N|O|1998-04-02|1998-05-05|1998-04-24|COLLECT COD|AIR|e carefully between the fluffily re| +31340|654612|29639|2|23|36031.34|0.06|0.00|N|O|1998-04-22|1998-05-14|1998-05-05|DELIVER IN PERSON|FOB|sly special requests! slyly bold noto| +31340|62686|25188|3|40|65947.20|0.06|0.06|N|O|1998-05-01|1998-05-04|1998-05-12|COLLECT COD|AIR| carefully final packages are quick| +31340|556012|6013|4|31|33107.69|0.00|0.05|N|O|1998-05-15|1998-05-04|1998-05-31|COLLECT COD|SHIP|deposits. carefully specia| +31340|880861|30862|5|34|62621.88|0.04|0.01|N|O|1998-04-04|1998-05-22|1998-05-04|NONE|MAIL| even ideas wake carefully| +31340|617618|30131|6|18|27640.44|0.01|0.06|N|O|1998-06-29|1998-06-01|1998-06-30|NONE|TRUCK|the carefully regular requests.| +31340|302533|15040|7|23|35316.96|0.00|0.07|N|O|1998-07-11|1998-05-13|1998-07-23|COLLECT COD|RAIL|nic dolphins nag thinly before the re| +31341|657252|32279|1|38|45950.36|0.04|0.01|N|O|1997-09-12|1997-10-26|1997-09-28|COLLECT COD|REG AIR|cross the quickly| +31342|31411|43912|1|21|28190.61|0.09|0.03|R|F|1992-11-13|1993-01-27|1992-11-28|DELIVER IN PERSON|SHIP| express instructi| +31342|915678|15679|2|17|28791.71|0.06|0.00|A|F|1992-11-24|1993-01-18|1992-12-21|TAKE BACK RETURN|REG AIR| slyly even asymptotes. caref| +31342|799466|11982|3|28|43832.04|0.04|0.04|R|F|1993-02-18|1992-12-12|1993-02-27|COLLECT COD|RAIL|lent requests| +31342|620865|45890|4|29|51789.07|0.03|0.03|A|F|1993-03-10|1993-01-21|1993-04-02|NONE|AIR|quests. ideas promise. fluffily eve| +31343|90995|40996|1|41|81425.59|0.03|0.02|N|O|1996-10-08|1996-10-29|1996-10-14|TAKE BACK RETURN|RAIL|y. pending, even requests nod fu| +31343|345824|20837|2|2|3739.62|0.05|0.03|N|O|1996-10-15|1996-10-19|1996-11-12|COLLECT COD|AIR|e regular | +31343|259948|22454|3|22|41974.46|0.07|0.04|N|O|1996-10-07|1996-11-30|1996-10-28|DELIVER IN PERSON|FOB|lites among the furiously regular reque| +31343|933936|46455|4|16|31518.24|0.10|0.08|N|O|1996-11-28|1996-10-18|1996-12-25|NONE|AIR|ses. final patterns affi| +31343|660378|22892|5|36|48180.24|0.07|0.04|N|O|1996-09-05|1996-11-24|1996-09-30|TAKE BACK RETURN|TRUCK|ular packages. furiou| +31343|957215|19735|6|15|19082.55|0.02|0.01|N|O|1996-11-29|1996-10-04|1996-12-24|DELIVER IN PERSON|REG AIR|ular requests. ironical| +31368|440008|27533|1|32|30335.36|0.05|0.00|N|O|1997-01-09|1996-11-24|1997-01-14|NONE|MAIL|express, even packages. furious| +31368|207549|45062|2|2|2913.06|0.08|0.01|N|O|1996-12-26|1996-11-23|1996-12-28|TAKE BACK RETURN|FOB|tealthy deposits. pending hockey| +31368|273426|48437|3|36|50378.76|0.03|0.02|N|O|1997-01-07|1996-12-05|1997-01-25|COLLECT COD|FOB|y regular instructions nag special req| +31368|461730|24240|4|1|1691.71|0.02|0.02|N|O|1997-01-06|1996-12-13|1997-02-02|COLLECT COD|RAIL|r platelets affix wat| +31368|287968|37969|5|39|76282.05|0.04|0.05|N|O|1996-11-16|1996-12-03|1996-12-10|NONE|MAIL|ly bold requests cajole | +31368|878154|3189|6|26|29434.86|0.09|0.08|N|O|1997-01-10|1996-12-03|1997-01-24|COLLECT COD|MAIL|sts nag. ironic requests boost furious| +31369|61165|36168|1|32|36037.12|0.06|0.07|A|F|1995-05-04|1995-03-18|1995-05-28|NONE|SHIP|en, careful pinto beans. courts n| +31370|912749|12750|1|8|14093.60|0.01|0.05|R|F|1994-09-30|1994-08-30|1994-10-01|NONE|RAIL|ly above the furiously eve| +31370|561375|23887|2|6|8618.10|0.05|0.02|A|F|1994-08-09|1994-07-16|1994-08-24|DELIVER IN PERSON|REG AIR|ake quickly among the iron| +31370|13555|26056|3|44|64616.20|0.10|0.04|R|F|1994-09-18|1994-08-21|1994-09-19|DELIVER IN PERSON|AIR|against the ironic requests use blithely un| +31370|816281|28798|4|6|7183.44|0.01|0.07|R|F|1994-09-05|1994-08-14|1994-10-01|NONE|SHIP|ag into the carefully| +31370|219805|32310|5|43|74165.97|0.02|0.03|A|F|1994-06-12|1994-07-11|1994-06-14|TAKE BACK RETURN|TRUCK|low requests use ironi| +31370|247554|47555|6|3|4504.62|0.00|0.06|R|F|1994-08-06|1994-08-30|1994-08-17|NONE|TRUCK|s dazzle slyly afte| +31371|222522|22523|1|45|65002.95|0.05|0.02|N|O|1998-08-02|1998-08-19|1998-08-19|TAKE BACK RETURN|TRUCK|olites sleep furiously unusu| +31371|914661|39698|2|36|60322.32|0.06|0.04|N|O|1998-09-09|1998-09-25|1998-10-05|COLLECT COD|FOB|sts across the blithely unusual theodolit| +31371|700822|13337|3|9|16405.11|0.08|0.06|N|O|1998-09-12|1998-09-19|1998-10-07|NONE|REG AIR|refully express| +31371|701295|1296|4|38|49257.88|0.03|0.01|N|O|1998-07-03|1998-08-24|1998-07-06|DELIVER IN PERSON|FOB|ll have to sleep carefully. enticingly | +31371|652589|27616|5|4|6166.20|0.01|0.08|N|O|1998-09-09|1998-09-11|1998-09-27|TAKE BACK RETURN|SHIP|, even deposits a| +31372|446583|46584|1|18|27532.08|0.02|0.04|A|F|1994-02-04|1993-12-05|1994-03-01|TAKE BACK RETURN|REG AIR|luffily express foxes| +31373|562020|24532|1|25|27050.00|0.02|0.00|N|O|1996-05-06|1996-05-27|1996-05-31|COLLECT COD|TRUCK|y regular courts cajole bravely according| +31373|858219|45771|2|23|27074.91|0.08|0.00|N|O|1996-08-10|1996-06-13|1996-08-14|TAKE BACK RETURN|FOB|ously special accounts. car| +31373|73186|23187|3|25|28979.50|0.04|0.08|N|O|1996-06-05|1996-07-03|1996-06-17|NONE|TRUCK|al, even asymptotes nag. quickl| +31373|23741|11242|4|47|78242.78|0.06|0.06|N|O|1996-07-06|1996-06-05|1996-07-09|COLLECT COD|TRUCK|eposits about t| +31373|13405|38406|5|34|44825.60|0.08|0.08|N|O|1996-05-13|1996-06-01|1996-06-01|DELIVER IN PERSON|TRUCK|to beans. excuses are quickly ironic pack| +31373|281226|31227|6|3|3621.63|0.01|0.03|N|O|1996-08-11|1996-06-05|1996-08-14|DELIVER IN PERSON|MAIL| requests. carefully special theo| +31374|616431|41456|1|14|18863.60|0.05|0.06|A|F|1992-11-02|1992-11-05|1992-11-06|COLLECT COD|AIR|aggle. carefully express dugouts sleep | +31374|347803|35322|2|45|83285.55|0.04|0.01|R|F|1992-11-04|1992-10-27|1992-11-05|COLLECT COD|SHIP|, bold asymptotes nag-- ideas about the| +31375|801596|14113|1|36|53911.80|0.02|0.07|N|O|1998-09-02|1998-07-26|1998-09-30|COLLECT COD|TRUCK|y even requests. slyly brave depende| +31375|416330|3855|2|11|13709.41|0.00|0.01|N|O|1998-08-07|1998-07-29|1998-09-03|COLLECT COD|TRUCK| carefully i| +31375|250674|38190|3|36|58487.76|0.04|0.08|N|O|1998-08-04|1998-08-31|1998-08-15|NONE|REG AIR|uests cajole doggedly furi| +31400|221128|33633|1|2|2098.22|0.10|0.04|N|O|1996-05-18|1996-06-13|1996-06-04|DELIVER IN PERSON|REG AIR|ual theodolites about | +31400|489477|1987|2|34|49859.30|0.10|0.05|N|O|1996-07-06|1996-06-29|1996-07-11|NONE|FOB| ironic pint| +31401|735345|22888|1|33|45550.23|0.10|0.00|N|O|1996-03-23|1996-05-15|1996-04-07|TAKE BACK RETURN|RAIL|ully even foxes use quickly ironic foxes| +31401|941933|41934|2|30|59246.70|0.03|0.02|N|O|1996-03-23|1996-06-09|1996-03-24|COLLECT COD|REG AIR|er the furiousl| +31401|62226|37229|3|10|11882.20|0.02|0.00|N|O|1996-05-13|1996-05-31|1996-06-10|COLLECT COD|SHIP|o the even requests. bl| +31401|816108|28625|4|10|10240.60|0.00|0.00|N|O|1996-06-19|1996-06-15|1996-07-03|DELIVER IN PERSON|SHIP|pearls are fluf| +31401|322201|22202|5|50|61159.50|0.06|0.05|N|O|1996-03-30|1996-05-11|1996-04-14|NONE|FOB|lithely ironic Tires| +31402|432279|7296|1|14|16957.50|0.08|0.05|A|F|1992-09-29|1992-07-26|1992-10-07|NONE|AIR|e. slyly even deposits haggle sly| +31402|303751|28764|2|46|80718.04|0.05|0.08|R|F|1992-06-08|1992-08-27|1992-06-20|TAKE BACK RETURN|SHIP|es. carefully enticing depende| +31403|171422|33926|1|26|38828.92|0.02|0.03|R|F|1992-01-26|1992-03-21|1992-01-30|NONE|MAIL|fully express theodolites c| +31403|74710|12214|2|35|58964.85|0.06|0.01|R|F|1992-02-14|1992-03-27|1992-03-03|NONE|TRUCK|uffily among the blithely even a| +31403|641616|29153|3|4|6230.32|0.07|0.02|A|F|1992-02-09|1992-03-07|1992-02-22|TAKE BACK RETURN|MAIL|pinto beans. carefully e| +31404|416350|28859|1|19|24060.27|0.02|0.04|N|O|1995-07-09|1995-05-08|1995-08-03|NONE|RAIL|lithely express accounts aft| +31404|581346|43858|2|10|14273.20|0.06|0.04|A|F|1995-04-13|1995-05-25|1995-05-09|NONE|FOB|equests. regular pl| +31404|670536|20537|3|9|13558.50|0.08|0.02|N|O|1995-06-19|1995-05-20|1995-07-08|DELIVER IN PERSON|AIR|out the carefully regular request| +31404|686502|49016|4|4|5953.88|0.10|0.06|A|F|1995-06-02|1995-06-02|1995-06-03|COLLECT COD|TRUCK|ve, bold f| +31404|31471|43972|5|9|12622.23|0.09|0.02|N|F|1995-06-07|1995-04-28|1995-06-19|DELIVER IN PERSON|RAIL| use furiously slyly regular foxes. furio| +31404|924881|24882|6|8|15246.72|0.08|0.03|R|F|1995-05-18|1995-04-21|1995-05-31|TAKE BACK RETURN|REG AIR|ular ideas. packages| +31404|465710|28220|7|47|78757.43|0.06|0.05|A|F|1995-04-15|1995-04-26|1995-05-12|DELIVER IN PERSON|SHIP|sts haggle blithely. regular, even do| +31405|171557|21558|1|8|13028.40|0.05|0.05|A|F|1994-06-18|1994-06-05|1994-07-12|TAKE BACK RETURN|RAIL|ss instructions wake final, unusual i| +31405|344905|44906|2|18|35098.02|0.06|0.03|A|F|1994-06-28|1994-05-24|1994-07-13|NONE|SHIP| deposits sleep fluffily regular acc| +31406|648175|10688|1|39|43802.46|0.01|0.00|R|F|1994-01-05|1994-01-23|1994-01-15|DELIVER IN PERSON|TRUCK|ronic depos| +31406|869768|7320|2|8|13901.76|0.04|0.01|A|F|1994-02-13|1994-02-22|1994-02-25|TAKE BACK RETURN|TRUCK|s. slyly express accounts cajole blithely| +31406|178977|3984|3|1|2055.97|0.00|0.05|R|F|1994-02-15|1994-02-12|1994-03-07|DELIVER IN PERSON|RAIL|lar excuses boost bl| +31406|54828|4829|4|9|16045.38|0.07|0.07|R|F|1994-01-20|1994-02-26|1994-01-30|DELIVER IN PERSON|RAIL|ns. regular, careful accounts affix. pend| +31406|479088|41598|5|30|32011.80|0.03|0.05|R|F|1994-01-14|1994-03-02|1994-01-21|COLLECT COD|FOB|ccounts. quickly fluffy deposits sleep| +31406|31927|31928|6|25|46473.00|0.10|0.04|A|F|1993-12-28|1994-01-23|1994-01-13|DELIVER IN PERSON|RAIL|e furiously silent deposits. furiously reg| +31406|583656|8679|7|32|55668.16|0.09|0.05|A|F|1994-04-08|1994-01-19|1994-04-15|NONE|FOB|y express realms affix; quickly ir| +31407|503657|16168|1|6|9963.78|0.00|0.08|N|O|1998-06-30|1998-08-08|1998-07-23|DELIVER IN PERSON|REG AIR|ily unusual packages boost slyly. regular | +31407|961382|23902|2|5|7216.70|0.09|0.08|N|O|1998-05-26|1998-07-11|1998-06-14|TAKE BACK RETURN|FOB| the blithely pending packag| +31407|942903|42904|3|46|89509.56|0.06|0.07|N|O|1998-07-13|1998-07-14|1998-07-18|DELIVER IN PERSON|FOB|its integrat| +31407|367613|17614|4|30|50418.00|0.05|0.01|N|O|1998-07-04|1998-07-22|1998-07-09|NONE|FOB| run ruthlessly regular p| +31407|460086|47614|5|8|8368.48|0.09|0.08|N|O|1998-05-12|1998-07-30|1998-05-23|DELIVER IN PERSON|MAIL|sometimes slow pinto beans pr| +31432|804786|42335|1|44|74392.56|0.07|0.04|A|F|1993-08-13|1993-09-02|1993-09-12|COLLECT COD|TRUCK| cajole against the regul| +31432|30442|5443|2|49|67249.56|0.08|0.03|A|F|1993-07-28|1993-09-28|1993-08-23|NONE|AIR|ages boost. quickly ironic packages ha| +31432|633770|21307|3|20|34074.80|0.07|0.04|R|F|1993-08-14|1993-08-07|1993-09-03|DELIVER IN PERSON|FOB|arefully ir| +31432|768853|18854|4|31|59576.42|0.01|0.04|R|F|1993-07-30|1993-09-09|1993-08-13|COLLECT COD|AIR|y final forges wake| +31432|109018|9019|5|35|35945.35|0.07|0.02|A|F|1993-09-08|1993-09-04|1993-10-06|TAKE BACK RETURN|AIR|ly to the fluffily final accounts. bl| +31432|262441|49957|6|37|51926.91|0.10|0.00|R|F|1993-09-12|1993-09-20|1993-09-30|DELIVER IN PERSON|AIR|c pinto beans along the silent re| +31433|777051|14597|1|37|41736.74|0.04|0.07|R|F|1994-01-22|1994-01-08|1994-02-19|TAKE BACK RETURN|TRUCK| instructions. even dependenc| +31433|894824|19859|2|40|72751.20|0.01|0.03|A|F|1994-02-23|1994-02-21|1994-03-06|COLLECT COD|TRUCK| integrate slyly towar| +31433|298634|48635|3|28|45713.36|0.03|0.05|R|F|1994-01-06|1994-02-10|1994-01-19|TAKE BACK RETURN|TRUCK|nstructions. deposits| +31433|130913|5918|4|3|5831.73|0.05|0.06|A|F|1994-02-14|1993-12-30|1994-02-20|TAKE BACK RETURN|AIR|ly. deposits | +31433|245457|20466|5|13|18231.72|0.08|0.00|A|F|1994-02-20|1994-01-30|1994-03-11|TAKE BACK RETURN|RAIL|express packages nag| +31434|77048|27049|1|3|3075.12|0.01|0.03|N|O|1996-12-07|1996-11-08|1996-12-21|TAKE BACK RETURN|TRUCK|gular theodolites lose above the blithely| +31434|932416|19971|2|35|50692.95|0.05|0.08|N|O|1996-11-11|1996-09-11|1996-11-30|DELIVER IN PERSON|FOB|e blithely express requests.| +31434|103157|40664|3|43|49886.45|0.06|0.06|N|O|1996-09-14|1996-10-14|1996-09-15|COLLECT COD|TRUCK|sits nag furiously final dependencies. da| +31435|138574|13579|1|19|30638.83|0.06|0.06|N|O|1997-08-19|1997-08-28|1997-09-16|TAKE BACK RETURN|REG AIR|sly bold Tiresias nag qu| +31436|57107|44611|1|30|31923.00|0.08|0.05|N|O|1995-09-27|1995-08-16|1995-10-20|TAKE BACK RETURN|TRUCK|odolites. fluffily regular asymptotes ma| +31436|788853|38854|2|9|17476.38|0.02|0.05|N|O|1995-07-22|1995-09-29|1995-07-26|TAKE BACK RETURN|AIR|ly after the carefull| +31437|882198|7233|1|3|3540.45|0.01|0.07|R|F|1994-03-07|1994-01-09|1994-03-24|TAKE BACK RETURN|RAIL|ns; carefully even platele| +31438|867001|4553|1|38|36782.48|0.00|0.05|N|O|1995-06-23|1995-05-31|1995-07-16|COLLECT COD|FOB|ully. platelets h| +31439|276445|26446|1|43|61121.49|0.03|0.02|A|F|1992-10-15|1992-11-17|1992-11-04|COLLECT COD|REG AIR|ic courts. deposits| +31439|201553|1554|2|27|39272.58|0.10|0.04|R|F|1993-01-25|1992-11-09|1993-02-24|NONE|FOB|unts sleep idly| +31439|497605|47606|3|19|30449.02|0.07|0.08|R|F|1992-10-24|1992-11-27|1992-11-19|TAKE BACK RETURN|TRUCK|y express dolphins| +31464|922208|22209|1|9|11071.44|0.06|0.06|N|O|1995-08-12|1995-07-02|1995-08-14|TAKE BACK RETURN|MAIL|yly according to th| +31464|535251|35252|2|29|37300.67|0.07|0.08|N|O|1995-07-27|1995-08-06|1995-08-11|COLLECT COD|SHIP|r, final foxes among the sly| +31465|505662|30683|1|21|35020.44|0.08|0.06|A|F|1994-06-06|1994-06-18|1994-06-19|NONE|MAIL|lar deposits doze | +31465|647062|47063|2|29|29261.87|0.02|0.02|A|F|1994-06-06|1994-07-28|1994-06-08|NONE|FOB|e regular, even instructions? unus| +31465|156833|31840|3|41|77483.03|0.00|0.07|R|F|1994-09-07|1994-06-15|1994-09-27|DELIVER IN PERSON|TRUCK|uickly after the pending accoun| +31466|760595|35626|1|21|34766.76|0.08|0.01|A|F|1992-07-07|1992-08-19|1992-07-19|NONE|SHIP|sts use daringly stealthily thin a| +31466|308798|33811|2|18|32522.04|0.08|0.00|R|F|1992-08-02|1992-09-15|1992-08-24|DELIVER IN PERSON|FOB|deposits impress requests. carefully ironic| +31466|955838|43396|3|4|7575.16|0.06|0.00|R|F|1992-08-13|1992-08-07|1992-08-16|COLLECT COD|TRUCK|s doze carefull| +31466|764288|26804|4|48|64908.00|0.04|0.06|R|F|1992-08-30|1992-08-18|1992-09-07|TAKE BACK RETURN|FOB|to beans. special br| +31467|496848|21867|1|5|9224.10|0.00|0.01|A|F|1993-01-16|1993-02-02|1993-02-13|COLLECT COD|FOB|le according to the slyly r| +31467|508222|33243|2|4|4920.80|0.07|0.06|R|F|1993-02-08|1993-01-31|1993-02-17|NONE|FOB|y alongside of the deposits. blithely even| +31467|672973|22974|3|17|33080.98|0.10|0.08|A|F|1993-01-22|1993-03-06|1993-02-06|COLLECT COD|FOB|fully. express dolphins until the fu| +31467|644804|7317|4|40|69950.80|0.03|0.01|A|F|1993-02-11|1993-01-21|1993-03-07|DELIVER IN PERSON|TRUCK|osits cajole. carefull| +31467|208881|46394|5|41|73384.67|0.04|0.06|A|F|1992-12-13|1993-02-07|1993-01-11|TAKE BACK RETURN|AIR|ut the carefully final pinto| +31468|314347|1866|1|34|46285.22|0.02|0.07|N|O|1996-08-25|1996-10-09|1996-09-01|DELIVER IN PERSON|MAIL|o beans use quickly regular account| +31469|746097|8612|1|39|44579.34|0.04|0.08|R|F|1994-05-23|1994-06-02|1994-06-10|DELIVER IN PERSON|SHIP|eas. carefully ironic gifts are | +31469|645083|20108|2|30|30841.50|0.07|0.04|A|F|1994-06-05|1994-04-07|1994-06-12|TAKE BACK RETURN|RAIL|unusual packages affix slyly fin| +31469|894192|31744|3|27|32026.05|0.06|0.07|A|F|1994-03-26|1994-04-24|1994-04-03|TAKE BACK RETURN|MAIL|requests promise quickly agai| +31469|678744|41258|4|13|22395.23|0.01|0.08|R|F|1994-06-28|1994-04-12|1994-07-01|NONE|MAIL|ly slyly silent asymptotes. unusual dep| +31470|234680|22193|1|2|3229.34|0.05|0.08|N|O|1997-07-25|1997-07-29|1997-08-05|NONE|SHIP|s. furiously regular asympto| +31470|255629|18135|2|10|15846.10|0.04|0.04|N|O|1997-06-23|1997-07-22|1997-07-03|TAKE BACK RETURN|SHIP|deposits. final courts wake sly| +31470|352024|2025|3|1|1076.01|0.10|0.08|N|O|1997-08-03|1997-07-19|1997-08-19|NONE|FOB|ggle furiou| +31470|450844|845|4|20|35896.40|0.07|0.05|N|O|1997-05-26|1997-06-07|1997-06-04|TAKE BACK RETURN|REG AIR|haggle above the quickly | +31470|331467|18986|5|2|2996.90|0.08|0.06|N|O|1997-08-20|1997-07-22|1997-09-09|COLLECT COD|AIR|. even, ironic pinto beans cajole theod| +31471|115400|15401|1|49|69354.60|0.00|0.02|A|F|1992-03-20|1992-05-01|1992-03-29|TAKE BACK RETURN|FOB|tructions nod blithely from| +31471|514716|14717|2|3|5192.07|0.03|0.07|A|F|1992-05-23|1992-04-29|1992-06-18|DELIVER IN PERSON|RAIL| blithely ironic deposits | +31471|821334|21335|3|22|27616.38|0.03|0.07|A|F|1992-05-31|1992-05-19|1992-06-18|TAKE BACK RETURN|MAIL|mas across the even requests a| +31471|155015|30022|4|5|5350.05|0.09|0.08|A|F|1992-06-29|1992-05-24|1992-07-21|NONE|SHIP|counts. fluffy, special req| +31471|332648|45155|5|25|42015.75|0.09|0.03|A|F|1992-05-22|1992-04-08|1992-06-19|DELIVER IN PERSON|REG AIR|carefully regular attainments ab| +31471|807742|32775|6|2|3299.40|0.10|0.08|R|F|1992-03-10|1992-05-30|1992-03-16|DELIVER IN PERSON|RAIL| furiously according to th| +31496|925410|12965|1|4|5741.48|0.01|0.03|R|F|1994-10-30|1994-10-09|1994-11-20|DELIVER IN PERSON|REG AIR|o beans snooze alongside of the dep| +31496|351855|39377|2|23|43857.32|0.03|0.02|R|F|1994-10-15|1994-09-30|1994-11-11|DELIVER IN PERSON|AIR|t the express, brave pinto| +31496|623130|35643|3|36|37911.60|0.00|0.06|A|F|1994-08-09|1994-10-22|1994-08-29|NONE|RAIL|ing, unusual deposits. u| +31496|939384|14421|4|12|17080.08|0.09|0.04|R|F|1994-08-30|1994-10-16|1994-09-02|NONE|MAIL|eans print slyly along the flu| +31496|212760|12761|5|12|20073.00|0.04|0.02|R|F|1994-10-19|1994-10-08|1994-11-03|COLLECT COD|TRUCK| blithely bold id| +31497|246940|21949|1|26|49060.18|0.03|0.05|N|O|1995-07-07|1995-06-20|1995-08-02|TAKE BACK RETURN|FOB|furiously even | +31497|319228|19229|2|35|43652.35|0.10|0.02|A|F|1995-05-20|1995-06-24|1995-06-04|NONE|RAIL|. requests eat. blithely pen| +31498|586513|49025|1|23|36788.27|0.08|0.05|N|O|1996-04-01|1996-02-17|1996-04-03|TAKE BACK RETURN|AIR|final, ironic pearls. ideas should in| +31498|512164|37185|2|27|31755.78|0.05|0.05|N|O|1996-02-14|1996-04-13|1996-03-08|DELIVER IN PERSON|REG AIR| the quickly regular packages. ironi| +31499|817759|5308|1|50|83835.50|0.06|0.08|N|O|1998-01-29|1998-02-08|1998-02-28|DELIVER IN PERSON|MAIL|es engage quickly | +31500|45344|32845|1|1|1289.34|0.09|0.02|R|F|1993-08-08|1993-07-20|1993-09-06|COLLECT COD|AIR|ts cajole furiously around| +31501|858545|21063|1|31|46608.50|0.00|0.07|N|O|1996-12-05|1996-11-13|1997-01-04|NONE|REG AIR|nts according to the accounts c| +31501|562437|24949|2|18|26989.38|0.09|0.00|N|O|1996-10-26|1996-11-10|1996-11-06|TAKE BACK RETURN|TRUCK| the ironic dolphin| +31501|866051|16052|3|33|33561.33|0.07|0.07|N|O|1996-10-19|1996-12-02|1996-10-23|COLLECT COD|RAIL| promise b| +31501|718680|31195|4|44|74740.60|0.09|0.06|N|O|1996-09-19|1996-11-23|1996-09-22|COLLECT COD|TRUCK|according to t| +31501|852104|27139|5|49|51746.94|0.09|0.05|N|O|1996-11-11|1996-11-23|1996-11-27|TAKE BACK RETURN|SHIP|ly according to the | +31502|453679|28698|1|8|13061.20|0.02|0.02|N|O|1997-01-15|1997-02-09|1997-02-06|TAKE BACK RETURN|TRUCK|ites along the unusua| +31502|977369|27370|2|2|2892.64|0.03|0.06|N|O|1996-12-22|1997-01-13|1997-01-14|COLLECT COD|TRUCK|nic, regular theodolites could sleep | +31502|640528|3041|3|21|30838.29|0.06|0.02|N|O|1997-01-08|1996-12-26|1997-01-26|COLLECT COD|RAIL| carefully busily regular deposits. regula| +31502|353756|28771|4|48|86867.52|0.01|0.05|N|O|1997-02-14|1997-02-10|1997-03-13|DELIVER IN PERSON|TRUCK|xpress deposits. blithely ironic ac| +31502|576732|1755|5|9|16278.39|0.08|0.04|N|O|1997-03-10|1997-02-02|1997-03-18|NONE|MAIL|special patterns sle| +31502|130806|18313|6|44|80819.20|0.04|0.07|N|O|1997-03-14|1996-12-21|1997-04-10|DELIVER IN PERSON|SHIP|ly. furiously regular deposi| +31502|445087|7596|7|23|23737.38|0.10|0.08|N|O|1996-12-22|1997-01-06|1997-01-13|DELIVER IN PERSON|AIR|ously. unusual excus| +31503|568640|31152|1|21|35881.02|0.02|0.00|A|F|1993-12-19|1993-11-14|1994-01-11|TAKE BACK RETURN|MAIL|uriously. deposits integrate. requ| +31503|118800|18801|2|9|16369.20|0.02|0.05|R|F|1993-09-13|1993-11-06|1993-10-12|NONE|AIR|hily among the r| +31503|659350|46890|3|24|31423.68|0.04|0.05|R|F|1993-11-11|1993-09-29|1993-12-11|TAKE BACK RETURN|RAIL|es mold slyly| +31503|689889|27429|4|29|54486.65|0.00|0.04|A|F|1993-11-17|1993-11-07|1993-12-03|NONE|TRUCK|to beans snooze slyly reque| +31503|950894|13414|5|17|33062.45|0.06|0.08|A|F|1993-12-14|1993-10-18|1994-01-09|COLLECT COD|TRUCK| packages. final deposits | +31503|662044|24558|6|12|12072.12|0.06|0.00|A|F|1993-12-10|1993-09-29|1994-01-07|NONE|RAIL|r excuses may affix slyly.| +31528|384756|22278|1|2|3681.48|0.10|0.04|R|F|1992-07-15|1992-09-05|1992-08-10|DELIVER IN PERSON|SHIP|heodolites are slyly across the blit| +31528|589975|27509|2|27|55753.65|0.03|0.03|R|F|1992-08-27|1992-08-09|1992-08-31|NONE|MAIL|ic packages a| +31528|704170|4171|3|8|9393.12|0.09|0.02|R|F|1992-07-02|1992-09-13|1992-07-23|TAKE BACK RETURN|TRUCK|ial, daring dependencies. even, u| +31528|974463|12021|4|49|75333.58|0.08|0.03|R|F|1992-09-15|1992-08-20|1992-09-16|TAKE BACK RETURN|AIR|sly special asymptotes wak| +31528|788433|25979|5|37|56291.80|0.01|0.05|R|F|1992-10-11|1992-08-21|1992-11-01|NONE|FOB|e final frays grow busily abov| +31528|190158|15165|6|20|24963.00|0.08|0.07|R|F|1992-10-14|1992-09-11|1992-11-04|TAKE BACK RETURN|FOB|he permanently even packages. quickl| +31528|978460|3499|7|29|44614.18|0.05|0.05|A|F|1992-08-18|1992-08-06|1992-09-03|NONE|RAIL|s play quickly. pe| +31529|969791|19792|1|12|22329.00|0.08|0.05|R|F|1994-03-26|1994-03-26|1994-04-03|TAKE BACK RETURN|AIR|ages are. slyly even grou| +31529|275134|145|2|33|36600.96|0.07|0.08|R|F|1994-03-02|1994-04-26|1994-03-06|DELIVER IN PERSON|FOB|blithely unusual packages. furiously fin| +31529|174049|11559|3|38|42675.52|0.09|0.06|R|F|1994-03-04|1994-04-29|1994-03-09|COLLECT COD|RAIL|uietly against the ironic requ| +31529|235969|10978|4|14|26669.30|0.01|0.07|R|F|1994-03-29|1994-04-24|1994-04-23|COLLECT COD|REG AIR|thely regular accou| +31529|921899|21900|5|6|11525.10|0.08|0.05|R|F|1994-04-17|1994-04-25|1994-05-16|NONE|TRUCK|ions grow b| +31529|355510|30525|6|30|46965.00|0.04|0.00|A|F|1994-03-12|1994-04-22|1994-03-14|TAKE BACK RETURN|TRUCK|s. furiously| +31530|679879|17419|1|20|37176.80|0.05|0.03|N|O|1996-01-28|1996-03-10|1996-02-15|TAKE BACK RETURN|REG AIR|ake according to the carefu| +31530|720801|33316|2|36|65583.72|0.01|0.02|N|O|1996-02-28|1996-02-08|1996-03-15|TAKE BACK RETURN|RAIL|ly bold accounts. s| +31530|496872|9382|3|43|80360.55|0.01|0.04|N|O|1996-02-07|1996-03-03|1996-02-18|TAKE BACK RETURN|RAIL|ckages wake. eve| +31530|925500|25501|4|32|48814.72|0.02|0.03|N|O|1996-02-11|1996-02-20|1996-02-12|TAKE BACK RETURN|FOB|es. blithely thin orbi| +31530|873223|10775|5|7|8373.26|0.02|0.08|N|O|1996-03-30|1996-02-19|1996-04-23|DELIVER IN PERSON|MAIL|eposits. carefully regular instructions wak| +31530|253767|16273|6|48|82596.00|0.01|0.08|N|O|1996-04-06|1996-02-19|1996-04-15|COLLECT COD|SHIP|beans-- warthogs about the f| +31531|211905|11906|1|39|70858.71|0.00|0.04|R|F|1993-01-12|1993-01-19|1993-01-16|COLLECT COD|FOB|es haggle furiously fluffily regular plate| +31532|625125|150|1|13|13651.17|0.06|0.03|R|F|1994-04-04|1994-04-07|1994-04-08|TAKE BACK RETURN|FOB|nusual deposits against the furiously| +31532|465820|28330|2|1|1785.80|0.08|0.04|R|F|1994-06-08|1994-04-12|1994-06-11|TAKE BACK RETURN|FOB|ounts lose. slyly| +31532|27314|39815|3|10|12413.10|0.07|0.03|A|F|1994-03-24|1994-04-15|1994-04-21|DELIVER IN PERSON|SHIP|y ironic ide| +31532|59078|9079|4|18|18667.26|0.07|0.03|A|F|1994-04-21|1994-04-27|1994-05-15|DELIVER IN PERSON|MAIL|. unusual requ| +31532|919400|44437|5|43|61032.48|0.03|0.04|A|F|1994-06-01|1994-04-06|1994-06-17|DELIVER IN PERSON|SHIP|its use fluffily. furio| +31532|350455|456|6|13|19570.72|0.08|0.04|R|F|1994-03-25|1994-05-06|1994-03-31|DELIVER IN PERSON|TRUCK|ronic foxes; quickly regular id| +31532|83478|33479|7|21|30690.87|0.02|0.07|R|F|1994-04-03|1994-05-23|1994-04-30|DELIVER IN PERSON|AIR|re blithely bol| +31533|998625|36183|1|19|32748.02|0.01|0.04|A|F|1995-04-10|1995-04-01|1995-05-04|COLLECT COD|SHIP|gular theodolites acros| +31533|883402|8437|2|32|44331.52|0.10|0.00|R|F|1995-02-26|1995-04-10|1995-03-20|NONE|AIR|ular theodolites grow against the fluff| +31533|334380|9393|3|25|35359.25|0.03|0.00|R|F|1995-03-31|1995-03-27|1995-04-14|TAKE BACK RETURN|MAIL| regular deposits detect slyly across | +31533|916334|16335|4|11|14853.19|0.10|0.03|A|F|1995-03-04|1995-04-24|1995-03-30|TAKE BACK RETURN|TRUCK|oxes are caref| +31533|819691|32208|5|32|51540.80|0.00|0.00|N|F|1995-05-29|1995-03-18|1995-06-26|NONE|RAIL|special asymptotes affix fluffily | +31534|210935|23440|1|15|27688.80|0.06|0.06|R|F|1992-11-15|1992-09-30|1992-12-10|DELIVER IN PERSON|TRUCK|quests. bold excuses are | +31535|14006|26507|1|18|16560.00|0.07|0.00|R|F|1992-08-11|1992-09-02|1992-09-03|NONE|FOB|ic foxes are carefully above the careful| +31535|384341|9356|2|46|65565.18|0.04|0.08|A|F|1992-09-17|1992-09-05|1992-09-22|DELIVER IN PERSON|REG AIR|deas. busily| +31535|603250|40787|3|17|19604.74|0.02|0.04|R|F|1992-10-10|1992-07-16|1992-11-08|DELIVER IN PERSON|FOB|special instructions wake care| +31560|609478|21991|1|11|15261.84|0.10|0.04|N|O|1995-11-18|1996-01-06|1995-11-26|TAKE BACK RETURN|MAIL|ckly ironic deposits are furiou| +31560|488183|25711|2|1|1171.16|0.04|0.00|N|O|1996-02-17|1996-01-09|1996-03-09|NONE|TRUCK| use silent excuses. f| +31560|880550|30551|3|37|56628.87|0.06|0.01|N|O|1996-02-16|1995-11-30|1996-02-25|COLLECT COD|TRUCK|o the dependencies.| +31561|985519|10558|1|10|16044.70|0.06|0.01|N|O|1998-01-28|1998-04-03|1998-02-18|TAKE BACK RETURN|AIR|ng instructions. regular the| +31561|603658|28683|2|44|68711.28|0.06|0.01|N|O|1998-03-13|1998-04-09|1998-04-03|TAKE BACK RETURN|RAIL| unusual, ironic requests. | +31561|663811|13812|3|50|88739.00|0.02|0.00|N|O|1998-05-19|1998-04-20|1998-06-16|DELIVER IN PERSON|RAIL|ions are carefully s| +31561|659079|34106|4|44|45673.76|0.02|0.04|N|O|1998-02-23|1998-03-11|1998-03-15|DELIVER IN PERSON|AIR|lets are blithely ironic accounts. bl| +31561|131944|31945|5|14|27663.16|0.09|0.07|N|O|1998-04-29|1998-03-18|1998-05-10|TAKE BACK RETURN|RAIL|ake quickly. furiously bol| +31561|579222|4245|6|49|63758.80|0.10|0.00|N|O|1998-04-11|1998-03-24|1998-05-09|TAKE BACK RETURN|AIR|und the even requests.| +31561|967688|5246|7|12|21067.68|0.01|0.06|N|O|1998-03-18|1998-04-21|1998-03-30|DELIVER IN PERSON|AIR|riously unus| +31562|923057|48094|1|44|47520.44|0.06|0.07|N|O|1998-04-27|1998-03-17|1998-04-28|DELIVER IN PERSON|REG AIR|ckages. furiou| +31562|802730|2731|2|6|9796.14|0.07|0.01|N|O|1998-03-25|1998-03-23|1998-04-07|DELIVER IN PERSON|FOB|final ideas after the unusual, f| +31562|482164|7183|3|29|33238.06|0.00|0.03|N|O|1998-04-04|1998-03-03|1998-04-14|TAKE BACK RETURN|SHIP|sits according to the realms| +31562|719445|44474|4|37|54183.17|0.03|0.07|N|O|1998-01-19|1998-02-19|1998-01-21|NONE|MAIL|ake slyly quickly express foxes. final th| +31562|704059|4060|5|22|23386.44|0.02|0.05|N|O|1998-02-08|1998-03-17|1998-02-13|COLLECT COD|REG AIR|e pending packages detect careful| +31563|888065|38066|1|11|11583.22|0.07|0.05|A|F|1995-05-01|1995-04-03|1995-05-25|COLLECT COD|RAIL|l packages. careful| +31563|704777|4778|2|40|71269.60|0.02|0.00|A|F|1995-03-01|1995-05-04|1995-03-27|TAKE BACK RETURN|AIR|al deposits between the ev| +31563|183969|46473|3|31|63641.76|0.04|0.00|R|F|1995-03-31|1995-05-18|1995-04-23|DELIVER IN PERSON|AIR|nstructions. ideas affix clo| +31563|964604|14605|4|46|76753.76|0.08|0.08|A|F|1995-03-05|1995-05-08|1995-03-17|NONE|SHIP| express theodolites after| +31563|88567|26071|5|7|10888.92|0.08|0.05|N|F|1995-06-14|1995-04-05|1995-07-05|DELIVER IN PERSON|TRUCK| final accounts. slyly| +31564|752658|40204|1|49|83820.38|0.01|0.01|N|O|1996-01-27|1995-12-22|1996-02-03|DELIVER IN PERSON|REG AIR|unts maintain slyly regular, b| +31564|922946|47983|2|38|74818.20|0.08|0.02|N|O|1996-01-25|1995-12-29|1996-02-20|NONE|SHIP|xpress packages boost | +31564|937988|37989|3|9|18233.46|0.10|0.06|N|O|1996-01-17|1996-01-01|1996-01-24|TAKE BACK RETURN|SHIP|its affix carefully. final, furi| +31564|762610|12611|4|30|50177.40|0.00|0.00|N|O|1995-12-13|1995-12-10|1995-12-16|DELIVER IN PERSON|RAIL|carefully final deposits. ironically re| +31564|172958|35462|5|1|2030.95|0.05|0.07|N|O|1996-01-17|1996-01-04|1996-02-16|TAKE BACK RETURN|REG AIR|ges. fluffily pending requests wake | +31564|889026|1544|6|24|24359.52|0.05|0.01|N|O|1995-10-20|1995-11-26|1995-10-23|DELIVER IN PERSON|SHIP| pending e| +31564|856658|31693|7|1|1614.61|0.09|0.03|N|O|1995-10-27|1995-12-19|1995-11-19|TAKE BACK RETURN|RAIL|d pinto beans | +31565|845770|33319|1|6|10294.38|0.03|0.00|A|F|1994-01-29|1993-12-18|1994-02-27|COLLECT COD|FOB|y bold requests. | +31565|849628|49629|2|30|47327.40|0.09|0.03|R|F|1993-12-14|1993-12-05|1993-12-26|COLLECT COD|AIR|ously even packages. furiousl| +31565|681877|6904|3|24|44612.16|0.05|0.08|A|F|1994-01-18|1993-11-02|1994-01-30|DELIVER IN PERSON|SHIP|le after the flu| +31565|305129|17636|4|29|32889.19|0.01|0.01|R|F|1994-01-26|1993-12-21|1994-02-07|COLLECT COD|FOB|al asymptotes. carefully eve| +31565|296445|46446|5|39|56215.77|0.08|0.07|A|F|1993-11-04|1993-12-06|1993-12-03|TAKE BACK RETURN|MAIL|cies boost furiously. blithe| +31565|349576|24589|6|47|76401.32|0.00|0.08|A|F|1993-10-09|1994-01-01|1993-10-29|NONE|MAIL|ironic pinto bea| +31566|236537|49042|1|11|16208.72|0.03|0.03|N|O|1997-10-15|1997-11-15|1997-10-16|COLLECT COD|SHIP|eposits integrate | +31566|463316|25826|2|50|63964.50|0.10|0.06|N|O|1997-11-17|1997-11-01|1997-12-02|NONE|SHIP|usly pending pinto beans nag carefully re| +31566|939933|27488|3|31|61159.59|0.05|0.05|N|O|1998-01-11|1997-11-05|1998-01-14|TAKE BACK RETURN|AIR|ual accounts. bl| +31566|451124|13634|4|10|10751.00|0.07|0.05|N|O|1998-01-09|1997-12-09|1998-01-31|TAKE BACK RETURN|RAIL|g ideas. stealthy, pending account| +31566|25762|38263|5|33|55696.08|0.05|0.05|N|O|1997-11-05|1997-12-19|1997-11-06|COLLECT COD|FOB|ckages affix slyly. fina| +31567|757778|7779|1|41|75265.34|0.08|0.07|R|F|1992-12-28|1992-12-15|1993-01-15|TAKE BACK RETURN|RAIL|e according to th| +31567|967552|30072|2|1|1619.51|0.08|0.04|A|F|1992-10-28|1992-11-26|1992-11-16|COLLECT COD|TRUCK|kages are carefully. blithely final T| +31567|636090|48603|3|34|34886.04|0.00|0.08|R|F|1993-01-14|1992-11-13|1993-02-06|COLLECT COD|SHIP|notornis: forges dazzle blithel| +31592|388998|26520|1|44|91827.12|0.00|0.08|R|F|1993-08-08|1993-07-18|1993-08-19|NONE|FOB|ly furiously ironic requests. pac| +31593|657521|20035|1|4|5913.96|0.00|0.02|N|O|1997-02-25|1997-01-10|1997-02-28|TAKE BACK RETURN|RAIL|carefully after the quickly fluffy | +31593|943629|6148|2|42|70248.36|0.05|0.02|N|O|1997-01-24|1997-01-29|1997-01-26|COLLECT COD|FOB|ckages kindle about the expre| +31593|567897|5431|3|48|94313.76|0.02|0.04|N|O|1997-02-23|1997-01-04|1997-02-27|NONE|TRUCK|ies believe furiou| +31593|640351|27888|4|39|50361.48|0.05|0.06|N|O|1997-01-24|1997-01-29|1997-01-28|NONE|MAIL|ely against the ruthless | +31593|363019|541|5|35|37870.00|0.09|0.01|N|O|1997-01-18|1996-12-28|1997-01-26|TAKE BACK RETURN|SHIP|ts wake fluffil| +31594|718274|30789|1|42|54274.08|0.07|0.01|N|O|1998-07-21|1998-05-21|1998-08-10|DELIVER IN PERSON|MAIL|odolites doze fur| +31594|27604|40105|2|8|12252.80|0.10|0.00|N|O|1998-06-20|1998-05-03|1998-07-18|COLLECT COD|AIR|s wake quickly regularly bold pin| +31594|931173|43692|3|30|36123.90|0.07|0.03|N|O|1998-04-14|1998-05-03|1998-04-27|NONE|MAIL| are quick| +31594|217888|5401|4|22|39729.14|0.04|0.04|N|O|1998-06-11|1998-06-03|1998-06-24|DELIVER IN PERSON|MAIL|nic dependencie| +31594|42444|17445|5|3|4159.32|0.05|0.00|N|O|1998-04-27|1998-05-09|1998-05-06|NONE|MAIL|nic courts. | +31594|339553|39554|6|30|47776.20|0.03|0.03|N|O|1998-04-15|1998-06-01|1998-05-05|TAKE BACK RETURN|FOB|y among the re| +31595|12953|12954|1|2|3731.90|0.03|0.03|N|O|1998-04-01|1998-05-08|1998-04-30|TAKE BACK RETURN|FOB|bove the blithely s| +31595|690000|40001|2|39|38608.83|0.10|0.06|N|O|1998-05-09|1998-04-10|1998-06-08|NONE|REG AIR|s integrate slyly. fluffily express dep| +31595|816473|16474|3|18|25009.74|0.02|0.01|N|O|1998-05-21|1998-06-01|1998-05-26|DELIVER IN PERSON|RAIL|requests are quickly ironi| +31595|456141|6142|4|45|49370.40|0.00|0.08|N|O|1998-05-08|1998-04-10|1998-05-09|DELIVER IN PERSON|TRUCK|gside of th| +31596|224374|49383|1|15|19475.40|0.05|0.05|N|O|1997-01-20|1997-03-16|1997-01-22|TAKE BACK RETURN|FOB|ages. pending instructions| +31597|214567|39576|1|46|68151.30|0.00|0.07|N|O|1998-07-09|1998-09-09|1998-08-08|TAKE BACK RETURN|MAIL| packages. express request| +31598|747872|35415|1|15|28797.60|0.10|0.03|N|O|1996-07-25|1996-06-21|1996-08-13|COLLECT COD|SHIP|blithely fi| +31598|474718|24719|2|17|28775.73|0.09|0.08|N|O|1996-05-07|1996-05-15|1996-05-19|TAKE BACK RETURN|REG AIR|accounts. carefully close | +31598|571441|46464|3|48|72596.16|0.04|0.03|N|O|1996-06-20|1996-06-16|1996-06-24|TAKE BACK RETURN|MAIL| slyly around the fluffily daring| +31598|205102|5103|4|28|28198.52|0.02|0.03|N|O|1996-06-30|1996-06-19|1996-07-05|TAKE BACK RETURN|RAIL|aggle carefully accounts. fluffil| +31598|135650|35651|5|12|20227.80|0.10|0.00|N|O|1996-07-19|1996-05-22|1996-07-30|COLLECT COD|TRUCK|ajole carefully. carefully unusual dolphin| +31598|859762|34797|6|44|75755.68|0.03|0.03|N|O|1996-08-01|1996-06-28|1996-08-23|NONE|MAIL|latelets are fluffily above the fluffil| +31598|10493|47994|7|19|26666.31|0.08|0.04|N|O|1996-06-17|1996-06-01|1996-07-15|COLLECT COD|SHIP| ironic pinto beans en| +31599|355124|17632|1|10|11791.10|0.04|0.05|A|F|1992-07-03|1992-07-13|1992-07-11|TAKE BACK RETURN|MAIL|gle slyly quietly ironic| +31599|566848|4382|2|23|44040.86|0.10|0.06|A|F|1992-08-28|1992-07-05|1992-09-25|TAKE BACK RETURN|TRUCK|uffily final ideas. evenly quick t| +31599|14232|39233|3|3|3438.69|0.02|0.08|R|F|1992-07-12|1992-07-24|1992-07-25|NONE|MAIL|ages cajole quickly regul| +31599|191141|16148|4|19|23410.66|0.02|0.05|R|F|1992-07-24|1992-08-04|1992-08-01|TAKE BACK RETURN|FOB|n accounts. carefully pending escap| +31599|504167|29188|5|10|11711.40|0.01|0.03|A|F|1992-07-16|1992-08-06|1992-07-21|TAKE BACK RETURN|AIR|symptotes. bold| +31599|534043|34044|6|25|26925.50|0.00|0.00|A|F|1992-09-04|1992-07-02|1992-09-11|COLLECT COD|SHIP| the stealthy, bold depos| +31624|190911|15918|1|8|16015.28|0.07|0.00|N|O|1996-04-14|1996-06-10|1996-05-05|DELIVER IN PERSON|SHIP|ar, regular accounts kindle furiousl| +31624|633989|9014|2|6|11537.70|0.09|0.05|N|O|1996-04-05|1996-05-30|1996-04-19|COLLECT COD|REG AIR|y final requests. ironic requests ar| +31624|440117|15134|3|35|36998.15|0.04|0.07|N|O|1996-05-25|1996-06-08|1996-06-03|COLLECT COD|AIR|ans. regular acc| +31624|38521|26022|4|4|5838.08|0.06|0.08|N|O|1996-05-16|1996-06-14|1996-05-25|TAKE BACK RETURN|TRUCK|furiously express| +31624|407424|7425|5|4|5325.60|0.01|0.00|N|O|1996-05-27|1996-05-27|1996-06-03|NONE|FOB|efully regular account| +31625|240579|3084|1|1|1519.56|0.00|0.08|N|O|1998-07-16|1998-08-14|1998-08-02|TAKE BACK RETURN|FOB|cial, final| +31625|410609|35626|2|6|9117.48|0.03|0.08|N|O|1998-10-16|1998-08-25|1998-11-09|COLLECT COD|MAIL|odolites maintain| +31625|102084|27089|3|1|1086.08|0.07|0.00|N|O|1998-09-07|1998-07-29|1998-09-23|NONE|MAIL|te quickly fluffily ironic | +31626|635658|10683|1|41|65338.42|0.02|0.06|N|O|1996-03-05|1996-01-26|1996-04-03|COLLECT COD|AIR|ial, final sentiments. ironic, special id| +31626|499913|24932|2|26|49735.14|0.09|0.00|N|O|1996-02-19|1996-01-17|1996-02-29|COLLECT COD|FOB|structions haggle furiou| +31627|955632|43190|1|25|42189.75|0.09|0.00|R|F|1995-02-02|1995-02-11|1995-02-15|TAKE BACK RETURN|AIR|olphins! fluffily bold pinto beans integrat| +31627|303960|16467|2|3|5891.85|0.06|0.07|A|F|1995-01-01|1995-02-03|1995-01-17|TAKE BACK RETURN|MAIL|deposits. final, ironic | +31627|648760|36297|3|6|10252.38|0.00|0.08|A|F|1995-01-31|1995-02-06|1995-02-06|TAKE BACK RETURN|REG AIR|ironic packages sleep furiously. f| +31627|703945|28974|4|25|48722.75|0.08|0.08|R|F|1995-01-04|1995-02-01|1995-01-12|NONE|REG AIR|heodolites| +31627|197441|22448|5|22|33845.68|0.10|0.02|R|F|1995-01-16|1995-02-23|1995-02-03|COLLECT COD|REG AIR| ideas. silent accoun| +31627|388800|13815|6|26|49108.54|0.01|0.03|A|F|1995-01-05|1995-01-09|1995-01-15|NONE|TRUCK|symptotes sleep furiousl| +31628|507494|32515|1|49|73572.03|0.10|0.08|N|O|1996-05-22|1996-05-25|1996-06-09|NONE|RAIL|c foxes grow against the fl| +31628|435482|35483|2|34|48193.64|0.00|0.00|N|O|1996-05-23|1996-04-11|1996-05-25|NONE|TRUCK|o beans. quickl| +31628|133894|21401|3|33|63620.37|0.07|0.04|N|O|1996-06-08|1996-04-18|1996-06-30|NONE|REG AIR|ts around the furiou| +31628|348175|10682|4|29|35471.64|0.05|0.02|N|O|1996-04-17|1996-05-27|1996-05-04|TAKE BACK RETURN|TRUCK|regular asymptotes wake ironical| +31629|175838|38342|1|40|76553.20|0.09|0.01|R|F|1993-01-11|1993-02-19|1993-01-14|TAKE BACK RETURN|FOB|hes haggle enticingly. caref| +31629|299886|49887|2|15|28288.05|0.10|0.06|A|F|1993-03-09|1993-03-06|1993-03-30|TAKE BACK RETURN|TRUCK|somas wake instruc| +31629|182837|7844|3|40|76793.20|0.06|0.04|A|F|1993-01-01|1993-03-07|1993-01-18|TAKE BACK RETURN|FOB|g the silent packa| +31629|927188|39707|4|16|19442.24|0.04|0.06|A|F|1993-01-18|1993-03-13|1993-02-05|TAKE BACK RETURN|RAIL|ts boost along the pending, special re| +31629|233504|8513|5|2|2874.98|0.08|0.01|A|F|1993-01-04|1993-02-01|1993-01-24|NONE|RAIL|xes boost unusual patterns.| +31630|897903|47904|1|35|66530.10|0.07|0.03|N|O|1997-06-12|1997-07-02|1997-06-14|TAKE BACK RETURN|REG AIR|mptotes solve| +31630|52019|2020|2|24|23304.24|0.10|0.03|N|O|1997-08-09|1997-06-29|1997-08-31|NONE|REG AIR|ly ironic accounts. fur| +31630|273341|48352|3|39|51258.87|0.04|0.07|N|O|1997-05-16|1997-06-25|1997-06-06|NONE|FOB| wake. slyly express theodolites | +31630|25904|38405|4|25|45747.50|0.01|0.05|N|O|1997-08-23|1997-07-03|1997-09-21|COLLECT COD|MAIL|sleep slyly about t| +31631|583790|21324|1|34|63708.18|0.05|0.08|N|O|1995-11-12|1995-11-23|1995-11-13|DELIVER IN PERSON|FOB|cial deposits cajole after | +31631|743204|43205|2|15|18707.55|0.07|0.04|N|O|1995-10-24|1995-12-04|1995-11-22|NONE|MAIL|ages wake carefully slyly pending | +31631|25611|38112|3|40|61464.40|0.00|0.01|N|O|1995-11-08|1995-12-24|1995-11-18|TAKE BACK RETURN|TRUCK|ic accounts boost slyly final, pendin| +31631|428271|3288|4|45|53966.25|0.03|0.02|N|O|1995-10-26|1995-11-21|1995-11-11|DELIVER IN PERSON|MAIL|jole quickly. regula| +31631|937463|25018|5|31|46513.02|0.00|0.02|N|O|1995-11-22|1995-12-22|1995-12-09|NONE|AIR|sleep around the even realms. reque| +31631|936140|23695|6|27|31754.70|0.05|0.03|N|O|1995-10-17|1995-11-13|1995-10-28|TAKE BACK RETURN|REG AIR|instructions cajole. r| +31631|697019|22046|7|50|50799.00|0.09|0.08|N|O|1995-12-08|1995-12-30|1996-01-04|TAKE BACK RETURN|FOB|sts cajole pending foxes. fluffily bol| +31656|785129|10160|1|2|2428.18|0.08|0.08|R|F|1993-03-23|1993-03-14|1993-03-24|NONE|AIR| integrate doggedly r| +31657|787234|49750|1|50|66060.00|0.10|0.05|N|O|1995-09-30|1995-09-25|1995-10-09|DELIVER IN PERSON|RAIL|usual requests cajole slyly a| +31657|37766|37767|2|39|66446.64|0.10|0.08|N|O|1995-12-09|1995-11-12|1995-12-18|NONE|AIR|usual pinto beans cajole furi| +31658|93047|5549|1|3|3120.12|0.07|0.05|N|O|1995-11-12|1995-11-28|1995-12-06|NONE|AIR|s impress blithely special asy| +31658|835781|23330|2|37|63519.38|0.04|0.06|N|O|1995-12-17|1995-10-30|1995-12-31|TAKE BACK RETURN|AIR|lites use blithely fluffy foxes. quickl| +31659|935802|35803|1|45|82699.20|0.05|0.03|A|F|1993-07-19|1993-08-07|1993-08-16|DELIVER IN PERSON|REG AIR|y quick packages. speci| +31659|18534|6035|2|21|30503.13|0.10|0.00|R|F|1993-07-15|1993-07-17|1993-07-18|COLLECT COD|FOB| deposits. blith| +31659|490640|15659|3|14|22828.68|0.10|0.02|R|F|1993-08-24|1993-08-04|1993-09-03|DELIVER IN PERSON|SHIP| requests aff| +31659|172616|10126|4|43|72610.23|0.03|0.06|R|F|1993-07-16|1993-07-02|1993-08-12|DELIVER IN PERSON|RAIL|r packages are fluffily blithely regu| +31659|141740|4243|5|39|69487.86|0.10|0.06|A|F|1993-08-01|1993-06-24|1993-08-25|DELIVER IN PERSON|MAIL|es kindle quickly regular de| +31660|583900|8923|1|22|43645.36|0.10|0.08|N|O|1995-10-09|1995-08-21|1995-11-08|DELIVER IN PERSON|SHIP| packages wake. slyly even theodolites| +31660|593851|18874|2|40|77793.20|0.00|0.06|N|O|1995-09-22|1995-08-03|1995-10-04|COLLECT COD|SHIP|c dolphins. quickly bold multipli| +31660|845608|20641|3|28|43499.68|0.04|0.07|N|O|1995-08-15|1995-08-31|1995-08-25|NONE|TRUCK|ix carefully sly| +31660|129573|17080|4|19|30448.83|0.00|0.02|N|O|1995-08-02|1995-08-02|1995-08-25|TAKE BACK RETURN|AIR|es around the furiousl| +31660|723608|48637|5|17|27736.69|0.03|0.02|N|O|1995-09-18|1995-08-29|1995-10-09|DELIVER IN PERSON|MAIL|efully silent foxes haggle slyly flu| +31660|675400|25401|6|11|15129.07|0.00|0.02|N|O|1995-08-08|1995-09-27|1995-09-05|NONE|SHIP|ep blithely | +31661|96213|33717|1|49|59251.29|0.06|0.04|R|F|1994-08-27|1994-08-06|1994-09-12|DELIVER IN PERSON|REG AIR|ions. ideas mold| +31661|46522|46523|2|20|29370.40|0.07|0.06|R|F|1994-06-13|1994-07-17|1994-07-10|DELIVER IN PERSON|AIR|counts cajole s| +31661|880171|42689|3|2|2302.26|0.10|0.04|A|F|1994-06-27|1994-07-13|1994-07-11|NONE|RAIL|ding accounts | +31661|30968|5969|4|5|9494.80|0.10|0.00|A|F|1994-07-23|1994-07-31|1994-08-20|TAKE BACK RETURN|FOB|ly regular dependencies. never sp| +31661|474085|49104|5|46|48716.76|0.04|0.08|R|F|1994-06-15|1994-06-22|1994-07-08|TAKE BACK RETURN|FOB|arefully ironic depths eat fl| +31661|935139|10176|6|19|22307.71|0.03|0.01|R|F|1994-08-11|1994-07-01|1994-09-09|COLLECT COD|MAIL|inal requests| +31661|878730|41248|7|26|44425.94|0.04|0.08|R|F|1994-06-19|1994-06-20|1994-07-10|NONE|REG AIR|special requests detect.| +31662|812206|24723|1|38|42490.08|0.07|0.02|A|F|1993-02-10|1992-12-01|1993-02-12|NONE|RAIL|se blithely. even | +31662|736373|48888|2|41|57782.94|0.08|0.07|A|F|1993-02-20|1993-01-18|1993-03-04|NONE|AIR| wake. carefully final packages nag| +31662|220764|20765|3|41|69074.75|0.06|0.03|R|F|1993-01-25|1992-12-07|1993-02-08|TAKE BACK RETURN|MAIL|n deposits breach carefully abo| +31662|376292|13814|4|46|62940.88|0.04|0.04|R|F|1993-02-07|1992-12-12|1993-02-26|NONE|RAIL|sly unusual instructio| +31662|333896|46403|5|7|13509.16|0.06|0.00|A|F|1992-12-25|1992-12-28|1992-12-27|NONE|REG AIR|sits. fluffily regular deposits was slyl| +31663|79025|41527|1|48|48192.96|0.01|0.03|A|F|1994-04-04|1994-04-08|1994-04-20|TAKE BACK RETURN|RAIL|special platelets are according to th| +31663|171663|21664|2|32|55509.12|0.03|0.00|A|F|1994-04-04|1994-06-01|1994-04-06|NONE|MAIL|y ironic packages. ex| +31663|138576|13581|3|29|46822.53|0.06|0.07|A|F|1994-04-21|1994-04-08|1994-05-06|DELIVER IN PERSON|RAIL|uffily pending fo| +31663|32723|45224|4|41|67884.52|0.02|0.06|R|F|1994-06-18|1994-05-16|1994-07-01|NONE|SHIP| x-ray special accounts. fluf| +31688|575384|25385|1|3|4378.08|0.08|0.01|N|O|1995-09-20|1995-08-07|1995-10-10|COLLECT COD|AIR|ely unusual | +31688|474453|49472|2|1|1427.43|0.05|0.06|N|O|1995-10-08|1995-08-29|1995-10-10|COLLECT COD|SHIP|ular requests. regular requests are evenly| +31689|714574|39603|1|9|14296.86|0.05|0.08|N|O|1995-11-19|1995-10-25|1995-12-14|NONE|SHIP|g to the pending, regular accounts. express| +31689|843664|31213|2|28|45013.36|0.10|0.05|N|O|1995-10-24|1995-10-02|1995-11-11|DELIVER IN PERSON|TRUCK|lithely alo| +31689|459287|21797|3|47|58574.22|0.10|0.07|N|O|1995-08-30|1995-11-12|1995-09-08|COLLECT COD|RAIL|ounts across the even requests poach c| +31689|222312|22313|4|11|13577.30|0.07|0.00|N|O|1995-10-31|1995-10-25|1995-11-17|TAKE BACK RETURN|AIR|ests. slyly regular | +31689|396904|46905|5|42|84037.38|0.00|0.07|N|O|1995-09-25|1995-11-19|1995-10-06|NONE|MAIL|fully bold hockey players. | +31690|884542|9577|1|4|6106.00|0.06|0.00|N|O|1996-01-31|1996-02-03|1996-02-19|COLLECT COD|AIR|lent attainments affix furiously regular p| +31690|492870|30398|2|21|39119.85|0.10|0.00|N|O|1995-12-17|1995-12-17|1995-12-31|TAKE BACK RETURN|TRUCK|ajole accordi| +31690|660979|36006|3|41|79537.54|0.02|0.03|N|O|1995-11-10|1996-01-06|1995-11-24|COLLECT COD|TRUCK|bout the carefully bold requests. furio| +31690|67710|30212|4|15|25165.65|0.05|0.06|N|O|1995-12-12|1995-12-13|1995-12-21|TAKE BACK RETURN|AIR|nic asymptotes above the s| +31690|996025|21064|5|45|50444.10|0.07|0.05|N|O|1995-12-19|1995-12-21|1996-01-03|COLLECT COD|REG AIR| blithely quiet instructions i| +31691|629077|29078|1|24|24144.96|0.07|0.00|N|O|1998-08-08|1998-09-15|1998-08-09|DELIVER IN PERSON|FOB|gle quickly acro| +31691|886588|11623|2|35|55108.90|0.01|0.04|N|O|1998-09-18|1998-09-02|1998-10-02|COLLECT COD|AIR|ously final instruc| +31692|871157|46192|1|2|2256.22|0.07|0.03|N|O|1997-07-12|1997-08-21|1997-07-15|NONE|FOB|kages nag blithely slyly iro| +31692|531603|44114|2|9|14711.22|0.05|0.05|N|O|1997-10-30|1997-08-30|1997-11-13|TAKE BACK RETURN|AIR|ke bold deposit| +31692|637063|37064|3|22|22000.66|0.04|0.02|N|O|1997-09-28|1997-08-28|1997-10-03|COLLECT COD|FOB|y according to the fluf| +31692|108062|20565|4|17|18191.02|0.08|0.08|N|O|1997-07-22|1997-08-09|1997-07-25|COLLECT COD|FOB|even requests haggle above the iron| +31692|182915|45419|5|33|65931.03|0.05|0.00|N|O|1997-09-18|1997-08-30|1997-10-07|DELIVER IN PERSON|MAIL| haggle. furiously ironic deposits boost qu| +31693|521983|34494|1|22|44109.12|0.00|0.03|R|F|1993-02-04|1993-01-13|1993-02-20|NONE|AIR|y pending deposits. ironi| +31693|960819|10820|2|6|11278.62|0.09|0.01|R|F|1993-02-03|1992-12-06|1993-02-13|DELIVER IN PERSON|REG AIR|y pending epitaphs boost care| +31693|475908|927|3|2|3767.76|0.06|0.00|A|F|1992-11-19|1993-01-05|1992-11-28|TAKE BACK RETURN|FOB|ly ruthless| +31693|576017|1040|4|32|34975.68|0.09|0.03|A|F|1993-02-04|1992-12-19|1993-03-03|NONE|REG AIR|usly. slyly ironic pinto beans| +31693|105409|30414|5|42|59404.80|0.02|0.05|R|F|1993-01-30|1993-01-02|1993-02-19|NONE|FOB|ow. carefully pending excuses haggle fur| +31693|608236|33261|6|7|8009.40|0.05|0.01|A|F|1992-11-20|1992-12-26|1992-12-07|DELIVER IN PERSON|TRUCK|refully quickly ironic requests-- | +31694|642146|4659|1|50|54405.50|0.04|0.08|A|F|1992-02-25|1992-05-07|1992-03-15|DELIVER IN PERSON|RAIL|pending accounts cajole carefully o| +31694|545420|32951|2|5|7327.00|0.06|0.00|A|F|1992-03-30|1992-03-30|1992-04-20|COLLECT COD|AIR|use around the final ideas. furious, spec| +31695|827364|27365|1|30|38739.60|0.08|0.08|N|O|1997-12-01|1997-12-24|1997-12-16|TAKE BACK RETURN|FOB|ly even packages haggle quickly quickly ev| +31695|501911|39442|2|3|5738.67|0.05|0.06|N|O|1998-01-05|1997-12-05|1998-01-23|NONE|AIR|ests! final, express ideas acco| +31720|834963|22512|1|37|70223.04|0.07|0.02|A|F|1994-09-21|1994-08-20|1994-10-03|DELIVER IN PERSON|TRUCK|uffily regul| +31720|208104|33113|2|45|45544.05|0.07|0.07|R|F|1994-10-31|1994-10-09|1994-11-05|TAKE BACK RETURN|FOB|nusual accounts poach fur| +31720|600650|651|3|31|48069.22|0.02|0.05|A|F|1994-07-27|1994-08-19|1994-08-05|DELIVER IN PERSON|REG AIR|efully about the blithely reg| +31720|119968|7475|4|2|3975.92|0.09|0.01|R|F|1994-11-07|1994-09-11|1994-12-05|COLLECT COD|REG AIR|counts wake c| +31720|287196|24712|5|41|48510.38|0.10|0.03|A|F|1994-10-08|1994-10-08|1994-10-14|NONE|AIR|inst the blithely r| +31721|831696|6729|1|39|63478.35|0.01|0.04|N|O|1998-06-02|1998-08-12|1998-06-10|COLLECT COD|SHIP|ly regular requests. furiously ironi| +31721|310749|23256|2|31|54551.63|0.00|0.01|N|O|1998-08-02|1998-07-03|1998-08-16|TAKE BACK RETURN|MAIL|gly requests. regul| +31721|755659|5660|3|33|56582.46|0.02|0.01|N|O|1998-09-20|1998-08-02|1998-10-16|NONE|REG AIR|cies wake furiously regular, iro| +31721|347515|22528|4|27|42187.50|0.07|0.01|N|O|1998-08-24|1998-07-18|1998-09-11|NONE|FOB|s cajole slyly along the regula| +31722|652320|2321|1|13|16539.77|0.01|0.04|A|F|1994-09-12|1994-09-12|1994-10-05|COLLECT COD|SHIP|ully alongside | +31722|530966|18497|2|37|73886.78|0.01|0.00|A|F|1994-08-05|1994-08-13|1994-08-20|DELIVER IN PERSON|AIR|y pending instructions breach| +31722|932891|45410|3|15|28857.75|0.00|0.00|R|F|1994-07-01|1994-08-30|1994-07-12|NONE|AIR|ly. blithely silent reques| +31722|85991|48493|4|18|35585.82|0.08|0.03|A|F|1994-09-06|1994-08-16|1994-09-20|COLLECT COD|FOB|ul theodolites cajole furiously eve| +31722|250117|118|5|29|30945.90|0.01|0.08|R|F|1994-08-28|1994-07-30|1994-08-31|DELIVER IN PERSON|AIR|olites. furiously even pinto| +31722|707237|32266|6|25|31105.00|0.02|0.02|R|F|1994-07-05|1994-08-04|1994-07-23|NONE|SHIP|r theodolites. | +31723|729087|41602|1|8|8928.40|0.09|0.07|N|O|1995-12-13|1995-10-11|1995-12-31|COLLECT COD|AIR| forges alo| +31723|756955|6956|2|18|36214.56|0.08|0.05|N|O|1995-10-18|1995-10-30|1995-10-26|COLLECT COD|FOB|he unusual, permane| +31723|129459|41962|3|19|28280.55|0.07|0.04|N|O|1995-12-24|1995-11-01|1996-01-15|TAKE BACK RETURN|AIR|ven requests after the carefully regular p| +31723|805976|5977|4|30|56457.90|0.10|0.08|N|O|1995-10-30|1995-11-13|1995-11-03|COLLECT COD|AIR|x slyly across the even accou| +31723|23474|48475|5|14|19564.58|0.07|0.01|N|O|1995-10-08|1995-12-04|1995-11-03|NONE|AIR|kages-- fluffily express pinto beans nod f| +31723|515841|15842|6|27|50134.14|0.06|0.05|N|O|1995-12-22|1995-10-13|1996-01-05|COLLECT COD|RAIL|f the accounts. un| +31723|723589|11132|7|32|51601.60|0.08|0.03|N|O|1995-09-27|1995-11-06|1995-10-03|NONE|AIR|lyly regular packages detect slyly. re| +31724|352476|14984|1|24|36683.04|0.04|0.08|N|O|1997-11-18|1998-01-04|1997-11-23|COLLECT COD|TRUCK|ages haggle r| +31724|62419|37422|2|16|22102.56|0.07|0.06|N|O|1997-12-05|1997-11-16|1997-12-17|TAKE BACK RETURN|SHIP|y quick accounts: slyly even request| +31724|65014|40017|3|34|33286.34|0.05|0.03|N|O|1998-01-01|1997-12-03|1998-01-26|NONE|MAIL|kages along the carefully | +31724|683428|33429|4|21|29639.19|0.03|0.07|N|O|1997-12-10|1997-12-25|1997-12-13|DELIVER IN PERSON|FOB|y final deposit| +31724|371188|8710|5|8|10073.36|0.03|0.07|N|O|1998-01-27|1997-11-08|1998-02-04|TAKE BACK RETURN|TRUCK|ng to the slyly unusual i| +31724|555981|43515|6|46|93700.16|0.00|0.02|N|O|1997-10-31|1997-12-18|1997-11-30|COLLECT COD|RAIL|counts. fluffily special deposits hag| +31725|298057|10563|1|24|25320.96|0.04|0.07|N|O|1997-11-23|1997-12-20|1997-12-03|TAKE BACK RETURN|AIR|l requests. blithely ironic| +31725|429729|42238|2|19|31515.30|0.04|0.03|N|O|1997-10-21|1997-12-04|1997-11-01|NONE|AIR|hely regular foxes sleep care| +31725|448626|11135|3|11|17320.60|0.08|0.07|N|O|1997-12-14|1997-11-24|1997-12-20|TAKE BACK RETURN|AIR|s on the carefully ironic packages boost fu| +31726|902084|14603|1|15|16290.60|0.00|0.07|N|O|1997-05-03|1997-05-12|1997-05-31|DELIVER IN PERSON|TRUCK|ites cajole. courts wake idly o| +31726|319854|32361|2|18|33729.12|0.08|0.08|N|O|1997-07-06|1997-04-16|1997-07-08|TAKE BACK RETURN|MAIL|the blithely regul| +31726|784289|21835|3|6|8239.50|0.01|0.06|N|O|1997-06-07|1997-05-18|1997-07-01|TAKE BACK RETURN|TRUCK|! even, unusu| +31726|536802|24333|4|2|3677.56|0.02|0.01|N|O|1997-05-29|1997-05-17|1997-05-31|NONE|AIR|riously beside the pending dependencies. s| +31727|331511|6524|1|46|70955.00|0.01|0.04|R|F|1993-11-12|1993-11-29|1993-12-07|DELIVER IN PERSON|AIR|ost carefully slyly ironi| +31727|700711|13226|2|19|32521.92|0.07|0.01|A|F|1993-11-25|1993-10-20|1993-12-25|NONE|FOB|f the quickly pending reques| +31727|835175|47692|3|45|49955.85|0.05|0.03|R|F|1993-11-12|1993-11-10|1993-11-25|DELIVER IN PERSON|REG AIR|its beneath the slyly unusual gift| +31727|782384|32385|4|17|24927.95|0.01|0.02|R|F|1993-10-06|1993-10-15|1993-10-30|TAKE BACK RETURN|RAIL| ironically regular requests| +31727|513882|1413|5|37|70146.82|0.02|0.02|R|F|1993-10-04|1993-12-01|1993-10-28|NONE|REG AIR|rash. theodolites alongside of| +31727|803798|41347|6|26|44245.50|0.08|0.03|A|F|1993-12-22|1993-10-26|1993-12-26|COLLECT COD|REG AIR|detect regular asymptotes. fina| +31752|86251|23755|1|21|25982.25|0.10|0.03|N|O|1997-04-06|1997-04-16|1997-04-30|COLLECT COD|RAIL|ickly ideas. even hockey players was| +31752|609209|34234|2|45|50317.65|0.05|0.07|N|O|1997-05-09|1997-05-04|1997-05-17|COLLECT COD|FOB|l packages. | +31752|966788|29308|3|28|51932.72|0.10|0.05|N|O|1997-03-16|1997-04-08|1997-04-05|DELIVER IN PERSON|AIR|fully slow ideas| +31752|790349|15380|4|29|41739.99|0.05|0.04|N|O|1997-04-13|1997-04-27|1997-05-05|TAKE BACK RETURN|REG AIR|ackages. pending instructions af| +31752|386315|23837|5|49|68663.70|0.01|0.01|N|O|1997-05-03|1997-05-25|1997-05-22|TAKE BACK RETURN|FOB|silent deposits promi| +31753|481092|31093|1|27|28972.89|0.01|0.07|A|F|1992-05-02|1992-03-30|1992-05-30|NONE|TRUCK|y ruthless foxes use furiously after the | +31753|699152|11666|2|47|54102.64|0.01|0.02|A|F|1992-01-17|1992-03-06|1992-02-05|DELIVER IN PERSON|TRUCK|ar foxes sleep. carefully | +31753|631481|19018|3|30|42373.50|0.02|0.01|A|F|1992-01-26|1992-02-23|1992-02-15|NONE|FOB|ages across| +31753|299306|11812|4|25|32632.25|0.06|0.06|A|F|1992-05-04|1992-02-19|1992-05-26|COLLECT COD|REG AIR|express dolphins along the pending ideas | +31754|484689|9708|1|6|10041.96|0.08|0.06|N|O|1996-11-06|1996-11-02|1996-11-20|COLLECT COD|RAIL|ges. special ti| +31754|165367|15368|2|17|24350.12|0.02|0.01|N|O|1997-01-13|1996-12-20|1997-02-10|DELIVER IN PERSON|REG AIR|l platelets. blithely iro| +31754|321164|21165|3|36|42665.40|0.02|0.05|N|O|1997-01-28|1996-12-21|1997-02-08|TAKE BACK RETURN|SHIP| evenly unusual theodo| +31754|794372|31918|4|14|20528.76|0.10|0.07|N|O|1996-12-10|1996-12-26|1996-12-29|COLLECT COD|MAIL|ace of the special dependenc| +31754|995322|7842|5|13|18424.64|0.10|0.01|N|O|1997-01-03|1996-11-13|1997-01-08|TAKE BACK RETURN|RAIL|p carefully accounts. blithely final reques| +31755|307778|45297|1|5|8928.80|0.03|0.00|R|F|1992-11-11|1992-10-13|1992-11-28|NONE|TRUCK|each carefully. caref| +31755|813303|38336|2|29|35271.54|0.08|0.07|A|F|1992-12-14|1992-10-31|1993-01-05|NONE|SHIP|arefully bold req| +31755|180801|43305|3|11|20699.80|0.10|0.01|R|F|1992-10-31|1992-09-21|1992-11-03|COLLECT COD|AIR|tions about the deposits use blit| +31755|720695|20696|4|9|15440.94|0.07|0.03|R|F|1992-10-15|1992-10-16|1992-10-20|DELIVER IN PERSON|AIR|ugouts. unusual packages | +31755|705925|30954|5|48|92682.72|0.07|0.03|A|F|1992-10-23|1992-10-22|1992-11-05|COLLECT COD|RAIL|nt ideas are. | +31755|475750|13278|6|23|39691.79|0.00|0.00|A|F|1992-10-11|1992-09-28|1992-10-26|COLLECT COD|FOB| unusual requests. sly| +31756|50829|830|1|31|55174.42|0.04|0.00|R|F|1992-09-29|1992-09-14|1992-10-20|NONE|MAIL|heodolites afte| +31756|267192|42203|2|41|47526.38|0.08|0.04|A|F|1992-11-11|1992-09-17|1992-11-17|COLLECT COD|AIR|ess theodo| +31756|686501|49015|3|4|5949.88|0.05|0.02|A|F|1992-09-27|1992-10-11|1992-10-15|DELIVER IN PERSON|RAIL|requests among the ruthless asymptotes d| +31756|16100|3601|4|34|34547.40|0.09|0.08|R|F|1992-10-03|1992-10-29|1992-10-23|NONE|MAIL|lithely special requests sleep furiou| +31756|584665|9688|5|19|33243.16|0.03|0.02|A|F|1992-11-10|1992-10-06|1992-11-23|COLLECT COD|TRUCK|special courts. furiously express cou| +31757|990051|40052|1|46|52486.46|0.10|0.02|N|O|1997-12-27|1998-02-10|1998-01-05|NONE|MAIL|s nag quickly. regular theodol| +31757|771981|47012|2|3|6158.85|0.01|0.01|N|O|1997-12-26|1998-02-10|1998-01-01|NONE|SHIP|ily pending grouches cajole quickly regu| +31758|736013|23556|1|2|2097.96|0.07|0.02|A|F|1994-09-20|1994-07-23|1994-09-28|COLLECT COD|AIR|requests. fu| +31758|163037|38044|2|34|37401.02|0.03|0.08|R|F|1994-05-29|1994-07-06|1994-06-20|TAKE BACK RETURN|AIR|. ideas promise quickly about the| +31758|155203|42713|3|28|35229.60|0.01|0.02|A|F|1994-07-12|1994-08-11|1994-07-28|NONE|SHIP|kly even deposits. regular| +31758|480437|5456|4|30|42522.30|0.04|0.00|R|F|1994-08-14|1994-08-04|1994-09-01|COLLECT COD|SHIP| enticing packages cajole furiously| +31758|700747|748|5|46|80394.66|0.10|0.02|R|F|1994-06-24|1994-08-11|1994-07-01|NONE|RAIL|c waters. courts use. sly| +31758|446266|33791|6|14|16971.36|0.10|0.02|A|F|1994-08-01|1994-06-27|1994-08-02|DELIVER IN PERSON|FOB|arefully ironic deposits? bli| +31758|384420|34421|7|16|24070.56|0.10|0.04|R|F|1994-07-09|1994-08-06|1994-07-26|DELIVER IN PERSON|REG AIR|ess, ironic foxes. regular, express request| +31759|933044|33045|1|15|16155.00|0.07|0.00|R|F|1994-06-19|1994-07-24|1994-07-12|NONE|TRUCK|ly careful somas are| +31784|142323|42324|1|39|53247.48|0.07|0.04|N|O|1996-03-27|1996-06-07|1996-04-02|COLLECT COD|TRUCK|ses promise c| +31784|14725|2226|2|16|26235.52|0.09|0.05|N|O|1996-04-04|1996-04-29|1996-04-10|DELIVER IN PERSON|RAIL| boost carefully about the furiously| +31784|472011|34521|3|38|37353.62|0.00|0.03|N|O|1996-04-29|1996-05-21|1996-05-01|TAKE BACK RETURN|FOB|hely final re| +31784|86281|11284|4|20|25345.60|0.09|0.02|N|O|1996-05-23|1996-05-07|1996-06-16|COLLECT COD|RAIL| the quickly express requests b| +31784|124114|24115|5|41|46662.51|0.06|0.00|N|O|1996-07-11|1996-04-11|1996-07-14|COLLECT COD|FOB| slyly express, even packages. fluff| +31784|969407|44446|6|45|66436.20|0.09|0.02|N|O|1996-05-28|1996-04-22|1996-06-07|TAKE BACK RETURN|FOB|ously unusual theodolites. slyly pending | +31785|437144|12161|1|31|33514.72|0.09|0.01|N|F|1995-06-14|1995-07-28|1995-06-20|NONE|AIR|kages affix| +31785|78329|3332|2|27|35297.64|0.09|0.06|N|O|1995-09-14|1995-07-20|1995-09-28|COLLECT COD|SHIP|ns haggle blithely. furiously ironic req| +31785|466092|41111|3|2|2116.14|0.07|0.01|N|O|1995-06-22|1995-07-17|1995-07-08|NONE|FOB|tainments wake| +31785|593437|30971|4|42|64277.22|0.01|0.01|N|F|1995-05-27|1995-07-31|1995-06-25|DELIVER IN PERSON|MAIL|al requests wake quickly | +31786|407266|7267|1|15|17598.60|0.08|0.02|R|F|1994-07-24|1994-06-27|1994-08-15|NONE|SHIP|closely above| +31786|918786|43823|2|2|3609.48|0.02|0.06|A|F|1994-07-16|1994-06-08|1994-07-23|COLLECT COD|SHIP|deposits after the accounts | +31786|29751|29752|3|44|73953.00|0.05|0.07|A|F|1994-08-22|1994-07-25|1994-09-06|TAKE BACK RETURN|MAIL|ests across the deposits haggle q| +31786|18413|18414|4|26|34616.66|0.00|0.07|A|F|1994-07-03|1994-07-19|1994-07-30|DELIVER IN PERSON|SHIP| furiously along the close packages. | +31786|459799|34818|5|29|51004.33|0.01|0.03|A|F|1994-07-23|1994-07-05|1994-07-30|NONE|AIR|nal instruc| +31786|826584|1617|6|9|13594.86|0.02|0.08|A|F|1994-05-16|1994-07-24|1994-06-05|DELIVER IN PERSON|AIR|he packages nag fu| +31786|383499|33500|7|40|63299.20|0.02|0.01|A|F|1994-07-22|1994-07-09|1994-07-26|DELIVER IN PERSON|FOB|posits was carefully | +31787|466691|16692|1|11|18234.37|0.06|0.04|R|F|1993-09-18|1993-08-05|1993-10-05|DELIVER IN PERSON|TRUCK| the idle deposits haggle after the ir| +31787|660887|10888|2|8|14782.80|0.10|0.03|A|F|1993-06-30|1993-07-22|1993-07-11|DELIVER IN PERSON|TRUCK|mptotes. furiously regular accounts| +31787|521517|34028|3|37|56924.13|0.08|0.05|A|F|1993-09-14|1993-07-25|1993-10-08|DELIVER IN PERSON|MAIL|regular, bold deposits aff| +31787|127523|15030|4|47|72874.44|0.10|0.01|A|F|1993-07-20|1993-08-08|1993-07-24|DELIVER IN PERSON|RAIL|ges wake. quiet as| +31787|276822|39328|5|15|26982.15|0.00|0.04|A|F|1993-06-22|1993-08-03|1993-07-18|TAKE BACK RETURN|SHIP|gular courts about the carefully even re| +31787|543112|5623|6|42|48513.78|0.00|0.02|A|F|1993-08-03|1993-07-18|1993-08-07|DELIVER IN PERSON|FOB|ans. finally regular ideas shall hav| +31787|68119|30621|7|12|13045.32|0.00|0.08|A|F|1993-09-15|1993-09-01|1993-09-27|NONE|MAIL|ven requests sleep quickly according | +31788|871819|9371|1|6|10744.62|0.03|0.05|N|O|1996-10-07|1996-10-02|1996-10-24|NONE|SHIP|y ironic instructions thr| +31788|646957|34494|2|9|17135.28|0.08|0.07|N|O|1996-10-10|1996-08-28|1996-10-20|NONE|RAIL| dolphins along t| +31788|391447|3955|3|50|76921.50|0.07|0.08|N|O|1996-09-06|1996-08-27|1996-10-04|TAKE BACK RETURN|REG AIR|hely permanent| +31789|355894|30909|1|43|83844.84|0.10|0.05|R|F|1993-01-22|1993-01-19|1993-02-17|NONE|TRUCK|ily express excuses according| +31789|501763|39294|2|24|42353.76|0.07|0.01|R|F|1993-01-15|1993-01-09|1993-02-04|NONE|SHIP|ously bold dep| +31789|120519|33022|3|6|9237.06|0.03|0.02|R|F|1993-01-14|1993-02-09|1993-02-06|DELIVER IN PERSON|RAIL|are slyly alongside of the quickly express | +31789|553319|3320|4|4|5489.16|0.05|0.02|R|F|1992-12-15|1993-02-25|1993-01-06|TAKE BACK RETURN|AIR|es affix carefully furiously final platele| +31789|629952|17489|5|46|86568.32|0.00|0.01|A|F|1993-01-30|1993-01-07|1993-02-14|TAKE BACK RETURN|FOB|ts along the| +31789|594167|19190|6|41|51706.74|0.06|0.06|A|F|1993-03-16|1993-03-06|1993-04-10|COLLECT COD|REG AIR|egular requests. even deposits about | +31789|159189|9190|7|33|41189.94|0.08|0.02|A|F|1993-02-23|1993-02-11|1993-03-13|COLLECT COD|RAIL| excuses. fluffily brave packages| +31790|474690|37200|1|12|19976.04|0.09|0.08|R|F|1992-08-16|1992-08-08|1992-09-11|DELIVER IN PERSON|MAIL|refully regular ideas. even asy| +31790|111822|24325|2|21|38510.22|0.02|0.06|A|F|1992-08-10|1992-08-13|1992-08-12|TAKE BACK RETURN|RAIL|aggle slyly blith| +31790|385417|47925|3|49|73617.60|0.09|0.01|R|F|1992-07-23|1992-07-30|1992-08-10|COLLECT COD|AIR|s. carefull| +31790|701893|1894|4|7|13264.02|0.05|0.07|A|F|1992-06-18|1992-07-30|1992-07-04|TAKE BACK RETURN|AIR|ans alongside of the carefully re| +31790|713464|25979|5|42|62052.06|0.03|0.06|A|F|1992-06-22|1992-08-11|1992-07-16|DELIVER IN PERSON|SHIP|ronic deposits af| +31791|777672|15218|1|45|78733.80|0.09|0.03|R|F|1993-09-09|1993-07-13|1993-09-14|DELIVER IN PERSON|FOB|ges. furiousl| +31791|326005|13524|2|22|22681.78|0.04|0.01|R|F|1993-06-29|1993-07-20|1993-07-23|COLLECT COD|AIR| the quickly unusual foxes wake bo| +31791|151116|13620|3|37|43183.07|0.09|0.06|R|F|1993-09-27|1993-08-14|1993-10-01|COLLECT COD|TRUCK|equests sleep caref| +31791|794468|6984|4|10|15624.30|0.07|0.03|R|F|1993-09-14|1993-08-05|1993-09-17|COLLECT COD|MAIL|ar deposits; thinly special pinto beans ha| +31791|607538|7539|5|50|72275.00|0.07|0.03|A|F|1993-09-09|1993-08-14|1993-10-08|TAKE BACK RETURN|RAIL|ly bold theodolites. depos| +31791|883090|20642|6|3|3219.15|0.03|0.01|A|F|1993-07-08|1993-08-11|1993-07-14|DELIVER IN PERSON|AIR|l theodolites. fina| +31791|89030|39031|7|9|9171.27|0.00|0.03|A|F|1993-07-10|1993-07-19|1993-07-22|COLLECT COD|FOB|ches. express acco| +31816|317654|17655|1|1|1671.64|0.00|0.05|N|O|1996-12-21|1996-11-28|1997-01-13|NONE|RAIL|sual pinto beans. unusual grouches boos| +31816|798676|36222|2|25|44366.00|0.06|0.06|N|O|1996-11-01|1996-10-21|1996-11-12|DELIVER IN PERSON|TRUCK|, pending theodolites. caref| +31816|335267|22786|3|26|33858.50|0.08|0.00|N|O|1996-10-03|1996-11-24|1996-10-31|NONE|AIR| quickly regular foxes | +31816|817546|17547|4|27|39514.50|0.10|0.01|N|O|1996-12-05|1996-10-17|1996-12-15|NONE|FOB|y furiousl| +31816|479871|4890|5|5|9254.25|0.03|0.03|N|O|1996-11-25|1996-10-29|1996-12-24|NONE|REG AIR|to the quickly pending excuses sublate | +31817|711787|24302|1|41|73748.75|0.10|0.00|N|O|1997-02-14|1997-02-02|1997-03-05|DELIVER IN PERSON|MAIL|ial deposits doze furiously even requests.| +31817|1005|13506|2|17|15402.00|0.09|0.05|N|O|1996-12-27|1997-01-17|1997-01-03|NONE|FOB|ts-- final pinto be| +31817|885870|23422|3|9|16702.47|0.09|0.07|N|O|1997-03-07|1997-01-03|1997-03-31|NONE|AIR|sual accounts ar| +31818|801014|1015|1|26|23789.22|0.00|0.00|N|O|1997-12-15|1997-09-26|1997-12-18|DELIVER IN PERSON|FOB|ake carefully about the| +31818|629205|41718|2|15|17012.55|0.10|0.03|N|O|1997-12-02|1997-11-09|1997-12-27|COLLECT COD|SHIP|ns sleep after the carefull| +31818|37392|24893|3|27|35893.53|0.03|0.00|N|O|1997-11-05|1997-10-16|1997-11-08|TAKE BACK RETURN|RAIL|carefully ironic foxes | +31819|423124|23125|1|22|23036.20|0.05|0.05|N|O|1997-08-09|1997-07-25|1997-08-16|COLLECT COD|SHIP|ular requests. f| +31819|437362|37363|2|9|11694.06|0.10|0.08|N|O|1997-09-30|1997-08-20|1997-10-13|TAKE BACK RETURN|MAIL|kly slyly even requests. blithely| +31819|738769|38770|3|35|63270.55|0.02|0.07|N|O|1997-07-30|1997-07-27|1997-08-21|NONE|MAIL|inments. theodolites acro| +31820|204823|42336|1|47|81207.07|0.09|0.08|R|F|1992-09-17|1992-09-23|1992-09-19|COLLECT COD|SHIP|es maintain quickly ca| +31820|456538|31557|2|6|8967.06|0.10|0.06|A|F|1992-07-16|1992-08-13|1992-07-23|TAKE BACK RETURN|AIR|ent deposits. slyly special acco| +31820|20054|32555|3|42|40910.10|0.08|0.08|R|F|1992-10-13|1992-08-03|1992-11-03|DELIVER IN PERSON|TRUCK|rave pinto beans de| +31820|34539|9540|4|39|57467.67|0.03|0.08|R|F|1992-10-28|1992-08-22|1992-11-17|NONE|FOB|. accounts poach quickly| +31821|861668|24186|1|35|57036.70|0.05|0.04|A|F|1992-07-31|1992-07-02|1992-08-06|NONE|MAIL| haggle slyly. quickly bo| +31822|583660|33661|1|22|38360.08|0.01|0.02|N|O|1996-04-16|1996-04-20|1996-04-18|NONE|RAIL|st blithely reg| +31822|566988|42011|2|24|49319.04|0.02|0.00|N|O|1996-06-06|1996-05-14|1996-07-06|NONE|AIR|osits sleep blithely. final idea| +31822|365164|27672|3|47|57770.05|0.07|0.02|N|O|1996-03-30|1996-04-26|1996-04-01|TAKE BACK RETURN|TRUCK|carefully final requests wake. qu| +31822|301171|1172|4|10|11721.60|0.03|0.04|N|O|1996-05-29|1996-05-27|1996-06-10|NONE|TRUCK|special, even dependencies. final platele| +31822|764480|39511|5|19|29344.55|0.09|0.06|N|O|1996-05-29|1996-05-23|1996-06-19|NONE|AIR|usly special instructions lose blithely | +31822|612571|25084|6|19|28187.26|0.10|0.03|N|O|1996-03-13|1996-04-26|1996-03-18|DELIVER IN PERSON|FOB|e. courts are final instructions. final d| +31822|467750|17751|7|31|53249.63|0.02|0.03|N|O|1996-03-29|1996-05-16|1996-04-03|TAKE BACK RETURN|SHIP|ly pending acco| +31823|465055|2583|1|24|24480.72|0.09|0.06|R|F|1994-09-16|1994-10-02|1994-10-07|NONE|MAIL|across the care| +31823|178075|40579|2|35|40357.45|0.09|0.03|R|F|1994-09-02|1994-10-07|1994-09-20|COLLECT COD|AIR|uctions sleep slyly. silent request| +31823|896958|9476|3|45|87970.95|0.06|0.08|R|F|1994-08-15|1994-09-12|1994-08-17|DELIVER IN PERSON|FOB|al instructions boost | +31823|168684|31188|4|3|5258.04|0.10|0.04|R|F|1994-08-28|1994-10-18|1994-09-13|TAKE BACK RETURN|AIR| enticingly pending dugouts. ir| +31848|597037|34571|1|31|35154.31|0.07|0.03|R|F|1992-07-12|1992-06-10|1992-07-27|COLLECT COD|MAIL|nal accounts. fluffily ironic packa| +31849|108018|20521|1|35|35910.35|0.01|0.01|A|F|1992-10-13|1992-10-14|1992-10-20|COLLECT COD|RAIL|ages above the ruthless theodolites r| +31850|921307|46344|1|24|31878.24|0.09|0.01|N|O|1997-05-11|1997-04-16|1997-05-31|NONE|SHIP| serve carefully regular warhorse| +31850|405369|17878|2|24|30584.16|0.05|0.00|N|O|1997-03-10|1997-04-10|1997-03-31|NONE|REG AIR|lar, ironic ideas cajole| +31850|31567|19068|3|49|73429.44|0.03|0.00|N|O|1997-03-16|1997-04-21|1997-04-01|NONE|TRUCK|affix furiously. ironic, ruthless inst| +31850|541848|29379|4|11|20788.02|0.06|0.01|N|O|1997-02-16|1997-02-27|1997-02-27|COLLECT COD|SHIP|ular packages. slyly| +31851|182908|20418|1|12|23890.80|0.04|0.04|N|O|1997-06-22|1997-06-11|1997-06-24|DELIVER IN PERSON|MAIL|ctions. slyly regul| +31852|198528|36038|1|24|39036.48|0.01|0.08|N|O|1997-06-07|1997-05-29|1997-06-27|COLLECT COD|RAIL|usly even packages are. fina| +31853|533428|45939|1|1|1461.40|0.08|0.01|N|O|1998-08-02|1998-10-09|1998-08-18|COLLECT COD|TRUCK|s haggle sometimes about the | +31853|308095|45614|2|30|33092.40|0.04|0.05|N|O|1998-08-05|1998-10-27|1998-08-29|DELIVER IN PERSON|TRUCK|ress instructi| +31853|149838|24843|3|3|5663.49|0.00|0.00|N|O|1998-09-23|1998-09-04|1998-09-26|COLLECT COD|MAIL|es are quick deposits. slyl| +31853|326251|1264|4|3|3831.72|0.08|0.08|N|O|1998-08-23|1998-10-02|1998-09-21|NONE|SHIP|regular foxes wake quietly bold de| +31854|753863|16379|1|8|15334.64|0.03|0.08|R|F|1994-10-08|1994-11-01|1994-10-10|COLLECT COD|AIR|timents. even platelets cajole! sly| +31854|175108|37612|2|18|21295.80|0.09|0.08|R|F|1994-11-01|1994-09-13|1994-11-12|TAKE BACK RETURN|FOB|the pending dep| +31854|36224|36225|3|18|20883.96|0.09|0.03|A|F|1994-10-24|1994-10-25|1994-10-29|NONE|AIR| packages; ironic packages nag about the s| +31854|809563|9564|4|12|17670.24|0.03|0.03|R|F|1994-10-26|1994-09-17|1994-10-29|COLLECT COD|TRUCK|l accounts are slyly | +31854|322284|22285|5|20|26125.40|0.07|0.01|A|F|1994-08-28|1994-09-24|1994-09-07|TAKE BACK RETURN|TRUCK|onic braids sleep furiously theodolites| +31855|399390|24405|1|46|68511.48|0.03|0.07|N|O|1997-09-12|1997-08-28|1997-09-13|TAKE BACK RETURN|TRUCK|packages. pending, slow attainments haggle | +31880|899223|36775|1|21|25665.78|0.01|0.04|A|F|1992-11-13|1992-11-05|1992-12-09|DELIVER IN PERSON|FOB|out the permanently unusua| +31880|227473|2482|2|28|39212.88|0.04|0.06|A|F|1992-11-29|1992-11-05|1992-12-17|DELIVER IN PERSON|FOB|ag. furiously final instructions cajole| +31881|116621|16622|1|38|62229.56|0.03|0.07|R|F|1995-02-16|1995-04-03|1995-03-11|TAKE BACK RETURN|FOB| the furiously regular| +31881|40191|15192|2|25|28279.75|0.09|0.02|A|F|1995-03-11|1995-04-10|1995-03-31|COLLECT COD|TRUCK|s. furiously| +31881|482207|32208|3|2|2378.36|0.00|0.06|R|F|1995-02-01|1995-02-15|1995-02-08|DELIVER IN PERSON|AIR|ss courts wake | +31881|451031|38559|4|36|35352.36|0.05|0.02|R|F|1995-04-24|1995-03-16|1995-05-20|NONE|MAIL|long the ironic, even pinto beans thrash sl| +31881|461881|11882|5|38|70028.68|0.04|0.06|A|F|1995-02-25|1995-02-21|1995-03-19|TAKE BACK RETURN|SHIP|unts. fluffily ironic accounts across| +31882|371117|46132|1|34|40395.40|0.02|0.02|N|O|1998-01-25|1997-11-28|1998-02-04|DELIVER IN PERSON|TRUCK|eaves integrate against the regular, | +31882|352638|40160|2|28|47337.36|0.08|0.01|N|O|1997-11-07|1997-12-06|1997-12-04|DELIVER IN PERSON|RAIL|ies are furiously according| +31882|773559|23560|3|50|81626.00|0.08|0.00|N|O|1997-12-23|1997-12-20|1998-01-09|TAKE BACK RETURN|RAIL|round the slyly pending packa| +31882|201743|1744|4|49|80591.77|0.00|0.06|N|O|1997-11-13|1997-11-22|1997-11-28|TAKE BACK RETURN|FOB|es wake blithely ironic, silent theodo| +31883|236870|11879|1|18|32523.48|0.06|0.05|R|F|1993-01-25|1992-12-31|1993-01-29|DELIVER IN PERSON|TRUCK|ecial requests. slyly r| +31883|70604|33106|2|43|67707.80|0.08|0.02|A|F|1993-03-11|1993-02-21|1993-03-24|NONE|MAIL|g requests. furiously special req| +31883|635164|22701|3|39|42866.07|0.00|0.08|R|F|1993-03-12|1993-02-05|1993-04-09|NONE|RAIL|s the express packages sl| +31883|195869|20876|4|15|29472.90|0.01|0.04|A|F|1993-02-06|1993-01-20|1993-03-07|COLLECT COD|AIR|s sleep blithe| +31883|957930|7931|5|48|95418.72|0.00|0.02|R|F|1993-01-04|1993-01-10|1993-01-24|NONE|RAIL|bold deposi| +31883|920002|20003|6|42|42922.32|0.06|0.05|R|F|1993-03-07|1992-12-27|1993-03-22|COLLECT COD|MAIL|ckages. bold fox| +31883|460011|22521|7|16|15535.84|0.06|0.08|A|F|1992-12-27|1993-01-12|1992-12-28|COLLECT COD|REG AIR|o beans. even theodolites | +31884|390556|40557|1|20|32930.80|0.03|0.06|A|F|1993-10-13|1993-09-27|1993-11-08|TAKE BACK RETURN|AIR|ts sleep sl| +31884|61464|23966|2|14|19956.44|0.06|0.01|R|F|1993-09-29|1993-10-07|1993-10-19|NONE|TRUCK|unts haggle behind the fluffi| +31884|18312|18313|3|10|12303.10|0.09|0.06|R|F|1993-09-06|1993-08-12|1993-09-20|NONE|TRUCK|ts. furiously regu| +31884|757962|45508|4|29|58577.97|0.07|0.05|R|F|1993-09-26|1993-09-01|1993-09-30|DELIVER IN PERSON|RAIL|ly against the quick| +31884|66090|3594|5|24|25346.16|0.00|0.05|A|F|1993-09-01|1993-09-06|1993-09-12|TAKE BACK RETURN|FOB|e furiously final epitaphs. even, final | +31885|957879|45437|1|17|32926.11|0.02|0.06|A|F|1995-05-05|1995-03-15|1995-05-16|NONE|AIR|pecial accounts nag fu| +31886|76267|1270|1|45|55946.70|0.00|0.03|A|F|1994-08-03|1994-07-15|1994-08-14|TAKE BACK RETURN|RAIL|ites. deposits| +31886|807900|32933|2|17|30733.62|0.08|0.04|R|F|1994-05-07|1994-06-02|1994-05-30|DELIVER IN PERSON|FOB|ntegrate care| +31887|151922|1923|1|30|59217.60|0.04|0.02|N|O|1996-12-14|1997-01-27|1996-12-23|NONE|SHIP|ular tithes nag slyly e| +31887|342813|30332|2|28|51962.40|0.10|0.00|N|O|1997-01-08|1997-02-16|1997-01-29|DELIVER IN PERSON|RAIL|eas. slyly si| +31912|976065|38585|1|32|36512.64|0.06|0.00|A|F|1993-08-17|1993-10-13|1993-08-27|DELIVER IN PERSON|MAIL|ious warhorses slee| +31912|711887|36916|2|9|17089.65|0.01|0.04|R|F|1993-11-03|1993-10-16|1993-11-10|COLLECT COD|MAIL|le according to the fur| +31912|677460|15000|3|44|63246.92|0.06|0.06|A|F|1993-10-05|1993-09-19|1993-11-02|NONE|RAIL|uriously; ideas need| +31913|184985|34986|1|24|49679.52|0.09|0.04|N|O|1997-03-15|1997-02-26|1997-03-30|NONE|RAIL| deposits. furiously specia| +31914|270065|20066|1|8|8280.40|0.09|0.05|A|F|1995-05-21|1995-04-11|1995-06-06|DELIVER IN PERSON|RAIL|as among the quickly express grouches| +31914|976632|14190|2|2|3417.18|0.07|0.03|R|F|1995-04-28|1995-04-17|1995-05-02|COLLECT COD|SHIP|uriously ironic courts will hagg| +31914|240359|2864|3|33|42878.22|0.01|0.01|N|O|1995-07-09|1995-05-26|1995-07-18|NONE|MAIL|dugouts sleep carefu| +31914|698382|48383|4|49|67637.15|0.04|0.07|R|F|1995-04-24|1995-06-02|1995-04-27|DELIVER IN PERSON|AIR|he furiously regular deposits. | +31915|663189|38216|1|36|41477.40|0.08|0.00|A|F|1993-06-02|1993-04-25|1993-06-21|TAKE BACK RETURN|TRUCK|riously final dependencies. fina| +31915|205468|42981|2|48|65925.60|0.04|0.08|A|F|1993-04-29|1993-05-04|1993-04-30|DELIVER IN PERSON|RAIL|the quickly even packages hang slyly slyly | +31915|292162|42163|3|9|10387.35|0.10|0.02|A|F|1993-04-10|1993-04-04|1993-04-17|DELIVER IN PERSON|RAIL|e furiously. final| +31915|350814|25829|4|5|9324.00|0.09|0.06|A|F|1993-03-18|1993-05-07|1993-04-11|DELIVER IN PERSON|TRUCK|y. furiously special packages are s| +31916|411688|24197|1|7|11197.62|0.09|0.06|N|O|1996-02-01|1996-03-30|1996-02-20|COLLECT COD|RAIL|es. deposits haggle furiously fi| +31916|226906|39411|2|24|43989.36|0.01|0.01|N|O|1996-01-22|1996-04-13|1996-02-19|COLLECT COD|REG AIR| requests haggle blithely. slyly| +31916|608451|45988|3|37|50298.54|0.00|0.02|N|O|1996-01-31|1996-04-06|1996-02-22|TAKE BACK RETURN|REG AIR|ns cajole blithe| +31917|527087|39598|1|33|36763.98|0.00|0.02|A|F|1995-03-31|1995-03-13|1995-04-10|NONE|SHIP|press deposits? quickly pending d| +31917|739830|27373|2|38|71052.40|0.05|0.04|A|F|1995-02-23|1995-01-27|1995-03-14|NONE|MAIL|he slyly bold pinto beans hag| +31917|307631|20138|3|29|47519.98|0.05|0.00|R|F|1995-01-24|1995-02-09|1995-02-07|DELIVER IN PERSON|TRUCK|sly final deposits are blithely| +31917|342237|4744|4|16|20467.52|0.03|0.06|A|F|1995-03-03|1995-01-30|1995-03-19|DELIVER IN PERSON|RAIL|y express | +31917|965724|15725|5|39|69797.52|0.01|0.01|R|F|1995-01-15|1995-02-06|1995-02-14|DELIVER IN PERSON|REG AIR|ideas. carefull| +31918|679279|29280|1|39|49071.36|0.03|0.02|N|O|1997-03-07|1997-02-23|1997-03-26|COLLECT COD|TRUCK| furiously. qu| +31918|631664|44177|2|35|55847.05|0.00|0.00|N|O|1997-02-23|1997-03-14|1997-03-03|COLLECT COD|MAIL|gular asymptotes. blithely final asymptote| +31919|9205|9206|1|3|3342.60|0.02|0.03|A|F|1993-12-18|1994-01-20|1993-12-19|TAKE BACK RETURN|SHIP|must have to haggle according to the | +31944|991430|16469|1|23|34991.97|0.02|0.03|N|O|1996-08-27|1996-07-02|1996-09-03|DELIVER IN PERSON|SHIP|onic deposits. carefu| +31944|949390|36945|2|10|14393.50|0.09|0.04|N|O|1996-08-31|1996-08-03|1996-09-19|TAKE BACK RETURN|FOB|eans. ironic requests about the regular d| +31945|61746|24248|1|19|32447.06|0.09|0.02|N|O|1997-07-26|1997-09-27|1997-07-28|TAKE BACK RETURN|FOB|l excuses. slyly thin pi| +31945|757671|45217|2|7|12100.48|0.08|0.07|N|O|1997-09-15|1997-10-07|1997-09-21|COLLECT COD|SHIP|refully ironic packages. pinto beans are fu| +31945|175564|25565|3|16|26232.96|0.04|0.00|N|O|1997-08-05|1997-08-17|1997-08-22|NONE|AIR|ids haggle f| +31945|691814|41815|4|21|37921.38|0.01|0.01|N|O|1997-09-22|1997-09-13|1997-10-17|DELIVER IN PERSON|RAIL| fluffily slyly bold platelets. slyly| +31945|311631|36644|5|2|3285.24|0.00|0.04|N|O|1997-10-31|1997-08-23|1997-11-04|NONE|RAIL|he foxes. pinto beans sleep quickly final r| +31945|580743|43255|6|17|31003.24|0.08|0.06|N|O|1997-09-29|1997-10-01|1997-10-16|DELIVER IN PERSON|SHIP|cajole against the carefully spec| +31945|539629|2140|7|26|43383.60|0.07|0.06|N|O|1997-07-19|1997-08-30|1997-07-29|TAKE BACK RETURN|RAIL|nts need to nag acc| +31946|544338|19359|1|16|22116.96|0.05|0.07|N|O|1996-07-18|1996-06-28|1996-07-20|NONE|TRUCK| patterns. regular | +31947|398867|11375|1|17|33419.45|0.05|0.02|N|O|1997-03-27|1997-05-19|1997-04-14|NONE|SHIP|ages. blithel| +31947|750518|25549|2|41|64307.68|0.01|0.02|N|O|1997-05-24|1997-04-01|1997-06-20|DELIVER IN PERSON|TRUCK|ely above the bold requests. quic| +31947|939976|39977|3|7|14111.51|0.05|0.06|N|O|1997-04-02|1997-05-04|1997-04-09|DELIVER IN PERSON|REG AIR|ully along the br| +31947|174030|49037|4|45|49681.35|0.08|0.01|N|O|1997-03-24|1997-03-30|1997-04-21|NONE|RAIL|lyly. carefully pending request| +31947|908177|20696|5|30|35553.90|0.01|0.01|N|O|1997-03-19|1997-05-19|1997-04-17|COLLECT COD|SHIP|fix-- express orbits use slyly| +31947|724719|24720|6|28|48823.04|0.00|0.04|N|O|1997-04-18|1997-04-17|1997-04-22|COLLECT COD|REG AIR|yly unusual dolphins cajo| +31947|337800|25319|7|24|44106.96|0.06|0.05|N|O|1997-03-09|1997-05-01|1997-03-10|DELIVER IN PERSON|AIR|al waters haggle against the furiously perm| +31948|401963|14472|1|4|7459.76|0.04|0.08|A|F|1993-03-15|1993-04-08|1993-03-26|COLLECT COD|SHIP|g to the slyly regular waters. furiously| +31949|840454|2971|1|28|39043.48|0.00|0.07|N|O|1997-11-17|1998-01-03|1997-11-24|TAKE BACK RETURN|AIR|urts engage! accounts across the qu| +31949|495993|45994|2|2|3977.94|0.07|0.02|N|O|1997-11-01|1997-12-10|1997-11-12|TAKE BACK RETURN|MAIL|thes sleep quickly to the| +31950|994350|19389|1|33|47662.23|0.09|0.05|R|F|1994-04-19|1994-07-11|1994-05-09|NONE|SHIP|heodolites doubt blithely | +31950|27424|2425|2|48|64868.16|0.00|0.04|A|F|1994-05-24|1994-06-02|1994-05-27|DELIVER IN PERSON|TRUCK|as furiously blithely ev| +31950|912386|12387|3|9|12585.06|0.03|0.02|R|F|1994-06-22|1994-06-09|1994-07-05|NONE|FOB|refully quickly ironic accounts. silentl| +31950|462246|37265|4|48|57994.56|0.10|0.06|R|F|1994-06-04|1994-05-22|1994-06-06|NONE|SHIP|slyly express platelets cajole| +31950|957566|45124|5|30|48705.60|0.01|0.05|R|F|1994-07-02|1994-05-26|1994-07-10|NONE|SHIP| the special packages. quickly final reques| +31951|75602|605|1|7|11043.20|0.10|0.05|N|O|1998-10-05|1998-08-28|1998-10-18|NONE|FOB|ltipliers boost | +31951|640633|28170|2|19|29898.40|0.06|0.00|N|O|1998-09-20|1998-07-23|1998-10-14|COLLECT COD|REG AIR|inal pinto beans. express,| +31951|117883|17884|3|25|47522.00|0.08|0.01|N|O|1998-06-16|1998-08-28|1998-06-20|COLLECT COD|REG AIR|even asymptot| +31951|246482|46483|4|33|47139.51|0.02|0.05|N|O|1998-08-10|1998-09-03|1998-08-30|COLLECT COD|AIR|lets snooze daringl| +31976|271072|33578|1|19|19818.14|0.02|0.00|A|F|1994-05-08|1994-07-04|1994-05-26|COLLECT COD|AIR|s sublate. express requests wake. p| +31976|892202|4720|2|20|23883.20|0.07|0.05|R|F|1994-06-13|1994-07-01|1994-06-22|COLLECT COD|AIR|slyly finally ste| +31976|227989|2998|3|39|74761.83|0.01|0.06|R|F|1994-05-01|1994-05-20|1994-05-08|NONE|FOB|pinto beans| +31977|826712|26713|1|17|27857.39|0.02|0.04|R|F|1992-05-18|1992-03-17|1992-05-25|NONE|FOB|s use blithely. blithe| +31977|534460|9481|2|7|10461.08|0.01|0.01|A|F|1992-04-20|1992-03-27|1992-05-02|COLLECT COD|REG AIR| special deposits integrate quickl| +31978|50209|12711|1|48|55641.60|0.06|0.02|N|O|1998-03-28|1998-03-17|1998-04-21|DELIVER IN PERSON|RAIL|ly special escapades| +31978|852580|27615|2|49|75094.46|0.01|0.07|N|O|1998-04-03|1998-02-21|1998-04-09|NONE|SHIP|final dependencies about the furiously f| +31978|299517|24528|3|3|4549.50|0.05|0.05|N|O|1998-04-24|1998-04-05|1998-05-11|DELIVER IN PERSON|SHIP|ickly quiet theodolites afte| +31978|969013|19014|4|25|27049.25|0.02|0.04|N|O|1998-05-12|1998-03-29|1998-06-08|COLLECT COD|SHIP| dependencies haggle blit| +31979|342897|5404|1|28|54316.64|0.02|0.01|N|O|1995-11-21|1995-11-15|1995-11-26|NONE|SHIP|t furiously. blithely final requests | +31979|62326|24828|2|25|32208.00|0.06|0.04|N|O|1995-12-21|1995-10-12|1996-01-13|TAKE BACK RETURN|RAIL| slyly unusua| +31979|508529|46060|3|34|52275.00|0.01|0.01|N|O|1995-10-06|1995-11-01|1995-10-18|NONE|MAIL|snooze. furiou| +31980|351957|1958|1|49|98438.06|0.03|0.07|N|O|1997-02-25|1997-01-04|1997-03-23|NONE|REG AIR|n ideas. final theodolites b| +31980|337590|37591|2|38|61848.04|0.03|0.04|N|O|1997-03-01|1997-01-16|1997-03-10|NONE|AIR|cording to the fluffily final | +31980|870330|20331|3|12|15603.48|0.01|0.02|N|O|1996-11-11|1997-01-07|1996-11-28|DELIVER IN PERSON|FOB|arefully sly accounts are. furiously r| +31980|625851|13388|4|4|7107.28|0.10|0.04|N|O|1997-02-24|1996-12-30|1997-03-17|TAKE BACK RETURN|FOB|quests after the slow| +31981|6945|19446|1|37|68521.78|0.02|0.02|R|F|1993-08-23|1993-10-04|1993-09-14|DELIVER IN PERSON|AIR|ly whithout the deposits. ruthlessly| +31982|947840|35395|1|33|62297.40|0.01|0.02|R|F|1993-08-21|1993-06-16|1993-09-09|NONE|RAIL|ss request| +31982|342568|5075|2|33|53148.15|0.02|0.06|R|F|1993-08-31|1993-06-15|1993-09-20|DELIVER IN PERSON|TRUCK|eve blithely according to t| +31982|538459|25990|3|15|22461.45|0.03|0.05|A|F|1993-05-18|1993-06-25|1993-06-16|DELIVER IN PERSON|AIR| regular pinto beans according to the regul| +31982|874582|12134|4|31|48252.74|0.00|0.08|A|F|1993-05-20|1993-08-07|1993-06-10|COLLECT COD|TRUCK| above the quickly special pack| +31982|95120|32624|5|48|53525.76|0.08|0.06|A|F|1993-07-24|1993-06-30|1993-08-23|COLLECT COD|MAIL|r sauternes shal| +31983|384672|22194|1|45|79049.70|0.03|0.08|N|O|1996-03-23|1996-05-24|1996-04-07|TAKE BACK RETURN|TRUCK|pending foxes. final ideas cajole car| +31983|167744|5254|2|26|47105.24|0.10|0.01|N|O|1996-05-23|1996-05-19|1996-05-30|TAKE BACK RETURN|SHIP|the furiously unusual p| +31983|262695|12696|3|25|41442.00|0.02|0.08|N|O|1996-04-25|1996-04-29|1996-05-14|NONE|SHIP| might wake carefully acr| +31983|108498|21001|4|19|28623.31|0.08|0.00|N|O|1996-05-03|1996-04-12|1996-05-11|NONE|AIR|slyly according to the furiously bold in| +31983|510510|23021|5|15|22807.35|0.09|0.05|N|O|1996-03-27|1996-06-06|1996-04-10|DELIVER IN PERSON|REG AIR|are doggedly unusual, pending excuses. bli| +31983|129474|41977|6|9|13531.23|0.08|0.08|N|O|1996-04-28|1996-05-04|1996-05-06|NONE|FOB|accounts maintain fluffily. ironic | +32008|880999|43517|1|28|55438.60|0.05|0.01|N|O|1996-12-04|1996-11-04|1996-12-30|TAKE BACK RETURN|TRUCK| ironic, pending deposits boost es| +32008|942191|4710|2|48|59191.20|0.00|0.06|N|O|1996-11-28|1996-09-26|1996-12-28|TAKE BACK RETURN|AIR|yly express deposits h| +32008|393291|5799|3|23|31838.44|0.02|0.02|N|O|1996-12-01|1996-10-30|1996-12-30|DELIVER IN PERSON|RAIL|se carefully. instructions i| +32008|38840|38841|4|6|10673.04|0.04|0.07|N|O|1996-10-01|1996-11-15|1996-10-17|COLLECT COD|FOB| finally above the even frets?| +32008|773872|48903|5|42|81725.28|0.04|0.03|N|O|1996-10-22|1996-10-04|1996-11-12|TAKE BACK RETURN|REG AIR|slyly final requests wake| +32008|454129|4130|6|47|50905.70|0.03|0.00|N|O|1996-11-22|1996-11-09|1996-12-18|DELIVER IN PERSON|FOB|t the slyly| +32008|529847|29848|7|11|20645.02|0.07|0.06|N|O|1996-12-15|1996-11-04|1997-01-02|COLLECT COD|RAIL|d deposits cajole furiously. accounts| +32009|132238|32239|1|35|44458.05|0.05|0.03|N|O|1997-09-25|1997-10-26|1997-10-17|COLLECT COD|SHIP| carefully express packages. re| +32009|512096|37117|2|25|27701.75|0.01|0.08|N|O|1997-12-06|1997-11-09|1997-12-30|DELIVER IN PERSON|AIR| to the regular | +32009|788639|1155|3|28|48372.80|0.04|0.03|N|O|1998-01-07|1997-10-26|1998-01-13|NONE|SHIP|y pending instructions. even,| +32009|645978|45979|4|29|55794.26|0.00|0.03|N|O|1997-10-31|1997-11-11|1997-11-28|DELIVER IN PERSON|FOB|theodolites. even| +32009|935730|10767|5|21|37079.49|0.05|0.01|N|O|1997-10-05|1997-11-10|1997-10-27|NONE|FOB|ke slyly across the| +32009|811465|11466|6|40|55056.80|0.08|0.08|N|O|1997-09-19|1997-10-29|1997-10-05|TAKE BACK RETURN|AIR|unusual frays serve. special, i| +32010|408168|8169|1|17|18294.38|0.05|0.04|A|F|1992-04-11|1992-05-10|1992-04-13|TAKE BACK RETURN|FOB|ke blithely regular, regular platelets. fur| +32010|73243|48246|2|2|2432.48|0.09|0.06|A|F|1992-05-07|1992-05-23|1992-05-14|DELIVER IN PERSON|REG AIR|ly. blithely p| +32010|989680|14719|3|29|51319.56|0.05|0.05|A|F|1992-04-28|1992-04-19|1992-05-04|TAKE BACK RETURN|MAIL|. packages play. carefully steal| +32010|538755|13776|4|20|35874.60|0.02|0.02|R|F|1992-05-02|1992-06-03|1992-05-27|NONE|RAIL|g to the iro| +32010|845696|45697|5|44|72232.60|0.03|0.03|A|F|1992-06-10|1992-04-20|1992-06-21|NONE|TRUCK|tions across the slyly special packa| +32011|509539|9540|1|43|66585.93|0.01|0.07|N|O|1997-08-25|1997-08-16|1997-09-16|COLLECT COD|REG AIR|. final pinto b| +32011|814695|14696|2|19|30583.35|0.08|0.02|N|O|1997-08-19|1997-07-19|1997-08-20|DELIVER IN PERSON|FOB|y express | +32011|568920|6454|3|34|67622.60|0.04|0.02|N|O|1997-07-13|1997-08-08|1997-07-28|COLLECT COD|TRUCK| regular, bold attai| +32011|826799|1832|4|27|46595.25|0.02|0.04|N|O|1997-06-20|1997-07-26|1997-07-07|COLLECT COD|FOB|s sublate? furious| +32012|990313|2833|1|28|39291.56|0.00|0.00|R|F|1993-04-07|1993-03-04|1993-05-04|COLLECT COD|SHIP|ily according to the slyly fi| +32012|175127|25128|2|18|21638.16|0.03|0.04|A|F|1993-01-09|1993-01-23|1993-01-26|DELIVER IN PERSON|SHIP| pending foxes along the fluffi| +32012|355908|30923|3|3|5891.67|0.04|0.07|A|F|1993-03-25|1993-02-14|1993-04-16|DELIVER IN PERSON|MAIL|deposits sleep always even packages. b| +32012|733596|46111|4|27|43998.12|0.10|0.06|A|F|1993-03-27|1993-02-22|1993-04-23|DELIVER IN PERSON|SHIP|yly final deposits a| +32012|532879|45390|5|24|45884.40|0.09|0.07|R|F|1993-02-20|1993-02-15|1993-03-13|DELIVER IN PERSON|SHIP| haggle. fluffily bold deposits across th| +32012|94173|44174|6|8|9337.36|0.05|0.07|A|F|1993-01-15|1993-01-21|1993-01-27|DELIVER IN PERSON|AIR|ructions ha| +32012|764160|26676|7|49|59982.37|0.08|0.07|R|F|1993-01-11|1993-02-14|1993-02-04|NONE|RAIL|cial accounts wake quickly slyly express in| +32013|225274|12787|1|50|59963.00|0.01|0.07|A|F|1994-06-26|1994-06-17|1994-07-25|DELIVER IN PERSON|MAIL|ously furiously bold din| +32014|340715|15728|1|16|28091.20|0.06|0.05|N|O|1995-06-20|1995-08-27|1995-07-12|NONE|FOB|gle carefully accounts. blithely iron| +32014|394471|6979|2|23|36005.58|0.06|0.07|N|O|1995-08-04|1995-09-06|1995-08-13|NONE|SHIP|uickly carefully regular packag| +32014|872730|22731|3|30|51080.70|0.04|0.04|N|O|1995-08-06|1995-08-25|1995-08-24|DELIVER IN PERSON|MAIL|al frets. blithely even instructions | +32015|421497|9022|1|11|15603.17|0.01|0.02|N|O|1996-01-07|1995-12-17|1996-01-17|NONE|FOB| pending deposits mold fur| +32015|89790|14793|2|43|76530.97|0.06|0.07|N|O|1995-12-12|1995-12-28|1995-12-17|DELIVER IN PERSON|SHIP|uctions sleep slyly across the q| +32015|87189|37190|3|37|43518.66|0.02|0.04|N|O|1996-01-13|1995-12-07|1996-02-03|COLLECT COD|REG AIR| deposits. requests are| +32015|379961|4976|4|15|30614.25|0.00|0.01|N|O|1995-10-28|1996-01-24|1995-11-07|NONE|SHIP|y regular theodolit| +32015|1381|1382|5|34|43600.92|0.00|0.08|N|O|1996-02-14|1995-12-03|1996-02-15|COLLECT COD|MAIL|liers sleep furiously | +32040|861010|11011|1|19|18448.43|0.06|0.02|R|F|1995-01-28|1995-02-21|1995-02-01|DELIVER IN PERSON|SHIP|ets wake. blithely even foxes use regul| +32040|980491|43011|2|49|77001.05|0.05|0.07|A|F|1995-02-02|1995-03-13|1995-02-20|COLLECT COD|MAIL|inder slyly. sil| +32040|99289|24292|3|9|11594.52|0.07|0.03|A|F|1995-03-26|1995-01-31|1995-04-22|TAKE BACK RETURN|FOB|s across the ideas sleep carefully regular,| +32040|733954|21497|4|26|51685.92|0.02|0.03|R|F|1995-01-23|1995-01-14|1995-02-05|NONE|SHIP|ss packages. final pack| +32041|19862|19863|1|49|87311.14|0.00|0.04|N|O|1995-08-25|1995-08-24|1995-08-29|NONE|REG AIR|always pending accounts sleep. i| +32041|807344|32377|2|6|7507.80|0.09|0.05|N|O|1995-09-09|1995-08-04|1995-09-20|TAKE BACK RETURN|REG AIR|uthless, eve| +32041|18599|6100|3|11|16693.49|0.02|0.06|N|O|1995-07-13|1995-07-27|1995-08-04|COLLECT COD|FOB|uses sleep. silent f| +32041|583451|20985|4|38|58308.34|0.10|0.01|N|O|1995-07-12|1995-08-02|1995-07-29|TAKE BACK RETURN|FOB|unusual, special excuses. carefully speci| +32041|57050|32053|5|36|36253.80|0.01|0.06|N|O|1995-07-07|1995-08-11|1995-07-29|NONE|SHIP|ar pinto beans. slyly regul| +32041|824089|49122|6|35|35456.40|0.04|0.04|N|O|1995-09-06|1995-08-05|1995-09-22|NONE|TRUCK|ckly pending foxes believe blithely fur| +32041|448694|11203|7|44|72277.48|0.03|0.03|N|O|1995-09-11|1995-08-09|1995-10-05|TAKE BACK RETURN|RAIL|ogged packages sleep furiously express dolp| +32042|187916|420|1|34|68132.94|0.04|0.01|N|O|1998-01-27|1998-01-11|1998-02-20|NONE|SHIP|ts. foxes use slyly among the acc| +32042|293005|43006|2|44|43911.56|0.02|0.02|N|O|1998-01-20|1998-01-23|1998-01-27|DELIVER IN PERSON|REG AIR|iously at the final, slow| +32043|589960|39961|1|47|96347.18|0.01|0.04|A|F|1992-07-22|1992-08-10|1992-07-28|NONE|FOB|slyly. slyly pending pinto beans wake id| +32043|449422|24439|2|29|39770.60|0.01|0.05|R|F|1992-10-10|1992-09-10|1992-11-09|COLLECT COD|FOB|ages cajole unusual deposits. sl| +32043|419459|31968|3|37|51001.91|0.06|0.05|A|F|1992-08-31|1992-09-12|1992-09-12|TAKE BACK RETURN|FOB|ggle always. blithely bold theodolites cajo| +32043|835196|47713|4|6|6786.90|0.08|0.08|A|F|1992-08-12|1992-08-19|1992-08-15|DELIVER IN PERSON|RAIL|nal requests wake blithely. evenl| +32043|128364|15871|5|16|22277.76|0.02|0.04|R|F|1992-07-05|1992-08-07|1992-07-10|NONE|RAIL|press carefully alon| +32044|972877|10435|1|22|42896.26|0.06|0.00|A|F|1993-11-01|1993-12-26|1993-11-25|COLLECT COD|REG AIR|nd the final d| +32045|398604|36126|1|6|10215.54|0.01|0.05|N|O|1998-01-25|1998-01-06|1998-02-01|TAKE BACK RETURN|AIR| ironic dolphins. qui| +32045|320652|33159|2|1|1672.64|0.07|0.06|N|O|1998-01-05|1998-01-03|1998-01-14|NONE|MAIL|y around the slyly final instru| +32045|184207|46711|3|16|20659.20|0.10|0.08|N|O|1997-12-26|1998-01-24|1998-01-20|NONE|MAIL|ans around the pending platelets | +32045|960771|23291|4|24|43961.52|0.09|0.07|N|O|1998-02-22|1997-12-14|1998-03-16|DELIVER IN PERSON|TRUCK|atelets. pending excuses u| +32045|677806|15346|5|14|24972.78|0.05|0.08|N|O|1997-12-31|1997-12-10|1998-01-06|TAKE BACK RETURN|SHIP|ely among the express packages. unusual f| +32045|878533|16085|6|4|6045.96|0.00|0.04|N|O|1998-01-17|1997-12-05|1998-01-18|NONE|AIR|bove the orbits. blithely ironic depos| +32045|497073|34601|7|18|19260.90|0.01|0.02|N|O|1997-11-22|1998-01-05|1997-12-04|TAKE BACK RETURN|FOB|instructions use bold d| +32046|302383|14890|1|37|51258.69|0.09|0.05|A|F|1994-02-15|1994-01-23|1994-02-28|DELIVER IN PERSON|AIR|y blithely reg| +32047|403597|3598|1|2|3001.14|0.08|0.01|R|F|1994-02-27|1994-03-20|1994-03-25|TAKE BACK RETURN|MAIL| doubt fluffily furiously | +32047|248249|10754|2|23|27536.29|0.01|0.08|A|F|1994-06-02|1994-04-15|1994-06-19|TAKE BACK RETURN|TRUCK|ully ironic excuses. slyly regul| +32072|418059|5584|1|30|29310.90|0.09|0.05|A|F|1994-07-15|1994-09-15|1994-07-27|DELIVER IN PERSON|SHIP|o beans haggle. carefully iron| +32072|310319|10320|2|43|57159.90|0.06|0.05|A|F|1994-09-21|1994-08-18|1994-10-09|TAKE BACK RETURN|MAIL| dependencies sleep | +32072|530949|30950|3|2|3959.84|0.01|0.08|A|F|1994-10-10|1994-09-17|1994-10-30|NONE|AIR| theodolites. carefully silent| +32072|658373|20887|4|38|50590.92|0.01|0.01|A|F|1994-07-26|1994-09-05|1994-08-15|DELIVER IN PERSON|RAIL|ully pending packages. accounts kindle bli| +32072|266535|16536|5|26|39039.52|0.04|0.07|R|F|1994-07-28|1994-09-12|1994-08-25|DELIVER IN PERSON|RAIL|ckly regular pint| +32073|172400|9910|1|17|25030.80|0.03|0.03|N|O|1997-03-21|1997-02-14|1997-04-16|COLLECT COD|FOB|ep slyly along the caref| +32073|516667|41688|2|46|77447.44|0.04|0.05|N|O|1997-03-16|1997-01-16|1997-03-29|NONE|TRUCK|ross the theodolites. quickly pending p| +32073|619996|19997|3|30|57478.80|0.08|0.07|N|O|1997-02-13|1997-02-17|1997-02-23|NONE|SHIP|regular deposits. instructions above the sl| +32073|270650|20651|4|18|29171.52|0.03|0.08|N|O|1996-12-08|1997-01-11|1996-12-23|TAKE BACK RETURN|AIR| believe b| +32073|805244|17761|5|6|6895.20|0.09|0.06|N|O|1996-12-22|1996-12-28|1997-01-19|TAKE BACK RETURN|MAIL|uriously. d| +32073|735456|22999|6|46|68605.32|0.10|0.06|N|O|1997-02-14|1997-01-10|1997-03-02|NONE|REG AIR|s haggle blit| +32074|674922|12462|1|37|70184.93|0.10|0.03|N|O|1996-08-07|1996-09-03|1996-08-26|TAKE BACK RETURN|RAIL|the deposits. final deposits according to| +32074|411996|37013|2|8|15263.76|0.04|0.01|N|O|1996-09-13|1996-07-16|1996-09-18|COLLECT COD|AIR|tect. carefully idle deposits caj| +32074|411070|48595|3|2|1962.10|0.03|0.08|N|O|1996-08-03|1996-09-06|1996-08-28|NONE|REG AIR|ts. regular accounts according to | +32075|678809|3836|1|44|78661.88|0.09|0.07|A|F|1993-11-13|1993-09-29|1993-11-25|NONE|SHIP|y express e| +32075|739733|39734|2|43|76226.10|0.09|0.02|A|F|1993-08-29|1993-09-22|1993-09-24|COLLECT COD|AIR|theodolites are furiously. unu| +32075|691689|41690|3|29|48738.85|0.08|0.07|A|F|1993-12-05|1993-09-23|1993-12-11|TAKE BACK RETURN|SHIP| fluffily brave instructio| +32075|208968|46481|4|33|61939.35|0.03|0.02|R|F|1993-11-05|1993-11-01|1993-11-28|NONE|SHIP| sleep. fluffily ruthless deposits sleep | +32076|300241|37760|1|19|23583.37|0.06|0.08|N|O|1996-02-18|1996-03-31|1996-02-28|TAKE BACK RETURN|RAIL|lar asymptotes among the slyly ironic re| +32076|141576|4079|2|21|33968.97|0.01|0.07|N|O|1996-03-17|1996-02-07|1996-03-22|NONE|MAIL|carefully regular deposits boost| +32077|270332|20333|1|4|5209.28|0.03|0.00|R|F|1993-11-06|1993-09-22|1993-12-01|NONE|SHIP|usly pending accounts. | +32077|466228|3756|2|47|56127.40|0.05|0.02|R|F|1993-10-20|1993-09-17|1993-10-24|COLLECT COD|AIR| furiously above the f| +32077|892527|30079|3|6|9116.88|0.09|0.02|A|F|1993-09-13|1993-10-01|1993-09-14|DELIVER IN PERSON|RAIL|ackages wake | +32077|691460|29000|4|3|4354.29|0.07|0.05|R|F|1993-09-24|1993-09-11|1993-10-11|NONE|FOB|the silent accounts. | +32077|351976|26991|5|30|60838.80|0.09|0.00|R|F|1993-10-03|1993-08-18|1993-10-07|COLLECT COD|REG AIR|uriously ex| +32078|807280|44829|1|35|41553.40|0.05|0.03|N|O|1997-04-21|1997-03-31|1997-05-19|NONE|AIR|lites. even, | +32078|950300|301|2|32|43208.32|0.06|0.03|N|O|1997-02-13|1997-02-16|1997-03-12|DELIVER IN PERSON|SHIP|lithely against the | +32079|702892|27921|1|8|15158.88|0.00|0.08|N|O|1996-07-26|1996-08-10|1996-08-24|NONE|SHIP|ccounts: t| +32079|493850|31378|2|33|60846.39|0.07|0.02|N|O|1996-07-23|1996-07-21|1996-08-09|NONE|REG AIR| regular theodolites. furiousl| +32079|124357|36860|3|1|1381.35|0.01|0.07|N|O|1996-07-23|1996-08-29|1996-08-02|NONE|TRUCK|ual attainments are. blithely | +32079|65017|15018|4|35|34370.35|0.01|0.02|N|O|1996-09-20|1996-08-18|1996-09-24|TAKE BACK RETURN|RAIL|l excuses sleep. deposits wak| +32079|728477|40992|5|48|72261.12|0.07|0.04|N|O|1996-08-03|1996-08-10|1996-09-02|COLLECT COD|RAIL|sleep carefully among the flu| +32079|502697|2698|6|19|32293.73|0.05|0.05|N|O|1996-10-11|1996-08-24|1996-10-21|TAKE BACK RETURN|AIR|c platelets should have | +32104|356335|43857|1|44|61218.08|0.06|0.02|N|O|1998-03-27|1998-03-13|1998-03-29|DELIVER IN PERSON|FOB|tructions cajole quickly aft| +32104|906275|6276|2|29|37155.67|0.10|0.08|N|O|1998-01-17|1998-03-01|1998-02-16|COLLECT COD|RAIL|cial packages. furiously final ideas h| +32104|758806|33837|3|1|1864.77|0.09|0.06|N|O|1998-03-10|1998-02-17|1998-03-17|DELIVER IN PERSON|SHIP|ven pinto beans. fu| +32104|237437|12446|4|10|13744.20|0.09|0.04|N|O|1998-01-25|1998-02-20|1998-02-13|TAKE BACK RETURN|RAIL| packages are. sl| +32104|602464|14977|5|25|34160.75|0.06|0.08|N|O|1998-01-09|1998-02-07|1998-01-27|TAKE BACK RETURN|SHIP| unusual requests. fi| +32104|611948|24461|6|33|61377.03|0.09|0.03|N|O|1998-03-20|1998-03-08|1998-04-04|NONE|RAIL|carefully blithely unusual asymptotes. b| +32105|292002|29518|1|49|48705.51|0.05|0.05|N|O|1995-06-21|1995-07-19|1995-07-01|COLLECT COD|REG AIR|ly across the carefully regular dep| +32106|382298|7313|1|41|56591.48|0.00|0.02|N|O|1997-02-28|1997-04-07|1997-03-11|DELIVER IN PERSON|FOB|thlessly regular requests. car| +32106|271997|34503|2|25|49224.50|0.06|0.01|N|O|1997-03-29|1997-04-27|1997-04-13|DELIVER IN PERSON|SHIP|gainst the slyly even request| +32106|444630|32155|3|5|7873.05|0.09|0.01|N|O|1997-04-25|1997-05-06|1997-04-28|COLLECT COD|MAIL|oxes. quickl| +32106|884444|34445|4|30|42852.00|0.10|0.05|N|O|1997-03-09|1997-04-29|1997-04-05|TAKE BACK RETURN|RAIL| deposits boost| +32106|846116|33665|5|4|4248.28|0.03|0.02|N|O|1997-04-23|1997-03-29|1997-04-27|TAKE BACK RETURN|SHIP|le furiously acro| +32106|663438|13439|6|22|30830.80|0.02|0.07|N|O|1997-06-01|1997-05-13|1997-06-23|DELIVER IN PERSON|TRUCK|ons sleep blithely theodol| +32107|963116|25636|1|7|8253.49|0.02|0.02|N|O|1997-10-23|1997-11-21|1997-11-03|COLLECT COD|SHIP|ar, ironic courts.| +32107|88295|25799|2|47|60314.63|0.07|0.07|N|O|1997-12-01|1997-12-08|1997-12-11|DELIVER IN PERSON|MAIL|s haggle slyly ac| +32107|959120|9121|3|26|30656.08|0.04|0.02|N|O|1997-12-31|1997-12-13|1998-01-02|TAKE BACK RETURN|SHIP|ly special ideas. bold, th| +32107|924335|24336|4|45|61168.05|0.06|0.03|N|O|1997-11-13|1997-12-11|1997-12-01|COLLECT COD|RAIL|he even accounts. special | +32107|282647|45153|5|6|9777.78|0.10|0.02|N|O|1997-11-08|1997-11-02|1997-12-05|TAKE BACK RETURN|SHIP|ecial deposits nod. pending ideas are quick| +32107|439377|14394|6|45|59235.75|0.01|0.04|N|O|1997-12-14|1997-11-21|1998-01-05|COLLECT COD|AIR|ngside of the quick in| +32107|595713|8225|7|5|9043.45|0.07|0.04|N|O|1998-01-26|1997-12-12|1998-02-22|NONE|RAIL|o the quickly even accounts. fu| +32108|134180|34181|1|34|41282.12|0.03|0.01|A|F|1994-09-29|1994-09-05|1994-10-02|TAKE BACK RETURN|SHIP| the furiously ironic reque| +32108|160523|35530|2|49|77592.48|0.04|0.02|A|F|1994-07-05|1994-08-18|1994-07-15|NONE|SHIP|y final theodolites use| +32108|904892|17411|3|45|85358.25|0.00|0.07|R|F|1994-09-10|1994-09-01|1994-09-23|COLLECT COD|REG AIR| ironic instruct| +32108|518809|6340|4|6|10966.68|0.03|0.02|A|F|1994-09-13|1994-08-21|1994-10-11|NONE|REG AIR|to beans. fluffily| +32108|615511|40536|5|26|37088.48|0.10|0.01|A|F|1994-06-29|1994-08-03|1994-07-04|NONE|RAIL|egular deposits.| +32109|399856|37378|1|22|43028.48|0.06|0.03|N|O|1998-04-20|1998-03-16|1998-05-07|NONE|FOB|ic account| +32109|374078|11600|2|33|38017.98|0.10|0.00|N|O|1998-01-24|1998-03-24|1998-02-17|COLLECT COD|SHIP|ilent accounts are carefully. regular pa| +32110|283811|33812|1|17|30511.60|0.03|0.02|N|O|1996-07-28|1996-09-12|1996-08-27|NONE|SHIP|lyly stealthy accounts doze. c| +32110|997215|34773|2|22|28867.74|0.04|0.04|N|O|1996-07-29|1996-08-19|1996-08-28|TAKE BACK RETURN|AIR|enly. final ideas agains| +32110|187535|25045|3|29|47053.37|0.08|0.07|N|O|1996-08-12|1996-08-06|1996-08-13|NONE|FOB|ainst the pending accounts. e| +32110|899370|24405|4|37|50665.21|0.08|0.04|N|O|1996-09-26|1996-09-05|1996-10-15|DELIVER IN PERSON|RAIL|al requests cajole fluff| +32110|704746|4747|5|40|70028.40|0.08|0.08|N|O|1996-07-12|1996-08-24|1996-08-02|DELIVER IN PERSON|MAIL|e blithe sentiments. sometimes final depend| +32110|649867|49868|6|4|7267.32|0.09|0.03|N|O|1996-09-02|1996-08-20|1996-09-09|COLLECT COD|REG AIR|silent deposits. unusual, regular deposits| +32110|299790|12296|7|7|12528.46|0.00|0.00|N|O|1996-09-10|1996-08-13|1996-09-21|COLLECT COD|AIR|ress requests wake quickl| +32111|558959|46493|1|4|8071.72|0.00|0.02|R|F|1995-02-09|1995-02-16|1995-02-11|TAKE BACK RETURN|MAIL|ng the never bold pinto beans. orbits are | +32111|414601|2126|2|38|57592.04|0.07|0.02|R|F|1995-03-08|1995-03-07|1995-03-23|DELIVER IN PERSON|FOB|ole slyly after the quickly ev| +32111|196413|33923|3|12|18112.92|0.00|0.02|A|F|1995-01-28|1995-03-03|1995-02-09|NONE|SHIP|carefully regula| +32111|101947|14450|4|24|46774.56|0.02|0.05|A|F|1995-01-27|1995-01-20|1995-02-16|NONE|MAIL| regular courts detect quickly silen| +32111|410157|47682|5|45|48020.85|0.02|0.07|A|F|1995-01-10|1995-03-05|1995-01-14|TAKE BACK RETURN|FOB|al asympto| +32111|494250|31778|6|5|6221.15|0.05|0.05|R|F|1995-02-05|1995-01-12|1995-02-15|DELIVER IN PERSON|TRUCK|into beans boost care| +32111|858690|21208|7|19|31324.35|0.03|0.00|A|F|1995-01-10|1995-02-26|1995-01-26|DELIVER IN PERSON|TRUCK|ses. blithely final pack| +32136|990967|28525|1|14|28810.88|0.05|0.08|N|O|1997-08-28|1997-08-15|1997-09-27|NONE|RAIL|ely even requests. slyly dogged pac| +32137|377878|27879|1|4|7823.44|0.07|0.03|N|O|1997-07-01|1997-08-30|1997-07-21|DELIVER IN PERSON|SHIP|es sublate closely whithout the | +32138|317616|5135|1|50|81680.00|0.04|0.00|N|O|1996-07-29|1996-05-26|1996-08-22|NONE|TRUCK|nding, even dependenc| +32138|159042|9043|2|18|19818.72|0.03|0.05|N|O|1996-07-19|1996-06-12|1996-08-01|TAKE BACK RETURN|SHIP|unusual accou| +32139|849393|11910|1|18|24162.30|0.08|0.08|A|F|1994-05-16|1994-05-28|1994-06-04|COLLECT COD|AIR| slyly regular accounts. | +32139|745425|45426|2|13|19115.07|0.10|0.06|A|F|1994-05-07|1994-04-20|1994-06-06|COLLECT COD|MAIL|ons dazzle about the slyly special deposits| +32139|349213|11720|3|3|3786.60|0.05|0.01|R|F|1994-06-11|1994-04-20|1994-07-05|TAKE BACK RETURN|TRUCK|fily unusual reques| +32139|220725|45734|4|21|34559.91|0.04|0.01|R|F|1994-05-28|1994-05-15|1994-06-12|TAKE BACK RETURN|AIR|ut the accounts | +32139|716772|29287|5|11|19676.14|0.06|0.03|A|F|1994-03-18|1994-05-08|1994-04-09|COLLECT COD|SHIP|st quickly along| +32140|291565|16576|1|22|34244.10|0.10|0.03|N|O|1997-08-03|1997-09-18|1997-08-10|COLLECT COD|TRUCK|across the sly| +32140|316696|16697|2|36|61656.48|0.05|0.07|N|O|1997-07-20|1997-08-15|1997-08-03|NONE|TRUCK|uriously unusual packages. instru| +32140|699991|12505|3|34|67692.64|0.02|0.07|N|O|1997-09-26|1997-09-04|1997-10-06|COLLECT COD|AIR|ts. carefully ironi| +32141|129404|29405|1|37|53035.80|0.01|0.04|R|F|1994-08-02|1994-07-01|1994-08-21|COLLECT COD|TRUCK|lar packages detect quickly re| +32141|877126|2161|2|32|35298.56|0.10|0.06|A|F|1994-07-13|1994-07-26|1994-07-29|NONE|SHIP| ideas. carefully ironic ideas integrate qu| +32141|855701|30736|3|42|69579.72|0.02|0.05|R|F|1994-06-30|1994-06-16|1994-07-22|DELIVER IN PERSON|TRUCK|carefully regular patterns cajole af| +32142|715873|40902|1|39|73664.76|0.08|0.04|R|F|1995-04-08|1995-06-26|1995-05-03|TAKE BACK RETURN|AIR|usual multiplie| +32142|661101|36128|2|35|37172.45|0.10|0.00|N|O|1995-07-05|1995-05-31|1995-07-15|DELIVER IN PERSON|RAIL|counts. steal| +32142|115151|2658|3|15|17492.25|0.04|0.00|R|F|1995-04-26|1995-06-26|1995-05-18|TAKE BACK RETURN|RAIL|y ironic requests| +32142|333705|33706|4|42|73024.98|0.01|0.07|A|F|1995-04-27|1995-06-05|1995-05-05|NONE|AIR|wake quickly. the| +32142|572615|47638|5|3|5062.77|0.00|0.07|N|O|1995-06-27|1995-06-08|1995-07-02|COLLECT COD|REG AIR|usly ruthless frays. ironic depo| +32142|924187|11742|6|34|41178.76|0.10|0.00|R|F|1995-04-27|1995-05-31|1995-05-20|DELIVER IN PERSON|MAIL|deas. final requests play| +32143|361405|11406|1|16|23462.24|0.04|0.01|N|O|1997-08-30|1997-07-01|1997-09-04|NONE|REG AIR|de of the regular, regular p| +32143|123384|10891|2|26|36591.88|0.04|0.03|N|O|1997-07-25|1997-07-23|1997-08-17|NONE|RAIL|ly sly accounts doze according to t| +32143|703491|16006|3|5|7472.30|0.04|0.01|N|O|1997-08-06|1997-06-19|1997-08-23|DELIVER IN PERSON|MAIL|de of the ironic | +32168|713868|1411|1|27|50809.41|0.01|0.08|A|F|1994-01-16|1993-11-29|1994-01-21|NONE|TRUCK|luffily speci| +32168|977754|2793|2|41|75100.11|0.07|0.07|R|F|1993-12-25|1993-12-28|1994-01-06|TAKE BACK RETURN|SHIP|requests! slyly silent deposits w| +32168|99482|24485|3|2|2962.96|0.03|0.07|R|F|1993-10-12|1993-11-24|1993-11-05|COLLECT COD|RAIL|eas are blithely. pending excuses sleep| +32168|991093|3613|4|48|56834.40|0.02|0.01|R|F|1993-12-20|1993-12-21|1994-01-11|COLLECT COD|RAIL|ckages are after the carefully even ide| +32169|424892|49909|1|36|65407.32|0.06|0.02|N|O|1995-10-03|1995-12-21|1995-10-26|COLLECT COD|RAIL|efully carefully unusual package| +32170|296561|21572|1|42|65417.10|0.08|0.06|A|F|1995-04-01|1995-06-14|1995-04-05|NONE|REG AIR|lithely unusual courts impress| +32170|295923|20934|2|34|65242.94|0.09|0.05|N|O|1995-06-28|1995-05-23|1995-07-17|COLLECT COD|REG AIR|ep about the furious| +32170|575801|13335|3|16|30028.48|0.10|0.00|A|F|1995-06-13|1995-05-12|1995-06-15|COLLECT COD|TRUCK|st the quickly express dependencies integ| +32171|598413|23436|1|22|33250.58|0.10|0.00|N|O|1998-02-13|1998-04-14|1998-02-27|TAKE BACK RETURN|REG AIR| deposits nag special, regular accoun| +32171|517621|5152|2|2|3277.20|0.08|0.05|N|O|1998-05-14|1998-03-29|1998-05-30|DELIVER IN PERSON|REG AIR|across the slyly express| +32171|644879|32416|3|50|91192.00|0.00|0.00|N|O|1998-04-07|1998-04-12|1998-04-20|COLLECT COD|RAIL|uests are ironic deposits. sl| +32171|468762|6290|4|24|41537.76|0.04|0.03|N|O|1998-05-09|1998-03-14|1998-05-28|COLLECT COD|FOB|sts. regular foxes| +32172|556888|19400|1|7|13614.02|0.06|0.07|A|F|1995-02-09|1995-03-23|1995-03-09|NONE|MAIL|ously even | +32172|615926|40951|2|50|92094.50|0.00|0.05|R|F|1995-01-16|1995-04-07|1995-01-21|COLLECT COD|FOB| use quickly pending| +32173|773242|48273|1|2|2630.42|0.00|0.05|N|O|1998-05-20|1998-04-24|1998-06-17|TAKE BACK RETURN|SHIP|ckages are slyly regular dependenci| +32173|864644|39679|2|27|43432.20|0.10|0.00|N|O|1998-04-23|1998-06-18|1998-05-10|NONE|SHIP| deposits.| +32173|62524|28|3|48|71352.96|0.05|0.01|N|O|1998-04-20|1998-04-23|1998-05-03|NONE|MAIL|s detect. ir| +32173|839831|39832|4|38|67290.02|0.00|0.05|N|O|1998-05-24|1998-04-30|1998-05-31|TAKE BACK RETURN|TRUCK|bold deposits. un| +32174|123672|48677|1|3|5087.01|0.04|0.00|R|F|1994-01-12|1993-11-26|1994-01-26|COLLECT COD|FOB|eposits cajole| +32174|548577|23598|2|49|79651.95|0.03|0.07|R|F|1993-11-17|1994-01-16|1993-12-15|TAKE BACK RETURN|FOB|o beans nag slowly slyly | +32174|925527|564|3|3|4657.44|0.00|0.04|A|F|1994-02-02|1993-12-08|1994-02-12|TAKE BACK RETURN|AIR|ests. carefu| +32174|315930|40943|4|20|38918.40|0.09|0.02|A|F|1993-11-09|1993-12-04|1993-11-19|COLLECT COD|AIR|r foxes wake final account| +32174|820291|7840|5|34|41182.50|0.03|0.08|A|F|1994-01-05|1993-12-01|1994-01-29|DELIVER IN PERSON|SHIP|ously express req| +32174|628620|41133|6|5|7742.95|0.06|0.08|A|F|1993-11-22|1993-12-03|1993-12-15|DELIVER IN PERSON|SHIP|cross the furiously final packages | +32175|982403|7442|1|36|53472.96|0.03|0.02|A|F|1993-06-20|1993-04-17|1993-06-27|TAKE BACK RETURN|MAIL|es serve evenly ironic platelets. sp| +32175|237483|37484|2|16|22727.52|0.01|0.07|R|F|1993-05-24|1993-04-21|1993-06-05|NONE|SHIP| detect quickly! slyly regular | +32175|375647|662|3|44|75795.72|0.02|0.05|R|F|1993-06-07|1993-04-19|1993-06-18|NONE|FOB|tructions breach carefully ironi| +32175|493115|30643|4|16|17729.44|0.04|0.00|R|F|1993-06-21|1993-05-21|1993-06-22|TAKE BACK RETURN|AIR|regular, final ac| +32175|768446|18447|5|49|74206.09|0.05|0.04|R|F|1993-04-09|1993-04-18|1993-04-15|TAKE BACK RETURN|FOB|as affix slyly furiously regular| +32175|255835|5836|6|18|32234.76|0.10|0.06|A|F|1993-07-01|1993-04-17|1993-07-27|NONE|FOB|ide of the carefull| +32175|803640|3641|7|6|9261.60|0.01|0.05|A|F|1993-04-02|1993-04-26|1993-04-25|NONE|FOB|es. regular, regular packages across t| +32200|772322|9868|1|41|57165.89|0.07|0.04|A|F|1994-02-05|1994-01-02|1994-03-04|NONE|SHIP|even attainments. furiously unusual | +32200|413082|25591|2|12|11940.72|0.01|0.06|R|F|1994-02-01|1994-02-03|1994-02-04|COLLECT COD|MAIL|nic requests are slyly sl| +32200|665082|40109|3|9|9423.45|0.03|0.03|R|F|1994-02-26|1994-02-18|1994-03-12|COLLECT COD|MAIL|ly regular multipli| +32200|30248|17749|4|18|21208.32|0.03|0.05|A|F|1994-02-23|1994-01-02|1994-03-17|COLLECT COD|REG AIR|ess deposits wake alongside of| +32200|371591|21592|5|39|64840.62|0.08|0.00|A|F|1993-12-20|1994-02-04|1993-12-27|NONE|AIR|t blithely among | +32201|173103|48110|1|9|10584.90|0.01|0.00|N|O|1996-06-21|1996-07-31|1996-07-10|DELIVER IN PERSON|SHIP| ironic requests| +32201|332387|44894|2|3|4258.11|0.09|0.07|N|O|1996-06-27|1996-07-16|1996-06-30|COLLECT COD|MAIL|s. even, even ideas nag. furiousl| +32201|427965|27966|3|48|90861.12|0.07|0.06|N|O|1996-07-14|1996-07-14|1996-08-01|TAKE BACK RETURN|AIR|ar frays sleep slowly. ruth| +32201|804938|17455|4|47|86615.83|0.07|0.03|N|O|1996-05-04|1996-07-25|1996-05-12|DELIVER IN PERSON|SHIP| asymptotes integrate fluff| +32202|437449|49958|1|13|18023.46|0.01|0.06|R|F|1992-04-02|1992-04-27|1992-05-01|TAKE BACK RETURN|MAIL|ets cajole q| +32202|198723|36233|2|39|71047.08|0.02|0.00|A|F|1992-05-19|1992-03-20|1992-05-27|DELIVER IN PERSON|MAIL|arefully after the fluffily| +32202|932446|7483|3|48|70963.20|0.06|0.02|A|F|1992-05-29|1992-03-03|1992-06-05|DELIVER IN PERSON|MAIL|e the blithely ironic accounts | +32203|300380|12887|1|48|66257.76|0.03|0.08|N|O|1997-10-16|1997-08-22|1997-10-23|NONE|AIR| blithely | +32203|480932|18460|2|22|42084.02|0.06|0.06|N|O|1997-08-28|1997-08-19|1997-09-01|TAKE BACK RETURN|SHIP| bold, expre| +32203|23973|11474|3|2|3793.94|0.03|0.06|N|O|1997-10-07|1997-08-24|1997-11-01|COLLECT COD|FOB|s haggle abo| +32204|235431|22944|1|46|62855.32|0.09|0.07|N|O|1997-10-30|1997-10-08|1997-11-19|DELIVER IN PERSON|REG AIR|ial dolphins. quickly brave pinto bean| +32204|882153|44671|2|45|51079.95|0.07|0.02|N|O|1997-09-14|1997-09-30|1997-10-10|COLLECT COD|MAIL| Tiresias. carefully ironic requests | +32205|653122|3123|1|3|3225.27|0.10|0.08|N|F|1995-06-14|1995-06-19|1995-07-13|COLLECT COD|TRUCK|express packages. furiously special pi| +32205|7246|32247|2|42|48436.08|0.10|0.02|N|O|1995-08-02|1995-05-21|1995-08-08|COLLECT COD|TRUCK|ing deposit| +32206|183059|20569|1|47|53676.35|0.04|0.08|N|O|1995-11-29|1995-10-12|1995-12-23|COLLECT COD|SHIP| final accounts are carefully| +32206|664983|40010|2|46|89605.70|0.04|0.02|N|O|1995-09-02|1995-09-26|1995-09-10|COLLECT COD|RAIL|nto beans sleep closely unusual request| +32207|311598|49117|1|42|67602.36|0.07|0.03|A|F|1992-05-25|1992-06-23|1992-06-18|NONE|AIR|the brave fret| +32207|26033|26034|2|39|37402.17|0.03|0.08|A|F|1992-07-11|1992-06-12|1992-08-07|TAKE BACK RETURN|MAIL|ess deposits was. slyly blithe requ| +32207|535819|48330|3|23|42660.17|0.03|0.04|A|F|1992-05-16|1992-06-12|1992-06-01|NONE|REG AIR|nts. even accounts x-ray slyly furiously| +32207|505917|5918|4|37|71146.93|0.09|0.06|R|F|1992-05-24|1992-07-05|1992-06-10|NONE|AIR|osely bold ideas-- regula| +32207|931913|6950|5|25|48621.75|0.09|0.02|R|F|1992-06-09|1992-07-28|1992-06-21|NONE|RAIL|y regular deposits. specia| +32207|648926|48927|6|10|18748.90|0.00|0.03|R|F|1992-08-23|1992-08-07|1992-09-18|DELIVER IN PERSON|FOB|ithely silent ideas from the warhorses cajo| +32232|319877|44890|1|24|45524.64|0.05|0.06|N|O|1997-04-04|1997-03-28|1997-04-25|TAKE BACK RETURN|SHIP|s are carefully silent deposits| +32232|170552|20553|2|29|47053.95|0.07|0.03|N|O|1997-05-07|1997-03-11|1997-05-23|TAKE BACK RETURN|REG AIR|refully special, final theodolites. slyly s| +32233|540699|28230|1|30|52190.10|0.06|0.03|N|O|1996-04-28|1996-03-21|1996-05-13|DELIVER IN PERSON|MAIL|le. quickly final| +32233|524412|49433|2|32|45964.48|0.01|0.04|N|O|1996-04-02|1996-04-12|1996-04-03|NONE|TRUCK| furiously even accounts sleep. | +32233|777197|14743|3|44|56063.04|0.04|0.05|N|O|1996-03-19|1996-02-24|1996-03-24|COLLECT COD|FOB|uriously across the requests| +32234|881152|18704|1|48|54389.28|0.07|0.01|R|F|1992-06-23|1992-08-14|1992-07-19|TAKE BACK RETURN|FOB|ing to the furiously | +32234|512324|49855|2|25|33407.50|0.01|0.01|R|F|1992-07-21|1992-08-19|1992-08-09|COLLECT COD|REG AIR|ly above the silent requests! carefully| +32235|301935|26948|1|15|29053.80|0.04|0.03|R|F|1993-08-05|1993-06-22|1993-08-11|TAKE BACK RETURN|RAIL|deas. careful| +32235|611927|24440|2|6|11033.34|0.06|0.01|R|F|1993-07-04|1993-06-21|1993-07-29|DELIVER IN PERSON|AIR|s the asymptotes. express, dogged| +32235|652537|27564|3|12|17874.00|0.00|0.06|R|F|1993-08-16|1993-07-01|1993-08-18|DELIVER IN PERSON|TRUCK|inal, pending requests cajole careful| +32235|184847|22357|4|5|9659.20|0.07|0.03|R|F|1993-06-07|1993-06-17|1993-07-07|COLLECT COD|REG AIR| deposits! quickly express| +32236|681833|19373|1|6|10888.80|0.03|0.08|N|O|1998-05-09|1998-05-12|1998-05-20|TAKE BACK RETURN|AIR|ly about the request| +32236|553422|40956|2|39|57540.60|0.10|0.06|N|O|1998-03-23|1998-04-18|1998-04-15|COLLECT COD|REG AIR|ial accounts. even accounts cajole f| +32236|354970|4971|3|7|14174.72|0.01|0.00|N|O|1998-05-20|1998-04-28|1998-06-15|COLLECT COD|REG AIR|pecial requests. acc| +32236|969590|44629|4|47|77998.85|0.05|0.00|N|O|1998-04-30|1998-05-01|1998-05-03|NONE|REG AIR| even pack| +32236|883859|46377|5|43|79240.83|0.09|0.00|N|O|1998-06-04|1998-05-10|1998-06-11|TAKE BACK RETURN|FOB|ully. slyly bold instructions nag fluffily | +32237|398635|23650|1|35|60676.70|0.03|0.03|A|F|1993-10-24|1993-12-16|1993-11-14|TAKE BACK RETURN|FOB|lent, regular depen| +32237|852798|2799|2|47|82285.25|0.06|0.00|R|F|1993-11-04|1993-12-25|1993-11-14|TAKE BACK RETURN|FOB|posits? furiously unusual deposi| +32237|964574|14575|3|9|14746.77|0.09|0.06|R|F|1993-12-27|1993-12-22|1994-01-12|DELIVER IN PERSON|MAIL|s. carefully final deposits| +32237|589049|39050|4|23|26174.46|0.04|0.03|A|F|1993-11-29|1993-11-21|1993-12-01|COLLECT COD|AIR|l accounts are slyly on the slyly eve| +32238|54018|16520|1|33|32076.33|0.09|0.03|A|F|1992-11-24|1992-10-20|1992-12-05|DELIVER IN PERSON|AIR|s. blithely pending pains wake. blith| +32239|99680|24683|1|45|75585.60|0.06|0.06|N|O|1998-07-05|1998-07-04|1998-07-31|NONE|REG AIR|l deposits? quickly final packages wake| +32264|959406|9407|1|30|43960.80|0.03|0.08|A|F|1995-01-10|1995-01-28|1995-01-29|DELIVER IN PERSON|RAIL|ic pinto beans are. | +32264|734124|9153|2|42|48639.78|0.06|0.08|A|F|1994-12-20|1995-02-08|1995-01-09|NONE|TRUCK|, final warthogs haggle. slyl| +32264|408804|46329|3|45|77075.10|0.09|0.04|R|F|1994-12-19|1995-01-09|1994-12-29|TAKE BACK RETURN|AIR|he slyly ir| +32264|757396|44942|4|13|18893.68|0.07|0.01|A|F|1995-02-26|1995-01-04|1995-03-18|NONE|FOB|lphins sleep bli| +32264|538088|599|5|23|25899.38|0.02|0.04|A|F|1995-03-13|1995-01-25|1995-03-15|COLLECT COD|REG AIR|ly regular asymptotes. carefully specia| +32264|633139|8164|6|38|40739.80|0.03|0.02|R|F|1995-03-09|1995-01-18|1995-04-03|TAKE BACK RETURN|RAIL|uriously unusual foxes sleep. eve| +32264|155991|5992|7|31|63456.69|0.10|0.01|R|F|1994-12-19|1995-01-08|1995-01-07|NONE|TRUCK|e quickly above t| +32265|738322|837|1|30|40808.70|0.00|0.06|A|F|1994-05-29|1994-05-14|1994-06-12|NONE|REG AIR|lthy, sly foxes! blithely regular| +32265|976937|39457|2|44|88611.16|0.06|0.01|R|F|1994-06-17|1994-05-06|1994-07-17|DELIVER IN PERSON|FOB|ajole along the slyly | +32265|373275|23276|3|4|5393.04|0.08|0.03|A|F|1994-03-26|1994-05-04|1994-03-29|NONE|MAIL|ven deposits boost regu| +32265|625198|25199|4|49|55034.84|0.02|0.04|A|F|1994-06-11|1994-05-21|1994-06-17|NONE|FOB|riously final pack| +32265|698755|36295|5|16|28059.52|0.07|0.03|R|F|1994-05-23|1994-04-24|1994-06-03|DELIVER IN PERSON|SHIP|rges sleep furiously. even, regular req| +32265|964307|26827|6|36|49365.36|0.07|0.01|A|F|1994-05-16|1994-05-07|1994-06-04|COLLECT COD|AIR| dependencies. even deposits n| +32266|826583|14132|1|15|22643.10|0.03|0.02|A|F|1992-11-16|1992-11-11|1992-12-11|NONE|TRUCK|ep slyly carefully final deposits| +32266|369968|32476|2|16|32607.20|0.06|0.03|A|F|1993-01-20|1992-11-12|1993-02-18|COLLECT COD|AIR|ts about the| +32266|37855|12856|3|6|10757.10|0.09|0.04|A|F|1992-11-16|1992-12-19|1992-12-07|NONE|MAIL|ld foxes haggle f| +32266|219285|6798|4|18|21676.86|0.09|0.04|A|F|1992-10-31|1992-11-22|1992-11-10|NONE|SHIP|slyly final pinto beans use furi| +32266|515439|2970|5|42|61085.22|0.04|0.04|A|F|1992-10-07|1992-12-13|1992-10-25|TAKE BACK RETURN|SHIP|e frays. carefully regular request| +32266|972970|35490|6|48|98060.64|0.09|0.06|A|F|1992-10-13|1992-10-28|1992-11-07|DELIVER IN PERSON|REG AIR|eas. ironic, even | +32267|202970|40483|1|7|13110.72|0.01|0.05|R|F|1992-06-20|1992-05-26|1992-06-21|DELIVER IN PERSON|FOB|regular courts nag ruthlessly | +32267|311024|23531|2|13|13455.13|0.03|0.03|A|F|1992-07-23|1992-06-03|1992-07-30|NONE|REG AIR|as about the regular platelets h| +32268|941721|16758|1|22|38778.96|0.09|0.08|N|O|1998-04-19|1998-04-08|1998-04-26|COLLECT COD|REG AIR|ch carefully| +32268|498692|48693|2|47|79461.49|0.08|0.04|N|O|1998-06-16|1998-04-17|1998-07-05|DELIVER IN PERSON|SHIP|n sleep requests. furiously thin accoun| +32268|504260|41791|3|30|37927.20|0.00|0.08|N|O|1998-03-04|1998-04-01|1998-04-01|TAKE BACK RETURN|FOB|, ironic deposits a| +32268|84478|34479|4|1|1462.47|0.02|0.05|N|O|1998-06-02|1998-05-09|1998-06-13|TAKE BACK RETURN|SHIP|kly pending excuses: fina| +32268|810355|47904|5|1|1265.31|0.08|0.05|N|O|1998-02-26|1998-05-20|1998-03-05|NONE|FOB|cies haggle alongside of the| +32268|627659|27660|6|40|63464.80|0.02|0.00|N|O|1998-04-16|1998-04-02|1998-05-13|COLLECT COD|FOB|bold packages| +32269|760917|10918|1|45|89004.60|0.09|0.01|R|F|1992-05-23|1992-05-25|1992-05-29|TAKE BACK RETURN|REG AIR|y. unusual notornis sleep quickly | +32269|729169|4198|2|17|20368.21|0.06|0.02|R|F|1992-07-08|1992-05-16|1992-08-05|COLLECT COD|AIR|ges. instructions sleep against the iron| +32269|134075|9080|3|42|46580.94|0.07|0.05|A|F|1992-04-13|1992-05-05|1992-04-25|DELIVER IN PERSON|RAIL|ily final req| +32269|387123|12138|4|34|41143.74|0.03|0.00|R|F|1992-04-30|1992-05-01|1992-05-02|TAKE BACK RETURN|AIR|nal platelets haggl| +32269|362864|386|5|43|82854.55|0.02|0.04|A|F|1992-05-26|1992-05-06|1992-06-02|DELIVER IN PERSON|MAIL|r deposits boost slyly. even, silent theo| +32269|642037|4550|6|24|23496.00|0.05|0.03|A|F|1992-03-23|1992-05-21|1992-04-22|COLLECT COD|FOB|s. express dependencies are blit| +32270|563056|25568|1|47|52594.41|0.09|0.05|A|F|1993-01-27|1993-02-04|1993-02-19|NONE|REG AIR| the bold, ironic instructions are | +32270|276101|1112|2|9|9693.81|0.05|0.06|R|F|1993-01-25|1993-02-26|1993-02-11|COLLECT COD|AIR|blithely ev| +32271|197512|22519|1|25|40237.75|0.10|0.07|R|F|1992-05-25|1992-07-06|1992-06-17|TAKE BACK RETURN|TRUCK|uests according to the regular pa| +32296|347315|22328|1|5|6811.50|0.01|0.03|N|O|1997-01-10|1996-12-02|1997-01-29|DELIVER IN PERSON|TRUCK|ithely ironic deposits are sl| +32296|316664|29171|2|23|38654.95|0.09|0.08|N|O|1996-12-21|1996-11-09|1997-01-16|COLLECT COD|TRUCK|lly unusual theo| +32296|159549|9550|3|40|64341.60|0.07|0.03|N|O|1996-11-30|1996-10-27|1996-12-14|TAKE BACK RETURN|FOB|sly; slow asymptotes cajol| +32296|525389|25390|4|4|5657.44|0.00|0.00|N|O|1996-09-25|1996-11-20|1996-09-26|TAKE BACK RETURN|SHIP|s of the final, bo| +32296|211978|49491|5|35|66148.60|0.03|0.04|N|O|1996-12-14|1996-12-08|1997-01-01|DELIVER IN PERSON|MAIL|efully special accounts. carefully re| +32297|121751|34254|1|33|58500.75|0.09|0.04|N|O|1997-07-26|1997-08-15|1997-08-03|DELIVER IN PERSON|REG AIR|nusual theodolites. ironic ins| +32297|258198|20704|2|46|53184.28|0.10|0.05|N|O|1997-10-19|1997-10-02|1997-11-01|DELIVER IN PERSON|AIR|s; regular, ironic deposits print c| +32297|531543|31544|3|43|67704.36|0.09|0.05|N|O|1997-09-05|1997-09-20|1997-09-28|NONE|TRUCK|nts above the requests sleep furiously b| +32297|630983|43496|4|2|3827.90|0.10|0.06|N|O|1997-10-02|1997-08-24|1997-10-28|COLLECT COD|AIR|ding to the carefully quiet courts. | +32297|925396|37915|5|11|15634.85|0.06|0.02|N|O|1997-09-07|1997-09-21|1997-09-26|TAKE BACK RETURN|FOB|l, dogged account| +32298|234862|9871|1|24|43124.40|0.02|0.05|N|O|1996-11-02|1996-11-06|1996-11-08|DELIVER IN PERSON|MAIL|tions. carefully final theodol| +32298|318581|6100|2|43|68781.51|0.10|0.05|N|O|1996-12-20|1996-12-16|1997-01-10|NONE|REG AIR|thely pending acco| +32298|375405|420|3|49|72539.11|0.03|0.00|N|O|1996-12-29|1996-12-21|1997-01-23|TAKE BACK RETURN|RAIL|sits sleep ironic, final reques| +32299|637535|48|1|19|27977.50|0.04|0.07|N|O|1996-03-10|1996-01-10|1996-03-20|COLLECT COD|AIR| deposits. fluffily final packages ac| +32299|46904|46905|2|43|79588.70|0.02|0.07|N|O|1996-02-19|1996-02-27|1996-02-24|TAKE BACK RETURN|REG AIR|kages. excuses cajole | +32300|170302|7812|1|32|43913.60|0.05|0.04|N|O|1996-09-25|1996-07-14|1996-10-08|TAKE BACK RETURN|FOB|y final accounts n| +32300|257731|20237|2|46|77681.12|0.09|0.04|N|O|1996-09-23|1996-08-08|1996-09-28|TAKE BACK RETURN|MAIL|y. accounts wake. sp| +32300|679894|42408|3|26|48720.36|0.02|0.02|N|O|1996-08-10|1996-08-28|1996-08-31|TAKE BACK RETURN|FOB|s are across the quickly final orbit| +32301|810362|47911|1|48|61071.36|0.07|0.00|N|O|1995-10-22|1995-12-03|1995-10-30|TAKE BACK RETURN|TRUCK| slyly special requests x-ray. forges cajol| +32301|748256|23285|2|14|18259.08|0.05|0.00|N|O|1996-01-25|1996-01-03|1996-02-11|TAKE BACK RETURN|FOB|ans haggle bold t| +32301|925501|25502|3|50|76323.00|0.01|0.05|N|O|1995-12-24|1996-01-08|1996-01-07|NONE|FOB| regular attainments cajole caref| +32301|883327|20879|4|30|39308.40|0.06|0.01|N|O|1995-11-17|1995-12-05|1995-11-24|TAKE BACK RETURN|FOB|egular deposits. slyly final depo| +32301|69052|19053|5|9|9189.45|0.05|0.06|N|O|1995-11-09|1996-01-04|1995-12-01|DELIVER IN PERSON|REG AIR|e furiously after t| +32302|273355|48366|1|6|7970.04|0.10|0.02|N|O|1996-02-02|1996-03-06|1996-02-25|COLLECT COD|SHIP|nst the express, even deposits. acc| +32302|268459|18460|2|31|44250.64|0.08|0.01|N|O|1996-02-26|1996-02-19|1996-03-07|COLLECT COD|AIR|r pinto beans. quickly special dep| +32302|984486|47006|3|36|56535.84|0.04|0.03|N|O|1996-03-27|1996-02-07|1996-04-06|COLLECT COD|MAIL| furiously even idea| +32302|245890|8395|4|30|55076.40|0.07|0.07|N|O|1996-01-21|1996-02-08|1996-02-04|COLLECT COD|REG AIR|eep at the alwa| +32302|659613|9614|5|8|12580.64|0.07|0.02|N|O|1996-01-26|1996-02-29|1996-02-06|COLLECT COD|AIR|nal theodolites? s| +32302|106011|6012|6|40|40680.40|0.10|0.04|N|O|1996-04-12|1996-01-29|1996-04-20|TAKE BACK RETURN|AIR| sleep permanently beside the blithel| +32303|32356|19857|1|15|19325.25|0.07|0.00|A|F|1992-10-05|1992-10-12|1992-10-06|COLLECT COD|SHIP| sometimes final foxes| +32303|803576|3577|2|4|5918.12|0.04|0.06|R|F|1992-12-30|1992-11-20|1993-01-19|COLLECT COD|TRUCK|fully according to the qu| +32303|691673|41674|3|15|24969.60|0.02|0.04|A|F|1992-09-13|1992-12-06|1992-09-16|COLLECT COD|SHIP|re furiously| +32303|938371|890|4|37|52145.21|0.05|0.03|R|F|1992-11-19|1992-12-06|1992-12-13|COLLECT COD|REG AIR|. even ideas cajole furiously blithely reg| +32303|193404|18411|5|41|61393.40|0.03|0.03|A|F|1992-09-28|1992-11-16|1992-10-20|NONE|AIR|to beans. stealthy depos| +32328|873007|23008|1|39|38218.44|0.03|0.07|N|O|1996-06-14|1996-06-19|1996-06-16|DELIVER IN PERSON|TRUCK|y bold requests ha| +32328|627709|2734|2|45|73650.15|0.10|0.07|N|O|1996-06-23|1996-07-19|1996-07-22|TAKE BACK RETURN|MAIL|cial accounts. final, even accou| +32328|890727|40728|3|28|48095.04|0.03|0.03|N|O|1996-06-27|1996-06-30|1996-07-26|TAKE BACK RETURN|RAIL|ilent dinos boost| +32328|443262|5771|4|18|21694.32|0.06|0.00|N|O|1996-05-27|1996-07-20|1996-06-25|TAKE BACK RETURN|FOB|he accounts. requests sleep fluffil| +32329|449268|24285|1|41|49906.84|0.05|0.08|R|F|1992-03-04|1992-02-16|1992-03-24|TAKE BACK RETURN|AIR|ts. quickly final courts boost. fluffil| +32329|839387|26936|2|30|39790.20|0.08|0.06|A|F|1992-02-20|1992-02-18|1992-03-11|COLLECT COD|SHIP|al packages maintain. fluf| +32329|561805|24317|3|17|31735.26|0.02|0.00|R|F|1992-01-15|1992-03-10|1992-01-28|COLLECT COD|RAIL|g excuses may detect furiousl| +32329|255428|17934|4|38|52569.58|0.10|0.05|R|F|1992-02-23|1992-02-19|1992-02-27|NONE|MAIL|beans. slyly sl| +32329|967792|5350|5|14|26036.50|0.10|0.00|R|F|1992-03-18|1992-02-25|1992-04-07|NONE|REG AIR| regular, express| +32330|211155|23660|1|5|5330.70|0.01|0.01|N|O|1996-10-01|1996-09-20|1996-10-16|NONE|TRUCK|x slyly instruction| +32330|879937|17489|2|10|19168.90|0.08|0.04|N|O|1996-10-04|1996-09-11|1996-11-03|COLLECT COD|SHIP|quickly pending | +32331|140407|2910|1|19|27500.60|0.10|0.03|N|O|1997-07-07|1997-06-09|1997-08-04|DELIVER IN PERSON|RAIL|r the carefully even th| +32332|44079|6580|1|24|24553.68|0.05|0.00|N|O|1996-04-03|1996-03-25|1996-04-23|COLLECT COD|TRUCK| carefully silent pinto beans. pin| +32333|707461|32490|1|42|61674.06|0.06|0.00|R|F|1992-05-15|1992-07-11|1992-05-21|NONE|TRUCK|inal deposits integrate quic| +32333|293252|30768|2|33|41092.92|0.07|0.04|R|F|1992-07-21|1992-07-20|1992-07-24|NONE|SHIP|ajole carefu| +32333|680241|5268|3|40|48848.40|0.07|0.07|R|F|1992-08-25|1992-07-13|1992-09-17|TAKE BACK RETURN|MAIL| instructions. carefully even wartho| +32333|798000|48001|4|30|32939.10|0.09|0.06|A|F|1992-08-23|1992-06-07|1992-09-07|COLLECT COD|SHIP| along the ironic ideas. ideas boost | +32334|611920|24433|1|36|65948.04|0.01|0.06|N|O|1996-09-27|1996-08-06|1996-10-23|COLLECT COD|REG AIR|press, even instructions cajole blithel| +32334|523026|35537|2|11|11539.00|0.01|0.00|N|O|1996-07-28|1996-09-14|1996-08-24|NONE|SHIP|e beneath the express packages. theodoli| +32334|497529|22548|3|35|53427.50|0.04|0.01|N|O|1996-07-19|1996-08-19|1996-08-02|TAKE BACK RETURN|FOB|lve. regular tithes haggle regular| +32334|960094|35133|4|14|16156.70|0.03|0.05|N|O|1996-08-04|1996-09-27|1996-09-02|DELIVER IN PERSON|RAIL| deposits. quickly b| +32334|289171|26687|5|47|54527.52|0.03|0.01|N|O|1996-08-21|1996-09-21|1996-09-19|DELIVER IN PERSON|FOB|ickly ironic requests doubt among the care| +32334|87663|25167|6|7|11554.62|0.09|0.05|N|O|1996-10-28|1996-10-05|1996-11-10|COLLECT COD|REG AIR|lithely ironic deposits; furiously | +32334|345217|20230|7|36|45439.20|0.03|0.06|N|O|1996-09-14|1996-08-15|1996-09-19|DELIVER IN PERSON|FOB|te fluffily fluffi| +32335|59113|34116|1|37|39668.07|0.02|0.03|A|F|1993-03-09|1993-04-10|1993-04-01|TAKE BACK RETURN|MAIL|es. ironic pinto | +32335|501635|39166|2|25|40915.25|0.05|0.01|R|F|1993-03-05|1993-04-21|1993-03-23|DELIVER IN PERSON|MAIL|e final ideas boost furiously| +32335|972666|22667|3|22|38249.64|0.03|0.04|A|F|1993-02-27|1993-03-24|1993-03-09|TAKE BACK RETURN|RAIL|permanently even, reg| +32335|585817|35818|4|2|3805.58|0.07|0.07|R|F|1993-03-30|1993-05-03|1993-04-19|COLLECT COD|AIR| run. final accounts | +32360|753513|3514|1|50|78324.00|0.03|0.01|A|F|1993-03-01|1993-02-04|1993-03-15|TAKE BACK RETURN|TRUCK|ffix furiously slyly even ex| +32360|281437|6448|2|11|15602.62|0.02|0.00|A|F|1993-02-14|1993-03-11|1993-02-15|TAKE BACK RETURN|TRUCK|thinly pending asymptotes unwind| +32360|110249|10250|3|30|37777.20|0.07|0.05|A|F|1992-12-26|1993-01-31|1993-01-05|COLLECT COD|FOB|e ironicall| +32360|954868|17388|4|38|73067.16|0.01|0.04|A|F|1993-01-23|1993-02-10|1993-02-18|COLLECT COD|AIR| express courts x-ray about the slyly regul| +32360|464488|39507|5|46|66813.16|0.00|0.00|A|F|1993-01-12|1993-03-07|1993-01-19|DELIVER IN PERSON|MAIL|l foxes boost. furiously fina| +32361|310016|10017|1|42|43092.00|0.05|0.07|N|O|1998-01-22|1998-02-28|1998-01-25|DELIVER IN PERSON|TRUCK|the blithely regular accounts. pendin| +32361|425136|153|2|23|24405.53|0.02|0.08|N|O|1998-04-12|1998-03-31|1998-05-08|COLLECT COD|MAIL|iously. furiously bold foxes | +32361|246917|46918|3|2|3727.80|0.10|0.05|N|O|1998-04-23|1998-04-04|1998-05-06|DELIVER IN PERSON|REG AIR|ular accou| +32361|932809|45328|4|37|68145.12|0.07|0.00|N|O|1998-01-31|1998-02-18|1998-02-05|TAKE BACK RETURN|MAIL|s about the deposits sleep blithel| +32362|267674|42685|1|47|77158.02|0.04|0.06|N|O|1995-11-06|1995-09-29|1995-12-06|DELIVER IN PERSON|RAIL|fily even asymptotes sleep| +32362|782818|32819|2|33|62725.74|0.01|0.08|N|O|1995-12-14|1995-10-13|1995-12-17|DELIVER IN PERSON|FOB|y express packages cajole. regular ide| +32362|805632|30665|3|12|18451.08|0.06|0.08|N|O|1995-09-22|1995-11-15|1995-09-29|NONE|TRUCK|tes about the slyly regular pinto bean| +32363|51098|13600|1|4|4196.36|0.01|0.07|N|O|1998-03-11|1998-02-19|1998-03-17|COLLECT COD|TRUCK|ttainments haggle carefully. even, even ac| +32363|788830|1346|2|44|84427.20|0.08|0.00|N|O|1998-02-07|1998-03-24|1998-03-06|DELIVER IN PERSON|RAIL|ly stealthy depos| +32363|854374|41926|3|36|47819.88|0.02|0.07|N|O|1998-01-04|1998-02-21|1998-01-27|NONE|AIR|nic packages haggle quickly quickly | +32364|734801|9830|1|8|14686.16|0.06|0.02|R|F|1993-03-30|1993-04-30|1993-04-13|COLLECT COD|AIR|s haggle quick dependencies. | +32365|565438|2972|1|14|21047.74|0.03|0.04|N|O|1997-02-19|1996-12-12|1997-03-19|DELIVER IN PERSON|REG AIR|o the even excuses nag furiously furiously | +32365|301914|14421|2|41|78551.90|0.07|0.04|N|O|1997-01-28|1997-01-22|1997-02-05|DELIVER IN PERSON|FOB|ly pending theodolites haggle.| +32365|263701|38712|3|33|54934.77|0.01|0.05|N|O|1997-01-02|1996-11-30|1997-01-31|DELIVER IN PERSON|REG AIR|riously. ruthlessly ironic patterns ac| +32366|949871|49872|1|48|92199.84|0.09|0.01|N|O|1996-05-01|1996-04-29|1996-05-02|DELIVER IN PERSON|AIR|ndencies use along the daringly e| +32366|478679|28680|2|2|3315.30|0.02|0.05|N|O|1996-04-25|1996-04-30|1996-04-30|COLLECT COD|AIR| ironic instruction| +32366|146710|46711|3|20|35134.20|0.00|0.05|N|O|1996-04-18|1996-05-22|1996-05-04|DELIVER IN PERSON|REG AIR|regular instructi| +32367|899277|11795|1|10|12762.30|0.01|0.07|A|F|1995-02-28|1995-03-28|1995-03-26|COLLECT COD|TRUCK|packages. carefully bold requests s| +32392|329472|16991|1|43|64562.78|0.03|0.04|N|O|1998-02-23|1997-12-06|1998-02-25|TAKE BACK RETURN|MAIL| packages detect quickly blithely bold| +32393|939825|14862|1|6|11188.68|0.08|0.04|N|O|1997-10-23|1997-10-24|1997-10-27|NONE|SHIP|ged asymptotes. slyly even asympto| +32393|629372|4397|2|16|20821.44|0.01|0.02|N|O|1997-10-15|1997-11-12|1997-10-29|NONE|RAIL|ke furiously busily special exc| +32393|843278|5795|3|39|47627.97|0.08|0.00|N|O|1997-11-17|1997-12-10|1997-12-09|NONE|AIR|regular ideas haggle. careful| +32393|965865|40904|4|3|5792.46|0.03|0.06|N|O|1997-12-03|1997-10-28|1997-12-07|COLLECT COD|AIR|he unusual accounts daz| +32394|13729|1230|1|4|6570.88|0.02|0.03|N|O|1997-07-05|1997-05-28|1997-07-09|COLLECT COD|AIR|ress accounts| +32394|732034|7063|2|21|22386.00|0.04|0.04|N|O|1997-04-24|1997-06-06|1997-05-03|TAKE BACK RETURN|AIR| special accounts? never re| +32395|407815|7816|1|46|79248.34|0.03|0.06|R|F|1993-01-09|1993-01-19|1993-01-14|TAKE BACK RETURN|SHIP|thely ironic waters accordi| +32395|145888|20893|2|6|11603.28|0.10|0.06|A|F|1993-03-17|1993-01-20|1993-04-15|NONE|RAIL|ly even instructions. | +32395|925065|12620|3|18|19620.36|0.03|0.02|R|F|1993-01-14|1993-02-02|1993-01-17|NONE|RAIL|into beans use| +32395|558753|33776|4|25|45293.25|0.05|0.02|R|F|1993-02-09|1993-01-31|1993-02-14|COLLECT COD|SHIP| packages ought to| +32395|957733|32772|5|20|35813.80|0.06|0.01|A|F|1993-01-03|1993-01-06|1993-01-16|COLLECT COD|RAIL|cial pinto | +32396|940137|2656|1|27|31781.43|0.05|0.03|N|O|1997-06-25|1997-07-08|1997-07-20|COLLECT COD|FOB|gularly final excuses affix | +32396|869322|6874|2|12|15495.36|0.09|0.02|N|O|1997-06-07|1997-07-02|1997-07-02|DELIVER IN PERSON|MAIL|its solve carefully| +32397|560400|10401|1|50|73019.00|0.01|0.04|N|O|1996-09-07|1996-08-02|1996-09-14|COLLECT COD|RAIL|ronic asymptotes. fluffily pending ideas a| +32397|631595|44108|2|24|36637.44|0.07|0.04|N|O|1996-06-08|1996-08-30|1996-06-20|COLLECT COD|TRUCK|l packages | +32397|206584|6585|3|40|59622.80|0.01|0.03|N|O|1996-06-25|1996-07-08|1996-07-10|TAKE BACK RETURN|MAIL|onic foxes. fluffily even deposits sleep fu| +32397|49519|37020|4|5|7342.55|0.08|0.01|N|O|1996-07-11|1996-08-23|1996-07-25|NONE|TRUCK|-- final, even packages ha| +32397|257665|45181|5|13|21094.45|0.09|0.03|N|O|1996-08-07|1996-08-05|1996-08-13|NONE|REG AIR|ns. express, regular accounts use fur| +32398|300116|25129|1|49|54688.90|0.10|0.02|A|F|1992-09-23|1992-07-21|1992-10-16|NONE|SHIP| nag within the dugouts. forges boost b| +32398|47091|9592|2|19|19723.71|0.08|0.07|A|F|1992-07-31|1992-09-06|1992-08-20|NONE|MAIL|e final, ironic packages. final asym| +32398|447008|22025|3|12|11459.76|0.03|0.08|A|F|1992-08-31|1992-07-21|1992-09-01|TAKE BACK RETURN|AIR|ounts. regular ideas about the sly| +32399|237186|24699|1|33|37064.61|0.01|0.00|A|F|1993-12-22|1993-11-03|1994-01-10|DELIVER IN PERSON|RAIL|icing accoun| +32399|369565|44580|2|21|34325.55|0.02|0.06|R|F|1994-01-15|1993-12-10|1994-01-16|COLLECT COD|AIR|ons wake across the quickly stealt| +32399|267693|42704|3|18|29892.24|0.06|0.00|R|F|1994-01-01|1993-12-03|1994-01-17|COLLECT COD|FOB|s. blithely| +32399|113341|38346|4|1|1354.34|0.04|0.02|A|F|1993-12-19|1993-11-30|1994-01-10|DELIVER IN PERSON|TRUCK|s serve slyly express realms. iro| +32399|909501|22020|5|13|19635.98|0.08|0.05|R|F|1993-12-14|1993-11-23|1993-12-30|TAKE BACK RETURN|MAIL|ng to the caref| +32399|969600|44639|6|37|61773.72|0.00|0.04|A|F|1993-10-30|1993-12-15|1993-11-26|COLLECT COD|TRUCK| the requests haggle slyly regular warho| +32399|61502|36505|7|50|73175.00|0.04|0.05|A|F|1993-10-28|1993-12-09|1993-11-25|COLLECT COD|SHIP|en foxes after the even requ| +32424|653633|3634|1|50|79330.00|0.08|0.03|N|O|1998-07-09|1998-05-16|1998-07-15|DELIVER IN PERSON|AIR| beans cajole about the pinto bea| +32425|523893|23894|1|33|63256.71|0.05|0.03|A|F|1994-09-04|1994-08-01|1994-10-01|DELIVER IN PERSON|MAIL|ly express pinto beans. even package| +32426|217563|30068|1|21|31091.55|0.08|0.01|N|O|1996-12-12|1996-10-25|1996-12-26|NONE|AIR|uriously ironic foxes sleep foxes: regular | +32426|574394|11928|2|35|51392.95|0.03|0.06|N|O|1996-11-25|1996-10-01|1996-12-22|COLLECT COD|SHIP|deposits. slyly f| +32426|833111|33112|3|17|17749.19|0.07|0.03|N|O|1996-10-04|1996-10-30|1996-10-22|DELIVER IN PERSON|TRUCK|sly bold reques| +32426|87103|12106|4|47|51234.70|0.04|0.00|N|O|1996-08-30|1996-10-19|1996-09-16|DELIVER IN PERSON|MAIL|ously special pinto beans acc| +32426|925282|319|5|32|41831.68|0.05|0.02|N|O|1996-09-24|1996-11-06|1996-10-19|TAKE BACK RETURN|MAIL|y even packages. even somas s| +32426|204237|4238|6|1|1141.22|0.09|0.02|N|O|1996-09-21|1996-09-26|1996-10-03|NONE|SHIP|requests. furiously bold ideas sleep| +32426|601761|26786|7|7|11639.11|0.04|0.01|N|O|1996-11-24|1996-09-23|1996-11-25|TAKE BACK RETURN|MAIL|s integrate furiously| +32427|794131|19162|1|8|9800.80|0.08|0.07|N|O|1995-08-14|1995-10-22|1995-08-20|TAKE BACK RETURN|AIR|ag ironic requests. unusual pinto | +32427|947359|22396|2|17|23907.27|0.02|0.08|N|O|1995-11-20|1995-10-15|1995-12-10|TAKE BACK RETURN|REG AIR|lyly even pac| +32427|255487|43003|3|49|70681.03|0.06|0.00|N|O|1995-09-13|1995-10-25|1995-09-30|DELIVER IN PERSON|SHIP|ld deposits? flu| +32428|257252|44768|1|8|9673.92|0.08|0.08|R|F|1992-12-04|1992-10-25|1992-12-15|COLLECT COD|SHIP|usly final deposits. careful| +32428|618202|43227|2|33|36965.61|0.01|0.05|R|F|1992-11-18|1992-10-09|1992-12-10|TAKE BACK RETURN|TRUCK|efully bold accounts | +32428|109427|46934|3|16|22982.72|0.03|0.07|A|F|1992-09-12|1992-11-04|1992-09-25|DELIVER IN PERSON|REG AIR| platelets cajole blithely. slyly regular | +32428|134987|9992|4|27|54593.46|0.07|0.08|A|F|1992-09-29|1992-11-28|1992-10-21|NONE|SHIP|n theodolites. regular pinto beans cajole| +32429|594521|7033|1|23|37156.50|0.02|0.07|N|O|1997-01-21|1997-03-09|1997-02-07|COLLECT COD|AIR|ggle slyly acro| +32429|104326|29331|2|21|27936.72|0.07|0.07|N|O|1997-02-20|1997-02-23|1997-03-05|NONE|REG AIR| deposits are quickly. frays wake fu| +32429|393160|18175|3|4|5012.60|0.06|0.01|N|O|1997-01-31|1997-03-31|1997-02-21|TAKE BACK RETURN|FOB|ironically | +32429|827116|2149|4|13|13559.91|0.01|0.04|N|O|1997-05-12|1997-03-10|1997-05-28|COLLECT COD|FOB|carefully expres| +32429|326480|26481|5|43|64778.21|0.03|0.07|N|O|1997-05-11|1997-03-28|1997-05-25|COLLECT COD|FOB|nal packages use according | +32430|643712|43713|1|28|46359.04|0.00|0.06|N|O|1995-11-26|1995-12-05|1995-11-28|TAKE BACK RETURN|AIR| pinto beans wake a| +32431|860838|35873|1|26|46768.54|0.07|0.07|R|F|1994-09-05|1994-11-05|1994-10-03|DELIVER IN PERSON|AIR|gside of the slyly unusual| +32431|97397|47398|2|22|30676.58|0.04|0.04|A|F|1994-08-21|1994-10-11|1994-09-04|TAKE BACK RETURN|MAIL|c packages nag around the| +32431|945817|8336|3|23|42843.71|0.07|0.06|A|F|1994-08-22|1994-09-20|1994-09-10|DELIVER IN PERSON|SHIP|refully. quiet, unusual platelets haggle| +32431|334153|21672|4|22|26117.08|0.05|0.08|A|F|1994-09-16|1994-09-08|1994-10-15|COLLECT COD|TRUCK|ites. slyly ironic excuses h| +32431|100760|761|5|48|84516.48|0.05|0.06|A|F|1994-10-07|1994-10-12|1994-10-20|DELIVER IN PERSON|AIR|olites sleep fluffily slyly even idea| +32431|464913|14914|6|11|20656.79|0.10|0.06|R|F|1994-10-14|1994-09-12|1994-10-31|TAKE BACK RETURN|REG AIR|uickly ironic re| +32431|781915|31916|7|33|65897.04|0.06|0.07|R|F|1994-11-30|1994-11-01|1994-12-08|DELIVER IN PERSON|TRUCK|onic multipliers haggl| +32456|630051|30052|1|25|24525.50|0.05|0.03|N|O|1996-08-09|1996-05-26|1996-09-07|TAKE BACK RETURN|TRUCK|he blithely final packages. pa| +32456|265214|15215|2|28|33017.60|0.08|0.07|N|O|1996-04-29|1996-07-02|1996-05-02|NONE|REG AIR|refully slyly reg| +32456|450024|25|3|35|34090.00|0.04|0.03|N|O|1996-08-18|1996-07-07|1996-09-04|COLLECT COD|RAIL| even instructions use ca| +32456|545059|45060|4|25|27600.75|0.07|0.03|N|O|1996-08-10|1996-06-29|1996-09-02|DELIVER IN PERSON|FOB|usly. express accounts sleep aroun| +32456|794740|44741|5|12|22016.52|0.08|0.04|N|O|1996-06-16|1996-07-12|1996-06-29|COLLECT COD|MAIL|eep final packages. special, exp| +32456|182113|7120|6|4|4780.44|0.06|0.06|N|O|1996-04-30|1996-05-30|1996-05-12|TAKE BACK RETURN|RAIL|ide of the furiously special theodolites. | +32457|444696|7205|1|43|70548.81|0.00|0.08|N|O|1995-08-01|1995-09-18|1995-08-20|TAKE BACK RETURN|RAIL|xpress, special deposits| +32457|988964|1484|2|16|32846.72|0.00|0.03|N|O|1995-09-18|1995-09-25|1995-09-24|DELIVER IN PERSON|FOB|sts are. regular theodolites integrate flu| +32457|511081|23592|3|19|20749.14|0.00|0.02|N|O|1995-08-31|1995-09-09|1995-09-05|NONE|REG AIR|requests cajole slyly. even | +32457|731349|31350|4|49|67635.19|0.08|0.06|N|O|1995-10-12|1995-08-25|1995-10-14|COLLECT COD|SHIP|ys unusual depo| +32458|271717|46728|1|21|35462.70|0.07|0.04|N|O|1996-10-19|1996-11-07|1996-10-20|NONE|REG AIR|y unusual excuses. furiously special reque| +32458|744097|6612|2|50|57053.00|0.06|0.07|N|O|1996-10-23|1996-11-09|1996-11-20|COLLECT COD|RAIL|lways even requests hag| +32458|25810|38311|3|32|55545.92|0.08|0.01|N|O|1997-01-29|1996-12-23|1997-02-25|NONE|TRUCK|usual pinto beans across the bold, enticin| +32458|778395|3426|4|32|47147.52|0.01|0.04|N|O|1996-12-16|1996-11-17|1996-12-17|COLLECT COD|SHIP|gular accounts. blithely pendin| +32459|997707|22746|1|37|66772.42|0.10|0.00|N|O|1998-09-02|1998-08-29|1998-09-18|NONE|RAIL|ptotes solve caref| +32459|452440|27459|2|50|69621.00|0.03|0.04|N|O|1998-06-13|1998-08-10|1998-07-01|TAKE BACK RETURN|SHIP|s, even packages. regular packa| +32459|144396|44397|3|48|69138.72|0.03|0.05|N|O|1998-09-30|1998-07-17|1998-10-01|DELIVER IN PERSON|SHIP|equests. slyly pending platelets | +32459|859959|9960|4|45|86350.95|0.09|0.07|N|O|1998-08-19|1998-07-15|1998-08-30|NONE|MAIL|accounts sleep silently against | +32459|324632|24633|5|11|18222.82|0.07|0.00|N|O|1998-07-26|1998-07-30|1998-08-21|COLLECT COD|RAIL|ts affix furiously after the furiously | +32459|83816|33817|6|14|25197.34|0.06|0.02|N|O|1998-07-15|1998-08-16|1998-07-19|DELIVER IN PERSON|MAIL|usly blithely unusual instructions.| +32459|685375|35376|7|21|28567.14|0.01|0.00|N|O|1998-07-29|1998-08-07|1998-08-12|COLLECT COD|SHIP| packages! slyly special excuses | +32460|81796|31797|1|48|85333.92|0.04|0.03|N|O|1997-08-27|1997-07-08|1997-09-17|TAKE BACK RETURN|AIR|uffily final asymptotes. | +32460|739961|14990|2|41|82038.13|0.02|0.06|N|O|1997-07-13|1997-07-01|1997-07-22|COLLECT COD|MAIL|l requests wake. quickly special accounts b| +32460|523292|48313|3|40|52610.80|0.07|0.01|N|O|1997-05-27|1997-06-21|1997-06-16|TAKE BACK RETURN|MAIL|express instructions hinder furiousl| +32460|953136|40694|4|10|11890.90|0.05|0.02|N|O|1997-06-15|1997-06-30|1997-06-17|NONE|TRUCK|s-- requests haggle fluffily. carefully | +32460|343648|31167|5|34|57515.42|0.07|0.01|N|O|1997-05-18|1997-07-17|1997-05-21|COLLECT COD|AIR|requests sleep carefully accounts. si| +32460|688334|25874|6|24|31735.20|0.03|0.06|N|O|1997-07-31|1997-07-24|1997-08-04|DELIVER IN PERSON|RAIL|lyly final theodolites. blithely regular| +32461|462847|12848|1|43|77822.26|0.07|0.07|N|O|1996-12-30|1996-10-26|1997-01-18|COLLECT COD|MAIL|ial excuses. p| +32461|56604|19106|2|18|28090.80|0.06|0.05|N|O|1996-12-17|1996-12-02|1997-01-15|COLLECT COD|RAIL|lites after the final, fi| +32461|330958|30959|3|13|25856.22|0.09|0.08|N|O|1996-11-07|1996-11-12|1996-11-17|DELIVER IN PERSON|RAIL|ously express pinto beans nag furiousl| +32461|408032|20541|4|23|21620.23|0.05|0.06|N|O|1996-09-13|1996-11-01|1996-09-29|NONE|AIR|accounts sleep acr| +32462|960621|48179|1|8|13452.64|0.06|0.03|R|F|1993-09-11|1993-10-27|1993-10-02|TAKE BACK RETURN|TRUCK|ests above the slyly even pains engage f| +32462|141812|41813|2|13|24099.53|0.01|0.03|A|F|1993-08-21|1993-09-24|1993-09-15|TAKE BACK RETURN|FOB|heodolites haggle against the i| +32462|425965|38474|3|30|56728.20|0.02|0.08|A|F|1993-11-29|1993-10-16|1993-12-28|TAKE BACK RETURN|REG AIR|ily pending requests use quickly. excu| +32462|193312|43313|4|43|60428.33|0.08|0.00|R|F|1993-09-19|1993-10-16|1993-09-23|DELIVER IN PERSON|MAIL|fully ruthless courts. fluffily special p| +32462|982835|45355|5|37|70958.23|0.00|0.02|A|F|1993-08-25|1993-09-03|1993-08-31|TAKE BACK RETURN|REG AIR| ideas acc| +32462|506889|44420|6|32|60667.52|0.08|0.01|A|F|1993-09-07|1993-09-30|1993-09-27|DELIVER IN PERSON|SHIP|courts. fluffily unusual frays boost caref| +32462|277097|27098|7|9|9666.72|0.07|0.05|A|F|1993-08-14|1993-09-06|1993-09-05|NONE|RAIL|of the excuses cajole | +32463|162556|12557|1|43|69597.65|0.09|0.07|N|O|1996-04-13|1996-01-21|1996-05-03|COLLECT COD|REG AIR|final asymptotes haggle carefully. ironi| +32463|63731|26233|2|39|66094.47|0.02|0.00|N|O|1996-01-21|1996-01-26|1996-02-16|TAKE BACK RETURN|REG AIR|final packages. accounts kin| +32463|112796|37801|3|37|66925.23|0.03|0.05|N|O|1996-01-20|1996-02-10|1996-01-23|TAKE BACK RETURN|SHIP|ld ideas boost| +32463|759473|9474|4|7|10727.08|0.08|0.03|N|O|1996-03-05|1996-01-15|1996-04-01|COLLECT COD|RAIL|blithely. furiously u| +32488|506249|18760|1|23|28870.06|0.03|0.04|R|F|1994-09-14|1994-07-12|1994-09-18|NONE|FOB|ve to haggle along| +32488|523736|11267|2|19|33434.49|0.00|0.05|R|F|1994-08-20|1994-08-01|1994-09-15|TAKE BACK RETURN|MAIL| furiously daring pain| +32489|843097|30646|1|49|50962.45|0.07|0.01|N|O|1997-07-14|1997-07-09|1997-08-11|DELIVER IN PERSON|MAIL|x-ray furio| +32489|931003|31004|2|23|23781.08|0.02|0.08|N|O|1997-05-14|1997-07-11|1997-06-05|NONE|MAIL|ding to the fluffily final pinto beans caj| +32489|358297|20805|3|24|32526.72|0.02|0.06|N|O|1997-05-11|1997-05-16|1997-05-26|TAKE BACK RETURN|RAIL|, bold dugouts haggle slyly ironi| +32489|896950|46951|4|21|40885.11|0.04|0.02|N|O|1997-04-29|1997-06-22|1997-05-21|NONE|MAIL| the accounts haggle about the furiously un| +32490|601458|38995|1|47|63892.74|0.08|0.06|A|F|1995-05-11|1995-04-14|1995-05-27|DELIVER IN PERSON|AIR|nis. pending pinto beans boost ruthless a| +32490|701645|1646|2|17|27992.37|0.05|0.01|A|F|1995-04-16|1995-05-02|1995-05-04|TAKE BACK RETURN|FOB|sts. blithely final acc| +32490|544757|44758|3|16|28827.68|0.05|0.03|N|O|1995-06-21|1995-05-30|1995-07-14|NONE|TRUCK|gular pinto beans. blithely regular depen| +32490|717625|17626|4|46|75559.14|0.04|0.01|N|O|1995-07-01|1995-05-31|1995-07-19|TAKE BACK RETURN|SHIP|ole carefully among the | +32490|119727|44732|5|42|73362.24|0.02|0.03|N|F|1995-06-16|1995-04-09|1995-07-02|COLLECT COD|RAIL|sts. slyly pending pinto beans wake above| +32490|243553|43554|6|30|44896.20|0.06|0.07|A|F|1995-04-08|1995-05-09|1995-04-27|COLLECT COD|MAIL|ts detect after the furiously final de| +32490|389764|39765|7|3|5561.25|0.10|0.08|A|F|1995-05-31|1995-05-10|1995-06-13|DELIVER IN PERSON|TRUCK|ly even requests a| +32491|759477|21993|1|2|3072.88|0.09|0.01|N|O|1996-05-23|1996-05-26|1996-05-29|COLLECT COD|TRUCK|eas thrash carefully. carefully i| +32491|526686|26687|2|46|78782.36|0.01|0.04|N|O|1996-06-11|1996-05-25|1996-06-26|DELIVER IN PERSON|SHIP|ole blithely: expre| +32491|994963|44964|3|18|37042.56|0.02|0.00|N|O|1996-08-14|1996-07-13|1996-09-08|DELIVER IN PERSON|TRUCK|lly quickly regular requests: carefully iro| +32491|331818|44325|4|45|83241.00|0.10|0.07|N|O|1996-07-26|1996-05-29|1996-08-08|NONE|SHIP|egrate final ideas. ironic, silent instru| +32492|474625|24626|1|45|71982.00|0.06|0.02|N|O|1996-06-19|1996-07-24|1996-07-03|NONE|REG AIR| carefully express deposits play after| +32492|17445|4946|2|3|4087.32|0.10|0.06|N|O|1996-09-06|1996-08-04|1996-10-01|COLLECT COD|RAIL|sits nag among | +32492|193426|30936|3|49|74451.58|0.08|0.08|N|O|1996-09-07|1996-06-29|1996-09-09|TAKE BACK RETURN|FOB|ckly special asymptot| +32492|898480|48481|4|18|26611.92|0.03|0.07|N|O|1996-08-30|1996-07-04|1996-09-09|TAKE BACK RETURN|AIR|lly bold theodol| +32492|748217|23246|5|30|37955.40|0.03|0.02|N|O|1996-07-30|1996-06-17|1996-08-16|NONE|TRUCK| the furiously u| +32493|434898|34899|1|38|69649.06|0.04|0.00|N|O|1996-06-26|1996-06-12|1996-07-03|COLLECT COD|REG AIR|equests boost quickl| +32494|30295|5296|1|21|25731.09|0.10|0.01|A|F|1994-11-21|1994-11-02|1994-11-24|TAKE BACK RETURN|REG AIR|thely around the qui| +32494|151324|13828|2|31|42634.92|0.03|0.01|A|F|1994-10-12|1994-10-10|1994-11-11|TAKE BACK RETURN|SHIP| packages. pearls w| +32494|297832|22843|3|20|36596.40|0.01|0.03|A|F|1994-11-14|1994-09-07|1994-11-18|DELIVER IN PERSON|SHIP|y after the bold pinto beans. car| +32495|813007|25524|1|11|10119.56|0.04|0.03|A|F|1992-12-07|1992-12-27|1992-12-09|NONE|RAIL|uctions cajole carefully accordin| +32495|199090|11594|2|45|53509.05|0.04|0.08|A|F|1992-10-22|1992-12-11|1992-11-21|COLLECT COD|MAIL|eodolites against the pending depos| +32495|103946|28951|3|2|3899.88|0.01|0.07|R|F|1992-10-08|1992-11-04|1992-10-10|DELIVER IN PERSON|TRUCK|ecial notornis sleep car| +32495|5794|18295|4|45|76490.55|0.01|0.00|A|F|1993-01-19|1992-12-29|1993-02-14|DELIVER IN PERSON|SHIP|fluffily. pending, | +32495|365927|3449|5|33|65766.03|0.10|0.00|A|F|1992-11-21|1992-11-29|1992-11-27|DELIVER IN PERSON|AIR|lar deposit| +32495|132456|7461|6|31|46141.95|0.06|0.06|R|F|1993-01-06|1992-11-13|1993-01-09|TAKE BACK RETURN|REG AIR|ully special | +32520|4678|4679|1|2|3165.34|0.07|0.03|R|F|1995-03-15|1995-02-24|1995-03-26|DELIVER IN PERSON|REG AIR|ly even ideas across the quickly iron| +32520|607138|32163|2|10|10451.00|0.10|0.05|A|F|1995-04-12|1995-02-24|1995-04-23|NONE|FOB| the even, final ideas are furiously furi| +32520|154189|16693|3|30|37295.40|0.04|0.07|R|F|1995-05-06|1995-04-12|1995-05-25|TAKE BACK RETURN|SHIP|carefully. slyly b| +32520|450305|12815|4|25|31382.00|0.07|0.08|R|F|1995-04-17|1995-03-01|1995-05-05|DELIVER IN PERSON|FOB|usly even accounts about the final request| +32520|262974|25480|5|16|30991.36|0.08|0.06|A|F|1995-04-07|1995-03-21|1995-04-15|DELIVER IN PERSON|REG AIR|ggle carefully blit| +32520|798802|11318|6|1|1900.77|0.05|0.08|R|F|1995-01-19|1995-03-25|1995-01-28|COLLECT COD|RAIL|s sleep carefully. blithe| +32520|449255|49256|7|39|46964.97|0.01|0.02|A|F|1995-03-30|1995-02-28|1995-04-18|TAKE BACK RETURN|TRUCK|s dolphins cajole. accounts| +32521|621039|21040|1|38|36480.00|0.09|0.00|R|F|1995-05-19|1995-06-05|1995-05-25|NONE|AIR|uffily ironic requests| +32521|789054|39055|2|50|57151.00|0.06|0.05|A|F|1995-05-27|1995-07-19|1995-05-30|TAKE BACK RETURN|AIR|o beans. carefully fi| +32521|622544|35057|3|35|51327.85|0.05|0.06|N|F|1995-06-02|1995-05-29|1995-06-19|DELIVER IN PERSON|REG AIR| requests use carefully | +32521|87761|37762|4|9|15738.84|0.06|0.00|N|O|1995-08-14|1995-06-27|1995-08-16|NONE|TRUCK|ole quickly! quickly final accounts| +32521|996566|34124|5|44|73150.88|0.03|0.04|N|F|1995-05-23|1995-06-05|1995-06-22|TAKE BACK RETURN|REG AIR|lithely even requests. excuses aft| +32521|269336|31842|6|15|19579.80|0.09|0.06|R|F|1995-05-09|1995-07-06|1995-06-01|COLLECT COD|AIR|after the furiously regu| +32521|713408|13409|7|3|4264.11|0.02|0.02|N|O|1995-06-28|1995-07-09|1995-07-12|NONE|SHIP|ickly. deposits against th| +32522|233201|20714|1|48|54441.12|0.02|0.07|N|O|1996-09-23|1996-08-19|1996-10-15|NONE|FOB|ess hockey players. c| +32522|407376|7377|2|3|3850.05|0.06|0.05|N|O|1996-09-10|1996-08-07|1996-09-28|TAKE BACK RETURN|RAIL|ironic theodolites play slyly again| +32522|766936|29452|3|4|8011.60|0.08|0.00|N|O|1996-08-14|1996-08-09|1996-09-07|DELIVER IN PERSON|RAIL|s even theodolites wake slyly along t| +32523|281596|44102|1|31|48904.98|0.00|0.08|N|O|1996-05-15|1996-04-07|1996-05-27|NONE|REG AIR|, regular packages above| +32524|548812|36343|1|1|1860.79|0.04|0.03|N|O|1996-07-29|1996-08-03|1996-08-22|COLLECT COD|RAIL| accounts. bold, | +32524|868287|5839|2|6|7531.44|0.01|0.00|N|O|1996-07-01|1996-08-24|1996-07-04|TAKE BACK RETURN|TRUCK|eans. ironic, ironi| +32524|291303|3809|3|29|37534.41|0.02|0.00|N|O|1996-06-12|1996-08-03|1996-07-09|TAKE BACK RETURN|RAIL|sits. quickly silent theodolites among the | +32524|913901|13902|4|14|26808.04|0.02|0.02|N|O|1996-07-20|1996-08-18|1996-08-18|TAKE BACK RETURN|SHIP|efully final packages haggle flu| +32524|933431|45950|5|4|5857.56|0.04|0.00|N|O|1996-07-06|1996-08-21|1996-08-02|NONE|MAIL|fully quiet multi| +32525|327195|27196|1|36|43998.48|0.05|0.03|N|O|1998-03-05|1998-02-21|1998-03-28|COLLECT COD|REG AIR|boldly permanent| +32525|163846|38853|2|32|61114.88|0.10|0.07|N|O|1998-02-09|1998-01-22|1998-02-26|DELIVER IN PERSON|REG AIR|ding, even packages. fi| +32525|757151|19667|3|40|48324.80|0.06|0.03|N|O|1998-03-05|1998-01-26|1998-04-02|NONE|TRUCK|l asymptotes. furiously fina| +32526|116352|28855|1|37|50628.95|0.00|0.05|N|O|1997-10-26|1997-09-01|1997-11-10|DELIVER IN PERSON|AIR|ges are carefully a| +32526|514123|26634|2|25|28427.50|0.02|0.04|N|O|1997-11-19|1997-09-05|1997-12-13|DELIVER IN PERSON|SHIP|tes against the furiously blithe pa| +32526|863946|38981|3|27|51567.30|0.06|0.03|N|O|1997-09-19|1997-10-17|1997-09-27|COLLECT COD|TRUCK|ng the express, fi| +32526|337152|12165|4|45|53511.30|0.01|0.06|N|O|1997-08-10|1997-09-11|1997-09-09|COLLECT COD|TRUCK|ounts. carefully even re| +32526|504089|41620|5|18|19675.08|0.06|0.02|N|O|1997-09-19|1997-10-21|1997-10-17|NONE|TRUCK|uctions are blithely un| +32526|207348|32357|6|42|52723.86|0.05|0.03|N|O|1997-08-10|1997-09-05|1997-08-26|NONE|RAIL|dolites. fluffily quiet pinto| +32527|999114|49115|1|26|31539.82|0.00|0.00|N|O|1997-03-29|1997-04-02|1997-04-03|DELIVER IN PERSON|SHIP| furiously through the slyly final acc| +32527|98226|10728|2|36|44071.92|0.01|0.06|N|O|1997-01-29|1997-04-19|1997-02-28|COLLECT COD|FOB|ermanently quickly | +32527|869100|44135|3|21|22450.26|0.08|0.08|N|O|1997-04-10|1997-03-08|1997-04-29|DELIVER IN PERSON|TRUCK|de of the slyly ironic theodolit| +32527|953091|15611|4|7|8008.35|0.04|0.00|N|O|1997-02-24|1997-04-27|1997-03-24|DELIVER IN PERSON|REG AIR|efully even pack| +32527|592262|29796|5|11|14896.64|0.09|0.01|N|O|1997-02-09|1997-04-19|1997-02-21|COLLECT COD|SHIP|nag slyly. sheaves solve | +32552|839631|27180|1|32|50258.88|0.03|0.05|A|F|1995-05-30|1995-07-21|1995-06-12|COLLECT COD|FOB|nal pinto beans; regular| +32552|672442|34956|2|9|12729.69|0.05|0.00|R|F|1995-05-14|1995-06-25|1995-06-08|TAKE BACK RETURN|REG AIR|y. fluffily final packages | +32552|716357|41386|3|9|12359.88|0.03|0.08|N|O|1995-07-30|1995-06-11|1995-08-02|TAKE BACK RETURN|AIR|he quiet deposits maintain f| +32552|795563|45564|4|27|44780.31|0.01|0.03|N|F|1995-06-03|1995-08-04|1995-06-30|DELIVER IN PERSON|REG AIR| the pending, ironic foxes affix careful| +32553|76667|14171|1|39|64102.74|0.07|0.07|R|F|1995-05-06|1995-04-03|1995-05-20|COLLECT COD|TRUCK|accounts cajole slyly final | +32554|82792|20296|1|38|67442.02|0.00|0.00|N|O|1997-04-15|1997-04-16|1997-05-04|DELIVER IN PERSON|SHIP| the slyly special accoun| +32554|477349|14877|2|10|13263.20|0.05|0.07|N|O|1997-03-20|1997-04-13|1997-04-02|COLLECT COD|FOB|p about the final ideas. quickly unusua| +32554|790099|15130|3|2|2378.12|0.01|0.04|N|O|1997-05-13|1997-04-08|1997-05-20|NONE|REG AIR|uriously against the furiously| +32554|183523|21033|4|28|44982.56|0.10|0.01|N|O|1997-02-28|1997-03-11|1997-03-13|NONE|REG AIR|inst the regular, pending excus| +32554|470628|20629|5|2|3197.20|0.05|0.01|N|O|1997-02-06|1997-03-05|1997-02-16|NONE|FOB|. ironic, express theodo| +32554|841824|41825|6|2|3531.56|0.00|0.02|N|O|1997-02-11|1997-02-26|1997-02-23|TAKE BACK RETURN|FOB| cajole. furiously regular deco| +32555|561592|11593|1|26|42992.82|0.02|0.01|N|O|1998-03-18|1998-01-11|1998-04-09|DELIVER IN PERSON|TRUCK|layers haggle furiously unusual packa| +32555|672586|10126|2|32|49873.60|0.07|0.00|N|O|1997-12-10|1998-01-01|1998-01-05|NONE|SHIP|. carefully ironic ins| +32555|152220|27227|3|50|63611.00|0.05|0.07|N|O|1998-03-22|1998-01-03|1998-04-13|COLLECT COD|RAIL|ntain quickly. notornis| +32555|353669|16177|4|23|39620.95|0.06|0.04|N|O|1998-01-10|1998-02-20|1998-01-20|COLLECT COD|REG AIR|y quickly ironic| +32555|109132|46639|5|12|13693.56|0.07|0.01|N|O|1998-01-09|1998-02-17|1998-01-25|DELIVER IN PERSON|REG AIR| use carefull| +32555|164773|39780|6|17|31242.09|0.03|0.08|N|O|1998-02-05|1998-01-22|1998-02-06|TAKE BACK RETURN|RAIL|l accounts nag. quick| +32556|495901|45902|1|29|55009.52|0.09|0.03|N|O|1996-04-21|1996-03-12|1996-04-30|COLLECT COD|FOB| express packages gr| +32556|606440|18953|2|50|67320.50|0.03|0.05|N|O|1996-03-31|1996-04-01|1996-04-14|COLLECT COD|AIR|deposits integrate blith| +32556|432730|32731|3|39|64845.69|0.02|0.00|N|O|1996-03-29|1996-02-22|1996-04-03|COLLECT COD|MAIL|ckly final | +32556|883456|21008|4|47|67652.27|0.08|0.04|N|O|1996-05-04|1996-03-25|1996-06-02|DELIVER IN PERSON|AIR|e regular, ironic platelets mold fluffi| +32556|239187|39188|5|1|1126.17|0.02|0.02|N|O|1996-03-27|1996-04-06|1996-04-11|DELIVER IN PERSON|AIR|. express ideas haggle slyly| +32556|21|22|6|25|23025.50|0.10|0.01|N|O|1996-04-05|1996-03-08|1996-04-22|NONE|SHIP|ependencies are. quickly ironic dolphins | +32557|75185|25186|1|1|1160.18|0.03|0.01|N|O|1995-08-14|1995-08-23|1995-08-21|DELIVER IN PERSON|AIR|instructions nag. sil| +32557|631885|6910|2|18|32703.30|0.00|0.01|N|O|1995-09-15|1995-09-17|1995-09-27|DELIVER IN PERSON|REG AIR|ach quickly quickly | +32557|82467|19971|3|14|20292.44|0.02|0.08|N|O|1995-08-26|1995-09-10|1995-09-09|COLLECT COD|MAIL|ss deposits nag furiously a| +32557|12297|49798|4|14|16930.06|0.09|0.02|N|O|1995-07-12|1995-09-29|1995-07-31|DELIVER IN PERSON|TRUCK| can was slyly above the ruthle| +32557|662630|37657|5|39|62111.40|0.10|0.08|N|O|1995-09-05|1995-08-31|1995-10-01|NONE|REG AIR|ts. carefully final| +32557|809904|47453|6|2|3627.72|0.00|0.01|N|O|1995-09-29|1995-09-02|1995-10-27|DELIVER IN PERSON|RAIL|lyly ironic acco| +32557|45958|20959|7|14|26655.30|0.09|0.05|N|O|1995-07-24|1995-09-13|1995-07-30|COLLECT COD|AIR|ts nag sly| +32558|405913|30930|1|32|58204.48|0.04|0.05|R|F|1995-04-16|1995-02-25|1995-04-20|NONE|RAIL|ins. furious| +32558|172305|34809|2|29|39941.70|0.01|0.08|A|F|1995-01-23|1995-03-22|1995-02-12|NONE|TRUCK|lly after the blithely ironi| +32558|917670|42707|3|35|59067.05|0.08|0.01|A|F|1995-04-17|1995-04-01|1995-05-06|DELIVER IN PERSON|FOB|requests integ| +32558|266039|28545|4|44|44220.88|0.10|0.05|A|F|1995-04-19|1995-02-07|1995-05-04|NONE|REG AIR| furiously | +32558|302878|27891|5|32|60187.52|0.04|0.03|R|F|1995-04-04|1995-03-15|1995-04-11|COLLECT COD|REG AIR|egrate furiously. furiously| +32558|455441|17951|6|7|9774.94|0.04|0.07|R|F|1995-03-14|1995-02-20|1995-04-06|TAKE BACK RETURN|FOB|ironic, regular packages cajole furio| +32558|593947|18970|7|5|10204.60|0.08|0.05|A|F|1995-01-21|1995-03-08|1995-02-18|TAKE BACK RETURN|AIR|s above the carefully silent excuses was ab| +32559|464571|39590|1|5|7677.75|0.03|0.05|A|F|1993-11-21|1993-11-07|1993-12-03|COLLECT COD|MAIL|ithely final th| +32559|36428|48929|2|4|5457.68|0.10|0.02|R|F|1993-11-25|1993-10-29|1993-12-21|NONE|REG AIR| carefully final court| +32584|835503|48020|1|32|46030.72|0.00|0.04|N|O|1998-05-03|1998-05-28|1998-05-22|TAKE BACK RETURN|AIR|fluffily p| +32584|285480|22996|2|32|46895.04|0.08|0.02|N|O|1998-06-27|1998-06-05|1998-07-02|NONE|AIR|thlessly final requests should caj| +32585|294590|19601|1|26|41199.08|0.03|0.03|R|F|1995-03-31|1995-03-26|1995-04-04|COLLECT COD|TRUCK|ly alongside of the special platelets. sile| +32585|158285|20789|2|35|47014.80|0.07|0.06|R|F|1995-04-30|1995-05-11|1995-05-26|COLLECT COD|MAIL|fix thinly even packages. ironi| +32585|295486|7992|3|6|8888.82|0.03|0.05|A|F|1995-04-28|1995-05-09|1995-05-16|TAKE BACK RETURN|MAIL|uickly unusual ideas nag across| +32585|229407|4416|4|8|10691.12|0.04|0.05|A|F|1995-04-22|1995-04-30|1995-05-15|NONE|SHIP|, unusual packages. fluffily pending accoun| +32585|641047|16072|5|45|44460.45|0.01|0.03|R|F|1995-03-16|1995-05-13|1995-03-31|COLLECT COD|MAIL|lly final sentiments! furiously fin| +32585|64278|39281|6|49|60871.23|0.00|0.06|A|F|1995-05-29|1995-04-16|1995-06-15|DELIVER IN PERSON|REG AIR|lyly. carefully final requests haggl| +32586|941855|29410|1|22|41729.82|0.00|0.08|A|F|1994-11-29|1995-01-12|1994-12-09|TAKE BACK RETURN|AIR|fully again| +32587|749132|11647|1|47|55511.70|0.02|0.05|R|F|1993-10-12|1993-08-15|1993-10-13|DELIVER IN PERSON|TRUCK|ntegrate. deposits among the blithely| +32587|653522|3523|2|14|20656.86|0.00|0.00|A|F|1993-08-14|1993-09-19|1993-09-02|DELIVER IN PERSON|TRUCK| bold accounts wake fluffily | +32587|743793|6308|3|8|14694.08|0.10|0.06|A|F|1993-08-12|1993-09-11|1993-09-11|COLLECT COD|RAIL|uriously even packa| +32587|922203|22204|4|34|41655.44|0.09|0.00|R|F|1993-08-23|1993-08-09|1993-09-21|DELIVER IN PERSON|MAIL|oxes against the fluffily fi| +32588|991304|41305|1|47|65577.22|0.01|0.05|R|F|1992-04-29|1992-03-07|1992-05-10|NONE|REG AIR|ccounts wake slyly| +32588|836466|11499|2|43|60304.06|0.00|0.04|R|F|1992-02-17|1992-04-03|1992-02-24|DELIVER IN PERSON|AIR|oost about the thinly close ac| +32588|470028|7556|3|49|48902.00|0.04|0.03|A|F|1992-04-06|1992-04-10|1992-04-09|DELIVER IN PERSON|TRUCK|iously ironic acco| +32588|747068|47069|4|6|6690.18|0.05|0.03|R|F|1992-05-07|1992-04-04|1992-06-06|TAKE BACK RETURN|SHIP| even courts use carefully alon| +32588|956527|19047|5|43|68089.64|0.01|0.04|A|F|1992-01-27|1992-03-15|1992-02-11|DELIVER IN PERSON|TRUCK|sleep slyly carefully regula| +32588|348418|35937|6|32|46924.80|0.01|0.05|R|F|1992-03-09|1992-03-23|1992-03-18|NONE|MAIL| busily against the carefully q| +32589|191484|28994|1|19|29934.12|0.00|0.01|R|F|1992-12-25|1992-10-23|1993-01-15|NONE|REG AIR|unts doze acros| +32589|255735|5736|2|37|62556.64|0.05|0.08|R|F|1992-12-20|1992-10-27|1993-01-12|NONE|REG AIR|old foxes; fluffil| +32589|128398|3403|3|32|45644.48|0.09|0.08|R|F|1992-12-21|1992-11-16|1992-12-27|DELIVER IN PERSON|FOB|y after the bravely u| +32589|977233|27234|4|19|24893.61|0.05|0.04|R|F|1992-11-30|1992-12-06|1992-12-17|DELIVER IN PERSON|MAIL|packages are against the bol| +32590|938798|38799|1|19|34898.25|0.08|0.00|A|F|1992-12-16|1992-12-25|1992-12-23|DELIVER IN PERSON|FOB|express foxes wak| +32590|372392|34900|2|34|49788.92|0.09|0.08|A|F|1992-11-17|1992-11-08|1992-11-24|DELIVER IN PERSON|FOB|posits wake special requests. ironic, i| +32590|782716|32717|3|41|73745.88|0.01|0.03|A|F|1993-01-08|1992-12-16|1993-01-29|TAKE BACK RETURN|FOB|iously. slyly silent excus| +32590|98137|10639|4|25|28378.25|0.02|0.07|A|F|1992-12-04|1992-11-08|1992-12-14|DELIVER IN PERSON|RAIL| even requests. | +32590|383318|20840|5|27|37835.10|0.05|0.04|R|F|1992-10-26|1992-10-28|1992-10-28|COLLECT COD|AIR|ccording to the quickly silent exc| +32590|424777|24778|6|10|17017.50|0.08|0.04|R|F|1992-10-31|1992-11-16|1992-11-13|COLLECT COD|MAIL|haggle slyly. fluffily regular| +32590|211081|36090|7|17|16865.19|0.01|0.04|A|F|1992-11-19|1992-11-29|1992-12-05|TAKE BACK RETURN|FOB| carefully even ideas.| +32591|622913|47938|1|11|20194.68|0.03|0.05|N|O|1998-02-05|1997-12-24|1998-03-01|TAKE BACK RETURN|FOB|ut the unusual, unusual reque| +32591|287498|25014|2|20|29709.60|0.04|0.01|N|O|1998-02-27|1998-02-04|1998-03-21|COLLECT COD|SHIP|s cajole furiously according to the | +32591|970821|8379|3|34|64320.52|0.02|0.05|N|O|1998-01-31|1998-02-10|1998-02-12|DELIVER IN PERSON|RAIL|he quick deposits. t| +32591|581366|18900|4|47|68024.98|0.04|0.06|N|O|1998-03-04|1998-01-30|1998-03-13|TAKE BACK RETURN|REG AIR|s. blithely final| +32591|1912|26913|5|18|32650.38|0.07|0.00|N|O|1997-12-08|1998-01-23|1998-01-02|COLLECT COD|REG AIR|e slyly regular accounts. furi| +32591|127990|40493|6|41|82737.59|0.05|0.08|N|O|1998-02-14|1998-01-08|1998-03-04|NONE|AIR|lar realms | +32591|116418|16419|7|47|67417.27|0.06|0.04|N|O|1998-02-09|1998-02-01|1998-03-03|TAKE BACK RETURN|MAIL|regular pinto beans. furi| +32616|630117|17654|1|10|10470.80|0.09|0.04|N|O|1995-11-30|1995-10-19|1995-12-09|TAKE BACK RETURN|AIR|g packages. even packages cajole | +32616|363309|831|2|41|56263.89|0.01|0.04|N|O|1995-10-12|1995-11-04|1995-10-14|DELIVER IN PERSON|MAIL|sts. slyly bold account| +32616|122465|34968|3|6|8924.76|0.03|0.06|N|O|1995-11-23|1995-11-21|1995-12-06|TAKE BACK RETURN|RAIL|ts should have to cajole carefully accordi| +32616|261000|23506|4|41|39400.59|0.00|0.01|N|O|1995-09-28|1995-11-14|1995-10-02|TAKE BACK RETURN|REG AIR|nal requests. blithely bold ideas | +32616|618800|43825|5|47|80782.19|0.10|0.00|N|O|1995-10-20|1995-11-02|1995-11-19|NONE|TRUCK|integrate blithely even pa| +32616|154893|29900|6|36|70124.04|0.00|0.06|N|O|1995-09-18|1995-11-19|1995-09-26|TAKE BACK RETURN|REG AIR|ealms sleep carefully carefully| +32616|279118|4129|7|8|8776.80|0.02|0.07|N|O|1995-12-27|1995-11-05|1996-01-12|DELIVER IN PERSON|TRUCK|oost after the ironic asympto| +32617|133663|21170|1|46|78046.36|0.10|0.07|N|O|1997-04-30|1997-03-30|1997-05-14|DELIVER IN PERSON|FOB|ely blithely pen| +32617|460794|48322|2|20|35095.40|0.09|0.01|N|O|1997-03-17|1997-04-25|1997-03-27|TAKE BACK RETURN|TRUCK|osits. slyly pending requests sleep| +32617|551895|39429|3|37|72034.19|0.08|0.06|N|O|1997-06-07|1997-04-03|1997-06-19|DELIVER IN PERSON|REG AIR| furiously e| +32617|687500|14|4|43|63961.21|0.07|0.07|N|O|1997-05-14|1997-04-19|1997-05-28|COLLECT COD|REG AIR|sts about the furiously e| +32617|798066|48067|5|8|9312.24|0.03|0.01|N|O|1997-04-08|1997-04-20|1997-05-05|DELIVER IN PERSON|REG AIR|y. blithely r| +32618|980829|43349|1|7|13368.46|0.04|0.05|N|O|1996-10-16|1996-11-30|1996-10-24|TAKE BACK RETURN|REG AIR|eas affix alongside of the careful| +32618|785725|35726|2|12|21728.28|0.01|0.08|N|O|1997-01-07|1996-12-15|1997-01-18|TAKE BACK RETURN|TRUCK|heodolites us| +32618|670836|45863|3|10|18068.00|0.09|0.07|N|O|1996-10-02|1996-11-20|1996-10-29|TAKE BACK RETURN|MAIL|are fluffily unusua| +32618|735027|22570|4|20|21239.80|0.01|0.07|N|O|1997-01-12|1996-11-05|1997-01-18|COLLECT COD|AIR|ests can use carefully. | +32618|586317|48829|5|7|9823.03|0.09|0.03|N|O|1996-12-15|1996-11-21|1997-01-11|TAKE BACK RETURN|REG AIR|against the fluffily final o| +32619|202325|39838|1|45|55228.95|0.04|0.00|A|F|1994-06-10|1994-06-28|1994-06-27|TAKE BACK RETURN|MAIL|leep across| +32619|471393|33903|2|24|32744.88|0.04|0.01|A|F|1994-07-24|1994-06-11|1994-08-08|NONE|TRUCK|ect fluffily around| +32619|690226|15253|3|23|27972.37|0.10|0.04|A|F|1994-05-16|1994-05-27|1994-06-04|COLLECT COD|TRUCK|s. carefully final packages wak| +32619|613225|38250|4|49|55771.31|0.08|0.07|A|F|1994-05-01|1994-07-01|1994-05-29|DELIVER IN PERSON|AIR| requests. r| +32619|462539|12540|5|31|46546.81|0.10|0.08|R|F|1994-05-05|1994-06-09|1994-05-13|COLLECT COD|RAIL|riously express theodolites. slyly final fo| +32619|879813|17365|6|28|50197.56|0.05|0.04|A|F|1994-05-19|1994-05-31|1994-06-11|TAKE BACK RETURN|REG AIR|gular packages. bold, even accounts ar| +32619|3302|28303|7|19|22900.70|0.06|0.07|R|F|1994-06-06|1994-07-01|1994-06-12|NONE|FOB|e blithely reg| +32620|489639|39640|1|38|61887.18|0.10|0.02|R|F|1994-02-15|1993-12-06|1994-02-19|TAKE BACK RETURN|MAIL|e furiousl| +32621|903827|28864|1|29|53092.62|0.07|0.05|A|F|1993-12-04|1993-12-12|1993-12-24|TAKE BACK RETURN|MAIL|dolites sleep quickl| +32621|616169|3706|2|50|54256.50|0.01|0.02|A|F|1993-11-08|1993-11-20|1993-11-28|COLLECT COD|SHIP|ously pending frays are slyly. slyl| +32621|950503|504|3|16|24855.36|0.04|0.00|A|F|1993-12-09|1993-11-30|1994-01-07|DELIVER IN PERSON|TRUCK|ust use car| +32621|94084|31588|4|37|39888.96|0.05|0.06|A|F|1993-11-27|1993-12-24|1993-12-04|COLLECT COD|AIR|ly regular requests. | +32621|267187|4703|5|29|33470.93|0.09|0.07|A|F|1994-01-22|1993-12-09|1994-02-01|DELIVER IN PERSON|REG AIR|its. regular, pending requests int| +32621|597922|35456|6|31|62616.90|0.07|0.00|R|F|1993-11-18|1993-12-10|1993-11-29|NONE|SHIP|he special requests. reg| +32621|271414|33920|7|13|18010.20|0.10|0.05|A|F|1993-10-19|1993-11-22|1993-11-16|NONE|RAIL| regularly. waters around the quickl| +32622|643628|6141|1|10|15715.90|0.01|0.02|A|F|1995-04-01|1995-03-25|1995-04-23|TAKE BACK RETURN|SHIP|ic accounts might i| +32623|279862|42368|1|28|51571.80|0.07|0.01|N|O|1996-02-22|1995-12-25|1996-03-11|NONE|MAIL|lyly. deposi| +32623|638823|38824|2|22|38759.38|0.00|0.06|N|O|1995-12-27|1996-02-03|1996-01-20|COLLECT COD|REG AIR|counts hang boldly fina| +32623|695596|8110|3|34|54113.04|0.07|0.07|N|O|1996-02-27|1996-02-07|1996-03-06|TAKE BACK RETURN|AIR|lent dependencies are. eve| +32623|870226|7778|4|9|10765.62|0.07|0.03|N|O|1996-02-29|1995-12-31|1996-03-20|NONE|REG AIR|nag finally daringly even pinto| +32648|632018|44531|1|50|47499.00|0.05|0.08|R|F|1993-09-15|1993-10-05|1993-10-10|NONE|SHIP|ctions haggle even, pendi| +32648|318194|43207|2|35|42426.30|0.02|0.05|R|F|1993-07-30|1993-10-03|1993-08-11|NONE|REG AIR|atelets are slyly flu| +32648|886084|48602|3|17|18190.68|0.01|0.03|R|F|1993-10-19|1993-09-28|1993-10-26|NONE|MAIL|instructions are sl| +32649|219640|19641|1|39|60825.57|0.06|0.05|N|O|1995-08-25|1995-10-03|1995-09-09|DELIVER IN PERSON|RAIL|nis nag furiously. fur| +32649|485879|35880|2|16|29837.60|0.01|0.04|N|O|1995-11-13|1995-10-24|1995-11-30|NONE|AIR|ly final excu| +32649|153108|3109|3|25|29027.50|0.10|0.08|N|O|1995-10-09|1995-11-10|1995-10-22|COLLECT COD|AIR| deposits against the blit| +32649|283689|46195|4|14|23417.38|0.06|0.04|N|O|1995-09-03|1995-10-18|1995-10-01|COLLECT COD|REG AIR|uiet accounts. regular, ironic plate| +32649|959910|34949|5|20|39397.40|0.04|0.05|N|O|1995-10-09|1995-11-20|1995-11-05|DELIVER IN PERSON|RAIL|ronic accounts sleep caref| +32650|112954|461|1|42|82611.90|0.02|0.04|N|O|1998-04-29|1998-06-09|1998-05-29|COLLECT COD|RAIL| haggle. pending, even waters at the pa| +32650|411994|11995|2|45|85768.65|0.04|0.05|N|O|1998-07-13|1998-07-09|1998-07-23|DELIVER IN PERSON|RAIL|kages. ironic dependencies use sometime| +32650|377119|14641|3|26|31098.60|0.09|0.07|N|O|1998-07-15|1998-06-10|1998-07-17|DELIVER IN PERSON|MAIL| asymptotes unwind fur| +32650|233778|8787|4|19|32523.44|0.02|0.00|N|O|1998-07-21|1998-06-19|1998-07-31|NONE|TRUCK|old packages. express pinto bea| +32650|103559|16062|5|21|32813.55|0.02|0.07|N|O|1998-08-01|1998-07-15|1998-08-30|TAKE BACK RETURN|FOB|ccounts are fluffily atop the | +32650|511120|11121|6|5|5655.50|0.07|0.07|N|O|1998-05-12|1998-06-23|1998-06-08|TAKE BACK RETURN|SHIP| slyly unusual foxes-- inst| +32650|390126|27648|7|6|7296.66|0.03|0.08|N|O|1998-07-02|1998-06-12|1998-07-20|TAKE BACK RETURN|REG AIR|e slyly enticing foxes. ironic packages wa| +32651|833859|33860|1|5|8964.05|0.05|0.03|N|O|1997-02-24|1997-04-28|1997-03-07|NONE|SHIP|jole dogged instructions. dogged| +32651|660188|35215|2|32|36740.80|0.00|0.01|N|O|1997-06-10|1997-04-28|1997-06-29|TAKE BACK RETURN|FOB|ly final deposits. fluffily f| +32651|776547|1578|3|49|79551.99|0.07|0.08|N|O|1997-05-06|1997-04-12|1997-05-19|NONE|TRUCK|ickly even requests wake| +32651|421159|33668|4|15|16201.95|0.06|0.07|N|O|1997-03-12|1997-04-05|1997-03-30|COLLECT COD|REG AIR|sts are quickly c| +32651|414647|2172|5|9|14054.58|0.03|0.00|N|O|1997-05-27|1997-04-03|1997-05-29|NONE|FOB|fily against the slyly unusual instruct| +32652|572570|10104|1|13|21353.15|0.02|0.01|N|O|1998-07-28|1998-08-08|1998-08-22|NONE|REG AIR|d the packages nag| +32652|167760|30264|2|3|5483.28|0.02|0.02|N|O|1998-07-29|1998-07-15|1998-08-26|COLLECT COD|RAIL|its. blithely bold requests boost slyly| +32652|541760|16781|3|30|54052.20|0.02|0.00|N|O|1998-08-31|1998-08-10|1998-09-14|DELIVER IN PERSON|AIR|g quietly about the even, blithe hocke| +32652|351409|13917|4|17|24826.63|0.09|0.02|N|O|1998-08-31|1998-07-27|1998-09-24|TAKE BACK RETURN|MAIL|e bold packages. silent, iro| +32652|129483|41986|5|28|42349.44|0.00|0.05|N|O|1998-09-10|1998-07-16|1998-09-19|NONE|TRUCK|riously silent requests. bl| +32652|217228|42237|6|40|45808.40|0.10|0.08|N|O|1998-09-08|1998-07-17|1998-10-01|DELIVER IN PERSON|AIR|ckly silent asymptotes sleep carefully fl| +32652|939627|27182|7|50|83329.00|0.02|0.02|N|O|1998-08-01|1998-08-04|1998-08-28|NONE|REG AIR|slyly. quickly final| +32653|308706|46225|1|8|13717.52|0.09|0.01|N|O|1997-03-25|1997-05-05|1997-04-15|TAKE BACK RETURN|RAIL|refully express foxe| +32653|412071|37088|2|31|30474.55|0.07|0.07|N|O|1997-04-28|1997-04-21|1997-05-25|TAKE BACK RETURN|AIR|inal accounts along the deposits integrat| +32653|672501|35015|3|43|63359.21|0.08|0.00|N|O|1997-04-27|1997-04-23|1997-04-28|DELIVER IN PERSON|MAIL|ructions print among the express| +32653|710783|10784|4|49|87893.75|0.09|0.06|N|O|1997-06-01|1997-04-09|1997-06-13|TAKE BACK RETURN|MAIL| foxes haggle carefully about the reg| +32653|118462|30965|5|17|25167.82|0.07|0.00|N|O|1997-03-01|1997-03-22|1997-03-22|DELIVER IN PERSON|RAIL| ironic, ironic theodolites mol| +32653|987706|226|6|10|17936.60|0.03|0.02|N|O|1997-04-17|1997-04-30|1997-04-24|TAKE BACK RETURN|AIR|g the slyly s| +32653|359426|46948|7|27|40106.07|0.00|0.03|N|O|1997-05-05|1997-03-24|1997-05-15|TAKE BACK RETURN|RAIL|cial pinto beans affix carefully across th| +32654|863584|38619|1|8|12380.32|0.08|0.04|A|F|1993-12-09|1993-10-05|1993-12-19|DELIVER IN PERSON|FOB|re furiously. request| +32654|249841|12346|2|10|17908.30|0.00|0.06|A|F|1993-10-22|1993-11-01|1993-11-17|DELIVER IN PERSON|FOB|y regular reque| +32654|70160|32662|3|38|42946.08|0.02|0.02|R|F|1993-10-18|1993-10-25|1993-10-28|TAKE BACK RETURN|FOB|gular accounts. | +32655|801831|26864|1|37|64113.23|0.08|0.00|N|O|1997-12-08|1997-10-20|1997-12-25|DELIVER IN PERSON|SHIP| furiously ironic excuses. furi| +32655|370634|33142|2|33|56252.46|0.07|0.07|N|O|1997-09-06|1997-11-09|1997-09-18|COLLECT COD|AIR|y ironic sau| +32655|244284|44285|3|1|1228.27|0.08|0.07|N|O|1997-12-27|1997-10-06|1998-01-15|DELIVER IN PERSON|SHIP|final dolphins. slyly| +32655|678909|28910|4|17|32093.79|0.03|0.01|N|O|1997-10-03|1997-11-21|1997-10-29|COLLECT COD|MAIL| regular depos| +32680|701649|39192|1|9|14855.49|0.06|0.03|A|F|1994-01-09|1993-12-15|1994-02-07|COLLECT COD|AIR|ly final foxes cajole carefully| +32680|603134|28159|2|31|32150.10|0.05|0.04|A|F|1993-10-24|1993-11-20|1993-11-19|NONE|AIR|n asymptotes. carefully even ac| +32680|857987|7988|3|42|81687.48|0.00|0.01|R|F|1993-11-27|1993-12-11|1993-12-27|TAKE BACK RETURN|TRUCK|es above the even| +32680|179825|4832|4|10|19048.20|0.06|0.00|R|F|1994-01-08|1993-11-17|1994-01-21|NONE|FOB|slyly according to the ironic pinto be| +32681|432478|32479|1|30|42313.50|0.01|0.01|A|F|1995-05-08|1995-03-07|1995-05-16|NONE|FOB|nic excuses cajole alongside| +32681|646886|9399|2|11|20161.35|0.07|0.05|A|F|1995-04-03|1995-03-11|1995-04-04|TAKE BACK RETURN|RAIL|. carefully final deposits across th| +32681|203709|16214|3|18|29028.42|0.10|0.07|R|F|1995-03-25|1995-03-13|1995-04-08|TAKE BACK RETURN|TRUCK|ites haggle carefully pen| +32682|890818|28370|1|28|50645.56|0.02|0.00|A|F|1993-07-04|1993-09-18|1993-07-25|DELIVER IN PERSON|FOB| carefully spe| +32682|963762|26282|2|23|41991.56|0.00|0.04|A|F|1993-07-07|1993-09-20|1993-08-01|COLLECT COD|REG AIR|y according to the ironic braids. r| +32682|932222|32223|3|16|20066.88|0.02|0.06|A|F|1993-07-30|1993-08-13|1993-08-25|COLLECT COD|SHIP|less accounts wake. blithely | +32682|851473|1474|4|21|29913.03|0.04|0.07|R|F|1993-08-05|1993-09-08|1993-08-21|TAKE BACK RETURN|SHIP|ly bold requests. slyly pendin| +32682|701371|26400|5|17|23329.78|0.06|0.06|R|F|1993-10-25|1993-09-12|1993-11-19|NONE|RAIL|. ironic multipliers integrate slyly ironi| +32682|935385|47904|6|13|18464.42|0.06|0.07|R|F|1993-07-11|1993-07-31|1993-08-01|DELIVER IN PERSON|REG AIR| thrash daringly slyly regular dolphi| +32682|11147|23648|7|28|29627.92|0.07|0.07|R|F|1993-07-11|1993-09-09|1993-08-02|TAKE BACK RETURN|RAIL|ly special dolphins. | +32683|342799|17812|1|40|73671.20|0.03|0.02|A|F|1993-04-04|1993-05-15|1993-04-28|NONE|AIR|sly idle war| +32683|413756|26265|2|14|23376.22|0.02|0.01|A|F|1993-04-19|1993-05-17|1993-04-21|DELIVER IN PERSON|FOB|the ironic dolphins. pending,| +32683|994221|6741|3|33|43400.94|0.08|0.04|A|F|1993-05-31|1993-05-25|1993-06-05|TAKE BACK RETURN|REG AIR|structions s| +32683|870853|45888|4|6|10942.86|0.05|0.01|R|F|1993-04-24|1993-05-07|1993-05-07|NONE|AIR|lent foxes. carefully ironic platelets | +32683|411788|49313|5|33|56092.08|0.07|0.02|A|F|1993-05-08|1993-06-13|1993-05-29|COLLECT COD|MAIL|e the quickly pending forges.| +32683|904504|4505|6|34|51287.64|0.03|0.07|A|F|1993-03-29|1993-05-31|1993-04-05|NONE|FOB|accounts nag slyly alongside of the slow| +32683|996415|8935|7|45|68011.65|0.00|0.00|R|F|1993-04-29|1993-06-22|1993-05-08|DELIVER IN PERSON|AIR|riously ironic pa| +32684|732864|7893|1|22|41730.26|0.04|0.02|R|F|1993-04-11|1993-05-31|1993-05-07|DELIVER IN PERSON|FOB|telets wake furiously. q| +32684|237035|49540|2|31|30132.62|0.06|0.08|R|F|1993-04-30|1993-06-13|1993-05-11|TAKE BACK RETURN|SHIP|egular accounts sleep ruthless| +32684|837515|25064|3|7|10167.29|0.07|0.02|A|F|1993-07-26|1993-05-27|1993-08-13|TAKE BACK RETURN|RAIL|y regular ideas? regular packages i| +32684|110171|35176|4|39|46065.63|0.02|0.04|A|F|1993-07-22|1993-06-26|1993-08-20|NONE|MAIL|he evenly quiet ideas. idea| +32685|633868|46381|1|49|88289.67|0.10|0.06|N|O|1995-08-30|1995-07-16|1995-09-06|DELIVER IN PERSON|SHIP| foxes are furiously even account| +32685|403038|15547|2|27|25407.27|0.01|0.04|N|O|1995-08-08|1995-07-13|1995-08-20|NONE|REG AIR|ages alongside of the final,| +32685|856872|44424|3|45|82297.35|0.10|0.03|N|O|1995-07-02|1995-07-06|1995-07-03|NONE|AIR|ts about the furiously even pearls caj| +32685|431742|44251|4|2|3347.44|0.02|0.08|N|O|1995-08-08|1995-07-23|1995-08-15|COLLECT COD|FOB|pt the blithely regular deposits.| +32686|449723|12232|1|21|35126.70|0.03|0.01|N|O|1997-06-29|1997-05-16|1997-06-30|COLLECT COD|REG AIR|nto beans. ironic ideas among the regular| +32686|478119|28120|2|50|54854.50|0.07|0.02|N|O|1997-07-11|1997-06-07|1997-08-07|NONE|MAIL|symptotes are bravely. even, even re| +32687|932696|7733|1|26|44944.90|0.03|0.08|N|O|1995-09-22|1995-12-06|1995-09-28|COLLECT COD|SHIP|lites. carefully silent asy| +32712|384584|47092|1|35|58399.95|0.00|0.07|A|F|1992-07-12|1992-06-26|1992-08-09|NONE|FOB|yly. carefully ironi| +32712|700096|37639|2|16|17536.96|0.06|0.08|A|F|1992-07-22|1992-07-27|1992-07-25|NONE|REG AIR|ckages cajole alo| +32712|507436|7437|3|43|62066.63|0.03|0.00|A|F|1992-05-14|1992-07-10|1992-05-28|COLLECT COD|SHIP|usual packages above the | +32712|464848|2376|4|17|30817.94|0.03|0.08|A|F|1992-07-05|1992-07-14|1992-08-04|NONE|SHIP|he final instructions. expres| +32713|792299|29845|1|46|63997.96|0.07|0.08|N|O|1996-07-06|1996-06-23|1996-08-01|DELIVER IN PERSON|FOB|slyly quiet pin| +32713|157295|44805|2|29|39216.41|0.03|0.06|N|O|1996-06-10|1996-07-15|1996-06-21|COLLECT COD|TRUCK|ily silent fox| +32714|962639|25159|1|41|69765.19|0.09|0.01|N|O|1995-08-15|1995-07-10|1995-08-31|COLLECT COD|TRUCK|sual dependencies according to the fin| +32714|65523|40526|2|21|31258.92|0.10|0.00|N|F|1995-06-09|1995-06-18|1995-06-30|COLLECT COD|AIR|ecial foxes b| +32714|230184|42689|3|14|15598.38|0.04|0.03|N|O|1995-06-24|1995-07-30|1995-07-05|NONE|REG AIR|gular, ironic requests| +32714|686579|49093|4|46|72014.84|0.08|0.06|R|F|1995-06-07|1995-06-18|1995-06-11|COLLECT COD|MAIL|s. stealthy, regular pinto b| +32714|325663|38170|5|29|48970.85|0.10|0.00|N|O|1995-07-02|1995-07-31|1995-07-14|COLLECT COD|SHIP| even requests. quickly pend| +32714|408142|20651|6|19|19952.28|0.07|0.05|A|F|1995-05-21|1995-07-17|1995-05-23|NONE|REG AIR| silent req| +32715|933322|45841|1|50|67764.00|0.09|0.06|A|F|1992-04-25|1992-04-06|1992-05-25|COLLECT COD|SHIP|y ironic accounts. u| +32715|333585|33586|2|50|80928.50|0.09|0.04|R|F|1992-06-19|1992-04-19|1992-06-25|DELIVER IN PERSON|REG AIR| final requests haggle f| +32715|555751|5752|3|9|16260.57|0.04|0.02|R|F|1992-04-23|1992-05-10|1992-05-19|NONE|AIR|gle blithely regular, reg| +32715|504645|4646|4|50|82481.00|0.05|0.00|A|F|1992-03-26|1992-04-12|1992-04-12|TAKE BACK RETURN|SHIP|symptotes. warhorses cajole quickly fina| +32715|553387|15899|5|50|72018.00|0.05|0.01|R|F|1992-06-03|1992-03-30|1992-06-08|DELIVER IN PERSON|SHIP| pending courts affix? packa| +32715|763758|1304|6|48|87442.56|0.02|0.00|R|F|1992-06-08|1992-05-17|1992-06-22|COLLECT COD|RAIL|tes integrate above the slyly regular i| +32716|702215|2216|1|34|41384.12|0.01|0.00|A|F|1992-07-12|1992-07-24|1992-07-15|NONE|MAIL|thely according to the quickly b| +32717|498824|11334|1|18|32810.40|0.06|0.01|A|F|1993-03-23|1993-04-22|1993-03-31|COLLECT COD|AIR|e carefully final p| +32717|723638|11181|2|36|59817.60|0.03|0.05|R|F|1993-04-09|1993-04-29|1993-05-05|COLLECT COD|RAIL|olphins. carefully pending co| +32717|175826|833|3|17|32330.94|0.01|0.02|A|F|1993-04-30|1993-04-15|1993-05-08|NONE|MAIL|ly final orbits. | +32718|500301|12812|1|45|58557.60|0.05|0.02|R|F|1993-04-30|1993-04-28|1993-05-16|DELIVER IN PERSON|TRUCK|he slyly express ideas. blithely fin| +32719|131488|31489|1|33|50142.84|0.08|0.04|N|O|1997-07-23|1997-05-29|1997-07-24|TAKE BACK RETURN|MAIL|es. carefully furious pinto beans shall| +32719|909215|46770|2|6|7345.02|0.09|0.06|N|O|1997-07-30|1997-05-29|1997-08-17|TAKE BACK RETURN|AIR|ound the slyly re| +32719|173014|23015|3|28|30436.28|0.05|0.00|N|O|1997-07-07|1997-06-27|1997-07-18|TAKE BACK RETURN|TRUCK| slyly after the blithely| +32719|839594|14627|4|32|49073.60|0.03|0.06|N|O|1997-06-30|1997-07-05|1997-07-14|DELIVER IN PERSON|AIR|leep quickly eve| +32744|992232|4752|1|36|47670.84|0.02|0.07|N|O|1995-06-25|1995-08-30|1995-07-01|TAKE BACK RETURN|RAIL|wake carefully unusual deposits. fluffil| +32744|431023|6040|2|21|20034.00|0.10|0.03|N|O|1995-10-08|1995-08-05|1995-10-28|TAKE BACK RETURN|RAIL|uests. carefully bold deposits agains| +32745|694236|6750|1|1|1230.20|0.02|0.07|R|F|1992-06-26|1992-07-16|1992-07-02|NONE|SHIP|pendencies. blithely regu| +32745|9166|34167|2|10|10751.60|0.10|0.08|R|F|1992-08-13|1992-07-29|1992-09-06|COLLECT COD|MAIL| requests cajole. sl| +32746|150783|38293|1|41|75184.98|0.08|0.04|A|F|1995-01-23|1995-03-18|1995-01-27|DELIVER IN PERSON|FOB|t platelets cajole across the ironi| +32746|208686|8687|2|21|33488.07|0.09|0.02|R|F|1995-04-20|1995-03-21|1995-04-27|TAKE BACK RETURN|RAIL|he slyly ironic instructions unwi| +32747|981094|6133|1|22|25851.10|0.01|0.02|R|F|1994-01-05|1993-12-06|1994-01-10|TAKE BACK RETURN|MAIL| even gifts: bold dolphins boost b| +32747|243875|43876|2|22|40014.92|0.02|0.08|A|F|1993-10-15|1993-11-06|1993-10-22|NONE|RAIL|onic packa| +32748|321149|21150|1|30|35103.90|0.03|0.01|A|F|1992-08-30|1992-07-19|1992-09-03|NONE|SHIP|lly regular instructions wake after the f| +32749|870103|7655|1|3|3219.18|0.07|0.04|N|O|1998-06-27|1998-07-24|1998-06-29|COLLECT COD|AIR| affix furiously final packages. ironic, sp| +32749|819817|19818|2|16|27788.32|0.01|0.06|N|O|1998-06-04|1998-07-02|1998-06-08|COLLECT COD|MAIL| along the final pinto beans hag| +32749|652556|15070|3|26|39221.52|0.01|0.07|N|O|1998-08-19|1998-06-30|1998-09-12|DELIVER IN PERSON|SHIP|elieve carefully among the furiously | +32749|503850|41381|4|11|20392.13|0.01|0.05|N|O|1998-07-24|1998-06-26|1998-07-26|COLLECT COD|MAIL|e slyly among the deposits. | +32749|197210|9714|5|40|52288.40|0.00|0.03|N|O|1998-07-02|1998-07-28|1998-07-06|NONE|REG AIR|gular accounts. slyly regular requ| +32750|274430|49441|1|46|64603.32|0.07|0.03|A|F|1994-02-13|1993-12-09|1994-03-06|DELIVER IN PERSON|RAIL|refully ironic requ| +32750|329857|4870|2|11|20755.24|0.05|0.02|R|F|1994-02-14|1993-11-30|1994-03-09|DELIVER IN PERSON|FOB|cies. quic| +32750|893527|6045|3|45|68421.60|0.00|0.05|A|F|1993-10-27|1993-12-15|1993-11-08|DELIVER IN PERSON|FOB|refully re| +32750|495449|7959|4|18|25999.56|0.06|0.08|A|F|1993-11-19|1993-12-15|1993-11-20|TAKE BACK RETURN|TRUCK|lyly even realms above t| +32750|5361|5362|5|12|15196.32|0.00|0.00|A|F|1993-12-27|1993-12-11|1994-01-05|NONE|RAIL|quickly ironic foxes? eve| +32750|91356|3858|6|8|10778.80|0.03|0.08|A|F|1993-12-26|1993-12-09|1993-12-30|DELIVER IN PERSON|RAIL|counts are slyly q| +32750|416066|16067|7|49|48119.96|0.01|0.03|R|F|1993-12-06|1994-01-20|1994-01-02|TAKE BACK RETURN|AIR| escapades are above the carefully pending | +32751|809961|9962|1|44|82320.48|0.03|0.02|N|O|1997-05-25|1997-04-29|1997-06-23|TAKE BACK RETURN|FOB|ronic instructions use. i| +32776|75943|38445|1|23|44135.62|0.08|0.00|N|O|1995-08-15|1995-08-08|1995-08-30|TAKE BACK RETURN|REG AIR| hinder quic| +32776|357522|45044|2|29|45805.79|0.02|0.02|N|O|1995-07-11|1995-08-17|1995-08-02|NONE|RAIL|ges. enticingly i| +32776|868299|30817|3|8|10138.00|0.08|0.00|N|O|1995-07-23|1995-07-28|1995-08-14|NONE|SHIP| cajole along the regular, final account| +32776|488159|13178|4|4|4588.52|0.10|0.07|N|O|1995-08-26|1995-09-02|1995-09-17|NONE|FOB| pinto beans sha| +32777|716655|41684|1|23|38447.26|0.08|0.05|N|O|1998-03-22|1998-01-16|1998-03-24|TAKE BACK RETURN|RAIL|e fluffily. ironic acc| +32777|807609|45158|2|19|28814.64|0.06|0.02|N|O|1998-01-25|1997-12-23|1998-02-08|TAKE BACK RETURN|RAIL|lar deposits cajole quickly | +32777|477078|27079|3|8|8440.40|0.06|0.03|N|O|1997-12-27|1998-01-24|1998-01-04|TAKE BACK RETURN|SHIP|ong the even re| +32777|241374|28887|4|44|57875.84|0.02|0.02|N|O|1997-12-16|1998-02-08|1998-01-15|NONE|MAIL|ously silent requests| +32777|763366|38397|5|34|48597.22|0.04|0.04|N|O|1997-11-24|1998-01-26|1997-12-19|COLLECT COD|REG AIR|ess deposits cajole.| +32777|879342|29343|6|50|66065.00|0.00|0.00|N|O|1998-03-01|1998-01-29|1998-03-17|TAKE BACK RETURN|SHIP|kly. blithely express ideas nag slyly slyly| +32778|543428|43429|1|29|42670.60|0.00|0.08|A|F|1992-04-24|1992-04-28|1992-05-07|DELIVER IN PERSON|TRUCK| requests wake. slyly even ideas above the | +32778|387702|210|2|29|51901.01|0.03|0.00|A|F|1992-03-30|1992-05-07|1992-04-17|COLLECT COD|RAIL|e after the foxes. silent | +32778|106420|43927|3|50|71321.00|0.05|0.00|R|F|1992-06-03|1992-06-14|1992-06-13|COLLECT COD|AIR|y unusual deposits nag| +32779|942541|17578|1|39|61756.50|0.05|0.08|N|O|1998-08-10|1998-07-18|1998-08-11|TAKE BACK RETURN|REG AIR|ironic accounts according t| +32780|257693|20199|1|34|56123.12|0.04|0.06|R|F|1992-08-08|1992-08-16|1992-08-21|DELIVER IN PERSON|MAIL|s sleep fluffi| +32780|32528|20029|2|19|27749.88|0.00|0.05|R|F|1992-09-05|1992-07-28|1992-09-21|COLLECT COD|REG AIR|ts cajole blithe| +32781|405781|30798|1|49|82651.24|0.05|0.04|R|F|1993-01-16|1992-11-23|1993-01-23|NONE|SHIP|arly even | +32781|951580|14100|2|3|4894.62|0.04|0.02|A|F|1992-12-16|1992-12-06|1992-12-20|TAKE BACK RETURN|AIR|n packages. carefully | +32782|601765|26790|1|28|46668.44|0.07|0.00|R|F|1993-02-15|1993-02-19|1993-02-23|TAKE BACK RETURN|SHIP|y final packages. | +32782|851882|14400|2|25|45846.00|0.09|0.07|R|F|1993-02-16|1993-01-09|1993-03-16|COLLECT COD|TRUCK|lar deposits acc| +32782|564698|14699|3|50|88133.50|0.01|0.01|R|F|1993-01-21|1993-01-30|1993-02-20|COLLECT COD|RAIL|eas sleep ca| +32782|867160|17161|4|9|10144.08|0.10|0.08|A|F|1992-11-28|1993-02-16|1992-11-30|DELIVER IN PERSON|AIR|xpress foxes. carefully ironic a| +32782|342841|42842|5|20|37676.60|0.02|0.05|R|F|1992-12-20|1992-12-27|1992-12-31|COLLECT COD|FOB|st blithely alo| +32783|33713|21214|1|50|82335.50|0.07|0.06|A|F|1994-01-02|1994-02-16|1994-01-23|COLLECT COD|TRUCK| excuses cajole.| +32783|599997|37531|2|8|16775.76|0.00|0.05|R|F|1993-12-30|1994-03-03|1994-01-12|NONE|TRUCK|ts cajole-- deposits use fu| +32783|146380|8883|3|26|37085.88|0.06|0.03|A|F|1994-02-16|1994-02-13|1994-02-28|NONE|SHIP|y. slyly regular packages sleep | +32783|208306|45819|4|11|13357.19|0.08|0.05|A|F|1994-03-07|1994-03-03|1994-03-10|TAKE BACK RETURN|RAIL| pending, regular packages | +32783|996817|34375|5|23|44016.71|0.00|0.08|R|F|1994-01-15|1994-01-22|1994-01-28|DELIVER IN PERSON|REG AIR| pending accounts wake ironic in| +32783|496217|21236|6|20|24263.80|0.05|0.05|R|F|1994-02-08|1994-02-08|1994-03-08|COLLECT COD|SHIP|e slyly blithely regular theodolites. qu| +32808|66823|4327|1|38|68013.16|0.09|0.02|R|F|1992-09-18|1992-08-16|1992-10-08|NONE|AIR|es. slyly quick deposits wake slyly? fl| +32809|90221|27725|1|16|19379.52|0.06|0.01|N|O|1998-06-25|1998-06-06|1998-07-09|DELIVER IN PERSON|TRUCK| ironic accounts integr| +32809|339557|2064|2|40|63861.60|0.00|0.01|N|O|1998-04-20|1998-04-20|1998-05-12|NONE|TRUCK|packages wake. evenly regular theodolites b| +32810|250463|12969|1|9|12721.05|0.03|0.00|N|O|1998-03-11|1998-03-27|1998-04-07|NONE|MAIL|ronic, regular asymptotes integra| +32810|520092|7623|2|33|36698.31|0.05|0.08|N|O|1998-01-20|1998-04-10|1998-02-15|DELIVER IN PERSON|AIR|slyly bold deposits. closely ironic ideas| +32810|182794|45298|3|45|84455.55|0.06|0.00|N|O|1998-05-03|1998-03-02|1998-05-24|DELIVER IN PERSON|RAIL|iously: dolphins haggle blithely. fluffily| +32810|203225|28234|4|4|4512.84|0.07|0.01|N|O|1998-05-07|1998-02-20|1998-06-02|DELIVER IN PERSON|FOB| quickly even courts| +32810|593488|18511|5|49|77491.54|0.05|0.01|N|O|1998-04-08|1998-04-09|1998-05-06|NONE|MAIL|elets breach pinto bean| +32811|330141|30142|1|10|11711.30|0.09|0.02|A|F|1994-01-07|1994-01-09|1994-01-24|COLLECT COD|FOB|accounts use. theodolites| +32811|670406|20407|2|6|8258.22|0.06|0.03|R|F|1993-12-08|1994-01-31|1993-12-30|COLLECT COD|REG AIR|s. slyly even accounts after the | +32811|505207|42738|3|11|13333.98|0.01|0.08|A|F|1994-02-25|1994-01-11|1994-03-06|TAKE BACK RETURN|FOB|quickly regular ideas hang carefully i| +32811|3000|3001|4|7|6321.00|0.07|0.08|R|F|1994-01-31|1994-01-12|1994-02-21|TAKE BACK RETURN|SHIP|he requests hag| +32811|409927|47452|5|6|11021.40|0.03|0.07|A|F|1993-11-12|1993-12-10|1993-12-09|NONE|RAIL|y even ideas. silently iro| +32811|628791|3816|6|42|72229.92|0.08|0.01|A|F|1993-12-10|1993-12-10|1994-01-04|TAKE BACK RETURN|AIR|platelets. ironic account| +32812|11124|11125|1|38|39334.56|0.04|0.03|N|O|1997-02-22|1996-12-20|1997-03-20|TAKE BACK RETURN|TRUCK|he blithely regular dependencies haggle flu| +32812|955793|43351|2|38|70252.50|0.05|0.06|N|O|1997-01-29|1997-01-02|1997-02-20|TAKE BACK RETURN|RAIL|carefully ironic packages. carefully iron| +32812|1670|1671|3|6|9430.02|0.05|0.05|N|O|1996-11-23|1996-12-16|1996-12-23|NONE|RAIL|ns use around the express packages. s| +32812|66644|4148|4|26|41876.64|0.00|0.01|N|O|1996-11-08|1997-01-25|1996-12-02|COLLECT COD|RAIL|nally silent accounts n| +32812|80479|42981|5|12|17513.64|0.08|0.07|N|O|1997-02-19|1997-01-05|1997-03-05|COLLECT COD|FOB|lithely carefully regular pinto bean| +32812|604665|4666|6|11|17265.93|0.01|0.05|N|O|1997-02-06|1996-12-06|1997-02-09|NONE|MAIL| pinto beans sleep | +32812|591700|4212|7|40|71667.20|0.04|0.05|N|O|1997-02-23|1997-01-23|1997-02-27|COLLECT COD|TRUCK|slyly special requests cajole ca| +32813|687187|37188|1|34|39921.10|0.09|0.06|N|O|1997-07-28|1997-09-04|1997-08-10|DELIVER IN PERSON|REG AIR|ly silent requests use. | +32813|551480|39014|2|34|52069.64|0.09|0.01|N|O|1997-09-15|1997-09-13|1997-09-30|COLLECT COD|RAIL|posits cajole slyly. final packages wake f| +32813|709063|21578|3|12|12864.36|0.03|0.05|N|O|1997-09-24|1997-08-22|1997-10-06|TAKE BACK RETURN|RAIL|ly silent deposits| +32813|208504|21009|4|33|46612.17|0.07|0.02|N|O|1997-09-19|1997-08-09|1997-10-06|COLLECT COD|RAIL|s courts. furiously special foxes ar| +32813|315941|3460|5|42|82191.06|0.07|0.07|N|O|1997-09-29|1997-07-30|1997-10-11|NONE|REG AIR|xes. carefu| +32813|14479|14480|6|23|32049.81|0.08|0.06|N|O|1997-09-15|1997-09-24|1997-10-06|TAKE BACK RETURN|RAIL| regular ideas nag slyl| +32814|294521|7027|1|31|46980.81|0.07|0.07|A|F|1994-05-06|1994-05-01|1994-05-11|COLLECT COD|AIR|fully bold packages should sleep quickly| +32815|403774|41299|1|27|45299.25|0.06|0.07|N|O|1997-11-12|1997-10-05|1997-11-26|DELIVER IN PERSON|MAIL|arefully carefully| +32815|225869|25870|2|4|7179.40|0.08|0.08|N|O|1997-11-29|1997-09-18|1997-12-21|TAKE BACK RETURN|RAIL|usly bold pinto beans| +32815|172106|34610|3|30|35343.00|0.02|0.06|N|O|1997-11-05|1997-10-10|1997-11-12|COLLECT COD|FOB|dencies? sl| +32815|577250|27251|4|17|22562.91|0.01|0.04|N|O|1997-08-12|1997-10-14|1997-08-22|DELIVER IN PERSON|FOB| blithely bold reque| +32840|12744|12745|1|47|77866.78|0.00|0.04|R|F|1995-01-17|1995-03-17|1995-01-30|NONE|SHIP|s wake. regular p| +32840|180499|5506|2|49|77395.01|0.05|0.04|A|F|1995-01-16|1995-03-05|1995-02-04|DELIVER IN PERSON|SHIP|ld deposits hang carefully fu| +32841|477571|2590|1|2|3097.10|0.03|0.07|R|F|1992-08-29|1992-08-15|1992-09-09|NONE|SHIP|l requests de| +32841|530336|17867|2|25|34157.75|0.07|0.05|R|F|1992-06-29|1992-07-27|1992-07-18|TAKE BACK RETURN|TRUCK| nag blithely quick, regular| +32841|355553|18061|3|5|8042.70|0.04|0.02|R|F|1992-08-27|1992-06-30|1992-08-29|NONE|REG AIR|ding deposits haggle above the regular, bol| +32841|765316|15317|4|21|29006.88|0.08|0.05|A|F|1992-07-21|1992-07-22|1992-08-03|TAKE BACK RETURN|REG AIR|, silent packages are blithel| +32841|657170|7171|5|14|15779.96|0.08|0.04|R|F|1992-06-30|1992-07-17|1992-07-30|TAKE BACK RETURN|TRUCK|pecial instruction| +32842|388765|38766|1|33|61173.75|0.10|0.05|N|O|1996-06-29|1996-05-03|1996-07-27|NONE|AIR|refully special theodolites. | +32842|958141|45699|2|36|43167.60|0.05|0.02|N|O|1996-04-13|1996-04-28|1996-04-19|COLLECT COD|FOB|t stealthily according to the always| +32843|687206|24746|1|20|23863.40|0.04|0.08|N|O|1995-09-02|1995-09-17|1995-09-22|COLLECT COD|REG AIR| even asymptotes| +32843|855041|42593|2|46|45816.00|0.04|0.00|N|O|1995-10-25|1995-09-14|1995-11-01|DELIVER IN PERSON|MAIL|e pending, pendi| +32843|665251|27765|3|13|15810.86|0.02|0.01|N|O|1995-11-29|1995-10-01|1995-12-20|DELIVER IN PERSON|MAIL|gular realms wake above t| +32843|872136|22137|4|11|12188.99|0.04|0.00|N|O|1995-12-12|1995-10-31|1995-12-23|NONE|SHIP| the pinto beans are sl| +32843|978608|16166|5|48|80954.88|0.10|0.08|N|O|1995-09-24|1995-11-02|1995-09-30|TAKE BACK RETURN|AIR| express packages! | +32843|457317|32336|6|3|3822.87|0.04|0.01|N|O|1995-10-03|1995-11-09|1995-10-23|DELIVER IN PERSON|AIR|ggle carefu| +32843|114180|14181|7|3|3582.54|0.04|0.03|N|O|1995-10-01|1995-10-04|1995-10-28|TAKE BACK RETURN|TRUCK|unts. furiously idle ideas h| +32844|14050|39051|1|36|34705.80|0.09|0.02|A|F|1993-02-25|1993-03-16|1993-03-03|TAKE BACK RETURN|RAIL|es impress furiously. regular, ironic pac| +32845|352225|14733|1|7|8940.47|0.00|0.04|N|O|1998-06-12|1998-08-07|1998-07-06|DELIVER IN PERSON|TRUCK|tes. slyly regula| +32845|842307|29856|2|8|9994.08|0.08|0.03|N|O|1998-09-25|1998-07-13|1998-10-16|NONE|TRUCK|cording to the unusual excuses wake sl| +32845|653505|41045|3|49|71465.03|0.02|0.04|N|O|1998-08-09|1998-08-28|1998-08-23|TAKE BACK RETURN|TRUCK|gular instructions detect! caref| +32845|448410|48411|4|12|16300.68|0.08|0.08|N|O|1998-07-23|1998-08-11|1998-07-26|COLLECT COD|TRUCK|posits. pending accounts wake s| +32845|423003|10528|5|2|1851.96|0.02|0.01|N|O|1998-09-29|1998-07-09|1998-10-18|NONE|REG AIR|along the silently | +32846|41235|16236|1|18|21172.14|0.08|0.07|A|F|1994-04-24|1994-03-26|1994-05-17|NONE|AIR|tterns are blithely iro| +32846|33694|33695|2|33|53713.77|0.03|0.02|A|F|1994-03-19|1994-02-13|1994-04-05|COLLECT COD|RAIL|. blithely si| +32847|32362|44863|1|36|46596.96|0.00|0.01|N|O|1996-10-25|1996-09-09|1996-11-12|TAKE BACK RETURN|RAIL|equests. ironically regular decoys are. fu| +32847|897391|34943|2|4|5553.40|0.02|0.06|N|O|1996-08-16|1996-10-02|1996-08-24|COLLECT COD|RAIL| at the slyly silent packa| +32847|435139|47648|3|11|11815.21|0.03|0.01|N|O|1996-08-20|1996-10-09|1996-09-06|NONE|AIR|ven asymptotes use furiously amo| +32847|379368|16890|4|28|40525.80|0.01|0.08|N|O|1996-11-09|1996-09-16|1996-11-15|TAKE BACK RETURN|REG AIR|ons affix fluffil| +32847|32536|32537|5|26|38181.78|0.06|0.08|N|O|1996-08-31|1996-10-24|1996-09-29|COLLECT COD|FOB|egular accoun| +32872|796822|34368|1|33|63320.07|0.08|0.08|A|F|1994-12-09|1994-10-10|1995-01-03|TAKE BACK RETURN|TRUCK|s wake carefully fluffily fina| +32872|179070|16580|2|24|27577.68|0.02|0.04|A|F|1994-09-30|1994-10-07|1994-10-14|COLLECT COD|FOB|uses. final | +32872|616744|16745|3|3|4982.13|0.03|0.08|A|F|1994-10-17|1994-10-10|1994-10-29|DELIVER IN PERSON|AIR|lithely bold asymptotes. slyly i| +32872|607006|32031|4|2|1825.94|0.07|0.08|R|F|1994-10-01|1994-11-12|1994-10-08|COLLECT COD|TRUCK|e quickly across the accounts| +32872|941682|16719|5|14|24130.96|0.04|0.08|R|F|1994-08-27|1994-11-18|1994-09-15|DELIVER IN PERSON|RAIL|riously express ideas was fina| +32872|849134|11651|6|47|50905.23|0.05|0.06|R|F|1994-10-13|1994-11-15|1994-10-14|DELIVER IN PERSON|MAIL| affix slyly. quiet packages wake fluff| +32872|393995|19010|7|28|58491.44|0.04|0.04|A|F|1994-10-09|1994-11-23|1994-10-24|TAKE BACK RETURN|FOB|odolites wake carefully slyly expre| +32873|865157|2709|1|17|19075.87|0.01|0.07|N|O|1996-04-12|1996-03-24|1996-04-30|TAKE BACK RETURN|MAIL|e blithely after the| +32873|684006|9033|2|21|20789.37|0.03|0.07|N|O|1996-03-26|1996-04-09|1996-04-20|COLLECT COD|TRUCK|he regular packag| +32873|78023|15527|3|10|10010.20|0.04|0.00|N|O|1996-02-03|1996-04-06|1996-02-09|DELIVER IN PERSON|FOB|nic asymptotes affix quickl| +32873|323095|48108|4|14|15653.12|0.02|0.05|N|O|1996-03-23|1996-03-30|1996-04-06|TAKE BACK RETURN|FOB|s across th| +32873|245950|8455|5|33|62566.02|0.04|0.06|N|O|1996-03-10|1996-04-11|1996-03-12|NONE|REG AIR|al requests boost permanently around t| +32873|673128|23129|6|16|17617.44|0.02|0.08|N|O|1996-02-18|1996-02-25|1996-02-23|NONE|SHIP|its use around the express pinto beans. s| +32874|615531|28044|1|3|4339.50|0.00|0.06|A|F|1995-01-12|1995-02-08|1995-02-10|TAKE BACK RETURN|REG AIR|elets sleep slyly. reg| +32875|667008|42035|1|19|18524.43|0.04|0.02|N|O|1995-11-28|1995-12-20|1995-12-13|TAKE BACK RETURN|AIR| theodolites across t| +32875|392042|4550|2|30|34020.90|0.05|0.01|N|O|1995-12-26|1995-11-23|1996-01-11|DELIVER IN PERSON|TRUCK|l packages nag.| +32875|47891|35392|3|1|1838.89|0.06|0.01|N|O|1995-12-09|1995-12-19|1995-12-28|DELIVER IN PERSON|TRUCK|g requests affix| +32876|457629|45157|1|29|46011.40|0.10|0.04|N|O|1995-06-24|1995-08-15|1995-07-02|COLLECT COD|TRUCK| carefully regu| +32876|364382|26890|2|28|40498.36|0.04|0.07|N|O|1995-10-13|1995-07-14|1995-10-31|TAKE BACK RETURN|SHIP|ily about the dep| +32877|537742|37743|1|43|76527.96|0.05|0.07|N|O|1997-09-30|1997-08-25|1997-10-15|COLLECT COD|MAIL|e slyly regular requests. blithe| +32877|823476|48509|2|19|26589.17|0.09|0.03|N|O|1997-08-01|1997-07-31|1997-08-13|COLLECT COD|SHIP|y around th| +32877|156635|19139|3|6|10149.78|0.05|0.01|N|O|1997-06-20|1997-08-04|1997-07-19|NONE|SHIP| instructions nag fluffily car| +32877|551156|13668|4|7|8449.91|0.08|0.03|N|O|1997-09-04|1997-08-07|1997-09-24|TAKE BACK RETURN|RAIL|edly slyly regular tithes. carefully bo| +32877|269658|44669|5|25|40691.00|0.06|0.06|N|O|1997-09-10|1997-08-30|1997-10-04|NONE|AIR|egular ideas. sly hockey p| +32877|130366|5371|6|38|53061.68|0.06|0.04|N|O|1997-09-01|1997-07-22|1997-09-12|NONE|FOB|ag foxes. carefully | +32877|60962|10963|7|45|86533.20|0.09|0.01|N|O|1997-10-08|1997-08-25|1997-10-09|NONE|AIR|ve to are | +32878|586291|36292|1|17|23413.59|0.00|0.01|N|O|1995-11-12|1996-01-10|1995-11-14|COLLECT COD|RAIL|ly even dependencies thrash | +32878|786546|24092|2|31|50607.81|0.09|0.05|N|O|1995-10-30|1995-12-14|1995-10-31|COLLECT COD|SHIP|lithely final deposits. caref| +32878|470431|20432|3|37|51852.17|0.06|0.05|N|O|1995-12-07|1995-11-23|1996-01-02|COLLECT COD|AIR|fully above t| +32878|530761|30762|4|19|34043.06|0.04|0.06|N|O|1995-11-21|1995-12-14|1995-12-02|TAKE BACK RETURN|RAIL|equests around the q| +32878|491307|28835|5|15|19474.20|0.02|0.06|N|O|1996-02-19|1996-01-02|1996-03-20|COLLECT COD|SHIP|riously pe| +32879|980924|30925|1|33|66161.04|0.02|0.05|A|F|1994-06-14|1994-04-29|1994-06-25|DELIVER IN PERSON|AIR| grow according| +32879|385505|35506|2|45|71572.05|0.04|0.08|R|F|1994-05-17|1994-04-08|1994-05-23|TAKE BACK RETURN|FOB|blithely special packages. pinto beans al| +32904|545281|7792|1|28|37135.28|0.00|0.05|R|F|1994-08-01|1994-08-20|1994-08-02|COLLECT COD|SHIP|lent pinto beans sleep fluff| +32904|529303|4324|2|9|11990.52|0.07|0.05|A|F|1994-07-21|1994-06-26|1994-08-08|DELIVER IN PERSON|TRUCK|yly bold pinto bea| +32904|989246|1766|3|12|16022.40|0.04|0.07|R|F|1994-07-13|1994-07-05|1994-07-24|TAKE BACK RETURN|SHIP|ts nag express, ironic pint| +32904|253391|3392|4|25|33609.50|0.02|0.01|A|F|1994-06-25|1994-08-15|1994-06-28|DELIVER IN PERSON|TRUCK|ular, regular somas are slyl| +32905|340180|40181|1|6|7321.02|0.01|0.00|R|F|1992-08-16|1992-07-25|1992-08-30|COLLECT COD|TRUCK|ffily regular packa| +32906|794380|31926|1|29|42756.15|0.04|0.05|A|F|1993-11-22|1993-10-16|1993-12-20|NONE|RAIL|unts detect quickly regular pac| +32906|139530|39531|2|29|45516.37|0.06|0.01|A|F|1993-10-26|1993-10-18|1993-11-03|NONE|SHIP|nag slyly. instructions s| +32907|564793|39816|1|45|83599.65|0.09|0.06|N|O|1996-08-06|1996-08-30|1996-08-13|TAKE BACK RETURN|SHIP|es. slyly even soma| +32908|41809|41810|1|8|14006.40|0.00|0.08|N|O|1996-03-04|1996-03-18|1996-03-06|TAKE BACK RETURN|MAIL|ng to the carefully bold pinto bea| +32909|753473|28504|1|39|59531.16|0.02|0.03|R|F|1995-04-11|1995-03-22|1995-04-25|TAKE BACK RETURN|MAIL|ts cajole among the slyly special | +32909|608057|20570|2|15|14475.30|0.06|0.03|R|F|1995-02-17|1995-04-07|1995-02-26|COLLECT COD|REG AIR|cuses haggle slyly slyly ironic accoun| +32909|598958|11470|3|42|86391.06|0.07|0.04|R|F|1995-01-31|1995-02-21|1995-02-14|NONE|FOB| carefully pending ideas. express packa| +32909|672947|47974|4|34|65276.94|0.09|0.01|R|F|1995-02-22|1995-02-25|1995-03-06|DELIVER IN PERSON|REG AIR|y after the final, express| +32909|207138|44651|5|35|36579.20|0.06|0.04|R|F|1995-02-05|1995-03-09|1995-02-17|COLLECT COD|SHIP|ideas about the regular,| +32909|352693|2694|6|10|17456.80|0.07|0.01|A|F|1995-01-23|1995-02-23|1995-02-18|COLLECT COD|REG AIR|e carefully sile| +32910|591237|3749|1|7|9297.47|0.04|0.02|N|O|1996-08-08|1996-07-13|1996-08-26|TAKE BACK RETURN|SHIP| about the fluffily final| +32910|904896|17415|2|2|3801.70|0.10|0.01|N|O|1996-06-26|1996-06-30|1996-07-16|TAKE BACK RETURN|TRUCK|rses haggle| +32910|584159|9182|3|4|4972.52|0.01|0.03|N|O|1996-06-10|1996-07-12|1996-06-25|COLLECT COD|MAIL|! blithely regular platelets wake. reques| +32910|956042|43600|4|20|21960.00|0.04|0.04|N|O|1996-07-20|1996-07-23|1996-08-09|NONE|MAIL|fluffily. slyly ironic asymptotes believe| +32911|683284|33285|1|45|57026.25|0.04|0.03|N|O|1998-01-05|1998-01-12|1998-01-14|TAKE BACK RETURN|FOB|g, unusual packages integrat| +32911|943738|6257|2|46|81957.74|0.01|0.08|N|O|1998-02-03|1998-01-14|1998-02-14|TAKE BACK RETURN|RAIL|iously even foxes are along th| +32911|400997|38522|3|43|81612.71|0.01|0.07|N|O|1997-12-24|1998-02-20|1998-01-20|TAKE BACK RETURN|TRUCK| blithely even asymptot| +32911|552627|2628|4|20|33592.00|0.06|0.03|N|O|1998-02-24|1998-01-18|1998-03-20|DELIVER IN PERSON|REG AIR|osits? quickly special foxes affix after th| +32911|997189|34747|5|9|11575.26|0.10|0.04|N|O|1998-02-12|1998-01-11|1998-02-18|TAKE BACK RETURN|FOB|l attainments wake acro| +32936|557855|32878|1|24|45907.92|0.05|0.05|N|O|1997-05-31|1997-03-31|1997-06-08|DELIVER IN PERSON|REG AIR| unusual asympt| +32936|864658|39693|2|25|40565.25|0.04|0.02|N|O|1997-05-17|1997-04-07|1997-06-13|COLLECT COD|RAIL|iously under the furio| +32937|547285|22306|1|40|53290.40|0.07|0.08|N|O|1997-03-15|1997-02-19|1997-03-21|NONE|MAIL| the blithely regular requ| +32937|204300|16805|2|24|28902.96|0.01|0.05|N|O|1997-03-26|1997-02-06|1997-04-12|TAKE BACK RETURN|AIR|side of the slyly | +32937|654095|16609|3|38|39864.28|0.07|0.03|N|O|1997-02-18|1997-02-22|1997-03-09|COLLECT COD|TRUCK|y regular packages accordi| +32937|365124|15125|4|47|55888.17|0.07|0.06|N|O|1997-02-18|1997-01-15|1997-03-08|NONE|RAIL|nal, express accoun| +32937|638981|14006|5|39|74878.05|0.02|0.03|N|O|1997-01-22|1997-02-04|1997-02-08|TAKE BACK RETURN|SHIP|y silent theodolites unwind blithel| +32937|352226|14734|6|2|2556.42|0.07|0.08|N|O|1996-12-28|1997-01-20|1997-01-25|NONE|TRUCK| silent, regular foxes across the silent p| +32937|846260|21293|7|14|16887.08|0.04|0.06|N|O|1997-01-15|1997-03-06|1997-01-25|COLLECT COD|FOB|nusual, special deposits are slyly after t| +32938|80088|30089|1|45|48063.60|0.01|0.04|R|F|1992-01-31|1992-04-04|1992-02-06|DELIVER IN PERSON|TRUCK|pendencies cajole caref| +32938|29098|29099|2|37|38002.33|0.04|0.07|A|F|1992-04-25|1992-04-01|1992-05-19|NONE|REG AIR|ily express n| +32938|41320|16321|3|11|13874.52|0.06|0.01|A|F|1992-04-27|1992-04-12|1992-05-07|COLLECT COD|SHIP|gular frets after| +32939|323245|35752|1|13|16486.99|0.03|0.04|N|O|1997-11-03|1997-10-17|1997-12-01|NONE|REG AIR|eodolites according to the pending, i| +32939|777796|2827|2|9|16863.84|0.10|0.06|N|O|1997-08-21|1997-10-17|1997-09-05|COLLECT COD|TRUCK|symptotes. un| +32940|933737|46256|1|14|24789.66|0.05|0.05|N|O|1997-04-08|1997-05-25|1997-05-08|COLLECT COD|AIR|p blithely| +32940|309807|34820|2|32|58137.28|0.03|0.05|N|O|1997-05-23|1997-06-28|1997-06-13|DELIVER IN PERSON|SHIP|ccounts nag blithely | +32940|920120|20121|3|13|14821.04|0.08|0.02|N|O|1997-06-20|1997-05-23|1997-07-15|DELIVER IN PERSON|TRUCK| ruthless pack| +32940|443111|18128|4|33|34784.97|0.00|0.02|N|O|1997-05-11|1997-06-29|1997-05-14|COLLECT COD|FOB|ies about the slyly silent deposits affix| +32940|356080|31095|5|24|27265.68|0.01|0.00|N|O|1997-07-25|1997-05-11|1997-08-13|DELIVER IN PERSON|RAIL| packages detect furiously above th| +32941|49949|12450|1|8|15191.52|0.06|0.04|N|O|1996-11-14|1996-12-11|1996-11-30|TAKE BACK RETURN|FOB|ronic deposits solve above the carefully re| +32941|477436|39946|2|29|40988.89|0.07|0.03|N|O|1997-01-01|1997-01-03|1997-01-24|DELIVER IN PERSON|MAIL|ently slyly regular depende| +32941|255962|30973|3|43|82471.85|0.04|0.04|N|O|1997-01-21|1997-01-02|1997-02-17|DELIVER IN PERSON|AIR|ronic deposits. fluffily final sheaves | +32941|948167|23204|4|31|37668.72|0.05|0.00|N|O|1997-01-30|1997-01-25|1997-02-27|DELIVER IN PERSON|REG AIR|final inst| +32941|836265|36266|5|11|13213.42|0.02|0.06|N|O|1997-01-28|1996-12-15|1997-02-06|DELIVER IN PERSON|RAIL| are boldly. regular pack| +32941|94233|44234|6|46|56452.58|0.10|0.03|N|O|1996-11-18|1996-12-18|1996-11-23|NONE|SHIP|usly. quietly unusual deposits haggle ca| +32942|179273|29274|1|49|66261.23|0.04|0.08|R|F|1992-04-24|1992-02-19|1992-05-14|TAKE BACK RETURN|RAIL|uick requests. quickly silent platelets s| +32942|35114|35115|2|17|17834.87|0.10|0.07|R|F|1992-04-05|1992-02-29|1992-04-22|NONE|FOB| haggle carefully across the fluffily bold | +32942|155960|5961|3|44|88702.24|0.01|0.08|R|F|1992-03-27|1992-03-09|1992-04-12|DELIVER IN PERSON|REG AIR|boost after the furiously ironic theodolite| +32942|211890|49403|4|3|5405.64|0.02|0.00|R|F|1992-04-06|1992-03-07|1992-04-16|NONE|FOB|c packages inside t| +32942|219155|44164|5|23|24705.22|0.06|0.03|R|F|1992-04-29|1992-02-24|1992-04-30|TAKE BACK RETURN|TRUCK|nstructions among the u| +32942|336883|36884|6|3|5759.61|0.09|0.06|A|F|1992-04-23|1992-02-24|1992-05-04|NONE|MAIL|sts. blithely regular requests are quic| +32943|643298|30835|1|37|45926.62|0.02|0.05|R|F|1992-08-26|1992-10-14|1992-09-19|DELIVER IN PERSON|AIR|sual dependencies x-ray | +32943|893598|31150|2|25|39788.75|0.10|0.06|A|F|1992-09-06|1992-10-13|1992-10-01|DELIVER IN PERSON|RAIL|carefully. furiously sile| +32943|690050|40051|3|21|21840.42|0.07|0.04|A|F|1992-11-01|1992-10-18|1992-11-23|DELIVER IN PERSON|SHIP|uests. carefully pending | +32943|670267|32781|4|49|60624.27|0.02|0.05|A|F|1992-09-18|1992-09-12|1992-10-18|DELIVER IN PERSON|FOB|ickly bold packages. furiously final deposi| +32968|492588|42589|1|46|72705.76|0.00|0.02|A|F|1995-01-22|1994-12-25|1995-02-17|DELIVER IN PERSON|SHIP|eposits. pending, spec| +32968|919929|19930|2|50|97444.00|0.08|0.08|A|F|1995-01-01|1994-12-16|1995-01-03|TAKE BACK RETURN|REG AIR|s wake slyly. pending depos| +32968|237947|452|3|9|16964.37|0.10|0.01|R|F|1995-01-21|1994-12-23|1995-02-13|COLLECT COD|RAIL|blithely across the quickly ironi| +32968|159551|47061|4|33|53148.15|0.08|0.02|R|F|1994-12-02|1995-01-18|1994-12-17|NONE|SHIP|ffy tithes. ironic deposits a| +32968|557219|32242|5|6|7657.14|0.02|0.08|A|F|1995-03-02|1994-12-11|1995-03-31|TAKE BACK RETURN|AIR|s cajole along| +32968|176162|1169|6|23|28477.68|0.06|0.01|A|F|1994-12-13|1994-12-24|1994-12-22|COLLECT COD|MAIL|symptotes. even| +32969|246022|8527|1|21|20328.21|0.03|0.05|N|O|1996-01-21|1996-03-11|1996-01-24|COLLECT COD|RAIL|ays wake. fur| +32969|886105|23657|2|34|37096.04|0.07|0.07|N|O|1996-04-21|1996-04-03|1996-05-18|TAKE BACK RETURN|MAIL|de of the | +32969|765209|2755|3|18|22935.06|0.02|0.03|N|O|1996-02-04|1996-03-06|1996-02-07|COLLECT COD|SHIP|uffily regular asymptotes sleep| +32969|861997|24515|4|7|13712.65|0.06|0.05|N|O|1996-03-30|1996-03-14|1996-04-24|NONE|RAIL|kly pinto beans. slyly ironic pinto| +32969|573787|48810|5|34|63265.84|0.05|0.07|N|O|1996-04-24|1996-04-05|1996-05-11|DELIVER IN PERSON|AIR|y blithely regular escapades. slyly even d| +32970|473059|48078|1|8|8256.24|0.02|0.06|N|O|1997-10-06|1997-09-19|1997-10-18|COLLECT COD|TRUCK|he deposits cajole | +32970|701247|26276|2|24|29957.04|0.00|0.01|N|O|1997-09-28|1997-10-26|1997-10-05|TAKE BACK RETURN|FOB|l foxes. regular instr| +32970|854643|17161|3|41|65501.60|0.08|0.03|N|O|1997-11-28|1997-09-17|1997-12-01|NONE|AIR|al accounts breach. instructions acco| +32970|980178|5217|4|46|57873.98|0.03|0.06|N|O|1997-11-08|1997-09-18|1997-11-13|TAKE BACK RETURN|RAIL| packages! special instructions nag re| +32971|724698|37213|1|38|65461.08|0.04|0.01|R|F|1993-02-22|1993-03-30|1993-03-18|COLLECT COD|TRUCK|ing packages. quickly ir| +32971|988987|38988|2|47|97569.18|0.07|0.04|R|F|1993-02-06|1993-03-19|1993-02-18|NONE|SHIP| final, ironi| +32971|894284|19319|3|21|26843.04|0.00|0.06|R|F|1993-03-30|1993-03-16|1993-04-13|NONE|FOB|wake blithely among the carefully e| +32972|170357|45364|1|38|54239.30|0.01|0.08|N|O|1995-11-20|1995-11-26|1995-11-21|NONE|RAIL|lar pinto beans. quickly unusual pi| +32973|553949|28972|1|39|78113.88|0.04|0.00|N|O|1998-01-29|1998-04-07|1998-02-14|TAKE BACK RETURN|RAIL|haggle furiously furiously b| +32973|206687|44200|2|14|22311.38|0.04|0.07|N|O|1998-04-18|1998-02-18|1998-05-06|TAKE BACK RETURN|MAIL|structions. slyly regular platelets | +32973|786433|23979|3|27|41023.80|0.02|0.07|N|O|1998-01-19|1998-02-25|1998-02-02|TAKE BACK RETURN|FOB|y above the carefully iron| +32973|570525|33037|4|11|17550.50|0.00|0.05|N|O|1998-01-15|1998-03-14|1998-02-07|NONE|RAIL|s dolphins boost carefully across the| +32973|811925|49474|5|47|86333.36|0.04|0.04|N|O|1998-01-30|1998-04-06|1998-02-14|NONE|SHIP|furiously furiously even req| +32974|878272|3307|1|40|50009.20|0.03|0.07|R|F|1992-06-24|1992-08-26|1992-07-06|COLLECT COD|AIR| furiously unusual packages-- blithely| +32974|105729|30734|2|39|67654.08|0.07|0.08|A|F|1992-10-03|1992-08-02|1992-10-30|DELIVER IN PERSON|SHIP|lithely even instruc| +32974|975607|646|3|4|6730.24|0.04|0.08|A|F|1992-10-03|1992-08-02|1992-10-08|DELIVER IN PERSON|TRUCK|cording to the silent, final request| +32974|16500|4001|4|43|60909.50|0.02|0.04|A|F|1992-10-06|1992-08-22|1992-10-20|TAKE BACK RETURN|TRUCK|sublate bold accounts. furiousl| +32974|305740|5741|5|18|31423.14|0.09|0.01|R|F|1992-07-27|1992-09-09|1992-08-26|DELIVER IN PERSON|FOB| are furiously. carefully reg| +32975|339793|2300|1|14|25658.92|0.05|0.06|R|F|1993-07-09|1993-07-02|1993-07-30|TAKE BACK RETURN|RAIL|instructions use slyly qui| +32975|890755|15790|2|29|50625.59|0.06|0.01|R|F|1993-07-21|1993-07-12|1993-07-22|COLLECT COD|AIR|yly even packages haggl| +32975|907468|19987|3|17|25082.14|0.02|0.05|R|F|1993-05-26|1993-07-10|1993-06-20|COLLECT COD|SHIP|theodolites nag. sl| +32975|803108|40657|4|30|30331.80|0.10|0.08|A|F|1993-07-28|1993-06-24|1993-08-12|NONE|SHIP|elets. slyly silent ideas doubt fluffil| +32975|823558|11107|5|2|2963.02|0.05|0.02|R|F|1993-06-30|1993-07-16|1993-07-03|TAKE BACK RETURN|MAIL|oxes. foxes cajole | +33000|965605|28125|1|26|43434.56|0.03|0.01|R|F|1994-09-02|1994-07-09|1994-09-05|COLLECT COD|TRUCK|ly regular pinto beans. slyl| +33000|919127|19128|2|40|45843.20|0.01|0.00|R|F|1994-07-13|1994-06-19|1994-07-30|DELIVER IN PERSON|FOB|beans after the| +33001|927511|27512|1|7|10769.29|0.02|0.06|R|F|1995-03-17|1995-04-12|1995-03-30|TAKE BACK RETURN|TRUCK|blithely bold deposits. regular | +33001|673395|48422|2|50|68418.00|0.05|0.02|R|F|1995-04-20|1995-03-18|1995-05-05|TAKE BACK RETURN|REG AIR|ts integrate into the blithely pending fr| +33001|734000|9029|3|9|9305.73|0.07|0.00|N|F|1995-05-22|1995-04-17|1995-06-19|TAKE BACK RETURN|SHIP|owly express foxes dazzle car| +33002|421386|8911|1|44|57523.84|0.03|0.00|N|O|1997-01-11|1996-11-29|1997-01-18|NONE|AIR|e across the slyly sil| +33003|534279|34280|1|41|53843.25|0.07|0.03|A|F|1992-10-08|1992-11-03|1992-10-14|COLLECT COD|RAIL| carefully silent deposits are carefully r| +33003|623057|48082|2|9|8820.18|0.05|0.06|A|F|1992-12-12|1992-12-27|1993-01-02|DELIVER IN PERSON|RAIL| ironic multipliers wake. regular a| +33003|708922|21437|3|14|27032.46|0.00|0.03|A|F|1992-12-04|1992-12-18|1992-12-20|DELIVER IN PERSON|REG AIR|ely regular | +33003|841708|4225|4|34|56088.44|0.03|0.01|R|F|1992-11-01|1992-11-28|1992-11-07|COLLECT COD|AIR| sentiments. furiously ironic pinto bean| +33004|555954|5955|1|44|88436.92|0.00|0.06|R|F|1994-03-16|1994-01-14|1994-04-08|NONE|RAIL|luffy escapades. fluffily unusua| +33004|905061|17580|2|9|9594.18|0.07|0.01|R|F|1994-03-02|1994-01-09|1994-03-05|COLLECT COD|AIR|l deposits | +33004|354655|4656|3|44|75224.16|0.00|0.03|R|F|1994-01-23|1994-01-05|1994-01-24|COLLECT COD|SHIP|ns. idly regular packages wake. bold theodo| +33004|675356|12896|4|29|38608.28|0.04|0.01|R|F|1994-02-02|1994-01-02|1994-02-14|NONE|AIR|sly final deposits. unu| +33004|700154|25183|5|38|43856.56|0.10|0.04|R|F|1994-02-16|1994-02-01|1994-03-04|NONE|REG AIR|ackages. ironic reques| +33005|140448|15453|1|2|2976.88|0.09|0.04|N|O|1996-12-26|1996-12-18|1997-01-16|NONE|RAIL|inal deposit| +33005|502655|2656|2|48|79566.24|0.08|0.03|N|O|1996-10-25|1996-11-30|1996-11-13|NONE|AIR| against the slyly special| +33005|116445|28948|3|25|36536.00|0.00|0.04|N|O|1996-10-04|1996-11-26|1996-10-27|NONE|FOB|ounts boost clo| +33005|83811|21315|4|13|23332.53|0.00|0.07|N|O|1996-11-30|1996-12-17|1996-12-22|TAKE BACK RETURN|AIR|e furiousl| +33005|608887|21400|5|27|48487.95|0.09|0.06|N|O|1996-11-24|1996-11-10|1996-11-28|COLLECT COD|SHIP| boost. furiously special wa| +33005|562993|25505|6|38|78126.86|0.05|0.07|N|O|1996-12-26|1996-12-23|1997-01-14|NONE|RAIL|eep along the f| +33005|209148|34157|7|1|1057.13|0.03|0.02|N|O|1996-10-24|1996-12-01|1996-11-02|TAKE BACK RETURN|SHIP|ross the slyly sp| +33006|135552|23059|1|34|53976.70|0.01|0.03|N|O|1997-12-14|1997-12-29|1998-01-07|NONE|FOB|ges cajole along the special pint| +33006|218924|31429|2|33|60816.03|0.09|0.06|N|O|1997-11-09|1997-12-15|1997-11-18|NONE|RAIL| regular dependenc| +33006|455520|43048|3|43|63446.50|0.10|0.07|N|O|1997-12-24|1997-12-28|1998-01-08|NONE|MAIL| final deposi| +33007|365155|15156|1|24|29283.36|0.00|0.01|N|O|1998-03-27|1998-03-24|1998-04-11|TAKE BACK RETURN|RAIL| final theodolites haggle fluffily a| +33007|151828|39338|2|11|20678.02|0.02|0.08|N|O|1998-03-11|1998-03-20|1998-03-23|NONE|AIR|after the unusual, special requests. c| +33032|191592|4096|1|15|25253.85|0.10|0.06|A|F|1994-02-27|1994-03-26|1994-03-27|NONE|RAIL|ons. final requests cajole a| +33032|72157|34659|2|30|33874.50|0.04|0.05|R|F|1994-02-27|1994-03-25|1994-03-26|NONE|SHIP| after the blithely ironic packages| +33032|733648|46163|3|42|70627.62|0.08|0.01|R|F|1994-05-03|1994-04-10|1994-05-10|COLLECT COD|TRUCK|counts. fluff| +33032|416461|3986|4|19|26171.36|0.06|0.02|A|F|1994-03-12|1994-04-06|1994-04-09|COLLECT COD|REG AIR| accounts. id| +33032|447379|9888|5|47|62338.45|0.07|0.05|R|F|1994-04-26|1994-04-14|1994-05-11|NONE|FOB|ainst the express requests. permane| +33033|523775|23776|1|5|8993.75|0.03|0.07|N|O|1996-04-13|1996-04-02|1996-04-17|COLLECT COD|RAIL|l platelet| +33033|84530|22034|2|12|18174.36|0.01|0.08|N|O|1996-04-11|1996-03-27|1996-04-25|NONE|RAIL| pending requests w| +33034|464045|1573|1|24|24216.48|0.00|0.06|N|O|1997-01-09|1996-12-16|1997-01-16|NONE|SHIP|nal accounts| +33034|198376|10880|2|40|58974.80|0.04|0.07|N|O|1996-11-12|1996-11-09|1996-12-04|COLLECT COD|AIR|l requests across the regular, | +33034|88692|26196|3|16|26891.04|0.08|0.03|N|O|1996-12-18|1996-12-20|1997-01-14|COLLECT COD|FOB|sly. pending platelets sn| +33034|641916|16941|4|44|81746.72|0.03|0.00|N|O|1996-10-29|1996-11-14|1996-11-03|COLLECT COD|SHIP|unusual accounts detect quickly dogged p| +33035|949929|24966|1|24|47493.12|0.07|0.01|N|O|1997-04-29|1997-04-08|1997-05-22|DELIVER IN PERSON|AIR|ructions. ironic req| +33035|442121|4630|2|11|11694.10|0.02|0.05|N|O|1997-02-20|1997-03-22|1997-03-03|TAKE BACK RETURN|TRUCK|ions haggle carefully. | +33036|185623|23133|1|15|25629.30|0.06|0.05|A|F|1993-09-23|1993-08-09|1993-10-11|TAKE BACK RETURN|REG AIR|to beans use sl| +33036|751525|14041|2|43|67789.07|0.03|0.06|R|F|1993-09-16|1993-08-06|1993-09-17|TAKE BACK RETURN|RAIL|usly even deposits wake blit| +33036|876959|26960|3|5|9679.55|0.08|0.05|A|F|1993-07-20|1993-09-18|1993-08-10|COLLECT COD|REG AIR|ar packages wake furiously alongside of th| +33037|225422|37927|1|38|51201.58|0.03|0.06|R|F|1994-01-29|1994-01-04|1994-01-31|NONE|AIR|. bold deposits play quickly ac| +33037|667267|4807|2|46|56774.58|0.06|0.01|A|F|1994-01-10|1993-12-13|1994-02-07|TAKE BACK RETURN|REG AIR|ounts sleep around th| +33037|756057|18573|3|24|26712.48|0.04|0.06|R|F|1993-11-22|1993-12-30|1993-12-18|NONE|AIR|ind carefully along| +33037|44711|32212|4|47|77818.37|0.06|0.08|A|F|1994-01-06|1994-01-14|1994-02-02|COLLECT COD|MAIL|the permanent, ironic requests. carefully b| +33038|298253|48254|1|26|32532.24|0.00|0.08|N|O|1995-09-04|1995-09-18|1995-09-20|DELIVER IN PERSON|TRUCK| quickly regular pint| +33038|723809|36324|2|20|36655.40|0.05|0.06|N|O|1995-09-09|1995-10-22|1995-09-18|DELIVER IN PERSON|RAIL|nts sleep blithely? reque| +33039|745826|20855|1|22|41179.38|0.07|0.07|A|F|1995-02-13|1995-01-17|1995-03-06|COLLECT COD|TRUCK|lithely fluffy deposits. requ| +33039|84861|22365|2|16|29533.76|0.06|0.00|A|F|1994-12-12|1994-12-25|1994-12-31|COLLECT COD|FOB|s integrate stea| +33039|245024|32537|3|31|30039.31|0.09|0.01|R|F|1994-12-09|1995-01-27|1994-12-16|TAKE BACK RETURN|RAIL|eas cajole bold deposits. quietly final | +33039|103239|40746|4|7|8695.61|0.03|0.01|R|F|1995-03-05|1995-01-21|1995-03-26|NONE|SHIP|ending reque| +33039|132315|32316|5|1|1347.31|0.07|0.04|A|F|1995-02-28|1995-02-14|1995-03-23|NONE|RAIL|quests whitho| +33039|809082|46631|6|30|29731.20|0.07|0.08|A|F|1994-12-16|1995-01-29|1994-12-28|TAKE BACK RETURN|MAIL|into beans. furiously| +33039|230890|18403|7|18|32775.84|0.06|0.02|A|F|1994-11-26|1994-12-25|1994-12-26|COLLECT COD|AIR|s wake against the regular,| +33064|559972|47506|1|34|69086.30|0.05|0.07|N|O|1997-05-22|1997-06-09|1997-05-28|TAKE BACK RETURN|MAIL|ronic requests run c| +33064|435593|48102|2|23|35157.11|0.00|0.01|N|O|1997-05-28|1997-05-30|1997-06-23|COLLECT COD|MAIL|p carefully express pac| +33064|998049|10569|3|26|29822.00|0.10|0.04|N|O|1997-06-04|1997-05-07|1997-06-09|COLLECT COD|MAIL|ckly pending acco| +33064|202395|27404|4|20|25947.60|0.02|0.08|N|O|1997-08-02|1997-05-17|1997-08-27|COLLECT COD|AIR|tructions. ironic excuses are slyly busy e| +33064|641967|4480|5|43|82083.99|0.01|0.03|N|O|1997-05-23|1997-06-23|1997-05-25|DELIVER IN PERSON|TRUCK|ecial, final accounts boost carefully. fluf| +33064|534123|9144|6|4|4628.40|0.06|0.04|N|O|1997-08-06|1997-06-26|1997-08-16|NONE|SHIP|ackages caj| +33065|845470|7987|1|25|35385.75|0.09|0.07|R|F|1994-04-05|1994-06-12|1994-05-04|NONE|TRUCK|deposits. careful| +33066|702728|40271|1|37|64035.53|0.00|0.06|R|F|1992-05-10|1992-02-19|1992-05-15|DELIVER IN PERSON|RAIL|ake slyly pend| +33066|748453|35996|2|43|64561.06|0.06|0.01|A|F|1992-03-24|1992-03-31|1992-03-29|COLLECT COD|SHIP|about the blithely ironic dolphin| +33067|669502|44529|1|13|19129.11|0.00|0.04|R|F|1992-08-15|1992-06-11|1992-08-18|COLLECT COD|SHIP|ithely above the slyly even theod| +33067|309974|22481|2|8|15871.68|0.02|0.00|A|F|1992-06-07|1992-07-19|1992-07-06|NONE|TRUCK| requests use. even, bold pack| +33067|731195|18738|3|38|46594.08|0.09|0.01|R|F|1992-06-11|1992-05-29|1992-06-24|DELIVER IN PERSON|RAIL|regular wat| +33067|185856|48360|4|6|11651.10|0.02|0.00|R|F|1992-05-11|1992-07-09|1992-05-14|TAKE BACK RETURN|REG AIR|ily final dependen| +33068|810494|10495|1|2|2808.90|0.01|0.03|N|O|1997-01-24|1997-01-23|1997-02-16|TAKE BACK RETURN|FOB|even requests| +33068|962688|37727|2|36|63023.04|0.05|0.08|N|O|1996-12-13|1997-01-22|1996-12-18|TAKE BACK RETURN|REG AIR|es sleep according to the| +33068|884967|34968|3|20|39038.40|0.03|0.07|N|O|1997-01-29|1997-02-08|1997-02-14|TAKE BACK RETURN|RAIL|s ideas. furiously silent packages are | +33068|631216|31217|4|29|33268.22|0.01|0.02|N|O|1996-12-03|1997-02-15|1996-12-04|NONE|SHIP|ckages. slyly even deposits subl| +33068|830629|30630|5|30|46787.40|0.01|0.08|N|O|1997-03-13|1997-02-06|1997-03-14|TAKE BACK RETURN|AIR|tes against the frays i| +33068|370426|20427|6|17|25438.97|0.06|0.07|N|O|1996-12-31|1997-02-02|1997-01-07|DELIVER IN PERSON|TRUCK|as boost bli| +33068|736200|36201|7|50|61808.50|0.09|0.05|N|O|1997-03-04|1997-01-20|1997-03-16|TAKE BACK RETURN|SHIP|lyly ironic, regular theodolite| +33069|312290|37303|1|40|52091.20|0.07|0.04|N|O|1997-10-15|1997-09-25|1997-11-11|COLLECT COD|RAIL|es. deposits integrate. ideas across th| +33069|645773|8286|2|19|32656.06|0.03|0.07|N|O|1997-11-24|1997-10-04|1997-12-08|DELIVER IN PERSON|FOB| unusual packages above t| +33069|506035|6036|3|14|14574.14|0.02|0.03|N|O|1997-11-03|1997-09-25|1997-11-10|COLLECT COD|RAIL|ackages are against the quickly regular exc| +33069|927332|39851|4|13|17670.77|0.06|0.07|N|O|1997-09-02|1997-10-22|1997-09-17|DELIVER IN PERSON|REG AIR|uctions affix fluffily express requests.| +33069|654928|42468|5|46|86612.94|0.05|0.04|N|O|1997-11-18|1997-09-23|1997-12-02|TAKE BACK RETURN|TRUCK|le blithely. blithely furious | +33070|38169|13170|1|21|23250.36|0.09|0.04|A|F|1992-05-24|1992-07-04|1992-06-19|NONE|RAIL| special pin| +33070|505904|30925|2|17|32467.96|0.04|0.04|R|F|1992-07-21|1992-06-22|1992-08-12|COLLECT COD|RAIL|express packages. ironic| +33071|442050|42051|1|32|31744.96|0.03|0.01|R|F|1992-05-20|1992-04-26|1992-06-01|DELIVER IN PERSON|MAIL|ckages. quickly ironic pinto beans eat| +33071|532807|7828|2|1|1839.78|0.03|0.01|R|F|1992-04-01|1992-05-04|1992-04-12|TAKE BACK RETURN|FOB|tions nag slowly across the blit| +33096|550056|37590|1|32|35392.96|0.00|0.04|R|F|1994-03-16|1994-02-20|1994-04-07|TAKE BACK RETURN|TRUCK|eodolites wake carefully quiet pl| +33096|777411|39927|2|48|71442.24|0.01|0.03|R|F|1993-12-08|1994-02-09|1994-01-01|NONE|MAIL|e. packages are. furiously special deposits| +33096|934551|47070|3|31|49150.81|0.06|0.02|R|F|1993-12-28|1994-02-14|1993-12-30|DELIVER IN PERSON|TRUCK|c pinto beans hind| +33096|982811|7850|4|43|81432.11|0.09|0.00|A|F|1993-12-14|1994-01-22|1994-01-08|TAKE BACK RETURN|FOB|ages are sly| +33096|92131|17134|5|33|37063.29|0.06|0.02|R|F|1994-02-20|1993-12-26|1994-03-22|COLLECT COD|FOB|kages; furiously bold instructions af| +33097|899989|25024|1|29|57679.26|0.06|0.01|N|O|1996-10-06|1996-10-14|1996-10-20|DELIVER IN PERSON|REG AIR|l requests across the carefull| +33097|113050|13051|2|40|42522.00|0.10|0.01|N|O|1996-09-24|1996-11-04|1996-10-04|COLLECT COD|REG AIR|the pending asym| +33098|831140|18689|1|48|51412.80|0.06|0.05|A|F|1994-06-30|1994-05-24|1994-07-21|DELIVER IN PERSON|MAIL|equests alongside of the unusu| +33098|954849|29888|2|31|59017.80|0.01|0.01|R|F|1994-04-30|1994-06-14|1994-05-01|NONE|MAIL| requests wake furiously. ev| +33099|965625|3183|1|43|72694.94|0.08|0.08|N|O|1997-12-07|1997-12-04|1997-12-26|NONE|TRUCK|al accounts. final, pendin| +33100|87283|12286|1|36|45730.08|0.08|0.02|N|O|1997-10-27|1997-12-06|1997-11-11|TAKE BACK RETURN|FOB|es affix furiously express acco| +33100|954189|41747|2|14|17403.96|0.00|0.02|N|O|1997-09-30|1997-11-23|1997-10-21|DELIVER IN PERSON|MAIL| final packages are | +33100|38240|38241|3|39|45951.36|0.06|0.08|N|O|1997-09-28|1997-12-16|1997-10-17|TAKE BACK RETURN|REG AIR| express accounts. fi| +33100|684320|21860|4|48|62605.92|0.03|0.08|N|O|1998-01-02|1997-11-07|1998-01-25|DELIVER IN PERSON|RAIL|l, even accounts according| +33100|357637|20145|5|1|1694.62|0.06|0.07|N|O|1998-01-01|1997-12-17|1998-01-08|DELIVER IN PERSON|AIR|lithely even dependencies use. exc| +33100|794212|6728|6|6|7837.08|0.00|0.06|N|O|1997-10-13|1997-10-24|1997-11-01|DELIVER IN PERSON|TRUCK|e fluffily bold dep| +33100|307066|19573|7|29|31118.45|0.08|0.05|N|O|1997-12-25|1997-12-06|1998-01-11|COLLECT COD|AIR|n requests nag furiously quietly unusual| +33101|841572|16605|1|20|30270.60|0.09|0.05|A|F|1992-05-31|1992-05-02|1992-06-05|NONE|SHIP|ccounts cajole quickly express pin| +33101|298564|11070|2|19|29688.45|0.05|0.05|A|F|1992-04-29|1992-04-04|1992-05-25|TAKE BACK RETURN|MAIL|to beans. even, final realms hagg| +33101|949914|49915|3|43|84446.41|0.00|0.08|A|F|1992-06-18|1992-04-16|1992-06-26|NONE|FOB|, pending asymptotes. furiously fi| +33101|193226|18233|4|38|50130.36|0.06|0.04|R|F|1992-03-04|1992-04-09|1992-03-26|TAKE BACK RETURN|MAIL| bravely express account| +33101|546767|46768|5|30|54412.20|0.05|0.04|A|F|1992-04-26|1992-04-26|1992-05-15|TAKE BACK RETURN|MAIL|long the quickly final instructions. fl| +33102|991199|16238|1|20|25803.00|0.07|0.03|R|F|1995-03-16|1995-03-11|1995-04-04|TAKE BACK RETURN|FOB|ilent, unusual accounts| +33102|70571|33073|2|34|52413.38|0.00|0.03|R|F|1995-02-28|1995-02-03|1995-03-01|TAKE BACK RETURN|REG AIR|r, even accounts haggle beyond the careful| +33102|72738|10242|3|48|82115.04|0.05|0.01|R|F|1995-03-02|1995-03-06|1995-03-17|TAKE BACK RETURN|REG AIR|ealthily final dependencies promise.| +33102|495799|33327|4|39|69996.03|0.02|0.02|R|F|1995-01-09|1995-03-14|1995-02-03|NONE|FOB|eep quickly. multipl| +33102|892661|30213|5|27|44647.74|0.01|0.00|R|F|1995-03-18|1995-03-15|1995-03-30|TAKE BACK RETURN|REG AIR|ccording to the packages. quickly special a| +33103|326549|1562|1|26|40963.78|0.07|0.03|A|F|1993-02-24|1992-12-26|1993-03-03|TAKE BACK RETURN|SHIP|posits! regular instructions sle| +33128|295211|45212|1|37|44629.40|0.03|0.06|R|F|1992-12-20|1992-10-31|1993-01-18|NONE|RAIL|regular packages among the furiously r| +33128|609830|9831|2|38|66112.40|0.05|0.04|R|F|1992-11-18|1992-10-12|1992-12-11|COLLECT COD|MAIL|counts cajole slyly. furiously express requ| +33128|409293|9294|3|5|6011.35|0.09|0.02|A|F|1992-11-11|1992-10-12|1992-11-24|COLLECT COD|FOB|lithely for the special, even fr| +33128|978010|15568|4|23|25023.31|0.08|0.06|A|F|1992-10-05|1992-09-21|1992-10-09|COLLECT COD|FOB|ronic requ| +33128|410771|48296|5|50|84087.50|0.03|0.03|A|F|1992-12-06|1992-10-01|1992-12-09|COLLECT COD|MAIL|onic pinto beans are alongside of the| +33128|817834|5383|6|14|24525.06|0.10|0.01|A|F|1992-09-25|1992-11-01|1992-10-15|COLLECT COD|REG AIR|cording to the careful| +33128|329660|4673|7|3|5068.95|0.10|0.05|R|F|1992-11-01|1992-09-30|1992-11-03|NONE|SHIP|press instructions. pending, p| +33129|592552|42553|1|47|77292.91|0.00|0.05|N|O|1998-08-19|1998-07-01|1998-08-28|TAKE BACK RETURN|RAIL|ls nag blith| +33129|13317|818|2|32|39369.92|0.10|0.04|N|O|1998-09-19|1998-08-10|1998-09-20|NONE|MAIL|ncies haggle furiously. quickly unusu| +33129|814987|14988|3|13|24725.22|0.03|0.06|N|O|1998-06-13|1998-08-19|1998-06-24|NONE|FOB|y ironic sauternes? blithely unusual de| +33130|278977|16493|1|26|50854.96|0.10|0.00|N|O|1997-05-21|1997-07-01|1997-06-19|DELIVER IN PERSON|REG AIR| thrash af| +33130|764425|1971|2|5|7446.95|0.00|0.01|N|O|1997-08-03|1997-08-08|1997-08-13|DELIVER IN PERSON|AIR|ounts. silent foxes s| +33130|683878|33879|3|46|85644.64|0.07|0.06|N|O|1997-05-25|1997-06-30|1997-05-30|TAKE BACK RETURN|MAIL|ent warthogs. blith| +33130|930733|30734|4|25|44092.25|0.02|0.07|N|O|1997-06-26|1997-06-17|1997-07-06|DELIVER IN PERSON|FOB|final packages| +33130|826313|1346|5|18|22306.86|0.04|0.07|N|O|1997-07-10|1997-06-27|1997-08-02|DELIVER IN PERSON|TRUCK|ing, final theodolites. sly| +33130|836121|36122|6|3|3171.24|0.08|0.08|N|O|1997-05-21|1997-06-23|1997-06-05|COLLECT COD|SHIP|otes are! pending ideas integrate | +33131|33716|46217|1|50|82485.50|0.02|0.07|R|F|1992-09-30|1992-09-21|1992-10-03|DELIVER IN PERSON|AIR| inside the theodolites nag furiously| +33132|229549|29550|1|21|31049.13|0.03|0.02|N|O|1996-12-11|1996-12-17|1996-12-22|NONE|TRUCK|deas nag slyly according to the reg| +33132|28856|3857|2|18|32127.30|0.05|0.05|N|O|1997-02-04|1996-12-20|1997-03-04|NONE|FOB|inal, ironic d| +33132|980365|30366|3|32|46250.24|0.04|0.05|N|O|1997-03-05|1996-12-26|1997-03-06|DELIVER IN PERSON|FOB|slyly carefully final | +33133|561684|36707|1|19|33167.54|0.00|0.00|N|O|1998-01-18|1998-03-02|1998-01-25|TAKE BACK RETURN|TRUCK|ructions. accounts haggle carefu| +33133|220290|45299|2|23|27836.44|0.05|0.00|N|O|1998-02-11|1998-01-27|1998-02-18|DELIVER IN PERSON|RAIL|y against the blithely silent dependenci| +33133|407514|45039|3|49|69653.01|0.02|0.04|N|O|1998-01-01|1998-02-25|1998-01-10|TAKE BACK RETURN|RAIL|ly above the| +33133|84160|46662|4|2|2288.32|0.04|0.03|N|O|1998-01-20|1998-01-03|1998-01-29|COLLECT COD|TRUCK|lay slyly express, regular bra| +33133|465970|15971|5|47|90989.65|0.04|0.08|N|O|1997-12-22|1998-01-07|1998-01-11|TAKE BACK RETURN|SHIP| sleep quickly bold| +33134|803981|41530|1|20|37698.80|0.06|0.06|A|F|1993-11-24|1993-11-29|1993-11-25|DELIVER IN PERSON|REG AIR|onic sauternes use f| +33134|498525|48526|2|33|50275.50|0.02|0.00|R|F|1994-02-16|1993-12-28|1994-03-05|TAKE BACK RETURN|MAIL|ggle blithely according to the ex| +33135|882903|45421|1|11|20744.46|0.10|0.02|N|O|1996-09-09|1996-09-24|1996-09-23|COLLECT COD|SHIP|haggle slyly courts. quickly | +33135|937523|12560|2|10|15604.80|0.03|0.00|N|O|1996-10-14|1996-10-07|1996-11-13|DELIVER IN PERSON|TRUCK|ages according to the stealthy p| +33135|944200|31755|3|35|43545.60|0.01|0.01|N|O|1996-09-29|1996-09-16|1996-10-10|COLLECT COD|FOB| pending somas wake| +33135|158745|8746|4|5|9018.70|0.02|0.05|N|O|1996-08-04|1996-09-13|1996-08-15|TAKE BACK RETURN|SHIP|le regular a| +33135|17444|4945|5|41|55819.04|0.07|0.07|N|O|1996-09-02|1996-08-18|1996-09-24|TAKE BACK RETURN|TRUCK|fully express pinto beans above the | +33160|344792|44793|1|32|58776.96|0.09|0.04|N|O|1997-03-27|1997-05-30|1997-04-18|DELIVER IN PERSON|RAIL|e regular courts. f| +33160|910038|22557|2|7|7335.93|0.08|0.08|N|O|1997-05-11|1997-04-27|1997-05-22|TAKE BACK RETURN|MAIL|alongside of the slyl| +33161|208960|33969|1|15|28034.25|0.05|0.01|A|F|1994-01-03|1993-11-27|1994-01-20|NONE|SHIP|ccounts; even requests cajole c| +33161|989242|39243|2|18|23961.60|0.00|0.02|R|F|1993-12-27|1993-12-17|1993-12-30|DELIVER IN PERSON|MAIL|uests are ruthlessly among the| +33162|708589|8590|1|33|52719.15|0.02|0.06|N|O|1998-07-24|1998-06-07|1998-08-17|COLLECT COD|TRUCK|yly pending dependencies. slyly regul| +33162|244868|19877|2|38|68888.30|0.09|0.01|N|O|1998-06-06|1998-05-14|1998-07-01|NONE|REG AIR| even accounts. blithely e| +33162|486532|36533|3|2|3037.02|0.00|0.04|N|O|1998-06-29|1998-06-12|1998-07-23|COLLECT COD|MAIL|ng the furio| +33163|526440|1461|1|3|4399.26|0.05|0.04|N|O|1997-04-23|1997-05-27|1997-05-05|NONE|AIR|cial decoys. carefull| +33163|865841|3393|2|49|88533.20|0.01|0.02|N|O|1997-05-14|1997-06-18|1997-05-19|COLLECT COD|MAIL|cally about the b| +33163|178634|16144|3|23|39390.49|0.07|0.00|N|O|1997-07-01|1997-07-08|1997-07-16|DELIVER IN PERSON|RAIL|usly alongside of the blithely ironic| +33163|285158|22674|4|22|25149.08|0.09|0.03|N|O|1997-04-25|1997-06-03|1997-05-02|TAKE BACK RETURN|RAIL|ding requests| +33164|701332|13847|1|44|58665.20|0.07|0.08|R|F|1992-12-12|1993-01-04|1993-01-05|COLLECT COD|REG AIR|pending pains. foxes boost instructions| +33164|278588|3599|2|43|67362.51|0.02|0.08|R|F|1993-03-09|1993-01-11|1993-04-04|TAKE BACK RETURN|REG AIR|cies about the blithely even pack| +33164|228428|15941|3|1|1356.41|0.01|0.01|A|F|1993-01-05|1993-01-23|1993-02-03|TAKE BACK RETURN|AIR|integrate evenl| +33164|188555|38556|4|31|50950.05|0.02|0.07|A|F|1993-03-06|1992-12-17|1993-03-08|NONE|RAIL|thely about the slyly regular braids. pen| +33164|36035|36036|5|18|17478.54|0.08|0.05|A|F|1993-01-10|1992-12-28|1993-01-25|NONE|REG AIR|cial deposits solve | +33164|634891|47404|6|39|71208.54|0.08|0.05|A|F|1993-02-12|1993-02-04|1993-03-09|NONE|FOB|ven dependencies wake bl| +33164|596977|46978|7|33|68440.35|0.01|0.06|R|F|1992-12-04|1993-01-29|1992-12-17|DELIVER IN PERSON|MAIL|ar deposits against the sl| +33165|380550|5565|1|29|47285.66|0.01|0.04|R|F|1993-09-29|1993-08-31|1993-10-13|COLLECT COD|FOB|lar pinto beans haggle | +33166|308574|21081|1|31|49059.36|0.04|0.08|N|O|1998-07-10|1998-07-09|1998-07-16|NONE|SHIP| accounts. furiously even dependencies | +33167|439852|14869|1|26|46587.58|0.06|0.05|A|F|1992-12-14|1993-02-09|1993-01-11|NONE|AIR|nes. regular, ironic requests among| +33167|587265|12288|2|39|52737.36|0.04|0.06|A|F|1992-12-05|1992-12-27|1992-12-22|NONE|SHIP|lyly ironic accounts are f| +33192|429567|17092|1|9|13468.86|0.01|0.06|N|O|1997-02-11|1997-01-14|1997-02-14|TAKE BACK RETURN|MAIL|sual somas are furiously regular | +33192|730591|18134|2|31|50268.36|0.08|0.06|N|O|1996-12-21|1996-12-06|1997-01-17|COLLECT COD|TRUCK|y silent deposits. careful reques| +33192|35634|35635|3|10|15696.30|0.04|0.01|N|O|1997-02-02|1997-01-06|1997-02-06|COLLECT COD|AIR|ly? carefully regular packages are ironic | +33192|898281|10799|4|22|28143.28|0.07|0.05|N|O|1996-11-18|1996-12-13|1996-11-24|NONE|MAIL|ular excuses wak| +33192|393530|43531|5|27|43835.04|0.07|0.02|N|O|1997-02-16|1997-01-03|1997-03-02|NONE|MAIL|ct blithely. blithely even asympt| +33192|54628|17130|6|27|42730.74|0.09|0.07|N|O|1997-02-05|1997-01-11|1997-03-07|COLLECT COD|TRUCK| carefully regular pa| +33193|101000|38507|1|6|6006.00|0.01|0.06|A|F|1994-01-05|1993-11-19|1994-01-29|TAKE BACK RETURN|SHIP|yly unusual packages use blithely. furious | +33193|499038|24057|2|3|3111.03|0.03|0.03|A|F|1993-12-29|1993-12-21|1994-01-10|NONE|MAIL|iously final platelets integrate furiously| +33193|329426|41933|3|42|61127.22|0.07|0.05|R|F|1993-09-28|1993-12-24|1993-10-13|DELIVER IN PERSON|SHIP|ously. carefully rut| +33193|660193|47733|4|29|33441.64|0.01|0.05|A|F|1993-12-28|1993-11-24|1994-01-19|COLLECT COD|RAIL|ns. blithely pending | +33193|851665|39217|5|15|24249.30|0.08|0.02|R|F|1994-01-21|1993-11-01|1994-01-22|COLLECT COD|FOB|the special packages. | +33194|83301|20805|1|29|37244.70|0.03|0.01|R|F|1993-11-18|1993-12-17|1993-12-05|COLLECT COD|REG AIR|he quickly even accounts nag alo| +33194|37017|12018|2|48|45792.48|0.02|0.04|R|F|1993-12-01|1993-12-26|1993-12-08|NONE|RAIL|uctions are above the blithely even packa| +33194|142840|17845|3|34|64016.56|0.00|0.07|A|F|1993-12-05|1993-12-28|1993-12-08|TAKE BACK RETURN|SHIP|egular packages. blith| +33194|701987|39530|4|18|35801.10|0.02|0.02|A|F|1993-11-22|1993-12-19|1993-12-01|NONE|MAIL| carefully dependencies. blithely| +33195|70168|7672|1|50|56908.00|0.01|0.04|N|O|1998-07-13|1998-07-16|1998-07-29|DELIVER IN PERSON|SHIP| along the quickly unusual excus| +33195|297966|47967|2|32|62846.40|0.00|0.08|N|O|1998-07-05|1998-07-07|1998-07-16|COLLECT COD|RAIL|, special accounts. accounts| +33196|874897|12449|1|1|1871.85|0.07|0.01|N|O|1998-07-03|1998-04-29|1998-07-22|DELIVER IN PERSON|RAIL|oxes affix furiousl| +33196|382842|32843|2|37|71218.71|0.03|0.06|N|O|1998-05-06|1998-05-29|1998-05-16|DELIVER IN PERSON|SHIP|deas. even platele| +33196|415380|15381|3|33|42746.88|0.00|0.00|N|O|1998-06-25|1998-05-16|1998-07-06|DELIVER IN PERSON|MAIL|y ironic instructions. blithely| +33197|815506|28023|1|11|15636.06|0.02|0.03|A|F|1995-04-09|1995-05-21|1995-04-14|DELIVER IN PERSON|REG AIR|ogged, ironic dino| +33197|200303|12808|2|19|22862.51|0.08|0.06|A|F|1995-04-25|1995-05-31|1995-05-08|TAKE BACK RETURN|AIR|erve even, bold deposits| +33197|480853|43363|3|29|53181.07|0.03|0.08|R|F|1995-03-20|1995-04-28|1995-03-24|COLLECT COD|SHIP|ing platelets. c| +33198|959303|46861|1|31|42230.06|0.03|0.06|R|F|1992-12-21|1992-10-13|1992-12-30|NONE|SHIP|ily. fluffily even ideas so| +33198|4895|17396|2|8|14399.12|0.06|0.08|R|F|1992-09-14|1992-12-07|1992-09-30|TAKE BACK RETURN|AIR|ven packages boost furiously. exp| +33198|266051|16052|3|17|17289.68|0.04|0.02|A|F|1992-11-15|1992-11-09|1992-11-23|NONE|MAIL|dolites. idly bold packages are blithe| +33198|517062|4593|4|12|12948.48|0.07|0.07|A|F|1992-10-29|1992-10-28|1992-11-08|TAKE BACK RETURN|AIR|lent requests. | +33198|250089|25100|5|7|7273.49|0.04|0.04|A|F|1992-10-23|1992-12-04|1992-11-10|COLLECT COD|FOB|c, ironic theodolites wake furious| +33199|277414|27415|1|45|62613.00|0.09|0.07|A|F|1994-12-09|1994-11-27|1994-12-26|TAKE BACK RETURN|AIR|ss requests affix slyly. slyly | +33199|496610|21629|2|31|49804.29|0.01|0.08|A|F|1994-12-02|1994-11-19|1994-12-21|NONE|REG AIR|d instructions cajole slyly requests. fu| +33199|511702|49233|3|33|56551.44|0.06|0.01|A|F|1994-11-06|1994-12-10|1994-11-10|TAKE BACK RETURN|MAIL|l pinto beans detect.| +33199|164533|14534|4|25|39938.25|0.10|0.07|R|F|1994-12-07|1994-11-27|1994-12-19|COLLECT COD|FOB|heodolites. fluffily final depende| +33199|298236|48237|5|40|49368.80|0.09|0.08|R|F|1995-01-24|1994-12-05|1995-02-21|TAKE BACK RETURN|REG AIR|eposits integrate carefu| +33199|436315|11332|6|49|61313.21|0.09|0.00|A|F|1994-11-13|1994-11-08|1994-11-20|NONE|SHIP|iet accounts. express, ironic a| +33224|153334|40844|1|45|62429.85|0.07|0.03|N|O|1996-06-07|1996-07-18|1996-06-28|NONE|AIR|inal accounts| +33224|75166|12670|2|25|28529.00|0.08|0.07|N|O|1996-09-05|1996-07-23|1996-09-26|TAKE BACK RETURN|AIR|busily. special pinto beans sleep | +33224|309838|34851|3|28|51738.96|0.08|0.03|N|O|1996-09-10|1996-08-16|1996-09-21|DELIVER IN PERSON|FOB|s. furiously final excuses are ruthles| +33224|434023|9040|4|12|11484.00|0.03|0.07|N|O|1996-07-10|1996-07-10|1996-07-16|NONE|RAIL|ickly busy accounts i| +33224|608894|46431|5|49|88340.14|0.07|0.04|N|O|1996-08-26|1996-08-04|1996-09-09|COLLECT COD|AIR| ruthless, final theodolites above the | +33224|668351|18352|6|5|6596.60|0.09|0.08|N|O|1996-06-01|1996-07-18|1996-06-30|NONE|TRUCK| even requests cajole blithel| +33224|970852|45891|7|2|3845.62|0.05|0.00|N|O|1996-09-06|1996-06-29|1996-09-19|DELIVER IN PERSON|SHIP|gular foxes haggle furiously. express| +33225|94400|6902|1|18|25099.20|0.06|0.01|N|O|1997-01-07|1997-02-15|1997-01-27|DELIVER IN PERSON|FOB|carefully careful pac| +33226|200920|921|1|18|32776.38|0.00|0.03|N|O|1997-03-29|1997-05-02|1997-04-04|DELIVER IN PERSON|RAIL|regular accounts | +33226|856795|31830|2|5|8758.75|0.00|0.01|N|O|1997-05-09|1997-06-04|1997-05-15|TAKE BACK RETURN|RAIL| pinto beans ca| +33226|143608|6111|3|24|39638.40|0.02|0.00|N|O|1997-04-02|1997-04-25|1997-04-09|NONE|TRUCK|ly unusual packages haggle slyly quickl| +33226|607302|19815|4|3|3627.81|0.04|0.05|N|O|1997-03-28|1997-05-12|1997-04-01|NONE|FOB|e the blithely regu| +33227|204600|42113|1|19|28587.21|0.01|0.03|N|O|1998-03-05|1998-03-16|1998-04-02|TAKE BACK RETURN|REG AIR|ly pending pinto bea| +33228|59867|47371|1|48|87689.28|0.10|0.02|R|F|1995-03-22|1995-04-03|1995-04-04|TAKE BACK RETURN|TRUCK|ic theodolites. furiously | +33228|183210|8217|2|17|21984.57|0.10|0.05|R|F|1995-05-14|1995-05-08|1995-06-13|TAKE BACK RETURN|RAIL| regular packages: | +33228|200750|13255|3|4|6602.96|0.00|0.02|R|F|1995-05-01|1995-03-31|1995-05-14|COLLECT COD|FOB|after the blithely| +33229|203065|40578|1|41|39690.05|0.02|0.05|A|F|1992-02-17|1992-03-12|1992-02-29|NONE|TRUCK|y pending requests slee| +33229|908386|8387|2|11|15337.74|0.06|0.07|R|F|1992-04-24|1992-03-21|1992-05-09|NONE|REG AIR|posits wake blithely silent ins| +33229|230893|18406|3|10|18238.80|0.07|0.02|R|F|1992-02-04|1992-04-20|1992-02-11|DELIVER IN PERSON|TRUCK|gular packages. ironi| +33229|609200|9201|4|10|11091.70|0.02|0.02|A|F|1992-04-05|1992-04-17|1992-05-03|COLLECT COD|REG AIR|ake fluffily abov| +33230|747891|47892|1|7|13572.02|0.03|0.01|N|O|1998-07-29|1998-08-03|1998-08-27|TAKE BACK RETURN|TRUCK| above the slyly bold deposits| +33230|787405|24951|2|12|17908.44|0.10|0.03|N|O|1998-07-17|1998-08-08|1998-07-27|COLLECT COD|TRUCK|lar foxes. quickly final pinto| +33230|900691|38246|3|13|21991.45|0.08|0.03|N|O|1998-08-29|1998-07-09|1998-09-04|TAKE BACK RETURN|AIR|s. blithely re| +33231|928676|28677|1|5|8523.15|0.07|0.01|R|F|1992-10-21|1992-11-28|1992-11-08|COLLECT COD|SHIP|ly ironic asymptotes haggle dar| +33231|248882|11387|2|50|91543.50|0.07|0.02|A|F|1992-11-02|1992-11-25|1992-12-01|NONE|REG AIR|eodolites. ironic, ironic| +33231|943535|31090|3|1|1578.49|0.02|0.02|R|F|1993-01-16|1992-12-17|1993-01-21|COLLECT COD|SHIP|al theodolites wake bold escapade| +33231|976413|26414|4|12|17872.44|0.07|0.05|A|F|1992-12-03|1992-11-19|1992-12-06|NONE|TRUCK|ing to the furiously iron| +33256|450443|444|1|3|4180.26|0.02|0.08|R|F|1992-12-27|1992-11-16|1993-01-12|COLLECT COD|FOB|ar foxes nag carefully a| +33256|586694|11717|2|6|10684.02|0.00|0.01|R|F|1992-12-26|1992-10-01|1993-01-15|TAKE BACK RETURN|MAIL|ole carefully. foxes after t| +33256|551941|39475|3|16|31886.72|0.03|0.07|R|F|1992-09-23|1992-11-15|1992-10-11|COLLECT COD|FOB|ges. slyly unusual pack| +33256|469863|19864|4|26|47653.84|0.00|0.02|R|F|1992-09-03|1992-10-09|1992-09-19|NONE|TRUCK| bold requests. ironic, idle f| +33256|973058|35578|5|9|10179.09|0.06|0.01|R|F|1992-10-08|1992-11-09|1992-10-29|DELIVER IN PERSON|MAIL|l packages. f| +33256|176747|26748|6|32|58359.68|0.05|0.05|A|F|1992-11-26|1992-10-27|1992-12-25|TAKE BACK RETURN|RAIL|ously ruthless requests wake. caref| +33257|57717|20219|1|19|31819.49|0.07|0.07|R|F|1992-04-27|1992-05-28|1992-05-19|COLLECT COD|MAIL|ual, special platelets around the p| +33257|40786|40787|2|46|79431.88|0.03|0.08|A|F|1992-05-05|1992-04-21|1992-05-13|COLLECT COD|AIR|ily at the sentiments. final, | +33257|485896|10915|3|21|39519.27|0.10|0.08|A|F|1992-05-23|1992-04-28|1992-05-31|DELIVER IN PERSON|SHIP| beans haggle. e| +33258|659959|34986|1|5|9594.60|0.10|0.00|N|O|1997-12-01|1998-02-02|1997-12-07|COLLECT COD|REG AIR|s use slyly | +33258|922217|9772|2|12|14870.04|0.06|0.03|N|O|1997-12-03|1997-12-09|1998-01-02|DELIVER IN PERSON|TRUCK|st silently; r| +33258|691254|16281|3|12|14942.64|0.01|0.04|N|O|1997-12-02|1997-12-19|1997-12-23|TAKE BACK RETURN|MAIL|owly quick platelets. quickly regular de| +33258|905572|18091|4|46|72566.38|0.10|0.01|N|O|1998-02-12|1997-12-22|1998-02-14|DELIVER IN PERSON|RAIL|pinto beans use car| +33258|942365|17402|5|21|29553.72|0.09|0.04|N|O|1998-01-21|1997-12-31|1998-02-03|COLLECT COD|TRUCK|e slyly acr| +33258|327992|3005|6|19|38379.62|0.06|0.00|N|O|1998-01-20|1998-01-17|1998-02-11|COLLECT COD|SHIP|oldly unusua| +33259|635167|47680|1|32|35268.16|0.04|0.08|A|F|1992-11-27|1992-11-17|1992-12-01|DELIVER IN PERSON|FOB|ic deposits. dogged accounts wake| +33259|245997|33510|2|44|85491.12|0.09|0.03|A|F|1992-12-31|1992-11-17|1993-01-20|TAKE BACK RETURN|REG AIR|fully unusual theodo| +33259|457463|19973|3|18|25567.92|0.10|0.04|A|F|1992-10-28|1992-10-27|1992-11-03|DELIVER IN PERSON|TRUCK|encies boost. ironic requests are f| +33260|339079|39080|1|3|3354.18|0.06|0.01|N|O|1996-11-02|1996-09-26|1996-11-17|NONE|REG AIR|regular foxes haggle quickly. blithely reg| +33261|757140|32171|1|15|17956.65|0.06|0.05|N|O|1998-04-21|1998-02-22|1998-04-28|COLLECT COD|REG AIR|ully even accounts hang fur| +33261|244776|7281|2|36|61947.36|0.04|0.05|N|O|1998-03-18|1998-02-28|1998-04-05|TAKE BACK RETURN|AIR|xcuses cajole carefully even c| +33261|948697|23734|3|22|38404.30|0.00|0.00|N|O|1998-04-27|1998-02-22|1998-05-26|TAKE BACK RETURN|MAIL|e carefully silent pinto beans breach| +33262|360081|10082|1|27|30808.89|0.08|0.07|N|O|1995-08-24|1995-08-25|1995-09-14|DELIVER IN PERSON|FOB|regular accoun| +33262|881022|6057|2|46|46137.08|0.08|0.01|N|O|1995-07-09|1995-09-18|1995-07-12|NONE|SHIP| the pending instructions serve blithely | +33262|334957|47464|3|32|63742.08|0.03|0.07|N|O|1995-08-01|1995-09-17|1995-08-12|NONE|RAIL|busily regul| +33263|996613|21652|1|48|82059.36|0.04|0.07|A|F|1993-09-06|1993-08-10|1993-09-21|DELIVER IN PERSON|MAIL|furiously regular theodolites sublate b| +33263|66303|41306|2|39|49502.70|0.04|0.05|R|F|1993-09-26|1993-08-02|1993-10-26|TAKE BACK RETURN|SHIP|ial instructions. furiously u| +33263|337912|419|3|18|35098.20|0.07|0.05|A|F|1993-08-25|1993-08-16|1993-09-05|DELIVER IN PERSON|AIR|y among the carefully even | +33263|278766|16282|4|6|10468.50|0.02|0.00|A|F|1993-08-29|1993-08-14|1993-09-13|DELIVER IN PERSON|FOB| packages nag blithel| +33263|208960|46473|5|47|87840.65|0.05|0.01|R|F|1993-09-03|1993-07-12|1993-09-23|TAKE BACK RETURN|SHIP|inal dolphins. slyly pend| +33263|987489|9|6|24|37834.56|0.05|0.03|R|F|1993-06-21|1993-07-28|1993-07-08|TAKE BACK RETURN|REG AIR| the carefully| +33263|722097|22098|7|11|12309.66|0.03|0.04|R|F|1993-07-13|1993-07-25|1993-08-05|DELIVER IN PERSON|MAIL|ges are slyly about the regularly express | +33288|281931|19447|1|38|72690.96|0.10|0.03|A|F|1994-05-30|1994-06-19|1994-06-01|COLLECT COD|SHIP|iously final requests. slyly r| +33288|409535|47060|2|7|10111.57|0.04|0.03|R|F|1994-08-02|1994-07-20|1994-08-27|TAKE BACK RETURN|RAIL|ular theodoli| +33288|45398|20399|3|43|57765.77|0.06|0.08|A|F|1994-07-16|1994-07-14|1994-08-01|NONE|FOB| even instruction| +33288|993882|43883|4|40|79033.60|0.09|0.00|R|F|1994-06-21|1994-07-21|1994-06-24|DELIVER IN PERSON|MAIL| dependencies nag blithely final packa| +33289|759330|9331|1|44|61129.20|0.05|0.03|R|F|1995-03-18|1995-02-19|1995-03-19|DELIVER IN PERSON|AIR|s haggle slyly around the slyl| +33290|947696|47697|1|17|29642.05|0.04|0.03|A|F|1992-04-05|1992-06-09|1992-05-05|NONE|TRUCK| use fluffily fu| +33290|913436|38473|2|45|65222.55|0.04|0.06|R|F|1992-06-30|1992-06-08|1992-07-24|TAKE BACK RETURN|RAIL|ve instructions s| +33290|102851|15354|3|42|77861.70|0.00|0.00|R|F|1992-05-21|1992-04-29|1992-06-20|NONE|RAIL|y ironic ideas. dugout| +33290|605890|30915|4|47|84405.42|0.10|0.05|A|F|1992-03-25|1992-04-25|1992-03-31|TAKE BACK RETURN|MAIL|otes according to the | +33290|184474|9481|5|23|35844.81|0.05|0.01|R|F|1992-04-12|1992-04-18|1992-04-19|TAKE BACK RETURN|AIR| requests cajole fluffily accor| +33290|441501|29026|6|5|7212.40|0.04|0.08|R|F|1992-05-16|1992-05-13|1992-06-05|NONE|TRUCK|use after the carefully| +33291|770780|45811|1|5|9253.75|0.05|0.05|N|O|1998-01-08|1997-11-30|1998-01-25|COLLECT COD|RAIL|ent ideas haggle carefully about the speci| +33291|494652|32180|2|32|52692.16|0.10|0.02|N|O|1997-12-26|1997-11-01|1998-01-05|TAKE BACK RETURN|SHIP|lithely unusual deposits cajole b| +33291|602844|15357|3|36|62885.16|0.10|0.07|N|O|1997-10-25|1997-11-23|1997-11-21|NONE|MAIL|yly ironic packages boost slyly final in| +33291|996841|21880|4|26|50382.80|0.01|0.04|N|O|1997-12-24|1997-11-05|1998-01-12|NONE|MAIL|slyly final multipliers. slyly | +33291|902703|2704|5|27|46052.82|0.07|0.03|N|O|1997-10-10|1997-12-09|1997-11-09|COLLECT COD|SHIP|s. pending, brave accounts boost | +33291|714744|39773|6|25|43967.75|0.07|0.02|N|O|1997-12-23|1997-10-15|1998-01-06|TAKE BACK RETURN|AIR|ic requests cajole r| +33292|458478|20988|1|7|10055.15|0.00|0.03|R|F|1992-05-22|1992-04-16|1992-06-02|DELIVER IN PERSON|TRUCK|ar, unusual sheaves.| +33292|626829|1854|2|15|26336.85|0.04|0.07|A|F|1992-02-17|1992-03-31|1992-02-21|TAKE BACK RETURN|SHIP|uests haggle| +33293|670458|20459|1|38|54279.96|0.04|0.01|N|O|1996-07-31|1996-05-27|1996-08-21|NONE|RAIL|ly quickly| +33294|348488|10995|1|4|6145.88|0.03|0.08|N|O|1996-09-12|1996-11-09|1996-09-22|COLLECT COD|AIR|ly. special dependenc| +33294|24862|12363|2|33|58966.38|0.05|0.06|N|O|1996-09-27|1996-11-06|1996-10-27|DELIVER IN PERSON|REG AIR|dolites are ca| +33294|855357|5358|3|22|28870.82|0.02|0.02|N|O|1996-12-05|1996-11-09|1996-12-21|TAKE BACK RETURN|MAIL|. slyly ironic dependencies acr| +33294|980029|5068|4|32|35487.36|0.02|0.04|N|O|1996-09-09|1996-09-26|1996-09-29|DELIVER IN PERSON|REG AIR|al, special packages. final packages| +33294|342535|30054|5|24|37860.48|0.02|0.00|N|O|1996-10-28|1996-11-07|1996-11-01|NONE|TRUCK|ackages are blithely blithely ironic t| +33294|974436|49475|6|4|6041.56|0.10|0.03|N|O|1996-12-11|1996-10-09|1996-12-29|COLLECT COD|TRUCK|efully bold packa| +33295|886365|23917|1|41|55404.12|0.01|0.04|A|F|1995-02-12|1995-02-22|1995-03-14|NONE|SHIP|refully regular theodolites cajole care| +33320|997578|35136|1|13|21781.89|0.09|0.00|R|F|1995-01-31|1995-01-16|1995-02-17|DELIVER IN PERSON|MAIL|g packages haggle daringly. slyly regula| +33321|51209|1210|1|10|11602.00|0.05|0.07|N|O|1996-06-03|1996-04-15|1996-06-29|NONE|FOB|he even instruc| +33321|668943|43970|2|16|30590.56|0.05|0.07|N|O|1996-04-06|1996-03-30|1996-04-30|NONE|FOB|ully silent deposits| +33321|914144|39181|3|25|28952.50|0.07|0.02|N|O|1996-06-19|1996-05-17|1996-06-20|TAKE BACK RETURN|RAIL| deposits | +33322|168865|6375|1|22|42544.92|0.09|0.07|R|F|1994-09-23|1994-09-01|1994-10-15|NONE|AIR|arefully bold accounts are furious| +33322|102167|2168|2|28|32736.48|0.06|0.02|R|F|1994-08-14|1994-10-18|1994-08-17|TAKE BACK RETURN|RAIL|fily unusual packag| +33322|109822|9823|3|50|91591.00|0.05|0.04|R|F|1994-08-10|1994-08-22|1994-08-16|COLLECT COD|MAIL|s. silent, regular requests do haggle.| +33322|774386|24387|4|18|26286.30|0.03|0.06|A|F|1994-11-09|1994-10-05|1994-12-07|TAKE BACK RETURN|REG AIR|s will have to | +33322|95387|45388|5|37|51148.06|0.02|0.02|R|F|1994-09-27|1994-09-20|1994-10-26|COLLECT COD|FOB|inal, pending foxes. s| +33322|164030|14031|6|14|15316.42|0.08|0.00|A|F|1994-09-05|1994-09-03|1994-09-26|DELIVER IN PERSON|FOB|ly. carefully final courts sleep carefully| +33322|836185|23734|7|1|1121.14|0.09|0.03|A|F|1994-10-16|1994-08-22|1994-10-31|TAKE BACK RETURN|TRUCK|the regular, regular pinto beans. final in| +33323|754405|29436|1|43|62752.91|0.00|0.04|A|F|1994-07-29|1994-09-06|1994-08-13|NONE|MAIL|ng gifts wake afte| +33323|283578|21094|2|47|73393.32|0.09|0.06|R|F|1994-08-02|1994-09-02|1994-08-22|TAKE BACK RETURN|RAIL|blithely bold foxes haggle| +33323|81745|44247|3|11|18994.14|0.04|0.08|R|F|1994-08-05|1994-08-26|1994-08-28|DELIVER IN PERSON|MAIL|age carefully dependencies. expr| +33323|884430|9465|4|3|4243.17|0.04|0.08|A|F|1994-10-18|1994-07-24|1994-10-31|NONE|FOB| furiously even request| +33323|601518|26543|5|11|15614.28|0.02|0.07|R|F|1994-06-21|1994-08-15|1994-06-29|NONE|FOB|ans detect carefully acros| +33324|770543|33059|1|47|75834.97|0.03|0.04|R|F|1993-07-18|1993-07-22|1993-08-06|NONE|AIR|ages. quickly final pinto beans wake| +33324|513824|13825|2|3|5513.40|0.02|0.03|A|F|1993-07-23|1993-07-13|1993-08-16|TAKE BACK RETURN|FOB| boost fluffil| +33324|827670|27671|3|15|23964.45|0.08|0.05|R|F|1993-08-25|1993-06-23|1993-09-12|TAKE BACK RETURN|RAIL|gle permanent packages. s| +33324|638944|38945|4|23|43306.93|0.04|0.02|A|F|1993-09-05|1993-07-16|1993-09-16|DELIVER IN PERSON|MAIL|iments nag slyly. ironic ideas | +33324|723651|36166|5|3|5023.86|0.09|0.07|A|F|1993-05-16|1993-07-12|1993-05-30|DELIVER IN PERSON|SHIP| beans. regular theodolites after the f| +33325|543753|6264|1|30|53901.90|0.09|0.04|N|O|1995-08-22|1995-07-27|1995-09-04|DELIVER IN PERSON|TRUCK|the quickly regular deposits haggle| +33325|840647|3164|2|8|12700.80|0.06|0.01|N|O|1995-08-07|1995-07-10|1995-08-09|TAKE BACK RETURN|AIR|riously dolphins! spec| +33325|744930|19959|3|1|1974.90|0.07|0.08|N|O|1995-07-30|1995-07-07|1995-08-18|COLLECT COD|MAIL| theodolites sleep fluffily near the blit| +33325|36639|36640|4|31|48844.53|0.07|0.06|N|F|1995-05-31|1995-07-15|1995-06-22|NONE|REG AIR|s cajole deposit| +33325|779031|16577|5|35|38850.00|0.08|0.05|R|F|1995-05-30|1995-06-28|1995-06-17|NONE|AIR|deposits. carefully special instructions | +33325|169541|19542|6|46|74084.84|0.04|0.06|N|O|1995-08-02|1995-07-27|1995-08-08|DELIVER IN PERSON|TRUCK|wake among the fluffily final pac| +33325|463308|13309|7|16|20340.48|0.08|0.03|N|O|1995-07-26|1995-06-23|1995-08-19|TAKE BACK RETURN|AIR|osits. bold, final pinto beans are n| +33326|808443|33476|1|43|58110.20|0.04|0.05|A|F|1994-03-27|1994-04-11|1994-04-04|TAKE BACK RETURN|TRUCK|ckages unwind carefully against the s| +33326|484745|22273|2|42|72648.24|0.03|0.03|A|F|1994-03-31|1994-03-05|1994-04-05|TAKE BACK RETURN|SHIP|thely final depe| +33327|29982|29983|1|13|24855.74|0.10|0.00|R|F|1994-08-28|1994-08-09|1994-09-03|TAKE BACK RETURN|RAIL|lites detect furiously abou| +33327|892129|42130|2|42|47085.36|0.09|0.05|R|F|1994-08-11|1994-07-11|1994-08-28|TAKE BACK RETURN|RAIL|sits. doggedly ironic pin| +33327|8805|33806|3|23|39417.40|0.07|0.06|A|F|1994-06-02|1994-06-28|1994-06-20|DELIVER IN PERSON|FOB|uriously ironic accounts. i| +33327|970041|20042|4|27|29997.00|0.08|0.06|R|F|1994-07-04|1994-06-24|1994-08-03|COLLECT COD|SHIP|ught to sleep silently abo| +33327|476846|1865|5|20|36456.40|0.05|0.08|A|F|1994-08-11|1994-07-13|1994-08-29|TAKE BACK RETURN|SHIP|d instructions wake furious| +33327|340218|2725|6|30|37746.00|0.05|0.01|R|F|1994-07-14|1994-08-01|1994-08-11|DELIVER IN PERSON|RAIL|cies. bold, perm| +33327|42875|30376|7|42|76350.54|0.09|0.02|A|F|1994-08-08|1994-07-20|1994-08-21|TAKE BACK RETURN|SHIP|ng pinto bea| +33352|583625|21159|1|36|61509.60|0.05|0.08|R|F|1993-03-03|1993-03-05|1993-03-30|DELIVER IN PERSON|FOB|osits play near the requests. even f| +33352|971190|33710|2|43|54229.45|0.09|0.02|R|F|1993-05-15|1993-02-22|1993-06-08|DELIVER IN PERSON|MAIL|ding to the ironic| +33352|787966|482|3|29|59563.97|0.06|0.02|R|F|1993-02-22|1993-03-03|1993-02-27|TAKE BACK RETURN|TRUCK|tions: slyly pending accounts nag sl| +33352|334808|22327|4|46|84768.34|0.09|0.05|A|F|1993-02-18|1993-03-19|1993-02-28|DELIVER IN PERSON|MAIL|ently. bravely express ideas cajole furious| +33352|105887|43394|5|33|62465.04|0.01|0.03|A|F|1993-04-21|1993-03-03|1993-05-17|COLLECT COD|RAIL|ven deposits; furious| +33353|99557|49558|1|1|1556.55|0.05|0.06|N|O|1998-04-29|1998-06-21|1998-05-21|DELIVER IN PERSON|FOB|the carefully even theodolites. s| +33354|725979|38494|1|37|74182.78|0.02|0.06|N|O|1997-02-20|1997-01-02|1997-03-08|COLLECT COD|TRUCK|asymptotes. special deposits promi| +33354|514711|27222|2|40|69027.60|0.02|0.08|N|O|1997-01-01|1996-12-28|1997-01-19|NONE|REG AIR| dependencies. regular, even instruction| +33354|742170|29713|3|25|30303.50|0.10|0.01|N|O|1996-12-13|1997-01-16|1996-12-31|TAKE BACK RETURN|TRUCK|sly ironic inst| +33354|650288|289|4|27|33432.75|0.08|0.06|N|O|1997-02-21|1997-01-25|1997-03-13|COLLECT COD|SHIP| slyly. furiously final| +33354|384814|47322|5|45|85446.00|0.09|0.04|N|O|1997-01-30|1997-01-05|1997-02-11|COLLECT COD|FOB|gle carefully blithe| +33354|561658|49192|6|4|6878.52|0.08|0.02|N|O|1997-02-05|1996-12-09|1997-02-07|NONE|MAIL|pinto beans| +33354|778257|15803|7|20|26704.40|0.01|0.06|N|O|1996-12-16|1997-01-04|1996-12-31|NONE|TRUCK|refully expre| +33355|153240|15744|1|31|40090.44|0.06|0.01|N|O|1997-12-07|1997-12-06|1997-12-11|DELIVER IN PERSON|REG AIR|ses. express requests a| +33355|495562|33090|2|13|20248.02|0.08|0.00|N|O|1997-12-19|1997-12-22|1998-01-13|TAKE BACK RETURN|REG AIR|s. regular, express| +33355|906519|19038|3|35|53391.45|0.05|0.01|N|O|1997-11-22|1998-01-01|1997-11-28|NONE|REG AIR|ar packages integrate | +33355|856239|31274|4|5|5975.95|0.08|0.04|N|O|1997-12-14|1997-12-14|1997-12-18|NONE|TRUCK|cies wake ironic deposits. idle, regular | +33355|794117|6633|5|8|9688.64|0.03|0.05|N|O|1997-12-09|1997-12-01|1997-12-29|TAKE BACK RETURN|RAIL| ironic accounts cajole slyly ir| +33356|32464|19965|1|13|18153.98|0.07|0.08|N|O|1998-07-25|1998-07-30|1998-08-02|COLLECT COD|REG AIR|s. theodolites poach fluf| +33356|622330|9867|2|27|33812.10|0.05|0.03|N|O|1998-08-11|1998-09-01|1998-08-21|DELIVER IN PERSON|REG AIR|ular deposits wake a| +33357|477280|39790|1|23|28916.98|0.02|0.03|R|F|1994-10-26|1994-11-21|1994-11-24|TAKE BACK RETURN|MAIL|ajole slyly? slyly i| +33357|641532|29069|2|36|53046.00|0.00|0.05|A|F|1994-09-27|1994-10-21|1994-10-10|COLLECT COD|AIR|pinto beans. quickly final excuses| +33357|223887|48896|3|2|3621.74|0.04|0.07|A|F|1994-10-09|1994-10-27|1994-10-28|TAKE BACK RETURN|RAIL|ar instructions wake furiously furio| +33357|855964|18482|4|15|28798.80|0.00|0.04|R|F|1994-11-29|1994-10-19|1994-12-14|COLLECT COD|REG AIR|pending deposits are according to the bold | +33358|592889|42890|1|37|73328.82|0.05|0.00|N|O|1998-09-30|1998-09-02|1998-10-02|COLLECT COD|AIR| pinto beans. packages wake carefully| +33358|681831|6858|2|7|12689.60|0.05|0.05|N|O|1998-10-10|1998-09-13|1998-11-03|NONE|TRUCK|y final foxes wake quickly| +33358|530334|5355|3|3|4092.93|0.09|0.03|N|O|1998-10-06|1998-09-16|1998-10-14|COLLECT COD|AIR| blithely special | +33358|318495|18496|4|45|68106.60|0.01|0.08|N|O|1998-08-29|1998-09-03|1998-09-12|DELIVER IN PERSON|TRUCK|old foxes cajole blithely among the | +33359|941788|16825|1|35|64040.90|0.04|0.00|N|O|1996-01-20|1995-11-25|1996-02-02|NONE|RAIL|riously. blithely re| +33359|617017|29530|2|12|11207.76|0.06|0.05|N|O|1995-12-06|1995-12-22|1995-12-26|TAKE BACK RETURN|SHIP|uriously unusual t| +33359|201883|1884|3|28|49976.36|0.10|0.06|N|O|1995-10-15|1995-11-25|1995-10-24|COLLECT COD|TRUCK|carefully special requ| +33359|40177|15178|4|31|34632.27|0.06|0.06|N|O|1995-12-26|1995-11-26|1996-01-06|COLLECT COD|AIR|ven packages. slyly express ac| +33384|60217|47721|1|24|28253.04|0.03|0.05|R|F|1994-09-05|1994-06-25|1994-09-22|NONE|AIR|usual, even instructions haggle blith| +33384|66292|3796|2|40|50331.60|0.02|0.01|A|F|1994-05-19|1994-06-10|1994-06-07|NONE|REG AIR|xpress accounts affix.| +33384|156098|43608|3|31|35776.79|0.07|0.04|R|F|1994-08-11|1994-06-13|1994-08-29|DELIVER IN PERSON|AIR|ross the final requests. bold, even req| +33384|524409|11940|4|48|68802.24|0.00|0.06|A|F|1994-06-13|1994-06-23|1994-06-16|TAKE BACK RETURN|RAIL| sleep about the furiou| +33384|741720|41721|5|16|28187.04|0.01|0.00|R|F|1994-05-19|1994-08-04|1994-05-20|DELIVER IN PERSON|TRUCK|ular requests. instructions ar| +33384|86274|11277|6|18|22684.86|0.08|0.07|A|F|1994-09-05|1994-06-10|1994-09-29|TAKE BACK RETURN|MAIL|ffily. car| +33384|6405|18906|7|26|34096.40|0.05|0.02|R|F|1994-05-23|1994-07-10|1994-06-16|DELIVER IN PERSON|TRUCK| nag quickly. forges lose slyly across the| +33385|641074|16099|1|7|7105.28|0.01|0.08|N|O|1997-02-17|1997-02-18|1997-03-05|NONE|SHIP|s. dogged, express platele| +33385|516056|41077|2|14|15008.42|0.00|0.02|N|O|1997-01-19|1997-03-11|1997-01-24|TAKE BACK RETURN|RAIL|sy courts haggle fluffily regu| +33386|603374|15887|1|14|17882.76|0.09|0.05|R|F|1993-04-02|1993-02-05|1993-04-13|DELIVER IN PERSON|SHIP|old foxes boost blithely pending accounts. | +33386|898468|36020|2|38|55723.96|0.02|0.01|R|F|1992-12-23|1993-01-21|1993-01-10|DELIVER IN PERSON|TRUCK|y express fo| +33386|536021|36022|3|5|5285.00|0.02|0.04|R|F|1993-02-19|1993-01-20|1993-03-18|DELIVER IN PERSON|MAIL|against the slyly final deposits. furiousl| +33387|135676|10681|1|21|35945.07|0.03|0.06|A|F|1992-05-13|1992-03-28|1992-06-02|COLLECT COD|SHIP|sual requests across the furiously ironi| +33387|296763|34279|2|8|14078.00|0.08|0.03|A|F|1992-02-02|1992-02-17|1992-02-05|COLLECT COD|TRUCK|, ironic deposits sublate furiously e| +33388|334403|9416|1|13|18686.07|0.04|0.02|R|F|1993-01-18|1993-01-22|1993-02-15|DELIVER IN PERSON|TRUCK|osits haggle across the bold, daring exc| +33388|303239|3240|2|20|24844.40|0.02|0.06|A|F|1993-03-10|1993-02-07|1993-03-24|NONE|MAIL|sits. dogged dol| +33388|521785|9316|3|30|54202.80|0.07|0.06|A|F|1993-01-20|1992-12-30|1993-01-27|TAKE BACK RETURN|FOB|ays impress fu| +33388|638142|655|4|36|38883.96|0.08|0.03|R|F|1993-02-08|1993-01-19|1993-03-09|COLLECT COD|FOB| blithely. slyly regular excuse| +33388|239490|27003|5|43|61467.64|0.04|0.07|A|F|1993-01-28|1993-02-09|1993-02-17|DELIVER IN PERSON|RAIL|lithely silent ideas wake sl| +33389|810360|10361|1|50|63516.00|0.00|0.03|R|F|1993-05-05|1993-06-04|1993-05-07|COLLECT COD|FOB|ust sleep sometimes about the furious| +33389|708568|46111|2|12|18918.36|0.03|0.02|R|F|1993-05-23|1993-05-15|1993-06-13|DELIVER IN PERSON|RAIL|sly pending instructions mold ca| +33389|897377|34929|3|25|34358.25|0.08|0.00|R|F|1993-06-21|1993-06-03|1993-07-08|DELIVER IN PERSON|AIR|y ironic dolphin| +33389|208738|21243|4|1|1646.72|0.03|0.04|A|F|1993-04-16|1993-05-15|1993-05-15|TAKE BACK RETURN|FOB|al instructions-- packages boost furiously| +33389|254233|41749|5|4|4748.88|0.06|0.05|R|F|1993-06-04|1993-06-05|1993-06-14|COLLECT COD|TRUCK|y. final, silent ideas along the foxes pl| +33390|710106|10107|1|1|1116.07|0.00|0.07|N|O|1997-04-16|1997-04-28|1997-04-25|TAKE BACK RETURN|FOB| express accou| +33390|745480|20509|2|48|73221.60|0.04|0.03|N|O|1997-05-10|1997-06-10|1997-05-25|NONE|SHIP|s deposits. carefully even asym| +33390|272412|9928|3|31|42916.40|0.05|0.02|N|O|1997-07-01|1997-05-21|1997-07-11|COLLECT COD|RAIL|he blithely special dependencies.| +33390|418214|18215|4|27|30569.13|0.07|0.04|N|O|1997-04-04|1997-05-12|1997-04-22|TAKE BACK RETURN|MAIL|he ironic accounts| +33391|717184|42213|1|30|36034.50|0.02|0.04|A|F|1995-01-29|1995-02-22|1995-02-12|NONE|REG AIR| silent packages haggle quickly ac| +33391|699625|49626|2|38|61734.42|0.01|0.01|A|F|1995-03-09|1995-02-08|1995-04-08|TAKE BACK RETURN|TRUCK|y final requests. | +33391|581993|31994|3|23|47724.31|0.04|0.04|A|F|1994-12-27|1995-03-09|1995-01-01|NONE|RAIL|ts along the theodolites sl| +33391|539844|27375|4|1|1883.82|0.00|0.07|A|F|1995-01-27|1995-02-16|1995-02-13|DELIVER IN PERSON|FOB|uts affix slyly unusual| +33391|155902|18406|5|41|80273.90|0.00|0.01|R|F|1995-01-29|1995-02-06|1995-02-11|TAKE BACK RETURN|RAIL|ests use around the ironic att| +33391|236567|24080|6|20|30071.00|0.05|0.07|R|F|1994-12-16|1995-02-08|1995-01-14|TAKE BACK RETURN|MAIL|ickly sile| +33391|979997|42517|7|46|95539.70|0.02|0.07|R|F|1994-12-26|1995-01-29|1994-12-27|COLLECT COD|MAIL|final asymptotes? blithely regular pack| +33416|801631|39180|1|26|39847.34|0.04|0.03|N|O|1997-05-03|1997-04-10|1997-05-10|NONE|FOB|ole final accounts. special accounts mainta| +33416|3284|3285|2|34|40367.52|0.08|0.00|N|O|1997-02-25|1997-05-19|1997-03-02|DELIVER IN PERSON|SHIP| the ironic, bold packages | +33416|190171|2675|3|18|22701.06|0.00|0.05|N|O|1997-04-18|1997-04-02|1997-04-23|DELIVER IN PERSON|MAIL|ic dependencies above the blithely final | +33417|426210|13735|1|35|39766.65|0.07|0.07|R|F|1994-05-29|1994-06-06|1994-06-18|COLLECT COD|TRUCK|g to the even dependencies.| +33417|306648|6649|2|44|72803.72|0.09|0.03|A|F|1994-04-29|1994-05-09|1994-05-10|COLLECT COD|MAIL|aggle about the furiou| +33418|539919|39920|1|14|27424.46|0.00|0.07|N|O|1996-05-18|1996-04-06|1996-06-09|TAKE BACK RETURN|REG AIR|the carefully final ideas. | +33418|404177|4178|2|6|6486.90|0.03|0.00|N|O|1996-06-07|1996-04-16|1996-06-22|COLLECT COD|REG AIR|uffily final accounts. final pinto bean| +33418|987625|12664|3|32|54802.56|0.00|0.07|N|O|1996-05-04|1996-04-13|1996-05-30|COLLECT COD|AIR|yly regular dependencies. bravely do| +33418|6466|6467|4|4|5489.84|0.06|0.02|N|O|1996-06-05|1996-04-13|1996-06-26|DELIVER IN PERSON|AIR|oss the silently express plat| +33419|627905|15442|1|5|9164.35|0.00|0.02|R|F|1992-05-24|1992-04-29|1992-06-22|DELIVER IN PERSON|MAIL|tions nag. asymptotes nag furiou| +33419|196859|9363|2|14|27381.90|0.04|0.08|A|F|1992-02-11|1992-03-30|1992-02-15|NONE|MAIL|pinto beans nod above the blithely unusual| +33419|608797|8798|3|19|32409.44|0.07|0.07|A|F|1992-05-14|1992-04-12|1992-05-31|COLLECT COD|FOB|kages. furiously unusual theodolites ar| +33419|36561|11562|4|39|58404.84|0.00|0.05|R|F|1992-05-18|1992-04-10|1992-05-30|NONE|FOB| the expres| +33419|473562|48581|5|32|49137.28|0.03|0.06|R|F|1992-04-24|1992-04-07|1992-05-13|TAKE BACK RETURN|AIR|onic theodolites haggle| +33419|140327|2830|6|7|9571.24|0.04|0.02|A|F|1992-04-14|1992-04-12|1992-04-18|TAKE BACK RETURN|RAIL|ironic requests. stealthily special account| +33419|473145|10673|7|46|51433.52|0.07|0.06|A|F|1992-03-22|1992-04-05|1992-04-10|NONE|REG AIR|ep even request| +33420|131837|44340|1|24|44851.92|0.01|0.00|N|O|1995-07-19|1995-06-09|1995-08-12|TAKE BACK RETURN|REG AIR|patterns sleep carefully silent, ev| +33420|778476|28477|2|11|17098.84|0.06|0.03|R|F|1995-04-23|1995-06-08|1995-04-24|DELIVER IN PERSON|RAIL|are quickly quickly pend| +33420|832627|20176|3|21|32751.18|0.00|0.03|R|F|1995-05-12|1995-05-29|1995-06-03|DELIVER IN PERSON|REG AIR|quests: blithely final packages | +33420|961289|11290|4|45|60760.80|0.08|0.04|A|F|1995-05-24|1995-05-28|1995-06-12|DELIVER IN PERSON|TRUCK|p daringly according to the ironic, final | +33420|369827|32335|5|50|94840.50|0.09|0.04|R|F|1995-04-06|1995-06-20|1995-04-10|COLLECT COD|AIR|l pinto beans haggle| +33420|666809|16810|6|40|71030.80|0.02|0.05|N|F|1995-06-05|1995-05-06|1995-07-03|DELIVER IN PERSON|AIR|old foxes about the pac| +33420|57140|44644|7|13|14262.82|0.08|0.08|A|F|1995-05-06|1995-06-20|1995-06-01|NONE|FOB| integrate about the blithely regular warho| +33421|349448|36967|1|18|26953.74|0.04|0.01|R|F|1994-02-27|1993-12-18|1994-03-21|COLLECT COD|RAIL|as. even, final co| +33421|163603|38610|2|5|8333.00|0.08|0.05|R|F|1994-01-07|1993-12-25|1994-01-14|TAKE BACK RETURN|AIR|uriously fi| +33421|665212|2752|3|31|36492.58|0.00|0.00|A|F|1994-02-07|1994-02-06|1994-02-22|DELIVER IN PERSON|AIR|ccounts boost furiously abo| +33421|203717|3718|4|36|58345.20|0.07|0.07|A|F|1994-02-06|1993-12-21|1994-02-20|COLLECT COD|SHIP|ing to the blithely unusual packages| +33422|495372|7882|1|4|5469.40|0.05|0.03|R|F|1993-09-19|1993-08-24|1993-10-10|TAKE BACK RETURN|TRUCK|ld packages. furiously exp| +33422|706982|44525|2|24|47734.80|0.08|0.01|A|F|1993-08-17|1993-08-29|1993-09-08|NONE|FOB| x-ray after the notornis. blithe, stea| +33422|235379|22892|3|28|36802.08|0.02|0.07|A|F|1993-10-07|1993-08-20|1993-10-18|DELIVER IN PERSON|SHIP|elets detect fluffily| +33422|4324|29325|4|12|14739.84|0.04|0.00|R|F|1993-09-15|1993-07-22|1993-09-21|DELIVER IN PERSON|MAIL|sleep after the accounts. requests nag care| +33423|77552|27553|1|13|19884.15|0.00|0.06|N|O|1997-11-14|1997-10-09|1997-12-02|NONE|FOB|ngside of the blithely pending deposits | +33423|415957|3482|2|41|76790.13|0.07|0.03|N|O|1997-10-08|1997-09-08|1997-10-28|COLLECT COD|FOB|ests are furiously | +33423|987833|37834|3|50|96039.50|0.02|0.02|N|O|1997-08-13|1997-10-13|1997-09-02|TAKE BACK RETURN|AIR|ccounts boost fluffily above the ru| +33423|504008|41539|4|34|34407.32|0.05|0.00|N|O|1997-09-10|1997-09-24|1997-09-28|NONE|REG AIR|onic instructions. furious| +33423|848291|48292|5|33|40895.25|0.06|0.05|N|O|1997-09-15|1997-08-31|1997-09-22|COLLECT COD|FOB|ites cajole quickly slyly final | +33423|220229|45238|6|7|8044.47|0.06|0.00|N|O|1997-10-24|1997-08-19|1997-11-13|NONE|SHIP| the slyly ironic| +33423|379309|16831|7|45|62473.05|0.08|0.07|N|O|1997-07-20|1997-10-14|1997-07-28|DELIVER IN PERSON|FOB| furiously final packages cajole.| +33448|44167|31668|1|30|33334.80|0.01|0.00|N|O|1996-06-06|1996-07-19|1996-06-26|COLLECT COD|MAIL|ngside of the blithely special packa| +33449|153183|28190|1|5|6180.90|0.08|0.03|N|O|1997-04-07|1997-03-15|1997-04-27|DELIVER IN PERSON|MAIL|ely even pinto beans boost qui| +33449|543931|6442|2|8|15799.28|0.03|0.01|N|O|1997-01-03|1997-02-16|1997-01-08|COLLECT COD|AIR|ns cajole doggedly; closel| +33450|736445|48960|1|44|65182.04|0.06|0.02|N|O|1998-01-09|1998-02-22|1998-02-03|TAKE BACK RETURN|MAIL|final dependencies. slyly | +33451|750645|13161|1|14|23738.54|0.02|0.08|N|O|1997-01-21|1997-02-27|1997-02-14|DELIVER IN PERSON|AIR|ven braids cajole blithely. thinly speci| +33451|80942|30943|2|13|24998.22|0.05|0.00|N|O|1997-01-22|1997-02-04|1997-01-30|DELIVER IN PERSON|SHIP|ter the slyly ironic requests! fl| +33451|388279|38280|3|8|10938.08|0.10|0.01|N|O|1997-01-17|1997-03-06|1997-01-24|NONE|MAIL| ironic requests. regular, fin| +33451|788906|13937|4|1|1994.87|0.09|0.06|N|O|1997-01-06|1997-01-25|1997-01-12|COLLECT COD|MAIL|n excuses cajole among the | +33451|137507|37508|5|49|75680.50|0.08|0.05|N|O|1996-12-29|1997-02-23|1997-01-06|TAKE BACK RETURN|FOB|s the even ideas cajole slyly bol| +33452|220797|8310|1|7|12024.46|0.03|0.07|N|O|1997-10-26|1997-10-03|1997-11-12|DELIVER IN PERSON|TRUCK|luffy platelets against| +33452|927417|2454|2|49|70774.13|0.09|0.01|N|O|1997-10-22|1997-10-05|1997-11-19|COLLECT COD|SHIP|onic accoun| +33452|93399|5901|3|1|1392.39|0.01|0.01|N|O|1997-09-18|1997-09-19|1997-09-22|COLLECT COD|REG AIR|nal, regular accounts a| +33453|973405|48444|1|3|4435.08|0.06|0.00|N|O|1997-01-28|1997-02-12|1997-02-04|TAKE BACK RETURN|MAIL|ar depths mold furiously. bold | +33453|7220|32221|2|39|43961.58|0.01|0.00|N|O|1997-03-16|1997-01-23|1997-03-30|NONE|TRUCK|lithely. quickly even frays boost slyly | +33453|333933|46440|3|21|41305.32|0.06|0.02|N|O|1997-02-14|1997-01-14|1997-03-06|DELIVER IN PERSON|TRUCK| regular forges. | +33453|399435|36957|4|23|35291.66|0.03|0.01|N|O|1997-02-11|1997-01-24|1997-03-02|TAKE BACK RETURN|MAIL|t accounts. blithely unusual request| +33453|298766|36282|5|31|54707.25|0.02|0.05|N|O|1997-02-02|1997-01-10|1997-02-23|TAKE BACK RETURN|MAIL|ounts alongside of the final | +33454|655625|43165|1|17|26870.03|0.01|0.07|N|O|1996-03-30|1996-05-31|1996-04-12|COLLECT COD|SHIP|structions will c| +33454|82034|44536|2|43|43689.29|0.09|0.02|N|O|1996-07-14|1996-04-27|1996-07-27|NONE|RAIL|fully final dinos engage alongside of t| +33454|734712|47227|3|30|52400.40|0.10|0.06|N|O|1996-05-03|1996-05-16|1996-05-18|DELIVER IN PERSON|REG AIR|l dolphins sleep arou| +33454|304191|4192|4|6|7171.08|0.01|0.01|N|O|1996-05-13|1996-05-29|1996-05-29|TAKE BACK RETURN|FOB|ickly blithe| +33455|404122|4123|1|42|43096.20|0.06|0.07|A|F|1994-04-01|1994-03-24|1994-04-27|TAKE BACK RETURN|RAIL|ns nag furiously within the carefully u| +33455|69944|19945|2|4|7655.76|0.00|0.00|R|F|1994-05-30|1994-04-28|1994-06-29|TAKE BACK RETURN|MAIL|ial theodolites among t| +33455|543117|5628|3|1|1160.09|0.05|0.00|A|F|1994-04-12|1994-03-14|1994-04-13|NONE|MAIL|es wake furiously stealthy| +33455|161018|11019|4|21|22659.21|0.01|0.07|R|F|1994-02-22|1994-04-17|1994-03-12|TAKE BACK RETURN|FOB|ar pinto beans. even, express foxes| +33455|225364|37869|5|10|12893.50|0.03|0.06|R|F|1994-02-05|1994-04-08|1994-02-07|DELIVER IN PERSON|SHIP|equests. furiously iron| +33455|682131|32132|6|32|35619.20|0.03|0.07|R|F|1994-04-08|1994-03-22|1994-04-12|NONE|SHIP|ngside of th| +33455|568512|6046|7|15|23707.35|0.01|0.02|A|F|1994-06-03|1994-03-31|1994-06-13|NONE|REG AIR|quietly alongside of the furiously bol| +33480|980385|42905|1|7|10257.38|0.02|0.04|N|O|1997-07-19|1997-08-22|1997-08-16|NONE|MAIL|uickly carefully even courts. s| +33480|326420|26421|2|17|24588.97|0.09|0.02|N|O|1997-07-04|1997-08-23|1997-07-11|TAKE BACK RETURN|FOB|ly bold somas. regul| +33480|136495|11500|3|27|41350.23|0.05|0.06|N|O|1997-08-14|1997-08-21|1997-09-05|COLLECT COD|FOB|uffily special foxes nag across the doggedl| +33480|58048|20550|4|30|30181.20|0.03|0.06|N|O|1997-09-29|1997-08-05|1997-10-20|NONE|TRUCK|y about the special, bold pac| +33480|604231|4232|5|45|51084.00|0.03|0.08|N|O|1997-07-02|1997-08-27|1997-07-23|TAKE BACK RETURN|SHIP|capades after the furiously even courts b| +33480|306438|31451|6|37|53443.54|0.09|0.06|N|O|1997-08-27|1997-09-14|1997-09-23|NONE|RAIL|elets. quickly express ideas b| +33480|290179|2685|7|32|37413.12|0.08|0.08|N|O|1997-10-12|1997-08-21|1997-11-05|TAKE BACK RETURN|REG AIR|ar packages use permanently furiously | +33481|25656|25657|1|20|31633.00|0.05|0.03|A|F|1992-12-24|1993-01-26|1992-12-26|DELIVER IN PERSON|RAIL|c orbits n| +33481|188610|38611|2|38|64547.18|0.02|0.06|R|F|1993-02-19|1993-01-25|1993-03-02|NONE|FOB| packages. instructions wake fluffily bl| +33481|965119|27639|3|28|33153.96|0.03|0.05|R|F|1992-12-10|1992-12-19|1993-01-08|COLLECT COD|SHIP|fix carefully. carefully f| +33481|748797|23826|4|34|62755.84|0.04|0.08|A|F|1992-11-13|1993-02-07|1992-11-24|NONE|SHIP|e even packages. bold, ironic plate| +33482|845668|20701|1|41|66158.42|0.05|0.07|N|O|1996-12-27|1996-11-21|1997-01-25|DELIVER IN PERSON|MAIL|even instructions according to the blit| +33482|130824|43327|2|36|66773.52|0.06|0.08|N|O|1996-12-08|1996-11-07|1996-12-27|NONE|RAIL|ully even deposits doze blithely afte| +33482|747459|35002|3|40|60256.80|0.08|0.03|N|O|1996-10-14|1996-12-26|1996-10-30|TAKE BACK RETURN|FOB|ously slyly fin| +33483|439057|1566|1|14|13944.42|0.04|0.07|N|O|1997-08-07|1997-06-24|1997-08-23|TAKE BACK RETURN|AIR|ns haggle fluffily asymptotes. ruthl| +33483|230791|5800|2|18|30992.04|0.03|0.04|N|O|1997-07-04|1997-06-19|1997-07-28|TAKE BACK RETURN|SHIP|e slyly pending foxe| +33483|901173|13692|3|50|58706.50|0.06|0.00|N|O|1997-08-10|1997-07-08|1997-08-22|TAKE BACK RETURN|REG AIR|eodolites. pinto beans a| +33483|1396|1397|4|48|62274.72|0.08|0.06|N|O|1997-04-23|1997-05-18|1997-05-16|TAKE BACK RETURN|MAIL|ly regular accounts. furious| +33484|134580|9585|1|34|54895.72|0.05|0.00|N|O|1998-01-24|1997-11-03|1998-02-13|TAKE BACK RETURN|TRUCK|al realms atop the careful| +33484|883648|21200|2|4|6526.40|0.02|0.03|N|O|1997-11-11|1997-12-01|1997-11-16|COLLECT COD|SHIP|lyly final instructions. quickly regu| +33484|468730|43749|3|1|1698.71|0.06|0.02|N|O|1997-11-28|1997-12-01|1997-12-22|DELIVER IN PERSON|MAIL|ar excuses x-r| +33485|371746|21747|1|34|61802.82|0.00|0.05|R|F|1994-03-14|1994-01-14|1994-04-09|COLLECT COD|TRUCK|arefully around| +33485|926133|1170|2|44|50999.96|0.01|0.00|R|F|1994-02-20|1994-01-02|1994-03-15|NONE|REG AIR|uickly final packages. the| +33485|509181|34202|3|12|14281.92|0.03|0.07|A|F|1994-01-04|1994-02-21|1994-01-30|COLLECT COD|AIR|s the theodolites; slyly expres| +33485|792476|4992|4|15|23526.60|0.03|0.05|R|F|1994-03-01|1994-02-09|1994-03-12|COLLECT COD|FOB|cross the special packages sleep slyly amo| +33485|134775|34776|5|23|41624.71|0.10|0.07|R|F|1993-12-24|1994-02-22|1994-01-04|DELIVER IN PERSON|TRUCK|ites use above the speci| +33486|936778|24333|1|5|9073.65|0.03|0.04|A|F|1995-02-15|1994-12-28|1995-02-22|COLLECT COD|SHIP| of the asymptotes. blithely unusual esc| +33486|412876|401|2|13|23255.05|0.06|0.00|R|F|1994-12-11|1995-01-07|1994-12-29|DELIVER IN PERSON|FOB| careful theodolites| +33486|193117|43118|3|21|25412.31|0.03|0.03|A|F|1994-12-13|1994-12-20|1994-12-19|COLLECT COD|TRUCK|sly bold pinto beans sleep carefully. acco| +33486|710521|23036|4|8|12251.92|0.02|0.02|R|F|1994-11-03|1994-12-14|1994-11-15|NONE|AIR|gle furiously ironic accou| +33487|623027|10564|1|45|42749.55|0.04|0.01|A|F|1993-10-25|1993-08-30|1993-11-04|NONE|SHIP|aintain. regular, even excuses along the fu| +33512|266745|29251|1|24|41081.52|0.10|0.02|N|O|1998-09-10|1998-07-24|1998-09-28|DELIVER IN PERSON|FOB| ironic foxes. slyly ironic requests cajol| +33512|180763|18273|2|17|31343.92|0.10|0.01|N|O|1998-06-14|1998-07-20|1998-06-24|DELIVER IN PERSON|REG AIR|nag furiously against the furi| +33512|68062|18063|3|1|1030.06|0.10|0.06|N|O|1998-09-16|1998-07-24|1998-10-07|DELIVER IN PERSON|SHIP|uickly quickly silent depo| +33513|479603|29604|1|31|49059.98|0.00|0.00|R|F|1994-08-15|1994-09-14|1994-08-26|NONE|RAIL|cording to the quickly regular packages| +33513|683000|20540|2|45|44233.65|0.05|0.08|A|F|1994-08-31|1994-10-16|1994-09-02|TAKE BACK RETURN|RAIL|ithely around the slyly silent requests.| +33513|166225|16226|3|18|23241.96|0.08|0.07|A|F|1994-10-29|1994-10-10|1994-11-24|COLLECT COD|TRUCK|over the regular, regular packages. bl| +33513|736679|49194|4|35|60047.40|0.03|0.01|R|F|1994-11-24|1994-10-21|1994-12-05|DELIVER IN PERSON|FOB|old requests wake furiously. quickl| +33514|402734|27751|1|29|47464.59|0.04|0.07|R|F|1992-08-20|1992-10-21|1992-08-28|COLLECT COD|REG AIR|osely unusual accounts haggle blithely| +33514|736423|23966|2|2|2918.78|0.04|0.06|R|F|1992-07-27|1992-09-10|1992-07-30|COLLECT COD|REG AIR|ole according to the express inst| +33514|44623|7124|3|1|1567.62|0.10|0.07|A|F|1992-08-27|1992-10-02|1992-09-26|COLLECT COD|RAIL|fully regular accounts | +33514|964637|2195|4|4|6806.36|0.09|0.00|R|F|1992-09-08|1992-10-08|1992-09-27|NONE|FOB|ainst the furiously ironic requests. fur| +33514|639348|26885|5|35|45055.85|0.03|0.00|R|F|1992-09-09|1992-09-30|1992-10-06|COLLECT COD|MAIL|dolites. blithely final requests play| +33514|506045|31066|6|7|7357.14|0.07|0.01|A|F|1992-10-21|1992-10-01|1992-11-09|TAKE BACK RETURN|REG AIR|reach quickl| +33515|255693|30704|1|18|29676.24|0.03|0.04|N|O|1997-07-20|1997-06-06|1997-08-17|DELIVER IN PERSON|AIR|tes alongside of the carefully pendi| +33515|417278|4803|2|46|54981.50|0.08|0.05|N|O|1997-05-28|1997-05-19|1997-06-09|DELIVER IN PERSON|SHIP|s use furiously. qui| +33516|804473|42022|1|42|57852.06|0.00|0.07|R|F|1994-12-07|1995-02-01|1995-01-06|DELIVER IN PERSON|TRUCK| dependencies slee| +33516|776812|1843|2|23|43441.94|0.06|0.03|R|F|1994-12-31|1995-02-06|1995-01-13|TAKE BACK RETURN|RAIL|blithely unusual foxes breach fluffily| +33517|996391|33949|1|6|8924.10|0.06|0.04|N|O|1997-04-05|1997-03-08|1997-04-20|COLLECT COD|RAIL|ss epitaphs. carefu| +33517|339738|14751|2|28|49776.16|0.04|0.01|N|O|1997-03-15|1997-03-26|1997-04-12|TAKE BACK RETURN|REG AIR| blithely acros| +33517|962399|12400|3|11|16074.85|0.04|0.04|N|O|1997-02-18|1997-03-23|1997-03-04|DELIVER IN PERSON|TRUCK|ously final deposits. sl| +33517|26576|39077|4|45|67615.65|0.04|0.07|N|O|1997-02-23|1997-03-22|1997-02-27|TAKE BACK RETURN|AIR|y among the regular multipliers. f| +33517|655394|42934|5|22|29685.92|0.01|0.01|N|O|1997-05-01|1997-04-21|1997-05-22|TAKE BACK RETURN|FOB|uickly express pinto | +33517|203559|41072|6|42|61426.68|0.10|0.04|N|O|1997-02-16|1997-04-14|1997-03-16|NONE|REG AIR|the blithely reg| +33518|752698|27729|1|22|38514.52|0.04|0.01|N|O|1998-11-03|1998-10-02|1998-11-12|TAKE BACK RETURN|SHIP|ding deposits. furiously thin dependenc| +33518|580275|17809|2|31|42012.75|0.03|0.02|N|O|1998-11-03|1998-09-19|1998-11-13|TAKE BACK RETURN|FOB| requests hagg| +33518|665277|2817|3|39|48447.36|0.05|0.00|N|O|1998-09-20|1998-09-13|1998-10-05|COLLECT COD|TRUCK|c, express requests. brave foxes nag. iron| +33518|298016|10522|4|18|18252.00|0.01|0.04|N|O|1998-09-10|1998-10-01|1998-09-22|COLLECT COD|RAIL|ully regular ideas. bli| +33519|76041|26042|1|9|9153.36|0.10|0.02|N|O|1995-06-26|1995-08-03|1995-07-19|NONE|SHIP|y even accounts. carefully ironic in| +33519|18333|43334|2|25|31283.25|0.10|0.05|N|O|1995-08-31|1995-07-03|1995-09-04|TAKE BACK RETURN|AIR|ously bold foxe| +33519|107707|45214|3|35|60014.50|0.00|0.03|N|O|1995-07-04|1995-08-20|1995-07-23|TAKE BACK RETURN|RAIL|ual foxes. carefully ironic | +33544|913528|1083|1|36|55493.28|0.07|0.03|A|F|1994-11-18|1994-11-25|1994-11-20|COLLECT COD|RAIL|old deposits wa| +33544|652582|15096|2|33|50640.15|0.05|0.02|R|F|1994-09-27|1994-12-13|1994-10-10|TAKE BACK RETURN|AIR|ajole quickly. quickly | +33545|987287|37288|1|21|28859.04|0.06|0.01|A|F|1992-10-04|1992-12-05|1992-10-18|NONE|SHIP|l requests nag slyly carefully ir| +33545|320890|33397|2|11|21019.68|0.06|0.04|R|F|1992-10-29|1992-11-30|1992-11-13|COLLECT COD|MAIL|egular, special dep| +33545|195347|7851|3|14|20192.76|0.09|0.04|A|F|1993-01-16|1992-10-23|1993-02-05|DELIVER IN PERSON|REG AIR|y special packages are ca| +33545|181799|44303|4|31|58304.49|0.00|0.03|A|F|1992-10-26|1992-11-23|1992-11-06|COLLECT COD|TRUCK|s. busily even accounts are furiously unusu| +33545|495116|32644|5|32|35554.88|0.06|0.07|A|F|1993-01-21|1992-10-24|1993-02-11|NONE|FOB|theodolites| +33545|409546|34563|6|19|27654.88|0.08|0.06|R|F|1992-10-15|1992-12-18|1992-10-31|NONE|TRUCK|s sleep quickly alongside| +33545|230523|30524|7|50|72675.50|0.06|0.06|A|F|1992-10-22|1992-11-25|1992-10-25|DELIVER IN PERSON|RAIL|y regular ac| +33546|388723|13738|1|29|52539.59|0.03|0.05|A|F|1994-01-23|1993-12-20|1994-02-14|NONE|MAIL|slyly ironic deposits boost carefully | +33546|258886|33897|2|36|66415.32|0.02|0.04|R|F|1993-12-31|1993-11-12|1994-01-02|COLLECT COD|MAIL|l ideas. carefully pen| +33546|89392|39393|3|1|1381.39|0.09|0.02|A|F|1993-11-15|1993-12-04|1993-11-28|COLLECT COD|FOB|. slyly final courts boost about| +33547|438925|26450|1|14|26094.60|0.10|0.00|N|O|1995-10-08|1995-08-30|1995-10-14|COLLECT COD|REG AIR|r accounts snooze so| +33547|8048|8049|2|11|10516.44|0.09|0.08|N|O|1995-07-15|1995-08-26|1995-08-12|TAKE BACK RETURN|AIR|egular ideas. slyly regular foxes sleep| +33548|134263|46766|1|10|12972.60|0.02|0.06|R|F|1994-08-24|1994-08-30|1994-08-30|TAKE BACK RETURN|FOB|iously regular | +33548|552005|2006|2|33|34880.34|0.10|0.05|A|F|1994-09-06|1994-07-28|1994-09-07|TAKE BACK RETURN|REG AIR| ironic packages are slyly | +33548|534398|21929|3|49|70186.13|0.03|0.00|A|F|1994-07-12|1994-07-12|1994-07-20|TAKE BACK RETURN|TRUCK|careful pint| +33548|611463|36488|4|20|27488.60|0.00|0.06|A|F|1994-10-01|1994-08-29|1994-10-22|NONE|REG AIR|equests integrate slyly af| +33548|857066|32101|5|49|50127.98|0.03|0.00|A|F|1994-07-26|1994-08-11|1994-08-24|NONE|SHIP|gainst the ruthlessly even| +33548|707892|7893|6|6|11399.16|0.04|0.03|R|F|1994-08-12|1994-08-17|1994-09-03|COLLECT COD|REG AIR|posits wake pend| +33548|524583|49604|7|6|9645.36|0.07|0.02|R|F|1994-08-25|1994-09-03|1994-09-21|DELIVER IN PERSON|AIR| instructions sleep slyly pending, perm| +33549|650351|12865|1|41|53354.12|0.08|0.04|N|O|1996-12-11|1997-01-22|1996-12-16|TAKE BACK RETURN|SHIP|lites sleep al| +33549|447549|35074|2|11|16461.72|0.02|0.03|N|O|1997-03-11|1996-12-23|1997-03-18|NONE|SHIP|ray furiously around t| +33549|946372|8891|3|34|48223.22|0.09|0.06|N|O|1996-12-14|1996-12-22|1997-01-13|TAKE BACK RETURN|SHIP|nto beans. quickly special theodolites acr| +33549|669352|44379|4|47|62102.04|0.08|0.08|N|O|1997-01-09|1997-01-10|1997-01-25|NONE|MAIL|kly pinto be| +33549|796004|33550|5|47|51698.59|0.03|0.04|N|O|1997-01-27|1996-12-26|1997-02-22|COLLECT COD|MAIL|ag blithely slyly stealthy requests. fluffi| +33550|997630|22669|1|47|81196.73|0.09|0.06|N|O|1996-05-12|1996-04-25|1996-05-31|TAKE BACK RETURN|AIR|ly about the idly unusual pa| +33550|155156|17660|2|33|39967.95|0.01|0.01|N|O|1996-05-22|1996-05-04|1996-05-29|DELIVER IN PERSON|RAIL|even, regular instr| +33550|703709|41252|3|28|47954.76|0.02|0.08|N|O|1996-04-19|1996-04-19|1996-04-23|NONE|MAIL|xpress excuses cajole fluffily ironic req| +33550|232963|45468|4|9|17063.55|0.10|0.03|N|O|1996-04-21|1996-05-14|1996-04-23|DELIVER IN PERSON|FOB|integrate slowly instructions. quic| +33550|396065|8573|5|43|49925.15|0.01|0.07|N|O|1996-05-30|1996-05-13|1996-06-20|COLLECT COD|MAIL| accounts above t| +33550|652077|39617|6|30|30871.20|0.03|0.05|N|O|1996-07-13|1996-04-22|1996-07-28|COLLECT COD|MAIL|structions. quick| +33551|60302|10303|1|22|27770.60|0.08|0.02|N|O|1997-01-25|1996-11-28|1997-01-30|COLLECT COD|RAIL|s: carefully ironic requests| +33576|858950|21468|1|48|91627.68|0.03|0.00|N|O|1997-10-11|1997-11-13|1997-11-06|NONE|FOB|nst the furiousl| +33576|362902|12903|2|6|11789.34|0.05|0.08|N|O|1997-10-24|1997-12-10|1997-10-28|COLLECT COD|MAIL|s are after the even instructions| +33576|286311|11322|3|34|44108.20|0.05|0.04|N|O|1997-09-29|1997-11-15|1997-10-25|TAKE BACK RETURN|TRUCK|ng, special packages wake bold ideas-| +33577|320466|32973|1|31|46079.95|0.02|0.08|N|O|1997-10-22|1997-09-01|1997-11-05|COLLECT COD|FOB| haggle. regula| +33577|70557|45560|2|37|56519.35|0.10|0.01|N|O|1997-10-09|1997-08-29|1997-10-23|COLLECT COD|TRUCK|ely ironic acco| +33577|835599|48116|3|49|75192.95|0.02|0.08|N|O|1997-10-15|1997-10-06|1997-10-25|TAKE BACK RETURN|REG AIR| use furiously along the final| +33577|900819|820|4|40|72790.80|0.02|0.03|N|O|1997-08-10|1997-09-12|1997-08-17|DELIVER IN PERSON|TRUCK|s after the final deposit| +33577|51399|13901|5|33|44562.87|0.04|0.00|N|O|1997-08-06|1997-10-13|1997-08-24|TAKE BACK RETURN|AIR| the even, regular ideas. blithel| +33577|846574|34123|6|17|25849.01|0.01|0.05|N|O|1997-10-30|1997-10-09|1997-11-28|COLLECT COD|MAIL|s about the slow grouches nag acc| +33577|360735|23243|7|7|12570.04|0.03|0.01|N|O|1997-08-01|1997-10-16|1997-08-19|TAKE BACK RETURN|AIR|kages haggle carefully unusual war| +33578|863203|38238|1|32|37317.12|0.04|0.03|N|O|1998-03-04|1998-04-17|1998-03-09|COLLECT COD|RAIL|al accounts impress slyly. express re| +33578|842338|17371|2|23|29446.67|0.09|0.01|N|O|1998-04-19|1998-04-21|1998-05-10|TAKE BACK RETURN|REG AIR|lar, even theodolite| +33578|162242|12243|3|40|52169.60|0.08|0.02|N|O|1998-03-09|1998-03-27|1998-03-11|TAKE BACK RETURN|TRUCK|. deposits haggle above the | +33579|45224|32725|1|17|19876.74|0.03|0.04|N|O|1998-06-30|1998-05-20|1998-07-24|DELIVER IN PERSON|AIR|iously about the express, expres| +33579|74881|24882|2|5|9279.40|0.07|0.02|N|O|1998-04-22|1998-05-16|1998-05-13|DELIVER IN PERSON|AIR|ironic deposits. pending t| +33579|521751|9282|3|4|7090.92|0.08|0.04|N|O|1998-03-17|1998-05-14|1998-04-05|DELIVER IN PERSON|TRUCK| courts are agai| +33580|272755|10271|1|15|25916.10|0.08|0.04|N|O|1998-09-07|1998-08-30|1998-09-10|TAKE BACK RETURN|AIR|ains. ironic, special instructions need to| +33580|188291|795|2|38|52413.02|0.06|0.08|N|O|1998-11-19|1998-10-21|1998-12-09|DELIVER IN PERSON|MAIL|regular ideas sleep furiously along | +33581|742787|42788|1|18|32935.50|0.07|0.05|A|F|1995-03-28|1995-02-07|1995-04-23|TAKE BACK RETURN|TRUCK|theodolites haggle carefully deposits| +33581|19867|44868|2|30|53605.80|0.09|0.02|A|F|1995-04-17|1995-02-23|1995-04-24|TAKE BACK RETURN|FOB|nal pinto beans sleep above t| +33582|858951|21469|1|3|5729.73|0.08|0.03|N|O|1996-03-22|1996-02-21|1996-03-23|DELIVER IN PERSON|REG AIR|osits haggle blithel| +33582|378312|40820|2|25|34757.50|0.10|0.08|N|O|1996-04-27|1996-03-22|1996-05-12|NONE|MAIL|ithely fin| +33582|284216|46722|3|28|33605.60|0.03|0.04|N|O|1996-01-06|1996-02-04|1996-02-03|TAKE BACK RETURN|RAIL|uickly blithely special packages. s| +33582|815305|40338|4|28|34167.28|0.03|0.03|N|O|1996-02-27|1996-03-02|1996-03-20|TAKE BACK RETURN|REG AIR|egular ideas nag carefull| +33582|830894|18443|5|45|82118.25|0.08|0.02|N|O|1996-04-03|1996-02-19|1996-04-09|TAKE BACK RETURN|AIR|ackages. ironic, bold packages al| +33582|832301|19850|6|41|50563.66|0.07|0.07|N|O|1996-04-29|1996-03-22|1996-05-16|TAKE BACK RETURN|FOB|e blithely bold packages| +33583|951316|1317|1|14|19141.78|0.10|0.04|N|O|1997-06-18|1997-07-15|1997-07-08|COLLECT COD|TRUCK|nal excuses| +33608|935689|48208|1|27|46565.28|0.02|0.06|N|O|1996-01-23|1996-01-05|1996-01-27|NONE|RAIL|he quickly| +33608|108297|45804|2|28|36548.12|0.03|0.03|N|O|1996-02-18|1996-01-05|1996-03-01|COLLECT COD|REG AIR|ffily even dolphins about the| +33608|141923|16928|3|8|15719.36|0.09|0.03|N|O|1996-02-03|1996-02-05|1996-02-29|TAKE BACK RETURN|SHIP|requests. special, even p| +33609|75108|111|1|43|46573.30|0.09|0.01|N|F|1995-06-17|1995-07-21|1995-06-27|DELIVER IN PERSON|RAIL|ending requests are across the blith| +33609|330352|17871|2|34|46999.56|0.05|0.00|N|O|1995-07-22|1995-06-28|1995-08-10|DELIVER IN PERSON|REG AIR| of the carefully e| +33609|216761|41770|3|19|31877.25|0.03|0.03|N|O|1995-07-08|1995-06-16|1995-07-29|TAKE BACK RETURN|RAIL|ly furious| +33609|91610|4112|4|21|33633.81|0.09|0.00|N|O|1995-08-26|1995-06-27|1995-09-12|NONE|AIR|ously final requests use blithely. blithel| +33609|687041|24581|5|47|48316.47|0.00|0.02|N|F|1995-05-30|1995-07-05|1995-06-27|NONE|MAIL|ously furiously regu| +33609|85555|10558|6|22|33892.10|0.09|0.08|N|O|1995-08-03|1995-07-11|1995-08-30|COLLECT COD|MAIL|ts. carefully unusual requests nag ac| +33610|839192|39193|1|11|12442.65|0.02|0.04|N|O|1996-05-13|1996-06-04|1996-05-17|NONE|TRUCK|sly final account| +33610|291025|28541|2|9|9144.09|0.01|0.07|N|O|1996-05-20|1996-05-20|1996-06-11|DELIVER IN PERSON|TRUCK| furiously| +33610|246083|46084|3|27|27784.89|0.02|0.05|N|O|1996-04-19|1996-05-03|1996-04-26|NONE|RAIL|ts. regular requests are evenly| +33610|902751|27788|4|32|56118.72|0.08|0.06|N|O|1996-03-27|1996-06-03|1996-04-17|DELIVER IN PERSON|FOB|ess, regular requests integrate| +33610|523889|23890|5|33|63124.38|0.05|0.06|N|O|1996-05-02|1996-05-21|1996-05-20|DELIVER IN PERSON|SHIP|refully bold packages. instructions sleep. | +33610|993350|5870|6|15|21649.65|0.04|0.06|N|O|1996-04-11|1996-04-19|1996-04-13|COLLECT COD|SHIP|nic deposit| +33610|225924|25925|7|39|72146.49|0.00|0.06|N|O|1996-05-20|1996-05-27|1996-06-12|DELIVER IN PERSON|MAIL|regular deposits detect e| +33611|88018|25522|1|26|26156.26|0.10|0.08|A|F|1995-01-09|1994-10-31|1995-01-13|TAKE BACK RETURN|FOB|t packages cajole! bold, ironic requ| +33611|313059|38072|2|43|46097.72|0.08|0.05|A|F|1994-12-18|1994-11-26|1995-01-10|COLLECT COD|MAIL|odolites in| +33611|568706|6240|3|3|5324.04|0.09|0.08|R|F|1994-09-30|1994-12-16|1994-10-16|DELIVER IN PERSON|TRUCK|gular instr| +33611|227968|40473|4|17|32231.15|0.10|0.07|A|F|1994-12-19|1994-12-13|1995-01-15|DELIVER IN PERSON|FOB|out the slyly daring instructio| +33612|500464|37995|1|28|41004.32|0.00|0.06|A|F|1992-04-05|1992-05-04|1992-04-29|NONE|REG AIR| the regular, expres| +33612|296641|34157|2|39|63867.57|0.08|0.08|R|F|1992-06-20|1992-04-19|1992-06-27|NONE|TRUCK|y express platelets are. even theod| +33612|641855|4368|3|42|75466.44|0.02|0.03|A|F|1992-03-29|1992-06-03|1992-04-19|COLLECT COD|SHIP|ccording to the slyly ironic ac| +33612|655379|30406|4|8|10674.72|0.10|0.06|R|F|1992-05-31|1992-04-30|1992-06-06|TAKE BACK RETURN|REG AIR|s sleep slyly along the p| +33612|949398|24435|5|17|24604.95|0.07|0.02|R|F|1992-03-16|1992-05-21|1992-04-15|NONE|TRUCK|lar packages after the un| +33613|917240|29759|1|17|21372.40|0.04|0.04|N|O|1997-12-07|1997-11-01|1997-12-16|DELIVER IN PERSON|REG AIR|y quickly silent| +33613|49242|49243|2|42|50032.08|0.00|0.03|N|O|1997-09-20|1997-11-04|1997-09-30|TAKE BACK RETURN|MAIL|blithely under the regular deposits| +33614|788366|13397|1|27|39266.91|0.10|0.02|R|F|1992-09-23|1992-10-04|1992-10-10|TAKE BACK RETURN|SHIP|side of the accounts. fluffily eve| +33614|61024|23526|2|46|45310.92|0.08|0.02|R|F|1992-10-12|1992-10-25|1992-10-28|TAKE BACK RETURN|MAIL|gainst the rut| +33614|627151|39664|3|48|51749.76|0.09|0.02|R|F|1992-12-07|1992-11-24|1992-12-22|DELIVER IN PERSON|AIR|against the carefully| +33614|523142|10673|4|21|24467.52|0.10|0.03|R|F|1992-12-10|1992-11-21|1992-12-29|DELIVER IN PERSON|SHIP|e. carefully | +33614|444651|7160|5|25|39890.75|0.10|0.08|A|F|1992-10-27|1992-10-05|1992-11-17|COLLECT COD|FOB|e slyly. fluffily pending dinos| +33614|246406|46407|6|14|18933.46|0.01|0.04|R|F|1992-09-05|1992-11-07|1992-10-04|COLLECT COD|TRUCK|excuses nag slyly even excuses? exp| +33615|653984|29011|1|39|75580.05|0.10|0.08|R|F|1992-03-13|1992-04-11|1992-04-08|NONE|REG AIR|packages use quickly blithe| +33640|51121|26124|1|23|24658.76|0.09|0.06|N|O|1997-10-24|1997-08-09|1997-11-22|NONE|RAIL|furiously iro| +33641|877547|40065|1|10|15245.00|0.02|0.03|R|F|1994-11-08|1994-10-22|1994-11-18|NONE|FOB| foxes after the ironic exc| +33641|928423|15978|2|46|66763.48|0.06|0.03|A|F|1994-09-23|1994-09-25|1994-09-30|DELIVER IN PERSON|RAIL| courts poach| +33641|990288|15327|3|24|33077.76|0.01|0.03|R|F|1994-10-01|1994-09-18|1994-10-25|DELIVER IN PERSON|SHIP|gle. ironic pinto beans haggl| +33641|760721|23237|4|12|21380.28|0.00|0.01|A|F|1994-11-25|1994-10-23|1994-12-18|COLLECT COD|RAIL|urts are. bl| +33642|68952|18953|1|49|94126.55|0.01|0.05|R|F|1995-05-16|1995-07-14|1995-06-02|DELIVER IN PERSON|RAIL|ad of the unusual instruct| +33643|77956|15460|1|5|9669.75|0.09|0.04|N|O|1995-11-26|1996-01-02|1995-12-10|TAKE BACK RETURN|RAIL|sts. accou| +33643|196927|46928|2|37|74885.04|0.02|0.03|N|O|1995-11-27|1995-12-27|1995-12-26|TAKE BACK RETURN|FOB|dolphins. requests unti| +33643|747463|9978|3|49|74011.07|0.03|0.08|N|O|1995-12-14|1996-01-14|1996-01-10|TAKE BACK RETURN|SHIP| dependencies haggle slyly according to t| +33643|600896|13409|4|24|43124.64|0.06|0.08|N|O|1995-12-17|1995-12-22|1995-12-26|TAKE BACK RETURN|AIR|ress pinto| +33644|722815|22816|1|25|45944.50|0.06|0.03|N|O|1996-08-22|1996-09-10|1996-08-27|TAKE BACK RETURN|FOB|s boost slyly regular asympt| +33644|346733|46734|2|17|30255.24|0.04|0.05|N|O|1996-09-08|1996-10-26|1996-10-05|DELIVER IN PERSON|TRUCK|r requests are. quickly regular theodoli| +33644|539149|26680|3|20|23762.40|0.03|0.07|N|O|1996-08-18|1996-09-06|1996-08-26|NONE|MAIL| courts. slyly regular | +33644|474670|12198|4|44|72364.60|0.02|0.04|N|O|1996-08-27|1996-09-26|1996-09-02|DELIVER IN PERSON|RAIL|osits. fluffy pinto beans nag sl| +33644|773950|36466|5|21|42502.32|0.05|0.06|N|O|1996-10-29|1996-10-11|1996-11-27|DELIVER IN PERSON|AIR|tegrate carefully carefully unu| +33644|767565|17566|6|11|17957.83|0.02|0.02|N|O|1996-08-08|1996-09-02|1996-09-06|COLLECT COD|FOB|yly furiously bold foxes. pending | +33644|464529|27039|7|49|73181.50|0.03|0.01|N|O|1996-08-28|1996-09-25|1996-09-23|NONE|AIR|ckages sleep furiously.| +33645|328619|3632|1|39|64256.40|0.08|0.06|N|O|1998-09-14|1998-07-02|1998-10-09|NONE|SHIP|kages. even accounts above the| +33645|94536|7038|2|42|64282.26|0.00|0.08|N|O|1998-09-12|1998-06-27|1998-09-23|TAKE BACK RETURN|SHIP|thely regular packages haggle blithely | +33646|439351|1860|1|47|60645.51|0.09|0.05|R|F|1994-03-13|1994-04-28|1994-03-19|NONE|SHIP|eodolites sleep again| +33646|158892|8893|2|22|42919.58|0.07|0.08|A|F|1994-04-03|1994-04-25|1994-04-13|COLLECT COD|FOB|ies. final grouches nod car| +33646|484073|34074|3|38|40167.90|0.05|0.02|R|F|1994-06-09|1994-04-16|1994-06-10|NONE|RAIL|ar packages haggle blithely.| +33646|805070|42619|4|22|21450.66|0.05|0.06|R|F|1994-03-11|1994-04-27|1994-03-15|DELIVER IN PERSON|TRUCK|aggle slyly furiously regular de| +33646|806429|6430|5|26|34719.88|0.02|0.08|A|F|1994-04-01|1994-05-20|1994-05-01|TAKE BACK RETURN|REG AIR| cajole. furiously unusual pinto beans | +33646|648220|35757|6|24|28036.56|0.05|0.00|R|F|1994-03-06|1994-04-05|1994-03-24|TAKE BACK RETURN|REG AIR|ts according to the final, ironic d| +33646|627486|2511|7|29|40990.05|0.04|0.05|A|F|1994-03-20|1994-05-07|1994-04-10|NONE|REG AIR|ily regular foxes across the carefully ir| +33647|141474|16479|1|35|53041.45|0.06|0.02|N|O|1996-06-25|1996-08-22|1996-07-13|NONE|TRUCK|slyly blithely slow re| +33647|739701|2216|2|38|66145.46|0.03|0.05|N|O|1996-08-13|1996-07-05|1996-08-29|TAKE BACK RETURN|TRUCK|. regularly regular dep| +33647|150261|262|3|26|34092.76|0.05|0.04|N|O|1996-09-14|1996-07-26|1996-09-25|TAKE BACK RETURN|TRUCK|are after the carefully bold theodolites| +33672|703731|28760|1|50|86735.00|0.05|0.08|N|O|1995-11-25|1995-12-18|1995-11-29|COLLECT COD|FOB|accounts. furiously bold ideas ha| +33672|595026|7538|2|36|40356.00|0.07|0.05|N|O|1996-01-21|1995-11-26|1996-02-08|NONE|MAIL|y after the ex| +33672|597220|22243|3|2|2634.40|0.02|0.02|N|O|1995-12-26|1995-11-22|1996-01-20|COLLECT COD|SHIP|fter the slyly ironic packages. instruct| +33673|87688|25192|1|22|36864.96|0.04|0.01|N|O|1996-09-15|1996-08-02|1996-10-10|DELIVER IN PERSON|FOB|arefully express courts. regular instructio| +33674|661289|11290|1|29|36257.25|0.06|0.07|N|O|1996-10-15|1996-11-24|1996-10-19|NONE|FOB| engage account| +33674|270587|33093|2|13|20248.41|0.00|0.07|N|O|1996-11-21|1996-12-10|1996-12-09|COLLECT COD|FOB| slyly final dolphins. blithe r| +33674|739129|39130|3|1|1168.09|0.05|0.01|N|O|1996-10-15|1996-12-20|1996-11-07|DELIVER IN PERSON|TRUCK|y. blithely regular dependencies among th| +33674|526417|1438|4|27|38971.53|0.03|0.00|N|O|1996-10-15|1996-11-19|1996-10-28|COLLECT COD|MAIL| careful frays cajole slyl| +33674|484376|21904|5|4|5441.40|0.09|0.01|N|O|1996-10-22|1996-11-21|1996-11-19|DELIVER IN PERSON|RAIL| quickly silent ideas| +33675|571749|21750|1|40|72828.80|0.00|0.01|N|O|1996-10-01|1996-12-05|1996-10-07|NONE|SHIP|l accounts. furiou| +33675|380038|17560|2|31|34658.62|0.02|0.03|N|O|1997-01-07|1996-10-18|1997-01-18|TAKE BACK RETURN|TRUCK|des the platelets. ca| +33675|288850|13861|3|21|38615.64|0.07|0.00|N|O|1996-10-09|1996-12-01|1996-11-07|TAKE BACK RETURN|AIR|sly express decoys. express packages around| +33675|699693|12207|4|27|45701.82|0.09|0.00|N|O|1996-12-06|1996-12-12|1996-12-20|COLLECT COD|REG AIR|carefully around th| +33675|733424|20967|5|43|62667.77|0.10|0.03|N|O|1996-12-13|1996-11-04|1996-12-17|TAKE BACK RETURN|MAIL|e quickly even | +33676|761276|48822|1|24|32093.76|0.04|0.05|N|O|1996-06-25|1996-04-27|1996-07-20|DELIVER IN PERSON|REG AIR|final accounts are ev| +33676|761500|49046|2|13|20299.11|0.04|0.03|N|O|1996-03-20|1996-06-05|1996-04-13|TAKE BACK RETURN|RAIL| fluffily final foxes. quickly even| +33676|515042|40063|3|17|17969.34|0.09|0.08|N|O|1996-04-09|1996-04-22|1996-04-15|NONE|FOB|eep on the slyly bold instructions. realms | +33676|301311|26324|4|26|34119.80|0.04|0.01|N|O|1996-04-14|1996-04-23|1996-04-30|DELIVER IN PERSON|TRUCK|foxes-- blithely final deposits sl| +33677|141896|41897|1|43|83329.27|0.03|0.05|N|O|1997-04-21|1997-05-10|1997-04-26|TAKE BACK RETURN|SHIP|equests x-ray furiously| +33677|833921|33922|2|28|51936.64|0.07|0.04|N|O|1997-04-24|1997-05-17|1997-05-05|DELIVER IN PERSON|FOB|nal packages alongside of the slyly final | +33677|709861|34890|3|47|87929.01|0.10|0.06|N|O|1997-05-02|1997-05-12|1997-05-03|COLLECT COD|MAIL|. quickly ironic i| +33677|624693|37206|4|21|33970.86|0.04|0.01|N|O|1997-07-02|1997-06-14|1997-07-10|DELIVER IN PERSON|MAIL|sly among the carefully dogg| +33677|206972|44485|5|44|82674.24|0.00|0.02|N|O|1997-05-30|1997-06-04|1997-06-18|DELIVER IN PERSON|REG AIR|ly final orbits. blithely unusual| +33677|570340|45363|6|3|4230.96|0.09|0.08|N|O|1997-06-25|1997-07-07|1997-07-06|DELIVER IN PERSON|AIR|its wake along the regular| +33677|701217|13732|7|9|10963.62|0.08|0.00|N|O|1997-04-20|1997-05-21|1997-05-09|TAKE BACK RETURN|FOB|ays unwind fluffily ca| +33678|343143|30662|1|40|47445.20|0.03|0.06|R|F|1995-05-13|1995-07-23|1995-06-06|NONE|TRUCK| the sly instructions. quickly even | +33678|196496|9000|2|21|33442.29|0.04|0.02|N|F|1995-06-10|1995-06-12|1995-06-18|DELIVER IN PERSON|AIR|ar accounts do are blithely even dinos. q| +33678|503587|28608|3|12|19086.72|0.03|0.03|N|O|1995-07-26|1995-07-17|1995-08-23|DELIVER IN PERSON|AIR|rious accounts thrash slyly. | +33678|775711|38227|4|16|28586.88|0.01|0.07|N|O|1995-07-26|1995-07-08|1995-08-21|COLLECT COD|SHIP| the carefully final idea| +33678|362613|12614|5|3|5026.80|0.00|0.05|N|O|1995-07-30|1995-07-10|1995-08-26|DELIVER IN PERSON|FOB|he requests. even, enticing packages| +33678|428116|15641|6|27|28190.43|0.08|0.05|R|F|1995-05-19|1995-06-29|1995-06-10|TAKE BACK RETURN|MAIL|lent, even requests x-ray about the f| +33678|341050|41051|7|28|30549.12|0.03|0.06|N|O|1995-08-14|1995-07-22|1995-08-31|DELIVER IN PERSON|FOB|fily pending pinto bean| +33679|11848|24349|1|2|3519.68|0.00|0.08|A|F|1992-09-06|1992-08-23|1992-09-12|COLLECT COD|FOB|leep quickly. | +33679|120170|20171|2|48|57128.16|0.02|0.05|R|F|1992-08-30|1992-09-07|1992-09-12|COLLECT COD|MAIL|e quickly. final dependencies along the re| +33679|686563|36564|3|41|63530.73|0.03|0.07|R|F|1992-07-30|1992-09-10|1992-08-26|DELIVER IN PERSON|REG AIR|ackages na| +33679|62431|12432|4|3|4180.29|0.02|0.04|A|F|1992-07-22|1992-09-30|1992-08-02|COLLECT COD|MAIL|otes wake after the ironic, even | +33704|240322|40323|1|13|16410.03|0.09|0.04|N|O|1997-07-19|1997-05-19|1997-08-08|DELIVER IN PERSON|REG AIR|al instruct| +33704|82478|7481|2|14|20446.58|0.08|0.07|N|O|1997-05-15|1997-05-30|1997-05-31|TAKE BACK RETURN|REG AIR|, regular requests cajole| +33704|206023|18528|3|49|45521.49|0.00|0.07|N|O|1997-04-20|1997-06-01|1997-05-04|COLLECT COD|MAIL|ests cajole. e| +33704|617500|5037|4|41|58116.27|0.03|0.01|N|O|1997-07-19|1997-05-06|1997-08-18|DELIVER IN PERSON|REG AIR|e furiously ironic idea| +33704|308444|20951|5|17|24691.31|0.00|0.04|N|O|1997-04-19|1997-05-24|1997-05-01|NONE|REG AIR|fily special accounts. d| +33704|12673|12674|6|35|55498.45|0.00|0.04|N|O|1997-05-24|1997-04-23|1997-05-30|TAKE BACK RETURN|FOB|ctions promise | +33705|69044|19045|1|8|8104.32|0.03|0.06|R|F|1993-09-04|1993-09-27|1993-09-27|TAKE BACK RETURN|MAIL|ickly final| +33705|413055|38072|2|15|14520.45|0.10|0.06|R|F|1993-10-14|1993-08-11|1993-10-28|DELIVER IN PERSON|TRUCK|pinto beans. furious| +33705|204375|41888|3|29|37101.44|0.09|0.03|R|F|1993-08-13|1993-08-17|1993-09-09|NONE|MAIL|ven, pending sauternes. bold d| +33706|921641|9196|1|7|11638.20|0.04|0.08|A|F|1992-05-02|1992-04-26|1992-05-12|NONE|FOB|fully final deposits integr| +33706|4009|16510|2|27|24651.00|0.09|0.08|R|F|1992-02-18|1992-03-26|1992-03-19|NONE|REG AIR| the express foxes sleep quickly regular | +33706|377542|2557|3|40|64781.20|0.01|0.07|R|F|1992-05-19|1992-03-15|1992-06-07|NONE|REG AIR|s use slyly foxes; slyly final packages caj| +33706|342712|17725|4|11|19301.70|0.02|0.08|R|F|1992-03-14|1992-04-11|1992-03-31|COLLECT COD|SHIP|s. ironic, express platelets haggle| +33706|954201|16721|5|15|18827.40|0.05|0.04|A|F|1992-04-04|1992-04-05|1992-04-27|DELIVER IN PERSON|FOB|unts nag fluffily about| +33707|831385|6418|1|1|1316.34|0.00|0.05|A|F|1994-10-01|1994-10-24|1994-10-05|TAKE BACK RETURN|TRUCK|iously pending packa| +33707|76865|1868|2|47|86567.42|0.03|0.04|A|F|1994-10-23|1994-10-03|1994-11-18|DELIVER IN PERSON|MAIL|hinder carefully. blithely r| +33707|859838|9839|3|22|39551.38|0.06|0.05|A|F|1994-11-10|1994-10-18|1994-11-19|TAKE BACK RETURN|SHIP|egular deposits. blithely close accoun| +33707|288297|13308|4|31|39843.68|0.06|0.05|A|F|1994-10-21|1994-10-29|1994-10-30|DELIVER IN PERSON|TRUCK|ironic foxes grow. furiously pending | +33707|398257|48258|5|29|39301.96|0.08|0.02|A|F|1994-11-12|1994-11-01|1994-11-16|TAKE BACK RETURN|SHIP|y ironic foxes in| +33707|492198|17217|6|25|29754.25|0.08|0.02|A|F|1994-10-07|1994-10-22|1994-10-10|DELIVER IN PERSON|SHIP|accounts haggle quickly alongside of the q| +33708|565226|2760|1|10|12912.00|0.04|0.03|N|O|1998-09-25|1998-09-12|1998-10-16|TAKE BACK RETURN|TRUCK| special packages nag. sil| +33708|751560|1561|2|10|16115.30|0.00|0.01|N|O|1998-10-17|1998-10-19|1998-10-26|COLLECT COD|REG AIR|inal, unusual excuses. slyly close reque| +33708|461487|23997|3|23|33314.58|0.07|0.05|N|O|1998-07-30|1998-09-09|1998-08-19|COLLECT COD|AIR|osits boost above the Tiresias. r| +33708|211831|49344|4|35|60998.70|0.06|0.05|N|O|1998-10-27|1998-10-11|1998-11-04|COLLECT COD|REG AIR|he bold, final p| +33708|235796|48301|5|10|17317.80|0.05|0.08|N|O|1998-08-30|1998-09-20|1998-09-28|TAKE BACK RETURN|REG AIR|uctions among the carefully fin| +33709|630172|30173|1|32|35268.48|0.01|0.05|A|F|1994-01-30|1993-12-08|1994-02-25|TAKE BACK RETURN|SHIP|requests boost fluffily above the sly| +33710|607058|44595|1|44|42460.88|0.10|0.08|N|O|1997-06-25|1997-06-25|1997-07-02|DELIVER IN PERSON|SHIP|nts boost stealthil| +33710|811028|23545|2|50|46949.00|0.08|0.02|N|O|1997-07-09|1997-07-06|1997-08-07|COLLECT COD|FOB|le express instructions. fluf| +33710|935104|10141|3|10|11390.60|0.05|0.08|N|O|1997-06-03|1997-06-28|1997-06-04|DELIVER IN PERSON|AIR|ffix. slyly daring deposits haggle car| +33710|277579|27580|4|38|59149.28|0.07|0.04|N|O|1997-08-19|1997-07-07|1997-08-25|COLLECT COD|RAIL|pecial, final theodoli| +33710|263161|677|5|34|38221.10|0.03|0.08|N|O|1997-06-23|1997-07-07|1997-06-30|TAKE BACK RETURN|REG AIR|ar requests! unusual packages affix carefu| +33710|935970|35971|6|47|94278.71|0.01|0.07|N|O|1997-07-07|1997-07-04|1997-07-18|NONE|RAIL|eep excuses. | +33710|845481|20514|7|19|27102.36|0.08|0.01|N|O|1997-08-01|1997-06-16|1997-08-06|NONE|SHIP|quickly across the special depen| +33711|992019|17058|1|27|29996.19|0.06|0.08|R|F|1993-04-19|1993-03-25|1993-05-19|NONE|MAIL|ts sleep stealthily furi| +33711|859835|34870|2|46|82560.34|0.06|0.03|A|F|1993-02-28|1993-04-04|1993-03-12|TAKE BACK RETURN|FOB|ss the slyly bold dep| +33711|238592|13601|3|12|18366.96|0.08|0.02|A|F|1993-04-09|1993-02-19|1993-04-10|DELIVER IN PERSON|MAIL|e final, bold pac| +33711|1764|39265|4|2|3331.52|0.02|0.08|A|F|1993-04-20|1993-03-15|1993-04-24|TAKE BACK RETURN|REG AIR| instructions affix | +33711|642797|17822|5|30|52192.80|0.00|0.03|A|F|1993-03-13|1993-02-10|1993-04-04|DELIVER IN PERSON|SHIP|to the blithely final foxes. ironic pin| +33736|141768|16773|1|8|14478.08|0.05|0.03|A|F|1994-09-21|1994-09-11|1994-09-30|NONE|REG AIR| final sentimen| +33736|681130|31131|2|30|33333.00|0.03|0.03|A|F|1994-09-07|1994-09-02|1994-09-16|DELIVER IN PERSON|TRUCK|ms. quickly even deposits use blithe| +33736|742014|17043|3|49|51743.02|0.09|0.07|A|F|1994-07-14|1994-07-17|1994-07-25|COLLECT COD|MAIL|kages haggle | +33736|24322|49323|4|21|26172.72|0.09|0.08|R|F|1994-06-30|1994-07-14|1994-07-05|TAKE BACK RETURN|MAIL|le: fluffily ironic requests ab| +33736|773834|23835|5|11|20985.80|0.02|0.03|R|F|1994-07-24|1994-07-19|1994-08-12|NONE|TRUCK|nto beans s| +33736|819113|31630|6|38|39218.66|0.10|0.00|A|F|1994-08-07|1994-07-19|1994-08-26|DELIVER IN PERSON|AIR|ly final asymptotes. final courts ar| +33736|816793|29310|7|16|27356.00|0.05|0.08|A|F|1994-07-07|1994-07-19|1994-07-25|NONE|MAIL|ounts. fluffi| +33737|827606|40123|1|36|55208.16|0.05|0.00|N|O|1997-02-02|1997-02-13|1997-02-14|COLLECT COD|MAIL|across the furiously| +33737|557692|7693|2|5|8748.35|0.07|0.01|N|O|1997-01-12|1997-02-15|1997-01-23|TAKE BACK RETURN|RAIL|egular tithes. sly theodolites above the ca| +33738|295977|33493|1|29|57215.84|0.02|0.06|N|O|1997-04-20|1997-03-01|1997-04-28|DELIVER IN PERSON|RAIL|ly. bold, regular ideas according to | +33739|790814|28360|1|22|41905.16|0.09|0.07|R|F|1993-08-01|1993-06-26|1993-08-16|DELIVER IN PERSON|MAIL|ronic requests. fluffily u| +33740|234003|34004|1|48|44975.52|0.07|0.00|A|F|1993-03-02|1993-01-29|1993-03-29|DELIVER IN PERSON|MAIL|es. frays are carefully final, unu| +33740|885965|23517|2|31|60478.52|0.10|0.07|R|F|1993-02-15|1993-02-01|1993-03-06|TAKE BACK RETURN|AIR|uests. fluffily express foxes hinder | +33740|408752|33769|3|5|8303.65|0.09|0.02|A|F|1992-12-25|1993-02-19|1992-12-28|NONE|MAIL|es. pending account| +33740|886289|11324|4|13|16578.12|0.09|0.05|R|F|1993-03-04|1993-03-05|1993-03-06|DELIVER IN PERSON|FOB|ularly unusual pinto beans. quickly | +33740|856116|18634|5|34|36450.38|0.01|0.02|A|F|1992-12-25|1993-02-28|1992-12-27|DELIVER IN PERSON|MAIL| accounts. ironic, | +33741|613730|38755|1|17|27942.90|0.10|0.01|N|O|1996-09-14|1996-09-25|1996-09-25|TAKE BACK RETURN|AIR|kages. slyly | +33741|943662|31217|2|1|1705.62|0.03|0.07|N|O|1996-10-01|1996-11-06|1996-10-23|NONE|REG AIR|s according to the blithely regular depen| +33741|119312|19313|3|43|57246.33|0.06|0.02|N|O|1996-12-02|1996-11-07|1996-12-15|COLLECT COD|AIR|special ac| +33741|266752|16753|4|12|20624.88|0.05|0.05|N|O|1996-10-25|1996-11-19|1996-10-28|DELIVER IN PERSON|MAIL|ts. even request| +33741|291600|41601|5|41|65255.19|0.08|0.01|N|O|1996-10-28|1996-10-09|1996-11-17|DELIVER IN PERSON|RAIL|r dependencies. bold requests | +33741|906217|31254|6|1|1223.17|0.09|0.05|N|O|1996-11-05|1996-11-06|1996-11-11|COLLECT COD|RAIL| according to the special requ| +33741|783883|46399|7|23|45237.55|0.04|0.01|N|O|1996-10-27|1996-10-04|1996-10-30|NONE|MAIL|quests after the unusual deposi| +33742|706706|6707|1|23|39391.41|0.05|0.07|N|O|1998-06-03|1998-06-27|1998-06-18|TAKE BACK RETURN|TRUCK|quests. quickly bold requests above the | +33742|603084|40621|2|31|30598.55|0.09|0.06|N|O|1998-06-23|1998-05-18|1998-06-27|COLLECT COD|SHIP|the packages. blithely e| +33742|23665|23666|3|48|76255.68|0.05|0.04|N|O|1998-05-24|1998-05-25|1998-06-05|COLLECT COD|REG AIR|riously slyly b| +33743|507379|44910|1|4|5545.40|0.02|0.05|R|F|1994-02-21|1994-01-24|1994-02-28|NONE|AIR|e slyly regular accoun| +33743|502619|27640|2|9|14594.31|0.07|0.02|R|F|1994-02-05|1994-02-13|1994-03-05|NONE|RAIL|fluffy instr| +33743|509432|46963|3|11|15855.51|0.04|0.02|R|F|1994-03-13|1994-03-12|1994-03-27|COLLECT COD|AIR|fluffily bold dol| +33743|12963|12964|4|22|41271.12|0.08|0.05|R|F|1994-01-21|1994-01-28|1994-01-25|DELIVER IN PERSON|FOB|the slyly even asymptotes. fluffily darin| +33743|860098|10099|5|45|47612.25|0.10|0.04|R|F|1994-02-13|1994-03-08|1994-03-13|DELIVER IN PERSON|TRUCK|of the slyly special accounts. fl| +33743|658761|46301|6|3|5159.19|0.00|0.04|A|F|1994-01-03|1994-01-22|1994-01-08|COLLECT COD|AIR|uickly against the quickly b| +33768|661061|11062|1|36|36793.08|0.08|0.00|A|F|1995-05-31|1995-04-20|1995-06-10|TAKE BACK RETURN|REG AIR|s. bold pinto beans nag: blithe| +33768|438491|38492|2|23|32877.81|0.03|0.00|A|F|1995-06-12|1995-06-12|1995-06-16|COLLECT COD|TRUCK|lar pinto beans nod abo| +33769|692911|17938|1|44|83770.72|0.09|0.02|A|F|1995-03-18|1995-04-04|1995-03-22|TAKE BACK RETURN|MAIL|the sometimes regular requests. fluffi| +33769|738935|38936|2|4|7895.60|0.07|0.05|R|F|1995-04-27|1995-04-06|1995-05-14|TAKE BACK RETURN|AIR|totes. furiously | +33769|275993|25994|3|21|41348.58|0.09|0.04|R|F|1995-03-19|1995-03-28|1995-04-02|DELIVER IN PERSON|REG AIR|fluffily final instructions nag furio| +33769|604818|29843|4|31|53406.18|0.07|0.05|N|F|1995-05-23|1995-03-06|1995-06-21|NONE|SHIP|ng the furi| +33769|159704|47214|5|23|40565.10|0.03|0.04|R|F|1995-05-28|1995-04-13|1995-06-04|COLLECT COD|AIR|ts. carefully ironic packages wake care| +33770|907650|7651|1|44|72934.84|0.08|0.08|N|O|1996-08-28|1996-10-10|1996-09-09|NONE|MAIL|between the accounts. | +33770|859978|47530|2|14|27131.02|0.07|0.00|N|O|1996-10-31|1996-09-06|1996-11-21|NONE|MAIL|about the blithely ironic theodolites grow | +33770|642077|4590|3|40|40761.60|0.08|0.04|N|O|1996-09-09|1996-08-30|1996-09-29|NONE|MAIL|sleep quickly furiously | +33770|388041|549|4|5|5645.15|0.04|0.06|N|O|1996-07-23|1996-09-15|1996-08-20|TAKE BACK RETURN|RAIL|al instructi| +33770|792848|17879|5|35|67928.35|0.00|0.03|N|O|1996-10-23|1996-09-13|1996-10-26|COLLECT COD|SHIP|regular de| +33770|389797|2305|6|3|5660.34|0.06|0.02|N|O|1996-09-22|1996-09-28|1996-10-16|TAKE BACK RETURN|TRUCK|ccounts are quickly. slyly| +33770|311878|24385|7|7|13229.02|0.09|0.08|N|O|1996-08-05|1996-09-28|1996-08-20|DELIVER IN PERSON|AIR|slyly. furiou| +33771|726848|1877|1|18|33746.58|0.05|0.08|A|F|1992-05-17|1992-07-06|1992-05-27|TAKE BACK RETURN|SHIP|tions integrate b| +33771|129814|17321|2|49|90346.69|0.04|0.07|R|F|1992-07-10|1992-06-11|1992-07-17|COLLECT COD|FOB|ly against the ironic accounts. qui| +33771|775429|460|3|45|67697.55|0.10|0.08|A|F|1992-05-23|1992-06-13|1992-05-26|COLLECT COD|TRUCK|fily ironic deposits? reg| +33771|629851|4876|4|42|74794.44|0.04|0.07|A|F|1992-08-06|1992-07-04|1992-08-23|DELIVER IN PERSON|TRUCK|he furiously | +33771|896870|21905|5|1|1866.83|0.03|0.06|A|F|1992-06-09|1992-07-16|1992-06-13|DELIVER IN PERSON|MAIL|gular packages. careful| +33772|116362|28865|1|25|34459.00|0.01|0.00|N|O|1997-12-21|1997-12-02|1998-01-06|TAKE BACK RETURN|FOB|indle careful| +33773|613961|1498|1|29|54372.97|0.04|0.04|N|O|1998-04-28|1998-05-08|1998-05-18|NONE|SHIP|ely even, even d| +33773|841922|4439|2|38|70827.44|0.00|0.04|N|O|1998-05-16|1998-04-27|1998-06-06|TAKE BACK RETURN|MAIL| blithely among the d| +33773|170821|45828|3|45|85131.90|0.08|0.08|N|O|1998-03-28|1998-04-19|1998-04-24|COLLECT COD|REG AIR|quickly even packages dazzle | +33773|988500|26058|4|36|57184.56|0.00|0.05|N|O|1998-04-06|1998-04-20|1998-04-17|TAKE BACK RETURN|MAIL|l deposits cajole slyly idle req| +33773|711760|36789|5|43|76184.39|0.02|0.03|N|O|1998-04-24|1998-05-29|1998-05-21|COLLECT COD|FOB|slyly quickly even packages. re| +33773|537802|37803|6|14|25756.92|0.07|0.06|N|O|1998-03-18|1998-04-23|1998-04-12|COLLECT COD|FOB|ke blithely never unusual deposits. furious| +33774|300730|731|1|44|76151.68|0.04|0.07|A|F|1995-03-12|1995-03-10|1995-03-16|TAKE BACK RETURN|RAIL|ers nag carefully slyly bold ideas. un| +33774|366503|16504|2|48|75335.52|0.08|0.07|A|F|1995-04-29|1995-04-24|1995-05-25|TAKE BACK RETURN|RAIL|ronically express packages. blithely bo| +33774|808337|33370|3|28|34868.12|0.08|0.05|R|F|1995-03-03|1995-03-24|1995-03-28|TAKE BACK RETURN|RAIL|. carefully blithe deposits us| +33774|714076|14077|4|12|13080.48|0.06|0.06|R|F|1995-03-28|1995-04-07|1995-04-17|DELIVER IN PERSON|MAIL|iously along the quickly bold foxes. furiou| +33774|465403|40422|5|3|4105.14|0.01|0.01|R|F|1995-01-30|1995-03-01|1995-02-17|NONE|REG AIR|le. even, even packag| +33774|20937|33438|6|33|61311.69|0.07|0.00|A|F|1995-03-10|1995-02-25|1995-03-31|NONE|FOB|dolites; ideas | +33774|879612|42130|7|45|71620.65|0.09|0.07|R|F|1995-03-05|1995-03-05|1995-03-29|DELIVER IN PERSON|AIR|ts cajole | +33775|633627|46140|1|8|12484.72|0.03|0.03|N|O|1998-03-26|1998-04-17|1998-03-29|NONE|SHIP|dolites boost. pearls above the quickly| +33775|368803|43818|2|23|43051.17|0.03|0.01|N|O|1998-05-14|1998-04-04|1998-05-23|NONE|MAIL|ely carefully unusual pa| +33775|467831|30341|3|25|44970.25|0.04|0.06|N|O|1998-02-18|1998-05-01|1998-03-14|COLLECT COD|MAIL|pinto beans| +33775|823126|35643|4|24|25177.92|0.01|0.03|N|O|1998-02-16|1998-03-19|1998-02-17|DELIVER IN PERSON|AIR|ully even deposits. f| +33800|502536|27557|1|5|7692.55|0.10|0.01|N|O|1998-06-03|1998-06-05|1998-07-02|TAKE BACK RETURN|AIR|wake slyly. carefully ir| +33800|119109|31612|2|48|54148.80|0.01|0.01|N|O|1998-06-19|1998-05-13|1998-07-13|NONE|RAIL|ounts haggle blithely speci| +33800|851050|13568|3|34|34034.34|0.01|0.07|N|O|1998-06-19|1998-05-15|1998-07-15|COLLECT COD|REG AIR|lyly final pinto beans cajole. reg| +33800|597031|34565|4|17|19176.17|0.00|0.08|N|O|1998-05-10|1998-06-16|1998-05-14|DELIVER IN PERSON|FOB|carefully about | +33800|297425|47426|5|29|41249.89|0.10|0.06|N|O|1998-05-03|1998-05-16|1998-05-08|TAKE BACK RETURN|MAIL| slyly blithe depos| +33801|150599|600|1|2|3299.18|0.05|0.04|A|F|1992-06-27|1992-08-07|1992-07-11|TAKE BACK RETURN|REG AIR|tes. pending excuses sleep quickly pend| +33801|106587|44094|2|29|46213.82|0.03|0.00|A|F|1992-07-04|1992-09-06|1992-07-14|DELIVER IN PERSON|FOB| packages integrate about th| +33801|402752|27769|3|28|46332.44|0.08|0.01|R|F|1992-10-13|1992-08-26|1992-11-10|COLLECT COD|AIR|ording to the pi| +33801|38239|740|4|39|45911.97|0.02|0.00|A|F|1992-07-22|1992-08-05|1992-07-24|TAKE BACK RETURN|FOB|equests. b| +33802|141788|16793|1|47|85999.66|0.03|0.06|N|O|1996-08-21|1996-09-18|1996-08-30|COLLECT COD|AIR|accounts haggle| +33802|30374|5375|2|37|48261.69|0.00|0.02|N|O|1996-07-26|1996-09-28|1996-07-29|COLLECT COD|SHIP|ages. busily final accounts| +33802|484272|21800|3|25|31406.25|0.01|0.07|N|O|1996-11-14|1996-09-05|1996-12-14|DELIVER IN PERSON|AIR|ironic, regular theodolites.| +33802|156220|6221|4|11|14038.42|0.05|0.06|N|O|1996-11-15|1996-09-16|1996-11-24|NONE|REG AIR|s nag fluffily doggedly | +33802|577321|39833|5|36|50338.80|0.06|0.05|N|O|1996-08-29|1996-09-02|1996-09-23|COLLECT COD|TRUCK|encies. furiously pending notorn| +33802|24315|11816|6|11|13632.41|0.10|0.03|N|O|1996-08-24|1996-10-14|1996-09-21|COLLECT COD|SHIP|ckly bold idea| +33803|146559|9062|1|39|62616.45|0.02|0.00|N|O|1997-04-11|1997-03-07|1997-04-21|COLLECT COD|FOB| final excuses cajole after the asym| +33803|216818|29323|2|46|79800.80|0.02|0.03|N|O|1997-01-06|1997-03-03|1997-01-23|COLLECT COD|FOB|press packages: furiously pending| +33803|43344|5845|3|19|24459.46|0.09|0.00|N|O|1997-04-09|1997-01-28|1997-04-30|COLLECT COD|FOB|te furiously express| +33803|471306|46325|4|11|14050.08|0.03|0.08|N|O|1997-01-28|1997-01-16|1997-02-24|TAKE BACK RETURN|FOB|fully bold id| +33803|226366|38871|5|26|33601.10|0.07|0.07|N|O|1997-03-27|1997-02-04|1997-04-21|NONE|MAIL|s. quickly f| +33804|41837|4338|1|32|56922.56|0.10|0.01|N|O|1998-02-24|1998-04-06|1998-03-07|COLLECT COD|TRUCK|ep quickly blithely pending | +33805|684938|34939|1|38|73070.20|0.05|0.08|N|O|1998-07-03|1998-06-23|1998-07-14|DELIVER IN PERSON|TRUCK|se blithely express packages. deposits | +33805|744778|19807|2|21|38277.54|0.09|0.08|N|O|1998-08-06|1998-05-20|1998-09-03|DELIVER IN PERSON|TRUCK|quickly even platelet| +33805|483560|46070|3|5|7717.70|0.01|0.04|N|O|1998-05-27|1998-06-11|1998-06-20|DELIVER IN PERSON|REG AIR| according to the final requests. reg| +33805|179472|4479|4|50|77573.50|0.04|0.07|N|O|1998-06-30|1998-05-21|1998-07-23|DELIVER IN PERSON|RAIL|r the regular instru| +33805|379361|16883|5|41|59054.35|0.00|0.06|N|O|1998-06-20|1998-05-30|1998-07-15|DELIVER IN PERSON|AIR|oxes use slyly furiously final pinto b| +33805|910523|10524|6|13|19935.24|0.09|0.00|N|O|1998-07-06|1998-06-13|1998-07-11|TAKE BACK RETURN|MAIL|y. quickly unusual dep| +33805|144090|19095|7|13|14743.17|0.02|0.07|N|O|1998-04-18|1998-05-27|1998-05-13|DELIVER IN PERSON|AIR| dolphins are in place of the even | +33806|713777|38806|1|36|64466.64|0.07|0.07|N|O|1997-10-14|1997-12-04|1997-10-20|COLLECT COD|FOB|osits nag furiously. carefully special pa| +33806|441265|41266|2|32|38599.68|0.01|0.02|N|O|1997-12-16|1997-11-20|1997-12-20|COLLECT COD|MAIL| even accounts ha| +33806|337838|37839|3|27|50647.14|0.09|0.03|N|O|1997-09-28|1997-10-20|1997-10-28|TAKE BACK RETURN|FOB|bove the blithely pending deposit| +33806|43029|18030|4|38|36936.76|0.10|0.04|N|O|1997-10-05|1997-11-28|1997-11-01|TAKE BACK RETURN|MAIL|egular accounts detect. deposits | +33806|181439|31440|5|41|62337.63|0.09|0.07|N|O|1997-09-30|1997-11-06|1997-10-17|COLLECT COD|AIR|he blithely unusu| +33806|440747|40748|6|8|13501.76|0.06|0.08|N|O|1997-11-14|1997-11-05|1997-11-19|DELIVER IN PERSON|AIR| pending deposits. | +33806|618167|5704|7|37|40149.81|0.07|0.06|N|O|1998-01-02|1997-11-08|1998-01-31|TAKE BACK RETURN|REG AIR|ests. slyly special packages at t| +33807|531747|44258|1|32|56919.04|0.00|0.06|R|F|1992-12-06|1992-09-23|1992-12-13|TAKE BACK RETURN|SHIP|ly final warhorses sleep| +33807|67769|5273|2|24|41682.24|0.04|0.05|R|F|1992-11-09|1992-11-01|1992-12-01|COLLECT COD|AIR|haggle furiously regular, i| +33807|982765|32766|3|47|86842.84|0.07|0.06|A|F|1992-12-05|1992-11-05|1993-01-03|TAKE BACK RETURN|MAIL|d have to cajole acro| +33807|328277|3290|4|33|43073.58|0.06|0.06|R|F|1992-11-15|1992-09-28|1992-11-27|DELIVER IN PERSON|TRUCK|rhorses. slyly unusual t| +33832|30678|5679|1|44|70781.48|0.01|0.03|N|O|1998-09-08|1998-07-30|1998-10-01|NONE|REG AIR|egular dependencies nag against the regul| +33832|600808|38345|2|6|10252.62|0.05|0.07|N|O|1998-08-04|1998-09-25|1998-08-31|COLLECT COD|RAIL|ince the express, regular accounts slee| +33832|774445|36961|3|21|31907.61|0.01|0.06|N|O|1998-10-21|1998-08-19|1998-11-15|NONE|SHIP| of the blithely bold| +33833|916935|41972|1|33|64412.37|0.06|0.06|R|F|1994-02-06|1994-03-01|1994-03-07|COLLECT COD|REG AIR|symptotes; depo| +33833|925185|222|2|17|20572.38|0.08|0.05|A|F|1994-01-21|1994-02-21|1994-02-17|NONE|FOB| fluffily above th| +33833|572400|34912|3|23|33864.74|0.08|0.00|R|F|1994-03-21|1994-02-26|1994-04-04|NONE|FOB|ress dependencies cajole blithely a| +33833|315245|2764|4|32|40327.36|0.04|0.07|R|F|1994-03-23|1994-02-25|1994-04-20|DELIVER IN PERSON|TRUCK|s. blithely regular requests| +33833|306426|6427|5|7|10026.87|0.01|0.04|R|F|1994-04-02|1994-02-22|1994-04-25|NONE|FOB|lithely regu| +33833|101602|26607|6|17|27261.20|0.10|0.05|A|F|1994-01-13|1994-02-14|1994-01-22|DELIVER IN PERSON|FOB|et foxes; carefully| +33834|878372|40890|1|49|66166.17|0.10|0.01|A|F|1994-07-22|1994-07-10|1994-08-10|NONE|AIR|ounts. pendi| +33834|790190|40191|2|20|25603.20|0.02|0.00|R|F|1994-07-30|1994-07-27|1994-08-10|DELIVER IN PERSON|FOB|waters. final, final instructions sle| +33835|705496|5497|1|50|75073.00|0.01|0.03|R|F|1993-10-07|1993-11-02|1993-10-25|COLLECT COD|MAIL|frets boost; deposits about the theodolite| +33835|264902|39913|2|2|3733.78|0.08|0.02|R|F|1993-11-08|1993-10-15|1993-11-12|DELIVER IN PERSON|FOB| the blithely even foxes doz| +33835|193600|18607|3|24|40646.40|0.08|0.01|A|F|1993-09-24|1993-11-14|1993-10-10|COLLECT COD|TRUCK|longside of| +33836|886382|23934|1|12|16420.08|0.07|0.01|N|O|1996-06-25|1996-08-28|1996-07-03|DELIVER IN PERSON|FOB|eve. final deposits| +33836|413376|901|2|38|48995.30|0.03|0.06|N|O|1996-07-03|1996-07-20|1996-07-27|COLLECT COD|RAIL|along the regular deposits. | +33836|601291|38828|3|11|13114.86|0.00|0.00|N|O|1996-07-28|1996-08-30|1996-08-06|NONE|TRUCK|use slyly fluffily regular asympt| +33837|16308|28809|1|43|52644.90|0.00|0.01|R|F|1992-05-15|1992-04-23|1992-06-09|COLLECT COD|FOB|s after the ironic instructions int| +33837|77503|2506|2|45|66622.50|0.05|0.03|A|F|1992-02-25|1992-05-20|1992-03-14|COLLECT COD|MAIL|ccounts are a| +33838|745722|8237|1|48|84849.12|0.00|0.01|A|F|1994-12-09|1994-11-14|1994-12-26|COLLECT COD|SHIP|the ironic dependencies could hav| +33838|347415|22428|2|21|30710.40|0.09|0.01|A|F|1994-11-09|1994-11-01|1994-12-09|COLLECT COD|FOB|egular dolphins haggle even p| +33839|702217|2218|1|8|9753.44|0.00|0.02|N|O|1998-07-04|1998-07-26|1998-07-27|NONE|TRUCK|according to the carefully pending esca| +33839|147313|9816|2|34|46250.54|0.06|0.04|N|O|1998-06-28|1998-08-12|1998-06-30|NONE|RAIL|ing theodolites hang blithel| +33864|871505|21506|1|36|53152.56|0.06|0.03|N|O|1998-10-17|1998-10-01|1998-11-02|NONE|MAIL| hockey players lose unusual instruction| +33865|233885|21398|1|26|47290.62|0.08|0.08|N|O|1997-09-14|1997-07-25|1997-09-15|NONE|AIR|ly regular packag| +33865|893082|43083|2|9|9675.36|0.04|0.06|N|O|1997-09-02|1997-07-29|1997-09-04|COLLECT COD|TRUCK|gular packages| +33865|20993|45994|3|22|42107.78|0.01|0.08|N|O|1997-06-28|1997-07-22|1997-07-17|COLLECT COD|TRUCK|egular pinto beans dazzle slo| +33865|813862|13863|4|12|21309.84|0.05|0.06|N|O|1997-07-01|1997-08-20|1997-07-03|TAKE BACK RETURN|REG AIR|mptotes! ent| +33865|562474|24986|5|21|32265.45|0.10|0.00|N|O|1997-08-16|1997-08-22|1997-08-29|NONE|AIR|pendencies. slyly idle reques| +33865|487324|24852|6|12|15735.60|0.04|0.01|N|O|1997-08-20|1997-07-25|1997-09-04|NONE|FOB|, ironic requests wake | +33866|313791|1310|1|31|55948.18|0.10|0.06|N|O|1996-05-15|1996-06-20|1996-06-06|COLLECT COD|REG AIR|nly unusual pinto beans sleep. quie| +33867|368198|18199|1|13|16460.34|0.07|0.04|N|O|1998-08-27|1998-07-29|1998-09-05|DELIVER IN PERSON|MAIL|ng to the blith| +33868|131301|43804|1|9|11990.70|0.03|0.06|A|F|1992-05-08|1992-07-10|1992-05-14|DELIVER IN PERSON|RAIL| the even, regular dependen| +33868|759462|34493|2|1|1521.43|0.08|0.02|A|F|1992-08-24|1992-06-19|1992-09-14|TAKE BACK RETURN|RAIL|across the special, even theodolites| +33868|264025|14026|3|37|36593.37|0.01|0.06|A|F|1992-07-15|1992-06-19|1992-08-07|COLLECT COD|FOB|lly final dependencies haggle acco| +33868|455255|17765|4|13|15732.99|0.07|0.03|A|F|1992-05-15|1992-07-06|1992-05-30|TAKE BACK RETURN|SHIP|ccounts boost slyly furiously unus| +33868|461600|36619|5|43|67147.94|0.01|0.01|A|F|1992-06-23|1992-07-06|1992-07-11|NONE|MAIL|ng sentiments. packages | +33868|95622|8124|6|8|12940.96|0.10|0.02|A|F|1992-08-18|1992-06-11|1992-08-26|COLLECT COD|SHIP|he regular, even dol| +33869|698258|23285|1|15|18843.30|0.08|0.02|N|O|1996-01-06|1995-12-13|1996-01-22|NONE|AIR|le blithely about the d| +33869|610260|22773|2|44|51490.12|0.05|0.07|N|O|1995-12-16|1995-12-21|1995-12-25|COLLECT COD|FOB|en courts hinder quickly| +33869|638682|1195|3|33|53481.45|0.01|0.02|N|O|1995-12-20|1995-12-31|1995-12-25|NONE|REG AIR| stealthily express packages| +33870|10065|47566|1|34|33152.04|0.10|0.05|R|F|1993-08-23|1993-08-05|1993-09-13|DELIVER IN PERSON|RAIL|ously ironic platelets use slyly care| +33871|250419|37935|1|3|4108.20|0.05|0.01|A|F|1993-11-14|1993-10-11|1993-11-29|TAKE BACK RETURN|SHIP|ests wake? quickly regular as| +33871|783506|21052|2|19|30199.93|0.09|0.03|A|F|1993-11-02|1993-09-17|1993-11-20|COLLECT COD|MAIL|ts. even accounts cajol| +33871|372325|47340|3|28|39124.68|0.03|0.04|R|F|1993-08-27|1993-09-22|1993-09-20|DELIVER IN PERSON|SHIP|. quickly pending | +33871|652721|27748|4|7|11715.83|0.06|0.00|R|F|1993-10-09|1993-09-07|1993-10-16|DELIVER IN PERSON|TRUCK|eep according to the f| +33871|277672|40178|5|8|13197.28|0.08|0.08|R|F|1993-09-19|1993-10-01|1993-10-14|TAKE BACK RETURN|TRUCK|its nod carefully silent exc| +33871|820084|7633|6|32|32129.28|0.03|0.03|A|F|1993-07-23|1993-08-29|1993-08-09|NONE|RAIL|uffily even hockey play| +33896|679041|16581|1|47|47940.47|0.06|0.02|N|O|1997-06-02|1997-05-07|1997-06-28|COLLECT COD|MAIL|al instructions| +33896|638713|13738|2|2|3303.36|0.02|0.08|N|O|1997-05-20|1997-04-01|1997-06-18|COLLECT COD|SHIP|s. blithely ironic requests | +33897|222370|22371|1|39|50402.04|0.00|0.03|N|O|1997-05-19|1997-06-14|1997-05-23|TAKE BACK RETURN|AIR|lithely furiously bold| +33897|360549|10550|2|38|61162.14|0.01|0.03|N|O|1997-06-10|1997-06-27|1997-06-27|DELIVER IN PERSON|RAIL|olites. blit| +33897|738275|790|3|21|27578.04|0.01|0.05|N|O|1997-06-04|1997-05-30|1997-06-29|DELIVER IN PERSON|MAIL|en packages integrate care| +33897|171212|21213|4|18|23097.78|0.01|0.00|N|O|1997-06-22|1997-05-22|1997-07-18|NONE|TRUCK|ly along the slyly ironic dolphins. | +33897|557986|7987|5|12|24527.52|0.00|0.04|N|O|1997-05-04|1997-06-23|1997-05-17|TAKE BACK RETURN|FOB|e furiously| +33897|57278|32281|6|12|14823.24|0.09|0.08|N|O|1997-06-14|1997-06-02|1997-07-12|DELIVER IN PERSON|SHIP|ns. furiously ironic acco| +33897|667673|42700|7|12|19687.68|0.04|0.01|N|O|1997-05-18|1997-05-02|1997-06-07|NONE|FOB|ar notornis cajole furiously after the | +33898|577215|2238|1|20|25843.80|0.08|0.02|R|F|1992-03-07|1992-04-05|1992-03-30|NONE|REG AIR| nag quickly about the ironic asympto| +33898|250883|25894|2|21|38511.27|0.03|0.07|A|F|1992-01-25|1992-03-11|1992-02-16|DELIVER IN PERSON|REG AIR| doze bravely among the | +33898|583344|33345|3|31|44246.92|0.02|0.06|R|F|1992-02-09|1992-03-12|1992-02-10|NONE|TRUCK|affix furiously furiously ruthless| +33898|247366|34879|4|14|18386.90|0.05|0.02|R|F|1992-05-14|1992-03-17|1992-05-19|DELIVER IN PERSON|AIR|uests. furiously even d| +33898|472874|22875|5|49|90495.65|0.01|0.07|R|F|1992-02-02|1992-03-10|1992-02-09|COLLECT COD|SHIP|detect sly| +33899|57465|32468|1|41|58320.86|0.01|0.05|N|O|1996-06-20|1996-05-23|1996-07-11|TAKE BACK RETURN|MAIL|er the blithely ironic accoun| +33899|814007|1556|2|35|32233.60|0.01|0.02|N|O|1996-07-20|1996-06-02|1996-08-06|COLLECT COD|AIR|ly evenly u| +33899|4191|41692|3|18|19713.42|0.02|0.03|N|O|1996-08-07|1996-07-03|1996-08-11|TAKE BACK RETURN|AIR| boost carefully according to the | +33899|435696|23221|4|45|73425.15|0.03|0.02|N|O|1996-08-09|1996-06-16|1996-08-25|COLLECT COD|SHIP|rly unusual excuses. expre| +33899|733429|33430|5|28|40946.92|0.07|0.04|N|O|1996-07-05|1996-06-29|1996-07-08|TAKE BACK RETURN|SHIP|even hockey players. quickly silent account| +33900|321125|46138|1|8|9168.88|0.07|0.05|A|F|1992-06-18|1992-05-29|1992-07-01|DELIVER IN PERSON|TRUCK| to the even | +33900|133443|8448|2|8|11811.52|0.06|0.01|A|F|1992-06-21|1992-06-21|1992-07-01|COLLECT COD|REG AIR|efully alongside of| +33900|760651|35682|3|23|39367.26|0.06|0.05|A|F|1992-07-15|1992-06-03|1992-08-07|TAKE BACK RETURN|RAIL|ions nod after the furiously| +33900|247954|22963|4|26|49450.44|0.01|0.08|A|F|1992-08-11|1992-07-21|1992-09-03|COLLECT COD|MAIL|ggle carefully. quickly b| +33900|358878|21386|5|9|17431.74|0.06|0.01|A|F|1992-06-06|1992-06-24|1992-06-12|COLLECT COD|TRUCK|nic platelets wake slyl| +33900|647346|9859|6|44|56905.64|0.05|0.03|A|F|1992-08-17|1992-05-26|1992-09-12|COLLECT COD|SHIP|he carefully special req| +33901|310007|35020|1|12|12203.88|0.00|0.04|R|F|1993-09-14|1993-07-27|1993-09-26|DELIVER IN PERSON|MAIL|ng the even accounts haggle blith| +33901|274220|36726|2|11|13136.31|0.09|0.08|R|F|1993-06-29|1993-08-12|1993-07-04|NONE|AIR|e furiously permanent requests. fu| +33901|803749|3750|3|38|62802.60|0.00|0.02|R|F|1993-09-18|1993-08-27|1993-09-28|TAKE BACK RETURN|REG AIR|lites. blithely regular as| +33901|595381|32915|4|13|19192.68|0.03|0.01|A|F|1993-08-31|1993-09-01|1993-09-02|DELIVER IN PERSON|AIR|platelets cajo| +33902|106339|18842|1|19|25561.27|0.02|0.06|N|O|1997-10-04|1997-11-17|1997-10-16|TAKE BACK RETURN|REG AIR| the special, regula| +33902|234482|9491|2|50|70823.50|0.07|0.00|N|O|1997-12-03|1997-10-22|1997-12-26|COLLECT COD|REG AIR|ans. furiously e| +33903|397090|22105|1|23|27302.84|0.03|0.03|A|F|1994-01-13|1994-01-29|1994-01-20|DELIVER IN PERSON|MAIL|y final pinto bea| +33903|888121|639|2|24|26617.92|0.03|0.01|R|F|1994-03-03|1994-01-18|1994-04-01|DELIVER IN PERSON|FOB|kages sleep furiously | +33928|352755|2756|1|33|59655.42|0.10|0.00|N|O|1998-04-19|1998-03-25|1998-05-01|COLLECT COD|AIR| theodolites haggle| +33929|46088|46089|1|47|48601.76|0.05|0.05|R|F|1994-05-14|1994-04-22|1994-05-28|TAKE BACK RETURN|TRUCK|egular depos| +33929|586316|48828|2|40|56091.60|0.01|0.02|R|F|1994-03-16|1994-04-22|1994-04-05|COLLECT COD|FOB|onic dugouts behind the pen| +33929|205468|42981|3|42|57684.90|0.05|0.05|A|F|1994-02-14|1994-03-10|1994-02-16|TAKE BACK RETURN|FOB|ide of the special pinto beans nag dog| +33929|293617|43618|4|41|66034.60|0.09|0.07|A|F|1994-02-07|1994-04-08|1994-03-09|TAKE BACK RETURN|FOB|alongside of the requests. blithely iron| +33929|816842|29359|5|1|1758.80|0.05|0.08|R|F|1994-05-18|1994-04-08|1994-06-01|TAKE BACK RETURN|AIR|quickly regular requ| +33929|656919|19433|6|47|88166.36|0.08|0.02|R|F|1994-03-23|1994-03-11|1994-04-16|NONE|AIR|, bold instructions nag | +33929|827875|2908|7|9|16225.47|0.06|0.08|R|F|1994-01-24|1994-02-25|1994-01-26|DELIVER IN PERSON|REG AIR|. carefully pending requests are furi| +33930|82891|45393|1|28|52468.92|0.10|0.07|N|O|1997-04-27|1997-04-30|1997-05-03|TAKE BACK RETURN|SHIP|ial requests after| +33930|138096|599|2|7|7938.63|0.01|0.05|N|O|1997-06-05|1997-04-08|1997-07-05|DELIVER IN PERSON|AIR|t the pending accounts. b| +33930|977205|2244|3|22|28207.52|0.07|0.08|N|O|1997-05-17|1997-04-12|1997-05-30|NONE|FOB|nts. accoun| +33931|382108|19630|1|39|46413.51|0.10|0.00|N|O|1997-08-22|1997-08-29|1997-08-28|NONE|MAIL|lly bold frets wake fluf| +33931|86641|11644|2|43|69988.52|0.00|0.08|N|O|1997-10-07|1997-09-09|1997-10-31|DELIVER IN PERSON|FOB|nt instructions after the blithely | +33931|170242|20243|3|49|64299.76|0.01|0.01|N|O|1997-08-13|1997-08-28|1997-09-10|COLLECT COD|MAIL|ently ironic | +33931|251495|1496|4|1|1446.48|0.08|0.04|N|O|1997-11-07|1997-09-21|1997-11-15|TAKE BACK RETURN|SHIP|ding ideas wake pending p| +33931|866473|28991|5|4|5757.72|0.06|0.05|N|O|1997-10-31|1997-08-30|1997-11-29|COLLECT COD|AIR|usly. final deposits sl| +33931|799510|24541|6|47|75645.56|0.06|0.06|N|O|1997-11-04|1997-09-29|1997-11-30|DELIVER IN PERSON|AIR| bold instructions. fluff| +33931|350549|38071|7|29|46386.37|0.00|0.07|N|O|1997-07-28|1997-08-16|1997-08-02|COLLECT COD|MAIL| about the asymptotes. carefully| +33932|663183|13184|1|26|29799.90|0.08|0.07|N|O|1995-11-17|1995-12-18|1995-11-25|DELIVER IN PERSON|REG AIR|arefully regular accounts | +33932|111935|49442|2|23|44779.39|0.06|0.05|N|O|1996-01-03|1996-01-05|1996-01-25|DELIVER IN PERSON|MAIL|c packages. ironic foxes serve furiously | +33932|284055|9066|3|41|42600.64|0.08|0.03|N|O|1996-01-05|1995-11-11|1996-01-18|TAKE BACK RETURN|REG AIR|blithely even | +33932|111608|24111|4|1|1619.60|0.02|0.05|N|O|1995-11-06|1995-12-11|1995-11-30|COLLECT COD|FOB|asymptotes. carefully regular pac| +33932|786602|49118|5|26|43902.82|0.03|0.01|N|O|1995-10-10|1995-12-16|1995-10-22|DELIVER IN PERSON|RAIL| fluffily regular instructions agains| +33932|417696|17697|6|43|69387.81|0.04|0.07|N|O|1996-01-24|1995-11-11|1996-01-29|DELIVER IN PERSON|REG AIR|lar requests. ironic, final req| +33932|206949|19454|7|35|64957.55|0.06|0.06|N|O|1995-10-13|1995-12-01|1995-10-27|DELIVER IN PERSON|RAIL|ctions are about the | +33933|181479|18989|1|13|20286.11|0.10|0.01|R|F|1992-02-03|1992-02-26|1992-02-11|DELIVER IN PERSON|REG AIR|. slyly regul| +33933|114675|2182|2|15|25345.05|0.03|0.03|R|F|1992-03-19|1992-04-23|1992-04-17|COLLECT COD|TRUCK|ic, final pinto beans wake blithe | +33933|337104|24623|3|30|34232.70|0.07|0.05|A|F|1992-02-26|1992-03-10|1992-03-19|NONE|TRUCK|ly. even, e| +33933|706041|43584|4|11|11517.11|0.07|0.03|R|F|1992-01-30|1992-03-19|1992-02-27|NONE|SHIP|the slyly silent instructio| +33934|355794|5795|1|8|14798.24|0.10|0.05|N|O|1997-04-21|1997-06-02|1997-04-24|COLLECT COD|REG AIR|accounts. regular deposits| +33934|819829|7378|2|40|69951.20|0.04|0.02|N|O|1997-04-27|1997-07-12|1997-05-26|NONE|REG AIR| breach carefully before the sly| +33934|860620|23138|3|14|22128.12|0.03|0.06|N|O|1997-07-26|1997-05-25|1997-08-25|COLLECT COD|RAIL|to the carefully special packages. bol| +33934|435948|35949|4|48|90428.16|0.07|0.03|N|O|1997-04-22|1997-05-23|1997-04-23|NONE|MAIL|nts. quick| +33934|964701|14702|5|37|65329.42|0.07|0.08|N|O|1997-06-14|1997-07-02|1997-07-08|DELIVER IN PERSON|SHIP| beans would nag quickly dogged pa| +33934|718244|43273|6|17|21457.57|0.02|0.01|N|O|1997-05-19|1997-05-31|1997-05-24|COLLECT COD|REG AIR|, regular | +33935|304398|29411|1|23|32254.74|0.00|0.07|R|F|1992-06-12|1992-06-29|1992-07-02|TAKE BACK RETURN|TRUCK|s. special, final accounts cajole quickl| +33935|10979|35980|2|25|47249.25|0.10|0.05|R|F|1992-07-29|1992-06-20|1992-08-17|COLLECT COD|FOB|ickly thin packages sleep slyly along| +33935|512025|37046|3|35|36295.00|0.00|0.01|A|F|1992-08-02|1992-07-29|1992-08-25|DELIVER IN PERSON|MAIL|ake according to t| +33960|23687|36188|1|19|30602.92|0.03|0.08|N|O|1995-12-20|1995-10-12|1996-01-11|TAKE BACK RETURN|RAIL|ly regular| +33960|99864|12366|2|11|20502.46|0.07|0.03|N|O|1995-10-23|1995-11-20|1995-11-20|TAKE BACK RETURN|TRUCK| packages. | +33961|76827|14331|1|36|64937.52|0.03|0.00|N|O|1996-04-20|1996-07-06|1996-04-28|TAKE BACK RETURN|TRUCK|y pending deposits are | +33961|222153|34658|2|27|29028.78|0.10|0.05|N|O|1996-04-17|1996-06-17|1996-04-21|TAKE BACK RETURN|RAIL|nt, final dolphins haggle alongs| +33962|603276|3277|1|34|40094.16|0.01|0.07|A|F|1994-10-27|1994-08-22|1994-11-26|NONE|REG AIR|sual theodolites. s| +33962|243222|5727|2|5|5826.05|0.08|0.01|A|F|1994-08-25|1994-09-02|1994-09-01|DELIVER IN PERSON|RAIL|leep fluffily above | +33962|819980|19981|3|36|68397.84|0.10|0.02|R|F|1994-10-01|1994-08-21|1994-10-21|NONE|TRUCK|ckages around the car| +33962|393327|30849|4|1|1420.31|0.03|0.05|R|F|1994-07-25|1994-10-12|1994-08-17|DELIVER IN PERSON|SHIP|yly regular escapades are quickly regul| +33962|642644|5157|5|43|68224.23|0.06|0.05|A|F|1994-09-07|1994-09-25|1994-09-22|NONE|TRUCK|es sleep against the quickly even pinto b| +33962|914227|39264|6|12|14894.16|0.06|0.03|A|F|1994-10-27|1994-10-14|1994-11-22|COLLECT COD|REG AIR|ep blithely quickly final theodol| +33963|387525|12540|1|1|1612.51|0.05|0.07|R|F|1992-05-14|1992-03-21|1992-05-26|NONE|AIR|ackages. carefully speci| +33964|471315|21316|1|40|51451.60|0.03|0.05|N|O|1998-10-17|1998-08-11|1998-10-29|COLLECT COD|FOB|ts around the carefully unusual request| +33964|381273|18795|2|38|51461.88|0.00|0.07|N|O|1998-07-19|1998-09-19|1998-08-13|NONE|MAIL|, final request| +33964|49696|24697|3|11|18102.59|0.01|0.01|N|O|1998-08-19|1998-08-23|1998-09-16|COLLECT COD|FOB| about the slyly enti| +33964|228007|15520|4|30|28049.70|0.01|0.05|N|O|1998-08-28|1998-08-30|1998-09-10|COLLECT COD|REG AIR|t the regular theodolites | +33964|103899|28904|5|22|41863.58|0.10|0.06|N|O|1998-07-04|1998-08-24|1998-07-14|TAKE BACK RETURN|RAIL|sly pending| +33964|215612|3125|6|6|9165.60|0.01|0.03|N|O|1998-09-24|1998-08-14|1998-10-10|NONE|MAIL|eposits sleep furiously in place | +33964|784685|47201|7|48|84943.20|0.10|0.01|N|O|1998-09-07|1998-09-14|1998-09-15|COLLECT COD|TRUCK|lly pending theodolite| +33965|196706|9210|1|1|1802.70|0.02|0.06|N|O|1998-07-13|1998-07-28|1998-08-09|TAKE BACK RETURN|FOB|c waters x-ray agai| +33965|26995|26996|2|25|48049.75|0.10|0.00|N|O|1998-09-18|1998-09-22|1998-10-03|TAKE BACK RETURN|MAIL|counts nag carefully about the ideas. car| +33965|693319|18346|3|28|36743.84|0.04|0.05|N|O|1998-07-21|1998-09-03|1998-08-08|NONE|AIR|ng dolphins. blithely final ac| +33965|611849|24362|4|24|42259.44|0.01|0.07|N|O|1998-08-18|1998-07-31|1998-09-16|COLLECT COD|MAIL|ges boost slyly about the quickly unusu| +33965|341558|16571|5|28|44787.12|0.05|0.06|N|O|1998-09-22|1998-09-11|1998-09-27|NONE|AIR|the unusual foxes breach never according to| +33965|553031|40565|6|13|14092.13|0.10|0.07|N|O|1998-09-01|1998-08-15|1998-09-23|COLLECT COD|AIR| blithely. ironically ironic | +33966|465256|2784|1|44|53734.12|0.01|0.08|N|O|1996-12-30|1997-01-14|1997-01-12|NONE|REG AIR|ly ruthless deposits. even, slow accounts| +33966|545503|20524|2|21|32518.08|0.07|0.03|N|O|1997-01-06|1997-02-17|1997-01-10|TAKE BACK RETURN|REG AIR|. final packages among the unu| +33966|266449|41460|3|36|50955.48|0.00|0.01|N|O|1996-12-23|1997-01-21|1997-01-11|TAKE BACK RETURN|SHIP|al requests boost blithely blithe| +33966|203849|41362|4|29|50832.07|0.08|0.04|N|O|1997-03-13|1997-02-02|1997-04-04|TAKE BACK RETURN|FOB|nt asymptotes. regu| +33966|83977|8980|5|24|47063.28|0.02|0.05|N|O|1997-04-13|1997-02-27|1997-04-24|COLLECT COD|MAIL|ts engage furiously amo| +33966|387241|37242|6|16|21251.68|0.08|0.05|N|O|1996-12-27|1997-02-25|1997-01-13|DELIVER IN PERSON|AIR|ress deposits. final, regular ac| +33967|342922|17935|1|5|9824.55|0.03|0.05|N|O|1995-10-29|1995-10-07|1995-11-12|TAKE BACK RETURN|FOB|boost according to the carefully even | +33967|473735|36245|2|10|17087.10|0.03|0.00|N|O|1995-08-23|1995-09-29|1995-09-22|COLLECT COD|TRUCK|beans about the carefull| +33967|55439|42943|3|35|48805.05|0.00|0.02|N|O|1995-09-28|1995-09-14|1995-10-19|COLLECT COD|REG AIR|pinto beans haggle blithely even requ| +33992|346298|8805|1|32|43016.96|0.08|0.08|N|O|1996-09-09|1996-08-04|1996-09-11|TAKE BACK RETURN|RAIL|thely pending accounts kindle quickl| +33992|219162|31667|2|38|41083.70|0.06|0.06|N|O|1996-08-07|1996-07-29|1996-09-05|DELIVER IN PERSON|TRUCK| the carefully special theo| +33992|444495|7004|3|13|18713.11|0.04|0.05|N|O|1996-08-05|1996-08-10|1996-09-02|TAKE BACK RETURN|SHIP|re slyly to the fluffily iron| +33992|627312|27313|4|48|59485.44|0.05|0.05|N|O|1996-09-23|1996-08-14|1996-10-05|NONE|REG AIR|ise. express forges are after the | +33992|216478|41487|5|7|9761.22|0.04|0.01|N|O|1996-07-12|1996-09-01|1996-07-13|NONE|RAIL|ependencies. final pinto | +33993|359079|34094|1|9|10242.54|0.01|0.07|N|O|1998-04-29|1998-07-13|1998-05-28|NONE|FOB|s. regularl| +33993|39998|14999|2|29|56201.71|0.02|0.04|N|O|1998-08-08|1998-07-14|1998-08-15|COLLECT COD|SHIP|c, special accounts. quickly eve| +33993|244759|44760|3|41|69853.34|0.04|0.07|N|O|1998-06-28|1998-07-12|1998-07-16|DELIVER IN PERSON|RAIL|s cajole along the carefu| +33993|661125|23639|4|13|14119.17|0.05|0.01|N|O|1998-08-04|1998-05-20|1998-08-23|COLLECT COD|TRUCK|furiously final packages use| +33994|933060|8097|1|33|36069.66|0.05|0.04|N|O|1997-11-20|1997-10-22|1997-12-01|COLLECT COD|MAIL|r accounts. sly| +33994|923739|48776|2|7|12338.83|0.09|0.05|N|O|1997-09-19|1997-10-18|1997-10-17|TAKE BACK RETURN|AIR|unts haggle blithely. fluffily unusual de| +33994|273644|36150|3|23|37205.49|0.01|0.00|N|O|1997-11-27|1997-10-30|1997-12-03|TAKE BACK RETURN|RAIL|ffily regular excuses. silent accounts b| +33994|129801|17308|4|16|29292.80|0.09|0.07|N|O|1997-11-20|1997-10-23|1997-12-17|COLLECT COD|TRUCK|efully alongside of the carefully express | +33994|550053|37587|5|38|41915.14|0.00|0.08|N|O|1997-11-24|1997-12-03|1997-11-27|DELIVER IN PERSON|TRUCK|y regular pinto beans believe ironic f| +33994|736166|11195|6|21|25244.73|0.06|0.08|N|O|1997-11-20|1997-10-31|1997-12-10|NONE|AIR|ealms affix slyly aft| +33994|730407|5436|7|50|71868.50|0.04|0.04|N|O|1997-11-03|1997-12-02|1997-11-24|COLLECT COD|AIR|y unusual packages. carefully | +33995|942763|5282|1|45|81257.40|0.10|0.05|N|O|1996-09-17|1996-10-16|1996-10-15|DELIVER IN PERSON|TRUCK|cally expre| +33995|5935|30936|2|28|51546.04|0.10|0.08|N|O|1996-12-06|1996-11-25|1996-12-14|COLLECT COD|AIR|iously. sly| +33995|748673|48674|3|41|70587.24|0.09|0.05|N|O|1996-10-14|1996-11-09|1996-10-23|TAKE BACK RETURN|AIR|sts haggle above the careful| +33996|497426|34954|1|3|4270.20|0.05|0.05|R|F|1992-05-24|1992-06-11|1992-06-04|TAKE BACK RETURN|AIR| until the even, pending a| +33997|853133|40685|1|37|40185.33|0.04|0.03|N|O|1998-08-30|1998-09-16|1998-09-13|TAKE BACK RETURN|AIR|dolites boost carefully. carefully rut| +33998|952991|2992|1|6|12263.70|0.05|0.08|A|F|1992-12-16|1992-12-01|1992-12-27|NONE|FOB|nal foxes according to the final packa| +33998|911604|49159|2|30|48466.80|0.01|0.01|R|F|1993-01-09|1992-12-21|1993-01-30|NONE|AIR|anently ironic deposits detect above the| +33999|293543|31059|1|37|56851.61|0.08|0.07|N|O|1998-02-18|1998-02-17|1998-03-09|COLLECT COD|MAIL|nusual instructions. boldly unusual r| +34024|909965|47520|1|1|1974.92|0.10|0.07|A|F|1994-04-13|1994-06-08|1994-05-13|TAKE BACK RETURN|MAIL|uffily. bold ideas cajole ca| +34024|779745|4776|2|9|16422.39|0.09|0.05|R|F|1994-04-29|1994-06-28|1994-05-21|TAKE BACK RETURN|SHIP|equests. regular, even dep| +34024|171810|34314|3|18|33872.58|0.01|0.00|R|F|1994-08-01|1994-05-04|1994-08-09|COLLECT COD|TRUCK|s. final dependencies ca| +34024|605995|31020|4|17|32316.32|0.09|0.01|A|F|1994-05-08|1994-05-06|1994-05-24|TAKE BACK RETURN|FOB|o the deposits. regul| +34024|951190|38748|5|48|59575.20|0.06|0.04|R|F|1994-07-31|1994-06-29|1994-08-03|TAKE BACK RETURN|AIR|e furiously special dolphins. even court| +34024|650259|260|6|37|44741.14|0.08|0.07|A|F|1994-06-26|1994-06-10|1994-07-16|COLLECT COD|RAIL|g to the id| +34025|992910|5430|1|48|96137.76|0.02|0.04|N|O|1996-07-08|1996-05-12|1996-07-25|COLLECT COD|SHIP|ts. regular, express accounts c| +34025|838058|575|2|10|9960.10|0.02|0.03|N|O|1996-07-14|1996-06-08|1996-07-18|COLLECT COD|SHIP|l gifts. carefully silent p| +34025|230607|5616|3|48|73804.32|0.06|0.08|N|O|1996-04-07|1996-05-30|1996-04-21|NONE|MAIL|yly according to the packages. blithely ex| +34026|833948|33949|1|40|75276.00|0.05|0.04|N|O|1996-08-02|1996-06-19|1996-08-22|TAKE BACK RETURN|TRUCK|pinto beans nag about the unusu| +34026|159243|46753|2|32|41671.68|0.07|0.06|N|O|1996-06-07|1996-06-21|1996-06-15|DELIVER IN PERSON|SHIP|ffix blithely carefully| +34027|451315|26334|1|10|12662.90|0.05|0.02|N|O|1998-09-02|1998-07-23|1998-09-09|NONE|TRUCK|usy ideas haggle. permanent| +34027|236765|24278|2|25|42543.75|0.10|0.04|N|O|1998-06-28|1998-09-04|1998-07-26|DELIVER IN PERSON|SHIP|ong the special, ironic platelets. daring p| +34027|296038|21049|3|38|39292.76|0.06|0.04|N|O|1998-09-01|1998-08-11|1998-09-12|DELIVER IN PERSON|MAIL|arefully packages. slyly even patter| +34027|494005|6515|4|20|19979.60|0.00|0.00|N|O|1998-07-04|1998-07-09|1998-08-01|DELIVER IN PERSON|REG AIR|eas. blithely ironic theodolites are. | +34027|733904|46419|5|24|46508.88|0.03|0.05|N|O|1998-09-12|1998-09-01|1998-09-21|DELIVER IN PERSON|MAIL| kindle about| +34028|216184|3697|1|23|25303.91|0.08|0.06|N|O|1997-07-22|1997-08-29|1997-07-25|COLLECT COD|REG AIR|e brave, bold packages are unu| +34028|400186|187|2|37|40187.92|0.02|0.05|N|O|1997-09-12|1997-09-29|1997-09-13|TAKE BACK RETURN|FOB|efully. fluffily pending excuse| +34028|917832|17833|3|22|40695.38|0.07|0.00|N|O|1997-11-02|1997-08-31|1997-11-19|TAKE BACK RETURN|REG AIR|o beans. slyly slow packages run | +34028|992660|30218|4|14|24536.68|0.04|0.07|N|O|1997-10-07|1997-09-27|1997-10-25|NONE|REG AIR|zzle-- fin| +34028|621351|8888|5|47|59799.04|0.10|0.05|N|O|1997-07-24|1997-08-18|1997-08-21|NONE|FOB| along the quickly even packag| +34029|709646|9647|1|38|62913.18|0.04|0.06|N|O|1997-10-12|1997-12-12|1997-11-06|DELIVER IN PERSON|TRUCK|xes wake against the reg| +34029|8394|33395|2|18|23443.02|0.05|0.00|N|O|1997-10-27|1997-12-09|1997-11-04|NONE|REG AIR|eas boost among the ironically i| +34030|785951|35952|1|20|40738.40|0.04|0.02|A|F|1993-05-31|1993-05-08|1993-06-02|COLLECT COD|AIR| fluffily final packages about the slyly | +34030|471446|33956|2|22|31183.24|0.04|0.00|R|F|1993-05-06|1993-06-09|1993-05-23|NONE|AIR|ans above the packages cajole ca| +34030|589554|14577|3|43|70671.79|0.03|0.07|R|F|1993-05-20|1993-05-29|1993-06-08|TAKE BACK RETURN|REG AIR|y ironic accoun| +34030|620460|7997|4|15|20706.45|0.10|0.04|R|F|1993-06-13|1993-06-16|1993-06-22|NONE|AIR|ic theodolites wake | +34030|70112|32614|5|31|33545.41|0.01|0.06|A|F|1993-05-24|1993-06-13|1993-06-19|DELIVER IN PERSON|RAIL| to the careful| +34030|366472|28980|6|5|7692.30|0.04|0.05|A|F|1993-07-02|1993-06-03|1993-07-03|DELIVER IN PERSON|AIR|ly slyly express theodolites. fluffi| +34031|89740|14743|1|6|10378.44|0.05|0.04|A|F|1995-04-15|1995-02-10|1995-04-29|TAKE BACK RETURN|TRUCK|cial ideas integr| +34056|131749|44252|1|41|73010.34|0.04|0.02|N|O|1997-06-09|1997-08-03|1997-06-22|COLLECT COD|RAIL|sleep after the fu| +34056|297390|22401|2|2|2774.76|0.02|0.01|N|O|1997-07-14|1997-07-23|1997-07-28|TAKE BACK RETURN|TRUCK|ake doggedly express depos| +34056|226986|14499|3|43|82257.71|0.00|0.03|N|O|1997-08-14|1997-08-12|1997-08-22|NONE|REG AIR|kages. regu| +34056|943300|5819|4|31|41641.06|0.02|0.01|N|O|1997-06-26|1997-08-10|1997-06-30|NONE|FOB| regular packages d| +34056|42911|17912|5|10|18539.10|0.02|0.00|N|O|1997-09-17|1997-08-28|1997-10-15|DELIVER IN PERSON|RAIL| accounts sleep doggedly theodol| +34056|196500|9004|6|24|38316.00|0.00|0.00|N|O|1997-08-16|1997-08-21|1997-09-13|TAKE BACK RETURN|RAIL|ic deposits around the slyly fi| +34056|563842|38865|7|21|40022.22|0.00|0.05|N|O|1997-09-28|1997-08-23|1997-10-05|TAKE BACK RETURN|TRUCK|the even accou| +34057|485142|22670|1|1|1127.12|0.09|0.06|N|O|1997-09-29|1997-08-25|1997-10-14|DELIVER IN PERSON|MAIL|waters. blithely silent pains haggl| +34057|767989|30505|2|43|88448.85|0.00|0.07|N|O|1997-08-11|1997-07-29|1997-09-08|DELIVER IN PERSON|SHIP|equests. furiously final | +34057|575482|25483|3|22|34264.12|0.10|0.00|N|O|1997-10-01|1997-08-25|1997-10-14|DELIVER IN PERSON|SHIP|ithely even | +34057|116010|3517|4|35|35910.35|0.06|0.02|N|O|1997-10-07|1997-07-31|1997-10-27|TAKE BACK RETURN|RAIL|sly regular packages detect| +34058|965459|15460|1|17|25914.97|0.01|0.02|A|F|1992-09-01|1992-07-22|1992-09-16|DELIVER IN PERSON|AIR|y regular foxes? unusual, special ide| +34058|466781|41800|2|16|27964.16|0.01|0.05|R|F|1992-08-26|1992-07-12|1992-09-10|TAKE BACK RETURN|SHIP|ites. carefully silent pin| +34058|181692|6699|3|44|78042.36|0.00|0.05|A|F|1992-09-09|1992-07-19|1992-09-30|NONE|SHIP|deas sleep? final, unusual platel| +34058|681433|43947|4|43|60819.20|0.10|0.00|A|F|1992-09-13|1992-07-07|1992-09-15|NONE|TRUCK| silent theodolites h| +34058|842522|42523|5|33|48327.84|0.08|0.00|A|F|1992-06-02|1992-08-13|1992-06-08|NONE|RAIL|nal, final packages according to the final| +34059|779288|16834|1|43|58791.75|0.05|0.03|R|F|1993-08-01|1993-08-13|1993-08-12|NONE|MAIL| the express dependencies cajole| +34059|487552|25080|2|28|43106.84|0.08|0.08|R|F|1993-09-25|1993-08-06|1993-10-12|COLLECT COD|FOB|eposits after the blithely express fo| +34059|281009|6020|3|6|5939.94|0.01|0.07|A|F|1993-07-19|1993-07-18|1993-08-17|TAKE BACK RETURN|SHIP|eas thrash slyly regular | +34059|910436|10437|4|10|14463.90|0.03|0.07|A|F|1993-06-24|1993-07-18|1993-07-03|NONE|MAIL| regular foxes cajole furiously ironic| +34059|687431|24971|5|43|60991.20|0.04|0.05|A|F|1993-08-27|1993-08-09|1993-09-15|DELIVER IN PERSON|FOB|long the fluffily express acc| +34059|637572|12597|6|5|7547.70|0.03|0.02|A|F|1993-08-06|1993-07-31|1993-08-24|COLLECT COD|SHIP| packages. carefully regular packages cajo| +34060|457985|33004|1|40|77718.40|0.09|0.04|N|O|1997-02-18|1997-01-23|1997-03-17|TAKE BACK RETURN|REG AIR|luffily about the regular| +34060|339267|1774|2|37|48331.25|0.06|0.06|N|O|1996-12-16|1996-12-06|1996-12-21|DELIVER IN PERSON|REG AIR|ans. fluffily i| +34060|59761|34764|3|4|6883.04|0.06|0.03|N|O|1996-12-20|1996-12-27|1997-01-01|COLLECT COD|FOB| cajole along the furiously unusual | +34060|402687|15196|4|13|20665.58|0.02|0.00|N|O|1997-02-24|1997-01-29|1997-03-09|NONE|FOB|ffily regular a| +34060|959334|9335|5|39|54338.31|0.05|0.05|N|O|1996-12-26|1996-12-28|1996-12-28|TAKE BACK RETURN|RAIL|uctions. even accounts are quickl| +34060|526100|26101|6|27|30404.16|0.02|0.01|N|O|1997-01-03|1997-01-28|1997-02-02|NONE|AIR|ncies cajol| +34061|809099|34132|1|4|4032.20|0.05|0.02|N|O|1997-08-07|1997-09-08|1997-08-11|NONE|MAIL|y pending de| +34061|514275|39296|2|10|12892.50|0.09|0.08|N|O|1997-09-27|1997-08-17|1997-10-21|COLLECT COD|RAIL|y bold accounts. waters cajole| +34061|411743|49268|3|14|23166.08|0.08|0.07|N|O|1997-09-04|1997-09-22|1997-09-18|TAKE BACK RETURN|FOB|kages sleep slyly furiously| +34061|148704|11207|4|1|1752.70|0.05|0.01|N|O|1997-10-01|1997-09-21|1997-10-25|TAKE BACK RETURN|SHIP| even accounts. asymptotes should have to | +34061|260676|10677|5|3|4909.98|0.00|0.03|N|O|1997-08-27|1997-09-21|1997-09-15|NONE|RAIL|to beans. regula| +34061|171294|46301|6|31|42323.99|0.08|0.02|N|O|1997-07-14|1997-09-04|1997-08-10|TAKE BACK RETURN|TRUCK|c accounts along the stealthily express| +34061|935145|47664|7|30|35403.00|0.03|0.01|N|O|1997-09-17|1997-08-30|1997-09-24|COLLECT COD|MAIL|encies haggle blithely slyly ironic re| +34062|972631|10189|1|32|54514.88|0.10|0.04|N|O|1996-11-29|1996-12-14|1996-12-09|NONE|TRUCK|hinly blithely| +34062|2588|27589|2|42|62604.36|0.10|0.07|N|O|1996-11-01|1997-01-08|1996-11-27|DELIVER IN PERSON|RAIL|ously pending requests integrate furiou| +34062|489029|14048|3|36|36648.00|0.01|0.08|N|O|1996-12-12|1996-12-29|1997-01-06|NONE|RAIL|final packages wake according to the qui| +34062|105047|30052|4|30|31561.20|0.03|0.05|N|O|1996-12-29|1996-12-08|1996-12-31|COLLECT COD|MAIL|structions are carefully against the ca| +34062|517607|5138|5|32|51986.56|0.06|0.01|N|O|1997-01-18|1996-11-24|1997-02-14|NONE|REG AIR|efully express accounts| +34062|406214|31231|6|50|56009.50|0.10|0.02|N|O|1996-10-24|1996-12-03|1996-11-20|TAKE BACK RETURN|TRUCK| carefully ironic foxes haggle across the| +34062|223913|48922|7|23|42248.70|0.05|0.02|N|O|1996-12-05|1996-11-14|1996-12-18|NONE|REG AIR| impress abo| +34063|298405|10911|1|42|58942.38|0.05|0.06|R|F|1994-09-25|1994-09-06|1994-10-01|TAKE BACK RETURN|FOB|t express, final a| +34088|898669|11187|1|21|35020.02|0.01|0.07|N|O|1997-05-29|1997-05-12|1997-06-11|COLLECT COD|REG AIR|deposits. blithely | +34089|333329|33330|1|15|20434.65|0.01|0.01|N|O|1997-07-03|1997-07-23|1997-07-18|DELIVER IN PERSON|FOB| quickly iro| +34089|256335|43851|2|17|21952.44|0.02|0.03|N|O|1997-08-13|1997-08-09|1997-09-11|DELIVER IN PERSON|MAIL|r decoys use fluffily above the care| +34089|220728|8241|3|23|37920.33|0.06|0.00|N|O|1997-08-06|1997-08-30|1997-08-15|TAKE BACK RETURN|RAIL|sits promise fluffily a| +34089|769639|32155|4|44|75178.40|0.05|0.02|N|O|1997-09-17|1997-07-20|1997-10-15|TAKE BACK RETURN|RAIL|ronic requests. slyl| +34089|313786|13787|5|3|5399.31|0.10|0.05|N|O|1997-07-03|1997-08-10|1997-07-11|DELIVER IN PERSON|AIR|ar accounts integrate quickly| +34089|791663|4179|6|15|26319.45|0.06|0.02|N|O|1997-08-07|1997-09-15|1997-08-17|NONE|REG AIR|ully express instructi| +34089|473206|10734|7|19|22404.42|0.06|0.07|N|O|1997-07-06|1997-08-03|1997-07-29|TAKE BACK RETURN|AIR|ss, silent dependencies d| +34090|159385|21889|1|5|7221.90|0.00|0.03|A|F|1995-04-23|1995-02-15|1995-05-08|NONE|REG AIR|n, regular packag| +34090|769294|31810|2|18|24538.68|0.02|0.08|R|F|1995-04-09|1995-02-03|1995-05-01|COLLECT COD|TRUCK|leep slyly a| +34090|522194|34705|3|18|21891.06|0.02|0.03|A|F|1995-04-19|1995-03-06|1995-05-01|DELIVER IN PERSON|MAIL|lar foxes alongside of the furious| +34090|513059|25570|4|50|53601.50|0.01|0.08|R|F|1995-03-30|1995-03-29|1995-04-07|TAKE BACK RETURN|RAIL| sleep accor| +34091|534720|22251|1|25|43867.50|0.06|0.07|N|O|1998-01-22|1998-01-05|1998-01-23|COLLECT COD|FOB| after the final deposits. furiously| +34091|26614|39115|2|30|46218.30|0.07|0.07|N|O|1997-11-06|1998-01-05|1997-12-06|DELIVER IN PERSON|REG AIR|eas affix regular platelets. furiously sile| +34091|299598|12104|3|14|22366.12|0.01|0.02|N|O|1998-01-09|1997-12-13|1998-02-07|NONE|SHIP| silently sly packages above the| +34091|341977|4484|4|7|14132.72|0.04|0.05|N|O|1997-11-26|1997-12-20|1997-12-08|TAKE BACK RETURN|FOB|ages wake at the furiously even pi| +34091|596012|46013|5|15|16619.85|0.09|0.04|N|O|1998-01-20|1997-12-06|1998-01-26|DELIVER IN PERSON|FOB|wake silent courts. iro| +34091|162356|12357|6|17|24111.95|0.08|0.00|N|O|1997-11-27|1997-12-20|1997-12-04|TAKE BACK RETURN|RAIL|fully alongside of the p| +34092|633822|21359|1|32|56185.28|0.03|0.05|A|F|1992-10-28|1992-11-14|1992-10-29|DELIVER IN PERSON|TRUCK|g slyly final requests. final| +34092|634465|9490|2|36|50379.48|0.07|0.04|A|F|1992-11-05|1992-10-27|1992-11-23|DELIVER IN PERSON|REG AIR| even foxes wake ab| +34092|451463|13973|3|24|33946.56|0.10|0.03|R|F|1992-09-12|1992-11-10|1992-09-17|COLLECT COD|REG AIR|uests sleep above the furiously expre| +34093|527276|39787|1|44|57343.00|0.09|0.05|R|F|1993-07-07|1993-07-02|1993-08-05|NONE|AIR|bold packages. carefully final requests | +34093|926328|1365|2|4|5417.12|0.05|0.01|R|F|1993-07-24|1993-05-13|1993-08-20|COLLECT COD|FOB|packages. brave ideas nag quickly above th| +34093|786535|24081|3|49|79453.50|0.00|0.04|R|F|1993-05-04|1993-05-16|1993-05-27|TAKE BACK RETURN|REG AIR| final ideas. blit| +34093|293563|18574|4|35|54479.25|0.09|0.01|A|F|1993-06-22|1993-06-08|1993-07-06|NONE|TRUCK|fily ironic packages. final, unu| +34093|908287|33324|5|6|7771.44|0.00|0.07|A|F|1993-07-07|1993-05-08|1993-07-31|NONE|FOB|ly final ideas along the f| +34094|847726|22759|1|19|31799.92|0.06|0.03|N|O|1997-06-16|1997-06-16|1997-07-02|DELIVER IN PERSON|RAIL|es. ironic, final theodolites sle| +34095|9435|21936|1|12|16133.16|0.09|0.03|N|O|1997-07-05|1997-08-11|1997-08-03|TAKE BACK RETURN|SHIP|ounts. carefully| +34095|559424|34447|2|4|5933.60|0.06|0.04|N|O|1997-08-04|1997-08-15|1997-08-28|TAKE BACK RETURN|SHIP|the ironic th| +34120|988444|13483|1|48|73555.20|0.03|0.00|A|F|1992-10-19|1992-11-30|1992-11-05|COLLECT COD|FOB|even frays cajole | +34120|772455|47486|2|29|44295.18|0.10|0.02|R|F|1992-12-09|1992-10-16|1992-12-10|COLLECT COD|SHIP|ts use furiously ironic pinto| +34121|513327|25838|1|29|38868.70|0.05|0.08|A|F|1994-03-22|1994-01-06|1994-04-21|TAKE BACK RETURN|AIR| packages boost c| +34121|479814|42324|2|33|59195.07|0.08|0.07|R|F|1994-01-03|1993-12-23|1994-01-23|NONE|REG AIR|among the bold requests. blithely regu| +34121|224901|24902|3|4|7303.56|0.08|0.07|R|F|1994-03-08|1994-01-31|1994-03-28|TAKE BACK RETURN|FOB|ions. quic| +34121|907627|7628|4|31|50671.98|0.04|0.01|A|F|1994-02-23|1993-12-30|1994-03-17|DELIVER IN PERSON|SHIP|y regular excuses cajole blithely. blithel| +34121|481291|18819|5|16|20356.32|0.02|0.04|R|F|1994-02-19|1994-01-10|1994-03-09|COLLECT COD|REG AIR|lar ideas wa| +34121|54660|29663|6|16|25834.56|0.09|0.05|R|F|1994-03-08|1994-01-07|1994-03-19|DELIVER IN PERSON|RAIL| tithes! fluffily daring wa| +34121|668921|18922|7|26|49137.14|0.00|0.04|A|F|1994-01-15|1994-02-16|1994-01-24|TAKE BACK RETURN|RAIL|ng the slyly| +34122|547565|22586|1|43|69339.22|0.05|0.02|A|F|1993-07-05|1993-06-28|1993-07-14|DELIVER IN PERSON|RAIL|nto beans mold fluff| +34122|914248|14249|2|5|6311.00|0.08|0.04|A|F|1993-07-29|1993-07-14|1993-08-26|NONE|MAIL|thrash carefully bold t| +34122|752688|40234|3|29|50478.85|0.07|0.08|A|F|1993-08-16|1993-07-17|1993-08-25|COLLECT COD|FOB|ely express theodolites. regular accounts s| +34122|426048|1065|4|48|46752.96|0.00|0.05|A|F|1993-06-23|1993-07-16|1993-07-18|NONE|MAIL|lyly around the fi| +34122|581624|44136|5|43|73340.80|0.02|0.04|R|F|1993-05-27|1993-06-24|1993-06-02|NONE|REG AIR|ar packages.| +34122|339536|39537|6|23|36236.96|0.05|0.00|R|F|1993-05-14|1993-06-29|1993-06-01|COLLECT COD|RAIL|nal requests wake slyly speci| +34122|579388|29389|7|44|64563.84|0.07|0.03|R|F|1993-07-26|1993-06-07|1993-08-09|TAKE BACK RETURN|RAIL|al, express accou| +34123|765349|40380|1|44|62229.64|0.09|0.05|R|F|1994-11-29|1994-10-02|1994-12-22|TAKE BACK RETURN|RAIL|xcuses sublate beside the regular, si| +34123|210033|47546|2|23|21689.46|0.01|0.04|A|F|1994-08-19|1994-09-15|1994-08-29|TAKE BACK RETURN|TRUCK|gular packages. final,| +34123|14834|2335|3|35|61209.05|0.03|0.01|R|F|1994-08-27|1994-10-18|1994-09-19|TAKE BACK RETURN|TRUCK|es. blithely final pinto beans dazzl| +34123|310222|22729|4|10|12322.10|0.09|0.02|R|F|1994-11-01|1994-09-14|1994-11-16|DELIVER IN PERSON|AIR|ts wake. carefully bold accounts play acco| +34124|992221|17260|1|23|30203.14|0.03|0.03|A|F|1995-03-12|1995-05-15|1995-03-22|NONE|RAIL|ges. never final accounts cajo| +34124|257074|44590|2|3|3093.18|0.09|0.03|R|F|1995-04-05|1995-05-06|1995-04-21|DELIVER IN PERSON|TRUCK|nto beans grow blithely| +34125|80596|43098|1|49|77252.91|0.03|0.00|N|O|1998-07-30|1998-09-07|1998-08-29|NONE|REG AIR|ding ideas sleep unusual accounts| +34125|561969|11970|2|12|24371.28|0.10|0.08|N|O|1998-09-02|1998-08-04|1998-09-04|NONE|AIR|. special pinto beans use blithely. | +34126|751055|13571|1|18|19908.36|0.05|0.01|R|F|1992-10-22|1992-11-04|1992-11-16|DELIVER IN PERSON|FOB| slyly silent depos| +34127|937826|25381|1|29|54049.62|0.04|0.07|N|O|1998-06-13|1998-06-01|1998-07-01|COLLECT COD|AIR|ate about the blithe| +34127|33570|46071|2|23|34582.11|0.07|0.02|N|O|1998-06-30|1998-05-29|1998-07-12|DELIVER IN PERSON|REG AIR|lly regular ideas haggle ironic theodolites| +34127|209308|46821|3|44|53560.76|0.04|0.06|N|O|1998-07-21|1998-05-15|1998-08-01|TAKE BACK RETURN|FOB|ully according t| +34127|824388|49421|4|4|5249.36|0.09|0.00|N|O|1998-06-18|1998-05-02|1998-07-01|DELIVER IN PERSON|REG AIR|thely unusual, r| +34127|472957|22958|5|14|27019.02|0.05|0.04|N|O|1998-05-06|1998-05-01|1998-06-03|COLLECT COD|FOB|ing requests| +34127|975619|658|6|3|5083.71|0.08|0.07|N|O|1998-04-19|1998-05-24|1998-05-17|TAKE BACK RETURN|REG AIR|ithely about the unusual d| +34152|318293|30800|1|25|32782.00|0.09|0.05|R|F|1995-01-06|1995-01-13|1995-01-28|DELIVER IN PERSON|RAIL|ong the acco| +34152|536087|36088|2|5|5615.30|0.07|0.02|R|F|1994-12-11|1994-12-16|1994-12-26|DELIVER IN PERSON|RAIL|riously express deposits-- regular, regular| +34152|998323|23362|3|4|5685.12|0.10|0.04|A|F|1994-11-20|1995-01-22|1994-12-10|TAKE BACK RETURN|TRUCK|ons wake dolphins? quickly | +34152|806147|18664|4|29|30539.90|0.07|0.08|A|F|1995-01-18|1994-12-23|1995-02-09|DELIVER IN PERSON|TRUCK|aphs haggle according to the reques| +34153|714137|39166|1|41|47195.10|0.07|0.01|N|O|1996-11-12|1996-11-09|1996-12-07|NONE|SHIP|s across the sly| +34154|111768|49275|1|14|24916.64|0.10|0.07|R|F|1994-08-28|1994-07-09|1994-09-05|TAKE BACK RETURN|RAIL|eposits. slyly silent asymptotes | +34154|479789|29790|2|6|10612.56|0.10|0.06|R|F|1994-06-20|1994-08-03|1994-07-18|NONE|MAIL|d deposits wake carefully. regula| +34154|806738|31771|3|10|16446.90|0.00|0.03|A|F|1994-08-05|1994-06-16|1994-08-18|TAKE BACK RETURN|TRUCK|lyly. carefully bold courts haggle somet| +34154|843607|43608|4|3|4651.68|0.08|0.04|A|F|1994-09-08|1994-07-07|1994-09-17|NONE|REG AIR|beans maintain furiously across the ideas!| +34154|488926|13945|5|35|67021.50|0.02|0.00|R|F|1994-06-16|1994-06-23|1994-07-09|TAKE BACK RETURN|MAIL|its impress furiously blithely sile| +34155|558239|8240|1|1|1297.21|0.09|0.08|A|F|1993-11-16|1993-11-21|1993-12-16|COLLECT COD|AIR|about the regu| +34155|320403|45416|2|30|42701.70|0.07|0.03|R|F|1993-09-14|1993-11-12|1993-10-08|TAKE BACK RETURN|RAIL|odolites across| +34156|286906|11917|1|5|9464.45|0.08|0.00|R|F|1994-06-01|1994-07-18|1994-06-25|TAKE BACK RETURN|MAIL|e slyly final packages-- carefully| +34156|22167|22168|2|36|39209.76|0.08|0.03|R|F|1994-09-07|1994-08-07|1994-09-30|NONE|TRUCK| lose carefully. caref| +34156|559674|47208|3|12|20803.80|0.05|0.08|A|F|1994-08-18|1994-07-26|1994-09-06|DELIVER IN PERSON|REG AIR|ronic, express | +34156|428892|28893|4|21|38238.27|0.00|0.05|A|F|1994-09-02|1994-07-02|1994-09-28|TAKE BACK RETURN|TRUCK|ular asymptotes. blithely bra| +34156|381143|18665|5|16|19586.08|0.10|0.07|A|F|1994-06-14|1994-07-03|1994-07-09|COLLECT COD|REG AIR|ugouts. caref| +34156|854470|29505|6|38|54128.34|0.05|0.00|R|F|1994-06-25|1994-08-15|1994-07-18|NONE|TRUCK|c foxes detect furiously furiously final | +34157|611471|23984|1|44|60827.36|0.09|0.02|N|O|1995-07-10|1995-06-05|1995-07-13|DELIVER IN PERSON|AIR| instructions. qui| +34157|981459|43979|2|4|6161.64|0.05|0.07|R|F|1995-04-21|1995-05-09|1995-05-12|TAKE BACK RETURN|SHIP|to beans along the fluffily| +34157|369496|32004|3|13|20351.24|0.04|0.03|N|F|1995-05-26|1995-05-17|1995-06-18|DELIVER IN PERSON|MAIL|eposits hinder blithely acros| +34157|115574|3081|4|1|1589.57|0.01|0.03|A|F|1995-05-10|1995-05-11|1995-05-19|COLLECT COD|MAIL|ccounts use regul| +34158|396482|8990|1|5|7892.35|0.04|0.00|A|F|1994-09-06|1994-11-07|1994-09-24|NONE|REG AIR|ly carefully pending theodolites.| +34158|671814|34328|2|20|35715.60|0.04|0.05|A|F|1994-11-17|1994-10-20|1994-12-12|COLLECT COD|AIR|olites haggle quickly slowly s| +34159|722087|9630|1|41|45471.05|0.10|0.02|A|F|1993-12-20|1994-01-02|1994-01-01|COLLECT COD|RAIL|y furiously pending requests. | +34159|115292|2799|2|8|10458.32|0.08|0.03|A|F|1993-11-26|1994-01-14|1993-12-19|COLLECT COD|RAIL| silent, special| +34159|706950|19465|3|19|37181.48|0.09|0.01|R|F|1994-02-20|1994-01-21|1994-02-24|DELIVER IN PERSON|RAIL|nstructions. ideas are. furiously ironic| +34159|696878|9392|4|28|52495.52|0.05|0.01|R|F|1994-03-11|1994-02-08|1994-03-28|NONE|TRUCK|riously across the busily pending requests| +34159|415273|27782|5|32|38024.00|0.09|0.04|R|F|1994-03-13|1994-01-24|1994-03-21|TAKE BACK RETURN|RAIL|ag slyly slyly regular reques| +34184|650168|37708|1|37|41370.81|0.06|0.01|N|O|1998-07-26|1998-05-23|1998-08-04|COLLECT COD|AIR|ly according to t| +34184|371778|21779|2|8|14798.08|0.07|0.01|N|O|1998-05-30|1998-05-13|1998-06-01|DELIVER IN PERSON|AIR|latelets use quickly across | +34184|464094|14095|3|3|3174.21|0.07|0.02|N|O|1998-07-23|1998-05-31|1998-07-29|NONE|MAIL|hily special hockey players hang blit| +34185|416413|28922|1|42|55834.38|0.09|0.02|N|O|1996-02-28|1996-01-02|1996-03-17|NONE|REG AIR|gainst the blithely unusu| +34185|642562|17587|2|44|66199.32|0.00|0.01|N|O|1996-02-03|1996-01-31|1996-02-04|TAKE BACK RETURN|REG AIR|endencies nag furiously | +34185|536919|11940|3|38|74323.82|0.04|0.05|N|O|1996-01-02|1996-01-25|1996-01-07|TAKE BACK RETURN|AIR| poach slyly bold requests. pen| +34185|990165|15204|4|27|33888.24|0.03|0.02|N|O|1995-12-20|1996-01-03|1996-01-05|DELIVER IN PERSON|MAIL|fily final pinto beans haggle| +34185|696109|8623|5|31|34257.17|0.03|0.06|N|O|1996-02-21|1996-01-08|1996-03-12|TAKE BACK RETURN|MAIL|ove the slyly slow instr| +34185|498438|23457|6|35|50274.35|0.09|0.08|N|O|1996-01-22|1995-12-27|1996-02-17|TAKE BACK RETURN|SHIP|bold theodolites| +34186|186292|48796|1|3|4134.87|0.00|0.01|N|O|1997-12-28|1997-11-26|1998-01-05|NONE|RAIL|uickly unusual theodolite| +34186|6189|43690|2|36|39426.48|0.04|0.01|N|O|1997-11-25|1997-10-30|1997-12-25|COLLECT COD|REG AIR|ake slyly. bli| +34186|3972|3973|3|34|63782.98|0.01|0.04|N|O|1997-09-27|1997-11-22|1997-10-01|COLLECT COD|FOB| carefully blithe foxes cajole. | +34187|453502|41030|1|50|72774.00|0.09|0.05|A|F|1994-01-21|1994-03-09|1994-02-04|COLLECT COD|FOB|riously furiously silent requests.| +34187|172|25173|2|33|35381.61|0.05|0.03|R|F|1994-03-24|1994-02-13|1994-03-25|TAKE BACK RETURN|TRUCK|ole blithely final f| +34187|876692|39210|3|11|18355.15|0.00|0.00|A|F|1994-03-17|1994-02-05|1994-04-16|COLLECT COD|RAIL|g quickly. careful| +34188|514364|1895|1|3|4135.02|0.03|0.04|R|F|1994-03-06|1994-04-06|1994-03-16|COLLECT COD|MAIL| ironic foxes| +34188|907315|44870|2|32|42312.64|0.10|0.04|R|F|1994-05-02|1994-04-26|1994-05-10|NONE|REG AIR|ly regular accounts. slyly pending packages| +34188|230791|18304|3|29|49931.62|0.06|0.05|A|F|1994-03-13|1994-04-29|1994-03-19|COLLECT COD|TRUCK|y even accounts. carefully f| +34188|904115|29152|4|40|44762.80|0.10|0.04|A|F|1994-05-31|1994-04-03|1994-06-26|TAKE BACK RETURN|REG AIR|fluffy package| +34188|459604|47132|5|43|67233.94|0.10|0.02|R|F|1994-06-20|1994-05-06|1994-07-20|COLLECT COD|RAIL|nts. carefully final plate| +34188|557611|20123|6|25|41714.75|0.10|0.08|A|F|1994-05-04|1994-04-26|1994-05-22|TAKE BACK RETURN|AIR| packages han| +34188|759383|9384|7|10|14423.50|0.03|0.02|R|F|1994-04-19|1994-05-28|1994-05-05|NONE|FOB| even asymptotes. slowly pending dep| +34189|946479|34034|1|42|64068.06|0.09|0.05|R|F|1993-11-05|1993-09-04|1993-11-17|NONE|TRUCK|s packages. finally ironic pa| +34190|800192|37741|1|40|43686.00|0.08|0.01|N|O|1997-01-16|1996-11-19|1997-02-05|COLLECT COD|REG AIR|osits. stealthily final deposits | +34190|814716|14717|2|5|8153.35|0.03|0.01|N|O|1996-09-30|1996-11-16|1996-10-20|TAKE BACK RETURN|REG AIR|ly express acco| +34190|925247|12802|3|37|47071.40|0.03|0.07|N|O|1996-10-19|1996-11-17|1996-11-16|DELIVER IN PERSON|TRUCK|l escapades | +34190|610756|35781|4|12|20000.64|0.09|0.08|N|O|1996-12-15|1996-12-23|1996-12-24|NONE|SHIP| after the furiously pendin| +34190|959749|9750|5|21|37982.70|0.08|0.07|N|O|1997-01-13|1996-12-17|1997-01-21|TAKE BACK RETURN|REG AIR|l requests boost furiously. sl| +34190|486943|11962|6|16|30878.72|0.09|0.05|N|O|1997-01-09|1996-12-24|1997-01-11|TAKE BACK RETURN|RAIL|ts. packages about the slyly dogged| +34190|49205|24206|7|27|31163.40|0.00|0.06|N|O|1997-01-13|1996-11-02|1997-01-26|TAKE BACK RETURN|MAIL|packages. doggedly even asymptotes use qu| +34191|983107|8146|1|18|21421.08|0.03|0.08|N|O|1997-07-23|1997-07-18|1997-08-15|TAKE BACK RETURN|FOB|the quickly regular de| +34191|69459|31961|2|13|18569.85|0.08|0.02|N|O|1997-08-15|1997-07-22|1997-08-23|DELIVER IN PERSON|REG AIR| accounts wake carefully pending orbits.| +34191|387602|110|3|40|67583.60|0.08|0.01|N|O|1997-08-25|1997-08-11|1997-09-17|TAKE BACK RETURN|TRUCK|r accounts. | +34216|246517|21526|1|48|70248.00|0.03|0.07|N|O|1996-06-07|1996-05-26|1996-06-27|COLLECT COD|SHIP|ages. carefully regular | +34216|201826|39339|2|33|57017.73|0.09|0.01|N|O|1996-05-25|1996-05-04|1996-06-06|TAKE BACK RETURN|MAIL|sual requests. unusual platelets sl| +34216|85094|22598|3|19|20502.71|0.02|0.03|N|O|1996-05-11|1996-05-22|1996-06-04|NONE|MAIL| theodolites haggl| +34216|162568|78|4|4|6522.24|0.09|0.08|N|O|1996-05-20|1996-05-28|1996-06-17|DELIVER IN PERSON|MAIL| the pending excuses. quickly even | +34217|600947|948|1|10|18479.10|0.00|0.03|A|F|1993-06-10|1993-07-05|1993-06-26|COLLECT COD|MAIL|e slyly busy pi| +34217|113403|13404|2|17|24078.80|0.03|0.00|R|F|1993-06-18|1993-08-10|1993-07-05|TAKE BACK RETURN|RAIL|tions. idly | +34217|947551|47552|3|22|35167.22|0.03|0.07|A|F|1993-08-11|1993-07-26|1993-09-07|COLLECT COD|TRUCK|dolites sleep| +34217|484131|46641|4|45|50179.95|0.00|0.06|R|F|1993-06-11|1993-08-08|1993-07-08|DELIVER IN PERSON|REG AIR|y special courts maintain about the final| +34217|773411|10957|5|3|4453.14|0.05|0.04|A|F|1993-08-28|1993-06-27|1993-09-07|DELIVER IN PERSON|MAIL|express pinto bea| +34218|491008|28536|1|10|9989.80|0.08|0.07|R|F|1992-11-04|1992-10-31|1992-11-12|NONE|AIR|unusual deposits. furiously regular request| +34219|872854|47889|1|41|74899.21|0.02|0.01|N|O|1997-04-16|1997-04-07|1997-04-23|DELIVER IN PERSON|FOB|hely final | +34219|52614|2615|2|47|73630.67|0.09|0.00|N|O|1997-06-25|1997-05-21|1997-07-10|COLLECT COD|RAIL|eodolites. pending, ironic dep| +34219|275370|381|3|38|51123.68|0.04|0.08|N|O|1997-05-17|1997-05-13|1997-06-16|COLLECT COD|MAIL|ounts nag regularly i| +34219|135311|10316|4|6|8077.86|0.05|0.07|N|O|1997-03-07|1997-04-07|1997-03-27|TAKE BACK RETURN|MAIL|lyly even requests sleep a| +34220|453284|3285|1|17|21033.42|0.10|0.02|A|F|1995-04-06|1995-03-06|1995-04-24|COLLECT COD|TRUCK|ffily enticing packages;| +34220|339325|39326|2|1|1364.31|0.00|0.03|R|F|1995-03-13|1995-02-14|1995-04-07|DELIVER IN PERSON|SHIP|special sautern| +34221|18773|6274|1|13|21993.01|0.04|0.05|N|O|1996-04-19|1996-07-06|1996-04-29|DELIVER IN PERSON|FOB|are quickly. fluffily | +34221|505082|5083|2|14|15218.84|0.10|0.02|N|O|1996-05-11|1996-05-26|1996-05-18|TAKE BACK RETURN|SHIP|counts sleep always alongside of the ca| +34221|902590|40145|3|30|47776.50|0.03|0.04|N|O|1996-06-05|1996-06-06|1996-06-22|TAKE BACK RETURN|MAIL|bove the special, re| +34222|565203|15204|1|29|36777.22|0.06|0.00|N|O|1998-07-19|1998-07-29|1998-08-08|DELIVER IN PERSON|TRUCK|. furiously regular theodolites cajol| +34222|355749|5750|2|42|75798.66|0.00|0.02|N|O|1998-07-29|1998-06-08|1998-08-27|DELIVER IN PERSON|AIR|- express, unu| +34222|69390|6894|3|34|46219.26|0.09|0.04|N|O|1998-07-01|1998-07-08|1998-07-19|COLLECT COD|MAIL|lent foxes wake| +34222|228266|28267|4|9|10748.25|0.10|0.03|N|O|1998-06-15|1998-07-15|1998-06-29|COLLECT COD|MAIL|refully unusual packages. requests cajole f| +34222|464024|14025|5|9|8892.00|0.04|0.05|N|O|1998-06-05|1998-07-20|1998-07-01|COLLECT COD|RAIL|ven requests sleep sl| +34222|838151|668|6|12|13069.32|0.00|0.01|N|O|1998-06-11|1998-06-26|1998-07-04|DELIVER IN PERSON|TRUCK|ymptotes play permanently. i| +34222|798917|48918|7|40|80635.20|0.04|0.00|N|O|1998-05-10|1998-06-24|1998-06-07|DELIVER IN PERSON|AIR|s. carefully regula| +34223|395751|45752|1|31|57248.94|0.08|0.01|N|O|1995-06-29|1995-07-03|1995-07-13|DELIVER IN PERSON|SHIP|unusual ideas are carefully regular | +34223|384328|21850|2|26|36720.06|0.10|0.02|R|F|1995-06-08|1995-07-05|1995-06-12|TAKE BACK RETURN|SHIP|ly even requests haggle slyly a| +34248|157140|19644|1|2|2394.28|0.10|0.08|R|F|1993-08-17|1993-08-03|1993-08-20|DELIVER IN PERSON|RAIL|lly pending de| +34248|42297|4798|2|44|54528.76|0.08|0.07|R|F|1993-07-01|1993-08-14|1993-07-17|TAKE BACK RETURN|MAIL|lets. even pinto beans are quickly. regu| +34248|877526|15078|3|44|66153.12|0.08|0.02|A|F|1993-07-06|1993-07-10|1993-07-24|NONE|FOB| among the waters| +34249|56347|43851|1|40|52133.60|0.05|0.04|A|F|1994-10-04|1994-10-02|1994-10-28|DELIVER IN PERSON|MAIL|urts wake carefully along the furio| +34249|16680|29181|2|13|20756.84|0.03|0.08|R|F|1994-09-30|1994-10-12|1994-10-05|DELIVER IN PERSON|MAIL|y about the express, final pains: blit| +34249|333856|8869|3|8|15118.72|0.09|0.02|R|F|1994-10-16|1994-10-21|1994-10-20|COLLECT COD|AIR|refully express packages use ca| +34249|106480|18983|4|11|16351.28|0.03|0.06|A|F|1994-09-26|1994-09-29|1994-10-25|TAKE BACK RETURN|SHIP|he slyly express packages. blithely e| +34249|598476|36010|5|45|70850.25|0.07|0.05|A|F|1994-10-03|1994-09-21|1994-10-27|COLLECT COD|REG AIR|d. carefully even | +34249|579636|42148|6|45|77202.45|0.07|0.04|A|F|1994-10-21|1994-10-01|1994-10-27|DELIVER IN PERSON|SHIP|of the even, even accounts | +34249|928116|40635|7|8|9152.56|0.08|0.08|R|F|1994-09-11|1994-10-19|1994-10-03|TAKE BACK RETURN|RAIL|its cajole quickly across the quickly final| +34250|844168|44169|1|15|16681.80|0.00|0.08|N|O|1998-02-21|1998-02-19|1998-03-07|TAKE BACK RETURN|MAIL|thely regular pint| +34250|929657|4694|2|40|67464.40|0.03|0.03|N|O|1998-03-16|1998-02-24|1998-04-07|DELIVER IN PERSON|AIR|ounts use furiously. carefully b| +34251|222375|34880|1|47|60975.92|0.09|0.00|R|F|1993-08-14|1993-09-14|1993-08-21|NONE|REG AIR|es. furiously express platelets cajole ca| +34251|439940|2449|2|28|52637.76|0.02|0.03|R|F|1993-10-16|1993-09-17|1993-11-07|COLLECT COD|REG AIR|s cajole above the carefully final a| +34251|57597|45101|3|21|32646.39|0.09|0.05|A|F|1993-08-11|1993-09-05|1993-08-14|TAKE BACK RETURN|SHIP|egular deposits. deposits across the | +34251|31601|19102|4|21|32184.60|0.03|0.06|R|F|1993-10-17|1993-09-15|1993-10-19|TAKE BACK RETURN|REG AIR|ecial, pending accounts wake about th| +34251|104924|4925|5|5|9644.60|0.07|0.08|R|F|1993-10-08|1993-08-18|1993-10-20|NONE|SHIP|nal courts. ironic, | +34252|797802|35348|1|30|56993.10|0.00|0.08|N|O|1996-06-16|1996-08-11|1996-07-10|NONE|MAIL|de of the furiously iro| +34252|654571|17085|2|38|57970.52|0.02|0.00|N|O|1996-06-02|1996-07-11|1996-06-06|NONE|RAIL|nts wake careful| +34252|366084|16085|3|38|43702.66|0.09|0.02|N|O|1996-07-27|1996-07-17|1996-08-18|DELIVER IN PERSON|REG AIR| even pinto | +34252|772102|47133|4|17|19959.19|0.00|0.04|N|O|1996-07-05|1996-06-28|1996-07-24|DELIVER IN PERSON|REG AIR|ld sauternes! special packages about the f| +34252|717948|30463|5|48|94363.68|0.02|0.04|N|O|1996-07-01|1996-07-17|1996-07-22|DELIVER IN PERSON|AIR| fluffily final warthogs | +34252|545326|7837|6|49|67193.70|0.03|0.00|N|O|1996-09-05|1996-08-07|1996-09-16|DELIVER IN PERSON|SHIP|oxes. furiously silent packages nag sl| +34252|289032|1538|7|42|42882.84|0.05|0.06|N|O|1996-07-08|1996-06-28|1996-07-22|NONE|TRUCK|into beans haggle furiously regular deposit| +34253|756955|19471|1|47|94560.24|0.10|0.03|A|F|1992-10-06|1992-10-04|1992-10-11|TAKE BACK RETURN|TRUCK|al requests use furiously furiously iron| +34253|128833|3838|2|21|39098.43|0.07|0.03|R|F|1992-08-06|1992-09-09|1992-08-16|COLLECT COD|MAIL|special theodolites | +34253|282953|7964|3|17|32910.98|0.02|0.02|A|F|1992-09-14|1992-09-29|1992-09-16|NONE|SHIP|uld have to | +34254|298850|36366|1|17|31430.28|0.03|0.06|A|F|1994-02-12|1994-02-10|1994-02-13|DELIVER IN PERSON|MAIL| haggle carefully waters. carefully iro| +34255|663960|26474|1|24|46174.32|0.06|0.00|R|F|1993-11-30|1994-01-31|1993-12-27|DELIVER IN PERSON|AIR|st quickly | +34255|171696|9206|2|15|26515.35|0.08|0.06|R|F|1993-11-27|1994-01-18|1993-12-12|DELIVER IN PERSON|RAIL|platelets nag | +34255|681139|31140|3|47|52644.70|0.03|0.03|A|F|1993-12-23|1994-01-16|1993-12-28|TAKE BACK RETURN|FOB|ong the blithely final re| +34255|889886|27438|4|28|52523.52|0.03|0.01|R|F|1993-12-22|1993-12-26|1993-12-25|NONE|RAIL|s; final grouches wake quickly expr| +34255|299291|49292|5|30|38708.40|0.05|0.07|R|F|1994-02-17|1993-12-29|1994-02-25|DELIVER IN PERSON|MAIL|ajole alongsi| +34255|180792|18302|6|4|7491.16|0.09|0.05|A|F|1994-02-16|1993-12-24|1994-03-13|DELIVER IN PERSON|SHIP|ly among the even, bold ide| +34255|554705|4706|7|33|58069.44|0.00|0.04|R|F|1994-02-21|1993-12-29|1994-03-07|COLLECT COD|AIR|ges. ironic courts about the slyly regular| +34280|920976|8531|1|25|49923.25|0.02|0.08|N|O|1998-04-28|1998-04-19|1998-05-11|COLLECT COD|SHIP|ts. blithely regula| +34280|842472|30021|2|35|49505.05|0.06|0.07|N|O|1998-04-23|1998-05-22|1998-05-04|DELIVER IN PERSON|AIR|oss the fu| +34280|418671|6196|3|37|58817.05|0.04|0.08|N|O|1998-06-15|1998-04-01|1998-07-11|NONE|MAIL|the furiously special accounts haggle ne| +34280|590490|28024|4|38|60057.86|0.10|0.03|N|O|1998-06-09|1998-05-16|1998-06-26|DELIVER IN PERSON|AIR|s cajole quickly packages. fin| +34280|361809|49331|5|38|71090.02|0.00|0.07|N|O|1998-05-20|1998-05-02|1998-06-11|COLLECT COD|RAIL|nal requests. requests sleep sly p| +34280|917236|42273|6|42|52633.98|0.00|0.01|N|O|1998-05-05|1998-05-22|1998-05-25|TAKE BACK RETURN|RAIL|ackages. even, fi| +34281|387194|24716|1|32|40997.76|0.06|0.07|N|O|1995-12-07|1996-01-02|1995-12-25|DELIVER IN PERSON|FOB|inal ideas. carefull| +34281|555227|30250|2|41|52570.20|0.08|0.08|N|O|1996-02-14|1996-01-11|1996-02-18|NONE|AIR|its cajole sly| +34281|687136|12163|3|37|41554.70|0.09|0.01|N|O|1995-12-15|1996-01-08|1996-01-05|DELIVER IN PERSON|MAIL|s impress. ironic re| +34281|688215|25755|4|46|55346.28|0.03|0.06|N|O|1995-11-05|1996-01-17|1995-11-16|COLLECT COD|RAIL|stealthily regular asym| +34281|827955|15504|5|8|15063.28|0.03|0.02|N|O|1996-01-28|1995-12-06|1996-02-02|NONE|AIR|leep slyly according to| +34281|430255|17780|6|12|14222.76|0.06|0.01|N|O|1996-02-17|1995-12-06|1996-03-14|DELIVER IN PERSON|REG AIR| quickly regular acc| +34281|289090|1596|7|42|45321.36|0.03|0.04|N|O|1996-01-14|1995-12-10|1996-01-19|NONE|RAIL|ly bold foxes. blithel| +34282|722658|47687|1|18|30251.16|0.02|0.04|R|F|1993-02-04|1993-02-04|1993-02-14|NONE|SHIP|es nag. deposits wake furio| +34282|708049|20564|2|34|35938.34|0.00|0.08|R|F|1993-03-24|1993-02-16|1993-03-28|NONE|AIR|courts. blithely regular depths cajole car| +34283|95129|32633|1|37|41592.44|0.00|0.06|A|F|1994-03-05|1994-03-01|1994-03-14|DELIVER IN PERSON|REG AIR|lar foxes. regular request| +34283|818649|31166|2|3|4702.80|0.04|0.04|A|F|1994-04-19|1994-03-15|1994-05-04|COLLECT COD|REG AIR|yly unusual asymptotes. | +34284|348570|48571|1|48|77690.88|0.01|0.06|R|F|1994-12-07|1994-12-30|1994-12-09|COLLECT COD|TRUCK| the stealthily final dependenc| +34284|408252|33269|2|5|5801.15|0.04|0.04|R|F|1995-02-02|1995-01-26|1995-03-01|DELIVER IN PERSON|RAIL|requests. regular packages hagg| +34285|492727|30255|1|19|32674.30|0.03|0.08|R|F|1992-01-17|1992-04-11|1992-01-22|DELIVER IN PERSON|TRUCK|eas are at| +34285|259411|46927|2|50|68520.00|0.04|0.08|R|F|1992-04-23|1992-04-07|1992-05-14|COLLECT COD|AIR|ing asymptotes cajole furiou| +34285|908192|45747|3|3|3600.45|0.08|0.08|R|F|1992-01-17|1992-03-21|1992-02-09|DELIVER IN PERSON|AIR|lites. fluffily final requests cajole| +34285|969277|6835|4|28|37694.44|0.06|0.02|A|F|1992-03-06|1992-03-03|1992-03-17|DELIVER IN PERSON|REG AIR|he quickly even braids. ca| +34285|630604|43117|5|16|24553.12|0.02|0.05|R|F|1992-04-30|1992-04-13|1992-05-26|NONE|TRUCK|quests. slyly bold dept| +34285|557071|19583|6|8|9024.40|0.09|0.01|A|F|1992-03-26|1992-02-24|1992-04-22|COLLECT COD|FOB|posits use. quickly even| +34285|688997|1511|7|44|87382.24|0.08|0.04|R|F|1992-03-07|1992-04-03|1992-03-21|DELIVER IN PERSON|AIR|mptotes haggle quickly dolphins. pendi| +34286|963835|13836|1|13|24684.27|0.01|0.04|N|O|1996-11-10|1997-01-17|1996-12-09|TAKE BACK RETURN|RAIL|carefully i| +34286|163866|26370|2|41|79124.26|0.09|0.08|N|O|1996-12-03|1997-01-22|1996-12-23|TAKE BACK RETURN|SHIP|slyly regular decoys believe| +34286|84731|9734|3|18|30883.14|0.07|0.02|N|O|1997-01-22|1996-12-22|1997-01-24|NONE|AIR|ously special requests detect blithely | +34286|66530|29032|4|41|61357.73|0.04|0.08|N|O|1996-11-15|1996-12-13|1996-12-10|NONE|MAIL|he furiously unusual acco| +34286|165296|40303|5|36|49006.44|0.08|0.03|N|O|1996-11-10|1996-12-21|1996-11-21|TAKE BACK RETURN|FOB|riously along the r| +34286|124066|49071|6|10|10900.60|0.03|0.02|N|O|1997-01-29|1996-12-05|1997-02-22|COLLECT COD|MAIL|fully regular requests.| +34287|872055|47090|1|14|14378.14|0.00|0.07|N|O|1996-04-22|1996-04-04|1996-05-08|TAKE BACK RETURN|FOB|old courts haggle. ironically regular theo| +34287|613580|13581|2|3|4480.65|0.07|0.08|N|O|1996-03-02|1996-03-01|1996-03-29|NONE|SHIP|efully furiously unusual deposits. bold| +34287|425536|25537|3|48|70152.48|0.07|0.03|N|O|1996-05-12|1996-04-03|1996-06-11|NONE|TRUCK|p. enticingly ironic deposits sleep| +34287|967515|42554|4|9|14242.23|0.04|0.04|N|O|1996-04-24|1996-04-23|1996-05-08|NONE|SHIP|gular theodolites maintain. unusua| +34287|9941|22442|5|39|72186.66|0.00|0.07|N|O|1996-03-26|1996-04-19|1996-04-14|DELIVER IN PERSON|MAIL|ges haggle along the deposits. special | +34287|70303|45306|6|14|17826.20|0.02|0.08|N|O|1996-01-29|1996-03-06|1996-02-20|COLLECT COD|AIR|eep slyly blithely pending asympto| +34287|580347|5370|7|19|27119.08|0.01|0.00|N|O|1996-03-09|1996-04-02|1996-04-04|NONE|FOB|structions sleep carefu| +34312|884641|22193|1|36|58521.60|0.03|0.05|R|F|1992-04-27|1992-06-08|1992-05-25|COLLECT COD|FOB|ole carefully past the f| +34312|148484|35991|2|34|52104.32|0.00|0.02|A|F|1992-05-11|1992-06-14|1992-05-16|TAKE BACK RETURN|RAIL| beans. quickly pending dep| +34312|559296|21808|3|47|63697.69|0.07|0.04|A|F|1992-06-10|1992-05-17|1992-07-01|COLLECT COD|RAIL|s use slyly even requests. carefully bold| +34313|588325|837|1|43|60771.90|0.10|0.08|N|O|1997-02-12|1996-12-25|1997-02-26|DELIVER IN PERSON|RAIL|dolites. unusual ideas are-- foxes e| +34313|965388|27908|2|35|50866.90|0.08|0.07|N|O|1996-11-13|1997-01-09|1996-11-23|COLLECT COD|FOB|. packages sleep after the| +34314|359135|34150|1|49|58511.88|0.04|0.02|N|O|1996-09-14|1996-10-15|1996-09-22|NONE|AIR|. carefully ironic court| +34314|966265|41304|2|47|62567.34|0.07|0.03|N|O|1996-09-07|1996-10-30|1996-10-04|NONE|FOB|ttainments wake fluffily furiously expres| +34314|5062|30063|3|4|3868.24|0.03|0.06|N|O|1996-09-26|1996-10-16|1996-10-05|DELIVER IN PERSON|SHIP|ly. quickly special| +34314|62217|24719|4|22|25942.62|0.09|0.00|N|O|1996-12-06|1996-11-09|1996-12-13|TAKE BACK RETURN|AIR|usly daring packages? furiously| +34314|680321|42835|5|42|54654.18|0.02|0.02|N|O|1996-11-14|1996-11-18|1996-12-10|NONE|TRUCK|n excuses are across the sl| +34315|757478|19994|1|30|46063.20|0.05|0.06|N|O|1995-07-04|1995-05-16|1995-07-10|TAKE BACK RETURN|FOB|aintain slyly about th| +34315|920710|20711|2|11|19037.37|0.02|0.02|R|F|1995-06-01|1995-05-12|1995-06-14|DELIVER IN PERSON|SHIP|according to the furiously eve| +34315|361868|49390|3|4|7719.40|0.03|0.08|A|F|1995-05-05|1995-06-27|1995-05-09|DELIVER IN PERSON|AIR| run. carefu| +34316|621188|33701|1|28|31056.20|0.03|0.02|A|F|1994-08-18|1994-07-18|1994-09-11|DELIVER IN PERSON|FOB|ithely final d| +34316|297366|47367|2|23|31357.05|0.06|0.06|R|F|1994-07-18|1994-07-11|1994-07-31|COLLECT COD|MAIL|nts along the slyly express asymptotes| +34317|797475|47476|1|48|75477.12|0.00|0.02|N|O|1997-10-03|1997-09-04|1997-10-31|NONE|MAIL|ick, ironic re| +34317|154809|4810|2|49|91326.20|0.02|0.07|N|O|1997-07-20|1997-09-19|1997-08-11|TAKE BACK RETURN|AIR|special, even deposi| +34317|868525|6077|3|49|73180.52|0.00|0.05|N|O|1997-10-20|1997-08-12|1997-10-25|NONE|SHIP|gside of the qu| +34318|470159|32669|1|46|51939.98|0.10|0.02|A|F|1995-03-01|1995-04-09|1995-03-10|COLLECT COD|MAIL|jole carefully about t| +34319|716195|28710|1|20|24223.20|0.07|0.07|N|O|1997-11-15|1997-12-23|1997-11-17|COLLECT COD|FOB|y special pinto b| +34344|85017|22521|1|49|49098.49|0.01|0.04|A|F|1994-04-27|1994-03-30|1994-05-05|DELIVER IN PERSON|RAIL|ly ironic ideas. special de| +34345|679952|17492|1|32|61821.44|0.03|0.07|A|F|1993-05-10|1993-04-25|1993-05-11|DELIVER IN PERSON|REG AIR|deposits. special, special deposits | +34345|942427|4946|2|45|66122.10|0.01|0.07|R|F|1993-02-24|1993-05-02|1993-03-24|COLLECT COD|FOB| sleep fluffi| +34345|361761|49283|3|36|65619.00|0.03|0.01|A|F|1993-05-07|1993-04-06|1993-05-31|NONE|AIR|es boost alongside of the iro| +34345|115847|40852|4|40|74513.60|0.07|0.03|R|F|1993-05-10|1993-04-02|1993-06-08|TAKE BACK RETURN|SHIP| deposits. ir| +34345|30965|18466|5|36|68254.56|0.04|0.00|R|F|1993-05-29|1993-04-07|1993-06-14|NONE|MAIL|s wake furiously. ironic,| +34346|453094|28113|1|1|1047.07|0.04|0.02|R|F|1994-11-08|1994-09-04|1994-11-28|TAKE BACK RETURN|REG AIR|s. special multipliers nag. quickly pe| +34346|143372|18377|2|16|22645.92|0.03|0.03|A|F|1994-08-07|1994-10-04|1994-08-28|COLLECT COD|AIR|usly regular packages promis| +34346|647433|22458|3|18|24847.20|0.06|0.04|A|F|1994-09-20|1994-08-20|1994-10-07|DELIVER IN PERSON|RAIL|gouts cajole evenly. idly bold accounts| +34346|398707|23722|4|14|25279.66|0.05|0.04|R|F|1994-09-10|1994-08-21|1994-10-01|DELIVER IN PERSON|FOB|nts snooze regular ideas. sl| +34346|54318|29321|5|2|2544.62|0.03|0.03|R|F|1994-09-25|1994-09-15|1994-10-05|COLLECT COD|MAIL|tions play furiously ironic, ironic p| +34346|908885|46440|6|39|73859.76|0.05|0.06|A|F|1994-10-24|1994-08-15|1994-11-18|COLLECT COD|REG AIR|ns. slyly even deposits solve carefully| +34347|20429|45430|1|44|59374.48|0.08|0.06|A|F|1994-01-08|1993-12-05|1994-01-18|TAKE BACK RETURN|MAIL|integrate slyly. quickly| +34347|345896|33415|2|47|91268.36|0.06|0.05|R|F|1994-02-09|1993-12-02|1994-03-01|TAKE BACK RETURN|REG AIR|s promise. carefully unusual accounts ins| +34347|460192|47720|3|26|29956.42|0.09|0.06|R|F|1994-01-09|1993-12-22|1994-01-30|TAKE BACK RETURN|MAIL| beans sleep carefully al| +34347|437588|12605|4|18|27460.08|0.09|0.05|A|F|1993-11-12|1994-01-20|1993-11-25|DELIVER IN PERSON|MAIL|ckages. caref| +34347|536984|36985|5|18|36377.28|0.06|0.03|R|F|1993-12-31|1994-01-14|1994-01-30|COLLECT COD|SHIP|g to the fluffily re| +34347|82797|7800|6|20|35595.80|0.09|0.05|R|F|1993-11-21|1994-01-20|1993-12-20|TAKE BACK RETURN|AIR|c packages. slyly final requests are-| +34348|801864|14381|1|46|81227.72|0.06|0.03|A|F|1993-01-20|1993-02-17|1993-02-13|TAKE BACK RETURN|TRUCK|ckly even deposits. carefully f| +34348|922847|10402|2|38|71052.40|0.04|0.07|A|F|1993-03-09|1993-02-14|1993-03-15|DELIVER IN PERSON|TRUCK|atelets wake about the final | +34348|287540|25056|3|4|6110.12|0.09|0.03|A|F|1993-01-26|1993-03-06|1993-02-06|COLLECT COD|SHIP|hely above th| +34348|679233|29234|4|41|49700.20|0.06|0.02|A|F|1993-01-27|1993-02-24|1993-02-15|DELIVER IN PERSON|FOB|sts across the ideas nag furiously unusu| +34348|855797|43349|5|43|75368.25|0.04|0.06|R|F|1993-04-04|1993-02-26|1993-04-08|DELIVER IN PERSON|TRUCK| according to the fl| +34348|373256|23257|6|37|49181.88|0.02|0.07|A|F|1993-02-28|1993-03-05|1993-03-10|TAKE BACK RETURN|REG AIR| despite the slyly final accounts cajo| +34348|303331|3332|7|40|53372.80|0.03|0.02|A|F|1993-04-05|1993-04-12|1993-05-04|NONE|FOB|in the furiously fin| +34349|75680|13184|1|32|52981.76|0.07|0.01|R|F|1994-03-02|1994-02-09|1994-03-03|NONE|TRUCK|lly furiousl| +34350|771452|46483|1|42|63983.64|0.09|0.06|N|O|1998-08-30|1998-10-11|1998-09-15|DELIVER IN PERSON|MAIL|eas boost.| +34351|866203|3755|1|20|23383.20|0.10|0.07|N|O|1998-01-04|1998-03-30|1998-01-31|COLLECT COD|FOB|le carefully furiously special excuses.| +34351|272800|47811|2|11|19500.69|0.02|0.01|N|O|1998-04-25|1998-03-20|1998-04-29|TAKE BACK RETURN|REG AIR|as along the furiously silent requests ar| +34351|946189|46190|3|39|48170.46|0.10|0.07|N|O|1998-01-26|1998-02-02|1998-02-16|COLLECT COD|RAIL|ever express foxes are blithely al| +34376|556941|44475|1|19|37960.48|0.03|0.02|A|F|1992-08-22|1992-10-01|1992-09-13|NONE|REG AIR|usual, ironic dep| +34376|496377|8887|2|6|8240.10|0.03|0.07|A|F|1992-10-07|1992-10-07|1992-10-19|COLLECT COD|TRUCK|use carefully according to the furiously| +34376|600184|37721|3|27|29272.05|0.02|0.00|R|F|1992-10-17|1992-09-25|1992-11-02|COLLECT COD|RAIL| sleep quickly about the | +34377|198477|10981|1|1|1575.47|0.09|0.03|A|F|1993-09-27|1993-10-01|1993-10-20|NONE|RAIL|onically special packages. special pin| +34377|787562|25108|2|19|31341.07|0.02|0.07|A|F|1993-09-05|1993-10-08|1993-09-15|DELIVER IN PERSON|RAIL|r the express | +34377|549588|49589|3|32|52401.92|0.10|0.07|A|F|1993-08-26|1993-09-15|1993-09-14|COLLECT COD|RAIL|odolites use slyly unusual theodoli| +34377|921239|46276|4|8|10081.52|0.02|0.08|R|F|1993-09-10|1993-09-02|1993-10-03|DELIVER IN PERSON|MAIL|eep slyly accounts. furiously final| +34377|250510|38026|5|3|4381.50|0.08|0.04|A|F|1993-09-23|1993-10-16|1993-10-23|DELIVER IN PERSON|AIR|lithely. quickly express t| +34378|416962|41979|1|31|58247.14|0.07|0.08|A|F|1994-04-10|1994-03-28|1994-05-06|DELIVER IN PERSON|MAIL|onic excuses along the ironic asymptotes no| +34378|875596|631|2|40|62862.00|0.06|0.08|A|F|1994-05-23|1994-05-17|1994-05-26|COLLECT COD|SHIP|he furiousl| +34378|137876|379|3|5|9569.35|0.03|0.08|A|F|1994-03-29|1994-04-08|1994-04-13|NONE|SHIP|requests. deposits haggle| +34378|279340|41846|4|24|31663.92|0.03|0.01|R|F|1994-05-31|1994-04-23|1994-06-08|NONE|FOB|ess deposits. ironic, express pi| +34378|850844|25879|5|6|10768.80|0.00|0.08|R|F|1994-03-09|1994-03-18|1994-03-17|DELIVER IN PERSON|TRUCK|urious instructio| +34379|319557|32064|1|12|18918.48|0.06|0.01|N|O|1998-07-02|1998-08-27|1998-07-15|DELIVER IN PERSON|SHIP|ckly. Tiresias are carefully aroun| +34379|794079|31625|2|5|5865.20|0.09|0.00|N|O|1998-08-05|1998-07-25|1998-09-02|TAKE BACK RETURN|AIR|sual asymptotes dazzle furiously. r| +34380|347743|35262|1|38|68047.74|0.07|0.00|R|F|1992-09-27|1992-07-09|1992-10-04|NONE|FOB|dencies haggle. ironic, iron| +34380|508729|21240|2|5|8688.50|0.06|0.04|R|F|1992-09-06|1992-07-25|1992-09-12|DELIVER IN PERSON|RAIL|y pending f| +34381|912955|510|1|11|21647.01|0.01|0.07|A|F|1992-11-27|1992-12-18|1992-12-05|NONE|REG AIR|ver. requests cajole carefully. special,| +34381|26359|26360|2|42|53984.70|0.08|0.07|R|F|1993-02-20|1992-12-17|1993-03-09|TAKE BACK RETURN|RAIL|y ironic packages detect. | +34382|379548|4563|1|8|13020.24|0.07|0.06|A|F|1993-04-03|1993-01-27|1993-04-14|TAKE BACK RETURN|TRUCK|lar accounts about the car| +34382|48490|48491|2|19|27331.31|0.00|0.01|A|F|1993-03-10|1993-02-16|1993-03-30|COLLECT COD|RAIL|deas haggle slyly. r| +34383|626221|26222|1|26|29826.94|0.08|0.07|N|O|1997-08-23|1997-10-08|1997-08-27|DELIVER IN PERSON|TRUCK| of the silent decoys. req| +34383|891245|16280|2|9|11125.80|0.07|0.03|N|O|1997-10-08|1997-10-16|1997-10-18|NONE|AIR|rly quickly even deposits. even instructio| +34408|962463|12464|1|34|51864.28|0.10|0.02|A|F|1992-05-20|1992-05-27|1992-06-03|DELIVER IN PERSON|RAIL|press packages a| +34408|114707|14708|2|21|36155.70|0.03|0.00|R|F|1992-05-03|1992-07-03|1992-05-28|TAKE BACK RETURN|MAIL|al ideas. carefully u| +34409|466448|16449|1|2|2828.84|0.08|0.02|R|F|1995-05-01|1995-04-18|1995-05-27|COLLECT COD|TRUCK|ly final foxes boost slyly blithely e| +34410|806522|31555|1|48|68567.04|0.06|0.05|N|O|1997-12-24|1997-11-19|1998-01-21|NONE|REG AIR|uick pains| +34411|674444|49471|1|31|43970.71|0.01|0.06|N|O|1997-01-23|1997-01-19|1997-01-28|TAKE BACK RETURN|SHIP|fily pending platelets use enticingly furio| +34411|374033|24034|2|37|40959.74|0.00|0.05|N|O|1997-03-01|1997-01-04|1997-03-18|COLLECT COD|AIR|ilent, quiet foxes are again| +34411|367287|4809|3|18|24376.86|0.08|0.07|N|O|1996-12-11|1997-01-22|1997-01-10|DELIVER IN PERSON|TRUCK|ess deposits. carefully regular tithes a| +34411|977017|27018|4|8|8751.76|0.07|0.00|N|O|1997-02-11|1997-01-31|1997-02-14|TAKE BACK RETURN|MAIL|te slyly quickly final packages. pen| +34411|722557|35072|5|26|41067.52|0.06|0.04|N|O|1997-03-14|1997-01-02|1997-04-02|DELIVER IN PERSON|TRUCK|nic requests nag carefully after the quickl| +34412|164351|26855|1|26|36799.10|0.01|0.01|R|F|1993-10-10|1993-11-08|1993-11-09|NONE|SHIP|nal dolphins. fu| +34413|498133|10643|1|41|46375.51|0.02|0.07|A|F|1995-03-07|1995-02-16|1995-03-24|NONE|TRUCK|ly special a| +34413|117766|17767|2|35|62431.60|0.00|0.03|R|F|1995-02-19|1995-03-16|1995-03-18|TAKE BACK RETURN|RAIL|r platelets. quiet foxes sleep carefully| +34413|290571|28087|3|15|23423.40|0.02|0.02|A|F|1995-02-02|1995-02-14|1995-02-21|TAKE BACK RETURN|TRUCK|pinto beans cajole after the furiousl| +34413|612023|37048|4|35|32724.65|0.06|0.03|R|F|1995-03-13|1995-02-13|1995-04-06|NONE|SHIP|ing requests| +34413|261138|11139|5|48|52757.76|0.03|0.05|A|F|1995-05-10|1995-04-05|1995-05-28|DELIVER IN PERSON|FOB|ep quickly above the blithel| +34414|145069|45070|1|32|35649.92|0.05|0.07|R|F|1993-03-01|1993-03-19|1993-03-12|NONE|SHIP|s. pinto beans cajole sl| +34414|166817|41824|2|12|22605.72|0.07|0.01|R|F|1993-03-11|1993-03-24|1993-04-02|COLLECT COD|SHIP|sly ironic | +34414|677154|2181|3|17|19229.04|0.04|0.01|A|F|1993-04-14|1993-04-10|1993-04-19|COLLECT COD|REG AIR|ependencies are requests. carefully | +34414|915660|15661|4|12|20107.44|0.03|0.03|A|F|1993-04-09|1993-04-10|1993-05-06|NONE|MAIL|ns doubt. furiously bold deposits across t| +34415|491917|29445|1|44|83991.16|0.01|0.04|A|F|1993-10-28|1993-11-24|1993-11-21|DELIVER IN PERSON|RAIL|quests use blithely after the| +34415|634837|9862|2|6|10630.80|0.02|0.07|R|F|1994-01-07|1993-12-04|1994-02-01|COLLECT COD|AIR|osits. slyly re| +34415|692014|42015|3|32|32191.36|0.06|0.08|A|F|1993-10-08|1993-11-25|1993-11-01|NONE|SHIP|equests. fluffily fluffy requests haggl| +34415|666107|3647|4|49|52580.43|0.08|0.06|R|F|1993-11-13|1993-10-18|1993-11-29|TAKE BACK RETURN|FOB|efully pending dolphins. even theodo| +34440|108475|8476|1|43|63789.21|0.06|0.02|R|F|1992-06-20|1992-07-28|1992-07-10|TAKE BACK RETURN|RAIL|xpress, final pinto beans use never about t| +34440|127182|14689|2|14|16928.52|0.07|0.00|R|F|1992-08-19|1992-06-21|1992-09-03|DELIVER IN PERSON|RAIL|egular requests along t| +34440|540148|15169|3|20|23762.40|0.05|0.04|R|F|1992-06-09|1992-07-28|1992-06-23|COLLECT COD|TRUCK|areful pinto be| +34440|265167|15168|4|27|30568.05|0.09|0.05|R|F|1992-07-21|1992-07-18|1992-07-26|COLLECT COD|MAIL|egular theodolites nag slyly bl| +34440|656188|43728|5|1|1144.15|0.05|0.06|A|F|1992-07-11|1992-07-12|1992-07-20|DELIVER IN PERSON|SHIP|y even theo| +34440|535670|48181|6|24|40935.60|0.06|0.03|R|F|1992-06-07|1992-07-15|1992-06-13|TAKE BACK RETURN|REG AIR| regular packages. requests dete| +34441|840582|3099|1|42|63946.68|0.02|0.06|A|F|1995-04-11|1995-04-14|1995-04-17|TAKE BACK RETURN|TRUCK|carefully pendin| +34441|658904|8905|2|11|20491.57|0.02|0.02|R|F|1995-05-27|1995-05-14|1995-06-06|DELIVER IN PERSON|AIR|o beans after the | +34441|195467|45468|3|18|28124.28|0.03|0.01|A|F|1995-05-16|1995-04-21|1995-06-11|TAKE BACK RETURN|REG AIR|nt pinto bean| +34442|338576|26095|1|26|41978.56|0.06|0.04|N|O|1996-05-18|1996-06-21|1996-06-13|COLLECT COD|REG AIR|deposits integrate slyly speci| +34442|438307|38308|2|23|28641.44|0.04|0.01|N|O|1996-08-14|1996-06-14|1996-09-12|COLLECT COD|TRUCK|l deposits. thin notornis| +34443|493212|43213|1|14|16872.66|0.02|0.05|N|O|1997-07-06|1997-05-18|1997-08-03|COLLECT COD|FOB|refully even warthogs must have to | +34443|405018|42543|2|6|5537.94|0.10|0.07|N|O|1997-07-03|1997-05-13|1997-07-27|DELIVER IN PERSON|MAIL|sual packages. f| +34443|122713|22714|3|18|31242.78|0.00|0.05|N|O|1997-05-23|1997-06-02|1997-05-24|TAKE BACK RETURN|SHIP|gular instructions wake furi| +34443|432564|32565|4|2|2993.08|0.03|0.02|N|O|1997-05-19|1997-07-03|1997-06-07|NONE|FOB|le furiously regular requests: care| +34443|101409|26414|5|20|28208.00|0.05|0.08|N|O|1997-06-01|1997-06-29|1997-06-29|NONE|MAIL|y regular pinto beans| +34443|370098|20099|6|35|40882.80|0.07|0.04|N|O|1997-05-07|1997-05-22|1997-06-01|NONE|MAIL|pecial foxes are evenly. blithely ir| +34443|220535|45544|7|13|18921.76|0.06|0.07|N|O|1997-06-28|1997-05-15|1997-07-17|DELIVER IN PERSON|AIR|kly bold instr| +34444|529945|4966|1|8|15799.36|0.04|0.08|N|O|1997-09-20|1997-11-26|1997-10-14|NONE|RAIL| carefully regular pinto bea| +34444|772535|35051|2|4|6430.00|0.08|0.05|N|O|1997-09-14|1997-10-17|1997-10-08|DELIVER IN PERSON|RAIL|carefully ironic excuses. blithely regular | +34445|178970|28971|1|15|30734.55|0.09|0.08|R|F|1993-07-02|1993-05-28|1993-07-26|NONE|REG AIR|accounts. f| +34445|948718|36273|2|43|75966.81|0.03|0.04|A|F|1993-07-13|1993-04-26|1993-08-09|NONE|FOB|accounts. instructions cajol| +34445|89757|27261|3|3|5240.25|0.10|0.02|A|F|1993-04-27|1993-05-07|1993-05-15|TAKE BACK RETURN|AIR|nic deposits. blithely bold ideas | +34445|534968|34969|4|13|26038.22|0.06|0.02|A|F|1993-05-04|1993-06-03|1993-05-10|TAKE BACK RETURN|MAIL| instruction| +34445|205168|17673|5|12|12877.80|0.05|0.05|R|F|1993-04-21|1993-06-05|1993-05-03|TAKE BACK RETURN|FOB|e special, pending decoys affix about the| +34445|245453|20462|6|37|51742.28|0.05|0.05|R|F|1993-07-17|1993-05-14|1993-07-30|NONE|MAIL|lets. ironic, unusual deposits sleep b| +34445|312734|37747|7|39|68122.08|0.01|0.05|A|F|1993-06-14|1993-06-05|1993-07-07|TAKE BACK RETURN|REG AIR|quickly unusual req| +34446|111997|49504|1|16|32143.84|0.02|0.03|A|F|1993-01-27|1993-01-03|1993-02-24|TAKE BACK RETURN|FOB|ly. furiously express ideas acros| +34447|905096|5097|1|38|41839.90|0.05|0.04|R|F|1992-08-02|1992-07-08|1992-08-26|DELIVER IN PERSON|TRUCK|ffily unusual, even accounts. slyly ironic| +34447|936005|11042|2|10|10409.60|0.10|0.02|R|F|1992-08-03|1992-06-30|1992-08-21|DELIVER IN PERSON|AIR| furiously ex| +34447|433797|8814|3|50|86538.50|0.07|0.06|R|F|1992-06-05|1992-07-18|1992-06-19|NONE|REG AIR|tructions sleep quickly. carefully unusua| +34447|819092|19093|4|45|45497.25|0.02|0.07|R|F|1992-08-07|1992-07-30|1992-09-04|NONE|SHIP| blithely pending accounts wake qu| +34447|467510|30020|5|15|22162.35|0.03|0.02|A|F|1992-06-26|1992-07-16|1992-07-01|COLLECT COD|SHIP| excuses in place o| +34447|427658|15183|6|6|9513.78|0.10|0.08|A|F|1992-08-03|1992-07-22|1992-08-24|TAKE BACK RETURN|MAIL|lent, regular packages haggle | +34472|23792|11293|1|37|63484.23|0.00|0.02|N|O|1996-10-15|1996-09-08|1996-11-04|DELIVER IN PERSON|TRUCK|y against | +34472|866479|4031|2|42|60708.06|0.02|0.04|N|O|1996-08-24|1996-09-13|1996-09-02|TAKE BACK RETURN|FOB|e quickly. blithe| +34472|900133|25170|3|36|40791.24|0.06|0.07|N|O|1996-08-19|1996-08-01|1996-09-04|TAKE BACK RETURN|MAIL|alongside | +34472|531891|44402|4|6|11537.22|0.01|0.08|N|O|1996-08-26|1996-09-27|1996-09-02|COLLECT COD|MAIL|tect carefully. caref| +34472|480811|30812|5|14|25085.06|0.08|0.01|N|O|1996-07-13|1996-08-03|1996-08-03|COLLECT COD|TRUCK|leep along the fluffily regula| +34472|976681|39201|6|8|14061.12|0.02|0.05|N|O|1996-07-02|1996-08-20|1996-07-10|TAKE BACK RETURN|FOB|ely among t| +34473|269867|7383|1|28|51431.80|0.01|0.01|N|O|1995-11-17|1995-12-10|1995-12-14|DELIVER IN PERSON|MAIL|ffily final excuses use slyly final a| +34473|639233|26770|2|12|14066.40|0.02|0.03|N|O|1995-12-05|1995-12-15|1995-12-23|COLLECT COD|TRUCK|s integrate blithely. fi| +34473|581361|18895|3|50|72117.00|0.06|0.04|N|O|1995-12-17|1995-11-28|1995-12-27|TAKE BACK RETURN|RAIL|wake fluffily along the furiou| +34473|920839|8394|4|3|5579.37|0.00|0.00|N|O|1995-11-16|1995-12-12|1995-12-07|TAKE BACK RETURN|AIR|kly brave packag| +34473|528042|3063|5|21|22470.42|0.05|0.06|N|O|1995-12-12|1995-11-25|1995-12-27|NONE|REG AIR|around the carefully even deposits| +34474|427496|27497|1|28|39857.16|0.09|0.05|N|O|1997-12-13|1998-02-28|1997-12-21|DELIVER IN PERSON|FOB|nal packages could wake slyly after the fl| +34474|924254|36773|2|12|15338.52|0.03|0.03|N|O|1998-03-15|1998-02-25|1998-04-10|NONE|FOB|deas x-ray blithel| +34474|925821|13376|3|33|60943.74|0.06|0.03|N|O|1997-12-10|1998-03-09|1997-12-30|TAKE BACK RETURN|AIR|ironic packages are quickly express| +34474|259197|9198|4|12|13874.16|0.02|0.04|N|O|1998-03-10|1998-03-09|1998-03-29|COLLECT COD|RAIL|nal theodolites boost against the thin| +34474|323425|10944|5|41|59384.81|0.04|0.02|N|O|1998-01-29|1998-01-11|1998-02-26|TAKE BACK RETURN|FOB|ffix bold pl| +34474|795409|7925|6|22|33096.14|0.03|0.00|N|O|1998-01-12|1998-02-28|1998-02-10|DELIVER IN PERSON|SHIP|y even ideas| +34475|826595|39112|1|2|3043.10|0.03|0.08|A|F|1993-06-07|1993-05-01|1993-07-07|TAKE BACK RETURN|FOB|ar deposits use above the e| +34475|581874|44386|2|47|91924.95|0.10|0.01|A|F|1993-07-25|1993-05-19|1993-08-12|NONE|REG AIR|al asymptotes haggle furiously slyly pendin| +34475|555007|42541|3|28|29735.44|0.08|0.03|R|F|1993-05-30|1993-06-16|1993-06-12|COLLECT COD|MAIL|ously ironic acc| +34475|988989|14028|4|14|29091.16|0.06|0.05|A|F|1993-05-05|1993-05-01|1993-05-14|NONE|MAIL|eposits are furiously ab| +34475|926411|13966|5|35|50307.95|0.09|0.08|R|F|1993-05-26|1993-05-01|1993-05-30|NONE|AIR|. blithely regular the| +34476|982999|8038|1|17|35393.15|0.02|0.04|R|F|1993-05-24|1993-04-28|1993-06-18|DELIVER IN PERSON|REG AIR|o the slyly regular deposits. final| +34476|252098|14604|2|23|24151.84|0.05|0.04|R|F|1993-03-31|1993-03-28|1993-04-16|TAKE BACK RETURN|TRUCK|arefully permanent pi| +34476|997817|10337|3|36|68931.72|0.03|0.03|A|F|1993-04-27|1993-03-03|1993-05-01|DELIVER IN PERSON|AIR|e furiously regula| +34477|16186|3687|1|13|14328.34|0.08|0.00|A|F|1993-01-03|1993-02-04|1993-01-25|COLLECT COD|MAIL|onic dugouts affix quickly bold somas. f| +34477|25922|25923|2|40|73916.80|0.06|0.08|A|F|1993-01-01|1993-01-06|1993-01-30|DELIVER IN PERSON|SHIP|nusual packages. bold theodolites snooz| +34478|611162|36187|1|29|31120.77|0.01|0.01|A|F|1995-02-25|1995-03-29|1995-03-09|DELIVER IN PERSON|MAIL|to the furiously bold excuses. unusua| +34478|787129|12160|2|3|3648.27|0.09|0.02|R|F|1995-02-24|1995-03-19|1995-03-12|TAKE BACK RETURN|RAIL| furiously across the idle| +34478|265657|15658|3|13|21094.32|0.01|0.02|R|F|1995-01-22|1995-03-07|1995-02-05|DELIVER IN PERSON|MAIL|ans integrate fluffily slyly| +34478|885654|10689|4|39|63944.79|0.02|0.04|A|F|1995-02-19|1995-03-19|1995-03-04|COLLECT COD|REG AIR|inal requests. asymptotes after the furiou| +34478|177591|15101|5|37|61737.83|0.07|0.07|R|F|1995-04-25|1995-02-24|1995-05-11|COLLECT COD|AIR|cajole fluffily silent request| +34478|765619|15620|6|24|40429.92|0.01|0.05|R|F|1995-01-28|1995-02-19|1995-02-20|DELIVER IN PERSON|AIR|sly thin multipliers-- final ins| +34478|747551|35094|7|18|28773.36|0.07|0.05|R|F|1995-01-30|1995-02-25|1995-02-05|NONE|SHIP|kly even dependencies caj| +34479|72879|47882|1|7|12963.09|0.00|0.04|A|F|1992-04-07|1992-03-31|1992-05-03|NONE|REG AIR| dolphins. slyly bold accounts cajole blith| +34479|874687|49722|2|16|26586.24|0.01|0.02|R|F|1992-03-15|1992-04-10|1992-03-16|DELIVER IN PERSON|AIR|cajole pack| +34479|855669|30704|3|17|27618.54|0.03|0.04|A|F|1992-03-14|1992-04-06|1992-04-01|DELIVER IN PERSON|MAIL|ideas. blithely express accounts are quic| +34479|228095|40600|4|45|46038.60|0.01|0.01|R|F|1992-02-18|1992-03-28|1992-02-19|DELIVER IN PERSON|AIR|st the carefully ironic ideas. even asympt| +34504|350619|13127|1|17|28383.20|0.09|0.07|N|O|1997-03-07|1997-04-13|1997-03-22|TAKE BACK RETURN|FOB|ructions around the eve| +34504|841960|4477|2|19|36136.48|0.04|0.02|N|O|1997-04-11|1997-04-07|1997-05-07|DELIVER IN PERSON|MAIL| bold pinto beans haggle. dogged, re| +34505|878865|3900|1|46|84815.72|0.06|0.05|R|F|1992-06-24|1992-07-09|1992-07-07|COLLECT COD|TRUCK|regularly against the regularly unusual | +34505|69675|44678|2|25|41116.75|0.02|0.01|A|F|1992-08-13|1992-06-21|1992-09-11|TAKE BACK RETURN|SHIP|the carefully silent deposits. regular asym| +34505|22137|47138|3|21|22241.73|0.00|0.07|R|F|1992-06-05|1992-07-25|1992-06-26|DELIVER IN PERSON|AIR|ns wake above the furiously final | +34505|42319|42320|4|5|6306.55|0.10|0.08|A|F|1992-09-02|1992-07-13|1992-09-12|COLLECT COD|TRUCK|dolites sleep against the quickly | +34505|254945|4946|5|9|17099.37|0.06|0.01|A|F|1992-06-22|1992-06-22|1992-07-04|NONE|AIR|iously. silent, ironic deposits snooze furi| +34505|846924|46925|6|46|86060.48|0.05|0.01|R|F|1992-05-19|1992-07-01|1992-05-22|TAKE BACK RETURN|AIR|ic platelets. requests wake furious| +34506|16811|29312|1|43|74295.83|0.05|0.03|A|F|1994-03-31|1994-03-03|1994-04-27|DELIVER IN PERSON|RAIL|nis. quickly special idea| +34506|533418|8439|2|4|5805.56|0.06|0.06|R|F|1994-05-25|1994-04-10|1994-06-15|COLLECT COD|TRUCK|yly bold packages are car| +34506|144149|6652|3|42|50111.88|0.02|0.05|R|F|1994-02-11|1994-03-09|1994-03-02|DELIVER IN PERSON|REG AIR|r theodolites are blithely pending | +34506|696252|21279|4|34|42439.48|0.06|0.04|R|F|1994-04-20|1994-03-20|1994-05-14|COLLECT COD|SHIP|oxes cajole: per| +34506|905962|30999|5|25|49198.00|0.02|0.01|R|F|1994-03-14|1994-03-18|1994-03-19|NONE|FOB|ing to the even package| +34507|583821|21355|1|40|76192.00|0.07|0.02|N|O|1996-03-02|1996-05-10|1996-03-12|COLLECT COD|AIR|st the carefully regular deposits. care| +34507|263243|13244|2|44|53074.12|0.02|0.02|N|O|1996-03-06|1996-03-27|1996-03-26|TAKE BACK RETURN|RAIL|ar, final packages cajole blithely aro| +34508|758743|46289|1|11|19818.81|0.03|0.01|N|O|1998-01-13|1998-01-19|1998-01-16|NONE|REG AIR|wake after the fluffily ironic accounts. re| +34508|182819|45323|2|11|20919.91|0.07|0.02|N|O|1998-02-20|1998-02-02|1998-03-17|DELIVER IN PERSON|AIR|ainst the quiet, iron| +34509|262|37763|1|20|23245.20|0.03|0.02|N|O|1995-09-09|1995-06-15|1995-09-25|NONE|SHIP|lyly pending | +34509|403030|40555|2|35|32655.35|0.09|0.03|N|O|1995-08-04|1995-07-23|1995-08-17|COLLECT COD|AIR|ding to the furiously even | +34509|712694|12695|3|4|6826.64|0.10|0.06|N|O|1995-09-06|1995-06-21|1995-10-01|TAKE BACK RETURN|SHIP|te. express| +34509|242609|5114|4|13|20170.67|0.10|0.01|N|O|1995-09-12|1995-07-16|1995-10-07|TAKE BACK RETURN|REG AIR|he pinto beans. quickly regular de| +34509|519069|44090|5|22|23936.88|0.05|0.07|N|O|1995-08-10|1995-07-30|1995-08-16|DELIVER IN PERSON|SHIP|regular packages. final excus| +34509|987329|37330|6|37|52402.36|0.08|0.02|N|O|1995-07-18|1995-08-11|1995-07-28|COLLECT COD|SHIP|eposits cajole caref| +34510|783592|21138|1|48|80426.88|0.05|0.03|N|O|1995-10-07|1995-07-22|1995-10-29|DELIVER IN PERSON|AIR|quests. final packages use. regular| +34510|822199|9748|2|14|15696.10|0.06|0.04|N|O|1995-06-28|1995-07-30|1995-07-01|NONE|SHIP|ng instruction| +34510|685664|23204|3|9|14846.67|0.05|0.00|N|O|1995-07-04|1995-08-20|1995-07-30|TAKE BACK RETURN|MAIL| requests detect slyly regular, e| +34511|889090|26642|1|5|5395.25|0.10|0.03|N|O|1996-02-04|1996-03-03|1996-02-19|DELIVER IN PERSON|TRUCK|. slyly silent theodolites wa| +34511|927799|27800|2|26|47495.50|0.02|0.08|N|O|1996-02-03|1996-02-13|1996-02-21|NONE|TRUCK|slyly. regular requests sleep against| +34511|502069|39600|3|29|31060.16|0.05|0.02|N|O|1996-04-21|1996-03-22|1996-04-23|COLLECT COD|REG AIR|uriously final asymptotes detect accord| +34511|260839|48355|4|40|71992.80|0.06|0.04|N|O|1996-03-31|1996-03-22|1996-04-05|COLLECT COD|RAIL|ular deposits according to the depos| +34536|16885|41886|1|30|54056.40|0.09|0.07|A|F|1992-05-13|1992-05-12|1992-05-21|DELIVER IN PERSON|RAIL|e. careful, f| +34536|773475|23476|2|8|12387.52|0.01|0.08|A|F|1992-07-13|1992-06-05|1992-07-21|COLLECT COD|TRUCK|ly regular packages boost quietly iro| +34536|780529|18075|3|31|49894.19|0.10|0.07|R|F|1992-06-17|1992-04-28|1992-07-02|TAKE BACK RETURN|RAIL|epths shall| +34536|337133|24652|4|15|17551.80|0.08|0.07|A|F|1992-04-02|1992-06-10|1992-04-12|COLLECT COD|SHIP|posits among| +34537|615081|27594|1|32|31873.60|0.04|0.03|N|O|1997-06-14|1997-07-20|1997-07-13|TAKE BACK RETURN|SHIP|nts use carefully above the e| +34538|571367|21368|1|11|15821.74|0.00|0.08|N|O|1995-08-18|1995-07-19|1995-09-09|TAKE BACK RETURN|TRUCK|fully unusual instructions cajo| +34538|965045|40084|2|24|26640.00|0.07|0.02|N|O|1995-08-23|1995-08-05|1995-09-10|TAKE BACK RETURN|RAIL|he slyly express | +34538|499270|11780|3|23|29192.75|0.02|0.08|N|O|1995-06-26|1995-07-13|1995-07-11|TAKE BACK RETURN|AIR|iously above t| +34539|982971|32972|1|12|24647.16|0.04|0.07|A|F|1992-08-26|1992-10-10|1992-09-19|TAKE BACK RETURN|SHIP|st the fluffily ironic| +34539|792212|17243|2|10|13041.80|0.01|0.06|R|F|1992-08-08|1992-08-28|1992-08-28|COLLECT COD|RAIL|es. regular requests among th| +34539|705848|30877|3|29|53760.49|0.09|0.02|A|F|1992-09-24|1992-10-05|1992-10-04|DELIVER IN PERSON|AIR|ial gifts according to the acco| +34539|183453|33454|4|33|50702.85|0.04|0.00|A|F|1992-09-21|1992-09-25|1992-09-26|TAKE BACK RETURN|FOB|lyly special dependencies are | +34539|278203|40709|5|4|4724.76|0.09|0.00|A|F|1992-10-11|1992-10-07|1992-10-29|COLLECT COD|FOB| slyly express deposits use fluffily| +34539|744422|6937|6|33|48390.87|0.10|0.05|A|F|1992-10-11|1992-10-18|1992-11-10|NONE|RAIL|s against the furiously ev| +34540|627492|40005|1|35|49681.10|0.07|0.00|N|O|1997-01-29|1997-01-19|1997-02-18|TAKE BACK RETURN|FOB|haggle near the| +34540|256294|31305|2|40|50011.20|0.06|0.08|N|O|1997-02-22|1997-01-21|1997-03-10|DELIVER IN PERSON|AIR|furiously. slyly permanent deposits| +34541|119375|19376|1|9|12549.33|0.06|0.04|A|F|1994-09-19|1994-10-01|1994-09-26|DELIVER IN PERSON|FOB|long the sile| +34541|327992|27993|2|2|4039.96|0.06|0.03|A|F|1994-10-27|1994-10-09|1994-11-11|DELIVER IN PERSON|REG AIR|ns grow carefully alongside of the car| +34541|552596|40130|3|22|36268.54|0.09|0.04|R|F|1994-08-24|1994-10-05|1994-09-19|COLLECT COD|TRUCK|r accounts. blithely even deposits are bli| +34542|179534|4541|1|42|67768.26|0.09|0.06|N|O|1996-07-10|1996-06-28|1996-07-13|DELIVER IN PERSON|TRUCK|gainst the regular, final s| +34542|423336|10861|2|25|31482.75|0.07|0.02|N|O|1996-08-17|1996-07-26|1996-09-10|DELIVER IN PERSON|RAIL|arefully special ideas; ironic,| +34542|999159|24198|3|15|18871.65|0.06|0.02|N|O|1996-08-03|1996-08-09|1996-08-24|DELIVER IN PERSON|AIR|e slyly brave ins| +34543|418475|43492|1|1|1393.45|0.05|0.06|N|O|1997-10-05|1997-10-28|1997-10-19|COLLECT COD|SHIP|le fluffily| +34568|971245|8803|1|21|27640.20|0.07|0.06|N|O|1998-07-25|1998-06-16|1998-08-22|NONE|SHIP|etect furiously carefully stealt| +34568|698314|23341|2|13|17059.64|0.00|0.08|N|O|1998-06-27|1998-05-21|1998-06-28|NONE|MAIL|ideas. furiously stealthy | +34568|547249|34780|3|15|19443.30|0.04|0.05|N|O|1998-07-27|1998-07-01|1998-07-29|NONE|AIR|pending, even accounts wake a| +34568|605754|5755|4|21|34854.12|0.06|0.04|N|O|1998-07-12|1998-05-28|1998-07-17|DELIVER IN PERSON|REG AIR| ironic packages eat furi| +34568|907133|32170|5|45|51304.05|0.02|0.06|N|O|1998-04-25|1998-06-06|1998-05-21|DELIVER IN PERSON|FOB|h fluffily across the quickly f| +34568|181294|18804|6|34|46759.86|0.09|0.01|N|O|1998-06-30|1998-06-19|1998-07-20|NONE|RAIL|g. express pinto beans afte| +34569|379443|4458|1|20|30448.60|0.06|0.01|N|O|1996-10-17|1996-09-05|1996-10-19|NONE|SHIP|. unusual realms after the special t| +34569|285608|23124|2|19|30278.21|0.03|0.03|N|O|1996-10-13|1996-08-23|1996-10-28|NONE|FOB|r the regular foxes. slyly fi| +34569|201929|14434|3|25|45772.75|0.04|0.03|N|O|1996-11-06|1996-09-25|1996-11-27|NONE|FOB|s. special accounts sleep idea| +34569|813281|38314|4|13|15525.12|0.03|0.01|N|O|1996-09-01|1996-08-18|1996-09-26|TAKE BACK RETURN|MAIL|ns. quickly final t| +34569|810794|35827|5|28|47733.00|0.06|0.05|N|O|1996-10-22|1996-08-12|1996-11-09|NONE|FOB|uests boost furiously about th| +34569|8685|33686|6|3|4781.04|0.03|0.08|N|O|1996-07-30|1996-08-13|1996-08-14|NONE|MAIL| even deposits cajole sl| +34569|953108|40666|7|15|17415.90|0.01|0.02|N|O|1996-07-24|1996-08-12|1996-07-28|NONE|TRUCK|ular foxes lose past the fluff| +34570|873463|11015|1|29|41656.18|0.08|0.00|N|O|1996-09-29|1996-07-19|1996-10-14|TAKE BACK RETURN|RAIL|l Tiresias.| +34570|292636|5142|2|36|58630.32|0.08|0.08|N|O|1996-06-10|1996-07-09|1996-06-26|DELIVER IN PERSON|RAIL|y even ideas. ironic id| +34570|317377|4896|3|3|4183.08|0.01|0.05|N|O|1996-08-04|1996-08-31|1996-08-20|NONE|MAIL| according to| +34570|138871|13876|4|12|22918.44|0.04|0.03|N|O|1996-08-18|1996-07-20|1996-08-23|DELIVER IN PERSON|REG AIR|beans integr| +34571|629139|29140|1|32|34179.20|0.09|0.07|A|F|1993-03-25|1993-02-04|1993-03-27|COLLECT COD|TRUCK|slyly express multipliers. furious| +34572|168187|5697|1|11|13806.98|0.08|0.06|A|F|1993-01-26|1993-01-14|1993-02-15|COLLECT COD|SHIP|eans alongside of the requests wake caref| +34573|214183|39192|1|39|42789.63|0.09|0.01|N|O|1995-10-15|1995-08-22|1995-11-02|TAKE BACK RETURN|MAIL|ly special ideas. closely fina| +34573|772602|35118|2|4|6698.28|0.09|0.06|N|O|1995-08-24|1995-08-01|1995-09-05|DELIVER IN PERSON|MAIL|ular, unusual theodolites are.| +34573|108904|33909|3|45|86080.50|0.08|0.00|N|O|1995-09-12|1995-08-10|1995-10-05|NONE|AIR|s sleep carefully. even grouches wake aga| +34573|337968|37969|4|35|70208.25|0.08|0.02|N|O|1995-08-22|1995-09-18|1995-08-23|COLLECT COD|SHIP|ide of the special re| +34573|223565|36070|5|14|20839.70|0.08|0.06|N|O|1995-06-30|1995-09-10|1995-07-25|DELIVER IN PERSON|REG AIR|refully ironic pinto beans. slyly r| +34574|966023|41062|1|45|49004.10|0.08|0.01|N|O|1998-05-03|1998-06-03|1998-05-27|NONE|AIR|wake pains. final packag| +34575|694931|19958|1|27|51999.30|0.05|0.08|A|F|1992-08-24|1992-08-20|1992-08-30|NONE|REG AIR| blithely? b| +34575|703766|3767|2|39|69019.47|0.09|0.04|A|F|1992-10-31|1992-09-05|1992-11-26|COLLECT COD|AIR|ally special packages ar| +34575|179750|4757|3|23|42084.25|0.07|0.06|R|F|1992-08-01|1992-08-23|1992-08-26|TAKE BACK RETURN|REG AIR| express pinto beans. furiously| +34575|48448|23449|4|11|15360.84|0.06|0.00|R|F|1992-10-22|1992-10-05|1992-11-16|COLLECT COD|SHIP|ests sleep| +34600|850830|831|1|4|7123.16|0.03|0.02|N|O|1996-11-19|1996-09-26|1996-12-03|NONE|AIR|blithely bold r| +34600|885055|35056|2|8|8320.08|0.04|0.01|N|O|1996-09-21|1996-09-29|1996-10-14|DELIVER IN PERSON|AIR|d dolphins s| +34600|108349|45856|3|33|44792.22|0.10|0.00|N|O|1996-10-19|1996-10-07|1996-11-16|NONE|TRUCK|k, ironic theodolites affi| +34600|9687|47188|4|12|19160.16|0.01|0.08|N|O|1996-08-28|1996-10-26|1996-09-20|DELIVER IN PERSON|REG AIR|ts. furiously regular deposits run quickl| +34600|807726|45275|5|8|13069.44|0.05|0.03|N|O|1996-09-05|1996-10-09|1996-10-05|DELIVER IN PERSON|MAIL|r dependenc| +34600|444799|44800|6|31|54056.87|0.01|0.08|N|O|1996-09-01|1996-10-17|1996-09-27|COLLECT COD|SHIP|gular inst| +34600|735144|47659|7|7|8253.77|0.01|0.05|N|O|1996-12-01|1996-10-06|1996-12-17|DELIVER IN PERSON|AIR|its haggle slyly acco| +34601|564683|27195|1|45|78644.70|0.00|0.06|N|O|1998-10-23|1998-09-30|1998-11-02|NONE|REG AIR| carefully regular pinto beans? fluffily | +34601|612810|25323|2|36|62020.08|0.04|0.08|N|O|1998-09-07|1998-09-19|1998-09-25|DELIVER IN PERSON|RAIL| requests eat. sp| +34601|496264|21283|3|48|60491.52|0.01|0.05|N|O|1998-07-25|1998-09-28|1998-08-12|NONE|RAIL|ts boost carefu| +34601|699973|37513|4|21|41431.74|0.00|0.03|N|O|1998-08-23|1998-09-16|1998-09-21|TAKE BACK RETURN|RAIL|ly final packages. slyly e| +34601|439200|1709|5|43|48984.74|0.01|0.07|N|O|1998-08-02|1998-08-13|1998-08-14|COLLECT COD|RAIL|alongside of the regular, ironic accoun| +34601|631264|43777|6|37|44223.51|0.10|0.03|N|O|1998-09-04|1998-08-16|1998-09-15|COLLECT COD|TRUCK|ts. packages haggle sometimes re| +34601|645401|32938|7|2|2692.74|0.03|0.03|N|O|1998-09-01|1998-08-11|1998-09-02|COLLECT COD|REG AIR|, ironic requests boost. even| +34602|243398|43399|1|15|20120.70|0.00|0.00|A|F|1994-09-02|1994-06-26|1994-09-17|COLLECT COD|SHIP|gular theodolites are furiously | +34602|783873|21419|2|24|46964.16|0.08|0.01|A|F|1994-07-26|1994-08-19|1994-08-07|DELIVER IN PERSON|TRUCK|requests use. thinly pending d| +34602|542924|17945|3|28|55073.20|0.09|0.06|R|F|1994-07-08|1994-08-18|1994-07-28|TAKE BACK RETURN|AIR|nent packages. qui| +34602|911791|24310|4|29|52279.75|0.03|0.00|A|F|1994-07-22|1994-08-02|1994-07-31|NONE|FOB|ins x-ray. unusual sauternes a| +34603|203032|3033|1|16|14960.32|0.03|0.08|N|O|1996-07-14|1996-08-05|1996-07-20|TAKE BACK RETURN|FOB|oxes. carefully expre| +34603|354788|4789|2|41|75553.57|0.10|0.02|N|O|1996-09-29|1996-09-21|1996-10-14|TAKE BACK RETURN|FOB|es hang blithely regular, final foxes. b| +34603|905449|43004|3|19|27633.60|0.02|0.04|N|O|1996-07-14|1996-09-23|1996-08-05|DELIVER IN PERSON|RAIL|foxes. reg| +34603|866734|41769|4|27|45918.63|0.10|0.05|N|O|1996-07-30|1996-08-10|1996-08-14|NONE|REG AIR|ts cajole blithely carefully regu| +34604|46963|21964|1|36|68758.56|0.01|0.04|R|F|1992-06-01|1992-04-17|1992-07-01|NONE|RAIL|arefully around the careful| +34604|291657|41658|2|41|67594.24|0.00|0.02|R|F|1992-04-17|1992-04-26|1992-04-25|TAKE BACK RETURN|MAIL|usual foxes. busily even requests integra| +34604|869424|31942|3|49|68275.62|0.04|0.07|R|F|1992-06-05|1992-04-11|1992-06-20|TAKE BACK RETURN|SHIP|y even requests: final requests | +34605|470438|7966|1|20|28168.20|0.05|0.08|R|F|1993-07-12|1993-05-10|1993-08-02|DELIVER IN PERSON|AIR|ing dolphin| +34605|640127|2640|2|23|24543.07|0.06|0.04|A|F|1993-05-06|1993-06-15|1993-05-20|DELIVER IN PERSON|REG AIR|inal ideas wake ironic theodo| +34605|600359|37896|3|18|22667.76|0.06|0.03|A|F|1993-07-06|1993-05-17|1993-07-18|COLLECT COD|TRUCK|. final foxes are blithely re| +34605|224730|12243|4|22|36403.84|0.07|0.05|A|F|1993-06-04|1993-05-16|1993-06-24|NONE|FOB|ests sleep quickly on| +34606|580040|42552|1|50|56001.00|0.09|0.00|N|O|1997-07-27|1997-06-07|1997-08-04|COLLECT COD|TRUCK|sly final excuses. accounts boost furious| +34606|718885|31400|2|47|89480.95|0.01|0.04|N|O|1997-07-02|1997-07-10|1997-07-03|COLLECT COD|AIR|ly ironic gifts hinder slyly.| +34606|289109|26625|3|45|49414.05|0.01|0.05|N|O|1997-07-09|1997-08-01|1997-08-03|TAKE BACK RETURN|TRUCK|ckages sleep blithely p| +34607|99919|24922|1|9|17270.19|0.01|0.01|A|F|1992-12-10|1992-12-30|1992-12-29|NONE|TRUCK|ons use af| +34607|326279|13798|2|43|56126.18|0.04|0.04|A|F|1993-03-19|1993-01-07|1993-04-09|DELIVER IN PERSON|SHIP|deposits are fluffily even accoun| +34607|769198|31714|3|30|38014.80|0.04|0.06|R|F|1993-02-06|1993-02-18|1993-02-26|DELIVER IN PERSON|REG AIR|hely special ideas. carefully unusual acc| +34607|902504|2505|4|50|75323.00|0.10|0.02|R|F|1993-01-21|1993-01-03|1993-02-03|COLLECT COD|RAIL|lets. unusual ideas integ| +34607|373190|35698|5|41|51790.38|0.04|0.03|R|F|1992-12-12|1992-12-23|1992-12-21|DELIVER IN PERSON|REG AIR|sly regular pinto beans. quickly iron| +34632|907853|45408|1|26|48381.06|0.10|0.04|R|F|1994-12-23|1994-11-18|1995-01-03|NONE|TRUCK|final foxe| +34632|274232|24233|2|28|33774.16|0.00|0.05|R|F|1994-09-11|1994-11-30|1994-10-07|DELIVER IN PERSON|FOB|special deposits. ca| +34632|2155|27156|3|20|21143.00|0.03|0.04|R|F|1994-11-29|1994-10-07|1994-12-21|COLLECT COD|MAIL|hely even dependencies use. bo| +34632|209848|34857|4|33|58008.39|0.04|0.08|A|F|1994-09-09|1994-11-01|1994-10-02|COLLECT COD|MAIL|ously above the | +34632|912900|37937|5|36|68862.96|0.03|0.06|R|F|1994-10-02|1994-11-12|1994-10-08|COLLECT COD|REG AIR|slyly express accounts | +34633|940672|3191|1|38|65079.94|0.05|0.04|N|O|1996-06-08|1996-04-13|1996-07-08|TAKE BACK RETURN|AIR|pinto beans-- accou| +34633|862548|12549|2|24|36252.00|0.10|0.07|N|O|1996-03-31|1996-05-08|1996-04-23|NONE|RAIL|g the unusual| +34634|199580|24587|1|32|53746.56|0.03|0.06|R|F|1992-01-30|1992-03-22|1992-02-06|TAKE BACK RETURN|AIR|iously blithely regul| +34634|325695|38202|2|27|46458.36|0.09|0.05|A|F|1992-04-05|1992-04-09|1992-04-17|NONE|TRUCK| the pending dependencies. slyl| +34635|870319|7871|1|18|23206.86|0.00|0.06|N|O|1998-01-07|1997-12-11|1998-01-18|TAKE BACK RETURN|AIR|l ideas nod about the| +34635|437689|12706|2|33|53679.78|0.01|0.02|N|O|1997-12-21|1997-12-05|1998-01-17|COLLECT COD|RAIL| unusual accounts cajole beside th| +34635|231268|18781|3|48|57564.00|0.06|0.00|N|O|1997-10-28|1997-12-13|1997-11-17|TAKE BACK RETURN|SHIP|eep. accounts sle| +34635|909325|9326|4|49|65379.72|0.05|0.07|N|O|1997-10-11|1997-11-15|1997-10-23|COLLECT COD|AIR|final, final pinto beans was bli| +34636|448033|10542|1|35|34335.35|0.01|0.03|N|O|1998-06-27|1998-06-15|1998-06-29|COLLECT COD|REG AIR|nusual theo| +34636|85929|23433|2|16|30638.72|0.01|0.08|N|O|1998-06-20|1998-04-28|1998-07-14|COLLECT COD|AIR|packages acc| +34636|205164|42677|3|5|5345.75|0.08|0.06|N|O|1998-05-21|1998-06-19|1998-06-16|NONE|REG AIR|ing foxes. silent theodolites above the si| +34637|355778|5779|1|35|64181.60|0.07|0.03|A|F|1993-04-10|1993-05-16|1993-04-16|COLLECT COD|REG AIR| requests maintain carefully acco| +34637|549952|49953|2|17|34032.81|0.01|0.03|A|F|1993-05-23|1993-06-12|1993-05-28|TAKE BACK RETURN|RAIL| unusual packages integrate slyly. ironic,| +34637|43072|43073|3|37|37557.59|0.03|0.07|R|F|1993-04-07|1993-05-09|1993-05-06|NONE|FOB|s, even requests haggle | +34637|897622|22657|4|41|66402.78|0.05|0.06|A|F|1993-04-20|1993-06-29|1993-05-11|DELIVER IN PERSON|AIR|ages. slyly even instructions wake| +34637|332202|32203|5|32|39494.08|0.05|0.00|A|F|1993-05-14|1993-05-25|1993-06-08|COLLECT COD|AIR| the excuses| +34638|64897|39900|1|30|55856.70|0.08|0.06|R|F|1995-03-04|1995-01-26|1995-03-21|DELIVER IN PERSON|MAIL|hely blithely final a| +34638|718947|18948|2|50|98295.50|0.07|0.08|R|F|1994-12-23|1995-02-01|1995-01-13|COLLECT COD|SHIP|, even packages cajole blithely| +34639|873600|11152|1|43|67663.08|0.00|0.02|A|F|1993-12-30|1993-10-23|1994-01-05|NONE|MAIL|y regular foxes outside the blithely final| +34639|582302|19836|2|6|8305.68|0.01|0.00|A|F|1994-01-01|1993-10-16|1994-01-21|NONE|FOB|mptotes. unusual reques| +34639|749600|37143|3|8|13196.56|0.09|0.00|R|F|1993-12-15|1993-11-21|1994-01-01|DELIVER IN PERSON|TRUCK|packages cajole beyond the | +34639|520722|33233|4|37|64479.90|0.00|0.01|R|F|1993-10-01|1993-10-24|1993-10-08|TAKE BACK RETURN|RAIL|uickly furiously even i| +34664|907970|45525|1|31|61315.83|0.07|0.01|A|F|1994-11-23|1994-10-27|1994-12-11|NONE|TRUCK|g foxes ar| +34664|238713|26226|2|49|80933.30|0.07|0.04|R|F|1994-09-30|1994-11-24|1994-10-08|TAKE BACK RETURN|MAIL|special, ir| +34664|39281|1782|3|9|10982.52|0.01|0.04|R|F|1995-01-08|1994-12-01|1995-02-05|DELIVER IN PERSON|RAIL| the slyly pe| +34664|190562|15569|4|33|54534.48|0.00|0.06|R|F|1994-09-18|1994-11-05|1994-10-16|DELIVER IN PERSON|MAIL|eans. instructions are; qu| +34664|765214|40245|5|12|15350.16|0.00|0.01|A|F|1994-09-26|1994-10-26|1994-10-05|DELIVER IN PERSON|MAIL|to the carefully regular foxes. | +34664|935847|48366|6|41|77194.80|0.01|0.02|R|F|1994-12-26|1994-10-23|1994-12-31|DELIVER IN PERSON|MAIL|iously about the special,| +34664|764356|1902|7|30|42609.60|0.06|0.06|R|F|1994-11-21|1994-11-10|1994-12-14|COLLECT COD|RAIL|s cajole blithely according to the un| +34665|515699|15700|1|6|10288.02|0.02|0.00|R|F|1993-05-29|1993-05-20|1993-06-28|DELIVER IN PERSON|FOB|ct. even requests| +34665|337399|24918|2|34|48836.92|0.08|0.05|R|F|1993-03-22|1993-05-04|1993-04-18|DELIVER IN PERSON|MAIL|es are carefully| +34666|75899|13403|1|8|14999.12|0.08|0.02|N|O|1998-02-28|1998-04-28|1998-03-13|COLLECT COD|AIR|ions. final requests a| +34666|623784|23785|2|30|51232.50|0.03|0.01|N|O|1998-02-18|1998-04-18|1998-02-24|NONE|SHIP|ckey players| +34666|937585|104|3|26|42186.04|0.00|0.00|N|O|1998-05-16|1998-05-07|1998-05-31|NONE|RAIL|uriously silent deposits! | +34666|977993|40513|4|8|16567.60|0.05|0.02|N|O|1998-03-28|1998-04-19|1998-04-15|TAKE BACK RETURN|RAIL|y permanently ironic requests. quickly regu| +34667|189795|39796|1|7|13193.53|0.03|0.00|R|F|1994-03-28|1994-03-08|1994-04-21|TAKE BACK RETURN|MAIL|packages. | +34667|882673|20225|2|15|24834.45|0.04|0.00|R|F|1994-04-11|1994-02-19|1994-05-05|NONE|REG AIR|ans are furiously blithely | +34667|80438|30439|3|33|46808.19|0.02|0.08|R|F|1994-05-01|1994-03-05|1994-05-19|COLLECT COD|FOB|ding packages use furiously about the ca| +34667|912994|549|4|6|12041.70|0.09|0.02|A|F|1994-02-09|1994-02-03|1994-02-20|COLLECT COD|MAIL|ilent packages. sl| +34667|676597|39111|5|20|31471.20|0.02|0.08|A|F|1994-02-23|1994-03-17|1994-03-15|NONE|TRUCK| use ironic pearls: careful| +34667|555628|43162|6|24|40406.40|0.04|0.03|A|F|1994-01-28|1994-02-13|1994-01-29|NONE|AIR|fluffily ironic accounts along | +34668|338922|26441|1|6|11765.46|0.02|0.05|R|F|1995-03-29|1995-02-08|1995-04-07|DELIVER IN PERSON|AIR| final dolphins cajole. quickly r| +34668|252494|2495|2|15|21697.20|0.03|0.01|R|F|1994-12-29|1995-03-23|1995-01-08|DELIVER IN PERSON|RAIL|ongside of the special| +34668|653894|16408|3|28|51740.08|0.10|0.07|A|F|1995-01-23|1995-03-23|1995-02-22|TAKE BACK RETURN|TRUCK|slyly around the care| +34669|797464|35010|1|8|12491.44|0.07|0.04|R|F|1995-05-10|1995-06-05|1995-05-11|TAKE BACK RETURN|AIR|lithely bold platelets n| +34670|47139|47140|1|10|10861.30|0.08|0.07|A|F|1995-03-07|1995-04-08|1995-03-26|TAKE BACK RETURN|RAIL|leep alongside of the thin somas| +34670|260825|48341|2|49|87504.69|0.03|0.06|N|F|1995-06-05|1995-05-07|1995-07-05|NONE|AIR|nic packages integrate carefully. sl| +34670|675490|25491|3|4|5861.84|0.05|0.01|R|F|1995-03-03|1995-04-08|1995-03-10|TAKE BACK RETURN|MAIL| wake across the blithely final pinto| +34670|949679|49680|4|20|34572.60|0.08|0.00|R|F|1995-03-27|1995-04-11|1995-04-10|DELIVER IN PERSON|SHIP|ptotes wake blithely among the| +34670|251969|26980|5|30|57628.50|0.07|0.03|R|F|1995-05-06|1995-05-03|1995-05-09|DELIVER IN PERSON|REG AIR| regular requests among the furio| +34670|826649|1682|6|22|34663.20|0.06|0.08|R|F|1995-02-25|1995-03-18|1995-02-26|NONE|FOB|uffily. dependencies of the care| +34670|489217|39218|7|41|49453.79|0.10|0.07|R|F|1995-03-20|1995-05-07|1995-03-24|DELIVER IN PERSON|FOB|pecial packages haggle at the special de| +34671|256937|31948|1|46|87120.32|0.04|0.08|A|F|1993-12-08|1994-01-26|1993-12-15|NONE|MAIL|t pinto beans are carefully final ac| +34671|336412|36413|2|37|53590.80|0.06|0.03|A|F|1994-03-18|1994-01-06|1994-04-10|NONE|TRUCK| furiously ironic requests a| +34671|70805|8309|3|7|12430.60|0.05|0.08|R|F|1993-12-15|1994-01-30|1994-01-13|DELIVER IN PERSON|RAIL|fully regular realms are about the e| +34671|15592|40593|4|26|39197.34|0.01|0.05|A|F|1994-02-26|1994-02-28|1994-02-27|TAKE BACK RETURN|SHIP|ial reques| +34671|49626|37127|5|7|11029.34|0.02|0.08|R|F|1994-03-17|1994-01-18|1994-04-14|COLLECT COD|SHIP|tterns sleep carefully carefully speci| +34671|53535|41039|6|36|53587.08|0.10|0.02|R|F|1994-03-18|1994-01-27|1994-03-28|TAKE BACK RETURN|AIR|even packages nag furiously thinly ironic| +34671|754183|41729|7|1|1237.15|0.08|0.06|R|F|1994-01-10|1994-01-06|1994-01-21|DELIVER IN PERSON|TRUCK|to the furio| +34696|547332|47333|1|24|33103.44|0.04|0.05|A|F|1992-08-11|1992-06-26|1992-08-28|DELIVER IN PERSON|RAIL|e furiously| +34697|928909|41428|1|48|93017.28|0.02|0.03|R|F|1994-04-13|1994-03-12|1994-04-26|COLLECT COD|MAIL|s. carefully even f| +34697|157895|20399|2|14|27340.46|0.04|0.01|A|F|1994-02-21|1994-02-23|1994-03-21|COLLECT COD|RAIL|ly special dolphins according to the | +34697|727965|27966|3|30|59787.90|0.09|0.04|R|F|1994-02-28|1994-03-06|1994-03-22|COLLECT COD|MAIL|nce the bold, regular excuses cajole at | +34697|899874|49875|4|35|65584.05|0.10|0.08|A|F|1994-01-23|1994-03-08|1994-01-31|COLLECT COD|MAIL|xes. even, special ideas af| +34697|168111|5621|5|24|28298.64|0.08|0.00|R|F|1994-05-04|1994-02-14|1994-05-27|COLLECT COD|MAIL|among the carefully even requests. f| +34697|430125|42634|6|42|44314.20|0.09|0.02|R|F|1994-03-30|1994-03-15|1994-04-24|COLLECT COD|MAIL|nstructions lose carefully around the f| +34698|683770|8797|1|11|19291.14|0.06|0.08|R|F|1994-11-07|1994-09-20|1994-11-19|DELIVER IN PERSON|FOB|ly fluffily ironic ideas. ironi| +34698|110234|47741|2|26|32349.98|0.05|0.04|R|F|1994-08-18|1994-10-17|1994-09-13|TAKE BACK RETURN|FOB|eposits at the re| +34698|689875|14902|3|49|91377.16|0.10|0.06|A|F|1994-10-02|1994-10-28|1994-10-20|NONE|TRUCK|e fluffily. ironic sheaves are. slyly fin| +34699|686046|48560|1|45|46440.45|0.07|0.01|N|O|1998-08-28|1998-07-13|1998-09-06|COLLECT COD|SHIP|nic instructions. slyly final account| +34700|127163|2168|1|32|38085.12|0.08|0.00|N|O|1998-03-16|1998-04-08|1998-04-14|TAKE BACK RETURN|RAIL| the quickly express packages. slyly ir| +34700|228541|16054|2|8|11756.24|0.07|0.08|N|O|1998-04-01|1998-04-10|1998-04-09|NONE|FOB|refully special| +34700|88132|38133|3|20|22402.60|0.05|0.01|N|O|1998-05-01|1998-03-03|1998-05-17|DELIVER IN PERSON|SHIP|oss the furiously quiet sentimen| +34700|230284|17797|4|7|8499.89|0.00|0.08|N|O|1998-03-22|1998-04-01|1998-04-02|NONE|REG AIR|into beans wake blith| +34700|380667|43175|5|8|13981.20|0.07|0.02|N|O|1998-03-29|1998-04-04|1998-04-14|TAKE BACK RETURN|AIR|es print. special packag| +34700|863747|38782|6|39|66717.30|0.07|0.02|N|O|1998-02-05|1998-04-22|1998-02-20|NONE|SHIP|egular ideas affix blithely a| +34701|577510|27511|1|15|23812.35|0.07|0.04|N|O|1998-04-12|1998-03-18|1998-04-20|DELIVER IN PERSON|REG AIR|ons. slyly regular deposits are. slyly | +34701|196765|9269|2|16|29788.16|0.08|0.07|N|O|1998-03-26|1998-02-20|1998-04-20|DELIVER IN PERSON|SHIP|al epitaphs above the| +34701|20098|32599|3|50|50904.50|0.07|0.06|N|O|1998-02-24|1998-02-09|1998-03-09|DELIVER IN PERSON|MAIL|ly across the furiously pending i| +34702|949727|24764|1|22|39086.96|0.05|0.04|N|O|1995-11-05|1995-10-17|1995-11-11|TAKE BACK RETURN|MAIL|heodolites. furiousl| +34702|50696|697|2|16|26347.04|0.07|0.04|N|O|1995-07-31|1995-09-08|1995-08-19|COLLECT COD|RAIL|nal hockey players | +34702|47156|22157|3|13|14340.95|0.00|0.03|N|O|1995-08-17|1995-09-03|1995-09-14|COLLECT COD|SHIP|ong the carefully unusual packages. ex| +34702|545979|21000|4|22|44548.90|0.10|0.08|N|O|1995-08-13|1995-10-27|1995-09-05|COLLECT COD|REG AIR|y among the quickly regular deposits. e| +34703|200945|25954|1|19|35072.67|0.05|0.00|N|O|1997-01-28|1996-12-22|1997-02-21|NONE|AIR|ncies-- depen| +34703|267171|29677|2|18|20486.88|0.08|0.06|N|O|1996-11-29|1997-01-11|1996-12-01|DELIVER IN PERSON|REG AIR|e ironic deposits cajole blith| +34728|989051|26609|1|2|2280.02|0.05|0.08|N|O|1998-08-03|1998-08-28|1998-08-12|DELIVER IN PERSON|FOB|cajole about the furiously silent packag| +34728|976569|39089|2|11|18100.72|0.08|0.06|N|O|1998-07-03|1998-08-24|1998-07-27|NONE|TRUCK| pinto beans cajole regul| +34728|182179|7186|3|14|17656.38|0.06|0.06|N|O|1998-06-21|1998-08-04|1998-07-02|DELIVER IN PERSON|REG AIR|side of the regul| +34728|868661|18662|4|24|39110.88|0.05|0.00|N|O|1998-07-24|1998-08-04|1998-08-03|NONE|SHIP| furiously regular warhorses na| +34728|575001|24|5|15|16139.70|0.08|0.02|N|O|1998-07-30|1998-07-17|1998-08-01|NONE|REG AIR|uriously unusual packages. ideas s| +34728|25548|549|6|12|17682.48|0.00|0.00|N|O|1998-07-20|1998-07-17|1998-07-26|TAKE BACK RETURN|MAIL|eposits detect furiou| +34729|848483|48484|1|35|50100.40|0.00|0.06|N|O|1995-07-21|1995-08-20|1995-08-02|COLLECT COD|FOB| furious pinto bea| +34730|80136|30137|1|7|7812.91|0.09|0.01|N|O|1995-10-25|1995-08-21|1995-11-15|COLLECT COD|AIR|osits. unusual packag| +34731|988679|13718|1|47|83078.61|0.04|0.02|N|O|1998-02-22|1998-02-23|1998-02-23|COLLECT COD|FOB|ording to the furiousl| +34731|713681|38710|2|13|22030.45|0.02|0.00|N|O|1998-03-02|1998-01-22|1998-03-24|TAKE BACK RETURN|AIR|refully regular depths sle| +34731|829511|29512|3|50|72023.50|0.07|0.02|N|O|1998-03-04|1998-02-01|1998-03-16|DELIVER IN PERSON|SHIP|riously across the care| +34732|382294|44802|1|1|1376.28|0.07|0.08|N|O|1998-01-15|1997-12-04|1998-01-21|DELIVER IN PERSON|RAIL|fluffily deposits. furiou| +34733|474701|37211|1|27|45243.36|0.01|0.00|R|F|1992-06-22|1992-07-24|1992-06-24|TAKE BACK RETURN|MAIL| slyly silent packages| +34733|284808|34809|2|36|64540.44|0.03|0.05|R|F|1992-06-13|1992-08-17|1992-06-25|TAKE BACK RETURN|RAIL| cajole furio| +34733|765149|2695|3|23|27924.53|0.05|0.00|R|F|1992-07-06|1992-07-15|1992-07-16|COLLECT COD|RAIL|ss accounts. blithely unus| +34733|846330|33879|4|50|63814.50|0.03|0.03|A|F|1992-07-26|1992-08-19|1992-08-03|TAKE BACK RETURN|AIR|ests. even, regu| +34734|604824|42361|1|48|82981.92|0.01|0.05|A|F|1992-12-25|1992-12-28|1992-12-28|DELIVER IN PERSON|MAIL|requests ha| +34734|272842|47853|2|3|5444.49|0.08|0.01|R|F|1992-12-29|1992-12-08|1993-01-04|DELIVER IN PERSON|SHIP|t packages g| +34734|639574|14599|3|45|68109.30|0.04|0.04|A|F|1993-01-20|1993-01-01|1993-01-30|COLLECT COD|MAIL|ding reques| +34734|311547|49066|4|22|34287.66|0.03|0.06|R|F|1992-12-28|1992-12-18|1993-01-14|NONE|TRUCK|e slyly. slyly even instruct| +34734|153957|16461|5|18|36197.10|0.05|0.08|A|F|1992-11-17|1992-12-27|1992-12-11|COLLECT COD|MAIL| slyly. accounts along the attai| +34734|543162|43163|6|36|43385.04|0.09|0.07|R|F|1993-01-16|1992-11-13|1993-01-19|COLLECT COD|FOB| the furiously ironic dependencies| +34735|465013|27523|1|27|26405.73|0.06|0.06|N|O|1997-02-27|1997-04-18|1997-03-13|DELIVER IN PERSON|AIR| regular asymptotes | +34735|461195|11196|2|19|21967.23|0.03|0.04|N|O|1997-04-10|1997-04-30|1997-04-25|DELIVER IN PERSON|AIR| close accounts affix carefu| +34760|404281|4282|1|46|54521.96|0.01|0.02|N|O|1998-01-01|1998-01-13|1998-01-27|DELIVER IN PERSON|TRUCK|thely bold pinto beans| +34760|738266|38267|2|46|59994.58|0.04|0.04|N|O|1997-12-12|1997-12-17|1997-12-21|NONE|RAIL|counts-- packages haggle theodolites. sl| +34760|36607|36608|3|27|41677.20|0.01|0.03|N|O|1998-02-01|1998-01-12|1998-02-15|NONE|TRUCK| deposits sleep. bold sen| +34761|371837|46852|1|25|47720.50|0.04|0.04|A|F|1994-07-23|1994-07-16|1994-08-14|COLLECT COD|SHIP|tes boost. quickly pending braids | +34761|462989|517|2|34|66366.64|0.04|0.08|R|F|1994-07-11|1994-07-03|1994-07-21|COLLECT COD|REG AIR|pecial theod| +34761|453101|40629|3|25|26352.00|0.10|0.00|A|F|1994-07-15|1994-06-22|1994-08-05|TAKE BACK RETURN|TRUCK|. regular instructions haggle ca| +34761|253990|16496|4|16|31103.68|0.03|0.02|R|F|1994-07-06|1994-05-29|1994-07-24|DELIVER IN PERSON|SHIP|y dependencies-- slyly ironic platelets sl| +34762|41019|3520|1|9|8640.09|0.04|0.01|N|O|1996-07-29|1996-08-09|1996-08-25|NONE|AIR|cajole carefully regula| +34762|398462|10970|2|35|54615.75|0.01|0.05|N|O|1996-07-25|1996-09-05|1996-08-14|TAKE BACK RETURN|MAIL|inally. blithely | +34762|949035|36590|3|18|19511.82|0.03|0.00|N|O|1996-08-03|1996-07-21|1996-08-11|NONE|REG AIR|le after the blithely regul| +34762|419804|7329|4|4|6895.12|0.04|0.06|N|O|1996-07-16|1996-09-06|1996-08-09|NONE|MAIL|the furiously special pin| +34763|513799|26310|1|17|30817.09|0.07|0.06|R|F|1993-09-20|1993-08-26|1993-09-30|NONE|MAIL|nts sleep furio| +34763|419376|19377|2|32|41451.20|0.09|0.05|R|F|1993-06-23|1993-07-14|1993-07-20|DELIVER IN PERSON|RAIL|inst the dolphins. blithely unusual t| +34763|444074|31599|3|33|33595.65|0.00|0.05|A|F|1993-09-25|1993-08-17|1993-10-24|TAKE BACK RETURN|FOB|egular pains. q| +34764|570064|32576|1|22|24948.88|0.09|0.01|R|F|1992-03-30|1992-04-04|1992-04-17|COLLECT COD|RAIL|e blithely ironic req| +34764|51516|1517|2|19|27882.69|0.10|0.00|R|F|1992-05-02|1992-05-13|1992-05-28|NONE|TRUCK|refully even theodolites haggle ca| +34764|822443|34960|3|32|43692.80|0.05|0.01|R|F|1992-03-22|1992-05-04|1992-04-07|NONE|SHIP|inal account| +34765|892311|42312|1|10|13032.70|0.07|0.01|N|O|1996-03-02|1996-02-14|1996-04-01|DELIVER IN PERSON|TRUCK|ly final deposits haggle again| +34765|60705|48209|2|17|28316.90|0.06|0.01|N|O|1996-03-25|1996-02-06|1996-04-01|TAKE BACK RETURN|SHIP|y. furiously u| +34766|66328|28830|1|25|32358.00|0.06|0.04|N|O|1996-07-03|1996-06-05|1996-07-05|TAKE BACK RETURN|FOB|uriously fluffily bold de| +34766|763173|25689|2|45|55626.30|0.04|0.03|N|O|1996-05-06|1996-06-16|1996-05-27|TAKE BACK RETURN|AIR| epitaphs do wake slyly final foxes. reg| +34766|647560|10073|3|45|67838.85|0.01|0.08|N|O|1996-06-27|1996-06-29|1996-07-10|TAKE BACK RETURN|TRUCK|fully regular warhorses breach quickly. d| +34767|672846|35360|1|24|43651.44|0.07|0.08|N|O|1996-05-07|1996-04-01|1996-06-02|DELIVER IN PERSON|REG AIR|haggle. bl| +34767|517518|17519|2|15|23032.35|0.09|0.07|N|O|1996-03-04|1996-03-29|1996-03-29|NONE|RAIL|ely quickly regular theodolites. express d| +34767|922686|22687|3|48|82014.72|0.10|0.05|N|O|1996-04-19|1996-03-19|1996-05-07|COLLECT COD|AIR|nusual foxes cajole blith| +34767|578482|28483|4|1|1560.46|0.06|0.05|N|O|1996-02-27|1996-03-02|1996-03-09|DELIVER IN PERSON|RAIL|he quickly even foxes. ruthless,| +34767|531556|6577|5|35|55563.55|0.04|0.08|N|O|1996-02-04|1996-04-24|1996-02-25|TAKE BACK RETURN|FOB| regular packages. blithely b| +34767|851546|1547|6|43|64392.50|0.08|0.04|N|O|1996-03-13|1996-04-18|1996-04-09|NONE|FOB|nic foxes cajole| +34792|587937|12960|1|40|80996.40|0.04|0.02|N|O|1997-08-10|1997-05-26|1997-08-26|DELIVER IN PERSON|TRUCK|bout the foxes sleep carefully | +34793|848830|23863|1|4|7115.16|0.07|0.05|N|O|1996-08-25|1996-09-03|1996-09-23|TAKE BACK RETURN|TRUCK|t the bold deposits haggle| +34793|271722|21723|2|22|37261.62|0.03|0.08|N|O|1996-09-16|1996-09-22|1996-10-01|COLLECT COD|MAIL|ntly ironic gift| +34793|829733|42250|3|32|53206.08|0.01|0.06|N|O|1996-08-28|1996-10-01|1996-09-17|TAKE BACK RETURN|FOB|yly ironic packages. fl| +34793|312288|49807|4|9|11702.43|0.05|0.00|N|O|1996-09-02|1996-09-26|1996-09-14|DELIVER IN PERSON|SHIP|. silently bold packages haggle carefully | +34793|611830|49367|5|11|19159.80|0.08|0.00|N|O|1996-07-31|1996-08-22|1996-08-13|TAKE BACK RETURN|RAIL| regular hockey player| +34794|489306|39307|1|36|46630.08|0.09|0.02|N|O|1996-02-02|1996-02-28|1996-02-18|NONE|SHIP|ts. hockey pl| +34794|759898|22414|2|40|78314.40|0.04|0.08|N|O|1996-03-28|1996-03-13|1996-04-02|TAKE BACK RETURN|MAIL|ons: slyly spe| +34794|590172|2684|3|5|6310.75|0.05|0.01|N|O|1996-03-07|1996-03-24|1996-03-24|NONE|FOB|the theodolites| +34794|5669|5670|4|10|15746.60|0.02|0.01|N|O|1996-03-13|1996-03-07|1996-04-02|COLLECT COD|MAIL|iously slow dugou| +34794|269627|7143|5|37|59074.57|0.10|0.04|N|O|1996-03-10|1996-04-04|1996-03-20|COLLECT COD|AIR| against the even, | +34795|108192|8193|1|43|51608.17|0.08|0.03|A|F|1994-11-04|1994-11-28|1994-11-12|TAKE BACK RETURN|TRUCK|r foxes. special p| +34795|369830|7352|2|20|37996.40|0.08|0.04|R|F|1994-11-16|1994-11-09|1994-12-01|TAKE BACK RETURN|TRUCK|al requests are carefully according| +34796|206081|18586|1|47|46392.29|0.04|0.04|R|F|1992-03-19|1992-04-19|1992-04-18|NONE|MAIL|ar dinos. slyly regular packa| +34797|266327|16328|1|19|24572.89|0.00|0.03|N|O|1996-07-13|1996-08-15|1996-08-10|COLLECT COD|AIR|ts sleep quickly along| +34798|633806|46319|1|28|48713.56|0.09|0.00|N|O|1996-08-17|1996-10-15|1996-09-05|COLLECT COD|TRUCK|are evenly| +34798|370537|8059|2|43|69123.36|0.00|0.00|N|O|1996-10-04|1996-09-26|1996-10-22|NONE|FOB|egular packages ha| +34798|602633|27658|3|42|64495.20|0.01|0.02|N|O|1996-08-12|1996-10-10|1996-08-20|NONE|FOB|print slyly acros| +34799|41684|4185|1|44|71529.92|0.07|0.04|R|F|1992-06-17|1992-07-03|1992-07-14|TAKE BACK RETURN|REG AIR| final deposits. slyly pending instr| +34799|571481|9015|2|46|71413.16|0.09|0.02|A|F|1992-08-06|1992-07-04|1992-08-12|COLLECT COD|TRUCK|lar instructions could haggle blithely| +34799|873841|36359|3|21|38110.80|0.02|0.00|A|F|1992-07-09|1992-07-11|1992-08-08|DELIVER IN PERSON|MAIL|uests nag blithely along the| +34799|645033|32570|4|35|34230.00|0.06|0.04|R|F|1992-05-05|1992-06-25|1992-05-26|NONE|TRUCK| with the regular, regular sauternes haggle| +34824|972443|22444|1|22|33338.80|0.04|0.08|A|F|1994-10-23|1994-11-14|1994-11-03|TAKE BACK RETURN|TRUCK|inal accounts wake carefully acco| +34825|129918|29919|1|41|79864.31|0.07|0.03|N|O|1996-05-22|1996-04-01|1996-05-30|NONE|REG AIR|lyly furious dinos are theodolites. idle d| +34825|523245|10776|2|50|63411.00|0.03|0.00|N|O|1996-05-14|1996-04-05|1996-06-13|NONE|MAIL|ress ideas should boost. ironic d| +34826|879279|41797|1|16|20131.68|0.09|0.04|R|F|1993-11-11|1993-11-05|1993-11-18|DELIVER IN PERSON|REG AIR|y unusual accounts. fin| +34827|623933|48958|1|39|72419.10|0.06|0.06|N|O|1998-03-22|1998-04-14|1998-04-17|DELIVER IN PERSON|SHIP| courts nag b| +34828|4263|29264|1|25|29181.50|0.01|0.05|A|F|1993-03-01|1993-03-22|1993-03-22|TAKE BACK RETURN|SHIP|al ideas. fu| +34828|637552|25089|2|6|8937.12|0.01|0.05|A|F|1993-05-24|1993-03-19|1993-06-20|DELIVER IN PERSON|RAIL|uriously abov| +34828|333865|8878|3|41|77852.85|0.06|0.02|R|F|1993-05-10|1993-04-07|1993-05-28|TAKE BACK RETURN|FOB|inst the carefully final requests. unusu| +34828|265152|15153|4|29|32397.06|0.00|0.03|A|F|1993-05-07|1993-04-18|1993-05-10|NONE|MAIL|are slyly across t| +34828|395593|20608|5|35|59100.30|0.05|0.08|R|F|1993-03-09|1993-04-30|1993-03-18|NONE|TRUCK|gular, regular ideas boost furiously agai| +34828|721938|46967|6|26|50957.40|0.05|0.05|A|F|1993-04-30|1993-05-05|1993-05-06|COLLECT COD|TRUCK|n pinto beans serv| +34828|600891|13404|7|18|32253.48|0.01|0.08|R|F|1993-02-19|1993-03-29|1993-03-07|NONE|RAIL|romise. regular acc| +34829|167140|4650|1|7|8449.98|0.00|0.04|A|F|1994-12-30|1994-12-29|1995-01-20|DELIVER IN PERSON|FOB|hely silent pa| +34829|108200|33205|2|6|7249.20|0.05|0.03|A|F|1995-03-04|1995-01-31|1995-03-07|DELIVER IN PERSON|MAIL|affix furiously dependencies. carefully re| +34830|869902|19903|1|36|67386.96|0.09|0.05|N|O|1996-07-09|1996-08-31|1996-07-16|TAKE BACK RETURN|AIR| special accounts. furiously pe| +34830|431367|31368|2|36|46740.24|0.03|0.02|N|O|1996-07-18|1996-08-23|1996-08-11|DELIVER IN PERSON|MAIL|ts are amo| +34830|972566|22567|3|31|50794.12|0.01|0.04|N|O|1996-09-24|1996-09-02|1996-09-28|COLLECT COD|REG AIR| ironic deposits. blithel| +34830|912790|25309|4|27|48674.25|0.02|0.02|N|O|1996-09-01|1996-09-10|1996-09-22|COLLECT COD|REG AIR|gular excuses. pending, final packa| +34830|246644|21653|5|45|71578.35|0.07|0.03|N|O|1996-08-19|1996-08-03|1996-08-22|COLLECT COD|RAIL|posits. packages across the blithely pend| +34830|330747|43254|6|22|39110.06|0.06|0.04|N|O|1996-10-27|1996-08-22|1996-11-25|COLLECT COD|TRUCK|quests haggle even | +34830|862687|25205|7|26|42890.64|0.01|0.05|N|O|1996-08-08|1996-09-08|1996-08-31|NONE|AIR|pinto beans across the ironic accou| +34831|166706|29210|1|46|81544.20|0.07|0.01|A|F|1992-10-03|1992-10-13|1992-10-15|TAKE BACK RETURN|FOB|es. unusual | +34831|814094|1643|2|45|45362.25|0.02|0.06|A|F|1992-08-28|1992-10-16|1992-09-25|TAKE BACK RETURN|RAIL|oxes nag carefu| +34831|476731|26732|3|31|52939.01|0.06|0.01|A|F|1992-10-20|1992-09-30|1992-11-05|DELIVER IN PERSON|REG AIR|refully final accounts-- furiousl| +34831|402073|14582|4|16|15600.80|0.07|0.06|A|F|1992-10-02|1992-09-01|1992-10-03|TAKE BACK RETURN|TRUCK|riously bold foxe| +34831|630405|42918|5|41|54750.17|0.06|0.07|R|F|1992-10-31|1992-10-09|1992-11-05|COLLECT COD|MAIL| deposits cajole. ironic pains cajole ca| +34831|214820|39829|6|8|13878.48|0.08|0.03|R|F|1992-08-16|1992-08-24|1992-09-08|NONE|MAIL|s haggle furiously a| +34856|710991|48534|1|23|46045.08|0.06|0.05|N|O|1995-11-22|1995-12-28|1995-12-18|TAKE BACK RETURN|AIR|ncies cajole| +34856|625028|37541|2|35|33354.65|0.07|0.01|N|O|1995-12-21|1995-12-12|1995-12-30|NONE|TRUCK|ross the carefully unusual pinto beans: | +34856|835994|23543|3|35|67548.25|0.05|0.07|N|O|1995-12-05|1995-12-14|1995-12-29|COLLECT COD|REG AIR|tions. regular instr| +34856|546009|33540|4|37|39034.26|0.08|0.00|N|O|1996-01-13|1996-01-15|1996-02-02|DELIVER IN PERSON|REG AIR|c foxes are. special, regular foxes caj| +34857|270843|20844|1|24|43531.92|0.05|0.02|N|O|1996-01-04|1996-01-19|1996-01-15|COLLECT COD|FOB| use quickly. furiously final attainment| +34857|51388|13890|2|20|26787.60|0.04|0.01|N|O|1996-03-10|1996-01-12|1996-03-27|COLLECT COD|MAIL|ts must detect blithely fu| +34857|663844|13845|3|40|72312.40|0.04|0.04|N|O|1995-12-03|1996-01-03|1995-12-27|NONE|AIR| carefully abo| +34857|216457|41466|4|7|9614.08|0.00|0.03|N|O|1996-02-21|1996-01-10|1996-02-29|TAKE BACK RETURN|TRUCK| never final requests are. furiously exp| +34858|540171|15192|1|31|37545.65|0.08|0.00|A|F|1992-08-08|1992-09-04|1992-08-20|COLLECT COD|FOB| express epitaphs. pending platelets among| +34858|638062|13087|2|19|19000.57|0.04|0.02|R|F|1992-10-26|1992-10-05|1992-10-27|NONE|FOB|sts. ironic, bold platelets slee| +34858|905641|5642|3|46|75743.60|0.07|0.05|R|F|1992-07-29|1992-09-09|1992-08-19|DELIVER IN PERSON|FOB|e slyly special theodolites. even platelets| +34858|106851|31856|4|23|42730.55|0.09|0.03|A|F|1992-08-18|1992-10-01|1992-08-19|COLLECT COD|REG AIR|n instructions. even, i| +34858|835490|48007|5|40|57018.00|0.06|0.01|R|F|1992-10-17|1992-10-08|1992-10-31|TAKE BACK RETURN|MAIL|lar ideas thrash slyly around the| +34859|683251|45765|1|44|54305.68|0.09|0.00|N|O|1998-07-30|1998-08-10|1998-08-20|TAKE BACK RETURN|TRUCK|s. furiously pending packages impre| +34859|394797|44798|2|17|32160.26|0.09|0.00|N|O|1998-08-03|1998-08-14|1998-08-25|DELIVER IN PERSON|RAIL|e bold tithes. regular, ironic t| +34859|340537|15550|3|17|26817.84|0.00|0.06|N|O|1998-06-18|1998-08-01|1998-06-29|TAKE BACK RETURN|TRUCK|e blithely according to the qui| +34859|395328|32850|4|50|71165.50|0.02|0.06|N|O|1998-06-19|1998-08-27|1998-07-08|TAKE BACK RETURN|RAIL|ly enticing pinto beans are slyly b| +34860|848474|10991|1|47|66854.21|0.06|0.04|N|O|1998-02-05|1997-12-17|1998-02-13|COLLECT COD|RAIL|uests wake blithely stealthily unusual fo| +34860|293417|43418|2|31|43722.40|0.07|0.07|N|O|1998-01-30|1997-12-10|1998-02-26|TAKE BACK RETURN|AIR|posits boost across the carefully regular| +34860|454117|29136|3|18|19279.62|0.05|0.05|N|O|1997-12-13|1998-01-03|1998-01-02|NONE|SHIP|dolites. even packages haggle across the | +34860|341639|29158|4|27|45376.74|0.05|0.06|N|O|1997-12-07|1998-02-01|1997-12-20|DELIVER IN PERSON|FOB|ng, express theodolite| +34860|911509|36546|5|36|54736.56|0.03|0.03|N|O|1998-02-21|1997-12-16|1998-02-22|TAKE BACK RETURN|FOB|lites. final instructions are bli| +34861|659452|34479|1|29|40931.18|0.06|0.04|A|F|1994-10-22|1994-12-21|1994-11-08|DELIVER IN PERSON|RAIL|mong the fluffil| +34861|405218|30235|2|10|11231.90|0.08|0.04|A|F|1994-10-07|1994-12-16|1994-10-12|COLLECT COD|MAIL| wake at the| +34862|613839|26352|1|9|15775.20|0.07|0.04|A|F|1994-12-26|1995-01-28|1995-01-06|DELIVER IN PERSON|TRUCK|onic instructions | +34862|791053|41054|2|37|42328.74|0.09|0.04|R|F|1995-01-28|1995-03-13|1995-02-12|COLLECT COD|SHIP|blithely. slyly ironic excus| +34862|219590|7103|3|5|7547.90|0.10|0.04|A|F|1995-01-17|1995-03-02|1995-02-07|DELIVER IN PERSON|RAIL|ets run carefully accoun| +34862|636240|36241|4|28|32933.88|0.09|0.07|R|F|1995-03-07|1995-03-04|1995-03-18|COLLECT COD|TRUCK| instructions after the final, | +34862|279290|41796|5|35|44424.80|0.03|0.05|R|F|1995-03-04|1995-01-30|1995-03-24|TAKE BACK RETURN|SHIP|posits serve furiously ironic dolph| +34862|14307|1808|6|12|14655.60|0.06|0.02|R|F|1995-03-01|1995-01-24|1995-03-04|DELIVER IN PERSON|RAIL| silent, pending theodolites around t| +34862|442938|42939|7|10|18809.10|0.04|0.00|R|F|1995-04-22|1995-03-10|1995-05-17|TAKE BACK RETURN|MAIL| regular accounts! sl| +34863|447230|34755|1|24|28253.04|0.07|0.04|N|O|1997-04-29|1997-04-11|1997-05-01|TAKE BACK RETURN|RAIL|tect slyly slyly final theodolites. dep| +34863|582907|20441|2|30|59696.40|0.03|0.03|N|O|1997-03-30|1997-03-15|1997-04-19|NONE|SHIP| regular pi| +34863|902373|14892|3|7|9627.31|0.06|0.00|N|O|1997-02-20|1997-03-15|1997-03-07|DELIVER IN PERSON|TRUCK|olites will have to boost along the| +34863|179466|4473|4|14|21636.44|0.10|0.06|N|O|1997-01-31|1997-04-10|1997-02-09|DELIVER IN PERSON|MAIL|nal instructions | +34863|280005|5016|5|35|34474.65|0.07|0.01|N|O|1997-02-21|1997-03-04|1997-03-05|DELIVER IN PERSON|FOB|ress packages. thi| +34863|38302|13303|6|13|16123.90|0.01|0.02|N|O|1997-03-20|1997-03-07|1997-04-09|TAKE BACK RETURN|TRUCK|y regular deposits slee| +34888|150352|12856|1|27|37863.45|0.03|0.07|A|F|1992-07-26|1992-06-12|1992-08-13|COLLECT COD|FOB| final pinto beans. deposits cajole caref| +34888|961186|36225|2|14|17459.96|0.04|0.01|A|F|1992-04-29|1992-05-17|1992-05-07|NONE|FOB| pending asymptotes after the fu| +34889|972874|10432|1|7|13627.81|0.09|0.02|N|O|1995-11-18|1995-09-12|1995-12-06|NONE|AIR| accounts. thin, | +34890|302204|14711|1|13|15680.47|0.08|0.04|A|F|1995-03-23|1995-01-19|1995-03-31|TAKE BACK RETURN|SHIP|bold requests-- carefully | +34891|828260|15809|1|12|14258.64|0.08|0.00|A|F|1994-05-20|1994-04-20|1994-05-26|DELIVER IN PERSON|RAIL|ously regular accounts; q| +34891|564353|26865|2|10|14173.30|0.01|0.05|A|F|1994-04-07|1994-04-20|1994-05-04|COLLECT COD|TRUCK|ithely bold packages detect abo| +34891|78112|40614|3|11|11991.21|0.03|0.04|A|F|1994-06-27|1994-04-26|1994-07-11|NONE|FOB|iously iro| +34891|814018|26535|4|10|9319.70|0.09|0.08|A|F|1994-04-14|1994-04-13|1994-05-03|COLLECT COD|FOB|refully expres| +34892|774258|36774|1|23|30641.06|0.10|0.06|N|O|1998-05-23|1998-06-24|1998-05-30|TAKE BACK RETURN|AIR|usly regular accounts| +34893|485887|23415|1|41|76787.26|0.01|0.07|A|F|1994-04-16|1994-04-27|1994-05-07|COLLECT COD|SHIP| ironic pinto b| +34893|290477|15488|2|25|36686.50|0.08|0.03|R|F|1994-04-05|1994-04-05|1994-04-20|COLLECT COD|SHIP|cording to the courts use over t| +34893|34947|34948|3|21|39520.74|0.10|0.06|A|F|1994-04-06|1994-05-16|1994-04-27|TAKE BACK RETURN|SHIP|s. blithely ironic requests brea| +34894|139098|14103|1|39|44346.51|0.01|0.02|N|O|1997-06-24|1997-06-06|1997-07-16|TAKE BACK RETURN|AIR|ar instruct| +34894|810630|48179|2|9|13865.31|0.05|0.04|N|O|1997-05-01|1997-05-21|1997-05-15|NONE|TRUCK|rts. express accounts boost aro| +34894|244294|6799|3|19|23527.32|0.09|0.07|N|O|1997-06-02|1997-05-27|1997-06-14|NONE|SHIP|furiously among the idly regular de| +34894|833269|20818|4|18|21639.96|0.07|0.03|N|O|1997-07-19|1997-06-23|1997-08-12|DELIVER IN PERSON|MAIL|ss requests across| +34895|469872|7400|1|17|31311.45|0.06|0.07|N|O|1996-03-02|1996-02-28|1996-03-24|NONE|SHIP|l instructions use according to the regu| +34895|135166|35167|2|48|57655.68|0.05|0.05|N|O|1996-03-25|1996-02-23|1996-04-04|TAKE BACK RETURN|SHIP|s packages are furiously blithely| +34895|718953|43982|3|17|33522.64|0.02|0.01|N|O|1996-01-05|1996-03-24|1996-01-09|NONE|TRUCK|ar platelets: foxes lose slyly f| +34895|428636|3653|4|35|54761.35|0.03|0.03|N|O|1996-03-23|1996-02-10|1996-04-06|DELIVER IN PERSON|SHIP|y regular ideas. blithely pendi| +34895|77900|40402|5|18|33802.20|0.02|0.07|N|O|1996-01-19|1996-02-14|1996-02-17|DELIVER IN PERSON|AIR|nding foxes cajole across| +34895|248575|11080|6|28|42659.68|0.02|0.08|N|O|1996-02-05|1996-03-12|1996-02-11|COLLECT COD|AIR|al requests haggle carefully| +34920|881584|6619|1|49|76711.46|0.03|0.07|A|F|1993-05-29|1993-06-29|1993-06-11|NONE|RAIL|al instructions nag. carefully u| +34920|776407|1438|2|9|13350.33|0.10|0.00|A|F|1993-08-09|1993-06-11|1993-08-24|TAKE BACK RETURN|REG AIR|olphins believe alongside of th| +34920|69445|44448|3|48|67893.12|0.04|0.08|A|F|1993-07-26|1993-07-08|1993-08-24|COLLECT COD|TRUCK|ld requests. fluffily ir| +34920|150839|38349|4|40|75593.20|0.00|0.04|R|F|1993-07-21|1993-05-27|1993-08-08|TAKE BACK RETURN|REG AIR|leep furiously final asymptotes. quick| +34920|138490|993|5|3|4585.47|0.10|0.02|R|F|1993-08-01|1993-07-06|1993-08-27|TAKE BACK RETURN|TRUCK| integrate slyly. carefully final depo| +34920|593532|31066|6|14|22757.14|0.10|0.00|A|F|1993-07-18|1993-07-06|1993-08-05|NONE|AIR|nts. slyly regular requests affix caref| +34920|476469|1488|7|49|70826.56|0.02|0.03|R|F|1993-05-15|1993-05-14|1993-06-06|COLLECT COD|SHIP| special deposits are carefully. fluf| +34921|997697|35255|1|11|19741.15|0.04|0.03|A|F|1992-06-16|1992-04-09|1992-06-17|NONE|MAIL| was ironically | +34922|959079|34118|1|29|33002.87|0.08|0.02|R|F|1993-11-09|1993-11-14|1993-12-03|NONE|FOB|egular accounts haggle blithely slyly ir| +34922|237297|24810|2|25|30857.00|0.00|0.06|A|F|1993-09-28|1993-10-23|1993-09-29|TAKE BACK RETURN|RAIL|nal ideas sublate quick| +34922|237915|37916|3|50|92645.00|0.07|0.02|R|F|1993-12-09|1993-11-09|1994-01-01|DELIVER IN PERSON|FOB|. pending, even packages caj| +34923|93258|43259|1|26|32532.50|0.07|0.06|N|O|1995-12-01|1996-01-14|1995-12-25|DELIVER IN PERSON|FOB|about the regular forges. pearls sublate| +34923|379639|4654|2|27|46402.74|0.02|0.08|N|O|1995-12-30|1995-12-31|1996-01-15|DELIVER IN PERSON|MAIL|furiously blithely regular | +34923|580525|5548|3|24|38532.00|0.01|0.04|N|O|1996-02-12|1995-12-14|1996-02-29|DELIVER IN PERSON|SHIP|regular instructions among the excuses a| +34923|873813|36331|4|4|7147.08|0.03|0.08|N|O|1995-12-07|1996-02-08|1995-12-24|COLLECT COD|AIR| alongside of th| +34923|165136|2646|5|43|51648.59|0.06|0.03|N|O|1995-12-21|1995-12-18|1995-12-27|NONE|TRUCK|al deposits no| +34923|433634|8651|6|21|32919.81|0.08|0.02|N|O|1996-02-14|1996-02-03|1996-02-21|TAKE BACK RETURN|SHIP| carefully regular packag| +34924|208470|8471|1|18|24812.28|0.04|0.07|A|F|1995-04-24|1995-04-18|1995-05-05|NONE|SHIP| deposits. carefully ironic sent| +34924|750979|38525|2|35|71047.90|0.10|0.05|R|F|1995-03-21|1995-05-19|1995-04-04|NONE|MAIL|ding to the pending reque| +34924|696167|8681|3|43|50014.59|0.02|0.06|A|F|1995-03-01|1995-04-10|1995-03-14|NONE|RAIL|ly regular requests. furiousl| +34925|181268|31269|1|44|59367.44|0.09|0.05|A|F|1994-06-21|1994-07-07|1994-06-25|COLLECT COD|REG AIR|ut the fluffily final foxes. final, iron| +34925|556816|44350|2|27|50565.33|0.06|0.07|R|F|1994-07-05|1994-07-15|1994-08-01|DELIVER IN PERSON|REG AIR|hely furiously special requests.| +34925|390152|40153|3|18|22358.52|0.02|0.04|A|F|1994-08-26|1994-07-11|1994-09-21|COLLECT COD|MAIL| play blithely pending theodolites. blith| +34925|282177|44683|4|44|51003.04|0.07|0.00|A|F|1994-07-31|1994-08-15|1994-08-09|COLLECT COD|TRUCK|d the bold, special excuses. depths wake c| +34925|539307|1818|5|30|40388.40|0.00|0.01|R|F|1994-08-06|1994-06-23|1994-08-09|TAKE BACK RETURN|MAIL|express excuses | +34926|920307|20308|1|50|66363.00|0.02|0.00|N|O|1995-12-04|1995-11-14|1995-12-20|COLLECT COD|SHIP| believe slyly fluf| +34926|598406|23429|2|44|66192.72|0.08|0.00|N|O|1995-11-18|1995-11-12|1995-12-13|NONE|AIR|s haggle blithely. carefully regul| +34926|393823|31345|3|19|36419.39|0.00|0.04|N|O|1995-10-19|1995-11-12|1995-10-28|NONE|AIR|inst the fluffi| +34926|980146|5185|4|2|2452.20|0.08|0.07|N|O|1996-01-19|1995-12-17|1996-02-07|COLLECT COD|SHIP|ilently ir| +34926|303776|28789|5|44|78309.44|0.09|0.00|N|O|1996-01-20|1995-11-24|1996-01-29|COLLECT COD|AIR| depths. blithely fin| +34927|857524|32559|1|8|11851.84|0.02|0.04|N|O|1996-05-08|1996-05-15|1996-05-12|NONE|TRUCK|arefully even foxes detect | +34927|405149|42674|2|47|49543.64|0.01|0.02|N|O|1996-04-25|1996-04-19|1996-05-24|NONE|MAIL|y regular sheaves. | +34927|333835|8848|3|19|35507.58|0.00|0.07|N|O|1996-06-10|1996-05-05|1996-07-04|TAKE BACK RETURN|MAIL|sits. finally unusual requ| +34952|317185|29692|1|2|2404.34|0.05|0.05|A|F|1993-12-29|1993-11-10|1994-01-16|NONE|REG AIR|. unusual, ironic foxes haggle carefully qu| +34952|911597|24116|2|42|67559.10|0.00|0.06|A|F|1993-11-28|1994-01-02|1993-12-15|NONE|FOB|ught to sleep fluffily| +34953|170485|20486|1|2|3110.96|0.03|0.00|A|F|1995-01-25|1995-02-05|1995-02-10|COLLECT COD|SHIP|eposits sleep blit| +34954|514625|27136|1|7|11477.20|0.07|0.00|N|O|1997-02-28|1997-03-12|1997-03-24|COLLECT COD|RAIL|usly! fluffily express requests after| +34955|9962|9963|1|10|18719.60|0.07|0.01|A|F|1992-03-17|1992-03-12|1992-04-15|COLLECT COD|SHIP| sleep slyly pen| +34955|429072|41581|2|9|9009.45|0.07|0.00|R|F|1992-03-05|1992-03-18|1992-04-03|NONE|TRUCK|kages cajole. instructions affix. ca| +34955|404093|41618|3|48|47859.36|0.09|0.01|R|F|1992-02-17|1992-02-29|1992-02-22|TAKE BACK RETURN|MAIL|ding to the final ex| +34955|588215|25749|4|30|39095.70|0.06|0.06|R|F|1992-03-14|1992-03-08|1992-04-03|NONE|TRUCK|l, even accounts are special, | +34955|129181|29182|5|7|8471.26|0.10|0.01|A|F|1992-02-04|1992-02-24|1992-02-27|TAKE BACK RETURN|MAIL|ely final foxes ca| +34956|793134|18165|1|20|24542.00|0.04|0.01|N|O|1998-02-09|1998-03-28|1998-02-23|DELIVER IN PERSON|RAIL|iously. blith| +34956|192676|17683|2|16|28298.72|0.10|0.03|N|O|1998-03-12|1998-03-20|1998-03-19|TAKE BACK RETURN|RAIL|silent packages dazzle furi| +34956|290168|40169|3|4|4632.60|0.08|0.05|N|O|1998-02-28|1998-03-18|1998-03-15|DELIVER IN PERSON|MAIL|e carefully pending instru| +34956|845368|7885|4|35|45966.20|0.04|0.06|N|O|1998-02-10|1998-04-08|1998-03-02|TAKE BACK RETURN|AIR|counts-- pinto beans wake. ironic| +34956|84123|9126|5|33|36534.96|0.10|0.05|N|O|1998-05-12|1998-03-07|1998-05-29|COLLECT COD|FOB|ickly after the flu| +34956|840917|3434|6|24|44588.88|0.05|0.03|N|O|1998-02-08|1998-04-06|1998-03-02|DELIVER IN PERSON|MAIL|re final pinto beans. silent, thin pla| +34956|284358|34359|7|14|18792.76|0.05|0.03|N|O|1998-02-21|1998-04-04|1998-03-11|COLLECT COD|MAIL|wake slyly bold deposits. furiously e| +34957|189904|39905|1|44|87731.60|0.04|0.00|N|O|1996-04-14|1996-01-18|1996-05-11|COLLECT COD|SHIP|y regular foxes print. sl| +34957|711195|11196|2|6|7236.96|0.08|0.08|N|O|1996-01-07|1996-01-26|1996-01-22|NONE|RAIL|, unusual deposits sleep again| +34957|43109|30610|3|5|5260.50|0.06|0.08|N|O|1996-03-12|1996-02-18|1996-03-25|COLLECT COD|SHIP|thely final excuses| +34957|518050|18051|4|48|51265.44|0.05|0.08|N|O|1996-03-21|1996-03-09|1996-03-27|DELIVER IN PERSON|MAIL|ns maintain furiously. always enticing pla| +34958|654876|29903|1|28|51263.52|0.01|0.00|A|F|1993-04-30|1993-05-05|1993-05-29|DELIVER IN PERSON|AIR| bold accounts use slyly. fluffily ironic | +34958|489484|27012|2|40|58938.40|0.06|0.06|A|F|1993-03-30|1993-04-05|1993-04-24|TAKE BACK RETURN|AIR|ronic dependencies are. carefully express i| +34958|748968|36511|3|14|28237.02|0.10|0.00|R|F|1993-02-18|1993-03-27|1993-02-27|TAKE BACK RETURN|RAIL|e alongside of the sly| +34958|896833|21868|4|4|7319.16|0.09|0.02|R|F|1993-02-23|1993-03-19|1993-03-20|TAKE BACK RETURN|SHIP| final deposits. furi| +34959|87079|24583|1|50|53303.50|0.04|0.00|A|F|1994-10-19|1994-12-02|1994-11-07|NONE|AIR|ts; furiously| +34959|529150|29151|2|47|55419.11|0.01|0.01|A|F|1994-12-23|1994-12-06|1995-01-09|DELIVER IN PERSON|TRUCK|kages wake blithely. accounts n| +34959|419090|31599|3|29|29263.03|0.07|0.03|A|F|1994-10-27|1994-11-16|1994-11-12|NONE|REG AIR|ges. furiously silent accounts ar| +34959|638378|891|4|29|38173.86|0.06|0.02|R|F|1994-12-28|1994-11-13|1995-01-19|TAKE BACK RETURN|FOB| sleep carefully regu| +34959|217703|30208|5|18|29172.42|0.00|0.08|R|F|1994-12-30|1994-11-19|1995-01-10|DELIVER IN PERSON|FOB|epths? slyly even requests haggle | +34959|933637|33638|6|14|23388.26|0.02|0.07|A|F|1995-01-28|1994-12-21|1995-02-21|NONE|AIR|foxes; final accou| +34984|800268|269|1|12|14018.64|0.03|0.03|N|O|1997-07-13|1997-08-12|1997-08-12|NONE|RAIL|ole furious packages. ironic noto| +34985|267613|42624|1|19|30031.40|0.09|0.07|N|O|1997-08-06|1997-08-02|1997-08-28|DELIVER IN PERSON|RAIL|packages bef| +34985|762149|49695|2|11|13322.21|0.03|0.06|N|O|1997-06-23|1997-07-17|1997-06-26|DELIVER IN PERSON|REG AIR|refully ironic ideas. fluffily expre| +34985|436529|49038|3|44|64482.00|0.01|0.06|N|O|1997-08-15|1997-08-10|1997-08-17|TAKE BACK RETURN|SHIP|ns! blithely car| +34985|733144|45659|4|38|44730.18|0.09|0.06|N|O|1997-09-06|1997-06-26|1997-09-16|TAKE BACK RETURN|AIR|e carefully ir| +34986|774519|37035|1|14|22308.72|0.08|0.08|R|F|1992-05-25|1992-06-07|1992-06-11|DELIVER IN PERSON|FOB| final excuses. blithely special pa| +34986|325644|13163|2|19|31722.97|0.06|0.03|R|F|1992-08-21|1992-06-10|1992-09-09|NONE|REG AIR|tside the regular deposits| +34986|92903|5405|3|19|36022.10|0.06|0.00|R|F|1992-07-09|1992-05-31|1992-07-14|DELIVER IN PERSON|TRUCK| furiously regular i| +34986|418035|5560|4|43|40979.43|0.03|0.03|R|F|1992-05-07|1992-06-12|1992-05-30|DELIVER IN PERSON|RAIL|ously regular ideas. pinto b| +34987|47578|35079|1|19|28985.83|0.00|0.00|N|O|1998-10-16|1998-09-25|1998-10-26|COLLECT COD|AIR|refully final escapades abov| +34987|643290|18315|2|8|9866.08|0.05|0.04|N|O|1998-09-06|1998-10-01|1998-10-04|TAKE BACK RETURN|RAIL|the courts are slyly accordi| +34987|771827|21828|3|42|79749.18|0.08|0.08|N|O|1998-09-05|1998-09-07|1998-09-25|COLLECT COD|REG AIR|ly above the| +34987|93605|31109|4|26|41563.60|0.04|0.01|N|O|1998-11-05|1998-08-15|1998-11-10|DELIVER IN PERSON|SHIP|t. express th| +34987|207059|32068|5|31|29947.24|0.01|0.03|N|O|1998-08-16|1998-08-31|1998-08-27|COLLECT COD|SHIP|theodolites. silent ideas are carefully ab| +34987|39123|1624|6|27|28677.24|0.08|0.03|N|O|1998-09-08|1998-09-08|1998-09-19|DELIVER IN PERSON|AIR|even, regular foxes. slyly ir| +34987|529455|16986|7|4|5937.72|0.10|0.03|N|O|1998-09-01|1998-08-29|1998-09-22|COLLECT COD|RAIL|haggle regula| +34988|549565|49566|1|8|12916.32|0.09|0.00|N|F|1995-06-04|1995-04-15|1995-06-22|NONE|MAIL| unusual sauternes | +34989|762322|24838|1|5|6921.45|0.01|0.07|N|O|1996-04-26|1996-02-25|1996-05-23|NONE|MAIL|express deposits use carefully. asymptote| +34989|338554|26073|2|16|25480.64|0.06|0.04|N|O|1996-04-23|1996-03-21|1996-04-25|NONE|REG AIR|al accounts. bold ideas should | +34989|76526|26527|3|20|30050.40|0.07|0.06|N|O|1996-03-12|1996-02-23|1996-04-02|TAKE BACK RETURN|MAIL|old deposits wake fluffi| +34990|516381|28892|1|22|30741.92|0.06|0.07|N|O|1998-09-01|1998-09-29|1998-09-08|NONE|TRUCK|ly special packa| +34990|808783|33816|2|25|42293.50|0.04|0.00|N|O|1998-11-09|1998-09-07|1998-11-22|NONE|MAIL|al packages? ironic foxes cajole sl| +34991|16446|41447|1|24|32698.56|0.10|0.01|A|F|1992-04-14|1992-05-17|1992-05-12|TAKE BACK RETURN|TRUCK|out the accounts. regular, bold| +34991|399563|49564|2|14|23275.70|0.09|0.08|A|F|1992-05-23|1992-06-03|1992-05-30|COLLECT COD|TRUCK|blithely special d| +34991|454994|42522|3|50|97448.50|0.08|0.05|R|F|1992-05-02|1992-05-27|1992-05-09|TAKE BACK RETURN|TRUCK| regular ideas breac| +34991|69825|44828|4|34|61023.88|0.10|0.08|A|F|1992-07-05|1992-06-05|1992-08-01|COLLECT COD|MAIL|kages! carefully pe| +34991|534268|46779|5|31|40369.44|0.06|0.07|A|F|1992-06-02|1992-06-05|1992-06-10|NONE|SHIP|its nag fluffily above the final, exp| +34991|436171|11188|6|39|43178.85|0.01|0.06|R|F|1992-05-03|1992-05-08|1992-05-29|DELIVER IN PERSON|AIR|es boost: unusual deposits cajole final, | +35016|742219|4734|1|10|12611.80|0.08|0.04|A|F|1992-06-11|1992-04-22|1992-07-11|DELIVER IN PERSON|REG AIR|y blithely | +35016|472315|9843|2|6|7723.74|0.07|0.08|A|F|1992-06-25|1992-05-14|1992-07-07|TAKE BACK RETURN|MAIL|ously regular | +35016|193316|18323|3|20|28186.20|0.01|0.00|R|F|1992-05-13|1992-06-02|1992-05-27|COLLECT COD|FOB|regular packages | +35017|143694|31201|1|1|1737.69|0.07|0.00|A|F|1994-10-17|1994-11-27|1994-11-11|TAKE BACK RETURN|AIR|s nag blithely slyly special platele| +35017|54045|29048|2|50|49952.00|0.01|0.03|R|F|1994-12-04|1994-12-04|1994-12-17|TAKE BACK RETURN|RAIL| cajole furiously deposits. bravely| +35018|707669|7670|1|4|6706.52|0.08|0.00|R|F|1992-03-23|1992-05-11|1992-04-06|TAKE BACK RETURN|SHIP|ckages nod slyly. regular ideas sleep sly| +35018|783899|8930|2|16|31725.76|0.06|0.04|R|F|1992-03-10|1992-04-06|1992-04-05|DELIVER IN PERSON|TRUCK|, bold pinto | +35019|28242|3243|1|20|23404.80|0.06|0.07|N|O|1997-03-19|1996-12-23|1997-04-14|TAKE BACK RETURN|TRUCK|riously even| +35019|654262|41802|2|44|53514.12|0.06|0.02|N|O|1997-02-18|1997-02-10|1997-03-09|NONE|RAIL|l pinto beans| +35019|166793|29297|3|16|29756.64|0.02|0.02|N|O|1997-02-06|1996-12-31|1997-02-28|TAKE BACK RETURN|REG AIR|he final plat| +35019|273305|23306|4|20|25565.80|0.00|0.00|N|O|1997-02-02|1997-02-09|1997-02-05|COLLECT COD|SHIP|xes. deposits snooze furiously acros| +35020|600701|25726|1|6|9610.02|0.09|0.06|N|O|1996-09-24|1996-11-25|1996-10-05|COLLECT COD|MAIL|fix carefully expr| +35020|978943|16501|2|28|56613.20|0.07|0.01|N|O|1996-12-13|1996-12-10|1997-01-12|DELIVER IN PERSON|TRUCK|odolites? carefully ironic platelets boos| +35020|85595|23099|3|15|23708.85|0.07|0.07|N|O|1996-10-25|1996-12-21|1996-11-09|DELIVER IN PERSON|SHIP|refully along the ironic, furious asymp| +35021|90467|40468|1|7|10202.22|0.02|0.02|N|O|1995-08-12|1995-09-15|1995-08-26|DELIVER IN PERSON|REG AIR|sts sleep according to t| +35021|465650|28160|2|13|21003.19|0.01|0.00|N|O|1995-08-17|1995-09-16|1995-09-13|COLLECT COD|MAIL|es sleep slyly. q| +35021|171707|9217|3|43|76484.10|0.07|0.02|N|O|1995-09-21|1995-09-23|1995-10-08|NONE|REG AIR|ven packages grow| +35021|866318|28836|4|35|44949.45|0.05|0.04|N|O|1995-08-14|1995-09-08|1995-09-08|NONE|SHIP|efully fin| +35021|205491|30500|5|23|32119.04|0.01|0.06|N|O|1995-09-09|1995-09-08|1995-09-16|COLLECT COD|SHIP|slyly slow theodolites shall have to sl| +35021|676820|26821|6|43|77261.97|0.09|0.01|N|O|1995-07-14|1995-08-21|1995-07-23|TAKE BACK RETURN|TRUCK|elets. blithely final | +35021|301563|39082|7|28|43807.40|0.02|0.04|N|O|1995-09-29|1995-08-12|1995-10-25|TAKE BACK RETURN|RAIL|d requests according to the bold| +35022|360310|22818|1|21|28776.30|0.06|0.02|N|O|1995-11-11|1995-10-19|1995-12-10|NONE|RAIL|yly unusual depe| +35022|714284|1827|2|27|35052.75|0.07|0.03|N|O|1995-09-14|1995-11-04|1995-09-24|COLLECT COD|TRUCK|heodolites. carefully bold accoun| +35022|965136|40175|3|24|28826.16|0.03|0.00|N|O|1995-10-06|1995-10-14|1995-11-02|COLLECT COD|TRUCK|y regular instructions. deposits | +35022|36737|49238|4|23|38495.79|0.06|0.00|N|O|1995-08-18|1995-10-08|1995-08-19|COLLECT COD|TRUCK|d requests are| +35022|422749|35258|5|37|61853.64|0.05|0.00|N|O|1995-10-10|1995-10-20|1995-10-30|NONE|REG AIR|ilent instruc| +35022|130420|42923|6|11|15954.62|0.06|0.08|N|O|1995-09-17|1995-11-01|1995-09-21|COLLECT COD|SHIP| final dependencies. final accounts about| +35022|959891|22411|7|9|17557.65|0.10|0.08|N|O|1995-09-22|1995-11-02|1995-10-17|DELIVER IN PERSON|FOB|c, even requests wake furio| +35023|885099|10134|1|43|46614.15|0.02|0.00|A|F|1994-03-02|1994-02-10|1994-03-18|COLLECT COD|RAIL|y bold accou| +35023|858248|45800|2|47|56691.40|0.03|0.02|A|F|1994-02-16|1994-02-25|1994-03-16|COLLECT COD|AIR|ould have | +35023|565934|28446|3|13|25998.83|0.10|0.05|R|F|1994-04-17|1994-03-06|1994-05-04|COLLECT COD|AIR|y ironic packages-- ruthlessly final sa| +35023|642883|30420|4|44|80337.40|0.06|0.08|R|F|1994-01-03|1994-02-16|1994-01-27|NONE|SHIP|e slyly. regularly ev| +35023|924490|24491|5|13|19687.85|0.02|0.04|A|F|1994-04-19|1994-03-08|1994-05-17|COLLECT COD|RAIL|de of the bli| +35023|893532|18567|6|30|45764.70|0.07|0.06|A|F|1993-12-27|1994-03-02|1994-01-17|DELIVER IN PERSON|MAIL|eposits. regular instructions aff| +35023|577039|39551|7|19|21204.19|0.08|0.03|A|F|1994-01-27|1994-02-27|1994-02-07|TAKE BACK RETURN|SHIP|p carefully. slyly pending | +35048|286802|49308|1|33|59030.07|0.02|0.00|N|O|1995-10-03|1995-08-28|1995-10-18|NONE|FOB|pitaphs. ironic packages s| +35048|276840|14356|2|35|63589.05|0.04|0.06|N|O|1995-08-19|1995-08-23|1995-09-18|DELIVER IN PERSON|AIR| regular packages wake. e| +35049|379787|42295|1|27|50402.79|0.05|0.06|A|F|1994-11-03|1994-12-04|1994-11-05|DELIVER IN PERSON|MAIL|ly ironic, idle theodoli| +35050|608402|33427|1|49|64208.13|0.04|0.07|N|O|1995-11-16|1995-12-03|1995-12-16|NONE|SHIP|he final requests nag fluffi| +35051|844868|44869|1|4|7251.28|0.01|0.03|N|O|1996-07-21|1996-08-28|1996-07-26|COLLECT COD|FOB|ructions hagg| +35051|679799|4826|2|5|8893.80|0.03|0.01|N|O|1996-09-01|1996-09-04|1996-09-21|COLLECT COD|RAIL|ly pending deposits. platel| +35051|381733|6748|3|50|90736.00|0.01|0.00|N|O|1996-09-19|1996-08-05|1996-10-09|NONE|RAIL|re slyly about | +35051|775934|965|4|39|78386.10|0.04|0.03|N|O|1996-07-08|1996-07-19|1996-07-20|TAKE BACK RETURN|AIR|egular foxes: ironic d| +35051|121689|21690|5|45|76980.60|0.03|0.02|N|O|1996-07-08|1996-07-26|1996-07-21|DELIVER IN PERSON|MAIL|liers. quick| +35052|798062|35608|1|47|54521.41|0.03|0.07|R|F|1994-10-29|1994-09-30|1994-11-28|TAKE BACK RETURN|TRUCK|into beans around the f| +35052|19204|44205|2|11|12355.20|0.02|0.03|R|F|1994-08-01|1994-08-05|1994-08-05|DELIVER IN PERSON|TRUCK|nal packages? regularly pending a| +35053|739659|2174|1|38|64547.56|0.05|0.06|N|O|1996-03-04|1996-01-11|1996-03-18|NONE|SHIP|uests! regular plate| +35053|440730|3239|2|42|70169.82|0.04|0.02|N|O|1996-01-12|1996-02-16|1996-02-03|DELIVER IN PERSON|REG AIR|blithely regular instructions above | +35053|340449|40450|3|2|2978.86|0.02|0.06|N|O|1996-03-07|1996-02-25|1996-03-28|TAKE BACK RETURN|RAIL|n accounts | +35053|913335|38372|4|19|25617.51|0.10|0.06|N|O|1996-01-18|1996-02-19|1996-01-30|NONE|REG AIR|ly final packag| +35054|577165|27166|1|42|52169.88|0.09|0.00|A|F|1994-09-03|1994-08-05|1994-10-03|COLLECT COD|MAIL|dependencies. furiously even packages| +35054|400853|25870|2|46|80676.18|0.07|0.08|R|F|1994-07-03|1994-08-22|1994-07-04|TAKE BACK RETURN|TRUCK|foxes among the ideas use p| +35054|132636|45139|3|2|3337.26|0.00|0.06|A|F|1994-10-01|1994-07-23|1994-10-19|NONE|AIR|usly ruthless deposi| +35055|494654|19673|1|7|11540.41|0.02|0.04|N|O|1997-06-22|1997-06-02|1997-07-18|DELIVER IN PERSON|FOB|ges. pending, regular foxes a| +35055|638243|38244|2|26|30711.46|0.04|0.01|N|O|1997-07-14|1997-06-07|1997-08-04|NONE|RAIL|ronic requ| +35055|942257|17294|3|21|27283.41|0.03|0.02|N|O|1997-05-09|1997-05-30|1997-05-28|DELIVER IN PERSON|FOB|packages sleep furiously regular foxe| +35055|505575|30596|4|33|52158.15|0.07|0.00|N|O|1997-08-01|1997-07-10|1997-08-14|COLLECT COD|AIR|thely carefully regul| +35055|189291|26801|5|49|67634.21|0.06|0.07|N|O|1997-07-03|1997-07-02|1997-07-09|TAKE BACK RETURN|RAIL|usly after the fluffily fina| +35055|402262|27279|6|49|57047.76|0.08|0.07|N|O|1997-05-02|1997-06-02|1997-05-25|TAKE BACK RETURN|TRUCK|ously. idly special| +35055|810877|10878|7|39|69725.37|0.10|0.07|N|O|1997-06-04|1997-07-04|1997-06-14|NONE|FOB|ckages haggle furiously about the | +35080|409628|22137|1|25|38440.00|0.05|0.07|R|F|1994-03-20|1994-02-19|1994-04-13|NONE|RAIL|ions print. carefully final deposits | +35080|611799|49336|2|17|29082.92|0.01|0.04|R|F|1994-03-30|1994-03-14|1994-04-25|COLLECT COD|MAIL|ess pinto beans slee| +35081|740835|40836|1|12|22509.60|0.05|0.08|N|O|1997-02-18|1996-11-25|1997-03-19|NONE|RAIL| slyly final Tiresias haggle| +35081|203158|28167|2|43|45629.02|0.02|0.05|N|O|1996-12-13|1996-12-17|1996-12-16|COLLECT COD|MAIL| cajole. carefully regular| +35081|461591|49119|3|15|23288.55|0.06|0.05|N|O|1997-02-01|1996-12-09|1997-02-03|NONE|FOB|sts maintain | +35081|957252|7253|4|10|13092.10|0.06|0.01|N|O|1996-11-17|1996-12-04|1996-12-10|DELIVER IN PERSON|REG AIR|ackages nag furiously | +35081|530232|42743|5|10|12622.10|0.09|0.06|N|O|1997-01-24|1997-01-07|1997-02-06|TAKE BACK RETURN|TRUCK|ess pinto beans cajole slyly | +35082|313925|13926|1|39|75617.49|0.02|0.00|N|O|1998-03-31|1998-03-17|1998-04-28|TAKE BACK RETURN|REG AIR|luffily re| +35082|128335|3340|2|43|58623.19|0.10|0.04|N|O|1998-02-06|1998-04-02|1998-03-05|TAKE BACK RETURN|AIR|nstructions sleep permanently re| +35082|921385|21386|3|31|43596.54|0.02|0.00|N|O|1998-04-09|1998-02-22|1998-04-14|COLLECT COD|MAIL| ironic deposits. special, pendi| +35082|706800|19315|4|15|27101.55|0.06|0.08|N|O|1998-04-05|1998-03-03|1998-05-04|NONE|RAIL|fluffily ironic accounts| +35083|807524|20041|1|46|65848.08|0.10|0.06|R|F|1994-03-04|1994-01-16|1994-03-27|TAKE BACK RETURN|SHIP|uriously according t| +35083|40587|15588|2|40|61103.20|0.01|0.00|A|F|1993-12-14|1994-01-27|1993-12-22|TAKE BACK RETURN|TRUCK|nding pinto beans after the | +35083|138049|552|3|33|35872.32|0.00|0.02|R|F|1994-02-15|1994-02-02|1994-02-21|TAKE BACK RETURN|FOB|y regular foxes are blithely br| +35083|184503|34504|4|4|6350.00|0.02|0.03|A|F|1993-11-30|1994-02-06|1993-12-01|NONE|TRUCK|bold accounts sleep carefully| +35084|583619|46131|1|11|18728.49|0.03|0.06|N|O|1995-09-08|1995-10-06|1995-10-04|COLLECT COD|FOB| requests. bold accounts are. fi| +35084|881962|44480|2|16|31102.72|0.05|0.00|N|O|1995-10-11|1995-08-22|1995-11-10|TAKE BACK RETURN|MAIL|ust have to ca| +35085|743887|18916|1|3|5792.55|0.10|0.03|N|O|1998-04-27|1998-06-01|1998-05-06|TAKE BACK RETURN|TRUCK| are sly platelets. | +35085|507137|44668|2|47|53773.17|0.04|0.04|N|O|1998-07-25|1998-07-08|1998-08-23|NONE|FOB| pinto beans toward the| +35085|441148|16165|3|44|47921.28|0.10|0.02|N|O|1998-06-03|1998-07-04|1998-06-16|COLLECT COD|TRUCK|, final th| +35085|368888|18889|4|14|27396.18|0.00|0.05|N|O|1998-06-20|1998-06-18|1998-07-14|COLLECT COD|REG AIR|uests. slyly bold gif| +35086|569347|44370|1|48|67983.36|0.04|0.03|R|F|1993-03-31|1993-03-04|1993-04-06|COLLECT COD|RAIL|ic packages. express requests nag ironic| +35086|998610|23649|2|50|85428.50|0.09|0.05|A|F|1993-03-29|1993-03-05|1993-04-17|COLLECT COD|SHIP|side of the s| +35086|630266|17803|3|11|13158.53|0.09|0.04|A|F|1993-02-12|1993-02-13|1993-02-24|COLLECT COD|SHIP|kly express | +35086|876160|1195|4|24|27266.88|0.02|0.03|R|F|1993-04-03|1993-02-21|1993-04-27|COLLECT COD|TRUCK|ffily about the final, final pla| +35087|395645|33167|1|4|6962.52|0.03|0.00|R|F|1992-08-02|1992-10-13|1992-09-01|TAKE BACK RETURN|MAIL|. ironic hockey players sl| +35087|599869|49870|2|3|5906.52|0.03|0.00|A|F|1992-10-28|1992-10-12|1992-11-08|COLLECT COD|AIR|l requests| +35087|983814|46334|3|41|77808.57|0.00|0.06|A|F|1992-09-05|1992-09-04|1992-09-22|TAKE BACK RETURN|SHIP|ar excuses. furiously unusual d| +35112|702375|39918|1|29|39942.86|0.07|0.00|A|F|1995-05-25|1995-05-17|1995-06-05|TAKE BACK RETURN|AIR|pinto beans. slyly | +35112|813663|1212|2|8|12612.96|0.06|0.07|R|F|1995-04-15|1995-05-15|1995-04-27|COLLECT COD|REG AIR|s. blithely even dolphins | +35112|221217|21218|3|50|56910.00|0.04|0.05|N|O|1995-08-02|1995-07-04|1995-08-03|TAKE BACK RETURN|AIR|. carefully regular ideas wake furiously| +35112|980197|5236|4|43|54917.45|0.06|0.04|A|F|1995-05-21|1995-05-08|1995-06-01|TAKE BACK RETURN|RAIL|uctions boost furi| +35112|160411|22915|5|22|32371.02|0.07|0.07|N|O|1995-07-09|1995-07-03|1995-07-13|DELIVER IN PERSON|SHIP|sits among the slyly bold accounts n| +35112|23519|11020|6|8|11540.08|0.05|0.06|N|F|1995-05-23|1995-06-05|1995-06-22|COLLECT COD|TRUCK|ly final asymptotes. regula| +35113|407714|20223|1|6|9730.14|0.07|0.08|A|F|1993-02-19|1993-03-19|1993-03-03|DELIVER IN PERSON|RAIL|s sleep fluffily depende| +35113|443120|30645|2|28|29766.80|0.00|0.01|R|F|1993-02-20|1993-04-17|1993-03-22|TAKE BACK RETURN|SHIP|ter the quickly express packages nag ca| +35113|511574|24085|3|40|63422.00|0.10|0.04|R|F|1993-03-22|1993-04-21|1993-04-03|DELIVER IN PERSON|TRUCK|lyly ironic pi| +35113|20014|20015|4|18|16812.18|0.06|0.06|A|F|1993-05-20|1993-02-28|1993-06-18|DELIVER IN PERSON|MAIL|the fluffily regular foxes. blithely | +35113|365831|15832|5|21|39833.22|0.09|0.06|R|F|1993-03-31|1993-04-03|1993-04-22|COLLECT COD|FOB| unusual courts. packag| +35114|537076|24607|1|12|13356.60|0.07|0.03|A|F|1992-04-16|1992-06-13|1992-05-13|TAKE BACK RETURN|SHIP|carefully regular foxe| +35114|630602|43115|2|5|7662.85|0.02|0.07|A|F|1992-05-08|1992-06-27|1992-06-02|NONE|RAIL|lieve carefully silent request| +35114|520460|7991|3|15|22206.60|0.01|0.03|A|F|1992-05-18|1992-05-28|1992-06-15|NONE|TRUCK|low, ironic asymptotes. blithe| +35115|775457|488|1|34|52102.28|0.06|0.03|R|F|1992-10-20|1992-10-18|1992-11-11|COLLECT COD|RAIL|riously ev| +35115|90582|28086|2|28|44032.24|0.05|0.07|A|F|1992-12-14|1992-10-31|1992-12-23|TAKE BACK RETURN|MAIL| requests haggle. ideas are about th| +35116|711626|49169|1|7|11463.13|0.00|0.05|R|F|1994-09-14|1994-10-05|1994-09-27|DELIVER IN PERSON|TRUCK|counts. ideas cajole packages. expres| +35116|281608|19124|2|29|46098.11|0.06|0.07|R|F|1994-09-22|1994-10-21|1994-10-19|DELIVER IN PERSON|RAIL|structions. unusua| +35116|976775|39295|3|18|33331.14|0.02|0.07|A|F|1994-09-13|1994-10-28|1994-09-14|COLLECT COD|TRUCK|ns are slyly across the s| +35116|642843|5356|4|14|25001.34|0.06|0.06|A|F|1994-09-07|1994-10-25|1994-09-21|COLLECT COD|TRUCK| pending asymptotes cajole| +35116|247822|35335|5|2|3539.62|0.02|0.01|A|F|1994-11-09|1994-11-06|1994-11-27|DELIVER IN PERSON|RAIL|sly ironic depths x-ray carefully. carefu| +35116|136369|48872|6|13|18269.68|0.08|0.03|A|F|1994-11-30|1994-11-05|1994-12-07|COLLECT COD|RAIL|egular, ironic requests. furiously e| +35116|940882|3401|7|14|26919.76|0.00|0.02|R|F|1994-12-06|1994-11-06|1994-12-25|DELIVER IN PERSON|MAIL| the final theodolites. quic| +35117|396396|46397|1|16|23878.08|0.00|0.05|N|O|1996-10-28|1996-12-04|1996-11-03|NONE|RAIL|ular court| +35117|221493|33998|2|16|22631.68|0.06|0.00|N|O|1997-01-21|1996-11-07|1997-02-18|COLLECT COD|REG AIR|e the special, pending pin| +35117|632441|44954|3|18|24721.38|0.05|0.03|N|O|1997-01-20|1996-11-28|1997-01-31|DELIVER IN PERSON|SHIP|notornis x-ray fur| +35117|430893|18418|4|33|60187.71|0.06|0.00|N|O|1996-11-05|1996-10-28|1996-11-27|COLLECT COD|AIR|k deposits. sl| +35117|6402|31403|5|38|49719.20|0.00|0.01|N|O|1996-10-19|1996-11-25|1996-11-07|NONE|FOB| even, final platelets.| +35117|596675|9187|6|33|58464.45|0.04|0.02|N|O|1997-01-20|1996-11-06|1997-01-26|TAKE BACK RETURN|SHIP|lly sly courts.| +35117|302184|2185|7|17|20164.89|0.00|0.01|N|O|1996-09-30|1996-10-25|1996-10-25|DELIVER IN PERSON|AIR|ccounts are blithely carefully| +35118|790168|2684|1|39|49067.07|0.00|0.00|A|F|1994-07-31|1994-07-17|1994-08-01|TAKE BACK RETURN|MAIL|ly according to the furio| +35118|336880|36881|2|4|7667.48|0.05|0.02|R|F|1994-05-24|1994-06-02|1994-06-22|DELIVER IN PERSON|REG AIR|ly silent | +35118|931391|18946|3|8|11378.80|0.05|0.08|R|F|1994-05-04|1994-07-22|1994-05-25|COLLECT COD|SHIP| express deposits run care| +35118|886945|36946|4|46|88867.40|0.08|0.00|R|F|1994-06-03|1994-06-16|1994-06-15|TAKE BACK RETURN|SHIP|efully final pla| +35118|878290|40808|5|1|1268.25|0.05|0.07|R|F|1994-05-26|1994-07-15|1994-06-09|COLLECT COD|TRUCK|s sleep blithely. f| +35119|23222|48223|1|40|45808.80|0.06|0.01|R|F|1992-06-05|1992-05-27|1992-06-24|COLLECT COD|REG AIR|ajole fluffily pending| +35119|289265|39266|2|3|3762.75|0.05|0.03|A|F|1992-05-12|1992-05-27|1992-06-04|COLLECT COD|FOB| special requests are furious| +35144|255514|18020|1|10|14695.00|0.10|0.01|N|O|1995-07-30|1995-05-29|1995-08-06|COLLECT COD|SHIP|foxes integr| +35144|417689|42706|2|6|9639.96|0.09|0.00|N|O|1995-08-02|1995-05-21|1995-08-06|TAKE BACK RETURN|AIR|as boost fluffily alongside of| +35144|97278|34782|3|50|63763.50|0.09|0.01|R|F|1995-04-13|1995-06-18|1995-05-10|TAKE BACK RETURN|RAIL|lites haggle carefully. furio| +35145|155551|30558|1|50|80327.50|0.02|0.02|R|F|1992-06-07|1992-05-05|1992-06-22|COLLECT COD|TRUCK|counts hang blithel| +35145|333372|20891|2|26|36539.36|0.01|0.06|R|F|1992-05-19|1992-04-29|1992-05-26|COLLECT COD|RAIL|regular packages along the carefully sp| +35145|972534|35054|3|5|8032.45|0.06|0.08|A|F|1992-03-27|1992-04-07|1992-04-13|NONE|FOB|ven accounts alongside of the carefully fi| +35145|375259|274|4|48|64043.52|0.05|0.00|R|F|1992-04-30|1992-05-10|1992-05-13|TAKE BACK RETURN|TRUCK| furiously against the bold accounts. expre| +35145|968278|30798|5|13|17500.99|0.06|0.02|A|F|1992-06-23|1992-05-05|1992-07-12|NONE|FOB|sly. fluffily special packages use ne| +35145|846008|33557|6|1|953.96|0.10|0.08|A|F|1992-06-20|1992-04-29|1992-07-01|TAKE BACK RETURN|RAIL| among the furiously regular requests | +35145|854326|29361|7|18|23045.04|0.02|0.01|A|F|1992-06-12|1992-05-01|1992-06-25|TAKE BACK RETURN|FOB|thely. furiously unusual packages are caref| +35146|647306|47307|1|36|45117.72|0.09|0.07|N|O|1995-09-27|1995-09-30|1995-10-10|COLLECT COD|MAIL|sts. furiously silent packages wake again| +35146|259259|46775|2|41|49947.84|0.05|0.03|N|O|1995-09-12|1995-11-03|1995-09-21|TAKE BACK RETURN|MAIL|cajole slyly a| +35146|358400|20908|3|41|59793.99|0.06|0.04|N|O|1995-09-30|1995-10-20|1995-10-12|COLLECT COD|MAIL|kly ironic request| +35146|615589|3126|4|22|33100.10|0.00|0.07|N|O|1995-09-15|1995-09-15|1995-09-20|TAKE BACK RETURN|RAIL|al pains are. special packag| +35147|155725|5726|1|7|12465.04|0.06|0.05|N|O|1997-10-07|1997-10-04|1997-10-30|DELIVER IN PERSON|SHIP|t against the special a| +35147|263126|13127|2|38|41386.18|0.02|0.06|N|O|1997-08-28|1997-09-17|1997-09-17|NONE|TRUCK|egular requests haggle across the| +35147|354299|16807|3|13|17592.64|0.09|0.06|N|O|1997-09-25|1997-09-30|1997-10-20|DELIVER IN PERSON|MAIL|ween the carefully final depende| +35147|693991|19018|4|16|31759.36|0.02|0.07|N|O|1997-09-14|1997-09-01|1997-09-25|NONE|SHIP| packages affix ruthlessly furio| +35147|893263|5781|5|17|21355.74|0.00|0.08|N|O|1997-07-20|1997-09-19|1997-07-23|DELIVER IN PERSON|AIR|rave foxes kindle blithely alongside| +35147|64730|14731|6|36|61010.28|0.04|0.07|N|O|1997-09-04|1997-08-17|1997-09-30|NONE|TRUCK|iously regular deposits are slyly | +35148|517118|4649|1|7|7945.63|0.03|0.08|A|F|1993-05-12|1993-04-15|1993-06-07|TAKE BACK RETURN|SHIP|lose across the regular deposi| +35148|192830|30340|2|41|78836.03|0.09|0.04|A|F|1993-03-06|1993-04-04|1993-04-03|TAKE BACK RETURN|AIR|into beans cajole. quickly| +35148|892146|42147|3|21|23900.10|0.08|0.05|R|F|1993-05-12|1993-03-26|1993-05-28|TAKE BACK RETURN|MAIL| even deposits. ironic | +35148|293027|5533|4|18|18360.18|0.08|0.02|A|F|1993-05-25|1993-04-02|1993-06-09|COLLECT COD|SHIP|refully even deposits; th| +35148|896356|21391|5|42|56797.02|0.04|0.02|R|F|1993-02-28|1993-05-05|1993-03-04|DELIVER IN PERSON|TRUCK|y bold foxes sublate a| +35148|39727|14728|6|32|53335.04|0.06|0.00|A|F|1993-04-26|1993-04-18|1993-05-26|NONE|AIR|deposits. ideas use against| +35149|17868|17869|1|3|5357.58|0.09|0.05|N|O|1998-08-04|1998-10-21|1998-08-21|COLLECT COD|AIR|at slyly furiously final waters| +35149|305435|17942|2|50|72021.00|0.00|0.07|N|O|1998-09-24|1998-10-12|1998-09-30|DELIVER IN PERSON|REG AIR|instructions. furiously| +35149|443473|5982|3|20|28329.00|0.07|0.08|N|O|1998-09-08|1998-09-28|1998-10-07|DELIVER IN PERSON|RAIL|fully. carefully fi| +35149|439024|14041|4|10|9630.00|0.05|0.03|N|O|1998-10-24|1998-10-13|1998-11-06|TAKE BACK RETURN|SHIP|as was. carefully even dependencies wa| +35150|886740|49258|1|48|82881.60|0.01|0.02|N|O|1996-01-07|1996-01-16|1996-02-01|TAKE BACK RETURN|TRUCK|eep evenly carefully ironic package| +35150|437066|24591|2|12|12036.48|0.04|0.04|N|O|1995-12-06|1995-11-30|1995-12-27|NONE|FOB|out the fluffily special theodolites wa| +35150|764540|14541|3|20|32090.20|0.01|0.07|N|O|1995-12-04|1995-11-29|1995-12-20|COLLECT COD|TRUCK| haggle with the slyly | +35150|612209|24722|4|29|32513.93|0.08|0.08|N|O|1996-01-28|1995-12-11|1996-02-17|NONE|TRUCK|gle final, sil| +35150|394816|44817|5|43|82164.40|0.06|0.03|N|O|1995-10-25|1995-11-28|1995-10-27|COLLECT COD|FOB|olites sleep according to the silently un| +35150|666043|41070|6|33|33297.33|0.01|0.02|N|O|1996-01-19|1995-12-21|1996-01-20|NONE|RAIL|he carefully pending w| +35151|657891|7892|1|49|90594.14|0.08|0.02|N|O|1998-09-07|1998-08-25|1998-09-11|DELIVER IN PERSON|RAIL|use. final, final ideas should doubt caref| +35151|168676|6186|2|8|13957.36|0.01|0.00|N|O|1998-08-13|1998-08-21|1998-08-31|TAKE BACK RETURN|FOB|arefully regular pinto | +35151|935360|35361|3|22|30697.04|0.10|0.04|N|O|1998-09-18|1998-09-18|1998-10-04|NONE|FOB|ly express packages cajole. slyly bold fox| +35151|579993|42505|4|1|2072.97|0.04|0.08|N|O|1998-11-12|1998-08-22|1998-12-02|COLLECT COD|AIR|cuses slee| +35151|926050|26051|5|11|11836.11|0.06|0.03|N|O|1998-10-04|1998-10-02|1998-10-10|COLLECT COD|REG AIR|ckages. ironic p| +35176|723744|23745|1|19|33586.49|0.10|0.08|N|O|1998-05-20|1998-06-17|1998-05-28|DELIVER IN PERSON|MAIL|lace of the carefully silent| +35176|950213|12733|2|41|51789.97|0.10|0.04|N|O|1998-06-05|1998-07-29|1998-06-21|TAKE BACK RETURN|RAIL|fully across| +35176|216597|4110|3|24|36325.92|0.07|0.03|N|O|1998-07-21|1998-07-06|1998-08-09|NONE|MAIL| even pinto bea| +35177|462234|49762|1|11|13158.31|0.03|0.06|A|F|1995-01-05|1995-02-07|1995-02-01|COLLECT COD|FOB|posits boost carefully. regular| +35178|63542|38545|1|14|21077.56|0.10|0.04|N|O|1995-08-29|1995-09-04|1995-09-04|TAKE BACK RETURN|MAIL|y special | +35178|941450|16487|2|22|32811.02|0.06|0.00|N|O|1995-06-27|1995-07-18|1995-06-30|COLLECT COD|SHIP|ounts sleep slyly speci| +35178|937726|25281|3|4|7054.72|0.05|0.01|N|O|1995-07-25|1995-08-20|1995-08-14|NONE|AIR|d requests impress slyly furiousl| +35178|359001|34016|4|9|9539.91|0.06|0.05|N|O|1995-08-14|1995-08-23|1995-09-02|TAKE BACK RETURN|SHIP|tes must have to wake furio| +35178|726468|38983|5|40|59777.20|0.08|0.03|N|O|1995-09-21|1995-09-10|1995-10-02|DELIVER IN PERSON|RAIL|y idle ideas. unusual| +35178|731624|6653|6|44|72845.96|0.00|0.05|N|O|1995-08-11|1995-09-12|1995-09-04|DELIVER IN PERSON|MAIL|old asymptotes cajole blithely alo| +35178|397480|9988|7|30|47324.10|0.02|0.00|N|O|1995-08-29|1995-07-16|1995-09-19|DELIVER IN PERSON|TRUCK|ess accounts wake special requests. bo| +35179|433666|8683|1|22|35192.08|0.07|0.02|N|O|1996-07-27|1996-06-29|1996-08-24|NONE|SHIP| even accounts boost| +35179|616971|29484|2|27|50974.38|0.06|0.08|N|O|1996-06-22|1996-06-22|1996-07-11|NONE|TRUCK|ow furiously. regular | +35179|416984|29493|3|28|53226.88|0.04|0.07|N|O|1996-07-13|1996-07-13|1996-08-03|NONE|SHIP|arefully alongside of the s| +35179|246942|21951|4|25|47223.25|0.07|0.01|N|O|1996-07-24|1996-06-16|1996-08-06|DELIVER IN PERSON|REG AIR|g accounts. blithely silent pin| +35179|342848|30367|5|45|85087.35|0.02|0.05|N|O|1996-07-05|1996-06-21|1996-07-25|NONE|REG AIR|ully special packa| +35180|862380|12381|1|38|51008.92|0.02|0.07|N|O|1996-07-29|1996-09-15|1996-08-27|TAKE BACK RETURN|MAIL|uests boost fluffily after the bold, | +35180|8776|46277|2|31|52227.87|0.10|0.05|N|O|1996-10-02|1996-08-18|1996-10-17|DELIVER IN PERSON|REG AIR|ironic, careful platelets. fu| +35181|957477|32516|1|35|53705.05|0.10|0.07|N|O|1996-01-29|1996-02-22|1996-02-20|COLLECT COD|SHIP| blithely even | +35181|313663|13664|2|22|36886.30|0.07|0.03|N|O|1996-03-11|1996-01-07|1996-04-02|DELIVER IN PERSON|AIR|ssly pending packages. fluffily speci| +35181|725243|272|3|8|10145.68|0.00|0.05|N|O|1996-01-16|1996-03-07|1996-02-03|COLLECT COD|TRUCK|thely about the| +35181|156389|18893|4|21|30352.98|0.05|0.04|N|O|1996-02-12|1996-03-01|1996-03-02|NONE|AIR|ver the final packages haggle fluffily ex| +35181|419350|19351|5|16|20309.28|0.06|0.07|N|O|1996-03-04|1996-01-30|1996-03-22|DELIVER IN PERSON|TRUCK|regular packages are above the blithely eve| +35181|999012|36570|6|34|37772.98|0.06|0.02|N|O|1995-12-21|1996-01-23|1996-01-12|COLLECT COD|RAIL|elets. carefully bold theodolites| +35182|62216|12217|1|16|18851.36|0.09|0.08|N|O|1997-08-31|1997-06-25|1997-09-17|NONE|TRUCK| bold pinto beans must have to | +35182|647575|35112|2|49|74604.46|0.04|0.03|N|O|1997-09-08|1997-07-10|1997-09-24|TAKE BACK RETURN|FOB|nag whithout the bold accounts. s| +35182|787471|37472|3|22|34285.68|0.00|0.03|N|O|1997-06-19|1997-06-20|1997-06-24|NONE|MAIL|s solve agains| +35182|18015|30516|4|32|29856.32|0.01|0.06|N|O|1997-08-31|1997-07-20|1997-09-24|TAKE BACK RETURN|REG AIR|ial requests sleep slyly caref| +35182|765326|15327|5|24|33390.96|0.06|0.08|N|O|1997-08-13|1997-08-08|1997-09-11|DELIVER IN PERSON|FOB|fluffily final| +35182|822589|10138|6|22|33253.88|0.07|0.06|N|O|1997-07-30|1997-07-31|1997-08-11|DELIVER IN PERSON|TRUCK|ts. furiously | +35182|236632|11641|7|33|51764.46|0.01|0.06|N|O|1997-08-27|1997-06-19|1997-09-18|DELIVER IN PERSON|TRUCK|ix against the regular requests. caref| +35183|68747|43750|1|2|3431.48|0.01|0.06|N|O|1998-04-05|1998-02-24|1998-04-16|TAKE BACK RETURN|TRUCK| alongside of the regular, pendi| +35183|417953|30462|2|12|22451.16|0.07|0.04|N|O|1998-04-04|1998-03-17|1998-04-14|COLLECT COD|RAIL| accounts u| +35183|526471|14002|3|30|44923.50|0.01|0.06|N|O|1998-01-26|1998-03-04|1998-02-17|NONE|RAIL|nto beans boost carefully special asym| +35208|165788|15789|1|33|61174.74|0.01|0.08|R|F|1993-02-17|1993-02-20|1993-03-08|NONE|SHIP|g warthogs.| +35208|387115|12130|2|44|52892.40|0.08|0.07|R|F|1993-01-26|1993-02-24|1993-02-06|COLLECT COD|TRUCK|ily unusual packages cajo| +35208|239481|14490|3|3|4261.41|0.04|0.06|R|F|1993-02-25|1993-03-04|1993-03-18|NONE|FOB|ithely about the fluffily speci| +35208|948807|11326|4|18|33403.68|0.02|0.08|R|F|1993-04-19|1993-02-23|1993-05-04|TAKE BACK RETURN|TRUCK| blithely ironic platelets. instruc| +35208|588264|13287|5|43|58146.32|0.06|0.00|R|F|1993-01-30|1993-04-02|1993-02-03|DELIVER IN PERSON|RAIL|arefully regula| +35208|943726|31281|6|35|61938.80|0.04|0.02|R|F|1993-04-27|1993-04-02|1993-05-15|DELIVER IN PERSON|SHIP|c instructions are ironically bold reque| +35209|527562|15093|1|1|1589.54|0.08|0.05|N|O|1997-05-11|1997-04-15|1997-06-07|NONE|MAIL|pendencies nag final deposits. bol| +35209|722914|35429|2|13|25179.44|0.00|0.05|N|O|1997-05-06|1997-04-19|1997-05-19|DELIVER IN PERSON|FOB| at the final foxes. final packages along | +35209|8444|45945|3|17|22991.48|0.00|0.03|N|O|1997-06-19|1997-04-09|1997-06-27|DELIVER IN PERSON|FOB|es? carefully pendin| +35210|316888|16889|1|19|36192.53|0.09|0.02|R|F|1994-05-03|1994-03-24|1994-05-12|NONE|RAIL| pending requests; quickly regular | +35210|935623|35624|2|1|1658.58|0.02|0.01|A|F|1994-03-30|1994-03-11|1994-04-16|TAKE BACK RETURN|REG AIR|nag slyly | +35210|8951|46452|3|20|37199.00|0.01|0.06|A|F|1994-02-18|1994-04-09|1994-03-09|COLLECT COD|MAIL|old requests wake blithely fur| +35210|423436|35945|4|11|14953.51|0.06|0.06|A|F|1994-02-18|1994-03-13|1994-03-16|DELIVER IN PERSON|AIR| beans acr| +35210|679597|17137|5|22|34684.32|0.05|0.00|A|F|1994-04-18|1994-04-14|1994-05-17|TAKE BACK RETURN|AIR|deas across| +35210|985409|47929|6|33|49313.88|0.07|0.01|R|F|1994-04-19|1994-03-28|1994-05-17|TAKE BACK RETURN|AIR| after the quickly regular theod| +35210|768930|18931|7|4|7995.60|0.03|0.00|A|F|1994-04-19|1994-04-18|1994-04-22|COLLECT COD|FOB|slyly even ideas across| +35211|391674|4182|1|6|10593.96|0.01|0.02|R|F|1993-08-21|1993-06-24|1993-09-17|DELIVER IN PERSON|RAIL|s against the furiously even instructi| +35211|859002|46554|2|42|40360.32|0.04|0.02|A|F|1993-05-18|1993-06-13|1993-06-10|COLLECT COD|TRUCK|ns. blithe| +35211|240168|2673|3|42|46542.30|0.10|0.06|R|F|1993-06-05|1993-06-14|1993-06-12|COLLECT COD|MAIL|ld, regular deposits. fin| +35211|488522|26050|4|41|61930.50|0.04|0.04|R|F|1993-05-30|1993-07-04|1993-06-22|NONE|AIR|deas. blithely silent deposits impres| +35211|584596|34597|5|20|33611.40|0.06|0.01|R|F|1993-06-19|1993-06-01|1993-06-28|COLLECT COD|REG AIR|. even, even| +35211|300722|25735|6|28|48235.88|0.09|0.05|R|F|1993-06-07|1993-06-02|1993-06-11|NONE|REG AIR|o the slyly final di| +35211|226020|13533|7|45|42570.45|0.00|0.06|R|F|1993-06-07|1993-06-21|1993-06-15|TAKE BACK RETURN|RAIL|foxes nag. carefully even p| +35212|705040|5041|1|9|9405.09|0.10|0.00|A|F|1995-04-26|1995-02-18|1995-05-01|COLLECT COD|REG AIR|sauternes: furiously special p| +35212|598543|48544|2|34|55811.68|0.08|0.05|R|F|1995-01-28|1995-02-27|1995-02-26|COLLECT COD|SHIP|ironic deposits are slyly aft| +35212|695535|33075|3|6|9183.00|0.07|0.05|A|F|1995-03-23|1995-03-29|1995-04-20|TAKE BACK RETURN|MAIL|ng deposits. blith| +35212|849025|11542|4|13|12661.74|0.07|0.00|A|F|1995-02-20|1995-02-19|1995-03-22|NONE|TRUCK|lyly ironic re| +35213|97346|47347|1|22|29553.48|0.06|0.01|R|F|1994-12-16|1995-01-21|1995-01-03|DELIVER IN PERSON|REG AIR|instructions ca| +35213|85644|10647|2|32|52148.48|0.02|0.08|R|F|1995-01-28|1995-01-19|1995-02-22|DELIVER IN PERSON|SHIP|he quickly regular hockey play| +35213|410472|35489|3|27|37326.15|0.07|0.00|A|F|1995-02-19|1995-02-16|1995-03-21|TAKE BACK RETURN|MAIL| use carefully accounts. unusual, even warh| +35213|786614|24160|4|48|81627.84|0.07|0.06|R|F|1995-02-01|1995-01-17|1995-02-17|COLLECT COD|SHIP|ses wake final warthogs. | +35213|604864|42401|5|37|65446.71|0.07|0.05|A|F|1995-02-05|1995-02-25|1995-02-13|DELIVER IN PERSON|AIR|ounts engage about the deposits. slyly | +35213|933152|20707|6|30|35553.30|0.00|0.02|R|F|1994-12-17|1995-01-27|1995-01-10|NONE|SHIP|ickly above the furiously final request| +35214|732580|45095|1|6|9675.30|0.01|0.08|N|O|1997-03-02|1997-02-22|1997-03-09|DELIVER IN PERSON|FOB|s? quickly regular packages cajole slyly. p| +35214|465587|3115|2|15|23288.40|0.02|0.01|N|O|1997-03-02|1997-02-21|1997-03-21|COLLECT COD|TRUCK|above the final, regular deposits cajole| +35214|114983|27486|3|7|13985.86|0.00|0.03|N|O|1997-01-24|1997-03-01|1997-02-06|TAKE BACK RETURN|SHIP|unts affix alongside| +35215|272012|47023|1|20|19680.00|0.00|0.07|R|F|1992-10-11|1992-10-01|1992-10-14|TAKE BACK RETURN|MAIL|nts. pendin| +35215|703158|15673|2|27|31350.24|0.09|0.00|A|F|1992-08-17|1992-09-08|1992-08-29|NONE|RAIL|gular requests. even requests could wake | +35215|972200|47239|3|21|26715.36|0.07|0.03|A|F|1992-09-06|1992-09-24|1992-09-23|DELIVER IN PERSON|REG AIR| special excuses| +35240|113102|609|1|3|3345.30|0.02|0.02|A|F|1992-11-24|1992-12-23|1992-11-27|TAKE BACK RETURN|REG AIR|sleep ironic, special reques| +35240|897312|47313|2|6|7855.62|0.00|0.03|A|F|1992-12-06|1992-12-27|1993-01-02|NONE|MAIL|ithely even | +35240|122509|35012|3|25|38287.50|0.08|0.04|A|F|1992-11-25|1993-01-05|1992-12-15|DELIVER IN PERSON|SHIP|y slyly final p| +35240|993079|5599|4|20|23440.60|0.00|0.01|R|F|1992-12-24|1993-01-13|1993-01-21|NONE|TRUCK|ld theodolites beside the furiously iron| +35240|663502|1042|5|13|19051.11|0.09|0.08|R|F|1992-12-20|1993-01-15|1992-12-21|COLLECT COD|RAIL|ing to the carefully bold frays | +35240|476731|26732|6|10|17077.10|0.08|0.03|R|F|1993-02-08|1993-02-09|1993-02-13|COLLECT COD|AIR|final pack| +35241|181050|43554|1|31|35062.55|0.09|0.04|A|F|1994-12-02|1994-11-30|1994-12-10|DELIVER IN PERSON|FOB|lyly thin requests. p| +35241|903083|40638|2|15|16290.60|0.09|0.06|A|F|1994-12-15|1994-11-24|1994-12-23|DELIVER IN PERSON|AIR|theodolites affix. even deposits are fluffi| +35242|188272|776|1|2|2720.54|0.00|0.03|N|O|1995-10-19|1995-10-21|1995-11-05|TAKE BACK RETURN|REG AIR|y across the carefully bold ac| +35242|284200|34201|2|25|29604.75|0.09|0.04|N|O|1995-10-27|1995-10-05|1995-10-31|COLLECT COD|MAIL|pending pac| +35242|546055|33586|3|3|3303.09|0.10|0.05|N|O|1995-10-03|1995-09-14|1995-10-13|TAKE BACK RETURN|SHIP|l forges. furiou| +35242|536369|36370|4|30|42160.20|0.05|0.00|N|O|1995-11-20|1995-09-10|1995-11-27|NONE|REG AIR|ithely ironic pinto beans wake slyly | +35242|742402|42403|5|41|59219.17|0.04|0.08|N|O|1995-09-17|1995-10-26|1995-10-05|TAKE BACK RETURN|MAIL|nts. quickly bo| +35242|541035|41036|6|38|40888.38|0.06|0.07|N|O|1995-09-08|1995-10-24|1995-10-03|TAKE BACK RETURN|SHIP|ular platelets haggle| +35243|902297|14816|1|40|51970.00|0.05|0.02|N|O|1997-02-13|1997-01-09|1997-03-07|TAKE BACK RETURN|MAIL|y regular, ironic pinto beans? bold | +35243|894290|44291|2|14|17979.50|0.00|0.08|N|O|1997-01-02|1997-03-07|1997-01-10|NONE|RAIL|e carefully bold pinto be| +35244|407495|45020|1|35|49086.45|0.02|0.08|R|F|1993-04-10|1993-02-02|1993-04-27|COLLECT COD|RAIL|ts among the quickly final ideas| +35244|757605|20121|2|27|44889.39|0.05|0.01|A|F|1993-04-03|1993-03-19|1993-04-27|TAKE BACK RETURN|REG AIR| carefully. blit| +35244|51760|14262|3|44|75317.44|0.00|0.01|R|F|1993-03-09|1993-02-18|1993-03-25|TAKE BACK RETURN|REG AIR|ending requests according | +35244|917739|17740|4|24|42160.56|0.04|0.00|A|F|1993-03-08|1993-03-06|1993-03-11|NONE|AIR|ular theodolites| +35244|432207|44716|5|21|23922.78|0.06|0.04|R|F|1993-01-15|1993-03-17|1993-01-17|COLLECT COD|MAIL| final theodolites sleep. ironic | +35244|91000|28504|6|21|20811.00|0.07|0.05|A|F|1993-02-13|1993-03-29|1993-03-10|DELIVER IN PERSON|SHIP|kages. carefully unusual pai| +35245|756855|19371|1|49|93679.18|0.02|0.08|A|F|1992-12-22|1992-12-27|1992-12-31|NONE|FOB|nts according| +35245|446782|34307|2|7|12101.32|0.02|0.05|R|F|1992-12-25|1992-12-09|1993-01-15|DELIVER IN PERSON|AIR|equests wake. special ideas until the | +35245|49987|37488|3|14|27117.72|0.01|0.07|A|F|1992-11-29|1992-12-05|1992-12-02|TAKE BACK RETURN|MAIL|furiously even deposits are slyly f| +35245|123597|36100|4|2|3241.18|0.03|0.07|A|F|1992-11-18|1993-01-13|1992-12-04|NONE|FOB|s wake carefully furiously regu| +35246|422888|22889|1|28|50704.08|0.06|0.04|R|F|1993-07-08|1993-08-27|1993-08-02|TAKE BACK RETURN|RAIL|he deposits| +35246|472023|47042|2|36|35820.00|0.04|0.02|R|F|1993-07-25|1993-08-03|1993-08-12|NONE|AIR|out the even dolphins thrash after the sly| +35247|391394|3902|1|2|2970.76|0.01|0.03|N|O|1996-11-22|1996-10-09|1996-12-22|TAKE BACK RETURN|SHIP|hely. carefully unus| +35247|143630|6133|2|36|60250.68|0.04|0.06|N|O|1996-10-08|1996-10-11|1996-10-23|COLLECT COD|RAIL|n packages wake according to the | +35247|985887|48407|3|8|15782.72|0.04|0.08|N|O|1996-10-10|1996-10-11|1996-11-01|COLLECT COD|MAIL|ach furious| +35247|793110|5626|4|1|1203.08|0.06|0.04|N|O|1996-09-10|1996-09-09|1996-09-15|TAKE BACK RETURN|AIR|grow slyly. ironic ideas tow| +35247|797413|34959|5|10|15103.80|0.10|0.03|N|O|1996-08-21|1996-09-13|1996-09-20|COLLECT COD|TRUCK|uriously regular ideas. close requests sle| +35247|105716|30721|6|20|34434.20|0.10|0.02|N|O|1996-08-23|1996-09-29|1996-09-02|NONE|TRUCK|quests. foxes use slyly| +35272|417860|42877|1|17|30223.28|0.10|0.04|A|F|1993-02-19|1993-01-21|1993-02-21|NONE|REG AIR|ronic theodolites cajole across the fin| +35272|964359|1917|2|18|25619.58|0.04|0.04|R|F|1993-03-06|1993-02-17|1993-03-19|TAKE BACK RETURN|REG AIR|lithely spe| +35272|969611|7169|3|11|18486.27|0.01|0.05|R|F|1993-03-16|1993-02-25|1993-03-25|NONE|AIR|even deposits wake about the regular, r| +35272|248607|48608|4|44|68445.96|0.07|0.07|R|F|1993-02-25|1993-01-25|1993-03-03|COLLECT COD|FOB|e carefully boldly | +35273|469897|44916|1|18|33603.66|0.04|0.08|N|O|1997-06-08|1997-06-08|1997-06-09|DELIVER IN PERSON|RAIL|hely regular instructions nag silent, reg| +35273|557453|32476|2|9|13593.87|0.04|0.05|N|O|1997-04-04|1997-06-24|1997-04-12|NONE|FOB| asymptotes b| +35273|103387|28392|3|8|11123.04|0.01|0.05|N|O|1997-06-25|1997-06-17|1997-07-25|NONE|REG AIR|posits. ironic, pending theodolites nod. id| +35274|267941|42952|1|19|36269.67|0.06|0.08|N|O|1997-09-01|1997-11-01|1997-09-29|COLLECT COD|FOB|ecial deposits shall have to im| +35274|279935|17451|2|22|42128.24|0.09|0.06|N|O|1997-09-09|1997-10-28|1997-09-29|TAKE BACK RETURN|FOB| final excuses haggle. carefu| +35275|405065|42590|1|44|42681.76|0.04|0.08|N|O|1998-01-12|1998-03-06|1998-01-13|DELIVER IN PERSON|MAIL|fully regu| +35275|922654|47691|2|6|10059.66|0.04|0.01|N|O|1998-03-07|1998-03-25|1998-03-27|DELIVER IN PERSON|FOB|sly final platelets wake slyly slyly ruthl| +35275|41428|28929|3|14|19171.88|0.09|0.01|N|O|1998-04-21|1998-02-26|1998-05-10|TAKE BACK RETURN|AIR|g. blithely special deposits abo| +35275|276996|2007|4|50|98649.00|0.00|0.05|N|O|1998-01-24|1998-02-06|1998-01-31|COLLECT COD|REG AIR|, final accounts. fur| +35275|458732|46260|5|38|64246.98|0.02|0.03|N|O|1998-02-18|1998-02-15|1998-02-22|NONE|REG AIR|eep special accounts.| +35276|249803|24812|1|45|78875.55|0.03|0.05|N|O|1998-04-27|1998-03-27|1998-05-26|COLLECT COD|RAIL|are carefull| +35276|432538|20063|2|43|63231.93|0.08|0.08|N|O|1998-05-10|1998-03-26|1998-06-09|TAKE BACK RETURN|MAIL|packages are. careful foxes believe | +35276|650633|25660|3|1|1583.60|0.10|0.00|N|O|1998-04-21|1998-04-24|1998-05-14|NONE|RAIL|. ironic accounts doubt carefully. furi| +35276|188114|38115|4|41|49286.51|0.07|0.06|N|O|1998-05-19|1998-04-23|1998-05-30|COLLECT COD|SHIP| quickly. slyly| +35276|620793|8330|5|41|70264.16|0.01|0.04|N|O|1998-04-14|1998-03-12|1998-04-23|TAKE BACK RETURN|SHIP|ly regular packages. platelets nag | +35276|658296|33323|6|19|23830.94|0.02|0.06|N|O|1998-03-13|1998-03-10|1998-04-08|TAKE BACK RETURN|MAIL| excuses cajole furiously| +35277|598707|23730|1|7|12639.76|0.09|0.05|R|F|1992-02-07|1992-04-03|1992-02-27|NONE|REG AIR|s. even theodolites al| +35277|456936|31955|2|37|70037.67|0.05|0.04|A|F|1992-01-27|1992-03-12|1992-02-02|NONE|SHIP|etly special foxes. blithely idl| +35277|721429|46458|3|11|15954.29|0.01|0.03|A|F|1992-04-23|1992-03-31|1992-05-18|DELIVER IN PERSON|AIR|equests. fluffily idle ideas| +35277|54864|29867|4|17|30920.62|0.05|0.05|R|F|1992-03-13|1992-04-03|1992-03-16|DELIVER IN PERSON|RAIL|ges along the brave | +35277|84763|9766|5|41|71658.16|0.04|0.01|A|F|1992-03-06|1992-02-19|1992-03-26|COLLECT COD|FOB|, final requests. furiously even gif| +35278|978717|28718|1|45|80805.15|0.09|0.06|A|F|1993-04-23|1993-03-07|1993-04-26|DELIVER IN PERSON|MAIL|nstructions. bl| +35278|285118|22634|2|21|23165.10|0.01|0.01|A|F|1993-03-11|1993-03-14|1993-03-18|NONE|RAIL|gle carefully. bli| +35278|975374|25375|3|3|4347.99|0.05|0.07|R|F|1993-03-22|1993-03-26|1993-03-26|TAKE BACK RETURN|RAIL|ns detect along the blithely pending deposi| +35278|103417|15920|4|42|59657.22|0.06|0.02|A|F|1993-02-12|1993-03-07|1993-03-10|NONE|REG AIR| pinto beans. final, final p| +35279|647061|9574|1|31|31248.93|0.05|0.05|N|O|1998-02-18|1997-12-28|1998-02-21|NONE|REG AIR| furiously un| +35279|144060|19065|2|33|36433.98|0.03|0.05|N|O|1997-12-13|1998-02-19|1997-12-22|NONE|RAIL|ns sleep about the frets:| +35279|210941|23446|3|13|24075.09|0.05|0.05|N|O|1997-12-07|1998-01-21|1997-12-08|COLLECT COD|SHIP|es. fluffily final| +35279|269915|19916|4|24|45237.60|0.09|0.02|N|O|1998-01-09|1998-01-13|1998-01-23|DELIVER IN PERSON|REG AIR|le quickly according to the express acc| +35279|451493|1494|5|22|31778.34|0.09|0.02|N|O|1998-01-14|1998-01-01|1998-01-22|DELIVER IN PERSON|RAIL|elets according to the sly| +35304|531984|19515|1|32|64510.72|0.06|0.02|N|O|1996-09-30|1996-07-07|1996-10-05|DELIVER IN PERSON|MAIL|final, even packages nag quickly al| +35304|48620|11121|2|9|14117.58|0.09|0.03|N|O|1996-08-30|1996-07-10|1996-09-12|COLLECT COD|TRUCK|luffily blithely special p| +35304|152553|27560|3|20|32111.00|0.03|0.07|N|O|1996-07-24|1996-08-02|1996-08-20|TAKE BACK RETURN|REG AIR|ests detect quickly regular deposits| +35304|952990|40548|4|5|10214.75|0.00|0.06|N|O|1996-06-11|1996-07-27|1996-06-15|TAKE BACK RETURN|SHIP|riously regular pack| +35304|898894|48895|5|22|41642.70|0.05|0.05|N|O|1996-07-04|1996-08-30|1996-07-09|TAKE BACK RETURN|TRUCK|ns. final accounts use slyly express as| +35305|86537|24041|1|21|31994.13|0.00|0.07|R|F|1994-07-12|1994-07-30|1994-08-08|COLLECT COD|RAIL|uctions. slyly | +35305|423584|23585|2|15|22613.40|0.00|0.01|A|F|1994-06-26|1994-07-12|1994-06-29|COLLECT COD|FOB|bt regularly theo| +35305|174088|11598|3|27|31376.16|0.10|0.02|R|F|1994-05-24|1994-08-10|1994-05-27|TAKE BACK RETURN|SHIP|l ideas are above t| +35305|893087|30639|4|1|1080.04|0.08|0.00|A|F|1994-06-15|1994-08-04|1994-07-03|DELIVER IN PERSON|RAIL|. blithely even dolphi| +35306|882667|7702|1|7|11547.34|0.00|0.03|N|O|1996-05-03|1996-05-02|1996-05-12|COLLECT COD|AIR| quickly special requests wak| +35306|972004|22005|2|6|6455.76|0.05|0.08|N|O|1996-05-18|1996-05-06|1996-05-29|COLLECT COD|MAIL|. blithely silent requests use qui| +35307|449336|36861|1|38|48841.78|0.10|0.07|A|F|1993-05-30|1993-07-10|1993-06-04|TAKE BACK RETURN|RAIL|into beans use slyly enticing p| +35307|983242|45762|2|24|31804.80|0.02|0.05|R|F|1993-08-09|1993-07-10|1993-09-07|TAKE BACK RETURN|AIR| somas. fluffily r| +35307|335694|48201|3|22|38052.96|0.01|0.07|R|F|1993-07-16|1993-07-12|1993-08-08|NONE|RAIL|e quickly regul| +35307|995688|20727|4|49|87398.36|0.07|0.05|R|F|1993-05-26|1993-05-27|1993-06-25|NONE|AIR|oxes affix according to the carefully iron| +35307|519173|44194|5|30|35764.50|0.02|0.03|A|F|1993-06-06|1993-07-09|1993-06-18|TAKE BACK RETURN|RAIL|ironic theodolites af| +35308|969994|32514|1|5|10319.75|0.03|0.03|R|F|1993-07-10|1993-09-13|1993-08-06|COLLECT COD|TRUCK|eposits nag blithely. furiously i| +35308|673766|11306|2|23|40013.79|0.07|0.07|A|F|1993-08-05|1993-08-16|1993-08-12|DELIVER IN PERSON|TRUCK|xpress asymptotes h| +35308|984701|47221|3|3|5356.98|0.10|0.07|A|F|1993-10-03|1993-08-20|1993-10-15|TAKE BACK RETURN|AIR|ven epitaphs. ideas sle| +35308|869553|32071|4|2|3045.02|0.06|0.02|R|F|1993-09-04|1993-08-12|1993-09-17|COLLECT COD|RAIL|ounts shall have to cajole even theodolit| +35308|576288|26289|5|10|13642.60|0.08|0.04|R|F|1993-09-09|1993-07-31|1993-09-13|COLLECT COD|FOB|he carefully even braids; quickly r| +35309|992649|5169|1|8|13932.80|0.06|0.07|N|O|1997-05-05|1997-04-12|1997-05-12|DELIVER IN PERSON|SHIP|nically ev| +35309|439560|27085|2|17|25492.18|0.06|0.04|N|O|1997-06-29|1997-04-08|1997-07-10|TAKE BACK RETURN|SHIP|lar deposits: slyly ir| +35310|289190|1696|1|38|44808.84|0.10|0.05|R|F|1994-06-11|1994-04-15|1994-07-06|NONE|FOB|quests into the pending instru| +35310|399716|49717|2|36|65365.20|0.02|0.06|A|F|1994-06-13|1994-06-09|1994-06-20|DELIVER IN PERSON|SHIP|quests. slyly regular foxes| +35311|579477|17011|1|41|63814.45|0.02|0.01|N|O|1998-03-08|1998-02-28|1998-04-06|TAKE BACK RETURN|TRUCK| requests wake.| +35336|923679|11234|1|2|3405.26|0.02|0.02|N|O|1998-09-04|1998-08-09|1998-10-03|NONE|TRUCK|ages wake a| +35336|268112|18113|2|14|15121.40|0.08|0.03|N|O|1998-08-02|1998-09-03|1998-09-01|NONE|MAIL|bold theodolites. final deposits sleep bus| +35336|154780|42290|3|14|25686.92|0.07|0.07|N|O|1998-08-02|1998-08-22|1998-08-13|COLLECT COD|REG AIR|cial deposits-- final, silent packages i| +35336|378258|28259|4|47|62803.28|0.05|0.00|N|O|1998-07-10|1998-07-27|1998-07-21|COLLECT COD|FOB|ges. carefully ironic dinos wa| +35336|367216|29724|5|29|37212.80|0.03|0.00|N|O|1998-07-31|1998-08-17|1998-08-17|DELIVER IN PERSON|MAIL|ges along the carefully dogged| +35337|713644|1187|1|20|33152.20|0.10|0.00|N|O|1998-03-29|1998-05-07|1998-04-12|COLLECT COD|RAIL|g slyly ab| +35337|209850|47363|2|28|49275.52|0.06|0.08|N|O|1998-07-02|1998-06-10|1998-07-15|COLLECT COD|REG AIR| wake? bold multiplie| +35337|941372|41373|3|5|7066.65|0.02|0.08|N|O|1998-07-15|1998-06-17|1998-08-13|NONE|RAIL|ckly pending requests. even in| +35337|631591|31592|4|10|15225.60|0.07|0.06|N|O|1998-06-20|1998-05-12|1998-07-10|COLLECT COD|RAIL|yly final accounts. careful| +35337|149076|11579|5|3|3375.21|0.06|0.04|N|O|1998-04-30|1998-06-08|1998-05-13|NONE|REG AIR|asymptotes are foxes. furiously regu| +35338|405995|31012|1|17|32316.49|0.01|0.00|R|F|1992-08-19|1992-08-02|1992-08-30|COLLECT COD|SHIP|arefully even pearls. | +35338|554019|16531|2|45|48284.55|0.03|0.08|R|F|1992-10-17|1992-09-12|1992-10-27|DELIVER IN PERSON|FOB|he blithely regular requests are about th| +35338|388015|38016|3|11|12133.00|0.00|0.02|R|F|1992-07-09|1992-08-27|1992-07-14|COLLECT COD|RAIL|olphins. slyly express foxes det| +35339|3385|15886|1|35|45093.30|0.06|0.07|R|F|1993-04-10|1993-05-13|1993-04-16|TAKE BACK RETURN|SHIP|dependencies caj| +35339|886732|36733|2|47|80778.43|0.00|0.08|R|F|1993-07-03|1993-06-06|1993-07-11|DELIVER IN PERSON|FOB|ly express requests shall have to wake ar| +35339|303822|28835|3|30|54774.30|0.07|0.04|A|F|1993-05-22|1993-05-25|1993-06-01|COLLECT COD|MAIL|tructions sleep quickly aft| +35340|403328|28345|1|17|20932.10|0.09|0.05|N|O|1998-07-20|1998-09-11|1998-07-22|NONE|TRUCK|uctions among the blith| +35340|723300|10843|2|50|66163.50|0.02|0.06|N|O|1998-08-19|1998-08-04|1998-08-22|TAKE BACK RETURN|FOB|e slyly express orbit| +35340|496872|9382|3|14|26163.90|0.01|0.07|N|O|1998-10-09|1998-07-25|1998-10-29|COLLECT COD|AIR|ular deposits. furiously regul| +35340|914050|14051|4|38|40432.38|0.03|0.01|N|O|1998-06-30|1998-08-24|1998-07-01|TAKE BACK RETURN|REG AIR|ng the furiously regular deposit| +35340|433439|8456|5|10|13724.10|0.09|0.07|N|O|1998-07-04|1998-09-10|1998-07-24|TAKE BACK RETURN|FOB|tegrate care| +35340|803181|15698|6|33|35776.62|0.02|0.05|N|O|1998-10-11|1998-08-01|1998-10-31|DELIVER IN PERSON|SHIP|ests wake slyly| +35340|52822|2823|7|35|62118.70|0.07|0.05|N|O|1998-07-02|1998-09-06|1998-08-01|NONE|MAIL|uts. pinto bea| +35341|773436|35952|1|21|31697.40|0.07|0.05|N|O|1996-12-27|1997-01-04|1997-01-20|COLLECT COD|AIR| about the | +35342|718973|6516|1|39|77685.66|0.09|0.03|N|O|1995-09-24|1995-09-01|1995-10-05|DELIVER IN PERSON|FOB|en accounts cajole. carefully regular d| +35342|763519|1065|2|33|52221.84|0.04|0.00|N|O|1995-07-23|1995-07-23|1995-08-13|TAKE BACK RETURN|MAIL|nal packages. unusual packages wak| +35342|448316|10825|3|5|6321.45|0.09|0.03|N|O|1995-09-14|1995-07-15|1995-09-18|NONE|RAIL|ld requests. regu| +35342|844706|32255|4|17|28061.22|0.03|0.06|N|O|1995-06-20|1995-08-19|1995-07-10|COLLECT COD|AIR| after the pending accounts. deposits ar| +35343|61528|24030|1|18|26811.36|0.00|0.05|R|F|1993-01-03|1992-11-30|1993-01-24|TAKE BACK RETURN|RAIL| solve quickly alongsid| +35343|93209|30713|2|24|28852.80|0.08|0.03|A|F|1993-01-12|1992-12-01|1993-02-02|COLLECT COD|TRUCK|hins haggle quickly final asympto| +35343|552399|39933|3|28|40638.36|0.10|0.07|R|F|1993-02-12|1992-11-27|1993-03-03|COLLECT COD|FOB|ld instructi| +35343|167856|5366|4|28|53867.80|0.01|0.06|R|F|1992-11-04|1992-12-23|1992-11-16|TAKE BACK RETURN|RAIL|cross the asymptote| +35343|146862|34369|5|46|87807.56|0.02|0.03|A|F|1992-12-13|1992-11-29|1993-01-03|NONE|TRUCK|x furiously around the regular a| +35368|314134|1653|1|30|34443.60|0.07|0.06|R|F|1994-04-21|1994-04-12|1994-04-22|NONE|FOB|ash fluffily across the | +35368|639581|14606|2|8|12164.40|0.00|0.02|A|F|1994-02-07|1994-03-11|1994-02-08|DELIVER IN PERSON|FOB|y regular deposits. qui| +35368|429271|16796|3|24|28806.00|0.02|0.01|A|F|1994-02-26|1994-03-12|1994-03-08|DELIVER IN PERSON|SHIP| about the quickly final requests affix | +35369|45276|32777|1|7|8548.89|0.05|0.05|N|O|1997-11-19|1997-12-01|1997-12-03|COLLECT COD|SHIP|uffily. blithely regular pinto | +35369|943757|6276|2|17|30612.07|0.09|0.00|N|O|1997-09-25|1997-10-11|1997-10-03|COLLECT COD|RAIL|refully pending deposits sle| +35369|715453|27968|3|20|29368.40|0.06|0.08|N|O|1998-01-05|1997-11-10|1998-01-30|DELIVER IN PERSON|TRUCK|of the carefully ironic pinto beans. slyly | +35369|609417|46954|4|12|15916.56|0.04|0.03|N|O|1997-11-22|1997-10-30|1997-11-25|COLLECT COD|MAIL|ross the slyly special attainments. regular| +35369|463429|13430|5|4|5569.60|0.09|0.08|N|O|1997-12-09|1997-11-30|1997-12-28|TAKE BACK RETURN|MAIL|ctions affix slyly above the b| +35369|848722|48723|6|10|16706.80|0.02|0.00|N|O|1997-12-26|1997-10-19|1998-01-18|DELIVER IN PERSON|TRUCK|sly close requests. fluffily fina| +35370|119003|31506|1|28|28616.00|0.02|0.02|A|F|1994-12-27|1994-10-31|1995-01-14|TAKE BACK RETURN|MAIL|odolites. furiously express| +35370|70293|32795|2|18|22739.22|0.08|0.04|A|F|1994-12-21|1994-10-06|1995-01-02|TAKE BACK RETURN|SHIP|iously brave attainments integrate | +35370|409482|21991|3|28|38960.88|0.03|0.02|A|F|1994-11-15|1994-11-01|1994-11-26|COLLECT COD|SHIP|ly express packages alongside of | +35370|151650|39160|4|24|40839.60|0.03|0.05|R|F|1994-09-03|1994-10-18|1994-09-04|COLLECT COD|REG AIR|ly pending dependenc| +35370|773090|35606|5|33|38380.98|0.07|0.04|R|F|1994-09-30|1994-10-24|1994-10-26|NONE|REG AIR| express foxe| +35370|309616|47135|6|39|63398.40|0.08|0.07|A|F|1994-10-23|1994-11-29|1994-11-18|COLLECT COD|REG AIR|lar packages thrash. furious| +35370|710056|10057|7|18|19188.36|0.07|0.04|A|F|1994-09-30|1994-10-31|1994-10-15|TAKE BACK RETURN|REG AIR|tect alongside of the carefully final pint| +35371|903926|41481|1|2|3859.76|0.08|0.08|A|F|1994-10-18|1994-10-09|1994-10-30|COLLECT COD|FOB|ng to the slowly permanent dep| +35371|277128|39634|2|2|2210.22|0.07|0.07|A|F|1994-11-29|1994-10-10|1994-12-27|COLLECT COD|SHIP|ar instructions boost sl| +35371|689129|39130|3|8|8944.72|0.06|0.03|R|F|1994-11-27|1994-10-03|1994-12-26|COLLECT COD|RAIL| deposits boost slyly. slyly| +35372|734349|34350|1|23|31816.13|0.00|0.06|N|O|1996-06-09|1996-06-16|1996-06-10|TAKE BACK RETURN|REG AIR|foxes after the even, bold packages use sly| +35373|380591|18113|1|38|63520.04|0.10|0.08|N|O|1995-07-09|1995-08-04|1995-07-27|NONE|RAIL|ular asymp| +35373|587782|12805|2|27|50483.52|0.01|0.05|N|O|1995-08-18|1995-08-09|1995-09-07|TAKE BACK RETURN|TRUCK|ng accounts boost fluffil| +35373|848827|36376|3|45|79910.10|0.02|0.04|N|O|1995-08-11|1995-08-25|1995-08-18|TAKE BACK RETURN|TRUCK|about the carefully final deposits boost| +35373|219411|31916|4|19|25277.60|0.03|0.02|N|O|1995-08-06|1995-08-30|1995-08-11|TAKE BACK RETURN|AIR|d requests. regular foxes cajol| +35373|631157|43670|5|43|46789.16|0.07|0.05|N|O|1995-08-14|1995-08-10|1995-09-02|NONE|TRUCK|y regular packages: slyly speci| +35374|10433|10434|1|48|64484.64|0.06|0.07|R|F|1994-11-12|1994-11-05|1994-11-19|COLLECT COD|AIR|ly thin requests. eve| +35374|343848|31367|2|7|13242.81|0.04|0.08|A|F|1994-10-30|1994-11-10|1994-11-07|NONE|SHIP|. quickly special packages af| +35374|43091|43092|3|46|47568.14|0.10|0.06|R|F|1994-10-25|1994-10-25|1994-11-18|DELIVER IN PERSON|FOB|s use slyly blithely final accounts. sly| +35374|228130|40635|4|22|23278.64|0.00|0.03|R|F|1994-09-07|1994-11-17|1994-10-03|DELIVER IN PERSON|FOB|e. grouches across the slyly unusual requ| +35374|172995|10505|5|32|66175.68|0.08|0.06|R|F|1994-10-18|1994-11-19|1994-11-08|DELIVER IN PERSON|REG AIR|ss patterns sle| +35374|518352|30863|6|21|28776.93|0.03|0.04|R|F|1994-09-06|1994-11-14|1994-09-25|DELIVER IN PERSON|FOB|y regular theodolite| +35375|825333|12882|1|28|35232.12|0.04|0.03|N|O|1997-05-07|1997-04-22|1997-05-12|NONE|SHIP|tructions snooze blithely furiously | +35400|826992|39509|1|23|44135.85|0.07|0.00|R|F|1994-07-10|1994-07-31|1994-07-24|DELIVER IN PERSON|AIR|oss the slyly even deposits wake| +35400|248869|36382|2|10|18178.50|0.01|0.05|A|F|1994-09-27|1994-07-04|1994-10-22|DELIVER IN PERSON|RAIL|le quickly instructi| +35400|729828|4857|3|12|22293.48|0.10|0.06|A|F|1994-09-24|1994-08-07|1994-10-12|DELIVER IN PERSON|AIR|s sleep. slyly even instruct| +35400|205570|43083|4|10|14755.60|0.04|0.05|A|F|1994-07-16|1994-07-27|1994-07-25|DELIVER IN PERSON|RAIL|sleep carefully. carefu| +35401|550901|13413|1|42|81978.96|0.09|0.00|R|F|1994-06-30|1994-05-31|1994-07-19|TAKE BACK RETURN|RAIL|lithely regula| +35401|986403|48923|2|48|71489.28|0.08|0.00|A|F|1994-05-25|1994-06-06|1994-06-06|TAKE BACK RETURN|SHIP|ffily regular depo| +35401|471983|47002|3|30|58648.80|0.08|0.01|A|F|1994-04-13|1994-05-15|1994-05-04|NONE|FOB|key players use carefully. silent, re| +35401|602205|39742|4|29|32107.93|0.05|0.02|R|F|1994-06-08|1994-05-26|1994-06-22|NONE|TRUCK|fully furiously ruthless request| +35401|248841|36354|5|12|21477.96|0.07|0.04|R|F|1994-04-26|1994-05-31|1994-05-21|COLLECT COD|AIR|ng asymptotes u| +35402|717976|30491|1|35|69787.90|0.08|0.02|N|O|1998-07-30|1998-07-30|1998-08-02|DELIVER IN PERSON|MAIL| according to | +35402|14736|39737|2|50|82536.50|0.04|0.08|N|O|1998-06-27|1998-08-01|1998-07-17|TAKE BACK RETURN|AIR|silent, even deposits at | +35402|662490|12491|3|2|2904.92|0.04|0.07|N|O|1998-08-28|1998-08-12|1998-09-25|NONE|FOB| accounts integrate blithely ironic,| +35403|465821|15822|1|47|83979.60|0.02|0.04|N|O|1996-09-30|1996-11-11|1996-10-26|DELIVER IN PERSON|TRUCK|nusual deposits. packa| +35404|441860|41861|1|6|10811.04|0.08|0.01|N|O|1995-11-29|1996-01-10|1995-11-30|DELIVER IN PERSON|FOB|ously unusual packages cajole carefully a| +35404|334812|9825|2|30|55404.00|0.02|0.02|N|O|1995-12-06|1996-02-04|1995-12-27|COLLECT COD|TRUCK|uriously. busily regular dependencies a| +35405|273067|23068|1|15|15600.75|0.10|0.01|R|F|1993-04-29|1993-06-19|1993-05-06|DELIVER IN PERSON|AIR|lphins nag| +35405|434533|9550|2|38|55765.38|0.10|0.06|A|F|1993-05-25|1993-06-30|1993-06-22|TAKE BACK RETURN|FOB|ntly ironic excuses. thinly bo| +35405|195790|8294|3|29|54687.91|0.03|0.06|A|F|1993-07-31|1993-07-16|1993-08-29|DELIVER IN PERSON|AIR|ts. even packages hang caref| +35405|641057|28594|4|14|13972.28|0.00|0.01|A|F|1993-07-20|1993-05-29|1993-07-23|TAKE BACK RETURN|SHIP|ding request| +35405|240231|40232|5|10|11712.20|0.01|0.00|A|F|1993-07-26|1993-05-24|1993-08-12|COLLECT COD|AIR|ing to the excuses. fluffily bold pinto be| +35405|552893|27916|6|20|38917.40|0.00|0.03|R|F|1993-07-08|1993-06-23|1993-07-12|TAKE BACK RETURN|REG AIR|ackages haggle| +35405|460708|23218|7|14|23361.52|0.01|0.07|A|F|1993-06-06|1993-07-17|1993-07-01|TAKE BACK RETURN|SHIP|e furiously ironic ac| +35406|113330|13331|1|7|9403.31|0.04|0.01|A|F|1992-10-06|1992-09-26|1992-11-04|COLLECT COD|FOB|nto beans after| +35407|547229|34760|1|30|38286.00|0.07|0.02|N|O|1995-11-28|1995-12-22|1995-12-21|TAKE BACK RETURN|AIR|s haggle carefully carefully daring acco| +35407|262670|25176|2|50|81633.00|0.05|0.07|N|O|1995-11-30|1995-12-22|1995-12-27|NONE|FOB|y across the ironic accounts. final| +35407|685114|10141|3|36|39566.88|0.08|0.04|N|O|1996-01-24|1995-12-27|1996-01-28|DELIVER IN PERSON|MAIL|ole quickly carefully ironic deposit| +35407|710785|23300|4|15|26936.25|0.00|0.06|N|O|1996-01-20|1996-01-11|1996-02-11|COLLECT COD|TRUCK|ts. slyly final requests are. regular| +35407|148359|35866|5|44|61923.40|0.10|0.04|N|O|1996-02-01|1995-11-30|1996-02-10|COLLECT COD|FOB|ove the fluffily special d| +35407|462056|37075|6|4|4072.12|0.02|0.07|N|O|1996-02-16|1996-01-20|1996-02-23|COLLECT COD|MAIL| accounts use quickly ironic do| +35407|771757|9303|7|12|21944.64|0.01|0.04|N|O|1995-11-06|1995-12-04|1995-11-13|TAKE BACK RETURN|MAIL| about the slyl| +35432|907088|7089|1|15|16425.60|0.00|0.08|N|O|1998-06-17|1998-05-09|1998-07-05|TAKE BACK RETURN|REG AIR| fluffily even packag| +35433|779767|17313|1|42|77562.66|0.09|0.05|N|O|1998-03-16|1998-04-18|1998-04-11|DELIVER IN PERSON|TRUCK|quickly excuses. ir| +35433|541176|3687|2|16|19474.40|0.10|0.08|N|O|1998-02-26|1998-04-15|1998-03-25|TAKE BACK RETURN|TRUCK|deposits. special packages detect before| +35433|531907|6928|3|8|15511.04|0.06|0.07|N|O|1998-03-15|1998-04-04|1998-04-05|COLLECT COD|SHIP|nto beans amo| +35433|744371|6886|4|27|38214.18|0.06|0.03|N|O|1998-05-16|1998-03-25|1998-05-27|COLLECT COD|REG AIR|ar instructions cajole carefully. slyly re| +35434|108720|33725|1|40|69148.80|0.09|0.06|A|F|1993-12-01|1993-11-01|1993-12-21|TAKE BACK RETURN|RAIL| pinto bean| +35434|250919|38435|2|50|93495.00|0.09|0.08|R|F|1993-10-12|1993-11-28|1993-11-09|NONE|FOB|longside of the unusual, bold| +35434|195334|20341|3|3|4287.99|0.06|0.00|A|F|1993-10-03|1993-11-09|1993-10-21|DELIVER IN PERSON|MAIL|ly. blithely iron| +35434|976248|26249|4|4|5296.80|0.05|0.08|R|F|1993-11-29|1993-10-16|1993-12-13|DELIVER IN PERSON|SHIP|regular escapa| +35434|786648|36649|5|47|81526.67|0.03|0.06|A|F|1993-11-21|1993-12-07|1993-11-27|TAKE BACK RETURN|REG AIR|y special r| +35434|191364|28874|6|24|34928.64|0.10|0.05|A|F|1993-09-19|1993-11-10|1993-09-25|TAKE BACK RETURN|RAIL|ns are slyly am| +35435|790000|27546|1|7|7629.79|0.05|0.05|R|F|1993-08-08|1993-07-15|1993-08-10|DELIVER IN PERSON|TRUCK| unusual theodolites sleep regular, | +35435|514816|14817|2|39|71400.81|0.09|0.03|R|F|1993-08-10|1993-06-11|1993-08-23|COLLECT COD|FOB|nusual asymptotes cajole blithely. r| +35435|509592|47123|3|34|54453.38|0.08|0.07|R|F|1993-07-20|1993-07-15|1993-07-25|NONE|TRUCK|eposits serve blithely e| +35435|697447|9961|4|30|43332.30|0.06|0.01|A|F|1993-06-20|1993-07-18|1993-07-16|DELIVER IN PERSON|SHIP|g packages boost slyly carefully| +35435|979120|29121|5|40|47963.20|0.06|0.04|A|F|1993-04-29|1993-06-05|1993-05-28|COLLECT COD|FOB|ding requests serve furiously by the entici| +35435|62300|37303|6|5|6311.50|0.06|0.05|R|F|1993-06-26|1993-07-10|1993-07-02|NONE|AIR| the carefully spec| +35436|487329|12348|1|46|60549.80|0.03|0.02|R|F|1993-02-28|1993-04-16|1993-03-30|DELIVER IN PERSON|RAIL|cies use alongs| +35436|534197|21728|2|5|6155.85|0.00|0.02|R|F|1993-04-08|1993-03-04|1993-04-19|TAKE BACK RETURN|MAIL|ully quickly ironic exc| +35437|105612|30617|1|44|71174.84|0.10|0.02|A|F|1994-09-06|1994-09-17|1994-09-28|COLLECT COD|FOB|riously among the fluffily pe| +35437|7479|19980|2|7|9705.29|0.07|0.03|R|F|1994-08-14|1994-07-30|1994-09-01|DELIVER IN PERSON|TRUCK|furiously after the c| +35437|682764|45278|3|39|68122.47|0.09|0.03|A|F|1994-08-18|1994-08-20|1994-09-12|NONE|FOB|fily regular saute| +35437|212946|12947|4|49|91087.57|0.03|0.06|A|F|1994-08-23|1994-08-01|1994-09-22|NONE|REG AIR|he unusual pl| +35438|392937|42938|1|15|30448.80|0.09|0.08|N|O|1996-07-03|1996-05-02|1996-07-26|COLLECT COD|FOB| haggle carefully. furiously unusual pinto | +35438|81658|31659|2|2|3279.30|0.03|0.02|N|O|1996-04-10|1996-06-12|1996-04-16|NONE|REG AIR|e slyly final foxes. quickly regular d| +35438|418746|43763|3|43|71582.96|0.06|0.03|N|O|1996-07-13|1996-05-28|1996-07-29|NONE|SHIP|le. carefully bold asymptotes alo| +35438|862244|49796|4|26|31361.20|0.06|0.08|N|O|1996-05-30|1996-05-05|1996-06-18|NONE|MAIL|ful packages print. slyly | +35438|726231|1260|5|1|1257.20|0.01|0.06|N|O|1996-07-12|1996-06-21|1996-08-01|NONE|RAIL|he unusual| +35438|759671|34702|6|48|83070.72|0.06|0.07|N|O|1996-07-24|1996-06-02|1996-07-27|DELIVER IN PERSON|SHIP|hely silent pinto beans nag slyl| +35439|932204|44723|1|46|56863.36|0.00|0.07|N|O|1998-09-01|1998-06-18|1998-09-14|DELIVER IN PERSON|RAIL| regular packages. quickl| +35439|547168|22189|2|30|36454.20|0.07|0.08|N|O|1998-06-20|1998-07-17|1998-07-03|TAKE BACK RETURN|TRUCK|o beans sleep blithely. | +35439|249093|11598|3|42|43767.36|0.09|0.04|N|O|1998-06-11|1998-08-13|1998-06-19|COLLECT COD|MAIL| deposits integrat| +35464|805454|30487|1|29|39422.89|0.04|0.08|A|F|1993-08-02|1993-10-15|1993-08-24|NONE|MAIL|riously final asymptotes agains| +35464|252931|27942|2|16|30142.72|0.07|0.05|R|F|1993-10-22|1993-09-15|1993-11-14|TAKE BACK RETURN|AIR|ns wake carefully bold accounts. final,| +35464|8936|33937|3|27|49813.11|0.10|0.08|A|F|1993-08-03|1993-10-13|1993-09-02|DELIVER IN PERSON|SHIP|efully foxes. ironic packages doze furious| +35464|175324|12834|4|10|13993.20|0.05|0.01|R|F|1993-10-03|1993-09-29|1993-10-10|COLLECT COD|SHIP|de of the slyly bold foxes sleep about t| +35464|668638|6178|5|24|38558.40|0.09|0.07|A|F|1993-09-24|1993-09-03|1993-10-02|NONE|SHIP|fully even packages subla| +35464|785485|35486|6|40|62818.00|0.02|0.00|A|F|1993-08-14|1993-09-18|1993-08-25|DELIVER IN PERSON|MAIL|nal courts. slyly even instructions slee| +35464|642447|17472|7|43|59744.63|0.02|0.06|R|F|1993-09-19|1993-09-23|1993-09-23|COLLECT COD|REG AIR|structions under the slyly| +35465|604714|42251|1|36|58272.48|0.05|0.01|N|O|1996-06-05|1996-06-14|1996-06-15|DELIVER IN PERSON|MAIL| thrash fluffily according to the blithely| +35465|414877|14878|2|21|37628.85|0.06|0.06|N|O|1996-07-11|1996-07-06|1996-07-17|NONE|RAIL|encies sle| +35465|831744|6777|3|24|40216.80|0.04|0.06|N|O|1996-06-11|1996-06-17|1996-07-07|TAKE BACK RETURN|MAIL|rts are furiously about the regular dugouts| +35465|119268|19269|4|42|54064.92|0.10|0.05|N|O|1996-06-29|1996-07-22|1996-07-06|NONE|FOB|al, silent requests. ir| +35465|529938|42449|5|5|9839.55|0.02|0.06|N|O|1996-06-15|1996-07-05|1996-07-06|COLLECT COD|RAIL|r foxes. regul| +35465|666535|41562|6|1|1501.50|0.08|0.07|N|O|1996-05-21|1996-06-18|1996-06-08|NONE|MAIL|fter the slyl| +35466|167213|42220|1|38|48647.98|0.01|0.01|R|F|1994-06-26|1994-08-10|1994-07-02|COLLECT COD|AIR|e daringly. dependencies sleep furi| +35466|335140|35141|2|28|32903.64|0.03|0.08|A|F|1994-09-04|1994-08-31|1994-09-08|TAKE BACK RETURN|REG AIR|n pinto beans boost| +35466|690487|40488|3|44|65007.80|0.02|0.02|A|F|1994-08-26|1994-08-24|1994-09-11|TAKE BACK RETURN|AIR|y furiously spe| +35466|8271|45772|4|35|41274.45|0.05|0.01|R|F|1994-07-13|1994-08-29|1994-08-05|NONE|TRUCK|dolites eat furiously thin requests; care| +35466|6688|31689|5|36|57408.48|0.02|0.07|R|F|1994-09-03|1994-09-15|1994-09-18|DELIVER IN PERSON|RAIL|st furiously a| +35466|404992|42517|6|10|18969.70|0.08|0.05|A|F|1994-08-12|1994-09-01|1994-09-11|TAKE BACK RETURN|MAIL|thely along the un| +35467|54386|41890|1|42|56295.96|0.09|0.03|A|F|1993-06-17|1993-08-10|1993-06-27|COLLECT COD|AIR|pecial instructions| +35467|53030|28033|2|26|25558.78|0.07|0.06|A|F|1993-07-29|1993-08-06|1993-08-03|TAKE BACK RETURN|RAIL|dly special requests | +35467|270109|20110|3|22|23739.98|0.02|0.02|A|F|1993-07-22|1993-07-21|1993-08-12|TAKE BACK RETURN|FOB|quests affix carefully. final pa| +35467|718086|30601|4|13|14352.65|0.07|0.03|R|F|1993-08-22|1993-07-10|1993-09-04|NONE|RAIL|pendencies. ideas believe among t| +35467|867332|17333|5|38|49373.02|0.05|0.01|R|F|1993-09-21|1993-07-18|1993-10-18|NONE|RAIL|uickly ruthless | +35467|235396|22909|6|36|47929.68|0.01|0.04|A|F|1993-07-26|1993-07-02|1993-07-28|COLLECT COD|TRUCK|s are blithely according to the dep| +35468|36473|11474|1|18|25370.46|0.05|0.00|N|O|1996-12-06|1996-10-21|1997-01-02|COLLECT COD|RAIL|ages haggle carefu| +35469|987207|49727|1|26|33648.16|0.00|0.07|A|F|1993-01-22|1993-02-16|1993-02-14|COLLECT COD|TRUCK|s wake slyly. regular, regular| +35470|146563|46564|1|49|78868.44|0.05|0.03|N|O|1995-06-24|1995-05-04|1995-06-27|NONE|TRUCK|ly through the accounts. carefu| +35470|270561|8077|2|27|41351.85|0.04|0.06|A|F|1995-04-15|1995-05-28|1995-05-01|TAKE BACK RETURN|TRUCK|quickly ironic t| +35470|313335|38348|3|1|1348.32|0.05|0.03|R|F|1995-05-23|1995-05-12|1995-06-15|TAKE BACK RETURN|MAIL|r accounts | +35470|213053|13054|4|35|33811.40|0.04|0.03|N|O|1995-07-11|1995-05-04|1995-08-10|NONE|MAIL|ing asymptotes about the quickly bold| +35471|97217|9719|1|21|25498.41|0.05|0.07|A|F|1994-05-29|1994-06-02|1994-06-10|DELIVER IN PERSON|AIR|he final theodo| +35471|917693|30212|2|14|23949.10|0.09|0.02|R|F|1994-06-29|1994-04-16|1994-07-22|NONE|RAIL|hely ironica| +35471|653929|3930|3|12|22594.68|0.09|0.08|R|F|1994-04-26|1994-04-21|1994-04-28|COLLECT COD|AIR|dly. quickly sly foxes sleep blithely. bl| +35471|578734|28735|4|28|50755.88|0.04|0.04|R|F|1994-07-10|1994-05-27|1994-07-23|DELIVER IN PERSON|MAIL|r deposits. regular platelets wake about | +35471|766420|28936|5|38|56482.82|0.02|0.07|A|F|1994-03-19|1994-05-14|1994-04-03|COLLECT COD|TRUCK|sual deposits nag blithely furiously | +35471|211786|11787|6|5|8488.85|0.02|0.07|A|F|1994-03-15|1994-04-24|1994-03-28|NONE|RAIL|ly final foxes. | +35471|474392|11920|7|20|27327.40|0.00|0.01|R|F|1994-06-14|1994-05-05|1994-07-09|DELIVER IN PERSON|AIR|uickly around the blithely ironi| +35496|91621|4123|1|19|30639.78|0.01|0.05|N|O|1997-02-19|1997-01-19|1997-03-15|COLLECT COD|SHIP|xpress dependencies above | +35496|865826|40861|2|37|66295.86|0.00|0.04|N|O|1996-12-26|1996-12-27|1997-01-01|NONE|REG AIR|egular foxes boost across the | +35496|934787|22342|3|27|49186.98|0.07|0.07|N|O|1996-11-21|1996-12-22|1996-12-12|TAKE BACK RETURN|TRUCK|cross the exp| +35496|962293|37332|4|1|1355.25|0.01|0.00|N|O|1996-12-11|1997-01-18|1997-01-04|DELIVER IN PERSON|AIR|lar deposits wake. final requests| +35496|242806|5311|5|20|34975.80|0.08|0.01|N|O|1997-01-15|1997-01-20|1997-02-02|TAKE BACK RETURN|TRUCK|eep above the regular, unusual acc| +35496|825796|38313|6|31|53374.25|0.00|0.01|N|O|1996-12-16|1996-11-30|1997-01-09|TAKE BACK RETURN|TRUCK|uickly even requests promise closely about | +35496|149735|12238|7|49|87451.77|0.07|0.07|N|O|1996-12-21|1996-12-27|1996-12-25|NONE|FOB|. slyly ruthless accounts alon| +35497|589964|2476|1|29|59564.26|0.01|0.01|N|O|1996-11-27|1996-12-17|1996-12-09|COLLECT COD|AIR|mong the qui| +35497|509481|34502|2|20|29809.20|0.07|0.06|N|O|1997-02-17|1997-01-13|1997-02-19|NONE|TRUCK|uffily furiously special ideas. r| +35497|840445|27994|3|1|1385.40|0.05|0.06|N|O|1997-01-15|1997-01-21|1997-02-04|DELIVER IN PERSON|RAIL|he regular, unus| +35498|993261|30819|1|4|5416.88|0.08|0.06|N|O|1996-02-23|1995-12-25|1996-02-24|COLLECT COD|REG AIR|ar the ironic, f| +35499|704980|30009|1|40|79398.00|0.04|0.04|N|O|1998-11-20|1998-10-12|1998-12-11|COLLECT COD|AIR|ss the requests. slyly unusual | +35499|585239|47751|2|32|42374.72|0.01|0.06|N|O|1998-09-22|1998-10-07|1998-10-18|NONE|MAIL|e ironically above the ir| +35499|103491|3492|3|25|37362.25|0.06|0.06|N|O|1998-09-18|1998-10-17|1998-10-04|DELIVER IN PERSON|TRUCK| furiously pending accoun| +35499|361145|23653|4|19|22916.47|0.00|0.03|N|O|1998-08-22|1998-09-29|1998-09-13|TAKE BACK RETURN|SHIP| ideas use blithe| +35500|89751|27255|1|24|41778.00|0.05|0.04|N|O|1997-11-22|1997-12-30|1997-11-26|DELIVER IN PERSON|REG AIR|ave to use furiously specia| +35500|434157|9174|2|24|26187.12|0.03|0.02|N|O|1997-12-18|1997-12-12|1998-01-17|DELIVER IN PERSON|SHIP|sleep. even asympto| +35500|866919|29437|3|16|30173.92|0.01|0.05|N|O|1997-12-12|1998-01-06|1997-12-18|COLLECT COD|FOB| boost furiously among the carefully regul| +35500|293297|30813|4|41|52901.48|0.05|0.05|N|O|1997-12-22|1997-12-06|1998-01-03|DELIVER IN PERSON|AIR|boldly. slyly regular forges acc| +35501|577714|27715|1|41|73459.29|0.10|0.08|N|O|1995-11-05|1995-09-19|1995-11-25|TAKE BACK RETURN|SHIP|ickly among the carefully s| +35501|627313|14850|2|15|18604.20|0.07|0.01|N|O|1995-11-03|1995-09-18|1995-11-30|NONE|RAIL|egular fox| +35501|241851|4356|3|12|21514.08|0.02|0.04|N|O|1995-07-27|1995-10-10|1995-08-17|TAKE BACK RETURN|TRUCK|. furiously final deposits | +35502|110441|10442|1|24|34834.56|0.03|0.05|N|O|1996-10-15|1996-08-26|1996-11-03|COLLECT COD|RAIL|thely ironic r| +35502|179771|42275|2|34|62926.18|0.09|0.04|N|O|1996-10-20|1996-08-09|1996-10-29|NONE|MAIL|o beans are slyly | +35503|263296|38307|1|38|47852.64|0.06|0.05|N|O|1995-11-05|1996-01-25|1995-11-27|NONE|TRUCK|. final hockey players integrate. ironic, | +35503|212583|37592|2|34|50849.38|0.10|0.00|N|O|1995-12-19|1996-01-06|1996-01-13|DELIVER IN PERSON|MAIL|fluffily final requ| +35503|872674|22675|3|17|27992.71|0.06|0.02|N|O|1995-12-10|1995-12-17|1995-12-19|NONE|FOB|ts are regular, quiet | +35528|451207|1208|1|43|49801.74|0.01|0.03|N|O|1996-09-29|1996-08-22|1996-10-08|NONE|REG AIR|. even pack| +35528|433123|45632|2|9|9504.90|0.06|0.03|N|O|1996-08-31|1996-10-10|1996-09-27|COLLECT COD|RAIL|nstructions boost quickly above th| +35528|491995|17014|3|7|13908.79|0.01|0.06|N|O|1996-10-13|1996-09-29|1996-11-05|COLLECT COD|AIR|ent packages cajole. express ideas cajole| +35528|958268|20788|4|32|42439.04|0.01|0.06|N|O|1996-08-02|1996-10-14|1996-08-06|NONE|TRUCK| packages integrate. carefully fina| +35529|455065|30084|1|23|23460.92|0.05|0.04|N|O|1997-12-26|1997-11-22|1998-01-21|COLLECT COD|RAIL|fully pending pinto| +35529|274131|11647|2|6|6630.72|0.02|0.01|N|O|1998-01-14|1997-11-27|1998-02-07|DELIVER IN PERSON|TRUCK|ites. carefully bold accounts cajole| +35529|306032|6033|3|40|41520.80|0.10|0.03|N|O|1997-11-18|1997-10-25|1997-12-04|TAKE BACK RETURN|MAIL|slyly regular deposits | +35529|471940|9468|4|20|38238.40|0.00|0.07|N|O|1997-12-16|1997-12-08|1997-12-22|TAKE BACK RETURN|SHIP| against the furiou| +35529|883079|20631|5|39|41419.17|0.06|0.08|N|O|1997-12-11|1997-11-19|1998-01-06|DELIVER IN PERSON|TRUCK| sleep above the unusua| +35530|324770|24771|1|1|1794.76|0.08|0.06|N|O|1997-04-19|1997-05-05|1997-05-02|NONE|FOB|encies: fin| +35530|400366|37891|2|2|2532.68|0.09|0.04|N|O|1997-04-20|1997-05-31|1997-05-16|DELIVER IN PERSON|REG AIR|ly platelets. blit| +35530|949900|12419|3|18|35097.48|0.03|0.05|N|O|1997-06-10|1997-05-03|1997-06-21|COLLECT COD|FOB|y final theodolites. u| +35530|967929|17930|4|19|37940.72|0.05|0.06|N|O|1997-06-01|1997-05-23|1997-06-02|TAKE BACK RETURN|AIR|ng pinto beans sleep among the | +35530|968460|43499|5|17|25983.14|0.04|0.05|N|O|1997-07-09|1997-05-31|1997-08-03|DELIVER IN PERSON|AIR|ven requests| +35530|896195|21230|6|44|52410.60|0.07|0.00|N|O|1997-04-24|1997-05-20|1997-04-27|COLLECT COD|RAIL|nticing accounts. quickly un| +35531|220735|20736|1|2|3311.44|0.01|0.05|R|F|1994-03-22|1994-03-28|1994-03-30|NONE|AIR|ke slyly. quickly express p| +35531|892474|42475|2|23|33727.89|0.02|0.02|R|F|1994-02-06|1994-03-07|1994-02-18|TAKE BACK RETURN|AIR|ions. slyly bold deposits ca| +35531|799371|36917|3|4|5881.36|0.03|0.03|R|F|1994-01-03|1994-02-10|1994-01-28|NONE|SHIP|usly special packages. carefully pending e| +35531|17195|4696|4|40|44487.60|0.05|0.05|A|F|1994-01-16|1994-03-27|1994-01-20|TAKE BACK RETURN|AIR|uickly unusual foxes. s| +35531|987026|37027|5|46|51197.08|0.09|0.08|A|F|1994-04-02|1994-03-20|1994-04-12|TAKE BACK RETURN|RAIL|al asymptotes are qu| +35532|887446|49964|1|29|41568.60|0.00|0.03|N|O|1997-04-23|1997-05-15|1997-04-27|DELIVER IN PERSON|MAIL|ar dependencies. instr| +35532|294791|32307|2|14|25000.92|0.05|0.07|N|O|1997-03-25|1997-03-24|1997-04-03|TAKE BACK RETURN|SHIP|ickly. caref| +35532|535818|23349|3|45|83420.55|0.09|0.00|N|O|1997-06-18|1997-05-05|1997-07-14|DELIVER IN PERSON|MAIL|kly silent requests sleep alongside of| +35532|480262|42772|4|8|9937.92|0.01|0.05|N|O|1997-06-06|1997-03-31|1997-06-25|NONE|REG AIR|kly furiously ironic theodolites. s| +35532|751043|38589|5|6|6564.06|0.02|0.04|N|O|1997-03-28|1997-05-02|1997-03-29|TAKE BACK RETURN|FOB|g. pending packages nod r| +35533|908873|8874|1|26|48927.58|0.05|0.00|N|O|1998-02-26|1998-05-01|1998-03-21|NONE|SHIP|special patterns. packages haggle. bold | +35533|422339|22340|2|35|44145.85|0.00|0.06|N|O|1998-03-16|1998-04-06|1998-04-15|TAKE BACK RETURN|REG AIR|. furiously ironic packages agains| +35534|893832|18867|1|5|9128.95|0.01|0.00|R|F|1992-06-18|1992-05-26|1992-06-30|NONE|RAIL|s. carefully final packages a| +35534|620007|32520|2|41|38005.77|0.05|0.04|A|F|1992-07-03|1992-06-15|1992-07-09|TAKE BACK RETURN|SHIP|uriously along the even, ironic i| +35534|449819|49820|3|25|44219.75|0.07|0.00|R|F|1992-05-14|1992-07-06|1992-05-30|NONE|AIR|eans detect slyly aro| +35534|99828|12330|4|50|91391.00|0.08|0.03|A|F|1992-06-04|1992-05-30|1992-06-10|COLLECT COD|TRUCK|sual packages. express, ironic sau| +35534|808097|20614|5|30|30151.50|0.02|0.03|R|F|1992-05-16|1992-06-15|1992-06-13|DELIVER IN PERSON|RAIL|beans. pending packages cajol| +35534|674441|11981|6|38|53785.58|0.00|0.07|R|F|1992-07-09|1992-05-16|1992-08-05|DELIVER IN PERSON|FOB|osits haggle. carefully pending packages| +35534|315288|2807|7|42|54737.34|0.04|0.02|A|F|1992-06-02|1992-06-06|1992-06-07|COLLECT COD|SHIP|bove the furious| +35535|44649|44650|1|35|55777.40|0.00|0.01|N|O|1997-05-30|1997-06-27|1997-06-17|COLLECT COD|REG AIR|otes. quickly even deposits above| +35535|403469|3470|2|49|67249.56|0.07|0.02|N|O|1997-06-09|1997-08-07|1997-07-03|NONE|FOB|hrash blithely car| +35535|94667|32171|3|34|56496.44|0.02|0.08|N|O|1997-05-15|1997-07-09|1997-06-08|COLLECT COD|TRUCK|of the stealthy packages are slyly even pa| +35535|52066|27069|4|1|1018.06|0.06|0.01|N|O|1997-07-02|1997-08-06|1997-07-28|DELIVER IN PERSON|MAIL|lyly regular reque| +35535|59859|34862|5|15|27282.75|0.05|0.01|N|O|1997-05-15|1997-06-25|1997-05-27|NONE|SHIP|g pinto bean| +35560|29402|29403|1|4|5325.60|0.00|0.04|N|O|1998-01-21|1997-12-10|1998-02-01|COLLECT COD|AIR| beans. regular, ironic deposits u| +35560|151015|1016|2|27|28782.27|0.02|0.05|N|O|1997-11-15|1997-12-16|1997-11-21|COLLECT COD|AIR|sly unusual packages. slyly| +35561|360919|35934|1|4|7919.60|0.09|0.04|N|O|1998-06-26|1998-08-14|1998-07-03|COLLECT COD|FOB|r accounts. iro| +35561|964746|39785|2|44|79670.80|0.00|0.05|N|O|1998-06-21|1998-08-02|1998-06-27|TAKE BACK RETURN|SHIP|fily. blithely bold foxes sleep above t| +35561|478552|28553|3|35|53568.55|0.06|0.02|N|O|1998-07-17|1998-07-14|1998-07-19|DELIVER IN PERSON|REG AIR|usly quickly silent ide| +35561|17796|17797|4|49|83975.71|0.02|0.05|N|O|1998-08-22|1998-07-31|1998-09-13|COLLECT COD|RAIL|le at the special foxe| +35561|94633|19636|5|37|60222.31|0.00|0.03|N|O|1998-09-03|1998-08-06|1998-09-15|DELIVER IN PERSON|SHIP| haggle thinly ironic, special fo| +35561|495345|7855|6|11|14743.52|0.02|0.06|N|O|1998-06-03|1998-07-03|1998-06-21|NONE|REG AIR|ole carefully sl| +35562|818473|30990|1|46|64005.78|0.00|0.07|N|O|1998-08-26|1998-08-17|1998-09-11|COLLECT COD|SHIP|blithely slyly ironic deposits. b| +35562|59331|34334|2|14|18064.62|0.03|0.02|N|O|1998-07-25|1998-07-19|1998-07-31|DELIVER IN PERSON|TRUCK|regular foxes boost slyly silen| +35563|555412|30435|1|31|45489.09|0.10|0.08|A|F|1992-03-16|1992-03-14|1992-03-24|DELIVER IN PERSON|TRUCK|structions after the furiously even asympto| +35563|797954|10470|2|38|77972.96|0.10|0.00|A|F|1992-06-08|1992-03-27|1992-07-03|NONE|TRUCK|dogged requests cajole carefully ironic| +35563|196709|9213|3|38|68616.60|0.05|0.01|R|F|1992-04-19|1992-05-08|1992-05-05|NONE|AIR|eas haggle flu| +35563|75816|25817|4|28|50170.68|0.06|0.05|R|F|1992-03-18|1992-03-22|1992-03-26|COLLECT COD|AIR|eans doze slyly bold req| +35563|226042|13555|5|17|16456.51|0.07|0.04|A|F|1992-05-23|1992-05-01|1992-06-06|DELIVER IN PERSON|AIR|es sleep a| +35563|77849|15353|6|45|82207.80|0.08|0.00|A|F|1992-03-20|1992-05-08|1992-04-19|NONE|MAIL|. ironic, express deposits sleep blit| +35563|401081|26098|7|20|19641.20|0.08|0.04|A|F|1992-05-01|1992-03-21|1992-05-02|TAKE BACK RETURN|FOB|yly regular pinto beans. ironic re| +35564|955058|17578|1|49|54537.49|0.01|0.00|N|O|1998-05-19|1998-05-29|1998-06-12|TAKE BACK RETURN|RAIL|al excuses ha| +35564|648060|48061|2|9|9072.27|0.05|0.00|N|O|1998-05-27|1998-06-11|1998-06-11|COLLECT COD|SHIP|e the blithely| +35564|929572|29573|3|39|62459.67|0.04|0.03|N|O|1998-07-15|1998-05-17|1998-07-22|COLLECT COD|REG AIR|uests. furiously bold requ| +35565|506570|19081|1|20|31531.00|0.05|0.08|N|O|1997-01-27|1997-03-04|1997-02-25|DELIVER IN PERSON|MAIL|ic, regular de| +35565|908075|45630|2|11|11913.33|0.08|0.01|N|O|1997-02-15|1997-03-06|1997-02-18|COLLECT COD|MAIL|he foxes. dogged packages haggle | +35565|3747|41248|3|48|79235.52|0.02|0.07|N|O|1997-02-02|1997-02-12|1997-02-07|DELIVER IN PERSON|MAIL|quests boost express idea| +35565|967414|29934|4|23|34071.51|0.02|0.01|N|O|1997-03-23|1997-03-24|1997-03-25|DELIVER IN PERSON|AIR|n theodolite| +35565|325245|25246|5|47|59700.81|0.09|0.08|N|O|1997-01-08|1997-03-14|1997-01-15|DELIVER IN PERSON|AIR|ts nod around the carefully unusual inst| +35565|377565|2580|6|46|75557.30|0.09|0.07|N|O|1997-03-14|1997-02-23|1997-04-03|COLLECT COD|AIR|nal pinto bean| +35566|315893|15894|1|32|61084.16|0.09|0.07|R|F|1995-04-09|1995-04-02|1995-04-28|TAKE BACK RETURN|MAIL|ages sleep fu| +35566|205726|30735|2|1|1631.71|0.03|0.04|R|F|1995-04-22|1995-02-16|1995-04-24|DELIVER IN PERSON|TRUCK|asymptotes across the f| +35566|623806|36319|3|8|13838.16|0.06|0.04|R|F|1995-01-24|1995-02-27|1995-02-01|NONE|SHIP|o beans. slyly ironic theodol| +35566|307342|19849|4|10|13493.30|0.01|0.01|A|F|1995-04-19|1995-03-10|1995-05-08|DELIVER IN PERSON|REG AIR|haggle furiously. even requests nag| +35566|480794|18322|5|38|67441.26|0.08|0.07|A|F|1995-04-28|1995-03-20|1995-05-11|DELIVER IN PERSON|RAIL|regular accounts use| +35566|690166|15193|6|27|31215.51|0.03|0.05|R|F|1995-05-03|1995-03-12|1995-05-17|TAKE BACK RETURN|AIR|ngside of the express courts. pin| +35567|314626|14627|1|14|22968.54|0.02|0.01|N|O|1997-08-22|1997-07-22|1997-08-24|NONE|SHIP|y regular deposits cajole careful| +35567|916553|41590|2|3|4708.53|0.05|0.08|N|O|1997-06-20|1997-08-24|1997-06-29|NONE|REG AIR| sly accounts cajole. enti| +35567|505566|30587|3|45|70719.30|0.03|0.01|N|O|1997-08-23|1997-08-14|1997-09-13|DELIVER IN PERSON|MAIL|ickly above the requests: re| +35567|43986|43987|4|12|23159.76|0.09|0.01|N|O|1997-08-04|1997-08-04|1997-08-31|NONE|REG AIR|requests wake blithely furiously ev| +35567|271687|9203|5|47|77957.49|0.07|0.06|N|O|1997-07-14|1997-07-28|1997-08-03|DELIVER IN PERSON|RAIL|s cajole furiousl| +35592|255269|30280|1|3|3672.75|0.04|0.06|N|O|1997-06-13|1997-06-19|1997-06-19|DELIVER IN PERSON|SHIP|posits integrate furiously final depo| +35592|296699|34215|2|43|72914.24|0.08|0.03|N|O|1997-07-24|1997-05-25|1997-08-21|TAKE BACK RETURN|TRUCK| regular, unusual theodolites c| +35592|611856|24369|3|42|74248.44|0.01|0.01|N|O|1997-06-30|1997-05-21|1997-07-20|DELIVER IN PERSON|SHIP|even theodolites| +35592|448842|36367|4|2|3581.64|0.09|0.08|N|O|1997-05-26|1997-06-21|1997-05-29|TAKE BACK RETURN|REG AIR|ccording to the quietly bold | +35592|673031|10571|5|7|7028.00|0.00|0.04|N|O|1997-07-06|1997-05-18|1997-07-18|COLLECT COD|MAIL|ts. final accounts alongside of the furious| +35592|618412|5949|6|23|30598.74|0.09|0.08|N|O|1997-04-07|1997-05-24|1997-04-16|NONE|RAIL| final asymptotes wake furiously unusua| +35592|641264|28801|7|46|55440.58|0.06|0.00|N|O|1997-07-05|1997-05-22|1997-07-12|TAKE BACK RETURN|MAIL|lithely. blithely even | +35593|718794|6337|1|33|59821.08|0.04|0.04|R|F|1993-06-13|1993-06-29|1993-06-19|TAKE BACK RETURN|TRUCK|uickly ironic, idle requests. bli| +35593|758975|8976|2|40|81357.60|0.04|0.03|A|F|1993-05-17|1993-07-01|1993-05-27|COLLECT COD|TRUCK|yly above the bold ideas. bold theodol| +35593|91448|28952|3|7|10076.08|0.10|0.01|A|F|1993-09-05|1993-08-04|1993-09-07|COLLECT COD|FOB|ironic requests i| +35593|961515|36554|4|47|74094.09|0.07|0.06|A|F|1993-08-18|1993-08-09|1993-08-19|NONE|TRUCK|cies unwind. carefully un| +35594|633363|45876|1|31|40186.23|0.09|0.02|A|F|1994-11-24|1994-11-16|1994-12-15|NONE|MAIL|e regular foxes? furiously even accou| +35594|928403|3440|2|29|41509.44|0.07|0.04|R|F|1995-01-08|1994-11-25|1995-01-11|TAKE BACK RETURN|MAIL|olites. unusual packages sleep q| +35594|662199|24713|3|29|33673.64|0.05|0.02|A|F|1994-10-23|1994-11-08|1994-10-29|NONE|MAIL| packages are careful| +35594|565104|40127|4|5|5845.40|0.04|0.02|A|F|1994-10-15|1994-10-29|1994-11-08|COLLECT COD|SHIP|. ironic theodolites nag furio| +35595|80902|30903|1|50|94145.00|0.04|0.02|N|O|1996-05-01|1996-03-24|1996-05-22|TAKE BACK RETURN|REG AIR|final pains lose foxes. blithely| +35595|717887|30402|2|14|26667.90|0.09|0.08|N|O|1996-01-28|1996-03-20|1996-02-08|TAKE BACK RETURN|TRUCK|s nag blithely. carefully pending accou| +35595|525049|37560|3|13|13962.26|0.09|0.00|N|O|1996-04-30|1996-03-12|1996-05-25|COLLECT COD|SHIP|ckly bold r| +35595|496819|9329|4|13|23605.27|0.06|0.02|N|O|1996-02-02|1996-03-03|1996-03-02|DELIVER IN PERSON|FOB| even excuses nag aft| +35596|179682|29683|1|10|17616.80|0.03|0.07|R|F|1994-05-30|1994-07-01|1994-06-02|COLLECT COD|AIR|as. packages sleep slyly. furiously final d| +35596|899482|49483|2|40|59257.60|0.03|0.05|A|F|1994-06-04|1994-06-11|1994-06-28|TAKE BACK RETURN|REG AIR|beans. carefully unusual requ| +35597|629376|4401|1|38|49602.92|0.00|0.04|R|F|1993-06-25|1993-04-27|1993-07-16|DELIVER IN PERSON|REG AIR|silently express grouches. quickly| +35597|917198|4753|2|40|48606.00|0.02|0.05|A|F|1993-06-15|1993-05-28|1993-07-04|DELIVER IN PERSON|SHIP|ously bold packages above| +35597|340274|40275|3|6|7885.56|0.07|0.05|R|F|1993-04-06|1993-06-03|1993-04-14|DELIVER IN PERSON|AIR|ole. careful| +35597|984825|47345|4|34|64932.52|0.08|0.04|R|F|1993-03-17|1993-04-26|1993-03-19|TAKE BACK RETURN|FOB|requests sleep fluff| +35598|68434|30936|1|37|51889.91|0.07|0.05|A|F|1992-08-27|1992-07-31|1992-09-08|TAKE BACK RETURN|RAIL|ilent dinos:| +35598|157717|32724|2|32|56790.72|0.03|0.06|R|F|1992-09-09|1992-08-02|1992-10-03|DELIVER IN PERSON|AIR| the bold accounts. regular pinto | +35599|679472|29473|1|9|13062.96|0.09|0.01|A|F|1993-08-01|1993-08-23|1993-08-16|DELIVER IN PERSON|REG AIR| sleep thin instructions.| +35599|870208|32726|2|18|21206.88|0.09|0.04|A|F|1993-09-01|1993-08-06|1993-09-04|TAKE BACK RETURN|RAIL| deposits cajole fluffily fi| +35599|577079|2102|3|22|25433.10|0.03|0.06|A|F|1993-09-28|1993-08-28|1993-10-02|DELIVER IN PERSON|REG AIR|thely fluffily regular ideas. fu| +35624|24350|24351|1|23|29310.05|0.04|0.03|N|O|1998-08-26|1998-07-29|1998-09-06|DELIVER IN PERSON|SHIP|olites. pending, | +35624|249153|36666|2|49|54004.86|0.07|0.00|N|O|1998-05-22|1998-08-02|1998-05-25|COLLECT COD|SHIP|al ideas detect slyly. unusual excuses c| +35624|503600|3601|3|40|64143.20|0.06|0.01|N|O|1998-07-19|1998-06-15|1998-07-24|COLLECT COD|RAIL|hang deposits. ironic theodolit| +35624|994826|7346|4|43|82593.54|0.10|0.03|N|O|1998-07-23|1998-08-03|1998-08-18|DELIVER IN PERSON|AIR|he quickly express pinto beans. express fo| +35624|26068|26069|5|47|46720.82|0.09|0.06|N|O|1998-05-17|1998-06-17|1998-05-21|TAKE BACK RETURN|MAIL| requests boost. b| +35624|110322|47829|6|5|6661.60|0.07|0.05|N|O|1998-07-10|1998-06-15|1998-07-21|COLLECT COD|TRUCK|eans haggle blithely b| +35624|168793|43800|7|22|40959.38|0.09|0.06|N|O|1998-06-14|1998-07-20|1998-07-12|COLLECT COD|FOB|pinto beans| +35625|896194|21229|1|18|21422.70|0.05|0.06|N|O|1995-10-03|1995-12-01|1995-10-25|DELIVER IN PERSON|MAIL|eposits. furiously regular plate| +35625|320509|20510|2|25|38237.25|0.07|0.07|N|O|1995-09-11|1995-11-06|1995-09-25|COLLECT COD|REG AIR|ies. furiously regular depe| +35626|340491|40492|1|28|42881.44|0.05|0.06|R|F|1994-07-28|1994-10-11|1994-08-04|DELIVER IN PERSON|TRUCK| silent pinto beans wake carefully c| +35626|619274|6811|2|9|10739.16|0.03|0.05|A|F|1994-10-28|1994-10-23|1994-11-26|DELIVER IN PERSON|SHIP|blithely final foxes w| +35626|121401|21402|3|2|2844.80|0.01|0.03|R|F|1994-11-11|1994-09-24|1994-12-08|DELIVER IN PERSON|FOB|he idly ironic packages sleep slyly acro| +35626|382896|32897|4|36|71239.68|0.09|0.06|R|F|1994-11-10|1994-09-02|1994-11-23|TAKE BACK RETURN|REG AIR|yly blithely pending foxes! blithely | +35626|324757|49770|5|45|80178.30|0.05|0.03|R|F|1994-07-28|1994-09-16|1994-08-18|NONE|SHIP|s boost quickly. pinto beans c| +35627|557018|44552|1|50|53749.50|0.08|0.05|R|F|1993-06-05|1993-04-01|1993-06-17|COLLECT COD|RAIL|tions. requests w| +35627|795179|32725|2|6|7644.84|0.05|0.02|R|F|1993-06-09|1993-04-17|1993-06-20|COLLECT COD|SHIP|l deposits nag. furiously ironic ex| +35627|559202|21714|3|49|61797.82|0.07|0.08|A|F|1993-03-17|1993-04-23|1993-04-11|TAKE BACK RETURN|REG AIR|ully slyly even requests. slyly permanent r| +35628|346627|34146|1|26|43513.86|0.02|0.02|N|O|1998-03-19|1998-04-03|1998-03-29|TAKE BACK RETURN|FOB|d pinto beans. final packages | +35628|745056|45057|2|48|52848.96|0.04|0.08|N|O|1998-02-13|1998-03-05|1998-03-10|COLLECT COD|REG AIR|eposits mai| +35628|146730|9233|3|19|33757.87|0.06|0.07|N|O|1998-03-23|1998-03-07|1998-04-19|COLLECT COD|TRUCK| to the furiously pending| +35628|76706|1709|4|6|10096.20|0.01|0.04|N|O|1998-04-14|1998-04-02|1998-04-21|DELIVER IN PERSON|AIR|ndencies. furiously| +35628|187274|37275|5|30|40838.10|0.08|0.06|N|O|1998-04-27|1998-03-09|1998-05-08|NONE|SHIP| express ideas. carefully ironic depend| +35628|501326|13837|6|29|38491.70|0.06|0.04|N|O|1998-04-25|1998-04-18|1998-05-02|TAKE BACK RETURN|MAIL|carefully regular dependencies nag quickly | +35629|727848|40363|1|30|56274.30|0.03|0.01|R|F|1992-11-19|1992-12-28|1992-12-19|TAKE BACK RETURN|TRUCK|the regular courts| +35629|940855|28410|2|34|64457.54|0.00|0.03|A|F|1992-11-14|1992-12-26|1992-11-27|NONE|FOB|usly pending deposits | +35629|944361|44362|3|33|46375.56|0.08|0.03|A|F|1992-11-29|1993-01-10|1992-12-14|COLLECT COD|AIR| fluffily ironic d| +35629|861926|36961|4|46|86842.48|0.08|0.07|R|F|1992-11-21|1992-12-15|1992-11-24|NONE|TRUCK|gular foxes are even packages. furiously i| +35629|380242|30243|5|9|11900.07|0.00|0.01|R|F|1992-12-01|1992-11-24|1992-12-14|DELIVER IN PERSON|AIR|uests. carefully ir| +35629|716573|29088|6|9|14305.86|0.06|0.08|R|F|1993-02-12|1992-12-28|1993-02-26|TAKE BACK RETURN|TRUCK|requests boost carefully fu| +35630|951991|27030|1|25|51073.75|0.10|0.07|N|O|1997-05-01|1997-04-24|1997-05-15|DELIVER IN PERSON|MAIL|lets sleep | +35630|99240|36744|2|31|38416.44|0.07|0.05|N|O|1997-05-30|1997-04-14|1997-06-02|DELIVER IN PERSON|FOB|its. special, regular theodolites hag| +35630|921851|21852|3|40|74912.40|0.03|0.07|N|O|1997-03-13|1997-03-21|1997-03-23|DELIVER IN PERSON|REG AIR|nal instructions are blithely special | +35630|535072|10093|4|2|2214.10|0.04|0.08|N|O|1997-03-02|1997-04-26|1997-03-17|DELIVER IN PERSON|AIR|. slyly regular deposit| +35630|939108|26663|5|18|20647.08|0.02|0.06|N|O|1997-05-04|1997-04-14|1997-06-02|COLLECT COD|FOB| unusual inst| +35630|573953|48976|6|37|74996.41|0.05|0.02|N|O|1997-02-18|1997-05-05|1997-03-17|COLLECT COD|SHIP|kages boost even| +35631|507374|32395|1|38|52491.30|0.10|0.02|A|F|1995-02-04|1995-02-04|1995-02-15|COLLECT COD|MAIL|pecial courts above the quickl| +35631|433997|9014|2|34|65652.98|0.03|0.01|A|F|1995-02-12|1995-02-22|1995-02-19|TAKE BACK RETURN|TRUCK|ly furiously final accounts. | +35631|186105|23615|3|39|46452.90|0.00|0.05|R|F|1995-01-04|1995-02-16|1995-01-28|NONE|SHIP|ey players. ironic asymptotes wake.| +35631|865498|15499|4|14|20488.30|0.09|0.06|A|F|1995-04-07|1995-01-14|1995-04-20|TAKE BACK RETURN|SHIP| requests sleep furious| +35631|415741|3266|5|1|1656.72|0.05|0.04|A|F|1994-12-23|1995-01-29|1995-01-10|NONE|MAIL|ave to wake across the carefully even acco| +35631|355623|5624|6|31|52036.91|0.02|0.02|R|F|1995-02-26|1995-01-16|1995-03-14|NONE|SHIP|Tiresias kindle furiously. furiously re| +35656|173866|48873|1|14|27158.04|0.06|0.01|R|F|1992-05-18|1992-07-12|1992-06-08|NONE|REG AIR|es against the| +35656|152653|27660|2|11|18762.15|0.00|0.07|R|F|1992-06-09|1992-06-19|1992-07-07|COLLECT COD|TRUCK|special deposi| +35656|637194|37195|3|19|21492.04|0.04|0.00|A|F|1992-04-23|1992-07-16|1992-05-09|COLLECT COD|SHIP| even packages along the fluffily i| +35656|304751|42270|4|41|71985.34|0.02|0.08|R|F|1992-07-23|1992-05-23|1992-08-15|COLLECT COD|TRUCK|e bold instructions. | +35656|946215|8734|5|27|34051.59|0.05|0.03|R|F|1992-05-25|1992-07-01|1992-06-24|TAKE BACK RETURN|FOB|across the | +35657|564645|39668|1|46|78642.52|0.07|0.05|R|F|1994-02-23|1994-04-08|1994-03-14|TAKE BACK RETURN|MAIL|uffily regular accounts | +35658|390626|3134|1|26|44631.86|0.05|0.07|N|O|1996-09-23|1996-08-19|1996-10-18|NONE|RAIL|arefully bold foxes will cajol| +35658|236836|49341|2|11|19501.02|0.07|0.07|N|O|1996-07-07|1996-08-13|1996-07-28|NONE|FOB|fluffily above the blithely even courts| +35658|494873|32401|3|21|39224.85|0.03|0.01|N|O|1996-09-02|1996-07-29|1996-10-02|NONE|RAIL|quickly about the even pinto beans. slyly| +35658|320855|45868|4|31|58151.04|0.00|0.04|N|O|1996-09-13|1996-08-25|1996-09-15|NONE|RAIL|ly regular pinto| +35658|601552|39089|5|26|37791.52|0.04|0.00|N|O|1996-07-29|1996-07-20|1996-08-09|DELIVER IN PERSON|FOB|inal accounts. slyly ev| +35658|278275|15791|6|14|17545.64|0.06|0.02|N|O|1996-07-20|1996-08-20|1996-07-22|TAKE BACK RETURN|FOB|pinto beans are furiously. even instruct| +35659|165387|27891|1|31|45023.78|0.05|0.00|R|F|1995-06-04|1995-08-05|1995-06-08|COLLECT COD|RAIL|inly special asymptotes integrate above | +35659|647453|9966|2|25|35010.50|0.10|0.07|R|F|1995-06-08|1995-07-15|1995-06-09|COLLECT COD|TRUCK|busy instructions-- slyly express deposits | +35659|736297|11326|3|41|54663.66|0.02|0.06|N|F|1995-06-04|1995-07-12|1995-06-19|TAKE BACK RETURN|SHIP|g furiously ironic, si| +35660|150398|25405|1|9|13035.51|0.03|0.07|N|O|1997-08-19|1997-10-31|1997-09-11|TAKE BACK RETURN|FOB|ly bold requests. quick| +35660|729712|42227|2|42|73150.56|0.06|0.00|N|O|1997-11-23|1997-09-20|1997-12-13|TAKE BACK RETURN|TRUCK| accounts. blithel| +35660|267150|4666|3|41|45802.74|0.06|0.07|N|O|1997-08-15|1997-09-02|1997-09-09|COLLECT COD|TRUCK|ely final pearls print blithely accordin| +35660|987450|25008|4|41|63033.81|0.02|0.08|N|O|1997-08-22|1997-10-31|1997-09-04|DELIVER IN PERSON|MAIL|usual theodolites c| +35661|613052|25565|1|34|32810.68|0.07|0.04|N|O|1998-08-04|1998-08-05|1998-08-13|TAKE BACK RETURN|TRUCK|quietly regular gifts try to use quickly | +35661|555528|5529|2|32|50672.00|0.08|0.08|N|O|1998-08-24|1998-09-24|1998-09-01|TAKE BACK RETURN|TRUCK|ular asymptotes about| +35661|746860|9375|3|47|89621.01|0.05|0.01|N|O|1998-09-07|1998-08-08|1998-09-22|DELIVER IN PERSON|AIR|s. quickly ex| +35661|473637|11165|4|16|25769.76|0.07|0.01|N|O|1998-07-29|1998-09-21|1998-08-03|COLLECT COD|RAIL|nto beans according to the fl| +35661|401938|39463|5|28|51517.48|0.02|0.08|N|O|1998-08-13|1998-08-29|1998-08-16|NONE|RAIL|onic packages | +35661|364593|39608|6|43|71275.94|0.00|0.07|N|O|1998-07-05|1998-08-30|1998-07-07|NONE|TRUCK|e regularly blithely f| +35662|179742|4749|1|12|21860.88|0.07|0.08|N|O|1995-10-03|1995-10-26|1995-10-08|DELIVER IN PERSON|FOB|g epitaphs use alongside| +35662|911298|36335|2|35|45823.75|0.06|0.05|N|O|1995-12-08|1995-10-01|1995-12-14|TAKE BACK RETURN|FOB| cajole furiously after the quickly | +35662|182125|44629|3|27|32592.24|0.08|0.02|N|O|1995-11-29|1995-11-11|1995-12-03|COLLECT COD|FOB|packages. slyly ironic theodo| +35662|961960|11961|4|17|34372.64|0.01|0.08|N|O|1995-10-14|1995-09-16|1995-11-03|NONE|FOB|ructions boost. ironically final| +35663|698494|11008|1|38|56713.48|0.06|0.07|N|O|1996-12-04|1996-10-31|1996-12-17|NONE|RAIL|nts grow carefully special r| +35688|654599|4600|1|19|29517.64|0.04|0.05|A|F|1992-05-04|1992-04-10|1992-05-08|DELIVER IN PERSON|MAIL|t the final requests haggle carefully about| +35688|838281|798|2|5|6096.20|0.06|0.01|R|F|1992-06-01|1992-05-07|1992-06-28|TAKE BACK RETURN|AIR|ng the furiously u| +35688|973012|35532|3|7|7594.79|0.07|0.02|A|F|1992-05-09|1992-04-02|1992-05-11|COLLECT COD|TRUCK|posits. regular ideas | +35688|409457|46982|4|12|16397.16|0.04|0.00|R|F|1992-04-29|1992-03-18|1992-05-26|COLLECT COD|TRUCK|ding accounts about the s| +35689|518707|43728|1|34|58673.12|0.02|0.05|A|F|1994-06-23|1994-07-21|1994-07-23|DELIVER IN PERSON|REG AIR|unts among the final, ironic | +35689|906780|44335|2|30|53602.20|0.06|0.05|A|F|1994-09-20|1994-09-08|1994-10-18|TAKE BACK RETURN|RAIL|ously silent accounts us| +35689|244398|6903|3|13|17450.94|0.04|0.03|R|F|1994-07-01|1994-07-30|1994-07-17|DELIVER IN PERSON|TRUCK|eas use carefull| +35689|585014|47526|4|23|25276.77|0.10|0.00|A|F|1994-06-18|1994-07-23|1994-06-22|DELIVER IN PERSON|FOB|sleep furiously. special deposits | +35689|316553|29060|5|25|39238.50|0.06|0.01|R|F|1994-06-27|1994-08-17|1994-07-02|COLLECT COD|MAIL|heodolites. slyly ev| +35690|629553|42066|1|1|1482.52|0.02|0.08|N|O|1996-12-22|1997-01-29|1996-12-24|NONE|TRUCK|nic deposi| +35690|894005|6523|2|24|23975.04|0.07|0.06|N|O|1997-01-28|1996-12-26|1997-02-22|NONE|REG AIR|as use. blithely final platelets w| +35690|527221|14752|3|27|33701.40|0.07|0.00|N|O|1997-01-25|1997-01-10|1997-01-31|TAKE BACK RETURN|AIR|ge about the f| +35690|2754|2755|4|27|44732.25|0.10|0.03|N|O|1997-02-14|1996-12-21|1997-02-24|TAKE BACK RETURN|AIR|s pinto beans. ideas cajole.| +35690|275232|12748|5|5|6036.10|0.01|0.02|N|O|1997-01-21|1997-02-01|1997-02-04|COLLECT COD|FOB| wake blithel| +35691|770479|20480|1|5|7747.20|0.02|0.04|A|F|1994-04-16|1994-04-10|1994-05-01|NONE|RAIL|se accounts cajole care| +35691|425966|38475|2|32|60542.08|0.03|0.05|A|F|1994-02-21|1994-03-13|1994-03-13|TAKE BACK RETURN|RAIL|yly ironic deposits. deposits cajole car| +35691|206656|19161|3|18|28127.52|0.01|0.00|R|F|1994-04-25|1994-05-01|1994-05-19|TAKE BACK RETURN|SHIP|ong the blithely ironic acco| +35691|254764|42280|4|23|39531.25|0.04|0.03|A|F|1994-06-05|1994-03-22|1994-07-04|NONE|REG AIR|regular ac| +35691|813963|38996|5|16|30030.72|0.09|0.04|R|F|1994-03-20|1994-03-20|1994-03-23|TAKE BACK RETURN|AIR|re fluffily. regular p| +35692|389143|26665|1|16|19714.08|0.10|0.08|A|F|1992-12-01|1993-01-11|1992-12-14|TAKE BACK RETURN|RAIL| carefully regular packages. caref| +35692|323867|48880|2|22|41598.70|0.09|0.02|A|F|1993-03-04|1993-02-07|1993-03-21|TAKE BACK RETURN|AIR| ideas among the express ins| +35692|223816|11329|3|43|74811.40|0.09|0.05|R|F|1993-02-23|1993-02-13|1993-02-24|TAKE BACK RETURN|REG AIR|accounts play within the deposits. bu| +35692|658796|8797|4|21|36849.96|0.02|0.01|A|F|1993-01-09|1993-01-06|1993-01-20|DELIVER IN PERSON|AIR|sly regular packages along the thinl| +35692|373762|48777|5|36|66087.00|0.00|0.06|A|F|1993-01-20|1992-12-28|1993-02-19|NONE|TRUCK|s are. final frays solve qu| +35692|813240|13241|6|28|32289.60|0.00|0.02|R|F|1993-01-01|1993-02-18|1993-01-13|DELIVER IN PERSON|REG AIR|have to sleep evenly bold dependencies| +35692|111164|23667|7|30|35254.80|0.08|0.01|R|F|1993-01-05|1993-01-19|1993-01-18|NONE|SHIP|requests use carefully after the s| +35693|319651|32158|1|37|61813.68|0.10|0.03|A|F|1994-08-26|1994-10-02|1994-08-28|COLLECT COD|REG AIR|furiously regular pinto be| +35693|370935|45950|2|45|90266.40|0.07|0.05|A|F|1994-10-29|1994-11-02|1994-11-15|TAKE BACK RETURN|FOB|fluffily unusual, bold | +35694|897018|22053|1|47|47703.59|0.02|0.01|N|O|1997-04-02|1997-01-24|1997-04-04|NONE|MAIL|ongside of the blithely | +35694|171884|21885|2|32|62588.16|0.01|0.01|N|O|1997-02-08|1997-02-17|1997-02-13|TAKE BACK RETURN|RAIL|around the accounts! bold req| +35694|844424|6941|3|26|35577.88|0.00|0.05|N|O|1997-03-29|1997-02-20|1997-04-05|DELIVER IN PERSON|AIR|hely ironic ideas cajole sl| +35694|227711|27712|4|24|39328.80|0.03|0.04|N|O|1997-02-25|1997-03-01|1997-03-15|TAKE BACK RETURN|REG AIR|rding to the ironic, special pinto beans. | +35694|125232|237|5|40|50289.20|0.02|0.01|N|O|1996-12-13|1997-03-07|1996-12-20|TAKE BACK RETURN|TRUCK| above the carefu| +35695|501784|39315|1|40|71430.40|0.03|0.05|A|F|1992-07-05|1992-06-02|1992-07-08|COLLECT COD|MAIL|hely final instructions around the fi| +35695|476587|39097|2|41|64105.96|0.10|0.00|R|F|1992-07-28|1992-06-04|1992-08-01|NONE|RAIL| players? ironic, bold requests boost. ac| +35695|996529|9049|3|14|22756.72|0.06|0.08|R|F|1992-06-06|1992-06-18|1992-06-18|DELIVER IN PERSON|FOB|he accounts. unusual deposits haggle f| +35695|649691|12204|4|31|50860.46|0.05|0.00|R|F|1992-05-05|1992-06-22|1992-05-12|COLLECT COD|RAIL|ly regular courts ar| +35695|340569|40570|5|47|75648.85|0.04|0.04|R|F|1992-07-02|1992-07-15|1992-07-16|TAKE BACK RETURN|MAIL|totes according to the blithely | +35720|453681|3682|1|17|27789.22|0.09|0.05|A|F|1993-05-11|1993-05-20|1993-05-27|COLLECT COD|REG AIR|carefully across the furiousl| +35720|14576|27077|2|18|26830.26|0.04|0.02|A|F|1993-06-20|1993-06-12|1993-06-26|DELIVER IN PERSON|REG AIR|nal, regular acc| +35720|971173|8731|3|47|58474.11|0.07|0.00|R|F|1993-06-19|1993-05-19|1993-07-16|TAKE BACK RETURN|FOB|y regular requests doze thinly. pinto beans| +35720|501458|13969|4|17|24810.31|0.06|0.05|A|F|1993-04-19|1993-06-07|1993-04-22|TAKE BACK RETURN|REG AIR|ymptotes. regular, regu| +35721|218745|31250|1|28|46584.44|0.08|0.01|A|F|1994-07-30|1994-10-01|1994-08-27|NONE|SHIP|aring, bold requests cajole depos| +35721|441664|29189|2|18|28901.52|0.00|0.06|R|F|1994-08-27|1994-10-06|1994-09-09|TAKE BACK RETURN|REG AIR|y ironic asymptotes. furiously regular depo| +35721|34464|46965|3|30|41953.80|0.01|0.02|A|F|1994-09-15|1994-09-12|1994-09-16|DELIVER IN PERSON|MAIL|y bold packa| +35721|219916|32421|4|40|73436.00|0.00|0.05|A|F|1994-08-03|1994-09-28|1994-08-28|COLLECT COD|REG AIR|ckages cajole | +35721|119770|44775|5|33|59062.41|0.03|0.08|R|F|1994-10-28|1994-10-15|1994-11-18|NONE|MAIL| haggle slyly bold ideas? s| +35722|740570|3085|1|35|56368.90|0.04|0.04|N|O|1998-04-23|1998-03-31|1998-05-08|TAKE BACK RETURN|MAIL|sits wake blithely blithely silent pinto b| +35722|746588|46589|2|15|24518.25|0.02|0.03|N|O|1998-02-24|1998-04-21|1998-03-17|NONE|REG AIR|gular instructions. final foxes | +35722|898889|48890|3|50|94392.00|0.03|0.05|N|O|1998-03-17|1998-04-09|1998-04-06|COLLECT COD|AIR|theodolites at the iron| +35722|618635|31148|4|27|41947.20|0.00|0.06|N|O|1998-05-13|1998-04-07|1998-05-16|TAKE BACK RETURN|REG AIR| fluffily requests.| +35722|385611|35612|5|48|81436.80|0.06|0.01|N|O|1998-04-22|1998-05-09|1998-05-19|NONE|TRUCK|liers integrate furiously re| +35723|698114|48115|1|2|2224.16|0.01|0.05|A|F|1992-10-03|1992-11-20|1992-11-01|NONE|RAIL| the furiously| +35723|192609|17616|2|24|40838.40|0.00|0.04|A|F|1992-11-29|1992-11-06|1992-12-10|NONE|MAIL|ilent requests are fur| +35724|410626|48151|1|31|47634.60|0.03|0.05|N|O|1995-12-20|1995-10-12|1995-12-28|NONE|AIR|pinto beans nag carefully against | +35724|381744|19266|2|30|54771.90|0.00|0.07|N|O|1995-12-31|1995-11-07|1996-01-25|TAKE BACK RETURN|AIR| are ironi| +35724|956958|31997|3|34|68506.94|0.09|0.05|N|O|1995-11-12|1995-11-23|1995-11-25|TAKE BACK RETURN|MAIL|nto beans detect quickly w| +35724|590728|40729|4|24|43648.80|0.09|0.00|N|O|1995-09-10|1995-11-06|1995-09-18|NONE|AIR|ages. pending packages boo| +35724|362704|37719|5|26|45933.94|0.07|0.03|N|O|1995-11-21|1995-10-31|1995-12-20|DELIVER IN PERSON|MAIL|. fluffily unusual accounts use | +35725|545184|7695|1|9|11062.44|0.06|0.06|N|O|1997-10-17|1997-09-22|1997-10-27|TAKE BACK RETURN|SHIP|usly express | +35726|669186|19187|1|11|12706.65|0.05|0.05|R|F|1994-02-17|1993-12-18|1994-03-05|DELIVER IN PERSON|MAIL|s cajole furiously ironic, even foxes. | +35727|461807|36826|1|43|76057.54|0.09|0.07|N|O|1997-02-12|1996-12-21|1997-02-14|DELIVER IN PERSON|TRUCK|oxes lose furiously acc| +35752|786166|36167|1|11|13773.43|0.10|0.05|R|F|1995-02-09|1995-01-12|1995-03-11|DELIVER IN PERSON|MAIL| alongside of the e| +35752|87855|357|2|37|68185.45|0.07|0.07|R|F|1995-01-03|1995-01-26|1995-01-27|COLLECT COD|TRUCK|ly bold instructions snooze blith| +35752|570699|20700|3|18|31854.06|0.07|0.07|A|F|1995-02-04|1995-01-06|1995-02-22|NONE|AIR|ding deposits doubt blithely ev| +35752|727740|40255|4|11|19444.81|0.08|0.06|A|F|1995-01-28|1995-01-23|1995-02-21|NONE|MAIL| carefully express p| +35752|123071|48076|5|32|35010.24|0.10|0.00|R|F|1995-03-02|1995-01-26|1995-03-10|COLLECT COD|AIR|. slyly ironic braids along the slyly| +35753|466001|16002|1|47|45448.06|0.01|0.08|R|F|1992-11-18|1992-10-11|1992-11-26|DELIVER IN PERSON|SHIP|ful accounts slee| +35754|212582|37591|1|29|43342.53|0.07|0.03|N|O|1997-11-07|1997-11-23|1997-11-28|DELIVER IN PERSON|TRUCK| foxes. quickly pen| +35754|849711|12228|2|30|49820.10|0.07|0.01|N|O|1997-10-26|1997-12-18|1997-11-09|NONE|FOB|ways around the| +35754|92322|4824|3|27|35486.64|0.09|0.08|N|O|1998-01-10|1997-12-08|1998-02-06|DELIVER IN PERSON|TRUCK|sly. ironic ideas boost furiously. fur| +35754|650695|696|4|32|52661.12|0.01|0.04|N|O|1998-01-24|1997-11-03|1998-01-29|NONE|SHIP|ely above the bold, pending theodol| +35755|404219|16728|1|35|39311.65|0.02|0.04|N|O|1998-08-05|1998-06-03|1998-09-02|DELIVER IN PERSON|RAIL|sits. furiously ironic pinto be| +35755|702916|27945|2|47|90187.36|0.07|0.05|N|O|1998-06-07|1998-06-02|1998-06-30|NONE|FOB|ar ideas across t| +35755|902613|15132|3|39|63007.23|0.08|0.07|N|O|1998-07-10|1998-05-25|1998-07-12|TAKE BACK RETURN|AIR|d pinto beans. evenly| +35755|211494|23999|4|38|53408.24|0.09|0.01|N|O|1998-05-08|1998-05-18|1998-05-24|TAKE BACK RETURN|AIR|ng accounts ought to solve| +35756|839558|14591|1|2|2995.02|0.10|0.03|R|F|1994-12-31|1995-02-10|1995-01-04|TAKE BACK RETURN|RAIL|usual waters boo| +35756|449595|49596|2|29|44792.53|0.02|0.06|A|F|1995-04-05|1995-03-06|1995-04-22|TAKE BACK RETURN|SHIP|sleep fluffily accord| +35756|331573|19092|3|44|70600.64|0.07|0.08|R|F|1995-01-26|1995-01-25|1995-02-07|DELIVER IN PERSON|SHIP|across the carefully special deposi| +35756|730786|30787|4|48|87204.00|0.10|0.05|A|F|1995-04-19|1995-03-06|1995-05-04|NONE|FOB|ffix among the| +35756|312700|219|5|5|8563.45|0.03|0.06|A|F|1995-03-08|1995-03-22|1995-03-09|NONE|SHIP|lites. blithely final deposits | +35756|532470|32471|6|13|19531.85|0.08|0.03|R|F|1995-01-03|1995-03-14|1995-01-16|TAKE BACK RETURN|TRUCK|s. even pinto | +35757|496517|9027|1|29|43891.21|0.09|0.04|N|O|1998-01-11|1998-02-21|1998-01-25|COLLECT COD|FOB|nag slyly according to the unusual foxes| +35757|958762|33801|2|15|27310.80|0.08|0.03|N|O|1998-02-07|1998-01-15|1998-02-19|TAKE BACK RETURN|FOB|lar platelets ar| +35758|294238|19249|1|39|48056.58|0.00|0.02|R|F|1993-06-30|1993-07-03|1993-07-01|TAKE BACK RETURN|FOB|ly. blithely express deposits x-ray perm| +35759|630541|43054|1|27|39730.77|0.02|0.04|A|F|1993-01-07|1993-02-04|1993-01-16|DELIVER IN PERSON|RAIL|furiously express| +35759|496598|34126|2|3|4783.71|0.07|0.03|R|F|1992-12-17|1993-02-13|1992-12-19|NONE|FOB|nst the carefully regular fox| +35784|619799|7336|1|41|70469.16|0.06|0.08|A|F|1993-02-02|1992-12-21|1993-02-10|NONE|REG AIR|se special accounts. quickly even theod| +35784|954930|17450|2|44|87335.16|0.03|0.05|A|F|1992-12-11|1993-01-16|1992-12-14|DELIVER IN PERSON|TRUCK|d deposits | +35784|505920|5921|3|44|84739.60|0.05|0.08|A|F|1992-11-28|1993-01-19|1992-12-27|DELIVER IN PERSON|FOB|ven tithes. silent d| +35785|488965|13984|1|20|39078.80|0.01|0.07|A|F|1992-12-15|1992-10-29|1992-12-28|NONE|REG AIR|y express courts among the slyl| +35785|18755|31256|2|3|5021.25|0.08|0.08|A|F|1992-09-20|1992-09-25|1992-10-18|NONE|RAIL| furiously bold d| +35785|204150|29159|3|43|45328.02|0.02|0.07|A|F|1992-09-18|1992-10-30|1992-10-11|TAKE BACK RETURN|TRUCK|ts detect deposits: enticing, sil| +35785|143098|43099|4|43|49066.87|0.07|0.05|R|F|1992-09-10|1992-10-29|1992-10-08|NONE|SHIP|efully regular ideas sle| +35785|44252|31753|5|26|31102.50|0.08|0.02|R|F|1992-09-28|1992-11-16|1992-10-27|COLLECT COD|AIR| across the accounts: blith| +35785|738619|26162|6|16|26521.28|0.04|0.08|A|F|1992-11-03|1992-10-16|1992-11-21|COLLECT COD|FOB|g deposits bo| +35786|871343|33861|1|16|21028.80|0.10|0.06|R|F|1994-10-12|1994-09-08|1994-11-04|NONE|AIR| special theo| +35786|652665|40205|2|20|32352.60|0.09|0.05|R|F|1994-06-25|1994-07-28|1994-06-30|TAKE BACK RETURN|AIR| ironic ac| +35786|328521|41028|3|39|60430.89|0.03|0.03|R|F|1994-07-04|1994-09-10|1994-07-23|DELIVER IN PERSON|RAIL|ly among the slyly | +35787|350394|395|1|26|37553.88|0.04|0.06|N|O|1996-01-28|1996-03-03|1996-01-30|COLLECT COD|RAIL|ages haggle above the car| +35787|63529|13530|2|21|31342.92|0.00|0.05|N|O|1996-01-16|1996-03-14|1996-01-17|COLLECT COD|MAIL|instructions cajole-- carefully sil| +35788|584959|47471|1|39|79713.27|0.03|0.06|N|O|1995-11-02|1995-11-10|1995-11-25|NONE|TRUCK|thely ironic packages. final pac| +35788|403936|41461|2|11|20239.01|0.01|0.00|N|O|1995-09-08|1995-10-17|1995-09-27|COLLECT COD|AIR|y final frets are. furiously special ideas| +35788|944734|44735|3|19|33795.11|0.08|0.04|N|O|1995-09-17|1995-10-01|1995-09-29|DELIVER IN PERSON|SHIP|ely regular hockey players| +35789|224146|24147|1|13|13911.69|0.09|0.07|N|O|1997-12-24|1998-01-02|1998-01-11|DELIVER IN PERSON|REG AIR| carefully regular accounts. slyly pen| +35789|218328|18329|2|8|9970.48|0.10|0.03|N|O|1997-11-22|1998-01-08|1997-12-16|NONE|REG AIR|l accounts haggle blithely bold p| +35789|425410|427|3|11|14689.29|0.04|0.05|N|O|1997-11-22|1998-01-30|1997-12-20|NONE|RAIL|ong the requests cajol| +35789|854309|29344|4|18|22738.68|0.07|0.07|N|O|1998-03-04|1997-12-21|1998-03-27|COLLECT COD|AIR| slyly after the quickly fina| +35789|360227|47749|5|7|9010.47|0.02|0.04|N|O|1998-02-26|1998-01-31|1998-02-28|COLLECT COD|AIR|ies. packages doze carefully ir| +35789|321652|34159|6|41|68619.24|0.09|0.02|N|O|1998-03-08|1997-12-12|1998-03-17|DELIVER IN PERSON|AIR|ully special accounts sleep to the si| +35789|999576|37134|7|5|8377.65|0.07|0.04|N|O|1998-01-11|1998-01-27|1998-02-02|TAKE BACK RETURN|TRUCK|ly quick forges i| +35790|870100|20101|1|46|49222.76|0.03|0.00|N|O|1995-07-19|1995-05-28|1995-07-22|COLLECT COD|SHIP|ges. quickly final foxes wake r| +35790|759624|22140|2|7|11785.13|0.04|0.01|N|O|1995-08-05|1995-05-17|1995-08-25|NONE|FOB|fully unusual dolphins detec| +35790|995428|7948|3|48|73122.24|0.02|0.07|N|O|1995-07-09|1995-05-19|1995-08-05|DELIVER IN PERSON|SHIP|equests. quickly silent platelets cajole| +35791|454286|4287|1|14|17363.64|0.10|0.07|A|F|1993-11-01|1993-10-01|1993-11-11|DELIVER IN PERSON|MAIL|haggle about the quickly even excuses. ex| +35791|181319|18829|2|40|56012.40|0.05|0.03|A|F|1993-12-10|1993-10-03|1993-12-16|NONE|SHIP| bold deposits haggle fluffily after| +35816|915859|40896|1|27|50619.87|0.02|0.04|A|F|1994-06-02|1994-04-25|1994-06-25|NONE|MAIL| furiously bold pin| +35816|826870|39387|2|14|25155.62|0.07|0.00|A|F|1994-05-28|1994-05-20|1994-06-27|COLLECT COD|MAIL|m the final | +35817|191313|28823|1|12|16851.72|0.07|0.02|R|F|1994-06-09|1994-07-09|1994-06-10|TAKE BACK RETURN|RAIL|ts sleep against the caref| +35817|388592|26114|2|20|33611.60|0.10|0.08|A|F|1994-08-21|1994-06-05|1994-09-02|TAKE BACK RETURN|FOB|al foxes nag | +35817|48939|36440|3|44|83068.92|0.01|0.00|R|F|1994-07-29|1994-07-09|1994-08-21|TAKE BACK RETURN|RAIL|lly pending foxes cajole flu| +35817|501078|13589|4|29|31292.45|0.07|0.07|R|F|1994-05-09|1994-06-13|1994-05-28|DELIVER IN PERSON|TRUCK|ven, pending packages. even account| +35818|425916|933|1|26|47889.14|0.03|0.07|A|F|1992-05-09|1992-04-29|1992-06-04|COLLECT COD|SHIP|nag quickly regular, ironic ideas.| +35818|356556|31571|2|25|40313.50|0.06|0.02|R|F|1992-05-10|1992-05-14|1992-05-26|DELIVER IN PERSON|FOB| bold theodolites integrate | +35818|620216|7753|3|38|43174.84|0.00|0.03|R|F|1992-06-01|1992-05-14|1992-06-19|NONE|REG AIR|s. carefully final| +35818|963867|13868|4|44|84956.08|0.01|0.03|A|F|1992-06-12|1992-04-05|1992-07-12|COLLECT COD|SHIP|ly. ironic accounts are slyly regu| +35819|337654|25173|1|38|64282.32|0.06|0.01|N|O|1997-06-06|1997-06-28|1997-06-09|DELIVER IN PERSON|MAIL|e accounts cajole against the furiously f| +35819|938269|25824|2|29|37909.38|0.00|0.05|N|O|1997-07-26|1997-06-11|1997-08-19|DELIVER IN PERSON|REG AIR|ial pinto beans detec| +35819|483194|45704|3|6|7063.02|0.04|0.02|N|O|1997-06-21|1997-06-15|1997-07-06|DELIVER IN PERSON|MAIL|efully even requests ab| +35819|31405|18906|4|7|9354.80|0.09|0.07|N|O|1997-05-28|1997-06-19|1997-06-15|COLLECT COD|FOB|efully slyly express packages. furiously u| +35820|148290|48291|1|25|33457.25|0.04|0.06|N|O|1997-07-04|1997-07-15|1997-07-12|DELIVER IN PERSON|TRUCK|sits sleep above the furiously ir| +35820|300772|13279|2|11|19500.36|0.08|0.00|N|O|1997-08-21|1997-07-18|1997-08-27|COLLECT COD|SHIP|regular pl| +35821|845338|45339|1|37|47481.73|0.05|0.02|N|O|1998-08-03|1998-07-20|1998-08-21|NONE|SHIP|ts wake quickly careful tithes. sil| +35822|798903|11419|1|7|14013.09|0.06|0.06|N|O|1996-08-13|1996-07-22|1996-08-16|TAKE BACK RETURN|SHIP|ular packages serve quickly about the | +35822|146388|46389|2|35|50203.30|0.09|0.03|N|O|1996-06-30|1996-07-30|1996-07-30|NONE|FOB|usly along the c| +35823|800272|37821|1|37|43372.51|0.02|0.07|A|F|1992-11-05|1992-12-23|1992-11-15|TAKE BACK RETURN|REG AIR|mptotes boost car| +35823|169531|44538|2|15|24007.95|0.09|0.03|A|F|1992-11-10|1992-12-20|1992-11-19|NONE|RAIL| blithely fluffy dependencies. quickly b| +35823|300214|12721|3|19|23069.80|0.01|0.08|A|F|1992-12-09|1992-12-12|1992-12-15|NONE|SHIP|r, pending instructi| +35823|692475|42476|4|10|14674.40|0.03|0.05|A|F|1992-12-25|1992-12-07|1993-01-01|COLLECT COD|RAIL|ular deposits cajole blithely ironic, unusu| +35823|425436|453|5|44|59902.04|0.09|0.02|A|F|1992-12-12|1992-12-05|1992-12-25|COLLECT COD|TRUCK|the carefully | +35823|290645|3151|6|40|65425.20|0.08|0.01|A|F|1992-11-01|1993-01-20|1992-11-03|TAKE BACK RETURN|RAIL|tions. pending accounts promise furio| +35823|854991|17509|7|5|9729.75|0.09|0.06|A|F|1993-01-10|1993-01-02|1993-02-06|NONE|FOB|g packages sleep slyly.| +35848|829575|17124|1|29|43631.37|0.03|0.02|N|O|1996-01-22|1995-12-04|1996-02-16|COLLECT COD|TRUCK|ic foxes haggle bravely ev| +35849|989998|39999|1|17|35495.15|0.01|0.08|N|O|1997-01-07|1997-01-09|1997-01-12|NONE|REG AIR|uiet reque| +35849|892007|17042|2|39|38959.44|0.10|0.07|N|O|1996-12-06|1997-02-13|1996-12-21|NONE|TRUCK|ajole express ideas. even dolphins use slyl| +35849|955862|5863|3|10|19178.20|0.06|0.05|N|O|1997-01-28|1997-02-05|1997-02-26|COLLECT COD|RAIL| pinto beans haggle quickly final requests.| +35850|180500|5507|1|2|3161.00|0.00|0.08|N|O|1996-08-29|1996-07-11|1996-09-14|COLLECT COD|REG AIR|lyly across the silent, ironic excuses.| +35851|748653|23682|1|14|23822.68|0.05|0.00|R|F|1992-05-14|1992-05-31|1992-06-08|NONE|REG AIR| cajole. final ideas nag sometimes abo| +35852|271813|9329|1|49|87455.20|0.09|0.04|A|F|1992-09-25|1992-10-10|1992-10-24|DELIVER IN PERSON|AIR|uickly regular tithes integrate. foxes are| +35852|351265|13773|2|9|11846.25|0.07|0.01|R|F|1992-10-14|1992-11-07|1992-11-10|NONE|RAIL|nt instructions. carefully ir| +35852|705218|17733|3|37|45257.66|0.05|0.01|R|F|1992-12-10|1992-11-01|1992-12-25|DELIVER IN PERSON|REG AIR|y ironic instructio| +35852|598124|35658|4|6|7332.60|0.08|0.08|R|F|1992-11-12|1992-09-26|1992-11-27|NONE|MAIL|luffily unusual escapades.| +35852|657446|44986|5|7|9823.87|0.08|0.03|A|F|1992-10-05|1992-10-02|1992-10-27|TAKE BACK RETURN|REG AIR|y around the ironic, final| +35852|678442|40956|6|14|19885.74|0.06|0.07|A|F|1992-10-15|1992-10-31|1992-10-29|NONE|RAIL|lly bold multipli| +35853|750780|38326|1|11|20138.25|0.07|0.05|A|F|1993-12-29|1994-01-31|1994-01-10|COLLECT COD|RAIL|ts about the blithely regular dolphins are | +35853|358643|8644|2|3|5104.89|0.05|0.04|R|F|1994-03-07|1994-02-03|1994-03-14|NONE|SHIP|sual requests wake. | +35853|699224|11738|3|14|17124.66|0.01|0.07|A|F|1994-04-14|1994-01-26|1994-04-15|TAKE BACK RETURN|RAIL|lar packages affix carefully about the fin| +35853|850219|37771|4|29|33905.93|0.01|0.05|A|F|1993-12-27|1994-02-09|1994-01-16|COLLECT COD|MAIL|press pinto beans haggle above the regula| +35854|568409|18410|1|19|28070.22|0.03|0.03|R|F|1994-08-29|1994-09-05|1994-09-12|NONE|MAIL|orses above the | +35854|247103|34616|2|23|24152.07|0.00|0.06|A|F|1994-08-02|1994-09-07|1994-08-22|DELIVER IN PERSON|AIR|ly pending ideas wake | +35854|47094|22095|3|32|33314.88|0.04|0.01|A|F|1994-09-25|1994-10-18|1994-10-15|COLLECT COD|AIR|s integrate slyly after the special, u| +35854|492604|17623|4|1|1596.58|0.08|0.03|R|F|1994-08-21|1994-09-09|1994-08-23|DELIVER IN PERSON|FOB|according to the fluffily pendin| +35854|189281|14288|5|19|26035.32|0.07|0.08|R|F|1994-08-16|1994-09-20|1994-09-14|TAKE BACK RETURN|REG AIR|arefully even requests| +35855|460160|35179|1|1|1120.14|0.09|0.07|N|O|1996-12-06|1997-01-24|1996-12-09|COLLECT COD|FOB|r the blithely special deposits. blith| +35855|893405|30957|2|23|32162.28|0.06|0.05|N|O|1997-02-09|1996-12-22|1997-02-28|DELIVER IN PERSON|MAIL|riously special instructions boost p| +35880|181286|6293|1|22|30080.16|0.08|0.00|N|O|1998-02-16|1998-03-26|1998-02-21|TAKE BACK RETURN|RAIL|e packages. pinto bean| +35880|857739|45291|2|30|50900.70|0.03|0.00|N|O|1998-03-21|1998-04-13|1998-04-10|DELIVER IN PERSON|TRUCK|l theodolites are stealthily regular | +35880|18106|43107|3|5|5120.50|0.04|0.03|N|O|1998-03-16|1998-02-28|1998-03-24|DELIVER IN PERSON|RAIL|dolites along the bol| +35881|785801|48317|1|8|15094.16|0.07|0.06|A|F|1993-07-25|1993-05-20|1993-08-23|TAKE BACK RETURN|TRUCK|bout the final | +35881|946769|21806|2|47|85338.84|0.09|0.01|A|F|1993-04-29|1993-06-19|1993-05-23|NONE|SHIP|as. regular packages c| +35881|340628|15641|3|2|3337.22|0.08|0.04|A|F|1993-06-10|1993-06-26|1993-06-12|TAKE BACK RETURN|TRUCK|ackages affix. blithely| +35881|921995|21996|4|10|20169.50|0.03|0.06|A|F|1993-07-27|1993-05-31|1993-08-19|COLLECT COD|MAIL|ns eat carefully among the fl| +35881|958655|8656|5|15|25704.15|0.08|0.00|A|F|1993-04-22|1993-05-30|1993-05-16|TAKE BACK RETURN|FOB|thely across the unusual, regular courts. i| +35881|114424|1931|6|35|50344.70|0.03|0.01|R|F|1993-05-21|1993-06-25|1993-06-10|COLLECT COD|TRUCK| cajole along the quickly special | +35882|155174|5175|1|25|30729.25|0.04|0.06|R|F|1994-02-09|1994-02-24|1994-03-08|NONE|FOB|fully express ideas. quickly close d| +35882|5017|17518|2|48|44256.48|0.05|0.00|R|F|1994-01-11|1994-01-16|1994-01-30|NONE|FOB|ts. carefully re| +35882|306268|31281|3|34|43324.50|0.02|0.01|R|F|1994-03-03|1994-02-18|1994-03-31|COLLECT COD|AIR|e regular accounts. deposi| +35882|445364|32889|4|35|45826.90|0.02|0.06|A|F|1994-02-27|1994-03-03|1994-03-03|DELIVER IN PERSON|AIR|thely final| +35882|223506|23507|5|19|27160.31|0.00|0.08|A|F|1994-03-01|1994-01-13|1994-03-11|NONE|FOB|ly. furiously regular accoun| +35882|454440|16950|6|33|46015.86|0.00|0.05|R|F|1993-12-14|1994-01-14|1993-12-16|NONE|REG AIR|hely final i| +35883|652902|15416|1|26|48226.62|0.05|0.07|A|F|1994-09-04|1994-11-11|1994-09-22|COLLECT COD|MAIL|lms. express, quiet packages use slyly exp| +35883|322388|22389|2|13|18334.81|0.09|0.05|R|F|1994-11-08|1994-10-14|1994-11-18|TAKE BACK RETURN|TRUCK|ending dependencies abo| +35883|360419|10420|3|4|5917.60|0.09|0.07|R|F|1994-12-02|1994-09-24|1994-12-25|COLLECT COD|TRUCK|ctions. furiously unusual| +35883|548089|23110|4|7|7959.42|0.03|0.00|A|F|1994-09-17|1994-10-26|1994-10-11|COLLECT COD|TRUCK|carefully. carefully unusual accounts un| +35883|715814|3357|5|26|47574.28|0.07|0.02|R|F|1994-12-11|1994-11-14|1995-01-03|NONE|REG AIR|requests. furiously final instruc| +35883|675385|37899|6|36|48972.60|0.00|0.05|A|F|1994-10-21|1994-10-26|1994-11-05|DELIVER IN PERSON|REG AIR|earls sublate among the blithely iro| +35884|354585|4586|1|34|55745.38|0.03|0.08|R|F|1994-05-04|1994-06-05|1994-05-28|NONE|SHIP|closely regular requests | +35884|505799|30820|2|44|79409.88|0.10|0.02|R|F|1994-05-03|1994-05-08|1994-05-26|NONE|TRUCK|ccording to the | +35884|956169|18689|3|9|11026.08|0.06|0.08|R|F|1994-04-07|1994-04-21|1994-04-23|COLLECT COD|SHIP|efully express theodolites. blithely e| +35884|328922|16441|4|43|83889.13|0.01|0.02|A|F|1994-04-25|1994-05-16|1994-05-15|NONE|REG AIR|tions. pending sheave| +35884|186082|23592|5|36|42050.88|0.10|0.04|R|F|1994-04-08|1994-04-22|1994-04-18|DELIVER IN PERSON|MAIL| integrate blithely among the blit| +35884|470024|20025|6|2|1988.00|0.09|0.08|R|F|1994-05-17|1994-04-21|1994-06-01|COLLECT COD|TRUCK|st the blithel| +35885|863087|25605|1|3|3150.12|0.04|0.01|R|F|1993-09-16|1993-11-12|1993-10-13|COLLECT COD|MAIL|he sometimes regular asymptotes. furiou| +35885|898252|10770|2|47|58759.87|0.02|0.05|A|F|1993-11-13|1993-10-21|1993-12-05|NONE|FOB|kly slyly b| +35885|912592|37629|3|45|72204.75|0.09|0.06|A|F|1993-12-21|1993-09-23|1994-01-15|COLLECT COD|REG AIR|uriously across the q| +35886|68467|18468|1|26|37321.96|0.08|0.07|N|O|1996-05-22|1996-04-15|1996-06-14|NONE|SHIP|oxes use furiously u| +35886|721482|46511|2|25|37586.25|0.05|0.01|N|O|1996-04-07|1996-05-18|1996-04-09|NONE|REG AIR|r the carefully expr| +35886|935948|10985|3|39|77372.10|0.05|0.02|N|O|1996-05-17|1996-05-12|1996-05-31|COLLECT COD|MAIL| blithely above the regular deposits| +35887|491356|16375|1|19|25599.27|0.05|0.02|A|F|1992-02-29|1992-02-06|1992-03-20|NONE|SHIP|wake. fluffily final deposits across the| +35887|211223|23728|2|2|2268.42|0.09|0.03|A|F|1992-03-26|1992-03-05|1992-04-07|NONE|FOB|usly alongside o| +35887|14377|26878|3|29|37449.73|0.08|0.06|A|F|1992-02-28|1992-04-01|1992-03-03|DELIVER IN PERSON|SHIP| excuses. regular accounts haggle. thinly| +35887|631732|6757|4|20|33274.00|0.08|0.00|A|F|1992-04-13|1992-02-05|1992-05-08|DELIVER IN PERSON|FOB|ly ironic depo| +35887|511098|48629|5|29|32163.03|0.01|0.00|A|F|1992-02-14|1992-03-02|1992-02-28|COLLECT COD|REG AIR|ckages wake bold excu| +35887|8927|33928|6|47|86288.24|0.03|0.08|R|F|1992-04-28|1992-03-16|1992-05-04|COLLECT COD|TRUCK|ve the ideas. fluffily express ideas ha| +35912|391760|4268|1|50|92587.50|0.09|0.03|N|O|1997-07-08|1997-07-24|1997-07-28|COLLECT COD|SHIP|t are about| +35912|304572|42091|2|30|47296.80|0.01|0.01|N|O|1997-06-29|1997-08-28|1997-07-15|TAKE BACK RETURN|FOB|rave instruct| +35912|927327|2364|3|12|16251.36|0.07|0.00|N|O|1997-06-06|1997-07-13|1997-06-22|TAKE BACK RETURN|AIR|gular requests! carefully | +35912|569558|44581|4|1|1627.53|0.01|0.06|N|O|1997-06-22|1997-07-23|1997-07-09|COLLECT COD|REG AIR|fluffily regular h| +35913|80878|5881|1|17|31600.79|0.05|0.02|N|O|1996-01-15|1996-01-09|1996-02-07|COLLECT COD|RAIL|counts. fur| +35913|306072|18579|2|5|5390.30|0.00|0.03|N|O|1996-01-19|1996-01-28|1996-01-24|NONE|TRUCK|ests. slyly pending packag| +35913|138175|38176|3|21|25476.57|0.04|0.02|N|O|1995-12-13|1996-01-30|1995-12-26|COLLECT COD|RAIL|s. quickly ironic foxes across | +35913|300370|25383|4|11|15073.96|0.04|0.06|N|O|1996-01-26|1996-02-24|1996-02-23|COLLECT COD|REG AIR|e of the final theodolites| +35913|313440|38453|5|1|1453.43|0.08|0.02|N|O|1996-03-17|1996-01-03|1996-03-25|COLLECT COD|REG AIR|quests wake furiously abov| +35913|983769|33770|6|28|51876.16|0.04|0.00|N|O|1996-01-12|1996-02-02|1996-02-07|COLLECT COD|AIR|ily final requests. carefully silen| +35914|739021|39022|1|28|29679.72|0.00|0.02|N|O|1996-06-14|1996-08-11|1996-06-26|COLLECT COD|RAIL|ular deposits; furi| +35914|716945|16946|2|11|21581.01|0.06|0.03|N|O|1996-09-26|1996-08-17|1996-10-13|NONE|RAIL|ss, regular | +35914|684682|34683|3|39|64999.35|0.04|0.02|N|O|1996-09-30|1996-07-24|1996-10-11|NONE|SHIP|ven foxes. carefully regular f| +35914|433599|8616|4|36|55172.52|0.03|0.07|N|O|1996-08-23|1996-07-15|1996-09-18|COLLECT COD|SHIP|s. silently final| +35915|479492|42002|1|27|39729.69|0.02|0.01|N|O|1996-12-02|1996-10-01|1996-12-22|DELIVER IN PERSON|REG AIR|ole blithely bo| +35915|819424|6973|2|38|51048.44|0.08|0.00|N|O|1996-12-06|1996-09-28|1996-12-26|TAKE BACK RETURN|FOB|egrate about the ruthless platelets. ca| +35915|45801|33302|3|35|61138.00|0.10|0.07|N|O|1996-09-09|1996-09-29|1996-09-22|TAKE BACK RETURN|MAIL|he special packages. sl| +35915|775384|12930|4|9|13134.15|0.07|0.01|N|O|1996-12-04|1996-09-30|1996-12-05|TAKE BACK RETURN|RAIL|carefully final deposits; quickly iron| +35915|874794|37312|5|38|67212.50|0.08|0.00|N|O|1996-11-11|1996-11-09|1996-11-26|NONE|SHIP|ironic requests wake among the slyly bo| +35915|657221|32248|6|34|40058.46|0.10|0.06|N|O|1996-09-10|1996-10-30|1996-10-02|DELIVER IN PERSON|RAIL|gular requests. quickl| +35916|373944|36452|1|46|92824.78|0.01|0.08|N|O|1995-12-08|1996-01-16|1996-01-03|COLLECT COD|AIR| believe carefully. slyly fin| +35917|117594|5101|1|36|58017.24|0.08|0.01|A|F|1994-07-22|1994-08-13|1994-07-26|NONE|TRUCK|ckly even dolphins. final ex| +35918|131665|6670|1|46|78046.36|0.07|0.07|N|O|1995-09-05|1995-08-08|1995-10-01|NONE|FOB| the regular packages. pending requests s| +35919|82683|32684|1|47|78286.96|0.08|0.04|A|F|1992-10-24|1992-09-22|1992-10-26|NONE|TRUCK|lites nag carefully slyly even | +35919|652881|40421|2|19|34843.15|0.03|0.04|R|F|1992-08-23|1992-10-09|1992-09-18|TAKE BACK RETURN|TRUCK|s dazzle ironic packages. fin| +35919|964003|1561|3|36|38410.56|0.09|0.03|A|F|1992-08-27|1992-10-19|1992-09-23|DELIVER IN PERSON|SHIP|ly regular foxes; | +35919|982024|7063|4|12|13271.76|0.02|0.04|A|F|1992-11-02|1992-11-01|1992-11-30|NONE|TRUCK|arefully close instruction| +35919|869175|19176|5|50|57206.50|0.02|0.04|R|F|1992-10-06|1992-10-29|1992-10-10|NONE|REG AIR|ar deposits are fluffily about the ir| +35919|208973|21478|6|22|41403.12|0.04|0.03|R|F|1992-09-22|1992-09-24|1992-10-09|TAKE BACK RETURN|REG AIR|ly even foxes haggle carefully among the s| +35944|614750|14751|1|49|81571.28|0.01|0.00|N|O|1995-11-30|1995-10-26|1995-12-24|NONE|SHIP|al platelets use| +35944|87520|22|2|41|61808.32|0.10|0.00|N|O|1995-09-18|1995-10-18|1995-10-02|NONE|REG AIR|thely fluffily regula| +35944|932684|32685|3|12|20599.68|0.06|0.02|N|O|1995-10-19|1995-11-14|1995-11-08|COLLECT COD|REG AIR|odolites dazzle always| +35944|615153|15154|4|27|28839.24|0.04|0.02|N|O|1995-10-02|1995-11-03|1995-10-12|NONE|MAIL|final dolphins. carefully dar| +35944|871831|46866|5|32|57689.28|0.10|0.00|N|O|1995-10-05|1995-11-14|1995-10-19|COLLECT COD|FOB|g asymptotes detect f| +35944|858949|46501|6|46|87763.40|0.10|0.01|N|O|1995-11-12|1995-11-19|1995-12-12|DELIVER IN PERSON|FOB|nto beans snooze quickly regul| +35944|355514|18022|7|31|48654.50|0.07|0.06|N|O|1995-11-20|1995-10-15|1995-12-20|NONE|SHIP|ily regular theodolites are. re| +35945|114639|39644|1|45|74413.35|0.07|0.02|A|F|1994-12-13|1994-10-30|1994-12-26|DELIVER IN PERSON|MAIL|tions above the regula| +35945|737002|12031|2|50|51948.50|0.08|0.06|A|F|1994-12-14|1994-11-24|1994-12-16|NONE|AIR| the ideas | +35945|783060|20606|3|12|13716.36|0.05|0.05|A|F|1994-10-28|1994-10-09|1994-11-18|TAKE BACK RETURN|RAIL| theodolites. requests haggle fu| +35945|881339|43857|4|36|47530.44|0.07|0.00|R|F|1994-11-05|1994-10-04|1994-11-24|DELIVER IN PERSON|SHIP|s. regular requests among the| +35945|653413|15927|5|2|2732.76|0.09|0.01|R|F|1994-11-21|1994-11-22|1994-12-04|DELIVER IN PERSON|REG AIR|egular ideas. blithely s| +35945|910349|35386|6|40|54372.00|0.01|0.00|R|F|1994-11-08|1994-10-12|1994-11-11|TAKE BACK RETURN|SHIP| furiously ironic a| +35946|579792|29793|1|22|41178.94|0.08|0.00|R|F|1993-02-23|1993-01-30|1993-02-25|COLLECT COD|REG AIR|. blithely regular dinos boost quickly. | +35946|550725|38259|2|32|56822.40|0.04|0.08|A|F|1993-02-21|1992-12-27|1993-02-23|COLLECT COD|FOB|n excuses. c| +35947|125260|37763|1|45|57836.70|0.01|0.05|R|F|1994-05-30|1994-07-14|1994-06-21|DELIVER IN PERSON|MAIL|ronic packages above the ironic| +35947|234234|21747|2|49|57242.78|0.06|0.01|R|F|1994-09-03|1994-07-27|1994-10-01|TAKE BACK RETURN|SHIP|nal asymptotes boost furiously slyly e| +35947|768674|6220|3|12|20911.68|0.03|0.06|A|F|1994-09-05|1994-07-08|1994-09-07|DELIVER IN PERSON|FOB|ts eat according to the bold| +35947|94677|7179|4|49|81911.83|0.09|0.00|A|F|1994-08-13|1994-06-24|1994-08-31|DELIVER IN PERSON|AIR|sits. even requests according to the quic| +35947|220262|45271|5|7|8275.75|0.01|0.08|R|F|1994-08-13|1994-07-26|1994-08-26|TAKE BACK RETURN|RAIL|carefully unusual instructi| +35948|527800|2821|1|16|29244.48|0.01|0.00|R|F|1993-08-04|1993-09-15|1993-08-05|COLLECT COD|MAIL|gle slyly. | +35949|677881|15421|1|16|29741.60|0.10|0.06|A|F|1992-04-15|1992-06-16|1992-04-25|NONE|FOB|deposits wake furiousl| +35949|138172|25679|2|7|8471.19|0.05|0.01|A|F|1992-07-12|1992-06-26|1992-07-14|TAKE BACK RETURN|REG AIR|pinto beans boost furiously blithely pendi| +35949|240999|16008|3|18|34919.64|0.08|0.03|R|F|1992-06-06|1992-05-30|1992-06-09|DELIVER IN PERSON|AIR|odolites. dolphins cajole. slyly final| +35949|467780|30290|4|5|8738.80|0.03|0.07|R|F|1992-04-20|1992-05-24|1992-05-13|DELIVER IN PERSON|RAIL| attainments.| +35950|692557|30097|1|45|69728.40|0.03|0.01|N|O|1997-10-10|1997-10-03|1997-11-01|NONE|FOB|structions impress | +35951|116308|3815|1|37|48999.10|0.00|0.01|N|O|1996-09-04|1996-11-01|1996-09-16|TAKE BACK RETURN|TRUCK|ar, unusual packages| +35951|781771|31772|2|40|74109.60|0.01|0.00|N|O|1996-09-23|1996-10-01|1996-10-07|TAKE BACK RETURN|TRUCK|l packages. quickl| +35951|215421|2934|3|33|44101.53|0.02|0.06|N|O|1996-11-05|1996-09-25|1996-11-29|DELIVER IN PERSON|SHIP|. fluffily bold foxes wake among the ca| +35976|799152|49153|1|8|10008.96|0.06|0.03|N|O|1997-02-03|1997-01-05|1997-02-27|TAKE BACK RETURN|AIR|run after the qu| +35976|332345|19864|2|30|41319.90|0.03|0.01|N|O|1997-03-09|1997-01-26|1997-04-07|NONE|AIR|lyly silent platelets cajole| +35976|707924|7925|3|17|32842.13|0.00|0.02|N|O|1996-11-28|1996-12-29|1996-12-15|TAKE BACK RETURN|MAIL|sleep enticin| +35976|65353|40356|4|36|47460.60|0.05|0.02|N|O|1997-01-21|1997-01-09|1997-02-02|NONE|FOB|equests haggle carefully carefully | +35976|385361|35362|5|48|69424.80|0.10|0.08|N|O|1996-12-13|1997-02-22|1997-01-12|COLLECT COD|AIR|odolites sleep final accounts. regul| +35976|752891|2892|6|44|85529.84|0.09|0.03|N|O|1997-03-04|1997-01-13|1997-03-09|DELIVER IN PERSON|REG AIR|boost blithely furiously re| +35976|835888|10921|7|1|1823.84|0.05|0.05|N|O|1997-01-19|1997-02-01|1997-01-28|TAKE BACK RETURN|RAIL| regular in| +35977|754389|16905|1|31|44743.85|0.00|0.08|R|F|1995-02-18|1995-02-16|1995-03-18|TAKE BACK RETURN|RAIL|yly. carefu| +35977|999942|12462|2|7|14293.30|0.02|0.05|A|F|1995-03-16|1994-12-26|1995-03-31|TAKE BACK RETURN|RAIL|tions sleep furiously! regul| +35977|20765|20766|3|5|8428.80|0.00|0.00|R|F|1995-01-10|1995-02-12|1995-01-29|DELIVER IN PERSON|REG AIR|nding packages: furiously | +35978|826607|1640|1|19|29137.64|0.04|0.04|N|O|1996-08-24|1996-07-08|1996-09-08|NONE|REG AIR|ges; furiously ironic requests| +35978|777620|40136|2|13|22068.67|0.08|0.06|N|O|1996-06-13|1996-06-26|1996-07-07|NONE|TRUCK|ng the silent instructions | +35979|615895|15896|1|44|79677.84|0.10|0.07|N|O|1997-05-24|1997-04-29|1997-05-25|COLLECT COD|FOB|ously. regular, ir| +35979|337531|38|2|50|78426.00|0.06|0.06|N|O|1997-06-27|1997-04-27|1997-07-01|DELIVER IN PERSON|RAIL|gular deposits nag carefully among | +35979|880224|17776|3|8|9633.44|0.10|0.01|N|O|1997-04-29|1997-05-15|1997-05-05|TAKE BACK RETURN|AIR|against the blithely even c| +35979|911810|24329|4|47|85623.19|0.05|0.04|N|O|1997-03-25|1997-05-24|1997-04-14|NONE|RAIL| carefully platelets. never r| +35979|789065|26611|5|10|11540.30|0.06|0.01|N|O|1997-07-09|1997-06-07|1997-07-14|NONE|FOB| regular packages-- ironic foxes | +35979|802942|15459|6|32|59036.80|0.00|0.08|N|O|1997-04-01|1997-06-22|1997-04-07|NONE|REG AIR|carefully bold req| +35980|699242|11756|1|23|28547.83|0.07|0.00|A|F|1994-01-18|1993-11-19|1994-02-08|TAKE BACK RETURN|RAIL|nts. careful| +35980|154876|42386|2|13|25101.31|0.08|0.00|A|F|1993-11-17|1993-12-07|1993-12-06|TAKE BACK RETURN|MAIL| even requests. unusual, p| +35980|998230|10750|3|40|53127.60|0.08|0.08|A|F|1994-01-06|1993-11-22|1994-01-25|DELIVER IN PERSON|REG AIR|its sleep qu| +35980|242446|4951|4|15|20826.45|0.10|0.04|R|F|1993-10-29|1993-12-11|1993-11-05|TAKE BACK RETURN|FOB| pinto bean| +35980|785780|48296|5|48|89556.00|0.08|0.02|R|F|1993-12-20|1993-10-30|1993-12-23|NONE|RAIL|iously. slyly final pinto beans nag sl| +35981|352869|27884|1|36|69186.60|0.08|0.01|A|F|1995-03-23|1995-03-10|1995-03-27|TAKE BACK RETURN|SHIP|requests cajole across the carefull| +35981|659438|34465|2|15|20961.00|0.01|0.06|A|F|1995-03-22|1995-03-08|1995-04-11|DELIVER IN PERSON|TRUCK|ietly special deposits. furiously furious| +35981|160471|35478|3|11|16846.17|0.09|0.07|A|F|1995-02-26|1995-02-21|1995-03-11|TAKE BACK RETURN|RAIL|ly. slyly silent | +35981|32824|20325|4|43|75543.26|0.01|0.02|A|F|1995-02-08|1995-03-02|1995-02-09|COLLECT COD|AIR|riously even in| +35981|657690|20204|5|20|32953.20|0.03|0.04|R|F|1995-01-08|1995-03-01|1995-01-29|COLLECT COD|SHIP|fully even deposits.| +35982|240045|40046|1|28|27580.84|0.09|0.02|A|F|1994-04-08|1994-03-23|1994-05-03|TAKE BACK RETURN|RAIL|ly ironic deposits wake slyly. | +35982|434601|34602|2|37|56816.46|0.05|0.05|A|F|1994-04-30|1994-03-13|1994-05-26|TAKE BACK RETURN|FOB|ross the courts. blithely even | +35983|494634|32162|1|39|63515.79|0.01|0.01|N|F|1995-06-03|1995-04-01|1995-06-23|COLLECT COD|SHIP|ajole furiously across| +35983|308189|33202|2|31|37112.27|0.02|0.03|N|F|1995-05-23|1995-04-13|1995-06-19|DELIVER IN PERSON|SHIP|uickly even packages.| +35983|730655|5684|3|17|28655.54|0.04|0.02|R|F|1995-05-20|1995-04-09|1995-05-24|TAKE BACK RETURN|TRUCK|ckly even deposits cajole slyly. | +35983|117927|30430|4|19|36953.48|0.00|0.04|R|F|1995-04-13|1995-04-13|1995-04-20|COLLECT COD|SHIP|gular packages are carefully above the exp| +35983|995927|33485|5|11|22251.68|0.02|0.00|A|F|1995-03-30|1995-05-16|1995-04-09|COLLECT COD|FOB|slyly! carefully speci| +36008|444073|6582|1|50|50852.50|0.00|0.08|R|F|1992-04-17|1992-04-14|1992-05-01|TAKE BACK RETURN|RAIL|thely special packages boost quickly. car| +36008|528959|16490|2|22|43734.46|0.00|0.07|A|F|1992-03-04|1992-03-23|1992-03-09|DELIVER IN PERSON|RAIL|n theodolites. slyl| +36008|204925|42438|3|23|42087.93|0.01|0.08|R|F|1992-03-17|1992-04-29|1992-04-07|DELIVER IN PERSON|RAIL|platelets affix| +36008|173393|35897|4|38|55722.82|0.04|0.01|A|F|1992-02-16|1992-04-17|1992-02-23|TAKE BACK RETURN|RAIL|lithely busy deposits. bli| +36009|765790|28306|1|6|11134.56|0.01|0.01|N|O|1996-07-04|1996-05-25|1996-07-19|TAKE BACK RETURN|FOB|y close requests nag ac| +36009|619085|19086|2|39|39157.95|0.06|0.00|N|O|1996-06-09|1996-06-19|1996-06-12|TAKE BACK RETURN|TRUCK|ts along the furiou| +36009|945038|7557|3|35|37904.65|0.01|0.01|N|O|1996-06-24|1996-07-12|1996-07-24|DELIVER IN PERSON|REG AIR|ly special foxes: quickly pendin| +36009|245427|7932|4|30|41172.30|0.05|0.00|N|O|1996-07-31|1996-06-29|1996-08-13|TAKE BACK RETURN|SHIP|sleep slyly. blithely pen| +36009|882323|32324|5|41|53516.48|0.01|0.06|N|O|1996-07-10|1996-05-24|1996-07-13|TAKE BACK RETURN|RAIL|ld requests are slyly| +36010|95410|45411|1|5|7027.05|0.03|0.04|N|O|1997-01-10|1997-01-14|1997-02-02|COLLECT COD|AIR|ly according to the slyly silent multiplier| +36011|737046|37047|1|23|24909.23|0.06|0.04|A|F|1992-08-10|1992-05-25|1992-08-11|DELIVER IN PERSON|TRUCK|y pinto beans mol| +36011|515710|3241|2|8|13805.52|0.02|0.03|R|F|1992-04-23|1992-05-18|1992-05-16|DELIVER IN PERSON|SHIP|beans. slyly busy deposits sleep ironic,| +36011|528300|3321|3|10|13282.80|0.10|0.05|R|F|1992-07-30|1992-07-11|1992-08-05|COLLECT COD|MAIL|ter the pack| +36011|134440|21947|4|21|30963.24|0.08|0.08|R|F|1992-07-18|1992-06-09|1992-08-16|COLLECT COD|TRUCK| wake. slyly bold pinto b| +36011|525148|37659|5|3|3519.36|0.05|0.03|R|F|1992-06-03|1992-05-21|1992-06-22|DELIVER IN PERSON|REG AIR| accounts. furi| +36012|538383|894|1|49|69646.64|0.10|0.07|N|O|1995-10-09|1995-09-22|1995-11-08|COLLECT COD|MAIL|d accounts cajole qui| +36013|633217|8242|1|36|41406.48|0.03|0.08|N|O|1996-04-12|1996-04-23|1996-04-24|COLLECT COD|AIR|y carefully even foxes. ironic depo| +36013|472715|35225|2|9|15189.21|0.01|0.01|N|O|1996-06-04|1996-05-19|1996-06-14|DELIVER IN PERSON|SHIP|refully enticing r| +36013|918875|18876|3|47|89010.01|0.06|0.03|N|O|1996-04-20|1996-04-26|1996-04-30|TAKE BACK RETURN|REG AIR|he thinly expr| +36013|527554|15085|4|49|77494.97|0.04|0.02|N|O|1996-04-02|1996-04-23|1996-04-13|TAKE BACK RETURN|FOB|gular packages behind the carefu| +36013|588770|26304|5|27|50186.25|0.04|0.01|N|O|1996-05-31|1996-04-16|1996-06-03|COLLECT COD|REG AIR|ous instructions after the carefully fi| +36014|844628|7145|1|40|62903.20|0.00|0.04|R|F|1994-05-25|1994-06-26|1994-06-23|COLLECT COD|REG AIR|ake. furiously ironic deposits caj| +36014|656811|44351|2|8|14142.24|0.03|0.05|R|F|1994-04-30|1994-07-06|1994-05-18|NONE|AIR|to beans cajole always final accoun| +36014|12494|49995|3|7|9845.43|0.07|0.04|A|F|1994-07-06|1994-07-11|1994-07-07|TAKE BACK RETURN|MAIL|riously even requests wake fluffily among | +36014|972167|9725|4|21|26021.52|0.08|0.00|A|F|1994-07-27|1994-07-02|1994-08-13|COLLECT COD|MAIL|lets use along the enticin| +36015|453989|41517|1|18|34973.28|0.02|0.01|N|O|1997-10-26|1997-12-24|1997-11-08|COLLECT COD|TRUCK|ly. sometimes| +36015|188792|1296|2|48|90277.92|0.09|0.02|N|O|1997-12-31|1998-01-02|1998-01-08|DELIVER IN PERSON|REG AIR|pecial, regular packages. quickly re| +36015|22897|47898|3|33|60056.37|0.10|0.04|N|O|1997-12-11|1997-11-28|1998-01-05|NONE|AIR|refully special platele| +36040|637685|37686|1|50|81132.50|0.05|0.03|A|F|1993-01-14|1992-12-27|1993-01-18|NONE|RAIL|d instructions x-ray around the| +36040|556468|44002|2|12|18293.28|0.01|0.00|A|F|1992-11-29|1993-02-16|1992-12-08|COLLECT COD|TRUCK|ccounts cajole furiously alongside of the | +36041|261714|36725|1|31|51946.70|0.10|0.07|N|O|1995-08-11|1995-08-31|1995-08-21|NONE|REG AIR|ost according | +36041|623519|36032|2|30|43274.40|0.02|0.02|N|O|1995-09-25|1995-07-10|1995-10-12|DELIVER IN PERSON|REG AIR| furiously regula| +36041|468908|6436|3|32|60060.16|0.07|0.02|N|O|1995-08-23|1995-07-24|1995-09-15|DELIVER IN PERSON|RAIL|onic accounts haggle furiously car| +36042|530463|30464|1|3|4480.32|0.03|0.02|R|F|1994-02-01|1993-12-28|1994-02-04|DELIVER IN PERSON|SHIP|ess ideas. regular courts wake furiou| +36042|488841|38842|2|42|76852.44|0.08|0.02|R|F|1993-11-30|1994-01-07|1993-12-28|DELIVER IN PERSON|AIR| furiously against the regu| +36042|940995|40996|3|16|32575.20|0.07|0.05|R|F|1993-12-25|1994-02-16|1994-01-07|TAKE BACK RETURN|MAIL|lar theodolites nod. carefully r| +36042|289078|39079|4|10|10670.60|0.04|0.01|A|F|1994-03-13|1994-01-29|1994-03-28|DELIVER IN PERSON|MAIL|ts affix furiously blithely spec| +36042|530951|18482|5|14|27747.02|0.08|0.08|A|F|1994-01-24|1993-12-26|1994-02-18|COLLECT COD|RAIL|s requests sleep quickly furiously thin as| +36042|689929|2443|6|35|67161.15|0.03|0.06|R|F|1994-03-05|1994-01-24|1994-03-07|NONE|MAIL|. regular, regular requests haggle furio| +36043|238495|26008|1|12|17201.76|0.04|0.07|A|F|1993-03-10|1993-04-22|1993-03-18|DELIVER IN PERSON|FOB|the furiously ironic packages. carefully| +36043|372541|35049|2|27|43565.31|0.02|0.02|R|F|1993-04-23|1993-04-25|1993-04-24|TAKE BACK RETURN|MAIL|furiously after| +36043|289901|39902|3|17|32145.13|0.05|0.06|R|F|1993-03-06|1993-05-06|1993-04-02|TAKE BACK RETURN|REG AIR|ts boost qui| +36044|417212|42229|1|50|56459.50|0.06|0.08|A|F|1993-04-21|1993-02-08|1993-05-01|TAKE BACK RETURN|TRUCK|eas. carefully f| +36044|77347|27348|2|21|27811.14|0.10|0.05|R|F|1993-04-28|1993-03-13|1993-05-05|TAKE BACK RETURN|AIR|nal accounts thrash blithely after the slyl| +36045|209709|47222|1|38|61510.22|0.02|0.07|A|F|1995-02-02|1995-03-09|1995-02-17|DELIVER IN PERSON|REG AIR| sleep carefully unusu| +36045|573488|48511|2|4|6245.84|0.07|0.04|R|F|1995-04-12|1995-01-26|1995-04-17|COLLECT COD|TRUCK|uffily bold deposits cajole about the p| +36046|111294|11295|1|35|45685.15|0.02|0.02|N|O|1996-08-05|1996-08-24|1996-08-29|DELIVER IN PERSON|AIR|counts boost slyly. daringly| +36046|510197|47728|2|12|14486.04|0.06|0.07|N|O|1996-08-05|1996-07-19|1996-08-25|DELIVER IN PERSON|SHIP|t the carefull| +36046|877072|39590|3|23|24127.69|0.08|0.00|N|O|1996-06-18|1996-08-04|1996-07-02|DELIVER IN PERSON|MAIL|ges nag along the carefully regula| +36047|25548|38049|1|6|8841.24|0.09|0.01|N|O|1996-02-20|1995-12-10|1996-02-23|COLLECT COD|TRUCK|ep furiously along the furio| +36047|379216|4231|2|10|12952.00|0.04|0.03|N|O|1996-01-16|1996-01-03|1996-02-08|COLLECT COD|REG AIR| carefully fina| +36047|480803|30804|3|21|37459.38|0.06|0.06|N|O|1996-01-05|1995-12-16|1996-01-22|DELIVER IN PERSON|RAIL|y above the pinto beans. blithely sile| +36047|843148|30697|4|32|34915.20|0.07|0.05|N|O|1996-02-24|1996-01-08|1996-03-22|NONE|RAIL|rns nag blithely quickly | +36072|506756|6757|1|47|82848.31|0.08|0.06|N|O|1998-02-03|1997-12-20|1998-02-14|NONE|SHIP|en, bold pearls. de| +36072|39202|14203|2|1|1141.20|0.01|0.07|N|O|1997-11-28|1997-12-03|1997-12-15|NONE|TRUCK|osits above | +36072|852801|40353|3|23|40336.48|0.00|0.06|N|O|1998-01-08|1998-01-05|1998-02-07|NONE|SHIP|gular packages. carefully unusua| +36072|11086|11087|4|38|37889.04|0.10|0.02|N|O|1997-10-23|1998-01-05|1997-11-21|NONE|MAIL| the packages. accounts cajole fluffi| +36072|318124|30631|5|31|35405.41|0.07|0.03|N|O|1998-01-17|1997-12-26|1998-01-18|TAKE BACK RETURN|SHIP| asymptotes sleep. slyly regular req| +36072|697306|34846|6|45|58647.15|0.06|0.00|N|O|1997-12-24|1997-12-10|1998-01-13|TAKE BACK RETURN|MAIL|. slyly final theodolites haggle along | +36073|643680|43681|1|24|38967.60|0.03|0.01|N|O|1996-04-25|1996-03-22|1996-05-11|COLLECT COD|SHIP|. silent, final theodolites alongside of th| +36073|328462|28463|2|22|32789.90|0.02|0.02|N|O|1996-04-03|1996-03-14|1996-04-06|NONE|RAIL|ts. blithely ironic instructions boos| +36073|454075|4076|3|8|8232.40|0.04|0.03|N|O|1996-02-12|1996-02-18|1996-03-09|NONE|REG AIR|t, ironic theodolites grow alongside of | +36073|632992|32993|4|9|17324.64|0.05|0.02|N|O|1996-04-22|1996-03-08|1996-05-01|NONE|TRUCK|ual foxes. final, f| +36074|717174|4717|1|35|41689.90|0.04|0.02|N|O|1997-12-31|1998-02-19|1998-01-10|NONE|FOB|osits cajole slyly among t| +36074|526732|1753|2|47|82659.37|0.07|0.01|N|O|1997-12-08|1998-01-14|1997-12-21|COLLECT COD|AIR|posits. pl| +36074|780715|30716|3|9|16161.12|0.04|0.04|N|O|1997-12-19|1998-01-31|1998-01-18|TAKE BACK RETURN|REG AIR|yly final theodolites. requests are| +36074|462672|200|4|37|60482.05|0.02|0.00|N|O|1998-02-06|1998-01-27|1998-02-24|NONE|FOB|equests cajole slyly. fluffily| +36074|115838|28341|5|10|18538.30|0.02|0.05|N|O|1998-03-19|1998-01-26|1998-04-01|DELIVER IN PERSON|TRUCK|wake furiously after the furiously ex| +36074|875526|13078|6|1|1501.48|0.07|0.08|N|O|1998-02-23|1998-02-12|1998-03-21|TAKE BACK RETURN|SHIP|furiously regular | +36074|952612|15132|7|40|66582.80|0.08|0.06|N|O|1998-02-01|1998-02-02|1998-02-23|TAKE BACK RETURN|REG AIR|ual instru| +36075|539014|1525|1|22|23165.78|0.03|0.06|N|O|1995-11-02|1995-09-07|1995-11-05|DELIVER IN PERSON|FOB|nal excuses. furiously unusual | +36076|693717|31257|1|26|44477.68|0.06|0.06|R|F|1992-08-15|1992-07-22|1992-08-30|COLLECT COD|AIR| deposits. furiou| +36076|285668|35669|2|15|24804.75|0.03|0.01|A|F|1992-07-19|1992-07-16|1992-08-11|NONE|TRUCK|ly above the blithely bold foxes. c| +36076|217330|17331|3|46|57376.72|0.06|0.05|R|F|1992-08-10|1992-08-07|1992-08-22|DELIVER IN PERSON|SHIP|as boost. carefully regul| +36076|657453|7454|4|4|5641.68|0.07|0.00|R|F|1992-07-04|1992-07-23|1992-07-16|COLLECT COD|REG AIR|y bold theodolites.| +36077|857257|7258|1|3|3642.63|0.08|0.05|R|F|1995-02-24|1995-03-13|1995-03-25|DELIVER IN PERSON|MAIL|dolites. slyly final requ| +36077|908188|33225|2|33|39472.62|0.01|0.00|R|F|1995-02-11|1995-04-12|1995-03-13|TAKE BACK RETURN|MAIL| requests wake. accounts sleep. slyly fina| +36078|904109|16628|1|11|12243.66|0.06|0.00|R|F|1992-11-05|1992-12-01|1992-11-08|COLLECT COD|MAIL|quickly bold deposits| +36078|355067|42589|2|41|46004.05|0.08|0.02|R|F|1992-11-22|1992-10-30|1992-12-01|TAKE BACK RETURN|REG AIR|refully express deposits. blithe| +36078|607375|7376|3|6|7694.04|0.03|0.06|A|F|1993-01-02|1992-11-29|1993-01-27|TAKE BACK RETURN|TRUCK|ing to the| +36078|139095|1598|4|14|15877.26|0.10|0.02|A|F|1992-12-26|1992-11-22|1993-01-09|NONE|REG AIR|lyly blithely i| +36079|346925|46926|1|26|51269.66|0.08|0.04|N|O|1998-09-12|1998-10-22|1998-10-02|DELIVER IN PERSON|AIR|finally bold requests. | +36104|831075|6108|1|37|37223.11|0.03|0.07|N|O|1997-10-09|1997-12-16|1997-10-15|COLLECT COD|TRUCK|ily blithe requests haggl| +36104|872689|22690|2|41|68127.24|0.06|0.03|N|O|1998-01-15|1997-11-24|1998-01-26|DELIVER IN PERSON|SHIP|e furiously ironic requests. theodolite| +36104|281461|6472|3|35|50485.75|0.06|0.05|N|O|1997-11-20|1997-12-09|1997-12-09|NONE|TRUCK|s. special, regular deposits along | +36105|59496|47000|1|22|32020.78|0.04|0.01|N|O|1996-07-30|1996-06-25|1996-08-14|TAKE BACK RETURN|RAIL|e blithely special accounts. specia| +36106|766988|16989|1|31|63703.45|0.07|0.03|N|O|1998-10-10|1998-08-29|1998-10-24|COLLECT COD|AIR|ideas. furiously pending deposit| +36107|638398|38399|1|21|28063.56|0.07|0.06|A|F|1993-06-28|1993-06-06|1993-07-08|COLLECT COD|TRUCK|ke. silent pinto beans haggle car| +36107|548853|23874|2|34|64662.22|0.03|0.02|R|F|1993-05-15|1993-06-21|1993-05-26|COLLECT COD|SHIP|old ideas are reques| +36107|560529|23041|3|28|44506.00|0.01|0.01|R|F|1993-05-29|1993-08-05|1993-06-03|DELIVER IN PERSON|MAIL|r instructions cajole carefully theodo| +36107|808664|46213|4|6|9435.72|0.08|0.03|R|F|1993-05-08|1993-07-07|1993-06-05|TAKE BACK RETURN|REG AIR|express accounts| +36107|204650|29659|5|18|27983.52|0.09|0.07|R|F|1993-08-23|1993-07-04|1993-08-24|COLLECT COD|AIR|sly bold e| +36107|537599|25130|6|21|34367.97|0.09|0.04|A|F|1993-06-15|1993-06-22|1993-07-06|NONE|AIR|ions across the un| +36108|962363|37402|1|5|7126.60|0.03|0.04|N|O|1996-08-27|1996-08-18|1996-09-01|COLLECT COD|AIR|ifts. unusual accounts | +36108|423500|48517|2|49|69750.52|0.07|0.02|N|O|1996-07-24|1996-07-20|1996-07-26|COLLECT COD|MAIL|yly beyond the even packages.| +36108|748053|48054|3|25|27525.50|0.09|0.07|N|O|1996-09-01|1996-09-01|1996-09-13|NONE|AIR|tegrate always. deposits use| +36108|524247|24248|4|37|47035.14|0.01|0.06|N|O|1996-07-07|1996-08-05|1996-08-01|DELIVER IN PERSON|RAIL| carefully | +36108|7516|45017|5|2|2847.02|0.07|0.03|N|O|1996-07-10|1996-07-28|1996-07-27|COLLECT COD|RAIL|ending, ironic| +36108|307684|20191|6|44|74433.48|0.07|0.03|N|O|1996-07-01|1996-08-01|1996-07-11|TAKE BACK RETURN|AIR|ckly against the deposits. | +36108|242254|4759|7|33|39475.92|0.07|0.07|N|O|1996-08-14|1996-07-31|1996-09-06|TAKE BACK RETURN|FOB|dolites haggle alongside of the acc| +36109|548285|10796|1|24|31998.24|0.08|0.04|A|F|1994-07-14|1994-05-20|1994-07-17|NONE|REG AIR|blithely: bold, final deposits cajo| +36109|19528|44529|2|27|39083.04|0.10|0.02|R|F|1994-07-17|1994-07-04|1994-07-27|COLLECT COD|REG AIR|ests are ironically| +36109|195743|45744|3|45|82743.30|0.06|0.05|A|F|1994-07-14|1994-06-16|1994-07-20|DELIVER IN PERSON|TRUCK|e among the bold, stealthy reque| +36110|84586|47088|1|40|62823.20|0.02|0.02|A|F|1992-10-05|1992-12-02|1992-10-07|TAKE BACK RETURN|RAIL|ckly ironic foxes after the unusual, final | +36110|633555|33556|2|10|14885.20|0.03|0.02|R|F|1992-11-12|1992-11-21|1992-11-29|DELIVER IN PERSON|REG AIR|ut the slyly | +36110|144634|44635|3|29|48680.27|0.02|0.07|A|F|1992-10-27|1992-12-20|1992-11-16|DELIVER IN PERSON|REG AIR|uffily eve| +36110|853161|28196|4|27|30081.24|0.01|0.03|A|F|1992-10-11|1992-11-16|1992-10-12|NONE|REG AIR| regular accounts kindle. pack| +36110|61050|48554|5|21|21232.05|0.09|0.08|A|F|1992-11-06|1992-12-29|1992-11-21|COLLECT COD|FOB|ely express accounts n| +36111|712738|12739|1|13|22759.10|0.03|0.04|N|O|1997-11-11|1997-12-01|1997-11-14|DELIVER IN PERSON|FOB|ourts could haggle slyly above the furio| +36111|971846|21847|2|45|86301.00|0.02|0.00|N|O|1997-10-28|1997-11-27|1997-11-16|NONE|RAIL|ckly ironic realms. accounts thrash. s| +36111|815555|40588|3|3|4411.53|0.03|0.01|N|O|1997-11-28|1997-12-22|1997-12-20|TAKE BACK RETURN|REG AIR|ly ironic accounts after the f| +36111|24435|49436|4|34|46220.62|0.01|0.04|N|O|1997-11-22|1997-11-24|1997-12-09|COLLECT COD|SHIP|odolites subl| +36136|161869|24373|1|30|57925.80|0.00|0.04|A|F|1993-09-30|1993-08-30|1993-10-15|TAKE BACK RETURN|MAIL|nding pinto beans haggle acco| +36136|519359|31870|2|25|34458.25|0.07|0.07|R|F|1993-10-10|1993-09-12|1993-10-18|NONE|REG AIR|foxes boost accor| +36136|851480|1481|3|44|62983.36|0.00|0.08|R|F|1993-07-11|1993-08-27|1993-08-10|COLLECT COD|AIR|ggle carefully ironic instructions. furio| +36136|817311|29828|4|50|61413.50|0.04|0.08|R|F|1993-08-18|1993-08-24|1993-08-22|COLLECT COD|REG AIR|ly according to the blithely ironic| +36136|536179|36180|5|24|29163.60|0.08|0.00|A|F|1993-09-17|1993-09-01|1993-09-26|TAKE BACK RETURN|AIR|ly express frays ar| +36136|548390|48391|6|50|71918.50|0.04|0.06|R|F|1993-07-03|1993-08-03|1993-07-18|TAKE BACK RETURN|SHIP|ts sleep idly alongside of the quickl| +36137|827611|27612|1|39|60004.23|0.04|0.06|N|F|1995-06-04|1995-05-18|1995-06-20|NONE|TRUCK|slyly special requests. furiously| +36137|655608|30635|2|16|25017.12|0.00|0.06|R|F|1995-04-10|1995-05-17|1995-04-24|NONE|TRUCK|sly furiously express instructions. deposi| +36137|789797|27343|3|24|45282.24|0.10|0.03|R|F|1995-04-22|1995-06-27|1995-05-22|NONE|REG AIR|structions use carefully unusual courts. bl| +36137|113703|38708|4|13|22317.10|0.09|0.02|N|O|1995-06-22|1995-05-21|1995-07-20|TAKE BACK RETURN|RAIL|gifts promise quickly | +36138|871171|8723|1|18|20558.34|0.01|0.01|N|O|1996-09-01|1996-08-16|1996-09-08|TAKE BACK RETURN|AIR|ar packages are. blithely ironic| +36139|322489|10008|1|14|21160.58|0.08|0.01|N|O|1997-09-16|1997-10-16|1997-10-14|NONE|MAIL| quiet requests nag car| +36139|57778|7779|2|43|74638.11|0.02|0.03|N|O|1997-10-30|1997-10-20|1997-11-08|TAKE BACK RETURN|RAIL|ular dolphins. carefull| +36139|68968|43971|3|44|85226.24|0.00|0.05|N|O|1997-08-19|1997-11-01|1997-08-21|DELIVER IN PERSON|MAIL|dolites? blithely slow ideas wake slyly| +36139|131276|18783|4|41|53598.07|0.08|0.01|N|O|1997-11-15|1997-10-12|1997-11-23|NONE|MAIL| sleep slyly re| +36139|340047|15060|5|11|11957.33|0.01|0.06|N|O|1997-10-01|1997-11-03|1997-10-21|COLLECT COD|REG AIR|efully regular foxes. quickly regular theo| +36139|153958|3959|6|33|66394.35|0.02|0.07|N|O|1997-12-15|1997-11-12|1997-12-21|NONE|AIR| the unusual d| +36140|401030|13539|1|16|14896.16|0.00|0.07|R|F|1995-01-16|1994-10-28|1995-01-25|NONE|FOB|n, unusual frays haggle. pending accounts | +36140|99370|24373|2|37|50666.69|0.07|0.07|R|F|1995-01-14|1994-11-17|1995-01-23|DELIVER IN PERSON|TRUCK|nusual packages boost into the f| +36140|95531|8033|3|14|21371.42|0.07|0.07|R|F|1994-11-03|1994-12-04|1994-11-27|COLLECT COD|TRUCK|the regular deposits. pending f| +36140|577275|14809|4|42|56794.50|0.01|0.01|R|F|1994-09-25|1994-12-19|1994-10-14|DELIVER IN PERSON|TRUCK|r deposits integrat| +36140|250083|25094|5|32|33058.24|0.06|0.01|R|F|1994-12-07|1994-12-03|1994-12-17|NONE|MAIL|. express somas detect carefully. fluffily| +36141|793867|18898|1|5|9804.15|0.06|0.00|N|O|1995-12-24|1995-12-07|1996-01-05|NONE|TRUCK| detect. slyly even| +36142|827164|2197|1|48|52373.76|0.05|0.05|N|O|1997-12-18|1998-01-27|1998-01-17|NONE|AIR|es use caref| +36142|141487|28994|2|25|38212.00|0.00|0.00|N|O|1998-01-23|1998-01-13|1998-02-04|DELIVER IN PERSON|RAIL|y close ideas boos| +36142|964788|2346|3|2|3705.48|0.04|0.04|N|O|1998-04-01|1998-01-18|1998-04-17|TAKE BACK RETURN|TRUCK|accounts. special t| +36142|177048|2055|4|18|20250.72|0.09|0.04|N|O|1997-12-09|1998-01-13|1997-12-21|DELIVER IN PERSON|FOB|ests. slyly regular | +36142|633850|33851|5|2|3567.64|0.02|0.06|N|O|1998-03-13|1998-01-10|1998-03-20|COLLECT COD|RAIL|ely. deposit| +36143|194009|19016|1|5|5515.00|0.01|0.08|N|O|1997-11-30|1998-01-12|1997-12-15|TAKE BACK RETURN|FOB|tructions enga| +36143|706893|44436|2|44|83593.84|0.05|0.00|N|O|1998-02-21|1998-02-07|1998-03-23|NONE|FOB|ly at the e| +36143|744283|19312|3|20|26545.00|0.00|0.02|N|O|1998-01-02|1997-12-19|1998-01-06|COLLECT COD|MAIL|s. blithely b| +36168|535455|35456|1|36|53655.48|0.06|0.02|R|F|1994-04-01|1994-04-20|1994-04-29|DELIVER IN PERSON|RAIL| final req| +36168|381587|31588|2|35|58399.95|0.10|0.00|A|F|1994-05-18|1994-05-23|1994-06-03|DELIVER IN PERSON|AIR|ironic platelets. blithely i| +36169|864495|39530|1|44|64215.80|0.10|0.00|N|O|1997-06-10|1997-06-27|1997-06-18|TAKE BACK RETURN|REG AIR| even foxes cajole regularly final instru| +36169|557914|45448|2|32|63100.48|0.08|0.08|N|O|1997-07-24|1997-05-27|1997-08-05|TAKE BACK RETURN|MAIL|g blithely. blithely final pla| +36169|853794|41346|3|7|12234.25|0.07|0.08|N|O|1997-06-21|1997-07-09|1997-07-12|TAKE BACK RETURN|SHIP|bove the ironic courts w| +36170|236407|11416|1|45|60452.55|0.03|0.01|N|O|1998-07-23|1998-08-26|1998-08-07|DELIVER IN PERSON|REG AIR|y regular requests a| +36170|281105|18621|2|16|17377.44|0.04|0.08|N|O|1998-10-03|1998-09-15|1998-10-13|NONE|MAIL|iously. fluffily spec| +36171|401528|39053|1|21|30019.50|0.00|0.04|N|O|1997-12-31|1997-12-14|1998-01-26|TAKE BACK RETURN|MAIL|aggle quietly a| +36171|476277|1296|2|23|28824.75|0.01|0.08|N|O|1997-11-17|1997-12-21|1997-12-17|NONE|AIR|g the deposits. deposits| +36172|716564|41593|1|38|60060.14|0.00|0.03|R|F|1994-10-27|1994-08-27|1994-11-08|DELIVER IN PERSON|RAIL| sleep. quick| +36173|878235|28236|1|5|6065.95|0.05|0.04|A|F|1994-09-16|1994-10-21|1994-10-10|DELIVER IN PERSON|FOB| blithely. slyly regular| +36173|481787|19315|2|24|42450.24|0.07|0.05|R|F|1994-08-13|1994-09-18|1994-08-31|NONE|TRUCK|final pinto beans amon| +36173|388523|26045|3|18|29007.18|0.10|0.03|R|F|1994-11-16|1994-09-09|1994-11-17|COLLECT COD|FOB| thin deposits. ironic courts are. blithe| +36174|801854|26887|1|22|38627.82|0.06|0.06|A|F|1995-05-09|1995-05-05|1995-05-19|COLLECT COD|RAIL|nic ideas sleep. slyl| +36174|758932|21448|2|25|49772.50|0.07|0.01|A|F|1995-03-30|1995-06-02|1995-04-27|DELIVER IN PERSON|RAIL|thily even theod| +36174|360105|47627|3|38|44273.42|0.03|0.07|N|O|1995-07-06|1995-05-25|1995-08-02|COLLECT COD|TRUCK|en requests cajole. pending foxes after t| +36174|281365|31366|4|5|6731.75|0.01|0.03|N|F|1995-06-15|1995-05-23|1995-06-18|TAKE BACK RETURN|REG AIR|s packages. pending, bold deposits | +36174|887434|37435|5|25|35534.75|0.10|0.05|A|F|1995-05-04|1995-04-21|1995-06-03|COLLECT COD|FOB|ly ironic requests| +36174|96236|8738|6|26|32037.98|0.03|0.03|R|F|1995-05-09|1995-05-06|1995-05-10|NONE|RAIL|ly unusual instru| +36175|773238|10784|1|18|23601.60|0.07|0.00|N|O|1995-06-22|1995-08-29|1995-07-19|COLLECT COD|TRUCK|iously ironic dependencies| +36175|797196|34742|2|10|12931.60|0.06|0.06|N|O|1995-09-16|1995-08-26|1995-09-28|NONE|TRUCK|ect. even courts after the furiously ironi| +36175|469866|44885|3|43|78941.12|0.08|0.08|N|O|1995-06-19|1995-07-29|1995-07-12|NONE|RAIL| to integrate accordi| +36175|33164|33165|4|13|14263.08|0.05|0.01|N|O|1995-08-24|1995-07-25|1995-08-28|TAKE BACK RETURN|FOB|regular dolphins are p| +36175|386960|36961|5|2|4093.90|0.02|0.05|N|O|1995-08-21|1995-08-02|1995-09-05|DELIVER IN PERSON|TRUCK|ely around the furiously bold| +36175|624472|36985|6|11|15360.84|0.05|0.06|N|O|1995-08-23|1995-07-12|1995-08-29|NONE|MAIL|olites. bold frets after the u| +36175|490730|15749|7|30|51621.30|0.03|0.01|N|O|1995-07-24|1995-09-09|1995-08-06|TAKE BACK RETURN|SHIP|nts believe | +36200|693170|5684|1|29|33731.06|0.00|0.03|N|O|1998-03-24|1998-02-23|1998-04-19|NONE|SHIP|oxes. blithely unusual accoun| +36200|92447|4949|2|19|27349.36|0.00|0.03|N|O|1998-01-17|1998-04-05|1998-01-24|NONE|SHIP| regular dependencies. furiously | +36200|749101|24130|3|15|17251.05|0.06|0.05|N|O|1998-05-08|1998-03-14|1998-05-21|COLLECT COD|SHIP|y regular | +36200|132552|20059|4|6|9507.30|0.10|0.05|N|O|1998-04-11|1998-04-06|1998-04-12|NONE|AIR| to the regular, ir| +36200|799388|49389|5|34|50569.90|0.10|0.00|N|O|1998-02-07|1998-03-01|1998-03-08|NONE|RAIL|ar accounts boost along th| +36200|298326|10832|6|38|50323.78|0.05|0.05|N|O|1998-05-03|1998-02-14|1998-05-23|TAKE BACK RETURN|RAIL|t slyly ironic grouches. packages| +36201|39954|14955|1|48|90909.60|0.03|0.00|N|O|1997-04-18|1997-06-25|1997-04-28|TAKE BACK RETURN|REG AIR|ual ideas! slyly spec| +36201|505113|5114|2|5|5590.45|0.01|0.00|N|O|1997-04-23|1997-05-16|1997-05-20|COLLECT COD|FOB|e quickly re| +36201|419381|31890|3|39|50714.04|0.10|0.01|N|O|1997-06-29|1997-06-08|1997-07-09|COLLECT COD|AIR|ecial dependencies. dogg| +36201|527723|40234|4|10|17507.00|0.04|0.06|N|O|1997-06-15|1997-06-20|1997-06-24|DELIVER IN PERSON|SHIP| ironically special deposits doubt blithely| +36201|425477|494|5|25|35061.25|0.06|0.01|N|O|1997-07-27|1997-06-11|1997-08-11|DELIVER IN PERSON|SHIP|oost. fluffily final ac| +36201|979756|29757|6|22|40385.62|0.02|0.01|N|O|1997-06-24|1997-06-06|1997-06-27|DELIVER IN PERSON|REG AIR|deas. quickly silent | +36202|878194|3229|1|47|55091.05|0.05|0.05|N|O|1996-04-27|1996-06-15|1996-05-27|NONE|TRUCK|s sleep aft| +36203|699486|37026|1|40|59418.00|0.05|0.00|R|F|1993-12-02|1993-12-29|1993-12-28|COLLECT COD|FOB|eans use slyly. fluffily iro| +36203|249930|12435|2|24|45118.08|0.01|0.08|R|F|1994-02-16|1993-12-12|1994-03-05|TAKE BACK RETURN|AIR| wake among the final, final instr| +36203|567422|17423|3|50|74470.00|0.10|0.02|A|F|1994-02-01|1993-12-12|1994-02-25|COLLECT COD|REG AIR|ackages. regular p| +36203|660021|10022|4|5|4904.95|0.10|0.02|R|F|1994-01-25|1993-12-08|1994-02-03|TAKE BACK RETURN|AIR|final requests. accounts | +36203|963508|1066|5|23|36143.58|0.01|0.03|R|F|1993-11-03|1993-12-25|1993-11-20|DELIVER IN PERSON|TRUCK|tions. final dependencies sleep slyly after| +36203|662429|12430|6|45|62612.55|0.02|0.00|R|F|1994-01-05|1993-12-01|1994-01-07|TAKE BACK RETURN|SHIP|sleep blithely qu| +36203|438085|594|7|11|11253.66|0.10|0.04|A|F|1993-11-19|1993-11-23|1993-12-14|COLLECT COD|REG AIR|gular ideas. pending packages shall have to| +36204|883768|46286|1|34|59558.48|0.01|0.05|N|O|1996-10-15|1996-10-24|1996-11-12|NONE|MAIL|to the caref| +36204|476162|13690|2|32|36420.48|0.00|0.05|N|O|1996-10-27|1996-11-05|1996-11-10|COLLECT COD|AIR|kages are s| +36205|682014|32015|1|14|13943.72|0.07|0.08|A|F|1994-05-04|1994-03-16|1994-05-11|NONE|RAIL|sts. quickly final packages cajole b| +36205|593599|31133|2|34|57547.38|0.09|0.04|R|F|1994-05-24|1994-03-18|1994-06-18|TAKE BACK RETURN|MAIL|eep carefully alongside of t| +36206|20938|45939|1|31|57626.83|0.06|0.00|R|F|1993-06-19|1993-05-15|1993-07-01|COLLECT COD|REG AIR|luffy accounts | +36206|888659|26211|2|40|65904.40|0.06|0.01|A|F|1993-07-02|1993-05-28|1993-07-22|DELIVER IN PERSON|FOB|l dolphins. carefully even pack| +36206|691311|41312|3|15|19534.20|0.00|0.06|R|F|1993-04-04|1993-05-28|1993-04-27|NONE|TRUCK|posits are alongside of the si| +36206|848556|36105|4|10|15045.10|0.09|0.02|A|F|1993-05-07|1993-06-14|1993-05-09|COLLECT COD|TRUCK|inal requests hagg| +36206|667383|17384|5|9|12153.15|0.03|0.05|R|F|1993-06-14|1993-05-10|1993-07-10|COLLECT COD|AIR|uests use furiously abo| +36207|694068|31608|1|40|42481.20|0.10|0.08|R|F|1994-10-23|1994-09-15|1994-11-09|COLLECT COD|FOB|ironic requests. slyly pen| +36207|200439|25448|2|2|2678.84|0.08|0.06|A|F|1994-10-28|1994-08-24|1994-11-02|DELIVER IN PERSON|TRUCK| special deposits boost silently. s| +36207|769181|44212|3|47|58757.05|0.01|0.04|R|F|1994-11-10|1994-09-07|1994-11-23|TAKE BACK RETURN|SHIP|ys haggle alongside of the sly| +36207|624096|36609|4|18|18361.08|0.04|0.05|R|F|1994-09-17|1994-09-23|1994-10-15|DELIVER IN PERSON|MAIL|ly. ironic, bold pinto be| +36232|778916|16462|1|33|65831.04|0.07|0.02|N|O|1996-06-22|1996-04-05|1996-07-19|NONE|TRUCK|telets sleep about the blithely even a| +36233|742068|17097|1|40|44401.20|0.10|0.08|R|F|1992-10-17|1992-10-31|1992-10-31|DELIVER IN PERSON|FOB|lites detect blithely. unusual depos| +36233|932291|32292|2|12|15879.00|0.09|0.06|A|F|1992-09-13|1992-10-26|1992-09-16|DELIVER IN PERSON|FOB|g blithely. even requests are blithely ir| +36233|998788|11308|3|42|79243.08|0.06|0.05|R|F|1992-11-28|1992-10-25|1992-12-14|NONE|SHIP|quickly regular requests cajole slyly. pe| +36233|614962|39987|4|18|33784.74|0.09|0.05|R|F|1992-09-29|1992-10-11|1992-10-13|NONE|RAIL|s about the even foxes cajo| +36234|954635|42193|1|36|60825.24|0.00|0.05|N|O|1995-11-08|1995-12-19|1995-11-26|TAKE BACK RETURN|MAIL| of the final | +36235|432914|45423|1|38|70181.82|0.08|0.00|R|F|1992-07-14|1992-09-01|1992-08-05|DELIVER IN PERSON|AIR|ly blithe pinto beans shou| +36235|970630|33150|2|31|52718.29|0.09|0.00|R|F|1992-08-01|1992-09-02|1992-08-23|COLLECT COD|RAIL|riously. furiously regular accounts| +36235|372022|9544|3|25|27350.25|0.09|0.07|A|F|1992-09-15|1992-07-24|1992-09-19|TAKE BACK RETURN|FOB|. furiously s| +36236|207690|32699|1|7|11183.76|0.09|0.00|A|F|1994-09-29|1994-10-01|1994-10-08|DELIVER IN PERSON|RAIL|ironic pinto beans| +36237|163244|38251|1|1|1307.24|0.06|0.01|R|F|1994-09-30|1994-09-21|1994-10-16|COLLECT COD|TRUCK|le fluffily alongside of t| +36237|635675|23212|2|19|30602.16|0.08|0.00|R|F|1994-10-08|1994-10-01|1994-10-16|TAKE BACK RETURN|SHIP|the finally regular pack| +36237|781740|6771|3|42|76511.82|0.07|0.00|A|F|1994-09-23|1994-11-03|1994-10-18|TAKE BACK RETURN|FOB|he furiously eve| +36237|699186|24213|4|4|4740.60|0.05|0.01|R|F|1994-08-20|1994-10-29|1994-09-15|TAKE BACK RETURN|RAIL|ar deposits haggle speci| +36237|205084|5085|5|9|8901.63|0.07|0.07|A|F|1994-10-31|1994-10-31|1994-11-16|NONE|SHIP|deas about the slyly| +36237|835336|22885|6|20|25425.80|0.03|0.02|R|F|1994-10-28|1994-10-10|1994-11-14|TAKE BACK RETURN|TRUCK|ose furiously above the blithely si| +36238|923070|23071|1|25|27325.75|0.02|0.04|R|F|1995-02-10|1995-03-18|1995-02-18|COLLECT COD|AIR| unusual asymptote| +36238|32262|32263|2|5|5971.30|0.03|0.08|A|F|1995-04-21|1995-03-02|1995-04-22|TAKE BACK RETURN|TRUCK|gular theodo| +36238|222415|22416|3|16|21398.40|0.00|0.00|R|F|1995-02-16|1995-03-20|1995-03-04|TAKE BACK RETURN|AIR|quests. unusual, ironic requests h| +36238|112334|49841|4|15|20194.95|0.02|0.00|R|F|1995-02-19|1995-04-03|1995-03-06|DELIVER IN PERSON|TRUCK|inal, ironic tithes serve. final excuses| +36238|995128|32686|5|10|12230.80|0.05|0.02|A|F|1995-03-29|1995-03-24|1995-03-31|NONE|SHIP|uests. quickly unusual f| +36238|107252|19755|6|50|62962.50|0.01|0.02|R|F|1995-03-01|1995-04-12|1995-03-19|NONE|RAIL|heodolites haggle slyly. carefully f| +36238|572358|34870|7|24|34327.92|0.10|0.07|R|F|1995-05-19|1995-02-27|1995-05-25|NONE|MAIL|courts. regular deposits cajole alongs| +36239|612570|37595|1|50|74127.00|0.08|0.06|N|O|1997-09-22|1997-09-15|1997-10-16|NONE|SHIP|eodolites cajole never | +36239|449194|11703|2|36|41154.12|0.05|0.04|N|O|1997-08-04|1997-09-10|1997-08-14|DELIVER IN PERSON|TRUCK|. packages u| +36239|588960|13983|3|16|32783.04|0.07|0.02|N|O|1997-09-04|1997-09-15|1997-09-29|NONE|SHIP|scapades ought to det| +36264|683516|21056|1|22|32988.56|0.02|0.04|R|F|1994-11-03|1994-11-07|1994-11-10|COLLECT COD|MAIL|en requests nag final deposits? quickly fin| +36264|845778|33327|2|26|44816.98|0.10|0.07|A|F|1994-09-28|1994-10-12|1994-10-26|NONE|SHIP| warthogs l| +36264|985259|10298|3|23|30916.83|0.10|0.05|R|F|1994-11-09|1994-10-28|1994-11-21|NONE|MAIL|cuses are inside th| +36265|874429|11981|1|40|56135.20|0.09|0.01|N|O|1997-04-10|1997-04-08|1997-04-20|TAKE BACK RETURN|TRUCK|ray. quickly even | +36265|519736|19737|2|7|12289.97|0.10|0.07|N|O|1997-06-25|1997-04-16|1997-07-11|NONE|RAIL|packages cajole furiously carefully regul| +36265|188859|13866|3|11|21426.35|0.07|0.07|N|O|1997-04-09|1997-05-24|1997-04-17|NONE|AIR|s. slyly even instr| +36265|146646|21651|4|25|42316.00|0.00|0.00|N|O|1997-06-01|1997-05-25|1997-06-24|DELIVER IN PERSON|SHIP|xpress depos| +36265|679010|4037|5|5|4944.90|0.08|0.06|N|O|1997-06-05|1997-05-09|1997-07-02|DELIVER IN PERSON|MAIL|onically even foxes alongside of the sile| +36265|116765|16766|6|4|7127.04|0.03|0.06|N|O|1997-03-24|1997-04-18|1997-03-28|NONE|MAIL|owly regular de| +36266|371863|21864|1|45|87068.25|0.03|0.00|R|F|1995-02-06|1995-03-18|1995-02-28|DELIVER IN PERSON|REG AIR|ts detect | +36266|892454|42455|2|16|23142.56|0.01|0.04|A|F|1995-03-01|1995-04-17|1995-03-22|DELIVER IN PERSON|REG AIR|accounts wake| +36266|457687|32706|3|35|57563.10|0.09|0.07|R|F|1995-05-24|1995-04-21|1995-05-30|NONE|MAIL|jole. dependencies sleep f| +36266|340440|2947|4|21|31089.03|0.04|0.05|A|F|1995-05-19|1995-04-21|1995-06-05|DELIVER IN PERSON|AIR|y final deposits boost bli| +36266|769870|44901|5|32|62074.88|0.06|0.06|A|F|1995-04-06|1995-03-10|1995-04-26|NONE|FOB|he ideas. ironic deposit| +36266|193716|18723|6|36|65149.56|0.07|0.08|R|F|1995-04-02|1995-03-04|1995-04-18|TAKE BACK RETURN|SHIP| across the s| +36267|567289|17290|1|21|28481.46|0.06|0.05|N|O|1996-12-08|1996-12-23|1997-01-07|TAKE BACK RETURN|TRUCK|al packages.| +36268|623793|11330|1|41|70387.16|0.00|0.02|N|O|1995-12-04|1995-11-04|1995-12-26|TAKE BACK RETURN|SHIP|coys. slyly bol| +36268|73137|48140|2|33|36634.29|0.02|0.00|N|O|1995-12-11|1995-11-03|1995-12-17|DELIVER IN PERSON|REG AIR|y regular accounts. r| +36268|212483|24988|3|33|46050.51|0.05|0.04|N|O|1995-09-12|1995-11-12|1995-10-08|DELIVER IN PERSON|FOB| sleep slyly f| +36268|200899|38412|4|38|68395.44|0.10|0.07|N|O|1995-11-22|1995-11-13|1995-11-27|COLLECT COD|TRUCK|e blithely against the special theodolites;| +36268|500343|344|5|2|2686.64|0.10|0.03|N|O|1995-08-26|1995-10-16|1995-08-28|NONE|TRUCK|ely regular warhorses. pending | +36269|695426|32966|1|11|15635.29|0.05|0.06|N|O|1996-01-02|1996-02-18|1996-01-21|DELIVER IN PERSON|REG AIR|st furiously at the blithely regular depo| +36269|17334|29835|2|39|48801.87|0.03|0.02|N|O|1996-01-26|1996-02-10|1996-02-14|TAKE BACK RETURN|MAIL| the packages?| +36269|326743|1756|3|8|14157.84|0.01|0.07|N|O|1996-04-26|1996-03-04|1996-05-21|TAKE BACK RETURN|REG AIR|accounts use s| +36270|41448|41449|1|8|11115.52|0.01|0.03|R|F|1995-01-30|1995-01-09|1995-02-03|COLLECT COD|FOB|nal, regular courts brea| +36270|609413|34438|2|50|66119.00|0.09|0.06|R|F|1995-02-10|1995-01-02|1995-02-26|NONE|RAIL| dolphins integrate about the regul| +36270|394745|32267|3|29|53352.17|0.05|0.01|R|F|1995-02-14|1994-12-23|1995-02-17|DELIVER IN PERSON|AIR|ly bold deposits sleep slyly accord| +36270|473093|10621|4|31|33048.17|0.00|0.04|A|F|1994-12-15|1995-02-08|1994-12-27|NONE|MAIL|es. ironically ironic requests a| +36270|273042|35548|5|28|28420.84|0.07|0.05|R|F|1995-03-01|1995-01-23|1995-03-16|DELIVER IN PERSON|SHIP|ously regular p| +36270|5445|5446|6|5|6752.20|0.08|0.07|R|F|1995-01-31|1995-02-13|1995-02-19|DELIVER IN PERSON|RAIL|ve the special, unusual packag| +36270|505018|42549|7|7|7160.93|0.10|0.06|R|F|1995-02-03|1995-02-09|1995-02-24|COLLECT COD|FOB|hely ironic, final accounts.| +36271|823663|23664|1|24|38078.88|0.09|0.01|N|O|1997-04-20|1997-02-05|1997-05-01|TAKE BACK RETURN|SHIP|telets boost blithely| +36271|288098|13109|2|2|2172.16|0.10|0.07|N|O|1997-02-28|1997-03-22|1997-03-25|TAKE BACK RETURN|AIR| are carefully ac| +36271|56334|18836|3|16|20645.28|0.09|0.01|N|O|1997-04-25|1997-02-19|1997-05-15|DELIVER IN PERSON|AIR| ironic asymptote| +36271|804359|29392|4|39|49269.09|0.10|0.08|N|O|1997-01-03|1997-02-27|1997-01-28|TAKE BACK RETURN|FOB|nt slyly carefully | +36271|845201|32750|5|44|50431.04|0.10|0.06|N|O|1997-01-23|1997-02-28|1997-01-26|COLLECT COD|REG AIR|. even foxes wa| +36296|137252|24759|1|24|30942.00|0.07|0.05|R|F|1994-07-26|1994-08-11|1994-08-19|COLLECT COD|REG AIR|ic accounts breach slyly. express account| +36296|784351|34352|2|32|45930.24|0.09|0.04|R|F|1994-08-03|1994-08-01|1994-08-06|NONE|MAIL|ress, pending braids: furiously regular re| +36296|570775|45798|3|6|11074.50|0.09|0.06|A|F|1994-06-06|1994-08-25|1994-06-09|COLLECT COD|SHIP|the blithely express requests: | +36296|8753|8754|4|50|83087.50|0.00|0.03|A|F|1994-09-11|1994-08-20|1994-09-25|NONE|REG AIR|gle final platelets. even t| +36297|274653|37159|1|18|29297.52|0.04|0.08|A|F|1993-03-22|1993-02-19|1993-04-09|TAKE BACK RETURN|SHIP|s. theodolites maintain bli| +36297|87602|25106|2|20|31792.00|0.00|0.04|A|F|1993-01-17|1993-03-07|1993-01-23|NONE|AIR|e the ironic, pending deposits. silent,| +36298|764945|2491|1|24|48237.84|0.06|0.08|A|F|1993-10-08|1993-10-12|1993-10-14|COLLECT COD|AIR|ular depos| +36298|426598|26599|2|29|44212.53|0.04|0.08|A|F|1993-09-15|1993-11-09|1993-09-18|COLLECT COD|REG AIR| bold packages dazzle carefully. furi| +36299|494519|44520|1|30|45404.70|0.01|0.04|R|F|1994-04-10|1994-03-09|1994-05-01|COLLECT COD|REG AIR| players boost quic| +36299|373511|23512|2|12|19014.00|0.02|0.01|R|F|1994-03-30|1994-04-13|1994-04-10|TAKE BACK RETURN|FOB|are. slyly expre| +36300|14945|39946|1|48|89277.12|0.02|0.08|R|F|1993-07-07|1993-08-03|1993-07-11|COLLECT COD|SHIP|ecial sheaves integrate. silent| +36300|170949|33453|2|2|4039.88|0.09|0.06|A|F|1993-10-06|1993-07-16|1993-10-12|COLLECT COD|TRUCK|, regular pinto b| +36300|133403|45906|3|11|15800.40|0.09|0.06|A|F|1993-09-03|1993-07-23|1993-09-20|NONE|MAIL|odolites haggle| +36300|89516|2018|4|50|75275.50|0.03|0.03|R|F|1993-08-15|1993-07-23|1993-08-31|DELIVER IN PERSON|SHIP|y carefully special packages.| +36300|488008|38009|5|13|12947.74|0.04|0.06|A|F|1993-06-22|1993-08-12|1993-06-26|DELIVER IN PERSON|TRUCK|ages nod ca| +36300|935683|48202|6|18|30935.52|0.08|0.04|R|F|1993-08-14|1993-07-15|1993-08-21|TAKE BACK RETURN|TRUCK|heodolites; accounts poach acros| +36301|540067|15088|1|24|26568.96|0.04|0.05|N|O|1996-02-06|1996-01-31|1996-02-13|TAKE BACK RETURN|FOB|r requests| +36301|902902|27939|2|41|78099.26|0.05|0.04|N|O|1996-02-13|1996-02-11|1996-03-01|TAKE BACK RETURN|REG AIR|lyly final packages.| +36301|57246|7247|3|24|28877.76|0.01|0.04|N|O|1996-03-04|1996-01-19|1996-04-01|DELIVER IN PERSON|REG AIR|. ruthlessly special depth| +36301|117683|30186|4|25|42517.00|0.04|0.05|N|O|1995-12-29|1996-01-01|1996-01-05|NONE|AIR|ong the furiously special asym| +36301|890691|40692|5|40|67266.00|0.06|0.06|N|O|1996-01-05|1995-12-23|1996-01-24|DELIVER IN PERSON|TRUCK|nusual accounts wake blithel| +36302|562524|37547|1|16|25384.00|0.00|0.00|N|O|1995-11-08|1995-08-22|1995-12-05|COLLECT COD|TRUCK|e carefully against the carefully ironic| +36302|335014|22533|2|38|39862.00|0.10|0.07|N|O|1995-10-12|1995-09-10|1995-11-09|TAKE BACK RETURN|MAIL|gular dolphins after the fluffily re| +36302|572288|22289|3|7|9521.82|0.10|0.08|N|O|1995-08-19|1995-10-12|1995-08-22|TAKE BACK RETURN|SHIP|y final requests. requests about the speci| +36302|437448|37449|4|2|2770.84|0.00|0.03|N|O|1995-10-23|1995-09-18|1995-10-26|DELIVER IN PERSON|TRUCK|ironic, bold packages. quickly | +36302|181842|6849|5|50|96192.00|0.01|0.08|N|O|1995-10-26|1995-09-29|1995-11-14|DELIVER IN PERSON|REG AIR|uickly slyly ironic pinto beans.| +36303|969565|44604|1|33|53939.16|0.09|0.08|N|O|1998-03-29|1998-02-25|1998-03-30|COLLECT COD|TRUCK|cial, final platelets are. special, fin| +36303|474696|37206|2|33|55132.11|0.06|0.08|N|O|1998-04-03|1998-03-18|1998-04-19|NONE|MAIL|ironic foxes. silent packag| +36303|213354|867|3|33|41822.22|0.00|0.05|N|O|1998-01-09|1998-03-31|1998-01-22|COLLECT COD|AIR| unusual, final| +36303|825143|37660|4|17|18157.70|0.05|0.07|N|O|1998-01-15|1998-03-16|1998-01-28|NONE|TRUCK|ronic deposits could have to de| +36303|169738|32242|5|38|68693.74|0.03|0.03|N|O|1998-02-21|1998-04-07|1998-03-16|NONE|REG AIR|ages. regu| +36328|96513|46514|1|38|57361.38|0.02|0.03|R|F|1995-06-07|1995-08-19|1995-06-11|TAKE BACK RETURN|RAIL|arefully even packages ca| +36328|87478|12481|2|30|43964.10|0.07|0.00|N|O|1995-07-30|1995-08-10|1995-08-03|COLLECT COD|FOB|ular accounts sleep carefully abo| +36328|237977|482|3|42|80428.32|0.04|0.04|N|O|1995-07-16|1995-08-23|1995-08-05|NONE|TRUCK|s haggle carefully-- war| +36328|663389|929|4|3|4057.05|0.04|0.01|A|F|1995-06-14|1995-08-13|1995-06-17|DELIVER IN PERSON|SHIP|ructions. quickly even packages| +36328|565407|40430|5|15|22085.70|0.09|0.03|N|O|1995-07-27|1995-08-17|1995-08-25|NONE|FOB|uternes use furio| +36328|779989|5020|6|49|101378.55|0.05|0.02|N|O|1995-09-16|1995-07-28|1995-10-05|NONE|MAIL|as print carefully even| +36328|271685|34191|7|14|23193.38|0.06|0.04|N|O|1995-07-10|1995-08-05|1995-08-06|DELIVER IN PERSON|TRUCK|s across the deposit| +36329|202465|27474|1|10|13674.50|0.03|0.00|A|F|1993-12-11|1993-11-22|1993-12-15|DELIVER IN PERSON|TRUCK|ickly final packag| +36329|821644|46677|2|39|61058.40|0.08|0.01|A|F|1993-11-26|1993-10-30|1993-12-15|COLLECT COD|TRUCK|attainments use bli| +36329|356467|31482|3|46|70078.70|0.01|0.06|A|F|1993-09-06|1993-11-04|1993-09-12|DELIVER IN PERSON|RAIL| waters. furiously thin orbits haggle| +36330|940844|15881|1|18|33926.40|0.08|0.07|N|O|1998-07-24|1998-08-04|1998-08-05|NONE|AIR|ress foxes will have to sleep| +36330|757334|32365|2|26|36173.80|0.04|0.03|N|O|1998-10-10|1998-09-01|1998-10-26|COLLECT COD|SHIP| ironic accounts are slyl| +36331|874047|36565|1|43|43903.00|0.02|0.08|R|F|1993-05-20|1993-07-16|1993-06-11|DELIVER IN PERSON|FOB|gle slyly. slyly silen| +36331|91712|4214|2|24|40889.04|0.05|0.06|R|F|1993-06-22|1993-06-23|1993-07-01|DELIVER IN PERSON|AIR|ckly final excuses ought to doze| +36332|264272|26778|1|49|60576.74|0.05|0.05|A|F|1993-11-01|1993-11-01|1993-11-29|TAKE BACK RETURN|AIR| quickly ironic platelets nag s| +36332|613413|38438|2|49|64992.62|0.05|0.08|R|F|1994-01-02|1993-11-29|1994-01-17|COLLECT COD|REG AIR|r, ironic ideas sleep alo| +36332|619978|32491|3|24|45550.56|0.05|0.00|A|F|1993-11-26|1993-12-04|1993-11-27|NONE|SHIP|ss the pending, bo| +36332|958910|33949|4|38|74817.06|0.05|0.07|A|F|1993-09-29|1993-11-30|1993-10-26|DELIVER IN PERSON|TRUCK|usly pending deposits| +36332|392067|17082|5|36|41725.80|0.05|0.02|A|F|1993-10-24|1993-10-29|1993-11-13|NONE|MAIL|s. dependenci| +36333|490322|27850|1|9|11810.70|0.01|0.07|N|O|1997-05-01|1997-03-10|1997-05-10|COLLECT COD|FOB|egular accounts. accounts agains| +36333|829686|42203|2|22|35544.08|0.08|0.04|N|O|1997-02-11|1997-03-30|1997-02-14|COLLECT COD|SHIP|instructions haggle. regular | +36333|529917|4938|3|6|11681.34|0.02|0.02|N|O|1997-02-08|1997-04-12|1997-02-26|TAKE BACK RETURN|RAIL|eans. quickly final accounts are ev| +36333|305301|5302|4|8|10450.32|0.00|0.01|N|O|1997-03-27|1997-04-15|1997-04-09|COLLECT COD|MAIL|beans. express deposits cajole among the| +36334|285877|10888|1|49|91280.14|0.07|0.01|A|F|1994-09-01|1994-09-25|1994-09-26|NONE|TRUCK|ven accounts. even foxes nag f| +36334|728067|40582|2|44|48181.32|0.00|0.01|A|F|1994-11-05|1994-11-14|1994-11-08|COLLECT COD|SHIP|cuses. bold, regular theodolit| +36334|615382|15383|3|46|59678.10|0.00|0.03|A|F|1994-08-26|1994-10-24|1994-09-16|NONE|REG AIR|pending theodolites. carefull| +36334|725121|12664|4|29|33236.61|0.01|0.02|A|F|1994-11-11|1994-09-30|1994-12-06|TAKE BACK RETURN|RAIL|ross the slyly bold deposits. bold foxes | +36335|88040|13043|1|44|45233.76|0.03|0.08|R|F|1992-07-10|1992-06-28|1992-07-19|COLLECT COD|TRUCK|blithely a| +36335|681571|6598|2|50|77627.00|0.09|0.00|R|F|1992-06-08|1992-06-28|1992-07-03|COLLECT COD|TRUCK|lithely unusual requests. unusual request| +36335|156998|44508|3|8|16439.92|0.02|0.01|A|F|1992-06-23|1992-06-23|1992-07-07|COLLECT COD|REG AIR|ing, regular deposits: blithely even pi| +36335|660169|35196|4|15|16936.95|0.09|0.08|R|F|1992-05-04|1992-06-12|1992-05-07|DELIVER IN PERSON|REG AIR|sleep furiously. slyl| +36360|643263|5776|1|9|10856.07|0.06|0.05|R|F|1994-03-03|1994-03-09|1994-03-04|NONE|SHIP|s. blithely express ideas na| +36360|320700|33207|2|31|53341.39|0.03|0.03|R|F|1994-03-04|1994-03-10|1994-03-24|DELIVER IN PERSON|RAIL| the accoun| +36360|992421|17460|3|46|69615.48|0.02|0.05|R|F|1994-03-12|1994-03-06|1994-03-15|DELIVER IN PERSON|MAIL|st slyly after the slyly silent| +36360|605077|17590|4|15|14730.60|0.05|0.04|A|F|1994-01-22|1994-04-05|1994-01-29|NONE|MAIL|ly silent deposits. dependencies haggle s| +36360|528219|15750|5|33|41157.27|0.10|0.02|R|F|1994-03-07|1994-04-13|1994-03-17|NONE|REG AIR|nding packages-- slyly ironic deposits at | +36360|760357|47903|6|11|15590.52|0.09|0.02|R|F|1994-03-02|1994-02-25|1994-03-04|TAKE BACK RETURN|MAIL|tructions. furiou| +36360|304146|16653|7|42|48305.46|0.07|0.02|A|F|1994-03-18|1994-04-06|1994-03-21|DELIVER IN PERSON|MAIL|ully regul| +36361|779637|17183|1|47|80680.20|0.00|0.01|N|O|1996-11-29|1996-09-21|1996-12-09|NONE|AIR|e about the blithely pending foxes.| +36361|343790|6297|2|26|47678.28|0.06|0.08|N|O|1996-12-16|1996-11-13|1996-12-24|COLLECT COD|SHIP|ly even asymptotes kindle ca| +36362|532959|32960|1|37|73701.41|0.04|0.00|N|O|1996-11-07|1996-09-26|1996-11-29|DELIVER IN PERSON|AIR|n deposits engage| +36362|440959|28484|2|7|13299.51|0.05|0.00|N|O|1996-09-03|1996-09-23|1996-09-05|TAKE BACK RETURN|AIR|rate blithely carefully regular dep| +36362|181357|43861|3|26|37397.10|0.01|0.08|N|O|1996-11-22|1996-10-05|1996-11-27|TAKE BACK RETURN|TRUCK|ss ideas use bravely! | +36362|55933|18435|4|27|51001.11|0.03|0.00|N|O|1996-08-02|1996-09-25|1996-08-14|TAKE BACK RETURN|MAIL|y according to the quickly pending | +36362|58858|33861|5|1|1816.85|0.09|0.01|N|O|1996-11-08|1996-09-03|1996-12-05|COLLECT COD|REG AIR|ily special the| +36362|214827|2340|6|48|83606.88|0.03|0.06|N|O|1996-08-14|1996-09-23|1996-09-06|TAKE BACK RETURN|REG AIR|s cajole silently. busy packages slee| +36363|82243|19747|1|46|56361.04|0.04|0.00|N|O|1996-03-15|1996-03-21|1996-03-16|DELIVER IN PERSON|FOB|ermanently even platelets| +36363|251930|39446|2|32|60221.44|0.04|0.07|N|O|1996-04-29|1996-04-17|1996-05-19|TAKE BACK RETURN|RAIL|inal foxes thrash. final packages abo| +36363|175409|416|3|47|69766.80|0.07|0.01|N|O|1996-05-15|1996-03-02|1996-05-30|DELIVER IN PERSON|RAIL| about the carefully pending request| +36363|98328|23331|4|20|26526.40|0.10|0.02|N|O|1996-02-03|1996-03-28|1996-02-29|TAKE BACK RETURN|FOB|slyly quick courts against t| +36363|582472|32473|5|20|31089.00|0.09|0.04|N|O|1996-05-18|1996-02-24|1996-06-10|NONE|MAIL|ously after the slyly | +36363|600285|286|6|48|56892.00|0.02|0.03|N|O|1996-05-08|1996-03-17|1996-05-30|TAKE BACK RETURN|AIR| idle foxes haggle about the | +36364|202739|40252|1|8|13133.76|0.05|0.03|A|F|1994-05-03|1994-04-21|1994-05-30|NONE|RAIL|ironic theodolites. unusual reques| +36364|420066|7591|2|47|46343.88|0.06|0.04|A|F|1994-04-19|1994-05-29|1994-05-01|TAKE BACK RETURN|MAIL|ar asymptotes. requests against the blithel| +36364|41580|16581|3|17|25866.86|0.07|0.06|R|F|1994-05-17|1994-05-06|1994-06-04|TAKE BACK RETURN|REG AIR|he blithely u| +36364|820957|20958|4|12|22534.92|0.08|0.04|R|F|1994-05-03|1994-05-15|1994-05-25|NONE|REG AIR|careful accounts. pending, pending ide| +36365|240324|27837|1|43|54365.33|0.01|0.01|R|F|1992-04-27|1992-02-11|1992-05-04|NONE|SHIP|nts haggle carefully final foxes. | +36365|116054|41059|2|42|44942.10|0.06|0.02|A|F|1992-01-30|1992-03-21|1992-02-07|DELIVER IN PERSON|FOB|the carefully bold| +36365|503134|40665|3|11|12508.21|0.04|0.04|R|F|1992-03-12|1992-03-03|1992-04-04|NONE|AIR|ades. slyly regular ideas cajole bus| +36365|164332|1842|4|37|51664.21|0.04|0.08|A|F|1992-04-10|1992-04-01|1992-05-10|DELIVER IN PERSON|TRUCK|arthogs. carefully ex| +36365|917510|42547|5|41|62626.27|0.00|0.07|A|F|1992-01-23|1992-02-20|1992-01-26|NONE|AIR|sly even depos| +36366|890447|2965|1|20|28748.00|0.04|0.08|N|O|1995-09-25|1995-11-05|1995-10-19|COLLECT COD|TRUCK|. fluffily re| +36366|742690|42691|2|19|32920.54|0.09|0.01|N|O|1995-11-09|1995-11-25|1995-11-14|TAKE BACK RETURN|RAIL|thely blithely regular foxes. furiously r| +36366|385956|48464|3|39|79635.66|0.09|0.06|N|O|1995-09-17|1995-12-05|1995-10-13|DELIVER IN PERSON|SHIP|ecial foxes. quickly fina| +36367|235995|23508|1|8|15447.84|0.01|0.00|A|F|1993-01-08|1993-03-02|1993-01-17|COLLECT COD|AIR| requests-- express, final requests cajole | +36367|354424|29439|2|9|13305.69|0.01|0.03|A|F|1993-02-23|1993-02-11|1993-03-18|TAKE BACK RETURN|RAIL| packages boost quickly slyly p| +36367|791372|28918|3|46|67313.64|0.06|0.02|R|F|1993-01-19|1993-03-25|1993-02-18|NONE|TRUCK|lyly blithely special acco| +36367|573570|36082|4|15|24653.25|0.01|0.03|A|F|1993-02-08|1993-03-03|1993-02-15|TAKE BACK RETURN|MAIL|e packages. ir| +36392|846215|21248|1|41|47607.97|0.04|0.08|N|O|1995-12-02|1995-10-29|1995-12-14|NONE|TRUCK|ic deposits c| +36392|331801|6814|2|37|67813.23|0.03|0.02|N|O|1995-12-02|1995-11-15|1995-12-20|COLLECT COD|AIR|pending courts haggle slyly. carefully | +36392|569636|19637|3|47|80163.67|0.07|0.02|N|O|1995-11-14|1995-11-16|1995-12-13|COLLECT COD|AIR|inal courts. deposits sleep slyly| +36392|860859|48411|4|7|12738.67|0.07|0.00|N|O|1995-12-03|1995-10-17|1995-12-30|TAKE BACK RETURN|FOB|ounts. even packages about the | +36393|877575|27576|1|10|15525.30|0.04|0.03|N|O|1997-04-27|1997-03-27|1997-05-18|TAKE BACK RETURN|RAIL|t the slyly fl| +36394|421457|8982|1|26|35839.18|0.10|0.07|R|F|1992-05-10|1992-05-14|1992-06-05|COLLECT COD|SHIP| regular, ironic deposit| +36394|413349|25858|2|25|31558.00|0.03|0.08|R|F|1992-07-13|1992-05-07|1992-08-12|NONE|MAIL|ess requests are | +36394|144622|19627|3|43|71664.66|0.00|0.00|A|F|1992-04-07|1992-05-13|1992-04-20|NONE|AIR|ously unusual instructions. quickly | +36394|656359|6360|4|34|44720.88|0.06|0.07|A|F|1992-07-02|1992-06-16|1992-07-11|TAKE BACK RETURN|SHIP| to the slyly | +36394|411829|11830|5|11|19148.80|0.04|0.02|A|F|1992-07-09|1992-05-13|1992-07-25|DELIVER IN PERSON|MAIL|ide of the fluffily regular packages. c| +36395|747786|35329|1|37|67848.75|0.05|0.06|R|F|1994-06-12|1994-06-20|1994-06-23|COLLECT COD|REG AIR|nic requests cajo| +36395|24147|36648|2|14|14995.96|0.07|0.08|R|F|1994-07-11|1994-06-01|1994-07-15|TAKE BACK RETURN|REG AIR|ckly final platelets a| +36395|831636|6669|3|27|42324.93|0.07|0.06|R|F|1994-05-31|1994-06-14|1994-06-15|DELIVER IN PERSON|RAIL|he even accounts shall nag quick| +36396|917777|42814|1|8|14357.84|0.10|0.02|N|O|1995-08-19|1995-08-10|1995-09-11|NONE|RAIL|. ironic, even accounts boost.| +36396|64765|14766|2|1|1729.76|0.06|0.02|N|O|1995-07-17|1995-09-08|1995-07-19|NONE|MAIL| blithely even platelets. blithel| +36397|457657|7658|1|34|54897.42|0.00|0.00|N|O|1997-07-17|1997-07-03|1997-08-11|NONE|SHIP|pendencies x-ray fluffily around the | +36398|720130|32645|1|2|2300.20|0.01|0.00|R|F|1994-08-15|1994-06-17|1994-08-31|DELIVER IN PERSON|REG AIR|kly even packages wake slyly final, final p| +36398|209010|9011|2|21|19299.00|0.08|0.01|A|F|1994-08-23|1994-06-30|1994-09-14|TAKE BACK RETURN|MAIL|ar pinto beans wake dogg| +36398|815190|40223|3|28|30944.20|0.00|0.05|R|F|1994-07-08|1994-07-22|1994-07-25|TAKE BACK RETURN|AIR| instructions. regular req| +36398|895496|45497|4|4|5965.80|0.01|0.00|R|F|1994-06-12|1994-07-08|1994-06-28|NONE|SHIP|ts. carefu| +36398|589596|39597|5|15|25283.55|0.08|0.07|A|F|1994-08-10|1994-07-02|1994-08-15|TAKE BACK RETURN|RAIL|ckly. fluffily ironic| +36398|330187|5200|6|17|20691.89|0.02|0.08|R|F|1994-07-22|1994-08-07|1994-07-27|COLLECT COD|REG AIR|fully final foxes sleep quickly. blithely f| +36398|442892|30417|7|9|16513.83|0.03|0.00|R|F|1994-06-04|1994-07-30|1994-06-20|COLLECT COD|REG AIR|e pinto beans. dependencies integrate | +36399|679510|29511|1|24|35747.52|0.08|0.00|A|F|1994-10-11|1994-11-13|1994-11-05|DELIVER IN PERSON|TRUCK| carefully pending accounts detect furiousl| +36424|594816|32350|1|40|76431.60|0.09|0.01|N|O|1996-11-19|1996-10-17|1996-12-08|NONE|AIR|arefully ironic foxes. pending requ| +36424|59552|34555|2|23|34765.65|0.05|0.04|N|O|1996-11-24|1996-12-09|1996-11-29|NONE|MAIL|ep carefully special packages. pen| +36424|886034|48552|3|9|9179.91|0.06|0.03|N|O|1997-01-02|1996-10-21|1997-01-27|TAKE BACK RETURN|MAIL| express packages cajole pending| +36424|558837|33860|4|4|7583.24|0.09|0.02|N|O|1996-11-22|1996-11-11|1996-12-07|NONE|RAIL|otes along the slyly regular ideas slee| +36424|364257|1779|5|42|55492.08|0.09|0.01|N|O|1996-11-11|1996-11-18|1996-11-18|COLLECT COD|FOB|nto beans. regular, final gifts are sly| +36424|58213|33216|6|24|28109.04|0.09|0.05|N|O|1997-01-02|1996-12-12|1997-01-17|TAKE BACK RETURN|RAIL|ons use carefully c| +36424|375243|25244|7|21|27682.83|0.07|0.04|N|O|1996-11-16|1996-11-06|1996-11-28|NONE|FOB|carefully unusual packages.| +36425|707245|44788|1|48|60106.08|0.10|0.02|N|O|1996-09-25|1996-09-08|1996-10-17|TAKE BACK RETURN|AIR| blithely. slyly final courts haggle fu| +36425|666160|16161|2|9|10135.17|0.04|0.03|N|O|1996-11-28|1996-09-10|1996-12-10|NONE|RAIL| furiously even deposits. furious| +36425|150015|12519|3|45|47925.45|0.01|0.04|N|O|1996-10-04|1996-09-03|1996-10-21|DELIVER IN PERSON|AIR| cajole slyly. blithely | +36425|289456|1962|4|43|62153.92|0.06|0.01|N|O|1996-09-06|1996-09-30|1996-09-19|NONE|SHIP|re according to the bold accou| +36425|873590|23591|5|14|21889.70|0.01|0.05|N|O|1996-10-20|1996-10-28|1996-11-10|TAKE BACK RETURN|SHIP|ven sauternes. theodolites cajole: u| +36425|412658|12659|6|36|56542.68|0.06|0.01|N|O|1996-12-02|1996-09-23|1996-12-04|NONE|MAIL|sits affix blithely. pending, ironic grouc| +36426|19758|19759|1|7|11744.25|0.04|0.00|N|O|1998-02-07|1998-03-23|1998-02-20|DELIVER IN PERSON|AIR|refully. carefully slow package| +36426|64317|14318|2|10|12813.10|0.00|0.05|N|O|1998-02-26|1998-03-18|1998-03-05|NONE|AIR|xpress, even depos| +36426|974726|12284|3|1|1800.68|0.01|0.06|N|O|1998-02-07|1998-03-31|1998-02-23|DELIVER IN PERSON|MAIL|omise carefully around the slyly re| +36426|210935|35944|4|7|12921.44|0.05|0.07|N|O|1998-01-29|1998-03-31|1998-02-10|NONE|REG AIR|uctions are about the final theod| +36427|787349|37350|1|14|20108.34|0.03|0.07|A|F|1993-10-11|1993-08-12|1993-10-27|COLLECT COD|SHIP|cial platelets against the ironic foxes h| +36427|974182|49221|2|14|17585.96|0.09|0.03|A|F|1993-10-18|1993-08-30|1993-11-14|NONE|MAIL|ncies alongsid| +36427|66566|16567|3|39|59769.84|0.04|0.08|A|F|1993-10-11|1993-09-24|1993-10-28|TAKE BACK RETURN|AIR|pending foxes boost carefully spec| +36428|966080|41119|1|3|3438.12|0.05|0.08|R|F|1995-05-08|1995-07-21|1995-05-09|NONE|SHIP|uriously regular packages cajole care| +36428|901758|1759|2|29|51031.59|0.03|0.02|N|O|1995-07-21|1995-07-09|1995-08-20|DELIVER IN PERSON|MAIL|furiously bold deposits against the quickl| +36428|830001|17550|3|33|30721.68|0.00|0.07|R|F|1995-05-05|1995-07-26|1995-05-31|NONE|RAIL|old requests are. q| +36428|813569|38602|4|9|13342.68|0.08|0.08|A|F|1995-05-19|1995-06-23|1995-05-29|DELIVER IN PERSON|TRUCK|s. slyly even foxes doze a| +36428|649917|37454|5|4|7467.52|0.00|0.01|N|O|1995-08-19|1995-06-19|1995-09-09|COLLECT COD|RAIL|ounts outside the express ideas | +36428|138471|974|6|31|46793.57|0.03|0.00|N|O|1995-08-03|1995-07-16|1995-08-20|NONE|MAIL| slyly. pend| +36429|836533|36534|1|37|54371.13|0.04|0.08|R|F|1993-10-18|1993-11-14|1993-10-24|NONE|TRUCK|nusual accounts engage quickly. | +36429|603200|15713|2|34|37507.78|0.08|0.08|R|F|1993-10-15|1993-10-24|1993-11-13|COLLECT COD|TRUCK|xpress requests. carefu| +36429|971875|34395|3|41|79820.03|0.02|0.05|R|F|1993-09-18|1993-09-21|1993-09-21|TAKE BACK RETURN|FOB|s. carefully final excuse| +36429|295523|8029|4|14|21259.14|0.03|0.02|R|F|1993-09-11|1993-10-05|1993-10-06|NONE|MAIL|. ironic instructions against the iron| +36430|798672|11188|1|50|88532.00|0.06|0.08|A|F|1992-05-20|1992-08-14|1992-06-04|TAKE BACK RETURN|TRUCK|yly final accounts.| +36430|271889|9405|2|46|85600.02|0.03|0.00|A|F|1992-07-25|1992-07-13|1992-08-04|DELIVER IN PERSON|FOB|rate according to the slyly | +36430|624537|49562|3|30|43845.00|0.03|0.07|A|F|1992-08-26|1992-07-12|1992-09-13|DELIVER IN PERSON|TRUCK|e pending, express reques| +36430|587971|483|4|2|4117.90|0.00|0.02|A|F|1992-08-29|1992-07-31|1992-09-23|TAKE BACK RETURN|TRUCK|ven excuses sleep across | +36430|27992|40493|5|16|30719.84|0.06|0.01|R|F|1992-07-12|1992-08-14|1992-07-26|COLLECT COD|RAIL|ve the furiously ironic asymptotes are | +36430|447408|34933|6|5|6776.90|0.03|0.03|R|F|1992-07-31|1992-07-20|1992-08-16|TAKE BACK RETURN|MAIL|s shall affix carefully bold hockey pl| +36431|33703|46204|1|39|63831.30|0.09|0.08|R|F|1992-07-16|1992-09-01|1992-08-02|COLLECT COD|FOB| express, regular deposi| +36431|439392|1901|2|15|19970.55|0.03|0.06|R|F|1992-09-04|1992-07-20|1992-10-03|NONE|SHIP|carefully regular packages haggle ca| +36431|859430|9431|3|42|58354.38|0.03|0.01|A|F|1992-09-04|1992-08-31|1992-09-10|NONE|REG AIR|uctions integrate care| +36431|431490|19015|4|45|63966.15|0.05|0.03|R|F|1992-07-07|1992-07-30|1992-07-14|NONE|AIR|use quickly at the silent, reg| +36431|37460|37461|5|36|50308.56|0.09|0.06|A|F|1992-06-20|1992-09-03|1992-07-05|COLLECT COD|FOB|eposits wake slyly final foxes. furiously | +36456|664254|1794|1|21|25582.62|0.04|0.01|N|O|1998-02-19|1998-02-19|1998-03-19|NONE|TRUCK|unts. ironic, final theodolites haggle f| +36457|635941|10966|1|19|35661.29|0.06|0.07|N|O|1998-05-25|1998-06-24|1998-06-13|COLLECT COD|SHIP|arefully above the bl| +36457|253344|3345|2|39|50595.87|0.06|0.05|N|O|1998-06-12|1998-06-07|1998-06-30|COLLECT COD|MAIL|sily bold accounts; even deposits wake. pac| +36457|945979|45980|3|25|50623.25|0.10|0.04|N|O|1998-06-25|1998-07-20|1998-06-28|NONE|REG AIR|l deposits. e| +36457|61525|24027|4|40|59460.80|0.00|0.03|N|O|1998-05-12|1998-07-10|1998-05-16|NONE|FOB|nic, special packages. deposits must mold | +36457|46861|34362|5|38|68698.68|0.03|0.06|N|O|1998-05-06|1998-07-20|1998-05-24|TAKE BACK RETURN|TRUCK| even requests wake about the| +36457|585618|35619|6|36|61329.24|0.06|0.06|N|O|1998-05-21|1998-07-17|1998-05-25|COLLECT COD|FOB|ross the fluf| +36458|20781|33282|1|25|42544.50|0.05|0.08|A|F|1993-02-28|1993-02-05|1993-03-30|TAKE BACK RETURN|AIR|ing to the carefully pending dep| +36458|257262|19768|2|39|47550.75|0.05|0.05|A|F|1993-02-19|1993-02-13|1993-03-07|TAKE BACK RETURN|MAIL|y regular, bold packages. bli| +36458|793106|43107|3|36|43166.52|0.04|0.03|A|F|1993-03-15|1993-03-04|1993-04-11|COLLECT COD|AIR|quests. ca| +36459|259116|21622|1|30|32253.00|0.09|0.04|A|F|1995-04-07|1995-02-24|1995-04-23|TAKE BACK RETURN|AIR|ld, unusual deposits s| +36459|947604|35159|2|25|41289.00|0.07|0.02|R|F|1995-01-05|1995-02-21|1995-02-03|COLLECT COD|TRUCK|ly unusual accounts sleep slyl| +36459|373018|10540|3|36|39276.00|0.09|0.07|A|F|1995-02-04|1995-02-12|1995-02-07|NONE|REG AIR|e furiously even deposits. quic| +36459|309237|9238|4|23|28663.06|0.00|0.05|R|F|1995-01-01|1995-02-11|1995-01-04|COLLECT COD|REG AIR|platelets. unusual theodolites integra| +36459|343954|6461|5|32|63934.08|0.08|0.07|A|F|1995-03-12|1995-02-18|1995-03-14|COLLECT COD|SHIP|es. quickly daring platelet| +36459|830908|18457|6|1|1838.86|0.09|0.05|A|F|1995-01-04|1995-02-08|1995-01-27|COLLECT COD|TRUCK|r packages. quickly close theodolites cajo| +36460|874771|24772|1|27|47134.71|0.07|0.01|N|O|1996-10-10|1996-07-31|1996-10-11|DELIVER IN PERSON|SHIP|express, express re| +36461|772764|35280|1|22|40408.06|0.04|0.00|N|O|1998-09-05|1998-08-20|1998-09-15|TAKE BACK RETURN|RAIL|iously slyly unusua| +36461|837395|24944|2|40|53294.00|0.01|0.00|N|O|1998-09-12|1998-09-01|1998-09-23|TAKE BACK RETURN|MAIL|are furiously after the even, | +36461|93973|6475|3|37|72777.89|0.10|0.05|N|O|1998-10-12|1998-09-09|1998-11-02|COLLECT COD|MAIL|ll cajole slyly. carefully unusua| +36461|395831|33353|4|10|19268.20|0.00|0.03|N|O|1998-08-02|1998-09-18|1998-08-11|COLLECT COD|REG AIR|lithely regular | +36462|13293|25794|1|23|27744.67|0.08|0.00|A|F|1994-10-30|1994-10-24|1994-11-27|TAKE BACK RETURN|RAIL|, final accounts are. slyl| +36462|411021|48546|2|35|32620.00|0.06|0.06|A|F|1994-12-06|1994-10-11|1994-12-17|NONE|FOB|ajole among the | +36462|18841|6342|3|16|28157.44|0.10|0.07|A|F|1994-10-03|1994-10-16|1994-10-16|TAKE BACK RETURN|REG AIR| special ac| +36463|509515|9516|1|14|21342.86|0.05|0.00|R|F|1992-11-27|1993-01-27|1992-12-26|DELIVER IN PERSON|FOB|hely even ideas. blithely regu| +36463|402652|2653|2|18|27983.34|0.02|0.02|R|F|1993-02-14|1993-02-02|1993-03-06|COLLECT COD|REG AIR|. bold platelets agains| +36463|367450|4972|3|19|28831.36|0.03|0.05|A|F|1993-01-19|1993-02-12|1993-02-15|COLLECT COD|MAIL|eodolites haggle thinly un| +36488|185358|47862|1|47|67837.45|0.10|0.01|R|F|1993-06-04|1993-08-10|1993-06-11|NONE|MAIL| furiously final excuses. slyly regu| +36488|305514|5515|2|24|36468.00|0.01|0.05|A|F|1993-08-07|1993-08-15|1993-08-19|TAKE BACK RETURN|AIR|sly along the carefully regu| +36488|758733|46279|3|47|84209.90|0.01|0.00|R|F|1993-07-17|1993-08-03|1993-07-21|NONE|RAIL|ress pinto beans. regular deposits| +36488|22010|34511|4|31|28892.31|0.10|0.07|R|F|1993-06-17|1993-08-15|1993-06-29|DELIVER IN PERSON|REG AIR| across the final packages. unusual,| +36488|915504|15505|5|2|3038.92|0.07|0.01|R|F|1993-07-27|1993-07-04|1993-07-31|DELIVER IN PERSON|FOB|theodolites. r| +36488|861017|48569|6|13|12713.61|0.04|0.07|R|F|1993-09-21|1993-08-10|1993-10-16|NONE|REG AIR| final pinto| +36488|100618|25623|7|50|80930.50|0.06|0.01|A|F|1993-06-08|1993-07-29|1993-06-22|COLLECT COD|RAIL| quickly alongside of the| +36489|72799|10303|1|39|69099.81|0.10|0.04|A|F|1995-02-13|1995-03-22|1995-03-04|NONE|AIR|tructions. fluffily ironic depo| +36489|520044|45065|2|18|19152.36|0.01|0.01|R|F|1995-01-09|1995-03-19|1995-01-23|NONE|AIR|lphins detect c| +36489|374533|12055|3|3|4822.56|0.10|0.03|R|F|1995-03-07|1995-02-03|1995-03-09|NONE|SHIP|pending requests around the furious| +36489|769692|19693|4|8|14093.28|0.02|0.05|A|F|1995-04-25|1995-03-02|1995-04-27|TAKE BACK RETURN|AIR|inal, idle ideas. blithely regular theodo| +36489|209443|9444|5|40|54097.20|0.06|0.03|A|F|1995-01-12|1995-03-11|1995-02-08|COLLECT COD|TRUCK|ly slyly ironic ideas. packages sh| +36490|539132|26663|1|6|7026.66|0.07|0.07|R|F|1993-09-10|1993-08-11|1993-10-07|TAKE BACK RETURN|RAIL|sleep. slyly pending courts are. quic| +36490|184711|9718|2|24|43097.04|0.03|0.03|R|F|1993-07-01|1993-09-09|1993-07-07|DELIVER IN PERSON|AIR| ideas. unusual, regular dependencies ca| +36490|430437|5454|3|32|43757.12|0.05|0.00|A|F|1993-09-22|1993-08-09|1993-10-06|TAKE BACK RETURN|TRUCK|uickly at the deposits. i| +36490|345983|20996|4|32|64927.04|0.08|0.05|R|F|1993-09-03|1993-09-09|1993-09-19|DELIVER IN PERSON|AIR|accounts. special | +36491|895970|45971|1|24|47182.32|0.09|0.00|N|O|1996-12-25|1996-11-17|1997-01-19|NONE|REG AIR|gular accou| +36491|555650|18162|2|45|76753.35|0.04|0.05|N|O|1996-11-12|1996-10-17|1996-11-26|DELIVER IN PERSON|SHIP|ns; pinto beans among the slyly ev| +36491|804773|17290|3|50|83886.50|0.06|0.00|N|O|1996-12-25|1996-10-05|1997-01-15|TAKE BACK RETURN|REG AIR|hely again| +36491|808878|8879|4|12|21441.96|0.05|0.08|N|O|1996-12-10|1996-11-21|1996-12-22|DELIVER IN PERSON|RAIL|yly according to the final, ex| +36492|621950|9487|1|6|11231.52|0.05|0.07|R|F|1994-12-29|1995-01-06|1995-01-27|DELIVER IN PERSON|REG AIR|s wake. ironic, special | +36492|104953|29958|2|47|92023.65|0.07|0.03|A|F|1994-12-31|1995-01-25|1995-01-20|NONE|SHIP|ronic pinto beans wake care| +36492|943966|19003|3|38|76376.96|0.01|0.03|A|F|1995-03-15|1995-02-13|1995-03-24|NONE|TRUCK|elets. express instructions sleep slyl| +36492|234689|9698|4|3|4871.01|0.07|0.00|R|F|1995-02-02|1995-01-08|1995-02-11|DELIVER IN PERSON|REG AIR|e furiously quickly| +36492|417385|42402|5|6|7814.16|0.05|0.03|A|F|1995-01-22|1995-01-18|1995-01-25|NONE|FOB|sly ironic warhorses are slyly quickly ir| +36493|712393|37422|1|46|64646.56|0.07|0.08|A|F|1993-01-14|1993-01-26|1993-02-08|DELIVER IN PERSON|AIR|ly unusual frets | +36493|182564|45068|2|35|57629.60|0.10|0.07|R|F|1992-12-29|1993-02-15|1993-01-02|TAKE BACK RETURN|AIR|eaves are about the bravely| +36493|340599|15612|3|19|31152.02|0.09|0.05|A|F|1993-04-13|1993-02-06|1993-05-02|COLLECT COD|MAIL|hely special asympt| +36493|433528|46037|4|15|21922.50|0.06|0.00|R|F|1993-01-09|1993-02-24|1993-02-04|COLLECT COD|RAIL|lly carefully even requests. furiou| +36493|290684|28200|5|46|77034.82|0.05|0.06|A|F|1993-01-23|1993-01-28|1993-02-16|TAKE BACK RETURN|MAIL|integrate carefully accoun| +36494|553586|28609|1|8|13116.48|0.00|0.04|N|O|1995-11-02|1995-11-05|1995-11-03|DELIVER IN PERSON|FOB|integrate. | +36494|105320|42827|2|50|66266.00|0.03|0.02|N|O|1995-11-04|1995-10-14|1995-11-15|TAKE BACK RETURN|TRUCK|ironically final deposits use furiously| +36494|110637|23140|3|39|64257.57|0.07|0.01|N|O|1995-10-18|1995-12-02|1995-11-08|DELIVER IN PERSON|FOB| the silentl| +36494|461790|49318|4|31|54304.87|0.09|0.01|N|O|1995-12-19|1995-11-29|1995-12-28|DELIVER IN PERSON|FOB|nts. ironic, unusual in| +36495|318873|31380|1|22|41620.92|0.06|0.05|N|O|1997-10-10|1997-07-27|1997-11-02|DELIVER IN PERSON|REG AIR|dencies nag blithely. slyly regular platel| +36495|282241|44747|2|29|35473.67|0.02|0.08|N|O|1997-09-13|1997-09-15|1997-10-12|DELIVER IN PERSON|TRUCK|ag. express deposits boost. final asympt| +36495|611284|36309|3|9|10757.25|0.03|0.04|N|O|1997-09-22|1997-08-19|1997-09-23|DELIVER IN PERSON|FOB|less requests c| +36495|847061|9578|4|37|37296.74|0.06|0.00|N|O|1997-10-02|1997-08-30|1997-10-04|NONE|FOB|ts haggle furiously deposits. bli| +36495|537647|25178|5|10|16846.20|0.06|0.00|N|O|1997-10-22|1997-09-10|1997-11-13|DELIVER IN PERSON|AIR| cajole furiously s| +36495|228877|28878|6|31|55981.66|0.04|0.07|N|O|1997-09-16|1997-08-11|1997-10-11|DELIVER IN PERSON|MAIL|ts cajole!| +36495|726914|26915|7|11|21349.68|0.04|0.05|N|O|1997-09-16|1997-09-09|1997-10-16|NONE|TRUCK|yly final dugouts. slyly ironic ins| +36520|233575|46080|1|18|27154.08|0.06|0.00|N|O|1997-08-29|1997-09-19|1997-09-20|NONE|FOB|ymptotes wake furiou| +36520|681229|43743|2|34|41146.46|0.00|0.02|N|O|1997-09-05|1997-10-23|1997-09-18|TAKE BACK RETURN|SHIP|utside the quickly regular | +36520|404045|41570|3|16|15184.32|0.09|0.08|N|O|1997-10-17|1997-10-31|1997-11-06|COLLECT COD|RAIL|quickly ironic| +36520|783626|46142|4|20|34191.80|0.07|0.06|N|O|1997-09-16|1997-09-20|1997-09-27|NONE|AIR| the regular requests. blithely ironic wate| +36520|386871|11886|5|29|56777.94|0.05|0.06|N|O|1997-09-29|1997-09-18|1997-09-30|NONE|AIR| nag slyly slyly ironic pa| +36520|137078|24585|6|10|11150.70|0.07|0.01|N|O|1997-10-30|1997-10-23|1997-11-07|COLLECT COD|FOB|r packages. instruc| +36520|865631|3183|7|21|33528.39|0.06|0.03|N|O|1997-11-09|1997-09-25|1997-12-08|NONE|AIR|jole furiously blithely bol| +36521|657292|19806|1|3|3747.78|0.00|0.03|A|F|1992-10-23|1992-12-15|1992-11-12|DELIVER IN PERSON|MAIL|gular packages. careful| +36521|93525|18528|2|17|25814.84|0.00|0.04|A|F|1993-01-12|1992-12-24|1993-02-07|DELIVER IN PERSON|SHIP|s. fluffily rut| +36521|868398|5950|3|19|25960.65|0.02|0.08|A|F|1993-02-06|1992-11-22|1993-02-20|NONE|SHIP|bout the slyly regular pin| +36521|158150|33157|4|13|15705.95|0.05|0.00|A|F|1993-01-26|1992-11-14|1993-02-09|TAKE BACK RETURN|AIR|pecial dinos sleep furiously. blithely| +36521|17121|4622|5|24|24914.88|0.10|0.04|A|F|1992-10-20|1992-11-26|1992-11-07|NONE|SHIP|ackages haggle furiously slyly even | +36522|589774|14797|1|16|29820.00|0.04|0.02|N|O|1997-09-30|1997-09-07|1997-10-04|COLLECT COD|FOB|old pains cajole quic| +36523|608900|21413|1|29|52457.23|0.09|0.06|R|F|1993-04-18|1993-04-02|1993-04-23|COLLECT COD|TRUCK|lithely ironic theodoli| +36523|773256|10802|2|37|49181.14|0.08|0.01|A|F|1993-04-30|1993-04-07|1993-05-29|TAKE BACK RETURN|RAIL|ructions. slyly unusual re| +36523|103364|28369|3|8|10938.88|0.02|0.00|R|F|1993-02-24|1993-04-11|1993-03-03|TAKE BACK RETURN|AIR|side of the regular requests.| +36523|228138|40643|4|5|5330.60|0.06|0.01|A|F|1993-03-15|1993-04-12|1993-03-19|COLLECT COD|SHIP|ckages. reg| +36523|313369|888|5|22|30411.70|0.00|0.02|R|F|1993-04-09|1993-05-01|1993-04-12|DELIVER IN PERSON|AIR|ously along the pending asym| +36523|780121|5152|6|29|34831.61|0.06|0.01|R|F|1993-04-15|1993-05-21|1993-04-24|NONE|REG AIR| special warhorses. special, i| +36524|174099|11609|1|48|56308.32|0.10|0.08|A|F|1994-08-01|1994-09-03|1994-08-22|COLLECT COD|AIR| theodolites cajole car| +36524|78556|28557|2|32|49105.60|0.08|0.01|R|F|1994-08-08|1994-09-13|1994-08-16|TAKE BACK RETURN|TRUCK|nal excuses are furio| +36524|280171|30172|3|39|44895.24|0.08|0.04|A|F|1994-10-21|1994-09-10|1994-11-06|NONE|TRUCK| requests. furiously pending instruction| +36524|824497|37014|4|14|19900.30|0.02|0.02|A|F|1994-09-08|1994-07-31|1994-09-25|COLLECT COD|FOB|y final requests ag| +36524|318642|43655|5|17|28230.71|0.08|0.02|A|F|1994-07-05|1994-08-29|1994-07-22|COLLECT COD|TRUCK|nic theodolites. unusual, expr| +36525|320254|7773|1|36|45872.64|0.01|0.06|A|F|1994-07-21|1994-07-27|1994-08-01|TAKE BACK RETURN|AIR| deposits.| +36525|500918|38449|2|19|36458.91|0.01|0.06|R|F|1994-08-11|1994-08-23|1994-09-02|NONE|REG AIR|ts sleep. furiously even packag| +36525|924276|11831|3|8|10401.84|0.07|0.08|A|F|1994-07-04|1994-08-16|1994-07-14|TAKE BACK RETURN|REG AIR| express theodolites-- slyly regular idea| +36525|290944|15955|4|32|61917.76|0.09|0.07|A|F|1994-09-14|1994-07-10|1994-10-03|TAKE BACK RETURN|SHIP|requests. re| +36525|891628|16663|5|28|45348.24|0.05|0.03|A|F|1994-07-23|1994-08-05|1994-07-28|TAKE BACK RETURN|TRUCK|ven, regular instructions| +36525|578521|3544|6|37|59181.50|0.07|0.04|R|F|1994-09-05|1994-07-26|1994-09-13|DELIVER IN PERSON|SHIP|usly carefully regular requests.| +36526|625569|13106|1|37|55297.61|0.03|0.01|R|F|1993-05-03|1993-04-18|1993-05-20|TAKE BACK RETURN|SHIP|gular accounts to the slyly ent| +36526|929515|29516|2|1|1544.47|0.04|0.07|R|F|1993-04-05|1993-06-16|1993-04-28|COLLECT COD|FOB| sheaves. deposits hagg| +36527|567324|42347|1|39|54260.70|0.03|0.07|A|F|1995-02-14|1995-02-12|1995-03-14|NONE|TRUCK|te along the furiou| +36527|9291|9292|2|26|31207.54|0.00|0.01|R|F|1995-03-19|1995-03-03|1995-03-23|DELIVER IN PERSON|AIR|s. ironic theodo| +36527|144770|32277|3|6|10888.62|0.07|0.07|R|F|1995-01-20|1995-01-03|1995-02-03|DELIVER IN PERSON|AIR|refully express dep| +36552|249861|49862|1|22|39838.70|0.05|0.02|A|F|1992-08-19|1992-05-31|1992-09-14|TAKE BACK RETURN|FOB|permanently even platelets. final pa| +36552|407093|32110|2|41|41002.87|0.06|0.01|R|F|1992-07-27|1992-06-02|1992-08-21|NONE|AIR|s sleep fluffily unusual excuses-- c| +36553|688407|25947|1|50|69768.50|0.10|0.06|A|F|1994-01-18|1994-01-24|1994-02-09|COLLECT COD|SHIP|eodolites. final, regular deposits a| +36553|49210|24211|2|28|32457.88|0.00|0.05|R|F|1993-12-14|1994-02-14|1993-12-26|DELIVER IN PERSON|TRUCK|fluffily packages. regular| +36554|967064|4622|1|42|47502.84|0.08|0.02|A|F|1995-03-28|1995-05-10|1995-04-20|NONE|RAIL|uickly bold dugouts along the final, final | +36554|434837|34838|2|48|85046.88|0.10|0.06|A|F|1995-03-27|1995-03-28|1995-04-05|COLLECT COD|AIR|ronic deposits haggle furiously across th| +36555|835572|48089|1|3|4522.59|0.02|0.08|N|O|1998-08-15|1998-08-20|1998-09-05|COLLECT COD|FOB| cajole carefully. carefully dogg| +36555|455749|30768|2|21|35799.12|0.10|0.07|N|O|1998-08-18|1998-09-10|1998-08-25|DELIVER IN PERSON|REG AIR|nding, silent reque| +36556|829007|16556|1|46|43054.16|0.01|0.02|N|O|1996-10-26|1996-12-04|1996-10-29|TAKE BACK RETURN|REG AIR|ke slyly final | +36556|120534|33037|2|1|1554.53|0.00|0.05|N|O|1996-12-06|1996-12-18|1996-12-11|DELIVER IN PERSON|REG AIR|unusual deposits boost carefu| +36556|807755|32788|3|34|56532.14|0.08|0.08|N|O|1996-12-19|1996-12-25|1996-12-26|TAKE BACK RETURN|MAIL|de of the car| +36557|474970|24971|1|7|13614.65|0.01|0.00|R|F|1994-01-25|1994-01-12|1994-02-09|DELIVER IN PERSON|AIR|he furiously pending packages.| +36557|805891|30924|2|9|16171.65|0.03|0.00|A|F|1993-12-07|1994-02-22|1993-12-14|COLLECT COD|RAIL|eposits sleep accounts. bold| +36557|593839|18862|3|49|94707.69|0.08|0.08|R|F|1994-03-19|1994-01-25|1994-03-30|DELIVER IN PERSON|MAIL|y ironic req| +36557|639618|2131|4|3|4672.74|0.02|0.01|R|F|1994-02-09|1994-01-27|1994-02-26|COLLECT COD|SHIP|counts sleep. dependencies h| +36557|54989|4990|5|39|75815.22|0.04|0.03|A|F|1994-02-03|1994-01-24|1994-02-12|NONE|REG AIR|ly along the| +36557|191528|16535|6|22|35629.44|0.06|0.08|R|F|1993-12-07|1994-02-22|1993-12-24|TAKE BACK RETURN|TRUCK|onic requests. carefu| +36557|3928|3929|7|20|36638.40|0.08|0.01|A|F|1994-01-10|1994-01-30|1994-01-29|TAKE BACK RETURN|MAIL| platelets use quickly. slyly i| +36558|9407|21908|1|12|15796.80|0.10|0.04|A|F|1994-05-20|1994-06-16|1994-06-04|DELIVER IN PERSON|MAIL|ainst the furiously silent accounts. un| +36558|90429|40430|2|45|63873.90|0.04|0.07|R|F|1994-05-31|1994-06-25|1994-06-05|COLLECT COD|FOB|to use alongside of| +36558|832223|19772|3|4|4620.72|0.07|0.01|A|F|1994-08-17|1994-07-11|1994-09-12|NONE|RAIL| blithely against| +36558|160823|23327|4|6|11302.92|0.01|0.05|R|F|1994-07-08|1994-06-09|1994-08-04|DELIVER IN PERSON|RAIL|press asymptotes. blithely| +36558|949567|37122|5|49|79209.48|0.00|0.08|R|F|1994-06-07|1994-06-18|1994-06-20|DELIVER IN PERSON|AIR|xpress accounts wake carefully idle pa| +36559|839817|14850|1|31|54459.87|0.06|0.05|A|F|1994-02-14|1994-01-25|1994-02-25|COLLECT COD|AIR|ly unusual packages wake furiousl| +36559|804296|41845|2|41|49210.25|0.03|0.08|R|F|1994-01-09|1994-02-11|1994-01-15|COLLECT COD|AIR|ven requests a| +36559|798424|35970|3|8|12179.12|0.00|0.04|R|F|1994-01-22|1994-02-04|1994-02-14|COLLECT COD|SHIP|regular sentimen| +36559|110530|48037|4|2|3081.06|0.00|0.03|A|F|1994-01-11|1994-01-26|1994-02-03|COLLECT COD|FOB| blithely against | +36584|779604|42120|1|31|52190.67|0.09|0.05|N|O|1996-12-15|1996-09-18|1997-01-02|COLLECT COD|MAIL|e ironic, ev| +36584|791334|16365|2|40|57012.00|0.03|0.08|N|O|1996-11-20|1996-10-02|1996-12-16|TAKE BACK RETURN|FOB|n accounts | +36584|940816|28371|3|17|31565.09|0.00|0.04|N|O|1996-11-26|1996-09-22|1996-12-25|DELIVER IN PERSON|AIR| instructions sleep quic| +36584|280786|30787|4|48|84804.96|0.09|0.05|N|O|1996-10-14|1996-10-11|1996-10-28|TAKE BACK RETURN|FOB|ccounts boost fur| +36585|700545|546|1|14|21637.14|0.01|0.00|N|O|1996-05-24|1996-07-06|1996-06-10|DELIVER IN PERSON|AIR|kly even packages de| +36585|59459|34462|2|16|22695.20|0.03|0.02|N|O|1996-08-05|1996-07-30|1996-09-03|COLLECT COD|MAIL| requests integrate according| +36585|327365|27366|3|35|48732.25|0.09|0.02|N|O|1996-07-14|1996-06-16|1996-08-05|NONE|SHIP|e among the theodol| +36585|19102|6603|4|6|6126.60|0.00|0.02|N|O|1996-08-02|1996-07-05|1996-08-03|COLLECT COD|TRUCK|y even ideas use foxes. frets unwind fina| +36586|671533|46560|1|49|73720.50|0.05|0.08|N|O|1997-08-17|1997-09-02|1997-08-24|COLLECT COD|REG AIR| regular accounts detect idly around | +36586|448574|48575|2|30|45676.50|0.00|0.04|N|O|1997-10-10|1997-09-18|1997-10-28|NONE|SHIP|gainst the slyl| +36586|168462|18463|3|43|65809.78|0.04|0.08|N|O|1997-11-07|1997-09-23|1997-12-03|COLLECT COD|TRUCK|es wake carefully around| +36586|334455|46962|4|50|74472.00|0.08|0.05|N|O|1997-11-12|1997-09-09|1997-11-25|NONE|REG AIR|s. ironic, ironic dependen| +36586|175206|12716|5|29|37154.80|0.05|0.00|N|O|1997-09-26|1997-08-28|1997-10-07|NONE|SHIP|final ideas | +36587|285288|47794|1|15|19099.05|0.06|0.03|R|F|1995-03-03|1995-04-05|1995-03-17|DELIVER IN PERSON|AIR|the furiously express | +36587|821073|46106|2|15|14910.45|0.02|0.06|N|F|1995-06-11|1995-04-16|1995-06-20|COLLECT COD|TRUCK|uctions haggle f| +36587|769337|31853|3|33|46407.90|0.02|0.02|A|F|1995-03-04|1995-05-15|1995-03-26|TAKE BACK RETURN|TRUCK|hely express accounts. blithely ironic | +36588|754694|29725|1|50|87433.00|0.10|0.06|A|F|1993-04-16|1993-04-04|1993-05-07|NONE|FOB|nd the slyly bold theodolites. bli| +36588|137453|12458|2|19|28318.55|0.02|0.08|R|F|1993-05-28|1993-04-19|1993-06-22|NONE|RAIL|uffily blithely even p| +36588|160263|35270|3|15|19848.90|0.05|0.03|R|F|1993-04-13|1993-03-26|1993-05-12|NONE|REG AIR|lithely bold deposits wake blithel| +36588|527228|14759|4|46|57739.20|0.01|0.04|R|F|1993-02-23|1993-03-30|1993-03-24|NONE|SHIP|al platelets haggle | +36588|120087|7594|5|43|47604.44|0.05|0.04|A|F|1993-05-08|1993-03-23|1993-05-26|TAKE BACK RETURN|FOB|he finally unusual deposits hagg| +36589|606297|43834|1|32|38504.32|0.07|0.04|N|O|1997-10-05|1997-08-08|1997-10-31|TAKE BACK RETURN|RAIL|s sleep across t| +36589|16902|4403|2|33|60023.70|0.03|0.04|N|O|1997-08-09|1997-08-24|1997-08-19|COLLECT COD|TRUCK| kindle across the final frets| +36589|62088|37091|3|7|7350.56|0.06|0.00|N|O|1997-10-21|1997-09-16|1997-11-11|NONE|REG AIR|ntly regular| +36590|993841|43842|1|13|25152.40|0.05|0.00|N|O|1996-05-20|1996-05-04|1996-06-06|COLLECT COD|RAIL|ns-- carefully bo| +36590|479393|29394|2|4|5489.48|0.05|0.07|N|O|1996-04-19|1996-03-28|1996-05-13|NONE|REG AIR|silent, regula| +36590|156336|6337|3|43|59870.19|0.01|0.08|N|O|1996-04-29|1996-05-09|1996-05-23|NONE|MAIL|tes impress about the ironic requ| +36591|522371|34882|1|19|26473.65|0.06|0.02|A|F|1992-11-14|1992-10-14|1992-11-28|COLLECT COD|AIR|ly final i| +36591|487087|49597|2|36|38666.16|0.09|0.04|R|F|1992-10-04|1992-08-28|1992-10-14|COLLECT COD|MAIL|ly somas. | +36616|300805|806|1|35|63202.65|0.02|0.04|N|O|1997-04-24|1997-04-27|1997-05-01|DELIVER IN PERSON|REG AIR|ng the slyly bold ideas. pending, quie| +36616|613251|13252|2|12|13970.64|0.02|0.02|N|O|1997-05-05|1997-04-17|1997-05-23|NONE|AIR|ironic, express pinto beans wa| +36616|909526|34563|3|37|56812.76|0.04|0.03|N|O|1997-04-13|1997-04-24|1997-04-17|DELIVER IN PERSON|TRUCK| carefully bol| +36616|397507|47508|4|43|68993.07|0.04|0.02|N|O|1997-05-21|1997-05-27|1997-06-19|NONE|RAIL| unusual foxes na| +36616|890069|40070|5|4|4236.08|0.06|0.01|N|O|1997-05-01|1997-04-17|1997-05-30|NONE|RAIL|thely final warhorses. fra| +36616|374624|49639|6|34|57752.74|0.04|0.07|N|O|1997-03-07|1997-04-29|1997-03-23|TAKE BACK RETURN|AIR|odolites are. pinto beans run bli| +36617|888035|553|1|42|42965.58|0.05|0.04|A|F|1995-02-01|1995-02-24|1995-02-06|NONE|MAIL|equests aff| +36617|197065|22072|2|1|1162.06|0.08|0.08|R|F|1995-03-27|1995-02-07|1995-04-23|DELIVER IN PERSON|MAIL|ns are carefully along the slyl| +36617|64577|2081|3|35|53954.95|0.05|0.05|R|F|1995-03-26|1995-02-22|1995-03-31|NONE|RAIL|the requests. slyly regular ide| +36618|874315|36833|1|26|33521.02|0.05|0.07|N|O|1996-05-10|1996-05-16|1996-06-07|COLLECT COD|AIR|ong the quickly bold asymptotes n| +36618|611033|23546|2|35|33040.00|0.00|0.00|N|O|1996-06-22|1996-06-01|1996-07-19|COLLECT COD|MAIL|ently even platelets impress fluffily s| +36618|621549|46574|3|9|13234.59|0.00|0.01|N|O|1996-04-18|1996-06-01|1996-05-07|COLLECT COD|FOB|are blithely requests. iron| +36618|365064|15065|4|35|39516.75|0.01|0.08|N|O|1996-05-02|1996-06-04|1996-05-07|TAKE BACK RETURN|RAIL|carefully blithely bold instruction| +36618|626187|13724|5|4|4452.60|0.02|0.05|N|O|1996-07-02|1996-05-25|1996-07-30|COLLECT COD|RAIL|posits maintain slyly al| +36618|310138|35151|6|23|26406.76|0.02|0.05|N|O|1996-04-01|1996-06-05|1996-04-13|DELIVER IN PERSON|TRUCK|ackages detect according to t| +36618|472725|10253|7|29|49233.30|0.00|0.04|N|O|1996-06-06|1996-04-28|1996-06-12|COLLECT COD|FOB|totes sleep. blithely final exc| +36619|83816|21320|1|14|25197.34|0.04|0.06|A|F|1993-03-06|1992-12-25|1993-03-13|DELIVER IN PERSON|MAIL|ites wake furiously regular depend| +36619|686439|36440|2|17|24231.80|0.07|0.02|A|F|1992-12-13|1992-12-14|1993-01-05|NONE|TRUCK|r requests. requests wa| +36619|970935|45974|3|4|8023.56|0.05|0.07|R|F|1992-11-24|1993-01-28|1992-12-16|COLLECT COD|SHIP| above the fluffily regula| +36619|502285|14796|4|48|61788.48|0.00|0.06|A|F|1992-12-11|1993-01-21|1992-12-25|COLLECT COD|REG AIR|ng foxes. slyly regular asympto| +36619|899710|12228|5|44|75225.48|0.09|0.04|A|F|1993-01-20|1993-01-10|1993-02-04|COLLECT COD|REG AIR|onic multipliers across the somet| +36620|86402|11405|1|23|31933.20|0.05|0.06|A|F|1992-03-04|1992-03-28|1992-03-12|TAKE BACK RETURN|REG AIR| regular instructions. unusual theodolites | +36620|143920|43921|2|25|49098.00|0.05|0.00|R|F|1992-02-01|1992-03-01|1992-02-28|NONE|FOB|ts. express packages among the| +36621|726856|1885|1|47|88492.54|0.01|0.01|N|O|1995-12-01|1995-12-17|1995-12-17|COLLECT COD|RAIL|efully quickly special de| +36621|257274|19780|2|44|54175.44|0.00|0.01|N|O|1996-01-08|1995-12-18|1996-01-11|DELIVER IN PERSON|FOB|s. furious| +36622|284982|34983|1|30|59009.10|0.01|0.01|R|F|1994-03-12|1994-03-28|1994-04-09|COLLECT COD|RAIL| blithely fluffily s| +36622|678186|15726|2|40|46566.00|0.02|0.07|A|F|1994-05-06|1994-04-13|1994-05-20|DELIVER IN PERSON|AIR|ording to t| +36622|263379|13380|3|34|45640.24|0.00|0.06|A|F|1994-04-16|1994-03-24|1994-05-11|TAKE BACK RETURN|REG AIR| asymptotes. slyly regula| +36622|603094|28119|4|46|45864.76|0.06|0.00|R|F|1994-06-10|1994-04-21|1994-06-11|TAKE BACK RETURN|FOB|lyly bold pinto beans. depende| +36622|191493|16500|5|24|38027.76|0.04|0.08|A|F|1994-04-19|1994-04-14|1994-05-09|NONE|RAIL|s wake furiously special accounts| +36622|421787|21788|6|13|22213.88|0.02|0.03|A|F|1994-05-01|1994-04-17|1994-05-10|TAKE BACK RETURN|TRUCK|oys after the per| +36622|965649|3207|7|11|18860.60|0.00|0.03|R|F|1994-06-13|1994-04-30|1994-07-11|NONE|FOB|inal packages solve slyly packag| +36623|655354|42894|1|43|56300.76|0.10|0.05|R|F|1993-01-11|1993-01-02|1993-01-18|NONE|SHIP| pending foxes are. blithely | +36623|518110|43131|2|22|24817.98|0.04|0.08|R|F|1993-02-03|1993-01-26|1993-02-19|COLLECT COD|TRUCK|lyly pending accoun| +36623|868170|43205|3|13|14795.69|0.04|0.08|R|F|1993-01-20|1992-12-26|1993-02-06|TAKE BACK RETURN|RAIL|refully fluffily ir| +36623|327369|27370|4|19|26530.65|0.07|0.08|A|F|1993-02-02|1992-12-27|1993-02-20|DELIVER IN PERSON|RAIL|ites among the re| +36648|477310|2329|1|28|36044.12|0.08|0.08|N|O|1996-09-02|1996-09-29|1996-10-01|DELIVER IN PERSON|REG AIR|the silent requests. closely bold req| +36648|146897|34404|2|7|13607.23|0.06|0.00|N|O|1996-10-16|1996-10-05|1996-10-28|DELIVER IN PERSON|REG AIR|rnis poach| +36648|881943|19495|3|13|25023.70|0.09|0.04|N|O|1996-08-16|1996-10-11|1996-08-24|DELIVER IN PERSON|RAIL|le quickly| +36649|357847|32862|1|13|24762.79|0.02|0.08|N|O|1996-05-04|1996-03-30|1996-05-12|NONE|SHIP|ave to nag| +36649|334329|9342|2|46|62712.26|0.02|0.02|N|O|1996-05-07|1996-03-22|1996-05-30|TAKE BACK RETURN|AIR| regular platelets. furious| +36649|57852|7853|3|14|25337.90|0.10|0.07|N|O|1996-06-21|1996-04-01|1996-07-14|DELIVER IN PERSON|MAIL|posits. carefully pending | +36650|332109|44616|1|8|9128.72|0.02|0.06|N|O|1997-04-27|1997-05-01|1997-05-26|TAKE BACK RETURN|TRUCK|packages. ideas cajole. final packages | +36650|741715|4230|2|15|26350.20|0.01|0.04|N|O|1997-07-13|1997-05-20|1997-08-03|TAKE BACK RETURN|SHIP|fix. regular requests wake. | +36650|2767|15268|3|29|48423.04|0.04|0.05|N|O|1997-05-11|1997-05-14|1997-05-30|NONE|TRUCK|y carefully re| +36650|498206|10716|4|13|15654.34|0.10|0.02|N|O|1997-03-30|1997-05-03|1997-04-09|TAKE BACK RETURN|MAIL| sleep blithely across the final | +36650|332286|19805|5|42|55367.34|0.01|0.03|N|O|1997-05-08|1997-05-02|1997-05-21|NONE|REG AIR|kages wake slyly accord| +36650|719148|44177|6|46|53687.06|0.05|0.05|N|O|1997-05-17|1997-04-13|1997-05-27|COLLECT COD|TRUCK|ages. final foxes sle| +36650|712737|280|7|12|20996.40|0.01|0.06|N|O|1997-06-18|1997-06-08|1997-07-07|NONE|SHIP| are slyly. ironic req| +36651|964560|2118|1|13|21118.76|0.10|0.00|R|F|1994-02-07|1994-03-16|1994-03-09|COLLECT COD|RAIL| unusual packages are furiou| +36652|496307|33835|1|14|18245.92|0.01|0.06|A|F|1993-08-01|1993-08-24|1993-08-20|COLLECT COD|RAIL|ts wake. ironic requests cajole slyly. iron| +36652|426526|39035|2|31|45027.50|0.02|0.05|A|F|1993-07-30|1993-09-06|1993-08-10|DELIVER IN PERSON|RAIL|ssly final request| +36652|618225|18226|3|6|6859.14|0.03|0.04|R|F|1993-08-15|1993-09-11|1993-09-07|COLLECT COD|AIR|lithely pending asymptotes us| +36652|495745|33273|4|21|36555.12|0.01|0.07|A|F|1993-09-11|1993-08-22|1993-09-19|COLLECT COD|REG AIR|e of the blithely | +36653|882825|20377|1|2|3615.56|0.02|0.00|N|O|1997-04-05|1997-06-05|1997-04-14|DELIVER IN PERSON|RAIL|ets are slyl| +36653|638917|38918|2|29|53820.52|0.03|0.06|N|O|1997-06-16|1997-05-09|1997-06-24|DELIVER IN PERSON|RAIL|e deposits! s| +36653|273627|36133|3|32|51219.52|0.04|0.01|N|O|1997-04-14|1997-05-21|1997-04-26|DELIVER IN PERSON|REG AIR|slyly pending | +36653|834449|21998|4|45|62253.00|0.02|0.03|N|O|1997-04-10|1997-05-24|1997-05-08|COLLECT COD|SHIP|ag blithely against the caref| +36654|372757|22758|1|8|14637.92|0.02|0.04|R|F|1992-05-13|1992-05-23|1992-06-08|COLLECT COD|TRUCK|jole. dependencie| +36654|924162|24163|2|42|49817.04|0.07|0.08|A|F|1992-03-27|1992-03-27|1992-04-05|DELIVER IN PERSON|SHIP|ic excuses ca| +36655|762377|24893|1|42|60452.28|0.03|0.04|A|F|1994-06-03|1994-07-23|1994-06-09|COLLECT COD|AIR|e blithely even acc| +36655|260524|23030|2|5|7422.55|0.04|0.05|R|F|1994-06-18|1994-07-19|1994-07-18|DELIVER IN PERSON|AIR|unusual hocke| +36680|513305|13306|1|25|32957.00|0.05|0.07|N|O|1995-07-11|1995-05-24|1995-07-17|COLLECT COD|AIR|luffily ironic pinto beans. busily| +36680|109024|21527|2|28|28924.56|0.07|0.06|R|F|1995-04-21|1995-06-10|1995-04-26|DELIVER IN PERSON|SHIP|ffy ideas. blithely bold packages w| +36680|359112|9113|3|20|23422.00|0.03|0.07|N|O|1995-07-12|1995-06-04|1995-07-31|COLLECT COD|RAIL|he dogged deposits are a| +36680|594278|31812|4|27|37050.75|0.00|0.03|N|O|1995-07-21|1995-05-31|1995-08-12|NONE|REG AIR|al ideas. ironic d| +36681|714782|27297|1|14|25154.50|0.05|0.06|N|O|1996-12-06|1996-12-17|1996-12-22|NONE|REG AIR|usly. carefully regula| +36681|340557|3064|2|3|4792.62|0.03|0.03|N|O|1997-02-15|1996-12-25|1997-03-14|TAKE BACK RETURN|MAIL|ng platelets. carefully dogged deposi| +36681|726869|39384|3|3|5687.49|0.08|0.02|N|O|1996-12-22|1997-01-31|1996-12-27|NONE|RAIL|fully ironic dependencies. c| +36682|842468|4985|1|31|43723.02|0.02|0.03|N|O|1996-08-18|1996-10-09|1996-08-24|COLLECT COD|RAIL|arly regular deposits ha| +36682|358149|20657|2|42|50699.46|0.05|0.05|N|O|1996-09-07|1996-10-06|1996-09-29|COLLECT COD|MAIL|nag alongside of the fluffil| +36682|408775|21284|3|27|45461.25|0.02|0.05|N|O|1996-11-03|1996-10-14|1996-11-24|COLLECT COD|SHIP|kages haggle carefully| +36682|265853|3369|4|9|16369.56|0.06|0.05|N|O|1996-08-23|1996-09-14|1996-09-19|NONE|MAIL| use pending accounts. | +36683|759210|21726|1|10|12691.80|0.09|0.05|R|F|1993-02-21|1993-01-16|1993-03-22|TAKE BACK RETURN|RAIL|nly bold requests along | +36683|26281|26282|2|43|51913.04|0.01|0.00|R|F|1993-04-06|1993-02-14|1993-04-16|TAKE BACK RETURN|TRUCK| the slyly special theodoli| +36683|689109|26649|3|12|13176.84|0.08|0.05|R|F|1993-03-14|1993-02-20|1993-03-28|NONE|RAIL|heodolites. slowly| +36683|847791|35340|4|29|50423.75|0.01|0.00|R|F|1993-04-05|1993-03-06|1993-04-15|NONE|RAIL|are carefully around the b| +36684|361919|49441|1|9|17828.10|0.06|0.06|N|O|1997-11-15|1997-10-10|1997-11-29|DELIVER IN PERSON|SHIP|le fluffily aro| +36685|399609|24624|1|13|22211.67|0.02|0.08|A|F|1992-12-22|1992-10-07|1993-01-15|TAKE BACK RETURN|REG AIR|usly final idea| +36685|217454|4967|2|17|23314.48|0.10|0.02|R|F|1992-11-23|1992-11-20|1992-12-20|COLLECT COD|FOB|c instructions wake. slyl| +36685|744221|6736|3|43|54403.17|0.10|0.01|A|F|1992-10-20|1992-11-03|1992-10-24|TAKE BACK RETURN|SHIP|s according to t| +36685|115967|40972|4|30|59488.80|0.10|0.01|R|F|1992-12-03|1992-11-06|1992-12-25|COLLECT COD|TRUCK|t to are along the bold, s| +36686|652916|27943|1|39|72886.32|0.04|0.01|R|F|1994-02-23|1994-03-31|1994-02-25|DELIVER IN PERSON|AIR|ly regular pinto bean| +36686|551763|39297|2|37|67145.38|0.08|0.07|R|F|1994-05-10|1994-03-04|1994-05-20|DELIVER IN PERSON|REG AIR|old, ironic reques| +36686|469914|7442|3|25|47097.25|0.04|0.05|R|F|1994-03-15|1994-02-22|1994-04-05|DELIVER IN PERSON|AIR|. regular, ev| +36686|828871|28872|4|21|37796.43|0.02|0.05|R|F|1994-02-04|1994-02-14|1994-03-02|NONE|TRUCK|nic packages. slyly ironic ac| +36686|833880|33881|5|40|72553.60|0.09|0.06|A|F|1994-02-16|1994-03-27|1994-02-18|COLLECT COD|REG AIR|ckly across the| +36686|17579|42580|6|31|46393.67|0.05|0.08|A|F|1994-04-22|1994-03-05|1994-05-03|TAKE BACK RETURN|RAIL|lphins cajole against the instructi| +36687|138197|700|1|23|28409.37|0.01|0.04|A|F|1992-04-04|1992-05-01|1992-04-18|NONE|MAIL|efully regula| +36687|672921|22922|2|29|54922.81|0.09|0.01|R|F|1992-04-01|1992-04-03|1992-04-21|TAKE BACK RETURN|FOB|ng packages about| +36687|775232|37748|3|11|14379.20|0.02|0.03|A|F|1992-02-20|1992-04-25|1992-02-28|TAKE BACK RETURN|RAIL|he silent, s| +36687|308316|45835|4|5|6621.50|0.08|0.05|R|F|1992-04-03|1992-04-28|1992-04-26|TAKE BACK RETURN|AIR| carefully expres| +36687|864969|40004|5|7|13537.44|0.09|0.08|A|F|1992-03-30|1992-04-02|1992-04-19|COLLECT COD|SHIP|ironic cour| +36687|525056|77|6|15|16215.45|0.07|0.08|A|F|1992-03-10|1992-03-19|1992-03-15|COLLECT COD|SHIP|g to the express instructions wake furious| +36687|612132|24645|7|49|51160.90|0.05|0.04|R|F|1992-02-24|1992-04-07|1992-03-22|TAKE BACK RETURN|SHIP| are daringly careful | +36712|102503|15006|1|16|24088.00|0.02|0.06|R|F|1994-11-30|1994-12-10|1994-12-08|TAKE BACK RETURN|MAIL|fully brave pa| +36712|751852|39398|2|11|20942.02|0.02|0.00|R|F|1995-02-07|1994-12-15|1995-02-26|DELIVER IN PERSON|RAIL|e final instructions. regul| +36712|365858|3380|3|5|9619.20|0.04|0.00|R|F|1995-02-10|1994-12-28|1995-03-07|DELIVER IN PERSON|MAIL|packages across the q| +36712|972158|22159|4|47|57815.17|0.08|0.08|A|F|1994-12-07|1995-01-03|1994-12-08|NONE|RAIL|slyly special a| +36712|44133|6634|5|42|45239.46|0.00|0.01|A|F|1995-02-28|1994-12-03|1995-03-12|DELIVER IN PERSON|REG AIR|eposits. quickly bold | +36713|747407|34950|1|37|53811.69|0.01|0.01|N|O|1998-01-14|1997-11-21|1998-02-11|COLLECT COD|TRUCK|ockey players use furiousl| +36714|548303|23324|1|44|59456.32|0.08|0.03|R|F|1995-03-25|1995-05-27|1995-04-17|TAKE BACK RETURN|REG AIR|osits. depo| +36714|320373|32880|2|42|58521.12|0.09|0.02|N|O|1995-06-30|1995-06-02|1995-07-23|COLLECT COD|SHIP|ironic deposits| +36714|508319|8320|3|25|33182.25|0.00|0.06|N|O|1995-06-26|1995-04-21|1995-07-10|DELIVER IN PERSON|RAIL|onic pinto beans are a| +36714|314632|14633|4|45|74097.90|0.05|0.06|A|F|1995-03-29|1995-05-12|1995-04-15|TAKE BACK RETURN|REG AIR|quickly along the carefully pending a| +36715|479634|17162|1|48|77453.28|0.00|0.01|N|O|1995-12-25|1995-11-24|1996-01-18|TAKE BACK RETURN|MAIL|cial deposits. blithely regular depende| +36715|193271|43272|2|7|9549.89|0.08|0.04|N|O|1995-11-15|1995-12-02|1995-12-07|DELIVER IN PERSON|RAIL|r asymptotes. blithely close packages| +36715|298474|23485|3|20|29449.20|0.07|0.08|N|O|1995-11-03|1995-11-01|1995-11-11|TAKE BACK RETURN|AIR|icing sheaves wake sl| +36715|448081|10590|4|45|46307.70|0.07|0.06|N|O|1995-11-26|1995-11-04|1995-12-10|COLLECT COD|FOB|rts detect instead of the | +36715|880908|30909|5|33|62332.38|0.05|0.01|N|O|1996-01-28|1995-11-12|1996-02-16|DELIVER IN PERSON|FOB|deas after the | +36715|419070|44087|6|20|19781.00|0.06|0.01|N|O|1996-01-13|1995-11-23|1996-01-30|NONE|RAIL|lyly express package| +36715|298190|35706|7|36|42774.48|0.06|0.08|N|O|1995-12-18|1995-12-11|1996-01-04|COLLECT COD|REG AIR|the ironic packages nag r| +36716|664666|39693|1|49|79900.87|0.10|0.02|N|O|1995-10-25|1995-12-11|1995-11-11|NONE|SHIP|sly even theodol| +36716|37098|37099|2|35|36228.15|0.04|0.03|N|O|1995-12-20|1995-10-24|1995-12-27|TAKE BACK RETURN|AIR| regular, even ideas| +36716|490987|40988|3|41|81096.36|0.03|0.06|N|O|1995-10-13|1995-11-19|1995-11-05|COLLECT COD|MAIL|ainst the quickly express | +36717|322727|35234|1|43|75237.53|0.09|0.08|N|O|1997-05-08|1997-06-03|1997-06-05|COLLECT COD|MAIL| final req| +36717|62422|49926|2|50|69221.00|0.04|0.07|N|O|1997-06-26|1997-06-19|1997-07-03|NONE|RAIL|ounts: express accoun| +36717|113631|13632|3|50|82231.50|0.01|0.05|N|O|1997-04-17|1997-05-20|1997-05-06|TAKE BACK RETURN|FOB|s. slyly pending requests across the quickl| +36717|796168|21199|4|40|50565.20|0.04|0.06|N|O|1997-05-19|1997-06-26|1997-06-01|DELIVER IN PERSON|MAIL|ly regular id| +36717|191450|41451|5|26|40077.70|0.05|0.00|N|O|1997-07-19|1997-05-21|1997-07-21|NONE|MAIL|ole. special, bold instructions must have| +36717|690601|15628|6|18|28648.26|0.03|0.04|N|O|1997-06-19|1997-05-20|1997-07-12|TAKE BACK RETURN|RAIL|regular accounts. ironic, | +36718|472522|10050|1|16|23912.00|0.06|0.07|N|O|1998-03-15|1997-12-26|1998-03-30|COLLECT COD|TRUCK|leep doggedl| +36718|670885|8425|2|14|25981.90|0.08|0.00|N|O|1997-12-05|1998-01-26|1997-12-17|COLLECT COD|SHIP|eans haggle. quickly pending pint| +36718|556248|43782|3|20|26084.40|0.07|0.04|N|O|1998-01-29|1998-02-06|1998-02-20|DELIVER IN PERSON|REG AIR|ake carefully across the even ex| +36718|846427|33976|4|50|68669.00|0.06|0.02|N|O|1998-02-05|1998-02-02|1998-03-07|TAKE BACK RETURN|FOB|fluffy accounts are slyly pe| +36718|894106|44107|5|11|12100.66|0.06|0.06|N|O|1998-01-30|1998-01-23|1998-02-08|COLLECT COD|RAIL|ep furiously across the special depos| +36719|858814|21332|1|49|86865.73|0.00|0.06|N|O|1995-11-01|1995-12-22|1995-11-07|NONE|FOB|ow foxes wake. blithely regular requests| +36744|555491|18003|1|23|35568.81|0.07|0.05|N|O|1997-03-15|1997-02-12|1997-03-28|NONE|RAIL|ideas sleep alongside of the furiously| +36744|123584|11091|2|24|38581.92|0.09|0.04|N|O|1997-04-14|1997-03-10|1997-04-22|NONE|TRUCK|lphins cajole furiously along the expre| +36744|67264|4768|3|47|57869.22|0.02|0.01|N|O|1997-02-04|1997-02-27|1997-02-10|DELIVER IN PERSON|RAIL|s. slyly regular request| +36744|505289|42820|4|3|3882.78|0.04|0.05|N|O|1997-01-24|1997-01-30|1997-02-13|COLLECT COD|SHIP|haggle quickly bold packages. quickly expre| +36744|385387|35388|5|33|48588.21|0.01|0.00|N|O|1997-02-23|1997-02-10|1997-02-27|COLLECT COD|AIR|ly regular foxes. somet| +36744|192522|30032|6|49|79111.48|0.01|0.06|N|O|1997-01-01|1997-02-18|1997-01-25|TAKE BACK RETURN|MAIL| deposits. regular, unusual r| +36744|708061|45604|7|30|32070.90|0.05|0.01|N|O|1997-01-25|1997-02-21|1997-02-23|COLLECT COD|RAIL| blithely. furiously final a| +36745|372152|22153|1|43|52638.02|0.03|0.08|N|O|1997-11-20|1997-12-21|1997-12-05|TAKE BACK RETURN|MAIL| pending excu| +36745|753803|16319|2|19|35278.63|0.00|0.04|N|O|1997-11-17|1998-01-03|1997-11-18|DELIVER IN PERSON|RAIL|ns solve slyly.| +36745|154792|29799|3|38|70178.02|0.00|0.03|N|O|1997-12-16|1997-12-23|1997-12-22|NONE|MAIL| ironic accounts play even theodolites. | +36745|586322|23856|4|35|49290.50|0.06|0.00|N|O|1997-12-07|1997-12-12|1997-12-25|COLLECT COD|AIR|ages. quickly even reques| +36745|299314|24325|5|16|21012.80|0.09|0.08|N|O|1998-02-19|1998-01-03|1998-03-08|TAKE BACK RETURN|FOB|wake slyly slyly daring pac| +36746|330651|43158|1|47|79037.08|0.10|0.00|A|F|1992-08-26|1992-08-21|1992-09-05|DELIVER IN PERSON|TRUCK|ideas wake slyly. carefully special| +36747|90247|40248|1|2|2474.48|0.05|0.07|N|O|1996-11-27|1996-12-26|1996-12-05|NONE|MAIL|hely regular instructions are busily| +36747|767745|42776|2|20|36254.20|0.03|0.06|N|O|1997-01-30|1996-11-13|1997-02-02|DELIVER IN PERSON|RAIL|s across the pinto | +36747|487574|84|3|6|9369.30|0.09|0.03|N|O|1996-10-17|1996-11-16|1996-11-15|COLLECT COD|RAIL|nly. blithely ironic pack| +36748|108461|33466|1|23|33797.58|0.01|0.08|A|F|1992-04-19|1992-04-07|1992-04-21|NONE|RAIL|st the carefully pen| +36748|887617|12652|2|10|16045.70|0.06|0.08|R|F|1992-03-13|1992-03-11|1992-04-12|DELIVER IN PERSON|REG AIR| print carefully regular pla| +36748|168453|18454|3|28|42600.60|0.05|0.07|R|F|1992-03-03|1992-04-01|1992-03-26|DELIVER IN PERSON|MAIL|s. even accounts about the | +36748|186255|48759|4|35|46943.75|0.00|0.05|A|F|1992-03-02|1992-03-29|1992-03-03|DELIVER IN PERSON|REG AIR|dolites are furiously after the regular | +36748|375649|13171|5|37|63811.31|0.01|0.03|A|F|1992-04-22|1992-04-01|1992-05-01|NONE|TRUCK|into beans haggle slyly. thin| +36748|530532|43043|6|37|57812.87|0.05|0.03|A|F|1992-03-14|1992-04-01|1992-03-19|COLLECT COD|AIR|l deposits are slyly quiet packages. slyly| +36748|650611|25638|7|46|71832.68|0.02|0.02|R|F|1992-05-22|1992-03-29|1992-05-29|COLLECT COD|RAIL|e carefully regular asymptotes. spe| +36749|804880|42429|1|14|24987.76|0.02|0.00|R|F|1993-10-27|1993-12-01|1993-10-31|COLLECT COD|SHIP|y final instructio| +36749|609921|22434|2|11|20139.79|0.05|0.08|A|F|1993-10-15|1993-11-28|1993-10-17|NONE|TRUCK|ut the carefully even dolphins sublate| +36749|932484|20039|3|1|1516.44|0.03|0.06|A|F|1993-11-27|1993-10-23|1993-12-09|DELIVER IN PERSON|AIR| ironic sheaves sh| +36750|86273|48775|1|42|52889.34|0.00|0.01|N|O|1998-03-08|1998-04-01|1998-03-16|COLLECT COD|RAIL| busy ideas after the regular, ironic depen| +36751|247534|47535|1|9|13333.68|0.06|0.07|N|O|1997-05-26|1997-08-01|1997-06-13|NONE|RAIL|rint. acco| +36751|292292|4798|2|35|44949.80|0.02|0.06|N|O|1997-08-14|1997-07-01|1997-08-15|COLLECT COD|RAIL|hins. unusual pa| +36751|547675|22696|3|41|70628.65|0.09|0.07|N|O|1997-08-10|1997-08-15|1997-08-26|COLLECT COD|RAIL|ously pending accounts are carefully b| +36751|771461|46492|4|39|59764.77|0.08|0.06|N|O|1997-09-11|1997-08-07|1997-10-07|NONE|FOB|es are packages; furiously bold requ| +36751|932890|45409|5|24|46148.40|0.04|0.01|N|O|1997-06-20|1997-08-01|1997-06-29|DELIVER IN PERSON|AIR|riously. special,| +36776|70509|8013|1|42|62139.00|0.07|0.04|N|O|1996-02-08|1996-01-17|1996-02-22|COLLECT COD|TRUCK|xcuses. even, bold tithes above the furious| +36776|32222|7223|2|41|47323.02|0.07|0.03|N|O|1995-12-09|1996-01-04|1995-12-15|NONE|TRUCK|sual deposits cajole b| +36776|546866|9377|3|33|63123.72|0.09|0.02|N|O|1996-02-17|1996-01-15|1996-03-06|NONE|RAIL|es. accounts nag. courts sleep | +36776|165075|2585|4|11|12540.77|0.07|0.00|N|O|1996-01-21|1995-11-28|1996-02-06|DELIVER IN PERSON|MAIL|gle furiously. excu| +36777|712483|12484|1|35|52340.75|0.05|0.00|N|O|1995-10-18|1995-08-22|1995-10-20|DELIVER IN PERSON|AIR|ly. fluffily ironic deposit| +36778|247736|10241|1|35|58930.20|0.10|0.07|N|O|1997-04-12|1997-05-23|1997-04-13|COLLECT COD|FOB|f the slyly final grouches. even re| +36778|684914|9941|2|44|83550.72|0.05|0.05|N|O|1997-03-13|1997-05-04|1997-03-27|DELIVER IN PERSON|AIR|ronic pinto b| +36778|337306|49813|3|4|5373.16|0.00|0.00|N|O|1997-04-16|1997-05-05|1997-05-13|NONE|TRUCK|round the carefully e| +36778|100158|25163|4|47|54433.05|0.02|0.04|N|O|1997-05-04|1997-05-19|1997-05-28|COLLECT COD|RAIL|s are furiously car| +36779|253013|40529|1|37|35742.00|0.05|0.00|N|O|1996-09-03|1996-07-23|1996-09-19|TAKE BACK RETURN|MAIL|ts. fluffily unusual pinto bean| +36779|382878|32879|2|49|96082.14|0.10|0.06|N|O|1996-07-15|1996-08-08|1996-08-07|NONE|FOB|ffily. deposits use furiou| +36780|238387|892|1|10|13253.70|0.07|0.01|N|O|1996-06-24|1996-08-16|1996-07-04|COLLECT COD|TRUCK|press pinto beans cajole furiously furi| +36780|569385|31897|2|22|31995.92|0.09|0.03|N|O|1996-06-29|1996-08-25|1996-07-07|DELIVER IN PERSON|TRUCK|ding packages. regular, | +36781|572859|47882|1|49|94659.67|0.08|0.08|N|O|1997-01-30|1997-01-09|1997-02-06|DELIVER IN PERSON|FOB| slyly express pinto beans haggle doggedl| +36781|40904|15905|2|24|44277.60|0.00|0.08|N|O|1996-11-10|1996-11-20|1996-11-21|COLLECT COD|FOB|the express dinos are finally furiously | +36782|968304|18305|1|21|28817.46|0.01|0.01|A|F|1993-01-25|1993-01-28|1993-01-31|DELIVER IN PERSON|REG AIR|efully. fluffily ironic requests ser| +36782|280082|17598|2|12|12744.84|0.09|0.01|R|F|1992-12-26|1993-02-28|1993-01-16|NONE|RAIL|across the b| +36782|334670|9683|3|39|66481.74|0.07|0.04|R|F|1992-12-26|1993-02-09|1993-01-13|NONE|TRUCK|inal asymptotes. slowly special foxes was| +36782|785291|22837|4|15|20643.90|0.05|0.07|A|F|1993-03-18|1993-01-07|1993-04-10|DELIVER IN PERSON|REG AIR| unusual, ironic epitaphs | +36782|371526|46541|5|47|75082.97|0.01|0.06|R|F|1993-03-15|1993-01-09|1993-03-23|DELIVER IN PERSON|AIR|y ironic deposits hagg| +36782|227688|2697|6|10|16156.70|0.02|0.02|R|F|1993-02-03|1993-01-11|1993-02-21|COLLECT COD|SHIP| carefully regular deposi| +36782|748940|23969|7|21|41767.11|0.00|0.01|R|F|1993-04-06|1993-02-10|1993-04-22|NONE|REG AIR|ns. packages nag carefully reque| +36783|430209|30210|1|19|21644.42|0.02|0.01|N|O|1996-11-08|1996-11-11|1996-11-20|DELIVER IN PERSON|TRUCK|ironic requests.| +36783|511133|23644|2|1|1144.11|0.10|0.02|N|O|1996-12-01|1996-10-29|1996-12-04|NONE|RAIL|counts. boldly express requests after the f| +36783|603441|3442|3|8|10755.28|0.02|0.02|N|O|1996-12-20|1996-12-04|1997-01-09|TAKE BACK RETURN|SHIP|r multipliers doze slyly. blithely| +36783|27813|27814|4|18|31334.58|0.02|0.04|N|O|1996-12-29|1996-10-30|1997-01-13|DELIVER IN PERSON|REG AIR|nic dependencies sleep s| +36808|366229|3751|1|7|9066.47|0.07|0.01|R|F|1993-12-18|1994-02-25|1993-12-19|TAKE BACK RETURN|AIR| furiously regular requests b| +36808|207395|19900|2|42|54699.96|0.05|0.05|R|F|1994-01-15|1994-01-29|1994-02-14|TAKE BACK RETURN|AIR| express dep| +36808|673796|23797|3|37|65481.12|0.02|0.08|R|F|1994-01-02|1994-02-27|1994-01-19|TAKE BACK RETURN|TRUCK|ithely. furiously | +36808|475407|426|4|4|5529.52|0.01|0.05|R|F|1994-03-12|1994-01-19|1994-03-14|COLLECT COD|RAIL|ter the regular instructions| +36808|157332|19836|5|45|62519.85|0.06|0.04|R|F|1994-03-31|1994-01-25|1994-04-13|TAKE BACK RETURN|REG AIR|above the ironic theodolit| +36808|274384|49395|6|30|40751.10|0.02|0.06|R|F|1994-01-27|1994-03-06|1994-01-30|COLLECT COD|AIR|telets. packages are slyly. pending f| +36808|564046|14047|7|30|33300.60|0.10|0.01|R|F|1993-12-26|1994-02-06|1994-01-15|COLLECT COD|TRUCK|ccounts impr| +36809|920957|45994|1|50|98895.50|0.03|0.01|N|O|1996-10-29|1996-09-10|1996-11-23|NONE|MAIL|. blithely unusual | +36809|514672|14673|2|33|55659.45|0.08|0.07|N|O|1996-09-19|1996-09-02|1996-10-13|NONE|REG AIR|requests nag even, fi| +36809|89952|14955|3|9|17477.55|0.02|0.06|N|O|1996-08-23|1996-10-16|1996-09-16|TAKE BACK RETURN|REG AIR| furiously express, regular sheaves. slyly| +36809|817175|17176|4|9|9829.17|0.10|0.06|N|O|1996-10-16|1996-09-22|1996-11-07|TAKE BACK RETURN|REG AIR|the instructions. slyl| +36809|259684|34695|5|17|27942.39|0.02|0.06|N|O|1996-08-26|1996-09-27|1996-09-18|COLLECT COD|FOB|jole slyly ironic tithe| +36810|970488|20489|1|5|7792.20|0.07|0.08|N|O|1995-12-14|1995-12-03|1996-01-02|NONE|SHIP|somas mold quickly fluffily even accou| +36810|985425|22983|2|4|6041.52|0.09|0.01|N|O|1995-10-18|1995-11-02|1995-11-13|TAKE BACK RETURN|RAIL|iously quiet requests| +36811|704381|4382|1|14|19394.90|0.04|0.03|A|F|1993-03-17|1993-04-19|1993-04-02|NONE|SHIP|r, quiet excuses. stealthily | +36811|520927|33438|2|24|46749.60|0.09|0.08|A|F|1993-04-19|1993-04-29|1993-04-25|DELIVER IN PERSON|AIR|nding, pend| +36812|112574|37579|1|9|14279.13|0.04|0.04|R|F|1992-06-21|1992-07-01|1992-07-20|TAKE BACK RETURN|MAIL|arefully final pinto beans sleep c| +36813|606753|44290|1|5|8298.60|0.05|0.01|N|O|1996-10-22|1996-12-22|1996-11-07|DELIVER IN PERSON|MAIL|mpress carefully | +36813|691189|41190|2|18|21242.70|0.03|0.08|N|O|1996-11-15|1996-12-15|1996-12-15|DELIVER IN PERSON|REG AIR| pending courts| +36813|807932|7933|3|20|36797.80|0.10|0.04|N|O|1996-12-31|1996-12-20|1997-01-13|NONE|REG AIR|lithely: quickly enticing not| +36813|899116|49117|4|45|50178.15|0.02|0.08|N|O|1997-01-07|1996-11-26|1997-02-04|COLLECT COD|REG AIR|quests. blithely bold dolphi| +36813|437159|37160|5|50|54806.50|0.07|0.08|N|O|1996-11-03|1997-01-09|1996-11-26|DELIVER IN PERSON|RAIL|e blithely unusual packages hag| +36814|439073|1582|1|44|44530.20|0.10|0.03|A|F|1992-06-08|1992-07-03|1992-06-16|COLLECT COD|SHIP|regular de| +36814|497084|47085|2|15|16215.90|0.06|0.02|R|F|1992-05-30|1992-07-20|1992-06-07|TAKE BACK RETURN|REG AIR|ns wake fur| +36814|474414|24415|3|18|24991.02|0.08|0.07|R|F|1992-08-16|1992-07-23|1992-09-06|NONE|RAIL|press, bold accounts det| +36815|827647|27648|1|32|50387.20|0.10|0.03|A|F|1992-11-30|1992-12-27|1992-12-30|COLLECT COD|AIR| the carefull| +36815|255640|18146|2|28|44677.64|0.10|0.05|R|F|1992-11-30|1992-12-04|1992-12-18|DELIVER IN PERSON|AIR|hely regularly ironic grouches. furiously | +36840|687807|25347|1|36|64611.72|0.03|0.03|N|O|1998-01-19|1998-01-22|1998-02-03|NONE|MAIL|he bold, even pinto b| +36840|958265|45823|2|2|2646.44|0.01|0.01|N|O|1997-11-23|1998-01-26|1997-12-08|COLLECT COD|SHIP|tions wake quickly across the furiously fi| +36840|558259|20771|3|28|36882.44|0.01|0.02|N|O|1998-02-17|1998-01-25|1998-02-19|DELIVER IN PERSON|TRUCK|ular requests use blithely blithely bold| +36840|650269|12783|4|25|30480.75|0.06|0.02|N|O|1998-01-29|1998-01-13|1998-02-01|COLLECT COD|RAIL|ick platelets.| +36840|65561|40564|5|40|61062.40|0.00|0.08|N|O|1998-02-26|1998-01-08|1998-03-28|COLLECT COD|MAIL|st special foxes; pending theodolites s| +36840|872204|22205|6|31|36460.96|0.01|0.06|N|O|1997-12-22|1997-12-30|1998-01-20|COLLECT COD|MAIL|lyly regular pinto beans. slyly fin| +36840|125954|38457|7|43|85137.85|0.08|0.00|N|O|1997-12-30|1997-12-23|1998-01-02|NONE|RAIL| regular requests haggl| +36841|897059|9577|1|7|7392.07|0.05|0.00|A|F|1993-04-22|1993-05-15|1993-04-27|NONE|MAIL|uests cajole blithel| +36841|854414|29449|2|18|24630.66|0.01|0.03|A|F|1993-06-24|1993-06-04|1993-07-02|DELIVER IN PERSON|REG AIR|dencies are blithely requests. regu| +36842|215720|28225|1|15|24535.65|0.04|0.07|R|F|1992-02-27|1992-04-08|1992-02-29|TAKE BACK RETURN|TRUCK|ironic deposits haggle furiously| +36842|589681|2193|2|3|5311.98|0.07|0.05|A|F|1992-03-18|1992-03-31|1992-04-05|COLLECT COD|FOB|sits must have to haggle alon| +36842|756785|6786|3|18|33151.50|0.02|0.07|R|F|1992-03-18|1992-04-09|1992-03-31|DELIVER IN PERSON|SHIP|refully final ideas cajole furiously | +36842|282453|7464|4|29|41627.76|0.09|0.01|A|F|1992-05-11|1992-04-14|1992-05-31|DELIVER IN PERSON|FOB|ideas boost against the blit| +36842|173245|23246|5|9|11864.16|0.06|0.05|R|F|1992-02-20|1992-03-18|1992-03-10|NONE|TRUCK|uctions cajole slyly across the| +36843|452868|27887|1|12|21850.08|0.02|0.02|R|F|1994-06-15|1994-08-25|1994-07-04|COLLECT COD|SHIP|final theodolites above the even pattern| +36843|350307|308|2|4|5429.16|0.02|0.00|R|F|1994-08-08|1994-07-06|1994-08-31|TAKE BACK RETURN|MAIL|ar packages play. ca| +36844|753092|40638|1|4|4580.24|0.00|0.06|R|F|1992-05-17|1992-03-06|1992-05-20|NONE|AIR| requests | +36844|203136|3137|2|7|7273.84|0.09|0.01|R|F|1992-05-08|1992-04-03|1992-05-10|NONE|SHIP|sly furiously special courts| +36844|98510|11012|3|4|6034.04|0.07|0.01|R|F|1992-05-07|1992-04-13|1992-05-25|TAKE BACK RETURN|MAIL|beans sleep slyly. carefully special theo| +36844|656185|18699|4|49|55916.35|0.03|0.01|A|F|1992-05-12|1992-03-10|1992-06-09|NONE|MAIL|xpress packages wake quickly upon| +36844|488124|634|5|23|25578.30|0.05|0.07|A|F|1992-04-13|1992-04-01|1992-04-25|COLLECT COD|MAIL|ts. blithely regular package| +36845|359353|9354|1|35|49431.90|0.08|0.04|N|O|1995-08-05|1995-10-20|1995-09-03|TAKE BACK RETURN|TRUCK|symptotes grow furiously above the furiousl| +36845|634500|34501|2|5|7172.35|0.10|0.06|N|O|1995-10-29|1995-08-31|1995-11-06|DELIVER IN PERSON|REG AIR|ke dolphins. even deposits sleep a| +36845|29440|16941|3|20|27388.80|0.09|0.08|N|O|1995-08-19|1995-08-29|1995-08-22|NONE|TRUCK|arefully ironic deposits among th| +36845|787941|37942|4|5|10144.55|0.08|0.08|N|O|1995-08-07|1995-09-18|1995-08-24|DELIVER IN PERSON|RAIL|w, final instructions against the carefull| +36845|914453|26972|5|9|13206.69|0.09|0.08|N|O|1995-08-23|1995-10-07|1995-09-13|COLLECT COD|MAIL|ts. permanently regular re| +36845|211286|36295|6|35|41904.45|0.07|0.08|N|O|1995-09-06|1995-10-11|1995-09-27|NONE|TRUCK|ly bold som| +36846|663187|25701|1|12|13801.80|0.06|0.04|N|O|1997-04-02|1997-06-03|1997-04-20|COLLECT COD|TRUCK| the quick| +36846|171235|8745|2|47|61392.81|0.01|0.00|N|O|1997-06-27|1997-05-29|1997-07-27|COLLECT COD|REG AIR|deas sleep fluffily. p| +36846|945876|45877|3|30|57654.90|0.10|0.08|N|O|1997-07-03|1997-06-27|1997-08-02|DELIVER IN PERSON|SHIP|ly regular packages. darin| +36846|333134|33135|4|9|10504.08|0.09|0.01|N|O|1997-07-13|1997-06-07|1997-07-17|NONE|TRUCK|ts. blithely even requests | +36846|978652|3691|5|44|76146.84|0.03|0.01|N|O|1997-07-15|1997-05-18|1997-07-27|COLLECT COD|TRUCK|r dependencies| +36846|195054|45055|6|20|22981.00|0.03|0.05|N|O|1997-05-02|1997-05-24|1997-05-09|COLLECT COD|AIR|ic accounts. blit| +36847|638536|38537|1|45|66352.50|0.04|0.00|R|F|1994-05-05|1994-04-02|1994-06-03|COLLECT COD|AIR|s are fluffily | +36872|308675|21182|1|15|25254.90|0.06|0.03|N|O|1997-12-04|1997-12-12|1997-12-15|NONE|AIR|ffily sly accounts: | +36872|898638|11156|2|5|8182.95|0.02|0.07|N|O|1998-01-12|1998-01-19|1998-01-22|DELIVER IN PERSON|MAIL| slyly. regular ideas affix c| +36872|398985|24000|3|24|50015.28|0.04|0.05|N|O|1997-11-05|1997-12-26|1997-11-19|NONE|SHIP|fluffy deposits. slyly even foxes haggle; | +36872|734831|9860|4|10|18658.00|0.00|0.08|N|O|1998-01-21|1998-01-27|1998-01-25|TAKE BACK RETURN|SHIP|bold pinto | +36872|293858|6364|5|32|59258.88|0.03|0.04|N|O|1997-11-05|1998-01-03|1997-11-08|NONE|RAIL|uriously permanent packages. pen| +36872|858630|8631|6|24|38126.16|0.08|0.02|N|O|1997-11-16|1998-01-25|1997-12-16|COLLECT COD|TRUCK|ully carefully even| +36872|979925|29926|7|23|46112.24|0.00|0.00|N|O|1998-01-02|1998-01-11|1998-01-29|DELIVER IN PERSON|AIR|e carefully pending realms. furio| +36873|595627|45628|1|41|70626.60|0.08|0.05|N|O|1998-05-15|1998-03-24|1998-06-12|TAKE BACK RETURN|SHIP| deposits around the slyly express accoun| +36873|687820|334|2|5|9038.95|0.01|0.03|N|O|1998-02-17|1998-03-04|1998-03-07|DELIVER IN PERSON|REG AIR| slyly final packages. s| +36873|188048|13055|3|50|56802.00|0.01|0.03|N|O|1998-05-01|1998-03-20|1998-05-16|NONE|RAIL|packages. slyly pending account| +36873|507719|7720|4|40|69067.60|0.01|0.08|N|O|1998-01-23|1998-02-21|1998-01-26|DELIVER IN PERSON|RAIL|anent, ironic excuses eat carefully abo| +36873|222529|22530|5|47|68220.97|0.04|0.01|N|O|1998-03-17|1998-03-02|1998-04-05|COLLECT COD|REG AIR|d packages wake carefully about the| +36874|767664|30180|1|14|24242.82|0.01|0.02|A|F|1995-05-20|1995-04-22|1995-06-11|DELIVER IN PERSON|MAIL|le after the furiously quiet instructions.| +36875|369266|19267|1|6|8011.50|0.06|0.07|N|O|1996-11-28|1996-09-26|1996-12-12|NONE|FOB| use furiously quickly final realms. | +36875|252885|15391|2|17|31243.79|0.02|0.01|N|O|1996-09-15|1996-10-11|1996-09-22|NONE|SHIP|equests sleep| +36875|223286|35791|3|29|35068.83|0.02|0.06|N|O|1996-10-17|1996-09-12|1996-10-27|TAKE BACK RETURN|SHIP|ackages. blit| +36876|386794|49302|1|3|5642.34|0.02|0.04|R|F|1993-01-18|1992-12-16|1993-02-08|NONE|TRUCK|ly express platelets according | +36876|841078|3595|2|13|13247.39|0.08|0.01|A|F|1992-10-21|1992-12-30|1992-11-08|COLLECT COD|RAIL|y unusual frets alon| +36876|997142|9662|3|30|37173.00|0.08|0.00|A|F|1992-12-05|1992-12-25|1992-12-07|TAKE BACK RETURN|FOB| quickly pending sauternes detect slyly a| +36877|710943|35972|1|47|91833.77|0.09|0.07|N|O|1997-06-02|1997-04-26|1997-06-04|TAKE BACK RETURN|TRUCK|tes sleep ca| +36877|813825|26342|2|2|3477.56|0.08|0.01|N|O|1997-04-03|1997-03-20|1997-04-08|TAKE BACK RETURN|REG AIR|n theodolites wake. carefully ironic fox| +36877|944253|6772|3|45|58374.45|0.10|0.06|N|O|1997-04-25|1997-04-04|1997-05-19|COLLECT COD|MAIL| use permanently. ironic the| +36878|96372|46373|1|45|61576.65|0.02|0.02|A|F|1994-06-20|1994-04-13|1994-07-07|TAKE BACK RETURN|MAIL|hely about the unusua| +36878|723484|48513|2|35|52760.75|0.07|0.04|A|F|1994-06-04|1994-05-17|1994-06-08|COLLECT COD|MAIL|tions cajole across the regular pi| +36878|591379|41380|3|43|63225.05|0.09|0.03|A|F|1994-06-10|1994-06-03|1994-06-23|COLLECT COD|MAIL|. closely unusual accounts haggle sly| +36878|297793|22804|4|46|82375.88|0.06|0.08|A|F|1994-07-08|1994-06-01|1994-07-26|TAKE BACK RETURN|SHIP|bove the blithely careful dep| +36878|999808|24847|5|48|91572.48|0.08|0.05|A|F|1994-06-16|1994-04-26|1994-07-05|COLLECT COD|SHIP|e blithely. fluffily | +36879|140914|15919|1|46|89925.86|0.04|0.01|A|F|1993-01-23|1993-02-03|1993-02-21|TAKE BACK RETURN|SHIP|refully bold ideas han| +36879|339590|39591|2|13|21184.54|0.09|0.06|A|F|1992-12-18|1993-01-23|1992-12-27|DELIVER IN PERSON|SHIP| special ideas are above | +36879|480602|18130|3|26|41147.08|0.07|0.01|A|F|1993-02-15|1992-12-29|1993-02-27|TAKE BACK RETURN|RAIL| requests accordin| +36879|473191|48210|4|48|55880.16|0.06|0.03|R|F|1993-02-04|1993-01-21|1993-02-20|NONE|TRUCK| shall wake fluffily even| +36879|918489|31008|5|18|27133.92|0.03|0.08|A|F|1992-12-08|1992-12-21|1993-01-04|TAKE BACK RETURN|AIR|uriously a| +36879|36175|11176|6|42|46669.14|0.01|0.00|R|F|1993-01-27|1992-12-27|1993-02-18|COLLECT COD|AIR|uriously unusual accounts. pl| +36904|261999|49515|1|30|58829.40|0.05|0.02|A|F|1992-05-21|1992-04-09|1992-06-12|TAKE BACK RETURN|RAIL|ests. daring packages serve fluffily b| +36904|403161|28178|2|50|53207.00|0.07|0.08|A|F|1992-03-24|1992-04-21|1992-04-12|DELIVER IN PERSON|REG AIR|oxes cajole | +36904|911505|11506|3|2|3032.92|0.06|0.07|A|F|1992-03-15|1992-05-04|1992-03-25|COLLECT COD|MAIL|ronic deposits. carefully regular acc| +36904|652650|27677|4|19|30449.78|0.07|0.03|R|F|1992-03-26|1992-03-28|1992-03-27|NONE|MAIL|bold, final packages sleep furiously | +36904|78735|28736|5|32|54839.36|0.06|0.00|A|F|1992-05-14|1992-03-10|1992-06-05|NONE|REG AIR|ns haggle enticingly outside the carefully | +36905|148032|48033|1|23|24840.69|0.07|0.00|A|F|1992-06-05|1992-05-17|1992-06-21|NONE|AIR| pending r| +36905|960080|22600|2|16|18240.64|0.04|0.04|A|F|1992-05-14|1992-06-04|1992-05-22|COLLECT COD|FOB|xpress excuses. sl| +36905|49003|49004|3|1|952.00|0.10|0.00|A|F|1992-07-02|1992-04-26|1992-07-10|DELIVER IN PERSON|REG AIR|at the regular package| +36905|587558|37559|4|5|8227.65|0.06|0.03|A|F|1992-07-14|1992-06-09|1992-07-23|TAKE BACK RETURN|REG AIR|ly around the express| +36905|84695|9698|5|7|11757.83|0.03|0.04|A|F|1992-04-22|1992-04-19|1992-04-25|TAKE BACK RETURN|TRUCK|lar instructions? idly even pinto bean| +36905|462515|43|6|49|72397.01|0.03|0.03|R|F|1992-06-26|1992-06-01|1992-06-30|COLLECT COD|TRUCK|silent deposits. ruthlessly final deposits| +36906|772115|9661|1|19|22554.52|0.07|0.01|N|O|1995-08-17|1995-09-28|1995-09-05|DELIVER IN PERSON|REG AIR|packages. carefully ironic request| +36906|927679|40198|2|25|42665.75|0.01|0.07|N|O|1995-09-12|1995-10-11|1995-09-25|NONE|TRUCK|sits. even, ironic theodolites coul| +36906|494973|44974|3|3|5903.85|0.01|0.08|N|O|1995-10-21|1995-11-04|1995-11-14|DELIVER IN PERSON|SHIP|counts. slyly silent deposi| +36906|456|457|4|34|46119.30|0.01|0.04|N|O|1995-09-04|1995-10-12|1995-09-11|DELIVER IN PERSON|RAIL|final plate| +36907|276673|26674|1|19|31343.54|0.10|0.08|A|F|1995-02-01|1995-02-04|1995-02-20|COLLECT COD|TRUCK|ffix quickly. final platelets haggle quickl| +36907|40513|3014|2|38|55233.38|0.01|0.06|R|F|1994-12-08|1994-12-27|1994-12-29|COLLECT COD|REG AIR|ess waters. blithely final instructions sle| +36907|887294|49812|3|33|42281.25|0.08|0.01|A|F|1995-01-10|1995-02-11|1995-02-01|NONE|RAIL|ake. even, even packages maintain blit| +36907|735967|23510|4|44|88128.92|0.03|0.06|A|F|1994-11-28|1994-12-29|1994-12-13|NONE|SHIP|efully. ironic packages bo| +36907|387522|12537|5|34|54723.34|0.06|0.02|R|F|1995-01-20|1995-02-02|1995-02-02|TAKE BACK RETURN|MAIL|cuses sleep furiously reg| +36907|75775|13279|6|12|21009.24|0.02|0.07|R|F|1995-03-20|1995-02-18|1995-04-01|DELIVER IN PERSON|MAIL|ons haggle blithely among the fl| +36907|549061|24082|7|7|7770.28|0.02|0.00|A|F|1995-02-06|1995-01-06|1995-03-06|TAKE BACK RETURN|REG AIR|al accounts. account| +36908|59175|46679|1|47|53305.99|0.00|0.07|N|O|1995-10-07|1995-11-27|1995-11-06|COLLECT COD|AIR| cajole furiously blithely speci| +36908|540711|40712|2|37|64812.53|0.01|0.08|N|O|1995-12-02|1995-12-02|1995-12-20|COLLECT COD|SHIP|nal accounts wake sometimes carefully| +36909|679029|4056|1|19|19151.81|0.03|0.06|N|O|1996-09-12|1996-08-18|1996-09-13|COLLECT COD|RAIL|counts poach final, final instructio| +36909|434437|9454|2|27|37028.07|0.01|0.05|N|O|1996-06-15|1996-08-27|1996-06-18|COLLECT COD|MAIL|boost furiously ironic dolphins. | +36910|310842|35855|1|21|38909.43|0.03|0.04|N|O|1995-07-30|1995-09-04|1995-08-22|NONE|MAIL|hely regular grouches. furiously expre| +36910|312574|25081|2|13|20625.28|0.04|0.02|N|O|1995-09-12|1995-07-27|1995-09-26|DELIVER IN PERSON|RAIL|sleep afte| +36911|210559|10560|1|18|26451.72|0.10|0.00|R|F|1994-03-03|1994-05-03|1994-03-11|NONE|FOB|e furiously unus| +36911|848747|23780|2|44|74610.80|0.09|0.03|A|F|1994-04-17|1994-04-26|1994-05-09|NONE|SHIP|. fluffily express accounts haggle furious| +36911|878597|16149|3|7|11028.85|0.06|0.02|R|F|1994-05-28|1994-04-04|1994-06-12|DELIVER IN PERSON|FOB|ed requests haggle idly after the | +36911|577292|14826|4|14|19169.78|0.09|0.03|R|F|1994-04-29|1994-04-19|1994-05-01|NONE|FOB|ag carefully. thinly regular packages| +36911|542516|42517|5|19|29611.31|0.06|0.01|R|F|1994-06-09|1994-04-20|1994-07-09|TAKE BACK RETURN|RAIL|ts use slyly about the sp| +36911|53748|3749|6|35|59560.90|0.01|0.03|A|F|1994-05-11|1994-05-09|1994-06-07|DELIVER IN PERSON|MAIL|ckages. furiously ironic excuses haggle fur| +36936|256046|6047|1|16|16032.48|0.05|0.07|N|O|1998-02-26|1998-04-16|1998-03-25|COLLECT COD|FOB|e quickly regular requests. final, u| +36936|359441|46963|2|19|28508.17|0.08|0.04|N|O|1998-04-23|1998-05-03|1998-05-18|TAKE BACK RETURN|TRUCK|al request| +36937|382290|19812|1|41|56263.48|0.00|0.04|A|F|1993-12-01|1993-12-15|1993-12-29|NONE|RAIL|e pending sauternes d| +36938|836737|36738|1|14|23431.66|0.10|0.08|A|F|1993-08-28|1993-08-15|1993-09-13|TAKE BACK RETURN|RAIL|refully ironic excuses wake car| +36938|32684|20185|2|36|58200.48|0.01|0.00|R|F|1993-08-17|1993-06-22|1993-09-08|NONE|TRUCK|ages. excuses haggle above the blit| +36938|304488|4489|3|46|68653.62|0.08|0.07|A|F|1993-07-27|1993-07-06|1993-08-07|NONE|FOB|carefully. ironic dependencie| +36938|525287|308|4|19|24932.94|0.03|0.05|A|F|1993-05-24|1993-07-28|1993-05-25|DELIVER IN PERSON|FOB|s against the| +36939|561319|11320|1|3|4140.87|0.02|0.00|R|F|1992-03-21|1992-04-14|1992-04-14|TAKE BACK RETURN|TRUCK| packages. | +36939|75362|37864|2|39|52157.04|0.05|0.05|R|F|1992-03-24|1992-03-24|1992-04-17|COLLECT COD|AIR| fluffily regular excuses; acco| +36940|394248|31770|1|2|2684.46|0.03|0.08|N|O|1995-10-29|1995-12-04|1995-11-20|DELIVER IN PERSON|RAIL|tes haggle slyly special excuses. realms | +36940|114022|39027|2|18|18648.36|0.09|0.01|N|O|1995-10-11|1995-12-04|1995-10-22|DELIVER IN PERSON|AIR|uriously about the unusu| +36940|365349|40364|3|36|50915.88|0.08|0.08|N|O|1995-11-16|1995-11-01|1995-11-17|NONE|MAIL|eas sleep slyly among| +36940|406995|44520|4|14|26627.58|0.08|0.06|N|O|1995-12-27|1995-11-24|1996-01-19|TAKE BACK RETURN|MAIL|furiously iro| +36940|351865|39387|5|10|19168.50|0.03|0.06|N|O|1995-11-11|1995-12-12|1995-12-03|NONE|MAIL| unusual foxes.| +36940|784236|46752|6|27|35645.40|0.05|0.04|N|O|1996-01-05|1995-11-09|1996-01-31|NONE|TRUCK|ons at the carefully regu| +36941|348317|48318|1|14|19114.20|0.07|0.05|N|O|1998-05-04|1998-05-09|1998-05-24|TAKE BACK RETURN|RAIL| fluffily pending requests| +36941|160537|23041|2|6|9585.18|0.00|0.00|N|O|1998-03-07|1998-05-28|1998-03-20|NONE|SHIP|ng furiously even pinto beans. blithel| +36941|129501|17008|3|16|24488.00|0.00|0.08|N|O|1998-04-22|1998-05-09|1998-05-19|COLLECT COD|MAIL|equests affix. enticingly ir| +36941|521791|21792|4|50|90638.50|0.10|0.04|N|O|1998-04-11|1998-05-16|1998-05-09|DELIVER IN PERSON|MAIL|ely ironic dolphins wake final accounts-- | +36941|732653|7682|5|2|3371.24|0.05|0.03|N|O|1998-05-13|1998-05-01|1998-05-29|TAKE BACK RETURN|TRUCK|ly ironic deposits are bravely blithel| +36942|309545|9546|1|45|69953.85|0.05|0.02|A|F|1994-12-17|1994-11-20|1995-01-10|NONE|TRUCK|equests. blithely express instructi| +36942|507519|32540|2|28|42741.72|0.08|0.07|A|F|1994-11-25|1994-11-07|1994-12-13|TAKE BACK RETURN|SHIP|regular accounts. fluffily pending requests| +36942|859702|34737|3|21|34894.86|0.09|0.04|A|F|1994-10-22|1994-11-08|1994-11-01|NONE|REG AIR|slyly regular dolphins are about t| +36942|8163|8164|4|18|19280.88|0.10|0.08|A|F|1994-12-10|1994-11-21|1994-12-19|TAKE BACK RETURN|REG AIR|ross the quickly ironic accounts? slyly | +36942|179059|16569|5|29|33003.45|0.10|0.08|A|F|1994-11-05|1994-11-26|1994-12-05|DELIVER IN PERSON|TRUCK|carefully regula| +36943|158279|33286|1|43|57502.61|0.09|0.08|N|O|1995-07-15|1995-08-19|1995-08-13|COLLECT COD|REG AIR|ns are fur| +36943|182215|7222|2|8|10377.68|0.09|0.03|N|O|1995-08-28|1995-08-21|1995-09-04|NONE|REG AIR|, special packages. fluffily bold requ| +36943|483000|33001|3|14|13761.72|0.09|0.08|N|O|1995-07-02|1995-08-12|1995-07-29|NONE|SHIP| slyly final excuses wake slyly foxes| +36943|765219|2765|4|40|51367.20|0.01|0.06|N|O|1995-09-10|1995-08-27|1995-09-22|TAKE BACK RETURN|FOB|ons sleep. ironic packages sl| +36943|20919|8420|5|25|45997.75|0.08|0.05|N|O|1995-08-18|1995-09-12|1995-08-28|DELIVER IN PERSON|SHIP|pending idea| +36943|580113|42625|6|50|59654.50|0.04|0.08|N|O|1995-07-19|1995-08-19|1995-08-15|TAKE BACK RETURN|REG AIR| the epitaphs. requ| +36943|945551|20588|7|14|22351.14|0.10|0.06|N|O|1995-09-19|1995-08-21|1995-10-05|TAKE BACK RETURN|FOB|oxes. bravely ironic accou| +36968|864333|14334|1|43|55783.47|0.07|0.05|R|F|1995-04-27|1995-05-11|1995-05-17|DELIVER IN PERSON|RAIL|xes wake quick| +36968|844582|32131|2|5|7632.70|0.05|0.04|N|O|1995-06-18|1995-05-06|1995-07-14|NONE|MAIL|ong the carefully silent| +36968|886485|36486|3|23|33843.12|0.02|0.07|R|F|1995-04-18|1995-04-29|1995-04-26|TAKE BACK RETURN|MAIL|f the final, pending depende| +36968|142620|42621|4|10|16626.20|0.00|0.03|R|F|1995-03-23|1995-04-16|1995-04-03|TAKE BACK RETURN|FOB|totes affix blithely around t| +36968|7119|32120|5|41|42070.51|0.04|0.01|A|F|1995-04-16|1995-05-10|1995-05-09|NONE|AIR|ly regular deposits use bl| +36968|637841|25378|6|15|26682.15|0.08|0.04|A|F|1995-03-20|1995-04-10|1995-04-01|COLLECT COD|MAIL|pinto beans use slyly after the bl| +36969|291367|28883|1|27|36675.45|0.04|0.07|N|O|1996-01-11|1996-01-31|1996-01-29|NONE|RAIL|to beans according to the accounts bo| +36970|561957|36980|1|13|26246.09|0.06|0.02|A|F|1992-09-30|1992-09-11|1992-10-15|DELIVER IN PERSON|REG AIR|ar deposits. care| +36971|86594|36595|1|7|11064.13|0.09|0.02|R|F|1994-05-10|1994-07-07|1994-06-04|COLLECT COD|TRUCK|ckages. requests was slyly after the | +36971|369706|7228|2|37|65700.53|0.04|0.07|R|F|1994-04-23|1994-06-19|1994-05-17|TAKE BACK RETURN|RAIL|ously bold package| +36971|645759|8272|3|29|49436.88|0.04|0.08|A|F|1994-05-05|1994-06-17|1994-05-07|COLLECT COD|RAIL|to beans. sil| +36971|264881|2397|4|9|16612.83|0.02|0.01|A|F|1994-06-07|1994-06-27|1994-06-24|NONE|FOB|ily final deposits kindle busily| +36971|853466|41018|5|12|17033.04|0.09|0.01|A|F|1994-06-28|1994-06-20|1994-07-12|DELIVER IN PERSON|AIR|ounts integrate quickly. final deposit| +36971|188135|13142|6|42|51371.46|0.01|0.05|A|F|1994-04-26|1994-05-24|1994-05-09|DELIVER IN PERSON|AIR|final packages are slyly. sly| +36972|59276|9277|1|32|39528.64|0.08|0.01|A|F|1992-04-14|1992-06-07|1992-04-28|NONE|TRUCK|es. carefully regular package| +36972|248761|11266|2|4|6839.00|0.04|0.01|R|F|1992-07-18|1992-07-05|1992-07-28|COLLECT COD|REG AIR|uickly final ideas. blithely regular | +36973|837206|37207|1|28|32008.48|0.08|0.02|N|O|1995-09-22|1995-10-23|1995-09-30|DELIVER IN PERSON|FOB|y. carefully ironic theodoli| +36973|906841|19360|2|5|9239.00|0.02|0.04|N|O|1995-12-17|1995-11-04|1995-12-26|NONE|SHIP|requests; furiously eve| +36973|262366|24872|3|25|33208.75|0.03|0.02|N|O|1995-11-29|1995-10-08|1995-12-20|DELIVER IN PERSON|REG AIR|ke above the express ac| +36973|573580|36092|4|20|33071.20|0.09|0.05|N|O|1995-12-05|1995-11-22|1995-12-26|TAKE BACK RETURN|REG AIR|uests haggle. final, even requests accordin| +36973|145206|32713|5|6|7507.20|0.04|0.00|N|O|1995-09-20|1995-09-28|1995-10-06|TAKE BACK RETURN|AIR|hins. quickly special Tiresi| +36974|431960|44469|1|7|13243.58|0.08|0.06|A|F|1994-05-25|1994-05-13|1994-05-27|DELIVER IN PERSON|SHIP|slyly final accounts ar| +36974|940191|27746|2|17|20929.55|0.02|0.06|R|F|1994-06-03|1994-05-21|1994-06-13|DELIVER IN PERSON|AIR|xpress, special accounts. ironi| +36975|602082|14595|1|20|19681.00|0.03|0.05|A|F|1993-01-04|1993-01-06|1993-01-24|NONE|AIR|onic ideas after| +36975|185810|48314|2|13|24645.53|0.10|0.06|A|F|1993-02-25|1992-12-28|1993-03-03|DELIVER IN PERSON|FOB|luffily fi| +36975|908064|33101|3|31|33232.62|0.10|0.02|A|F|1992-11-22|1993-02-04|1992-12-17|NONE|MAIL|ar accounts. quickly ironic accounts u| +36975|829211|16760|4|25|28504.25|0.06|0.03|R|F|1993-01-03|1992-12-28|1993-01-12|COLLECT COD|MAIL| requests. d| +36975|543201|43202|5|44|54743.92|0.03|0.01|R|F|1993-01-05|1993-01-01|1993-01-08|DELIVER IN PERSON|RAIL| regular ideas are blithely caref| +36975|570954|8488|6|7|14174.51|0.09|0.06|R|F|1993-03-01|1993-01-12|1993-03-21|TAKE BACK RETURN|MAIL|fully regular theodolites maintain furiou| +36975|20973|20974|7|12|22727.64|0.07|0.03|R|F|1993-02-26|1992-12-26|1993-03-27|TAKE BACK RETURN|SHIP|n packages. carefully regular | +37000|492135|4645|1|40|45084.40|0.06|0.02|N|O|1996-12-01|1997-01-02|1996-12-31|TAKE BACK RETURN|AIR|s haggle slyly above the final | +37000|307079|19586|2|1|1086.06|0.04|0.07|N|O|1996-11-18|1997-01-21|1996-12-16|NONE|AIR|nding theodoli| +37000|63740|26242|3|49|83483.26|0.03|0.01|N|O|1996-11-11|1996-12-05|1996-12-06|NONE|SHIP| silent deposits impress | +37000|261756|24262|4|19|32637.06|0.00|0.01|N|O|1997-02-08|1996-12-26|1997-02-17|COLLECT COD|TRUCK|regular accounts int| +37000|318195|18196|5|25|30329.50|0.09|0.06|N|O|1996-12-21|1996-12-30|1997-01-10|TAKE BACK RETURN|TRUCK|deas. pinto beans| +37000|894521|7039|6|2|3030.96|0.08|0.03|N|O|1996-12-01|1996-12-13|1996-12-06|NONE|FOB|s: fluffily special accounts cajole| +37000|210336|22841|7|4|4985.28|0.03|0.01|N|O|1997-02-08|1996-12-16|1997-02-20|DELIVER IN PERSON|SHIP|riously regular packages wa| +37001|101027|13530|1|21|21588.42|0.09|0.00|R|F|1993-11-01|1993-10-09|1993-11-14|TAKE BACK RETURN|REG AIR|late-- quickly even ideas| +37001|956443|6444|2|31|46481.40|0.07|0.00|R|F|1993-09-08|1993-09-20|1993-10-05|COLLECT COD|REG AIR|t, bold deposits.| +37001|923917|36436|3|50|97043.50|0.08|0.08|A|F|1993-10-29|1993-09-29|1993-11-18|NONE|FOB|impress slyly. slyly | +37001|257643|32654|4|14|22408.82|0.02|0.02|A|F|1993-11-03|1993-11-06|1993-11-12|NONE|FOB|ackages. ideas dazzle quickly quickly even | +37001|199975|24982|5|7|14524.79|0.09|0.05|A|F|1993-08-15|1993-10-16|1993-09-12|TAKE BACK RETURN|RAIL| ideas. blithely express de| +37001|969273|44312|6|16|21475.68|0.08|0.01|R|F|1993-10-20|1993-09-22|1993-11-02|DELIVER IN PERSON|TRUCK|regular, unusual| +37001|565215|15216|7|24|30724.56|0.00|0.08|A|F|1993-08-13|1993-10-17|1993-09-02|COLLECT COD|MAIL|y pending courts. fluffy packages cajole bl| +37002|558851|46385|1|9|17188.47|0.01|0.07|N|O|1998-01-14|1997-12-12|1998-01-24|TAKE BACK RETURN|AIR|s wake sly| +37002|606530|44067|2|24|34476.00|0.06|0.08|N|O|1998-01-05|1997-12-01|1998-01-14|DELIVER IN PERSON|TRUCK|s: quickly bold pi| +37003|602595|15108|1|18|26956.08|0.07|0.05|A|F|1993-01-02|1992-11-26|1993-01-25|DELIVER IN PERSON|FOB|le accounts? fluffily regular asymptotes | +37003|809765|47314|2|3|5024.16|0.10|0.01|A|F|1992-10-20|1992-10-26|1992-10-28|COLLECT COD|AIR|furiously pending, iron| +37003|712197|37226|3|1|1209.16|0.02|0.04|R|F|1992-12-05|1992-11-22|1992-12-11|TAKE BACK RETURN|SHIP|uests according to | +37003|889791|14826|4|11|19588.25|0.00|0.08|A|F|1992-11-27|1992-10-21|1992-11-30|NONE|RAIL|y! even, ironic instructions are sl| +37003|710069|22584|5|6|6474.18|0.00|0.08|A|F|1992-11-13|1992-12-06|1992-11-19|NONE|FOB|leep carefully closely fina| +37003|117531|30034|6|47|72780.91|0.05|0.03|A|F|1993-01-16|1992-10-27|1993-01-29|COLLECT COD|FOB|s. regular, even depo| +37004|425188|37697|1|42|46752.72|0.03|0.06|R|F|1993-02-21|1993-01-12|1993-03-01|DELIVER IN PERSON|TRUCK| instructions boost bli| +37004|127243|39746|2|9|11432.16|0.00|0.05|R|F|1992-10-30|1992-12-19|1992-11-28|DELIVER IN PERSON|SHIP|quests about| +37005|455339|30358|1|33|42712.23|0.07|0.06|N|O|1997-10-13|1997-09-14|1997-11-07|TAKE BACK RETURN|RAIL|gular dolphins wake | +37005|866715|41750|2|45|75675.15|0.08|0.04|N|O|1997-09-03|1997-09-16|1997-10-02|DELIVER IN PERSON|REG AIR|wake blithely| +37006|528966|41477|1|33|65833.02|0.07|0.04|A|F|1992-08-19|1992-08-04|1992-08-25|DELIVER IN PERSON|AIR|. carefully even i| +37006|326007|13526|2|8|8263.92|0.03|0.00|A|F|1992-08-01|1992-07-29|1992-08-20|TAKE BACK RETURN|FOB|onic accounts | +37006|194513|19520|3|14|22505.14|0.02|0.06|A|F|1992-09-27|1992-08-23|1992-10-27|DELIVER IN PERSON|RAIL|aggle quickly. bold foxes nag quic| +37006|171503|9013|4|6|9447.00|0.05|0.00|A|F|1992-10-24|1992-07-28|1992-10-28|TAKE BACK RETURN|MAIL|blithely furiously silen| +37006|439050|14067|5|32|31648.96|0.10|0.05|A|F|1992-09-01|1992-09-02|1992-09-21|DELIVER IN PERSON|FOB|sily even notorni| +37006|98072|10574|6|40|42802.80|0.10|0.03|A|F|1992-09-26|1992-07-27|1992-10-07|DELIVER IN PERSON|RAIL|final pinto beans poac| +37006|283361|33362|7|8|10754.80|0.02|0.04|R|F|1992-10-15|1992-07-28|1992-10-26|DELIVER IN PERSON|RAIL|ges are carefully quietly bo| +37007|446342|46343|1|1|1288.32|0.08|0.01|A|F|1992-12-27|1992-12-30|1993-01-20|COLLECT COD|MAIL|aves. slyly regular patterns| +37007|661073|11074|2|26|26885.04|0.05|0.07|A|F|1993-02-14|1992-12-28|1993-03-05|TAKE BACK RETURN|TRUCK|anent packages. slyly regular pa| +37007|640122|15147|3|19|20179.71|0.08|0.03|R|F|1993-01-23|1992-12-23|1993-01-31|COLLECT COD|REG AIR|furiously ironic dolphins cajole. regular| +37007|516116|41137|4|18|20377.62|0.10|0.04|A|F|1992-11-23|1993-02-07|1992-12-11|TAKE BACK RETURN|REG AIR|kages hagg| +37007|351979|14487|5|35|71083.60|0.08|0.00|A|F|1993-01-22|1992-12-22|1993-01-26|DELIVER IN PERSON|RAIL|y regular dependencies was| +37007|695780|20807|6|47|83460.25|0.02|0.05|A|F|1992-12-03|1992-12-25|1992-12-17|COLLECT COD|TRUCK|nusual pinto beans cajole amo| +37032|414632|39649|1|31|47944.91|0.09|0.01|N|O|1996-01-22|1995-11-08|1996-02-19|TAKE BACK RETURN|AIR|. carefully final deposits | +37033|441221|3730|1|19|22081.80|0.01|0.03|A|F|1993-02-21|1993-02-07|1993-03-06|DELIVER IN PERSON|RAIL|ve along the final packages. fin| +37033|588933|13956|2|40|80876.40|0.00|0.04|R|F|1992-12-29|1993-02-14|1993-01-19|TAKE BACK RETURN|AIR|ffily regular pinto be| +37033|192082|4586|3|36|42266.88|0.00|0.03|A|F|1993-03-27|1993-01-28|1993-04-02|TAKE BACK RETURN|TRUCK| express requests haggle furiously. | +37033|308158|45677|4|2|2332.28|0.03|0.01|R|F|1992-12-20|1993-01-29|1993-01-06|TAKE BACK RETURN|MAIL|ecial requests. pen| +37033|209623|9624|5|9|13793.49|0.02|0.02|A|F|1993-04-12|1993-02-04|1993-05-03|TAKE BACK RETURN|FOB| quickly p| +37033|121219|46224|6|38|47127.98|0.02|0.08|R|F|1993-01-02|1993-03-13|1993-01-16|NONE|RAIL|s cajole furiously qui| +37033|327208|27209|7|30|37055.70|0.09|0.06|A|F|1993-04-03|1993-02-17|1993-04-18|NONE|FOB|ithely pending packages hag| +37034|368443|18444|1|25|37785.75|0.04|0.05|R|F|1994-10-07|1994-07-28|1994-10-18|DELIVER IN PERSON|FOB|eas according to the carefully re| +37034|418008|18009|2|30|27779.40|0.04|0.08|R|F|1994-06-25|1994-08-09|1994-07-07|DELIVER IN PERSON|TRUCK|n ideas across the| +37034|455203|30222|3|47|54434.46|0.09|0.00|A|F|1994-09-03|1994-08-01|1994-09-15|COLLECT COD|FOB|ckly ironic foxes| +37034|580679|5702|4|14|24635.10|0.07|0.03|R|F|1994-06-28|1994-08-21|1994-07-15|TAKE BACK RETURN|TRUCK|ites sleep blithely on the even cou| +37034|465265|15266|5|35|43058.40|0.00|0.01|A|F|1994-09-27|1994-08-21|1994-10-19|DELIVER IN PERSON|AIR|s nag care| +37034|694470|32010|6|21|30753.24|0.02|0.02|A|F|1994-09-08|1994-09-06|1994-09-10|TAKE BACK RETURN|MAIL|usly even theodolites. e| +37035|395552|45553|1|22|36245.88|0.01|0.07|N|O|1995-12-06|1995-12-14|1995-12-16|TAKE BACK RETURN|FOB| accounts nod about the furi| +37035|30588|5589|2|38|57706.04|0.06|0.05|N|O|1996-01-28|1995-12-07|1996-02-08|NONE|FOB| pinto beans detect slyly. quickly fina| +37035|78838|3841|3|31|56321.73|0.03|0.01|N|O|1995-10-30|1995-12-12|1995-11-23|DELIVER IN PERSON|MAIL|s boost blithely along the even, iro| +37036|692289|17316|1|12|15375.00|0.06|0.06|N|O|1996-03-22|1996-02-01|1996-04-07|DELIVER IN PERSON|SHIP|ously. busy, final req| +37037|284688|9699|1|15|25090.05|0.03|0.06|N|O|1998-01-14|1998-03-03|1998-01-19|COLLECT COD|RAIL|bout the regular, bold packages. qui| +37037|743754|43755|2|38|68313.36|0.06|0.00|N|O|1998-01-28|1998-02-08|1998-02-07|DELIVER IN PERSON|AIR|ven ideas. theodolites| +37037|266408|28914|3|12|16492.68|0.10|0.07|N|O|1998-04-06|1998-01-12|1998-04-23|NONE|MAIL|press packages. or| +37037|514714|39735|4|40|69147.60|0.07|0.05|N|O|1998-02-03|1998-01-29|1998-02-18|DELIVER IN PERSON|FOB|y silent platelets. fluffily spe| +37037|787117|49633|5|9|10836.72|0.08|0.06|N|O|1998-02-19|1998-02-15|1998-02-20|NONE|RAIL|st quickly. slyly special foxes | +37037|71805|46808|6|28|49750.40|0.09|0.04|N|O|1998-02-13|1998-02-02|1998-03-14|NONE|FOB|ular court| +37037|826179|26180|7|25|27628.25|0.03|0.02|N|O|1998-01-31|1998-02-13|1998-02-27|TAKE BACK RETURN|FOB|ckages wake blithely along the f| +37038|589366|14389|1|50|72767.00|0.08|0.05|N|O|1996-05-03|1996-05-07|1996-06-01|COLLECT COD|SHIP|press deposits doze after th| +37038|460501|23011|2|44|64305.12|0.10|0.06|N|O|1996-06-01|1996-05-04|1996-06-15|COLLECT COD|TRUCK|lyly unusual| +37038|635847|10872|3|18|32090.58|0.04|0.05|N|O|1996-06-05|1996-06-11|1996-06-07|COLLECT COD|RAIL|? quickly regular packages h| +37038|672793|10333|4|12|21189.12|0.04|0.03|N|O|1996-05-22|1996-05-21|1996-06-03|DELIVER IN PERSON|MAIL|inal package| +37038|626588|39101|5|36|54523.80|0.07|0.06|N|O|1996-04-22|1996-05-09|1996-04-25|DELIVER IN PERSON|FOB| ideas sleep blith| +37038|55497|5498|6|24|34859.76|0.04|0.05|N|O|1996-03-31|1996-05-22|1996-04-05|COLLECT COD|AIR|riously final warthogs boost unusual| +37038|735419|22962|7|11|15998.18|0.02|0.04|N|O|1996-03-16|1996-04-12|1996-04-06|TAKE BACK RETURN|RAIL|ly bold packages| +37039|176488|1495|1|22|34418.56|0.08|0.05|N|O|1996-02-29|1996-03-07|1996-03-12|TAKE BACK RETURN|FOB|usly. furiously express deposits are | +37039|227541|40046|2|48|70489.44|0.08|0.00|N|O|1996-02-09|1996-04-24|1996-03-05|COLLECT COD|TRUCK|unusual, ev| +37064|460784|10785|1|19|33150.44|0.01|0.05|R|F|1995-06-04|1995-06-29|1995-06-11|DELIVER IN PERSON|MAIL|symptotes sleep b| +37064|380458|5473|2|29|44614.76|0.01|0.02|N|O|1995-07-06|1995-05-14|1995-07-24|COLLECT COD|AIR|ackages across the fluffily final plate| +37064|352250|39772|3|24|31253.76|0.03|0.00|A|F|1995-05-08|1995-06-15|1995-06-07|COLLECT COD|TRUCK|unts haggle exce| +37064|263484|25990|4|11|15922.17|0.08|0.01|A|F|1995-04-04|1995-05-16|1995-05-03|NONE|RAIL|ully unusual foxes| +37064|359574|47096|5|29|47373.24|0.01|0.04|A|F|1995-04-10|1995-05-23|1995-04-11|DELIVER IN PERSON|FOB|ffix slyly among the fluffily ironic req| +37065|273407|10923|1|7|9662.73|0.06|0.00|N|O|1998-06-03|1998-04-12|1998-06-25|TAKE BACK RETURN|AIR|quests maintain slyly sl| +37066|169312|44319|1|25|34532.75|0.10|0.07|N|O|1995-07-24|1995-06-21|1995-08-13|DELIVER IN PERSON|REG AIR|gainst the asymptotes use accordi| +37066|613110|13111|2|16|16369.28|0.07|0.06|R|F|1995-05-14|1995-07-09|1995-06-07|COLLECT COD|FOB| final theodolites haggle. even, entic| +37066|530490|30491|3|4|6081.88|0.08|0.00|N|O|1995-08-26|1995-07-13|1995-08-27|NONE|SHIP|ual excuses hinder furi| +37066|935281|22836|4|37|48700.88|0.02|0.07|N|O|1995-07-07|1995-07-14|1995-07-28|TAKE BACK RETURN|RAIL|lieve quietly fi| +37067|331453|31454|1|9|13359.96|0.10|0.04|A|F|1992-11-19|1992-11-12|1992-12-18|COLLECT COD|RAIL|r deposits. slyly ironic depo| +37067|715762|28277|2|4|7110.92|0.07|0.05|A|F|1992-10-12|1992-12-03|1992-11-03|DELIVER IN PERSON|REG AIR|all have to boost | +37067|804537|17054|3|5|7207.45|0.05|0.07|A|F|1992-09-22|1992-12-13|1992-10-22|COLLECT COD|FOB|ely against the special excuse| +37067|852585|2586|4|34|52276.36|0.08|0.04|A|F|1992-12-20|1992-12-17|1993-01-02|TAKE BACK RETURN|TRUCK|ructions! regular, pending requests | +37067|394779|44780|5|17|31853.92|0.02|0.07|A|F|1992-12-14|1992-12-08|1992-12-20|TAKE BACK RETURN|REG AIR|ress accounts sublate furiously! sl| +37067|46970|21971|6|16|30671.52|0.05|0.04|A|F|1992-09-26|1992-10-27|1992-10-21|DELIVER IN PERSON|MAIL|c ideas promise slyly around the| +37068|521300|46321|1|41|54172.48|0.06|0.03|N|O|1998-06-15|1998-07-31|1998-07-02|TAKE BACK RETURN|TRUCK|pinto beans. carefully| +37068|484591|47101|2|25|39389.25|0.05|0.01|N|O|1998-07-12|1998-06-08|1998-08-08|NONE|MAIL|s up the final, ironic deposits| +37068|514113|1644|3|34|38321.06|0.09|0.02|N|O|1998-08-23|1998-06-24|1998-09-17|COLLECT COD|RAIL|osits. slyly even deposits sleep furiously| +37069|580982|6005|1|39|80455.44|0.05|0.05|R|F|1992-12-06|1993-01-20|1992-12-24|TAKE BACK RETURN|FOB|l theodolites will nag alongsi| +37069|552381|2382|2|31|44434.16|0.02|0.03|A|F|1992-12-07|1993-01-26|1992-12-23|COLLECT COD|RAIL|regular escapades. quickly fin| +37069|862150|12151|3|35|38923.85|0.07|0.05|R|F|1993-02-27|1993-03-01|1993-03-18|DELIVER IN PERSON|FOB|regular accounts. pending | +37070|874804|49839|1|19|33796.44|0.02|0.05|R|F|1993-01-19|1992-12-19|1993-02-13|COLLECT COD|SHIP|ly regular| +37070|819517|19518|2|22|31602.34|0.02|0.00|A|F|1992-10-26|1992-12-29|1992-11-21|TAKE BACK RETURN|REG AIR|sts. regular theodolites against the ca| +37071|606373|6374|1|37|47335.58|0.06|0.08|A|F|1993-05-16|1993-06-23|1993-05-29|DELIVER IN PERSON|AIR|uickly caref| +37071|294244|31760|2|40|49529.20|0.10|0.04|A|F|1993-07-13|1993-06-01|1993-08-01|DELIVER IN PERSON|FOB|y carefully ex| +37071|344491|6998|3|30|46064.40|0.01|0.00|A|F|1993-05-28|1993-07-29|1993-06-26|TAKE BACK RETURN|MAIL|cajole after the blith| +37071|844177|6694|4|17|19059.21|0.01|0.06|A|F|1993-05-05|1993-06-01|1993-05-13|NONE|RAIL|cies are after the furiously fina| +37071|82631|45133|5|26|41954.38|0.08|0.08|R|F|1993-07-08|1993-06-02|1993-07-21|COLLECT COD|RAIL|ously idly ironic | +37071|766498|29014|6|19|29724.74|0.02|0.04|A|F|1993-07-03|1993-06-26|1993-07-12|TAKE BACK RETURN|RAIL|refully quickly pending depos| +37096|145653|8156|1|12|20383.80|0.04|0.00|N|O|1997-02-02|1997-01-05|1997-02-04|DELIVER IN PERSON|SHIP|accounts. slyly unusual request| +37096|989833|27391|2|28|53838.12|0.10|0.07|N|O|1997-02-13|1997-02-17|1997-03-03|TAKE BACK RETURN|FOB| haggle furiously unusu| +37096|122732|47737|3|20|35094.60|0.04|0.05|N|O|1997-01-27|1997-01-12|1997-02-22|DELIVER IN PERSON|REG AIR|ounts. unusual, pending| +37097|36531|36532|1|33|48428.49|0.04|0.04|N|O|1996-12-16|1997-01-06|1996-12-17|TAKE BACK RETURN|MAIL|carefully final accounts. unusual,| +37098|186696|49200|1|28|49915.32|0.09|0.08|A|F|1994-12-26|1994-12-23|1995-01-19|NONE|FOB|special ideas. boldly| +37098|787636|25182|2|24|41366.40|0.10|0.00|A|F|1995-02-09|1995-01-16|1995-03-06|TAKE BACK RETURN|RAIL|y final theodo| +37098|787407|37408|3|31|46325.47|0.00|0.07|R|F|1995-02-15|1994-12-08|1995-02-27|COLLECT COD|TRUCK|egular dolphins cajole slyly slyl| +37098|937811|330|4|23|42521.71|0.02|0.02|A|F|1994-12-11|1994-12-04|1994-12-30|COLLECT COD|RAIL|le furiously. blithely silent th| +37098|788269|38270|5|45|61075.35|0.09|0.04|A|F|1995-01-22|1995-01-08|1995-02-16|COLLECT COD|FOB| ideas poach. daringly exp| +37098|420414|20415|6|28|37362.92|0.10|0.00|R|F|1995-01-06|1994-11-29|1995-01-13|TAKE BACK RETURN|SHIP|ss packages are against the final, pen| +37099|1872|14373|1|45|79824.15|0.04|0.01|N|O|1996-12-26|1996-10-29|1996-12-28|NONE|REG AIR|d, bold ideas.| +37100|798699|11215|1|15|26964.90|0.04|0.06|R|F|1993-01-17|1993-01-15|1993-02-15|TAKE BACK RETURN|RAIL|riously express theod| +37100|719080|6623|2|39|42862.95|0.09|0.07|A|F|1992-10-28|1992-11-18|1992-11-02|DELIVER IN PERSON|RAIL|refully regular pinto beans cajole blithely| +37100|562214|37237|3|15|19142.85|0.05|0.03|R|F|1992-11-01|1992-12-10|1992-11-12|TAKE BACK RETURN|REG AIR|quickly sly f| +37100|120476|7983|4|41|61355.27|0.06|0.06|R|F|1993-02-12|1992-11-20|1993-03-10|NONE|FOB|c, bold packages wake quic| +37100|837880|37881|5|33|59988.72|0.00|0.03|R|F|1992-11-11|1992-12-03|1992-12-09|DELIVER IN PERSON|TRUCK| accounts cajole. furiously ev| +37100|234587|47092|6|46|69992.22|0.09|0.06|R|F|1992-11-19|1993-01-17|1992-11-21|TAKE BACK RETURN|RAIL| slyly bold deposits are | +37100|689244|39245|7|24|29597.04|0.07|0.04|R|F|1993-01-27|1992-12-22|1993-02-09|DELIVER IN PERSON|REG AIR|s according to the silent, final ide| +37101|116029|41034|1|31|32395.62|0.05|0.08|R|F|1994-02-17|1994-02-22|1994-03-10|DELIVER IN PERSON|FOB|al accounts use. ironic, pending deposits | +37101|90450|40451|2|24|34570.80|0.02|0.07|R|F|1994-02-08|1994-02-01|1994-02-24|NONE|REG AIR|ding to the fluffily special packages. fur| +37101|176763|1770|3|8|14718.08|0.07|0.04|R|F|1994-04-22|1994-03-15|1994-05-20|TAKE BACK RETURN|AIR|en notornis use finally. slyly iro| +37101|848871|36420|4|11|20018.13|0.02|0.01|A|F|1994-03-04|1994-03-15|1994-03-13|COLLECT COD|RAIL|hins haggle slyly. furi| +37101|962666|224|5|36|62230.32|0.01|0.00|R|F|1994-03-27|1994-02-02|1994-04-07|TAKE BACK RETURN|TRUCK|ecial theod| +37102|80077|42579|1|38|40168.66|0.10|0.03|N|O|1998-05-09|1998-06-06|1998-06-08|COLLECT COD|AIR|ncies against the carefully| +37102|849436|49437|2|49|67884.11|0.02|0.02|N|O|1998-05-28|1998-07-02|1998-06-21|COLLECT COD|RAIL|he carefully ironic requests. regular pin| +37102|459855|34874|3|19|34481.77|0.00|0.06|N|O|1998-07-31|1998-06-04|1998-08-18|COLLECT COD|AIR|pecial platelets ca| +37102|776204|1235|4|1|1280.17|0.09|0.00|N|O|1998-05-30|1998-07-24|1998-06-20|TAKE BACK RETURN|FOB|kages. final pinto b| +37102|652562|40102|5|43|65124.79|0.02|0.08|N|O|1998-07-22|1998-07-01|1998-08-06|DELIVER IN PERSON|MAIL|riously silent requests. blithely unusual i| +37102|594064|6576|6|47|54427.88|0.01|0.07|N|O|1998-07-13|1998-06-10|1998-08-07|COLLECT COD|MAIL|eans engage| +37102|433294|45803|7|25|30681.75|0.04|0.08|N|O|1998-05-08|1998-07-18|1998-05-21|COLLECT COD|FOB|ily final, special foxes. even, thin | +37103|367036|42051|1|17|18751.34|0.01|0.00|N|O|1998-05-19|1998-05-14|1998-06-10|DELIVER IN PERSON|FOB|refully ironi| +37103|759356|9357|2|11|15568.52|0.02|0.05|N|O|1998-06-10|1998-05-28|1998-07-06|TAKE BACK RETURN|FOB|e blithely according | +37103|482375|7394|3|36|48864.60|0.08|0.03|N|O|1998-07-14|1998-06-19|1998-07-15|DELIVER IN PERSON|REG AIR|eposits. pa| +37128|296368|33884|1|3|4093.05|0.00|0.02|N|O|1996-03-10|1996-03-02|1996-03-17|DELIVER IN PERSON|REG AIR|. regular, ir| +37129|241919|29432|1|16|29774.40|0.04|0.07|N|O|1998-07-05|1998-05-31|1998-07-27|COLLECT COD|AIR|es. furiously final attainments along t| +37130|815575|40608|1|12|17886.36|0.01|0.05|A|F|1992-12-16|1993-01-20|1992-12-31|NONE|REG AIR|packages alongside of the ironic instru| +37130|353878|3879|2|18|34773.48|0.01|0.07|A|F|1993-01-16|1993-01-28|1993-01-29|NONE|FOB|. slyly iron| +37130|624674|49699|3|7|11190.48|0.04|0.05|A|F|1992-12-22|1993-01-19|1993-01-04|DELIVER IN PERSON|RAIL|xcuses. blithely bold pac| +37131|147555|35062|1|20|32051.00|0.08|0.05|R|F|1993-07-11|1993-06-04|1993-07-13|DELIVER IN PERSON|RAIL|en packages. even requests pr| +37131|948703|11222|2|3|5254.98|0.03|0.05|A|F|1993-05-15|1993-05-28|1993-05-30|TAKE BACK RETURN|MAIL|elieve slyly furiously| +37131|839086|14119|3|30|30751.20|0.00|0.02|R|F|1993-06-30|1993-05-02|1993-07-07|DELIVER IN PERSON|MAIL|arefully after | +37132|68218|43221|1|22|26096.62|0.05|0.04|A|F|1992-09-18|1992-06-23|1992-09-26|TAKE BACK RETURN|REG AIR|xes sleep according | +37132|527769|40280|2|24|43121.76|0.06|0.07|R|F|1992-06-06|1992-06-24|1992-06-26|DELIVER IN PERSON|AIR|ress Tiresias are alongside of the sl| +37132|201399|38912|3|48|62418.24|0.05|0.06|R|F|1992-05-31|1992-07-06|1992-06-23|COLLECT COD|TRUCK|efully furiously even instructions| +37132|899148|49149|4|29|33265.90|0.07|0.03|A|F|1992-08-31|1992-08-15|1992-09-10|DELIVER IN PERSON|TRUCK|symptotes. ironic, ironic dolphins| +37133|916025|3580|1|34|35393.32|0.00|0.01|N|O|1998-08-30|1998-09-24|1998-09-16|TAKE BACK RETURN|SHIP|carefully special accounts try to cajo| +37133|625877|13414|2|17|30648.28|0.10|0.08|N|O|1998-08-16|1998-09-23|1998-09-13|COLLECT COD|TRUCK| bold packages use slyly. bold, s| +37133|111088|48595|3|31|34071.48|0.00|0.07|N|O|1998-07-31|1998-10-19|1998-08-01|NONE|AIR|sts cajole. regularly unusual | +37133|51599|1600|4|6|9303.54|0.06|0.07|N|O|1998-08-05|1998-09-12|1998-08-13|NONE|AIR| accounts haggle carefully. bold, even| +37133|223887|11400|5|2|3621.74|0.05|0.07|N|O|1998-08-16|1998-10-20|1998-09-01|NONE|REG AIR|rses sleep carefully even p| +37133|862452|12453|6|38|53747.58|0.09|0.02|N|O|1998-08-26|1998-08-28|1998-09-15|TAKE BACK RETURN|RAIL|ccording to the alway| +37133|227890|27891|7|29|52718.52|0.03|0.06|N|O|1998-10-14|1998-10-17|1998-10-31|DELIVER IN PERSON|MAIL|silent packages would haggle. slyly even| +37134|133767|21274|1|32|57624.32|0.03|0.07|N|O|1997-11-02|1997-11-27|1997-11-29|DELIVER IN PERSON|REG AIR|es cajole blithely.| +37134|208203|45716|2|1|1111.19|0.01|0.03|N|O|1997-10-31|1997-12-14|1997-11-08|DELIVER IN PERSON|FOB|fully final foxes nod furiously blit| +37135|726381|26382|1|22|30961.70|0.05|0.07|A|F|1995-04-11|1995-03-08|1995-04-16|DELIVER IN PERSON|TRUCK|rets detect blithely. ironic, fin| +37135|268790|43801|2|50|87939.00|0.09|0.04|R|F|1995-03-07|1995-04-16|1995-03-25|NONE|REG AIR|gainst the quickly pending deposits. | +37135|537960|37961|3|30|59938.20|0.00|0.06|A|F|1995-02-11|1995-02-26|1995-03-06|DELIVER IN PERSON|AIR|nst the brave requests cajole | +37135|487289|37290|4|48|61260.48|0.02|0.07|R|F|1995-05-06|1995-03-31|1995-05-14|NONE|MAIL| fluffily ruthlessly ironic theodolites.| +37160|186587|36588|1|7|11715.06|0.10|0.03|N|O|1998-01-12|1998-02-09|1998-02-10|NONE|MAIL|deas affix quickly th| +37160|957572|32611|2|45|73328.85|0.00|0.08|N|O|1997-12-15|1998-01-18|1997-12-24|DELIVER IN PERSON|REG AIR|usly even requ| +37160|911792|11793|3|4|7215.00|0.09|0.06|N|O|1998-01-30|1998-01-27|1998-02-15|COLLECT COD|MAIL|ly along the ironic deposits. reg| +37160|478507|28508|4|7|10398.36|0.06|0.02|N|O|1997-12-25|1998-02-24|1998-01-18|TAKE BACK RETURN|MAIL|g instructions sleep carefully? carefully | +37160|251970|26981|5|31|59580.76|0.09|0.08|N|O|1997-12-19|1998-02-12|1997-12-24|TAKE BACK RETURN|SHIP|ly pending package| +37160|858988|46540|6|41|79824.54|0.03|0.08|N|O|1998-01-13|1998-02-11|1998-01-25|NONE|MAIL|bold deposi| +37161|418129|43146|1|25|26177.50|0.02|0.04|N|O|1997-12-21|1997-12-22|1997-12-25|NONE|AIR|use furiously blithely| +37161|478757|3776|2|50|86786.50|0.03|0.08|N|O|1998-01-14|1997-12-17|1998-02-09|DELIVER IN PERSON|TRUCK|ending asympt| +37161|465030|2558|3|18|17910.18|0.00|0.08|N|O|1997-12-24|1998-01-10|1997-12-29|NONE|SHIP|inal depths cajole slyly. slyly final req| +37161|754950|42496|4|20|40098.40|0.01|0.04|N|O|1997-10-27|1997-12-17|1997-11-12|TAKE BACK RETURN|TRUCK|lly final accounts| +37161|437980|25505|5|20|38359.20|0.03|0.08|N|O|1997-10-23|1997-12-02|1997-11-03|DELIVER IN PERSON|FOB|eep according to the unusual instructions.| +37161|122545|10052|6|4|6270.16|0.03|0.07|N|O|1997-12-05|1997-11-19|1997-12-21|NONE|SHIP|ar requests use blithely aft| +37161|606932|6933|7|49|90106.10|0.04|0.08|N|O|1997-12-22|1997-11-18|1997-12-29|NONE|SHIP|ag fluffily foxes. even, even | +37162|698378|10892|1|39|53677.26|0.10|0.05|N|O|1995-08-01|1995-08-15|1995-08-04|DELIVER IN PERSON|REG AIR| the furiously bold accou| +37162|624572|49597|2|33|49385.82|0.01|0.02|N|O|1995-09-11|1995-07-21|1995-09-30|DELIVER IN PERSON|RAIL|ly. carefully regular theo| +37162|176906|1913|3|12|23794.80|0.10|0.04|N|O|1995-06-24|1995-09-06|1995-07-18|DELIVER IN PERSON|SHIP|slyly even reque| +37163|118164|5671|1|45|53197.20|0.02|0.03|N|O|1996-08-17|1996-10-26|1996-08-22|NONE|RAIL|carefully unusual patterns dazz| +37163|966800|41839|2|23|42935.48|0.04|0.07|N|O|1996-09-05|1996-10-12|1996-09-13|DELIVER IN PERSON|FOB|excuses cajole close pains. | +37163|1434|38935|3|44|58758.92|0.08|0.00|N|O|1996-09-16|1996-09-21|1996-10-08|NONE|REG AIR|ecial ideas. accounts nag regu| +37163|91999|4501|4|39|77648.61|0.06|0.03|N|O|1996-10-09|1996-10-27|1996-11-07|COLLECT COD|TRUCK|nts. bold patterns boost | +37163|220157|7670|5|10|10771.40|0.08|0.04|N|O|1996-11-20|1996-10-22|1996-12-11|COLLECT COD|REG AIR|oxes. even epitaphs haggle slyly| +37163|174972|37476|6|49|100301.53|0.10|0.02|N|O|1996-09-12|1996-10-02|1996-09-26|COLLECT COD|FOB|ely daring ideas nag fluffily even pinto | +37163|746252|8767|7|18|23367.96|0.09|0.04|N|O|1996-11-12|1996-10-02|1996-11-28|DELIVER IN PERSON|MAIL|ts cajole blithely blithely daring w| +37164|247366|47367|1|26|34147.10|0.02|0.01|N|O|1997-04-17|1997-07-11|1997-05-10|DELIVER IN PERSON|MAIL|ets. regular foxes | +37164|471825|21826|2|40|71872.00|0.04|0.01|N|O|1997-04-21|1997-05-18|1997-05-04|DELIVER IN PERSON|TRUCK|slyly final a| +37164|959584|22104|3|28|46019.12|0.02|0.07|N|O|1997-06-23|1997-06-25|1997-07-08|COLLECT COD|AIR|ts sleep fu| +37164|725448|477|4|9|13260.69|0.04|0.07|N|O|1997-06-29|1997-06-25|1997-06-30|COLLECT COD|RAIL|o beans are furiously above the sly| +37164|598348|48349|5|20|28926.40|0.10|0.03|N|O|1997-07-01|1997-06-08|1997-07-02|TAKE BACK RETURN|REG AIR| dependencies grow furiously a| +37165|131717|44220|1|46|80440.66|0.07|0.00|R|F|1994-12-19|1994-11-08|1995-01-04|NONE|FOB|deposits ha| +37165|765557|3103|2|5|8112.60|0.08|0.07|A|F|1994-10-27|1994-10-31|1994-11-15|NONE|MAIL| regular excuses impress quickly. even| +37165|708130|45673|3|32|36419.20|0.10|0.03|R|F|1994-10-08|1994-10-10|1994-10-11|COLLECT COD|RAIL|eans haggle care| +37165|539236|39237|4|11|14027.31|0.07|0.00|R|F|1994-10-07|1994-10-07|1994-10-22|TAKE BACK RETURN|FOB|final warhorses.| +37165|931846|44365|5|50|93890.00|0.05|0.02|R|F|1994-11-26|1994-10-07|1994-12-14|COLLECT COD|RAIL|deposits. | +37165|531649|19180|6|4|6722.48|0.10|0.00|R|F|1994-10-08|1994-11-17|1994-10-28|DELIVER IN PERSON|AIR|ndle. blithely special | +37165|411294|23803|7|1|1205.27|0.08|0.04|R|F|1994-10-18|1994-11-12|1994-11-09|DELIVER IN PERSON|AIR|ackages. quickl| +37166|615291|40316|1|5|6031.30|0.05|0.00|R|F|1993-07-21|1993-08-18|1993-07-28|DELIVER IN PERSON|AIR|refully special requests. regu| +37166|195018|7522|2|48|53424.48|0.10|0.03|A|F|1993-09-20|1993-07-26|1993-09-27|TAKE BACK RETURN|MAIL| silent depths doze quickly ab| +37166|667520|30034|3|8|11899.92|0.07|0.02|A|F|1993-09-19|1993-08-17|1993-10-13|COLLECT COD|FOB| after the unusual acco| +37166|994960|7480|4|39|80141.88|0.07|0.05|A|F|1993-07-27|1993-08-01|1993-08-06|DELIVER IN PERSON|MAIL|. blithely unusual multip| +37167|652261|27288|1|47|57021.81|0.07|0.03|R|F|1993-10-23|1993-11-24|1993-11-14|TAKE BACK RETURN|MAIL|s. final, e| +37167|534833|9854|2|16|29884.96|0.04|0.03|A|F|1994-01-17|1993-11-21|1994-01-19|TAKE BACK RETURN|MAIL|yly regula| +37167|934754|47273|3|4|7154.84|0.08|0.02|A|F|1994-01-03|1993-11-25|1994-01-05|COLLECT COD|FOB|encies. blithely iron| +37192|937380|12417|1|40|56693.60|0.04|0.05|N|O|1996-10-17|1996-10-07|1996-10-30|DELIVER IN PERSON|TRUCK|s. special platelets affix slyly against| +37192|534656|22187|2|14|23668.82|0.00|0.00|N|O|1996-10-27|1996-09-19|1996-11-17|TAKE BACK RETURN|TRUCK|lyly pending instructions | +37192|962220|12221|3|45|57698.10|0.03|0.08|N|O|1996-12-08|1996-09-26|1996-12-21|COLLECT COD|AIR|ove the ironic packages: ironic instruction| +37192|28873|16374|4|17|30631.79|0.02|0.05|N|O|1996-11-02|1996-09-29|1996-11-26|TAKE BACK RETURN|SHIP|ding requests haggle fluffily regula| +37192|262553|12554|5|9|13639.86|0.00|0.04|N|O|1996-11-01|1996-10-29|1996-11-05|TAKE BACK RETURN|RAIL|the packages doubt unusual d| +37192|719420|6963|6|12|17272.68|0.08|0.01|N|O|1996-11-16|1996-10-19|1996-12-04|DELIVER IN PERSON|REG AIR|riously bold e| +37192|285301|22817|7|5|6431.45|0.01|0.03|N|O|1996-11-30|1996-10-12|1996-12-14|DELIVER IN PERSON|TRUCK| regular packag| +37193|48821|23822|1|45|79641.90|0.07|0.03|N|O|1996-12-01|1996-11-13|1996-12-15|COLLECT COD|TRUCK|nts. furiously regular theo| +37194|100714|38221|1|40|68588.40|0.03|0.05|A|F|1994-06-19|1994-07-20|1994-07-01|NONE|TRUCK|l accounts ar| +37194|685673|10700|2|48|79614.72|0.02|0.01|A|F|1994-07-21|1994-07-20|1994-08-13|COLLECT COD|FOB|. carefully even requests affix furio| +37194|90500|40501|3|44|65582.00|0.03|0.02|A|F|1994-08-11|1994-07-08|1994-08-29|NONE|TRUCK| quickly regular requests promise furiously| +37194|30542|18043|4|1|1472.54|0.09|0.03|R|F|1994-08-18|1994-07-14|1994-08-27|TAKE BACK RETURN|TRUCK|t the never final instructions.| +37195|750482|12998|1|48|73557.60|0.08|0.04|N|O|1997-06-21|1997-06-11|1997-07-17|COLLECT COD|FOB|ular packages! bold pe| +37195|337714|12727|2|9|15765.30|0.10|0.00|N|O|1997-07-17|1997-07-08|1997-07-19|DELIVER IN PERSON|RAIL|n packages affix furiously. | +37195|946619|46620|3|29|48301.53|0.05|0.03|N|O|1997-07-16|1997-06-07|1997-08-09|NONE|SHIP|re. furiously | +37195|811818|49367|4|40|69190.80|0.02|0.07|N|O|1997-06-07|1997-07-11|1997-07-03|DELIVER IN PERSON|MAIL| pinto beans cajol| +37195|221117|8630|5|6|6228.60|0.10|0.04|N|O|1997-06-23|1997-06-25|1997-07-09|COLLECT COD|AIR| deposits along the slyly | +37195|300580|581|6|2|3161.14|0.08|0.08|N|O|1997-05-31|1997-06-09|1997-06-22|COLLECT COD|AIR|uickly regular | +37195|835698|48215|7|12|19603.80|0.00|0.00|N|O|1997-05-29|1997-06-17|1997-06-14|COLLECT COD|RAIL|s are fluffily across the platelets. | +37196|565323|15324|1|24|33319.20|0.03|0.03|A|F|1992-07-09|1992-06-18|1992-07-16|DELIVER IN PERSON|FOB|eodolites affix quickly against| +37196|376643|39151|2|29|49869.27|0.01|0.04|R|F|1992-06-05|1992-06-08|1992-06-12|NONE|SHIP|tions. slyly regular requests a| +37196|230893|30894|3|22|40125.36|0.10|0.03|A|F|1992-06-28|1992-07-16|1992-07-17|NONE|REG AIR|g packages ar| +37197|68372|43375|1|35|46912.95|0.08|0.06|N|O|1996-06-23|1996-04-16|1996-07-04|NONE|MAIL|ial theodolites promise | +37197|116059|16060|2|41|44077.05|0.01|0.04|N|O|1996-06-24|1996-05-20|1996-07-21|DELIVER IN PERSON|MAIL|quiet accounts nag car| +37197|589467|14490|3|10|15564.40|0.08|0.02|N|O|1996-05-01|1996-04-19|1996-05-15|COLLECT COD|MAIL|ithely dogged pinto beans. slyl| +37198|229232|16745|1|43|49932.46|0.00|0.07|R|F|1994-06-25|1994-06-14|1994-07-19|COLLECT COD|SHIP|cajole slyly bold requ| +37198|691852|4366|2|21|38720.22|0.00|0.07|R|F|1994-06-28|1994-07-07|1994-07-21|DELIVER IN PERSON|MAIL|l pearls hag| +37198|942648|5167|3|43|72695.80|0.04|0.00|A|F|1994-06-24|1994-06-12|1994-07-04|COLLECT COD|RAIL|uickly express dependencies. ide| +37198|77988|27989|4|12|23591.76|0.02|0.05|R|F|1994-08-22|1994-06-29|1994-09-07|COLLECT COD|AIR|st blithely across the unusual theodolite| +37198|729942|17485|5|12|23662.92|0.05|0.07|R|F|1994-06-23|1994-05-31|1994-06-24|NONE|REG AIR|ounts. foxes ca| +37198|128524|41027|6|30|46575.60|0.06|0.02|R|F|1994-07-21|1994-07-21|1994-07-29|TAKE BACK RETURN|FOB|e furiousl| +37198|101364|38871|7|49|66902.64|0.08|0.05|R|F|1994-08-07|1994-07-03|1994-08-17|COLLECT COD|RAIL|e-- regula| +37199|614728|14729|1|32|52566.08|0.06|0.06|N|O|1998-06-12|1998-06-10|1998-06-29|TAKE BACK RETURN|SHIP|imes final courts detect fluffily. f| +37199|719375|6918|2|14|19520.76|0.05|0.08|N|O|1998-07-16|1998-07-16|1998-08-06|DELIVER IN PERSON|FOB|courts detect | +37199|526668|39179|3|44|74564.16|0.04|0.07|N|O|1998-06-28|1998-07-10|1998-07-21|NONE|RAIL|n requests. quickly express account| +37199|696402|33942|4|20|27967.40|0.01|0.01|N|O|1998-06-16|1998-07-08|1998-07-03|DELIVER IN PERSON|SHIP|blithely final pack| +37199|428276|15801|5|45|54191.25|0.00|0.05|N|O|1998-05-08|1998-06-18|1998-05-22|DELIVER IN PERSON|AIR|sts: instructions affix regular, | +37199|20869|20870|6|27|48326.22|0.09|0.03|N|O|1998-05-26|1998-06-27|1998-06-02|COLLECT COD|MAIL|e bold pack| +37199|734348|21891|7|30|41469.30|0.09|0.03|N|O|1998-07-13|1998-06-07|1998-07-15|TAKE BACK RETURN|SHIP|press packag| +37224|182937|45441|1|13|26259.09|0.06|0.03|N|O|1997-07-19|1997-05-26|1997-07-30|NONE|MAIL|thely. eve| +37224|619585|32098|2|34|51154.70|0.08|0.07|N|O|1997-03-30|1997-04-21|1997-04-09|DELIVER IN PERSON|FOB|ending foxes hinder fu| +37224|359426|46948|3|42|62387.22|0.08|0.02|N|O|1997-06-16|1997-05-09|1997-07-07|NONE|RAIL| fluffily spe| +37224|862207|49759|4|13|15199.08|0.08|0.01|N|O|1997-04-16|1997-05-02|1997-05-12|NONE|REG AIR| ironic pinto beans slee| +37225|342285|42286|1|16|21236.32|0.09|0.05|A|F|1994-12-09|1994-11-27|1994-12-29|NONE|FOB|aggle quickly. slyly final theo| +37225|768874|43905|2|5|9714.20|0.10|0.02|A|F|1994-12-16|1994-12-03|1995-01-14|TAKE BACK RETURN|REG AIR| deposits are. blithe| +37225|458043|45571|3|18|18018.36|0.06|0.01|A|F|1995-01-06|1994-12-02|1995-01-14|DELIVER IN PERSON|REG AIR|fully agai| +37226|2507|2508|1|45|63427.50|0.03|0.04|A|F|1993-01-22|1993-03-18|1993-01-25|NONE|SHIP|iously accor| +37226|132618|7623|2|6|9903.66|0.08|0.02|A|F|1993-04-06|1993-04-13|1993-04-14|DELIVER IN PERSON|MAIL|iously even deposits. acco| +37227|833733|33734|1|30|50000.70|0.07|0.02|N|O|1996-12-25|1996-11-19|1996-12-30|COLLECT COD|TRUCK|nic, even dolphins among the bold, bold a| +37227|536354|11375|2|13|18074.29|0.05|0.03|N|O|1996-12-27|1996-10-30|1997-01-14|COLLECT COD|AIR|y even gifts. furi| +37227|498517|23536|3|1|1515.49|0.00|0.01|N|O|1996-11-07|1996-11-26|1996-11-11|DELIVER IN PERSON|TRUCK| requests boost after the requests. final a| +37227|560480|48014|4|14|21566.44|0.04|0.04|N|O|1996-10-24|1996-11-03|1996-11-03|COLLECT COD|RAIL|its are slyly. carefully | +37227|986997|24555|5|38|79190.10|0.06|0.01|N|O|1996-10-29|1996-11-03|1996-11-21|NONE|REG AIR|hang. slyly unusual ideas | +37228|122112|47117|1|26|29486.86|0.07|0.03|A|F|1994-05-25|1994-04-16|1994-06-19|TAKE BACK RETURN|AIR|eodolites | +37228|328409|15928|2|19|27310.41|0.01|0.03|A|F|1994-03-05|1994-03-04|1994-03-20|COLLECT COD|FOB|final instructions. blithely ironic| +37228|555404|42938|3|11|16053.18|0.06|0.03|A|F|1994-03-17|1994-03-23|1994-03-23|TAKE BACK RETURN|AIR|pinto beans haggle fluffily among the re| +37228|674931|24932|4|9|17153.10|0.09|0.02|A|F|1994-05-15|1994-03-20|1994-06-10|TAKE BACK RETURN|AIR| foxes nag caref| +37228|554217|41751|5|17|21610.23|0.09|0.04|R|F|1994-02-04|1994-04-19|1994-03-01|NONE|TRUCK|y express i| +37229|509644|34665|1|27|44647.74|0.01|0.00|N|O|1998-08-23|1998-08-12|1998-09-09|NONE|MAIL|gular, ironic mu| +37229|581631|31632|2|18|30826.98|0.07|0.05|N|O|1998-06-30|1998-07-31|1998-07-10|COLLECT COD|RAIL|lets. slyly regular packages ar| +37229|460736|35755|3|39|66171.69|0.00|0.00|N|O|1998-07-25|1998-08-05|1998-08-08|TAKE BACK RETURN|MAIL|bout the blithely| +37229|573575|23576|4|32|52753.60|0.05|0.08|N|O|1998-06-08|1998-06-26|1998-06-21|TAKE BACK RETURN|MAIL|es wake bravely fluf| +37229|69368|31870|5|16|21397.76|0.08|0.07|N|O|1998-07-23|1998-08-14|1998-08-15|TAKE BACK RETURN|FOB|furiously according to the unusual | +37229|865976|15977|6|39|75735.27|0.06|0.06|N|O|1998-08-29|1998-08-17|1998-09-21|COLLECT COD|AIR|ts haggle carefully above the even instru| +37229|448273|48274|7|27|32973.75|0.07|0.01|N|O|1998-07-14|1998-08-06|1998-07-31|DELIVER IN PERSON|FOB|-- furiously close requests affix| +37230|112181|12182|1|21|25056.78|0.08|0.01|A|F|1993-02-04|1993-01-22|1993-02-12|NONE|TRUCK|hely ironic packages cajole carefully ev| +37231|466951|29461|1|9|17261.37|0.08|0.05|A|F|1993-02-04|1992-12-07|1993-02-07|DELIVER IN PERSON|TRUCK|ly final ideas. e| +37231|41165|41166|2|11|12167.76|0.09|0.04|A|F|1993-02-10|1992-11-26|1993-03-02|TAKE BACK RETURN|RAIL|he asymptotes hinder carefully foxes| +37231|853861|16379|3|12|21777.84|0.09|0.08|R|F|1992-12-09|1993-01-07|1992-12-22|DELIVER IN PERSON|RAIL| blithely even reque| +37256|896711|21746|1|29|49522.43|0.06|0.06|N|O|1996-07-15|1996-08-15|1996-07-18|DELIVER IN PERSON|AIR|ggle slyly against the carefully spe| +37257|743858|31401|1|6|11410.92|0.00|0.04|R|F|1993-09-03|1993-08-12|1993-09-25|TAKE BACK RETURN|AIR|ccounts! slyly| +37257|16588|16589|2|22|33100.76|0.00|0.02|R|F|1993-10-24|1993-08-07|1993-11-21|DELIVER IN PERSON|MAIL|refully unusual ide| +37257|784125|46641|3|17|20554.53|0.04|0.08|R|F|1993-07-23|1993-08-19|1993-08-13|TAKE BACK RETURN|RAIL|efully along th| +37257|782898|32899|4|9|17827.74|0.06|0.01|A|F|1993-07-29|1993-08-17|1993-08-03|COLLECT COD|RAIL|totes. furiously unusual reque| +37258|859847|34882|1|5|9034.00|0.01|0.05|N|O|1997-03-09|1997-02-19|1997-03-12|NONE|REG AIR|carefully final packages haggle bli| +37258|437021|12038|2|50|47900.00|0.07|0.04|N|O|1996-12-31|1997-02-13|1997-01-18|NONE|AIR|carefully along the fur| +37258|10845|48346|3|24|42140.16|0.07|0.06|N|O|1996-12-09|1997-01-03|1996-12-23|TAKE BACK RETURN|MAIL|y even dolphins serve furious| +37258|260136|35147|4|48|52613.76|0.05|0.02|N|O|1997-01-28|1997-02-19|1997-02-08|COLLECT COD|SHIP|en deposits. | +37258|91078|28582|5|46|49177.22|0.09|0.05|N|O|1996-12-15|1997-01-30|1997-01-11|DELIVER IN PERSON|FOB|tes. ideas are slyly at the slyly | +37258|741039|41040|6|17|18360.00|0.08|0.00|N|O|1996-12-27|1996-12-31|1997-01-21|COLLECT COD|REG AIR|s sublate. quickly regular theodolites | +37258|632978|8003|7|50|95547.00|0.08|0.06|N|O|1996-12-28|1997-02-16|1997-01-05|NONE|SHIP|mptotes after the caref| +37259|450329|37857|1|4|5117.20|0.03|0.06|A|F|1993-02-08|1993-02-28|1993-02-23|NONE|AIR|f the platelets.| +37259|678046|3073|2|14|14336.14|0.03|0.05|R|F|1993-02-07|1993-03-27|1993-02-11|DELIVER IN PERSON|RAIL|pending packages. deposits across | +37259|905396|5397|3|19|26625.65|0.09|0.00|A|F|1993-04-20|1993-04-10|1993-05-04|TAKE BACK RETURN|SHIP| final deposits. care| +37260|98982|23985|1|37|73296.26|0.06|0.05|N|O|1997-12-18|1998-01-03|1998-01-08|DELIVER IN PERSON|TRUCK| carefully eve| +37260|586825|36826|2|1|1911.80|0.08|0.08|N|O|1998-02-07|1998-01-12|1998-03-07|DELIVER IN PERSON|RAIL|totes. blithely even pin| +37260|754219|16735|3|9|11458.62|0.07|0.02|N|O|1998-01-14|1998-02-22|1998-01-29|DELIVER IN PERSON|RAIL| blithely quick packages haggle above | +37261|421076|46093|1|9|8973.45|0.00|0.04|R|F|1994-08-09|1994-08-08|1994-09-04|TAKE BACK RETURN|MAIL|jole slyly carefully final accounts.| +37262|660632|10633|1|2|3185.20|0.08|0.08|N|O|1997-03-21|1997-03-21|1997-03-26|NONE|TRUCK|s. furious| +37262|237542|37543|2|38|56222.14|0.04|0.00|N|O|1997-02-21|1997-04-11|1997-02-28|TAKE BACK RETURN|RAIL| hinder across the car| +37262|367663|17664|3|17|29421.05|0.07|0.01|N|O|1997-02-21|1997-04-22|1997-03-18|NONE|REG AIR|y bold accou| +37262|302375|27388|4|14|19283.04|0.09|0.08|N|O|1997-06-18|1997-05-12|1997-06-21|DELIVER IN PERSON|SHIP|regular, final theodolites | +37262|9850|9851|5|46|80953.10|0.05|0.08|N|O|1997-02-26|1997-03-21|1997-03-14|COLLECT COD|MAIL|oss the slyly regular packages | +37263|506067|31088|1|26|27899.04|0.07|0.07|A|F|1992-07-01|1992-08-15|1992-07-29|DELIVER IN PERSON|TRUCK|ress deposits. even| +37263|459321|34340|2|35|44810.50|0.08|0.06|A|F|1992-06-28|1992-08-15|1992-07-26|NONE|REG AIR|are slyly slyly even theodolites. slyly i| +37263|804540|42089|3|24|34668.00|0.10|0.03|A|F|1992-07-11|1992-07-26|1992-08-07|TAKE BACK RETURN|SHIP|blithely regular ideas integrate blithely d| +37263|887577|12612|4|1|1564.53|0.00|0.08|R|F|1992-09-04|1992-08-30|1992-09-13|COLLECT COD|RAIL|ests promise furious| +37263|500230|231|5|21|25834.41|0.10|0.06|A|F|1992-08-06|1992-08-05|1992-08-09|TAKE BACK RETURN|REG AIR| even courts haggle furiously pendi| +37288|523619|36130|1|31|50920.29|0.06|0.01|N|O|1996-01-04|1996-03-15|1996-01-13|TAKE BACK RETURN|FOB|eposits. quickly specia| +37288|451113|13623|2|30|31922.70|0.03|0.03|N|O|1995-12-29|1996-03-18|1996-01-28|COLLECT COD|FOB|nooze always. unusual requests beli| +37288|850592|38144|3|44|67872.20|0.01|0.07|N|O|1996-04-08|1996-03-10|1996-04-09|COLLECT COD|AIR|es. slyly express theodolite| +37289|891581|41582|1|16|25160.64|0.03|0.04|N|O|1997-02-16|1997-01-29|1997-03-14|TAKE BACK RETURN|RAIL|inal foxes. quickly regular pinto b| +37289|798444|10960|2|21|32390.61|0.01|0.00|N|O|1997-04-15|1997-02-11|1997-04-26|COLLECT COD|FOB|eep idly even foxes. pinto bea| +37289|434056|9073|3|30|29700.90|0.09|0.06|N|O|1997-01-26|1997-03-18|1997-02-18|DELIVER IN PERSON|MAIL|y across t| +37289|176290|38794|4|30|40988.70|0.01|0.08|N|O|1997-04-12|1997-02-02|1997-04-26|COLLECT COD|REG AIR|imes final, final theodolites. furiou| +37289|894916|32468|5|29|55415.23|0.10|0.05|N|O|1997-02-06|1997-01-27|1997-02-24|DELIVER IN PERSON|AIR|he furiously regular deposits boost above | +37289|845500|45501|6|15|21681.90|0.03|0.06|N|O|1997-04-11|1997-02-14|1997-05-02|COLLECT COD|SHIP|might sleep carefully acc| +37289|311664|24171|7|18|30161.70|0.08|0.07|N|O|1997-02-20|1997-03-06|1997-03-20|DELIVER IN PERSON|MAIL|c ideas. fluffily ironic | +37290|126178|1183|1|7|8429.19|0.09|0.06|R|F|1995-05-02|1995-05-09|1995-05-06|TAKE BACK RETURN|FOB|lithely around the | +37290|671161|8701|2|50|56606.50|0.07|0.06|R|F|1995-05-25|1995-05-11|1995-06-03|DELIVER IN PERSON|FOB|o the special c| +37290|190452|2956|3|36|55528.20|0.04|0.00|R|F|1995-05-29|1995-06-01|1995-06-01|COLLECT COD|FOB|lithely carefully bold sauternes. unusual p| +37290|922307|47344|4|6|7975.56|0.04|0.08|R|F|1995-05-06|1995-04-27|1995-05-31|NONE|MAIL|ve. bold, final inst| +37290|206721|44234|5|28|45575.88|0.07|0.05|A|F|1995-04-02|1995-06-02|1995-04-07|NONE|SHIP|st against the | +37291|504937|42468|1|27|52431.57|0.10|0.00|N|O|1998-10-14|1998-09-28|1998-10-24|TAKE BACK RETURN|AIR|ly among the carefully final theodoli| +37291|469270|6798|2|25|30981.25|0.02|0.04|N|O|1998-08-04|1998-09-05|1998-08-09|TAKE BACK RETURN|MAIL|re slyly according to the blithely sp| +37291|16171|16172|3|13|14133.21|0.06|0.04|N|O|1998-08-23|1998-09-07|1998-08-26|DELIVER IN PERSON|REG AIR| integrate| +37292|572988|10522|1|7|14426.72|0.10|0.08|N|O|1995-06-29|1995-06-16|1995-07-02|NONE|SHIP| use above the accounts. express pac| +37292|203674|3675|2|46|72572.36|0.07|0.00|N|O|1995-07-18|1995-07-23|1995-07-24|NONE|RAIL|uriously ironic packages was blithel| +37292|144838|44839|3|11|20711.13|0.02|0.02|N|F|1995-06-05|1995-06-25|1995-06-25|COLLECT COD|TRUCK|l requests. ironic, final requests detect f| +37292|291668|41669|4|18|29873.70|0.06|0.06|A|F|1995-05-15|1995-07-10|1995-05-30|COLLECT COD|RAIL|y. regular instructions cajo| +37292|56733|19235|5|30|50691.90|0.07|0.04|N|F|1995-06-15|1995-06-06|1995-07-07|TAKE BACK RETURN|REG AIR|pendencies haggle after the pi| +37292|496429|33957|6|45|64143.00|0.03|0.03|A|F|1995-05-05|1995-06-28|1995-06-04|COLLECT COD|REG AIR| packages sleep ca| +37293|465727|3255|1|14|23697.80|0.00|0.02|N|O|1997-07-10|1997-06-14|1997-07-16|COLLECT COD|FOB|ent foxes dazzle. pending instructions | +37293|471401|8929|2|27|37054.26|0.10|0.08|N|O|1997-04-16|1997-05-13|1997-05-09|DELIVER IN PERSON|SHIP|pending account| +37293|820644|33161|3|46|71971.60|0.07|0.08|N|O|1997-07-13|1997-06-19|1997-07-26|NONE|MAIL| final pac| +37294|225520|529|1|50|72275.50|0.02|0.00|N|O|1997-03-08|1997-03-31|1997-03-25|NONE|RAIL| quickly. | +37294|313208|25715|2|16|19539.04|0.00|0.00|N|O|1997-03-24|1997-03-30|1997-04-03|COLLECT COD|FOB|after the special deposits; bold, | +37295|110355|47862|1|6|8192.10|0.05|0.04|A|F|1992-12-21|1993-02-05|1993-01-19|COLLECT COD|REG AIR|its across the regular packages cajo| +37320|502674|2675|1|40|67066.00|0.02|0.03|N|O|1997-06-15|1997-07-19|1997-06-22|NONE|RAIL|detect slyly alongside of the furiously| +37320|440942|28467|2|25|47073.00|0.08|0.01|N|O|1997-06-15|1997-08-26|1997-06-23|TAKE BACK RETURN|TRUCK|ajole caref| +37321|782802|32803|1|14|26386.78|0.05|0.03|N|O|1995-11-07|1995-12-07|1995-12-05|NONE|MAIL|ic deposits; f| +37321|544411|6922|2|48|69858.72|0.07|0.00|N|O|1995-10-21|1995-10-30|1995-11-15|COLLECT COD|MAIL|ffily bold accounts print against t| +37321|908878|8879|3|18|33962.94|0.07|0.03|N|O|1995-11-01|1995-12-09|1995-11-18|TAKE BACK RETURN|SHIP|special pinto beans cajole carefully sl| +37321|510292|47823|4|9|11720.43|0.10|0.07|N|O|1995-12-02|1995-11-11|1995-12-26|TAKE BACK RETURN|REG AIR|s the slyly final reque| +37322|580674|5697|1|41|71940.65|0.07|0.05|N|O|1995-09-05|1995-08-11|1995-09-06|NONE|AIR|ly final instructions hin| +37322|386719|24241|2|17|30696.90|0.07|0.02|N|O|1995-07-10|1995-08-02|1995-07-22|COLLECT COD|TRUCK|gular, express depo| +37322|581229|43741|3|5|6551.00|0.04|0.07|N|O|1995-09-27|1995-08-21|1995-10-23|TAKE BACK RETURN|SHIP|instructions across the pending | +37322|701695|14210|4|9|15269.94|0.03|0.01|N|O|1995-09-13|1995-09-08|1995-10-02|NONE|AIR|er the unusual reque| +37322|382828|45336|5|29|55413.49|0.07|0.08|N|O|1995-06-29|1995-08-24|1995-07-29|COLLECT COD|MAIL|lithely final dependencies. | +37322|178593|28594|6|27|45132.93|0.06|0.03|N|O|1995-07-19|1995-08-26|1995-07-20|DELIVER IN PERSON|REG AIR|ounts. final instructions are f| +37323|875630|665|1|38|61012.42|0.02|0.06|R|F|1993-09-27|1993-09-12|1993-10-27|NONE|MAIL|efully bold theodolites affix b| +37323|703848|41391|2|28|51850.68|0.05|0.01|A|F|1993-09-06|1993-08-16|1993-09-25|COLLECT COD|TRUCK|l notornis. carefully final reques| +37324|872545|35063|1|12|18210.00|0.05|0.07|R|F|1992-04-30|1992-04-19|1992-05-01|COLLECT COD|FOB|lyly even dolphins. even instr| +37324|850880|13398|2|33|60417.72|0.07|0.04|R|F|1992-05-13|1992-04-09|1992-06-04|DELIVER IN PERSON|SHIP|ess foxes use | +37324|736783|11812|3|46|83708.50|0.04|0.07|A|F|1992-05-08|1992-05-01|1992-06-04|DELIVER IN PERSON|SHIP|y furiously ironic accounts. excuses are sl| +37324|102757|2758|4|31|54552.25|0.03|0.02|A|F|1992-05-05|1992-05-09|1992-05-25|COLLECT COD|SHIP|ole. bold, ironic excu| +37324|25691|13192|5|12|19400.28|0.06|0.00|R|F|1992-05-03|1992-05-10|1992-05-28|COLLECT COD|RAIL|al deposits. carefully| +37324|784283|21829|6|20|27345.00|0.04|0.02|A|F|1992-03-24|1992-03-26|1992-04-19|TAKE BACK RETURN|TRUCK|lly final, i| +37324|437712|37713|7|33|54439.77|0.10|0.06|R|F|1992-05-21|1992-03-25|1992-06-04|NONE|FOB| packages. unusual accounts acc| +37325|625474|25475|1|27|37784.88|0.10|0.00|R|F|1993-02-25|1993-02-24|1993-03-07|COLLECT COD|AIR|counts. carefully si| +37325|336176|23695|2|27|32728.32|0.07|0.06|R|F|1993-03-11|1993-03-16|1993-04-02|TAKE BACK RETURN|MAIL| of the final, regular pa| +37325|102218|27223|3|13|15862.73|0.01|0.01|R|F|1993-03-23|1993-02-24|1993-03-28|COLLECT COD|MAIL| beans sleep furious| +37326|942088|4607|1|49|55371.96|0.06|0.02|R|F|1994-05-23|1994-06-27|1994-06-14|NONE|TRUCK|ding to the regular, regular accounts. sl| +37326|657043|44583|2|43|43000.43|0.00|0.01|R|F|1994-06-08|1994-07-30|1994-07-08|TAKE BACK RETURN|SHIP|dolites about | +37326|906691|19210|3|25|42441.25|0.03|0.02|A|F|1994-09-07|1994-07-25|1994-09-10|NONE|AIR|print. busily bold accounts sleep| +37326|755564|5565|4|17|27532.01|0.04|0.08|A|F|1994-07-14|1994-06-21|1994-07-22|DELIVER IN PERSON|RAIL|ven accounts. | +37327|852167|27202|1|48|53717.76|0.03|0.02|A|F|1994-04-26|1994-03-25|1994-05-15|NONE|RAIL|furiously al| +37352|388811|38812|1|2|3799.60|0.00|0.05|N|O|1997-10-22|1997-11-23|1997-10-31|NONE|AIR|are quickly theodolites. even, ir| +37352|739792|39793|2|15|27476.40|0.02|0.01|N|O|1997-10-13|1997-12-06|1997-11-07|TAKE BACK RETURN|AIR| boost blithely. unusual deposit| +37352|669664|19665|3|10|16336.30|0.10|0.03|N|O|1997-11-06|1997-11-21|1997-11-07|DELIVER IN PERSON|SHIP|as haggle quickly special accounts. pendin| +37353|221205|33710|1|32|36038.08|0.03|0.03|R|F|1993-09-23|1993-08-07|1993-10-21|TAKE BACK RETURN|SHIP| the platel| +37353|789773|14804|2|10|18627.40|0.05|0.02|R|F|1993-07-07|1993-08-27|1993-07-24|COLLECT COD|SHIP|tes sleep. final pa| +37353|714488|14489|3|1|1502.45|0.01|0.07|R|F|1993-10-12|1993-07-23|1993-10-13|DELIVER IN PERSON|RAIL|arefully ironic ac| +37353|390425|40426|4|40|60616.40|0.06|0.05|A|F|1993-08-30|1993-07-20|1993-09-11|COLLECT COD|TRUCK|c accounts! ironic dep| +37353|865095|27613|5|8|8480.40|0.05|0.04|A|F|1993-09-16|1993-08-22|1993-10-14|DELIVER IN PERSON|REG AIR|cajole blithely even ideas. packages al| +37353|648061|48062|6|49|49442.47|0.02|0.01|A|F|1993-08-04|1993-07-27|1993-08-29|DELIVER IN PERSON|MAIL| cajole bold dugouts. brave instructions c| +37353|947158|9677|7|13|15666.43|0.02|0.07|R|F|1993-08-29|1993-07-28|1993-09-15|COLLECT COD|MAIL|press asymptotes sleep doggedl| +37354|869017|19018|1|6|5915.82|0.00|0.00|N|O|1997-03-31|1997-01-31|1997-04-27|COLLECT COD|AIR|he special, f| +37354|562588|122|2|14|23107.84|0.08|0.03|N|O|1997-02-08|1997-01-08|1997-02-22|NONE|SHIP|hely special forges. express, eve| +37354|404980|42505|3|5|9424.80|0.04|0.04|N|O|1997-02-06|1997-02-10|1997-02-14|COLLECT COD|RAIL|y unusual deposits around the regula| +37354|497919|22938|4|12|23002.68|0.04|0.06|N|O|1997-03-24|1997-02-05|1997-03-29|DELIVER IN PERSON|RAIL| even deposits wake never | +37354|507861|45392|5|30|56065.20|0.05|0.01|N|O|1997-02-14|1997-02-16|1997-02-22|TAKE BACK RETURN|RAIL|xcuses cajole blithely to the bus| +37354|617327|17328|6|41|51015.89|0.04|0.08|N|O|1997-03-21|1997-01-09|1997-04-19|DELIVER IN PERSON|AIR|s use. exp| +37354|412766|25275|7|31|52040.94|0.04|0.07|N|O|1997-02-10|1997-01-15|1997-02-23|NONE|AIR|all have to ca| +37355|346438|8945|1|39|57892.38|0.04|0.02|A|F|1995-03-08|1995-01-27|1995-04-03|DELIVER IN PERSON|MAIL|ous foxes.| +37355|580182|30183|2|18|22718.88|0.07|0.05|A|F|1995-02-10|1995-01-02|1995-02-27|COLLECT COD|RAIL|cross the stealthy, regular acc| +37355|106734|44241|3|14|24370.22|0.10|0.02|R|F|1995-01-10|1995-01-18|1995-01-13|TAKE BACK RETURN|MAIL|sleep after the quickly ironic fo| +37355|862885|37920|4|33|60978.72|0.09|0.03|R|F|1995-03-06|1995-02-03|1995-03-17|COLLECT COD|FOB|ts. slyly | +37356|543676|31207|1|26|44710.90|0.10|0.02|R|F|1994-10-13|1994-09-20|1994-10-31|COLLECT COD|REG AIR|aggle. furiously unusual courts cajole abou| +37356|553460|28483|2|46|69618.24|0.09|0.06|A|F|1994-09-29|1994-09-22|1994-10-12|TAKE BACK RETURN|MAIL|silent packages. furiously express p| +37356|987990|13029|3|42|87273.90|0.04|0.00|A|F|1994-09-15|1994-09-05|1994-10-14|NONE|RAIL| bold packages nag fluffily according to th| +37356|140508|40509|4|43|66585.50|0.06|0.08|A|F|1994-10-24|1994-09-21|1994-11-14|DELIVER IN PERSON|MAIL|ly ironic asymptotes. pendin| +37357|474503|24504|1|5|7387.40|0.09|0.08|R|F|1994-08-16|1994-08-29|1994-08-26|DELIVER IN PERSON|MAIL|carefully even pack| +37357|962491|12492|2|28|43496.60|0.10|0.07|R|F|1994-07-28|1994-09-01|1994-08-15|NONE|TRUCK|lthily alongside of the | +37357|579469|41981|3|50|77422.00|0.10|0.05|R|F|1994-09-10|1994-09-30|1994-09-25|COLLECT COD|MAIL|ymptotes sleep doggedl| +37357|120242|32745|4|41|51751.84|0.02|0.01|A|F|1994-11-07|1994-09-29|1994-11-28|NONE|RAIL|y unusual acco| +37357|900378|37933|5|13|17918.29|0.07|0.04|R|F|1994-10-10|1994-08-19|1994-11-01|NONE|FOB|bove the quickly| +37357|652607|27634|6|14|21833.98|0.01|0.01|R|F|1994-07-29|1994-08-13|1994-08-24|DELIVER IN PERSON|TRUCK|rays cajole after the quickly e| +37358|24107|11608|1|23|23715.30|0.08|0.00|R|F|1993-01-28|1993-01-04|1993-02-01|NONE|MAIL|ng to the slyly regular accounts. fluffil| +37358|163937|38944|2|24|48022.32|0.05|0.03|R|F|1993-02-04|1993-01-26|1993-02-27|NONE|TRUCK| haggle carefully unusual, final re| +37358|277407|27408|3|15|20765.85|0.07|0.07|R|F|1993-03-12|1993-01-12|1993-03-17|TAKE BACK RETURN|SHIP| nag fluffily special packages? | +37358|373141|35649|4|35|42494.55|0.06|0.04|A|F|1993-01-18|1993-02-12|1993-01-20|TAKE BACK RETURN|MAIL|quickly furious deposits haggle flu| +37358|371556|21557|5|18|29295.72|0.01|0.06|A|F|1993-03-14|1993-01-05|1993-03-22|COLLECT COD|TRUCK|tions detect slowly along the unusual pa| +37358|734970|9999|6|19|38093.86|0.09|0.03|R|F|1993-01-27|1993-02-27|1993-02-08|NONE|MAIL|ts ought to s| +37359|500378|37909|1|10|13783.50|0.05|0.07|R|F|1995-03-14|1995-02-08|1995-03-24|COLLECT COD|TRUCK|y special instructions. speci| +37359|836734|49251|2|47|78522.43|0.00|0.05|A|F|1995-03-09|1995-01-08|1995-03-11|NONE|SHIP|ns wake fluffily slyly pen| +37359|977469|39989|3|35|54124.70|0.03|0.04|A|F|1995-01-10|1995-02-09|1995-01-26|DELIVER IN PERSON|AIR|eans x-ray. pending pinto | +37359|305393|30406|4|16|22374.08|0.05|0.02|R|F|1994-12-11|1995-01-24|1994-12-16|COLLECT COD|AIR|iresias; regular deposits alongside| +37359|729739|29740|5|30|53061.00|0.05|0.08|A|F|1995-03-03|1995-02-10|1995-03-13|DELIVER IN PERSON|SHIP|final ideas. unusual accoun| +37384|355665|5666|1|26|44736.90|0.07|0.04|N|O|1996-05-16|1996-05-16|1996-06-06|TAKE BACK RETURN|TRUCK|. instructions haggle sly| +37384|661551|49091|2|16|24200.32|0.07|0.07|N|O|1996-06-02|1996-04-13|1996-06-07|NONE|MAIL|aggle always above the ironic pinto bean| +37384|684784|34785|3|17|30068.75|0.09|0.05|N|O|1996-04-03|1996-05-01|1996-04-26|TAKE BACK RETURN|FOB|final requests haggle slyly slyly | +37384|156246|31253|4|23|29951.52|0.08|0.01|N|O|1996-04-30|1996-04-25|1996-05-01|COLLECT COD|RAIL|eposits about| +37385|810585|23102|1|25|37388.50|0.08|0.07|N|O|1998-08-07|1998-08-04|1998-08-13|NONE|MAIL|ons haggle furiously pending dep| +37385|488008|518|2|25|24899.50|0.00|0.08|N|O|1998-10-02|1998-08-21|1998-10-23|DELIVER IN PERSON|MAIL|ouches haggle. slyly bold pinto beans det| +37385|942187|4706|3|28|34415.92|0.04|0.00|N|O|1998-10-22|1998-08-18|1998-11-17|NONE|SHIP|y. slyly regular courts ac| +37385|330485|42992|4|10|15154.70|0.05|0.08|N|O|1998-09-05|1998-08-08|1998-09-25|TAKE BACK RETURN|SHIP| carefully silently ironic requests. car| +37386|72767|35269|1|7|12178.32|0.07|0.05|R|F|1993-11-17|1993-09-30|1993-12-06|NONE|RAIL|le. blithely final packa| +37386|984768|34769|2|32|59287.04|0.06|0.06|A|F|1993-08-09|1993-09-03|1993-08-22|NONE|MAIL| the slyly final pinto beans; | +37386|979051|4090|3|46|51980.46|0.05|0.01|R|F|1993-11-18|1993-09-24|1993-12-18|TAKE BACK RETURN|AIR|ages! regular d| +37386|899286|36838|4|24|30845.76|0.02|0.07|A|F|1993-08-26|1993-10-23|1993-09-20|COLLECT COD|AIR|efully bold packages. fluffily silent depo| +37386|292321|42322|5|50|65665.50|0.01|0.04|A|F|1993-10-09|1993-09-26|1993-10-24|DELIVER IN PERSON|REG AIR|y even foxes are. even packages | +37386|25240|25241|6|3|3495.72|0.07|0.00|A|F|1993-09-30|1993-10-17|1993-10-15|TAKE BACK RETURN|FOB|ular deposits wake blithely | +37386|207293|44806|7|16|19204.48|0.07|0.06|R|F|1993-08-24|1993-09-30|1993-09-12|DELIVER IN PERSON|TRUCK|rts. slyly ironic packag| +37387|969651|32171|1|14|24088.54|0.03|0.01|N|O|1995-10-23|1995-08-31|1995-10-27|DELIVER IN PERSON|REG AIR|ly slyly regular depo| +37387|911266|48821|2|37|47257.14|0.09|0.04|N|O|1995-10-05|1995-09-30|1995-10-29|NONE|MAIL|c accounts among the blith| +37387|632056|19593|3|2|1976.04|0.09|0.05|N|O|1995-11-01|1995-10-06|1995-11-12|COLLECT COD|FOB|t blithely u| +37387|960058|10059|4|28|31304.28|0.02|0.03|N|O|1995-07-23|1995-09-06|1995-08-04|DELIVER IN PERSON|TRUCK|efully carefully pending accounts: qu| +37387|694703|7217|5|48|81488.16|0.07|0.06|N|O|1995-10-31|1995-09-07|1995-11-27|NONE|MAIL|blithely iro| +37388|371042|8564|1|5|5565.15|0.09|0.04|N|O|1998-02-06|1998-02-13|1998-02-21|DELIVER IN PERSON|RAIL|ly final instructions sleep slyly around th| +37389|86213|48715|1|41|49167.61|0.01|0.03|N|O|1998-01-23|1997-11-09|1998-02-09|NONE|FOB|special accounts ac| +37389|972064|22065|2|43|48848.86|0.01|0.03|N|O|1997-12-22|1997-12-27|1998-01-05|TAKE BACK RETURN|REG AIR|, regular deposits. unu| +37389|475455|25456|3|20|28608.60|0.06|0.07|N|O|1998-02-01|1998-01-02|1998-02-20|NONE|SHIP|e dinos. regular, p| +37390|578886|3909|1|1|1964.86|0.05|0.08|R|F|1993-03-26|1993-05-23|1993-04-03|TAKE BACK RETURN|TRUCK| requests are fluffily expr| +37390|322551|10070|2|17|26750.18|0.04|0.08|A|F|1993-03-31|1993-05-20|1993-04-05|DELIVER IN PERSON|RAIL|y bold excuses around the fu| +37390|111082|36087|3|46|50281.68|0.05|0.00|A|F|1993-05-03|1993-04-11|1993-05-17|NONE|REG AIR|ic accounts are furiously| +37391|969171|31691|1|47|58286.11|0.01|0.07|N|O|1997-06-29|1997-06-27|1997-07-04|DELIVER IN PERSON|AIR|iously against the tithes. blithely reg| +37391|853658|41210|2|19|30620.59|0.06|0.07|N|O|1997-07-01|1997-06-23|1997-07-28|COLLECT COD|TRUCK|e slyly ironic requests. regul| +37391|428425|28426|3|50|67670.00|0.07|0.05|N|O|1997-08-13|1997-07-19|1997-08-14|NONE|TRUCK|es nag carefully| +37391|523014|10545|4|45|46664.55|0.03|0.00|N|O|1997-07-11|1997-07-10|1997-07-20|TAKE BACK RETURN|REG AIR|uests wake slyly fluffily bold sentiments. | +37391|285982|48488|5|14|27551.58|0.09|0.03|N|O|1997-06-20|1997-07-09|1997-07-02|COLLECT COD|TRUCK|o beans. blit| +37391|493680|31208|6|29|48536.14|0.01|0.05|N|O|1997-05-14|1997-07-07|1997-05-15|NONE|REG AIR| blithely unu| +37391|277312|14828|7|18|23207.40|0.10|0.07|N|O|1997-08-06|1997-06-26|1997-08-25|TAKE BACK RETURN|FOB| accounts. furiously regular pinto bea| +37416|774597|12143|1|10|16715.60|0.05|0.08|A|F|1992-12-28|1993-01-04|1993-01-14|DELIVER IN PERSON|AIR|ly furiously unu| +37417|508108|8109|1|18|20089.44|0.08|0.06|N|O|1997-11-14|1997-11-25|1997-12-02|NONE|AIR|furiously. bold instructions haggle furio| +37417|759551|34582|2|4|6442.08|0.04|0.06|N|O|1997-09-23|1997-11-02|1997-10-13|COLLECT COD|TRUCK|gular ideas. busy pinto be| +37417|760207|35238|3|15|19007.55|0.05|0.07|N|O|1997-11-01|1997-11-03|1997-11-16|NONE|RAIL|es. blithely final foxes was. fu| +37417|797290|9806|4|2|2774.52|0.05|0.05|N|O|1998-01-08|1997-12-02|1998-01-25|DELIVER IN PERSON|MAIL| furiously final courts. bl| +37418|563827|1361|1|10|18908.00|0.04|0.08|A|F|1992-10-17|1992-10-06|1992-11-02|TAKE BACK RETURN|SHIP|ronic dependencies haggle accor| +37418|223631|36136|2|44|68403.28|0.01|0.07|R|F|1992-10-18|1992-10-14|1992-10-20|NONE|MAIL|into beans wake according to the slyly| +37419|317212|4731|1|14|17208.80|0.09|0.00|A|F|1995-04-27|1995-03-17|1995-05-02|COLLECT COD|TRUCK|after the busily| +37419|379810|17332|2|29|54804.20|0.06|0.08|A|F|1995-05-06|1995-02-28|1995-05-11|NONE|TRUCK|otes cajole enticingly fluffil| +37419|456676|44204|3|43|70203.95|0.00|0.00|R|F|1995-03-27|1995-04-02|1995-04-01|TAKE BACK RETURN|TRUCK|lar ideas. express| +37419|353267|40789|4|44|58091.00|0.04|0.02|R|F|1995-04-11|1995-03-27|1995-04-28|TAKE BACK RETURN|FOB|ntegrate above the fluffily regular pint| +37419|343016|5523|5|5|5295.00|0.07|0.08|A|F|1995-04-29|1995-02-16|1995-05-22|DELIVER IN PERSON|AIR|beans are slowly bl| +37419|63865|38868|6|6|10973.16|0.05|0.05|R|F|1995-02-22|1995-03-18|1995-03-15|NONE|FOB|etimes final warthogs-- blithely u| +37419|377082|14604|7|33|38249.31|0.00|0.00|R|F|1995-03-05|1995-02-24|1995-03-30|TAKE BACK RETURN|AIR|usual, regular ideas haggl| +37420|614650|2187|1|20|31292.40|0.04|0.08|R|F|1994-09-10|1994-07-15|1994-09-11|DELIVER IN PERSON|TRUCK|l packages. quickly | +37420|412215|37232|2|17|19162.23|0.05|0.07|R|F|1994-08-23|1994-08-08|1994-08-25|DELIVER IN PERSON|MAIL|packages. final, re| +37420|85292|22796|3|34|43427.86|0.07|0.02|R|F|1994-07-09|1994-08-01|1994-07-28|NONE|AIR| slyly unusual excu| +37420|495489|45490|4|34|50471.64|0.02|0.06|A|F|1994-06-26|1994-08-05|1994-07-22|COLLECT COD|AIR| along the req| +37420|683242|45756|5|25|30630.25|0.05|0.08|A|F|1994-09-06|1994-08-07|1994-09-29|TAKE BACK RETURN|FOB|gular instructions. fluffily exp| +37421|791137|41138|1|48|58948.80|0.02|0.01|R|F|1993-05-07|1993-05-22|1993-05-10|TAKE BACK RETURN|TRUCK|theodolites integrate among the slyly s| +37421|634574|47087|2|19|28662.26|0.04|0.03|A|F|1993-06-24|1993-05-16|1993-07-12|NONE|AIR|egrate care| +37421|273723|23724|3|35|59384.85|0.01|0.07|R|F|1993-07-04|1993-05-28|1993-07-30|COLLECT COD|MAIL|riously regular fox| +37422|108384|8385|1|23|32024.74|0.03|0.05|N|O|1997-10-22|1997-11-11|1997-11-18|COLLECT COD|AIR|theodolites from the| +37422|606589|44126|2|34|50848.70|0.05|0.05|N|O|1997-09-22|1997-10-26|1997-10-18|COLLECT COD|TRUCK|ccounts. blithely bold excuses among the| +37422|931752|44271|3|36|64213.56|0.00|0.07|N|O|1997-11-01|1997-11-22|1997-12-01|TAKE BACK RETURN|FOB|eposits are across the care| +37422|951513|1514|4|18|28160.46|0.08|0.00|N|O|1997-12-13|1997-10-14|1997-12-18|NONE|AIR|riously even request| +37423|495053|45054|1|20|20960.60|0.10|0.08|A|F|1995-03-29|1995-05-18|1995-03-30|TAKE BACK RETURN|MAIL|kly deposits. regular ide| +37423|354199|41721|2|29|36342.22|0.01|0.01|R|F|1995-05-06|1995-05-23|1995-06-01|NONE|REG AIR|posits are slyly | +37423|17481|42482|3|9|12586.32|0.03|0.03|A|F|1995-03-04|1995-05-02|1995-03-21|NONE|SHIP|telets detect blithely spec| +37448|288650|13661|1|44|72100.16|0.03|0.05|N|O|1996-08-06|1996-06-03|1996-08-24|DELIVER IN PERSON|FOB|c requests haggle furi| +37448|323773|48786|2|25|44919.00|0.03|0.07|N|O|1996-07-23|1996-05-24|1996-08-18|COLLECT COD|MAIL|even instructi| +37448|645432|45433|3|2|2754.80|0.02|0.05|N|O|1996-04-21|1996-07-13|1996-04-23|DELIVER IN PERSON|MAIL|endencies. requests shall have to| +37448|775372|37888|4|49|70919.66|0.04|0.02|N|O|1996-07-26|1996-06-06|1996-08-09|DELIVER IN PERSON|FOB|nal packages wake ironic| +37449|725749|13292|1|2|3549.42|0.07|0.03|N|O|1995-08-11|1995-10-16|1995-08-23|NONE|RAIL|y ideas. quietly f| +37450|960841|48399|1|24|45643.20|0.05|0.03|N|O|1997-07-09|1997-06-18|1997-08-02|DELIVER IN PERSON|FOB| regular instructions are? sl| +37450|841493|4010|2|6|8606.70|0.01|0.06|N|O|1997-07-11|1997-06-15|1997-07-21|TAKE BACK RETURN|FOB|heodolites nag across the t| +37450|969177|31697|3|44|54829.72|0.00|0.08|N|O|1997-06-24|1997-05-26|1997-06-25|COLLECT COD|FOB|ly regular excuses hang q| +37451|93533|43534|1|40|61061.20|0.07|0.07|N|O|1996-01-11|1995-12-25|1996-02-05|NONE|AIR|ic instructions. pinto beans poach f| +37451|992689|30247|2|31|55230.84|0.09|0.04|N|O|1995-11-24|1995-12-12|1995-12-14|COLLECT COD|AIR|oxes; blithely slow theodolites sleep. ru| +37451|109763|9764|3|11|19500.36|0.04|0.08|N|O|1995-12-27|1996-01-15|1996-01-17|NONE|FOB|st the furiously | +37451|785242|35243|4|17|22562.57|0.01|0.05|N|O|1995-12-11|1995-12-19|1995-12-23|COLLECT COD|RAIL| quickly regular excuses boost ag| +37452|434338|21863|1|27|34352.37|0.09|0.02|N|O|1998-07-28|1998-07-04|1998-08-19|TAKE BACK RETURN|AIR|dly bold dependen| +37452|907854|7855|2|26|48407.06|0.01|0.08|N|O|1998-08-23|1998-07-14|1998-08-25|DELIVER IN PERSON|FOB|ic instruction| +37452|300880|38399|3|34|63949.58|0.04|0.00|N|O|1998-05-14|1998-07-07|1998-05-30|DELIVER IN PERSON|REG AIR|ngly regular packages integrat| +37452|888324|13359|4|39|51178.92|0.08|0.07|N|O|1998-09-09|1998-06-29|1998-09-15|NONE|AIR|osits. ironic, express re| +37453|812943|37976|1|10|18559.00|0.08|0.05|N|O|1996-06-23|1996-06-12|1996-06-26|DELIVER IN PERSON|RAIL|kly bold requests hagg| +37453|127590|15097|2|8|12940.72|0.02|0.04|N|O|1996-06-15|1996-05-26|1996-07-03|DELIVER IN PERSON|SHIP| express i| +37453|396909|46910|3|43|86253.27|0.03|0.07|N|O|1996-04-16|1996-05-16|1996-04-21|COLLECT COD|TRUCK|ts. ironic, final platelet| +37453|836737|11770|4|16|26779.04|0.10|0.01|N|O|1996-05-06|1996-05-20|1996-05-21|NONE|AIR|arefully regular packages thrash slyly | +37453|35016|47517|5|16|15216.16|0.03|0.00|N|O|1996-06-09|1996-05-27|1996-06-17|TAKE BACK RETURN|REG AIR| dazzle carefully foxes. closely ironic ins| +37453|502749|15260|6|30|52551.60|0.01|0.05|N|O|1996-06-29|1996-04-26|1996-07-27|NONE|TRUCK|regular, silent pinto beans sleep exp| +37454|173316|48323|1|19|26396.89|0.07|0.02|N|O|1996-12-15|1997-02-14|1997-01-04|COLLECT COD|AIR|en pinto beans. special, r| +37454|917616|17617|2|20|32671.40|0.05|0.06|N|O|1997-03-26|1997-01-24|1997-04-25|DELIVER IN PERSON|TRUCK|ffily. blithely final deposits | +37454|362563|37578|3|50|81277.50|0.08|0.06|N|O|1996-12-06|1997-02-17|1996-12-23|NONE|SHIP|express, express theodoli| +37454|580614|43126|4|1|1694.59|0.05|0.07|N|O|1997-02-13|1997-02-17|1997-03-10|NONE|REG AIR|ironic multipliers. fluffily ironic | +37455|387958|37959|1|39|79791.66|0.00|0.06|A|F|1993-06-07|1993-04-18|1993-06-16|COLLECT COD|MAIL| sleep about the carefully spe| +37480|645924|33461|1|13|24308.57|0.07|0.06|N|O|1995-07-01|1995-08-18|1995-07-18|COLLECT COD|FOB|s boost sly| +37480|42100|29601|2|33|34389.30|0.05|0.07|N|O|1995-06-19|1995-07-22|1995-06-24|COLLECT COD|SHIP|ven, ironic packages. ironic instruct| +37481|890386|15421|1|36|49548.24|0.05|0.02|A|F|1994-12-02|1995-01-07|1994-12-31|NONE|RAIL|s are according t| +37481|714595|39624|2|28|45067.68|0.09|0.08|R|F|1995-01-25|1995-01-01|1995-02-05|DELIVER IN PERSON|TRUCK|ccounts-- express f| +37481|187492|37493|3|28|44225.72|0.02|0.02|A|F|1994-10-29|1995-01-14|1994-11-05|NONE|AIR| the slyly | +37481|177395|2402|4|31|45644.09|0.01|0.06|R|F|1994-10-25|1994-12-27|1994-11-03|COLLECT COD|REG AIR| after the furiously even accounts.| +37481|475327|12855|5|36|46882.80|0.01|0.07|A|F|1994-12-19|1994-12-31|1994-12-23|COLLECT COD|REG AIR|xes nag quickly. furiously r| +37481|814499|27016|6|2|2826.90|0.02|0.05|R|F|1994-11-10|1994-12-24|1994-11-23|TAKE BACK RETURN|AIR|e dependencies; | +37481|283770|8781|7|48|84180.48|0.09|0.04|R|F|1994-11-04|1994-12-17|1994-11-19|DELIVER IN PERSON|REG AIR|xpress ideas wake furiously slyl| +37482|314075|39088|1|26|28315.56|0.03|0.07|A|F|1993-06-07|1993-08-04|1993-07-05|DELIVER IN PERSON|REG AIR|unusual pinto beans against the foxes s| +37482|648622|23647|2|14|21988.26|0.02|0.06|A|F|1993-08-25|1993-07-12|1993-08-28|COLLECT COD|REG AIR|refully unusu| +37482|377612|27613|3|32|54067.20|0.04|0.06|R|F|1993-08-19|1993-07-19|1993-08-20|COLLECT COD|FOB|ely special| +37482|510680|48211|4|45|76079.70|0.07|0.06|R|F|1993-07-24|1993-07-19|1993-07-25|TAKE BACK RETURN|RAIL|r deposits about the regular platelets| +37482|996015|8535|5|35|38883.95|0.01|0.07|R|F|1993-06-15|1993-08-11|1993-06-28|NONE|FOB|ar packages wa| +37482|9293|46794|6|1|1202.29|0.01|0.05|R|F|1993-08-21|1993-07-27|1993-09-03|COLLECT COD|MAIL|ending warthogs haggle blithely. ironic, re| +37483|350060|61|1|33|36631.65|0.08|0.06|N|O|1996-09-21|1996-10-25|1996-10-11|COLLECT COD|TRUCK|refully regular pinto beans cajole slyly sl| +37483|451037|38565|2|26|25688.26|0.07|0.04|N|O|1996-11-08|1996-08-28|1996-11-28|TAKE BACK RETURN|MAIL| dolphins. slowly unusual packages haggle | +37483|563139|38162|3|45|54094.95|0.02|0.02|N|O|1996-09-15|1996-09-24|1996-10-01|COLLECT COD|FOB|ly unusual deposits. ironic requests h| +37483|664319|39346|4|35|44914.80|0.04|0.02|N|O|1996-09-01|1996-09-26|1996-09-27|NONE|SHIP|es: quickly final i| +37483|197382|34892|5|14|20711.32|0.10|0.05|N|O|1996-10-16|1996-09-08|1996-11-02|DELIVER IN PERSON|AIR|furiously special platele| +37483|386524|49032|6|6|9663.06|0.05|0.01|N|O|1996-10-11|1996-09-07|1996-11-04|COLLECT COD|REG AIR|quests are carefully? furiously pending r| +37484|667512|17513|1|16|23671.68|0.09|0.00|A|F|1994-07-17|1994-07-29|1994-08-12|COLLECT COD|AIR|fluffily along the quickly blithe req| +37484|864987|27505|2|33|64414.02|0.05|0.06|R|F|1994-09-08|1994-07-27|1994-09-12|TAKE BACK RETURN|FOB| blithely about the carefully express| +37484|830402|5435|3|47|62620.92|0.02|0.00|A|F|1994-07-18|1994-07-23|1994-07-29|NONE|SHIP|inments cajole quickly regu| +37484|558937|33960|4|28|55885.48|0.09|0.01|R|F|1994-06-15|1994-07-28|1994-07-10|DELIVER IN PERSON|RAIL| blithely pending excuses alongsi| +37485|664812|2352|1|2|3553.56|0.04|0.03|N|O|1998-04-23|1998-05-27|1998-04-26|NONE|MAIL|inal deposits sl| +37485|489835|14854|2|45|82116.45|0.08|0.00|N|O|1998-04-21|1998-05-31|1998-05-14|DELIVER IN PERSON|SHIP|final waters against the carefully entic| +37485|644564|44565|3|27|40730.31|0.06|0.00|N|O|1998-06-07|1998-04-17|1998-06-13|DELIVER IN PERSON|RAIL|ggle against t| +37486|823181|35698|1|6|6624.84|0.10|0.07|R|F|1994-05-03|1994-05-17|1994-05-14|NONE|MAIL|e furiously furiously regular i| +37486|191500|41501|2|49|77983.50|0.04|0.03|A|F|1994-07-04|1994-05-17|1994-07-05|TAKE BACK RETURN|MAIL|ermanent ideas. regular instru| +37486|531442|6463|3|10|14734.20|0.02|0.02|A|F|1994-07-15|1994-07-05|1994-07-28|DELIVER IN PERSON|RAIL|arefully idle asym| +37487|164529|27033|1|23|36650.96|0.01|0.04|N|O|1996-05-23|1996-05-22|1996-06-03|TAKE BACK RETURN|FOB| the requests. furiously sile| +37512|458293|8294|1|43|53804.61|0.06|0.01|A|F|1993-04-30|1993-06-07|1993-05-05|COLLECT COD|TRUCK|slyly regular excuses use after the| +37512|529222|41733|2|21|26275.20|0.07|0.03|A|F|1993-06-26|1993-07-02|1993-07-04|TAKE BACK RETURN|RAIL|odolites. regular court| +37513|834761|22310|1|8|13565.76|0.02|0.07|R|F|1993-03-02|1993-03-06|1993-03-13|DELIVER IN PERSON|FOB|ckages. carefully even asympto| +37514|18290|18291|1|32|38665.28|0.06|0.04|A|F|1992-11-02|1992-08-19|1992-11-20|NONE|SHIP|nts must h| +37514|390867|3375|2|12|23494.20|0.10|0.01|A|F|1992-07-23|1992-08-09|1992-07-29|TAKE BACK RETURN|MAIL|to the furiously pending instructions. sl| +37514|286137|48643|3|10|11231.20|0.10|0.06|A|F|1992-08-25|1992-09-13|1992-08-27|DELIVER IN PERSON|MAIL|sts. ironic ideas cajo| +37514|94156|19159|4|50|57507.50|0.10|0.00|R|F|1992-08-27|1992-10-06|1992-09-23|DELIVER IN PERSON|RAIL|usly regular pinto| +37515|695049|45050|1|48|50112.48|0.02|0.05|N|O|1998-02-21|1998-04-13|1998-02-25|NONE|FOB|iously fluffy foxes use| +37516|757571|45117|1|16|26056.64|0.02|0.04|N|O|1996-09-01|1996-07-18|1996-09-06|COLLECT COD|FOB|tes are furiously. deposit| +37516|483808|21336|2|33|59128.74|0.07|0.05|N|O|1996-08-13|1996-06-14|1996-09-03|COLLECT COD|RAIL|the furiously | +37516|351991|1992|3|45|91934.10|0.08|0.06|N|O|1996-05-28|1996-06-19|1996-06-07|TAKE BACK RETURN|SHIP|ording to the deposits. slyly | +37516|909580|9581|4|10|15895.40|0.00|0.00|N|O|1996-08-20|1996-06-08|1996-09-13|COLLECT COD|FOB|eep fluffily according to the blithely ir| +37516|309576|9577|5|45|71350.20|0.09|0.04|N|O|1996-05-11|1996-07-20|1996-05-24|TAKE BACK RETURN|SHIP|ts. unusual packages ar| +37516|40823|15824|6|45|79371.90|0.09|0.03|N|O|1996-08-07|1996-07-13|1996-08-27|NONE|AIR|en, ironic d| +37517|466028|28538|1|2|1988.00|0.02|0.03|A|F|1993-11-25|1994-01-12|1993-12-13|TAKE BACK RETURN|AIR|oost across the reg| +37517|516349|3880|2|36|49151.52|0.00|0.02|R|F|1993-11-05|1993-12-26|1993-11-14|NONE|REG AIR|gular sheaves. fluf| +37517|262721|37732|3|37|62297.27|0.04|0.08|R|F|1993-12-25|1994-01-13|1994-01-08|DELIVER IN PERSON|REG AIR|out the slyly bold| +37517|550061|37595|4|49|54440.96|0.10|0.07|R|F|1994-02-11|1994-01-06|1994-02-18|NONE|MAIL|ly even platelets affix. even| +37517|872517|22518|5|37|55110.39|0.02|0.01|R|F|1993-11-06|1993-11-28|1993-12-01|COLLECT COD|MAIL|use furiously sometimes express packages. | +37517|381752|19274|6|6|11002.44|0.05|0.02|R|F|1993-12-14|1993-11-30|1994-01-05|TAKE BACK RETURN|FOB| pending, regular accounts boost a| +37517|98686|36190|7|14|23585.52|0.05|0.04|R|F|1993-12-20|1993-11-28|1993-12-23|DELIVER IN PERSON|TRUCK|ests: ironic pinto bea| +37518|608534|8535|1|18|25965.00|0.06|0.00|N|O|1995-10-04|1995-09-13|1995-10-30|DELIVER IN PERSON|REG AIR| daringly regular requests haggle sly| +37518|619483|44508|2|44|61707.80|0.00|0.08|N|O|1995-09-08|1995-10-01|1995-09-27|NONE|AIR|ly special decoys. d| +37518|650538|38078|3|22|32747.00|0.07|0.02|N|O|1995-10-07|1995-09-20|1995-11-01|TAKE BACK RETURN|AIR|ly ironic, unusual deposits. fluffily fi| +37518|586166|48678|4|21|26294.94|0.10|0.05|N|O|1995-08-16|1995-09-06|1995-08-25|NONE|AIR|ts are carefully. even, r| +37519|603950|28975|1|40|74156.80|0.00|0.05|N|O|1997-04-05|1997-04-28|1997-04-21|DELIVER IN PERSON|SHIP| doze carefully. caref| +37544|719184|19185|1|24|28875.60|0.03|0.00|A|F|1992-03-10|1992-03-13|1992-04-03|NONE|AIR| integrate! ca| +37544|312284|12285|2|13|16851.51|0.00|0.03|R|F|1992-04-23|1992-04-17|1992-05-08|NONE|AIR|es nag along the ins| +37544|548359|10870|3|6|8443.98|0.08|0.01|A|F|1992-04-30|1992-03-10|1992-05-03|NONE|AIR|, even instructions around the final ex| +37544|255186|30197|4|8|9129.36|0.03|0.04|R|F|1992-03-13|1992-03-25|1992-04-01|NONE|FOB|as grow blithely along the p| +37544|907886|7887|5|44|83328.96|0.06|0.00|R|F|1992-05-17|1992-03-13|1992-05-22|NONE|RAIL|aggle blithely. ir| +37545|831170|31171|1|36|39640.68|0.08|0.05|A|F|1993-02-18|1992-12-12|1993-02-25|TAKE BACK RETURN|AIR|leep carefully even theodolites. fluffi| +37545|473831|23832|2|32|57753.92|0.00|0.08|R|F|1992-12-24|1992-12-16|1992-12-30|COLLECT COD|FOB|ccounts. even, thin pac| +37545|676773|14313|3|36|62990.64|0.05|0.06|R|F|1993-02-28|1992-12-12|1993-03-29|TAKE BACK RETURN|REG AIR|dolites sleep quickly. slyly express accou| +37545|510513|35534|4|11|16758.39|0.09|0.06|R|F|1992-11-25|1993-01-03|1992-12-10|DELIVER IN PERSON|FOB|es sleep furiously slyly fluffy requests:| +37546|588215|13238|1|3|3909.57|0.03|0.00|N|O|1995-12-20|1995-12-24|1996-01-08|TAKE BACK RETURN|RAIL|o the blithely even pinto beans! s| +37546|122991|22992|2|46|92643.54|0.08|0.06|N|O|1996-02-15|1996-01-28|1996-02-25|COLLECT COD|TRUCK|symptotes use. regular| +37546|95836|20839|3|10|18318.30|0.02|0.07|N|O|1995-11-29|1996-01-12|1995-12-06|DELIVER IN PERSON|SHIP|ly regular theodo| +37546|708634|33663|4|36|59133.60|0.04|0.05|N|O|1996-03-05|1996-01-16|1996-03-10|COLLECT COD|TRUCK|tegrate unusual ideas. final accou| +37546|880|13381|5|26|46302.88|0.07|0.05|N|O|1996-03-12|1996-01-21|1996-04-10|COLLECT COD|RAIL|ld instructions lose. slow requests alo| +37546|773791|23792|6|15|27971.40|0.08|0.00|N|O|1996-03-20|1996-02-15|1996-03-27|NONE|TRUCK|ckages use sl| +37547|633076|33077|1|42|42379.68|0.10|0.06|N|O|1996-07-15|1996-05-25|1996-08-01|COLLECT COD|MAIL|nic deposits. silent pinto bean| +37548|171511|46518|1|33|52222.83|0.02|0.00|A|F|1995-04-13|1995-05-01|1995-04-21|COLLECT COD|REG AIR|ironic packages| +37548|570666|33178|2|20|34732.80|0.02|0.07|A|F|1995-03-07|1995-05-17|1995-03-12|DELIVER IN PERSON|TRUCK|the pending, sly| +37548|169055|19056|3|21|23605.05|0.10|0.05|A|F|1995-04-01|1995-04-19|1995-04-10|NONE|REG AIR|wake slyly bli| +37548|298065|48066|4|31|32954.55|0.02|0.07|A|F|1995-03-28|1995-04-14|1995-03-31|DELIVER IN PERSON|MAIL|final instructions are blithel| +37548|565611|40634|5|12|20119.08|0.09|0.00|N|F|1995-06-17|1995-04-02|1995-07-09|COLLECT COD|AIR|ic dependencies. ideas haggle alongside of | +37549|665427|15428|1|19|26455.41|0.01|0.01|R|F|1992-08-06|1992-08-09|1992-08-26|NONE|MAIL|sleep furiously among the special, fin| +37549|819922|44955|2|15|27628.20|0.09|0.00|R|F|1992-07-26|1992-07-30|1992-08-17|TAKE BACK RETURN|FOB| regular ideas. pending ins| +37549|423437|35946|3|12|16324.92|0.08|0.02|A|F|1992-09-23|1992-07-18|1992-09-24|TAKE BACK RETURN|MAIL|quickly regular deposits. | +37549|690711|3225|4|11|18718.48|0.02|0.02|R|F|1992-08-19|1992-07-10|1992-09-05|TAKE BACK RETURN|TRUCK|counts. bli| +37549|769069|44100|5|46|52349.38|0.08|0.03|A|F|1992-08-18|1992-07-03|1992-09-14|TAKE BACK RETURN|MAIL| above the furiously even | +37549|728487|28488|6|21|31824.45|0.05|0.02|A|F|1992-09-07|1992-08-08|1992-09-25|DELIVER IN PERSON|TRUCK|ons! requests boost| +37550|388479|13494|1|20|31349.20|0.10|0.04|N|O|1997-11-03|1998-01-02|1997-11-16|COLLECT COD|REG AIR|about the regular, final escapades| +37550|162212|12213|2|49|62436.29|0.03|0.01|N|O|1998-02-03|1997-12-21|1998-03-05|TAKE BACK RETURN|TRUCK| carefully special pinto beans| +37550|291877|16888|3|28|52328.08|0.01|0.07|N|O|1997-11-12|1998-01-09|1997-11-15|COLLECT COD|TRUCK|phins. slyly slow ideas nag| +37551|169791|32295|1|19|35355.01|0.05|0.04|N|O|1997-06-25|1997-08-30|1997-07-11|NONE|AIR|s? furiously enti| +37551|666327|28841|2|30|38798.70|0.07|0.07|N|O|1997-10-04|1997-09-10|1997-10-10|TAKE BACK RETURN|MAIL|ickly. furiously spe| +37551|941422|28977|3|16|23414.08|0.06|0.02|N|O|1997-07-23|1997-08-28|1997-08-12|COLLECT COD|FOB|sly pending theodolites caj| +37576|535868|10889|1|10|19038.40|0.01|0.02|N|O|1996-12-29|1996-11-30|1997-01-05|DELIVER IN PERSON|AIR|y final theodoli| +37576|326449|26450|2|39|57541.77|0.05|0.06|N|O|1997-02-05|1996-11-13|1997-03-04|COLLECT COD|AIR|uctions acco| +37577|704451|41994|1|4|5821.68|0.06|0.08|R|F|1993-01-03|1992-11-22|1993-01-23|TAKE BACK RETURN|FOB|equests sleep carefully carefully regular | +37577|705127|17642|2|43|48679.87|0.09|0.08|A|F|1992-12-10|1992-11-05|1992-12-31|NONE|TRUCK|he furiously pendin| +37577|67552|17553|3|2|3039.10|0.04|0.04|A|F|1993-01-21|1992-12-10|1993-01-25|TAKE BACK RETURN|TRUCK| slyly even ideas haggle f| +37577|338370|38371|4|24|33800.64|0.06|0.07|R|F|1992-12-24|1992-11-04|1992-12-30|TAKE BACK RETURN|TRUCK|ely. slyly | +37577|968001|30521|5|5|5344.80|0.03|0.01|A|F|1992-11-10|1992-11-28|1992-11-24|NONE|REG AIR|into beans nag furio| +37577|191980|29490|6|7|14503.86|0.10|0.08|A|F|1992-10-02|1992-12-14|1992-10-29|COLLECT COD|REG AIR|y! even excuses prin| +37578|386409|36410|1|13|19440.07|0.07|0.06|A|F|1993-02-11|1993-04-11|1993-02-25|DELIVER IN PERSON|FOB|r patterns above the f| +37578|371809|9331|2|3|5642.37|0.07|0.05|A|F|1993-05-05|1993-03-03|1993-05-13|TAKE BACK RETURN|MAIL|er the carefully special accounts. fluf| +37578|993000|30558|3|47|51369.12|0.06|0.07|R|F|1993-04-23|1993-03-11|1993-04-24|TAKE BACK RETURN|MAIL|sly ideas e| +37578|345847|8354|4|7|13249.81|0.02|0.01|R|F|1993-01-31|1993-04-03|1993-02-14|NONE|RAIL| across the| +37578|643182|18207|5|50|56257.50|0.02|0.01|A|F|1993-04-23|1993-02-14|1993-05-20|DELIVER IN PERSON|FOB|telets impress around| +37578|944808|32363|6|46|85226.96|0.06|0.04|A|F|1993-01-22|1993-03-27|1993-01-26|NONE|TRUCK|gle slyly s| +37578|386189|36190|7|4|5100.68|0.05|0.03|R|F|1993-04-13|1993-04-05|1993-04-22|COLLECT COD|SHIP|usly. even accounts boos| +37579|678225|28226|1|47|56549.93|0.02|0.08|N|O|1996-06-02|1996-04-29|1996-06-15|NONE|RAIL|sleep carefull| +37579|917726|30245|2|43|74978.24|0.10|0.06|N|O|1996-03-09|1996-03-09|1996-03-14|COLLECT COD|MAIL|s wake. depen| +37579|214485|26990|3|27|37785.69|0.06|0.08|N|O|1996-04-19|1996-04-12|1996-04-20|DELIVER IN PERSON|AIR|osits cajol| +37579|841272|28821|4|16|19411.68|0.08|0.06|N|O|1996-03-30|1996-03-10|1996-04-17|DELIVER IN PERSON|REG AIR|about the blithely f| +37580|824383|49416|1|29|37912.86|0.07|0.07|A|F|1994-03-10|1994-04-20|1994-04-02|TAKE BACK RETURN|TRUCK|oost blithely | +37580|389418|26940|2|50|75370.00|0.06|0.08|R|F|1994-03-19|1994-03-19|1994-04-14|TAKE BACK RETURN|RAIL|nts. deposits cajole quickly. fluffily fina| +37580|941268|28823|3|36|47131.92|0.03|0.07|A|F|1994-05-03|1994-04-02|1994-05-21|DELIVER IN PERSON|SHIP|thely after the daring instructions.| +37581|651914|26941|1|24|44781.12|0.05|0.05|A|F|1995-03-07|1995-05-23|1995-03-10|NONE|TRUCK|the even, bold requests nag fur| +37581|702326|14841|2|41|54459.89|0.03|0.02|N|F|1995-06-11|1995-05-30|1995-07-03|TAKE BACK RETURN|SHIP| even pearls! permanent, even deposits p| +37581|976593|39113|3|42|70121.10|0.10|0.00|A|F|1995-05-10|1995-05-29|1995-05-28|DELIVER IN PERSON|REG AIR|bold, even instructions. furiously ev| +37581|597086|34620|4|19|22478.14|0.06|0.07|N|F|1995-05-31|1995-05-04|1995-06-27|DELIVER IN PERSON|REG AIR|e carefully blithely ex| +37582|501681|1682|1|17|28605.22|0.03|0.06|A|F|1993-06-23|1993-05-03|1993-06-28|TAKE BACK RETURN|SHIP|y final frays according to the bold packa| +37582|750787|38333|2|7|12864.25|0.02|0.05|R|F|1993-07-26|1993-05-04|1993-08-17|NONE|TRUCK|ronic foxes cajole above the special, ir| +37583|598315|48316|1|27|38158.83|0.02|0.07|N|O|1997-04-16|1997-02-07|1997-04-17|COLLECT COD|TRUCK|to the slyly re| +37583|876995|14547|2|46|90709.70|0.02|0.06|N|O|1997-01-30|1997-03-14|1997-02-23|DELIVER IN PERSON|AIR|leep! permanentl| +37583|641426|28963|3|45|61532.55|0.10|0.02|N|O|1997-01-03|1997-02-11|1997-01-26|DELIVER IN PERSON|AIR|ly bold instructions. bl| +37583|436281|23806|4|2|2434.52|0.04|0.06|N|O|1997-03-22|1997-01-23|1997-04-03|TAKE BACK RETURN|AIR|unusual deposits. always final | +37583|572850|47873|5|41|78836.03|0.00|0.03|N|O|1997-02-19|1997-02-28|1997-02-20|COLLECT COD|SHIP| about the regular, ironic pac| +37608|688081|25621|1|21|22450.05|0.08|0.02|N|O|1995-07-19|1995-08-08|1995-07-21|DELIVER IN PERSON|FOB|rave, even ideas hinder a| +37608|563058|13059|2|1|1121.03|0.05|0.03|N|O|1995-10-01|1995-09-14|1995-10-16|TAKE BACK RETURN|MAIL|packages. express warhorses boost a| +37608|315131|40144|3|38|43552.56|0.02|0.00|N|O|1995-07-20|1995-08-11|1995-07-23|TAKE BACK RETURN|FOB|ke slyly. furiously even asymptotes boost s| +37609|490856|3366|1|25|46170.75|0.03|0.05|N|O|1997-07-30|1997-08-14|1997-08-19|TAKE BACK RETURN|SHIP|sly regular asymptotes sleep | +37609|809013|21530|2|30|27659.10|0.05|0.07|N|O|1997-08-12|1997-10-03|1997-08-29|COLLECT COD|RAIL|s. unusual| +37609|70396|32898|3|16|21862.24|0.07|0.02|N|O|1997-08-07|1997-08-20|1997-08-27|TAKE BACK RETURN|AIR|ans. quickly regular pinto beans above the | +37609|136746|49249|4|13|23175.62|0.08|0.05|N|O|1997-11-07|1997-08-20|1997-11-15|NONE|RAIL| ideas wake. instructions boost c| +37609|278418|28419|5|6|8378.40|0.05|0.07|N|O|1997-10-28|1997-09-20|1997-11-12|NONE|FOB|uickly unusual th| +37609|356487|18995|6|6|9260.82|0.01|0.06|N|O|1997-09-24|1997-09-02|1997-09-27|NONE|MAIL|d dolphins. final, spec| +37610|373818|23819|1|47|88914.60|0.04|0.05|A|F|1994-05-01|1994-05-16|1994-05-19|TAKE BACK RETURN|MAIL|und the pa| +37610|758430|45976|2|22|32744.80|0.10|0.01|A|F|1994-06-04|1994-07-03|1994-06-11|DELIVER IN PERSON|REG AIR| requests would nag slyly: s| +37610|929838|17393|3|39|72843.81|0.00|0.01|R|F|1994-05-13|1994-07-06|1994-06-12|DELIVER IN PERSON|SHIP| from the slyly fin| +37610|774413|36929|4|33|49083.54|0.08|0.04|R|F|1994-06-05|1994-06-26|1994-06-28|COLLECT COD|RAIL|l platelets alon| +37611|258174|33185|1|29|32832.64|0.05|0.02|A|F|1993-06-14|1993-04-11|1993-07-05|COLLECT COD|FOB|its for the stealt| +37611|124305|49310|2|39|51842.70|0.06|0.04|R|F|1993-05-19|1993-03-30|1993-06-07|TAKE BACK RETURN|AIR|mong the c| +37612|399020|11528|1|5|5595.05|0.02|0.06|A|F|1992-09-22|1992-08-30|1992-10-01|NONE|AIR|among the furiously speci| +37613|121704|21705|1|25|43142.50|0.09|0.07|N|O|1998-02-06|1998-03-04|1998-02-10|NONE|RAIL|en, special pac| +37613|477894|27895|2|37|69259.19|0.07|0.07|N|O|1998-01-02|1998-01-23|1998-01-13|COLLECT COD|RAIL|ts. bold, sp| +37613|950989|26028|3|48|97917.12|0.05|0.04|N|O|1998-01-06|1998-01-23|1998-01-09|NONE|FOB|uctions x-ray blithely-| +37614|792536|5052|1|11|17913.50|0.01|0.05|A|F|1992-04-18|1992-04-17|1992-05-03|TAKE BACK RETURN|REG AIR|ns nag blithely about | +37614|148579|11082|2|24|39061.68|0.03|0.04|R|F|1992-03-06|1992-03-24|1992-03-11|NONE|AIR|ackages. ideas sleep fluffil| +37614|165150|40157|3|11|13366.65|0.08|0.00|R|F|1992-03-01|1992-04-20|1992-03-02|COLLECT COD|SHIP|fluffily bold excuses. | +37615|728971|28972|1|6|11999.64|0.03|0.07|A|F|1994-04-05|1994-03-01|1994-04-10|TAKE BACK RETURN|MAIL|ctions. blithely regular | +37615|814966|2515|2|11|20690.12|0.08|0.03|A|F|1994-03-20|1994-03-31|1994-04-16|COLLECT COD|TRUCK|lyly busy deposits. quietly final accoun| +37615|131936|31937|3|33|64941.69|0.10|0.08|A|F|1994-03-15|1994-04-02|1994-04-05|COLLECT COD|REG AIR|; doggedly silent accounts haggle qui| +37615|434958|34959|4|3|5678.79|0.01|0.06|A|F|1994-03-16|1994-02-18|1994-04-07|COLLECT COD|RAIL| against the fluffily | +37615|331639|19158|5|14|23388.68|0.07|0.00|A|F|1994-04-17|1994-02-17|1994-05-07|TAKE BACK RETURN|MAIL|p quickly across the pending,| +37615|850153|37705|6|3|3309.33|0.07|0.00|A|F|1994-04-05|1994-02-26|1994-04-23|TAKE BACK RETURN|AIR| ironic requests.| +37640|983677|8716|1|30|52818.90|0.02|0.07|N|O|1996-06-05|1996-06-28|1996-06-08|NONE|MAIL| accounts. deposits w| +37640|644763|7276|2|34|58062.82|0.02|0.07|N|O|1996-08-21|1996-05-28|1996-09-11|TAKE BACK RETURN|TRUCK|across the slyly spe| +37641|781983|7014|1|19|39234.05|0.06|0.04|N|O|1995-11-17|1995-08-23|1995-12-16|COLLECT COD|SHIP|ggle slyly. slyly| +37641|780379|42895|2|4|5837.36|0.10|0.04|N|O|1995-08-18|1995-09-07|1995-09-17|NONE|SHIP|refully about the furious | +37642|437298|49807|1|29|35822.83|0.03|0.02|N|O|1997-01-07|1996-11-18|1997-01-20|DELIVER IN PERSON|SHIP| carefully fi| +37642|659646|9647|2|10|16056.10|0.06|0.02|N|O|1996-11-22|1996-11-28|1996-12-01|NONE|TRUCK|egular, even ideas ha| +37642|653990|3991|3|15|29159.40|0.01|0.02|N|O|1996-12-10|1996-12-03|1996-12-13|NONE|TRUCK|ages. blithe ideas wake sly| +37643|803720|3721|1|32|51957.76|0.08|0.04|R|F|1992-06-21|1992-06-24|1992-06-26|TAKE BACK RETURN|RAIL|ously regular packages: slyly iron| +37643|116298|16299|2|18|23657.22|0.05|0.08|R|F|1992-04-20|1992-06-16|1992-05-04|COLLECT COD|SHIP|requests wake blithely expr| +37643|608213|8214|3|8|8969.44|0.04|0.03|A|F|1992-06-07|1992-06-04|1992-07-03|COLLECT COD|RAIL|te the stealthily regular realms. caref| +37643|233431|33432|4|2|2728.84|0.02|0.00|A|F|1992-06-14|1992-07-03|1992-06-29|COLLECT COD|SHIP|nusual excuses sleep against the furious| +37644|143901|31408|1|40|77796.00|0.05|0.02|N|O|1998-06-03|1998-04-14|1998-06-10|DELIVER IN PERSON|RAIL|riously bold excuses. ironically silen| +37644|537742|25273|2|5|8898.60|0.10|0.03|N|O|1998-05-13|1998-06-06|1998-06-11|TAKE BACK RETURN|RAIL|rint blithely before the carefully| +37644|828383|15932|3|9|11802.06|0.06|0.04|N|O|1998-07-06|1998-05-12|1998-07-09|DELIVER IN PERSON|SHIP|carefully pending foxes. Tiresias above | +37645|348372|48373|1|46|65336.56|0.00|0.02|R|F|1992-01-17|1992-02-13|1992-02-11|DELIVER IN PERSON|SHIP|packages. pending idea| +37645|83265|8268|2|12|14979.12|0.09|0.06|R|F|1992-03-02|1992-02-21|1992-03-07|COLLECT COD|TRUCK|y regular ac| +37645|434723|22248|3|26|43100.20|0.01|0.05|R|F|1992-05-14|1992-04-06|1992-05-19|NONE|RAIL|hely dogged pinto beans. furiously | +37645|389278|1786|4|16|21876.16|0.09|0.00|R|F|1992-01-25|1992-03-12|1992-01-29|NONE|AIR|egular requests. f| +37646|869796|44831|1|47|82990.25|0.02|0.00|R|F|1994-10-12|1994-11-02|1994-10-21|COLLECT COD|REG AIR|kly regular deposits. do| +37646|657638|7639|2|35|55846.00|0.00|0.03|R|F|1994-11-21|1994-10-16|1994-12-16|TAKE BACK RETURN|TRUCK| blithely bold cour| +37646|905950|5951|3|46|89971.86|0.05|0.02|R|F|1994-10-04|1994-11-06|1994-11-02|COLLECT COD|AIR| even packa| +37646|300594|595|4|20|31891.60|0.00|0.05|A|F|1994-08-22|1994-10-10|1994-09-05|DELIVER IN PERSON|TRUCK|s haggle enticingly quickly even deposit| +37647|210110|47623|1|11|11221.10|0.00|0.07|A|F|1993-10-20|1993-11-17|1993-11-11|TAKE BACK RETURN|TRUCK|endencies. unusual, e| +37647|308987|21494|2|12|23951.64|0.10|0.02|R|F|1993-10-24|1993-11-10|1993-10-28|DELIVER IN PERSON|FOB|s among the carefully final foxes| +37647|135794|35795|3|16|29276.64|0.05|0.05|A|F|1994-01-05|1993-11-08|1994-01-07|TAKE BACK RETURN|SHIP|shall have to breach quickly package| +37647|277601|15117|4|13|20521.67|0.00|0.04|A|F|1993-10-22|1993-11-02|1993-10-28|TAKE BACK RETURN|AIR|y deposits cajole slyly| +37647|637073|37074|5|10|10100.40|0.00|0.08|R|F|1993-09-26|1993-11-10|1993-09-27|TAKE BACK RETURN|MAIL|he blithely close package| +37647|285337|35338|6|43|56859.76|0.06|0.02|R|F|1993-11-06|1993-11-20|1993-11-21|DELIVER IN PERSON|TRUCK| are slyly about t| +37647|645354|45355|7|37|48074.84|0.04|0.06|R|F|1993-12-20|1993-10-26|1993-12-28|DELIVER IN PERSON|AIR|dolites haggle blithely. express| +37672|460722|23232|1|33|55529.10|0.01|0.05|N|O|1998-05-16|1998-05-22|1998-05-23|TAKE BACK RETURN|AIR|lly according to | +37672|347370|34889|2|41|58111.76|0.06|0.03|N|O|1998-05-14|1998-04-18|1998-05-16|COLLECT COD|FOB|ultipliers. furiously| +37672|232678|45183|3|12|19327.92|0.00|0.02|N|O|1998-05-05|1998-05-11|1998-05-12|TAKE BACK RETURN|AIR|y final reques| +37673|337022|49529|1|31|32829.31|0.00|0.06|N|O|1995-06-29|1995-05-16|1995-07-15|NONE|FOB|eodolites. final deposits are furiously| +37673|317722|17723|2|42|73067.82|0.03|0.05|R|F|1995-04-15|1995-05-13|1995-04-19|COLLECT COD|TRUCK|out the accounts cajole slyly above the bli| +37673|942390|29945|3|32|45835.20|0.00|0.06|N|O|1995-06-26|1995-05-05|1995-07-12|DELIVER IN PERSON|FOB|onic pinto b| +37674|616150|41175|1|41|43710.92|0.05|0.01|N|O|1996-06-20|1996-08-03|1996-07-06|TAKE BACK RETURN|AIR|blithe requests cajole. pendin| +37674|623822|11359|2|42|73323.18|0.03|0.05|N|O|1996-08-11|1996-07-04|1996-09-04|COLLECT COD|AIR|lly quiet packages are carefull| +37674|575269|12803|3|21|28229.04|0.06|0.08|N|O|1996-07-28|1996-06-25|1996-08-17|NONE|SHIP|ccounts haggle carefully | +37674|545433|7944|4|20|29568.20|0.04|0.06|N|O|1996-06-28|1996-07-22|1996-07-09|NONE|AIR|lly regular platelets. quic| +37674|82766|20270|5|3|5246.28|0.06|0.06|N|O|1996-06-12|1996-08-10|1996-06-22|NONE|RAIL|-- furiously regular deposits af| +37674|34157|9158|6|36|39281.40|0.10|0.03|N|O|1996-08-14|1996-08-11|1996-09-02|NONE|FOB| blithely regular acc| +37675|765338|40369|1|3|4209.90|0.06|0.08|A|F|1993-11-21|1993-12-20|1993-12-21|COLLECT COD|AIR|ly pending ideas ca| +37675|30958|30959|2|40|75558.00|0.04|0.02|A|F|1994-01-18|1993-12-05|1994-01-20|COLLECT COD|REG AIR|ously final accounts lose carefu| +37675|298704|11210|3|1|1702.69|0.00|0.03|R|F|1994-01-22|1993-12-29|1994-01-23|TAKE BACK RETURN|FOB| fluffy asymptotes. | +37676|564358|26870|1|26|36980.58|0.01|0.04|A|F|1994-05-01|1994-05-07|1994-05-06|DELIVER IN PERSON|MAIL|s the ironic, silent theodoli| +37676|153487|40997|2|45|69321.60|0.07|0.05|R|F|1994-06-20|1994-05-16|1994-06-25|TAKE BACK RETURN|SHIP|sual platelets. fin| +37676|654456|4457|3|9|12693.78|0.09|0.01|A|F|1994-05-15|1994-05-17|1994-05-28|COLLECT COD|TRUCK|old instruct| +37676|429449|29450|4|38|52379.96|0.02|0.05|R|F|1994-05-05|1994-06-07|1994-05-26|DELIVER IN PERSON|SHIP|e even realms. carefully regul| +37676|746426|33969|5|18|26503.02|0.07|0.01|R|F|1994-05-21|1994-06-11|1994-06-06|DELIVER IN PERSON|REG AIR|accounts are bl| +37677|36135|48636|1|18|19280.34|0.04|0.04|N|O|1998-02-06|1998-03-14|1998-02-22|COLLECT COD|AIR|ously even | +37677|306298|43817|2|38|49562.64|0.08|0.06|N|O|1998-01-14|1998-03-13|1998-02-04|COLLECT COD|RAIL|accounts boost quick| +37677|938550|1069|3|21|33358.71|0.04|0.05|N|O|1998-02-01|1998-02-13|1998-02-07|TAKE BACK RETURN|AIR|quests nag furiously fluf| +37677|208763|8764|4|10|16717.50|0.04|0.08|N|O|1998-02-07|1998-03-01|1998-03-08|TAKE BACK RETURN|MAIL| the furiously even req| +37677|679424|29425|5|12|16840.68|0.04|0.03|N|O|1998-01-19|1998-03-05|1998-01-22|TAKE BACK RETURN|REG AIR|ackages. slyly ironic pinto beans haggl| +37677|66729|4233|6|16|27131.52|0.08|0.06|N|O|1998-02-14|1998-01-25|1998-02-28|NONE|REG AIR|tions? quickly bold instructions wa| +37678|254473|4474|1|39|55670.94|0.04|0.04|A|F|1993-04-19|1993-04-19|1993-04-30|DELIVER IN PERSON|TRUCK| foxes use quickly. i| +37678|923954|36473|2|43|85050.13|0.07|0.03|A|F|1993-03-20|1993-05-11|1993-04-04|NONE|AIR|xes kindle about the close | +37678|887087|49605|3|42|45109.68|0.04|0.04|R|F|1993-03-20|1993-05-03|1993-04-12|DELIVER IN PERSON|TRUCK|bove the blithely bold packages x-ra| +37678|258124|20630|4|44|47612.84|0.06|0.02|A|F|1993-06-23|1993-04-18|1993-06-24|NONE|FOB|refully unus| +37678|282916|20432|5|36|68360.40|0.06|0.08|A|F|1993-05-26|1993-05-11|1993-06-21|DELIVER IN PERSON|RAIL|ag slyly. theodolites at the slyly regu| +37678|960725|48283|6|5|8928.40|0.02|0.00|R|F|1993-02-26|1993-03-30|1993-03-09|DELIVER IN PERSON|REG AIR|kages are fu| +37678|896687|46688|7|8|13469.12|0.00|0.01|A|F|1993-05-10|1993-04-06|1993-05-16|TAKE BACK RETURN|RAIL|iers nag above the doggedly quick depend| +37679|618050|30563|1|27|26136.54|0.08|0.08|R|F|1993-11-18|1993-10-02|1993-11-23|NONE|AIR|ding requests according to the fluffil| +37679|552286|2287|2|22|29441.72|0.08|0.07|A|F|1993-09-24|1993-10-25|1993-10-12|DELIVER IN PERSON|REG AIR|. carefully | +37679|267316|4832|3|35|44915.50|0.08|0.02|A|F|1993-08-22|1993-10-28|1993-08-27|NONE|SHIP|across the | +37679|773465|48496|4|11|16922.73|0.10|0.04|A|F|1993-11-03|1993-10-20|1993-11-20|TAKE BACK RETURN|MAIL|theodolites nag fur| +37679|619611|32124|5|39|59692.62|0.08|0.07|A|F|1993-09-26|1993-09-03|1993-10-22|TAKE BACK RETURN|MAIL|ular hockey| +37704|28691|3692|1|26|42111.94|0.03|0.01|A|F|1994-08-31|1994-08-20|1994-09-12|COLLECT COD|MAIL|jole quickly regular sheav| +37704|208758|33767|2|34|56669.16|0.07|0.02|A|F|1994-08-31|1994-08-16|1994-09-25|TAKE BACK RETURN|MAIL|ke quickly abo| +37705|981038|18596|1|22|24617.78|0.01|0.03|A|F|1993-11-06|1993-11-12|1993-11-19|NONE|AIR|lar dinos. unusual, | +37705|293277|18288|2|40|50810.40|0.09|0.01|A|F|1993-09-06|1993-10-08|1993-10-05|NONE|FOB|lyly final asympto| +37705|92886|30390|3|33|62003.04|0.04|0.07|A|F|1993-11-08|1993-10-10|1993-11-18|TAKE BACK RETURN|TRUCK|ts nag alongside of the foxes. un| +37705|127880|40383|4|5|9539.40|0.02|0.01|R|F|1993-10-22|1993-09-30|1993-11-06|NONE|FOB|rding to the pending, final | +37705|274592|24593|5|24|37597.92|0.02|0.02|R|F|1993-10-19|1993-10-07|1993-11-18|DELIVER IN PERSON|TRUCK|packages. quickly thin attainmen| +37706|235019|35020|1|10|9540.00|0.04|0.08|N|O|1998-05-29|1998-05-26|1998-06-15|DELIVER IN PERSON|AIR|ounts wake according to the packages. ironi| +37706|950416|25455|2|42|61587.54|0.07|0.03|N|O|1998-04-26|1998-06-09|1998-05-18|TAKE BACK RETURN|RAIL|ns haggle furiously about the ide| +37706|639726|2239|3|21|34979.49|0.03|0.01|N|O|1998-06-01|1998-05-22|1998-06-20|COLLECT COD|REG AIR|lar accounts. even pinto beans hag| +37707|706987|44530|1|29|57824.55|0.04|0.02|N|O|1997-12-21|1998-02-13|1997-12-25|DELIVER IN PERSON|AIR|leep blithely blithe| +37708|10486|35487|1|49|68427.52|0.03|0.06|N|O|1996-04-10|1996-06-15|1996-04-29|NONE|AIR|ag blithely. blith| +37708|229441|41946|2|15|20556.45|0.00|0.00|N|O|1996-06-18|1996-05-04|1996-06-21|TAKE BACK RETURN|RAIL|press requests slee| +37708|201509|14014|3|36|50777.64|0.01|0.04|N|O|1996-06-30|1996-06-18|1996-07-21|DELIVER IN PERSON|FOB|ts are slyl| +37708|748363|35906|4|28|39517.24|0.08|0.08|N|O|1996-06-05|1996-06-15|1996-06-10|COLLECT COD|TRUCK|ly about the car| +37708|728673|41188|5|42|71468.88|0.03|0.02|N|O|1996-06-22|1996-06-24|1996-07-13|COLLECT COD|REG AIR|s above the expres| +37709|158881|46391|1|21|40737.48|0.00|0.08|A|F|1992-04-08|1992-04-24|1992-04-10|DELIVER IN PERSON|MAIL|y according to| +37709|302423|27436|2|45|64143.45|0.01|0.08|R|F|1992-05-16|1992-04-18|1992-06-03|NONE|TRUCK|ickly. final deposit| +37709|813007|13008|3|30|27598.80|0.02|0.02|A|F|1992-03-22|1992-03-31|1992-03-29|NONE|MAIL|sual ideas wake q| +37709|206901|19406|4|32|57852.48|0.01|0.07|R|F|1992-02-19|1992-04-07|1992-03-07|DELIVER IN PERSON|TRUCK|foxes. foxes boost. blithe| +37709|378658|41166|5|34|59045.76|0.04|0.07|A|F|1992-03-12|1992-04-07|1992-04-10|TAKE BACK RETURN|TRUCK|unts haggle furi| +37709|99905|24908|6|14|26668.60|0.04|0.00|A|F|1992-03-04|1992-05-07|1992-03-18|NONE|SHIP|tipliers. re| +37710|834159|21708|1|45|49189.95|0.06|0.08|R|F|1994-09-26|1994-08-10|1994-10-05|DELIVER IN PERSON|AIR|st have to haggle. even, special instru| +37710|700182|37725|2|38|44921.70|0.10|0.04|A|F|1994-10-25|1994-09-25|1994-10-27|TAKE BACK RETURN|TRUCK| quickly regular ideas. silentl| +37710|955205|42763|3|43|54186.88|0.01|0.04|A|F|1994-10-10|1994-09-01|1994-10-21|COLLECT COD|SHIP|uriously final pinto beans. grouches a| +37710|114125|1632|4|7|7973.84|0.04|0.00|R|F|1994-08-26|1994-08-13|1994-09-02|TAKE BACK RETURN|FOB|fily bold waters wake above the spec| +37710|92002|29506|5|10|9940.00|0.01|0.08|R|F|1994-10-10|1994-07-29|1994-11-09|COLLECT COD|MAIL|s do nag among the bold, pending pack| +37710|273815|48826|6|35|62608.00|0.02|0.02|A|F|1994-10-27|1994-07-29|1994-11-14|TAKE BACK RETURN|AIR|ular request| +37711|176341|38845|1|37|52441.58|0.02|0.02|A|F|1992-12-13|1993-03-06|1993-01-01|COLLECT COD|AIR|counts according to th| +37711|752670|2671|2|34|58569.76|0.05|0.07|A|F|1993-01-20|1993-01-17|1993-02-13|COLLECT COD|FOB|. fluffily final a| +37711|124005|24006|3|18|18522.00|0.05|0.07|A|F|1993-01-11|1993-03-06|1993-02-01|TAKE BACK RETURN|RAIL| after the quickly regular requests. carefu| +37736|918155|43192|1|31|36366.41|0.09|0.04|N|O|1997-09-08|1997-07-28|1997-10-07|DELIVER IN PERSON|AIR|fter the fluffily unusual packages. slyly r| +37736|421961|46978|2|28|52722.32|0.08|0.03|N|O|1997-07-12|1997-08-12|1997-08-03|DELIVER IN PERSON|REG AIR|usily regular pinto beans. | +37736|884204|34205|3|29|34456.64|0.07|0.05|N|O|1997-09-15|1997-06-29|1997-10-06|NONE|REG AIR| carefully ironic excuses. fi| +37736|806543|44092|4|30|43485.00|0.10|0.00|N|O|1997-09-04|1997-07-25|1997-09-10|TAKE BACK RETURN|TRUCK|ly silent packa| +37737|811472|11473|1|11|15217.73|0.06|0.08|A|F|1992-11-30|1993-02-17|1992-12-02|TAKE BACK RETURN|SHIP|asymptotes s| +37737|394056|31578|2|13|14950.52|0.09|0.08|A|F|1993-03-07|1993-02-15|1993-03-16|DELIVER IN PERSON|TRUCK|uickly ironic| +37737|892720|30272|3|35|59943.80|0.09|0.07|A|F|1993-01-19|1993-01-14|1993-02-11|NONE|MAIL|egular deposits. blithely final | +37737|937900|12937|4|29|56197.94|0.09|0.04|R|F|1993-01-16|1993-01-04|1993-02-14|TAKE BACK RETURN|SHIP|sts detect furiously after t| +37737|278801|16317|5|4|7119.16|0.01|0.05|R|F|1993-03-09|1993-01-31|1993-03-24|NONE|REG AIR|l ideas cajole slyly expres| +37738|919497|19498|1|21|31845.45|0.06|0.06|R|F|1992-11-15|1992-10-24|1992-12-11|TAKE BACK RETURN|FOB| stealthily. s| +37738|972462|22463|2|24|36826.08|0.05|0.08|R|F|1992-11-12|1992-09-29|1992-11-19|TAKE BACK RETURN|RAIL|above the special deposits. regul| +37738|158532|33539|3|11|17495.83|0.04|0.02|A|F|1992-11-19|1992-10-19|1992-11-20|TAKE BACK RETURN|SHIP|tain carefully u| +37738|446045|21062|4|10|9910.20|0.04|0.00|A|F|1992-11-11|1992-09-16|1992-12-04|TAKE BACK RETURN|TRUCK|ully ruthless pinto beans. blithely iron| +37738|664593|39620|5|27|42054.12|0.02|0.03|R|F|1992-08-23|1992-11-10|1992-08-24|COLLECT COD|RAIL|lar theodolites. express, specia| +37739|769357|19358|1|39|55626.48|0.01|0.02|R|F|1992-10-13|1992-09-20|1992-10-15|TAKE BACK RETURN|SHIP|ts. ruthlessly express| +37740|235593|48098|1|43|65728.94|0.01|0.04|N|O|1996-09-28|1996-08-30|1996-10-25|NONE|AIR|haggle fluffily. unusu| +37740|601136|1137|2|41|42521.10|0.10|0.06|N|O|1996-10-12|1996-08-05|1996-10-27|NONE|REG AIR|ke alongside of the slowly ev| +37740|280899|30900|3|19|35717.72|0.00|0.03|N|O|1996-09-17|1996-08-06|1996-09-28|COLLECT COD|FOB|ld ideas acros| +37740|52706|2707|4|40|66348.00|0.08|0.00|N|O|1996-10-12|1996-08-12|1996-10-18|NONE|FOB|y. accounts are fluffily? quickly silent f| +37741|564375|14376|1|14|20150.90|0.09|0.00|R|F|1994-03-06|1994-04-03|1994-03-16|DELIVER IN PERSON|FOB|tes. fluffily bold deposits use furiousl| +37741|435127|47636|2|11|11683.10|0.03|0.06|R|F|1994-05-05|1994-03-27|1994-05-10|NONE|MAIL| even, ironic excuses haggle carefu| +37741|173300|23301|3|14|19226.20|0.00|0.00|A|F|1994-02-09|1994-04-22|1994-02-13|DELIVER IN PERSON|SHIP| according to the quickly pending req| +37741|642574|30111|4|39|59145.06|0.02|0.00|A|F|1994-02-03|1994-03-10|1994-02-15|DELIVER IN PERSON|SHIP|unts. ironic pinto beans serve sly| +37741|730074|5103|5|5|5520.20|0.09|0.03|A|F|1994-02-16|1994-03-24|1994-03-10|TAKE BACK RETURN|AIR|ly ironic gifts unwind carefully fluffil| +37741|342776|17789|6|21|38193.96|0.02|0.06|R|F|1994-03-15|1994-03-21|1994-03-17|TAKE BACK RETURN|SHIP|egular, bold deposits believe ca| +37741|35461|10462|7|2|2792.92|0.00|0.08|A|F|1994-05-12|1994-03-10|1994-05-27|NONE|REG AIR| carefully ca| +37742|983694|33695|1|48|85327.20|0.04|0.03|N|O|1996-05-11|1996-04-23|1996-05-27|COLLECT COD|MAIL|er across the fu| +37743|366443|3965|1|42|63396.06|0.09|0.08|R|F|1994-08-19|1994-09-04|1994-09-17|DELIVER IN PERSON|FOB|h slyly aga| +37743|794353|6869|2|47|68024.04|0.00|0.03|A|F|1994-10-13|1994-10-19|1994-10-20|NONE|RAIL| express deposits according | +37743|678244|15784|3|13|15888.73|0.05|0.00|A|F|1994-11-10|1994-10-15|1994-12-01|DELIVER IN PERSON|MAIL|dependencies sleep slyly to| +37743|239859|2364|4|38|68355.92|0.10|0.00|R|F|1994-11-01|1994-09-17|1994-11-08|TAKE BACK RETURN|RAIL|haggle quickly. blithely special forges| +37743|309845|22352|5|38|70483.54|0.07|0.08|R|F|1994-10-29|1994-08-28|1994-11-16|COLLECT COD|RAIL|arefully pending excuses detect carefully | +37768|268327|18328|1|25|32382.75|0.00|0.04|N|O|1996-11-04|1997-01-07|1996-12-04|COLLECT COD|RAIL| carefully pen| +37768|755113|17629|2|19|22193.52|0.01|0.00|N|O|1996-12-31|1997-01-13|1997-01-05|COLLECT COD|MAIL|ss theodolites. carefully even| +37768|180786|30787|3|13|24268.14|0.00|0.02|N|O|1996-11-25|1996-12-20|1996-11-29|NONE|RAIL|posits along the ironic foxes use furiou| +37768|461164|36183|4|39|43880.46|0.02|0.07|N|O|1997-02-13|1996-11-28|1997-02-26|COLLECT COD|RAIL|ously ironic cou| +37768|781333|31334|5|7|9900.10|0.06|0.01|N|O|1996-11-03|1996-11-23|1996-11-16|NONE|TRUCK|oss the furious theodolites sleep | +37768|847661|10178|6|7|11260.34|0.07|0.04|N|O|1996-11-25|1996-11-28|1996-12-12|COLLECT COD|MAIL|ess platelets| +37769|956469|31508|1|37|56440.54|0.09|0.03|N|O|1997-05-11|1997-03-25|1997-05-21|TAKE BACK RETURN|FOB|gular instructions. pinto beans haggle. fin| +37769|361614|11615|2|30|50268.00|0.00|0.08|N|O|1997-04-27|1997-04-28|1997-05-27|TAKE BACK RETURN|MAIL| haggle fluffily. slowl| +37769|639983|39984|3|49|94224.55|0.09|0.07|N|O|1997-03-17|1997-04-05|1997-03-24|DELIVER IN PERSON|AIR|ly. final, pending packages are sly| +37769|183224|8231|4|34|44445.48|0.07|0.04|N|O|1997-06-06|1997-05-04|1997-06-25|DELIVER IN PERSON|SHIP|al accounts sleep unusu| +37769|436551|11568|5|1|1487.53|0.08|0.08|N|O|1997-03-17|1997-05-03|1997-04-10|NONE|AIR|sly special foxes haggle sly| +37770|623736|23737|1|27|44811.90|0.06|0.06|A|F|1995-04-17|1995-04-30|1995-04-18|TAKE BACK RETURN|TRUCK|ses play slyly across th| +37770|130138|30139|2|31|36212.03|0.06|0.02|A|F|1995-05-24|1995-06-06|1995-06-16|NONE|FOB|le furiously bold the| +37770|224390|24391|3|44|57832.72|0.00|0.02|N|O|1995-06-24|1995-04-13|1995-07-24|DELIVER IN PERSON|SHIP|uests wake slyly. special, ironic | +37771|289618|14629|1|32|51443.20|0.08|0.00|A|F|1994-01-30|1993-12-04|1994-02-06|DELIVER IN PERSON|AIR|sly ironic theodolites wake. accounts caj| +37771|607599|32624|2|10|15065.60|0.05|0.01|R|F|1993-10-23|1993-11-20|1993-11-20|COLLECT COD|MAIL|he quickly pending requests. fur| +37771|902804|2805|3|41|74077.16|0.10|0.05|A|F|1993-12-23|1993-12-29|1993-12-28|TAKE BACK RETURN|REG AIR|. special accounts integ| +37771|410523|10524|4|31|44438.50|0.10|0.00|A|F|1993-12-29|1994-01-12|1994-01-14|DELIVER IN PERSON|FOB| sleep; final theodolites nag furiously car| +37771|646293|21318|5|9|11153.34|0.03|0.08|R|F|1994-01-10|1993-12-20|1994-01-20|COLLECT COD|TRUCK|eep carefully on the sile| +37771|241664|41665|6|32|51380.80|0.09|0.06|R|F|1993-11-26|1993-12-19|1993-12-19|NONE|REG AIR|uests after the slyly bold packages cajol| +37771|644164|6677|7|17|18838.21|0.02|0.04|A|F|1994-01-24|1993-12-26|1994-01-30|NONE|AIR|among the final dependencies ca| +37772|447851|35376|1|1|1798.83|0.00|0.05|N|O|1995-11-11|1995-10-10|1995-12-01|NONE|MAIL|hely caref| +37772|17006|4507|2|47|43381.00|0.02|0.04|N|O|1995-07-29|1995-09-10|1995-08-10|DELIVER IN PERSON|RAIL|latelets. express, silent packages slee| +37772|818450|18451|3|9|12315.69|0.09|0.06|N|O|1995-10-14|1995-10-01|1995-11-06|COLLECT COD|REG AIR|ss the even a| +37772|683806|8833|4|31|55482.87|0.10|0.02|N|O|1995-08-26|1995-09-19|1995-08-27|NONE|TRUCK|s. carefully final theodolites can slee| +37772|718585|43614|5|42|67349.10|0.07|0.03|N|O|1995-10-11|1995-09-30|1995-11-09|TAKE BACK RETURN|REG AIR|the even requests-- sly| +37773|938600|13637|1|22|36048.32|0.04|0.03|N|O|1997-04-19|1997-04-13|1997-05-16|NONE|FOB|totes among the unusual de| +37773|43986|6487|2|8|15439.84|0.09|0.08|N|O|1997-04-15|1997-04-28|1997-04-29|DELIVER IN PERSON|TRUCK| ironic theodolites. slyly ironi| +37774|441485|3994|1|43|61337.78|0.00|0.03|N|O|1996-04-11|1996-04-06|1996-04-29|TAKE BACK RETURN|FOB|otornis sublate. blithely final| +37774|21844|9345|2|14|24721.76|0.03|0.05|N|O|1996-04-17|1996-04-18|1996-04-26|DELIVER IN PERSON|FOB|ons are darin| +37774|116050|3557|3|32|34113.60|0.10|0.05|N|O|1996-05-14|1996-03-27|1996-06-01|DELIVER IN PERSON|FOB| quickly fi| +37774|451887|1888|4|4|7355.44|0.00|0.08|N|O|1996-02-22|1996-04-23|1996-03-13|COLLECT COD|RAIL|ully express d| +37774|854895|4896|5|5|9249.25|0.00|0.02|N|O|1996-02-03|1996-04-09|1996-03-03|COLLECT COD|REG AIR|, bold accounts. final| +37774|213860|38869|6|22|39024.70|0.03|0.04|N|O|1996-03-14|1996-02-25|1996-04-04|NONE|MAIL|cies. pinto beans nag alon| +37775|768379|5925|1|38|54998.92|0.05|0.01|N|O|1997-11-30|1997-10-05|1997-12-12|NONE|TRUCK|sly fluffily unusual ideas. d| +37775|145695|33202|2|39|67886.91|0.04|0.01|N|O|1997-09-30|1997-11-30|1997-10-12|DELIVER IN PERSON|AIR|ect about the carefull| +37775|694543|32083|3|28|43050.28|0.01|0.04|N|O|1997-10-31|1997-11-21|1997-11-16|COLLECT COD|FOB|o beans dazzle slyly. | +37775|179790|17300|4|45|84140.55|0.05|0.04|N|O|1997-11-10|1997-10-23|1997-12-03|NONE|SHIP|s instructions are qui| +37775|726469|26470|5|11|16449.73|0.10|0.06|N|O|1997-09-27|1997-11-09|1997-10-10|DELIVER IN PERSON|TRUCK|urts. furiously even deposit| +37775|763524|38555|6|14|22224.86|0.02|0.03|N|O|1997-11-02|1997-11-24|1997-11-11|NONE|RAIL|iously special pinto beans. quick| +37800|280959|5970|1|1|1939.94|0.06|0.05|A|F|1994-02-12|1994-01-12|1994-02-14|TAKE BACK RETURN|TRUCK|telets. regular packages boost. express | +37800|74908|49911|2|32|60252.80|0.03|0.00|A|F|1993-11-28|1994-02-04|1993-12-07|COLLECT COD|TRUCK| requests | +37800|976244|26245|3|17|22443.40|0.04|0.00|A|F|1993-12-11|1993-12-16|1993-12-27|TAKE BACK RETURN|RAIL|ckages doubt | +37800|724585|49614|4|12|19314.60|0.08|0.03|A|F|1993-12-28|1994-01-02|1994-01-04|COLLECT COD|SHIP|packages. furiously regular requests wake | +37801|670624|20625|1|3|4783.77|0.06|0.03|N|O|1997-06-21|1997-05-18|1997-07-19|DELIVER IN PERSON|MAIL|kly regular pinto| +37801|163244|13245|2|21|27452.04|0.04|0.01|N|O|1997-05-11|1997-05-30|1997-05-24|DELIVER IN PERSON|RAIL|r the fluffily final esc| +37802|562367|24879|1|31|44309.54|0.00|0.05|A|F|1993-08-07|1993-07-04|1993-08-26|DELIVER IN PERSON|RAIL| blithely blithely express pinto beans| +37802|691470|29010|2|27|39458.88|0.00|0.08|A|F|1993-05-18|1993-07-20|1993-06-12|NONE|FOB|efully silent packages unwind blithely ar| +37803|521368|8899|1|37|51405.58|0.09|0.06|R|F|1992-03-09|1992-03-09|1992-04-02|DELIVER IN PERSON|REG AIR| carefully silent ac| +37804|536452|11473|1|45|66979.35|0.05|0.07|A|F|1994-07-29|1994-06-28|1994-08-07|COLLECT COD|AIR|sleep fluffily fl| +37804|137163|12168|2|20|24003.20|0.03|0.05|R|F|1994-05-04|1994-06-13|1994-05-09|COLLECT COD|AIR|lithely furiously regu| +37805|294929|19940|1|7|13467.37|0.07|0.05|N|O|1998-08-05|1998-10-28|1998-08-16|COLLECT COD|RAIL|equests must wake carefully final accounts| +37806|117273|42278|1|49|63223.23|0.10|0.00|N|O|1996-04-13|1996-04-15|1996-05-13|TAKE BACK RETURN|AIR|ges will poach furiously across the slowly| +37807|551563|14075|1|42|67810.68|0.01|0.01|A|F|1994-08-02|1994-07-13|1994-08-17|COLLECT COD|SHIP|. slyly even attainments cajole ruthless| +37807|104215|41722|2|27|32918.67|0.05|0.05|R|F|1994-07-10|1994-06-22|1994-07-24|TAKE BACK RETURN|MAIL|structions are above the final packag| +37807|529232|29233|3|4|5044.84|0.10|0.05|R|F|1994-07-12|1994-06-16|1994-07-25|TAKE BACK RETURN|FOB|ts wake carefully express| +37807|787492|8|4|45|71075.70|0.00|0.06|A|F|1994-06-12|1994-07-15|1994-06-26|NONE|RAIL|ep furiously| +37807|362946|12947|5|22|44196.46|0.04|0.02|R|F|1994-08-08|1994-07-11|1994-08-19|TAKE BACK RETURN|MAIL|ctions are blithely along the furiously| +37807|30263|5264|6|19|22671.94|0.02|0.02|R|F|1994-05-30|1994-08-10|1994-05-31|NONE|MAIL| ironic dolphi| +37832|323896|11415|1|3|5759.64|0.01|0.01|R|F|1992-04-30|1992-04-26|1992-05-16|COLLECT COD|RAIL|g about the | +37832|719201|19202|2|40|48806.80|0.01|0.00|R|F|1992-04-10|1992-05-29|1992-04-17|NONE|FOB|e slyly regular dolphins. carefully slow | +37832|606172|31197|3|32|34500.48|0.10|0.08|R|F|1992-05-04|1992-05-20|1992-06-01|COLLECT COD|RAIL|ely careful depe| +37832|923841|11396|4|39|72727.20|0.03|0.06|A|F|1992-04-10|1992-04-23|1992-05-01|NONE|MAIL|packages haggle among t| +37832|990640|3160|5|42|72685.20|0.06|0.03|A|F|1992-06-13|1992-04-30|1992-06-23|TAKE BACK RETURN|RAIL|, express requests. blithely fi| +37832|678990|28991|6|19|37410.24|0.08|0.02|R|F|1992-05-17|1992-04-17|1992-06-01|TAKE BACK RETURN|RAIL|- furiously| +37832|779268|41784|7|2|2694.46|0.02|0.03|A|F|1992-04-23|1992-05-30|1992-04-26|COLLECT COD|AIR|he close deposits. furiously | +37833|154008|29015|1|32|33984.00|0.03|0.00|N|O|1996-01-11|1996-02-06|1996-01-16|COLLECT COD|TRUCK|onic foxes before the carefully u| +37834|482764|20292|1|47|82096.78|0.08|0.02|N|O|1995-08-24|1995-07-19|1995-09-07|TAKE BACK RETURN|REG AIR|azzle slyly theod| +37834|805538|30571|2|4|5773.96|0.06|0.03|N|O|1995-08-11|1995-07-29|1995-08-22|NONE|MAIL|ending asymptotes. furiously even instructi| +37835|86313|23817|1|22|28584.82|0.08|0.07|N|O|1998-07-31|1998-05-23|1998-08-23|TAKE BACK RETURN|REG AIR|nts are; deposits alongside of the blith| +37836|123133|35636|1|46|53181.98|0.01|0.04|N|O|1995-10-19|1995-08-06|1995-11-11|DELIVER IN PERSON|FOB|pecial accoun| +37837|216712|41721|1|37|60261.90|0.10|0.03|N|O|1998-06-24|1998-08-03|1998-07-24|TAKE BACK RETURN|RAIL|press excuses wake| +37837|276275|13791|2|2|2502.52|0.09|0.00|N|O|1998-08-25|1998-06-22|1998-09-23|DELIVER IN PERSON|RAIL|usly quickly regular instr| +37837|343348|43349|3|43|59827.19|0.07|0.03|N|O|1998-05-08|1998-07-04|1998-05-17|NONE|TRUCK| accounts sleep again| +37837|634299|21836|4|26|32064.76|0.01|0.03|N|O|1998-08-06|1998-06-27|1998-08-08|COLLECT COD|TRUCK|s. asymptotes h| +37838|232055|44560|1|3|2961.12|0.05|0.07|A|F|1993-11-18|1994-01-04|1993-12-18|TAKE BACK RETURN|AIR|e enticingly carefully regular ideas. | +37838|134277|21784|2|7|9178.89|0.09|0.05|A|F|1994-01-03|1993-11-13|1994-01-15|TAKE BACK RETURN|AIR|fily alongside o| +37838|782922|7953|3|46|92224.94|0.05|0.00|R|F|1993-11-30|1994-01-02|1993-12-26|TAKE BACK RETURN|MAIL|gs sleep furiously. quick| +37839|915375|40412|1|29|40319.57|0.04|0.02|N|O|1996-08-03|1996-10-04|1996-08-05|DELIVER IN PERSON|TRUCK|oxes. carefully fluff| +37839|701753|14268|2|29|50886.88|0.10|0.03|N|O|1996-11-01|1996-10-19|1996-11-03|TAKE BACK RETURN|TRUCK|al instructions. pending, unusual| +37839|351020|26035|3|4|4284.04|0.09|0.05|N|O|1996-11-05|1996-10-10|1996-11-15|COLLECT COD|FOB|even deposits according to the bold excuse| +37864|788008|25554|1|43|47126.71|0.08|0.00|N|O|1996-07-13|1996-09-01|1996-08-11|COLLECT COD|RAIL|ages wake about the ironic, even requests? | +37864|47751|10252|2|44|74745.00|0.05|0.06|N|O|1996-08-20|1996-09-10|1996-08-27|NONE|TRUCK|carefully final ideas wake furiously a| +37864|540698|28229|3|32|55637.44|0.10|0.01|N|O|1996-07-12|1996-08-17|1996-07-19|COLLECT COD|MAIL|inal, even deposits cajole quickly express | +37864|507914|7915|4|11|21140.79|0.06|0.02|N|O|1996-08-18|1996-09-24|1996-08-23|COLLECT COD|FOB|ins wake slyly alongside o| +37864|495540|20559|5|42|64491.84|0.01|0.00|N|O|1996-08-12|1996-08-06|1996-08-24|COLLECT COD|SHIP|lly unusual instructions. furiously | +37865|628785|41298|1|21|35988.75|0.02|0.02|N|O|1998-07-22|1998-08-30|1998-08-19|TAKE BACK RETURN|FOB|ts alongside of the carefully | +37866|88579|13582|1|23|36054.11|0.10|0.05|N|O|1996-08-30|1996-06-30|1996-09-23|DELIVER IN PERSON|SHIP|unusual dependencies are furiously. foxes| +37866|737933|25476|2|12|23650.80|0.09|0.03|N|O|1996-06-12|1996-08-05|1996-07-04|TAKE BACK RETURN|SHIP|final requests cajole fluffily. requests a| +37866|423926|36435|3|33|61046.70|0.06|0.04|N|O|1996-06-13|1996-06-28|1996-06-30|NONE|AIR|ironic dinos wake furiously blithe| +37866|914801|27320|4|34|61735.84|0.10|0.03|N|O|1996-05-19|1996-07-19|1996-05-24|DELIVER IN PERSON|AIR| the blithely final deposits grow b| +37866|44530|32031|5|21|30965.13|0.00|0.05|N|O|1996-08-02|1996-06-16|1996-08-22|DELIVER IN PERSON|RAIL|es snooze quickly final deposits. carefu| +37867|791362|41363|1|20|29066.60|0.06|0.03|N|O|1997-09-28|1997-09-06|1997-10-17|TAKE BACK RETURN|FOB|ncies haggle bravely even i| +37867|416471|3996|2|11|15261.95|0.06|0.02|N|O|1997-08-23|1997-10-23|1997-09-17|NONE|REG AIR|ously unusual req| +37867|621399|8936|3|34|44892.24|0.08|0.04|N|O|1997-10-08|1997-10-28|1997-10-13|COLLECT COD|AIR|ust have to snooze at the| +37867|836544|24093|4|16|23688.00|0.03|0.02|N|O|1997-09-21|1997-10-27|1997-10-20|DELIVER IN PERSON|MAIL|ithely after the silent, bold depo| +37867|792207|29753|5|28|36376.76|0.04|0.02|N|O|1997-10-04|1997-09-16|1997-10-22|DELIVER IN PERSON|SHIP| to the blithely bold dep| +37867|609459|9460|6|20|27368.40|0.04|0.01|N|O|1997-10-19|1997-09-09|1997-11-05|DELIVER IN PERSON|REG AIR|cally. furiously final requ| +37867|164054|1564|7|30|33541.50|0.03|0.06|N|O|1997-12-03|1997-10-18|1997-12-18|DELIVER IN PERSON|TRUCK| above the slyly final e| +37868|243055|30568|1|26|25949.04|0.04|0.01|A|F|1994-03-23|1994-03-21|1994-04-01|TAKE BACK RETURN|AIR| final, even requests haggle furiously. d| +37868|9398|9399|2|40|52295.60|0.07|0.08|A|F|1994-03-11|1994-04-29|1994-03-13|NONE|AIR|g slyly again| +37868|937463|25018|3|27|40511.34|0.09|0.04|R|F|1994-02-14|1994-04-16|1994-02-20|DELIVER IN PERSON|MAIL|beans. ironic theodolites c| +37869|603163|15676|1|27|28785.51|0.06|0.01|A|F|1995-04-03|1995-05-10|1995-04-26|NONE|TRUCK|es. even, unusual deposits use quick| +37869|352794|40316|2|4|7387.12|0.07|0.03|A|F|1995-05-18|1995-04-30|1995-05-23|NONE|REG AIR|, express requests. fluffily final| +37869|393405|43406|3|14|20977.46|0.04|0.01|N|F|1995-06-12|1995-05-27|1995-06-18|COLLECT COD|REG AIR|ual theodolites are slyly. b| +37869|950172|173|4|20|24442.60|0.02|0.00|R|F|1995-04-24|1995-04-08|1995-05-07|NONE|AIR|e even, ironic packages d| +37869|537879|25410|5|8|15334.80|0.04|0.06|A|F|1995-04-26|1995-05-02|1995-04-27|NONE|REG AIR|lar, special accounts detect slyly id| +37869|119099|19100|6|38|42487.42|0.08|0.02|N|O|1995-06-26|1995-05-28|1995-06-28|DELIVER IN PERSON|SHIP|s above the furiously pending packa| +37869|689115|26655|7|8|8832.64|0.08|0.04|N|O|1995-06-18|1995-04-22|1995-06-28|DELIVER IN PERSON|REG AIR|y regular deposits nag against the | +37870|948657|48658|1|49|83574.89|0.07|0.02|N|O|1998-05-23|1998-06-22|1998-06-12|COLLECT COD|TRUCK|usual deposits. deposits sleep bravely| +37871|716305|3848|1|1|1321.27|0.06|0.02|R|F|1993-07-17|1993-08-23|1993-07-31|DELIVER IN PERSON|MAIL|press attainments are| +37871|937175|49694|2|5|6060.65|0.09|0.06|A|F|1993-09-26|1993-09-26|1993-10-12|TAKE BACK RETURN|SHIP| requests. deposits nag blithely reg| +37871|86796|11799|3|47|83791.13|0.03|0.05|A|F|1993-07-27|1993-08-06|1993-08-22|NONE|TRUCK| slyly acr| +37871|778881|41397|4|49|96032.65|0.05|0.01|A|F|1993-10-20|1993-09-19|1993-10-26|DELIVER IN PERSON|AIR|kly ironic, silent r| +37871|637812|12837|5|50|87489.00|0.01|0.05|R|F|1993-09-03|1993-08-13|1993-09-24|TAKE BACK RETURN|SHIP|n accounts.| +37871|698835|11349|6|19|34842.20|0.07|0.06|R|F|1993-08-22|1993-10-03|1993-09-21|NONE|RAIL|ng packages. furiously sl| +37871|309582|22089|7|21|33422.97|0.06|0.05|R|F|1993-10-02|1993-09-06|1993-10-14|COLLECT COD|TRUCK|telets are quickl| +37896|129519|29520|1|49|75876.99|0.10|0.03|N|O|1997-11-30|1998-01-06|1997-12-25|DELIVER IN PERSON|TRUCK|nal theodolites; special instructions | +37896|825415|37932|2|13|17424.81|0.05|0.00|N|O|1997-12-29|1997-12-10|1998-01-14|NONE|AIR|s. blithely| +37896|741144|41145|3|9|10665.99|0.02|0.08|N|O|1998-02-28|1998-01-03|1998-03-16|NONE|RAIL|ly final platele| +37896|398294|10802|4|23|32022.44|0.01|0.06|N|O|1998-01-25|1997-12-25|1998-02-08|COLLECT COD|SHIP|ithely even foxes| +37896|113823|1330|5|47|86330.54|0.04|0.02|N|O|1997-11-27|1998-01-04|1997-12-06|TAKE BACK RETURN|FOB|e. blithely | +37896|14520|39521|6|14|20083.28|0.01|0.02|N|O|1997-12-11|1998-01-20|1998-01-05|COLLECT COD|AIR|osits. slyly pending br| +37897|955588|18108|1|26|42732.04|0.01|0.08|A|F|1992-05-01|1992-04-10|1992-05-29|NONE|REG AIR|ers wake. qu| +37897|564853|27365|2|9|17260.47|0.05|0.04|A|F|1992-03-31|1992-02-29|1992-04-06|NONE|REG AIR|usly final sheaves sle| +37897|483124|33125|3|36|39855.60|0.00|0.06|R|F|1992-01-23|1992-04-03|1992-02-11|COLLECT COD|AIR|cross the ca| +37897|848528|48529|4|3|4429.44|0.07|0.08|R|F|1992-04-19|1992-03-10|1992-05-03|NONE|SHIP|sits are fluffily e| +37897|196283|46284|5|13|17930.64|0.07|0.03|A|F|1992-04-05|1992-03-31|1992-05-01|COLLECT COD|SHIP|ckages. furious| +37897|916433|28952|6|38|55076.82|0.06|0.03|R|F|1992-04-30|1992-03-24|1992-05-13|NONE|FOB|e carefully final waters. slyly regul| +37898|708027|33056|1|38|39329.62|0.00|0.02|N|O|1997-11-15|1997-11-15|1997-11-24|TAKE BACK RETURN|FOB| fluffily ironic platelets. blithel| +37898|809350|9351|2|4|5037.24|0.02|0.05|N|O|1997-12-02|1997-11-09|1997-12-03|DELIVER IN PERSON|MAIL|ckages across the deposits nag furio| +37898|739920|2435|3|6|11759.34|0.05|0.04|N|O|1997-10-27|1997-10-21|1997-11-15|NONE|AIR|ar ideas. quickly express| +37898|820468|32985|4|3|4165.26|0.02|0.07|N|O|1997-09-15|1997-09-25|1997-10-05|COLLECT COD|SHIP|gged, regular packages was. p| +37898|596685|21708|5|23|40978.18|0.09|0.03|N|O|1997-10-29|1997-10-27|1997-11-15|NONE|MAIL| ideas according to| +37899|254864|4865|1|24|43652.40|0.02|0.07|R|F|1994-09-13|1994-08-02|1994-09-21|TAKE BACK RETURN|FOB|xes above the fluffily final packages use s| +37899|489996|27524|2|31|61565.07|0.07|0.00|R|F|1994-07-11|1994-08-27|1994-07-22|TAKE BACK RETURN|FOB|e at the blithely even re| +37900|357447|19955|1|16|24070.88|0.04|0.05|N|O|1996-09-29|1996-10-30|1996-10-28|DELIVER IN PERSON|AIR|ing, unusual courts caj| +37900|610609|35634|2|18|27352.26|0.00|0.04|N|O|1996-10-02|1996-10-30|1996-10-16|NONE|REG AIR|ges nag aro| +37900|497142|47143|3|49|55816.88|0.06|0.06|N|O|1996-12-10|1996-10-30|1996-12-16|TAKE BACK RETURN|SHIP| even accounts sn| +37900|464215|14216|4|41|48346.79|0.04|0.02|N|O|1996-11-07|1996-10-28|1996-11-25|DELIVER IN PERSON|FOB|sly final | +37900|56550|19052|5|49|73820.95|0.01|0.06|N|O|1996-11-22|1996-10-13|1996-12-08|TAKE BACK RETURN|RAIL|r packages are slyly. fluffily bold pack| +37900|425847|38356|6|6|10636.92|0.05|0.08|N|O|1996-10-24|1996-11-18|1996-11-19|TAKE BACK RETURN|TRUCK|s among the carefully ironic as| +37901|784828|9859|1|47|89901.13|0.06|0.00|N|O|1998-04-16|1998-04-30|1998-05-03|NONE|MAIL|ages promise pending the| +37901|595942|8454|2|12|24455.04|0.09|0.01|N|O|1998-04-27|1998-04-11|1998-05-01|NONE|TRUCK| haggle furiously regular requests| +37901|988252|13291|3|3|4020.63|0.02|0.00|N|O|1998-05-31|1998-05-15|1998-06-13|COLLECT COD|REG AIR|lyly final deposits cajol| +37901|549681|24702|4|26|44997.16|0.03|0.07|N|O|1998-05-31|1998-04-21|1998-06-06|TAKE BACK RETURN|FOB|furiously even pa| +37902|684113|34114|1|2|2194.16|0.09|0.06|R|F|1993-05-27|1993-04-17|1993-06-22|COLLECT COD|FOB| wake doggedly express theodolites. u| +37902|875129|37647|2|42|46371.36|0.06|0.03|A|F|1993-07-11|1993-04-24|1993-07-31|TAKE BACK RETURN|FOB|ag carefully. bold pearls ar| +37902|293084|43085|3|40|43082.80|0.02|0.07|R|F|1993-07-11|1993-05-19|1993-08-08|NONE|REG AIR|sts; boldly bold deposits haggle furio| +37902|851243|1244|4|35|41797.00|0.06|0.05|R|F|1993-03-17|1993-05-03|1993-03-30|COLLECT COD|MAIL|lowly regular excuses over the fu| +37902|833720|33721|5|12|19844.16|0.08|0.01|R|F|1993-07-14|1993-05-25|1993-08-11|TAKE BACK RETURN|RAIL|g to the carefully| +37902|328165|40672|6|26|31021.90|0.01|0.02|A|F|1993-04-19|1993-06-02|1993-05-10|COLLECT COD|SHIP|jole along the quickly even accoun| +37902|461814|11815|7|2|3551.58|0.10|0.03|A|F|1993-05-01|1993-04-30|1993-05-23|DELIVER IN PERSON|REG AIR|f the foxes? even, speci| +37903|703305|15820|1|45|58872.15|0.08|0.01|R|F|1993-08-26|1993-09-19|1993-09-12|TAKE BACK RETURN|REG AIR|ions against th| +37903|434838|9855|2|18|31910.58|0.04|0.07|A|F|1993-08-26|1993-10-19|1993-09-13|NONE|RAIL|ns. even id| +37928|909206|46761|1|8|9721.28|0.06|0.00|N|O|1996-06-05|1996-06-04|1996-06-12|DELIVER IN PERSON|REG AIR|egular instructions; fluffily even ac| +37928|15454|27955|2|18|24650.10|0.06|0.06|N|O|1996-06-18|1996-06-25|1996-07-14|NONE|MAIL|s wake alo| +37928|720843|8386|3|3|5591.43|0.04|0.08|N|O|1996-08-03|1996-06-15|1996-08-10|COLLECT COD|REG AIR|ly regular ideas. fl| +37928|195446|45447|4|13|20038.72|0.03|0.00|N|O|1996-04-11|1996-05-10|1996-05-11|COLLECT COD|MAIL| deposits; careful| +37928|856932|19450|5|43|81222.27|0.10|0.04|N|O|1996-04-16|1996-05-22|1996-05-06|DELIVER IN PERSON|MAIL|s believe quickly final foxes. bo| +37928|448677|11186|6|43|69902.95|0.01|0.07|N|O|1996-07-20|1996-05-15|1996-07-21|DELIVER IN PERSON|SHIP|al instructions. furiously reg| +37928|905893|18412|7|1|1898.85|0.04|0.01|N|O|1996-07-06|1996-06-30|1996-07-07|COLLECT COD|TRUCK|refully fluffy accounts are; even | +37929|328809|41316|1|50|91889.50|0.10|0.04|N|O|1997-07-08|1997-09-05|1997-07-10|NONE|MAIL|around the express| +37929|289917|27433|2|10|19069.00|0.01|0.00|N|O|1997-10-09|1997-08-21|1997-10-15|NONE|TRUCK|tealthy accounts. car| +37929|626250|26251|3|5|5881.10|0.00|0.07|N|O|1997-07-30|1997-07-18|1997-08-18|DELIVER IN PERSON|SHIP|pinto beans. carefully bold packages detec| +37929|377913|40421|4|48|95563.20|0.05|0.01|N|O|1997-07-01|1997-09-09|1997-07-10|COLLECT COD|MAIL|r deposits. special accoun| +37930|3437|15938|1|17|22787.31|0.01|0.06|R|F|1993-07-17|1993-08-16|1993-07-26|TAKE BACK RETURN|REG AIR|fix blithely. acco| +37930|760954|10955|2|49|98731.08|0.07|0.00|R|F|1993-07-02|1993-06-23|1993-07-14|DELIVER IN PERSON|REG AIR|the quickly even accounts. bravely regu| +37930|337834|37835|3|31|58026.42|0.03|0.01|R|F|1993-06-28|1993-08-12|1993-07-06|COLLECT COD|TRUCK|he unusual theodolites-- s| +37930|959397|9398|4|49|71361.15|0.04|0.00|R|F|1993-07-01|1993-06-22|1993-07-03|DELIVER IN PERSON|TRUCK|etimes. special packages wake caref| +37930|568635|18636|5|15|25554.15|0.08|0.07|A|F|1993-08-23|1993-06-22|1993-09-12|DELIVER IN PERSON|REG AIR|o beans cajole ac| +37930|42274|17275|6|22|26757.94|0.06|0.06|R|F|1993-08-04|1993-07-22|1993-09-02|TAKE BACK RETURN|SHIP|gular requests. care| +37930|482858|20386|7|10|18408.30|0.01|0.00|R|F|1993-06-06|1993-07-07|1993-07-01|NONE|REG AIR|s above the blithely final instructions | +37931|381048|6063|1|23|25967.69|0.10|0.08|R|F|1993-02-07|1993-01-23|1993-02-20|TAKE BACK RETURN|MAIL|s. quickly bold asymptotes d| +37931|269904|44915|2|5|9369.45|0.05|0.07|R|F|1993-03-07|1993-01-12|1993-03-10|DELIVER IN PERSON|SHIP| furiously enticing theodolites believe| +37932|547326|9837|1|19|26092.70|0.04|0.08|N|O|1996-03-27|1996-04-16|1996-03-31|DELIVER IN PERSON|FOB| even courts. quickly reg| +37932|905120|5121|2|18|20251.44|0.07|0.04|N|O|1996-04-30|1996-05-12|1996-05-21|COLLECT COD|MAIL|uriously final f| +37932|336872|36873|3|23|43903.78|0.07|0.03|N|O|1996-04-03|1996-04-01|1996-04-19|DELIVER IN PERSON|AIR|ly regular platelets. slyly | +37932|799306|36852|4|46|64642.42|0.10|0.01|N|O|1996-05-22|1996-04-20|1996-06-02|COLLECT COD|SHIP|counts use slyly | +37932|923695|11250|5|18|30935.70|0.05|0.01|N|O|1996-06-02|1996-04-12|1996-06-22|NONE|TRUCK|en accounts wake idly. blith| +37932|527267|39778|6|35|45298.40|0.06|0.02|N|O|1996-06-14|1996-05-02|1996-07-05|TAKE BACK RETURN|FOB|out the blithe| +37933|737291|49806|1|49|65084.74|0.09|0.02|N|O|1998-04-07|1998-02-20|1998-04-10|COLLECT COD|TRUCK| furiously regul| +37933|649035|24060|2|32|31488.00|0.03|0.00|N|O|1998-04-02|1998-02-24|1998-04-15|DELIVER IN PERSON|FOB|ully along the ironically regu| +37933|317277|42290|3|3|3882.78|0.03|0.02|N|O|1998-02-03|1998-02-13|1998-02-23|NONE|FOB|ding to the final pinto | +37933|462040|12041|4|37|37074.74|0.01|0.05|N|O|1998-02-17|1998-03-24|1998-03-02|NONE|FOB|ns are furiously accordin| +37933|502021|27042|5|26|26598.00|0.09|0.04|N|O|1998-03-07|1998-02-19|1998-03-24|COLLECT COD|SHIP|ly express accounts use.| +37933|457220|7221|6|1|1177.20|0.06|0.07|N|O|1998-03-18|1998-03-02|1998-03-30|TAKE BACK RETURN|REG AIR| cajole blithely even | +37933|483259|45769|7|15|18633.45|0.00|0.01|N|O|1998-03-14|1998-03-08|1998-03-26|DELIVER IN PERSON|SHIP|y furiously silen| +37934|117455|4962|1|3|4417.35|0.10|0.04|N|O|1996-10-09|1996-12-24|1996-10-12|TAKE BACK RETURN|RAIL|xpress packages haggle careful| +37935|132806|45309|1|12|22065.60|0.01|0.01|A|F|1992-05-28|1992-06-30|1992-06-03|NONE|MAIL|fluffily. fin| +37935|59108|9109|2|7|7469.70|0.01|0.07|R|F|1992-05-28|1992-07-04|1992-06-05|DELIVER IN PERSON|TRUCK|y express foxes: ironic deposit| +37935|422581|10106|3|40|60142.40|0.05|0.00|A|F|1992-07-01|1992-07-22|1992-07-25|DELIVER IN PERSON|AIR|ithin the final, pen| +37935|309468|34481|4|5|7387.25|0.08|0.02|A|F|1992-06-09|1992-07-12|1992-06-17|NONE|TRUCK|ies haggle ironic, ironic | +37960|877347|14899|1|20|26486.00|0.02|0.03|A|F|1994-12-16|1994-11-26|1995-01-04|TAKE BACK RETURN|MAIL|ronic foxes are fu| +37960|555844|43378|2|39|74092.98|0.05|0.01|A|F|1994-09-25|1994-12-01|1994-10-05|DELIVER IN PERSON|MAIL|o was after| +37960|68932|31434|3|18|34216.74|0.07|0.07|A|F|1994-12-17|1994-12-17|1995-01-11|TAKE BACK RETURN|MAIL|ccounts nag slyly express| +37960|537254|37255|4|10|12912.30|0.07|0.02|A|F|1994-10-29|1994-12-10|1994-11-22|NONE|FOB|g requests are.| +37960|621926|34439|5|22|40653.58|0.00|0.06|A|F|1994-12-15|1994-12-12|1994-12-21|COLLECT COD|REG AIR|ly regular e| +37960|710004|47547|6|39|39544.83|0.01|0.03|A|F|1994-12-29|1994-11-26|1995-01-17|NONE|RAIL|he slyly regular fre| +37960|21026|8527|7|35|33145.70|0.01|0.07|R|F|1994-12-10|1994-10-30|1994-12-30|COLLECT COD|MAIL|ess packages sleep. carefully quick theodo| +37961|367710|42725|1|31|55108.70|0.05|0.06|N|O|1995-11-01|1995-09-28|1995-11-14|NONE|REG AIR|ccording to the carefully even p| +37961|97127|34631|2|38|42716.56|0.05|0.06|N|O|1995-08-25|1995-08-24|1995-09-17|NONE|FOB| express decoys boost fluffily| +37961|409160|46685|3|39|41696.46|0.07|0.04|N|O|1995-10-07|1995-09-03|1995-10-09|DELIVER IN PERSON|MAIL|l ideas. blithely regular she| +37961|745265|32808|4|36|47168.28|0.05|0.00|N|O|1995-08-04|1995-10-18|1995-08-14|NONE|MAIL|r deposits wake slyly reg| +37961|652880|27907|5|45|82478.25|0.06|0.06|N|O|1995-09-08|1995-09-07|1995-10-02|NONE|MAIL|es sleep quickly alon| +37962|91227|41228|1|21|25582.62|0.01|0.03|R|F|1993-07-07|1993-09-02|1993-07-24|DELIVER IN PERSON|REG AIR| accounts cajole. package| +37963|579272|41784|1|5|6756.25|0.03|0.07|N|O|1995-12-12|1995-11-18|1995-12-30|DELIVER IN PERSON|FOB|ons. furiously | +37963|815659|40692|2|12|18895.32|0.06|0.00|N|O|1995-12-03|1995-11-25|1995-12-06|DELIVER IN PERSON|REG AIR|final theodolites boost slyly fi| +37963|779326|16872|3|16|22484.64|0.09|0.08|N|O|1995-11-09|1995-10-17|1995-11-20|DELIVER IN PERSON|TRUCK|ies. blithely even theodolit| +37963|128180|15687|4|13|15706.34|0.07|0.02|N|O|1995-11-05|1995-11-29|1995-11-11|COLLECT COD|RAIL|even package| +37963|306657|19164|5|13|21627.32|0.02|0.07|N|O|1995-09-25|1995-11-17|1995-10-24|COLLECT COD|TRUCK|ites. furiously final pinto beans use e| +37963|984084|9123|6|5|5840.20|0.06|0.08|N|O|1995-11-10|1995-10-28|1995-11-27|TAKE BACK RETURN|MAIL|tes. enticingly pendi| +37963|493979|18998|7|7|13810.65|0.05|0.03|N|O|1995-10-31|1995-11-02|1995-11-20|DELIVER IN PERSON|MAIL|eposits are slyly. special accoun| +37964|299791|37307|1|19|34024.82|0.00|0.06|A|F|1994-02-22|1994-05-04|1994-03-03|TAKE BACK RETURN|RAIL|inal pinto beans haggle blithely express | +37964|571685|9219|2|50|87833.00|0.04|0.04|R|F|1994-06-09|1994-05-12|1994-06-11|NONE|RAIL|e after the slyly ironic| +37964|295045|7551|3|13|13520.39|0.08|0.06|R|F|1994-03-15|1994-04-04|1994-03-28|NONE|TRUCK|gouts. regular notor| +37964|810667|10668|4|11|17353.82|0.05|0.00|A|F|1994-03-20|1994-05-04|1994-03-27|COLLECT COD|FOB| final deposits. carefully bold| +37964|867061|4613|5|25|25700.50|0.09|0.03|A|F|1994-06-07|1994-03-14|1994-06-12|TAKE BACK RETURN|REG AIR|ly final deposits along the special id| +37965|353236|28251|1|4|5156.88|0.09|0.05|N|O|1997-12-10|1998-01-19|1997-12-31|TAKE BACK RETURN|AIR|carefully slyly regular platele| +37965|824997|24998|2|6|11531.70|0.09|0.01|N|O|1998-03-19|1998-01-21|1998-03-31|NONE|SHIP|special accounts play| +37966|659387|9388|1|23|30966.05|0.04|0.01|R|F|1993-11-27|1993-10-10|1993-12-01|TAKE BACK RETURN|RAIL|iet, final foxes boos| +37966|306497|19004|2|49|73670.52|0.05|0.07|A|F|1993-09-14|1993-09-30|1993-10-08|TAKE BACK RETURN|MAIL|inal platel| +37966|287070|49576|3|19|20084.14|0.06|0.02|A|F|1993-09-21|1993-10-30|1993-09-23|TAKE BACK RETURN|REG AIR|s use alongside of the fluff| +37966|782958|32959|4|7|14286.44|0.05|0.07|R|F|1993-10-27|1993-11-12|1993-10-29|TAKE BACK RETURN|TRUCK|s cajole even asym| +37966|172130|47137|5|49|58904.37|0.02|0.06|R|F|1993-11-08|1993-10-19|1993-12-03|NONE|TRUCK|quests detect above the enticingly even | +37967|161303|23807|1|8|10914.40|0.05|0.04|A|F|1992-04-30|1992-03-09|1992-05-05|DELIVER IN PERSON|FOB|e dependencies. pending, pending foxes thra| +37967|10046|35047|2|39|37285.56|0.07|0.00|R|F|1992-03-12|1992-04-25|1992-03-19|NONE|SHIP|iously pending| +37967|835064|35065|3|8|7992.16|0.07|0.07|R|F|1992-05-15|1992-05-03|1992-05-18|TAKE BACK RETURN|AIR|ncies haggle carefully after the brave| +37992|972349|22350|1|43|61115.90|0.00|0.08|N|O|1997-11-09|1997-10-12|1997-11-20|NONE|MAIL|nal foxes. regular plat| +37992|264348|26854|2|23|30183.59|0.08|0.01|N|O|1997-09-24|1997-11-01|1997-10-11|DELIVER IN PERSON|SHIP|lar theodol| +37992|881332|18884|3|12|15759.48|0.08|0.08|N|O|1997-11-22|1997-10-26|1997-12-18|TAKE BACK RETURN|SHIP|are after the reque| +37992|530884|18415|4|3|5744.58|0.08|0.07|N|O|1998-01-01|1997-11-02|1998-01-14|DELIVER IN PERSON|AIR| platelets. furiously pending depo| +37992|554738|4739|5|19|34061.49|0.01|0.01|N|O|1997-12-21|1997-11-11|1998-01-16|NONE|AIR|sleep even pinto beans. carefully fin| +37992|465340|2868|6|49|63960.68|0.09|0.03|N|O|1997-11-02|1997-10-16|1997-12-02|COLLECT COD|AIR|ly final foxes a| +37993|546856|21877|1|26|49473.58|0.02|0.07|N|O|1995-08-03|1995-06-10|1995-08-31|COLLECT COD|MAIL| special foxes use quickly about t| +37994|251513|14019|1|30|43935.00|0.02|0.00|A|F|1992-12-27|1993-01-12|1993-01-20|DELIVER IN PERSON|MAIL|ts atop the carefully express deposits ar| +37994|175215|12725|2|12|15482.52|0.10|0.00|R|F|1993-01-26|1992-12-27|1993-02-24|DELIVER IN PERSON|RAIL|s. carefully | +37994|833714|46231|3|17|28010.39|0.04|0.05|A|F|1992-12-10|1993-01-14|1992-12-22|COLLECT COD|SHIP|telets boost | +37994|224904|37409|4|26|47551.14|0.04|0.03|R|F|1993-02-08|1992-12-26|1993-03-10|NONE|FOB|ly special ideas sleep among the epitaphs.| +37994|952237|2238|5|10|12891.90|0.01|0.05|A|F|1992-12-14|1992-11-24|1993-01-06|COLLECT COD|RAIL|old foxes. blithely silent theodolites am| +37994|246684|9189|6|33|53812.11|0.10|0.04|R|F|1992-12-12|1992-12-11|1993-01-03|DELIVER IN PERSON|RAIL|iously fox| +37995|974673|49712|1|50|87381.50|0.04|0.02|N|O|1997-03-19|1997-05-10|1997-03-28|NONE|SHIP|ctions must nag slyly. finally fi| +37995|320818|20819|2|27|49647.60|0.05|0.05|N|O|1997-04-10|1997-05-23|1997-04-28|TAKE BACK RETURN|AIR|es. unusual accounts wake slyly. fluffily | +37995|981610|19168|3|30|50747.10|0.04|0.00|N|O|1997-04-12|1997-05-18|1997-04-15|DELIVER IN PERSON|SHIP|inal instructions. bold instructions | +37995|907001|44556|4|28|28222.88|0.09|0.06|N|O|1997-05-29|1997-04-27|1997-06-28|TAKE BACK RETURN|TRUCK| furiously un| +37995|954934|4935|5|26|51711.14|0.09|0.01|N|O|1997-03-28|1997-04-28|1997-04-14|TAKE BACK RETURN|SHIP|accounts wake boldly ironically brave pinto| +37995|571137|8671|6|25|30202.75|0.03|0.03|N|O|1997-04-06|1997-04-01|1997-04-09|COLLECT COD|RAIL|l packages| +37995|89043|39044|7|40|41281.60|0.10|0.02|N|O|1997-06-20|1997-04-10|1997-07-14|COLLECT COD|MAIL|structions against the ideas haggle caref| +37996|541230|28761|1|1|1271.21|0.00|0.06|R|F|1993-12-15|1994-01-17|1994-01-09|COLLECT COD|TRUCK|hely regular | +37996|438670|13687|2|15|24129.75|0.00|0.04|R|F|1993-12-27|1993-12-10|1994-01-02|COLLECT COD|TRUCK|fily furiously bold packages. Tir| +37996|712506|12507|3|37|56183.39|0.04|0.02|R|F|1993-12-27|1993-12-24|1994-01-08|DELIVER IN PERSON|RAIL|equests. even, silent requests cajole. exp| +37996|75864|867|4|8|14718.88|0.04|0.01|R|F|1993-12-26|1993-12-08|1993-12-29|NONE|SHIP|furiously. sometimes regular foxes upon t| +37997|840154|27703|1|19|20788.09|0.00|0.08|A|F|1992-06-02|1992-05-28|1992-06-16|TAKE BACK RETURN|REG AIR|g asymptotes. regular, even pinto bean| +37997|461431|11432|2|40|55696.40|0.10|0.07|R|F|1992-06-02|1992-05-11|1992-06-19|COLLECT COD|FOB|lithely final asymptotes | +37997|257828|7829|3|7|12500.67|0.05|0.01|R|F|1992-03-09|1992-05-07|1992-03-22|DELIVER IN PERSON|AIR|pinto beans sleep slyly quickly even pac| +37997|305572|5573|4|18|28396.08|0.07|0.03|R|F|1992-03-18|1992-04-19|1992-03-22|COLLECT COD|SHIP| final accou| +37997|742062|29605|5|35|38641.05|0.07|0.01|R|F|1992-04-28|1992-05-27|1992-05-07|DELIVER IN PERSON|MAIL|n instructions cajole| +37997|824326|36843|6|9|11252.52|0.03|0.01|R|F|1992-04-25|1992-05-02|1992-05-15|DELIVER IN PERSON|REG AIR|inal requests above the furiously ironi| +37997|435000|10017|7|29|27114.42|0.06|0.01|R|F|1992-03-10|1992-05-08|1992-03-20|COLLECT COD|TRUCK|riously final requests wake| +37998|39542|39543|1|4|5926.16|0.05|0.04|R|F|1994-11-11|1995-01-07|1994-11-25|TAKE BACK RETURN|TRUCK|ing deposits. regular requests detect! | +37998|574628|24629|2|48|81724.80|0.00|0.02|R|F|1994-12-13|1994-12-13|1994-12-30|NONE|TRUCK|d, special deposits. boldly final| +37998|761847|36878|3|17|32449.77|0.03|0.05|A|F|1995-01-15|1994-12-23|1995-01-21|COLLECT COD|MAIL|hely regular escapades sleep| +37998|346759|46760|4|1|1805.74|0.04|0.00|A|F|1995-02-11|1995-01-22|1995-03-07|TAKE BACK RETURN|FOB|ites affix carefully. quickly even | +37999|459198|46726|1|21|24300.57|0.06|0.08|R|F|1992-07-26|1992-07-28|1992-08-22|NONE|MAIL|sual packages promis| +37999|733119|8148|2|3|3456.24|0.10|0.05|A|F|1992-07-21|1992-06-03|1992-08-12|COLLECT COD|TRUCK|nusual theodolites cajole blithely | +37999|518114|30625|3|2|2264.18|0.10|0.00|A|F|1992-07-08|1992-06-10|1992-08-02|DELIVER IN PERSON|MAIL|e of the quickly ironic pinto beans. slyly | +37999|928394|40913|4|48|68272.80|0.06|0.07|A|F|1992-06-03|1992-07-19|1992-07-02|DELIVER IN PERSON|RAIL|timents. pinto beans to the regular| +37999|510649|48180|5|50|82981.00|0.04|0.08|A|F|1992-06-01|1992-06-16|1992-06-12|DELIVER IN PERSON|MAIL|ar requests. carefully ironi| +37999|467375|42394|6|27|36243.45|0.03|0.02|A|F|1992-08-03|1992-07-03|1992-08-16|DELIVER IN PERSON|MAIL|sts are among | +37999|157855|32862|7|9|17215.65|0.03|0.08|A|F|1992-05-10|1992-07-28|1992-05-19|TAKE BACK RETURN|REG AIR|ithely. quickly even | +38024|58450|8451|1|33|46478.85|0.00|0.05|A|F|1993-04-14|1993-03-31|1993-05-03|TAKE BACK RETURN|FOB|the furiously bold accounts. brave| +38024|368249|43264|2|35|46103.05|0.08|0.08|A|F|1993-03-30|1993-04-22|1993-04-23|NONE|FOB|lithely ag| +38025|528806|41317|1|49|89904.22|0.07|0.02|A|F|1992-12-26|1992-12-01|1993-01-08|NONE|TRUCK|ilent requests. permane| +38026|823329|23330|1|8|10018.24|0.10|0.07|R|F|1994-04-12|1994-05-12|1994-04-29|NONE|FOB|lphins are.| +38026|683126|33127|2|1|1109.09|0.05|0.04|A|F|1994-03-17|1994-04-11|1994-04-15|COLLECT COD|SHIP| bold deposits detect carefully fu| +38026|296289|21300|3|41|52696.07|0.09|0.05|R|F|1994-06-14|1994-05-01|1994-07-14|TAKE BACK RETURN|TRUCK|kages wake carefully. furiousl| +38026|718789|43818|4|7|12654.25|0.01|0.06|A|F|1994-04-24|1994-04-10|1994-05-08|COLLECT COD|FOB|even packages use at | +38026|673472|11012|5|26|37581.44|0.10|0.00|R|F|1994-03-09|1994-03-29|1994-04-08|DELIVER IN PERSON|REG AIR|. accounts x-ray carefully s| +38026|41113|16114|6|44|46380.84|0.02|0.02|A|F|1994-05-06|1994-04-09|1994-05-11|TAKE BACK RETURN|MAIL|blithely slyly even requests. care| +38026|973371|23372|7|13|18776.29|0.02|0.01|A|F|1994-03-30|1994-04-06|1994-04-15|DELIVER IN PERSON|AIR| furiously slyly ev| +38027|429681|4698|1|42|67647.72|0.09|0.06|A|F|1993-04-09|1993-02-23|1993-04-21|TAKE BACK RETURN|RAIL|ly ironic deposits wake quickly around| +38027|634395|9420|2|32|42539.52|0.08|0.07|A|F|1993-04-01|1993-02-11|1993-04-17|DELIVER IN PERSON|AIR| the pinto be| +38027|260289|22795|3|22|27483.94|0.01|0.03|A|F|1993-04-01|1993-03-09|1993-04-08|DELIVER IN PERSON|REG AIR|egrate across the regular deposits. blith| +38028|939117|14154|1|43|49711.01|0.06|0.04|A|F|1994-12-07|1994-09-10|1994-12-16|NONE|SHIP|press requests.| +38029|922048|47085|1|17|18190.00|0.01|0.06|R|F|1993-09-20|1993-09-29|1993-10-04|DELIVER IN PERSON|AIR|. blithely regular pac| +38029|847050|22083|2|26|25922.26|0.08|0.06|A|F|1993-11-25|1993-10-02|1993-12-24|COLLECT COD|AIR| are slyly bl| +38030|620884|33397|1|26|46926.10|0.00|0.04|N|O|1996-01-07|1996-02-08|1996-01-10|NONE|REG AIR| regular deposits. slyly express i| +38030|194112|6616|2|18|21709.98|0.05|0.02|N|O|1995-12-07|1996-01-23|1995-12-18|TAKE BACK RETURN|AIR|accounts a| +38031|932071|44590|1|46|50739.38|0.00|0.05|N|O|1996-10-17|1996-09-07|1996-10-30|NONE|TRUCK|kly unusual orbits along the care| +38031|306393|43912|2|32|44780.16|0.09|0.03|N|O|1996-10-16|1996-09-05|1996-11-05|TAKE BACK RETURN|REG AIR| deposits are evenly u| +38031|533431|8452|3|33|48325.53|0.07|0.07|N|O|1996-07-27|1996-08-08|1996-07-29|NONE|RAIL|y regular requests hang car| +38031|373845|36353|4|34|65240.22|0.04|0.02|N|O|1996-07-03|1996-08-25|1996-07-21|TAKE BACK RETURN|SHIP| express packages| +38031|198797|23804|5|37|70144.23|0.05|0.01|N|O|1996-10-03|1996-09-03|1996-10-18|NONE|SHIP|mes. furiously pending theodolites accordin| +38031|166563|4073|6|41|66811.96|0.04|0.03|N|O|1996-06-22|1996-08-26|1996-07-14|DELIVER IN PERSON|RAIL|cording to the final instructions. | +38031|419077|19078|7|27|26893.35|0.04|0.06|N|O|1996-09-23|1996-07-30|1996-09-28|TAKE BACK RETURN|MAIL|. final requests cajole silent| +38056|414341|1866|1|25|31383.00|0.02|0.08|N|O|1998-06-29|1998-06-28|1998-07-16|DELIVER IN PERSON|RAIL|counts sleep quietly of the dep| +38056|816980|29497|2|31|58805.14|0.09|0.03|N|O|1998-07-09|1998-08-02|1998-08-06|TAKE BACK RETURN|REG AIR| carefully specia| +38056|975684|25685|3|33|58068.12|0.10|0.06|N|O|1998-09-01|1998-08-02|1998-09-04|TAKE BACK RETURN|TRUCK|cial requests thrash slyly carefully| +38056|317595|30102|4|28|45152.24|0.02|0.03|N|O|1998-08-16|1998-07-09|1998-08-26|COLLECT COD|AIR|g. carefully unusual dolphins sleep.| +38057|229176|41681|1|21|23208.36|0.01|0.00|N|O|1996-04-05|1996-02-28|1996-04-17|DELIVER IN PERSON|SHIP|r requests mold furiously above the pendi| +38057|760686|23202|2|31|54146.15|0.07|0.01|N|O|1996-04-06|1996-04-13|1996-04-09|NONE|FOB|hely even foxes are. packages poach | +38057|839690|27239|3|39|63556.35|0.05|0.07|N|O|1996-05-02|1996-04-17|1996-05-04|TAKE BACK RETURN|AIR|asymptotes sleep among the furiously sp| +38057|667964|5504|4|20|38638.60|0.01|0.03|N|O|1996-04-15|1996-04-09|1996-04-26|DELIVER IN PERSON|RAIL| express foxes detect furiously against| +38057|454546|4547|5|9|13504.68|0.09|0.00|N|O|1996-03-15|1996-03-30|1996-04-07|COLLECT COD|TRUCK| final instruc| +38057|548152|35683|6|25|30003.25|0.06|0.01|N|O|1996-05-06|1996-03-15|1996-05-17|NONE|MAIL| special, close deposits after the | +38057|775293|37809|7|2|2736.52|0.03|0.07|N|O|1996-04-04|1996-04-23|1996-05-01|DELIVER IN PERSON|REG AIR|thely even ideas hinder furiously alon| +38058|340380|40381|1|40|56814.80|0.01|0.07|R|F|1994-03-06|1994-04-25|1994-03-27|COLLECT COD|RAIL|ly ironic ideas| +38058|753091|40637|2|16|18304.96|0.04|0.02|A|F|1994-02-27|1994-03-15|1994-03-13|DELIVER IN PERSON|FOB|ts shall detect slyly final packages. slow | +38058|198894|48895|3|8|15943.12|0.04|0.06|A|F|1994-03-27|1994-05-03|1994-04-08|COLLECT COD|MAIL| instructions. carefully final plate| +38059|862371|49923|1|20|26666.60|0.10|0.03|A|F|1992-11-11|1992-11-04|1992-11-30|DELIVER IN PERSON|REG AIR|. furiously re| +38059|861171|36206|2|39|44153.07|0.06|0.02|R|F|1992-08-29|1992-10-26|1992-09-16|NONE|AIR|gular accounts. waters wa| +38059|689823|2337|3|8|14502.32|0.09|0.08|A|F|1992-10-25|1992-11-11|1992-10-29|TAKE BACK RETURN|AIR|ecial courts: sl| +38059|850788|25823|4|42|73027.08|0.04|0.05|A|F|1992-10-22|1992-11-02|1992-10-31|COLLECT COD|TRUCK| special theodolites haggle among the slyly| +38059|184391|21901|5|39|57540.21|0.06|0.07|R|F|1992-10-31|1992-11-03|1992-11-08|COLLECT COD|SHIP| platelets. express, t| +38059|56327|6328|6|13|16683.16|0.04|0.00|A|F|1992-11-27|1992-10-06|1992-12-07|COLLECT COD|TRUCK|foxes run. blithely pendin| +38059|687613|25153|7|27|43215.66|0.09|0.01|R|F|1992-09-27|1992-11-02|1992-10-07|TAKE BACK RETURN|RAIL|od fluffily fluffily f| +38060|696016|8530|1|3|3035.94|0.03|0.07|R|F|1994-06-17|1994-04-07|1994-07-02|NONE|SHIP|mptotes. regular, special foxes| +38060|925103|140|2|21|23689.26|0.10|0.08|R|F|1994-05-10|1994-04-06|1994-05-31|NONE|TRUCK|ckages. blithely regular | +38060|195029|45030|3|49|55076.98|0.05|0.05|A|F|1994-03-12|1994-04-07|1994-04-09|DELIVER IN PERSON|TRUCK|yly. regular accounts are carefully bold p| +38060|848371|23404|4|41|54092.53|0.07|0.03|A|F|1994-04-22|1994-04-14|1994-05-16|DELIVER IN PERSON|SHIP|ar dependencies cajo| +38060|570168|7702|5|1|1238.14|0.09|0.04|R|F|1994-06-19|1994-04-22|1994-07-04|COLLECT COD|TRUCK|egular accounts across | +38060|806235|43784|6|39|44506.41|0.00|0.02|R|F|1994-03-23|1994-04-03|1994-04-10|NONE|SHIP|en foxes. expre| +38060|383771|8786|7|14|25966.64|0.06|0.01|A|F|1994-03-28|1994-04-22|1994-04-11|TAKE BACK RETURN|RAIL|egular packages sleep quickly atop the quic| +38061|32211|32212|1|1|1143.21|0.08|0.02|N|O|1998-03-14|1998-02-07|1998-03-26|DELIVER IN PERSON|FOB|usual dependencies. | +38061|361138|36153|2|35|41969.20|0.06|0.03|N|O|1998-01-04|1998-01-23|1998-01-29|COLLECT COD|RAIL|s engage. slyly express pe| +38062|283268|45774|1|14|17517.50|0.03|0.01|R|F|1994-12-27|1995-02-27|1995-01-26|COLLECT COD|FOB| deposits across the care| +38062|884598|9633|2|19|30068.45|0.07|0.01|A|F|1995-04-19|1995-03-11|1995-05-13|COLLECT COD|REG AIR|quickly special deposits wake c| +38062|426986|2003|3|20|38259.20|0.06|0.03|A|F|1994-12-24|1995-02-21|1995-01-03|NONE|RAIL| above the regular instruc| +38062|353683|16191|4|41|71203.47|0.08|0.01|R|F|1995-01-23|1995-02-27|1995-01-28|NONE|TRUCK|furiously ironic pin| +38062|340941|15954|5|10|19819.30|0.03|0.06|R|F|1995-01-18|1995-01-27|1995-02-04|COLLECT COD|REG AIR|round the un| +38063|254159|29170|1|8|8905.12|0.00|0.08|N|O|1995-07-21|1995-05-20|1995-08-16|TAKE BACK RETURN|RAIL|excuses impress iron| +38063|639245|26782|2|13|15394.73|0.04|0.06|A|F|1995-05-17|1995-07-04|1995-05-23|DELIVER IN PERSON|TRUCK|l requests. slyly final e| +38063|784870|22416|3|40|78193.60|0.09|0.00|R|F|1995-05-17|1995-05-10|1995-06-07|COLLECT COD|AIR|sly regular excuses. furiously pen| +38088|23219|48220|1|31|35408.51|0.07|0.03|R|F|1993-01-18|1992-11-29|1993-01-22|COLLECT COD|AIR|ll doubt slyly. | +38088|225409|25410|2|31|41366.09|0.10|0.04|A|F|1992-10-21|1992-12-30|1992-11-09|TAKE BACK RETURN|SHIP|egular grouches. fluffily d| +38088|445053|32578|3|5|4990.15|0.08|0.06|A|F|1993-01-12|1992-12-19|1993-02-07|NONE|MAIL|lyly brave pinto beans sleep blithely accor| +38088|3638|28639|4|20|30832.60|0.00|0.02|R|F|1993-01-22|1992-11-03|1993-01-27|COLLECT COD|SHIP|s must wake deposits. pl| +38088|142798|5301|5|25|46019.75|0.03|0.06|R|F|1992-11-09|1992-12-30|1992-11-28|DELIVER IN PERSON|FOB|le quickly regular packages; carefully p| +38089|418490|6015|1|33|46479.51|0.08|0.01|A|F|1994-01-13|1994-02-26|1994-01-27|TAKE BACK RETURN|SHIP|. blithely ironic deposits | +38090|81701|6704|1|29|48798.30|0.06|0.02|R|F|1994-01-21|1993-12-26|1994-01-24|DELIVER IN PERSON|MAIL|forges above the slyly regul| +38090|139892|39893|2|15|28978.35|0.02|0.06|R|F|1994-02-06|1993-12-26|1994-02-20|COLLECT COD|RAIL|nic dolphins. even requests against the ca| +38090|148657|48658|3|47|80165.55|0.02|0.03|A|F|1994-01-07|1993-12-13|1994-01-25|NONE|FOB|e slowly: special, ironic deposits sle| +38090|467434|42453|4|43|60260.63|0.04|0.04|A|F|1993-11-20|1993-12-10|1993-12-16|TAKE BACK RETURN|AIR|ckages. ironic, bold dep| +38090|158777|21281|5|39|71595.03|0.06|0.08|R|F|1994-02-05|1993-12-26|1994-02-21|NONE|SHIP|y express instructions shall | +38090|557714|32737|6|23|40748.87|0.08|0.00|R|F|1994-02-22|1994-01-15|1994-03-10|COLLECT COD|MAIL| ironic accounts sleep | +38090|488510|13529|7|1|1498.49|0.08|0.01|R|F|1994-02-24|1994-02-01|1994-03-01|DELIVER IN PERSON|TRUCK|carefully a| +38091|379240|16762|1|10|13192.30|0.01|0.07|R|F|1994-12-01|1994-12-10|1994-12-21|DELIVER IN PERSON|REG AIR|arefully above the special, bold exc| +38091|880699|18251|2|12|20155.80|0.03|0.04|R|F|1994-11-23|1994-12-21|1994-12-22|TAKE BACK RETURN|RAIL|he furiously even excu| +38091|897971|47972|3|31|61036.83|0.05|0.04|A|F|1994-11-19|1994-12-27|1994-11-30|DELIVER IN PERSON|RAIL|! platelets according to the| +38091|184228|9235|4|6|7873.32|0.03|0.08|A|F|1995-01-01|1995-01-01|1995-01-25|NONE|AIR|as around the even,| +38091|319000|31507|5|27|27512.73|0.02|0.04|R|F|1995-01-28|1995-01-06|1995-02-14|TAKE BACK RETURN|REG AIR| carefully final excuse| +38091|425445|462|6|40|54816.80|0.07|0.03|A|F|1995-02-14|1995-01-03|1995-03-09|TAKE BACK RETURN|RAIL| deposits. fluffily ironic | +38092|830912|5945|1|47|86614.89|0.04|0.08|R|F|1992-05-11|1992-03-12|1992-05-12|TAKE BACK RETURN|SHIP|sly even deposits nag acr| +38093|825022|25023|1|45|42614.10|0.06|0.01|A|F|1994-11-30|1995-02-01|1994-12-15|TAKE BACK RETURN|RAIL|tructions nag careful| +38093|129779|29780|2|39|70542.03|0.09|0.02|R|F|1995-02-18|1995-01-02|1995-02-24|TAKE BACK RETURN|RAIL|ar instructi| +38093|194071|31581|3|10|11650.70|0.01|0.06|A|F|1994-11-19|1995-02-03|1994-12-12|TAKE BACK RETURN|REG AIR|ronic frays. even, rut| +38093|739872|2387|4|20|38236.80|0.07|0.03|R|F|1995-01-10|1995-02-09|1995-01-20|DELIVER IN PERSON|TRUCK|es. final patterns sleep. fi| +38093|22327|9828|5|21|26235.72|0.07|0.01|A|F|1994-11-27|1994-12-17|1994-12-24|TAKE BACK RETURN|SHIP|uriously along the carefully| +38093|241512|29025|6|41|59593.50|0.07|0.05|R|F|1994-12-11|1995-01-08|1994-12-31|DELIVER IN PERSON|RAIL|its? carefully idle wartho| +38093|88142|644|7|1|1130.14|0.04|0.08|R|F|1994-12-17|1995-01-12|1995-01-09|DELIVER IN PERSON|AIR|ular, unusual accounts wak| +38094|390083|15098|1|21|24634.47|0.05|0.03|A|F|1994-05-07|1994-04-03|1994-05-26|COLLECT COD|SHIP| accounts wake sly| +38094|119225|6732|2|12|14930.64|0.04|0.08|A|F|1994-04-27|1994-04-10|1994-05-20|TAKE BACK RETURN|SHIP| blithely unusual accounts sleep after t| +38094|813215|38248|3|13|14666.21|0.04|0.02|A|F|1994-05-09|1994-05-09|1994-05-15|COLLECT COD|TRUCK|quickly bold | +38094|698972|48973|4|23|45331.62|0.04|0.00|A|F|1994-05-11|1994-05-10|1994-05-17|NONE|AIR|ts after the quickly pe| +38095|846122|33671|1|41|43791.28|0.09|0.05|A|F|1994-02-13|1994-02-09|1994-02-16|DELIVER IN PERSON|SHIP|ously even| +38095|756408|31439|2|49|71754.13|0.02|0.05|R|F|1994-02-01|1994-03-29|1994-02-15|NONE|AIR|the carefully unusual instructions dazzle | +38095|933647|21202|3|25|42015.00|0.10|0.08|A|F|1994-04-13|1994-03-08|1994-04-30|TAKE BACK RETURN|REG AIR|cross the express requests haggle | +38095|798739|36285|4|40|73508.00|0.10|0.03|A|F|1994-04-26|1994-04-01|1994-05-11|TAKE BACK RETURN|REG AIR|long the pendi| +38120|125643|648|1|50|83432.00|0.07|0.07|R|F|1995-03-27|1995-03-11|1995-04-09|DELIVER IN PERSON|SHIP|to the carefully furious instructions sleep| +38121|297612|22623|1|50|80480.00|0.09|0.00|N|O|1996-02-18|1996-03-27|1996-03-18|DELIVER IN PERSON|TRUCK|deposits sleep fur| +38122|743529|43530|1|1|1572.49|0.10|0.06|N|O|1997-02-01|1997-01-23|1997-02-26|NONE|AIR|y even deposits. si| +38122|484558|34559|2|32|49360.96|0.02|0.07|N|O|1997-04-02|1997-02-01|1997-04-24|NONE|AIR|ing packages a| +38122|956265|31304|3|47|62097.34|0.09|0.08|N|O|1997-02-24|1997-03-13|1997-03-10|NONE|FOB|ess instructions. furiousl| +38123|608099|8100|1|41|41289.46|0.04|0.04|R|F|1993-09-17|1993-09-24|1993-10-01|NONE|SHIP|ts are. ironic packages are blithely. | +38123|306227|6228|2|15|18498.15|0.07|0.06|R|F|1993-11-19|1993-10-10|1993-11-23|TAKE BACK RETURN|REG AIR|nic requests cajole quickly along the furi| +38123|742861|30404|3|15|28557.45|0.01|0.07|R|F|1993-09-27|1993-09-25|1993-09-29|NONE|SHIP|y furiously slow braids. silent depos| +38124|326864|26865|1|49|92651.65|0.09|0.08|N|O|1997-02-02|1996-12-20|1997-02-28|NONE|TRUCK|its cajole fluffi| +38124|588623|13646|2|2|3423.20|0.09|0.08|N|O|1997-02-19|1996-12-10|1997-03-04|DELIVER IN PERSON|AIR|e even, silent asymptotes are | +38124|972238|34758|3|44|57648.36|0.06|0.05|N|O|1997-02-07|1997-01-09|1997-02-13|DELIVER IN PERSON|SHIP| accounts wake quickly for | +38124|391130|41131|4|47|57392.64|0.10|0.02|N|O|1996-12-06|1996-12-13|1996-12-29|TAKE BACK RETURN|MAIL| deposits-- blithely even| +38124|706353|43896|5|13|17671.16|0.05|0.08|N|O|1996-11-15|1996-12-15|1996-12-02|COLLECT COD|MAIL|even deposits | +38124|663832|26346|6|24|43099.20|0.06|0.08|N|O|1997-01-09|1997-01-29|1997-01-17|NONE|AIR|ding to the carefully final acco| +38125|225367|12880|1|21|27139.35|0.02|0.00|R|F|1992-05-07|1992-04-22|1992-05-16|NONE|AIR|unusual frets | +38125|728956|28957|2|10|19849.20|0.09|0.03|A|F|1992-05-02|1992-04-22|1992-05-25|NONE|AIR|ests are slyly around the pending packag| +38125|559099|46633|3|4|4632.28|0.03|0.01|A|F|1992-03-06|1992-03-17|1992-03-31|NONE|FOB| poach quickly express| +38125|767028|29544|4|8|8759.92|0.05|0.06|A|F|1992-04-18|1992-04-21|1992-05-05|COLLECT COD|AIR|regular accou| +38125|430160|30161|5|2|2180.28|0.02|0.03|R|F|1992-04-01|1992-04-24|1992-04-09|COLLECT COD|MAIL|ckages. evenly even a| +38125|682876|20416|6|17|31600.28|0.05|0.08|R|F|1992-05-01|1992-03-24|1992-05-09|NONE|AIR| carefully dari| +38126|72170|34672|1|42|47971.14|0.08|0.02|N|O|1996-03-01|1996-04-30|1996-03-12|DELIVER IN PERSON|REG AIR|ss quickly. furiously final ideas are pe| +38126|954039|29078|2|21|22952.79|0.00|0.07|N|O|1996-06-03|1996-04-20|1996-06-09|TAKE BACK RETURN|SHIP|lyly even ideas cajole furiousl| +38127|860922|23440|1|11|20711.68|0.06|0.02|N|O|1997-07-11|1997-05-31|1997-07-13|COLLECT COD|AIR|jole about the regular packages. re| +38127|515974|15975|2|30|59698.50|0.08|0.06|N|O|1997-06-28|1997-06-08|1997-07-12|TAKE BACK RETURN|AIR|ests cajole furiously above the carefu| +38127|959144|9145|3|41|49327.10|0.02|0.08|N|O|1997-07-25|1997-05-21|1997-07-27|DELIVER IN PERSON|RAIL|odolites are furiously carefully expr| +38127|332433|32434|4|10|14654.20|0.03|0.02|N|O|1997-06-13|1997-05-10|1997-06-15|NONE|FOB| slyly ironic deposits detect alongsid| +38152|749008|49009|1|13|13740.61|0.06|0.02|R|F|1994-04-04|1994-05-24|1994-05-04|NONE|TRUCK|s wake abo| +38152|568335|30847|2|6|8419.86|0.08|0.06|R|F|1994-04-28|1994-05-16|1994-05-09|DELIVER IN PERSON|SHIP|ely. quick pac| +38152|999360|24399|3|31|45238.92|0.00|0.08|A|F|1994-05-27|1994-05-28|1994-06-03|TAKE BACK RETURN|RAIL|y unusual dep| +38152|240605|40606|4|24|37094.16|0.10|0.00|R|F|1994-04-02|1994-06-05|1994-04-11|TAKE BACK RETURN|AIR|ependencies are carefu| +38153|847161|47162|1|16|17729.92|0.00|0.08|N|O|1995-11-02|1995-09-18|1995-11-30|COLLECT COD|SHIP|s? blithely regular ideas above| +38153|231086|43591|2|19|19324.33|0.09|0.05|N|O|1995-11-25|1995-11-01|1995-12-11|DELIVER IN PERSON|REG AIR|ously slyl| +38153|849324|24357|3|25|31832.00|0.01|0.04|N|O|1995-10-05|1995-10-09|1995-10-11|DELIVER IN PERSON|REG AIR|thely! pinto beans cajole never. bl| +38154|109504|22007|1|45|68107.50|0.05|0.08|R|F|1993-07-28|1993-07-04|1993-08-05|NONE|MAIL|ding requests integrate quickly. reg| +38154|418848|31357|2|32|56538.24|0.07|0.00|A|F|1993-07-16|1993-07-26|1993-07-20|TAKE BACK RETURN|MAIL|osits sleep slyly| +38155|733137|20680|1|45|52654.50|0.00|0.08|A|F|1993-01-23|1993-04-04|1993-01-26|TAKE BACK RETURN|REG AIR|asymptotes about the care| +38155|831865|31866|2|44|79060.08|0.06|0.07|R|F|1993-04-11|1993-03-20|1993-04-13|COLLECT COD|MAIL|o beans dazzle blithely among the car| +38155|146783|46784|3|19|34765.82|0.10|0.01|R|F|1993-04-21|1993-02-11|1993-04-23|DELIVER IN PERSON|FOB|regular theodolites int| +38155|972410|9968|4|6|8894.22|0.10|0.01|R|F|1993-01-12|1993-03-25|1993-01-19|DELIVER IN PERSON|FOB| boost carefully about | +38155|292513|17524|5|33|49681.50|0.08|0.02|A|F|1993-04-29|1993-03-23|1993-05-27|TAKE BACK RETURN|AIR|y final sheaves. forg| +38155|263635|13636|6|30|47958.60|0.06|0.02|A|F|1993-03-07|1993-03-06|1993-03-20|TAKE BACK RETURN|TRUCK| final requ| +38155|913271|826|7|34|43663.82|0.07|0.03|R|F|1993-03-25|1993-02-19|1993-04-14|DELIVER IN PERSON|AIR|s nod quickly among the regular, unusual | +38156|339869|39870|1|28|53447.80|0.02|0.03|R|F|1994-01-04|1994-01-25|1994-01-12|DELIVER IN PERSON|FOB|counts-- furiously regular Tiresias s| +38156|162853|37860|2|41|78549.85|0.02|0.00|A|F|1994-03-03|1994-03-02|1994-03-10|COLLECT COD|REG AIR|es. ironic asymptotes ha| +38156|59553|47057|3|15|22688.25|0.00|0.01|R|F|1994-03-23|1994-01-24|1994-03-28|COLLECT COD|RAIL| ironic requests. b| +38156|892177|4695|4|8|9353.04|0.04|0.07|R|F|1993-12-28|1994-01-18|1994-01-24|NONE|TRUCK|y regular, iron| +38156|816001|16002|5|19|17422.24|0.08|0.01|R|F|1994-03-12|1994-03-15|1994-04-10|DELIVER IN PERSON|TRUCK| slyly silent | +38156|514435|26946|6|16|23190.56|0.01|0.08|R|F|1994-01-13|1994-02-17|1994-02-05|NONE|FOB|ously regular requests wake blith| +38157|597525|47526|1|31|50297.50|0.00|0.08|R|F|1994-02-12|1994-02-16|1994-03-02|TAKE BACK RETURN|REG AIR|e ironic, d| +38157|590207|27741|2|46|59670.28|0.10|0.08|R|F|1994-03-04|1994-03-02|1994-03-05|NONE|MAIL|ent requests atop the fluffily r| +38157|596184|33718|3|2|2560.32|0.02|0.01|R|F|1994-03-14|1994-03-29|1994-03-17|DELIVER IN PERSON|TRUCK|use slyly. platelets haggle slyl| +38158|278356|28357|1|17|22683.78|0.05|0.03|N|O|1996-03-08|1996-03-30|1996-03-21|COLLECT COD|AIR|ts. slyly final in| +38158|327555|27556|2|11|17407.94|0.03|0.06|N|O|1996-02-02|1996-04-09|1996-02-07|DELIVER IN PERSON|SHIP|wake blithely quickly even instructions.| +38158|203424|15929|3|17|22565.97|0.06|0.04|N|O|1996-01-31|1996-03-31|1996-02-11|NONE|REG AIR|e. special orbits accor| +38158|942109|4628|4|40|46042.40|0.01|0.08|N|O|1996-02-21|1996-04-16|1996-02-29|TAKE BACK RETURN|AIR|carefully bold | +38158|25586|25587|5|24|36277.92|0.08|0.08|N|O|1996-03-17|1996-03-13|1996-04-16|TAKE BACK RETURN|SHIP|kly bold instructions. ironic requests | +38158|21135|8636|6|34|35908.42|0.06|0.03|N|O|1996-05-21|1996-03-13|1996-06-17|NONE|SHIP|y even dependenc| +38159|591674|29208|1|8|14125.20|0.10|0.05|N|O|1997-10-22|1997-12-06|1997-10-23|TAKE BACK RETURN|AIR|requests. final, ironic requests are| +38159|258506|46022|2|25|36612.25|0.08|0.07|N|O|1997-09-26|1997-10-07|1997-09-28|TAKE BACK RETURN|MAIL|n sentiments nag slyly quickly regular| +38159|700672|25701|3|2|3345.28|0.00|0.08|N|O|1997-09-29|1997-10-22|1997-10-09|DELIVER IN PERSON|AIR|usly regular excuses cajo| +38159|183145|8152|4|29|35616.06|0.00|0.07|N|O|1997-12-28|1997-12-03|1998-01-01|COLLECT COD|REG AIR|rding to the carefully ironic pinto beans.| +38159|106178|31183|5|17|20130.89|0.06|0.02|N|O|1997-11-14|1997-12-02|1997-12-13|DELIVER IN PERSON|RAIL|furiously furiously unusual dependencies. q| +38159|523279|10810|6|16|20836.00|0.05|0.01|N|O|1997-11-07|1997-11-26|1997-11-30|COLLECT COD|REG AIR| alongside of the q| +38184|522411|34922|1|40|57335.60|0.01|0.08|R|F|1992-02-27|1992-03-07|1992-03-01|NONE|RAIL|furiously even a| +38184|158519|21023|2|20|31550.20|0.09|0.00|R|F|1992-04-25|1992-03-06|1992-05-04|NONE|AIR|ses maintain across the foxes. instructio| +38184|228143|3152|3|36|38560.68|0.00|0.08|R|F|1992-04-03|1992-04-05|1992-05-01|DELIVER IN PERSON|SHIP|fter the slyly special requests.| +38184|389496|14511|4|5|7927.40|0.04|0.05|R|F|1992-02-17|1992-04-10|1992-03-14|DELIVER IN PERSON|FOB|d packages det| +38185|305474|5475|1|22|32548.12|0.02|0.01|R|F|1992-09-09|1992-08-17|1992-10-09|DELIVER IN PERSON|RAIL|d after the blithely quiet accou| +38186|863969|13970|1|21|40591.32|0.08|0.05|N|O|1998-06-20|1998-06-03|1998-07-14|COLLECT COD|TRUCK|are final instructions. carefully expres| +38186|724197|24198|2|41|50067.56|0.03|0.08|N|O|1998-06-20|1998-05-14|1998-07-11|TAKE BACK RETURN|FOB|ackages. furiously | +38186|573863|36375|3|30|58105.20|0.07|0.07|N|O|1998-05-22|1998-06-03|1998-05-24|NONE|RAIL|ajole quickly in| +38186|912952|25471|4|15|29473.65|0.05|0.08|N|O|1998-03-20|1998-05-19|1998-04-18|TAKE BACK RETURN|RAIL|uriously fina| +38186|972302|9860|5|13|17865.38|0.01|0.04|N|O|1998-03-16|1998-06-06|1998-03-29|DELIVER IN PERSON|RAIL|osits. even acco| +38187|413550|13551|1|31|45369.43|0.03|0.05|N|O|1995-12-27|1995-11-30|1996-01-21|NONE|RAIL|uctions are slyly| +38187|528799|41310|2|49|89560.73|0.08|0.05|N|O|1995-09-07|1995-11-24|1995-09-13|NONE|MAIL|regular, express packages. c| +38187|516716|16717|3|2|3465.38|0.03|0.03|N|O|1995-12-06|1995-10-25|1995-12-20|DELIVER IN PERSON|MAIL|s. blithely final idea| +38187|442383|29908|4|20|26507.20|0.05|0.00|N|O|1995-12-11|1995-11-21|1995-12-31|NONE|AIR|ptotes. quickly stealthy pinto beans| +38187|129890|4895|5|28|53756.92|0.02|0.02|N|O|1995-11-30|1995-10-04|1995-12-11|DELIVER IN PERSON|MAIL|hins solve furiousl| +38187|56895|44399|6|20|37037.80|0.08|0.03|N|O|1995-10-23|1995-10-26|1995-10-26|COLLECT COD|AIR|rnis engage blithely according to | +38188|445511|33036|1|19|27673.31|0.05|0.04|A|F|1995-03-07|1995-05-24|1995-03-30|NONE|TRUCK|bout the furiously ironic ideas | +38188|687263|24803|2|43|53759.89|0.06|0.08|R|F|1995-04-13|1995-04-20|1995-05-05|COLLECT COD|REG AIR| fluffily r| +38188|813223|25740|3|23|26132.14|0.08|0.02|A|F|1995-05-15|1995-05-23|1995-06-11|NONE|AIR|ieve. unusual accounts haggle fluffily| +38188|836654|11687|4|22|34993.42|0.07|0.05|R|F|1995-04-14|1995-04-29|1995-04-28|NONE|REG AIR|ding multiplier| +38188|631732|44245|5|45|74866.50|0.00|0.07|R|F|1995-03-30|1995-04-25|1995-04-21|NONE|MAIL|ly alongside of the ideas. fu| +38188|514259|1790|6|44|56022.12|0.03|0.04|R|F|1995-03-23|1995-04-23|1995-04-04|COLLECT COD|MAIL|ly around the blithely regular theod| +38189|287362|12373|1|8|10794.80|0.09|0.07|N|O|1997-09-25|1997-12-17|1997-10-18|NONE|FOB|after the sile| +38190|698460|36000|1|36|52503.48|0.01|0.00|R|F|1993-06-22|1993-07-28|1993-07-11|COLLECT COD|REG AIR|lthily across the ironic depos| +38191|345740|8247|1|15|26785.95|0.10|0.07|N|O|1998-08-27|1998-09-25|1998-09-23|COLLECT COD|MAIL|riously careful sheaves boost among| +38216|474584|24585|1|5|7792.80|0.10|0.08|R|F|1994-03-17|1994-02-20|1994-03-24|COLLECT COD|MAIL|dolphins wake despit| +38216|330916|5929|2|49|95398.10|0.00|0.01|A|F|1994-04-08|1994-01-26|1994-04-29|TAKE BACK RETURN|REG AIR|ily even inst| +38216|698650|23677|3|45|74187.90|0.01|0.05|R|F|1994-02-15|1994-02-01|1994-03-11|COLLECT COD|FOB|special instr| +38216|199617|12121|4|11|18882.71|0.01|0.01|A|F|1994-03-22|1994-03-08|1994-04-17|DELIVER IN PERSON|FOB|t the ironic| +38216|958645|8646|5|43|73254.80|0.01|0.05|A|F|1994-02-03|1994-02-13|1994-03-02|COLLECT COD|AIR|arefully bold multipliers sleep carefull| +38217|681163|43677|1|18|20594.34|0.03|0.06|N|O|1998-02-04|1998-03-22|1998-03-04|NONE|FOB|o beans. bold| +38218|364759|14760|1|19|34651.06|0.03|0.04|N|O|1997-02-09|1997-02-23|1997-03-02|TAKE BACK RETURN|AIR|s? quickly r| +38218|496698|34226|2|34|57618.78|0.09|0.08|N|O|1996-12-12|1997-02-08|1997-01-07|TAKE BACK RETURN|FOB|xes cajole along the pending pack| +38218|996873|34431|3|16|31517.28|0.08|0.02|N|O|1997-03-08|1997-01-13|1997-03-30|COLLECT COD|MAIL|st the furi| +38218|432900|20425|4|11|20161.68|0.09|0.06|N|O|1997-03-24|1997-01-23|1997-04-01|TAKE BACK RETURN|REG AIR|ole furiously ironic, regular p| +38218|742202|29745|5|23|28615.91|0.02|0.01|N|O|1997-02-13|1997-02-07|1997-02-14|COLLECT COD|TRUCK|s. pending accounts wake carefully at the | +38218|178599|16109|6|48|80524.32|0.03|0.04|N|O|1997-02-28|1997-01-30|1997-03-30|DELIVER IN PERSON|MAIL|ts sleep blithely. asymptotes a| +38218|711665|36694|7|5|8383.15|0.09|0.03|N|O|1996-12-24|1997-02-19|1997-01-10|TAKE BACK RETURN|REG AIR|ymptotes. si| +38219|943327|43328|1|26|35627.28|0.04|0.04|R|F|1993-06-24|1993-05-28|1993-07-22|COLLECT COD|TRUCK| deposits. slyly pending acc| +38219|496762|34290|2|37|65073.38|0.01|0.08|A|F|1993-06-19|1993-05-23|1993-07-19|DELIVER IN PERSON|TRUCK|e after the blithely ex| +38219|72834|10338|3|26|46977.58|0.02|0.02|A|F|1993-07-08|1993-06-21|1993-07-16|DELIVER IN PERSON|AIR|slyly pending dolphins cajole.| +38219|116476|16477|4|16|23879.52|0.02|0.03|R|F|1993-05-22|1993-05-24|1993-06-14|NONE|AIR| carefully bold acc| +38219|606292|43829|5|34|40740.84|0.02|0.01|A|F|1993-07-30|1993-06-29|1993-08-06|COLLECT COD|RAIL|refully slyly| +38220|233305|8314|1|20|24765.80|0.06|0.07|N|O|1996-09-12|1996-07-28|1996-10-11|NONE|RAIL|cial foxes. s| +38221|518123|30634|1|9|10269.90|0.04|0.06|N|O|1997-07-11|1997-07-18|1997-08-08|NONE|AIR|ole. quickly dari| +38222|922095|9650|1|13|14521.65|0.00|0.03|N|O|1997-05-07|1997-07-10|1997-05-08|COLLECT COD|AIR|s affix above the| +38222|637020|37021|2|10|9569.90|0.08|0.05|N|O|1997-07-29|1997-06-06|1997-08-16|COLLECT COD|SHIP|press deposits. slyly final sentim| +38222|393091|18106|3|20|23681.60|0.05|0.04|N|O|1997-04-25|1997-07-05|1997-04-29|NONE|TRUCK|foxes cajole furiously agains| +38222|679817|42331|4|30|53903.40|0.07|0.03|N|O|1997-06-04|1997-07-21|1997-07-04|DELIVER IN PERSON|SHIP|o the even requests cajole | +38222|675965|25966|5|43|83459.99|0.00|0.08|N|O|1997-08-23|1997-06-10|1997-08-31|COLLECT COD|SHIP| sentiments. ironic theodolites are car| +38223|163311|13312|1|28|38480.68|0.08|0.08|N|O|1996-07-31|1996-08-19|1996-08-22|COLLECT COD|FOB|. blithely ironic instructions are furious| +38223|762038|24554|2|14|15400.00|0.10|0.04|N|O|1996-09-20|1996-07-28|1996-09-21|NONE|AIR|n packages cajole.| +38223|568672|43695|3|44|76588.60|0.05|0.06|N|O|1996-07-15|1996-08-15|1996-07-25|DELIVER IN PERSON|FOB|iously. furiou| +38248|537191|12212|1|45|55267.65|0.09|0.03|A|F|1993-03-11|1993-02-26|1993-03-29|COLLECT COD|MAIL|luffily packages.| +38248|563449|983|2|42|63521.64|0.09|0.08|A|F|1993-04-10|1993-02-27|1993-04-26|TAKE BACK RETURN|RAIL|ackages maintain carefully: slyly spe| +38248|881846|19398|3|35|63973.00|0.04|0.05|A|F|1993-01-28|1993-03-24|1993-02-20|TAKE BACK RETURN|REG AIR| alongside of the s| +38249|196145|8649|1|38|47163.32|0.01|0.06|A|F|1992-05-01|1992-04-04|1992-05-12|DELIVER IN PERSON|MAIL|ly express accounts wake | +38249|594248|19271|2|19|25502.18|0.00|0.06|R|F|1992-03-15|1992-05-20|1992-03-19|NONE|REG AIR|usly regular accounts sleep slyly behind| +38249|511084|48615|3|9|9855.54|0.07|0.01|A|F|1992-05-18|1992-05-24|1992-06-15|TAKE BACK RETURN|SHIP|regularly final dinos are slyl| +38249|786063|48579|4|1|1149.03|0.09|0.04|A|F|1992-06-22|1992-04-06|1992-07-09|DELIVER IN PERSON|TRUCK|s against the packages boost quickly across| +38249|352757|27772|5|9|16287.66|0.09|0.05|A|F|1992-04-13|1992-05-10|1992-04-18|DELIVER IN PERSON|AIR|t alongside of the even id| +38249|774605|37121|6|2|3359.14|0.09|0.06|A|F|1992-05-05|1992-04-22|1992-05-21|TAKE BACK RETURN|RAIL|. slyly pe| +38249|783415|33416|7|49|73420.62|0.03|0.07|R|F|1992-05-01|1992-04-13|1992-05-16|COLLECT COD|TRUCK|ounts dazzle carefully brave ac| +38250|847474|9991|1|12|17057.16|0.09|0.00|N|O|1996-05-03|1996-05-30|1996-05-05|NONE|MAIL|s against the p| +38250|487768|25296|2|47|82519.78|0.08|0.05|N|O|1996-04-02|1996-04-29|1996-04-22|DELIVER IN PERSON|MAIL|e carefully e| +38250|914722|14723|3|20|34733.60|0.03|0.03|N|O|1996-07-05|1996-04-25|1996-07-13|NONE|SHIP|otes promise blithely. packages acc| +38250|721631|9174|4|19|31399.40|0.05|0.07|N|O|1996-04-23|1996-04-16|1996-05-22|NONE|SHIP|ress, express ideas against the re| +38250|438078|587|5|20|20321.00|0.02|0.02|N|O|1996-04-04|1996-05-14|1996-04-07|NONE|SHIP|ggle across th| +38251|237564|37565|1|23|34535.65|0.00|0.04|A|F|1993-10-13|1993-09-24|1993-11-09|COLLECT COD|TRUCK|ajole furiously carefully even id| +38251|731174|6203|2|8|9641.12|0.04|0.04|A|F|1993-08-16|1993-09-11|1993-08-29|COLLECT COD|AIR|ully special dep| +38252|540611|40612|1|22|36334.98|0.04|0.05|R|F|1994-01-27|1993-12-04|1994-02-04|COLLECT COD|FOB|equests grow furiously accordin| +38252|34044|21545|2|15|14670.60|0.05|0.02|R|F|1993-11-29|1994-01-15|1993-12-19|COLLECT COD|TRUCK|ronic pinto beans alongside| +38252|167739|42746|3|37|66849.01|0.07|0.03|A|F|1993-12-17|1994-01-10|1994-01-05|COLLECT COD|SHIP|reach according to the accounts. blithely s| +38252|181168|31169|4|23|28730.68|0.01|0.00|A|F|1993-12-17|1993-12-02|1993-12-21|NONE|SHIP|ts wake slyly special, express | +38252|879358|4393|5|4|5349.24|0.04|0.00|A|F|1993-12-24|1993-12-03|1994-01-16|TAKE BACK RETURN|RAIL|te requests. carefully final realm| +38253|221931|46940|1|41|75969.72|0.07|0.01|A|F|1992-07-05|1992-07-02|1992-08-04|TAKE BACK RETURN|REG AIR|mptotes are carefully about the furio| +38253|983155|20713|2|12|14857.32|0.04|0.04|A|F|1992-07-05|1992-06-19|1992-07-25|DELIVER IN PERSON|RAIL|kly express p| +38253|878424|15976|3|41|57497.58|0.02|0.01|A|F|1992-07-05|1992-07-12|1992-07-24|TAKE BACK RETURN|TRUCK| haggle car| +38253|659536|47076|4|6|8973.00|0.06|0.03|A|F|1992-09-01|1992-08-03|1992-09-23|COLLECT COD|AIR|al packages affix carefully regular| +38253|808180|20697|5|12|13057.68|0.07|0.02|R|F|1992-07-29|1992-06-21|1992-08-22|NONE|FOB|ng to the carefully final account| +38254|769499|19500|1|2|3136.92|0.08|0.00|A|F|1993-01-22|1993-01-07|1993-02-19|TAKE BACK RETURN|FOB|y bold packages. quickly| +38254|966227|28747|2|29|37502.22|0.06|0.05|A|F|1993-01-21|1993-01-17|1993-01-29|TAKE BACK RETURN|RAIL| slyly according t| +38254|374421|24422|3|12|17944.92|0.06|0.06|R|F|1993-03-05|1993-02-28|1993-03-09|TAKE BACK RETURN|MAIL|uriously pending r| +38254|878787|3822|4|15|26486.10|0.00|0.08|A|F|1993-02-28|1993-02-08|1993-03-14|DELIVER IN PERSON|MAIL|sheaves detect slyly fina| +38254|759064|9065|5|20|22460.60|0.04|0.04|R|F|1993-03-17|1993-01-10|1993-03-29|TAKE BACK RETURN|AIR|special ideas are f| +38254|572596|35108|6|16|26697.12|0.05|0.08|R|F|1992-12-12|1993-02-01|1992-12-25|TAKE BACK RETURN|REG AIR|o beans. unusua| +38255|245203|45204|1|17|19519.23|0.08|0.02|A|F|1992-03-05|1992-03-29|1992-03-08|DELIVER IN PERSON|RAIL| have to sleep furiously. fluf| +38255|112580|37585|2|28|44592.24|0.07|0.03|A|F|1992-02-13|1992-04-02|1992-03-01|NONE|AIR|ide of the final, express accounts unwi| +38255|121847|46852|3|30|56065.20|0.04|0.01|A|F|1992-02-07|1992-02-06|1992-02-26|TAKE BACK RETURN|TRUCK|. fluffily final foxes after the always | +38255|878335|3370|4|32|42025.28|0.09|0.02|A|F|1992-02-19|1992-02-14|1992-03-20|DELIVER IN PERSON|FOB|sits. iron| +38280|264564|14565|1|7|10699.85|0.02|0.01|A|F|1992-11-04|1992-12-21|1992-11-14|COLLECT COD|REG AIR|ending foxes boost acc| +38281|716818|4361|1|44|80730.32|0.04|0.05|N|O|1996-05-12|1996-08-04|1996-06-05|COLLECT COD|RAIL|p furiously blithely pendi| +38281|552473|27496|2|36|54916.20|0.04|0.02|N|O|1996-06-19|1996-06-11|1996-06-26|NONE|TRUCK|requests detect furio| +38282|31227|6228|1|10|11582.20|0.05|0.02|A|F|1994-11-03|1994-12-13|1994-11-28|COLLECT COD|SHIP| haggle slyly pe| +38282|821202|33719|2|13|14601.08|0.05|0.07|R|F|1995-01-16|1994-11-27|1995-01-17|TAKE BACK RETURN|SHIP|instructions boost. unusual, | +38282|941875|16912|3|23|44087.09|0.01|0.06|A|F|1994-12-06|1994-12-21|1994-12-24|COLLECT COD|FOB|ideas. blithely regular platel| +38282|76917|1920|4|34|64392.94|0.04|0.04|A|F|1995-01-06|1994-12-30|1995-01-08|TAKE BACK RETURN|TRUCK|e blithely. sly| +38282|734732|34733|5|33|58301.10|0.04|0.05|A|F|1994-11-20|1994-12-24|1994-11-27|NONE|REG AIR|oxes. carefully ironic platelets slee| +38282|634558|47071|6|50|74626.00|0.08|0.08|R|F|1994-11-07|1994-11-12|1994-11-24|TAKE BACK RETURN|RAIL|e. bold, special requests haggle! unusual| +38282|6014|6015|7|49|45080.49|0.04|0.01|A|F|1994-11-03|1994-12-30|1994-11-11|TAKE BACK RETURN|TRUCK|ts. special,| +38283|73145|23146|1|7|7826.98|0.06|0.07|N|O|1996-12-27|1996-12-30|1997-01-17|COLLECT COD|SHIP|ly regular packages cajole! f| +38283|346557|34076|2|50|80177.00|0.01|0.08|N|O|1996-10-13|1996-11-05|1996-10-31|NONE|SHIP|he fluffily final pinto beans. quickly i| +38283|574748|24749|3|15|27340.80|0.09|0.06|N|O|1996-10-09|1996-11-28|1996-10-12|COLLECT COD|REG AIR|ar pinto beans. ironic pinto beans abo| +38283|775117|37633|4|16|19073.28|0.00|0.06|N|O|1997-01-04|1996-12-25|1997-01-17|TAKE BACK RETURN|FOB|ntegrate boldly-- quickly i| +38283|390457|2965|5|25|38686.00|0.07|0.08|N|O|1996-10-25|1996-12-22|1996-10-26|NONE|AIR|. blithely silent deposit| +38283|398447|10955|6|38|58726.34|0.10|0.08|N|O|1996-11-27|1996-12-30|1996-12-08|COLLECT COD|FOB|ironic foxes | +38283|685247|47761|7|13|16018.73|0.07|0.03|N|O|1996-12-10|1996-12-09|1996-12-22|NONE|FOB|e. ruthless dolphins wake furiously caref| +38284|938655|38656|1|36|60969.96|0.00|0.05|R|F|1993-11-07|1993-08-18|1993-11-30|NONE|FOB|nal deposits haggle at the slyly regula| +38284|958207|45765|2|10|12651.60|0.01|0.07|A|F|1993-08-17|1993-08-20|1993-09-07|TAKE BACK RETURN|RAIL|s integrate among the carefully bold | +38284|584283|34284|3|15|20508.90|0.09|0.01|R|F|1993-07-27|1993-08-13|1993-08-04|DELIVER IN PERSON|REG AIR|gular, final forges. carefully unusual re| +38285|864238|1790|1|4|4808.76|0.06|0.01|A|F|1993-01-18|1992-11-18|1993-01-21|DELIVER IN PERSON|TRUCK|d pinto beans at the ruthless| +38285|246015|21024|2|24|23064.00|0.07|0.08|A|F|1992-10-20|1992-12-18|1992-10-25|COLLECT COD|REG AIR|s above the final requests ca| +38285|767105|4651|3|30|35162.10|0.03|0.03|R|F|1992-11-10|1992-11-18|1992-11-15|NONE|REG AIR|nal pinto beans along the special| +38286|240327|2832|1|44|55761.64|0.00|0.06|R|F|1993-03-21|1993-05-13|1993-04-07|NONE|SHIP| carefully regular pinto bean| +38286|159670|22174|2|43|74375.81|0.08|0.03|R|F|1993-03-29|1993-05-06|1993-04-16|DELIVER IN PERSON|AIR|quests. requests across the blithely idl| +38287|70094|32596|1|21|22345.89|0.08|0.04|R|F|1993-12-02|1993-10-31|1993-12-31|DELIVER IN PERSON|AIR|otes wake blithely across the blit| +38312|906367|43922|1|12|16479.84|0.09|0.04|N|O|1995-09-03|1995-07-23|1995-09-19|TAKE BACK RETURN|REG AIR|the furiously slow excuses. even | +38313|495551|45552|1|18|27837.54|0.09|0.04|A|F|1993-12-20|1993-10-27|1993-12-22|TAKE BACK RETURN|MAIL|yly. regular acco| +38313|716127|41156|2|26|29720.34|0.10|0.02|R|F|1993-12-06|1993-12-12|1993-12-16|TAKE BACK RETURN|FOB|lar accounts mainta| +38313|936466|48985|3|37|55589.54|0.01|0.05|R|F|1993-10-17|1993-11-24|1993-11-13|TAKE BACK RETURN|REG AIR| above the| +38313|183444|45948|4|33|50405.52|0.03|0.04|A|F|1993-09-30|1993-11-12|1993-10-11|COLLECT COD|MAIL|sts haggle despite the slyly even reque| +38313|142298|17303|5|5|6701.45|0.07|0.04|A|F|1993-10-12|1993-12-05|1993-10-14|NONE|TRUCK|posits. accounts are | +38313|590731|3243|6|22|40077.62|0.08|0.05|R|F|1993-12-08|1993-11-02|1993-12-12|DELIVER IN PERSON|RAIL|usly express acco| +38314|167952|5462|1|44|88877.80|0.06|0.04|N|O|1995-08-16|1995-11-06|1995-08-19|NONE|FOB| foxes boost across the asymptotes. caref| +38314|753217|28248|2|8|10161.44|0.00|0.07|N|O|1995-10-13|1995-10-15|1995-11-03|DELIVER IN PERSON|MAIL|nic theodolites wake after t| +38314|304320|41839|3|37|48999.47|0.00|0.07|N|O|1995-11-17|1995-09-29|1995-12-01|DELIVER IN PERSON|FOB|ding deposits sleep slowly along t| +38314|706182|6183|4|33|39208.95|0.08|0.06|N|O|1995-09-16|1995-09-29|1995-09-30|COLLECT COD|TRUCK|ages wake blithely quickly express pac| +38314|795061|7577|5|13|15028.39|0.06|0.02|N|O|1995-10-05|1995-10-21|1995-10-07|DELIVER IN PERSON|RAIL|lly. regular acc| +38314|582293|44805|6|44|60511.88|0.04|0.01|N|O|1995-11-05|1995-10-18|1995-11-11|NONE|TRUCK|accounts. bl| +38314|583305|8328|7|2|2776.56|0.07|0.03|N|O|1995-09-10|1995-09-24|1995-09-22|DELIVER IN PERSON|AIR|y ironic packages wake. permanentl| +38315|605799|18312|1|33|56257.08|0.02|0.07|N|O|1995-08-20|1995-07-19|1995-09-16|NONE|FOB|requests haggle quickly. fur| +38315|662691|12692|2|47|77722.02|0.06|0.03|N|O|1995-07-03|1995-07-18|1995-07-23|COLLECT COD|FOB|ts. carefully ironic accounts| +38315|839361|1878|3|1|1300.32|0.03|0.08|N|F|1995-06-05|1995-06-16|1995-06-27|DELIVER IN PERSON|FOB|the silent tithes. requ| +38315|131997|31998|4|12|24347.88|0.05|0.02|N|O|1995-09-01|1995-06-22|1995-09-30|COLLECT COD|FOB|nto beans run si| +38315|463179|13180|5|44|50254.60|0.03|0.00|N|O|1995-07-07|1995-06-23|1995-07-14|NONE|REG AIR|osits haggle carefully carefully express d| +38316|500531|25552|1|5|7657.55|0.04|0.07|R|F|1994-08-30|1994-08-01|1994-09-07|DELIVER IN PERSON|RAIL| blithely even warthogs wak| +38316|410561|23070|2|12|17658.48|0.05|0.06|R|F|1994-06-02|1994-06-14|1994-06-10|NONE|REG AIR|hely special | +38316|283704|33705|3|48|81009.12|0.09|0.04|A|F|1994-05-24|1994-08-05|1994-06-22|DELIVER IN PERSON|REG AIR|s the regular braids. | +38316|205282|17787|4|17|20183.59|0.02|0.02|R|F|1994-07-15|1994-06-14|1994-07-17|DELIVER IN PERSON|REG AIR|ly regular theodolites after| +38317|730421|30422|1|1|1451.39|0.01|0.04|N|O|1997-07-13|1997-05-18|1997-08-08|DELIVER IN PERSON|TRUCK|ooze. finally pending ins| +38317|185529|48033|2|6|9687.12|0.06|0.08|N|O|1997-07-28|1997-04-29|1997-08-26|DELIVER IN PERSON|MAIL|ngside of the furi| +38317|176586|1593|3|40|66503.20|0.07|0.07|N|O|1997-04-04|1997-05-06|1997-04-11|DELIVER IN PERSON|TRUCK| mold carefully. carefully regular inst| +38317|870162|45197|4|28|31699.36|0.04|0.08|N|O|1997-07-26|1997-05-06|1997-08-16|DELIVER IN PERSON|MAIL|ly ironic dolphins. carefully regular| +38317|812036|24553|5|25|23699.75|0.06|0.05|N|O|1997-06-20|1997-05-02|1997-07-08|TAKE BACK RETURN|AIR|slyly ironic decoys nag carefully ir| +38317|881799|6834|6|45|80133.75|0.09|0.06|N|O|1997-06-25|1997-06-01|1997-07-08|NONE|MAIL|ess instructions haggle furiously according| +38317|390992|28514|7|11|22912.78|0.06|0.00|N|O|1997-05-08|1997-06-09|1997-05-27|COLLECT COD|RAIL|eodolites. theodolites play blith| +38318|402285|27302|1|41|48677.66|0.10|0.07|A|F|1993-05-20|1993-03-26|1993-05-27|TAKE BACK RETURN|RAIL|d platelet| +38319|15243|15244|1|29|33588.96|0.00|0.06|N|O|1995-09-13|1995-08-17|1995-10-05|COLLECT COD|SHIP|the ironically regular foxes grow since th| +38319|179591|29592|2|48|80188.32|0.07|0.00|N|O|1995-10-01|1995-08-10|1995-10-08|TAKE BACK RETURN|RAIL|l deposits boost quickly. ironic, bold req| +38319|371681|21682|3|15|26290.05|0.08|0.03|N|O|1995-10-18|1995-08-31|1995-11-12|COLLECT COD|FOB|ts. unusual instructio| +38344|683106|45620|1|33|35939.31|0.08|0.00|N|O|1997-08-01|1997-08-18|1997-08-04|TAKE BACK RETURN|AIR|iously ironic deposits hinder along t| +38345|676098|38612|1|19|20407.14|0.00|0.04|R|F|1995-05-16|1995-08-03|1995-05-26|COLLECT COD|SHIP| detect slyly along the hockey play| +38345|177593|2600|2|42|70164.78|0.03|0.03|N|O|1995-08-01|1995-06-08|1995-08-07|TAKE BACK RETURN|RAIL| affix furiousl| +38345|805017|30050|3|33|30425.01|0.05|0.02|N|F|1995-06-02|1995-06-25|1995-06-20|TAKE BACK RETURN|TRUCK|ecial pearls do sleep. asymptotes detect | +38345|908776|46331|4|13|23201.49|0.06|0.02|N|O|1995-08-21|1995-07-28|1995-08-28|TAKE BACK RETURN|TRUCK|fully carefully regular instructions. fu| +38346|468639|31149|1|36|57873.96|0.00|0.01|R|F|1995-02-27|1995-02-22|1995-03-15|COLLECT COD|REG AIR|d the ironic, unusual account| +38346|407426|32443|2|12|16000.80|0.07|0.04|R|F|1995-01-22|1995-02-03|1995-01-30|COLLECT COD|FOB|uickly pin| +38346|595483|7995|3|30|47353.80|0.01|0.04|R|F|1995-02-07|1995-01-24|1995-02-26|COLLECT COD|TRUCK|nding asymptote| +38347|614816|27329|1|50|86539.00|0.09|0.07|R|F|1994-07-02|1994-06-14|1994-07-23|TAKE BACK RETURN|TRUCK|ngside of the slyly| +38347|195882|33392|2|20|39557.60|0.03|0.06|R|F|1994-06-24|1994-06-23|1994-06-30|NONE|SHIP|e foxes about the fluffy, | +38347|182703|7710|3|12|21428.40|0.07|0.02|R|F|1994-08-07|1994-05-24|1994-08-20|TAKE BACK RETURN|REG AIR|final deposits about | +38347|685277|22817|4|3|3786.72|0.01|0.07|A|F|1994-05-02|1994-06-17|1994-05-31|DELIVER IN PERSON|SHIP| special depende| +38347|444864|7373|5|30|54265.20|0.03|0.01|A|F|1994-05-17|1994-06-05|1994-06-02|NONE|FOB|es. quickly unu| +38348|526143|26144|1|35|40919.20|0.06|0.00|N|O|1996-02-05|1995-12-22|1996-02-16|DELIVER IN PERSON|RAIL|y bold accounts ha| +38348|879340|41858|2|24|31663.20|0.00|0.07|N|O|1996-01-11|1996-01-19|1996-01-20|TAKE BACK RETURN|SHIP|symptotes. unusual theodoli| +38348|60758|35761|3|36|61875.00|0.08|0.08|N|O|1995-12-05|1996-01-08|1995-12-30|TAKE BACK RETURN|REG AIR|fluffily; ironic accounts sublate qui| +38348|154569|17073|4|10|16235.60|0.01|0.00|N|O|1996-01-24|1995-12-23|1996-02-08|DELIVER IN PERSON|TRUCK|cross the ironic accounts. bli| +38349|647512|10025|1|10|14594.80|0.09|0.04|R|F|1995-03-27|1995-03-09|1995-04-22|DELIVER IN PERSON|SHIP|ar packages affix carefully fluffily final | +38349|734018|21561|2|13|13675.74|0.10|0.05|A|F|1995-02-19|1995-01-29|1995-02-24|TAKE BACK RETURN|FOB|ages according to the quickly special th| +38349|637117|49630|3|31|32676.48|0.09|0.03|R|F|1995-03-16|1995-03-23|1995-04-12|NONE|FOB| wake quickly. ironic instruct| +38349|22142|47143|4|32|34052.48|0.00|0.08|R|F|1995-03-28|1995-03-26|1995-04-03|NONE|MAIL|top the bold, final| +38350|71477|33979|1|9|13036.23|0.00|0.07|A|F|1993-04-18|1993-05-15|1993-05-02|TAKE BACK RETURN|TRUCK| final excuses lose fluffily iro| +38351|877322|2357|1|3|3897.84|0.00|0.00|N|O|1997-01-23|1997-01-10|1997-02-22|COLLECT COD|TRUCK|lent deposits detect slyly across the e| +38351|143019|18024|2|15|15930.15|0.03|0.06|N|O|1997-02-18|1997-02-15|1997-03-19|NONE|TRUCK|s. slyly special pinto beans believe. regu| +38376|858294|33329|1|50|62612.50|0.09|0.02|N|O|1995-07-05|1995-05-02|1995-07-07|COLLECT COD|FOB|e regular acco| +38376|341042|41043|2|39|42238.17|0.06|0.03|N|O|1995-07-21|1995-05-10|1995-08-18|COLLECT COD|SHIP|tes play abo| +38376|882345|7380|3|20|26546.00|0.00|0.05|N|O|1995-07-05|1995-06-16|1995-07-29|DELIVER IN PERSON|AIR|pecial packages; finally sil| +38377|481541|31542|1|4|6090.08|0.10|0.07|N|O|1995-09-30|1995-07-04|1995-10-05|NONE|AIR|sy accounts haggle carefully. blithely| +38377|247520|47521|2|26|38155.26|0.02|0.03|N|O|1995-07-26|1995-07-15|1995-08-02|TAKE BACK RETURN|REG AIR|structions cajole quickly specia| +38377|65852|40855|3|32|58171.20|0.07|0.04|N|O|1995-07-14|1995-07-26|1995-08-06|NONE|FOB|otes. carefully final ideas | +38377|764851|27367|4|14|26821.48|0.10|0.04|N|O|1995-07-05|1995-07-31|1995-07-23|DELIVER IN PERSON|RAIL|nts are blithely. fluffily s| +38378|29091|29092|1|30|30602.70|0.08|0.02|N|O|1998-03-01|1998-01-11|1998-03-31|TAKE BACK RETURN|RAIL|nic instructions haggle after t| +38378|928628|41147|2|49|81172.42|0.07|0.00|N|O|1997-11-26|1998-01-24|1997-12-25|NONE|RAIL|final ideas. carefully unusual dep| +38378|439369|1878|3|12|15700.08|0.02|0.04|N|O|1998-02-07|1998-01-23|1998-02-22|DELIVER IN PERSON|FOB|s. boldly iron| +38378|463956|26466|4|30|57597.90|0.04|0.03|N|O|1997-12-13|1998-02-05|1997-12-20|TAKE BACK RETURN|MAIL|ely platelets. quickly regular accounts acc| +38378|695517|8031|5|39|58986.72|0.10|0.00|N|O|1998-01-19|1997-12-18|1998-01-28|TAKE BACK RETURN|SHIP|uests after the blithely eve| +38379|382367|7382|1|37|53625.95|0.09|0.04|N|O|1996-09-16|1996-07-29|1996-10-10|NONE|SHIP|endencies. quickly special requests are s| +38379|437609|118|2|22|34024.76|0.03|0.08|N|O|1996-09-27|1996-08-08|1996-10-04|TAKE BACK RETURN|TRUCK| carefully pen| +38379|893569|6087|3|38|59375.76|0.08|0.06|N|O|1996-06-14|1996-07-24|1996-07-01|COLLECT COD|FOB|ular accounts. instructions wake carefu| +38380|505988|18499|1|33|65800.68|0.09|0.06|N|O|1996-09-06|1996-11-19|1996-09-17|COLLECT COD|SHIP|n warthogs-- fina| +38380|126037|1042|2|36|38269.08|0.09|0.08|N|O|1996-09-16|1996-11-22|1996-10-03|DELIVER IN PERSON|RAIL| believe blithely final d| +38380|290027|2533|3|49|49833.49|0.04|0.02|N|O|1996-09-17|1996-10-15|1996-10-04|DELIVER IN PERSON|RAIL|ic pinto beans play acros| +38380|476099|38609|4|20|21501.40|0.10|0.06|N|O|1996-11-22|1996-12-01|1996-12-11|TAKE BACK RETURN|TRUCK|ully special accounts. perm| +38381|96890|9392|1|46|86796.94|0.03|0.05|N|O|1997-02-04|1997-03-12|1997-03-04|NONE|TRUCK| careful dolphins. final, unu| +38381|415677|40694|2|33|52557.45|0.06|0.01|N|O|1997-05-07|1997-02-27|1997-05-11|NONE|AIR|ess pinto beans about the packages cajole| +38381|273487|23488|3|47|68642.09|0.03|0.03|N|O|1997-05-02|1997-02-17|1997-05-03|DELIVER IN PERSON|RAIL|inal ideas are carefully slyly pending de| +38382|255976|5977|1|20|38639.20|0.04|0.04|N|O|1998-09-10|1998-07-23|1998-09-28|NONE|FOB|y pending re| +38382|181221|6228|2|6|7813.32|0.00|0.02|N|O|1998-09-23|1998-08-06|1998-09-25|NONE|FOB| slyly ironic pinto beans| +38382|768520|31036|3|1|1588.49|0.02|0.05|N|O|1998-06-11|1998-08-05|1998-06-26|TAKE BACK RETURN|AIR|atelets. ironic, final platelets affix | +38382|509517|34538|4|22|33582.78|0.09|0.05|N|O|1998-07-07|1998-07-02|1998-07-17|COLLECT COD|REG AIR|yly special instructions. s| +38382|447309|9818|5|9|11306.52|0.03|0.06|N|O|1998-09-09|1998-08-05|1998-09-11|TAKE BACK RETURN|SHIP|sly special frays cajole slyl| +38382|922069|22070|6|42|45822.84|0.10|0.05|N|O|1998-06-18|1998-07-06|1998-06-27|NONE|TRUCK|etect carefully furiously unusual | +38382|201765|1766|7|22|36668.50|0.00|0.01|N|O|1998-07-06|1998-07-16|1998-07-07|TAKE BACK RETURN|TRUCK|riously unus| +38383|50542|25545|1|30|44776.20|0.09|0.06|A|F|1993-08-03|1993-06-14|1993-08-25|DELIVER IN PERSON|FOB|are blithely. i| +38383|445428|7937|2|46|63176.40|0.05|0.07|A|F|1993-06-28|1993-07-22|1993-07-06|NONE|TRUCK|y special accounts haggle fluff| +38383|307528|45047|3|15|23032.65|0.06|0.02|A|F|1993-06-04|1993-07-25|1993-06-27|TAKE BACK RETURN|SHIP|gainst the quickly| +38383|621938|9475|4|46|85555.40|0.08|0.00|R|F|1993-07-03|1993-07-21|1993-07-13|NONE|FOB|jole after | +38383|907588|32625|5|5|7977.70|0.03|0.03|R|F|1993-07-14|1993-06-29|1993-07-26|COLLECT COD|SHIP|y regular excuses promise blithely c| +38408|178358|3365|1|24|34472.40|0.10|0.08|A|F|1994-06-09|1994-07-15|1994-06-25|TAKE BACK RETURN|REG AIR|epitaphs. carefully special notornis| +38408|650836|25863|2|25|44670.00|0.10|0.08|A|F|1994-07-14|1994-06-18|1994-08-11|COLLECT COD|FOB|equests poach even asym| +38408|588883|26417|3|43|84789.98|0.08|0.04|R|F|1994-07-22|1994-05-19|1994-08-13|DELIVER IN PERSON|FOB|d deposits haggle ar| +38408|341261|16274|4|21|27347.25|0.09|0.05|R|F|1994-06-17|1994-07-04|1994-07-10|TAKE BACK RETURN|RAIL|sh furiously regular ideas.| +38409|135294|47797|1|17|22597.93|0.08|0.07|N|O|1998-09-09|1998-09-17|1998-09-13|NONE|FOB|nusual deposits around t| +38409|877379|39897|2|47|63747.51|0.09|0.05|N|O|1998-09-06|1998-09-01|1998-09-30|TAKE BACK RETURN|REG AIR|ular pinto beans haggle carefully| +38409|103690|41197|3|46|77909.74|0.07|0.04|N|O|1998-09-28|1998-08-20|1998-10-21|COLLECT COD|SHIP| regular, even depos| +38409|714102|26617|4|33|36830.31|0.08|0.05|N|O|1998-11-09|1998-10-08|1998-11-24|NONE|TRUCK|ess requests haggle carefully! sometime| +38409|909808|34845|5|29|52715.04|0.01|0.00|N|O|1998-10-04|1998-08-27|1998-10-20|NONE|FOB| regular ideas w| +38409|131161|31162|6|39|46494.24|0.01|0.01|N|O|1998-10-16|1998-09-21|1998-10-31|DELIVER IN PERSON|REG AIR|ests was regular,| +38410|164068|26572|1|7|7924.42|0.02|0.06|N|O|1998-11-04|1998-09-30|1998-11-11|TAKE BACK RETURN|SHIP|riously even | +38410|490845|40846|2|9|16522.38|0.01|0.03|N|O|1998-08-15|1998-08-31|1998-08-16|COLLECT COD|AIR|egular ideas.| +38411|901002|13521|1|33|33097.68|0.00|0.05|N|O|1998-06-07|1998-06-06|1998-06-29|COLLECT COD|RAIL| final, final epitaphs. even, regular asy| +38411|138964|38965|2|3|6008.88|0.09|0.07|N|O|1998-05-06|1998-04-07|1998-06-01|DELIVER IN PERSON|REG AIR|ions haggle| +38412|276706|14222|1|3|5048.07|0.03|0.07|R|F|1994-05-07|1994-05-26|1994-06-02|TAKE BACK RETURN|TRUCK|, pending accounts. quickly unusual fox| +38412|597484|9996|2|28|44280.88|0.09|0.05|R|F|1994-04-28|1994-05-24|1994-05-08|NONE|RAIL|he blithely | +38412|905525|30562|3|12|18365.76|0.03|0.02|A|F|1994-07-22|1994-07-02|1994-07-27|TAKE BACK RETURN|MAIL|ep blithely express, ironic excus| +38413|36332|23833|1|15|19024.95|0.08|0.05|N|O|1995-07-04|1995-04-18|1995-07-31|TAKE BACK RETURN|TRUCK| against the slyly eve| +38414|37847|37848|1|16|28557.44|0.00|0.04|N|O|1997-05-23|1997-05-23|1997-06-16|TAKE BACK RETURN|AIR|r platelets. sl| +38414|85157|10160|2|19|21700.85|0.10|0.06|N|O|1997-03-21|1997-04-24|1997-04-05|DELIVER IN PERSON|RAIL|ular excuses affix| +38414|220826|45835|3|10|17468.10|0.01|0.05|N|O|1997-04-08|1997-04-16|1997-04-13|NONE|FOB|es. careful| +38414|408958|21467|4|23|42939.39|0.00|0.06|N|O|1997-05-18|1997-05-18|1997-06-10|DELIVER IN PERSON|FOB|fully bold deposits are blithely after the| +38415|117700|5207|1|41|70425.70|0.07|0.06|N|O|1998-07-14|1998-09-08|1998-07-25|TAKE BACK RETURN|FOB|carefully regular accounts. fu| +38415|179422|4429|2|20|30028.40|0.03|0.06|N|O|1998-10-10|1998-08-12|1998-11-09|TAKE BACK RETURN|FOB|o the regu| +38440|7429|7430|1|24|32074.08|0.01|0.08|A|F|1994-08-30|1994-10-31|1994-09-27|COLLECT COD|MAIL|ctions haggle furiously| +38440|858976|46528|2|47|90941.71|0.05|0.08|A|F|1994-12-17|1994-10-02|1995-01-11|COLLECT COD|MAIL|e quickly even req| +38440|808442|8443|3|48|64819.20|0.00|0.01|A|F|1994-11-26|1994-11-04|1994-12-23|NONE|RAIL|ar ideas affix after the blit| +38440|469515|7043|4|4|5937.96|0.03|0.08|A|F|1994-10-24|1994-10-16|1994-11-11|COLLECT COD|AIR| furiously ironic realms ca| +38440|128208|3213|5|6|7417.20|0.06|0.06|A|F|1994-11-12|1994-10-28|1994-11-17|NONE|FOB|s. slyly idle excuse| +38440|783495|46011|6|34|53667.64|0.06|0.06|R|F|1994-11-21|1994-11-22|1994-11-22|COLLECT COD|FOB|ously unusual ideas haggle slyly spec| +38440|186902|49406|7|10|19889.00|0.07|0.03|R|F|1994-10-28|1994-10-11|1994-11-12|NONE|REG AIR|s boost along the s| +38441|259445|46961|1|38|53368.34|0.02|0.04|N|O|1995-07-30|1995-08-27|1995-08-13|TAKE BACK RETURN|TRUCK| furiously. reque| +38441|476378|13906|2|25|33858.75|0.07|0.02|N|O|1995-09-04|1995-09-09|1995-09-18|COLLECT COD|MAIL|ly express foxes s| +38441|481158|31159|3|31|35313.03|0.04|0.05|N|O|1995-07-19|1995-09-14|1995-08-05|COLLECT COD|MAIL|aggle quiet, dogged | +38442|555958|43492|1|46|92640.78|0.08|0.03|A|F|1993-06-27|1993-06-22|1993-07-20|TAKE BACK RETURN|REG AIR|jole slyly foxes. pending platelet| +38442|984311|46831|2|12|16743.24|0.08|0.03|A|F|1993-08-30|1993-07-12|1993-09-03|COLLECT COD|REG AIR| blithely. blithely regular idea| +38442|306298|31311|3|31|40432.68|0.02|0.05|R|F|1993-07-17|1993-06-10|1993-07-30|COLLECT COD|MAIL|y blithely | +38442|934849|47368|4|15|28257.00|0.01|0.06|A|F|1993-07-27|1993-06-07|1993-08-24|COLLECT COD|FOB| deposits boost at the furiously | +38442|991390|41391|5|39|57772.65|0.06|0.07|A|F|1993-07-24|1993-06-18|1993-07-25|DELIVER IN PERSON|AIR|furiously stealthy | +38442|278106|3117|6|31|33606.79|0.07|0.00|A|F|1993-07-17|1993-06-04|1993-08-03|DELIVER IN PERSON|RAIL| excuses. special, ev| +38442|125217|25218|7|26|32297.46|0.05|0.06|A|F|1993-08-04|1993-07-30|1993-08-13|COLLECT COD|TRUCK| regular accounts haggle| +38443|514232|39253|1|12|14954.52|0.03|0.03|A|F|1994-05-27|1994-05-04|1994-06-12|TAKE BACK RETURN|MAIL|ticing deposits wak| +38444|212743|37752|1|15|24835.95|0.07|0.00|N|O|1998-03-07|1998-03-17|1998-04-02|DELIVER IN PERSON|TRUCK|ly even deposits detect boldly regu| +38444|571441|33953|2|48|72596.16|0.01|0.08|N|O|1998-02-10|1998-03-11|1998-02-20|COLLECT COD|FOB|ajole blit| +38444|199678|49679|3|2|3555.34|0.10|0.07|N|O|1998-04-27|1998-02-23|1998-05-05|TAKE BACK RETURN|MAIL|requests play quickly| +38444|979963|42483|4|19|38815.48|0.05|0.07|N|O|1998-02-21|1998-03-14|1998-03-08|COLLECT COD|MAIL|s. bold, final pinto beans x-ray. p| +38444|225274|283|5|6|7195.56|0.10|0.02|N|O|1998-04-18|1998-04-05|1998-04-30|NONE|REG AIR|ly even theodolites| +38445|828132|40649|1|42|44523.78|0.04|0.05|N|O|1996-07-04|1996-06-16|1996-07-30|TAKE BACK RETURN|RAIL|efully. bold excuses are r| +38445|412313|37330|2|9|11027.61|0.09|0.06|N|O|1996-07-25|1996-05-15|1996-08-22|TAKE BACK RETURN|MAIL|l excuses ha| +38445|737893|25436|3|39|75303.54|0.05|0.01|N|O|1996-05-16|1996-05-30|1996-05-24|NONE|TRUCK|ites. ruthl| +38445|751758|1759|4|39|70579.08|0.03|0.03|N|O|1996-07-28|1996-06-01|1996-08-27|DELIVER IN PERSON|TRUCK| regular requests at the even | +38445|791866|41867|5|18|35240.94|0.00|0.05|N|O|1996-06-29|1996-07-09|1996-07-11|NONE|TRUCK|ackages? unusual, ironic requests| +38446|775004|35|1|19|20500.43|0.07|0.00|N|O|1996-05-11|1996-03-23|1996-05-19|NONE|TRUCK|y silent requests will| +38447|88939|1441|1|2|3855.86|0.05|0.04|N|O|1997-09-01|1997-08-24|1997-09-11|NONE|RAIL|y express pint| +38447|784304|21850|2|50|69413.50|0.10|0.05|N|O|1997-07-23|1997-08-13|1997-07-30|TAKE BACK RETURN|TRUCK|ronic inst| +38447|783685|46201|3|13|22992.45|0.00|0.05|N|O|1997-09-13|1997-09-21|1997-09-16|DELIVER IN PERSON|FOB|furiously even platelets. bold, unusual i| +38447|384937|22459|4|25|50548.00|0.02|0.07|N|O|1997-07-17|1997-09-16|1997-08-10|DELIVER IN PERSON|MAIL|d the even, ir| +38447|625049|74|5|14|13636.14|0.03|0.08|N|O|1997-07-19|1997-08-17|1997-07-27|COLLECT COD|FOB|nic deposits sleep about the express, regu| +38447|189950|14957|6|14|28559.30|0.09|0.06|N|O|1997-10-20|1997-08-06|1997-10-22|COLLECT COD|SHIP|fluffily iron| +38447|474015|24016|7|35|34614.65|0.08|0.05|N|O|1997-10-05|1997-09-17|1997-10-28|TAKE BACK RETURN|RAIL| according to the dogged, even theodolite| +38472|768243|18244|1|50|65560.50|0.02|0.08|N|O|1996-11-09|1996-11-15|1996-11-24|COLLECT COD|FOB|ly bold deposits cajole quickly across | +38472|857594|7595|2|14|21721.70|0.02|0.00|N|O|1996-12-02|1996-11-14|1996-12-10|NONE|SHIP| somas. carefully regular deposits use sil| +38472|569877|7411|3|29|56458.65|0.07|0.02|N|O|1997-01-22|1997-01-02|1997-01-28|DELIVER IN PERSON|FOB|ng dolphins. theodolites x-ray carefull| +38472|919004|6559|4|14|14321.44|0.07|0.07|N|O|1996-10-20|1997-01-12|1996-10-25|NONE|FOB|oost slyly about the ironic, final ac| +38472|691201|41202|5|18|21459.06|0.02|0.08|N|O|1997-02-13|1996-12-06|1997-03-13|COLLECT COD|TRUCK| excuses. carefully pending orbits detec| +38472|999529|12049|6|12|19541.76|0.00|0.04|N|O|1996-11-02|1996-11-30|1996-11-24|COLLECT COD|SHIP|e furiously bold accounts wak| +38473|411052|11053|1|50|48151.50|0.10|0.03|A|F|1992-05-02|1992-05-26|1992-05-30|TAKE BACK RETURN|TRUCK|ven reques| +38473|544014|6525|2|28|29623.72|0.00|0.01|A|F|1992-07-27|1992-05-26|1992-07-28|DELIVER IN PERSON|RAIL|requests believe fluff| +38474|237534|37535|1|21|30901.92|0.02|0.04|N|O|1995-08-21|1995-08-03|1995-09-13|DELIVER IN PERSON|TRUCK|ltipliers. carefully sil| +38474|226546|1555|2|47|69208.91|0.02|0.06|N|O|1995-10-23|1995-09-17|1995-10-26|TAKE BACK RETURN|TRUCK|ously regular instructions. sly| +38474|544517|44518|3|31|48406.19|0.09|0.06|N|O|1995-07-01|1995-09-14|1995-07-05|COLLECT COD|AIR|cording to the requests inte| +38474|690285|2799|4|38|48459.50|0.06|0.06|N|O|1995-08-07|1995-08-02|1995-08-26|TAKE BACK RETURN|FOB|iously regular deposits use some| +38474|615478|15479|5|13|18114.72|0.08|0.01|N|O|1995-07-03|1995-08-09|1995-07-11|NONE|TRUCK|hely bold instructions. even, specia| +38474|323226|35733|6|5|6246.05|0.07|0.05|N|O|1995-09-08|1995-07-27|1995-09-21|DELIVER IN PERSON|MAIL|ges above the carefully brave packages| +38474|452978|27997|7|41|79168.95|0.09|0.06|N|O|1995-07-27|1995-08-26|1995-07-29|COLLECT COD|TRUCK|uriously regular instructions ru| +38475|197846|10350|1|45|87472.80|0.06|0.08|A|F|1992-05-14|1992-05-22|1992-05-26|COLLECT COD|MAIL|ully silent theodolites dazzle fluff| +38475|194830|19837|2|28|53895.24|0.10|0.06|R|F|1992-03-13|1992-04-22|1992-03-16|TAKE BACK RETURN|RAIL|y sly pinto| +38475|494083|31611|3|43|46313.58|0.02|0.08|A|F|1992-04-17|1992-05-13|1992-05-15|COLLECT COD|FOB|furiously bold depos| +38476|81388|31389|1|16|21910.08|0.01|0.06|N|O|1996-06-23|1996-07-10|1996-07-15|DELIVER IN PERSON|TRUCK|. carefully regul| +38476|883851|46369|2|22|40365.82|0.10|0.03|N|O|1996-09-17|1996-07-01|1996-09-24|COLLECT COD|RAIL|uriously regular ideas. accounts| +38476|869358|6910|3|16|21236.96|0.07|0.01|N|O|1996-06-22|1996-07-06|1996-06-23|TAKE BACK RETURN|TRUCK| the foxes. furiously enticing accounts hag| +38476|289549|27065|4|22|33847.66|0.02|0.04|N|O|1996-08-27|1996-08-07|1996-09-24|TAKE BACK RETURN|REG AIR|lly unusual asymptotes are fluffily iro| +38477|108838|8839|1|32|59098.56|0.04|0.08|R|F|1992-08-25|1992-07-28|1992-09-10|COLLECT COD|FOB|its alongside of the blit| +38477|235280|35281|2|31|37673.37|0.01|0.05|R|F|1992-08-22|1992-08-11|1992-09-07|COLLECT COD|TRUCK| regular courts along the slyly| +38477|338442|13455|3|32|47373.76|0.03|0.06|R|F|1992-09-20|1992-08-11|1992-10-12|TAKE BACK RETURN|TRUCK|accounts around the quickly regular foxes| +38477|194480|31990|4|22|34638.56|0.10|0.05|R|F|1992-07-14|1992-08-09|1992-07-28|DELIVER IN PERSON|AIR| excuses cajole carefully furiously unus| +38477|610297|35322|5|36|43461.36|0.02|0.00|R|F|1992-08-06|1992-08-03|1992-08-24|NONE|REG AIR|r deposits. ruthlessly final deposits| +38477|258875|8876|6|29|53181.94|0.05|0.06|A|F|1992-07-20|1992-08-17|1992-08-12|NONE|FOB|re carefully final accounts. quietly ironic| +38477|907233|32270|7|41|50847.79|0.09|0.07|R|F|1992-07-06|1992-07-27|1992-07-23|DELIVER IN PERSON|RAIL|es. idly final requests cajole even,| +38478|858352|33387|1|2|2620.62|0.08|0.02|R|F|1993-10-29|1993-10-13|1993-11-16|DELIVER IN PERSON|RAIL|uests must boost furiously through the| +38478|306049|43568|2|43|45366.29|0.10|0.04|A|F|1993-07-31|1993-10-09|1993-08-04|COLLECT COD|RAIL|bout the furiously r| +38478|754699|42245|3|13|22797.58|0.04|0.04|A|F|1993-11-01|1993-09-08|1993-11-19|COLLECT COD|MAIL| special accounts b| +38478|211827|24332|4|7|12171.67|0.01|0.02|R|F|1993-07-29|1993-09-07|1993-07-31|COLLECT COD|AIR|al accounts hagg| +38479|176809|14319|1|8|15086.40|0.06|0.05|A|F|1994-12-15|1994-11-23|1994-12-25|COLLECT COD|FOB|ly about the slyly ex| +38504|839464|27013|1|37|51926.54|0.09|0.00|N|O|1997-04-10|1997-05-04|1997-04-14|TAKE BACK RETURN|TRUCK| stealthy pint| +38504|855152|5153|2|16|17713.76|0.06|0.06|N|O|1997-03-09|1997-04-27|1997-03-27|TAKE BACK RETURN|FOB|arefully. bold deposit| +38504|532607|7628|3|14|22954.12|0.00|0.03|N|O|1997-06-18|1997-05-12|1997-07-09|COLLECT COD|REG AIR|ully alongside of the bo| +38504|525311|12842|4|23|30734.67|0.08|0.00|N|O|1997-06-09|1997-05-25|1997-07-05|DELIVER IN PERSON|SHIP|egular theodolites solve requests. accoun| +38504|897273|9791|5|38|48268.74|0.09|0.05|N|O|1997-03-31|1997-04-25|1997-04-07|TAKE BACK RETURN|MAIL|ic accounts ma| +38504|461493|11494|6|13|18908.11|0.07|0.01|N|O|1997-03-20|1997-04-28|1997-03-31|DELIVER IN PERSON|FOB|eep blithely regular accou| +38505|237990|495|1|40|77119.20|0.07|0.05|R|F|1992-05-12|1992-03-09|1992-06-05|COLLECT COD|RAIL|en, final pinto | +38505|886589|11624|2|4|6302.16|0.10|0.06|R|F|1992-04-06|1992-02-27|1992-04-10|TAKE BACK RETURN|RAIL|al deposits| +38505|891587|41588|3|18|28413.72|0.07|0.03|R|F|1992-03-03|1992-03-08|1992-03-20|TAKE BACK RETURN|REG AIR|ain quickly pending requests. fu| +38505|888173|13208|4|46|53411.98|0.01|0.01|R|F|1992-04-03|1992-03-04|1992-04-29|DELIVER IN PERSON|RAIL|ily special requests doze fu| +38505|514797|27308|5|16|28988.32|0.00|0.04|R|F|1992-05-11|1992-04-05|1992-06-06|COLLECT COD|RAIL|bravely above the e| +38505|191309|28819|6|1|1400.30|0.09|0.05|A|F|1992-05-07|1992-03-23|1992-05-15|DELIVER IN PERSON|AIR|inal asymptotes. f| +38506|21877|46878|1|42|75552.54|0.00|0.00|A|F|1992-04-15|1992-04-06|1992-05-12|COLLECT COD|SHIP|lyly final reque| +38506|678735|16275|2|41|70261.70|0.08|0.01|R|F|1992-06-11|1992-04-08|1992-06-15|COLLECT COD|SHIP|quests. carefully ironic pla| +38507|465423|40442|1|50|69420.00|0.03|0.04|N|O|1995-11-30|1995-12-01|1995-12-09|DELIVER IN PERSON|SHIP|ckly bold ideas haggle acco| +38507|352227|2228|2|36|46051.56|0.09|0.02|N|O|1996-02-15|1996-01-03|1996-03-12|DELIVER IN PERSON|SHIP|instructions alon| +38508|671367|46394|1|16|21413.28|0.02|0.07|N|O|1995-11-04|1995-10-20|1995-11-20|NONE|TRUCK|s sleep blithely regular pinto b| +38508|653957|16471|2|32|61149.44|0.01|0.01|N|O|1995-10-28|1995-11-10|1995-11-03|TAKE BACK RETURN|TRUCK|ajole according to the furiously | +38509|734864|34865|1|40|75953.20|0.01|0.05|N|O|1997-07-10|1997-09-07|1997-07-19|TAKE BACK RETURN|MAIL|edly special excuses. sheaves| +38510|849183|11700|1|14|15849.96|0.01|0.07|N|O|1996-10-05|1996-10-19|1996-10-13|DELIVER IN PERSON|RAIL|ts use against the blithel| +38510|217196|4709|2|15|16697.70|0.02|0.05|N|O|1996-11-03|1996-11-14|1996-11-25|DELIVER IN PERSON|FOB|horses. carefully unusual request| +38510|404327|29344|3|8|9850.40|0.00|0.06|N|O|1996-11-08|1996-09-25|1996-11-28|NONE|RAIL|thely regular accounts wake slyly.| +38510|518610|31121|4|49|79800.91|0.00|0.08|N|O|1996-11-08|1996-09-19|1996-12-08|TAKE BACK RETURN|TRUCK|nusual foxes against the regular depos| +38510|274849|12365|5|27|49243.41|0.09|0.03|N|O|1996-10-14|1996-10-26|1996-10-21|TAKE BACK RETURN|MAIL|ly slyly careful accounts. | +38510|379428|41936|6|29|43714.89|0.08|0.00|N|O|1996-09-18|1996-10-18|1996-10-15|DELIVER IN PERSON|RAIL|refully si| +38510|30046|30047|7|43|41969.72|0.03|0.08|N|O|1996-10-03|1996-11-09|1996-10-30|COLLECT COD|AIR|among the furiously fina| +38511|966995|4553|1|31|63920.45|0.03|0.00|A|F|1992-07-08|1992-06-28|1992-08-03|DELIVER IN PERSON|REG AIR|structions; fluffily ironic no| +38511|277090|14606|2|18|19207.44|0.01|0.00|A|F|1992-09-08|1992-08-22|1992-09-15|TAKE BACK RETURN|FOB|y blithely even frets. furiously ironic d| +38511|49386|49387|3|39|52079.82|0.09|0.07|A|F|1992-08-11|1992-08-01|1992-09-04|TAKE BACK RETURN|REG AIR| carefully express packages int| +38511|27314|2315|4|6|7447.86|0.09|0.03|R|F|1992-07-05|1992-06-28|1992-07-29|COLLECT COD|REG AIR|lithely even p| +38511|59837|47341|5|34|61092.22|0.07|0.08|A|F|1992-06-27|1992-07-30|1992-07-15|COLLECT COD|REG AIR|thely. furiously even| +38511|678566|3593|6|19|29346.07|0.00|0.00|R|F|1992-08-10|1992-08-21|1992-08-16|DELIVER IN PERSON|MAIL|ross the slyly final accounts are| +38536|572540|35052|1|18|29025.36|0.10|0.07|A|F|1994-01-11|1993-12-17|1994-01-15|COLLECT COD|FOB| blithely final theodolites with the qui| +38536|677047|14587|2|34|34816.34|0.02|0.02|A|F|1993-12-28|1993-12-01|1994-01-13|TAKE BACK RETURN|SHIP| accounts cajol| +38536|122443|22444|3|36|52755.84|0.08|0.07|A|F|1994-01-13|1993-12-22|1994-01-20|NONE|TRUCK| blithely according to the | +38536|897708|22743|4|24|40935.84|0.01|0.08|R|F|1994-01-24|1993-11-22|1994-02-23|COLLECT COD|RAIL| nag blithely. blithely pending ide| +38536|766212|3758|5|14|17894.52|0.10|0.01|R|F|1993-11-27|1993-11-07|1993-12-09|TAKE BACK RETURN|SHIP|e the furiously specia| +38536|711442|23957|6|23|33428.43|0.10|0.04|A|F|1994-01-05|1993-11-16|1994-01-10|DELIVER IN PERSON|TRUCK|equests. carefull| +38537|611269|23782|1|16|18883.68|0.00|0.00|N|O|1995-10-13|1995-08-17|1995-10-18|COLLECT COD|TRUCK|tructions boost across the final packages| +38537|594324|44325|2|20|28366.00|0.06|0.01|N|O|1995-10-16|1995-09-04|1995-11-14|TAKE BACK RETURN|RAIL|hely pending theodolites | +38538|192254|42255|1|4|5385.00|0.01|0.08|N|O|1996-11-09|1996-10-21|1996-11-27|NONE|FOB|y bold patterns | +38538|205324|5325|2|46|56548.26|0.03|0.06|N|O|1996-11-12|1996-09-22|1996-11-19|NONE|AIR|sts sleep depos| +38538|868038|30556|3|4|4023.96|0.04|0.06|N|O|1996-11-01|1996-09-24|1996-11-18|COLLECT COD|SHIP|ggle about the regul| +38538|99390|49391|4|35|48628.65|0.02|0.04|N|O|1996-11-18|1996-09-04|1996-11-30|COLLECT COD|AIR|yly. blithely express asymptotes hagg| +38538|433043|45552|5|3|2928.06|0.06|0.07|N|O|1996-07-30|1996-09-29|1996-08-08|TAKE BACK RETURN|REG AIR|hins integrate idly| +38538|144389|31896|6|43|61635.34|0.00|0.02|N|O|1996-10-08|1996-08-29|1996-10-22|TAKE BACK RETURN|RAIL|uests. carefully | +38539|431233|18758|1|6|6985.26|0.06|0.02|R|F|1995-02-20|1995-03-19|1995-02-28|NONE|TRUCK|lly after | +38539|721569|46598|2|28|44534.84|0.06|0.06|A|F|1995-03-26|1995-04-18|1995-04-24|NONE|MAIL|e instructions. sp| +38539|408777|21286|3|44|74173.00|0.07|0.08|R|F|1995-03-31|1995-03-26|1995-04-26|NONE|TRUCK|unusual acc| +38539|310690|10691|4|31|52721.08|0.00|0.04|A|F|1995-04-20|1995-04-15|1995-04-23|DELIVER IN PERSON|MAIL| theodolites wake slyly fluf| +38539|755754|5755|5|37|66959.64|0.02|0.05|R|F|1995-04-23|1995-02-20|1995-05-10|DELIVER IN PERSON|TRUCK| to the slowly r| +38539|948164|23201|6|38|46060.56|0.02|0.03|R|F|1995-05-04|1995-03-29|1995-05-17|DELIVER IN PERSON|AIR|l, ironic reques| +38539|782412|44928|7|18|26898.84|0.06|0.07|R|F|1995-02-01|1995-03-13|1995-02-05|NONE|SHIP|y ironic ideas detect blithely r| +38540|982713|7752|1|3|5387.01|0.08|0.01|N|O|1998-04-24|1998-05-26|1998-04-27|DELIVER IN PERSON|REG AIR| even packages. carefully regular r| +38541|98314|48315|1|26|34120.06|0.09|0.07|N|O|1996-05-16|1996-03-30|1996-06-02|NONE|TRUCK| blithe sentiments d| +38541|360908|35923|2|33|64973.37|0.06|0.01|N|O|1996-05-02|1996-03-18|1996-05-11|DELIVER IN PERSON|FOB|packages. p| +38541|765502|28018|3|9|14107.23|0.10|0.04|N|O|1996-04-17|1996-05-07|1996-05-08|TAKE BACK RETURN|TRUCK|nding instructions along the foxes | +38542|987872|12911|1|14|27437.62|0.05|0.00|R|F|1994-01-15|1993-11-11|1994-01-17|DELIVER IN PERSON|REG AIR| quietly bold pack| +38542|156633|19137|2|23|38861.49|0.03|0.03|R|F|1993-10-22|1993-12-09|1993-11-02|NONE|RAIL|requests. carefully regula| +38542|521369|21370|3|42|58394.28|0.10|0.04|R|F|1993-11-28|1993-11-13|1993-12-06|COLLECT COD|FOB|ts according to the| +38542|636836|11861|4|42|74457.60|0.02|0.00|A|F|1993-11-11|1993-12-08|1993-12-05|TAKE BACK RETURN|FOB|ironic, even platelets. sl| +38542|296510|21521|5|28|42182.00|0.10|0.06|R|F|1994-01-05|1993-12-20|1994-02-01|COLLECT COD|AIR|s the blithely final packages; instructio| +38543|427883|27884|1|4|7243.44|0.01|0.01|A|F|1993-06-18|1993-05-03|1993-06-22|NONE|MAIL|ular ideas are furiously. regular, bold so| +38543|418622|31131|2|21|32352.60|0.02|0.07|A|F|1993-05-24|1993-06-07|1993-06-03|DELIVER IN PERSON|MAIL|arefully enticin| +38543|771649|34165|3|30|51618.30|0.09|0.06|A|F|1993-05-17|1993-05-25|1993-06-14|DELIVER IN PERSON|RAIL| pending instructions sleep. ste| +38568|731398|31399|1|23|32875.28|0.10|0.05|A|F|1992-07-21|1992-08-16|1992-08-18|TAKE BACK RETURN|AIR| ironic accounts affix fluffily pending g| +38568|597120|47121|2|17|20690.70|0.10|0.02|A|F|1992-06-24|1992-07-27|1992-07-06|NONE|FOB|. furiously blithe | +38568|788348|25894|3|25|35907.75|0.06|0.00|R|F|1992-06-16|1992-08-20|1992-06-26|COLLECT COD|MAIL|es wake quickly.| +38568|762198|24714|4|12|15121.92|0.05|0.03|A|F|1992-07-13|1992-08-05|1992-07-26|COLLECT COD|RAIL|ake about the | +38568|251324|38840|5|22|28056.82|0.10|0.01|A|F|1992-06-06|1992-08-18|1992-06-14|DELIVER IN PERSON|SHIP|requests wake among th| +38568|730|25731|6|38|61967.74|0.07|0.00|R|F|1992-07-27|1992-08-14|1992-08-04|TAKE BACK RETURN|SHIP| cajole slyly pending accounts. care| +38568|265314|15315|7|49|62685.70|0.01|0.00|R|F|1992-06-08|1992-08-17|1992-06-26|DELIVER IN PERSON|SHIP|l packages sleep according to the blit| +38569|127747|27748|1|44|78088.56|0.07|0.02|R|F|1992-06-27|1992-07-29|1992-07-13|NONE|SHIP|long the furiously ironic dolph| +38569|37627|12628|2|45|70407.90|0.02|0.01|R|F|1992-07-18|1992-08-17|1992-08-09|COLLECT COD|AIR|ts. daringly regular pint| +38569|396448|8956|3|28|43244.04|0.08|0.07|A|F|1992-06-27|1992-08-13|1992-07-10|DELIVER IN PERSON|SHIP|packages use blithely quick, even depos| +38570|382707|32708|1|20|35793.80|0.05|0.01|N|O|1995-09-19|1995-08-14|1995-10-19|COLLECT COD|MAIL|ld deposits. quickly final ide| +38570|143275|5778|2|32|42184.64|0.08|0.02|N|O|1995-10-09|1995-09-09|1995-10-20|COLLECT COD|TRUCK|blithely about | +38570|18797|31298|3|48|82357.92|0.00|0.02|N|O|1995-08-09|1995-08-07|1995-08-16|COLLECT COD|REG AIR|nts are. courts nag along the instruction| +38570|911145|23664|4|10|11561.00|0.02|0.04|N|O|1995-09-14|1995-08-23|1995-10-10|COLLECT COD|SHIP|ally after the furiously unusual attainmen| +38570|609190|46727|5|47|51660.52|0.04|0.03|N|O|1995-09-11|1995-08-30|1995-09-15|NONE|REG AIR|ely furiously express packages. ca| +38571|489591|27119|1|50|79028.50|0.10|0.05|A|F|1993-03-09|1993-04-17|1993-03-26|TAKE BACK RETURN|RAIL| ironic orbits sleep| +38571|549440|49441|2|47|70002.74|0.02|0.02|R|F|1993-02-24|1993-03-26|1993-03-16|DELIVER IN PERSON|RAIL|ularly unusual packages haggle atop| +38572|237200|12209|1|2|2274.38|0.07|0.08|N|O|1998-05-24|1998-04-23|1998-06-12|DELIVER IN PERSON|RAIL|l, special packages are theo| +38572|604935|4936|2|38|69916.20|0.02|0.03|N|O|1998-03-28|1998-05-11|1998-04-04|NONE|TRUCK|theodolites. quickly regular gifts ru| +38572|135134|35135|3|40|46765.20|0.00|0.06|N|O|1998-03-13|1998-05-14|1998-04-09|TAKE BACK RETURN|AIR|ies haggle. furiously| +38572|187800|304|4|49|92502.20|0.10|0.01|N|O|1998-03-04|1998-05-17|1998-03-28|DELIVER IN PERSON|TRUCK|nusual instruct| +38572|353568|3569|5|41|66483.55|0.02|0.00|N|O|1998-05-31|1998-04-22|1998-06-26|NONE|SHIP|y alongside of the furiously exp| +38573|473421|35931|1|32|44620.80|0.03|0.00|N|O|1998-07-29|1998-08-30|1998-08-06|COLLECT COD|REG AIR|ggle across the special | +38573|778486|16032|2|11|17208.95|0.02|0.01|N|O|1998-07-11|1998-07-27|1998-08-06|DELIVER IN PERSON|MAIL|nic foxes sleep; packages are bli| +38573|999439|24478|3|13|19999.07|0.07|0.04|N|O|1998-07-11|1998-08-03|1998-07-14|DELIVER IN PERSON|REG AIR| ideas use around t| +38573|557705|20217|4|1|1762.68|0.07|0.05|N|O|1998-09-08|1998-09-08|1998-09-09|NONE|AIR|counts cajole above t| +38573|341664|29183|5|26|44346.90|0.04|0.03|N|O|1998-07-19|1998-09-01|1998-07-21|NONE|REG AIR|dolites. furiously unusual| +38573|335721|10734|6|4|7026.84|0.03|0.04|N|O|1998-08-24|1998-07-26|1998-09-09|NONE|AIR| hockey players h| +38573|458039|45567|7|11|10967.11|0.03|0.08|N|O|1998-10-01|1998-08-14|1998-10-26|NONE|REG AIR|r dependenc| +38574|245545|33058|1|33|49187.49|0.01|0.01|N|O|1995-06-24|1995-04-16|1995-07-07|DELIVER IN PERSON|AIR|le carefully even, regular deposits| +38574|872553|10105|2|15|22882.65|0.01|0.04|R|F|1995-06-06|1995-05-23|1995-06-12|NONE|REG AIR| packages wake. ironic, regular pi| +38574|987787|37788|3|29|54367.46|0.03|0.07|N|F|1995-06-13|1995-05-20|1995-07-05|NONE|RAIL|its. blithely final dinos wake blit| +38575|690759|3273|1|13|22746.36|0.00|0.07|A|F|1995-04-14|1995-03-04|1995-04-26|DELIVER IN PERSON|TRUCK|ver regular requests| +38575|576946|39458|2|21|42481.32|0.10|0.01|R|F|1995-02-12|1995-04-04|1995-03-07|TAKE BACK RETURN|RAIL|ic theodolites| +38575|716668|16669|3|28|47169.64|0.09|0.01|A|F|1995-02-02|1995-04-18|1995-03-02|DELIVER IN PERSON|AIR|sual accounts | +38575|34245|21746|4|39|45990.36|0.02|0.05|A|F|1995-03-05|1995-03-14|1995-04-04|DELIVER IN PERSON|RAIL|counts according to the slyly final accoun| +38600|753003|40549|1|31|32735.07|0.05|0.01|R|F|1994-08-08|1994-07-31|1994-08-19|NONE|TRUCK|requests. slyly bold| +38600|712017|12018|2|43|44246.14|0.00|0.06|A|F|1994-08-06|1994-08-02|1994-08-25|NONE|TRUCK| are. special| +38600|861424|23942|3|21|29092.98|0.07|0.03|R|F|1994-08-05|1994-08-05|1994-08-23|TAKE BACK RETURN|AIR| carefully re| +38600|952174|39732|4|21|25748.73|0.09|0.00|R|F|1994-07-14|1994-08-03|1994-08-04|NONE|AIR|furiously regular foxes boost. special idea| +38600|171740|34244|5|7|12682.18|0.07|0.07|R|F|1994-09-12|1994-07-24|1994-09-15|TAKE BACK RETURN|REG AIR|of the ironic, final notornis haggle qu| +38601|183849|33850|1|29|56052.36|0.01|0.04|N|O|1997-03-17|1997-04-29|1997-04-05|NONE|MAIL|haggle among the special pa| +38601|934318|34319|2|40|54090.80|0.09|0.01|N|O|1997-04-26|1997-03-30|1997-04-30|NONE|RAIL|the regular, even accounts haggle c| +38601|81718|31719|3|28|47591.88|0.01|0.05|N|O|1997-05-01|1997-04-20|1997-05-20|DELIVER IN PERSON|SHIP|usly pending de| +38601|423942|36451|4|48|89564.16|0.09|0.00|N|O|1997-04-28|1997-03-23|1997-05-08|COLLECT COD|RAIL|lyly final foxes hag| +38601|181140|18650|5|44|53730.16|0.05|0.00|N|O|1997-05-24|1997-04-03|1997-06-23|DELIVER IN PERSON|FOB|unts. final, bold | +38601|406998|19507|6|44|83818.68|0.00|0.03|N|O|1997-03-22|1997-05-01|1997-03-30|DELIVER IN PERSON|REG AIR|dle alongside of the carefully regular req| +38602|811829|36862|1|16|27852.48|0.07|0.02|N|O|1995-09-12|1995-07-27|1995-10-05|NONE|SHIP|ccording to| +38602|393219|18234|2|5|6561.00|0.09|0.05|N|O|1995-08-18|1995-06-25|1995-08-29|DELIVER IN PERSON|SHIP|ithely regular instructions. dogg| +38603|123253|48258|1|5|6381.25|0.08|0.00|A|F|1992-09-02|1992-08-23|1992-09-25|NONE|RAIL|e blithely along the blithely regular inst| +38604|398383|10891|1|43|63698.91|0.06|0.08|N|O|1996-04-17|1996-03-27|1996-05-15|COLLECT COD|SHIP|ss deposits. | +38604|621174|46199|2|45|49281.30|0.07|0.07|N|O|1996-03-06|1996-05-01|1996-03-29|DELIVER IN PERSON|AIR|ng theodolites across t| +38605|594566|44567|1|41|68082.14|0.09|0.03|N|O|1995-11-15|1995-09-26|1995-11-16|TAKE BACK RETURN|AIR|e the quickly spe| +38605|861887|36922|2|17|31430.28|0.10|0.07|N|O|1995-08-19|1995-10-09|1995-08-22|NONE|TRUCK|lyly silent foxes are slyly. accounts haggl| +38605|724901|49930|3|22|42369.14|0.06|0.07|N|O|1995-11-21|1995-11-05|1995-12-02|DELIVER IN PERSON|TRUCK|lly bold pinto be| +38605|399883|12391|4|29|57503.23|0.08|0.04|N|O|1995-12-04|1995-10-08|1995-12-16|NONE|REG AIR|es haggle slyly despite the dep| +38605|824650|37167|5|15|23619.15|0.05|0.04|N|O|1995-10-12|1995-11-07|1995-11-11|COLLECT COD|MAIL|y. furiously final pinto | +38606|374383|36891|1|17|24775.29|0.02|0.02|R|F|1993-12-21|1993-10-19|1994-01-11|DELIVER IN PERSON|TRUCK|ording to the special, regular excuses cou| +38606|254133|16639|2|47|51094.64|0.04|0.08|R|F|1993-10-05|1993-09-30|1993-10-28|TAKE BACK RETURN|REG AIR|kly ironic accounts nag | +38606|202041|2042|3|12|11316.36|0.00|0.02|R|F|1993-11-24|1993-09-25|1993-12-20|TAKE BACK RETURN|AIR|ending pack| +38606|689411|39412|4|5|7001.90|0.09|0.02|A|F|1993-11-01|1993-10-01|1993-11-06|DELIVER IN PERSON|FOB|slyly regular patterns| +38607|302849|27862|1|40|74073.20|0.03|0.04|N|O|1996-03-02|1996-03-18|1996-03-06|COLLECT COD|AIR|s affix. quic| +38607|969823|44862|2|28|52997.84|0.04|0.06|N|O|1996-05-09|1996-02-26|1996-05-28|TAKE BACK RETURN|FOB|ake across the blithely unus| +38607|805731|5732|3|21|34370.49|0.00|0.07|N|O|1996-03-10|1996-02-10|1996-03-29|TAKE BACK RETURN|SHIP|sly regular packages according to the id| +38632|602435|14948|1|7|9361.80|0.01|0.04|N|O|1995-10-07|1995-09-21|1995-10-28|COLLECT COD|AIR|intain fluffily quickly p| +38632|116680|4187|2|17|28843.56|0.09|0.07|N|O|1995-11-05|1995-11-04|1995-11-12|TAKE BACK RETURN|MAIL|intain slyl| +38632|33146|20647|3|45|48561.30|0.08|0.07|N|O|1995-09-26|1995-11-03|1995-10-18|NONE|TRUCK|ear the slyly even deposits. car| +38632|76002|13506|4|45|44010.00|0.00|0.01|N|O|1995-09-09|1995-10-17|1995-10-06|NONE|TRUCK|deas doze carefully. ironic, bold deposi| +38632|365073|2595|5|19|21623.14|0.03|0.08|N|O|1995-10-27|1995-09-29|1995-11-04|DELIVER IN PERSON|TRUCK|side of the furiously special pa| +38633|184570|34571|1|2|3309.14|0.07|0.04|A|F|1992-10-10|1992-08-05|1992-10-11|DELIVER IN PERSON|FOB|nal, bold theodolit| +38633|62710|37713|2|5|8363.55|0.07|0.01|A|F|1992-09-29|1992-08-22|1992-10-06|DELIVER IN PERSON|FOB|osits. furiously even dolphi| +38633|955861|30900|3|9|17251.38|0.05|0.03|A|F|1992-09-19|1992-08-22|1992-10-05|DELIVER IN PERSON|MAIL|es nag carefully according to the special p| +38633|146457|21462|4|28|42096.60|0.04|0.01|A|F|1992-08-13|1992-08-08|1992-08-19|DELIVER IN PERSON|AIR|s. blithely regular dep| +38633|493529|18548|5|23|35017.50|0.00|0.03|R|F|1992-10-19|1992-08-25|1992-11-03|DELIVER IN PERSON|FOB|accounts grow ironically about the| +38633|737773|288|6|35|63375.90|0.00|0.07|R|F|1992-09-10|1992-09-16|1992-09-27|COLLECT COD|RAIL|xes. regular requests against the| +38633|735412|35413|7|31|44868.78|0.01|0.02|A|F|1992-09-30|1992-08-24|1992-10-26|NONE|RAIL|thely ironic depo| +38634|53818|28821|1|35|62013.35|0.06|0.03|R|F|1994-05-30|1994-05-24|1994-06-08|TAKE BACK RETURN|REG AIR|y ironic asymptotes. bold platelets| +38635|935211|22766|1|17|21184.89|0.07|0.03|R|F|1994-05-21|1994-05-27|1994-05-25|NONE|AIR|blithely ironic | +38635|88593|1095|2|42|66426.78|0.00|0.02|R|F|1994-06-26|1994-07-22|1994-07-23|TAKE BACK RETURN|TRUCK|ntiments. fluffily final platelets i| +38636|315739|3258|1|5|8773.60|0.07|0.05|N|O|1998-08-05|1998-06-21|1998-08-21|COLLECT COD|MAIL|r the final accounts. furiously ironic | +38636|618383|18384|2|50|65067.50|0.10|0.02|N|O|1998-07-18|1998-06-19|1998-07-22|TAKE BACK RETURN|FOB|ual requests wake blithely. expr| +38636|151811|14315|3|41|76375.21|0.03|0.04|N|O|1998-06-20|1998-07-24|1998-07-01|COLLECT COD|RAIL|ost slyly after the even accounts. fur| +38636|477061|2080|4|15|15570.60|0.08|0.05|N|O|1998-08-18|1998-06-15|1998-08-28|COLLECT COD|RAIL|xes. final, even platelets could are fluffi| +38636|957731|45289|5|35|62604.15|0.07|0.07|N|O|1998-08-25|1998-06-08|1998-08-28|NONE|MAIL|dolites are around the slyly reg| +38636|570848|8382|6|27|51808.14|0.07|0.06|N|O|1998-06-26|1998-07-27|1998-07-11|COLLECT COD|RAIL|inal deposit| +38637|693818|31358|1|4|7247.12|0.03|0.02|A|F|1992-10-01|1992-11-30|1992-10-29|TAKE BACK RETURN|MAIL|ending, regular grouches| +38637|993210|5730|2|14|18244.38|0.10|0.01|A|F|1992-12-14|1992-11-03|1992-12-15|TAKE BACK RETURN|REG AIR|ic excuses. fluff| +38637|868872|31390|3|2|3681.66|0.04|0.08|A|F|1992-10-30|1992-11-19|1992-11-07|COLLECT COD|REG AIR|ges. slyly express platelets nag| +38637|115439|15440|4|23|33451.89|0.03|0.01|R|F|1992-12-06|1992-12-05|1992-12-10|DELIVER IN PERSON|AIR| ironic packages. furiously express pla| +38638|957533|45091|1|13|20676.37|0.09|0.02|R|F|1993-10-05|1993-10-10|1993-10-30|NONE|REG AIR|alms nag along the special, pending d| +38638|254385|29396|2|25|33484.25|0.04|0.03|A|F|1993-10-03|1993-09-21|1993-10-25|TAKE BACK RETURN|RAIL|slyly even foxes haggle quickly o| +38638|435840|23365|3|20|35516.40|0.03|0.08|A|F|1993-11-30|1993-09-13|1993-12-12|DELIVER IN PERSON|AIR|he slyly unusual packages haggle alongsid| +38638|160511|48021|4|10|15715.10|0.03|0.00|A|F|1993-12-09|1993-09-20|1993-12-29|COLLECT COD|TRUCK|y above the unusu| +38638|706557|31586|5|32|50032.64|0.08|0.05|R|F|1993-11-26|1993-10-25|1993-12-15|TAKE BACK RETURN|REG AIR|cuses. express excuses boost | +38638|88182|38183|6|43|50317.74|0.05|0.04|R|F|1993-09-07|1993-09-17|1993-09-12|TAKE BACK RETURN|RAIL|y packages. special, silent theod| +38638|65436|27938|7|36|50451.48|0.05|0.00|A|F|1993-10-07|1993-10-01|1993-10-17|COLLECT COD|TRUCK|ependencies. slyly | +38639|778040|3071|1|47|52546.47|0.01|0.00|R|F|1994-04-18|1994-03-19|1994-04-30|TAKE BACK RETURN|SHIP|mptotes cajole along the furiousl| +38639|507678|20189|2|17|28656.05|0.03|0.07|R|F|1994-03-30|1994-02-15|1994-04-18|NONE|TRUCK|tes are carefully around the bold, enticing| +38639|536156|36157|3|18|21458.34|0.02|0.01|R|F|1994-02-25|1994-02-25|1994-02-28|NONE|SHIP|bout the quickly final platelets. ins| +38664|601860|1861|1|27|47569.41|0.01|0.07|A|F|1993-04-03|1993-03-23|1993-04-11|NONE|FOB|ay carefully furiously pending theodolites.| +38664|453024|15534|2|17|16609.00|0.03|0.04|R|F|1993-03-02|1993-03-08|1993-03-25|NONE|TRUCK|e above the pinto beans. express| +38664|960009|22529|3|1|1068.96|0.01|0.02|A|F|1993-02-04|1993-03-10|1993-02-13|NONE|SHIP|ironic sentiments. final package| +38664|870790|45825|4|7|12325.25|0.01|0.00|A|F|1993-02-14|1993-03-04|1993-02-21|COLLECT COD|MAIL| slyly regular | +38665|562432|37455|1|31|46326.71|0.06|0.05|N|O|1998-07-15|1998-06-09|1998-08-10|DELIVER IN PERSON|TRUCK|regular requests. express asymptotes boost| +38665|780368|17914|2|38|55036.54|0.09|0.00|N|O|1998-07-03|1998-05-26|1998-07-04|DELIVER IN PERSON|MAIL|te blithely alongside of the sile| +38665|642976|42977|3|13|24946.22|0.03|0.07|N|O|1998-07-02|1998-06-20|1998-07-11|COLLECT COD|MAIL|eposits wake blith| +38665|485037|22565|4|31|31682.31|0.07|0.06|N|O|1998-05-08|1998-05-25|1998-05-15|NONE|RAIL|ctions sleep car| +38665|2336|2337|5|15|18574.95|0.06|0.07|N|O|1998-06-08|1998-06-26|1998-06-19|TAKE BACK RETURN|TRUCK|al accounts. ironic theodol| +38665|255863|5864|6|46|83667.10|0.07|0.05|N|O|1998-07-22|1998-06-21|1998-08-04|TAKE BACK RETURN|FOB|e regular, regular idea| +38665|288507|13518|7|38|56828.62|0.00|0.04|N|O|1998-07-04|1998-05-14|1998-07-29|TAKE BACK RETURN|RAIL|to beans nag. ir| +38666|932911|20466|1|50|97193.50|0.02|0.06|R|F|1995-02-08|1994-12-28|1995-03-02|NONE|MAIL|carefully even ideas wake | +38667|623334|35847|1|28|35204.40|0.01|0.04|A|F|1993-09-04|1993-07-26|1993-09-16|DELIVER IN PERSON|REG AIR| express asymptotes serve cl| +38667|361370|48892|2|26|37215.36|0.00|0.06|A|F|1993-07-07|1993-08-09|1993-07-23|TAKE BACK RETURN|SHIP|y bold requests. furiously | +38667|532172|7193|3|17|20470.55|0.05|0.03|A|F|1993-08-10|1993-08-07|1993-08-21|NONE|MAIL| x-ray furiously. slyly final foxes | +38667|207437|19942|4|46|61843.32|0.04|0.06|A|F|1993-08-25|1993-07-17|1993-09-15|COLLECT COD|SHIP|ffily across the slyly regular packa| +38667|382301|7316|5|19|26282.51|0.03|0.04|A|F|1993-07-06|1993-07-28|1993-07-23|NONE|MAIL|stead of the instruct| +38667|328292|28293|6|9|11882.52|0.08|0.05|R|F|1993-06-24|1993-07-31|1993-07-07|COLLECT COD|FOB|c platelets nag quick| +38667|595940|20963|7|43|87544.56|0.01|0.01|R|F|1993-07-15|1993-08-10|1993-08-06|TAKE BACK RETURN|AIR|uriously along the furi| +38668|953527|41085|1|23|36351.04|0.01|0.06|A|F|1992-05-05|1992-06-03|1992-05-17|COLLECT COD|AIR|en pains wake sometimes aga| +38668|916515|4070|2|48|73510.56|0.07|0.06|R|F|1992-04-09|1992-05-07|1992-04-25|COLLECT COD|RAIL|regular pinto beans boost after the f| +38668|858177|33212|3|32|36324.16|0.06|0.04|R|F|1992-04-11|1992-06-02|1992-04-21|TAKE BACK RETURN|FOB|the requests. excuses are furiously a| +38668|369689|7211|4|28|49242.76|0.07|0.06|A|F|1992-05-06|1992-06-11|1992-05-24|COLLECT COD|REG AIR|ic foxes wake blithely. furi| +38668|355041|17549|5|43|47129.29|0.05|0.01|R|F|1992-04-03|1992-05-31|1992-04-11|NONE|SHIP|usual wart| +38668|162203|49713|6|44|55668.80|0.05|0.08|R|F|1992-05-24|1992-05-11|1992-06-04|TAKE BACK RETURN|RAIL|integrate slyly final ideas. slyly| +38669|170335|32839|1|5|7026.65|0.01|0.02|N|O|1997-02-07|1996-12-05|1997-03-05|NONE|FOB|y according to the carefully | +38669|813090|38123|2|28|28085.40|0.10|0.02|N|O|1996-12-08|1996-12-31|1996-12-20|TAKE BACK RETURN|TRUCK| platelets above the fluffily f| +38669|601341|13854|3|44|54661.64|0.07|0.01|N|O|1996-12-07|1997-01-18|1996-12-13|TAKE BACK RETURN|MAIL|s solve carefully about the blithel| +38669|729447|4476|4|34|50197.94|0.08|0.03|N|O|1996-11-05|1996-12-26|1996-11-18|COLLECT COD|FOB|even requests believe | +38669|811371|48920|5|4|5129.32|0.01|0.04|N|O|1996-11-18|1997-01-16|1996-11-23|DELIVER IN PERSON|MAIL|ously special requests boost| +38670|96329|46330|1|17|22530.44|0.07|0.05|A|F|1994-11-06|1994-09-11|1994-11-16|NONE|RAIL| the quickly specia| +38670|988565|26123|2|8|13228.16|0.09|0.02|R|F|1994-08-15|1994-08-16|1994-08-26|DELIVER IN PERSON|FOB|ccording to the ironic theodo| +38670|798459|36005|3|43|66969.06|0.09|0.00|A|F|1994-08-14|1994-08-18|1994-09-13|NONE|REG AIR|ress requests. reg| +38671|510318|35339|1|31|41176.99|0.08|0.04|N|O|1998-10-24|1998-10-12|1998-11-11|COLLECT COD|RAIL|he quickly even packages wake | +38671|906082|6083|2|27|29377.08|0.01|0.07|N|O|1998-10-03|1998-10-09|1998-10-26|NONE|AIR| slyly furiously unusual deposits. furiou| +38671|510205|35226|3|8|9721.44|0.10|0.08|N|O|1998-10-03|1998-09-03|1998-10-14|COLLECT COD|RAIL|ar accounts. dep| +38696|837104|24653|1|4|4164.24|0.02|0.01|R|F|1995-05-26|1995-05-10|1995-06-05|DELIVER IN PERSON|TRUCK|foxes boost carefully a| +38696|195245|20252|2|6|8041.44|0.04|0.07|N|F|1995-06-07|1995-04-30|1995-07-04|TAKE BACK RETURN|RAIL|egular warhorses. ironic instruc| +38696|474250|36760|3|13|15914.99|0.05|0.00|A|F|1995-04-02|1995-05-16|1995-04-12|TAKE BACK RETURN|SHIP|ly silent foxes are. depos| +38697|962572|130|1|1|1634.53|0.09|0.07|R|F|1994-07-11|1994-06-18|1994-07-23|COLLECT COD|REG AIR|t quickly. final theodol| +38697|942071|4590|2|41|45634.23|0.05|0.06|A|F|1994-08-15|1994-06-24|1994-08-30|COLLECT COD|MAIL|egular instructions. blithely regular pack| +38697|375309|37817|3|2|2768.58|0.09|0.01|R|F|1994-06-28|1994-06-13|1994-07-06|COLLECT COD|TRUCK|he carefully pending ideas. regula| +38698|819798|32315|1|26|44661.50|0.02|0.01|N|O|1995-09-10|1995-08-22|1995-09-29|COLLECT COD|SHIP| instructions are after the qu| +38698|340073|2580|2|18|20035.08|0.00|0.07|N|O|1995-09-19|1995-09-13|1995-10-14|COLLECT COD|SHIP|s snooze above the slyly re| +38698|594583|32117|3|16|26840.96|0.00|0.04|N|O|1995-11-02|1995-08-24|1995-11-18|TAKE BACK RETURN|REG AIR|ic, regular deposits detect slyly | +38698|143511|31018|4|45|69952.95|0.08|0.02|N|O|1995-08-06|1995-08-12|1995-08-25|DELIVER IN PERSON|REG AIR|carefully unus| +38698|980669|5708|5|26|45490.12|0.09|0.06|N|O|1995-07-21|1995-08-17|1995-08-10|NONE|SHIP|lites. special accounts sleep| +38698|101797|39304|6|33|59360.07|0.02|0.04|N|O|1995-08-15|1995-09-29|1995-08-28|DELIVER IN PERSON|RAIL| carefully special deposits. pa| +38698|890997|40998|7|20|39759.00|0.06|0.04|N|O|1995-09-16|1995-09-26|1995-09-17|COLLECT COD|SHIP|ic, even excuses. stealthily| +38699|979465|4504|1|16|24710.72|0.01|0.03|A|F|1993-08-03|1993-05-31|1993-08-08|COLLECT COD|FOB| carefully careful instructions | +38699|861976|37011|2|32|62013.76|0.00|0.01|A|F|1993-08-28|1993-06-06|1993-09-02|TAKE BACK RETURN|TRUCK|lar, final accounts. blithely s| +38699|227853|15366|3|47|83699.48|0.08|0.04|A|F|1993-06-23|1993-07-13|1993-07-10|NONE|TRUCK|regular packages across the carefull| +38699|522105|34616|4|46|51845.68|0.01|0.02|R|F|1993-08-05|1993-07-24|1993-09-04|DELIVER IN PERSON|RAIL|ronic dependencies wake. ironic, dogged acc| +38699|3908|16409|5|45|81535.50|0.10|0.04|R|F|1993-07-26|1993-06-20|1993-08-22|TAKE BACK RETURN|AIR|sly bold foxes. pinto beans haggle unus| +38699|678578|41092|6|13|20235.02|0.00|0.04|R|F|1993-06-27|1993-07-15|1993-07-10|NONE|FOB|ove the furiously regular accounts are sl| +38700|639648|2161|1|41|65092.01|0.04|0.03|N|O|1998-05-25|1998-03-04|1998-06-16|DELIVER IN PERSON|SHIP|le carefully; blithely final deposits abo| +38700|561097|36120|2|39|45164.73|0.01|0.06|N|O|1998-02-14|1998-04-16|1998-03-05|NONE|AIR| asymptotes im| +38700|345674|45675|3|8|13757.28|0.09|0.02|N|O|1998-04-09|1998-03-13|1998-04-23|DELIVER IN PERSON|REG AIR|nts. ironically unusual accounts sleep.| +38700|733298|20841|4|29|38606.54|0.08|0.05|N|O|1998-03-16|1998-04-04|1998-04-14|COLLECT COD|RAIL|ages cajole sly| +38700|537488|12509|5|28|42712.88|0.08|0.05|N|O|1998-03-11|1998-03-06|1998-03-28|COLLECT COD|MAIL|ic asymptotes. carefu| +38700|549371|36902|6|31|44030.85|0.03|0.02|N|O|1998-02-14|1998-03-02|1998-02-24|DELIVER IN PERSON|REG AIR|ymptotes integrate. slyl| +38700|265925|15926|7|14|26472.74|0.04|0.00|N|O|1998-04-05|1998-03-21|1998-04-25|COLLECT COD|TRUCK|inal Tiresias. unusual dolphins cajole a| +38701|395020|7528|1|31|34565.31|0.02|0.05|N|O|1995-12-23|1996-02-03|1996-01-06|DELIVER IN PERSON|TRUCK|odolites. regular,| +38701|94212|44213|2|40|48248.40|0.06|0.06|N|O|1996-01-19|1995-12-23|1996-01-24|NONE|SHIP|among the slyl| +38702|785201|35202|1|16|20578.72|0.06|0.05|A|F|1993-01-20|1993-02-22|1993-01-27|DELIVER IN PERSON|MAIL|refully final packages detect | +38702|870757|8309|2|46|79474.66|0.03|0.07|R|F|1993-01-14|1993-02-13|1993-02-06|DELIVER IN PERSON|SHIP|express, final warhorses| +38702|804510|29543|3|12|16973.64|0.02|0.03|R|F|1993-03-10|1993-02-16|1993-03-26|NONE|SHIP|boost furiou| +38702|383567|21089|4|19|31360.45|0.10|0.07|R|F|1993-01-04|1993-03-12|1993-01-23|DELIVER IN PERSON|REG AIR|ounts nag carefull| +38702|598211|23234|5|46|60222.74|0.10|0.03|A|F|1993-03-16|1993-02-21|1993-03-28|DELIVER IN PERSON|FOB|refully ev| +38703|846297|33846|1|23|28594.75|0.07|0.07|A|F|1994-12-16|1995-01-18|1994-12-27|TAKE BACK RETURN|TRUCK|lyly final grouches.| +38728|996636|34194|1|7|12128.13|0.04|0.01|N|O|1997-01-30|1996-12-27|1997-02-14|COLLECT COD|FOB|he careful| +38728|461119|23629|2|28|30242.52|0.09|0.00|N|O|1996-11-21|1997-02-01|1996-12-10|TAKE BACK RETURN|MAIL|counts cajole slyly | +38728|24710|49711|3|8|13077.68|0.07|0.02|N|O|1997-02-15|1996-12-11|1997-02-26|DELIVER IN PERSON|FOB|he blithely express sauternes bo| +38728|300455|37974|4|33|48029.52|0.01|0.03|N|O|1996-12-26|1996-12-13|1997-01-09|DELIVER IN PERSON|TRUCK|otes. ironic, regul| +38728|732165|19708|5|14|16759.82|0.10|0.06|N|O|1997-01-16|1997-01-24|1997-01-20|COLLECT COD|FOB|s haggle. fluffily regular reque| +38729|541685|29216|1|39|67339.74|0.06|0.06|R|F|1994-08-28|1994-09-11|1994-09-25|TAKE BACK RETURN|SHIP| furiously according to the carefully fina| +38729|97907|35411|2|44|83815.60|0.04|0.08|R|F|1994-10-09|1994-08-22|1994-10-11|NONE|MAIL|t quickly of the| +38729|511183|23694|3|43|51348.88|0.08|0.03|A|F|1994-10-24|1994-09-20|1994-11-19|COLLECT COD|REG AIR| dependencies wake care| +38729|446404|21421|4|24|32409.12|0.04|0.02|R|F|1994-10-05|1994-09-02|1994-10-10|NONE|REG AIR|. slyly even foxes cajol| +38730|818589|18590|1|17|25628.18|0.00|0.08|N|O|1997-07-28|1997-08-21|1997-07-29|DELIVER IN PERSON|REG AIR|press ideas.| +38730|22270|47271|2|46|54844.42|0.03|0.00|N|O|1997-06-11|1997-07-17|1997-07-04|DELIVER IN PERSON|RAIL|y along the | +38730|288918|38919|3|34|64834.60|0.02|0.06|N|O|1997-08-16|1997-08-01|1997-08-23|COLLECT COD|TRUCK|ccounts. furiou| +38730|834720|22269|4|50|82734.00|0.04|0.06|N|O|1997-08-29|1997-08-20|1997-09-08|TAKE BACK RETURN|RAIL|wake carefully warhorses. expre| +38730|132687|45190|5|13|22355.84|0.03|0.06|N|O|1997-08-27|1997-08-16|1997-09-20|COLLECT COD|RAIL| blithely regular packages. unus| +38731|862649|25167|1|1|1611.60|0.03|0.01|N|O|1998-08-24|1998-09-30|1998-08-25|NONE|AIR|ole. blithely unu| +38731|536456|11477|2|39|58204.77|0.02|0.04|N|O|1998-10-12|1998-08-11|1998-11-03|DELIVER IN PERSON|AIR| fluffily even accounts. fluffily ironic | +38731|207553|32562|3|27|39434.58|0.10|0.03|N|O|1998-09-07|1998-08-10|1998-10-03|COLLECT COD|FOB|onic packages. final foxes hinder | +38731|335740|10753|4|20|35514.60|0.01|0.00|N|O|1998-09-21|1998-08-30|1998-10-19|TAKE BACK RETURN|MAIL|xcuses-- pack| +38731|765599|40630|5|42|69911.52|0.08|0.02|N|O|1998-09-03|1998-08-15|1998-09-21|DELIVER IN PERSON|FOB|le permanentl| +38732|20671|8172|1|41|65258.47|0.09|0.01|R|F|1993-05-11|1993-05-04|1993-06-02|COLLECT COD|REG AIR|aggle blithely s| +38733|581309|18843|1|24|33366.72|0.00|0.04|R|F|1995-04-14|1995-03-31|1995-04-19|DELIVER IN PERSON|TRUCK|xes. pending, idle ideas detect b| +38733|58835|8836|2|30|53814.90|0.01|0.00|R|F|1995-05-03|1995-03-13|1995-05-05|NONE|AIR|usly even accounts. slyly even req| +38733|824519|49552|3|44|63512.68|0.04|0.07|A|F|1995-05-07|1995-03-13|1995-05-26|DELIVER IN PERSON|MAIL|l pains wake carefu| +38733|675094|25095|4|20|21381.20|0.09|0.00|A|F|1995-03-12|1995-04-10|1995-04-02|DELIVER IN PERSON|RAIL|ly bold requests. eve| +38734|384746|47254|1|13|23799.49|0.07|0.06|A|F|1994-12-05|1994-12-26|1994-12-08|TAKE BACK RETURN|FOB| beans. final | +38734|420417|7942|2|14|18723.46|0.05|0.00|R|F|1994-12-18|1994-11-26|1995-01-04|NONE|REG AIR|y ironic packages use? special deposits a| +38735|748181|48182|1|5|6145.75|0.00|0.05|R|F|1992-01-29|1992-03-10|1992-02-20|TAKE BACK RETURN|MAIL|quickly pending accounts. careful| +38735|671043|21044|2|42|42588.42|0.05|0.04|A|F|1992-03-22|1992-03-19|1992-04-12|DELIVER IN PERSON|SHIP|refully alongside of the even platelets. fi| +38735|217417|4930|3|49|65385.60|0.09|0.03|A|F|1992-03-08|1992-02-21|1992-04-01|NONE|FOB|e deposits after the | +38735|114378|1885|4|11|15316.07|0.06|0.03|A|F|1992-02-15|1992-04-14|1992-02-28|COLLECT COD|RAIL|aring, bold f| +38735|349391|11898|5|2|2880.76|0.01|0.06|A|F|1992-04-18|1992-03-09|1992-05-10|NONE|REG AIR|he attainments.| +38760|675105|37619|1|6|6480.42|0.06|0.02|R|F|1994-08-02|1994-08-05|1994-08-07|TAKE BACK RETURN|RAIL|ending foxes haggle furiously s| +38760|474478|12006|2|17|24691.65|0.08|0.06|R|F|1994-06-25|1994-08-13|1994-07-18|COLLECT COD|SHIP|the regular, final excuse| +38760|542184|17205|3|3|3678.48|0.04|0.01|R|F|1994-07-23|1994-07-18|1994-08-02|DELIVER IN PERSON|FOB|pinto beans against the s| +38760|474094|11622|4|7|7476.49|0.03|0.01|R|F|1994-09-19|1994-07-21|1994-10-08|TAKE BACK RETURN|AIR|uriously above the regular ideas. caref| +38760|92019|29523|5|49|49539.49|0.01|0.01|R|F|1994-09-02|1994-07-07|1994-09-30|DELIVER IN PERSON|MAIL| quiet warthogs. even de| +38760|553694|16206|6|38|66411.46|0.03|0.00|A|F|1994-07-19|1994-07-14|1994-07-30|COLLECT COD|RAIL|ic package| +38761|378268|3283|1|14|18847.50|0.02|0.07|R|F|1993-02-19|1993-01-06|1993-03-04|COLLECT COD|SHIP| deposits around the deposits wake car| +38761|540038|40039|2|1|1078.01|0.09|0.01|A|F|1992-12-01|1993-02-04|1992-12-18|DELIVER IN PERSON|TRUCK|ld attainments. bli| +38761|413182|25691|3|50|54758.00|0.10|0.07|R|F|1993-03-08|1993-02-05|1993-04-03|DELIVER IN PERSON|FOB| excuses cajole slyly even, pendin| +38761|343228|30747|4|29|36865.09|0.05|0.07|A|F|1993-01-21|1993-01-03|1993-02-15|DELIVER IN PERSON|RAIL|s use slyl| +38761|625857|25858|5|30|53484.60|0.03|0.00|R|F|1993-01-04|1993-02-22|1993-01-11|TAKE BACK RETURN|FOB|sits; foxes alongside o| +38761|775987|13533|6|9|18566.55|0.02|0.00|A|F|1992-12-31|1992-12-29|1993-01-11|DELIVER IN PERSON|SHIP|ld platelets after the car| +38762|470807|8335|1|13|23111.14|0.03|0.04|N|O|1998-02-02|1998-03-08|1998-02-08|NONE|MAIL|pecial instr| +38763|784596|22142|1|6|10083.36|0.01|0.02|N|O|1995-12-02|1995-12-24|1995-12-26|DELIVER IN PERSON|REG AIR|lly express requests serve furiously| +38763|688893|13920|2|48|90329.28|0.07|0.07|N|O|1995-12-25|1996-01-31|1996-01-06|DELIVER IN PERSON|AIR|regularly quick theodo| +38763|219807|44816|3|21|36262.59|0.09|0.07|N|O|1995-12-01|1996-01-27|1995-12-13|COLLECT COD|RAIL|slyly final asymptotes cajole. slyl| +38763|283156|45662|4|31|35313.34|0.04|0.04|N|O|1995-12-19|1996-01-04|1995-12-24|DELIVER IN PERSON|MAIL|xpress instructions: furiously unus| +38764|258985|33996|1|41|79702.77|0.03|0.02|R|F|1994-12-11|1994-11-22|1995-01-05|DELIVER IN PERSON|MAIL| the deposits haggle quickly b| +38764|746633|34176|2|9|15116.40|0.03|0.02|R|F|1994-12-17|1994-11-20|1995-01-15|NONE|AIR|kages. slyly fi| +38764|658548|8549|3|14|21091.14|0.01|0.06|A|F|1994-10-09|1994-11-09|1994-11-08|DELIVER IN PERSON|TRUCK|ng requests use above the blithely even p| +38764|202503|2504|4|5|7027.45|0.03|0.03|R|F|1994-10-27|1995-01-02|1994-11-25|NONE|SHIP|efully regular packages nag slyly| +38764|460604|23114|5|36|56324.88|0.09|0.01|A|F|1994-11-29|1994-12-20|1994-12-22|NONE|REG AIR| regular t| +38764|364567|2089|6|36|58735.80|0.09|0.04|A|F|1994-12-22|1994-12-30|1995-01-13|COLLECT COD|REG AIR|y even requests cajole. | +38764|265589|3105|7|39|60628.23|0.01|0.07|A|F|1994-10-14|1994-12-21|1994-10-31|NONE|REG AIR|arhorses. express, pending| +38765|752576|2577|1|28|45599.12|0.04|0.07|N|O|1995-07-29|1995-08-30|1995-08-08|DELIVER IN PERSON|MAIL|sts. theodolites use| +38765|531237|18768|2|11|13950.31|0.06|0.04|N|O|1995-08-05|1995-10-02|1995-09-03|DELIVER IN PERSON|AIR|ites doubt p| +38765|493887|31415|3|32|60187.52|0.10|0.06|N|O|1995-08-18|1995-08-15|1995-08-25|DELIVER IN PERSON|AIR|ge after the blithely regu| +38765|757401|19917|4|42|61251.54|0.01|0.06|N|O|1995-10-21|1995-08-11|1995-11-08|COLLECT COD|SHIP|un slyly bli| +38765|630549|18086|5|33|48823.83|0.07|0.01|N|O|1995-07-19|1995-09-21|1995-07-30|NONE|AIR|ilent pinto beans| +38765|620568|33081|6|47|69960.91|0.10|0.05|N|O|1995-10-07|1995-08-30|1995-10-18|COLLECT COD|SHIP|ely ironic excuses abo| +38765|877268|39786|7|5|6226.10|0.05|0.08|N|O|1995-08-28|1995-09-30|1995-09-17|NONE|REG AIR| carefully ir| +38766|230981|5990|1|38|72654.86|0.04|0.05|A|F|1993-08-14|1993-06-30|1993-08-27|DELIVER IN PERSON|AIR| according to the slyly final dolphin| +38766|89080|39081|2|36|38486.88|0.01|0.03|A|F|1993-06-28|1993-06-13|1993-06-30|COLLECT COD|RAIL|instructions | +38766|157102|19606|3|10|11591.00|0.01|0.03|R|F|1993-07-21|1993-06-26|1993-08-04|NONE|RAIL|requests. fl| +38766|410294|47819|4|44|52987.88|0.07|0.01|A|F|1993-08-11|1993-07-01|1993-08-22|COLLECT COD|MAIL|lithely idle ac| +38766|806520|6521|5|50|71324.00|0.10|0.08|R|F|1993-06-02|1993-06-16|1993-06-24|TAKE BACK RETURN|RAIL|y. furiously quiet ideas use careful| +38766|172046|47053|6|37|41367.48|0.08|0.07|R|F|1993-07-08|1993-05-28|1993-07-29|TAKE BACK RETURN|SHIP|d ideas wake above the slyly | +38766|560988|48522|7|36|73762.56|0.05|0.04|R|F|1993-07-21|1993-06-21|1993-07-30|NONE|TRUCK|long the accounts haggle carefully amo| +38767|520126|20127|1|32|36675.20|0.04|0.00|N|O|1997-08-02|1997-06-25|1997-08-06|DELIVER IN PERSON|REG AIR|rint blithely deposits. final pin| +38767|754987|42533|2|4|8167.80|0.04|0.00|N|O|1997-06-02|1997-06-30|1997-06-08|TAKE BACK RETURN|RAIL|en warhorses us| +38767|62454|24956|3|8|11331.60|0.07|0.03|N|O|1997-08-23|1997-07-23|1997-08-31|TAKE BACK RETURN|REG AIR|haggle quick| +38767|654199|29226|4|43|49585.88|0.09|0.01|N|O|1997-07-26|1997-08-11|1997-07-30|COLLECT COD|REG AIR|above the busily regular packages wak| +38767|111195|48702|5|26|31360.94|0.03|0.02|N|O|1997-07-03|1997-08-08|1997-07-24|TAKE BACK RETURN|SHIP|ress, final pack| +38792|149342|49343|1|5|6956.70|0.07|0.06|A|F|1993-03-08|1993-03-16|1993-03-15|TAKE BACK RETURN|AIR| nod furiously | +38792|983522|8561|2|37|59402.76|0.04|0.02|A|F|1993-02-16|1993-03-05|1993-02-22|TAKE BACK RETURN|AIR|ual instructions hinder carefull| +38792|42527|42528|3|50|73476.00|0.00|0.01|A|F|1993-01-14|1993-04-02|1993-02-01|NONE|TRUCK|ounts. slyly ir| +38792|742242|4757|4|27|34673.67|0.02|0.07|R|F|1993-03-03|1993-02-27|1993-03-25|DELIVER IN PERSON|FOB|ag furiously sly, regular| +38792|849178|49179|5|41|46212.33|0.07|0.05|A|F|1993-02-04|1993-03-21|1993-02-16|COLLECT COD|REG AIR|ntain fluffily quickly i| +38792|132429|19936|6|12|17537.04|0.02|0.07|A|F|1993-04-26|1993-03-07|1993-04-27|DELIVER IN PERSON|MAIL|use across the ironic platelets. b| +38792|718544|31059|7|19|29687.69|0.06|0.03|R|F|1993-02-08|1993-03-02|1993-03-06|COLLECT COD|FOB|ly regular the| +38793|557366|44900|1|47|66896.98|0.00|0.05|R|F|1994-08-09|1994-09-16|1994-08-19|DELIVER IN PERSON|AIR|final instructions haggle after the exp| +38793|635270|35271|2|25|30131.00|0.06|0.06|R|F|1994-12-03|1994-10-24|1994-12-05|DELIVER IN PERSON|FOB|es detect slyly around the unu| +38793|977479|39999|3|22|34241.46|0.01|0.02|R|F|1994-11-23|1994-09-22|1994-11-24|COLLECT COD|TRUCK|. furiously special asymptotes haggle q| +38793|483098|33099|4|22|23783.54|0.01|0.04|A|F|1994-10-25|1994-09-30|1994-11-15|DELIVER IN PERSON|SHIP|le blithely blithely unusual theo| +38794|368558|18559|1|40|65061.60|0.00|0.08|A|F|1995-03-16|1995-05-04|1995-04-05|TAKE BACK RETURN|MAIL|integrate. qu| +38794|348836|36355|2|36|67853.52|0.03|0.00|R|F|1995-04-28|1995-05-16|1995-05-20|DELIVER IN PERSON|REG AIR|d ideas about the quickly f| +38795|678729|16269|1|28|47815.32|0.01|0.03|R|F|1992-08-31|1992-06-25|1992-09-19|DELIVER IN PERSON|REG AIR|ts. deposits| +38796|908533|46088|1|6|9248.94|0.07|0.07|R|F|1992-07-31|1992-07-08|1992-08-14|COLLECT COD|AIR|ter the bravely e| +38796|704613|17128|2|21|33969.18|0.06|0.06|A|F|1992-04-29|1992-06-22|1992-05-27|NONE|SHIP|lithely requests; ironic| +38797|414475|2000|1|1|1389.45|0.01|0.08|N|O|1997-12-04|1997-11-27|1997-12-27|TAKE BACK RETURN|REG AIR|ccording to the special request| +38797|66075|16076|2|34|35396.38|0.10|0.00|N|O|1997-12-14|1997-10-09|1998-01-04|TAKE BACK RETURN|SHIP|e platelets. fluff| +38797|516014|28525|3|25|25749.75|0.10|0.00|N|O|1997-09-18|1997-10-25|1997-09-20|TAKE BACK RETURN|FOB|ays. permanently special asymp| +38797|641455|28992|4|1|1396.42|0.04|0.08|N|O|1997-10-02|1997-11-19|1997-10-24|COLLECT COD|MAIL|uests nag carefully| +38797|928341|40860|5|42|57510.60|0.10|0.07|N|O|1997-11-10|1997-10-14|1997-11-20|NONE|AIR|l requests. unusual accounts detect blit| +38798|628717|41230|1|15|24685.20|0.10|0.00|A|F|1994-08-06|1994-07-02|1994-09-02|NONE|AIR|lar ideas. sl| +38798|829831|4864|2|50|88039.50|0.08|0.03|R|F|1994-05-19|1994-07-13|1994-05-27|TAKE BACK RETURN|MAIL|cial platelets wa| +38798|965021|2579|3|31|33665.38|0.04|0.04|R|F|1994-07-16|1994-07-23|1994-07-30|DELIVER IN PERSON|REG AIR|ly regular requests. final| +38798|104242|16745|4|29|36140.96|0.09|0.05|A|F|1994-08-14|1994-06-07|1994-08-19|TAKE BACK RETURN|REG AIR|old platelets. furiously unusual| +38798|980563|30564|5|2|3287.04|0.04|0.05|A|F|1994-08-14|1994-07-13|1994-08-27|NONE|SHIP|ly. slyly regular accou| +38798|308658|46177|6|45|74998.80|0.05|0.02|A|F|1994-07-16|1994-07-03|1994-07-19|DELIVER IN PERSON|FOB|telets? carefully regular depe| +38798|610667|35692|7|41|64682.83|0.05|0.02|R|F|1994-08-27|1994-07-17|1994-09-18|TAKE BACK RETURN|FOB|y. carefully regular | +38799|466070|28580|1|34|35225.70|0.00|0.08|R|F|1993-03-29|1993-02-18|1993-04-02|NONE|RAIL|uriously regular | +38799|237001|12010|2|27|25325.73|0.08|0.00|A|F|1993-03-03|1993-03-15|1993-03-11|COLLECT COD|SHIP|gifts. carefully final foxes hinder pending| +38799|262254|37265|3|8|9729.92|0.03|0.06|R|F|1993-03-15|1993-02-08|1993-04-13|DELIVER IN PERSON|RAIL|ously special packages. bli| +38799|688129|38130|4|28|31278.52|0.05|0.07|R|F|1993-04-12|1993-03-17|1993-05-10|DELIVER IN PERSON|TRUCK|ironic foxes cajole fur| +38799|376664|26665|5|32|55700.80|0.07|0.03|A|F|1993-04-20|1993-03-28|1993-05-12|TAKE BACK RETURN|REG AIR|its boost slyly iro| +38799|588973|38974|6|19|39177.05|0.05|0.07|A|F|1993-01-14|1993-02-17|1993-02-01|COLLECT COD|TRUCK|osits integrate quickly carefully i| +38799|860563|35598|7|11|16758.72|0.08|0.02|R|F|1993-02-01|1993-03-27|1993-03-01|DELIVER IN PERSON|SHIP|ly bold foxe| +38824|476795|26796|1|49|86816.73|0.03|0.06|A|F|1994-02-19|1993-12-18|1994-03-17|DELIVER IN PERSON|REG AIR|foxes. even packages are across t| +38824|482613|20141|2|30|47867.70|0.08|0.01|R|F|1994-01-06|1993-12-20|1994-01-24|NONE|MAIL|unts around the c| +38824|263588|26094|3|4|6206.28|0.06|0.01|R|F|1994-01-19|1993-12-14|1994-02-02|NONE|REG AIR|inal Tiresias use. carefully | +38825|3887|3888|1|7|12536.16|0.08|0.03|N|O|1998-04-08|1998-05-26|1998-04-09|TAKE BACK RETURN|SHIP| slyly ironic Tiresias unwin| +38826|827712|15261|1|30|49190.10|0.01|0.03|N|O|1997-05-09|1997-04-24|1997-05-17|NONE|AIR|refully regular pinto| +38827|689219|26759|1|50|60409.00|0.00|0.07|A|F|1993-09-18|1993-10-26|1993-10-10|TAKE BACK RETURN|REG AIR| against the careful| +38827|694610|44611|2|48|77019.84|0.00|0.00|R|F|1993-11-21|1993-10-20|1993-12-15|DELIVER IN PERSON|AIR| ironic dependencies. carefully special| +38827|306709|19216|3|20|34313.80|0.07|0.08|A|F|1993-12-09|1993-11-03|1993-12-19|DELIVER IN PERSON|RAIL| furiously among the blithely fi| +38827|852584|40136|4|20|30730.80|0.02|0.01|R|F|1993-10-29|1993-11-05|1993-11-01|COLLECT COD|REG AIR|hely after the final | +38828|8148|33149|1|38|40133.32|0.01|0.03|N|O|1997-01-11|1997-02-09|1997-02-02|NONE|AIR|among the court| +38828|930533|5570|2|36|56285.64|0.10|0.00|N|O|1997-02-02|1997-03-13|1997-02-21|DELIVER IN PERSON|AIR|lyly ironi| +38828|455167|5168|3|38|42641.32|0.06|0.01|N|O|1997-01-09|1997-03-08|1997-01-23|TAKE BACK RETURN|REG AIR|ans. slyly final requests nag bli| +38828|986180|36181|4|40|50645.60|0.05|0.06|N|O|1997-05-08|1997-03-16|1997-05-25|COLLECT COD|AIR|lly ironic deposits haggle qui| +38828|723340|10883|5|48|65438.88|0.01|0.03|N|O|1997-03-19|1997-02-07|1997-03-27|DELIVER IN PERSON|RAIL|across the quickly special a| +38829|863431|13432|1|22|30676.58|0.05|0.03|N|O|1996-02-29|1996-01-01|1996-03-14|COLLECT COD|TRUCK| are even foxes. furiously special theod| +38829|671835|46862|2|47|84919.60|0.03|0.07|N|O|1996-02-18|1996-02-14|1996-03-14|NONE|FOB|ns sleep careful| +38829|522745|47766|3|6|10606.32|0.01|0.03|N|O|1995-12-27|1995-12-25|1996-01-26|TAKE BACK RETURN|MAIL|rmanent theodo| +38829|772640|22641|4|10|17126.10|0.06|0.07|N|O|1995-12-16|1995-12-17|1996-01-01|COLLECT COD|FOB|doubt. slyly busy instructions cajole.| +38829|755863|43409|5|27|51808.41|0.09|0.06|N|O|1996-02-24|1996-01-24|1996-03-25|DELIVER IN PERSON|REG AIR|pending asymptotes. slyly regular inst| +38830|305250|42769|1|16|20083.84|0.02|0.08|N|O|1996-01-18|1996-01-06|1996-02-03|NONE|FOB|ecial packages x-ray | +38830|332898|7911|2|49|94613.12|0.01|0.01|N|O|1995-12-31|1995-12-08|1996-01-14|NONE|RAIL|s; furiousl| +38830|8202|8203|3|43|47738.60|0.10|0.07|N|O|1995-12-07|1995-11-24|1996-01-02|DELIVER IN PERSON|TRUCK|ckages. furiously regular packages among t| +38830|838986|1503|4|38|73147.72|0.09|0.00|N|O|1996-01-23|1995-12-22|1996-02-17|NONE|SHIP|counts cajole car| +38831|648441|48442|1|47|65302.27|0.05|0.04|R|F|1993-11-10|1993-12-18|1993-11-13|DELIVER IN PERSON|MAIL|y after the fluffily final accounts. ir| +38831|340550|28069|2|40|63621.60|0.02|0.04|A|F|1994-01-20|1994-01-31|1994-02-04|DELIVER IN PERSON|TRUCK|out the carefully ev| +38831|614302|26815|3|40|48650.80|0.00|0.03|R|F|1994-03-03|1994-01-26|1994-03-18|COLLECT COD|MAIL|sits along the slyly bold idea| +38831|572710|47733|4|2|3565.38|0.10|0.06|A|F|1994-02-06|1993-12-31|1994-02-10|NONE|REG AIR|uests haggle quickly. slyly ruthless pac| +38856|552491|2492|1|27|41673.69|0.03|0.01|R|F|1995-01-22|1995-01-27|1995-02-12|COLLECT COD|REG AIR|al requests. final deposits need to cajo| +38856|715434|27949|2|20|28988.00|0.08|0.04|A|F|1994-12-01|1995-01-11|1994-12-04|TAKE BACK RETURN|FOB|yly final deposits are blithely. final,| +38856|297552|47553|3|33|51134.82|0.03|0.00|A|F|1994-12-13|1995-01-16|1995-01-06|TAKE BACK RETURN|AIR|e carefully| +38856|945647|8166|4|21|35544.60|0.00|0.05|R|F|1995-01-04|1995-01-31|1995-02-01|COLLECT COD|RAIL|ests kindle blithely a| +38857|984636|47156|1|16|27529.44|0.07|0.04|N|O|1998-05-01|1998-05-03|1998-05-30|NONE|RAIL|g ironically along the gro| +38858|970017|45056|1|41|44565.77|0.09|0.04|R|F|1993-11-24|1993-11-01|1993-12-23|TAKE BACK RETURN|AIR|y special, regular deposits. q| +38858|59669|9670|2|35|57003.10|0.05|0.04|R|F|1993-11-20|1993-11-03|1993-12-01|NONE|TRUCK|ss excuses haggle care| +38858|849959|12476|3|1|1908.91|0.03|0.00|A|F|1993-11-23|1993-11-17|1993-12-05|DELIVER IN PERSON|TRUCK|y express platelets alongside of | +38858|256780|44296|4|36|62523.72|0.03|0.04|R|F|1994-01-08|1993-12-08|1994-01-25|NONE|TRUCK|accounts boost furiousl| +38859|668585|31099|1|20|31071.00|0.02|0.06|N|O|1997-03-05|1997-02-02|1997-03-24|NONE|MAIL|olve blithely slyly regular packa| +38859|901019|26056|2|28|28559.16|0.02|0.07|N|O|1997-01-02|1997-03-11|1997-01-21|NONE|AIR|ions. blithely fi| +38859|425472|25473|3|16|22359.20|0.08|0.03|N|O|1997-03-11|1997-03-03|1997-04-08|DELIVER IN PERSON|TRUCK| to the ideas. slyly even packages integrat| +38860|970815|33335|1|10|18857.70|0.10|0.01|R|F|1992-05-28|1992-08-15|1992-06-10|TAKE BACK RETURN|AIR| carefully ironic pinto beans. furio| +38860|486017|11036|2|28|28083.72|0.09|0.08|R|F|1992-06-06|1992-07-03|1992-06-25|DELIVER IN PERSON|RAIL|eat carefully| +38860|477039|39549|3|19|19304.19|0.02|0.01|A|F|1992-09-12|1992-06-25|1992-09-28|NONE|RAIL|ter the pending acco| +38860|588350|25884|4|50|71916.50|0.01|0.02|R|F|1992-08-31|1992-08-17|1992-09-30|TAKE BACK RETURN|TRUCK|y final acco| +38861|977906|2945|1|15|29757.90|0.07|0.01|A|F|1993-10-11|1993-08-25|1993-10-26|DELIVER IN PERSON|AIR|lar accounts sleep c| +38861|652154|2155|2|5|5530.60|0.07|0.00|R|F|1993-08-10|1993-08-26|1993-09-03|DELIVER IN PERSON|TRUCK| special, special ideas ac| +38861|750687|38233|3|42|72981.30|0.02|0.00|R|F|1993-08-26|1993-09-03|1993-09-09|TAKE BACK RETURN|AIR|es wake. carefully regular hoc| +38861|791342|28888|4|26|37266.06|0.00|0.03|A|F|1993-08-19|1993-08-23|1993-09-16|NONE|MAIL|riously bold foxes was. requ| +38861|73308|10812|5|3|3843.90|0.06|0.01|A|F|1993-10-14|1993-09-24|1993-10-22|TAKE BACK RETURN|REG AIR|ep ideas. hockey players agains| +38861|84002|9005|6|17|16762.00|0.06|0.02|A|F|1993-10-08|1993-08-11|1993-10-17|TAKE BACK RETURN|AIR|kages. grouches along t| +38862|359872|22380|1|20|38637.20|0.09|0.06|N|O|1998-04-29|1998-05-30|1998-05-24|TAKE BACK RETURN|TRUCK| nod fluffily quiet excuses. silent,| +38862|364400|1922|2|17|24894.63|0.08|0.06|N|O|1998-07-05|1998-06-22|1998-07-18|TAKE BACK RETURN|SHIP| silent dugouts wake sl| +38862|460611|48139|3|50|78579.50|0.06|0.04|N|O|1998-04-19|1998-05-12|1998-05-08|DELIVER IN PERSON|MAIL|c deposits caj| +38862|477767|15295|4|16|27915.84|0.03|0.07|N|O|1998-06-16|1998-07-04|1998-07-02|DELIVER IN PERSON|AIR|o beans. careful theodolites are a| +38862|828157|40674|5|26|28212.86|0.04|0.04|N|O|1998-06-23|1998-07-04|1998-07-08|DELIVER IN PERSON|RAIL|blithely ironic accounts engage ironic a| +38862|827956|15505|6|24|45213.84|0.01|0.03|N|O|1998-06-27|1998-07-01|1998-06-30|NONE|SHIP|refully about the foxes. qu| +38862|446745|34270|7|14|23684.08|0.03|0.00|N|O|1998-05-11|1998-05-11|1998-06-10|NONE|FOB|lar, ironic package| +38863|439209|1718|1|44|50519.92|0.01|0.08|R|F|1993-09-21|1993-10-18|1993-10-12|NONE|AIR|regular accounts cajol| +38863|783072|33073|2|34|39271.36|0.03|0.04|R|F|1993-09-11|1993-11-16|1993-09-20|DELIVER IN PERSON|AIR|ar instructions cajole pac| +38863|83877|46379|3|5|9304.35|0.10|0.01|R|F|1993-10-08|1993-10-04|1993-10-21|COLLECT COD|SHIP|ions detect idly even| +38863|719833|32348|4|36|66700.80|0.08|0.07|A|F|1993-10-18|1993-10-19|1993-11-10|DELIVER IN PERSON|AIR|ions cajole careful| +38888|995508|8028|1|34|54517.64|0.07|0.04|R|F|1994-11-25|1994-12-10|1994-12-25|TAKE BACK RETURN|AIR|s. ironic, regula| +38888|493060|30588|2|33|34750.32|0.02|0.05|A|F|1994-12-14|1995-01-08|1994-12-19|DELIVER IN PERSON|AIR|kly regular deposits cajole care| +38888|857527|45079|3|49|72739.52|0.04|0.00|A|F|1995-01-02|1994-12-17|1995-01-04|COLLECT COD|TRUCK|. quickly even | +38888|441135|16152|4|42|45196.62|0.10|0.08|A|F|1995-02-26|1994-12-07|1995-03-14|DELIVER IN PERSON|TRUCK|s. ironic, ruthless r| +38888|144585|32092|5|23|37480.34|0.06|0.02|R|F|1995-02-01|1994-12-02|1995-02-25|NONE|MAIL|o haggle among the regula| +38888|24818|37319|6|38|66226.78|0.09|0.04|A|F|1994-12-05|1995-01-16|1994-12-10|TAKE BACK RETURN|AIR|al foxes are slyly around the fluffily fin| +38889|786426|11457|1|40|60495.60|0.03|0.07|N|O|1997-04-23|1997-03-23|1997-05-04|DELIVER IN PERSON|RAIL|re quickly furiously unusual pint| +38889|460322|10323|2|3|3846.90|0.10|0.08|N|O|1997-01-29|1997-03-18|1997-02-15|DELIVER IN PERSON|MAIL|g slyly. sl| +38889|628330|40843|3|11|13841.30|0.06|0.02|N|O|1997-05-07|1997-02-28|1997-05-16|DELIVER IN PERSON|SHIP|s cajole about the ca| +38889|331566|19085|4|16|25560.80|0.04|0.07|N|O|1997-02-11|1997-03-29|1997-02-18|DELIVER IN PERSON|SHIP|y regular deposits sleep f| +38889|613375|13376|5|44|56686.96|0.05|0.02|N|O|1997-01-24|1997-03-06|1997-02-21|NONE|TRUCK|ins. carefully bold ideas nod furiously. | +38889|982802|7841|6|46|86698.96|0.05|0.02|N|O|1997-01-26|1997-03-22|1997-02-05|DELIVER IN PERSON|REG AIR| haggle by the slyly even grouches. pendin| +38889|941426|3945|7|27|39619.26|0.02|0.01|N|O|1997-03-02|1997-03-21|1997-04-01|NONE|SHIP|es about the furiously special | +38890|540366|40367|1|29|40783.86|0.10|0.08|A|F|1993-12-13|1993-11-02|1994-01-06|DELIVER IN PERSON|RAIL|y ironic asymptotes. ca| +38890|922422|22423|2|15|21665.70|0.04|0.02|R|F|1993-10-18|1993-09-20|1993-10-27|TAKE BACK RETURN|MAIL| express requests. foxes kindle| +38890|133049|45552|3|17|18394.68|0.10|0.05|R|F|1993-10-16|1993-11-08|1993-11-08|COLLECT COD|RAIL|tes nag furiously along the quickly unusu| +38890|147126|47127|4|35|41059.20|0.06|0.00|R|F|1993-09-24|1993-10-14|1993-10-22|TAKE BACK RETURN|SHIP|ickly thin grouches. slyly ironic deposi| +38890|739302|26845|5|46|61698.42|0.01|0.00|R|F|1993-09-20|1993-11-08|1993-09-26|NONE|REG AIR|ular ideas doze slyly.| +38890|437858|367|6|24|43099.92|0.02|0.02|R|F|1993-11-17|1993-11-02|1993-12-06|NONE|REG AIR|equests are slyly a| +38890|67716|30218|7|28|47143.88|0.06|0.02|R|F|1993-12-06|1993-10-30|1994-01-04|COLLECT COD|SHIP|ckly. pending sauternes hag| +38891|97579|22582|1|13|20495.41|0.02|0.04|R|F|1994-11-15|1994-12-06|1994-11-17|DELIVER IN PERSON|REG AIR|e blithely | +38891|9825|22326|2|34|58983.88|0.10|0.06|R|F|1994-10-27|1994-11-23|1994-11-13|TAKE BACK RETURN|MAIL|leep blithely| +38891|115135|2642|3|25|28753.25|0.04|0.04|A|F|1995-01-03|1994-11-13|1995-01-05|NONE|FOB|e carefully s| +38891|73189|10693|4|13|15108.34|0.00|0.02|R|F|1995-01-02|1994-10-28|1995-01-18|TAKE BACK RETURN|AIR|usly against the ironic fo| +38891|74261|24262|5|13|16058.38|0.06|0.08|A|F|1994-12-01|1994-12-18|1994-12-10|TAKE BACK RETURN|AIR|al pains are furiously carefu| +38891|89827|39828|6|43|78123.26|0.03|0.07|A|F|1994-11-23|1994-11-12|1994-12-18|TAKE BACK RETURN|MAIL|old, silent theodo| +38891|713580|26095|7|12|19122.60|0.07|0.06|A|F|1995-01-02|1994-12-13|1995-01-16|TAKE BACK RETURN|REG AIR|ix furiously at the slyly spe| +38892|138373|38374|1|47|66334.39|0.00|0.04|N|O|1996-09-30|1996-10-31|1996-10-07|DELIVER IN PERSON|TRUCK|y express re| +38893|901091|38646|1|7|7644.35|0.06|0.06|A|F|1993-01-05|1992-12-01|1993-01-07|COLLECT COD|AIR|ainments about the warhorses detect c| +38893|634278|21815|2|3|3636.72|0.08|0.07|A|F|1993-01-22|1993-01-06|1993-02-08|COLLECT COD|RAIL|, even requests. quickly | +38893|297639|22650|3|32|52371.84|0.10|0.06|A|F|1992-11-26|1993-01-06|1992-12-16|DELIVER IN PERSON|AIR|beans. silent packages above| +38893|413647|1172|4|24|37454.88|0.03|0.04|R|F|1993-01-05|1992-12-24|1993-02-02|COLLECT COD|MAIL|en requests haggle slyly among the b| +38893|162303|24807|5|16|21844.80|0.07|0.02|R|F|1992-11-30|1992-12-11|1992-12-19|DELIVER IN PERSON|MAIL|ending requests boost f| +38894|668125|18126|1|4|4372.36|0.04|0.06|R|F|1993-05-20|1993-05-16|1993-05-26|COLLECT COD|REG AIR|efully special pearls detect furi| +38894|169154|19155|2|37|45256.55|0.07|0.05|A|F|1993-05-07|1993-05-19|1993-05-16|COLLECT COD|MAIL| express frets. unusual ideas boost sly| +38895|418342|18343|1|44|55454.08|0.05|0.03|N|O|1996-04-13|1996-02-28|1996-05-07|DELIVER IN PERSON|AIR|daringly even deposits need to integr| +38895|60605|48109|2|28|43836.80|0.00|0.02|N|O|1996-02-10|1996-03-02|1996-02-22|TAKE BACK RETURN|REG AIR| final requests among | +38895|575303|326|3|32|44104.96|0.07|0.06|N|O|1996-04-19|1996-04-03|1996-05-18|COLLECT COD|TRUCK| even requests are| +38895|109127|46634|4|44|49989.28|0.05|0.02|N|O|1996-04-11|1996-03-17|1996-04-12|TAKE BACK RETURN|TRUCK|ording to the bold, ironic warthogs. bli| +38895|91957|16960|5|6|11693.70|0.09|0.02|N|O|1996-04-06|1996-04-09|1996-04-07|TAKE BACK RETURN|TRUCK|special grouch| +38895|507488|32509|6|18|26918.28|0.01|0.06|N|O|1996-01-18|1996-03-02|1996-01-28|TAKE BACK RETURN|AIR|its haggle furiously after the fi| +38895|343984|31503|7|27|54755.19|0.07|0.03|N|O|1996-03-31|1996-03-24|1996-04-17|TAKE BACK RETURN|AIR| carefully regular pla| +38920|325613|13132|1|20|32772.00|0.00|0.06|N|O|1996-12-20|1996-11-25|1997-01-02|COLLECT COD|AIR|the special requests. even ideas sl| +38920|566353|3887|2|11|15612.63|0.05|0.04|N|O|1996-11-13|1996-11-08|1996-11-15|DELIVER IN PERSON|RAIL|blithely regula| +38920|687187|37188|3|10|11741.50|0.02|0.06|N|O|1996-12-09|1996-11-10|1996-12-27|DELIVER IN PERSON|SHIP|s haggle always caref| +38920|536077|48588|4|34|37843.70|0.04|0.04|N|O|1997-01-10|1996-12-21|1997-02-04|DELIVER IN PERSON|TRUCK|ages among the fluffily special | +38920|842696|30245|5|19|31134.35|0.10|0.04|N|O|1996-11-16|1996-12-14|1996-12-01|COLLECT COD|TRUCK|ic courts could are qui| +38920|177230|39734|6|44|57518.12|0.01|0.00|N|O|1996-10-31|1996-12-10|1996-11-06|NONE|SHIP| the blithely ev| +38921|528556|28557|1|6|9507.18|0.07|0.02|R|F|1993-02-09|1993-02-18|1993-03-11|TAKE BACK RETURN|MAIL|ross the carefully bold sheaves. carefully | +38922|548380|23401|1|34|48564.24|0.10|0.04|R|F|1992-10-13|1992-08-12|1992-10-21|TAKE BACK RETURN|TRUCK|pinto beans cajole blithely along the | +38922|618455|5992|2|19|26094.98|0.05|0.07|A|F|1992-10-06|1992-08-05|1992-10-24|DELIVER IN PERSON|AIR|fully. asymptotes sleep after the blithely| +38922|365861|40876|3|24|46244.40|0.02|0.08|R|F|1992-09-28|1992-08-20|1992-10-02|COLLECT COD|FOB|uests cajole carefull| +38922|13371|38372|4|49|62934.13|0.08|0.01|R|F|1992-08-03|1992-08-29|1992-08-10|DELIVER IN PERSON|MAIL|gular accounts cajol| +38923|299679|49680|1|23|38609.18|0.09|0.04|R|F|1992-05-12|1992-04-13|1992-05-18|DELIVER IN PERSON|SHIP|ntegrate a| +38923|695211|7725|2|35|42216.30|0.09|0.01|A|F|1992-04-25|1992-06-03|1992-05-13|COLLECT COD|FOB|o beans boost furiously after the final p| +38923|400346|37871|3|38|47360.16|0.05|0.03|A|F|1992-06-20|1992-04-16|1992-07-01|DELIVER IN PERSON|AIR|r the final requests. furiously fin| +38923|611801|24314|4|25|42819.25|0.09|0.01|A|F|1992-06-06|1992-04-09|1992-06-09|TAKE BACK RETURN|REG AIR|pecial theodolites. slyly iro| +38923|535481|10502|5|9|13648.14|0.01|0.08|A|F|1992-04-15|1992-05-14|1992-04-21|COLLECT COD|RAIL|ages are carefully slyly even accoun| +38923|818541|18542|6|36|52542.00|0.00|0.00|R|F|1992-05-12|1992-05-02|1992-05-27|COLLECT COD|MAIL| foxes boost | +38924|794918|7434|1|36|72463.68|0.02|0.08|A|F|1993-08-05|1993-08-19|1993-08-25|TAKE BACK RETURN|RAIL|. special frets wake ac| +38924|183886|8893|2|18|35457.84|0.08|0.02|A|F|1993-07-12|1993-08-26|1993-07-23|NONE|MAIL|. carefully ironic foxes beyond t| +38924|565053|15054|3|7|7826.21|0.03|0.00|R|F|1993-09-22|1993-07-29|1993-09-24|COLLECT COD|AIR|ntiments cajole about | +38924|843602|43603|4|45|69550.20|0.07|0.05|R|F|1993-08-17|1993-07-01|1993-09-14|DELIVER IN PERSON|TRUCK|ckages use slyly special packages. | +38925|546450|8961|1|19|28432.17|0.09|0.03|R|F|1993-08-08|1993-06-21|1993-09-03|COLLECT COD|AIR|beans. furiously ironic de| +38926|471609|34119|1|24|37933.92|0.09|0.05|A|F|1992-10-17|1992-12-15|1992-10-31|TAKE BACK RETURN|RAIL|ructions are r| +38926|324212|36719|2|43|53156.60|0.01|0.03|R|F|1992-10-29|1993-01-04|1992-11-12|TAKE BACK RETURN|RAIL|efully unusual requests. final, iro| +38926|28242|15743|3|35|40958.40|0.04|0.06|R|F|1993-02-07|1993-01-04|1993-02-10|DELIVER IN PERSON|AIR| regular accounts do haggle furiously| +38926|659372|46912|4|21|27958.14|0.04|0.07|A|F|1993-01-01|1992-12-28|1993-01-11|TAKE BACK RETURN|FOB|posits mold furiously| +38926|60968|10969|5|28|54010.88|0.10|0.05|R|F|1992-10-31|1992-12-05|1992-11-02|TAKE BACK RETURN|FOB| the furiously| +38926|683581|21121|6|30|46936.50|0.05|0.06|A|F|1992-10-22|1992-11-18|1992-11-14|TAKE BACK RETURN|SHIP|e blithely final i| +38927|400192|25209|1|35|38225.95|0.06|0.05|A|F|1993-02-24|1992-12-09|1993-03-01|DELIVER IN PERSON|TRUCK|heodolites. eve| +38927|10551|48052|2|50|73077.50|0.04|0.04|R|F|1993-01-29|1992-12-09|1993-02-26|COLLECT COD|REG AIR|ns. quickly expr| +38927|320836|20837|3|50|92841.00|0.06|0.00|A|F|1992-11-07|1992-12-10|1992-11-13|TAKE BACK RETURN|REG AIR| foxes. deposits haggle even, regu| +38927|277603|15119|4|37|58481.83|0.07|0.02|A|F|1992-11-22|1993-01-01|1992-12-20|COLLECT COD|REG AIR|regular forges cajole fluffily. pack| +38927|666148|3688|5|21|23396.31|0.02|0.01|R|F|1993-02-07|1992-12-18|1993-03-09|COLLECT COD|AIR| regular courts sleep quickly unusual | +38927|948220|23257|6|5|6340.90|0.00|0.02|R|F|1993-02-10|1993-01-27|1993-02-13|DELIVER IN PERSON|MAIL|. blithely final dolphins ac| +38927|719126|44155|7|34|38933.06|0.05|0.01|A|F|1992-11-21|1993-01-25|1992-12-02|DELIVER IN PERSON|RAIL|ickly. ironic dolphins cajole slyly.| +38952|345962|20975|1|13|26103.35|0.08|0.05|A|F|1994-08-23|1994-06-03|1994-09-11|TAKE BACK RETURN|RAIL| the fluffy theodolit| +38952|577657|2680|2|31|53773.53|0.02|0.08|A|F|1994-07-16|1994-07-19|1994-07-29|TAKE BACK RETURN|TRUCK|e at the blithely pending re| +38952|666055|28569|3|29|29609.58|0.10|0.08|R|F|1994-08-03|1994-06-03|1994-08-13|DELIVER IN PERSON|MAIL|y bold Tiresias are carefu| +38952|376098|13620|4|44|51659.52|0.06|0.06|A|F|1994-07-19|1994-07-22|1994-07-22|TAKE BACK RETURN|SHIP|icing, unusua| +38952|65933|3437|5|40|75957.20|0.07|0.00|A|F|1994-06-19|1994-07-01|1994-06-24|TAKE BACK RETURN|AIR|y fluffily even instructions! blithely fi| +38953|47240|22241|1|18|21370.32|0.06|0.00|A|F|1992-01-25|1992-02-25|1992-01-31|DELIVER IN PERSON|AIR|old accounts.| +38953|949544|24581|2|16|25496.00|0.01|0.07|R|F|1992-04-24|1992-02-23|1992-05-12|DELIVER IN PERSON|RAIL|fily carefully even ide| +38953|978651|16209|3|26|44969.86|0.00|0.02|R|F|1992-05-13|1992-02-24|1992-06-11|DELIVER IN PERSON|AIR|as cajole evenly furiously reg| +38953|176865|1872|4|4|7767.44|0.02|0.00|A|F|1992-03-31|1992-02-22|1992-04-21|DELIVER IN PERSON|RAIL|s. furiously even pinto bea| +38953|566884|4418|5|14|27312.04|0.10|0.06|R|F|1992-02-02|1992-03-16|1992-02-12|NONE|MAIL| final packages. quickl| +38953|611768|49305|6|41|68868.93|0.03|0.00|A|F|1992-05-19|1992-03-02|1992-06-09|DELIVER IN PERSON|MAIL|ructions nag around the bl| +38954|214912|39921|1|27|49326.30|0.09|0.04|R|F|1992-04-28|1992-05-22|1992-05-18|TAKE BACK RETURN|MAIL|ins. quickly final platelets haggle b| +38954|12965|12966|2|9|16901.64|0.00|0.08|R|F|1992-06-19|1992-05-21|1992-07-11|NONE|TRUCK|lithely ironic dinos integrate about th| +38954|894182|44183|3|40|47045.60|0.04|0.01|A|F|1992-04-18|1992-05-11|1992-04-22|NONE|FOB| according to the slowly final ideas po| +38954|505828|18339|4|17|31174.60|0.00|0.08|R|F|1992-05-06|1992-04-23|1992-05-16|NONE|REG AIR|y final pinto bean| +38954|443392|43393|5|27|36054.99|0.03|0.07|A|F|1992-04-20|1992-04-04|1992-04-30|NONE|RAIL|. furiousl| +38954|82385|44887|6|38|51960.44|0.04|0.02|A|F|1992-06-25|1992-04-03|1992-07-16|NONE|TRUCK|ously express requests. carefull| +38954|639810|14835|7|24|41994.72|0.08|0.08|A|F|1992-04-22|1992-05-04|1992-05-11|NONE|REG AIR| accounts. fluffily special ide| +38955|275336|25337|1|38|49830.16|0.02|0.08|N|O|1996-01-27|1995-11-13|1996-02-22|NONE|SHIP|sual notornis outs| +38955|571366|33878|2|33|47432.22|0.00|0.08|N|O|1996-01-28|1995-12-17|1996-02-16|NONE|TRUCK|furiously! slyly unusual | +38955|948273|23310|3|48|63419.04|0.00|0.05|N|O|1995-10-24|1995-12-30|1995-10-30|NONE|MAIL|tes sleep carefully after the fluffi| +38955|613790|26303|4|44|74965.44|0.05|0.04|N|O|1995-11-24|1996-01-01|1995-12-03|NONE|TRUCK|s. enticingly final | +38955|956676|19196|5|11|19058.93|0.01|0.05|N|O|1996-01-21|1995-11-28|1996-02-15|DELIVER IN PERSON|AIR|ccounts use blithely. regular w| +38955|844458|6975|6|44|61706.04|0.02|0.03|N|O|1995-10-10|1995-11-30|1995-11-08|DELIVER IN PERSON|TRUCK|final dependencies | +38956|130075|17582|1|26|28731.82|0.06|0.06|A|F|1992-11-11|1992-09-24|1992-12-08|TAKE BACK RETURN|MAIL|ckly even accounts. final deposit| +38956|166359|28863|2|31|44185.85|0.04|0.00|R|F|1992-08-16|1992-10-05|1992-09-13|COLLECT COD|RAIL|ges above the furiou| +38956|985124|10163|3|33|39899.64|0.09|0.06|R|F|1992-08-21|1992-11-11|1992-09-07|TAKE BACK RETURN|SHIP|usly ironic accounts nag fu| +38956|973651|48690|4|22|37941.42|0.08|0.00|A|F|1992-10-29|1992-10-05|1992-11-13|DELIVER IN PERSON|REG AIR|furiously about the | +38956|136577|11582|5|19|30657.83|0.08|0.05|R|F|1992-10-15|1992-11-07|1992-10-17|TAKE BACK RETURN|SHIP|ular accounts. sly| +38957|740022|40023|1|13|13805.87|0.02|0.05|A|F|1992-05-01|1992-04-28|1992-05-24|TAKE BACK RETURN|FOB|to beans are quickly expr| +38957|539460|1971|2|46|68974.24|0.07|0.01|R|F|1992-06-12|1992-05-31|1992-07-10|DELIVER IN PERSON|AIR|slyly final accounts integrate fluffi| +38957|688010|38011|3|27|26945.46|0.10|0.07|R|F|1992-07-02|1992-06-08|1992-07-19|COLLECT COD|TRUCK|he fluffily regular accounts h| +38957|383077|45585|4|25|29001.50|0.03|0.08|A|F|1992-05-22|1992-06-05|1992-06-05|DELIVER IN PERSON|RAIL|long the even p| +38957|362813|12814|5|15|28137.00|0.03|0.08|A|F|1992-07-01|1992-04-27|1992-07-29|TAKE BACK RETURN|AIR|deposits. regular accounts wake slyl| +38957|783656|33657|6|21|36532.02|0.00|0.01|A|F|1992-05-10|1992-05-26|1992-05-22|NONE|MAIL|the blithely special packages. slyly fina| +38958|282528|7539|1|13|19636.63|0.00|0.03|R|F|1992-06-28|1992-06-07|1992-06-29|TAKE BACK RETURN|RAIL|s against the final packages. excus| +38958|446932|46933|2|22|41336.02|0.02|0.05|A|F|1992-04-24|1992-05-28|1992-04-25|DELIVER IN PERSON|MAIL|nal deposits wake. deposit| +38958|574069|24070|3|16|18288.64|0.03|0.08|A|F|1992-06-11|1992-05-19|1992-06-22|TAKE BACK RETURN|MAIL|es cajole fluffily. bli| +38958|375651|666|4|34|58705.76|0.10|0.04|A|F|1992-08-05|1992-07-16|1992-09-01|COLLECT COD|RAIL|ickly express accounts. e| +38958|551288|38822|5|44|58927.44|0.03|0.05|R|F|1992-07-29|1992-06-19|1992-08-03|TAKE BACK RETURN|TRUCK|ely special ideas. special, regular| +38959|950071|25110|1|40|44841.20|0.09|0.06|N|O|1997-07-25|1997-07-12|1997-08-02|DELIVER IN PERSON|FOB|y sly depos| +38959|831198|18747|2|18|20324.70|0.03|0.04|N|O|1997-09-09|1997-06-18|1997-09-11|COLLECT COD|MAIL|ilent accounts boost ca| +38959|936714|24269|3|17|29761.39|0.09|0.04|N|O|1997-08-24|1997-07-24|1997-09-14|TAKE BACK RETURN|TRUCK| are furiously express accounts. furiously | +38959|347715|22728|4|42|74033.40|0.04|0.02|N|O|1997-07-19|1997-06-17|1997-08-03|NONE|RAIL|eposits. accounts| +38984|25168|25169|1|1|1093.16|0.00|0.04|R|F|1992-07-24|1992-07-30|1992-08-21|COLLECT COD|RAIL|y carefully regular requests.| +38984|994997|7517|2|27|56482.65|0.03|0.01|A|F|1992-08-03|1992-08-04|1992-08-15|NONE|MAIL|c accounts. blithel| +38984|897805|35357|3|6|10816.56|0.09|0.06|R|F|1992-08-28|1992-07-12|1992-09-27|COLLECT COD|MAIL|packages are regular deposits. stealt| +38984|402463|2464|4|3|4096.32|0.10|0.01|A|F|1992-07-04|1992-08-05|1992-07-06|NONE|TRUCK|eposits sleep quic| +38984|185271|47775|5|39|52894.53|0.07|0.05|R|F|1992-08-24|1992-07-17|1992-09-11|COLLECT COD|RAIL|ts. quickly regular asymptotes should hav| +38984|847751|22784|6|13|22083.23|0.03|0.04|R|F|1992-10-03|1992-07-09|1992-10-11|COLLECT COD|SHIP| dependencies. ironic accounts agai| +38984|135700|48203|7|5|8678.50|0.03|0.00|A|F|1992-07-09|1992-09-02|1992-07-23|DELIVER IN PERSON|RAIL|ven foxes. furiou| +38985|707882|20397|1|50|94492.50|0.07|0.07|R|F|1992-10-17|1992-11-03|1992-10-27|NONE|MAIL|are about the pinto beans. final instru| +38985|365981|40996|2|6|12281.82|0.10|0.05|R|F|1992-11-25|1992-10-30|1992-12-04|NONE|SHIP| accounts sleep slyly. req| +38985|37075|12076|3|8|8096.56|0.01|0.01|R|F|1992-11-10|1992-11-13|1992-11-28|NONE|RAIL|. special, regular instructi| +38985|105695|30700|4|39|66326.91|0.06|0.03|A|F|1992-09-30|1992-11-26|1992-10-17|NONE|SHIP|: quickly even platelet| +38985|401449|1450|5|45|60768.90|0.00|0.02|A|F|1993-01-01|1992-10-31|1993-01-14|TAKE BACK RETURN|TRUCK|wake carefully packages. excu| +38985|141286|28793|6|42|55745.76|0.10|0.02|R|F|1992-10-23|1992-12-05|1992-11-06|COLLECT COD|RAIL|requests us| +38985|588093|605|7|46|54329.22|0.01|0.00|A|F|1992-11-15|1992-10-21|1992-12-04|COLLECT COD|TRUCK|. regular, regular reques| +38986|66816|4320|1|50|89140.50|0.06|0.00|N|O|1997-12-21|1998-02-23|1997-12-27|TAKE BACK RETURN|SHIP|efully reg| +38986|961984|49542|2|39|79791.66|0.10|0.00|N|O|1998-01-22|1998-01-27|1998-02-03|TAKE BACK RETURN|TRUCK|furiously ironic accounts are | +38986|55965|18467|3|38|72996.48|0.05|0.01|N|O|1998-03-22|1998-01-20|1998-03-24|COLLECT COD|RAIL| final theodolites about the bold acc| +38986|603620|41157|4|31|47231.29|0.07|0.02|N|O|1998-02-05|1998-02-27|1998-02-27|TAKE BACK RETURN|RAIL| the furiously regular fox| +38986|34109|21610|5|4|4172.40|0.08|0.01|N|O|1998-03-18|1998-02-13|1998-03-29|NONE|FOB|ic somas. unusual | +38986|260183|10184|6|31|35438.27|0.10|0.08|N|O|1998-03-19|1998-01-09|1998-04-04|NONE|AIR|ts according to t| +38986|883326|20878|7|29|37969.12|0.09|0.02|N|O|1998-03-06|1998-01-09|1998-04-04|DELIVER IN PERSON|FOB|as along the pending requests wake ab| +38987|48257|35758|1|9|10847.25|0.01|0.07|N|O|1998-07-22|1998-08-01|1998-07-25|DELIVER IN PERSON|MAIL|c accounts sleep flu| +38987|48533|23534|2|9|13333.77|0.08|0.08|N|O|1998-08-05|1998-08-01|1998-08-11|NONE|REG AIR|ly express c| +38987|685884|23424|3|1|1869.85|0.08|0.02|N|O|1998-08-09|1998-09-02|1998-08-10|COLLECT COD|AIR|pecial, special ideas use slyly acc| +38987|639954|39955|4|22|41666.24|0.00|0.02|N|O|1998-09-28|1998-09-09|1998-10-17|COLLECT COD|SHIP|thely across the fluffily express| +38987|705909|43452|5|21|40212.27|0.02|0.07|N|O|1998-09-19|1998-08-07|1998-09-20|NONE|RAIL|ely furious acco| +38988|916060|3615|1|50|53801.00|0.01|0.03|A|F|1992-09-26|1992-09-30|1992-10-17|NONE|MAIL|se above the regular instruct| +38988|215461|40470|2|31|42669.95|0.04|0.02|R|F|1992-11-10|1992-11-08|1992-11-25|NONE|MAIL|nic excuses ar| +38988|247282|22291|3|27|33190.29|0.00|0.00|R|F|1992-12-12|1992-10-11|1992-12-28|NONE|RAIL|ckly dogged platelets accor| +38988|67336|42339|4|36|46919.88|0.06|0.08|R|F|1992-11-11|1992-11-12|1992-11-24|NONE|TRUCK|cuses maintain fluffily permanen| +38989|145840|8343|1|12|22630.08|0.05|0.01|N|O|1995-09-14|1995-09-08|1995-09-30|COLLECT COD|AIR|c deposits about the ironic instruction| +38989|123919|11426|2|46|89373.86|0.04|0.04|N|O|1995-08-22|1995-08-30|1995-08-23|DELIVER IN PERSON|FOB| epitaphs are stealthily express| +38989|693070|5584|3|42|44647.68|0.04|0.08|N|O|1995-08-08|1995-09-24|1995-08-18|COLLECT COD|RAIL|ay cajole along th| +38989|418927|43944|4|14|25842.60|0.08|0.02|N|O|1995-10-20|1995-08-29|1995-10-29|NONE|RAIL|slyly ironic de| +38989|892325|17360|5|16|21076.48|0.01|0.07|N|O|1995-10-13|1995-09-10|1995-11-12|NONE|REG AIR|y express pi| +38990|147183|34690|1|22|27063.96|0.03|0.05|R|F|1993-05-18|1993-06-05|1993-05-27|COLLECT COD|MAIL|thes. blithely final atta| +38990|694142|44143|2|27|30674.97|0.10|0.03|A|F|1993-07-16|1993-06-12|1993-07-20|DELIVER IN PERSON|FOB|ress excuses are despite the carefull| +38990|442625|42626|3|49|76812.40|0.05|0.03|A|F|1993-05-14|1993-06-30|1993-05-23|TAKE BACK RETURN|FOB|nic deposits | +38990|183840|21350|4|49|94268.16|0.00|0.04|R|F|1993-07-14|1993-06-13|1993-07-24|DELIVER IN PERSON|FOB|c accounts sleep furiously ab| +38990|789625|27171|5|14|24004.26|0.03|0.08|R|F|1993-05-02|1993-05-30|1993-05-25|COLLECT COD|RAIL|er the quickly final packages. | +38991|657501|20015|1|28|40837.16|0.01|0.05|A|F|1995-03-08|1995-04-10|1995-03-23|COLLECT COD|AIR|inly pending foxes| +38991|606313|31338|2|21|25604.88|0.08|0.03|A|F|1995-03-11|1995-03-23|1995-04-04|DELIVER IN PERSON|MAIL|ons. blithely fin| +38991|289228|26744|3|16|19475.36|0.00|0.02|A|F|1995-03-31|1995-04-03|1995-04-19|TAKE BACK RETURN|FOB|y unusual ideas breach carefu| +38991|50964|25967|4|30|57448.80|0.00|0.06|A|F|1995-05-14|1995-05-04|1995-05-30|NONE|AIR|lithely quickly even requests. fin| +38991|542333|29864|5|8|11002.48|0.10|0.03|R|F|1995-03-05|1995-04-12|1995-03-19|DELIVER IN PERSON|REG AIR|pending foxes are slyly ironic req| +39016|95315|7817|1|25|32757.75|0.03|0.04|N|O|1995-08-01|1995-07-17|1995-08-02|DELIVER IN PERSON|MAIL| accounts. blithely regular foxes| +39016|958307|8308|2|4|5461.04|0.10|0.08|R|F|1995-05-07|1995-06-29|1995-05-28|NONE|FOB|into beans. fu| +39016|256082|43598|3|1|1038.07|0.01|0.04|N|F|1995-06-10|1995-07-16|1995-06-28|TAKE BACK RETURN|TRUCK|ngside of the furiously final de| +39016|954073|4074|4|11|12397.33|0.00|0.07|N|O|1995-08-19|1995-06-07|1995-08-26|NONE|MAIL| accounts. accounts affix. accounts ar| +39016|102904|27909|5|48|91531.20|0.00|0.02|N|O|1995-07-23|1995-06-06|1995-08-15|DELIVER IN PERSON|AIR|ke express theodolites. fi| +39016|493917|18936|6|29|55415.81|0.02|0.08|N|O|1995-08-02|1995-07-20|1995-08-04|DELIVER IN PERSON|TRUCK|its are slyly final| +39016|251143|1144|7|7|7658.91|0.02|0.06|R|F|1995-05-23|1995-06-19|1995-06-07|DELIVER IN PERSON|SHIP|from the bold, final requests. furi| +39017|954989|4990|1|31|63362.14|0.04|0.06|N|O|1998-02-11|1997-11-28|1998-02-15|COLLECT COD|MAIL|g silently. careful| +39017|493529|18548|2|25|38062.50|0.10|0.01|N|O|1997-11-17|1997-12-23|1997-11-30|TAKE BACK RETURN|TRUCK|ptotes are requests. fina| +39017|738140|38141|3|15|17671.65|0.07|0.01|N|O|1998-01-13|1997-12-01|1998-02-09|COLLECT COD|REG AIR|he furiously final deposits w| +39017|917688|5243|4|18|30701.52|0.03|0.00|N|O|1997-11-19|1998-01-11|1997-12-16|COLLECT COD|REG AIR|iers haggle sl| +39017|567268|42291|5|27|36051.48|0.03|0.04|N|O|1998-02-07|1998-01-07|1998-02-28|NONE|MAIL|d ideas integrate fluffily ab| +39017|60805|35808|6|49|86524.20|0.10|0.01|N|O|1998-01-10|1998-01-06|1998-02-08|NONE|FOB|sleep quickly. fluffily regular depe| +39017|948687|11206|7|18|31241.52|0.00|0.04|N|O|1997-12-16|1997-12-25|1997-12-17|TAKE BACK RETURN|FOB|ubt furiously fur| +39018|578875|16409|1|31|60569.35|0.06|0.03|N|O|1998-02-09|1998-03-27|1998-03-11|DELIVER IN PERSON|SHIP|eodolites. final packag| +39018|142772|30279|2|49|88923.73|0.10|0.03|N|O|1998-01-31|1998-03-11|1998-02-05|TAKE BACK RETURN|FOB|ptotes wake furiously bold| +39019|307292|32305|1|1|1299.28|0.00|0.02|N|O|1995-12-30|1996-02-03|1996-01-28|TAKE BACK RETURN|FOB|quickly careful accoun| +39019|652247|39787|2|12|14390.52|0.04|0.03|N|O|1996-03-26|1996-02-25|1996-04-13|NONE|AIR|gular foxes. never| +39020|618646|43671|1|4|6258.44|0.01|0.05|N|O|1998-03-12|1998-04-19|1998-03-23|NONE|AIR|quickly final deposits detect furiously a| +39020|579571|17105|2|45|74274.75|0.03|0.04|N|O|1998-03-29|1998-03-29|1998-04-17|DELIVER IN PERSON|AIR|counts lose blithely a| +39020|849165|49166|3|45|50135.40|0.07|0.04|N|O|1998-02-13|1998-03-06|1998-02-24|NONE|TRUCK|onic, regular p| +39020|913157|13158|4|10|11701.10|0.07|0.07|N|O|1998-01-29|1998-03-19|1998-02-12|DELIVER IN PERSON|AIR|fully final requ| +39020|424333|49350|5|9|11315.79|0.04|0.03|N|O|1998-05-18|1998-04-03|1998-05-29|COLLECT COD|AIR|deposits. slyly regular a| +39021|437789|298|1|34|58709.84|0.00|0.01|A|F|1992-05-15|1992-05-27|1992-06-11|COLLECT COD|FOB|furiously quiet theodolites serv| +39021|903575|28612|2|50|78926.50|0.05|0.05|R|F|1992-07-13|1992-06-12|1992-07-27|COLLECT COD|SHIP|lar, bold instructions agains| +39021|377744|2759|3|26|47364.98|0.10|0.02|R|F|1992-08-01|1992-07-19|1992-08-23|COLLECT COD|FOB|s. quickly express requests are after | +39021|740569|40570|4|47|75647.91|0.05|0.05|A|F|1992-08-10|1992-07-19|1992-08-22|NONE|REG AIR|ess excuses print s| +39022|391344|3852|1|16|22965.28|0.08|0.08|A|F|1994-04-21|1994-02-13|1994-05-04|COLLECT COD|FOB|kly even frays. pending packages boo| +39022|302405|27418|2|26|36592.14|0.00|0.00|R|F|1994-02-10|1994-02-01|1994-02-12|TAKE BACK RETURN|MAIL|ts haggle car| +39022|515191|40212|3|11|13267.87|0.03|0.02|A|F|1994-04-17|1994-02-02|1994-04-26|DELIVER IN PERSON|TRUCK| theodolites detect | +39022|799449|49450|4|7|10838.87|0.10|0.01|R|F|1994-04-26|1994-03-04|1994-05-21|DELIVER IN PERSON|AIR|sual deposits. blithely fina| +39022|329333|29334|5|46|62666.72|0.02|0.07|A|F|1994-04-05|1994-03-12|1994-04-06|DELIVER IN PERSON|SHIP|cial asymp| +39022|86435|23939|6|4|5685.72|0.03|0.08|R|F|1994-02-20|1994-01-31|1994-02-25|DELIVER IN PERSON|SHIP| furiously re| +39023|780242|42758|1|23|30410.83|0.02|0.05|N|O|1996-09-15|1996-10-14|1996-10-07|DELIVER IN PERSON|REG AIR|e the carefully special packages? blith| +39023|511401|48932|2|26|36721.88|0.00|0.01|N|O|1996-10-29|1996-10-11|1996-11-07|TAKE BACK RETURN|FOB|gular sauternes. slyly express | +39023|116134|3641|3|8|9201.04|0.10|0.07|N|O|1996-10-16|1996-09-13|1996-11-13|COLLECT COD|REG AIR|. furiously pendi| +39023|847994|10511|4|4|7767.80|0.04|0.06|N|O|1996-09-11|1996-09-30|1996-10-06|TAKE BACK RETURN|TRUCK|ckly pending requests integr| +39023|223233|10746|5|22|25436.84|0.09|0.00|N|O|1996-12-10|1996-10-26|1997-01-05|TAKE BACK RETURN|AIR|c accounts after the accounts affix careful| +39048|452025|14535|1|34|33218.00|0.04|0.03|N|F|1995-06-06|1995-05-28|1995-07-06|TAKE BACK RETURN|REG AIR|he quickly final dolphins cajole after th| +39049|370491|8013|1|3|4684.44|0.08|0.07|N|O|1998-02-18|1998-02-06|1998-03-08|COLLECT COD|REG AIR|oldly regular accounts are carefully b| +39049|828175|40692|2|20|22062.60|0.00|0.05|N|O|1998-03-01|1998-03-05|1998-03-16|DELIVER IN PERSON|FOB|nto beans boost. final foxes among the| +39050|271484|46495|1|26|37842.22|0.03|0.07|N|O|1997-01-14|1996-11-02|1997-02-02|TAKE BACK RETURN|SHIP|e the furiously regular pinto beans boost| +39050|815784|3333|2|12|20396.88|0.10|0.01|N|O|1996-11-02|1996-12-15|1996-11-25|COLLECT COD|AIR|e silent re| +39050|869194|6746|3|21|24426.15|0.02|0.08|N|O|1996-10-26|1996-10-27|1996-11-01|TAKE BACK RETURN|TRUCK|ar, ironic deposit| +39050|532210|19741|4|8|9937.52|0.05|0.06|N|O|1996-10-14|1996-12-06|1996-10-30|DELIVER IN PERSON|FOB|quests. bold epi| +39051|752357|14873|1|1|1409.32|0.06|0.05|A|F|1995-01-27|1995-04-09|1995-01-31|NONE|MAIL| alongside of the silent, ironic Tire| +39051|848508|11025|2|26|37867.96|0.06|0.02|R|F|1995-04-07|1995-03-07|1995-04-27|DELIVER IN PERSON|RAIL|ns. express, final asym| +39051|861525|11526|3|15|22297.20|0.08|0.08|R|F|1995-02-25|1995-04-11|1995-03-07|NONE|REG AIR|requests nod slyly. ca| +39051|650621|25648|4|13|20430.67|0.05|0.07|R|F|1995-04-01|1995-04-14|1995-04-22|TAKE BACK RETURN|FOB|ess courts | +39051|976371|13929|5|3|4341.99|0.10|0.07|A|F|1995-04-22|1995-04-08|1995-04-23|DELIVER IN PERSON|AIR|uickly regular accounts could hav| +39051|865935|15936|6|36|68432.04|0.02|0.05|R|F|1995-02-15|1995-03-28|1995-02-16|COLLECT COD|TRUCK|regular ac| +39052|198643|11147|1|22|38316.08|0.08|0.05|N|O|1995-07-07|1995-06-13|1995-07-28|TAKE BACK RETURN|TRUCK|ng pains. | +39052|581099|43611|2|33|38942.31|0.08|0.01|N|O|1995-07-14|1995-06-07|1995-08-13|DELIVER IN PERSON|REG AIR|hang above the fluffily| +39052|516150|41171|3|48|55974.24|0.02|0.05|N|O|1995-07-07|1995-07-10|1995-07-22|NONE|REG AIR| after the special asymptote| +39052|929338|41857|4|2|2734.58|0.07|0.08|N|O|1995-08-18|1995-07-16|1995-08-31|TAKE BACK RETURN|RAIL|deas. carefully bold id| +39052|369949|7471|5|18|36340.74|0.01|0.01|A|F|1995-04-29|1995-07-16|1995-05-20|NONE|SHIP|ions. carefully regular a| +39052|720503|8046|6|1|1523.47|0.05|0.00|A|F|1995-05-18|1995-07-12|1995-06-07|COLLECT COD|SHIP|y final pinto beans. pl| +39053|475229|25230|1|7|8429.40|0.04|0.08|N|O|1996-10-24|1996-12-30|1996-11-17|TAKE BACK RETURN|REG AIR|ans. final | +39053|168771|6281|2|38|69911.26|0.07|0.04|N|O|1996-12-14|1996-11-12|1997-01-05|NONE|REG AIR|s the deposits. fluffily bold pinto bea| +39053|517679|30190|3|32|54292.80|0.05|0.02|N|O|1997-01-07|1996-12-26|1997-01-28|NONE|RAIL| final courts ar| +39053|626924|39437|4|17|31465.13|0.02|0.07|N|O|1996-12-31|1996-12-17|1997-01-26|DELIVER IN PERSON|TRUCK|s sleep furiously even foxe| +39053|698881|48882|5|24|45116.40|0.05|0.04|N|O|1997-01-04|1996-11-28|1997-01-31|TAKE BACK RETURN|MAIL|riously silent pinto beans. quickly close a| +39053|82929|7932|6|34|65005.28|0.09|0.01|N|O|1996-10-21|1996-11-22|1996-11-05|NONE|MAIL|ely express accounts-- slyl| +39054|454117|29136|1|5|5355.45|0.09|0.07|A|F|1994-01-03|1994-01-29|1994-01-27|DELIVER IN PERSON|AIR|s. blithely regular accounts ha| +39055|373980|11502|1|9|18485.73|0.10|0.02|N|O|1996-01-11|1996-02-16|1996-01-12|TAKE BACK RETURN|MAIL|ecial ideas. pe| +39055|473907|11435|2|29|54545.52|0.01|0.07|N|O|1996-04-02|1996-03-13|1996-04-26|TAKE BACK RETURN|TRUCK|patterns cajole e| +39055|938501|38502|3|38|58499.48|0.07|0.02|N|O|1996-01-11|1996-03-23|1996-02-07|NONE|SHIP|aggle carefully acco| +39055|375028|25029|4|20|22060.20|0.04|0.06|N|O|1996-02-26|1996-02-27|1996-03-01|TAKE BACK RETURN|RAIL|tes cajole except the carefully regular acc| +39055|90391|40392|5|16|22102.24|0.02|0.08|N|O|1996-02-04|1996-02-20|1996-03-01|DELIVER IN PERSON|MAIL|ests boost enticingly above the r| +39055|187361|49865|6|40|57934.40|0.02|0.06|N|O|1996-03-31|1996-03-14|1996-04-08|COLLECT COD|MAIL|unusual fox| +39055|973232|35752|7|25|32629.75|0.01|0.07|N|O|1996-04-23|1996-03-07|1996-05-08|NONE|SHIP|t the final ideas. deposits need t| +39080|93439|43440|1|44|63026.92|0.02|0.03|N|O|1997-11-27|1997-11-23|1997-12-27|NONE|RAIL|s packages are fluffil| +39080|420794|8319|2|12|20577.24|0.00|0.03|N|O|1997-10-06|1997-11-10|1997-11-01|NONE|REG AIR|ly regular accounts among | +39080|271166|21167|3|39|44348.85|0.02|0.07|N|O|1997-12-08|1997-12-15|1997-12-29|TAKE BACK RETURN|SHIP|ironic, special packages| +39080|478701|41211|4|28|47031.04|0.06|0.01|N|O|1997-10-18|1997-12-28|1997-10-27|NONE|TRUCK|odolites. furiou| +39081|711350|11351|1|13|17697.16|0.10|0.07|A|F|1992-08-23|1992-08-14|1992-09-06|TAKE BACK RETURN|MAIL|lithely blithely ironic requests.| +39081|644930|19955|2|47|88120.30|0.08|0.03|R|F|1992-06-14|1992-07-24|1992-07-10|NONE|SHIP|heodolites. bold Tiresias| +39082|142832|17837|1|34|63744.22|0.06|0.08|R|F|1993-01-05|1992-12-15|1993-01-10|TAKE BACK RETURN|REG AIR|pending accounts according to the quickly r| +39082|572038|47061|2|18|19980.18|0.08|0.03|A|F|1992-12-23|1993-02-03|1993-01-01|TAKE BACK RETURN|SHIP| blithely slyly silent theodolites. caref| +39083|785290|22836|1|8|11002.08|0.07|0.01|N|O|1997-03-25|1997-01-29|1997-04-18|COLLECT COD|FOB|uests. fluffily pen| +39084|380057|17579|1|25|28426.00|0.10|0.08|R|F|1994-09-30|1994-09-12|1994-10-06|TAKE BACK RETURN|TRUCK|lites. slyly ironic requests a| +39084|603236|15749|2|29|33036.80|0.01|0.01|A|F|1994-10-12|1994-08-05|1994-10-21|DELIVER IN PERSON|FOB|ajole blithely sl| +39084|572643|22644|3|12|20587.44|0.05|0.00|A|F|1994-09-21|1994-09-16|1994-10-16|NONE|SHIP|l sentiments. e| +39084|399216|49217|4|29|38140.80|0.06|0.06|R|F|1994-10-02|1994-08-09|1994-10-08|COLLECT COD|SHIP|xes. special foxes sleep. even| +39084|618111|43136|5|8|8232.64|0.01|0.05|A|F|1994-08-11|1994-09-10|1994-09-05|DELIVER IN PERSON|MAIL|ar, ironic packages are quickly excep| +39084|582041|7064|6|34|38182.68|0.07|0.08|R|F|1994-10-18|1994-09-02|1994-10-23|DELIVER IN PERSON|FOB|ar deposits| +39085|543733|43734|1|6|10660.26|0.04|0.07|N|O|1996-11-25|1996-10-13|1996-12-16|NONE|AIR|old, final packages sleep carefully across | +39085|510719|35740|2|13|22485.97|0.06|0.04|N|O|1996-08-21|1996-10-21|1996-09-18|NONE|FOB|ackages sle| +39085|637933|12958|3|9|16838.10|0.03|0.07|N|O|1996-10-21|1996-10-21|1996-11-06|COLLECT COD|TRUCK|ravely express ideas kindle q| +39085|738676|13705|4|38|65156.32|0.10|0.08|N|O|1996-10-18|1996-10-19|1996-11-05|COLLECT COD|AIR|s are carefully. slyly regular a| +39085|924070|11625|5|6|6564.18|0.05|0.06|N|O|1996-11-24|1996-10-22|1996-12-23|COLLECT COD|MAIL| ideas. slyly ir| +39085|833880|46397|6|46|83436.64|0.07|0.05|N|O|1996-12-08|1996-11-01|1996-12-18|TAKE BACK RETURN|REG AIR|sly regular| +39085|19849|19850|7|11|19457.24|0.06|0.03|N|O|1996-10-21|1996-10-31|1996-10-23|COLLECT COD|TRUCK|ts after the furiously iron| +39086|595601|8113|1|18|30538.44|0.01|0.06|R|F|1994-05-12|1994-04-18|1994-05-13|COLLECT COD|RAIL| carefully blithely| +39086|263741|13742|2|6|10228.38|0.02|0.07|R|F|1994-06-13|1994-05-11|1994-06-27|DELIVER IN PERSON|TRUCK|refully during the furiously silent depe| +39086|681459|31460|3|29|41772.18|0.04|0.08|A|F|1994-05-28|1994-05-03|1994-06-20|TAKE BACK RETURN|MAIL| final deposits integrate slyly. slyl| +39087|608090|20603|1|46|45910.76|0.10|0.06|A|F|1994-05-31|1994-07-29|1994-06-25|NONE|MAIL|above the slyly final pin| +39087|163442|25946|2|7|10538.08|0.04|0.08|A|F|1994-05-19|1994-08-08|1994-06-15|NONE|FOB| of the sly| +39087|967454|5012|3|16|24342.56|0.08|0.03|R|F|1994-06-25|1994-06-30|1994-07-15|NONE|AIR| furiously. brav| +39087|996606|9126|4|12|20430.72|0.09|0.05|A|F|1994-06-07|1994-07-23|1994-06-25|NONE|AIR| final accounts integrate. ideas across the| +39087|952108|2109|5|31|35961.86|0.03|0.08|A|F|1994-06-11|1994-06-20|1994-06-26|TAKE BACK RETURN|MAIL| ideas. blithely e| +39087|70045|45048|6|31|31466.24|0.06|0.04|A|F|1994-08-10|1994-06-30|1994-08-20|NONE|SHIP|cajole slyly quickly final requests.| +39087|241510|4015|7|11|15966.50|0.09|0.05|A|F|1994-07-17|1994-07-17|1994-08-14|COLLECT COD|FOB|ven packages cajole blit| +39112|44885|7386|1|11|20128.68|0.00|0.07|N|O|1995-07-07|1995-06-06|1995-07-08|COLLECT COD|RAIL|furiously special depths c| +39112|380728|30729|2|39|70539.69|0.02|0.06|A|F|1995-05-11|1995-07-14|1995-05-24|TAKE BACK RETURN|RAIL|requests wake furiously among the| +39112|888610|13645|3|47|75132.79|0.06|0.08|N|O|1995-08-07|1995-07-12|1995-08-31|COLLECT COD|MAIL|egularly final theodolites sleep| +39113|491782|16801|1|35|62081.60|0.10|0.03|R|F|1992-07-27|1992-07-14|1992-08-16|DELIVER IN PERSON|MAIL| about the| +39114|458052|45580|1|11|11110.33|0.09|0.08|R|F|1994-03-18|1994-02-13|1994-03-19|COLLECT COD|RAIL| foxes. dinos boost across the furiously si| +39114|472674|47693|2|34|55986.10|0.06|0.00|A|F|1993-12-10|1994-02-24|1994-01-07|TAKE BACK RETURN|FOB|ccording to the fluffily iron| +39114|230703|30704|3|12|19604.28|0.05|0.04|A|F|1993-12-26|1994-03-03|1994-01-22|COLLECT COD|REG AIR|uriously. reques| +39114|409842|22351|4|30|52554.60|0.09|0.07|R|F|1994-02-04|1994-01-14|1994-02-12|TAKE BACK RETURN|REG AIR| express instr| +39114|212789|12790|5|45|76579.65|0.00|0.00|A|F|1994-01-07|1994-02-11|1994-02-06|COLLECT COD|SHIP|haggle slyly quickly regular courts. unusua| +39114|344655|32174|6|42|71384.88|0.03|0.08|A|F|1994-01-30|1994-01-04|1994-03-01|NONE|REG AIR|deposits! blithely even| +39115|763374|920|1|16|22997.44|0.06|0.05|N|O|1998-03-21|1998-03-20|1998-04-17|COLLECT COD|RAIL|c packages was quickly agains| +39115|23707|36208|2|40|65228.00|0.04|0.05|N|O|1998-04-07|1998-04-13|1998-04-13|NONE|TRUCK|ly silent dependen| +39115|437939|25464|3|48|90091.68|0.04|0.07|N|O|1998-03-31|1998-03-17|1998-04-01|COLLECT COD|REG AIR|s. dependencies ag| +39115|439201|26726|4|21|23943.78|0.02|0.07|N|O|1998-05-22|1998-04-14|1998-06-06|DELIVER IN PERSON|RAIL|leep blithely slyly bold asy| +39116|671106|8646|1|29|31235.03|0.08|0.06|N|O|1998-05-30|1998-04-19|1998-06-16|COLLECT COD|AIR|onic accounts ab| +39116|263114|38125|2|2|2154.20|0.05|0.05|N|O|1998-04-22|1998-03-25|1998-05-04|COLLECT COD|AIR|ag slyly packages. blithely| +39116|141328|41329|3|35|47926.20|0.10|0.05|N|O|1998-05-13|1998-03-24|1998-06-09|DELIVER IN PERSON|AIR|counts. blithely ev| +39117|199740|24747|1|29|53352.46|0.08|0.03|N|O|1996-01-01|1996-03-01|1996-01-05|NONE|REG AIR|nusual foxes cajole. carefu| +39117|14734|27235|2|33|54408.09|0.06|0.05|N|O|1995-12-26|1996-02-25|1996-01-25|DELIVER IN PERSON|AIR|ss platelets will have to | +39117|625471|37984|3|36|50271.84|0.05|0.01|N|O|1996-04-14|1996-03-14|1996-05-14|DELIVER IN PERSON|TRUCK|gular deposits above the slyly silent dep| +39117|279231|16747|4|39|47198.58|0.10|0.02|N|O|1996-01-19|1996-02-08|1996-01-26|DELIVER IN PERSON|REG AIR|ironic accounts about the blithely expre| +39117|33271|8272|5|10|12042.70|0.08|0.04|N|O|1996-04-08|1996-02-18|1996-05-02|TAKE BACK RETURN|TRUCK|lphins. slyly even accounts must have to w| +39117|181194|31195|6|11|14027.09|0.00|0.04|N|O|1996-03-11|1996-03-03|1996-03-13|TAKE BACK RETURN|SHIP| final requests. slyly even | +39117|320093|7612|7|49|54540.92|0.06|0.03|N|O|1995-12-21|1996-02-12|1995-12-31|COLLECT COD|FOB|ly slyly ironic packages: attainments are. | +39118|788870|13901|1|13|25464.92|0.02|0.05|N|O|1997-02-20|1997-02-18|1997-03-19|NONE|REG AIR| wake quickly ironic multipliers. exc| +39118|529164|16695|2|2|2386.28|0.05|0.00|N|O|1997-02-10|1997-03-09|1997-03-09|TAKE BACK RETURN|FOB|tes across the r| +39118|645460|20485|3|14|19676.02|0.02|0.06|N|O|1997-02-04|1997-02-22|1997-02-11|COLLECT COD|REG AIR|s attainments boost quickly carefully sp| +39118|237363|12372|4|50|65017.50|0.02|0.05|N|O|1997-01-08|1997-02-06|1997-01-30|DELIVER IN PERSON|REG AIR|ckages are care| +39118|346043|46044|5|18|19602.54|0.05|0.01|N|O|1997-01-06|1997-02-16|1997-01-24|NONE|SHIP| instructions was| +39119|975773|25774|1|17|31428.41|0.00|0.05|N|O|1996-08-22|1996-07-01|1996-09-06|TAKE BACK RETURN|MAIL|uffily ironic theodolites. ironic,| +39144|109284|9285|1|45|58197.60|0.06|0.04|A|F|1995-05-17|1995-07-19|1995-06-02|TAKE BACK RETURN|MAIL| braids. fur| +39144|725874|38389|2|36|68394.24|0.04|0.06|N|O|1995-07-10|1995-06-12|1995-07-17|DELIVER IN PERSON|MAIL|thely against the deposits. theodolites| +39144|760861|35892|3|49|94169.67|0.04|0.07|N|O|1995-06-18|1995-06-29|1995-07-14|COLLECT COD|SHIP|wake. accounts cajole along the ironic| +39144|781537|19083|4|30|48555.00|0.01|0.06|N|O|1995-06-22|1995-06-17|1995-07-02|COLLECT COD|FOB|the furiousl| +39144|275611|622|5|39|61877.40|0.03|0.07|R|F|1995-05-08|1995-08-03|1995-05-15|DELIVER IN PERSON|MAIL| excuses? furiously special foxes hagg| +39144|183501|46005|6|45|71302.50|0.09|0.04|N|O|1995-08-26|1995-07-12|1995-09-06|TAKE BACK RETURN|MAIL|detect blithely. expres| +39145|119397|6904|1|41|58071.99|0.01|0.05|N|O|1998-03-31|1998-02-19|1998-04-15|DELIVER IN PERSON|RAIL|eposits. care| +39145|689969|39970|2|23|45055.39|0.06|0.08|N|O|1998-01-11|1998-02-17|1998-02-10|NONE|RAIL|rding to the sometimes regular instructio| +39146|40079|27580|1|31|31591.17|0.03|0.01|N|O|1995-08-15|1995-07-04|1995-08-23|TAKE BACK RETURN|AIR|ideas wake slyly. ruthless, ironic ideas ha| +39146|595356|45357|2|8|11610.64|0.00|0.05|N|O|1995-08-17|1995-07-08|1995-09-09|NONE|TRUCK| blithely daring packa| +39146|137225|12230|3|22|27768.84|0.03|0.03|N|O|1995-07-03|1995-07-23|1995-07-30|COLLECT COD|RAIL|sly express packages about the fluffily bo| +39146|330358|42865|4|18|24990.12|0.10|0.06|N|O|1995-07-16|1995-07-09|1995-08-12|TAKE BACK RETURN|TRUCK|y even theodolites! slyly | +39147|413159|38176|1|22|23586.86|0.05|0.03|N|O|1995-07-26|1995-08-31|1995-08-20|NONE|SHIP|ld excuses.| +39147|957834|32873|2|34|64320.86|0.03|0.02|N|O|1995-09-06|1995-08-11|1995-09-10|COLLECT COD|SHIP|ly regular pinto| +39147|310556|23063|3|34|53262.36|0.06|0.05|N|O|1995-10-09|1995-09-05|1995-10-12|DELIVER IN PERSON|TRUCK|es haggle furiously pac| +39148|115049|15050|1|34|36177.36|0.06|0.04|N|O|1998-04-15|1998-03-10|1998-05-08|DELIVER IN PERSON|SHIP|en ideas wake carefully quic| +39148|623033|10570|2|2|1912.00|0.09|0.04|N|O|1998-04-04|1998-02-26|1998-05-03|NONE|AIR|c foxes cajole after the| +39149|785368|35369|1|48|69759.84|0.09|0.05|R|F|1993-01-12|1993-01-03|1993-02-06|TAKE BACK RETURN|REG AIR|ly about the blithely express t| +39149|671862|46889|2|17|31175.11|0.01|0.00|A|F|1993-01-26|1993-01-04|1993-02-05|TAKE BACK RETURN|MAIL|ole furiously silent deposit| +39149|968113|18114|3|36|42518.52|0.01|0.03|A|F|1992-11-19|1992-12-04|1992-12-10|NONE|AIR|e according to the q| +39149|62012|37015|4|12|11688.12|0.10|0.03|A|F|1992-12-24|1993-01-19|1993-01-10|NONE|FOB|lly unusual ideas sleep blithely | +39149|232328|32329|5|7|8822.17|0.04|0.03|R|F|1992-11-04|1993-01-04|1992-11-23|DELIVER IN PERSON|TRUCK|y. blithely regula| +39149|722095|47124|6|43|48033.58|0.06|0.07|R|F|1993-01-21|1992-12-07|1993-02-20|DELIVER IN PERSON|FOB|ainments use. b| +39150|396707|34229|1|40|72147.60|0.06|0.07|R|F|1992-09-13|1992-11-13|1992-09-20|TAKE BACK RETURN|MAIL|careful instructions sleep| +39150|453828|28847|2|43|76617.40|0.08|0.02|A|F|1992-11-08|1992-10-01|1992-12-08|COLLECT COD|SHIP|xes. ironic pinto beans are slyly| +39150|483780|46290|3|25|44094.00|0.09|0.07|A|F|1992-12-02|1992-11-11|1992-12-23|COLLECT COD|RAIL|ts wake fluffily along the furious| +39150|880257|5292|4|32|39590.72|0.03|0.00|R|F|1992-11-14|1992-11-10|1992-11-20|COLLECT COD|REG AIR|ular, even | +39150|469400|44419|5|16|21910.08|0.02|0.01|A|F|1992-11-26|1992-10-17|1992-12-25|COLLECT COD|REG AIR|to haggle. carefull| +39150|198781|11285|6|1|1879.78|0.03|0.08|R|F|1992-10-30|1992-10-23|1992-11-13|COLLECT COD|AIR|st haggle c| +39151|562427|37450|1|44|65533.60|0.00|0.08|R|F|1993-05-19|1993-06-13|1993-06-13|COLLECT COD|TRUCK|lithely ironic waters. slowly bold acc| +39176|276860|1871|1|40|73474.00|0.01|0.04|N|O|1996-07-26|1996-08-13|1996-08-10|TAKE BACK RETURN|SHIP|ely express theodolites| +39176|172297|22298|2|2|2738.58|0.10|0.06|N|O|1996-07-31|1996-08-03|1996-08-15|DELIVER IN PERSON|MAIL|xcuses cajole slyly against the pinto beans| +39176|785521|48037|3|24|38555.76|0.02|0.06|N|O|1996-07-27|1996-08-04|1996-08-10|DELIVER IN PERSON|RAIL|nic accounts about the blithe| +39176|250486|25497|4|9|12928.23|0.10|0.05|N|O|1996-07-06|1996-09-10|1996-07-07|COLLECT COD|REG AIR|ly after the fluffily even pinto beans. | +39177|338710|13723|1|39|68199.30|0.08|0.07|N|O|1996-09-28|1996-11-03|1996-10-14|COLLECT COD|MAIL|s. slyly final requests wake quickly.| +39177|688083|38084|2|4|4284.20|0.06|0.01|N|O|1996-10-03|1996-11-03|1996-10-11|COLLECT COD|REG AIR|ross the blithely re| +39178|985634|48154|1|8|13756.72|0.02|0.06|N|O|1995-11-27|1995-10-30|1995-12-06|NONE|TRUCK|yly special dependencies wake. blithely un| +39178|535393|22924|2|22|31424.14|0.03|0.00|N|O|1995-11-27|1995-11-26|1995-12-20|DELIVER IN PERSON|RAIL|ithely unusual packages. | +39179|663409|38436|1|49|67246.13|0.04|0.08|N|O|1996-07-16|1996-05-27|1996-07-20|TAKE BACK RETURN|AIR|d ideas are acco| +39179|907607|7608|2|20|32291.20|0.08|0.03|N|O|1996-07-03|1996-05-22|1996-07-26|NONE|SHIP|ely ironic dolphins. slyly unusual deposit| +39180|114674|27177|1|50|84433.50|0.02|0.03|N|O|1997-07-15|1997-04-26|1997-08-10|DELIVER IN PERSON|SHIP|atelets boost carefully? quickly speci| +39180|319386|6905|2|38|53404.06|0.08|0.05|N|O|1997-04-30|1997-04-24|1997-05-30|NONE|REG AIR| haggle carefully final, regular account| +39180|904489|4490|3|37|55257.28|0.10|0.04|N|O|1997-06-19|1997-06-17|1997-07-16|NONE|FOB|ly pending orbits cajole ca| +39180|740179|15208|4|8|9753.12|0.09|0.05|N|O|1997-07-05|1997-06-16|1997-08-01|COLLECT COD|SHIP|deposits after the even, regular accounts| +39180|185680|35681|5|11|19422.48|0.08|0.02|N|O|1997-06-17|1997-04-23|1997-07-08|TAKE BACK RETURN|AIR|ording to the furiously special foxes. de| +39181|310818|23325|1|10|18288.00|0.02|0.04|N|O|1998-07-11|1998-08-05|1998-08-09|NONE|REG AIR| haggle quickly s| +39182|739721|39722|1|25|44017.25|0.03|0.02|A|F|1992-05-31|1992-07-17|1992-06-17|COLLECT COD|RAIL|ironic foxes. regu| +39182|474883|24884|2|26|48304.36|0.05|0.03|R|F|1992-06-06|1992-08-06|1992-06-23|TAKE BACK RETURN|REG AIR|y express packages sleep slyly| +39182|349161|36680|3|20|24203.00|0.05|0.08|R|F|1992-07-28|1992-06-11|1992-08-11|COLLECT COD|TRUCK|carefully r| +39182|333794|8807|4|11|20105.58|0.02|0.03|R|F|1992-06-19|1992-08-05|1992-07-14|COLLECT COD|REG AIR|ts wake slyl| +39182|65393|15394|5|36|48902.04|0.08|0.02|A|F|1992-08-23|1992-07-08|1992-09-02|TAKE BACK RETURN|RAIL|nst the quickly slow deposits | +39182|47284|34785|6|32|39400.96|0.09|0.08|R|F|1992-09-04|1992-07-18|1992-10-04|TAKE BACK RETURN|FOB|e slyly even deposits. slyly unusual depo| +39182|692861|5375|7|34|63030.22|0.00|0.03|R|F|1992-06-09|1992-07-08|1992-06-29|COLLECT COD|REG AIR|d deposits. slyly express packages de| +39183|911618|11619|1|17|27702.69|0.06|0.02|R|F|1992-09-02|1992-10-27|1992-09-12|NONE|FOB|iously blit| +39208|749623|37166|1|48|80284.32|0.03|0.06|A|F|1995-01-11|1995-02-12|1995-02-04|DELIVER IN PERSON|RAIL|l, ironic dinos sleep care| +39208|898313|35865|2|13|17046.51|0.04|0.01|A|F|1995-03-22|1995-01-14|1995-03-25|NONE|REG AIR|s. blithely | +39208|936704|11741|3|6|10443.96|0.06|0.01|R|F|1995-02-26|1995-02-12|1995-02-28|TAKE BACK RETURN|TRUCK|eep after the| +39208|171739|34243|4|25|45268.25|0.07|0.08|R|F|1995-03-15|1994-12-31|1995-03-24|NONE|REG AIR|ironic platelets haggl| +39208|404522|4523|5|24|34236.00|0.05|0.07|A|F|1995-01-13|1995-01-16|1995-02-09|NONE|AIR|ns. quickly regular asymptotes about the fu| +39209|753835|3836|1|30|56664.00|0.03|0.02|A|F|1992-11-23|1992-09-12|1992-11-24|DELIVER IN PERSON|SHIP|ely unusual platelets. u| +39209|697692|35232|2|11|18586.26|0.09|0.00|A|F|1992-11-18|1992-10-21|1992-11-26|COLLECT COD|TRUCK|yers after the never fin| +39209|99610|24613|3|5|8048.05|0.10|0.03|A|F|1992-10-26|1992-09-16|1992-11-08|NONE|SHIP|s across the quic| +39209|129304|4309|4|13|17332.90|0.02|0.07|R|F|1992-09-04|1992-09-28|1992-09-28|COLLECT COD|TRUCK|ular packa| +39210|630756|43269|1|39|65782.08|0.04|0.01|N|O|1997-12-29|1998-03-08|1998-01-16|NONE|RAIL|theodolites. bold instr| +39210|110174|35179|2|40|47366.80|0.00|0.02|N|O|1997-12-18|1998-02-17|1997-12-20|COLLECT COD|REG AIR|onic ideas. regular | +39210|683169|33170|3|31|35716.03|0.07|0.02|N|O|1998-03-26|1998-03-10|1998-04-22|TAKE BACK RETURN|RAIL|sts; furiously ironic packages sleep| +39210|20831|8332|4|38|66569.54|0.02|0.01|N|O|1998-02-14|1998-02-09|1998-03-10|COLLECT COD|AIR|ar theodolites cajol| +39210|92602|5104|5|18|28702.80|0.02|0.04|N|O|1998-04-05|1998-01-30|1998-04-06|DELIVER IN PERSON|RAIL| after the furiously fin| +39210|347385|47386|6|43|61591.91|0.01|0.00|N|O|1998-02-10|1998-03-02|1998-03-09|TAKE BACK RETURN|FOB|ly pending instructions. fluffily bold ins| +39211|965908|3466|1|35|69085.10|0.10|0.06|N|O|1996-08-20|1996-07-08|1996-09-12|TAKE BACK RETURN|RAIL|iously ironic requests| +39212|54693|29696|1|18|29658.42|0.07|0.00|N|O|1998-02-06|1998-01-29|1998-02-17|TAKE BACK RETURN|MAIL|s cajole against the furiously p| +39212|217964|17965|2|48|90333.60|0.08|0.05|N|O|1997-11-09|1997-12-11|1997-11-22|COLLECT COD|REG AIR|l instructions. special p| +39212|318016|43029|3|29|29986.00|0.07|0.03|N|O|1997-11-04|1998-01-26|1997-11-22|NONE|AIR|y courts. unusual, regular depe| +39212|894416|19451|4|26|36669.62|0.03|0.01|N|O|1998-02-06|1997-12-31|1998-02-28|DELIVER IN PERSON|RAIL|sly across the unusual depths| +39213|660498|10499|1|49|71464.54|0.09|0.05|N|O|1997-03-17|1997-02-10|1997-03-31|COLLECT COD|MAIL|ate. blithely ironi| +39213|975870|38390|2|46|89508.18|0.09|0.02|N|O|1997-01-06|1997-01-31|1997-01-16|COLLECT COD|MAIL|arefully enticing account| +39213|446108|21125|3|15|15811.20|0.05|0.02|N|O|1997-02-23|1997-02-26|1997-03-24|NONE|TRUCK|dle across the regular, e| +39214|505829|30850|1|46|84400.80|0.03|0.00|A|F|1994-03-26|1994-01-17|1994-04-11|DELIVER IN PERSON|TRUCK|y regular packages boost along the| +39214|454576|4577|2|34|52038.70|0.00|0.00|A|F|1994-01-17|1994-02-02|1994-02-02|NONE|AIR|nal dependencies above the slyly ir| +39214|49884|24885|3|8|14671.04|0.08|0.04|A|F|1994-02-23|1994-02-02|1994-03-13|COLLECT COD|MAIL|ld gifts. doggedly express | +39214|399815|24830|4|50|95740.00|0.02|0.02|A|F|1994-02-04|1994-02-26|1994-02-19|TAKE BACK RETURN|RAIL|uriously ironic deposits. slyl| +39214|686375|36376|5|21|28588.14|0.01|0.06|A|F|1994-02-16|1994-01-24|1994-02-21|COLLECT COD|RAIL|ld asymptotes wake a| +39215|840546|28095|1|31|46081.50|0.06|0.06|N|O|1997-11-29|1997-10-21|1997-12-06|COLLECT COD|RAIL|efully spec| +39215|54356|4357|2|46|60276.10|0.09|0.05|N|O|1997-11-15|1997-10-14|1997-12-15|COLLECT COD|AIR|fluffily special requests | +39215|559022|9023|3|24|25944.00|0.04|0.05|N|O|1997-12-04|1997-11-22|1997-12-18|TAKE BACK RETURN|TRUCK|iously final p| +39215|473384|10912|4|48|65153.28|0.04|0.06|N|O|1997-11-17|1997-11-20|1997-12-07|DELIVER IN PERSON|MAIL|p carefully forges. furiously ironic| +39215|154544|4545|5|47|75131.38|0.02|0.07|N|O|1997-10-16|1997-10-09|1997-11-02|NONE|AIR|es. fluffil| +39215|412355|49880|6|26|32950.58|0.02|0.08|N|O|1997-09-20|1997-10-08|1997-10-19|COLLECT COD|AIR|mptotes sl| +39240|377197|14719|1|13|16564.34|0.09|0.03|A|F|1992-04-18|1992-06-15|1992-05-14|NONE|TRUCK|dencies haggle furiously. fluffily ironic | +39240|533253|33254|2|29|37300.67|0.07|0.05|R|F|1992-04-16|1992-07-01|1992-04-19|DELIVER IN PERSON|FOB|uriously pending excuses. slyly | +39240|374827|24828|3|11|20919.91|0.02|0.03|A|F|1992-04-22|1992-06-20|1992-05-10|COLLECT COD|AIR|in gifts. blithely silent deposits should| +39240|707607|20122|4|42|67811.94|0.02|0.01|A|F|1992-07-20|1992-05-15|1992-07-21|TAKE BACK RETURN|AIR|ven ideas dazzle packages. final deposits| +39241|970534|33054|1|22|35298.78|0.09|0.00|N|O|1996-07-21|1996-09-03|1996-08-13|NONE|MAIL|. ironic, silent instructions against the f| +39241|761019|48565|2|41|44279.18|0.05|0.00|N|O|1996-09-23|1996-08-02|1996-10-07|NONE|TRUCK|ests haggle even| +39242|825848|881|1|33|58535.40|0.05|0.05|N|O|1997-07-31|1997-08-03|1997-08-25|COLLECT COD|FOB|hely final excuses haggle furi| +39242|14369|1870|2|13|16683.68|0.03|0.01|N|O|1997-09-24|1997-08-06|1997-09-25|COLLECT COD|MAIL|al, regular ideas. ironic reques| +39242|490184|2694|3|20|23483.20|0.06|0.06|N|O|1997-08-28|1997-09-18|1997-09-25|TAKE BACK RETURN|AIR|ar, even foxes. special, unusual reques| +39242|518661|18662|4|4|6718.56|0.02|0.08|N|O|1997-09-22|1997-09-19|1997-10-15|COLLECT COD|SHIP|ggle. final | +39243|208728|21233|1|46|75288.66|0.01|0.02|A|F|1995-02-24|1995-02-17|1995-03-09|NONE|SHIP|detect furious| +39243|78398|28399|2|23|31656.97|0.09|0.01|A|F|1994-12-29|1995-01-30|1995-01-07|DELIVER IN PERSON|AIR|ole at the reg| +39243|622289|34802|3|25|30281.25|0.10|0.03|A|F|1995-01-24|1995-02-22|1995-01-26|DELIVER IN PERSON|AIR|quests along the slyly ironic ideas | +39243|802417|27450|4|33|43539.21|0.01|0.05|R|F|1995-02-01|1995-03-06|1995-02-23|TAKE BACK RETURN|TRUCK|pending requests nag furiously about t| +39244|466822|16823|1|27|48297.60|0.06|0.08|N|O|1998-10-30|1998-09-26|1998-11-05|DELIVER IN PERSON|RAIL| the unusual packages sleep furiously acro| +39245|808237|20754|1|49|56114.31|0.08|0.00|A|F|1993-01-18|1993-02-17|1993-01-25|TAKE BACK RETURN|REG AIR|ages at the quickly unus| +39245|33347|8348|2|12|15364.08|0.09|0.07|A|F|1993-02-09|1993-03-17|1993-02-21|TAKE BACK RETURN|MAIL|es-- slyly express platelets sleep slyly s| +39245|462324|49852|3|31|39875.30|0.07|0.08|R|F|1993-03-06|1993-02-20|1993-03-27|TAKE BACK RETURN|AIR|inal theodolites. furiously re| +39245|266785|29291|4|2|3503.54|0.02|0.03|R|F|1993-01-30|1993-02-16|1993-02-26|COLLECT COD|FOB|efully final packages wake furiously. blith| +39245|846481|21514|5|32|45678.08|0.08|0.01|R|F|1993-02-25|1993-02-11|1993-03-08|TAKE BACK RETURN|FOB|ithes run sl| +39245|803859|28892|6|21|37019.01|0.06|0.06|A|F|1993-04-25|1993-02-20|1993-05-15|COLLECT COD|RAIL|posits. deposits boost slyly. regular, fin| +39245|445621|45622|7|14|21932.40|0.05|0.04|A|F|1993-04-12|1993-03-19|1993-04-29|NONE|TRUCK|nts. requests wake carefully after the| +39246|542409|17430|1|35|50798.30|0.06|0.03|A|F|1992-08-24|1992-10-11|1992-09-21|COLLECT COD|TRUCK|posits integrate| +39246|267449|42460|2|12|16997.16|0.01|0.05|R|F|1992-11-16|1992-10-01|1992-12-03|COLLECT COD|FOB|c requests. pinto beans sleep carefu| +39247|421170|8695|1|40|43646.00|0.05|0.00|R|F|1994-03-08|1994-04-30|1994-03-26|COLLECT COD|MAIL|pending theodolites be| +39247|603982|3983|2|39|73552.05|0.01|0.08|R|F|1994-04-22|1994-04-30|1994-05-04|TAKE BACK RETURN|TRUCK|lly until the furiously ironi| +39272|454765|29784|1|2|3439.48|0.09|0.00|N|O|1997-06-15|1997-05-02|1997-07-14|COLLECT COD|REG AIR|y along the carefully ironi| +39272|224714|12227|2|5|8193.50|0.00|0.07|N|O|1997-05-23|1997-05-25|1997-06-05|NONE|TRUCK| bold requests| +39272|755878|18394|3|2|3867.68|0.02|0.06|N|O|1997-05-21|1997-05-29|1997-06-11|TAKE BACK RETURN|FOB|ependencies| +39273|79281|29282|1|38|47890.64|0.06|0.02|N|O|1998-03-01|1998-04-25|1998-03-25|DELIVER IN PERSON|RAIL| packages sle| +39273|462337|12338|2|10|12993.10|0.04|0.02|N|O|1998-05-06|1998-03-26|1998-05-21|TAKE BACK RETURN|FOB|areful platelets. pinto beans nag slyly. f| +39273|494783|44784|3|31|55110.56|0.01|0.03|N|O|1998-05-15|1998-05-11|1998-05-28|COLLECT COD|TRUCK|inst the pinto beans. carefully ironic plat| +39273|805326|17843|4|15|18469.20|0.04|0.06|N|O|1998-05-22|1998-04-03|1998-06-14|NONE|MAIL|ickly dogged instructi| +39273|98105|35609|5|49|54051.90|0.08|0.07|N|O|1998-04-04|1998-04-22|1998-05-01|NONE|RAIL|ckages poach | +39273|841264|41265|6|26|31335.72|0.04|0.00|N|O|1998-04-14|1998-04-04|1998-05-09|NONE|RAIL|odolites thrash flu| +39273|117570|30073|7|24|38101.68|0.03|0.06|N|O|1998-06-09|1998-04-07|1998-06-28|COLLECT COD|RAIL|even deposits among| +39274|986465|36466|1|28|43439.76|0.07|0.08|N|O|1997-04-23|1997-04-07|1997-05-10|DELIVER IN PERSON|FOB|ckly bold accounts doubt.| +39274|514776|2307|2|36|64467.00|0.05|0.05|N|O|1997-05-27|1997-04-25|1997-06-09|COLLECT COD|TRUCK|ven instructions unwind; fluffily | +39274|828635|41152|3|13|20326.67|0.00|0.00|N|O|1997-04-01|1997-03-13|1997-04-24|DELIVER IN PERSON|SHIP|even, ironic grouches was fu| +39274|857576|45128|4|34|52140.02|0.05|0.08|N|O|1997-05-10|1997-04-16|1997-05-25|NONE|RAIL|lly according to the carefully pendi| +39274|271247|8763|5|13|15836.99|0.06|0.04|N|O|1997-03-04|1997-03-31|1997-03-15|DELIVER IN PERSON|FOB|ar foxes. regu| +39275|286445|23961|1|16|22902.88|0.08|0.01|N|O|1996-02-10|1996-04-10|1996-02-14|NONE|MAIL|bove the requests wake throughout the | +39275|276230|13746|2|28|33774.16|0.04|0.08|N|O|1996-04-18|1996-04-10|1996-05-15|TAKE BACK RETURN|TRUCK|lly ironic dependencies wake| +39276|472777|10305|1|45|78738.75|0.01|0.04|N|O|1995-07-28|1995-07-04|1995-08-20|COLLECT COD|AIR| to the asymptotes b| +39276|957286|44844|2|18|24178.32|0.09|0.05|N|O|1995-07-12|1995-07-15|1995-07-21|TAKE BACK RETURN|TRUCK|d requests cajole carefully according to th| +39276|92822|42823|3|43|78037.26|0.00|0.02|N|O|1995-08-25|1995-07-14|1995-08-31|NONE|SHIP|ular ideas sleep fluffily after the fin| +39276|58524|8525|4|48|71160.96|0.10|0.07|N|O|1995-07-11|1995-07-07|1995-07-15|COLLECT COD|TRUCK|requests. always regular deposits are. r| +39276|608909|8910|5|31|56353.97|0.06|0.01|N|O|1995-06-25|1995-06-27|1995-07-12|DELIVER IN PERSON|AIR|o beans cajole according to the carefull| +39277|583535|8558|1|28|45318.28|0.07|0.07|N|O|1997-01-27|1997-02-27|1997-02-09|COLLECT COD|AIR|always final packages are furio| +39277|461992|24502|2|25|48849.25|0.03|0.07|N|O|1997-03-24|1997-03-24|1997-03-26|DELIVER IN PERSON|REG AIR|es haggle carefully quic| +39277|698589|11103|3|36|57151.80|0.01|0.06|N|O|1997-05-03|1997-02-25|1997-05-13|TAKE BACK RETURN|REG AIR| instructions c| +39277|182502|45006|4|39|61795.50|0.09|0.06|N|O|1997-04-26|1997-04-05|1997-05-04|COLLECT COD|RAIL|nts sleep furiously a| +39278|250989|13495|1|16|31039.52|0.05|0.07|N|O|1996-06-27|1996-07-21|1996-07-07|NONE|FOB|aves. slyly regular requests against| +39278|366097|16098|2|22|25587.76|0.06|0.00|N|O|1996-06-14|1996-06-20|1996-07-05|COLLECT COD|SHIP|excuses eat fluffily even | +39278|977052|2091|3|3|3387.03|0.03|0.07|N|O|1996-09-11|1996-08-13|1996-09-21|DELIVER IN PERSON|AIR|ctions. furiously bold requests imp| +39279|13045|546|1|9|8622.36|0.05|0.03|R|F|1995-03-02|1995-05-10|1995-03-21|COLLECT COD|SHIP|. slyly even requests haggle special, d| +39279|240317|2822|2|34|42748.20|0.09|0.03|R|F|1995-03-10|1995-05-12|1995-03-15|NONE|AIR| haggle quick| +39279|5389|30390|3|29|37537.02|0.03|0.04|A|F|1995-04-23|1995-05-12|1995-05-22|COLLECT COD|FOB|ntly pending wa| +39279|558810|21322|4|28|52326.12|0.09|0.04|R|F|1995-03-08|1995-04-14|1995-04-06|NONE|MAIL|ously special ideas cajole quickly accord| +39279|905076|42631|5|13|14053.39|0.02|0.05|A|F|1995-05-23|1995-04-24|1995-05-24|COLLECT COD|MAIL|across the slyly| +39279|604645|4646|6|38|58885.18|0.08|0.01|A|F|1995-03-06|1995-04-27|1995-04-01|NONE|MAIL|ourts. furiously iron| +39304|245355|32868|1|3|3901.02|0.00|0.00|N|O|1997-03-03|1996-12-14|1997-03-10|NONE|RAIL|usual ideas sleep slyly.| +39304|679574|4601|2|46|71462.84|0.02|0.02|N|O|1997-02-06|1996-12-15|1997-02-20|COLLECT COD|MAIL|y careful a| +39304|595594|45595|3|9|15206.13|0.06|0.06|N|O|1997-02-25|1996-12-13|1997-03-21|COLLECT COD|AIR|ke. final idea| +39304|134778|47281|4|15|27191.55|0.04|0.08|N|O|1997-03-06|1997-01-12|1997-03-19|DELIVER IN PERSON|FOB|ess gifts. regular, re| +39304|201786|39299|5|14|23628.78|0.01|0.03|N|O|1996-11-14|1997-01-01|1996-11-18|TAKE BACK RETURN|SHIP|yly ironic requests integrate blith| +39304|413231|13232|6|5|5721.05|0.05|0.08|N|O|1997-03-12|1997-02-07|1997-04-02|DELIVER IN PERSON|REG AIR| ironic deposits cajole| +39304|169607|7117|7|19|31855.40|0.02|0.00|N|O|1996-12-29|1997-01-03|1997-01-12|TAKE BACK RETURN|REG AIR| the final requests. blithely| +39305|569370|19371|1|40|57574.00|0.05|0.03|R|F|1993-01-11|1992-12-19|1993-02-07|NONE|MAIL|y regular requests maintain slyly! bo| +39305|386352|11367|2|13|18698.42|0.10|0.06|A|F|1992-12-07|1992-12-15|1992-12-17|NONE|AIR|y bold pinto beans. blithely silent account| +39305|406904|44429|3|42|76056.96|0.09|0.06|R|F|1992-12-15|1992-12-20|1992-12-31|NONE|SHIP|ly alongside of the carefully regular | +39305|830638|43155|4|14|21960.26|0.04|0.08|R|F|1992-11-19|1992-11-26|1992-12-19|NONE|AIR|e of the b| +39305|521279|33790|5|30|39007.50|0.08|0.02|R|F|1993-01-06|1992-12-30|1993-01-09|TAKE BACK RETURN|RAIL| pinto beans| +39305|127067|39570|6|8|8752.48|0.10|0.07|A|F|1992-12-27|1992-12-06|1993-01-19|TAKE BACK RETURN|AIR|sly special accounts. bold d| +39305|604875|4876|7|28|49835.52|0.00|0.04|R|F|1992-10-29|1992-11-28|1992-11-12|TAKE BACK RETURN|REG AIR|lly bold, special deposits| +39306|127066|2071|1|14|15302.84|0.05|0.05|R|F|1993-07-10|1993-05-31|1993-07-15|DELIVER IN PERSON|RAIL|es. ironic ideas nag furiously. fu| +39306|594536|19559|2|43|70111.93|0.00|0.04|A|F|1993-07-19|1993-05-31|1993-07-23|DELIVER IN PERSON|RAIL|unts sleep fluffily | +39306|365648|28156|3|28|47981.64|0.00|0.08|R|F|1993-08-12|1993-06-29|1993-08-22|COLLECT COD|FOB|ithely final pains. slyl| +39306|439906|14923|4|25|46147.00|0.05|0.04|R|F|1993-04-30|1993-06-15|1993-05-16|COLLECT COD|FOB|ess foxes sleep furiously after the | +39307|508447|33468|1|21|30563.82|0.09|0.00|N|O|1996-09-10|1996-10-06|1996-09-16|DELIVER IN PERSON|TRUCK|e blithely above the carefully | +39307|463448|38467|2|31|43754.02|0.06|0.04|N|O|1996-09-11|1996-09-18|1996-10-05|COLLECT COD|SHIP|inst the carefu| +39308|915347|15348|1|29|39506.70|0.03|0.01|R|F|1995-04-14|1995-03-02|1995-04-30|TAKE BACK RETURN|REG AIR|ackages ar| +39309|644225|44226|1|37|43260.03|0.01|0.08|N|O|1996-10-28|1996-12-07|1996-11-06|COLLECT COD|RAIL|al packages haggle regular| +39309|486739|11758|2|14|24159.94|0.05|0.06|N|O|1997-01-15|1996-12-10|1997-01-20|NONE|TRUCK|to beans mold quickly along t| +39309|606080|6081|3|39|38455.95|0.06|0.02|N|O|1996-11-22|1996-11-29|1996-11-30|COLLECT COD|RAIL|wind furiously regular deposits| +39309|380129|42637|4|47|56828.17|0.06|0.06|N|O|1996-12-24|1996-11-30|1997-01-12|DELIVER IN PERSON|FOB|t the packages. pack| +39310|480265|5284|1|30|37357.20|0.02|0.05|N|O|1996-02-05|1996-01-18|1996-02-11|DELIVER IN PERSON|SHIP|ide of the f| +39310|798847|48848|2|24|46699.44|0.07|0.06|N|O|1995-12-25|1995-12-10|1996-01-21|NONE|REG AIR|. accounts sleep. silent deposits| +39311|200455|12960|1|49|66416.56|0.10|0.01|N|O|1996-12-29|1997-02-11|1997-01-24|DELIVER IN PERSON|SHIP|lyly pending, ruthless foxes. final pac| +39311|45844|33345|2|4|7159.36|0.10|0.04|N|O|1996-12-17|1997-01-28|1996-12-22|COLLECT COD|REG AIR|y special | +39311|484907|34908|3|25|47297.00|0.10|0.00|N|O|1997-01-30|1997-02-09|1997-02-27|DELIVER IN PERSON|FOB|dly quickly final requests. express | +39311|827592|2625|4|45|68379.75|0.07|0.05|N|O|1997-01-30|1997-02-02|1997-02-18|DELIVER IN PERSON|TRUCK|as haggle fluffily ac| +39311|324521|37028|5|50|77275.50|0.09|0.08|N|O|1997-02-26|1997-01-02|1997-03-07|NONE|FOB|ly express foxes wake evenly reg| +39311|215208|15209|6|17|19094.23|0.09|0.08|N|O|1996-11-27|1997-01-28|1996-12-07|COLLECT COD|AIR| beans cajole alongsid| +39336|266280|28786|1|43|53589.61|0.08|0.00|N|O|1996-11-23|1996-12-02|1996-12-20|NONE|AIR|ely. ironic | +39336|351764|1765|2|38|68998.50|0.07|0.08|N|O|1996-10-27|1996-11-01|1996-11-23|TAKE BACK RETURN|REG AIR|lly final de| +39337|56398|43902|1|26|35214.14|0.04|0.03|A|F|1993-09-28|1993-09-30|1993-10-14|DELIVER IN PERSON|TRUCK|thely final deposits are carefu| +39337|867586|5138|2|34|52820.36|0.02|0.03|A|F|1993-11-16|1993-11-01|1993-12-05|DELIVER IN PERSON|TRUCK|g ideas wake regular dependencies. requests| +39337|516796|16797|3|24|43506.48|0.08|0.08|A|F|1993-10-26|1993-09-29|1993-11-09|DELIVER IN PERSON|RAIL|ckly about the quic| +39337|783925|21471|4|23|46204.47|0.06|0.01|A|F|1993-11-21|1993-11-21|1993-11-27|TAKE BACK RETURN|FOB|riously deposits. blithely pend| +39338|675977|25978|1|48|93741.12|0.08|0.01|N|O|1995-10-20|1995-09-15|1995-11-14|TAKE BACK RETURN|RAIL|en accounts. silent theodol| +39338|138269|13274|2|10|13072.60|0.06|0.05|N|O|1995-10-30|1995-10-01|1995-11-22|TAKE BACK RETURN|AIR|d accounts boost s| +39338|872023|22024|3|49|48754.02|0.07|0.07|N|O|1995-11-25|1995-10-27|1995-11-28|TAKE BACK RETURN|TRUCK|brave deposit| +39338|74366|11870|4|48|64337.28|0.03|0.05|N|O|1995-11-05|1995-10-30|1995-11-25|TAKE BACK RETURN|RAIL|ckages. ironic hockey players are regula| +39338|866546|29064|5|47|71087.50|0.03|0.01|N|O|1995-12-08|1995-09-18|1995-12-27|DELIVER IN PERSON|REG AIR|y grouches: | +39338|27631|15132|6|46|71696.98|0.03|0.03|N|O|1995-11-21|1995-09-15|1995-11-25|NONE|REG AIR|ake slyly ev| +39339|5947|30948|1|3|5558.82|0.06|0.02|N|O|1997-12-10|1998-01-06|1997-12-25|COLLECT COD|REG AIR|quickly blit| +39339|949287|36842|2|4|5344.96|0.00|0.06|N|O|1998-01-18|1997-11-25|1998-02-04|DELIVER IN PERSON|TRUCK|fily slyly even requ| +39339|651717|39257|3|48|80096.64|0.00|0.08|N|O|1997-12-13|1997-11-14|1997-12-24|TAKE BACK RETURN|RAIL|uffily ironic| +39339|406086|6087|4|22|21825.32|0.07|0.01|N|O|1997-12-06|1997-11-19|1997-12-15|TAKE BACK RETURN|RAIL|uffily regular ac| +39339|74823|49826|5|31|55732.42|0.04|0.01|N|O|1998-01-07|1997-11-20|1998-01-27|DELIVER IN PERSON|AIR|tructions sleep. car| +39339|547932|10443|6|16|31678.56|0.03|0.07|N|O|1997-11-18|1997-12-19|1997-12-01|DELIVER IN PERSON|AIR|phs: furiou| +39340|125403|408|1|40|57136.00|0.01|0.03|N|O|1997-03-06|1996-12-14|1997-03-22|TAKE BACK RETURN|RAIL|ing dolphins. fluffily final theodolite| +39340|644177|6690|2|25|28028.50|0.09|0.07|N|O|1997-01-08|1997-01-30|1997-02-01|TAKE BACK RETURN|REG AIR|s wake furiously after the sometimes | +39340|673626|36140|3|12|19195.08|0.02|0.01|N|O|1996-11-19|1997-02-02|1996-12-16|NONE|TRUCK|heodolites abo| +39340|619119|31632|4|7|7266.56|0.00|0.01|N|O|1996-12-11|1997-01-29|1996-12-17|NONE|MAIL|thely regular theodo| +39340|520785|8316|5|44|79453.44|0.04|0.00|N|O|1996-12-24|1997-01-08|1997-01-20|DELIVER IN PERSON|RAIL|accounts hinder| +39341|788293|25839|1|28|38675.28|0.07|0.01|R|F|1992-07-23|1992-09-03|1992-08-03|NONE|MAIL| deposits detect quickly. q| +39341|826908|26909|2|4|7339.44|0.10|0.01|A|F|1992-08-03|1992-09-15|1992-08-04|TAKE BACK RETURN|REG AIR|otes. quickly bol| +39341|827952|2985|3|4|7519.64|0.07|0.00|A|F|1992-08-29|1992-08-12|1992-09-15|COLLECT COD|REG AIR|slyly. express foxes serv| +39341|386701|36702|4|11|19664.59|0.05|0.06|R|F|1992-07-20|1992-09-04|1992-07-31|COLLECT COD|REG AIR|o beans. fluffily regu| +39341|281299|18815|5|30|38408.40|0.02|0.08|A|F|1992-08-30|1992-08-28|1992-09-24|DELIVER IN PERSON|MAIL|uickly regular theodolites. furio| +39341|779040|41556|6|21|23499.21|0.00|0.05|R|F|1992-08-26|1992-08-20|1992-09-05|COLLECT COD|MAIL|t the special, express request| +39341|320065|20066|7|23|24956.15|0.04|0.03|A|F|1992-08-16|1992-08-02|1992-08-28|TAKE BACK RETURN|AIR|es are idly according to the| +39342|329587|17106|1|41|66279.37|0.01|0.07|R|F|1993-04-25|1993-06-18|1993-05-01|TAKE BACK RETURN|AIR| furiously | +39342|365604|28112|2|6|10017.54|0.03|0.06|A|F|1993-05-01|1993-05-25|1993-05-17|DELIVER IN PERSON|SHIP| furiously regula| +39343|478728|3747|1|10|17067.00|0.07|0.07|R|F|1993-05-16|1993-03-02|1993-05-18|NONE|TRUCK| furiously ironic plat| +39343|978449|16007|2|36|54986.40|0.00|0.07|A|F|1993-05-01|1993-03-03|1993-05-07|TAKE BACK RETURN|REG AIR|le quickly ruth| +39343|787586|12617|3|40|66942.00|0.05|0.01|R|F|1993-04-15|1993-04-12|1993-05-14|COLLECT COD|TRUCK| even dependencies. unusual| +39343|943889|18926|4|35|67649.40|0.10|0.07|A|F|1993-03-03|1993-04-14|1993-03-05|DELIVER IN PERSON|RAIL|s sublate carefully blithely special| +39343|926543|1580|5|46|72197.00|0.00|0.07|R|F|1993-04-22|1993-04-18|1993-05-13|NONE|SHIP| by the regular, even| +39343|402248|14757|6|48|55210.56|0.03|0.02|A|F|1993-04-02|1993-02-22|1993-04-04|NONE|TRUCK|ructions wake speci| +39368|766693|29209|1|36|63347.76|0.08|0.00|N|O|1996-06-18|1996-07-24|1996-07-05|DELIVER IN PERSON|RAIL|. carefully bold de| +39368|799729|12245|2|41|74976.29|0.01|0.02|N|O|1996-05-29|1996-06-15|1996-06-19|COLLECT COD|MAIL|ve asymptotes| +39368|30406|17907|3|42|56128.80|0.07|0.05|N|O|1996-08-15|1996-07-03|1996-09-01|COLLECT COD|SHIP|ckages. foxes a| +39368|21177|21178|4|6|6589.02|0.10|0.01|N|O|1996-06-03|1996-06-19|1996-06-30|NONE|AIR|r theodolites. final requests nag fu| +39369|549544|24565|1|7|11154.64|0.10|0.00|N|O|1997-02-23|1997-01-13|1997-03-12|NONE|FOB|iously ironic dolphins. carefully | +39370|533821|46332|1|42|77901.60|0.03|0.07|R|F|1992-08-29|1992-07-03|1992-09-24|NONE|TRUCK|foxes. quickly special| +39370|926511|39030|2|21|32286.87|0.05|0.05|A|F|1992-06-01|1992-07-17|1992-06-28|NONE|SHIP|de of the express theodolites. carefully | +39371|315833|15834|1|38|70255.16|0.00|0.02|A|F|1993-09-06|1993-09-09|1993-09-10|COLLECT COD|RAIL|al accounts. slyly final foxes aff| +39371|196116|8620|2|36|43635.96|0.00|0.02|R|F|1993-10-20|1993-09-12|1993-11-05|NONE|MAIL|ss the slow, regular asymptotes s| +39371|117598|30101|3|48|77548.32|0.10|0.05|R|F|1993-07-05|1993-09-16|1993-07-22|NONE|AIR|ons. final requests| +39371|465173|40192|4|24|27315.60|0.10|0.06|A|F|1993-07-26|1993-08-11|1993-07-29|TAKE BACK RETURN|RAIL|uickly regular| +39371|155125|30132|5|28|33043.36|0.01|0.08|R|F|1993-10-09|1993-09-20|1993-10-20|DELIVER IN PERSON|SHIP|ly unusual accounts. fluffily ironic packag| +39371|183772|8779|6|42|77942.34|0.02|0.03|A|F|1993-10-13|1993-08-02|1993-11-09|DELIVER IN PERSON|MAIL|ending deposits. carefully regul| +39371|651545|39085|7|38|56867.38|0.00|0.02|A|F|1993-09-29|1993-08-16|1993-10-05|COLLECT COD|AIR|tions. blithely ir| +39372|512090|37111|1|11|12122.77|0.07|0.03|N|O|1997-01-10|1996-12-29|1997-01-19|COLLECT COD|RAIL| the quickly | +39372|689213|39214|2|3|3606.54|0.00|0.00|N|O|1997-02-01|1997-02-14|1997-02-07|NONE|REG AIR|nal requests! expr| +39372|589917|14940|3|22|44151.58|0.00|0.05|N|O|1997-01-01|1996-12-29|1997-01-16|COLLECT COD|FOB|tions. enticingly regular theo| +39372|725717|38232|4|35|60993.80|0.06|0.08|N|O|1996-12-10|1997-01-23|1996-12-20|DELIVER IN PERSON|REG AIR|ts promise slyly silent frets. regular a| +39372|120189|20190|5|9|10882.62|0.09|0.04|N|O|1997-01-26|1997-02-10|1997-02-16|TAKE BACK RETURN|MAIL|s grow fluffily slyly iro| +39373|418439|5964|1|15|20361.15|0.06|0.03|R|F|1995-04-04|1995-06-05|1995-04-14|COLLECT COD|RAIL|lar accounts kindle silently fin| +39373|692317|42318|2|7|9164.96|0.10|0.02|R|F|1995-05-17|1995-06-05|1995-06-05|COLLECT COD|AIR|ages. slyly even packages hinder. pe| +39373|757215|7216|3|45|57248.10|0.00|0.00|A|F|1995-05-22|1995-05-08|1995-06-10|DELIVER IN PERSON|RAIL|ounts cajole blithely across the p| +39373|507146|32167|4|24|27674.88|0.02|0.07|R|F|1995-04-07|1995-05-03|1995-04-19|DELIVER IN PERSON|TRUCK|ly after the quickly ironic| +39373|599311|11823|5|46|64873.34|0.01|0.06|R|F|1995-05-03|1995-04-18|1995-05-07|TAKE BACK RETURN|MAIL|olites wake carefully fluffily regular in| +39373|616049|16050|6|4|3860.04|0.03|0.01|R|F|1995-03-24|1995-05-06|1995-04-06|NONE|AIR|en theodolites. fi| +39373|925782|819|7|24|43385.76|0.08|0.06|A|F|1995-03-19|1995-06-12|1995-04-10|NONE|TRUCK|ts sleep blithely even, fin| +39374|610603|35628|1|16|24217.12|0.09|0.06|R|F|1994-11-09|1994-11-03|1994-12-04|TAKE BACK RETURN|SHIP|y regular foxes. fluffy excuses wak| +39374|392308|42309|2|36|50410.44|0.07|0.03|R|F|1994-11-21|1994-10-27|1994-12-14|NONE|TRUCK|he slyly ironic instructi| +39374|515543|3074|3|43|67016.36|0.09|0.02|A|F|1994-11-02|1994-11-23|1994-11-24|TAKE BACK RETURN|REG AIR|e quickly | +39374|723259|48288|4|21|26926.62|0.03|0.06|A|F|1994-12-26|1994-11-06|1995-01-08|COLLECT COD|FOB|. slyly quie| +39374|807329|7330|5|2|2472.56|0.10|0.00|R|F|1995-01-25|1994-12-21|1995-02-08|TAKE BACK RETURN|RAIL|egular ideas sleep even depen| +39375|433308|8325|1|31|38479.68|0.09|0.02|N|O|1997-08-04|1997-09-26|1997-08-29|DELIVER IN PERSON|AIR|. slyly final accoun| +39375|595370|32904|2|1|1465.35|0.01|0.00|N|O|1997-09-03|1997-09-26|1997-09-22|COLLECT COD|SHIP|ix furiously sly| +39375|374325|49340|3|28|39180.68|0.01|0.08|N|O|1997-10-20|1997-08-11|1997-11-02|COLLECT COD|REG AIR|s. blithely unusual platelets integ| +39375|267650|5166|4|13|21029.32|0.06|0.05|N|O|1997-08-17|1997-10-06|1997-08-29|COLLECT COD|RAIL|requests affix slyly alongsid| +39375|389996|2504|5|18|37547.64|0.07|0.04|N|O|1997-07-25|1997-09-09|1997-08-13|NONE|RAIL|the quickly | +39375|660969|23483|6|22|42458.46|0.08|0.02|N|O|1997-08-31|1997-09-29|1997-09-19|DELIVER IN PERSON|REG AIR|. pending, pe| +39375|903302|3303|7|22|28715.72|0.10|0.05|N|O|1997-09-17|1997-08-31|1997-09-18|COLLECT COD|TRUCK|blithely reg| +39400|781709|44225|1|30|53720.10|0.04|0.02|N|O|1998-01-31|1998-01-18|1998-02-18|DELIVER IN PERSON|MAIL| doze furiously after the perman| +39400|174482|49489|2|15|23347.20|0.06|0.03|N|O|1998-01-04|1998-03-10|1998-01-06|DELIVER IN PERSON|RAIL|ructions. express, silent id| +39401|210210|22715|1|13|14562.60|0.00|0.03|A|F|1993-02-12|1993-04-08|1993-02-25|DELIVER IN PERSON|AIR|furiously bold ideas. blithely regular | +39401|985121|47641|2|20|24121.60|0.03|0.00|R|F|1993-04-30|1993-04-01|1993-05-27|DELIVER IN PERSON|REG AIR|p blithely ironic ideas. | +39401|926191|1228|3|28|34080.20|0.03|0.00|A|F|1993-05-02|1993-04-08|1993-05-24|NONE|RAIL|riously pending asym| +39401|491429|16448|4|16|22726.40|0.05|0.00|A|F|1993-04-15|1993-03-11|1993-04-24|DELIVER IN PERSON|FOB| deposits boost furiously about the quic| +39401|442577|5086|5|35|53184.25|0.07|0.05|R|F|1993-03-21|1993-02-19|1993-03-26|TAKE BACK RETURN|MAIL|ns sleep slyly furiously bo| +39401|380737|43245|6|46|83615.12|0.06|0.03|A|F|1993-04-25|1993-03-03|1993-05-18|TAKE BACK RETURN|AIR|fter the slyly special deposit| +39402|770954|45985|1|28|56697.76|0.09|0.03|N|O|1995-09-08|1995-08-08|1995-09-29|DELIVER IN PERSON|FOB|lar, silent | +39402|409458|9459|2|30|41022.90|0.10|0.05|N|O|1995-08-13|1995-07-11|1995-08-26|DELIVER IN PERSON|RAIL| ideas. slyly regular ideas | +39402|747434|34977|3|47|69625.80|0.02|0.01|R|F|1995-05-19|1995-07-01|1995-06-08|DELIVER IN PERSON|AIR|nic deposits nag furiously along the regu| +39403|473073|48092|1|45|47072.25|0.03|0.04|A|F|1993-03-14|1993-02-14|1993-03-31|COLLECT COD|FOB|uriously regular deposits boost? blith| +39403|928791|28792|2|17|30935.75|0.05|0.02|A|F|1993-03-25|1993-01-31|1993-04-07|COLLECT COD|AIR| use around t| +39403|184296|34297|3|29|40028.41|0.01|0.01|A|F|1993-02-15|1993-02-09|1993-02-18|TAKE BACK RETURN|RAIL|es haggle. carefully| +39404|499870|24889|1|30|56095.50|0.10|0.00|R|F|1993-07-23|1993-06-29|1993-08-14|NONE|SHIP|its cajole regular, regular deposits. | +39404|301765|14272|2|4|7067.00|0.10|0.01|A|F|1993-08-10|1993-05-25|1993-08-15|NONE|FOB|bold instructions s| +39404|757987|45533|3|27|55213.65|0.05|0.04|A|F|1993-07-16|1993-07-07|1993-08-15|COLLECT COD|AIR| after the stealthy asymptotes. e| +39404|477326|27327|4|47|61255.10|0.02|0.00|R|F|1993-08-03|1993-06-21|1993-08-19|COLLECT COD|MAIL|slyly special re| +39404|414871|39888|5|30|53575.50|0.04|0.07|A|F|1993-07-06|1993-07-07|1993-07-30|TAKE BACK RETURN|AIR| quickly even deposits wake blithely.| +39404|735809|48324|6|50|92238.50|0.04|0.04|A|F|1993-05-30|1993-06-14|1993-06-12|NONE|MAIL|cial packages. quickly final packa| +39404|729061|41576|7|34|37061.02|0.01|0.00|R|F|1993-06-25|1993-06-16|1993-07-23|TAKE BACK RETURN|AIR|xpress, final d| +39405|319899|19900|1|23|44134.24|0.02|0.03|N|O|1997-10-31|1997-08-30|1997-11-24|NONE|TRUCK|ent notornis. quickly daring dep| +39405|533218|33219|2|49|61308.31|0.07|0.05|N|O|1997-09-21|1997-10-08|1997-09-29|TAKE BACK RETURN|AIR| carefully ironic requests| +39405|782363|44879|3|6|8671.98|0.05|0.02|N|O|1997-11-22|1997-09-10|1997-12-05|TAKE BACK RETURN|TRUCK|express reque| +39405|165507|28011|4|8|12580.00|0.09|0.03|N|O|1997-08-30|1997-09-04|1997-08-31|NONE|SHIP|onic packages. pendi| +39405|662234|49774|5|37|44259.40|0.08|0.07|N|O|1997-08-12|1997-09-01|1997-08-17|DELIVER IN PERSON|TRUCK|even instruction| +39405|166788|29292|6|17|31531.26|0.04|0.07|N|O|1997-10-05|1997-08-30|1997-11-02|NONE|TRUCK|, pending notornis: f| +39405|192929|30439|7|20|40438.40|0.02|0.08|N|O|1997-09-13|1997-10-10|1997-10-11|NONE|REG AIR|jole. slyly pending reques| +39406|541170|3681|1|18|21800.70|0.05|0.07|N|O|1997-07-25|1997-08-29|1997-08-11|COLLECT COD|TRUCK|ing, final requests. regu| +39406|436527|49036|2|14|20489.00|0.05|0.06|N|O|1997-06-30|1997-08-27|1997-07-03|NONE|SHIP| special ideas along the sl| +39406|693347|5861|3|25|33507.75|0.02|0.04|N|O|1997-07-03|1997-09-14|1997-07-11|DELIVER IN PERSON|REG AIR|eodolites wake blithely quick platelets. ev| +39406|81173|18677|4|19|21929.23|0.06|0.01|N|O|1997-07-02|1997-08-30|1997-07-10|TAKE BACK RETURN|AIR| the fluffily regular forg| +39407|918182|5737|1|8|9601.12|0.02|0.08|N|O|1998-03-21|1998-04-24|1998-04-12|NONE|MAIL|eposits. carefully even ideas haggle even, | +39407|871030|8582|2|15|15014.85|0.00|0.03|N|O|1998-05-15|1998-05-03|1998-06-07|TAKE BACK RETURN|REG AIR|xcuses sleep sl| +39407|390950|3458|3|2|4081.88|0.10|0.02|N|O|1998-05-14|1998-03-20|1998-06-03|NONE|TRUCK|fily. deposits wake furiously among| +39407|684326|9353|4|40|52411.60|0.01|0.00|N|O|1998-04-22|1998-03-10|1998-05-03|DELIVER IN PERSON|MAIL| boost across | +39407|451545|14055|5|25|37413.00|0.00|0.06|N|O|1998-05-12|1998-04-01|1998-05-29|DELIVER IN PERSON|MAIL|rets was slyly even dept| +39407|116132|3639|6|11|12629.43|0.08|0.02|N|O|1998-02-15|1998-04-28|1998-03-07|COLLECT COD|MAIL|ts use alongsid| +39407|815327|2876|7|48|59629.44|0.04|0.08|N|O|1998-03-28|1998-03-09|1998-04-20|COLLECT COD|RAIL|except the quickly express pl| +39432|184505|9512|1|50|79475.00|0.01|0.08|N|O|1996-05-02|1996-02-15|1996-05-12|TAKE BACK RETURN|FOB|ments wake b| +39432|972645|47684|2|4|6870.40|0.09|0.05|N|O|1996-03-21|1996-03-02|1996-03-29|TAKE BACK RETURN|TRUCK|le alongside of the blithely exp| +39432|241191|16200|3|42|47551.56|0.00|0.08|N|O|1996-03-06|1996-02-22|1996-03-23|TAKE BACK RETURN|FOB|y silent requests. carefully express | +39433|632627|32628|1|24|37430.16|0.07|0.00|N|O|1995-09-28|1995-08-14|1995-10-08|NONE|AIR|al asymptotes slee| +39433|547619|47620|2|21|34998.39|0.09|0.06|N|O|1995-07-18|1995-08-16|1995-08-17|NONE|RAIL| requests. even, idle | +39433|825926|25927|3|21|38889.48|0.10|0.04|N|O|1995-08-05|1995-09-09|1995-09-01|TAKE BACK RETURN|RAIL|instructions haggle bl| +39433|326554|39061|4|31|48996.74|0.04|0.02|N|O|1995-09-23|1995-09-04|1995-10-03|NONE|MAIL|usly bold | +39433|378820|3835|5|33|62660.73|0.08|0.06|N|O|1995-07-01|1995-07-31|1995-07-03|DELIVER IN PERSON|AIR|ccording to | +39434|697085|9599|1|17|18394.85|0.04|0.05|N|O|1996-08-29|1996-09-28|1996-08-30|NONE|SHIP|hely unusual packages. furious| +39434|898602|48603|2|8|12804.48|0.00|0.01|N|O|1996-11-16|1996-10-11|1996-11-30|TAKE BACK RETURN|MAIL|se blithely slyly final | +39434|803171|15688|3|5|5370.65|0.03|0.01|N|O|1996-09-23|1996-10-03|1996-10-17|COLLECT COD|RAIL|s breach quickly f| +39434|894557|19592|4|40|62060.40|0.00|0.08|N|O|1996-09-25|1996-10-16|1996-10-19|TAKE BACK RETURN|FOB|ickly carefully regu| +39434|816284|41317|5|21|25205.04|0.03|0.01|N|O|1996-09-13|1996-09-20|1996-09-25|DELIVER IN PERSON|SHIP|ding accounts nag arou| +39434|282736|20252|6|5|8593.60|0.01|0.07|N|O|1996-10-23|1996-10-17|1996-10-24|DELIVER IN PERSON|FOB|ss warthogs. depende| +39434|942908|5427|7|6|11705.16|0.09|0.02|N|O|1996-09-28|1996-09-12|1996-10-26|COLLECT COD|AIR|detect furiously alo| +39435|451731|1732|1|30|50481.30|0.00|0.07|N|O|1997-12-22|1997-12-04|1997-12-31|TAKE BACK RETURN|RAIL|xes. deposits use slyly. blithely| +39435|228233|40738|2|32|37159.04|0.02|0.05|N|O|1997-11-22|1997-11-29|1997-12-07|COLLECT COD|MAIL|d, ironic packages. pending accoun| +39435|896017|46018|3|18|18233.46|0.08|0.06|N|O|1997-10-18|1997-11-26|1997-11-15|DELIVER IN PERSON|AIR| pending gifts are evenly aro| +39435|351639|1640|4|28|47337.36|0.01|0.07|N|O|1997-11-06|1997-10-14|1997-11-20|COLLECT COD|MAIL| even, bold packages | +39436|206830|19335|1|30|52104.60|0.03|0.03|A|F|1993-01-10|1993-01-30|1993-01-20|TAKE BACK RETURN|RAIL|s along the blithely eve| +39436|186788|11795|2|16|29996.48|0.07|0.07|A|F|1993-02-07|1993-03-02|1993-02-09|DELIVER IN PERSON|TRUCK|onic attainments haggle fl| +39437|736566|24109|1|12|19230.36|0.04|0.04|N|O|1996-05-08|1996-03-10|1996-06-06|DELIVER IN PERSON|REG AIR|to the express courts. slyly final dolphins| +39438|191626|29136|1|48|82445.76|0.06|0.07|R|F|1993-09-23|1993-10-26|1993-09-30|TAKE BACK RETURN|TRUCK|rate-- blithely even platelets s| +39438|644398|31935|2|1|1342.36|0.06|0.04|A|F|1994-01-08|1993-11-06|1994-01-31|COLLECT COD|AIR|y above the special accounts. unusual, iron| +39438|382104|7119|3|1|1186.09|0.06|0.03|R|F|1993-12-01|1993-11-10|1993-12-29|NONE|AIR| ironic ideas affix blithel| +39439|284979|9990|1|5|9819.80|0.00|0.04|N|O|1996-03-18|1996-04-06|1996-04-17|TAKE BACK RETURN|SHIP|ickly special requests. fluffily express| +39439|636033|11058|2|40|38760.00|0.08|0.05|N|O|1996-02-23|1996-03-11|1996-03-13|NONE|RAIL|. blithely final accounts| +39439|800852|853|3|12|21033.72|0.02|0.03|N|O|1996-03-19|1996-02-28|1996-04-09|COLLECT COD|MAIL|nic instructions print furiously regular pi| +39464|273051|10567|1|41|41985.64|0.03|0.05|N|O|1997-03-17|1997-02-15|1997-04-05|NONE|MAIL|ckly about the pending deposit| +39464|152745|2746|2|16|28763.84|0.05|0.03|N|O|1997-01-05|1997-01-09|1997-01-07|COLLECT COD|SHIP|y express dep| +39464|177728|15238|3|8|14445.76|0.02|0.07|N|O|1997-03-25|1997-01-26|1997-03-31|DELIVER IN PERSON|REG AIR|bout the brave escapades;| +39464|71432|46435|4|22|30875.46|0.03|0.02|N|O|1997-03-24|1996-12-31|1997-04-20|TAKE BACK RETURN|SHIP|hely around the slyly final p| +39464|542231|42232|5|40|50928.40|0.04|0.06|N|O|1997-01-18|1997-02-02|1997-01-29|COLLECT COD|REG AIR|unts haggle carefully. carefully s| +39464|268510|43521|6|26|38441.00|0.09|0.08|N|O|1997-02-26|1997-02-13|1997-03-25|DELIVER IN PERSON|MAIL|e carefully unusual pinto beans. even requ| +39464|835204|47721|7|8|9113.28|0.00|0.08|N|O|1997-01-29|1997-02-27|1997-02-07|COLLECT COD|REG AIR|kly bold deposits. furi| +39465|271923|34429|1|27|51162.57|0.02|0.04|N|O|1996-10-11|1996-09-21|1996-10-31|NONE|RAIL|ously slyly express p| +39465|202530|2531|2|13|18622.76|0.10|0.00|N|O|1996-11-05|1996-09-13|1996-12-05|NONE|SHIP|g the slyly bold package| +39465|916701|41738|3|37|63553.42|0.01|0.04|N|O|1996-09-06|1996-09-13|1996-09-17|NONE|RAIL|nticing foxes| +39465|992246|17285|4|13|17396.60|0.02|0.05|N|O|1996-11-25|1996-10-09|1996-12-04|DELIVER IN PERSON|MAIL|ress deposits are ruthlessly final ideas. | +39466|778389|15935|1|8|11738.80|0.05|0.03|A|F|1992-09-02|1992-10-15|1992-09-08|COLLECT COD|MAIL|xpress idea| +39466|376500|39008|2|24|37835.76|0.05|0.02|R|F|1992-12-24|1992-10-11|1992-12-29|COLLECT COD|TRUCK|sits. ironic accounts are d| +39466|829653|42170|3|17|26904.37|0.04|0.06|R|F|1992-12-13|1992-11-17|1992-12-29|NONE|REG AIR|usual accounts cajole| +39466|977211|39731|4|22|28339.74|0.06|0.06|R|F|1992-10-03|1992-11-18|1992-10-28|TAKE BACK RETURN|TRUCK|ests. blithely bold deposits nag. furiou| +39466|975165|204|5|6|7440.72|0.03|0.08|R|F|1992-10-31|1992-09-27|1992-11-08|DELIVER IN PERSON|MAIL|ent platelets are. regular p| +39466|581551|19085|6|18|29385.54|0.06|0.06|R|F|1992-11-05|1992-11-09|1992-11-08|TAKE BACK RETURN|MAIL|ular accounts. ironic packages a| +39466|116995|16996|7|24|48287.76|0.09|0.03|A|F|1992-12-11|1992-10-12|1993-01-04|COLLECT COD|RAIL|s affix blithely fur| +39467|324578|49591|1|9|14423.04|0.05|0.01|A|F|1994-02-21|1994-02-06|1994-02-23|NONE|AIR|t asymptotes use furi| +39467|169179|44186|2|20|24963.40|0.03|0.01|R|F|1993-12-26|1994-01-20|1994-01-02|COLLECT COD|FOB| integrate blithely about the deposits| +39467|390225|27747|3|22|28934.62|0.03|0.01|R|F|1994-02-01|1994-01-11|1994-02-25|COLLECT COD|REG AIR|xpress instructions sleep carefull| +39467|510213|47744|4|37|45258.03|0.07|0.02|A|F|1994-02-22|1994-02-20|1994-03-11|DELIVER IN PERSON|FOB|nusual theodolites. blithel| +39467|133644|46147|5|15|25164.60|0.00|0.04|R|F|1993-12-08|1994-01-25|1993-12-16|NONE|RAIL|- regular packages detect| +39468|427530|2547|1|23|33522.73|0.00|0.00|N|O|1995-08-09|1995-10-23|1995-08-10|COLLECT COD|AIR|nto beans dazzle furiously blithe foxes. s| +39468|484332|9351|2|35|46070.85|0.10|0.04|N|O|1995-09-14|1995-10-24|1995-09-23|COLLECT COD|RAIL|ly through the carefully regular depos| +39468|164554|27058|3|24|38845.20|0.01|0.07|N|O|1995-11-15|1995-10-11|1995-12-10|COLLECT COD|FOB| bold packages. slyly even| +39468|642870|42871|4|18|32631.12|0.05|0.01|N|O|1995-10-23|1995-09-11|1995-11-14|COLLECT COD|RAIL|arefully pending sau| +39468|702816|15331|5|13|23644.14|0.06|0.04|N|O|1995-08-07|1995-10-15|1995-08-14|TAKE BACK RETURN|FOB|ructions are. regular pinto beans caj| +39468|217220|42229|6|30|34116.30|0.08|0.08|N|O|1995-10-06|1995-10-22|1995-10-27|TAKE BACK RETURN|FOB|he blithely si| +39468|811893|11894|7|49|88437.65|0.05|0.04|N|O|1995-08-06|1995-09-25|1995-08-20|COLLECT COD|REG AIR|ounts impress slyly regular, final| +39469|480466|42976|1|16|23143.04|0.07|0.00|A|F|1995-03-04|1995-02-15|1995-03-21|NONE|REG AIR|ar foxes haggl| +39469|177608|2615|2|23|38768.80|0.00|0.01|A|F|1995-03-18|1995-03-15|1995-04-03|DELIVER IN PERSON|FOB|frays sleep blithely. careful| +39470|66944|4448|1|10|19109.40|0.08|0.02|A|F|1994-01-31|1994-03-13|1994-02-01|DELIVER IN PERSON|REG AIR|lly final forges breach furiously expres| +39470|127086|27087|2|41|45636.28|0.07|0.02|A|F|1994-03-29|1994-03-12|1994-04-20|NONE|MAIL| carefully bold| +39470|932753|45272|3|18|32142.78|0.08|0.06|R|F|1993-12-20|1994-01-31|1993-12-31|NONE|SHIP|fully according to the instru| +39471|564976|14977|1|49|100006.55|0.04|0.06|N|O|1995-09-20|1995-08-12|1995-09-23|TAKE BACK RETURN|REG AIR|ests. carefully ironic dep| +39471|541537|16558|2|37|58404.87|0.08|0.03|N|O|1995-10-05|1995-08-29|1995-10-21|DELIVER IN PERSON|MAIL|s. requests wake blithely alongsi| +39496|13861|38862|1|15|26622.90|0.03|0.02|N|O|1996-04-11|1996-02-06|1996-05-06|COLLECT COD|AIR|fluffily. furio| +39496|949103|24140|2|3|3456.18|0.01|0.01|N|O|1995-12-30|1996-02-21|1996-01-26|TAKE BACK RETURN|RAIL| bold requests unwind blithely arou| +39496|568167|18168|3|33|40759.62|0.04|0.00|N|O|1996-03-04|1996-02-28|1996-03-22|TAKE BACK RETURN|REG AIR|ts. instructions nag slyly according to t| +39496|175246|12756|4|11|14533.64|0.01|0.06|N|O|1996-02-10|1996-01-16|1996-02-23|DELIVER IN PERSON|RAIL|t the patte| +39496|355905|43427|5|45|88240.05|0.08|0.08|N|O|1996-03-18|1996-01-19|1996-04-13|NONE|REG AIR|ns. slyly stealth| +39497|300786|38305|1|27|48242.79|0.07|0.06|N|O|1995-08-30|1995-07-27|1995-09-27|TAKE BACK RETURN|SHIP|press packa| +39498|596751|34285|1|47|86843.31|0.09|0.02|N|O|1998-01-07|1997-11-18|1998-01-14|NONE|FOB| ironic theodolites affix furiously. regula| +39498|588220|38221|2|27|35321.40|0.04|0.06|N|O|1997-11-02|1997-11-28|1997-11-07|NONE|TRUCK| furiously even c| +39498|211053|11054|3|33|31813.32|0.00|0.04|N|O|1997-11-16|1997-11-06|1997-11-27|TAKE BACK RETURN|AIR|ly of the deposits. furiously r| +39498|159028|46538|4|29|31523.58|0.00|0.03|N|O|1997-11-13|1997-10-17|1997-12-09|NONE|SHIP|egular deposits use furiously on| +39498|779719|42235|5|13|23382.84|0.01|0.00|N|O|1997-10-03|1997-11-13|1997-10-30|NONE|MAIL|ng the blithely special ac| +39499|822216|47249|1|40|45526.80|0.09|0.08|A|F|1994-07-07|1994-08-09|1994-08-03|NONE|AIR|e blithely against the slyly re| +39499|979098|29099|2|42|49436.10|0.10|0.06|R|F|1994-09-27|1994-08-05|1994-10-26|NONE|TRUCK| the pending asymptotes. final foxes sleep| +39499|687926|440|3|24|45933.36|0.05|0.04|R|F|1994-09-22|1994-08-16|1994-10-03|NONE|TRUCK|ss theodolites. slyly express packages hag| +39499|960619|23139|4|30|50387.10|0.03|0.02|R|F|1994-08-17|1994-07-15|1994-08-29|NONE|AIR| carefully express| +39499|106742|19245|5|9|15738.66|0.00|0.06|A|F|1994-07-15|1994-07-23|1994-08-04|TAKE BACK RETURN|TRUCK|en asymptotes ca| +39499|5137|42638|6|17|17716.21|0.09|0.00|A|F|1994-09-11|1994-07-15|1994-10-09|NONE|RAIL|hely final deposits sleep above | +39500|771594|34110|1|43|71619.08|0.02|0.02|N|O|1997-06-10|1997-04-10|1997-07-04|NONE|TRUCK|gainst the packages boost qui| +39500|176898|1905|2|6|11849.34|0.03|0.02|N|O|1997-04-09|1997-04-21|1997-04-27|DELIVER IN PERSON|MAIL| final deposits| +39500|120983|20984|3|32|64127.36|0.03|0.01|N|O|1997-03-26|1997-04-17|1997-03-27|DELIVER IN PERSON|TRUCK| ideas boost slyly? platelets nag acr| +39500|355630|18138|4|33|55625.46|0.10|0.05|N|O|1997-03-31|1997-04-24|1997-04-25|DELIVER IN PERSON|FOB|the carefully ironic pinto beans.| +39500|70934|33436|5|30|57147.90|0.01|0.05|N|O|1997-06-13|1997-05-05|1997-06-20|DELIVER IN PERSON|REG AIR| carefully e| +39500|185602|35603|6|18|30376.80|0.08|0.08|N|O|1997-05-13|1997-04-28|1997-05-16|COLLECT COD|AIR|nding requests sleep blithely bold asy| +39501|985615|23173|1|11|18706.27|0.07|0.03|N|O|1997-03-18|1997-03-02|1997-03-30|DELIVER IN PERSON|MAIL|busily regular ideas. blithely ironic | +39501|217611|30116|2|37|56558.20|0.01|0.05|N|O|1997-01-28|1997-02-20|1997-02-14|COLLECT COD|MAIL|ironic packag| +39501|386482|24004|3|34|53327.98|0.05|0.05|N|O|1997-01-16|1997-03-26|1997-02-01|DELIVER IN PERSON|MAIL|regular, regular req| +39501|588622|13645|4|46|78687.60|0.06|0.08|N|O|1997-02-26|1997-03-24|1997-03-19|TAKE BACK RETURN|FOB| slyly regular accounts are furiously| +39501|962150|24670|5|8|9696.88|0.10|0.08|N|O|1997-01-19|1997-02-03|1997-01-26|TAKE BACK RETURN|FOB|quiet packages cajole around the bold, expr| +39502|463812|38831|1|10|17757.90|0.10|0.07|N|O|1998-04-15|1998-04-11|1998-04-18|NONE|SHIP|pending ideas cajole. | +39503|348698|23711|1|20|34933.60|0.10|0.05|N|O|1996-11-01|1996-12-20|1996-11-14|DELIVER IN PERSON|SHIP|ithely exp| +39528|710311|35340|1|20|26425.60|0.10|0.07|N|O|1997-06-24|1997-08-04|1997-07-15|COLLECT COD|RAIL|boost furiously after the r| +39528|191689|16696|2|14|24929.52|0.01|0.00|N|O|1997-09-19|1997-07-21|1997-09-28|DELIVER IN PERSON|AIR| pending accounts x-ray furiously special, | +39528|701278|38821|3|11|14071.64|0.10|0.08|N|O|1997-06-19|1997-07-07|1997-07-05|NONE|MAIL|posits detect regularly regular c| +39528|376552|26553|4|45|73284.30|0.02|0.08|N|O|1997-09-27|1997-07-19|1997-10-05|DELIVER IN PERSON|AIR|ts. furiously spec| +39528|709118|9119|5|14|15779.12|0.10|0.07|N|O|1997-08-19|1997-08-06|1997-09-12|TAKE BACK RETURN|FOB|kly. blithely final accounts a| +39529|14175|14176|1|14|15248.38|0.03|0.01|A|F|1992-11-19|1992-11-22|1992-11-26|COLLECT COD|REG AIR|es haggle never dependencies. speci| +39529|236997|12006|2|4|7735.92|0.02|0.03|A|F|1992-11-16|1992-11-30|1992-11-25|COLLECT COD|SHIP|ideas. doggedly spec| +39530|42776|5277|1|19|32656.63|0.00|0.02|N|O|1996-03-10|1996-04-18|1996-03-20|TAKE BACK RETURN|AIR| wake fluffi| +39530|925428|465|2|44|63948.72|0.09|0.02|N|O|1996-05-13|1996-02-26|1996-05-22|DELIVER IN PERSON|MAIL|e carefully ironic notornis.| +39530|665403|15404|3|28|38314.36|0.10|0.05|N|O|1996-03-29|1996-03-22|1996-04-02|DELIVER IN PERSON|FOB|uctions. furiously bold requests nag f| +39530|421536|46553|4|37|53927.87|0.02|0.01|N|O|1996-04-28|1996-04-16|1996-05-05|COLLECT COD|MAIL|thely regular ideas wake. fu| +39530|755407|42953|5|15|21935.55|0.10|0.05|N|O|1996-01-26|1996-03-24|1996-02-17|TAKE BACK RETURN|SHIP|. slyly unu| +39530|112995|502|6|47|94375.53|0.08|0.05|N|O|1996-02-18|1996-04-17|1996-03-17|DELIVER IN PERSON|TRUCK|the regular packages. courts above the furi| +39531|277801|2812|1|19|33797.01|0.09|0.05|A|F|1994-02-11|1994-01-21|1994-03-09|COLLECT COD|FOB|riously. deposits cajole| +39531|995400|7920|2|20|29907.20|0.09|0.03|R|F|1993-12-18|1993-12-20|1994-01-04|TAKE BACK RETURN|TRUCK|aggle. ironic sauternes use carefully. sil| +39531|676380|38894|3|22|29839.70|0.00|0.01|A|F|1993-11-30|1994-01-14|1993-12-28|NONE|TRUCK|he unusual waters haggle carefull| +39531|911529|24048|4|12|18485.76|0.09|0.08|R|F|1993-11-04|1994-01-06|1993-12-04|DELIVER IN PERSON|REG AIR|ven deposits affix| +39531|66931|16932|5|26|49346.18|0.07|0.03|R|F|1993-12-11|1993-12-30|1993-12-17|TAKE BACK RETURN|RAIL| cajole fluffily. pinto beans haggle bli| +39532|638345|13370|1|11|14116.41|0.06|0.03|A|F|1994-07-05|1994-06-07|1994-07-22|COLLECT COD|FOB|uriously special decoys. even inst| +39532|648977|48978|2|4|7703.76|0.10|0.01|A|F|1994-04-09|1994-05-11|1994-04-17|TAKE BACK RETURN|TRUCK|carefully. carefully regular| +39532|345649|45650|3|8|13557.04|0.10|0.06|R|F|1994-04-20|1994-05-04|1994-05-16|NONE|REG AIR|rts haggle carefully| +39532|308718|21225|4|31|53527.70|0.01|0.01|R|F|1994-05-31|1994-04-28|1994-06-04|DELIVER IN PERSON|AIR|lly final fo| +39532|612481|18|5|7|9754.15|0.09|0.03|A|F|1994-06-06|1994-05-14|1994-06-11|DELIVER IN PERSON|SHIP| ideas detect. care| +39532|960642|35681|6|14|23836.40|0.04|0.07|R|F|1994-06-27|1994-05-08|1994-07-07|COLLECT COD|RAIL|l theodolites use furiously | +39533|772390|22391|1|28|40946.08|0.03|0.03|N|O|1998-06-04|1998-05-07|1998-06-25|COLLECT COD|RAIL| final accounts across the| +39533|558354|20866|2|45|63554.85|0.00|0.04|N|O|1998-04-13|1998-06-10|1998-04-29|NONE|REG AIR|carefully along the reques| +39533|247310|34823|3|5|6286.50|0.05|0.03|N|O|1998-06-20|1998-06-11|1998-07-02|COLLECT COD|REG AIR|nstructions. silent foxes abo| +39534|447017|9526|1|7|6747.93|0.04|0.05|A|F|1994-06-30|1994-07-08|1994-07-05|TAKE BACK RETURN|SHIP|gular decoys | +39534|730|25731|2|16|26091.68|0.04|0.03|A|F|1994-06-13|1994-07-12|1994-06-27|COLLECT COD|SHIP|es affix sl| +39534|267513|5029|3|10|14805.00|0.02|0.04|A|F|1994-07-22|1994-07-22|1994-08-13|NONE|MAIL|out the furiously regular instruc| +39534|89866|27370|4|15|27837.90|0.01|0.01|R|F|1994-06-30|1994-06-12|1994-07-14|COLLECT COD|AIR|. quickly furious accounts m| +39534|362723|25231|5|19|33928.49|0.00|0.02|R|F|1994-08-17|1994-06-08|1994-08-28|TAKE BACK RETURN|TRUCK|blithely regular requests wake s| +39534|277135|2146|6|7|7784.84|0.08|0.00|R|F|1994-06-15|1994-07-15|1994-06-25|NONE|AIR|ages affix along| +39535|547243|34774|1|47|60640.34|0.01|0.00|N|O|1997-08-12|1997-07-03|1997-08-25|DELIVER IN PERSON|TRUCK|uriously ironic accounts sleep. iro| +39535|507087|32108|2|12|13128.72|0.02|0.06|N|O|1997-06-12|1997-08-19|1997-07-12|COLLECT COD|MAIL|lly fluffily| +39560|110452|35457|1|37|54110.65|0.00|0.08|N|O|1995-09-01|1995-11-07|1995-09-10|DELIVER IN PERSON|FOB|ickly even attainments? carefully bold in| +39560|365796|3318|2|44|81918.32|0.08|0.06|N|O|1995-11-16|1995-09-19|1995-12-10|TAKE BACK RETURN|MAIL|ss the frets print f| +39560|921006|33525|3|43|44159.28|0.03|0.07|N|O|1995-11-22|1995-10-17|1995-12-11|TAKE BACK RETURN|SHIP|ven deposits snooze carefully afte| +39561|466779|4307|1|27|47135.25|0.10|0.03|A|F|1994-07-29|1994-08-03|1994-08-14|COLLECT COD|FOB|es are. regular, final dependencies affix| +39561|148038|10541|2|29|31494.87|0.03|0.07|A|F|1994-07-19|1994-07-25|1994-08-08|COLLECT COD|MAIL| pinto beans: fluffily unusual acc| +39561|68944|31446|3|22|42084.68|0.09|0.03|A|F|1994-07-14|1994-08-18|1994-08-02|TAKE BACK RETURN|SHIP|. foxes nag. | +39561|739636|27179|4|4|6702.40|0.02|0.08|A|F|1994-07-11|1994-07-28|1994-07-12|DELIVER IN PERSON|MAIL| cajole slyly. ironic| +39561|57590|20092|5|40|61903.60|0.05|0.04|A|F|1994-08-16|1994-07-29|1994-08-25|DELIVER IN PERSON|MAIL|s will are about the quic| +39561|908030|45585|6|32|33215.68|0.02|0.00|R|F|1994-07-08|1994-08-14|1994-08-07|COLLECT COD|SHIP|sits detect furiously across the fur| +39561|254787|29798|7|30|52253.10|0.01|0.05|A|F|1994-10-15|1994-08-27|1994-11-07|DELIVER IN PERSON|MAIL|e excuses. blithel| +39562|195702|33212|1|16|28763.20|0.00|0.00|N|O|1997-03-04|1997-01-13|1997-03-30|DELIVER IN PERSON|TRUCK| bold, special packages. brave, unusu| +39562|162727|25231|2|46|82327.12|0.07|0.05|N|O|1996-12-16|1997-02-06|1996-12-31|DELIVER IN PERSON|FOB|uick packages are care| +39563|679192|41706|1|5|5855.80|0.02|0.02|N|O|1997-07-04|1997-09-13|1997-07-31|TAKE BACK RETURN|RAIL|wake caref| +39563|174731|24732|2|9|16251.57|0.02|0.04|N|O|1997-10-02|1997-08-21|1997-10-18|COLLECT COD|AIR|hely unusual| +39564|324585|49598|1|8|12876.56|0.05|0.07|N|O|1996-05-15|1996-06-01|1996-06-13|COLLECT COD|FOB|ets. final, special deposits across t| +39564|289079|26595|2|27|28837.62|0.07|0.00|N|O|1996-07-15|1996-06-22|1996-08-12|COLLECT COD|FOB| wake around the pint| +39564|549140|11651|3|30|35673.60|0.09|0.04|N|O|1996-04-27|1996-05-28|1996-05-08|COLLECT COD|AIR|deposits. slyly regular theodolites are sly| +39564|383749|21271|4|6|10996.38|0.03|0.02|N|O|1996-04-10|1996-06-06|1996-05-07|DELIVER IN PERSON|MAIL|l accounts cajole slyly regular r| +39564|653665|41205|5|40|64745.20|0.02|0.05|N|O|1996-07-02|1996-06-25|1996-07-16|TAKE BACK RETURN|RAIL|riously. daringly even pa| +39564|141401|28908|6|24|34617.60|0.02|0.03|N|O|1996-05-09|1996-05-27|1996-05-20|DELIVER IN PERSON|TRUCK|lithely. blithely fin| +39564|523601|36112|7|49|79604.42|0.01|0.07|N|O|1996-06-06|1996-06-22|1996-06-22|NONE|TRUCK|ly unusual asymptot| +39565|151050|38560|1|37|40738.85|0.00|0.08|N|O|1996-04-20|1996-04-23|1996-05-07|NONE|TRUCK|ly express | +39565|691795|4309|2|43|76830.68|0.08|0.03|N|O|1996-05-05|1996-03-29|1996-05-07|COLLECT COD|RAIL|ding instruct| +39566|125199|25200|1|29|35501.51|0.03|0.03|R|F|1995-02-05|1995-01-30|1995-03-02|COLLECT COD|FOB|posits haggle slyly alongsid| +39567|952073|2074|1|30|33750.90|0.07|0.04|N|O|1996-10-05|1996-08-16|1996-10-22|NONE|REG AIR|ng the furiously regular sauternes. b| +39567|485040|47550|2|21|21525.42|0.07|0.05|N|O|1996-07-17|1996-08-24|1996-08-11|NONE|RAIL|ously regular foxes. blithely re| +39567|54922|17424|3|24|45046.08|0.06|0.08|N|O|1996-10-23|1996-08-28|1996-10-31|TAKE BACK RETURN|SHIP|ourts. quickly pending packages sleep | +39567|58262|33265|4|12|14643.12|0.06|0.04|N|O|1996-08-23|1996-08-25|1996-09-21|COLLECT COD|SHIP|s. silent accounts are caref| +39592|603478|15991|1|14|19340.16|0.00|0.01|R|F|1994-06-18|1994-05-28|1994-06-25|NONE|RAIL|eodolites. bli| +39592|651684|14198|2|13|21263.45|0.02|0.08|R|F|1994-05-30|1994-04-18|1994-06-05|COLLECT COD|REG AIR|al requests. bo| +39592|842094|29643|3|36|37297.80|0.08|0.02|R|F|1994-07-07|1994-06-03|1994-08-02|NONE|FOB|es at the blithely regula| +39592|67196|17197|4|48|55833.12|0.02|0.06|A|F|1994-05-15|1994-05-18|1994-06-09|TAKE BACK RETURN|SHIP|lieve fluffily. ironic, regula| +39592|361598|24106|5|2|3319.16|0.07|0.04|R|F|1994-05-16|1994-05-04|1994-06-06|COLLECT COD|SHIP|s above the furiously special| +39592|373792|48807|6|45|83960.10|0.00|0.02|A|F|1994-05-11|1994-04-24|1994-05-19|DELIVER IN PERSON|FOB|oxes after the pending, ruthless pl| +39593|788333|38334|1|29|41217.70|0.08|0.00|R|F|1995-04-17|1995-03-18|1995-04-28|NONE|FOB|es after the carefully bold accounts wa| +39593|497447|22466|2|3|4333.26|0.09|0.06|R|F|1995-02-21|1995-03-05|1995-03-16|NONE|AIR|c accounts hinder. ironic theodolit| +39593|591027|3539|3|7|7826.00|0.07|0.05|A|F|1995-05-12|1995-04-05|1995-06-11|NONE|AIR|s x-ray slyly sp| +39593|383891|46399|4|38|75045.44|0.05|0.04|A|F|1995-02-04|1995-03-16|1995-02-10|NONE|AIR|ys. even, final theodolit| +39593|48652|23653|5|34|54422.10|0.06|0.02|R|F|1995-04-01|1995-02-13|1995-04-10|COLLECT COD|MAIL|wake quickly| +39594|971171|46210|1|29|36021.77|0.07|0.07|N|O|1996-11-09|1996-11-17|1996-11-19|DELIVER IN PERSON|SHIP|accounts wake caref| +39594|457951|32970|2|28|53450.04|0.09|0.00|N|O|1996-12-08|1996-11-28|1997-01-07|NONE|TRUCK|refully reg| +39594|780895|18441|3|45|88913.70|0.02|0.05|N|O|1996-09-09|1996-11-09|1996-10-06|COLLECT COD|MAIL|o beans wake furiously along t| +39595|513442|25953|1|30|43662.60|0.05|0.08|N|O|1996-08-10|1996-08-31|1996-09-04|NONE|AIR|st blithely regular acco| +39595|410955|48480|2|39|72771.27|0.01|0.08|N|O|1996-08-21|1996-08-31|1996-08-28|NONE|SHIP|g the bold instructions. final instruction| +39596|712527|12528|1|49|75435.01|0.00|0.07|N|O|1995-09-22|1995-08-24|1995-09-30|TAKE BACK RETURN|REG AIR|jole pending, sly acc| +39596|425406|12931|2|26|34615.88|0.08|0.03|N|O|1995-11-03|1995-08-31|1995-11-22|COLLECT COD|TRUCK|fter the blithely ironic foxes| +39596|782236|44752|3|35|46137.00|0.04|0.01|N|O|1995-07-31|1995-09-18|1995-08-04|TAKE BACK RETURN|FOB|ages. fluffily regular ac| +39596|28736|41237|4|39|64924.47|0.00|0.05|N|O|1995-09-09|1995-09-16|1995-09-18|COLLECT COD|SHIP|thily even ideas. final dependencies acc| +39596|952240|14760|5|45|58149.00|0.02|0.05|N|O|1995-10-18|1995-09-17|1995-10-25|TAKE BACK RETURN|TRUCK|counts. instructions use carefully accordi| +39597|364477|1999|1|10|15414.60|0.03|0.03|R|F|1994-04-03|1994-04-24|1994-05-01|NONE|MAIL|courts nag furiously af| +39598|821447|33964|1|6|8210.40|0.05|0.00|R|F|1993-10-06|1993-08-08|1993-10-14|DELIVER IN PERSON|TRUCK|ole fluffil| +39598|50304|12806|2|34|42646.20|0.04|0.07|A|F|1993-10-13|1993-08-05|1993-10-17|NONE|FOB|ly around the ev| +39598|444189|19206|3|34|38527.44|0.09|0.00|R|F|1993-07-17|1993-08-01|1993-08-13|NONE|FOB|lly unusual packages to| +39598|481802|44312|4|50|89189.00|0.05|0.05|A|F|1993-08-17|1993-09-11|1993-08-18|NONE|REG AIR|express, thin packages are blithely! | +39598|645361|20386|5|46|60091.18|0.03|0.08|R|F|1993-07-30|1993-09-06|1993-08-19|DELIVER IN PERSON|RAIL|heodolites boost | +39599|276705|14221|1|33|55495.77|0.00|0.05|R|F|1992-02-11|1992-03-11|1992-02-15|NONE|SHIP| pending accounts. bold | +39599|571274|8808|2|20|26905.00|0.01|0.03|R|F|1992-02-17|1992-02-27|1992-03-04|NONE|RAIL| about the furiously bold | +39599|385472|10487|3|37|57626.02|0.02|0.06|A|F|1992-04-23|1992-02-14|1992-05-13|TAKE BACK RETURN|RAIL|lithely blithely fi| +39599|622102|22103|4|33|33794.31|0.09|0.05|R|F|1992-01-26|1992-04-08|1992-02-01|COLLECT COD|FOB|lithely final foxes. blithely enticing acco| +39599|663519|26033|5|49|72641.52|0.06|0.06|R|F|1992-05-09|1992-04-09|1992-05-20|TAKE BACK RETURN|AIR|ole carefully. excuse| +39599|751515|1516|6|23|36029.04|0.09|0.02|A|F|1992-01-14|1992-03-17|1992-02-03|COLLECT COD|SHIP| use according to the furiously express| +39624|483913|46423|1|44|83463.16|0.10|0.06|R|F|1992-12-24|1992-10-19|1992-12-25|NONE|AIR|ly! ironic asy| +39624|109215|46722|2|7|8569.47|0.06|0.01|A|F|1992-11-04|1992-12-14|1992-11-25|COLLECT COD|REG AIR|ly final accounts sleep excuses. slyly expr| +39624|563001|13002|3|42|44687.16|0.10|0.07|R|F|1992-10-31|1992-11-28|1992-11-30|TAKE BACK RETURN|MAIL|ructions affix ab| +39624|350147|12655|4|39|46688.07|0.05|0.07|A|F|1992-12-18|1992-10-20|1992-12-21|NONE|TRUCK|iously according| +39625|255849|30860|1|39|70388.37|0.07|0.05|N|O|1995-10-24|1995-09-10|1995-11-05|TAKE BACK RETURN|SHIP|ong the pack| +39625|42141|17142|2|13|14080.82|0.07|0.04|N|O|1995-10-08|1995-09-13|1995-11-06|COLLECT COD|TRUCK| regular accounts wake | +39625|254878|42394|3|27|49487.22|0.07|0.05|N|O|1995-08-14|1995-08-07|1995-09-01|DELIVER IN PERSON|REG AIR|ding requests can wake final instru| +39626|957172|7173|1|10|12291.30|0.01|0.06|N|O|1997-07-26|1997-09-17|1997-08-24|COLLECT COD|SHIP|le furiously against th| +39626|177608|27609|2|42|70795.20|0.05|0.05|N|O|1997-09-02|1997-09-24|1997-09-08|DELIVER IN PERSON|FOB| regular pack| +39626|51774|39278|3|44|75933.88|0.02|0.04|N|O|1997-10-20|1997-09-01|1997-11-18|DELIVER IN PERSON|AIR|ackages use slyly ironic deposits. fl| +39626|163698|13699|4|25|44042.25|0.07|0.01|N|O|1997-10-18|1997-09-26|1997-11-17|NONE|AIR|ess, final deposits gr| +39626|270275|32781|5|3|3735.78|0.06|0.07|N|O|1997-11-01|1997-09-24|1997-11-04|NONE|REG AIR|the blithely quiet grouches lose | +39626|499460|24479|6|30|43783.20|0.07|0.08|N|O|1997-07-21|1997-08-23|1997-08-10|NONE|AIR| accounts are fluffily. always ir| +39626|424171|11696|7|36|39425.40|0.05|0.03|N|O|1997-09-09|1997-08-13|1997-09-15|TAKE BACK RETURN|REG AIR|ress instru| +39627|32825|32826|1|1|1757.82|0.00|0.05|N|F|1995-05-30|1995-06-09|1995-06-20|NONE|FOB|s wake carefully quickly unusual | +39627|677130|27131|2|31|34320.10|0.02|0.01|A|F|1995-04-10|1995-06-09|1995-04-11|DELIVER IN PERSON|MAIL|al deposits| +39627|521141|21142|3|34|39512.08|0.06|0.02|R|F|1995-04-29|1995-04-30|1995-04-30|DELIVER IN PERSON|REG AIR|ly silent accounts haggle slyly st| +39627|805054|5055|4|50|47950.50|0.10|0.02|A|F|1995-05-20|1995-05-15|1995-06-04|TAKE BACK RETURN|FOB|y unusual foxes boost? silent deposits| +39627|526973|39484|5|34|67998.30|0.10|0.06|R|F|1995-04-20|1995-06-20|1995-05-10|DELIVER IN PERSON|REG AIR|tions haggle among the ironic, furious tith| +39627|828419|3452|6|37|49852.69|0.09|0.08|A|F|1995-05-17|1995-05-23|1995-05-29|TAKE BACK RETURN|MAIL|t slyly dogged instructions.| +39627|228246|15759|7|5|5871.15|0.08|0.07|N|O|1995-07-01|1995-06-16|1995-07-31|DELIVER IN PERSON|MAIL|ng to the regular, regula| +39628|121213|8720|1|44|54305.24|0.03|0.01|A|F|1993-12-11|1994-02-04|1993-12-15|DELIVER IN PERSON|SHIP|heodolites boost fur| +39628|219955|7468|2|31|58123.14|0.00|0.07|A|F|1994-02-08|1994-02-10|1994-02-22|COLLECT COD|REG AIR|ctions are slyly pend| +39629|995050|45051|1|43|49235.43|0.00|0.01|N|O|1995-12-25|1996-01-14|1995-12-26|COLLECT COD|TRUCK| fluffily regular pinto beans.| +39629|794629|19660|2|33|56878.47|0.05|0.08|N|O|1995-11-17|1996-01-09|1995-11-30|DELIVER IN PERSON|RAIL|ly regular dependencies. sl| +39629|317606|30113|3|18|29224.62|0.03|0.00|N|O|1995-11-13|1995-12-19|1995-11-17|DELIVER IN PERSON|AIR|inly reques| +39630|208553|33562|1|37|54076.98|0.02|0.05|N|O|1996-03-07|1996-03-10|1996-03-24|COLLECT COD|SHIP|s. accounts wake fluffily around t| +39630|144981|19986|2|48|97247.04|0.09|0.06|N|O|1996-02-17|1996-03-21|1996-02-24|COLLECT COD|FOB|ily stealthy ideas| +39630|680839|18379|3|50|90990.00|0.02|0.05|N|O|1996-03-16|1996-03-26|1996-04-13|COLLECT COD|AIR|the special, final requests. unusual, ir| +39630|860395|10396|4|50|67767.50|0.00|0.05|N|O|1996-02-29|1996-03-23|1996-03-10|COLLECT COD|MAIL|eposits engage. even, unusual pint| +39630|644346|6859|5|38|49031.78|0.04|0.07|N|O|1996-05-08|1996-04-06|1996-05-26|TAKE BACK RETURN|TRUCK|ly. special, regul| +39630|510168|10169|6|17|20028.38|0.09|0.02|N|O|1996-03-27|1996-03-26|1996-04-24|TAKE BACK RETURN|AIR|ss deposits wake between the | +39630|385827|48335|7|31|59297.11|0.04|0.07|N|O|1996-03-13|1996-03-20|1996-03-26|DELIVER IN PERSON|MAIL|en frets al| +39631|580129|42641|1|10|12091.00|0.07|0.03|R|F|1994-03-29|1994-06-05|1994-04-08|DELIVER IN PERSON|TRUCK|y. final, e| +39631|224725|37230|2|32|52790.72|0.03|0.02|R|F|1994-06-05|1994-05-31|1994-06-23|DELIVER IN PERSON|FOB|quickly special req| +39656|766346|16347|1|48|67790.88|0.00|0.07|N|O|1998-07-19|1998-06-17|1998-07-27|DELIVER IN PERSON|SHIP|ges integrate carefully acro| +39656|970993|46032|2|40|82558.00|0.04|0.00|N|O|1998-08-28|1998-07-07|1998-09-04|TAKE BACK RETURN|SHIP| even pinto beans | +39656|473459|48478|3|7|10027.01|0.10|0.03|N|O|1998-06-10|1998-07-17|1998-07-08|COLLECT COD|TRUCK| around the deposits nag careful| +39656|423840|36349|4|5|8819.10|0.06|0.01|N|O|1998-08-02|1998-07-11|1998-08-15|NONE|SHIP|efully special deposits. | +39656|473911|36421|5|43|81050.27|0.03|0.00|N|O|1998-07-22|1998-06-25|1998-08-19|TAKE BACK RETURN|RAIL|gle blithely above the carefully iron| +39656|16968|16969|6|19|35814.24|0.01|0.08|N|O|1998-08-10|1998-07-26|1998-09-07|NONE|REG AIR|gainst the foxes. carefully ironic| +39657|789351|1867|1|29|41769.28|0.00|0.07|R|F|1994-11-09|1994-08-21|1994-11-29|DELIVER IN PERSON|REG AIR|y across the slyly ironic depos| +39657|613584|1121|2|21|31448.55|0.08|0.08|R|F|1994-09-18|1994-10-06|1994-10-12|COLLECT COD|RAIL|t the slyly ironic instruction| +39658|747073|47074|1|32|35841.28|0.08|0.04|N|O|1996-11-05|1996-12-07|1996-11-19|COLLECT COD|SHIP|s. regular, ir| +39658|53042|3043|2|2|1990.08|0.08|0.07|N|O|1996-11-10|1996-11-20|1996-12-08|NONE|MAIL|s the carefully even packa| +39659|131440|43943|1|10|14714.40|0.08|0.03|R|F|1992-05-20|1992-05-30|1992-06-04|NONE|REG AIR|ronic foxes| +39659|97950|35454|2|24|46750.80|0.08|0.00|A|F|1992-05-22|1992-05-31|1992-06-09|DELIVER IN PERSON|TRUCK|the slyly even requests. pending pa| +39659|228971|16484|3|31|58898.76|0.01|0.00|A|F|1992-06-04|1992-05-13|1992-06-24|NONE|TRUCK| express theodolite| +39659|303106|28119|4|9|9981.81|0.09|0.04|A|F|1992-06-03|1992-05-25|1992-06-21|NONE|RAIL|fully. special, ironic ideas nag a| +39659|286418|36419|5|20|28088.00|0.04|0.00|R|F|1992-04-13|1992-05-23|1992-05-09|COLLECT COD|SHIP|r the furiously ironic tith| +39659|815092|27609|6|19|19133.95|0.01|0.00|A|F|1992-07-12|1992-05-18|1992-07-18|DELIVER IN PERSON|RAIL|ly express excus| +39659|247364|9869|7|41|53765.35|0.05|0.00|R|F|1992-06-18|1992-05-11|1992-07-09|TAKE BACK RETURN|TRUCK|ep furiously bold, unusual dep| +39660|441404|16421|1|8|10763.04|0.08|0.08|N|O|1996-11-13|1996-12-28|1996-12-10|TAKE BACK RETURN|AIR|slyly after t| +39660|672202|34716|2|31|36399.27|0.08|0.05|N|O|1996-12-26|1996-12-23|1997-01-01|TAKE BACK RETURN|RAIL|g fluffily bold packages. regular p| +39661|18403|30904|1|21|27749.40|0.03|0.01|R|F|1995-04-21|1995-05-08|1995-05-12|COLLECT COD|REG AIR|! final asymptotes ar| +39661|283001|20517|2|45|44279.55|0.03|0.08|R|F|1995-03-03|1995-04-22|1995-03-15|COLLECT COD|REG AIR|ependencies may use quick| +39661|387950|37951|3|3|6113.82|0.01|0.08|A|F|1995-04-29|1995-05-11|1995-04-30|DELIVER IN PERSON|RAIL|ly after the acco| +39661|259271|21777|4|41|50440.66|0.03|0.08|A|F|1995-03-20|1995-05-24|1995-04-01|DELIVER IN PERSON|RAIL|eposits cajole about the furiously even| +39662|389643|39644|1|48|83166.24|0.01|0.08|N|O|1997-10-16|1997-09-12|1997-10-31|NONE|SHIP|before the even asymptotes? carefully re| +39662|722868|47897|2|17|32144.11|0.08|0.03|N|O|1997-07-14|1997-09-16|1997-07-16|DELIVER IN PERSON|MAIL|efully slyly e| +39662|237304|24817|3|34|42203.86|0.08|0.06|N|O|1997-07-25|1997-09-28|1997-07-26|TAKE BACK RETURN|TRUCK|ages are after the unusual instruc| +39662|355600|18108|4|9|14900.31|0.01|0.00|N|O|1997-10-25|1997-09-06|1997-11-20|COLLECT COD|SHIP|e furiously. sp| +39662|559888|22400|5|15|29217.90|0.00|0.07|N|O|1997-07-31|1997-09-12|1997-08-09|COLLECT COD|MAIL|ts. even, even deposits c| +39662|31112|6113|6|38|39638.18|0.01|0.01|N|O|1997-11-05|1997-09-02|1997-11-23|DELIVER IN PERSON|MAIL|d requests. blithely unusual packages| +39663|49300|11801|1|44|54969.20|0.03|0.04|N|O|1996-10-30|1996-09-19|1996-11-17|COLLECT COD|FOB|cial theodolites sleep quietly.| +39663|582543|20077|2|27|43889.04|0.06|0.05|N|O|1996-10-14|1996-09-13|1996-10-28|COLLECT COD|TRUCK|among the slyly ironic instruction| +39663|789533|27079|3|43|69767.50|0.00|0.02|N|O|1996-10-22|1996-10-06|1996-10-24|COLLECT COD|TRUCK|refully bold pinto beans detect slyly. bol| +39663|669272|44299|4|27|33513.48|0.07|0.08|N|O|1996-09-29|1996-09-23|1996-10-22|DELIVER IN PERSON|MAIL|deposits. foxes use caref| +39663|453867|3868|5|21|38237.64|0.09|0.05|N|O|1996-10-08|1996-10-05|1996-11-02|COLLECT COD|FOB|nts. slyly regular requ| +39688|545156|32687|1|28|33631.64|0.04|0.07|R|F|1995-03-12|1995-04-11|1995-03-27|COLLECT COD|MAIL|ly fluffily eve| +39688|434380|46889|2|9|11829.24|0.07|0.03|A|F|1995-03-24|1995-04-25|1995-03-30|NONE|RAIL|auternes. fu| +39688|611805|36830|3|10|17167.70|0.03|0.00|N|F|1995-06-14|1995-04-26|1995-06-20|TAKE BACK RETURN|TRUCK|yly bold dolphins boost qu| +39688|598773|48774|4|34|63639.50|0.09|0.03|R|F|1995-03-28|1995-05-13|1995-04-20|NONE|AIR|ss ideas accord| +39688|564634|2168|5|25|42465.25|0.05|0.04|R|F|1995-04-20|1995-04-18|1995-05-16|COLLECT COD|REG AIR|eans along the fluffily ironic ex| +39688|790736|3252|6|45|82201.50|0.02|0.06|A|F|1995-04-02|1995-04-25|1995-04-16|DELIVER IN PERSON|RAIL|ar asymptot| +39688|898535|23570|7|19|29136.31|0.00|0.01|A|F|1995-05-07|1995-05-11|1995-05-15|DELIVER IN PERSON|REG AIR|luffily. slyly expre| +39689|672535|47562|1|36|54270.00|0.01|0.00|N|O|1995-07-14|1995-06-30|1995-07-28|NONE|TRUCK|ve to wake carefully warhorses| +39690|704695|42238|1|32|54389.12|0.09|0.03|A|F|1994-07-19|1994-06-15|1994-08-13|NONE|RAIL|t. deposits thrash furiously about the foxe| +39690|796370|21401|2|35|51321.90|0.06|0.02|R|F|1994-08-31|1994-07-10|1994-09-05|TAKE BACK RETURN|FOB|elets. carefully iro| +39690|577842|15376|3|31|59514.42|0.01|0.07|R|F|1994-05-25|1994-06-10|1994-06-06|TAKE BACK RETURN|SHIP|idle requests. slyly spe| +39690|776152|26153|4|7|8596.84|0.04|0.08|R|F|1994-09-04|1994-06-15|1994-09-13|COLLECT COD|RAIL|ide of the furiously even gifts-| +39690|783115|45631|5|13|15575.04|0.03|0.03|A|F|1994-07-10|1994-06-16|1994-07-30|NONE|TRUCK|ments are carefully. carefully | +39690|798104|23135|6|24|28849.68|0.00|0.06|A|F|1994-06-18|1994-07-09|1994-06-20|TAKE BACK RETURN|SHIP| pinto beans. unu| +39690|726841|26842|7|14|26149.34|0.09|0.07|R|F|1994-05-15|1994-07-30|1994-05-18|NONE|RAIL|ar instructions impress among the| +39691|6580|19081|1|15|22298.70|0.05|0.01|N|O|1996-06-22|1996-07-22|1996-07-08|COLLECT COD|SHIP|. unusual excuses| +39691|581417|43929|2|3|4495.17|0.07|0.03|N|O|1996-06-06|1996-08-07|1996-06-25|DELIVER IN PERSON|FOB|ven depths. car| +39691|868448|6000|3|33|46741.20|0.08|0.04|N|O|1996-06-04|1996-07-11|1996-06-07|TAKE BACK RETURN|TRUCK|pinto beans breach idly f| +39691|991893|4413|4|22|43666.70|0.04|0.04|N|O|1996-08-18|1996-07-19|1996-09-17|NONE|TRUCK| regular, careful cour| +39691|737692|207|5|22|38052.52|0.06|0.00|N|O|1996-08-14|1996-08-02|1996-08-15|DELIVER IN PERSON|RAIL|ing to the fluffily bold idea| +39691|372723|35231|6|34|61054.14|0.09|0.05|N|O|1996-07-23|1996-07-11|1996-08-17|NONE|FOB| after the bold, unusual deposits. blithel| +39692|283575|33576|1|10|15585.60|0.08|0.06|A|F|1995-03-25|1995-03-11|1995-04-13|TAKE BACK RETURN|AIR|ng pinto beans haggle ironic pin| +39692|40907|28408|2|7|12935.30|0.10|0.03|R|F|1995-02-27|1995-02-22|1995-03-17|DELIVER IN PERSON|AIR| asymptotes use slyly. fur| +39692|520251|20252|3|13|16525.99|0.08|0.08|A|F|1995-04-24|1995-03-12|1995-04-28|TAKE BACK RETURN|MAIL|ironic theodolites haggle. c| +39692|852947|27982|4|20|37998.00|0.04|0.05|A|F|1995-01-08|1995-03-24|1995-02-02|NONE|AIR|egular accounts about the carefu| +39692|476557|26558|5|14|21469.42|0.06|0.05|R|F|1995-01-10|1995-02-14|1995-01-17|NONE|AIR| ideas cajole. carefully ironic instructio| +39692|483682|33683|6|42|69957.72|0.07|0.02|R|F|1995-03-07|1995-03-24|1995-03-24|NONE|RAIL|uriously even packages. furio| +39693|35016|35017|1|50|47550.50|0.02|0.03|N|O|1995-08-11|1995-06-04|1995-08-26|NONE|SHIP|uickly special | +39693|511577|24088|2|1|1588.55|0.00|0.07|A|F|1995-05-11|1995-06-24|1995-05-23|NONE|TRUCK|p blithely. slyly express packa| +39693|70298|7802|3|22|27902.38|0.10|0.01|R|F|1995-04-18|1995-06-24|1995-04-26|COLLECT COD|MAIL|wake never iron| +39693|496120|8630|4|7|7812.70|0.02|0.07|N|F|1995-06-04|1995-06-15|1995-06-20|NONE|TRUCK|ent packages. even, ironic deposit| +39693|274965|24966|5|1|1939.95|0.04|0.08|N|F|1995-06-04|1995-05-31|1995-06-29|TAKE BACK RETURN|MAIL|. furiously even req| +39693|324006|49019|6|34|35019.66|0.02|0.01|N|F|1995-06-15|1995-05-23|1995-07-11|NONE|AIR|dolites. slyly ironic| +39693|566577|29089|7|39|64098.45|0.10|0.01|N|F|1995-06-03|1995-06-18|1995-06-19|TAKE BACK RETURN|MAIL| regular requests cajole even, i| +39694|443374|5883|1|43|56646.05|0.04|0.01|N|O|1995-09-10|1995-09-09|1995-10-03|DELIVER IN PERSON|AIR|ly across the even, final pack| +39694|782119|44635|2|8|9608.64|0.01|0.03|N|O|1995-07-22|1995-08-15|1995-07-31|DELIVER IN PERSON|SHIP|ronic asymptotes cajole blithely final pla| +39694|61030|23532|3|3|2973.09|0.02|0.05|N|O|1995-08-15|1995-09-16|1995-08-20|TAKE BACK RETURN|REG AIR|sits. furiously regular instr| +39694|721545|9088|4|33|51694.83|0.02|0.03|N|O|1995-08-14|1995-09-28|1995-08-17|COLLECT COD|AIR|posits detect across | +39694|405|406|5|25|32635.00|0.10|0.06|N|O|1995-11-02|1995-08-25|1995-11-28|COLLECT COD|SHIP|riously final deposits haggle blithely ab| +39695|42930|42931|1|2|3745.86|0.10|0.04|N|O|1997-12-09|1997-12-13|1997-12-10|DELIVER IN PERSON|FOB|uickly slyly ironic instruc| +39695|520731|20732|2|38|66564.98|0.07|0.05|N|O|1997-10-23|1997-12-03|1997-11-11|COLLECT COD|REG AIR|yly final depths nag around the bold,| +39695|911329|36366|3|42|56291.76|0.04|0.04|N|O|1998-01-21|1997-12-16|1998-02-20|NONE|SHIP|ccounts use furiously. slyly final ide| +39695|702430|2431|4|43|61593.20|0.05|0.01|N|O|1997-11-11|1997-11-16|1997-12-01|COLLECT COD|RAIL| silent deposits. bold, sil| +39695|725654|683|5|24|40310.88|0.02|0.08|N|O|1997-11-28|1997-12-05|1997-12-15|DELIVER IN PERSON|REG AIR|ackages are slyly. fluffily pend| +39695|56593|6594|6|34|52686.06|0.10|0.06|N|O|1997-12-30|1997-11-12|1998-01-16|NONE|RAIL|ording to the regula| +39695|157182|44692|7|6|7435.08|0.03|0.00|N|O|1997-12-11|1997-12-24|1997-12-19|TAKE BACK RETURN|MAIL|requests along the furiously bold accounts | +39720|742984|42985|1|20|40539.00|0.02|0.01|N|O|1998-03-07|1998-02-26|1998-03-15|DELIVER IN PERSON|REG AIR|slyly sauternes. ca| +39720|324161|24162|2|16|18962.40|0.07|0.02|N|O|1997-12-14|1998-02-04|1998-01-08|COLLECT COD|SHIP|cross the carefully regul| +39720|157520|7521|3|3|4732.56|0.00|0.01|N|O|1998-03-10|1998-01-21|1998-03-18|COLLECT COD|SHIP|ng sheaves sleep accordi| +39720|422752|47769|4|20|33494.60|0.04|0.03|N|O|1998-02-24|1998-02-06|1998-03-20|NONE|AIR|e across the final | +39720|190847|15854|5|32|62010.88|0.09|0.02|N|O|1998-01-10|1998-03-04|1998-01-26|NONE|RAIL|engage furiously. even, iro| +39720|563154|38177|6|11|13388.43|0.00|0.07|N|O|1998-03-10|1998-01-11|1998-03-14|COLLECT COD|AIR|lly across | +39721|95917|45918|1|48|91819.68|0.06|0.00|R|F|1994-10-15|1994-09-21|1994-10-27|TAKE BACK RETURN|AIR|ously ironic| +39721|61774|24276|2|39|67695.03|0.01|0.01|R|F|1994-08-23|1994-09-10|1994-09-10|NONE|SHIP| accounts along the slyly ironic accounts | +39721|226761|1770|3|40|67510.00|0.06|0.04|R|F|1994-08-27|1994-09-13|1994-09-13|TAKE BACK RETURN|FOB|ngside of the furiously pending accoun| +39721|155972|30979|4|44|89230.68|0.10|0.03|R|F|1994-08-03|1994-09-25|1994-08-12|DELIVER IN PERSON|AIR| ironic, bold multipliers wit| +39721|408011|45536|5|18|16541.82|0.07|0.01|R|F|1994-07-25|1994-10-15|1994-08-11|DELIVER IN PERSON|SHIP|s. ironic theodolites cajole. re| +39722|296380|46381|1|1|1376.37|0.03|0.06|A|F|1992-01-24|1992-04-14|1992-01-29|TAKE BACK RETURN|SHIP|usly ironic | +39722|257500|32511|2|34|49554.66|0.04|0.06|R|F|1992-04-20|1992-02-27|1992-04-22|TAKE BACK RETURN|SHIP|pending accounts. regular dependencies nag | +39722|791848|41849|3|25|48495.25|0.02|0.03|R|F|1992-02-14|1992-04-15|1992-02-26|COLLECT COD|REG AIR|. final, final request| +39722|581088|31089|4|48|56114.88|0.02|0.06|R|F|1992-04-29|1992-04-06|1992-05-03|DELIVER IN PERSON|AIR| asymptotes play carefull| +39722|341207|3714|5|2|2496.38|0.05|0.03|R|F|1992-02-19|1992-04-10|1992-03-10|NONE|AIR|y silent requests wake blithely | +39722|665159|15160|6|32|35971.84|0.02|0.00|A|F|1992-01-26|1992-04-16|1992-02-06|COLLECT COD|RAIL|ly pending theodolites hang among the care| +39722|324182|49195|7|21|25329.57|0.02|0.05|R|F|1992-05-11|1992-03-05|1992-05-30|TAKE BACK RETURN|MAIL|tegrate foxes. blithely ruthless| +39723|514105|26616|1|24|26857.92|0.02|0.03|R|F|1992-04-29|1992-06-06|1992-05-23|COLLECT COD|MAIL|he even, express requests. e| +39723|547456|47457|2|31|46606.33|0.07|0.06|A|F|1992-06-14|1992-05-29|1992-07-01|COLLECT COD|SHIP|anent deposits integrate fluffily sly t| +39723|80537|43039|3|49|74358.97|0.08|0.06|R|F|1992-05-22|1992-05-28|1992-05-29|DELIVER IN PERSON|RAIL|ven deposits. blit| +39724|660990|10991|1|46|89744.16|0.07|0.00|N|O|1997-07-06|1997-05-29|1997-07-07|TAKE BACK RETURN|MAIL|ges are furiously theodolites. ironic, spec| +39724|258814|46330|2|27|47865.60|0.07|0.02|N|O|1997-05-23|1997-05-19|1997-06-09|DELIVER IN PERSON|MAIL|l ideas detect furiously against the a| +39724|885735|35736|3|34|58503.46|0.01|0.01|N|O|1997-06-12|1997-06-26|1997-06-17|NONE|MAIL|al theodolites; busily regular a| +39724|546243|8754|4|1|1289.22|0.04|0.05|N|O|1997-06-09|1997-06-24|1997-07-03|COLLECT COD|AIR|ckages. slyly express accounts integ| +39724|699396|49397|5|42|58605.12|0.00|0.04|N|O|1997-07-19|1997-06-16|1997-07-26|DELIVER IN PERSON|MAIL|eat carefully according to th| +39725|610864|10865|1|35|62119.05|0.02|0.06|A|F|1993-11-17|1993-09-26|1993-12-01|COLLECT COD|RAIL| blithely express platelets boost for the f| +39726|818858|31375|1|44|78179.64|0.01|0.01|A|F|1994-01-13|1994-03-04|1994-01-16|COLLECT COD|RAIL|usly ironic excuses u| +39726|534266|21797|2|31|40307.44|0.02|0.05|A|F|1994-01-07|1994-02-14|1994-01-09|NONE|MAIL| packages boost ca| +39726|402236|39761|3|50|56910.50|0.05|0.02|R|F|1994-01-29|1994-03-09|1994-02-15|TAKE BACK RETURN|SHIP| quickly ironic packages boost slyly be| +39726|370229|45244|4|49|63661.29|0.05|0.01|R|F|1994-03-21|1994-01-23|1994-04-14|DELIVER IN PERSON|SHIP|uffily express ideas cajole carefu| +39726|437542|12559|5|45|66578.40|0.02|0.07|R|F|1994-03-05|1994-02-14|1994-03-17|NONE|REG AIR|tions cajole fluffily! slyly u| +39727|648432|10945|1|25|34510.00|0.02|0.02|N|O|1997-02-15|1997-02-04|1997-03-02|TAKE BACK RETURN|FOB|final requests poach after | +39727|192107|17114|2|44|52760.40|0.00|0.03|N|O|1996-11-29|1997-01-29|1996-12-13|COLLECT COD|FOB|ains. final, unusual courts must in| +39727|737075|12104|3|24|26688.96|0.00|0.07|N|O|1997-03-08|1997-02-03|1997-04-02|DELIVER IN PERSON|FOB|ithely express accounts. furiously bold | +39727|6564|44065|4|14|20587.84|0.02|0.02|N|O|1997-02-24|1996-12-16|1997-03-04|NONE|RAIL|ress packages accor| +39727|315297|27804|5|18|23621.04|0.09|0.07|N|O|1996-12-27|1997-01-27|1997-01-03|DELIVER IN PERSON|FOB| the slyly unusual ideas. quick| +39727|189037|26547|6|31|34906.93|0.00|0.05|N|O|1997-01-21|1997-01-28|1997-02-04|TAKE BACK RETURN|SHIP|ickly ironic dependencies | +39727|144122|44123|7|9|10495.08|0.06|0.07|N|O|1996-12-12|1997-02-04|1997-01-09|NONE|MAIL|ounts. carefully even r| +39752|257256|19762|1|45|54595.80|0.01|0.04|N|O|1997-10-12|1997-11-28|1997-10-21|DELIVER IN PERSON|FOB|ely even re| +39752|688350|864|2|10|13383.20|0.04|0.02|N|O|1997-10-26|1997-11-27|1997-11-18|TAKE BACK RETURN|AIR| regular pinto beans need to are | +39752|82622|45124|3|42|67394.04|0.06|0.06|N|O|1997-10-10|1997-12-13|1997-11-01|TAKE BACK RETURN|FOB|ing, regular requests haggle across the e| +39752|625490|25491|4|12|16985.52|0.01|0.06|N|O|1997-10-11|1997-12-18|1997-11-03|COLLECT COD|FOB|unts. even pinto bean| +39752|603940|16453|5|45|82975.95|0.06|0.06|N|O|1997-12-09|1997-12-07|1997-12-22|DELIVER IN PERSON|AIR|lyly along the silent accounts. fluffi| +39752|404564|42089|6|29|42587.66|0.10|0.01|N|O|1997-12-05|1997-11-13|1997-12-23|NONE|FOB| silent platelets affix fu| +39752|490407|15426|7|20|27947.60|0.09|0.02|N|O|1997-11-10|1997-12-22|1997-11-13|COLLECT COD|REG AIR|lithely even sentiments among t| +39753|255416|42932|1|44|60341.60|0.03|0.02|N|O|1996-01-20|1995-12-27|1996-01-30|NONE|TRUCK|ely even packages. blithely express re| +39753|768783|18784|2|40|74070.00|0.04|0.06|N|O|1996-02-20|1996-01-28|1996-02-22|NONE|AIR|ajole furiously| +39753|926845|26846|3|16|29948.80|0.02|0.05|N|O|1996-01-13|1996-01-09|1996-01-28|TAKE BACK RETURN|TRUCK|thely. furiously ironic packages acro| +39753|479542|42052|4|45|68468.40|0.00|0.00|N|O|1996-02-04|1995-12-19|1996-02-25|TAKE BACK RETURN|TRUCK| regular foxes. quickly ruthles| +39754|513539|13540|1|24|37260.24|0.10|0.00|R|F|1992-04-12|1992-02-21|1992-04-30|COLLECT COD|RAIL|ong the special instr| +39754|41634|4135|2|46|72478.98|0.00|0.00|A|F|1992-04-03|1992-03-12|1992-04-07|COLLECT COD|MAIL|ymptotes. | +39754|729974|42489|3|12|24047.28|0.06|0.07|A|F|1992-03-14|1992-03-05|1992-03-29|NONE|FOB|quests. dependencies are afte| +39755|787627|12658|1|46|78871.14|0.09|0.04|N|O|1998-08-15|1998-08-04|1998-09-08|NONE|REG AIR|ely regular theodolites must integr| +39755|641218|3731|2|28|32457.04|0.01|0.04|N|O|1998-07-23|1998-07-20|1998-08-11|TAKE BACK RETURN|FOB|xcuses cajole furiously s| +39756|705710|18225|1|50|85784.00|0.08|0.01|N|O|1997-01-12|1997-01-01|1997-01-27|COLLECT COD|FOB|haggle. quickly | +39756|867450|5002|2|6|8504.46|0.01|0.04|N|O|1996-11-18|1996-11-20|1996-12-04|NONE|AIR|f the ironic account| +39757|946627|21664|1|19|31798.02|0.02|0.02|N|O|1997-10-06|1997-11-20|1997-10-11|TAKE BACK RETURN|REG AIR|uffily even | +39757|952333|14853|2|18|24935.22|0.04|0.01|N|O|1997-11-02|1997-12-08|1997-11-14|DELIVER IN PERSON|SHIP|lyly regula| +39757|850565|566|3|28|42434.56|0.07|0.00|N|O|1997-11-11|1997-12-01|1997-11-13|COLLECT COD|SHIP|thely final pinto beans w| +39757|438534|26059|4|22|32395.22|0.06|0.08|N|O|1997-09-25|1997-10-28|1997-10-16|NONE|RAIL|, special packages. blithel| +39757|440166|27691|5|24|26547.36|0.06|0.06|N|O|1997-12-07|1997-11-24|1997-12-22|COLLECT COD|TRUCK|carefully ironic acc| +39757|868304|18305|6|38|48345.88|0.10|0.06|N|O|1998-01-13|1997-11-01|1998-01-27|COLLECT COD|TRUCK|t the accounts. packa| +39758|869933|19934|1|12|22834.68|0.07|0.06|N|O|1997-02-12|1997-01-05|1997-02-13|DELIVER IN PERSON|TRUCK| wake bold foxes: express| +39758|949269|24306|2|4|5272.88|0.09|0.01|N|O|1997-01-24|1997-02-03|1997-01-30|DELIVER IN PERSON|REG AIR|ns boost slyly sp| +39758|354159|16667|3|47|57017.58|0.05|0.06|N|O|1997-01-20|1996-12-21|1997-02-05|NONE|SHIP|t the carefully ironic packages. re| +39759|297139|9645|1|7|7952.84|0.06|0.05|N|O|1998-01-12|1998-03-16|1998-01-16|TAKE BACK RETURN|RAIL| deposits detect. even dugout| +39759|7868|32869|2|13|23086.18|0.08|0.04|N|O|1998-04-21|1998-04-11|1998-04-28|TAKE BACK RETURN|SHIP|y final multiplie| +39759|237090|37091|3|46|47245.68|0.08|0.06|N|O|1998-03-04|1998-03-03|1998-03-30|TAKE BACK RETURN|MAIL|lites wake final, e| +39759|769769|32285|4|50|91936.50|0.03|0.01|N|O|1998-03-08|1998-03-05|1998-03-31|COLLECT COD|SHIP| according to the fluffily| +39759|496881|21900|5|2|3755.72|0.07|0.01|N|O|1998-04-21|1998-03-31|1998-05-18|COLLECT COD|FOB|osits. quickly final packages na| +39759|73826|48829|6|47|84591.54|0.01|0.05|N|O|1998-03-14|1998-03-24|1998-03-18|COLLECT COD|FOB|ake carefully after the slyly ironic f| +39759|777384|14930|7|11|16074.85|0.01|0.04|N|O|1998-01-30|1998-03-07|1998-02-07|NONE|RAIL|slyly. carefully bold packages integr| +39784|485834|48344|1|37|67332.97|0.02|0.08|N|O|1998-04-18|1998-06-19|1998-05-14|NONE|REG AIR|e quickly even | +39784|395265|45266|2|5|6801.25|0.08|0.02|N|O|1998-05-26|1998-06-15|1998-06-10|DELIVER IN PERSON|FOB|among the furiously ironic instructio| +39784|216588|29093|3|18|27082.26|0.06|0.08|N|O|1998-04-15|1998-07-05|1998-05-02|DELIVER IN PERSON|TRUCK|efully ironic requests. | +39784|185351|47855|4|19|27290.65|0.09|0.01|N|O|1998-05-11|1998-05-12|1998-05-29|COLLECT COD|FOB|posits sleep quickly regular instructions. | +39785|987717|237|1|6|10828.02|0.07|0.04|R|F|1992-11-03|1992-10-19|1992-11-12|DELIVER IN PERSON|TRUCK|sly alongside of the caref| +39786|973582|48621|1|17|28144.18|0.08|0.00|A|F|1992-08-19|1992-08-21|1992-09-10|TAKE BACK RETURN|RAIL|quests accord| +39787|165882|3392|1|40|77915.20|0.10|0.00|N|O|1996-04-15|1996-03-27|1996-05-06|TAKE BACK RETURN|REG AIR|usly. special, final instructions w| +39787|966477|41516|2|25|38585.75|0.03|0.04|N|O|1996-05-19|1996-03-21|1996-06-07|COLLECT COD|SHIP|e of the furiou| +39787|565128|2662|3|23|27441.30|0.00|0.00|N|O|1996-06-10|1996-04-07|1996-06-17|DELIVER IN PERSON|REG AIR|ully regular excuses. regular foxes boost. | +39787|102826|2827|4|5|9144.10|0.01|0.00|N|O|1996-03-13|1996-04-07|1996-03-21|TAKE BACK RETURN|RAIL|g to the slyly regular packages are aga| +39787|184886|9893|5|6|11825.28|0.04|0.00|N|O|1996-05-14|1996-03-26|1996-06-12|TAKE BACK RETURN|REG AIR|lyly regular ideas.| +39788|131114|31115|1|7|8015.77|0.04|0.06|N|O|1998-06-20|1998-05-28|1998-06-27|TAKE BACK RETURN|RAIL|ual dependencies-- instructions a| +39788|622778|22779|2|16|27211.84|0.10|0.04|N|O|1998-08-18|1998-07-14|1998-09-14|COLLECT COD|SHIP|nd the bravely regular asymp| +39788|23142|23143|3|5|5325.70|0.08|0.06|N|O|1998-07-16|1998-07-16|1998-07-29|DELIVER IN PERSON|AIR|ns. final theo| +39788|931804|44323|4|14|25700.64|0.03|0.01|N|O|1998-07-11|1998-07-04|1998-07-22|COLLECT COD|TRUCK|ly regular packages above the careful| +39788|827127|27128|5|3|3162.24|0.01|0.01|N|O|1998-08-21|1998-05-31|1998-08-28|DELIVER IN PERSON|TRUCK|quests affix. r| +39788|511143|48674|6|45|51935.40|0.10|0.04|N|O|1998-08-13|1998-07-16|1998-09-11|TAKE BACK RETURN|AIR| the fluffily even requests-- express, i| +39789|968793|31313|1|29|53990.75|0.05|0.05|N|O|1996-07-26|1996-06-18|1996-08-24|NONE|RAIL|ly at the blithely unusual tithes. | +39789|493575|18594|2|33|51762.15|0.03|0.05|N|O|1996-08-12|1996-08-15|1996-09-07|NONE|RAIL|ns. blithely ironic package| +39789|507966|20477|3|2|3947.88|0.00|0.01|N|O|1996-05-23|1996-07-31|1996-06-06|TAKE BACK RETURN|SHIP|r pinto beans cajole| +39789|369143|31651|4|14|16969.82|0.08|0.04|N|O|1996-06-08|1996-08-05|1996-07-05|DELIVER IN PERSON|FOB|the ironic theodolites are slyly pending| +39789|173575|11085|5|21|34619.97|0.07|0.02|N|O|1996-09-07|1996-07-07|1996-09-13|NONE|AIR|s. regular accounts among the fluffi| +39789|263732|1248|6|41|69524.52|0.01|0.08|N|O|1996-08-23|1996-06-20|1996-09-16|NONE|RAIL|cuses. carefully bold epitaphs w| +39790|61320|36323|1|36|46127.52|0.07|0.02|R|F|1994-05-21|1994-06-22|1994-06-07|TAKE BACK RETURN|SHIP|about the quickly pending r| +39790|592356|4868|2|24|34759.92|0.10|0.08|A|F|1994-05-14|1994-06-08|1994-06-13|TAKE BACK RETURN|REG AIR| pending, | +39790|726696|1725|3|25|43066.50|0.07|0.03|A|F|1994-06-24|1994-06-13|1994-07-18|COLLECT COD|MAIL|to beans. careful| +39790|573158|48181|4|16|19698.08|0.09|0.07|A|F|1994-06-14|1994-07-15|1994-07-04|COLLECT COD|AIR|oxes sleep furiously. blit| +39790|63101|38104|5|1|1064.10|0.02|0.00|R|F|1994-05-28|1994-07-05|1994-06-20|COLLECT COD|TRUCK|ously after the unusual| +39791|551632|14144|1|8|13468.88|0.04|0.06|R|F|1994-01-01|1993-11-07|1994-01-16|DELIVER IN PERSON|SHIP| alongside of the regu| +39791|268755|18756|2|10|17237.40|0.08|0.07|A|F|1993-10-23|1993-11-03|1993-10-29|TAKE BACK RETURN|MAIL| daring reque| +39791|957494|45052|3|30|46543.50|0.02|0.05|A|F|1993-09-28|1993-10-26|1993-10-18|TAKE BACK RETURN|REG AIR|kages. bold packages by the slyl| +39791|592618|5130|4|15|25658.85|0.02|0.07|R|F|1993-11-06|1993-10-18|1993-11-16|COLLECT COD|FOB| carefully according to the final, ex| +39816|421655|34164|1|30|47298.90|0.02|0.06|A|F|1994-03-04|1994-04-22|1994-03-15|TAKE BACK RETURN|SHIP|osits lose. final se| +39817|380338|42846|1|43|60987.76|0.02|0.04|N|O|1997-06-19|1997-07-09|1997-07-06|COLLECT COD|AIR|ss, regular packages are around the final,| +39817|334464|21983|2|21|31467.45|0.00|0.01|N|O|1997-06-24|1997-07-27|1997-07-10|TAKE BACK RETURN|REG AIR| wake quickly acco| +39817|322482|34989|3|34|51151.98|0.07|0.06|N|O|1997-07-13|1997-08-03|1997-07-31|COLLECT COD|RAIL|ickly against the foxes| +39817|951011|13531|4|5|5309.85|0.03|0.05|N|O|1997-09-07|1997-07-07|1997-09-24|DELIVER IN PERSON|REG AIR|r packages engage about the furiously p| +39817|630462|17999|5|1|1392.43|0.01|0.05|N|O|1997-07-18|1997-07-04|1997-08-03|NONE|RAIL|ilent foxes cajole furiousl| +39817|163470|13471|6|28|42937.16|0.05|0.01|N|O|1997-06-12|1997-06-20|1997-06-21|DELIVER IN PERSON|RAIL|he final courts. blithely unusual ideas aft| +39817|434947|47456|7|30|56457.60|0.08|0.05|N|O|1997-06-27|1997-08-09|1997-06-30|TAKE BACK RETURN|FOB|le about the blithely regular depen| +39818|143305|5808|1|30|40449.00|0.03|0.06|R|F|1993-07-29|1993-06-05|1993-08-22|COLLECT COD|REG AIR|ate quickly s| +39818|524819|24820|2|42|77439.18|0.00|0.00|R|F|1993-05-05|1993-05-26|1993-05-20|COLLECT COD|FOB|blithely bold asymptotes use | +39818|618375|5912|3|37|47853.58|0.03|0.07|A|F|1993-04-28|1993-07-02|1993-05-10|DELIVER IN PERSON|MAIL|blithely! slyly pending e| +39818|26902|26903|4|50|91445.00|0.06|0.01|R|F|1993-06-10|1993-05-27|1993-06-25|TAKE BACK RETURN|MAIL|gular accounts. slyly final a| +39818|133962|46465|5|6|11975.76|0.07|0.08|R|F|1993-04-29|1993-07-08|1993-05-06|TAKE BACK RETURN|MAIL|d packages hagg| +39818|496788|9298|6|8|14278.08|0.09|0.01|A|F|1993-06-26|1993-06-11|1993-07-18|COLLECT COD|FOB|egrate furiously around the| +39818|514742|27253|7|30|52701.60|0.04|0.03|A|F|1993-07-16|1993-06-24|1993-07-26|DELIVER IN PERSON|REG AIR| carefully packages. fluff| +39819|266146|28652|1|22|24466.86|0.04|0.06|N|O|1998-04-17|1998-03-22|1998-05-02|NONE|AIR|uests cajole alo| +39819|105204|30209|2|2|2418.40|0.08|0.06|N|O|1998-01-05|1998-03-21|1998-01-24|TAKE BACK RETURN|RAIL|ilent requests| +39819|161135|48645|3|6|7176.78|0.07|0.02|N|O|1998-03-11|1998-02-28|1998-03-27|TAKE BACK RETURN|SHIP| ironic requests haggle fu| +39820|899313|36865|1|28|36743.56|0.07|0.07|N|O|1996-05-13|1996-04-03|1996-06-05|NONE|REG AIR|ans use fur| +39820|750609|25640|2|44|73021.08|0.07|0.08|N|O|1996-02-16|1996-02-22|1996-03-01|NONE|SHIP|uickly special instructions about the s| +39820|483501|33502|3|50|74224.00|0.10|0.08|N|O|1996-03-10|1996-03-01|1996-04-03|NONE|MAIL|c asymptotes nag blithely bold accounts. s| +39820|188145|25655|4|25|30828.50|0.09|0.08|N|O|1996-02-08|1996-04-02|1996-02-24|COLLECT COD|SHIP|lites cajole express, pending package| +39820|145426|7929|5|12|17657.04|0.00|0.03|N|O|1996-03-18|1996-04-14|1996-04-03|DELIVER IN PERSON|RAIL|fully even requests! fin| +39820|162387|37394|6|9|13044.42|0.08|0.03|N|O|1996-01-24|1996-02-21|1996-02-15|DELIVER IN PERSON|MAIL|y silent instructions against the fluff| +39820|225130|37635|7|10|10551.20|0.05|0.03|N|O|1996-02-19|1996-03-31|1996-03-15|DELIVER IN PERSON|MAIL|refully even acc| +39821|751650|1651|1|8|13612.96|0.00|0.08|A|F|1994-05-06|1994-04-16|1994-05-28|DELIVER IN PERSON|RAIL|he furiously express foxes. carefully f| +39821|975929|38449|2|36|72175.68|0.00|0.01|R|F|1994-05-15|1994-05-30|1994-05-31|DELIVER IN PERSON|AIR|ial deposits. slyly regular gifts| +39821|431526|31527|3|3|4372.50|0.07|0.03|A|F|1994-05-28|1994-04-14|1994-05-30|NONE|MAIL| requests int| +39822|656979|44519|1|11|21295.34|0.01|0.03|N|O|1996-05-31|1996-04-27|1996-06-18|DELIVER IN PERSON|SHIP|ess requests cajole | +39822|842204|29753|2|15|17192.40|0.04|0.04|N|O|1996-03-04|1996-04-30|1996-03-28|NONE|TRUCK| requests integrate car| +39823|687275|12302|1|32|40391.68|0.00|0.08|A|F|1992-06-15|1992-04-12|1992-06-29|NONE|REG AIR|lyly bold theodolites sleep | +39823|28793|16294|2|18|30992.22|0.00|0.03|R|F|1992-06-14|1992-05-13|1992-06-20|TAKE BACK RETURN|AIR|s cajole express de| +39823|913490|26009|3|11|16537.95|0.01|0.04|R|F|1992-06-29|1992-05-24|1992-06-30|COLLECT COD|REG AIR|ly express excuses should b| +39823|24727|49728|4|7|11562.04|0.02|0.01|A|F|1992-04-13|1992-05-17|1992-04-18|DELIVER IN PERSON|FOB|ounts haggle | +39823|573493|36005|5|21|32895.87|0.06|0.06|A|F|1992-03-07|1992-05-04|1992-03-13|TAKE BACK RETURN|FOB|ly. blithely | +39823|690980|3494|6|9|17738.55|0.03|0.00|R|F|1992-04-28|1992-05-21|1992-05-09|COLLECT COD|AIR| platelets cajole quickly blithely even Tir| +39823|299190|49191|7|46|54702.28|0.06|0.07|A|F|1992-03-31|1992-04-30|1992-04-27|DELIVER IN PERSON|RAIL|ly silent dependencies use regular asymptot| +39848|483322|45832|1|3|3915.90|0.00|0.04|R|F|1993-07-09|1993-07-28|1993-07-11|NONE|AIR|r somas. blithely| +39848|192297|42298|2|36|50014.44|0.07|0.08|A|F|1993-09-02|1993-06-07|1993-09-09|DELIVER IN PERSON|SHIP|ronic theodolites use. furiously q| +39848|927040|14595|3|34|36278.00|0.07|0.06|A|F|1993-05-25|1993-06-17|1993-06-09|TAKE BACK RETURN|MAIL|e packages. even requests| +39848|756709|44255|4|32|56501.44|0.05|0.07|A|F|1993-05-23|1993-06-14|1993-05-26|DELIVER IN PERSON|SHIP| requests sleep alo| +39848|999781|49782|5|21|39495.54|0.06|0.04|A|F|1993-07-20|1993-07-07|1993-07-27|TAKE BACK RETURN|TRUCK|carefully about the packages. spe| +39848|313608|13609|6|2|3243.18|0.01|0.03|A|F|1993-06-09|1993-07-22|1993-06-11|TAKE BACK RETURN|SHIP|ily above the dep| +39848|807954|20471|7|17|31652.47|0.03|0.01|R|F|1993-07-06|1993-06-29|1993-07-13|NONE|FOB|c, regular re| +39849|269930|44941|1|7|13299.44|0.10|0.00|N|O|1997-04-18|1997-03-08|1997-05-07|DELIVER IN PERSON|TRUCK|special, pending dependencies are f| +39849|697562|10076|2|36|56143.08|0.05|0.08|N|O|1997-02-25|1997-03-13|1997-03-09|DELIVER IN PERSON|REG AIR|pite the slyly ironic requests. quickl| +39849|910300|22819|3|39|51100.14|0.04|0.02|N|O|1997-04-27|1997-04-08|1997-05-02|TAKE BACK RETURN|SHIP|to sleep. deposits use c| +39850|82769|32770|1|26|45545.76|0.02|0.03|N|O|1998-07-14|1998-07-07|1998-08-13|TAKE BACK RETURN|FOB|packages p| +39850|84457|46959|2|27|38919.15|0.01|0.04|N|O|1998-07-05|1998-07-10|1998-07-17|DELIVER IN PERSON|SHIP|ilent packa| +39850|461596|36615|3|5|7787.85|0.00|0.08|N|O|1998-05-25|1998-07-01|1998-06-15|TAKE BACK RETURN|SHIP|iously alongside of the furiou| +39850|40744|3245|4|12|20216.88|0.02|0.06|N|O|1998-08-20|1998-06-28|1998-09-03|TAKE BACK RETURN|AIR|ully regular packages. ide| +39850|775356|37872|5|21|30057.72|0.05|0.06|N|O|1998-06-25|1998-05-27|1998-07-09|DELIVER IN PERSON|AIR|special, final deposits wake sometim| +39850|393739|43740|6|24|43985.28|0.06|0.06|N|O|1998-06-02|1998-06-05|1998-06-30|COLLECT COD|TRUCK|ests cajole | +39850|555535|30558|7|8|12724.08|0.10|0.05|N|O|1998-07-09|1998-07-03|1998-08-02|COLLECT COD|AIR| unusual dugouts after t| +39851|874814|49849|1|22|39352.94|0.00|0.00|N|O|1996-08-11|1996-07-04|1996-08-22|NONE|MAIL|dle foxes cajole carefull| +39851|984935|22493|2|30|60596.70|0.00|0.01|N|O|1996-05-25|1996-07-12|1996-06-02|DELIVER IN PERSON|SHIP|usly enticing s| +39852|941381|16418|1|49|69694.66|0.07|0.00|N|O|1998-07-07|1998-06-06|1998-07-20|TAKE BACK RETURN|AIR|ges alongside of | +39852|778899|3930|2|40|79114.40|0.03|0.05|N|O|1998-05-06|1998-06-09|1998-05-31|TAKE BACK RETURN|REG AIR|ests. quickly express cou| +39852|953324|40882|3|5|6886.40|0.02|0.05|N|O|1998-04-30|1998-05-18|1998-05-05|COLLECT COD|TRUCK|s. quickly final packages boos| +39852|513226|757|4|17|21066.40|0.01|0.01|N|O|1998-07-19|1998-05-24|1998-07-22|NONE|TRUCK|lithely ironic platelets. furiously silent| +39852|782541|32542|5|50|81175.50|0.01|0.07|N|O|1998-06-02|1998-05-11|1998-06-07|TAKE BACK RETURN|FOB|ng ideas x-ray blithely carefully bold pack| +39852|150938|939|6|26|51712.18|0.02|0.01|N|O|1998-05-06|1998-06-15|1998-05-28|COLLECT COD|MAIL|ar accounts. enticing, unusual acco| +39853|861782|49334|1|43|74980.82|0.06|0.00|N|O|1998-04-15|1998-02-28|1998-05-10|DELIVER IN PERSON|RAIL|ove the pending| +39853|954952|29991|2|14|28096.74|0.04|0.01|N|O|1998-02-09|1998-04-12|1998-02-10|DELIVER IN PERSON|TRUCK|ven theodolites. pending courts | +39853|866019|41054|3|22|21669.34|0.08|0.03|N|O|1998-05-12|1998-03-15|1998-05-20|DELIVER IN PERSON|TRUCK|ts cajole blithely among the regular, ex| +39854|20087|32588|1|8|8056.64|0.02|0.01|R|F|1993-12-18|1993-11-23|1994-01-03|COLLECT COD|TRUCK| carefully ironic | +39854|588591|26125|2|44|73901.08|0.04|0.04|A|F|1994-01-18|1993-12-16|1994-02-17|COLLECT COD|RAIL|g packages affix carefully expres| +39854|448638|36163|3|45|71397.45|0.07|0.06|R|F|1993-10-31|1994-01-01|1993-11-10|DELIVER IN PERSON|FOB|posits sublate aft| +39854|250027|37543|4|9|8793.09|0.06|0.08|R|F|1993-11-02|1993-12-11|1993-11-04|DELIVER IN PERSON|REG AIR|ithely. slyly final foxes alongside| +39854|199087|11591|5|17|20163.36|0.05|0.03|A|F|1994-01-05|1993-11-08|1994-01-25|COLLECT COD|SHIP|ound the ironically idle | +39855|417883|17884|1|38|68432.68|0.05|0.00|N|O|1997-04-08|1997-03-12|1997-04-28|DELIVER IN PERSON|TRUCK|st the pending instructions. furiously s| +39855|350042|12550|2|5|5460.15|0.03|0.00|N|O|1997-03-17|1997-02-20|1997-03-21|TAKE BACK RETURN|MAIL|ly even accounts cajole furiously b| +39855|151811|14315|3|37|68923.97|0.03|0.08|N|O|1997-01-19|1997-02-11|1997-01-29|COLLECT COD|TRUCK|ticing, sp| +39855|478885|41395|4|28|52188.08|0.03|0.04|N|O|1997-03-07|1997-03-22|1997-03-20|NONE|RAIL|s are carefully. bli| +39855|606035|18548|5|18|16938.00|0.05|0.07|N|O|1997-01-01|1997-02-12|1997-01-26|NONE|REG AIR|lar requests hag| +39855|626888|39401|6|37|67149.45|0.06|0.04|N|O|1997-02-08|1997-02-14|1997-03-07|TAKE BACK RETURN|AIR|efully final ac| +39855|96736|21739|7|7|12129.11|0.02|0.06|N|O|1997-03-11|1997-03-04|1997-03-31|NONE|FOB|en pinto beans engage quickly special| +39880|828584|3617|1|30|45376.20|0.06|0.03|R|F|1993-10-11|1993-11-08|1993-10-28|COLLECT COD|RAIL|ts above the carefully re| +39880|10700|10701|2|6|9664.20|0.01|0.02|R|F|1993-12-15|1993-11-19|1994-01-14|COLLECT COD|RAIL|nal accounts. slyly sp| +39880|830267|17816|3|50|59861.00|0.03|0.06|A|F|1993-10-10|1993-12-01|1993-11-06|TAKE BACK RETURN|TRUCK|latelets cajole blithel| +39880|290918|3424|4|50|95445.00|0.03|0.03|R|F|1993-11-28|1993-11-16|1993-12-25|TAKE BACK RETURN|RAIL|slyly regular foxes. quick| +39880|445446|45447|5|1|1391.42|0.03|0.05|A|F|1993-10-24|1993-10-31|1993-11-09|DELIVER IN PERSON|AIR|y unusual requests. final deposits nag aga| +39880|609219|9220|6|3|3384.54|0.02|0.03|A|F|1993-09-18|1993-11-07|1993-09-19|TAKE BACK RETURN|FOB|gular asymptotes. slyly fi| +39880|140596|28103|7|10|16365.90|0.01|0.06|A|F|1993-11-22|1993-10-29|1993-12-11|TAKE BACK RETURN|REG AIR|ake slyly blithely bold accounts. | +39881|981548|44068|1|35|57032.50|0.06|0.08|N|O|1996-11-10|1996-11-13|1996-12-06|COLLECT COD|MAIL| unusual deposits. accounts play al| +39882|113886|13887|1|16|30398.08|0.05|0.04|N|O|1995-07-29|1995-07-11|1995-08-20|NONE|TRUCK|ully regular accounts thrash | +39882|81919|44421|2|39|74135.49|0.09|0.01|N|O|1995-07-04|1995-07-16|1995-07-26|COLLECT COD|MAIL|y. dinos cajole furiously. fi| +39883|376265|38773|1|1|1341.25|0.03|0.00|R|F|1994-07-11|1994-05-11|1994-07-23|COLLECT COD|SHIP|sts. blithely regular packages amo| +39883|880843|43361|2|40|72952.00|0.01|0.04|R|F|1994-04-14|1994-05-03|1994-04-28|NONE|MAIL|the blithely ironic as| +39883|323128|48141|3|7|8057.77|0.00|0.00|R|F|1994-04-06|1994-05-15|1994-04-17|DELIVER IN PERSON|REG AIR| across the | +39883|798640|23671|4|30|52158.30|0.02|0.04|R|F|1994-05-23|1994-05-30|1994-06-03|NONE|FOB|encies. quickly regular ac| +39883|740189|27732|5|17|20895.55|0.10|0.02|R|F|1994-07-18|1994-06-23|1994-08-15|COLLECT COD|FOB|cial, even packages cajole carefully q| +39883|341824|41825|6|31|57840.11|0.02|0.06|R|F|1994-06-06|1994-05-02|1994-06-08|DELIVER IN PERSON|REG AIR|ily unusual requests sleep| +39883|29197|16698|7|27|30407.13|0.07|0.01|R|F|1994-07-20|1994-05-13|1994-07-22|TAKE BACK RETURN|MAIL|. slyly final pinto beans are across| +39884|713979|1522|1|6|11957.64|0.04|0.03|N|O|1998-07-22|1998-07-20|1998-08-20|DELIVER IN PERSON|RAIL|encies about the requests should have to ar| +39884|839600|2117|2|11|16935.16|0.05|0.06|N|O|1998-05-20|1998-07-05|1998-06-04|DELIVER IN PERSON|REG AIR|kly. quick| +39884|150055|37565|3|12|13260.60|0.00|0.05|N|O|1998-06-16|1998-07-24|1998-06-20|DELIVER IN PERSON|MAIL|ily regular requests| +39884|963611|26131|4|43|72006.51|0.10|0.00|N|O|1998-05-31|1998-08-07|1998-06-13|COLLECT COD|SHIP|tes across the packages haggle abou| +39885|56821|6822|1|21|37334.22|0.00|0.07|N|O|1998-04-06|1998-05-11|1998-04-16|TAKE BACK RETURN|TRUCK|packages along the carefully pending| +39885|989669|2189|2|33|58034.46|0.03|0.00|N|O|1998-03-31|1998-05-17|1998-04-08|NONE|MAIL|totes at the | +39885|350922|13430|3|35|69051.85|0.06|0.07|N|O|1998-06-15|1998-05-27|1998-07-06|TAKE BACK RETURN|RAIL|sits. carefully bold th| +39885|938781|26336|4|33|60051.42|0.09|0.01|N|O|1998-06-03|1998-05-18|1998-06-30|TAKE BACK RETURN|REG AIR|iously blithely silent packages. blithely| +39885|81971|31972|5|10|19529.70|0.07|0.05|N|O|1998-05-15|1998-05-26|1998-05-20|NONE|RAIL|carefully final ac| +39885|678474|40988|6|6|8714.64|0.03|0.00|N|O|1998-06-05|1998-06-14|1998-06-23|NONE|RAIL|ly regular ideas boos| +39885|95841|45842|7|26|47757.84|0.01|0.02|N|O|1998-04-28|1998-05-26|1998-05-19|NONE|AIR|al ideas across the slyly final somas slee| +39886|794223|19254|1|6|7903.14|0.05|0.04|A|F|1994-12-31|1994-11-24|1995-01-16|TAKE BACK RETURN|TRUCK|ial package| +39886|498131|48132|2|48|54197.28|0.06|0.04|R|F|1994-12-05|1994-11-28|1994-12-11|NONE|RAIL| requests h| +39887|6821|19322|1|46|79479.72|0.08|0.01|N|O|1995-07-27|1995-07-07|1995-08-08|NONE|RAIL|uctions. furiously ironic ideas haggle ir| +39887|625255|12792|2|32|37767.04|0.02|0.00|N|O|1995-08-12|1995-06-21|1995-08-25|TAKE BACK RETURN|MAIL| the carefully final theodolite| +39887|654355|41895|3|14|18330.48|0.06|0.02|A|F|1995-04-21|1995-05-27|1995-04-24|NONE|AIR|theodolites wake. si| +39887|728239|28240|4|37|46886.40|0.07|0.08|N|O|1995-08-16|1995-06-16|1995-09-15|COLLECT COD|MAIL|latelets across the furiously| +39887|508956|33977|5|45|88421.85|0.01|0.05|N|O|1995-07-13|1995-05-30|1995-07-22|DELIVER IN PERSON|SHIP|kages. slyly regular| +39887|7691|20192|6|13|20782.97|0.01|0.05|N|O|1995-07-21|1995-07-11|1995-08-13|COLLECT COD|AIR| boost. fluffily| +39887|249656|24665|7|35|56197.40|0.05|0.05|R|F|1995-05-05|1995-07-15|1995-05-14|COLLECT COD|MAIL|sits. expre| +39912|954506|42064|1|15|23406.90|0.04|0.01|N|O|1997-09-04|1997-10-18|1997-09-06|COLLECT COD|RAIL|the foxes sleep furiously courts. | +39912|366925|29433|2|32|63741.12|0.08|0.06|N|O|1997-08-15|1997-10-15|1997-09-08|COLLECT COD|FOB|uses wake quickly busily| +39912|897369|34921|3|4|5465.28|0.05|0.06|N|O|1997-11-23|1997-09-15|1997-12-12|DELIVER IN PERSON|MAIL|arefully among the foxes. pending| +39913|237093|12102|1|15|15451.20|0.01|0.00|A|F|1994-11-15|1994-12-16|1994-11-20|TAKE BACK RETURN|RAIL|en deposits x-ray carefully among the| +39913|817635|5184|2|18|27946.62|0.08|0.08|A|F|1995-01-23|1995-01-17|1995-02-06|NONE|MAIL|or the ironic, silent dolphins. carefull| +39914|941461|41462|1|13|19531.46|0.04|0.05|N|O|1996-06-16|1996-04-04|1996-06-22|NONE|AIR|sly enticing asymp| +39914|121959|9466|2|26|51504.70|0.04|0.08|N|O|1996-06-24|1996-04-09|1996-07-24|NONE|TRUCK| wake slyly throughout the| +39914|758534|33565|3|10|15925.00|0.03|0.05|N|O|1996-04-02|1996-05-24|1996-05-01|NONE|SHIP|instructions after the ca| +39914|675752|25753|4|44|76019.68|0.10|0.02|N|O|1996-03-17|1996-05-25|1996-04-02|DELIVER IN PERSON|RAIL|ithely alongside of the carefully | +39914|355730|18238|5|32|57143.04|0.08|0.00|N|O|1996-06-04|1996-05-11|1996-06-24|COLLECT COD|FOB|fully. final ideas boost furious| +39914|738248|38249|6|36|46303.56|0.05|0.04|N|O|1996-06-25|1996-05-07|1996-07-04|DELIVER IN PERSON|TRUCK|le carefully above the idly u| +39915|47236|9737|1|17|20114.91|0.01|0.02|A|F|1995-02-02|1995-01-14|1995-02-04|TAKE BACK RETURN|AIR|l pearls. slyly express deposits h| +39916|836258|36259|1|42|50156.82|0.03|0.07|R|F|1992-05-29|1992-05-03|1992-06-17|COLLECT COD|AIR|eodolites. p| +39916|979397|16955|2|3|4429.05|0.02|0.00|A|F|1992-06-16|1992-05-04|1992-07-10|TAKE BACK RETURN|REG AIR|r ideas. carefully express ex| +39916|709716|22231|3|27|46593.36|0.06|0.05|A|F|1992-04-17|1992-04-12|1992-05-12|TAKE BACK RETURN|AIR|ular packages use blithely acc| +39916|182381|44885|4|1|1463.38|0.08|0.01|R|F|1992-03-28|1992-04-08|1992-03-31|DELIVER IN PERSON|RAIL| the blithely ex| +39916|261728|11729|5|2|3379.42|0.03|0.04|A|F|1992-05-31|1992-04-26|1992-06-12|NONE|SHIP|. slyly silent theodolites use slyly | +39916|862285|37320|6|23|28686.52|0.09|0.01|R|F|1992-03-05|1992-04-12|1992-03-23|TAKE BACK RETURN|MAIL|ithely. carefully specia| +39917|933502|33503|1|3|4606.38|0.07|0.04|A|F|1992-11-21|1993-02-14|1992-12-19|NONE|REG AIR|s sleep furiously unusual accounts. | +39917|354892|17400|2|50|97344.00|0.06|0.04|R|F|1993-03-16|1993-02-15|1993-03-23|DELIVER IN PERSON|SHIP|uriously special e| +39917|666562|16563|3|37|56555.61|0.06|0.06|R|F|1993-01-23|1993-01-08|1993-02-20|COLLECT COD|RAIL| into the blithel| +39917|894435|44436|4|48|68610.72|0.10|0.02|A|F|1992-11-29|1993-01-24|1992-12-21|NONE|RAIL|xes are slyly along t| +39917|767615|17616|5|32|53842.56|0.02|0.06|R|F|1993-02-28|1992-12-31|1993-03-10|NONE|REG AIR|eep furiously courts. quickly e| +39917|293623|18634|6|36|58197.96|0.07|0.02|R|F|1992-11-22|1993-02-18|1992-12-16|COLLECT COD|AIR|gainst the regu| +39918|899948|49949|1|1|1947.90|0.01|0.03|R|F|1992-09-28|1992-10-17|1992-10-26|TAKE BACK RETURN|SHIP|coys sleep. ironically ev| +39918|412331|12332|2|40|49732.40|0.10|0.04|A|F|1992-10-22|1992-11-01|1992-11-12|NONE|RAIL|sleep blithel| +39918|44608|44609|3|47|72972.20|0.02|0.02|A|F|1992-10-02|1992-11-02|1992-10-08|TAKE BACK RETURN|AIR|ly unusual | +39918|717676|5219|4|6|10161.84|0.01|0.02|R|F|1992-10-28|1992-10-11|1992-11-05|COLLECT COD|MAIL|nts. slyly final f| +39918|964443|14444|5|3|4522.20|0.10|0.02|A|F|1992-11-10|1992-10-29|1992-11-27|DELIVER IN PERSON|SHIP|uriously regular theodolites | +39918|380103|17625|6|27|31943.43|0.09|0.05|R|F|1992-09-29|1992-10-27|1992-10-05|DELIVER IN PERSON|REG AIR|special courts. regular pains about th| +39919|785516|10547|1|44|70465.12|0.03|0.01|N|O|1996-09-26|1996-09-29|1996-10-17|COLLECT COD|AIR| deposits. ideas after the qui| +39919|160154|10155|2|42|50994.30|0.06|0.04|N|O|1996-10-10|1996-10-11|1996-10-19|COLLECT COD|REG AIR|r requests shall cajole blithely carefully | +39919|697862|47863|3|33|61374.39|0.00|0.04|N|O|1996-11-26|1996-10-10|1996-12-08|COLLECT COD|MAIL|y ironic instructions after the a| +39944|620853|8390|1|13|23059.66|0.00|0.03|A|F|1992-11-24|1993-01-27|1992-12-14|NONE|FOB|atelets. fur| +39944|665315|15316|2|36|46090.08|0.00|0.01|R|F|1993-03-04|1993-01-29|1993-03-27|NONE|REG AIR|o the unusual e| +39944|945162|7681|3|50|60356.00|0.04|0.08|R|F|1992-12-02|1993-01-12|1992-12-06|TAKE BACK RETURN|TRUCK|ely. slyly unusual deposits h| +39944|335514|23033|4|9|13945.50|0.07|0.01|A|F|1993-02-03|1993-01-05|1993-02-23|DELIVER IN PERSON|MAIL| after the unusual, final r| +39944|969411|6969|5|9|13323.33|0.00|0.08|A|F|1993-01-14|1992-12-25|1993-01-26|COLLECT COD|SHIP|dolites. regularly even instructions use bl| +39944|881867|6902|6|5|9244.10|0.09|0.03|R|F|1993-01-18|1992-12-31|1993-02-13|COLLECT COD|FOB|c requests. slyly final foxes haggle| +39944|533368|8389|7|17|23822.78|0.05|0.03|A|F|1993-01-27|1993-01-23|1993-02-26|NONE|REG AIR|y even accounts slee| +39945|315532|3051|1|47|72733.44|0.09|0.02|R|F|1995-01-16|1995-04-15|1995-01-23|NONE|RAIL|ly past the express ideas. packages| +39945|132933|20440|2|50|98296.50|0.06|0.03|R|F|1995-05-01|1995-02-24|1995-05-04|NONE|RAIL|s. unusual, unusual acc| +39945|192475|42476|3|31|48591.57|0.03|0.00|R|F|1995-02-15|1995-03-25|1995-02-28|COLLECT COD|AIR|pecial asymptotes cajole against the| +39946|515121|2652|1|14|15905.40|0.06|0.00|N|O|1998-07-19|1998-07-30|1998-08-04|DELIVER IN PERSON|FOB|he even packages wake | +39946|628147|3172|2|46|49455.06|0.09|0.06|N|O|1998-05-17|1998-07-07|1998-05-29|NONE|REG AIR|inst the ironic deposits. careful| +39946|252421|2422|3|42|57683.22|0.09|0.02|N|O|1998-07-31|1998-06-13|1998-08-14|COLLECT COD|AIR|e even attainm| +39946|438310|13327|4|25|31207.25|0.02|0.04|N|O|1998-06-07|1998-07-15|1998-06-13|DELIVER IN PERSON|AIR|usly. quickly ironic deposits wake slyly ac| +39947|371826|34334|1|39|74014.59|0.00|0.03|N|O|1997-04-30|1997-06-11|1997-05-03|DELIVER IN PERSON|SHIP|osits breach quickly. slyly regular asy| +39947|275603|38109|2|16|25257.44|0.02|0.00|N|O|1997-07-20|1997-04-29|1997-08-13|COLLECT COD|AIR|ideas x-ray blith| +39947|43839|43840|3|9|16045.47|0.03|0.05|N|O|1997-05-23|1997-05-11|1997-06-04|NONE|MAIL|. quickly express deposit| +39947|795761|45762|4|6|11140.38|0.08|0.04|N|O|1997-06-11|1997-05-06|1997-06-14|TAKE BACK RETURN|REG AIR|furiously stealthy| +39947|342422|17435|5|2|2928.82|0.05|0.02|N|O|1997-06-28|1997-06-20|1997-07-16|COLLECT COD|FOB|usly enticing accounts ca| +39947|78365|3368|6|3|4030.08|0.07|0.08|N|O|1997-05-25|1997-05-28|1997-05-31|DELIVER IN PERSON|REG AIR|to beans haggle slyly final depos| +39948|651773|26800|1|21|36219.54|0.07|0.02|N|O|1998-01-18|1998-01-06|1998-01-31|COLLECT COD|AIR|le slyly bold foxes. specia| +39948|340546|40547|2|45|71393.85|0.02|0.07|N|O|1998-01-22|1998-01-13|1998-01-31|DELIVER IN PERSON|MAIL|ress tithes! car| +39948|555190|42724|3|15|18677.55|0.08|0.06|N|O|1998-01-16|1998-01-26|1998-02-08|DELIVER IN PERSON|MAIL|ests. ironic, regula| +39949|753757|3758|1|50|90536.00|0.07|0.03|A|F|1992-03-08|1992-02-22|1992-03-09|COLLECT COD|FOB|l accounts. slow requests nag fluf| +39949|387448|24970|2|37|56810.91|0.07|0.05|R|F|1992-01-05|1992-02-05|1992-02-04|COLLECT COD|RAIL|t slyly-- carefully pendin| +39950|703377|3378|1|27|37269.18|0.02|0.01|N|O|1995-10-04|1995-10-01|1995-10-30|TAKE BACK RETURN|TRUCK|n braids s| +39950|652464|40004|2|9|12747.87|0.04|0.00|N|O|1995-12-17|1995-10-30|1996-01-14|DELIVER IN PERSON|AIR|lent accounts. pending, regular| +39950|954683|17203|3|18|31277.52|0.06|0.06|N|O|1995-11-02|1995-10-16|1995-11-08|NONE|MAIL|lly even pinto beans cajole bli| +39950|344350|44351|4|45|62745.30|0.02|0.04|N|O|1995-11-30|1995-10-01|1995-12-21|COLLECT COD|RAIL| poach furiously across t| +39950|475801|13329|5|36|63964.08|0.08|0.07|N|O|1995-11-14|1995-11-11|1995-11-27|DELIVER IN PERSON|SHIP|tions. furiously unus| +39950|774872|49903|6|39|75926.76|0.03|0.00|N|O|1995-11-28|1995-11-11|1995-12-20|DELIVER IN PERSON|AIR|requests. blithely regular dependencies | +39951|110597|10598|1|24|38582.16|0.10|0.07|N|O|1997-02-15|1996-12-18|1997-03-01|DELIVER IN PERSON|REG AIR|ise blithely. deposits above the quickly| +39951|788104|620|2|5|5960.35|0.06|0.07|N|O|1997-01-10|1996-12-17|1997-01-13|TAKE BACK RETURN|REG AIR|o beans kindle aft| +39951|655663|43203|3|32|51796.16|0.07|0.08|N|O|1997-01-18|1996-11-30|1997-02-03|COLLECT COD|FOB| accounts use blithely| +39951|716197|3740|4|11|13344.76|0.05|0.06|N|O|1997-01-01|1997-01-15|1997-01-04|TAKE BACK RETURN|FOB|deposits aft| +39951|110148|35153|5|40|46325.60|0.08|0.00|N|O|1996-12-07|1997-01-17|1996-12-15|NONE|RAIL|nst the blithely speci| +39976|57765|7766|1|25|43069.00|0.08|0.07|N|O|1996-08-17|1996-10-11|1996-09-14|NONE|RAIL|efully thin dep| +39976|851097|13615|2|44|46114.20|0.02|0.07|N|O|1996-10-11|1996-09-14|1996-10-16|TAKE BACK RETURN|AIR|inal instructions wake| +39976|382329|44837|3|22|31048.82|0.09|0.04|N|O|1996-10-13|1996-10-05|1996-11-10|TAKE BACK RETURN|AIR|ages. carefully| +39976|799087|36633|4|25|29651.25|0.09|0.01|N|O|1996-09-23|1996-11-04|1996-10-22|COLLECT COD|SHIP|odolites cajole slyly about the quickly reg| +39976|251586|39102|5|42|64577.94|0.04|0.05|N|O|1996-11-14|1996-10-09|1996-12-13|COLLECT COD|TRUCK| even foxes; slyly unusual pinto be| +39976|391683|16698|6|31|55014.77|0.08|0.00|N|O|1996-12-09|1996-09-27|1996-12-18|NONE|SHIP|ously even packages: bold re| +39977|471343|8871|1|35|46001.20|0.10|0.02|R|F|1995-02-23|1994-12-29|1995-03-05|COLLECT COD|SHIP| unusual, special requests against | +39977|859543|9544|2|35|52587.50|0.07|0.02|A|F|1995-01-12|1994-11-27|1995-01-27|COLLECT COD|REG AIR|es nod furiously. carefully expr| +39978|93203|43204|1|8|9569.60|0.01|0.07|R|F|1993-04-16|1993-05-08|1993-05-06|TAKE BACK RETURN|MAIL|uffily bold instructions. accounts should | +39978|449843|37368|2|14|25099.48|0.00|0.02|A|F|1993-04-04|1993-04-22|1993-04-22|COLLECT COD|MAIL|d deposits. final, even packages wake. u| +39978|496680|34208|3|7|11736.62|0.07|0.04|A|F|1993-05-17|1993-04-25|1993-06-05|DELIVER IN PERSON|MAIL| pending instructions sleep agains| +39978|694720|44721|4|24|41152.56|0.08|0.08|A|F|1993-03-24|1993-05-11|1993-04-05|DELIVER IN PERSON|TRUCK|sly. even requests haggle for the furiou| +39978|153513|28520|5|1|1566.51|0.07|0.02|R|F|1993-05-14|1993-04-24|1993-05-25|TAKE BACK RETURN|REG AIR|sly final pinto beans a| +39979|166930|41937|1|25|49923.25|0.05|0.00|R|F|1994-01-14|1994-02-28|1994-01-22|NONE|SHIP|rom the carefully unusual packages wake ar| +39979|586021|36022|2|33|36531.00|0.00|0.07|A|F|1994-02-26|1994-03-21|1994-03-02|DELIVER IN PERSON|SHIP| platelets wake slyl| +39979|245264|20273|3|31|37486.75|0.09|0.08|R|F|1994-01-17|1994-03-19|1994-01-18|NONE|FOB|ly unusual requests nag carefully across| +39979|142710|42711|4|38|66602.98|0.01|0.01|R|F|1994-04-08|1994-02-12|1994-04-13|NONE|MAIL|. furiously stealthy ideas nag fluffily f| +39979|520136|32647|5|45|52024.95|0.05|0.04|A|F|1994-04-05|1994-02-19|1994-04-27|DELIVER IN PERSON|SHIP|e regular asymptotes. special, express i| +39980|910821|23340|1|38|69607.64|0.08|0.05|N|O|1996-02-15|1996-02-19|1996-03-09|DELIVER IN PERSON|REG AIR| special packages sleep blithely. ironic| +39980|154187|29194|2|42|52129.56|0.10|0.06|N|O|1996-01-27|1996-02-12|1996-02-16|NONE|TRUCK|ely ironic attainments haggle regula| +39980|418084|43101|3|37|37076.22|0.02|0.06|N|O|1995-12-16|1996-03-01|1995-12-21|DELIVER IN PERSON|FOB|y after the e| +39981|334084|21603|1|16|17889.12|0.04|0.01|N|O|1996-03-08|1996-01-25|1996-03-23|TAKE BACK RETURN|RAIL|gular requests haggle about the pack| +39981|939859|2378|2|22|41773.82|0.04|0.08|N|O|1995-12-16|1996-02-08|1995-12-21|DELIVER IN PERSON|AIR| across the carefully bold| +39981|201722|26731|3|49|79561.79|0.08|0.07|N|O|1996-01-27|1996-01-17|1996-02-12|TAKE BACK RETURN|TRUCK|ronic accounts. special, unusual | +39981|333263|20782|4|8|10370.00|0.01|0.02|N|O|1996-01-23|1996-02-15|1996-02-04|NONE|SHIP|apades unwind accordin| +39982|323046|10565|1|44|47037.32|0.02|0.06|R|F|1992-07-11|1992-05-21|1992-07-15|DELIVER IN PERSON|RAIL| poach at the quickly | +39982|433557|33558|2|4|5962.12|0.07|0.01|A|F|1992-04-25|1992-06-27|1992-05-24|DELIVER IN PERSON|AIR|ckages. regular accounts along the blithe| +39982|787643|37644|3|7|12114.27|0.10|0.04|A|F|1992-07-18|1992-06-09|1992-08-09|TAKE BACK RETURN|TRUCK|cajole blithely against the quickly | +39982|905922|43477|4|25|48197.00|0.05|0.01|A|F|1992-04-20|1992-06-24|1992-05-17|DELIVER IN PERSON|TRUCK|nal theodolites cajole blithely ironic f| +39983|581050|6073|1|13|14703.39|0.00|0.04|A|F|1992-03-22|1992-03-27|1992-04-20|NONE|MAIL|nding, even | +39983|700830|831|2|17|31123.60|0.10|0.03|R|F|1992-04-06|1992-05-16|1992-04-17|DELIVER IN PERSON|RAIL|y express ideas. even ideas ac| +39983|848720|11237|3|49|81765.32|0.02|0.08|R|F|1992-02-26|1992-05-11|1992-03-03|TAKE BACK RETURN|RAIL|ccounts nag furiously i| +39983|429904|4921|4|19|34843.72|0.09|0.00|R|F|1992-03-25|1992-04-17|1992-04-09|TAKE BACK RETURN|TRUCK|iously idle | +39983|384360|9375|5|28|40441.80|0.01|0.05|R|F|1992-05-18|1992-04-27|1992-05-28|DELIVER IN PERSON|REG AIR|he carefully final packages. car| +39983|933789|46308|6|23|41923.02|0.03|0.04|R|F|1992-04-29|1992-04-28|1992-05-01|DELIVER IN PERSON|TRUCK|ounts are unusual foxes. dogged, | +40008|248832|11337|1|14|24931.48|0.05|0.03|A|F|1992-03-26|1992-05-11|1992-04-14|DELIVER IN PERSON|RAIL|hely ironi| +40008|106935|44442|2|7|13593.51|0.08|0.08|R|F|1992-03-24|1992-05-23|1992-03-29|COLLECT COD|RAIL|d platelets wake furiously | +40008|244549|32062|3|29|43312.37|0.00|0.05|A|F|1992-04-02|1992-05-06|1992-04-26|COLLECT COD|AIR|fully according to the pend| +40009|752443|2444|1|6|8972.46|0.06|0.02|A|F|1993-09-28|1993-09-30|1993-10-28|TAKE BACK RETURN|AIR|ending the| +40010|455031|5032|1|14|13804.14|0.05|0.06|R|F|1993-02-18|1993-04-08|1993-03-20|DELIVER IN PERSON|FOB|he express pack| +40010|704418|4419|2|33|46938.54|0.04|0.02|A|F|1993-05-02|1993-05-02|1993-05-24|COLLECT COD|AIR|usly. furiou| +40010|144282|44283|3|34|45093.52|0.04|0.08|R|F|1993-03-06|1993-04-17|1993-03-28|DELIVER IN PERSON|TRUCK|unusual deposits integrate f| +40010|938116|25671|4|35|40392.45|0.06|0.03|A|F|1993-04-08|1993-03-11|1993-04-10|TAKE BACK RETURN|REG AIR|oxes are across the carefully final packa| +40010|905376|5377|5|42|58015.86|0.09|0.01|R|F|1993-03-31|1993-03-27|1993-04-30|NONE|REG AIR|xpress pinto b| +40010|640898|28435|6|44|80909.84|0.00|0.07|A|F|1993-05-26|1993-04-16|1993-06-06|TAKE BACK RETURN|MAIL|manent requests. unusual, express ac| +40010|558979|21491|7|35|71328.25|0.03|0.07|R|F|1993-04-12|1993-04-10|1993-04-21|TAKE BACK RETURN|REG AIR| beans. ironic | +40011|758977|34008|1|49|99761.06|0.10|0.06|N|O|1995-12-13|1995-09-27|1995-12-20|NONE|RAIL|eodolites; deposits haggle furiously. slyl| +40011|122167|22168|2|50|59458.00|0.03|0.07|N|O|1995-11-18|1995-10-03|1995-11-28|NONE|REG AIR|ackages wake furio| +40011|247334|9839|3|24|30751.68|0.01|0.07|N|O|1995-10-04|1995-10-03|1995-10-17|TAKE BACK RETURN|AIR|telets cajole slyly. furiously pending| +40011|933262|45781|4|40|51808.80|0.06|0.08|N|O|1995-11-29|1995-09-27|1995-12-22|NONE|TRUCK|s haggle about the furiously even pearls. s| +40011|318231|43244|5|42|52467.24|0.10|0.03|N|O|1995-10-24|1995-11-20|1995-11-19|DELIVER IN PERSON|AIR| above the expre| +40011|500807|808|6|24|43386.72|0.10|0.02|N|O|1995-09-30|1995-10-02|1995-10-17|DELIVER IN PERSON|AIR| are furiously around the furiousl| +40012|578522|16056|1|44|70422.00|0.07|0.03|R|F|1994-03-10|1994-01-08|1994-03-28|COLLECT COD|RAIL|he slyly even packages. even| +40012|206212|43725|2|33|36900.60|0.06|0.05|R|F|1993-12-22|1993-12-29|1994-01-04|DELIVER IN PERSON|RAIL|y. regular, ironic deposits | +40012|803497|16014|3|8|11203.60|0.05|0.08|R|F|1993-11-21|1994-01-18|1993-12-07|COLLECT COD|MAIL|slyly regular | +40012|368930|31438|4|38|75958.96|0.04|0.01|R|F|1994-02-07|1994-02-03|1994-02-08|COLLECT COD|MAIL|ual packages? dependencies cajole.| +40012|605259|17772|5|18|20955.96|0.07|0.07|R|F|1993-12-07|1994-02-11|1994-01-02|DELIVER IN PERSON|AIR|structions. carefull| +40013|413421|25930|1|46|61382.40|0.06|0.00|A|F|1993-05-04|1993-05-16|1993-05-07|TAKE BACK RETURN|SHIP| even, even theodolites. careful| +40014|531932|31933|1|31|60881.21|0.05|0.02|A|F|1994-11-08|1994-09-10|1994-12-06|COLLECT COD|TRUCK|ven instructions detect slyly asympt| +40014|165156|2666|2|44|53730.60|0.03|0.08|R|F|1994-09-04|1994-10-24|1994-09-09|COLLECT COD|AIR|al instructi| +40014|772414|22415|3|43|63914.34|0.03|0.00|R|F|1994-10-11|1994-10-20|1994-10-12|COLLECT COD|MAIL|requests are furio| +40014|957405|32444|4|14|20473.04|0.00|0.00|R|F|1994-08-09|1994-09-09|1994-08-12|COLLECT COD|SHIP|y bold deposits; blithely regular decoys a| +40014|96052|46053|5|19|19912.95|0.04|0.07|R|F|1994-11-15|1994-10-05|1994-12-10|TAKE BACK RETURN|TRUCK|tly final t| +40014|339240|26759|6|17|21746.91|0.06|0.07|R|F|1994-11-11|1994-09-25|1994-11-30|TAKE BACK RETURN|AIR|es. furiously pending platel| +40014|591572|29106|7|23|38261.65|0.07|0.02|R|F|1994-10-19|1994-10-08|1994-11-17|COLLECT COD|AIR|raids. bold, ironic sh| +40015|549125|36656|1|25|29352.50|0.08|0.02|A|F|1994-11-14|1994-11-03|1994-11-21|DELIVER IN PERSON|SHIP|ronic theodolites use blithely.| +40015|137750|37751|2|11|19665.25|0.06|0.05|R|F|1994-10-05|1994-11-09|1994-10-15|DELIVER IN PERSON|TRUCK|lyly regula| +40015|157908|32915|3|4|7863.60|0.09|0.03|R|F|1994-11-20|1994-11-18|1994-12-01|TAKE BACK RETURN|RAIL| carefully pending accounts are fu| +40015|954914|42472|4|49|96474.63|0.10|0.08|A|F|1994-12-27|1994-12-02|1995-01-10|DELIVER IN PERSON|SHIP|ess accounts across the pending, e| +40015|232654|45159|5|14|22212.96|0.04|0.00|R|F|1994-11-18|1994-10-30|1994-11-20|TAKE BACK RETURN|FOB|jole express, busy co| +40040|279114|4125|1|49|53561.90|0.04|0.05|N|O|1997-10-29|1997-11-21|1997-10-30|COLLECT COD|SHIP|dolites. reg| +40040|62255|49759|2|4|4869.00|0.10|0.07|N|O|1997-12-13|1997-10-01|1998-01-08|NONE|SHIP|oxes wake idly requests| +40040|310015|47534|3|19|19475.00|0.08|0.08|N|O|1997-12-13|1997-09-30|1998-01-03|DELIVER IN PERSON|REG AIR|- regular deposits wak| +40041|380081|17603|1|39|45281.73|0.04|0.05|N|O|1995-09-28|1995-09-03|1995-10-19|DELIVER IN PERSON|TRUCK|ag. even realms aroun| +40041|19152|19153|2|49|52486.35|0.05|0.01|N|O|1995-07-05|1995-09-15|1995-07-06|COLLECT COD|REG AIR|ending, ironic accounts wake. ironic, exp| +40041|885318|22870|3|16|20852.32|0.08|0.07|N|O|1995-08-20|1995-07-25|1995-08-21|NONE|SHIP| nag among the special dugouts-- carefully | +40041|532854|45365|4|47|88681.01|0.02|0.05|N|O|1995-07-17|1995-09-08|1995-08-01|TAKE BACK RETURN|REG AIR|rmanently. furiously | +40041|662072|37099|5|16|16544.64|0.00|0.05|N|O|1995-09-21|1995-07-24|1995-09-22|COLLECT COD|RAIL|riously pending packages maintain| +40042|635772|35773|1|33|56355.42|0.01|0.07|R|F|1992-04-30|1992-05-29|1992-05-17|COLLECT COD|REG AIR|special, bold Tire| +40042|418367|5892|2|29|37274.86|0.03|0.05|A|F|1992-03-28|1992-06-02|1992-04-13|DELIVER IN PERSON|REG AIR|ual ideas about the special| +40042|486829|24357|3|8|14526.40|0.08|0.08|A|F|1992-03-23|1992-04-26|1992-04-08|COLLECT COD|REG AIR|riously among the slyly f| +40042|123245|48250|4|18|22828.32|0.05|0.01|R|F|1992-05-31|1992-05-09|1992-06-04|DELIVER IN PERSON|FOB|nic packages haggl| +40042|374974|24975|5|37|75811.52|0.07|0.01|A|F|1992-04-15|1992-04-18|1992-05-05|DELIVER IN PERSON|FOB|t the dependencies. pendin| +40042|178141|28142|6|32|39012.48|0.04|0.00|A|F|1992-04-26|1992-05-12|1992-05-15|COLLECT COD|SHIP|ges. fluffily regular requests sleep fur| +40042|11238|36239|7|30|34476.90|0.01|0.06|A|F|1992-05-26|1992-04-27|1992-06-15|DELIVER IN PERSON|SHIP|ajole blithely | +40043|861271|23789|1|46|56682.58|0.03|0.04|A|F|1994-03-19|1994-01-02|1994-04-06|DELIVER IN PERSON|SHIP|riously pendi| +40043|375412|25413|2|35|52059.00|0.00|0.08|R|F|1993-12-12|1994-02-04|1994-01-03|NONE|REG AIR|ronic accounts haggle blithely across | +40043|538834|38835|3|50|93640.50|0.05|0.02|R|F|1994-03-17|1994-02-04|1994-04-06|NONE|MAIL|es. regular platelets use fluf| +40043|169448|19449|4|37|56145.28|0.06|0.06|A|F|1994-02-10|1994-02-14|1994-02-28|COLLECT COD|REG AIR|ackages integrate slyly enticingly ironic| +40043|911190|36227|5|14|16816.10|0.10|0.07|R|F|1993-11-29|1994-01-09|1993-12-20|NONE|RAIL|ent asymptot| +40043|365836|3358|6|2|3803.64|0.10|0.01|A|F|1994-02-01|1994-02-17|1994-02-13|COLLECT COD|SHIP|tes sleep quickly quickly unusua| +40043|592853|42854|7|19|36970.77|0.03|0.06|R|F|1994-01-19|1994-02-16|1994-01-28|COLLECT COD|RAIL| fluffily special requests nag ir| +40044|65231|40234|1|6|7177.38|0.10|0.05|N|O|1996-10-25|1996-11-22|1996-11-02|DELIVER IN PERSON|TRUCK|regular, special asymptotes. ironi| +40044|325695|25696|2|1|1720.68|0.04|0.00|N|O|1996-10-11|1996-11-30|1996-10-19|COLLECT COD|FOB|nal, final deposits.| +40044|953186|15706|3|23|28500.22|0.05|0.03|N|O|1997-01-20|1996-11-08|1997-01-25|COLLECT COD|AIR|structions. furiously sly id| +40044|183246|33247|4|48|63803.52|0.07|0.02|N|O|1997-01-24|1996-12-25|1997-02-14|COLLECT COD|AIR|along the special foxes. fina| +40044|799170|11686|5|8|10153.12|0.03|0.01|N|O|1996-11-24|1996-11-20|1996-11-29|NONE|REG AIR|und the carefully special r| +40044|646072|46073|6|16|16288.64|0.03|0.08|N|O|1996-11-14|1996-12-05|1996-12-14|DELIVER IN PERSON|REG AIR|eodolites detect. express i| +40045|260299|10300|1|22|27704.16|0.03|0.07|R|F|1994-09-29|1994-08-11|1994-10-23|COLLECT COD|TRUCK|des detect carefully special, regula| +40046|91375|41376|1|32|43723.84|0.00|0.02|N|O|1996-11-04|1996-09-05|1996-11-07|COLLECT COD|TRUCK|into beans wake furiously. fl| +40047|127912|40415|1|32|62077.12|0.06|0.06|N|O|1997-02-04|1997-01-14|1997-02-24|NONE|REG AIR|es according to the| +40072|389138|1646|1|15|18406.80|0.09|0.00|N|O|1998-10-04|1998-08-01|1998-10-25|DELIVER IN PERSON|SHIP|. pinto beans | +40072|235038|47543|2|50|48651.00|0.08|0.05|N|O|1998-07-21|1998-09-01|1998-08-20|COLLECT COD|REG AIR|ect slyly quickly ironic | +40072|269920|19921|3|47|88825.77|0.10|0.03|N|O|1998-09-24|1998-08-05|1998-10-09|NONE|RAIL|ronic dinos. carefully | +40072|538389|900|4|19|27119.84|0.00|0.05|N|O|1998-09-24|1998-08-27|1998-10-10|NONE|FOB|uickly regular dependencies. fluffi| +40072|694765|7279|5|48|84467.04|0.04|0.02|N|O|1998-09-07|1998-09-10|1998-10-07|NONE|TRUCK|c accounts doze blithely furi| +40072|905095|42650|6|42|46202.10|0.08|0.05|N|O|1998-10-11|1998-08-19|1998-10-20|TAKE BACK RETURN|FOB|apades. carefully regular reque| +40073|363257|38272|1|38|50169.12|0.10|0.06|A|F|1993-04-02|1993-04-16|1993-04-04|DELIVER IN PERSON|MAIL| final deposits about the attainm| +40073|256399|18905|2|16|21686.08|0.04|0.07|A|F|1993-03-25|1993-05-14|1993-04-23|TAKE BACK RETURN|RAIL| requests. blithely even dolphins use reque| +40073|289364|39365|3|7|9473.45|0.04|0.02|R|F|1993-06-13|1993-05-08|1993-06-29|NONE|TRUCK|efully ironic attainments. furious| +40073|333845|46352|4|15|28182.45|0.09|0.06|R|F|1993-03-07|1993-03-22|1993-03-29|COLLECT COD|RAIL|inally above the special accounts. | +40073|931294|31295|5|34|45058.50|0.01|0.03|A|F|1993-03-24|1993-04-02|1993-04-08|NONE|AIR|nt accounts. asymptotes nag| +40073|256626|31637|6|50|79130.50|0.06|0.08|A|F|1993-04-13|1993-03-20|1993-04-16|DELIVER IN PERSON|MAIL| asymptotes. accounts engage| +40074|503563|16074|1|4|6266.16|0.10|0.03|N|O|1996-10-31|1996-10-18|1996-11-28|COLLECT COD|FOB|eans. deposits inte| +40074|382326|19848|2|3|4224.93|0.10|0.08|N|O|1996-09-29|1996-11-10|1996-10-25|NONE|TRUCK| deposits cajole. fluffily final th| +40074|747230|47231|3|7|8940.40|0.03|0.02|N|O|1996-09-09|1996-11-06|1996-10-07|TAKE BACK RETURN|MAIL| ideas sleep | +40074|682201|7228|4|48|56792.16|0.03|0.03|N|O|1996-10-16|1996-10-22|1996-10-25|NONE|FOB|ourts wake blit| +40075|35974|35975|1|38|72578.86|0.04|0.04|A|F|1992-07-14|1992-06-29|1992-07-23|DELIVER IN PERSON|TRUCK|s use across the carefully even deposits. c| +40075|606302|43839|2|17|20540.59|0.10|0.08|A|F|1992-07-07|1992-06-06|1992-07-09|COLLECT COD|TRUCK|ke carefully even accounts. unu| +40075|111632|49139|3|23|37803.49|0.09|0.05|R|F|1992-06-01|1992-06-02|1992-06-11|NONE|FOB|nal foxes. slyly silent | +40075|195475|32985|4|44|69100.68|0.09|0.02|R|F|1992-08-14|1992-06-27|1992-08-18|NONE|TRUCK|nag fluffily bold accounts| +40075|346362|8869|5|41|57742.35|0.07|0.01|R|F|1992-08-01|1992-06-19|1992-08-11|COLLECT COD|FOB|ly ironic packages wake pinto beans--| +40075|295796|8302|6|8|14334.24|0.03|0.06|R|F|1992-05-28|1992-06-03|1992-06-05|COLLECT COD|FOB|ets. carefully silent fox| +40075|440321|27846|7|36|45406.80|0.03|0.08|A|F|1992-06-21|1992-05-15|1992-07-15|COLLECT COD|FOB|quickly regular the| +40076|473459|23460|1|6|8594.58|0.08|0.08|N|O|1995-10-05|1995-11-13|1995-10-31|NONE|RAIL|ctions solve slyly according | +40076|421876|34385|2|5|8989.25|0.00|0.03|N|O|1996-01-17|1995-11-25|1996-01-23|DELIVER IN PERSON|SHIP|its sleep quickly across the daring, sil| +40076|457926|7927|3|47|88543.30|0.00|0.00|N|O|1996-01-11|1995-12-27|1996-01-22|DELIVER IN PERSON|TRUCK|r theodolites. ironic,| +40076|360032|22540|4|41|44772.82|0.07|0.07|N|O|1996-01-03|1995-12-27|1996-01-27|COLLECT COD|REG AIR|ely even foxes ca| +40076|51709|26712|5|35|58124.50|0.06|0.07|N|O|1995-11-06|1995-12-10|1995-11-27|COLLECT COD|AIR|gged packages! furiously expres| +40076|64774|14775|6|28|48685.56|0.04|0.00|N|O|1996-01-06|1995-12-25|1996-01-26|DELIVER IN PERSON|MAIL|onic frays detect qu| +40077|689355|26895|1|2|2688.64|0.10|0.02|N|O|1996-07-04|1996-06-17|1996-07-24|DELIVER IN PERSON|SHIP|ly bold theodolites shall boost| +40077|983197|45717|2|33|42244.95|0.00|0.02|N|O|1996-07-29|1996-06-07|1996-08-04|TAKE BACK RETURN|SHIP|ans. regular, ironic accounts hang slyly a| +40077|586718|36719|3|17|30679.73|0.03|0.08|N|O|1996-06-18|1996-07-03|1996-07-16|TAKE BACK RETURN|AIR|ites. quickly final asymptotes | +40077|960900|23420|4|40|78434.40|0.05|0.04|N|O|1996-04-15|1996-05-31|1996-04-26|DELIVER IN PERSON|RAIL| deposits boost quickly.| +40077|845444|7961|5|33|45850.20|0.05|0.05|N|O|1996-05-01|1996-06-28|1996-05-03|TAKE BACK RETURN|AIR|s packages. furiously special requests h| +40078|794821|19852|1|38|72800.02|0.02|0.08|R|F|1992-10-12|1992-09-18|1992-10-13|TAKE BACK RETURN|AIR|ve the carefully ruthless epitaph| +40078|551039|13551|2|24|26160.24|0.03|0.08|A|F|1992-07-30|1992-09-17|1992-08-07|TAKE BACK RETURN|RAIL|quests according to the | +40078|310162|10163|3|31|36336.65|0.06|0.01|R|F|1992-07-26|1992-09-11|1992-08-08|DELIVER IN PERSON|FOB|requests snooze acros| +40078|882811|45329|4|49|87894.73|0.10|0.00|A|F|1992-08-30|1992-08-23|1992-09-01|TAKE BACK RETURN|TRUCK|nusual packages are sly| +40078|400839|38364|5|33|57413.73|0.07|0.03|A|F|1992-09-05|1992-08-23|1992-09-19|TAKE BACK RETURN|MAIL|ironic accou| +40078|894111|6629|6|39|43097.73|0.09|0.07|R|F|1992-09-07|1992-08-15|1992-09-13|DELIVER IN PERSON|RAIL|l notornis. blithely ev| +40079|439991|2500|1|24|46343.28|0.04|0.04|A|F|1992-04-26|1992-06-27|1992-05-18|COLLECT COD|AIR|ep alongside of the slyly even dolphin| +40104|553901|3902|1|5|9774.40|0.09|0.08|R|F|1992-06-10|1992-05-04|1992-06-15|DELIVER IN PERSON|SHIP|pecial accounts play about the id| +40104|409446|34463|2|36|48795.12|0.09|0.04|A|F|1992-06-15|1992-06-04|1992-07-08|DELIVER IN PERSON|SHIP|into beans. quickly final de| +40104|558106|45640|3|35|40742.80|0.02|0.05|A|F|1992-04-26|1992-04-27|1992-04-28|COLLECT COD|MAIL|quickly even accounts bo| +40104|78775|28776|4|41|71904.57|0.03|0.02|A|F|1992-04-16|1992-04-30|1992-04-29|DELIVER IN PERSON|SHIP|uctions. slyly final depende| +40105|631396|31397|1|45|59731.20|0.06|0.05|N|O|1996-07-11|1996-05-27|1996-07-23|NONE|MAIL|encies cajole. ruthlessly ironic a| +40105|872480|10032|2|32|46478.08|0.09|0.03|N|O|1996-05-19|1996-06-28|1996-05-29|TAKE BACK RETURN|MAIL| believe. express accounts cajole| +40106|617182|42207|1|7|7694.05|0.08|0.06|N|O|1998-09-03|1998-08-25|1998-09-20|TAKE BACK RETURN|MAIL|oxes against the quickly expre| +40106|967839|5397|2|7|13347.53|0.08|0.00|N|O|1998-10-03|1998-07-31|1998-10-16|NONE|AIR|nally unusual pinto beans boo| +40106|467574|17575|3|35|53954.25|0.03|0.07|N|O|1998-08-30|1998-08-14|1998-09-10|DELIVER IN PERSON|SHIP|usly final platelets. | +40106|499949|37477|4|34|66263.28|0.07|0.02|N|O|1998-08-13|1998-07-30|1998-09-07|DELIVER IN PERSON|REG AIR|al instructions sleep about the slyly regul| +40106|640121|27658|5|36|38199.24|0.03|0.08|N|O|1998-07-17|1998-09-03|1998-08-04|TAKE BACK RETURN|MAIL|ithely final requests. pending| +40107|339331|14344|1|47|64405.04|0.06|0.01|N|O|1998-06-22|1998-04-14|1998-07-21|TAKE BACK RETURN|MAIL|lyly. quickly ironic acc| +40107|130010|42513|2|45|46800.45|0.10|0.07|N|O|1998-05-06|1998-05-13|1998-06-05|COLLECT COD|TRUCK|ly along the blith| +40107|63678|1182|3|46|75516.82|0.06|0.06|N|O|1998-07-02|1998-06-04|1998-07-07|COLLECT COD|REG AIR|hely ironic accounts sleep regular, daring | +40108|818498|43531|1|44|62323.80|0.03|0.01|A|F|1994-09-07|1994-10-12|1994-09-29|TAKE BACK RETURN|FOB|e carefully bold theodolites. pinto beans | +40108|482910|45420|2|15|28393.35|0.05|0.00|R|F|1994-10-14|1994-09-21|1994-11-01|NONE|TRUCK|ns. carefully re| +40109|704131|4132|1|50|56755.00|0.01|0.04|N|O|1995-06-30|1995-08-15|1995-07-26|TAKE BACK RETURN|REG AIR|e ironic accounts. special accounts| +40109|314160|14161|2|41|48140.15|0.03|0.06|N|O|1995-07-12|1995-07-05|1995-07-16|NONE|REG AIR|ithely after the care| +40109|76785|39287|3|9|15856.02|0.05|0.06|N|O|1995-09-04|1995-07-24|1995-09-15|TAKE BACK RETURN|REG AIR|final accounts along the| +40109|524730|37241|4|10|17547.10|0.01|0.08|N|F|1995-06-17|1995-07-24|1995-07-12|DELIVER IN PERSON|RAIL|efully regul| +40110|66824|4328|1|38|68051.16|0.02|0.01|N|O|1996-03-12|1996-04-09|1996-04-07|NONE|FOB|fluffily across the excuses| +40110|98671|36175|2|10|16696.70|0.07|0.02|N|O|1996-03-29|1996-03-04|1996-04-26|COLLECT COD|RAIL|ously unusual requests. carefully pendin| +40110|363435|38450|3|27|40457.34|0.08|0.06|N|O|1996-05-05|1996-05-01|1996-05-13|COLLECT COD|RAIL|sly. carefull| +40111|682479|44993|1|3|4384.32|0.08|0.03|N|O|1997-01-06|1996-12-13|1997-01-26|NONE|SHIP|haggle during the furiously fi| +40111|420813|45830|2|44|76286.76|0.00|0.05|N|O|1996-12-31|1996-12-21|1997-01-25|TAKE BACK RETURN|SHIP|e furiously. special requests | +40111|597612|22635|3|2|3419.18|0.08|0.04|N|O|1997-01-25|1996-12-10|1997-02-23|DELIVER IN PERSON|TRUCK|ctions. slyly| +40111|51382|38886|4|21|28000.98|0.02|0.08|N|O|1997-01-26|1997-01-12|1997-02-08|COLLECT COD|RAIL|packages. furiously even pinto bean| +40111|569693|7227|5|36|63456.12|0.05|0.04|N|O|1997-01-06|1997-01-21|1997-01-31|TAKE BACK RETURN|SHIP|the ironic deposi| +40136|717971|30486|1|38|75579.72|0.07|0.02|N|O|1995-09-25|1995-08-08|1995-10-23|COLLECT COD|REG AIR|leep carefully. ironic id| +40136|922917|10472|2|26|50436.62|0.07|0.00|N|O|1995-08-26|1995-08-28|1995-09-02|DELIVER IN PERSON|MAIL|key players amo| +40137|538384|895|1|2|2844.72|0.06|0.04|N|O|1997-09-04|1997-08-02|1997-09-10|COLLECT COD|RAIL| blithe packages. furiously regular e| +40137|609340|9341|2|21|26235.51|0.09|0.02|N|O|1997-09-15|1997-09-20|1997-10-14|NONE|MAIL|excuses cajole after the blithely regular| +40137|170137|20138|3|36|43456.68|0.08|0.05|N|O|1997-06-30|1997-09-21|1997-07-17|COLLECT COD|TRUCK|ke. bold pe| +40137|492307|42308|4|39|50671.92|0.04|0.03|N|O|1997-10-17|1997-09-12|1997-11-06|COLLECT COD|MAIL|efully. quickly pendin| +40137|197067|34577|5|25|29101.50|0.05|0.08|N|O|1997-09-12|1997-08-13|1997-09-18|NONE|TRUCK|y. instructions sleep carefully ironic gi| +40138|841859|4376|1|12|21609.72|0.06|0.04|N|O|1997-09-23|1997-10-20|1997-10-21|NONE|SHIP|quickly even, bold notornis| +40138|122910|22911|2|43|83115.13|0.03|0.05|N|O|1997-09-21|1997-09-23|1997-10-12|DELIVER IN PERSON|FOB|ng dolphins cajole slyly around the | +40138|736357|36358|3|40|55732.80|0.04|0.04|N|O|1997-08-12|1997-09-07|1997-08-28|COLLECT COD|RAIL|blithely bold attainments sle| +40138|937144|24699|4|37|43700.70|0.08|0.08|N|O|1997-08-17|1997-10-19|1997-09-09|TAKE BACK RETURN|SHIP|structions? quietly final packages haggle| +40139|327615|40122|1|39|64061.40|0.04|0.04|A|F|1993-10-06|1993-09-13|1993-10-22|NONE|FOB|Tiresias. final pinto beans after | +40139|217072|17073|2|43|42529.58|0.02|0.06|R|F|1993-07-27|1993-08-21|1993-08-13|TAKE BACK RETURN|FOB|ly final packages alongside | +40139|321816|46829|3|5|9189.00|0.10|0.06|A|F|1993-10-30|1993-08-23|1993-11-01|DELIVER IN PERSON|SHIP|s. instructions might haggle. furiously| +40140|336064|36065|1|23|25301.15|0.06|0.08|R|F|1994-06-29|1994-05-30|1994-07-14|TAKE BACK RETURN|AIR|ss excuses at the fur| +40140|222206|9719|2|34|38358.46|0.10|0.05|A|F|1994-06-06|1994-05-30|1994-06-28|TAKE BACK RETURN|FOB|yly even packages wake. carefully even | +40140|615740|15741|3|2|3311.42|0.06|0.05|A|F|1994-04-28|1994-07-16|1994-05-25|NONE|TRUCK|slyly busy foxes| +40140|725981|13524|4|34|68236.30|0.05|0.05|A|F|1994-08-18|1994-07-22|1994-08-27|DELIVER IN PERSON|SHIP| cajole slyly furiously even dolphin| +40140|561849|11850|5|17|32483.94|0.02|0.04|R|F|1994-06-27|1994-06-16|1994-07-10|DELIVER IN PERSON|MAIL|osits. carefully pending e| +40140|994268|19307|6|45|61299.90|0.09|0.08|A|F|1994-06-29|1994-07-17|1994-07-18|COLLECT COD|RAIL|quests sublate boldly fluffily i| +40140|661144|11145|7|7|7735.77|0.10|0.03|A|F|1994-08-17|1994-07-09|1994-09-16|DELIVER IN PERSON|AIR|ake carefully. quickly | +40141|834559|9592|1|29|43311.79|0.02|0.00|R|F|1994-11-25|1994-12-29|1994-12-14|TAKE BACK RETURN|RAIL|manent packages across t| +40141|418729|43746|2|39|64260.30|0.01|0.01|A|F|1994-11-25|1994-12-24|1994-12-20|COLLECT COD|FOB|onic requests gro| +40141|569436|44459|3|40|60216.40|0.00|0.02|A|F|1994-12-04|1995-01-21|1995-01-01|NONE|AIR| doubt ironic ac| +40141|502963|15474|4|27|53080.38|0.06|0.04|A|F|1995-02-02|1994-11-27|1995-02-17|TAKE BACK RETURN|SHIP|ular dolphin| +40141|297752|47753|5|18|31495.32|0.06|0.04|R|F|1994-12-20|1995-01-05|1994-12-26|DELIVER IN PERSON|RAIL|. fluffily unusual | +40141|308771|33784|6|9|16017.84|0.02|0.05|R|F|1995-02-01|1994-12-02|1995-03-03|DELIVER IN PERSON|TRUCK|deposits again| +40141|511551|36572|7|8|12500.24|0.09|0.08|R|F|1994-11-29|1994-12-11|1994-12-02|TAKE BACK RETURN|MAIL|equests sleep among the| +40142|627130|27131|1|3|3171.30|0.00|0.05|N|O|1997-07-14|1997-04-26|1997-08-03|NONE|MAIL|fully along the carefully regular p| +40142|168866|43873|2|24|46436.64|0.02|0.00|N|O|1997-05-22|1997-05-18|1997-06-04|NONE|MAIL|onic pinto | +40142|123595|11102|3|45|72836.55|0.07|0.04|N|O|1997-06-17|1997-06-03|1997-07-13|NONE|RAIL|ts. even instructions ar| +40142|260286|10287|4|46|57328.42|0.06|0.04|N|O|1997-07-07|1997-04-21|1997-07-17|DELIVER IN PERSON|RAIL|e among the carefully express pinto bea| +40143|346437|46438|1|26|38568.92|0.05|0.03|R|F|1994-12-26|1994-11-18|1994-12-31|COLLECT COD|REG AIR|ously around the regular, furious platel| +40168|646245|46246|1|46|54795.66|0.02|0.08|N|O|1997-09-25|1997-11-01|1997-10-10|NONE|MAIL|. final accounts serve. ironic, final idea| +40168|428982|3999|2|10|19109.60|0.03|0.01|N|O|1997-12-16|1997-10-26|1998-01-05|NONE|AIR| accounts sleep fluffi| +40168|891781|41782|3|29|51409.46|0.06|0.01|N|O|1997-10-18|1997-11-10|1997-11-13|TAKE BACK RETURN|SHIP| requests c| +40169|652682|40222|1|15|24519.75|0.01|0.01|N|O|1998-03-01|1998-03-17|1998-03-16|NONE|SHIP|encies serve c| +40169|620351|45376|2|34|43224.88|0.00|0.02|N|O|1998-02-13|1998-02-03|1998-02-16|DELIVER IN PERSON|FOB|out the bold requests. pending,| +40169|224333|49342|3|3|3771.96|0.02|0.00|N|O|1998-04-22|1998-03-04|1998-05-07|DELIVER IN PERSON|SHIP|le packages us| +40170|263179|13180|1|40|45686.40|0.04|0.05|N|O|1998-10-28|1998-08-06|1998-11-11|TAKE BACK RETURN|SHIP|the slyly silent deposits nag fluff| +40171|528793|28794|1|36|65583.72|0.02|0.03|N|O|1996-01-17|1996-01-08|1996-01-31|COLLECT COD|AIR|ly regular packages| +40171|422182|22183|2|30|33124.80|0.00|0.04|N|O|1995-11-21|1996-01-29|1995-12-12|NONE|MAIL|le slyly slyly express instructio| +40171|597440|34974|3|2|3074.84|0.00|0.06|N|O|1995-11-04|1995-12-15|1995-11-21|DELIVER IN PERSON|FOB|re blithel| +40171|173203|35707|4|2|2552.40|0.08|0.00|N|O|1996-02-11|1996-01-07|1996-03-05|COLLECT COD|RAIL|, special frets integrate about th| +40171|21952|34453|5|43|80579.85|0.04|0.01|N|O|1995-11-04|1996-01-04|1995-11-21|DELIVER IN PERSON|SHIP|es sleep carefully. carefully iron| +40172|435343|47852|1|1|1278.32|0.06|0.04|R|F|1992-07-13|1992-05-13|1992-08-05|COLLECT COD|REG AIR|l dolphins. | +40172|806308|31341|2|44|53427.44|0.04|0.02|R|F|1992-04-06|1992-06-08|1992-04-28|DELIVER IN PERSON|FOB|ges run slyly. ironic deposits agai| +40172|615368|40393|3|27|34649.91|0.10|0.03|R|F|1992-07-13|1992-05-11|1992-08-08|TAKE BACK RETURN|REG AIR|ent theodolites hag| +40172|476242|26243|4|43|52383.46|0.02|0.07|A|F|1992-05-01|1992-05-07|1992-05-20|TAKE BACK RETURN|MAIL|egular asymptotes. slyly final| +40172|192665|42666|5|20|35153.20|0.10|0.02|A|F|1992-06-19|1992-05-14|1992-07-16|NONE|MAIL| requests according to the eve| +40173|89890|39891|1|10|18798.90|0.05|0.06|N|O|1997-10-06|1997-08-16|1997-11-01|NONE|MAIL|encies. express, final d| +40173|779446|4477|2|18|27457.38|0.07|0.07|N|O|1997-08-10|1997-09-19|1997-08-19|NONE|TRUCK|e slyly unusual | +40174|202632|27641|1|27|41434.74|0.01|0.07|R|F|1993-04-11|1993-04-17|1993-04-22|DELIVER IN PERSON|RAIL| furiously unusual asymptotes. | +40174|622693|47718|2|29|46854.14|0.03|0.00|R|F|1993-07-13|1993-05-31|1993-07-16|DELIVER IN PERSON|FOB|ronic, unusual asymptotes integrat| +40175|161943|11944|1|35|70172.90|0.10|0.06|N|O|1998-09-09|1998-09-11|1998-10-02|DELIVER IN PERSON|RAIL|uctions dazzle. carefully regular theo| +40175|760636|10637|2|1|1696.60|0.05|0.07|N|O|1998-09-19|1998-10-14|1998-10-10|DELIVER IN PERSON|FOB|ular pinto beans wake | +40175|7755|7756|3|5|8313.75|0.03|0.04|N|O|1998-10-28|1998-10-09|1998-11-01|DELIVER IN PERSON|SHIP|blithely even a| +40200|197832|35342|1|29|55965.07|0.07|0.02|R|F|1994-05-02|1994-05-10|1994-05-21|DELIVER IN PERSON|MAIL|ly carefully ironic i| +40200|957432|44990|2|11|16383.29|0.04|0.06|A|F|1994-06-04|1994-06-08|1994-06-29|TAKE BACK RETURN|TRUCK|uctions. bold, unusual depos| +40200|558356|20868|3|19|26872.27|0.07|0.01|A|F|1994-03-13|1994-06-08|1994-03-22|NONE|SHIP|riously furiously brave requests. b| +40200|276385|1396|4|16|21781.92|0.07|0.06|R|F|1994-05-03|1994-05-18|1994-05-14|DELIVER IN PERSON|MAIL|grate. pending packag| +40200|197954|35464|5|42|86181.90|0.05|0.02|A|F|1994-06-25|1994-04-17|1994-06-29|NONE|SHIP|y regular packages wake fur| +40200|12418|37419|6|11|14634.51|0.10|0.08|A|F|1994-03-24|1994-04-12|1994-04-23|DELIVER IN PERSON|TRUCK|pendencies. blithely re| +40200|698464|23491|7|21|30711.03|0.03|0.04|A|F|1994-03-21|1994-05-07|1994-04-11|NONE|RAIL| platelets. slyly final foxes cajole furi| +40201|77045|39547|1|36|36793.44|0.07|0.03|R|F|1994-04-07|1994-03-19|1994-04-15|TAKE BACK RETURN|SHIP|nic ideas. bold packages unwind sauternes. | +40201|880394|30395|2|24|32984.40|0.02|0.02|R|F|1994-04-04|1994-02-05|1994-04-12|COLLECT COD|TRUCK|tly slyly unusual depo| +40202|433010|45519|1|28|26403.72|0.05|0.03|N|O|1997-05-19|1997-04-17|1997-06-08|COLLECT COD|RAIL|otes mold alon| +40202|583504|21038|2|41|65086.68|0.01|0.05|N|O|1997-06-01|1997-05-25|1997-06-27|NONE|REG AIR|ove the special packages. unusual foxe| +40203|256288|31299|1|24|29862.48|0.05|0.03|R|F|1994-03-14|1994-02-06|1994-03-17|DELIVER IN PERSON|REG AIR|ronically regular pinto | +40203|429365|4382|2|6|7766.04|0.08|0.01|A|F|1994-03-15|1994-01-15|1994-04-06|NONE|TRUCK|sts. ironic foxes alongside of the sl| +40203|326191|13710|3|41|49904.38|0.04|0.08|A|F|1994-03-17|1994-02-12|1994-04-10|COLLECT COD|MAIL|hely ironic depo| +40204|852926|40478|1|17|31940.96|0.02|0.07|A|F|1993-10-24|1993-12-27|1993-10-28|COLLECT COD|REG AIR|r excuses. express packages nag furiou| +40204|116348|16349|2|24|32744.16|0.10|0.05|R|F|1994-01-06|1993-12-11|1994-01-27|TAKE BACK RETURN|MAIL|lly ironic packages. theodolites wake qui| +40204|456983|19493|3|18|34919.28|0.03|0.07|A|F|1993-10-28|1993-11-20|1993-10-29|COLLECT COD|SHIP|ix fluffily about the spec| +40205|267658|5174|1|16|26010.24|0.09|0.00|A|F|1993-06-08|1993-07-14|1993-06-24|NONE|REG AIR|nic accounts? | +40205|526371|38882|2|41|57291.35|0.00|0.05|R|F|1993-06-26|1993-07-25|1993-07-26|COLLECT COD|REG AIR|ar ideas. quickly regular Tiresias h| +40205|706928|44471|3|29|56111.81|0.01|0.00|R|F|1993-06-28|1993-06-23|1993-07-07|DELIVER IN PERSON|SHIP|sual requests are furiou| +40205|326041|26042|4|10|10670.30|0.01|0.00|A|F|1993-06-15|1993-07-12|1993-07-06|DELIVER IN PERSON|SHIP|blithely regular accounts alo| +40205|760258|47804|5|44|58001.68|0.06|0.04|R|F|1993-09-02|1993-06-28|1993-10-01|TAKE BACK RETURN|RAIL|heodolites are fluffi| +40205|643594|31131|6|14|21525.84|0.02|0.05|A|F|1993-07-10|1993-07-27|1993-08-02|COLLECT COD|MAIL| final theodolites sleep. iron| +40206|540158|40159|1|45|53915.85|0.03|0.00|R|F|1992-05-22|1992-05-28|1992-05-31|DELIVER IN PERSON|REG AIR| sleep furiously among t| +40206|428652|28653|2|11|17386.93|0.08|0.03|R|F|1992-05-18|1992-04-21|1992-05-26|COLLECT COD|FOB|ironic courts. deposits us| +40206|349044|24057|3|24|26232.72|0.01|0.04|A|F|1992-06-29|1992-05-11|1992-06-30|NONE|SHIP|ons. carefully even packages play f| +40206|375245|37753|4|33|43567.59|0.05|0.02|A|F|1992-03-27|1992-04-22|1992-04-20|NONE|MAIL|nooze slyl| +40207|910455|22974|1|32|46893.12|0.07|0.02|A|F|1992-09-21|1992-09-03|1992-09-30|COLLECT COD|AIR|lphins. blithely i| +40232|802513|40062|1|45|63696.15|0.06|0.04|R|F|1994-06-11|1994-09-02|1994-07-10|COLLECT COD|AIR|all cajole bold d| +40232|820448|7997|2|19|25999.60|0.02|0.01|R|F|1994-06-26|1994-07-21|1994-06-28|NONE|REG AIR|around the regular, ironic packages cajo| +40232|266044|16045|3|24|24240.72|0.02|0.01|R|F|1994-07-22|1994-07-28|1994-08-21|TAKE BACK RETURN|REG AIR|even warhorses wake. blithel| +40233|987234|49754|1|50|66059.50|0.08|0.00|N|O|1995-11-20|1995-08-26|1995-12-02|DELIVER IN PERSON|RAIL|sits wake quickly a| +40233|427753|40262|2|3|5042.19|0.05|0.05|N|O|1995-10-18|1995-08-30|1995-11-15|NONE|RAIL| pending theodolites. blithely | +40233|234501|47006|3|19|27274.31|0.04|0.06|N|O|1995-09-24|1995-09-28|1995-09-26|COLLECT COD|FOB|nically. slyly unusual waters | +40233|258036|8037|4|45|44730.90|0.06|0.07|N|O|1995-09-15|1995-10-03|1995-09-21|NONE|RAIL|e slyly regular platelets. final, express | +40233|800711|25744|5|49|78971.83|0.04|0.02|N|O|1995-10-24|1995-10-14|1995-11-21|COLLECT COD|TRUCK|encies nag across the quickly regular d| +40233|545180|7691|6|15|18377.40|0.10|0.05|N|O|1995-09-19|1995-10-10|1995-10-01|COLLECT COD|FOB|ckages. blithely bold re| +40234|704165|4166|1|44|51441.72|0.03|0.06|N|O|1998-08-17|1998-08-10|1998-08-20|TAKE BACK RETURN|AIR|ests haggle furiousl| +40234|896262|21297|2|5|6291.10|0.04|0.07|N|O|1998-08-27|1998-08-10|1998-09-20|NONE|SHIP|arefully regular hockey players. eve| +40234|462854|382|3|5|9084.15|0.00|0.07|N|O|1998-09-14|1998-09-10|1998-10-11|NONE|TRUCK|ithely about the fluffily special plate| +40234|181779|44283|4|45|83734.65|0.04|0.08|N|O|1998-07-28|1998-08-12|1998-08-18|DELIVER IN PERSON|SHIP|osits unwin| +40234|146342|21347|5|49|68028.66|0.00|0.03|N|O|1998-08-09|1998-08-13|1998-08-30|TAKE BACK RETURN|FOB|es. blithely regular request| +40234|559555|47089|6|40|64581.20|0.08|0.03|N|O|1998-08-08|1998-08-07|1998-08-29|NONE|MAIL|rbits. final pinto beans along the ideas| +40234|434945|9962|7|2|3759.84|0.10|0.01|N|O|1998-08-03|1998-09-17|1998-09-02|NONE|RAIL|regular de| +40235|104244|29249|1|27|33702.48|0.00|0.00|A|F|1992-05-01|1992-06-26|1992-05-11|NONE|AIR|l deposits.| +40236|52344|39848|1|33|42779.22|0.03|0.07|A|F|1992-05-02|1992-06-12|1992-05-26|TAKE BACK RETURN|AIR|eposits according to| +40236|736843|36844|2|28|52634.68|0.05|0.08|R|F|1992-04-20|1992-05-20|1992-05-19|NONE|REG AIR|ts above the excu| +40236|108891|33896|3|32|60796.48|0.10|0.08|A|F|1992-07-20|1992-06-26|1992-07-22|COLLECT COD|SHIP|efully even| +40236|129122|29123|4|24|27626.88|0.00|0.06|A|F|1992-07-07|1992-05-18|1992-07-31|NONE|SHIP| furiously quick packages. car| +40236|137689|12694|5|49|84607.32|0.01|0.02|R|F|1992-06-18|1992-06-17|1992-07-04|TAKE BACK RETURN|SHIP|iously unusual packages.| +40236|122722|10229|6|48|83746.56|0.08|0.02|R|F|1992-06-02|1992-06-04|1992-06-07|TAKE BACK RETURN|SHIP| to the ideas sleep blithely a| +40236|583214|8237|7|28|36321.32|0.05|0.01|R|F|1992-05-28|1992-06-04|1992-06-13|COLLECT COD|RAIL|eans integrate fluffil| +40237|72293|47296|1|7|8857.03|0.04|0.03|A|F|1993-12-05|1993-12-23|1993-12-28|TAKE BACK RETURN|FOB|requests sleep| +40237|16944|4445|2|20|37218.80|0.06|0.03|A|F|1994-01-20|1993-12-10|1994-01-24|NONE|TRUCK|ously final warthogs. slyl| +40237|776925|39441|3|36|72068.04|0.08|0.08|A|F|1994-02-12|1993-11-24|1994-02-20|COLLECT COD|RAIL|according to the fluff| +40237|766498|4044|4|24|37547.04|0.08|0.07|R|F|1993-12-11|1993-12-05|1993-12-20|TAKE BACK RETURN|SHIP| cajole alongside of the blit| +40237|517913|30424|5|31|59857.59|0.02|0.00|R|F|1994-01-24|1993-12-18|1994-02-14|COLLECT COD|REG AIR|luffily fluffy deposits. final, stealthy d| +40238|69043|44046|1|17|17204.68|0.04|0.00|N|O|1996-03-04|1996-04-22|1996-03-15|COLLECT COD|FOB|l waters sleep slowly about the regula| +40239|404189|41714|1|30|32794.80|0.10|0.04|A|F|1994-06-02|1994-06-12|1994-06-21|TAKE BACK RETURN|TRUCK|nding deposits. regular theodolites | +40239|199947|12451|2|6|12281.64|0.04|0.07|A|F|1994-04-15|1994-06-12|1994-04-21|NONE|SHIP|n. final acco| +40239|495120|32648|3|18|20071.80|0.04|0.08|A|F|1994-05-12|1994-06-19|1994-06-03|DELIVER IN PERSON|TRUCK|final theodolites. care| +40239|479858|42368|4|39|71675.37|0.06|0.01|R|F|1994-06-10|1994-07-09|1994-07-07|NONE|RAIL|r requests integrate fluffily un| +40239|966012|41051|5|41|44196.77|0.07|0.04|A|F|1994-07-15|1994-06-27|1994-08-10|NONE|FOB| hang carefully slyly pen| +40264|470253|7781|1|23|28134.29|0.06|0.01|A|F|1993-12-31|1994-01-27|1994-01-15|COLLECT COD|AIR|ully final | +40265|685262|35263|1|34|42405.82|0.10|0.06|N|O|1996-07-24|1996-07-22|1996-08-21|NONE|RAIL|n, unusual | +40265|193325|43326|2|28|39712.96|0.10|0.08|N|O|1996-07-12|1996-09-06|1996-07-17|NONE|SHIP|hogs mold quickly accordi| +40265|197834|22841|3|15|28977.45|0.06|0.05|N|O|1996-10-09|1996-08-29|1996-10-15|DELIVER IN PERSON|SHIP|requests. c| +40265|981467|43987|4|14|21677.88|0.07|0.03|N|O|1996-08-14|1996-07-15|1996-09-03|NONE|REG AIR|ic accounts. quickly enticing accoun| +40266|140604|15609|1|46|75651.60|0.01|0.07|N|O|1998-04-06|1998-05-20|1998-04-28|DELIVER IN PERSON|AIR|tructions sleep a| +40266|122125|22126|2|13|14912.56|0.10|0.07|N|O|1998-06-03|1998-05-24|1998-06-10|COLLECT COD|AIR|old, special pinto beans. ironi| +40267|874510|37028|1|8|11875.76|0.09|0.05|N|O|1997-01-05|1997-01-23|1997-01-20|TAKE BACK RETURN|AIR|equests wake around the carefully fin| +40267|881931|19483|2|24|45909.36|0.04|0.00|N|O|1997-03-15|1997-02-26|1997-04-01|TAKE BACK RETURN|RAIL|ctions. even,| +40267|603961|16474|3|32|59677.76|0.09|0.00|N|O|1996-12-25|1997-03-02|1997-01-16|NONE|RAIL| pinto beans| +40267|764185|39216|4|15|18737.25|0.00|0.06|N|O|1997-02-24|1997-02-12|1997-03-07|NONE|AIR|ns boost fluffily pending, final dolphins: | +40267|651772|14286|5|35|60330.90|0.10|0.08|N|O|1997-04-12|1997-02-18|1997-05-02|DELIVER IN PERSON|TRUCK|across the final deposit| +40267|319971|32478|6|18|35837.28|0.08|0.00|N|O|1997-02-28|1997-02-12|1997-03-04|DELIVER IN PERSON|FOB|dencies. regular e| +40268|581404|31405|1|47|69812.86|0.01|0.03|R|F|1993-11-27|1993-12-08|1993-11-30|TAKE BACK RETURN|SHIP|nto beans haggle blithely| +40268|654154|29181|2|40|44324.80|0.00|0.04|R|F|1994-01-24|1993-12-22|1994-02-17|COLLECT COD|TRUCK| platelets. s| +40268|355716|43238|3|11|19488.70|0.08|0.08|A|F|1994-01-17|1993-12-17|1994-01-23|COLLECT COD|RAIL|nal theodol| +40268|508364|20875|4|45|61755.30|0.10|0.00|A|F|1993-11-30|1993-12-29|1993-12-25|COLLECT COD|RAIL|ts alongside of the slyly final deposits | +40268|73461|10965|5|24|34427.04|0.04|0.03|A|F|1994-01-27|1993-12-18|1994-02-11|DELIVER IN PERSON|TRUCK|lent packa| +40268|652107|39647|6|44|46599.08|0.00|0.04|A|F|1993-11-09|1993-11-27|1993-12-05|TAKE BACK RETURN|TRUCK|y regular dolphin| +40268|962094|24614|7|4|4624.20|0.01|0.04|R|F|1993-10-05|1993-11-21|1993-10-15|DELIVER IN PERSON|AIR|nal theodolit| +40269|912271|24790|1|50|64161.50|0.07|0.06|R|F|1994-11-05|1994-12-16|1994-11-14|DELIVER IN PERSON|SHIP|deposits poach against the sl| +40269|525439|25440|2|36|52718.76|0.08|0.08|A|F|1995-01-01|1994-12-27|1995-01-30|NONE|TRUCK|ependencies are blithely from the asympt| +40270|892619|5137|1|25|40289.25|0.07|0.01|A|F|1992-05-05|1992-04-15|1992-05-20|DELIVER IN PERSON|AIR|usily unusual packages. ironic, regular | +40270|237269|49774|2|13|15681.25|0.10|0.07|R|F|1992-04-17|1992-06-02|1992-04-25|COLLECT COD|MAIL|ffily final requests| +40270|775126|157|3|40|48043.60|0.05|0.06|A|F|1992-07-13|1992-05-16|1992-07-14|NONE|FOB|ely unusual pinto b| +40271|598652|11164|1|44|77027.72|0.01|0.00|N|O|1995-08-02|1995-07-11|1995-08-15|DELIVER IN PERSON|AIR|s can are fluffily silent accou| +40296|565624|28136|1|39|65894.40|0.03|0.00|N|O|1996-04-19|1996-03-25|1996-05-17|DELIVER IN PERSON|RAIL|counts boost furious| +40297|666079|16080|1|40|41801.60|0.08|0.02|A|F|1995-03-29|1995-05-10|1995-03-30|COLLECT COD|FOB|uthless depos| +40297|776174|1205|2|16|20002.24|0.07|0.07|N|O|1995-07-03|1995-06-18|1995-07-12|COLLECT COD|REG AIR|lyly regular ideas i| +40298|852387|14905|1|21|28126.14|0.04|0.04|A|F|1995-01-20|1995-01-31|1995-02-17|TAKE BACK RETURN|FOB|ns breach regular instructions. blit| +40298|62327|12328|2|10|12893.20|0.00|0.04|A|F|1995-03-12|1995-01-14|1995-03-13|COLLECT COD|SHIP|intain carefully. close accounts | +40298|519854|32365|3|28|52467.24|0.08|0.02|A|F|1995-01-26|1995-02-04|1995-02-16|TAKE BACK RETURN|RAIL|cial theodolites. ruthlessly regula| +40298|177915|15425|4|27|53808.57|0.08|0.07|R|F|1994-12-16|1995-01-19|1995-01-11|NONE|TRUCK|integrate closely aft| +40298|212427|49940|5|24|32145.84|0.04|0.03|R|F|1995-02-06|1995-02-09|1995-03-05|COLLECT COD|AIR| ironic packages haggle. furiously e| +40298|260435|35446|6|3|4186.26|0.04|0.04|R|F|1995-03-04|1995-01-23|1995-03-11|TAKE BACK RETURN|RAIL|xes affix bl| +40298|130493|5498|7|17|25899.33|0.02|0.08|R|F|1995-03-26|1995-02-22|1995-04-05|DELIVER IN PERSON|RAIL| regular accounts u| +40299|185900|10907|1|3|5957.70|0.04|0.07|N|O|1997-06-05|1997-06-12|1997-06-06|DELIVER IN PERSON|MAIL|e carefully| +40299|411150|48675|2|25|26528.25|0.02|0.04|N|O|1997-08-09|1997-05-22|1997-08-22|TAKE BACK RETURN|TRUCK|sits haggle quickly.| +40299|187575|79|3|6|9975.42|0.00|0.00|N|O|1997-05-29|1997-07-13|1997-06-14|DELIVER IN PERSON|REG AIR|egular packages about the pending, ex| +40299|567750|17751|4|18|32719.14|0.00|0.01|N|O|1997-07-04|1997-07-05|1997-07-31|TAKE BACK RETURN|REG AIR| requests sleep slyly escapades| +40299|163391|25895|5|27|39268.53|0.06|0.05|N|O|1997-07-08|1997-06-24|1997-07-15|NONE|REG AIR|riously sile| +40299|99987|24990|6|23|45700.54|0.01|0.01|N|O|1997-07-16|1997-05-31|1997-07-31|DELIVER IN PERSON|AIR|oxes use carefully even theodoli| +40299|479706|17234|7|37|62370.16|0.10|0.04|N|O|1997-08-12|1997-06-05|1997-09-06|COLLECT COD|TRUCK|among the furiously pending pin| +40300|413801|1326|1|44|75450.32|0.07|0.04|N|O|1995-09-21|1995-10-20|1995-10-19|COLLECT COD|SHIP|ly express theodolite| +40300|748073|48074|2|4|4484.16|0.09|0.01|N|O|1995-10-24|1995-09-13|1995-11-17|DELIVER IN PERSON|REG AIR|hely ironic requests would wake. ironic a| +40300|853682|3683|3|2|3271.28|0.02|0.07|N|O|1995-09-30|1995-10-18|1995-10-29|TAKE BACK RETURN|RAIL|ges nag quietly slyly pending accounts. reg| +40300|827632|15181|4|44|68621.96|0.04|0.06|N|O|1995-10-04|1995-10-06|1995-10-10|COLLECT COD|TRUCK|e. blithely bold accounts haggle car| +40300|2511|2512|5|25|35337.75|0.07|0.03|N|O|1995-10-08|1995-09-20|1995-11-07|TAKE BACK RETURN|REG AIR|e against the reg| +40300|202257|27266|6|16|18547.84|0.04|0.06|N|O|1995-11-22|1995-09-15|1995-12-18|NONE|FOB|eodolites kindle furiously! slyly re| +40300|319610|19611|7|12|19555.20|0.00|0.05|N|O|1995-11-20|1995-10-28|1995-12-11|DELIVER IN PERSON|MAIL|odolites. q| +40301|668558|18559|1|25|38163.00|0.08|0.07|N|O|1997-05-30|1997-04-29|1997-06-04|TAKE BACK RETURN|RAIL|against the b| +40301|444773|19790|2|21|36072.75|0.00|0.03|N|O|1997-04-04|1997-05-21|1997-04-10|NONE|REG AIR|sts are final theodolites. ironic, ironic p| +40301|298574|36090|3|24|37741.44|0.05|0.04|N|O|1997-07-08|1997-05-21|1997-07-18|NONE|RAIL|s detect b| +40301|123784|48789|4|24|43386.72|0.03|0.05|N|O|1997-06-01|1997-05-29|1997-06-04|DELIVER IN PERSON|REG AIR| instructions across the final ideas | +40302|457869|45397|1|28|51151.52|0.05|0.07|A|F|1992-10-05|1992-08-25|1992-10-23|COLLECT COD|TRUCK|eodolites. accounts up the e| +40302|388482|38483|2|33|51825.51|0.02|0.05|R|F|1992-09-22|1992-08-16|1992-10-01|COLLECT COD|SHIP|old platelets. asymptotes cajole. | +40302|213764|38773|3|37|62076.75|0.03|0.03|A|F|1992-06-26|1992-07-29|1992-07-12|COLLECT COD|TRUCK| unusual packa| +40302|731288|6317|4|41|54089.25|0.08|0.02|R|F|1992-07-05|1992-08-04|1992-07-18|NONE|REG AIR|ely pending pinto beans solve about th| +40302|744751|32294|5|23|41301.56|0.07|0.04|R|F|1992-08-16|1992-08-30|1992-08-27|TAKE BACK RETURN|RAIL|the pending| +40303|562150|12151|1|21|25454.73|0.03|0.06|R|F|1994-05-06|1994-02-15|1994-05-25|NONE|MAIL|p carefully. carefully express packages | +40303|52678|27681|2|10|16306.70|0.06|0.02|A|F|1994-02-01|1994-03-03|1994-02-24|NONE|TRUCK|ermanently. furiously bold| +40303|348217|23230|3|46|58199.20|0.00|0.04|A|F|1994-01-24|1994-02-14|1994-02-22|DELIVER IN PERSON|SHIP|usly regular fox| +40303|466848|29358|4|49|88926.18|0.04|0.01|A|F|1994-02-25|1994-02-26|1994-03-05|NONE|AIR|ests! ironic ideas hag| +40303|299845|12351|5|47|86707.01|0.03|0.04|A|F|1994-04-16|1994-04-05|1994-05-06|DELIVER IN PERSON|MAIL|gifts affix bl| +40328|597505|22528|1|21|33652.08|0.05|0.01|R|F|1994-12-07|1994-12-29|1995-01-05|COLLECT COD|TRUCK|deposits are furiously realms. regul| +40328|262360|37371|2|32|42315.20|0.09|0.08|R|F|1994-10-26|1995-01-02|1994-10-28|TAKE BACK RETURN|REG AIR|tructions hagg| +40328|478239|15767|3|19|23126.99|0.02|0.00|R|F|1995-02-11|1994-12-20|1995-03-06|DELIVER IN PERSON|TRUCK|refully above the| +40328|751871|39417|4|8|15382.72|0.04|0.01|A|F|1994-12-31|1994-12-17|1995-01-14|DELIVER IN PERSON|MAIL| quickly final | +40328|683108|20648|5|16|17457.12|0.03|0.02|A|F|1994-12-11|1995-01-06|1994-12-22|COLLECT COD|MAIL|packages wake q| +40328|987938|458|6|19|38491.91|0.09|0.04|R|F|1995-01-22|1994-11-21|1995-02-06|DELIVER IN PERSON|AIR|xpress instructions wake furio| +40328|261474|48990|7|26|37321.96|0.08|0.05|R|F|1994-12-10|1994-12-22|1994-12-28|TAKE BACK RETURN|REG AIR|sual pinto beans use quickly am| +40329|579383|16917|1|39|57032.04|0.00|0.02|N|O|1995-07-08|1995-08-07|1995-07-09|COLLECT COD|REG AIR|thely regular pinto beans. r| +40329|684565|34566|2|20|30990.60|0.10|0.05|N|O|1995-07-12|1995-08-08|1995-08-01|NONE|MAIL|ithely. quickly regular sheaves play c| +40329|476984|39494|3|33|64711.68|0.05|0.01|N|O|1995-09-30|1995-08-08|1995-10-04|COLLECT COD|AIR|ly. blithely regular | +40329|656699|31726|4|49|81127.34|0.09|0.04|N|O|1995-08-03|1995-08-24|1995-08-05|DELIVER IN PERSON|AIR|ideas use blithely special hockey playe| +40329|123560|23561|5|32|50673.92|0.09|0.08|N|O|1995-07-01|1995-07-31|1995-07-13|TAKE BACK RETURN|REG AIR|yly ironic deposits believe requests| +40330|365964|28472|1|46|93377.70|0.04|0.03|R|F|1993-01-08|1993-02-06|1993-01-21|DELIVER IN PERSON|RAIL| pending dep| +40330|750614|25645|2|8|13316.64|0.05|0.05|R|F|1993-02-11|1993-01-29|1993-03-10|NONE|AIR|ideas doubt. spec| +40330|559573|22085|3|1|1632.55|0.02|0.08|R|F|1993-03-23|1993-01-19|1993-04-05|NONE|MAIL|p quickly. fluffily regular requests th| +40330|735446|35447|4|44|65182.04|0.09|0.07|A|F|1992-11-28|1993-02-18|1992-12-08|TAKE BACK RETURN|MAIL|final pack| +40330|629157|29158|5|21|22808.52|0.08|0.02|A|F|1993-02-22|1993-02-19|1993-03-01|COLLECT COD|TRUCK|ggle about the furiously regular theo| +40330|241669|29182|6|31|49930.15|0.08|0.07|A|F|1993-01-02|1993-01-21|1993-01-30|TAKE BACK RETURN|TRUCK|stealthily final dependencies cajole qu| +40331|34941|9942|1|14|26263.16|0.00|0.01|R|F|1994-04-07|1994-06-18|1994-04-08|TAKE BACK RETURN|REG AIR|s sleep around the p| +40331|249599|12104|2|49|75880.42|0.06|0.07|A|F|1994-05-06|1994-05-19|1994-05-09|COLLECT COD|SHIP|shall run permanently even, final pinto| +40331|996574|46575|3|37|61809.61|0.04|0.02|R|F|1994-07-13|1994-05-09|1994-08-05|NONE|TRUCK|ly blithe pinto beans. final, bold foxe| +40331|404732|17241|4|47|76925.37|0.03|0.01|R|F|1994-05-09|1994-06-14|1994-06-04|TAKE BACK RETURN|FOB| around the bravely pending ideas. furiousl| +40331|317142|17143|5|13|15068.69|0.08|0.04|R|F|1994-05-10|1994-06-15|1994-05-24|NONE|FOB|nic pinto beans haggle according to| +40331|205275|30284|6|35|41309.10|0.03|0.08|R|F|1994-04-04|1994-06-22|1994-04-11|COLLECT COD|AIR|iously above the slyly silent f| +40331|54659|17161|7|16|25818.40|0.00|0.01|A|F|1994-06-11|1994-05-10|1994-06-26|COLLECT COD|REG AIR|ly blithely s| +40332|640143|2656|1|27|29243.97|0.06|0.05|R|F|1995-05-03|1995-03-17|1995-05-05|NONE|SHIP|iously regular packages. blithely dogged| +40332|883118|20670|2|11|12111.77|0.10|0.00|A|F|1995-05-08|1995-04-04|1995-06-01|DELIVER IN PERSON|REG AIR|oxes boost blithely ent| +40332|553478|15990|3|39|59726.55|0.01|0.08|R|F|1995-05-07|1995-04-19|1995-06-03|DELIVER IN PERSON|MAIL|ages. fluff| +40332|296153|21164|4|14|16087.96|0.01|0.03|A|F|1995-02-19|1995-04-12|1995-03-19|DELIVER IN PERSON|TRUCK|iously silen| +40332|440916|40917|5|5|9284.45|0.06|0.01|R|F|1995-03-14|1995-03-09|1995-03-28|TAKE BACK RETURN|TRUCK|und the regular, regular deposits. regula| +40332|468695|6223|6|2|3327.34|0.03|0.05|A|F|1995-02-05|1995-03-23|1995-02-21|DELIVER IN PERSON|MAIL|uffily ironic asym| +40332|356483|18991|7|6|9236.82|0.05|0.01|R|F|1995-02-06|1995-04-16|1995-02-28|NONE|AIR|pendencies poach near the enticingly regu| +40333|393824|43825|1|26|49863.06|0.02|0.04|A|F|1993-09-16|1993-08-08|1993-10-05|TAKE BACK RETURN|MAIL| packages boos| +40333|992465|4985|2|24|37378.08|0.00|0.01|A|F|1993-08-31|1993-06-28|1993-09-20|TAKE BACK RETURN|FOB|d, pending packages wake slowly abov| +40333|344255|31774|3|27|35079.48|0.05|0.06|R|F|1993-08-22|1993-07-15|1993-08-26|COLLECT COD|SHIP|thely. final, brave deposits | +40334|382061|32062|1|5|5715.25|0.07|0.07|N|O|1998-08-29|1998-06-29|1998-09-13|NONE|FOB| regular instructions boost. t| +40334|284611|22127|2|5|7978.00|0.00|0.03|N|O|1998-06-16|1998-07-10|1998-06-23|NONE|SHIP| deposits. furiously final pin| +40335|625003|12540|1|38|35262.86|0.01|0.02|N|O|1995-07-03|1995-05-29|1995-07-08|TAKE BACK RETURN|TRUCK|ts. ironic hockey players cajole si| +40335|413480|13481|2|30|41803.80|0.10|0.02|A|F|1995-05-02|1995-05-20|1995-05-22|DELIVER IN PERSON|MAIL|rs. carefully ironic foxes sle| +40335|346978|46979|3|23|46574.08|0.03|0.06|A|F|1995-05-21|1995-07-08|1995-06-08|TAKE BACK RETURN|RAIL|le. idly ironic accounts after the| +40335|653018|15532|4|45|43694.10|0.07|0.02|A|F|1995-04-23|1995-05-20|1995-04-27|DELIVER IN PERSON|TRUCK|equests cajole quickly about the | +40335|260705|35716|5|39|64961.91|0.01|0.01|A|F|1995-05-28|1995-05-27|1995-06-06|COLLECT COD|MAIL|carefully even deposits. final requests lo| +40335|666719|29233|6|22|37084.96|0.05|0.02|A|F|1995-04-26|1995-05-31|1995-05-18|NONE|TRUCK|y. special pinto | +40335|540210|40211|7|46|57508.74|0.05|0.08|N|O|1995-08-11|1995-05-16|1995-09-07|COLLECT COD|REG AIR|long the flu| +40360|300737|13244|1|1|1737.72|0.04|0.05|A|F|1992-08-19|1992-08-04|1992-08-22|COLLECT COD|FOB|ages wake furiously final, blithe pi| +40361|228103|28104|1|37|38150.33|0.10|0.07|R|F|1994-01-18|1994-02-16|1994-02-09|DELIVER IN PERSON|AIR|out the regular dinos. reg| +40361|725812|38327|2|8|14702.24|0.00|0.02|R|F|1994-04-01|1994-02-18|1994-04-20|DELIVER IN PERSON|MAIL|ly express pint| +40361|712214|49757|3|37|45368.66|0.07|0.07|A|F|1994-02-16|1994-03-15|1994-02-18|NONE|TRUCK|usly against the quietly final ideas. | +40362|996980|9500|1|31|64385.14|0.00|0.04|A|F|1994-09-23|1994-09-25|1994-10-02|TAKE BACK RETURN|RAIL|nusual, final exc| +40362|228887|3896|2|15|27238.05|0.02|0.03|A|F|1994-11-20|1994-10-15|1994-11-30|TAKE BACK RETURN|REG AIR| boost pending dugouts. pending, regu| +40362|902287|39842|3|37|47701.88|0.09|0.07|R|F|1994-10-05|1994-10-08|1994-11-03|NONE|TRUCK|final pinto beans. ironic reque| +40362|732331|32332|4|31|42262.30|0.10|0.06|R|F|1994-12-02|1994-11-11|1994-12-18|COLLECT COD|REG AIR|gular theodolites wake | +40362|285289|10300|5|8|10194.16|0.07|0.06|A|F|1994-11-27|1994-10-11|1994-12-10|DELIVER IN PERSON|RAIL|. fluffily regular pinto beans ar| +40362|836202|36203|6|10|11381.60|0.07|0.08|R|F|1994-10-13|1994-11-01|1994-10-25|TAKE BACK RETURN|TRUCK|ptotes at the silently blithe multipliers s| +40363|824319|11868|1|36|44757.72|0.03|0.07|N|O|1997-07-27|1997-05-08|1997-08-22|COLLECT COD|FOB|osits? regular sentiments are across the sa| +40364|288596|38597|1|47|74475.26|0.09|0.05|N|O|1997-01-31|1997-01-03|1997-02-25|COLLECT COD|REG AIR| regular dinos nag furiously reg| +40364|429603|4620|2|45|68966.10|0.01|0.08|N|O|1997-03-15|1997-01-24|1997-04-12|TAKE BACK RETURN|SHIP| requests affix| +40364|321599|34106|3|3|4861.74|0.06|0.02|N|O|1997-03-16|1997-01-03|1997-03-25|COLLECT COD|FOB|inal, ironic theodolites! slyly final w| +40365|831301|31302|1|18|22180.68|0.06|0.00|R|F|1993-04-26|1993-05-28|1993-05-23|TAKE BACK RETURN|AIR|ate quickly. ste| +40365|675193|25194|2|34|39717.44|0.07|0.02|R|F|1993-07-13|1993-06-01|1993-08-02|NONE|FOB|eposits across the| +40365|968133|5691|3|47|56451.23|0.08|0.05|A|F|1993-07-12|1993-07-10|1993-08-02|NONE|TRUCK|pinto beans. slyly final deposits integ| +40365|397513|10021|4|39|62809.50|0.00|0.06|A|F|1993-07-30|1993-06-20|1993-08-13|COLLECT COD|SHIP| besides the final dolphin| +40366|62641|25143|1|2|3207.28|0.09|0.01|A|F|1994-04-20|1994-06-17|1994-05-10|TAKE BACK RETURN|TRUCK|ep: ironic, iron| +40367|903465|41020|1|30|44052.60|0.10|0.02|N|O|1996-07-28|1996-10-09|1996-08-27|NONE|SHIP|nal accounts wake car| +40367|523529|11060|2|13|20182.50|0.04|0.05|N|O|1996-10-22|1996-08-30|1996-11-03|TAKE BACK RETURN|AIR|riously unusual sauter| +40367|939340|14377|3|2|2758.60|0.02|0.07|N|O|1996-11-20|1996-10-08|1996-11-23|TAKE BACK RETURN|SHIP|the slyly sly deposits. qu| +40367|485283|22811|4|43|54535.18|0.07|0.05|N|O|1996-08-11|1996-10-06|1996-09-09|TAKE BACK RETURN|FOB|regular pinto b| +40367|147087|47088|5|26|29486.08|0.09|0.06|N|O|1996-11-23|1996-10-22|1996-12-19|TAKE BACK RETURN|SHIP|carefully pending asymptotes sleep f| +40367|90011|27515|6|33|33033.33|0.09|0.03|N|O|1996-08-15|1996-10-18|1996-08-28|NONE|MAIL|hely slyly even sheaves: furiously f| +40392|538976|38977|1|33|66493.35|0.10|0.04|R|F|1992-09-19|1992-09-01|1992-10-18|NONE|AIR|row. foxes lose car| +40393|721547|34062|1|1|1568.51|0.03|0.03|N|O|1996-05-18|1996-05-04|1996-06-14|TAKE BACK RETURN|MAIL|atelets. ironic, ironic foxes use qui| +40393|39020|39021|2|11|10549.22|0.07|0.07|N|O|1996-05-24|1996-06-19|1996-06-15|COLLECT COD|MAIL|y bold packages haggle fluffily furious| +40393|807889|45438|3|50|89842.00|0.08|0.00|N|O|1996-04-15|1996-06-11|1996-04-23|NONE|MAIL|, final packages wake quickly reque| +40394|820566|8115|1|49|72839.48|0.09|0.06|R|F|1995-01-03|1994-12-07|1995-01-31|COLLECT COD|REG AIR|unts are dur| +40394|244167|44168|2|32|35556.80|0.10|0.03|R|F|1995-01-25|1994-12-21|1995-02-18|NONE|RAIL| ironic, slow accounts | +40394|705060|5061|3|33|35145.99|0.06|0.06|A|F|1995-02-16|1994-11-27|1995-03-08|TAKE BACK RETURN|SHIP|ggle regular, unusual ac| +40394|931930|19485|4|6|11771.34|0.05|0.00|A|F|1995-01-25|1994-12-17|1995-02-17|COLLECT COD|REG AIR| packages cajole slyly ironi| +40394|942234|29789|5|44|56152.36|0.03|0.08|A|F|1994-12-11|1995-01-15|1994-12-21|COLLECT COD|FOB|ending deposits detect blithely sl| +40394|124540|24541|6|18|28161.72|0.03|0.07|A|F|1994-11-02|1994-12-02|1994-11-13|DELIVER IN PERSON|SHIP|cial foxes. express ideas cajole pinto| +40395|1546|14047|1|5|7237.70|0.08|0.00|N|O|1997-08-09|1997-06-30|1997-09-07|DELIVER IN PERSON|AIR|s platelets. regular | +40395|970555|8113|2|35|56892.85|0.10|0.03|N|O|1997-05-26|1997-07-18|1997-06-14|TAKE BACK RETURN|SHIP|uriously. furiously final theodolite| +40395|103907|28912|3|44|84079.60|0.04|0.06|N|O|1997-07-17|1997-06-11|1997-08-01|NONE|TRUCK|cies haggle blith| +40395|364853|27361|4|11|21096.24|0.08|0.06|N|O|1997-06-23|1997-06-03|1997-07-23|NONE|REG AIR|y. silent p| +40395|78767|41269|5|44|76813.44|0.00|0.02|N|O|1997-07-16|1997-06-29|1997-08-06|COLLECT COD|TRUCK|riously bold instructio| +40396|31770|44271|1|43|73176.11|0.06|0.02|A|F|1994-09-27|1994-08-12|1994-10-09|NONE|SHIP|refully about the blithely slow ac| +40396|944573|44574|2|44|71171.32|0.02|0.02|A|F|1994-10-14|1994-07-30|1994-10-22|TAKE BACK RETURN|FOB| platelets grow| +40396|435344|10361|3|8|10234.56|0.08|0.05|R|F|1994-06-28|1994-08-27|1994-07-11|TAKE BACK RETURN|SHIP|es wake above the final pinto beans. | +40397|17248|4749|1|41|47774.84|0.00|0.02|N|O|1997-10-08|1997-11-06|1997-10-12|DELIVER IN PERSON|AIR|iously bold requests| +40397|882034|19586|2|30|30479.70|0.09|0.05|N|O|1997-11-06|1997-12-05|1997-11-17|TAKE BACK RETURN|SHIP|quests are carefully. fl| +40397|339552|39553|3|39|62070.06|0.05|0.07|N|O|1997-11-08|1997-10-24|1997-11-18|COLLECT COD|REG AIR|y along the furiously bold request| +40397|847159|9676|4|30|33183.30|0.05|0.05|N|O|1997-11-10|1997-12-05|1997-12-06|DELIVER IN PERSON|REG AIR|impress carefully. ironic accou| +40397|199232|11736|5|10|13312.30|0.00|0.06|N|O|1997-10-15|1997-12-05|1997-10-28|DELIVER IN PERSON|MAIL| regular instruction| +40397|490526|3036|6|35|53077.50|0.04|0.07|N|O|1998-01-01|1997-12-10|1998-01-27|NONE|FOB| quickly according to the sl| +40397|270448|20449|7|5|7092.15|0.05|0.05|N|O|1997-10-08|1997-10-30|1997-11-02|NONE|RAIL|e quickly | +40398|408483|46008|1|41|57049.86|0.07|0.05|N|O|1997-02-24|1997-05-08|1997-03-05|COLLECT COD|RAIL|ress packages alongs| +40398|362335|24843|2|18|25151.76|0.05|0.06|N|O|1997-06-12|1997-05-03|1997-06-21|COLLECT COD|AIR|e the quickly ironic pack| +40398|753058|40604|3|20|22220.40|0.09|0.07|N|O|1997-04-13|1997-03-22|1997-05-05|COLLECT COD|RAIL|boost furiously at the express, final| +40398|637916|25453|4|32|59324.16|0.09|0.01|N|O|1997-05-19|1997-05-21|1997-05-20|TAKE BACK RETURN|MAIL| instructions haggle furiously accordi| +40399|449355|24372|1|33|43042.89|0.02|0.02|N|O|1998-03-15|1998-05-07|1998-03-27|DELIVER IN PERSON|TRUCK|xes boost quickly furio| +40399|305813|18320|2|19|34557.20|0.09|0.02|N|O|1998-04-28|1998-05-01|1998-05-25|NONE|AIR| warthogs above the quickly even platelet| +40399|797170|9686|3|27|34212.78|0.06|0.05|N|O|1998-03-10|1998-05-04|1998-03-20|COLLECT COD|SHIP|ake alongside of the special, special req| +40399|24648|24649|4|19|29880.16|0.06|0.01|N|O|1998-03-23|1998-03-19|1998-04-19|TAKE BACK RETURN|FOB|t packages according to the ev| +40399|243010|43011|5|25|23825.00|0.00|0.04|N|O|1998-05-19|1998-04-28|1998-05-24|TAKE BACK RETURN|AIR|ing accounts are carefully speci| +40399|266996|29502|6|14|27481.72|0.04|0.04|N|O|1998-04-29|1998-04-07|1998-05-11|DELIVER IN PERSON|SHIP|ironic req| +40399|394417|19432|7|27|40807.80|0.05|0.08|N|O|1998-05-05|1998-05-15|1998-05-29|TAKE BACK RETURN|RAIL|r foxes. furiously ironic | +40424|960895|35934|1|39|76278.15|0.05|0.08|N|O|1997-05-22|1997-02-26|1997-05-23|COLLECT COD|FOB|ular excuses abo| +40424|761937|11938|2|44|87951.60|0.01|0.02|N|O|1997-04-17|1997-03-13|1997-05-14|DELIVER IN PERSON|SHIP|ts use carefu| +40424|865364|2916|3|25|33233.00|0.04|0.07|N|O|1997-05-20|1997-04-25|1997-06-19|NONE|TRUCK|ending foxes:| +40424|171953|34457|4|44|89097.80|0.04|0.04|N|O|1997-05-23|1997-03-09|1997-06-15|NONE|FOB|ions are slyly al| +40424|997914|22953|5|20|40237.40|0.07|0.01|N|O|1997-02-03|1997-04-18|1997-02-09|COLLECT COD|RAIL|nts are furiously across the regular requ| +40425|916756|4311|1|44|77999.24|0.08|0.01|A|F|1993-06-17|1993-04-22|1993-07-08|NONE|TRUCK|lites haggle around the blith| +40425|914310|26829|2|27|35755.29|0.07|0.05|R|F|1993-03-21|1993-04-16|1993-04-19|COLLECT COD|TRUCK|lent theodoli| +40426|391113|28635|1|20|24082.00|0.06|0.00|N|O|1997-05-13|1997-04-29|1997-05-22|DELIVER IN PERSON|MAIL| even depos| +40426|423829|36338|2|32|56089.60|0.07|0.00|N|O|1997-07-04|1997-06-10|1997-07-07|TAKE BACK RETURN|MAIL|ic packages must have to are furiously u| +40426|281218|31219|3|30|35976.00|0.01|0.04|N|O|1997-06-09|1997-05-20|1997-06-23|TAKE BACK RETURN|FOB|boost blithely. | +40427|503427|28448|1|29|41481.60|0.03|0.08|A|F|1994-12-26|1995-02-22|1995-01-24|TAKE BACK RETURN|REG AIR|unts across the| +40427|92745|5247|2|40|69509.60|0.02|0.03|A|F|1995-01-21|1995-02-04|1995-02-12|DELIVER IN PERSON|MAIL|nt requests. blithely regular r| +40427|761922|11923|3|10|19838.90|0.08|0.07|R|F|1995-04-17|1995-01-25|1995-04-25|DELIVER IN PERSON|MAIL|re blithely; deposits kindle slyly final| +40428|274634|24635|1|40|64344.80|0.05|0.07|N|O|1996-09-29|1996-08-29|1996-10-14|DELIVER IN PERSON|MAIL|nstructions after the furi| +40429|506241|18752|1|35|43652.70|0.05|0.02|A|F|1994-09-22|1994-10-09|1994-10-07|NONE|FOB|s. quickly final pearls s| +40429|380928|5943|2|5|10044.55|0.01|0.07|R|F|1994-09-29|1994-11-09|1994-10-12|NONE|REG AIR|e the slyly final| +40429|255467|42983|3|16|22759.20|0.07|0.02|A|F|1994-10-11|1994-11-13|1994-10-13|COLLECT COD|TRUCK|. fluffily final deposits | +40429|621168|33681|4|1|1089.13|0.09|0.05|R|F|1994-10-01|1994-10-19|1994-10-16|COLLECT COD|MAIL|ily around the | +40430|419985|19986|1|11|20954.56|0.00|0.04|R|F|1994-01-20|1994-01-22|1994-02-15|COLLECT COD|RAIL|requests above the quickly regular dolp| +40430|686514|49028|2|8|12003.84|0.09|0.00|R|F|1994-01-30|1993-11-25|1994-02-17|COLLECT COD|SHIP|e requests unwind above th| +40430|236780|49285|3|5|8583.85|0.10|0.05|A|F|1993-12-26|1993-12-15|1994-01-15|DELIVER IN PERSON|REG AIR| deposits wake. platelets sleep slyly after| +40430|555677|18189|4|20|34653.00|0.04|0.05|A|F|1994-01-29|1994-01-14|1994-02-08|NONE|AIR| boost enticingly. furiously final i| +40430|260127|47643|5|22|23916.42|0.07|0.03|R|F|1994-01-23|1994-01-06|1994-02-19|COLLECT COD|SHIP|ular packages. blithely final platelets| +40431|764158|14159|1|32|39107.84|0.00|0.00|N|O|1996-07-15|1996-08-24|1996-07-16|COLLECT COD|RAIL|ly according to the slyly express req| +40431|187191|37192|2|37|47293.03|0.07|0.07|N|O|1996-06-17|1996-07-31|1996-07-10|DELIVER IN PERSON|FOB| platelets. slyly final dependenci| +40456|892901|17936|1|22|41664.92|0.02|0.00|A|F|1994-09-02|1994-08-29|1994-09-17|NONE|AIR| deposits among the| +40456|985003|22561|2|45|48958.20|0.04|0.02|A|F|1994-10-11|1994-08-31|1994-10-14|COLLECT COD|SHIP|ly unusual foxes wake quickly; carefully r| +40456|938161|13198|3|15|17986.80|0.04|0.06|A|F|1994-09-08|1994-09-03|1994-10-01|DELIVER IN PERSON|AIR| the furiously ironic accounts use furi| +40457|415320|27829|1|49|60529.70|0.01|0.00|N|O|1996-12-30|1997-02-11|1997-01-03|TAKE BACK RETURN|RAIL|the deposits wake | +40457|277181|27182|2|39|45168.63|0.09|0.05|N|O|1997-04-18|1997-02-24|1997-05-01|DELIVER IN PERSON|RAIL|eep quickl| +40457|568649|43672|3|36|61834.32|0.03|0.08|N|O|1997-04-21|1997-02-02|1997-04-30|DELIVER IN PERSON|TRUCK|jole. ironic, expres| +40457|274286|36792|4|6|7561.62|0.02|0.06|N|O|1997-03-27|1997-02-10|1997-04-26|DELIVER IN PERSON|RAIL|kages hinder carefully pending| +40457|920587|20588|5|46|73946.84|0.05|0.04|N|O|1997-01-31|1997-02-25|1997-02-20|COLLECT COD|TRUCK|nusual excuses. ironic, special pla| +40458|148750|48751|1|19|34176.25|0.10|0.02|N|O|1995-12-18|1995-11-22|1996-01-07|NONE|TRUCK| the even packages. furiously bold | +40458|24991|12492|2|8|15327.92|0.03|0.02|N|O|1995-11-10|1995-12-18|1995-11-19|DELIVER IN PERSON|SHIP|ngage special packages. special multipliers| +40458|20147|32648|3|25|26678.50|0.05|0.04|N|O|1995-12-09|1996-01-04|1995-12-30|TAKE BACK RETURN|TRUCK|ven pinto beans kindl| +40459|435222|22747|1|11|12729.20|0.00|0.02|N|O|1998-02-02|1998-04-01|1998-02-21|TAKE BACK RETURN|MAIL|. finally even accounts sleep blit| +40459|766991|16992|2|30|61738.80|0.06|0.07|N|O|1998-04-24|1998-02-10|1998-04-25|DELIVER IN PERSON|MAIL|sts are furiously. furiously ironic request| +40459|813911|38944|3|44|80294.28|0.06|0.00|N|O|1998-01-26|1998-03-16|1998-02-13|TAKE BACK RETURN|REG AIR|s around the s| +40459|397438|9946|4|2|3070.84|0.01|0.03|N|O|1998-02-01|1998-03-07|1998-02-27|COLLECT COD|AIR|onic accounts. furiously regular foxes c| +40459|727790|2819|5|32|58168.32|0.05|0.00|N|O|1998-03-03|1998-02-25|1998-03-10|COLLECT COD|TRUCK|even sheaves. quickly unusual reques| +40459|960782|48340|6|35|64495.90|0.02|0.05|N|O|1998-04-12|1998-04-05|1998-05-11|TAKE BACK RETURN|FOB| deposits | +40460|674243|36757|1|27|32864.67|0.03|0.06|N|O|1998-09-21|1998-07-27|1998-10-18|DELIVER IN PERSON|RAIL|r packages wake blithe| +40460|171|12672|2|10|10711.70|0.07|0.08|N|O|1998-08-22|1998-08-01|1998-09-20|NONE|TRUCK|al accounts | +40460|873734|11286|3|34|58061.46|0.10|0.08|N|O|1998-06-23|1998-08-27|1998-06-25|COLLECT COD|AIR| final packages. pl| +40461|747792|10307|1|10|18397.60|0.09|0.06|N|O|1998-07-14|1998-05-17|1998-08-08|TAKE BACK RETURN|AIR|even pinto be| +40461|124450|24451|2|35|51605.75|0.04|0.07|N|O|1998-05-27|1998-04-27|1998-06-23|NONE|AIR|pending platelets sleep ab| +40461|619929|7466|3|22|40675.58|0.04|0.00|N|O|1998-04-17|1998-05-02|1998-05-12|COLLECT COD|AIR| carefully ironic theodolites cajol| +40461|130074|42577|4|19|20977.33|0.04|0.04|N|O|1998-07-17|1998-06-12|1998-07-18|TAKE BACK RETURN|RAIL|al packages thrash fluffily above the| +40461|145689|8192|5|30|52040.40|0.03|0.02|N|O|1998-05-10|1998-06-14|1998-06-09|COLLECT COD|SHIP|final pinto beans boost slyly. care| +40461|593826|18849|6|13|24957.40|0.04|0.03|N|O|1998-04-24|1998-06-19|1998-04-27|DELIVER IN PERSON|FOB|requests use| +40462|841578|4095|1|44|66859.32|0.10|0.05|R|F|1992-05-14|1992-06-24|1992-05-20|COLLECT COD|SHIP|nic frays haggle carefully final pi| +40462|394977|19992|2|35|72518.60|0.06|0.06|A|F|1992-05-29|1992-06-26|1992-06-22|TAKE BACK RETURN|SHIP|y. ironic acco| +40462|363926|38941|3|48|95515.68|0.06|0.01|R|F|1992-06-30|1992-06-25|1992-07-17|DELIVER IN PERSON|AIR|uriously ironic account| +40463|533826|33827|1|11|20457.80|0.04|0.07|N|O|1995-11-20|1996-01-29|1995-12-11|TAKE BACK RETURN|MAIL|instructions sleep thin,| +40463|5018|42519|2|45|41535.45|0.04|0.07|N|O|1995-12-24|1995-12-27|1996-01-10|TAKE BACK RETURN|TRUCK|ously even dependencies| +40463|325161|25162|3|35|41515.25|0.00|0.08|N|O|1996-03-06|1995-12-23|1996-03-11|TAKE BACK RETURN|REG AIR| express requests print quickly. regula| +40463|977585|27586|4|27|44888.58|0.07|0.00|N|O|1995-12-05|1996-01-22|1995-12-10|TAKE BACK RETURN|RAIL|old platelets. slyly slow | +40463|254754|29765|5|12|20504.88|0.05|0.01|N|O|1996-01-22|1995-12-18|1996-01-27|NONE|REG AIR|endencies wake fluffily | +40463|635859|48372|6|5|8974.10|0.00|0.06|N|O|1995-11-13|1995-12-16|1995-11-23|NONE|MAIL|accounts sleep| +40463|870127|7679|7|28|30718.24|0.02|0.00|N|O|1996-01-30|1995-12-16|1996-02-22|TAKE BACK RETURN|TRUCK|ct carefully ironic tithes| +40488|220378|32883|1|49|63619.64|0.02|0.00|R|F|1993-01-09|1992-12-13|1993-01-26|COLLECT COD|AIR|haggle furiously about | +40488|888091|609|2|42|45320.10|0.00|0.04|A|F|1993-01-29|1992-12-08|1993-02-10|NONE|TRUCK|beans cajole stealthily bold deposits| +40488|139845|2348|3|29|54660.36|0.07|0.05|R|F|1992-10-16|1992-11-29|1992-11-13|COLLECT COD|RAIL|ts. furiously unusual dugouts are fur| +40488|369612|7134|4|3|5044.80|0.07|0.08|R|F|1993-02-03|1992-11-17|1993-02-05|TAKE BACK RETURN|REG AIR|y. silent accounts ac| +40488|64465|39468|5|23|32877.58|0.10|0.07|R|F|1992-10-30|1993-01-02|1992-11-15|TAKE BACK RETURN|AIR|silent theodolites. accounts mold fluff| +40488|449400|36925|6|46|62071.48|0.01|0.06|A|F|1992-12-18|1992-11-19|1992-12-27|DELIVER IN PERSON|SHIP|fily about the fi| +40489|304931|29944|1|1|1935.92|0.05|0.04|R|F|1995-05-25|1995-04-21|1995-06-08|NONE|RAIL|oost blithely at the decoys. pending wart| +40489|962874|37913|2|4|7747.32|0.08|0.08|R|F|1995-03-04|1995-03-28|1995-03-16|NONE|RAIL|e blithely aft| +40489|12556|57|3|47|69021.85|0.10|0.03|A|F|1995-04-23|1995-05-03|1995-04-24|NONE|SHIP|regular theodolites sleep about th| +40489|25189|37690|4|50|55709.00|0.00|0.00|R|F|1995-03-19|1995-03-19|1995-04-01|COLLECT COD|RAIL| quickly final| +40490|220249|32754|1|48|56123.04|0.09|0.00|A|F|1992-06-02|1992-04-02|1992-06-08|TAKE BACK RETURN|MAIL|ular platelets. | +40490|709394|21909|2|15|21050.40|0.05|0.07|R|F|1992-04-19|1992-04-09|1992-05-19|NONE|RAIL|ously even packa| +40490|781920|6951|3|37|74069.93|0.10|0.00|A|F|1992-03-27|1992-05-02|1992-03-28|NONE|AIR|nod across the ideas. silent requests us| +40490|715625|15626|4|7|11484.13|0.09|0.05|R|F|1992-05-23|1992-04-10|1992-06-17|NONE|RAIL|ometimes furiously i| +40490|499390|11900|5|48|66689.76|0.08|0.07|A|F|1992-03-08|1992-03-31|1992-04-04|COLLECT COD|SHIP|uickly unusu| +40490|238617|13626|6|28|43556.80|0.00|0.00|R|F|1992-04-11|1992-03-22|1992-04-24|COLLECT COD|REG AIR|. idle requests cajole| +40490|425601|13126|7|21|32058.18|0.06|0.03|A|F|1992-04-02|1992-05-03|1992-04-21|TAKE BACK RETURN|SHIP|ructions sleep blit| +40491|71714|34216|1|26|43828.46|0.02|0.00|R|F|1994-11-10|1994-11-18|1994-12-05|COLLECT COD|REG AIR|ly regular frets detect blithely care| +40491|281857|19373|2|23|42293.32|0.05|0.08|R|F|1994-12-26|1994-10-10|1995-01-22|TAKE BACK RETURN|TRUCK|e excuses. | +40491|158396|45906|3|39|56721.21|0.06|0.02|R|F|1994-10-16|1994-11-23|1994-11-03|NONE|REG AIR|ending, pending de| +40491|151510|26517|4|44|68706.44|0.07|0.04|R|F|1994-11-15|1994-10-12|1994-12-02|DELIVER IN PERSON|RAIL|regular packages integr| +40491|415866|3391|5|34|60582.56|0.05|0.03|A|F|1994-10-08|1994-10-10|1994-10-18|DELIVER IN PERSON|RAIL|ts maintai| +40491|443205|18222|6|18|20667.24|0.08|0.01|R|F|1994-12-11|1994-10-17|1994-12-16|TAKE BACK RETURN|MAIL| instructions| +40492|70692|20693|1|28|46555.32|0.06|0.02|N|O|1998-11-08|1998-10-12|1998-11-21|DELIVER IN PERSON|FOB|he regular, regular foxes. unusua| +40492|112892|25395|2|15|28573.35|0.01|0.03|N|O|1998-09-23|1998-10-04|1998-10-03|DELIVER IN PERSON|AIR|ously final | +40493|743630|43631|1|35|58576.00|0.00|0.01|N|O|1996-09-04|1996-09-17|1996-09-08|NONE|MAIL|ravely express deposits. silent, pendin| +40493|180963|43467|2|36|73582.56|0.05|0.06|N|O|1996-09-03|1996-08-31|1996-09-09|NONE|AIR|osits sleep enticin| +40493|429534|29535|3|38|55613.38|0.01|0.08|N|O|1996-08-20|1996-10-17|1996-09-10|DELIVER IN PERSON|AIR| bold frays. f| +40493|170544|45551|4|32|51665.28|0.07|0.08|N|O|1996-09-12|1996-09-23|1996-09-24|NONE|AIR|ding, even requ| +40493|323053|23054|5|23|24748.92|0.07|0.06|N|O|1996-09-20|1996-10-18|1996-10-15|TAKE BACK RETURN|SHIP|egular packages. ironic deposits d| +40493|537030|49541|6|9|9603.09|0.04|0.08|N|O|1996-10-12|1996-10-01|1996-10-23|COLLECT COD|SHIP|ep carefully around the slyly special| +40494|763886|13887|1|13|25348.05|0.00|0.01|N|O|1998-10-01|1998-08-27|1998-10-25|NONE|SHIP|unts are packa| +40495|4681|4682|1|3|4757.04|0.10|0.05|A|F|1995-01-02|1994-12-24|1995-01-20|TAKE BACK RETURN|REG AIR|regular, pending asymptotes| +40495|665327|40354|2|25|32307.25|0.07|0.07|A|F|1995-01-18|1995-01-05|1995-02-16|NONE|AIR|xpress dolphins hag| +40495|137644|12649|3|7|11771.48|0.07|0.07|A|F|1995-02-27|1995-01-13|1995-03-26|TAKE BACK RETURN|MAIL|furiously stealthy deposits among the| +40495|375875|890|4|36|70230.96|0.00|0.08|A|F|1995-03-13|1995-01-17|1995-04-08|COLLECT COD|REG AIR|ly even accounts. accounts | +40520|397760|47761|1|22|40870.50|0.06|0.06|R|F|1995-02-24|1995-02-01|1995-03-07|TAKE BACK RETURN|RAIL|ar platelets. req| +40520|148224|23229|2|31|39438.82|0.05|0.07|R|F|1995-01-22|1995-01-26|1995-01-30|TAKE BACK RETURN|RAIL|y even escap| +40520|191321|3825|3|29|40957.28|0.01|0.01|R|F|1995-03-30|1995-01-31|1995-04-28|DELIVER IN PERSON|RAIL|sual accounts are furiously| +40520|529443|4464|4|3|4417.26|0.03|0.03|A|F|1995-03-05|1995-02-09|1995-03-15|NONE|RAIL|y special gifts. unusual pac| +40520|334512|34513|5|50|77325.00|0.01|0.04|A|F|1995-03-20|1995-02-23|1995-04-03|COLLECT COD|RAIL|above the express | +40520|130062|42565|6|48|52418.88|0.02|0.08|R|F|1995-04-15|1995-02-04|1995-05-08|COLLECT COD|FOB| around the slyly bold | +40521|276843|14359|1|40|72793.20|0.04|0.08|N|O|1996-07-07|1996-08-31|1996-07-21|COLLECT COD|RAIL|sts. pendin| +40521|894633|32185|2|48|78124.32|0.07|0.08|N|O|1996-08-20|1996-08-31|1996-08-30|DELIVER IN PERSON|RAIL|es boost. carefully quiet fre| +40521|87874|25378|3|16|29789.92|0.04|0.07|N|O|1996-07-26|1996-09-17|1996-07-30|NONE|REG AIR| requests haggle blithely even, | +40521|884865|47383|4|2|3699.64|0.03|0.07|N|O|1996-07-30|1996-09-22|1996-08-14|DELIVER IN PERSON|AIR|y. slyly bold foxes a| +40521|917632|42669|5|24|39590.16|0.01|0.08|N|O|1996-08-25|1996-08-11|1996-08-31|DELIVER IN PERSON|AIR|he accounts. slyly even t| +40521|631915|44428|6|19|35090.72|0.07|0.06|N|O|1996-09-21|1996-09-24|1996-10-05|DELIVER IN PERSON|SHIP|s. carefully regular | +40522|289816|39817|1|5|9029.00|0.09|0.02|A|F|1994-03-10|1994-03-18|1994-03-29|NONE|AIR|use finally. ironic foxes | +40522|925658|38177|2|33|55559.13|0.06|0.07|R|F|1994-05-08|1994-04-06|1994-05-26|TAKE BACK RETURN|REG AIR|efully express deposits above the waters| +40522|531927|44438|3|37|72479.30|0.01|0.02|A|F|1994-04-14|1994-05-07|1994-05-12|DELIVER IN PERSON|FOB|s nag furiously even accou| +40523|436296|48805|1|31|38200.37|0.08|0.02|A|F|1993-06-10|1993-06-01|1993-06-14|DELIVER IN PERSON|SHIP|ss the special, ironic deposits. slyly | +40523|823505|11054|2|27|38568.42|0.02|0.07|A|F|1993-04-29|1993-06-04|1993-05-28|DELIVER IN PERSON|RAIL|ts. express, bold deposits h| +40523|643372|18397|3|13|17099.42|0.02|0.07|R|F|1993-06-13|1993-06-06|1993-06-28|COLLECT COD|SHIP|its use blithely blithely even foxes. | +40523|149276|24281|4|3|3975.81|0.09|0.05|R|F|1993-03-27|1993-05-05|1993-04-11|COLLECT COD|SHIP|pending ideas. fluffily special pa| +40523|875856|891|5|24|43963.44|0.10|0.05|R|F|1993-06-20|1993-05-18|1993-07-03|DELIVER IN PERSON|RAIL|express account| +40523|499371|49372|6|20|27407.00|0.09|0.07|A|F|1993-05-04|1993-05-26|1993-05-28|NONE|MAIL|silent, expres| +40524|96007|8509|1|11|11033.00|0.10|0.00|N|O|1995-10-29|1995-08-15|1995-11-26|TAKE BACK RETURN|RAIL|urts. pending escapades sho| +40525|377730|27731|1|20|36154.40|0.10|0.02|A|F|1993-07-25|1993-06-29|1993-08-14|TAKE BACK RETURN|SHIP|arefully regular requests across th| +40525|494203|44204|2|22|26337.96|0.00|0.05|R|F|1993-08-05|1993-06-10|1993-08-21|TAKE BACK RETURN|AIR|se slyly careful dependencies.| +40525|64579|2083|3|30|46307.10|0.04|0.08|A|F|1993-05-29|1993-06-24|1993-06-20|TAKE BACK RETURN|REG AIR|cial deposits. blithely permanent| +40525|377755|2770|4|35|64145.90|0.10|0.00|R|F|1993-08-04|1993-06-15|1993-09-02|COLLECT COD|SHIP|s use about the blithely regular se| +40525|923628|11183|5|11|18167.38|0.04|0.04|A|F|1993-04-29|1993-05-13|1993-05-06|TAKE BACK RETURN|SHIP|ickly ironic theodolites. quickly ev| +40525|411477|23986|6|36|49984.20|0.10|0.06|A|F|1993-06-08|1993-05-21|1993-06-13|DELIVER IN PERSON|SHIP|to beans. pending accounts sle| +40525|686179|48693|7|24|27963.36|0.09|0.01|A|F|1993-07-08|1993-06-02|1993-08-03|NONE|SHIP|thely regular packages. final dep| +40526|597717|22740|1|41|74402.29|0.01|0.03|N|O|1998-08-20|1998-09-22|1998-09-16|COLLECT COD|TRUCK| packages. quickly| +40526|817027|42060|2|30|28319.40|0.09|0.06|N|O|1998-09-28|1998-09-23|1998-10-07|NONE|FOB|ve to haggle according to the slyly| +40527|820666|20667|1|1|1586.62|0.02|0.07|N|O|1998-02-28|1997-12-29|1998-03-06|NONE|AIR|sual excuses.| +40527|929184|16739|2|43|52165.02|0.04|0.05|N|O|1998-03-15|1998-01-06|1998-03-18|DELIVER IN PERSON|REG AIR|eodolites. fluf| +40527|790847|40848|3|33|63947.73|0.03|0.05|N|O|1998-03-20|1998-01-06|1998-04-04|COLLECT COD|REG AIR|ar theodolites use furiously| +40527|757799|7800|4|9|16710.84|0.03|0.06|N|O|1998-01-02|1998-01-03|1998-01-16|TAKE BACK RETURN|FOB|e packages ma| +40527|315637|40650|5|37|61146.94|0.03|0.02|N|O|1997-12-03|1998-01-08|1997-12-14|COLLECT COD|MAIL|dolites. fi| +40527|910755|48310|6|44|77691.24|0.06|0.05|N|O|1998-02-13|1998-01-04|1998-03-10|TAKE BACK RETURN|MAIL|egular, final requests haggle furio| +40527|53354|3355|7|26|33991.10|0.03|0.01|N|O|1998-02-19|1998-01-08|1998-02-25|TAKE BACK RETURN|RAIL|ites boost carefully unusual theodolites| +40552|707417|7418|1|41|58399.58|0.04|0.07|N|O|1998-03-05|1998-03-20|1998-03-24|TAKE BACK RETURN|SHIP|inal accounts nag blit| +40552|544096|19117|2|47|53583.29|0.04|0.02|N|O|1998-05-09|1998-04-01|1998-05-23|TAKE BACK RETURN|MAIL| ironic deposits after the spec| +40552|620084|20085|3|14|14056.70|0.07|0.07|N|O|1998-04-23|1998-04-02|1998-04-30|TAKE BACK RETURN|SHIP|ly. blithely regular foxes across the fi| +40552|745349|7864|4|48|66926.88|0.04|0.04|N|O|1998-01-26|1998-03-24|1998-02-06|NONE|RAIL|lar ideas. special, perm| +40553|407166|19675|1|37|39706.18|0.07|0.06|A|F|1992-05-07|1992-05-20|1992-05-18|DELIVER IN PERSON|SHIP|ing foxes n| +40553|234598|34599|2|26|39847.08|0.08|0.00|A|F|1992-05-12|1992-06-08|1992-05-21|COLLECT COD|REG AIR|ymptotes. sp| +40554|747549|35092|1|25|39912.75|0.02|0.04|N|O|1998-03-28|1998-05-10|1998-03-29|NONE|AIR|t ideas. pinto beans eng| +40554|47005|9506|2|4|3808.00|0.05|0.03|N|O|1998-05-11|1998-06-06|1998-05-24|NONE|RAIL|to the furiously unusual accounts hagg| +40554|10759|35760|3|25|41743.75|0.03|0.05|N|O|1998-05-14|1998-05-29|1998-06-04|TAKE BACK RETURN|TRUCK|e carefully pending dinos poach throug| +40554|824474|49507|4|15|20976.45|0.00|0.03|N|O|1998-05-18|1998-05-27|1998-06-10|TAKE BACK RETURN|RAIL|ole carefully. ironic account| +40554|930759|43278|5|18|32214.78|0.07|0.02|N|O|1998-05-23|1998-06-03|1998-06-14|TAKE BACK RETURN|RAIL|, ironic packages. furiously bold account| +40554|256341|31352|6|48|62271.84|0.10|0.07|N|O|1998-06-10|1998-05-13|1998-07-01|DELIVER IN PERSON|TRUCK| ironic requests lose among the carefully| +40555|161066|11067|1|27|30430.62|0.01|0.04|A|F|1994-10-04|1994-10-01|1994-10-18|DELIVER IN PERSON|SHIP|regular foxes. quickly regular id| +40555|23865|48866|2|3|5366.58|0.06|0.04|R|F|1994-08-19|1994-10-02|1994-08-31|DELIVER IN PERSON|MAIL|ts. requests cajole. carefully final acc| +40556|879107|4142|1|22|23893.32|0.10|0.06|N|O|1996-07-01|1996-08-12|1996-07-16|NONE|AIR| unusual deposits cajole. fu| +40556|134699|9704|2|41|71081.29|0.03|0.00|N|O|1996-07-07|1996-07-22|1996-08-03|COLLECT COD|REG AIR|! carefully ironic accounts| +40556|880836|5871|3|24|43602.96|0.03|0.05|N|O|1996-08-20|1996-07-06|1996-08-27|DELIVER IN PERSON|RAIL|rint blithely at | +40556|202273|39786|4|15|17628.90|0.05|0.03|N|O|1996-05-28|1996-06-20|1996-06-15|NONE|RAIL|sual, unusual theodolites cajole| +40557|37517|37518|1|24|34908.24|0.02|0.00|A|F|1993-09-24|1993-11-15|1993-09-26|COLLECT COD|TRUCK|usual, bold accounts poach a| +40557|546224|33755|2|15|19053.00|0.03|0.01|R|F|1993-09-08|1993-10-31|1993-09-21|TAKE BACK RETURN|MAIL|ickly even deposits. special pinto | +40557|376636|39144|3|48|82205.76|0.00|0.00|R|F|1993-11-24|1993-11-02|1993-12-17|NONE|RAIL| regular instructions; care| +40557|121097|21098|4|37|41369.33|0.00|0.06|A|F|1993-09-26|1993-11-28|1993-10-08|COLLECT COD|AIR|eposits alongsi| +40558|372601|22602|1|34|56902.06|0.03|0.08|R|F|1994-05-18|1994-05-03|1994-06-02|TAKE BACK RETURN|MAIL|requests according to the blit| +40558|289947|2453|2|50|96846.50|0.05|0.01|A|F|1994-04-09|1994-05-04|1994-04-20|TAKE BACK RETURN|MAIL| against the silent requests. ironi| +40558|127138|39641|3|16|18642.08|0.05|0.00|R|F|1994-04-29|1994-05-04|1994-04-30|COLLECT COD|SHIP|its! slyly special a| +40558|796354|33900|4|10|14503.20|0.05|0.01|R|F|1994-03-06|1994-03-24|1994-04-01|DELIVER IN PERSON|RAIL| foxes. sl| +40558|308395|45914|5|38|53328.44|0.06|0.07|R|F|1994-05-19|1994-04-05|1994-06-11|COLLECT COD|AIR|eas. blithely express theod| +40558|193182|5686|6|23|29329.14|0.04|0.06|R|F|1994-06-02|1994-04-28|1994-07-02|COLLECT COD|AIR|nding requests. | +40558|803082|28115|7|33|32506.32|0.09|0.06|R|F|1994-06-15|1994-05-05|1994-06-23|COLLECT COD|AIR|ounts haggle quickly slyly ex| +40559|391362|41363|1|35|50867.25|0.04|0.01|R|F|1993-05-13|1993-07-16|1993-06-11|NONE|REG AIR|e carefully. quickly| +40559|616391|16392|2|30|39220.80|0.03|0.04|R|F|1993-06-20|1993-07-08|1993-06-26|DELIVER IN PERSON|RAIL|nic requests. final packages according to t| +40559|679713|4740|3|6|10156.08|0.10|0.05|R|F|1993-08-20|1993-07-06|1993-09-13|DELIVER IN PERSON|AIR|equests. slyly bol| +40584|163199|709|1|16|20195.04|0.07|0.03|A|F|1993-09-03|1993-08-09|1993-09-10|DELIVER IN PERSON|AIR|ong the slyly pending instructions h| +40584|884978|10013|2|45|88331.85|0.09|0.05|R|F|1993-07-07|1993-07-30|1993-08-01|DELIVER IN PERSON|TRUCK|iously ironic orbits. fluffily fin| +40584|808639|46188|3|11|17023.49|0.09|0.06|A|F|1993-07-26|1993-09-05|1993-08-03|TAKE BACK RETURN|TRUCK|ing theodolit| +40584|792286|29832|4|49|67534.25|0.00|0.04|R|F|1993-07-28|1993-08-19|1993-08-19|COLLECT COD|AIR| theodolites? carefully express| +40584|943080|18117|5|24|26952.96|0.04|0.08|R|F|1993-06-16|1993-08-08|1993-06-27|DELIVER IN PERSON|AIR|cajole quickly. blithely ironi| +40585|450528|529|1|28|41398.00|0.03|0.00|A|F|1994-01-21|1994-02-21|1994-02-06|COLLECT COD|AIR|unusual instructions after the furiously ex| +40586|490300|40301|1|4|5161.12|0.00|0.02|R|F|1992-11-24|1992-11-04|1992-12-17|NONE|AIR|ithely accord| +40587|846332|46333|1|16|20452.64|0.02|0.00|N|O|1998-03-09|1998-04-06|1998-03-10|COLLECT COD|MAIL|es haggle carefully alongside of | +40587|293981|43982|2|4|7899.88|0.03|0.03|N|O|1998-03-31|1998-03-30|1998-04-11|DELIVER IN PERSON|FOB|equests. slyly e| +40587|934652|47171|3|5|8433.05|0.00|0.04|N|O|1998-02-22|1998-04-14|1998-03-07|DELIVER IN PERSON|MAIL|ual foxes im| +40587|693608|43609|4|32|51250.24|0.02|0.05|N|O|1998-05-06|1998-03-31|1998-05-30|TAKE BACK RETURN|TRUCK|n platelets are. express deposits ca| +40587|463392|25902|5|16|21685.92|0.04|0.08|N|O|1998-01-25|1998-03-17|1998-02-12|NONE|SHIP|sual, pending deposits. fu| +40587|221814|46823|6|49|85054.20|0.02|0.03|N|O|1998-04-03|1998-03-25|1998-04-28|NONE|SHIP|about the pinto b| +40587|25444|445|7|38|52038.72|0.05|0.02|N|O|1998-02-17|1998-03-05|1998-03-11|NONE|FOB|gle! special pinto bea| +40588|621484|9021|1|31|43568.95|0.10|0.06|N|O|1996-11-16|1996-11-21|1996-12-15|COLLECT COD|AIR|ecial accounts. reg| +40588|277426|27427|2|38|53329.58|0.01|0.02|N|O|1997-02-08|1996-11-21|1997-02-23|NONE|RAIL|ely express requests. pa| +40588|688231|745|3|29|35356.80|0.09|0.08|N|O|1997-01-19|1996-12-16|1997-01-22|COLLECT COD|REG AIR|nst the slyly fin| +40589|133575|21082|1|40|64342.80|0.00|0.06|N|O|1996-08-05|1996-07-09|1996-08-23|COLLECT COD|TRUCK| ironic ideas around the permanent ac| +40589|993717|31275|2|27|48888.09|0.02|0.05|N|O|1996-08-04|1996-08-02|1996-08-19|DELIVER IN PERSON|FOB|iously bold, even courts. bold deposit| +40590|326386|26387|1|24|33896.88|0.00|0.01|N|O|1996-06-02|1996-08-09|1996-06-08|NONE|RAIL|s sleep slyly e| +40590|557954|45488|2|33|66393.69|0.08|0.06|N|O|1996-08-29|1996-07-06|1996-09-05|TAKE BACK RETURN|TRUCK|furiously unusual ideas doubt caref| +40590|521673|21674|3|40|67786.00|0.02|0.06|N|O|1996-09-22|1996-06-30|1996-09-29|NONE|REG AIR|its: blithel| +40590|747604|22633|4|23|37986.11|0.02|0.00|N|O|1996-07-25|1996-08-21|1996-08-14|NONE|FOB|telets. quickly even instruc| +40590|971386|8944|5|10|14573.40|0.03|0.06|N|O|1996-08-28|1996-08-07|1996-09-03|NONE|FOB|oxes: evenly unus| +40590|70455|20456|6|50|71272.50|0.08|0.03|N|O|1996-09-08|1996-08-19|1996-10-07|NONE|SHIP|arefully ironic deposits. r| +40590|124684|24685|7|30|51260.40|0.05|0.05|N|O|1996-08-09|1996-08-04|1996-08-21|TAKE BACK RETURN|RAIL|slyly around the depos| +40591|556491|31514|1|46|71183.62|0.04|0.07|R|F|1993-07-05|1993-09-11|1993-07-18|DELIVER IN PERSON|AIR|slyly regular decoys. bli| +40591|927519|2556|2|7|10825.29|0.06|0.04|A|F|1993-07-14|1993-08-23|1993-08-02|NONE|MAIL|out the unusual, silent accounts. carefully| +40616|491269|28797|1|1|1260.24|0.06|0.03|N|O|1996-11-06|1996-12-06|1996-11-20|TAKE BACK RETURN|RAIL|ests cajole unus| +40616|756473|44019|2|50|76472.00|0.03|0.05|N|O|1997-01-31|1996-11-20|1997-02-09|COLLECT COD|SHIP|old ideas alongside of| +40616|33393|8394|3|39|51729.21|0.03|0.01|N|O|1997-02-10|1997-01-06|1997-02-27|TAKE BACK RETURN|TRUCK|ts. carefully ironic deposits use care| +40616|225653|662|4|27|42623.28|0.03|0.07|N|O|1996-11-26|1996-12-30|1996-12-08|COLLECT COD|FOB|y regular excus| +40616|541876|4387|5|47|90138.95|0.05|0.01|N|O|1997-01-21|1996-11-26|1997-02-14|COLLECT COD|FOB|ep carefully. requests affix sl| +40616|300371|37890|6|7|9599.52|0.07|0.06|N|O|1996-12-14|1996-11-17|1996-12-31|NONE|FOB|usual foxes. furiously regular reques| +40617|832587|20136|1|3|4558.62|0.03|0.08|A|F|1992-08-29|1992-08-05|1992-09-07|NONE|AIR|. packages sublate regular requests. | +40617|288730|26246|2|15|25780.80|0.01|0.00|R|F|1992-08-04|1992-09-12|1992-08-21|DELIVER IN PERSON|SHIP|rding to the carefully ironic deposits | +40617|670002|20003|3|45|43738.65|0.04|0.08|R|F|1992-07-26|1992-09-11|1992-08-15|TAKE BACK RETURN|MAIL|posits after the regular accounts wake car| +40618|886117|11152|1|45|49638.15|0.08|0.03|R|F|1994-12-08|1994-12-03|1994-12-10|COLLECT COD|RAIL|osits haggle furiously about the pen| +40618|964273|26793|2|23|30756.29|0.10|0.08|R|F|1994-10-16|1994-10-13|1994-11-09|COLLECT COD|REG AIR|long the carefully unu| +40618|525638|38149|3|43|71535.23|0.03|0.00|R|F|1994-11-04|1994-12-01|1994-11-17|COLLECT COD|RAIL|osits. furiously dog| +40618|395157|7665|4|33|41320.62|0.00|0.06|A|F|1994-10-06|1994-10-27|1994-10-19|DELIVER IN PERSON|RAIL| requests; eve| +40619|281061|31062|1|48|50018.40|0.06|0.03|R|F|1993-06-27|1993-04-26|1993-07-24|COLLECT COD|RAIL|al ideas integrat| +40619|778717|16263|2|50|89784.00|0.01|0.07|A|F|1993-06-27|1993-05-03|1993-07-08|TAKE BACK RETURN|TRUCK|e final asymptotes. regular, regular inst| +40619|884261|9296|3|49|61015.78|0.04|0.02|R|F|1993-04-22|1993-06-02|1993-05-11|DELIVER IN PERSON|MAIL|s. instructions i| +40619|758832|8833|4|7|13235.60|0.09|0.02|A|F|1993-04-20|1993-05-26|1993-04-25|DELIVER IN PERSON|REG AIR|ld requests. blithely ir| +40619|689074|39075|5|38|40395.52|0.09|0.02|A|F|1993-05-02|1993-04-18|1993-05-05|NONE|MAIL|riously alongside| +40619|253605|3606|6|5|7792.95|0.04|0.02|R|F|1993-06-01|1993-05-03|1993-06-17|TAKE BACK RETURN|RAIL|inal tithes are. slyly final| +40620|330618|18137|1|17|28026.20|0.08|0.06|N|O|1997-06-22|1997-08-27|1997-07-16|NONE|SHIP|ar requests sleep quickly entici| +40620|690971|40972|2|2|3923.88|0.04|0.03|N|O|1997-10-05|1997-07-15|1997-10-21|COLLECT COD|FOB|ly bold ideas ar| +40620|140487|2990|3|3|4582.44|0.02|0.00|N|O|1997-08-03|1997-09-01|1997-08-28|NONE|AIR|. evenly regular dinos cajole sil| +40621|945401|20438|1|25|36159.00|0.09|0.01|A|F|1994-08-26|1994-09-01|1994-08-27|TAKE BACK RETURN|FOB|as are quickly furiou| +40622|635493|10518|1|28|39996.88|0.05|0.05|A|F|1994-11-04|1994-10-27|1994-11-05|DELIVER IN PERSON|TRUCK|ructions use quickly blit| +40622|730074|17617|2|10|11040.40|0.04|0.03|A|F|1994-12-06|1994-10-20|1994-12-10|COLLECT COD|AIR| dependenci| +40622|353295|15803|3|36|48538.08|0.06|0.02|A|F|1994-10-12|1994-10-31|1994-10-18|DELIVER IN PERSON|SHIP|nusual packages. quickly special| +40622|822248|22249|4|5|5851.00|0.03|0.04|A|F|1994-11-11|1994-12-07|1994-11-18|NONE|TRUCK|ies. slyly final accounts integrate a| +40623|348463|48464|1|22|33251.90|0.06|0.00|N|O|1996-04-20|1996-03-17|1996-05-14|NONE|TRUCK|sits. furiou| +40623|613149|38174|2|17|18055.87|0.02|0.04|N|O|1996-02-13|1996-03-09|1996-02-22|COLLECT COD|MAIL| the slyly special excuses wake furiously| +40623|178474|15984|3|40|62098.80|0.09|0.03|N|O|1996-03-17|1996-04-13|1996-04-13|COLLECT COD|REG AIR|ctions detect | +40623|606450|43987|4|32|43405.44|0.02|0.00|N|O|1996-05-09|1996-02-17|1996-05-15|NONE|RAIL|lithely furiously regular requests. ca| +40648|57285|44789|1|8|9938.24|0.02|0.02|N|O|1998-03-26|1998-04-21|1998-03-31|TAKE BACK RETURN|MAIL|s. silent p| +40648|774762|12308|2|18|33061.14|0.07|0.01|N|O|1998-04-24|1998-04-08|1998-05-05|COLLECT COD|RAIL|ymptotes are | +40648|408771|33788|3|45|75588.75|0.00|0.01|N|O|1998-03-16|1998-03-24|1998-03-18|NONE|TRUCK| against the quickl| +40649|297132|34648|1|11|12420.32|0.10|0.01|N|O|1996-02-15|1996-03-06|1996-03-08|DELIVER IN PERSON|RAIL|quickly ironic exc| +40650|784037|9068|1|29|32509.00|0.07|0.06|N|O|1998-01-13|1998-03-06|1998-01-21|DELIVER IN PERSON|MAIL|. slyly ironi| +40650|303636|16143|2|12|19675.44|0.07|0.07|N|O|1998-01-08|1998-03-10|1998-01-29|TAKE BACK RETURN|MAIL|ke across the regular, final requests. qui| +40651|107934|20437|1|5|9709.65|0.01|0.01|R|F|1993-09-18|1993-10-20|1993-10-14|NONE|RAIL|sits: quickly even pac| +40651|40000|15001|2|15|14100.00|0.09|0.06|R|F|1993-11-21|1993-12-02|1993-12-16|COLLECT COD|SHIP| cajole across the foxes. fluffily special| +40651|277411|39917|3|9|12495.60|0.06|0.08|R|F|1993-11-17|1993-11-26|1993-11-23|COLLECT COD|TRUCK| carefully regular reques| +40651|436777|24302|4|33|56553.75|0.03|0.03|R|F|1993-11-20|1993-11-11|1993-12-12|COLLECT COD|SHIP|ve the pend| +40652|430785|5802|1|17|29167.92|0.08|0.06|R|F|1993-03-08|1993-01-03|1993-03-15|TAKE BACK RETURN|RAIL|fully regular accoun| +40652|193878|6382|2|19|37465.53|0.06|0.05|R|F|1993-02-15|1993-02-13|1993-02-16|COLLECT COD|MAIL|y bold ideas! iro| +40652|497243|34771|3|13|16122.86|0.01|0.00|R|F|1993-03-04|1993-01-22|1993-03-17|COLLECT COD|MAIL|usly carefully express accounts. ironic,| +40652|154406|41916|4|29|42351.60|0.08|0.05|A|F|1993-02-21|1992-12-29|1993-03-06|DELIVER IN PERSON|RAIL|ly final depend| +40653|730187|42702|1|6|7302.90|0.06|0.08|N|O|1996-07-01|1996-05-31|1996-07-30|TAKE BACK RETURN|REG AIR|posits. blithely special packages haggle | +40653|240781|3286|2|47|80923.19|0.04|0.05|N|O|1996-04-07|1996-06-15|1996-05-01|COLLECT COD|AIR| express platelets cajole regular| +40653|790615|40616|3|33|56284.14|0.07|0.00|N|O|1996-05-12|1996-05-20|1996-05-27|NONE|AIR| slyly special theodoli| +40653|852801|2802|4|1|1753.76|0.03|0.06|N|O|1996-07-07|1996-05-20|1996-08-05|TAKE BACK RETURN|REG AIR|mong the bold, final sentimen| +40653|10092|47593|5|10|10020.90|0.04|0.08|N|O|1996-05-09|1996-06-06|1996-05-16|TAKE BACK RETURN|MAIL|each blithely final pa| +40654|363241|38256|1|23|29997.29|0.00|0.01|N|O|1997-10-20|1997-11-13|1997-11-13|COLLECT COD|REG AIR|ins. blithely reg| +40654|982241|32242|2|50|66160.00|0.02|0.07|N|O|1997-12-04|1997-10-25|1997-12-29|NONE|REG AIR|old theodolites grow af| +40655|530657|5678|1|15|25314.45|0.02|0.07|N|O|1996-10-09|1996-11-22|1996-10-12|COLLECT COD|REG AIR| above the final ideas breach| +40655|751294|1295|2|28|37667.28|0.07|0.01|N|O|1996-12-08|1996-11-27|1997-01-05|COLLECT COD|MAIL|eans boost carefully regular instruct| +40680|974942|49981|1|5|10084.50|0.02|0.04|R|F|1994-05-09|1994-03-29|1994-05-31|TAKE BACK RETURN|RAIL|ffily even | +40681|939774|14811|1|10|18137.30|0.09|0.03|A|F|1992-09-04|1992-10-22|1992-09-27|TAKE BACK RETURN|AIR|nts. slyly special pack| +40681|773762|36278|2|41|75264.93|0.05|0.02|A|F|1992-11-09|1992-10-27|1992-11-17|COLLECT COD|SHIP|yly. blithely unusual asymptotes us| +40682|908106|20625|1|26|28965.56|0.07|0.03|N|O|1997-02-16|1996-11-28|1997-03-01|COLLECT COD|TRUCK|etect slyly quickly | +40682|525727|38238|2|21|36806.70|0.06|0.02|N|O|1996-12-23|1997-01-11|1997-01-20|TAKE BACK RETURN|AIR|lly. slyly even ac| +40682|880195|5230|3|48|56407.20|0.01|0.02|N|O|1996-12-26|1996-12-28|1997-01-14|NONE|RAIL| the reque| +40682|422208|22209|4|37|41816.66|0.03|0.06|N|O|1996-12-28|1996-12-10|1997-01-25|COLLECT COD|SHIP|pecial pac| +40683|846404|21437|1|8|10802.88|0.08|0.06|A|F|1993-02-20|1993-01-09|1993-03-16|COLLECT COD|FOB|eodolites. final deposits are blit| +40683|506098|18609|2|12|13248.84|0.03|0.04|A|F|1993-02-10|1993-01-20|1993-03-06|TAKE BACK RETURN|RAIL| even notornis-- special theodolites mainta| +40683|981129|6168|3|46|55663.68|0.07|0.00|R|F|1993-01-17|1993-02-08|1993-02-05|COLLECT COD|RAIL|ncies. theodolites are| +40684|703465|15980|1|3|4405.29|0.01|0.05|R|F|1992-05-21|1992-07-01|1992-06-18|DELIVER IN PERSON|AIR|riously fina| +40684|129316|16823|2|38|51121.78|0.02|0.01|A|F|1992-05-15|1992-06-05|1992-06-01|DELIVER IN PERSON|SHIP|e slowly carefully even accounts.| +40684|398381|10889|3|21|31066.77|0.06|0.07|R|F|1992-06-16|1992-05-24|1992-06-24|COLLECT COD|FOB|s. blithely bold requests| +40684|579858|42370|4|49|94953.67|0.01|0.04|A|F|1992-06-25|1992-05-23|1992-06-27|NONE|AIR|e the carefu| +40684|672995|22996|5|34|66910.64|0.10|0.00|A|F|1992-08-08|1992-06-11|1992-08-09|DELIVER IN PERSON|SHIP|s cajole by the blithely regular inst| +40684|18106|5607|6|6|6144.60|0.10|0.06|R|F|1992-06-03|1992-06-19|1992-06-22|TAKE BACK RETURN|MAIL|re carefully silent deposits. quickly spec| +40685|523765|11296|1|46|82282.04|0.06|0.08|R|F|1994-06-13|1994-07-13|1994-06-25|TAKE BACK RETURN|TRUCK|into beans cajole slyly even deposits| +40685|917906|42943|2|19|36553.34|0.08|0.06|R|F|1994-06-19|1994-06-15|1994-07-08|NONE|FOB| above the furiou| +40685|246037|33550|3|38|37354.76|0.07|0.08|R|F|1994-05-28|1994-07-01|1994-06-16|COLLECT COD|AIR|ully ironic foxes sle| +40686|884166|46684|1|13|14951.56|0.00|0.07|N|O|1997-09-15|1997-08-19|1997-10-12|COLLECT COD|SHIP| theodolites ar| +40686|168553|6063|2|5|8107.75|0.08|0.03|N|O|1997-06-17|1997-07-03|1997-07-04|COLLECT COD|FOB|nic packages above the blithely special req| +40687|909696|47251|1|10|17056.50|0.05|0.04|R|F|1995-05-04|1995-05-23|1995-05-30|TAKE BACK RETURN|FOB| regular packages nag on the carefu| +40687|243910|31423|2|40|74156.00|0.10|0.04|N|O|1995-07-02|1995-05-09|1995-07-27|NONE|TRUCK|deas. slyly even instructio| +40687|394390|44391|3|15|22265.70|0.07|0.07|N|O|1995-07-12|1995-06-23|1995-07-13|NONE|SHIP|the bold packages. blithely regul| +40687|496674|21693|4|2|3341.30|0.00|0.06|R|F|1995-05-07|1995-05-09|1995-05-28|NONE|MAIL|carefully about the| +40687|598033|23056|5|3|3393.03|0.07|0.04|A|F|1995-04-16|1995-06-07|1995-05-13|NONE|AIR|haggle alongs| +40712|909226|21745|1|1|1235.18|0.00|0.03|N|O|1996-06-04|1996-05-09|1996-06-22|TAKE BACK RETURN|TRUCK|lly special courts. blithely bold courts ha| +40712|360479|35494|2|33|50802.18|0.05|0.02|N|O|1996-03-27|1996-04-26|1996-04-02|TAKE BACK RETURN|SHIP|ly stealthy| +40712|564233|14234|3|6|7783.26|0.07|0.01|N|O|1996-03-25|1996-05-26|1996-04-21|TAKE BACK RETURN|SHIP|y regular hockey players. final theodo| +40712|56075|31078|4|40|41242.80|0.08|0.07|N|O|1996-05-20|1996-05-05|1996-06-07|TAKE BACK RETURN|REG AIR|sual, ironic de| +40712|447998|47999|5|8|15567.76|0.10|0.06|N|O|1996-05-27|1996-05-15|1996-06-09|DELIVER IN PERSON|FOB|eas. furiously ironic accounts cajo| +40712|492338|29866|6|15|19954.65|0.08|0.08|N|O|1996-05-15|1996-06-04|1996-05-29|COLLECT COD|RAIL|equests. slyly un| +40712|721622|21623|7|8|13148.72|0.06|0.04|N|O|1996-05-06|1996-05-09|1996-05-10|COLLECT COD|RAIL| even requests nag blithely according to th| +40713|290715|40716|1|8|13645.60|0.03|0.00|R|F|1994-03-18|1994-03-20|1994-04-11|COLLECT COD|FOB| requests engage at the furiously even ide| +40713|40960|3461|2|5|9504.80|0.02|0.01|R|F|1994-02-15|1994-04-18|1994-02-27|COLLECT COD|FOB|sly about the furiously final epitaphs; sl| +40713|408301|33318|3|1|1209.28|0.08|0.02|R|F|1994-03-01|1994-04-07|1994-03-08|DELIVER IN PERSON|MAIL|requests use carefully| +40714|114930|2437|1|7|13614.51|0.06|0.05|R|F|1994-01-20|1994-02-08|1994-02-02|TAKE BACK RETURN|FOB| the bold dependencies. carefully re| +40714|617134|4671|2|42|44146.20|0.01|0.00|A|F|1994-03-13|1994-03-04|1994-03-25|DELIVER IN PERSON|MAIL|ages are quickly fin| +40714|170857|8367|3|47|90608.95|0.05|0.04|A|F|1994-02-28|1994-03-07|1994-03-21|COLLECT COD|RAIL|endencies engage furiously silent | +40715|250232|12738|1|27|31919.94|0.06|0.02|R|F|1995-05-30|1995-05-07|1995-06-15|COLLECT COD|FOB|dependencies cajole furiously pending dep| +40716|564779|27291|1|13|23968.75|0.10|0.00|N|O|1997-03-02|1997-03-29|1997-03-04|NONE|MAIL|gular accounts-- quickly blithe depend| +40716|236766|49271|2|9|15324.75|0.09|0.04|N|O|1997-01-19|1997-02-25|1997-01-31|COLLECT COD|AIR|yly bold deposits wake sly| +40716|324228|36735|3|33|41322.93|0.06|0.00|N|O|1997-01-28|1997-04-05|1997-02-23|NONE|SHIP|sly dogged dependenci| +40716|293118|30634|4|43|47777.30|0.02|0.05|N|O|1997-02-12|1997-02-20|1997-02-25|TAKE BACK RETURN|AIR|ses. carefully ironic foxes | +40717|907173|32210|1|20|23602.60|0.03|0.01|A|F|1994-06-20|1994-05-01|1994-07-01|DELIVER IN PERSON|SHIP|usly even pinto beans cajole regul| +40717|854894|29929|2|5|9244.25|0.03|0.08|R|F|1994-06-13|1994-04-17|1994-07-09|DELIVER IN PERSON|RAIL|after the even deposits na| +40717|188542|13549|3|49|79896.46|0.07|0.04|A|F|1994-05-20|1994-05-04|1994-05-24|COLLECT COD|FOB|s wake carefully according to th| +40717|818313|18314|4|24|29550.48|0.08|0.08|R|F|1994-02-26|1994-04-08|1994-03-11|COLLECT COD|MAIL|deposits nag furiously unusual | +40717|385162|47670|5|34|42403.10|0.08|0.06|R|F|1994-06-11|1994-04-01|1994-06-29|NONE|REG AIR| above the deposits. special platelets cajo| +40717|412519|37536|6|38|54396.62|0.06|0.05|R|F|1994-04-13|1994-05-15|1994-04-20|DELIVER IN PERSON|RAIL|gainst the| +40718|846822|46823|1|13|22994.14|0.01|0.05|A|F|1994-08-31|1994-07-18|1994-09-29|NONE|SHIP|eep fluffily acc| +40718|537136|24667|2|40|46924.40|0.04|0.04|A|F|1994-10-04|1994-08-18|1994-10-12|COLLECT COD|TRUCK|ckly silent deposits. theodolites wake | +40718|636165|23702|3|39|42944.07|0.01|0.07|R|F|1994-06-25|1994-09-07|1994-07-23|TAKE BACK RETURN|AIR|use carefully. ironic | +40718|21631|46632|4|20|31052.60|0.01|0.03|A|F|1994-07-01|1994-07-14|1994-07-11|TAKE BACK RETURN|AIR|arefully blithely unusual deposits! blit| +40718|549441|49442|5|11|16394.62|0.01|0.01|R|F|1994-08-04|1994-09-01|1994-08-16|NONE|SHIP|ts above the unusual, | +40719|551691|1692|1|15|26140.05|0.05|0.05|N|O|1998-05-29|1998-06-08|1998-06-16|COLLECT COD|RAIL|c packages! fluffily even foxes h| +40719|255926|30937|2|42|79040.22|0.06|0.07|N|O|1998-04-20|1998-05-27|1998-05-14|DELIVER IN PERSON|AIR|eep according to the pending excuses. fur| +40719|344864|19877|3|43|82080.55|0.00|0.00|N|O|1998-07-08|1998-06-01|1998-07-29|NONE|SHIP|fully regular requests haggle. carefully sp| +40719|114328|39333|4|41|55035.12|0.02|0.04|N|O|1998-06-28|1998-06-15|1998-07-22|COLLECT COD|RAIL|olphins haggle| +40744|347277|22290|1|9|11918.34|0.02|0.01|A|F|1992-11-07|1992-10-18|1992-11-27|DELIVER IN PERSON|REG AIR|press dependencies wake slyly carefull| +40744|674675|37189|2|30|49489.20|0.07|0.08|A|F|1992-09-27|1992-10-05|1992-10-02|NONE|AIR|ly final depo| +40744|246325|46326|3|46|58480.26|0.06|0.01|R|F|1992-12-12|1992-09-18|1992-12-23|DELIVER IN PERSON|TRUCK|instructions a| +40744|976415|26416|4|20|29827.40|0.05|0.08|R|F|1992-10-25|1992-10-09|1992-11-11|NONE|MAIL|ake blithely slyly regular co| +40744|600306|307|5|1|1206.27|0.10|0.00|R|F|1992-12-05|1992-10-19|1992-12-26|TAKE BACK RETURN|RAIL|into beans wake even excuses. quickl| +40744|341579|41580|6|6|9723.36|0.06|0.01|A|F|1992-12-02|1992-10-11|1992-12-20|NONE|FOB|y special requ| +40744|912840|25359|7|48|88934.40|0.04|0.01|R|F|1992-09-06|1992-09-15|1992-09-07|COLLECT COD|SHIP| special excuses | +40745|98927|48928|1|12|23111.04|0.06|0.00|R|F|1994-11-13|1995-01-10|1994-11-14|TAKE BACK RETURN|SHIP| Tiresias use furiously!| +40745|664338|14339|2|27|35162.10|0.05|0.03|R|F|1995-02-12|1994-11-29|1995-03-09|TAKE BACK RETURN|TRUCK|er the quickly regular theodo| +40745|526668|26669|3|24|40671.36|0.02|0.04|A|F|1995-02-02|1995-01-11|1995-02-27|TAKE BACK RETURN|REG AIR|ick requests. furiously even platelets poa| +40746|319208|31715|1|7|8590.33|0.06|0.07|A|F|1993-06-17|1993-05-30|1993-07-01|DELIVER IN PERSON|REG AIR|ounts serve furiously furiously eve| +40747|680536|43050|1|19|28813.50|0.10|0.06|R|F|1992-12-27|1993-03-12|1993-01-24|DELIVER IN PERSON|FOB|y bold packages along | +40747|768081|30597|2|21|24130.05|0.02|0.01|A|F|1993-01-26|1993-02-01|1993-02-19|COLLECT COD|TRUCK|ggle slyly slyly final instructions. fur| +40747|135575|10580|3|4|6442.28|0.00|0.02|A|F|1993-01-11|1993-02-02|1993-01-23|COLLECT COD|FOB|grate sile| +40747|595623|20646|4|25|42965.00|0.01|0.05|R|F|1993-03-21|1993-03-09|1993-04-19|NONE|MAIL|use blithely fluffily even courts. | +40748|851744|39296|1|38|64436.60|0.03|0.01|N|O|1996-05-06|1996-07-05|1996-05-22|DELIVER IN PERSON|SHIP|ven theodolites. blithely silent requests | +40748|246488|21497|2|43|61682.21|0.09|0.07|N|O|1996-07-17|1996-07-12|1996-08-02|TAKE BACK RETURN|REG AIR| theodolites sleep carefully among the spe| +40748|716623|4166|3|46|75421.14|0.09|0.02|N|O|1996-06-05|1996-06-09|1996-07-04|TAKE BACK RETURN|MAIL|ntiments haggle | +40748|268380|43391|4|27|36405.99|0.05|0.03|N|O|1996-05-02|1996-06-13|1996-05-26|DELIVER IN PERSON|MAIL|s. ironic pinto beans wake; requ| +40749|749451|36994|1|42|63017.64|0.01|0.06|A|F|1993-01-30|1993-04-11|1993-03-01|TAKE BACK RETURN|MAIL|deposits detect blithely afte| +40749|22920|35421|2|11|20272.12|0.05|0.01|A|F|1993-01-28|1993-04-13|1993-02-06|TAKE BACK RETURN|SHIP| use blithely bold deposits. silent | +40749|216416|3929|3|42|55960.80|0.02|0.04|A|F|1993-02-15|1993-04-25|1993-03-10|DELIVER IN PERSON|TRUCK|aggle fluffily ironic dependencie| +40749|287575|81|4|15|23438.40|0.07|0.01|R|F|1993-04-05|1993-03-13|1993-05-05|TAKE BACK RETURN|FOB|usily? blithely ironic ideas ag| +40749|263354|25860|5|36|47424.24|0.04|0.03|A|F|1993-03-17|1993-03-31|1993-04-06|NONE|SHIP| of the blithely even courts. ca| +40749|178615|16125|6|41|69438.01|0.05|0.07|A|F|1993-05-15|1993-03-04|1993-06-05|COLLECT COD|RAIL|es haggle | +40750|655927|5928|1|47|88495.83|0.06|0.00|N|O|1996-05-17|1996-03-21|1996-06-14|COLLECT COD|FOB|ckly slyly final d| +40750|158444|8445|2|24|36058.56|0.04|0.02|N|O|1996-05-05|1996-04-14|1996-05-23|COLLECT COD|REG AIR|lent accounts. express theo| +40750|958698|33737|3|21|36889.65|0.09|0.04|N|O|1996-02-22|1996-04-06|1996-02-28|DELIVER IN PERSON|SHIP| braids cajole furiously furiously pending | +40750|828721|3754|4|22|36292.96|0.03|0.05|N|O|1996-03-16|1996-03-20|1996-04-11|TAKE BACK RETURN|REG AIR|he carefully even deposits-- enticin| +40750|309321|46840|5|46|61194.26|0.06|0.07|N|O|1996-04-04|1996-04-10|1996-04-12|DELIVER IN PERSON|MAIL|efully spec| +40750|741720|4235|6|2|3523.38|0.00|0.04|N|O|1996-04-12|1996-04-12|1996-05-12|DELIVER IN PERSON|SHIP|r instructions b| +40750|85257|10260|7|34|42236.50|0.05|0.04|N|O|1996-04-04|1996-03-21|1996-05-01|DELIVER IN PERSON|TRUCK|y slyly bold deposits. slyly final | +40751|906493|31530|1|24|35986.80|0.02|0.07|N|O|1998-08-04|1998-06-16|1998-08-06|DELIVER IN PERSON|AIR|carefully bol| +40751|412382|12383|2|39|50480.04|0.09|0.03|N|O|1998-06-25|1998-07-11|1998-07-03|DELIVER IN PERSON|MAIL|uests. furiously | +40751|891539|16574|3|7|10713.43|0.09|0.02|N|O|1998-06-11|1998-06-08|1998-07-05|COLLECT COD|MAIL|e along the| +40751|79419|29420|4|24|33561.84|0.07|0.00|N|O|1998-08-07|1998-06-25|1998-08-14|TAKE BACK RETURN|TRUCK|al foxes! b| +40751|794384|31930|5|22|32523.70|0.09|0.00|N|O|1998-05-08|1998-07-01|1998-05-27|NONE|FOB|heodolites. slyly daring d| +40776|453865|41393|1|14|25463.76|0.02|0.01|R|F|1995-02-06|1994-11-25|1995-02-10|TAKE BACK RETURN|MAIL|sly regular req| +40777|535782|10803|1|30|54532.80|0.00|0.04|N|O|1996-10-16|1996-09-29|1996-10-24|COLLECT COD|AIR|he pending requests sleep al| +40777|886256|23808|2|14|17390.94|0.08|0.03|N|O|1996-09-26|1996-11-16|1996-10-14|NONE|RAIL|s according to the ironic s| +40778|648265|48266|1|40|48529.20|0.08|0.06|N|O|1997-12-17|1998-01-14|1997-12-23|DELIVER IN PERSON|REG AIR|nusual depos| +40778|377659|2674|2|49|85095.36|0.09|0.01|N|O|1997-12-28|1998-01-11|1998-01-04|DELIVER IN PERSON|FOB|inal deposits| +40779|495774|8284|1|43|76099.25|0.07|0.07|N|O|1996-02-25|1996-03-01|1996-03-26|DELIVER IN PERSON|RAIL|ly final theodolites nag. requ| +40779|468652|31162|2|46|74548.98|0.02|0.04|N|O|1996-02-11|1996-02-26|1996-03-07|TAKE BACK RETURN|REG AIR| even ideas detect carefully above t| +40780|744177|19206|1|30|36634.20|0.05|0.05|A|F|1995-04-11|1995-02-18|1995-04-28|COLLECT COD|RAIL|osits poach busily| +40781|964778|39817|1|15|27640.95|0.04|0.07|N|O|1998-03-23|1998-03-26|1998-04-03|DELIVER IN PERSON|TRUCK|leep. silent, ironi| +40781|19769|7270|2|33|55729.08|0.09|0.08|N|O|1998-02-18|1998-03-07|1998-02-23|COLLECT COD|REG AIR|sly ironic foxes around the ca| +40782|335676|23195|1|49|83871.34|0.07|0.08|N|O|1996-01-10|1996-03-21|1996-02-08|NONE|TRUCK| pending foxes around the furiously reg| +40782|696502|21529|2|3|4495.41|0.07|0.06|N|O|1995-12-28|1996-03-18|1996-01-06|TAKE BACK RETURN|AIR|ke fluffily slyly regular pi| +40782|92608|17611|3|17|27210.20|0.07|0.04|N|O|1996-03-22|1996-02-02|1996-04-02|DELIVER IN PERSON|RAIL|. even packages wak| +40782|452282|14792|4|6|7405.56|0.02|0.08|N|O|1996-01-01|1996-02-19|1996-01-06|COLLECT COD|MAIL|across the enticingly exp| +40782|495350|45351|5|24|32287.92|0.03|0.08|N|O|1996-03-15|1996-03-18|1996-04-06|COLLECT COD|FOB|posits wake. carefully even theodolite| +40782|344042|19055|6|49|53215.47|0.08|0.04|N|O|1996-03-14|1996-03-09|1996-03-27|NONE|FOB|ites. express| +40783|563113|647|1|43|50571.87|0.05|0.04|N|O|1998-10-24|1998-09-22|1998-11-19|COLLECT COD|SHIP|ly final deposits along the quick| +40783|229157|29158|2|22|23895.08|0.03|0.06|N|O|1998-09-30|1998-09-05|1998-10-02|DELIVER IN PERSON|AIR|ly carefully ironic depend| +40783|433285|33286|3|34|41420.84|0.00|0.06|N|O|1998-08-21|1998-10-16|1998-09-12|NONE|RAIL|ct fluffily. slyly | +40783|219399|19400|4|1|1318.38|0.02|0.04|N|O|1998-08-13|1998-08-27|1998-09-08|NONE|FOB|g! special accounts sl| +40783|430520|30521|5|25|36262.50|0.08|0.05|N|O|1998-09-05|1998-09-17|1998-09-11|COLLECT COD|REG AIR|furiously pinto beans. quic| +40783|743577|43578|6|40|64821.60|0.06|0.01|N|O|1998-11-03|1998-08-27|1998-11-14|NONE|SHIP|ully even requests. blith| +40808|55651|5652|1|42|67479.30|0.04|0.06|R|F|1994-12-18|1994-11-27|1994-12-30|TAKE BACK RETURN|MAIL|s. express, ruthless requests haggle | +40809|366075|3597|1|1|1141.06|0.10|0.01|A|F|1994-09-30|1994-09-29|1994-10-18|COLLECT COD|RAIL|requests haggle ironic deposits. iron| +40809|607271|44808|2|13|15317.12|0.07|0.06|A|F|1994-08-16|1994-10-15|1994-09-15|TAKE BACK RETURN|RAIL| gifts sleep furiously.| +40809|400592|13101|3|41|61195.37|0.05|0.04|A|F|1994-08-22|1994-09-26|1994-08-31|TAKE BACK RETURN|TRUCK|lyly bold deposits. express ide| +40809|741635|41636|4|47|78800.20|0.07|0.05|A|F|1994-11-17|1994-10-05|1994-11-23|TAKE BACK RETURN|SHIP|y brave instructions. f| +40810|476290|38800|1|5|6331.35|0.01|0.06|A|F|1992-10-20|1992-11-03|1992-10-22|COLLECT COD|RAIL|cies use furiously alongside of the bli| +40810|5246|30247|2|48|55259.52|0.10|0.05|R|F|1992-10-03|1992-10-12|1992-10-19|NONE|FOB|ly ironic accounts | +40810|162227|12228|3|15|19338.30|0.08|0.03|R|F|1992-10-10|1992-10-08|1992-10-16|TAKE BACK RETURN|FOB|cajole thinly. final foxes along the ironi| +40810|535129|22660|4|1|1164.10|0.07|0.02|R|F|1992-10-23|1992-11-14|1992-11-04|COLLECT COD|REG AIR|e carefully regu| +40810|898487|48488|5|10|14854.40|0.02|0.06|A|F|1992-11-14|1992-09-28|1992-11-24|COLLECT COD|REG AIR|nt instructions sleep blithely | +40810|870637|45672|6|17|27329.03|0.01|0.00|R|F|1992-11-16|1992-10-16|1992-11-26|TAKE BACK RETURN|TRUCK|carefully regular platelets haggl| +40811|216496|16497|1|39|55086.72|0.00|0.02|R|F|1993-03-31|1993-06-16|1993-04-08|TAKE BACK RETURN|TRUCK|heodolites | +40812|9031|21532|1|34|31961.02|0.05|0.07|A|F|1992-09-30|1992-09-29|1992-10-30|NONE|RAIL|final accounts use among the pinto beans. | +40812|769791|32307|2|30|55822.80|0.09|0.01|R|F|1992-08-20|1992-09-30|1992-08-31|COLLECT COD|AIR| boost blithely express p| +40812|862216|37251|3|6|7069.02|0.09|0.03|R|F|1992-11-23|1992-10-17|1992-12-11|COLLECT COD|REG AIR|ilent requests engage carefully alon| +40813|231406|18919|1|12|16048.68|0.04|0.02|A|F|1992-05-23|1992-05-19|1992-06-14|NONE|REG AIR|yly bold instructions. furiously regular th| +40814|66565|41568|1|21|32162.76|0.07|0.05|R|F|1992-07-01|1992-07-06|1992-07-18|NONE|RAIL|earls sublate furiously carefully ironic p| +40814|747179|9694|2|26|31879.64|0.00|0.04|A|F|1992-06-16|1992-08-07|1992-07-04|TAKE BACK RETURN|REG AIR|nd the fluffily regular accounts cajole ev| +40814|827077|2110|3|34|34137.02|0.07|0.04|A|F|1992-07-21|1992-07-07|1992-08-01|COLLECT COD|FOB|arefully reg| +40814|669010|44037|4|13|12726.74|0.08|0.08|R|F|1992-08-27|1992-07-18|1992-09-21|TAKE BACK RETURN|REG AIR| pinto beans eat furiously. express, sp| +40815|687686|37687|1|47|78661.55|0.09|0.00|N|O|1997-08-24|1997-08-25|1997-08-26|TAKE BACK RETURN|MAIL|onic courts wake. slyly pendin| +40815|922775|47812|2|44|79100.12|0.08|0.08|N|O|1997-11-14|1997-10-07|1997-12-07|COLLECT COD|REG AIR|ross the slyl| +40815|78781|41283|3|28|49273.84|0.01|0.08|N|O|1997-08-21|1997-10-11|1997-08-24|DELIVER IN PERSON|RAIL|f the instructi| +40815|62467|12468|4|36|51460.56|0.01|0.08|N|O|1997-08-04|1997-09-08|1997-09-02|NONE|REG AIR|ding platelets are across th| +40815|880600|18152|5|2|3161.12|0.09|0.06|N|O|1997-09-15|1997-10-22|1997-10-08|NONE|RAIL|uick foxes. carefully ironic pinto bean| +40840|486229|11248|1|20|24304.00|0.04|0.08|R|F|1992-02-21|1992-02-14|1992-02-22|TAKE BACK RETURN|RAIL|ithely regular theod| +40840|39986|14987|2|28|53927.44|0.01|0.03|R|F|1992-02-07|1992-02-14|1992-02-11|NONE|REG AIR|its. packages boost platelets. unusual| +40841|666641|16642|1|7|11253.27|0.03|0.02|A|F|1993-11-01|1993-12-12|1993-12-01|DELIVER IN PERSON|FOB|nic epitaphs are carefu| +40841|234177|34178|2|45|50002.20|0.01|0.05|R|F|1994-02-23|1993-12-23|1994-03-07|NONE|REG AIR|fully pending packages nag quickly. pack| +40841|800803|38352|3|4|6815.04|0.05|0.04|A|F|1994-02-13|1994-01-16|1994-03-05|DELIVER IN PERSON|SHIP|beans unwind carefu| +40841|79492|16996|4|19|27958.31|0.00|0.05|A|F|1993-12-01|1993-12-01|1993-12-22|NONE|MAIL| the furio| +40842|283145|20661|1|25|28203.25|0.10|0.05|A|F|1995-05-15|1995-06-13|1995-06-13|TAKE BACK RETURN|REG AIR|es. ironic, even foxes detect finally | +40842|816503|16504|2|5|7097.30|0.04|0.07|R|F|1995-05-17|1995-07-05|1995-06-12|COLLECT COD|TRUCK|sh slyly above the slow instruct| +40842|961083|11084|3|5|5720.20|0.07|0.07|N|O|1995-07-08|1995-05-30|1995-07-25|TAKE BACK RETURN|RAIL|eas. accounts above the even, eve| +40842|914109|1664|4|34|38184.04|0.01|0.02|A|F|1995-05-30|1995-05-30|1995-06-10|NONE|REG AIR|gainst the regular, | +40842|419530|7055|5|8|11596.08|0.03|0.08|N|F|1995-06-02|1995-06-01|1995-06-18|TAKE BACK RETURN|FOB|efully unusual ide| +40843|855458|17976|1|8|11307.28|0.09|0.00|N|O|1996-04-06|1996-02-20|1996-04-07|COLLECT COD|REG AIR|regular deposits engage fur| +40843|674407|11947|2|37|51110.69|0.09|0.00|N|O|1996-03-23|1996-03-20|1996-03-25|COLLECT COD|MAIL| to wake carefu| +40843|747517|22546|3|13|20338.24|0.04|0.01|N|O|1996-02-07|1996-02-26|1996-02-11|DELIVER IN PERSON|RAIL|onic packages sleep slyly carefully careful| +40844|446728|21745|1|12|20096.40|0.10|0.01|N|O|1998-03-05|1998-04-16|1998-03-13|TAKE BACK RETURN|RAIL|ernes boost furiou| +40844|148734|11237|2|38|67743.74|0.08|0.03|N|O|1998-05-30|1998-04-20|1998-06-14|TAKE BACK RETURN|RAIL|iously ironic pinto beans affix | +40844|758065|8066|3|44|49413.32|0.02|0.01|N|O|1998-03-17|1998-04-25|1998-04-07|NONE|RAIL|l pinto beans-- carefully expr| +40844|792344|17375|4|43|61761.33|0.01|0.00|N|O|1998-03-08|1998-04-11|1998-03-10|NONE|SHIP|ording to the blithely b| +40845|2198|27199|1|10|11001.90|0.06|0.00|N|O|1996-10-04|1996-11-02|1996-10-14|TAKE BACK RETURN|REG AIR|n accounts sleep slyl| +40845|931541|6578|2|15|23587.50|0.00|0.00|N|O|1996-11-16|1996-11-21|1996-12-11|DELIVER IN PERSON|SHIP|r ironic accounts. quickly ironic packages | +40845|406958|44483|3|12|22379.16|0.10|0.08|N|O|1996-11-16|1996-10-18|1996-11-19|DELIVER IN PERSON|FOB|regular, ironic gr| +40845|730694|18237|4|24|41391.84|0.01|0.05|N|O|1996-11-19|1996-11-27|1996-12-16|TAKE BACK RETURN|SHIP| ironic packages affix slyly eve| +40846|957670|7671|1|39|67377.57|0.10|0.05|N|O|1996-05-07|1996-05-14|1996-05-23|TAKE BACK RETURN|TRUCK|nal, even a| +40846|557842|7843|2|36|68393.52|0.08|0.01|N|O|1996-05-31|1996-04-22|1996-06-04|DELIVER IN PERSON|AIR|unusual somas. neve| +40846|637647|12672|3|6|9507.66|0.02|0.02|N|O|1996-03-11|1996-05-18|1996-03-21|NONE|MAIL|ronic requ| +40846|918940|43977|4|42|82273.80|0.02|0.05|N|O|1996-04-06|1996-05-12|1996-04-28|TAKE BACK RETURN|REG AIR|ymptotes hinder carefu| +40847|949484|49485|1|30|46003.20|0.05|0.07|A|F|1993-02-28|1993-03-17|1993-03-07|NONE|RAIL|fully unusual excuses integrate slyly fur| +40847|971147|21148|2|48|58468.80|0.03|0.04|R|F|1993-05-23|1993-03-14|1993-06-16|TAKE BACK RETURN|TRUCK|ld theodolites ma| +40847|54322|41826|3|5|6381.60|0.03|0.00|R|F|1993-05-22|1993-04-30|1993-06-03|NONE|FOB| final packages are about the regular, | +40847|982547|32548|4|23|37478.50|0.07|0.05|A|F|1993-04-06|1993-03-24|1993-04-26|TAKE BACK RETURN|SHIP|ly unusual instruct| +40847|662985|38012|5|15|29219.25|0.07|0.06|A|F|1993-05-28|1993-03-06|1993-06-13|DELIVER IN PERSON|REG AIR|ccounts de| +40872|865430|27948|1|4|5581.56|0.00|0.05|A|F|1992-10-10|1992-11-25|1992-11-09|DELIVER IN PERSON|REG AIR|rts kindle furiously slyly express ins| +40872|281450|6461|2|38|54394.72|0.03|0.03|A|F|1992-10-22|1992-11-06|1992-11-01|DELIVER IN PERSON|FOB|ts after the even, even| +40872|320912|33419|3|34|65718.60|0.01|0.05|A|F|1992-12-06|1992-11-26|1993-01-02|COLLECT COD|MAIL|lyly final instructions m| +40873|34434|9435|1|30|41052.90|0.01|0.06|N|O|1997-05-01|1997-06-05|1997-05-14|COLLECT COD|AIR|carefully ironic foxes wake! | +40873|725070|25071|2|34|37231.36|0.10|0.06|N|O|1997-06-14|1997-05-28|1997-07-14|DELIVER IN PERSON|RAIL|y to the pending accounts. ironic tithes| +40873|248501|36014|3|25|36237.25|0.01|0.08|N|O|1997-06-24|1997-06-01|1997-07-19|NONE|REG AIR|aggle throug| +40873|554165|41699|4|48|58518.72|0.09|0.08|N|O|1997-06-07|1997-06-04|1997-06-20|NONE|FOB|equests. bold instructions boos| +40874|361895|49417|1|12|23482.56|0.10|0.04|N|O|1998-09-13|1998-10-23|1998-10-05|DELIVER IN PERSON|RAIL|es detect furiously. blithely regul| +40874|360317|35332|2|26|35809.80|0.09|0.05|N|O|1998-11-06|1998-09-20|1998-11-15|NONE|FOB|lar requests| +40874|832462|32463|3|15|20916.30|0.10|0.06|N|O|1998-11-17|1998-10-02|1998-11-30|TAKE BACK RETURN|AIR|ate according | +40874|185737|48241|4|10|18227.30|0.02|0.01|N|O|1998-10-01|1998-10-16|1998-10-17|DELIVER IN PERSON|AIR|ests. final accounts among th| +40874|677102|14642|5|35|37767.45|0.05|0.03|N|O|1998-08-06|1998-09-12|1998-08-22|NONE|TRUCK|carefully quickly un| +40874|39741|27242|6|47|78994.78|0.03|0.05|N|O|1998-10-03|1998-09-29|1998-10-13|COLLECT COD|AIR|carefully pending accounts. qui| +40874|915705|40742|7|39|67105.74|0.01|0.02|N|O|1998-09-17|1998-10-27|1998-09-23|DELIVER IN PERSON|AIR|ending foxes are bravely against the s| +40875|243605|31118|1|18|27874.62|0.02|0.03|A|F|1992-12-16|1992-10-18|1992-12-28|DELIVER IN PERSON|REG AIR|oxes wake above the slyly bold r| +40875|258804|21310|2|9|15865.11|0.07|0.05|R|F|1992-09-28|1992-11-14|1992-10-07|DELIVER IN PERSON|FOB|nal platelets. fl| +40875|715473|15474|3|35|52095.40|0.05|0.04|A|F|1992-11-24|1992-10-03|1992-12-20|TAKE BACK RETURN|REG AIR|s should ha| +40876|153765|41275|1|18|32737.68|0.07|0.04|N|O|1997-09-15|1997-09-18|1997-09-26|DELIVER IN PERSON|MAIL| slyly excuses. requests across t| +40877|167753|42760|1|30|54622.50|0.00|0.01|N|O|1996-08-17|1996-06-10|1996-09-16|TAKE BACK RETURN|TRUCK|he blithely | +40877|418002|30511|2|42|38639.16|0.09|0.05|N|O|1996-06-15|1996-07-17|1996-07-11|NONE|FOB| pinto beans. ideas are sl| +40877|344365|44366|3|23|32415.05|0.00|0.00|N|O|1996-05-24|1996-06-15|1996-05-25|COLLECT COD|TRUCK| theodolites. even, r| +40877|742523|42524|4|14|21916.86|0.08|0.04|N|O|1996-06-12|1996-06-12|1996-06-14|COLLECT COD|REG AIR|foxes affix. final the| +40877|582692|20226|5|50|88733.50|0.04|0.05|N|O|1996-05-27|1996-07-30|1996-06-20|TAKE BACK RETURN|FOB|kages thrash about the blithely| +40878|495555|8065|1|22|34111.66|0.05|0.04|A|F|1993-12-07|1994-02-05|1993-12-15|COLLECT COD|FOB|y ironic requests. car| +40878|784733|9764|2|14|25447.80|0.05|0.06|A|F|1994-02-18|1994-01-13|1994-03-07|DELIVER IN PERSON|MAIL|onic packages are furio| +40878|996717|9237|3|8|14509.36|0.06|0.02|A|F|1994-01-14|1994-02-12|1994-01-18|DELIVER IN PERSON|AIR|ites are carefully. slyly regular pinto be| +40878|819699|19700|4|44|71220.60|0.08|0.08|A|F|1993-12-12|1994-02-01|1993-12-24|DELIVER IN PERSON|SHIP|ages wake against the slyly even| +40878|669354|44381|5|16|21173.12|0.01|0.03|A|F|1994-03-30|1994-02-06|1994-04-06|DELIVER IN PERSON|RAIL|ing accounts| +40879|561057|36080|1|16|17888.48|0.03|0.05|N|O|1996-01-26|1995-11-27|1996-02-14|COLLECT COD|AIR| affix blithely after the furious| +40879|681325|6352|2|19|24819.51|0.01|0.02|N|O|1995-10-20|1995-11-30|1995-10-24|DELIVER IN PERSON|AIR| the furiously e| +40879|16614|16615|3|45|68877.45|0.05|0.07|N|O|1996-01-28|1995-12-07|1996-02-06|NONE|FOB|etect against| +40879|224108|49117|4|15|15481.35|0.06|0.00|N|O|1996-01-08|1995-12-14|1996-01-13|NONE|TRUCK|eans! quickly silent| +40879|574272|36784|5|22|29617.50|0.08|0.04|N|O|1995-11-07|1995-12-14|1995-11-19|TAKE BACK RETURN|SHIP|ns kindle blithely blithely sile| +40904|664920|27434|1|44|82935.16|0.04|0.06|A|F|1994-05-22|1994-05-27|1994-05-27|TAKE BACK RETURN|MAIL| are furiously carefully | +40904|307384|7385|2|35|48697.95|0.03|0.05|R|F|1994-07-25|1994-06-30|1994-07-26|COLLECT COD|FOB|l platelets wake | +40904|191256|28766|3|50|67362.50|0.04|0.06|A|F|1994-05-03|1994-06-30|1994-05-31|NONE|TRUCK|structions ar| +40904|427498|27499|4|28|39913.16|0.08|0.05|R|F|1994-07-11|1994-06-23|1994-07-17|DELIVER IN PERSON|RAIL|ic grouches. furiously express req| +40904|945479|7998|5|42|64026.06|0.04|0.01|R|F|1994-04-19|1994-07-14|1994-05-08|DELIVER IN PERSON|RAIL|unts wake ca| +40905|182583|20093|1|41|68288.78|0.09|0.06|A|F|1994-09-07|1994-08-02|1994-10-05|TAKE BACK RETURN|FOB|s detect. final, fina| +40905|660157|35184|2|5|5585.60|0.03|0.07|A|F|1994-09-01|1994-08-16|1994-09-16|TAKE BACK RETURN|REG AIR| furiously according to the slyly regu| +40905|252955|27966|3|18|34342.92|0.07|0.03|A|F|1994-09-23|1994-08-21|1994-10-01|NONE|TRUCK|ts nag carefully regular, iron| +40905|411595|36612|4|28|42183.96|0.07|0.05|A|F|1994-09-04|1994-08-13|1994-09-07|NONE|TRUCK|lyly regular packages. unusual, bold| +40905|662987|38014|5|36|70198.20|0.07|0.06|R|F|1994-08-10|1994-07-31|1994-09-09|TAKE BACK RETURN|FOB| quickly regula| +40906|984045|21603|1|37|41773.00|0.01|0.08|A|F|1994-01-15|1994-01-26|1994-02-03|DELIVER IN PERSON|FOB|mong the silent deposits? | +40906|835891|23440|2|48|87688.80|0.10|0.07|R|F|1994-02-09|1994-02-02|1994-02-20|DELIVER IN PERSON|RAIL| against the| +40907|896086|46087|1|34|36789.36|0.00|0.04|N|O|1996-01-31|1995-12-28|1996-02-18|DELIVER IN PERSON|MAIL|: furiously ironic notornis use furiousl| +40907|503305|40836|2|9|11774.52|0.02|0.05|N|O|1996-01-26|1995-12-05|1996-02-05|DELIVER IN PERSON|MAIL|ts nag slyly against the expr| +40907|35655|35656|3|3|4771.95|0.03|0.05|N|O|1996-01-24|1995-12-11|1996-01-30|NONE|MAIL| past the accounts. ideas use| +40907|238149|654|4|47|51095.11|0.04|0.05|N|O|1995-11-30|1995-11-08|1995-12-14|DELIVER IN PERSON|SHIP|ily quiet waters sleep | +40907|553518|41052|5|14|22000.86|0.05|0.01|N|O|1995-12-29|1995-12-07|1996-01-13|COLLECT COD|AIR|ts wake across the carefully even| +40908|51052|38556|1|43|43131.15|0.03|0.03|N|O|1996-08-03|1996-06-28|1996-08-21|TAKE BACK RETURN|SHIP|ously regular deposits above| +40909|258675|21181|1|31|50643.46|0.10|0.02|A|F|1993-08-16|1993-07-14|1993-09-11|DELIVER IN PERSON|SHIP| multipliers. fina| +40909|538138|25669|2|16|18817.76|0.03|0.04|R|F|1993-06-27|1993-06-15|1993-07-12|DELIVER IN PERSON|TRUCK|ending, unusual warhorses along | +40910|278217|15733|1|46|54979.20|0.06|0.06|N|O|1997-09-27|1997-10-06|1997-09-29|DELIVER IN PERSON|FOB|ag across the asymptot| +40910|988973|1493|2|14|28867.02|0.07|0.01|N|O|1997-10-13|1997-09-26|1997-10-28|TAKE BACK RETURN|AIR|bold instructions hinder fluffily final| +40910|660025|10026|3|13|12804.87|0.10|0.02|N|O|1997-08-16|1997-09-08|1997-09-12|TAKE BACK RETURN|RAIL|across the a| +40910|26995|39496|4|15|28829.85|0.10|0.00|N|O|1997-08-24|1997-10-08|1997-09-05|NONE|FOB|e enticingly. slyly bold depo| +40911|283992|33993|1|15|29639.70|0.08|0.03|N|O|1997-01-18|1997-01-27|1997-02-13|COLLECT COD|AIR|sts wake blithely after the slyly special a| +40936|99209|36713|1|36|43495.20|0.02|0.02|A|F|1992-01-31|1992-03-25|1992-02-16|TAKE BACK RETURN|AIR|olites detec| +40937|156418|43928|1|33|48655.53|0.07|0.03|R|F|1994-11-13|1994-11-27|1994-11-28|COLLECT COD|FOB|theodolite| +40937|915541|15542|2|42|65373.00|0.02|0.07|R|F|1994-11-16|1994-11-11|1994-12-16|TAKE BACK RETURN|SHIP|dolites haggle furiously doggedl| +40937|494781|44782|3|26|46169.76|0.10|0.06|A|F|1995-01-15|1994-11-30|1995-01-23|COLLECT COD|MAIL|nooze slyly special excuses.| +40937|767626|17627|4|20|33871.80|0.04|0.06|R|F|1994-10-01|1994-11-29|1994-10-11|NONE|TRUCK|fily pending braids cajole careful| +40937|480579|43089|5|24|37429.20|0.00|0.02|R|F|1994-11-09|1994-12-22|1994-11-15|COLLECT COD|SHIP| are blithely. furiously ironic pa| +40937|90427|27931|6|45|63783.90|0.02|0.02|A|F|1995-01-05|1994-12-02|1995-01-09|NONE|FOB|uests promise sl| +40938|646683|21708|1|18|29333.70|0.02|0.02|N|O|1997-10-30|1997-10-25|1997-11-08|NONE|AIR| requests. slyl| +40938|788375|25921|2|20|29266.80|0.02|0.02|N|O|1997-11-03|1997-09-03|1997-11-19|NONE|MAIL|lphins. slyly even deposits might| +40938|214719|2232|3|6|9802.20|0.08|0.07|N|O|1997-11-04|1997-10-15|1997-11-15|DELIVER IN PERSON|SHIP|ests wake permanently theodolites. bli| +40938|766235|3781|4|40|52048.00|0.00|0.00|N|O|1997-11-20|1997-09-05|1997-11-30|NONE|AIR|cross the final deposits. caref| +40938|100460|12963|5|37|54037.02|0.06|0.07|N|O|1997-08-25|1997-10-17|1997-09-20|DELIVER IN PERSON|FOB|eposits. even deposits b| +40938|415942|3467|6|28|52021.76|0.02|0.00|N|O|1997-08-13|1997-10-08|1997-09-06|TAKE BACK RETURN|AIR| forges above the b| +40939|257781|32792|1|3|5216.31|0.03|0.01|R|F|1993-08-30|1993-10-14|1993-09-27|NONE|TRUCK| boost slyly against th| +40939|516158|3689|2|14|16437.82|0.06|0.05|A|F|1993-11-16|1993-11-15|1993-11-26|TAKE BACK RETURN|REG AIR|hockey players cajole even| +40939|51523|39027|3|27|39812.04|0.09|0.08|A|F|1993-09-12|1993-09-30|1993-09-21|COLLECT COD|MAIL| foxes sleep across the even asymptot| +40940|559587|47121|1|14|23051.84|0.05|0.02|A|F|1995-02-03|1995-02-16|1995-02-12|COLLECT COD|RAIL|y regular pinto beans sleep fluffily p| +40940|978228|28229|2|43|56165.74|0.02|0.06|A|F|1995-04-10|1995-04-14|1995-05-05|TAKE BACK RETURN|SHIP|tly ironic ideas. quickly ironic depe| +40940|62883|387|3|35|64605.80|0.05|0.01|A|F|1995-02-22|1995-02-26|1995-03-13|NONE|SHIP|nt accounts doze furiously| +40941|367613|5135|1|12|20167.20|0.08|0.04|N|O|1998-07-18|1998-07-22|1998-07-31|DELIVER IN PERSON|RAIL|furiously accounts. thinly dogged ideas| +40941|467114|4642|2|23|24865.07|0.10|0.02|N|O|1998-06-30|1998-06-18|1998-07-28|TAKE BACK RETURN|FOB| accounts run against the final requ| +40941|770948|45979|3|46|92869.86|0.05|0.01|N|O|1998-07-29|1998-07-29|1998-08-19|NONE|SHIP|s. requests snooze furiously. carefully| +40941|313600|13601|4|44|70997.96|0.08|0.06|N|O|1998-08-12|1998-06-15|1998-08-22|COLLECT COD|REG AIR| foxes. silent packages should have to are | +40942|14919|2420|1|23|42179.93|0.10|0.00|A|F|1994-03-24|1994-04-05|1994-04-15|COLLECT COD|REG AIR|ully slyly | +40942|729534|4563|2|28|43778.00|0.05|0.01|A|F|1994-04-13|1994-03-09|1994-04-17|COLLECT COD|REG AIR|s. quickly regular instructions integra| +40943|176668|1675|1|26|45361.16|0.00|0.01|A|F|1992-05-06|1992-04-19|1992-05-25|COLLECT COD|REG AIR| blithely eve| +40968|660918|48458|1|31|58245.28|0.04|0.04|N|O|1998-06-16|1998-07-02|1998-06-25|NONE|SHIP|ven accounts. blithely special pinto beans| +40968|45336|20337|2|11|14094.63|0.04|0.04|N|O|1998-07-17|1998-08-04|1998-07-21|DELIVER IN PERSON|AIR|tegrate blithely: blithely regular accoun| +40968|951684|26723|3|6|10413.84|0.05|0.02|N|O|1998-07-25|1998-07-10|1998-08-19|NONE|REG AIR|rave patterns nag stealthily ironic p| +40968|941037|41038|4|12|12935.88|0.10|0.05|N|O|1998-08-13|1998-06-29|1998-09-02|TAKE BACK RETURN|AIR|ly ironic accounts| +40968|996441|8961|5|7|10761.80|0.00|0.02|N|O|1998-07-15|1998-08-08|1998-08-11|NONE|MAIL|equests. even excuses shall have to kindle | +40968|179319|4326|6|5|6991.55|0.07|0.04|N|O|1998-07-17|1998-07-17|1998-07-19|NONE|REG AIR|fluffily among the unusu| +40969|343120|5627|1|13|15120.43|0.08|0.05|N|O|1998-01-05|1998-03-03|1998-01-30|TAKE BACK RETURN|MAIL|ic pinto beans haggle dolphins. packag| +40970|413120|13121|1|45|46489.50|0.05|0.03|N|O|1997-01-28|1997-01-17|1997-02-13|NONE|SHIP|ns sleep furiously fin| +40970|307752|45271|2|30|52792.20|0.06|0.06|N|O|1996-12-22|1997-02-22|1997-01-10|DELIVER IN PERSON|SHIP|olites after the instructions cajole qu| +40970|387259|49767|3|30|40387.20|0.04|0.04|N|O|1997-03-13|1997-03-12|1997-03-25|DELIVER IN PERSON|AIR|ccounts. express instru| +40970|658228|33255|4|44|52192.36|0.10|0.05|N|O|1997-03-07|1997-02-25|1997-03-31|NONE|FOB|furiously | +40970|833770|33771|5|50|85186.50|0.02|0.08|N|O|1997-02-26|1997-02-10|1997-03-08|COLLECT COD|AIR|ithely pending requests wake blithely. | +40970|168694|43701|6|19|33491.11|0.07|0.00|N|O|1997-03-10|1997-01-23|1997-03-15|TAKE BACK RETURN|MAIL|ackages use slowly ironic grouch| +40971|448093|23110|1|23|23944.61|0.02|0.03|A|F|1993-10-15|1993-12-15|1993-10-19|COLLECT COD|AIR|layers use fluffily. bold, unusual dep| +40971|83056|45558|2|15|15585.75|0.05|0.08|A|F|1994-01-16|1993-11-14|1994-02-14|DELIVER IN PERSON|SHIP|s. carefully slow foxes across the busily| +40972|122151|47156|1|2|2346.30|0.10|0.06|R|F|1992-06-27|1992-06-20|1992-07-23|DELIVER IN PERSON|SHIP|hily even packages. carefully regular depos| +40972|988070|13109|2|41|47479.23|0.09|0.03|R|F|1992-05-24|1992-06-18|1992-06-09|NONE|RAIL| blithely ex| +40973|759211|9212|1|28|35565.04|0.10|0.08|N|O|1998-05-02|1998-06-20|1998-05-13|COLLECT COD|RAIL|l dependencies detect blithely above | +40974|91662|41663|1|29|47956.14|0.04|0.01|A|F|1994-06-21|1994-08-16|1994-06-29|COLLECT COD|FOB|ole furiously at the quietly| +40974|546493|21514|2|15|23092.05|0.10|0.01|R|F|1994-08-10|1994-07-11|1994-08-27|TAKE BACK RETURN|TRUCK|s. bold platel| +40974|907760|45315|3|44|77779.68|0.03|0.01|A|F|1994-09-15|1994-07-17|1994-09-21|NONE|REG AIR|y express account| +40975|107280|7281|1|6|7723.68|0.10|0.02|N|O|1997-09-20|1997-09-30|1997-10-02|NONE|SHIP|g to the carefully unusual asy| +40975|52772|40276|2|2|3449.54|0.05|0.04|N|O|1997-11-21|1997-10-12|1997-12-18|DELIVER IN PERSON|TRUCK|the ironic requests. ev| +40975|928157|28158|3|13|15406.43|0.01|0.02|N|O|1997-08-19|1997-09-12|1997-08-26|COLLECT COD|TRUCK|uthlessly regular theodo| +40975|526291|38802|4|26|34249.02|0.09|0.02|N|O|1997-08-08|1997-09-11|1997-08-26|NONE|RAIL|l deposits. carefully regular dolphins caj| +41000|764286|1832|1|50|67512.50|0.05|0.08|A|F|1994-07-22|1994-09-07|1994-08-21|TAKE BACK RETURN|MAIL|pecial platelets. furiously regular asymp| +41000|347214|9721|2|37|46664.40|0.01|0.07|A|F|1994-08-14|1994-09-23|1994-08-24|TAKE BACK RETURN|MAIL|ross the pending accounts u| +41000|614092|26605|3|13|13078.78|0.00|0.05|R|F|1994-09-12|1994-08-30|1994-09-16|COLLECT COD|TRUCK|ts. slyly final pac| +41000|34503|22004|4|31|44562.50|0.01|0.05|R|F|1994-11-02|1994-09-28|1994-11-05|DELIVER IN PERSON|SHIP|hely regular excuses. quickly final i| +41000|876783|1818|5|27|47512.98|0.04|0.03|R|F|1994-08-21|1994-09-07|1994-08-29|NONE|MAIL|egular dependencies. ironic ideas doze q| +41001|877664|2699|1|18|29549.16|0.09|0.01|R|F|1992-05-16|1992-03-21|1992-06-12|TAKE BACK RETURN|AIR| cajole fluffily. furiously unusual r| +41001|894806|19841|2|17|30612.92|0.06|0.02|A|F|1992-02-21|1992-03-15|1992-03-22|COLLECT COD|FOB|ons. furiously regular instru| +41001|991097|41098|3|3|3564.15|0.05|0.03|A|F|1992-03-13|1992-03-22|1992-04-07|COLLECT COD|SHIP|ully regular requests. | +41001|353528|3529|4|4|6326.04|0.02|0.01|A|F|1992-02-04|1992-03-22|1992-02-19|COLLECT COD|MAIL|ly requests. requests are b| +41001|734321|34322|5|40|54211.60|0.07|0.06|R|F|1992-04-24|1992-04-13|1992-05-13|COLLECT COD|FOB|t asymptotes sleep| +41001|732952|32953|6|35|69472.20|0.06|0.03|R|F|1992-04-25|1992-03-25|1992-05-23|DELIVER IN PERSON|REG AIR|efully even, unusual requests. blithel| +41002|75821|13325|1|15|26952.30|0.05|0.07|R|F|1994-03-20|1994-03-21|1994-04-15|DELIVER IN PERSON|FOB|ages. regular pinto| +41002|314222|39235|2|35|43267.35|0.02|0.00|A|F|1994-02-19|1994-04-16|1994-03-05|DELIVER IN PERSON|FOB|lly regular theodolites. carefully even| +41003|355298|42820|1|45|60897.60|0.03|0.02|N|F|1995-06-10|1995-05-29|1995-07-08|DELIVER IN PERSON|AIR|ajole excuses. careful requests can s| +41003|486194|11213|2|31|36585.27|0.01|0.07|R|F|1995-04-11|1995-05-04|1995-04-25|NONE|RAIL|s! instructio| +41004|491384|28912|1|41|56389.76|0.03|0.05|A|F|1992-11-02|1992-11-30|1992-11-28|NONE|MAIL| regular accoun| +41004|677487|15027|2|26|38075.70|0.07|0.04|A|F|1992-11-07|1993-01-16|1992-11-14|DELIVER IN PERSON|TRUCK|. dolphins nag| +41004|509644|34665|3|24|39686.88|0.02|0.04|R|F|1992-11-25|1992-11-28|1992-12-20|COLLECT COD|RAIL|otes integrate slyly a| +41005|121816|46821|1|21|38594.01|0.07|0.04|R|F|1995-01-14|1994-12-23|1995-01-27|DELIVER IN PERSON|REG AIR|unts haggle carefully. regular dolp| +41005|348944|23957|2|27|53809.11|0.10|0.05|R|F|1995-02-17|1995-01-11|1995-03-17|DELIVER IN PERSON|AIR|ly silent theodolites. bli| +41005|690001|15028|3|29|28738.13|0.03|0.05|A|F|1994-11-08|1995-01-07|1994-11-17|TAKE BACK RETURN|AIR|uffily even packages at the unusua| +41005|833527|21076|4|19|27749.12|0.08|0.04|R|F|1994-12-15|1994-12-27|1995-01-10|DELIVER IN PERSON|REG AIR|grate furiously evenly final depo| +41006|748935|11450|1|35|69436.50|0.03|0.00|N|O|1996-03-21|1996-03-23|1996-04-20|TAKE BACK RETURN|SHIP| pinto beans about the furiously fina| +41006|336441|48948|2|32|47277.76|0.08|0.00|N|O|1996-03-18|1996-02-27|1996-03-24|DELIVER IN PERSON|REG AIR|r the pending| +41007|883435|45953|1|16|22694.24|0.07|0.02|N|O|1998-08-21|1998-06-30|1998-08-30|TAKE BACK RETURN|AIR|ut the quickly unusual deposits ar| +41007|888056|13091|2|32|33408.32|0.09|0.07|N|O|1998-07-01|1998-06-29|1998-07-24|NONE|RAIL|ithely agains| +41032|355590|43112|1|13|21392.54|0.00|0.02|N|O|1997-09-05|1997-08-09|1997-09-21|NONE|SHIP|lithely final depths toward the reque| +41032|397107|22122|2|16|19265.44|0.10|0.03|N|O|1997-09-18|1997-07-26|1997-10-15|TAKE BACK RETURN|TRUCK|kages. final platelets ar| +41032|176656|14166|3|36|62375.40|0.09|0.00|N|O|1997-10-02|1997-07-27|1997-10-05|TAKE BACK RETURN|FOB|ously quickly bold instructions.| +41033|188300|25810|1|12|16659.60|0.02|0.05|N|O|1996-08-08|1996-10-19|1996-08-19|COLLECT COD|REG AIR|even accounts besides the bold, final accou| +41033|746621|46622|2|6|10005.54|0.04|0.07|N|O|1996-08-26|1996-10-20|1996-09-12|COLLECT COD|SHIP|egular platelet| +41033|456267|6268|3|13|15902.12|0.00|0.03|N|O|1996-10-30|1996-09-25|1996-11-07|NONE|TRUCK|sits eat carefully aga| +41033|476831|14359|4|47|84967.07|0.00|0.04|N|O|1996-11-04|1996-10-11|1996-11-24|NONE|RAIL|oxes snooze. blithely final theodolit| +41033|85447|47949|5|45|64459.80|0.00|0.04|N|O|1996-10-08|1996-09-11|1996-10-09|DELIVER IN PERSON|TRUCK|packages are carefull| +41034|533446|8467|1|15|22191.30|0.08|0.07|N|O|1998-01-10|1998-02-07|1998-01-26|TAKE BACK RETURN|RAIL|ns nag carefull| +41034|616086|28599|2|41|41084.05|0.07|0.06|N|O|1998-03-31|1998-01-18|1998-04-22|COLLECT COD|RAIL|osits affix quickly. quickly bold ideas ab| +41034|556415|31438|3|47|69155.33|0.07|0.03|N|O|1998-02-25|1998-01-24|1998-03-02|TAKE BACK RETURN|FOB|o beans print quickly. sp| +41034|662496|37523|4|22|32086.12|0.02|0.07|N|O|1998-03-24|1998-01-28|1998-04-04|COLLECT COD|RAIL|ss dependencies integrate thinly regul| +41034|557960|7961|5|34|68609.96|0.03|0.08|N|O|1997-12-31|1998-02-03|1998-01-12|DELIVER IN PERSON|REG AIR|e special, regula| +41034|625873|898|6|37|66557.08|0.03|0.06|N|O|1998-03-11|1998-02-04|1998-03-27|TAKE BACK RETURN|REG AIR|arly speci| +41035|100645|25650|1|8|13165.12|0.10|0.05|A|F|1994-10-15|1994-10-15|1994-10-19|COLLECT COD|AIR|kly express accounts. blithely p| +41035|538311|822|2|16|21588.64|0.07|0.03|A|F|1994-12-10|1994-10-13|1994-12-22|DELIVER IN PERSON|TRUCK|ve the foxes impress qu| +41035|387683|191|3|38|67285.46|0.03|0.03|R|F|1994-11-18|1994-10-03|1994-12-08|DELIVER IN PERSON|SHIP|regular reques| +41035|779097|16643|4|40|47042.40|0.07|0.08|A|F|1994-09-28|1994-10-25|1994-10-07|COLLECT COD|RAIL|haggle. slyly bold acco| +41035|279539|4550|5|39|59222.28|0.00|0.03|R|F|1994-10-04|1994-10-31|1994-10-19|TAKE BACK RETURN|REG AIR|unts. ironic asymptotes ar| +41035|204725|17230|6|30|48891.30|0.03|0.04|A|F|1994-11-20|1994-10-31|1994-11-25|TAKE BACK RETURN|MAIL|en ideas cajole furiously final accounts. | +41036|915655|40692|1|1|1670.61|0.05|0.02|N|O|1997-06-11|1997-06-24|1997-06-23|COLLECT COD|AIR| boost quickly brave dep| +41036|412491|37508|2|50|70173.50|0.01|0.01|N|O|1997-05-08|1997-07-16|1997-05-12|DELIVER IN PERSON|MAIL|furiously final foxes. f| +41036|734930|22473|3|24|47157.60|0.04|0.06|N|O|1997-07-09|1997-07-06|1997-07-25|COLLECT COD|REG AIR|p slyly. slyly even p| +41036|963888|13889|4|35|68314.40|0.03|0.03|N|O|1997-07-31|1997-06-24|1997-08-14|NONE|AIR|s cajole carefully against the| +41036|49553|12054|5|24|36061.20|0.01|0.08|N|O|1997-05-10|1997-07-12|1997-05-18|COLLECT COD|REG AIR|ully final pinto b| +41036|821602|34119|6|17|25900.52|0.05|0.00|N|O|1997-07-20|1997-07-10|1997-08-05|TAKE BACK RETURN|REG AIR|ly. special forges are car| +41036|654027|41567|7|26|25505.74|0.00|0.03|N|O|1997-08-17|1997-05-26|1997-09-15|NONE|RAIL|lly ironic instru| +41037|224776|49785|1|41|69731.16|0.04|0.05|A|F|1993-11-25|1993-12-14|1993-12-05|NONE|REG AIR|ress foxes. reque| +41037|794022|19053|2|36|40175.64|0.04|0.07|R|F|1993-11-17|1993-12-08|1993-12-11|COLLECT COD|RAIL|ly pending realms. unusual, e| +41038|789544|2060|1|30|49005.30|0.08|0.06|A|F|1993-05-23|1993-03-29|1993-05-25|NONE|TRUCK|equests sleep| +41039|401521|26538|1|40|56900.00|0.04|0.04|A|F|1994-09-14|1994-07-05|1994-09-16|NONE|REG AIR|uses. carefully iron| +41039|354139|16647|2|10|11931.20|0.02|0.08|A|F|1994-08-14|1994-08-01|1994-08-30|DELIVER IN PERSON|AIR|ly furiously dogged deposits. blithe| +41039|999121|11641|3|10|12200.80|0.00|0.01|R|F|1994-08-21|1994-08-26|1994-09-17|TAKE BACK RETURN|TRUCK|encies use f| +41039|223596|36101|4|32|48626.56|0.01|0.02|R|F|1994-09-11|1994-08-08|1994-10-10|COLLECT COD|FOB|s unusual accounts wa| +41064|538284|38285|1|26|34378.76|0.09|0.01|R|F|1994-04-20|1994-04-18|1994-05-09|NONE|AIR|ently even requ| +41065|345878|45879|1|26|50020.36|0.00|0.01|N|O|1996-11-03|1996-10-07|1996-11-07|COLLECT COD|FOB|ounts are | +41065|159511|9512|2|4|6282.04|0.06|0.05|N|O|1996-10-06|1996-10-17|1996-10-24|TAKE BACK RETURN|SHIP|l pinto beans boost slowly even| +41065|887306|24858|3|5|6466.30|0.03|0.04|N|O|1996-11-16|1996-10-31|1996-12-05|TAKE BACK RETURN|TRUCK|inal pinto bea| +41065|936111|48630|4|32|36706.24|0.04|0.02|N|O|1996-11-30|1996-11-01|1996-12-29|COLLECT COD|FOB| have to sleep among the reg| +41066|515737|40758|1|30|52581.30|0.01|0.02|R|F|1995-03-16|1995-05-10|1995-04-10|TAKE BACK RETURN|SHIP|ilent requests nag carefully bli| +41066|983983|46503|2|18|37204.92|0.03|0.06|R|F|1995-03-18|1995-03-30|1995-03-20|DELIVER IN PERSON|FOB| quickly express packages sleep| +41066|790617|40618|3|6|10245.48|0.02|0.01|A|F|1995-05-14|1995-04-26|1995-05-20|NONE|SHIP|the blithely final| +41066|889428|14463|4|31|43938.78|0.09|0.01|A|F|1995-06-03|1995-04-16|1995-06-15|DELIVER IN PERSON|TRUCK|lly fluffy foxes. quickly ir| +41067|713912|38941|1|23|44295.24|0.01|0.02|A|F|1994-07-26|1994-06-18|1994-07-27|DELIVER IN PERSON|SHIP|gular deposits snooze along th| +41068|399279|24294|1|3|4134.78|0.03|0.08|N|O|1996-10-05|1996-08-25|1996-10-29|COLLECT COD|MAIL|its cajole among the ironic, even a| +41068|669114|44141|2|6|6498.48|0.08|0.04|N|O|1996-11-05|1996-09-04|1996-11-16|TAKE BACK RETURN|SHIP|en asymptotes wake furiously among the fin| +41068|791611|16642|3|39|66400.62|0.05|0.04|N|O|1996-08-15|1996-09-11|1996-08-24|COLLECT COD|RAIL|instructions. blithely| +41068|590509|15532|4|38|60780.24|0.10|0.02|N|O|1996-09-07|1996-09-02|1996-10-07|NONE|TRUCK| ironic requests. furiou| +41068|669949|19950|5|5|9594.55|0.01|0.01|N|O|1996-10-02|1996-09-13|1996-10-18|TAKE BACK RETURN|AIR|quickly express deposits cajole s| +41068|823031|35548|6|2|1907.98|0.06|0.04|N|O|1996-08-01|1996-09-06|1996-08-25|COLLECT COD|SHIP|fully along the furiously bold | +41068|667065|29579|7|4|4128.12|0.03|0.05|N|O|1996-08-23|1996-09-03|1996-09-19|COLLECT COD|AIR|xes. orbits cajole carefully i| +41069|360188|22696|1|43|53671.31|0.03|0.07|N|O|1997-07-09|1997-05-11|1997-07-23|DELIVER IN PERSON|AIR|ar requests cajole fluffily. pendin| +41069|666898|16899|2|8|14918.88|0.09|0.03|N|O|1997-05-26|1997-04-11|1997-06-25|COLLECT COD|FOB|s. quickly express deposits wake carefully| +41069|548220|48221|3|33|41850.60|0.01|0.07|N|O|1997-03-27|1997-04-26|1997-04-15|TAKE BACK RETURN|SHIP|ependencies. unusual, pending packa| +41069|928845|3882|4|46|86194.80|0.00|0.08|N|O|1997-06-25|1997-04-18|1997-07-16|TAKE BACK RETURN|TRUCK| use carefully along the | +41069|89587|27091|5|16|25225.28|0.09|0.04|N|O|1997-04-21|1997-05-22|1997-05-02|DELIVER IN PERSON|TRUCK| are. sentiments cajole quickly. f| +41070|966453|16454|1|19|28868.79|0.08|0.00|N|O|1996-08-06|1996-07-17|1996-08-17|COLLECT COD|FOB|lyly pending accounts wake quickly even | +41070|169451|44458|2|24|36490.80|0.01|0.07|N|O|1996-07-05|1996-08-30|1996-07-15|NONE|AIR|equests above the Tiresias wake blithely| +41070|946871|46872|3|29|55617.07|0.03|0.07|N|O|1996-09-01|1996-08-31|1996-09-25|DELIVER IN PERSON|REG AIR|al ideas cajole. carefully silent| +41071|188116|620|1|16|19265.76|0.01|0.08|A|F|1993-05-10|1993-04-20|1993-05-29|NONE|TRUCK|ckages use ca| +41071|659651|22165|2|8|12884.96|0.04|0.06|R|F|1993-06-14|1993-03-28|1993-07-07|DELIVER IN PERSON|RAIL|l ideas unwind quickly ironi| +41071|743414|30957|3|10|14573.80|0.07|0.06|R|F|1993-04-07|1993-04-05|1993-04-12|TAKE BACK RETURN|FOB|ould cajole sl| +41071|558387|45921|4|17|24571.12|0.07|0.04|R|F|1993-04-06|1993-05-09|1993-04-28|COLLECT COD|FOB|eposits wak| +41071|796612|46613|5|45|76886.10|0.05|0.02|A|F|1993-06-09|1993-04-21|1993-06-28|DELIVER IN PERSON|MAIL|e slyly above| +41096|631383|6408|1|22|28915.70|0.01|0.03|N|O|1998-05-14|1998-04-04|1998-05-27|DELIVER IN PERSON|SHIP| according to the daringly final dep| +41096|648083|10596|2|16|16496.80|0.08|0.01|N|O|1998-04-15|1998-03-18|1998-05-03|NONE|MAIL|blithely pending| +41097|753946|28977|1|12|23998.92|0.02|0.04|N|O|1995-10-24|1995-11-02|1995-11-11|TAKE BACK RETURN|FOB|. furiousl| +41097|558677|8678|2|21|36448.65|0.02|0.01|N|O|1995-12-14|1995-11-04|1995-12-15|TAKE BACK RETURN|TRUCK|y regular instructions; sl| +41097|681025|31026|3|29|29173.71|0.08|0.05|N|O|1995-11-24|1995-11-18|1995-12-02|NONE|MAIL|ep furiously furiously special requests. e| +41097|985237|10276|4|5|6610.95|0.06|0.08|N|O|1995-09-25|1995-10-19|1995-10-13|TAKE BACK RETURN|MAIL|ironic deposits boost q| +41097|868555|6107|5|33|50275.83|0.09|0.00|N|O|1995-11-26|1995-12-07|1995-11-30|NONE|RAIL|! carefully ironic pinto beans integrate f| +41097|802766|15283|6|40|66748.80|0.08|0.03|N|O|1995-10-07|1995-11-04|1995-10-24|NONE|FOB|es cajole blithely according to the b| +41097|82650|45152|7|27|44081.55|0.04|0.00|N|O|1996-01-07|1995-11-03|1996-01-30|NONE|SHIP|he furiously ironic account| +41098|87778|280|1|24|42378.48|0.06|0.03|R|F|1993-05-01|1993-06-04|1993-05-24|TAKE BACK RETURN|REG AIR|ns. furiously pen| +41098|278010|40516|2|42|41496.00|0.08|0.04|R|F|1993-06-22|1993-05-27|1993-07-15|NONE|TRUCK|uctions cajo| +41098|499735|12245|3|1|1734.71|0.02|0.06|A|F|1993-05-13|1993-06-01|1993-05-17|TAKE BACK RETURN|FOB| cajole quickly final accounts; slyly pen| +41098|36399|36400|4|24|32049.36|0.10|0.07|R|F|1993-04-15|1993-05-25|1993-05-06|TAKE BACK RETURN|FOB|s cajole carefully about the unusual ac| +41099|660638|35665|1|13|20781.80|0.00|0.06|N|O|1995-07-25|1995-07-01|1995-08-17|TAKE BACK RETURN|RAIL| cajole. platelets sle| +41099|335701|23220|2|30|52100.70|0.02|0.06|N|F|1995-06-15|1995-07-18|1995-07-14|DELIVER IN PERSON|REG AIR|ress accounts. quickly pend| +41099|114602|2109|3|47|75980.20|0.03|0.05|A|F|1995-05-14|1995-07-02|1995-06-04|TAKE BACK RETURN|AIR|low ideas haggle slyly. blith| +41099|104326|4327|4|39|51882.48|0.05|0.01|N|F|1995-06-17|1995-07-26|1995-06-20|TAKE BACK RETURN|TRUCK|quests abo| +41099|399804|37326|5|1|1903.79|0.01|0.04|N|O|1995-07-18|1995-06-23|1995-08-01|DELIVER IN PERSON|AIR|en foxes affix f| +41099|502698|15209|6|29|49319.43|0.01|0.00|N|O|1995-07-14|1995-07-01|1995-08-03|TAKE BACK RETURN|SHIP|le carefully blithely ev| +41099|835399|10432|7|3|4003.05|0.05|0.06|A|F|1995-05-14|1995-06-09|1995-05-23|TAKE BACK RETURN|TRUCK|ular ideas. slyly silent deposits wa| +41100|539644|27175|1|14|23570.68|0.08|0.04|N|O|1995-08-23|1995-06-12|1995-09-21|DELIVER IN PERSON|RAIL|. regular, special ideas sleep. | +41100|780600|18146|2|18|30250.26|0.05|0.05|N|F|1995-06-16|1995-07-03|1995-07-01|TAKE BACK RETURN|RAIL|. slyly even foxes sleep bol| +41100|540062|2573|3|41|45183.64|0.00|0.06|N|O|1995-07-20|1995-07-31|1995-08-12|TAKE BACK RETURN|SHIP|n, regular platelets use slyly along | +41100|805878|43427|4|15|26757.45|0.02|0.00|N|F|1995-06-14|1995-06-26|1995-07-04|TAKE BACK RETURN|RAIL|l instructions are | +41100|383286|20808|5|7|9584.89|0.08|0.04|N|O|1995-08-24|1995-06-07|1995-09-23|DELIVER IN PERSON|TRUCK|e to nag about the ironic pinto b| +41100|878504|16056|6|16|23719.36|0.09|0.05|N|O|1995-08-06|1995-06-25|1995-08-28|TAKE BACK RETURN|MAIL|s. carefully r| +41100|5006|42507|7|9|8199.00|0.07|0.08|N|O|1995-07-15|1995-07-07|1995-08-06|COLLECT COD|FOB|lly regula| +41101|127029|14536|1|8|8448.16|0.09|0.01|N|O|1997-01-30|1997-02-21|1997-02-09|NONE|MAIL| the asymptotes sleep quickly | +41101|966940|4498|2|35|70241.50|0.01|0.00|N|O|1997-02-14|1997-02-05|1997-03-14|TAKE BACK RETURN|FOB|ravely iron| +41102|673|38174|1|35|55078.45|0.08|0.04|A|F|1993-10-08|1993-12-11|1993-10-22|DELIVER IN PERSON|FOB|e. requests cajole furiously after the | +41102|301802|1803|2|21|37879.59|0.01|0.00|A|F|1994-01-08|1993-10-17|1994-02-01|NONE|AIR| the regular frets cajole quickly| +41102|379111|4126|3|1|1190.10|0.03|0.05|R|F|1993-09-29|1993-12-08|1993-10-13|NONE|MAIL|lar theodolites caj| +41102|710807|10808|4|1|1817.77|0.00|0.00|R|F|1993-11-12|1993-11-06|1993-12-07|NONE|SHIP|ven ideas! final foxes | +41102|520057|32568|5|21|22617.63|0.09|0.03|R|F|1993-09-20|1993-11-15|1993-10-05|COLLECT COD|RAIL|ns. doggedly even accoun| +41102|586229|36230|6|29|38140.80|0.03|0.03|R|F|1993-10-26|1993-11-08|1993-11-25|DELIVER IN PERSON|RAIL|uffily silent decoys use along the fluf| +41103|577804|40316|1|10|18817.80|0.06|0.01|R|F|1993-01-31|1992-11-07|1993-02-23|NONE|TRUCK| the bold acco| +41103|135094|47597|2|43|48550.87|0.08|0.06|A|F|1992-10-28|1992-11-28|1992-11-12|COLLECT COD|FOB|thogs slee| +41103|522888|22889|3|13|24841.18|0.04|0.06|R|F|1992-10-18|1992-11-19|1992-11-15|NONE|TRUCK|eposits cajole. carefully | +41103|166163|16164|4|2|2458.32|0.00|0.05|R|F|1992-12-23|1992-12-18|1993-01-17|TAKE BACK RETURN|MAIL|ges use carefully. req| +41103|694535|7049|5|33|50473.50|0.02|0.06|R|F|1992-11-24|1992-11-30|1992-11-30|TAKE BACK RETURN|MAIL| requests cajole furiously final de| +41103|42164|4665|6|27|29866.32|0.04|0.02|A|F|1992-10-09|1992-11-30|1992-10-27|NONE|RAIL|s nag carefully slyly bo| +41128|443934|43935|1|11|20657.01|0.02|0.01|R|F|1993-06-07|1993-07-03|1993-07-04|TAKE BACK RETURN|RAIL|y unusual r| +41128|182934|7941|2|18|36304.74|0.03|0.05|A|F|1993-05-06|1993-07-16|1993-05-13|DELIVER IN PERSON|TRUCK|uctions against the sly| +41128|569089|44112|3|24|27793.44|0.05|0.05|A|F|1993-08-02|1993-07-09|1993-08-12|NONE|RAIL|ully regular accounts. i| +41128|677617|15157|4|35|55810.30|0.07|0.02|A|F|1993-06-04|1993-06-05|1993-06-08|DELIVER IN PERSON|RAIL|onic ideas are c| +41128|696668|46669|5|23|38286.49|0.09|0.04|R|F|1993-07-12|1993-07-16|1993-08-09|DELIVER IN PERSON|REG AIR|fluffily sly patterns| +41128|888539|38540|6|11|16802.39|0.05|0.04|A|F|1993-05-27|1993-06-27|1993-06-09|NONE|REG AIR| carefully| +41128|669407|31921|7|13|17892.81|0.06|0.04|R|F|1993-08-21|1993-07-23|1993-08-30|TAKE BACK RETURN|MAIL|the accounts. slyl| +41129|718678|31193|1|21|35629.44|0.09|0.08|N|O|1996-09-01|1996-08-05|1996-09-15|TAKE BACK RETURN|FOB|y along the slyly pen| +41129|810421|47970|2|23|30621.74|0.07|0.08|N|O|1996-09-10|1996-08-13|1996-09-25|COLLECT COD|RAIL|ly idly regular accounts. fluffily even d| +41129|733721|33722|3|14|24565.66|0.00|0.00|N|O|1996-08-06|1996-08-02|1996-09-05|TAKE BACK RETURN|AIR| even sentiments. furi| +41129|637633|146|4|42|65965.20|0.02|0.08|N|O|1996-10-03|1996-07-26|1996-11-01|NONE|AIR|unts cajole across the furious| +41129|683077|33078|5|45|47701.80|0.04|0.04|N|O|1996-08-01|1996-09-04|1996-08-17|NONE|REG AIR|fily final excuses boost| +41129|459063|46591|6|49|50079.96|0.05|0.02|N|O|1996-08-06|1996-08-18|1996-08-24|COLLECT COD|RAIL|mptotes nag. blithely final | +41129|463902|38921|7|10|18658.80|0.09|0.00|N|O|1996-07-13|1996-08-16|1996-07-16|TAKE BACK RETURN|REG AIR|ly. slyly regular platelets haggle. furi| +41130|794131|44132|1|45|55129.50|0.05|0.00|N|O|1997-07-12|1997-05-04|1997-07-22|COLLECT COD|MAIL| accounts integrate | +41130|943250|18287|2|36|46555.56|0.09|0.00|N|O|1997-06-13|1997-05-11|1997-06-25|DELIVER IN PERSON|MAIL|lly even deposits cajole caref| +41130|198148|35658|3|37|46107.18|0.02|0.01|N|O|1997-07-09|1997-06-20|1997-07-25|DELIVER IN PERSON|RAIL|s. slyly regular dependencies| +41130|270723|20724|4|23|38955.33|0.00|0.02|N|O|1997-07-09|1997-04-30|1997-07-12|DELIVER IN PERSON|RAIL|furiously final ins| +41130|36575|11576|5|33|49881.81|0.00|0.08|N|O|1997-05-20|1997-05-15|1997-06-05|TAKE BACK RETURN|TRUCK| platelets| +41130|707202|32231|6|11|13300.87|0.03|0.03|N|O|1997-04-13|1997-06-05|1997-04-29|TAKE BACK RETURN|AIR|ccounts boost carefully fluffily pending | +41130|937917|25472|7|5|9774.35|0.08|0.08|N|O|1997-06-17|1997-06-19|1997-06-27|NONE|AIR|ounts engage even, even depe| +41131|558828|33851|1|13|24528.40|0.01|0.05|A|F|1993-08-12|1993-09-02|1993-08-15|TAKE BACK RETURN|AIR|kages are at the fl| +41131|214225|39234|2|45|51264.45|0.07|0.08|R|F|1993-08-03|1993-09-30|1993-09-02|NONE|FOB|ckly ironic pinto beans cajole | +41131|478814|16342|3|49|87846.71|0.02|0.07|R|F|1993-08-12|1993-08-17|1993-08-27|TAKE BACK RETURN|TRUCK|aring packages dazzle. final, unusu| +41131|421217|21218|4|20|22763.80|0.04|0.02|R|F|1993-08-02|1993-08-13|1993-08-22|NONE|RAIL|ar packages. | +41131|384216|21738|5|30|39006.00|0.05|0.08|R|F|1993-08-03|1993-08-27|1993-08-30|COLLECT COD|FOB| fluffily regular inst| +41131|518219|43240|6|34|42064.46|0.07|0.06|R|F|1993-10-20|1993-08-31|1993-10-29|COLLECT COD|AIR|ronic dolphi| +41132|444163|44164|1|14|15499.96|0.04|0.00|N|O|1998-08-18|1998-07-31|1998-08-31|NONE|RAIL|the blithely express pinto beans. deposi| +41132|36967|11968|2|43|81870.28|0.08|0.06|N|O|1998-08-15|1998-07-20|1998-09-12|TAKE BACK RETURN|RAIL|l gifts wake final package| +41132|300558|13065|3|47|73251.38|0.00|0.01|N|O|1998-07-06|1998-08-15|1998-07-10|TAKE BACK RETURN|MAIL|fluffily ironic accounts. slyly final| +41133|463576|38595|1|42|64661.10|0.07|0.00|N|O|1997-10-10|1997-09-01|1997-10-31|COLLECT COD|AIR|furiously regul| +41133|309325|21832|2|39|52038.09|0.05|0.07|N|O|1997-10-16|1997-10-07|1997-11-14|COLLECT COD|RAIL|ly stealthy courts kind| +41133|814404|26921|3|45|59326.20|0.05|0.05|N|O|1997-09-06|1997-08-29|1997-09-23|NONE|FOB|cajole acro| +41133|676696|14236|4|13|21744.58|0.04|0.00|N|O|1997-10-10|1997-09-25|1997-10-19|NONE|FOB|r theodolites. slyly fina| +41133|213120|13121|5|31|32026.41|0.02|0.07|N|O|1997-08-03|1997-09-05|1997-08-30|TAKE BACK RETURN|RAIL|uests. pending accounts about the | +41134|553383|15895|1|37|53145.32|0.00|0.06|N|O|1997-04-02|1997-04-30|1997-04-25|TAKE BACK RETURN|REG AIR|od. carefully reg| +41134|697735|10249|2|39|67575.30|0.02|0.08|N|O|1997-03-25|1997-03-29|1997-03-29|TAKE BACK RETURN|SHIP|unusual deposits use furiously al| +41134|820755|20756|3|27|45244.17|0.06|0.05|N|O|1997-04-14|1997-03-09|1997-04-26|TAKE BACK RETURN|RAIL|lyly blithely regular foxes. pend| +41135|187062|24572|1|43|49409.58|0.01|0.03|N|O|1995-07-17|1995-09-13|1995-07-27|NONE|TRUCK|pending re| +41160|605795|5796|1|3|5102.28|0.08|0.01|A|F|1993-11-17|1993-09-13|1993-11-30|DELIVER IN PERSON|TRUCK| are carefully | +41160|592254|29788|2|28|37694.44|0.06|0.06|R|F|1993-11-11|1993-09-29|1993-11-29|COLLECT COD|SHIP|eep at the ironic, silent deposits. furiou| +41160|999268|11788|3|47|64259.34|0.06|0.01|R|F|1993-09-09|1993-10-19|1993-09-26|TAKE BACK RETURN|AIR|le fluffily after the asympto| +41160|684097|21637|4|18|19459.08|0.09|0.07|A|F|1993-11-19|1993-09-15|1993-12-09|COLLECT COD|SHIP|arefully pending theodolites impress qu| +41160|611991|24504|5|40|76118.40|0.05|0.07|A|F|1993-09-27|1993-08-30|1993-10-09|TAKE BACK RETURN|AIR|gular ideas are slyly after the quickl| +41160|729571|29572|6|38|60820.52|0.10|0.03|R|F|1993-10-02|1993-10-06|1993-10-19|COLLECT COD|FOB|about the express requests. foxes w| +41160|889100|26652|7|17|18514.02|0.06|0.05|R|F|1993-10-05|1993-09-23|1993-10-27|COLLECT COD|REG AIR|uickly along the bold accounts. s| +41161|98985|23988|1|35|69439.30|0.05|0.00|A|F|1992-08-04|1992-08-01|1992-08-05|COLLECT COD|MAIL| accounts slee| +41161|628109|40622|2|23|23852.61|0.08|0.00|R|F|1992-07-17|1992-06-26|1992-08-08|DELIVER IN PERSON|REG AIR|packages haggle. furiously enticing dep| +41162|581427|6450|1|12|18100.80|0.01|0.03|A|F|1993-04-27|1993-03-04|1993-04-28|DELIVER IN PERSON|MAIL|ss accounts grow furiously. f| +41162|30814|30815|2|39|68047.59|0.10|0.06|R|F|1993-01-13|1993-03-10|1993-02-06|DELIVER IN PERSON|MAIL|ost slyly even theodol| +41162|874846|37364|3|33|60086.40|0.07|0.08|R|F|1993-03-02|1993-02-18|1993-03-09|NONE|AIR|lithely bold packages. bold,| +41162|525706|25707|4|11|19048.48|0.09|0.02|A|F|1993-01-23|1993-02-21|1993-02-15|NONE|MAIL|uests. ironic theodo| +41162|528360|40871|5|43|59698.62|0.00|0.05|A|F|1993-03-23|1993-03-11|1993-03-29|TAKE BACK RETURN|TRUCK|e idly final| +41162|140942|28449|6|2|3965.88|0.01|0.08|A|F|1993-01-18|1993-03-25|1993-02-07|TAKE BACK RETURN|AIR| silent deposits. regularl| +41162|810855|23372|7|2|3531.62|0.01|0.07|A|F|1993-01-08|1993-03-31|1993-01-27|DELIVER IN PERSON|RAIL|ainst the accounts. furiously reg| +41163|28515|16016|1|22|31757.22|0.02|0.03|R|F|1995-02-17|1994-12-14|1995-03-02|COLLECT COD|TRUCK|otes! regula| +41163|247667|22676|2|49|79117.85|0.02|0.08|A|F|1994-11-22|1994-11-26|1994-12-06|DELIVER IN PERSON|FOB|t deposits nag fluffily bold packag| +41163|536183|23714|3|35|42670.60|0.08|0.08|A|F|1994-12-24|1994-11-29|1995-01-04|COLLECT COD|REG AIR|ely regular | +41163|615376|2913|4|12|15496.08|0.05|0.07|R|F|1995-01-15|1994-12-13|1995-02-03|COLLECT COD|REG AIR| slyly ironic deposi| +41163|617782|5319|5|24|40794.00|0.06|0.07|R|F|1995-01-09|1994-11-26|1995-02-02|NONE|REG AIR|accounts wake furiously| +41164|744582|7097|1|37|60182.35|0.07|0.02|R|F|1993-03-14|1993-02-13|1993-03-19|COLLECT COD|FOB|r braids wi| +41164|185379|22889|2|42|61503.54|0.07|0.06|R|F|1993-03-26|1993-03-07|1993-04-05|COLLECT COD|TRUCK|kly ironic ideas sleep furiously requ| +41164|656331|31358|3|44|56641.20|0.10|0.08|A|F|1993-04-08|1993-01-10|1993-05-06|TAKE BACK RETURN|FOB| to the accounts cajole above the cour| +41165|946145|21182|1|29|34541.90|0.01|0.07|N|O|1997-08-11|1997-09-12|1997-08-17|COLLECT COD|MAIL|. ironic requests above the pending, bol| +41165|847721|47722|2|41|68415.88|0.01|0.03|N|O|1997-08-18|1997-09-18|1997-08-20|COLLECT COD|AIR| pinto beans haggle slyly above the regul| +41165|630978|30979|3|19|36269.86|0.05|0.03|N|O|1997-07-28|1997-09-10|1997-08-08|TAKE BACK RETURN|REG AIR|ges. pending, special accou| +41165|835925|48442|4|3|5582.64|0.08|0.08|N|O|1997-08-31|1997-09-05|1997-09-06|DELIVER IN PERSON|REG AIR|ggedly against the e| +41165|378753|41261|5|7|12822.18|0.10|0.07|N|O|1997-10-26|1997-08-23|1997-11-14|NONE|FOB|y ironic packages. regul| +41166|723522|23523|1|20|30909.80|0.07|0.07|A|F|1992-12-31|1992-12-17|1993-01-26|NONE|REG AIR|y regular depo| +41166|233986|33987|2|15|28799.55|0.00|0.01|R|F|1993-01-28|1992-12-15|1993-02-21|DELIVER IN PERSON|RAIL|eodolites integrate blithely express, | +41166|602502|40039|3|2|2808.94|0.08|0.08|R|F|1993-01-16|1992-12-18|1993-02-02|TAKE BACK RETURN|TRUCK|ove the carefully r| +41166|241603|41604|4|17|26258.03|0.10|0.02|A|F|1992-11-25|1992-11-11|1992-12-15|DELIVER IN PERSON|MAIL|onic asymptotes. dependenci| +41166|617125|17126|5|3|3126.27|0.09|0.02|R|F|1992-10-22|1992-11-14|1992-11-20|NONE|SHIP|y bold packages use fluffily. sly| +41167|78938|28939|1|33|63258.69|0.01|0.02|N|O|1996-05-09|1996-03-29|1996-06-02|NONE|MAIL| requests. final deposits use deposits. | +41167|704775|29804|2|39|69409.86|0.10|0.03|N|O|1996-02-12|1996-03-15|1996-03-05|COLLECT COD|AIR|ackages. furiously bold requests na| +41167|142482|4985|3|23|35063.04|0.03|0.04|N|O|1996-05-22|1996-03-08|1996-05-23|NONE|REG AIR|ckages nag. regular, ex| +41167|682789|7816|4|41|72641.75|0.10|0.02|N|O|1996-02-09|1996-03-20|1996-02-22|DELIVER IN PERSON|AIR|ctions nag above the regu| +41167|624754|49779|5|39|65470.08|0.02|0.07|N|O|1996-03-02|1996-03-02|1996-03-15|TAKE BACK RETURN|REG AIR|eans according to the slyly regular | +41167|229855|17368|6|15|26772.60|0.07|0.05|N|O|1996-03-28|1996-04-10|1996-04-04|TAKE BACK RETURN|MAIL|the unusual, iro| +41192|50012|25015|1|19|18278.19|0.08|0.07|N|O|1998-06-12|1998-05-18|1998-06-18|TAKE BACK RETURN|RAIL|luffily ironic| +41192|539435|26966|2|35|51604.35|0.07|0.05|N|O|1998-05-09|1998-04-26|1998-06-07|DELIVER IN PERSON|TRUCK|totes wake about the ca| +41192|276124|38630|3|49|53905.39|0.01|0.03|N|O|1998-03-27|1998-05-14|1998-04-20|TAKE BACK RETURN|REG AIR|o beans. even, final asymptotes sleep fu| +41192|812362|24879|4|26|33132.32|0.07|0.01|N|O|1998-07-02|1998-05-30|1998-07-07|TAKE BACK RETURN|REG AIR|ealthily pending requests. slyly i| +41193|898470|10988|1|43|63142.49|0.06|0.08|N|O|1998-05-05|1998-06-19|1998-05-31|NONE|TRUCK|unts are about the slyly ironi| +41194|905836|5837|1|5|9208.95|0.10|0.02|A|F|1992-08-18|1992-07-15|1992-09-16|COLLECT COD|SHIP|uriously ironic ideas | +41194|370165|20166|2|19|23467.85|0.03|0.00|A|F|1992-06-04|1992-07-24|1992-06-14|DELIVER IN PERSON|MAIL|ular instructions wake pending req| +41194|357785|20293|3|4|7371.08|0.09|0.08|R|F|1992-05-23|1992-07-17|1992-06-17|NONE|RAIL|ons affix furiously regular theod| +41194|285940|35941|4|1|1925.93|0.07|0.01|A|F|1992-06-03|1992-05-27|1992-06-05|DELIVER IN PERSON|TRUCK|pinto beans sleep furi| +41194|781903|31904|5|20|39697.40|0.06|0.08|R|F|1992-06-08|1992-07-02|1992-07-05|TAKE BACK RETURN|TRUCK|sublate slyly. qu| +41194|441632|29157|6|35|55076.35|0.03|0.04|R|F|1992-05-03|1992-07-06|1992-05-05|DELIVER IN PERSON|RAIL|jole stealthil| +41194|492965|30493|7|8|15663.52|0.10|0.08|A|F|1992-06-05|1992-06-18|1992-06-24|NONE|FOB|slyly bold multipliers sleep blithely | +41195|251892|1893|1|10|18438.80|0.01|0.05|N|O|1996-09-06|1996-07-19|1996-09-12|COLLECT COD|TRUCK|he final packages shall have| +41196|779611|17157|1|15|25358.70|0.05|0.06|N|O|1998-06-06|1998-06-17|1998-06-21|NONE|AIR|posits wake furiously. unusual, regula| +41196|918833|43870|2|29|53701.91|0.04|0.08|N|O|1998-05-18|1998-05-20|1998-05-30|DELIVER IN PERSON|REG AIR|ole quickl| +41196|822922|22923|3|36|66415.68|0.01|0.07|N|O|1998-05-26|1998-06-25|1998-06-16|NONE|AIR|regular ideas. carefully| +41197|104388|4389|1|19|26455.22|0.05|0.04|A|F|1995-04-16|1995-02-24|1995-04-25|COLLECT COD|RAIL|s cajole blithely unusual in| +41197|444562|44563|2|7|10545.78|0.04|0.06|A|F|1995-02-11|1995-02-13|1995-02-25|DELIVER IN PERSON|REG AIR|nic accounts. blithely enticing| +41198|885786|35787|1|28|49608.72|0.03|0.06|N|O|1997-05-07|1997-04-26|1997-06-05|COLLECT COD|MAIL| cajole regular theodolites;| +41199|549298|36829|1|29|39070.83|0.05|0.04|N|O|1996-06-20|1996-08-20|1996-07-08|NONE|AIR|into beans: sly| +41199|35330|35331|2|48|60735.84|0.06|0.03|N|O|1996-08-23|1996-07-13|1996-09-13|TAKE BACK RETURN|SHIP|requests i| +41224|748509|23538|1|7|10902.29|0.03|0.01|A|F|1992-11-13|1993-01-16|1992-11-28|DELIVER IN PERSON|FOB|ending packages are. fluffily ev| +41224|182975|45479|2|48|98782.56|0.10|0.08|A|F|1992-12-20|1993-01-23|1992-12-27|COLLECT COD|SHIP|ithely final ideas. furiously| +41225|116278|28781|1|44|56947.88|0.03|0.06|N|O|1998-03-09|1998-03-02|1998-03-21|NONE|TRUCK|he ironic ideas. pen| +41225|280680|30681|2|43|71408.81|0.07|0.03|N|O|1998-04-28|1998-02-20|1998-05-01|COLLECT COD|REG AIR|brave packages us| +41226|720554|45583|1|27|42512.04|0.00|0.01|N|O|1998-06-10|1998-05-05|1998-06-18|COLLECT COD|FOB|e ironically across the furi| +41227|240440|40441|1|22|30369.46|0.07|0.01|R|F|1995-05-13|1995-04-08|1995-06-06|NONE|MAIL|ies. quickly express foxes are t| +41227|65297|2801|2|7|8836.03|0.03|0.03|R|F|1995-02-21|1995-03-15|1995-03-03|TAKE BACK RETURN|SHIP|ests haggle slyly about the furiousl| +41227|436187|11204|3|23|25832.68|0.09|0.02|A|F|1995-01-28|1995-04-03|1995-02-14|NONE|FOB|he silent packages play quick| +41227|981483|6522|4|36|56319.84|0.08|0.02|A|F|1995-04-23|1995-04-18|1995-05-22|COLLECT COD|FOB|al instructions haggle a| +41227|778017|40533|5|39|42704.22|0.00|0.06|R|F|1995-02-10|1995-03-10|1995-02-28|TAKE BACK RETURN|REG AIR|ch carefully iron| +41227|125039|25040|6|13|13832.39|0.01|0.08|R|F|1995-02-11|1995-03-13|1995-03-10|DELIVER IN PERSON|FOB| final deposits. blithely ex| +41228|869606|7158|1|5|7877.80|0.02|0.00|N|O|1996-02-01|1995-12-24|1996-02-03|TAKE BACK RETURN|MAIL|ickly bold foxes.| +41228|467938|5466|2|11|20965.01|0.05|0.04|N|O|1995-11-05|1996-01-15|1995-12-05|DELIVER IN PERSON|TRUCK|ent ideas solve accounts. ca| +41228|628090|40603|3|4|4072.24|0.02|0.04|N|O|1995-11-20|1995-12-04|1995-12-02|DELIVER IN PERSON|RAIL|azzle furiously. slyly fina| +41228|306691|19198|4|6|10186.08|0.08|0.07|N|O|1996-01-25|1996-01-10|1996-02-02|DELIVER IN PERSON|RAIL|y regular ideas wake express theodolit| +41228|543529|6040|5|12|18870.00|0.04|0.06|N|O|1996-01-04|1995-12-24|1996-01-30|NONE|MAIL|gular excuses. blithely express deposits| +41229|800415|12932|1|35|46037.95|0.10|0.07|N|O|1997-07-06|1997-07-28|1997-07-18|DELIVER IN PERSON|SHIP| furiously express p| +41229|562710|37733|2|33|58498.77|0.04|0.07|N|O|1997-07-05|1997-07-28|1997-07-20|NONE|FOB|requests wake blithely express packages? c| +41229|451224|13734|3|40|47008.00|0.08|0.00|N|O|1997-08-10|1997-08-30|1997-09-09|NONE|SHIP|. fluffily fi| +41229|710317|10318|4|39|51763.92|0.07|0.05|N|O|1997-08-28|1997-08-19|1997-09-05|DELIVER IN PERSON|AIR|ously furious excuses| +41229|297376|22387|5|18|24720.48|0.07|0.08|N|O|1997-10-10|1997-08-28|1997-10-19|COLLECT COD|FOB|ously unusual requests cajole furi| +41229|987569|89|6|46|76199.92|0.09|0.04|N|O|1997-07-02|1997-07-29|1997-07-21|DELIVER IN PERSON|SHIP|ng ideas are permanently| +41229|70823|33325|7|4|7175.28|0.01|0.04|N|O|1997-08-20|1997-08-16|1997-09-03|DELIVER IN PERSON|TRUCK|ounts cajole quickly | +41230|320500|20501|1|10|15204.90|0.01|0.04|N|O|1997-04-24|1997-04-04|1997-05-04|NONE|FOB|iously expr| +41230|630314|42827|2|43|53504.04|0.02|0.08|N|O|1997-04-07|1997-04-16|1997-05-05|TAKE BACK RETURN|FOB|usly ironic req| +41231|588244|25778|1|46|61282.12|0.09|0.05|R|F|1994-03-18|1994-05-07|1994-04-15|NONE|REG AIR|y final, unusual re| +41231|604618|29643|2|26|39587.08|0.07|0.07|A|F|1994-04-18|1994-04-05|1994-04-23|DELIVER IN PERSON|SHIP| unusual instructions wake blithely pa| +41231|799781|49782|3|44|82753.00|0.07|0.05|R|F|1994-06-17|1994-03-27|1994-07-09|TAKE BACK RETURN|SHIP|to beans boost bl| +41231|904556|4557|4|25|39012.75|0.03|0.06|R|F|1994-04-17|1994-05-16|1994-04-21|DELIVER IN PERSON|FOB| cajole furio| +41231|871348|8900|5|50|65965.00|0.03|0.07|A|F|1994-04-08|1994-05-10|1994-05-04|DELIVER IN PERSON|TRUCK|thogs wake slyly bold dependencies. slyly | +41256|711713|36742|1|45|77610.60|0.10|0.01|A|F|1992-12-01|1992-11-07|1992-12-04|TAKE BACK RETURN|REG AIR|ts breach slyly. quickly brave packages| +41257|704620|17135|1|39|63359.01|0.01|0.00|R|F|1993-09-20|1993-10-25|1993-10-11|COLLECT COD|FOB| packages wake fluffily unusua| +41258|334809|9822|1|35|64532.65|0.09|0.02|N|O|1998-03-26|1998-04-12|1998-04-06|TAKE BACK RETURN|SHIP|ly at the instructions. carefully ironic de| +41258|125868|13375|2|36|68178.96|0.02|0.04|N|O|1998-03-25|1998-04-01|1998-04-12|COLLECT COD|REG AIR| furiously regu| +41258|457061|7062|3|1|1018.04|0.10|0.08|N|O|1998-05-13|1998-03-26|1998-05-17|TAKE BACK RETURN|REG AIR|ctions. carefully final| +41258|822160|34677|4|5|5410.60|0.09|0.02|N|O|1998-04-27|1998-03-22|1998-05-24|COLLECT COD|FOB|ironic depo| +41258|33344|20845|5|50|63867.00|0.02|0.03|N|O|1998-02-24|1998-04-03|1998-03-13|TAKE BACK RETURN|TRUCK| special depos| +41259|907500|45055|1|48|72358.08|0.03|0.05|N|O|1998-07-26|1998-07-29|1998-08-23|NONE|MAIL|le carefully after the regular ideas.| +41259|346633|34152|2|1|1679.62|0.07|0.05|N|O|1998-08-31|1998-07-29|1998-09-29|TAKE BACK RETURN|AIR|bout the unusual, final requests. fluffily | +41260|912886|25405|1|23|43673.32|0.06|0.08|R|F|1993-06-10|1993-04-05|1993-07-10|TAKE BACK RETURN|REG AIR|es. quickly | +41260|872368|47403|2|50|67016.00|0.05|0.03|R|F|1993-04-17|1993-04-20|1993-05-14|DELIVER IN PERSON|FOB|ly furiously| +41260|886252|48770|3|35|43337.35|0.06|0.08|A|F|1993-05-04|1993-05-02|1993-05-16|COLLECT COD|FOB|ously. furiously special a| +41261|697931|35471|1|19|36649.10|0.01|0.04|R|F|1993-09-08|1993-06-21|1993-09-10|NONE|FOB|en deposits. ideas alongside o| +41261|124852|49857|2|45|84458.25|0.02|0.05|R|F|1993-06-22|1993-07-25|1993-07-14|DELIVER IN PERSON|AIR|ly regular ideas cajole slyly regu| +41261|381426|31427|3|32|48237.12|0.04|0.01|R|F|1993-06-20|1993-08-04|1993-07-17|NONE|AIR|tructions. ironic accounts u| +41261|623687|36200|4|18|28991.70|0.02|0.01|A|F|1993-08-04|1993-07-03|1993-08-18|COLLECT COD|REG AIR|osits nag according to th| +41261|296536|34052|5|9|13792.68|0.06|0.05|R|F|1993-09-07|1993-06-21|1993-09-17|NONE|TRUCK|eposits doubt slyly unu| +41262|3096|3097|1|16|15985.44|0.07|0.00|N|O|1995-11-22|1995-12-24|1995-12-21|COLLECT COD|AIR|ts. slyly bold sentiments among the silent | +41262|26620|39121|2|2|3093.24|0.01|0.02|N|O|1995-11-15|1995-11-16|1995-11-23|TAKE BACK RETURN|AIR|nal foxes haggle furiously a| +41262|389688|14703|3|50|88883.50|0.00|0.02|N|O|1995-11-22|1995-11-18|1995-11-24|TAKE BACK RETURN|REG AIR|nal reques| +41262|473456|35966|4|29|41453.47|0.02|0.02|N|O|1995-12-19|1995-12-04|1995-12-28|TAKE BACK RETURN|AIR|symptotes cajol| +41263|73016|48019|1|39|38571.39|0.05|0.03|R|F|1994-04-11|1994-06-04|1994-04-21|TAKE BACK RETURN|RAIL|ackages abo| +41263|165043|2553|2|33|36565.32|0.05|0.00|R|F|1994-04-23|1994-04-23|1994-05-05|DELIVER IN PERSON|MAIL|lar excuses. boldly sly ideas use iron| +41288|769376|31892|1|15|21680.10|0.00|0.01|N|O|1997-05-17|1997-06-25|1997-06-15|TAKE BACK RETURN|SHIP|al instructions nag blithely r| +41288|885892|10927|2|31|58213.35|0.09|0.00|N|O|1997-06-29|1997-05-19|1997-07-17|COLLECT COD|RAIL|ites are against the pending, bo| +41289|268722|18723|1|31|52412.01|0.06|0.01|N|O|1996-03-19|1996-03-07|1996-03-27|NONE|AIR|thely asymptot| +41289|403324|40849|2|44|54001.20|0.09|0.02|N|O|1996-03-29|1996-03-12|1996-04-10|DELIVER IN PERSON|FOB|e among the regularly bold a| +41290|617292|17293|1|34|41114.84|0.02|0.02|A|F|1995-01-14|1994-11-02|1995-02-13|TAKE BACK RETURN|AIR|c accounts. carefully silent reques| +41290|820599|33116|2|38|57742.90|0.04|0.00|A|F|1994-11-25|1994-12-25|1994-12-24|COLLECT COD|TRUCK|l asymptotes under the instructions print q| +41290|802774|2775|3|35|58685.55|0.10|0.02|A|F|1995-01-29|1994-11-04|1995-02-27|NONE|RAIL|g the quickly final excuses| +41290|214689|27194|4|26|41695.42|0.06|0.08|R|F|1995-01-23|1994-11-05|1995-02-13|DELIVER IN PERSON|MAIL|sleep. fur| +41290|261802|11803|5|47|82898.13|0.00|0.03|R|F|1994-10-04|1994-12-24|1994-10-11|COLLECT COD|REG AIR|xpress, special| +41291|352461|39983|1|42|63564.90|0.02|0.08|R|F|1992-04-23|1992-02-19|1992-05-10|TAKE BACK RETURN|RAIL|bold packages. ironic attainments according| +41292|177939|15449|1|9|18152.37|0.04|0.02|N|O|1997-08-21|1997-08-08|1997-09-14|DELIVER IN PERSON|SHIP|ld request| +41292|616159|28672|2|40|43004.80|0.06|0.05|N|O|1997-09-11|1997-06-25|1997-10-11|COLLECT COD|MAIL|ironic requests. | +41292|768775|31291|3|36|66374.64|0.01|0.04|N|O|1997-07-29|1997-07-19|1997-08-05|NONE|REG AIR|counts use after the even, special acco| +41292|786644|24190|4|37|64032.57|0.05|0.02|N|O|1997-06-19|1997-07-30|1997-06-24|TAKE BACK RETURN|TRUCK| ironic foxes. thinly even theodolites abo| +41292|111605|49112|5|4|6466.40|0.02|0.02|N|O|1997-07-31|1997-06-26|1997-08-21|COLLECT COD|SHIP|uests. excuses are carefully sp| +41293|411322|36339|1|9|11099.70|0.06|0.08|N|O|1998-01-22|1998-01-18|1998-01-29|DELIVER IN PERSON|AIR|sily even pinto beans.| +41293|78675|16179|2|38|62839.46|0.00|0.03|N|O|1997-12-09|1998-02-16|1997-12-22|COLLECT COD|RAIL|ructions kindle accounts. fluffily un| +41293|284379|46885|3|5|6816.80|0.00|0.06|N|O|1998-03-21|1998-02-13|1998-04-03|DELIVER IN PERSON|SHIP|cial instructions wake fluffi| +41293|547436|22457|4|31|45985.71|0.09|0.07|N|O|1998-03-30|1998-01-10|1998-04-22|TAKE BACK RETURN|TRUCK|otes sublate according to the furi| +41293|751971|14487|5|12|24275.28|0.00|0.07|N|O|1998-03-04|1998-02-04|1998-03-07|TAKE BACK RETURN|MAIL|lly regular accounts boost from the ex| +41294|264526|27032|1|19|28319.69|0.05|0.02|N|O|1995-06-19|1995-07-18|1995-07-09|TAKE BACK RETURN|SHIP| across the f| +41294|874417|36935|2|42|58437.54|0.00|0.00|N|O|1995-07-26|1995-06-07|1995-08-10|NONE|RAIL|thely special accounts are flu| +41294|316430|41443|3|4|5785.68|0.08|0.07|N|O|1995-06-23|1995-07-29|1995-06-28|COLLECT COD|SHIP|s. quickly final| +41294|231737|31738|4|50|83436.00|0.07|0.05|R|F|1995-05-09|1995-07-04|1995-05-10|NONE|AIR|ravely regular accounts grow among the sly| +41294|787192|37193|5|43|55003.88|0.07|0.05|N|O|1995-08-10|1995-06-20|1995-09-08|TAKE BACK RETURN|REG AIR|fily around the final theodol| +41294|324533|37040|6|48|74760.96|0.06|0.06|N|O|1995-07-20|1995-07-16|1995-08-01|DELIVER IN PERSON|AIR|ly according to the furiously regular packa| +41294|422239|22240|7|33|38319.93|0.10|0.08|N|O|1995-08-28|1995-07-19|1995-09-03|DELIVER IN PERSON|AIR|ts among the fur| +41295|555263|5264|1|18|23728.32|0.06|0.00|A|F|1994-07-08|1994-06-16|1994-07-28|TAKE BACK RETURN|SHIP|structions. boldly regular requests| +41295|293868|6374|2|26|48408.10|0.06|0.05|A|F|1994-05-26|1994-05-18|1994-06-16|TAKE BACK RETURN|AIR|oost slyly above the quickly even fox| +41320|794877|44878|1|44|86760.96|0.10|0.00|R|F|1993-04-01|1993-05-09|1993-04-27|DELIVER IN PERSON|RAIL|silent, brave ideas | +41320|487574|12593|2|9|14053.95|0.08|0.07|R|F|1993-06-13|1993-04-30|1993-07-04|NONE|TRUCK|slyly final| +41320|648042|48043|3|23|22770.23|0.08|0.06|A|F|1993-06-30|1993-06-02|1993-07-02|DELIVER IN PERSON|AIR|egular, even dependencies. blithely bold i| +41320|638086|38087|4|18|18432.90|0.06|0.06|A|F|1993-04-05|1993-05-04|1993-05-02|NONE|REG AIR|fully. carefully ironic deposits | +41320|310226|35239|5|3|3708.63|0.04|0.02|R|F|1993-04-26|1993-06-21|1993-05-07|COLLECT COD|REG AIR| bold deposits boost slyly. regular excuses| +41320|952809|27848|6|41|76332.16|0.10|0.08|R|F|1993-07-13|1993-05-05|1993-07-22|COLLECT COD|TRUCK|fily unusual pinto b| +41321|986946|36947|1|10|20329.00|0.03|0.04|N|O|1996-02-16|1995-12-14|1996-03-07|DELIVER IN PERSON|MAIL|ependencies boost| +41322|590935|15958|1|40|81036.40|0.05|0.07|A|F|1992-05-03|1992-03-08|1992-05-22|DELIVER IN PERSON|REG AIR|uctions. blithely ir| +41322|842542|5059|2|50|74225.00|0.04|0.07|R|F|1992-01-27|1992-04-06|1992-02-14|NONE|REG AIR|de of the i| +41322|602041|27066|3|21|19803.21|0.05|0.03|A|F|1992-01-17|1992-02-16|1992-02-16|TAKE BACK RETURN|REG AIR| regular theodolites. bold depo| +41322|498671|11181|4|50|83482.50|0.10|0.07|R|F|1992-05-15|1992-02-14|1992-05-19|DELIVER IN PERSON|REG AIR|requests. orbits nag fluffi| +41322|153341|28348|5|16|22309.44|0.07|0.02|A|F|1992-01-22|1992-02-26|1992-02-18|TAKE BACK RETURN|TRUCK|leep according to the quickly special pack| +41322|193133|30643|6|7|8582.91|0.01|0.03|A|F|1992-02-25|1992-03-17|1992-02-27|DELIVER IN PERSON|TRUCK| sleep blithely| +41322|978918|41438|7|42|83868.54|0.10|0.05|R|F|1992-03-13|1992-04-11|1992-03-20|TAKE BACK RETURN|RAIL|r accounts c| +41323|673044|10584|1|47|47799.47|0.05|0.06|N|O|1997-03-06|1997-04-26|1997-03-26|DELIVER IN PERSON|MAIL|ring instruct| +41323|842332|17365|2|46|58617.34|0.10|0.03|N|O|1997-02-01|1997-03-25|1997-02-16|COLLECT COD|SHIP| carefully express deposits hag| +41323|68921|18922|3|21|39688.32|0.08|0.06|N|O|1997-03-17|1997-04-19|1997-03-31|TAKE BACK RETURN|AIR| deposits use. regular, ironic accounts| +41323|342667|5174|4|15|25644.75|0.10|0.08|N|O|1997-04-13|1997-03-08|1997-05-02|COLLECT COD|TRUCK|fily bold theodolites against the| +41323|197900|47901|5|34|67928.60|0.09|0.00|N|O|1997-05-19|1997-03-03|1997-06-06|TAKE BACK RETURN|RAIL|requests are. blithely express | +41323|94878|19881|6|20|37457.40|0.09|0.00|N|O|1997-04-12|1997-03-02|1997-04-20|COLLECT COD|REG AIR|place of the regular, bold theodo| +41324|175886|25887|1|13|25504.44|0.07|0.08|N|O|1995-06-24|1995-06-03|1995-07-22|DELIVER IN PERSON|MAIL|final ideas cajole carefully according to| +41324|114878|39883|2|11|20821.57|0.10|0.02|A|F|1995-05-17|1995-05-08|1995-05-22|DELIVER IN PERSON|FOB|accounts must wake slyly carefu| +41324|738867|26410|3|10|19058.30|0.02|0.05|N|O|1995-07-17|1995-06-09|1995-08-11|NONE|TRUCK|ong the carefully even requests integra| +41325|841968|29517|1|9|17189.28|0.07|0.06|N|O|1995-09-17|1995-08-15|1995-09-27|COLLECT COD|TRUCK| beans sleep| +41325|950445|25484|2|25|37385.00|0.10|0.05|N|O|1995-10-18|1995-08-03|1995-11-01|NONE|SHIP|o beans cajole slyly alongs| +41325|125266|12773|3|14|18077.64|0.04|0.00|N|O|1995-07-11|1995-07-25|1995-07-26|COLLECT COD|TRUCK|e permanently. special packages haggle blit| +41325|335930|10943|4|4|7863.68|0.00|0.08|N|O|1995-07-04|1995-08-28|1995-07-23|COLLECT COD|REG AIR|as unusual depos| +41325|970693|8251|5|46|81127.90|0.10|0.03|N|O|1995-07-07|1995-08-28|1995-07-18|NONE|MAIL|ies among the | +41325|430233|5250|6|18|20937.78|0.10|0.05|N|O|1995-08-03|1995-08-05|1995-09-02|COLLECT COD|MAIL|uests. special, special requests ab| +41326|715947|28462|1|12|23554.92|0.08|0.05|R|F|1995-04-23|1995-04-03|1995-05-16|TAKE BACK RETURN|TRUCK|y regular foxes are furiously| +41326|917108|17109|2|50|56253.00|0.01|0.06|R|F|1995-03-05|1995-05-01|1995-03-24|COLLECT COD|AIR|oss the regular dependencies haggle above| +41326|825543|13092|3|1|1468.50|0.05|0.00|R|F|1995-04-07|1995-03-15|1995-04-19|COLLECT COD|REG AIR|s grow blithel| +41327|269593|19594|1|39|60940.62|0.03|0.02|N|O|1995-06-30|1995-05-26|1995-07-18|TAKE BACK RETURN|MAIL|nstructions. unusual| +41327|48606|23607|2|3|4663.80|0.02|0.02|N|O|1995-07-22|1995-06-12|1995-08-19|NONE|SHIP|efully enticing req| +41327|907885|45440|3|9|17035.56|0.03|0.04|N|O|1995-07-21|1995-06-13|1995-08-04|DELIVER IN PERSON|RAIL|ly regular deposits promise| +41327|818657|18658|4|2|3151.22|0.08|0.06|R|F|1995-04-30|1995-06-27|1995-05-09|DELIVER IN PERSON|TRUCK|cuses cajole! quickly| +41327|165312|40319|5|43|59224.33|0.06|0.00|R|F|1995-06-09|1995-06-27|1995-06-14|NONE|FOB|inal ideas| +41327|382876|32877|6|7|13712.02|0.01|0.07|N|O|1995-07-23|1995-07-04|1995-08-03|NONE|RAIL| quickly final depths integrate | +41352|984454|46974|1|44|67690.04|0.05|0.06|N|O|1996-03-25|1996-05-01|1996-04-03|COLLECT COD|TRUCK|c foxes use fur| +41353|244017|19026|1|19|18259.00|0.09|0.00|R|F|1992-08-26|1992-11-15|1992-08-31|NONE|REG AIR|sual packages. idea| +41353|178684|16194|2|44|77557.92|0.07|0.02|A|F|1992-10-11|1992-10-21|1992-10-26|NONE|TRUCK|yly regular requests cajole. regular, fin| +41353|139304|14309|3|45|60448.50|0.08|0.04|A|F|1992-09-04|1992-10-28|1992-10-01|TAKE BACK RETURN|RAIL|ites about the even package| +41353|277414|2425|4|1|1391.40|0.07|0.08|A|F|1992-10-31|1992-10-26|1992-11-13|DELIVER IN PERSON|MAIL|unts. regular pains wake slyly | +41353|486005|36006|5|10|9909.80|0.00|0.07|R|F|1992-11-25|1992-11-10|1992-12-09|COLLECT COD|RAIL| foxes. carefully eve| +41354|827307|2340|1|6|7405.56|0.01|0.06|A|F|1993-12-28|1993-10-04|1994-01-12|TAKE BACK RETURN|TRUCK|xes. even, express p| +41354|536708|36709|2|31|54085.08|0.10|0.04|A|F|1993-09-24|1993-10-26|1993-09-28|NONE|RAIL|tions. regular court| +41355|963579|26099|1|34|55846.02|0.04|0.05|N|O|1998-04-25|1998-05-01|1998-05-11|NONE|RAIL|ular instruc| +41355|859167|34202|2|10|11261.20|0.03|0.04|N|O|1998-05-22|1998-05-11|1998-05-23|NONE|FOB|ccording to the bold i| +41355|12808|309|3|12|20649.60|0.08|0.08|N|O|1998-03-15|1998-04-29|1998-04-08|COLLECT COD|REG AIR|t the furio| +41355|249190|11695|4|14|15948.52|0.05|0.01|N|O|1998-03-12|1998-05-23|1998-04-10|COLLECT COD|TRUCK|ilent, enticing packages. slyly regul| +41355|126485|38988|5|27|40809.96|0.10|0.05|N|O|1998-05-05|1998-05-23|1998-06-01|DELIVER IN PERSON|AIR|ges integrate carefully across the ironi| +41355|824308|24309|6|23|28341.98|0.09|0.04|N|O|1998-03-19|1998-05-24|1998-03-24|NONE|RAIL|ding to the final, unusua| +41355|142450|4953|7|12|17909.40|0.03|0.02|N|O|1998-04-26|1998-05-30|1998-05-17|COLLECT COD|SHIP|slyly unusual frays impress careful| +41356|157021|32028|1|5|5390.10|0.05|0.02|N|O|1996-10-17|1996-09-28|1996-10-27|COLLECT COD|MAIL| pinto beans a| +41356|47684|10185|2|34|55477.12|0.03|0.06|N|O|1996-11-11|1996-11-22|1996-11-30|TAKE BACK RETURN|MAIL|instructions might impress. iron| +41356|419915|44932|3|38|69725.82|0.09|0.07|N|O|1996-09-17|1996-09-24|1996-10-16|DELIVER IN PERSON|REG AIR|ost slyly ironic instructions. carefully| +41356|507425|19936|4|17|24350.80|0.07|0.06|N|O|1996-11-14|1996-10-28|1996-12-08|DELIVER IN PERSON|AIR|c theodolites nag slyly | +41356|279770|4781|5|22|38494.72|0.07|0.00|N|O|1996-09-11|1996-10-17|1996-10-05|TAKE BACK RETURN|MAIL|gle. quickly sile| +41357|359548|22056|1|6|9645.18|0.07|0.06|N|O|1996-04-30|1996-05-18|1996-05-10|NONE|SHIP| ironic excuses eat blithely even id| +41357|912668|223|2|40|67224.80|0.09|0.01|N|O|1996-06-16|1996-05-05|1996-06-19|NONE|FOB|nder blithely quickly ironic | +41357|210457|10458|3|21|28716.24|0.04|0.00|N|O|1996-05-05|1996-05-27|1996-05-17|DELIVER IN PERSON|TRUCK|ly final dugout| +41358|865224|27742|1|38|45188.84|0.05|0.08|N|O|1997-09-09|1997-08-02|1997-10-05|TAKE BACK RETURN|TRUCK| the slyly ironic requests. carefully final| +41359|581896|6919|1|30|59336.10|0.05|0.01|N|O|1997-08-08|1997-08-27|1997-09-07|DELIVER IN PERSON|FOB|ornis detect from the unusual deposits. dep| +41359|920013|20014|2|46|47516.62|0.08|0.08|N|O|1997-09-19|1997-08-24|1997-10-03|DELIVER IN PERSON|TRUCK| furiously. always regular acc| +41359|648352|23377|3|19|24706.08|0.09|0.05|N|O|1997-06-28|1997-07-29|1997-07-17|TAKE BACK RETURN|MAIL|ithely. blithely silent accounts after th| +41359|847427|47428|4|32|43980.16|0.04|0.05|N|O|1997-06-12|1997-07-11|1997-06-18|TAKE BACK RETURN|FOB|ts sleep blithely upon the furiously | +41359|703543|41086|5|7|10825.57|0.04|0.05|N|O|1997-08-27|1997-07-23|1997-09-22|DELIVER IN PERSON|SHIP|he furiously ironic instructions. f| +41359|433737|33738|6|32|53462.72|0.10|0.03|N|O|1997-08-30|1997-08-27|1997-09-20|DELIVER IN PERSON|TRUCK|ccounts. slyly ironic asymptotes sleep | +41359|801531|14048|7|6|8594.94|0.04|0.07|N|O|1997-08-30|1997-07-07|1997-09-21|NONE|RAIL|ily silent accounts according to th| +41384|318909|31416|1|9|17351.01|0.10|0.04|N|O|1995-07-22|1995-08-03|1995-08-12|COLLECT COD|FOB|sts doubt after the furiously e| +41384|890483|28035|2|32|47150.08|0.00|0.02|N|O|1995-08-28|1995-08-29|1995-09-22|NONE|FOB|ly ironic requests haggle a| +41385|400013|37538|1|27|30051.00|0.09|0.00|N|O|1996-03-10|1996-01-26|1996-03-23|TAKE BACK RETURN|FOB| foxes poach blithel| +41385|10430|10431|2|37|49595.91|0.02|0.06|N|O|1996-01-28|1996-01-06|1996-01-29|TAKE BACK RETURN|TRUCK|lithely express packages w| +41385|282818|32819|3|45|81036.00|0.10|0.05|N|O|1996-02-13|1996-01-15|1996-03-04|NONE|AIR|ependencies| +41386|498006|23025|1|21|21083.58|0.09|0.04|N|O|1998-02-23|1997-12-20|1998-03-12|COLLECT COD|REG AIR|into beans. carefu| +41386|971416|8974|2|47|69906.39|0.02|0.01|N|O|1997-11-12|1997-12-19|1997-12-01|NONE|REG AIR|lar packages. express, ironi| +41386|578324|28325|3|13|18229.90|0.10|0.08|N|O|1998-03-01|1998-01-23|1998-03-17|COLLECT COD|FOB|he quickly regular packages. patterns | +41386|874832|37350|4|41|74078.39|0.08|0.08|N|O|1997-11-08|1997-12-08|1997-11-16|DELIVER IN PERSON|FOB|e requests nag slyly final d| +41387|347251|34770|1|20|25964.80|0.06|0.01|R|F|1992-07-03|1992-07-01|1992-07-10|COLLECT COD|AIR|onic deposits integrate quickly. furiously| +41387|233674|46179|2|48|77167.68|0.03|0.05|R|F|1992-07-14|1992-07-26|1992-08-07|DELIVER IN PERSON|FOB|e ironic deposits. | +41387|355039|17547|3|31|33914.62|0.01|0.03|A|F|1992-08-23|1992-08-04|1992-09-03|TAKE BACK RETURN|MAIL|ly final pinto beans. ca| +41387|127720|40223|4|45|78647.40|0.08|0.06|A|F|1992-09-13|1992-07-27|1992-10-12|TAKE BACK RETURN|AIR| careful deposits. packages integrate qu| +41387|582673|7696|5|28|49158.20|0.03|0.03|A|F|1992-07-16|1992-07-18|1992-08-07|TAKE BACK RETURN|AIR| slyly special requ| +41387|973285|23286|6|16|21731.84|0.01|0.01|R|F|1992-08-18|1992-07-29|1992-08-19|NONE|FOB|rs are blithely regular theodo| +41387|609|610|7|25|37740.00|0.08|0.08|R|F|1992-06-11|1992-08-26|1992-06-25|NONE|FOB|iously special platelets. qu| +41388|228893|16406|1|13|23684.44|0.03|0.00|A|F|1992-04-23|1992-05-20|1992-05-23|DELIVER IN PERSON|TRUCK|eposits sleep carefully blithely eve| +41388|995272|7792|2|1|1367.23|0.08|0.03|A|F|1992-05-27|1992-05-25|1992-06-01|TAKE BACK RETURN|RAIL|ptotes across the f| +41388|532792|45303|3|44|80289.88|0.01|0.07|A|F|1992-04-10|1992-05-15|1992-04-21|DELIVER IN PERSON|SHIP|iously ironic dependencies | +41388|632122|44635|4|37|39001.33|0.10|0.02|A|F|1992-06-18|1992-05-30|1992-06-25|DELIVER IN PERSON|AIR|uctions. carefully pending ideas sleep blit| +41389|249924|49925|1|5|9369.55|0.03|0.04|N|O|1996-11-12|1996-12-27|1996-11-22|COLLECT COD|SHIP|ans wake carefully furious| +41389|457908|7909|2|40|74635.20|0.10|0.02|N|O|1997-01-21|1996-12-10|1997-02-15|DELIVER IN PERSON|AIR|ut the regularly final instructions: fo| +41389|51751|26754|3|38|64704.50|0.07|0.05|N|O|1997-01-06|1996-12-19|1997-02-01|DELIVER IN PERSON|AIR|ke fluffily about the pending ideas. blithe| +41389|778234|28235|4|12|15746.40|0.05|0.06|N|O|1996-10-21|1996-11-14|1996-11-13|DELIVER IN PERSON|AIR|cajole along the furi| +41389|771133|33649|5|50|60205.00|0.07|0.03|N|O|1997-01-19|1996-12-26|1997-01-20|TAKE BACK RETURN|REG AIR|ounts are. carefully | +41389|426132|26133|6|46|48673.06|0.10|0.07|N|O|1996-12-11|1996-12-06|1996-12-20|COLLECT COD|REG AIR|slyly ruthle| +41390|180848|18358|1|6|11573.04|0.10|0.05|N|O|1997-03-10|1997-03-21|1997-04-09|DELIVER IN PERSON|AIR| the carefully pending requests. carefull| +41391|826056|26057|1|19|18658.19|0.04|0.05|A|F|1992-10-03|1992-10-03|1992-10-21|DELIVER IN PERSON|MAIL|g packages about the pen| +41391|514728|39749|2|33|57509.10|0.04|0.01|R|F|1992-10-24|1992-09-17|1992-11-15|DELIVER IN PERSON|TRUCK|ithely silent requests. silently regul| +41416|7419|19920|1|19|25201.79|0.07|0.01|A|F|1994-10-20|1994-09-04|1994-11-11|NONE|REG AIR|ts wake bli| +41416|680747|43261|2|37|63925.27|0.05|0.08|R|F|1994-08-02|1994-09-18|1994-08-14|COLLECT COD|AIR|ithely regular deposits are. | +41417|912400|24919|1|40|56494.40|0.08|0.01|R|F|1993-07-20|1993-06-27|1993-08-06|DELIVER IN PERSON|TRUCK|ly even excuses haggle slyly acr| +41417|690181|40182|2|27|31621.05|0.08|0.01|R|F|1993-07-09|1993-06-20|1993-08-01|NONE|AIR|y permanent asymptotes. regular pac| +41417|864108|1660|3|7|7504.42|0.10|0.01|A|F|1993-07-15|1993-05-23|1993-08-12|DELIVER IN PERSON|REG AIR|ut the special requests. special packages | +41417|60071|10072|4|9|9279.63|0.03|0.08|A|F|1993-04-30|1993-05-31|1993-05-24|DELIVER IN PERSON|REG AIR| nag above the quick foxe| +41417|605188|17701|5|13|14210.95|0.02|0.04|A|F|1993-03-31|1993-06-19|1993-04-21|TAKE BACK RETURN|MAIL|ts about the sp| +41417|388625|13640|6|7|11995.27|0.07|0.03|A|F|1993-03-31|1993-05-25|1993-04-03|NONE|SHIP|ld ideas affix blit| +41417|607976|33001|7|27|50866.38|0.09|0.07|A|F|1993-05-03|1993-06-19|1993-05-06|NONE|RAIL|among the courts sleep | +41418|245285|45286|1|16|19684.32|0.06|0.07|R|F|1993-04-26|1993-04-13|1993-05-09|DELIVER IN PERSON|MAIL| unusual excuses. furious| +41419|106136|6137|1|28|31979.64|0.02|0.02|N|O|1995-06-23|1995-08-09|1995-07-09|NONE|REG AIR|e along the slyly daring | +41419|811800|11801|2|20|34235.20|0.06|0.07|N|O|1995-09-21|1995-07-15|1995-10-02|DELIVER IN PERSON|MAIL|y final asymptotes. pinto| +41419|906763|6764|3|22|38933.84|0.00|0.05|N|O|1995-07-17|1995-08-09|1995-07-20|NONE|SHIP|ggle fluffily among the final, idle| +41419|953781|3782|4|20|36694.80|0.00|0.07|N|O|1995-09-11|1995-07-23|1995-09-18|NONE|FOB|es according to the | +41420|516215|16216|1|11|13543.09|0.08|0.04|R|F|1994-01-24|1994-01-25|1994-02-01|COLLECT COD|REG AIR|thely against the| +41420|18087|30588|2|7|7035.56|0.06|0.07|A|F|1994-02-16|1994-03-02|1994-03-11|NONE|AIR| deposits after the enticingly regu| +41420|986271|48791|3|4|5428.92|0.05|0.02|R|F|1994-01-05|1994-01-27|1994-01-30|TAKE BACK RETURN|RAIL|ake furiously. regular requests doze carefu| +41421|35375|22876|1|45|58966.65|0.08|0.05|N|O|1996-01-22|1996-01-25|1996-02-02|COLLECT COD|SHIP|affix about the express, quick no| +41421|534281|9302|2|16|21044.16|0.05|0.05|N|O|1996-02-02|1996-01-29|1996-02-12|NONE|SHIP|ccounts haggle furiou| +41422|157336|7337|1|50|69666.50|0.07|0.01|R|F|1994-05-15|1994-06-05|1994-06-02|TAKE BACK RETURN|TRUCK|ackages wake. c| +41422|336338|23857|2|2|2748.64|0.03|0.04|A|F|1994-08-13|1994-06-11|1994-09-07|TAKE BACK RETURN|MAIL|ernes may are against the dolph| +41422|817177|4726|3|35|38294.55|0.09|0.02|A|F|1994-08-10|1994-06-10|1994-08-27|TAKE BACK RETURN|RAIL|ct against t| +41422|292687|5193|4|28|47030.76|0.03|0.04|R|F|1994-06-22|1994-06-20|1994-06-28|TAKE BACK RETURN|RAIL|ding to the re| +41422|189117|1621|5|19|22916.09|0.08|0.04|A|F|1994-04-27|1994-05-25|1994-05-05|NONE|AIR|y slyly final platelets. slyly | +41422|475403|37913|6|15|20675.70|0.06|0.02|A|F|1994-07-31|1994-06-23|1994-08-13|NONE|SHIP|ar requests are furiously al| +41422|98094|10596|7|20|21841.80|0.01|0.06|A|F|1994-04-18|1994-06-29|1994-05-18|COLLECT COD|REG AIR|final deposits are slyly among the | +41423|664866|2406|1|47|86049.01|0.09|0.01|N|O|1996-10-06|1996-09-07|1996-10-13|TAKE BACK RETURN|SHIP|leep blithely carefully regular accounts: | +41423|387363|12378|2|8|11602.80|0.02|0.05|N|O|1996-09-23|1996-10-14|1996-10-19|NONE|MAIL|ss, close accounts-- packag| +41423|398108|10616|3|12|14473.08|0.04|0.06|N|O|1996-11-30|1996-10-22|1996-12-14|TAKE BACK RETURN|AIR|ecial courts impres| +41423|999452|37010|4|45|69813.45|0.10|0.05|N|O|1996-11-27|1996-09-12|1996-12-20|NONE|MAIL|ccounts boost furiously alongside of | +41448|899768|37320|1|37|65405.64|0.01|0.05|A|F|1995-05-28|1995-06-05|1995-06-17|COLLECT COD|RAIL|e above the bli| +41448|397230|47231|2|38|50434.36|0.00|0.05|R|F|1995-05-25|1995-05-24|1995-06-11|DELIVER IN PERSON|SHIP| should cajole carefully across the pendin| +41448|243264|43265|3|42|50704.50|0.08|0.05|R|F|1995-04-29|1995-04-26|1995-05-09|DELIVER IN PERSON|MAIL|nic ideas boost. enticingly fin| +41448|522905|22906|4|17|32773.96|0.10|0.06|A|F|1995-04-01|1995-06-02|1995-04-07|DELIVER IN PERSON|SHIP|are. slyly express instructions use careful| +41449|894164|31716|1|20|23162.40|0.03|0.05|A|F|1993-01-02|1993-01-30|1993-01-05|DELIVER IN PERSON|SHIP|ccounts dazzle according to the pendin| +41450|749844|37387|1|37|70070.97|0.05|0.08|A|F|1993-07-26|1993-05-24|1993-08-08|TAKE BACK RETURN|MAIL|s. slyly bold | +41450|623876|23877|2|27|48595.68|0.09|0.08|R|F|1993-07-31|1993-07-12|1993-08-22|COLLECT COD|FOB| ironic deposits sublate| +41450|475380|25381|3|12|16264.32|0.06|0.08|R|F|1993-05-18|1993-07-10|1993-06-07|TAKE BACK RETURN|REG AIR|eposits. slyly regu| +41450|706447|43990|4|14|20347.74|0.07|0.00|R|F|1993-06-30|1993-06-10|1993-07-01|COLLECT COD|REG AIR| cajole alongside of the ironi| +41450|250871|13377|5|24|43724.64|0.07|0.08|R|F|1993-08-14|1993-06-13|1993-09-02|COLLECT COD|TRUCK|s around the quickly even pa| +41450|385830|35831|6|33|63222.06|0.00|0.05|R|F|1993-06-12|1993-07-02|1993-07-08|COLLECT COD|RAIL|es. carefully final accounts play | +41451|261358|23864|1|47|62008.98|0.09|0.04|N|O|1996-03-08|1996-03-17|1996-03-14|COLLECT COD|AIR| regular, regular dep| +41451|632269|7294|2|18|21622.14|0.04|0.06|N|O|1996-03-05|1996-02-17|1996-03-21|NONE|REG AIR|es. closely regular foxes among the | +41451|529791|29792|3|21|38236.17|0.07|0.06|N|O|1996-04-16|1996-02-16|1996-05-12|TAKE BACK RETURN|MAIL| wake blithely pending| +41451|184480|46984|4|49|76659.52|0.08|0.06|N|O|1996-01-13|1996-02-29|1996-01-26|COLLECT COD|MAIL|pinto beans? ironic ideas are sl| +41451|549027|11538|5|9|9684.00|0.02|0.02|N|O|1995-12-30|1996-03-14|1996-01-06|NONE|AIR|final theod| +41451|495332|7842|6|18|23891.58|0.00|0.01|N|O|1996-03-07|1996-03-14|1996-03-20|TAKE BACK RETURN|FOB|orbits integrate. carefully reg| +41451|32302|32303|7|19|23451.70|0.09|0.04|N|O|1996-03-15|1996-02-06|1996-04-09|COLLECT COD|AIR|accounts. final| +41452|888814|1332|1|11|19830.47|0.00|0.03|N|O|1998-05-08|1998-04-19|1998-05-11|TAKE BACK RETURN|FOB|g accounts integrate packages. sile| +41452|291919|29435|2|4|7643.60|0.09|0.06|N|O|1998-06-06|1998-05-07|1998-06-07|NONE|FOB|to beans. regular packages above the slyl| +41452|277102|27103|3|6|6474.54|0.08|0.04|N|O|1998-05-12|1998-05-20|1998-05-29|TAKE BACK RETURN|RAIL|bold requests. | +41452|248685|48686|4|5|8168.35|0.01|0.01|N|O|1998-05-26|1998-05-02|1998-06-07|TAKE BACK RETURN|SHIP|leep slyly about the fluffi| +41452|637089|24626|5|15|15390.75|0.07|0.06|N|O|1998-05-23|1998-05-22|1998-06-16|NONE|TRUCK|e finally bold foxes. furious| +41452|549367|24388|6|29|41073.86|0.07|0.08|N|O|1998-03-24|1998-05-05|1998-04-22|COLLECT COD|RAIL| the slyly pending pac| +41452|204175|29184|7|29|31295.64|0.04|0.06|N|O|1998-04-10|1998-05-02|1998-05-08|COLLECT COD|MAIL|s. packages use carefully| +41453|561872|11873|1|47|90890.95|0.05|0.03|R|F|1993-12-16|1994-02-10|1993-12-19|DELIVER IN PERSON|MAIL|the express asymptotes. even theo| +41453|368220|30728|2|15|19323.15|0.01|0.04|R|F|1994-02-11|1994-01-13|1994-02-12|COLLECT COD|REG AIR|ies. thinly express deposits integr| +41453|668199|30713|3|8|9337.28|0.08|0.06|R|F|1993-11-30|1994-02-10|1993-12-06|DELIVER IN PERSON|FOB| fluffily. furious| +41453|412458|24967|4|12|16445.16|0.01|0.07|R|F|1994-03-05|1994-01-25|1994-03-30|TAKE BACK RETURN|SHIP|carefully final platelets sl| +41453|180682|18192|5|1|1762.68|0.02|0.01|R|F|1993-12-25|1994-02-10|1994-01-23|NONE|REG AIR|e carefully furiously fi| +41454|136559|36560|1|44|70204.20|0.00|0.04|N|O|1997-12-10|1997-12-12|1997-12-12|TAKE BACK RETURN|MAIL|ve furiously instructions. slyly ironic wa| +41454|143808|43809|2|33|61109.40|0.07|0.02|N|O|1997-10-27|1997-11-09|1997-11-01|DELIVER IN PERSON|REG AIR|efully along the| +41455|511771|49302|1|44|78441.00|0.00|0.06|N|O|1997-06-08|1997-05-10|1997-07-08|TAKE BACK RETURN|MAIL|ously regular pinto bean| +41455|329832|29833|2|24|44683.68|0.02|0.05|N|O|1997-04-19|1997-04-03|1997-05-17|TAKE BACK RETURN|AIR|ncies sleep quickly.| +41480|970924|45963|1|4|7979.52|0.07|0.07|A|F|1995-02-23|1995-03-23|1995-03-16|COLLECT COD|AIR|y even accounts. dogged| +41480|317176|17177|2|29|34601.64|0.09|0.05|R|F|1995-02-25|1995-04-12|1995-03-08|DELIVER IN PERSON|TRUCK|y. foxes integr| +41481|147895|10398|1|34|66058.26|0.02|0.03|A|F|1993-11-22|1993-10-09|1993-12-16|DELIVER IN PERSON|FOB|y along the excuses. careful| +41481|666554|41581|2|16|24328.32|0.10|0.07|R|F|1993-11-30|1993-10-11|1993-12-07|COLLECT COD|MAIL| platelets according to t| +41481|768650|43681|3|10|17186.20|0.00|0.05|A|F|1993-11-13|1993-10-16|1993-11-16|NONE|AIR|osits. ironic accounts are | +41481|692284|42285|4|35|44668.75|0.03|0.04|A|F|1993-09-26|1993-10-23|1993-10-06|TAKE BACK RETURN|RAIL|cording to the regular exc| +41481|204885|42398|5|8|14318.96|0.00|0.02|R|F|1993-11-02|1993-11-04|1993-11-29|COLLECT COD|AIR| carefully after the b| +41481|490824|40825|6|9|16333.20|0.00|0.02|A|F|1993-09-16|1993-11-01|1993-09-30|COLLECT COD|AIR|thely silent excuses. carefully final| +41481|264908|2424|7|23|43076.47|0.01|0.00|A|F|1993-11-16|1993-10-08|1993-11-19|COLLECT COD|SHIP|osits cajole final ideas. regula| +41482|300289|12796|1|25|32231.75|0.08|0.05|N|O|1995-09-03|1995-07-19|1995-10-02|NONE|REG AIR|s use carefully final accounts. packages | +41482|943536|18573|2|40|63179.60|0.02|0.03|N|O|1995-08-18|1995-07-13|1995-08-23|NONE|REG AIR|sleep carefully unusual requests. bold, | +41482|3946|3947|3|35|64747.90|0.01|0.06|N|O|1995-08-14|1995-07-02|1995-08-22|DELIVER IN PERSON|REG AIR|ronic idea| +41482|312608|25115|4|13|21067.67|0.07|0.03|N|O|1995-08-26|1995-06-24|1995-09-15|TAKE BACK RETURN|RAIL|detect furiously aft| +41482|995879|20918|5|10|19748.30|0.07|0.05|N|O|1995-07-19|1995-08-01|1995-08-08|DELIVER IN PERSON|RAIL|ajole never against the requests. regular| +41483|885111|10146|1|42|46034.94|0.04|0.07|N|O|1996-05-06|1996-05-07|1996-05-16|COLLECT COD|SHIP|ld packages detect after the quie| +41483|54901|17403|2|35|64956.50|0.00|0.05|N|O|1996-06-14|1996-05-12|1996-07-08|TAKE BACK RETURN|REG AIR|s are carefully slyly regular instruct| +41483|715937|40966|3|7|13670.30|0.05|0.02|N|O|1996-07-26|1996-07-01|1996-08-10|COLLECT COD|SHIP|symptotes are. fluffily regular f| +41483|737814|12843|4|43|79626.54|0.06|0.03|N|O|1996-07-07|1996-05-14|1996-08-04|DELIVER IN PERSON|AIR|e furiously. slyly final packages nag fluff| +41483|426355|13880|5|45|57659.85|0.00|0.03|N|O|1996-07-27|1996-06-23|1996-08-18|NONE|REG AIR|regular theodolites. fluffily regul| +41483|735906|48421|6|32|62139.84|0.10|0.04|N|O|1996-06-25|1996-06-11|1996-07-22|NONE|FOB|lyly final requests boost besides th| +41484|376874|14396|1|10|19508.60|0.09|0.07|N|O|1996-08-09|1996-07-11|1996-08-22|DELIVER IN PERSON|RAIL|e final excuses. regular, bold depos| +41484|110581|35586|2|25|39789.50|0.02|0.05|N|O|1996-06-21|1996-07-21|1996-06-30|COLLECT COD|REG AIR| packages. bold, even waters | +41485|73209|10713|1|33|39012.60|0.09|0.03|R|F|1994-01-03|1994-02-13|1994-01-09|TAKE BACK RETURN|MAIL|riously around the furiously regular | +41485|406913|44438|2|24|43677.36|0.00|0.07|R|F|1994-03-28|1994-01-10|1994-04-11|COLLECT COD|REG AIR|ding instructions solve blithe| +41485|971974|47013|3|7|14321.51|0.07|0.04|A|F|1994-01-08|1994-01-29|1994-01-13|DELIVER IN PERSON|AIR|arefully. furiousl| +41485|962195|12196|4|34|42743.10|0.10|0.03|R|F|1994-02-22|1994-02-21|1994-02-23|TAKE BACK RETURN|RAIL|ar platelets-- blithely pend| +41485|603580|41117|5|15|22253.25|0.09|0.05|A|F|1994-01-25|1994-02-08|1994-02-10|COLLECT COD|MAIL|according to the bli| +41485|367607|5129|6|17|28468.03|0.02|0.05|A|F|1993-12-05|1994-01-23|1993-12-15|DELIVER IN PERSON|TRUCK|gged instructions a| +41486|778482|3513|1|31|48373.95|0.03|0.08|N|O|1996-01-11|1996-02-09|1996-02-05|NONE|TRUCK|usly ironic accounts. fluff| +41486|944372|31927|2|18|25493.94|0.07|0.01|N|O|1996-02-22|1996-01-13|1996-03-16|COLLECT COD|SHIP|instructions wake according to th| +41487|866633|4185|1|28|44788.52|0.06|0.08|N|O|1998-02-01|1997-11-09|1998-02-26|TAKE BACK RETURN|RAIL|even requests| +41487|495639|33167|2|17|27788.37|0.04|0.06|N|O|1998-02-06|1997-11-13|1998-03-04|NONE|TRUCK|ss pinto beans | +41487|197799|10303|3|40|75871.60|0.09|0.07|N|O|1998-01-06|1997-12-11|1998-01-25|DELIVER IN PERSON|SHIP|sts. blithely regular request| +41487|407442|32459|4|24|32386.08|0.05|0.02|N|O|1997-12-31|1997-11-23|1998-01-11|TAKE BACK RETURN|REG AIR|arefully regular, | +41512|327576|40083|1|13|20846.28|0.05|0.05|R|F|1992-05-27|1992-07-27|1992-06-18|DELIVER IN PERSON|SHIP|e enticingly iro| +41512|560604|23116|2|10|16645.80|0.01|0.04|A|F|1992-08-09|1992-07-17|1992-08-21|DELIVER IN PERSON|REG AIR|hely ironic requests integrate quickly| +41512|63685|38688|3|11|18135.48|0.02|0.08|A|F|1992-07-26|1992-08-01|1992-08-03|NONE|REG AIR| requests. express foxes sleep | +41512|341281|16294|4|6|7933.62|0.06|0.02|R|F|1992-07-12|1992-07-15|1992-08-06|NONE|SHIP|arefully express ideas. unu| +41512|895856|45857|5|42|77776.02|0.06|0.07|A|F|1992-08-03|1992-06-17|1992-08-28|DELIVER IN PERSON|TRUCK|g to the carefully pending ideas. even| +41513|280701|18217|1|19|31952.11|0.02|0.08|N|O|1997-06-07|1997-08-09|1997-06-10|TAKE BACK RETURN|TRUCK|xpress packages. ironic, | +41513|728620|28621|2|49|80780.91|0.01|0.06|N|O|1997-08-07|1997-07-13|1997-08-19|COLLECT COD|RAIL| quickly even depende| +41513|912514|12515|3|46|70217.62|0.06|0.01|N|O|1997-07-02|1997-08-12|1997-07-18|COLLECT COD|TRUCK|ffily final requests detect.| +41513|620563|20564|4|16|23736.48|0.01|0.06|N|O|1997-06-26|1997-08-01|1997-07-11|NONE|MAIL| quickly even| +41514|960500|10501|1|41|63978.86|0.06|0.06|A|F|1993-03-20|1993-03-10|1993-04-19|COLLECT COD|TRUCK|egular accounts-- sile| +41514|110243|22746|2|37|46369.88|0.10|0.01|A|F|1993-04-03|1993-03-06|1993-04-28|DELIVER IN PERSON|SHIP|ctions. ironic, final ideas sleep blithe| +41514|846919|21952|3|23|42915.01|0.04|0.05|A|F|1993-02-09|1993-03-05|1993-03-08|TAKE BACK RETURN|MAIL| regular packages. closely| +41514|163776|1286|4|35|64391.95|0.10|0.06|R|F|1993-03-31|1993-03-22|1993-04-14|COLLECT COD|TRUCK|y ironic packages cajole after the qui| +41515|321079|8598|1|2|2200.12|0.00|0.08|R|F|1992-10-24|1992-11-05|1992-10-29|TAKE BACK RETURN|MAIL|quests. ironic requests sl| +41515|360526|10527|2|25|39662.75|0.01|0.04|R|F|1992-11-02|1992-11-03|1992-11-14|DELIVER IN PERSON|REG AIR|ges against the unusual dependen| +41516|277799|27800|1|40|71071.20|0.10|0.03|N|O|1996-06-29|1996-06-11|1996-07-01|COLLECT COD|SHIP|yly special theodolites. fluf| +41516|952511|2512|2|10|15634.70|0.01|0.04|N|O|1996-08-05|1996-06-23|1996-08-09|NONE|AIR|ites use furiousl| +41516|849301|24334|3|27|33757.02|0.10|0.02|N|O|1996-05-31|1996-07-20|1996-06-23|TAKE BACK RETURN|MAIL|r evenly ironic asympt| +41516|194364|44365|4|39|56876.04|0.09|0.00|N|O|1996-08-04|1996-07-03|1996-08-18|NONE|RAIL|ructions wake fluf| +41516|664208|39235|5|17|19926.89|0.07|0.01|N|O|1996-06-07|1996-06-26|1996-06-29|TAKE BACK RETURN|TRUCK|beans wake bl| +41517|833848|33849|1|10|17818.00|0.10|0.00|R|F|1995-01-13|1994-11-29|1995-02-02|DELIVER IN PERSON|SHIP|uriously f| +41517|470328|20329|2|47|61020.10|0.08|0.03|R|F|1994-11-23|1994-12-02|1994-12-05|TAKE BACK RETURN|RAIL|counts wak| +41517|801345|13862|3|35|43620.50|0.01|0.07|A|F|1994-12-30|1994-12-10|1995-01-20|COLLECT COD|MAIL|e. asymptotes engage fu| +41517|191648|4152|4|18|31313.52|0.05|0.06|R|F|1995-01-24|1995-01-04|1995-02-18|DELIVER IN PERSON|TRUCK| packages cajole carefully among the ironic| +41517|21096|21097|5|44|44751.96|0.10|0.03|R|F|1994-12-23|1995-01-03|1995-01-04|DELIVER IN PERSON|MAIL| pending, bold ex| +41517|558923|33946|6|26|51529.40|0.08|0.02|R|F|1994-12-12|1995-01-13|1995-01-11|DELIVER IN PERSON|TRUCK|onic packages wake slyly acro| +41518|317225|42238|1|29|36024.09|0.05|0.06|R|F|1993-07-24|1993-06-20|1993-07-28|DELIVER IN PERSON|REG AIR| furiously pending requests integrate | +41518|588594|13617|2|39|65620.23|0.02|0.06|R|F|1993-06-18|1993-07-13|1993-07-05|COLLECT COD|REG AIR|lithely special req| +41519|623877|36390|1|33|59427.72|0.03|0.06|A|F|1994-06-17|1994-06-06|1994-06-18|NONE|TRUCK|e of the regular, bold packages| +41519|486267|48777|2|8|10025.92|0.07|0.06|R|F|1994-04-17|1994-05-06|1994-04-20|COLLECT COD|FOB|ts-- slyly pe| +41519|675511|25512|3|5|7432.40|0.00|0.04|A|F|1994-06-18|1994-05-26|1994-07-12|DELIVER IN PERSON|AIR|regular, final a| +41519|297874|22885|4|18|33693.48|0.07|0.03|R|F|1994-06-17|1994-04-30|1994-06-30|DELIVER IN PERSON|FOB|refully pending pa| +41519|368163|30671|5|1|1231.15|0.08|0.08|R|F|1994-05-26|1994-06-13|1994-05-31|DELIVER IN PERSON|SHIP|ording to t| +41544|71330|33832|1|5|6506.65|0.04|0.06|R|F|1993-05-04|1993-03-25|1993-06-01|TAKE BACK RETURN|SHIP|ly regular instructions wake. sly| +41544|830612|18161|2|35|53989.95|0.09|0.00|R|F|1993-04-02|1993-02-19|1993-04-24|DELIVER IN PERSON|TRUCK|he ironic grouch| +41544|85781|48283|3|11|19434.58|0.06|0.06|R|F|1993-02-21|1993-03-07|1993-03-20|NONE|RAIL|ing requests boost fl| +41544|706846|31875|4|43|79670.83|0.08|0.01|A|F|1993-02-02|1993-03-08|1993-02-25|TAKE BACK RETURN|SHIP|al requests nag. furiously reg| +41544|946722|34277|5|24|42448.32|0.01|0.05|R|F|1993-03-23|1993-02-17|1993-04-04|TAKE BACK RETURN|MAIL|regular foxes; car| +41544|540475|40476|6|8|12123.60|0.05|0.01|R|F|1993-01-25|1993-03-17|1993-02-15|DELIVER IN PERSON|SHIP|uickly blit| +41544|761611|24127|7|27|45159.66|0.00|0.08|A|F|1993-04-15|1993-03-13|1993-05-15|COLLECT COD|REG AIR|g express, unu| +41545|381725|19247|1|8|14453.68|0.05|0.00|A|F|1994-08-02|1994-09-27|1994-08-15|DELIVER IN PERSON|TRUCK|s nag carefully. furiously express excuse| +41545|642237|42238|2|20|23584.00|0.02|0.04|A|F|1994-08-15|1994-09-04|1994-09-05|NONE|FOB|essly. carefully s| +41545|61654|24156|3|6|9693.90|0.10|0.01|R|F|1994-07-16|1994-08-15|1994-08-07|TAKE BACK RETURN|SHIP|s haggle furiously. slyly fi| +41545|205882|18387|4|41|73302.67|0.02|0.08|A|F|1994-09-12|1994-09-16|1994-10-05|TAKE BACK RETURN|RAIL|gular instructio| +41545|257544|7545|5|8|12012.24|0.08|0.04|A|F|1994-08-29|1994-09-06|1994-09-18|COLLECT COD|FOB|eans. regular accounts d| +41545|535345|35346|6|23|31747.36|0.06|0.03|R|F|1994-08-12|1994-09-07|1994-08-20|TAKE BACK RETURN|REG AIR|ironic packages integrate slyly alon| +41546|91211|28715|1|48|57706.08|0.01|0.03|A|F|1993-02-27|1993-01-28|1993-03-27|COLLECT COD|SHIP|ajole carefully after the furiously | +41546|969042|6600|2|7|7777.00|0.10|0.03|A|F|1993-03-21|1993-03-05|1993-03-29|DELIVER IN PERSON|AIR| nag furiously across t| +41547|745085|32628|1|15|16950.75|0.06|0.05|N|O|1997-01-24|1997-01-11|1997-02-05|DELIVER IN PERSON|REG AIR|ffily pending accounts sleep furiousl| +41547|628224|15761|2|31|35717.89|0.04|0.03|N|O|1997-03-19|1997-01-15|1997-03-29|NONE|SHIP|cial packages. instru| +41547|544508|19529|3|26|40364.48|0.05|0.04|N|O|1997-01-19|1996-12-27|1997-01-22|DELIVER IN PERSON|FOB|kly permanent| +41547|537906|417|4|25|48597.00|0.05|0.07|N|O|1997-01-03|1997-01-26|1997-01-16|TAKE BACK RETURN|SHIP|tructions. regular| +41547|574742|24743|5|3|5450.16|0.07|0.05|N|O|1997-03-07|1997-01-25|1997-03-16|NONE|FOB|ress theodolites. carefully| +41547|687603|37604|6|39|62032.23|0.08|0.06|N|O|1997-02-04|1997-01-25|1997-02-19|TAKE BACK RETURN|REG AIR|kages serve regularly b| +41548|219734|7247|1|37|61187.64|0.06|0.08|N|O|1997-08-11|1997-10-01|1997-09-06|NONE|TRUCK|ptotes wake slyly ac| +41548|59472|21974|2|48|68710.56|0.03|0.02|N|O|1997-08-09|1997-08-20|1997-09-01|NONE|TRUCK|g to the even ide| +41548|535406|47917|3|17|24503.46|0.03|0.02|N|O|1997-07-18|1997-10-06|1997-08-10|NONE|AIR|odolites sleep slyly deposits. b| +41548|556586|31609|4|41|67344.96|0.01|0.00|N|O|1997-08-28|1997-09-19|1997-09-08|NONE|RAIL|ss foxes nag carefully p| +41548|531384|43895|5|15|21230.40|0.05|0.03|N|O|1997-09-08|1997-09-28|1997-09-24|DELIVER IN PERSON|REG AIR|un theodolites| +41549|44624|32125|1|4|6274.48|0.09|0.07|A|F|1995-03-26|1995-01-25|1995-04-19|NONE|TRUCK|fully pending packages haggle blithe| +41549|988562|26120|2|44|72622.88|0.08|0.01|R|F|1995-03-04|1995-03-11|1995-03-12|NONE|MAIL|heodolites. fluffily even r| +41549|750366|12882|3|32|45322.56|0.07|0.06|A|F|1995-04-15|1995-02-22|1995-04-18|COLLECT COD|MAIL|s. regular warthogs integrate slyl| +41550|6118|6119|1|25|25602.75|0.07|0.03|N|O|1998-04-27|1998-06-29|1998-05-02|TAKE BACK RETURN|SHIP|furiously. accounts across | +41550|816915|29432|2|32|58619.84|0.06|0.06|N|O|1998-05-03|1998-06-24|1998-05-09|TAKE BACK RETURN|REG AIR|about the ironic, spe| +41550|886520|49038|3|35|52726.80|0.00|0.05|N|O|1998-07-12|1998-06-08|1998-07-13|COLLECT COD|MAIL|ular packages. regula| +41550|729770|42285|4|1|1799.74|0.09|0.04|N|O|1998-04-30|1998-06-02|1998-05-27|COLLECT COD|MAIL|al requests. | +41550|235061|35062|5|42|41834.10|0.09|0.06|N|O|1998-06-24|1998-05-26|1998-07-21|COLLECT COD|MAIL| the blithely expres| +41550|660323|35350|6|25|32082.25|0.04|0.02|N|O|1998-07-25|1998-05-18|1998-08-06|COLLECT COD|TRUCK|es-- blithe| +41550|37875|376|7|17|30818.79|0.03|0.03|N|O|1998-05-11|1998-07-01|1998-05-17|NONE|MAIL|ctions: pinto beans unw| +41551|555052|17564|1|32|35424.96|0.01|0.07|N|O|1997-01-25|1997-03-27|1997-01-27|NONE|REG AIR| platelets eat furiously. bold packages nod| +41551|749626|37169|2|19|31836.21|0.02|0.04|N|O|1997-01-04|1997-03-17|1997-01-30|NONE|REG AIR|g the packages unwind slyly across the sl| +41551|952503|2504|3|11|17110.06|0.01|0.00|N|O|1996-12-31|1997-03-21|1997-01-20|COLLECT COD|SHIP|yly final theodolites. bold ideas sle| +41551|704349|4350|4|33|44659.23|0.01|0.02|N|O|1997-01-31|1997-02-22|1997-02-10|DELIVER IN PERSON|FOB|gainst the furiously ironic plate| +41551|982990|45510|5|22|45604.90|0.10|0.06|N|O|1997-01-02|1997-03-18|1997-01-31|DELIVER IN PERSON|FOB|ix slyly along th| +41576|217023|29528|1|21|19740.21|0.00|0.07|A|F|1995-03-26|1995-05-16|1995-03-31|COLLECT COD|RAIL| after the quickly special theodolites w| +41576|490758|40759|2|18|31477.14|0.00|0.08|A|F|1995-04-16|1995-05-09|1995-05-13|NONE|FOB|into beans against the slyly eve| +41576|156992|44502|3|12|24587.88|0.03|0.08|A|F|1995-05-04|1995-04-03|1995-06-02|COLLECT COD|AIR|y final accounts wake slyly. slow pint| +41576|547924|47925|4|20|39438.00|0.05|0.03|A|F|1995-04-28|1995-05-30|1995-05-09|TAKE BACK RETURN|FOB|ven, ironic foxes: fl| +41577|695545|33085|1|29|44674.79|0.08|0.01|N|O|1998-04-06|1998-04-22|1998-04-25|TAKE BACK RETURN|RAIL|onic ideas hag| +41578|310028|22535|1|47|48786.47|0.04|0.04|A|F|1992-04-22|1992-05-14|1992-04-27|DELIVER IN PERSON|FOB|kages. final foxes affix arou| +41579|585696|48208|1|4|7126.68|0.00|0.05|R|F|1992-12-10|1992-11-12|1993-01-05|COLLECT COD|MAIL|aids. furiously regular dependenci| +41579|789588|2104|2|16|26840.80|0.02|0.02|A|F|1993-01-11|1992-10-31|1993-02-03|TAKE BACK RETURN|RAIL| asymptotes use| +41579|597511|10023|3|14|22518.86|0.05|0.06|R|F|1992-11-16|1992-11-18|1992-11-28|COLLECT COD|TRUCK|ar theodolites detec| +41579|361692|36707|4|32|56117.76|0.06|0.03|R|F|1992-12-19|1992-11-23|1992-12-28|TAKE BACK RETURN|AIR|kages eat quickly ac| +41580|869715|7267|1|41|69071.47|0.02|0.06|N|O|1997-11-06|1998-01-06|1997-12-06|TAKE BACK RETURN|MAIL|le fluffily. | +41580|291467|41468|2|6|8750.70|0.02|0.06|N|O|1998-03-05|1998-01-30|1998-04-03|TAKE BACK RETURN|AIR|ts among the furiously even t| +41580|669652|7192|3|27|43783.74|0.00|0.00|N|O|1997-11-28|1997-12-16|1997-12-02|TAKE BACK RETURN|SHIP|es sleep? special, regular pinto bea| +41580|835552|48069|4|36|53550.36|0.07|0.03|N|O|1998-01-08|1998-01-10|1998-01-29|DELIVER IN PERSON|REG AIR|tain final deposits. unusual pa| +41581|101904|39411|1|13|24776.70|0.00|0.00|R|F|1994-10-13|1994-08-30|1994-10-21|TAKE BACK RETURN|MAIL|furiously ironic accounts integ| +41581|684010|9037|2|9|8945.82|0.01|0.05|A|F|1994-10-26|1994-08-01|1994-11-16|COLLECT COD|MAIL|ckages cajole across | +41582|553108|28131|1|26|30188.08|0.00|0.05|N|O|1996-12-22|1997-03-01|1997-01-06|NONE|REG AIR|ven warthogs | +41583|985320|35321|1|35|49184.80|0.06|0.01|R|F|1992-01-07|1992-02-16|1992-01-12|NONE|REG AIR| the furiously even accounts| +41583|273052|10568|2|6|6150.24|0.05|0.06|A|F|1992-04-18|1992-02-15|1992-05-13|DELIVER IN PERSON|RAIL| requests. speci| +41583|179613|4620|3|47|79552.67|0.07|0.07|R|F|1992-02-18|1992-03-06|1992-02-23|TAKE BACK RETURN|FOB|cial dinos sleep beneat| +41583|746955|46956|4|49|98094.08|0.08|0.00|A|F|1992-02-23|1992-02-04|1992-03-13|TAKE BACK RETURN|SHIP|d the slowly final p| +41608|522091|34602|1|28|31165.96|0.05|0.06|R|F|1993-11-14|1993-12-19|1993-12-13|DELIVER IN PERSON|REG AIR|gular requests. idly | +41608|776091|1122|2|47|54851.82|0.04|0.08|R|F|1994-01-04|1993-12-16|1994-01-09|NONE|FOB| along the packages serve furiously quickl| +41609|311565|11566|1|37|58332.35|0.10|0.00|N|O|1996-06-21|1996-07-09|1996-07-11|COLLECT COD|SHIP|r platelets haggle furiously against t| +41609|464444|14445|2|2|2816.84|0.06|0.08|N|O|1996-04-19|1996-06-21|1996-05-07|TAKE BACK RETURN|RAIL|special foxes. fur| +41609|910293|47848|3|31|40400.75|0.08|0.07|N|O|1996-08-12|1996-06-12|1996-08-18|DELIVER IN PERSON|REG AIR|t the fluffily bold inst| +41610|586396|23930|1|12|17788.44|0.08|0.06|N|O|1996-06-07|1996-07-29|1996-06-13|NONE|FOB| slyly final m| +41610|553928|16440|2|48|95131.20|0.02|0.04|N|O|1996-08-28|1996-07-23|1996-09-25|TAKE BACK RETURN|FOB|ions; furiously ironic instructions about | +41610|859901|9902|3|36|66990.96|0.00|0.01|N|O|1996-07-27|1996-08-03|1996-08-26|DELIVER IN PERSON|FOB|against the packages. bold, pen| +41610|347040|34559|4|47|51090.41|0.10|0.04|N|O|1996-08-31|1996-07-31|1996-09-24|DELIVER IN PERSON|REG AIR|sts: blithely quiet pinto beans b| +41610|698699|11213|5|10|16976.60|0.05|0.07|N|O|1996-06-29|1996-08-03|1996-07-07|TAKE BACK RETURN|FOB|s. carefully final packages nag | +41610|24579|24580|6|11|16539.27|0.05|0.04|N|O|1996-07-18|1996-07-03|1996-07-28|DELIVER IN PERSON|RAIL| furious forg| +41611|784336|21882|1|25|35507.50|0.01|0.04|A|F|1995-02-27|1995-02-12|1995-03-16|COLLECT COD|SHIP|ding to the carefully bold ins| +41611|331327|18846|2|34|46182.54|0.01|0.04|A|F|1995-04-04|1995-02-28|1995-04-21|COLLECT COD|TRUCK|ckages sleep! carefully | +41611|610124|22637|3|20|20681.80|0.01|0.06|R|F|1995-02-15|1995-02-13|1995-03-15|DELIVER IN PERSON|RAIL| bold requests boost alongside of the | +41611|351864|1865|4|30|57475.50|0.03|0.05|R|F|1995-02-14|1995-01-08|1995-03-09|DELIVER IN PERSON|SHIP|nic packages. blithely bold deposits acro| +41611|774281|24282|5|10|13552.50|0.10|0.04|A|F|1995-01-31|1995-01-10|1995-02-09|COLLECT COD|TRUCK|during the final deposits. | +41611|328686|16205|6|50|85733.50|0.09|0.05|A|F|1995-02-22|1995-03-08|1995-03-11|COLLECT COD|SHIP| the special, ironic deposits. st| +41611|218347|43356|7|33|41755.89|0.03|0.01|R|F|1995-02-09|1995-01-15|1995-02-13|TAKE BACK RETURN|REG AIR|ajole. fluffily unusual requests hag| +41612|757569|20085|1|42|68314.26|0.10|0.00|N|O|1995-11-09|1996-01-01|1995-11-13|COLLECT COD|FOB|in grouches kindle quickly ironic de| +41612|449575|49576|2|33|50310.15|0.04|0.06|N|O|1996-02-17|1996-01-15|1996-03-08|TAKE BACK RETURN|SHIP|ges about the slowly ironic deposits affix| +41612|5706|5707|3|17|27398.90|0.09|0.02|N|O|1995-12-28|1996-01-19|1996-01-01|TAKE BACK RETURN|TRUCK|press deposits haggle| +41612|891901|4419|4|13|24607.18|0.01|0.04|N|O|1995-12-23|1996-01-15|1995-12-27|DELIVER IN PERSON|FOB|tes run according to the unus| +41612|173899|11409|5|10|19728.90|0.07|0.01|N|O|1996-02-23|1996-01-16|1996-02-24|DELIVER IN PERSON|TRUCK|yly regular dolphins. bold, slow requ| +41612|716927|41956|6|20|38877.80|0.08|0.03|N|O|1995-11-16|1996-01-07|1995-12-06|COLLECT COD|REG AIR|uffily bus| +41613|692876|5390|1|41|76622.44|0.08|0.06|N|O|1996-10-16|1996-09-03|1996-11-13|TAKE BACK RETURN|AIR|g foxes are slyly reg| +41613|162077|24581|2|35|39867.45|0.06|0.04|N|O|1996-10-08|1996-09-21|1996-11-07|COLLECT COD|SHIP|the pending, ironic courts. f| +41613|20242|20243|3|50|58112.00|0.00|0.05|N|O|1996-11-20|1996-09-09|1996-12-17|TAKE BACK RETURN|MAIL|leep according | +41613|203334|15839|4|50|61866.00|0.01|0.03|N|O|1996-08-14|1996-09-14|1996-09-03|COLLECT COD|TRUCK|lithely unusual depos| +41613|434430|9447|5|5|6822.05|0.06|0.06|N|O|1996-10-05|1996-10-13|1996-10-10|DELIVER IN PERSON|TRUCK|ffily at the carefully e| +41613|454541|4542|6|34|50847.68|0.07|0.05|N|O|1996-11-06|1996-08-31|1996-11-22|NONE|SHIP| express packages. slyly bold patter| +41614|390122|40123|1|50|60605.50|0.01|0.01|R|F|1992-11-19|1992-09-26|1992-12-17|DELIVER IN PERSON|RAIL|its. blithely f| +41614|778292|28293|2|11|15072.86|0.08|0.01|R|F|1992-09-08|1992-09-05|1992-09-17|NONE|AIR| foxes across the carefu| +41614|741892|29435|3|17|32875.62|0.06|0.06|A|F|1992-08-30|1992-09-17|1992-09-24|COLLECT COD|MAIL|uctions. carefully dogged gifts boos| +41614|978760|3799|4|15|27580.80|0.07|0.06|A|F|1992-08-18|1992-10-15|1992-09-15|COLLECT COD|FOB|ally furiously ironic| +41614|5223|5224|5|2|2256.44|0.10|0.01|A|F|1992-08-08|1992-08-25|1992-08-11|DELIVER IN PERSON|RAIL|ts thrash carefully even| +41614|767261|17262|6|20|26564.60|0.04|0.07|R|F|1992-08-18|1992-09-06|1992-09-08|TAKE BACK RETURN|REG AIR| quickly unus| +41614|349112|49113|7|46|53410.60|0.08|0.06|R|F|1992-07-28|1992-09-11|1992-08-08|DELIVER IN PERSON|SHIP|ckages wake am| +41615|520298|7829|1|42|55367.34|0.05|0.08|N|O|1996-06-08|1996-05-22|1996-07-02|COLLECT COD|RAIL|unts. carefu| +41615|633080|8105|2|17|17221.85|0.01|0.03|N|O|1996-03-12|1996-05-13|1996-04-06|TAKE BACK RETURN|FOB|uests around th| +41640|477643|2662|1|35|56721.70|0.03|0.07|A|F|1994-02-09|1993-12-12|1994-02-24|DELIVER IN PERSON|FOB|lithely! slyly unusual theodolites boost.| +41640|731097|6126|2|14|15792.84|0.04|0.03|A|F|1994-01-19|1993-11-21|1994-02-12|DELIVER IN PERSON|SHIP|sly final instruc| +41640|540699|28230|3|8|13917.36|0.04|0.06|R|F|1994-02-20|1993-12-15|1994-03-12|DELIVER IN PERSON|SHIP|ual epitaphs. s| +41640|511874|24385|4|35|66004.75|0.01|0.00|A|F|1994-01-05|1994-01-06|1994-01-21|TAKE BACK RETURN|REG AIR|ons nag fluffily according to the| +41641|209007|34016|1|18|16487.82|0.01|0.00|A|F|1993-11-18|1993-09-03|1993-12-02|COLLECT COD|SHIP|deposits? unu| +41641|777326|2357|2|39|54728.31|0.04|0.06|R|F|1993-11-04|1993-08-22|1993-11-28|TAKE BACK RETURN|SHIP|alongside of the quick| +41641|515677|15678|3|12|20311.80|0.06|0.05|R|F|1993-09-29|1993-09-21|1993-10-09|DELIVER IN PERSON|FOB|ely furiously regular sheaves. un| +41642|913263|818|1|38|48496.36|0.08|0.02|N|O|1998-05-06|1998-04-05|1998-05-13|TAKE BACK RETURN|SHIP|nding requests snooze blithely. accoun| +41642|206398|31407|2|3|3913.14|0.08|0.00|N|O|1998-02-13|1998-03-15|1998-03-08|TAKE BACK RETURN|SHIP|ng the unusual theodo| +41642|917414|4969|3|24|34352.88|0.06|0.07|N|O|1998-02-21|1998-04-13|1998-03-15|DELIVER IN PERSON|MAIL|ss, express courts! blithely iro| +41642|966388|28908|4|40|58173.60|0.01|0.00|N|O|1998-05-13|1998-03-22|1998-06-03|NONE|FOB|t, regular requests. slyly ex| +41643|799682|49683|1|23|40977.95|0.04|0.06|N|O|1995-08-15|1995-10-07|1995-08-31|DELIVER IN PERSON|MAIL|ons. quickly even depend| +41643|238643|26156|2|21|33214.23|0.07|0.01|N|O|1995-11-14|1995-10-05|1995-12-07|TAKE BACK RETURN|RAIL|cial deposits use p| +41643|869302|6854|3|13|16526.38|0.09|0.00|N|O|1995-10-06|1995-10-28|1995-11-01|COLLECT COD|MAIL|t fluffily. furiously silent pi| +41644|869016|31534|1|12|11819.64|0.09|0.08|R|F|1992-06-21|1992-05-11|1992-06-28|NONE|MAIL| carefully regula| +41644|543632|6143|2|14|23458.54|0.08|0.00|A|F|1992-03-03|1992-04-17|1992-03-15|COLLECT COD|MAIL|odolites are quic| +41644|820458|20459|3|7|9648.87|0.02|0.02|A|F|1992-05-25|1992-05-04|1992-06-09|DELIVER IN PERSON|MAIL|uctions. slyly| +41644|421828|21829|4|33|57743.40|0.10|0.05|R|F|1992-02-26|1992-03-31|1992-03-20|NONE|AIR|egular, pending warthogs haggl| +41644|657242|44782|5|29|34777.09|0.05|0.04|R|F|1992-05-01|1992-04-24|1992-05-12|COLLECT COD|AIR| pending packages boost| +41644|255078|17584|6|5|5165.30|0.04|0.02|A|F|1992-05-03|1992-04-24|1992-05-20|TAKE BACK RETURN|REG AIR|nag according to the express, | +41644|93617|18620|7|50|80530.50|0.04|0.08|A|F|1992-05-01|1992-03-27|1992-05-24|TAKE BACK RETURN|SHIP|nts. carefully regular | +41645|404378|29395|1|11|14105.85|0.01|0.03|A|F|1994-01-05|1993-12-25|1994-01-13|NONE|MAIL|onic accounts wake| +41645|369838|32346|2|38|72497.16|0.03|0.06|R|F|1994-01-07|1993-12-28|1994-01-19|TAKE BACK RETURN|TRUCK|oxes. slyly pending | +41645|850839|25874|3|26|46534.54|0.01|0.07|A|F|1994-02-18|1993-12-11|1994-02-27|DELIVER IN PERSON|SHIP|. furiously ironic pains was| +41646|810024|47573|1|22|20547.56|0.05|0.07|A|F|1993-02-17|1993-01-19|1993-03-16|TAKE BACK RETURN|AIR|ounts wake alo| +41646|69380|44383|2|48|64770.24|0.03|0.08|A|F|1992-12-08|1993-02-11|1992-12-16|DELIVER IN PERSON|SHIP|ular accounts haggle about the blith| +41646|54122|4123|3|23|24750.76|0.07|0.02|R|F|1993-01-06|1993-02-02|1993-01-09|TAKE BACK RETURN|RAIL|y along the furiously sil| +41647|323473|10992|1|8|11971.68|0.03|0.00|R|F|1993-07-18|1993-06-13|1993-07-30|NONE|TRUCK|eposits. regular accounts cajole | +41647|598982|48983|2|48|99886.08|0.10|0.06|R|F|1993-05-03|1993-06-21|1993-05-14|NONE|FOB|e regular pinto bean| +41672|232381|19894|1|22|28894.14|0.09|0.07|R|F|1992-12-04|1992-11-25|1992-12-18|COLLECT COD|TRUCK|y bold ideas promise b| +41672|613495|38520|2|44|61972.24|0.10|0.04|A|F|1992-10-22|1992-10-28|1992-11-07|NONE|MAIL|sits. slyly expr| +41672|993787|43788|3|28|52660.72|0.04|0.02|R|F|1992-11-28|1992-10-28|1992-12-10|TAKE BACK RETURN|SHIP|ular dolphins impress quickly quic| +41673|710053|22568|1|4|4252.08|0.02|0.07|R|F|1993-06-18|1993-07-14|1993-07-09|TAKE BACK RETURN|REG AIR|efully along the unusual deposit| +41673|853438|28473|2|11|15305.29|0.03|0.00|A|F|1993-06-25|1993-07-22|1993-06-29|NONE|RAIL|ever. deposits haggl| +41673|726857|14400|3|45|84771.90|0.00|0.07|A|F|1993-06-22|1993-07-23|1993-07-10|COLLECT COD|REG AIR|uctions? carefully unusual p| +41674|618872|6409|1|43|77006.12|0.05|0.00|N|O|1996-06-06|1996-05-28|1996-06-12|TAKE BACK RETURN|AIR|l, even packages. pack| +41674|378061|40569|2|33|37588.65|0.07|0.03|N|O|1996-07-23|1996-06-13|1996-08-06|TAKE BACK RETURN|TRUCK|endencies. express packages print evenly. | +41675|307045|32058|1|18|18936.54|0.00|0.03|A|F|1993-05-03|1993-05-15|1993-05-23|COLLECT COD|AIR|haggle. furi| +41675|499584|49585|2|21|33254.76|0.09|0.03|R|F|1993-07-04|1993-04-26|1993-07-06|DELIVER IN PERSON|RAIL|deposits wake. regular courts play | +41676|792327|29873|1|22|31224.38|0.08|0.01|A|F|1993-05-21|1993-04-13|1993-06-01|TAKE BACK RETURN|AIR|t dependencies promise quickly above| +41676|639666|27203|2|38|61013.94|0.04|0.06|A|F|1993-02-12|1993-03-08|1993-03-01|DELIVER IN PERSON|AIR| above the blith| +41677|510515|23026|1|43|65596.07|0.01|0.06|R|F|1994-03-05|1994-05-13|1994-03-20|NONE|RAIL|ainments. slyly regular platelets wake sl| +41677|213482|995|2|47|65587.09|0.09|0.00|R|F|1994-03-21|1994-05-01|1994-03-26|TAKE BACK RETURN|MAIL|the furiously pending excuses| +41678|750782|25813|1|46|84306.50|0.06|0.02|A|F|1993-11-26|1993-10-14|1993-12-06|DELIVER IN PERSON|TRUCK|y pending packages. b| +41679|32765|32766|1|36|61119.36|0.01|0.00|N|O|1997-05-30|1997-04-13|1997-06-08|COLLECT COD|TRUCK|y blithely express pin| +41679|668656|43683|2|32|51987.84|0.05|0.00|N|O|1997-03-18|1997-04-10|1997-03-29|COLLECT COD|SHIP| carefully regular instr| +41679|87912|414|3|38|72196.58|0.02|0.07|N|O|1997-04-05|1997-06-02|1997-04-13|TAKE BACK RETURN|FOB|lly express foxes. f| +41679|525657|38168|4|30|50478.90|0.08|0.08|N|O|1997-05-19|1997-04-08|1997-06-03|COLLECT COD|SHIP|l courts. packages boost never about t| +41679|705574|30603|5|48|75817.92|0.01|0.07|N|O|1997-06-17|1997-05-25|1997-07-07|COLLECT COD|TRUCK| blithely a| +41679|573275|48298|6|2|2696.50|0.01|0.07|N|O|1997-05-02|1997-05-18|1997-05-30|TAKE BACK RETURN|MAIL|endencies: ironic dependencies cajol| +41679|23332|10833|7|5|6276.65|0.05|0.01|N|O|1997-07-05|1997-05-10|1997-07-28|TAKE BACK RETURN|REG AIR|e carefully ironic packages. ironic| +41704|140146|2649|1|39|46259.46|0.04|0.03|N|O|1998-05-01|1998-03-07|1998-05-04|DELIVER IN PERSON|MAIL|yly blithely unu| +41704|427998|27999|2|11|21185.67|0.08|0.02|N|O|1998-05-02|1998-02-23|1998-06-01|NONE|REG AIR|haggle carefully throughout the | +41704|356924|31939|3|9|17828.19|0.07|0.07|N|O|1998-02-27|1998-02-22|1998-03-25|NONE|MAIL|ajole around the f| +41704|814873|2422|4|46|82240.18|0.05|0.01|N|O|1998-02-23|1998-03-21|1998-03-10|NONE|AIR|furiously dogged ideas. fur| +41704|570098|20099|5|25|29201.75|0.02|0.00|N|O|1998-02-21|1998-03-22|1998-03-21|COLLECT COD|MAIL|ide of the f| +41705|171176|21177|1|50|62358.50|0.00|0.04|R|F|1993-09-14|1993-07-23|1993-10-03|TAKE BACK RETURN|SHIP|. furiously special depos| +41705|942183|4702|2|21|25727.94|0.10|0.06|A|F|1993-06-08|1993-07-31|1993-06-19|NONE|RAIL| regular foxes play whithout t| +41705|269494|32000|3|41|60002.68|0.05|0.02|A|F|1993-06-13|1993-07-20|1993-07-05|NONE|TRUCK|egrate. quickly u| +41705|374107|49122|4|8|9448.72|0.01|0.05|A|F|1993-08-19|1993-08-26|1993-09-10|TAKE BACK RETURN|AIR|ges wake qu| +41705|608885|21398|5|11|19732.35|0.10|0.01|A|F|1993-08-09|1993-07-21|1993-08-20|COLLECT COD|TRUCK|l accounts wake quickl| +41705|526342|26343|6|1|1368.32|0.03|0.03|R|F|1993-10-02|1993-07-28|1993-11-01|COLLECT COD|MAIL|bold requests haggle blithely special| +41705|217686|42695|7|30|48110.10|0.08|0.01|A|F|1993-06-12|1993-07-11|1993-06-17|NONE|REG AIR|ven packages use blithely across the carefu| +41706|635828|23365|1|14|24693.06|0.02|0.01|N|O|1997-11-06|1997-11-27|1997-11-24|DELIVER IN PERSON|REG AIR|eposits wake s| +41706|360357|47879|2|15|21260.10|0.06|0.03|N|O|1998-01-12|1997-10-31|1998-02-05|COLLECT COD|REG AIR|al accounts among the s| +41706|506548|6549|3|47|73062.44|0.04|0.06|N|O|1997-12-25|1997-12-16|1998-01-20|DELIVER IN PERSON|MAIL|pths sleep quickly| +41706|535430|35431|4|18|26377.38|0.06|0.08|N|O|1998-01-03|1997-12-12|1998-01-21|NONE|RAIL|hely even excus| +41706|963502|1060|5|28|43832.88|0.00|0.07|N|O|1997-11-18|1997-12-07|1997-12-06|DELIVER IN PERSON|RAIL|regular excuses. furiously even pin| +41707|198323|23330|1|25|35533.00|0.06|0.02|R|F|1993-01-03|1993-02-05|1993-01-12|COLLECT COD|RAIL|quickly idle instructions nag even| +41707|211599|24104|2|43|64954.94|0.08|0.07|A|F|1993-01-14|1993-01-30|1993-02-08|COLLECT COD|SHIP| accounts cajole quickl| +41707|333537|33538|3|5|7852.60|0.08|0.07|R|F|1993-01-13|1993-01-22|1993-02-11|COLLECT COD|SHIP|press excuses cajole furiously | +41707|741097|28640|4|19|21623.14|0.06|0.05|R|F|1993-01-08|1993-01-21|1993-01-31|COLLECT COD|AIR|ithely even dugouts haggle slyl| +41707|604739|42276|5|14|23011.80|0.01|0.06|A|F|1993-01-19|1993-02-26|1993-02-03|DELIVER IN PERSON|TRUCK|ic theodolite| +41707|839794|39795|6|24|41610.00|0.03|0.00|R|F|1993-03-09|1993-02-11|1993-03-21|DELIVER IN PERSON|REG AIR|counts cajole until th| +41707|412876|25385|7|28|50087.80|0.06|0.07|R|F|1993-03-13|1993-01-13|1993-03-25|TAKE BACK RETURN|MAIL|eep slyly. fluffily special theodoli| +41708|199026|49027|1|8|9000.16|0.05|0.01|R|F|1994-10-06|1994-08-26|1994-10-17|COLLECT COD|MAIL|thely along the fluffily ironic instructio| +41708|21551|34052|2|50|73627.50|0.10|0.02|R|F|1994-10-11|1994-09-13|1994-10-25|DELIVER IN PERSON|SHIP| the slyly expres| +41709|289671|2177|1|39|64765.74|0.07|0.06|R|F|1993-11-27|1993-11-01|1993-12-03|DELIVER IN PERSON|TRUCK|ven ideas. pending excuses boo| +41709|484982|10001|2|27|53107.92|0.02|0.06|R|F|1993-11-03|1993-11-03|1993-12-03|COLLECT COD|TRUCK|unts integrate slyly unusual theodol| +41710|431596|6613|1|4|6110.28|0.07|0.04|N|O|1995-12-26|1996-01-18|1995-12-31|TAKE BACK RETURN|FOB| carefully unusu| +41710|824956|37473|2|23|43260.93|0.04|0.02|N|O|1996-03-29|1996-01-09|1996-04-14|COLLECT COD|AIR|y special co| +41710|21323|21324|3|35|43551.20|0.09|0.06|N|O|1996-02-19|1996-01-25|1996-03-11|TAKE BACK RETURN|FOB|ronic foxes doubt boldly| +41710|365598|15599|4|50|83179.00|0.04|0.06|N|O|1996-03-02|1996-01-25|1996-03-15|TAKE BACK RETURN|AIR|pinto beans haggle slyly. furious| +41710|602484|27509|5|16|22183.20|0.10|0.08|N|O|1996-01-01|1996-01-04|1996-01-28|DELIVER IN PERSON|AIR|dle warthogs. deposits accordi| +41710|945493|8012|6|29|44615.05|0.03|0.02|N|O|1995-12-18|1996-01-20|1996-01-14|NONE|MAIL|thely even accounts. blit| +41710|884910|9945|7|48|90953.76|0.05|0.07|N|O|1996-01-09|1996-01-09|1996-02-01|COLLECT COD|REG AIR|timents integrate furiously | +41711|679623|42137|1|18|28846.62|0.01|0.00|A|F|1993-10-11|1993-11-18|1993-10-13|TAKE BACK RETURN|AIR|, express theodolites use blithely regular | +41711|414044|26553|2|31|29698.62|0.04|0.01|A|F|1993-11-10|1993-11-11|1993-12-07|DELIVER IN PERSON|RAIL|oggedly stealthy requ| +41711|830511|18060|3|31|44685.57|0.03|0.02|R|F|1993-10-25|1993-11-12|1993-11-24|NONE|TRUCK|lyly special theodolites. express packages | +41711|383960|8975|4|49|100153.55|0.10|0.05|R|F|1993-09-24|1993-11-11|1993-10-01|DELIVER IN PERSON|MAIL|ake; foxes alongside of the accounts wo| +41711|209427|46940|5|10|13364.10|0.04|0.08|A|F|1993-12-18|1993-12-13|1994-01-13|COLLECT COD|FOB| packages sleep blithely. | +41711|836226|23775|6|26|30216.68|0.03|0.05|R|F|1994-01-09|1993-12-01|1994-01-11|NONE|REG AIR|oss the blithely dogged accounts| +41711|445239|45240|7|45|53289.45|0.05|0.00|R|F|1993-09-19|1993-11-09|1993-09-23|DELIVER IN PERSON|MAIL| use. blithely ironic pint| +41736|124137|36640|1|33|38317.29|0.06|0.07|R|F|1994-06-09|1994-07-05|1994-06-18|DELIVER IN PERSON|SHIP|es. unusual, pending pinto be| +41736|363535|38550|2|36|57546.72|0.03|0.00|R|F|1994-04-13|1994-06-23|1994-05-05|COLLECT COD|MAIL|furiously final accounts. | +41736|931575|44094|3|3|4819.59|0.06|0.03|R|F|1994-06-01|1994-06-03|1994-06-28|NONE|TRUCK| beans. depos| +41736|965565|3123|4|15|24457.80|0.10|0.07|R|F|1994-07-15|1994-06-26|1994-07-24|DELIVER IN PERSON|SHIP|y special, final sauternes.| +41736|240322|40323|5|18|22721.58|0.01|0.07|A|F|1994-06-20|1994-06-30|1994-07-18|DELIVER IN PERSON|MAIL|r courts haggle carefully final Tiresias.| +41736|91400|28904|6|10|13914.00|0.03|0.08|A|F|1994-06-19|1994-06-28|1994-07-11|TAKE BACK RETURN|FOB|: furiously regular de| +41736|159101|9102|7|42|48724.20|0.02|0.01|R|F|1994-06-19|1994-06-08|1994-07-10|TAKE BACK RETURN|FOB|y unusual | +41737|7567|20068|1|7|10321.92|0.09|0.04|R|F|1993-01-13|1992-11-21|1993-02-02|TAKE BACK RETURN|TRUCK|ously final co| +41738|476713|39223|1|12|20276.28|0.01|0.07|R|F|1992-03-26|1992-03-29|1992-04-18|DELIVER IN PERSON|AIR|iously pending | +41738|101063|38570|2|8|8512.48|0.01|0.08|A|F|1992-04-27|1992-03-27|1992-05-05|TAKE BACK RETURN|TRUCK|tes. regular, unusual packages after| +41739|453010|40538|1|27|26000.73|0.01|0.04|N|O|1997-12-04|1998-01-23|1997-12-23|NONE|RAIL| against the ideas. instructions w| +41739|730133|42648|2|28|32566.80|0.05|0.01|N|O|1998-01-04|1998-01-15|1998-01-21|COLLECT COD|FOB|ccounts nag-- special, bold theodolites br| +41739|342877|17890|3|35|67195.10|0.04|0.04|N|O|1998-03-13|1998-01-06|1998-04-01|COLLECT COD|FOB|ronic excu| +41739|723257|48286|4|10|12802.20|0.02|0.06|N|O|1998-03-10|1997-12-25|1998-04-08|NONE|MAIL|ar dolphins.| +41739|765396|40427|5|27|39456.72|0.04|0.08|N|O|1998-01-27|1998-01-11|1998-01-30|COLLECT COD|REG AIR|nts sleep sl| +41739|997757|10277|6|33|61205.43|0.08|0.08|N|O|1998-03-10|1997-12-13|1998-03-24|NONE|RAIL|osits affix finally pack| +41739|293211|43212|7|23|27696.60|0.03|0.03|N|O|1997-12-18|1997-12-29|1998-01-08|NONE|RAIL|out the ir| +41740|985901|35902|1|50|99343.00|0.00|0.04|R|F|1992-11-04|1992-12-15|1992-11-06|DELIVER IN PERSON|TRUCK|es wake furiousl| +41741|977578|2617|1|44|72843.32|0.08|0.08|N|O|1997-04-26|1997-05-31|1997-05-16|TAKE BACK RETURN|REG AIR|thely blithely unusual packages. sly| +41741|141561|41562|2|1|1602.56|0.09|0.02|N|O|1997-05-13|1997-04-19|1997-05-16|DELIVER IN PERSON|REG AIR|e against the reque| +41741|204829|17334|3|19|32942.39|0.02|0.00|N|O|1997-03-18|1997-05-31|1997-04-06|TAKE BACK RETURN|TRUCK|ously against the ironic, unusua| +41741|550352|12864|4|6|8413.98|0.07|0.06|N|O|1997-04-10|1997-04-05|1997-05-05|TAKE BACK RETURN|REG AIR|gainst the fluffily permanent | +41741|763520|1066|5|37|58589.13|0.10|0.05|N|O|1997-06-29|1997-05-16|1997-07-03|TAKE BACK RETURN|MAIL|usual theo| +41741|475536|38046|6|29|43833.79|0.10|0.04|N|O|1997-03-29|1997-05-12|1997-03-31|DELIVER IN PERSON|FOB|nstructions haggle caref| +41741|333133|45640|7|43|50143.16|0.01|0.06|N|O|1997-06-04|1997-05-17|1997-06-25|COLLECT COD|MAIL|old excuses against the | +41742|963328|25848|1|31|43129.68|0.06|0.06|R|F|1994-06-05|1994-08-16|1994-06-06|DELIVER IN PERSON|REG AIR|ggle blithely. slyly regular dol| +41742|644065|6578|2|35|35316.05|0.07|0.04|R|F|1994-07-21|1994-08-21|1994-08-05|NONE|REG AIR| express epi| +41742|785483|47999|3|29|45485.05|0.10|0.04|R|F|1994-06-07|1994-07-05|1994-07-07|COLLECT COD|MAIL|asymptotes. carefully bold| +41742|601578|1579|4|14|20713.56|0.01|0.08|A|F|1994-09-24|1994-08-09|1994-09-25|COLLECT COD|RAIL|ding ideas. re| +41742|714384|39413|5|43|60129.05|0.10|0.01|R|F|1994-08-11|1994-08-14|1994-08-17|NONE|AIR|usual request| +41743|8754|8755|1|44|73161.00|0.01|0.01|R|F|1995-02-22|1995-03-21|1995-03-16|COLLECT COD|TRUCK| ironic, close ideas ha| +41743|125067|25068|2|49|53510.94|0.08|0.00|R|F|1995-01-24|1995-02-26|1995-02-20|TAKE BACK RETURN|TRUCK|onic grouches haggle around the regular pac| +41768|615976|15977|1|39|73785.66|0.05|0.02|A|F|1994-04-15|1994-04-27|1994-05-06|TAKE BACK RETURN|SHIP|efully even instructions. | +41769|521558|9089|1|19|30011.07|0.09|0.06|N|O|1998-01-05|1997-12-15|1998-02-01|NONE|MAIL|ously pending, pending accoun| +41770|868938|18939|1|16|30510.24|0.05|0.03|N|O|1997-09-05|1997-10-15|1997-10-03|COLLECT COD|SHIP|its will have to wake always. ironic packag| +41770|234398|21911|2|4|5329.52|0.10|0.05|N|O|1997-11-09|1997-09-20|1997-11-19|TAKE BACK RETURN|MAIL|sual, regular accounts are ru| +41770|521568|21569|3|40|63581.60|0.06|0.06|N|O|1997-11-05|1997-09-08|1997-11-30|DELIVER IN PERSON|RAIL|old ideas sleep. blithely regular| +41770|985505|48025|4|46|73161.16|0.01|0.07|N|O|1997-09-05|1997-10-01|1997-09-21|TAKE BACK RETURN|MAIL|ng the bold platelets. special | +41770|369923|19924|5|40|79716.40|0.10|0.04|N|O|1997-09-06|1997-09-15|1997-09-08|NONE|MAIL|ularly regular ideas about the| +41771|545754|8265|1|48|86387.04|0.03|0.02|R|F|1994-05-21|1994-04-25|1994-05-27|COLLECT COD|RAIL|quests. accounts engage| +41771|485676|35677|2|28|46526.20|0.08|0.06|R|F|1994-05-02|1994-05-30|1994-05-28|DELIVER IN PERSON|SHIP|blithely bold packages a| +41772|414515|14516|1|16|22871.84|0.09|0.01|A|F|1993-03-16|1993-04-21|1993-04-14|COLLECT COD|FOB|uickly according to the ironic, silent| +41773|182236|7243|1|50|65911.50|0.05|0.06|N|O|1996-02-24|1996-02-21|1996-03-25|DELIVER IN PERSON|TRUCK|cial instructions| +41773|825795|828|2|42|72271.50|0.01|0.06|N|O|1996-02-21|1996-02-09|1996-02-26|DELIVER IN PERSON|AIR|ests are slyly. slyly f| +41773|120339|32842|3|20|27186.60|0.01|0.01|N|O|1996-01-07|1996-02-10|1996-01-14|TAKE BACK RETURN|SHIP|ar instructions. blithely regular reque| +41773|534031|9052|4|35|37275.35|0.04|0.03|N|O|1996-01-20|1996-02-25|1996-01-21|COLLECT COD|FOB|ng to the blithely| +41773|455891|18401|5|21|38784.27|0.04|0.05|N|O|1996-03-29|1996-03-26|1996-04-12|COLLECT COD|REG AIR|posits. blit| +41773|150549|25556|6|32|51185.28|0.03|0.01|N|O|1996-04-07|1996-02-28|1996-04-22|DELIVER IN PERSON|TRUCK|s cajole sly| +41774|398773|23788|1|16|29948.16|0.00|0.05|N|O|1995-09-20|1995-10-21|1995-10-04|NONE|FOB|es sleep slyly around the pinto beans. | +41774|161084|36091|2|11|12595.88|0.09|0.05|N|O|1995-09-05|1995-09-06|1995-09-09|NONE|REG AIR|inal tithes use reques| +41774|325196|209|3|29|35414.22|0.05|0.05|N|O|1995-08-08|1995-09-28|1995-08-11|DELIVER IN PERSON|FOB|. ironic deposits about the ironic, ironic | +41774|555961|43495|4|28|56474.32|0.09|0.01|N|O|1995-08-15|1995-09-17|1995-08-26|COLLECT COD|TRUCK|es haggle carefully thinly | +41774|28835|16336|5|35|61734.05|0.08|0.02|N|O|1995-11-14|1995-09-12|1995-11-18|TAKE BACK RETURN|SHIP|row fluffily u| +41775|251990|27001|1|10|19419.80|0.04|0.08|N|O|1996-09-18|1996-08-10|1996-10-08|DELIVER IN PERSON|RAIL|ckages against the re| +41775|190920|15927|2|30|60327.60|0.02|0.07|N|O|1996-08-06|1996-08-20|1996-08-19|COLLECT COD|RAIL|ctions. furiously even | +41775|784028|46544|3|21|23351.79|0.10|0.01|N|O|1996-07-31|1996-08-23|1996-08-13|TAKE BACK RETURN|RAIL|ss requests according| +41775|151054|38564|4|11|12155.55|0.06|0.04|N|O|1996-10-02|1996-09-02|1996-10-17|COLLECT COD|AIR|he even dependencies promise fur| +41775|748152|48153|5|27|32403.24|0.00|0.04|N|O|1996-10-12|1996-08-31|1996-11-07|TAKE BACK RETURN|FOB|uests detect ev| +41800|694243|44244|1|43|53200.03|0.07|0.07|R|F|1993-01-17|1993-04-11|1993-02-10|TAKE BACK RETURN|TRUCK|olphins are carefully above the f| +41800|132917|7922|2|30|58497.30|0.04|0.00|A|F|1993-02-05|1993-03-09|1993-02-24|TAKE BACK RETURN|AIR|odolites wake according to the even,| +41800|926096|13651|3|28|31417.40|0.03|0.06|A|F|1993-05-08|1993-02-22|1993-06-05|COLLECT COD|RAIL|according to the ironic, unusual dep| +41800|893480|18515|4|15|22101.60|0.08|0.02|A|F|1993-04-02|1993-02-20|1993-04-10|NONE|MAIL| final theodolites wake blithely. | +41801|20255|20256|1|1|1175.25|0.07|0.07|N|O|1998-01-21|1998-02-17|1998-02-12|COLLECT COD|RAIL|usly final instructions| +41801|417589|17590|2|49|73821.44|0.05|0.06|N|O|1998-03-23|1998-01-19|1998-04-01|TAKE BACK RETURN|AIR|s could hinder bravely idea| +41802|635306|22843|1|23|28549.21|0.04|0.01|N|O|1996-10-30|1996-12-10|1996-11-22|NONE|REG AIR|d quickly. unusual accounts alongside o| +41802|579249|29250|2|40|53128.80|0.09|0.03|N|O|1996-10-14|1996-12-10|1996-10-20|DELIVER IN PERSON|MAIL|ely carefully ironic asymptotes. carefull| +41802|423629|48646|3|38|58998.80|0.07|0.04|N|O|1996-11-16|1996-12-13|1996-11-27|NONE|RAIL|refully. slyly express requests sleep acros| +41802|919980|45017|4|5|9999.70|0.06|0.08|N|O|1996-10-25|1996-11-04|1996-11-04|TAKE BACK RETURN|REG AIR|s deposits. quick| +41803|609377|34402|1|2|2572.68|0.07|0.05|R|F|1994-04-21|1994-04-25|1994-05-19|COLLECT COD|SHIP| above the even pa| +41803|787920|37921|2|15|30118.35|0.01|0.06|A|F|1994-06-12|1994-05-13|1994-06-22|TAKE BACK RETURN|SHIP|hely slyly| +41803|559152|34175|3|9|10900.17|0.00|0.00|R|F|1994-05-02|1994-04-22|1994-05-29|NONE|REG AIR| special Tiresias. special pin| +41803|658780|46320|4|3|5216.25|0.07|0.00|A|F|1994-05-11|1994-04-04|1994-06-08|COLLECT COD|MAIL|al instructions according | +41804|636735|24272|1|42|70211.40|0.09|0.01|R|F|1993-12-01|1994-01-11|1993-12-09|NONE|AIR|ly around | +41804|601647|1648|2|12|18583.32|0.03|0.08|A|F|1994-01-29|1994-01-10|1994-02-05|NONE|AIR|heodolites haggle caref| +41805|201189|13694|1|8|8721.36|0.04|0.02|N|O|1998-10-20|1998-08-07|1998-10-31|NONE|MAIL|the silent accounts. idly ironic requests s| +41806|895086|32638|1|42|45403.68|0.01|0.01|A|F|1994-01-23|1994-02-06|1994-02-21|TAKE BACK RETURN|SHIP|s impress dependencies. blithe| +41806|706562|44105|2|34|53330.02|0.01|0.06|A|F|1994-02-18|1994-01-28|1994-03-16|TAKE BACK RETURN|FOB|refully furiously fin| +41806|186262|48766|3|47|63368.22|0.04|0.07|A|F|1994-01-31|1993-12-29|1994-02-18|DELIVER IN PERSON|MAIL| express packages acco| +41806|496997|9507|4|9|17945.73|0.05|0.05|A|F|1993-11-26|1994-01-02|1993-11-28|DELIVER IN PERSON|FOB|thogs haggle acro| +41806|23938|11439|5|40|74477.20|0.02|0.07|A|F|1993-11-25|1994-01-21|1993-12-01|NONE|REG AIR|timents. ironic instructions among| +41807|165937|15938|1|27|54079.11|0.04|0.00|N|O|1995-12-06|1995-11-20|1995-12-17|DELIVER IN PERSON|TRUCK|al foxes wake carefully above the furi| +41807|894668|44669|2|50|83131.00|0.09|0.03|N|O|1995-11-10|1995-11-15|1995-12-07|TAKE BACK RETURN|TRUCK|ans. final accounts sleep q| +41807|683726|8753|3|29|49581.01|0.10|0.07|N|O|1995-10-25|1995-11-10|1995-11-07|TAKE BACK RETURN|REG AIR| slyly. blithely sile| +41807|382827|45335|4|26|49655.06|0.07|0.07|N|O|1995-12-15|1995-10-27|1996-01-11|NONE|FOB|iously unusual packag| +41807|173232|35736|5|1|1305.23|0.04|0.04|N|O|1995-12-17|1995-11-18|1996-01-15|COLLECT COD|SHIP| among the ironic, regular packages sl| +41807|501059|26080|6|44|46641.32|0.09|0.04|N|O|1995-11-07|1995-11-13|1995-11-17|NONE|RAIL|n excuses. furiously ironic| +41832|528508|41019|1|2|3072.96|0.09|0.01|A|F|1994-08-03|1994-09-11|1994-08-20|NONE|MAIL|eodolites.| +41832|620469|45494|2|6|8336.58|0.08|0.08|A|F|1994-10-27|1994-09-25|1994-10-28|DELIVER IN PERSON|REG AIR|o beans integrate furiousl| +41833|151957|26964|1|6|12053.70|0.01|0.04|A|F|1992-04-19|1992-05-12|1992-04-20|COLLECT COD|REG AIR|fully express package| +41833|936568|24123|2|22|35299.44|0.10|0.07|R|F|1992-04-25|1992-06-04|1992-05-05|DELIVER IN PERSON|RAIL|ss instructions.| +41833|891495|16530|3|49|72836.05|0.06|0.06|A|F|1992-05-17|1992-06-16|1992-05-20|COLLECT COD|FOB|aggle among the slyly silent | +41834|62918|37921|1|8|15047.28|0.05|0.05|N|O|1998-03-19|1998-02-11|1998-04-11|NONE|RAIL|ts. blithely ironic pac| +41834|462497|25007|2|46|67135.62|0.04|0.03|N|O|1997-12-20|1998-02-27|1998-01-10|NONE|RAIL|ymptotes are blithely against the foxes. fu| +41834|178586|16096|3|10|16645.80|0.09|0.06|N|O|1997-12-12|1998-03-01|1998-01-01|NONE|FOB| theodolites. slyly regular| +41834|480560|5579|4|42|64702.68|0.00|0.00|N|O|1998-04-05|1998-03-03|1998-04-12|TAKE BACK RETURN|REG AIR|inal excuses. blithely b| +41835|32723|20224|1|28|46360.16|0.02|0.07|A|F|1993-02-17|1993-03-14|1993-03-15|COLLECT COD|RAIL|the slyly pending deposits doubt| +41835|960479|10480|2|37|56958.91|0.07|0.01|A|F|1993-03-26|1993-04-21|1993-03-27|DELIVER IN PERSON|REG AIR|packages integrate slyl| +41835|759614|22130|3|15|25103.70|0.03|0.05|R|F|1993-05-19|1993-04-13|1993-06-13|COLLECT COD|FOB|into beans maintain b| +41835|822473|10022|4|8|11163.44|0.07|0.01|R|F|1993-05-14|1993-04-13|1993-05-29|NONE|REG AIR|y express dependencies wake | +41835|289737|39738|5|36|62161.92|0.03|0.03|A|F|1993-03-29|1993-03-13|1993-04-19|TAKE BACK RETURN|AIR| against the regular dec| +41836|261003|36014|1|44|42415.56|0.06|0.01|N|O|1995-07-01|1995-08-19|1995-07-04|NONE|FOB|into beans. quickl| +41836|675228|37742|2|50|60159.50|0.02|0.00|N|O|1995-08-29|1995-09-12|1995-09-09|DELIVER IN PERSON|RAIL| among the furiously even t| +41837|879183|4218|1|29|33702.06|0.05|0.05|A|F|1993-02-06|1993-02-28|1993-02-22|NONE|MAIL|riously bold requests hagg| +41838|999944|49945|1|22|44965.80|0.07|0.08|A|F|1994-01-10|1994-02-26|1994-02-09|DELIVER IN PERSON|SHIP|ial instruct| +41839|687101|49615|1|36|39170.52|0.05|0.08|A|F|1993-02-23|1993-03-14|1993-02-28|COLLECT COD|REG AIR| furiously pending theodo| +41864|93617|6119|1|37|59592.57|0.05|0.02|N|O|1997-07-22|1997-05-21|1997-08-10|COLLECT COD|SHIP|tect boldly. sly| +41864|419365|31874|2|18|23118.12|0.07|0.06|N|O|1997-08-08|1997-05-31|1997-08-15|DELIVER IN PERSON|MAIL|ole carefully accord| +41864|264702|14703|3|39|65000.91|0.07|0.00|N|O|1997-06-26|1997-07-01|1997-07-25|COLLECT COD|AIR|tes. regular accounts sleep in place of the| +41864|835031|47548|4|34|32843.66|0.04|0.05|N|O|1997-05-19|1997-07-11|1997-05-30|DELIVER IN PERSON|FOB| packages. furiously| +41864|351693|14201|5|2|3489.36|0.10|0.05|N|O|1997-08-15|1997-07-13|1997-09-04|TAKE BACK RETURN|REG AIR|en packages are quickly across the | +41864|902254|2255|6|9|11305.89|0.02|0.04|N|O|1997-07-10|1997-05-23|1997-07-22|TAKE BACK RETURN|RAIL|thely ironic excuses. fu| +41864|169647|19648|7|23|39482.72|0.01|0.01|N|O|1997-08-07|1997-06-03|1997-09-06|DELIVER IN PERSON|REG AIR| the bold pinto beans. never ironic accoun| +41865|244472|44473|1|6|8498.76|0.02|0.05|N|O|1996-09-23|1996-07-27|1996-09-30|TAKE BACK RETURN|RAIL|quests detec| +41866|997543|47544|1|5|8202.50|0.04|0.00|N|O|1998-06-22|1998-08-12|1998-06-29|TAKE BACK RETURN|MAIL|ole. carefully f| +41866|702504|40047|2|49|73817.03|0.01|0.05|N|O|1998-09-28|1998-08-13|1998-10-22|COLLECT COD|TRUCK|ven deposits det| +41866|974852|24853|3|48|92486.88|0.01|0.02|N|O|1998-09-02|1998-08-21|1998-09-25|COLLECT COD|RAIL|furiously silent reques| +41866|329110|29111|4|38|43285.80|0.01|0.01|N|O|1998-09-24|1998-07-28|1998-10-13|DELIVER IN PERSON|AIR| might use| +41866|345078|45079|5|4|4492.24|0.10|0.02|N|O|1998-10-09|1998-08-31|1998-10-20|DELIVER IN PERSON|TRUCK|arefully ironic foxes| +41866|725141|37656|6|18|20989.98|0.07|0.04|N|O|1998-08-13|1998-08-23|1998-08-15|NONE|FOB|atelets al| +41866|433993|21518|7|33|63590.01|0.04|0.04|N|O|1998-08-03|1998-07-19|1998-08-27|DELIVER IN PERSON|MAIL|y even deposits engage q| +41867|109086|34091|1|22|24091.76|0.06|0.01|N|O|1997-12-18|1998-02-12|1998-01-11|TAKE BACK RETURN|REG AIR|ts haggle about the quickly ruthl| +41867|402125|39650|2|1|1027.10|0.09|0.03|N|O|1998-02-02|1998-01-31|1998-02-27|NONE|MAIL|ependencies. dep| +41867|503766|3767|3|33|58401.42|0.07|0.00|N|O|1998-03-01|1997-12-31|1998-03-31|DELIVER IN PERSON|FOB|en, bold packages| +41868|929515|17070|1|18|27800.46|0.01|0.00|A|F|1993-08-25|1993-06-22|1993-09-01|COLLECT COD|FOB|to beans affix slyly. accounts cajole furio| +41868|348821|48822|2|44|82271.64|0.07|0.01|A|F|1993-07-02|1993-07-04|1993-07-22|COLLECT COD|FOB|eposits eat. quietly bold theodolites gro| +41868|633427|20964|3|28|38090.92|0.09|0.03|R|F|1993-08-26|1993-06-13|1993-09-23|TAKE BACK RETURN|SHIP|ns. blithely quiet deposits do| +41868|991248|3768|4|7|9374.40|0.05|0.08|A|F|1993-08-05|1993-06-19|1993-08-09|DELIVER IN PERSON|TRUCK| final warhorses sleep blithely caref| +41868|888442|25994|5|20|28608.00|0.02|0.06|R|F|1993-08-22|1993-07-11|1993-08-26|DELIVER IN PERSON|REG AIR| asymptotes solve | +41868|34674|9675|6|6|9652.02|0.05|0.07|R|F|1993-09-03|1993-08-05|1993-09-11|TAKE BACK RETURN|SHIP|low asymptotes. | +41869|748747|36290|1|33|59258.43|0.10|0.05|N|O|1996-11-24|1996-10-03|1996-12-14|COLLECT COD|SHIP|jole quick| +41869|187415|12422|2|18|27043.38|0.00|0.08|N|O|1996-09-08|1996-10-17|1996-09-14|COLLECT COD|TRUCK|onic theodoli| +41869|880918|30919|3|42|79752.54|0.02|0.07|N|O|1996-11-26|1996-10-13|1996-11-30|DELIVER IN PERSON|AIR| regular courts behin| +41870|964611|27131|1|44|73725.08|0.10|0.00|N|O|1997-09-03|1997-07-17|1997-09-29|COLLECT COD|SHIP| requests after the| +41870|201713|14218|2|5|8073.50|0.00|0.05|N|O|1997-08-17|1997-07-24|1997-08-29|NONE|AIR|haggle furiously| +41870|176008|1015|3|29|31436.00|0.09|0.05|N|O|1997-07-18|1997-07-24|1997-07-30|DELIVER IN PERSON|AIR|wake blithely. idea| +41871|886626|36627|1|1|1612.58|0.05|0.08|N|O|1995-08-28|1995-07-15|1995-09-18|NONE|FOB|ffily ironic foxes boost b| +41871|520169|32680|2|36|42809.04|0.03|0.07|N|O|1995-06-27|1995-06-17|1995-07-20|TAKE BACK RETURN|MAIL|ong the special, regular foxes boost iron| +41871|477165|39675|3|47|53680.58|0.00|0.02|N|F|1995-06-14|1995-08-15|1995-06-29|TAKE BACK RETURN|AIR|ckages use| +41896|114131|39136|1|27|30918.51|0.03|0.08|A|F|1992-06-12|1992-08-19|1992-06-22|NONE|SHIP|ag. ironic, special pla| +41896|191303|16310|2|35|48800.50|0.03|0.00|R|F|1992-09-23|1992-07-16|1992-10-03|DELIVER IN PERSON|TRUCK|aggle furiously | +41896|225271|12784|3|30|35887.80|0.06|0.00|A|F|1992-08-28|1992-07-20|1992-09-16|NONE|FOB|carefully even requests wake ac| +41896|118376|30879|4|37|51591.69|0.04|0.01|R|F|1992-09-19|1992-08-18|1992-10-05|COLLECT COD|SHIP| the thinly ironic deposits sleep sly| +41897|45856|45857|1|32|57659.20|0.07|0.04|A|F|1995-01-09|1994-12-04|1995-01-12|DELIVER IN PERSON|REG AIR|final courts. iron| +41898|457482|19992|1|45|64775.70|0.04|0.00|N|O|1997-02-04|1997-02-26|1997-02-13|COLLECT COD|RAIL|nts cajole carefully. accounts dazzle si| +41898|886851|24403|2|48|88214.88|0.08|0.08|N|O|1997-03-27|1997-01-27|1997-04-07|TAKE BACK RETURN|AIR|riously even| +41898|300869|38388|3|13|24308.05|0.09|0.07|N|O|1997-03-20|1997-03-07|1997-03-28|DELIVER IN PERSON|SHIP| carefully ironic packages cajole caref| +41898|699559|12073|4|26|40521.52|0.06|0.05|N|O|1997-03-22|1997-03-19|1997-03-27|COLLECT COD|MAIL|ites affix | +41898|486058|11077|5|29|30276.87|0.08|0.06|N|O|1997-01-22|1997-03-23|1997-02-11|COLLECT COD|AIR|use slyly among the pending pin| +41898|171833|21834|6|46|87622.18|0.02|0.04|N|O|1997-04-05|1997-02-21|1997-04-22|COLLECT COD|MAIL|g to the excuses| +41898|987030|24588|7|32|35743.68|0.03|0.03|N|O|1997-01-11|1997-03-20|1997-01-29|NONE|REG AIR|ggle enticingly carefully special | +41899|999944|24983|1|8|16351.20|0.08|0.02|A|F|1994-09-06|1994-11-07|1994-09-18|DELIVER IN PERSON|RAIL|ges wake carefully ironic requests. r| +41899|50975|13477|2|31|59705.07|0.08|0.05|A|F|1994-12-18|1994-10-14|1995-01-01|TAKE BACK RETURN|MAIL|s boost carefully fin| +41899|727810|15353|3|8|14702.24|0.08|0.08|R|F|1994-09-29|1994-11-14|1994-10-25|TAKE BACK RETURN|AIR|ld platelets haggle| +41899|298631|11137|4|29|47258.98|0.03|0.05|R|F|1994-12-15|1994-10-27|1995-01-10|DELIVER IN PERSON|FOB|gular deposits wake slyly. blithely sil| +41899|85003|10006|5|15|14820.00|0.06|0.01|A|F|1994-09-26|1994-10-25|1994-10-26|NONE|RAIL| run quickly. final deposi| +41899|644792|19817|6|15|26051.40|0.08|0.06|A|F|1994-10-05|1994-11-20|1994-10-08|DELIVER IN PERSON|SHIP|carefully ironic foxes cajole.| +41899|9066|21567|7|39|38027.34|0.06|0.07|A|F|1994-12-21|1994-11-15|1994-12-26|COLLECT COD|MAIL|jole carefully against the packages? qu| +41900|369838|19839|1|29|55326.78|0.05|0.05|N|O|1996-04-10|1996-05-28|1996-05-08|TAKE BACK RETURN|REG AIR|ts. furious| +41900|864433|39468|2|50|69869.50|0.09|0.02|N|O|1996-06-30|1996-06-02|1996-07-10|NONE|REG AIR|eposits. accounts are slyly carefully | +41900|517829|30340|3|5|9234.00|0.07|0.01|N|O|1996-06-23|1996-05-16|1996-06-30|DELIVER IN PERSON|AIR|r excuses boost| +41900|139439|26946|4|45|66529.35|0.02|0.07|N|O|1996-07-08|1996-05-01|1996-07-14|NONE|SHIP|blithely silent packages. pending pin| +41900|538084|13105|5|47|52736.82|0.08|0.00|N|O|1996-06-30|1996-05-13|1996-07-27|DELIVER IN PERSON|AIR|nic accounts sleep.| +41901|785878|23424|1|33|64806.72|0.03|0.05|R|F|1994-10-17|1994-12-28|1994-11-12|DELIVER IN PERSON|FOB|requests cajole slyly across the blithely| +41901|242135|29648|2|26|28005.12|0.10|0.07|A|F|1994-11-06|1994-12-17|1994-11-15|TAKE BACK RETURN|FOB|realms are quickly| +41902|650738|25765|1|3|5066.10|0.10|0.04|N|O|1996-03-27|1996-04-20|1996-04-26|DELIVER IN PERSON|AIR|jole carefully. bold requests cajole fluf| +41902|940900|28455|2|36|69870.96|0.10|0.05|N|O|1996-03-04|1996-03-30|1996-03-28|TAKE BACK RETURN|TRUCK|ular deposits breach furiously am| +41903|786632|49148|1|20|34372.00|0.10|0.06|N|O|1998-06-07|1998-07-05|1998-07-02|NONE|AIR|quests around the carefully ironic packa| +41903|917989|5544|2|31|62215.14|0.05|0.02|N|O|1998-09-03|1998-06-26|1998-09-05|COLLECT COD|MAIL|sits nag across the unusual, silent platel| +41903|628518|28519|3|38|54966.24|0.08|0.08|N|O|1998-08-02|1998-07-21|1998-08-27|DELIVER IN PERSON|REG AIR|lets haggle silent| +41903|496095|33623|4|22|24003.54|0.01|0.06|N|O|1998-06-09|1998-07-13|1998-06-21|NONE|AIR|ged accounts. pe| +41928|710676|35705|1|1|1686.64|0.04|0.04|A|F|1994-07-04|1994-06-16|1994-07-29|COLLECT COD|REG AIR|usly bold dep| +41928|317740|42753|2|35|61520.55|0.00|0.03|R|F|1994-06-09|1994-07-06|1994-07-08|COLLECT COD|TRUCK|al requests boost| +41929|952294|2295|1|4|5385.00|0.00|0.06|N|O|1996-08-19|1996-08-02|1996-09-06|TAKE BACK RETURN|REG AIR| dinos haggle furiously. carefully u| +41929|199802|37312|2|45|85581.00|0.09|0.01|N|O|1996-09-01|1996-06-19|1996-09-03|NONE|SHIP|y final foxes. | +41929|71450|46453|3|50|71072.50|0.03|0.01|N|O|1996-07-04|1996-07-09|1996-07-17|COLLECT COD|RAIL|luffily fluffily unusual dependen| +41929|857626|32661|4|14|22170.12|0.02|0.06|N|O|1996-07-31|1996-07-15|1996-08-26|DELIVER IN PERSON|FOB|ost slyly regular foxes. slyly regu| +41929|109834|34839|5|12|22125.96|0.02|0.04|N|O|1996-07-05|1996-08-05|1996-07-29|TAKE BACK RETURN|FOB|. carefully regular accoun| +41929|974084|49123|6|39|45163.56|0.09|0.05|N|O|1996-07-11|1996-06-28|1996-08-04|NONE|FOB|usual, daring | +41930|189431|26941|1|43|65378.49|0.05|0.00|A|F|1994-07-14|1994-08-09|1994-08-05|TAKE BACK RETURN|REG AIR|cies. packages n| +41930|752951|2952|2|12|24047.04|0.08|0.00|A|F|1994-07-30|1994-10-04|1994-08-22|DELIVER IN PERSON|TRUCK|, ironic deposits wake deposits. rut| +41930|843235|43236|3|5|5890.95|0.05|0.07|R|F|1994-09-08|1994-09-20|1994-10-04|NONE|REG AIR|gular deposits wake care| +41930|246176|46177|4|15|16832.40|0.06|0.08|A|F|1994-08-25|1994-09-20|1994-09-23|COLLECT COD|AIR|al pearls. b| +41930|472173|34683|5|34|38935.10|0.05|0.00|A|F|1994-07-29|1994-09-24|1994-08-23|TAKE BACK RETURN|AIR|he fluffily | +41930|796545|34091|6|7|11490.57|0.07|0.01|R|F|1994-08-18|1994-09-11|1994-08-24|NONE|MAIL|usy packages should wake fluffily quickly | +41930|528610|28611|7|18|29494.62|0.04|0.07|A|F|1994-10-22|1994-09-13|1994-11-18|COLLECT COD|REG AIR|e slyly regular packa| +41931|336878|11891|1|20|38297.20|0.08|0.06|R|F|1992-08-18|1992-07-10|1992-08-31|DELIVER IN PERSON|SHIP|ironic ideas by | +41931|902136|2137|2|16|18209.44|0.10|0.01|A|F|1992-08-31|1992-06-29|1992-09-28|COLLECT COD|REG AIR|requests cajole furiously even requests--| +41932|436489|36490|1|36|51316.56|0.02|0.01|A|F|1995-05-09|1995-05-07|1995-06-02|TAKE BACK RETURN|TRUCK| packages a| +41933|187140|37141|1|28|34359.92|0.03|0.08|R|F|1992-08-06|1992-06-14|1992-08-16|TAKE BACK RETURN|FOB|. furiously re| +41933|257686|32697|2|28|46022.76|0.03|0.06|R|F|1992-06-19|1992-05-25|1992-06-27|TAKE BACK RETURN|FOB|use slyly above the b| +41933|923131|35650|3|40|46163.60|0.03|0.04|R|F|1992-04-21|1992-06-01|1992-05-06|NONE|REG AIR|oxes. deposits wake blithely | +41933|60898|48402|4|39|72496.71|0.05|0.05|A|F|1992-05-07|1992-06-13|1992-05-14|COLLECT COD|REG AIR|ngly regular packages. quickly| +41933|496986|34514|5|32|63454.72|0.02|0.01|A|F|1992-08-01|1992-05-15|1992-08-28|NONE|TRUCK|e blithely acro| +41933|831041|18590|6|40|38880.00|0.00|0.06|R|F|1992-07-17|1992-05-23|1992-08-08|DELIVER IN PERSON|SHIP| haggle boldly alongside| +41933|299267|24278|7|42|53182.50|0.06|0.02|R|F|1992-08-05|1992-05-10|1992-08-13|NONE|REG AIR|ccounts. blithely ironic reques| +41934|770799|33315|1|8|14958.08|0.06|0.00|N|O|1996-08-09|1996-07-23|1996-08-31|DELIVER IN PERSON|FOB| carefully express packages. even reque| +41934|816135|41168|2|24|25226.16|0.04|0.05|N|O|1996-05-24|1996-07-06|1996-06-17|COLLECT COD|REG AIR|l accounts about t| +41934|780568|5599|3|31|51104.43|0.10|0.02|N|O|1996-08-09|1996-07-05|1996-09-01|TAKE BACK RETURN|AIR| haggle. silent c| +41934|996661|34219|4|19|33394.78|0.05|0.02|N|O|1996-08-23|1996-08-05|1996-09-21|NONE|RAIL|aggle furiously about| +41934|874172|11724|5|45|51575.85|0.07|0.08|N|O|1996-07-10|1996-08-01|1996-07-15|NONE|TRUCK|pecial excuses| +41935|910178|47733|1|41|48713.33|0.02|0.02|R|F|1993-04-17|1993-05-05|1993-04-22|COLLECT COD|FOB|the carefully brave asymp| +41935|352804|15312|2|9|16711.11|0.01|0.02|A|F|1993-06-21|1993-06-04|1993-07-05|DELIVER IN PERSON|SHIP|uriously. theodolites s| +41935|565147|2681|3|2|2424.24|0.06|0.03|A|F|1993-07-05|1993-05-04|1993-07-19|NONE|AIR|e express asymptotes. slyly | +41935|415395|15396|4|20|26207.40|0.10|0.05|R|F|1993-04-04|1993-05-03|1993-04-12|TAKE BACK RETURN|FOB|ely according to the pending, ir| +41960|789042|39043|1|38|42978.38|0.05|0.08|R|F|1993-08-20|1993-09-09|1993-09-04|COLLECT COD|FOB|ly close ideas across the quickly re| +41960|414762|27271|2|22|36888.28|0.03|0.04|R|F|1993-09-26|1993-10-28|1993-10-15|DELIVER IN PERSON|MAIL|out the regular| +41960|891024|28576|3|50|50749.00|0.00|0.01|A|F|1993-10-29|1993-10-22|1993-11-21|DELIVER IN PERSON|RAIL|ajole carefully. even | +41960|430867|5884|4|33|59328.72|0.06|0.03|A|F|1993-08-30|1993-10-26|1993-09-21|NONE|TRUCK| ironic deposits. unusual deposits integra| +41961|419861|44878|1|39|69452.76|0.08|0.06|N|O|1996-05-12|1996-05-24|1996-05-17|TAKE BACK RETURN|AIR| packages wake after the| +41961|587568|25102|2|33|54632.82|0.02|0.04|N|O|1996-03-30|1996-05-11|1996-04-28|TAKE BACK RETURN|REG AIR| ironic platelets. furio| +41961|248916|11421|3|1|1864.90|0.06|0.08|N|O|1996-06-01|1996-05-29|1996-06-26|NONE|SHIP|nusual warhorses detect agains| +41961|519923|19924|4|46|89373.40|0.02|0.07|N|O|1996-04-29|1996-06-13|1996-05-27|COLLECT COD|SHIP|ged foxes. carefully regular pac| +41961|339896|14909|5|36|69691.68|0.02|0.05|N|O|1996-04-04|1996-04-25|1996-05-01|DELIVER IN PERSON|AIR|boost even courts.| +41961|627833|2858|6|44|77475.20|0.07|0.06|N|O|1996-04-09|1996-06-07|1996-04-20|COLLECT COD|MAIL| requests above the carefully bold pin| +41961|982622|45142|7|32|54546.56|0.02|0.06|N|O|1996-04-18|1996-06-01|1996-05-14|NONE|SHIP| blithely bold, | +41962|915580|28099|1|16|25528.64|0.03|0.03|N|O|1998-08-23|1998-06-17|1998-09-09|COLLECT COD|MAIL|es-- slyly unusual ideas was| +41962|137638|25145|2|47|78754.61|0.05|0.07|N|O|1998-08-12|1998-07-22|1998-09-10|COLLECT COD|REG AIR|lyly after the close excuses. express inst| +41962|281544|44050|3|1|1525.53|0.08|0.04|N|O|1998-07-29|1998-07-23|1998-08-01|DELIVER IN PERSON|MAIL|carefully express requests ca| +41962|901745|14264|4|36|62881.20|0.02|0.04|N|O|1998-07-30|1998-08-09|1998-08-11|NONE|MAIL|pinto beans haggle above the flu| +41962|612263|49800|5|2|2350.46|0.03|0.04|N|O|1998-08-07|1998-07-10|1998-08-18|COLLECT COD|FOB|al deposits| +41963|33151|20652|1|40|43366.00|0.00|0.07|N|O|1995-07-17|1995-06-23|1995-07-23|NONE|SHIP| deposits may ca| +41963|162562|37569|2|36|58484.16|0.01|0.03|A|F|1995-04-08|1995-05-13|1995-05-01|COLLECT COD|TRUCK|ironic foxes. slyly final exc| +41963|173010|10520|3|38|41154.38|0.07|0.02|N|F|1995-06-04|1995-05-10|1995-07-02|NONE|AIR|hout the plate| +41963|774932|12478|4|31|62213.90|0.06|0.02|N|O|1995-07-30|1995-06-29|1995-08-03|NONE|MAIL|regular, even dependencies are fur| +41963|276587|14103|5|22|34398.54|0.09|0.00|A|F|1995-05-09|1995-05-18|1995-05-16|COLLECT COD|TRUCK| special, even theodolites ca| +41963|590216|40217|6|41|53553.79|0.00|0.01|A|F|1995-04-11|1995-05-16|1995-05-11|TAKE BACK RETURN|REG AIR|lly. regular d| +41964|269316|6832|1|11|14138.30|0.04|0.03|N|O|1997-10-27|1997-11-07|1997-10-29|DELIVER IN PERSON|RAIL|ly special requests use ac| +41964|390226|2734|2|48|63178.08|0.04|0.02|N|O|1998-01-13|1997-10-31|1998-01-30|COLLECT COD|MAIL|. express accounts nee| +41965|276170|26171|1|37|42407.92|0.04|0.00|N|O|1995-12-11|1996-01-27|1995-12-14|DELIVER IN PERSON|TRUCK|ng accounts acro| +41965|573477|48500|2|22|34109.90|0.04|0.07|N|O|1995-12-31|1996-02-11|1996-01-07|NONE|SHIP|ickly after the final requests. unusual| +41965|415813|40830|3|28|48406.12|0.08|0.01|N|O|1995-12-23|1996-01-19|1995-12-25|COLLECT COD|FOB|ithely regular a| +41966|370677|33185|1|17|29710.22|0.04|0.04|R|F|1994-01-02|1993-12-06|1994-01-27|TAKE BACK RETURN|REG AIR|. quickly express packa| +41966|958120|8121|2|34|40054.72|0.05|0.00|A|F|1993-11-17|1994-01-05|1993-12-10|DELIVER IN PERSON|AIR|es. final asymptotes engage c| +41966|109028|34033|3|6|6222.12|0.09|0.04|A|F|1993-12-22|1994-01-17|1994-01-08|TAKE BACK RETURN|SHIP| the carefully unusual accounts. careful| +41967|495534|33062|1|20|30590.20|0.06|0.01|R|F|1992-11-21|1992-12-07|1992-12-03|DELIVER IN PERSON|RAIL|ites affix slyly fina| +41967|429948|42457|2|50|93896.00|0.02|0.03|R|F|1992-10-11|1992-12-25|1992-11-08|NONE|FOB|final depths lose. slyly special | +41967|125705|13212|3|27|46728.90|0.08|0.00|A|F|1992-11-23|1992-12-10|1992-12-06|TAKE BACK RETURN|MAIL|sly regular dugouts use. blit| +41992|934515|47034|1|19|29439.93|0.03|0.00|A|F|1995-05-03|1995-06-22|1995-05-08|COLLECT COD|SHIP| packages u| +41992|385980|48488|2|40|82638.80|0.05|0.03|A|F|1995-05-07|1995-05-17|1995-05-16|TAKE BACK RETURN|FOB|doze furiously | +41992|151945|1946|3|12|23963.28|0.03|0.07|R|F|1995-05-15|1995-06-29|1995-06-12|COLLECT COD|RAIL|ar packages s| +41992|725749|25750|4|43|76312.53|0.08|0.03|N|O|1995-07-14|1995-06-16|1995-07-19|DELIVER IN PERSON|RAIL| deposits across the even acc| +41993|442006|42007|1|1|947.98|0.07|0.07|N|O|1998-08-15|1998-07-30|1998-08-29|COLLECT COD|REG AIR|. furiously silent packages x-ray| +41993|784544|9575|2|50|81425.50|0.01|0.08|N|O|1998-08-06|1998-06-20|1998-09-03|NONE|FOB|he carefully bold packages. | +41993|822092|47125|3|47|47660.35|0.04|0.03|N|O|1998-08-30|1998-07-04|1998-09-08|NONE|FOB|ly blithe deposits kindle blithely fi| +41994|708389|45932|1|32|44715.20|0.09|0.02|A|F|1993-11-18|1993-11-20|1993-12-14|DELIVER IN PERSON|FOB|ly. slyly pending accounts wake. carefully | +41994|879560|4595|2|26|40027.52|0.03|0.02|A|F|1993-10-22|1993-10-16|1993-10-25|COLLECT COD|RAIL| asymptotes sleep furiously according to th| +41994|763781|13782|3|24|44274.00|0.02|0.02|A|F|1993-11-12|1993-10-27|1993-11-13|TAKE BACK RETURN|SHIP| regular requests doub| +41994|864416|14417|4|10|13803.70|0.01|0.02|R|F|1993-11-01|1993-10-25|1993-11-21|TAKE BACK RETURN|SHIP|nments haggle| +41995|529646|29647|1|27|45241.74|0.00|0.02|A|F|1994-11-29|1995-02-01|1994-12-18|COLLECT COD|FOB|ldly along the blithely even instructions. | +41995|753046|3047|2|6|6594.06|0.03|0.01|A|F|1995-02-13|1995-01-05|1995-03-14|DELIVER IN PERSON|REG AIR|thin packages use quick| +41995|441309|3818|3|6|7501.68|0.05|0.07|R|F|1995-02-24|1994-12-13|1995-03-12|COLLECT COD|REG AIR| furiously regular asymptotes. furiously | +41995|78675|3678|4|8|13229.36|0.08|0.05|A|F|1995-01-28|1995-01-04|1995-02-17|NONE|FOB|, even packages sublate furiously ironic| +41995|278517|28518|5|31|46360.50|0.01|0.08|R|F|1995-02-26|1995-01-13|1995-03-17|DELIVER IN PERSON|REG AIR|althy asympt| +41995|25633|38134|6|44|68579.72|0.10|0.07|A|F|1994-11-24|1995-01-31|1994-12-23|TAKE BACK RETURN|REG AIR| across the silent theodolites. slyly ev| +41995|803584|16101|7|23|34213.42|0.07|0.04|R|F|1994-11-23|1995-01-01|1994-12-22|COLLECT COD|REG AIR|ding to the express requests.| +41996|832094|32095|1|18|18468.90|0.09|0.08|R|F|1994-01-05|1994-01-22|1994-02-01|COLLECT COD|TRUCK|ously regular foxes. slyly unusual fo| +41996|989366|39367|2|50|72766.00|0.06|0.00|A|F|1994-03-01|1994-01-01|1994-03-24|NONE|FOB|arefully. carefully final requests n| +41996|264095|39106|3|32|33890.56|0.01|0.05|A|F|1994-02-02|1994-02-02|1994-03-01|TAKE BACK RETURN|RAIL|refully slow dolphins. packa| +41997|81477|31478|1|25|36461.75|0.09|0.02|R|F|1993-11-05|1993-12-02|1993-11-13|COLLECT COD|RAIL|yly ironic | +41998|770461|8007|1|33|50537.19|0.08|0.04|N|O|1998-10-17|1998-08-27|1998-11-06|TAKE BACK RETURN|TRUCK| furiously after the regular| +41999|173808|48815|1|45|84681.00|0.10|0.03|N|O|1996-04-20|1996-05-20|1996-05-06|NONE|RAIL|ly pending packages haggle | +41999|182966|7973|2|9|18440.64|0.06|0.00|N|O|1996-05-17|1996-04-30|1996-05-23|NONE|FOB|eas sleep. furiously bold depe| +41999|105243|30248|3|7|8737.68|0.02|0.05|N|O|1996-03-22|1996-05-17|1996-03-26|DELIVER IN PERSON|REG AIR|es do cajole | +41999|805331|42880|4|29|35852.41|0.09|0.01|N|O|1996-05-18|1996-05-30|1996-05-20|NONE|SHIP|the never | +41999|194870|19877|5|8|15718.96|0.08|0.05|N|O|1996-04-12|1996-05-24|1996-05-03|NONE|AIR|ily express deposits. carefully re| +42024|736696|49211|1|48|83167.68|0.00|0.06|N|O|1995-07-02|1995-08-05|1995-07-12|TAKE BACK RETURN|AIR|carefully alon| +42025|906131|6132|1|15|17056.35|0.00|0.03|N|O|1997-03-03|1997-01-15|1997-03-17|NONE|RAIL| accounts doze slyly blithely final pa| +42025|340254|27773|2|29|37532.96|0.05|0.07|N|O|1997-01-23|1996-12-26|1997-02-03|COLLECT COD|RAIL|ncies eat slyly across the ironi| +42025|640919|28456|3|47|87414.36|0.07|0.04|N|O|1997-01-20|1996-12-25|1997-01-24|DELIVER IN PERSON|TRUCK|bout the idl| +42025|912168|12169|4|29|34223.48|0.08|0.08|N|O|1996-12-26|1996-12-13|1997-01-25|COLLECT COD|MAIL|d packages boost slyly theodolite| +42025|796281|21312|5|20|27545.00|0.08|0.06|N|O|1997-01-15|1996-12-20|1997-01-27|TAKE BACK RETURN|MAIL|ic, regular accounts| +42026|653151|15665|1|13|14353.56|0.02|0.04|R|F|1993-06-12|1993-08-15|1993-06-22|DELIVER IN PERSON|AIR| nag blithely unu| +42026|508392|20903|2|20|28007.40|0.07|0.02|A|F|1993-08-01|1993-06-29|1993-08-22|TAKE BACK RETURN|RAIL|accounts above| +42026|530247|17778|3|23|29376.06|0.07|0.02|R|F|1993-08-09|1993-07-08|1993-08-19|COLLECT COD|MAIL|usly bold | +42027|590969|40970|1|28|57678.32|0.08|0.02|N|O|1997-02-01|1997-01-27|1997-02-25|COLLECT COD|MAIL|ns detect f| +42027|409399|34416|2|39|51026.43|0.08|0.07|N|O|1997-01-08|1997-02-12|1997-01-15|TAKE BACK RETURN|REG AIR|thely unusual excuses ought to wake. slyly | +42027|752499|15015|3|40|62058.40|0.01|0.02|N|O|1997-01-26|1996-12-19|1997-02-22|NONE|AIR|e slyly regular acc| +42027|236552|24065|4|11|16373.94|0.06|0.02|N|O|1996-11-25|1997-01-31|1996-12-24|COLLECT COD|REG AIR|. special requests e| +42028|67552|30054|1|3|4558.65|0.02|0.04|A|F|1994-10-13|1994-08-02|1994-10-24|TAKE BACK RETURN|FOB|final, final packages are quickly amo| +42028|334910|47417|2|47|91410.30|0.08|0.08|A|F|1994-09-30|1994-07-21|1994-10-16|TAKE BACK RETURN|FOB|lyly pending packages| +42028|828299|28300|3|9|11045.25|0.00|0.08|A|F|1994-09-17|1994-08-13|1994-09-22|COLLECT COD|REG AIR|al pinto beans sleep against the flu| +42028|214427|26932|4|45|60363.45|0.10|0.07|R|F|1994-10-18|1994-09-14|1994-11-07|TAKE BACK RETURN|MAIL|e closely ironic courts. special | +42028|869870|44905|5|14|25757.62|0.01|0.05|R|F|1994-08-21|1994-08-05|1994-09-19|NONE|SHIP|r ideas. carefu| +42029|199280|11784|1|1|1379.28|0.00|0.01|N|O|1995-10-07|1995-12-15|1995-10-17|NONE|TRUCK|, unusual | +42029|287642|148|2|14|22814.82|0.08|0.08|N|O|1995-12-24|1995-11-14|1996-01-23|COLLECT COD|MAIL|refully bold requests. slyly | +42029|394170|31692|3|35|44245.60|0.10|0.08|N|O|1995-12-16|1995-11-19|1996-01-09|COLLECT COD|AIR|blithely unusual the| +42030|933612|8649|1|42|69113.94|0.00|0.04|A|F|1993-02-14|1993-03-14|1993-02-21|COLLECT COD|MAIL|ffy, even pinto beans use regular asympt| +42030|211229|23734|2|38|43327.98|0.03|0.02|R|F|1993-05-14|1993-04-18|1993-05-26|NONE|FOB|blithely even ideas. final pack| +42030|114531|2038|3|45|69548.85|0.06|0.03|A|F|1993-03-04|1993-03-14|1993-03-05|COLLECT COD|SHIP|sly. fluffily regular| +42031|412468|49993|1|42|57978.48|0.03|0.08|N|O|1995-07-27|1995-06-04|1995-08-03|DELIVER IN PERSON|SHIP|unusual deposits. ironic| +42031|334525|47032|2|16|24952.16|0.00|0.07|N|O|1995-07-26|1995-07-13|1995-08-16|TAKE BACK RETURN|RAIL|tes are after the fi| +42031|359108|9109|3|36|42015.24|0.09|0.05|N|O|1995-06-20|1995-05-31|1995-06-24|TAKE BACK RETURN|REG AIR|. regular, bold packa| +42031|525664|38175|4|20|33792.80|0.06|0.05|N|O|1995-07-28|1995-06-29|1995-08-20|COLLECT COD|AIR| fluffily. furio| +42056|944412|31967|1|41|59711.17|0.09|0.06|N|O|1995-09-02|1995-07-20|1995-10-02|TAKE BACK RETURN|FOB|slyly express| +42056|725370|399|2|14|19534.76|0.08|0.06|N|O|1995-07-10|1995-07-16|1995-07-11|DELIVER IN PERSON|FOB|according to t| +42056|286719|11730|3|31|52876.70|0.08|0.03|N|F|1995-06-13|1995-07-19|1995-06-30|DELIVER IN PERSON|REG AIR|. furiously unusual foxes dazz| +42056|873744|36262|4|14|24047.80|0.04|0.03|N|O|1995-06-29|1995-06-29|1995-07-28|COLLECT COD|AIR|ns. furiously unusual depo| +42056|12108|24609|5|4|4080.40|0.02|0.08|R|F|1995-05-20|1995-08-17|1995-05-29|TAKE BACK RETURN|FOB|rays along t| +42057|119134|44139|1|9|10378.17|0.01|0.04|R|F|1993-07-18|1993-08-22|1993-07-26|TAKE BACK RETURN|FOB|uickly blith| +42058|354199|4200|1|36|45114.48|0.05|0.03|N|O|1996-03-22|1996-01-27|1996-04-08|NONE|TRUCK|ly regular package| +42058|20384|20385|2|6|7826.28|0.01|0.01|N|O|1996-02-07|1996-01-29|1996-02-19|NONE|MAIL|ndencies nag enticing| +42058|589571|2083|3|9|14944.95|0.04|0.00|N|O|1996-03-11|1996-02-12|1996-03-21|DELIVER IN PERSON|TRUCK|sual packages breach blithely after the | +42059|777326|14872|1|22|30872.38|0.10|0.03|N|O|1998-01-28|1997-11-16|1998-02-20|COLLECT COD|AIR|furiously a| +42059|504242|16753|2|6|7477.32|0.04|0.00|N|O|1998-01-17|1997-12-08|1998-02-09|DELIVER IN PERSON|AIR| express ac| +42059|794339|19370|3|1|1433.30|0.10|0.08|N|O|1997-10-13|1997-11-02|1997-10-31|COLLECT COD|TRUCK| according to the carefully special instr| +42059|441473|28998|4|44|62235.80|0.10|0.01|N|O|1997-10-20|1997-11-22|1997-11-14|DELIVER IN PERSON|RAIL|ely around| +42059|827155|39672|5|26|28134.86|0.01|0.00|N|O|1997-11-12|1997-11-26|1997-12-02|TAKE BACK RETURN|SHIP|eep slyly. silen| +42059|982033|19591|6|35|39024.65|0.07|0.08|N|O|1997-12-23|1997-12-07|1997-12-30|TAKE BACK RETURN|SHIP|al excuses are carefully slyly regul| +42059|13892|1393|7|33|59594.37|0.04|0.05|N|O|1997-12-02|1997-11-02|1997-12-22|DELIVER IN PERSON|AIR| bold patterns are quickly ac| +42060|474213|24214|1|16|18995.04|0.01|0.07|N|O|1995-12-11|1995-12-04|1995-12-31|DELIVER IN PERSON|AIR|s about the blithely special packages| +42060|96063|46064|2|22|23299.32|0.08|0.05|N|O|1996-01-14|1995-11-08|1996-01-29|DELIVER IN PERSON|SHIP|fluffily acros| +42060|514339|26850|3|38|51425.78|0.00|0.06|N|O|1995-10-15|1995-11-03|1995-10-17|COLLECT COD|RAIL|l ideas. bold fo| +42060|486507|24035|4|9|13441.32|0.06|0.00|N|O|1995-12-04|1995-12-15|1995-12-13|NONE|FOB|y foxes. blithely pending deposits| +42061|728790|3819|1|2|3637.52|0.08|0.07|A|F|1994-03-18|1994-05-12|1994-03-24|TAKE BACK RETURN|REG AIR|lly dogged pinto b| +42061|761853|36884|2|15|28722.30|0.05|0.04|A|F|1994-04-10|1994-04-08|1994-04-14|TAKE BACK RETURN|MAIL|lly unusual depos| +42061|451554|26573|3|20|30110.60|0.10|0.07|A|F|1994-06-10|1994-05-21|1994-06-27|COLLECT COD|SHIP|uld snooze slyly among the bl| +42061|265138|2654|4|4|4412.48|0.09|0.07|R|F|1994-03-14|1994-05-25|1994-03-21|COLLECT COD|TRUCK|ithely spec| +42062|596624|9136|1|49|84309.40|0.02|0.00|R|F|1992-06-20|1992-04-16|1992-07-04|TAKE BACK RETURN|MAIL|long the slyly unusual| +42062|445525|33050|2|33|48526.50|0.06|0.04|A|F|1992-04-29|1992-04-02|1992-05-23|DELIVER IN PERSON|AIR|old deposits detect pending multipliers. i| +42062|926953|1990|3|46|91075.86|0.08|0.02|A|F|1992-03-26|1992-05-07|1992-04-22|DELIVER IN PERSON|RAIL|s integrate blithely fina| +42062|289523|27039|4|28|42350.28|0.04|0.07|R|F|1992-03-02|1992-04-24|1992-03-03|COLLECT COD|RAIL|uests boost along the final, regular acc| +42062|5251|5252|5|35|40468.75|0.05|0.03|R|F|1992-05-11|1992-04-21|1992-05-31|TAKE BACK RETURN|REG AIR|heodolites nod furiously special instruct| +42062|250672|25683|6|19|30830.54|0.04|0.01|A|F|1992-03-20|1992-05-18|1992-04-19|NONE|RAIL|leep carefully quickly regular| +42062|43672|31173|7|8|12925.36|0.06|0.06|R|F|1992-06-01|1992-04-08|1992-06-16|NONE|SHIP|etect blith| +42063|994234|6754|1|24|31876.56|0.01|0.07|R|F|1995-05-18|1995-04-28|1995-05-21|NONE|RAIL|ly final excuses. instructi| +42063|75778|25779|2|35|61381.95|0.02|0.04|R|F|1995-03-19|1995-05-07|1995-04-15|NONE|AIR|oost behind| +42063|597232|47233|3|6|7975.26|0.02|0.06|A|F|1995-06-09|1995-04-01|1995-06-13|DELIVER IN PERSON|SHIP|uests. even, ironic| +42063|674261|24262|4|22|27175.06|0.02|0.00|A|F|1995-06-10|1995-05-18|1995-06-16|DELIVER IN PERSON|MAIL|excuses cajole fluffily ironic theo| +42088|653746|16260|1|24|40793.04|0.05|0.07|N|O|1996-03-07|1996-02-17|1996-03-23|COLLECT COD|RAIL| the ironic, ironic foxes use al| +42088|503917|3918|2|9|17288.01|0.00|0.08|N|O|1996-03-14|1996-02-02|1996-03-24|NONE|FOB|d ideas are quickly abo| +42088|331752|44259|3|2|3567.48|0.06|0.08|N|O|1996-03-23|1996-01-12|1996-04-14|NONE|FOB|gside of t| +42088|748407|10922|4|29|42205.73|0.02|0.02|N|O|1995-12-17|1996-01-13|1996-01-07|TAKE BACK RETURN|RAIL|g theodolites! deposits haggle carefu| +42088|469212|6740|5|13|15355.47|0.05|0.01|N|O|1995-12-31|1996-01-10|1996-01-18|TAKE BACK RETURN|SHIP|re blithely alongside of the quiet, br| +42088|32154|32155|6|27|29326.05|0.00|0.06|N|O|1996-02-04|1996-01-18|1996-02-25|NONE|SHIP|nal asymptotes. pending| +42088|399661|12169|7|25|44016.25|0.00|0.00|N|O|1995-12-10|1996-03-03|1996-01-04|TAKE BACK RETURN|AIR|gular accounts | +42089|93014|43015|1|21|21147.21|0.01|0.00|A|F|1994-09-08|1994-09-18|1994-10-04|TAKE BACK RETURN|MAIL|ts wake fluffily after the | +42089|271194|8710|2|28|32625.04|0.01|0.00|R|F|1994-08-10|1994-09-23|1994-08-26|TAKE BACK RETURN|TRUCK|nticing the| +42089|950177|25216|3|23|28223.99|0.08|0.00|R|F|1994-07-22|1994-10-03|1994-08-01|NONE|TRUCK|ress theodolites haggle slyly ruthless, bol| +42089|615532|28045|4|41|59347.50|0.08|0.04|R|F|1994-11-05|1994-08-25|1994-11-10|COLLECT COD|TRUCK|. slyly regular requests u| +42089|237033|37034|5|14|13580.28|0.10|0.02|A|F|1994-10-20|1994-08-14|1994-11-17|COLLECT COD|TRUCK|thily furiously express accounts. qu| +42089|805122|30155|6|7|7189.56|0.07|0.08|R|F|1994-09-11|1994-08-09|1994-09-14|TAKE BACK RETURN|REG AIR|en deposits; sly| +42089|675266|12806|7|45|55855.35|0.10|0.01|A|F|1994-09-22|1994-09-21|1994-10-19|TAKE BACK RETURN|SHIP|on the slyly fin| +42090|184233|34234|1|36|47420.28|0.10|0.03|N|O|1995-10-08|1995-08-12|1995-10-30|TAKE BACK RETURN|TRUCK|d the fluff| +42090|396724|21739|2|29|52800.59|0.05|0.02|N|O|1995-07-31|1995-08-28|1995-08-08|DELIVER IN PERSON|SHIP|e regular, express requests. al| +42090|727219|2248|3|24|29908.32|0.00|0.03|N|O|1995-09-05|1995-09-08|1995-09-22|TAKE BACK RETURN|MAIL|e slyly bold ideas. evenly| +42090|361795|49317|4|4|7427.12|0.04|0.08|N|O|1995-10-15|1995-08-12|1995-10-31|DELIVER IN PERSON|RAIL| instructions use blithely about the id| +42090|685372|35373|5|14|19002.76|0.02|0.03|N|O|1995-09-02|1995-09-24|1995-09-17|COLLECT COD|SHIP|zzle. fluffily unusual escapades are | +42090|35808|35809|6|23|40107.40|0.07|0.05|N|O|1995-09-15|1995-09-11|1995-09-21|NONE|FOB|ackages cajole a| +42091|586418|11441|1|23|34600.97|0.01|0.00|N|O|1996-12-02|1996-12-30|1996-12-17|DELIVER IN PERSON|SHIP|nusual requests. plate| +42091|924961|37480|2|33|65535.36|0.08|0.06|N|O|1996-11-19|1997-01-24|1996-11-21|COLLECT COD|MAIL|usly even ideas sleep. carefully ironic dep| +42091|803361|40910|3|45|56894.40|0.01|0.08|N|O|1997-03-11|1997-01-23|1997-03-30|COLLECT COD|FOB|ideas. slyly final deposits are ca| +42091|84155|46657|4|21|23922.15|0.00|0.04|N|O|1997-01-19|1997-01-25|1997-01-24|DELIVER IN PERSON|REG AIR|e. furiously pending dolphins alon| +42091|384153|21675|5|3|3711.42|0.05|0.08|N|O|1996-11-30|1997-02-10|1996-12-06|TAKE BACK RETURN|SHIP| final, final no| +42091|453770|28789|6|18|31027.50|0.01|0.04|N|O|1997-01-13|1996-12-18|1997-02-01|COLLECT COD|SHIP|ully daring accounts cajole carefull| +42091|510923|10924|7|40|77356.00|0.04|0.01|N|O|1996-12-17|1997-01-22|1996-12-25|TAKE BACK RETURN|SHIP|c attainments are furiously f| +42092|75502|38004|1|3|4432.50|0.04|0.01|A|F|1993-06-18|1993-08-16|1993-06-30|TAKE BACK RETURN|AIR|e carefully. final pa| +42092|949825|37380|2|2|3749.56|0.01|0.08|A|F|1993-09-09|1993-08-11|1993-09-17|COLLECT COD|REG AIR|s above the s| +42092|694132|19159|3|44|49548.40|0.04|0.02|R|F|1993-06-12|1993-08-06|1993-06-25|DELIVER IN PERSON|AIR|inst the slyly| +42092|272675|10191|4|49|80735.34|0.03|0.07|A|F|1993-07-21|1993-08-19|1993-07-27|TAKE BACK RETURN|TRUCK|accounts cajole dogg| +42092|840770|15803|5|29|49611.17|0.02|0.00|R|F|1993-08-20|1993-08-13|1993-08-31|COLLECT COD|RAIL|eans boost furiously pending asym| +42092|820053|7602|6|28|27244.28|0.10|0.05|A|F|1993-09-07|1993-08-19|1993-09-10|NONE|RAIL|quickly platelets. pending acco| +42093|752185|14701|1|40|49486.00|0.09|0.07|N|O|1995-12-28|1995-11-08|1996-01-05|DELIVER IN PERSON|TRUCK|ain furiousl| +42093|958770|33809|2|1|1828.73|0.09|0.05|N|O|1995-12-26|1995-10-30|1996-01-18|DELIVER IN PERSON|FOB|posits: unus| +42093|32472|19973|3|14|19662.58|0.07|0.05|N|O|1996-01-07|1995-11-26|1996-02-04|DELIVER IN PERSON|SHIP|xes. special requests affix slyly | +42094|867953|30471|1|5|9604.55|0.04|0.06|N|O|1997-12-24|1997-12-28|1998-01-09|COLLECT COD|RAIL|ng, even the| +42094|682825|32826|2|39|70503.81|0.07|0.08|N|O|1997-12-17|1998-01-17|1998-01-16|DELIVER IN PERSON|REG AIR|he quickly bold deposits. deposits al| +42094|224927|49936|3|37|68520.67|0.00|0.05|N|O|1998-01-26|1998-01-06|1998-02-16|NONE|SHIP|carefully among the the| +42094|336677|24196|4|21|35986.86|0.01|0.03|N|O|1998-02-14|1997-11-30|1998-02-26|TAKE BACK RETURN|SHIP|fluffily express notornis. furiousl| +42094|514375|14376|5|34|47237.90|0.01|0.04|N|O|1998-01-13|1997-12-08|1998-02-06|COLLECT COD|SHIP|etly even tithes detect b| +42094|94028|6530|6|40|40880.80|0.09|0.03|N|O|1997-11-04|1997-12-02|1997-11-05|TAKE BACK RETURN|REG AIR|slyly ironic packages. fluffily sp| +42094|327803|2816|7|28|51262.12|0.07|0.04|N|O|1997-12-17|1998-01-06|1997-12-22|NONE|MAIL|g, special pinto beans. furiously iron| +42095|380287|5302|1|4|5469.08|0.00|0.08|A|F|1992-11-24|1992-10-13|1992-11-27|NONE|MAIL|ickly regular packages. quickly even depo| +42095|475801|13329|2|44|78178.32|0.07|0.01|A|F|1992-10-26|1992-11-22|1992-11-14|DELIVER IN PERSON|SHIP|tes. deposits are| +42095|785594|23140|3|41|68861.96|0.08|0.00|R|F|1992-12-17|1992-10-11|1993-01-11|TAKE BACK RETURN|FOB|le quickly special foxe| +42095|468692|18693|4|35|58123.45|0.06|0.08|A|F|1992-09-20|1992-11-14|1992-10-02|NONE|REG AIR|tructions haggl| +42095|289888|14899|5|30|56336.10|0.07|0.02|R|F|1992-10-03|1992-10-28|1992-10-06|NONE|FOB|y careful accounts cajole fu| +42095|138785|38786|6|7|12766.46|0.09|0.07|A|F|1992-10-20|1992-11-26|1992-10-26|COLLECT COD|FOB|een the instr| +42120|690282|2796|1|6|7633.50|0.00|0.05|N|O|1996-08-28|1996-08-03|1996-09-24|NONE|MAIL|lyly carefully pending | +42120|561272|48806|2|28|37331.00|0.02|0.05|N|O|1996-05-29|1996-06-28|1996-06-05|COLLECT COD|TRUCK|carefully. even theodo| +42120|292505|30021|3|26|38934.74|0.02|0.05|N|O|1996-08-09|1996-06-26|1996-08-31|TAKE BACK RETURN|AIR| nag carefully. unusual| +42120|130517|30518|4|47|72732.97|0.01|0.04|N|O|1996-08-21|1996-07-31|1996-09-13|DELIVER IN PERSON|AIR|efully permanent theo| +42121|221611|46620|1|38|58238.80|0.03|0.01|A|F|1993-02-03|1993-01-23|1993-02-07|NONE|SHIP| foxes haggle according to the | +42121|615377|40402|2|41|52985.94|0.04|0.07|A|F|1992-11-26|1992-12-22|1992-11-29|NONE|TRUCK|s. special pac| +42121|634123|34124|3|20|21141.80|0.05|0.04|A|F|1993-02-16|1992-12-13|1993-02-17|TAKE BACK RETURN|FOB|ons. furiously express| +42121|704466|42009|4|31|45583.33|0.02|0.08|R|F|1993-01-26|1992-12-26|1993-02-21|TAKE BACK RETURN|SHIP|ial instructions use fluffily even depo| +42121|946000|46001|5|23|24057.08|0.10|0.03|A|F|1993-01-24|1992-11-27|1993-01-27|COLLECT COD|REG AIR|ly even platelets hi| +42121|406058|31075|6|25|24100.75|0.01|0.03|R|F|1992-12-02|1993-01-08|1992-12-16|TAKE BACK RETURN|TRUCK|y slyly final deposits? quickly fina| +42121|603371|3372|7|42|53522.28|0.09|0.01|A|F|1992-12-16|1992-12-27|1993-01-10|NONE|RAIL|al dolphins sleep quickly among | +42122|843112|30661|1|1|1055.07|0.04|0.06|N|O|1996-09-12|1996-08-25|1996-09-20|DELIVER IN PERSON|AIR|y special pinto beans nag even, | +42122|169245|31749|2|12|15770.88|0.05|0.00|N|O|1996-08-25|1996-10-11|1996-09-20|COLLECT COD|TRUCK|ar ideas use. foxes maintain | +42122|500106|37637|3|34|37606.72|0.06|0.00|N|O|1996-09-24|1996-09-26|1996-09-29|NONE|FOB|tions mold instr| +42123|686621|36622|1|26|41797.34|0.10|0.04|R|F|1993-03-01|1993-03-17|1993-03-09|NONE|FOB|tealthy requests. sentiments snooze furiou| +42123|22492|9993|2|24|33947.76|0.04|0.08|R|F|1993-02-20|1993-04-02|1993-02-27|TAKE BACK RETURN|MAIL| affix. fluf| +42123|6647|31648|3|5|7768.20|0.04|0.05|A|F|1993-05-25|1993-04-27|1993-05-29|COLLECT COD|RAIL|e ironically regular packages sleep | +42123|704071|16586|4|23|24725.92|0.07|0.04|R|F|1993-02-08|1993-04-02|1993-02-19|NONE|MAIL|es. brave, ironic account| +42123|306468|43987|5|14|20642.30|0.03|0.01|R|F|1993-05-07|1993-04-23|1993-05-21|COLLECT COD|SHIP|lar accounts. carefully even packages| +42124|169094|19095|1|8|9304.72|0.06|0.06|N|O|1996-10-11|1996-10-14|1996-10-17|NONE|RAIL|xes cajole alongside of the ironic ins| +42125|165174|40181|1|19|23544.23|0.09|0.06|R|F|1994-01-31|1994-02-15|1994-02-13|COLLECT COD|FOB| foxes wake carefully quickly | +42125|65582|28084|2|40|61903.20|0.06|0.05|A|F|1994-04-17|1994-02-03|1994-04-27|TAKE BACK RETURN|MAIL|ptotes cajole blithel| +42125|231411|43916|3|25|33560.00|0.02|0.00|A|F|1994-04-13|1994-02-13|1994-04-15|COLLECT COD|REG AIR|s boost blithely among the carefully pendi| +42126|382029|32030|1|28|31108.28|0.05|0.02|A|F|1994-12-05|1995-01-19|1994-12-12|NONE|RAIL|ending escapades.| +42126|751337|38883|2|12|16659.60|0.05|0.02|A|F|1995-02-20|1995-02-14|1995-02-23|TAKE BACK RETURN|FOB|sits are after the regula| +42126|718980|6523|3|21|41977.95|0.00|0.00|A|F|1995-03-19|1995-02-28|1995-04-05|NONE|MAIL|ests haggle thinly bold ide| +42126|893843|6361|4|31|56940.80|0.04|0.05|R|F|1994-12-26|1995-01-12|1995-01-18|DELIVER IN PERSON|REG AIR|ts until the regularly final co| +42126|815565|3114|5|7|10363.64|0.01|0.02|R|F|1995-01-21|1995-01-06|1995-02-16|COLLECT COD|SHIP|nts wake across the carefully final r| +42126|184531|47035|6|10|16155.30|0.03|0.02|R|F|1995-01-26|1995-02-21|1995-02-12|DELIVER IN PERSON|FOB|special packages| +42126|410014|22523|7|48|44351.52|0.09|0.08|R|F|1995-03-28|1995-01-08|1995-04-25|DELIVER IN PERSON|SHIP|refully pending accounts are b| +42127|98943|23946|1|43|83503.42|0.09|0.05|R|F|1993-06-30|1993-05-08|1993-07-17|DELIVER IN PERSON|SHIP| the furiously unusual pac| +42127|929402|4439|2|34|48666.24|0.06|0.00|R|F|1993-06-25|1993-06-09|1993-07-16|COLLECT COD|FOB|c asymptotes cajole idly across| +42127|448477|48478|3|20|28509.00|0.04|0.08|R|F|1993-07-02|1993-04-29|1993-07-22|TAKE BACK RETURN|FOB|ptotes use furiously abo| +42152|626270|1295|1|6|7177.44|0.02|0.07|R|F|1994-11-26|1994-10-09|1994-12-04|NONE|MAIL| thinly ironic, unusual theodo| +42152|704350|16865|2|42|56881.44|0.00|0.05|R|F|1994-09-14|1994-09-11|1994-10-10|NONE|REG AIR|accounts. fluff| +42152|8918|8919|3|6|10961.46|0.08|0.01|A|F|1994-10-15|1994-10-22|1994-10-29|DELIVER IN PERSON|FOB| wake carefully. sl| +42152|882728|45246|4|31|53031.08|0.09|0.02|A|F|1994-10-12|1994-09-09|1994-10-18|COLLECT COD|REG AIR|y slyly silent requests. slyly ironic inst| +42152|996890|21929|5|21|41723.85|0.00|0.05|R|F|1994-11-29|1994-10-08|1994-12-25|TAKE BACK RETURN|TRUCK|ges are blithely packages. ironically ir| +42153|568776|43799|1|10|18447.50|0.10|0.07|A|F|1993-08-01|1993-07-16|1993-08-18|TAKE BACK RETURN|TRUCK|ogs. even,| +42153|406737|6738|2|40|65748.40|0.08|0.07|A|F|1993-06-25|1993-08-23|1993-07-19|DELIVER IN PERSON|RAIL|nt depths. blithely unusual | +42153|21723|46724|3|6|9868.32|0.10|0.08|R|F|1993-08-27|1993-08-28|1993-09-22|TAKE BACK RETURN|MAIL|special deposits| +42153|82963|20467|4|23|44757.08|0.07|0.02|A|F|1993-09-08|1993-07-29|1993-10-07|DELIVER IN PERSON|REG AIR| the thinly pending pinto| +42154|266727|41738|1|2|3387.42|0.10|0.03|R|F|1992-02-13|1992-02-22|1992-03-02|TAKE BACK RETURN|RAIL|express packages at the blithely final th| +42154|864710|39745|2|20|33493.40|0.06|0.07|R|F|1992-03-21|1992-03-31|1992-04-05|DELIVER IN PERSON|FOB|cial dependencies nag.| +42154|177563|15073|3|49|80387.44|0.10|0.04|A|F|1992-03-30|1992-03-03|1992-04-25|DELIVER IN PERSON|AIR|ove the slyly pending r| +42155|676867|1894|1|40|73753.20|0.04|0.02|R|F|1993-07-29|1993-08-19|1993-08-03|NONE|FOB|cial deposits wake. final deposits a| +42155|89138|1640|2|32|36068.16|0.00|0.07|R|F|1993-08-10|1993-07-26|1993-08-13|NONE|SHIP|along the bold accounts lose f| +42155|139468|39469|3|45|67835.70|0.07|0.05|R|F|1993-08-10|1993-07-04|1993-09-05|TAKE BACK RETURN|FOB|ross the ironic | +42156|277194|39700|1|16|18738.88|0.09|0.05|R|F|1994-05-22|1994-07-13|1994-05-29|TAKE BACK RETURN|AIR|ecial packages use alongside of the c| +42156|795215|32761|2|38|49786.84|0.00|0.03|R|F|1994-07-10|1994-05-28|1994-07-18|COLLECT COD|SHIP|furiously among| +42156|161715|36722|3|46|81728.66|0.07|0.08|R|F|1994-06-24|1994-07-14|1994-07-05|TAKE BACK RETURN|MAIL|hless instructions are slyly abou| +42156|939059|14096|4|26|28548.26|0.01|0.05|A|F|1994-07-18|1994-06-06|1994-07-29|TAKE BACK RETURN|FOB|thely. express co| +42156|763494|26010|5|33|51396.18|0.08|0.01|A|F|1994-08-20|1994-06-15|1994-08-24|COLLECT COD|SHIP| sleep sly ideas. furiously clo| +42157|919586|32105|1|50|80277.00|0.06|0.07|A|F|1992-07-25|1992-08-07|1992-08-20|TAKE BACK RETURN|SHIP|onic accounts nag blithely slyly r| +42157|474835|12363|2|13|23527.53|0.10|0.04|A|F|1992-07-03|1992-09-25|1992-07-15|DELIVER IN PERSON|AIR|lar excuses. | +42157|546958|21979|3|21|42103.53|0.10|0.02|A|F|1992-09-14|1992-08-15|1992-10-09|DELIVER IN PERSON|RAIL|se blithely. slyly regular accounts | +42157|710509|23024|4|22|33428.34|0.05|0.06|A|F|1992-08-11|1992-09-13|1992-08-17|COLLECT COD|FOB|f the bold gifts inte| +42158|595019|45020|1|32|35647.68|0.01|0.03|N|O|1998-07-01|1998-07-15|1998-07-29|DELIVER IN PERSON|RAIL|e furiously across| +42158|474784|37294|2|28|49245.28|0.07|0.07|N|O|1998-08-23|1998-07-28|1998-09-10|TAKE BACK RETURN|FOB|ets? fluffily| +42158|688335|38336|3|37|48962.10|0.00|0.08|N|O|1998-06-25|1998-07-02|1998-07-12|TAKE BACK RETURN|RAIL|lar requests. special requests are a| +42158|831310|31311|4|33|40961.91|0.10|0.00|N|O|1998-05-27|1998-07-05|1998-06-11|NONE|MAIL|ly. carefully bold dep| +42159|801646|26679|1|18|27856.80|0.02|0.01|N|O|1996-01-12|1996-04-05|1996-02-04|NONE|AIR|ly even courts cajole abo| +42159|256984|19490|2|4|7763.88|0.08|0.00|N|O|1996-02-06|1996-03-31|1996-02-07|NONE|REG AIR|de of the tithes. final, final excuses | +42159|119112|19113|3|26|29408.86|0.00|0.08|N|O|1996-04-06|1996-03-16|1996-04-12|COLLECT COD|RAIL|posits? fluffily regular packages| +42159|901922|1923|4|43|82726.84|0.00|0.06|N|O|1996-04-29|1996-02-11|1996-05-27|NONE|RAIL|ggle carefully. furio| +42184|424489|36998|1|47|66432.62|0.01|0.04|R|F|1993-11-20|1993-10-13|1993-12-19|NONE|REG AIR|ly bold dependencies. blithely u| +42184|385310|35311|2|35|48835.50|0.10|0.02|R|F|1993-11-15|1993-11-15|1993-12-10|NONE|TRUCK|ing to the| +42184|896593|34145|3|21|33380.55|0.02|0.06|R|F|1993-11-06|1993-11-16|1993-11-28|COLLECT COD|FOB|ular accounts play regul| +42184|23411|23412|4|45|60048.45|0.10|0.07|A|F|1993-12-07|1993-12-02|1994-01-05|NONE|MAIL|g to the silen| +42184|464877|39896|5|23|42362.55|0.04|0.02|A|F|1993-12-23|1993-10-28|1994-01-10|DELIVER IN PERSON|AIR|its above the sometimes spe| +42184|171708|9218|6|30|53391.00|0.03|0.07|A|F|1993-09-27|1993-11-28|1993-10-01|TAKE BACK RETURN|REG AIR|s. carefully regu| +42185|229453|4462|1|24|33178.56|0.03|0.05|N|O|1996-09-21|1996-07-29|1996-10-05|COLLECT COD|MAIL|refully final dependencies sleep furio| +42185|416538|16539|2|38|55271.38|0.02|0.01|N|O|1996-06-16|1996-07-06|1996-07-05|TAKE BACK RETURN|REG AIR|, ironic de| +42185|749092|49093|3|12|13692.72|0.06|0.01|N|O|1996-07-14|1996-07-22|1996-07-15|NONE|REG AIR|r asymptotes. caref| +42185|984900|47420|4|2|3969.72|0.03|0.03|N|O|1996-09-01|1996-08-04|1996-09-23|COLLECT COD|REG AIR|ans! express instructions use at the slowly| +42185|207476|19981|5|47|65022.62|0.05|0.01|N|O|1996-08-29|1996-07-22|1996-09-24|COLLECT COD|TRUCK|the regular| +42185|48317|10818|6|45|56938.95|0.09|0.07|N|O|1996-08-26|1996-08-05|1996-09-06|TAKE BACK RETURN|TRUCK|x even courts. blithely | +42185|62525|25027|7|9|13387.68|0.04|0.04|N|O|1996-09-22|1996-08-24|1996-10-08|TAKE BACK RETURN|AIR|xcuses. slyly final | +42186|853253|28288|1|50|60310.50|0.03|0.08|A|F|1993-07-09|1993-06-21|1993-07-15|COLLECT COD|RAIL|posits solve final, express requests. fi| +42186|621103|8640|2|9|9216.63|0.05|0.05|A|F|1993-05-06|1993-07-14|1993-05-30|TAKE BACK RETURN|RAIL|ckages haggle blithely | +42187|568919|18920|1|12|23854.68|0.06|0.02|A|F|1993-01-08|1992-10-31|1993-01-15|TAKE BACK RETURN|RAIL|alongside o| +42188|179819|42323|1|18|34178.58|0.08|0.04|R|F|1993-11-21|1994-02-08|1993-12-13|NONE|MAIL| frets haggle quickly caref| +42188|204277|41790|2|4|4725.04|0.02|0.08|A|F|1994-02-25|1994-01-31|1994-02-26|TAKE BACK RETURN|MAIL|n deposits? furiou| +42188|277028|2039|3|16|16080.16|0.07|0.02|A|F|1994-03-04|1994-02-11|1994-03-24|COLLECT COD|MAIL|ter the bold| +42189|845450|7967|1|19|26512.79|0.00|0.07|N|O|1997-05-20|1997-08-06|1997-05-21|DELIVER IN PERSON|REG AIR|usly regular depos| +42189|466533|16534|2|15|22492.65|0.00|0.05|N|O|1997-06-28|1997-07-01|1997-07-04|DELIVER IN PERSON|REG AIR|wake. fluffily regular frets along t| +42189|18126|30627|3|19|19838.28|0.07|0.01|N|O|1997-05-24|1997-06-18|1997-06-01|TAKE BACK RETURN|AIR|oost. quickly unusual| +42189|630444|17981|4|21|28862.61|0.10|0.00|N|O|1997-07-21|1997-07-02|1997-07-26|NONE|RAIL| are above the express pa| +42189|855956|30991|5|10|19119.10|0.03|0.07|N|O|1997-09-05|1997-06-21|1997-10-01|DELIVER IN PERSON|SHIP|lms sleep-- qu| +42190|243835|6340|1|27|48028.14|0.04|0.08|A|F|1993-04-22|1993-03-30|1993-05-22|DELIVER IN PERSON|FOB|final, brave ideas. carefully iron| +42190|128083|40586|2|9|9999.72|0.10|0.07|R|F|1993-04-18|1993-03-24|1993-04-20|NONE|TRUCK|bold pinto beans. slowly final theo| +42191|541576|4087|1|22|35586.10|0.06|0.07|N|O|1998-09-19|1998-08-11|1998-10-01|DELIVER IN PERSON|AIR|its haggle thinly about the fluffily spe| +42191|253044|3045|2|6|5982.18|0.02|0.02|N|O|1998-07-26|1998-08-19|1998-07-29|COLLECT COD|MAIL|refully close pinto | +42191|897611|47612|3|34|54691.38|0.05|0.07|N|O|1998-07-13|1998-08-05|1998-07-29|NONE|TRUCK|ccounts. regul| +42191|137435|49938|4|7|10307.01|0.04|0.01|N|O|1998-07-08|1998-09-04|1998-08-04|TAKE BACK RETURN|MAIL|accounts. special accounts are sl| +42191|856200|6201|5|4|4624.64|0.03|0.05|N|O|1998-07-27|1998-08-13|1998-08-11|NONE|AIR|al platelets should have to haggle carefull| +42191|152621|15125|6|45|75312.90|0.00|0.01|N|O|1998-08-20|1998-09-15|1998-09-19|COLLECT COD|TRUCK|y after the bold, ironic sentimen| +42191|97714|47715|7|28|47927.88|0.09|0.06|N|O|1998-10-29|1998-08-03|1998-11-12|NONE|TRUCK|ests. carefully ironic dependencies| +42216|273477|23478|1|13|18855.98|0.08|0.07|R|F|1994-07-07|1994-05-10|1994-07-12|TAKE BACK RETURN|RAIL| haggle around the carefully final fo| +42216|315751|3270|2|25|44168.50|0.09|0.02|A|F|1994-05-23|1994-06-12|1994-06-19|DELIVER IN PERSON|RAIL|s theodolites. sl| +42216|822948|35465|3|18|33676.20|0.09|0.06|R|F|1994-05-10|1994-05-26|1994-05-11|COLLECT COD|AIR|kages. carefully bold requests n| +42216|286517|36518|4|28|42098.00|0.02|0.00|R|F|1994-04-04|1994-06-08|1994-05-04|COLLECT COD|REG AIR|ts. final pains do thrash. blithely dogg| +42216|488973|26501|5|35|68668.25|0.02|0.00|R|F|1994-05-16|1994-05-22|1994-06-07|COLLECT COD|TRUCK|unts cajole slyly? | +42216|154879|42389|6|27|52214.49|0.07|0.06|A|F|1994-07-06|1994-06-22|1994-08-03|COLLECT COD|REG AIR|s. carefully pend| +42216|40899|40900|7|25|45997.25|0.06|0.05|A|F|1994-05-17|1994-06-08|1994-06-04|NONE|FOB|regular dolphins. regular dep| +42217|386467|11482|1|39|60584.55|0.10|0.05|A|F|1994-03-04|1994-04-14|1994-03-17|NONE|TRUCK|ajole carefully. excus| +42218|556828|6829|1|40|75392.00|0.09|0.08|R|F|1994-12-23|1994-11-02|1995-01-02|NONE|AIR|es against the final| +42218|603358|3359|2|8|10090.56|0.08|0.02|R|F|1994-11-08|1994-12-08|1994-11-29|DELIVER IN PERSON|FOB|y excuses. even package| +42218|634602|34603|3|46|70682.22|0.08|0.02|R|F|1994-10-17|1994-10-31|1994-10-31|NONE|MAIL|s. furiously final braids a| +42219|187840|37841|1|2|3855.68|0.10|0.01|A|F|1993-12-08|1994-01-08|1994-01-01|DELIVER IN PERSON|TRUCK| furiously special req| +42219|26440|26441|2|20|27328.80|0.03|0.05|A|F|1994-02-14|1994-01-19|1994-02-18|DELIVER IN PERSON|FOB|accounts cajole furiously afte| +42219|372834|35342|3|4|7627.28|0.06|0.05|A|F|1993-11-20|1993-12-23|1993-12-03|COLLECT COD|REG AIR|carefully. furious| +42220|218584|31089|1|37|55595.09|0.05|0.02|N|O|1995-12-28|1996-02-22|1996-01-02|COLLECT COD|MAIL|ly even asymptotes. pending, unusual depos| +42220|735697|35698|2|11|19059.26|0.09|0.05|N|O|1996-01-25|1996-02-08|1996-02-18|COLLECT COD|TRUCK|the slyly pending instructions| +42220|844213|44214|3|34|39343.78|0.00|0.02|N|O|1996-03-05|1996-03-17|1996-03-16|COLLECT COD|FOB|ar asymptotes br| +42220|679767|17307|4|10|17467.30|0.07|0.03|N|O|1996-02-17|1996-03-08|1996-03-01|TAKE BACK RETURN|TRUCK| blithely fur| +42220|836658|36659|5|21|33486.81|0.09|0.08|N|O|1996-01-25|1996-01-26|1996-02-14|COLLECT COD|SHIP|y regular decoys. furiously bold deposi| +42220|695141|32681|6|50|56805.50|0.00|0.01|N|O|1996-02-23|1996-02-16|1996-03-01|TAKE BACK RETURN|RAIL|etimes ironic dolphins haggle slyly i| +42221|64514|14515|1|10|14785.10|0.09|0.03|N|O|1997-11-30|1998-01-22|1997-12-24|NONE|TRUCK|y even gifts! furiously express| +42221|270731|33237|2|8|13613.76|0.02|0.00|N|O|1998-02-04|1998-01-11|1998-02-06|NONE|TRUCK|ss courts | +42221|166571|16572|3|45|73690.65|0.09|0.07|N|O|1998-01-13|1997-12-28|1998-02-10|NONE|TRUCK|ptotes boost blith| +42221|549863|12374|4|30|57385.20|0.08|0.04|N|O|1997-12-27|1997-12-09|1998-01-05|COLLECT COD|RAIL|ts affix. slyly express pinto beans sle| +42221|542318|17339|5|23|31286.67|0.03|0.05|N|O|1997-11-17|1998-01-03|1997-12-14|NONE|TRUCK|oggedly. unusual, unusual | +42222|390899|3407|1|19|37807.72|0.10|0.06|N|O|1998-06-12|1998-06-11|1998-06-17|DELIVER IN PERSON|SHIP|across the blithely regular packages. s| +42222|832292|19841|2|23|28157.75|0.06|0.06|N|O|1998-05-28|1998-06-04|1998-06-21|NONE|FOB|s haggle furiously a| +42222|327164|14683|3|46|54792.90|0.03|0.06|N|O|1998-06-05|1998-06-22|1998-06-20|NONE|AIR|ithely careful reque| +42222|631520|19057|4|5|7257.45|0.07|0.00|N|O|1998-04-26|1998-06-21|1998-05-18|DELIVER IN PERSON|MAIL|o beans cajole f| +42222|951414|13934|5|29|42495.73|0.09|0.05|N|O|1998-06-09|1998-05-14|1998-06-19|COLLECT COD|MAIL|al, ironic| +42223|634957|9982|1|10|18919.20|0.00|0.07|A|F|1992-03-02|1992-02-21|1992-03-18|DELIVER IN PERSON|TRUCK|t quickly.| +42223|716445|41474|2|32|46765.12|0.04|0.02|R|F|1992-03-19|1992-02-18|1992-03-20|NONE|FOB|ly express, bold requests| +42223|282691|7702|3|42|70294.56|0.09|0.07|A|F|1992-03-19|1992-03-03|1992-04-18|COLLECT COD|REG AIR|attainments ha| +42223|172676|22677|4|45|78690.15|0.04|0.02|R|F|1992-03-13|1992-03-10|1992-03-24|DELIVER IN PERSON|RAIL|kages. fluf| +42223|160311|35318|5|43|58966.33|0.01|0.06|R|F|1992-01-22|1992-02-27|1992-01-28|COLLECT COD|TRUCK|sly regular accounts. q| +42223|330449|30450|6|30|44382.90|0.09|0.04|R|F|1992-03-09|1992-03-15|1992-03-24|COLLECT COD|RAIL|lly fluffy asymptotes haggle slyly u| +42248|63969|38972|1|14|27061.44|0.09|0.00|N|O|1996-02-08|1996-01-22|1996-03-02|NONE|MAIL|eposits are| +42248|118731|43736|2|34|59490.82|0.09|0.06|N|O|1995-11-19|1996-02-04|1995-12-03|DELIVER IN PERSON|RAIL|lyly according to the fluffi| +42248|507872|45403|3|43|80833.55|0.06|0.05|N|O|1996-01-31|1996-02-03|1996-02-20|NONE|MAIL|e to kindle carefully ev| +42248|798195|23226|4|11|14224.76|0.02|0.06|N|O|1995-12-27|1995-12-23|1996-01-08|DELIVER IN PERSON|RAIL|dolites cajole carefully:| +42248|251050|26061|5|44|44045.76|0.06|0.05|N|O|1996-01-08|1996-01-06|1996-02-07|DELIVER IN PERSON|REG AIR|ut the furiously final packages. reg| +42248|385434|10449|6|11|16713.62|0.07|0.08|N|O|1996-01-19|1996-01-25|1996-02-06|NONE|AIR|ly ironic foxe| +42249|357590|20098|1|17|28008.86|0.05|0.00|A|F|1995-02-15|1995-04-15|1995-02-19|DELIVER IN PERSON|TRUCK|bold requests. furiou| +42249|9681|47182|2|36|57264.48|0.00|0.00|A|F|1995-05-14|1995-04-27|1995-05-25|DELIVER IN PERSON|MAIL|eep always. final theod| +42249|696106|8620|3|10|11020.70|0.00|0.07|A|F|1995-03-14|1995-03-15|1995-04-03|NONE|FOB|. even instructions| +42249|452865|2866|4|3|5453.52|0.01|0.04|A|F|1995-05-02|1995-04-08|1995-05-03|DELIVER IN PERSON|MAIL|ges. carefully final pinto| +42249|292039|29555|5|1|1031.02|0.07|0.04|A|F|1995-05-22|1995-04-19|1995-06-17|TAKE BACK RETURN|MAIL|symptotes around th| +42250|700349|25378|1|22|29684.82|0.07|0.00|A|F|1994-02-18|1994-03-12|1994-03-09|TAKE BACK RETURN|RAIL|ideas nag furiou| +42250|749657|24686|2|48|81917.76|0.04|0.08|R|F|1993-12-29|1994-01-30|1994-01-12|NONE|AIR|regular pinto | +42250|470608|20609|3|16|25257.28|0.08|0.03|R|F|1994-03-27|1994-03-19|1994-03-29|COLLECT COD|FOB|ly. careful| +42250|505924|43455|4|20|38598.00|0.08|0.03|R|F|1993-12-24|1994-02-09|1994-01-01|NONE|MAIL| final packages. ironic, express inst| +42251|315158|15159|1|9|10558.26|0.04|0.02|N|O|1996-10-26|1996-10-09|1996-11-13|DELIVER IN PERSON|FOB|c requests-- regular req| +42251|844351|31900|2|29|37563.99|0.09|0.00|N|O|1996-10-07|1996-10-01|1996-10-19|DELIVER IN PERSON|MAIL|ckly pinto beans; idle, bold r| +42251|1248|26249|3|44|50566.56|0.05|0.07|N|O|1996-10-09|1996-09-16|1996-10-11|COLLECT COD|REG AIR|en accounts. furiously pending foxes wake| +42251|969990|7548|4|12|24719.40|0.10|0.08|N|O|1996-11-24|1996-09-28|1996-12-23|DELIVER IN PERSON|MAIL| beans. packages sleep carefully blithely | +42251|612627|164|5|48|73900.32|0.08|0.07|N|O|1996-11-15|1996-08-27|1996-11-27|DELIVER IN PERSON|SHIP|ng to the unusual, regular deposits. final| +42252|601457|13970|1|9|12225.78|0.10|0.00|A|F|1995-03-03|1995-04-13|1995-03-31|DELIVER IN PERSON|SHIP|eve according to| +42252|681766|31767|2|7|12234.11|0.09|0.03|R|F|1995-02-07|1995-03-29|1995-02-19|NONE|SHIP| requests haggle | +42252|438775|26300|3|25|42843.75|0.08|0.06|R|F|1995-03-29|1995-04-08|1995-04-23|DELIVER IN PERSON|RAIL|al requests nag. express ideas haggle blit| +42253|266152|28658|1|25|27953.50|0.02|0.00|R|F|1994-10-28|1994-08-11|1994-11-17|NONE|REG AIR|ackages nag against the final pa| +42253|210305|22810|2|2|2430.58|0.09|0.01|A|F|1994-10-20|1994-08-01|1994-11-15|COLLECT COD|MAIL|arefully special deposit| +42253|582092|32093|3|32|37570.24|0.03|0.01|R|F|1994-10-21|1994-09-24|1994-11-09|DELIVER IN PERSON|AIR|bove the slyly pending packages.| +42253|211862|24367|4|11|19512.35|0.01|0.03|A|F|1994-09-24|1994-08-13|1994-10-04|TAKE BACK RETURN|FOB| special packages. deposits boos| +42253|757423|19939|5|40|59215.60|0.00|0.06|A|F|1994-07-21|1994-09-18|1994-08-16|NONE|REG AIR|platelets will cajole quickly furiousl| +42254|661464|11465|1|9|12828.87|0.08|0.03|N|O|1996-03-13|1996-05-02|1996-03-23|TAKE BACK RETURN|TRUCK|lly requests. slyly even deposits boos| +42254|224892|49901|2|14|25436.32|0.10|0.08|N|O|1996-03-03|1996-05-13|1996-03-05|COLLECT COD|AIR|ven asymptotes; theodolites | +42254|754935|17451|3|19|37808.10|0.09|0.02|N|O|1996-06-23|1996-04-09|1996-07-03|NONE|FOB| final courts.| +42254|179045|41549|4|24|26976.96|0.03|0.01|N|O|1996-05-13|1996-04-16|1996-05-16|TAKE BACK RETURN|AIR|nusual asymptotes sleep blithely alon| +42254|194824|44825|5|22|42214.04|0.00|0.02|N|O|1996-04-01|1996-04-15|1996-04-24|NONE|REG AIR|thinly regular packages accord| +42255|20522|20523|1|34|49045.68|0.09|0.06|N|O|1996-05-03|1996-02-11|1996-05-10|NONE|MAIL|y even, ironic dolphins. blithely express t| +42280|76130|13634|1|17|18804.21|0.04|0.07|R|F|1992-07-05|1992-05-13|1992-07-15|COLLECT COD|MAIL|structions. final instruc| +42281|165020|40027|1|38|41230.76|0.04|0.03|R|F|1995-02-12|1995-02-15|1995-02-26|TAKE BACK RETURN|SHIP|uthlessly slyly regular dependencies! ca| +42281|484156|9175|2|44|50165.72|0.05|0.03|A|F|1995-03-14|1995-01-08|1995-03-23|DELIVER IN PERSON|AIR|ng pinto beans. carefully regula| +42281|201983|39496|3|50|94248.50|0.01|0.08|R|F|1995-01-23|1995-02-27|1995-02-07|TAKE BACK RETURN|RAIL|excuses detect special, spec| +42281|723159|35674|4|23|27188.76|0.06|0.03|A|F|1994-12-07|1995-02-26|1995-01-03|NONE|TRUCK|cial pinto beans cajole | +42281|130968|18475|5|1|1998.96|0.09|0.07|A|F|1995-02-09|1995-02-20|1995-02-25|TAKE BACK RETURN|TRUCK|ly ironic deposits cajole care| +42281|172232|47239|6|48|62603.04|0.09|0.00|R|F|1994-12-29|1995-01-18|1995-01-21|TAKE BACK RETURN|SHIP|y dogged theodolites sleep. ideas cajole sl| +42281|700145|12660|7|38|43514.18|0.03|0.01|A|F|1995-03-08|1995-03-03|1995-03-31|DELIVER IN PERSON|MAIL|inal waters cajole slyly unusual depos| +42282|326951|39458|1|11|21757.34|0.07|0.07|N|O|1997-08-25|1997-08-29|1997-09-20|TAKE BACK RETURN|MAIL|nto beans use furiously| +42282|49720|24721|2|39|65119.08|0.03|0.06|N|O|1997-07-09|1997-09-19|1997-07-26|TAKE BACK RETURN|RAIL|ake doggedly. even accounts are | +42282|630368|30369|3|19|24668.27|0.01|0.07|N|O|1997-07-25|1997-08-17|1997-08-18|NONE|MAIL|posits haggle entic| +42283|937723|25278|1|11|19367.48|0.05|0.00|A|F|1993-01-29|1993-01-06|1993-02-01|NONE|RAIL| the blithel| +42283|304084|41603|2|20|21761.40|0.04|0.03|A|F|1992-10-29|1992-12-08|1992-11-03|NONE|FOB|riously bold deposits at the pendi| +42283|725808|837|3|40|73350.80|0.04|0.06|R|F|1993-02-09|1992-12-07|1993-02-17|TAKE BACK RETURN|MAIL| slyly bold ideas affix furiously accordin| +42283|649078|36615|4|37|38000.48|0.07|0.07|A|F|1992-12-23|1992-12-27|1992-12-27|DELIVER IN PERSON|MAIL| affix furious| +42283|49504|24505|5|38|55233.00|0.01|0.04|A|F|1992-12-16|1993-01-02|1992-12-26|COLLECT COD|AIR|le alongside of the blithely final| +42283|5961|30962|6|18|33605.28|0.10|0.03|A|F|1993-01-10|1992-11-30|1993-01-25|TAKE BACK RETURN|REG AIR|ole permanently. furiously regular pac| +42283|180360|5367|7|41|59054.76|0.03|0.05|R|F|1992-12-04|1992-12-17|1993-01-03|DELIVER IN PERSON|REG AIR|refully express sentiments. qu| +42284|304912|42431|1|40|76676.00|0.09|0.07|R|F|1993-08-30|1993-06-25|1993-09-17|NONE|AIR|yly ironic foxes do s| +42284|653224|15738|2|24|28252.56|0.06|0.07|R|F|1993-07-11|1993-07-05|1993-08-02|DELIVER IN PERSON|FOB|rate fluffily blithely express request| +42284|719968|44997|3|37|73553.41|0.05|0.07|A|F|1993-09-11|1993-08-02|1993-10-03|NONE|REG AIR|e of the furiously ironic requests slee| +42284|500616|25637|4|9|14549.31|0.09|0.01|A|F|1993-06-09|1993-07-29|1993-07-03|TAKE BACK RETURN|FOB|ress foxes. fluffily fluffy deposits hag| +42284|848226|35775|5|38|44618.84|0.09|0.07|R|F|1993-07-29|1993-07-08|1993-08-21|COLLECT COD|SHIP|equests are carefully special instruction| +42284|117697|17698|6|27|46296.63|0.07|0.07|A|F|1993-08-27|1993-07-08|1993-09-19|DELIVER IN PERSON|FOB|usly around the blithely unusua| +42284|124942|12449|7|29|57041.26|0.08|0.06|A|F|1993-08-19|1993-08-09|1993-09-01|DELIVER IN PERSON|SHIP|ests. regular theodolites alo| +42285|900008|9|1|50|50398.00|0.08|0.08|A|F|1992-06-28|1992-06-05|1992-07-25|DELIVER IN PERSON|MAIL|s haggle thinly about the final | +42286|226161|26162|1|41|44573.15|0.04|0.00|N|O|1998-09-13|1998-08-26|1998-10-06|COLLECT COD|AIR|, bold platelets after the b| +42286|72266|9770|2|37|45815.62|0.00|0.00|N|O|1998-09-06|1998-08-20|1998-09-26|TAKE BACK RETURN|AIR|eep above the fu| +42286|570247|45270|3|7|9220.54|0.10|0.00|N|O|1998-09-07|1998-08-06|1998-09-16|DELIVER IN PERSON|TRUCK|osits alongs| +42286|126129|1134|4|1|1155.12|0.02|0.01|N|O|1998-08-19|1998-08-29|1998-09-17|DELIVER IN PERSON|SHIP|e carefully. | +42286|837128|24677|5|48|51123.84|0.10|0.01|N|O|1998-08-28|1998-09-16|1998-09-19|DELIVER IN PERSON|TRUCK|slyly ironic som| +42286|602983|15496|6|9|16973.55|0.03|0.06|N|O|1998-10-15|1998-09-15|1998-11-06|DELIVER IN PERSON|RAIL|ar packages cajole re| +42286|329937|42444|7|47|92445.24|0.04|0.08|N|O|1998-07-24|1998-07-21|1998-08-11|COLLECT COD|AIR|es above the b| +42287|238113|618|1|32|33635.20|0.10|0.04|N|O|1997-08-28|1997-09-09|1997-09-24|NONE|REG AIR|blithely unusual theodo| +42287|950528|25567|2|25|39462.00|0.05|0.01|N|O|1997-10-08|1997-10-03|1997-10-22|DELIVER IN PERSON|RAIL|ss requests according to the even req| +42287|510925|10926|3|17|32910.30|0.04|0.01|N|O|1997-08-20|1997-09-14|1997-08-22|NONE|REG AIR|tions can use slyly. pinto beans are. ca| +42287|101321|38828|4|25|33058.00|0.08|0.00|N|O|1997-08-02|1997-10-02|1997-08-23|COLLECT COD|TRUCK|ld epitaphs boost slyly above the final r| +42312|439887|2396|1|47|85862.42|0.10|0.03|N|O|1998-04-24|1998-05-17|1998-04-26|DELIVER IN PERSON|AIR|ly even packages boost finally| +42313|684123|9150|1|1|1107.09|0.05|0.08|R|F|1995-01-07|1994-12-14|1995-01-13|NONE|AIR|s are carefully fi| +42313|40775|3276|2|43|73778.11|0.01|0.00|A|F|1994-11-12|1994-12-10|1994-11-19|DELIVER IN PERSON|RAIL|sly even, express | +42314|402607|40132|1|7|10567.06|0.06|0.06|R|F|1993-10-05|1993-10-06|1993-10-21|NONE|TRUCK|ld slyly final deposits. slyly even frays a| +42314|606570|19083|2|34|50202.36|0.02|0.05|R|F|1993-08-14|1993-11-11|1993-09-04|DELIVER IN PERSON|MAIL|t packages boost blithely. q| +42314|614033|14034|3|1|947.00|0.10|0.00|A|F|1993-09-10|1993-10-10|1993-09-30|DELIVER IN PERSON|TRUCK|olites. quickly even pac| +42314|43465|5966|4|49|69014.54|0.04|0.06|A|F|1993-10-16|1993-09-29|1993-11-12|COLLECT COD|FOB|e boldly about the ironic, regul| +42314|509746|34767|5|27|47404.44|0.09|0.08|A|F|1993-09-04|1993-10-01|1993-09-29|TAKE BACK RETURN|FOB|onic deposits. pending, even accounts| +42314|295590|20601|6|22|34882.76|0.02|0.05|A|F|1993-11-28|1993-10-29|1993-12-04|COLLECT COD|MAIL|r, regular dolphins integrate slyly regu| +42314|973263|10821|7|38|50776.36|0.01|0.00|A|F|1993-11-22|1993-11-06|1993-11-30|NONE|MAIL|p slyly against the foxes| +42315|627925|15462|1|38|70409.82|0.01|0.00|A|F|1994-03-30|1994-05-21|1994-04-08|TAKE BACK RETURN|REG AIR|y express instructions | +42315|530959|5980|2|40|79597.20|0.09|0.00|A|F|1994-04-21|1994-06-21|1994-05-02|DELIVER IN PERSON|FOB|eposits. deposits wake caref| +42315|825435|468|3|29|39451.31|0.02|0.06|R|F|1994-06-14|1994-06-01|1994-06-26|DELIVER IN PERSON|REG AIR|le furiously b| +42316|419459|19460|1|44|60650.92|0.01|0.02|N|O|1997-01-12|1997-01-08|1997-02-06|TAKE BACK RETURN|FOB|use furiously. pending, re| +42317|198274|35784|1|39|53518.53|0.10|0.08|N|O|1997-01-30|1997-02-22|1997-02-09|COLLECT COD|FOB|s. final, unusual deposits haggle blithely| +42317|387341|12356|2|28|39993.24|0.02|0.07|N|O|1996-12-20|1997-01-06|1996-12-22|TAKE BACK RETURN|RAIL|courts are bravely slyly ironic excuses. | +42317|36765|11766|3|7|11912.32|0.03|0.04|N|O|1997-03-04|1997-01-25|1997-03-07|DELIVER IN PERSON|TRUCK|ages sleep slyly final ideas. foxes ab| +42317|899774|24809|4|7|12416.11|0.02|0.06|N|O|1997-02-04|1997-01-10|1997-02-12|NONE|MAIL|ress excus| +42317|490145|27673|5|34|38594.08|0.10|0.01|N|O|1997-03-12|1997-02-27|1997-03-18|NONE|AIR|ests cajole carefully carefully iro| +42317|859884|22402|6|47|86660.48|0.07|0.06|N|O|1997-03-28|1997-02-25|1997-04-04|DELIVER IN PERSON|FOB|telets nag blithely final, regular acc| +42318|554136|29159|1|44|52364.84|0.06|0.08|A|F|1995-05-30|1995-06-27|1995-06-17|NONE|MAIL|ide of the slyly unusua| +42318|347300|9807|2|49|66017.21|0.01|0.00|N|O|1995-06-26|1995-07-29|1995-07-21|COLLECT COD|AIR|totes detect| +42318|59286|21788|3|2|2490.56|0.02|0.08|N|O|1995-07-11|1995-06-28|1995-08-06|COLLECT COD|REG AIR|r, pending pinto beans wake alongside of| +42318|407848|32865|4|14|24581.48|0.01|0.00|N|O|1995-07-03|1995-06-15|1995-07-08|NONE|FOB|sometimes furiously ir| +42318|688764|38765|5|23|40312.79|0.01|0.02|N|O|1995-07-23|1995-06-20|1995-08-17|COLLECT COD|REG AIR|poach slyly according to the furiousl| +42318|43740|43741|6|36|60614.64|0.02|0.05|N|O|1995-08-05|1995-07-02|1995-08-14|TAKE BACK RETURN|SHIP|the sheaves are furi| +42319|224134|49143|1|21|22220.52|0.01|0.05|N|O|1996-04-22|1996-04-06|1996-05-12|DELIVER IN PERSON|MAIL|sleep. fluffily final requests wake acc| +42319|12502|37503|2|25|35362.50|0.03|0.05|N|O|1996-02-26|1996-03-30|1996-03-08|TAKE BACK RETURN|MAIL| the slyly regular foxes are| +42319|113119|25622|3|48|54341.28|0.06|0.06|N|O|1996-06-10|1996-04-06|1996-07-09|TAKE BACK RETURN|SHIP|hely special accounts haggle carefully| +42319|189940|14947|4|11|22329.34|0.02|0.04|N|O|1996-05-16|1996-03-29|1996-06-10|NONE|FOB|ular dolphins: | +42319|320407|32914|5|31|44249.09|0.05|0.06|N|O|1996-03-10|1996-05-12|1996-04-07|DELIVER IN PERSON|MAIL|iously bold accou| +42344|643738|6251|1|30|50451.00|0.09|0.08|A|F|1993-11-06|1993-08-22|1993-11-20|NONE|FOB|lites sleep carefully ironic foxe| +42344|296435|21446|2|23|32922.66|0.05|0.07|A|F|1993-08-26|1993-10-05|1993-09-25|NONE|REG AIR|final, ironic deposits. slyly final p| +42344|179251|41755|3|48|63852.00|0.04|0.06|R|F|1993-08-02|1993-09-03|1993-08-18|TAKE BACK RETURN|MAIL|y express requests | +42344|654847|42387|4|36|64865.16|0.04|0.04|A|F|1993-10-11|1993-10-13|1993-10-12|NONE|SHIP|fily according t| +42344|997910|35468|5|11|22086.57|0.00|0.07|R|F|1993-08-03|1993-09-30|1993-08-08|TAKE BACK RETURN|FOB|nic deposits. carefully bold theodol| +42344|860495|35530|6|34|49485.30|0.07|0.02|A|F|1993-10-27|1993-09-11|1993-11-15|TAKE BACK RETURN|FOB| final dependencies. quickly regula| +42344|326546|26547|7|7|11007.71|0.08|0.08|R|F|1993-09-29|1993-09-19|1993-10-03|NONE|AIR| quiet accounts grow furiously! blithe| +42345|242352|4857|1|35|45301.90|0.09|0.06|A|F|1995-01-08|1995-02-17|1995-02-05|COLLECT COD|SHIP|y. ironic requests hang fur| +42345|193779|43780|2|27|50564.79|0.07|0.07|A|F|1995-02-14|1995-02-13|1995-03-13|COLLECT COD|MAIL|into beans impr| +42345|839485|14518|3|19|27064.36|0.01|0.05|A|F|1995-03-08|1995-01-27|1995-03-30|TAKE BACK RETURN|TRUCK|es are furiously final p| +42345|214735|27240|4|8|13197.76|0.03|0.06|A|F|1995-03-19|1995-02-02|1995-04-10|COLLECT COD|SHIP|quests are unusual, even accounts-- iro| +42346|452216|39744|1|2|2336.38|0.10|0.02|N|O|1998-07-20|1998-06-19|1998-07-29|DELIVER IN PERSON|FOB|urts wake a| +42346|391308|28830|2|31|43377.99|0.02|0.00|N|O|1998-08-08|1998-07-27|1998-09-06|DELIVER IN PERSON|FOB| deposits doze according to the slyl| +42346|702882|40425|3|32|60315.20|0.08|0.02|N|O|1998-06-01|1998-07-21|1998-06-13|TAKE BACK RETURN|TRUCK|ake blithely a| +42346|326005|38512|4|20|20619.80|0.10|0.01|N|O|1998-06-13|1998-07-05|1998-07-09|TAKE BACK RETURN|FOB|efully pending excuses nag daringly ironi| +42346|164953|39960|5|42|84753.90|0.01|0.02|N|O|1998-07-13|1998-06-21|1998-08-05|DELIVER IN PERSON|RAIL|ons boost | +42346|353277|40799|6|45|59861.70|0.08|0.02|N|O|1998-06-27|1998-06-17|1998-07-06|TAKE BACK RETURN|MAIL|ages. blithely ironic a| +42347|776523|14069|1|5|7997.45|0.02|0.05|N|O|1998-03-14|1998-01-29|1998-03-15|DELIVER IN PERSON|MAIL|usly at the furiously| +42347|21506|9007|2|4|5710.00|0.03|0.01|N|O|1998-02-05|1998-02-24|1998-03-02|NONE|FOB|luffily even | +42347|437495|4|3|35|50136.45|0.01|0.08|N|O|1998-03-28|1998-03-15|1998-04-04|TAKE BACK RETURN|AIR|n platelets.| +42347|973557|23558|4|9|14674.59|0.09|0.03|N|O|1998-02-18|1998-01-15|1998-02-20|NONE|RAIL|refully regular deposits. slyly regula| +42347|568086|5620|5|46|53086.76|0.06|0.00|N|O|1998-04-15|1998-01-19|1998-05-09|COLLECT COD|REG AIR| final fox| +42347|813591|13592|6|36|54163.80|0.09|0.08|N|O|1998-02-14|1998-03-15|1998-03-10|TAKE BACK RETURN|AIR|es above the blithely final requests cajole| +42347|16911|41912|7|28|51181.48|0.01|0.03|N|O|1998-03-19|1998-03-08|1998-03-23|NONE|RAIL|egular instructions wake stealthily. | +42348|208433|45946|1|34|45608.28|0.02|0.08|N|O|1997-02-15|1997-02-28|1997-02-18|NONE|FOB|about the express packages. bold, s| +42348|124643|24644|2|41|68373.24|0.07|0.06|N|O|1997-02-04|1997-02-11|1997-02-28|TAKE BACK RETURN|REG AIR|kly special Tiresias. slyly iron| +42348|858519|8520|3|17|25116.99|0.05|0.03|N|O|1997-03-07|1997-02-10|1997-03-08|COLLECT COD|RAIL| furiously special theodolites accordin| +42349|247677|35190|1|5|8123.30|0.06|0.08|N|O|1996-08-27|1996-10-07|1996-09-02|NONE|TRUCK|ests cajole slyly fluffily regular platel| +42349|692389|42390|2|5|6906.75|0.03|0.08|N|O|1996-10-11|1996-09-21|1996-10-28|NONE|AIR|ending accounts. furiously fin| +42349|978090|15648|3|5|5840.25|0.10|0.03|N|O|1996-12-11|1996-10-18|1997-01-08|COLLECT COD|TRUCK| asymptotes wake boldly at the deposits| +42349|744408|6923|4|42|60999.54|0.01|0.07|N|O|1996-08-27|1996-11-03|1996-09-06|COLLECT COD|FOB|, express dep| +42349|251547|14053|5|25|37463.25|0.07|0.00|N|O|1996-10-12|1996-11-08|1996-10-29|COLLECT COD|AIR| deposits wake after the silent, | +42349|743378|5893|6|28|39797.52|0.03|0.03|N|O|1996-11-08|1996-10-08|1996-11-23|COLLECT COD|MAIL|nic pearls. carefully ironic f| +42350|148874|48875|1|15|28843.05|0.07|0.01|N|O|1995-08-21|1995-09-14|1995-08-31|DELIVER IN PERSON|AIR|y sly instructions ar| +42350|117215|4722|2|48|59146.08|0.05|0.02|N|O|1995-09-29|1995-09-16|1995-10-24|COLLECT COD|FOB|alongside of the re| +42351|872475|10027|1|34|49212.62|0.03|0.03|N|O|1995-06-23|1995-06-06|1995-07-06|COLLECT COD|RAIL|s. unusual pinto beans around the spec| +42351|671752|46779|2|48|82738.56|0.01|0.04|A|F|1995-04-02|1995-05-03|1995-04-11|NONE|SHIP| furiously regular plate| +42351|122084|47089|3|9|9954.72|0.08|0.02|R|F|1995-03-27|1995-06-01|1995-04-25|NONE|SHIP|ests haggle furiously blithely ironic | +42351|849310|49311|4|36|45333.72|0.05|0.03|N|O|1995-07-11|1995-05-27|1995-07-24|TAKE BACK RETURN|TRUCK|l, regular dep| +42351|338166|25685|5|31|37328.65|0.04|0.01|A|F|1995-03-28|1995-06-13|1995-04-15|DELIVER IN PERSON|SHIP|ns according to the b| +42376|836551|11584|1|16|23800.16|0.10|0.07|R|F|1992-07-11|1992-07-01|1992-07-22|TAKE BACK RETURN|MAIL| fluffily between the blithely unusual excu| +42376|899068|49069|2|41|43747.82|0.10|0.07|A|F|1992-09-06|1992-08-18|1992-09-10|TAKE BACK RETURN|FOB|nic deposits. regula| +42376|626418|26419|3|21|28231.98|0.00|0.01|A|F|1992-09-03|1992-07-26|1992-09-24|NONE|RAIL|nst the quickly even requests. even| +42376|199123|11627|4|21|25664.52|0.05|0.05|R|F|1992-09-05|1992-08-19|1992-09-13|NONE|SHIP|y. special deposits w| +42376|651956|26983|5|2|3815.84|0.09|0.08|R|F|1992-07-11|1992-07-07|1992-08-05|COLLECT COD|FOB|s grow final sentiments. furiousl| +42376|413257|38274|6|27|31596.21|0.01|0.07|R|F|1992-08-18|1992-06-24|1992-08-19|TAKE BACK RETURN|TRUCK|its wake careful| +42377|273343|48354|1|14|18428.62|0.02|0.03|A|F|1992-02-03|1992-03-18|1992-02-20|COLLECT COD|FOB|ully special instructions hi| +42377|73645|36147|2|44|71220.16|0.04|0.02|R|F|1992-05-02|1992-04-07|1992-06-01|TAKE BACK RETURN|TRUCK|theodolites boost. carefully special g| +42377|745863|8378|3|26|49629.58|0.06|0.06|A|F|1992-02-09|1992-02-28|1992-02-26|COLLECT COD|MAIL|the slyly express deposits m| +42377|718210|30725|4|37|45442.66|0.01|0.06|R|F|1992-04-09|1992-04-01|1992-04-21|DELIVER IN PERSON|TRUCK| deposits. slyly express | +42377|940529|28084|5|9|14125.32|0.07|0.07|A|F|1992-04-17|1992-02-28|1992-05-11|NONE|RAIL|bold requests doze. pe| +42377|463938|1466|6|12|22822.92|0.02|0.03|A|F|1992-04-14|1992-03-27|1992-05-13|NONE|REG AIR|are. carefully silent requests ha| +42377|394241|44242|7|44|58750.12|0.02|0.02|A|F|1992-02-05|1992-03-22|1992-02-27|TAKE BACK RETURN|REG AIR|atelets affix carefully. bold deposits pr| +42378|997769|35327|1|36|67201.92|0.06|0.07|N|O|1998-10-01|1998-08-19|1998-10-27|COLLECT COD|RAIL|cording to the slyly regular accounts. req| +42378|503044|40575|2|43|45021.86|0.08|0.07|N|O|1998-10-09|1998-08-02|1998-11-05|TAKE BACK RETURN|RAIL|sleep quickly regular accou| +42378|645539|33076|3|14|20783.00|0.01|0.03|N|O|1998-07-14|1998-08-22|1998-07-22|NONE|TRUCK|ole slyly along the slyly u| +42378|562805|37828|4|37|69107.86|0.10|0.02|N|O|1998-09-02|1998-08-23|1998-09-22|DELIVER IN PERSON|FOB| quickly accor| +42379|304032|16539|1|4|4144.08|0.02|0.05|A|F|1993-05-22|1993-08-04|1993-05-27|DELIVER IN PERSON|TRUCK|ve the silent accounts. fluf| +42379|860689|35724|2|15|24744.60|0.08|0.01|A|F|1993-05-30|1993-06-29|1993-06-03|NONE|RAIL|furiously bold dependencie| +42379|593515|6027|3|47|75599.03|0.01|0.05|R|F|1993-09-05|1993-06-30|1993-09-15|TAKE BACK RETURN|FOB|fluffily regular| +42380|388392|25914|1|7|10362.66|0.08|0.08|R|F|1993-12-26|1993-12-25|1994-01-08|TAKE BACK RETURN|MAIL|lthily ironic instr| +42380|693031|30571|2|20|20480.00|0.02|0.01|R|F|1993-12-07|1993-11-30|1993-12-30|COLLECT COD|MAIL| nod. ironic accounts cajole carefully e| +42381|860346|10347|1|38|49639.40|0.05|0.06|R|F|1994-10-22|1994-11-27|1994-11-02|TAKE BACK RETURN|RAIL|final excuse| +42381|823947|23948|2|4|7483.60|0.09|0.03|R|F|1994-10-18|1994-11-12|1994-11-09|DELIVER IN PERSON|TRUCK|tions. furiously ironic| +42381|61526|11527|3|6|8925.12|0.06|0.08|R|F|1994-12-07|1994-11-02|1994-12-15|COLLECT COD|FOB| after the regular foxe| +42381|57928|7929|4|14|26402.88|0.07|0.08|A|F|1994-11-29|1994-11-04|1994-12-24|COLLECT COD|TRUCK|ar ideas wake. pending, stealthy instr| +42382|590136|15159|1|25|30652.75|0.02|0.08|R|F|1994-08-22|1994-08-22|1994-09-04|TAKE BACK RETURN|MAIL|aids. realms after the always| +42383|402354|27371|1|18|22613.94|0.01|0.07|N|O|1995-06-25|1995-04-13|1995-07-21|COLLECT COD|REG AIR|uests wake slowly pending courts| +42383|358018|33033|2|32|34432.00|0.10|0.03|R|F|1995-04-29|1995-05-03|1995-05-03|TAKE BACK RETURN|AIR| cajole about the iro| +42383|194202|31712|3|18|23331.60|0.03|0.07|A|F|1995-04-18|1995-05-15|1995-05-17|DELIVER IN PERSON|TRUCK|ithely express id| +42383|938706|26261|4|24|41871.84|0.10|0.04|A|F|1995-05-14|1995-04-20|1995-06-13|TAKE BACK RETURN|TRUCK|al ideas. slyly enticing requests bo| +42383|826981|39498|5|29|55330.26|0.08|0.03|A|F|1995-05-06|1995-06-04|1995-05-29|TAKE BACK RETURN|MAIL|onic accounts. | +42408|410969|23478|1|15|28199.10|0.09|0.06|N|O|1998-07-29|1998-06-13|1998-08-21|COLLECT COD|SHIP|l requests affix fur| +42408|140543|28050|2|9|14251.86|0.05|0.01|N|O|1998-05-17|1998-08-06|1998-06-15|COLLECT COD|MAIL|counts. even, regular d| +42408|92230|4732|3|14|17111.22|0.00|0.07|N|O|1998-08-19|1998-06-14|1998-09-04|DELIVER IN PERSON|TRUCK|slyly final requests affix f| +42408|98906|23909|4|17|32383.30|0.06|0.05|N|O|1998-09-09|1998-08-02|1998-10-01|COLLECT COD|RAIL|dolites nag quickly special theodolites. bl| +42408|302776|27789|5|47|83601.72|0.05|0.00|N|O|1998-08-09|1998-06-17|1998-08-10|DELIVER IN PERSON|AIR| ironic pinto beans | +42408|743932|6447|6|14|27662.60|0.03|0.06|N|O|1998-06-25|1998-07-26|1998-07-06|TAKE BACK RETURN|SHIP|ickly fluffily pendin| +42408|252747|27758|7|1|1699.73|0.01|0.03|N|O|1998-08-19|1998-07-01|1998-09-16|NONE|SHIP|rays sleep blithely a| +42409|914687|14688|1|16|27226.24|0.06|0.01|A|F|1992-07-04|1992-05-31|1992-07-13|COLLECT COD|RAIL|ays final excuses| +42409|132329|19836|2|28|38116.96|0.09|0.02|A|F|1992-04-09|1992-06-06|1992-04-30|COLLECT COD|MAIL| wake regular foxes. bold, thin sheav| +42409|37244|12245|3|2|2362.48|0.02|0.07|R|F|1992-06-15|1992-05-23|1992-06-23|TAKE BACK RETURN|MAIL|es are carefully. enticing ideas | +42409|952028|27067|4|18|19439.64|0.01|0.06|R|F|1992-04-14|1992-06-06|1992-05-10|NONE|MAIL| pinto beans; carefull| +42409|721930|21931|5|49|95643.10|0.09|0.07|R|F|1992-05-13|1992-06-12|1992-05-31|DELIVER IN PERSON|RAIL|even, bold instructions according| +42409|462889|37908|6|1|1851.86|0.04|0.00|A|F|1992-05-29|1992-06-12|1992-06-08|TAKE BACK RETURN|AIR|silent dependencie| +42410|519554|7085|1|38|59794.14|0.05|0.07|N|O|1997-01-11|1997-02-25|1997-01-25|NONE|RAIL|nal, special a| +42410|133664|8669|2|34|57720.44|0.07|0.03|N|O|1997-03-16|1997-03-07|1997-03-26|COLLECT COD|TRUCK| carefully across the| +42411|991533|41534|1|37|60106.13|0.04|0.08|N|O|1997-11-19|1997-12-20|1997-11-25|TAKE BACK RETURN|AIR|accounts. furiously| +42411|680434|30435|2|38|53747.20|0.05|0.00|N|O|1998-01-23|1998-01-18|1998-01-27|COLLECT COD|AIR|al foxes are furiously according to the| +42411|43901|31402|3|13|23983.70|0.10|0.00|N|O|1998-02-21|1997-12-20|1998-03-09|NONE|REG AIR|dependencies n| +42411|834696|22245|4|31|50550.15|0.05|0.04|N|O|1998-02-16|1998-01-12|1998-03-17|NONE|RAIL|unusual instructions. speci| +42411|720722|33237|5|49|85391.81|0.07|0.00|N|O|1998-02-25|1997-11-30|1998-03-19|COLLECT COD|AIR|ully bold instructions. fi| +42412|437005|24530|1|2|1883.96|0.08|0.01|N|O|1998-02-23|1998-01-02|1998-03-12|COLLECT COD|RAIL|ent theodolites are according to the bli| +42412|734613|47128|2|47|77436.26|0.07|0.04|N|O|1997-11-10|1997-12-16|1997-12-07|DELIVER IN PERSON|TRUCK|oss the blithely regular do| +42412|633903|33904|3|34|62453.58|0.10|0.04|N|O|1997-11-10|1997-12-08|1997-11-13|TAKE BACK RETURN|AIR|unts affix carefull| +42412|1231|13732|4|38|43024.74|0.08|0.07|N|O|1997-12-17|1997-12-18|1998-01-14|COLLECT COD|MAIL|s along the fluffily final deposit| +42412|684633|9660|5|2|3235.20|0.03|0.01|N|O|1998-01-07|1998-01-30|1998-01-13|TAKE BACK RETURN|TRUCK|posits after the| +42413|238316|25829|1|28|35120.40|0.00|0.01|N|O|1998-05-17|1998-08-05|1998-06-02|NONE|TRUCK|dle theodolites. ironic deposits along| +42413|375214|25215|2|49|63170.80|0.05|0.06|N|O|1998-08-29|1998-08-04|1998-09-20|NONE|SHIP|ss, silent gifts alongside of | +42413|210874|48387|3|41|73179.26|0.00|0.07|N|O|1998-05-22|1998-06-10|1998-06-07|DELIVER IN PERSON|TRUCK|iers. slyly bold deposits among t| +42414|364184|39199|1|6|7489.02|0.06|0.01|A|F|1993-09-08|1993-10-19|1993-09-14|NONE|RAIL|ests. furiously r| +42415|851964|1965|1|14|26822.88|0.06|0.01|N|O|1997-10-13|1997-10-05|1997-11-03|COLLECT COD|AIR|requests. regular, regular requests are| +42415|943422|18459|2|13|19049.94|0.08|0.07|N|O|1997-07-29|1997-09-25|1997-08-22|TAKE BACK RETURN|RAIL|gular asymptotes grow alongside| +42440|167768|5278|1|41|75266.16|0.06|0.06|N|O|1996-01-08|1996-01-03|1996-01-26|TAKE BACK RETURN|SHIP|luffily ironic accounts thrash enticingl| +42440|670363|32877|2|9|11999.97|0.02|0.08|N|O|1995-12-04|1995-12-11|1995-12-31|DELIVER IN PERSON|RAIL|packages haggle fluf| +42441|449205|24222|1|35|40396.30|0.05|0.05|N|O|1996-05-18|1996-06-29|1996-05-21|DELIVER IN PERSON|FOB|atelets dazzle blithely according to the| +42441|777528|15074|2|11|17660.39|0.07|0.02|N|O|1996-06-16|1996-07-13|1996-07-04|COLLECT COD|REG AIR|ven deposit| +42441|909324|46879|3|25|33332.00|0.10|0.01|N|O|1996-05-21|1996-06-27|1996-06-02|COLLECT COD|SHIP|sits wake quic| +42441|992128|29686|4|12|14640.96|0.03|0.06|N|O|1996-05-21|1996-07-02|1996-06-08|TAKE BACK RETURN|MAIL|at slyly ironic accounts; blithely even a| +42441|693843|43844|5|12|22041.72|0.03|0.05|N|O|1996-07-12|1996-06-02|1996-08-07|TAKE BACK RETURN|AIR|tes are carefully r| +42441|409252|21761|6|34|39481.82|0.05|0.04|N|O|1996-05-03|1996-07-12|1996-05-16|NONE|RAIL|uffily final acco| +42441|286151|36152|7|18|20468.52|0.02|0.05|N|O|1996-05-30|1996-06-24|1996-06-25|NONE|RAIL|requests doubt someti| +42442|338761|1268|1|12|21597.00|0.09|0.07|R|F|1994-06-13|1994-05-25|1994-06-29|TAKE BACK RETURN|MAIL|gular deposits. even re| +42442|551747|39281|2|47|84539.84|0.04|0.01|R|F|1994-05-11|1994-05-01|1994-05-30|TAKE BACK RETURN|REG AIR|ly regular platelets. slyly regu| +42442|199348|11852|3|4|5789.36|0.01|0.01|A|F|1994-07-09|1994-06-03|1994-07-29|TAKE BACK RETURN|TRUCK|encies. dolphins| +42443|500167|37698|1|26|30345.64|0.05|0.07|A|F|1993-10-03|1993-08-27|1993-10-06|TAKE BACK RETURN|SHIP|althy accounts. ironic pinto beans mold | +42443|293494|31010|2|37|55036.76|0.02|0.00|R|F|1993-10-06|1993-09-02|1993-10-26|TAKE BACK RETURN|SHIP|ly even requests. furio| +42443|743105|5620|3|38|43626.66|0.01|0.07|R|F|1993-07-24|1993-08-09|1993-07-30|TAKE BACK RETURN|RAIL|. notornis unwind regular deposit| +42443|352270|39792|4|16|21156.16|0.01|0.05|R|F|1993-08-10|1993-07-14|1993-08-15|TAKE BACK RETURN|REG AIR|packages. slyly even accounts | +42443|596863|21886|5|14|27437.76|0.06|0.02|A|F|1993-09-07|1993-07-21|1993-09-08|NONE|TRUCK|unts are slyly even, iro| +42443|474735|49754|6|16|27355.36|0.03|0.07|A|F|1993-07-05|1993-08-04|1993-07-12|TAKE BACK RETURN|FOB|ons: fluffily ironic package| +42443|868734|18735|7|13|22134.97|0.10|0.05|R|F|1993-06-11|1993-08-24|1993-06-15|COLLECT COD|REG AIR| alongside o| +42444|799522|24553|1|2|3242.98|0.08|0.02|A|F|1992-02-13|1992-03-30|1992-03-01|COLLECT COD|AIR|ins. closely i| +42444|559419|21931|2|45|66527.55|0.05|0.02|R|F|1992-03-12|1992-02-17|1992-03-29|TAKE BACK RETURN|FOB|counts nag qui| +42445|944413|6932|1|6|8744.22|0.02|0.02|A|F|1993-12-19|1993-11-27|1994-01-16|DELIVER IN PERSON|AIR| packages after | +42445|748513|23542|2|32|49967.36|0.10|0.02|R|F|1993-10-15|1993-10-30|1993-11-04|DELIVER IN PERSON|REG AIR|fter the carefully exp| +42445|243958|31471|3|49|93195.06|0.01|0.03|A|F|1994-01-24|1993-12-03|1994-02-07|COLLECT COD|AIR| pending excuses. slyly regular plat| +42445|198682|36192|4|14|24929.52|0.09|0.03|A|F|1993-10-07|1993-11-02|1993-10-25|NONE|REG AIR|kly slyly express requests. blith| +42445|240548|40549|5|50|74426.50|0.06|0.03|A|F|1993-11-26|1993-12-27|1993-12-06|TAKE BACK RETURN|REG AIR|t epitaphs. final, | +42446|230065|30066|1|32|31841.60|0.07|0.04|R|F|1994-11-04|1994-10-24|1994-11-28|NONE|SHIP|ckly final foxes around the ironic | +42446|687928|25468|2|24|45981.36|0.10|0.06|R|F|1994-10-04|1994-11-22|1994-10-20|DELIVER IN PERSON|SHIP|al foxes sleep furiously slyl| +42446|994554|44555|3|19|31321.69|0.09|0.06|R|F|1994-11-06|1994-10-31|1994-11-27|COLLECT COD|RAIL|old courts. sile| +42446|454591|17101|4|8|12364.56|0.00|0.02|R|F|1994-10-26|1994-10-30|1994-11-18|NONE|FOB| final deposits cajole carefully. silen| +42446|309814|34827|5|32|58361.60|0.04|0.05|R|F|1994-12-21|1994-11-22|1995-01-07|DELIVER IN PERSON|RAIL|ges boost slyly. blithely special accou| +42447|583930|21464|1|30|60417.30|0.04|0.00|R|F|1992-12-19|1992-12-18|1993-01-10|DELIVER IN PERSON|TRUCK|nal deposits wake carefully. blith| +42472|283352|8363|1|17|22700.78|0.09|0.08|N|O|1996-02-18|1996-03-11|1996-03-09|TAKE BACK RETURN|REG AIR|ously even accounts| +42472|291153|28669|2|16|18306.24|0.04|0.03|N|O|1996-03-26|1996-03-12|1996-04-10|DELIVER IN PERSON|FOB| blithely. furiously express foxes ca| +42473|112585|37590|1|10|15975.80|0.06|0.08|N|O|1996-03-15|1996-02-18|1996-04-08|COLLECT COD|RAIL|rash. care| +42473|206161|31170|2|48|51223.20|0.00|0.08|N|O|1995-12-22|1996-02-22|1996-01-20|TAKE BACK RETURN|TRUCK|ccording to the accounts cajole fluffily in| +42474|322923|35430|1|6|11675.46|0.02|0.03|N|O|1996-07-26|1996-06-16|1996-08-12|NONE|AIR|ickly regular pinto beans are blithely | +42475|997820|10340|1|30|57533.40|0.10|0.04|N|O|1995-07-26|1995-08-18|1995-08-08|NONE|REG AIR| about the even packa| +42475|352330|14838|2|39|53910.48|0.01|0.07|N|O|1995-10-07|1995-10-12|1995-10-15|DELIVER IN PERSON|MAIL|deas haggle furiously fluffily bold request| +42475|600157|25182|3|18|19028.16|0.05|0.07|N|O|1995-10-24|1995-10-02|1995-11-06|NONE|AIR| slyly alongside of th| +42475|829949|4982|4|44|82671.60|0.08|0.08|N|O|1995-11-07|1995-09-05|1995-11-29|COLLECT COD|MAIL|furiously special exc| +42475|937407|37408|5|14|20221.04|0.03|0.01|N|O|1995-09-02|1995-08-22|1995-09-06|COLLECT COD|TRUCK|inal forges use furiously al| +42475|994534|7054|6|9|14656.41|0.06|0.04|N|O|1995-08-03|1995-09-10|1995-08-29|NONE|FOB|ad of the carefully u| +42476|397605|22620|1|39|66401.01|0.09|0.05|A|F|1995-02-05|1995-03-27|1995-02-24|DELIVER IN PERSON|SHIP|ely ironic | +42476|544305|44306|2|21|28334.88|0.07|0.01|R|F|1995-04-19|1995-03-29|1995-04-25|COLLECT COD|RAIL|ronic requests cajole slyly blithely expres| +42476|122290|22291|3|2|2624.58|0.09|0.05|R|F|1995-03-01|1995-03-12|1995-03-08|NONE|REG AIR| special, i| +42477|15538|15539|1|48|69769.44|0.01|0.01|N|O|1996-02-18|1996-02-08|1996-02-22|NONE|REG AIR|even theodol| +42477|135819|35820|2|47|87176.07|0.00|0.03|N|O|1996-01-30|1995-12-28|1996-02-12|DELIVER IN PERSON|SHIP|bold theodolites cajole blithely| +42477|701391|26420|3|20|27847.20|0.01|0.00|N|O|1996-01-28|1996-02-10|1996-02-06|COLLECT COD|MAIL|eposits nag blithely about the| +42477|276764|26765|4|2|3481.50|0.04|0.05|N|O|1995-12-18|1995-12-23|1996-01-12|NONE|RAIL|ular accounts. pe| +42478|768350|5896|1|2|2836.64|0.09|0.04|N|O|1996-05-23|1996-04-16|1996-06-02|DELIVER IN PERSON|SHIP|ely special pains | +42478|651601|39141|2|31|48129.67|0.04|0.04|N|O|1996-05-08|1996-05-02|1996-05-28|COLLECT COD|FOB|ckly final accounts. fluffily unusual pint| +42478|450902|25921|3|45|83379.60|0.01|0.00|N|O|1996-04-26|1996-03-31|1996-05-01|COLLECT COD|FOB|unts. regular, brave pinto beans nag caref| +42478|304589|4590|4|23|36652.11|0.03|0.03|N|O|1996-06-17|1996-05-04|1996-07-14|DELIVER IN PERSON|TRUCK|lites: ironic, furious deposits above | +42479|260248|10249|1|12|14498.76|0.08|0.05|N|O|1997-06-05|1997-06-30|1997-06-22|DELIVER IN PERSON|FOB|sual asymptotes. i| +42504|64142|14143|1|44|48670.16|0.10|0.07|N|O|1997-04-15|1997-05-14|1997-05-06|NONE|AIR|he slyly even instructions haggle c| +42504|23300|48301|2|41|50155.30|0.04|0.02|N|O|1997-05-20|1997-07-08|1997-06-11|DELIVER IN PERSON|MAIL|carefully u| +42504|601035|38572|3|29|27144.00|0.05|0.02|N|O|1997-04-17|1997-05-16|1997-04-28|NONE|FOB|he carefully bold requests. requ| +42505|837827|12860|1|17|30001.26|0.10|0.07|N|O|1995-09-29|1995-10-18|1995-10-15|TAKE BACK RETURN|TRUCK|e: blithely even accounts are fur| +42505|356593|31608|2|20|32991.60|0.00|0.06|N|O|1995-11-25|1995-10-29|1995-11-27|COLLECT COD|REG AIR|ests. pending pinto beans use slyly| +42505|254019|29030|3|45|43785.00|0.10|0.07|N|O|1995-09-14|1995-10-05|1995-10-04|TAKE BACK RETURN|SHIP|carefully ruthless ac| +42505|288564|38565|4|18|27945.90|0.03|0.07|N|O|1995-08-27|1995-09-30|1995-09-24|TAKE BACK RETURN|RAIL|ts. evenly special request| +42505|884050|46568|5|24|24816.24|0.08|0.00|N|O|1995-11-19|1995-09-14|1995-12-01|DELIVER IN PERSON|REG AIR|regular dependencies cajole fluffily | +42506|309440|34453|1|34|49280.62|0.09|0.00|N|O|1998-10-07|1998-08-22|1998-10-26|COLLECT COD|TRUCK| quickly final packages sleep furiously thi| +42506|752424|39970|2|9|13287.51|0.00|0.08|N|O|1998-10-04|1998-08-15|1998-10-28|TAKE BACK RETURN|FOB|lly bold requests. ideas cajo| +42506|984560|34561|3|2|3289.04|0.02|0.06|N|O|1998-06-30|1998-07-24|1998-07-05|COLLECT COD|FOB|final deposits. fl| +42507|214914|14915|1|37|67669.30|0.06|0.05|N|O|1998-04-14|1998-04-24|1998-04-19|NONE|TRUCK| according to the pending theodolites.| +42507|53999|29002|2|31|60542.69|0.07|0.05|N|O|1998-03-01|1998-04-04|1998-03-05|NONE|RAIL|ress accounts boost cl| +42507|546805|21826|3|49|90737.22|0.09|0.00|N|O|1998-04-26|1998-03-24|1998-05-18|COLLECT COD|SHIP|brave dolphins. sl| +42508|930259|17814|1|41|52857.61|0.09|0.08|R|F|1994-01-02|1994-03-04|1994-01-28|TAKE BACK RETURN|AIR|usly above the pending, special the| +42508|859077|21595|2|10|10360.30|0.09|0.08|R|F|1994-01-24|1994-02-27|1994-01-31|COLLECT COD|TRUCK|ly express packa| +42508|499329|11839|3|2|2656.60|0.03|0.04|R|F|1994-03-15|1994-02-17|1994-04-06|NONE|REG AIR|l theodolites sleep fluffily| +42508|208643|33652|4|43|66720.09|0.03|0.07|A|F|1994-04-07|1994-02-23|1994-04-20|COLLECT COD|FOB|ly special packages sle| +42508|658068|8069|5|21|21546.63|0.10|0.08|A|F|1994-04-02|1994-03-03|1994-04-25|TAKE BACK RETURN|REG AIR|y silent attainments af| +42508|144497|7000|6|32|49327.68|0.09|0.00|A|F|1994-01-16|1994-02-13|1994-02-10|DELIVER IN PERSON|SHIP|haggle: reg| +42509|391651|16666|1|19|33110.16|0.02|0.01|N|O|1995-11-28|1996-01-31|1995-12-27|DELIVER IN PERSON|FOB|ily ironic accounts. furiously unu| +42509|465711|3239|2|4|6706.76|0.08|0.02|N|O|1996-01-16|1995-12-20|1996-01-31|NONE|FOB| sly accounts. final dependenci| +42510|618986|18987|1|6|11429.70|0.02|0.01|A|F|1995-04-19|1995-03-14|1995-04-30|NONE|TRUCK|y. regular, even requests n| +42510|288790|38791|2|5|8893.90|0.02|0.05|R|F|1995-02-23|1995-04-13|1995-02-28|NONE|MAIL|ests use blithely along the bold de| +42510|692549|17576|3|11|16956.61|0.09|0.02|N|F|1995-05-28|1995-04-03|1995-06-24|DELIVER IN PERSON|FOB|lithely express instructions. blithe| +42510|661619|36646|4|30|47417.40|0.07|0.02|N|F|1995-06-01|1995-04-26|1995-06-20|NONE|SHIP|fluffily behind the even requests. blit| +42510|815820|28337|5|41|71166.98|0.03|0.03|A|F|1995-04-20|1995-03-18|1995-04-30|DELIVER IN PERSON|TRUCK|sual packages. r| +42511|779648|29649|1|47|81197.67|0.09|0.03|R|F|1992-11-30|1992-12-13|1992-12-17|NONE|RAIL|hely. pinto beans boost blithely. ideas mi| +42511|531560|44071|2|11|17506.94|0.01|0.07|A|F|1992-12-29|1992-12-01|1993-01-15|TAKE BACK RETURN|RAIL|y ironic courts sleep according to | +42511|916356|3911|3|49|67243.19|0.04|0.01|R|F|1993-03-01|1992-12-14|1993-03-04|DELIVER IN PERSON|TRUCK|as haggle.| +42511|187765|37766|4|40|74110.40|0.05|0.01|R|F|1992-12-28|1993-01-10|1992-12-31|NONE|REG AIR|ess, regular pack| +42511|755610|30641|5|42|69954.36|0.02|0.04|R|F|1993-02-12|1992-12-29|1993-02-18|TAKE BACK RETURN|SHIP|ntly final t| +42511|529871|29872|6|34|64628.90|0.01|0.02|A|F|1992-12-27|1992-12-06|1993-01-16|COLLECT COD|RAIL|ages are blithely abo| +42536|227392|39897|1|23|30345.74|0.01|0.07|N|O|1995-07-29|1995-07-21|1995-08-12|TAKE BACK RETURN|TRUCK|equests wake slyly across| +42536|763246|792|2|25|32730.25|0.02|0.02|N|O|1995-08-06|1995-08-15|1995-09-01|COLLECT COD|REG AIR|tegrate blithely even packages. c| +42536|860726|35761|3|12|20240.16|0.09|0.05|N|O|1995-09-09|1995-07-03|1995-09-30|COLLECT COD|TRUCK|thy pinto be| +42536|207892|7893|4|30|53996.40|0.09|0.01|N|F|1995-06-12|1995-08-18|1995-06-28|NONE|REG AIR|-ray. regula| +42536|40701|28202|5|44|72234.80|0.09|0.01|N|O|1995-09-11|1995-07-10|1995-09-21|DELIVER IN PERSON|FOB|egular deposits boost carefully i| +42537|536319|11340|1|23|31171.67|0.00|0.01|R|F|1994-07-13|1994-08-15|1994-07-21|NONE|FOB|boost slyly carefully regular pinto beans. | +42537|903478|41033|2|36|53331.48|0.07|0.08|A|F|1994-09-09|1994-08-27|1994-10-02|TAKE BACK RETURN|RAIL|express request| +42537|742448|29991|3|22|32789.02|0.00|0.00|R|F|1994-08-15|1994-08-13|1994-08-19|COLLECT COD|REG AIR|r tithes. pending asympto| +42537|314350|26857|4|26|35472.84|0.02|0.00|A|F|1994-07-24|1994-08-13|1994-08-23|DELIVER IN PERSON|FOB|lithely dari| +42537|277356|27357|5|41|54666.94|0.03|0.06|A|F|1994-09-27|1994-08-14|1994-10-03|NONE|FOB|s cajole across the f| +42538|526238|26239|1|45|56889.45|0.06|0.02|A|F|1993-05-05|1993-04-13|1993-05-07|TAKE BACK RETURN|FOB|packages boost about the c| +42538|470981|33491|2|34|66366.64|0.03|0.02|R|F|1993-05-25|1993-04-21|1993-06-22|NONE|SHIP| carefully regular deposits sleep even pla| +42538|769195|31711|3|35|44245.60|0.07|0.08|R|F|1993-04-28|1993-05-07|1993-05-02|DELIVER IN PERSON|MAIL|nal packages detect at the regular | +42538|853339|40891|4|24|31014.96|0.03|0.03|R|F|1993-04-27|1993-03-31|1993-05-13|TAKE BACK RETURN|RAIL|ely even excuses according | +42539|64067|14068|1|1|1031.06|0.09|0.01|R|F|1994-12-12|1995-01-10|1994-12-28|TAKE BACK RETURN|AIR| dependencies are agains| +42539|772623|47654|2|28|47476.52|0.10|0.03|R|F|1995-02-01|1994-12-02|1995-02-18|TAKE BACK RETURN|FOB|ic foxes according to the car| +42539|467876|17877|3|26|47940.10|0.03|0.05|A|F|1994-12-06|1994-12-06|1995-01-04|TAKE BACK RETURN|REG AIR|ong the express dependencies wake | +42539|581697|19231|4|35|62253.45|0.08|0.02|A|F|1994-11-28|1995-01-13|1994-12-24|COLLECT COD|FOB|ntegrate fluffily about | +42539|572878|35390|5|12|23410.20|0.05|0.08|A|F|1994-12-20|1994-12-29|1995-01-13|NONE|TRUCK|yly unusual accounts. car| +42539|356346|43868|6|11|15425.63|0.02|0.08|R|F|1995-01-28|1995-01-11|1995-02-05|COLLECT COD|FOB|ind carefull| +42540|967022|4580|1|38|41381.24|0.02|0.04|A|F|1994-06-12|1994-04-03|1994-07-06|TAKE BACK RETURN|AIR|n packages. quickly regular accounts nod a| +42540|738244|759|2|15|19233.15|0.00|0.05|R|F|1994-04-02|1994-04-11|1994-04-14|COLLECT COD|REG AIR|inal dependencies boost silent accou| +42540|650477|25504|3|22|31403.68|0.07|0.02|A|F|1994-06-08|1994-04-17|1994-06-13|TAKE BACK RETURN|FOB|he ironic deposits. regular requests cajo| +42540|559714|22226|4|12|21284.28|0.01|0.07|R|F|1994-04-29|1994-05-03|1994-05-24|NONE|AIR| quickly special packages. eve| +42540|101561|39068|5|13|20313.28|0.00|0.05|A|F|1994-04-25|1994-05-10|1994-04-30|TAKE BACK RETURN|SHIP|ic platelets are final, unusual foxes. b| +42541|582462|44974|1|44|67955.36|0.01|0.05|R|F|1993-08-12|1993-09-09|1993-08-14|NONE|MAIL|he quickly ironic deposits are| +42541|422759|47776|2|22|36998.06|0.00|0.05|R|F|1993-11-16|1993-09-29|1993-12-16|NONE|FOB|sts detect across the furi| +42541|304565|4566|3|47|73768.85|0.09|0.00|A|F|1993-09-09|1993-10-27|1993-09-24|NONE|AIR|s would wake blithely; ruthles| +42542|703738|41281|1|12|20900.40|0.02|0.02|N|O|1996-12-14|1996-11-30|1996-12-30|COLLECT COD|RAIL|ng the close | +42543|718327|5870|1|37|49775.73|0.03|0.00|A|F|1993-11-24|1993-11-10|1993-12-10|DELIVER IN PERSON|FOB|ly bold packages cajole fluffily acc| +42543|913854|1409|2|39|72844.59|0.00|0.04|R|F|1993-10-09|1993-12-24|1993-10-12|COLLECT COD|RAIL|s boost quickly across th| +42543|138765|26272|3|36|64935.36|0.05|0.07|R|F|1994-01-17|1993-11-14|1994-01-25|DELIVER IN PERSON|RAIL| requests boost carefully alongside of t| +42543|208968|8969|4|28|52554.60|0.10|0.08|A|F|1994-01-05|1993-11-17|1994-01-17|NONE|SHIP|boost. carefull| +42568|298248|48249|1|45|56080.35|0.02|0.03|R|F|1994-11-26|1994-12-15|1994-12-12|DELIVER IN PERSON|FOB|ts boost. regular| +42568|651673|39213|2|38|61736.32|0.01|0.03|A|F|1994-12-08|1994-12-06|1995-01-02|COLLECT COD|RAIL|blithely. ironic i| +42569|135598|35599|1|4|6534.36|0.00|0.01|A|F|1992-07-03|1992-05-26|1992-07-30|DELIVER IN PERSON|REG AIR| accounts along the carefully regular p| +42569|988765|13804|2|7|12976.04|0.10|0.03|R|F|1992-05-21|1992-05-30|1992-06-01|DELIVER IN PERSON|RAIL|as. blithely pending realms integrate| +42569|170051|20052|3|40|44842.00|0.02|0.02|A|F|1992-07-17|1992-06-20|1992-08-14|TAKE BACK RETURN|MAIL|usly about the doggedly special de| +42569|38817|13818|4|2|3511.62|0.06|0.08|R|F|1992-05-23|1992-05-27|1992-05-27|COLLECT COD|FOB| the quickl| +42570|908829|33866|1|49|90051.22|0.06|0.03|N|O|1998-05-24|1998-04-23|1998-06-07|NONE|REG AIR| furiously above the silent foxes; a| +42570|679702|4729|2|46|77356.82|0.02|0.04|N|O|1998-05-16|1998-05-07|1998-05-29|TAKE BACK RETURN|AIR|uthless plat| +42570|751367|38913|3|42|59569.86|0.08|0.08|N|O|1998-04-27|1998-04-01|1998-05-26|COLLECT COD|FOB| regular instructions. final instruc| +42571|877244|2279|1|49|59838.80|0.02|0.07|A|F|1994-12-29|1995-01-02|1995-01-22|NONE|SHIP|ly unusual | +42571|825888|25889|2|13|23579.92|0.00|0.07|A|F|1995-01-14|1994-12-22|1995-01-23|TAKE BACK RETURN|REG AIR|lithely regular packages s| +42571|693166|5680|3|17|19705.21|0.05|0.00|R|F|1995-02-07|1994-12-27|1995-03-07|COLLECT COD|FOB|ngside of the express, | +42572|531653|19184|1|47|79177.61|0.06|0.03|N|O|1998-02-15|1998-02-13|1998-02-23|DELIVER IN PERSON|TRUCK|inst the slyly ironic theodolites. pinto| +42572|482381|19909|2|24|32720.64|0.04|0.01|N|O|1998-02-05|1998-02-02|1998-02-17|COLLECT COD|FOB|ly final acc| +42572|373021|23022|3|24|26256.24|0.02|0.03|N|O|1998-04-21|1998-02-27|1998-04-25|NONE|RAIL|g the furiously ironic theodolites hagg| +42572|358160|45682|4|19|23144.85|0.02|0.03|N|O|1998-02-09|1998-02-17|1998-02-20|NONE|RAIL|above the furiously | +42572|586668|49180|5|32|56148.48|0.01|0.05|N|O|1998-03-28|1998-03-16|1998-04-19|DELIVER IN PERSON|SHIP|hely bold pinto beans boost | +42572|119777|32280|6|24|43122.48|0.07|0.08|N|O|1998-02-27|1998-03-02|1998-03-11|TAKE BACK RETURN|RAIL|out the ca| +42572|84739|47241|7|46|79291.58|0.06|0.08|N|O|1998-04-23|1998-02-20|1998-05-06|DELIVER IN PERSON|REG AIR|even instruction| +42573|202772|27781|1|45|75364.20|0.06|0.05|R|F|1993-03-21|1993-04-10|1993-04-13|COLLECT COD|RAIL|ains above the ironically bold warhorses ar| +42573|975112|37632|2|30|35612.10|0.02|0.02|R|F|1993-07-04|1993-05-05|1993-07-17|COLLECT COD|AIR|ual packages slee| +42574|644506|7019|1|13|18856.11|0.04|0.06|R|F|1995-05-03|1995-05-20|1995-05-22|DELIVER IN PERSON|REG AIR|ing ideas among | +42574|201774|26783|2|15|25136.40|0.03|0.01|N|O|1995-07-13|1995-05-12|1995-08-12|NONE|AIR|deposits. carefully| +42575|744526|7041|1|23|36121.27|0.08|0.04|N|O|1997-09-04|1997-07-10|1997-09-16|COLLECT COD|REG AIR|pendencies use about the furiously | +42575|241848|29361|2|17|30427.11|0.07|0.07|N|O|1997-08-05|1997-08-10|1997-08-13|NONE|RAIL|carefully? deposits wake acros| +42575|723668|23669|3|2|3383.26|0.06|0.00|N|O|1997-07-26|1997-07-21|1997-08-12|NONE|TRUCK|odolites affix alw| +42575|673654|48681|4|6|9765.72|0.00|0.01|N|O|1997-07-25|1997-08-12|1997-08-01|DELIVER IN PERSON|MAIL|ickly bold deposits? blithel| +42600|341303|16316|1|1|1344.29|0.04|0.05|A|F|1994-12-28|1995-02-01|1995-01-05|COLLECT COD|RAIL|kages lose carefully: sly requests | +42600|275184|195|2|25|28979.25|0.08|0.01|R|F|1994-12-12|1994-12-27|1995-01-04|NONE|MAIL|cing deposi| +42600|14883|39884|3|11|19776.68|0.10|0.01|A|F|1995-01-19|1995-01-12|1995-01-23|NONE|AIR|as; express, final deposits maintain fu| +42600|129776|29777|4|22|39726.94|0.06|0.06|R|F|1995-01-23|1995-01-25|1995-02-09|COLLECT COD|AIR| ideas nag about the busily unusual | +42600|135295|10300|5|39|51881.31|0.10|0.00|A|F|1994-11-22|1995-01-13|1994-12-05|COLLECT COD|TRUCK|luffily even asymptotes. regular | +42601|779022|16568|1|35|38534.65|0.03|0.06|R|F|1994-08-06|1994-09-05|1994-08-21|TAKE BACK RETURN|TRUCK| thrash final packages. carefully expre| +42601|6189|6190|2|31|33950.58|0.05|0.04|A|F|1994-10-13|1994-08-22|1994-10-28|COLLECT COD|RAIL|icingly express accounts wake carefully e| +42601|6594|44095|3|7|10504.13|0.01|0.04|R|F|1994-07-21|1994-08-13|1994-08-11|COLLECT COD|TRUCK| regular instructions. car| +42602|804829|42378|1|32|55480.96|0.00|0.04|A|F|1995-02-04|1995-02-04|1995-02-10|DELIVER IN PERSON|AIR|nag slyly regular deposits. slyly eve| +42602|760118|22634|2|30|35342.40|0.06|0.04|A|F|1995-01-15|1995-01-02|1995-01-31|COLLECT COD|TRUCK|s haggle furio| +42602|296372|21383|3|45|61576.20|0.09|0.05|R|F|1994-12-24|1995-01-17|1994-12-29|NONE|AIR|sts. carefully regular deposits unwin| +42602|119858|7365|4|28|52579.80|0.05|0.07|A|F|1995-01-15|1995-02-19|1995-01-29|COLLECT COD|RAIL|l multipliers boost re| +42602|436768|24293|5|40|68189.60|0.05|0.02|R|F|1994-12-21|1994-12-30|1994-12-26|DELIVER IN PERSON|TRUCK|inal, pending packages haggl| +42603|887755|12790|1|8|13941.68|0.09|0.02|N|O|1996-11-22|1996-10-11|1996-12-03|TAKE BACK RETURN|SHIP|nic, express accounts| +42603|488972|13991|2|9|17648.55|0.02|0.02|N|O|1996-09-08|1996-09-30|1996-09-25|COLLECT COD|RAIL| around the quickly bold i| +42603|140439|2942|3|30|44382.90|0.01|0.01|N|O|1996-09-04|1996-10-26|1996-09-06|TAKE BACK RETURN|REG AIR|zzle quickly. regular, ironic pinto bean| +42603|353680|16188|4|29|50276.43|0.03|0.00|N|O|1996-11-23|1996-09-22|1996-12-22|NONE|MAIL|ions. special deposits sleep blithely d| +42603|294648|7154|5|5|8213.15|0.10|0.02|N|O|1996-12-05|1996-11-03|1996-12-23|TAKE BACK RETURN|TRUCK|te carefully ironic accounts. careful| +42603|136503|49006|6|46|70817.00|0.03|0.03|N|O|1996-11-13|1996-10-03|1996-11-23|NONE|RAIL|areful deposits. carefully sly pin| +42604|338629|13642|1|25|41690.25|0.09|0.08|A|F|1994-11-23|1994-12-01|1994-12-01|NONE|FOB| furiously. s| +42604|321036|46049|2|28|29596.56|0.06|0.00|R|F|1994-09-14|1994-11-10|1994-10-03|DELIVER IN PERSON|TRUCK|lly. doggedly care| +42604|641283|3796|3|4|4897.00|0.09|0.03|A|F|1994-09-15|1994-10-26|1994-10-10|COLLECT COD|AIR|slyly unusual ideas integra| +42604|29039|4040|4|36|34849.08|0.10|0.03|R|F|1994-09-23|1994-11-20|1994-10-04|TAKE BACK RETURN|RAIL|ourts wake slyly.| +42604|48435|48436|5|11|15217.73|0.07|0.04|A|F|1994-09-10|1994-10-23|1994-10-05|NONE|TRUCK|te blithely along the even pac| +42605|608430|20943|1|11|14722.40|0.05|0.08|N|O|1997-01-28|1996-11-14|1997-02-06|DELIVER IN PERSON|MAIL|ecial pearls. carefully ironic pac| +42605|877568|27569|2|7|10818.64|0.01|0.01|N|O|1996-10-29|1996-11-13|1996-11-03|COLLECT COD|AIR|ording to the bold pinto bean| +42605|285031|10042|3|23|23368.46|0.04|0.05|N|O|1996-12-23|1996-11-22|1997-01-21|NONE|AIR|ions wake slyly. re| +42605|509605|22116|4|38|61354.04|0.09|0.05|N|O|1996-12-02|1996-11-29|1996-12-08|COLLECT COD|SHIP|ing to the carefully regular packages. care| +42605|917227|4782|5|49|60964.82|0.08|0.03|N|O|1996-12-06|1996-12-20|1997-01-02|DELIVER IN PERSON|REG AIR|about the fluffily even packages use caref| +42605|823287|10836|6|1|1210.24|0.05|0.02|N|O|1996-12-02|1996-12-03|1996-12-12|COLLECT COD|TRUCK| fluffily agai| +42606|883719|8754|1|19|32350.73|0.07|0.04|N|O|1996-03-31|1996-02-23|1996-04-23|NONE|AIR|sily? blith| +42606|656890|44430|2|44|81261.84|0.01|0.08|N|O|1996-03-30|1996-03-13|1996-04-19|COLLECT COD|AIR|ackages cajole | +42606|346068|46069|3|49|54588.45|0.03|0.03|N|O|1996-03-13|1996-02-14|1996-03-26|COLLECT COD|RAIL|xcuses use furiously bl| +42606|353577|41099|4|26|42394.56|0.08|0.00|N|O|1996-03-28|1996-03-12|1996-04-21|TAKE BACK RETURN|AIR|are slyly alongsi| +42606|563251|38274|5|34|44683.82|0.04|0.00|N|O|1996-03-14|1996-02-17|1996-03-22|TAKE BACK RETURN|MAIL| foxes. ironic request| +42606|557784|32807|6|1|1841.76|0.04|0.02|N|O|1996-02-21|1996-01-24|1996-02-27|COLLECT COD|FOB|blithely slyly bold foxes. blithely final | +42607|4544|42045|1|45|65184.30|0.01|0.08|N|O|1996-06-15|1996-08-10|1996-06-22|NONE|SHIP|kages integrate | +42632|977835|27836|1|46|87988.34|0.05|0.00|A|F|1995-04-25|1995-05-24|1995-05-15|NONE|SHIP|ly final pinto bean| +42632|471241|33751|2|1|1212.22|0.00|0.07|R|F|1995-04-24|1995-04-10|1995-05-21|COLLECT COD|MAIL| careful accounts nag fluffily. | +42632|145372|20377|3|26|36851.62|0.01|0.04|N|O|1995-06-21|1995-04-17|1995-07-18|DELIVER IN PERSON|AIR|s. blithely exp| +42632|259881|34892|4|38|69953.06|0.06|0.08|A|F|1995-04-06|1995-05-11|1995-04-17|COLLECT COD|TRUCK|ular deposits. furiously unusual requ| +42632|813552|1101|5|26|38103.26|0.00|0.02|A|F|1995-05-06|1995-06-01|1995-06-01|NONE|TRUCK|ffily with the blithely ev| +42632|368316|18317|6|32|44297.60|0.09|0.05|R|F|1995-04-21|1995-04-05|1995-05-01|DELIVER IN PERSON|SHIP|packages. orbits nag acco| +42633|844776|19809|1|12|20648.76|0.02|0.08|R|F|1993-01-10|1993-02-20|1993-01-26|DELIVER IN PERSON|AIR|oost. blithely fi| +42633|146136|8639|2|5|5910.65|0.08|0.01|A|F|1992-12-21|1993-02-18|1993-01-18|NONE|REG AIR|ans across the always stealthy dolphins are| +42633|105231|17734|3|7|8653.61|0.08|0.01|R|F|1992-12-05|1993-02-09|1992-12-31|DELIVER IN PERSON|TRUCK|ove the slyly silent ide| +42633|601392|1393|4|9|11640.24|0.09|0.06|R|F|1993-02-02|1993-02-03|1993-02-19|DELIVER IN PERSON|SHIP|ctions. thin requests alongsi| +42633|583187|33188|5|34|43185.44|0.06|0.05|R|F|1993-02-02|1993-02-11|1993-02-07|COLLECT COD|SHIP| platelets boost. stea| +42633|610991|10992|6|4|7607.84|0.06|0.05|A|F|1993-03-12|1993-01-30|1993-04-03|NONE|TRUCK|oxes after the carefully even foxes nag s| +42633|916636|4191|7|22|36356.98|0.09|0.00|R|F|1992-12-17|1993-01-14|1993-01-07|COLLECT COD|AIR|ng the quickly ironic instructions. | +42634|888024|542|1|39|39467.22|0.08|0.01|N|O|1996-12-19|1996-12-22|1997-01-10|TAKE BACK RETURN|RAIL| carefully bold packages affix | +42634|10422|47923|2|12|15989.04|0.09|0.00|N|O|1996-11-29|1997-01-14|1996-12-21|COLLECT COD|REG AIR|ven packages sleep across the fluffily even| +42634|151405|1406|3|43|62625.20|0.06|0.07|N|O|1996-11-29|1996-12-18|1996-12-03|DELIVER IN PERSON|REG AIR|nic packages cajole. iron| +42634|660419|35446|4|23|31725.74|0.09|0.07|N|O|1996-12-14|1996-12-13|1997-01-03|NONE|FOB| bold asymptotes boos| +42635|954308|16828|1|38|51765.88|0.01|0.08|A|F|1995-04-20|1995-04-20|1995-05-15|COLLECT COD|TRUCK|n foxes. slyly sly account| +42635|45265|7766|2|46|55671.96|0.10|0.02|A|F|1995-04-14|1995-05-13|1995-04-23|NONE|MAIL| instructions detect fluffily ir| +42636|608124|20637|1|39|40251.51|0.01|0.08|N|O|1996-02-14|1996-01-02|1996-03-10|TAKE BACK RETURN|TRUCK|ng deposits use furiously. depo| +42637|880883|18435|1|13|24229.92|0.00|0.04|R|F|1993-01-14|1992-11-17|1993-01-15|COLLECT COD|SHIP|ructions impress acc| +42638|67443|29945|1|5|7052.20|0.09|0.08|N|O|1996-08-11|1996-06-18|1996-08-22|TAKE BACK RETURN|FOB|nusual theodolites sleep boldly. f| +42638|504612|17123|2|6|9699.54|0.02|0.01|N|O|1996-04-29|1996-05-27|1996-05-03|NONE|FOB|lyly regular platelets. slyly express| +42638|6551|31552|3|8|11660.40|0.08|0.07|N|O|1996-07-16|1996-05-25|1996-08-12|DELIVER IN PERSON|SHIP|e blithely regular reques| +42639|204198|29207|1|30|33065.40|0.09|0.01|N|O|1998-03-02|1998-02-28|1998-03-14|COLLECT COD|RAIL|ss instructions. slyly final| +42639|948361|23398|2|14|19730.48|0.08|0.04|N|O|1998-01-24|1998-02-11|1998-02-23|DELIVER IN PERSON|SHIP|. carefully final| +42639|98812|23815|3|21|38027.01|0.08|0.03|N|O|1998-03-20|1998-02-24|1998-03-21|TAKE BACK RETURN|TRUCK| accounts. slyly stealthy instructi| +42639|725825|854|4|33|61076.07|0.00|0.05|N|O|1998-03-25|1998-01-09|1998-04-13|DELIVER IN PERSON|SHIP|old ideas. sl| +42639|931923|6960|5|36|70375.68|0.08|0.01|N|O|1998-01-31|1998-02-06|1998-02-16|NONE|REG AIR| furiously sp| +42639|825168|12717|6|14|15303.68|0.09|0.07|N|O|1998-03-29|1998-02-06|1998-04-25|COLLECT COD|SHIP| pinto beans. blithely even requests sno| +42664|796128|33674|1|25|30602.25|0.08|0.02|A|F|1995-05-10|1995-02-14|1995-05-23|DELIVER IN PERSON|MAIL|e express pinto beans. enticing courts| +42665|890023|40024|1|21|21272.58|0.09|0.07|N|O|1998-05-23|1998-06-10|1998-06-20|TAKE BACK RETURN|FOB| the slyly ironic dependencies. sl| +42665|607695|20208|2|25|40066.50|0.00|0.02|N|O|1998-05-01|1998-06-02|1998-05-02|COLLECT COD|SHIP|nstructions affix blithely.| +42665|514480|14481|3|35|52306.10|0.06|0.03|N|O|1998-07-15|1998-06-30|1998-08-02|TAKE BACK RETURN|AIR|hely express ideas according to th| +42665|855697|30732|4|37|61148.05|0.01|0.06|N|O|1998-04-26|1998-05-27|1998-04-27|NONE|REG AIR|instructions sl| +42665|694688|32228|5|6|10095.90|0.02|0.08|N|O|1998-05-23|1998-07-01|1998-06-08|TAKE BACK RETURN|RAIL|. fluffily regular pin| +42665|604681|29706|6|35|55497.75|0.10|0.08|N|O|1998-04-23|1998-06-23|1998-05-21|NONE|FOB|lites are furi| +42666|494132|6642|1|15|16891.65|0.05|0.01|A|F|1994-08-12|1994-06-17|1994-09-06|DELIVER IN PERSON|TRUCK| nod. care| +42666|867779|17780|2|15|26200.95|0.01|0.08|A|F|1994-06-04|1994-06-19|1994-07-02|TAKE BACK RETURN|SHIP|, express foxes according to the un| +42666|750730|25761|3|29|51640.30|0.04|0.05|A|F|1994-08-27|1994-06-15|1994-09-05|TAKE BACK RETURN|AIR|es print quickly aga| +42667|801360|1361|1|40|50452.80|0.03|0.08|A|F|1993-09-04|1993-11-14|1993-09-26|NONE|MAIL|ly even ideas | +42667|444135|31660|2|35|37768.85|0.00|0.02|R|F|1993-09-10|1993-10-27|1993-09-27|COLLECT COD|REG AIR|sual, unusual deposits wake slyl| +42667|561680|11681|3|30|52249.80|0.09|0.03|A|F|1993-09-24|1993-11-04|1993-10-06|DELIVER IN PERSON|AIR| the express foxe| +42667|142222|4725|4|48|60682.56|0.02|0.08|A|F|1993-11-01|1993-10-18|1993-11-14|COLLECT COD|SHIP|ls sleep carefully ironic packages: car| +42668|196614|21621|1|15|25659.15|0.01|0.05|A|F|1993-05-17|1993-05-31|1993-06-07|NONE|MAIL|counts. quickly unusual instructio| +42668|491078|16097|2|33|35278.65|0.01|0.02|A|F|1993-05-22|1993-07-07|1993-06-07|TAKE BACK RETURN|RAIL|alongside of the express accounts. even i| +42668|533934|8955|3|9|17711.19|0.03|0.08|R|F|1993-07-13|1993-06-06|1993-07-23|TAKE BACK RETURN|TRUCK|s. furiously express dependencies use after| +42668|822974|48007|4|9|17072.37|0.00|0.03|R|F|1993-06-21|1993-06-15|1993-07-15|DELIVER IN PERSON|AIR|pades. slyly bold | +42668|711818|49361|5|49|89659.22|0.03|0.03|A|F|1993-05-12|1993-06-19|1993-06-11|NONE|RAIL|hely against the blithely unusual foxes| +42669|6368|6369|1|40|50974.40|0.10|0.01|N|O|1995-07-13|1995-09-01|1995-08-06|DELIVER IN PERSON|MAIL|sits wake.| +42669|23683|11184|2|15|24100.20|0.01|0.00|N|O|1995-08-10|1995-08-17|1995-08-18|NONE|AIR|ess requests eat asymptotes. | +42669|26100|38601|3|33|33861.30|0.10|0.03|N|O|1995-06-27|1995-08-29|1995-07-16|TAKE BACK RETURN|SHIP|cross the instructions. carefully final pac| +42669|657714|32741|4|26|43463.68|0.03|0.08|N|O|1995-07-08|1995-08-29|1995-07-22|COLLECT COD|TRUCK|. even packages sl| +42670|600803|13316|1|2|3407.54|0.02|0.02|R|F|1994-04-10|1994-05-22|1994-04-15|TAKE BACK RETURN|SHIP|fluffily unusual deposits. fi| +42670|681319|6346|2|19|24705.32|0.03|0.03|R|F|1994-05-16|1994-05-07|1994-05-31|DELIVER IN PERSON|REG AIR|cross the quickly fin| +42670|922197|22198|3|4|4876.60|0.04|0.07|A|F|1994-06-06|1994-04-16|1994-06-22|COLLECT COD|FOB|ic theodolites sleep. blithely final| +42671|141296|28803|1|23|30757.67|0.08|0.05|R|F|1995-04-02|1995-02-16|1995-04-03|NONE|SHIP|g even requests. blithely ironic dol| +42671|761134|36165|2|42|50194.20|0.04|0.02|R|F|1995-01-23|1995-03-28|1995-01-25|COLLECT COD|FOB|ut the slyly regular theod| +42696|416647|4172|1|34|53163.08|0.01|0.02|N|O|1996-02-18|1996-01-16|1996-03-17|NONE|AIR|e pending escapades. ironic fox| +42696|582216|7239|2|13|16876.47|0.01|0.04|N|O|1996-01-20|1996-01-17|1996-02-19|TAKE BACK RETURN|AIR|gular packages; final re| +42696|291790|41791|3|35|62362.30|0.08|0.08|N|O|1996-03-11|1996-01-10|1996-03-12|TAKE BACK RETURN|FOB|carefully spec| +42696|108462|8463|4|40|58818.40|0.04|0.01|N|O|1995-12-21|1996-02-03|1995-12-28|DELIVER IN PERSON|SHIP|long the accounts. furiousl| +42696|916817|41854|5|21|38509.17|0.10|0.03|N|O|1996-01-09|1996-01-03|1996-01-29|DELIVER IN PERSON|MAIL|structions nag sl| +42697|599292|49293|1|26|36173.02|0.08|0.03|N|O|1996-08-24|1996-11-15|1996-09-22|DELIVER IN PERSON|MAIL| kindle blithel| +42697|285095|10106|2|5|5400.40|0.02|0.08|N|O|1996-08-23|1996-10-25|1996-09-12|NONE|TRUCK| ironic theodolites are carefully| +42697|587335|49847|3|29|41246.99|0.07|0.02|N|O|1996-12-11|1996-11-08|1997-01-01|NONE|REG AIR|accounts cajole acc| +42697|328343|40850|4|31|42511.23|0.06|0.01|N|O|1996-10-29|1996-11-14|1996-11-17|TAKE BACK RETURN|REG AIR|ogged platelets sleep slyly according to th| +42697|454180|29199|5|9|10207.44|0.07|0.05|N|O|1996-12-16|1996-10-12|1996-12-23|DELIVER IN PERSON|RAIL|long the pinto beans wake blithely abov| +42697|387375|49883|6|24|35096.64|0.05|0.04|N|O|1996-12-09|1996-11-05|1996-12-29|TAKE BACK RETURN|TRUCK|ress, even pinto beans above the even | +42697|596147|8659|7|14|17403.68|0.00|0.05|N|O|1996-11-10|1996-10-19|1996-11-27|COLLECT COD|REG AIR|r theodolites sleep sl| +42698|431644|19169|1|28|44117.36|0.09|0.04|A|F|1995-01-13|1994-11-21|1995-01-26|COLLECT COD|AIR|uests across the silent, regular deposits | +42698|624944|24945|2|24|44853.84|0.01|0.07|A|F|1994-12-20|1994-12-11|1995-01-06|NONE|TRUCK|carefully about| +42698|419414|44431|3|2|2666.78|0.02|0.04|A|F|1994-10-31|1995-01-13|1994-11-29|DELIVER IN PERSON|FOB|ke blithely around th| +42698|74817|37319|4|19|34044.39|0.04|0.07|A|F|1994-11-09|1994-11-24|1994-11-28|COLLECT COD|FOB|deposits. regular packag| +42698|443019|43020|5|15|14429.85|0.05|0.02|R|F|1995-02-05|1994-12-27|1995-02-26|COLLECT COD|AIR|olites affix furiously thinly pending re| +42698|814199|14200|6|13|14470.95|0.08|0.02|A|F|1995-02-07|1994-11-28|1995-02-19|NONE|TRUCK|lly regular packag| +42698|236059|48564|7|29|28856.16|0.09|0.01|R|F|1995-01-31|1995-01-11|1995-02-08|COLLECT COD|RAIL|along the fluffily b| +42699|439159|26684|1|9|9883.17|0.03|0.02|A|F|1992-06-08|1992-05-25|1992-06-27|TAKE BACK RETURN|MAIL| beans. carefully ironic packages da| +42699|928808|3845|2|30|55102.80|0.01|0.03|R|F|1992-06-19|1992-05-30|1992-07-09|DELIVER IN PERSON|TRUCK|ts. daring, express the| +42699|471226|33736|3|2|2394.40|0.10|0.02|R|F|1992-04-28|1992-06-20|1992-05-16|TAKE BACK RETURN|SHIP| the even requests. carefully bold requests| +42699|887705|12740|4|13|22004.58|0.08|0.03|R|F|1992-06-11|1992-05-21|1992-07-08|DELIVER IN PERSON|MAIL|mpress slyly furiously reg| +42700|981559|31560|1|5|8202.55|0.09|0.00|N|O|1996-12-12|1996-11-09|1997-01-06|TAKE BACK RETURN|SHIP| quickly r| +42700|51485|38989|2|28|40221.44|0.09|0.05|N|O|1996-10-08|1996-12-02|1996-10-25|DELIVER IN PERSON|MAIL|ily ironic patterns cajole special pin| +42700|296237|46238|3|48|59194.56|0.04|0.07|N|O|1996-11-23|1996-12-21|1996-12-10|NONE|AIR| ironic deposits. carefully e| +42701|171418|46425|1|9|13404.69|0.00|0.07|R|F|1993-06-15|1993-03-30|1993-06-30|TAKE BACK RETURN|TRUCK|wake. carefully regular requests cajole qui| +42701|15934|40935|2|14|25899.02|0.04|0.04|R|F|1993-04-03|1993-04-20|1993-04-11|TAKE BACK RETURN|FOB|en requests. | +42701|792827|5343|3|18|34556.22|0.01|0.04|A|F|1993-05-17|1993-04-09|1993-05-22|NONE|SHIP|arefully quickly ironic accounts. pa| +42702|111282|48789|1|35|45264.80|0.06|0.02|A|F|1995-05-05|1995-02-20|1995-05-24|NONE|MAIL|iously express dependencies cajole si| +42702|307322|7323|2|38|50513.78|0.01|0.07|A|F|1995-01-29|1995-02-24|1995-02-12|NONE|TRUCK| ironic warhorses boost carefully sl| +42702|154528|17032|3|6|9495.12|0.07|0.05|A|F|1995-03-03|1995-03-12|1995-03-31|COLLECT COD|REG AIR| blithely unusual instructions.| +42702|142854|5357|4|2|3793.70|0.05|0.06|A|F|1995-02-22|1995-02-17|1995-03-01|COLLECT COD|AIR|egrate slyly ideas. pending co| +42703|535007|47518|1|37|38553.26|0.08|0.07|R|F|1992-08-28|1992-07-26|1992-09-20|COLLECT COD|TRUCK| quickly pen| +42728|328507|28508|1|4|6141.96|0.03|0.06|R|F|1995-01-07|1995-02-19|1995-01-30|NONE|FOB|always ironi| +42728|206698|31707|2|39|62582.52|0.04|0.08|A|F|1995-03-11|1995-02-02|1995-04-08|DELIVER IN PERSON|AIR|blithely ironic foxes | +42728|964389|1947|3|32|46506.88|0.02|0.04|A|F|1995-01-07|1995-02-07|1995-01-17|COLLECT COD|AIR|s might haggle quickly regular depo| +42728|476752|1771|4|33|57048.09|0.09|0.08|R|F|1995-02-18|1995-01-09|1995-03-19|COLLECT COD|SHIP|ularly-- busy requests use a| +42728|765741|28257|5|33|59621.43|0.01|0.05|R|F|1995-03-06|1995-02-24|1995-03-13|NONE|FOB|ully final deposits cajole furiously f| +42728|796807|21838|6|11|20941.47|0.02|0.04|R|F|1995-03-09|1995-01-31|1995-04-08|COLLECT COD|REG AIR|nly careful packages| +42729|572251|22252|1|42|55575.66|0.00|0.06|N|O|1996-07-28|1996-08-01|1996-08-18|COLLECT COD|AIR|ithely ironic packages dazzle carefully a| +42729|806212|43761|2|37|41372.29|0.09|0.06|N|O|1996-07-08|1996-08-26|1996-07-22|COLLECT COD|SHIP|instructions-- carefully| +42729|1539|1540|3|33|47537.49|0.05|0.01|N|O|1996-07-30|1996-09-01|1996-08-20|NONE|TRUCK|y pending requests. foxes sleep. slyly| +42729|858176|33211|4|22|24950.86|0.05|0.02|N|O|1996-08-11|1996-08-04|1996-08-25|COLLECT COD|MAIL| on the final r| +42729|352808|27823|5|39|72570.81|0.06|0.05|N|O|1996-07-22|1996-08-01|1996-08-20|TAKE BACK RETURN|TRUCK|ong the quiet, silent pinto bea| +42729|628032|28033|6|3|2880.00|0.01|0.07|N|O|1996-07-13|1996-08-01|1996-07-15|COLLECT COD|REG AIR| according to the furiously unusual pi| +42730|829833|29834|1|50|88139.50|0.03|0.02|N|O|1995-09-27|1995-08-13|1995-10-11|NONE|AIR|uctions in place of the quickly final requ| +42730|991404|28962|2|1|1495.36|0.06|0.07|N|O|1995-06-22|1995-08-20|1995-07-01|DELIVER IN PERSON|TRUCK|ges doze fluffily. fluffily pending id| +42730|518125|30636|3|21|24005.10|0.02|0.00|N|O|1995-06-18|1995-07-08|1995-06-30|DELIVER IN PERSON|SHIP|patterns haggle. slyly fi| +42730|126104|38607|4|13|14691.30|0.10|0.00|N|O|1995-07-24|1995-08-28|1995-08-05|NONE|FOB|slyly bold packages. quic| +42731|824402|49435|1|47|62338.92|0.05|0.02|R|F|1993-08-26|1993-09-05|1993-09-13|TAKE BACK RETURN|TRUCK| accounts affix sometimes. blithely re| +42731|715214|15215|2|9|11062.62|0.05|0.05|A|F|1993-07-07|1993-08-08|1993-07-23|DELIVER IN PERSON|RAIL|y. regular instructions cajole| +42731|596313|21336|3|14|19730.06|0.10|0.00|R|F|1993-08-14|1993-08-12|1993-08-15|COLLECT COD|AIR|gular deposits wake. slyly ironic pains | +42731|226417|13930|4|1|1343.40|0.05|0.03|R|F|1993-09-23|1993-08-20|1993-10-06|NONE|FOB|areful deposits slee| +42731|374476|49491|5|14|21706.44|0.08|0.00|A|F|1993-08-26|1993-09-02|1993-08-30|TAKE BACK RETURN|FOB|eans alongs| +42732|25197|25198|1|4|4488.76|0.03|0.04|N|O|1996-07-21|1996-07-10|1996-08-17|DELIVER IN PERSON|FOB|olites haggle busily instructions. f| +42732|482759|32760|2|37|64444.01|0.02|0.04|N|O|1996-06-27|1996-07-16|1996-07-14|TAKE BACK RETURN|SHIP|cuses above the carefully quick depos| +42732|727376|27377|3|4|5613.36|0.07|0.03|N|O|1996-05-04|1996-06-13|1996-05-28|DELIVER IN PERSON|MAIL|s haggle ca| +42732|992958|30516|4|44|90240.04|0.10|0.07|N|O|1996-06-19|1996-06-25|1996-07-11|TAKE BACK RETURN|FOB|structions wake. special foxes use slyly ag| +42732|637443|24980|5|19|26227.79|0.07|0.07|N|O|1996-07-05|1996-07-08|1996-08-02|TAKE BACK RETURN|SHIP|inal accounts haggle blithe| +42733|669498|19499|1|46|67503.16|0.02|0.01|A|F|1992-05-14|1992-07-07|1992-05-29|DELIVER IN PERSON|RAIL|pendencies thrash slyly above the carefully| +42733|251731|26742|2|11|18509.92|0.03|0.04|R|F|1992-06-15|1992-07-29|1992-06-23|NONE|MAIL|c instructions. | +42733|826976|39493|3|5|9514.65|0.02|0.01|A|F|1992-08-30|1992-07-10|1992-09-19|COLLECT COD|REG AIR|side of the asymptotes. regular deposits w| +42734|704460|29489|1|18|26359.74|0.06|0.05|N|O|1996-07-19|1996-07-21|1996-07-23|DELIVER IN PERSON|TRUCK|hely unusual pinto beans wake qu| +42734|851465|13983|2|1|1416.42|0.06|0.04|N|O|1996-06-20|1996-08-13|1996-07-01|NONE|AIR|accounts agains| +42734|561115|23627|3|7|8232.63|0.07|0.00|N|O|1996-08-04|1996-07-12|1996-08-16|NONE|REG AIR|ly even theodoli| +42735|26643|14144|1|47|73773.08|0.02|0.08|R|F|1993-03-22|1993-04-14|1993-04-15|TAKE BACK RETURN|SHIP| pinto beans sleep. quickly regula| +42735|784285|21831|2|15|20538.75|0.07|0.05|A|F|1993-04-20|1993-03-14|1993-04-28|TAKE BACK RETURN|AIR|nic asymptotes haggle quickly; expre| +42735|477197|39707|3|48|56360.16|0.00|0.08|A|F|1993-05-04|1993-04-27|1993-05-14|COLLECT COD|MAIL|g silently about th| +42760|107548|45055|1|35|54443.90|0.07|0.00|N|O|1998-08-13|1998-09-12|1998-08-25|NONE|SHIP|tween the f| +42760|543378|5889|2|13|18477.55|0.07|0.03|N|O|1998-10-12|1998-09-05|1998-10-15|COLLECT COD|SHIP| theodolites integrate care| +42760|548700|36231|3|37|64701.16|0.07|0.07|N|O|1998-08-04|1998-08-23|1998-08-18|TAKE BACK RETURN|TRUCK| along the slyly unusual packages na| +42760|992455|42456|4|26|40232.66|0.02|0.03|N|O|1998-07-19|1998-08-04|1998-08-03|COLLECT COD|TRUCK|eodolites wake quickly above th| +42760|182703|32704|5|19|33928.30|0.05|0.03|N|O|1998-10-17|1998-08-10|1998-10-27|DELIVER IN PERSON|TRUCK|ent ideas. r| +42761|977133|39653|1|48|58084.32|0.05|0.00|N|O|1997-05-26|1997-05-24|1997-06-24|COLLECT COD|FOB|uriously bold requests should have to pr| +42761|665594|40621|2|42|65501.52|0.03|0.04|N|O|1997-05-30|1997-06-03|1997-06-23|COLLECT COD|RAIL| regular packages. permanently bold reque| +42761|626536|1561|3|17|24862.50|0.07|0.03|N|O|1997-05-25|1997-05-15|1997-06-01|DELIVER IN PERSON|SHIP|equests integrate packages. regular asym| +42761|189643|2147|4|38|65840.32|0.04|0.03|N|O|1997-03-19|1997-05-19|1997-03-31|COLLECT COD|MAIL|osits was furiously ac| +42761|315303|40316|5|48|63277.92|0.03|0.04|N|O|1997-04-26|1997-05-15|1997-05-22|DELIVER IN PERSON|REG AIR|ully carefully ironic ideas. fi| +42761|292878|17889|6|16|29933.76|0.03|0.05|N|O|1997-04-05|1997-04-09|1997-04-11|DELIVER IN PERSON|RAIL|ncies run slyly across the ironic packages.| +42762|628671|3696|1|25|39991.00|0.04|0.05|N|O|1998-02-11|1998-03-27|1998-03-01|COLLECT COD|MAIL|side of the unusual packages nag express p| +42762|58300|33303|2|31|39007.30|0.02|0.03|N|O|1998-03-03|1998-02-26|1998-03-19|NONE|TRUCK|press deposit| +42762|838328|25877|3|14|17727.92|0.02|0.08|N|O|1998-02-04|1998-03-21|1998-03-04|DELIVER IN PERSON|REG AIR|integrate fluffily| +42763|760759|35790|1|11|20016.92|0.00|0.06|N|O|1996-05-02|1996-04-08|1996-05-22|TAKE BACK RETURN|FOB|inal deposits. furiously bold| +42763|74347|24348|2|24|31712.16|0.04|0.03|N|O|1996-04-21|1996-04-24|1996-05-18|TAKE BACK RETURN|FOB|silent instructions| +42764|323567|48580|1|13|20677.15|0.06|0.06|A|F|1992-05-19|1992-06-18|1992-06-11|TAKE BACK RETURN|FOB|the unusual| +42764|181168|43672|2|39|48717.24|0.05|0.08|A|F|1992-04-03|1992-05-19|1992-04-07|TAKE BACK RETURN|TRUCK|ly regular courts are acc| +42764|888828|1346|3|11|19984.58|0.10|0.08|A|F|1992-05-04|1992-06-16|1992-05-07|NONE|SHIP|osits. ironic dependencies run. carefully q| +42764|530592|18123|4|23|37319.11|0.09|0.06|R|F|1992-03-28|1992-06-13|1992-04-06|COLLECT COD|FOB| special accounts. carefu| +42764|653489|3490|5|8|11539.60|0.01|0.05|R|F|1992-05-23|1992-06-09|1992-06-21|DELIVER IN PERSON|REG AIR|ng deposits inte| +42765|819039|19040|1|24|22991.76|0.06|0.07|A|F|1993-01-12|1993-03-12|1993-02-11|DELIVER IN PERSON|MAIL|carefully even platelets nag flu| +42765|583521|8544|2|46|73807.00|0.05|0.08|A|F|1993-04-19|1993-02-13|1993-05-18|DELIVER IN PERSON|SHIP|rint carefully after the unusual, speci| +42766|842489|17522|1|10|14314.40|0.00|0.07|N|O|1996-11-03|1997-01-14|1996-11-05|DELIVER IN PERSON|MAIL|wake quickly daringly | +42766|711040|11041|2|24|25224.24|0.03|0.02|N|O|1997-02-16|1997-01-02|1997-03-09|NONE|SHIP|uickly final wate| +42766|447642|10151|3|18|28613.16|0.01|0.07|N|O|1997-01-04|1996-12-02|1997-01-27|DELIVER IN PERSON|RAIL|ckly even dinos impress slyly carefully pen| +42766|509830|22341|4|18|33116.58|0.01|0.00|N|O|1997-01-23|1996-12-13|1997-02-18|DELIVER IN PERSON|SHIP|ncies. bravely ironic platelets above the| +42767|955|13456|1|9|16703.55|0.06|0.03|R|F|1992-10-22|1992-08-06|1992-10-27|COLLECT COD|MAIL|l requests use slyly f| +42767|36364|23865|2|39|50714.04|0.07|0.06|A|F|1992-10-18|1992-08-26|1992-10-19|COLLECT COD|RAIL|ular accounts. regular accoun| +42792|218382|18383|1|30|39011.10|0.09|0.07|N|O|1997-05-31|1997-05-09|1997-06-15|DELIVER IN PERSON|MAIL|beans detect fluffily. accounts wi| +42792|345564|45565|2|5|8047.75|0.05|0.02|N|O|1997-07-05|1997-05-20|1997-07-20|COLLECT COD|MAIL|y pinto beans among the req| +42792|883599|8634|3|19|30068.45|0.07|0.07|N|O|1997-04-23|1997-05-24|1997-05-18|NONE|SHIP|al dependencies. u| +42792|633562|33563|4|34|50848.02|0.03|0.04|N|O|1997-06-21|1997-05-29|1997-07-02|TAKE BACK RETURN|AIR|eep quickly accor| +42792|276313|13829|5|17|21918.10|0.07|0.06|N|O|1997-07-28|1997-05-17|1997-07-29|COLLECT COD|AIR|ites are carefully about the pin| +42792|976446|14004|6|15|22836.00|0.09|0.04|N|O|1997-07-15|1997-06-20|1997-08-05|COLLECT COD|AIR|ges haggle above the unusual| +42792|120596|8103|7|30|48497.70|0.09|0.01|N|O|1997-06-15|1997-06-11|1997-07-09|COLLECT COD|SHIP|nto beans. idly final deposits nag at the d| +42793|842197|17230|1|11|12530.65|0.07|0.00|N|O|1995-11-28|1995-12-15|1995-11-30|COLLECT COD|FOB|ve the ironic, express dolph| +42793|799055|24086|2|24|27696.48|0.00|0.01|N|O|1995-12-02|1995-10-21|1995-12-09|TAKE BACK RETURN|REG AIR| breach above th| +42794|858926|21444|1|40|75395.20|0.02|0.04|N|O|1997-11-02|1998-01-08|1997-11-16|DELIVER IN PERSON|FOB|ld deposits haggle fluffi| +42794|962763|25283|2|35|63900.20|0.03|0.01|N|O|1998-02-18|1998-01-07|1998-02-21|TAKE BACK RETURN|SHIP|es. regular requests nag blithely speci| +42794|153817|28824|3|11|20578.91|0.01|0.05|N|O|1998-02-07|1997-12-25|1998-03-02|COLLECT COD|REG AIR|quickly. bl| +42794|195118|7622|4|2|2426.22|0.04|0.05|N|O|1998-01-07|1997-12-31|1998-02-01|TAKE BACK RETURN|TRUCK|l ideas. blithely re| +42794|343490|5997|5|23|35270.04|0.05|0.01|N|O|1997-12-14|1998-01-11|1997-12-22|COLLECT COD|SHIP| haggle furiously ironic dependencies.| +42794|23064|48065|6|34|33560.04|0.07|0.02|N|O|1998-01-02|1997-12-14|1998-01-18|DELIVER IN PERSON|TRUCK|lar pinto beans after the ironic instruct| +42794|624566|12103|7|29|43225.37|0.06|0.06|N|O|1998-01-20|1997-12-02|1998-02-03|COLLECT COD|SHIP|s. blithely regular req| +42795|70373|32875|1|36|48361.32|0.07|0.05|N|O|1997-09-01|1997-10-14|1997-09-30|TAKE BACK RETURN|RAIL|xcuses cajole slyly even | +42795|754177|29208|2|27|33240.78|0.07|0.05|N|O|1997-10-03|1997-10-03|1997-10-06|DELIVER IN PERSON|REG AIR|ular, even packages nag blithely| +42795|448258|10767|3|42|50661.66|0.09|0.07|N|O|1997-10-14|1997-10-26|1997-10-26|COLLECT COD|REG AIR|lets. carefully specia| +42796|294908|32424|1|24|45669.36|0.08|0.08|N|O|1997-03-19|1997-02-01|1997-03-25|DELIVER IN PERSON|TRUCK|: carefully even | +42796|509323|34344|2|5|6661.50|0.06|0.01|N|O|1997-04-05|1997-02-19|1997-05-03|TAKE BACK RETURN|SHIP|deas wake furiously against the ironic fray| +42796|180458|17968|3|50|76922.50|0.02|0.08|N|O|1997-04-12|1997-03-15|1997-05-07|NONE|REG AIR|onic gifts. iro| +42796|944693|19730|4|24|41703.60|0.07|0.05|N|O|1997-02-28|1997-03-13|1997-03-15|COLLECT COD|SHIP|es wake above the carefully f| +42796|450595|25614|5|44|68005.08|0.08|0.00|N|O|1997-03-25|1997-02-17|1997-04-05|TAKE BACK RETURN|RAIL|hely alongside | +42796|147075|9578|6|2|2244.14|0.06|0.00|N|O|1997-02-16|1997-01-25|1997-03-09|NONE|FOB|r accounts a| +42797|239808|2313|1|42|73407.18|0.05|0.08|N|O|1996-05-08|1996-03-31|1996-05-20|COLLECT COD|AIR|ual accounts use pending accou| +42797|446416|8925|2|8|10899.12|0.05|0.06|N|O|1996-03-01|1996-02-28|1996-03-05|DELIVER IN PERSON|AIR|ead of the blithely regular accoun| +42797|912932|487|3|16|31118.24|0.09|0.07|N|O|1996-03-05|1996-03-09|1996-03-06|TAKE BACK RETURN|FOB| quickly across the fluffily r| +42797|635486|47999|4|40|56858.00|0.01|0.04|N|O|1996-01-27|1996-02-28|1996-02-23|DELIVER IN PERSON|FOB|dogged foxes. carefully e| +42797|609822|22335|5|9|15586.11|0.02|0.07|N|O|1996-04-05|1996-03-07|1996-04-22|COLLECT COD|MAIL|al accounts. quickly ironic deposits a| +42797|275180|25181|6|43|49672.31|0.08|0.01|N|O|1996-02-20|1996-03-16|1996-02-21|COLLECT COD|RAIL|ess excuses. furiously ironic idea| +42797|946473|21510|7|41|62296.63|0.05|0.07|N|O|1996-04-27|1996-03-10|1996-05-01|COLLECT COD|FOB|uickly along the even requests. enticin| +42798|357970|20478|1|20|40559.20|0.10|0.08|N|O|1996-05-10|1996-05-11|1996-05-30|DELIVER IN PERSON|REG AIR|. carefully final excuses | +42798|389173|26695|2|8|10097.28|0.08|0.05|N|O|1996-06-15|1996-05-04|1996-07-10|DELIVER IN PERSON|AIR|ular packages.| +42798|830280|5313|3|2|2420.48|0.01|0.02|N|O|1996-04-14|1996-04-25|1996-04-24|NONE|MAIL|lar, even deposits alongside of the qui| +42798|507935|32956|4|9|17486.19|0.06|0.06|N|O|1996-05-09|1996-05-02|1996-05-16|NONE|FOB|s hinder quick| +42798|856774|44326|5|35|60575.55|0.09|0.06|N|O|1996-06-21|1996-04-25|1996-07-08|NONE|FOB|. final, fi| +42798|789198|1714|6|9|11584.44|0.05|0.02|N|O|1996-05-02|1996-04-18|1996-05-21|NONE|RAIL|c foxes. blithel| +42798|50104|105|7|10|10541.00|0.02|0.01|N|O|1996-04-01|1996-05-16|1996-04-21|DELIVER IN PERSON|REG AIR|se. requests will have to detect abou| +42799|84274|9277|1|23|28940.21|0.01|0.04|N|O|1997-03-02|1997-05-02|1997-03-06|COLLECT COD|TRUCK|carefully even instructions above the bo| +42799|388588|38589|2|12|20118.84|0.04|0.04|N|O|1997-06-22|1997-05-09|1997-06-29|DELIVER IN PERSON|REG AIR|ainst the b| +42799|991305|28863|3|7|9773.82|0.03|0.08|N|O|1997-05-08|1997-04-12|1997-06-07|DELIVER IN PERSON|FOB|ly regular req| +42824|10468|22969|1|22|30326.12|0.10|0.04|R|F|1992-09-13|1992-09-28|1992-10-12|DELIVER IN PERSON|AIR|ogs. instructions according to | +42824|920002|32521|2|41|41900.36|0.08|0.06|R|F|1992-08-27|1992-10-31|1992-08-31|NONE|AIR|? regular, pending ac| +42824|460441|10442|3|46|64465.32|0.03|0.08|R|F|1992-10-30|1992-11-12|1992-11-04|COLLECT COD|REG AIR|s. carefully ironic theodolites migh| +42825|108845|33850|1|23|42638.32|0.01|0.03|N|O|1996-09-05|1996-11-02|1996-09-23|TAKE BACK RETURN|MAIL|out the requests. quic| +42825|349247|11754|2|45|58330.35|0.05|0.07|N|O|1996-09-06|1996-10-23|1996-10-02|COLLECT COD|AIR|press instructions sleep| +42825|791713|16744|3|46|83015.28|0.07|0.00|N|O|1996-11-24|1996-10-06|1996-12-11|NONE|TRUCK|lar deposits. carefully final r| +42825|319181|44194|4|44|52807.48|0.00|0.01|N|O|1996-08-10|1996-10-01|1996-08-19|NONE|SHIP|uriously dogged requests af| +42826|922053|22054|1|23|24725.23|0.02|0.01|N|O|1998-06-23|1998-06-25|1998-06-30|TAKE BACK RETURN|MAIL|ggle quickly ironic asymptotes. quic| +42826|934056|46575|2|35|38150.35|0.03|0.04|N|O|1998-06-28|1998-06-10|1998-07-12|DELIVER IN PERSON|RAIL|es. slyly final packages breach| +42826|668960|31474|3|19|36649.67|0.04|0.05|N|O|1998-06-12|1998-06-17|1998-07-06|COLLECT COD|AIR|posits are according to the slow| +42826|209777|34786|4|20|33735.20|0.02|0.03|N|O|1998-06-07|1998-05-18|1998-06-16|TAKE BACK RETURN|SHIP|courts integrate after the slyly expre| +42827|615883|40908|1|27|48568.95|0.01|0.03|N|O|1996-05-10|1996-05-31|1996-05-24|NONE|SHIP|sts haggle always. blithely silen| +42827|133169|45672|2|19|22841.04|0.08|0.06|N|O|1996-06-06|1996-06-19|1996-06-13|DELIVER IN PERSON|RAIL|nusual requests. fluffily unus| +42827|165500|40507|3|42|65751.00|0.03|0.03|N|O|1996-06-25|1996-07-11|1996-06-29|TAKE BACK RETURN|TRUCK|nding packages. regularly regular requests | +42827|545637|45638|4|31|52160.91|0.05|0.02|N|O|1996-06-23|1996-07-29|1996-07-09|DELIVER IN PERSON|REG AIR|ackages nag. furiously even de| +42828|270224|7740|1|5|5971.05|0.00|0.05|A|F|1992-06-12|1992-08-16|1992-06-30|TAKE BACK RETURN|TRUCK|excuses haggle. regula| +42828|639389|26926|2|32|42507.20|0.08|0.02|A|F|1992-06-12|1992-09-05|1992-06-23|TAKE BACK RETURN|SHIP|ven deposits; furiously | +42829|605919|18432|1|11|20073.68|0.08|0.00|N|O|1997-12-22|1998-01-29|1998-01-12|NONE|RAIL|fluffily unusual, regular requ| +42829|669223|31737|2|25|29804.75|0.00|0.01|N|O|1998-01-11|1997-12-24|1998-01-22|COLLECT COD|SHIP|usly after the special packages! blithel| +42829|629023|41536|3|1|951.99|0.08|0.01|N|O|1997-12-16|1997-12-23|1997-12-25|COLLECT COD|REG AIR| the boldly regula| +42829|980107|42627|4|1|1187.06|0.06|0.05|N|O|1998-03-17|1997-12-31|1998-03-24|COLLECT COD|MAIL|kly close dolphi| +42829|642651|42652|5|20|31872.40|0.03|0.02|N|O|1998-01-13|1998-01-25|1998-02-05|COLLECT COD|RAIL|gainst the bold, express i| +42830|846280|46281|1|25|30656.00|0.03|0.00|N|O|1996-10-05|1996-07-25|1996-11-04|COLLECT COD|TRUCK|s across the carefully pending ac| +42830|425536|38045|2|21|30691.71|0.10|0.05|N|O|1996-06-27|1996-08-29|1996-07-26|COLLECT COD|MAIL|es haggle quickly again| +42830|975529|25530|3|32|51343.36|0.01|0.07|N|O|1996-10-20|1996-08-15|1996-11-19|TAKE BACK RETURN|AIR|the final, even instructions. furi| +42830|704636|42179|4|42|68905.20|0.05|0.06|N|O|1996-09-07|1996-08-31|1996-09-10|DELIVER IN PERSON|FOB|deposits integrate according to th| +42831|362691|12692|1|17|29812.56|0.01|0.00|N|O|1997-07-08|1997-05-28|1997-07-12|COLLECT COD|TRUCK|furiously even foxes. iro| +42831|732983|32984|2|38|76606.10|0.00|0.03|N|O|1997-05-27|1997-05-22|1997-06-10|TAKE BACK RETURN|RAIL|after the quickly| +42831|241853|4358|3|8|14358.72|0.10|0.04|N|O|1997-07-10|1997-04-22|1997-07-16|NONE|SHIP|dencies across the regularly pending not| +42831|820402|45435|4|35|46282.60|0.00|0.04|N|O|1997-06-24|1997-04-20|1997-07-07|NONE|AIR|ets detect. furiously ironi| +42831|480715|5734|5|44|74610.36|0.09|0.02|N|O|1997-05-21|1997-04-18|1997-05-29|DELIVER IN PERSON|RAIL|refully final waters. regular foxes sleep s| +42831|369755|44770|6|29|52917.46|0.07|0.03|N|O|1997-05-16|1997-06-09|1997-06-13|DELIVER IN PERSON|TRUCK|s cajole furiously at the blithe| +42831|470690|20691|7|5|8303.35|0.01|0.08|N|O|1997-04-24|1997-05-14|1997-05-13|COLLECT COD|FOB| patterns boost fur| +42856|873903|48938|1|24|45044.64|0.02|0.01|N|F|1995-06-01|1995-04-23|1995-06-24|TAKE BACK RETURN|REG AIR|t blithely fluffily spec| +42856|676846|39360|2|21|38279.01|0.06|0.02|R|F|1995-04-04|1995-04-17|1995-04-12|TAKE BACK RETURN|SHIP|ounts; spec| +42856|746641|34184|3|15|25314.15|0.05|0.04|R|F|1995-04-16|1995-05-30|1995-05-03|NONE|FOB|ly unusual packages hang furiously qu| +42856|782783|45299|4|45|83958.75|0.06|0.00|N|O|1995-06-23|1995-04-03|1995-06-26|COLLECT COD|TRUCK|thely. furiously| +42856|233352|45857|5|47|60410.98|0.10|0.03|R|F|1995-03-24|1995-04-30|1995-04-15|DELIVER IN PERSON|SHIP|onic packages since the blithely ironic pa| +42856|939489|27044|6|16|24455.04|0.03|0.06|N|F|1995-06-15|1995-05-20|1995-07-11|COLLECT COD|FOB|yly final accoun| +42857|412716|37733|1|42|68404.98|0.06|0.01|R|F|1992-05-12|1992-04-04|1992-05-23|TAKE BACK RETURN|MAIL|e to use. packages integr| +42857|510699|35720|2|5|8548.35|0.04|0.06|A|F|1992-05-01|1992-04-16|1992-05-06|COLLECT COD|REG AIR|s cajole carefully.| +42857|317475|29982|3|20|29849.20|0.10|0.01|A|F|1992-05-05|1992-04-06|1992-05-26|TAKE BACK RETURN|MAIL| deposits boost abou| +42857|792403|17434|4|44|65796.28|0.07|0.00|R|F|1992-02-28|1992-03-23|1992-03-19|COLLECT COD|SHIP|ly bold theodolites | +42857|908547|21066|5|4|6222.00|0.08|0.07|R|F|1992-02-12|1992-04-06|1992-03-05|NONE|REG AIR|e slyly pendi| +42858|92758|17761|1|46|80534.50|0.02|0.02|R|F|1992-05-23|1992-08-02|1992-06-12|TAKE BACK RETURN|FOB| wake carefully among the f| +42858|974885|12443|2|20|39196.80|0.09|0.04|R|F|1992-08-18|1992-07-01|1992-09-01|NONE|REG AIR|ngside of the ironic requests us| +42858|886762|11797|3|7|12241.04|0.10|0.03|A|F|1992-08-04|1992-06-13|1992-08-27|TAKE BACK RETURN|RAIL|arefully carefully even| +42858|807097|7098|4|2|2008.10|0.05|0.00|A|F|1992-08-11|1992-07-09|1992-08-23|COLLECT COD|MAIL|is. carefully regular pinto beans along the| +42858|871163|8715|5|28|31755.36|0.09|0.01|A|F|1992-07-19|1992-07-10|1992-08-13|TAKE BACK RETURN|AIR| solve slyly blithe| +42858|631843|19380|6|31|55019.11|0.00|0.07|A|F|1992-07-15|1992-06-09|1992-07-27|NONE|FOB|y silent pinto b| +42859|901028|1029|1|18|18521.64|0.06|0.06|N|O|1995-07-17|1995-07-28|1995-08-01|TAKE BACK RETURN|SHIP|cajole. boldly bold pinto beans sleep | +42859|573805|23806|2|49|92060.22|0.06|0.08|N|O|1995-08-17|1995-08-30|1995-09-08|NONE|TRUCK| pains cajole. ironic, final | +42860|122628|47633|1|9|14855.58|0.02|0.02|R|F|1992-01-22|1992-02-24|1992-01-24|TAKE BACK RETURN|RAIL|s according to the ironic, bold ideas | +42860|18|37519|2|21|19278.21|0.06|0.08|A|F|1992-04-27|1992-04-09|1992-05-15|DELIVER IN PERSON|TRUCK|s wake carefully carefully even theodol| +42860|293129|30645|3|4|4488.44|0.09|0.08|R|F|1992-05-13|1992-04-07|1992-06-02|DELIVER IN PERSON|FOB|ironic theodoli| +42861|897365|22400|1|25|34058.00|0.06|0.04|R|F|1993-10-11|1993-10-16|1993-10-30|TAKE BACK RETURN|TRUCK|egular theodolites are qui| +42861|9056|34057|2|17|16405.85|0.06|0.02|R|F|1993-11-09|1993-10-28|1993-11-26|COLLECT COD|AIR|g packages wake furiously along| +42861|199106|36616|3|6|7230.60|0.08|0.04|R|F|1993-12-06|1993-12-08|1994-01-01|DELIVER IN PERSON|AIR|r the regular accounts nag furiously blith| +42861|367585|5107|4|1|1652.57|0.09|0.02|A|F|1993-12-23|1993-12-04|1993-12-24|DELIVER IN PERSON|MAIL|. carefully| +42861|987725|12764|5|48|87008.64|0.06|0.02|A|F|1993-12-21|1993-11-10|1994-01-16|TAKE BACK RETURN|RAIL|round the iro| +42862|976074|13632|1|8|9200.24|0.10|0.08|A|F|1994-02-26|1994-01-25|1994-03-10|DELIVER IN PERSON|RAIL|ter the theodolites. carefully| +42862|863828|26346|2|24|43002.72|0.06|0.00|R|F|1994-02-19|1994-02-16|1994-03-08|COLLECT COD|RAIL|es must wake. bold d| +42862|352079|2080|3|10|11310.60|0.02|0.03|A|F|1994-01-26|1994-02-03|1994-02-24|TAKE BACK RETURN|MAIL|ke carefully daring asymptotes. blit| +42862|391042|16057|4|18|20394.54|0.00|0.08|R|F|1994-03-29|1994-01-25|1994-04-09|NONE|RAIL|ld asymptotes against the blithely spec| +42862|229032|41537|5|10|9610.20|0.04|0.03|A|F|1993-12-22|1994-01-31|1993-12-27|DELIVER IN PERSON|MAIL|oxes lose quickly; accounts thrash | +42862|327867|2880|6|24|45476.40|0.03|0.08|R|F|1994-03-11|1994-02-20|1994-03-23|DELIVER IN PERSON|RAIL|uriously ironic excuses nag blithely blit| +42863|509165|34186|1|1|1174.14|0.09|0.01|A|F|1992-05-10|1992-05-11|1992-06-06|COLLECT COD|TRUCK|special deposits sleep blithely slyly regu| +42863|519688|44709|2|26|44399.16|0.02|0.05|R|F|1992-07-17|1992-06-18|1992-08-16|DELIVER IN PERSON|AIR|egular requests s| +42888|453019|28038|1|31|30131.69|0.00|0.08|R|F|1994-02-19|1994-02-22|1994-02-23|TAKE BACK RETURN|RAIL|at about the foxes. fluffily spec| +42888|880814|18366|2|29|52048.33|0.01|0.03|A|F|1993-12-09|1994-02-04|1993-12-20|NONE|TRUCK|rding to the special theodolites. fl| +42888|839912|39913|3|26|48148.62|0.01|0.08|A|F|1994-01-27|1994-01-02|1994-02-06|NONE|RAIL|t quickly above the slyly | +42888|392525|42526|4|37|59847.87|0.01|0.04|R|F|1994-03-20|1994-02-22|1994-04-05|COLLECT COD|SHIP|t the carefully silent deposits. r| +42888|156386|43896|5|15|21635.70|0.05|0.02|R|F|1994-03-15|1994-01-26|1994-03-17|COLLECT COD|SHIP|ts cajole fl| +42889|735897|48412|1|28|54120.08|0.02|0.02|R|F|1994-02-24|1994-03-08|1994-03-16|COLLECT COD|TRUCK|tes integrate acco| +42889|210906|35915|2|10|18168.90|0.05|0.06|R|F|1994-02-12|1994-02-07|1994-02-21|COLLECT COD|TRUCK|furiously regular theodolites a| +42890|594422|6934|1|33|50041.20|0.08|0.00|A|F|1993-10-19|1993-12-10|1993-11-10|NONE|REG AIR|ose furiously| +42890|438420|25945|2|35|47544.00|0.09|0.05|A|F|1993-12-25|1994-01-10|1994-01-17|COLLECT COD|FOB|edly regular instructions haggle| +42890|522651|22652|3|17|28451.71|0.05|0.03|R|F|1994-02-04|1994-01-05|1994-03-03|NONE|SHIP| to the blithely unus| +42890|189444|1948|4|3|4600.32|0.07|0.05|A|F|1994-01-04|1993-12-11|1994-01-21|DELIVER IN PERSON|SHIP|earls use slyly foxes. | +42890|976699|26700|5|24|42615.60|0.03|0.03|R|F|1993-12-07|1994-01-11|1994-01-03|TAKE BACK RETURN|SHIP|ach quickl| +42890|377060|2075|6|13|14781.65|0.03|0.05|R|F|1994-01-24|1994-01-11|1994-02-05|TAKE BACK RETURN|FOB| bold requests | +42890|246732|21741|7|37|62112.64|0.07|0.02|R|F|1993-11-12|1993-12-16|1993-11-25|COLLECT COD|FOB| the even accoun| +42891|820794|45827|1|21|36009.75|0.00|0.03|R|F|1992-07-08|1992-07-19|1992-07-19|NONE|AIR|y final theodoli| +42892|910535|35572|1|48|74183.52|0.03|0.05|A|F|1994-04-29|1994-04-02|1994-05-08|COLLECT COD|TRUCK|counts are fu| +42892|360685|35700|2|11|19202.37|0.06|0.05|A|F|1994-05-08|1994-05-16|1994-05-31|DELIVER IN PERSON|TRUCK|ly pending platele| +42892|22064|47065|3|28|27609.68|0.08|0.02|R|F|1994-06-03|1994-04-23|1994-06-25|NONE|AIR|sits nag. ironic deposits wake quickly quic| +42892|818557|43590|4|34|50167.34|0.10|0.04|A|F|1994-06-26|1994-04-04|1994-07-15|NONE|FOB|xcuses hang amo| +42892|480239|42749|5|2|2438.42|0.09|0.05|A|F|1994-03-12|1994-04-07|1994-04-03|NONE|FOB|l theodolites. even| +42892|376324|13846|6|1|1400.31|0.02|0.08|R|F|1994-04-09|1994-05-14|1994-04-11|COLLECT COD|TRUCK|. blithely bold req| +42893|400500|13009|1|12|16805.76|0.10|0.08|N|O|1998-03-31|1998-02-15|1998-04-05|NONE|REG AIR|o beans use above the silent, unu| +42893|199207|49208|2|26|33961.20|0.03|0.00|N|O|1998-01-23|1998-02-04|1998-02-18|COLLECT COD|REG AIR|ly final ideas. bold, special fo| +42893|59779|22281|3|32|55640.64|0.02|0.08|N|O|1998-02-03|1998-02-15|1998-02-26|TAKE BACK RETURN|MAIL|ross the ironic requests use re| +42893|693664|18691|4|17|28179.71|0.03|0.04|N|O|1998-02-24|1998-02-06|1998-03-06|COLLECT COD|AIR| packages wake permanent a| +42894|562218|12219|1|17|21763.23|0.03|0.07|A|F|1993-09-07|1993-08-10|1993-09-28|TAKE BACK RETURN|TRUCK| the special, ironic f| +42894|197864|22871|2|37|72588.82|0.07|0.04|A|F|1993-06-28|1993-08-04|1993-07-03|COLLECT COD|RAIL|s among the quickly ironic requ| +42894|483529|33530|3|33|49912.50|0.01|0.04|A|F|1993-06-29|1993-07-29|1993-07-16|COLLECT COD|TRUCK|pinto beans are ruthlessly. fluffi| +42894|660013|10014|4|6|5837.88|0.04|0.01|R|F|1993-10-18|1993-08-29|1993-10-20|TAKE BACK RETURN|FOB|into beans. final, careful theodoli| +42895|353928|28943|1|20|39638.20|0.08|0.01|N|O|1996-04-28|1996-04-13|1996-05-21|COLLECT COD|AIR|luffily final | +42895|463191|38210|2|38|43858.46|0.01|0.06|N|O|1996-04-02|1996-04-27|1996-04-11|NONE|FOB|ect blithely slyly pe| +42895|845526|45527|3|17|25015.16|0.00|0.07|N|O|1996-04-22|1996-03-28|1996-05-19|COLLECT COD|FOB|the final packages | +42895|755176|42722|4|10|12311.40|0.07|0.05|N|O|1996-02-12|1996-04-01|1996-03-02|TAKE BACK RETURN|REG AIR|fully silent pinto beans haggle slyl| +42895|241095|28608|5|24|24865.92|0.06|0.02|N|O|1996-05-17|1996-04-29|1996-06-05|COLLECT COD|REG AIR|s are carefully above the furio| +42895|69164|44167|6|27|30595.32|0.03|0.05|N|O|1996-03-20|1996-03-18|1996-03-27|COLLECT COD|REG AIR|l theodolites. blithely expres| +42920|308884|8885|1|50|94643.50|0.10|0.07|N|O|1996-12-04|1997-01-19|1996-12-22|COLLECT COD|TRUCK|, bold packages. slyly i| +42920|404851|29868|2|31|54430.73|0.03|0.02|N|O|1997-02-15|1997-02-22|1997-02-17|NONE|RAIL|s. bold, ironic | +42920|328073|15592|3|13|14313.78|0.04|0.02|N|O|1997-02-19|1997-02-03|1997-03-04|COLLECT COD|AIR|al deposits are care| +42920|919174|19175|4|25|29828.25|0.07|0.08|N|O|1997-01-26|1997-01-01|1997-02-16|TAKE BACK RETURN|SHIP|ests. furiously ironic pinto beans are fl| +42920|552959|2960|5|3|6035.79|0.10|0.07|N|O|1997-01-31|1997-02-07|1997-02-02|NONE|RAIL|y final requests boost | +42920|580990|30991|6|10|20709.70|0.06|0.01|N|O|1997-03-22|1997-01-27|1997-04-02|TAKE BACK RETURN|SHIP|efully slyly bold ide| +42920|695400|20427|7|1|1395.37|0.01|0.08|N|O|1997-02-23|1997-01-02|1997-03-15|COLLECT COD|RAIL|y blithely even foxes. slyly| +42921|583691|33692|1|8|14197.36|0.02|0.08|N|O|1995-10-06|1995-10-23|1995-10-19|COLLECT COD|FOB| along the b| +42921|80977|18481|2|30|58739.10|0.05|0.01|N|O|1995-10-16|1995-10-09|1995-10-28|TAKE BACK RETURN|MAIL|uriously unusual packages. even, bold| +42921|977862|2901|3|22|42676.04|0.04|0.04|N|O|1995-12-09|1995-10-17|1996-01-02|COLLECT COD|FOB|regularly unusual packages wake slyly about| +42921|925100|37619|4|47|52877.82|0.08|0.08|N|O|1995-09-16|1995-11-14|1995-10-07|TAKE BACK RETURN|FOB|to beans wake furiously pendin| +42921|153244|28251|5|29|37619.96|0.08|0.05|N|O|1995-12-03|1995-10-21|1995-12-16|TAKE BACK RETURN|AIR| regular theodolites int| +42921|568121|30633|6|7|8323.70|0.10|0.08|N|O|1995-12-14|1995-11-08|1996-01-04|COLLECT COD|REG AIR|ven, final dependencies. unusual p| +42922|73181|35683|1|40|46167.20|0.08|0.06|R|F|1992-09-01|1992-07-29|1992-09-27|DELIVER IN PERSON|AIR| the express acco| +42922|939491|39492|2|29|44383.05|0.00|0.05|R|F|1992-09-27|1992-08-11|1992-10-15|TAKE BACK RETURN|REG AIR|ly according to the dolphins. silent, regul| +42922|9115|34116|3|46|47109.06|0.05|0.02|A|F|1992-08-04|1992-06-29|1992-08-31|COLLECT COD|REG AIR|express, final ins| +42923|85824|23328|1|13|23527.66|0.00|0.03|R|F|1993-06-11|1993-06-18|1993-06-15|DELIVER IN PERSON|FOB|blithely ironic deposits. packag| +42924|81904|19408|1|36|67892.40|0.06|0.04|R|F|1992-08-07|1992-05-19|1992-08-14|NONE|TRUCK|aggle. slyly regular deposits cajole quick| +42924|552948|27971|2|14|28012.88|0.10|0.04|R|F|1992-07-27|1992-05-16|1992-08-25|DELIVER IN PERSON|REG AIR|aggle furiously even, | +42924|383453|45961|3|7|10755.08|0.07|0.01|A|F|1992-06-16|1992-06-08|1992-06-17|DELIVER IN PERSON|MAIL|efully silent de| +42924|681628|31629|4|18|28972.62|0.03|0.06|A|F|1992-06-01|1992-06-22|1992-06-21|NONE|FOB| express excuses snooze a| +42924|105358|42865|5|36|49080.60|0.01|0.07|A|F|1992-06-04|1992-06-20|1992-07-03|COLLECT COD|MAIL|lets. furiously bold asymptotes doubt c| +42924|751648|39194|6|41|69684.01|0.00|0.03|R|F|1992-07-05|1992-06-24|1992-07-08|DELIVER IN PERSON|AIR|hins use sl| +42924|932790|45309|7|27|49214.25|0.00|0.08|A|F|1992-05-19|1992-06-16|1992-06-10|COLLECT COD|AIR|s haggle furiously bold p| +42925|395237|45238|1|33|43963.26|0.05|0.05|N|O|1997-10-14|1997-09-18|1997-10-16|COLLECT COD|REG AIR|leep fluffily quickly re| +42925|747131|34674|2|4|4712.40|0.01|0.00|N|O|1997-07-16|1997-07-29|1997-08-12|TAKE BACK RETURN|SHIP|g the furiously silent accounts. spec| +42925|22667|22668|3|4|6358.64|0.01|0.00|N|O|1997-10-08|1997-07-31|1997-11-03|COLLECT COD|SHIP|furiously bold d| +42925|952070|14590|4|3|3366.09|0.02|0.03|N|O|1997-10-14|1997-08-27|1997-10-15|COLLECT COD|RAIL|hely unusual ideas nag at the caref| +42926|624596|37109|1|15|22808.40|0.01|0.02|A|F|1992-05-24|1992-04-27|1992-05-31|DELIVER IN PERSON|TRUCK|sly furiously ironic requests. ironic, pen| +42926|583032|20566|2|8|8920.08|0.03|0.03|A|F|1992-04-26|1992-03-19|1992-05-04|NONE|RAIL|gle slyly: express, bold pinto beans ca| +42926|5452|30453|3|19|25791.55|0.03|0.04|R|F|1992-05-31|1992-05-05|1992-06-17|DELIVER IN PERSON|SHIP|lithely ruthless wa| +42926|619283|6820|4|33|39674.25|0.00|0.02|R|F|1992-04-01|1992-04-10|1992-04-25|COLLECT COD|MAIL|the regular foxes breach according | +42926|275369|25370|5|17|22853.95|0.01|0.02|R|F|1992-05-08|1992-04-21|1992-05-17|TAKE BACK RETURN|REG AIR|ieve slyly carefully| +42926|125802|25803|6|6|10966.80|0.05|0.03|R|F|1992-05-10|1992-04-25|1992-06-01|COLLECT COD|FOB| even instru| +42927|206025|43538|1|11|10241.11|0.04|0.04|N|O|1996-08-24|1996-11-04|1996-08-29|TAKE BACK RETURN|TRUCK| wake fluffily | +42927|649322|36859|2|24|30510.96|0.06|0.06|N|O|1996-08-24|1996-11-03|1996-08-30|DELIVER IN PERSON|RAIL|sleep slyly. furi| +42927|141091|16096|3|4|4528.36|0.09|0.01|N|O|1996-09-14|1996-09-24|1996-10-11|DELIVER IN PERSON|REG AIR|ructions. express, even requests det| +42927|303913|41432|4|31|59423.90|0.04|0.04|N|O|1996-10-05|1996-11-12|1996-10-10|COLLECT COD|SHIP| the accounts| +42927|864777|2329|5|46|80119.58|0.01|0.00|N|O|1996-11-12|1996-10-29|1996-11-13|COLLECT COD|REG AIR|e carefully regular excuses. bold, ir| +42927|300631|25644|6|11|17947.82|0.10|0.07|N|O|1996-08-26|1996-10-06|1996-09-04|DELIVER IN PERSON|REG AIR|ing to the r| +42927|701106|26135|7|30|33212.10|0.06|0.05|N|O|1996-09-17|1996-10-18|1996-10-07|COLLECT COD|MAIL|e busily along the | +42952|487785|37786|1|43|76228.68|0.04|0.05|A|F|1995-04-18|1995-04-28|1995-05-15|TAKE BACK RETURN|MAIL|ke carefully. carefully regular | +42952|190750|40751|2|11|20248.25|0.03|0.00|N|F|1995-06-14|1995-05-26|1995-07-09|DELIVER IN PERSON|TRUCK|quests. packag| +42952|927881|2918|3|12|22906.08|0.08|0.05|N|O|1995-07-13|1995-05-29|1995-08-03|DELIVER IN PERSON|MAIL|ges. quickly even accounts are fur| +42953|947744|10263|1|45|80626.50|0.08|0.01|N|O|1998-08-27|1998-09-12|1998-09-05|DELIVER IN PERSON|SHIP|sual, unusual platelets cajole| +42953|717720|5263|2|25|43442.25|0.07|0.00|N|O|1998-07-21|1998-09-22|1998-08-09|TAKE BACK RETURN|RAIL| haggle. blithely pendi| +42953|715187|27702|3|40|48086.00|0.01|0.05|N|O|1998-07-06|1998-07-29|1998-07-18|TAKE BACK RETURN|MAIL|packages use carefully sly| +42953|142431|4934|4|12|17681.16|0.05|0.07|N|O|1998-10-22|1998-08-06|1998-10-24|DELIVER IN PERSON|FOB|long the unusual,| +42953|823931|48964|5|45|83470.05|0.04|0.01|N|O|1998-10-11|1998-08-08|1998-10-19|TAKE BACK RETURN|MAIL|t carefully quickly furious th| +42954|357810|7811|1|41|76579.80|0.07|0.01|A|F|1993-05-20|1993-06-13|1993-06-19|NONE|REG AIR|ally according to the quickly regular ac| +42955|295988|45989|1|22|43647.34|0.02|0.04|R|F|1993-04-20|1993-04-09|1993-04-26|COLLECT COD|AIR|ial deposits doze blithely. regular fo| +42955|665216|27730|2|13|15355.34|0.02|0.05|A|F|1993-04-16|1993-05-20|1993-04-30|NONE|REG AIR|e close dol| +42955|276753|1764|3|22|38054.28|0.10|0.04|R|F|1993-05-25|1993-04-30|1993-06-21|COLLECT COD|RAIL| are quickly aroun| +42955|372913|47928|4|22|43689.80|0.09|0.06|A|F|1993-06-09|1993-04-14|1993-06-27|NONE|RAIL| after the slowly re| +42956|34109|9110|1|14|14603.40|0.07|0.02|A|F|1993-07-04|1993-05-08|1993-08-01|NONE|TRUCK|kages wake carefully blithe| +42957|984567|9606|1|26|42939.52|0.01|0.07|R|F|1993-03-10|1993-01-28|1993-04-06|NONE|FOB|inal packages sleep| +42957|614769|14770|2|37|62298.01|0.01|0.00|A|F|1993-03-11|1992-12-12|1993-04-08|COLLECT COD|SHIP|er the slyly regular re| +42957|407986|7987|3|48|90910.08|0.01|0.00|R|F|1993-02-28|1993-01-17|1993-03-01|TAKE BACK RETURN|SHIP|quickly even deposits sublate quickly | +42957|10495|47996|4|6|8432.94|0.03|0.01|R|F|1993-01-03|1992-12-21|1993-01-27|DELIVER IN PERSON|TRUCK| ideas cajole furiously bold, iro| +42957|386281|23803|5|2|2734.54|0.04|0.04|A|F|1992-12-06|1992-12-22|1992-12-19|DELIVER IN PERSON|REG AIR|final pains afte| +42958|77317|2320|1|10|12943.10|0.02|0.08|N|O|1995-12-16|1996-02-19|1996-01-10|TAKE BACK RETURN|REG AIR| special theodolites. care| +42959|760291|22807|1|35|47294.10|0.08|0.07|N|O|1997-03-12|1997-01-21|1997-04-09|TAKE BACK RETURN|AIR|unusual hockey players haggle sly| +42984|363654|1176|1|5|8588.20|0.07|0.00|N|O|1998-02-24|1998-04-21|1998-03-03|COLLECT COD|SHIP|nusual packages wake carefully ac| +42984|923456|23457|2|29|42902.89|0.07|0.08|N|O|1998-04-25|1998-05-12|1998-04-26|NONE|SHIP|es. carefully ev| +42984|516487|28998|3|48|72166.08|0.04|0.05|N|O|1998-05-10|1998-05-11|1998-05-23|COLLECT COD|FOB|lar asymptotes| +42984|595269|20292|4|47|64119.28|0.07|0.05|N|O|1998-03-18|1998-05-14|1998-03-27|TAKE BACK RETURN|FOB|riously bold deposits. iro| +42984|677826|27827|5|48|86581.92|0.02|0.01|N|O|1998-05-10|1998-04-26|1998-05-16|COLLECT COD|RAIL|ng to the regular, regular accounts sleep | +42984|215928|3441|6|12|22126.92|0.07|0.05|N|O|1998-06-08|1998-05-15|1998-06-26|DELIVER IN PERSON|SHIP|ng foxes. slyly final packag| +42984|91120|41121|7|7|7777.84|0.00|0.04|N|O|1998-02-25|1998-04-25|1998-02-26|TAKE BACK RETURN|RAIL|ruthlessly daring packages. furiously silen| +42985|447823|35348|1|29|51353.20|0.09|0.08|N|O|1998-04-23|1998-04-04|1998-04-30|NONE|SHIP|y along the carefu| +42986|14341|39342|1|5|6276.70|0.00|0.03|A|F|1994-10-27|1994-10-27|1994-11-18|TAKE BACK RETURN|TRUCK|blithely final asymptotes| +42986|22809|10310|2|37|64076.60|0.09|0.03|A|F|1994-12-30|1994-10-24|1995-01-12|NONE|TRUCK|gular theodolites. furiously e| +42986|345029|32548|3|47|50478.47|0.09|0.06|A|F|1994-12-22|1994-11-09|1995-01-15|COLLECT COD|AIR|sly express | +42986|892439|42440|4|50|71569.50|0.07|0.02|R|F|1994-12-10|1994-10-29|1994-12-28|DELIVER IN PERSON|SHIP|y express excuses are slyly. slyl| +42986|207948|32957|5|40|74237.20|0.04|0.04|A|F|1995-01-10|1994-11-30|1995-02-01|TAKE BACK RETURN|MAIL|aggle fluffily blithely even theodolites.| +42986|969621|19622|6|10|16905.80|0.08|0.02|A|F|1994-12-18|1994-10-23|1995-01-02|TAKE BACK RETURN|TRUCK|even foxes. | +42986|404039|29056|7|10|9430.10|0.04|0.05|A|F|1995-01-07|1994-12-06|1995-01-10|TAKE BACK RETURN|RAIL|fluffily bold requests wake furiously qui| +42987|668007|5547|1|4|3899.88|0.02|0.07|R|F|1994-09-13|1994-08-07|1994-10-13|DELIVER IN PERSON|FOB|ious deposits x-ray| +42988|289688|2194|1|6|10066.02|0.06|0.02|R|F|1994-08-13|1994-08-26|1994-09-02|DELIVER IN PERSON|RAIL|nto beans. blithely ironic foxes | +42988|771317|21318|2|27|37483.56|0.07|0.01|A|F|1994-11-16|1994-09-01|1994-12-16|DELIVER IN PERSON|MAIL|sits alongside of the| +42988|519598|32109|3|35|56614.95|0.08|0.01|R|F|1994-08-15|1994-08-26|1994-09-14|NONE|REG AIR|lphins nag; | +42988|877091|2126|4|14|14952.70|0.10|0.04|R|F|1994-10-26|1994-09-06|1994-11-13|TAKE BACK RETURN|SHIP|cajole fluffily foxes. ideas are. t| +42988|251709|26720|5|6|9964.14|0.08|0.00|A|F|1994-11-07|1994-09-03|1994-11-15|TAKE BACK RETURN|TRUCK|ructions are. ironic, unusual requests wak| +42988|467730|42749|6|18|30558.78|0.07|0.01|A|F|1994-10-29|1994-10-01|1994-11-25|TAKE BACK RETURN|RAIL|ely silent accounts | +42989|605925|43462|1|29|53095.81|0.03|0.02|N|O|1995-11-08|1995-11-28|1995-11-22|COLLECT COD|TRUCK| eat carefully after the final | +42989|769487|32003|2|3|4669.35|0.03|0.03|N|O|1995-12-19|1995-10-29|1996-01-02|TAKE BACK RETURN|FOB|cajole. furiously ir| +42989|759627|22143|3|42|70836.78|0.02|0.05|N|O|1995-12-22|1995-11-27|1996-01-08|NONE|TRUCK|usly special | +42990|534859|9880|1|11|20832.13|0.10|0.08|N|O|1997-05-14|1997-07-01|1997-05-17|DELIVER IN PERSON|TRUCK|efully reg| +42990|361424|23932|2|2|2970.82|0.00|0.05|N|O|1997-07-19|1997-06-02|1997-08-12|COLLECT COD|SHIP| slyly express requests. slyly | +42990|441784|29309|3|40|69030.40|0.07|0.04|N|O|1997-08-04|1997-07-22|1997-08-22|NONE|TRUCK| quickly above the requests--| +42990|55326|30329|4|42|53815.44|0.07|0.01|N|O|1997-06-21|1997-07-20|1997-07-02|NONE|REG AIR|ly according to the quickly express excuses| +42990|855268|42820|5|24|29357.28|0.03|0.04|N|O|1997-06-28|1997-07-13|1997-06-29|DELIVER IN PERSON|RAIL|iously bold foxes boost quickly. flu| +42990|481225|31226|6|31|37392.20|0.09|0.03|N|O|1997-06-08|1997-06-30|1997-06-19|TAKE BACK RETURN|FOB|ven requests about the instructions boost | +42990|935341|35342|7|23|31654.90|0.05|0.01|N|O|1997-06-26|1997-06-25|1997-07-15|TAKE BACK RETURN|AIR|final foxes could have to integr| +42991|265999|28505|1|29|56984.42|0.03|0.01|R|F|1994-05-27|1994-07-18|1994-06-21|NONE|TRUCK|ven deposits. even, final | +42991|629990|5015|2|15|28799.40|0.06|0.01|A|F|1994-09-21|1994-07-09|1994-10-06|COLLECT COD|AIR|cording to the slyly special c| +42991|231030|43535|3|19|18259.38|0.01|0.04|A|F|1994-07-26|1994-08-11|1994-08-06|DELIVER IN PERSON|FOB|lar ideas sle| +42991|915161|40198|4|14|16465.68|0.02|0.01|A|F|1994-07-19|1994-07-20|1994-08-16|NONE|SHIP|nic accounts. | +42991|102179|14682|5|40|47246.80|0.05|0.07|A|F|1994-07-15|1994-08-05|1994-07-17|DELIVER IN PERSON|RAIL|he quickly re| +42991|307657|32670|6|15|24969.60|0.00|0.08|R|F|1994-08-05|1994-07-09|1994-08-13|NONE|SHIP|foxes are. blithely bold de| +43016|286722|49228|1|41|70057.11|0.08|0.02|N|O|1998-04-05|1998-03-29|1998-04-20|COLLECT COD|SHIP|kly regular packages sleep. bli| +43016|922064|22065|2|18|19548.36|0.03|0.01|N|O|1998-03-22|1998-03-18|1998-03-23|NONE|AIR|run. blithely regu| +43016|126412|26413|3|43|61851.63|0.04|0.00|N|O|1998-01-22|1998-03-10|1998-02-07|NONE|MAIL|e quickly. foxes doze final ideas. furi| +43016|604717|4718|4|33|53515.44|0.03|0.04|N|O|1998-03-14|1998-03-30|1998-03-31|NONE|RAIL|into beans. slyly even id| +43016|477386|39896|5|22|29993.92|0.07|0.05|N|O|1998-04-17|1998-03-30|1998-05-10|DELIVER IN PERSON|MAIL|eposits boost furiously final deposits?| +43016|424058|11583|6|34|33389.02|0.08|0.04|N|O|1998-02-08|1998-02-06|1998-03-07|TAKE BACK RETURN|REG AIR|ly final excuses. bold accounts wake. qui| +43016|138976|1479|7|18|36269.46|0.06|0.05|N|O|1998-03-04|1998-03-12|1998-03-23|TAKE BACK RETURN|AIR|packages poach | +43017|768542|31058|1|17|27378.67|0.09|0.07|N|O|1997-11-04|1997-09-10|1997-11-14|NONE|MAIL| according to the fur| +43017|878460|40978|2|8|11507.36|0.07|0.07|N|O|1997-08-03|1997-09-07|1997-08-20|COLLECT COD|REG AIR|l requests. bol| +43017|270180|45191|3|8|9201.36|0.05|0.05|N|O|1997-10-29|1997-09-18|1997-11-20|DELIVER IN PERSON|FOB|uffily final packages. unu| +43017|912562|12563|4|17|26766.84|0.06|0.06|N|O|1997-10-19|1997-08-26|1997-11-01|DELIVER IN PERSON|SHIP|sts are ca| +43017|427634|40143|5|12|18739.32|0.00|0.07|N|O|1997-08-23|1997-10-04|1997-08-29|TAKE BACK RETURN|TRUCK|se carefully according to the instr| +43017|230881|43386|6|7|12683.09|0.07|0.08|N|O|1997-10-15|1997-10-05|1997-11-12|COLLECT COD|RAIL|side of the bli| +43017|400431|432|7|37|49262.17|0.03|0.00|N|O|1997-10-09|1997-09-02|1997-11-08|DELIVER IN PERSON|MAIL|ular packages between | +43018|37781|282|1|46|79063.88|0.09|0.03|N|O|1995-06-28|1995-04-22|1995-07-18|DELIVER IN PERSON|RAIL|ing accounts nag. furiously ironic water| +43018|983556|33557|2|18|29511.18|0.05|0.02|N|O|1995-06-20|1995-06-11|1995-07-04|TAKE BACK RETURN|FOB|s. blithely sp| +43018|619456|44481|3|37|50890.54|0.01|0.00|A|F|1995-04-17|1995-05-05|1995-05-09|DELIVER IN PERSON|RAIL|ts. carefully even deposits| +43018|181833|44337|4|6|11488.98|0.02|0.05|N|F|1995-06-16|1995-05-27|1995-06-23|COLLECT COD|SHIP| fluffily reg| +43018|51109|26112|5|31|32863.10|0.05|0.00|A|F|1995-03-26|1995-04-30|1995-03-28|NONE|REG AIR| sleep carefully-- carefully regula| +43018|985553|10592|6|50|81925.50|0.04|0.02|R|F|1995-05-28|1995-06-05|1995-06-07|COLLECT COD|FOB|equests. final, bold ideas use quickly ac| +43019|352745|40267|1|42|75504.66|0.07|0.08|R|F|1993-10-09|1993-09-29|1993-10-23|NONE|MAIL|sly final, ir| +43019|576199|13733|2|20|25503.40|0.06|0.04|A|F|1993-11-01|1993-09-19|1993-11-06|NONE|FOB|bout the ironic,| +43019|168948|31452|3|29|58491.26|0.02|0.00|R|F|1993-09-01|1993-10-22|1993-09-25|COLLECT COD|REG AIR|n ideas. carefully regular packages | +43019|496951|46952|4|13|25323.09|0.02|0.08|A|F|1993-11-14|1993-09-23|1993-12-10|COLLECT COD|REG AIR|s are. blithe epitaphs sleep; c| +43019|248274|35787|5|35|42779.10|0.06|0.08|A|F|1993-10-02|1993-09-30|1993-10-03|NONE|RAIL|ly unusual dependenci| +43019|732486|7515|6|29|44035.05|0.10|0.04|A|F|1993-11-28|1993-10-21|1993-12-16|COLLECT COD|SHIP|aintain fur| +43019|887298|12333|7|49|62977.25|0.02|0.00|A|F|1993-10-30|1993-10-02|1993-11-11|NONE|FOB|arefully regul| +43020|810012|47561|1|45|41488.65|0.10|0.04|R|F|1993-09-02|1993-07-24|1993-09-05|DELIVER IN PERSON|TRUCK|eep. carefully even accounts boost pack| +43020|866536|16537|2|50|75124.50|0.05|0.01|R|F|1993-08-04|1993-08-14|1993-09-02|NONE|FOB|usly. regular, even pla| +43020|857729|45281|3|9|15180.12|0.05|0.06|R|F|1993-07-26|1993-09-04|1993-08-08|NONE|REG AIR|lyly express acc| +43020|837959|37960|4|7|13278.37|0.02|0.05|R|F|1993-07-31|1993-08-21|1993-08-30|TAKE BACK RETURN|AIR|ions affix pen| +43021|21110|21111|1|39|40213.29|0.03|0.01|A|F|1994-12-21|1994-11-23|1994-12-31|COLLECT COD|RAIL|wake. furiously pending| +43021|783250|45766|2|24|31997.28|0.10|0.05|A|F|1995-02-04|1995-01-07|1995-02-09|NONE|SHIP|ts. express deposits are slow| +43022|192420|29930|1|1|1512.42|0.02|0.02|R|F|1992-08-23|1992-09-03|1992-09-03|NONE|SHIP|lyly ironic acc| +43022|994837|7357|2|36|69544.44|0.03|0.06|A|F|1992-11-08|1992-08-30|1992-11-29|TAKE BACK RETURN|AIR|imes regular platelets | +43022|224177|49186|3|18|19820.88|0.05|0.05|R|F|1992-11-07|1992-09-02|1992-11-30|COLLECT COD|SHIP|otornis are quickly pending deposits. | +43022|726353|1382|4|45|62069.40|0.09|0.04|R|F|1992-08-15|1992-09-08|1992-09-13|TAKE BACK RETURN|SHIP|riously since t| +43022|806314|43863|5|38|46370.26|0.01|0.08|A|F|1992-09-28|1992-09-26|1992-09-30|NONE|RAIL|regular accounts wake bravely with | +43022|706983|32012|6|15|29849.25|0.07|0.08|A|F|1992-09-02|1992-10-06|1992-09-12|DELIVER IN PERSON|REG AIR|heodolites sleep according| +43023|308567|8568|1|36|56719.80|0.07|0.05|R|F|1993-07-08|1993-06-29|1993-07-29|NONE|RAIL|even requests haggle blithely above | +43023|78279|40781|2|44|55319.88|0.05|0.03|R|F|1993-07-15|1993-08-12|1993-08-14|NONE|MAIL|ending theodol| +43023|630228|5253|3|19|22005.61|0.05|0.03|A|F|1993-08-15|1993-07-03|1993-08-19|DELIVER IN PERSON|RAIL|aggle quickly. dep| +43048|347207|9714|1|10|12541.90|0.03|0.06|N|O|1998-02-14|1998-03-24|1998-02-22|DELIVER IN PERSON|REG AIR|le against the even| +43049|536760|24291|1|39|70072.86|0.07|0.08|A|F|1993-05-27|1993-06-29|1993-06-26|COLLECT COD|RAIL|ven packages. quick| +43049|324911|24912|2|24|46461.60|0.04|0.04|R|F|1993-07-29|1993-07-13|1993-08-10|NONE|FOB|oxes alongsi| +43049|765433|40464|3|12|17980.80|0.03|0.06|R|F|1993-07-05|1993-05-29|1993-07-31|TAKE BACK RETURN|FOB|ly alongside of the regular packages. quic| +43049|617175|29688|4|24|26211.36|0.04|0.01|R|F|1993-04-22|1993-06-05|1993-05-16|TAKE BACK RETURN|TRUCK|ly regular excuses. bli| +43049|851453|13971|5|7|9830.87|0.04|0.02|A|F|1993-06-12|1993-07-12|1993-06-27|DELIVER IN PERSON|RAIL|g the furious depos| +43050|54009|41513|1|13|12519.00|0.03|0.03|N|O|1997-04-17|1997-04-29|1997-05-07|COLLECT COD|FOB|ndencies. special deposi| +43050|727399|14942|2|14|19969.04|0.05|0.03|N|O|1997-06-23|1997-05-24|1997-07-12|DELIVER IN PERSON|AIR|s haggle even | +43050|378994|16516|3|24|49751.52|0.08|0.00|N|O|1997-05-28|1997-04-28|1997-06-06|TAKE BACK RETURN|FOB|rve blithely according to t| +43050|738843|38844|4|29|54572.49|0.00|0.00|N|O|1997-03-23|1997-05-11|1997-04-09|TAKE BACK RETURN|MAIL| according to the furi| +43050|732805|7834|5|33|60646.41|0.06|0.02|N|O|1997-06-16|1997-05-25|1997-06-26|TAKE BACK RETURN|SHIP|, final pack| +43050|246827|21836|6|34|60309.54|0.09|0.05|N|O|1997-06-26|1997-05-31|1997-07-12|DELIVER IN PERSON|MAIL|deas wake pe| +43050|413484|38501|7|40|55898.40|0.01|0.03|N|O|1997-05-29|1997-05-09|1997-06-22|COLLECT COD|FOB| after the unusual,| +43051|413596|38613|1|5|7547.85|0.07|0.04|A|F|1994-03-14|1994-02-15|1994-03-27|TAKE BACK RETURN|SHIP| furiously stealthy deposits int| +43051|302670|27683|2|16|26762.56|0.04|0.08|R|F|1994-02-03|1994-02-24|1994-02-09|COLLECT COD|TRUCK| final, even packages.| +43051|973208|10766|3|3|3843.48|0.04|0.06|R|F|1993-12-09|1994-01-19|1994-01-01|DELIVER IN PERSON|AIR|y regular platelets. bravely bol| +43051|696642|46643|4|17|27856.37|0.05|0.05|A|F|1994-02-18|1994-01-27|1994-03-11|DELIVER IN PERSON|TRUCK|ng, final dolphins alongside of the b| +43052|217162|4675|1|39|42086.85|0.00|0.02|A|F|1993-03-15|1993-03-21|1993-03-24|COLLECT COD|TRUCK|xes sleep slyly accounts. depos| +43052|830466|18015|2|11|15360.62|0.04|0.03|R|F|1993-04-16|1993-03-10|1993-05-07|NONE|TRUCK|st the theodolites. packages wake c| +43052|641832|41833|3|28|49666.40|0.08|0.05|R|F|1993-04-17|1993-03-30|1993-04-21|COLLECT COD|RAIL|es. carefully even requests alo| +43052|270204|7720|4|37|43445.03|0.06|0.02|R|F|1993-01-24|1993-03-26|1993-02-21|NONE|AIR|y unusual depos| +43052|317154|17155|5|43|50359.02|0.02|0.06|A|F|1993-05-08|1993-04-19|1993-06-02|TAKE BACK RETURN|TRUCK| have to haggle furiou| +43052|405130|42655|6|31|32088.41|0.06|0.03|R|F|1993-04-09|1993-03-13|1993-04-29|TAKE BACK RETURN|SHIP|xpress, unusual pinto beans caj| +43053|777651|15197|1|20|34572.40|0.03|0.02|R|F|1994-02-11|1994-01-02|1994-02-25|COLLECT COD|SHIP|ual deposits are above the fluffily iro| +43054|711615|11616|1|2|3253.16|0.06|0.04|R|F|1993-09-05|1993-08-08|1993-09-23|TAKE BACK RETURN|FOB|osits use carefully. slyly e| +43054|101515|1516|2|12|18198.12|0.06|0.02|A|F|1993-06-28|1993-07-27|1993-07-20|TAKE BACK RETURN|MAIL|ular packages. quietly ironic sheav| +43055|852732|27767|1|21|35378.49|0.02|0.00|A|F|1995-04-10|1995-05-03|1995-04-19|TAKE BACK RETURN|AIR| silent ideas. express| +43055|865494|3046|2|37|53999.65|0.08|0.01|A|F|1995-05-03|1995-03-14|1995-05-20|COLLECT COD|REG AIR|pending din| +43055|342846|30365|3|2|3777.66|0.01|0.05|R|F|1995-03-02|1995-03-29|1995-03-12|NONE|AIR|eans. blithely special packages prom| +43055|212664|177|4|31|48876.15|0.06|0.07|A|F|1995-02-15|1995-04-22|1995-02-26|DELIVER IN PERSON|TRUCK|lly according to th| +43055|240097|27610|5|42|43557.36|0.01|0.08|A|F|1995-04-01|1995-04-16|1995-04-30|COLLECT COD|REG AIR|ironic for| +43055|306537|31550|6|21|32413.92|0.02|0.06|A|F|1995-04-28|1995-04-19|1995-05-24|NONE|FOB|ross the blithely| +43080|251332|13838|1|10|12833.20|0.02|0.08|N|O|1997-06-29|1997-07-23|1997-07-17|COLLECT COD|FOB|lyly special pack| +43080|131196|43699|2|24|29452.56|0.08|0.03|N|O|1997-06-22|1997-06-09|1997-07-06|COLLECT COD|RAIL|dle furiously pending| +43081|253464|40980|1|9|12757.05|0.06|0.01|N|O|1997-03-11|1997-05-07|1997-03-30|NONE|AIR|nal deposits| +43081|962380|49938|2|14|20192.76|0.02|0.07|N|O|1997-06-19|1997-05-18|1997-06-29|DELIVER IN PERSON|MAIL|ages integrate f| +43081|720338|7881|3|28|38032.40|0.08|0.05|N|O|1997-06-12|1997-04-26|1997-07-04|NONE|SHIP|e blithely| +43081|713282|825|4|3|3885.75|0.00|0.08|N|O|1997-05-28|1997-05-06|1997-06-10|TAKE BACK RETURN|TRUCK|blithely quiet dep| +43081|122907|22908|5|23|44387.70|0.02|0.02|N|O|1997-03-31|1997-04-28|1997-04-19|COLLECT COD|SHIP|es nag slyly above the blithe| +43082|926273|26274|1|48|62363.04|0.08|0.08|N|O|1997-05-01|1997-04-04|1997-05-29|NONE|RAIL|never around the slyly e| +43082|856489|31524|2|37|53481.28|0.04|0.03|N|O|1997-04-03|1997-05-01|1997-04-18|NONE|AIR|. quickly even dependencies use quickly | +43082|509|25510|3|43|60608.50|0.02|0.03|N|O|1997-05-09|1997-04-15|1997-05-30|TAKE BACK RETURN|FOB| regular, ruthl| +43082|549824|37355|4|33|61835.40|0.06|0.01|N|O|1997-06-13|1997-04-09|1997-06-27|NONE|AIR|e bold pinto beans! q| +43082|878204|3239|5|46|54379.36|0.01|0.03|N|O|1997-04-20|1997-05-06|1997-05-05|NONE|RAIL|o unwind furiou| +43083|175305|12815|1|46|63493.80|0.04|0.06|N|O|1997-05-30|1997-06-08|1997-06-17|NONE|REG AIR|as. blithely ironic packages| +43083|335594|35595|2|27|43998.66|0.01|0.06|N|O|1997-06-07|1997-06-04|1997-06-24|NONE|AIR|ct after the ironic | +43083|326449|38956|3|36|53115.48|0.03|0.05|N|O|1997-08-20|1997-07-16|1997-08-31|COLLECT COD|REG AIR|fix furiously across the carefully even re| +43084|182670|20180|1|20|35053.40|0.08|0.04|A|F|1993-12-20|1993-12-15|1993-12-28|COLLECT COD|REG AIR|l requests th| +43084|120777|45782|2|50|89888.50|0.06|0.07|R|F|1993-12-30|1994-01-04|1994-01-02|DELIVER IN PERSON|FOB|eposits use quickly. even requests a| +43084|887281|37282|3|46|58339.04|0.05|0.08|R|F|1994-02-28|1993-12-21|1994-03-26|COLLECT COD|RAIL|y to the ironic, bold requests. quickly | +43084|521665|9196|4|33|55659.12|0.07|0.03|R|F|1994-03-12|1994-01-12|1994-03-26|TAKE BACK RETURN|SHIP|e quickly bold accounts. slyly | +43084|619807|44832|5|22|37988.94|0.05|0.05|A|F|1994-03-13|1994-02-10|1994-03-25|COLLECT COD|RAIL|the furiously final deposits. quickly ev| +43084|90843|15846|6|12|22006.08|0.03|0.05|A|F|1994-01-31|1994-01-30|1994-02-11|TAKE BACK RETURN|FOB|regular fox| +43085|826680|1713|1|27|43379.28|0.01|0.05|N|O|1998-06-02|1998-06-26|1998-06-12|TAKE BACK RETURN|MAIL|ding to the f| +43085|271|25272|2|24|28110.48|0.09|0.07|N|O|1998-04-08|1998-05-25|1998-05-03|NONE|RAIL|efully. slyly | +43085|542965|5476|3|27|54214.38|0.05|0.05|N|O|1998-05-30|1998-06-19|1998-06-28|DELIVER IN PERSON|RAIL|nto beans. final, bold deposits sleep fur| +43085|608346|33371|4|18|22577.58|0.08|0.05|N|O|1998-07-29|1998-06-18|1998-08-16|NONE|MAIL|ding decoys are blithely | +43085|465770|3298|5|15|26036.25|0.04|0.07|N|O|1998-05-05|1998-06-30|1998-05-15|TAKE BACK RETURN|REG AIR|e carefully final excuses sublate abou| +43086|19929|7430|1|5|9244.60|0.01|0.02|R|F|1993-11-12|1994-01-17|1993-11-22|COLLECT COD|REG AIR|nis. quickly ironic excuses| +43086|941330|16367|2|39|53480.31|0.05|0.00|A|F|1994-02-01|1993-12-22|1994-02-05|COLLECT COD|SHIP|long the even frets. even, regular deposi| +43086|923336|35855|3|27|36700.83|0.10|0.04|R|F|1993-11-12|1994-01-08|1993-11-13|DELIVER IN PERSON|SHIP|ular deposits use carefully: carefully ir| +43086|505400|5401|4|23|32323.74|0.10|0.03|A|F|1993-12-23|1993-12-20|1994-01-18|NONE|AIR|lly pending courts haggle sly| +43086|250614|13120|5|41|64148.60|0.09|0.05|R|F|1994-02-10|1994-01-04|1994-02-27|NONE|TRUCK|ngside of the blithely regular | +43087|623493|11030|1|45|63740.70|0.01|0.02|N|O|1996-06-11|1996-07-21|1996-06-27|DELIVER IN PERSON|RAIL|integrate fluffily car| +43087|38426|13427|2|15|20466.30|0.07|0.03|N|O|1996-08-07|1996-07-25|1996-08-22|NONE|REG AIR|old requests.| +43087|821833|46866|3|18|31586.22|0.00|0.01|N|O|1996-09-04|1996-07-13|1996-10-01|NONE|FOB|s. asymptotes are furio| +43087|541526|4037|4|16|25080.00|0.10|0.04|N|O|1996-08-04|1996-07-24|1996-08-09|DELIVER IN PERSON|AIR|fully bold dolphins ca| +43087|411826|11827|5|16|27804.80|0.07|0.08|N|O|1996-09-18|1996-08-22|1996-09-30|TAKE BACK RETURN|REG AIR|nstructions boost slyly along the furious| +43112|846771|46772|1|31|53249.63|0.00|0.00|R|F|1992-11-03|1992-11-19|1992-11-07|TAKE BACK RETURN|MAIL|ly among the| +43112|666108|3648|2|28|30073.96|0.05|0.01|A|F|1993-01-23|1992-12-28|1993-02-21|TAKE BACK RETURN|REG AIR|requests sleep furious| +43112|269572|19573|3|7|10790.92|0.09|0.04|R|F|1993-01-23|1992-12-05|1993-01-25|DELIVER IN PERSON|MAIL|xes. silent i| +43112|682903|32904|4|19|35831.53|0.04|0.07|R|F|1993-01-20|1992-12-13|1993-02-17|NONE|REG AIR|its are about the carefully pendin| +43113|768174|5720|1|5|6210.70|0.10|0.01|R|F|1992-07-23|1992-05-14|1992-08-11|DELIVER IN PERSON|RAIL|luffily bold courts? | +43113|686127|11154|2|11|12243.99|0.05|0.06|A|F|1992-06-27|1992-05-10|1992-07-11|COLLECT COD|TRUCK| dogged instructions. re| +43113|730672|43187|3|10|17026.40|0.04|0.07|R|F|1992-04-16|1992-05-05|1992-04-21|NONE|TRUCK| the requests. evenly expr| +43113|403167|40692|4|48|51366.72|0.04|0.03|R|F|1992-05-27|1992-06-27|1992-05-28|NONE|RAIL|lly; pinto beans among the blithely p| +43113|22154|9655|5|27|29056.05|0.01|0.00|R|F|1992-04-30|1992-06-07|1992-05-05|DELIVER IN PERSON|MAIL|ffily special req| +43113|333899|8912|6|50|96644.00|0.03|0.03|R|F|1992-06-06|1992-05-27|1992-06-19|NONE|AIR|s. special accounts boost slyly above| +43114|678808|28809|1|31|55389.87|0.04|0.05|N|F|1995-06-01|1995-05-23|1995-06-22|TAKE BACK RETURN|FOB|r requests. slyly unusua| +43114|715464|15465|2|29|42903.47|0.00|0.07|A|F|1995-05-27|1995-05-03|1995-05-30|DELIVER IN PERSON|SHIP|s sleep blithely carefully fina| +43114|793008|43009|3|49|53947.53|0.06|0.03|N|O|1995-07-09|1995-06-19|1995-07-27|DELIVER IN PERSON|RAIL|uffily expr| +43115|414886|2411|1|47|84640.42|0.08|0.08|A|F|1992-10-20|1992-12-18|1992-10-24|NONE|MAIL|lyly. fluffily pend| +43115|982089|7128|2|19|22249.76|0.00|0.08|R|F|1992-11-20|1992-11-21|1992-11-28|DELIVER IN PERSON|SHIP|s run across the quickly regular deposits. | +43116|62218|12219|1|8|9441.68|0.01|0.01|A|F|1994-10-05|1994-09-04|1994-10-31|COLLECT COD|AIR|uests. carefully even instruc| +43116|681698|44212|2|37|62147.42|0.02|0.05|R|F|1994-08-11|1994-09-24|1994-08-22|COLLECT COD|RAIL|sts. furiously even packages haggle ca| +43116|292227|29743|3|39|47549.19|0.04|0.07|R|F|1994-10-20|1994-08-24|1994-11-01|DELIVER IN PERSON|SHIP|iously pending sauternes aft| +43116|457220|44748|4|3|3531.60|0.06|0.08|R|F|1994-09-25|1994-08-06|1994-09-26|COLLECT COD|RAIL| foxes boost quietly after the special fox| +43116|479901|42411|5|32|60188.16|0.08|0.04|A|F|1994-08-06|1994-08-08|1994-08-13|NONE|REG AIR|lly ironic accou| +43117|183273|8280|1|13|17631.51|0.09|0.01|N|O|1996-10-13|1996-09-21|1996-10-16|DELIVER IN PERSON|AIR|rding to the| +43117|268118|5634|2|5|5430.50|0.02|0.08|N|O|1996-08-04|1996-09-13|1996-08-16|DELIVER IN PERSON|REG AIR|eodolites: spe| +43118|900190|191|1|48|57127.20|0.02|0.00|A|F|1994-06-18|1994-04-19|1994-07-10|TAKE BACK RETURN|REG AIR|y even pinto beans among the | +43119|766410|16411|1|23|33956.74|0.07|0.00|N|O|1998-02-23|1998-03-24|1998-03-01|TAKE BACK RETURN|FOB|ructions. | +43144|403564|16073|1|1|1467.54|0.01|0.08|R|F|1994-08-10|1994-07-19|1994-08-22|TAKE BACK RETURN|TRUCK|ly ironic notornis. blithel| +43144|692819|5333|2|22|39859.16|0.00|0.02|R|F|1994-08-01|1994-07-30|1994-08-24|TAKE BACK RETURN|REG AIR|ke regular ideas. expres| +43145|708691|46234|1|11|18696.26|0.05|0.02|N|O|1997-12-28|1997-11-15|1998-01-19|NONE|TRUCK|uickly across the qu| +43146|624288|36801|1|4|4849.00|0.04|0.01|A|F|1994-09-15|1994-12-09|1994-09-25|NONE|AIR|es. carefully bold notorn| +43146|397890|47891|2|39|77527.32|0.04|0.08|A|F|1994-10-16|1994-10-20|1994-10-20|DELIVER IN PERSON|TRUCK|p furiously above the slyly final ins| +43146|326976|39483|3|38|76112.48|0.02|0.06|R|F|1994-12-18|1994-12-05|1995-01-10|COLLECT COD|SHIP|osits. slyly daring | +43147|112801|25304|1|2|3627.60|0.03|0.08|N|O|1997-12-01|1998-02-02|1997-12-08|DELIVER IN PERSON|MAIL| express, fina| +43147|839373|14406|2|14|18372.62|0.05|0.05|N|O|1997-12-24|1998-02-12|1998-01-09|TAKE BACK RETURN|FOB|boldly regular deposits: furiousl| +43147|327703|2716|3|34|58843.46|0.09|0.01|N|O|1998-02-28|1998-01-24|1998-03-15|COLLECT COD|SHIP|slyly silent accounts| +43147|697109|22136|4|43|47561.01|0.09|0.02|N|O|1997-12-04|1998-01-25|1997-12-13|COLLECT COD|REG AIR|gle blithely permanent| +43148|703974|3975|1|28|55382.32|0.10|0.01|R|F|1993-12-31|1994-01-11|1994-01-16|DELIVER IN PERSON|REG AIR|nts are regular depo| +43149|304974|29987|1|30|59368.80|0.10|0.07|N|O|1997-01-22|1997-03-03|1997-02-20|TAKE BACK RETURN|AIR|ess courts. theodolites| +43149|686782|11809|2|35|61906.25|0.03|0.01|N|O|1997-02-11|1997-02-19|1997-02-13|COLLECT COD|MAIL|ven asymptotes alongside of the| +43149|731808|19351|3|45|82789.65|0.10|0.03|N|O|1997-03-15|1997-02-21|1997-03-24|NONE|AIR|ses detect carefully across the | +43149|495071|32599|4|37|39443.85|0.01|0.07|N|O|1997-02-22|1997-03-05|1997-02-25|DELIVER IN PERSON|SHIP|quickly. carefully regular theodolites acr| +43149|643297|30834|5|39|48370.14|0.05|0.04|N|O|1997-01-26|1997-03-09|1997-02-12|NONE|REG AIR|ending theodolites solve quickly un| +43149|891837|4355|6|12|21945.48|0.05|0.04|N|O|1997-03-28|1997-03-31|1997-04-15|COLLECT COD|FOB|he platelets thrash carefully regular | +43150|659070|46610|1|26|26755.04|0.02|0.06|N|O|1998-03-14|1998-05-01|1998-03-18|DELIVER IN PERSON|MAIL|ets cajole carefully even package| +43150|980246|5285|2|30|39786.00|0.10|0.02|N|O|1998-05-04|1998-04-19|1998-05-24|NONE|RAIL|ugh the slyly unusual ex| +43150|982274|32275|3|7|9493.61|0.10|0.01|N|O|1998-05-21|1998-04-16|1998-06-06|DELIVER IN PERSON|RAIL|ss the slyly re| +43151|853649|16167|1|9|14423.40|0.05|0.02|N|O|1998-07-09|1998-06-22|1998-08-01|NONE|RAIL|hely ironic| +43176|853385|3386|1|8|10706.72|0.09|0.02|R|F|1992-12-17|1992-11-15|1992-12-28|NONE|FOB|slyly even accounts boost slyly | +43176|841695|29244|2|17|27823.05|0.01|0.06|A|F|1992-10-05|1992-10-29|1992-11-01|NONE|FOB|s. special attainments | +43176|355357|42879|3|44|62142.96|0.07|0.08|R|F|1992-12-07|1992-11-04|1992-12-27|NONE|MAIL|pinto beans sleep | +43177|631967|31968|1|39|74058.27|0.08|0.08|N|O|1996-09-23|1996-10-09|1996-09-30|DELIVER IN PERSON|TRUCK| deposits cajo| +43177|457474|19984|2|33|47237.85|0.08|0.00|N|O|1996-10-27|1996-11-17|1996-11-11|TAKE BACK RETURN|AIR|uriously. slyly regular deposits promise| +43178|393883|6391|1|17|33606.79|0.04|0.03|N|O|1997-03-21|1997-04-16|1997-04-18|NONE|AIR|ckly idle somas are slyly: quickly s| +43178|980912|18470|2|8|15942.96|0.03|0.02|N|O|1997-05-01|1997-04-05|1997-05-08|COLLECT COD|TRUCK|theodolites | +43179|975955|25956|1|32|64989.12|0.00|0.08|N|O|1997-08-05|1997-10-29|1997-08-27|NONE|MAIL|ous asympto| +43179|861757|36792|2|20|34374.20|0.03|0.07|N|O|1997-08-22|1997-10-19|1997-09-20|NONE|REG AIR|mas. packages affix slyly against | +43179|538957|26488|3|7|13971.51|0.02|0.07|N|O|1997-08-08|1997-10-24|1997-09-07|NONE|TRUCK|iously after the b| +43179|237966|12975|4|11|20943.45|0.07|0.05|N|O|1997-10-30|1997-09-14|1997-11-27|TAKE BACK RETURN|MAIL|l deposits was doggedly across the blith| +43179|480134|42644|5|22|24510.42|0.03|0.01|N|O|1997-09-20|1997-09-05|1997-10-20|TAKE BACK RETURN|MAIL|osits hagg| +43179|608097|45634|6|12|12060.72|0.00|0.07|N|O|1997-10-29|1997-10-10|1997-11-08|NONE|FOB|as boost blithely up| +43179|281370|18886|7|46|62162.56|0.03|0.07|N|O|1997-11-28|1997-09-09|1997-12-17|DELIVER IN PERSON|MAIL|ickly unusual foxes. s| +43180|978846|3885|1|26|50044.80|0.06|0.05|R|F|1994-03-23|1994-02-16|1994-04-06|TAKE BACK RETURN|RAIL| ironic theodolites. carefully ir| +43180|457601|32620|2|31|48315.98|0.09|0.02|R|F|1994-03-05|1994-02-14|1994-04-04|TAKE BACK RETURN|AIR|tes. carefull| +43180|892296|17331|3|22|28341.50|0.00|0.05|R|F|1994-01-25|1994-03-01|1994-02-13|DELIVER IN PERSON|MAIL|tect about the final deposits. bo| +43180|806779|19296|4|4|6742.92|0.09|0.06|A|F|1994-03-05|1994-02-14|1994-03-10|TAKE BACK RETURN|AIR|cajole fluffily alongside of the slyly| +43180|518529|18530|5|38|58805.00|0.01|0.02|A|F|1994-03-20|1994-02-16|1994-04-14|TAKE BACK RETURN|TRUCK|uriously final foxes boost quickly acro| +43181|526853|39364|1|12|22557.96|0.06|0.04|R|F|1993-12-17|1994-01-20|1993-12-29|NONE|MAIL|jole ruthlessly ironic accounts. blit| +43182|231285|43790|1|8|9730.16|0.02|0.00|R|F|1992-09-02|1992-08-10|1992-09-05|DELIVER IN PERSON|MAIL|ts play slyly after the f| +43182|196584|9088|2|9|15125.22|0.05|0.05|A|F|1992-06-16|1992-08-16|1992-07-02|TAKE BACK RETURN|SHIP|se furiously. blithely | +43182|980720|43240|3|15|27010.20|0.00|0.01|A|F|1992-06-26|1992-07-22|1992-07-21|DELIVER IN PERSON|SHIP| the silently silent request| +43182|954769|4770|4|48|87538.56|0.01|0.07|A|F|1992-09-23|1992-08-10|1992-10-12|NONE|SHIP|re furious| +43182|799913|37459|5|44|88566.72|0.10|0.00|R|F|1992-08-18|1992-07-30|1992-09-08|NONE|SHIP|p across the foxes. slyly ironic req| +43182|136715|24222|6|8|14013.68|0.01|0.08|R|F|1992-07-31|1992-08-10|1992-08-06|COLLECT COD|MAIL|ully final accounts above the pending, iron| +43182|763904|1450|7|46|90522.02|0.08|0.07|R|F|1992-06-23|1992-06-25|1992-06-28|NONE|TRUCK|t the silent deposits sleep about th| +43183|930757|43276|1|29|51843.59|0.09|0.07|R|F|1992-09-03|1992-09-18|1992-09-05|DELIVER IN PERSON|REG AIR|yly even excuses. unusual packages nag bli| +43208|977816|2855|1|11|20831.47|0.04|0.00|A|F|1994-04-27|1994-07-18|1994-05-10|DELIVER IN PERSON|MAIL|e bravely final theodolites| +43208|153475|40985|2|3|4585.41|0.06|0.00|A|F|1994-07-16|1994-07-07|1994-07-22|NONE|REG AIR|y ironic pinto beans. unusual fr| +43208|448098|48099|3|3|3138.21|0.00|0.01|R|F|1994-07-05|1994-05-27|1994-07-16|NONE|AIR|ronic platelets u| +43208|172589|35093|4|22|36554.76|0.04|0.08|R|F|1994-05-16|1994-07-09|1994-05-23|NONE|REG AIR|ages wake according to the fu| +43208|700896|38439|5|32|60699.52|0.03|0.07|R|F|1994-06-25|1994-07-15|1994-06-26|TAKE BACK RETURN|RAIL|lets. even, ironic ac| +43209|739269|26812|1|23|30089.29|0.03|0.05|N|O|1996-10-13|1996-10-25|1996-11-01|TAKE BACK RETURN|TRUCK|s haggle quickly q| +43209|880902|43420|2|22|41422.92|0.02|0.00|N|O|1996-11-03|1996-11-22|1996-11-18|COLLECT COD|SHIP| the quickly f| +43209|312561|80|3|50|78677.50|0.10|0.01|N|O|1996-12-01|1996-11-12|1996-12-29|COLLECT COD|SHIP|ely regular s| +43209|200431|37944|4|20|26628.40|0.01|0.07|N|O|1996-11-08|1996-11-03|1996-11-09|DELIVER IN PERSON|TRUCK|osely final i| +43209|631836|6861|5|3|5303.40|0.09|0.08|N|O|1996-11-11|1996-10-11|1996-11-28|NONE|RAIL|ng to the fluffily even pear| +43209|267452|4968|6|13|18452.72|0.06|0.03|N|O|1996-09-11|1996-09-30|1996-10-05|NONE|REG AIR| final theodolites. packa| +43209|61653|24155|7|42|67815.30|0.09|0.00|N|O|1996-10-20|1996-10-13|1996-11-11|NONE|TRUCK|nal, even accounts are| +43210|191192|3696|1|46|59026.74|0.04|0.08|A|F|1994-01-02|1994-01-10|1994-01-18|TAKE BACK RETURN|TRUCK|pinto bean| +43210|361116|23624|2|36|42375.60|0.03|0.00|A|F|1993-12-16|1994-02-13|1993-12-22|COLLECT COD|AIR|areful dolphins maintain slyly. furiously | +43210|264156|14157|3|46|51526.44|0.07|0.04|R|F|1994-01-18|1994-02-09|1994-01-26|TAKE BACK RETURN|AIR|onic excuses. requests across | +43210|653126|28153|4|14|15107.26|0.10|0.04|A|F|1994-03-28|1994-03-04|1994-04-09|DELIVER IN PERSON|REG AIR|usly bold ideas. quickly final packages caj| +43210|87106|12109|5|5|5465.50|0.02|0.08|R|F|1994-04-01|1994-01-13|1994-04-07|TAKE BACK RETURN|MAIL|ole. requests aroun| +43210|982649|20207|6|32|55411.20|0.01|0.03|A|F|1993-12-12|1994-02-15|1994-01-04|COLLECT COD|AIR|lly ironic Tire| +43211|188773|1277|1|30|55853.10|0.06|0.04|N|O|1996-11-17|1996-10-27|1996-12-02|COLLECT COD|FOB|ourts. quick pint| +43211|699598|37138|2|48|76682.88|0.09|0.05|N|O|1996-09-18|1996-09-30|1996-09-19|COLLECT COD|REG AIR|lly pending deposi| +43211|131209|43712|3|36|44647.20|0.00|0.01|N|O|1996-09-30|1996-10-26|1996-10-08|NONE|REG AIR|blithely ironic accounts along the specia| +43212|190417|27927|1|29|43714.89|0.01|0.02|N|O|1998-08-21|1998-07-06|1998-09-18|DELIVER IN PERSON|RAIL|usly packages. slyly q| +43212|327480|27481|2|46|69343.62|0.00|0.04|N|O|1998-07-20|1998-06-26|1998-07-26|TAKE BACK RETURN|REG AIR|al deposits after the carefully express i| +43212|940209|27764|3|7|8744.12|0.00|0.00|N|O|1998-07-14|1998-07-16|1998-08-05|DELIVER IN PERSON|MAIL| after the boldly final| +43212|85414|10417|4|32|44781.12|0.01|0.06|N|O|1998-07-11|1998-07-22|1998-07-14|NONE|MAIL|quickly foxes! | +43212|548557|48558|5|47|75459.91|0.06|0.00|N|O|1998-05-11|1998-06-08|1998-05-17|COLLECT COD|TRUCK|es the slyly| +43213|484205|34206|1|39|46378.02|0.02|0.00|R|F|1993-09-16|1993-09-11|1993-09-30|TAKE BACK RETURN|SHIP|s boost closely alongside of the boldly| +43213|22226|47227|2|10|11482.20|0.10|0.08|R|F|1993-07-08|1993-08-22|1993-07-31|DELIVER IN PERSON|AIR|arefully slow theodolites n| +43213|541046|3557|3|19|20653.38|0.04|0.07|R|F|1993-10-12|1993-09-21|1993-10-21|TAKE BACK RETURN|RAIL|egular packages solve slyly. rut| +43213|346761|9268|4|3|5423.25|0.06|0.00|R|F|1993-07-01|1993-09-02|1993-07-25|COLLECT COD|MAIL|eodolites poach above the frets.| +43213|999309|36867|5|39|54922.14|0.07|0.00|R|F|1993-10-15|1993-08-14|1993-11-05|DELIVER IN PERSON|FOB|uffily even requests sleep sly| +43214|560722|48256|1|7|12478.90|0.09|0.00|R|F|1994-02-12|1994-03-16|1994-03-11|NONE|MAIL|osits above the unusual requests b| +43214|47020|9521|2|39|37713.78|0.03|0.08|R|F|1994-03-18|1994-03-15|1994-03-25|NONE|TRUCK|ccounts integr| +43214|252939|15445|3|32|60541.44|0.05|0.04|R|F|1994-01-25|1994-02-20|1994-02-24|COLLECT COD|TRUCK|ss deposits sleep quickly quickly pendi| +43214|129791|29792|4|19|34595.01|0.05|0.05|A|F|1994-01-21|1994-02-16|1994-02-13|TAKE BACK RETURN|MAIL| quickly furiously pending platele| +43215|634127|9152|1|46|48810.14|0.07|0.07|R|F|1992-11-07|1993-01-11|1992-11-11|TAKE BACK RETURN|AIR|usly slyly pending theodolites. carefully e| +43240|270777|8293|1|6|10486.56|0.09|0.06|N|O|1997-05-21|1997-05-28|1997-06-06|NONE|AIR|nic deposits promise quickly along the bli| +43240|934087|46606|2|8|8968.32|0.07|0.07|N|O|1997-07-10|1997-07-06|1997-07-15|COLLECT COD|REG AIR|silent requests boost quickly. ironic, e| +43240|197671|35181|3|45|79590.15|0.02|0.00|N|O|1997-04-25|1997-06-01|1997-05-06|DELIVER IN PERSON|FOB|ing accounts acros| +43240|245055|20064|4|19|19000.76|0.03|0.00|N|O|1997-04-24|1997-05-15|1997-05-04|COLLECT COD|AIR|accounts are furiously above the | +43240|638657|13682|5|30|47868.60|0.07|0.04|N|O|1997-04-15|1997-06-29|1997-05-12|NONE|RAIL| of the fu| +43240|895477|20512|6|22|32393.46|0.06|0.05|N|O|1997-05-04|1997-07-02|1997-05-24|COLLECT COD|TRUCK|riously close packages snooze around the i| +43240|280384|42890|7|33|45024.21|0.02|0.08|N|O|1997-04-20|1997-06-30|1997-05-01|DELIVER IN PERSON|FOB|o beans inside the ironic deposits cajole| +43241|403715|3716|1|1|1618.69|0.01|0.01|N|O|1998-02-13|1998-03-06|1998-03-10|NONE|MAIL|al foxes nag. package| +43241|232218|44723|2|18|20703.60|0.00|0.03|N|O|1998-03-17|1998-03-17|1998-04-06|NONE|TRUCK|ss deposits.| +43242|134180|21687|1|26|31568.68|0.09|0.05|R|F|1994-07-14|1994-04-19|1994-07-31|DELIVER IN PERSON|FOB|haggle final deposits? furiously| +43242|158316|20820|2|19|26111.89|0.04|0.04|R|F|1994-05-17|1994-04-18|1994-05-31|DELIVER IN PERSON|AIR|ing accounts. a| +43242|811236|11237|3|24|27532.56|0.01|0.00|R|F|1994-06-17|1994-04-15|1994-06-25|DELIVER IN PERSON|FOB|ys are slyly bold theodolites. | +43242|438108|25633|4|9|9414.72|0.01|0.08|A|F|1994-03-28|1994-06-02|1994-04-11|NONE|REG AIR|ourts cajole car| +43242|276174|38680|5|6|6900.96|0.05|0.07|R|F|1994-06-06|1994-06-12|1994-06-27|DELIVER IN PERSON|REG AIR|ess platelets. slyly silent asym| +43242|649322|24347|6|30|38138.70|0.10|0.04|A|F|1994-07-01|1994-04-19|1994-07-23|TAKE BACK RETURN|RAIL|. requests are-- reg| +43242|148518|48519|7|24|37596.24|0.00|0.00|A|F|1994-04-20|1994-05-05|1994-05-10|TAKE BACK RETURN|REG AIR|rs engage. careful| +43243|133274|20781|1|25|32681.75|0.06|0.06|N|O|1998-05-25|1998-05-06|1998-06-13|TAKE BACK RETURN|REG AIR|thely regularly bold instructions.| +43243|934228|21783|2|28|35341.04|0.02|0.03|N|O|1998-03-27|1998-04-08|1998-04-14|COLLECT COD|SHIP|te. carefully bold req| +43243|559606|34629|3|16|26649.28|0.00|0.00|N|O|1998-03-14|1998-04-12|1998-03-26|TAKE BACK RETURN|AIR|are. ironic accounts sle| +43244|534475|22006|1|22|33207.90|0.04|0.06|R|F|1992-11-27|1992-09-15|1992-12-01|NONE|REG AIR| the express deposits. careful| +43245|827914|2947|1|46|84726.02|0.01|0.04|A|F|1993-02-09|1993-03-03|1993-03-09|COLLECT COD|REG AIR|slyly express| +43245|744696|7211|2|31|53960.46|0.06|0.00|R|F|1993-04-02|1993-01-25|1993-04-09|NONE|MAIL|o the requests. foxes cajole around the | +43245|105000|42507|3|35|35175.00|0.02|0.06|A|F|1993-02-16|1993-01-28|1993-02-26|TAKE BACK RETURN|REG AIR| requests wake| +43245|718855|6398|4|40|74952.80|0.10|0.00|A|F|1993-03-10|1993-01-30|1993-03-16|TAKE BACK RETURN|MAIL| deposits c| +43246|585820|48332|1|36|68608.80|0.07|0.03|R|F|1993-04-14|1993-05-26|1993-04-20|TAKE BACK RETURN|RAIL|eposits; express, fin| +43247|802787|2788|1|37|62520.38|0.09|0.06|A|F|1994-05-26|1994-05-04|1994-06-24|DELIVER IN PERSON|MAIL|aggle express, unusual platelets. bold p| +43247|432504|20029|2|44|63205.12|0.02|0.04|A|F|1994-04-13|1994-06-09|1994-04-28|TAKE BACK RETURN|MAIL|ckages affix quickly. | +43272|238435|38436|1|10|13734.20|0.04|0.03|N|O|1998-05-20|1998-03-27|1998-05-27|COLLECT COD|TRUCK|de of the foxes. fluffily expres| +43272|368809|31317|2|24|45066.96|0.07|0.04|N|O|1998-02-25|1998-03-15|1998-03-19|TAKE BACK RETURN|FOB|onic platelets| +43272|568572|31084|3|45|73824.75|0.07|0.07|N|O|1998-06-02|1998-03-13|1998-06-15|TAKE BACK RETURN|FOB|hs print. blit| +43272|977535|2574|4|13|20962.37|0.02|0.04|N|O|1998-02-18|1998-03-16|1998-02-27|TAKE BACK RETURN|TRUCK| quickly e| +43272|424470|11995|5|29|40439.05|0.04|0.05|N|O|1998-04-28|1998-05-02|1998-05-07|DELIVER IN PERSON|TRUCK|even dolphins. pending epitaphs a| +43273|945183|45184|1|41|50353.74|0.08|0.02|A|F|1993-02-16|1993-02-20|1993-03-17|COLLECT COD|FOB|ate after the careful acco| +43274|336534|11547|1|43|67532.36|0.03|0.05|R|F|1993-06-22|1993-07-01|1993-07-02|COLLECT COD|AIR|heodolites affix q| +43274|118794|6301|2|17|30817.43|0.05|0.00|R|F|1993-06-29|1993-06-22|1993-07-14|COLLECT COD|RAIL|ely regular fo| +43274|560918|10919|3|28|55408.92|0.06|0.05|A|F|1993-07-29|1993-06-29|1993-08-19|NONE|MAIL|haggle slyly carefully express req| +43274|339127|14140|4|22|25654.42|0.10|0.01|R|F|1993-07-25|1993-05-30|1993-07-31|COLLECT COD|MAIL|ch furiousl| +43274|702756|40299|5|30|52761.60|0.02|0.04|A|F|1993-06-02|1993-06-27|1993-06-10|TAKE BACK RETURN|TRUCK|sts wake carefully after the bold reque| +43275|535070|35071|1|7|7735.35|0.00|0.01|R|F|1992-07-16|1992-06-11|1992-07-25|DELIVER IN PERSON|TRUCK|s cajole across the entici| +43275|909837|9838|2|39|72024.81|0.09|0.02|A|F|1992-06-11|1992-05-20|1992-07-04|COLLECT COD|FOB|r packages print slyly. fluffi| +43275|622626|10163|3|6|9291.54|0.03|0.03|A|F|1992-05-27|1992-05-21|1992-06-25|DELIVER IN PERSON|FOB|ess packages detect beside the final waters| +43275|463567|1095|4|38|58160.52|0.05|0.03|R|F|1992-05-21|1992-06-17|1992-06-08|DELIVER IN PERSON|FOB|ntly ironic, final dependencies. pending fo| +43275|155881|30888|5|28|54232.64|0.09|0.06|A|F|1992-07-11|1992-06-07|1992-07-25|NONE|SHIP|hely enticing requests lose| +43276|918633|6188|1|47|77624.73|0.00|0.06|A|F|1993-10-18|1993-09-23|1993-10-28|COLLECT COD|AIR|ct slyly final deposits. r| +43276|461700|36719|2|49|81422.32|0.03|0.08|R|F|1993-11-09|1993-10-21|1993-11-10|TAKE BACK RETURN|MAIL|uests after the requests nag quickly ide| +43276|787065|24611|3|41|47233.23|0.02|0.07|A|F|1993-10-10|1993-10-28|1993-11-07|TAKE BACK RETURN|TRUCK|l theodolites doubt ca| +43277|5058|30059|1|26|25039.30|0.08|0.01|N|O|1998-03-22|1998-04-14|1998-04-13|DELIVER IN PERSON|SHIP|uests. carefully bold packa| +43277|999700|24739|2|2|3599.32|0.10|0.07|N|O|1998-05-30|1998-04-24|1998-06-27|COLLECT COD|FOB|lly beside the carefully unusual requ| +43277|956469|31508|3|31|47288.02|0.04|0.04|N|O|1998-03-16|1998-04-14|1998-04-03|TAKE BACK RETURN|REG AIR| ideas cajole blithely af| +43277|366263|16264|4|2|2658.50|0.06|0.02|N|O|1998-05-23|1998-05-07|1998-06-11|DELIVER IN PERSON|FOB| ironic realms. requests across | +43277|773429|10975|5|14|21033.46|0.07|0.03|N|O|1998-05-03|1998-04-01|1998-06-01|DELIVER IN PERSON|AIR|ackages. boldly even | +43277|12785|37786|6|25|42444.50|0.04|0.03|N|O|1998-05-12|1998-05-13|1998-05-15|DELIVER IN PERSON|RAIL|ular packages use| +43278|569473|31985|1|25|38561.25|0.05|0.04|R|F|1994-09-28|1994-12-08|1994-10-23|DELIVER IN PERSON|MAIL|sual deposits out| +43278|132063|44566|2|31|33946.86|0.08|0.03|R|F|1994-12-31|1994-11-26|1995-01-26|TAKE BACK RETURN|AIR| regular asymptotes detect. deposits | +43278|568238|30750|3|21|27430.41|0.06|0.03|R|F|1994-12-26|1994-10-15|1995-01-22|TAKE BACK RETURN|RAIL|ts along the furiously final | +43278|375780|795|4|7|12990.39|0.01|0.00|A|F|1994-12-30|1994-11-09|1995-01-13|TAKE BACK RETURN|AIR|ke along the express foxes. quickly ironic | +43278|726455|1484|5|26|38516.92|0.00|0.03|A|F|1994-09-30|1994-10-12|1994-10-09|DELIVER IN PERSON|TRUCK|le. final deposits boost stealthily. iro| +43278|523208|23209|6|13|16005.34|0.00|0.08|R|F|1995-01-08|1994-11-22|1995-01-30|NONE|MAIL|atop the carefully regular depend| +43279|663936|13937|1|30|56997.00|0.09|0.00|R|F|1994-02-19|1994-03-19|1994-03-06|DELIVER IN PERSON|AIR|its will have to wake? fi| +43279|763958|1504|2|12|24263.04|0.09|0.07|R|F|1994-05-12|1994-02-24|1994-05-31|TAKE BACK RETURN|TRUCK|aters use fluffily pac| +43279|825452|37969|3|13|17906.33|0.04|0.04|A|F|1994-02-23|1994-03-05|1994-03-22|NONE|TRUCK|usly sly accounts u| +43304|990561|40562|1|38|62757.76|0.05|0.01|R|F|1993-04-23|1993-04-09|1993-05-14|TAKE BACK RETURN|FOB| furiously| +43304|348453|10960|2|42|63060.48|0.00|0.07|R|F|1993-01-28|1993-03-15|1993-02-07|NONE|RAIL|s wake alon| +43305|249379|36892|1|8|10626.88|0.07|0.08|N|O|1996-12-12|1996-11-16|1996-12-18|DELIVER IN PERSON|REG AIR|quickly even instructions boost blithely| +43305|310964|35977|2|11|21724.45|0.02|0.02|N|O|1996-12-16|1996-11-24|1997-01-10|NONE|REG AIR|the final de| +43305|366464|16465|3|42|64278.90|0.08|0.08|N|O|1996-12-13|1996-10-27|1996-12-26|COLLECT COD|TRUCK| instructions. slyly ironic| +43305|147604|10107|4|41|67715.60|0.06|0.00|N|O|1996-12-02|1996-11-14|1996-12-26|TAKE BACK RETURN|AIR|accounts. regular ideas integrate| +43305|767850|30366|5|41|78630.62|0.00|0.00|N|O|1996-12-06|1996-12-14|1996-12-24|TAKE BACK RETURN|MAIL|ringly even patterns. slyly even | +43305|241682|4187|6|15|24355.05|0.09|0.02|N|O|1996-12-26|1996-12-02|1997-01-19|DELIVER IN PERSON|RAIL|the furiously express deposits. silent,| +43305|942199|17236|7|11|13652.65|0.09|0.05|N|O|1996-11-03|1996-12-06|1996-11-20|NONE|REG AIR|lar ideas. carefully regu| +43306|538361|13382|1|49|68567.66|0.04|0.00|R|F|1992-07-31|1992-10-05|1992-08-11|TAKE BACK RETURN|REG AIR|gular courts. regular, ironic asymptot| +43306|223281|48290|2|35|42149.45|0.03|0.00|R|F|1992-10-08|1992-09-16|1992-10-15|NONE|TRUCK|ackages affix b| +43306|674124|49151|3|24|26354.16|0.00|0.04|A|F|1992-09-11|1992-08-10|1992-09-20|TAKE BACK RETURN|TRUCK|ously pendin| +43306|992974|30532|4|41|84744.13|0.08|0.03|R|F|1992-09-04|1992-08-29|1992-09-10|TAKE BACK RETURN|MAIL|blate furiously; packages cajole| +43306|903360|3361|5|17|23176.44|0.04|0.00|A|F|1992-11-03|1992-08-09|1992-11-14|TAKE BACK RETURN|RAIL|eep fluffily across the slyly unusual req| +43306|759716|22232|6|35|62148.80|0.02|0.01|A|F|1992-08-15|1992-09-22|1992-08-26|TAKE BACK RETURN|SHIP|ds sleep slyly bravely final deposits. p| +43306|531102|18633|7|10|11330.80|0.06|0.04|R|F|1992-08-27|1992-08-14|1992-09-03|DELIVER IN PERSON|RAIL|jole slyly blithely | +43307|225031|12544|1|1|956.02|0.06|0.00|N|O|1996-10-20|1996-12-28|1996-10-26|TAKE BACK RETURN|RAIL| special dolphins. slyly silent depen| +43307|84156|9159|2|21|23943.15|0.03|0.05|N|O|1997-01-30|1996-11-26|1997-02-26|DELIVER IN PERSON|MAIL|as. carefully ironic accoun| +43307|403250|40775|3|40|46129.20|0.04|0.01|N|O|1997-01-01|1996-11-10|1997-01-13|COLLECT COD|AIR|posits might nag. furiously unusual do| +43307|405973|18482|4|30|56368.50|0.08|0.06|N|O|1997-01-27|1996-11-16|1997-02-02|COLLECT COD|REG AIR|c packages sleep fluffily after the slyly| +43307|187909|12916|5|37|73885.30|0.03|0.04|N|O|1996-11-03|1996-12-06|1996-11-14|NONE|REG AIR|sual requests haggle slyly abou| +43307|181824|6831|6|46|87667.72|0.04|0.08|N|O|1997-01-03|1996-12-21|1997-01-26|DELIVER IN PERSON|AIR|bold pinto beans.| +43307|901884|1885|7|14|26401.76|0.06|0.03|N|O|1996-10-07|1996-12-03|1996-10-08|NONE|FOB|egular ideas| +43308|954547|17067|1|6|9609.00|0.02|0.01|R|F|1993-08-05|1993-08-01|1993-08-15|DELIVER IN PERSON|SHIP|ld accounts. excuses wake. regula| +43308|61539|11540|2|28|42014.84|0.04|0.04|R|F|1993-07-04|1993-06-15|1993-07-05|NONE|FOB|ays ironic ideas. regular| +43309|587916|428|1|25|50097.25|0.10|0.00|N|O|1996-01-05|1996-01-16|1996-01-29|TAKE BACK RETURN|AIR|he fluffily even ideas. asymptotes eat | +43310|319986|19987|1|2|4011.94|0.09|0.00|A|F|1994-06-20|1994-06-13|1994-06-25|TAKE BACK RETURN|MAIL|ely slyly even requ| +43310|2454|2455|2|9|12208.05|0.10|0.08|A|F|1994-06-02|1994-06-07|1994-06-20|DELIVER IN PERSON|TRUCK| idly sly deposits about the| +43311|179927|42431|1|48|96332.16|0.03|0.05|N|O|1997-01-16|1996-12-28|1997-01-21|TAKE BACK RETURN|TRUCK|al, pending ideas. pending theo| +43311|30960|5961|2|44|83202.24|0.03|0.03|N|O|1997-01-03|1996-12-18|1997-01-09|DELIVER IN PERSON|FOB|e even dependencies.| +43311|328319|28320|3|4|5389.20|0.03|0.01|N|O|1996-11-06|1996-12-24|1996-11-18|TAKE BACK RETURN|AIR| excuses run pending instructio| +43311|43835|18836|4|21|37355.43|0.05|0.02|N|O|1996-12-23|1996-12-24|1996-12-31|NONE|FOB|unusual asymptotes. final, even packages a| +43311|729604|4633|5|29|47373.53|0.07|0.08|N|O|1997-02-08|1996-12-09|1997-02-19|DELIVER IN PERSON|FOB|ular deposits affix. p| +43311|453499|16009|6|27|39216.69|0.05|0.03|N|O|1996-12-27|1996-12-27|1996-12-31|COLLECT COD|TRUCK|ructions. furiously pending depe| +43311|946577|46578|7|8|12988.24|0.01|0.02|N|O|1996-12-30|1997-01-07|1997-01-28|COLLECT COD|SHIP|gle against| +43336|105919|18422|1|44|84696.04|0.03|0.05|N|O|1996-05-18|1996-05-11|1996-06-16|TAKE BACK RETURN|REG AIR|st the frays. slyl| +43336|170315|20316|2|12|16623.72|0.02|0.01|N|O|1996-07-17|1996-05-04|1996-07-23|DELIVER IN PERSON|AIR|nal requests are. final pack| +43336|478544|3563|3|36|54810.72|0.00|0.05|N|O|1996-04-23|1996-05-24|1996-05-10|DELIVER IN PERSON|REG AIR|counts. final dinos affix blithely reg| +43337|409004|34021|1|49|44736.02|0.09|0.00|A|F|1995-01-11|1995-02-18|1995-01-22|NONE|FOB| above the slyly regular instructions| +43337|127164|39667|2|47|55984.52|0.05|0.04|R|F|1995-01-30|1995-02-17|1995-02-14|NONE|RAIL|to beans toward the| +43338|185500|35501|1|25|39637.50|0.09|0.02|N|O|1996-04-28|1996-06-18|1996-05-02|COLLECT COD|AIR|are. quickly regular ex| +43338|690881|40882|2|5|9359.25|0.10|0.01|N|O|1996-06-12|1996-06-05|1996-06-14|DELIVER IN PERSON|SHIP|nstructions. carefully even requests sl| +43339|613196|38221|1|29|32165.64|0.03|0.06|R|F|1994-10-09|1994-09-05|1994-10-13|DELIVER IN PERSON|TRUCK|old across the bold, | +43340|634411|46924|1|6|8072.28|0.08|0.05|R|F|1994-05-28|1994-05-09|1994-06-03|TAKE BACK RETURN|AIR|ns use furiou| +43340|542610|42611|2|17|28094.03|0.09|0.07|R|F|1994-07-15|1994-06-19|1994-08-06|TAKE BACK RETURN|MAIL| blithely p| +43340|633563|46076|3|2|2993.06|0.00|0.08|A|F|1994-05-09|1994-06-07|1994-05-24|COLLECT COD|RAIL|the regular excuses wak| +43340|282159|19675|4|4|4564.56|0.09|0.07|A|F|1994-04-18|1994-07-04|1994-04-28|COLLECT COD|SHIP| of the express tithes. pe| +43340|235174|47679|5|50|55458.00|0.08|0.04|R|F|1994-05-17|1994-07-02|1994-05-19|TAKE BACK RETURN|RAIL|ar pains. n| +43341|776181|13727|1|37|46514.55|0.03|0.04|N|O|1998-06-10|1998-07-11|1998-06-23|COLLECT COD|FOB|ar accounts sleep slyly beside | +43341|263560|1076|2|16|24376.80|0.04|0.03|N|O|1998-04-17|1998-05-25|1998-04-25|DELIVER IN PERSON|TRUCK|oost after the qui| +43341|639843|27380|3|39|69529.59|0.03|0.02|N|O|1998-05-22|1998-07-03|1998-06-02|NONE|SHIP|uctions wake furiously express accounts. | +43341|826360|26361|4|47|60457.04|0.02|0.04|N|O|1998-05-09|1998-07-05|1998-05-29|COLLECT COD|FOB|ccounts. ruthlessly pending | +43341|620879|45904|5|16|28797.44|0.04|0.00|N|O|1998-06-15|1998-06-15|1998-07-13|TAKE BACK RETURN|TRUCK|eep sometimes acros| +43342|966793|4351|1|26|48353.50|0.02|0.07|N|O|1996-09-12|1996-09-04|1996-09-25|TAKE BACK RETURN|REG AIR|ly regular packages are slyly blithely bold| +43342|884931|47449|2|13|24906.57|0.01|0.03|N|O|1996-08-04|1996-09-01|1996-08-30|NONE|RAIL|he quickly silent | +43342|20485|45486|3|22|30920.56|0.05|0.03|N|O|1996-07-19|1996-08-27|1996-08-18|DELIVER IN PERSON|MAIL|slyly special deposits| +43343|165668|40675|1|22|38140.52|0.08|0.08|N|O|1998-07-09|1998-08-28|1998-08-08|COLLECT COD|RAIL|x quickly. she| +43343|379409|29410|2|8|11907.12|0.03|0.01|N|O|1998-09-11|1998-08-01|1998-09-16|DELIVER IN PERSON|SHIP|tes cajole slyly about the ir| +43343|719151|19152|3|36|42124.32|0.02|0.08|N|O|1998-06-19|1998-07-08|1998-06-23|DELIVER IN PERSON|MAIL| after the carefully final requests| +43343|759899|9900|4|46|90107.56|0.09|0.02|N|O|1998-08-02|1998-07-19|1998-08-22|DELIVER IN PERSON|TRUCK|r, pending asymptotes cajole furio| +43343|611271|11272|5|36|42560.64|0.03|0.06|N|O|1998-07-06|1998-08-04|1998-07-26|DELIVER IN PERSON|TRUCK| regular waters. furiously regular p| +43343|631546|44059|6|23|33982.73|0.06|0.02|N|O|1998-09-19|1998-08-21|1998-10-15|COLLECT COD|REG AIR|beans. regular, regular asymp| +43343|381575|31576|7|27|44727.12|0.05|0.01|N|O|1998-09-25|1998-08-05|1998-10-14|COLLECT COD|MAIL|excuses was furiously sl| +43368|125120|125|1|32|36643.84|0.00|0.01|N|O|1995-10-13|1995-11-16|1995-10-16|COLLECT COD|TRUCK|furiously s| +43368|878231|28232|2|22|26602.18|0.07|0.08|N|O|1995-11-07|1995-10-25|1995-11-15|DELIVER IN PERSON|SHIP|en deposits affix bli| +43368|422158|47175|3|13|14041.69|0.09|0.04|N|O|1995-10-14|1995-09-21|1995-11-04|TAKE BACK RETURN|FOB|ockey players. carefully regular i| +43369|498803|36331|1|43|77476.54|0.08|0.03|N|O|1997-02-20|1997-03-14|1997-03-05|NONE|FOB|lly regular, final accounts; fluffily bol| +43369|368923|31431|2|40|79676.40|0.10|0.00|N|O|1997-04-27|1997-03-14|1997-05-21|DELIVER IN PERSON|REG AIR|y alongside of t| +43369|488654|38655|3|43|70633.09|0.05|0.08|N|O|1997-03-09|1997-03-08|1997-03-24|DELIVER IN PERSON|FOB|long the flu| +43369|800789|38338|4|5|8448.70|0.00|0.02|N|O|1997-01-23|1997-02-08|1997-01-28|DELIVER IN PERSON|REG AIR|ts dazzle closely furiously fin| +43369|856190|18708|5|25|28653.75|0.10|0.08|N|O|1997-01-14|1997-03-25|1997-01-19|TAKE BACK RETURN|TRUCK|c requests after the qu| +43369|985106|10145|6|18|21439.08|0.06|0.07|N|O|1997-01-04|1997-03-24|1997-02-01|DELIVER IN PERSON|MAIL|ecial reques| +43369|662897|12898|7|2|3719.72|0.06|0.00|N|O|1997-02-27|1997-01-28|1997-03-25|NONE|MAIL|sts at the| +43370|297161|34677|1|48|55591.20|0.09|0.06|N|O|1996-10-16|1996-10-23|1996-11-05|DELIVER IN PERSON|SHIP|ly bold packages cajole carefully among t| +43370|368328|30836|2|2|2792.62|0.07|0.07|N|O|1996-12-09|1996-12-01|1996-12-13|NONE|AIR|longside of the f| +43370|472999|35509|3|45|88738.65|0.02|0.00|N|O|1996-11-08|1996-10-18|1996-11-16|DELIVER IN PERSON|MAIL|s cajole care| +43370|684093|21633|4|9|9693.54|0.03|0.00|N|O|1996-12-25|1996-12-04|1997-01-24|NONE|REG AIR|its sleep finally. furiously | +43371|219722|19723|1|27|44326.17|0.01|0.05|N|O|1996-10-22|1996-09-20|1996-10-23|NONE|REG AIR|he furiously silent excuse| +43371|867530|17531|2|32|47919.68|0.02|0.08|N|O|1996-08-26|1996-09-18|1996-09-06|DELIVER IN PERSON|AIR|y. blithely final acco| +43371|571152|21153|3|44|53817.72|0.04|0.01|N|O|1996-09-15|1996-09-08|1996-09-24|NONE|AIR|jole. slyly ironic dolphins boost care| +43371|336059|11072|4|19|20805.76|0.10|0.03|N|O|1996-08-18|1996-10-19|1996-08-25|NONE|AIR|ccording to th| +43371|136899|24406|5|39|75499.71|0.07|0.04|N|O|1996-10-31|1996-09-05|1996-11-20|COLLECT COD|FOB| beans solve above the final asymptotes? cl| +43371|853849|3850|6|9|16225.20|0.06|0.05|N|O|1996-11-07|1996-09-20|1996-11-18|COLLECT COD|RAIL|ular, fina| +43372|275411|25412|1|22|30500.80|0.03|0.06|A|F|1993-12-20|1993-11-18|1993-12-28|TAKE BACK RETURN|MAIL|final gifts. packa| +43372|831381|43898|2|34|44619.56|0.00|0.01|R|F|1994-02-09|1993-12-29|1994-03-02|TAKE BACK RETURN|REG AIR|he blithely even courts cajole| +43372|6013|43514|3|35|32165.35|0.03|0.04|R|F|1993-12-11|1994-01-08|1993-12-14|NONE|SHIP|uriously final reque| +43372|48242|35743|4|26|30946.24|0.10|0.00|A|F|1993-12-07|1993-12-27|1994-01-01|NONE|AIR|across the carefully pending excuses hagg| +43373|125107|37610|1|45|50944.50|0.06|0.06|N|O|1998-05-11|1998-04-25|1998-06-02|TAKE BACK RETURN|AIR|o beans dazzle carefully express| +43373|670316|20317|2|40|51451.20|0.04|0.01|N|O|1998-04-19|1998-03-21|1998-05-16|DELIVER IN PERSON|TRUCK|uctions cajole slyly furiously unusua| +43373|989278|26836|3|41|56056.43|0.03|0.05|N|O|1998-03-10|1998-03-22|1998-04-02|COLLECT COD|AIR|riously regular accounts wake furiously; | +43373|791125|16156|4|40|48643.60|0.00|0.08|N|O|1998-04-25|1998-04-12|1998-05-06|NONE|TRUCK| the furiously regular ideas. deposits| +43373|437044|49553|5|34|33354.68|0.05|0.05|N|O|1998-03-17|1998-04-14|1998-04-16|COLLECT COD|SHIP|ecial ideas around the q| +43373|391488|41489|6|3|4738.41|0.09|0.05|N|O|1998-03-08|1998-03-28|1998-03-10|NONE|AIR|ithely regular dugou| +43373|732000|44515|7|19|19607.43|0.02|0.01|N|O|1998-03-13|1998-03-31|1998-04-12|COLLECT COD|REG AIR| deposits sleep| +43374|711528|24043|1|29|44645.21|0.04|0.05|N|O|1997-09-02|1997-08-22|1997-09-28|TAKE BACK RETURN|SHIP| furiously instead of the | +43374|648855|48856|2|10|18038.20|0.08|0.03|N|O|1997-09-16|1997-08-28|1997-10-03|NONE|MAIL|ugouts sleep. excuses are blit| +43374|300337|25350|3|1|1337.32|0.01|0.08|N|O|1997-06-27|1997-08-25|1997-07-27|TAKE BACK RETURN|REG AIR| excuses. frets are fluf| +43374|749316|24345|4|47|64168.16|0.09|0.08|N|O|1997-07-15|1997-08-22|1997-07-27|COLLECT COD|MAIL|s cajole slyly fina| +43374|740000|40001|5|32|33279.04|0.02|0.05|N|O|1997-07-10|1997-09-14|1997-07-23|COLLECT COD|MAIL|y even dolphins. ironi| +43374|169765|44772|6|12|22017.12|0.08|0.05|N|O|1997-09-28|1997-08-03|1997-10-17|TAKE BACK RETURN|SHIP|eposits use ironic asymptotes. iron| +43375|854472|4473|1|21|29955.03|0.08|0.01|N|O|1997-06-26|1997-06-19|1997-07-22|TAKE BACK RETURN|AIR|hockey players | +43375|106531|31536|2|19|29213.07|0.01|0.03|N|O|1997-05-27|1997-06-18|1997-05-31|DELIVER IN PERSON|MAIL|osits sublate pinto beans| +43375|457663|45191|3|27|43757.28|0.04|0.03|N|O|1997-05-14|1997-05-14|1997-06-01|DELIVER IN PERSON|REG AIR|asymptotes sle| +43375|929556|4593|4|40|63420.40|0.00|0.08|N|O|1997-06-21|1997-06-11|1997-06-29|NONE|SHIP|es boost carefully af| +43375|35992|48493|5|33|63623.67|0.02|0.03|N|O|1997-07-09|1997-05-06|1997-07-29|COLLECT COD|MAIL|eas? blithely ironic deposits are. | +43375|914301|39338|6|47|61817.22|0.00|0.03|N|O|1997-05-25|1997-06-11|1997-06-16|TAKE BACK RETURN|RAIL|regular, final ideas haggle perman| +43400|287325|37326|1|36|47243.16|0.06|0.04|N|O|1996-11-05|1996-10-26|1996-11-14|DELIVER IN PERSON|MAIL|encies. carefully special decoys breac| +43400|63654|38657|2|11|17794.15|0.03|0.00|N|O|1996-11-24|1996-10-06|1996-12-18|DELIVER IN PERSON|RAIL|he sometimes regular deposits?| +43400|817657|30174|3|1|1574.61|0.10|0.03|N|O|1996-08-19|1996-09-20|1996-09-11|NONE|MAIL|ependencies detect| +43400|360140|22648|4|2|2400.26|0.08|0.05|N|O|1996-10-15|1996-09-21|1996-10-29|TAKE BACK RETURN|FOB|y regular asymptotes. ironic, sl| +43400|867286|42321|5|6|7519.44|0.08|0.03|N|O|1996-08-09|1996-09-16|1996-09-08|DELIVER IN PERSON|REG AIR|efully pend| +43400|463943|1471|6|4|7627.68|0.04|0.06|N|O|1996-11-05|1996-09-08|1996-11-24|TAKE BACK RETURN|SHIP|blithely pending asym| +43401|264259|1775|1|44|53822.56|0.04|0.01|A|F|1994-08-26|1994-08-10|1994-09-07|COLLECT COD|FOB|eposits mold fluffily above the fin| +43401|392467|4975|2|40|62378.00|0.02|0.01|R|F|1994-07-02|1994-07-22|1994-07-23|TAKE BACK RETURN|MAIL|posits haggle furiously final excuses.| +43401|176681|1688|3|46|80853.28|0.04|0.07|R|F|1994-07-18|1994-06-22|1994-08-13|COLLECT COD|TRUCK| fluffily final dolphins. e| +43401|465059|2587|4|28|28672.84|0.04|0.07|A|F|1994-08-10|1994-07-01|1994-09-09|COLLECT COD|SHIP|quests. fluffily even| +43401|240193|2698|5|1|1133.18|0.06|0.00|A|F|1994-08-04|1994-08-13|1994-08-23|TAKE BACK RETURN|FOB|ions; dinos nod fluffily above the | +43401|912383|24902|6|16|22325.44|0.04|0.08|A|F|1994-07-23|1994-07-06|1994-08-05|NONE|AIR|ously regular orbits | +43402|373761|36269|1|10|18347.50|0.09|0.04|A|F|1992-05-19|1992-04-01|1992-06-16|DELIVER IN PERSON|RAIL|ecial ideas! regularly s| +43403|280625|43131|1|18|28900.98|0.08|0.03|R|F|1994-08-08|1994-07-10|1994-09-01|DELIVER IN PERSON|RAIL|y dogged cour| +43403|452648|27667|2|19|30411.78|0.07|0.06|R|F|1994-05-06|1994-06-26|1994-06-01|DELIVER IN PERSON|SHIP|ep blithely according to the reg| +43403|649224|49225|3|10|11731.90|0.05|0.04|A|F|1994-06-27|1994-06-12|1994-07-14|COLLECT COD|FOB|blithely ironic exc| +43403|506859|6860|4|46|85828.18|0.05|0.02|A|F|1994-06-27|1994-07-11|1994-07-14|COLLECT COD|SHIP|al asymptotes| +43403|766833|29349|5|16|30396.80|0.03|0.04|A|F|1994-08-02|1994-06-16|1994-08-26|COLLECT COD|TRUCK|s. carefully bold excu| +43403|161844|11845|6|42|80045.28|0.04|0.06|R|F|1994-05-03|1994-07-05|1994-05-18|NONE|RAIL| across the slyly regular ideas s| +43403|107934|20437|7|3|5825.79|0.01|0.06|R|F|1994-08-08|1994-06-12|1994-08-25|DELIVER IN PERSON|FOB|refully above the regular| +43404|41495|3996|1|41|58896.09|0.01|0.07|A|F|1995-06-07|1995-06-08|1995-06-15|NONE|TRUCK| quickly even platelets along the slyly sil| +43404|401128|1129|2|9|9261.90|0.06|0.01|A|F|1995-05-08|1995-05-22|1995-06-05|TAKE BACK RETURN|TRUCK|usly brave pack| +43404|757394|32425|3|17|24673.12|0.08|0.02|N|F|1995-06-05|1995-05-21|1995-06-30|NONE|TRUCK| deposits-- slyly ev| +43405|857039|44591|1|24|23903.76|0.08|0.06|R|F|1994-08-25|1994-09-17|1994-09-23|COLLECT COD|FOB|press theodolit| +43406|451953|26972|1|26|49528.18|0.02|0.07|N|O|1997-12-02|1997-12-25|1997-12-21|TAKE BACK RETURN|MAIL|kly silent foxes haggle f| +43406|963352|13353|2|9|12737.79|0.00|0.07|N|O|1997-11-12|1997-12-27|1997-11-26|DELIVER IN PERSON|MAIL|packages. instructions despi| +43406|42333|4834|3|32|40810.56|0.01|0.04|N|O|1998-01-08|1997-12-15|1998-01-10|NONE|TRUCK|blithely even theodolites are| +43406|480446|30447|4|14|19969.88|0.08|0.02|N|O|1997-11-20|1998-01-01|1997-11-22|NONE|REG AIR| packages. even requests about the furiousl| +43406|845214|45215|5|30|34775.10|0.09|0.00|N|O|1998-01-09|1998-01-02|1998-01-22|COLLECT COD|FOB|rly even packages nag blithely| +43407|155829|5830|1|36|67853.52|0.06|0.06|A|F|1992-04-05|1992-02-13|1992-04-20|DELIVER IN PERSON|TRUCK| carefully p| +43407|15184|27685|2|42|46165.56|0.00|0.03|R|F|1992-02-28|1992-03-07|1992-03-05|NONE|SHIP|ronic, silent packages. carefully| +43407|192779|17786|3|28|52409.56|0.07|0.00|R|F|1992-01-17|1992-02-20|1992-01-24|DELIVER IN PERSON|AIR| to the bold packages | +43407|35049|10050|4|38|37393.52|0.07|0.06|A|F|1992-05-06|1992-03-09|1992-05-25|TAKE BACK RETURN|MAIL|out the instructions. | +43407|63696|38699|5|31|51450.39|0.01|0.07|R|F|1992-04-29|1992-03-09|1992-05-11|TAKE BACK RETURN|AIR|ual accounts doubt quickly iro| +43407|535101|35102|6|15|17041.20|0.03|0.06|R|F|1992-02-29|1992-04-03|1992-03-13|DELIVER IN PERSON|MAIL|usly regular| +43407|429179|4196|7|2|2216.30|0.06|0.00|A|F|1992-04-30|1992-04-08|1992-05-15|DELIVER IN PERSON|TRUCK|special dependencies sleep quickly| +43432|207171|44684|1|16|17250.56|0.04|0.07|N|O|1998-08-05|1998-07-27|1998-08-24|DELIVER IN PERSON|AIR|s. even, final requests print carefully| +43432|921537|21538|2|4|6233.96|0.01|0.07|N|O|1998-08-28|1998-07-28|1998-09-24|NONE|AIR|ideas. car| +43432|261335|23841|3|23|29815.36|0.10|0.05|N|O|1998-05-18|1998-07-21|1998-06-08|DELIVER IN PERSON|FOB|patterns. regular accounts abo| +43433|537964|25495|1|46|92089.24|0.10|0.03|A|F|1992-11-28|1992-12-31|1992-12-17|TAKE BACK RETURN|TRUCK|es maintain according to the furiously | +43433|547826|22847|2|31|58087.80|0.09|0.06|R|F|1992-12-03|1992-12-25|1992-12-29|TAKE BACK RETURN|SHIP|unts at the carefully| +43433|306954|6955|3|42|82359.48|0.04|0.04|A|F|1993-02-07|1993-01-06|1993-02-22|TAKE BACK RETURN|AIR|hely even pains play according to the quic| +43433|967040|42079|4|48|53136.00|0.01|0.08|R|F|1992-12-04|1992-12-11|1992-12-26|DELIVER IN PERSON|AIR|endencies: ideas sleep furiously.| +43433|25236|12737|5|39|45287.97|0.10|0.03|R|F|1992-10-18|1992-12-09|1992-11-08|COLLECT COD|SHIP|ts. regular theodolites use. furi| +43434|801898|26931|1|36|64794.60|0.03|0.06|A|F|1993-12-04|1994-01-17|1993-12-29|TAKE BACK RETURN|SHIP|gular ideas. silent pinto beans shall caj| +43434|497092|47093|2|3|3267.21|0.05|0.00|R|F|1993-12-09|1994-01-04|1994-01-06|COLLECT COD|AIR|y bold accoun| +43434|609670|34695|3|13|20535.32|0.03|0.04|A|F|1994-02-12|1993-12-15|1994-03-04|DELIVER IN PERSON|SHIP| pending theodo| +43434|708538|21053|4|18|27837.00|0.01|0.08|A|F|1993-11-28|1994-01-04|1993-12-28|NONE|TRUCK|ven pinto beans. slyl| +43434|391927|41928|5|48|96907.68|0.05|0.00|A|F|1993-12-25|1994-01-23|1994-01-11|COLLECT COD|MAIL|ions. packages use ca| +43434|103767|3768|6|32|56664.32|0.06|0.08|R|F|1993-11-27|1993-11-29|1993-12-27|TAKE BACK RETURN|SHIP|y alongside of the unusual | +43435|880305|30306|1|30|38557.80|0.04|0.07|A|F|1995-03-14|1995-03-28|1995-03-17|DELIVER IN PERSON|TRUCK|packages h| +43435|280697|5708|2|24|40264.32|0.09|0.00|R|F|1995-04-19|1995-03-24|1995-05-15|NONE|REG AIR|he special requests integrate after t| +43435|668976|18977|3|1|1944.94|0.06|0.08|A|F|1995-02-18|1995-04-16|1995-02-19|NONE|TRUCK|? carefully reg| +43436|430918|30919|1|34|62862.26|0.10|0.02|R|F|1993-12-11|1993-12-30|1993-12-23|COLLECT COD|SHIP|refully above the furio| +43436|433480|21005|2|9|12721.14|0.04|0.03|A|F|1994-02-10|1994-01-05|1994-02-20|NONE|FOB|. even theodol| +43436|482236|19764|3|4|4872.84|0.06|0.02|R|F|1994-01-19|1994-02-07|1994-02-07|COLLECT COD|SHIP|ully regular ideas slee| +43437|64607|27109|1|11|17287.60|0.08|0.06|N|O|1996-10-16|1996-10-17|1996-10-17|DELIVER IN PERSON|RAIL| ironic, specia| +43437|847024|22057|2|50|48549.00|0.01|0.01|N|O|1996-10-21|1996-10-22|1996-10-25|NONE|REG AIR|k packages cajole furiously accordi| +43437|929405|4442|3|7|10040.52|0.08|0.06|N|O|1997-01-07|1996-11-26|1997-02-02|DELIVER IN PERSON|FOB|regular, express requests affix. quic| +43437|506596|31617|4|17|27243.69|0.01|0.02|N|O|1996-11-21|1996-10-15|1996-12-12|TAKE BACK RETURN|FOB|. carefull| +43437|348089|48090|5|33|37523.31|0.04|0.04|N|O|1996-11-11|1996-10-31|1996-11-26|NONE|REG AIR|mold slyly. even platelets believe at the | +43437|321272|8791|6|14|18105.64|0.03|0.01|N|O|1996-12-22|1996-11-10|1996-12-30|COLLECT COD|TRUCK|nts sleep furiou| +43437|609839|22352|7|23|40222.40|0.07|0.07|N|O|1996-12-20|1996-11-20|1997-01-10|DELIVER IN PERSON|MAIL| boost fina| +43438|552962|40496|1|28|56418.32|0.03|0.07|A|F|1993-05-12|1993-04-09|1993-05-17|COLLECT COD|TRUCK|ts use blithely at the fluffily ironic de| +43438|617187|4724|2|11|12145.65|0.04|0.06|R|F|1993-05-14|1993-03-24|1993-06-03|DELIVER IN PERSON|RAIL|eep blithely even, regula| +43438|57670|45174|3|26|42319.42|0.03|0.02|R|F|1993-03-17|1993-05-14|1993-03-30|TAKE BACK RETURN|MAIL|jole carefully furiously ironic platelets.| +43438|258306|33317|4|32|40457.28|0.06|0.04|R|F|1993-05-12|1993-04-17|1993-05-19|NONE|FOB|ound the furious| +43438|337837|12850|5|7|13123.74|0.07|0.00|R|F|1993-06-14|1993-03-19|1993-06-22|COLLECT COD|REG AIR|ickly even foxes. p| +43439|734594|47109|1|38|61885.28|0.00|0.08|R|F|1994-10-17|1994-12-17|1994-11-14|COLLECT COD|REG AIR|ts are furiously furiously expr| +43464|79113|16617|1|8|8736.88|0.08|0.05|N|O|1996-03-21|1996-03-05|1996-04-19|TAKE BACK RETURN|AIR|ly alongside of the carefully even f| +43464|637182|24719|2|49|54838.35|0.06|0.06|N|O|1996-03-27|1996-03-29|1996-04-15|NONE|RAIL|ully regular requests| +43464|115557|3064|3|48|75482.40|0.03|0.07|N|O|1996-02-20|1996-02-29|1996-03-09|TAKE BACK RETURN|FOB|al packages wake. blithely express| +43464|151725|1726|4|29|51524.88|0.00|0.07|N|O|1996-03-02|1996-03-17|1996-03-14|TAKE BACK RETURN|MAIL|lites play.| +43464|32133|44634|5|12|12781.56|0.08|0.02|N|O|1996-02-20|1996-03-30|1996-03-04|COLLECT COD|MAIL|the carefully pe| +43464|56670|6671|6|29|47173.43|0.06|0.01|N|O|1996-03-07|1996-04-15|1996-03-16|COLLECT COD|TRUCK|lent pinto beans integra| +43464|449448|11957|7|21|29345.82|0.03|0.07|N|O|1996-05-20|1996-02-23|1996-06-10|COLLECT COD|TRUCK|posits-- fluffily r| +43465|867949|17950|1|38|72842.20|0.03|0.04|R|F|1994-10-18|1994-10-17|1994-10-30|NONE|MAIL|ording to the final packages. expres| +43465|608145|45682|2|21|22115.31|0.02|0.07|R|F|1994-08-29|1994-10-15|1994-09-07|TAKE BACK RETURN|SHIP|y even platelets. dug| +43465|91352|3854|3|8|10746.80|0.00|0.00|R|F|1994-09-02|1994-09-02|1994-09-29|DELIVER IN PERSON|RAIL|telets integrate furiously against the dari| +43465|350692|25707|4|44|76677.92|0.07|0.03|A|F|1994-08-19|1994-10-06|1994-08-24|COLLECT COD|RAIL|eans haggl| +43465|74816|37318|5|47|84168.07|0.05|0.08|A|F|1994-09-13|1994-09-10|1994-10-08|TAKE BACK RETURN|RAIL|ously between the unusual foxes| +43465|429049|29050|6|42|41076.84|0.02|0.01|A|F|1994-07-24|1994-09-29|1994-08-12|TAKE BACK RETURN|TRUCK|ts. ironic accounts s| +43466|480559|30560|1|39|60041.67|0.09|0.08|N|O|1998-04-13|1998-03-10|1998-04-27|DELIVER IN PERSON|FOB|uests. furiously express packages wake en| +43466|748673|48674|2|7|12051.48|0.09|0.07|N|O|1998-04-26|1998-03-05|1998-05-25|DELIVER IN PERSON|SHIP| pinto beans. pending dolphins | +43466|939289|26844|3|9|11954.16|0.06|0.01|N|O|1998-04-19|1998-03-01|1998-05-19|NONE|FOB|t the accounts: slyly even i| +43466|629078|16615|4|45|45316.80|0.07|0.07|N|O|1998-04-04|1998-04-06|1998-04-13|NONE|AIR|y express requests. slyly special| +43467|803203|3204|1|25|27654.00|0.04|0.08|R|F|1994-09-30|1994-10-03|1994-10-05|COLLECT COD|REG AIR|o beans. fl| +43467|430351|17876|2|12|15375.96|0.10|0.08|R|F|1994-10-09|1994-09-28|1994-10-10|NONE|SHIP|e furiously about the silent accounts. | +43468|570443|20444|1|9|13620.78|0.08|0.00|N|O|1998-01-26|1998-02-27|1998-01-31|TAKE BACK RETURN|AIR|refully bold, blithe| +43468|430156|30157|2|1|1086.13|0.10|0.01|N|O|1997-12-18|1998-03-01|1998-01-09|TAKE BACK RETURN|REG AIR|theodolites boost according to the regul| +43468|618997|31510|3|39|74722.44|0.03|0.00|N|O|1998-03-01|1998-01-14|1998-03-30|NONE|REG AIR|l asymptotes are slyly. | +43468|479433|4452|4|12|16948.92|0.01|0.08|N|O|1998-01-19|1998-02-12|1998-01-31|DELIVER IN PERSON|MAIL| across the quickly bold requests wak| +43468|821530|21531|5|3|4354.47|0.06|0.00|N|O|1998-03-15|1998-01-29|1998-04-13|COLLECT COD|MAIL|pending, pending decoys haggle carefully. | +43469|148373|10876|1|13|18477.81|0.01|0.01|R|F|1995-02-24|1995-02-17|1995-03-01|TAKE BACK RETURN|REG AIR|-ray! furiou| +43469|703382|28411|2|21|29092.35|0.08|0.02|A|F|1995-04-28|1995-03-08|1995-05-27|NONE|TRUCK|rs wake carefully special acc| +43469|739454|39455|3|30|44802.60|0.02|0.01|R|F|1994-12-31|1995-03-08|1995-01-29|NONE|RAIL|uests affix furiously accord| +43469|997198|22237|4|30|38854.50|0.08|0.08|R|F|1995-01-13|1995-03-12|1995-01-31|NONE|FOB|lithely special instructions. express acco| +43469|897506|35058|5|40|60138.40|0.10|0.06|R|F|1995-01-26|1995-02-23|1995-02-09|NONE|AIR|kly regular| +43469|372017|9539|6|41|44649.00|0.05|0.08|R|F|1994-12-29|1995-02-15|1995-01-05|DELIVER IN PERSON|SHIP| even ideas. slyly pending| +43469|482716|7735|7|2|3397.38|0.01|0.01|A|F|1995-03-22|1995-03-07|1995-04-19|TAKE BACK RETURN|TRUCK| requests wa| +43470|993278|5798|1|44|60334.12|0.10|0.03|A|F|1995-05-16|1995-03-27|1995-06-05|COLLECT COD|FOB| haggle slyly alongside of the ideas-- | +43471|674263|49290|1|26|32167.98|0.00|0.01|A|F|1993-06-02|1993-06-10|1993-06-22|DELIVER IN PERSON|FOB|posits print carefully quickly brave a| +43471|326774|1787|2|47|84635.72|0.09|0.01|R|F|1993-06-25|1993-06-06|1993-07-20|TAKE BACK RETURN|AIR|ly ironic excuses haggle slyly furiousl| +43471|77171|39673|3|42|48223.14|0.01|0.06|R|F|1993-06-25|1993-06-20|1993-07-09|COLLECT COD|MAIL|sits nag fluffily quickly| +43471|999978|25017|4|25|51948.25|0.04|0.02|R|F|1993-07-07|1993-07-14|1993-08-03|NONE|MAIL|as cajole carefully acc| +43471|624491|24492|5|4|5661.84|0.04|0.05|A|F|1993-07-01|1993-06-10|1993-07-11|TAKE BACK RETURN|AIR|s might wake carefully; bold fr| +43471|816925|41958|6|44|81042.72|0.04|0.04|R|F|1993-07-26|1993-07-19|1993-08-06|DELIVER IN PERSON|FOB|s wake slyl| +43496|966671|29191|1|38|66029.94|0.01|0.07|R|F|1993-01-16|1993-01-05|1993-02-01|COLLECT COD|FOB|eposits run instructions. care| +43496|827949|2982|2|38|71322.20|0.06|0.01|A|F|1993-01-14|1993-02-03|1993-01-30|TAKE BACK RETURN|REG AIR|dogged foxe| +43496|338240|38241|3|19|24286.37|0.07|0.00|A|F|1993-02-12|1993-01-20|1993-02-18|TAKE BACK RETURN|REG AIR| ironically even accou| +43496|799315|49316|4|27|38185.56|0.06|0.08|A|F|1993-02-06|1993-01-26|1993-03-01|COLLECT COD|RAIL|ly regular excuses poach care| +43496|70885|45888|5|18|33405.84|0.09|0.01|A|F|1993-03-02|1993-01-13|1993-03-29|DELIVER IN PERSON|RAIL|r the pending packag| +43497|570323|20324|1|9|12539.70|0.03|0.03|A|F|1993-07-25|1993-08-23|1993-08-10|TAKE BACK RETURN|AIR|l accounts affix ironicall| +43497|402469|27486|2|11|15085.84|0.04|0.03|R|F|1993-07-13|1993-09-20|1993-08-07|COLLECT COD|SHIP| packages. furiously even foxes again| +43497|282694|20210|3|21|35210.28|0.01|0.05|R|F|1993-10-10|1993-09-23|1993-10-31|TAKE BACK RETURN|SHIP|uctions. ironic packages ag| +43497|230137|5146|4|20|21342.40|0.07|0.02|R|F|1993-07-17|1993-08-14|1993-07-19|TAKE BACK RETURN|MAIL|arefully silen| +43497|910751|35788|5|48|84562.08|0.06|0.00|R|F|1993-10-11|1993-08-10|1993-10-30|DELIVER IN PERSON|SHIP|ages. packages maint| +43498|641026|41027|1|16|15471.84|0.02|0.01|A|F|1993-07-22|1993-07-03|1993-08-20|DELIVER IN PERSON|SHIP|ests nag always around the request| +43498|717077|29592|2|29|31727.16|0.08|0.06|A|F|1993-06-12|1993-06-18|1993-06-21|COLLECT COD|AIR|theodolites| +43498|909444|34481|3|27|39241.80|0.05|0.08|A|F|1993-07-19|1993-07-11|1993-08-05|COLLECT COD|SHIP|deposits? ideas use furiously. fl| +43499|912594|149|1|22|35344.10|0.00|0.01|R|F|1993-06-29|1993-06-18|1993-07-13|NONE|REG AIR|endencies. fluffily express requ| +43499|957252|19772|2|10|13092.10|0.07|0.00|A|F|1993-08-23|1993-07-07|1993-09-05|NONE|TRUCK|even dependenc| +43499|524542|12073|3|47|73626.44|0.04|0.00|A|F|1993-07-30|1993-08-08|1993-08-20|TAKE BACK RETURN|FOB|l forges haggle carefully above | +43499|968189|30709|4|36|45257.04|0.05|0.05|A|F|1993-09-15|1993-08-09|1993-09-26|COLLECT COD|FOB|ly regular dol| +43499|350859|860|5|44|84032.96|0.06|0.07|A|F|1993-07-01|1993-07-10|1993-07-30|COLLECT COD|REG AIR|l pains against the careful| +43499|875279|25280|6|32|40135.36|0.06|0.03|A|F|1993-07-29|1993-07-19|1993-08-14|DELIVER IN PERSON|TRUCK| deposits. furiously expr| +43500|738056|13085|1|4|4376.08|0.03|0.06|N|O|1997-11-21|1997-12-22|1997-12-06|DELIVER IN PERSON|SHIP|fily even packages grow close| +43500|505364|42895|2|21|28756.14|0.02|0.08|N|O|1997-11-25|1997-12-22|1997-11-30|TAKE BACK RETURN|REG AIR|row. express ideas| +43500|652633|15147|3|36|57081.60|0.02|0.00|N|O|1997-11-18|1997-12-03|1997-12-10|TAKE BACK RETURN|RAIL| beans. carefully final accounts wake| +43500|791178|41179|4|10|12691.40|0.09|0.07|N|O|1998-01-13|1997-12-08|1998-02-08|TAKE BACK RETURN|REG AIR|ts are. somas need to wake. even fo| +43501|26243|13744|1|46|53785.04|0.03|0.07|N|O|1995-09-03|1995-07-02|1995-09-07|DELIVER IN PERSON|MAIL|kages wake final| +43501|50579|38083|2|45|68830.65|0.04|0.04|N|O|1995-07-06|1995-08-24|1995-07-20|TAKE BACK RETURN|FOB| haggle quickly alongside of the final re| +43501|74269|24270|3|32|39784.32|0.04|0.08|N|F|1995-06-03|1995-07-04|1995-06-19|NONE|SHIP|al requests haggle? furiously bold asymp| +43501|237268|49773|4|42|50620.50|0.00|0.02|N|O|1995-07-06|1995-08-28|1995-07-19|DELIVER IN PERSON|AIR|furiously across th| +43501|753971|3972|5|28|56698.32|0.04|0.07|N|O|1995-09-05|1995-08-02|1995-09-30|TAKE BACK RETURN|FOB|, ironic deposits against the deposits us| +43501|987038|24596|6|13|14624.87|0.10|0.07|N|F|1995-06-16|1995-07-26|1995-06-30|DELIVER IN PERSON|MAIL| special foxes boost according | +43501|138784|38785|7|28|51037.84|0.03|0.08|N|O|1995-07-28|1995-08-15|1995-08-18|TAKE BACK RETURN|MAIL|s sleep express, final excuses. ironic gift| +43502|531337|6358|1|36|49259.16|0.06|0.00|N|O|1996-10-25|1996-12-11|1996-11-04|DELIVER IN PERSON|RAIL|y across the regular packages. f| +43502|166226|41233|2|9|11629.98|0.04|0.05|N|O|1996-11-18|1996-11-21|1996-12-17|NONE|TRUCK|fully even foxes. unusual deposits| +43503|582673|20207|1|36|63203.40|0.08|0.07|R|F|1995-01-07|1994-11-07|1995-02-05|DELIVER IN PERSON|SHIP|ar pinto beans above the ir| +43503|969803|7361|2|33|61801.08|0.07|0.02|A|F|1994-10-11|1994-12-29|1994-10-17|TAKE BACK RETURN|SHIP|lyly unusual deposits haggle quickly acco| +43503|466293|41312|3|26|32741.02|0.00|0.06|R|F|1994-12-03|1994-12-17|1994-12-19|COLLECT COD|MAIL|posits. furiously | +43503|984525|22083|4|32|51503.36|0.07|0.02|R|F|1995-01-19|1994-11-26|1995-01-28|TAKE BACK RETURN|RAIL|he quickly regular| +43528|123565|11072|1|32|50833.92|0.03|0.06|A|F|1993-11-25|1993-12-26|1993-12-04|TAKE BACK RETURN|TRUCK|the final, special foxe| +43528|744630|19659|2|2|3349.20|0.04|0.00|A|F|1994-01-07|1994-01-12|1994-01-20|NONE|SHIP|l deposits haggle| +43528|991511|4031|3|42|67303.74|0.02|0.07|A|F|1994-01-18|1993-12-14|1994-01-31|DELIVER IN PERSON|MAIL| closely special requests. furiously ir| +43528|311585|36598|4|27|43107.39|0.02|0.06|A|F|1994-01-16|1993-12-11|1994-02-05|COLLECT COD|SHIP|gular pinto beans. quickly final | +43528|799484|49485|5|24|38002.80|0.04|0.01|R|F|1994-01-26|1994-01-03|1994-02-08|DELIVER IN PERSON|AIR|gle daring, regular hockey players. fluffil| +43529|386544|49052|1|36|58699.08|0.08|0.00|A|F|1994-03-28|1994-04-13|1994-04-08|DELIVER IN PERSON|AIR|according to the pending theodolites ha| +43529|635704|23241|2|13|21315.71|0.00|0.07|A|F|1994-03-14|1994-03-28|1994-03-29|TAKE BACK RETURN|REG AIR| the pending, express requests.| +43529|271287|33793|3|21|26423.67|0.07|0.05|R|F|1994-04-20|1994-03-23|1994-05-04|DELIVER IN PERSON|FOB|e on the fi| +43529|519372|19373|4|31|43131.85|0.08|0.08|R|F|1994-03-15|1994-05-16|1994-03-24|COLLECT COD|RAIL|s wake slyly. final packages sleep f| +43529|73592|23593|5|42|65754.78|0.03|0.01|R|F|1994-03-04|1994-03-18|1994-03-21|DELIVER IN PERSON|SHIP|uctions wake furiously blithely fi| +43530|39134|1635|1|25|26828.25|0.01|0.01|R|F|1993-05-08|1993-04-25|1993-06-04|COLLECT COD|TRUCK| the special, even multipliers. carefully| +43531|325934|947|1|9|17639.28|0.05|0.04|N|O|1998-08-10|1998-07-06|1998-09-08|NONE|SHIP|e bold Tiresias dazzle quickly carefu| +43532|732315|19858|1|18|24251.04|0.06|0.06|N|O|1998-09-30|1998-08-10|1998-10-05|COLLECT COD|FOB|s boost daringly theodolites| +43532|10966|23467|2|49|91971.04|0.10|0.08|N|O|1998-08-10|1998-09-11|1998-09-09|COLLECT COD|SHIP|ideas. blithely furious i| +43532|305189|42708|3|37|44184.29|0.01|0.02|N|O|1998-07-30|1998-08-14|1998-08-04|COLLECT COD|REG AIR|as nag quickly carefull| +43532|309733|47252|4|4|6970.88|0.06|0.00|N|O|1998-07-29|1998-08-03|1998-08-16|NONE|MAIL| furiously car| +43532|678544|41058|5|26|39585.26|0.02|0.08|N|O|1998-10-30|1998-08-04|1998-11-18|TAKE BACK RETURN|TRUCK|ilent packages doubt furiously about the f| +43533|370311|32819|1|31|42820.30|0.01|0.02|N|O|1997-05-22|1997-06-12|1997-06-16|NONE|RAIL|unusual requests are | +43533|804746|29779|2|46|75932.20|0.00|0.03|N|O|1997-06-22|1997-05-01|1997-07-11|COLLECT COD|FOB|nic, bold packages are fur| +43533|364629|39644|3|9|15242.49|0.02|0.04|N|O|1997-04-17|1997-05-30|1997-04-19|DELIVER IN PERSON|FOB|press, idle accounts. | +43533|319520|19521|4|40|61580.40|0.03|0.04|N|O|1997-06-04|1997-05-05|1997-06-07|COLLECT COD|RAIL| packages. unusual cour| +43534|324660|37167|1|11|18531.15|0.03|0.04|R|F|1993-07-14|1993-05-17|1993-08-02|DELIVER IN PERSON|SHIP|bold deposits detect carefully. ironic inst| +43534|550416|37950|2|43|63054.77|0.05|0.03|A|F|1993-04-30|1993-06-21|1993-05-11|TAKE BACK RETURN|FOB|ly special requests. special foxes wa| +43534|836766|11799|3|50|85136.00|0.09|0.05|R|F|1993-04-13|1993-04-30|1993-04-23|COLLECT COD|FOB|latelets breach slyly | +43534|515500|40521|4|12|18185.76|0.09|0.05|R|F|1993-06-12|1993-05-15|1993-06-29|NONE|RAIL|ly ironic requests| +43535|96622|46623|1|3|4855.86|0.00|0.07|N|O|1995-10-30|1995-09-21|1995-11-22|COLLECT COD|AIR| packages haggle multipliers. ironic th| +43535|923889|36408|2|45|86077.80|0.05|0.01|N|O|1995-10-31|1995-10-16|1995-11-21|COLLECT COD|RAIL|special, final asymptot| +43535|790738|3254|3|5|9143.50|0.07|0.04|N|O|1995-11-10|1995-09-28|1995-11-27|COLLECT COD|TRUCK|ajole ironic requests. re| +43535|918610|6165|4|47|76542.79|0.08|0.01|N|O|1995-08-10|1995-10-16|1995-09-01|NONE|RAIL| excuses h| +43560|939392|26947|1|24|34352.40|0.03|0.02|N|O|1996-11-08|1996-11-04|1996-11-23|TAKE BACK RETURN|FOB|old, regular foxes h| +43561|79147|16651|1|20|22522.80|0.08|0.05|A|F|1994-02-15|1994-02-05|1994-03-11|DELIVER IN PERSON|MAIL|ts. carefu| +43561|209227|34236|2|2|2272.42|0.06|0.05|R|F|1994-02-11|1994-02-10|1994-02-18|COLLECT COD|RAIL|eep fluffily. final platelets wa| +43562|453037|28056|1|38|37620.38|0.04|0.02|R|F|1993-07-24|1993-10-03|1993-08-11|NONE|MAIL|uriously. ca| +43562|188031|13038|2|36|40285.08|0.07|0.02|R|F|1993-08-25|1993-09-10|1993-08-26|NONE|FOB| carefully regular | +43562|224248|36753|3|43|50405.89|0.01|0.05|A|F|1993-09-16|1993-09-08|1993-09-24|COLLECT COD|MAIL| slyly final requests. | +43562|923842|23843|4|8|14926.40|0.00|0.01|A|F|1993-08-08|1993-10-02|1993-09-07|NONE|REG AIR|al packages. boldly s| +43562|8664|46165|5|14|22017.24|0.00|0.00|A|F|1993-10-04|1993-10-05|1993-10-20|NONE|REG AIR|raids promi| +43563|425262|279|1|29|34429.96|0.06|0.02|A|F|1995-04-16|1995-04-19|1995-04-19|DELIVER IN PERSON|RAIL|ely slyly express packages. slyly regul| +43563|366502|29010|2|3|4705.47|0.02|0.04|A|F|1995-05-12|1995-04-29|1995-05-14|NONE|AIR|ound the silent theodolites. furiously| +43563|785821|48337|3|8|15254.32|0.05|0.01|R|F|1995-04-03|1995-05-18|1995-04-21|NONE|MAIL|d to use quickly aga| +43563|279859|42365|4|7|12871.88|0.10|0.02|R|F|1995-05-18|1995-04-24|1995-06-13|TAKE BACK RETURN|SHIP|uctions. sly| +43563|588891|26425|5|10|19798.70|0.06|0.08|R|F|1995-05-08|1995-04-19|1995-05-19|COLLECT COD|TRUCK|usual pinto | +43563|484507|34508|6|33|49218.84|0.05|0.04|A|F|1995-03-19|1995-04-25|1995-03-21|TAKE BACK RETURN|REG AIR|ular request| +43564|688048|25588|1|25|25900.25|0.03|0.05|N|O|1996-07-21|1996-09-27|1996-08-09|COLLECT COD|MAIL|e the requests. ca| +43564|21442|46443|2|48|65445.12|0.00|0.01|N|O|1996-08-08|1996-09-27|1996-08-13|COLLECT COD|SHIP|accounts. qu| +43564|374040|49055|3|46|51245.38|0.01|0.00|N|O|1996-08-06|1996-10-02|1996-08-14|DELIVER IN PERSON|SHIP|o the accounts hagg| +43564|487367|24895|4|7|9480.38|0.04|0.02|N|O|1996-08-29|1996-08-18|1996-09-13|DELIVER IN PERSON|FOB|dependencies doubt qu| +43565|815236|27753|1|41|47198.79|0.04|0.02|R|F|1993-12-02|1994-02-03|1993-12-17|TAKE BACK RETURN|REG AIR|sly even r| +43565|655147|30174|2|49|54003.39|0.01|0.08|A|F|1993-12-03|1993-12-17|1993-12-06|TAKE BACK RETURN|AIR|even accounts maintain carefully after the | +43565|41926|16927|3|42|78452.64|0.06|0.04|A|F|1994-01-23|1994-02-12|1994-02-16|DELIVER IN PERSON|REG AIR|refully express| +43565|649575|37112|4|31|47260.74|0.03|0.06|R|F|1994-01-01|1994-01-10|1994-01-08|TAKE BACK RETURN|SHIP|. carefully final accounts across the f| +43565|400647|25664|5|33|51071.46|0.04|0.00|R|F|1993-12-19|1993-12-29|1994-01-13|COLLECT COD|REG AIR|posits wake furiously instructions.| +43566|845482|45483|1|45|64234.80|0.03|0.06|N|O|1998-07-23|1998-07-25|1998-08-03|COLLECT COD|FOB|al theodolites lose furio| +43567|558798|8799|1|22|40848.94|0.02|0.04|N|O|1996-12-29|1997-01-26|1997-01-11|NONE|MAIL|wake slyly furiously express | +43567|705519|30548|2|29|44209.92|0.07|0.04|N|O|1997-01-01|1997-01-23|1997-01-11|DELIVER IN PERSON|SHIP|ly special accounts. even d| +43567|654123|4124|3|3|3231.27|0.05|0.08|N|O|1997-01-28|1997-02-13|1997-02-21|COLLECT COD|MAIL|oost blithely silent foxes. f| +43567|830880|5913|4|4|7243.36|0.09|0.05|N|O|1997-03-10|1997-02-11|1997-04-09|DELIVER IN PERSON|RAIL|ending deposits integrate slyly a| +43567|584292|34293|5|33|45416.91|0.01|0.03|N|O|1997-04-05|1997-03-01|1997-04-17|NONE|AIR|ts wake blithely about the unusual, sp| +43567|180555|5562|6|9|14719.95|0.01|0.06|N|O|1997-01-21|1997-01-21|1997-02-05|COLLECT COD|SHIP|hely alongside o| +43592|591154|16177|1|42|52295.46|0.00|0.04|A|F|1992-07-03|1992-05-17|1992-07-20|TAKE BACK RETURN|TRUCK| pinto beans acros| +43592|509236|9237|2|20|24904.20|0.00|0.00|A|F|1992-04-25|1992-05-20|1992-04-29|COLLECT COD|TRUCK| cajole carefully against the close| +43592|713475|13476|3|32|47630.08|0.02|0.03|R|F|1992-04-10|1992-06-09|1992-05-02|DELIVER IN PERSON|SHIP|ffily even excuses haggle carefully.| +43592|370146|20147|4|9|10945.17|0.09|0.02|A|F|1992-05-16|1992-04-24|1992-05-30|TAKE BACK RETURN|MAIL|ing frets inside the fluf| +43592|33398|33399|5|15|19970.85|0.05|0.07|R|F|1992-06-17|1992-05-13|1992-07-03|NONE|TRUCK|late carefully abo| +43592|307697|7698|6|15|25570.20|0.09|0.02|R|F|1992-05-06|1992-06-14|1992-05-07|TAKE BACK RETURN|TRUCK|xpress deposits. carefully ironic| +43592|452509|15019|7|14|20460.72|0.10|0.07|A|F|1992-05-26|1992-05-31|1992-06-06|TAKE BACK RETURN|SHIP|ts use. ironic, final foxes| +43593|310964|48483|1|31|61223.45|0.02|0.01|N|O|1998-04-22|1998-03-23|1998-05-17|NONE|RAIL|dolites. special excuses nag carefull| +43593|356509|44031|2|24|37571.76|0.02|0.07|N|O|1998-02-09|1998-01-28|1998-03-07|NONE|RAIL|ly along t| +43594|382529|45037|1|46|74129.46|0.10|0.02|R|F|1995-02-07|1995-02-21|1995-03-04|COLLECT COD|SHIP|fluffily quick deposits | +43594|158204|33211|2|25|31555.00|0.02|0.04|A|F|1994-12-03|1995-01-19|1994-12-11|NONE|RAIL|ids. furiously bold de| +43595|108432|8433|1|42|60498.06|0.05|0.08|N|O|1996-01-28|1995-12-05|1996-02-14|DELIVER IN PERSON|MAIL|encies. carefully ironic | +43595|400050|37575|2|18|17100.54|0.09|0.06|N|O|1996-01-20|1995-12-08|1996-01-23|TAKE BACK RETURN|AIR|deposits affix| +43595|627328|14865|3|49|61509.21|0.04|0.00|N|O|1995-11-09|1995-12-29|1995-11-18|TAKE BACK RETURN|MAIL|phins. carefully final dependencies are sly| +43596|19379|44380|1|18|23370.66|0.02|0.05|A|F|1993-06-30|1993-07-13|1993-07-19|DELIVER IN PERSON|MAIL|sly. final realms w| +43596|695789|20816|2|21|37479.75|0.03|0.01|R|F|1993-07-10|1993-08-16|1993-07-25|TAKE BACK RETURN|FOB|y ironic packa| +43596|124994|37497|3|7|14132.93|0.00|0.05|R|F|1993-09-13|1993-08-28|1993-10-06|TAKE BACK RETURN|MAIL| dolphins. fluffily fina| +43596|758921|46467|4|26|51477.14|0.05|0.02|A|F|1993-07-04|1993-08-19|1993-07-09|TAKE BACK RETURN|MAIL|onic packages cajole| +43596|172969|22970|5|19|38797.24|0.05|0.02|A|F|1993-10-09|1993-08-16|1993-10-31|COLLECT COD|TRUCK|y? foxes unwind furiously slyly final i| +43596|81312|6315|6|14|18106.34|0.05|0.07|R|F|1993-07-28|1993-09-02|1993-08-15|NONE|MAIL|quickly. regular request| +43596|608575|21088|7|8|11868.32|0.04|0.03|R|F|1993-07-08|1993-08-16|1993-07-27|COLLECT COD|FOB|ly unusual accounts| +43597|312931|25438|1|50|97196.00|0.06|0.01|A|F|1992-09-14|1992-10-26|1992-09-17|NONE|SHIP|r requests are | +43597|424719|49736|2|19|31230.11|0.08|0.00|R|F|1992-10-03|1992-11-05|1992-10-25|DELIVER IN PERSON|REG AIR|beans haggle. quickly| +43597|240133|15142|3|1|1073.12|0.10|0.03|R|F|1992-10-10|1992-10-22|1992-10-17|TAKE BACK RETURN|SHIP|s. fluffily silent| +43597|913378|38415|4|23|32000.59|0.04|0.06|A|F|1992-09-29|1992-10-08|1992-10-01|DELIVER IN PERSON|REG AIR|fter the bold, daring accounts. stealthy,| +43598|706297|6298|1|25|32581.50|0.02|0.03|N|O|1997-03-11|1997-04-30|1997-03-22|DELIVER IN PERSON|TRUCK|xcuses cajole. furiously | +43598|725858|13401|2|44|82888.08|0.10|0.01|N|O|1997-04-07|1997-05-03|1997-04-22|DELIVER IN PERSON|FOB|etect slyly silent | +43598|480779|30780|3|9|15837.75|0.02|0.04|N|O|1997-05-19|1997-05-07|1997-05-23|TAKE BACK RETURN|RAIL|r packages. quickly expres| +43598|438712|38713|4|31|51171.39|0.08|0.00|N|O|1997-06-17|1997-05-19|1997-06-20|TAKE BACK RETURN|REG AIR|final deposits. | +43598|427945|27946|5|8|14983.36|0.09|0.01|N|O|1997-04-20|1997-04-06|1997-04-26|NONE|REG AIR|ndencies use. slyly e| +43598|471230|21231|6|7|8408.47|0.06|0.04|N|O|1997-05-27|1997-04-18|1997-06-12|DELIVER IN PERSON|TRUCK|lithely even accounts nag. slyly i| +43598|946465|21502|7|46|69525.32|0.02|0.03|N|O|1997-06-01|1997-04-24|1997-06-25|DELIVER IN PERSON|AIR|iers. ironic, bol| +43599|226995|39500|1|18|34595.64|0.03|0.03|N|O|1997-01-05|1997-01-12|1997-02-04|COLLECT COD|REG AIR|sly pending accounts. final | +43599|104289|29294|2|42|54317.76|0.04|0.00|N|O|1997-01-09|1997-02-03|1997-01-20|NONE|AIR|dolites. si| +43624|283237|8248|1|39|47588.58|0.05|0.00|N|O|1996-12-03|1996-12-05|1996-12-16|NONE|SHIP|ackages enga| +43624|363236|25744|2|25|32480.50|0.03|0.03|N|O|1997-01-07|1996-12-04|1997-01-28|DELIVER IN PERSON|SHIP|nic theodolites snooze unu| +43624|905692|18211|3|7|11883.55|0.10|0.08|N|O|1996-12-25|1997-01-08|1997-01-13|TAKE BACK RETURN|TRUCK| dolphins. carefully reg| +43624|949540|37095|4|34|54043.00|0.00|0.00|N|O|1997-02-25|1997-01-19|1997-03-27|TAKE BACK RETURN|AIR|ic excuses. bold i| +43624|903753|3754|5|33|57971.43|0.08|0.00|N|O|1997-01-25|1996-12-13|1997-02-18|COLLECT COD|TRUCK|eas kindle. bo| +43624|360233|47755|6|4|5172.88|0.10|0.05|N|O|1997-02-25|1996-12-13|1997-03-25|DELIVER IN PERSON|TRUCK|uctions are carefully furiou| +43625|330005|42512|1|50|51749.50|0.06|0.07|N|O|1996-03-15|1996-03-12|1996-03-29|DELIVER IN PERSON|TRUCK|o engage furiously. carefully exp| +43625|387266|37267|2|2|2706.50|0.05|0.06|N|O|1996-02-04|1996-02-08|1996-02-17|TAKE BACK RETURN|AIR|ar courts s| +43625|775499|25500|3|10|15744.60|0.04|0.01|N|O|1996-02-15|1996-02-29|1996-02-22|NONE|SHIP|encies. sl| +43625|795988|8504|4|44|91693.80|0.05|0.04|N|O|1996-02-17|1996-03-03|1996-02-24|NONE|FOB|are quickly alongside of the busy foxes. re| +43625|158841|8842|5|37|70294.08|0.07|0.08|N|O|1996-02-01|1996-03-23|1996-02-28|DELIVER IN PERSON|REG AIR| the fluffily pending packages. ev| +43625|639224|14249|6|9|10468.71|0.07|0.07|N|O|1996-04-22|1996-03-13|1996-05-10|DELIVER IN PERSON|FOB|ons. pending accoun| +43626|967504|42543|1|32|50286.72|0.05|0.06|N|O|1998-07-18|1998-08-06|1998-07-27|TAKE BACK RETURN|SHIP| carefully fluffily final accounts. stea| +43626|825129|12678|2|32|33730.56|0.06|0.00|N|O|1998-07-29|1998-07-03|1998-08-06|DELIVER IN PERSON|AIR| deposits eat. pending, bold requests hagg| +43626|936974|12011|3|6|12065.58|0.06|0.01|N|O|1998-06-21|1998-07-02|1998-07-10|COLLECT COD|RAIL|nts. even ideas among the regular| +43627|172816|10326|1|6|11332.86|0.06|0.00|N|O|1996-02-07|1995-11-30|1996-02-12|NONE|AIR|ly ironic platelets. slyly special | +43627|509458|9459|2|18|26413.74|0.05|0.07|N|O|1996-01-04|1995-11-20|1996-01-15|TAKE BACK RETURN|MAIL|counts across the regular excuses haggl| +43627|449862|12371|3|42|76097.28|0.06|0.02|N|O|1996-01-21|1995-12-19|1996-02-19|TAKE BACK RETURN|SHIP|ts wake. carefully bold accoun| +43627|825583|38100|4|49|73918.46|0.05|0.03|N|O|1996-01-23|1995-11-23|1996-01-27|COLLECT COD|FOB|egular deposi| +43627|570267|7801|5|13|17384.12|0.04|0.04|N|O|1995-11-07|1995-11-12|1995-11-23|DELIVER IN PERSON|AIR|lly about | +43627|467178|29688|6|3|3435.45|0.09|0.02|N|O|1995-10-10|1996-01-06|1995-10-23|TAKE BACK RETURN|FOB|refully bold dependenci| +43628|616108|16109|1|42|43010.94|0.05|0.08|A|F|1995-03-07|1995-01-01|1995-03-13|COLLECT COD|FOB|gside of the even platele| +43628|926736|39255|2|29|51118.01|0.06|0.08|A|F|1994-12-31|1995-02-17|1995-01-26|DELIVER IN PERSON|MAIL|wake furiously regular| +43628|636017|23554|3|9|8576.82|0.04|0.00|A|F|1994-12-20|1995-01-10|1995-01-06|COLLECT COD|REG AIR|ng the bold requ| +43628|534990|47501|4|45|91123.65|0.08|0.04|A|F|1995-01-01|1995-02-03|1995-01-13|TAKE BACK RETURN|TRUCK|en requests sleep furiously according to t| +43628|574165|11699|5|29|35935.06|0.06|0.01|R|F|1995-01-22|1995-01-10|1995-02-12|NONE|AIR|deposits sleep quickly deposits. de| +43628|989088|26646|6|41|48258.64|0.00|0.04|R|F|1995-02-12|1995-02-03|1995-03-01|NONE|REG AIR|yly. blithely special packages| +43628|592465|4977|7|26|40493.44|0.05|0.03|A|F|1994-12-26|1995-02-20|1995-01-14|COLLECT COD|TRUCK|n deposits. regular instructions poach care| +43629|548417|10928|1|45|65942.55|0.08|0.04|R|F|1992-03-14|1992-04-11|1992-03-18|DELIVER IN PERSON|RAIL|ven instructi| +43629|229491|4500|2|7|9943.36|0.08|0.03|R|F|1992-03-26|1992-03-26|1992-03-29|NONE|MAIL|e. ideas wake slyly a| +43629|47132|22133|3|18|19424.34|0.07|0.01|R|F|1992-02-27|1992-04-09|1992-03-11|DELIVER IN PERSON|SHIP|heodolites slee| +43629|143296|43297|4|15|20089.35|0.06|0.03|A|F|1992-04-08|1992-03-24|1992-04-23|TAKE BACK RETURN|AIR|totes. foxes cajole slyly. carefully ir| +43629|372525|22526|5|34|54315.34|0.07|0.06|A|F|1992-05-12|1992-02-18|1992-05-21|COLLECT COD|TRUCK| furiously| +43629|24556|12057|6|35|51819.25|0.05|0.02|R|F|1992-05-15|1992-02-23|1992-06-07|NONE|FOB|cial gifts. blithely spe| +43629|702937|15452|7|40|77596.00|0.05|0.08|R|F|1992-04-08|1992-02-26|1992-04-24|DELIVER IN PERSON|AIR|ding foxes | +43630|261045|48561|1|29|29174.87|0.01|0.08|A|F|1995-02-18|1995-02-19|1995-03-17|DELIVER IN PERSON|AIR|uffily special accounts are. regular a| +43630|379116|4131|2|34|40633.40|0.03|0.05|R|F|1995-01-06|1995-01-25|1995-01-26|NONE|MAIL|refully per| +43631|977876|2915|1|29|56661.07|0.05|0.02|N|O|1995-06-26|1995-07-04|1995-07-18|TAKE BACK RETURN|FOB|ng to the carefully special theodolites. c| +43631|147581|35088|2|25|40714.50|0.08|0.04|A|F|1995-05-27|1995-07-06|1995-06-13|TAKE BACK RETURN|AIR|sly-- careful| +43631|377948|40456|3|10|20259.30|0.02|0.00|N|O|1995-08-27|1995-07-26|1995-09-08|COLLECT COD|REG AIR|t carefully enticingly bold accounts. furi| +43656|346420|46421|1|43|63055.63|0.09|0.01|N|O|1998-03-18|1998-01-25|1998-03-30|COLLECT COD|MAIL|ter the dolphins. carefully bold realms | +43656|277239|39745|2|34|41351.48|0.02|0.03|N|O|1998-02-19|1998-03-05|1998-03-06|NONE|TRUCK|ts sleep furiously p| +43656|542030|29561|3|25|26800.25|0.02|0.03|N|O|1998-02-19|1998-02-10|1998-03-10|NONE|MAIL|encies haggle carefull| +43656|892073|4591|4|38|40471.14|0.08|0.02|N|O|1998-03-15|1998-03-13|1998-03-18|NONE|TRUCK|ckages! carefully final deposits wak| +43656|65719|28221|5|15|25270.65|0.02|0.03|N|O|1998-04-15|1998-03-14|1998-04-19|TAKE BACK RETURN|FOB|elieve careful| +43656|535032|22563|6|30|32010.30|0.02|0.05|N|O|1998-04-13|1998-01-31|1998-05-07|NONE|AIR|oxes wake against the | +43657|540672|40673|1|20|34253.00|0.09|0.08|A|F|1993-11-26|1993-10-31|1993-12-22|TAKE BACK RETURN|TRUCK|inal platelets. iron| +43657|57999|20501|2|2|3913.98|0.05|0.01|A|F|1993-08-26|1993-11-01|1993-09-04|COLLECT COD|MAIL|nts sleep about the | +43658|257249|19755|1|28|33774.44|0.08|0.04|R|F|1993-02-08|1993-01-03|1993-03-05|TAKE BACK RETURN|TRUCK| the stealthy, ironic deposits. even| +43658|569522|7056|2|18|28647.00|0.05|0.08|A|F|1992-11-23|1992-12-26|1992-11-26|NONE|SHIP|rding to the deposits. fluffily bold s| +43659|977008|39528|1|29|31463.84|0.08|0.01|N|O|1997-10-09|1997-11-19|1997-11-07|DELIVER IN PERSON|TRUCK|es. platelets wake quickly carefully bold | +43659|565787|40810|2|7|12969.32|0.02|0.00|N|O|1997-11-26|1997-11-22|1997-12-22|COLLECT COD|RAIL|wake blithely final requests. | +43659|169515|7025|3|26|41197.26|0.06|0.01|N|O|1997-11-21|1997-12-28|1997-12-19|DELIVER IN PERSON|REG AIR|g furiously above the slyl| +43659|37303|49804|4|10|12403.00|0.09|0.06|N|O|1998-01-24|1997-11-17|1998-01-27|NONE|SHIP|final pinto b| +43659|943558|31113|5|30|48045.30|0.07|0.00|N|O|1998-01-25|1997-12-13|1998-01-27|NONE|RAIL|: fluffily regul| +43660|605185|5186|1|11|11991.65|0.04|0.06|N|O|1997-07-18|1997-05-25|1997-08-09|NONE|MAIL|kages nag! ruthlessly regular acc| +43660|333629|8642|2|31|51540.91|0.06|0.00|N|O|1997-06-10|1997-06-09|1997-06-20|DELIVER IN PERSON|AIR|ial packages. carefully final foxes sleep.| +43660|291939|41940|3|19|36687.48|0.09|0.01|N|O|1997-07-13|1997-05-01|1997-08-08|TAKE BACK RETURN|SHIP|e furiously regular e| +43661|98077|35581|1|41|44077.87|0.02|0.07|R|F|1993-02-09|1993-03-05|1993-03-11|TAKE BACK RETURN|SHIP|ular forges. regular patterns use careful| +43661|371126|33634|2|33|39504.63|0.08|0.07|R|F|1993-03-23|1993-03-06|1993-04-11|DELIVER IN PERSON|SHIP| blithely slyly silent id| +43661|511098|23609|3|41|45471.87|0.07|0.08|A|F|1993-01-16|1993-03-07|1993-01-26|COLLECT COD|MAIL|ggle never. carefully r| +43661|19156|6657|4|20|21503.00|0.09|0.03|A|F|1993-03-19|1993-03-04|1993-03-29|NONE|MAIL|sts above the f| +43661|942701|42702|5|3|5230.98|0.02|0.04|R|F|1992-12-29|1993-02-06|1993-01-11|COLLECT COD|MAIL|s. slyly even deposit| +43661|967916|17917|6|44|87290.28|0.10|0.00|R|F|1993-02-06|1993-02-14|1993-03-02|TAKE BACK RETURN|MAIL|ar instructions: fin| +43661|760294|10295|7|36|48753.36|0.08|0.03|A|F|1993-01-01|1993-03-07|1993-01-05|NONE|REG AIR|uriously final theodolit| +43662|254106|29117|1|47|49824.23|0.00|0.02|A|F|1993-08-06|1993-08-19|1993-08-17|DELIVER IN PERSON|AIR|ilent depend| +43662|749215|49216|2|38|48038.84|0.02|0.00|R|F|1993-08-24|1993-09-10|1993-09-07|NONE|RAIL| requests.| +43662|44527|32028|3|5|7357.60|0.04|0.04|R|F|1993-08-24|1993-09-04|1993-09-17|TAKE BACK RETURN|AIR|lyly final accounts. de| +43662|349493|24506|4|14|21594.72|0.06|0.00|R|F|1993-08-31|1993-09-11|1993-09-24|TAKE BACK RETURN|SHIP|ar foxes haggle about the final packa| +43662|922933|10488|5|32|62588.48|0.04|0.00|R|F|1993-09-29|1993-08-27|1993-10-26|COLLECT COD|RAIL|ly even realms haggle sl| +43662|724493|24494|6|26|39453.96|0.06|0.08|R|F|1993-11-07|1993-08-22|1993-11-19|TAKE BACK RETURN|FOB| slyly even asymptotes. ruthlessl| +43663|15373|15374|1|42|54111.54|0.02|0.07|A|F|1994-07-12|1994-07-17|1994-07-16|COLLECT COD|FOB|ly bold accounts. slyly i| +43663|372078|22079|2|17|19551.02|0.01|0.02|A|F|1994-07-07|1994-08-21|1994-08-03|DELIVER IN PERSON|SHIP|t ideas do| +43663|499189|24208|3|38|45150.08|0.07|0.07|A|F|1994-06-26|1994-08-01|1994-07-16|DELIVER IN PERSON|RAIL|ts haggle carefully after the | +43663|858126|33161|4|41|44447.28|0.09|0.06|A|F|1994-08-11|1994-08-29|1994-08-25|TAKE BACK RETURN|SHIP|c requests sleep sl| +43688|808937|21454|1|42|77527.38|0.08|0.00|N|O|1997-11-11|1998-01-10|1997-12-11|NONE|SHIP|thely final packages boost furio| +43688|796404|33950|2|23|34508.51|0.05|0.06|N|O|1997-12-23|1998-01-31|1998-01-17|DELIVER IN PERSON|FOB|ages. quickly slow foxes a| +43688|152516|27523|3|25|39212.75|0.10|0.08|N|O|1997-12-16|1997-12-16|1997-12-25|DELIVER IN PERSON|MAIL| regular theodolite| +43688|332860|45367|4|10|18928.50|0.08|0.07|N|O|1997-12-31|1998-01-14|1998-01-11|TAKE BACK RETURN|FOB|uriously pending depe| +43688|370713|33221|5|17|30322.90|0.05|0.00|N|O|1997-11-11|1997-12-29|1997-12-09|DELIVER IN PERSON|RAIL| even excuses. slyly r| +43688|559991|35014|6|45|92293.65|0.08|0.04|N|O|1997-11-18|1998-02-02|1997-12-01|NONE|REG AIR|s. ironic, even deposits according to the| +43689|741714|29257|1|20|35113.60|0.09|0.05|A|F|1995-05-04|1995-04-11|1995-05-19|COLLECT COD|RAIL|the special packages. regular requests s| +43689|973496|48535|2|50|78472.50|0.01|0.01|R|F|1995-03-26|1995-03-26|1995-04-07|NONE|TRUCK|und the fluffily | +43689|546878|34409|3|32|61595.20|0.07|0.03|A|F|1995-04-12|1995-04-25|1995-04-24|COLLECT COD|TRUCK| across the even instructions. slyly unusu| +43689|368381|30889|4|14|20291.18|0.09|0.00|R|F|1995-03-05|1995-03-26|1995-04-01|TAKE BACK RETURN|REG AIR|ounts sleep stealthily. | +43689|367655|42670|5|36|62015.04|0.04|0.00|R|F|1995-05-19|1995-03-11|1995-06-02|NONE|FOB| pending requ| +43690|407010|19519|1|7|6418.93|0.09|0.07|R|F|1993-10-10|1993-08-19|1993-10-11|NONE|MAIL|e blithely ironic courts. bold theo| +43690|601839|26864|2|17|29593.60|0.04|0.07|R|F|1993-07-06|1993-09-03|1993-07-10|COLLECT COD|AIR|ss request| +43690|101189|38696|3|12|14282.16|0.02|0.06|A|F|1993-07-28|1993-07-21|1993-08-07|TAKE BACK RETURN|MAIL|press accounts. blithely regu| +43690|678743|41257|4|16|27547.36|0.09|0.05|A|F|1993-08-27|1993-08-24|1993-08-28|NONE|AIR|furiously regular| +43690|633531|8556|5|32|46864.00|0.02|0.04|A|F|1993-10-11|1993-08-13|1993-10-29|DELIVER IN PERSON|FOB|elets haggle | +43691|126833|14340|1|16|29757.28|0.08|0.07|N|O|1998-03-22|1998-03-23|1998-03-31|NONE|FOB|ular dolphins. stealthily silent | +43691|671710|21711|2|31|52132.08|0.08|0.08|N|O|1998-04-14|1998-02-26|1998-05-05|DELIVER IN PERSON|RAIL|ggle carefully pen| +43691|417022|4547|3|16|15024.00|0.08|0.08|N|O|1998-04-21|1998-03-10|1998-04-26|NONE|RAIL|totes. special, special requests cajole | +43692|241373|41374|1|29|38116.44|0.10|0.07|N|O|1996-05-15|1996-05-17|1996-06-09|DELIVER IN PERSON|SHIP|special accounts. f| +43692|743682|6197|2|42|72477.30|0.00|0.07|N|O|1996-04-19|1996-05-02|1996-05-15|TAKE BACK RETURN|TRUCK|e carefully; ironic, ironic| +43692|61805|11806|3|29|51237.20|0.00|0.02|N|O|1996-06-17|1996-06-06|1996-07-15|DELIVER IN PERSON|FOB|gular deposits are slyly inst| +43692|744514|7029|4|2|3116.96|0.03|0.01|N|O|1996-06-26|1996-05-15|1996-06-30|TAKE BACK RETURN|AIR|arefully final dolphins? blithely unus| +43692|38346|847|5|46|59079.64|0.04|0.05|N|O|1996-06-14|1996-04-27|1996-07-03|COLLECT COD|MAIL| the carefully special pack| +43693|267243|42254|1|42|50829.66|0.05|0.04|A|F|1992-09-09|1992-08-27|1992-09-30|COLLECT COD|SHIP|ously among t| +43693|541352|41353|2|12|16719.96|0.01|0.06|A|F|1992-06-18|1992-07-17|1992-07-17|COLLECT COD|RAIL| carefully pending pearls sleep blithel| +43694|314276|14277|1|32|41288.32|0.10|0.02|N|O|1995-07-23|1995-08-16|1995-08-04|NONE|FOB|eposits. furious| +43694|26577|39078|2|34|51121.38|0.03|0.05|N|O|1995-08-13|1995-08-12|1995-08-29|DELIVER IN PERSON|REG AIR|usly final accounts run slyly| +43695|370954|33462|1|45|91122.30|0.01|0.06|N|O|1996-07-12|1996-07-28|1996-08-09|NONE|RAIL|o the ironic asymptotes. special foxes s| +43695|609214|21727|2|6|6739.08|0.01|0.00|N|O|1996-05-24|1996-06-23|1996-06-07|DELIVER IN PERSON|TRUCK|sly bold pinto beans. ironic, special pint| +43695|43455|43456|3|2|2796.90|0.05|0.03|N|O|1996-08-05|1996-07-17|1996-08-29|COLLECT COD|MAIL| furiously. fluffily ironic packages| +43720|405281|5282|1|35|41519.10|0.00|0.03|A|F|1994-09-28|1994-08-18|1994-10-01|DELIVER IN PERSON|AIR|es. platelets thrash quickl| +43721|621220|8757|1|26|29670.94|0.10|0.06|N|O|1997-01-18|1996-11-24|1997-01-26|NONE|REG AIR|ges sleep fluffi| +43721|833762|46279|2|36|61045.92|0.08|0.07|N|O|1996-12-18|1996-12-12|1997-01-13|TAKE BACK RETURN|REG AIR|y. quickly regu| +43721|31341|31342|3|6|7634.04|0.05|0.01|N|O|1996-12-15|1996-11-12|1997-01-01|TAKE BACK RETURN|REG AIR|accounts use quickly above the depen| +43721|737466|49981|4|23|34578.89|0.08|0.01|N|O|1996-11-17|1996-12-05|1996-12-12|NONE|TRUCK| excuses. special, regular theodolites | +43721|574688|37200|5|32|56405.12|0.10|0.04|N|O|1996-10-21|1996-11-16|1996-10-31|COLLECT COD|MAIL|the regular pinto beans. furiou| +43721|773240|23241|6|1|1313.21|0.06|0.00|N|O|1997-01-15|1997-01-02|1997-01-20|DELIVER IN PERSON|AIR|ly final packages. slyly even depo| +43721|843583|18616|7|40|61061.60|0.05|0.00|N|O|1997-01-18|1996-12-16|1997-01-22|NONE|MAIL|special ins| +43722|94337|31841|1|39|51921.87|0.05|0.00|N|O|1998-07-04|1998-05-05|1998-07-13|TAKE BACK RETURN|MAIL|ctions. dinos are| +43722|505909|5910|2|14|26808.32|0.07|0.02|N|O|1998-05-10|1998-04-26|1998-06-09|DELIVER IN PERSON|RAIL|ld accounts are quickl| +43722|806292|43841|3|30|35947.50|0.05|0.03|N|O|1998-06-09|1998-05-19|1998-06-11|NONE|TRUCK|s courts. final| +43722|335888|48395|4|29|55792.23|0.10|0.01|N|O|1998-03-13|1998-05-20|1998-03-24|DELIVER IN PERSON|FOB|ironic depo| +43722|261828|36839|5|4|7159.24|0.01|0.07|N|O|1998-05-22|1998-04-25|1998-06-15|TAKE BACK RETURN|SHIP|es. final re| +43722|526610|1631|6|27|44187.93|0.06|0.06|N|O|1998-06-23|1998-04-11|1998-07-17|TAKE BACK RETURN|MAIL|nt accounts haggle against t| +43723|938898|38899|1|24|46484.40|0.09|0.07|N|O|1995-07-26|1995-05-17|1995-08-19|NONE|REG AIR|en packages. | +43723|57347|44851|2|45|58695.30|0.02|0.05|A|F|1995-05-14|1995-06-17|1995-06-04|DELIVER IN PERSON|REG AIR|xpress deposits aft| +43723|816201|41234|3|35|39100.60|0.00|0.03|N|F|1995-06-15|1995-06-18|1995-07-09|COLLECT COD|RAIL|ts. final dolphins b| +43723|879163|4198|4|42|47969.04|0.00|0.05|A|F|1995-04-17|1995-06-04|1995-05-01|COLLECT COD|RAIL|use. ironic platelets cajole | +43724|952427|27466|1|47|69530.86|0.08|0.03|N|O|1996-10-13|1996-12-28|1996-11-10|NONE|MAIL|slyly after the slyly special sentiments. | +43724|430122|30123|2|28|29458.80|0.03|0.08|N|O|1996-12-12|1996-11-10|1996-12-29|COLLECT COD|FOB|y carefully regular instr| +43724|52626|15128|3|11|17364.82|0.10|0.01|N|O|1997-01-25|1996-12-06|1997-02-12|COLLECT COD|MAIL|quickly along| +43724|484318|46828|4|41|53393.89|0.07|0.06|N|O|1996-10-09|1996-11-19|1996-10-30|NONE|RAIL| final request| +43724|931179|31180|5|31|37514.03|0.03|0.02|N|O|1997-01-27|1996-11-26|1997-02-19|TAKE BACK RETURN|FOB|s throughout the blithely even | +43724|317565|42578|6|46|72797.30|0.01|0.03|N|O|1997-01-01|1996-11-30|1997-01-24|DELIVER IN PERSON|AIR|tornis haggle blithely up t| +43725|728936|16479|1|9|17684.10|0.02|0.01|R|F|1995-02-09|1995-01-10|1995-02-15|DELIVER IN PERSON|RAIL|into beans. accounts thrash blithely blith| +43725|225641|38146|2|14|21932.82|0.06|0.06|A|F|1994-12-27|1995-01-10|1995-01-09|NONE|AIR|arefully bold theodolites. ironic, expr| +43726|524076|49097|1|50|55002.50|0.09|0.03|R|F|1995-04-16|1995-02-22|1995-05-06|TAKE BACK RETURN|SHIP| against the instructions-- regular| +43726|131583|31584|2|7|11302.06|0.07|0.08|R|F|1995-03-21|1995-03-13|1995-04-01|COLLECT COD|TRUCK|e quickly among the final| +43727|502060|14571|1|39|41419.56|0.10|0.00|N|O|1998-11-05|1998-10-24|1998-11-23|NONE|SHIP|ornis. flu| +43752|743421|5936|1|42|61504.38|0.01|0.03|N|O|1998-05-06|1998-04-12|1998-06-05|NONE|RAIL|lyly ironic accounts. quickly | +43752|674405|24406|2|37|51036.69|0.04|0.08|N|O|1998-05-10|1998-04-28|1998-05-20|DELIVER IN PERSON|REG AIR|thely regular, final p| +43752|712783|25298|3|14|25140.50|0.04|0.04|N|O|1998-05-31|1998-03-13|1998-06-11|COLLECT COD|TRUCK|after the requests. carefully regu| +43752|739566|27109|4|46|73854.38|0.01|0.04|N|O|1998-03-29|1998-03-06|1998-04-24|COLLECT COD|AIR|arefully. doggedly close accounts abo| +43752|883345|8380|5|39|51803.70|0.00|0.05|N|O|1998-05-08|1998-04-29|1998-05-19|TAKE BACK RETURN|TRUCK|blithely ironic foxes wake alongside of t| +43752|372911|10433|6|34|67452.60|0.07|0.00|N|O|1998-02-26|1998-03-20|1998-03-05|NONE|RAIL|e daringly speci| +43752|499061|24080|7|22|23320.88|0.06|0.06|N|O|1998-03-16|1998-04-09|1998-03-31|COLLECT COD|FOB|the theodolites was ruth| +43753|705859|43402|1|47|87646.54|0.09|0.03|N|O|1998-01-20|1998-03-17|1998-01-30|NONE|RAIL|y final acco| +43753|364727|39742|2|27|48376.17|0.02|0.06|N|O|1998-03-07|1998-03-13|1998-03-24|TAKE BACK RETURN|SHIP|osits hang furiously above| +43754|177992|27993|1|31|64169.69|0.00|0.00|N|O|1996-07-18|1996-05-29|1996-08-07|COLLECT COD|REG AIR| furiously final theodolite| +43755|311820|36833|1|4|7327.24|0.01|0.02|A|F|1994-06-06|1994-07-22|1994-06-23|DELIVER IN PERSON|REG AIR|final requests. bold packa| +43755|755087|5088|2|4|4568.20|0.01|0.07|R|F|1994-09-19|1994-07-23|1994-09-23|COLLECT COD|AIR| the regular deposits wake furiousl| +43755|740349|27892|3|29|40289.99|0.05|0.03|A|F|1994-09-04|1994-07-23|1994-09-13|COLLECT COD|SHIP|closely unusual deposits cajole sl| +43756|809299|34332|1|37|44705.25|0.06|0.00|R|F|1992-06-10|1992-07-31|1992-07-05|DELIVER IN PERSON|RAIL|above the fluffily p| +43756|878792|16344|2|30|53122.50|0.10|0.08|A|F|1992-07-27|1992-08-10|1992-08-19|TAKE BACK RETURN|RAIL|lyly quickly regular requests. bu| +43756|849176|49177|3|13|14626.69|0.09|0.04|R|F|1992-07-01|1992-07-21|1992-07-22|COLLECT COD|TRUCK|e slyly even e| +43756|98689|36193|4|41|69194.88|0.08|0.05|R|F|1992-07-09|1992-07-29|1992-08-08|TAKE BACK RETURN|FOB| even pint| +43757|217919|30424|1|9|16532.10|0.06|0.03|N|O|1995-12-09|1995-10-25|1995-12-18|DELIVER IN PERSON|AIR|ely silent dolphins cajole. | +43757|550046|47|2|29|31784.58|0.05|0.04|N|O|1995-12-27|1995-11-08|1995-12-28|COLLECT COD|TRUCK|lyly about the ironic requests. | +43758|675860|13400|1|19|34880.77|0.09|0.00|N|O|1998-03-18|1998-04-26|1998-03-30|DELIVER IN PERSON|SHIP|ial deposits was blithely. packag| +43758|166900|16901|2|11|21635.90|0.09|0.02|N|O|1998-03-27|1998-05-05|1998-04-25|TAKE BACK RETURN|REG AIR| boost daringly even inst| +43758|81643|19147|3|21|34117.44|0.02|0.03|N|O|1998-06-04|1998-04-27|1998-06-08|TAKE BACK RETURN|REG AIR|latelets are furiously at the | +43759|31658|6659|1|43|68354.95|0.09|0.07|N|O|1997-08-19|1997-10-09|1997-09-01|NONE|REG AIR|sly across | +43759|73484|10988|2|11|16032.28|0.05|0.08|N|O|1997-10-05|1997-10-04|1997-10-06|DELIVER IN PERSON|MAIL|ests. blithely unusual| +43759|38644|1145|3|23|36400.72|0.06|0.04|N|O|1997-10-29|1997-10-13|1997-11-02|NONE|REG AIR|l platelets eng| +43784|825627|38144|1|17|26393.86|0.04|0.04|N|O|1997-07-25|1997-06-30|1997-08-03|TAKE BACK RETURN|FOB|ar instructions among the slyly final| +43784|299849|12355|2|19|35127.77|0.07|0.06|N|O|1997-07-10|1997-06-23|1997-07-23|COLLECT COD|FOB|cajole carefully special ideas: blit| +43784|551327|38861|3|19|26187.70|0.04|0.03|N|O|1997-04-30|1997-05-24|1997-05-11|NONE|RAIL|arefully packages. quickly expr| +43784|143062|18067|4|22|24311.32|0.03|0.00|N|O|1997-04-24|1997-06-19|1997-04-30|COLLECT COD|REG AIR|its. final theodolites af| +43784|440057|2566|5|3|2991.09|0.03|0.02|N|O|1997-06-07|1997-06-08|1997-06-22|NONE|MAIL|ully perman| +43785|81158|31159|1|16|18226.40|0.10|0.04|A|F|1994-10-26|1994-10-02|1994-11-25|DELIVER IN PERSON|AIR| bold requests nag | +43786|990012|2532|1|20|22039.40|0.08|0.07|R|F|1994-01-10|1993-10-24|1994-01-31|TAKE BACK RETURN|SHIP|es? special instructions solve| +43786|119606|7113|2|13|21132.80|0.07|0.02|R|F|1993-09-30|1993-12-12|1993-10-24|NONE|RAIL|ajole carefully ironic packages. furiously | +43786|206279|6280|3|4|4741.04|0.01|0.02|A|F|1994-01-15|1993-11-29|1994-01-29|NONE|REG AIR|ithely along the regular | +43786|919670|7225|4|24|40551.12|0.06|0.04|R|F|1993-10-31|1993-11-27|1993-11-25|DELIVER IN PERSON|RAIL|ly special requests. fur| +43787|284984|9995|1|44|86634.68|0.04|0.08|R|F|1994-08-31|1994-08-19|1994-09-29|NONE|FOB| unusual excuses abou| +43788|140199|15204|1|1|1239.19|0.09|0.07|N|O|1996-08-14|1996-06-12|1996-08-15|NONE|REG AIR|yly pending pains. pending t| +43789|181436|6443|1|40|60697.20|0.02|0.02|A|F|1992-11-04|1992-09-09|1992-11-10|NONE|TRUCK| carefully even ep| +43790|368123|30631|1|33|39306.63|0.10|0.08|N|O|1997-01-12|1997-01-08|1997-02-06|DELIVER IN PERSON|SHIP|o beans wake ab| +43790|35939|48440|2|18|33748.74|0.08|0.07|N|O|1996-12-25|1997-03-01|1997-01-19|DELIVER IN PERSON|MAIL| blithely regular accounts along the pac| +43791|565695|28207|1|37|65144.79|0.01|0.08|A|F|1995-01-14|1995-03-08|1995-01-17|COLLECT COD|MAIL|e closely: unusual in| +43816|5033|30034|1|34|31893.02|0.08|0.05|R|F|1993-01-21|1993-01-21|1993-02-19|DELIVER IN PERSON|REG AIR| slyly furious warhorses. bold, even instru| +43816|580520|30521|2|24|38412.00|0.10|0.00|R|F|1992-11-16|1992-12-08|1992-12-10|DELIVER IN PERSON|AIR|ions. blithely ironic ideas are furiousl| +43816|792536|30082|3|1|1628.50|0.06|0.04|R|F|1993-03-06|1992-12-19|1993-03-19|TAKE BACK RETURN|SHIP|se carefully along th| +43816|145206|7709|4|3|3753.60|0.03|0.02|A|F|1992-11-28|1993-01-12|1992-12-14|TAKE BACK RETURN|REG AIR|ep blithely across the slyly regular fo| +43817|859829|47381|1|1|1788.78|0.09|0.05|R|F|1995-03-08|1995-03-14|1995-04-06|DELIVER IN PERSON|REG AIR|ly express warhorses b| +43818|981696|44216|1|44|78216.60|0.07|0.03|A|F|1993-02-28|1993-03-10|1993-03-27|TAKE BACK RETURN|AIR|s. blithely express packa| +43818|358785|33800|2|33|60844.41|0.04|0.01|A|F|1992-12-20|1993-01-30|1993-01-01|NONE|REG AIR| sleep bravely. ca| +43819|441769|29294|1|38|65008.12|0.01|0.01|N|O|1998-07-15|1998-05-06|1998-07-25|TAKE BACK RETURN|TRUCK|ically regular requests ar| +43819|801979|39528|2|15|28213.95|0.06|0.07|N|O|1998-05-27|1998-04-24|1998-06-07|COLLECT COD|RAIL|s. carefully unusual | +43819|845528|33077|3|2|2946.96|0.06|0.00|N|O|1998-05-10|1998-06-02|1998-05-28|COLLECT COD|REG AIR|ncies wake furiously above t| +43819|781340|43856|4|6|8527.86|0.00|0.07|N|O|1998-05-18|1998-05-18|1998-05-20|TAKE BACK RETURN|FOB| the slyly special instructio| +43819|971920|34440|5|44|87642.72|0.08|0.07|N|O|1998-07-08|1998-05-23|1998-08-03|TAKE BACK RETURN|FOB|mas may sleep. slyly even dolphins pro| +43819|57756|7757|6|38|65122.50|0.08|0.04|N|O|1998-06-09|1998-06-07|1998-06-19|COLLECT COD|RAIL|ss the slyly| +43819|702169|39712|7|38|44502.94|0.00|0.04|N|O|1998-05-23|1998-05-23|1998-06-18|TAKE BACK RETURN|SHIP|ecoys sleep blithely. furiously ironic forg| +43820|349759|49760|1|7|12661.18|0.06|0.01|N|O|1998-02-20|1998-04-06|1998-02-22|DELIVER IN PERSON|TRUCK|c pinto beans affix furiously even p| +43820|385411|10426|2|47|70330.80|0.07|0.00|N|O|1998-02-18|1998-04-09|1998-03-03|NONE|SHIP|unts. furiously final deposit| +43820|598225|35759|3|33|43665.60|0.07|0.08|N|O|1998-02-10|1998-03-01|1998-03-08|DELIVER IN PERSON|REG AIR|instructions. stealthily ironic r| +43821|992623|42624|1|21|36027.18|0.08|0.05|N|O|1997-11-23|1997-09-05|1997-11-28|DELIVER IN PERSON|TRUCK|ts haggle | +43821|998129|48130|2|5|6135.40|0.05|0.02|N|O|1997-10-28|1997-10-12|1997-11-22|NONE|TRUCK|ronic packages among the thin, ironi| +43822|831701|31702|1|39|63673.74|0.01|0.04|N|O|1996-03-31|1996-04-07|1996-04-03|COLLECT COD|MAIL|ckages. slyly even deposits along t| +43822|393091|18106|2|31|36706.48|0.03|0.08|N|O|1996-04-29|1996-04-10|1996-05-25|TAKE BACK RETURN|TRUCK|express deposits | +43822|664728|2268|3|30|50780.70|0.06|0.07|N|O|1996-03-25|1996-04-11|1996-04-11|NONE|AIR|otes. blithely bold ideas wake careful| +43822|71110|33612|4|32|34595.52|0.06|0.06|N|O|1996-04-24|1996-05-11|1996-05-21|DELIVER IN PERSON|RAIL|e the blithely special ideas. unusu| +43822|132018|32019|5|45|47250.45|0.01|0.08|N|O|1996-04-07|1996-04-20|1996-04-28|TAKE BACK RETURN|RAIL|ickly ironic | +43822|826322|13871|6|6|7489.68|0.03|0.01|N|O|1996-05-09|1996-05-10|1996-05-24|DELIVER IN PERSON|MAIL|wake furiously across the even depo| +43823|608727|8728|1|19|31078.11|0.07|0.08|N|O|1996-09-24|1996-10-21|1996-09-28|DELIVER IN PERSON|MAIL|packages. regular instruction| +43823|866652|4204|2|12|19423.32|0.07|0.00|N|O|1996-10-21|1996-11-18|1996-11-17|NONE|TRUCK|he furiously regular foxes. pack| +43823|810377|22894|3|18|23171.94|0.08|0.03|N|O|1996-09-02|1996-11-09|1996-09-04|COLLECT COD|TRUCK|blithely express| +43848|462262|49790|1|50|61212.00|0.04|0.06|N|O|1998-07-03|1998-06-12|1998-07-29|COLLECT COD|MAIL|equests do wake. ironic, express p| +43848|226817|1826|2|5|8719.00|0.05|0.03|N|O|1998-06-17|1998-06-03|1998-07-07|NONE|AIR|sly. ruthless accounts wa| +43848|105193|5194|3|31|37143.89|0.04|0.08|N|O|1998-06-05|1998-06-08|1998-06-08|TAKE BACK RETURN|SHIP|s! furiously special packages a| +43848|968645|18646|4|30|51408.00|0.06|0.01|N|O|1998-07-25|1998-05-18|1998-07-26|TAKE BACK RETURN|MAIL|aggle carefully. reg| +43848|16091|16092|5|16|16113.44|0.00|0.05|N|O|1998-07-09|1998-06-17|1998-07-10|NONE|REG AIR|kly even instructions.| +43848|431902|31903|6|38|69687.44|0.09|0.04|N|O|1998-07-10|1998-05-10|1998-07-23|DELIVER IN PERSON|SHIP|rges. blithely express acc| +43849|722414|34929|1|27|38782.26|0.02|0.06|A|F|1994-09-29|1994-09-04|1994-10-11|DELIVER IN PERSON|FOB|impress according to the carefully e| +43849|598126|35660|2|46|56308.60|0.04|0.05|A|F|1994-08-24|1994-08-22|1994-08-29|NONE|TRUCK|deposits beside the carefull| +43849|688274|13301|3|12|15146.88|0.05|0.05|R|F|1994-09-04|1994-08-09|1994-09-11|DELIVER IN PERSON|AIR| accounts are after t| +43849|805789|18306|4|1|1694.74|0.06|0.08|R|F|1994-06-24|1994-09-15|1994-07-20|DELIVER IN PERSON|AIR| instructions haggle against the| +43849|893043|5561|5|40|41440.00|0.02|0.04|R|F|1994-10-13|1994-08-04|1994-10-24|TAKE BACK RETURN|RAIL|n requests detect around the ironi| +43849|373650|48665|6|22|37920.08|0.07|0.02|R|F|1994-07-04|1994-08-02|1994-07-23|DELIVER IN PERSON|REG AIR|lar foxes engage slyly express p| +43850|179459|41963|1|7|10769.15|0.03|0.08|R|F|1992-12-20|1993-02-13|1993-01-18|NONE|SHIP|nag; enticingly special packages above | +43850|158963|8964|2|44|88966.24|0.09|0.06|A|F|1993-03-06|1993-02-13|1993-03-10|NONE|MAIL|silent ideas are slyly to the careful| +43851|219592|7105|1|38|57440.04|0.03|0.03|A|F|1995-02-03|1995-02-01|1995-02-10|NONE|REG AIR|nto beans are| +43851|672148|47175|2|35|39203.85|0.09|0.02|A|F|1994-12-16|1994-12-31|1995-01-04|TAKE BACK RETURN|FOB|xes. dependencies | +43851|774662|37178|3|31|53835.53|0.01|0.01|R|F|1994-11-29|1995-01-24|1994-12-15|DELIVER IN PERSON|RAIL|s cajole. asymp| +43852|743072|18101|1|17|18955.68|0.00|0.08|A|F|1994-05-07|1994-03-28|1994-05-23|DELIVER IN PERSON|REG AIR| patterns around th| +43852|810787|10788|2|32|54327.68|0.07|0.08|A|F|1994-02-15|1994-03-18|1994-02-22|COLLECT COD|RAIL|unts wake closely according to the bold | +43852|891915|4433|3|36|68647.32|0.06|0.02|R|F|1994-04-29|1994-04-23|1994-05-23|NONE|SHIP| thinly ironic pinto be| +43852|409309|46834|4|21|25583.88|0.00|0.03|A|F|1994-05-04|1994-03-30|1994-05-31|TAKE BACK RETURN|REG AIR|unts. thinly bold | +43852|242056|4561|5|46|45909.84|0.07|0.01|A|F|1994-04-26|1994-04-21|1994-04-29|TAKE BACK RETURN|FOB|ly after the furiously even plate| +43852|232667|45172|6|43|68784.95|0.02|0.03|R|F|1994-04-01|1994-03-08|1994-04-07|COLLECT COD|REG AIR|ly final accounts must have to| +43853|267811|30317|1|9|16009.20|0.04|0.07|N|O|1998-07-08|1998-09-05|1998-07-14|NONE|AIR|lly quickly special instructions. blit| +43853|93608|18611|2|39|62462.40|0.00|0.05|N|O|1998-08-15|1998-09-12|1998-08-31|DELIVER IN PERSON|REG AIR| silent forges above the carefully fin| +43853|258346|8347|3|32|41738.56|0.10|0.04|N|O|1998-06-22|1998-08-09|1998-06-25|NONE|REG AIR|arefully bold packages. furiously | +43853|6249|6250|4|13|15018.12|0.04|0.08|N|O|1998-08-03|1998-08-22|1998-08-17|NONE|REG AIR|requests cajole blithely above| +43853|11132|48633|5|38|39638.94|0.10|0.07|N|O|1998-09-07|1998-08-15|1998-09-12|NONE|AIR|. furiously regular theodolites | +43853|83879|33880|6|31|57748.97|0.01|0.01|N|O|1998-08-04|1998-08-20|1998-09-03|COLLECT COD|FOB|eep above the furiously ironic dinos| +43853|749111|24140|7|34|39442.72|0.10|0.05|N|O|1998-07-26|1998-08-19|1998-08-17|DELIVER IN PERSON|AIR|cies cajole.| +43854|303347|15854|1|28|37809.24|0.09|0.03|A|F|1992-11-16|1992-12-13|1992-12-15|COLLECT COD|MAIL|usly about the permanent| +43855|392439|17454|1|37|56662.54|0.00|0.08|N|O|1998-05-22|1998-07-09|1998-05-29|TAKE BACK RETURN|REG AIR| the furiously fluffy depo| +43855|710941|10942|2|27|52701.57|0.00|0.04|N|O|1998-05-06|1998-07-14|1998-06-03|DELIVER IN PERSON|TRUCK|kages. blithely ironic i| +43855|782825|45341|3|35|66772.65|0.05|0.06|N|O|1998-06-06|1998-07-10|1998-06-24|NONE|FOB|lly along the evenly re| +43855|923074|48111|4|40|43881.20|0.06|0.06|N|O|1998-07-12|1998-07-04|1998-08-02|NONE|SHIP|hely regular excuses. ironic ideas cajole | +43855|101682|14185|5|40|67347.20|0.01|0.03|N|O|1998-08-13|1998-07-03|1998-08-19|COLLECT COD|REG AIR|aringly thin requests sleep according to| +43880|221798|34303|1|7|12038.46|0.00|0.04|A|F|1993-01-13|1992-11-30|1993-01-29|NONE|REG AIR| regular, iron| +43880|752648|2649|2|31|52718.91|0.06|0.08|R|F|1992-12-08|1992-11-24|1992-12-27|TAKE BACK RETURN|AIR|efully express pinto beans h| +43880|740341|2856|3|11|15194.41|0.02|0.02|R|F|1992-12-18|1992-12-14|1992-12-29|COLLECT COD|AIR|lly even deposits above the blithely p| +43880|898315|10833|4|21|27578.67|0.01|0.07|R|F|1993-02-03|1992-12-15|1993-02-12|DELIVER IN PERSON|RAIL|deposits. carefully bold i| +43880|979232|16790|5|4|5244.76|0.06|0.00|R|F|1992-11-09|1992-12-18|1992-12-07|DELIVER IN PERSON|REG AIR|f the furiousl| +43881|100923|13426|1|36|69261.12|0.07|0.08|A|F|1993-03-02|1993-04-19|1993-03-28|DELIVER IN PERSON|MAIL|ithely regular accounts solve| +43881|200785|25794|2|14|23600.78|0.01|0.06|A|F|1993-02-25|1993-04-18|1993-03-13|DELIVER IN PERSON|REG AIR| even theodolites boost | +43881|578054|28055|3|24|27168.72|0.01|0.03|A|F|1993-05-22|1993-04-11|1993-05-26|TAKE BACK RETURN|FOB|se furiously. always ev| +43881|338136|38137|4|13|15263.56|0.03|0.00|A|F|1993-02-16|1993-03-31|1993-02-18|DELIVER IN PERSON|AIR|n, bold theodolites. blithely| +43881|50481|37985|5|38|54396.24|0.00|0.03|A|F|1993-05-06|1993-03-07|1993-06-04|TAKE BACK RETURN|REG AIR|hely sly packages boost. specia| +43881|425973|25974|6|26|49372.70|0.01|0.00|A|F|1993-04-29|1993-03-13|1993-05-11|COLLECT COD|RAIL|es. blithely pending a| +43881|326783|1796|7|19|34385.63|0.02|0.04|A|F|1993-03-12|1993-03-29|1993-04-01|NONE|TRUCK|ress deposits. bold pinto beans cajole | +43882|228274|28275|1|4|4809.04|0.07|0.04|A|F|1993-02-19|1993-03-09|1993-03-12|DELIVER IN PERSON|TRUCK| instructions. quickly| +43882|600054|12567|2|8|7632.16|0.07|0.03|R|F|1993-01-01|1993-03-20|1993-01-04|NONE|TRUCK|y pending deposits caj| +43882|96447|8949|3|36|51963.84|0.08|0.01|A|F|1993-03-18|1993-02-06|1993-03-19|TAKE BACK RETURN|FOB| carefully regular packag| +43882|975022|12580|4|8|8775.84|0.07|0.01|A|F|1993-03-11|1993-02-03|1993-03-29|DELIVER IN PERSON|MAIL|unusual, ironic accounts. regu| +43882|193694|18701|5|32|57206.08|0.09|0.05|A|F|1993-03-17|1993-02-28|1993-03-26|COLLECT COD|REG AIR| furiously unusual excuses are blithely. | +43882|411681|49206|6|36|57335.76|0.06|0.05|A|F|1993-04-04|1993-02-13|1993-04-06|TAKE BACK RETURN|REG AIR|ing, regular foxes use slyl| +43882|118355|30858|7|17|23346.95|0.02|0.02|A|F|1993-01-11|1993-03-07|1993-02-03|COLLECT COD|REG AIR|he blithely regu| +43883|179329|29330|1|16|22533.12|0.07|0.02|A|F|1993-01-15|1992-11-28|1993-01-31|COLLECT COD|FOB|ake above the carefully ironic pin| +43883|975022|37542|2|22|24133.56|0.05|0.00|R|F|1992-11-17|1992-12-14|1992-12-06|DELIVER IN PERSON|REG AIR|atelets; regular theodolites wake b| +43883|186627|36628|3|24|41126.88|0.04|0.06|A|F|1993-01-25|1992-12-25|1993-01-28|NONE|MAIL|nal foxes sleep furiously. quickly f| +43883|633059|33060|4|28|27776.56|0.01|0.01|R|F|1992-11-09|1993-01-01|1992-11-21|DELIVER IN PERSON|MAIL| wake. realms are ca| +43884|466482|16483|1|19|27520.74|0.09|0.06|N|O|1998-10-30|1998-10-18|1998-11-19|DELIVER IN PERSON|FOB|l deposits sleep enticingly even accounts.| +43885|430202|42711|1|43|48683.74|0.02|0.06|N|O|1996-07-03|1996-07-01|1996-07-08|DELIVER IN PERSON|RAIL|e carefully. regul| +43885|394990|44991|2|31|64634.38|0.01|0.05|N|O|1996-09-07|1996-06-20|1996-10-01|COLLECT COD|REG AIR|es after the slyly even pa| +43886|224125|49134|1|39|40915.29|0.04|0.01|R|F|1994-09-25|1994-10-31|1994-10-16|COLLECT COD|REG AIR|s. ironic asymptotes sle| +43886|854996|30031|2|47|91694.65|0.07|0.04|R|F|1994-10-06|1994-10-21|1994-11-05|TAKE BACK RETURN|REG AIR|ole regular ideas. furiously sile| +43886|915133|40170|3|24|27554.16|0.10|0.07|R|F|1994-12-15|1994-10-17|1994-12-23|TAKE BACK RETURN|RAIL|quests wake bl| +43886|632831|45344|4|39|68788.20|0.04|0.04|A|F|1994-08-28|1994-10-29|1994-09-15|TAKE BACK RETURN|TRUCK|. blithely | +43887|870837|33355|1|9|16270.11|0.08|0.02|N|O|1997-03-10|1997-06-02|1997-03-20|NONE|AIR|c foxes detect fluffil| +43887|144008|44009|2|28|29456.00|0.10|0.05|N|O|1997-05-29|1997-05-31|1997-06-14|NONE|SHIP|y regular ideas | +43912|478627|3646|1|43|69040.80|0.02|0.08|N|O|1997-04-10|1997-02-21|1997-05-06|NONE|RAIL|sly final packages| +43912|278374|3385|2|49|66265.64|0.00|0.02|N|O|1997-02-05|1997-03-04|1997-02-16|COLLECT COD|SHIP|s play. carefully ironic| +43912|623094|48119|3|31|31528.86|0.02|0.00|N|O|1997-04-18|1997-02-28|1997-05-08|DELIVER IN PERSON|FOB|can wake fina| +43913|546980|9491|1|17|34458.32|0.04|0.00|N|O|1998-06-22|1998-04-30|1998-07-14|DELIVER IN PERSON|AIR|kly across the pinto be| +43913|90472|2974|2|22|32174.34|0.05|0.02|N|O|1998-04-23|1998-05-21|1998-05-01|COLLECT COD|TRUCK|r, unusual requests wake quickly bl| +43914|657407|32434|1|5|6821.85|0.08|0.07|N|O|1996-12-03|1996-12-10|1996-12-04|DELIVER IN PERSON|RAIL|sits. ironic a| +43915|560506|48040|1|11|17231.28|0.05|0.04|N|O|1998-06-02|1998-05-03|1998-06-03|TAKE BACK RETURN|REG AIR|s pinto beans. regular, final| +43915|410842|23351|2|26|45573.32|0.09|0.08|N|O|1998-05-23|1998-04-25|1998-06-22|TAKE BACK RETURN|SHIP|xes. regular courts haggle account| +43915|7341|44842|3|27|33705.18|0.10|0.06|N|O|1998-05-02|1998-04-05|1998-05-05|DELIVER IN PERSON|AIR|er the ironic warthogs are carefully| +43916|423167|23168|1|27|29433.78|0.01|0.04|N|O|1998-06-04|1998-05-04|1998-06-26|DELIVER IN PERSON|SHIP|, even ideas boost | +43916|151824|39334|2|39|73156.98|0.06|0.02|N|O|1998-06-25|1998-04-28|1998-07-24|NONE|RAIL|ithely pending frets are. even, special | +43916|691911|41912|3|37|70406.56|0.05|0.06|N|O|1998-05-20|1998-04-24|1998-06-03|NONE|AIR| slyly pending p| +43916|933091|20646|4|2|2248.10|0.07|0.01|N|O|1998-06-11|1998-04-30|1998-06-13|DELIVER IN PERSON|RAIL|ests. stealthily unusual req| +43917|860793|35828|1|35|61381.25|0.02|0.05|N|O|1996-09-23|1996-09-01|1996-10-22|DELIVER IN PERSON|AIR|ts. regular packages | +43917|337676|25195|2|8|13709.28|0.04|0.06|N|O|1996-07-01|1996-08-27|1996-07-10|DELIVER IN PERSON|FOB|ly blithely regular theodolites. blithe| +43917|309646|47165|3|39|64569.57|0.06|0.00|N|O|1996-08-06|1996-08-13|1996-08-08|DELIVER IN PERSON|RAIL|, regular asymptotes. iro| +43917|214317|26822|4|49|60333.70|0.02|0.08|N|O|1996-08-10|1996-08-31|1996-08-26|DELIVER IN PERSON|REG AIR|telets. carefully even requests cajole sl| +43918|915066|27585|1|38|41078.76|0.09|0.02|A|F|1993-06-19|1993-07-16|1993-07-13|TAKE BACK RETURN|SHIP|es are carefully along the foxe| +43918|509419|34440|2|3|4285.17|0.04|0.07|R|F|1993-07-05|1993-08-20|1993-07-07|COLLECT COD|AIR|elets are slyly against the bl| +43918|789317|14348|3|4|5625.12|0.07|0.04|R|F|1993-08-27|1993-09-02|1993-09-10|NONE|REG AIR|regular the| +43918|36264|48765|4|47|56412.22|0.03|0.06|A|F|1993-08-16|1993-08-20|1993-08-21|DELIVER IN PERSON|MAIL|ss the unusua| +43919|460782|10783|1|43|74938.68|0.02|0.05|N|O|1995-11-14|1995-12-07|1995-11-24|DELIVER IN PERSON|AIR|pinto beans wake carefully. blithely regu| +43919|361127|11128|2|30|35643.30|0.07|0.01|N|O|1995-11-08|1995-12-28|1995-11-23|NONE|AIR|ily express deposits. careful| +43919|453914|41442|3|38|70979.82|0.04|0.00|N|O|1995-11-17|1995-11-18|1995-12-17|TAKE BACK RETURN|SHIP|slyly busy deposits. | +43919|918338|5893|4|18|24413.22|0.04|0.06|N|O|1995-12-10|1995-12-26|1995-12-21|NONE|SHIP|fluffily final ideas nag blithely fina| +43919|493748|6258|5|50|87086.00|0.01|0.08|N|O|1996-01-15|1995-11-20|1996-01-24|COLLECT COD|RAIL|unts. slyly even fo| +43944|73205|48208|1|29|34167.80|0.06|0.00|N|O|1997-06-27|1997-04-15|1997-07-24|TAKE BACK RETURN|FOB|kages haggle to the | +43944|343362|43363|2|32|44971.20|0.01|0.05|N|O|1997-05-15|1997-05-20|1997-06-09|TAKE BACK RETURN|RAIL|s sleep furiously furiously fin| +43944|885134|35135|3|43|48120.87|0.07|0.02|N|O|1997-03-19|1997-05-02|1997-04-10|DELIVER IN PERSON|AIR|cajole carefully pe| +43944|446979|21996|4|21|40444.95|0.02|0.01|N|O|1997-04-13|1997-04-08|1997-05-11|TAKE BACK RETURN|AIR|boost furiously | +43944|364509|39524|5|23|36190.27|0.06|0.03|N|O|1997-03-24|1997-04-12|1997-04-17|NONE|FOB| packages. c| +43945|776199|13745|1|4|5100.64|0.04|0.08|A|F|1993-01-01|1992-12-15|1993-01-22|TAKE BACK RETURN|AIR|t slyly. slyly ironic instructions x-ray de| +43945|562871|12872|2|11|21272.35|0.06|0.04|A|F|1992-12-14|1992-12-04|1993-01-02|TAKE BACK RETURN|RAIL|accounts. quickly ironic packag| +43945|171012|21013|3|15|16245.15|0.04|0.00|R|F|1992-11-11|1992-12-07|1992-12-06|NONE|AIR|quickly ironic foxes cajole| +43945|196302|46303|4|20|27966.00|0.10|0.03|A|F|1993-01-04|1992-12-15|1993-01-25|DELIVER IN PERSON|SHIP| packages hang quic| +43945|236524|36525|5|47|68643.97|0.03|0.07|A|F|1992-12-20|1992-11-30|1993-01-18|DELIVER IN PERSON|SHIP|ackages alongs| +43945|246815|34328|6|27|47568.60|0.02|0.08|A|F|1992-12-20|1992-11-14|1992-12-30|NONE|AIR|counts wake silent deposits. pending acco| +43945|210100|10101|7|49|49494.41|0.00|0.01|A|F|1992-10-19|1992-12-17|1992-10-23|NONE|FOB|o the furiously even ideas. pending, | +43946|141096|16101|1|36|40935.24|0.10|0.02|N|O|1995-09-17|1995-10-23|1995-09-18|NONE|AIR|accounts cajole. carefully unu| +43946|387163|12178|2|2|2500.30|0.05|0.00|N|O|1995-10-27|1995-10-14|1995-11-03|NONE|AIR|ly alongsid| +43946|32230|32231|3|34|39515.82|0.01|0.01|N|O|1995-10-21|1995-11-19|1995-11-04|DELIVER IN PERSON|RAIL|al packages use careful| +43946|674443|49470|4|10|14174.10|0.08|0.05|N|O|1995-10-22|1995-12-07|1995-11-04|COLLECT COD|AIR|have to haggle blith| +43946|362560|37575|5|37|60034.35|0.06|0.03|N|O|1995-12-01|1995-11-19|1995-12-13|COLLECT COD|RAIL|cies. quickly pending foxes detect caref| +43946|532889|45400|6|19|36515.34|0.10|0.06|N|O|1995-10-28|1995-11-17|1995-11-04|TAKE BACK RETURN|RAIL|dependencies-- fu| +43946|259615|22121|7|23|36215.80|0.00|0.08|N|O|1995-10-12|1995-12-04|1995-11-11|TAKE BACK RETURN|RAIL|slyly quick ideas. p| +43947|341463|28982|1|18|27080.10|0.01|0.05|R|F|1992-06-24|1992-04-13|1992-07-20|NONE|AIR|e furiously. slyly even requests cajole car| +43947|966180|28700|2|12|14953.68|0.01|0.05|A|F|1992-06-02|1992-04-24|1992-06-29|NONE|RAIL| nag sometime| +43947|573345|10879|3|8|11346.56|0.07|0.07|R|F|1992-06-06|1992-05-26|1992-06-25|TAKE BACK RETURN|TRUCK|nto beans. qui| +43947|196943|9447|4|39|79557.66|0.02|0.05|R|F|1992-03-26|1992-05-26|1992-04-12|NONE|MAIL|cajole furiously| +43947|20705|33206|5|24|39016.80|0.08|0.06|A|F|1992-04-25|1992-06-03|1992-05-13|DELIVER IN PERSON|FOB| use across the furiously regular p| +43947|979693|29694|6|39|69133.35|0.02|0.01|A|F|1992-04-08|1992-05-29|1992-04-10|NONE|FOB|the final pinto beans. bold, r| +43947|696107|21134|7|40|44122.80|0.02|0.04|R|F|1992-05-20|1992-04-23|1992-06-02|COLLECT COD|RAIL|lar deposits? fluffily eve| +43948|458727|21237|1|27|45513.90|0.00|0.02|N|O|1996-12-18|1996-12-03|1997-01-11|DELIVER IN PERSON|TRUCK|counts. ironic pint| +43948|813843|13844|2|38|66758.40|0.06|0.04|N|O|1996-12-20|1996-12-23|1997-01-09|NONE|SHIP|ely? requests haggle caref| +43948|244887|32400|3|5|9159.35|0.10|0.07|N|O|1996-12-11|1996-12-18|1996-12-27|COLLECT COD|SHIP|uests detect carefully even packages. even | +43948|815419|40452|4|7|9340.59|0.00|0.07|N|O|1996-11-15|1996-12-09|1996-12-11|NONE|MAIL|blithely express| +43948|743009|43010|5|31|32611.07|0.02|0.01|N|O|1996-12-12|1996-11-25|1996-12-15|COLLECT COD|AIR|express courts haggle slyly. carefully | +43949|975597|25598|1|31|51849.05|0.01|0.03|R|F|1994-09-11|1994-07-26|1994-09-22|DELIVER IN PERSON|TRUCK| fluffily fin| +43949|848327|48328|2|43|54837.04|0.03|0.06|A|F|1994-07-16|1994-07-28|1994-07-18|DELIVER IN PERSON|FOB|ully careful ideas. sp| +43949|821748|46781|3|26|43412.20|0.10|0.06|R|F|1994-07-22|1994-07-12|1994-08-05|TAKE BACK RETURN|RAIL| the special requests.| +43949|110630|10631|4|36|59062.68|0.03|0.08|R|F|1994-10-05|1994-09-05|1994-10-09|NONE|MAIL|accounts; deposits x-ray slyly. fur| +43949|358020|45542|5|15|16170.15|0.05|0.00|A|F|1994-07-05|1994-08-22|1994-07-09|TAKE BACK RETURN|SHIP| silent the| +43949|237395|49900|6|8|10659.04|0.06|0.03|R|F|1994-09-21|1994-08-29|1994-10-18|DELIVER IN PERSON|SHIP| ironic pinto beans. qu| +43949|895759|33311|7|50|87735.50|0.05|0.02|R|F|1994-09-16|1994-08-05|1994-10-01|NONE|TRUCK|ely furiously pending excuses. c| +43950|12755|256|1|8|13342.00|0.06|0.03|N|O|1997-02-03|1997-02-13|1997-02-08|NONE|RAIL|frays. quickly bold deposits | +43950|358072|8073|2|37|41812.22|0.00|0.01|N|O|1997-03-17|1997-03-04|1997-04-08|NONE|MAIL|quickly pending excus| +43950|102389|39896|3|33|45915.54|0.00|0.06|N|O|1997-02-22|1997-03-28|1997-03-05|TAKE BACK RETURN|RAIL|ily unusual reques| +43950|846718|9235|4|27|44946.09|0.05|0.05|N|O|1997-01-19|1997-03-25|1997-02-14|NONE|AIR|luffily ironic packages | +43950|779780|29781|5|10|18597.50|0.06|0.04|N|O|1997-03-09|1997-03-14|1997-03-24|TAKE BACK RETURN|RAIL|otes promise busily. furiously expre| +43950|746602|46603|6|43|70888.51|0.03|0.01|N|O|1997-03-20|1997-02-15|1997-03-23|NONE|REG AIR| the slyly pending pinto b| +43951|872868|35386|1|50|92041.00|0.04|0.06|N|O|1996-12-25|1997-01-18|1997-01-14|DELIVER IN PERSON|MAIL|sly regular ac| +43951|291897|16908|2|27|50999.76|0.00|0.03|N|O|1996-12-25|1996-12-29|1997-01-15|DELIVER IN PERSON|MAIL|cording to th| +43951|911705|49260|3|1|1716.66|0.05|0.06|N|O|1997-01-03|1997-02-10|1997-01-04|TAKE BACK RETURN|MAIL|cingly against the re| +43951|12432|12433|4|12|16133.16|0.04|0.03|N|O|1996-12-29|1997-01-24|1997-01-10|TAKE BACK RETURN|SHIP|se deposits boost blithely. ca| +43951|935807|23362|5|7|12899.32|0.07|0.01|N|O|1996-12-21|1997-02-17|1997-01-16|DELIVER IN PERSON|FOB|hely ironic acco| +43976|795380|32926|1|45|66390.75|0.04|0.03|R|F|1993-01-14|1993-02-18|1993-01-22|COLLECT COD|RAIL|er the furiously even Tiresias. ir| +43976|949178|49179|2|31|38041.03|0.03|0.06|R|F|1993-03-13|1993-02-23|1993-03-29|TAKE BACK RETURN|SHIP|rding to the carefully dogged d| +43976|832298|7331|3|34|41828.50|0.07|0.04|R|F|1993-03-17|1993-01-28|1993-04-06|TAKE BACK RETURN|REG AIR|kly. fluffily fina| +43976|421863|46880|4|11|19633.24|0.02|0.04|A|F|1993-03-28|1993-01-06|1993-04-15|COLLECT COD|AIR|riously. carefully silent | +43976|238757|1262|5|39|66133.86|0.00|0.02|A|F|1993-02-14|1993-02-07|1993-02-23|DELIVER IN PERSON|FOB|packages are th| +43977|26480|38981|1|46|64698.08|0.03|0.06|A|F|1992-07-08|1992-06-07|1992-07-15|TAKE BACK RETURN|REG AIR|l, silent courts wake among the fu| +43978|781386|6417|1|2|2934.70|0.06|0.06|R|F|1994-03-27|1994-02-02|1994-04-11|TAKE BACK RETURN|RAIL|re slyly. f| +43978|744657|32200|2|47|79976.14|0.09|0.08|A|F|1994-01-24|1994-02-11|1994-01-25|NONE|MAIL|ully regular accounts. unusual ideas abo| +43978|441269|16286|3|26|31466.24|0.05|0.03|R|F|1994-03-12|1994-01-13|1994-04-02|NONE|MAIL|ss foxes us| +43978|393656|43657|4|19|33243.16|0.10|0.08|R|F|1994-02-01|1993-12-31|1994-02-13|TAKE BACK RETURN|RAIL| packages. theodolites about t| +43979|314105|14106|1|32|35810.88|0.09|0.01|R|F|1993-06-18|1993-05-13|1993-07-04|DELIVER IN PERSON|MAIL|ess warthogs nag blithely. quickly| +43979|148664|23669|2|2|3425.32|0.10|0.07|R|F|1993-03-23|1993-04-13|1993-04-12|COLLECT COD|REG AIR|o beans are slyly. fl| +43979|589972|14995|3|10|20619.50|0.05|0.00|A|F|1993-05-16|1993-04-26|1993-06-02|TAKE BACK RETURN|REG AIR| quickly fin| +43979|645926|8439|4|11|20590.79|0.10|0.07|A|F|1993-03-01|1993-05-16|1993-03-31|TAKE BACK RETURN|MAIL|ronic, pending p| +43980|124679|37182|1|15|25555.05|0.07|0.06|A|F|1993-07-19|1993-09-12|1993-07-25|DELIVER IN PERSON|FOB|ial pinto beans. even, pending acco| +43980|475527|25528|2|42|63105.00|0.01|0.02|A|F|1993-09-23|1993-08-30|1993-10-09|COLLECT COD|AIR|ckly ironic | +43980|169100|19101|3|49|57285.90|0.01|0.01|R|F|1993-06-26|1993-08-23|1993-07-11|COLLECT COD|TRUCK|ithely spec| +43981|548798|36329|1|4|7387.08|0.05|0.07|A|F|1994-07-12|1994-08-14|1994-07-26|TAKE BACK RETURN|RAIL|refully instructions. fluffily regu| +43981|635773|23310|2|23|39301.02|0.08|0.01|A|F|1994-08-25|1994-07-18|1994-09-05|DELIVER IN PERSON|TRUCK|y even asymptotes integrate across the car| +43982|678692|3719|1|50|83533.00|0.00|0.08|R|F|1993-11-10|1993-11-07|1993-11-16|TAKE BACK RETURN|TRUCK|lyly after the regular, ironic accounts. e| +43983|13520|38521|1|5|7167.60|0.05|0.07|N|O|1997-04-21|1997-03-09|1997-04-27|DELIVER IN PERSON|MAIL|y above the pending, unusual instructions.| +43983|222408|47417|2|31|41242.09|0.09|0.01|N|O|1997-02-17|1997-03-15|1997-02-25|NONE|AIR|fully. bold, regular platelets slee| +43983|903|25904|3|18|32470.20|0.00|0.02|N|O|1997-04-03|1997-02-26|1997-04-23|DELIVER IN PERSON|SHIP|l dependencies. blithely final deposi| +43983|160100|35107|4|1|1160.10|0.07|0.05|N|O|1997-03-11|1997-03-04|1997-03-21|NONE|TRUCK|totes. pack| +44008|908299|45854|1|34|44446.50|0.09|0.08|N|O|1998-05-23|1998-03-28|1998-06-03|DELIVER IN PERSON|AIR|oxes sleep blithely. final ideas ar| +44008|767714|17715|2|42|74830.56|0.05|0.08|N|O|1998-04-17|1998-05-01|1998-05-15|NONE|TRUCK|ets. quickl| +44008|962017|24537|3|26|28053.22|0.04|0.00|N|O|1998-04-21|1998-04-11|1998-05-09|NONE|RAIL|sly ironic accounts affix among th| +44009|561180|48714|1|24|29787.84|0.00|0.06|N|O|1995-07-20|1995-07-03|1995-08-09|DELIVER IN PERSON|TRUCK|requests. regular ideas subla| +44009|747549|47550|2|7|11175.57|0.06|0.07|N|O|1995-07-19|1995-07-11|1995-08-06|COLLECT COD|RAIL|quickly along the evenly specia| +44009|44986|19987|3|23|44412.54|0.08|0.03|R|F|1995-05-21|1995-06-21|1995-05-24|COLLECT COD|SHIP|odolites. carefully final | +44009|74010|24011|4|23|22632.23|0.08|0.06|A|F|1995-04-26|1995-05-24|1995-05-15|COLLECT COD|REG AIR|dependencies breach f| +44009|878301|40819|5|26|33260.76|0.09|0.05|N|O|1995-07-01|1995-07-01|1995-07-29|NONE|TRUCK|ven dinos nag fluff| +44009|599025|11537|6|37|41588.00|0.03|0.03|A|F|1995-05-08|1995-07-05|1995-05-13|NONE|FOB|ly. packages eat after t| +44010|819958|44991|1|47|88261.77|0.00|0.05|N|O|1996-05-23|1996-03-26|1996-06-20|NONE|REG AIR|y final package| +44010|23555|11056|2|29|42877.95|0.05|0.07|N|O|1996-03-08|1996-05-15|1996-03-13|NONE|SHIP|use carefully bold d| +44010|876768|26769|3|11|19191.92|0.04|0.00|N|O|1996-04-22|1996-04-16|1996-04-29|TAKE BACK RETURN|AIR| slyly ironic requests. | +44011|496339|46340|1|18|24035.58|0.05|0.01|R|F|1993-09-10|1993-08-22|1993-09-11|COLLECT COD|REG AIR|carefully furiously| +44011|959502|22022|2|12|18737.52|0.01|0.03|A|F|1993-10-16|1993-08-17|1993-11-08|COLLECT COD|RAIL|kages use a| +44011|341597|29116|3|32|52434.56|0.02|0.08|A|F|1993-08-10|1993-09-02|1993-08-12|COLLECT COD|MAIL|le blithely closely bold packages. quickly| +44011|218186|18187|4|30|33125.10|0.00|0.02|R|F|1993-08-12|1993-08-17|1993-08-19|TAKE BACK RETURN|SHIP|. fluffily final ideas wake aft| +44012|621190|33703|1|47|52224.52|0.04|0.04|N|O|1998-05-18|1998-07-29|1998-05-28|DELIVER IN PERSON|FOB|r dolphins: ironic, silent a| +44012|326136|1149|2|4|4648.48|0.01|0.03|N|O|1998-05-31|1998-07-23|1998-06-28|DELIVER IN PERSON|SHIP| to the slyly ev| +44012|358864|33879|3|18|34611.30|0.09|0.06|N|O|1998-06-01|1998-07-29|1998-06-10|DELIVER IN PERSON|AIR|uriously re| +44012|420663|33172|4|11|17420.04|0.05|0.00|N|O|1998-08-18|1998-06-11|1998-09-16|NONE|MAIL|ding deposits nag ironic instruct| +44012|68481|43484|5|22|31888.56|0.08|0.04|N|O|1998-08-13|1998-07-09|1998-09-07|COLLECT COD|TRUCK|he blithely final accounts are fluf| +44012|957455|19975|6|34|51421.94|0.07|0.08|N|O|1998-08-02|1998-07-04|1998-08-17|TAKE BACK RETURN|FOB|ic gifts sleep quickly. theodolites| +44013|733484|21027|1|16|24279.20|0.09|0.02|N|O|1998-01-14|1998-01-01|1998-02-04|DELIVER IN PERSON|SHIP|latelets affix about the i| +44013|661508|24022|2|16|23511.52|0.02|0.06|N|O|1997-11-24|1998-01-08|1997-11-30|COLLECT COD|FOB| deposits are carefu| +44013|962113|49671|3|45|52878.15|0.04|0.07|N|O|1998-02-17|1997-12-29|1998-03-03|COLLECT COD|TRUCK|as run. final deposits above t| +44013|219964|7477|4|49|92313.55|0.03|0.04|N|O|1997-11-25|1998-01-26|1997-12-10|COLLECT COD|MAIL|the slyly ironic theodoli| +44014|557237|32260|1|5|6471.05|0.10|0.01|R|F|1993-06-06|1993-08-10|1993-07-05|DELIVER IN PERSON|RAIL|into beans use express, special instructio| +44014|482236|32237|2|46|56037.66|0.07|0.04|A|F|1993-08-21|1993-07-03|1993-09-01|NONE|FOB|ges. furiously pending accounts after t| +44014|931961|6998|3|50|99646.00|0.05|0.04|A|F|1993-08-29|1993-06-15|1993-09-20|COLLECT COD|REG AIR|ly blithely final deposits. | +44014|458963|8964|4|3|5765.82|0.09|0.08|R|F|1993-07-19|1993-06-16|1993-07-26|NONE|FOB|osits. blit| +44014|775465|13011|5|17|26187.31|0.10|0.05|A|F|1993-08-09|1993-07-09|1993-08-31|COLLECT COD|SHIP|hely regular pinto bea| +44014|226330|26331|6|2|2512.64|0.09|0.08|A|F|1993-07-09|1993-08-03|1993-07-17|DELIVER IN PERSON|FOB|y regular re| +44015|394638|7146|1|36|62374.32|0.10|0.00|A|F|1993-04-03|1993-04-21|1993-04-08|COLLECT COD|FOB|r busy theodol| +44015|665226|27740|2|4|4764.76|0.00|0.05|A|F|1993-04-24|1993-03-15|1993-04-29|NONE|SHIP|mptotes impress furiously. quickly regula| +44015|438594|26119|3|24|36781.68|0.08|0.08|A|F|1993-04-15|1993-04-05|1993-05-06|TAKE BACK RETURN|FOB|ly unusual asymptotes acc| +44015|442834|30359|4|30|53304.30|0.05|0.02|R|F|1993-02-10|1993-03-21|1993-02-26|DELIVER IN PERSON|FOB|es. special dug| +44040|891123|16158|1|20|22281.60|0.00|0.04|R|F|1994-07-12|1994-07-23|1994-07-17|COLLECT COD|FOB|the furiously regular theo| +44040|91356|28860|2|11|14820.85|0.10|0.03|A|F|1994-06-15|1994-08-29|1994-06-22|COLLECT COD|REG AIR|even theodo| +44040|413342|25851|3|33|41425.56|0.07|0.01|R|F|1994-08-21|1994-08-08|1994-09-16|TAKE BACK RETURN|MAIL|ffily against the final d| +44040|34810|9811|4|21|36641.01|0.03|0.05|R|F|1994-06-14|1994-07-24|1994-07-05|COLLECT COD|AIR|ckly final packages print sl| +44040|49653|37154|5|36|57695.40|0.03|0.04|R|F|1994-06-19|1994-08-28|1994-07-11|COLLECT COD|SHIP|lets according to the final at| +44040|513553|38574|6|18|28197.54|0.04|0.05|R|F|1994-08-02|1994-07-11|1994-08-21|DELIVER IN PERSON|RAIL|regular somas nag sl| +44041|516960|4491|1|14|27677.16|0.06|0.07|A|F|1993-06-27|1993-08-21|1993-06-30|TAKE BACK RETURN|MAIL|d the carefully regular in| +44041|531442|43953|2|38|55989.96|0.09|0.04|R|F|1993-06-19|1993-07-03|1993-07-02|NONE|SHIP|? furiously unusual deposits hag| +44041|941137|16174|3|38|44767.42|0.06|0.06|R|F|1993-09-14|1993-07-31|1993-09-18|TAKE BACK RETURN|SHIP|ld frays sleep blithely slyly special reque| +44041|680793|5820|4|26|46117.76|0.02|0.07|A|F|1993-07-10|1993-08-13|1993-07-15|TAKE BACK RETURN|MAIL|sly express instructions wake agai| +44042|307946|32959|1|27|52756.11|0.04|0.06|R|F|1993-10-21|1993-10-22|1993-10-29|DELIVER IN PERSON|SHIP| regular requests sleep; dep| +44042|643005|43006|2|19|18011.43|0.06|0.03|R|F|1993-10-16|1993-10-03|1993-11-08|DELIVER IN PERSON|FOB|oze. depend| +44042|983482|46002|3|49|76706.56|0.06|0.03|A|F|1993-12-01|1993-10-04|1993-12-27|COLLECT COD|SHIP|lyly regular accounts are. slyly final| +44042|380987|30988|4|34|70310.98|0.06|0.00|A|F|1993-08-23|1993-11-02|1993-09-03|NONE|MAIL|s! blithely express instructions about | +44042|247623|35136|5|26|40835.86|0.01|0.05|A|F|1993-11-14|1993-10-16|1993-12-04|TAKE BACK RETURN|MAIL|leep blithely ironically exp| +44042|798109|35655|6|13|15691.91|0.08|0.04|R|F|1993-08-23|1993-10-24|1993-09-04|DELIVER IN PERSON|FOB|fts. asymptotes are across the even| +44042|812727|276|7|45|73785.60|0.07|0.00|A|F|1993-11-21|1993-10-25|1993-11-27|COLLECT COD|MAIL|ts. accounts boost blithely after the| +44043|502267|14778|1|16|20307.84|0.03|0.08|N|O|1996-03-15|1996-04-01|1996-04-10|TAKE BACK RETURN|SHIP|ies according to the carefully sly as| +44043|594223|44224|2|25|32930.00|0.03|0.04|N|O|1996-03-03|1996-04-14|1996-03-08|NONE|REG AIR|es nag. foxes | +44043|94995|32499|3|27|53729.73|0.09|0.08|N|O|1996-05-01|1996-03-15|1996-05-06|COLLECT COD|RAIL| deposits. re| +44043|579556|17090|4|31|50701.43|0.02|0.07|N|O|1996-05-23|1996-04-15|1996-06-12|NONE|MAIL|en requests? regular, final deposi| +44044|882333|32334|1|43|56557.47|0.05|0.03|R|F|1992-04-13|1992-05-30|1992-04-26|TAKE BACK RETURN|AIR|ests. regular, ironic deposits above the s| +44045|964938|39977|1|13|26037.57|0.06|0.03|N|O|1996-09-04|1996-09-30|1996-09-30|DELIVER IN PERSON|AIR|totes sleep fl| +44045|704918|29947|2|33|63455.04|0.01|0.01|N|O|1996-09-23|1996-09-18|1996-10-23|COLLECT COD|SHIP|, regular packages u| +44045|550194|195|3|13|16174.21|0.10|0.04|N|O|1996-08-17|1996-09-17|1996-09-11|DELIVER IN PERSON|AIR|ong the quickly even reque| +44046|873053|35571|1|48|49248.48|0.07|0.00|N|O|1995-08-24|1995-06-24|1995-08-27|TAKE BACK RETURN|TRUCK|ackages! carefully regula| +44046|392212|29734|2|50|65210.00|0.05|0.04|N|O|1995-08-20|1995-08-16|1995-08-24|DELIVER IN PERSON|TRUCK|cial accounts haggle carefully.| +44046|896486|34038|3|41|60780.04|0.03|0.04|N|O|1995-07-17|1995-06-28|1995-08-13|DELIVER IN PERSON|AIR|carefully sly | +44046|237950|12959|4|26|49086.44|0.08|0.07|N|O|1995-08-18|1995-06-24|1995-09-09|COLLECT COD|FOB|y even requests. pinto b| +44046|223116|48125|5|13|13508.30|0.05|0.01|N|O|1995-07-14|1995-07-21|1995-08-01|TAKE BACK RETURN|FOB|c packages sleep| +44046|907135|44690|6|22|25125.98|0.02|0.02|N|O|1995-07-22|1995-07-04|1995-08-16|TAKE BACK RETURN|RAIL|ar requests use carefully foxes. carefully | +44047|908514|33551|1|22|33494.34|0.06|0.04|N|O|1998-01-29|1998-01-26|1998-02-23|NONE|REG AIR|cajole fluffily unu| +44047|381524|6539|2|41|65825.91|0.04|0.05|N|O|1998-01-21|1998-02-28|1998-02-15|COLLECT COD|RAIL| along the| +44047|272617|47628|3|41|65173.60|0.02|0.03|N|O|1998-02-21|1998-02-02|1998-03-15|NONE|AIR| across the| +44047|861582|49134|4|46|71002.84|0.06|0.00|N|O|1998-02-13|1998-02-13|1998-02-25|TAKE BACK RETURN|MAIL|ajole. final | +44047|601227|26252|5|15|16922.85|0.09|0.00|N|O|1998-03-04|1998-01-26|1998-03-25|COLLECT COD|RAIL|e quickly regular accounts wake careful| +44072|318628|6147|1|19|31285.59|0.04|0.05|A|F|1993-10-30|1993-10-21|1993-11-05|COLLECT COD|REG AIR|ly regular instructions. ironically f| +44072|172833|35337|2|27|51457.41|0.01|0.01|A|F|1993-09-13|1993-10-04|1993-09-18|DELIVER IN PERSON|TRUCK|nto beans. quickly expre| +44073|422850|47867|1|37|65594.71|0.04|0.00|N|O|1995-12-26|1996-02-15|1996-01-19|TAKE BACK RETURN|RAIL| blithely even accounts cajole slyly | +44073|826613|1646|2|10|15395.70|0.10|0.08|N|O|1996-01-29|1996-02-20|1996-02-25|DELIVER IN PERSON|TRUCK|ckages. regular packages are quickl| +44073|881640|31641|3|29|47026.40|0.05|0.01|N|O|1996-01-18|1996-01-24|1996-01-27|COLLECT COD|AIR|sits sleep carefully final frays. dependenc| +44074|810073|10074|1|35|34406.05|0.06|0.05|N|O|1998-05-01|1998-04-05|1998-05-15|COLLECT COD|RAIL| foxes. blithely even excuses cajole bol| +44074|885889|48407|2|26|48745.84|0.03|0.05|N|O|1998-05-05|1998-04-25|1998-05-15|COLLECT COD|AIR|regular theodolites. sl| +44074|128483|3488|3|45|68016.60|0.08|0.05|N|O|1998-06-14|1998-04-11|1998-07-07|DELIVER IN PERSON|TRUCK|ffix according to the f| +44074|408754|46279|4|47|78148.31|0.00|0.01|N|O|1998-06-15|1998-04-14|1998-07-15|TAKE BACK RETURN|MAIL|nd the express, unusual requests haggle | +44074|915090|15091|5|19|20995.95|0.10|0.04|N|O|1998-06-26|1998-05-18|1998-07-11|NONE|RAIL|ffily. bold, even packa| +44074|915177|27696|6|19|22650.47|0.01|0.03|N|O|1998-05-29|1998-05-10|1998-06-05|DELIVER IN PERSON|REG AIR| wake along the quickly even| +44075|394193|44194|1|31|39902.58|0.10|0.00|N|O|1996-01-17|1995-12-24|1996-02-07|DELIVER IN PERSON|MAIL|sual foxes sleep furiously blithely ironic| +44075|197163|47164|2|6|7560.96|0.09|0.05|N|O|1995-12-05|1995-11-28|1995-12-10|TAKE BACK RETURN|MAIL|ously fluffily final requests. blithely | +44075|713468|25983|3|14|20740.02|0.01|0.02|N|O|1995-10-27|1995-12-24|1995-11-20|TAKE BACK RETURN|AIR|the blithely express deposits bo| +44076|71528|46531|1|5|7497.60|0.04|0.08|N|O|1997-01-10|1997-03-02|1997-01-26|DELIVER IN PERSON|REG AIR|s. slyly i| +44077|186796|11803|1|26|48952.54|0.07|0.02|N|O|1997-08-16|1997-09-05|1997-08-19|NONE|MAIL|lyly even instructions cajole along the f| +44077|476973|14501|2|21|40948.95|0.08|0.08|N|O|1997-10-03|1997-10-21|1997-10-06|COLLECT COD|SHIP|totes. ironic grouches aft| +44077|482053|32054|3|14|14490.42|0.08|0.05|N|O|1997-11-26|1997-10-12|1997-12-26|COLLECT COD|RAIL|usual, ironic requests boost| +44077|857818|32853|4|42|74582.34|0.03|0.08|N|O|1997-11-01|1997-09-29|1997-11-14|COLLECT COD|REG AIR|nto beans. slyly silent asymptotes | +44077|336544|36545|5|34|53738.02|0.08|0.06|N|O|1997-08-22|1997-09-29|1997-09-16|NONE|SHIP|ly. pinto beans us| +44078|676371|26372|1|26|35030.84|0.09|0.08|A|F|1994-06-08|1994-08-05|1994-07-01|COLLECT COD|MAIL|ously regular accounts. blithel| +44079|257900|45416|1|31|57594.59|0.07|0.01|N|O|1997-04-04|1997-02-15|1997-04-07|TAKE BACK RETURN|MAIL|tly final dependenci| +44079|519927|7458|2|32|62300.80|0.01|0.04|N|O|1997-03-02|1997-02-16|1997-03-12|TAKE BACK RETURN|TRUCK|uickly final reques| +44079|408346|8347|3|50|62716.00|0.00|0.05|N|O|1997-01-30|1997-03-16|1997-02-15|TAKE BACK RETURN|SHIP|es affix slyly. ironic packag| +44079|57328|32331|4|49|62980.68|0.07|0.04|N|O|1997-02-13|1997-03-18|1997-02-24|COLLECT COD|AIR|ally final asymptotes cajole blithely re| +44079|506770|6771|5|29|51525.75|0.07|0.02|N|O|1997-04-26|1997-03-08|1997-05-13|TAKE BACK RETURN|AIR|ly. express, pending instructions along th| +44104|298588|11094|1|37|58703.09|0.05|0.05|N|O|1997-04-09|1997-03-05|1997-04-19|TAKE BACK RETURN|AIR|ctions nod: quickly unusual reque| +44104|353958|28973|2|8|16095.52|0.06|0.01|N|O|1997-03-01|1997-03-26|1997-03-18|NONE|RAIL|al packages p| +44104|963077|13078|3|2|2280.06|0.00|0.02|N|O|1997-05-20|1997-04-25|1997-05-28|TAKE BACK RETURN|TRUCK|yly even accounts. ironic, regula| +44104|427131|2148|4|29|30685.19|0.07|0.02|N|O|1997-04-02|1997-03-04|1997-04-07|DELIVER IN PERSON|TRUCK|h the blithely ironic pac| +44105|795927|33473|1|25|50572.25|0.02|0.02|R|F|1992-11-30|1992-10-22|1992-12-02|NONE|FOB|ts? slyly regular pinto beans dazzle bli| +44105|142611|30118|2|32|52915.52|0.06|0.03|A|F|1992-11-10|1992-10-21|1992-12-03|TAKE BACK RETURN|REG AIR| pinto beans cajole regularly. furiously| +44105|852047|2048|3|36|35964.00|0.04|0.03|A|F|1992-09-26|1992-10-14|1992-10-08|NONE|REG AIR|ter the slyly regular d| +44105|348107|48108|4|35|40428.15|0.07|0.03|R|F|1992-12-09|1992-10-10|1992-12-10|NONE|FOB|s the quickly spec| +44106|113987|38992|1|1|2000.98|0.10|0.08|A|F|1993-05-10|1993-04-21|1993-05-30|COLLECT COD|MAIL|sly accord| +44106|773534|23535|2|35|56262.50|0.06|0.07|R|F|1993-05-01|1993-05-14|1993-05-14|TAKE BACK RETURN|TRUCK|ckages above the fo| +44107|740748|28291|1|29|51872.59|0.01|0.03|N|O|1998-04-27|1998-06-26|1998-05-17|DELIVER IN PERSON|FOB|e slyly even deposits? | +44107|737341|24884|2|15|20674.65|0.03|0.04|N|O|1998-04-21|1998-06-13|1998-05-15|DELIVER IN PERSON|FOB| dolphins cajole furiously special| +44107|486174|11193|3|17|19722.55|0.10|0.07|N|O|1998-05-20|1998-06-30|1998-06-14|COLLECT COD|RAIL|es lose above the accounts. slyly exp| +44108|233665|46170|1|4|6394.60|0.07|0.04|R|F|1992-08-04|1992-08-02|1992-08-24|TAKE BACK RETURN|TRUCK|ously. slyly | +44108|197784|47785|2|2|3763.56|0.08|0.06|R|F|1992-08-17|1992-07-13|1992-08-28|NONE|SHIP|ts. accounts haggle instructions. slyly| +44108|138943|38944|3|46|91169.24|0.02|0.06|A|F|1992-08-15|1992-08-21|1992-08-17|TAKE BACK RETURN|AIR|after the ironic, idle foxes. fur| +44108|204934|42447|4|49|90107.08|0.04|0.07|A|F|1992-07-17|1992-06-28|1992-08-06|DELIVER IN PERSON|FOB|d the slyly ironic accounts. regu| +44108|316185|41198|5|14|16816.38|0.06|0.01|A|F|1992-09-05|1992-07-27|1992-09-11|COLLECT COD|FOB|ess, regular platele| +44108|108508|8509|6|31|47011.50|0.00|0.07|A|F|1992-09-09|1992-08-13|1992-09-10|DELIVER IN PERSON|TRUCK|uests nag carefully carefully regul| +44109|727799|2828|1|30|54802.80|0.01|0.05|N|O|1995-09-23|1995-10-22|1995-09-29|TAKE BACK RETURN|TRUCK|mes. speci| +44109|104036|4037|2|16|16640.48|0.08|0.08|N|O|1995-10-23|1995-11-25|1995-11-22|TAKE BACK RETURN|TRUCK|d ideas. final requests cajole blithe| +44109|529439|29440|3|27|39647.07|0.00|0.04|N|O|1995-12-21|1995-11-23|1995-12-27|NONE|MAIL|accounts. requests nag slyly. furious| +44109|274061|24062|4|22|22771.10|0.02|0.01|N|O|1995-09-14|1995-12-10|1995-10-11|NONE|FOB|kly among the slyly final reques| +44109|132186|19693|5|44|53599.92|0.08|0.01|N|O|1995-11-15|1995-12-05|1995-12-10|DELIVER IN PERSON|AIR|g ideas wake | +44110|800491|13008|1|26|36177.70|0.00|0.04|N|O|1996-02-14|1996-02-10|1996-03-13|TAKE BACK RETURN|TRUCK|efully final ideas haggle. pending | +44110|847119|47120|2|49|52237.43|0.04|0.06|N|O|1995-12-07|1996-01-17|1996-01-06|DELIVER IN PERSON|TRUCK|ronic instructions| +44111|953601|16121|1|50|82728.00|0.03|0.04|R|F|1992-08-16|1992-10-06|1992-08-29|DELIVER IN PERSON|FOB| according to t| +44111|155594|43104|2|12|19795.08|0.04|0.01|A|F|1992-08-23|1992-09-21|1992-09-17|DELIVER IN PERSON|TRUCK| blithely ironic| +44111|52333|27336|3|23|29562.59|0.04|0.01|R|F|1992-10-28|1992-10-02|1992-11-13|DELIVER IN PERSON|AIR|regular deposits. foxes poac| +44111|559904|47438|4|7|13747.16|0.08|0.05|A|F|1992-09-15|1992-10-10|1992-10-15|COLLECT COD|SHIP|ly ironic pack| +44136|321019|21020|1|47|48880.00|0.06|0.00|R|F|1994-07-03|1994-09-02|1994-07-06|NONE|SHIP|refully ironic dependencies! idle| +44136|353930|28945|2|19|37694.48|0.02|0.05|A|F|1994-07-09|1994-07-17|1994-08-06|DELIVER IN PERSON|FOB|hely. ironic, regular pinto beans across t| +44136|487609|12628|3|8|12772.64|0.08|0.03|R|F|1994-06-30|1994-08-14|1994-07-28|DELIVER IN PERSON|REG AIR|es cajole | +44136|243425|18434|4|12|16420.92|0.01|0.02|R|F|1994-06-21|1994-09-05|1994-07-08|TAKE BACK RETURN|SHIP|ts affix furiously. perman| +44136|243782|6287|5|44|75933.88|0.08|0.00|A|F|1994-08-22|1994-08-24|1994-09-05|COLLECT COD|SHIP|xpress, unusual requests along the| +44137|587440|24974|1|34|51932.28|0.09|0.05|A|F|1994-04-04|1994-06-05|1994-04-08|TAKE BACK RETURN|RAIL| about the| +44137|88087|589|2|22|23651.76|0.09|0.04|R|F|1994-04-24|1994-05-26|1994-04-26|DELIVER IN PERSON|AIR|he deposits | +44137|462768|37787|3|43|74421.82|0.02|0.08|A|F|1994-05-04|1994-05-02|1994-05-08|COLLECT COD|MAIL|ly pending deposits cajole blithe| +44137|732859|20402|4|43|81348.26|0.02|0.05|R|F|1994-07-09|1994-05-20|1994-07-23|NONE|FOB|sits nag furiously. carefully reg| +44137|161010|36017|5|43|46053.43|0.07|0.07|R|F|1994-04-09|1994-05-21|1994-04-12|TAKE BACK RETURN|AIR|inal ideas. final p| +44137|79441|29442|6|43|61078.92|0.06|0.04|A|F|1994-03-31|1994-05-19|1994-04-03|DELIVER IN PERSON|REG AIR|special deposits across the carefully | +44137|160071|22575|7|19|21490.33|0.00|0.08|A|F|1994-05-15|1994-05-26|1994-05-20|NONE|TRUCK|ites was carefully even, expr| +44138|307280|19787|1|3|3861.81|0.05|0.05|N|O|1998-09-11|1998-09-26|1998-09-30|DELIVER IN PERSON|SHIP|gular pinto beans. blithely regul| +44138|448676|36201|2|22|35742.30|0.01|0.03|N|O|1998-11-14|1998-10-17|1998-11-26|DELIVER IN PERSON|FOB|s cajole furio| +44138|881279|43797|3|12|15122.76|0.06|0.03|N|O|1998-10-21|1998-10-17|1998-10-26|DELIVER IN PERSON|MAIL| permanently bold accounts may hang fluffil| +44138|642466|17491|4|35|49295.05|0.01|0.02|N|O|1998-10-05|1998-09-05|1998-10-07|COLLECT COD|MAIL|carefully ironic requests cajole s| +44138|911179|23698|5|45|53555.85|0.09|0.07|N|O|1998-10-05|1998-10-29|1998-11-02|NONE|MAIL|eodolites sleep along the furiously | +44138|171585|46592|6|13|21535.54|0.04|0.07|N|O|1998-09-13|1998-10-30|1998-10-03|DELIVER IN PERSON|REG AIR|. bold dolp| +44139|941134|3653|1|35|41128.15|0.03|0.03|N|O|1997-02-10|1996-12-23|1997-02-11|DELIVER IN PERSON|RAIL|iously pen| +44140|182622|20132|1|8|13636.96|0.06|0.06|A|F|1994-06-18|1994-04-29|1994-06-23|COLLECT COD|MAIL|endencies against the busy, daring deposits| +44141|163662|26166|1|45|77654.70|0.08|0.00|N|O|1997-07-03|1997-08-30|1997-07-28|TAKE BACK RETURN|AIR|lms haggle blithely along | +44141|657384|44924|2|28|37557.80|0.02|0.00|N|O|1997-10-21|1997-07-31|1997-11-07|COLLECT COD|TRUCK|lent foxes. carefully| +44141|643733|18758|3|50|83835.00|0.06|0.05|N|O|1997-10-09|1997-08-31|1997-11-03|DELIVER IN PERSON|AIR|beans. even ins| +44141|215785|15786|4|18|30613.86|0.07|0.03|N|O|1997-09-30|1997-09-25|1997-10-08|COLLECT COD|AIR|ep carefully along the final, | +44141|682344|44858|5|21|27852.51|0.08|0.02|N|O|1997-10-11|1997-09-01|1997-11-08|DELIVER IN PERSON|MAIL|deas! bravely regular accounts cajol| +44141|142001|4504|6|45|46935.00|0.01|0.08|N|O|1997-10-09|1997-09-16|1997-10-16|TAKE BACK RETURN|SHIP|packages. regular excuses boost blith| +44142|694113|19140|1|47|52032.76|0.06|0.05|N|O|1997-12-20|1998-01-13|1998-01-17|NONE|REG AIR|ic deposits sleep furiously? ca| +44142|952130|2131|2|5|5910.45|0.02|0.04|N|O|1998-02-10|1997-12-24|1998-02-21|DELIVER IN PERSON|REG AIR|en platelets. regular ideas wake carefull| +44142|447581|22598|3|27|41271.12|0.08|0.01|N|O|1997-12-04|1997-12-29|1997-12-07|NONE|AIR|t, regular platelets.| +44142|492872|17891|4|21|39161.85|0.05|0.00|N|O|1998-02-11|1997-12-19|1998-03-09|COLLECT COD|TRUCK|es doubt carefully. s| +44142|690023|40024|5|27|27350.73|0.08|0.03|N|O|1997-11-29|1998-01-28|1997-12-14|COLLECT COD|SHIP|efully slow packages haggle dur| +44143|226125|13638|1|29|30482.19|0.04|0.06|A|F|1994-08-18|1994-10-16|1994-08-23|COLLECT COD|TRUCK|ously careful| +44143|479693|17221|2|20|33453.40|0.10|0.03|A|F|1994-11-30|1994-09-15|1994-12-07|DELIVER IN PERSON|FOB|furiously pending ideas| +44143|186617|11624|3|12|20443.32|0.10|0.02|A|F|1994-12-07|1994-09-16|1994-12-16|TAKE BACK RETURN|REG AIR|s. doggedly even dependen| +44143|469159|44178|4|2|2256.26|0.02|0.01|R|F|1994-11-03|1994-11-03|1994-11-21|NONE|TRUCK|ole quickly across the bl| +44143|142389|42390|5|39|55823.82|0.10|0.01|R|F|1994-12-05|1994-10-02|1994-12-27|TAKE BACK RETURN|MAIL|pendencies wake furious| +44143|131603|6608|6|17|27788.20|0.07|0.04|A|F|1994-08-24|1994-10-17|1994-08-30|NONE|SHIP|e quickly unusual sheaves believe blithely| +44168|254996|42512|1|5|9754.90|0.02|0.08|R|F|1992-08-21|1992-10-10|1992-09-08|COLLECT COD|AIR|y regular ac| +44168|708490|46033|2|20|29969.20|0.08|0.08|A|F|1992-09-10|1992-10-21|1992-10-05|DELIVER IN PERSON|REG AIR|ing asymptotes. slyly regular r| +44168|583557|46069|3|43|70542.79|0.04|0.08|R|F|1992-10-18|1992-10-27|1992-11-08|NONE|TRUCK| theodolites along the deposits | +44168|828705|28706|4|25|40841.50|0.06|0.03|A|F|1992-08-30|1992-09-24|1992-09-06|TAKE BACK RETURN|AIR|unusual, regular package| +44169|812538|12539|1|46|66722.54|0.02|0.07|A|F|1993-02-01|1993-02-24|1993-03-02|DELIVER IN PERSON|SHIP|busily bold dolphins nag. carefully ir| +44169|318711|6230|2|41|70917.70|0.07|0.05|A|F|1993-03-29|1993-03-06|1993-04-01|DELIVER IN PERSON|FOB|ss deposits about the carefully s| +44169|573526|48549|3|49|78375.50|0.10|0.05|A|F|1993-01-12|1993-02-18|1993-01-15|NONE|RAIL|es. blithely bold accounts doze slyly final| +44169|251270|26281|4|37|45186.62|0.09|0.08|A|F|1993-01-12|1993-02-20|1993-01-27|NONE|AIR|wake quickly silent deposits. f| +44170|733567|46082|1|5|8002.65|0.08|0.01|N|O|1997-10-30|1997-10-30|1997-11-22|COLLECT COD|REG AIR|al instructions nod ironic somas| +44170|44858|7359|2|46|82931.10|0.07|0.07|N|O|1998-01-26|1997-12-12|1998-02-08|COLLECT COD|FOB| solve furiously regular accounts. ex| +44170|923856|23857|3|34|63913.54|0.01|0.02|N|O|1997-11-29|1997-12-08|1997-12-17|COLLECT COD|MAIL|se blithely s| +44171|928376|40895|1|33|46342.89|0.08|0.02|R|F|1992-12-26|1993-01-23|1993-01-20|TAKE BACK RETURN|AIR|, regular theodolites. slyly| +44171|215266|40275|2|4|4725.00|0.02|0.01|A|F|1992-12-08|1992-12-12|1992-12-22|DELIVER IN PERSON|SHIP| slyly across the slyly| +44171|968175|30695|3|45|55940.85|0.08|0.04|A|F|1992-12-07|1992-12-29|1992-12-10|NONE|REG AIR| dolphins affix above the f| +44171|101785|14288|4|41|73257.98|0.05|0.01|R|F|1992-12-28|1993-01-17|1993-01-13|DELIVER IN PERSON|SHIP|y fluffily express deposits! final,| +44171|685171|10198|5|38|43933.32|0.00|0.06|R|F|1993-01-07|1993-01-02|1993-01-25|NONE|TRUCK| slyly special instructions integrate furi| +44171|667175|29689|6|3|3426.42|0.04|0.04|A|F|1993-01-13|1992-12-28|1993-01-20|DELIVER IN PERSON|RAIL| sleep. epitaphs across the closely bold p| +44171|197608|22615|7|24|40934.40|0.05|0.07|R|F|1993-02-01|1992-12-05|1993-02-07|DELIVER IN PERSON|REG AIR|onic account| +44172|188034|538|1|22|24684.66|0.00|0.06|N|O|1997-01-28|1997-01-17|1997-02-10|NONE|SHIP|the regular, regular| +44172|276528|39034|2|22|33099.22|0.06|0.00|N|O|1996-10-29|1997-01-09|1996-11-19|DELIVER IN PERSON|SHIP|ckages hinder carefully unusual depende| +44172|596267|8779|3|43|58619.32|0.06|0.02|N|O|1996-12-21|1996-12-02|1996-12-27|NONE|REG AIR| after the pending theodolites. unu| +44172|452216|39744|4|47|54904.93|0.07|0.03|N|O|1997-01-06|1997-01-01|1997-01-29|DELIVER IN PERSON|MAIL|n instructions haggle final accounts. fin| +44172|393398|43399|5|30|44741.40|0.10|0.08|N|O|1997-02-18|1996-12-08|1997-03-16|NONE|MAIL|ckages cajole blithely af| +44172|823471|35988|6|41|57171.63|0.06|0.02|N|O|1996-12-12|1996-12-13|1996-12-23|TAKE BACK RETURN|MAIL|ments. platelets detect carefully fo| +44172|72626|10130|7|19|30373.78|0.04|0.00|N|O|1996-11-16|1996-11-26|1996-11-18|COLLECT COD|AIR|quests. blithel| +44173|624538|24539|1|44|64350.00|0.00|0.05|R|F|1993-07-24|1993-09-06|1993-08-09|DELIVER IN PERSON|TRUCK|sly regular instruction| +44173|602129|39666|2|24|24746.16|0.06|0.00|A|F|1993-08-05|1993-10-05|1993-08-17|TAKE BACK RETURN|TRUCK|tect. quickly final excuses boost| +44174|963141|25661|1|26|31306.60|0.05|0.07|A|F|1993-08-14|1993-08-02|1993-09-02|TAKE BACK RETURN|AIR|ly ironic platelets. bold depos| +44174|497762|47763|2|38|66870.12|0.05|0.05|A|F|1993-08-20|1993-07-16|1993-09-05|DELIVER IN PERSON|SHIP|along the regular sheaves wake across t| +44174|884658|22210|3|34|55848.74|0.05|0.03|A|F|1993-06-19|1993-09-10|1993-07-03|TAKE BACK RETURN|FOB|ic theodolit| +44174|439186|26711|4|33|37130.28|0.01|0.03|R|F|1993-08-07|1993-07-16|1993-08-22|NONE|FOB|yly final ide| +44175|461456|36475|1|19|26931.17|0.10|0.03|R|F|1993-07-05|1993-06-20|1993-07-25|DELIVER IN PERSON|FOB| realms sleep slyly. | +44175|683645|33646|2|13|21171.93|0.02|0.08|R|F|1993-06-10|1993-06-27|1993-06-28|TAKE BACK RETURN|RAIL|uickly bold instruction| +44175|13549|13550|3|13|19013.02|0.00|0.00|A|F|1993-06-01|1993-06-24|1993-06-07|NONE|REG AIR|xpress packages. somas sleep a| +44175|716432|3975|4|21|30416.40|0.09|0.07|R|F|1993-08-30|1993-07-28|1993-09-12|TAKE BACK RETURN|REG AIR|atelets wake quickl| +44175|60703|10704|5|43|71539.10|0.08|0.07|R|F|1993-08-24|1993-06-11|1993-08-27|TAKE BACK RETURN|AIR|, final packages use furiously un| +44175|234853|47358|6|14|25029.76|0.06|0.06|R|F|1993-05-27|1993-07-06|1993-06-21|TAKE BACK RETURN|RAIL|s. carefully regul| +44200|178107|15617|1|14|16591.40|0.02|0.00|N|O|1997-12-16|1998-02-15|1997-12-27|DELIVER IN PERSON|FOB|tes about the furiously special inst| +44200|433362|33363|2|27|34974.18|0.08|0.03|N|O|1997-12-02|1998-01-19|1997-12-08|TAKE BACK RETURN|RAIL|ing packages are pending, regular requests| +44200|505608|30629|3|23|37112.34|0.02|0.01|N|O|1997-12-20|1998-02-07|1997-12-29|COLLECT COD|RAIL|ake according to the slyly re| +44200|745237|7752|4|36|46159.20|0.01|0.00|N|O|1998-01-06|1998-01-02|1998-01-12|TAKE BACK RETURN|RAIL|. furiously pending excuses| +44200|189043|26553|5|26|29433.04|0.06|0.04|N|O|1998-02-11|1997-12-31|1998-02-19|COLLECT COD|AIR|symptotes. slyly | +44201|732508|7537|1|8|12323.76|0.07|0.05|N|O|1998-02-02|1998-02-23|1998-02-08|NONE|AIR|. quickly express| +44201|258753|46269|2|46|78740.04|0.07|0.07|N|O|1998-02-06|1998-03-28|1998-03-06|TAKE BACK RETURN|MAIL|haggle pending, stealthy deposi| +44201|856513|19031|3|46|67595.62|0.05|0.01|N|O|1998-05-07|1998-03-03|1998-05-14|NONE|FOB|according to the rut| +44202|945147|45148|1|41|48876.10|0.05|0.04|N|O|1997-03-12|1997-03-09|1997-03-26|NONE|TRUCK|eep furiously flu| +44202|84952|22456|2|48|92973.60|0.01|0.06|N|O|1997-03-21|1997-04-02|1997-04-06|TAKE BACK RETURN|FOB|rly escapades. care| +44202|787124|24670|3|15|18166.35|0.10|0.00|N|O|1997-02-05|1997-03-02|1997-03-04|NONE|FOB|furiously regular pinto beans cajo| +44202|177477|39981|4|45|69951.15|0.06|0.06|N|O|1997-04-08|1997-03-05|1997-04-23|NONE|REG AIR|ainst the sometimes final acco| +44202|849395|24428|5|8|10754.80|0.03|0.07|N|O|1997-01-16|1997-03-14|1997-02-03|DELIVER IN PERSON|SHIP|se ideas sleep careful| +44202|772426|34942|6|12|17980.68|0.01|0.06|N|O|1997-04-07|1997-03-25|1997-04-23|COLLECT COD|TRUCK|bits thrash against the somas. fluf| +44203|59087|9088|1|16|16737.28|0.05|0.01|A|F|1992-03-23|1992-04-13|1992-03-24|TAKE BACK RETURN|RAIL| the packages cajole| +44203|59727|22229|2|21|35421.12|0.02|0.00|R|F|1992-03-19|1992-05-10|1992-04-04|DELIVER IN PERSON|FOB|s according | +44204|426303|1320|1|2|2458.56|0.02|0.06|N|O|1995-09-13|1995-09-13|1995-10-02|NONE|REG AIR|ts about the bold attainments h| +44205|230367|17880|1|44|57083.40|0.09|0.06|N|O|1996-09-10|1996-11-08|1996-10-03|DELIVER IN PERSON|SHIP|oss the furiously iron| +44205|767375|29891|2|20|28846.80|0.04|0.00|N|O|1996-11-21|1996-10-19|1996-12-19|TAKE BACK RETURN|AIR|ts. deposits boost carefully furiously| +44205|255201|17707|3|14|16186.66|0.06|0.08|N|O|1996-09-02|1996-10-23|1996-09-07|NONE|REG AIR|final, unusual deposits. special,| +44205|153986|28993|4|32|65279.36|0.08|0.00|N|O|1996-09-29|1996-11-16|1996-10-05|DELIVER IN PERSON|RAIL|special deposits haggle. quickly| +44205|42484|42485|5|2|2852.96|0.10|0.08|N|O|1996-12-12|1996-10-31|1996-12-26|DELIVER IN PERSON|TRUCK| have to nag furiously among t| +44205|26959|14460|6|31|58464.45|0.05|0.02|N|O|1996-10-30|1996-10-31|1996-11-16|TAKE BACK RETURN|AIR|lyly against the carefully express | +44206|339612|39613|1|9|14864.40|0.02|0.03|R|F|1993-10-26|1993-11-18|1993-11-24|TAKE BACK RETURN|TRUCK| the ironic foxes cajo| +44206|848387|10904|2|41|54748.94|0.03|0.02|A|F|1993-10-08|1993-11-29|1993-10-25|COLLECT COD|REG AIR|e. regular, fina| +44206|828470|28471|3|31|43351.33|0.01|0.08|A|F|1993-12-30|1993-11-14|1994-01-18|NONE|TRUCK|onic foxes. regular requests nag | +44206|79395|4398|4|7|9620.73|0.01|0.02|R|F|1993-12-30|1993-10-29|1994-01-02|DELIVER IN PERSON|AIR|ick packag| +44206|381825|31826|5|34|64831.54|0.09|0.06|R|F|1993-10-22|1993-11-19|1993-10-25|NONE|TRUCK|tructions! unus| +44207|170810|45817|1|33|62066.73|0.06|0.04|R|F|1994-02-06|1994-03-11|1994-02-24|NONE|REG AIR|usual requests should integrate ironic | +44207|801145|26178|2|43|44982.30|0.05|0.00|R|F|1994-02-05|1994-03-02|1994-02-27|TAKE BACK RETURN|REG AIR|equests hang carefully final deposits| +44207|828649|3682|3|30|47328.00|0.05|0.08|A|F|1994-04-25|1994-04-02|1994-05-09|COLLECT COD|AIR|the regularly regular Tire| +44207|101994|1995|4|47|93811.53|0.01|0.08|R|F|1994-03-31|1994-02-20|1994-04-18|COLLECT COD|RAIL|oss the foxes. regular asymptotes shoul| +44207|196370|8874|5|41|60121.17|0.08|0.04|R|F|1994-02-20|1994-03-21|1994-03-03|COLLECT COD|FOB| pending requests cajole. f| +44207|385834|48342|6|42|80632.44|0.06|0.05|A|F|1994-03-15|1994-04-10|1994-03-18|DELIVER IN PERSON|REG AIR|nts. ironic, ironic acco| +44207|702542|2543|7|28|43246.28|0.06|0.07|R|F|1994-02-19|1994-02-17|1994-03-02|DELIVER IN PERSON|TRUCK| thrash carefully at the blithely fi| +44232|607270|19783|1|41|48266.84|0.01|0.01|A|F|1993-10-01|1993-08-28|1993-10-20|COLLECT COD|RAIL|osits are blithely express ideas! plate| +44232|371619|34127|2|23|38883.80|0.09|0.03|R|F|1993-08-25|1993-10-03|1993-09-18|TAKE BACK RETURN|MAIL|y requests grow around the| +44232|788744|38745|3|45|82471.95|0.03|0.05|R|F|1993-08-03|1993-10-03|1993-08-14|DELIVER IN PERSON|FOB| serve slyly. sl| +44232|407701|7702|4|7|11260.76|0.05|0.08|A|F|1993-10-18|1993-09-26|1993-10-20|COLLECT COD|REG AIR|eep carefully asymptotes. unusu| +44232|223379|10892|5|4|5209.44|0.03|0.05|A|F|1993-10-09|1993-10-02|1993-10-27|TAKE BACK RETURN|REG AIR|s. finally final requests detect carefull| +44232|325097|12616|6|33|37028.64|0.04|0.06|A|F|1993-08-24|1993-10-02|1993-08-27|NONE|AIR|ffily regular instructions cajole. | +44232|889383|1901|7|32|43914.88|0.08|0.08|A|F|1993-09-02|1993-09-10|1993-09-30|TAKE BACK RETURN|TRUCK|xpress requests along the regular s| +44233|846077|46078|1|31|31713.93|0.02|0.07|N|O|1997-06-18|1997-05-02|1997-07-18|DELIVER IN PERSON|AIR|nts wake slyly according to the care| +44233|5045|42546|2|33|31351.32|0.00|0.04|N|O|1997-07-03|1997-05-10|1997-08-01|NONE|REG AIR|into beans. bo| +44233|779834|42350|3|28|53586.40|0.00|0.00|N|O|1997-06-18|1997-06-09|1997-07-14|DELIVER IN PERSON|AIR| fluffily regular | +44233|665387|15388|4|12|16228.20|0.03|0.07|N|O|1997-05-13|1997-05-28|1997-06-09|DELIVER IN PERSON|TRUCK|inly express packages are pending, silen| +44233|145947|33454|5|45|89682.30|0.09|0.06|N|O|1997-04-05|1997-04-21|1997-04-21|COLLECT COD|AIR|regular ideas sh| +44233|915273|40310|6|15|19323.45|0.00|0.04|N|O|1997-06-12|1997-05-11|1997-07-10|COLLECT COD|MAIL|packages sleep blithely along the sly| +44233|982785|7824|7|42|78445.08|0.00|0.01|N|O|1997-07-01|1997-05-14|1997-07-30|NONE|RAIL|gular, ironic theodol| +44234|654308|29335|1|4|5049.08|0.01|0.01|A|F|1992-09-24|1992-09-29|1992-10-24|TAKE BACK RETURN|REG AIR|bold accoun| +44234|945070|20107|2|25|27875.75|0.10|0.07|A|F|1992-09-25|1992-10-24|1992-10-17|TAKE BACK RETURN|RAIL| theodolite| +44235|236713|11722|1|44|72586.80|0.10|0.05|N|O|1998-02-13|1998-02-03|1998-02-24|DELIVER IN PERSON|AIR|ounts. dependencies doze about t| +44236|420037|7562|1|21|20097.21|0.09|0.02|R|F|1994-06-23|1994-05-20|1994-07-15|COLLECT COD|RAIL|fluffily special pinto | +44236|557080|32103|2|15|17055.90|0.05|0.01|R|F|1994-04-16|1994-07-01|1994-05-11|NONE|REG AIR|yly ironic accounts: pending depend| +44236|842644|30193|3|41|65050.60|0.05|0.00|A|F|1994-06-11|1994-05-31|1994-07-09|TAKE BACK RETURN|REG AIR|ents wake according to the ideas: blithel| +44236|313692|13693|4|1|1705.68|0.05|0.02|A|F|1994-05-18|1994-05-07|1994-06-03|TAKE BACK RETURN|SHIP|y realms. carefully spe| +44237|772042|22043|1|42|46788.42|0.10|0.07|N|O|1998-03-11|1998-03-16|1998-03-13|COLLECT COD|MAIL|mong the pending ideas. platelets cajole q| +44237|703972|29001|2|35|69157.90|0.03|0.05|N|O|1998-03-02|1998-03-25|1998-03-27|TAKE BACK RETURN|AIR|ole about the pending packages| +44237|641032|16057|3|2|1946.00|0.07|0.03|N|O|1998-04-10|1998-03-20|1998-04-29|DELIVER IN PERSON|REG AIR|xcuses haggle slyly in plac| +44237|819094|31611|4|1|1013.05|0.05|0.07|N|O|1998-01-26|1998-03-13|1998-02-23|COLLECT COD|MAIL|ideas. regular p| +44238|521616|46637|1|9|14738.31|0.09|0.04|R|F|1995-02-17|1995-01-12|1995-02-24|NONE|AIR| pinto beans. blithely even pa| +44238|789977|39978|2|25|51673.50|0.08|0.08|A|F|1994-12-06|1995-02-10|1995-01-01|TAKE BACK RETURN|REG AIR| excuses. boldly even accounts ar| +44238|139166|39167|3|6|7230.96|0.03|0.00|R|F|1995-01-08|1995-01-08|1995-01-26|NONE|SHIP|ully special foxes. pinto beans| +44238|958836|33875|4|14|26527.06|0.07|0.03|R|F|1995-03-07|1995-02-06|1995-03-27|COLLECT COD|FOB| requests. regular, pending accounts | +44238|153192|40702|5|9|11206.71|0.08|0.02|A|F|1995-02-26|1995-02-28|1995-03-08|COLLECT COD|REG AIR|ly regular theodolites across the| +44239|467689|42708|1|11|18223.26|0.04|0.04|R|F|1995-03-18|1995-01-18|1995-03-19|NONE|TRUCK|dazzle slyly aroun| +44239|439840|2349|2|23|40935.86|0.00|0.03|R|F|1994-12-22|1995-01-18|1995-01-07|COLLECT COD|RAIL|ng to the furiously fina| +44239|385517|35518|3|12|19230.00|0.07|0.04|A|F|1995-03-08|1995-02-18|1995-03-22|NONE|TRUCK|rding to the furiously specia| +44239|377777|40285|4|16|29676.16|0.05|0.01|R|F|1995-03-20|1995-01-13|1995-04-17|TAKE BACK RETURN|FOB|l accounts solve. furiou| +44239|294653|7159|5|28|46133.92|0.00|0.03|A|F|1995-01-02|1995-02-06|1995-01-21|COLLECT COD|FOB| packages. carefully final instructio| +44239|223400|48409|6|43|56905.77|0.06|0.05|A|F|1994-12-05|1995-02-10|1994-12-23|COLLECT COD|FOB|en deposits against the furiously | +44239|667688|42715|7|24|39735.60|0.07|0.08|A|F|1994-12-14|1995-02-02|1994-12-26|DELIVER IN PERSON|REG AIR|he ironic, ironic asympto| +44264|824521|49554|1|42|60710.16|0.06|0.03|N|O|1996-05-13|1996-04-07|1996-05-20|TAKE BACK RETURN|MAIL| even plat| +44264|713451|13452|2|38|55647.96|0.03|0.03|N|O|1996-04-04|1996-03-14|1996-04-17|DELIVER IN PERSON|AIR|. pending requests hagg| +44264|955920|18440|3|33|65204.04|0.00|0.05|N|O|1996-05-17|1996-05-04|1996-05-30|NONE|TRUCK|s boost carefully. unusual accou| +44264|132885|45388|4|31|59454.28|0.10|0.02|N|O|1996-02-25|1996-04-03|1996-03-09|COLLECT COD|TRUCK|kly pending instructions. slyly bold | +44264|384809|47317|5|12|22725.48|0.00|0.01|N|O|1996-02-13|1996-05-04|1996-02-21|COLLECT COD|REG AIR|sly express deposits wake packages. regular| +44264|476977|1996|6|6|11723.70|0.05|0.01|N|O|1996-06-01|1996-03-22|1996-06-13|DELIVER IN PERSON|REG AIR| are. special accounts sleep blit| +44264|539389|1900|7|39|55706.04|0.09|0.03|N|O|1996-02-24|1996-05-08|1996-02-25|DELIVER IN PERSON|FOB|ter the carefully even epit| +44265|503654|28675|1|34|56359.42|0.02|0.03|R|F|1992-07-27|1992-06-24|1992-08-10|TAKE BACK RETURN|AIR|usly quickly unusual deposits.| +44265|901135|1136|2|14|15905.26|0.10|0.00|R|F|1992-06-29|1992-06-04|1992-06-30|DELIVER IN PERSON|MAIL|es. deposits except the steal| +44265|365010|15011|3|12|12900.00|0.03|0.07|R|F|1992-04-03|1992-06-03|1992-04-27|DELIVER IN PERSON|AIR|egular instructions. carefully unusual| +44265|717843|30358|4|14|26051.34|0.08|0.02|A|F|1992-07-12|1992-06-03|1992-08-10|TAKE BACK RETURN|TRUCK| the fluffily quiet packages. slyly express| +44265|771370|21371|5|5|7206.70|0.02|0.05|R|F|1992-06-04|1992-06-26|1992-06-12|TAKE BACK RETURN|AIR|ly regular packages s| +44266|655330|42870|1|12|15423.60|0.00|0.06|N|O|1995-09-13|1995-10-02|1995-09-18|TAKE BACK RETURN|MAIL|, final do| +44266|129852|29853|2|24|45164.40|0.08|0.02|N|O|1995-09-05|1995-10-11|1995-09-25|TAKE BACK RETURN|TRUCK| carefully ideas. | +44266|410038|10039|3|30|28440.30|0.02|0.08|N|O|1995-12-07|1995-11-07|1995-12-18|DELIVER IN PERSON|AIR|ss requests. carefully| +44266|502940|2941|4|46|89374.32|0.01|0.08|N|O|1995-11-27|1995-10-29|1995-12-12|COLLECT COD|REG AIR|ourts. regular theodolites boost. slyly eve| +44266|910026|22545|5|44|45583.12|0.02|0.08|N|O|1995-11-24|1995-10-21|1995-12-23|TAKE BACK RETURN|AIR|iously silent pinto bean| +44266|795209|7725|6|29|37820.93|0.01|0.02|N|O|1995-09-16|1995-10-07|1995-09-25|TAKE BACK RETURN|MAIL|eposits are slyly unusual, ironic| +44266|68284|30786|7|15|18784.20|0.03|0.08|N|O|1995-09-20|1995-11-05|1995-10-06|NONE|TRUCK|symptotes. quickly regular dependencies des| +44267|640945|40946|1|19|35832.29|0.00|0.06|R|F|1994-06-10|1994-05-27|1994-06-20|TAKE BACK RETURN|RAIL|ithely express pinto beans sleep furiously| +44267|347157|47158|2|30|36124.20|0.04|0.02|R|F|1994-06-15|1994-06-18|1994-07-08|DELIVER IN PERSON|REG AIR|ecial courts are carefully alongsid| +44267|666546|41573|3|33|49912.83|0.03|0.06|R|F|1994-07-22|1994-06-14|1994-08-08|COLLECT COD|FOB|ic deposits. carefully ironic ac| +44267|622954|47979|4|37|69446.04|0.10|0.06|A|F|1994-07-27|1994-06-16|1994-08-05|NONE|REG AIR|slyly asymptotes. p| +44268|270016|7532|1|28|27608.00|0.07|0.03|A|F|1994-08-24|1994-08-08|1994-09-17|NONE|TRUCK|hlessly unusual| +44268|156076|6077|2|44|49811.08|0.04|0.03|R|F|1994-10-16|1994-08-09|1994-11-04|NONE|FOB| the blithely ironic pinto | +44268|160961|35968|3|6|12131.76|0.05|0.08|R|F|1994-07-24|1994-08-20|1994-08-03|COLLECT COD|MAIL|xcuses. furiou| +44269|270402|7918|1|19|26075.41|0.07|0.05|N|O|1997-06-26|1997-07-07|1997-07-15|COLLECT COD|TRUCK|ld pinto beans. silent asy| +44269|634228|34229|2|6|6973.14|0.06|0.03|N|O|1997-08-08|1997-06-24|1997-08-24|TAKE BACK RETURN|FOB|tes affix fluffi| +44269|460492|48020|3|28|40669.16|0.04|0.05|N|O|1997-09-03|1997-07-07|1997-09-19|NONE|MAIL|e quickly according to the patterns. bl| +44270|698759|23786|1|8|14061.76|0.02|0.05|N|O|1997-01-31|1997-01-11|1997-02-14|NONE|REG AIR|ainst the quickly ironic theodolites wa| +44270|41780|29281|2|39|67149.42|0.06|0.04|N|O|1997-01-22|1997-03-02|1997-02-20|NONE|RAIL|quiet accounts. excuses breach slyly. | +44271|210095|35104|1|4|4020.32|0.05|0.07|N|O|1998-04-08|1998-03-14|1998-04-14|TAKE BACK RETURN|REG AIR|lyly silent theodolites mol| +44271|54802|29805|2|31|54460.80|0.00|0.00|N|O|1998-03-28|1998-02-18|1998-04-27|COLLECT COD|REG AIR|out the final packages wake | +44271|51510|39014|3|10|14615.10|0.02|0.04|N|O|1998-03-11|1998-03-07|1998-04-04|DELIVER IN PERSON|AIR| fluffily against the furiously pendin| +44271|727947|40462|4|4|7899.64|0.06|0.07|N|O|1998-01-25|1998-02-12|1998-02-07|COLLECT COD|AIR|s. ironic pinto beans sleep| +44271|598089|35623|5|23|27302.38|0.07|0.08|N|O|1998-03-08|1998-02-12|1998-03-15|COLLECT COD|REG AIR| excuses s| +44271|71000|46003|6|1|971.00|0.08|0.05|N|O|1998-05-09|1998-02-27|1998-06-05|DELIVER IN PERSON|RAIL| the fluffi| +44296|545677|20698|1|21|36175.65|0.02|0.06|A|F|1993-05-08|1993-04-28|1993-05-31|TAKE BACK RETURN|FOB|y final packages pl| +44296|179095|41599|2|16|18785.44|0.05|0.05|A|F|1993-06-05|1993-05-20|1993-06-13|COLLECT COD|SHIP|ial deposits haggle carefully. | +44296|44009|19010|3|24|22872.00|0.10|0.00|R|F|1993-04-30|1993-04-27|1993-05-18|COLLECT COD|MAIL|ions do haggle| +44296|649474|24499|4|42|59784.48|0.02|0.07|R|F|1993-04-28|1993-05-19|1993-05-22|COLLECT COD|RAIL|blithely ironic | +44296|703037|40580|5|45|46800.00|0.07|0.01|R|F|1993-06-30|1993-05-10|1993-07-28|NONE|RAIL|pinto beans. carefully regular de| +44296|935787|23342|6|4|7290.96|0.08|0.06|A|F|1993-06-08|1993-06-03|1993-06-29|NONE|TRUCK|to the deposits ar| +44296|755787|43333|7|6|11056.50|0.03|0.07|A|F|1993-06-15|1993-04-20|1993-06-25|COLLECT COD|SHIP|fily pending deposits n| +44297|504016|41547|1|1|1019.99|0.02|0.06|N|O|1995-12-29|1995-11-12|1996-01-18|DELIVER IN PERSON|TRUCK|uests. pinto beans nag slyly express | +44297|990739|3259|2|36|65868.84|0.08|0.03|N|O|1995-12-31|1995-10-27|1996-01-02|NONE|FOB|excuses. express dolphins ar| +44297|339511|14524|3|22|34111.00|0.07|0.05|N|O|1995-09-26|1995-12-06|1995-10-23|COLLECT COD|AIR|sts after the platel| +44297|151779|14283|4|50|91538.50|0.00|0.08|N|O|1995-11-09|1995-11-06|1995-11-12|COLLECT COD|MAIL|furiously final accounts lose e| +44298|506672|31693|1|44|73860.60|0.00|0.00|R|F|1994-11-20|1994-10-13|1994-12-17|DELIVER IN PERSON|REG AIR| pains sleep ironic deposit| +44298|619670|44695|2|10|15896.40|0.06|0.07|A|F|1994-10-23|1994-11-05|1994-11-08|TAKE BACK RETURN|AIR|. carefully pending foxes b| +44298|791863|29409|3|10|19548.30|0.00|0.00|A|F|1994-11-26|1994-11-02|1994-12-12|TAKE BACK RETURN|FOB|al requests. s| +44298|828957|41474|4|18|33946.38|0.08|0.02|A|F|1994-11-19|1994-10-11|1994-11-23|NONE|FOB|oxes: furiously unusual instru| +44299|785281|10312|1|37|50551.25|0.08|0.05|N|O|1997-07-06|1997-05-09|1997-07-15|COLLECT COD|TRUCK|. slyly express theodolites nag? blithel| +44299|203846|3847|2|27|47245.41|0.00|0.04|N|O|1997-06-22|1997-05-28|1997-07-19|NONE|REG AIR|g platelets. speci| +44300|96910|46911|1|8|15255.28|0.02|0.04|A|F|1993-11-30|1993-11-19|1993-12-02|COLLECT COD|AIR|ructions haggle blithely. quickly re| +44300|762291|37322|2|48|64956.48|0.04|0.06|R|F|1993-11-10|1993-11-22|1993-11-29|COLLECT COD|FOB|y silent pack| +44300|819048|31565|3|10|9670.00|0.03|0.07|A|F|1993-12-26|1993-11-09|1994-01-25|DELIVER IN PERSON|AIR|ress theodolites about the final platelets| +44300|729687|17230|4|42|72099.30|0.07|0.03|R|F|1993-12-17|1993-12-05|1994-01-03|DELIVER IN PERSON|TRUCK|ld accounts wake blithely above th| +44300|834219|34220|5|14|16144.38|0.01|0.00|R|F|1993-12-13|1993-11-25|1993-12-16|COLLECT COD|FOB|eans haggle furiously | +44300|711623|24138|6|34|55576.06|0.06|0.08|A|F|1993-12-01|1993-11-14|1993-12-13|COLLECT COD|TRUCK|efully express pin| +44301|767939|30455|1|26|52179.40|0.08|0.05|R|F|1994-05-10|1994-06-19|1994-06-09|DELIVER IN PERSON|AIR|longside of the e| +44301|741801|29344|2|12|22113.24|0.01|0.00|A|F|1994-05-13|1994-06-09|1994-06-03|DELIVER IN PERSON|REG AIR|blithely. slyly even | +44301|447742|35267|3|44|74347.68|0.08|0.07|R|F|1994-06-17|1994-07-12|1994-07-15|NONE|TRUCK|sly regular ideas boost besides the pack| +44301|188493|26003|4|24|37955.76|0.08|0.08|R|F|1994-06-29|1994-06-23|1994-07-12|DELIVER IN PERSON|AIR|y furiously unusual tithes? express fox| +44301|987317|24875|5|38|53362.26|0.10|0.06|R|F|1994-06-30|1994-06-27|1994-07-04|COLLECT COD|SHIP|packages are slyly unusual deposits. flu| +44301|834355|9388|6|12|15471.72|0.06|0.07|R|F|1994-08-08|1994-07-20|1994-08-09|NONE|RAIL|kly. regula| +44302|180173|17683|1|13|16291.21|0.09|0.01|N|O|1996-12-01|1996-10-16|1996-12-28|DELIVER IN PERSON|TRUCK|onic packages are sly| +44302|154321|16825|2|32|44010.24|0.10|0.05|N|O|1996-08-20|1996-10-17|1996-09-07|NONE|RAIL|courts integrate blithely! slyly even instr| +44303|797195|22226|1|9|11629.44|0.08|0.04|N|O|1996-05-04|1996-06-09|1996-05-21|COLLECT COD|TRUCK|gular accounts. slyly special requests| +44303|440721|40722|2|14|23263.80|0.07|0.06|N|O|1996-05-12|1996-05-20|1996-05-19|NONE|AIR|aring foxes. courts haggle ca| +44303|186441|11448|3|44|67207.36|0.08|0.01|N|O|1996-05-21|1996-06-25|1996-06-09|NONE|FOB| silent asymptotes among the blithel| +44303|512740|25251|4|46|80625.12|0.10|0.00|N|O|1996-04-28|1996-05-01|1996-04-30|COLLECT COD|SHIP|kages mold daringly. quickly regular | +44303|611381|23894|5|10|12923.50|0.04|0.01|N|O|1996-07-30|1996-05-25|1996-08-17|DELIVER IN PERSON|SHIP|tructions are carefully. accounts sleep| +44303|465538|3066|6|2|3007.02|0.05|0.06|N|O|1996-05-18|1996-06-22|1996-06-13|COLLECT COD|RAIL| carefully regular| +44303|289160|39161|7|47|54010.05|0.02|0.02|N|O|1996-04-03|1996-05-14|1996-04-22|COLLECT COD|AIR|ously regul| +44328|898296|10814|1|2|2588.50|0.05|0.03|N|O|1997-10-26|1997-09-08|1997-11-01|TAKE BACK RETURN|REG AIR|gular foxes around the enticin| +44328|656895|19409|2|21|38889.06|0.05|0.02|N|O|1997-09-15|1997-10-13|1997-10-12|NONE|FOB| furiously ironic accounts use blithely | +44328|432737|45246|3|2|3339.42|0.09|0.01|N|O|1997-08-10|1997-10-28|1997-08-26|DELIVER IN PERSON|REG AIR|lites. carefull| +44328|3043|3044|4|6|5676.24|0.07|0.03|N|O|1997-11-07|1997-10-24|1997-11-21|NONE|REG AIR|platelets use q| +44328|136589|11594|5|28|45516.24|0.10|0.05|N|O|1997-09-22|1997-10-24|1997-10-07|COLLECT COD|REG AIR|osits cajole fluffily against the| +44329|758573|46119|1|29|47314.66|0.00|0.06|N|O|1996-11-10|1996-11-30|1996-12-09|TAKE BACK RETURN|AIR|c pinto beans ar| +44329|328252|40759|2|34|43528.16|0.06|0.04|N|O|1996-12-18|1996-12-30|1997-01-05|DELIVER IN PERSON|FOB|ffily pending packa| +44329|924203|36722|3|28|34360.48|0.06|0.07|N|O|1996-12-03|1996-12-15|1996-12-12|DELIVER IN PERSON|TRUCK|c packages run permanently pen| +44329|65170|15171|4|50|56758.50|0.00|0.06|N|O|1996-12-31|1996-12-20|1997-01-11|COLLECT COD|FOB|st the slyly final pinto b| +44330|88078|580|1|14|14924.98|0.03|0.00|N|O|1996-06-17|1996-04-24|1996-06-19|COLLECT COD|MAIL|ss ideas. final accounts affix. quickly sil| +44330|322793|22794|2|8|14526.24|0.01|0.00|N|O|1996-03-07|1996-04-20|1996-04-05|TAKE BACK RETURN|RAIL|en theodolites are carefully. warhorse| +44330|179519|42023|3|25|39962.75|0.00|0.06|N|O|1996-05-13|1996-05-15|1996-06-02|TAKE BACK RETURN|MAIL|totes use furious| +44330|159822|47332|4|25|47045.50|0.00|0.00|N|O|1996-04-02|1996-05-28|1996-04-17|DELIVER IN PERSON|REG AIR|hely bold deposi| +44330|121832|34335|5|25|46345.75|0.07|0.08|N|O|1996-03-08|1996-04-28|1996-03-11|DELIVER IN PERSON|REG AIR|ously final forges affi| +44330|618030|43055|6|9|8532.00|0.07|0.05|N|O|1996-03-22|1996-04-21|1996-04-21|DELIVER IN PERSON|RAIL|ependencies sleep above the ex| +44330|222233|9746|7|27|31190.94|0.07|0.00|N|O|1996-04-22|1996-05-21|1996-05-16|DELIVER IN PERSON|FOB|ag blithely along the regular, bo| +44331|55715|30718|1|31|51792.01|0.08|0.03|N|O|1995-12-02|1995-12-08|1995-12-22|COLLECT COD|TRUCK|, quiet dolphins nag slyly | +44331|385817|48325|2|47|89431.60|0.03|0.08|N|O|1995-10-16|1995-10-23|1995-10-26|TAKE BACK RETURN|RAIL|en requests across the ironic fox| +44331|426247|38756|3|1|1173.22|0.04|0.00|N|O|1995-09-23|1995-10-17|1995-10-22|TAKE BACK RETURN|SHIP|ronically daring requests wake| +44332|307224|7225|1|44|54173.24|0.06|0.03|N|O|1996-02-03|1996-04-05|1996-02-11|COLLECT COD|MAIL|against the carefully e| +44333|576333|38845|1|2|2818.62|0.10|0.03|R|F|1992-10-11|1992-11-23|1992-10-19|NONE|FOB|n ideas ar| +44333|416055|28564|2|25|24275.75|0.01|0.00|R|F|1992-09-15|1992-11-04|1992-09-20|COLLECT COD|FOB|requests lose. bold packages affix ca| +44334|316743|16744|1|46|80947.58|0.08|0.07|A|F|1993-07-04|1993-08-25|1993-07-17|NONE|REG AIR|ongside of the deposits. carefully | +44334|495236|7746|2|38|46785.98|0.07|0.01|R|F|1993-08-27|1993-08-24|1993-09-25|COLLECT COD|MAIL|s cajole slyly. furiously u| +44334|422003|22004|3|20|18499.60|0.03|0.08|R|F|1993-07-17|1993-08-10|1993-08-12|NONE|FOB| carefully fluffy accounts. s| +44335|127625|40128|1|29|47925.98|0.09|0.07|A|F|1992-09-03|1992-09-21|1992-09-16|DELIVER IN PERSON|MAIL|quickly even requests!| +44335|978447|16005|2|9|13728.60|0.06|0.04|A|F|1992-12-02|1992-11-02|1992-12-10|COLLECT COD|AIR|d. blithely final excuses sleep furiously a| +44335|752085|2086|3|6|6822.30|0.06|0.05|R|F|1992-10-22|1992-09-26|1992-11-11|DELIVER IN PERSON|SHIP|ly special deposits will wake among t| +44335|288482|13493|4|30|44114.10|0.07|0.00|R|F|1992-10-11|1992-10-27|1992-10-20|DELIVER IN PERSON|AIR|xes are blith| +44335|500802|803|5|39|70308.42|0.08|0.01|A|F|1992-10-14|1992-10-08|1992-11-02|DELIVER IN PERSON|FOB| dependencies. blithely ironic platelets| +44360|567824|42847|1|10|18918.00|0.02|0.06|N|F|1995-06-05|1995-03-18|1995-06-24|COLLECT COD|TRUCK|uthlessly final accounts. final d| +44360|405349|30366|2|31|38883.92|0.06|0.07|A|F|1995-03-20|1995-04-27|1995-03-25|TAKE BACK RETURN|MAIL|ic foxes cajole blithe| +44360|700050|51|3|3|3150.06|0.04|0.03|R|F|1995-06-05|1995-04-12|1995-06-12|COLLECT COD|FOB|ording to the express, regular ideas. depen| +44360|732680|20223|4|10|17126.50|0.06|0.08|A|F|1995-04-07|1995-04-04|1995-05-06|TAKE BACK RETURN|FOB|ounts. carefu| +44360|144586|44587|5|26|42395.08|0.00|0.00|N|F|1995-06-16|1995-05-02|1995-07-03|COLLECT COD|AIR|ainst the slyly ironic accounts: unus| +44361|290734|15745|1|33|56915.76|0.08|0.03|R|F|1993-01-19|1993-03-06|1993-01-24|DELIVER IN PERSON|AIR| the pending instructions. slyly special| +44361|365567|15568|2|17|27753.35|0.04|0.03|R|F|1993-03-14|1993-01-22|1993-03-18|COLLECT COD|AIR|y unusual i| +44361|69602|7106|3|9|14144.40|0.07|0.00|A|F|1993-01-29|1993-03-19|1993-02-05|NONE|SHIP| are quickly about the furiou| +44361|800573|38122|4|12|17682.36|0.01|0.07|A|F|1993-04-13|1993-02-20|1993-04-17|TAKE BACK RETURN|AIR| deposits doubt above the furiously | +44361|229733|29734|5|18|29928.96|0.06|0.01|A|F|1993-04-12|1993-01-28|1993-04-30|NONE|RAIL|ng the carefully | +44361|109441|21944|6|37|53666.28|0.02|0.00|R|F|1992-12-31|1993-03-14|1993-01-01|NONE|FOB|egularly fu| +44362|337432|12445|1|39|57307.38|0.10|0.05|A|F|1992-05-11|1992-04-06|1992-06-10|COLLECT COD|TRUCK|etween the qu| +44363|163088|25592|1|10|11510.80|0.04|0.06|N|O|1995-12-14|1996-01-23|1996-01-13|NONE|MAIL|riously ironic, even dependencies. slyly | +44363|19703|32204|2|24|38944.80|0.08|0.00|N|O|1995-12-30|1995-12-12|1996-01-29|COLLECT COD|FOB|al requests. p| +44363|144516|44517|3|8|12484.08|0.08|0.06|N|O|1995-11-10|1995-12-25|1995-11-26|COLLECT COD|TRUCK|equests. fluffi| +44364|213056|25561|1|47|45544.88|0.04|0.03|A|F|1994-08-30|1994-08-03|1994-09-16|NONE|FOB| among the regular cour| +44364|821784|21785|2|9|15351.66|0.00|0.02|A|F|1994-10-20|1994-08-29|1994-10-24|COLLECT COD|AIR|ages at the fluffily final requests cajol| +44364|719467|31982|3|13|19323.59|0.05|0.08|A|F|1994-06-27|1994-08-07|1994-07-12|NONE|RAIL|er the furiously quiet foxes.| +44364|77173|27174|4|38|43706.46|0.06|0.03|A|F|1994-08-30|1994-08-28|1994-09-13|NONE|FOB|nod furiously among th| +44364|42225|42226|5|49|57193.78|0.05|0.03|A|F|1994-09-26|1994-09-01|1994-10-11|COLLECT COD|AIR|ckly express packages across the slyl| +44365|850054|25089|1|27|27108.27|0.05|0.05|N|O|1996-08-07|1996-08-04|1996-08-11|NONE|MAIL|lithely according to the carefully bo| +44365|844218|19251|2|41|47648.97|0.06|0.01|N|O|1996-09-07|1996-06-20|1996-09-12|TAKE BACK RETURN|MAIL|. deposits unwind furio| +44365|769637|32153|3|22|37545.20|0.08|0.02|N|O|1996-06-17|1996-06-21|1996-06-20|COLLECT COD|REG AIR|s above the ironic deposits boost fur| +44365|285079|22595|4|21|22345.26|0.05|0.05|N|O|1996-07-26|1996-06-21|1996-08-13|COLLECT COD|AIR| pending ac| +44365|311056|36069|5|40|42681.60|0.03|0.00|N|O|1996-07-24|1996-06-29|1996-08-16|COLLECT COD|MAIL|pending id| +44365|912884|25403|6|12|22762.08|0.02|0.04|N|O|1996-06-21|1996-06-25|1996-06-23|DELIVER IN PERSON|FOB| quickly unusual requests. | +44366|579068|16602|1|12|13764.48|0.10|0.03|A|F|1993-02-18|1992-12-31|1993-03-06|COLLECT COD|AIR|press, special platelets c| +44366|379899|42407|2|43|85091.84|0.03|0.08|A|F|1992-12-04|1993-01-03|1992-12-30|COLLECT COD|RAIL| blithely regular asym| +44366|953407|3408|3|32|46731.52|0.05|0.08|A|F|1992-12-03|1993-01-14|1993-01-02|DELIVER IN PERSON|SHIP|n packages. blithel| +44367|807362|44911|1|23|29194.36|0.00|0.08|R|F|1992-10-30|1992-11-20|1992-11-04|DELIVER IN PERSON|MAIL|of the regular ins| +44367|318709|43722|2|17|29370.73|0.08|0.00|A|F|1992-09-25|1992-10-31|1992-10-11|DELIVER IN PERSON|RAIL|usly bold requests believe quickly | +44367|531475|31476|3|43|64777.35|0.00|0.04|A|F|1992-10-21|1992-10-06|1992-11-13|TAKE BACK RETURN|REG AIR|yly daring instructions c| +44367|498734|11244|4|26|45050.46|0.01|0.05|R|F|1992-11-09|1992-11-06|1992-11-13|COLLECT COD|FOB|usly above the quickly express pinto beans| +44367|222047|34552|5|18|17442.54|0.04|0.04|R|F|1992-11-22|1992-11-03|1992-12-13|DELIVER IN PERSON|AIR|lithely unusual | +44367|941180|28735|6|36|43961.04|0.07|0.07|A|F|1992-11-11|1992-11-10|1992-12-05|COLLECT COD|AIR|s requests affix carefully regular re| +44367|396875|9383|7|33|65071.38|0.03|0.04|A|F|1992-11-24|1992-11-02|1992-12-19|COLLECT COD|SHIP|s. ironic accounts around the packa| +44392|265858|3374|1|3|5471.52|0.00|0.08|N|O|1997-08-13|1997-07-23|1997-09-02|TAKE BACK RETURN|MAIL|unusual deposi| +44392|274135|36641|2|43|47692.16|0.05|0.01|N|O|1997-08-26|1997-08-10|1997-09-16|NONE|AIR|slyly. quickly ironic pi| +44392|383732|8747|3|35|63550.20|0.06|0.01|N|O|1997-07-11|1997-08-04|1997-07-12|DELIVER IN PERSON|RAIL|ts. slyly close theodolites run furiou| +44392|379100|41608|4|1|1179.09|0.00|0.06|N|O|1997-07-26|1997-06-25|1997-08-06|NONE|REG AIR|n dependencies across the furious| +44392|532718|32719|5|27|47268.63|0.00|0.07|N|O|1997-05-26|1997-08-03|1997-06-11|DELIVER IN PERSON|TRUCK|iously even exc| +44392|377688|15210|6|36|63564.12|0.10|0.01|N|O|1997-07-11|1997-08-06|1997-07-31|COLLECT COD|TRUCK|ithely slyly ironic requests. | +44392|787122|12153|7|49|59245.41|0.04|0.02|N|O|1997-08-23|1997-07-14|1997-09-04|NONE|REG AIR|es. furiously| +44393|151572|1573|1|17|27600.69|0.05|0.02|R|F|1993-08-23|1993-07-30|1993-08-28|DELIVER IN PERSON|AIR|g to the fluffily re| +44393|459316|46844|2|13|16578.77|0.07|0.02|A|F|1993-06-26|1993-06-21|1993-07-08|NONE|FOB| according to the foxes. fi| +44394|44692|32193|1|17|27823.73|0.05|0.02|A|F|1992-09-07|1992-08-16|1992-09-27|COLLECT COD|REG AIR| furiously unusual pinto bea| +44394|124387|49392|2|27|38107.26|0.06|0.00|R|F|1992-06-19|1992-08-21|1992-07-07|COLLECT COD|TRUCK|. dependenc| +44394|566484|16485|3|32|49614.72|0.02|0.05|A|F|1992-06-28|1992-07-12|1992-07-14|DELIVER IN PERSON|TRUCK|ly along the final | +44394|880714|5749|4|19|32198.73|0.06|0.01|A|F|1992-07-11|1992-07-08|1992-07-22|NONE|REG AIR| bold packages nag carefully spec| +44394|158111|8112|5|11|12860.21|0.10|0.04|R|F|1992-07-29|1992-07-17|1992-07-30|DELIVER IN PERSON|MAIL|ideas wake | +44394|368769|43784|6|9|16539.75|0.01|0.08|A|F|1992-07-27|1992-08-10|1992-08-09|DELIVER IN PERSON|AIR|attainments cajole slyly blithely sp| +44394|884304|21856|7|3|3864.78|0.10|0.03|A|F|1992-09-09|1992-08-18|1992-09-17|NONE|MAIL|according to the slyly regular pinto beans | +44395|497180|9690|1|35|41200.60|0.09|0.08|N|O|1998-03-19|1998-06-01|1998-04-08|COLLECT COD|RAIL|es. regular, express ideas r| +44395|95545|20548|2|32|49297.28|0.02|0.08|N|O|1998-07-04|1998-04-10|1998-08-03|DELIVER IN PERSON|SHIP|sts solve fluffily. fluffily regular dep| +44395|815306|15307|3|25|30531.50|0.04|0.04|N|O|1998-07-04|1998-04-29|1998-07-05|COLLECT COD|SHIP|y according to the final, regular excuse| +44395|840372|40373|4|20|26246.60|0.02|0.04|N|O|1998-05-10|1998-04-18|1998-05-17|NONE|SHIP|ly ironic accounts.| +44396|936309|36310|1|36|48429.36|0.02|0.08|A|F|1993-07-22|1993-06-08|1993-07-28|DELIVER IN PERSON|SHIP|iously ironic foxes before| +44396|529797|42308|2|48|87684.96|0.00|0.04|R|F|1993-04-07|1993-06-26|1993-05-02|DELIVER IN PERSON|MAIL| requests. unusual, even theodolites | +44396|282161|19677|3|48|54871.20|0.05|0.04|R|F|1993-07-12|1993-06-11|1993-07-31|NONE|REG AIR|its. express packages affix. clos| +44396|272161|9677|4|42|47592.30|0.01|0.08|R|F|1993-06-05|1993-05-12|1993-06-07|DELIVER IN PERSON|TRUCK| final, bold deposits along the c| +44396|205358|30367|5|26|32846.84|0.05|0.08|R|F|1993-07-22|1993-06-05|1993-08-08|DELIVER IN PERSON|REG AIR|accounts. carefully | +44397|121524|9031|1|2|3091.04|0.07|0.01|N|O|1995-12-16|1995-12-31|1996-01-02|DELIVER IN PERSON|TRUCK|s haggle abo| +44397|440957|40958|2|45|85406.85|0.07|0.06|N|O|1995-12-11|1996-01-14|1995-12-26|DELIVER IN PERSON|REG AIR|eposits boost alongside of | +44397|159216|21720|3|5|6376.05|0.03|0.00|N|O|1996-02-27|1996-01-08|1996-03-27|DELIVER IN PERSON|RAIL|engage carefully even foxes. quickly un| +44398|646705|21730|1|11|18168.37|0.10|0.02|A|F|1994-04-03|1994-04-15|1994-04-21|COLLECT COD|RAIL|ffily ironic instructions woul| +44398|162711|25215|2|8|14189.68|0.09|0.07|R|F|1994-05-16|1994-03-24|1994-06-07|NONE|REG AIR|its above the dolp| +44398|667125|4665|3|44|48051.96|0.06|0.08|R|F|1994-05-01|1994-03-27|1994-05-02|TAKE BACK RETURN|RAIL|gle alongside of the furiously re| +44398|368795|6317|4|11|20501.58|0.00|0.03|R|F|1994-03-03|1994-04-01|1994-03-20|NONE|SHIP| regular, ir| +44398|336269|48776|5|18|23494.50|0.02|0.06|R|F|1994-04-25|1994-03-22|1994-05-07|COLLECT COD|RAIL| deposits. qu| +44398|672907|10447|6|48|90233.76|0.05|0.01|A|F|1994-05-26|1994-04-07|1994-06-12|COLLECT COD|AIR|dencies wake between the careful| +44399|401774|39299|1|28|46921.00|0.09|0.00|A|F|1995-03-13|1995-04-23|1995-03-16|DELIVER IN PERSON|REG AIR|ptotes haggle furiou| +44399|615565|15566|2|15|22207.95|0.07|0.05|N|F|1995-05-23|1995-04-02|1995-06-21|DELIVER IN PERSON|TRUCK| ironic, expre| +44399|798614|23645|3|33|56515.14|0.08|0.07|A|F|1995-04-22|1995-04-23|1995-05-08|COLLECT COD|FOB|nts-- slyly special accou| +44399|299110|24121|4|48|53236.80|0.08|0.05|N|O|1995-06-23|1995-05-05|1995-06-30|TAKE BACK RETURN|SHIP|s. pending, special theodolites cajole| +44399|135160|22667|5|8|9561.28|0.00|0.08|N|F|1995-06-02|1995-04-27|1995-06-30|NONE|RAIL| nag carefully| +44399|624449|11986|6|20|27468.20|0.04|0.04|R|F|1995-03-06|1995-04-06|1995-03-15|COLLECT COD|FOB|boost according to the | +44399|109844|9845|7|21|38930.64|0.07|0.01|A|F|1995-05-01|1995-05-11|1995-05-08|COLLECT COD|FOB|y theodolites. even deposits wake blithely.| +44424|143634|43635|1|35|58717.05|0.08|0.05|N|O|1995-12-29|1995-11-30|1996-01-17|NONE|AIR|beans. slyly ironic dolphins ca| +44424|48232|23233|2|16|18883.68|0.09|0.00|N|O|1996-01-21|1995-10-27|1996-02-19|TAKE BACK RETURN|MAIL|ffily regular excuses sleep blithel| +44424|623131|23132|3|45|47434.50|0.00|0.03|N|O|1995-12-08|1995-12-02|1995-12-30|COLLECT COD|REG AIR| according to the fur| +44424|949409|24446|4|48|70001.28|0.04|0.04|N|O|1995-12-18|1995-11-05|1995-12-25|DELIVER IN PERSON|AIR|ending, express | +44425|721772|46801|1|47|84305.78|0.03|0.05|N|O|1995-12-09|1996-02-23|1995-12-17|DELIVER IN PERSON|RAIL|ross the ironic, final war| +44425|805946|43495|2|33|61112.70|0.10|0.08|N|O|1996-01-15|1995-12-31|1996-01-29|COLLECT COD|MAIL|hely regular accounts wake carefully at the| +44425|523776|48797|3|50|89987.50|0.00|0.03|N|O|1995-12-29|1996-01-01|1996-01-11|DELIVER IN PERSON|FOB|sits. blithely pending requests are c| +44425|91143|28647|4|34|38560.76|0.02|0.00|N|O|1996-01-28|1996-01-28|1996-02-07|DELIVER IN PERSON|MAIL|es sleep slyly ruthles| +44425|834978|10011|5|37|70778.41|0.05|0.06|N|O|1996-02-28|1996-01-21|1996-03-05|COLLECT COD|SHIP|s haggle across the fina| +44425|458853|8854|6|6|10870.98|0.05|0.01|N|O|1996-01-22|1996-02-04|1996-02-16|COLLECT COD|SHIP|olphins wake accounts. ca| +44426|958885|46443|1|19|36932.96|0.01|0.05|R|F|1994-07-05|1994-06-18|1994-08-01|COLLECT COD|SHIP|, regular pinto beans sleep carefu| +44426|978772|16330|2|39|72178.47|0.01|0.02|A|F|1994-06-11|1994-06-26|1994-06-26|TAKE BACK RETURN|REG AIR|ic orbits wake| +44426|216746|4259|3|16|26603.68|0.09|0.08|R|F|1994-05-31|1994-06-26|1994-06-29|COLLECT COD|TRUCK|s wake amo| +44426|839061|14094|4|4|4000.08|0.02|0.07|R|F|1994-07-02|1994-07-11|1994-08-01|TAKE BACK RETURN|AIR| furiously regular re| +44426|94155|6657|5|4|4596.60|0.03|0.03|A|F|1994-06-16|1994-07-10|1994-06-24|DELIVER IN PERSON|TRUCK|en accounts haggle eve| +44427|973208|10766|1|28|35872.48|0.04|0.01|N|O|1998-07-03|1998-06-06|1998-07-04|TAKE BACK RETURN|SHIP|ages are carefully express instructions. sl| +44427|697041|22068|2|22|22836.22|0.07|0.01|N|O|1998-05-07|1998-05-20|1998-06-04|COLLECT COD|RAIL|ously final deposits haggle special pl| +44427|163362|13363|3|14|19955.04|0.09|0.05|N|O|1998-07-10|1998-06-16|1998-08-02|DELIVER IN PERSON|TRUCK| ironic, unusua| +44427|617202|4739|4|22|24621.74|0.00|0.08|N|O|1998-05-26|1998-06-04|1998-06-14|DELIVER IN PERSON|TRUCK|y regular deposits. unusual ideas| +44428|41108|28609|1|28|29374.80|0.03|0.02|N|O|1998-06-24|1998-08-01|1998-07-11|TAKE BACK RETURN|REG AIR|posits through the re| +44428|892305|42306|2|15|19458.90|0.05|0.03|N|O|1998-07-17|1998-07-25|1998-07-21|COLLECT COD|TRUCK|luffily even pearls cajole blithe| +44428|961271|11272|3|23|30641.29|0.03|0.04|N|O|1998-07-25|1998-08-12|1998-08-09|TAKE BACK RETURN|REG AIR|ic packages detect above | +44428|74467|11971|4|10|14414.60|0.04|0.06|N|O|1998-10-04|1998-08-10|1998-10-17|COLLECT COD|MAIL|ernes sleep quick| +44428|562223|24735|5|11|14137.20|0.01|0.06|N|O|1998-07-02|1998-08-03|1998-07-09|NONE|FOB|sts haggle quickly even notornis. quickly| +44429|60830|10831|1|19|34025.77|0.09|0.01|N|O|1997-06-06|1997-04-30|1997-06-07|NONE|REG AIR|its nag bl| +44429|364479|39494|2|38|58651.48|0.01|0.02|N|O|1997-03-23|1997-05-19|1997-03-26|TAKE BACK RETURN|RAIL|ly special packages. fluffily express pl| +44429|786946|49462|3|22|44724.02|0.03|0.01|N|O|1997-05-04|1997-05-06|1997-05-27|COLLECT COD|MAIL|es. depths sleep carefully. | +44429|186724|49228|4|45|81482.40|0.05|0.05|N|O|1997-05-14|1997-04-13|1997-05-26|TAKE BACK RETURN|TRUCK|platelets. furiously final de| +44429|262109|12110|5|40|42843.60|0.07|0.05|N|O|1997-06-15|1997-03-25|1997-06-28|NONE|FOB|ully. ideas doubt against the ironi| +44430|452516|27535|1|6|8810.94|0.00|0.05|N|O|1995-11-03|1995-09-02|1995-12-01|COLLECT COD|SHIP|bold pains. final requests wake carefull| +44430|434182|46691|2|27|30136.32|0.04|0.01|N|O|1995-09-13|1995-09-03|1995-09-15|DELIVER IN PERSON|REG AIR|old epitaphs are quick| +44430|287445|49951|3|14|20054.02|0.06|0.03|N|O|1995-07-31|1995-09-12|1995-08-26|DELIVER IN PERSON|REG AIR|de of the furiously silent platelets. depo| +44430|81730|19234|4|6|10270.38|0.03|0.00|N|O|1995-08-04|1995-10-05|1995-08-12|DELIVER IN PERSON|SHIP|dle furiously across the carefully | +44430|625557|25558|5|7|10377.64|0.05|0.06|N|O|1995-10-18|1995-09-01|1995-11-17|COLLECT COD|MAIL|unts haggle expr| +44431|692714|17741|1|25|42667.00|0.01|0.06|N|O|1996-10-09|1996-08-18|1996-10-25|DELIVER IN PERSON|RAIL|al packages nag carefully abo| +44456|540419|40420|1|6|8756.34|0.07|0.02|N|O|1996-04-08|1996-04-30|1996-04-22|DELIVER IN PERSON|SHIP| integrate furiously s| +44456|808414|20931|2|28|37026.36|0.03|0.08|N|O|1996-04-27|1996-05-09|1996-05-08|TAKE BACK RETURN|SHIP|eposits impress furious| +44457|830403|42920|1|6|8000.16|0.03|0.06|A|F|1994-10-08|1994-07-26|1994-10-20|COLLECT COD|MAIL|t the regular pinto b| +44457|568962|43985|2|14|28433.16|0.04|0.01|R|F|1994-08-26|1994-09-09|1994-09-24|TAKE BACK RETURN|SHIP|eep slyly | +44457|544055|31586|3|42|46159.26|0.03|0.08|A|F|1994-09-18|1994-08-11|1994-10-09|TAKE BACK RETURN|RAIL|unts wake along the blithely final dolphin| +44458|908718|46273|1|16|27626.72|0.04|0.07|A|F|1992-04-22|1992-06-18|1992-04-28|TAKE BACK RETURN|MAIL|sly regular theodolites haggle blithely| +44458|806805|44354|2|38|65046.88|0.08|0.08|A|F|1992-06-05|1992-05-04|1992-06-22|COLLECT COD|AIR|packages! final courts c| +44458|969438|19439|3|25|37684.75|0.08|0.06|R|F|1992-06-10|1992-05-26|1992-06-23|TAKE BACK RETURN|MAIL|carefully special notornis. fluffil| +44458|331289|6302|4|34|44889.18|0.00|0.00|A|F|1992-05-03|1992-06-03|1992-05-25|DELIVER IN PERSON|RAIL|en theodolites. packages wake | +44458|959315|9316|5|25|34356.75|0.10|0.07|A|F|1992-06-21|1992-05-14|1992-07-08|TAKE BACK RETURN|REG AIR| regular requests. bold, regular requ| +44458|195553|45554|6|3|4945.65|0.03|0.07|R|F|1992-04-07|1992-05-17|1992-04-13|NONE|RAIL|above the daring, regu| +44458|658108|33135|7|11|11726.77|0.00|0.00|A|F|1992-07-01|1992-06-01|1992-07-24|NONE|MAIL|s pinto beans along the | +44459|818316|43349|1|27|33325.29|0.01|0.08|R|F|1993-09-22|1993-08-15|1993-10-05|COLLECT COD|TRUCK|ts use rut| +44459|425953|970|2|26|48852.18|0.10|0.03|A|F|1993-09-07|1993-09-19|1993-09-19|NONE|AIR|hout the ca| +44459|987470|12509|3|23|35820.89|0.04|0.05|A|F|1993-09-26|1993-08-28|1993-10-03|NONE|REG AIR|usual foxes| +44459|407469|7470|4|22|30281.68|0.03|0.02|A|F|1993-10-14|1993-09-15|1993-11-07|TAKE BACK RETURN|RAIL|y regular sheave| +44459|331310|43817|5|28|37556.40|0.08|0.03|A|F|1993-10-28|1993-09-24|1993-10-31|NONE|FOB|rts. blithely final courts above the | +44459|319977|32484|6|1|1996.96|0.10|0.06|A|F|1993-10-31|1993-09-23|1993-11-13|NONE|SHIP|ts boost quickly among| +44460|218171|18172|1|23|25050.68|0.05|0.01|R|F|1993-10-15|1993-12-11|1993-10-23|TAKE BACK RETURN|FOB|sheaves boost slyly above the slyly ironic| +44460|792345|29891|2|21|30183.51|0.04|0.06|R|F|1994-01-05|1993-11-19|1994-01-15|TAKE BACK RETURN|RAIL|heodolites. fluffily silent asymptotes ac| +44460|938555|38556|3|22|35057.22|0.08|0.03|R|F|1993-10-28|1993-10-27|1993-11-12|COLLECT COD|REG AIR|quickly bold depos| +44460|283654|46160|4|34|55679.76|0.09|0.07|R|F|1993-12-19|1993-11-14|1993-12-31|DELIVER IN PERSON|RAIL|nto beans? exp| +44460|364519|39534|5|13|20585.50|0.01|0.07|R|F|1993-10-17|1993-11-24|1993-11-07|TAKE BACK RETURN|FOB| requests poach accounts. slyly regul| +44461|304168|29181|1|49|57435.35|0.07|0.03|A|F|1993-10-22|1993-11-22|1993-11-01|COLLECT COD|MAIL|dolites haggle about the slyly regular fox| +44461|144408|6911|2|4|5809.60|0.04|0.08|R|F|1993-10-20|1993-12-08|1993-11-03|TAKE BACK RETURN|RAIL|slyly regular a| +44462|913314|25833|1|12|15927.24|0.04|0.02|N|O|1997-10-14|1997-10-19|1997-11-12|TAKE BACK RETURN|REG AIR|ackages haggle | +44462|59683|47187|2|16|26282.88|0.01|0.03|N|O|1997-11-28|1997-11-18|1997-12-02|COLLECT COD|MAIL|y above the sl| +44462|87842|344|3|28|51235.52|0.08|0.01|N|O|1997-10-12|1997-10-04|1997-11-09|COLLECT COD|FOB|lly after the final re| +44462|347851|35370|4|10|18988.40|0.00|0.08|N|O|1997-10-15|1997-11-24|1997-10-27|TAKE BACK RETURN|AIR|ins affix against the | +44462|320761|8280|5|44|78397.00|0.01|0.05|N|O|1997-12-08|1997-10-23|1998-01-01|TAKE BACK RETURN|SHIP|es throughout the sl| +44463|933054|8091|1|3|3261.03|0.10|0.07|R|F|1995-03-21|1995-02-04|1995-03-31|NONE|RAIL|lyly final| +44463|822129|9678|2|8|8408.64|0.01|0.04|R|F|1995-02-19|1995-02-04|1995-02-27|NONE|FOB|slyly final accounts na| +44463|518541|18542|3|47|73297.44|0.07|0.03|A|F|1995-01-31|1995-01-03|1995-02-07|TAKE BACK RETURN|AIR|detect past the carefully final | +44463|105903|18406|4|2|3817.80|0.05|0.08|A|F|1994-12-23|1995-02-01|1995-01-07|DELIVER IN PERSON|AIR| packages. furiously pending | +44463|895390|32942|5|11|15238.85|0.02|0.02|A|F|1995-01-14|1995-02-15|1995-01-30|DELIVER IN PERSON|TRUCK|ts cajole about the regular, fi| +44463|819122|31639|6|2|2082.16|0.01|0.02|R|F|1994-11-28|1995-01-01|1994-12-25|COLLECT COD|TRUCK|e furiously! c| +44488|162510|20|1|10|15725.10|0.06|0.02|N|O|1997-04-12|1997-03-20|1997-04-20|COLLECT COD|AIR|y final esca| +44489|647715|10228|1|34|56531.12|0.01|0.04|R|F|1994-11-16|1994-10-27|1994-11-22|NONE|SHIP|eodolites. f| +44489|138348|38349|2|35|48521.90|0.03|0.03|R|F|1994-11-05|1994-10-28|1994-11-26|TAKE BACK RETURN|REG AIR|ounts nag quickly final, even foxes. sly| +44489|207279|44792|3|17|20166.42|0.10|0.05|A|F|1994-10-03|1994-10-08|1994-10-17|DELIVER IN PERSON|AIR|usly silent asymptotes serve. depend| +44489|736401|48916|4|21|30184.77|0.06|0.06|A|F|1994-08-21|1994-09-02|1994-09-12|COLLECT COD|SHIP|uickly ironi| +44489|690566|15593|5|28|43582.84|0.00|0.06|R|F|1994-08-06|1994-09-04|1994-08-14|COLLECT COD|FOB|c pinto beans sleep at| +44489|326639|1652|6|46|76618.52|0.09|0.04|R|F|1994-11-04|1994-10-09|1994-11-27|TAKE BACK RETURN|MAIL|usly regular deposits should hav| +44489|810177|35210|7|17|18481.21|0.08|0.05|R|F|1994-09-26|1994-10-06|1994-10-01|COLLECT COD|REG AIR|nusual requests nag furiously.| +44490|632727|45240|1|41|68047.29|0.08|0.01|R|F|1994-01-29|1994-03-15|1994-02-28|TAKE BACK RETURN|AIR|ts cajole asymptotes. regu| +44490|231259|18772|2|36|42848.64|0.03|0.06|R|F|1994-04-15|1994-03-02|1994-05-11|TAKE BACK RETURN|AIR|pecial deposits across t| +44490|761062|48608|3|34|38183.02|0.07|0.01|R|F|1994-02-14|1994-03-06|1994-02-19|TAKE BACK RETURN|MAIL|ross the ironic ideas. carefully b| +44490|165886|15887|4|49|95642.12|0.04|0.05|R|F|1994-05-16|1994-03-29|1994-05-21|COLLECT COD|TRUCK|ending platelets integrate furiously up| +44490|29800|29801|5|24|41515.20|0.05|0.02|A|F|1994-02-12|1994-03-24|1994-02-15|NONE|SHIP|onic sentiments | +44490|837372|49889|6|14|18330.62|0.04|0.03|R|F|1994-03-03|1994-02-25|1994-03-17|DELIVER IN PERSON|MAIL|ular foxes. carefully special hockey playe| +44490|705488|43031|7|46|68698.70|0.07|0.04|A|F|1994-02-18|1994-03-01|1994-03-10|TAKE BACK RETURN|REG AIR|uriously final requ| +44491|123103|48108|1|4|4504.40|0.02|0.04|N|O|1997-06-30|1997-07-03|1997-07-27|TAKE BACK RETURN|TRUCK|xes wake furio| +44491|991954|16993|2|23|47055.93|0.08|0.01|N|O|1997-07-27|1997-05-10|1997-08-26|COLLECT COD|FOB|ronic, special excuses. blithely final dep| +44491|763181|13182|3|28|34836.20|0.04|0.06|N|O|1997-04-19|1997-05-31|1997-05-11|NONE|TRUCK|inal, ironic| +44491|769104|6650|4|35|41057.45|0.06|0.02|N|O|1997-06-09|1997-05-16|1997-06-22|COLLECT COD|AIR|y. theodoli| +44492|742436|29979|1|44|65049.60|0.00|0.00|N|O|1997-12-25|1997-12-05|1998-01-01|TAKE BACK RETURN|FOB|ns snooze blithely. s| +44492|109010|21513|2|4|4076.04|0.06|0.03|N|O|1997-12-24|1997-11-22|1998-01-18|NONE|FOB|deposits. final accounts eat about the ir| +44492|120408|20409|3|26|37138.40|0.08|0.04|N|O|1998-01-02|1997-11-16|1998-01-16|TAKE BACK RETURN|AIR|se furiously about the fluffily sile| +44492|691739|4253|4|21|36344.70|0.08|0.03|N|O|1997-10-20|1997-12-31|1997-11-03|COLLECT COD|SHIP|y carefull| +44492|51664|39168|5|13|21003.58|0.04|0.01|N|O|1997-11-06|1998-01-02|1997-11-19|DELIVER IN PERSON|AIR|odolites are sil| +44493|459599|47127|1|19|29612.83|0.08|0.00|N|O|1998-01-24|1998-01-11|1998-02-12|NONE|RAIL|ess about the final pinto beans. reques| +44493|479762|17290|2|24|41801.76|0.05|0.08|N|O|1997-12-31|1997-12-02|1998-01-07|NONE|TRUCK|structions haggle | +44493|353005|3006|3|14|14811.86|0.04|0.03|N|O|1997-11-22|1997-12-21|1997-12-02|COLLECT COD|AIR|ly ironic excu| +44493|940339|40340|4|13|17930.77|0.07|0.02|N|O|1997-12-12|1997-12-12|1997-12-18|NONE|TRUCK|ns. even accounts alo| +44494|399412|11920|1|18|27205.20|0.09|0.06|A|F|1995-05-11|1995-04-06|1995-05-31|NONE|REG AIR|y final requests. blithel| +44494|908778|8779|2|45|80402.85|0.07|0.08|A|F|1995-02-07|1995-04-20|1995-02-22|DELIVER IN PERSON|TRUCK|e unusual foxes. deposits hag| +44494|828906|41423|3|37|67889.82|0.08|0.06|A|F|1995-02-11|1995-04-20|1995-02-17|NONE|AIR|ages against the iro| +44494|409956|22465|4|36|67173.48|0.04|0.01|R|F|1995-05-05|1995-03-11|1995-05-24|COLLECT COD|FOB|s furiously even dependencies. quickly | +44495|70965|20966|1|49|94862.04|0.07|0.04|N|O|1998-08-05|1998-07-07|1998-08-08|COLLECT COD|TRUCK|rts hinder slyly regular packages; | +44520|432751|45260|1|19|31990.87|0.08|0.04|A|F|1994-02-12|1994-03-14|1994-03-06|DELIVER IN PERSON|REG AIR| carefully above the furiously bold| +44521|731941|44456|1|18|35512.38|0.02|0.06|R|F|1992-04-07|1992-05-09|1992-04-12|NONE|REG AIR|sits. final, express frays| +44521|719974|45003|2|12|23927.28|0.02|0.03|R|F|1992-03-12|1992-04-03|1992-03-26|TAKE BACK RETURN|REG AIR|sly even pinto beans. slyly bold packa| +44521|600324|25349|3|8|9794.32|0.01|0.02|A|F|1992-06-03|1992-05-23|1992-06-05|TAKE BACK RETURN|MAIL| blithely even deposits. blithely express | +44521|639646|2159|4|24|38054.64|0.09|0.04|R|F|1992-02-28|1992-03-31|1992-03-25|NONE|MAIL|ffily silent, regular accounts. package| +44521|529502|17033|5|49|75042.52|0.06|0.05|A|F|1992-03-02|1992-04-08|1992-03-19|DELIVER IN PERSON|MAIL|y. slyly regular escap| +44521|327623|2636|6|43|70976.23|0.07|0.04|A|F|1992-04-14|1992-05-22|1992-04-18|NONE|RAIL|al dependencies. final foxes according to | +44522|966905|16906|1|29|57183.94|0.06|0.08|N|O|1997-08-23|1997-07-21|1997-09-08|TAKE BACK RETURN|TRUCK|lar ideas use furiously against th| +44522|768033|18034|2|38|41838.00|0.06|0.03|N|O|1997-08-30|1997-09-15|1997-09-18|TAKE BACK RETURN|AIR|heodolites affix slyly| +44523|570776|8310|1|33|60942.75|0.07|0.05|R|F|1993-11-24|1993-11-12|1993-12-22|COLLECT COD|AIR|ns. regular, ironic dependencies | +44523|18935|31436|2|11|20393.23|0.03|0.07|A|F|1993-09-22|1993-11-24|1993-09-28|COLLECT COD|FOB| according to the slyly special| +44523|227359|14872|3|43|55312.62|0.04|0.07|R|F|1993-12-22|1993-10-21|1993-12-28|DELIVER IN PERSON|SHIP|ray carefully even dependencies. closely | +44524|520634|8165|1|13|21509.93|0.06|0.08|R|F|1993-01-15|1993-02-13|1993-02-03|DELIVER IN PERSON|REG AIR|c requests. furiously final accounts| +44524|282239|32240|2|36|43963.92|0.05|0.04|R|F|1993-04-05|1993-03-30|1993-04-14|NONE|RAIL|tes at the f| +44524|585676|35677|3|43|75750.95|0.09|0.03|A|F|1993-04-21|1993-04-04|1993-05-05|COLLECT COD|SHIP| asymptotes. quickly silent requests w| +44524|455418|17928|4|22|30214.58|0.09|0.02|R|F|1993-04-08|1993-03-09|1993-05-07|COLLECT COD|MAIL| cajole carefully. furiously ironic instru| +44524|197033|34543|5|48|54241.44|0.08|0.08|A|F|1993-04-19|1993-03-07|1993-05-10|NONE|TRUCK| cajole. dependencies solve. i| +44525|799117|49118|1|17|20673.36|0.09|0.02|N|O|1998-04-20|1998-06-17|1998-05-18|TAKE BACK RETURN|RAIL|ly final excuses. slyly final accou| +44525|751245|13761|2|13|16850.73|0.07|0.06|N|O|1998-05-12|1998-06-16|1998-06-04|DELIVER IN PERSON|MAIL|sits are carefully final theo| +44525|158692|21196|3|21|36764.49|0.09|0.06|N|O|1998-04-20|1998-06-25|1998-05-01|COLLECT COD|RAIL|packages. final accoun| +44526|738679|13708|1|41|70423.24|0.02|0.08|A|F|1994-12-16|1994-12-19|1994-12-18|NONE|MAIL|sts detect slyly. fu| +44526|973579|11137|2|7|11567.71|0.01|0.08|A|F|1994-11-28|1995-01-15|1994-12-28|COLLECT COD|AIR|r instructions. regu| +44526|941928|16965|3|4|7879.52|0.04|0.01|A|F|1995-01-14|1995-01-13|1995-02-13|COLLECT COD|REG AIR|ously across the brave deposits? f| +44526|979117|29118|4|25|29901.75|0.00|0.03|A|F|1995-01-08|1994-11-28|1995-02-07|DELIVER IN PERSON|TRUCK|ly about the carefully sly dolphins. sl| +44527|881973|44491|1|2|3909.86|0.09|0.08|R|F|1993-11-05|1993-12-07|1993-11-08|NONE|MAIL|ideas haggle evenly about the| +44552|699777|37317|1|44|78176.56|0.03|0.08|N|O|1995-12-14|1996-02-01|1996-01-07|NONE|SHIP|, pending req| +44552|150411|412|2|49|71609.09|0.03|0.05|N|O|1996-01-23|1996-02-05|1996-02-20|DELIVER IN PERSON|SHIP|ng to the carefully blithe packages. car| +44552|953468|3469|3|23|34992.66|0.00|0.06|N|O|1995-11-19|1996-01-06|1995-12-05|DELIVER IN PERSON|SHIP|thely. fluffily final dolphins hag| +44552|932513|20068|4|50|77273.50|0.09|0.04|N|O|1995-11-18|1995-12-25|1995-12-06|DELIVER IN PERSON|RAIL|inal depos| +44552|743611|6126|5|37|61219.46|0.06|0.04|N|O|1995-11-24|1995-12-21|1995-12-15|DELIVER IN PERSON|REG AIR| instructions. quickly special theodol| +44552|868135|30653|6|4|4412.36|0.04|0.03|N|O|1996-02-23|1996-01-25|1996-02-27|NONE|SHIP|quickly even theodolites. unusu| +44553|870210|20211|1|16|18882.72|0.04|0.04|A|F|1993-06-27|1993-08-15|1993-07-25|TAKE BACK RETURN|AIR|uriously ironic packages x-ray blithely acc| +44553|618630|43655|2|29|44909.40|0.05|0.08|A|F|1993-06-20|1993-07-07|1993-07-12|COLLECT COD|FOB|h ironic, final requests. quic| +44553|297783|22794|3|23|40957.71|0.09|0.01|R|F|1993-07-30|1993-06-29|1993-08-22|NONE|TRUCK|unusual as| +44553|831103|6136|4|25|25851.50|0.06|0.06|A|F|1993-06-28|1993-08-07|1993-07-16|NONE|TRUCK|to the carefully bold deposits| +44554|9020|9021|1|2|1858.04|0.09|0.06|R|F|1994-04-06|1994-04-03|1994-04-22|DELIVER IN PERSON|REG AIR|pecial package| +44554|596382|21405|2|4|5913.44|0.09|0.05|R|F|1994-02-20|1994-04-23|1994-03-11|DELIVER IN PERSON|AIR|y ironic accounts. packages nag| +44554|379444|41952|3|40|60937.20|0.08|0.06|A|F|1994-05-25|1994-03-21|1994-06-04|DELIVER IN PERSON|TRUCK|le against the blithe| +44554|310652|35665|4|37|61517.68|0.10|0.00|A|F|1994-02-12|1994-04-18|1994-02-28|COLLECT COD|TRUCK|uests across th| +44554|122851|35354|5|33|61837.05|0.02|0.04|R|F|1994-03-07|1994-03-05|1994-03-19|TAKE BACK RETURN|REG AIR|ites-- ironic requests cajole | +44554|750312|37858|6|5|6811.40|0.02|0.03|R|F|1994-02-23|1994-04-03|1994-02-24|DELIVER IN PERSON|FOB|y regular courts across the s| +44555|863844|1396|1|9|16270.20|0.08|0.07|A|F|1992-05-31|1992-05-23|1992-06-05|COLLECT COD|AIR|refully pending packages. fur| +44555|622504|22505|2|44|62764.68|0.05|0.00|R|F|1992-06-19|1992-05-02|1992-07-15|DELIVER IN PERSON|AIR|ular dinos haggle slyly slyly f| +44555|416235|3760|3|50|57560.50|0.10|0.05|A|F|1992-03-31|1992-06-16|1992-04-11|DELIVER IN PERSON|RAIL|s about the carefully ironic | +44555|659730|9731|4|43|72657.10|0.00|0.04|A|F|1992-04-01|1992-05-19|1992-04-22|NONE|SHIP|ng to the bold packages. quickly iro| +44555|65875|3379|5|14|25772.18|0.06|0.02|R|F|1992-06-02|1992-06-03|1992-07-01|TAKE BACK RETURN|AIR|ar excuses. slyly | +44555|156138|43648|6|8|9553.04|0.06|0.01|A|F|1992-05-28|1992-06-03|1992-06-26|NONE|SHIP|riously even | +44555|205930|43443|7|17|31210.64|0.06|0.07|R|F|1992-04-04|1992-06-16|1992-04-05|TAKE BACK RETURN|SHIP|e of the carefully final account| +44556|52312|27315|1|19|24021.89|0.01|0.08|N|O|1997-11-20|1997-12-15|1997-12-14|DELIVER IN PERSON|SHIP| fluffily express accoun| +44556|197731|22738|2|17|31088.41|0.07|0.08|N|O|1997-10-09|1997-12-02|1997-10-16|COLLECT COD|AIR| courts; furiousl| +44556|259893|47409|3|42|77820.96|0.07|0.06|N|O|1997-11-06|1997-11-15|1997-11-21|DELIVER IN PERSON|RAIL|according to the dependencies. qui| +44556|12107|24608|4|14|14267.40|0.01|0.06|N|O|1997-11-02|1997-11-30|1997-11-05|TAKE BACK RETURN|REG AIR|longside of the quickly unusual foxes-| +44556|482001|44511|5|17|16710.66|0.09|0.03|N|O|1998-01-19|1997-11-29|1998-01-22|TAKE BACK RETURN|FOB|ages. blithely pen| +44556|984340|34341|6|19|27061.70|0.09|0.06|N|O|1997-10-18|1997-12-12|1997-11-06|TAKE BACK RETURN|REG AIR|eep unusual pinto beans. a| +44557|450949|13459|1|20|37998.40|0.07|0.00|N|O|1996-09-18|1996-11-15|1996-09-20|COLLECT COD|SHIP|ecial dependencies wake along t| +44557|99788|49789|2|15|26816.70|0.05|0.06|N|O|1996-09-28|1996-10-30|1996-10-04|NONE|MAIL|uests cajole quickly above the slyly| +44557|123305|23306|3|34|45162.20|0.01|0.01|N|O|1996-09-09|1996-10-02|1996-10-04|NONE|TRUCK|refully. slyly bold requests int| +44557|381054|18576|4|7|7945.28|0.01|0.05|N|O|1996-09-25|1996-10-06|1996-10-24|NONE|RAIL|sleep express foxes. instructions| +44558|603781|3782|1|46|77498.50|0.07|0.07|N|O|1996-12-02|1996-12-30|1997-01-01|NONE|TRUCK| carefully fluffy excuses haggle. fina| +44558|742236|17265|2|29|37067.80|0.06|0.01|N|O|1996-11-17|1997-01-18|1996-12-02|NONE|FOB|ular deposits. furiously ironic gifts abo| +44558|754863|42409|3|44|84384.52|0.01|0.07|N|O|1997-01-31|1996-12-16|1997-02-03|DELIVER IN PERSON|FOB|gular excuses. ironic, | +44558|970544|20545|4|16|25832.00|0.10|0.04|N|O|1996-12-10|1996-12-17|1997-01-07|TAKE BACK RETURN|RAIL|ke slyly across the | +44558|918806|43843|5|43|78464.68|0.01|0.07|N|O|1997-01-21|1997-01-12|1997-01-25|TAKE BACK RETURN|SHIP|ges sleep fluffily. furiously even fox| +44558|364626|14627|6|24|40574.64|0.07|0.00|N|O|1997-02-03|1997-01-26|1997-03-05|DELIVER IN PERSON|RAIL|cuses haggle alongside of the furiously f| +44559|300325|37844|1|45|59638.95|0.00|0.08|N|O|1998-09-09|1998-09-05|1998-10-05|TAKE BACK RETURN|RAIL| accounts sleep| +44559|548428|23449|2|30|44292.00|0.06|0.04|N|O|1998-09-15|1998-09-07|1998-10-03|NONE|TRUCK|hrash quickly e| +44559|428054|3071|3|13|12766.39|0.08|0.01|N|O|1998-08-28|1998-09-21|1998-08-31|NONE|AIR|ptotes cajole carefully after the express, | +44559|292355|42356|4|4|5389.36|0.02|0.07|N|O|1998-10-03|1998-09-21|1998-10-15|TAKE BACK RETURN|SHIP| packages sleep fluffily after th| +44559|605926|5927|5|28|51292.92|0.03|0.02|N|O|1998-10-04|1998-09-17|1998-10-05|DELIVER IN PERSON|TRUCK| accounts detect.| +44584|916454|4009|1|5|7352.05|0.09|0.03|A|F|1992-07-02|1992-04-30|1992-07-11|DELIVER IN PERSON|SHIP|onic dependencies. pending packages use. | +44584|830003|17552|2|3|2798.88|0.07|0.01|R|F|1992-05-28|1992-05-12|1992-06-04|DELIVER IN PERSON|RAIL| instruction| +44585|420724|8249|1|46|75656.20|0.05|0.03|R|F|1995-05-15|1995-04-30|1995-05-26|DELIVER IN PERSON|SHIP|luffily bold accounts sleep agains| +44585|106892|19395|2|43|81652.27|0.01|0.05|A|F|1995-02-08|1995-05-01|1995-03-04|TAKE BACK RETURN|SHIP|n excuses nag af| +44585|522723|47744|3|29|50625.30|0.03|0.08|R|F|1995-03-29|1995-04-28|1995-04-08|TAKE BACK RETURN|SHIP|gular theodolit| +44585|401553|14062|4|43|62544.79|0.08|0.03|A|F|1995-05-21|1995-03-17|1995-05-29|COLLECT COD|TRUCK|usly regular deposits sleep slyly| +44585|891638|41639|5|14|22814.26|0.05|0.08|A|F|1995-02-03|1995-04-28|1995-03-02|NONE|TRUCK|lent platelets alongside of the sly| +44586|146688|21693|1|20|34693.60|0.07|0.05|A|F|1992-04-18|1992-05-14|1992-04-28|TAKE BACK RETURN|TRUCK|fluffily even asymptotes. regular platelet| +44586|383078|20600|2|20|23221.20|0.02|0.06|A|F|1992-04-27|1992-05-31|1992-05-26|NONE|AIR|carefully. silent, | +44586|387724|37725|3|15|27175.65|0.09|0.00|R|F|1992-04-12|1992-06-10|1992-04-29|DELIVER IN PERSON|REG AIR|quests. carefull| +44586|468436|43455|4|16|22470.56|0.09|0.02|A|F|1992-07-13|1992-07-02|1992-07-28|DELIVER IN PERSON|MAIL|usly across the final, ironic foxes. e| +44586|996381|8901|5|25|36933.50|0.08|0.02|A|F|1992-06-12|1992-06-29|1992-06-23|DELIVER IN PERSON|TRUCK|uests sleep express acc| +44586|165898|15899|6|22|43205.58|0.08|0.06|R|F|1992-05-06|1992-06-09|1992-05-07|COLLECT COD|REG AIR|arefully regular patterns sublate furiou| +44587|521159|21160|1|21|24782.73|0.05|0.04|N|O|1996-04-02|1996-05-23|1996-04-11|NONE|TRUCK|ccounts against the | +44587|118664|31167|2|5|8413.30|0.06|0.01|N|O|1996-04-30|1996-04-19|1996-05-18|NONE|FOB|s. pending | +44587|377682|27683|3|41|72146.47|0.10|0.01|N|O|1996-03-09|1996-03-27|1996-04-06|TAKE BACK RETURN|SHIP|riously final deposits. slyly regular r| +44587|689285|14312|4|25|31856.25|0.10|0.08|N|O|1996-03-11|1996-04-25|1996-03-28|TAKE BACK RETURN|MAIL|od slyly final pinto beans. even, | +44587|797682|22713|5|19|33813.35|0.01|0.05|N|O|1996-04-11|1996-04-10|1996-04-13|COLLECT COD|RAIL|quests. ironic dolphins around the ev| +44587|637183|37184|6|40|44806.00|0.02|0.06|N|O|1996-05-24|1996-04-03|1996-06-20|DELIVER IN PERSON|MAIL|to beans-- fluffily unusual deposits sleep| +44587|133510|8515|7|1|1543.51|0.08|0.05|N|O|1996-02-29|1996-04-18|1996-03-07|NONE|SHIP|y furiousl| +44588|899411|49412|1|27|38079.99|0.10|0.05|A|F|1994-01-22|1994-02-20|1994-02-16|NONE|AIR|ithely. special requests are slyly re| +44588|390742|28264|2|20|36654.60|0.04|0.02|A|F|1994-02-21|1994-02-15|1994-02-27|TAKE BACK RETURN|AIR| fluffily pending instruction| +44588|200073|12578|3|5|4865.30|0.04|0.08|R|F|1994-05-14|1994-04-09|1994-05-15|NONE|FOB|gainst the ironic ideas: regular, s| +44588|617491|17492|4|35|49296.10|0.02|0.06|R|F|1994-05-08|1994-04-02|1994-05-16|TAKE BACK RETURN|TRUCK|along the even pinto bean| +44588|160322|22826|5|39|53910.48|0.01|0.07|R|F|1994-03-19|1994-02-18|1994-03-28|DELIVER IN PERSON|MAIL|packages bo| +44588|528495|3516|6|1|1523.47|0.04|0.07|A|F|1994-02-01|1994-03-18|1994-02-10|DELIVER IN PERSON|AIR|ould have to us| +44588|407013|7014|7|17|15639.83|0.09|0.06|A|F|1994-03-07|1994-03-18|1994-04-02|DELIVER IN PERSON|AIR|e deposits. special a| +44589|656647|6648|1|44|70558.84|0.01|0.03|N|O|1995-09-16|1995-10-24|1995-09-27|DELIVER IN PERSON|TRUCK|al requests. sile| +44589|260320|35331|2|1|1280.31|0.10|0.04|N|O|1995-09-29|1995-11-15|1995-10-12|TAKE BACK RETURN|AIR|l packages. p| +44590|761322|36353|1|24|33198.96|0.10|0.07|R|F|1994-03-31|1994-01-02|1994-04-05|COLLECT COD|AIR|ogs against the| +44590|529752|42263|2|36|64142.28|0.05|0.00|R|F|1994-01-16|1994-01-06|1994-02-05|COLLECT COD|REG AIR|ns nag car| +44591|135513|48016|1|20|30970.20|0.09|0.02|N|O|1998-05-22|1998-06-20|1998-06-06|DELIVER IN PERSON|RAIL|out the fina| +44591|552259|14771|2|2|2622.46|0.07|0.03|N|O|1998-06-10|1998-05-23|1998-07-08|DELIVER IN PERSON|FOB|ep furiously a| +44591|803651|41200|3|27|41974.47|0.02|0.02|N|O|1998-04-19|1998-06-20|1998-05-10|COLLECT COD|MAIL|nto beans haggl| +44591|948744|23781|4|26|46610.20|0.10|0.02|N|O|1998-05-09|1998-06-25|1998-05-30|COLLECT COD|TRUCK|ests. carefully even ideas wake fur| +44591|537903|12924|5|30|58226.40|0.07|0.07|N|O|1998-04-14|1998-05-31|1998-04-29|NONE|MAIL| theodolites. regular re| +44616|10657|23158|1|31|48597.15|0.01|0.02|N|O|1997-06-21|1997-05-25|1997-07-09|COLLECT COD|REG AIR|eposits affix sometimes abou| +44616|97515|35019|2|11|16637.61|0.01|0.06|N|O|1997-04-17|1997-05-27|1997-04-27|DELIVER IN PERSON|AIR|lyly express, even somas. blithely | +44616|933965|33966|3|17|33981.64|0.10|0.08|N|O|1997-08-01|1997-06-22|1997-08-17|NONE|FOB|, silent frays; Tiresias shall haggle fu| +44616|141551|4054|4|30|47776.50|0.02|0.06|N|O|1997-07-17|1997-06-11|1997-07-27|DELIVER IN PERSON|MAIL|odolites sleep slyly. bold idea| +44616|31968|31969|5|3|5699.88|0.03|0.02|N|O|1997-08-07|1997-05-20|1997-09-05|TAKE BACK RETURN|RAIL|ffily across the blithely u| +44616|275226|25227|6|44|52853.24|0.06|0.06|N|O|1997-07-25|1997-06-13|1997-08-09|COLLECT COD|REG AIR| furiously accor| +44617|270073|7589|1|13|13559.78|0.01|0.01|R|F|1992-11-25|1992-11-12|1992-12-07|DELIVER IN PERSON|MAIL|he carefully special a| +44618|233499|33500|1|43|61596.64|0.01|0.00|N|O|1997-04-04|1997-05-20|1997-04-05|NONE|SHIP|ress packages print eve| +44618|411346|11347|2|21|26403.72|0.02|0.05|N|O|1997-06-03|1997-04-14|1997-06-28|COLLECT COD|SHIP|ular dependencies alongside of| +44618|477155|27156|3|41|46417.33|0.04|0.01|N|O|1997-05-04|1997-06-06|1997-05-25|TAKE BACK RETURN|AIR|ructions. fluff| +44618|530862|30863|4|12|22714.08|0.06|0.03|N|O|1997-05-20|1997-05-13|1997-05-28|TAKE BACK RETURN|MAIL|ructions. blithely bol| +44618|192416|42417|5|23|34693.43|0.02|0.02|N|O|1997-06-13|1997-04-29|1997-06-20|NONE|TRUCK|fully bold braids? quiet requ| +44618|923437|10992|6|14|20445.46|0.02|0.00|N|O|1997-03-18|1997-04-18|1997-04-12|DELIVER IN PERSON|TRUCK|rding to the ironic packag| +44618|204935|17440|7|17|31278.64|0.09|0.03|N|O|1997-04-01|1997-05-17|1997-04-12|NONE|MAIL|despite the blithely even accounts. qu| +44619|338999|14012|1|46|93747.08|0.06|0.00|N|O|1995-10-14|1995-08-15|1995-10-19|DELIVER IN PERSON|MAIL|ix slyly unusual, fin| +44620|22836|47837|1|44|77388.52|0.05|0.03|A|F|1995-04-03|1995-05-12|1995-04-23|NONE|REG AIR|encies! ideas wake permanently. | +44620|794270|19301|2|46|62755.04|0.07|0.07|R|F|1995-02-27|1995-05-08|1995-03-25|NONE|TRUCK|ironic pinto beans. requests wake s| +44620|293016|5522|3|40|40360.00|0.03|0.07|N|F|1995-06-17|1995-05-09|1995-06-25|TAKE BACK RETURN|AIR|lar accounts. special,| +44620|709047|21562|4|11|11616.11|0.01|0.06|R|F|1995-04-10|1995-04-29|1995-05-07|NONE|RAIL|the final, brave theodolites. fluffily even| +44620|945843|8362|5|23|43442.40|0.07|0.05|N|F|1995-06-07|1995-04-18|1995-07-02|TAKE BACK RETURN|REG AIR|lithely special platelets. fin| +44620|776233|13779|6|37|48440.40|0.01|0.01|R|F|1995-06-13|1995-05-07|1995-06-15|COLLECT COD|MAIL|s against the excus| +44620|144261|44262|7|21|27410.46|0.10|0.00|R|F|1995-03-28|1995-04-15|1995-04-23|COLLECT COD|SHIP|ul foxes. blithely ironi| +44621|587142|24676|1|39|47935.68|0.00|0.04|N|O|1997-02-21|1997-03-07|1997-03-21|TAKE BACK RETURN|TRUCK| pending ideas | +44622|245034|45035|1|28|27412.56|0.09|0.01|N|O|1996-07-15|1996-07-01|1996-07-25|TAKE BACK RETURN|FOB|tes use thinly. quick, regular| +44622|270911|8427|2|9|16937.10|0.05|0.00|N|O|1996-06-16|1996-07-04|1996-06-27|COLLECT COD|SHIP|ys nag fluffily. unusual waters ac| +44622|197888|47889|3|43|85392.84|0.04|0.00|N|O|1996-07-04|1996-07-08|1996-07-23|COLLECT COD|FOB|ly pending ideas. fluffy| +44623|881907|44425|1|36|67998.96|0.06|0.06|N|O|1998-05-15|1998-04-07|1998-05-31|NONE|SHIP|lithely thin deposits could wa| +44623|200089|12594|2|28|27693.96|0.08|0.00|N|O|1998-05-04|1998-05-18|1998-05-19|NONE|SHIP|s sleep across the final, fi| +44623|888166|38167|3|18|20774.16|0.09|0.07|N|O|1998-03-08|1998-04-06|1998-03-24|DELIVER IN PERSON|SHIP|d the excuses use blithely| +44623|394725|32247|4|47|85526.37|0.01|0.03|N|O|1998-05-07|1998-04-14|1998-05-10|COLLECT COD|AIR|lyly thin foxes. silent theodolites aft| +44623|138563|26070|5|26|41640.56|0.09|0.04|N|O|1998-06-20|1998-06-05|1998-07-20|TAKE BACK RETURN|RAIL|ke. final | +44623|821825|46858|6|25|43669.50|0.02|0.08|N|O|1998-04-27|1998-04-19|1998-05-26|NONE|RAIL|ly regular ac| +44648|963779|38818|1|49|90293.77|0.07|0.07|N|O|1995-10-28|1995-10-18|1995-11-05|TAKE BACK RETURN|REG AIR|nding pinto b| +44648|220867|8380|2|40|71514.00|0.02|0.01|N|O|1995-12-20|1995-09-30|1995-12-26|DELIVER IN PERSON|MAIL|the carefully even request| +44648|96638|9140|3|29|47404.27|0.02|0.01|N|O|1995-10-10|1995-10-29|1995-10-16|DELIVER IN PERSON|RAIL|lithely regular requests boos| +44648|181259|6266|4|46|61651.50|0.02|0.07|N|O|1995-09-01|1995-10-26|1995-09-30|COLLECT COD|FOB|y around the unusual foxes. final, express | +44648|410901|23410|5|30|54356.40|0.07|0.07|N|O|1995-09-28|1995-10-16|1995-10-18|DELIVER IN PERSON|RAIL|g requests according to | +44649|466247|28757|1|36|43675.92|0.04|0.01|N|O|1995-09-11|1995-09-11|1995-09-16|NONE|SHIP|encies. final accounts use furiously| +44649|203844|16349|2|24|41947.92|0.09|0.06|N|O|1995-07-20|1995-10-01|1995-07-26|TAKE BACK RETURN|SHIP|the foxes cajole pinto beans. packages | +44649|1596|26597|3|31|46425.29|0.05|0.02|N|O|1995-08-30|1995-09-20|1995-09-08|DELIVER IN PERSON|MAIL|gular theodolite| +44649|820483|20484|4|16|22455.04|0.00|0.00|N|O|1995-09-04|1995-09-24|1995-09-29|COLLECT COD|FOB|pecial pinto beans among the ironic req| +44650|291043|16054|1|29|29986.87|0.03|0.07|A|F|1993-01-27|1993-02-26|1993-02-10|TAKE BACK RETURN|MAIL|dencies wake blithely pending platelets. | +44650|556077|6078|2|31|35124.55|0.04|0.01|A|F|1993-02-15|1993-02-09|1993-02-16|NONE|TRUCK|the bold, express pinto bean| +44650|983001|45521|3|27|29266.92|0.00|0.00|A|F|1993-01-26|1993-02-12|1993-02-07|TAKE BACK RETURN|AIR| after the f| +44650|295096|45097|4|45|49098.60|0.07|0.08|A|F|1993-03-08|1993-02-06|1993-03-14|COLLECT COD|TRUCK|egular pinto beans. furiously express plat| +44651|703262|40805|1|41|51874.43|0.05|0.01|A|F|1994-12-01|1994-10-20|1994-12-31|COLLECT COD|AIR|integrate over the furious| +44651|721276|21277|2|41|53186.84|0.07|0.08|A|F|1994-10-19|1994-12-06|1994-11-18|NONE|REG AIR|unusual deposits. | +44651|479307|41817|3|14|18007.92|0.01|0.05|A|F|1994-10-08|1994-12-07|1994-10-25|TAKE BACK RETURN|FOB| carefully regular warthogs. blithely regul| +44651|708677|33706|4|5|8428.20|0.07|0.00|R|F|1994-10-28|1994-12-02|1994-10-31|DELIVER IN PERSON|TRUCK|instructions cajole qui| +44651|721148|33663|5|50|58455.50|0.00|0.03|R|F|1994-11-14|1994-10-22|1994-11-19|TAKE BACK RETURN|TRUCK|rts. regular deposits wak| +44651|327971|2984|6|48|95950.08|0.07|0.08|A|F|1994-10-29|1994-12-06|1994-11-07|DELIVER IN PERSON|SHIP|totes along the | +44652|663367|25881|1|18|23945.94|0.08|0.08|N|O|1998-07-04|1998-07-14|1998-07-06|DELIVER IN PERSON|SHIP|counts alon| +44652|203758|16263|2|29|48190.46|0.02|0.04|N|O|1998-06-25|1998-06-21|1998-06-29|DELIVER IN PERSON|SHIP|eposits near the stealthily bold pac| +44652|550337|37871|3|31|43006.61|0.04|0.05|N|O|1998-06-08|1998-06-22|1998-07-02|NONE|MAIL|unusual requests are slyly quic| +44653|251204|38720|1|50|57759.50|0.06|0.00|N|O|1997-02-11|1996-11-29|1997-03-13|DELIVER IN PERSON|TRUCK|e quickly regular m| +44653|978803|28804|2|30|56452.80|0.06|0.07|N|O|1997-01-12|1997-01-05|1997-01-31|COLLECT COD|SHIP|ely pending| +44653|740823|40824|3|7|13046.53|0.09|0.06|N|O|1996-12-19|1996-12-15|1996-12-30|TAKE BACK RETURN|REG AIR|riously fin| +44654|137202|24709|1|4|4956.80|0.03|0.00|N|O|1996-11-21|1997-01-15|1996-12-11|COLLECT COD|REG AIR|egrate carefully alo| +44655|973580|23581|1|21|34724.34|0.05|0.01|A|F|1993-09-16|1993-08-17|1993-09-21|COLLECT COD|AIR| ironic packages us| +44655|944542|32097|2|8|12692.00|0.05|0.07|R|F|1993-10-02|1993-08-09|1993-10-27|DELIVER IN PERSON|FOB| across the furiously ironic ho| +44655|912739|25258|3|37|64812.53|0.04|0.00|R|F|1993-07-20|1993-08-06|1993-07-28|NONE|SHIP| asymptotes. never final | +44655|388514|38515|4|41|65702.50|0.06|0.04|R|F|1993-08-14|1993-08-19|1993-09-09|NONE|SHIP|ag fluffily. carefull| +44655|738429|38430|5|32|46956.48|0.08|0.04|A|F|1993-08-18|1993-08-13|1993-09-08|TAKE BACK RETURN|AIR|st the boldly pend| +44655|761529|11530|6|35|55667.15|0.03|0.08|A|F|1993-08-07|1993-07-30|1993-08-12|COLLECT COD|RAIL|lar accounts affix acc| +44655|14341|1842|7|27|33894.18|0.04|0.00|R|F|1993-08-27|1993-07-30|1993-09-08|TAKE BACK RETURN|RAIL|nal accounts. flu| +44680|17581|17582|1|29|43458.82|0.07|0.08|N|O|1997-10-17|1997-09-26|1997-11-10|DELIVER IN PERSON|AIR|e blithely; pending instructions a| +44680|477786|40296|2|23|40566.48|0.01|0.03|N|O|1997-10-24|1997-09-18|1997-11-01|TAKE BACK RETURN|RAIL|ven accounts are fluffily silent d| +44680|148083|48084|3|41|46374.28|0.05|0.00|N|O|1997-10-15|1997-10-28|1997-11-05|TAKE BACK RETURN|RAIL|kages mold fluf| +44681|697496|22523|1|33|49284.18|0.01|0.08|A|F|1995-02-24|1994-12-07|1995-03-14|DELIVER IN PERSON|REG AIR|ess foxes. carefully final accounts d| +44681|809654|34687|2|22|34399.42|0.00|0.05|R|F|1995-01-09|1995-01-09|1995-01-15|DELIVER IN PERSON|AIR|ly silent packages| +44681|852378|2379|3|31|41240.23|0.00|0.07|R|F|1994-11-22|1994-12-12|1994-11-28|NONE|AIR|es. final, bold somas b| +44681|907506|7507|4|4|6053.84|0.04|0.00|A|F|1994-12-01|1994-11-29|1994-12-03|COLLECT COD|TRUCK|out the requests. blithely ironic | +44681|439329|39330|5|23|29170.90|0.08|0.00|A|F|1995-02-05|1995-01-12|1995-02-10|COLLECT COD|REG AIR|refully according to the furious Tir| +44681|793432|30978|6|18|27457.20|0.03|0.04|A|F|1995-02-24|1994-12-30|1995-03-25|COLLECT COD|MAIL|uickly special excuses need to haggle accou| +44682|58945|46449|1|28|53310.32|0.05|0.02|N|O|1996-04-03|1996-02-21|1996-04-23|DELIVER IN PERSON|REG AIR| final dependencies. sly| +44682|679869|17409|2|22|40674.26|0.05|0.05|N|O|1996-04-03|1996-03-18|1996-04-27|COLLECT COD|RAIL|p. slyly unusual deposits are doggedly.| +44682|549302|49303|3|29|39187.12|0.05|0.02|N|O|1996-02-07|1996-02-14|1996-03-05|NONE|SHIP|uctions eat slyly quick| +44683|5315|42816|1|6|7321.86|0.01|0.04|N|O|1998-07-06|1998-08-14|1998-07-18|DELIVER IN PERSON|FOB|urts. quickly even acc| +44683|323229|35736|2|34|42575.14|0.03|0.04|N|O|1998-08-25|1998-08-04|1998-09-23|COLLECT COD|TRUCK|carefully unusual foxes | +44683|508311|8312|3|23|30343.67|0.10|0.01|N|O|1998-07-08|1998-07-23|1998-07-14|COLLECT COD|MAIL|e quickly special ideas cajole fu| +44684|473853|23854|1|13|23748.79|0.00|0.00|N|O|1998-05-13|1998-04-27|1998-05-30|TAKE BACK RETURN|SHIP|tect fluffily after the re| +44684|46467|33968|2|20|28269.20|0.05|0.02|N|O|1998-06-09|1998-05-07|1998-06-17|NONE|TRUCK|furiously. care| +44684|961011|23531|3|35|37518.95|0.04|0.02|N|O|1998-05-01|1998-04-26|1998-05-20|TAKE BACK RETURN|AIR| packages are al| +44685|369527|32035|1|26|41509.26|0.06|0.07|N|O|1998-01-16|1998-02-10|1998-02-06|NONE|REG AIR|blithely b| +44685|628467|28468|2|35|48840.05|0.03|0.08|N|O|1998-02-08|1998-02-09|1998-02-24|TAKE BACK RETURN|AIR|ng to the fluffily special packages use| +44685|632956|45469|3|34|64223.28|0.08|0.05|N|O|1997-12-01|1998-02-18|1997-12-29|NONE|REG AIR|ing to the ironic fo| +44685|89205|14208|4|24|28660.80|0.00|0.05|N|O|1998-03-28|1998-01-26|1998-04-13|TAKE BACK RETURN|REG AIR| sleep. final, bold asymptotes are bl| +44686|184917|9924|1|32|64061.12|0.09|0.06|A|F|1994-12-06|1994-12-19|1995-01-03|NONE|TRUCK|al warthogs-- even, u| +44686|884715|34716|2|2|3399.34|0.01|0.03|A|F|1995-02-15|1994-12-22|1995-03-14|TAKE BACK RETURN|RAIL|silent pinto beans| +44686|390309|40310|3|20|27985.80|0.10|0.00|R|F|1995-01-21|1994-12-25|1995-02-11|DELIVER IN PERSON|REG AIR| excuses are furiously about the fluf| +44686|923217|35736|4|13|16122.21|0.10|0.06|R|F|1995-01-22|1994-12-15|1995-02-15|DELIVER IN PERSON|TRUCK|nstructions. sly| +44687|355641|5642|1|21|35629.23|0.07|0.02|A|F|1995-04-08|1995-02-15|1995-04-22|DELIVER IN PERSON|REG AIR|eposits thras| +44687|251669|39185|2|32|51860.80|0.08|0.07|R|F|1995-01-23|1995-03-01|1995-01-31|NONE|TRUCK| haggle qui| +44687|787743|12774|3|19|34783.49|0.09|0.07|A|F|1995-03-09|1995-03-11|1995-03-11|DELIVER IN PERSON|FOB| accounts haggle platelets. car| +44687|594312|19335|4|5|7031.45|0.00|0.06|R|F|1995-01-27|1995-01-31|1995-02-21|DELIVER IN PERSON|RAIL|gular packages use slyly! furiously regu| +44687|593111|18134|5|30|36122.70|0.01|0.03|A|F|1995-04-05|1995-01-24|1995-04-11|TAKE BACK RETURN|FOB|icing theodolites. packages s| +44687|411425|36442|6|14|18709.60|0.04|0.00|A|F|1994-12-29|1995-02-19|1995-01-10|NONE|SHIP|tegrate quickly foxes. furiously regula| +44687|810972|36005|7|13|24478.09|0.06|0.00|A|F|1995-01-28|1995-03-10|1995-02-19|TAKE BACK RETURN|MAIL|y. quickly regula| +44712|989944|39945|1|41|83389.90|0.01|0.02|A|F|1993-10-26|1993-09-02|1993-10-29|DELIVER IN PERSON|TRUCK|ously regular decoys wake ca| +44712|985056|35057|2|32|36512.32|0.03|0.03|A|F|1993-10-09|1993-09-07|1993-10-23|NONE|MAIL|even accounts cajole carefully amon| +44712|830821|5854|3|31|54305.18|0.05|0.07|R|F|1993-09-24|1993-10-07|1993-10-18|COLLECT COD|AIR|le instead of the express ideas. ca| +44713|462194|49722|1|33|38153.61|0.06|0.07|N|F|1995-06-08|1995-08-16|1995-06-20|NONE|SHIP| excuses nag quickly after the special| +44714|394196|19211|1|16|20642.88|0.09|0.05|A|F|1992-05-07|1992-07-10|1992-05-27|DELIVER IN PERSON|RAIL|regular, i| +44714|250774|25785|2|18|31045.68|0.00|0.03|A|F|1992-05-31|1992-07-19|1992-06-21|DELIVER IN PERSON|RAIL|ecial forge| +44715|327149|39656|1|44|51749.72|0.05|0.07|R|F|1992-12-12|1993-02-05|1992-12-25|DELIVER IN PERSON|AIR| accounts haggle among the regular pinto be| +44715|382266|32267|2|21|28313.25|0.02|0.08|A|F|1993-02-21|1993-01-02|1993-03-08|NONE|AIR|pecial, sly p| +44715|735938|10967|3|16|31582.40|0.05|0.00|A|F|1993-02-08|1992-12-27|1993-02-22|NONE|FOB|nt slyly slyly final foxes.| +44715|895369|45370|4|20|27286.40|0.04|0.03|A|F|1993-03-16|1992-12-19|1993-04-07|COLLECT COD|SHIP|ent, even braids affix car| +44715|453506|28525|5|24|35027.52|0.00|0.03|R|F|1993-02-22|1993-01-17|1993-03-22|COLLECT COD|AIR| platelets cajole unusual dolphi| +44715|63980|38983|6|43|83591.14|0.07|0.03|R|F|1993-02-01|1992-12-25|1993-02-24|COLLECT COD|REG AIR|xcuses. blithely regular requests dete| +44716|5753|30754|1|25|41468.75|0.05|0.00|A|F|1994-11-05|1994-12-04|1994-11-30|NONE|SHIP|bout the furiously unusual depo| +44716|689173|26713|2|16|18594.24|0.02|0.01|R|F|1994-10-04|1994-12-02|1994-10-29|TAKE BACK RETURN|FOB| packages are blithely along the expres| +44716|928377|40896|3|5|7026.65|0.06|0.03|A|F|1994-10-28|1994-12-16|1994-11-05|DELIVER IN PERSON|SHIP| slyly regular instruc| +44717|455296|5297|1|44|55055.88|0.10|0.02|N|O|1995-07-28|1995-08-03|1995-08-02|COLLECT COD|AIR|e furiously regular requests.| +44717|152042|39552|2|9|9846.36|0.02|0.04|N|O|1995-07-14|1995-07-25|1995-08-05|NONE|FOB|ions. slyly f| +44717|359292|46814|3|4|5405.12|0.01|0.05|N|O|1995-08-20|1995-08-30|1995-08-27|TAKE BACK RETURN|TRUCK|s nag furiously quickly express t| +44718|602792|27817|1|45|76264.20|0.01|0.01|R|F|1995-05-23|1995-06-04|1995-06-07|NONE|FOB|usly regular requests cajole| +44718|115522|15523|2|41|63038.32|0.05|0.01|N|O|1995-08-13|1995-07-01|1995-08-25|COLLECT COD|FOB|cajole. care| +44718|563918|1452|3|15|29728.35|0.08|0.03|R|F|1995-05-17|1995-07-26|1995-06-03|NONE|REG AIR|re blithely blithely sly r| +44718|755017|30048|4|45|48239.10|0.08|0.01|N|O|1995-07-05|1995-06-16|1995-07-16|COLLECT COD|TRUCK|tions affix final platelets. bl| +44718|563342|38365|5|19|26701.08|0.00|0.05|N|O|1995-08-26|1995-06-12|1995-09-15|NONE|REG AIR|stealthily ruthless foxes. slyly s| +44718|72640|22641|6|6|9675.84|0.09|0.00|N|O|1995-07-05|1995-07-29|1995-07-26|DELIVER IN PERSON|FOB|g braids sleep.| +44718|851816|39368|7|50|88388.50|0.04|0.06|N|F|1995-06-14|1995-07-24|1995-07-12|TAKE BACK RETURN|REG AIR|y even asymptotes use fur| +44719|459497|34516|1|36|52432.92|0.09|0.00|A|F|1994-09-03|1994-10-26|1994-09-08|COLLECT COD|REG AIR| escapades nag blithely theodolites.| +44719|758407|45953|2|26|38099.62|0.02|0.03|R|F|1994-11-11|1994-10-31|1994-11-25|COLLECT COD|AIR|ccounts impress furiously f| +44719|537267|24798|3|24|31301.76|0.00|0.01|R|F|1994-09-15|1994-10-28|1994-10-12|NONE|AIR| slyly. carefully express ac| +44744|265388|27894|1|23|31127.51|0.02|0.08|R|F|1992-11-30|1992-12-06|1992-12-09|NONE|SHIP|ms. final requests cajole furiously accordi| +44744|366356|3878|2|35|49781.90|0.03|0.01|A|F|1993-01-01|1992-12-24|1993-01-02|COLLECT COD|MAIL|e the slyly | +44744|339517|39518|3|39|60703.50|0.08|0.00|A|F|1992-11-05|1992-12-03|1992-11-09|TAKE BACK RETURN|SHIP|es are quickly blithely pending instruc| +44745|177259|39763|1|2|2672.50|0.02|0.01|N|O|1996-09-14|1996-08-24|1996-09-29|DELIVER IN PERSON|TRUCK|es believe accou| +44745|191663|29173|2|28|49130.48|0.07|0.03|N|O|1996-08-22|1996-09-11|1996-09-18|TAKE BACK RETURN|TRUCK|braids. fl| +44745|271759|9275|3|48|83075.52|0.10|0.01|N|O|1996-07-14|1996-09-11|1996-07-16|NONE|AIR| bold requests. carefully express the| +44745|451201|1202|4|30|34565.40|0.10|0.01|N|O|1996-07-01|1996-09-02|1996-07-09|DELIVER IN PERSON|TRUCK|gular, express requests grow fluffily reg| +44745|333431|45938|5|47|68827.74|0.00|0.08|N|O|1996-08-16|1996-09-07|1996-08-19|COLLECT COD|MAIL|its print furiously special dolphins. p| +44745|963650|1208|6|24|41126.64|0.01|0.00|N|O|1996-08-24|1996-09-12|1996-08-27|TAKE BACK RETURN|TRUCK|h the regu| +44746|315070|40083|1|40|43402.40|0.10|0.04|R|F|1994-12-16|1995-01-10|1995-01-14|COLLECT COD|REG AIR|xes wake blithely | +44746|381415|31416|2|42|62848.80|0.01|0.06|R|F|1995-02-01|1995-01-05|1995-02-23|NONE|TRUCK|deas. regular, final re| +44746|431737|6754|3|34|56736.14|0.02|0.03|A|F|1995-01-18|1994-12-09|1995-01-28|TAKE BACK RETURN|FOB|as. slyly unusual ideas| +44746|200744|13249|4|36|59210.28|0.02|0.04|A|F|1995-01-04|1994-12-09|1995-01-24|TAKE BACK RETURN|TRUCK|quests cajole across| +44746|895367|45368|5|15|20434.80|0.05|0.06|R|F|1995-01-03|1994-12-29|1995-01-16|COLLECT COD|SHIP|sly silent requests are fluffil| +44747|833616|8649|1|21|32540.97|0.02|0.04|N|O|1997-12-02|1997-11-04|1997-12-12|TAKE BACK RETURN|FOB|usily regular packag| +44747|573430|48453|2|18|27061.38|0.02|0.03|N|O|1997-12-28|1997-10-30|1998-01-11|COLLECT COD|TRUCK|y unusual packages. pending p| +44747|637410|37411|3|19|25600.22|0.10|0.03|N|O|1997-09-24|1997-11-15|1997-10-06|DELIVER IN PERSON|TRUCK|ng dependencies haggle carefully alon| +44747|945226|7745|4|33|41948.94|0.02|0.05|N|O|1997-10-03|1997-11-11|1997-10-27|NONE|FOB|final accounts. ironic| +44747|406059|31076|5|12|11580.36|0.08|0.08|N|O|1997-12-09|1997-11-15|1997-12-10|DELIVER IN PERSON|TRUCK|special pac| +44747|628838|28839|6|21|37102.80|0.04|0.04|N|O|1997-09-23|1997-11-05|1997-10-01|TAKE BACK RETURN|AIR|lly alongside of t| +44747|867074|4626|7|1|1041.03|0.07|0.05|N|O|1997-12-22|1997-10-11|1998-01-07|DELIVER IN PERSON|SHIP|unusual patterns are along the care| +44748|908964|8965|1|7|13810.44|0.09|0.08|A|F|1992-10-10|1992-11-08|1992-10-16|COLLECT COD|REG AIR|lets wake above the silen| +44748|947636|47637|2|18|30304.62|0.10|0.06|A|F|1992-09-21|1992-11-18|1992-10-01|DELIVER IN PERSON|MAIL|equests-- ca| +44748|903153|15672|3|20|23122.20|0.10|0.04|A|F|1992-12-13|1992-11-08|1992-12-28|DELIVER IN PERSON|FOB|egular real| +44749|513175|13176|1|22|26139.30|0.03|0.05|N|O|1998-01-08|1998-03-13|1998-02-04|DELIVER IN PERSON|AIR|et pinto bean| +44750|872414|34932|1|49|67932.13|0.00|0.07|N|O|1997-05-06|1997-03-07|1997-06-04|TAKE BACK RETURN|MAIL|ckages hang pack| +44750|648446|23471|2|16|22310.56|0.06|0.05|N|O|1997-04-08|1997-03-26|1997-04-16|DELIVER IN PERSON|AIR| always even pinto beans cajole | +44750|424746|12271|3|27|45109.44|0.06|0.03|N|O|1997-05-22|1997-03-25|1997-06-18|NONE|MAIL| believe permanently. final, regular pinto | +44750|697827|10341|4|22|40145.38|0.00|0.00|N|O|1997-01-30|1997-04-20|1997-02-21|DELIVER IN PERSON|TRUCK|ar excuses about the blith| +44751|705936|43479|1|29|56315.10|0.10|0.00|N|O|1995-10-14|1995-08-28|1995-10-17|TAKE BACK RETURN|MAIL|y accounts cajole| +44776|935320|35321|1|11|14908.08|0.05|0.07|R|F|1992-08-28|1992-09-24|1992-09-23|TAKE BACK RETURN|RAIL|sits haggle furiously a| +44777|289123|26639|1|34|37811.74|0.03|0.02|R|F|1994-10-18|1994-10-17|1994-10-25|NONE|AIR|en warthogs! regu| +44777|284130|9141|2|25|27853.00|0.07|0.05|R|F|1994-11-16|1994-10-05|1994-12-07|NONE|TRUCK|lar, express foxes bo| +44777|360509|48031|3|14|21972.86|0.05|0.05|R|F|1994-10-11|1994-10-20|1994-10-19|COLLECT COD|SHIP|he fluffily unusual packages| +44777|60683|23185|4|1|1643.68|0.05|0.07|R|F|1994-10-21|1994-10-13|1994-11-01|COLLECT COD|AIR|ng to the fluffily iro| +44778|745793|45794|1|8|14710.08|0.09|0.07|N|O|1996-08-21|1996-06-27|1996-08-23|TAKE BACK RETURN|TRUCK|al packages against the | +44778|528781|3802|2|11|19907.36|0.10|0.02|N|O|1996-06-17|1996-07-09|1996-06-24|COLLECT COD|FOB|. furiously unusual requests about th| +44778|222100|9613|3|41|41905.69|0.00|0.05|N|O|1996-07-30|1996-07-24|1996-08-02|COLLECT COD|AIR| excuses unwind. silent dolphins eat qu| +44778|833887|33888|4|15|27312.60|0.01|0.07|N|O|1996-09-03|1996-07-26|1996-09-10|TAKE BACK RETURN|RAIL|ackages sleep blithely after the | +44778|123142|23143|5|35|40779.90|0.09|0.05|N|O|1996-07-11|1996-07-10|1996-07-31|NONE|SHIP| sleep slyly. blithely final| +44779|945900|33455|1|15|29187.90|0.00|0.06|R|F|1995-01-24|1995-03-10|1995-02-22|COLLECT COD|FOB|ans will are slyly even| +44779|739730|27273|2|28|49551.60|0.05|0.04|R|F|1994-12-31|1995-01-13|1995-01-12|NONE|AIR|y unusual | +44779|629822|4847|3|13|22773.27|0.04|0.05|A|F|1994-12-27|1995-01-11|1995-01-11|TAKE BACK RETURN|AIR|ckages wake careful| +44780|427873|27874|1|38|68432.30|0.07|0.00|N|O|1995-06-21|1995-07-19|1995-06-24|NONE|MAIL|pades. slyly bold platelets | +44780|253885|41401|2|41|75393.67|0.04|0.00|N|O|1995-06-29|1995-07-27|1995-07-12|NONE|MAIL|xes poach enticingly. even reques| +44780|32746|20247|3|32|53719.68|0.08|0.05|N|O|1995-07-06|1995-07-05|1995-07-09|COLLECT COD|MAIL|he fluffily ironic pinto beans. bu| +44780|352760|40282|4|9|16314.75|0.10|0.01|N|O|1995-07-29|1995-07-20|1995-08-02|COLLECT COD|MAIL|r the expres| +44780|828169|15718|5|1|1097.12|0.07|0.04|N|O|1995-09-29|1995-07-09|1995-10-20|DELIVER IN PERSON|MAIL|y pending requests are e| +44780|28037|28038|6|13|12545.39|0.01|0.02|N|O|1995-06-23|1995-07-12|1995-07-14|DELIVER IN PERSON|RAIL|ffily even deposits wake carefully sly| +44781|489271|14290|1|11|13862.75|0.00|0.04|R|F|1993-11-16|1993-11-08|1993-12-09|COLLECT COD|MAIL|onic platelets integrate doggedly. blithely| +44781|173695|36199|2|15|26530.35|0.09|0.01|R|F|1994-01-10|1993-12-01|1994-02-08|COLLECT COD|MAIL|ges-- final ideas c| +44781|278302|40808|3|48|61453.92|0.00|0.00|A|F|1993-11-29|1993-10-22|1993-12-06|TAKE BACK RETURN|SHIP|t carefully carefully even platelets| +44781|411431|36448|4|9|12081.69|0.07|0.07|R|F|1993-12-09|1993-11-09|1993-12-26|NONE|TRUCK|ead of the regular ideas! quickl| +44782|419393|31902|1|9|11811.33|0.06|0.00|R|F|1992-05-26|1992-06-16|1992-06-14|NONE|AIR|xpress asymptotes. furiously regular accoun| +44782|723671|11214|2|12|20335.68|0.03|0.06|A|F|1992-05-13|1992-06-03|1992-05-26|DELIVER IN PERSON|SHIP|. carefully final acco| +44782|737079|37080|3|49|54685.96|0.08|0.01|A|F|1992-07-04|1992-05-30|1992-07-10|NONE|TRUCK| quickly unusual sauternes unwind quickly | +44782|70208|7712|4|31|36524.20|0.08|0.03|R|F|1992-04-24|1992-06-01|1992-05-15|TAKE BACK RETURN|MAIL|s sleep slyly. ste| +44782|980590|18148|5|41|68492.55|0.06|0.00|R|F|1992-06-06|1992-07-19|1992-06-13|NONE|FOB|slyly unusual courts cajol| +44783|720430|20431|1|1|1450.40|0.06|0.05|R|F|1992-12-15|1993-01-06|1992-12-25|DELIVER IN PERSON|FOB|le furiously. furiously ironic pa| +44783|264453|14454|2|39|55280.16|0.06|0.01|A|F|1992-11-21|1993-01-01|1992-11-27|NONE|MAIL|slyly after the even, silent realms. Tire| +44783|649441|36978|3|19|26417.79|0.07|0.01|R|F|1993-03-01|1993-01-15|1993-03-21|DELIVER IN PERSON|SHIP|attainments. special deposits wake | +44808|149354|24359|1|30|42100.50|0.08|0.01|A|F|1995-05-25|1995-07-17|1995-05-31|DELIVER IN PERSON|SHIP|ronic, regular platelets against | +44809|449611|24628|1|24|37454.16|0.10|0.04|A|F|1995-02-02|1994-11-28|1995-02-03|NONE|TRUCK|quests. blit| +44809|602709|27734|2|32|51573.44|0.07|0.01|R|F|1994-11-05|1994-12-01|1994-11-27|NONE|MAIL|hely. furiously regular pinto beans ar| +44809|725918|947|3|1|1943.88|0.08|0.08|A|F|1994-11-07|1994-12-01|1994-12-03|COLLECT COD|REG AIR|ideas haggle b| +44810|772446|22447|1|7|10628.87|0.09|0.02|N|O|1996-05-02|1996-05-21|1996-05-11|TAKE BACK RETURN|FOB|ake carefully blithely even platelets! ca| +44810|499710|49711|2|15|25645.35|0.06|0.08|N|O|1996-06-07|1996-05-22|1996-06-27|NONE|MAIL|oxes boost slyly even instructions. foxes | +44810|612468|5|3|30|41412.90|0.10|0.03|N|O|1996-08-04|1996-06-30|1996-08-18|TAKE BACK RETURN|AIR|ess packages. caref| +44810|743225|30768|4|50|63409.50|0.00|0.08|N|O|1996-05-28|1996-06-27|1996-06-20|NONE|REG AIR|ly around the d| +44810|376514|1529|5|17|27038.50|0.07|0.01|N|O|1996-06-12|1996-06-10|1996-07-08|TAKE BACK RETURN|MAIL| ideas. furiou| +44810|56540|44044|6|37|55371.98|0.04|0.04|N|O|1996-05-25|1996-06-11|1996-06-06|TAKE BACK RETURN|SHIP|ndencies. furiously even depo| +44811|973455|48494|1|38|58079.58|0.02|0.05|A|F|1992-12-15|1992-12-06|1992-12-28|DELIVER IN PERSON|RAIL|eposits. s| +44811|848875|48876|2|29|52891.07|0.02|0.05|A|F|1992-11-08|1992-11-27|1992-11-10|TAKE BACK RETURN|AIR| across the ironically bold requests wak| +44811|39207|1708|3|11|12608.20|0.06|0.06|R|F|1992-09-24|1992-11-18|1992-10-19|NONE|SHIP|ully bold | +44812|880697|30698|1|10|16776.50|0.04|0.08|R|F|1994-01-01|1993-12-02|1994-01-14|NONE|MAIL|ins across the special dependencies promi| +44812|872551|22552|2|14|21329.14|0.03|0.02|A|F|1993-12-25|1993-11-05|1994-01-03|COLLECT COD|SHIP|g epitaphs. bold, ironic asymptote| +44812|949493|49494|3|10|15424.50|0.10|0.00|A|F|1994-01-22|1993-12-02|1994-02-16|TAKE BACK RETURN|SHIP| courts. quickly bold foxe| +44812|112914|421|4|22|42392.02|0.03|0.08|A|F|1993-11-05|1993-11-06|1993-11-09|DELIVER IN PERSON|MAIL|the pending deposits. slyly ironic | +44813|323460|10979|1|45|66755.25|0.10|0.02|A|F|1994-06-14|1994-07-12|1994-07-02|NONE|TRUCK|s integrate after the blithely iron| +44813|387638|146|2|15|25884.30|0.04|0.03|A|F|1994-07-16|1994-06-21|1994-07-24|TAKE BACK RETURN|REG AIR|ding to the slyly regular packages. flu| +44813|31609|6610|3|43|66245.80|0.03|0.08|A|F|1994-06-09|1994-06-24|1994-06-13|NONE|FOB|unts wake sometimes. q| +44813|236931|24444|4|30|56037.60|0.04|0.04|A|F|1994-06-06|1994-07-09|1994-06-18|DELIVER IN PERSON|RAIL| patterns. spec| +44813|96007|8509|5|44|44132.00|0.09|0.04|R|F|1994-06-26|1994-06-13|1994-06-29|COLLECT COD|AIR|ess packages. carefu| +44813|584629|47141|6|31|53121.60|0.05|0.05|A|F|1994-08-06|1994-06-29|1994-08-11|TAKE BACK RETURN|SHIP|old instructions mold quickly final reque| +44814|839564|2081|1|12|18042.24|0.10|0.08|N|O|1998-08-08|1998-09-15|1998-08-22|DELIVER IN PERSON|TRUCK|the carefully bold tithes ha| +44814|550680|38214|2|24|41535.84|0.06|0.00|N|O|1998-08-04|1998-10-12|1998-08-14|DELIVER IN PERSON|MAIL|l, final instructions. regular packa| +44814|273644|48655|3|17|27499.71|0.06|0.07|N|O|1998-10-29|1998-09-14|1998-10-31|COLLECT COD|FOB|s. ironic accounts wa| +44814|129128|29129|4|5|5785.60|0.06|0.07|N|O|1998-09-18|1998-09-12|1998-09-22|DELIVER IN PERSON|FOB| theodolites nag. pinto be| +44815|124780|24781|1|14|25266.92|0.04|0.02|A|F|1993-11-03|1993-12-13|1993-11-21|NONE|TRUCK|its. silent foxes about the inst| +44815|175445|12955|2|4|6081.76|0.04|0.03|A|F|1993-11-26|1993-12-13|1993-12-19|TAKE BACK RETURN|RAIL|ironic deposits| +44815|702836|40379|3|42|77229.60|0.10|0.03|R|F|1994-01-22|1993-12-21|1994-02-07|DELIVER IN PERSON|TRUCK|the furiously pendin| +44815|561228|48762|4|10|12892.00|0.04|0.01|A|F|1994-01-05|1993-12-25|1994-01-09|DELIVER IN PERSON|FOB|counts boo| +44815|555371|17883|5|1|1426.35|0.06|0.02|A|F|1994-02-01|1993-12-06|1994-02-13|TAKE BACK RETURN|MAIL|fluffily silent grouches. final r| +44840|827618|2651|1|23|35548.11|0.06|0.03|N|O|1996-04-08|1996-03-16|1996-05-07|DELIVER IN PERSON|FOB|ld ideas after the unusua| +44840|767736|17737|2|31|55914.70|0.01|0.04|N|O|1996-02-20|1996-03-25|1996-02-28|COLLECT COD|SHIP|gside of the dogged theodolites | +44840|331688|6701|3|4|6878.68|0.07|0.05|N|O|1996-05-02|1996-04-04|1996-05-23|DELIVER IN PERSON|TRUCK|ss the regular frays. special reques| +44840|671154|33668|4|29|32628.48|0.05|0.05|N|O|1996-02-25|1996-02-23|1996-03-18|COLLECT COD|TRUCK|y. furiously ironic pa| +44840|81900|44402|5|28|52693.20|0.04|0.01|N|O|1996-04-16|1996-03-22|1996-05-13|COLLECT COD|FOB|quests cajole. even instructions a| +44840|493186|18205|6|35|41270.60|0.00|0.07|N|O|1996-01-27|1996-03-26|1996-02-15|TAKE BACK RETURN|RAIL|heodolites. acc| +44841|879387|4422|1|40|54653.60|0.10|0.03|A|F|1995-02-07|1994-11-23|1995-02-10|COLLECT COD|TRUCK|its. regular instructions would | +44841|852951|15469|2|37|70444.67|0.06|0.02|A|F|1994-12-30|1994-11-28|1995-01-22|COLLECT COD|FOB|al instruct| +44841|541023|41024|3|47|50008.00|0.02|0.08|R|F|1994-11-04|1994-12-07|1994-11-12|NONE|TRUCK|hily silent warthogs sleep furiousl| +44842|637116|24653|1|13|13690.04|0.01|0.04|N|O|1998-02-21|1997-12-16|1998-03-19|TAKE BACK RETURN|FOB|uickly carefully ironic re| +44842|2623|15124|2|33|50345.46|0.02|0.00|N|O|1998-02-05|1997-12-29|1998-02-21|DELIVER IN PERSON|RAIL|kages sleep | +44842|83638|46140|3|21|34054.23|0.08|0.01|N|O|1997-11-17|1998-01-10|1997-11-18|DELIVER IN PERSON|TRUCK|y against the ironic deposit| +44842|688501|38502|4|28|41705.16|0.08|0.03|N|O|1998-02-26|1997-12-07|1998-03-14|NONE|MAIL|ically express packages hag| +44843|722586|22587|1|36|57907.80|0.10|0.01|N|O|1995-12-08|1995-12-02|1995-12-13|NONE|SHIP|tructions.| +44843|492020|29548|2|13|13156.00|0.09|0.00|N|O|1996-02-16|1996-01-10|1996-03-08|DELIVER IN PERSON|FOB| accounts-| +44843|363893|26401|3|29|56749.52|0.08|0.06|N|O|1995-12-04|1995-12-21|1995-12-31|TAKE BACK RETURN|RAIL| carefully around the furiousl| +44843|940935|40936|4|44|86939.16|0.06|0.01|N|O|1995-12-23|1995-11-27|1995-12-28|COLLECT COD|MAIL|ial ideas. silent dependencies sleep slyl| +44844|490840|40841|1|19|34785.58|0.09|0.03|A|F|1994-01-28|1994-03-09|1994-02-20|TAKE BACK RETURN|REG AIR| requests. | +44844|534401|21932|2|29|41626.02|0.10|0.00|R|F|1994-03-08|1994-01-30|1994-03-12|COLLECT COD|SHIP|to cajole fu| +44844|672486|10026|3|14|20418.30|0.06|0.07|R|F|1994-04-23|1994-02-08|1994-05-10|TAKE BACK RETURN|FOB| the fluffily ironic depe| +44844|457201|32220|4|10|11581.80|0.01|0.05|A|F|1994-01-05|1994-02-21|1994-01-19|NONE|AIR|lly fluffily ironic instructions. hock| +44844|162589|12590|5|21|34683.18|0.08|0.06|R|F|1994-03-02|1994-03-09|1994-03-27|COLLECT COD|MAIL|ckages about the carefull| +44844|619661|7198|6|39|61644.57|0.00|0.06|A|F|1994-01-14|1994-02-05|1994-01-26|TAKE BACK RETURN|SHIP| even pint| +44845|672325|34839|1|9|11675.61|0.02|0.02|N|O|1995-10-07|1995-11-15|1995-11-02|TAKE BACK RETURN|SHIP| the pending| +44845|753245|3246|2|15|19473.15|0.09|0.00|N|O|1995-09-26|1995-09-21|1995-10-10|COLLECT COD|REG AIR|e slowly bold| +44845|777550|27551|3|26|42315.52|0.08|0.06|N|O|1995-10-08|1995-11-04|1995-10-09|NONE|AIR|t packages. pinto beans sleep. | +44845|270080|32586|4|25|26251.75|0.06|0.08|N|O|1995-09-21|1995-11-05|1995-09-22|TAKE BACK RETURN|RAIL|eas. furiously regular instructio| +44846|191960|41961|1|48|98494.08|0.06|0.03|A|F|1995-05-13|1995-05-23|1995-05-30|COLLECT COD|RAIL|ans cajole| +44846|262455|24961|2|10|14174.40|0.01|0.00|N|O|1995-07-16|1995-05-27|1995-07-22|DELIVER IN PERSON|SHIP|sts haggle. slyly | +44846|73331|23332|3|37|48260.21|0.04|0.01|A|F|1995-03-30|1995-04-24|1995-04-09|COLLECT COD|AIR|ructions wake carefully iron| +44846|468472|18473|4|3|4321.35|0.01|0.03|N|O|1995-06-26|1995-05-27|1995-07-22|DELIVER IN PERSON|REG AIR|eep special requests. slyly regular in| +44846|603825|28850|5|18|31118.22|0.01|0.04|R|F|1995-04-10|1995-06-17|1995-05-04|NONE|AIR|nts wake regularly. even,| +44846|471325|33835|6|6|7777.80|0.10|0.07|A|F|1995-04-09|1995-06-04|1995-04-21|DELIVER IN PERSON|SHIP|ccounts. ironic accounts boost. f| +44846|552131|14643|7|10|11831.10|0.00|0.01|N|O|1995-07-19|1995-06-08|1995-08-06|DELIVER IN PERSON|RAIL|regular theodolites. blith| +44847|651149|1150|1|22|24202.42|0.07|0.01|N|O|1995-12-17|1995-11-05|1996-01-05|COLLECT COD|TRUCK|n requests use among the ironic pinto| +44847|847796|47797|2|8|13950.00|0.03|0.02|N|O|1995-10-18|1995-10-18|1995-11-14|NONE|TRUCK|ajole carefully. qui| +44872|413155|25664|1|22|23498.86|0.02|0.05|N|O|1995-08-13|1995-10-04|1995-08-30|NONE|SHIP|y pending requests. thin depos| +44872|892461|42462|2|29|42149.18|0.09|0.01|N|O|1995-09-30|1995-09-08|1995-10-12|NONE|AIR|e of the furiously| +44872|575411|434|3|37|54996.43|0.08|0.02|N|O|1995-10-07|1995-09-27|1995-11-05|DELIVER IN PERSON|REG AIR| packages wake furiously a| +44872|931849|44368|4|11|20688.80|0.00|0.08|N|O|1995-09-02|1995-09-23|1995-09-27|NONE|RAIL|ets. furiously final platelets sleep | +44872|585126|10149|5|47|56921.70|0.00|0.02|N|O|1995-11-02|1995-10-16|1995-11-26|COLLECT COD|REG AIR|y regular foxes | +44872|209001|34010|6|7|6369.93|0.04|0.08|N|O|1995-11-06|1995-09-17|1995-11-24|COLLECT COD|RAIL|elets cajole blithely. regular, final| +44873|151370|38880|1|9|12792.33|0.07|0.06|N|O|1998-08-29|1998-09-05|1998-09-27|NONE|REG AIR|under the acc| +44873|66053|3557|2|18|18342.90|0.08|0.05|N|O|1998-10-05|1998-10-10|1998-10-08|TAKE BACK RETURN|TRUCK|te blithely f| +44873|143080|5583|3|39|43800.12|0.00|0.06|N|O|1998-09-10|1998-09-21|1998-09-27|DELIVER IN PERSON|RAIL|cies cajole about | +44873|734312|46827|4|3|4038.84|0.09|0.00|N|O|1998-09-09|1998-10-14|1998-09-17|TAKE BACK RETURN|RAIL|accounts are blith| +44873|579133|29134|5|26|31514.86|0.04|0.05|N|O|1998-11-14|1998-10-17|1998-11-26|TAKE BACK RETURN|SHIP|ourts. carefully perma| +44873|479230|41740|6|14|16928.94|0.07|0.08|N|O|1998-10-27|1998-09-12|1998-11-01|DELIVER IN PERSON|FOB|uickly fluffy f| +44874|4529|4530|1|23|32970.96|0.09|0.00|A|F|1993-04-13|1993-05-12|1993-04-15|COLLECT COD|AIR|carefully to| +44874|106824|44331|2|23|42108.86|0.09|0.01|R|F|1993-06-23|1993-05-21|1993-06-26|DELIVER IN PERSON|TRUCK|the deposits. quickly reg| +44874|382398|7413|3|29|42931.02|0.07|0.07|A|F|1993-06-14|1993-05-09|1993-06-21|NONE|SHIP|equests wake carefully above the furiously | +44874|951207|26246|4|42|52842.72|0.03|0.07|R|F|1993-05-28|1993-04-08|1993-06-02|DELIVER IN PERSON|REG AIR|kly special requests? req| +44875|136363|36364|1|29|40581.44|0.09|0.07|A|F|1992-04-13|1992-05-28|1992-05-03|NONE|SHIP|regular deposits. quickly final theodolite| +44875|841362|28911|2|15|19549.80|0.00|0.00|A|F|1992-06-13|1992-06-01|1992-07-09|DELIVER IN PERSON|REG AIR|alongside of the blithely special| +44875|761882|24398|3|49|95248.65|0.04|0.08|A|F|1992-05-21|1992-05-10|1992-05-27|TAKE BACK RETURN|TRUCK|arefully across the quickly final reque| +44875|944216|44217|4|2|2520.34|0.07|0.08|R|F|1992-06-05|1992-05-19|1992-06-27|NONE|AIR|ully busily ir| +44875|437364|24889|5|43|55957.62|0.06|0.00|A|F|1992-05-21|1992-06-25|1992-06-07|NONE|SHIP|dolites cajole slyly. depos| +44876|377335|14857|1|46|64966.72|0.10|0.04|N|O|1996-05-29|1996-06-03|1996-06-12|TAKE BACK RETURN|AIR|gular instructio| +44876|858444|20962|2|38|53291.20|0.07|0.02|N|O|1996-06-27|1996-04-22|1996-07-19|DELIVER IN PERSON|SHIP|fluffily iron| +44876|857071|7072|3|24|24672.72|0.07|0.04|N|O|1996-04-22|1996-06-02|1996-04-23|TAKE BACK RETURN|TRUCK|s. furiously unusual deposits | +44876|782015|44531|4|44|48267.12|0.09|0.03|N|O|1996-03-26|1996-06-17|1996-04-13|TAKE BACK RETURN|AIR|cross the carefully| +44876|318974|31481|5|29|57795.84|0.03|0.00|N|O|1996-03-23|1996-06-03|1996-04-08|DELIVER IN PERSON|REG AIR|re across the even, ironic| +44876|988358|13397|6|20|28926.20|0.06|0.07|N|O|1996-06-11|1996-05-23|1996-06-22|COLLECT COD|FOB|eposits. even requests boost after the | +44876|322948|10467|7|23|45331.39|0.03|0.05|N|O|1996-04-12|1996-04-23|1996-04-14|TAKE BACK RETURN|TRUCK|ts. unusual, ex| +44877|784878|22424|1|30|58885.20|0.10|0.03|N|O|1997-12-16|1997-10-08|1997-12-18|COLLECT COD|SHIP|fts are carefully unusual reque| +44877|431806|6823|2|45|78200.10|0.00|0.07|N|O|1997-09-03|1997-10-24|1997-09-19|TAKE BACK RETURN|SHIP|ag. furiously express | +44877|355564|18072|3|13|21054.15|0.06|0.03|N|O|1997-09-12|1997-11-10|1997-10-03|COLLECT COD|SHIP| the carefully final ideas! regular, bold f| +44877|953697|41255|4|17|29761.05|0.05|0.07|N|O|1997-12-15|1997-10-15|1998-01-04|DELIVER IN PERSON|SHIP|ly ironic requests might cajo| +44878|96169|21172|1|2|2330.32|0.03|0.03|N|O|1998-01-21|1998-01-20|1998-01-26|NONE|MAIL|y pending theodolites. fu| +44878|305756|18263|2|7|12332.18|0.08|0.02|N|O|1998-02-26|1998-01-22|1998-03-23|NONE|MAIL|the fluffily regular platelets ar| +44878|828524|16073|3|16|23239.68|0.00|0.01|N|O|1998-01-22|1998-02-09|1998-02-10|DELIVER IN PERSON|TRUCK|ar, final dependencies| +44878|987222|12261|4|11|14400.98|0.01|0.01|N|O|1998-02-09|1997-12-26|1998-03-08|TAKE BACK RETURN|TRUCK|le accounts. | +44878|239098|1603|5|1|1037.08|0.08|0.00|N|O|1998-03-19|1998-01-26|1998-03-23|COLLECT COD|TRUCK|es integrate carefully along the theodolit| +44879|39281|1782|1|29|35388.12|0.03|0.00|R|F|1992-11-13|1992-11-15|1992-11-29|NONE|FOB|s are busily under the slyly ironic id| +44879|190922|15929|2|44|88568.48|0.08|0.06|A|F|1992-10-24|1992-12-02|1992-11-09|COLLECT COD|AIR|c requests detect. unusual, ironic warhorse| +44879|815952|15953|3|48|89659.68|0.08|0.08|R|F|1993-01-16|1992-12-02|1993-01-20|TAKE BACK RETURN|AIR|ilent asymptote| +44904|828764|16313|1|2|3385.44|0.09|0.04|A|F|1992-12-27|1992-12-12|1993-01-25|NONE|AIR|eodolites cajole blithel| +44904|27906|15407|2|44|80691.60|0.04|0.05|A|F|1992-12-31|1992-11-28|1993-01-15|NONE|FOB|as integrate. unusua| +44904|15276|27777|3|17|20251.59|0.06|0.03|R|F|1993-01-01|1993-01-04|1993-01-06|NONE|AIR|ily regular pinto beans. slyly expre| +44904|743520|43521|4|34|53158.66|0.05|0.03|A|F|1993-02-27|1992-12-09|1993-03-24|COLLECT COD|RAIL|atelets are. ironic theodolites are amo| +44905|527902|40413|1|7|13509.16|0.02|0.07|N|O|1998-04-09|1998-05-12|1998-04-24|COLLECT COD|REG AIR|sts cajole blithely express, express deposi| +44905|437228|49737|2|13|15147.60|0.00|0.05|N|O|1998-05-06|1998-05-01|1998-05-12|NONE|MAIL|nusual, express p| +44905|482927|45437|3|43|82125.70|0.00|0.04|N|O|1998-07-16|1998-06-06|1998-08-05|TAKE BACK RETURN|MAIL|thely final pinto beans s| +44905|552930|40464|4|20|39658.20|0.07|0.04|N|O|1998-07-16|1998-06-17|1998-08-12|DELIVER IN PERSON|SHIP|s theodolites. quick| +44905|80611|5614|5|17|27057.37|0.08|0.01|N|O|1998-04-03|1998-06-16|1998-04-16|TAKE BACK RETURN|TRUCK|d requests are against the carefully| +44905|826915|14464|6|39|71832.93|0.08|0.06|N|O|1998-07-23|1998-06-12|1998-08-21|TAKE BACK RETURN|FOB|aggle boldly after the carefully iro| +44905|957416|32455|7|43|63354.91|0.02|0.06|N|O|1998-07-04|1998-05-11|1998-07-14|TAKE BACK RETURN|RAIL|ress deposits nod carefull| +44906|284793|22309|1|26|46222.28|0.10|0.00|N|O|1998-05-10|1998-05-20|1998-05-30|COLLECT COD|SHIP|uriously according to the car| +44906|504538|17049|2|19|29307.69|0.08|0.05|N|O|1998-04-06|1998-04-23|1998-05-02|DELIVER IN PERSON|FOB|al sentiments. special deposits hang ar| +44906|769522|32038|3|50|79574.50|0.02|0.06|N|O|1998-05-21|1998-06-16|1998-06-15|DELIVER IN PERSON|TRUCK|nic ideas cajole f| +44906|355707|18215|4|48|84609.12|0.05|0.00|N|O|1998-06-15|1998-06-13|1998-07-15|TAKE BACK RETURN|SHIP|efully even deposits n| +44906|352448|27463|5|17|25507.31|0.02|0.00|N|O|1998-06-04|1998-06-12|1998-06-23|DELIVER IN PERSON|AIR|rthogs along the platelets | +44906|577646|40158|6|9|15512.58|0.04|0.06|N|O|1998-06-05|1998-06-09|1998-06-08|NONE|SHIP|ly regular packages; furiously final dino| +44907|734166|9195|1|49|58806.37|0.04|0.00|R|F|1992-11-20|1992-12-20|1992-12-08|COLLECT COD|MAIL|y above th| +44907|123367|48372|2|19|26416.84|0.00|0.08|A|F|1992-12-19|1992-11-22|1992-12-29|NONE|MAIL| haggle fluffily. furiously special ideas| +44907|420529|45546|3|24|34788.00|0.00|0.00|R|F|1992-10-28|1992-10-28|1992-11-03|COLLECT COD|TRUCK|riously against the furiously unusual dep| +44907|815215|40248|4|40|45206.80|0.02|0.02|R|F|1993-01-11|1992-11-23|1993-02-09|DELIVER IN PERSON|SHIP|quickly final deposi| +44908|244487|44488|1|32|45807.04|0.04|0.02|R|F|1994-06-27|1994-08-06|1994-07-20|TAKE BACK RETURN|MAIL|quests around the ironic theodolites ha| +44908|79655|29656|2|13|21250.45|0.07|0.08|A|F|1994-06-29|1994-07-09|1994-07-01|NONE|RAIL|. slyly unusual requ| +44908|745644|45645|3|10|16896.10|0.07|0.01|R|F|1994-06-10|1994-06-11|1994-06-16|NONE|FOB|anent ideas| +44908|29540|4541|4|40|58781.60|0.03|0.03|A|F|1994-06-14|1994-08-02|1994-07-14|NONE|AIR|ar braids use about the regular excuse| +44908|470986|20987|5|47|91977.12|0.10|0.01|A|F|1994-07-12|1994-07-29|1994-08-09|COLLECT COD|REG AIR|ely even foxes. silent deposits | +44908|852718|15236|6|12|20048.04|0.09|0.08|A|F|1994-08-14|1994-07-06|1994-09-06|TAKE BACK RETURN|SHIP|mptotes solve furiously even theodolit| +44908|624614|12151|7|38|58466.04|0.08|0.03|A|F|1994-08-11|1994-06-23|1994-08-24|NONE|RAIL|ording to the unus| +44909|872803|10355|1|29|51497.04|0.10|0.06|N|O|1997-01-06|1997-01-31|1997-01-29|NONE|AIR|asymptotes nag quic| +44909|192058|17065|2|39|44851.95|0.00|0.02|N|O|1997-01-12|1997-01-06|1997-02-09|DELIVER IN PERSON|MAIL|the slyly special theodolites. ir| +44909|906337|31374|3|5|6716.45|0.05|0.02|N|O|1996-12-16|1997-02-20|1997-01-03|DELIVER IN PERSON|SHIP|pendencies. pending platelets boost furiou| +44909|796504|34050|4|18|28808.46|0.05|0.02|N|O|1997-01-09|1997-01-22|1997-02-01|NONE|AIR|waters are blithely quickl| +44910|615464|40489|1|44|60694.92|0.02|0.03|R|F|1994-06-27|1994-07-02|1994-07-11|TAKE BACK RETURN|SHIP|ans alongside of the bold packag| +44910|90517|3019|2|4|6030.04|0.01|0.06|R|F|1994-07-21|1994-05-31|1994-08-03|COLLECT COD|AIR|sly even requests. furiously final theod| +44910|308386|45905|3|36|50197.32|0.06|0.05|R|F|1994-06-05|1994-06-18|1994-06-12|TAKE BACK RETURN|REG AIR|fully special foxes us| +44911|607788|45325|1|7|11870.25|0.09|0.02|N|O|1997-12-26|1998-01-19|1998-01-04|COLLECT COD|MAIL|ic requests eat slyly bold theodol| +44911|77539|40041|2|14|21231.42|0.06|0.00|N|O|1998-03-02|1998-01-21|1998-03-09|DELIVER IN PERSON|RAIL|are carefu| +44911|188132|13139|3|24|29283.12|0.03|0.04|N|O|1998-03-22|1998-02-16|1998-03-27|TAKE BACK RETURN|RAIL|ular deposits boost foxes. de| +44911|922820|35339|4|34|62654.52|0.10|0.05|N|O|1997-12-22|1998-03-08|1998-01-20|NONE|REG AIR|ironic packages are fluffily about the f| +44911|833079|20628|5|16|16192.48|0.08|0.00|N|O|1998-02-09|1998-02-02|1998-02-20|NONE|TRUCK|ach fluffily. carefully silent dolphi| +44911|542951|42952|6|28|55830.04|0.07|0.03|N|O|1998-01-24|1998-02-09|1998-02-14|DELIVER IN PERSON|FOB| furiously regular accou| +44911|365948|15949|7|37|74515.41|0.08|0.05|N|O|1998-01-09|1998-02-08|1998-02-03|DELIVER IN PERSON|AIR|le instructions sleep quickly | +44936|477395|14923|1|39|53522.43|0.08|0.06|N|O|1996-10-03|1996-09-14|1996-10-15|TAKE BACK RETURN|MAIL|deposits. asymptotes are carefully st| +44937|82333|44835|1|40|52613.20|0.03|0.02|N|O|1996-02-21|1996-02-24|1996-03-03|NONE|SHIP|e final accounts. qui| +44937|759046|9047|2|19|20995.19|0.01|0.06|N|O|1996-04-06|1996-01-22|1996-04-12|NONE|REG AIR|ously regula| +44937|275734|745|3|31|53001.32|0.08|0.06|N|O|1996-03-21|1996-02-21|1996-04-08|DELIVER IN PERSON|MAIL|lithely regular accou| +44937|259617|9618|4|1|1576.60|0.08|0.05|N|O|1996-03-17|1996-01-22|1996-04-03|COLLECT COD|TRUCK|cuses are? carefully express requests alo| +44938|537438|24969|1|45|66393.45|0.07|0.05|N|O|1997-02-03|1997-01-03|1997-02-17|NONE|TRUCK|lithely unusual | +44938|719729|7272|2|34|59455.46|0.10|0.03|N|O|1997-02-15|1996-12-26|1997-02-24|TAKE BACK RETURN|REG AIR|ccounts: accounts s| +44938|471155|33665|3|27|30405.51|0.08|0.04|N|O|1997-02-27|1997-02-18|1997-02-28|DELIVER IN PERSON|TRUCK|g at the blithely express requests. sl| +44938|697235|9749|4|47|57913.40|0.07|0.06|N|O|1996-11-27|1997-02-15|1996-12-17|DELIVER IN PERSON|MAIL|r pinto beans| +44939|757076|44622|1|16|18128.64|0.03|0.03|N|O|1997-11-07|1997-09-30|1997-11-18|TAKE BACK RETURN|MAIL|sits cajole a| +44939|169652|32156|2|30|51649.50|0.08|0.03|N|O|1997-08-20|1997-08-18|1997-08-26|DELIVER IN PERSON|MAIL|ake slyly along the| +44939|339664|27183|3|1|1703.65|0.00|0.08|N|O|1997-10-07|1997-08-17|1997-10-16|DELIVER IN PERSON|SHIP|requests are blithely carefully ev| +44939|730074|42589|4|6|6624.24|0.07|0.08|N|O|1997-08-04|1997-10-01|1997-08-08|NONE|MAIL|ckages will have to detect carefully | +44939|349531|49532|5|30|47415.60|0.02|0.06|N|O|1997-08-26|1997-09-27|1997-08-28|NONE|REG AIR|carefully final accounts. quickly special | +44939|552572|27595|6|28|45487.40|0.07|0.03|N|O|1997-09-13|1997-08-29|1997-10-01|TAKE BACK RETURN|TRUCK|e. quickly final deposits sleep never| +44939|71087|8591|7|33|34916.64|0.01|0.04|N|O|1997-07-26|1997-08-20|1997-08-20|DELIVER IN PERSON|REG AIR|nal accounts among the regular, sp| +44940|747063|34606|1|48|53281.44|0.06|0.06|R|F|1993-10-30|1993-09-22|1993-11-26|DELIVER IN PERSON|REG AIR|e special instructions. quickly pend| +44941|756646|44192|1|10|17026.10|0.03|0.07|N|O|1998-05-18|1998-04-25|1998-06-03|COLLECT COD|REG AIR|quests haggle. blithely s| +44941|934573|9610|2|38|61086.14|0.01|0.06|N|O|1998-03-18|1998-05-02|1998-04-09|TAKE BACK RETURN|MAIL|arefully fluffily regular | +44942|398648|23663|1|19|33185.97|0.04|0.00|N|O|1997-02-11|1997-02-20|1997-03-10|NONE|RAIL|ns! regular theodolites alongside of| +44942|68493|18494|2|41|59921.09|0.10|0.03|N|O|1997-04-05|1997-03-16|1997-04-14|COLLECT COD|MAIL|onic packages h| +44943|603641|16154|1|38|58695.18|0.07|0.06|N|O|1995-10-20|1995-08-30|1995-11-10|NONE|SHIP|ual requests a| +44943|379518|4533|2|36|57510.00|0.01|0.05|N|O|1995-08-25|1995-10-08|1995-09-08|NONE|FOB|ests haggle ironic deposits. ca| +44968|907046|19565|1|29|30537.00|0.05|0.05|R|F|1993-02-18|1992-12-16|1993-03-10|NONE|RAIL| the quickly pending packages. i| +44968|721324|21325|2|43|57847.47|0.00|0.02|A|F|1992-12-28|1993-01-02|1993-01-18|TAKE BACK RETURN|RAIL|nding foxes a| +44969|872862|47897|1|37|67888.34|0.07|0.05|N|O|1998-02-04|1998-03-04|1998-02-18|TAKE BACK RETURN|AIR| ironic instructions are quickly alongsi| +44969|190076|27586|2|23|26819.61|0.04|0.03|N|O|1998-03-05|1998-03-07|1998-03-15|COLLECT COD|FOB|ctions. sly| +44969|605081|30106|3|4|3944.20|0.03|0.01|N|O|1998-03-07|1998-01-30|1998-03-17|DELIVER IN PERSON|TRUCK| final pac| +44970|744923|7438|1|10|19678.90|0.09|0.03|A|F|1993-09-16|1993-06-30|1993-10-10|COLLECT COD|REG AIR| to use about| +44970|919212|19213|2|40|49246.80|0.04|0.05|R|F|1993-07-29|1993-06-26|1993-08-20|TAKE BACK RETURN|MAIL|quests haggle slyly bold theodolites. car| +44970|186058|23568|3|25|28601.25|0.01|0.00|R|F|1993-07-09|1993-06-24|1993-07-22|DELIVER IN PERSON|AIR|nic theodolites wak| +44970|67287|4791|4|14|17559.92|0.03|0.00|A|F|1993-08-30|1993-08-10|1993-09-02|TAKE BACK RETURN|AIR|ounts nod brai| +44970|876729|26730|5|12|20468.16|0.01|0.06|R|F|1993-09-11|1993-06-24|1993-10-04|COLLECT COD|FOB|r pinto beans. regular, final dept| +44971|243322|43323|1|15|18979.65|0.05|0.03|A|F|1994-10-24|1994-11-30|1994-11-23|NONE|TRUCK|e. carefully regular deposits at the furi| +44971|505240|42771|2|27|33620.94|0.09|0.05|R|F|1994-12-15|1995-01-12|1995-01-03|NONE|REG AIR|requests; carefully regular id| +44971|556786|31809|3|26|47911.76|0.06|0.03|R|F|1994-10-31|1994-12-02|1994-11-06|NONE|MAIL|even ideas breach ca| +44971|892278|29830|4|16|20323.68|0.01|0.05|A|F|1994-12-16|1994-11-25|1995-01-01|DELIVER IN PERSON|AIR| packages. special| +44971|505784|30805|5|33|59062.08|0.01|0.05|A|F|1994-11-24|1994-12-17|1994-12-20|NONE|AIR|even somas. quickly regular requests haggl| +44971|706735|31764|6|44|76634.80|0.07|0.03|R|F|1994-11-04|1994-12-07|1994-11-20|DELIVER IN PERSON|AIR| the ideas! asymptotes nag b| +44972|288858|1364|1|19|35089.96|0.05|0.05|A|F|1992-03-15|1992-03-31|1992-04-04|NONE|REG AIR|gular ideas: furiously ex| +44972|831669|31670|2|27|43216.74|0.10|0.02|A|F|1992-04-28|1992-05-05|1992-05-15|TAKE BACK RETURN|AIR|ular, silent deposits haggle accordi| +44972|855145|5146|3|10|11001.00|0.06|0.04|A|F|1992-03-21|1992-04-16|1992-04-17|NONE|SHIP|c accounts according to the regular, iro| +44972|414860|14861|4|6|10649.04|0.05|0.08|R|F|1992-05-04|1992-05-02|1992-05-27|DELIVER IN PERSON|TRUCK|ter the deposits. quickly br| +44973|828405|40922|1|17|22667.12|0.03|0.07|R|F|1995-05-27|1995-04-02|1995-06-06|TAKE BACK RETURN|TRUCK| the blithe ideas are f| +44973|997032|22071|2|31|34998.69|0.05|0.08|A|F|1995-03-05|1995-03-31|1995-03-18|DELIVER IN PERSON|REG AIR|es. idly ironic accounts wa| +44973|100338|37845|3|38|50856.54|0.00|0.02|R|F|1995-03-24|1995-05-05|1995-03-26|TAKE BACK RETURN|MAIL|arefully pending theod| +44974|699361|24388|1|9|12242.97|0.02|0.04|A|F|1995-03-23|1995-02-17|1995-04-09|DELIVER IN PERSON|FOB|ost furiously about the slyly final reques| +44974|148245|35752|2|46|59489.04|0.02|0.03|A|F|1995-03-01|1995-03-06|1995-03-15|DELIVER IN PERSON|FOB|ously for the iron| +44974|541332|28863|3|21|28839.51|0.07|0.00|R|F|1995-03-27|1995-01-22|1995-04-05|TAKE BACK RETURN|REG AIR|lve quickly quickly special the| +44974|162404|24908|4|6|8798.40|0.08|0.00|A|F|1995-03-18|1995-01-30|1995-04-13|NONE|MAIL|nic requests affix car| +44974|515731|28242|5|15|26200.65|0.00|0.01|R|F|1995-03-20|1995-02-04|1995-04-10|COLLECT COD|RAIL| carefully bold asympt| +44974|881262|43780|6|11|13675.42|0.07|0.02|A|F|1995-03-02|1995-02-02|1995-03-24|DELIVER IN PERSON|TRUCK|ously blith| +44975|569574|7108|1|21|34514.55|0.02|0.07|R|F|1994-09-06|1994-09-30|1994-10-04|COLLECT COD|SHIP|dependencies nag at the packag| +44975|823959|11508|2|50|94145.50|0.05|0.06|R|F|1994-10-10|1994-09-29|1994-11-05|DELIVER IN PERSON|REG AIR|ns. excuses nag stealth| +44975|275741|38247|3|11|18884.03|0.05|0.06|R|F|1994-12-13|1994-10-23|1994-12-21|TAKE BACK RETURN|AIR|ithe deposits at the care| +45000|722025|22026|1|8|8375.92|0.02|0.07|N|O|1997-01-29|1997-03-20|1997-02-03|COLLECT COD|FOB|bold instruct| +45000|59585|9586|2|7|10812.06|0.04|0.07|N|O|1997-02-18|1997-03-01|1997-03-06|TAKE BACK RETURN|RAIL|sts are. ironic deposi| +45000|443169|5678|3|42|46709.88|0.09|0.00|N|O|1997-04-20|1997-02-28|1997-05-14|DELIVER IN PERSON|AIR|ly regular request| +45000|339362|14375|4|49|68666.15|0.03|0.02|N|O|1997-04-08|1997-04-02|1997-04-21|DELIVER IN PERSON|AIR|. regular foxes caj| +45000|640328|27865|5|19|24097.51|0.06|0.02|N|O|1997-01-22|1997-03-07|1997-01-24|TAKE BACK RETURN|FOB|blithely ironic theodolites wake ca| +45000|985154|22712|6|3|3717.33|0.04|0.07|N|O|1997-03-12|1997-03-19|1997-04-06|TAKE BACK RETURN|RAIL|nic deposits | +45000|476573|14101|7|1|1549.55|0.07|0.08|N|O|1997-04-12|1997-03-13|1997-05-03|NONE|MAIL|ully ironic foxes. bold instructi| +45001|754843|17359|1|36|68321.16|0.03|0.04|R|F|1993-09-15|1993-10-29|1993-09-18|TAKE BACK RETURN|AIR|y after the furiously even | +45001|631255|6280|2|26|30841.72|0.08|0.05|R|F|1993-10-13|1993-11-06|1993-11-03|TAKE BACK RETURN|AIR|s nag carefully fluffily sp| +45001|492614|30142|3|14|22492.26|0.02|0.05|R|F|1993-12-20|1993-11-01|1994-01-15|DELIVER IN PERSON|AIR|y even accounts believe quickl| +45001|362698|12699|4|14|24649.52|0.05|0.07|R|F|1993-12-23|1993-11-27|1994-01-05|NONE|REG AIR|l theodolite| +45001|856773|31808|5|2|3459.46|0.10|0.00|R|F|1993-11-05|1993-12-01|1993-12-04|DELIVER IN PERSON|AIR|riously enticing | +45001|775048|37564|6|5|5615.05|0.08|0.06|A|F|1993-09-12|1993-10-19|1993-10-06|NONE|RAIL|ions. furiously final foxes pr| +45002|949852|37407|1|49|93188.69|0.04|0.08|A|F|1993-08-27|1993-09-30|1993-09-12|COLLECT COD|MAIL|ic theodolites nag ironic accounts. slo| +45002|149150|36657|2|11|13190.65|0.04|0.05|A|F|1993-09-24|1993-10-02|1993-10-01|TAKE BACK RETURN|MAIL|thely express p| +45003|85712|23216|1|34|57722.14|0.05|0.04|A|F|1993-03-09|1992-12-23|1993-03-11|COLLECT COD|AIR|ake fluffily iron| +45003|548246|10757|2|23|29767.06|0.03|0.00|A|F|1992-12-03|1993-01-13|1992-12-06|TAKE BACK RETURN|TRUCK|os above the regular theodolit| +45004|670759|8299|1|22|38053.84|0.07|0.05|N|O|1996-01-09|1995-12-12|1996-02-03|COLLECT COD|AIR|ts. furious pinto beans nag fluff| +45005|692870|30410|1|5|9314.20|0.06|0.03|R|F|1994-06-25|1994-03-29|1994-07-13|COLLECT COD|SHIP|bout the pending,| +45005|64318|39321|2|49|62833.19|0.10|0.04|R|F|1994-06-22|1994-03-28|1994-07-06|NONE|SHIP|inal deposits could wake slyly of the| +45005|981731|31732|3|9|16314.21|0.05|0.00|A|F|1994-06-24|1994-05-14|1994-07-21|TAKE BACK RETURN|MAIL| requests above the even accounts hagg| +45006|755821|18337|1|11|20644.69|0.06|0.01|N|O|1997-07-29|1997-07-27|1997-08-07|COLLECT COD|AIR|lar accounts. ca| +45006|79113|29114|2|6|6552.66|0.10|0.04|N|O|1997-07-08|1997-08-13|1997-08-06|TAKE BACK RETURN|AIR|uctions. regula| +45007|680065|17605|1|11|11495.33|0.08|0.04|N|O|1996-11-17|1997-01-21|1996-12-16|COLLECT COD|FOB|dle accounts sleep deposits. expre| +45007|843796|18829|2|22|38274.50|0.05|0.06|N|O|1997-03-03|1997-01-23|1997-03-19|COLLECT COD|REG AIR|sits. fluffily express escapades w| +45007|678164|28165|3|4|4568.52|0.05|0.05|N|O|1996-11-16|1997-01-15|1996-12-02|NONE|RAIL|theodolites. | +45007|895242|45243|4|26|32167.20|0.05|0.08|N|O|1997-02-15|1997-01-14|1997-03-11|NONE|SHIP|ic grouches n| +45007|328615|28616|5|28|46020.80|0.09|0.06|N|O|1997-01-22|1997-01-01|1997-02-02|DELIVER IN PERSON|AIR|carefully express foxes. e| +45007|28348|3349|6|40|51053.60|0.04|0.00|N|O|1997-01-30|1997-01-27|1997-02-20|NONE|RAIL|ly among the furiously f| +45032|660336|22850|1|41|53148.30|0.01|0.08|R|F|1995-02-12|1995-01-29|1995-02-20|DELIVER IN PERSON|FOB|silent escapades. | +45032|253147|3148|2|50|55006.50|0.09|0.01|R|F|1995-01-02|1995-01-06|1995-01-25|COLLECT COD|TRUCK|n requests above the blithely unusual | +45032|633453|45966|3|41|56843.22|0.06|0.08|R|F|1994-12-09|1995-02-11|1994-12-25|COLLECT COD|AIR|y along th| +45033|107249|32254|1|39|48993.36|0.03|0.06|A|F|1992-12-01|1992-09-29|1992-12-03|COLLECT COD|RAIL|ular instructions haggle furiously al| +45033|529360|16891|2|3|4168.02|0.09|0.04|A|F|1992-11-15|1992-09-22|1992-12-02|DELIVER IN PERSON|FOB| theodolites integr| +45033|943962|18999|3|44|88260.48|0.00|0.08|R|F|1992-10-26|1992-10-27|1992-11-14|DELIVER IN PERSON|SHIP|luffily ironic ideas nag ironic ideas. w| +45033|153553|28560|4|37|59442.35|0.10|0.03|A|F|1992-10-04|1992-11-02|1992-10-14|COLLECT COD|SHIP|requests haggle furiously. blithel| +45033|765135|27651|5|30|36003.00|0.07|0.01|R|F|1992-12-07|1992-09-11|1992-12-15|DELIVER IN PERSON|FOB|unusual, bold requests| +45034|514443|14444|1|45|65583.90|0.04|0.05|A|F|1994-05-23|1994-06-19|1994-06-21|DELIVER IN PERSON|FOB|sts boost quickly regula| +45035|764056|26572|1|36|40320.72|0.10|0.07|N|O|1996-08-19|1996-07-31|1996-09-13|TAKE BACK RETURN|TRUCK|y final accounts s| +45036|448821|23838|1|4|7079.20|0.06|0.05|N|O|1997-07-06|1997-07-27|1997-07-24|DELIVER IN PERSON|FOB|grouches; carefully unusual tithe| +45036|328764|41271|2|9|16134.75|0.01|0.05|N|O|1997-06-01|1997-06-16|1997-06-27|TAKE BACK RETURN|SHIP|ts cajole blithely against the ins| +45036|534187|21718|3|45|54952.20|0.03|0.03|N|O|1997-08-21|1997-06-25|1997-08-31|TAKE BACK RETURN|AIR|? slyly regular pinto be| +45036|74351|11855|4|21|27832.35|0.02|0.01|N|O|1997-07-09|1997-06-23|1997-08-05|TAKE BACK RETURN|FOB|! even requests wake. accounts de| +45036|616791|29304|5|15|25616.40|0.00|0.02|N|O|1997-06-09|1997-07-30|1997-06-29|NONE|SHIP|intain fluffily regular accounts. blithely | +45037|562937|37960|1|39|77996.49|0.01|0.00|R|F|1993-05-21|1993-07-09|1993-06-14|DELIVER IN PERSON|REG AIR| requests; ironic, regular depen| +45037|281206|18722|2|25|29679.75|0.01|0.07|R|F|1993-06-14|1993-07-20|1993-06-26|COLLECT COD|REG AIR|e even frays.| +45037|226163|38668|3|3|3267.45|0.03|0.04|A|F|1993-09-09|1993-06-22|1993-09-22|COLLECT COD|RAIL|lay blithely ca| +45037|118293|43298|4|5|6556.45|0.02|0.03|A|F|1993-07-10|1993-06-20|1993-08-04|COLLECT COD|FOB|eep. regular packages sleep furiously e| +45037|143979|6482|5|16|32367.52|0.10|0.03|R|F|1993-08-13|1993-06-16|1993-08-14|COLLECT COD|REG AIR|ully according to the regular | +45037|841029|16062|6|34|32979.32|0.00|0.03|R|F|1993-05-28|1993-07-29|1993-06-04|DELIVER IN PERSON|FOB|usly idle packages against | +45037|158554|33561|7|30|48376.50|0.01|0.00|R|F|1993-05-31|1993-06-17|1993-06-19|NONE|SHIP|even request| +45038|807106|32139|1|41|41535.46|0.06|0.05|R|F|1995-05-12|1995-04-21|1995-06-07|DELIVER IN PERSON|AIR|fily even ideas after the fu| +45039|123774|11281|1|27|48539.79|0.10|0.00|N|O|1996-07-07|1996-08-24|1996-07-16|TAKE BACK RETURN|REG AIR|ully bold, even pinto beans; slyly | +45039|266661|16662|2|20|32553.00|0.00|0.03|N|O|1996-10-12|1996-09-20|1996-10-28|NONE|MAIL|ual packages about the quiet in| +45039|758469|33500|3|15|22911.45|0.05|0.03|N|O|1996-10-26|1996-08-31|1996-11-12|NONE|REG AIR|l instructions. carefully sp| +45039|574284|49307|4|11|14940.86|0.06|0.03|N|O|1996-10-24|1996-09-10|1996-11-20|COLLECT COD|FOB|cing accounts haggle: careful| +45039|990502|28060|5|22|35034.12|0.08|0.04|N|O|1996-09-25|1996-09-19|1996-10-21|DELIVER IN PERSON|MAIL|iously special p| +45064|451777|39305|1|34|58777.50|0.08|0.03|N|O|1995-10-22|1995-08-23|1995-11-08|DELIVER IN PERSON|AIR|al courts. regular | +45064|14454|39455|2|47|64317.15|0.07|0.05|N|O|1995-09-05|1995-09-06|1995-09-19|DELIVER IN PERSON|MAIL|kly unusual theodolites doubt blithely a| +45064|919138|19139|3|6|6942.54|0.03|0.05|N|O|1995-10-27|1995-09-07|1995-11-24|DELIVER IN PERSON|FOB|efully unusu| +45064|951096|1097|4|10|11470.50|0.06|0.07|N|O|1995-09-14|1995-09-15|1995-09-18|DELIVER IN PERSON|TRUCK|ironic packages ha| +45064|62007|12008|5|35|33915.00|0.03|0.02|N|O|1995-08-29|1995-08-10|1995-09-02|COLLECT COD|TRUCK|s. blithely unusual deposits boost fluffily| +45064|134913|34914|6|44|85708.04|0.09|0.05|N|O|1995-10-06|1995-08-07|1995-10-13|TAKE BACK RETURN|REG AIR|to beans. ironic dolphins boost | +45064|471246|21247|7|37|45037.14|0.08|0.00|N|O|1995-07-29|1995-08-04|1995-08-10|TAKE BACK RETURN|REG AIR|. carefully even | +45065|214886|14887|1|36|64831.32|0.06|0.06|N|O|1998-03-14|1998-01-25|1998-04-08|DELIVER IN PERSON|TRUCK|requests run furiously. ex| +45065|578515|28516|2|50|79674.50|0.07|0.00|N|O|1998-02-21|1998-02-24|1998-03-04|COLLECT COD|FOB|kly among the re| +45065|100024|25029|3|31|31744.62|0.03|0.08|N|O|1998-03-27|1998-01-11|1998-04-17|NONE|AIR| accounts | +45065|98788|11290|4|24|42882.72|0.04|0.06|N|O|1998-02-09|1998-02-23|1998-03-04|DELIVER IN PERSON|RAIL| deposits. final| +45065|315919|15920|5|43|83200.70|0.05|0.05|N|O|1998-03-02|1998-01-10|1998-03-18|NONE|TRUCK|final packages. packages ag| +45065|640269|27806|6|35|42323.05|0.03|0.02|N|O|1998-03-23|1998-02-23|1998-03-29|TAKE BACK RETURN|FOB|express grouches kindle furio| +45065|996418|46419|7|26|39373.62|0.03|0.06|N|O|1998-01-23|1998-01-07|1998-01-30|TAKE BACK RETURN|TRUCK|er final plate| +45066|781646|31647|1|32|55283.52|0.07|0.02|N|O|1995-11-15|1995-11-21|1995-12-15|NONE|REG AIR|to beans. even | +45066|112068|24571|2|17|18361.02|0.05|0.07|N|O|1996-01-05|1996-01-10|1996-01-11|DELIVER IN PERSON|TRUCK|furiously reg| +45066|525488|25489|3|12|18161.52|0.00|0.03|N|O|1995-11-21|1995-12-03|1995-12-08|NONE|REG AIR|nod blithely over | +45067|997648|10168|1|20|34912.00|0.08|0.08|N|O|1996-08-21|1996-07-18|1996-09-11|COLLECT COD|FOB|se carefully even theodolites. final, si| +45068|676094|1121|1|28|29961.68|0.07|0.05|N|O|1998-03-08|1998-01-28|1998-03-11|COLLECT COD|MAIL|bove the furiously pending forge| +45068|99424|24427|2|23|32738.66|0.05|0.00|N|O|1997-12-08|1998-01-16|1998-01-04|NONE|RAIL|pinto beans. unusual, regular| +45068|5589|18090|3|4|5978.32|0.03|0.04|N|O|1998-01-31|1998-01-31|1998-02-19|COLLECT COD|MAIL| ironic fox| +45068|922818|47855|4|32|58904.64|0.02|0.02|N|O|1998-02-12|1998-02-21|1998-02-27|NONE|REG AIR|ckages detect about| +45069|587012|37013|1|25|27474.75|0.02|0.08|N|O|1998-11-10|1998-10-05|1998-12-09|COLLECT COD|SHIP|dependencies. slyly final foxes nod flu| +45069|906634|6635|2|30|49217.70|0.01|0.02|N|O|1998-11-04|1998-08-29|1998-11-22|NONE|AIR|riously quickly ironic theodo| +45069|782981|20527|3|37|76366.15|0.10|0.06|N|O|1998-08-31|1998-10-09|1998-09-12|TAKE BACK RETURN|SHIP|c deposits eat alwa| +45069|556029|6030|4|17|18445.00|0.00|0.00|N|O|1998-09-10|1998-09-08|1998-09-13|DELIVER IN PERSON|AIR|efully ironic packages cajole plat| +45069|175907|13417|5|25|49572.50|0.05|0.08|N|O|1998-09-28|1998-10-07|1998-10-13|TAKE BACK RETURN|REG AIR|odolites. final, regular foxes nag blithe| +45069|460694|35713|6|16|26474.72|0.04|0.06|N|O|1998-09-13|1998-09-14|1998-09-19|COLLECT COD|FOB| slyly ironic accounts gr| +45070|308576|46095|1|12|19014.72|0.09|0.04|N|O|1997-10-03|1997-09-24|1997-10-23|NONE|FOB|ven, even requests around the bold, r| +45070|221071|46080|2|20|19841.20|0.07|0.04|N|O|1997-08-31|1997-10-18|1997-09-29|TAKE BACK RETURN|REG AIR|l dolphins. blithely ironic deposits x-ray| +45070|537172|24703|3|19|22973.85|0.03|0.07|N|O|1997-10-01|1997-09-26|1997-10-23|COLLECT COD|REG AIR| cajole furiously| +45070|245229|45230|4|8|9393.68|0.00|0.03|N|O|1997-08-26|1997-09-19|1997-09-09|NONE|TRUCK|ide of the quickly express| +45070|555380|30403|5|16|22965.76|0.10|0.05|N|O|1997-09-16|1997-09-18|1997-10-12|DELIVER IN PERSON|TRUCK|blithely enticing do| +45070|266825|41836|6|26|46587.06|0.02|0.00|N|O|1997-11-03|1997-10-19|1997-11-24|DELIVER IN PERSON|MAIL|ies use fluffily about the | +45070|516254|16255|7|46|58430.58|0.08|0.06|N|O|1997-10-26|1997-09-26|1997-11-12|TAKE BACK RETURN|TRUCK|ly. carefully bold packages wa| +45071|676230|13770|1|47|56691.40|0.04|0.06|A|F|1993-06-21|1993-06-08|1993-06-26|NONE|FOB|final instructi| +45071|393489|5997|2|15|23737.05|0.00|0.01|A|F|1993-05-10|1993-04-15|1993-05-19|COLLECT COD|AIR|y ironic pearls are warthogs. quickly i| +45071|362049|37064|3|50|55551.50|0.08|0.06|R|F|1993-05-01|1993-06-02|1993-05-18|TAKE BACK RETURN|SHIP|ions. enticingly even theodolites sleep sly| +45071|954860|29899|4|4|7659.28|0.07|0.03|A|F|1993-04-10|1993-05-24|1993-05-05|NONE|FOB|nent platelets cajole quickl| +45071|319223|31730|5|3|3726.63|0.08|0.01|A|F|1993-05-02|1993-06-11|1993-05-20|COLLECT COD|MAIL|ithely pending, pending packages. quickl| +45071|172914|22915|6|13|25829.83|0.03|0.02|R|F|1993-06-29|1993-04-17|1993-07-20|NONE|RAIL|ecial dependenc| +45096|304917|29930|1|19|36516.10|0.05|0.08|N|O|1997-02-19|1997-01-19|1997-02-27|NONE|REG AIR|. blithely bold theodolit| +45096|732442|44957|2|2|2948.82|0.01|0.06|N|O|1996-10-31|1996-12-04|1996-11-25|DELIVER IN PERSON|RAIL|ickly regular escapades.| +45096|145460|7963|3|20|30109.20|0.09|0.00|N|O|1996-12-25|1997-01-05|1997-01-03|DELIVER IN PERSON|MAIL| requests thrash furiously ironic packag| +45096|737687|202|4|2|3449.30|0.05|0.06|N|O|1997-02-06|1996-11-25|1997-02-07|TAKE BACK RETURN|SHIP|r asymptot| +45097|85613|23117|1|10|15986.10|0.01|0.02|N|O|1996-11-22|1996-11-18|1996-12-06|DELIVER IN PERSON|REG AIR|express accounts bo| +45097|895536|45537|2|6|9188.94|0.00|0.05|N|O|1996-11-09|1996-11-08|1996-11-17|TAKE BACK RETURN|RAIL|quests. carefully pending accounts | +45097|257843|45359|3|28|50423.24|0.09|0.08|N|O|1996-10-10|1996-10-03|1996-11-09|DELIVER IN PERSON|REG AIR|side of the quickly even e| +45097|552690|15202|4|41|71449.47|0.01|0.05|N|O|1996-09-06|1996-11-18|1996-09-08|NONE|REG AIR|ording to the final, silent asympt| +45097|47722|22723|5|33|55100.76|0.04|0.08|N|O|1996-10-12|1996-10-29|1996-11-09|NONE|FOB|encies mold. regular, pending depos| +45098|165063|2573|1|50|56403.00|0.01|0.02|R|F|1995-02-25|1995-02-09|1995-03-07|COLLECT COD|RAIL|. slyly even theodolites would cajole of| +45098|210936|10937|2|47|86805.24|0.03|0.00|A|F|1995-03-09|1995-03-19|1995-04-03|TAKE BACK RETURN|SHIP| quickly carefully fin| +45099|31146|6147|1|36|38777.04|0.08|0.05|N|O|1997-09-30|1997-08-10|1997-10-13|TAKE BACK RETURN|AIR|es lose blithely. accounts caj| +45099|463922|26432|2|5|9429.50|0.08|0.00|N|O|1997-08-18|1997-08-02|1997-08-31|TAKE BACK RETURN|SHIP|inst the express, even asymptote| +45099|132504|45007|3|44|67606.00|0.09|0.08|N|O|1997-06-13|1997-08-29|1997-06-17|DELIVER IN PERSON|TRUCK|yly slyly unusua| +45099|979521|42041|4|24|38411.52|0.07|0.06|N|O|1997-08-09|1997-07-25|1997-08-30|COLLECT COD|AIR|he regular | +45099|794253|19284|5|31|41763.82|0.03|0.08|N|O|1997-06-28|1997-08-04|1997-07-13|COLLECT COD|AIR|ial accounts ca| +45099|9177|21678|6|13|14120.21|0.06|0.02|N|O|1997-07-10|1997-08-12|1997-07-14|TAKE BACK RETURN|FOB|ly final deposits. b| +45100|407623|32640|1|49|74999.40|0.08|0.08|R|F|1994-07-07|1994-06-24|1994-07-22|COLLECT COD|SHIP|posits. regular packages above the unusua| +45100|911899|36936|2|21|40127.85|0.00|0.06|A|F|1994-04-28|1994-05-22|1994-05-28|DELIVER IN PERSON|AIR| nag quickly of the iron| +45100|274862|49873|3|41|75310.85|0.06|0.02|A|F|1994-04-10|1994-05-15|1994-04-15|NONE|AIR| unusual asympt| +45100|594332|19355|4|32|45641.92|0.07|0.04|R|F|1994-05-13|1994-06-14|1994-05-17|TAKE BACK RETURN|MAIL|s. blithely regular the| +45100|926170|38689|5|15|17941.95|0.07|0.01|A|F|1994-07-14|1994-05-26|1994-07-24|COLLECT COD|TRUCK| pinto beans nag furiously regular accounts| +45101|304958|29971|1|2|3925.88|0.01|0.05|N|O|1998-04-04|1998-04-27|1998-04-21|TAKE BACK RETURN|FOB|ly. blithely final accoun| +45101|427611|27612|2|27|41541.93|0.07|0.05|N|O|1998-06-28|1998-04-11|1998-07-25|NONE|RAIL|lly even, ironic re| +45101|857954|45506|3|40|76476.40|0.06|0.08|N|O|1998-06-27|1998-04-12|1998-07-01|NONE|SHIP|ccounts sl| +45101|624826|24827|4|39|68280.81|0.02|0.01|N|O|1998-05-08|1998-04-30|1998-05-31|DELIVER IN PERSON|TRUCK|ges wake blithely. | +45101|444179|6688|5|4|4492.60|0.06|0.03|N|O|1998-04-04|1998-04-08|1998-04-20|NONE|REG AIR|dolphins sleep quickly. busily ironic ex| +45102|776604|14150|1|20|33611.40|0.09|0.04|N|O|1998-04-06|1998-06-02|1998-05-02|TAKE BACK RETURN|TRUCK|deposits. regular, regular patterns| +45102|375147|12669|2|5|6110.65|0.09|0.05|N|O|1998-03-25|1998-04-23|1998-04-23|TAKE BACK RETURN|FOB|. slyly pending packages | +45102|81795|31796|3|49|87062.71|0.02|0.04|N|O|1998-06-03|1998-05-03|1998-06-17|DELIVER IN PERSON|FOB|nto beans sleep furiously| +45102|714479|39508|4|24|35842.56|0.10|0.07|N|O|1998-03-10|1998-04-15|1998-03-22|TAKE BACK RETURN|FOB|final deposits. carefu| +45102|236253|11262|5|38|45191.12|0.05|0.02|N|O|1998-05-06|1998-04-27|1998-06-05|TAKE BACK RETURN|FOB|kly pending requests kindle abo| +45102|702207|27236|6|18|21765.06|0.06|0.08|N|O|1998-03-12|1998-05-22|1998-03-15|DELIVER IN PERSON|AIR|ndencies sleep | +45103|998209|23248|1|46|60129.36|0.03|0.00|N|O|1995-09-01|1995-08-20|1995-09-04|TAKE BACK RETURN|TRUCK|quickly bold p| +45128|805341|17858|1|14|17448.20|0.04|0.05|A|F|1992-04-15|1992-04-26|1992-04-17|TAKE BACK RETURN|REG AIR|ans-- carefully even requests | +45128|363325|847|2|32|44425.92|0.06|0.00|R|F|1992-02-23|1992-05-03|1992-03-05|TAKE BACK RETURN|SHIP| after the bl| +45128|393829|43830|3|37|71143.97|0.00|0.03|R|F|1992-03-29|1992-04-22|1992-04-26|COLLECT COD|MAIL|onic notornis-- blithely even reques| +45128|70728|45731|4|18|30576.96|0.05|0.03|A|F|1992-02-21|1992-03-26|1992-03-14|COLLECT COD|TRUCK|ic accounts was quickly slyly special| +45129|105530|30535|1|33|50672.49|0.05|0.04|A|F|1993-10-04|1993-11-05|1993-10-23|DELIVER IN PERSON|MAIL|ackages nag blithely slyly| +45129|638772|38773|2|12|20528.88|0.08|0.03|A|F|1993-10-15|1993-10-23|1993-10-21|DELIVER IN PERSON|REG AIR|le quickly quickly regular asymp| +45129|828223|28224|3|16|18418.88|0.07|0.04|A|F|1993-09-12|1993-11-09|1993-10-08|DELIVER IN PERSON|FOB|ly final courts. pendi| +45129|931779|6816|4|43|77861.39|0.04|0.02|A|F|1993-11-01|1993-10-12|1993-11-14|DELIVER IN PERSON|TRUCK|tes dazzle unusual, final deposi| +45129|404847|4848|5|10|17518.20|0.01|0.03|A|F|1993-11-13|1993-11-21|1993-11-14|NONE|FOB|ndencies alo| +45129|258246|20752|6|4|4816.92|0.06|0.00|A|F|1993-12-27|1993-10-07|1994-01-05|COLLECT COD|FOB|ly special platelets. regular pi| +45129|339028|26547|7|32|34144.32|0.08|0.08|R|F|1993-09-25|1993-11-01|1993-09-30|NONE|RAIL|along the furiously | +45130|42275|42276|1|20|24345.40|0.08|0.07|R|F|1994-09-08|1994-10-07|1994-09-24|NONE|SHIP|ic pinto beans. ca| +45130|504513|29534|2|21|31867.29|0.10|0.06|A|F|1994-09-29|1994-08-11|1994-10-22|COLLECT COD|MAIL|thely unusual| +45130|346108|21121|3|42|48471.78|0.07|0.07|R|F|1994-08-11|1994-10-06|1994-09-04|COLLECT COD|MAIL|dolites. express p| +45130|29830|4831|4|44|77432.52|0.08|0.01|A|F|1994-10-06|1994-09-25|1994-10-19|NONE|REG AIR|pinto beans eat blithely a| +45130|348911|11418|5|9|17639.10|0.03|0.05|R|F|1994-09-22|1994-10-08|1994-10-04|DELIVER IN PERSON|MAIL|e carefully re| +45130|146859|9362|6|25|47646.25|0.10|0.08|A|F|1994-10-23|1994-08-17|1994-11-10|DELIVER IN PERSON|MAIL|l deposits| +45130|242567|17576|7|24|36229.20|0.09|0.02|A|F|1994-11-03|1994-08-26|1994-11-15|COLLECT COD|FOB|ng deposits grow fluffily furiously silent | +45131|823227|23228|1|36|41406.48|0.08|0.08|N|O|1998-04-27|1998-02-27|1998-05-07|COLLECT COD|AIR|ests: unusual, regular| +45132|188297|38298|1|47|65108.63|0.10|0.07|A|F|1994-02-16|1994-01-20|1994-03-18|NONE|AIR|furiously alongside| +45132|693903|43904|2|28|53112.36|0.03|0.01|R|F|1994-02-09|1994-02-26|1994-02-16|COLLECT COD|TRUCK|ly fluffily regular courts. slyly ironic wa| +45133|640911|40912|1|25|46297.00|0.00|0.06|N|O|1998-06-26|1998-08-09|1998-07-05|TAKE BACK RETURN|MAIL|ully along the q| +45133|783354|45870|2|44|63242.08|0.08|0.01|N|O|1998-08-05|1998-08-07|1998-08-30|COLLECT COD|SHIP|. always even depo| +45133|815826|3375|3|19|33093.82|0.05|0.01|N|O|1998-06-27|1998-07-15|1998-07-22|DELIVER IN PERSON|RAIL|r packages. f| +45134|222909|10422|1|19|34805.91|0.07|0.07|A|F|1992-05-03|1992-04-10|1992-05-12|TAKE BACK RETURN|SHIP|hely about the blithely reg| +45134|420738|45755|2|7|11610.97|0.06|0.08|A|F|1992-02-27|1992-03-23|1992-03-11|TAKE BACK RETURN|REG AIR|unts shall hav| +45134|327181|14700|3|28|33828.76|0.09|0.00|A|F|1992-02-23|1992-03-25|1992-03-02|NONE|MAIL|thely. furiously pending pe| +45134|916846|16847|4|40|74512.00|0.08|0.04|R|F|1992-01-21|1992-04-04|1992-02-07|TAKE BACK RETURN|FOB|te slyly. even requests sleep blithely abov| +45135|730131|17674|1|26|30188.60|0.09|0.08|N|O|1997-09-09|1997-08-17|1997-09-15|COLLECT COD|SHIP|ckly fluffil| +45160|426645|1662|1|29|45576.98|0.07|0.00|N|O|1996-08-16|1996-10-01|1996-08-20|COLLECT COD|SHIP|y regular gifts h| +45160|622354|22355|2|34|43394.88|0.07|0.04|N|O|1996-08-13|1996-08-18|1996-08-24|COLLECT COD|AIR|above the regular| +45160|903306|28343|3|30|39277.80|0.10|0.03|N|O|1996-08-29|1996-08-22|1996-09-08|DELIVER IN PERSON|SHIP|onic, special accounts integrate quick| +45161|541970|29501|1|2|4023.90|0.05|0.03|N|O|1996-12-10|1997-01-19|1996-12-21|NONE|AIR|al requests. furio| +45162|942793|42794|1|37|67922.75|0.03|0.03|N|O|1998-03-05|1998-01-03|1998-04-01|COLLECT COD|AIR|ithely even theodolites? regular, un| +45162|513679|26190|2|41|69398.65|0.10|0.02|N|O|1998-02-16|1998-02-18|1998-02-20|DELIVER IN PERSON|AIR|arefully furiously final dependenci| +45162|394217|6725|3|41|53759.20|0.06|0.00|N|O|1998-01-26|1998-01-02|1998-02-18|NONE|RAIL|sual instructions sleep care| +45162|594477|19500|4|18|28286.10|0.01|0.07|N|O|1998-02-04|1998-01-30|1998-02-23|TAKE BACK RETURN|REG AIR|ully final packages haggle | +45162|360821|10822|5|4|7527.24|0.05|0.05|N|O|1998-01-10|1998-01-28|1998-02-04|TAKE BACK RETURN|REG AIR|ages haggle instruc| +45162|303286|28299|6|44|56727.88|0.08|0.01|N|O|1998-01-04|1998-02-14|1998-01-10|TAKE BACK RETURN|RAIL|ag carefully along the notornis| +45163|563948|1482|1|26|52309.92|0.01|0.03|R|F|1994-08-19|1994-10-25|1994-09-17|NONE|SHIP|lets. fluffily | +45164|753376|40922|1|2|2858.68|0.02|0.01|A|F|1994-07-03|1994-06-10|1994-07-26|COLLECT COD|FOB|usly pending deposits detect ac| +45164|978419|40939|2|48|71873.76|0.06|0.04|A|F|1994-06-09|1994-06-19|1994-06-24|COLLECT COD|FOB|ay carefully foxes. carefully final pl| +45164|274559|37065|3|38|58274.52|0.01|0.00|R|F|1994-05-26|1994-06-01|1994-06-05|NONE|FOB|sual, bold accounts sle| +45164|510338|47869|4|7|9438.17|0.01|0.00|R|F|1994-06-24|1994-06-02|1994-07-12|TAKE BACK RETURN|FOB|its boost sly| +45165|773070|35586|1|9|10287.36|0.10|0.00|N|O|1997-11-29|1998-01-08|1997-12-29|TAKE BACK RETURN|TRUCK|ly unusual, regular pinto bea| +45165|978091|40611|2|23|26888.15|0.10|0.07|N|O|1997-10-27|1997-12-14|1997-11-20|DELIVER IN PERSON|AIR|uriously silent requests. furiously pend| +45165|769350|31866|3|16|22709.12|0.02|0.02|N|O|1998-02-02|1998-01-07|1998-02-28|NONE|FOB|. regular gifts | +45165|462478|37497|4|22|31689.90|0.03|0.01|N|O|1997-12-14|1997-12-04|1997-12-30|TAKE BACK RETURN|TRUCK|osits. furiously un| +45165|857540|32575|5|17|25457.50|0.00|0.05|N|O|1997-10-27|1997-12-25|1997-10-30|DELIVER IN PERSON|FOB| sleep even, close notornis. bold reques| +45165|668953|31467|6|40|76876.80|0.05|0.04|N|O|1998-02-18|1998-01-13|1998-02-26|DELIVER IN PERSON|SHIP|xes. carefully special cou| +45165|78060|28061|7|38|39446.28|0.04|0.08|N|O|1997-11-29|1997-11-30|1997-12-08|TAKE BACK RETURN|MAIL| according to the unusual, final theodolite| +45166|940141|2660|1|32|37795.20|0.03|0.01|R|F|1993-06-16|1993-08-07|1993-07-04|TAKE BACK RETURN|SHIP|, thin excuses cajole according to th| +45166|948243|48244|2|28|36153.60|0.08|0.07|R|F|1993-06-03|1993-08-02|1993-06-09|DELIVER IN PERSON|REG AIR|he express ideas use care| +45166|107940|7941|3|12|23375.28|0.00|0.08|A|F|1993-07-09|1993-06-28|1993-07-11|NONE|REG AIR|luffily even pinto beans.| +45166|143277|18282|4|2|2640.54|0.04|0.02|A|F|1993-08-26|1993-07-16|1993-09-25|TAKE BACK RETURN|AIR|gular pinto | +45167|958310|8311|1|11|15050.97|0.04|0.05|R|F|1994-06-11|1994-05-16|1994-06-19|NONE|TRUCK|packages need to wake thin | +45167|303400|40919|2|8|11227.12|0.06|0.05|R|F|1994-06-28|1994-05-24|1994-07-04|NONE|RAIL|egular ideas. silent| +45167|231540|31541|3|49|72104.97|0.09|0.03|R|F|1994-03-08|1994-05-02|1994-03-13|NONE|RAIL|uriously ironic theodolites nag. blith| +45167|492682|5192|4|12|20095.92|0.09|0.03|R|F|1994-04-20|1994-05-03|1994-05-17|COLLECT COD|FOB|osits use slyly carefully sp| +45192|925279|37798|1|21|27388.83|0.01|0.05|A|F|1995-03-24|1995-03-28|1995-04-04|NONE|RAIL|accounts haggle carefully.| +45192|154219|16723|2|34|43289.14|0.06|0.08|R|F|1995-03-17|1995-02-07|1995-04-13|TAKE BACK RETURN|FOB|regular pinto beans. quickly iro| +45192|943757|18794|3|48|86434.08|0.00|0.08|R|F|1995-04-26|1995-03-02|1995-05-10|NONE|MAIL|riously final packages wake qu| +45192|720517|33032|4|35|53811.80|0.01|0.04|R|F|1995-03-03|1995-03-07|1995-03-07|NONE|MAIL|eposits. carefully ironic accou| +45192|714366|14367|5|19|26226.27|0.02|0.06|R|F|1995-01-26|1995-02-27|1995-01-30|TAKE BACK RETURN|SHIP|as sleep caref| +45192|340073|2580|6|25|27826.50|0.09|0.01|A|F|1995-03-03|1995-03-09|1995-03-15|COLLECT COD|TRUCK|ts. carefully regular deposits sleep f| +45193|165752|3262|1|23|41808.25|0.04|0.07|R|F|1994-09-06|1994-08-14|1994-09-29|DELIVER IN PERSON|SHIP|ages. slyly ironic dep| +45193|785596|23142|2|25|42039.00|0.05|0.00|A|F|1994-09-18|1994-08-22|1994-10-05|NONE|REG AIR|uffily slyly final deposits| +45193|508160|20671|3|12|14017.68|0.09|0.05|A|F|1994-08-28|1994-08-30|1994-09-22|COLLECT COD|FOB|nag blithely aft| +45193|634954|47467|4|33|62334.36|0.10|0.08|A|F|1994-10-30|1994-08-31|1994-10-31|TAKE BACK RETURN|AIR|ously after the deposits. carefully final | +45193|656425|18939|5|35|48348.65|0.02|0.07|R|F|1994-08-08|1994-08-26|1994-08-27|COLLECT COD|AIR|y above the ironic foxes. f| +45194|772449|22450|1|35|53249.35|0.10|0.00|N|O|1998-03-04|1998-04-15|1998-03-30|COLLECT COD|MAIL|ly bold theodolites above the blithely e| +45194|538505|1016|2|31|47847.88|0.07|0.04|N|O|1998-05-13|1998-05-27|1998-05-23|DELIVER IN PERSON|TRUCK| ironic dep| +45194|645284|20309|3|15|18438.75|0.06|0.03|N|O|1998-06-01|1998-05-17|1998-06-03|NONE|FOB|riously across the car| +45195|173618|23619|1|44|74430.84|0.07|0.02|A|F|1994-01-07|1993-10-30|1994-01-14|DELIVER IN PERSON|REG AIR|excuses. carefully ironic h| +45195|981277|43797|2|49|66553.27|0.00|0.04|A|F|1993-11-27|1993-10-26|1993-12-26|COLLECT COD|REG AIR|arefully along t| +45195|311491|49010|3|15|22537.20|0.01|0.00|R|F|1993-10-28|1993-11-11|1993-11-19|TAKE BACK RETURN|FOB|ully unusual attai| +45196|254649|17155|1|36|57730.68|0.04|0.04|N|O|1997-09-10|1997-08-09|1997-09-14|DELIVER IN PERSON|TRUCK|oost idly requests. car| +45197|801436|1437|1|16|21398.24|0.04|0.05|N|O|1995-11-17|1995-10-10|1995-11-24|DELIVER IN PERSON|FOB| theodolites. careful| +45197|719974|45003|2|48|95709.12|0.05|0.06|N|O|1995-10-08|1995-11-18|1995-10-29|TAKE BACK RETURN|TRUCK|ironic gifts promise according to the r| +45197|588827|13850|3|2|3831.60|0.10|0.00|N|O|1995-12-19|1995-11-19|1996-01-09|NONE|TRUCK| even deposits are blith| +45197|410636|35653|4|23|35572.03|0.07|0.03|N|O|1995-09-28|1995-09-30|1995-10-12|TAKE BACK RETURN|RAIL|. quickly even | +45197|545283|7794|5|45|59771.70|0.01|0.07|N|O|1995-09-26|1995-10-04|1995-09-27|COLLECT COD|FOB|uriously unusual packages mold slyl| +45197|570579|33091|6|12|19794.60|0.08|0.03|N|O|1995-10-31|1995-09-21|1995-11-19|DELIVER IN PERSON|AIR|ly final deposits. bold theodolites| +45197|719541|7084|7|46|71783.46|0.04|0.05|N|O|1995-11-30|1995-10-03|1995-12-18|COLLECT COD|MAIL|counts. re| +45198|315861|15862|1|16|30029.60|0.00|0.05|R|F|1994-09-25|1994-09-10|1994-10-04|COLLECT COD|REG AIR|dolites wake across the bold, silent the| +45199|882682|7717|1|35|58262.40|0.04|0.06|N|O|1996-10-23|1997-01-01|1996-10-31|COLLECT COD|RAIL|ake blithely| +45199|232504|32505|2|48|68951.52|0.08|0.07|N|O|1996-11-01|1996-12-21|1996-11-20|COLLECT COD|TRUCK| affix permanently. final, spec| +45224|329387|16906|1|42|59487.54|0.06|0.07|R|F|1994-06-25|1994-06-04|1994-07-19|TAKE BACK RETURN|RAIL|posits. furious| +45224|995343|32901|2|42|60408.60|0.07|0.07|R|F|1994-07-02|1994-06-02|1994-07-23|NONE|FOB|ent braids wake. bl| +45224|716562|4105|3|32|50512.96|0.04|0.07|A|F|1994-07-07|1994-05-01|1994-07-29|NONE|REG AIR|he even do| +45224|248729|23738|4|39|65430.69|0.10|0.04|R|F|1994-07-07|1994-05-02|1994-07-27|TAKE BACK RETURN|REG AIR|ly even pinto beans p| +45224|385822|35823|5|40|76312.40|0.00|0.04|A|F|1994-06-29|1994-04-27|1994-06-30|NONE|SHIP|. packages mold. regular instructions aff| +45224|506483|6484|6|13|19362.98|0.02|0.02|A|F|1994-04-01|1994-05-24|1994-05-01|DELIVER IN PERSON|FOB|l pinto beans. blithely even pinto| +45225|702692|15207|1|39|66091.74|0.08|0.07|N|O|1998-01-04|1998-01-13|1998-01-28|TAKE BACK RETURN|RAIL|across the express packages. regular requ| +45225|144289|19294|2|45|59997.60|0.07|0.03|N|O|1998-01-02|1998-02-14|1998-01-21|NONE|MAIL|to the deposits. fur| +45225|55637|5638|3|50|79631.50|0.05|0.03|N|O|1998-03-21|1998-01-17|1998-04-15|NONE|REG AIR|s are slyly epitaphs. f| +45225|76802|1805|4|12|21345.60|0.02|0.05|N|O|1997-12-04|1998-02-16|1997-12-25|DELIVER IN PERSON|REG AIR|ess accounts are. packages sleep | +45226|13309|13310|1|50|61115.00|0.03|0.02|A|F|1993-05-16|1993-04-16|1993-05-27|DELIVER IN PERSON|MAIL|sh among the ideas. quickly ironi| +45226|669291|19292|2|40|50410.40|0.02|0.07|A|F|1993-02-28|1993-04-23|1993-03-17|DELIVER IN PERSON|MAIL| grouches hang slyly blithely fina| +45226|765850|3396|3|31|59390.42|0.02|0.07|A|F|1993-03-22|1993-04-01|1993-03-24|DELIVER IN PERSON|REG AIR| instructions. final id| +45226|633061|20598|4|2|1988.06|0.04|0.08|A|F|1993-03-02|1993-05-05|1993-03-31|DELIVER IN PERSON|TRUCK|tly quiet accoun| +45227|981850|19408|1|21|40568.01|0.03|0.05|R|F|1994-05-09|1994-07-16|1994-05-24|TAKE BACK RETURN|FOB| are among | +45227|938309|13346|2|29|39070.54|0.02|0.01|R|F|1994-07-11|1994-06-28|1994-07-13|NONE|SHIP|y fluffily | +45227|148842|11345|3|3|5672.52|0.03|0.02|R|F|1994-08-19|1994-06-17|1994-09-18|TAKE BACK RETURN|SHIP|inal ideas cajole.| +45228|65006|27508|1|7|6797.00|0.02|0.08|N|O|1996-05-19|1996-04-07|1996-05-30|COLLECT COD|AIR|nding orbits. deposits are. b| +45228|539470|27001|2|5|7547.25|0.00|0.02|N|O|1996-03-16|1996-04-18|1996-03-27|NONE|REG AIR|kly regular asymptotes according to th| +45228|865113|27631|3|41|44200.87|0.03|0.08|N|O|1996-04-12|1996-04-07|1996-05-08|NONE|SHIP|deposits impress carefull| +45228|951685|14205|4|11|19103.04|0.09|0.06|N|O|1996-04-10|1996-04-08|1996-04-23|NONE|AIR|accounts along the f| +45228|955649|5650|5|20|34092.00|0.10|0.03|N|O|1996-06-02|1996-03-18|1996-06-19|TAKE BACK RETURN|TRUCK| are. final dep| +45229|109956|22459|1|24|47182.80|0.00|0.04|A|F|1993-02-27|1993-05-09|1993-03-07|NONE|REG AIR|osits. blithely bold requests wak| +45229|19552|44553|2|20|29431.00|0.04|0.08|A|F|1993-05-08|1993-05-04|1993-05-16|DELIVER IN PERSON|SHIP|kly final deposits. slyly pendi| +45229|603747|28772|3|35|57774.85|0.07|0.05|R|F|1993-03-17|1993-04-10|1993-04-12|TAKE BACK RETURN|RAIL|. ironic, bold court| +45229|174018|36522|4|33|36036.33|0.00|0.04|R|F|1993-06-01|1993-05-10|1993-06-27|COLLECT COD|REG AIR| carefully special foxes. thin,| +45230|864888|39923|1|10|18528.40|0.07|0.06|A|F|1994-11-01|1994-12-29|1994-11-18|NONE|RAIL|pinto beans affix boldly carefully e| +45230|163487|38494|2|46|71322.08|0.01|0.07|A|F|1994-10-26|1994-12-16|1994-11-12|NONE|TRUCK|leep. fluffily final packages cajol| +45230|720054|20055|3|40|42960.80|0.00|0.08|A|F|1994-11-10|1994-12-01|1994-11-25|DELIVER IN PERSON|AIR|press asymptotes. ideas aga| +45230|933390|33391|4|33|46970.55|0.02|0.07|A|F|1995-01-10|1995-01-02|1995-01-11|COLLECT COD|MAIL|blithely. carefully express de| +45230|471101|46120|5|27|28946.16|0.02|0.06|R|F|1995-02-06|1994-12-30|1995-02-13|DELIVER IN PERSON|REG AIR|es engage along the ironic, even asymptotes| +45230|784031|9062|6|29|32335.00|0.07|0.01|R|F|1995-01-20|1994-12-07|1995-01-31|NONE|REG AIR|telets cajole carefully among the qui| +45230|204594|42107|7|5|7492.90|0.08|0.03|A|F|1994-12-19|1995-01-08|1995-01-02|TAKE BACK RETURN|TRUCK| requests are. never special theod| +45231|598161|35695|1|39|49106.46|0.05|0.07|A|F|1992-04-17|1992-04-03|1992-04-29|TAKE BACK RETURN|RAIL|ly final sheaves ha| +45231|285113|47619|2|34|37335.40|0.08|0.05|A|F|1992-04-14|1992-05-08|1992-04-29|DELIVER IN PERSON|AIR|nding platelets. carefully| +45231|877513|40031|3|23|34280.81|0.03|0.04|R|F|1992-03-01|1992-03-28|1992-03-05|DELIVER IN PERSON|FOB|ly against the furious| +45231|354914|29929|4|42|82693.80|0.09|0.06|A|F|1992-05-08|1992-04-16|1992-05-11|DELIVER IN PERSON|SHIP| furiously unusual packages ca| +45231|32711|45212|5|38|62460.98|0.00|0.07|R|F|1992-05-02|1992-03-24|1992-05-18|COLLECT COD|RAIL| fluffily about the silent | +45231|758316|45862|6|17|23362.76|0.10|0.06|R|F|1992-04-30|1992-03-30|1992-05-07|DELIVER IN PERSON|FOB|ts after the carefully express pinto | +45231|7008|44509|7|19|17385.00|0.00|0.06|R|F|1992-03-16|1992-04-20|1992-04-07|NONE|RAIL| even platelets! pac| +45256|781395|43911|1|16|23621.76|0.06|0.00|A|F|1992-06-17|1992-05-15|1992-06-18|TAKE BACK RETURN|REG AIR|deposits. carefully | +45256|898179|35731|2|44|51793.72|0.04|0.02|R|F|1992-04-17|1992-04-27|1992-05-12|COLLECT COD|MAIL|express excuses. final, bold packages| +45256|686521|49035|3|1|1507.49|0.03|0.02|R|F|1992-06-17|1992-05-08|1992-07-11|COLLECT COD|SHIP|nag slyly above the express| +45256|347656|10163|4|24|40887.36|0.02|0.01|R|F|1992-05-07|1992-06-15|1992-05-27|DELIVER IN PERSON|MAIL| the even, ironi| +45257|141296|28803|1|7|9361.03|0.06|0.04|N|O|1996-05-27|1996-05-12|1996-06-11|DELIVER IN PERSON|RAIL|about the ironic, final pinto| +45257|758950|46496|2|18|36160.56|0.00|0.04|N|O|1996-04-30|1996-06-23|1996-05-12|TAKE BACK RETURN|AIR|ly regular accounts wake ar| +45257|668269|43296|3|11|13609.53|0.00|0.00|N|O|1996-06-04|1996-06-23|1996-07-01|TAKE BACK RETURN|MAIL|eas. carefully final court| +45257|581773|31774|4|17|31530.75|0.01|0.06|N|O|1996-04-29|1996-05-02|1996-05-24|COLLECT COD|SHIP|n dolphins| +45257|846996|9513|5|5|9714.75|0.10|0.06|N|O|1996-06-17|1996-04-30|1996-06-27|TAKE BACK RETURN|MAIL|eep carefully pending excuses-- unusual, ev| +45257|445180|32705|6|11|12376.76|0.06|0.05|N|O|1996-07-09|1996-04-28|1996-07-28|TAKE BACK RETURN|FOB|fluffily. special theodolites integrate c| +45258|291199|41200|1|37|44036.66|0.10|0.01|N|O|1998-03-02|1998-02-21|1998-03-08|NONE|MAIL| regular requests-- furiously reg| +45258|178960|16470|2|10|20389.60|0.00|0.05|N|O|1998-02-06|1998-03-03|1998-03-06|COLLECT COD|FOB|ular accounts around the iro| +45258|768093|43124|3|3|3483.18|0.00|0.07|N|O|1998-01-19|1998-02-04|1998-01-22|DELIVER IN PERSON|RAIL|ackages across the furiously r| +45258|329144|41651|4|14|16423.82|0.04|0.03|N|O|1998-02-20|1998-02-12|1998-03-11|TAKE BACK RETURN|FOB|totes. blithely spec| +45259|953673|16193|1|11|18992.93|0.03|0.07|N|O|1997-10-20|1997-11-08|1997-11-19|NONE|AIR|thely final requests eat above the asympt| +45259|369299|31807|2|22|30102.16|0.03|0.02|N|O|1997-08-26|1997-11-02|1997-09-09|NONE|RAIL| cajole along the foxes. quickly even dugo| +45259|800981|982|3|23|43284.62|0.07|0.08|N|O|1997-10-22|1997-10-04|1997-10-23|DELIVER IN PERSON|SHIP| ideas. pend| +45259|77665|2668|4|20|32853.20|0.05|0.03|N|O|1997-10-24|1997-10-05|1997-11-18|NONE|RAIL|sleep blithely fina| +45259|306386|18893|5|42|58479.54|0.08|0.01|N|O|1997-09-29|1997-09-25|1997-10-21|TAKE BACK RETURN|REG AIR|yly ironic packages haggle furiously caref| +45259|414408|14409|6|23|30414.74|0.07|0.03|N|O|1997-12-15|1997-09-20|1997-12-19|COLLECT COD|MAIL|al sauternes affix quickly. carefully iro| +45259|947163|22200|7|14|16941.68|0.06|0.05|N|O|1997-08-25|1997-10-13|1997-09-22|DELIVER IN PERSON|MAIL|ites. pinto beans snooze fluffil| +45260|953057|40615|1|19|21090.19|0.07|0.04|N|O|1996-02-04|1996-02-03|1996-02-25|DELIVER IN PERSON|AIR|pinto beans. blithe| +45261|995768|20807|1|32|59639.04|0.10|0.02|R|F|1993-10-30|1993-11-11|1993-11-29|TAKE BACK RETURN|RAIL|t the blit| +45261|864988|40023|2|7|13670.58|0.03|0.02|R|F|1993-11-14|1993-11-17|1993-11-30|TAKE BACK RETURN|RAIL|cial requests. furiously idle excuses slee| +45261|839050|1567|3|38|37582.38|0.08|0.07|R|F|1993-10-16|1993-12-13|1993-10-17|TAKE BACK RETURN|MAIL|ng the slyly final requests. fluffily| +45262|614713|2250|1|23|37436.64|0.08|0.04|N|O|1998-07-08|1998-04-26|1998-07-17|COLLECT COD|FOB|instead of the furious multipl| +45262|474136|11664|2|36|39963.96|0.08|0.07|N|O|1998-06-14|1998-06-17|1998-07-13|DELIVER IN PERSON|SHIP|boost carefully. accounts haggle careful| +45262|790076|40077|3|33|38479.32|0.08|0.02|N|O|1998-04-23|1998-05-15|1998-05-04|TAKE BACK RETURN|AIR|y regular sauternes haggle furi| +45263|39888|14889|1|42|76770.96|0.07|0.04|A|F|1995-03-14|1995-04-05|1995-04-02|NONE|RAIL|y use slyly slyly regular pinto beans.| +45263|393682|31204|2|36|63924.12|0.03|0.07|N|F|1995-05-19|1995-05-05|1995-06-18|COLLECT COD|REG AIR|y slow accounts use slyly arou| +45263|606549|44086|3|32|46576.32|0.01|0.07|A|F|1995-02-28|1995-05-04|1995-03-27|NONE|AIR|s nag carefully around the quietly reg| +45263|260312|47828|4|33|41985.90|0.01|0.08|A|F|1995-04-27|1995-05-09|1995-05-06|DELIVER IN PERSON|AIR|gle furiously regular packages| +45263|61592|24094|5|25|38839.75|0.06|0.08|R|F|1995-06-05|1995-05-02|1995-06-11|NONE|SHIP|nto beans are carefully express sentiments.| +45288|25201|202|1|10|11262.00|0.04|0.08|N|O|1996-12-30|1997-01-14|1997-01-22|TAKE BACK RETURN|MAIL|lphins cajole among the sometimes| +45289|79498|29499|1|21|31027.29|0.09|0.04|R|F|1994-03-22|1994-04-21|1994-04-15|NONE|MAIL|ggle-- blithely regular orbits d| +45289|109676|22179|2|24|40456.08|0.09|0.04|R|F|1994-05-04|1994-03-19|1994-05-26|TAKE BACK RETURN|SHIP|e furiously reg| +45289|313267|25774|3|3|3840.75|0.06|0.03|A|F|1994-02-12|1994-03-26|1994-03-01|DELIVER IN PERSON|MAIL|ending dino| +45289|64839|2343|4|11|19842.13|0.02|0.01|R|F|1994-04-07|1994-04-28|1994-04-09|COLLECT COD|AIR| deposits are about the | +45290|283049|20565|1|34|35089.02|0.05|0.07|A|F|1994-09-15|1994-09-11|1994-10-06|COLLECT COD|FOB|dolites. express excuses int| +45290|196507|9011|2|7|11224.50|0.05|0.08|R|F|1994-10-22|1994-08-09|1994-11-04|COLLECT COD|SHIP| accounts haggle fluffil| +45291|996259|33817|1|48|65050.08|0.01|0.05|R|F|1994-07-07|1994-08-31|1994-07-12|NONE|MAIL|the final dep| +45291|108933|8934|2|34|66025.62|0.10|0.02|R|F|1994-07-15|1994-07-23|1994-07-20|DELIVER IN PERSON|SHIP|lent ideas afte| +45291|825880|13429|3|50|90292.00|0.05|0.06|R|F|1994-08-17|1994-09-03|1994-08-19|DELIVER IN PERSON|AIR| requests. ideas sleep express instructions| +45291|552354|2355|4|27|37970.91|0.06|0.02|R|F|1994-09-11|1994-07-22|1994-10-01|COLLECT COD|TRUCK|xcuses cajole furio| +45291|397741|10249|5|48|88259.04|0.10|0.05|A|F|1994-08-29|1994-09-11|1994-09-22|COLLECT COD|AIR|lithely among the quickly even asympt| +45291|828509|28510|6|21|30186.66|0.03|0.00|R|F|1994-08-15|1994-09-04|1994-09-08|COLLECT COD|FOB|ickly silent deposits. foxes sleep quick| +45291|741138|3653|7|10|11791.00|0.07|0.07|A|F|1994-06-20|1994-08-25|1994-06-29|COLLECT COD|MAIL|kly regular deposits. sly| +45292|296426|46427|1|6|8534.46|0.02|0.07|N|O|1997-12-10|1997-11-03|1997-12-31|TAKE BACK RETURN|MAIL|s. even requests according to the qu| +45292|17973|5474|2|45|85093.65|0.04|0.06|N|O|1997-12-04|1997-12-11|1997-12-13|TAKE BACK RETURN|AIR|es wake bl| +45292|55646|18148|3|34|54455.76|0.06|0.05|N|O|1997-09-26|1997-11-11|1997-10-10|TAKE BACK RETURN|AIR|ons use quickl| +45292|239035|26548|4|49|47726.98|0.03|0.02|N|O|1997-12-11|1997-11-23|1998-01-10|TAKE BACK RETURN|AIR|iously regular| +45292|457226|19736|5|3|3549.60|0.03|0.07|N|O|1997-12-31|1997-10-28|1998-01-25|TAKE BACK RETURN|RAIL| theodolites; final, regular pi| +45292|592084|17107|6|28|32929.68|0.00|0.04|N|O|1997-12-19|1997-11-13|1997-12-23|COLLECT COD|SHIP|nstructions detect s| +45292|150399|12903|7|2|2898.78|0.09|0.03|N|O|1997-09-24|1997-11-27|1997-10-17|NONE|RAIL| fluffy, ev| +45293|745373|45374|1|10|14183.40|0.03|0.04|A|F|1993-06-21|1993-07-27|1993-07-03|DELIVER IN PERSON|RAIL|ck requests. requests haggl| +45293|474264|11792|2|10|12382.40|0.05|0.06|A|F|1993-08-26|1993-08-14|1993-09-18|TAKE BACK RETURN|SHIP| the blithely regular| +45293|953700|28739|3|47|82422.02|0.10|0.08|A|F|1993-07-03|1993-06-25|1993-07-26|COLLECT COD|FOB|se beyond th| +45293|819777|44810|4|29|49205.17|0.01|0.07|A|F|1993-08-16|1993-07-13|1993-09-12|NONE|TRUCK|odolites. pending depths accordin| +45293|984529|47049|5|37|59698.76|0.08|0.07|A|F|1993-06-07|1993-06-26|1993-06-19|NONE|MAIL|ts. fluffi| +45294|963826|26346|1|31|58583.18|0.07|0.01|N|O|1997-07-30|1997-08-02|1997-08-25|NONE|MAIL|aringly express excuses e| +45294|18968|43969|2|28|52834.88|0.02|0.02|N|O|1997-08-31|1997-08-17|1997-09-10|NONE|TRUCK| ironic braids use never slyly ir| +45294|794121|31667|3|7|8505.63|0.00|0.08|N|O|1997-08-19|1997-09-03|1997-08-21|DELIVER IN PERSON|AIR|ng excuses haggle thinly toward the re| +45294|789595|14626|4|20|33691.20|0.03|0.01|N|O|1997-08-31|1997-08-15|1997-09-06|TAKE BACK RETURN|MAIL|counts at the deposits haggle carefully| +45294|716754|41783|5|49|86765.28|0.04|0.03|N|O|1997-10-07|1997-08-25|1997-10-31|DELIVER IN PERSON|FOB|slyly. special as| +45294|471433|46452|6|24|33705.84|0.06|0.08|N|O|1997-10-17|1997-07-22|1997-11-14|COLLECT COD|FOB|ccounts. req| +45295|888030|25582|1|29|29521.71|0.04|0.05|N|O|1998-07-12|1998-06-21|1998-07-29|COLLECT COD|FOB|e along the qui| +45295|112212|37217|2|42|51416.82|0.10|0.06|N|O|1998-05-08|1998-06-01|1998-05-14|DELIVER IN PERSON|FOB|ns. quickly regular packages alongsid| +45320|816586|41619|1|22|33055.88|0.06|0.04|R|F|1993-09-06|1993-08-01|1993-10-06|NONE|SHIP|lithely pending platelet| +45320|359773|34788|2|34|62313.84|0.06|0.08|R|F|1993-06-28|1993-07-22|1993-07-16|NONE|SHIP|ly blithely| +45320|689917|39918|3|10|19068.80|0.04|0.06|R|F|1993-06-29|1993-07-14|1993-07-20|DELIVER IN PERSON|RAIL|ake since the excuses! requests| +45320|424686|24687|4|4|6442.64|0.01|0.01|A|F|1993-06-03|1993-08-11|1993-07-03|COLLECT COD|REG AIR|ding to the packages. final, brave| +45320|696662|9176|5|11|18244.93|0.03|0.08|A|F|1993-08-08|1993-07-16|1993-09-04|NONE|SHIP|ar platelets h| +45320|797832|22863|6|45|86841.00|0.06|0.06|R|F|1993-08-16|1993-08-10|1993-09-04|NONE|TRUCK|ons are boldly carefully ir| +45320|146443|8946|7|28|41704.32|0.05|0.02|A|F|1993-07-05|1993-08-28|1993-07-22|DELIVER IN PERSON|SHIP|ts dazzle quickly. | +45321|252994|15500|1|48|93455.04|0.00|0.07|N|O|1995-10-12|1995-10-29|1995-10-27|NONE|TRUCK|after the special, re| +45321|55392|5393|2|46|61979.94|0.06|0.06|N|O|1995-09-22|1995-10-17|1995-10-04|NONE|FOB|press realms promise with| +45322|703467|28496|1|32|47053.76|0.05|0.02|N|O|1998-06-18|1998-04-26|1998-06-20|DELIVER IN PERSON|RAIL|egular, fin| +45322|154172|4173|2|7|8583.19|0.06|0.08|N|O|1998-03-16|1998-05-16|1998-03-18|TAKE BACK RETURN|RAIL|ickly after the blithely final p| +45322|162396|37403|3|11|16042.29|0.00|0.00|N|O|1998-04-07|1998-04-19|1998-05-03|NONE|RAIL|ages haggle carefully | +45322|382362|19884|4|33|47663.55|0.01|0.00|N|O|1998-05-16|1998-05-12|1998-06-05|NONE|REG AIR|ly even accounts according t| +45323|937467|37468|1|18|27079.56|0.04|0.04|N|O|1997-10-04|1997-12-08|1997-10-23|COLLECT COD|MAIL|ithely across the carefully express package| +45323|992247|29805|2|12|16070.40|0.04|0.00|N|O|1997-11-27|1997-12-17|1997-12-20|NONE|MAIL|arefully ironic packages are closely a| +45323|691422|41423|3|19|26854.41|0.08|0.00|N|O|1998-01-05|1997-12-06|1998-01-18|TAKE BACK RETURN|TRUCK|s. even re| +45323|719684|7227|4|37|63035.05|0.10|0.03|N|O|1997-10-03|1997-12-08|1997-10-31|DELIVER IN PERSON|SHIP|uctions haggle qui| +45324|685189|35190|1|39|45791.85|0.08|0.03|N|O|1997-05-18|1997-03-30|1997-05-24|NONE|SHIP|lar dolphins sleep slyly across the final,| +45324|962706|25226|2|5|8843.30|0.04|0.03|N|O|1997-05-07|1997-04-05|1997-06-05|COLLECT COD|AIR|eposits? furiously re| +45324|196026|8530|3|21|23562.42|0.00|0.05|N|O|1997-05-06|1997-04-18|1997-05-25|NONE|REG AIR|es use with the furiously pendi| +45324|600605|606|4|31|46672.67|0.05|0.00|N|O|1997-04-28|1997-05-15|1997-05-20|COLLECT COD|REG AIR|ful foxes sleep carefully bold instruct| +45324|364159|1681|5|50|61157.00|0.02|0.01|N|O|1997-06-14|1997-05-13|1997-07-07|DELIVER IN PERSON|REG AIR|al deposits? slyly regular p| +45325|845150|20183|1|44|48184.84|0.01|0.06|N|O|1998-07-13|1998-05-24|1998-07-15|COLLECT COD|AIR|o the blithely final deposits. slyly | +45325|434045|46554|2|15|14685.30|0.02|0.04|N|O|1998-05-24|1998-06-14|1998-06-18|TAKE BACK RETURN|SHIP|te quickly across the fluf| +45326|755851|30882|1|45|85806.90|0.05|0.07|A|F|1995-03-01|1995-04-06|1995-03-18|DELIVER IN PERSON|TRUCK|arefully bold gifts after the ironic| +45327|86781|49283|1|48|84853.44|0.02|0.08|N|O|1997-04-20|1997-03-18|1997-04-21|DELIVER IN PERSON|FOB|structions. slyly even foxes poa| +45352|694639|44640|1|11|17969.60|0.00|0.02|R|F|1992-05-07|1992-03-24|1992-05-23|DELIVER IN PERSON|MAIL|symptotes nag along the blithely| +45352|786567|24113|2|18|29763.54|0.02|0.04|R|F|1992-02-13|1992-03-19|1992-02-19|COLLECT COD|REG AIR|ns. ironic deposits are blith| +45352|828989|28990|3|26|49866.44|0.01|0.08|R|F|1992-05-03|1992-05-06|1992-05-14|NONE|REG AIR|osits wake blithely slyly | +45352|802987|15504|4|27|51028.38|0.04|0.08|A|F|1992-05-12|1992-05-08|1992-06-08|TAKE BACK RETURN|REG AIR|ly ironic instructions across | +45352|793538|18569|5|33|53839.50|0.08|0.04|A|F|1992-03-26|1992-04-24|1992-04-15|TAKE BACK RETURN|SHIP|sly along the fluffily regular i| +45352|993102|30660|6|11|13145.66|0.01|0.06|R|F|1992-05-26|1992-03-23|1992-06-05|TAKE BACK RETURN|AIR|y express pinto| +45353|377087|14609|1|41|47726.87|0.09|0.07|N|O|1997-09-21|1997-09-30|1997-09-22|NONE|RAIL|ffix. special, pending dependencies cajol| +45354|391648|29170|1|19|33052.97|0.01|0.03|R|F|1993-04-18|1993-03-27|1993-05-09|COLLECT COD|MAIL|oubt furiously furi| +45354|415975|40992|2|10|18909.50|0.04|0.05|R|F|1993-03-18|1993-04-01|1993-03-27|NONE|MAIL|yly ironic accounts s| +45354|280594|5605|3|24|37789.92|0.04|0.08|R|F|1993-03-03|1993-04-16|1993-04-02|NONE|AIR| dependencies nag along the carefully f| +45355|650450|25477|1|13|18205.46|0.09|0.03|R|F|1994-02-27|1994-05-09|1994-03-20|DELIVER IN PERSON|FOB| ironic packages. blithely even deposit| +45355|103515|16018|2|17|25814.67|0.02|0.02|A|F|1994-02-20|1994-04-09|1994-03-15|NONE|AIR|ending pla| +45355|763890|13891|3|26|50800.36|0.05|0.05|R|F|1994-05-17|1994-05-09|1994-06-11|DELIVER IN PERSON|RAIL|l instructions wake carefully pending requ| +45355|688265|13292|4|22|27571.06|0.02|0.08|R|F|1994-06-09|1994-04-26|1994-06-26|DELIVER IN PERSON|SHIP|ies believe above the furiou| +45355|660117|47657|5|34|36620.72|0.02|0.00|R|F|1994-05-02|1994-03-15|1994-05-10|COLLECT COD|AIR|ld deposits wake slyly even instr| +45355|580193|5216|6|1|1273.17|0.00|0.04|R|F|1994-04-18|1994-04-22|1994-04-25|NONE|TRUCK| slyly quickly | +45355|291788|16799|7|2|3559.54|0.10|0.01|A|F|1994-02-28|1994-04-08|1994-03-03|NONE|FOB|sly ironic p| +45356|73885|23886|1|16|29742.08|0.00|0.00|N|O|1997-01-07|1996-11-08|1997-01-09|COLLECT COD|REG AIR|ithely. blithely final pac| +45357|104024|41531|1|6|6168.12|0.02|0.04|A|F|1992-08-02|1992-07-09|1992-08-24|COLLECT COD|RAIL|riously silent packages. furiou| +45357|322659|10178|2|10|16816.40|0.02|0.08|R|F|1992-06-19|1992-07-05|1992-07-10|COLLECT COD|RAIL|xpress excuses are slyly iron| +45357|914160|39197|3|14|16437.68|0.10|0.06|A|F|1992-07-15|1992-06-03|1992-08-12|COLLECT COD|MAIL|, final accounts. even accounts are a| +45357|283968|46474|4|4|7807.80|0.09|0.01|R|F|1992-05-14|1992-06-10|1992-05-19|COLLECT COD|AIR|fully fluffy deposits eat fluffily regular| +45358|881313|6348|1|34|44005.18|0.06|0.07|R|F|1994-11-17|1994-11-16|1994-11-22|TAKE BACK RETURN|REG AIR| the final | +45358|227565|27566|2|20|29851.00|0.07|0.00|A|F|1995-01-15|1994-12-05|1995-01-25|TAKE BACK RETURN|FOB|final frets. furiously even pinto beans | +45358|676220|13760|3|42|50239.98|0.09|0.03|A|F|1995-01-18|1994-11-10|1995-01-23|COLLECT COD|RAIL|ole carefully. carefully s| +45359|725861|13404|1|30|56604.90|0.01|0.02|N|O|1997-09-22|1997-09-29|1997-10-07|COLLECT COD|FOB|ess requests are furiously fu| +45359|542474|42475|2|13|19713.85|0.01|0.04|N|O|1997-11-03|1997-10-20|1997-11-26|TAKE BACK RETURN|SHIP|s: carefully final packages wake sl| +45359|351096|13604|3|9|10323.72|0.01|0.02|N|O|1997-09-20|1997-10-09|1997-10-19|NONE|AIR|ronic, bold requests cajole | +45359|864700|27218|4|20|33293.20|0.06|0.06|N|O|1997-09-21|1997-10-23|1997-10-09|NONE|SHIP| fluffily;| +45384|956999|32038|1|22|45230.90|0.02|0.05|A|F|1994-04-10|1994-06-18|1994-04-28|DELIVER IN PERSON|SHIP| courts. blithel| +45384|265776|28282|2|9|15675.84|0.03|0.00|A|F|1994-04-02|1994-05-30|1994-04-17|TAKE BACK RETURN|TRUCK|ely careful instructions| +45384|891545|29097|3|31|47631.50|0.00|0.05|R|F|1994-06-21|1994-06-01|1994-06-29|DELIVER IN PERSON|TRUCK|regular requ| +45384|181154|43658|4|22|27173.30|0.06|0.03|A|F|1994-05-31|1994-05-02|1994-06-17|COLLECT COD|FOB|telets after the blithely regular accounts| +45384|654092|4093|5|10|10460.60|0.09|0.06|A|F|1994-06-01|1994-06-19|1994-07-01|TAKE BACK RETURN|REG AIR|quests. quickly final deposits boost quick| +45385|895184|32736|1|10|11791.40|0.08|0.08|N|O|1997-03-29|1997-06-08|1997-04-28|NONE|FOB|ar, idle accoun| +45385|343761|6268|2|38|68580.50|0.04|0.00|N|O|1997-07-10|1997-05-25|1997-08-04|COLLECT COD|REG AIR| beans. unusual accounts use furiously en| +45385|576164|26165|3|9|11161.26|0.01|0.03|N|O|1997-07-15|1997-05-08|1997-08-09|TAKE BACK RETURN|REG AIR|counts are. furiously thin | +45385|574347|24348|4|12|17055.84|0.05|0.00|N|O|1997-05-20|1997-04-24|1997-05-30|NONE|REG AIR|its. carefully even deposits | +45385|45035|45036|5|15|14700.45|0.02|0.01|N|O|1997-04-10|1997-05-29|1997-04-29|TAKE BACK RETURN|AIR|ly express packages might doubt. f| +45385|889526|14561|6|23|34856.04|0.01|0.00|N|O|1997-06-18|1997-05-15|1997-07-18|DELIVER IN PERSON|AIR|equests integrate final instructions. cl| +45386|429203|4220|1|17|19247.06|0.08|0.03|N|F|1995-06-15|1995-05-11|1995-07-09|TAKE BACK RETURN|AIR|arefully bold asymptotes wake carefu| +45387|668309|18310|1|16|20436.32|0.09|0.01|R|F|1993-09-25|1993-08-21|1993-10-12|COLLECT COD|MAIL|y ironic packages. ironic packag| +45387|259904|9905|2|29|54052.81|0.09|0.08|A|F|1993-06-19|1993-08-12|1993-07-10|DELIVER IN PERSON|AIR|bout the bl| +45387|201725|26734|3|18|29280.78|0.09|0.03|R|F|1993-06-29|1993-08-23|1993-07-20|TAKE BACK RETURN|FOB|blithely even pinto beans poach after the| +45387|379532|4547|4|7|11280.64|0.08|0.06|A|F|1993-09-24|1993-07-25|1993-09-30|NONE|RAIL|s. furiously iro| +45388|42954|5455|1|33|62599.35|0.06|0.03|A|F|1994-10-01|1994-09-17|1994-10-11|COLLECT COD|AIR|ly regular req| +45389|370642|8164|1|16|27402.08|0.02|0.01|R|F|1992-05-11|1992-06-22|1992-05-30|COLLECT COD|RAIL|eodolites-- furiously ironic t| +45389|367957|5479|2|34|68847.96|0.04|0.06|A|F|1992-06-17|1992-06-16|1992-06-22|COLLECT COD|SHIP|lar platelets engage deposits. slyly | +45389|239038|1543|3|2|1954.04|0.00|0.04|R|F|1992-07-10|1992-07-13|1992-07-18|NONE|SHIP|s. deposits a| +45389|495090|7600|4|42|45572.94|0.09|0.05|A|F|1992-06-27|1992-07-22|1992-07-15|COLLECT COD|MAIL|the carefully bold courts. | +45389|971903|46942|5|20|39497.20|0.07|0.00|A|F|1992-06-27|1992-06-25|1992-07-07|DELIVER IN PERSON|REG AIR|regular requests toward the carefully exp| +45389|768948|43979|6|21|42355.11|0.02|0.01|A|F|1992-05-22|1992-06-08|1992-06-10|TAKE BACK RETURN|TRUCK|usly. final, regular acco| +45390|2159|2160|1|40|42446.00|0.08|0.01|N|O|1997-11-07|1997-09-25|1997-11-30|NONE|TRUCK|s sleep carefully regular requests. r| +45390|278243|40749|2|15|18318.45|0.00|0.06|N|O|1997-11-09|1997-09-01|1997-11-18|TAKE BACK RETURN|SHIP|. furiously ironic accounts run| +45390|421630|46647|3|36|55857.96|0.00|0.04|N|O|1997-11-09|1997-09-25|1997-11-30|TAKE BACK RETURN|REG AIR|inst the regular instructions| +45390|332029|19548|4|43|45623.43|0.02|0.03|N|O|1997-08-19|1997-10-11|1997-09-02|TAKE BACK RETURN|FOB|ests? quickly reg| +45390|400417|25434|5|42|55330.38|0.05|0.03|N|O|1997-11-05|1997-10-03|1997-11-29|NONE|REG AIR|ully across the furiously ex| +45390|793560|6076|6|1|1653.53|0.03|0.05|N|O|1997-09-06|1997-10-23|1997-10-01|TAKE BACK RETURN|SHIP|sts. even, bold packages a| +45390|346877|34396|7|10|19238.60|0.00|0.01|N|O|1997-11-08|1997-10-17|1997-12-02|COLLECT COD|SHIP|nic sheaves nag ca| +45391|955377|30416|1|32|45834.56|0.04|0.00|A|F|1995-04-04|1995-06-07|1995-04-14|NONE|MAIL|ackages according to the c| +45391|4466|41967|2|24|32891.04|0.04|0.06|R|F|1995-04-23|1995-06-07|1995-05-03|TAKE BACK RETURN|MAIL|braids nag carefully ironic grouches. car| +45391|49466|49467|3|21|29724.66|0.05|0.07|R|F|1995-04-10|1995-06-16|1995-05-05|TAKE BACK RETURN|FOB|sublate. carefully regular idea| +45391|364144|14145|4|37|44700.81|0.03|0.05|R|F|1995-03-26|1995-05-10|1995-04-21|COLLECT COD|REG AIR|eodolites. de| +45391|160968|23472|5|15|30434.40|0.07|0.02|A|F|1995-04-03|1995-06-04|1995-04-21|DELIVER IN PERSON|TRUCK|g deposits. special, final packages | +45391|379255|16777|6|16|21347.84|0.09|0.08|N|O|1995-07-11|1995-04-27|1995-07-14|NONE|RAIL|uickly regular deposits | +45416|77130|2133|1|34|37642.42|0.03|0.01|R|F|1994-08-09|1994-08-10|1994-08-11|DELIVER IN PERSON|TRUCK|sits boost quickly alongside of t| +45416|314623|39636|2|30|49128.30|0.05|0.05|A|F|1994-09-22|1994-08-03|1994-09-30|TAKE BACK RETURN|FOB|vely blithely bold pinto beans. furiously| +45417|641199|41200|1|48|54727.68|0.06|0.00|N|O|1996-09-04|1996-07-25|1996-10-03|TAKE BACK RETURN|SHIP|s cajole fu| +45417|616058|41083|2|16|15584.32|0.04|0.07|N|O|1996-10-17|1996-09-21|1996-10-27|TAKE BACK RETURN|FOB|endencies | +45417|84626|9629|3|4|6442.48|0.00|0.04|N|O|1996-10-09|1996-09-17|1996-11-06|DELIVER IN PERSON|TRUCK|ely even deposits haggl| +45417|301551|1552|4|24|37260.96|0.01|0.08|N|O|1996-07-24|1996-08-31|1996-07-25|TAKE BACK RETURN|REG AIR|ltipliers daz| +45417|157927|32934|5|27|53592.84|0.00|0.06|N|O|1996-10-11|1996-08-13|1996-11-02|TAKE BACK RETURN|TRUCK| blithely express courts| +45417|278621|3632|6|9|14396.49|0.02|0.06|N|O|1996-08-26|1996-09-01|1996-09-03|TAKE BACK RETURN|SHIP| asymptotes| +45418|802975|28008|1|28|52582.04|0.06|0.03|R|F|1995-04-08|1995-02-05|1995-05-06|TAKE BACK RETURN|TRUCK| final deposits wa| +45418|594757|44758|2|2|3703.46|0.00|0.06|A|F|1995-03-13|1995-02-07|1995-03-20|TAKE BACK RETURN|MAIL|equests cajole carefully regul| +45418|64821|2325|3|4|7143.28|0.04|0.00|A|F|1995-03-01|1995-02-21|1995-03-13|NONE|REG AIR|gular instructions slee| +45418|433161|20686|4|39|42671.46|0.07|0.07|R|F|1995-04-01|1995-03-13|1995-04-23|NONE|RAIL|ecial deposits. accounts will have to cajol| +45418|122386|47391|5|1|1408.38|0.06|0.02|R|F|1995-03-23|1995-04-02|1995-04-09|NONE|MAIL|ructions haggle blithely close rea| +45418|932489|7526|6|14|21300.16|0.09|0.08|A|F|1995-03-16|1995-04-03|1995-03-18|COLLECT COD|TRUCK|nal requests. express | +45419|662661|201|1|17|27601.71|0.07|0.01|R|F|1994-12-12|1994-11-25|1994-12-15|DELIVER IN PERSON|SHIP|lly regular ideas along the ex| +45419|336525|24044|2|28|43722.28|0.01|0.05|A|F|1994-10-12|1994-12-17|1994-10-29|DELIVER IN PERSON|SHIP|earls was furiously. deposits nag| +45419|960646|10647|3|4|6826.40|0.01|0.02|A|F|1994-12-09|1994-12-29|1994-12-17|DELIVER IN PERSON|RAIL|ously special accounts affix. fluffily eve| +45419|576833|26834|4|40|76392.40|0.03|0.00|R|F|1995-01-06|1994-11-18|1995-01-21|COLLECT COD|TRUCK|ously express p| +45419|822382|22383|5|46|59999.64|0.08|0.07|A|F|1995-01-03|1994-12-29|1995-02-01|COLLECT COD|TRUCK|ons. fluffily ironic dep| +45419|759541|9542|6|31|49615.81|0.05|0.04|A|F|1995-01-07|1994-11-29|1995-01-17|COLLECT COD|FOB|slyly carefully even deposits. sl| +45419|591768|4280|7|29|53932.46|0.04|0.00|A|F|1994-11-12|1994-11-28|1994-11-21|DELIVER IN PERSON|FOB|g, special ideas| +45420|841013|16046|1|33|31481.01|0.06|0.03|A|F|1993-11-24|1993-10-11|1993-12-17|TAKE BACK RETURN|TRUCK|ins sleep blithely. furi| +45421|962000|37039|1|44|46726.24|0.06|0.07|N|O|1997-10-04|1997-08-24|1997-10-10|NONE|RAIL|ts lose silently final requests. i| +45421|319996|7515|2|24|48383.52|0.06|0.07|N|O|1997-08-23|1997-09-20|1997-09-08|TAKE BACK RETURN|RAIL|onic accounts. furiously even dependen| +45421|162441|37448|3|23|34579.12|0.07|0.01|N|O|1997-10-10|1997-09-19|1997-10-22|TAKE BACK RETURN|MAIL|e under the final dependencies| +45421|135258|22765|4|19|24571.75|0.01|0.08|N|O|1997-08-22|1997-09-08|1997-08-29|DELIVER IN PERSON|AIR|re furiously unusual theodol| +45421|281033|6044|5|5|5070.10|0.05|0.00|N|O|1997-10-20|1997-08-10|1997-11-05|NONE|TRUCK|l requests. | +45421|318847|6366|6|24|44779.92|0.06|0.06|N|O|1997-08-05|1997-08-15|1997-09-02|TAKE BACK RETURN|RAIL|nts. slyly express foxes slee| +45421|855367|42919|7|44|58182.08|0.09|0.01|N|O|1997-08-20|1997-09-01|1997-08-27|DELIVER IN PERSON|SHIP|. packages nag quickly final fox| +45422|145706|20711|1|9|15765.30|0.03|0.03|N|O|1996-11-30|1996-12-24|1996-12-05|TAKE BACK RETURN|SHIP|ial deposits s| +45422|865972|41007|2|17|32944.81|0.08|0.06|N|O|1997-02-14|1997-02-02|1997-03-04|DELIVER IN PERSON|MAIL|es. final t| +45422|383502|33503|3|14|22196.86|0.04|0.01|N|O|1996-12-30|1996-12-27|1996-12-31|NONE|RAIL|fix slyly even, eve| +45422|505447|30468|4|34|49382.28|0.02|0.04|N|O|1997-01-18|1997-01-20|1997-02-04|COLLECT COD|AIR|lly bold deposits affix quickl| +45422|36014|11015|5|40|38000.40|0.02|0.04|N|O|1997-02-18|1996-12-27|1997-03-17|COLLECT COD|MAIL|platelets above the carefully | +45422|279072|29073|6|3|3153.18|0.05|0.01|N|O|1996-11-24|1997-02-05|1996-12-19|COLLECT COD|TRUCK|eposits along the silent p| +45422|362977|12978|7|49|99958.04|0.00|0.00|N|O|1997-02-16|1997-01-30|1997-03-05|TAKE BACK RETURN|MAIL|ular orbits kindle furiou| +45423|540182|15203|1|37|45219.92|0.07|0.01|A|F|1994-07-23|1994-06-05|1994-08-18|DELIVER IN PERSON|REG AIR|ounts beside the blithely| +45423|829002|29003|2|38|35376.48|0.10|0.08|R|F|1994-04-19|1994-05-09|1994-05-19|DELIVER IN PERSON|SHIP|e ironic asymptotes| +45448|430753|43262|1|27|45460.71|0.03|0.01|N|O|1997-08-16|1997-08-27|1997-09-04|COLLECT COD|MAIL|daring dolphins. ironic deposits about | +45448|657294|32321|2|7|8758.82|0.00|0.06|N|O|1997-08-06|1997-09-16|1997-08-09|NONE|SHIP|ld ideas cajole sl| +45448|134950|47453|3|25|49623.75|0.00|0.04|N|O|1997-11-08|1997-09-07|1997-12-01|COLLECT COD|FOB|osits among| +45448|97911|22914|4|17|32451.47|0.02|0.05|N|O|1997-10-18|1997-09-14|1997-11-09|NONE|REG AIR|counts wake carefully. sheaves use. slyly | +45448|577120|39632|5|46|55066.60|0.00|0.08|N|O|1997-09-27|1997-10-09|1997-10-02|DELIVER IN PERSON|FOB|ests nag furiously ironic foxes. blithely s| +45449|304254|4255|1|15|18873.60|0.08|0.01|N|O|1997-01-14|1997-01-20|1997-02-12|NONE|AIR|ronic packages. | +45449|596927|46928|2|19|38454.10|0.03|0.08|N|O|1997-03-28|1997-02-21|1997-04-12|DELIVER IN PERSON|AIR|thely silent foxes affix blithel| +45450|64771|2275|1|12|20829.24|0.01|0.03|N|O|1997-09-25|1997-09-17|1997-09-30|COLLECT COD|FOB| unusual, special instructions. carefully p| +45450|599081|36615|2|25|29501.50|0.06|0.02|N|O|1997-09-13|1997-09-23|1997-10-06|TAKE BACK RETURN|MAIL|s. carefully regular req| +45451|274763|49774|1|1|1737.75|0.03|0.01|N|O|1997-04-24|1997-05-15|1997-05-01|COLLECT COD|AIR|s. unusual foxes around| +45451|927362|14917|2|49|68076.68|0.03|0.08|N|O|1997-06-09|1997-06-02|1997-06-15|TAKE BACK RETURN|FOB|pecial pinto beans alongside of| +45451|166522|41529|3|22|34947.44|0.06|0.08|N|O|1997-04-26|1997-04-16|1997-05-11|TAKE BACK RETURN|SHIP|lly slyly pending dependencies-- f| +45452|636968|11993|1|34|64767.62|0.04|0.05|N|O|1996-10-26|1996-11-12|1996-11-04|TAKE BACK RETURN|RAIL|ges nod. blithely pending | +45452|513321|38342|2|42|56040.60|0.04|0.05|N|O|1996-10-20|1996-11-20|1996-11-01|DELIVER IN PERSON|MAIL|s. blithely final accounts boost. express,| +45452|385514|35515|3|23|36788.50|0.00|0.05|N|O|1996-11-22|1996-11-23|1996-12-17|TAKE BACK RETURN|FOB| furiously ironic instructions. even| +45452|326092|38599|4|10|11180.80|0.04|0.03|N|O|1996-11-14|1996-11-01|1996-12-13|NONE|FOB|counts above the furiously regu| +45452|619100|6637|5|2|2038.14|0.03|0.00|N|O|1996-10-22|1996-10-18|1996-11-10|DELIVER IN PERSON|FOB|en foxes was| +45452|205852|18357|6|25|43946.00|0.09|0.01|N|O|1997-01-02|1996-11-09|1997-01-15|COLLECT COD|REG AIR|wake. quickly ironic accounts nag| +45453|429685|17210|1|14|22605.24|0.02|0.07|A|F|1992-08-22|1992-08-18|1992-08-24|NONE|AIR|ffily ironic pinto beans a| +45453|706984|19499|2|50|99547.50|0.05|0.08|A|F|1992-09-02|1992-06-29|1992-09-12|DELIVER IN PERSON|RAIL|iously regular instructions.| +45454|277933|40439|1|10|19109.20|0.07|0.07|N|O|1998-04-04|1998-04-20|1998-05-04|DELIVER IN PERSON|AIR|the slyly special dugouts ha| +45454|205989|5990|2|48|90958.56|0.07|0.04|N|O|1998-06-25|1998-04-15|1998-07-17|COLLECT COD|RAIL|regular theodolites. blithely u| +45454|50792|13294|3|8|13942.32|0.09|0.02|N|O|1998-06-09|1998-06-02|1998-06-16|COLLECT COD|AIR|e carefully. blithely regular foxes wak| +45454|657205|44745|4|13|15108.21|0.03|0.04|N|O|1998-03-18|1998-06-01|1998-04-03|NONE|RAIL|slyly across the ironic | +45455|578373|15907|1|49|71116.15|0.08|0.08|A|F|1994-04-25|1994-05-13|1994-05-18|NONE|SHIP|thely regular requests. bl| +45480|803297|28330|1|39|46809.75|0.03|0.05|R|F|1994-03-10|1994-01-11|1994-04-04|DELIVER IN PERSON|AIR|g to the even packag| +45480|11019|48520|2|20|18600.20|0.05|0.00|R|F|1994-02-27|1993-12-23|1994-03-04|COLLECT COD|MAIL|hely final requests will have to wake ac| +45480|185719|10726|3|30|54141.30|0.02|0.07|R|F|1994-02-12|1994-01-03|1994-03-05|TAKE BACK RETURN|RAIL|arls among the final foxes det| +45481|30446|42947|1|13|17893.72|0.09|0.02|N|O|1998-03-25|1997-12-30|1998-04-15|NONE|MAIL|posits haggle aga| +45481|700427|37970|2|45|64232.55|0.05|0.08|N|O|1998-01-05|1998-01-28|1998-01-09|DELIVER IN PERSON|MAIL| boost against the slyly final| +45481|76195|1198|3|7|8198.33|0.02|0.01|N|O|1998-03-14|1998-01-20|1998-03-31|COLLECT COD|MAIL|ructions. de| +45482|573820|36332|1|14|26513.20|0.06|0.05|R|F|1992-10-31|1992-11-09|1992-11-05|TAKE BACK RETURN|MAIL|ecial deposits sleep. ironi| +45482|189427|26937|2|2|3032.84|0.04|0.05|A|F|1993-01-01|1992-11-10|1993-01-04|DELIVER IN PERSON|SHIP|he fluffily | +45482|698401|35941|3|3|4198.11|0.02|0.02|R|F|1993-01-01|1992-10-19|1993-01-20|TAKE BACK RETURN|REG AIR| the blithely regular ideas| +45482|24852|24853|4|42|74627.70|0.03|0.08|R|F|1992-10-02|1992-11-20|1992-10-25|NONE|REG AIR|s accounts | +45482|677080|2107|5|49|51795.45|0.09|0.02|A|F|1993-01-04|1992-12-08|1993-01-25|TAKE BACK RETURN|FOB|gular accounts acros| +45483|383081|33082|1|24|27937.68|0.10|0.05|A|F|1993-02-21|1993-04-04|1993-03-17|TAKE BACK RETURN|SHIP|tes above the theod| +45483|435903|48412|2|32|58844.16|0.08|0.08|A|F|1993-02-13|1993-03-28|1993-02-27|TAKE BACK RETURN|REG AIR|posits doub| +45483|215060|27565|3|41|39977.05|0.05|0.04|A|F|1993-02-20|1993-03-10|1993-03-19|NONE|REG AIR| furiously alo| +45484|725321|12864|1|1|1346.29|0.00|0.07|A|F|1992-04-25|1992-03-04|1992-05-22|COLLECT COD|REG AIR|ses. ideas wake fluffily after the expre| +45484|468879|18880|2|20|36957.00|0.01|0.02|R|F|1992-03-15|1992-03-30|1992-03-27|TAKE BACK RETURN|RAIL|ely from the regular do| +45485|216655|4168|1|31|48720.84|0.05|0.03|R|F|1994-11-10|1994-12-28|1994-11-15|NONE|SHIP|e alongside of the | +45485|309898|34911|2|20|38157.60|0.04|0.08|A|F|1994-10-05|1994-12-22|1994-11-04|NONE|AIR|al requests. ironic ideas agains| +45485|451881|14391|3|12|21994.32|0.09|0.01|R|F|1994-11-30|1994-11-21|1994-12-05|NONE|REG AIR|ous deposits haggle fluffily regula| +45485|755931|43477|4|35|69541.50|0.10|0.01|R|F|1994-12-01|1994-11-23|1994-12-02|COLLECT COD|TRUCK|deas should have to sleep| +45486|303978|16485|1|1|1981.96|0.03|0.07|N|O|1997-12-24|1997-12-07|1997-12-26|DELIVER IN PERSON|REG AIR|. ironically pendin| +45486|955632|30671|2|39|65816.01|0.05|0.04|N|O|1997-10-16|1997-11-01|1997-11-08|COLLECT COD|SHIP|lithely special packages nag. express | +45486|300618|13125|3|8|12948.80|0.00|0.07|N|O|1997-12-08|1997-10-31|1998-01-01|COLLECT COD|FOB|lyly regular, expres| +45486|482125|44635|4|21|23249.10|0.09|0.05|N|O|1997-11-13|1997-11-08|1997-11-16|COLLECT COD|RAIL| blithe requests| +45486|60473|47977|5|12|17201.64|0.06|0.03|N|O|1997-12-27|1997-11-22|1998-01-05|COLLECT COD|REG AIR|y among the final ideas. carefully express | +45486|353835|3836|6|27|50998.14|0.07|0.00|N|O|1997-10-11|1997-12-03|1997-10-14|NONE|SHIP|ackages across the fluffily final packages | +45486|897189|34741|7|19|22536.66|0.08|0.06|N|O|1997-12-12|1997-10-25|1997-12-18|COLLECT COD|MAIL|sts. ideas against th| +45487|54884|17386|1|35|64360.80|0.07|0.05|N|O|1997-03-08|1997-04-25|1997-03-24|COLLECT COD|MAIL|onic, even deposits wake. carefu| +45512|872340|34858|1|12|15747.60|0.03|0.01|N|O|1995-12-26|1996-01-23|1996-01-21|NONE|TRUCK|eans boost slyly s| +45512|413547|26056|2|1|1460.52|0.02|0.08|N|O|1996-04-11|1996-01-30|1996-05-04|NONE|REG AIR|even instru| +45512|471768|46787|3|4|6958.96|0.03|0.05|N|O|1996-03-23|1996-03-07|1996-04-11|COLLECT COD|TRUCK|ithely around the slyly even accounts| +45512|854|13355|4|40|70194.00|0.09|0.07|N|O|1996-03-26|1996-01-31|1996-04-18|TAKE BACK RETURN|MAIL|the enticingly ironic packag| +45512|346401|46402|5|45|65132.55|0.10|0.07|N|O|1996-03-13|1996-03-04|1996-03-23|TAKE BACK RETURN|RAIL|rses x-ray. quietly unusual deposits af| +45512|946379|8898|6|10|14253.30|0.08|0.01|N|O|1996-01-20|1996-03-03|1996-02-03|TAKE BACK RETURN|TRUCK|the carefully final pinto beans. furiously | +45513|677077|27078|1|32|33729.28|0.05|0.04|N|O|1997-12-21|1998-01-20|1998-01-11|COLLECT COD|MAIL|s cajole alongs| +45513|631392|31393|2|33|43670.88|0.02|0.02|N|O|1998-01-16|1998-01-11|1998-02-01|NONE|SHIP|ily regular orbits. packages nag c| +45513|800071|72|3|44|42725.32|0.05|0.06|N|O|1998-02-19|1997-12-12|1998-02-28|NONE|MAIL|usly across the deposits; furiou| +45513|780314|5345|4|50|69714.00|0.02|0.00|N|O|1997-12-29|1997-12-28|1998-01-10|DELIVER IN PERSON|SHIP|busily alongside of| +45513|729521|4550|5|46|71322.54|0.10|0.08|N|O|1998-02-14|1998-01-28|1998-03-05|NONE|RAIL| sleep requests. r| +45513|52094|27097|6|50|52304.50|0.00|0.02|N|O|1997-12-03|1997-12-26|1997-12-26|COLLECT COD|TRUCK|ges. quickly ir| +45513|527156|27157|7|11|13014.43|0.04|0.01|N|O|1998-01-30|1998-01-11|1998-02-17|TAKE BACK RETURN|REG AIR|fily final accounts integrate around the ev| +45514|905716|5717|1|42|72310.14|0.02|0.06|N|O|1996-09-23|1996-10-12|1996-10-20|TAKE BACK RETURN|AIR| deposits use. carefully silent pac| +45514|360393|35408|2|40|58135.20|0.08|0.03|N|O|1996-09-24|1996-09-05|1996-10-06|DELIVER IN PERSON|RAIL|ording to the sl| +45514|111479|36484|3|29|43223.63|0.02|0.03|N|O|1996-10-20|1996-08-24|1996-11-18|NONE|RAIL| platelets| +45515|429671|42180|1|43|68827.95|0.00|0.01|R|F|1993-04-19|1993-04-27|1993-05-09|NONE|FOB|y even accounts s| +45515|478165|15693|2|5|5715.70|0.06|0.07|A|F|1993-03-16|1993-05-20|1993-03-21|NONE|FOB|blithely silent sentiments| +45515|502962|40493|3|26|51088.44|0.03|0.07|R|F|1993-05-05|1993-04-25|1993-05-13|DELIVER IN PERSON|RAIL| behind the express instructions-| +45515|277489|39995|4|41|60125.27|0.06|0.06|A|F|1993-04-08|1993-04-05|1993-04-14|DELIVER IN PERSON|MAIL|ess frays wake regular platelets. depo| +45515|757438|32469|5|30|44862.00|0.03|0.00|R|F|1993-05-18|1993-04-25|1993-06-06|NONE|RAIL|e epitaphs besides the f| +45515|249372|49373|6|2|2642.72|0.10|0.05|R|F|1993-03-03|1993-05-04|1993-03-10|TAKE BACK RETURN|REG AIR|ly; unusual packages haggle sly| +45515|181939|19449|7|21|42439.53|0.03|0.07|R|F|1993-05-07|1993-04-10|1993-06-04|NONE|SHIP|eposits. blithely silent pinto be| +45516|834488|47005|1|20|28448.80|0.08|0.03|N|O|1997-02-20|1997-02-04|1997-02-23|TAKE BACK RETURN|REG AIR|side of the pinto beans! furious| +45516|238262|13271|2|2|2400.50|0.10|0.04|N|O|1997-01-13|1996-12-21|1997-01-30|NONE|AIR|y. special accounts haggle slyly c| +45517|793577|18608|1|45|75174.30|0.06|0.06|A|F|1994-06-01|1994-08-03|1994-06-07|COLLECT COD|MAIL| across the bravely express| +45517|645891|8404|2|44|80821.84|0.06|0.07|A|F|1994-07-15|1994-06-29|1994-07-27|TAKE BACK RETURN|MAIL|eas. slyly u| +45517|488110|25638|3|27|29648.43|0.06|0.08|A|F|1994-07-24|1994-07-08|1994-08-13|NONE|SHIP|e final ideas; ca| +45517|661406|36433|4|14|19143.18|0.07|0.06|A|F|1994-07-20|1994-08-22|1994-07-30|TAKE BACK RETURN|FOB|nding foxes dazzle| +45517|236406|11415|5|36|48326.04|0.03|0.02|A|F|1994-08-18|1994-08-09|1994-09-12|COLLECT COD|AIR|quests cajol| +45517|269217|6733|6|24|28468.80|0.09|0.04|R|F|1994-07-01|1994-07-10|1994-07-15|TAKE BACK RETURN|FOB|s use slyly | +45517|715641|40670|7|47|77860.67|0.05|0.08|R|F|1994-09-12|1994-06-29|1994-09-23|NONE|RAIL|rns across the furiously f| +45518|765862|3408|1|26|50123.58|0.04|0.00|A|F|1993-01-18|1993-02-10|1993-01-23|COLLECT COD|AIR|ld pinto beans haggle blithely sl| +45518|837228|12261|2|15|17477.70|0.00|0.07|R|F|1993-01-09|1993-01-22|1993-01-28|NONE|REG AIR|platelets. carefully regul| +45518|275611|622|3|29|46011.40|0.06|0.05|A|F|1992-12-27|1993-01-17|1993-01-10|NONE|MAIL|ag across the slyly blithe pi| +45518|191405|28915|4|7|10474.80|0.02|0.02|R|F|1993-02-23|1993-01-15|1993-03-15|COLLECT COD|REG AIR|ven, final instructions.| +45518|940756|3275|5|34|61088.14|0.00|0.04|R|F|1993-04-09|1993-01-12|1993-05-05|COLLECT COD|REG AIR| furiously final packages nag! accounts wa| +45518|280772|18288|6|40|70110.40|0.04|0.03|R|F|1993-03-07|1993-03-03|1993-04-04|TAKE BACK RETURN|RAIL|uickly regular hockey players are a| +45518|926603|1640|7|41|66811.96|0.02|0.08|R|F|1993-04-09|1993-01-27|1993-04-22|NONE|REG AIR|e instructions. busily ironic pinto b| +45519|401745|1746|1|21|34581.12|0.03|0.08|A|F|1993-12-30|1994-02-06|1994-01-11|TAKE BACK RETURN|REG AIR|s the furiously spe| +45519|127231|39734|2|38|47812.74|0.01|0.05|R|F|1994-01-10|1994-02-22|1994-01-25|DELIVER IN PERSON|AIR|posits. express depths doubt about the blit| +45519|366785|4307|3|27|49997.79|0.05|0.03|A|F|1994-03-05|1994-02-07|1994-03-11|NONE|REG AIR|platelets can slee| +45519|549426|36957|4|13|19180.20|0.07|0.06|A|F|1994-01-13|1994-01-30|1994-02-08|COLLECT COD|AIR|esides the a| +45519|201528|14033|5|21|30019.71|0.04|0.01|R|F|1994-01-23|1994-02-04|1994-01-31|COLLECT COD|SHIP|ests detect | +45519|79904|42406|6|30|56517.00|0.03|0.05|A|F|1994-03-04|1994-02-12|1994-03-25|TAKE BACK RETURN|TRUCK|even pinto bea| +45544|747761|35304|1|39|70540.47|0.08|0.04|A|F|1994-11-17|1994-11-04|1994-12-03|TAKE BACK RETURN|TRUCK| carefully special dolphins. expres| +45544|605358|5359|2|22|27793.04|0.00|0.04|A|F|1994-11-21|1994-10-24|1994-12-06|COLLECT COD|RAIL|yly after the | +45544|244592|44593|3|36|55316.88|0.04|0.04|R|F|1994-10-31|1994-09-07|1994-11-30|COLLECT COD|RAIL|efully unusual d| +45544|851474|39026|4|45|64144.35|0.08|0.04|R|F|1994-08-26|1994-09-09|1994-09-22|TAKE BACK RETURN|FOB|ctions after the| +45544|717039|4582|5|3|3168.00|0.03|0.03|R|F|1994-09-08|1994-09-26|1994-09-17|DELIVER IN PERSON|AIR|sual, regular accounts. ironic accounts | +45544|274037|11553|6|32|32352.64|0.09|0.06|A|F|1994-10-08|1994-09-11|1994-11-02|COLLECT COD|MAIL| according to the regular ac| +45544|733002|8031|7|6|6209.82|0.07|0.00|R|F|1994-10-04|1994-09-28|1994-10-30|NONE|RAIL|t the regular, express f| +45545|560363|35386|1|34|48393.56|0.06|0.01|A|F|1993-03-27|1993-02-16|1993-04-04|NONE|FOB|e the bravely regular accounts. | +45545|13766|26267|2|33|55432.08|0.10|0.03|R|F|1993-03-21|1993-01-29|1993-03-29|DELIVER IN PERSON|MAIL|sily even pinto beans at the e| +45545|350512|38034|3|15|23437.50|0.07|0.05|R|F|1993-03-05|1993-02-04|1993-03-06|DELIVER IN PERSON|MAIL|usly even request| +45545|54174|29177|4|38|42870.46|0.00|0.05|R|F|1993-02-27|1993-02-12|1993-03-24|DELIVER IN PERSON|AIR|unusual waters wake slyly quickl| +45545|498951|36479|5|32|62397.76|0.01|0.03|R|F|1993-01-01|1993-03-15|1993-01-22|TAKE BACK RETURN|SHIP| unusual ideas; ironic, ironic p| +45545|855909|43461|6|39|72729.54|0.04|0.01|R|F|1993-01-22|1993-01-27|1993-02-17|COLLECT COD|AIR|lithely regular, regul| +45546|504023|16534|1|1|1027.00|0.08|0.05|N|O|1997-09-02|1997-09-06|1997-09-26|COLLECT COD|REG AIR|y. carefully unusual instructions haggle f| +45546|108612|8613|2|44|71306.84|0.05|0.00|N|O|1997-09-15|1997-09-06|1997-10-06|DELIVER IN PERSON|AIR|usly bold theodolites print fluffily | +45547|45636|20637|1|10|15816.30|0.01|0.04|N|O|1998-03-08|1998-03-08|1998-03-10|DELIVER IN PERSON|FOB| ironic, final pinto beans are slyly | +45547|1171|13672|2|25|26804.25|0.07|0.04|N|O|1998-02-05|1998-04-09|1998-02-28|DELIVER IN PERSON|MAIL|nts haggle among the express packa| +45548|475837|856|1|46|83389.26|0.01|0.02|N|O|1995-06-27|1995-08-02|1995-07-03|TAKE BACK RETURN|AIR|. slyly regular packages haggle carefully i| +45548|389531|39532|2|46|74543.92|0.00|0.03|N|O|1995-06-21|1995-07-11|1995-06-28|DELIVER IN PERSON|RAIL|foxes wake a| +45548|845189|20222|3|18|20414.52|0.07|0.07|N|O|1995-07-29|1995-08-04|1995-08-04|DELIVER IN PERSON|TRUCK|packages sleep | +45548|85786|23290|4|39|69099.42|0.10|0.00|N|O|1995-09-06|1995-07-06|1995-09-09|COLLECT COD|SHIP| pinto beans. silent, pending de| +45548|793515|18546|5|47|75598.56|0.02|0.08|N|O|1995-07-31|1995-08-20|1995-08-26|COLLECT COD|FOB|ular requests. iro| +45548|596187|46188|6|4|5132.64|0.01|0.08|N|O|1995-08-02|1995-07-01|1995-08-04|NONE|TRUCK|y carefully| +45548|113813|13814|7|2|3653.62|0.00|0.06|N|O|1995-09-03|1995-08-22|1995-10-02|TAKE BACK RETURN|TRUCK|etect furiously express requests. regular i| +45549|853172|15690|1|42|47255.46|0.02|0.03|N|O|1997-04-30|1997-03-09|1997-05-01|COLLECT COD|RAIL|shall haggle blithely pending instruction| +45549|246112|8617|2|28|29626.80|0.08|0.01|N|O|1997-05-13|1997-04-26|1997-05-20|TAKE BACK RETURN|REG AIR|s sleep quick| +45550|441430|3939|1|24|32913.84|0.09|0.05|A|F|1995-05-10|1995-05-17|1995-05-13|NONE|REG AIR|nic asymptotes| +45551|309436|34449|1|26|37580.92|0.06|0.04|N|O|1996-10-04|1996-10-27|1996-10-08|DELIVER IN PERSON|RAIL|ter the carefully unusual idea| +45576|987055|12094|1|8|9136.08|0.10|0.06|N|O|1995-12-24|1995-12-17|1996-01-13|DELIVER IN PERSON|SHIP|thely special theodolites. furio| +45576|429017|16542|2|4|3783.96|0.02|0.04|N|O|1996-02-04|1995-11-17|1996-02-11|TAKE BACK RETURN|MAIL|s haggle blithely according t| +45577|183106|8113|1|1|1189.10|0.05|0.04|A|F|1993-06-05|1993-05-31|1993-07-02|DELIVER IN PERSON|SHIP|ages play carefully after the slyly silent | +45577|449076|24093|2|18|18450.90|0.07|0.06|R|F|1993-05-05|1993-04-09|1993-05-24|COLLECT COD|AIR|; carefully ironic fo| +45577|610587|48124|3|9|13477.95|0.06|0.05|R|F|1993-05-13|1993-05-02|1993-06-03|TAKE BACK RETURN|FOB|ven instructions play carefully slow ins| +45577|121156|46161|4|10|11771.50|0.10|0.04|R|F|1993-06-04|1993-05-04|1993-07-03|DELIVER IN PERSON|FOB|s deposits. even foxes abou| +45577|257335|19841|5|37|47815.84|0.00|0.08|R|F|1993-06-06|1993-05-25|1993-07-03|DELIVER IN PERSON|MAIL|tect blithely at the slyl| +45577|21266|8767|6|29|34430.54|0.06|0.06|R|F|1993-07-01|1993-05-04|1993-07-27|DELIVER IN PERSON|RAIL|. blithely even foxes along the iron| +45578|523518|36029|1|1|1541.49|0.06|0.07|N|O|1997-04-25|1997-05-15|1997-04-26|DELIVER IN PERSON|REG AIR|ic package| +45578|766558|41589|2|24|38988.48|0.01|0.03|N|O|1997-05-26|1997-04-08|1997-06-18|TAKE BACK RETURN|RAIL| blithe, pending accounts. furiousl| +45578|525534|25535|3|39|60820.89|0.02|0.05|N|O|1997-03-14|1997-04-08|1997-04-07|NONE|MAIL| quickly. slyly pending pinto b| +45578|648389|48390|4|37|49481.95|0.05|0.01|N|O|1997-05-19|1997-04-20|1997-05-29|NONE|MAIL| silent foxes sleep alongsid| +45578|471048|46067|5|29|29551.58|0.01|0.05|N|O|1997-03-10|1997-04-22|1997-03-26|NONE|SHIP|theodolites cajole after the carefu| +45579|961343|36382|1|30|42129.00|0.04|0.03|A|F|1992-04-21|1992-04-02|1992-04-26|TAKE BACK RETURN|AIR|olites sleep furiously r| +45579|277920|40426|2|41|77814.31|0.00|0.03|A|F|1992-04-27|1992-05-11|1992-05-19|TAKE BACK RETURN|RAIL|sts sublate carefully among the bli| +45579|996368|8888|3|34|49786.88|0.01|0.07|R|F|1992-04-23|1992-05-19|1992-04-30|TAKE BACK RETURN|FOB|sits. blithel| +45579|942675|30230|4|15|25764.45|0.06|0.02|A|F|1992-03-08|1992-05-17|1992-04-01|NONE|RAIL|ly pending warthogs. blit| +45579|524255|36766|5|46|58844.58|0.01|0.00|A|F|1992-06-08|1992-04-09|1992-06-15|NONE|AIR|s packages wake quickly. slyly fina| +45579|146160|8663|6|4|4824.64|0.00|0.08|R|F|1992-04-02|1992-05-31|1992-04-20|NONE|AIR|about the fi| +45579|499601|12111|7|29|46416.82|0.08|0.00|A|F|1992-03-27|1992-04-28|1992-04-23|NONE|SHIP|es sleep final, si| +45580|790536|40537|1|5|8132.50|0.00|0.05|R|F|1993-05-24|1993-04-23|1993-06-05|TAKE BACK RETURN|REG AIR|y special packages; silent| +45580|535372|22903|2|38|53479.30|0.04|0.04|R|F|1993-05-16|1993-05-02|1993-06-02|DELIVER IN PERSON|MAIL|deas are even theo| +45580|991139|3659|3|23|28292.07|0.05|0.06|R|F|1993-03-29|1993-03-28|1993-04-03|TAKE BACK RETURN|TRUCK|deas. fluffily final deposits accord| +45580|57729|20231|4|37|62408.64|0.07|0.05|R|F|1993-05-13|1993-04-23|1993-06-12|DELIVER IN PERSON|REG AIR|ymptotes by the carefully ironic account| +45580|241423|16432|5|14|19101.74|0.02|0.08|R|F|1993-05-06|1993-04-05|1993-05-27|DELIVER IN PERSON|TRUCK|ly slyly pendi| +45580|588633|13656|6|14|24102.54|0.03|0.04|R|F|1993-05-27|1993-04-25|1993-06-19|COLLECT COD|SHIP|hely regular requests. theodolites a| +45580|144488|44489|7|49|75091.52|0.03|0.08|A|F|1993-03-02|1993-05-11|1993-03-29|NONE|MAIL|unts wake blithely fin| +45581|406309|43834|1|47|57118.16|0.03|0.04|A|F|1995-04-23|1995-07-03|1995-05-06|COLLECT COD|RAIL|e silent platelets use furiously | +45582|401624|26641|1|48|73228.80|0.03|0.05|R|F|1992-09-24|1992-10-21|1992-10-24|NONE|AIR|t courts. close, ir| +45582|86106|48608|2|49|53512.90|0.05|0.08|R|F|1992-08-25|1992-10-16|1992-08-30|COLLECT COD|REG AIR| foxes eat ste| +45582|180100|5107|3|13|15341.30|0.03|0.08|A|F|1992-08-27|1992-10-18|1992-09-14|NONE|FOB|, unusual accounts. always bold deposi| +45583|464807|14808|1|8|14174.24|0.02|0.03|N|O|1998-03-23|1998-05-16|1998-03-25|NONE|AIR| haggle furiousl| +45583|8334|8335|2|37|45966.21|0.01|0.00|N|O|1998-05-05|1998-04-29|1998-05-10|NONE|TRUCK|nding requests are q| +45583|62654|37657|3|5|8083.25|0.09|0.00|N|O|1998-06-14|1998-04-26|1998-07-09|DELIVER IN PERSON|AIR| the furiously daring packages. dependenci| +45583|9520|22021|4|13|18583.76|0.03|0.05|N|O|1998-05-28|1998-04-10|1998-06-08|COLLECT COD|TRUCK| ironically final dolphins detect fur| +45583|991728|16767|5|4|7278.72|0.08|0.06|N|O|1998-02-26|1998-03-31|1998-03-05|COLLECT COD|TRUCK|gainst the foxes. ironic re| +45583|964785|14786|6|15|27746.10|0.07|0.06|N|O|1998-04-14|1998-05-13|1998-05-04|DELIVER IN PERSON|SHIP|nts. theodolites above the pac| +45608|119365|31868|1|19|26302.84|0.10|0.08|R|F|1994-04-03|1994-03-26|1994-04-04|DELIVER IN PERSON|AIR|uests. ironic packages a| +45609|744399|31942|1|26|37527.36|0.03|0.05|R|F|1994-07-31|1994-08-02|1994-08-14|TAKE BACK RETURN|MAIL|lar theodolites boos| +45609|98455|48456|2|7|10174.15|0.10|0.05|R|F|1994-09-25|1994-06-29|1994-10-23|DELIVER IN PERSON|AIR| ideas integrate slyly pen| +45609|732704|32705|3|46|79886.82|0.04|0.02|A|F|1994-07-30|1994-08-22|1994-08-02|DELIVER IN PERSON|MAIL|ithely. even, final platelets nag| +45609|555275|42809|4|39|51879.75|0.02|0.05|A|F|1994-08-30|1994-07-20|1994-09-18|NONE|AIR|ake after the daring excuses. flu| +45610|326350|26351|1|37|50924.58|0.00|0.05|A|F|1993-07-04|1993-06-11|1993-07-19|TAKE BACK RETURN|MAIL|ins across the regular, bold pack| +45610|952905|15425|2|19|37199.34|0.06|0.01|A|F|1993-06-08|1993-07-23|1993-06-13|NONE|SHIP| theodolites cajole | +45610|466809|41828|3|46|81685.88|0.01|0.04|A|F|1993-07-10|1993-07-25|1993-07-15|NONE|TRUCK|press deposits.| +45610|655750|5751|4|17|28997.24|0.08|0.08|R|F|1993-07-07|1993-07-03|1993-07-26|DELIVER IN PERSON|RAIL|slyly along th| +45610|188337|13344|5|19|27081.27|0.07|0.07|A|F|1993-08-01|1993-07-27|1993-08-09|NONE|FOB|dolphins. special packa| +45610|368098|43113|6|22|25653.76|0.02|0.05|A|F|1993-08-30|1993-06-14|1993-09-26|NONE|FOB|gular requests do| +45611|584256|34257|1|33|44227.59|0.07|0.06|R|F|1993-02-03|1993-01-18|1993-02-07|NONE|RAIL|ng the carefully regular accounts. reg| +45611|575122|145|2|28|33518.80|0.06|0.01|A|F|1993-04-13|1993-01-27|1993-05-03|COLLECT COD|MAIL|s haggle fluff| +45611|74046|49049|3|39|39781.56|0.06|0.03|A|F|1993-01-10|1993-02-08|1993-01-16|DELIVER IN PERSON|RAIL| theodolites. special | +45611|474639|49658|4|49|79066.89|0.04|0.07|R|F|1993-01-08|1993-02-23|1993-01-22|NONE|SHIP| the fluffily ironic foxes| +45612|755977|5978|1|3|6098.82|0.07|0.08|R|F|1993-11-28|1994-01-18|1993-12-26|NONE|AIR|s haggle quickly packages.| +45612|690929|3443|2|9|17279.01|0.01|0.05|R|F|1994-01-25|1994-01-10|1994-02-13|TAKE BACK RETURN|MAIL|maintain acros| +45612|441146|3655|3|48|52181.76|0.02|0.05|R|F|1993-11-25|1994-01-02|1993-12-15|NONE|TRUCK|en packages. fluffily even | +45612|337919|37920|4|21|41094.90|0.04|0.05|A|F|1993-12-01|1994-02-09|1993-12-06|NONE|SHIP|regular hockey players promise ironic asymp| +45612|402798|27815|5|50|85038.50|0.06|0.07|A|F|1993-12-21|1993-12-17|1994-01-09|TAKE BACK RETURN|RAIL|old excuses. | +45613|409388|9389|1|44|57083.84|0.03|0.08|N|O|1998-04-18|1998-04-12|1998-04-19|COLLECT COD|REG AIR|al instructions! | +45613|577110|2133|2|27|32051.43|0.09|0.03|N|O|1998-02-11|1998-03-15|1998-02-25|NONE|REG AIR|ly deposits. bold, ironic deposits ar| +45613|474720|37230|3|46|77956.20|0.03|0.05|N|O|1998-02-14|1998-03-10|1998-03-08|NONE|MAIL|ual pearls alongside of the car| +45613|608476|8477|4|2|2768.88|0.01|0.07|N|O|1998-02-20|1998-04-14|1998-03-08|COLLECT COD|REG AIR|es sleep fur| +45613|641915|29452|5|37|68704.56|0.10|0.02|N|O|1998-04-07|1998-03-29|1998-04-29|TAKE BACK RETURN|REG AIR|l requests cajole | +45613|660035|22549|6|20|19900.00|0.00|0.07|N|O|1998-04-16|1998-04-09|1998-05-04|DELIVER IN PERSON|TRUCK|sts cajole | +45614|65061|27563|1|47|48224.82|0.08|0.02|N|O|1995-11-04|1995-10-23|1995-12-04|DELIVER IN PERSON|MAIL|eve slyly busy| +45614|469994|19995|2|9|17675.73|0.08|0.01|N|O|1995-12-16|1995-11-06|1995-12-21|NONE|AIR|bold packages ha| +45614|181972|44476|3|31|63673.07|0.07|0.05|N|O|1995-09-16|1995-10-20|1995-10-05|COLLECT COD|MAIL|pendencies cajole quickly. ironic requests| +45614|402072|14581|4|50|48702.50|0.05|0.05|N|O|1995-10-24|1995-11-05|1995-11-11|TAKE BACK RETURN|AIR|ructions. special packages sleep. requ| +45614|621734|9271|5|44|72850.80|0.04|0.01|N|O|1995-10-15|1995-11-30|1995-10-24|TAKE BACK RETURN|FOB|the carefully unu| +45615|526645|39156|1|17|28417.54|0.08|0.06|A|F|1992-12-03|1992-09-25|1992-12-22|DELIVER IN PERSON|SHIP|y special accounts! even| +45615|318929|18930|2|24|46749.84|0.00|0.00|R|F|1992-09-05|1992-11-06|1992-09-24|NONE|REG AIR|regular pinto beans wake slyly against th| +45615|229216|29217|3|42|48098.40|0.02|0.01|R|F|1992-08-27|1992-11-13|1992-09-03|NONE|REG AIR|ely. accoun| +45615|420574|33083|4|47|70243.85|0.00|0.05|R|F|1992-10-27|1992-09-27|1992-11-04|COLLECT COD|SHIP|ding deposits. d| +45615|579835|17369|5|25|47870.25|0.01|0.07|R|F|1992-11-06|1992-10-28|1992-11-09|TAKE BACK RETURN|MAIL| accounts sleep blithely. silent, even br| +45640|350541|542|1|21|33422.13|0.06|0.05|N|O|1995-11-17|1995-10-17|1995-12-05|NONE|FOB| ideas sleep slyly carefully pending ac| +45640|538047|25578|2|42|45570.84|0.04|0.01|N|O|1995-10-11|1995-09-25|1995-10-17|COLLECT COD|FOB|riously according to| +45640|954240|29279|3|41|53062.20|0.08|0.00|N|O|1995-09-07|1995-10-13|1995-09-20|COLLECT COD|MAIL|oxes wake slyly!| +45640|910559|23078|4|41|64349.91|0.08|0.08|N|O|1995-08-26|1995-10-15|1995-09-06|NONE|FOB|sual excuses. packages are carefull| +45641|10580|35581|1|27|40245.66|0.06|0.03|A|F|1995-05-07|1995-06-09|1995-05-08|COLLECT COD|MAIL|express packages. pinto beans affix| +45641|813521|13522|2|38|54510.24|0.00|0.00|R|F|1995-05-13|1995-04-21|1995-05-29|DELIVER IN PERSON|TRUCK|pinto beans| +45641|844442|6959|3|28|38819.20|0.10|0.03|R|F|1995-05-11|1995-05-23|1995-06-08|NONE|SHIP|ck theodolites c| +45641|532391|7412|4|14|19927.18|0.06|0.08|N|F|1995-06-08|1995-05-20|1995-06-30|TAKE BACK RETURN|AIR|ly regular packages| +45642|130337|30338|1|22|30081.26|0.00|0.05|N|O|1996-01-29|1996-02-15|1996-02-24|DELIVER IN PERSON|SHIP| final instruction| +45642|557711|7712|2|29|51292.01|0.07|0.06|N|O|1996-02-01|1996-03-27|1996-02-07|TAKE BACK RETURN|RAIL|the ironic ideas. slyly bold requests ha| +45642|443438|18455|3|18|24865.38|0.08|0.04|N|O|1996-02-15|1996-03-29|1996-02-17|TAKE BACK RETURN|MAIL|pecial packages detect slyly. car| +45643|333046|45553|1|23|24817.69|0.09|0.06|R|F|1995-01-01|1995-01-06|1995-01-10|COLLECT COD|TRUCK|ong the blithely special requests are b| +45643|495500|8010|2|41|61314.68|0.09|0.00|A|F|1994-12-26|1995-01-20|1994-12-30|COLLECT COD|SHIP|onically final packages haggle| +45644|590029|27563|1|14|15666.00|0.09|0.07|N|O|1996-02-10|1996-02-15|1996-02-22|DELIVER IN PERSON|MAIL|pending instructions above the furious| +45645|77881|15385|1|4|7435.52|0.00|0.03|N|F|1995-06-16|1995-07-08|1995-06-28|NONE|REG AIR|rts according to th| +45645|939785|27340|2|8|14597.92|0.05|0.05|R|F|1995-04-29|1995-06-29|1995-05-23|NONE|FOB|ts are carefully furiously even requests| +45646|993157|30715|1|4|5000.44|0.01|0.03|A|F|1992-03-04|1992-03-09|1992-04-02|COLLECT COD|SHIP|counts. carefully final dolphins wake sl| +45646|986128|11167|2|10|12140.80|0.04|0.02|R|F|1992-02-15|1992-03-29|1992-02-19|TAKE BACK RETURN|SHIP|pending, final orbits. furious| +45646|836776|49293|3|18|30829.14|0.06|0.08|A|F|1992-03-09|1992-04-09|1992-04-05|DELIVER IN PERSON|SHIP|e according to the| +45646|689488|39489|4|24|35458.80|0.04|0.02|R|F|1992-04-21|1992-04-02|1992-05-01|COLLECT COD|TRUCK|structions. carefully final ideas h| +45646|218745|18746|5|24|39929.52|0.08|0.04|R|F|1992-05-02|1992-03-07|1992-05-12|NONE|REG AIR|cial deposits. slyly regular accounts kind| +45646|435137|47646|6|2|2144.22|0.08|0.02|A|F|1992-02-18|1992-03-02|1992-03-07|COLLECT COD|TRUCK|sits nag about the special requests. fu| +45647|45077|7578|1|27|27595.89|0.07|0.02|N|O|1996-11-11|1996-10-11|1996-11-19|TAKE BACK RETURN|SHIP|nding, final packages along th| +45647|605560|5561|2|17|24914.01|0.10|0.07|N|O|1996-11-10|1996-10-08|1996-11-18|DELIVER IN PERSON|AIR|ainst the permanently| +45647|639601|14626|3|7|10783.99|0.00|0.05|N|O|1996-09-18|1996-11-07|1996-09-21|NONE|REG AIR|oxes. packages among the fina| +45647|760131|47677|4|48|57172.80|0.07|0.04|N|O|1996-11-03|1996-10-18|1996-11-13|DELIVER IN PERSON|SHIP|furiously according to the carefully bold| +45647|505360|5361|5|43|58709.62|0.06|0.08|N|O|1996-08-26|1996-10-18|1996-09-11|COLLECT COD|AIR|ly regular dependencies alon| +45647|573414|35926|6|7|10411.73|0.06|0.01|N|O|1996-10-20|1996-09-25|1996-11-07|COLLECT COD|FOB|ts cajole express packa| +45647|365687|28195|7|27|47322.09|0.05|0.06|N|O|1996-08-23|1996-09-26|1996-09-01|COLLECT COD|MAIL|among the busily specia| +45672|84760|9763|1|21|36639.96|0.01|0.05|N|O|1995-12-04|1995-12-09|1995-12-16|NONE|TRUCK|elets. blithely ironic theo| +45672|544878|32409|2|26|49994.10|0.09|0.06|N|O|1995-12-31|1996-01-08|1996-01-24|COLLECT COD|MAIL|ideas boost. ir| +45672|754907|42453|3|42|82398.54|0.08|0.00|N|O|1995-11-21|1995-11-28|1995-12-06|DELIVER IN PERSON|TRUCK|unts. unusual, regular dolp| +45673|792479|17510|1|5|7857.20|0.02|0.02|R|F|1993-05-26|1993-06-06|1993-06-08|DELIVER IN PERSON|FOB|ly bold pearls are carefully even plate| +45673|179010|41514|2|3|3267.03|0.01|0.05|R|F|1993-06-27|1993-04-27|1993-07-07|COLLECT COD|AIR|nically against the blithel| +45674|606692|6693|1|8|12789.28|0.06|0.00|N|O|1996-02-22|1996-02-11|1996-03-19|COLLECT COD|RAIL|s. furiously | +45674|659517|47057|2|19|28053.12|0.02|0.00|N|O|1996-02-02|1996-02-21|1996-02-20|COLLECT COD|FOB|ages haggle bli| +45674|496699|46700|3|50|84783.50|0.00|0.08|N|O|1996-02-08|1996-02-22|1996-02-17|COLLECT COD|REG AIR|s? even dependencies| +45674|5544|18045|4|13|18844.02|0.10|0.08|N|O|1996-02-09|1996-02-09|1996-02-27|COLLECT COD|TRUCK|ideas snooze above the slyly daring depos| +45674|176769|39273|5|30|55372.80|0.10|0.01|N|O|1996-03-10|1996-03-31|1996-03-30|NONE|FOB|fully bold pinto beans along| +45675|17764|5265|1|16|26908.16|0.06|0.03|A|F|1995-04-13|1995-03-30|1995-04-20|TAKE BACK RETURN|TRUCK|fluffily bold platelet| +45675|550106|37640|2|19|21965.52|0.08|0.01|R|F|1995-02-04|1995-03-01|1995-02-19|DELIVER IN PERSON|RAIL|he ironic packages. slyly ironic theodo| +45675|622197|47222|3|27|30217.32|0.09|0.02|A|F|1995-05-09|1995-03-13|1995-05-21|TAKE BACK RETURN|FOB|ggle fluffily. warhorses sleep. quickly i| +45676|532037|19568|1|43|45967.43|0.09|0.06|A|F|1993-06-04|1993-07-09|1993-06-05|COLLECT COD|FOB|posits. slyly final r| +45676|942908|42909|2|19|37066.34|0.03|0.01|R|F|1993-09-13|1993-07-24|1993-09-23|DELIVER IN PERSON|SHIP|arefully regular ideas; express requests ha| +45677|686654|11681|1|5|8203.10|0.01|0.03|A|F|1992-03-09|1992-04-03|1992-03-21|COLLECT COD|MAIL|ole furiously among | +45677|579322|41834|2|27|37835.10|0.01|0.08|R|F|1992-01-22|1992-02-27|1992-02-12|DELIVER IN PERSON|REG AIR|usly even | +45677|657198|7199|3|20|23103.20|0.04|0.07|R|F|1992-04-12|1992-04-02|1992-05-04|TAKE BACK RETURN|REG AIR|sits try to cajole ironic requests. final d| +45677|511534|24045|4|44|68002.44|0.08|0.03|R|F|1992-01-27|1992-02-18|1992-02-06|COLLECT COD|FOB|ular accounts| +45678|299448|36964|1|25|36185.75|0.05|0.06|R|F|1993-12-08|1993-12-23|1994-01-04|NONE|AIR|y. packages integr| +45678|819194|6743|2|13|14470.95|0.03|0.05|R|F|1994-01-20|1993-11-26|1994-01-29|DELIVER IN PERSON|REG AIR|deposits. boldly exp| +45678|179231|41735|3|13|17032.99|0.04|0.01|R|F|1994-01-05|1993-12-22|1994-01-13|TAKE BACK RETURN|RAIL|ular deposits sleep carefully alongside of| +45678|320379|20380|4|31|43380.16|0.03|0.01|A|F|1993-12-06|1993-11-13|1993-12-20|TAKE BACK RETURN|REG AIR| the carefully unusual theodolites | +45678|598996|11508|5|15|31424.55|0.04|0.01|R|F|1994-01-20|1993-11-29|1994-01-29|DELIVER IN PERSON|FOB|refully blithely express inst| +45678|311445|23952|6|26|37867.18|0.07|0.00|A|F|1993-10-29|1993-11-29|1993-11-12|COLLECT COD|TRUCK|print furiously. furiously regular as| +45679|901693|39248|1|40|67786.00|0.03|0.02|N|O|1996-02-05|1995-12-16|1996-03-01|NONE|TRUCK|oost slyly furiou| +45679|753992|41538|2|11|22505.56|0.02|0.07|N|O|1995-12-29|1995-12-09|1996-01-27|DELIVER IN PERSON|TRUCK|ng instructions. theodolites haggle | +45679|340766|15779|3|49|88530.75|0.06|0.02|N|O|1996-01-12|1995-11-29|1996-01-28|NONE|SHIP| furiously. packages haggle regularly. f| +45679|252195|27206|4|4|4588.72|0.06|0.06|N|O|1996-01-20|1995-12-09|1996-02-07|DELIVER IN PERSON|TRUCK|st the qui| +45704|674140|24141|1|7|7798.77|0.06|0.08|A|F|1993-06-15|1993-07-17|1993-07-03|TAKE BACK RETURN|AIR|kly above the q| +45704|256276|43792|2|36|44361.36|0.04|0.07|A|F|1993-08-21|1993-07-11|1993-09-14|TAKE BACK RETURN|RAIL|wake accordin| +45704|229166|4175|3|36|39425.40|0.06|0.03|A|F|1993-05-24|1993-06-29|1993-05-30|TAKE BACK RETURN|RAIL|bout the s| +45705|125273|37776|1|41|53229.07|0.02|0.03|N|O|1996-05-29|1996-08-02|1996-06-01|NONE|AIR|nts nag never. sly, regular platelets a| +45705|451643|1644|2|44|70163.28|0.01|0.06|N|O|1996-07-27|1996-07-09|1996-08-19|DELIVER IN PERSON|REG AIR|ly among the u| +45705|756891|44437|3|35|68175.10|0.05|0.06|N|O|1996-09-02|1996-08-08|1996-09-26|COLLECT COD|RAIL| requests. slyly regular deposits wake| +45705|54922|17424|4|16|30030.72|0.05|0.06|N|O|1996-09-09|1996-07-25|1996-09-12|DELIVER IN PERSON|FOB|. ironic requests wake slyly. even foxe| +45706|380194|30195|1|19|24209.42|0.02|0.08|N|O|1998-04-24|1998-04-09|1998-04-25|NONE|TRUCK|al requests sl| +45706|913071|25590|2|1|1084.03|0.10|0.01|N|O|1998-02-15|1998-03-06|1998-03-07|NONE|AIR|es sleep care| +45706|977746|2785|3|37|67476.90|0.04|0.00|N|O|1998-03-14|1998-03-08|1998-04-03|NONE|FOB|bold, ironic deposits nag a| +45706|975982|38502|4|32|65854.08|0.02|0.01|N|O|1998-02-24|1998-02-21|1998-03-05|DELIVER IN PERSON|MAIL|thely even frays. final waters run | +45707|56539|19041|1|31|46361.43|0.06|0.05|A|F|1992-08-28|1992-08-13|1992-09-05|DELIVER IN PERSON|REG AIR|ole ironic deposits. regular ide| +45707|248931|23940|2|41|77076.72|0.04|0.05|A|F|1992-07-14|1992-08-04|1992-07-16|DELIVER IN PERSON|TRUCK|unts. ironic the| +45707|782670|32671|3|11|19279.04|0.10|0.01|R|F|1992-09-28|1992-07-10|1992-10-19|DELIVER IN PERSON|FOB|carefully platelets. furiousl| +45707|326520|39027|4|50|77325.50|0.09|0.02|R|F|1992-06-12|1992-07-30|1992-06-29|DELIVER IN PERSON|TRUCK|ccounts detec| +45708|35442|35443|1|43|59229.92|0.04|0.05|R|F|1993-12-01|1993-12-22|1993-12-26|TAKE BACK RETURN|AIR| ideas are care| +45709|331162|43669|1|17|20283.55|0.10|0.00|N|O|1996-12-08|1996-10-24|1996-12-25|TAKE BACK RETURN|TRUCK|slyly special | +45709|827905|2938|2|32|58651.52|0.03|0.00|N|O|1996-10-18|1996-11-17|1996-11-13|DELIVER IN PERSON|TRUCK|. quickly final | +45709|588944|1456|3|47|95547.24|0.05|0.08|N|O|1996-12-22|1996-10-10|1997-01-03|TAKE BACK RETURN|MAIL|kages. express, silent deposits haggle slyl| +45709|371478|46493|4|37|57330.02|0.01|0.08|N|O|1996-12-19|1996-11-10|1996-12-31|NONE|RAIL|ut the final theodolites. quic| +45709|417338|42355|5|19|23850.89|0.09|0.06|N|O|1996-12-30|1996-11-07|1996-12-31|COLLECT COD|MAIL|ructions. regular attainments sleep care| +45709|194818|19825|6|16|30604.96|0.08|0.05|N|O|1996-12-15|1996-10-31|1997-01-08|TAKE BACK RETURN|RAIL|dependencies. blithely regular instructions| +45710|417823|17824|1|44|76595.20|0.02|0.06|R|F|1993-01-25|1992-12-06|1993-02-19|TAKE BACK RETURN|REG AIR|ronic sauternes. unusual| +45711|18789|6290|1|15|25616.70|0.02|0.00|R|F|1995-01-10|1994-11-16|1995-01-31|TAKE BACK RETURN|REG AIR|yly above the fluffily ironic warthogs| +45711|783215|8246|2|41|53225.38|0.04|0.05|A|F|1995-01-28|1994-11-16|1995-02-03|TAKE BACK RETURN|MAIL|the bold, even packages | +45711|492505|42506|3|35|52411.80|0.03|0.02|R|F|1994-12-04|1994-12-06|1994-12-24|NONE|MAIL|lly ironic excu| +45711|526436|26437|4|4|5849.64|0.05|0.08|R|F|1994-12-27|1994-11-30|1995-01-18|DELIVER IN PERSON|MAIL|carefully even depos| +45711|803230|40779|5|4|4532.76|0.05|0.00|R|F|1994-11-21|1994-12-10|1994-11-24|DELIVER IN PERSON|MAIL| affix. asymptotes boost| +45711|876328|13880|6|3|3912.84|0.01|0.02|R|F|1994-11-12|1994-11-10|1994-12-03|COLLECT COD|SHIP|ly. furiously ironic ideas cajole sl| +45736|436774|24299|1|13|22239.75|0.05|0.00|R|F|1995-05-12|1995-07-05|1995-05-30|TAKE BACK RETURN|RAIL| special requests cajole fluff| +45736|850057|58|2|47|47329.47|0.00|0.07|A|F|1995-05-09|1995-05-10|1995-05-15|DELIVER IN PERSON|FOB| haggle about the ironic, | +45736|905061|30098|3|5|5330.10|0.08|0.06|A|F|1995-05-20|1995-05-26|1995-05-27|COLLECT COD|SHIP|he furiously| +45736|344402|44403|4|15|21695.85|0.08|0.08|A|F|1995-04-10|1995-06-22|1995-05-01|NONE|MAIL|ing to the expres| +45736|360854|35869|5|3|5744.52|0.02|0.04|N|O|1995-07-28|1995-06-13|1995-08-25|TAKE BACK RETURN|TRUCK|deas among the ironic, regular theodolites | +45736|857182|19700|6|25|28478.50|0.00|0.01|A|F|1995-05-07|1995-05-27|1995-06-04|DELIVER IN PERSON|FOB|ending foxes. carefully ironic foxes a| +45736|645388|32925|7|15|20000.25|0.06|0.07|A|F|1995-04-23|1995-05-10|1995-04-24|NONE|AIR|l requests wake. special dependencies ha| +45737|19415|19416|1|42|56045.22|0.09|0.00|A|F|1994-05-09|1994-03-12|1994-05-23|TAKE BACK RETURN|SHIP|al requests are fur| +45737|303914|3915|2|43|82469.70|0.08|0.05|R|F|1994-05-13|1994-04-08|1994-05-27|COLLECT COD|RAIL|the pending, even fray| +45737|874208|24209|3|9|10639.44|0.03|0.02|A|F|1994-02-20|1994-04-26|1994-03-13|TAKE BACK RETURN|RAIL|. pending deposi| +45737|803666|16183|4|6|9417.72|0.08|0.08|A|F|1994-04-21|1994-04-27|1994-05-03|COLLECT COD|TRUCK|nic pinto beans according t| +45737|205520|18025|5|5|7127.55|0.03|0.02|R|F|1994-04-13|1994-03-29|1994-04-27|DELIVER IN PERSON|MAIL|arefully special foxes. fluffily unus| +45737|161194|48704|6|46|57738.74|0.09|0.04|R|F|1994-03-09|1994-04-19|1994-03-20|DELIVER IN PERSON|TRUCK|uriously fina| +45737|175271|25272|7|37|49811.99|0.00|0.00|R|F|1994-03-10|1994-03-21|1994-03-18|TAKE BACK RETURN|SHIP|the slyly unus| +45738|773700|11246|1|9|15963.03|0.09|0.00|N|O|1998-01-20|1997-11-23|1998-02-13|NONE|FOB|ular theodolites detect. final | +45739|28429|28430|1|47|63798.74|0.00|0.03|N|O|1996-05-04|1996-05-22|1996-05-28|COLLECT COD|REG AIR|ously regular accounts.| +45739|801824|1825|2|6|10354.68|0.05|0.04|N|O|1996-06-01|1996-04-29|1996-06-05|NONE|TRUCK|ng to the furious, special instructions. f| +45739|245201|45202|3|37|42409.03|0.06|0.06|N|O|1996-03-04|1996-05-14|1996-03-22|COLLECT COD|MAIL|sual excuses snooze ironically. careful| +45739|88154|38155|4|39|44543.85|0.00|0.03|N|O|1996-05-22|1996-03-30|1996-05-29|COLLECT COD|SHIP|fluffily pen| +45739|592410|29944|5|34|51081.26|0.09|0.06|N|O|1996-03-14|1996-04-20|1996-04-06|TAKE BACK RETURN|RAIL|ns use regul| +45740|722183|47212|1|30|36154.50|0.09|0.03|N|O|1996-03-05|1996-04-05|1996-03-12|DELIVER IN PERSON|MAIL|lar excuses| +45740|717585|42614|2|2|3205.10|0.05|0.07|N|O|1996-03-22|1996-04-02|1996-04-19|DELIVER IN PERSON|TRUCK|lar requests doubt quickly special accou| +45740|438316|25841|3|35|43900.15|0.00|0.06|N|O|1996-05-06|1996-04-15|1996-05-30|COLLECT COD|MAIL|e-- furiously final theodolites haggle. fur| +45740|774491|24492|4|38|59487.48|0.02|0.07|N|O|1996-06-15|1996-05-06|1996-07-11|DELIVER IN PERSON|TRUCK| ironic requests cajole ironic deposits. | +45740|856782|6783|5|29|50423.46|0.05|0.01|N|O|1996-03-13|1996-05-06|1996-03-26|TAKE BACK RETURN|FOB|counts wake express foxes. furio| +45740|927091|14646|6|14|15652.70|0.07|0.05|N|O|1996-04-24|1996-05-14|1996-05-13|NONE|FOB|efully. regular excuses along the ca| +45740|614393|39418|7|19|24839.84|0.00|0.01|N|O|1996-02-22|1996-05-16|1996-03-15|COLLECT COD|AIR|ts are. quickly ironic th| +45741|94446|44447|1|16|23047.04|0.06|0.05|N|O|1995-11-08|1996-01-18|1995-11-18|DELIVER IN PERSON|REG AIR|nto beans after the regular accounts| +45742|364601|14602|1|34|56630.06|0.08|0.08|R|F|1994-03-28|1994-05-11|1994-04-09|NONE|MAIL| the daring pinto beans po| +45742|843105|5622|2|30|31441.80|0.08|0.01|R|F|1994-04-01|1994-03-31|1994-04-14|COLLECT COD|REG AIR|eep alongside o| +45742|57501|20003|3|15|21877.50|0.09|0.02|R|F|1994-02-20|1994-04-02|1994-03-17|DELIVER IN PERSON|FOB|uickly ironic the| +45743|89843|2345|1|41|75146.44|0.10|0.07|R|F|1994-07-20|1994-09-30|1994-08-04|DELIVER IN PERSON|TRUCK| blithely: ironic, even a| +45743|983590|21148|2|3|5020.65|0.00|0.01|A|F|1994-10-08|1994-09-05|1994-10-29|NONE|FOB|tornis boost | +45743|192064|17071|3|38|43930.28|0.10|0.03|R|F|1994-10-25|1994-08-29|1994-11-21|NONE|RAIL|furiously even acco| +45743|12564|37565|4|1|1476.56|0.02|0.05|R|F|1994-10-30|1994-09-09|1994-11-28|COLLECT COD|RAIL| Tiresias kindle along the carefully furi| +45743|158902|46412|5|6|11765.40|0.10|0.04|A|F|1994-07-11|1994-08-11|1994-07-29|DELIVER IN PERSON|REG AIR|riously regular requests haggle f| +45768|282653|45159|1|31|50704.84|0.05|0.04|N|O|1997-07-19|1997-09-20|1997-07-26|COLLECT COD|FOB|ular depende| +45769|558595|8596|1|2|3307.14|0.08|0.03|A|F|1992-05-07|1992-03-06|1992-05-15|NONE|TRUCK|, regular instructions. silent, final theod| +45769|300430|25443|2|41|58647.22|0.03|0.00|R|F|1992-05-21|1992-03-05|1992-06-20|NONE|AIR|efully fluffily bold| +45770|466576|41595|1|11|16968.05|0.05|0.03|R|F|1994-09-24|1994-09-18|1994-10-10|DELIVER IN PERSON|REG AIR| among the regular theodolites| +45770|727085|27086|2|37|41145.85|0.01|0.05|R|F|1994-08-08|1994-09-28|1994-08-26|NONE|MAIL|l packages. fluffily special packages| +45770|112520|12521|3|21|32182.92|0.10|0.07|R|F|1994-10-04|1994-09-03|1994-11-01|DELIVER IN PERSON|AIR|nag blithely. f| +45770|119673|32176|4|4|6770.68|0.03|0.01|R|F|1994-08-03|1994-09-23|1994-08-21|DELIVER IN PERSON|FOB|packages. | +45771|711687|24202|1|3|5095.95|0.03|0.04|N|O|1997-04-30|1997-03-01|1997-05-23|COLLECT COD|TRUCK|counts. regular p| +45771|321795|21796|2|50|90839.00|0.01|0.08|N|O|1997-04-27|1997-04-06|1997-05-14|NONE|TRUCK|yly after the id| +45771|401121|1122|3|40|40884.00|0.09|0.08|N|O|1997-02-03|1997-03-01|1997-02-12|TAKE BACK RETURN|MAIL|riously bold ideas are for the express, reg| +45771|635005|47518|4|5|4699.85|0.06|0.07|N|O|1997-02-17|1997-04-15|1997-03-19|DELIVER IN PERSON|FOB|theodolites unwind carefully accordin| +45771|519556|32067|5|4|6302.12|0.08|0.06|N|O|1997-04-05|1997-04-18|1997-04-15|COLLECT COD|RAIL|xpress, silent requests are slyly ironic i| +45771|164359|26863|6|21|29890.35|0.03|0.00|N|O|1997-05-09|1997-04-16|1997-05-21|NONE|MAIL|ctions. theodolit| +45771|368419|43434|7|28|41647.20|0.07|0.02|N|O|1997-02-09|1997-03-27|1997-03-01|NONE|RAIL| slyly unusual deposits: regular| +45772|2248|39749|1|34|39108.16|0.09|0.04|N|O|1996-03-28|1996-02-17|1996-04-05|NONE|RAIL|s nag among the blithely final deposits| +45772|773283|10829|2|10|13562.50|0.10|0.02|N|O|1996-04-07|1996-02-08|1996-04-21|NONE|RAIL|es haggle furi| +45772|559148|46682|3|10|12071.20|0.01|0.02|N|O|1995-12-27|1996-02-12|1996-01-14|COLLECT COD|AIR|uctions. r| +45772|594306|19329|4|1|1400.28|0.01|0.03|N|O|1996-02-29|1996-03-04|1996-03-04|COLLECT COD|RAIL|furiously unusual| +45772|500517|518|5|2|3034.98|0.06|0.01|N|O|1996-02-07|1996-02-15|1996-02-22|NONE|MAIL|l theodolites haggle blithely| +45772|187853|12860|6|41|79574.85|0.09|0.06|N|O|1996-01-02|1996-02-04|1996-01-09|TAKE BACK RETURN|REG AIR|s sleep slyly blithely bl| +45772|244405|6910|7|45|60722.55|0.08|0.02|N|O|1995-12-31|1996-01-22|1996-01-24|TAKE BACK RETURN|FOB|its. unusual account| +45773|700233|234|1|33|40695.60|0.02|0.02|A|F|1992-06-15|1992-07-26|1992-06-24|COLLECT COD|RAIL|ecial requests. special packages | +45773|815870|28387|2|14|25001.62|0.04|0.07|R|F|1992-06-06|1992-07-18|1992-06-11|TAKE BACK RETURN|RAIL|l packages affix pending accounts. furious| +45773|324687|12206|3|1|1711.67|0.10|0.05|R|F|1992-06-15|1992-07-22|1992-07-04|COLLECT COD|MAIL|old patterns about the even de| +45774|249116|24125|1|6|6390.60|0.10|0.08|A|F|1992-09-12|1992-10-15|1992-10-09|NONE|FOB|ular frets cajole above the packages.| +45774|876919|1954|2|22|41709.14|0.03|0.08|A|F|1992-09-12|1992-10-08|1992-09-23|DELIVER IN PERSON|RAIL|ns nod sly| +45774|369516|32024|3|32|50736.00|0.06|0.01|R|F|1992-10-21|1992-10-07|1992-10-23|DELIVER IN PERSON|FOB|ts. blithely unusual theodolites h| +45774|441104|41105|4|23|24036.84|0.09|0.00|R|F|1992-10-30|1992-10-21|1992-11-05|TAKE BACK RETURN|MAIL|ully special requests sleep slyly. expres| +45774|618308|5845|5|20|24525.40|0.05|0.00|R|F|1992-11-20|1992-10-29|1992-11-28|NONE|TRUCK|rays. always special platelets mold expr| +45774|897792|10310|6|33|59061.75|0.03|0.05|R|F|1992-10-03|1992-11-07|1992-10-18|TAKE BACK RETURN|MAIL|ourts haggle quickly quickly| +45775|316955|41968|1|37|72961.78|0.08|0.05|N|O|1997-12-10|1997-12-09|1997-12-27|COLLECT COD|SHIP| even, final ideas. carefully unu| +45775|60210|10211|2|46|53829.66|0.02|0.05|N|O|1998-01-28|1998-01-08|1998-02-15|DELIVER IN PERSON|FOB|ual courts. blithely pending deposit| +45800|326667|14186|1|28|47422.20|0.04|0.05|A|F|1994-11-08|1994-09-02|1994-12-08|TAKE BACK RETURN|FOB|long the u| +45800|287898|404|2|4|7543.52|0.03|0.02|A|F|1994-08-28|1994-09-12|1994-09-19|TAKE BACK RETURN|MAIL|s nag fluffily along the sly| +45800|699315|11829|3|33|43371.24|0.00|0.00|R|F|1994-09-06|1994-09-18|1994-09-07|COLLECT COD|MAIL|nt packages across the bl| +45800|380126|42634|4|41|49450.51|0.02|0.03|A|F|1994-10-11|1994-09-01|1994-11-10|TAKE BACK RETURN|REG AIR|ng carefully unusual deposits. final d| +45800|765115|27631|5|46|54283.68|0.00|0.06|R|F|1994-09-08|1994-09-19|1994-10-03|COLLECT COD|MAIL|wake furiously aft| +45800|278057|28058|6|22|22770.88|0.06|0.04|R|F|1994-11-26|1994-08-31|1994-12-12|COLLECT COD|AIR| express, r| +45800|298533|23544|7|6|9189.12|0.02|0.07|R|F|1994-11-12|1994-09-18|1994-11-18|NONE|TRUCK|nts. regular accounts | +45801|440746|3255|1|21|35421.12|0.08|0.02|A|F|1993-08-26|1993-10-26|1993-09-11|TAKE BACK RETURN|MAIL|ing foxes wake careful| +45801|607805|32830|2|46|78787.42|0.00|0.06|R|F|1993-12-07|1993-09-22|1993-12-20|DELIVER IN PERSON|REG AIR|iously bra| +45801|375716|13238|3|44|78834.80|0.02|0.00|R|F|1993-09-14|1993-10-19|1993-10-06|DELIVER IN PERSON|REG AIR|lve according to the ironic requests. b| +45801|646322|8835|4|36|45658.44|0.01|0.08|A|F|1993-11-07|1993-11-01|1993-11-28|NONE|AIR|accounts. blithely special theodolites slee| +45801|729991|42506|5|40|80838.40|0.05|0.04|R|F|1993-11-19|1993-10-19|1993-12-04|NONE|RAIL| pinto beans are quickly above | +45801|944455|19492|6|22|32987.02|0.10|0.08|R|F|1993-11-22|1993-10-08|1993-12-02|TAKE BACK RETURN|SHIP|y dogged accounts sleep quickly. f| +45802|491988|29516|1|43|85138.28|0.03|0.01|N|O|1996-11-01|1997-01-09|1996-11-16|NONE|SHIP|s. slyly ironic package| +45802|830229|42746|2|1|1159.18|0.09|0.02|N|O|1997-01-27|1997-01-01|1997-02-03|DELIVER IN PERSON|RAIL|ly regular foxes cajol| +45802|642237|42238|3|48|56601.60|0.03|0.01|N|O|1996-12-09|1996-12-06|1996-12-11|NONE|RAIL|kages. care| +45802|67414|42417|4|37|51112.17|0.04|0.06|N|O|1996-11-22|1996-12-02|1996-12-22|TAKE BACK RETURN|REG AIR|quests. quickly ironic the| +45803|656111|6112|1|35|37347.80|0.03|0.05|N|O|1997-11-16|1997-10-19|1997-11-21|NONE|AIR|y regular req| +45803|245172|32685|2|41|45803.56|0.10|0.02|N|O|1997-09-26|1997-10-06|1997-10-18|TAKE BACK RETURN|SHIP| nod pending platelets. carefully re| +45803|593879|31413|3|50|98642.50|0.07|0.02|N|O|1997-10-15|1997-10-21|1997-11-04|COLLECT COD|REG AIR|n deposits haggle | +45803|323400|35907|4|34|48395.26|0.10|0.03|N|O|1997-09-16|1997-10-14|1997-09-30|DELIVER IN PERSON|MAIL|kages. fluffily final courts cajole b| +45803|380001|5016|5|19|20538.81|0.06|0.01|N|O|1997-10-04|1997-09-26|1997-10-25|DELIVER IN PERSON|AIR| pinto beans sleep blithel| +45804|350172|12680|1|17|20776.72|0.07|0.01|N|O|1996-01-03|1996-02-20|1996-01-06|NONE|FOB| are blithely after the | +45804|335579|23098|2|46|74269.76|0.02|0.04|N|O|1996-04-08|1996-02-10|1996-05-01|NONE|SHIP|eaves according to the| +45804|73297|48300|3|27|34297.83|0.04|0.03|N|O|1996-02-11|1996-02-12|1996-02-28|TAKE BACK RETURN|FOB|ely after the even foxes. ironic theodol| +45805|728829|41344|1|24|44586.96|0.08|0.06|A|F|1994-01-05|1993-12-08|1994-01-08|TAKE BACK RETURN|RAIL| eat furiously above the slyly final pack| +45805|415621|28130|2|38|58390.80|0.08|0.03|R|F|1993-12-14|1993-12-05|1993-12-28|DELIVER IN PERSON|SHIP|final foxes. doggedly bold| +45805|329149|41656|3|44|51837.72|0.00|0.08|A|F|1993-11-06|1993-10-17|1993-11-29|DELIVER IN PERSON|TRUCK|ously regul| +45806|421595|34104|1|6|9099.42|0.08|0.01|N|O|1995-09-15|1995-11-30|1995-10-06|TAKE BACK RETURN|REG AIR| instructions are silent sentiments. qu| +45806|730784|43299|2|29|52627.75|0.09|0.00|N|O|1996-01-07|1995-11-08|1996-01-13|DELIVER IN PERSON|RAIL|even, final packages are slyly silent e| +45807|940914|40915|1|4|7819.48|0.10|0.08|N|O|1996-11-08|1996-09-21|1996-11-12|COLLECT COD|MAIL|tes should have to | +45807|940000|2519|2|24|24959.04|0.07|0.04|N|O|1996-10-02|1996-10-05|1996-10-31|NONE|AIR|counts-- even packages caj| +45807|573182|10716|3|7|8786.12|0.04|0.08|N|O|1996-11-12|1996-09-21|1996-12-11|DELIVER IN PERSON|SHIP|ructions. ironic accounts boost according| +45807|466910|29420|4|5|9384.45|0.02|0.04|N|O|1996-11-10|1996-10-26|1996-11-15|COLLECT COD|RAIL|across the packages. regular ins| +45807|351756|26771|5|17|30731.58|0.08|0.01|N|O|1996-09-14|1996-10-01|1996-10-10|NONE|TRUCK|ular frets use slyly quickly ironic fo| +45807|953179|28218|6|20|24642.60|0.10|0.01|N|O|1996-09-14|1996-09-29|1996-10-03|NONE|AIR|lyly. express dependencies | +45807|63839|1343|7|20|36056.60|0.02|0.07|N|O|1996-11-10|1996-11-11|1996-12-10|TAKE BACK RETURN|FOB|ronic, ironic ideas are ironic, ev| +45832|927137|27138|1|50|58204.50|0.04|0.06|N|O|1997-01-04|1997-01-02|1997-01-05|NONE|SHIP|ts. blithely ironic requests h| +45832|375672|13194|2|9|15728.94|0.04|0.06|N|O|1996-11-23|1997-01-16|1996-11-28|TAKE BACK RETURN|REG AIR|nto beans | +45833|559610|34633|1|49|81809.91|0.00|0.02|R|F|1994-07-28|1994-05-29|1994-08-03|NONE|MAIL|pinto beans. regular, ev| +45833|361469|48991|2|39|59687.55|0.06|0.06|R|F|1994-05-08|1994-06-01|1994-06-01|TAKE BACK RETURN|SHIP|sly even theodolites! pending,| +45833|205293|30302|3|16|19172.48|0.06|0.06|R|F|1994-05-29|1994-06-29|1994-06-01|NONE|RAIL|the quickly unusual excuses. special reque| +45833|355786|43308|4|5|9208.85|0.09|0.07|R|F|1994-04-24|1994-06-02|1994-04-30|DELIVER IN PERSON|SHIP| are foxes. carefully re| +45834|48380|35881|1|26|34537.88|0.00|0.00|A|F|1993-08-29|1993-08-09|1993-08-30|TAKE BACK RETURN|RAIL|posits boost quickly f| +45834|114569|39574|2|47|74427.32|0.10|0.06|A|F|1993-08-27|1993-08-18|1993-09-01|DELIVER IN PERSON|REG AIR| carefully final requests. pending req| +45834|557349|44883|3|10|14063.20|0.08|0.08|R|F|1993-07-17|1993-08-26|1993-08-07|TAKE BACK RETURN|TRUCK|uickly special requests. p| +45834|355329|5330|4|23|31839.13|0.03|0.02|A|F|1993-08-06|1993-08-17|1993-08-20|COLLECT COD|AIR| quickly even excuses poach quickly | +45834|2335|27336|5|36|44543.88|0.02|0.04|R|F|1993-06-29|1993-07-23|1993-07-18|DELIVER IN PERSON|AIR|kages nag care| +45834|236329|23842|6|9|11387.79|0.00|0.01|A|F|1993-07-06|1993-09-18|1993-07-16|NONE|RAIL|e final, ironi| +45835|942027|4546|1|2|2137.96|0.03|0.01|A|F|1994-06-26|1994-07-03|1994-07-22|COLLECT COD|RAIL|carefully pending ac| +45835|638879|26416|2|12|21814.08|0.10|0.01|R|F|1994-05-17|1994-06-21|1994-06-04|COLLECT COD|SHIP|furiously even asymptotes| +45835|629681|29682|3|8|12885.20|0.07|0.07|A|F|1994-08-18|1994-07-05|1994-08-25|DELIVER IN PERSON|SHIP|ages integrate quickly dep| +45836|629865|4890|1|4|7179.32|0.00|0.03|R|F|1992-10-15|1992-12-06|1992-10-30|TAKE BACK RETURN|MAIL| accounts poach blithely regular | +45836|140184|40185|2|24|29380.32|0.10|0.07|R|F|1992-12-28|1992-12-14|1993-01-06|COLLECT COD|FOB|al asymptotes sublate furiously even e| +45836|68907|6411|3|20|37518.00|0.06|0.03|A|F|1992-12-17|1992-11-16|1993-01-14|DELIVER IN PERSON|MAIL|ess accounts hag| +45836|117933|30436|4|45|87791.85|0.07|0.06|R|F|1992-11-20|1992-10-19|1992-12-06|TAKE BACK RETURN|REG AIR| the furiously final ideas. regula| +45837|764664|39695|1|44|76059.72|0.09|0.00|A|F|1994-03-29|1994-05-01|1994-03-30|TAKE BACK RETURN|FOB|s. final ideas sleep carefu| +45837|701842|26871|2|22|40563.82|0.06|0.01|A|F|1994-05-23|1994-04-08|1994-06-09|DELIVER IN PERSON|SHIP|express instructi| +45837|852713|40265|3|15|24985.05|0.02|0.07|R|F|1994-03-31|1994-05-11|1994-04-30|NONE|FOB| across the ironic pinto beans. sl| +45837|531464|43975|4|31|46358.64|0.03|0.00|R|F|1994-06-01|1994-06-04|1994-06-28|DELIVER IN PERSON|RAIL|s cajole alongside of the even pinto bea| +45837|310049|10050|5|50|52951.50|0.09|0.06|A|F|1994-04-11|1994-05-13|1994-04-24|NONE|FOB|as cajole among the quiet, pending | +45838|800844|13361|1|48|83750.40|0.02|0.00|A|F|1994-02-04|1994-01-23|1994-02-07|COLLECT COD|TRUCK|sts haggle blithely | +45838|780532|30533|2|38|61275.00|0.04|0.06|R|F|1993-12-24|1994-02-01|1994-01-01|TAKE BACK RETURN|TRUCK|kages; regular pinto bea| +45838|387112|37113|3|39|46764.90|0.06|0.05|A|F|1994-01-19|1994-01-28|1994-01-24|COLLECT COD|MAIL|iously furiously regular | +45838|185080|47584|4|50|58254.00|0.08|0.08|R|F|1993-12-30|1994-01-21|1994-01-11|COLLECT COD|RAIL|special ac| +45839|935536|35537|1|9|14143.41|0.09|0.00|N|O|1996-12-04|1996-11-30|1996-12-13|DELIVER IN PERSON|REG AIR|lar accounts haggle blithel| +45839|542258|17279|2|45|58510.35|0.09|0.01|N|O|1996-11-21|1996-11-23|1996-12-07|NONE|TRUCK|sublate. permanently quiet| +45839|715787|28302|3|25|45068.75|0.01|0.03|N|O|1996-09-23|1996-12-02|1996-10-15|DELIVER IN PERSON|SHIP|y final deposits hinder furiously. | +45839|219797|19798|4|2|3433.56|0.04|0.04|N|O|1997-01-01|1996-10-15|1997-01-13|COLLECT COD|TRUCK|nic asymptotes ar| +45839|116087|28590|5|21|23164.68|0.05|0.05|N|O|1997-01-07|1996-10-25|1997-01-29|NONE|SHIP|as. requests detect fluffily exp| +45839|57570|32573|6|34|51937.38|0.10|0.08|N|O|1996-10-20|1996-11-08|1996-11-15|COLLECT COD|TRUCK|sual dependencies. slyly even packages i| +45864|509745|9746|1|8|14037.76|0.10|0.06|N|O|1997-01-03|1996-11-05|1997-02-01|TAKE BACK RETURN|REG AIR|ilent packages a| +45864|276768|14284|2|39|68045.25|0.03|0.07|N|O|1996-12-18|1996-11-24|1997-01-03|NONE|RAIL|g the blithely regular deposits | +45864|624883|49908|3|3|5423.55|0.10|0.06|N|O|1996-10-12|1996-11-07|1996-10-16|DELIVER IN PERSON|AIR|ccounts detect.| +45865|646741|9254|1|45|75946.95|0.03|0.01|N|O|1996-01-27|1996-03-23|1996-02-18|DELIVER IN PERSON|MAIL|s use slyly acco| +45865|771281|46312|2|47|63555.75|0.10|0.07|N|O|1996-03-26|1996-03-01|1996-04-03|DELIVER IN PERSON|FOB|ess packages above the car| +45866|544087|6598|1|37|41849.22|0.03|0.07|A|F|1994-04-11|1994-02-22|1994-04-30|DELIVER IN PERSON|AIR|usly regular packages. final deposits sl| +45866|457084|44612|2|41|42683.46|0.07|0.02|A|F|1994-02-24|1994-03-20|1994-03-08|NONE|AIR|e the furiously regular foxes a| +45866|207836|20341|3|24|41851.68|0.10|0.04|R|F|1994-04-28|1994-02-23|1994-05-24|DELIVER IN PERSON|AIR|onic excuses after t| +45867|436377|11394|1|12|15760.20|0.09|0.01|R|F|1993-08-08|1993-06-30|1993-08-09|COLLECT COD|FOB|s snooze blith| +45868|13659|1160|1|30|47179.50|0.06|0.01|R|F|1992-03-22|1992-03-18|1992-04-08|NONE|REG AIR|ove the carefully re| +45868|565286|2820|2|8|10810.08|0.01|0.04|A|F|1992-03-25|1992-03-27|1992-04-15|NONE|TRUCK|ses sleep furiously; platelets | +45868|758548|33579|3|2|3213.02|0.03|0.03|R|F|1992-04-09|1992-04-17|1992-04-17|TAKE BACK RETURN|AIR|hely along the bold, bold accounts. fluffil| +45868|902537|40092|4|21|32329.29|0.05|0.07|R|F|1992-05-17|1992-04-10|1992-06-13|TAKE BACK RETURN|TRUCK|ic requests. slyly regul| +45868|926217|26218|5|44|54699.48|0.04|0.01|R|F|1992-04-24|1992-03-31|1992-05-24|DELIVER IN PERSON|AIR|e carefully bold ideas. carefully ironi| +45868|913670|13671|6|16|26938.08|0.00|0.01|R|F|1992-04-12|1992-04-25|1992-05-07|COLLECT COD|AIR|gular deposits up the| +45868|37785|286|7|21|36178.38|0.07|0.00|R|F|1992-02-26|1992-04-14|1992-03-20|DELIVER IN PERSON|FOB| bold asymptotes b| +45869|43475|18476|1|22|31206.34|0.01|0.04|N|O|1995-06-27|1995-06-01|1995-07-09|DELIVER IN PERSON|MAIL|yly around| +45869|672762|22763|2|38|65919.74|0.06|0.02|N|O|1995-06-24|1995-07-18|1995-06-28|COLLECT COD|TRUCK|he ruthlessly unusua| +45870|964471|39510|1|22|33779.46|0.08|0.03|N|O|1997-11-24|1997-12-14|1997-12-10|COLLECT COD|RAIL|s. fluffily silent dependencies | +45870|862231|37266|2|5|5965.95|0.05|0.05|N|O|1997-11-09|1997-12-16|1997-12-02|DELIVER IN PERSON|REG AIR|ter the courts. courts against th| +45871|168814|18815|1|9|16945.29|0.07|0.01|A|F|1993-05-27|1993-03-24|1993-06-20|TAKE BACK RETURN|FOB|refully bold asymptotes n| +45871|242409|42410|2|29|39190.31|0.01|0.06|A|F|1993-06-01|1993-03-16|1993-07-01|TAKE BACK RETURN|RAIL|haggle blithely. always ironic package| +45871|157644|32651|3|47|79977.08|0.07|0.04|R|F|1993-05-13|1993-03-15|1993-05-29|DELIVER IN PERSON|SHIP|t blithely. furiously bold instructio| +45871|507321|7322|4|48|63758.40|0.07|0.00|R|F|1993-06-04|1993-03-21|1993-06-15|TAKE BACK RETURN|TRUCK|t the ironic excuses a| +45896|715136|27651|1|20|23022.00|0.05|0.08|A|F|1993-11-10|1993-09-18|1993-11-16|TAKE BACK RETURN|MAIL|kly regular deposits affix slyly blithely i| +45896|278971|28972|2|6|11699.76|0.08|0.03|R|F|1993-08-06|1993-10-26|1993-08-26|NONE|RAIL|efully express packages. slyly final| +45896|654378|4379|3|22|29311.48|0.08|0.00|R|F|1993-10-31|1993-10-18|1993-11-22|TAKE BACK RETURN|TRUCK|ar dolphins play fluffily. | +45896|131039|6044|4|25|26750.75|0.03|0.03|R|F|1993-11-20|1993-10-29|1993-11-27|DELIVER IN PERSON|AIR|le fluffily: regular depo| +45897|885913|48431|1|34|64561.58|0.08|0.00|A|F|1993-07-22|1993-10-08|1993-08-20|DELIVER IN PERSON|MAIL|olites. carefully regular frays haggle| +45897|539368|1879|2|25|35183.50|0.01|0.03|A|F|1993-07-19|1993-08-27|1993-07-22|TAKE BACK RETURN|SHIP|regular accounts sleep. ironic i| +45897|142631|42632|3|46|76986.98|0.04|0.04|A|F|1993-09-18|1993-08-23|1993-10-18|DELIVER IN PERSON|FOB|ly pending, ironic ideas. deposits dete| +45898|39514|14515|1|39|56686.89|0.06|0.00|A|F|1994-05-01|1994-03-17|1994-05-27|DELIVER IN PERSON|RAIL| pearls. furiously special| +45898|111103|23606|2|28|31194.80|0.05|0.01|R|F|1994-04-06|1994-04-13|1994-04-13|TAKE BACK RETURN|AIR|y across the slyly even r| +45898|304806|29819|3|46|83296.34|0.08|0.03|R|F|1994-05-23|1994-04-20|1994-05-28|COLLECT COD|SHIP|lites. slyly r| +45899|194758|7262|1|48|88932.00|0.08|0.00|N|F|1995-06-11|1995-07-19|1995-06-30|NONE|TRUCK|lithely ironic, regular requests. regul| +45899|291397|16408|2|48|66642.24|0.04|0.00|N|O|1995-08-18|1995-08-23|1995-08-22|DELIVER IN PERSON|MAIL| blithely daring dolphins cajole blithely| +45899|509182|46713|3|30|35734.80|0.07|0.00|A|F|1995-06-12|1995-08-14|1995-06-13|NONE|REG AIR|ckly ironic reques| +45899|806939|19456|4|18|33226.02|0.04|0.01|N|F|1995-06-15|1995-07-21|1995-06-27|COLLECT COD|SHIP| beans. furiously bold deposits| +45899|216607|29112|5|21|31995.39|0.08|0.03|N|O|1995-08-31|1995-07-31|1995-09-19|NONE|FOB| are slyly c| +45899|513323|854|6|33|44097.90|0.02|0.03|N|F|1995-06-12|1995-09-03|1995-06-20|COLLECT COD|AIR|; blithely ste| +45900|490632|15651|1|38|61659.18|0.04|0.06|R|F|1994-09-25|1994-09-05|1994-09-30|DELIVER IN PERSON|TRUCK|regular dependencies acros| +45900|49452|49453|2|27|37839.15|0.03|0.08|R|F|1994-08-30|1994-10-20|1994-09-23|NONE|REG AIR|es. packages haggle above the requests| +45900|131568|31569|3|4|6398.24|0.09|0.01|R|F|1994-09-19|1994-10-17|1994-09-27|NONE|MAIL|nst the un| +45900|252518|15024|4|23|33821.50|0.04|0.00|A|F|1994-08-29|1994-10-21|1994-09-10|NONE|RAIL|ly careful| +45900|55895|30898|5|6|11105.34|0.01|0.00|A|F|1994-10-30|1994-09-28|1994-11-22|DELIVER IN PERSON|TRUCK|s doze quickly alon| +45900|425885|25886|6|29|52514.94|0.09|0.01|R|F|1994-09-15|1994-09-02|1994-09-21|NONE|AIR|inal, final packages about | +45901|504483|42014|1|18|26774.28|0.05|0.00|N|O|1996-01-08|1995-12-14|1996-01-31|NONE|RAIL|wake slyly alongside of the ironic| +45901|835524|48041|2|32|46703.36|0.10|0.02|N|O|1995-11-12|1995-12-19|1995-12-09|NONE|TRUCK|efully regular accounts. blithely| +45902|818868|6417|1|30|53604.60|0.02|0.03|A|F|1993-02-15|1993-02-13|1993-02-20|TAKE BACK RETURN|REG AIR|usly final excus| +45902|705218|42761|2|27|33025.86|0.08|0.07|R|F|1993-02-15|1992-12-19|1993-03-05|DELIVER IN PERSON|REG AIR|ages haggle | +45902|582142|19676|3|20|24482.40|0.07|0.01|R|F|1993-01-22|1992-12-18|1993-02-16|COLLECT COD|TRUCK|asymptotes. carefu| +45902|57282|44786|4|6|7435.68|0.07|0.05|A|F|1993-03-17|1993-01-30|1993-03-19|TAKE BACK RETURN|RAIL|as. pains boost furiously furiously regular| +45902|732374|32375|5|7|9844.38|0.07|0.01|A|F|1993-01-08|1993-01-11|1993-01-27|NONE|MAIL|es? carefully express deposit| +45902|110|12611|6|50|50505.50|0.01|0.08|R|F|1993-03-05|1992-12-23|1993-03-22|TAKE BACK RETURN|MAIL|structions slee| +45903|243984|43985|1|31|59767.07|0.03|0.00|A|F|1993-05-06|1993-03-21|1993-06-05|DELIVER IN PERSON|REG AIR|cial foxes sleep blithely careful| +45928|415866|15867|1|24|42764.16|0.00|0.05|R|F|1993-09-03|1993-09-25|1993-09-04|NONE|TRUCK|into beans boost i| +45928|450844|845|2|43|77177.26|0.10|0.08|R|F|1993-08-10|1993-09-08|1993-08-30|COLLECT COD|AIR|ages. regular instructions haggle sl| +45928|323945|23946|3|8|15751.44|0.09|0.07|R|F|1993-08-12|1993-10-30|1993-08-16|NONE|TRUCK|requests sleep blithely ac| +45928|541487|3998|4|37|56553.02|0.03|0.08|R|F|1993-10-29|1993-10-25|1993-10-31|DELIVER IN PERSON|AIR| doubt about the quickly b| +45929|401556|14065|1|46|67046.38|0.07|0.05|R|F|1992-02-23|1992-03-31|1992-03-10|NONE|REG AIR|ording to the carefully pe| +45929|945139|7658|2|14|16577.26|0.02|0.01|R|F|1992-03-11|1992-04-10|1992-03-17|DELIVER IN PERSON|TRUCK|dencies lose regular grouches. closely iro| +45929|943655|6174|3|48|81533.28|0.03|0.06|R|F|1992-06-04|1992-03-17|1992-07-04|DELIVER IN PERSON|REG AIR|es wake against| +45930|65432|27934|1|5|6987.15|0.02|0.08|R|F|1994-09-01|1994-10-13|1994-09-15|DELIVER IN PERSON|RAIL|ake furiously theodolites. sly| +45931|24232|36733|1|21|24280.83|0.03|0.08|N|O|1997-10-10|1997-10-26|1997-10-24|DELIVER IN PERSON|RAIL|es-- quickly bold | +45931|261419|36430|2|48|66259.20|0.04|0.01|N|O|1997-11-22|1997-10-30|1997-12-18|NONE|SHIP|the regular platele| +45932|551612|14124|1|26|43253.34|0.06|0.08|N|O|1996-07-06|1996-06-21|1996-07-14|NONE|MAIL|thely final de| +45932|938584|38585|2|34|55166.36|0.03|0.01|N|O|1996-09-13|1996-07-13|1996-09-26|NONE|RAIL|sts. ironic, pending accounts sleep flu| +45932|772826|22827|3|14|26583.06|0.02|0.06|N|O|1996-09-16|1996-07-02|1996-10-15|COLLECT COD|MAIL|bove the regular accounts haggle slyly | +45932|870891|45926|4|2|3723.70|0.08|0.07|N|O|1996-06-26|1996-07-14|1996-07-22|NONE|SHIP| ideas. furiously regul| +45932|53511|41015|5|39|57115.89|0.07|0.01|N|O|1996-06-24|1996-06-26|1996-07-11|NONE|REG AIR| express depend| +45932|345443|45444|6|1|1488.43|0.03|0.01|N|O|1996-07-26|1996-07-07|1996-07-28|COLLECT COD|TRUCK|iously quickly ironic theodoli| +45933|750431|432|1|5|7407.00|0.08|0.06|N|O|1996-05-08|1996-06-16|1996-05-10|TAKE BACK RETURN|FOB|ages. blithely ironic requests x-ra| +45933|486667|11686|2|1|1653.64|0.01|0.07|N|O|1996-05-19|1996-05-25|1996-06-02|COLLECT COD|TRUCK|eposits unwind fluffily. carefully | +45933|395998|8506|3|49|102605.02|0.01|0.07|N|O|1996-04-18|1996-06-22|1996-05-07|NONE|RAIL|gle furiously daringly ironic theodoli| +45933|533477|45988|4|10|15104.50|0.04|0.01|N|O|1996-08-04|1996-06-24|1996-08-31|DELIVER IN PERSON|MAIL|g deposits are above the careful| +45933|147121|34628|5|28|32707.36|0.07|0.07|N|O|1996-06-05|1996-05-19|1996-06-09|NONE|TRUCK|ons. quickly final ideas boost. i| +45934|886711|24263|1|41|69604.47|0.09|0.04|N|O|1998-09-25|1998-08-25|1998-10-14|DELIVER IN PERSON|FOB|. requests alongside of the slyly brave | +45934|948466|48467|2|49|74206.58|0.07|0.03|N|O|1998-09-16|1998-08-31|1998-09-28|NONE|MAIL|nt accounts after t| +45934|860426|22944|3|38|52682.44|0.09|0.04|N|O|1998-09-28|1998-10-13|1998-10-26|NONE|REG AIR|yly even platelets use quickly ag| +45934|171945|46952|4|5|10084.70|0.02|0.00|N|O|1998-08-16|1998-08-20|1998-09-01|DELIVER IN PERSON|AIR|nding dependencies. even dependenci| +45934|867080|17081|5|5|5235.20|0.10|0.04|N|O|1998-07-21|1998-08-21|1998-08-10|TAKE BACK RETURN|AIR|he final p| +45935|662501|37528|1|4|5853.88|0.08|0.03|R|F|1994-06-26|1994-05-23|1994-07-18|NONE|RAIL|fully slyly regula| +45935|644402|44403|2|45|60586.65|0.00|0.03|R|F|1994-07-02|1994-05-23|1994-07-12|TAKE BACK RETURN|AIR|er. ironic, unusual packages affix s| +45935|460743|48271|3|44|74963.68|0.06|0.01|R|F|1994-08-14|1994-06-02|1994-08-15|TAKE BACK RETURN|MAIL|onic Tiresias sleep bl| +45935|702499|2500|4|29|43542.34|0.10|0.01|A|F|1994-06-28|1994-06-22|1994-07-23|TAKE BACK RETURN|REG AIR|s requests | +45935|891352|3870|5|28|37612.68|0.07|0.03|R|F|1994-04-17|1994-05-23|1994-04-27|TAKE BACK RETURN|AIR|ose fluffily. regular reque| +45935|952448|27487|6|26|39010.40|0.00|0.01|A|F|1994-06-11|1994-07-13|1994-06-23|COLLECT COD|RAIL|osits. ironic theodolites a| +45960|386883|36884|1|42|82734.54|0.06|0.07|R|F|1994-03-17|1994-02-17|1994-04-11|TAKE BACK RETURN|SHIP|mong the slyly pendin| +45960|340337|40338|2|1|1377.32|0.05|0.01|R|F|1994-03-08|1994-01-11|1994-03-15|NONE|FOB|uietly silent frets nag blithely regu| +45960|33527|21028|3|27|39434.04|0.08|0.06|R|F|1993-12-12|1994-01-31|1994-01-10|DELIVER IN PERSON|MAIL|ully-- even instructio| +45960|483114|8133|4|46|50466.14|0.10|0.04|R|F|1994-01-04|1994-02-04|1994-01-20|COLLECT COD|RAIL|s. even requests affix furiou| +45960|696101|46102|5|27|29620.89|0.03|0.01|R|F|1994-01-10|1993-12-25|1994-02-05|NONE|FOB| nag fluffily. regular, final r| +45960|366321|28829|6|48|66590.88|0.08|0.08|A|F|1994-01-31|1993-12-23|1994-02-19|TAKE BACK RETURN|FOB|inal accounts are furi| +45961|812848|25365|1|43|75714.40|0.01|0.06|R|F|1994-07-01|1994-09-10|1994-07-07|TAKE BACK RETURN|AIR|y. blithely blithe inst| +45961|533312|20843|2|38|51121.02|0.01|0.02|R|F|1994-09-23|1994-08-06|1994-10-22|NONE|REG AIR|efully. carefully regular instructions amon| +45961|360237|10238|3|30|38916.60|0.06|0.01|R|F|1994-08-20|1994-08-10|1994-09-18|DELIVER IN PERSON|RAIL|t the blithely even deposits| +45961|498974|11484|4|29|57215.55|0.00|0.04|R|F|1994-09-14|1994-08-18|1994-09-16|NONE|REG AIR| according to the ironic, | +45961|251242|1243|5|14|16705.22|0.04|0.01|R|F|1994-09-06|1994-09-03|1994-09-26|TAKE BACK RETURN|TRUCK|lar, bold accounts. specia| +45961|619885|44910|6|1|1804.85|0.09|0.00|R|F|1994-07-06|1994-09-10|1994-07-25|TAKE BACK RETURN|FOB|blithely fi| +45961|395663|20678|7|10|17586.50|0.02|0.03|A|F|1994-09-25|1994-08-05|1994-10-17|TAKE BACK RETURN|AIR|ly sly accounts cajole. | +45962|902726|2727|1|30|51860.40|0.00|0.06|R|F|1992-03-19|1992-05-23|1992-03-31|NONE|RAIL| the special, even real| +45962|101602|14105|2|21|33675.60|0.06|0.05|A|F|1992-03-23|1992-04-18|1992-04-12|NONE|REG AIR|re furiously| +45962|608915|21428|3|24|43773.12|0.05|0.02|A|F|1992-05-21|1992-04-24|1992-05-27|DELIVER IN PERSON|RAIL|quests. slyly ex| +45962|29554|4555|4|23|34121.65|0.00|0.02|R|F|1992-03-27|1992-04-30|1992-04-02|COLLECT COD|AIR| slyly alongside of the b| +45962|702850|40393|5|26|48173.32|0.07|0.08|R|F|1992-05-21|1992-06-02|1992-05-24|TAKE BACK RETURN|RAIL|ular packages. furiously ex| +45962|791230|41231|6|33|43599.60|0.02|0.04|R|F|1992-05-21|1992-05-03|1992-06-06|NONE|FOB|le. regular | +45962|187889|12896|7|35|69190.80|0.09|0.06|A|F|1992-04-26|1992-04-16|1992-05-08|NONE|MAIL|jole quickly against the special| +45963|841611|16644|1|46|71418.22|0.07|0.05|N|O|1995-07-22|1995-08-14|1995-08-03|TAKE BACK RETURN|RAIL|slyly stealt| +45963|954233|41791|2|42|54061.98|0.01|0.05|N|O|1995-10-09|1995-08-23|1995-10-27|NONE|MAIL|ular, ironic dependencies about the u| +45963|791191|28737|3|7|8975.12|0.07|0.00|N|O|1995-08-12|1995-08-16|1995-08-22|DELIVER IN PERSON|TRUCK|iously regular packages boo| +45963|540304|2815|4|5|6721.40|0.09|0.00|N|O|1995-09-19|1995-10-04|1995-10-12|TAKE BACK RETURN|TRUCK|equests detect qui| +45963|878869|41387|5|42|77608.44|0.08|0.02|N|O|1995-10-14|1995-08-25|1995-11-05|NONE|TRUCK| against the busily spec| +45963|147454|22459|6|8|12011.60|0.07|0.01|N|O|1995-09-30|1995-08-23|1995-10-23|DELIVER IN PERSON|AIR|requests a| +45964|248011|23020|1|25|23975.00|0.09|0.01|R|F|1993-02-10|1993-03-13|1993-02-16|DELIVER IN PERSON|REG AIR| regular ideas. blithely final packag| +45964|319956|7475|2|13|25687.22|0.10|0.08|R|F|1993-04-01|1993-03-10|1993-04-29|NONE|FOB|ounts nod slyly acr| +45964|487730|12749|3|44|75579.24|0.03|0.02|R|F|1993-02-10|1993-03-09|1993-02-27|DELIVER IN PERSON|FOB|en excuses. blithely final theodol| +45964|262543|25049|4|48|72265.44|0.00|0.04|A|F|1993-01-28|1993-01-22|1993-01-31|NONE|FOB|ideas impress quickly across the careful| +45964|546207|46208|5|4|5012.72|0.10|0.07|R|F|1993-02-02|1993-03-04|1993-02-05|NONE|RAIL|luffily. carefully special deposit| +45965|674252|11792|1|21|25750.62|0.04|0.07|N|O|1997-11-21|1997-10-31|1997-12-07|TAKE BACK RETURN|AIR|ckly ironic deposits. bold requests over t| +45965|149608|49609|2|33|54700.80|0.04|0.03|N|O|1997-10-31|1997-10-07|1997-11-21|DELIVER IN PERSON|RAIL|ts. carefully express instructions boos| +45965|456261|6262|3|49|59644.76|0.09|0.08|N|O|1997-09-19|1997-10-19|1997-10-13|NONE|AIR|regular requests d| +45966|17694|17695|1|40|64467.60|0.08|0.04|N|O|1996-04-28|1996-03-29|1996-05-21|COLLECT COD|MAIL|nst the slyly regular accou| +45967|961457|23977|1|36|54662.76|0.08|0.02|N|O|1998-08-12|1998-07-11|1998-09-10|COLLECT COD|TRUCK|cajole fluffily. slyly | +45967|191436|41437|2|29|44295.47|0.01|0.04|N|O|1998-07-19|1998-08-12|1998-07-29|NONE|RAIL|deposits are fluffily even i| +45967|459418|21928|3|18|24793.02|0.06|0.08|N|O|1998-06-30|1998-08-04|1998-07-03|TAKE BACK RETURN|SHIP|onic, regular deposits nag carefully.| +45967|421530|21531|4|32|46448.32|0.05|0.01|N|O|1998-07-19|1998-07-13|1998-08-18|COLLECT COD|SHIP|. accounts boost silent, sil| +45992|11022|48523|1|30|27990.60|0.06|0.08|N|O|1997-12-12|1997-09-26|1997-12-18|TAKE BACK RETURN|FOB|theodolites. fluffily bold notornis | +45992|243188|18197|2|24|27148.08|0.03|0.00|N|O|1997-09-13|1997-09-23|1997-09-17|DELIVER IN PERSON|MAIL|blithely bold pack| +45993|149044|11547|1|30|32791.20|0.07|0.00|A|F|1994-02-01|1994-01-04|1994-02-04|TAKE BACK RETURN|MAIL|ts. ironic, even braids cajole carefu| +45993|979811|17369|2|37|69958.49|0.00|0.00|R|F|1994-04-02|1994-01-26|1994-04-05|DELIVER IN PERSON|MAIL|counts. carefully unusual i| +45993|673056|35570|3|39|40131.78|0.00|0.08|R|F|1994-02-11|1994-02-23|1994-03-05|COLLECT COD|AIR|unts. special, bold fo| +45993|35550|23051|4|14|20797.70|0.05|0.07|A|F|1994-04-01|1994-01-21|1994-04-27|COLLECT COD|RAIL|ular platelets with the | +45993|473834|48853|5|21|37964.01|0.05|0.01|R|F|1994-02-26|1994-03-04|1994-03-20|NONE|REG AIR|de of the carefully ironic accounts haggle| +45994|52435|39939|1|32|44397.76|0.02|0.02|A|F|1993-11-03|1993-11-17|1993-11-26|TAKE BACK RETURN|REG AIR| final pinto beans. pending account| +45994|267188|4704|2|38|43896.46|0.02|0.08|A|F|1993-11-29|1993-10-25|1993-12-04|NONE|TRUCK|uses are outside the careful| +45994|613372|38397|3|43|55269.62|0.05|0.05|R|F|1993-11-09|1993-10-24|1993-11-21|DELIVER IN PERSON|AIR| special instru| +45994|927008|39527|4|10|10349.60|0.00|0.05|A|F|1993-10-16|1993-10-05|1993-10-19|NONE|FOB|ly boldly ironic p| +45994|208534|46047|5|39|56258.28|0.01|0.07|R|F|1993-12-18|1993-09-27|1994-01-17|TAKE BACK RETURN|RAIL|cuses. silent packages sleep slyl| +45995|35414|22915|1|19|25638.79|0.01|0.01|N|O|1995-10-12|1995-08-31|1995-10-30|NONE|REG AIR|l, even theodoli| +45995|187087|24597|2|36|42266.88|0.07|0.04|N|O|1995-10-16|1995-09-11|1995-11-11|DELIVER IN PERSON|TRUCK| special requests wake | +45995|358233|20741|3|9|11620.98|0.09|0.01|N|O|1995-07-25|1995-09-30|1995-08-11|DELIVER IN PERSON|RAIL|ular packages. Tiresias lose s| +45995|811291|11292|4|12|14427.00|0.07|0.08|N|O|1995-08-11|1995-08-25|1995-09-02|NONE|FOB|nal accounts. slyly | +45995|363639|1161|5|18|30647.16|0.03|0.00|N|O|1995-07-24|1995-09-21|1995-08-09|DELIVER IN PERSON|MAIL|old requests cajole | +45995|671924|34438|6|45|85315.05|0.02|0.00|N|O|1995-08-31|1995-09-13|1995-09-11|NONE|AIR|ccounts. slyly| +45996|195819|8323|1|8|15318.48|0.05|0.06|R|F|1992-12-05|1993-02-04|1992-12-23|NONE|FOB|ep. slyly pending courts integrate blit| +45996|121236|8743|2|30|37716.90|0.10|0.00|R|F|1993-02-19|1993-01-18|1993-03-18|NONE|SHIP|thely. quickly pending package| +45997|359177|46699|1|30|37084.80|0.00|0.02|R|F|1993-08-05|1993-05-10|1993-08-25|TAKE BACK RETURN|REG AIR|cajole. blithely p| +45997|675803|25804|2|50|88938.50|0.08|0.08|A|F|1993-06-26|1993-06-15|1993-07-04|TAKE BACK RETURN|RAIL| alongside of the blit| +45997|220935|8448|3|13|24126.96|0.02|0.01|A|F|1993-06-09|1993-05-30|1993-07-05|DELIVER IN PERSON|MAIL|ily pending requests around the final, fi| +45997|240728|3233|4|34|56736.14|0.02|0.06|R|F|1993-07-09|1993-05-21|1993-07-22|DELIVER IN PERSON|AIR|o beans. furiously express de| +45997|901281|38836|5|24|30773.76|0.03|0.03|R|F|1993-04-23|1993-05-12|1993-05-14|NONE|REG AIR|lphins haggle sly| +45997|819320|44353|6|36|44614.08|0.09|0.08|A|F|1993-06-20|1993-06-14|1993-06-22|DELIVER IN PERSON|AIR|al ideas boost among the fluffily| +45998|822384|47417|1|24|31352.16|0.05|0.01|N|O|1996-06-28|1996-07-04|1996-07-24|DELIVER IN PERSON|TRUCK|doggedly. carefully fina| +45999|928728|28729|1|43|75537.24|0.00|0.06|A|F|1995-03-19|1995-02-05|1995-04-07|DELIVER IN PERSON|TRUCK|old, ironic packages sl| +45999|129199|29200|2|38|46671.22|0.09|0.08|A|F|1995-03-23|1995-01-31|1995-04-15|NONE|FOB|efully final packages. slyl| +45999|445483|45484|3|12|17141.52|0.09|0.07|A|F|1995-01-05|1995-03-15|1995-01-13|TAKE BACK RETURN|MAIL|packages affix close, final packages. slyly| +45999|218659|31164|4|21|33130.44|0.07|0.04|A|F|1995-01-13|1995-02-15|1995-01-31|DELIVER IN PERSON|MAIL|lly across the blithely final reque| +45999|988158|678|5|44|54828.84|0.05|0.06|R|F|1995-04-20|1995-01-27|1995-05-02|TAKE BACK RETURN|AIR|y blithe, furious deposits. fluffi| +45999|967987|17988|6|15|30824.10|0.07|0.00|A|F|1995-01-08|1995-03-16|1995-01-20|NONE|MAIL|ing theodolites. fluffily| +45999|955083|17603|7|38|43245.52|0.01|0.06|R|F|1994-12-27|1995-02-05|1995-01-06|COLLECT COD|SHIP|uriously silent packages at the iron| +46024|75919|922|1|3|5684.73|0.05|0.07|R|F|1992-12-11|1992-11-11|1992-12-17|TAKE BACK RETURN|TRUCK|cajole furiou| +46024|968912|18913|2|38|75273.06|0.07|0.08|A|F|1992-11-10|1992-12-29|1992-12-10|NONE|SHIP| the regular, ironic in| +46025|763281|827|1|15|20163.75|0.01|0.08|N|O|1995-11-05|1995-12-09|1995-11-18|NONE|RAIL|. express depths sleep regular, bold| +46025|458958|21468|2|17|32587.81|0.10|0.05|N|O|1995-11-01|1995-11-04|1995-11-28|NONE|TRUCK|furiously final instructions| +46025|693343|43344|3|42|56125.02|0.05|0.08|N|O|1996-01-02|1995-12-31|1996-01-26|COLLECT COD|MAIL|iously sil| +46026|899852|24887|1|6|11110.86|0.07|0.08|N|O|1996-04-18|1996-05-28|1996-05-06|DELIVER IN PERSON|TRUCK|t the blithely regular instructions. pe| +46027|93965|31469|1|22|43097.12|0.00|0.03|A|F|1992-08-16|1992-08-07|1992-08-18|NONE|TRUCK|uses. requests along| +46028|565539|40562|1|9|14440.59|0.06|0.02|N|O|1998-04-04|1998-03-06|1998-04-05|NONE|SHIP|tterns haggle across the regularly| +46028|463|37964|2|26|35449.96|0.09|0.04|N|O|1998-03-08|1998-01-23|1998-03-31|NONE|AIR|ong the blithely regular package| +46029|995884|8404|1|18|35637.12|0.03|0.05|N|O|1998-08-13|1998-06-15|1998-09-05|TAKE BACK RETURN|REG AIR|oxes; furiously u| +46029|809316|46865|2|13|15928.51|0.04|0.08|N|O|1998-09-06|1998-07-17|1998-09-11|COLLECT COD|TRUCK|l accounts boost. carefully bold deposi| +46029|166372|41379|3|8|11506.96|0.03|0.01|N|O|1998-07-02|1998-06-19|1998-07-28|NONE|TRUCK|of the deposits. c| +46029|205202|42715|4|13|14393.47|0.07|0.03|N|O|1998-06-04|1998-06-15|1998-06-14|NONE|REG AIR|mong the dugouts. | +46029|816253|16254|5|12|14030.52|0.05|0.06|N|O|1998-08-11|1998-06-17|1998-09-09|NONE|FOB| courts above the slyly careful pinto | +46029|758237|20753|6|3|3885.60|0.02|0.05|N|O|1998-05-28|1998-07-14|1998-06-04|NONE|AIR|al accounts. carefully | +46030|49853|37354|1|14|25239.90|0.05|0.02|A|F|1994-03-07|1994-03-21|1994-03-19|COLLECT COD|SHIP|efully ironic packages. express ac| +46030|872341|47376|2|32|42025.60|0.05|0.02|A|F|1994-04-22|1994-05-09|1994-04-30|COLLECT COD|TRUCK|e even, sile| +46030|434067|46576|3|46|46047.84|0.05|0.03|R|F|1994-04-23|1994-03-23|1994-05-19|NONE|TRUCK|uickly against the furiously even ideas. fi| +46031|893023|5541|1|23|23367.54|0.02|0.02|N|F|1995-06-06|1995-03-20|1995-06-24|COLLECT COD|TRUCK|even ideas? slyly final asymptotes c| +46031|28061|15562|2|9|8901.54|0.10|0.03|A|F|1995-02-16|1995-05-06|1995-03-10|NONE|FOB|aggle. carefully | +46031|614680|39705|3|22|35082.30|0.10|0.02|R|F|1995-02-28|1995-04-05|1995-03-01|TAKE BACK RETURN|REG AIR|ing ideas impress fu| +46031|915247|15248|4|8|10097.60|0.09|0.01|A|F|1995-03-08|1995-04-06|1995-03-23|DELIVER IN PERSON|SHIP|lyly accord| +46031|545087|32618|5|12|13584.72|0.08|0.01|N|F|1995-06-01|1995-03-14|1995-06-20|COLLECT COD|MAIL|. pending, i| +46031|271968|21969|6|19|36859.05|0.05|0.05|A|F|1995-05-17|1995-05-05|1995-05-18|COLLECT COD|MAIL|regular dependencie| +46056|318294|43307|1|28|36743.84|0.04|0.02|N|O|1998-01-31|1998-02-20|1998-02-05|TAKE BACK RETURN|TRUCK|thely final pinto| +46056|553790|3791|2|9|16593.93|0.08|0.05|N|O|1998-02-19|1998-02-01|1998-03-14|DELIVER IN PERSON|FOB|fully even courts. carefully r| +46056|536800|49311|3|27|49593.06|0.08|0.03|N|O|1998-01-11|1998-02-09|1998-01-20|NONE|MAIL|r the quickly pending braids. regular foxe| +46057|129059|29060|1|21|22849.05|0.03|0.00|N|O|1998-05-28|1998-03-31|1998-06-18|TAKE BACK RETURN|TRUCK|le slyly eve| +46057|77896|40398|2|23|43099.47|0.00|0.06|N|O|1998-03-02|1998-03-29|1998-03-08|COLLECT COD|SHIP|packages sleep| +46057|196216|8720|3|12|15746.52|0.09|0.02|N|O|1998-05-24|1998-03-13|1998-06-07|TAKE BACK RETURN|TRUCK|ly. quickly| +46057|799720|24751|4|30|54590.70|0.04|0.03|N|O|1998-05-15|1998-03-24|1998-06-07|DELIVER IN PERSON|AIR|ongside of the f| +46058|313882|26389|1|28|53084.36|0.07|0.04|A|F|1995-03-29|1995-03-19|1995-03-30|TAKE BACK RETURN|TRUCK| the furiously fin| +46059|911514|24033|1|12|18305.64|0.02|0.07|R|F|1992-05-31|1992-06-15|1992-06-21|NONE|SHIP|ously final accounts wake accor| +46059|800279|25312|2|17|20046.91|0.07|0.06|A|F|1992-07-13|1992-06-04|1992-07-18|COLLECT COD|MAIL|e the slyly final accounts. furiously expr| +46059|276032|1043|3|17|17136.34|0.06|0.00|A|F|1992-05-31|1992-07-18|1992-06-06|DELIVER IN PERSON|MAIL| pinto beans haggle. furiously even p| +46059|266435|16436|4|35|49049.70|0.00|0.00|R|F|1992-07-26|1992-06-14|1992-08-10|DELIVER IN PERSON|RAIL| above the final deposits. carefully qu| +46059|969700|44739|5|33|58398.78|0.01|0.06|R|F|1992-05-01|1992-06-18|1992-05-13|TAKE BACK RETURN|REG AIR|efully express forges. instructions among t| +46059|736431|48946|6|25|36685.00|0.02|0.02|R|F|1992-07-26|1992-07-19|1992-08-03|DELIVER IN PERSON|MAIL|he carefully close deposits| +46060|451599|26618|1|34|52719.38|0.04|0.05|N|O|1996-02-08|1996-03-14|1996-02-29|TAKE BACK RETURN|TRUCK|ake furiously express dependen| +46060|12713|37714|2|8|13005.68|0.00|0.04|N|O|1996-04-18|1996-02-28|1996-05-01|NONE|TRUCK|kly quickly idle accounts. carefully even f| +46061|628694|41207|1|47|76265.02|0.06|0.05|R|F|1993-09-30|1993-09-06|1993-10-25|NONE|SHIP|l packages; furiously ironic a| +46061|447278|34803|2|2|2450.50|0.04|0.00|A|F|1993-09-21|1993-09-15|1993-10-08|NONE|TRUCK|ide the regular, re| +46062|925230|267|1|19|23848.61|0.03|0.04|A|F|1992-06-05|1992-05-02|1992-06-19|DELIVER IN PERSON|TRUCK| theodolites wake! ironi| +46062|329640|29641|2|1|1669.63|0.07|0.05|R|F|1992-05-30|1992-04-15|1992-06-05|NONE|SHIP|the quickly ironic d| +46062|253936|41452|3|18|34018.56|0.01|0.06|R|F|1992-06-10|1992-04-17|1992-07-06|NONE|SHIP|luffily even requests thra| +46062|899375|11893|4|21|28860.93|0.06|0.08|R|F|1992-07-06|1992-05-03|1992-07-10|TAKE BACK RETURN|MAIL|es: slyly final instruction| +46063|592032|17055|1|10|11240.10|0.05|0.07|A|F|1993-12-01|1994-01-03|1993-12-08|TAKE BACK RETURN|TRUCK|ly ironic theodolites detect. regular, | +46063|277892|2903|2|1|1869.88|0.04|0.05|R|F|1994-01-25|1993-12-10|1994-02-09|COLLECT COD|RAIL|usly final deposits. slyly s| +46088|289456|26972|1|1|1445.44|0.06|0.08|N|O|1998-05-12|1998-07-13|1998-05-26|NONE|FOB|l dependencies are fu| +46088|874098|24099|2|31|33233.55|0.08|0.07|N|O|1998-08-22|1998-07-24|1998-08-26|NONE|TRUCK| silent asymptotes boost foxes| +46088|962614|172|3|37|62033.09|0.02|0.07|N|O|1998-05-27|1998-08-06|1998-06-24|NONE|FOB|ely quickly pending idea| +46088|650850|851|4|28|50422.96|0.06|0.06|N|O|1998-07-05|1998-06-13|1998-07-06|TAKE BACK RETURN|FOB| express packages! unusual courts af| +46089|268835|31341|1|7|12626.74|0.08|0.06|N|O|1997-05-05|1997-05-13|1997-05-28|NONE|AIR|tes cajole slyly asympto| +46089|295075|20086|2|9|9630.54|0.08|0.00|N|O|1997-07-23|1997-06-16|1997-08-17|NONE|TRUCK|accounts. fluffily silent deposi| +46089|321376|46389|3|21|29344.56|0.05|0.06|N|O|1997-06-18|1997-05-23|1997-07-12|DELIVER IN PERSON|FOB|special ideas are. | +46089|365427|15428|4|21|31340.61|0.02|0.02|N|O|1997-07-16|1997-07-02|1997-07-31|COLLECT COD|AIR| carefully express deposits. silent, expre| +46089|714985|27500|5|46|91997.70|0.07|0.03|N|O|1997-06-24|1997-05-08|1997-07-17|NONE|MAIL|, regular asymptotes haggle account| +46089|736246|48761|6|3|3846.63|0.00|0.07|N|O|1997-05-11|1997-07-01|1997-05-26|TAKE BACK RETURN|AIR|ng the quietly regular deposit| +46090|6700|44201|1|34|54627.80|0.00|0.06|A|F|1994-08-21|1994-07-03|1994-08-24|NONE|REG AIR|s the carefully unusual ideas. dept| +46090|605637|30662|2|47|72502.20|0.06|0.08|R|F|1994-07-19|1994-08-13|1994-07-24|DELIVER IN PERSON|REG AIR|ntiments. | +46090|933511|21066|3|4|6177.88|0.02|0.06|R|F|1994-08-31|1994-08-03|1994-09-25|COLLECT COD|MAIL|deas nag atop th| +46090|508031|45562|4|30|31170.30|0.07|0.08|R|F|1994-09-11|1994-08-11|1994-09-19|TAKE BACK RETURN|AIR| special foxes?| +46091|950158|37716|1|10|12081.10|0.08|0.01|A|F|1994-05-24|1994-06-19|1994-05-27|COLLECT COD|RAIL|ong the express cou| +46092|800255|25288|1|43|49674.03|0.01|0.07|N|O|1996-05-04|1996-04-24|1996-05-12|NONE|SHIP|furiously. fluffily even ideas sleep| +46092|882327|19879|2|36|47134.08|0.10|0.07|N|O|1996-04-12|1996-05-21|1996-04-20|TAKE BACK RETURN|SHIP| bold theodolites. stealthily i| +46092|258003|45519|3|6|5765.94|0.10|0.07|N|O|1996-05-29|1996-04-22|1996-06-22|NONE|REG AIR|ly ironic platelets. final p| +46092|243967|31480|4|2|3821.90|0.04|0.07|N|O|1996-06-05|1996-05-18|1996-06-19|NONE|FOB|ly final dinos thrash. enticingly | +46092|341545|29064|5|9|14278.77|0.00|0.03|N|O|1996-06-18|1996-04-10|1996-06-22|TAKE BACK RETURN|SHIP|dolphins believe careful| +46092|331333|6346|6|7|9550.24|0.07|0.07|N|O|1996-03-12|1996-04-12|1996-04-07|TAKE BACK RETURN|TRUCK| requests c| +46093|433294|20819|1|5|6136.35|0.01|0.02|A|F|1994-05-29|1994-05-30|1994-06-01|NONE|FOB|t the deposits p| +46093|363216|738|2|30|38376.00|0.06|0.01|R|F|1994-04-10|1994-05-24|1994-04-24|NONE|TRUCK|busy accounts. slyly final| +46093|568915|31427|3|28|55548.92|0.03|0.05|A|F|1994-03-19|1994-05-26|1994-04-11|TAKE BACK RETURN|AIR|ly after the slyly pending pea| +46093|746978|22007|4|7|14174.58|0.03|0.04|R|F|1994-05-03|1994-05-28|1994-05-10|DELIVER IN PERSON|SHIP|ronic accounts eng| +46093|451133|1134|5|26|28186.86|0.04|0.02|R|F|1994-07-11|1994-04-21|1994-07-28|COLLECT COD|AIR|eodolites. quickly expre| +46093|186406|11413|6|20|29848.00|0.07|0.01|R|F|1994-04-08|1994-04-22|1994-04-12|DELIVER IN PERSON|FOB|structions wake across the| +46094|297258|9764|1|44|55230.56|0.02|0.01|N|O|1997-11-23|1997-11-25|1997-11-27|NONE|REG AIR| excuses. c| +46094|10386|10387|2|35|45373.30|0.05|0.02|N|O|1997-10-30|1997-11-27|1997-11-12|DELIVER IN PERSON|RAIL|en pinto beans| +46094|547867|22888|3|43|82338.12|0.06|0.00|N|O|1997-12-20|1997-11-18|1998-01-19|TAKE BACK RETURN|AIR|en requests sleep at the pend| +46094|992348|17387|4|30|43209.00|0.08|0.07|N|O|1997-10-19|1997-12-25|1997-11-11|NONE|TRUCK|ual requests? slyly sp| +46094|388836|13851|5|39|75067.98|0.04|0.07|N|O|1998-01-16|1997-11-10|1998-01-19|NONE|MAIL|e always ironic requests. slyly e| +46095|697695|22722|1|12|20311.92|0.06|0.02|N|O|1998-05-05|1998-04-23|1998-05-10|TAKE BACK RETURN|RAIL|uches are abo| +46095|152641|27648|2|32|54196.48|0.05|0.00|N|O|1998-03-11|1998-04-26|1998-04-09|DELIVER IN PERSON|MAIL|uriously special pinto be| +46095|429357|41866|3|24|30871.92|0.10|0.05|N|O|1998-05-23|1998-04-27|1998-06-06|COLLECT COD|REG AIR|hins. blithely| +46120|884493|34494|1|30|44323.50|0.04|0.03|N|O|1996-02-19|1996-01-25|1996-03-19|DELIVER IN PERSON|RAIL|he even, regular | +46120|670491|33005|2|50|73073.00|0.01|0.01|N|O|1995-12-04|1996-01-18|1995-12-30|COLLECT COD|RAIL| furiously unusual| +46120|933277|45796|3|32|41927.36|0.08|0.00|N|O|1995-12-03|1996-02-10|1995-12-27|NONE|REG AIR|inal requests wake bli| +46120|571665|21666|4|25|43416.00|0.08|0.02|N|O|1995-12-22|1996-01-06|1996-01-19|NONE|TRUCK|pinto beans| +46120|957462|45020|5|5|7597.10|0.10|0.06|N|O|1996-01-25|1996-01-09|1996-02-04|COLLECT COD|RAIL|egular dep| +46120|59713|9714|6|3|5018.13|0.03|0.08|N|O|1996-03-09|1996-02-01|1996-03-24|DELIVER IN PERSON|AIR|! unusual ideas wake carefully. attain| +46120|587094|12117|7|26|30707.82|0.10|0.03|N|O|1995-12-26|1996-01-02|1996-01-18|DELIVER IN PERSON|REG AIR|ing theodolites. | +46121|274894|49905|1|9|16819.92|0.06|0.07|R|F|1993-02-12|1993-02-05|1993-02-24|NONE|TRUCK| are furiously sl| +46122|102927|2928|1|20|38598.40|0.07|0.04|N|O|1997-11-14|1998-01-15|1997-12-12|NONE|MAIL|lly bold accounts sleep slyly | +46122|889915|2433|2|45|85719.15|0.05|0.05|N|O|1997-11-25|1998-01-21|1997-12-22|TAKE BACK RETURN|MAIL|ly quickly silent deposits. | +46122|800148|12665|3|16|16769.60|0.04|0.06|N|O|1997-12-03|1997-12-08|1997-12-25|COLLECT COD|RAIL|packages. warthogs| +46122|73082|48085|4|13|13716.04|0.10|0.05|N|O|1997-11-07|1997-11-30|1997-11-23|DELIVER IN PERSON|RAIL|the ironic, regular packages hi| +46122|272904|22905|5|14|26276.46|0.01|0.08|N|O|1997-11-30|1997-12-27|1997-12-13|NONE|SHIP|regular pinto beans sleep quietly furiously| +46123|930759|43278|1|27|48322.17|0.00|0.08|N|O|1996-11-03|1996-10-01|1996-11-24|COLLECT COD|RAIL|y furious requests; even fox| +46124|145426|20431|1|26|38256.92|0.04|0.04|N|O|1996-08-15|1996-06-26|1996-09-05|DELIVER IN PERSON|RAIL|lyly even instructions| +46124|165001|2511|2|13|13858.00|0.09|0.01|N|O|1996-05-23|1996-06-28|1996-06-09|NONE|RAIL|equests. furiously ironic packages use fur| +46124|158751|21255|3|22|39814.50|0.09|0.00|N|O|1996-08-10|1996-07-19|1996-08-13|NONE|REG AIR|ly final ideas. blithe| +46124|123828|23829|4|12|22221.84|0.01|0.05|N|O|1996-05-14|1996-06-27|1996-06-04|DELIVER IN PERSON|REG AIR|gular foxes about the quickly final theod| +46124|165073|15074|5|49|55765.43|0.06|0.05|N|O|1996-05-17|1996-06-02|1996-05-21|DELIVER IN PERSON|TRUCK|osits doze carefully around the express,| +46125|815096|27613|1|29|29320.45|0.00|0.04|R|F|1993-12-23|1994-01-06|1994-01-01|DELIVER IN PERSON|RAIL|lowly unusual courts. spec| +46125|305898|18405|2|31|59020.28|0.02|0.05|R|F|1994-02-08|1993-12-14|1994-02-21|TAKE BACK RETURN|RAIL| the carefully bold dolphins mold| +46125|212522|25027|3|20|28690.20|0.08|0.06|R|F|1994-01-24|1994-01-08|1994-02-09|COLLECT COD|TRUCK|long the pending dependencies. | +46125|844407|44408|4|13|17567.68|0.00|0.08|R|F|1994-02-13|1993-12-06|1994-02-26|COLLECT COD|MAIL|ly special| +46125|931897|31898|5|48|92584.80|0.04|0.07|R|F|1993-12-16|1993-12-10|1994-01-02|COLLECT COD|AIR|s courts do| +46126|415988|3513|1|14|26655.44|0.06|0.00|N|O|1995-10-20|1995-09-03|1995-11-10|TAKE BACK RETURN|SHIP|carefully ironic packages cajole. blit| +46126|498512|23531|2|35|52867.15|0.06|0.06|N|O|1995-10-27|1995-09-25|1995-11-05|COLLECT COD|REG AIR|g ideas. in| +46126|476222|1241|3|27|32351.40|0.10|0.08|N|O|1995-10-03|1995-09-06|1995-10-05|COLLECT COD|SHIP|packages are carefully. final instructio| +46127|13809|38810|1|19|32733.20|0.06|0.00|N|O|1997-01-10|1997-01-10|1997-01-14|DELIVER IN PERSON|AIR|es. furiously regular ideas integrate? iro| +46127|73066|48069|2|7|7273.42|0.09|0.04|N|O|1997-01-22|1996-12-31|1997-02-03|DELIVER IN PERSON|AIR|requests sleep abou| +46127|17389|42390|3|50|65319.00|0.05|0.03|N|O|1996-12-01|1996-11-29|1996-12-07|COLLECT COD|FOB| pinto beans across the| +46127|249112|36625|4|2|2122.20|0.01|0.04|N|O|1996-11-13|1996-12-29|1996-12-13|NONE|REG AIR| wake blithel| +46127|812038|12039|5|47|44649.53|0.08|0.03|N|O|1997-01-07|1997-01-19|1997-01-26|NONE|REG AIR|ly regular packages can use abo| +46152|408715|21224|1|23|37344.87|0.09|0.03|N|O|1997-04-04|1997-04-29|1997-05-04|TAKE BACK RETURN|REG AIR|ependencies. slyly s| +46152|257394|19900|2|46|62163.48|0.07|0.02|N|O|1997-05-09|1997-04-06|1997-05-30|DELIVER IN PERSON|SHIP|ts wake slyly| +46152|5612|43113|3|2|3035.22|0.04|0.01|N|O|1997-03-31|1997-04-04|1997-04-28|TAKE BACK RETURN|FOB|he bold theodolites. furiously regular dep| +46152|317087|4606|4|10|11040.70|0.07|0.08|N|O|1997-02-21|1997-04-29|1997-03-23|TAKE BACK RETURN|FOB|instructions at the ironic ideas hagg| +46152|271707|34213|5|46|77219.74|0.08|0.04|N|O|1997-02-16|1997-03-15|1997-03-02|DELIVER IN PERSON|AIR|s. courts cajole regular, final packages| +46152|569600|7134|6|21|35061.18|0.04|0.00|N|O|1997-05-11|1997-04-25|1997-06-02|NONE|MAIL|ackages-- close dinos de| +46153|802131|27164|1|8|8264.72|0.03|0.04|R|F|1992-03-21|1992-04-24|1992-04-07|DELIVER IN PERSON|MAIL|efully express accounts snooze| +46153|413563|26072|2|11|16241.94|0.00|0.02|A|F|1992-07-10|1992-06-11|1992-07-28|COLLECT COD|FOB|yly bold packages k| +46153|749612|37155|3|39|64801.62|0.10|0.07|A|F|1992-04-27|1992-05-31|1992-05-15|COLLECT COD|REG AIR|l platelets play carefully. blit| +46153|723871|23872|4|16|30317.44|0.04|0.06|A|F|1992-06-28|1992-06-13|1992-07-28|DELIVER IN PERSON|MAIL|sual accounts along the bold a| +46153|90944|15947|5|36|69657.84|0.03|0.00|A|F|1992-04-20|1992-05-05|1992-05-10|COLLECT COD|TRUCK| final dolphins nag | +46153|484712|34713|6|13|22056.97|0.07|0.05|R|F|1992-03-30|1992-06-04|1992-04-15|NONE|MAIL|gular, even excuse| +46154|947151|47152|1|30|35943.30|0.03|0.05|N|O|1996-04-14|1996-02-17|1996-05-12|COLLECT COD|REG AIR|ly carefully regular id| +46154|762312|24828|2|18|24737.04|0.03|0.08|N|O|1996-03-18|1996-03-12|1996-04-17|DELIVER IN PERSON|RAIL| final instructions nag furiously. carefu| +46154|176384|1391|3|28|40890.64|0.06|0.03|N|O|1996-02-19|1996-04-04|1996-03-09|COLLECT COD|RAIL|l accounts. special foxe| +46154|482018|32019|4|29|28999.71|0.01|0.02|N|O|1996-05-13|1996-03-27|1996-06-06|TAKE BACK RETURN|FOB|he furiously reg| +46155|6468|31469|1|2|2748.92|0.09|0.07|R|F|1994-03-04|1994-02-28|1994-03-06|DELIVER IN PERSON|SHIP|press ideas. regular, bo| +46155|704889|4890|2|6|11363.10|0.09|0.06|R|F|1994-01-11|1994-02-24|1994-01-13|TAKE BACK RETURN|FOB|ly bold deposits. final foxes a| +46155|52985|2986|3|2|3875.96|0.01|0.02|A|F|1993-12-27|1994-01-10|1994-01-12|DELIVER IN PERSON|TRUCK|ly bold packages use carefully ruthl| +46155|503790|41321|4|24|43050.48|0.00|0.00|R|F|1994-01-20|1994-02-21|1994-01-24|TAKE BACK RETURN|FOB|odolites. unusual packages wake. sl| +46155|195560|33070|5|18|29800.08|0.03|0.01|R|F|1994-01-10|1994-02-02|1994-01-11|COLLECT COD|REG AIR|boost packages. final | +46155|772209|47240|6|44|56371.48|0.05|0.07|R|F|1994-02-26|1994-01-15|1994-03-14|NONE|AIR| bold pinto beans detect about the quick| +46156|395946|8454|1|42|85761.06|0.03|0.08|N|O|1997-11-14|1997-12-29|1997-11-18|NONE|AIR|nding deposit| +46156|647744|10257|2|15|25375.65|0.09|0.01|N|O|1998-01-17|1997-11-20|1998-02-13|DELIVER IN PERSON|AIR|unusual packages d| +46156|621024|33537|3|24|22679.76|0.10|0.01|N|O|1997-12-25|1998-01-01|1998-01-05|TAKE BACK RETURN|REG AIR|ly unusual platelets. | +46156|537288|12309|4|6|7951.56|0.05|0.08|N|O|1997-11-24|1997-12-22|1997-12-10|TAKE BACK RETURN|FOB|ently unusual d| +46156|183437|33438|5|21|31929.03|0.09|0.03|N|O|1997-11-14|1998-01-12|1997-11-21|COLLECT COD|FOB|y silent asymp| +46157|680075|17615|1|44|46421.76|0.05|0.01|N|O|1995-07-07|1995-05-11|1995-07-31|COLLECT COD|SHIP| according to the slyly exp| +46157|15343|27844|2|42|52850.28|0.05|0.07|N|F|1995-06-15|1995-06-14|1995-07-01|NONE|FOB|l pinto beans around the idly pe| +46157|854942|42494|3|34|64494.60|0.04|0.02|N|F|1995-06-08|1995-06-04|1995-07-08|COLLECT COD|REG AIR|uickly ironic d| +46157|8299|8300|4|48|57949.92|0.05|0.02|N|O|1995-07-11|1995-06-13|1995-07-16|TAKE BACK RETURN|AIR|y fluffy r| +46157|480857|5876|5|21|38594.43|0.04|0.06|N|O|1995-06-21|1995-06-09|1995-07-10|DELIVER IN PERSON|MAIL|lithely exp| +46158|831278|6311|1|46|55624.58|0.04|0.01|R|F|1992-10-14|1992-11-09|1992-11-09|NONE|TRUCK|mong the carefully silent theo| +46158|288876|1382|2|30|55945.80|0.09|0.03|A|F|1992-09-27|1992-10-28|1992-10-22|NONE|FOB|ent ideas:| +46158|131372|6377|3|8|11226.96|0.05|0.06|A|F|1992-12-05|1992-11-07|1992-12-18|DELIVER IN PERSON|SHIP|ording to the r| +46158|963204|25724|4|25|31679.00|0.02|0.00|R|F|1992-11-07|1992-10-25|1992-11-08|DELIVER IN PERSON|AIR|ts. final ideas us| +46158|565068|40091|5|39|44188.56|0.06|0.05|A|F|1992-12-10|1992-09-30|1992-12-30|DELIVER IN PERSON|MAIL| sleep blithely accounts.| +46159|893340|5858|1|41|54665.30|0.01|0.08|N|O|1996-04-13|1996-05-06|1996-05-04|COLLECT COD|TRUCK| platelets. carefully | +46159|354938|29953|2|26|51815.92|0.03|0.08|N|O|1996-04-26|1996-05-21|1996-05-05|NONE|MAIL|ons are quickl| +46184|389517|2025|1|26|41769.00|0.06|0.05|N|O|1998-04-08|1998-05-06|1998-05-07|COLLECT COD|REG AIR|kages nag blithely. quickly silent in| +46184|603761|41298|2|8|13317.84|0.07|0.02|N|O|1998-05-28|1998-03-30|1998-06-26|TAKE BACK RETURN|FOB|heodolites nag blith| +46184|408097|45622|3|10|10050.70|0.07|0.03|N|O|1998-04-18|1998-04-23|1998-05-06|TAKE BACK RETURN|AIR|inal instru| +46184|880536|30537|4|30|45494.70|0.02|0.08|N|O|1998-05-10|1998-03-31|1998-05-16|COLLECT COD|REG AIR|y final foxes. slyly ironic theod| +46185|13791|1292|1|2|3409.58|0.04|0.02|N|O|1997-09-19|1997-09-10|1997-09-24|TAKE BACK RETURN|AIR|aggle furiously about the regular, sil| +46185|777480|2511|2|24|37378.80|0.07|0.03|N|O|1997-09-16|1997-08-16|1997-10-02|DELIVER IN PERSON|SHIP|gular foxes. sometimes regular requests| +46185|98206|23209|3|48|57801.60|0.07|0.06|N|O|1997-07-14|1997-10-02|1997-07-23|NONE|REG AIR|gular orbits mold. quickly fin| +46185|547303|9814|4|30|40508.40|0.09|0.05|N|O|1997-09-23|1997-09-25|1997-10-22|DELIVER IN PERSON|REG AIR|es nag carefully regular, final pearls. ev| +46185|513856|26367|5|30|56094.90|0.06|0.07|N|O|1997-11-06|1997-08-12|1997-11-21|TAKE BACK RETURN|AIR|e. furiously regular waters sub| +46185|368229|18230|6|39|50591.19|0.06|0.08|N|O|1997-09-16|1997-10-06|1997-09-27|TAKE BACK RETURN|TRUCK|ackages. furiously even deposits| +46185|822433|22434|7|9|12198.51|0.09|0.06|N|O|1997-09-01|1997-09-26|1997-09-14|NONE|FOB|ag furiously ironic ideas? quic| +46186|627649|40162|1|9|14189.49|0.08|0.03|A|F|1994-06-19|1994-05-18|1994-06-30|DELIVER IN PERSON|RAIL|ng packages. fluffily thin depos| +46187|82661|20165|1|12|19723.92|0.01|0.07|R|F|1994-10-02|1994-08-03|1994-10-31|NONE|TRUCK| regular instructions. furiously even| +46187|274531|37037|2|25|37638.00|0.10|0.08|R|F|1994-08-12|1994-08-02|1994-08-17|COLLECT COD|RAIL|slow, final dependen| +46187|32710|32711|3|45|73921.95|0.02|0.02|A|F|1994-08-08|1994-07-20|1994-08-31|DELIVER IN PERSON|SHIP|usly. furiously unusual requ| +46188|336868|49375|1|29|55240.65|0.01|0.03|N|O|1997-09-07|1997-09-03|1997-09-13|COLLECT COD|MAIL|ffily until | +46188|730512|43027|2|9|13882.32|0.01|0.07|N|O|1997-08-11|1997-10-04|1997-08-30|NONE|FOB| furiously around the qui| +46188|706537|19052|3|29|44761.50|0.08|0.04|N|O|1997-07-28|1997-10-12|1997-08-06|DELIVER IN PERSON|TRUCK| try to haggle| +46188|756485|6486|4|16|24663.20|0.01|0.02|N|O|1997-08-01|1997-09-17|1997-08-02|DELIVER IN PERSON|RAIL| quickly regular excuses use f| +46188|230899|18412|5|17|31107.96|0.07|0.08|N|O|1997-10-23|1997-09-10|1997-11-22|DELIVER IN PERSON|TRUCK|are across the regular, special dolphi| +46188|713275|25790|6|7|9017.68|0.01|0.00|N|O|1997-07-27|1997-08-26|1997-08-13|DELIVER IN PERSON|REG AIR|dazzle slyly special excuses. quickly fin| +46188|997787|35345|7|26|49003.24|0.06|0.01|N|O|1997-08-06|1997-08-28|1997-09-05|TAKE BACK RETURN|MAIL|ests. furi| +46189|795100|7616|1|31|37047.17|0.02|0.01|R|F|1992-06-08|1992-07-14|1992-06-24|TAKE BACK RETURN|TRUCK|l foxes. final exc| +46189|241179|3684|2|13|14562.08|0.04|0.08|R|F|1992-09-22|1992-07-23|1992-10-21|DELIVER IN PERSON|RAIL|cording to the slyly bold platelets haggle| +46189|486614|11633|3|38|60822.42|0.00|0.08|A|F|1992-05-29|1992-08-07|1992-06-01|DELIVER IN PERSON|MAIL|s haggle slowly ironic dolphins. reg| +46190|55328|17830|1|45|57749.40|0.09|0.03|R|F|1992-11-08|1992-09-08|1992-11-19|COLLECT COD|TRUCK|ins. carefully final requ| +46190|897491|22526|2|43|64003.35|0.08|0.06|A|F|1992-11-14|1992-08-27|1992-11-27|COLLECT COD|FOB|even platelets. even no| +46190|127592|27593|3|9|14576.31|0.10|0.05|A|F|1992-08-15|1992-09-27|1992-08-27|TAKE BACK RETURN|SHIP|ions along th| +46191|720865|20866|1|16|30173.28|0.02|0.00|R|F|1993-05-06|1993-04-19|1993-05-10|NONE|FOB|e slyly slyly even pin| +46216|121254|8761|1|21|26780.25|0.10|0.00|A|F|1994-10-25|1994-08-11|1994-11-10|TAKE BACK RETURN|AIR|refully bold | +46217|249395|24404|1|17|22854.46|0.05|0.05|N|O|1997-07-30|1997-09-04|1997-08-18|COLLECT COD|RAIL|sly even theodolites cajole among | +46217|566417|3951|2|25|37084.75|0.08|0.02|N|O|1997-09-10|1997-08-02|1997-09-17|DELIVER IN PERSON|FOB|e furiously stealthy requests w| +46218|74634|12138|1|8|12869.04|0.04|0.06|N|O|1996-10-17|1996-09-17|1996-11-07|COLLECT COD|TRUCK|e blithely regular pinto beans. blit| +46219|658718|33745|1|8|13413.44|0.00|0.05|N|O|1996-07-25|1996-08-28|1996-08-01|COLLECT COD|MAIL|regular accounts wake even accounts. | +46219|71924|34426|2|21|39814.32|0.10|0.08|N|O|1996-10-08|1996-09-24|1996-10-31|NONE|RAIL|uffily ironic dolphins sublate caref| +46219|817560|42593|3|2|2955.04|0.07|0.08|N|O|1996-08-12|1996-09-06|1996-08-21|TAKE BACK RETURN|MAIL|ly according to the quick| +46219|721870|34385|4|32|60538.88|0.00|0.06|N|O|1996-10-23|1996-10-12|1996-11-06|TAKE BACK RETURN|FOB|. ironic requests against | +46219|456707|6708|5|37|61556.16|0.05|0.03|N|O|1996-11-07|1996-10-15|1996-11-23|TAKE BACK RETURN|FOB|quests are blit| +46219|868664|31182|6|20|32652.40|0.03|0.08|N|O|1996-09-28|1996-10-01|1996-10-10|NONE|RAIL|luffily blith| +46220|696753|34293|1|22|38493.84|0.08|0.04|R|F|1992-07-18|1992-08-07|1992-07-22|DELIVER IN PERSON|TRUCK|ns haggle slyly above the permanently regu| +46220|322870|35377|2|11|20821.46|0.03|0.00|R|F|1992-05-19|1992-07-27|1992-06-16|COLLECT COD|REG AIR|se carefully slyly re| +46220|468302|30812|3|8|10162.24|0.07|0.05|A|F|1992-06-28|1992-06-28|1992-07-05|COLLECT COD|TRUCK|lyly carefully| +46220|750471|12987|4|43|65421.92|0.05|0.01|R|F|1992-08-02|1992-08-04|1992-08-23|COLLECT COD|RAIL|even pinto beans b| +46220|161448|11449|5|49|73962.56|0.05|0.06|A|F|1992-09-01|1992-07-27|1992-09-27|NONE|SHIP|ans boost against the blithely re| +46220|452554|40082|6|27|40676.31|0.04|0.02|A|F|1992-05-30|1992-07-20|1992-06-19|NONE|TRUCK|deposits above the carefu| +46220|68752|18753|7|19|32694.25|0.02|0.04|A|F|1992-08-03|1992-06-21|1992-08-23|DELIVER IN PERSON|RAIL|. packages cajole fluffily. reg| +46221|502846|40377|1|15|27732.30|0.10|0.04|N|O|1995-11-01|1995-09-16|1995-11-23|COLLECT COD|RAIL|blithely furious| +46221|316859|29366|2|32|60026.88|0.01|0.08|N|O|1995-11-20|1995-09-16|1995-12-19|NONE|RAIL|gular foxes boost alongside of the qu| +46221|436903|49412|3|27|49676.76|0.03|0.00|N|O|1995-09-26|1995-09-18|1995-10-08|DELIVER IN PERSON|MAIL|ages; pending asymptotes u| +46221|26477|38978|4|24|33683.28|0.06|0.06|N|O|1995-11-13|1995-09-15|1995-11-18|DELIVER IN PERSON|FOB|. slyly busy ideas cajole after the| +46221|985490|48010|5|18|28358.10|0.04|0.04|N|O|1995-08-25|1995-10-21|1995-08-26|NONE|SHIP|counts cajole quickly carefully regular fr| +46221|117241|42246|6|4|5032.96|0.02|0.07|N|O|1995-09-19|1995-10-16|1995-09-22|COLLECT COD|MAIL|ously even packages wake b| +46222|32699|32700|1|47|76689.43|0.01|0.03|A|F|1995-05-06|1995-03-14|1995-05-23|NONE|TRUCK| use quickly. furiousl| +46222|567595|17596|2|23|38239.11|0.02|0.00|A|F|1995-03-05|1995-04-01|1995-03-26|NONE|AIR|unusual foxes. b| +46222|562649|183|3|19|32520.78|0.07|0.00|A|F|1995-04-24|1995-03-12|1995-05-10|NONE|FOB|requests. carefully regular dependencies| +46222|435298|10315|4|15|18499.05|0.01|0.00|R|F|1995-03-25|1995-03-01|1995-04-05|TAKE BACK RETURN|REG AIR| sleep bli| +46222|53114|40618|5|46|49087.06|0.08|0.08|A|F|1995-01-20|1995-02-24|1995-02-01|TAKE BACK RETURN|MAIL|s boost quick| +46222|681712|44226|6|46|77909.28|0.08|0.04|R|F|1995-01-13|1995-02-25|1995-01-20|COLLECT COD|TRUCK|egular asymptotes. idle, iron| +46223|621269|21270|1|40|47609.20|0.07|0.07|A|F|1993-09-29|1993-11-07|1993-10-24|NONE|MAIL| furiously? carefully regular account| +46223|666441|16442|2|49|68963.09|0.01|0.00|A|F|1993-10-29|1993-10-13|1993-11-02|COLLECT COD|FOB|ironic request| +46223|862773|25291|3|47|81579.31|0.00|0.01|R|F|1993-12-14|1993-09-30|1994-01-13|DELIVER IN PERSON|FOB|er the ironic requests. final, final acc| +46223|610115|22628|4|16|16401.28|0.07|0.02|A|F|1993-10-10|1993-11-15|1993-10-31|DELIVER IN PERSON|TRUCK|quests. furiously | +46223|196824|21831|5|50|96041.00|0.09|0.00|R|F|1993-08-20|1993-09-29|1993-08-30|DELIVER IN PERSON|REG AIR| regular waters haggle. slyly regu| +46223|10698|23199|6|33|53086.77|0.07|0.03|A|F|1993-11-17|1993-09-26|1993-12-10|NONE|FOB|its nag. ideas| +46248|359234|34249|1|43|55608.46|0.07|0.05|N|O|1996-03-02|1996-04-01|1996-03-11|NONE|AIR|ly even dependencies wake furiously. orbits| +46249|204026|4027|1|30|27900.30|0.09|0.03|A|F|1992-10-23|1992-08-27|1992-10-24|COLLECT COD|MAIL|rts. slyly specia| +46249|54546|42050|2|34|51018.36|0.02|0.02|R|F|1992-11-17|1992-10-07|1992-12-10|NONE|RAIL| around th| +46249|738571|1086|3|12|19314.48|0.02|0.02|A|F|1992-10-10|1992-10-11|1992-10-24|NONE|REG AIR|y final excuses. car| +46250|955193|42751|1|12|14977.80|0.09|0.04|R|F|1992-04-19|1992-05-24|1992-04-28|COLLECT COD|FOB|eep across the even deposits. carefull| +46250|926081|1118|2|17|18819.68|0.09|0.07|R|F|1992-05-12|1992-04-20|1992-05-23|DELIVER IN PERSON|RAIL|ckages are blithely against the fluffil| +46250|633567|21104|3|28|42014.84|0.10|0.07|A|F|1992-03-27|1992-04-05|1992-04-19|NONE|REG AIR| packages nag furiously final re| +46250|344738|32257|4|24|42785.28|0.09|0.06|R|F|1992-04-14|1992-04-25|1992-04-28|TAKE BACK RETURN|MAIL| ironic dependencies according to the ex| +46250|11328|36329|5|17|21068.44|0.04|0.02|R|F|1992-03-09|1992-05-11|1992-03-10|COLLECT COD|MAIL|le furiously alongside o| +46250|377928|15450|6|7|14041.37|0.06|0.01|A|F|1992-06-23|1992-04-14|1992-06-24|TAKE BACK RETURN|FOB|n dependencies use | +46251|783011|8042|1|31|33913.38|0.05|0.04|A|F|1995-05-01|1995-05-20|1995-05-19|NONE|REG AIR|s; slyly regular de| +46252|220104|7617|1|45|46084.05|0.10|0.05|R|F|1994-02-13|1994-02-28|1994-02-25|NONE|FOB|s haggle fluf| +46252|283838|33839|2|34|61941.88|0.08|0.06|A|F|1994-05-11|1994-03-26|1994-06-03|TAKE BACK RETURN|FOB|ly special accounts. carefully regular depo| +46252|459081|46609|3|23|23921.38|0.00|0.05|A|F|1994-02-24|1994-03-05|1994-03-13|TAKE BACK RETURN|TRUCK| furiously final in| +46252|758565|46111|4|33|53576.49|0.05|0.07|R|F|1994-04-15|1994-02-16|1994-05-09|COLLECT COD|FOB| eat slyly furiously fluffy senti| +46252|191854|16861|5|5|9729.25|0.07|0.02|A|F|1994-03-28|1994-02-23|1994-03-29|COLLECT COD|SHIP|slyly even depos| +46252|483631|46141|6|18|29062.98|0.08|0.01|R|F|1994-03-18|1994-02-23|1994-04-17|DELIVER IN PERSON|TRUCK|carefully even pin| +46252|375615|38123|7|42|71005.20|0.01|0.04|R|F|1994-03-27|1994-02-28|1994-04-04|DELIVER IN PERSON|FOB|y blithe pains-- quickly | +46253|957212|32251|1|32|40613.44|0.00|0.04|R|F|1995-03-26|1995-06-06|1995-04-12|COLLECT COD|AIR|. quickly b| +46254|447625|47626|1|38|59758.80|0.06|0.08|N|O|1997-09-26|1997-08-24|1997-10-02|DELIVER IN PERSON|REG AIR|efully at | +46254|229498|29499|2|29|41396.92|0.06|0.02|N|O|1997-07-22|1997-07-17|1997-08-14|COLLECT COD|TRUCK|, regular requests. blithely iro| +46254|158181|8182|3|49|60719.82|0.05|0.08|N|O|1997-09-28|1997-08-03|1997-10-12|DELIVER IN PERSON|FOB|furiously. furiously ironic ideas agains| +46254|532972|7993|4|36|72178.20|0.03|0.01|N|O|1997-09-22|1997-07-17|1997-10-15|DELIVER IN PERSON|MAIL|ss, silent depth| +46255|72940|22941|1|25|47823.50|0.06|0.05|N|O|1996-11-28|1996-09-27|1996-12-08|COLLECT COD|SHIP|ggle furiousl| +46255|895175|20210|2|8|9361.04|0.05|0.00|N|O|1996-10-12|1996-10-17|1996-10-20|NONE|FOB|packages. furiously regula| +46255|199403|24410|3|17|25540.80|0.10|0.07|N|O|1996-08-19|1996-10-17|1996-09-14|NONE|TRUCK|riously unusua| +46280|545172|20193|1|8|9737.20|0.01|0.05|N|O|1995-12-25|1995-11-26|1996-01-12|NONE|RAIL|ven ideas cajole furiously blithely regula| +46280|691257|28797|2|31|38694.82|0.05|0.04|N|O|1996-02-08|1995-12-09|1996-02-22|TAKE BACK RETURN|RAIL| furiously. regular courts about the | +46280|945087|20124|3|36|40753.44|0.06|0.06|N|O|1995-11-26|1995-12-16|1995-12-22|TAKE BACK RETURN|TRUCK|s. carefully regular| +46281|770928|8474|1|44|87951.16|0.06|0.08|N|O|1996-02-18|1996-04-05|1996-02-20|TAKE BACK RETURN|MAIL| promise furiously daring platelets. slyly | +46281|985730|48250|2|23|41760.87|0.10|0.06|N|O|1996-04-17|1996-04-27|1996-04-22|DELIVER IN PERSON|RAIL|old sheaves. furiously final accounts nag f| +46281|160046|22550|3|12|13272.48|0.07|0.04|N|O|1996-02-09|1996-04-13|1996-02-25|TAKE BACK RETURN|AIR|ages! packages wake blithely. slyly | +46281|881659|44177|4|14|22968.54|0.10|0.08|N|O|1996-03-30|1996-03-03|1996-04-20|TAKE BACK RETURN|RAIL|ual theodolites sle| +46281|29143|16644|5|47|50390.58|0.05|0.05|N|O|1996-05-29|1996-04-28|1996-06-18|NONE|MAIL|nently regular requests| +46281|797042|47043|6|7|7973.07|0.06|0.05|N|O|1996-02-06|1996-03-09|1996-02-20|NONE|AIR| slyly against the special, enticing depo| +46281|872341|47376|7|31|40712.30|0.02|0.01|N|O|1996-03-18|1996-03-08|1996-03-21|NONE|SHIP|fully regular deposits affix bli| +46282|430506|5523|1|26|37348.48|0.01|0.02|N|O|1997-12-14|1998-01-24|1998-01-04|TAKE BACK RETURN|REG AIR|c theodolites are along the deposit| +46282|514155|26666|2|3|3507.39|0.03|0.07|N|O|1998-01-04|1998-02-03|1998-02-02|COLLECT COD|REG AIR| final requests| +46282|397587|47588|3|49|82543.93|0.09|0.08|N|O|1998-01-10|1998-01-19|1998-02-01|NONE|AIR|e slyly upon the blithely unusual ideas| +46282|241236|41237|4|38|44734.36|0.00|0.06|N|O|1998-01-07|1998-03-10|1998-01-20|TAKE BACK RETURN|MAIL|thely ironic accounts nag| +46282|452982|2983|5|1|1934.96|0.06|0.06|N|O|1997-12-15|1998-01-13|1997-12-26|COLLECT COD|FOB|express pinto beans impress carefully | +46282|266593|41604|6|20|31191.60|0.01|0.03|N|O|1998-03-11|1998-02-17|1998-04-03|NONE|TRUCK|ilent packages. pinto beans around the care| +46283|731234|6263|1|23|29099.60|0.01|0.04|A|F|1995-02-11|1995-02-03|1995-03-03|COLLECT COD|AIR|g accounts wake c| +46283|835382|22931|2|30|39520.20|0.00|0.04|R|F|1995-01-03|1995-03-09|1995-01-26|TAKE BACK RETURN|AIR|ously even requests. bold ideas a| +46283|259820|34831|3|43|76531.83|0.08|0.07|A|F|1995-03-14|1995-03-03|1995-03-24|COLLECT COD|MAIL| accounts maintain requ| +46283|778523|3554|4|45|72067.05|0.07|0.06|R|F|1995-01-12|1995-02-04|1995-01-20|DELIVER IN PERSON|AIR| theodolites nag bli| +46283|627372|2397|5|26|33782.84|0.08|0.07|A|F|1995-03-24|1995-02-24|1995-04-13|NONE|SHIP|lly pendin| +46283|229061|41566|6|37|36631.85|0.04|0.00|A|F|1995-02-08|1995-03-04|1995-03-09|DELIVER IN PERSON|RAIL|dly special accounts. regular| +46284|211756|36765|1|32|53367.68|0.07|0.06|N|O|1996-01-04|1995-11-17|1996-01-16|NONE|TRUCK|s boost after the fluffily | +46285|714632|14633|1|3|4939.80|0.04|0.08|R|F|1995-01-21|1995-02-09|1995-02-02|COLLECT COD|FOB|luffily regular packages. caref| +46285|815347|15348|2|4|5049.20|0.05|0.03|R|F|1995-03-20|1995-03-19|1995-04-04|COLLECT COD|TRUCK|olites grow unusual packages. bravely | +46285|533374|33375|3|9|12666.15|0.02|0.02|R|F|1995-01-29|1995-02-18|1995-02-01|NONE|RAIL|nto the fluffily ironic | +46285|401090|26107|4|42|41624.94|0.05|0.07|A|F|1995-01-15|1995-02-02|1995-02-04|DELIVER IN PERSON|AIR|ording to t| +46285|104033|4034|5|18|18666.54|0.07|0.02|R|F|1995-03-26|1995-03-14|1995-04-09|TAKE BACK RETURN|SHIP|cajole slyl| +46285|469857|19858|6|28|51151.24|0.05|0.02|A|F|1995-03-01|1995-02-07|1995-03-21|TAKE BACK RETURN|AIR|ests? final p| +46286|708868|46411|1|50|93841.50|0.01|0.01|R|F|1994-07-08|1994-07-03|1994-07-10|COLLECT COD|AIR|ronic, even hockey players after the| +46286|941793|4312|2|11|20182.25|0.05|0.03|R|F|1994-07-29|1994-05-08|1994-08-12|TAKE BACK RETURN|TRUCK|. quickly iro| +46286|706246|6247|3|38|47583.98|0.10|0.07|R|F|1994-07-24|1994-05-08|1994-08-07|DELIVER IN PERSON|SHIP| packages. pending, final requests nag| +46287|929459|29460|1|17|25302.97|0.07|0.07|N|O|1997-09-18|1997-10-20|1997-09-25|DELIVER IN PERSON|RAIL|arefully. bold, regular re| +46287|415887|15888|2|23|41465.78|0.10|0.08|N|O|1998-01-05|1997-11-12|1998-02-04|COLLECT COD|RAIL|according to the sly| +46287|802929|2930|3|47|86098.36|0.04|0.00|N|O|1997-11-14|1997-10-28|1997-11-28|TAKE BACK RETURN|FOB|aggle blithely unusua| +46287|814421|39454|4|18|24036.84|0.01|0.04|N|O|1997-10-03|1997-11-14|1997-10-10|NONE|MAIL|d dolphins use behind the quickly ent| +46287|958116|33155|5|5|5870.35|0.02|0.00|N|O|1997-11-07|1997-11-10|1997-12-03|NONE|SHIP|posits detect quickly among the f| +46287|48906|23907|6|15|27823.50|0.02|0.07|N|O|1997-11-02|1997-10-17|1997-11-21|DELIVER IN PERSON|MAIL| beans: furiously enticing ideas affix| +46312|842316|29865|1|43|54105.61|0.04|0.08|N|O|1996-05-12|1996-05-16|1996-05-31|TAKE BACK RETURN|REG AIR|requests afte| +46312|797706|47707|2|46|82968.82|0.10|0.01|N|O|1996-05-30|1996-05-11|1996-06-24|NONE|SHIP|tornis are quickly. carefully exp| +46312|32157|44658|3|4|4356.60|0.04|0.06|N|O|1996-07-14|1996-05-24|1996-07-18|DELIVER IN PERSON|TRUCK|ts sleep! blithely pending p| +46312|451065|38593|4|7|7112.28|0.02|0.00|N|O|1996-04-24|1996-05-01|1996-05-09|DELIVER IN PERSON|AIR|ross the care| +46312|33206|8207|5|19|21644.80|0.09|0.05|N|O|1996-04-16|1996-06-25|1996-04-21|NONE|FOB|sits. blithely bold theodolites | +46312|86950|11953|6|11|21306.45|0.09|0.00|N|O|1996-04-30|1996-05-09|1996-05-08|COLLECT COD|SHIP|l requests against the fluffily ir| +46312|364243|1765|7|13|16993.99|0.05|0.00|N|O|1996-06-04|1996-05-18|1996-06-17|DELIVER IN PERSON|FOB|l instructions haggle slyly. alw| +46313|830747|5780|1|19|31876.30|0.02|0.06|N|O|1998-05-13|1998-06-08|1998-05-31|NONE|TRUCK|eep special, regular foxes. | +46313|360969|48491|2|41|83227.95|0.01|0.06|N|O|1998-05-08|1998-06-29|1998-05-24|TAKE BACK RETURN|RAIL|ld asymptotes. carefully regular p| +46313|794161|6677|3|48|60246.24|0.08|0.00|N|O|1998-07-14|1998-07-01|1998-07-16|COLLECT COD|RAIL|etect fluffily unusual dinos. slyly b| +46313|458726|8727|4|49|82550.30|0.07|0.00|N|O|1998-06-06|1998-06-17|1998-06-22|COLLECT COD|FOB|carefully about the quickly silent deposit| +46314|888527|13562|1|35|53041.80|0.10|0.02|N|O|1997-02-16|1997-01-24|1997-02-17|TAKE BACK RETURN|AIR| wake furiously pen| +46315|358149|45671|1|31|37421.03|0.03|0.02|A|F|1992-12-15|1992-11-10|1993-01-05|TAKE BACK RETURN|FOB|forges. even accoun| +46316|140886|15891|1|48|92490.24|0.08|0.07|N|O|1996-02-22|1996-04-29|1996-02-25|NONE|SHIP|fix blithel| +46316|866173|41208|2|25|28478.25|0.09|0.00|N|O|1996-02-18|1996-04-23|1996-02-25|DELIVER IN PERSON|REG AIR|regular, even| +46316|759797|9798|3|14|25994.64|0.05|0.00|N|O|1996-02-24|1996-03-30|1996-03-16|DELIVER IN PERSON|MAIL|y pending packa| +46316|907252|32289|4|13|16369.73|0.06|0.01|N|O|1996-03-10|1996-03-22|1996-04-05|TAKE BACK RETURN|REG AIR|dolites. even, ironic pack| +46316|172009|9519|5|19|20539.00|0.09|0.01|N|O|1996-03-03|1996-04-14|1996-03-04|COLLECT COD|MAIL|ly final packages. furi| +46317|533164|20695|1|18|21548.52|0.05|0.04|N|O|1996-12-13|1997-01-09|1996-12-31|NONE|MAIL|uickly regular foxes. unusual pinto | +46317|876437|26438|2|2|2826.78|0.10|0.04|N|O|1997-02-28|1997-01-16|1997-03-30|DELIVER IN PERSON|SHIP|he final packages-- fluffily busy asymptote| +46318|881066|31067|1|43|45021.86|0.09|0.02|R|F|1993-06-01|1993-05-05|1993-06-24|DELIVER IN PERSON|SHIP| ironic packages detect carefully c| +46318|65776|28278|2|46|80121.42|0.06|0.04|R|F|1993-05-01|1993-04-21|1993-05-19|TAKE BACK RETURN|FOB|ously bold foxes alo| +46319|45520|8021|1|8|11724.16|0.07|0.07|R|F|1992-06-17|1992-06-07|1992-06-24|COLLECT COD|TRUCK|have to sleep slyly express, reg| +46319|46308|46309|2|17|21323.10|0.05|0.06|A|F|1992-07-20|1992-05-22|1992-08-06|NONE|RAIL|mptotes use.| +46319|297846|10352|3|31|57158.73|0.02|0.03|R|F|1992-05-21|1992-06-16|1992-06-02|DELIVER IN PERSON|AIR|ar accounts detect c| +46319|896890|34442|4|43|81134.55|0.07|0.04|R|F|1992-07-26|1992-06-08|1992-07-30|DELIVER IN PERSON|RAIL|requests x| +46344|718644|18645|1|17|28264.37|0.03|0.08|N|O|1997-12-28|1998-01-12|1998-01-18|DELIVER IN PERSON|MAIL|he ironic accounts: carefully final pa| +46344|239417|14426|2|11|14920.40|0.05|0.03|N|O|1998-01-25|1997-12-23|1998-02-24|DELIVER IN PERSON|FOB|ss excuses.| +46344|868236|5788|3|29|34921.51|0.07|0.02|N|O|1997-11-25|1997-12-24|1997-11-26|COLLECT COD|REG AIR| regular requests sl| +46344|428931|16456|4|26|48357.66|0.07|0.06|N|O|1998-01-20|1997-12-14|1998-02-18|TAKE BACK RETURN|MAIL|fily even excuses. accounts boost furi| +46344|28102|40603|5|49|50474.90|0.10|0.05|N|O|1997-12-22|1998-01-12|1997-12-24|COLLECT COD|SHIP|al excuses are ruthle| +46345|465976|3504|1|44|85445.80|0.08|0.06|N|O|1998-02-18|1998-02-21|1998-02-19|TAKE BACK RETURN|REG AIR|ept the fluffily even accounts. | +46345|652372|14886|2|44|58270.96|0.08|0.02|N|O|1998-01-03|1998-02-15|1998-01-25|TAKE BACK RETURN|SHIP|aggle. furiously idle dependencies mo| +46345|411675|49200|3|11|17453.15|0.06|0.00|N|O|1998-03-09|1998-03-17|1998-04-03|COLLECT COD|FOB|ely. quickly ironic s| +46345|11728|49229|4|16|26235.52|0.02|0.03|N|O|1998-03-20|1998-02-02|1998-03-25|NONE|FOB|jole specia| +46345|108503|21006|5|37|55925.50|0.02|0.01|N|O|1998-04-29|1998-02-02|1998-05-24|TAKE BACK RETURN|SHIP|s sleep carefully. slyly special d| +46345|608112|45649|6|27|27542.16|0.07|0.01|N|O|1998-04-15|1998-03-12|1998-04-26|TAKE BACK RETURN|SHIP|rthogs. ironic| +46346|212216|49729|1|50|56410.00|0.07|0.07|R|F|1994-01-23|1993-11-21|1994-02-03|COLLECT COD|REG AIR|ding packages. i| +46346|706794|6795|2|8|14406.08|0.05|0.03|R|F|1993-11-28|1993-11-10|1993-12-17|NONE|REG AIR| regular pint| +46346|82409|19913|3|28|38959.20|0.08|0.05|R|F|1994-02-04|1994-01-04|1994-02-17|DELIVER IN PERSON|AIR|f the account| +46346|33304|33305|4|49|60627.70|0.04|0.03|A|F|1993-11-08|1993-11-10|1993-12-05|COLLECT COD|AIR|s hinder. final deposits after the furi| +46347|84952|9955|1|14|27117.30|0.02|0.05|R|F|1992-02-15|1992-02-10|1992-03-12|COLLECT COD|SHIP|telets wake across the furiously ironi| +46347|786646|36647|2|23|39850.03|0.10|0.01|R|F|1992-03-24|1992-02-16|1992-04-05|TAKE BACK RETURN|RAIL|counts are ironic requests. fluffily regul| +46347|153672|16176|3|47|81106.49|0.09|0.08|R|F|1992-02-03|1992-04-02|1992-02-18|NONE|RAIL|lly ironic pinto beans boost furiousl| +46347|757470|19986|4|41|62625.04|0.01|0.04|A|F|1992-01-14|1992-03-02|1992-02-05|COLLECT COD|MAIL|uctions. even| +46347|794768|32314|5|48|89411.04|0.06|0.00|A|F|1992-02-17|1992-03-11|1992-02-22|NONE|FOB|r packages. ironic reque| +46348|190005|40006|1|22|24090.00|0.00|0.06|R|F|1995-01-20|1995-02-01|1995-02-02|TAKE BACK RETURN|MAIL|haggle quickly regular dependencie| +46348|412248|37265|2|33|38287.26|0.06|0.01|A|F|1995-03-07|1995-03-05|1995-03-26|COLLECT COD|TRUCK|uthlessly pending package| +46348|649824|49825|3|12|21285.48|0.07|0.05|R|F|1995-02-22|1995-01-19|1995-03-07|NONE|TRUCK|egular deposits? carefully spe| +46348|579224|41736|4|21|27367.20|0.10|0.07|R|F|1994-12-28|1995-02-24|1995-01-10|NONE|SHIP|s are slyly above the furiously r| +46348|6342|31343|5|41|51181.94|0.03|0.04|R|F|1995-02-13|1995-02-03|1995-03-12|COLLECT COD|AIR|ticingly across the fi| +46349|755165|30196|1|46|56125.98|0.07|0.03|A|F|1992-06-04|1992-04-03|1992-06-10|COLLECT COD|SHIP|s until the pinto beans nag across the q| +46349|56831|44335|2|27|48271.41|0.01|0.02|A|F|1992-05-09|1992-05-10|1992-05-20|COLLECT COD|MAIL|ckages after the quickly sp| +46349|143480|18485|3|23|35040.04|0.07|0.04|R|F|1992-06-24|1992-05-19|1992-06-26|COLLECT COD|FOB|he regular platelets. fina| +46349|463072|38091|4|39|40366.95|0.09|0.05|R|F|1992-05-06|1992-05-25|1992-05-27|NONE|MAIL| to the close| +46349|850178|37730|5|47|53022.11|0.02|0.01|R|F|1992-05-25|1992-05-04|1992-06-05|COLLECT COD|TRUCK|regular platelets. fu| +46349|933014|33015|6|31|32456.07|0.05|0.05|R|F|1992-06-14|1992-04-08|1992-07-13|NONE|SHIP|dolites are fluffily p| +46350|300730|25743|1|34|58844.48|0.01|0.01|N|O|1995-08-11|1995-09-04|1995-09-10|TAKE BACK RETURN|AIR|sts. pains about the ideas sha| +46350|362065|12066|2|31|34938.55|0.01|0.01|N|O|1995-11-09|1995-10-09|1995-12-08|DELIVER IN PERSON|MAIL|arefully carefully spe| +46350|226411|26412|3|34|45471.60|0.06|0.08|N|O|1995-10-02|1995-08-28|1995-10-28|NONE|TRUCK|ntegrate carefully alongsi| +46350|285858|48364|4|48|88504.32|0.05|0.01|N|O|1995-11-21|1995-08-24|1995-11-30|DELIVER IN PERSON|REG AIR|instruction| +46350|410778|35795|5|39|65861.25|0.08|0.02|N|O|1995-09-25|1995-10-11|1995-10-23|NONE|MAIL|erns. slyly iro| +46350|941913|16950|6|20|39097.40|0.06|0.08|N|O|1995-08-28|1995-10-19|1995-09-02|NONE|SHIP|blithe packages cajole furiously about the| +46351|959330|9331|1|14|19450.06|0.05|0.03|N|O|1996-10-06|1996-09-23|1996-10-07|DELIVER IN PERSON|AIR|heodolites cajole blithel| +46351|452509|27528|2|12|17537.76|0.00|0.02|N|O|1996-10-10|1996-09-14|1996-11-02|TAKE BACK RETURN|FOB|kly final d| +46351|306769|6770|3|44|78133.00|0.00|0.06|N|O|1996-10-03|1996-09-19|1996-10-20|TAKE BACK RETURN|RAIL|lar pains above the fluffily ev| +46351|852254|2255|4|4|4824.84|0.07|0.00|N|O|1996-09-20|1996-09-19|1996-10-05|DELIVER IN PERSON|SHIP|ly. pending, final accounts beneath th| +46376|900150|12669|1|36|41403.96|0.09|0.00|N|O|1997-07-06|1997-05-16|1997-07-16|NONE|RAIL|furiously aft| +46376|806362|18879|2|20|25366.40|0.07|0.08|N|O|1997-07-25|1997-05-13|1997-08-10|DELIVER IN PERSON|AIR|accounts. furiously regular foxe| +46376|511041|48572|3|2|2104.04|0.03|0.07|N|O|1997-06-14|1997-06-11|1997-07-13|NONE|TRUCK| blithely unusual req| +46377|436051|48560|1|38|37507.14|0.00|0.00|N|O|1996-03-11|1996-02-15|1996-04-05|TAKE BACK RETURN|MAIL|ideas about the unusual pinto bean| +46377|706459|6460|2|50|73271.00|0.09|0.01|N|O|1996-04-06|1996-03-08|1996-04-26|TAKE BACK RETURN|FOB|ally fluffy accounts cajole along th| +46377|452995|40523|3|50|97398.50|0.10|0.07|N|O|1996-02-06|1996-02-17|1996-02-29|TAKE BACK RETURN|TRUCK|onic dependencies wake c| +46377|480746|5765|4|26|44894.72|0.10|0.04|N|O|1996-04-11|1996-03-16|1996-05-09|DELIVER IN PERSON|RAIL| pending depe| +46377|891258|41259|5|10|12492.10|0.10|0.08|N|O|1996-01-16|1996-02-16|1996-01-21|COLLECT COD|MAIL|r requests agains| +46378|369737|32245|1|39|70462.08|0.01|0.01|A|F|1993-12-06|1994-01-21|1993-12-20|DELIVER IN PERSON|RAIL|ily after the un| +46378|158738|21242|2|19|34137.87|0.04|0.00|R|F|1993-11-18|1993-12-18|1993-11-28|TAKE BACK RETURN|MAIL|furiously idle pinto beans hag| +46378|909205|46760|3|33|40067.28|0.01|0.07|R|F|1993-12-07|1993-12-13|1993-12-30|TAKE BACK RETURN|FOB|ts. carefully unusual Tiresias unwind al| +46378|4309|41810|4|5|6066.50|0.02|0.01|A|F|1993-11-05|1994-01-24|1993-11-16|NONE|REG AIR|e carefully even pinto beans. | +46379|788131|25677|1|21|25601.10|0.00|0.03|R|F|1994-03-10|1994-03-13|1994-04-04|NONE|REG AIR|ronic ideas. blithely silent deposits hagg| +46380|935825|10862|1|30|55823.40|0.01|0.03|N|O|1997-01-24|1997-03-01|1997-02-10|COLLECT COD|REG AIR|escapades h| +46380|405235|17744|2|43|49029.03|0.02|0.08|N|O|1997-04-09|1997-03-23|1997-04-30|TAKE BACK RETURN|TRUCK| carefully regular epitaphs thra| +46380|772752|10298|3|41|74813.52|0.03|0.00|N|O|1997-02-24|1997-02-24|1997-02-27|TAKE BACK RETURN|RAIL| are furiously a| +46380|631585|44098|4|45|68244.75|0.03|0.07|N|O|1997-02-17|1997-03-06|1997-03-01|COLLECT COD|AIR|ully even | +46380|44758|32259|5|26|44271.50|0.01|0.05|N|O|1997-05-03|1997-02-11|1997-05-08|DELIVER IN PERSON|AIR|wake slyly slyly even fo| +46380|242674|5179|6|49|79216.34|0.00|0.04|N|O|1997-02-06|1997-03-13|1997-03-07|TAKE BACK RETURN|AIR|lyly pending requests wake | +46380|606418|18931|7|26|34433.88|0.08|0.04|N|O|1997-01-06|1997-02-28|1997-02-01|NONE|FOB|cajole furiously alon| +46381|58387|8388|1|33|44397.54|0.07|0.01|R|F|1994-01-18|1994-01-15|1994-01-26|COLLECT COD|AIR|rding to the furiously final acco| +46381|299511|24522|2|7|10573.50|0.04|0.03|A|F|1993-12-09|1993-12-03|1993-12-12|TAKE BACK RETURN|FOB|lent asymptotes detect quickly aga| +46381|881021|18573|3|7|7013.86|0.10|0.06|R|F|1993-11-21|1993-12-06|1993-12-04|DELIVER IN PERSON|MAIL|lly even pack| +46381|305561|18068|4|3|4699.65|0.08|0.01|R|F|1994-02-23|1994-01-07|1994-03-09|NONE|RAIL|ost carefully. blithely regular requests| +46381|561257|36280|5|14|18455.22|0.00|0.00|A|F|1993-11-21|1994-01-29|1993-12-12|DELIVER IN PERSON|FOB|riously special ac| +46382|304194|41713|1|13|15576.34|0.05|0.08|N|O|1996-05-19|1996-05-19|1996-06-01|NONE|SHIP|sits above the furious| +46382|585909|10932|2|34|67825.92|0.05|0.00|N|O|1996-05-19|1996-05-07|1996-06-05|TAKE BACK RETURN|RAIL|ironic pac| +46383|794204|6720|1|11|14279.87|0.07|0.02|A|F|1994-01-03|1994-03-27|1994-01-12|DELIVER IN PERSON|SHIP|ake. sometimes special instructio| +46383|176091|1098|2|27|31511.43|0.01|0.00|R|F|1994-03-17|1994-03-05|1994-04-13|TAKE BACK RETURN|AIR|oxes. dolphins wake in place of t| +46383|556688|19200|3|3|5233.98|0.05|0.00|A|F|1994-02-16|1994-03-26|1994-03-09|NONE|FOB|bout the blithely expres| +46383|243497|18506|4|49|70583.52|0.09|0.04|R|F|1994-03-16|1994-03-15|1994-03-20|COLLECT COD|AIR|ents haggle carefully bold, furious| +46408|214953|2466|1|12|22415.28|0.07|0.01|N|O|1998-07-28|1998-06-22|1998-08-22|NONE|TRUCK|requests are blithely furiously| +46409|381302|43810|1|8|11066.32|0.06|0.00|A|F|1993-07-05|1993-07-25|1993-07-20|COLLECT COD|REG AIR|ounts. furiously ironi| +46409|527566|40077|2|3|4780.62|0.06|0.00|R|F|1993-05-31|1993-07-13|1993-06-11|TAKE BACK RETURN|TRUCK|y regular theodolites haggle pe| +46409|793813|6329|3|37|70550.86|0.04|0.03|A|F|1993-05-15|1993-07-15|1993-05-31|COLLECT COD|SHIP|kages after| +46409|609267|46804|4|17|19995.91|0.06|0.07|A|F|1993-05-23|1993-06-16|1993-05-24|TAKE BACK RETURN|REG AIR|ar instructions. q| +46409|934017|46536|5|1|1050.97|0.00|0.01|R|F|1993-07-25|1993-07-02|1993-07-31|NONE|TRUCK|e pending t| +46409|19434|6935|6|45|60904.35|0.07|0.01|R|F|1993-07-16|1993-07-16|1993-07-20|COLLECT COD|REG AIR|ns unwind qui| +46409|625664|38177|7|21|33382.23|0.04|0.00|R|F|1993-06-23|1993-06-09|1993-07-15|COLLECT COD|RAIL|sly pending depths a| +46410|524216|36727|1|32|39686.08|0.03|0.04|R|F|1994-06-27|1994-07-12|1994-07-22|TAKE BACK RETURN|FOB|ets wake sl| +46410|494067|6577|2|38|40319.52|0.05|0.06|A|F|1994-06-26|1994-06-15|1994-07-11|NONE|FOB| the slyly unusual| +46410|771093|46124|3|23|26773.38|0.04|0.08|R|F|1994-06-10|1994-06-09|1994-06-21|TAKE BACK RETURN|RAIL|es. furiously special shea| +46410|755091|5092|4|48|55010.88|0.03|0.05|R|F|1994-05-14|1994-06-04|1994-06-08|NONE|RAIL|r pinto beans cajole sly| +46410|806380|43929|5|7|9004.38|0.04|0.07|R|F|1994-05-17|1994-07-28|1994-05-28|NONE|RAIL| have to are slyly. | +46410|824917|12466|6|44|81042.28|0.01|0.06|A|F|1994-05-19|1994-06-23|1994-06-14|DELIVER IN PERSON|AIR|ffily even accounts-- silent theodolite| +46410|378324|15846|7|27|37862.37|0.03|0.06|A|F|1994-07-28|1994-07-26|1994-08-22|NONE|AIR|usly final courts| +46411|484000|21528|1|5|4919.90|0.06|0.00|R|F|1995-02-20|1995-01-29|1995-03-16|NONE|MAIL|ter the carefu| +46411|580423|42935|2|36|54122.40|0.03|0.04|A|F|1995-04-09|1995-02-26|1995-05-08|COLLECT COD|TRUCK|asymptotes across the| +46411|167954|17955|3|30|60658.50|0.02|0.08|A|F|1995-03-18|1995-03-03|1995-03-25|DELIVER IN PERSON|MAIL| slyly final dolphins. quickly sp| +46412|749849|12364|1|18|34178.58|0.05|0.08|N|O|1998-08-11|1998-08-09|1998-09-08|TAKE BACK RETURN|RAIL|. slyly bold deposits wake furio| +46412|710483|48026|2|32|47790.40|0.03|0.01|N|O|1998-06-21|1998-08-03|1998-07-20|DELIVER IN PERSON|REG AIR| packages print finally. carefully ironic h| +46412|72544|10048|3|36|54595.44|0.08|0.02|N|O|1998-06-18|1998-08-31|1998-07-07|DELIVER IN PERSON|RAIL|ly pending asymptotes. carefully dogge| +46412|234943|47448|4|23|43192.39|0.01|0.07|N|O|1998-07-31|1998-08-10|1998-08-23|NONE|FOB|s affix carefully alongside o| +46412|673231|35745|5|10|12042.00|0.09|0.08|N|O|1998-10-04|1998-09-07|1998-10-05|NONE|AIR|even accounts. quickly final p| +46412|988079|13118|6|14|16338.42|0.02|0.01|N|O|1998-07-16|1998-08-14|1998-08-04|NONE|AIR| fluffily | +46413|857081|7082|1|48|49825.92|0.03|0.06|R|F|1993-09-29|1993-08-01|1993-10-04|DELIVER IN PERSON|RAIL|gular packages. plat| +46413|949225|24262|2|41|52241.38|0.08|0.01|R|F|1993-08-08|1993-08-10|1993-08-14|NONE|SHIP|bold, even foxes cajole carefully. slyly f| +46414|463789|13790|1|23|40313.48|0.05|0.08|N|O|1995-07-09|1995-07-02|1995-07-12|NONE|TRUCK|al foxes. furiously bold ideas sleep.| +46414|898373|48374|2|43|58967.19|0.07|0.05|R|F|1995-05-06|1995-06-19|1995-05-10|COLLECT COD|TRUCK|t ideas wake aroun| +46414|939442|1961|3|30|44442.00|0.05|0.06|R|F|1995-05-06|1995-06-19|1995-05-25|COLLECT COD|AIR| blithely bold accou| +46414|187769|37770|4|47|87267.72|0.07|0.03|N|F|1995-06-16|1995-05-26|1995-07-06|TAKE BACK RETURN|AIR|thely blithe theodolites haggle. fur| +46415|461665|11666|1|9|14639.76|0.08|0.05|N|O|1997-01-04|1996-12-03|1997-01-30|TAKE BACK RETURN|RAIL|ccounts. fluffily iro| +46440|403796|3797|1|25|42494.25|0.03|0.02|A|F|1995-01-01|1995-02-17|1995-01-15|COLLECT COD|AIR|ickly final packag| +46440|592691|5203|2|16|28538.72|0.04|0.08|A|F|1994-12-09|1995-02-11|1994-12-12|NONE|AIR| courts. request| +46441|993906|6426|1|30|59995.80|0.02|0.04|R|F|1994-07-07|1994-05-30|1994-07-12|TAKE BACK RETURN|FOB| ironic packages nag express pint| +46441|569779|32291|2|23|42521.25|0.07|0.07|R|F|1994-05-15|1994-06-12|1994-06-05|TAKE BACK RETURN|MAIL|ounts. caref| +46441|264056|26562|3|42|42841.68|0.09|0.01|A|F|1994-05-13|1994-05-21|1994-05-29|DELIVER IN PERSON|MAIL|bt above the c| +46441|973595|11153|4|29|48387.95|0.09|0.04|A|F|1994-06-30|1994-06-15|1994-07-24|NONE|TRUCK|theodolites cajole furiously final| +46441|209308|34317|5|4|4869.16|0.09|0.01|A|F|1994-06-17|1994-06-15|1994-07-15|TAKE BACK RETURN|SHIP|carefully even accounts wake carefull| +46441|836111|11144|6|3|3141.21|0.07|0.05|A|F|1994-06-08|1994-05-10|1994-07-07|DELIVER IN PERSON|FOB|ven foxes slee| +46441|516563|4094|7|38|60022.52|0.03|0.04|A|F|1994-07-22|1994-05-27|1994-08-07|TAKE BACK RETURN|RAIL|s the care| +46442|872392|9944|1|30|40930.50|0.04|0.03|A|F|1994-09-20|1994-10-12|1994-09-25|COLLECT COD|RAIL| theodolites. courts promise carefully ev| +46442|277171|39677|2|49|56259.84|0.06|0.02|A|F|1994-11-04|1994-09-30|1994-11-19|DELIVER IN PERSON|MAIL|e slyly. eve| +46442|403614|16123|3|44|66773.96|0.09|0.06|A|F|1994-10-16|1994-10-07|1994-11-05|TAKE BACK RETURN|AIR|sits cajole across the blithely s| +46442|536948|24479|4|29|57562.68|0.03|0.06|R|F|1994-11-22|1994-09-25|1994-11-23|COLLECT COD|TRUCK|nal deposits boost | +46442|471158|46177|5|40|45165.20|0.04|0.00|R|F|1994-10-02|1994-10-27|1994-10-10|TAKE BACK RETURN|TRUCK|ronic theodolites. furiously ev| +46443|956387|6388|1|1|1443.34|0.04|0.02|R|F|1992-12-29|1993-01-27|1993-01-03|NONE|TRUCK| cajole carefully around the blithely unus| +46443|995169|20208|2|45|56885.40|0.02|0.08|A|F|1993-01-23|1993-01-21|1993-02-09|COLLECT COD|AIR|ole within the furious| +46443|799862|12378|3|2|3923.66|0.09|0.06|R|F|1993-01-12|1993-01-19|1993-02-09|TAKE BACK RETURN|REG AIR|ly pending packag| +46443|271995|47006|4|38|74745.24|0.07|0.00|A|F|1993-01-14|1993-01-31|1993-01-22|TAKE BACK RETURN|AIR| to the carefully special foxes. express p| +46443|416768|4293|5|46|77498.04|0.01|0.02|R|F|1993-02-17|1992-12-31|1993-02-25|NONE|MAIL| quickly furious pinto beans. quick,| +46443|609918|22431|6|40|73115.20|0.05|0.08|A|F|1993-01-02|1993-02-14|1993-01-13|NONE|TRUCK| packages mold slyly regular req| +46443|891169|3687|7|5|5800.60|0.09|0.03|A|F|1992-12-07|1993-02-03|1992-12-28|NONE|AIR|s; ironic pinto beans | +46444|868968|44003|1|29|56170.68|0.03|0.03|R|F|1992-10-16|1992-10-18|1992-10-21|COLLECT COD|MAIL|uriously regular requests al| +46444|744897|7412|2|9|17476.74|0.10|0.04|A|F|1992-11-07|1992-10-20|1992-11-12|DELIVER IN PERSON|AIR|ideas about the foxes boo| +46445|171981|21982|1|18|36953.64|0.06|0.00|R|F|1993-11-21|1994-01-26|1993-12-04|COLLECT COD|FOB|e slyly regular pinto beans| +46446|484140|46650|1|40|44964.80|0.09|0.04|N|O|1996-10-26|1996-08-23|1996-11-04|DELIVER IN PERSON|SHIP|ptotes. quickly final instructions | +46446|935292|10329|2|48|63708.00|0.07|0.04|N|O|1996-08-19|1996-10-15|1996-09-12|COLLECT COD|RAIL|. express, even pl| +46446|441491|29016|3|15|21487.05|0.04|0.06|N|O|1996-08-05|1996-09-25|1996-08-26|DELIVER IN PERSON|AIR|theodolites bo| +46446|124009|49014|4|42|43386.00|0.10|0.08|N|O|1996-10-04|1996-08-17|1996-10-28|DELIVER IN PERSON|AIR| dependencies boost furiou| +46446|210337|35346|5|14|17462.48|0.08|0.00|N|O|1996-07-23|1996-09-08|1996-08-13|DELIVER IN PERSON|RAIL|ole furiously alon| +46446|123763|23764|6|15|26801.40|0.00|0.06|N|O|1996-10-21|1996-10-12|1996-10-24|COLLECT COD|RAIL|odolites maintain slyly about the fur| +46446|73717|23718|7|8|13525.68|0.05|0.03|N|O|1996-08-17|1996-09-29|1996-09-07|NONE|REG AIR|eas sleep slyly after the caref| +46447|957378|32417|1|42|60283.86|0.03|0.06|A|F|1992-09-22|1992-10-19|1992-10-16|TAKE BACK RETURN|SHIP| sleep quickly theodolites. slyly| +46447|636276|11301|2|17|20608.08|0.05|0.04|R|F|1992-12-07|1992-09-09|1992-12-12|TAKE BACK RETURN|REG AIR|y unusual packages. regular ideas | +46447|888800|1318|3|22|39352.72|0.08|0.06|A|F|1992-10-29|1992-09-16|1992-11-23|DELIVER IN PERSON|RAIL|t the slyly fin| +46447|45709|45710|4|3|4964.10|0.02|0.02|A|F|1992-11-01|1992-10-21|1992-11-24|TAKE BACK RETURN|REG AIR|ly final instructions nag against| +46447|229825|29826|5|48|84230.88|0.07|0.03|A|F|1992-11-20|1992-09-19|1992-12-11|DELIVER IN PERSON|AIR| theodolites. | +46447|660854|48394|6|3|5444.46|0.02|0.02|A|F|1992-08-23|1992-10-20|1992-09-05|COLLECT COD|MAIL|iously blithely eve| +46447|962589|147|7|17|28076.18|0.04|0.02|A|F|1992-11-16|1992-11-08|1992-12-07|DELIVER IN PERSON|RAIL|notornis. slyly regular ideas | +46472|224845|37350|1|22|38936.26|0.06|0.00|N|O|1998-06-20|1998-04-26|1998-07-01|NONE|RAIL|inal reque| +46472|967132|42171|2|22|26379.98|0.03|0.04|N|O|1998-04-04|1998-06-17|1998-05-01|TAKE BACK RETURN|TRUCK|xes sleep along the slyly unusual depen| +46472|585290|10313|3|27|37132.29|0.06|0.00|N|O|1998-07-18|1998-05-26|1998-07-19|NONE|TRUCK|mong the packages kindle slyly bold pinto b| +46472|963092|650|4|50|57752.50|0.03|0.06|N|O|1998-06-27|1998-06-23|1998-06-28|NONE|RAIL|around the final deposi| +46472|682568|32569|5|6|9303.18|0.05|0.05|N|O|1998-06-08|1998-05-12|1998-06-11|COLLECT COD|REG AIR|ructions-- carefully f| +46472|908645|8646|6|44|72758.40|0.06|0.02|N|O|1998-05-22|1998-06-24|1998-06-11|DELIVER IN PERSON|SHIP|ironic deposits. req| +46473|401158|13667|1|47|49779.11|0.01|0.02|N|O|1997-11-19|1997-10-29|1997-12-02|COLLECT COD|FOB|to the asympt| +46474|484312|21840|1|8|10370.32|0.06|0.08|A|F|1994-03-25|1994-02-27|1994-03-30|NONE|FOB|posits eat carefully special deposits| +46474|825539|38056|2|40|58579.60|0.00|0.03|R|F|1994-01-25|1994-03-11|1994-01-29|TAKE BACK RETURN|TRUCK|r somas. caref| +46474|820501|8050|3|16|22743.36|0.00|0.06|A|F|1994-03-10|1994-02-14|1994-04-07|TAKE BACK RETURN|RAIL|regular courts print quickly. slyly even p| +46474|147074|9577|4|16|17937.12|0.00|0.04|R|F|1994-01-24|1994-02-08|1994-02-01|NONE|SHIP|inal pinto beans. deposits against the exp| +46474|869456|44491|5|11|15679.51|0.00|0.08|A|F|1994-02-08|1994-02-19|1994-02-12|COLLECT COD|SHIP|ke quickly perm| +46474|933470|8507|6|11|16537.73|0.10|0.04|R|F|1994-02-06|1994-02-24|1994-03-08|TAKE BACK RETURN|RAIL| up the foxes. final, ironic patterns thra| +46475|345967|8474|1|8|16103.60|0.10|0.04|N|O|1998-06-17|1998-06-24|1998-06-27|TAKE BACK RETURN|AIR|deposits. furiously regular gifts | +46475|660757|35784|2|47|80732.84|0.05|0.02|N|O|1998-07-01|1998-06-10|1998-07-20|NONE|MAIL|ress deposits sleep. fina| +46475|334289|34290|3|2|2646.54|0.10|0.01|N|O|1998-04-29|1998-07-09|1998-05-21|COLLECT COD|TRUCK|al ideas. special, br| +46475|393409|5917|4|1|1502.39|0.06|0.08|N|O|1998-07-17|1998-06-27|1998-08-07|NONE|SHIP|ole quickly pending| +46475|13034|535|5|15|14205.45|0.01|0.05|N|O|1998-04-21|1998-06-24|1998-05-17|COLLECT COD|REG AIR|pending packages m| +46475|49393|49394|6|3|4027.17|0.00|0.03|N|O|1998-07-01|1998-07-03|1998-07-21|TAKE BACK RETURN|REG AIR|usual dependencies. final t| +46475|141047|41048|7|8|8704.32|0.07|0.07|N|O|1998-05-10|1998-06-10|1998-05-17|DELIVER IN PERSON|REG AIR| blithely even sauternes boost| +46476|566975|29487|1|24|49006.80|0.10|0.03|N|O|1997-01-04|1996-11-06|1997-01-06|TAKE BACK RETURN|FOB|lly final ideas. ironic pi| +46476|135108|47611|2|44|50296.40|0.07|0.06|N|O|1997-01-08|1996-11-18|1997-01-24|NONE|REG AIR|s integrate along the furiously | +46476|747888|35431|3|20|38717.00|0.08|0.00|N|O|1996-11-28|1996-12-09|1996-12-25|NONE|FOB|sly regular packag| +46476|746034|33577|4|35|37800.00|0.02|0.06|N|O|1996-12-06|1996-11-05|1996-12-22|COLLECT COD|REG AIR|n foxes run above the| +46476|591943|41944|5|20|40698.40|0.01|0.05|N|O|1996-12-06|1996-11-03|1996-12-19|COLLECT COD|MAIL|accounts haggle quickly above the pe| +46476|774806|37322|6|7|13165.39|0.01|0.03|N|O|1996-12-22|1996-12-09|1997-01-18|TAKE BACK RETURN|TRUCK|ly; blithely even accounts boost ste| +46476|159773|9774|7|49|89805.73|0.05|0.02|N|O|1996-11-16|1996-11-21|1996-12-16|TAKE BACK RETURN|REG AIR| regularly ironic theodolites. ironic, fina| +46477|301581|1582|1|47|74380.79|0.10|0.05|N|O|1995-11-10|1995-11-30|1995-11-13|TAKE BACK RETURN|REG AIR|g instructions. busy | +46478|141413|3916|1|9|13089.69|0.00|0.06|R|F|1993-12-05|1993-11-20|1993-12-20|TAKE BACK RETURN|FOB|usly regular theodo| +46478|724026|49055|2|12|12599.88|0.00|0.00|R|F|1993-12-15|1993-11-25|1993-12-23|COLLECT COD|RAIL|eat courts. quickly special pinto be| +46478|702267|2268|3|9|11423.07|0.07|0.06|R|F|1993-11-06|1993-12-18|1993-11-16|DELIVER IN PERSON|RAIL|bold theodolites. blithely even pinto b| +46478|988491|26049|4|31|48962.95|0.07|0.02|A|F|1993-10-29|1993-12-21|1993-11-02|COLLECT COD|FOB|counts sub| +46478|556719|6720|5|13|23083.97|0.08|0.07|A|F|1994-01-26|1994-01-17|1994-02-10|COLLECT COD|SHIP|es integrate permanently.| +46479|441617|41618|1|4|6234.36|0.09|0.01|N|O|1995-12-24|1996-02-15|1996-01-03|TAKE BACK RETURN|TRUCK|pecial accounts are fluffily. car| +46479|247530|35043|2|12|17730.24|0.00|0.06|N|O|1995-12-04|1996-01-12|1995-12-23|DELIVER IN PERSON|TRUCK|ithely bold packages run furi| +46479|226856|14369|3|30|53485.20|0.07|0.00|N|O|1996-01-23|1996-02-26|1996-02-06|NONE|AIR|according to the| +46504|457472|32491|1|9|12865.05|0.08|0.03|N|O|1996-12-14|1996-12-30|1996-12-17|COLLECT COD|MAIL|gle alongside of the final requests. furio| +46504|730473|30474|2|16|24055.04|0.07|0.06|N|O|1996-10-11|1997-01-02|1996-10-15|DELIVER IN PERSON|FOB|ar courts affix along the silent pac| +46505|1467|38968|1|35|47896.10|0.10|0.04|N|O|1996-10-25|1996-09-01|1996-11-22|TAKE BACK RETURN|RAIL|ns maintain | +46505|655067|5068|2|15|15330.45|0.09|0.07|N|O|1996-08-03|1996-09-28|1996-08-11|NONE|RAIL| final, bold requests detect above the| +46505|706325|6326|3|50|66564.50|0.03|0.03|N|O|1996-08-29|1996-08-06|1996-09-08|COLLECT COD|SHIP|into beans. regular, r| +46505|199877|37387|4|24|47444.88|0.02|0.07|N|O|1996-08-16|1996-09-15|1996-09-08|COLLECT COD|SHIP|nal instructions. ironic packa| +46505|329993|29994|5|31|62712.38|0.07|0.02|N|O|1996-07-17|1996-08-03|1996-07-25|TAKE BACK RETURN|RAIL|es detect blithely accordi| +46505|186262|48766|6|4|5393.04|0.10|0.03|N|O|1996-07-16|1996-09-25|1996-08-06|DELIVER IN PERSON|AIR|lly even ideas. quickly final pin| +46506|584498|9521|1|38|60133.86|0.02|0.01|N|O|1997-11-18|1997-12-03|1997-12-09|COLLECT COD|AIR|ep slyly alongside of the blithely unusual| +46507|998622|11142|1|26|44735.08|0.05|0.08|N|O|1996-12-06|1996-10-24|1996-12-13|COLLECT COD|RAIL|ar ideas. furiously express requests i| +46507|836569|49086|2|36|54198.72|0.05|0.01|N|O|1996-08-26|1996-09-11|1996-09-06|NONE|FOB|es among the slyly iro| +46507|212256|12257|3|35|40888.40|0.08|0.01|N|O|1996-10-21|1996-10-20|1996-11-13|TAKE BACK RETURN|FOB|uriously pinto beans. slyly special do| +46508|695952|45953|1|18|35062.56|0.09|0.04|N|O|1995-12-02|1995-11-19|1995-12-05|TAKE BACK RETURN|MAIL|pinto beans haggle carefully against the sp| +46508|857750|7751|2|8|13661.68|0.05|0.08|N|O|1995-12-31|1995-10-28|1996-01-06|NONE|TRUCK|ross the regular pinto | +46508|203020|40533|3|6|5538.06|0.04|0.04|N|O|1996-01-14|1995-11-17|1996-01-18|COLLECT COD|TRUCK|refully. quickly ironic deposit| +46508|150136|37646|4|17|20164.21|0.03|0.02|N|O|1995-10-06|1995-10-26|1995-10-23|TAKE BACK RETURN|FOB|urts across the i| +46508|323826|11345|5|23|42545.63|0.01|0.08|N|O|1995-10-24|1995-12-13|1995-11-17|COLLECT COD|FOB|ts. quickly unusual waters maintain | +46508|543164|18185|6|2|2414.28|0.07|0.05|N|O|1995-11-09|1995-11-10|1995-11-13|NONE|FOB|press deposits cajol| +46508|948899|36454|7|5|9739.25|0.05|0.07|N|O|1996-01-14|1995-11-07|1996-01-23|NONE|MAIL|es. final, regular dolphins against t| +46509|134496|46999|1|14|21426.86|0.08|0.07|A|F|1992-08-28|1992-10-02|1992-09-05|TAKE BACK RETURN|RAIL|its; accounts alongside of the fin| +46509|469916|7444|2|37|69777.93|0.05|0.06|R|F|1992-08-28|1992-10-19|1992-08-29|DELIVER IN PERSON|SHIP|es. even p| +46509|877293|2328|3|19|24134.75|0.07|0.05|R|F|1992-08-18|1992-09-23|1992-08-31|COLLECT COD|AIR| carefully regular r| +46509|658176|33203|4|40|45365.60|0.01|0.07|A|F|1992-11-15|1992-09-29|1992-11-17|DELIVER IN PERSON|REG AIR|pinto beans. thinly regular p| +46509|947708|47709|5|18|31601.88|0.04|0.02|R|F|1992-11-11|1992-09-10|1992-12-02|TAKE BACK RETURN|TRUCK|e blithely. slyly | +46510|373407|23408|1|40|59215.60|0.06|0.02|A|F|1992-05-21|1992-05-13|1992-06-01|COLLECT COD|MAIL| are beneath t| +46511|934448|9485|1|39|57813.60|0.05|0.03|A|F|1993-07-18|1993-09-24|1993-07-29|TAKE BACK RETURN|FOB|g, regular packages across the quickly bl| +46511|263506|38517|2|1|1469.49|0.09|0.07|R|F|1993-10-06|1993-08-21|1993-10-17|NONE|AIR|y above the final, ironic platelets. furi| +46511|739294|14323|3|49|65329.74|0.07|0.00|A|F|1993-08-24|1993-08-21|1993-09-07|NONE|MAIL|unts mold blithely against the slyly bo| +46511|299229|36745|4|9|11053.89|0.06|0.03|R|F|1993-09-08|1993-08-25|1993-09-09|COLLECT COD|RAIL|nal accounts haggle fluffil| +46511|138875|38876|5|45|86124.15|0.04|0.05|A|F|1993-07-27|1993-09-12|1993-08-21|DELIVER IN PERSON|RAIL|s integrate after the f| +46511|60507|10508|6|38|55765.00|0.03|0.01|R|F|1993-08-30|1993-08-30|1993-09-01|NONE|TRUCK|uests wake carefully special | +46511|940038|40039|7|2|2155.98|0.03|0.07|R|F|1993-10-13|1993-08-31|1993-10-21|DELIVER IN PERSON|SHIP|he quickly final sauterne| +46536|209059|46572|1|26|25169.04|0.02|0.06|A|F|1994-05-24|1994-06-02|1994-06-08|TAKE BACK RETURN|MAIL|foxes sleep abo| +46536|649121|36658|2|36|38523.24|0.02|0.08|A|F|1994-06-23|1994-05-06|1994-07-12|TAKE BACK RETURN|FOB|ins hang even accounts. blithely r| +46536|772974|35490|3|20|40938.80|0.00|0.04|R|F|1994-05-10|1994-04-23|1994-05-13|TAKE BACK RETURN|AIR|to beans are furiously regular deposit| +46536|359097|21605|4|22|25433.76|0.05|0.06|A|F|1994-04-28|1994-04-22|1994-05-22|TAKE BACK RETURN|FOB|latelets. pending requ| +46536|336344|36345|5|28|38649.24|0.05|0.02|A|F|1994-07-17|1994-05-28|1994-08-13|TAKE BACK RETURN|MAIL|to the theodolites. deposits along| +46536|923107|23108|6|19|21471.14|0.09|0.01|R|F|1994-06-21|1994-04-20|1994-06-27|NONE|MAIL|n packages. busily reg| +46536|656650|31677|7|37|59444.94|0.09|0.07|R|F|1994-06-05|1994-06-18|1994-07-03|DELIVER IN PERSON|REG AIR|capades. quickly e| +46537|307153|7154|1|47|54526.58|0.04|0.03|N|O|1995-10-31|1995-11-13|1995-11-24|TAKE BACK RETURN|TRUCK|ly carefully even pac| +46537|304939|4940|2|37|71925.04|0.03|0.07|N|O|1996-01-08|1995-12-28|1996-02-06|COLLECT COD|AIR|ill boost alongside of the| +46537|102653|40160|3|22|36424.30|0.06|0.06|N|O|1995-10-13|1995-12-15|1995-10-23|TAKE BACK RETURN|RAIL|bout the slyly bold braids. quickly| +46538|856217|43769|1|21|24636.57|0.03|0.08|N|O|1995-12-16|1995-12-10|1995-12-26|DELIVER IN PERSON|SHIP|sts. blithely brave re| +46538|437094|24619|2|39|40211.73|0.05|0.01|N|O|1995-12-27|1996-01-05|1996-01-04|TAKE BACK RETURN|TRUCK|gifts slee| +46538|233238|20751|3|17|19910.74|0.06|0.01|N|O|1995-11-20|1995-12-28|1995-12-02|TAKE BACK RETURN|MAIL|atelets use against the pending, | +46538|15728|40729|4|18|29586.96|0.09|0.04|N|O|1995-11-14|1995-11-29|1995-12-05|TAKE BACK RETURN|TRUCK|kages. even, regular depos| +46538|330746|30747|5|29|51525.17|0.07|0.06|N|O|1996-01-01|1995-12-27|1996-01-29|COLLECT COD|RAIL|platelets. carefully even instructions m| +46538|846494|46495|6|35|50415.75|0.01|0.01|N|O|1995-10-13|1996-01-07|1995-10-24|DELIVER IN PERSON|TRUCK|boost after the bl| +46539|466683|16684|1|11|18146.26|0.06|0.05|A|F|1993-06-29|1993-08-08|1993-06-30|COLLECT COD|SHIP|ideas. slyly i| +46539|529608|29609|2|25|40939.50|0.07|0.01|A|F|1993-06-10|1993-08-11|1993-06-17|DELIVER IN PERSON|AIR|ngside of the fu| +46539|106659|31664|3|40|66626.00|0.00|0.01|A|F|1993-06-10|1993-07-09|1993-06-11|DELIVER IN PERSON|RAIL|ckages. pending accounts engage. blithely| +46539|603849|41386|4|22|38561.82|0.07|0.07|A|F|1993-09-17|1993-08-23|1993-10-03|NONE|AIR|hrash. instructions eat. quickly regular r| +46540|745426|20455|1|5|7356.95|0.05|0.05|R|F|1995-04-06|1995-04-12|1995-04-18|DELIVER IN PERSON|AIR|ar forges. ironic, pending asymptotes about| +46540|370196|20197|2|3|3798.54|0.00|0.07|R|F|1995-02-23|1995-03-06|1995-03-23|NONE|AIR|uriously express accounts haggle qu| +46540|873535|23536|3|22|33186.78|0.07|0.03|A|F|1995-03-15|1995-04-28|1995-03-30|DELIVER IN PERSON|TRUCK|nal sauternes sleep car| +46541|443312|5821|1|13|16318.77|0.06|0.03|A|F|1993-02-18|1993-02-27|1993-03-04|COLLECT COD|RAIL|. never final pa| +46541|736297|36298|2|5|6666.30|0.03|0.08|A|F|1993-03-11|1993-03-16|1993-03-12|TAKE BACK RETURN|TRUCK| final packages. blithely express | +46541|929476|17031|3|16|24086.88|0.04|0.03|R|F|1993-02-13|1993-02-09|1993-02-21|DELIVER IN PERSON|SHIP|unts are always carefully special packag| +46542|564955|27467|1|41|82817.13|0.07|0.07|N|O|1997-06-14|1997-06-10|1997-07-02|NONE|FOB| according to the slyly final | +46542|186345|48849|2|50|71567.00|0.04|0.00|N|O|1997-07-08|1997-05-26|1997-08-05|TAKE BACK RETURN|SHIP|tions are slyly| +46542|891210|3728|3|27|32431.59|0.03|0.04|N|O|1997-05-22|1997-06-21|1997-06-07|NONE|RAIL|e carefully sly accounts. furiously f| +46543|940998|16035|1|19|38740.05|0.05|0.03|R|F|1993-12-20|1993-11-14|1994-01-15|NONE|TRUCK|g quietly. carefull| +46568|280122|42628|1|45|49594.95|0.10|0.08|A|F|1993-05-12|1993-06-15|1993-05-26|COLLECT COD|SHIP|s. regular a| +46568|997767|22806|2|32|59671.04|0.06|0.03|A|F|1993-05-30|1993-06-27|1993-06-02|TAKE BACK RETURN|TRUCK| are about the express, final deposits. | +46568|455929|30948|3|22|41467.80|0.03|0.01|A|F|1993-06-23|1993-06-25|1993-07-01|TAKE BACK RETURN|REG AIR| excuses bre| +46568|788054|570|4|45|51390.90|0.05|0.05|A|F|1993-08-07|1993-06-10|1993-09-03|NONE|FOB|ly special foxes solve. final platele| +46568|818766|18767|5|27|45487.44|0.06|0.02|A|F|1993-08-04|1993-07-10|1993-08-28|COLLECT COD|SHIP|ly regular ideas sleep tithes. bl| +46568|985897|10936|6|48|95176.80|0.00|0.08|A|F|1993-06-28|1993-06-25|1993-07-18|COLLECT COD|TRUCK|ests wake quickly-- furiously pending d| +46568|966230|3788|7|34|44070.46|0.08|0.08|A|F|1993-08-13|1993-06-06|1993-09-09|NONE|AIR|ackages cajole.| +46569|413286|811|1|47|56365.22|0.06|0.01|A|F|1994-03-26|1994-02-24|1994-04-06|NONE|REG AIR|ously final escapades. slyly even pa| +46569|95443|7945|2|7|10069.08|0.10|0.08|A|F|1994-01-14|1994-02-08|1994-02-13|DELIVER IN PERSON|FOB|e the unus| +46570|364031|14032|1|6|6570.12|0.03|0.08|N|O|1995-08-16|1995-08-08|1995-09-12|DELIVER IN PERSON|MAIL| never at the car| +46571|431344|6361|1|25|31883.00|0.02|0.04|N|O|1995-10-31|1995-12-08|1995-11-02|TAKE BACK RETURN|REG AIR|among the furiously ir| +46572|923425|35944|1|25|36209.50|0.04|0.08|N|O|1996-12-20|1996-10-24|1996-12-24|TAKE BACK RETURN|AIR| ironic account| +46572|997983|23022|2|38|79075.72|0.06|0.06|N|O|1996-10-10|1996-12-04|1996-11-03|DELIVER IN PERSON|REG AIR|pending foxes| +46572|85267|47769|3|20|25045.20|0.00|0.06|N|O|1996-11-02|1996-11-15|1996-11-16|COLLECT COD|FOB|the ironically ironic excuses.| +46572|69625|7129|4|16|25513.92|0.03|0.08|N|O|1996-11-21|1996-12-09|1996-12-01|NONE|FOB|otes. slyly regular depende| +46572|186038|23548|5|26|29224.78|0.02|0.02|N|O|1996-12-19|1996-11-11|1996-12-31|COLLECT COD|REG AIR|beans. sil| +46573|794681|32227|1|22|39064.30|0.03|0.07|R|F|1995-03-16|1995-03-23|1995-04-09|COLLECT COD|AIR|y special packages. bold, ironic instr| +46573|189409|39410|2|34|50945.60|0.00|0.05|R|F|1995-04-29|1995-03-23|1995-05-20|COLLECT COD|AIR|final hocke| +46574|585915|10938|1|7|14006.23|0.08|0.07|R|F|1995-02-21|1995-02-01|1995-03-19|TAKE BACK RETURN|AIR|deas nag slyly blithely ir| +46574|458246|8247|2|35|42147.70|0.04|0.02|R|F|1995-03-03|1995-02-06|1995-03-19|NONE|FOB|silent foxe| +46574|724930|49959|3|22|43007.80|0.05|0.07|A|F|1994-12-26|1995-01-17|1995-01-17|TAKE BACK RETURN|RAIL|ets sleep blithely slyly regular pa| +46574|890103|40104|4|18|19675.08|0.10|0.00|A|F|1994-12-04|1995-01-08|1994-12-28|COLLECT COD|SHIP|e ideas boost quickly carefully final | +46574|957086|7087|5|9|10287.36|0.02|0.08|A|F|1995-01-08|1994-12-12|1995-01-31|TAKE BACK RETURN|TRUCK|lets are never unusual de| +46574|733760|21303|6|24|43049.52|0.09|0.02|R|F|1995-01-08|1994-12-17|1995-02-07|TAKE BACK RETURN|FOB| furiously instructions. final| +46574|302929|2930|7|46|88867.86|0.02|0.03|A|F|1995-02-21|1995-01-18|1995-03-11|DELIVER IN PERSON|SHIP|express pinto beans. slyly final deposit| +46575|315833|40846|1|23|42522.86|0.07|0.06|N|O|1998-03-16|1998-03-10|1998-04-15|NONE|RAIL|pendencies haggle along the | +46575|200687|688|2|21|33341.07|0.08|0.03|N|O|1998-02-04|1998-03-15|1998-03-02|COLLECT COD|AIR|ns. quickly bold instructions| +46575|935667|48186|3|6|10215.72|0.01|0.02|N|O|1998-05-06|1998-03-21|1998-05-11|DELIVER IN PERSON|TRUCK|y above the unusual accounts. plat| +46575|738681|1196|4|32|55028.80|0.02|0.01|N|O|1998-04-25|1998-04-25|1998-05-07|NONE|RAIL|ual requests caj| +46600|986146|23704|1|6|7392.60|0.10|0.03|N|O|1997-03-18|1997-04-30|1997-04-02|COLLECT COD|FOB|ly bold instructions haggle carefu| +46600|146207|33714|2|24|30076.80|0.10|0.08|N|O|1997-02-28|1997-03-22|1997-03-04|NONE|REG AIR|y along the carefully bold pinto be| +46600|299018|36534|3|13|13221.00|0.07|0.07|N|O|1997-03-22|1997-04-25|1997-04-10|DELIVER IN PERSON|AIR|structions are across | +46600|586368|48880|4|14|20360.76|0.10|0.06|N|O|1997-05-22|1997-03-29|1997-05-25|COLLECT COD|AIR|nic pinto beans need to c| +46600|85402|22906|5|12|16648.80|0.02|0.03|N|O|1997-04-30|1997-03-18|1997-05-03|COLLECT COD|FOB|ons haggle | +46600|350214|25229|6|15|18963.00|0.04|0.04|N|O|1997-04-06|1997-03-21|1997-04-26|TAKE BACK RETURN|TRUCK| slyly; slyly ironic theodoli| +46601|608551|33576|1|15|21892.80|0.06|0.03|N|O|1996-08-19|1996-07-14|1996-09-09|COLLECT COD|TRUCK|onic platelets. quickly final w| +46601|913911|13912|2|6|11549.22|0.00|0.08|N|O|1996-09-19|1996-08-21|1996-10-03|TAKE BACK RETURN|AIR|mptotes must have to| +46602|422412|22413|1|5|6671.95|0.08|0.01|R|F|1993-12-07|1993-12-28|1993-12-14|TAKE BACK RETURN|REG AIR|, regular requests. even deposits inte| +46602|467572|42591|2|43|66200.65|0.09|0.04|R|F|1994-02-23|1993-12-27|1994-03-22|COLLECT COD|TRUCK| use carefully abov| +46602|477902|27903|3|37|69555.56|0.06|0.02|R|F|1993-11-30|1994-01-21|1993-12-12|TAKE BACK RETURN|MAIL|uriously. sly, blithe requests after the fl| +46602|98172|23175|4|28|32764.76|0.10|0.02|A|F|1993-12-14|1993-12-12|1994-01-01|DELIVER IN PERSON|TRUCK|ptotes haggl| +46602|968793|31313|5|11|20479.25|0.07|0.08|A|F|1993-12-29|1994-01-23|1994-01-09|COLLECT COD|SHIP|al packages inte| +46602|503632|28653|6|44|71966.84|0.04|0.07|R|F|1994-01-22|1994-01-19|1994-02-18|COLLECT COD|AIR|atelets affix slyly furiously regu| +46603|321982|46995|1|47|94186.59|0.03|0.08|R|F|1992-11-28|1992-11-16|1992-11-30|TAKE BACK RETURN|REG AIR|nusual packages haggle; blithely regular p| +46604|653530|41070|1|45|66757.50|0.06|0.07|N|O|1996-11-17|1996-10-31|1996-11-24|DELIVER IN PERSON|FOB|he silent, unusual accounts. blithely pe| +46604|863270|13271|2|5|6166.15|0.04|0.00|N|O|1996-11-05|1996-11-10|1996-11-13|COLLECT COD|RAIL|he unusual excuses. pending deposits ca| +46604|978077|3116|3|50|57751.50|0.10|0.04|N|O|1996-09-02|1996-11-11|1996-10-02|NONE|RAIL|quests. slyly ironic Tiresias cajo| +46604|531444|18975|4|32|47213.44|0.00|0.01|N|O|1996-09-15|1996-10-19|1996-09-20|TAKE BACK RETURN|RAIL|e furiously pending deposits? quickl| +46604|976794|39314|5|47|87925.25|0.02|0.06|N|O|1996-12-06|1996-11-08|1996-12-07|NONE|TRUCK|ely express accounts use fluffily alongs| +46604|966956|29476|6|47|95076.77|0.10|0.03|N|O|1996-09-07|1996-09-21|1996-09-14|DELIVER IN PERSON|TRUCK|wake! quickly special Tire| +46604|622242|22243|7|11|12806.31|0.05|0.01|N|O|1996-11-20|1996-10-07|1996-11-25|NONE|MAIL|as sleep f| +46605|19577|19578|1|7|10475.99|0.07|0.01|N|O|1995-09-23|1995-10-24|1995-09-28|DELIVER IN PERSON|MAIL|theodolites:| +46605|18795|31296|2|27|46272.33|0.06|0.04|N|O|1995-07-27|1995-10-23|1995-08-13|TAKE BACK RETURN|TRUCK|gular ideas. furiously | +46605|885999|23551|3|49|97262.55|0.00|0.05|N|O|1995-10-10|1995-10-24|1995-10-21|NONE|RAIL|e furiously according to| +46606|33574|21075|1|25|37689.25|0.03|0.06|A|F|1994-06-03|1994-05-23|1994-07-02|NONE|REG AIR|ges above the even, pending requests believ| +46606|273719|23720|2|46|77864.20|0.08|0.06|A|F|1994-07-24|1994-06-21|1994-08-02|TAKE BACK RETURN|MAIL| bold requests nag ironic, even in| +46606|380384|5399|3|4|5857.48|0.07|0.07|R|F|1994-05-07|1994-05-19|1994-05-17|NONE|FOB|uctions hinder blithely. blithely fi| +46606|104758|17261|4|31|54645.25|0.06|0.06|A|F|1994-05-30|1994-06-04|1994-06-27|NONE|RAIL|lyly. blithely pending exc| +46606|666205|28719|5|28|32792.76|0.03|0.07|A|F|1994-05-20|1994-05-29|1994-06-02|DELIVER IN PERSON|FOB|ar asymptotes solve against the caref| +46606|893637|18672|6|42|68484.78|0.07|0.05|A|F|1994-07-28|1994-06-23|1994-07-31|COLLECT COD|AIR|y pending cou| +46607|713278|38307|1|32|41319.68|0.08|0.03|A|F|1994-03-11|1994-02-21|1994-03-12|COLLECT COD|REG AIR|ular accounts sleep furiously bold accou| +46607|54943|42447|2|20|37958.80|0.03|0.04|R|F|1994-03-03|1994-01-27|1994-03-10|DELIVER IN PERSON|MAIL|inal asymptotes. express i| +46607|415567|15568|3|5|7412.70|0.03|0.06|R|F|1994-01-30|1994-02-10|1994-02-19|COLLECT COD|FOB|s use slyly slyly bold frets: slyly r| +46607|426847|26848|4|9|15964.38|0.10|0.08|A|F|1994-03-30|1994-01-12|1994-04-10|TAKE BACK RETURN|FOB|. ironic packages haggle f| +46607|8527|46028|5|15|21532.80|0.05|0.00|R|F|1994-02-08|1994-01-20|1994-02-16|DELIVER IN PERSON|SHIP| even pinto bea| +46607|305799|30812|6|48|86629.44|0.10|0.07|R|F|1994-02-25|1994-03-04|1994-03-24|NONE|FOB|low requests. express deposits cajo| +46632|14376|14377|1|10|12903.70|0.07|0.07|N|O|1998-03-11|1998-02-21|1998-03-25|COLLECT COD|RAIL| are final foxes. packages sleep. r| +46633|389359|39360|1|29|42001.86|0.00|0.04|R|F|1993-06-19|1993-07-28|1993-06-25|NONE|SHIP|cross the blithely f| +46634|73463|23464|1|21|30165.66|0.07|0.06|N|O|1997-04-17|1997-03-07|1997-04-28|DELIVER IN PERSON|AIR|s past the slyly regular pa| +46634|685573|48087|2|9|14026.86|0.04|0.03|N|O|1997-03-02|1997-03-05|1997-03-13|DELIVER IN PERSON|TRUCK|haggle carefully| +46634|417677|5202|3|6|9567.90|0.10|0.02|N|O|1997-01-27|1997-03-27|1997-02-14|DELIVER IN PERSON|FOB|ickly regular deposits engage slyly fin| +46634|880628|30629|4|22|35388.76|0.03|0.01|N|O|1997-02-06|1997-02-17|1997-03-04|COLLECT COD|MAIL|jole carefu| +46634|713403|38432|5|33|46740.21|0.08|0.02|N|O|1997-04-24|1997-03-05|1997-05-10|DELIVER IN PERSON|TRUCK|efully regular requests slee| +46634|150766|767|6|24|43602.24|0.03|0.01|N|O|1997-01-10|1997-03-18|1997-01-28|TAKE BACK RETURN|AIR|even ideas. final, regula| +46634|919854|7409|7|47|88069.07|0.06|0.00|N|O|1997-03-18|1997-03-06|1997-03-29|NONE|RAIL|arefully above the foxes. fluffily ir| +46635|976078|13636|1|20|23080.60|0.09|0.07|A|F|1994-03-27|1994-05-17|1994-04-16|DELIVER IN PERSON|MAIL|kly regular instruc| +46636|370314|20315|1|29|40144.70|0.10|0.04|N|O|1996-05-27|1996-07-06|1996-06-22|DELIVER IN PERSON|MAIL|t the furiously special dependencies-- fl| +46637|74840|49843|1|43|78038.12|0.03|0.05|N|O|1998-04-12|1998-02-18|1998-04-13|TAKE BACK RETURN|REG AIR|nic deposits wake doggedly always| +46637|828906|41423|2|40|73394.40|0.06|0.02|N|O|1998-01-31|1998-04-13|1998-02-11|COLLECT COD|AIR|hely regular requests use quickly accord| +46638|469552|44571|1|25|38038.25|0.09|0.05|A|F|1994-12-21|1995-02-08|1994-12-27|TAKE BACK RETURN|SHIP|counts. carefully regular | +46638|745012|45013|2|44|46507.12|0.01|0.02|A|F|1995-02-14|1995-02-02|1995-03-06|NONE|RAIL|press, ironic ideas hang. bold gifts sl| +46638|408116|20625|3|5|5120.45|0.04|0.08|R|F|1995-01-12|1995-02-05|1995-01-29|TAKE BACK RETURN|RAIL|ic packages. care| +46638|197950|47951|4|35|71678.25|0.08|0.00|A|F|1994-12-19|1995-02-02|1994-12-21|NONE|AIR|he slyly special ideas. quickly bold excuse| +46638|934992|47511|5|21|42565.95|0.03|0.05|R|F|1995-02-14|1995-01-20|1995-02-16|TAKE BACK RETURN|FOB|arefully regular foxes above the | +46638|395126|20141|6|17|20758.87|0.09|0.03|R|F|1994-12-08|1995-02-11|1994-12-09|NONE|REG AIR|osits after the slyly bold t| +46638|873592|23593|7|10|15655.50|0.10|0.06|R|F|1995-02-12|1995-01-17|1995-02-17|DELIVER IN PERSON|RAIL|ar multipl| +46639|454639|42167|1|23|36653.03|0.05|0.01|A|F|1994-09-25|1994-09-02|1994-10-20|COLLECT COD|RAIL|aids. quickly silen| +46639|105200|5201|2|23|27719.60|0.09|0.07|A|F|1994-09-29|1994-08-02|1994-10-09|DELIVER IN PERSON|FOB|ly according to the dependencies. car| +46639|86706|49208|3|37|62629.90|0.06|0.05|A|F|1994-07-20|1994-09-24|1994-07-25|DELIVER IN PERSON|TRUCK|fully ironic packages. carefully regular d| +46639|263625|26131|4|39|61955.79|0.09|0.07|R|F|1994-07-19|1994-09-23|1994-08-02|DELIVER IN PERSON|TRUCK| excuses are along the slyly pending ins| +46639|738187|38188|5|1|1225.15|0.10|0.01|R|F|1994-07-13|1994-09-13|1994-08-03|COLLECT COD|AIR|lithely blithely express requests. car| +46639|708010|33039|6|44|44791.12|0.02|0.05|R|F|1994-08-31|1994-09-24|1994-09-11|TAKE BACK RETURN|RAIL|sts. express deposits wake deposits. carefu| +46639|516190|16191|7|26|31360.42|0.08|0.02|A|F|1994-08-14|1994-09-02|1994-08-28|NONE|FOB| deposits. even accounts | +46664|597451|47452|1|47|72776.21|0.08|0.04|R|F|1992-10-06|1992-10-12|1992-11-01|DELIVER IN PERSON|AIR|y bold packages. carefully ironic| +46664|356309|6310|2|28|38228.12|0.00|0.08|A|F|1992-10-26|1992-11-01|1992-11-25|NONE|MAIL|ake slyly deposits. spec| +46665|271209|33715|1|19|22423.61|0.01|0.07|R|F|1994-06-02|1994-06-13|1994-06-21|NONE|REG AIR|p carefully iro| +46665|195158|7662|2|33|41353.95|0.02|0.04|R|F|1994-06-10|1994-05-28|1994-07-09|TAKE BACK RETURN|TRUCK| quickly idle courts. asymptotes sl| +46665|11376|48877|3|25|32184.25|0.09|0.03|R|F|1994-07-19|1994-05-27|1994-08-03|TAKE BACK RETURN|REG AIR|carefully! slyly ironic d| +46665|194828|32338|4|21|40379.22|0.09|0.01|A|F|1994-05-08|1994-06-28|1994-05-26|NONE|FOB|otes are after the ironic, ironi| +46665|471551|46570|5|36|54811.08|0.01|0.06|A|F|1994-06-20|1994-06-29|1994-06-27|TAKE BACK RETURN|SHIP|against the quickly express packages. exp| +46666|987300|37301|1|1|1387.26|0.07|0.02|N|F|1995-06-15|1995-06-12|1995-07-09|COLLECT COD|FOB|ons. furiously unusual packages caj| +46666|550586|13098|2|3|4909.68|0.09|0.01|A|F|1995-05-29|1995-05-27|1995-06-12|NONE|TRUCK|ely regular pattern| +46666|697891|10405|3|18|33999.48|0.08|0.01|R|F|1995-05-11|1995-06-17|1995-05-21|TAKE BACK RETURN|REG AIR|iously reg| +46666|442401|4910|4|47|63138.86|0.02|0.05|N|O|1995-08-13|1995-07-12|1995-09-10|NONE|SHIP|ss the slyly pending requests: slyl| +46667|101164|26169|1|18|20972.88|0.00|0.00|A|F|1992-10-19|1992-09-24|1992-10-24|NONE|FOB|iously according to the| +46667|259461|9462|2|44|62499.80|0.04|0.04|R|F|1992-09-04|1992-10-01|1992-09-17|TAKE BACK RETURN|SHIP|refully bold foxes use quickly against th| +46667|759607|22123|3|42|69995.94|0.02|0.04|R|F|1992-09-19|1992-09-19|1992-10-09|COLLECT COD|MAIL|yly along the | +46667|702174|14689|4|45|52926.30|0.01|0.05|R|F|1992-09-23|1992-09-06|1992-10-10|NONE|AIR|lets boost among the blithely bold accou| +46667|422395|22396|5|38|50060.06|0.07|0.02|A|F|1992-10-16|1992-09-18|1992-10-23|DELIVER IN PERSON|REG AIR|ld packages. express deposi| +46667|187623|37624|6|22|37633.64|0.08|0.06|R|F|1992-09-23|1992-10-26|1992-10-10|TAKE BACK RETURN|SHIP|ep across the fluffily regular packag| +46668|95797|8299|1|42|75297.18|0.07|0.05|A|F|1992-09-27|1992-08-22|1992-10-10|DELIVER IN PERSON|AIR|efully bold cou| +46668|53575|41079|2|24|36685.68|0.09|0.08|A|F|1992-09-10|1992-08-07|1992-09-22|COLLECT COD|SHIP|e the express, spec| +46668|419550|19551|3|24|35268.72|0.07|0.00|R|F|1992-08-01|1992-09-07|1992-08-18|TAKE BACK RETURN|FOB|lyly regular instructions| +46669|930127|5164|1|33|38183.64|0.08|0.01|N|O|1997-03-05|1997-02-28|1997-03-10|TAKE BACK RETURN|REG AIR| final accounts. carefully spec| +46669|644340|31877|2|8|10274.48|0.03|0.02|N|O|1997-02-11|1997-04-18|1997-02-16|DELIVER IN PERSON|SHIP|ly bold packages along the even| +46669|409889|9890|3|1|1798.86|0.08|0.04|N|O|1997-04-01|1997-03-23|1997-04-12|COLLECT COD|RAIL| final requ| +46669|992147|4667|4|38|47085.80|0.01|0.04|N|O|1997-04-18|1997-03-02|1997-05-11|NONE|SHIP|ccording to the pending ideas are along| +46669|9136|34137|5|43|44940.59|0.07|0.03|N|O|1997-03-12|1997-04-02|1997-04-07|TAKE BACK RETURN|AIR|ockey players along the foxes sleep ca| +46670|517976|5507|1|35|69788.25|0.01|0.08|N|O|1998-08-17|1998-07-14|1998-08-23|COLLECT COD|RAIL| dolphins doze around t| +46671|264860|2376|1|20|36497.00|0.01|0.04|A|F|1992-03-10|1992-05-09|1992-04-08|NONE|AIR|ests wake slyly. bli| +46671|501459|1460|2|46|67179.78|0.02|0.02|A|F|1992-02-13|1992-04-18|1992-03-14|TAKE BACK RETURN|REG AIR|ironic hockey players cajole bli| +46671|13038|38039|3|39|37090.17|0.06|0.08|R|F|1992-03-29|1992-04-09|1992-04-12|NONE|FOB|al foxes-- silent platelets| +46671|124315|36818|4|2|2678.62|0.10|0.05|A|F|1992-04-11|1992-05-10|1992-04-12|COLLECT COD|SHIP|iously ironic plat| +46671|352293|14801|5|12|16143.36|0.03|0.02|A|F|1992-05-08|1992-03-22|1992-05-28|DELIVER IN PERSON|REG AIR|wake. pinto beans detect carefully. qui| +46671|976724|1763|6|21|37814.28|0.00|0.06|A|F|1992-03-09|1992-04-18|1992-03-28|NONE|RAIL|gular packages. | +46671|792821|17852|7|8|15310.32|0.09|0.00|A|F|1992-02-17|1992-04-30|1992-03-03|TAKE BACK RETURN|REG AIR|pades. blithely | +46696|928652|41171|1|24|40334.64|0.06|0.00|R|F|1992-06-10|1992-04-10|1992-06-21|NONE|AIR|latelets about the blithely sp| +46696|842325|4842|2|24|30414.72|0.06|0.04|R|F|1992-04-19|1992-05-07|1992-04-29|NONE|TRUCK| fluffily regular pinto beans against the f| +46696|950054|55|3|35|38640.35|0.05|0.06|A|F|1992-06-10|1992-04-01|1992-06-14|NONE|MAIL|. deposits caj| +46697|623764|11301|1|15|25315.95|0.06|0.02|R|F|1992-05-14|1992-04-03|1992-06-11|DELIVER IN PERSON|RAIL|ajole carefu| +46697|601247|38784|2|46|52817.66|0.00|0.07|R|F|1992-04-17|1992-04-20|1992-05-01|NONE|AIR|e silent excuses are above the slow pinto| +46697|141547|41548|3|24|38124.96|0.02|0.05|A|F|1992-03-01|1992-03-18|1992-03-24|TAKE BACK RETURN|RAIL|to the pinto beans ar| +46697|977997|40517|4|30|62248.50|0.04|0.04|A|F|1992-06-13|1992-04-09|1992-07-09|DELIVER IN PERSON|REG AIR|ironic excuses integrate quickly after | +46697|190639|28149|5|39|67455.57|0.03|0.04|A|F|1992-04-16|1992-03-25|1992-04-23|DELIVER IN PERSON|REG AIR|heodolites haggle after the | +46697|54467|16969|6|18|25586.28|0.09|0.04|A|F|1992-05-02|1992-05-11|1992-05-23|NONE|FOB|kages might are furiously. rut| +46698|140291|15296|1|47|62570.63|0.03|0.05|A|F|1992-05-27|1992-06-17|1992-06-13|DELIVER IN PERSON|MAIL|ress ideas acco| +46699|516044|3575|1|26|27560.52|0.00|0.03|N|O|1996-09-14|1996-07-14|1996-09-25|TAKE BACK RETURN|TRUCK|es after the blithely special packa| +46699|140128|15133|2|13|15185.56|0.10|0.00|N|O|1996-09-21|1996-08-24|1996-10-07|NONE|FOB|ains nag carefully. unusual foxes ar| +46700|506833|31854|1|15|27597.15|0.08|0.03|A|F|1992-07-19|1992-08-16|1992-07-26|NONE|SHIP|luffily regular theodolites w| +46700|327406|39913|2|48|68802.72|0.01|0.05|A|F|1992-09-05|1992-08-09|1992-09-09|DELIVER IN PERSON|RAIL|kages. fluffily unusual pinto bean| +46700|709653|22168|3|34|56529.08|0.06|0.00|A|F|1992-06-07|1992-06-28|1992-06-19|COLLECT COD|TRUCK| even deposits cajole carefully. slyly s| +46701|93420|30924|1|10|14134.20|0.04|0.04|N|O|1998-05-05|1998-06-19|1998-05-11|TAKE BACK RETURN|SHIP| dependencies wake. ironic, dogged accounts| +46701|103129|3130|2|8|9056.96|0.01|0.08|N|O|1998-08-01|1998-06-11|1998-08-20|COLLECT COD|AIR|ies detect furiously ironic d| +46701|283883|46389|3|26|48538.62|0.02|0.03|N|O|1998-07-01|1998-06-20|1998-07-29|NONE|SHIP|ic packages| +46701|214278|26783|4|14|16691.64|0.06|0.02|N|O|1998-06-16|1998-06-06|1998-07-10|NONE|REG AIR|s. special platelets acr| +46701|365894|3416|5|15|29398.20|0.02|0.07|N|O|1998-06-16|1998-05-25|1998-06-18|NONE|TRUCK| pending fo| +46701|571814|9348|6|9|16972.11|0.01|0.02|N|O|1998-06-27|1998-05-18|1998-06-30|NONE|TRUCK|s. thinly expre| +46702|217422|17423|1|24|32145.84|0.05|0.07|R|F|1992-05-07|1992-05-19|1992-05-20|TAKE BACK RETURN|TRUCK| the ironic, regular excuses. ironic, silen| +46702|204937|17442|2|21|38680.32|0.07|0.08|A|F|1992-07-23|1992-05-25|1992-08-02|COLLECT COD|SHIP|lyly. ironic pl| +46702|373137|23138|3|22|26622.64|0.03|0.00|R|F|1992-04-27|1992-05-22|1992-05-10|NONE|RAIL| after the packages. slyl| +46702|308992|21499|4|35|70034.30|0.10|0.04|A|F|1992-05-23|1992-07-02|1992-06-10|NONE|FOB|ts. express, | +46703|895438|45439|1|50|71669.50|0.02|0.02|A|F|1994-04-26|1994-03-19|1994-05-02|COLLECT COD|FOB|deposits. courts boo| +46703|617733|17734|2|8|13205.60|0.09|0.05|A|F|1994-04-15|1994-02-19|1994-04-29|COLLECT COD|SHIP|n accounts. sp| +46703|230731|5740|3|38|63145.36|0.01|0.05|R|F|1994-02-12|1994-01-29|1994-02-26|TAKE BACK RETURN|AIR| unusual excuses cajole | +46703|885193|35194|4|43|50660.45|0.09|0.07|A|F|1994-04-12|1994-03-02|1994-05-01|DELIVER IN PERSON|FOB|equests. blithely even pinto | +46703|423428|48445|5|50|67570.00|0.06|0.01|R|F|1993-12-31|1994-03-11|1994-01-12|COLLECT COD|RAIL| stealthy ins| +46728|447073|9582|1|11|11220.55|0.00|0.02|N|O|1997-01-31|1996-12-21|1997-02-13|DELIVER IN PERSON|SHIP|e alongside of the blithely regular th| +46728|947807|47808|2|23|42659.48|0.10|0.07|N|O|1996-12-01|1996-12-14|1996-12-08|DELIVER IN PERSON|RAIL|ackages snooze.| +46728|786794|49310|3|8|15046.08|0.01|0.05|N|O|1997-02-05|1996-12-27|1997-02-27|DELIVER IN PERSON|FOB|ke special ideas: requests haggle bli| +46728|645510|8023|4|5|7277.40|0.09|0.08|N|O|1997-01-22|1996-12-22|1997-01-26|TAKE BACK RETURN|REG AIR| packages sleep slyly pe| +46729|463296|13297|1|21|26444.67|0.03|0.05|N|O|1998-07-12|1998-08-14|1998-08-05|COLLECT COD|REG AIR|ounts accordin| +46729|605340|30365|2|26|32378.06|0.02|0.00|N|O|1998-07-16|1998-07-13|1998-08-12|DELIVER IN PERSON|TRUCK| express requests cajole | +46729|947605|35160|3|2|3305.12|0.05|0.00|N|O|1998-07-01|1998-07-17|1998-07-15|TAKE BACK RETURN|REG AIR|al requests. slyly ironic i| +46730|716119|3662|1|32|36322.56|0.00|0.01|A|F|1992-09-17|1992-10-15|1992-09-28|NONE|AIR|into beans run furio| +46730|811714|36747|2|21|34139.07|0.02|0.07|A|F|1992-09-09|1992-10-24|1992-09-27|DELIVER IN PERSON|TRUCK|al courts wi| +46730|471101|8629|3|39|41811.12|0.06|0.07|R|F|1992-09-19|1992-09-29|1992-10-04|DELIVER IN PERSON|TRUCK| unusual pin| +46730|793462|18493|4|42|65328.06|0.09|0.04|R|F|1992-09-03|1992-10-09|1992-09-04|DELIVER IN PERSON|RAIL| accounts. blithely pending pint| +46730|707628|32657|5|49|80143.91|0.05|0.04|R|F|1992-12-17|1992-10-03|1993-01-03|DELIVER IN PERSON|SHIP|ily dolphins. carefully regular pinto | +46730|102574|27579|6|15|23648.55|0.02|0.04|A|F|1992-11-24|1992-09-25|1992-11-30|COLLECT COD|RAIL|nding accounts haggle| +46730|958521|8522|7|37|58440.76|0.02|0.05|R|F|1992-10-22|1992-10-16|1992-11-20|TAKE BACK RETURN|REG AIR|ully regular requests impress carefully bl| +46731|862034|24552|1|50|49799.50|0.00|0.03|R|F|1993-01-18|1993-01-16|1993-02-03|COLLECT COD|AIR|eep ironic accounts. regular requests wake| +46731|200734|38247|2|39|63754.08|0.09|0.01|A|F|1993-01-16|1992-12-12|1993-01-21|TAKE BACK RETURN|REG AIR| integrate blithely fluffily ironic pack| +46731|721473|9016|3|28|41844.32|0.06|0.00|R|F|1992-11-27|1993-01-21|1992-12-10|NONE|TRUCK|e closely after th| +46732|583249|8272|1|34|45295.48|0.03|0.06|A|F|1993-12-06|1994-01-18|1993-12-16|TAKE BACK RETURN|MAIL|l pearls. furiously silent deposits | +46732|660898|48438|2|31|57624.66|0.01|0.08|R|F|1994-02-23|1994-01-27|1994-02-25|NONE|SHIP|ld theodolites. regular requests sleep. t| +46732|710915|48458|3|18|34665.84|0.07|0.01|A|F|1994-01-14|1994-01-11|1994-02-12|NONE|FOB|permanently r| +46732|341996|29515|4|15|30569.70|0.07|0.05|R|F|1993-11-18|1994-01-30|1993-11-26|COLLECT COD|MAIL|s. slyly speci| +46733|684128|21668|1|21|23353.89|0.00|0.08|A|F|1994-07-01|1994-07-09|1994-07-27|COLLECT COD|AIR| foxes. quickly final ideas cajole along t| +46733|126669|14176|2|43|72913.38|0.09|0.05|R|F|1994-09-12|1994-07-20|1994-09-14|TAKE BACK RETURN|MAIL| about the ironic depo| +46733|917595|30114|3|32|51601.60|0.02|0.01|R|F|1994-06-18|1994-07-14|1994-06-20|COLLECT COD|REG AIR|ual account| +46733|6298|43799|4|47|56601.63|0.10|0.06|A|F|1994-06-10|1994-08-04|1994-07-09|DELIVER IN PERSON|TRUCK|e regular excuses engage alongside of | +46733|848960|48961|5|21|40087.32|0.06|0.02|A|F|1994-06-02|1994-08-16|1994-06-26|DELIVER IN PERSON|MAIL|ly. requests about | +46733|467175|17176|6|38|43401.70|0.07|0.04|R|F|1994-07-28|1994-08-16|1994-08-22|NONE|TRUCK|bold requests. quickly ironic| +46733|810063|22580|7|2|1946.04|0.06|0.05|R|F|1994-07-19|1994-07-15|1994-07-29|DELIVER IN PERSON|RAIL|timents cajole quickly| +46734|717270|17271|1|9|11585.16|0.09|0.03|R|F|1994-09-03|1994-07-12|1994-09-14|TAKE BACK RETURN|RAIL|ts above the final, final deposits| +46734|146838|34345|2|8|15078.64|0.00|0.04|R|F|1994-09-10|1994-08-08|1994-09-13|COLLECT COD|TRUCK|bold deposit| +46734|892087|17122|3|9|9711.36|0.00|0.07|A|F|1994-05-30|1994-08-15|1994-06-07|TAKE BACK RETURN|MAIL|old requests detect b| +46734|297998|23009|4|37|73851.26|0.00|0.04|R|F|1994-07-31|1994-07-10|1994-08-30|DELIVER IN PERSON|AIR|xes haggle blithely after t| +46735|56838|6839|1|32|57434.56|0.07|0.03|R|F|1994-03-05|1994-04-12|1994-04-02|COLLECT COD|MAIL|ost furiously. dolphins| +46760|328028|28029|1|35|36960.35|0.09|0.08|N|O|1996-05-17|1996-06-17|1996-06-14|TAKE BACK RETURN|MAIL|nt instructions hinder. quickly unusu| +46760|164892|39899|2|25|48922.25|0.08|0.04|N|O|1996-04-19|1996-07-02|1996-05-16|NONE|SHIP|se furiously above the slyly even | +46760|335552|35553|3|13|20638.02|0.03|0.03|N|O|1996-06-23|1996-06-14|1996-07-16|TAKE BACK RETURN|FOB| theodolites alongside of the blithely iron| +46761|958886|8887|1|29|56400.36|0.07|0.04|N|O|1995-11-13|1995-09-10|1995-11-22|TAKE BACK RETURN|FOB|le furiously. even fo| +46761|980283|5322|2|2|2726.48|0.02|0.01|N|O|1995-08-06|1995-09-21|1995-08-18|DELIVER IN PERSON|FOB|press requests cajole blithely | +46762|52819|27822|1|26|46067.06|0.08|0.00|A|F|1992-03-08|1992-03-22|1992-04-07|DELIVER IN PERSON|FOB|ccounts. doggedly iron| +46762|717932|30447|2|28|54597.20|0.00|0.00|A|F|1992-04-27|1992-04-15|1992-05-15|COLLECT COD|SHIP|luffily regular deposits; pen| +46762|267568|5084|3|21|32246.55|0.04|0.03|A|F|1992-02-15|1992-03-18|1992-02-29|DELIVER IN PERSON|SHIP| cajole. accou| +46762|12931|25432|4|25|46098.25|0.00|0.07|R|F|1992-03-24|1992-03-25|1992-04-11|DELIVER IN PERSON|AIR|e blithely among the ideas. f| +46763|713525|38554|1|39|60001.11|0.01|0.03|R|F|1995-04-03|1995-02-10|1995-04-12|DELIVER IN PERSON|SHIP|g the carefully even d| +46763|210401|10402|2|46|60323.94|0.03|0.06|R|F|1995-03-07|1995-03-13|1995-03-19|NONE|TRUCK|outside the epitaphs.| +46763|193408|30918|3|15|22521.00|0.01|0.08|A|F|1995-04-22|1995-03-12|1995-05-07|DELIVER IN PERSON|FOB|egular, even theodolites. special asympt| +46763|606298|18811|4|30|36127.80|0.07|0.02|A|F|1995-02-11|1995-02-01|1995-03-13|TAKE BACK RETURN|RAIL| above the regular,| +46763|47973|35474|5|18|34577.46|0.05|0.07|A|F|1995-02-25|1995-03-30|1995-03-11|DELIVER IN PERSON|RAIL|uests affi| +46763|267107|29613|6|19|20407.71|0.02|0.00|R|F|1995-03-28|1995-03-05|1995-04-18|DELIVER IN PERSON|RAIL|ial accounts. slyly regular excuses wake | +46763|252671|27682|7|2|3247.32|0.04|0.05|R|F|1995-04-20|1995-03-31|1995-05-14|NONE|SHIP|s cajole quickly final pack| +46764|635623|48136|1|39|60785.01|0.10|0.05|N|O|1997-01-17|1996-12-19|1997-01-29|DELIVER IN PERSON|FOB|ing excuses ar| +46765|658876|8877|1|44|80732.96|0.03|0.01|N|O|1998-06-09|1998-07-12|1998-07-03|COLLECT COD|TRUCK|iously express requests cajole blithely abo| +46765|722058|22059|2|48|51840.96|0.01|0.07|N|O|1998-07-05|1998-07-29|1998-07-21|NONE|RAIL|oss the doggedly | +46765|617230|4767|3|7|8030.40|0.03|0.06|N|O|1998-06-15|1998-08-11|1998-07-13|DELIVER IN PERSON|TRUCK|es. quickly final deposits | +46765|773650|11196|4|39|67221.18|0.10|0.06|N|O|1998-09-05|1998-08-09|1998-09-23|COLLECT COD|REG AIR|es; quickly special accounts above th| +46765|729779|17322|5|35|63305.90|0.02|0.06|N|O|1998-08-02|1998-06-27|1998-08-13|NONE|FOB|r deposits us| +46765|379528|29529|6|26|41795.26|0.08|0.04|N|O|1998-09-07|1998-06-15|1998-09-09|NONE|REG AIR|into beans wake fluffily | +46766|756517|6518|1|11|17308.28|0.07|0.03|N|O|1997-01-16|1997-02-17|1997-02-12|TAKE BACK RETURN|RAIL|ly even courts. fluffily| +46766|777837|2868|2|2|3829.60|0.10|0.04|N|O|1997-01-30|1997-03-04|1997-02-22|DELIVER IN PERSON|AIR| special dependencies about the even reques| +46766|100061|37568|3|31|32892.86|0.07|0.02|N|O|1996-12-12|1997-03-04|1996-12-27|NONE|FOB|use quickly unusual p| +46766|720123|32638|4|3|3429.27|0.03|0.05|N|O|1996-12-15|1997-02-04|1997-01-13|COLLECT COD|AIR|s wake slyly above the finally regular a| +46767|172624|35128|1|19|32235.78|0.05|0.03|N|O|1997-07-24|1997-05-24|1997-08-13|DELIVER IN PERSON|RAIL|leep furiously blithel| +46767|281871|31872|2|49|90790.14|0.07|0.01|N|O|1997-07-01|1997-06-03|1997-07-18|DELIVER IN PERSON|REG AIR|s. requests | +46767|397570|10078|3|6|10005.36|0.03|0.00|N|O|1997-04-09|1997-05-06|1997-04-26|TAKE BACK RETURN|MAIL| asymptotes. foxes haggle ca| +46767|946315|33870|4|47|63979.69|0.01|0.02|N|O|1997-04-21|1997-05-01|1997-05-09|NONE|REG AIR| are against| +46767|714512|14513|5|15|22897.20|0.09|0.06|N|O|1997-07-14|1997-06-07|1997-08-01|COLLECT COD|FOB|ronic, silent requests wake according to | +46767|791237|41238|6|22|29220.40|0.00|0.04|N|O|1997-04-02|1997-06-28|1997-04-08|COLLECT COD|SHIP|leep furiously slyly| +46792|463426|25936|1|10|13894.00|0.07|0.07|N|O|1996-04-09|1996-04-02|1996-05-04|NONE|AIR|luffily regular dolphins| +46792|796364|46365|2|44|64254.52|0.10|0.03|N|O|1996-03-03|1996-03-09|1996-03-04|DELIVER IN PERSON|FOB|slyly. pending foxes shall h| +46792|477547|2566|3|28|42686.56|0.03|0.02|N|O|1996-02-16|1996-03-14|1996-02-27|COLLECT COD|FOB|ding instructions. blithely even ideas caj| +46792|119397|31900|4|13|18413.07|0.01|0.05|N|O|1996-04-27|1996-03-19|1996-05-03|DELIVER IN PERSON|MAIL|express, iron| +46792|700911|912|5|50|95594.00|0.08|0.00|N|O|1996-03-25|1996-02-21|1996-04-11|TAKE BACK RETURN|RAIL|ckly even gifts. b| +46792|196663|9167|6|19|33433.54|0.04|0.03|N|O|1996-04-05|1996-03-05|1996-05-02|COLLECT COD|MAIL|s are blithely about the care| +46792|314693|27200|7|12|20492.16|0.10|0.05|N|O|1996-01-16|1996-02-13|1996-01-29|DELIVER IN PERSON|RAIL|l theodolites nag carefu| +46793|44607|32108|1|42|65167.20|0.02|0.05|N|O|1995-11-27|1996-01-11|1995-12-19|COLLECT COD|TRUCK|es. deposits must have | +46793|704660|29689|2|17|28298.71|0.10|0.08|N|O|1996-02-21|1996-01-25|1996-02-29|NONE|FOB|even instructions. slyly ironic in| +46793|217101|17102|3|49|49886.41|0.04|0.08|N|O|1996-03-15|1996-01-20|1996-04-06|TAKE BACK RETURN|RAIL|hy dolphins would impress quickly acr| +46794|462665|12666|1|48|78126.72|0.07|0.04|N|O|1998-04-16|1998-05-22|1998-05-09|COLLECT COD|TRUCK| packages wake. request| +46794|999311|11831|2|23|32436.21|0.10|0.08|N|O|1998-03-27|1998-04-25|1998-04-07|DELIVER IN PERSON|MAIL|o beans. platelets haggle quickly even t| +46794|409398|46923|3|32|41835.84|0.02|0.08|N|O|1998-04-22|1998-04-23|1998-04-30|COLLECT COD|SHIP|pending deposits. fina| +46795|451743|39271|1|32|54231.04|0.05|0.04|N|O|1995-08-03|1995-10-01|1995-08-08|TAKE BACK RETURN|AIR|s wake carefully across th| +46795|428815|28816|2|20|34875.80|0.10|0.03|N|O|1995-09-17|1995-10-12|1995-10-12|NONE|MAIL|. dolphins acros| +46795|77989|27990|3|6|11801.88|0.09|0.03|N|O|1995-11-11|1995-10-15|1995-12-10|TAKE BACK RETURN|MAIL|sits detect slyl| +46795|760441|35472|4|31|46543.71|0.10|0.03|N|O|1995-08-19|1995-10-05|1995-09-14|COLLECT COD|FOB| lose quickly after the requests. e| +46796|913299|25818|1|2|2624.50|0.05|0.03|N|O|1998-05-21|1998-05-14|1998-06-20|DELIVER IN PERSON|TRUCK|final deposits are carefully. deposits hag| +46796|810617|35650|2|31|47354.67|0.10|0.00|N|O|1998-06-16|1998-05-07|1998-06-28|DELIVER IN PERSON|TRUCK|ironic packages | +46796|29272|41773|3|35|42044.45|0.07|0.04|N|O|1998-03-12|1998-04-23|1998-03-18|COLLECT COD|SHIP|ickly furiously unusual| +46796|964077|14078|4|34|38795.02|0.02|0.01|N|O|1998-06-05|1998-04-23|1998-06-09|TAKE BACK RETURN|AIR|eep slyly even de| +46796|238962|1467|5|5|9504.75|0.09|0.06|N|O|1998-06-01|1998-05-03|1998-06-04|TAKE BACK RETURN|REG AIR|slyly silent deposits use into the bold| +46797|785187|35188|1|36|45797.40|0.10|0.00|R|F|1992-10-27|1992-12-21|1992-11-18|COLLECT COD|REG AIR|ependencies. packages haggle sly| +46797|631380|31381|2|42|55076.70|0.06|0.04|A|F|1992-11-04|1992-12-17|1992-11-28|DELIVER IN PERSON|SHIP|s. evenly final depo| +46797|589721|27255|3|39|70617.30|0.05|0.06|R|F|1992-11-07|1992-12-02|1992-12-05|NONE|SHIP|y ironic deposits boost quickl| +46797|439182|14199|4|34|38119.44|0.01|0.04|A|F|1992-12-15|1992-12-16|1992-12-19|COLLECT COD|FOB|s deposits. carefully ironic package| +46797|325276|289|5|20|26025.20|0.07|0.05|A|F|1993-02-01|1993-01-02|1993-02-10|TAKE BACK RETURN|SHIP|o beans wake slyly ironic packages.| +46797|912498|25017|6|8|12083.60|0.03|0.00|R|F|1992-11-20|1992-12-05|1992-12-08|DELIVER IN PERSON|AIR|ests. regula| +46797|342116|29635|7|39|45165.90|0.02|0.03|A|F|1993-01-13|1992-11-29|1993-01-23|TAKE BACK RETURN|FOB|refully ironic accounts use | +46798|939665|39666|1|45|76707.90|0.10|0.01|A|F|1992-03-08|1992-03-06|1992-04-05|COLLECT COD|MAIL|its. blithely pendin| +46798|942243|29798|2|29|37270.80|0.07|0.05|R|F|1992-02-17|1992-03-27|1992-03-17|DELIVER IN PERSON|RAIL| carefully r| +46799|574064|36576|1|7|7966.28|0.10|0.08|A|F|1993-10-14|1993-09-18|1993-10-15|NONE|REG AIR| attainments. slyly regular deposits ab| +46799|283550|46056|2|35|53673.90|0.03|0.07|R|F|1993-10-27|1993-10-09|1993-11-01|NONE|FOB|odolites lose fluffily among the quickly r| +46799|614597|2134|3|21|31742.76|0.04|0.00|A|F|1993-10-13|1993-10-07|1993-10-26|COLLECT COD|MAIL| ideas. fluffily final reques| +46799|525393|25394|4|19|26949.03|0.08|0.05|R|F|1993-11-04|1993-10-08|1993-11-23|DELIVER IN PERSON|TRUCK|the excuses use slyly against the unusual| +46799|275442|12958|5|21|29766.03|0.05|0.01|R|F|1993-08-11|1993-09-25|1993-08-17|TAKE BACK RETURN|MAIL| regular notornis boost fluffily ironic | +46824|315671|40684|1|22|37106.52|0.07|0.00|R|F|1993-06-28|1993-06-21|1993-07-16|TAKE BACK RETURN|TRUCK|e across the furiously fi| +46825|53208|3209|1|11|12773.20|0.00|0.06|N|O|1998-07-11|1998-07-12|1998-07-17|TAKE BACK RETURN|RAIL|ly according to t| +46825|265942|3458|2|24|45790.32|0.06|0.05|N|O|1998-07-30|1998-07-07|1998-08-16|NONE|FOB|ve the carefull| +46825|673396|23397|3|39|53405.04|0.01|0.00|N|O|1998-07-17|1998-07-13|1998-07-18|COLLECT COD|FOB|ronic reque| +46825|761799|11800|4|18|33493.68|0.03|0.02|N|O|1998-07-05|1998-06-13|1998-08-01|DELIVER IN PERSON|RAIL|rts use quickly alon| +46825|543445|18466|5|42|62513.64|0.10|0.01|N|O|1998-07-02|1998-07-02|1998-07-17|NONE|FOB|ans haggle furiously special foxes. s| +46826|62127|24629|1|50|54456.00|0.10|0.03|R|F|1994-03-04|1994-02-16|1994-03-16|TAKE BACK RETURN|RAIL|ckages after the express sauternes r| +46826|164416|1926|2|28|41451.48|0.00|0.08|A|F|1994-02-26|1994-03-02|1994-03-14|TAKE BACK RETURN|AIR|decoys nag about the caref| +46827|737617|12646|1|37|61219.46|0.01|0.04|A|F|1992-11-05|1992-12-05|1992-11-15|COLLECT COD|TRUCK| theodolites wake slyly pending | +46827|123189|48194|2|5|6060.90|0.09|0.01|R|F|1993-01-07|1992-11-26|1993-01-14|TAKE BACK RETURN|REG AIR|ding packages sleep| +46828|474266|11794|1|33|40927.92|0.07|0.00|R|F|1993-09-05|1993-07-27|1993-09-13|TAKE BACK RETURN|REG AIR|ic asymptotes across the carefull| +46829|595514|45515|1|48|77255.52|0.09|0.04|N|O|1996-12-23|1996-12-23|1997-01-02|TAKE BACK RETURN|MAIL|quests. quickly pen| +46829|799740|12256|2|22|40473.62|0.10|0.02|N|O|1996-11-08|1996-11-21|1996-11-24|TAKE BACK RETURN|MAIL| deposits. blithely fi| +46829|222809|10322|3|13|22513.27|0.00|0.01|N|O|1996-12-20|1996-11-16|1996-12-21|DELIVER IN PERSON|MAIL|counts cajole carefully | +46829|746161|8676|4|25|30178.25|0.07|0.00|N|O|1996-10-16|1996-11-29|1996-11-13|DELIVER IN PERSON|SHIP|inal instructions. silently unusual reques| +46829|712803|346|5|23|41762.71|0.08|0.06|N|O|1996-11-27|1996-11-10|1996-11-29|TAKE BACK RETURN|REG AIR|e fluffily final de| +46829|68477|5981|6|7|10118.29|0.08|0.06|N|O|1996-12-20|1996-11-10|1996-12-23|NONE|RAIL|al asymptotes cajole carefull| +46829|890430|27982|7|28|39770.92|0.01|0.01|N|O|1996-12-08|1996-11-29|1996-12-29|TAKE BACK RETURN|AIR| wake unusual packag| +46830|442181|29706|1|9|10108.44|0.00|0.01|N|O|1997-06-27|1997-05-18|1997-07-01|NONE|SHIP|telets haggle blithely alongside of the i| +46830|729505|4534|2|44|67516.68|0.07|0.04|N|O|1997-06-21|1997-05-26|1997-07-14|TAKE BACK RETURN|TRUCK|sly even deposit| +46830|781779|19325|3|29|53961.46|0.01|0.01|N|O|1997-04-30|1997-05-08|1997-05-03|NONE|MAIL|ully ironic| +46830|343492|43493|4|39|59883.72|0.00|0.04|N|O|1997-05-24|1997-06-14|1997-06-12|NONE|AIR|ts cajole blithely even reque| +46830|53493|28496|5|34|49180.66|0.01|0.07|N|O|1997-04-08|1997-05-22|1997-05-02|COLLECT COD|MAIL|. furiously ironic packages wake fu| +46831|985890|35891|1|36|71130.60|0.00|0.01|N|O|1996-09-15|1996-09-24|1996-10-08|COLLECT COD|TRUCK| to the ironic excuses. quickly| +46831|847277|34826|2|42|51417.66|0.07|0.03|N|O|1996-09-18|1996-08-11|1996-10-04|DELIVER IN PERSON|SHIP|sual ideas haggle blithely alo| +46831|170444|20445|3|34|51490.96|0.00|0.04|N|O|1996-09-21|1996-09-12|1996-10-09|DELIVER IN PERSON|TRUCK|regular foxes. enticingly u| +46831|650151|37691|4|48|52853.76|0.04|0.03|N|O|1996-10-20|1996-09-22|1996-11-06|TAKE BACK RETURN|MAIL|y about the express| +46831|71738|21739|5|21|35904.33|0.01|0.06|N|O|1996-09-10|1996-08-09|1996-10-05|TAKE BACK RETURN|AIR|uriously ironic| +46831|699910|37450|6|4|7639.52|0.08|0.07|N|O|1996-09-10|1996-09-18|1996-10-07|TAKE BACK RETURN|REG AIR|ecial platelets. regular packages ab| +46831|380887|5902|7|6|11807.22|0.06|0.07|N|O|1996-07-09|1996-08-25|1996-07-10|TAKE BACK RETURN|FOB|ely final accoun| +46856|565400|40423|1|50|73269.00|0.01|0.05|N|F|1995-06-02|1995-06-09|1995-07-01|COLLECT COD|SHIP| unusual pinto be| +46857|376964|26965|1|14|28573.30|0.06|0.05|R|F|1995-03-18|1995-03-16|1995-04-02|TAKE BACK RETURN|AIR|ts against th| +46857|632982|45495|2|30|57448.50|0.01|0.02|R|F|1995-04-06|1995-03-12|1995-04-22|NONE|SHIP|fully regula| +46858|286044|36045|1|4|4120.12|0.06|0.02|R|F|1994-01-05|1993-10-18|1994-02-01|NONE|TRUCK| quickly outside t| +46858|529367|16898|2|33|46079.22|0.00|0.04|R|F|1993-11-24|1993-11-17|1993-12-22|DELIVER IN PERSON|REG AIR|riously according to | +46858|67430|42433|3|40|55897.20|0.07|0.02|R|F|1993-12-21|1993-11-13|1993-12-27|COLLECT COD|RAIL|e furiously special foxes ca| +46858|293699|6205|4|2|3385.36|0.04|0.06|R|F|1994-01-06|1993-11-18|1994-01-12|TAKE BACK RETURN|REG AIR|nal packages. packag| +46859|814566|27083|1|11|16285.72|0.10|0.08|A|F|1995-04-18|1995-05-21|1995-05-13|COLLECT COD|AIR|thely bold ideas| +46859|408544|8545|2|42|61005.84|0.00|0.06|N|O|1995-06-24|1995-04-23|1995-06-26|TAKE BACK RETURN|REG AIR|sual asymptotes are. ca| +46859|398836|36358|3|20|38696.40|0.05|0.03|A|F|1995-06-02|1995-06-12|1995-06-06|NONE|REG AIR|furiously even accounts ha| +46860|73357|10861|1|23|30598.05|0.08|0.08|N|O|1996-02-19|1996-01-12|1996-02-23|NONE|MAIL|fully. slyly final foxes haggle | +46860|897193|34745|2|6|7140.90|0.07|0.00|N|O|1995-12-07|1996-01-17|1996-01-02|TAKE BACK RETURN|FOB|telets. packages cajole | +46860|112321|12322|3|3|3999.96|0.03|0.05|N|O|1996-02-07|1995-12-25|1996-02-09|NONE|FOB|posits detect. slyly speci| +46860|775270|25271|4|5|6726.20|0.05|0.07|N|O|1995-12-28|1995-12-10|1996-01-19|TAKE BACK RETURN|RAIL|gular, bold| +46861|951960|26999|1|2|4023.84|0.03|0.05|R|F|1992-08-03|1992-07-27|1992-08-13|NONE|MAIL|ys pending accounts wa| +46861|587497|9|2|49|77639.03|0.08|0.08|A|F|1992-06-06|1992-06-01|1992-06-12|DELIVER IN PERSON|RAIL|cial, regular excus| +46861|60497|10498|3|40|58299.60|0.08|0.04|A|F|1992-07-26|1992-07-21|1992-08-21|TAKE BACK RETURN|TRUCK|ely after the ironic dolp| +46861|769869|44900|4|28|54287.24|0.03|0.00|A|F|1992-08-11|1992-07-02|1992-09-03|DELIVER IN PERSON|REG AIR|blithely even requests eat around| +46861|182932|32933|5|34|68507.62|0.01|0.03|R|F|1992-05-24|1992-06-29|1992-06-11|NONE|SHIP|lar packages sleep fluffily| +46861|522601|22602|6|1|1623.58|0.10|0.00|R|F|1992-05-14|1992-06-02|1992-05-17|NONE|RAIL|oss the always express| +46861|343155|30674|7|29|34746.06|0.08|0.02|A|F|1992-08-22|1992-07-17|1992-09-16|TAKE BACK RETURN|REG AIR|s wake slyly furiou| +46862|401054|13563|1|20|19100.60|0.04|0.03|A|F|1994-09-01|1994-09-27|1994-09-15|NONE|MAIL|rding to the furiously final theodolit| +46862|506756|6757|2|48|84611.04|0.08|0.00|A|F|1994-11-08|1994-10-19|1994-11-17|COLLECT COD|SHIP|iously regular accounts engage about the ac| +46862|32017|44518|3|13|12337.13|0.04|0.08|A|F|1994-08-27|1994-10-07|1994-09-09|COLLECT COD|AIR| theodolites along| +46862|101111|13614|4|4|4448.44|0.05|0.04|A|F|1994-09-27|1994-09-25|1994-10-01|NONE|RAIL|s. slyly regular theodolites boost | +46863|607275|19788|1|42|49654.08|0.04|0.04|A|F|1993-03-28|1993-04-02|1993-03-30|DELIVER IN PERSON|RAIL|ccounts. furiously iro| +46863|456723|6724|2|32|53750.40|0.01|0.00|A|F|1993-03-16|1993-04-14|1993-04-12|NONE|AIR|yly according to the fluffily regular| +46863|130652|5657|3|18|30287.70|0.00|0.06|A|F|1993-03-01|1993-04-04|1993-03-12|TAKE BACK RETURN|FOB|furiously even theodol| +46888|409234|21743|1|34|38869.14|0.06|0.01|N|O|1996-04-21|1996-04-10|1996-04-22|TAKE BACK RETURN|AIR| blithely even dependencies sleep slyly q| +46888|979976|17534|2|1|2055.93|0.06|0.08|N|O|1996-02-13|1996-04-10|1996-02-22|DELIVER IN PERSON|TRUCK|press warhorses use furiously pending depos| +46888|448951|48952|3|49|93096.57|0.05|0.05|N|O|1996-05-14|1996-03-26|1996-06-12|COLLECT COD|SHIP|c ideas. furio| +46888|515937|15938|4|14|27340.74|0.06|0.06|N|O|1996-03-26|1996-03-16|1996-04-21|COLLECT COD|MAIL|fluffily regular | +46889|591438|41439|1|47|71882.27|0.02|0.08|N|O|1996-03-02|1996-04-15|1996-03-29|DELIVER IN PERSON|REG AIR|ilent depende| +46889|286890|11901|2|35|65690.80|0.04|0.00|N|O|1996-02-16|1996-03-23|1996-03-10|NONE|AIR|thin depths. blith| +46889|745474|20503|3|4|6077.76|0.04|0.00|N|O|1996-01-31|1996-04-21|1996-02-04|DELIVER IN PERSON|AIR|st the regular foxes; perm| +46889|172712|35216|4|1|1784.71|0.01|0.04|N|O|1996-02-01|1996-03-14|1996-02-24|COLLECT COD|MAIL|c pinto beans. regular requests haggle | +46889|758331|8332|5|42|58350.60|0.02|0.08|N|O|1996-03-01|1996-03-28|1996-03-22|NONE|SHIP|y. bold dep| +46889|264379|14380|6|21|28210.56|0.08|0.04|N|O|1996-04-06|1996-03-22|1996-05-05|NONE|FOB|ffily carefully spe| +46890|979199|16757|1|2|2556.30|0.00|0.07|N|O|1995-11-04|1995-12-02|1995-11-10|NONE|MAIL| the ironic, regu| +46890|396109|21124|2|9|10845.81|0.09|0.01|N|O|1995-10-26|1995-10-28|1995-11-10|NONE|MAIL| breach befor| +46890|398259|35781|3|1|1357.24|0.07|0.02|N|O|1995-10-11|1995-10-28|1995-11-02|TAKE BACK RETURN|FOB|. always regular packages bo| +46890|524364|49385|4|32|44426.88|0.00|0.01|N|O|1995-12-27|1995-10-16|1996-01-09|DELIVER IN PERSON|TRUCK|packages are| +46890|982930|32931|5|31|62399.59|0.07|0.08|N|O|1995-11-29|1995-10-23|1995-12-22|NONE|RAIL|nstructions. blithe| +46890|103101|40608|6|27|29810.70|0.08|0.06|N|O|1995-11-02|1995-10-31|1995-11-20|NONE|MAIL|ts upon the requests integrate according t| +46890|803602|41151|7|16|24088.96|0.08|0.02|N|O|1995-09-06|1995-11-06|1995-09-25|TAKE BACK RETURN|AIR|uses. bravely fina| +46891|134833|34834|1|15|28017.45|0.02|0.06|N|O|1995-06-18|1995-07-15|1995-07-17|NONE|FOB| the carefully regular dependencies. slyly | +46891|134087|9092|2|19|21300.52|0.00|0.01|N|O|1995-09-03|1995-06-22|1995-09-23|COLLECT COD|FOB|lent ideas wake blith| +46892|926455|1492|1|4|5925.64|0.04|0.06|A|F|1992-07-13|1992-07-21|1992-07-31|NONE|REG AIR|sits. furiously final packages are blithely| +46892|922946|10501|2|8|15751.20|0.00|0.02|R|F|1992-09-18|1992-08-07|1992-10-16|DELIVER IN PERSON|RAIL|l pinto beans sleep slyly ironic accounts| +46893|773428|10974|1|12|18016.68|0.10|0.01|N|O|1998-06-25|1998-08-15|1998-07-17|DELIVER IN PERSON|AIR| bold deposits. furiousl| +46893|999175|24214|2|13|16563.69|0.09|0.02|N|O|1998-09-15|1998-08-25|1998-10-03|TAKE BACK RETURN|AIR| the express foxes| +46893|130516|18023|3|14|21651.14|0.03|0.03|N|O|1998-09-03|1998-08-17|1998-09-05|COLLECT COD|TRUCK|sleep carefully. slyly express pack| +46894|915868|28387|1|41|77236.62|0.05|0.00|N|O|1997-05-20|1997-04-10|1997-06-06|DELIVER IN PERSON|REG AIR|osits affix | +46894|977465|27466|2|9|13881.78|0.07|0.06|N|O|1997-04-11|1997-04-01|1997-05-04|NONE|FOB|ly pending deposits use regularly speci| +46895|423818|23819|1|41|71413.39|0.10|0.03|N|O|1998-10-20|1998-08-15|1998-11-16|COLLECT COD|AIR|s kindle. pinto beans haggle| +46895|103473|40980|2|31|45770.57|0.01|0.05|N|O|1998-09-01|1998-09-06|1998-09-09|NONE|FOB|s nag: fluffily e| +46895|70380|20381|3|20|27007.60|0.09|0.06|N|O|1998-09-23|1998-09-11|1998-10-09|DELIVER IN PERSON|AIR|l dolphins. packages haggle furio| +46895|861782|24300|4|19|33131.06|0.04|0.01|N|O|1998-06-24|1998-08-08|1998-07-23|NONE|AIR| was furiousl| +46920|662466|6|1|42|59994.06|0.02|0.02|A|F|1993-10-12|1993-11-06|1993-11-11|DELIVER IN PERSON|MAIL|s haggle above the unusual packages. b| +46920|65337|15338|2|46|59907.18|0.10|0.04|R|F|1994-01-26|1993-12-12|1994-02-22|NONE|AIR|ts. furiously regular accounts are| +46920|111336|48843|3|1|1347.33|0.09|0.04|R|F|1993-12-27|1993-12-01|1994-01-04|TAKE BACK RETURN|SHIP| express acco| +46920|220315|7828|4|1|1235.30|0.02|0.04|A|F|1993-11-04|1993-11-14|1993-11-06|NONE|MAIL|the furiously special ideas b| +46920|826742|26743|5|40|66748.00|0.05|0.01|A|F|1993-11-05|1993-11-05|1993-11-29|NONE|RAIL|dolites. express i| +46920|37320|12321|6|37|46520.84|0.10|0.03|A|F|1993-11-22|1993-11-06|1993-12-14|COLLECT COD|REG AIR|ajole. pending asymptotes | +46921|602774|40311|1|50|83837.00|0.10|0.02|R|F|1993-05-11|1993-03-22|1993-05-23|TAKE BACK RETURN|FOB|quick instructio| +46921|818801|31318|2|44|75669.44|0.08|0.06|A|F|1993-05-12|1993-03-23|1993-06-01|DELIVER IN PERSON|RAIL|efully ironic excus| +46922|856963|19481|1|23|44158.16|0.02|0.01|A|F|1993-11-26|1993-12-01|1993-12-20|COLLECT COD|SHIP| deposits cajole slyly even requests.| +46922|960396|22916|2|18|26214.30|0.04|0.05|R|F|1994-01-11|1993-11-24|1994-02-03|NONE|AIR|nding requests integr| +46923|532961|32962|1|33|65800.02|0.03|0.06|R|F|1992-04-15|1992-05-27|1992-04-22|TAKE BACK RETURN|SHIP|ar foxes. slyly reg| +46923|475387|406|2|26|35421.36|0.10|0.00|A|F|1992-06-07|1992-05-07|1992-06-18|COLLECT COD|SHIP|posits cajole slyly along the final plate| +46923|816087|41120|3|24|24072.96|0.09|0.02|R|F|1992-07-09|1992-05-11|1992-07-30|NONE|FOB|y even requests are slyly above the blit| +46923|963745|1303|4|5|9043.50|0.05|0.04|R|F|1992-05-08|1992-04-30|1992-05-23|COLLECT COD|FOB|ly idle deposits sleep according to | +46923|660788|35815|5|16|27980.00|0.06|0.00|R|F|1992-04-26|1992-06-08|1992-05-19|TAKE BACK RETURN|AIR|unts haggle. final, silent requests wa| +46924|31510|6511|1|7|10090.57|0.05|0.05|R|F|1993-11-08|1993-10-31|1993-11-19|DELIVER IN PERSON|RAIL|ronic accounts. | +46924|577819|40331|2|47|89149.13|0.00|0.06|A|F|1993-08-29|1993-10-24|1993-09-10|NONE|TRUCK|osits alongside of the ideas int| +46925|285453|10464|1|2|2876.88|0.04|0.07|A|F|1992-04-07|1992-05-17|1992-04-25|NONE|RAIL|: slyly express requests a| +46926|761126|48672|1|45|53419.05|0.03|0.04|N|O|1996-10-03|1996-08-25|1996-10-15|COLLECT COD|SHIP|unusual accounts | +46926|229215|41720|2|38|43479.60|0.02|0.01|N|O|1996-08-12|1996-09-13|1996-08-26|NONE|FOB|ccounts cajol| +46926|411386|23895|3|14|18163.04|0.04|0.04|N|O|1996-11-02|1996-08-26|1996-11-10|COLLECT COD|AIR|usy asymptotes run furious| +46926|154472|41982|4|5|7632.35|0.10|0.05|N|O|1996-08-07|1996-09-07|1996-08-26|COLLECT COD|FOB|ons. fluffily bo| +46927|479963|4982|1|20|38858.80|0.07|0.04|R|F|1992-07-24|1992-08-31|1992-08-04|NONE|MAIL|de of the unusual, pending packa| +46927|723861|36376|2|1|1884.83|0.05|0.08|A|F|1992-10-01|1992-09-05|1992-10-20|NONE|TRUCK|ecial instructions boost slyly about the| +46927|923381|10936|3|47|66003.98|0.05|0.06|R|F|1992-09-22|1992-09-25|1992-09-29|DELIVER IN PERSON|AIR|ar courts. carefully final co| +46927|260668|23174|4|32|52116.80|0.05|0.07|R|F|1992-10-13|1992-09-28|1992-11-02|DELIVER IN PERSON|AIR|uests arou| +46927|41784|4285|5|30|51773.40|0.09|0.05|R|F|1992-09-15|1992-10-10|1992-10-07|COLLECT COD|SHIP|yly. regular foxes | +46927|247827|47828|6|10|17748.10|0.01|0.07|A|F|1992-09-21|1992-09-22|1992-10-12|TAKE BACK RETURN|AIR|ts. ironic, unusual deposits are slyly fray| +46927|215759|3272|7|3|5024.22|0.09|0.03|R|F|1992-07-24|1992-09-12|1992-08-05|TAKE BACK RETURN|AIR| grouches. even, un| +46952|260205|47721|1|15|17477.85|0.08|0.03|N|O|1997-03-02|1997-03-03|1997-03-28|TAKE BACK RETURN|FOB|. special pinto beans boost alo| +46952|256784|44300|2|19|33074.63|0.02|0.03|N|O|1997-02-23|1997-01-30|1997-03-07|NONE|SHIP|al asymptotes are | +46953|84924|34925|1|25|47723.00|0.07|0.06|N|O|1997-07-09|1997-06-23|1997-07-24|COLLECT COD|MAIL|ar deposits haggle ironic courts. final,| +46953|314904|14905|2|42|80593.38|0.06|0.01|N|O|1997-06-10|1997-07-17|1997-06-26|COLLECT COD|TRUCK| beans boost carefully blithe idea| +46953|581954|44466|3|3|6107.79|0.06|0.08|N|O|1997-07-10|1997-06-28|1997-07-23|NONE|TRUCK|unts. regular, pending asymptot| +46953|891070|3588|4|24|25464.72|0.03|0.05|N|O|1997-07-08|1997-07-29|1997-08-06|DELIVER IN PERSON|REG AIR|furiously ev| +46953|199416|36926|5|18|27277.38|0.05|0.03|N|O|1997-07-24|1997-07-02|1997-08-03|TAKE BACK RETURN|RAIL|gle fluffily blithely express requ| +46953|577779|27780|6|7|12997.25|0.03|0.05|N|O|1997-07-10|1997-07-25|1997-08-07|COLLECT COD|TRUCK|ickly deposits. bravely | +46954|528718|28719|1|8|13973.52|0.10|0.01|N|O|1997-11-13|1997-11-03|1997-12-03|NONE|AIR|silent deposits nag carefully spe| +46954|162574|25078|2|2|3273.14|0.01|0.01|N|O|1997-11-25|1997-11-29|1997-12-13|DELIVER IN PERSON|REG AIR|dependencies wake furiously furiously un| +46954|379666|4681|3|5|8728.25|0.02|0.05|N|O|1997-10-20|1997-11-11|1997-11-12|TAKE BACK RETURN|MAIL|ke. even reque| +46954|30228|42729|4|27|31271.94|0.02|0.07|N|O|1997-12-08|1997-10-21|1997-12-29|NONE|TRUCK|xes. carefu| +46954|35120|10121|5|40|42204.80|0.08|0.02|N|O|1997-11-22|1997-11-29|1997-12-16|NONE|REG AIR|n the slyly regular | +46955|886631|24183|1|32|51762.88|0.04|0.08|R|F|1994-10-14|1994-09-30|1994-10-27|NONE|REG AIR|kly even ideas are according to| +46955|603317|28342|2|14|17083.92|0.10|0.01|R|F|1994-11-01|1994-10-03|1994-11-11|NONE|AIR|idly. regular accounts unwind quick| +46956|916134|3689|1|32|36802.88|0.02|0.04|N|O|1996-10-18|1996-10-08|1996-11-05|NONE|SHIP|lithely special packages hang slyly. q| +46956|450055|25074|2|16|16080.48|0.03|0.02|N|O|1996-09-20|1996-10-20|1996-10-05|NONE|MAIL|g theodolites impress. express wartho| +46957|339959|2466|1|9|17990.46|0.06|0.05|A|F|1993-03-27|1993-02-03|1993-04-06|NONE|AIR|round the carefull| +46957|675275|12815|2|22|27505.28|0.10|0.05|A|F|1993-01-07|1993-02-15|1993-01-29|COLLECT COD|MAIL| regular pinto beans. dugo| +46957|342498|17511|3|31|47754.88|0.06|0.00|A|F|1993-02-15|1993-02-01|1993-03-14|NONE|RAIL|r excuses. slyly bold pinto| +46957|353876|16384|4|29|55965.94|0.09|0.06|A|F|1993-01-14|1993-02-11|1993-02-03|DELIVER IN PERSON|AIR|uickly regular depende| +46957|578044|3067|5|47|52734.94|0.00|0.02|R|F|1993-02-18|1993-02-16|1993-02-20|DELIVER IN PERSON|TRUCK|inal excuses. final deposits c| +46958|828474|28475|1|12|16829.16|0.07|0.02|N|O|1997-02-23|1997-03-28|1997-03-15|NONE|REG AIR|ges according to the ironi| +46958|160147|47657|2|5|6035.70|0.05|0.08|N|O|1997-06-22|1997-05-04|1997-07-01|TAKE BACK RETURN|FOB| against the fina| +46958|588723|26257|3|21|38045.70|0.06|0.00|N|O|1997-06-12|1997-04-08|1997-06-26|DELIVER IN PERSON|TRUCK|old deposits pr| +46959|234999|35000|1|38|73491.24|0.10|0.07|R|F|1992-09-15|1992-10-28|1992-09-21|COLLECT COD|MAIL|omise carefully slyly ironic forges. ca| +46959|628142|40655|2|10|10701.10|0.07|0.01|R|F|1992-11-03|1992-11-21|1992-11-19|COLLECT COD|TRUCK|e alongside of | +46959|176686|39190|3|46|81083.28|0.07|0.01|R|F|1992-11-17|1992-11-13|1992-11-23|COLLECT COD|TRUCK|into beans. pending deposits nag furiously.| +46984|503780|3781|1|45|80269.20|0.03|0.08|A|F|1992-09-17|1992-10-15|1992-10-04|TAKE BACK RETURN|REG AIR|es wake. boldly| +46984|24851|24852|2|2|3551.70|0.02|0.08|R|F|1992-09-24|1992-09-02|1992-09-28|DELIVER IN PERSON|RAIL|nstructions hinder blithely eve| +46984|669974|32488|3|48|93309.12|0.10|0.06|A|F|1992-10-07|1992-09-13|1992-11-02|COLLECT COD|REG AIR|jole carefully. quickly unusual pearls ar| +46984|244441|6946|4|16|22166.88|0.02|0.00|R|F|1992-08-06|1992-09-26|1992-09-04|COLLECT COD|TRUCK|to beans haggle fluffily sly| +46984|319268|44281|5|7|9010.75|0.04|0.04|R|F|1992-08-31|1992-08-28|1992-09-26|DELIVER IN PERSON|FOB|carefully special| +46984|928761|16316|6|9|16107.48|0.05|0.08|R|F|1992-09-17|1992-09-22|1992-10-02|COLLECT COD|TRUCK|eposits sleep q| +46985|400119|120|1|50|50954.50|0.07|0.03|A|F|1992-11-18|1992-10-21|1992-11-22|NONE|AIR|und the slyly express asympto| +46985|786233|48749|2|50|65960.00|0.04|0.08|R|F|1992-09-21|1992-11-30|1992-10-04|NONE|RAIL| use blithely slyly ironic p| +46985|206948|44461|3|37|68632.41|0.03|0.06|A|F|1992-11-30|1992-10-26|1992-12-11|NONE|REG AIR|xpress requests wake. fu| +46985|159025|46535|4|43|46612.86|0.08|0.02|A|F|1992-09-28|1992-10-31|1992-10-25|COLLECT COD|FOB|sleep final, unusu| +46986|921425|8980|1|4|5785.52|0.10|0.07|N|O|1996-10-18|1996-10-22|1996-11-17|TAKE BACK RETURN|RAIL|quickly silent theodolites are. | +46986|375673|13195|2|26|45465.16|0.07|0.00|N|O|1996-11-23|1996-10-26|1996-11-30|COLLECT COD|TRUCK|tect after the bli| +46986|932808|20363|3|21|38655.96|0.08|0.00|N|O|1996-09-02|1996-10-24|1996-09-17|NONE|AIR|ilently careful platelets among| +46987|759129|9130|1|23|27326.07|0.00|0.08|A|F|1993-03-12|1993-03-08|1993-04-11|NONE|SHIP|arefully regular in| +46987|678666|28667|2|9|14801.67|0.01|0.02|R|F|1993-05-19|1993-04-11|1993-05-28|NONE|TRUCK|structions beli| +46987|328906|3919|3|2|3869.78|0.04|0.07|A|F|1993-02-25|1993-03-25|1993-03-12|DELIVER IN PERSON|FOB| dolphins. bold theodolites w| +46987|922967|48004|4|40|79596.80|0.06|0.07|A|F|1993-03-18|1993-03-23|1993-03-26|DELIVER IN PERSON|AIR|usly ironic requests. regular the| +46987|301124|26137|5|2|2250.22|0.00|0.04|R|F|1993-01-30|1993-03-10|1993-02-23|NONE|TRUCK|s. blithely bold pinto| +46987|984442|22000|6|47|71740.80|0.07|0.08|A|F|1993-03-09|1993-03-25|1993-03-22|DELIVER IN PERSON|RAIL|r pinto beans. carefully ironic pac| +46987|504302|41833|7|50|65314.00|0.06|0.02|R|F|1993-04-22|1993-04-21|1993-05-14|NONE|FOB|rding to the quickly pendin| +46988|796497|34043|1|40|63738.40|0.02|0.02|N|O|1998-02-12|1998-04-01|1998-02-16|NONE|AIR|s. final foxes wake. s| +46988|723707|48736|2|8|13845.36|0.00|0.07|N|O|1998-04-18|1998-04-01|1998-05-01|DELIVER IN PERSON|MAIL| bold, ironi| +46988|333057|45564|3|11|11990.44|0.05|0.03|N|O|1998-05-03|1998-03-23|1998-05-08|TAKE BACK RETURN|RAIL|symptotes boost furiously. special,| +46988|672775|22776|4|17|29711.58|0.07|0.03|N|O|1998-04-14|1998-03-04|1998-04-29|DELIVER IN PERSON|TRUCK|e ironic packages wake furiously spec| +46988|325875|888|5|39|74133.54|0.09|0.02|N|O|1998-02-27|1998-03-23|1998-03-01|COLLECT COD|SHIP|hely final pinto beans wake bl| +46989|462469|12470|1|15|21471.60|0.00|0.07|A|F|1994-07-09|1994-05-29|1994-07-28|DELIVER IN PERSON|TRUCK|yly express asy| +46989|711978|37007|2|12|23879.28|0.00|0.02|A|F|1994-05-01|1994-06-08|1994-05-22|COLLECT COD|TRUCK|affix quickly blithely pending req| +46989|197631|35141|3|12|20743.56|0.09|0.04|A|F|1994-06-24|1994-05-31|1994-06-28|TAKE BACK RETURN|AIR|ajole above the quickly fluffy pint| +46989|574672|49695|4|44|76852.60|0.01|0.00|A|F|1994-07-29|1994-05-15|1994-08-04|DELIVER IN PERSON|AIR|ly express excuses wake bl| +46990|160460|47970|1|17|25847.82|0.01|0.05|R|F|1994-05-09|1994-04-21|1994-05-18|DELIVER IN PERSON|RAIL|ully except the unusual, unusu| +46990|845194|7711|2|44|50122.60|0.06|0.02|A|F|1994-07-02|1994-05-30|1994-07-28|DELIVER IN PERSON|MAIL|he accounts: slyly regular request| +46990|170757|45764|3|29|53004.75|0.00|0.01|R|F|1994-06-18|1994-04-16|1994-07-11|COLLECT COD|TRUCK|blithely. fu| +46991|485998|48508|1|37|73406.89|0.00|0.01|N|O|1996-10-29|1996-09-19|1996-11-09|NONE|TRUCK|equests across the | +46991|159664|47174|2|8|13789.28|0.01|0.06|N|O|1996-12-15|1996-10-16|1996-12-25|COLLECT COD|TRUCK|elets must detect carefully. sly| +46991|467965|42984|3|16|30927.04|0.06|0.07|N|O|1996-12-12|1996-10-01|1996-12-16|NONE|TRUCK|rbits. pending,| +46991|74835|49838|4|30|54294.90|0.03|0.06|N|O|1996-11-09|1996-09-19|1996-11-28|NONE|MAIL|ideas boost furio| +47016|898878|36430|1|16|30029.28|0.01|0.03|N|O|1996-12-23|1997-01-13|1996-12-31|TAKE BACK RETURN|FOB|le furiously: final, unusual deposits s| +47017|396174|46175|1|27|34294.32|0.04|0.06|R|F|1994-05-05|1994-04-01|1994-05-28|TAKE BACK RETURN|AIR|ly final r| +47017|484387|21915|2|34|46626.24|0.07|0.00|A|F|1994-04-26|1994-04-02|1994-05-12|NONE|SHIP|onic packages wake furiously f| +47018|891836|16871|1|35|63972.65|0.02|0.03|R|F|1992-04-28|1992-04-05|1992-05-23|DELIVER IN PERSON|RAIL|ts are quickly furiously pending| +47018|76846|1849|2|38|69267.92|0.02|0.07|A|F|1992-05-16|1992-03-11|1992-05-21|DELIVER IN PERSON|RAIL|even, ironic instr| +47019|771301|33817|1|46|63124.42|0.07|0.07|R|F|1993-06-09|1993-04-24|1993-07-02|DELIVER IN PERSON|MAIL|cross the quickly special theodoli| +47019|251608|26619|2|24|37430.16|0.01|0.06|A|F|1993-05-10|1993-05-29|1993-05-14|COLLECT COD|SHIP|ickly. ironic ideas a| +47019|760149|35180|3|25|30227.75|0.06|0.04|A|F|1993-04-27|1993-05-23|1993-05-26|NONE|TRUCK|regular pinto beans cajole| +47020|867739|30257|1|7|11946.83|0.01|0.02|A|F|1995-04-10|1995-03-25|1995-04-27|COLLECT COD|RAIL|g furiously furiously specia| +47020|73992|48995|2|49|96333.51|0.05|0.02|R|F|1995-04-09|1995-04-29|1995-04-21|COLLECT COD|FOB|eep. thin packages | +47020|572361|47384|3|21|30100.14|0.09|0.07|A|F|1995-03-28|1995-03-20|1995-04-05|COLLECT COD|RAIL|efully regul| +47021|543215|30746|1|4|5032.76|0.09|0.03|N|O|1996-05-25|1996-06-17|1996-06-02|NONE|SHIP|. slyly daring | +47021|808477|8478|2|23|31864.89|0.06|0.07|N|O|1996-06-30|1996-05-19|1996-07-18|NONE|RAIL|final deposits. special | +47022|75252|25253|1|5|6136.25|0.06|0.00|N|O|1996-09-11|1996-10-23|1996-09-17|DELIVER IN PERSON|SHIP|blate across| +47022|759813|34844|2|8|14982.24|0.05|0.05|N|O|1996-10-12|1996-10-23|1996-10-16|NONE|TRUCK|fily along the s| +47022|176956|1963|3|24|48790.80|0.03|0.07|N|O|1996-10-08|1996-11-11|1996-10-27|NONE|TRUCK| against the furiously reg| +47022|95726|8228|4|30|51651.60|0.04|0.01|N|O|1996-12-08|1996-11-06|1996-12-20|COLLECT COD|RAIL|s sleep around the pending | +47022|860992|36027|5|2|3905.90|0.05|0.03|N|O|1996-10-01|1996-12-03|1996-10-02|TAKE BACK RETURN|FOB|en packages. unusual pin| +47022|691392|3906|6|39|53951.04|0.01|0.04|N|O|1996-12-10|1996-10-24|1997-01-06|TAKE BACK RETURN|FOB| beans use blithely express asymptotes. | +47023|428957|28958|1|50|94296.50|0.02|0.05|N|O|1997-07-22|1997-06-30|1997-08-18|COLLECT COD|FOB| foxes wake blithely carefully regular pack| +47023|476435|1454|2|26|36696.66|0.10|0.08|N|O|1997-08-04|1997-06-19|1997-08-18|TAKE BACK RETURN|MAIL| excuses. b| +47023|436382|36383|3|30|39550.80|0.07|0.07|N|O|1997-08-05|1997-07-04|1997-08-13|NONE|AIR| ironic requests could have| +47023|271509|21510|4|38|56258.62|0.06|0.08|N|O|1997-09-03|1997-07-25|1997-09-26|DELIVER IN PERSON|REG AIR|e. quickly| +47023|238783|26296|5|28|48209.56|0.05|0.07|N|O|1997-05-23|1997-07-18|1997-05-27|DELIVER IN PERSON|REG AIR|e quickly. bo| +47023|223567|23568|6|33|49188.15|0.10|0.00|N|O|1997-08-25|1997-07-22|1997-09-08|DELIVER IN PERSON|AIR|uctions wake slyly after the special, | +47023|488664|26192|7|36|59495.04|0.01|0.05|N|O|1997-05-19|1997-07-21|1997-06-02|TAKE BACK RETURN|MAIL|carefully close theodolites. slyl| +47048|962568|37607|1|6|9783.12|0.08|0.01|A|F|1994-06-25|1994-04-11|1994-06-28|COLLECT COD|SHIP|le slyly; fluffily ev| +47048|873809|36327|2|27|48134.52|0.10|0.05|A|F|1994-03-27|1994-05-28|1994-04-08|NONE|AIR|ely outside the dependencies. carefully| +47048|102721|40228|3|16|27579.52|0.01|0.03|A|F|1994-06-08|1994-04-25|1994-06-20|COLLECT COD|SHIP|ular account| +47049|496656|34184|1|4|6610.52|0.02|0.05|A|F|1994-11-22|1994-12-13|1994-11-24|DELIVER IN PERSON|REG AIR|ilent, even requests are blith| +47049|282012|7023|2|31|30814.00|0.09|0.02|R|F|1994-11-23|1995-01-10|1994-12-22|NONE|REG AIR|ns haggle carefully. carefully p| +47049|771331|8877|3|19|26643.70|0.06|0.08|R|F|1995-01-26|1994-12-01|1995-02-14|DELIVER IN PERSON|TRUCK|se slyly regular r| +47049|752073|39619|4|24|27000.96|0.07|0.03|R|F|1994-11-19|1995-01-18|1994-11-22|COLLECT COD|FOB|y along the a| +47049|75550|25551|5|46|70175.30|0.01|0.06|A|F|1994-11-24|1994-11-29|1994-11-25|COLLECT COD|REG AIR|lithely express packages. blithely pen| +47050|441517|16534|1|49|71466.01|0.02|0.05|A|F|1993-07-02|1993-09-06|1993-07-22|DELIVER IN PERSON|RAIL| regular asymptotes sleep blithely| +47050|569595|44618|2|47|78234.79|0.08|0.00|R|F|1993-08-25|1993-09-02|1993-09-23|COLLECT COD|RAIL|structions affix qu| +47050|182767|7774|3|39|72140.64|0.04|0.04|A|F|1993-08-07|1993-08-15|1993-08-29|NONE|MAIL|. blithely spe| +47050|757177|44723|4|45|55536.30|0.05|0.08|R|F|1993-07-17|1993-08-16|1993-08-04|TAKE BACK RETURN|RAIL|ts after the quickly even t| +47050|860328|35363|5|28|36071.84|0.01|0.08|A|F|1993-07-05|1993-08-11|1993-07-15|DELIVER IN PERSON|FOB| among the quickly bold| +47050|527272|2293|6|18|23386.50|0.04|0.08|R|F|1993-09-08|1993-07-31|1993-09-19|NONE|TRUCK|sly even, r| +47051|326979|26980|1|16|32095.36|0.09|0.03|A|F|1992-09-21|1992-10-18|1992-09-27|NONE|FOB|ffily across the packages. special dolph| +47051|529500|17031|2|50|76474.00|0.00|0.08|R|F|1992-11-06|1992-11-01|1992-11-10|TAKE BACK RETURN|MAIL|special pac| +47052|913831|26350|1|16|29516.64|0.07|0.00|N|O|1995-07-15|1995-06-09|1995-08-08|COLLECT COD|REG AIR|ully final packages? silently| +47052|747822|10337|2|15|28046.85|0.09|0.04|R|F|1995-05-13|1995-06-09|1995-06-12|TAKE BACK RETURN|RAIL|ld accounts for the express, pen| +47052|633375|8400|3|26|34016.84|0.02|0.02|N|O|1995-07-20|1995-07-06|1995-08-19|NONE|TRUCK|s. furiously expre| +47052|127678|27679|4|40|68226.80|0.03|0.07|A|F|1995-06-02|1995-08-03|1995-06-17|NONE|RAIL|riously ironic | +47053|679004|29005|1|32|31455.04|0.01|0.00|N|O|1997-05-10|1997-05-05|1997-05-15|COLLECT COD|FOB|c ideas. unusual, pen| +47053|11837|11838|2|16|27981.28|0.08|0.04|N|O|1997-03-06|1997-04-09|1997-04-03|NONE|TRUCK|ly unusual packages haggle furiously acco| +47053|930920|43439|3|23|44870.24|0.01|0.01|N|O|1997-05-21|1997-05-14|1997-05-25|TAKE BACK RETURN|MAIL|. dolphins cajole blithely careful pac| +47053|971308|46347|4|38|52411.88|0.05|0.02|N|O|1997-05-28|1997-04-17|1997-06-22|COLLECT COD|RAIL|lly blithely regular patt| +47053|770135|32651|5|17|20486.70|0.06|0.06|N|O|1997-05-31|1997-05-11|1997-06-11|COLLECT COD|MAIL|usual requests. carefully dogged reque| +47053|647335|9848|6|5|6411.50|0.05|0.04|N|O|1997-03-31|1997-05-14|1997-04-22|DELIVER IN PERSON|RAIL| the blithely iro| +47053|754629|4630|7|1|1683.59|0.10|0.00|N|O|1997-06-25|1997-05-05|1997-06-26|DELIVER IN PERSON|AIR| fluffily even accounts. furiously iro| +47054|42700|30201|1|2|3285.40|0.04|0.02|R|F|1993-07-26|1993-08-09|1993-08-12|TAKE BACK RETURN|MAIL|nding requests thras| +47054|654457|29484|2|28|39519.76|0.09|0.03|A|F|1993-10-14|1993-08-27|1993-10-20|TAKE BACK RETURN|FOB|ding to the ironic, regular pinto beans-| +47055|420306|20307|1|13|15941.64|0.04|0.07|N|O|1996-12-22|1997-01-01|1996-12-23|TAKE BACK RETURN|FOB|ding to the | +47055|80839|5842|2|42|76432.86|0.07|0.08|N|O|1997-01-12|1997-01-30|1997-01-22|COLLECT COD|RAIL|sly ironic asymptotes. pending, regul| +47055|657258|19772|3|35|42532.70|0.10|0.05|N|O|1997-03-21|1997-02-16|1997-04-18|DELIVER IN PERSON|TRUCK|mptotes haggle: sl| +47055|524000|36511|4|43|44031.14|0.05|0.04|N|O|1996-11-26|1997-01-09|1996-12-05|TAKE BACK RETURN|REG AIR|furiously pending| +47055|863555|38590|5|32|48592.32|0.10|0.03|N|O|1996-12-28|1997-02-23|1997-01-21|TAKE BACK RETURN|MAIL|ven packages. final| +47055|758854|21370|6|35|66948.70|0.10|0.02|N|O|1997-01-16|1997-01-08|1997-02-13|COLLECT COD|TRUCK|ages sleep.| +47055|47021|9522|7|16|15488.32|0.03|0.01|N|O|1997-03-14|1997-01-22|1997-04-03|COLLECT COD|AIR|ly ironic requests above t| +47080|265883|3399|1|3|5546.61|0.07|0.08|N|O|1995-12-01|1995-11-02|1995-12-14|NONE|SHIP|to beans cajole slyly pending package| +47080|693292|43293|2|15|19278.90|0.08|0.08|N|O|1995-12-15|1995-11-29|1996-01-03|DELIVER IN PERSON|MAIL|fix fluffi| +47080|153052|3053|3|13|14365.65|0.00|0.02|N|O|1995-11-25|1995-11-25|1995-12-12|COLLECT COD|REG AIR|s boost along| +47080|333341|8354|4|30|41229.90|0.06|0.00|N|O|1995-12-07|1995-12-03|1995-12-08|TAKE BACK RETURN|AIR|ites around the caref| +47081|720082|32597|1|41|45184.05|0.03|0.04|N|F|1995-05-29|1995-05-01|1995-06-24|NONE|TRUCK|tect furiously according to the | +47081|416958|4483|2|7|13124.51|0.10|0.06|A|F|1995-04-30|1995-03-25|1995-05-27|NONE|SHIP|gular deposits. blit| +47081|796417|46418|3|6|9080.28|0.05|0.05|R|F|1995-05-07|1995-05-05|1995-05-26|DELIVER IN PERSON|MAIL|y alongside of t| +47081|370074|7596|4|26|29745.56|0.03|0.06|N|O|1995-06-21|1995-04-14|1995-07-21|COLLECT COD|FOB|ly: quickly | +47081|820295|7844|5|48|58332.00|0.09|0.07|A|F|1995-05-18|1995-04-07|1995-05-22|DELIVER IN PERSON|SHIP|riously bold ideas wake| +47082|623215|35728|1|24|27316.32|0.03|0.07|N|O|1997-10-03|1997-10-02|1997-10-13|COLLECT COD|FOB|ts shall have to haggle furiously re| +47083|793514|6030|1|36|57869.28|0.05|0.02|N|O|1997-01-10|1997-02-13|1997-01-30|TAKE BACK RETURN|AIR|xpress account| +47083|581701|6724|2|45|80220.60|0.03|0.04|N|O|1997-02-20|1997-01-21|1997-03-17|NONE|REG AIR|packages wake across | +47083|637368|24905|3|1|1305.33|0.09|0.01|N|O|1997-01-29|1997-02-07|1997-01-31|NONE|SHIP|s detect silent foxes.| +47083|227720|2729|4|19|31306.49|0.08|0.06|N|O|1997-03-27|1997-01-15|1997-04-05|TAKE BACK RETURN|RAIL|nic requests. dependencies nag. car| +47084|874172|49207|1|35|40114.55|0.09|0.00|N|O|1998-09-30|1998-09-04|1998-10-05|DELIVER IN PERSON|FOB|usual, special excuses. quickly bold de| +47084|207351|32360|2|38|47816.92|0.09|0.06|N|O|1998-10-20|1998-09-12|1998-10-21|TAKE BACK RETURN|AIR|ly final dependencies sleep flu| +47084|946828|46829|3|35|65617.30|0.01|0.04|N|O|1998-11-04|1998-10-01|1998-11-19|DELIVER IN PERSON|TRUCK|beans. boldly enticing depos| +47084|324880|24881|4|50|95243.50|0.10|0.00|N|O|1998-08-20|1998-08-27|1998-08-31|DELIVER IN PERSON|AIR|ss theodolites. quick accounts impres| +47084|245769|20778|5|31|53157.25|0.03|0.05|N|O|1998-10-12|1998-08-29|1998-10-18|DELIVER IN PERSON|FOB| carefully silent| +47085|459016|21526|1|45|43874.55|0.06|0.03|N|O|1995-06-20|1995-06-17|1995-07-08|TAKE BACK RETURN|SHIP|otes are slyly. furiously even plat| +47085|681406|18946|2|9|12486.33|0.03|0.00|N|O|1995-07-04|1995-06-16|1995-07-22|DELIVER IN PERSON|MAIL|lites boost furiously. bravely fin| +47085|382996|45504|3|30|62369.40|0.02|0.02|N|O|1995-07-28|1995-06-23|1995-08-24|NONE|FOB|unts. blithely express accounts boost | +47085|11927|49428|4|5|9194.60|0.08|0.00|N|F|1995-06-06|1995-06-10|1995-06-29|NONE|SHIP|y. carefully eve| +47085|440658|3167|5|33|52754.79|0.08|0.00|N|O|1995-07-24|1995-06-13|1995-07-31|NONE|SHIP|s was blithely carefully| +47086|92384|17387|1|50|68819.00|0.07|0.04|R|F|1992-09-27|1992-11-13|1992-10-27|DELIVER IN PERSON|RAIL|ely ironic foxes acco| +47086|685795|23335|2|32|56984.32|0.05|0.00|R|F|1992-10-22|1992-10-09|1992-11-01|TAKE BACK RETURN|FOB|p blithely past the bold excus| +47086|145580|45581|3|18|29260.44|0.05|0.03|A|F|1993-01-02|1992-10-22|1993-01-18|TAKE BACK RETURN|AIR| to sleep blithely. blithely bold theod| +47086|749103|11618|4|13|14976.91|0.02|0.05|A|F|1992-12-03|1992-10-22|1992-12-11|COLLECT COD|SHIP| the ironic, unusual dolphins. foxes use | +47086|174103|11613|5|14|16479.40|0.01|0.06|R|F|1992-10-02|1992-11-15|1992-10-21|DELIVER IN PERSON|SHIP|ructions unwind flu| +47086|133505|33506|6|45|69232.50|0.05|0.06|A|F|1992-10-20|1992-11-17|1992-11-09|COLLECT COD|FOB|ironic theodolites detect even de| +47087|929464|17019|1|13|19414.46|0.07|0.08|N|O|1997-07-19|1997-04-22|1997-08-03|TAKE BACK RETURN|REG AIR|e packages. carefully pending packages| +47087|501218|38749|2|25|30479.75|0.09|0.01|N|O|1997-04-16|1997-06-12|1997-04-24|TAKE BACK RETURN|MAIL| pending frays. blithely ironic ideas use| +47087|959433|34472|3|43|64172.77|0.08|0.00|N|O|1997-06-09|1997-06-06|1997-06-28|DELIVER IN PERSON|AIR|lly. quickly even packages detect ev| +47087|179248|4255|4|42|55744.08|0.01|0.07|N|O|1997-04-13|1997-05-07|1997-05-06|NONE|RAIL| accounts before the blithely fi| +47087|620504|45529|5|23|32762.81|0.07|0.01|N|O|1997-04-16|1997-05-27|1997-05-08|DELIVER IN PERSON|FOB|inal packages sleep care| +47087|810095|35128|6|22|22111.10|0.05|0.04|N|O|1997-04-28|1997-04-27|1997-05-27|DELIVER IN PERSON|AIR|owly ideas. final, silent ideas wake s| +47112|769767|7313|1|46|84489.58|0.05|0.05|N|O|1998-09-07|1998-08-02|1998-09-26|TAKE BACK RETURN|TRUCK|ly final excuses. ironic foxes against th| +47112|459714|9715|2|30|50210.70|0.10|0.02|N|O|1998-09-11|1998-07-03|1998-09-14|TAKE BACK RETURN|TRUCK| slyly special accounts | +47112|400870|871|3|25|44271.25|0.04|0.06|N|O|1998-07-24|1998-07-24|1998-08-20|TAKE BACK RETURN|MAIL|fily unusual ideas? blithely pendin| +47112|407709|32726|4|8|12933.44|0.10|0.06|N|O|1998-06-28|1998-08-06|1998-07-02|NONE|REG AIR|ending accounts. dar| +47112|356357|18865|5|50|70667.00|0.09|0.04|N|O|1998-05-23|1998-07-24|1998-05-27|NONE|TRUCK|g. quickly unusu| +47112|283655|21171|6|1|1638.64|0.04|0.01|N|O|1998-08-05|1998-07-30|1998-08-10|COLLECT COD|MAIL|egular request| +47113|770468|45499|1|12|18461.16|0.07|0.03|R|F|1993-03-05|1993-03-21|1993-03-28|TAKE BACK RETURN|REG AIR|ress ideas above the fina| +47113|253176|40692|2|35|39520.60|0.04|0.07|A|F|1993-01-08|1993-03-04|1993-01-26|TAKE BACK RETURN|FOB|quests. slyly| +47113|115369|15370|3|13|17996.68|0.03|0.00|R|F|1993-01-07|1993-03-02|1993-01-19|DELIVER IN PERSON|MAIL|ns wake furiously bold r| +47113|461|37962|4|11|14976.06|0.09|0.05|A|F|1993-03-16|1993-02-22|1993-04-04|COLLECT COD|SHIP|s. regular packages snooze fluffily. ca| +47113|736351|11380|5|20|27746.40|0.05|0.06|R|F|1993-01-11|1993-03-06|1993-01-30|NONE|MAIL|inst the packages. regular, | +47113|840504|3021|6|29|41889.34|0.10|0.04|R|F|1993-03-19|1993-03-29|1993-04-07|TAKE BACK RETURN|SHIP| of the quickly ironic | +47113|349780|37299|7|14|25616.78|0.08|0.03|A|F|1993-05-01|1993-03-04|1993-05-15|COLLECT COD|REG AIR|l packages affix| +47114|738107|622|1|12|13740.84|0.03|0.05|N|O|1995-12-18|1995-12-16|1995-12-23|COLLECT COD|SHIP|sual foxes are furiously. expre| +47114|348648|36167|2|5|8483.15|0.07|0.02|N|O|1996-01-22|1995-12-10|1996-02-09|NONE|TRUCK| packages. dependencies are quickly slyly e| +47114|717767|5310|3|39|69604.47|0.02|0.05|N|O|1995-11-10|1995-11-01|1995-11-18|NONE|RAIL|ely special tithes. carefully express acco| +47114|509039|34060|4|11|11528.11|0.09|0.00|N|O|1995-11-06|1995-11-27|1995-11-09|DELIVER IN PERSON|AIR|ze. special, even realms| +47115|36595|24096|1|38|58200.42|0.09|0.07|N|O|1998-06-25|1998-04-07|1998-06-28|NONE|RAIL|al theodolite| +47115|44957|19958|2|31|58960.45|0.08|0.04|N|O|1998-05-02|1998-05-04|1998-05-22|DELIVER IN PERSON|TRUCK|e carefully bold deposits. pains haggle | +47116|641674|29211|1|46|74319.44|0.08|0.05|N|O|1997-08-10|1997-09-05|1997-08-18|DELIVER IN PERSON|AIR|y. finally ironic forges| +47117|278934|28935|1|3|5738.76|0.02|0.06|A|F|1994-04-02|1994-04-14|1994-04-24|TAKE BACK RETURN|AIR|y. requests haggle qui| +47117|42787|5288|2|5|8648.90|0.05|0.03|A|F|1994-03-15|1994-04-01|1994-03-27|COLLECT COD|AIR|al, unusual accounts nag quickly. fluffil| +47117|110585|10586|3|26|41485.08|0.03|0.04|A|F|1994-02-28|1994-04-13|1994-03-23|TAKE BACK RETURN|TRUCK|sly final warth| +47117|586395|48907|4|21|31108.77|0.03|0.01|A|F|1994-05-11|1994-04-21|1994-05-30|NONE|REG AIR| packages. fi| +47117|532249|32250|5|31|39717.82|0.08|0.07|R|F|1994-04-30|1994-04-12|1994-05-24|DELIVER IN PERSON|SHIP| after the blithely b| +47117|500228|229|6|15|18423.00|0.09|0.02|R|F|1994-02-23|1994-04-12|1994-02-24|COLLECT COD|TRUCK|pending, dogged instructions hag| +47118|237834|12843|1|20|35436.40|0.10|0.07|N|O|1995-07-11|1995-08-26|1995-07-30|NONE|REG AIR|e pending, ironic packag| +47118|259332|9333|2|8|10330.56|0.08|0.02|A|F|1995-06-06|1995-08-17|1995-06-12|COLLECT COD|FOB|ts across the furiously regu| +47118|576871|1894|3|4|7791.40|0.03|0.08|N|O|1995-09-21|1995-07-14|1995-10-09|DELIVER IN PERSON|MAIL|c theodolites solve slyly regular, i| +47118|470749|33259|4|49|84266.28|0.03|0.01|N|O|1995-06-24|1995-08-23|1995-07-12|DELIVER IN PERSON|RAIL|ress instructions snooze unusual theodoli| +47118|876062|13614|5|13|13494.26|0.06|0.04|N|O|1995-09-26|1995-07-15|1995-10-06|DELIVER IN PERSON|MAIL|ess, final accounts. bl| +47118|959080|9081|6|35|39866.40|0.07|0.00|N|O|1995-09-26|1995-08-20|1995-10-21|TAKE BACK RETURN|RAIL|y. packages haggl| +47119|473526|48545|1|27|40486.50|0.06|0.03|N|O|1997-02-04|1997-04-22|1997-02-15|NONE|REG AIR|t carefully abov| +47119|545335|45336|2|4|5521.24|0.04|0.00|N|O|1997-02-09|1997-03-10|1997-02-13|COLLECT COD|MAIL|dogged dolph| +47119|444339|19356|3|9|11549.79|0.00|0.02|N|O|1997-03-09|1997-03-27|1997-03-31|NONE|AIR| the carefully special dependenc| +47119|992823|5343|4|1|1915.78|0.02|0.03|N|O|1997-03-26|1997-03-07|1997-04-23|DELIVER IN PERSON|SHIP|posits haggle fluff| +47119|360846|23354|5|19|36229.77|0.06|0.03|N|O|1997-03-22|1997-04-14|1997-04-19|COLLECT COD|FOB|ckages boost furiously among the foxes. fu| +47119|736170|36171|6|8|9649.12|0.09|0.08|N|O|1997-03-13|1997-03-25|1997-03-30|TAKE BACK RETURN|SHIP| slyly regular pinto beans. expre| +47144|849923|49924|1|26|48694.88|0.10|0.05|R|F|1995-05-05|1995-03-12|1995-05-08|DELIVER IN PERSON|MAIL|fully regular theodolit| +47144|655574|43114|2|16|24472.64|0.04|0.07|R|F|1995-01-27|1995-02-16|1995-02-24|COLLECT COD|RAIL|uffily final accounts. fluffily final court| +47144|227183|2192|3|34|37745.78|0.01|0.07|R|F|1995-02-19|1995-03-19|1995-02-20|TAKE BACK RETURN|RAIL|special requests. final th| +47144|256727|6728|4|19|31990.49|0.06|0.01|A|F|1995-03-27|1995-03-09|1995-04-15|TAKE BACK RETURN|REG AIR|ly special deposits. regular, | +47144|801664|39213|5|42|65756.04|0.05|0.00|A|F|1995-05-06|1995-03-18|1995-05-18|COLLECT COD|AIR|blithely final gifts are quickl| +47144|554942|17454|6|10|19969.20|0.06|0.08|A|F|1995-04-23|1995-03-22|1995-04-26|TAKE BACK RETURN|RAIL|egular pinto beans haggle acc| +47144|894244|19279|7|15|18573.00|0.07|0.03|A|F|1995-03-18|1995-03-27|1995-04-10|TAKE BACK RETURN|REG AIR|al, special requests w| +47145|552143|14655|1|49|58560.88|0.07|0.08|A|F|1993-09-08|1993-08-29|1993-09-25|TAKE BACK RETURN|REG AIR|lyly special packages wake platelets. | +47145|861827|24345|2|13|23254.14|0.09|0.07|A|F|1993-08-04|1993-08-18|1993-08-24|COLLECT COD|TRUCK|hely carefully regular accounts. blithel| +47145|713515|38544|3|7|10699.36|0.02|0.06|A|F|1993-09-19|1993-09-13|1993-09-23|COLLECT COD|SHIP|ithely daring acco| +47145|34597|47098|4|40|61263.60|0.01|0.04|A|F|1993-09-26|1993-09-25|1993-10-04|TAKE BACK RETURN|RAIL|ke according to the| +47145|460073|35092|5|9|9297.45|0.09|0.05|R|F|1993-09-29|1993-09-19|1993-10-28|DELIVER IN PERSON|REG AIR|ily bold, unusu| +47145|443946|6455|6|29|54807.68|0.03|0.08|A|F|1993-09-10|1993-10-01|1993-09-11|TAKE BACK RETURN|MAIL|lly bold pinto beans; ironic acco| +47146|716653|41682|1|17|28383.54|0.04|0.08|A|F|1994-12-02|1994-12-06|1994-12-23|DELIVER IN PERSON|SHIP|o the bold, silent accounts. | +47146|772469|47500|2|46|70905.78|0.05|0.06|R|F|1994-12-13|1994-12-09|1995-01-05|TAKE BACK RETURN|RAIL|slyly regular requ| +47146|872409|47444|3|39|53873.04|0.10|0.04|R|F|1994-10-31|1994-12-20|1994-11-09|DELIVER IN PERSON|RAIL|regular depos| +47147|313101|620|1|19|21167.71|0.07|0.07|N|O|1997-06-06|1997-07-06|1997-07-06|NONE|MAIL|ly. final, regular requests are| +47147|285124|47630|2|14|15527.54|0.01|0.05|N|O|1997-08-23|1997-07-04|1997-09-09|DELIVER IN PERSON|AIR|sual, unusual theodolites. blithely | +47147|65557|40560|3|14|21315.70|0.10|0.06|N|O|1997-05-03|1997-06-09|1997-06-02|COLLECT COD|AIR| express accounts wake quickly p| +47147|813350|899|4|24|30319.44|0.00|0.07|N|O|1997-06-10|1997-06-27|1997-06-20|COLLECT COD|TRUCK|he deposits are packa| +47147|961787|11788|5|49|90588.26|0.04|0.03|N|O|1997-06-03|1997-07-15|1997-06-23|COLLECT COD|SHIP|odolites according to the quickly ironi| +47147|745036|45037|6|23|24863.00|0.10|0.00|N|O|1997-05-30|1997-07-28|1997-06-12|TAKE BACK RETURN|SHIP|nts cajole furiously even re| +47147|805422|5423|7|49|65041.62|0.08|0.08|N|O|1997-06-14|1997-06-20|1997-06-24|TAKE BACK RETURN|FOB|. furiously ironic packages wake | +47148|713765|26280|1|25|44468.25|0.06|0.02|N|O|1998-03-20|1998-04-11|1998-04-17|DELIVER IN PERSON|SHIP|ests. quiet | +47149|745667|20696|1|12|20551.56|0.06|0.07|A|F|1992-09-24|1992-10-27|1992-10-12|NONE|FOB|e blithely carefully unusual | +47149|423050|23051|2|2|1946.06|0.08|0.04|R|F|1993-01-13|1992-12-04|1993-02-03|COLLECT COD|TRUCK|ate slyly carefully regular pear| +47149|190974|3478|3|6|12389.82|0.02|0.03|A|F|1992-11-11|1992-12-05|1992-11-20|COLLECT COD|RAIL|jole furiously. slyly even accou| +47149|688318|832|4|12|15675.36|0.02|0.08|A|F|1992-10-22|1992-12-14|1992-10-30|NONE|AIR|olites cajole slyly among| +47149|553247|15759|5|24|31205.28|0.05|0.05|R|F|1992-11-07|1992-11-19|1992-11-10|TAKE BACK RETURN|TRUCK|o beans wake finally. packa| +47149|409500|22009|6|46|64836.08|0.00|0.03|A|F|1992-11-05|1992-10-29|1992-11-23|COLLECT COD|FOB|ld somas was blit| +47150|309640|47159|1|8|13197.04|0.07|0.05|R|F|1993-07-14|1993-05-12|1993-07-22|NONE|RAIL|ng excuses ar| +47150|114468|14469|2|13|19271.98|0.10|0.08|R|F|1993-06-30|1993-07-10|1993-07-03|NONE|AIR|old requests. blithely even ins| +47150|856053|6054|3|3|3027.03|0.05|0.05|R|F|1993-08-05|1993-06-24|1993-09-03|NONE|TRUCK|l dolphins alongside of the theodolites caj| +47151|594103|44104|1|17|20350.36|0.01|0.08|R|F|1994-12-26|1995-02-13|1995-01-23|COLLECT COD|RAIL|uickly. regular requests are; car| +47151|80206|5209|2|45|53379.00|0.01|0.05|A|F|1995-03-13|1995-01-20|1995-03-22|TAKE BACK RETURN|RAIL|y special requests boost slyly according to| +47151|17528|5029|3|4|5782.08|0.06|0.06|A|F|1995-03-07|1994-12-28|1995-03-08|TAKE BACK RETURN|SHIP| across the quickly unusual | +47151|584078|46590|4|48|55778.40|0.02|0.07|R|F|1995-02-09|1995-02-04|1995-02-21|DELIVER IN PERSON|SHIP|deas boost carefully alongsid| +47176|382928|32929|1|9|18098.19|0.07|0.00|A|F|1994-11-27|1994-11-25|1994-12-20|TAKE BACK RETURN|RAIL| across the ironic dolphin| +47177|599072|36606|1|33|38644.65|0.02|0.02|N|O|1997-02-04|1997-03-17|1997-02-12|DELIVER IN PERSON|MAIL|ld instructions caj| +47177|600715|716|2|19|30697.92|0.02|0.00|N|O|1997-04-01|1997-03-23|1997-04-10|DELIVER IN PERSON|FOB|as haggle. furiously expres| +47177|200500|38013|3|47|65823.03|0.00|0.02|N|O|1997-02-12|1997-04-11|1997-03-07|NONE|AIR|nusual decoys cajole quickly dolphins: fina| +47177|788840|1356|4|4|7715.24|0.05|0.06|N|O|1997-05-29|1997-04-02|1997-06-07|COLLECT COD|TRUCK|counts cajole blithely slyly bold| +47177|24825|24826|5|34|59493.88|0.01|0.02|N|O|1997-03-07|1997-03-17|1997-03-24|DELIVER IN PERSON|REG AIR| pinto beans. quic| +47177|218854|31359|6|5|8864.20|0.04|0.04|N|O|1997-03-27|1997-03-28|1997-04-14|DELIVER IN PERSON|TRUCK|ong the furiously express deposi| +47178|472891|47910|1|14|26094.18|0.00|0.08|N|O|1998-04-26|1998-07-02|1998-05-12|DELIVER IN PERSON|RAIL|r multipliers must hav| +47178|876507|39025|2|6|8900.76|0.02|0.08|N|O|1998-06-21|1998-05-19|1998-06-22|NONE|RAIL|ual dependencies. slyl| +47178|446920|21937|3|49|91478.10|0.10|0.05|N|O|1998-06-25|1998-06-12|1998-07-12|TAKE BACK RETURN|FOB| carefully id| +47178|373660|11182|4|40|69346.00|0.01|0.03|N|O|1998-05-11|1998-05-04|1998-05-14|DELIVER IN PERSON|SHIP| sleep furiously about the final| +47179|99546|49547|1|48|74185.92|0.01|0.00|N|O|1996-07-16|1996-08-16|1996-07-22|TAKE BACK RETURN|TRUCK|ress excuses. regular, unus| +47179|62186|37189|2|11|12629.98|0.04|0.06|N|O|1996-08-18|1996-09-02|1996-08-24|TAKE BACK RETURN|AIR|inal braids cajole. slyly even| +47179|159711|22215|3|45|79681.95|0.10|0.07|N|O|1996-07-30|1996-08-14|1996-08-25|NONE|FOB|de of the b| +47179|247909|47910|4|13|24139.57|0.00|0.06|N|O|1996-08-25|1996-09-13|1996-09-13|COLLECT COD|MAIL|ress accounts nag slyly across the pe| +47179|604650|29675|5|39|60630.18|0.10|0.08|N|O|1996-07-19|1996-08-09|1996-08-03|COLLECT COD|FOB| pending r| +47179|350702|13210|6|10|17526.90|0.01|0.08|N|O|1996-08-31|1996-09-21|1996-09-02|DELIVER IN PERSON|REG AIR|nal asymptot| +47179|244077|6582|7|49|50031.94|0.06|0.08|N|O|1996-08-31|1996-08-27|1996-09-20|TAKE BACK RETURN|FOB|s sleep. regular,| +47180|196793|9297|1|43|81260.97|0.06|0.00|A|F|1993-08-18|1993-10-19|1993-09-11|NONE|REG AIR|uriously regular packages wak| +47180|495550|20569|2|6|9273.18|0.01|0.00|A|F|1993-10-06|1993-09-30|1993-10-15|NONE|REG AIR|ackages. carefully ironi| +47180|706962|6963|3|50|98446.50|0.10|0.00|A|F|1993-10-27|1993-09-27|1993-11-11|TAKE BACK RETURN|RAIL|ctions. accounts according to the regul| +47180|905717|43272|4|20|34453.40|0.04|0.02|A|F|1993-11-01|1993-09-27|1993-11-03|COLLECT COD|RAIL|ular frays kindle according to the| +47180|369612|44627|5|47|79035.20|0.00|0.08|R|F|1993-10-31|1993-10-12|1993-11-11|DELIVER IN PERSON|AIR|e carefully. regula| +47180|62993|25495|6|3|5867.97|0.03|0.05|R|F|1993-11-03|1993-09-19|1993-11-12|DELIVER IN PERSON|MAIL|ges cajole carefully. quickly regular depe| +47181|11131|36132|1|26|27095.38|0.08|0.06|N|O|1998-07-22|1998-05-26|1998-07-28|TAKE BACK RETURN|MAIL|ct quickly furi| +47181|78706|16210|2|4|6738.80|0.01|0.00|N|O|1998-05-20|1998-06-16|1998-06-03|TAKE BACK RETURN|FOB|kages. furiously fi| +47181|802633|2634|3|15|23033.85|0.05|0.02|N|O|1998-06-28|1998-05-29|1998-07-19|DELIVER IN PERSON|SHIP|accounts alongside of t| +47181|848229|35778|4|33|38846.94|0.04|0.07|N|O|1998-04-12|1998-05-20|1998-05-05|NONE|SHIP|requests wake blithely | +47181|180801|30802|5|2|3763.60|0.00|0.04|N|O|1998-04-26|1998-07-06|1998-05-20|TAKE BACK RETURN|AIR|tegrate quickly packages. bold, ex| +47182|522885|47906|1|45|85853.70|0.03|0.04|N|O|1997-03-05|1997-04-01|1997-03-30|COLLECT COD|TRUCK|dolites. regular theodolites are | +47183|249517|49518|1|24|35196.00|0.07|0.08|N|O|1997-06-17|1997-08-24|1997-06-25|COLLECT COD|TRUCK|r asymptotes boo| +47183|624455|36968|2|28|38623.76|0.10|0.02|N|O|1997-07-11|1997-07-12|1997-07-14|NONE|TRUCK|ges. fluffily regular accounts i| +47183|199714|24721|3|33|59852.43|0.08|0.00|N|O|1997-07-02|1997-08-26|1997-07-29|DELIVER IN PERSON|RAIL|uickly ideas. final courts hagg| +47208|21003|21004|1|20|18480.00|0.09|0.04|N|O|1995-06-20|1995-06-19|1995-06-28|TAKE BACK RETURN|TRUCK|sly unusual requests. ironic theo| +47208|991317|28875|2|19|26757.13|0.08|0.04|R|F|1995-05-27|1995-07-07|1995-06-03|DELIVER IN PERSON|SHIP| deposits affix furiously a| +47208|50282|283|3|43|52988.04|0.07|0.06|N|O|1995-08-05|1995-07-30|1995-09-04|COLLECT COD|MAIL|g, regular packages. furiously final the| +47208|82400|32401|4|12|16588.80|0.02|0.02|N|O|1995-08-24|1995-08-02|1995-09-20|DELIVER IN PERSON|SHIP| was blithely thinly bold pinto b| +47208|884470|22022|5|17|24725.31|0.10|0.08|R|F|1995-05-11|1995-06-18|1995-05-22|TAKE BACK RETURN|MAIL|he carefully express packages| +47208|278132|40638|6|40|44404.80|0.00|0.08|R|F|1995-05-24|1995-07-16|1995-06-07|DELIVER IN PERSON|AIR|sits wake carefully accordin| +47208|549344|24365|7|38|52946.16|0.08|0.02|N|O|1995-07-11|1995-06-27|1995-08-04|COLLECT COD|RAIL|ckly around the carefully| +47209|810047|35080|1|37|35409.00|0.10|0.08|N|O|1998-08-30|1998-08-07|1998-09-16|TAKE BACK RETURN|FOB|sly even foxes above th| +47209|450399|400|2|26|35083.62|0.10|0.04|N|O|1998-06-12|1998-07-14|1998-07-08|COLLECT COD|REG AIR|fluffy foxes sleep slyly furiou| +47209|839800|39801|3|31|53932.56|0.00|0.08|N|O|1998-06-13|1998-07-18|1998-07-12|DELIVER IN PERSON|RAIL|onic orbits; quickly bold req| +47209|506205|43736|4|16|19378.88|0.04|0.05|N|O|1998-07-28|1998-08-03|1998-08-19|COLLECT COD|REG AIR|lithely ironic requests are quickly | +47209|787150|37151|5|4|4948.48|0.05|0.00|N|O|1998-08-09|1998-07-16|1998-08-27|NONE|SHIP|structions wake q| +47209|615018|40043|6|1|932.98|0.01|0.01|N|O|1998-09-03|1998-07-06|1998-09-10|TAKE BACK RETURN|FOB|ites about the doggedly even| +47210|643569|31106|1|25|37813.25|0.10|0.00|N|O|1995-07-07|1995-08-09|1995-08-03|NONE|RAIL|olites. regular | +47210|448858|23875|2|17|30716.11|0.00|0.06|N|O|1995-09-06|1995-07-03|1995-09-25|COLLECT COD|TRUCK|into beans. fluffily expres| +47211|341010|41011|1|21|22071.00|0.04|0.06|A|F|1995-05-07|1995-02-26|1995-05-20|COLLECT COD|SHIP|ave to wake blithely| +47211|339735|27254|2|39|69214.08|0.10|0.00|R|F|1995-03-15|1995-03-15|1995-04-06|TAKE BACK RETURN|RAIL| the thin, ironic platelets wake furio| +47211|918000|18001|3|37|37664.52|0.06|0.07|A|F|1995-04-05|1995-02-20|1995-04-09|NONE|TRUCK|ns. blithely express requests sleep careful| +47211|812704|253|4|48|77599.68|0.04|0.06|R|F|1995-05-17|1995-03-21|1995-06-10|DELIVER IN PERSON|SHIP|ly express packages. regu| +47211|106401|18904|5|18|25333.20|0.00|0.07|R|F|1995-02-06|1995-04-08|1995-02-19|COLLECT COD|FOB|en deposits| +47211|281361|43867|6|30|40270.50|0.01|0.03|R|F|1995-02-12|1995-02-22|1995-03-02|DELIVER IN PERSON|SHIP|dolites wake furiously a| +47211|822193|47226|7|39|43490.85|0.06|0.00|R|F|1995-03-27|1995-03-08|1995-04-16|NONE|REG AIR|ut the even requests mold blithe| +47212|597234|9746|1|42|55910.82|0.05|0.00|R|F|1994-03-28|1994-04-24|1994-04-13|COLLECT COD|RAIL|ecial theodolites. blithely | +47212|696167|21194|2|31|36057.03|0.03|0.01|R|F|1994-03-14|1994-06-02|1994-03-28|TAKE BACK RETURN|REG AIR|egular accounts wake across the bold req| +47212|465738|28248|3|25|42592.75|0.10|0.04|A|F|1994-03-21|1994-05-16|1994-04-19|COLLECT COD|FOB| special instructions. final, dog| +47212|649505|49506|4|38|55269.86|0.08|0.06|A|F|1994-04-20|1994-04-13|1994-05-06|DELIVER IN PERSON|TRUCK|e blithely regular foxes. pendin| +47212|226089|13602|5|33|33497.31|0.05|0.01|A|F|1994-06-08|1994-05-11|1994-06-29|NONE|MAIL|usly special gifts detect carefully accor| +47212|869244|19245|6|37|44888.40|0.01|0.02|R|F|1994-04-18|1994-05-21|1994-05-03|COLLECT COD|MAIL|ependencies use along| +47213|9633|47134|1|27|41651.01|0.00|0.05|R|F|1993-07-24|1993-06-15|1993-08-13|TAKE BACK RETURN|SHIP| ironic requests use quickly regular packa| +47213|890750|15785|2|15|26110.65|0.02|0.08|R|F|1993-04-27|1993-05-22|1993-05-22|TAKE BACK RETURN|REG AIR|s deposits. express instructions sleep agai| +47213|819852|19853|3|48|85046.88|0.05|0.03|A|F|1993-05-05|1993-05-21|1993-05-17|COLLECT COD|RAIL|ptotes sleep fluffily along the unusu| +47214|717514|30029|1|13|19909.24|0.09|0.05|N|O|1998-07-09|1998-08-13|1998-08-03|TAKE BACK RETURN|SHIP|atelets agains| +47214|254648|17154|2|40|64105.20|0.03|0.08|N|O|1998-08-31|1998-08-20|1998-09-29|TAKE BACK RETURN|REG AIR| deposits. theodolites use daring accou| +47214|867874|42909|3|47|86566.01|0.03|0.05|N|O|1998-07-25|1998-08-15|1998-08-01|COLLECT COD|MAIL|carefully express multipliers cajole a| +47214|352248|27263|4|19|24704.37|0.04|0.07|N|O|1998-08-25|1998-08-29|1998-08-31|DELIVER IN PERSON|FOB|carefully ironic ideas wake never along| +47214|222489|47498|5|33|46578.51|0.06|0.00|N|O|1998-07-21|1998-08-11|1998-07-27|NONE|FOB|nt platelets. fluffily unusual| +47215|270462|32968|1|14|20054.30|0.06|0.08|A|F|1992-06-24|1992-07-17|1992-06-28|TAKE BACK RETURN|SHIP|ges believe furiously. sile| +47215|638617|38618|2|32|49778.56|0.06|0.04|A|F|1992-05-09|1992-07-06|1992-05-13|NONE|RAIL| final ideas use carefully after the| +47215|230995|30996|3|16|30815.68|0.08|0.01|A|F|1992-06-08|1992-06-23|1992-07-06|DELIVER IN PERSON|MAIL|lithe, final deposi| +47215|327557|15076|4|36|57043.44|0.10|0.02|A|F|1992-06-22|1992-06-16|1992-06-24|NONE|FOB|equests sleep? blithely fi| +47215|245045|45046|5|43|42571.29|0.07|0.05|R|F|1992-06-27|1992-06-21|1992-07-13|DELIVER IN PERSON|AIR|luffily quickly even pinto beans| +47215|460067|22577|6|8|8216.32|0.10|0.04|R|F|1992-05-11|1992-06-05|1992-06-07|NONE|RAIL|s? express ideas sleep furiously special th| +47215|334690|47197|7|37|63813.16|0.05|0.05|R|F|1992-08-16|1992-06-09|1992-08-21|COLLECT COD|MAIL|se. special requests cajole finally. ir| +47240|122537|22538|1|17|26512.01|0.03|0.06|N|O|1996-08-09|1996-09-16|1996-08-22|COLLECT COD|FOB|as poach. quickly even packages haggle| +47240|466355|41374|2|22|29069.26|0.01|0.08|N|O|1996-09-13|1996-10-22|1996-10-09|NONE|RAIL|idly slyly bold pack| +47240|16627|41628|3|11|16979.82|0.05|0.00|N|O|1996-08-26|1996-09-09|1996-09-21|COLLECT COD|FOB| packages was instead of | +47240|441775|41776|4|27|46352.25|0.03|0.03|N|O|1996-12-01|1996-10-19|1996-12-04|COLLECT COD|TRUCK|t the closely unusual packages. fluffily s| +47240|903236|3237|5|21|26022.99|0.04|0.03|N|O|1996-10-16|1996-09-27|1996-10-21|NONE|AIR|ideas. fluffil| +47240|681431|43945|6|43|60733.20|0.08|0.08|N|O|1996-09-11|1996-09-30|1996-10-10|NONE|TRUCK|s across the slyl| +47241|987327|37328|1|17|24042.76|0.00|0.06|N|O|1998-04-15|1998-03-23|1998-04-25|NONE|RAIL|eve carefully. caref| +47241|274|37775|2|19|22311.13|0.02|0.07|N|O|1998-03-23|1998-02-20|1998-03-28|TAKE BACK RETURN|SHIP|y final requests? final excuses s| +47241|596122|33656|3|3|3654.30|0.02|0.04|N|O|1998-02-24|1998-03-12|1998-03-01|COLLECT COD|FOB|uctions detect | +47241|13003|38004|4|42|38472.00|0.00|0.01|N|O|1998-05-05|1998-02-27|1998-05-25|COLLECT COD|TRUCK|lar requests engage furiously regular | +47241|537118|37119|5|48|55444.32|0.08|0.04|N|O|1998-02-06|1998-02-22|1998-02-10|TAKE BACK RETURN|FOB|gular packages. slyly | +47241|335124|35125|6|5|5795.55|0.00|0.06|N|O|1998-03-31|1998-03-22|1998-04-07|TAKE BACK RETURN|REG AIR|final requests cajole blithely across t| +47242|190723|15730|1|7|12696.04|0.05|0.01|N|O|1998-05-03|1998-05-24|1998-05-25|COLLECT COD|SHIP|into beans use before the silent theodolit| +47242|468363|30873|2|28|37277.52|0.01|0.01|N|O|1998-06-11|1998-06-02|1998-06-15|DELIVER IN PERSON|SHIP|ts nag furiously| +47242|772493|47524|3|5|7827.30|0.06|0.05|N|O|1998-04-21|1998-05-05|1998-04-22|TAKE BACK RETURN|SHIP|y. final frays was across the furiously| +47242|286589|36590|4|2|3151.14|0.04|0.02|N|O|1998-06-04|1998-05-12|1998-07-03|NONE|RAIL|es. requests sleep carefully s| +47242|684764|47278|5|34|59456.82|0.01|0.00|N|O|1998-03-27|1998-05-15|1998-04-07|DELIVER IN PERSON|TRUCK|ly regular requests about the flu| +47242|813529|38562|6|32|46159.36|0.04|0.06|N|O|1998-04-16|1998-04-29|1998-04-18|DELIVER IN PERSON|MAIL| regular platelets. packag| +47243|540124|27655|1|48|55876.80|0.01|0.01|N|O|1996-03-13|1996-02-29|1996-04-04|COLLECT COD|RAIL|nto beans sleep ironic bra| +47243|852201|27236|2|16|18450.56|0.08|0.02|N|O|1996-01-18|1996-02-22|1996-02-06|DELIVER IN PERSON|RAIL|lar accounts. ca| +47243|933258|8295|3|44|56813.24|0.08|0.04|N|O|1996-02-08|1996-02-03|1996-02-25|TAKE BACK RETURN|FOB|s haggle. quick| +47243|265239|27745|4|9|10837.98|0.09|0.02|N|O|1996-02-27|1996-02-12|1996-03-28|DELIVER IN PERSON|SHIP|ular platelets cajole car| +47243|858443|20961|5|17|23823.80|0.05|0.05|N|O|1996-01-02|1996-03-28|1996-01-30|DELIVER IN PERSON|REG AIR|lar deposits are blithely. express | +47243|844533|19566|6|27|39892.23|0.06|0.00|N|O|1996-02-06|1996-03-09|1996-02-23|COLLECT COD|SHIP| above the bravely iro| +47244|839248|26797|1|37|43926.40|0.09|0.08|N|O|1995-09-07|1995-08-02|1995-09-16|NONE|RAIL|ly. express requests | +47244|230847|43352|2|8|14222.64|0.10|0.04|N|F|1995-06-15|1995-06-29|1995-07-09|COLLECT COD|REG AIR|theodolites must sleep from the final | +47244|829834|42351|3|48|84661.92|0.03|0.04|N|O|1995-06-27|1995-07-09|1995-07-11|DELIVER IN PERSON|REG AIR|al packages use c| +47244|12261|24762|4|2|2346.52|0.10|0.03|N|O|1995-06-22|1995-07-21|1995-07-15|COLLECT COD|RAIL|cajole fluffily quickly| +47245|393712|6220|1|8|14445.60|0.06|0.03|N|O|1998-09-21|1998-09-08|1998-09-28|DELIVER IN PERSON|REG AIR|ously ironic requests cajole! final| +47245|103719|3720|2|49|84412.79|0.06|0.03|N|O|1998-09-17|1998-08-26|1998-10-03|NONE|MAIL|along the accounts. fluffily b| +47246|57785|32788|1|1|1742.78|0.00|0.03|R|F|1995-05-09|1995-03-23|1995-05-14|COLLECT COD|AIR|express accounts. accounts cajole. b| +47247|302997|15504|1|7|13999.86|0.05|0.05|R|F|1992-06-29|1992-04-30|1992-07-25|DELIVER IN PERSON|SHIP|counts sleep among the furiously pe| +47247|463633|26143|2|4|6386.44|0.09|0.06|A|F|1992-04-27|1992-05-07|1992-05-04|DELIVER IN PERSON|MAIL|sits. care| +47247|269620|7136|3|21|33381.81|0.02|0.00|R|F|1992-05-19|1992-05-03|1992-06-10|TAKE BACK RETURN|AIR|ts use blithely| +47247|501009|13520|4|17|17169.66|0.02|0.08|R|F|1992-07-05|1992-06-02|1992-08-02|TAKE BACK RETURN|MAIL|out the carefully ironic accou| +47247|449729|12238|5|16|26859.20|0.03|0.03|A|F|1992-03-23|1992-06-05|1992-04-01|DELIVER IN PERSON|MAIL|ronic platelets. regu| +47272|993035|5555|1|23|25943.77|0.01|0.07|R|F|1994-05-24|1994-05-02|1994-06-07|COLLECT COD|AIR|ly bold deposits. blithely express package| +47272|927792|40311|2|46|83708.50|0.05|0.07|R|F|1994-03-31|1994-03-28|1994-04-16|NONE|SHIP|se furiously furiously special requests| +47272|398495|48496|3|30|47804.40|0.03|0.03|R|F|1994-05-09|1994-03-25|1994-05-14|NONE|MAIL|furiously special packages s| +47273|311013|23520|1|16|16384.00|0.01|0.03|N|O|1995-06-18|1995-08-12|1995-06-22|TAKE BACK RETURN|FOB|ins haggle. carefully regular| +47273|185024|10031|2|26|28834.52|0.00|0.08|N|O|1995-08-30|1995-07-18|1995-09-22|DELIVER IN PERSON|RAIL|r accounts boost against the regular, expre| +47273|684866|22406|3|18|33314.94|0.01|0.02|A|F|1995-05-30|1995-07-20|1995-06-09|DELIVER IN PERSON|REG AIR|g the quickly express instructions cajole a| +47273|528498|41009|4|1|1526.47|0.03|0.05|N|O|1995-06-27|1995-08-08|1995-07-01|COLLECT COD|AIR|lphins affix furiously. quickly i| +47273|458980|46508|5|47|91131.12|0.09|0.01|A|F|1995-06-05|1995-07-20|1995-06-08|NONE|AIR|l courts use: b| +47273|67560|42563|6|49|74850.44|0.09|0.05|N|O|1995-07-07|1995-07-02|1995-07-08|DELIVER IN PERSON|AIR|he carefully even accounts. fur| +47274|619691|32204|1|5|8053.30|0.07|0.03|N|O|1998-10-12|1998-10-20|1998-10-16|NONE|MAIL|ully regular asymptotes. furi| +47274|134861|22368|2|25|47396.50|0.03|0.02|N|O|1998-09-08|1998-10-20|1998-10-01|NONE|TRUCK| regular warhorses. bravely unusual packag| +47275|981196|43716|1|37|47254.55|0.06|0.03|N|O|1995-08-15|1995-07-13|1995-08-23|NONE|TRUCK|dependencies alongside of the sly| +47276|919607|32126|1|35|56929.60|0.06|0.08|R|F|1992-05-10|1992-06-03|1992-05-22|TAKE BACK RETURN|TRUCK|final requests | +47276|828665|41182|2|43|68525.66|0.01|0.02|A|F|1992-05-23|1992-06-21|1992-06-21|DELIVER IN PERSON|AIR|le ironically about the carefully fina| +47276|370360|7882|3|6|8582.10|0.03|0.08|A|F|1992-06-06|1992-05-23|1992-06-21|DELIVER IN PERSON|AIR|ss final accounts. final accounts caj| +47276|627126|14663|4|17|17902.53|0.08|0.02|A|F|1992-08-07|1992-07-02|1992-08-14|TAKE BACK RETURN|SHIP|. slyly final depo| +47276|92332|17335|5|19|25162.27|0.07|0.07|R|F|1992-04-28|1992-05-28|1992-05-20|NONE|RAIL|lar, pending instructions: care| +47276|815565|28082|6|30|44415.60|0.10|0.08|R|F|1992-06-26|1992-07-13|1992-07-10|DELIVER IN PERSON|REG AIR| theodolites.| +47277|482118|7137|1|30|33002.70|0.08|0.00|A|F|1995-02-04|1995-04-13|1995-02-11|DELIVER IN PERSON|RAIL|ids wake quickly final instructions. fur| +47277|948634|23671|2|41|68986.19|0.02|0.06|A|F|1995-05-01|1995-03-15|1995-05-16|COLLECT COD|MAIL| theodolites| +47277|678842|16382|3|27|49161.87|0.04|0.06|A|F|1995-03-29|1995-03-15|1995-04-06|COLLECT COD|RAIL|usly about the silent excuses. carefull| +47278|806763|44312|1|7|11688.04|0.09|0.03|A|F|1992-06-08|1992-06-21|1992-06-23|NONE|MAIL|. slyly express deposits are blit| +47278|257504|45020|2|42|61382.58|0.04|0.05|R|F|1992-08-23|1992-07-14|1992-09-12|COLLECT COD|REG AIR| final, ex| +47278|864852|39887|3|36|65405.16|0.00|0.07|R|F|1992-07-09|1992-07-09|1992-08-05|COLLECT COD|RAIL|er. carefully ironic req| +47279|965395|2953|1|35|51112.25|0.05|0.01|R|F|1995-05-17|1995-04-25|1995-05-22|DELIVER IN PERSON|SHIP|y warthogs: furiously final co| +47279|379636|4651|2|48|82349.76|0.09|0.04|R|F|1995-05-09|1995-03-17|1995-06-02|DELIVER IN PERSON|TRUCK|efully silen| +47304|905739|30776|1|28|48851.32|0.08|0.03|R|F|1993-09-16|1993-09-22|1993-09-30|COLLECT COD|FOB|cross the carefully fi| +47304|747461|22490|2|42|63354.06|0.07|0.05|A|F|1993-07-12|1993-08-15|1993-07-22|COLLECT COD|FOB|warthogs boost abou| +47304|575867|890|3|44|85484.96|0.08|0.08|R|F|1993-10-30|1993-08-22|1993-11-21|NONE|MAIL|oze fluffily final theodo| +47304|589647|14670|4|44|76411.28|0.03|0.04|R|F|1993-10-23|1993-09-16|1993-11-03|NONE|AIR|ously. ironic packages haggle furiously| +47304|180851|30852|5|9|17386.65|0.07|0.01|A|F|1993-11-04|1993-09-12|1993-12-04|COLLECT COD|AIR|ithely final deposits. ca| +47304|548161|35692|6|1|1209.14|0.07|0.07|A|F|1993-10-30|1993-09-18|1993-11-07|DELIVER IN PERSON|MAIL|ggle carefully. | +47304|933190|33191|7|17|20793.55|0.03|0.01|A|F|1993-07-13|1993-09-01|1993-08-05|DELIVER IN PERSON|AIR|arefully regular dependencies | +47305|115255|15256|1|3|3810.75|0.03|0.04|N|O|1997-05-06|1997-03-27|1997-05-08|NONE|SHIP|nstructions across the furiously ironic gif| +47305|90467|40468|2|49|71415.54|0.06|0.00|N|O|1997-05-04|1997-04-09|1997-05-20|COLLECT COD|REG AIR|packages are despite| +47305|465306|27816|3|39|49579.92|0.01|0.06|N|O|1997-06-17|1997-05-07|1997-07-11|COLLECT COD|AIR| foxes use furiously | +47306|667359|17360|1|9|11936.88|0.03|0.08|N|O|1996-11-04|1996-12-18|1996-11-24|TAKE BACK RETURN|FOB|ole blithely above the unusu| +47306|290346|2852|2|22|29399.26|0.09|0.07|N|O|1996-11-24|1996-12-10|1996-12-24|TAKE BACK RETURN|FOB|r the carefully pending foxes haggle fluf| +47307|397416|22431|1|27|40861.80|0.02|0.04|R|F|1992-05-17|1992-03-09|1992-06-15|TAKE BACK RETURN|FOB|s x-ray carefully. f| +47308|635981|35982|1|12|23003.40|0.09|0.02|N|F|1995-06-05|1995-06-08|1995-06-28|NONE|REG AIR|usual accounts. furiously r| +47308|917419|29938|2|22|31600.14|0.03|0.01|N|F|1995-06-13|1995-05-27|1995-06-23|COLLECT COD|MAIL|s after the requests haggle blithely s| +47308|58841|21343|3|31|55795.04|0.07|0.03|R|F|1995-05-12|1995-06-19|1995-05-20|COLLECT COD|SHIP|the packages integr| +47308|928719|41238|4|40|69906.80|0.05|0.06|N|O|1995-07-01|1995-06-25|1995-07-29|NONE|TRUCK|s. ironic, daring deposits alongside| +47308|969205|19206|5|5|6370.80|0.03|0.03|R|F|1995-04-24|1995-05-11|1995-05-02|DELIVER IN PERSON|MAIL|beans integrate across the final| +47309|803511|28544|1|20|28289.40|0.03|0.02|R|F|1993-04-09|1993-04-13|1993-04-29|TAKE BACK RETURN|TRUCK|ins integrate fluffily against the instruc| +47309|607353|32378|2|7|8822.24|0.00|0.07|A|F|1993-03-25|1993-05-05|1993-04-23|NONE|FOB|l foxes cajole c| +47309|772437|9983|3|45|67923.00|0.10|0.00|A|F|1993-04-03|1993-04-28|1993-04-16|TAKE BACK RETURN|TRUCK|silent Tiresias. b| +47310|737266|37267|1|27|35187.21|0.02|0.06|N|O|1996-02-29|1996-03-24|1996-03-09|NONE|REG AIR| quickly regular | +47310|220799|20800|2|39|67071.42|0.08|0.05|N|O|1996-05-20|1996-04-24|1996-06-10|NONE|TRUCK|gedly blithely silent requests. even ex| +47310|964123|26643|3|16|18993.28|0.03|0.08|N|O|1996-05-25|1996-04-06|1996-06-14|NONE|REG AIR|eposits. caref| +47310|5626|30627|4|27|41353.74|0.00|0.02|N|O|1996-03-14|1996-05-22|1996-04-06|NONE|TRUCK|riously final de| +47311|977189|27190|1|40|50645.60|0.06|0.03|N|O|1996-11-28|1996-12-27|1996-12-14|NONE|RAIL|ntain blithely slyly final p| +47311|612655|12656|2|11|17243.82|0.01|0.01|N|O|1997-02-09|1996-12-17|1997-02-12|DELIVER IN PERSON|MAIL|instructions. blithely final theodolite| +47311|882742|45260|3|13|22421.10|0.07|0.04|N|O|1996-12-30|1996-12-16|1997-01-24|COLLECT COD|SHIP|o beans nag slyly fin| +47311|234076|46581|4|33|33331.98|0.07|0.06|N|O|1996-11-11|1996-12-06|1996-11-24|NONE|SHIP|lar excuses wak| +47311|109117|21620|5|40|45044.40|0.08|0.08|N|O|1997-01-03|1996-11-30|1997-01-15|NONE|MAIL|oze carefully regular pa| +47336|450634|25653|1|49|77645.89|0.01|0.02|N|O|1996-05-01|1996-05-12|1996-05-26|COLLECT COD|FOB| cajole alongside of the care| +47336|798823|11339|2|44|84558.76|0.01|0.08|N|O|1996-06-28|1996-06-04|1996-07-19|TAKE BACK RETURN|FOB|c accounts sleep am| +47336|817102|42135|3|4|4076.24|0.10|0.00|N|O|1996-03-30|1996-05-23|1996-04-18|COLLECT COD|MAIL|sts would | +47336|28619|28620|4|27|41785.47|0.01|0.05|N|O|1996-05-17|1996-04-14|1996-06-16|COLLECT COD|SHIP|oxes. carefully regular packages integrate| +47336|994803|7323|5|25|47444.00|0.04|0.06|N|O|1996-06-21|1996-04-27|1996-07-16|COLLECT COD|SHIP|c accounts| +47337|297282|47283|1|19|24306.13|0.01|0.01|R|F|1993-07-04|1993-07-06|1993-07-19|DELIVER IN PERSON|REG AIR|e blithely sp| +47337|413342|13343|2|48|60255.36|0.09|0.02|R|F|1993-06-05|1993-08-05|1993-06-13|NONE|REG AIR|ost. blithely s| +47337|33965|46466|3|49|93049.04|0.06|0.04|A|F|1993-07-14|1993-08-09|1993-08-09|NONE|AIR|etect blithely special, re| +47337|843572|31121|4|2|3031.06|0.05|0.07|A|F|1993-06-11|1993-08-25|1993-07-02|TAKE BACK RETURN|RAIL|ainst the ideas. furiously unusual ideas| +47338|883850|46368|1|4|7335.24|0.09|0.05|A|F|1993-02-11|1993-02-08|1993-03-09|NONE|RAIL|ffily final packages sleep foxes. s| +47338|860318|47870|2|39|49852.53|0.09|0.02|R|F|1993-03-06|1993-03-15|1993-04-01|TAKE BACK RETURN|REG AIR|lly final dolphins. fluffily fluf| +47338|363404|25912|3|17|24945.63|0.00|0.01|A|F|1993-03-12|1993-03-02|1993-03-27|NONE|MAIL|uests wake f| +47338|720383|32898|4|33|46310.55|0.06|0.02|A|F|1992-12-22|1993-02-02|1993-01-07|NONE|AIR|es wake accordi| +47338|462743|37762|5|19|32408.68|0.09|0.08|A|F|1993-02-06|1993-01-18|1993-02-23|NONE|REG AIR|nic excuses wake slyly blithely pending| +47339|898748|48749|1|41|71614.70|0.09|0.00|A|F|1992-06-11|1992-08-02|1992-07-11|DELIVER IN PERSON|TRUCK|ly final, pen| +47339|249695|49696|2|48|78944.64|0.09|0.03|A|F|1992-09-12|1992-07-20|1992-10-04|TAKE BACK RETURN|MAIL|ckages haggle slyly. blithely bold accou| +47339|607131|19644|3|4|4152.40|0.02|0.04|A|F|1992-06-10|1992-08-27|1992-07-05|TAKE BACK RETURN|MAIL|thely. blithely | +47339|40003|2504|4|41|38663.00|0.01|0.04|R|F|1992-06-22|1992-08-22|1992-07-17|TAKE BACK RETURN|FOB|ding to the final accounts. carefully | +47339|313976|1495|5|39|77608.44|0.00|0.06|R|F|1992-08-04|1992-08-30|1992-08-27|NONE|TRUCK|arefully regular p| +47339|981323|31324|6|45|63192.60|0.07|0.04|A|F|1992-08-23|1992-09-01|1992-09-08|COLLECT COD|SHIP|. carefully unusual deposi| +47340|375261|25262|1|3|4008.75|0.00|0.08|N|O|1998-06-22|1998-06-23|1998-07-10|COLLECT COD|FOB|rs cajole fluff| +47340|6510|6511|2|31|43911.81|0.09|0.03|N|O|1998-06-18|1998-06-10|1998-07-09|DELIVER IN PERSON|FOB| beans to the a| +47340|408103|33120|3|30|30332.40|0.07|0.02|N|O|1998-04-13|1998-06-23|1998-04-30|NONE|AIR| grouches. flu| +47340|986325|11364|4|28|39515.84|0.03|0.08|N|O|1998-05-20|1998-05-28|1998-06-10|TAKE BACK RETURN|RAIL|pending theodolites! slyly express requests| +47340|153200|3201|5|27|33836.40|0.04|0.05|N|O|1998-07-21|1998-06-20|1998-08-20|NONE|MAIL|ic hockey players do| +47340|827214|39731|6|6|6847.02|0.00|0.06|N|O|1998-04-30|1998-07-04|1998-05-15|DELIVER IN PERSON|MAIL|ermanent, final deposits are slyly| +47340|974025|11583|7|1|1098.98|0.05|0.04|N|O|1998-05-14|1998-06-12|1998-05-30|TAKE BACK RETURN|REG AIR|lites. deposi| +47341|428539|28540|1|29|42557.79|0.05|0.05|N|O|1997-01-13|1996-11-30|1997-01-17|NONE|FOB|al requests-- furiously express deco| +47341|448802|11311|2|43|75283.54|0.04|0.04|N|O|1996-10-27|1996-11-30|1996-11-12|DELIVER IN PERSON|FOB|onic, pending platelets boost around | +47342|578751|16285|1|41|75018.93|0.00|0.05|A|F|1994-07-25|1994-07-14|1994-08-13|NONE|FOB|ely according to the slyly even acc| +47342|53350|28353|2|12|15640.20|0.00|0.00|R|F|1994-07-20|1994-07-12|1994-08-18|COLLECT COD|SHIP|e quickly slow deposits| +47342|650175|176|3|40|45005.60|0.10|0.00|A|F|1994-05-16|1994-08-09|1994-05-27|DELIVER IN PERSON|RAIL|- quickly final waters unwind: quickly| +47342|476714|14242|4|15|25360.35|0.01|0.06|R|F|1994-07-14|1994-07-10|1994-08-13|DELIVER IN PERSON|TRUCK|tipliers nag. quickly express i| +47342|122758|22759|5|12|21369.00|0.04|0.02|A|F|1994-07-28|1994-07-22|1994-08-22|DELIVER IN PERSON|RAIL|s cajole furiousl| +47342|178284|28285|6|18|24521.04|0.04|0.06|R|F|1994-08-24|1994-06-28|1994-09-18|NONE|MAIL|eas haggle slyly pe| +47342|416476|28985|7|2|2784.90|0.07|0.07|R|F|1994-08-29|1994-07-22|1994-09-23|COLLECT COD|TRUCK| silent requests integ| +47343|712012|12013|1|25|25599.50|0.10|0.03|N|O|1995-07-01|1995-06-19|1995-07-07|COLLECT COD|REG AIR|regular fox| +47343|781055|6086|2|41|46576.82|0.08|0.05|N|F|1995-06-17|1995-07-28|1995-06-22|DELIVER IN PERSON|RAIL|hely ironic requests. e| +47343|190627|28137|3|23|39505.26|0.03|0.04|N|O|1995-07-14|1995-06-30|1995-08-06|DELIVER IN PERSON|REG AIR|s cajole slyly | +47343|860686|23204|4|2|3293.28|0.05|0.06|N|F|1995-06-09|1995-06-29|1995-07-01|TAKE BACK RETURN|RAIL|he bold, final deposits. special i| +47343|543129|30660|5|50|58605.00|0.01|0.07|N|F|1995-06-07|1995-08-04|1995-06-24|COLLECT COD|REG AIR| final theodolites believe qu| +47368|833155|33156|1|31|33731.41|0.04|0.01|A|F|1995-03-14|1995-04-24|1995-04-04|NONE|AIR| unusual foxes use ironic idea| +47368|819940|32457|2|42|78115.80|0.04|0.06|A|F|1995-03-28|1995-05-17|1995-04-01|TAKE BACK RETURN|TRUCK|symptotes use against the silent decoys. | +47368|729150|16693|3|24|28298.88|0.01|0.06|R|F|1995-03-30|1995-05-31|1995-04-15|DELIVER IN PERSON|AIR|e along the ironic, pendi| +47368|819791|32308|4|27|46190.25|0.08|0.06|A|F|1995-03-24|1995-05-12|1995-04-10|TAKE BACK RETURN|MAIL|jole furiously: regular,| +47368|224164|49173|5|9|9793.35|0.09|0.08|R|F|1995-06-01|1995-04-30|1995-06-14|NONE|TRUCK| carefully ironic t| +47368|519940|7471|6|8|15679.36|0.08|0.02|A|F|1995-03-03|1995-05-21|1995-03-27|NONE|RAIL|nic courts. even, regular asym| +47368|628689|41202|7|16|25882.40|0.10|0.02|A|F|1995-06-03|1995-04-23|1995-06-07|NONE|SHIP|s wake among the bold packages. quickly f| +47369|372216|22217|1|16|20611.20|0.05|0.08|R|F|1993-05-19|1993-06-04|1993-05-22|DELIVER IN PERSON|TRUCK| past the sp| +47370|338141|13154|1|37|43627.81|0.01|0.07|R|F|1992-07-22|1992-07-22|1992-07-24|COLLECT COD|AIR|xes affix blithely special| +47370|122108|34611|2|3|3390.30|0.08|0.04|R|F|1992-08-04|1992-08-25|1992-09-03|DELIVER IN PERSON|RAIL|ages run. carefull| +47370|259811|22317|3|49|86769.20|0.04|0.01|A|F|1992-06-23|1992-08-25|1992-07-23|DELIVER IN PERSON|REG AIR|y special dependencies. quickly express pa| +47370|626691|39204|4|41|66324.06|0.06|0.06|A|F|1992-09-19|1992-07-19|1992-09-24|DELIVER IN PERSON|AIR|ets among the ironic, re| +47370|794282|31828|5|21|28901.25|0.08|0.00|A|F|1992-09-30|1992-08-08|1992-10-19|TAKE BACK RETURN|FOB|tegrate carefully closely pe| +47370|485811|10830|6|47|84449.13|0.10|0.06|A|F|1992-08-03|1992-07-17|1992-08-10|COLLECT COD|MAIL|ven ideas boost slyly. bl| +47370|10920|48421|7|19|34787.48|0.03|0.03|R|F|1992-08-21|1992-07-15|1992-09-08|NONE|SHIP|riously express platele| +47371|527350|14881|1|26|35810.58|0.00|0.08|N|O|1998-07-17|1998-06-14|1998-07-18|TAKE BACK RETURN|SHIP|orges boost blith| +47371|163583|13584|2|5|8232.90|0.07|0.07|N|O|1998-05-20|1998-06-21|1998-05-23|COLLECT COD|FOB|en packages. even accounts aff| +47371|332387|7400|3|8|11354.96|0.01|0.00|N|O|1998-07-14|1998-07-10|1998-07-22|COLLECT COD|REG AIR|posits nag blithely | +47371|427738|15263|4|5|8328.55|0.10|0.02|N|O|1998-07-17|1998-07-18|1998-07-30|TAKE BACK RETURN|TRUCK|riously fin| +47371|990342|2862|5|24|34375.20|0.10|0.04|N|O|1998-05-28|1998-07-09|1998-05-30|DELIVER IN PERSON|MAIL|l accounts. q| +47371|673659|36173|6|43|70202.66|0.10|0.06|N|O|1998-08-01|1998-07-19|1998-08-08|TAKE BACK RETURN|REG AIR|silently ironic requests a| +47371|181475|6482|7|30|46694.10|0.06|0.00|N|O|1998-07-11|1998-07-14|1998-07-13|DELIVER IN PERSON|TRUCK|onic packages. slyly silent decoys det| +47372|37014|12015|1|13|12363.13|0.01|0.02|A|F|1993-03-06|1993-04-05|1993-03-10|NONE|REG AIR|ously unusual foxes arou| +47372|87633|135|2|2|3241.26|0.00|0.05|R|F|1993-05-28|1993-04-06|1993-06-16|TAKE BACK RETURN|FOB|jole slyly carefully regular| +47372|834429|9462|3|39|53171.82|0.05|0.06|R|F|1993-04-07|1993-04-21|1993-04-17|COLLECT COD|REG AIR|es. theodolit| +47372|245370|20379|4|32|42091.52|0.02|0.05|A|F|1993-06-09|1993-04-23|1993-06-19|COLLECT COD|MAIL|latelets about the regular, sly packages a| +47372|920282|32801|5|33|42973.92|0.07|0.08|R|F|1993-06-29|1993-03-31|1993-07-15|TAKE BACK RETURN|REG AIR|eodolites wake. furio| +47373|445244|45245|1|44|52325.68|0.07|0.05|N|O|1996-04-10|1996-02-21|1996-05-03|NONE|AIR|requests cajole carefully| +47374|511174|11175|1|3|3555.45|0.06|0.01|N|O|1995-12-02|1996-02-03|1995-12-30|NONE|RAIL|foxes cajole express, final accounts. | +47374|297006|34522|2|44|44131.56|0.00|0.04|N|O|1995-11-26|1996-02-09|1995-11-28|NONE|TRUCK|inal asymp| +47374|775060|91|3|27|30645.81|0.03|0.01|N|O|1995-12-31|1996-02-02|1996-01-18|DELIVER IN PERSON|RAIL|gular foxes. carefull| +47375|254239|29250|1|3|3579.66|0.07|0.03|A|F|1994-06-12|1994-08-20|1994-07-02|DELIVER IN PERSON|SHIP|ly slyly express depen| +47375|986140|23698|2|24|29426.40|0.09|0.05|R|F|1994-09-12|1994-07-05|1994-09-14|TAKE BACK RETURN|RAIL|ounts. carefully special deposits i| +47375|43596|43597|3|28|43108.52|0.08|0.01|R|F|1994-06-11|1994-07-12|1994-06-12|NONE|TRUCK|aggle. pending, pending | +47375|707078|44621|4|36|39061.44|0.10|0.06|A|F|1994-06-22|1994-07-15|1994-07-03|NONE|REG AIR|ar asymptotes. carefully final r| +47400|260535|10536|1|1|1495.52|0.05|0.03|N|O|1997-10-26|1997-12-02|1997-11-02|COLLECT COD|SHIP| asymptotes. furiously i| +47400|806588|44137|2|32|47825.28|0.01|0.00|N|O|1998-01-06|1997-11-07|1998-01-19|DELIVER IN PERSON|RAIL|tes cajole| +47400|318609|6128|3|10|16275.90|0.10|0.03|N|O|1997-10-02|1997-12-08|1997-10-20|TAKE BACK RETURN|TRUCK|y deposits| +47401|174996|37500|1|19|39348.81|0.05|0.06|A|F|1995-01-15|1995-01-01|1995-02-03|DELIVER IN PERSON|REG AIR|ecial ideas. ironic | +47401|147471|9974|2|24|36443.28|0.05|0.02|A|F|1995-01-15|1994-12-06|1995-01-24|DELIVER IN PERSON|REG AIR|lent deposits haggle blithely acc| +47402|165447|15448|1|15|22686.60|0.04|0.06|R|F|1993-09-14|1993-10-01|1993-10-06|COLLECT COD|AIR|ic packages. regular de| +47402|663371|25885|2|31|41364.54|0.07|0.04|R|F|1993-07-21|1993-09-18|1993-08-19|TAKE BACK RETURN|RAIL|r instructions b| +47403|870895|45930|1|4|7463.40|0.02|0.06|A|F|1994-09-01|1994-09-15|1994-09-21|DELIVER IN PERSON|REG AIR| evenly regular ideas use instruct| +47403|122015|22016|2|34|35258.34|0.08|0.03|A|F|1994-09-26|1994-09-18|1994-10-05|DELIVER IN PERSON|REG AIR|gular instructions hagg| +47403|695703|45704|3|12|20384.04|0.06|0.08|A|F|1994-08-10|1994-08-26|1994-08-26|COLLECT COD|MAIL|lites nod blithely regular requests. dep| +47404|315003|2522|1|32|32575.68|0.07|0.07|R|F|1994-04-17|1994-04-27|1994-05-04|NONE|TRUCK|arefully f| +47404|249988|37501|2|32|62015.04|0.04|0.07|A|F|1994-05-28|1994-04-17|1994-06-17|DELIVER IN PERSON|SHIP|ajole blithely furio| +47404|539857|2368|3|24|45523.92|0.06|0.02|R|F|1994-02-25|1994-04-01|1994-03-21|NONE|TRUCK| bold, unusual requests serve blithely s| +47404|361736|36751|4|43|77301.96|0.05|0.02|R|F|1994-03-28|1994-05-10|1994-04-15|DELIVER IN PERSON|SHIP|ld, even dependencies above t| +47405|781628|44144|1|7|11967.13|0.05|0.04|R|F|1994-08-08|1994-06-12|1994-08-25|DELIVER IN PERSON|TRUCK|fluffily thr| +47405|816772|4321|2|27|45595.71|0.01|0.06|A|F|1994-07-05|1994-06-15|1994-07-15|DELIVER IN PERSON|RAIL|old, regular deposits use furiously| +47406|957233|7234|1|5|6450.95|0.06|0.03|R|F|1992-07-22|1992-06-04|1992-08-07|COLLECT COD|TRUCK|ges. carefull| +47406|212904|12905|2|11|19985.79|0.00|0.01|A|F|1992-05-06|1992-05-12|1992-05-24|DELIVER IN PERSON|SHIP| cajole along the even, regular depos| +47407|235791|10800|1|25|43169.50|0.06|0.05|A|F|1992-12-09|1992-11-24|1993-01-03|DELIVER IN PERSON|REG AIR|ress accounts. accounts haggle| +47407|938472|38473|2|32|48333.76|0.04|0.01|R|F|1993-02-04|1993-01-22|1993-02-09|NONE|REG AIR|dependencies. | +47407|887594|37595|3|46|72751.30|0.08|0.00|R|F|1992-11-07|1993-01-18|1992-11-26|NONE|TRUCK|ar dolphins boost c| +47407|785407|47923|4|50|74618.50|0.02|0.00|A|F|1992-11-19|1993-01-03|1992-11-21|DELIVER IN PERSON|REG AIR| final ideas. ironic account| +47432|423710|23711|1|22|35941.18|0.07|0.04|R|F|1993-04-08|1993-05-15|1993-04-13|TAKE BACK RETURN|TRUCK|jole. carefully silent dep| +47432|285424|35425|2|43|60604.63|0.09|0.01|A|F|1993-06-21|1993-04-27|1993-06-30|COLLECT COD|RAIL|uses. carefully special| +47432|105270|5271|3|47|59937.69|0.10|0.03|R|F|1993-06-30|1993-05-25|1993-07-05|COLLECT COD|SHIP|fily ironic | +47432|256647|6648|4|40|64145.20|0.06|0.04|A|F|1993-04-15|1993-05-08|1993-05-03|DELIVER IN PERSON|REG AIR| wake slyly slyly regular as| +47432|452961|15471|5|6|11483.64|0.03|0.00|R|F|1993-05-10|1993-06-10|1993-06-06|COLLECT COD|TRUCK|ecial waters: ironic deposits sleep| +47432|910986|36023|6|40|79877.60|0.08|0.06|A|F|1993-04-11|1993-04-28|1993-04-25|DELIVER IN PERSON|FOB| about the furiously regular packages. fur| +47433|292209|42210|1|8|9609.52|0.03|0.04|A|F|1994-05-15|1994-04-14|1994-05-19|TAKE BACK RETURN|AIR|ly even waters. carefull| +47433|149338|24343|2|5|6936.65|0.08|0.03|R|F|1994-04-07|1994-05-11|1994-04-17|DELIVER IN PERSON|RAIL|egular ideas. slyly regular deposits wa| +47433|914853|27372|3|49|91522.69|0.08|0.01|R|F|1994-03-16|1994-03-29|1994-03-20|DELIVER IN PERSON|REG AIR|ithely pending deposits use furiously. | +47434|570643|33155|1|30|51408.60|0.05|0.08|A|F|1995-03-01|1995-02-17|1995-03-24|TAKE BACK RETURN|SHIP|ress instructions. slyly bold deposits abov| +47434|787903|25449|2|25|49771.75|0.02|0.04|A|F|1995-01-14|1995-03-14|1995-01-22|TAKE BACK RETURN|SHIP|. carefully bold dependencies unt| +47434|276244|1255|3|10|12202.30|0.09|0.01|R|F|1995-03-03|1995-03-06|1995-03-22|DELIVER IN PERSON|RAIL| furiously reg| +47434|830814|18363|4|20|34895.40|0.02|0.06|A|F|1995-05-06|1995-02-23|1995-05-26|TAKE BACK RETURN|RAIL|sly courts cajole carefully. furiously| +47435|700068|12583|1|48|51265.44|0.07|0.01|N|O|1997-11-27|1998-01-05|1997-11-29|TAKE BACK RETURN|TRUCK|hely bold instructions. b| +47435|32860|32861|2|34|60957.24|0.01|0.02|N|O|1997-12-04|1997-12-28|1997-12-14|DELIVER IN PERSON|FOB|ously ironic dolphins lose. regul| +47435|276450|38956|3|39|55631.16|0.05|0.03|N|O|1998-02-11|1997-12-17|1998-03-04|NONE|RAIL|to beans alongside of the regular p| +47435|290343|27859|4|5|6666.65|0.07|0.04|N|O|1997-10-19|1997-12-12|1997-11-16|COLLECT COD|FOB| the regular packages. deposits b| +47435|793811|18842|5|11|20952.58|0.03|0.01|N|O|1998-01-30|1998-01-09|1998-02-09|TAKE BACK RETURN|SHIP|layers cajole through the| +47435|578125|40637|6|13|15640.30|0.04|0.05|N|O|1997-10-17|1997-12-16|1997-10-27|DELIVER IN PERSON|FOB|telets. carefully bold p| +47435|545158|20179|7|32|38500.16|0.02|0.01|N|O|1997-10-28|1997-12-29|1997-11-05|NONE|TRUCK|onic frets nag slyly. accou| +47436|465857|28367|1|18|32810.94|0.10|0.05|N|O|1995-10-24|1995-10-10|1995-11-01|TAKE BACK RETURN|REG AIR|ove the packages w| +47436|656789|19303|2|13|22694.75|0.04|0.07|N|O|1995-08-22|1995-09-17|1995-09-01|COLLECT COD|SHIP|the theodolites wak| +47437|681884|6911|1|17|31719.45|0.10|0.05|R|F|1992-05-22|1992-06-06|1992-06-08|DELIVER IN PERSON|MAIL|ess foxes x-ray. bravely final req| +47437|423558|36067|2|17|25186.01|0.08|0.08|A|F|1992-05-06|1992-06-24|1992-06-01|NONE|AIR|ts serve fluffily above| +47438|819066|44099|1|47|46295.94|0.06|0.00|A|F|1995-03-23|1995-05-15|1995-03-24|DELIVER IN PERSON|TRUCK|furiously across the carefu| +47438|32019|19520|2|15|14265.15|0.00|0.01|N|O|1995-07-17|1995-05-20|1995-08-07|TAKE BACK RETURN|SHIP|uests are carefully packages.| +47438|138975|1478|3|42|84586.74|0.01|0.02|N|O|1995-07-16|1995-06-12|1995-08-12|TAKE BACK RETURN|MAIL|onic dependencies slee| +47439|781266|18812|1|1|1347.23|0.01|0.08|N|O|1995-10-10|1995-09-09|1995-10-23|DELIVER IN PERSON|RAIL|s integrate bravely above| +47439|732505|7534|2|25|38436.75|0.09|0.03|N|O|1995-08-11|1995-09-03|1995-08-16|DELIVER IN PERSON|RAIL|ffily express courts. quick| +47439|207475|44988|3|13|17971.98|0.07|0.08|N|O|1995-07-25|1995-08-31|1995-08-22|DELIVER IN PERSON|TRUCK|ending accounts. express, regular fox| +47439|20925|8426|4|10|18459.20|0.03|0.04|N|O|1995-09-04|1995-07-25|1995-09-14|DELIVER IN PERSON|SHIP|osits. carefully special foxe| +47439|680267|30268|5|16|19955.68|0.02|0.05|N|O|1995-06-22|1995-08-30|1995-07-16|NONE|REG AIR|onic dependencies. care| +47439|234626|47131|6|44|68666.84|0.08|0.00|N|O|1995-07-18|1995-09-17|1995-08-11|TAKE BACK RETURN|REG AIR|ress theod| +47464|190321|15328|1|18|25403.76|0.10|0.06|N|O|1996-08-27|1996-07-24|1996-09-14|TAKE BACK RETURN|SHIP|al deposits haggle c| +47464|708822|33851|2|50|91539.50|0.07|0.03|N|O|1996-07-04|1996-06-06|1996-07-22|DELIVER IN PERSON|REG AIR|eposits sleep slyly above the final, reg| +47464|163328|38335|3|2|2782.64|0.06|0.08|N|O|1996-07-23|1996-06-09|1996-08-20|TAKE BACK RETURN|FOB|ound the blithely ironic deposits. regu| +47464|37073|37074|4|27|27271.89|0.03|0.07|N|O|1996-08-25|1996-07-06|1996-09-21|NONE|FOB|ounts sleep across the expre| +47464|69623|19624|5|39|62112.18|0.00|0.00|N|O|1996-07-16|1996-06-10|1996-08-14|COLLECT COD|TRUCK|instruction| +47465|669635|44662|1|28|44928.80|0.00|0.02|R|F|1995-05-21|1995-03-26|1995-05-22|NONE|REG AIR|efully ironic packages cajole blithel| +47465|542618|17639|2|1|1660.59|0.10|0.04|N|F|1995-06-09|1995-03-25|1995-06-18|DELIVER IN PERSON|FOB| theodolites.| +47466|322251|22252|1|16|20371.84|0.09|0.03|R|F|1993-10-22|1993-11-12|1993-10-27|COLLECT COD|REG AIR|to beans. blithely i| +47466|58198|20700|2|50|57809.50|0.06|0.04|A|F|1993-10-24|1993-12-10|1993-11-14|COLLECT COD|RAIL|thely iron| +47466|129253|29254|3|45|57701.25|0.09|0.01|R|F|1993-12-19|1993-12-07|1994-01-05|TAKE BACK RETURN|MAIL|poach thinly regular| +47466|343026|43027|4|13|13897.13|0.01|0.08|R|F|1994-01-30|1994-01-01|1994-02-24|TAKE BACK RETURN|RAIL|osits. even requests sleep carefully a| +47466|235279|47784|5|8|9714.08|0.04|0.01|A|F|1993-12-30|1993-11-09|1994-01-08|TAKE BACK RETURN|MAIL|st the final theodolites. perma| +47466|317718|5237|6|50|86785.00|0.10|0.06|A|F|1994-01-15|1993-12-27|1994-02-04|TAKE BACK RETURN|TRUCK|lithely silent dependencies will kindl| +47467|767404|29920|1|10|14713.70|0.05|0.06|R|F|1992-05-30|1992-05-29|1992-06-14|NONE|REG AIR|theodolites are quickly fin| +47468|97075|47076|1|25|26801.75|0.01|0.08|A|F|1993-08-11|1993-06-23|1993-08-31|COLLECT COD|REG AIR|express accounts sleep furiously| +47468|531104|18635|2|12|13620.96|0.07|0.07|R|F|1993-06-05|1993-06-20|1993-06-12|DELIVER IN PERSON|SHIP|y according to the slyly unusual | +47468|257737|45253|3|50|84736.00|0.00|0.04|R|F|1993-07-09|1993-08-07|1993-08-05|TAKE BACK RETURN|FOB| affix furiously; sl| +47468|780573|18119|4|46|76062.84|0.04|0.06|R|F|1993-06-19|1993-08-19|1993-07-04|DELIVER IN PERSON|TRUCK|ole after the regular accounts.| +47469|212263|49776|1|30|35257.50|0.02|0.08|N|O|1998-05-06|1998-04-20|1998-05-31|DELIVER IN PERSON|REG AIR|ffix about the requests. unusual,| +47469|501335|13846|2|26|34744.06|0.02|0.03|N|O|1998-05-04|1998-05-04|1998-05-22|COLLECT COD|TRUCK| according to the senti| +47469|930199|5236|3|49|60228.35|0.02|0.02|N|O|1998-03-06|1998-05-24|1998-03-12|NONE|SHIP|he ironic, bold deposits are pending re| +47469|841219|28768|4|10|11601.70|0.03|0.05|N|O|1998-03-31|1998-05-13|1998-04-09|COLLECT COD|FOB|fily regula| +47469|352292|14800|5|16|21508.48|0.00|0.07|N|O|1998-03-05|1998-05-26|1998-03-10|NONE|FOB| about the regular theodol| +47470|101435|38942|1|11|15800.73|0.02|0.08|N|O|1997-06-27|1997-08-02|1997-07-18|NONE|REG AIR|ges nag sly| +47471|985238|22796|1|20|26463.80|0.09|0.04|A|F|1992-05-29|1992-05-31|1992-06-27|DELIVER IN PERSON|FOB|ly pending| +47471|890900|15935|2|42|79416.12|0.07|0.03|R|F|1992-08-01|1992-06-13|1992-08-10|COLLECT COD|FOB|regular theod| +47471|343151|43152|3|28|33435.92|0.00|0.08|A|F|1992-07-15|1992-06-04|1992-08-05|DELIVER IN PERSON|FOB|ly bold deposits. furiously regular foxes a| +47471|335845|35846|4|8|15046.64|0.06|0.01|A|F|1992-07-26|1992-05-09|1992-07-27|TAKE BACK RETURN|REG AIR|ar deposits cajole re| +47471|533905|8926|5|17|32960.96|0.09|0.05|A|F|1992-04-14|1992-06-14|1992-05-04|TAKE BACK RETURN|REG AIR|al gifts haggle blithely. pending,| +47471|328472|40979|6|27|40512.42|0.09|0.06|A|F|1992-05-10|1992-07-02|1992-05-12|DELIVER IN PERSON|SHIP|theodolites are fluffily against| +47471|628212|40725|7|26|29644.68|0.09|0.01|A|F|1992-05-31|1992-05-19|1992-06-15|COLLECT COD|AIR|ackages sleep behind th| +47496|348778|23791|1|48|87684.48|0.04|0.04|A|F|1992-08-31|1992-10-31|1992-09-11|DELIVER IN PERSON|RAIL|ely regular accounts. slyly even | +47496|909362|21881|2|23|31540.36|0.06|0.06|R|F|1992-12-13|1992-10-22|1993-01-03|DELIVER IN PERSON|MAIL| nod fluffily ironic theodolites.| +47496|641240|28777|3|44|51973.24|0.00|0.08|A|F|1992-12-02|1992-11-03|1992-12-20|COLLECT COD|FOB|old instructions integrate | +47496|306454|43973|4|20|29208.80|0.02|0.01|R|F|1992-10-26|1992-11-23|1992-10-29|TAKE BACK RETURN|MAIL|s nag inside t| +47496|559069|21581|5|45|50761.80|0.04|0.07|R|F|1992-11-26|1992-11-04|1992-12-15|TAKE BACK RETURN|MAIL|heodolites along the furiously even | +47496|269443|31949|6|49|69209.07|0.01|0.08|R|F|1992-10-22|1992-11-04|1992-10-29|COLLECT COD|SHIP|ess deposits solve qui| +47496|520665|20666|7|20|33712.80|0.00|0.06|R|F|1992-09-21|1992-11-14|1992-10-13|TAKE BACK RETURN|RAIL|ckly ironic ideas. fl| +47497|807702|45251|1|41|65996.06|0.03|0.07|A|F|1993-09-23|1993-10-18|1993-10-21|TAKE BACK RETURN|FOB|. furiously ev| +47497|32772|20273|2|17|28981.09|0.04|0.06|A|F|1993-08-24|1993-10-09|1993-09-22|TAKE BACK RETURN|RAIL|fluffily slow instru| +47497|796750|9266|3|44|81255.68|0.10|0.07|R|F|1993-10-05|1993-09-02|1993-10-16|DELIVER IN PERSON|TRUCK| packages! blithely regular theodolite| +47497|966890|29410|4|16|31309.60|0.01|0.07|A|F|1993-11-21|1993-09-02|1993-11-27|NONE|FOB|fully. ironic, regular packag| +47497|517965|17966|5|6|11897.64|0.09|0.04|A|F|1993-11-22|1993-09-03|1993-12-07|DELIVER IN PERSON|SHIP|ar ideas according to the furiously expres| +47497|432283|32284|6|16|19444.16|0.05|0.00|A|F|1993-09-30|1993-10-04|1993-10-22|NONE|REG AIR|ly ironic foxes haggle about th| +47497|374650|49665|7|20|34492.80|0.08|0.07|R|F|1993-09-27|1993-09-03|1993-10-13|NONE|REG AIR| platelets lose bold, special grou| +47498|728335|40850|1|11|14996.30|0.06|0.05|N|O|1995-12-11|1995-11-16|1996-01-06|DELIVER IN PERSON|TRUCK|ic, express deposits sleep bl| +47498|119380|6887|2|44|61572.72|0.09|0.02|N|O|1995-11-08|1995-10-24|1995-12-06|NONE|AIR|eep quickly fluffily fina| +47498|406819|44344|3|44|75934.76|0.09|0.08|N|O|1995-10-27|1995-11-04|1995-10-30|NONE|FOB|. blithely regular acco| +47499|387756|264|1|33|60843.42|0.10|0.00|R|F|1994-09-19|1994-11-17|1994-10-09|DELIVER IN PERSON|RAIL| special packages caj| +47499|12909|37910|2|3|5465.70|0.10|0.03|A|F|1994-10-08|1994-11-09|1994-10-17|DELIVER IN PERSON|FOB|haggle furiously. even foxes wake around| +47499|948764|48765|3|2|3625.44|0.08|0.07|R|F|1994-10-01|1994-11-13|1994-10-04|TAKE BACK RETURN|AIR| special pinto beans affix quickly aro| +47500|224587|12100|1|23|34766.11|0.09|0.06|A|F|1992-10-02|1992-10-06|1992-10-20|NONE|SHIP| instructions. quickly | +47500|628772|41285|2|7|11905.18|0.01|0.08|R|F|1992-10-21|1992-08-12|1992-11-05|COLLECT COD|SHIP|d the furiously even accounts haggl| +47500|769340|31856|3|50|70465.50|0.01|0.00|A|F|1992-10-29|1992-09-21|1992-11-02|NONE|SHIP|eep slyly carefully final deposits. sly| +47501|347230|47231|1|26|33207.72|0.06|0.07|N|O|1996-06-18|1996-05-04|1996-07-02|TAKE BACK RETURN|TRUCK|ithely final dependencies are blithely. un| +47501|889979|39980|2|17|33471.81|0.01|0.04|N|O|1996-03-20|1996-04-14|1996-04-06|TAKE BACK RETURN|REG AIR|riously alongside of the quickly expres| +47501|873072|48107|3|11|11495.33|0.10|0.03|N|O|1996-06-13|1996-04-11|1996-07-13|DELIVER IN PERSON|AIR|e blithely.| +47502|264572|14573|1|4|6146.24|0.02|0.02|R|F|1993-12-29|1993-11-29|1994-01-18|DELIVER IN PERSON|REG AIR|n deposits try to| +47502|651231|38771|2|50|59110.00|0.10|0.06|R|F|1994-01-29|1993-11-20|1994-02-28|TAKE BACK RETURN|AIR|thes are after the carefull| +47502|231130|43635|3|50|53056.00|0.10|0.06|A|F|1993-12-09|1993-11-28|1993-12-30|NONE|RAIL|express, pending r| +47502|593596|43597|4|27|45618.39|0.02|0.05|A|F|1993-11-11|1993-12-18|1993-11-21|TAKE BACK RETURN|MAIL|usual asymptotes| +47503|15690|3191|1|35|56199.15|0.01|0.07|A|F|1995-01-02|1995-01-06|1995-01-15|DELIVER IN PERSON|AIR|gular packages int| +47503|690205|27745|2|50|59758.50|0.05|0.08|R|F|1995-02-06|1994-11-08|1995-02-15|COLLECT COD|RAIL| deposits. silent theodo| +47503|267761|17762|3|36|62235.00|0.02|0.01|A|F|1994-11-27|1994-12-18|1994-12-19|DELIVER IN PERSON|FOB|quests according to the platelets ca| +47503|253032|15538|4|34|33490.68|0.02|0.08|R|F|1994-12-30|1994-12-22|1995-01-19|TAKE BACK RETURN|REG AIR|ly express requests. furio| +47503|705286|5287|5|1|1291.25|0.00|0.04|A|F|1994-11-07|1994-12-20|1994-11-18|DELIVER IN PERSON|TRUCK| excuses m| +47503|727829|40344|6|46|85412.34|0.05|0.02|A|F|1994-12-29|1994-12-06|1995-01-27|NONE|FOB|the slyly bold dolphins. carefu| +47503|611013|36038|7|44|40655.12|0.09|0.03|A|F|1994-11-24|1994-11-22|1994-12-04|NONE|SHIP|odolites boos| +47528|284279|21795|1|50|63163.00|0.06|0.02|A|F|1994-07-16|1994-07-11|1994-08-07|DELIVER IN PERSON|SHIP| accounts about the even, silent accou| +47528|875622|13174|2|8|12780.64|0.08|0.06|R|F|1994-09-21|1994-07-04|1994-10-20|DELIVER IN PERSON|SHIP|es wake carefully final ideas. furi| +47529|974827|49866|1|3|5705.34|0.10|0.08|A|F|1994-03-11|1994-01-22|1994-04-03|NONE|SHIP|ackages acr| +47529|902972|28009|2|14|27649.02|0.01|0.00|R|F|1994-03-25|1994-03-02|1994-04-10|COLLECT COD|SHIP|sits will have to cajole blithely fluffil| +47530|971457|33977|1|17|25982.97|0.06|0.04|A|F|1992-10-01|1992-11-17|1992-10-14|NONE|REG AIR| accounts boost| +47530|274706|12222|2|40|67227.60|0.09|0.03|R|F|1992-11-24|1992-11-21|1992-12-17|TAKE BACK RETURN|RAIL|cies are quickly. quickly bold package| +47530|975683|38203|3|33|58035.12|0.06|0.01|A|F|1992-08-30|1992-09-27|1992-09-04|COLLECT COD|TRUCK|ies are car| +47530|303022|3023|4|14|14350.14|0.06|0.02|A|F|1992-11-30|1992-11-07|1992-12-02|COLLECT COD|AIR|s. carefully silent pains a| +47530|881968|31969|5|10|19499.20|0.00|0.03|A|F|1992-09-28|1992-09-25|1992-10-14|DELIVER IN PERSON|RAIL|yond the deposits boost carefu| +47530|227472|2481|6|16|22391.36|0.01|0.04|R|F|1992-11-09|1992-10-12|1992-12-05|DELIVER IN PERSON|MAIL|fully. slyly regular acc| +47531|216580|29085|1|7|10475.99|0.02|0.03|N|O|1995-07-08|1995-06-25|1995-07-26|TAKE BACK RETURN|REG AIR|eodolites cajole quickl| +47531|58681|33684|2|15|24595.20|0.08|0.05|N|O|1995-08-02|1995-07-14|1995-08-16|DELIVER IN PERSON|RAIL| slyly accordi| +47532|187095|24605|1|23|27188.07|0.02|0.01|A|F|1992-12-11|1993-01-17|1993-01-01|TAKE BACK RETURN|MAIL| regular accounts. regular excuses n| +47532|495617|33145|2|47|75791.73|0.05|0.02|A|F|1993-02-20|1993-01-08|1993-02-23|DELIVER IN PERSON|AIR|s. carefully | +47532|825624|13173|3|20|30991.60|0.09|0.01|R|F|1993-02-15|1993-01-21|1993-03-15|DELIVER IN PERSON|FOB|ely across the bravely pending pains. i| +47532|259465|21971|4|1|1424.45|0.06|0.08|A|F|1993-01-28|1992-12-14|1993-02-15|TAKE BACK RETURN|TRUCK|asymptotes beside the fur| +47532|816340|16341|5|25|31407.50|0.00|0.01|A|F|1993-01-18|1992-12-16|1993-02-01|TAKE BACK RETURN|FOB|pending requests | +47532|219600|19601|6|27|41028.93|0.08|0.03|R|F|1993-02-04|1993-01-27|1993-02-09|COLLECT COD|AIR|ans boost carefully pending req| +47532|805376|42925|7|31|39721.23|0.08|0.05|A|F|1992-12-17|1993-01-11|1993-01-02|DELIVER IN PERSON|SHIP|lly special pinto| +47533|942429|4948|1|24|35313.12|0.02|0.04|A|F|1992-06-08|1992-06-07|1992-06-21|COLLECT COD|AIR|ns according to the requests wake slyl| +47533|400925|25942|2|33|60254.70|0.00|0.00|R|F|1992-08-27|1992-07-08|1992-09-18|COLLECT COD|FOB|ng pinto be| +47533|330939|30940|3|12|23639.04|0.05|0.01|A|F|1992-05-08|1992-07-20|1992-05-25|COLLECT COD|AIR|y alongside of th| +47533|79998|17502|4|9|17801.91|0.00|0.08|R|F|1992-05-21|1992-07-03|1992-05-23|TAKE BACK RETURN|RAIL|nts hinder. braids boost quickly quickly| +47533|509882|47413|5|2|3783.72|0.02|0.06|A|F|1992-08-12|1992-07-31|1992-09-01|COLLECT COD|REG AIR|sleep quickly above the carefully spec| +47533|583574|8597|6|15|24863.25|0.00|0.07|A|F|1992-06-04|1992-07-13|1992-06-16|COLLECT COD|AIR|dencies. express depend| +47533|124862|24863|7|25|47171.50|0.05|0.03|R|F|1992-08-03|1992-07-18|1992-08-15|NONE|TRUCK|le! carefully silent deposits are| +47534|554632|17144|1|21|35418.81|0.03|0.02|N|O|1996-09-04|1996-08-01|1996-09-24|DELIVER IN PERSON|FOB|ntain regularly brave tithes. regular req| +47534|686476|36477|2|14|20474.16|0.00|0.08|N|O|1996-08-11|1996-07-08|1996-08-16|COLLECT COD|TRUCK|ost carefully iro| +47534|597921|10433|3|2|4037.80|0.03|0.07|N|O|1996-07-20|1996-08-20|1996-08-18|NONE|REG AIR|slyly regular, ironic packages| +47535|344737|19750|1|46|81959.12|0.02|0.01|N|O|1997-12-21|1998-01-21|1998-01-20|NONE|MAIL|slyly special | +47535|982214|44734|2|13|16850.21|0.09|0.03|N|O|1998-03-11|1998-01-03|1998-03-23|COLLECT COD|FOB|thely regular pa| +47535|57356|7357|3|42|55160.70|0.08|0.01|N|O|1997-12-31|1997-12-16|1998-01-11|TAKE BACK RETURN|AIR|blithely regula| +47535|968502|31022|4|12|18845.52|0.02|0.08|N|O|1998-02-08|1997-12-17|1998-03-02|TAKE BACK RETURN|MAIL|ions wake someti| +47535|604520|4521|5|45|64102.05|0.03|0.01|N|O|1998-03-02|1997-12-28|1998-03-12|COLLECT COD|AIR|lyly final foxes. accou| +47535|167090|29594|6|24|27770.16|0.10|0.07|N|O|1998-02-11|1998-01-18|1998-02-18|TAKE BACK RETURN|MAIL|es. foxes detect quiet| +47560|22664|10165|1|19|30146.54|0.06|0.07|N|O|1998-05-09|1998-04-29|1998-05-20|TAKE BACK RETURN|TRUCK| unusual requests. quickly final| +47560|898193|35745|2|4|4764.60|0.09|0.04|N|O|1998-06-02|1998-05-06|1998-06-22|NONE|MAIL|carefully bol| +47560|918354|5909|3|5|6861.55|0.06|0.07|N|O|1998-04-12|1998-06-03|1998-04-14|TAKE BACK RETURN|SHIP|metimes above the furiously ironic theod| +47560|760017|22533|4|41|44156.18|0.07|0.07|N|O|1998-05-28|1998-06-04|1998-06-14|COLLECT COD|AIR| are blithel| +47561|150314|25321|1|30|40929.30|0.02|0.08|N|O|1995-09-11|1995-07-04|1995-09-22|DELIVER IN PERSON|MAIL|lyly regular foxes-- blithely| +47561|314572|27079|2|5|7932.80|0.03|0.06|N|O|1995-07-18|1995-08-12|1995-07-22|NONE|TRUCK| dolphins thrash carefully slyly bu| +47562|146682|21687|1|41|70875.88|0.04|0.06|N|O|1995-06-24|1995-08-24|1995-07-16|TAKE BACK RETURN|TRUCK|lve carefully pending platelets. furiously | +47563|954433|41991|1|45|66932.55|0.09|0.02|A|F|1994-07-24|1994-06-18|1994-08-16|TAKE BACK RETURN|RAIL|out the even, final asymptotes| +47563|138834|1337|2|7|13109.81|0.06|0.02|R|F|1994-08-12|1994-06-06|1994-08-25|TAKE BACK RETURN|REG AIR|y even ideas nag slyly! pinto beans ca| +47563|382266|19788|3|14|18875.50|0.01|0.03|R|F|1994-05-13|1994-08-03|1994-06-12|NONE|RAIL|s haggle carefully against the blith| +47564|137051|49554|1|10|10880.50|0.01|0.05|A|F|1995-02-04|1995-01-29|1995-02-10|DELIVER IN PERSON|TRUCK|grate evenly reg| +47565|989593|39594|1|10|16825.50|0.09|0.04|R|F|1992-09-18|1992-11-13|1992-10-18|DELIVER IN PERSON|RAIL|le. carefully bold requests wake fluff| +47565|82573|45075|2|42|65333.94|0.05|0.08|R|F|1992-11-23|1992-10-31|1992-11-28|NONE|RAIL|endencies. f| +47565|793297|43298|3|10|13902.60|0.07|0.05|R|F|1992-11-06|1992-10-17|1992-11-29|NONE|TRUCK|egular ideas affix furio| +47566|400582|13091|1|39|57819.84|0.02|0.06|N|O|1995-09-17|1995-09-06|1995-10-13|TAKE BACK RETURN|RAIL|lly ironic packages abov| +47567|834451|34452|1|50|69270.50|0.05|0.03|N|O|1997-08-02|1997-09-06|1997-08-20|TAKE BACK RETURN|REG AIR|sual, silent ideas. acc| +47592|172418|34922|1|10|14904.10|0.07|0.06|A|F|1994-09-25|1994-10-10|1994-10-05|NONE|FOB|even requests. slyly | +47592|824831|37348|2|19|33360.01|0.01|0.08|A|F|1994-11-17|1994-11-19|1994-11-30|COLLECT COD|TRUCK|ic packages. regular deposits could hav| +47593|56686|31689|1|37|60779.16|0.05|0.02|R|F|1993-09-01|1993-11-14|1993-09-06|DELIVER IN PERSON|MAIL|deas. carefully final pa| +47593|710223|47766|2|18|22197.42|0.07|0.00|R|F|1993-12-18|1993-11-27|1994-01-02|TAKE BACK RETURN|AIR| nag furiously pending, even instruc| +47594|955661|30700|1|46|78964.52|0.01|0.06|R|F|1992-12-15|1992-10-21|1993-01-03|NONE|RAIL|ges nag along the even, regular packages. | +47594|791613|16644|2|1|1704.58|0.00|0.05|A|F|1992-12-06|1992-12-07|1992-12-20|COLLECT COD|AIR| silent instructions sleep quickly even| +47594|636802|24339|3|43|74767.11|0.02|0.06|A|F|1992-12-12|1992-11-16|1993-01-11|TAKE BACK RETURN|SHIP|ironic ideas nag carefully above the | +47595|810485|35518|1|45|62794.80|0.09|0.00|N|O|1998-05-21|1998-04-18|1998-06-16|COLLECT COD|FOB| requests. iro| +47595|817125|42158|2|31|32304.48|0.05|0.05|N|O|1998-03-18|1998-04-06|1998-04-10|NONE|SHIP|xcuses. dependencies haggle quickly around | +47595|413645|1170|3|42|65462.04|0.07|0.07|N|O|1998-03-04|1998-03-27|1998-03-15|DELIVER IN PERSON|MAIL|tructions. accounts acco| +47596|329473|16992|1|5|7512.30|0.05|0.07|N|O|1996-12-31|1997-01-02|1997-01-07|TAKE BACK RETURN|TRUCK|ic dolphins. furio| +47596|440904|3413|2|11|20293.68|0.05|0.03|N|O|1996-11-28|1997-01-10|1996-12-21|DELIVER IN PERSON|REG AIR|nal theodolites detect after the car| +47596|272183|47194|3|2|2310.34|0.06|0.01|N|O|1996-11-21|1997-01-01|1996-12-15|NONE|MAIL|uickly ironic asymptotes promise furiou| +47596|574160|11694|4|26|32087.64|0.04|0.03|N|O|1997-02-17|1997-01-27|1997-03-09|COLLECT COD|REG AIR| pending packages doubt | +47597|31486|6487|1|47|66621.56|0.00|0.02|N|O|1996-01-20|1996-01-06|1996-01-30|COLLECT COD|SHIP|r excuses detect slyly ag| +47597|172953|22954|2|15|30389.25|0.04|0.03|N|O|1996-02-06|1995-12-23|1996-02-20|COLLECT COD|REG AIR|y ironic ideas nag bold| +47597|818980|31497|3|41|77856.54|0.08|0.07|N|O|1995-12-10|1996-02-03|1995-12-26|DELIVER IN PERSON|SHIP|ely slyly final deposits. per| +47597|593454|43455|4|36|55707.48|0.07|0.04|N|O|1996-01-29|1996-01-27|1996-02-06|NONE|MAIL|ter the furiousl| +47597|178136|40640|5|23|27924.99|0.01|0.03|N|O|1996-02-11|1996-01-14|1996-02-28|COLLECT COD|FOB| carefully final platelets wake quickly| +47598|620411|45436|1|12|15976.56|0.03|0.01|A|F|1992-09-16|1992-09-10|1992-10-02|NONE|FOB|uthlessly against the blithel| +47598|247130|22139|2|18|19388.16|0.01|0.06|R|F|1992-08-03|1992-09-03|1992-08-05|TAKE BACK RETURN|SHIP|ven requests cajole. slo| +47598|510360|47891|3|35|47961.90|0.07|0.05|A|F|1992-10-20|1992-08-13|1992-11-17|NONE|MAIL|luffy packa| +47598|608898|8899|4|46|83115.56|0.08|0.06|A|F|1992-09-21|1992-09-20|1992-09-22|DELIVER IN PERSON|FOB|nic requests are slyl| +47598|735118|10147|5|43|49582.44|0.01|0.08|A|F|1992-09-25|1992-09-30|1992-10-14|TAKE BACK RETURN|AIR|s are blith| +47598|119722|19723|6|39|67927.08|0.01|0.05|A|F|1992-09-27|1992-08-15|1992-10-14|NONE|RAIL|ic pinto beans. slyly ironic pl| +47599|311276|36289|1|26|33468.76|0.05|0.02|R|F|1993-06-02|1993-04-06|1993-06-17|COLLECT COD|MAIL|. carefully silent packages haggle bl| +47599|605373|42910|2|47|60081.98|0.06|0.05|A|F|1993-05-11|1993-04-01|1993-06-01|COLLECT COD|RAIL| furiously pendin| +47599|490684|40685|3|6|10047.96|0.08|0.00|A|F|1993-03-09|1993-04-15|1993-03-19|COLLECT COD|AIR|lly-- quickly regular ideas after the slyly| +47624|513018|25529|1|32|32991.68|0.08|0.07|R|F|1993-03-31|1993-06-16|1993-04-12|TAKE BACK RETURN|AIR| boost blithely slyly | +47624|284678|22194|2|4|6650.64|0.09|0.06|R|F|1993-04-09|1993-05-03|1993-04-18|TAKE BACK RETURN|FOB|carefully express pinto beans. slyly specia| +47625|378366|3381|1|46|66440.10|0.08|0.05|A|F|1992-03-03|1992-04-01|1992-03-21|TAKE BACK RETURN|REG AIR|r the blithely regular dependencie| +47625|194055|19062|2|44|50558.20|0.01|0.00|A|F|1992-03-08|1992-03-27|1992-03-18|TAKE BACK RETURN|SHIP|slyly ironic asy| +47625|477790|15318|3|46|81317.42|0.03|0.06|R|F|1992-06-10|1992-04-01|1992-06-28|COLLECT COD|TRUCK|iously regular re| +47625|216415|3928|4|24|31953.60|0.00|0.01|R|F|1992-03-19|1992-04-14|1992-03-30|NONE|AIR|press requests. regular packages grow | +47625|286088|36089|5|7|7518.49|0.03|0.03|A|F|1992-04-06|1992-04-15|1992-04-15|DELIVER IN PERSON|AIR|hely regular accounts poach | +47626|832953|7986|1|34|64120.94|0.03|0.08|N|O|1997-05-26|1997-06-17|1997-06-23|COLLECT COD|AIR|ss accounts. | +47626|430152|30153|2|11|11903.43|0.00|0.05|N|O|1997-05-08|1997-07-07|1997-06-06|TAKE BACK RETURN|REG AIR| wake carefully ironic, specia| +47626|556199|31222|3|44|55227.48|0.05|0.00|N|O|1997-06-02|1997-07-14|1997-06-14|COLLECT COD|FOB|lithely qu| +47626|20221|20222|4|23|26248.06|0.03|0.02|N|O|1997-06-17|1997-06-26|1997-06-30|DELIVER IN PERSON|RAIL|y. bold deposits promise ruthl| +47627|219862|7375|1|17|30291.45|0.10|0.01|N|O|1997-11-21|1997-11-21|1997-11-30|NONE|RAIL|accounts. carefully ev| +47628|327341|14860|1|2|2736.66|0.06|0.06|N|O|1996-08-26|1996-08-19|1996-08-29|NONE|MAIL|leep. pend| +47628|604891|4892|2|18|32325.48|0.00|0.01|N|O|1996-09-29|1996-08-23|1996-10-13|TAKE BACK RETURN|RAIL|ly special deposits int| +47628|393272|5780|3|5|6826.30|0.00|0.07|N|O|1996-07-24|1996-08-31|1996-08-11|DELIVER IN PERSON|SHIP|egular, ironic package| +47628|720862|33377|4|3|5648.49|0.00|0.02|N|O|1996-08-08|1996-09-09|1996-08-11|NONE|MAIL|eposits. unusual, regular accounts un| +47628|525077|25078|5|47|51796.35|0.06|0.02|N|O|1996-09-11|1996-09-05|1996-09-23|DELIVER IN PERSON|SHIP|refully. deposits dazzl| +47629|332149|44656|1|13|15354.69|0.07|0.05|N|O|1995-08-22|1995-08-23|1995-09-09|COLLECT COD|REG AIR|timents. ironic, regular instructions h| +47630|40387|15388|1|43|57077.34|0.05|0.00|N|O|1996-09-10|1996-09-01|1996-09-30|COLLECT COD|FOB|gular packages sleep quickly| +47630|782196|44712|2|40|51126.40|0.03|0.06|N|O|1996-08-19|1996-07-15|1996-08-28|DELIVER IN PERSON|MAIL|tes are blithely furiously final c| +47630|359401|9402|3|23|33588.97|0.07|0.02|N|O|1996-07-20|1996-09-01|1996-08-19|COLLECT COD|TRUCK|s sleep bravely along the b| +47630|445985|33510|4|12|23171.52|0.09|0.04|N|O|1996-06-27|1996-07-29|1996-07-17|COLLECT COD|TRUCK| accounts along the carefully final | +47630|656541|19055|5|38|56905.38|0.04|0.07|N|O|1996-07-22|1996-08-10|1996-08-15|NONE|MAIL|ronic ideas use slyly according| +47631|715065|40094|1|29|31320.87|0.03|0.06|N|O|1998-06-08|1998-06-26|1998-06-18|NONE|RAIL| are carefully final deposits. re| +47631|81427|31428|2|13|18309.46|0.03|0.03|N|O|1998-08-16|1998-07-12|1998-08-31|TAKE BACK RETURN|FOB|furiously regular packages wake | +47631|531264|31265|3|40|51809.60|0.04|0.08|N|O|1998-05-28|1998-07-12|1998-06-21|NONE|RAIL|uests. blithely unusual | +47656|401008|1009|1|45|40904.10|0.09|0.01|N|O|1996-05-02|1996-03-16|1996-06-01|TAKE BACK RETURN|AIR|ges are slyly fluffily final pinto be| +47656|733581|46096|2|47|75883.85|0.00|0.06|N|O|1996-06-14|1996-05-02|1996-06-22|NONE|REG AIR| the fluffily ex| +47656|282389|32390|3|31|42512.47|0.03|0.02|N|O|1996-04-27|1996-04-09|1996-05-01|TAKE BACK RETURN|MAIL|tegrate. ironic instructions| +47656|95726|45727|4|22|37877.84|0.07|0.07|N|O|1996-06-01|1996-04-17|1996-06-26|COLLECT COD|FOB|riously above the dar| +47656|860218|47770|5|48|56552.16|0.07|0.01|N|O|1996-04-20|1996-04-15|1996-05-13|COLLECT COD|AIR| unusual escapa| +47656|669151|31665|6|12|13441.44|0.05|0.07|N|O|1996-04-26|1996-04-08|1996-05-19|TAKE BACK RETURN|SHIP|uriously final deposits. fluffily f| +47657|22594|47595|1|21|31848.39|0.05|0.04|N|O|1996-12-16|1997-01-05|1997-01-01|DELIVER IN PERSON|RAIL|carefully regular acco| +47657|732479|32480|2|13|19648.72|0.07|0.04|N|O|1996-11-28|1996-12-22|1996-12-11|COLLECT COD|RAIL|ckages. slyly even | +47657|759423|34454|3|11|16306.29|0.06|0.03|N|O|1996-11-14|1996-11-21|1996-12-09|DELIVER IN PERSON|FOB| regular foxes after the d| +47657|614092|14093|4|39|39236.34|0.02|0.03|N|O|1996-10-15|1996-11-18|1996-10-19|DELIVER IN PERSON|FOB|eep according to the f| +47658|995862|20901|1|4|7831.28|0.01|0.01|R|F|1995-05-09|1995-03-27|1995-05-23|COLLECT COD|REG AIR|ages. multipliers haggle quickl| +47659|734535|22078|1|20|31390.00|0.04|0.08|A|F|1993-08-28|1993-07-22|1993-09-18|NONE|RAIL|ously. fina| +47660|670995|46022|1|37|72740.52|0.02|0.04|A|F|1993-04-04|1993-02-06|1993-04-27|NONE|TRUCK|kly regular pin| +47660|403646|28663|2|24|37190.88|0.01|0.05|R|F|1993-02-18|1993-01-25|1993-02-25|TAKE BACK RETURN|REG AIR|s the blithely unusual w| +47660|78243|15747|3|13|15876.12|0.05|0.05|R|F|1993-03-14|1993-03-03|1993-03-28|COLLECT COD|SHIP|s impress blithely along the bravely blithe| +47660|19199|31700|4|50|55909.50|0.01|0.01|A|F|1993-03-31|1993-03-07|1993-04-11|COLLECT COD|REG AIR| deposits sleep asymp| +47660|676392|1419|5|39|53366.04|0.09|0.05|R|F|1993-03-19|1993-01-30|1993-04-06|COLLECT COD|MAIL|nts boost blithe| +47660|109404|34409|6|21|29681.40|0.09|0.00|R|F|1993-04-11|1993-02-15|1993-05-04|NONE|FOB|equests. din| +47661|869373|31891|1|41|55035.53|0.02|0.07|R|F|1993-01-02|1992-12-10|1993-01-31|TAKE BACK RETURN|SHIP|ly express packages haggle slyly regular pa| +47661|546653|9164|2|37|62886.31|0.08|0.01|A|F|1992-12-23|1992-12-30|1993-01-03|TAKE BACK RETURN|MAIL|carefully bold pa| +47661|592408|42409|3|46|69017.48|0.09|0.05|A|F|1993-01-27|1993-01-02|1993-02-05|TAKE BACK RETURN|TRUCK|p across the | +47661|594085|19108|4|31|36550.86|0.05|0.03|A|F|1992-10-21|1993-01-04|1992-11-09|NONE|AIR| regular reques| +47661|774680|12226|5|33|57903.45|0.01|0.00|A|F|1992-10-24|1992-11-10|1992-11-02|DELIVER IN PERSON|REG AIR| ironic packages| +47662|801130|38679|1|40|41243.60|0.05|0.08|R|F|1993-10-13|1993-10-21|1993-10-21|DELIVER IN PERSON|REG AIR|packages detect fluffily against the| +47662|579293|16827|2|2|2744.54|0.04|0.05|A|F|1993-10-22|1993-09-15|1993-11-13|DELIVER IN PERSON|REG AIR|ong the blithely ironic | +47662|176525|39029|3|24|38436.48|0.07|0.03|A|F|1993-08-27|1993-10-16|1993-09-25|COLLECT COD|RAIL|the furiously r| +47662|855200|5201|4|6|6930.96|0.09|0.00|A|F|1993-09-06|1993-09-27|1993-10-02|DELIVER IN PERSON|TRUCK|ests believe slyly special packages.| +47662|333981|8994|5|29|58434.13|0.07|0.04|A|F|1993-11-20|1993-08-25|1993-12-19|COLLECT COD|RAIL|ents. slyly ironic requests sleep sly| +47662|205590|5591|6|29|43371.82|0.05|0.01|A|F|1993-07-31|1993-08-30|1993-08-27|COLLECT COD|SHIP|lar packages. furiously ex| +47663|483102|45612|1|7|7595.56|0.00|0.02|R|F|1993-06-03|1993-05-06|1993-06-26|TAKE BACK RETURN|SHIP|special ideas sleep blithely about the q| +47688|503031|28052|1|25|25850.25|0.04|0.06|R|F|1994-08-18|1994-07-20|1994-08-26|TAKE BACK RETURN|SHIP|posits use.| +47689|424438|49455|1|50|68120.50|0.02|0.04|R|F|1993-10-12|1993-10-18|1993-10-31|DELIVER IN PERSON|TRUCK|ites kindle requests. even, final | +47690|917577|5132|1|7|11161.71|0.03|0.07|N|O|1996-05-21|1996-05-10|1996-05-25|TAKE BACK RETURN|FOB|asymptotes play furious| +47691|252156|39672|1|44|48758.16|0.08|0.04|N|O|1996-10-05|1996-10-31|1996-10-30|TAKE BACK RETURN|REG AIR| ironic braids sleep | +47691|971966|9524|2|10|20379.20|0.00|0.06|N|O|1996-09-28|1996-11-27|1996-10-28|DELIVER IN PERSON|SHIP| cajole blithely | +47691|816280|41313|3|37|44260.88|0.01|0.04|N|O|1996-11-25|1996-12-03|1996-12-19|TAKE BACK RETURN|MAIL|requests. slyly pending saut| +47691|213058|25563|4|2|1942.08|0.00|0.06|N|O|1997-01-11|1996-12-05|1997-02-04|COLLECT COD|RAIL|g, ironic dependencies | +47691|861980|37015|5|28|54374.32|0.09|0.01|N|O|1996-11-15|1996-12-04|1996-11-29|DELIVER IN PERSON|AIR|ts. ruthlessly spe| +47691|297547|10053|6|38|58692.14|0.05|0.02|N|O|1997-01-12|1996-12-15|1997-01-20|NONE|REG AIR| beans. furiously pe| +47692|669302|31816|1|33|41951.91|0.10|0.05|R|F|1993-09-21|1993-07-18|1993-10-08|COLLECT COD|AIR|ajole carefully regular foxes. slyly reg| +47692|958003|8004|2|2|2121.92|0.01|0.08|A|F|1993-08-12|1993-08-28|1993-08-17|NONE|SHIP|kly regular instructions detect| +47692|148836|36343|3|46|86702.18|0.10|0.08|A|F|1993-07-20|1993-09-01|1993-07-26|TAKE BACK RETURN|MAIL|ans haggle carefully regular| +47692|471203|46222|4|31|36399.58|0.07|0.08|A|F|1993-09-22|1993-08-19|1993-10-20|TAKE BACK RETURN|FOB|al accounts. theodolites use above the alw| +47692|493404|43405|5|10|13973.80|0.08|0.04|A|F|1993-08-08|1993-08-26|1993-08-22|COLLECT COD|MAIL|the slyly e| +47692|635978|23515|6|45|86127.30|0.08|0.06|R|F|1993-09-18|1993-08-14|1993-09-25|NONE|AIR|e carefully silent packages: carefully exp| +47692|867792|42827|7|41|72149.75|0.03|0.00|A|F|1993-09-11|1993-07-26|1993-09-22|TAKE BACK RETURN|AIR|n dependencies detect. carefully r| +47693|977726|40246|1|11|19840.48|0.09|0.08|A|F|1992-07-18|1992-06-08|1992-07-30|COLLECT COD|FOB|ironic asymptotes alongside of the bold i| +47694|353928|16436|1|48|95131.68|0.06|0.00|N|O|1995-12-05|1995-12-10|1995-12-29|DELIVER IN PERSON|REG AIR|s along the quickly ironic p| +47694|455177|42705|2|14|15850.10|0.04|0.03|N|O|1995-10-29|1995-11-27|1995-11-21|DELIVER IN PERSON|TRUCK|fy foxes breach furiously deposits| +47695|135197|10202|1|9|11089.71|0.06|0.08|R|F|1992-09-20|1992-08-18|1992-10-15|NONE|RAIL|special accounts are blithely above t| +47695|247381|9886|2|19|25239.03|0.00|0.07|A|F|1992-07-17|1992-08-13|1992-07-30|COLLECT COD|REG AIR|xes sleep sometimes against the quick| +47720|181850|31851|1|9|17386.65|0.06|0.02|R|F|1993-09-11|1993-08-07|1993-09-27|NONE|RAIL|sts. carefully unusual requests haggle blit| +47720|336263|48770|2|4|5197.00|0.00|0.02|A|F|1993-07-18|1993-08-04|1993-08-12|COLLECT COD|SHIP|nic braids sleep above the| +47720|564864|2398|3|8|15430.72|0.01|0.03|A|F|1993-08-02|1993-08-12|1993-08-27|COLLECT COD|FOB|nts boost regular requests. the| +47720|668131|5671|4|12|13189.20|0.07|0.05|R|F|1993-08-10|1993-09-16|1993-08-17|TAKE BACK RETURN|SHIP|eas along th| +47720|270302|20303|5|31|39440.99|0.00|0.05|R|F|1993-09-25|1993-09-01|1993-10-22|DELIVER IN PERSON|FOB|es haggle above the blithely| +47721|567543|42566|1|39|62810.28|0.07|0.06|R|F|1994-04-09|1994-04-10|1994-04-10|NONE|SHIP|sts are quickly? blithely unusual dinos at | +47721|684233|21773|2|31|37733.20|0.10|0.03|R|F|1994-03-11|1994-03-27|1994-03-14|TAKE BACK RETURN|TRUCK|bold platelets detect: | +47721|897033|47034|3|44|45319.56|0.00|0.05|R|F|1994-03-03|1994-05-08|1994-03-06|NONE|MAIL|fully. slyly regular orbits cajole furiou| +47722|472806|10334|1|47|83602.66|0.05|0.07|N|O|1996-06-24|1996-06-12|1996-07-18|TAKE BACK RETURN|FOB|ly pending requests. instruc| +47722|444681|44682|2|48|78031.68|0.01|0.05|N|O|1996-05-30|1996-06-07|1996-06-04|COLLECT COD|AIR|are quickly special accounts. | +47723|334054|34055|1|25|27201.00|0.08|0.00|R|F|1993-06-10|1993-05-22|1993-06-25|NONE|REG AIR|riously exp| +47723|441100|41101|2|4|4164.32|0.00|0.02|R|F|1993-06-04|1993-06-25|1993-06-14|TAKE BACK RETURN|TRUCK|unusual pinto bean| +47723|561559|49093|3|50|81026.50|0.09|0.06|A|F|1993-07-11|1993-06-10|1993-08-10|COLLECT COD|RAIL|de of the even pinto beans. daringly pendin| +47723|117290|42295|4|49|64057.21|0.07|0.07|R|F|1993-07-09|1993-05-09|1993-07-23|DELIVER IN PERSON|TRUCK|packages. i| +47723|283076|33077|5|39|41303.34|0.09|0.07|R|F|1993-05-10|1993-05-12|1993-06-08|DELIVER IN PERSON|AIR|o beans along the blithely fi| +47724|263744|26250|1|11|18785.03|0.09|0.01|N|O|1997-07-13|1997-04-27|1997-08-01|COLLECT COD|TRUCK|y unusual foxes along the regu| +47724|742881|30424|2|28|53867.80|0.02|0.05|N|O|1997-05-18|1997-04-17|1997-06-13|TAKE BACK RETURN|AIR|grate. fluffily| +47725|369590|7112|1|38|63064.04|0.10|0.07|N|O|1996-04-14|1996-04-19|1996-05-08|NONE|MAIL|e asymptotes. furiously express excuses| +47725|697752|22779|2|23|40243.56|0.07|0.02|N|O|1996-04-23|1996-04-01|1996-05-04|COLLECT COD|REG AIR|regular deposits cajol| +47725|114799|14800|3|21|38089.59|0.02|0.06|N|O|1996-03-26|1996-05-05|1996-04-09|DELIVER IN PERSON|MAIL|ding to the carefully bold r| +47725|421955|21956|4|32|60061.76|0.08|0.07|N|O|1996-05-24|1996-05-05|1996-06-12|TAKE BACK RETURN|FOB|counts wake careful| +47726|702652|2653|1|17|28128.54|0.07|0.02|N|O|1997-05-09|1997-04-26|1997-05-28|COLLECT COD|SHIP|kages. furiously even acco| +47726|455521|43049|2|36|53154.00|0.02|0.06|N|O|1997-03-21|1997-04-19|1997-04-11|COLLECT COD|TRUCK|sits. regular, regular accou| +47726|941053|28608|3|22|24068.22|0.01|0.02|N|O|1997-07-07|1997-05-16|1997-07-23|DELIVER IN PERSON|TRUCK| the regular deposits believe account| +47727|804814|4815|1|32|55000.64|0.02|0.07|N|O|1998-05-12|1998-05-30|1998-06-07|NONE|FOB|quickly busy accounts alongs| +47727|501018|38549|2|40|40759.60|0.10|0.07|N|O|1998-04-10|1998-05-06|1998-05-08|TAKE BACK RETURN|FOB|rts wake blithely unusual | +47727|606358|31383|3|47|59423.04|0.08|0.00|N|O|1998-05-17|1998-05-12|1998-06-13|NONE|FOB|nusual pinto beans breac| +47752|428691|28692|1|2|3239.34|0.09|0.08|N|O|1996-07-17|1996-09-04|1996-08-07|COLLECT COD|TRUCK|ly final asympto| +47752|993655|6175|2|40|69944.40|0.02|0.04|N|O|1996-08-24|1996-08-13|1996-09-01|DELIVER IN PERSON|REG AIR|layers. bold foxes nag fluff| +47752|353628|3629|3|39|65582.79|0.04|0.01|N|O|1996-07-08|1996-09-02|1996-07-19|DELIVER IN PERSON|TRUCK|y regular courts alongside of the caref| +47752|410667|10668|4|4|6310.56|0.10|0.02|N|O|1996-08-12|1996-09-05|1996-08-16|COLLECT COD|MAIL| wake except the fluffi| +47752|74870|37372|5|18|33207.66|0.02|0.06|N|O|1996-07-13|1996-07-31|1996-07-24|TAKE BACK RETURN|MAIL| sauternes along the regular ide| +47753|794337|6853|1|50|71565.00|0.08|0.07|A|F|1994-11-15|1994-11-13|1994-11-23|NONE|REG AIR|haggle. daringly ironi| +47753|420146|20147|2|20|21322.40|0.03|0.00|R|F|1994-11-16|1994-12-07|1994-12-03|NONE|REG AIR|usual pinto beans| +47753|386682|36683|3|40|70746.80|0.01|0.00|A|F|1994-10-21|1994-12-18|1994-10-30|COLLECT COD|REG AIR|platelets; deposits integrate never pending| +47753|957530|45088|4|21|33337.29|0.09|0.04|A|F|1995-01-16|1994-12-28|1995-01-23|COLLECT COD|AIR|try to sleep. carefully regular deposits | +47754|317760|17761|1|12|21333.00|0.02|0.06|N|O|1997-08-16|1997-08-31|1997-08-20|TAKE BACK RETURN|SHIP|iously ideas. fluffily regular| +47754|580153|17687|2|14|17263.82|0.05|0.08|N|O|1997-09-03|1997-09-15|1997-09-04|DELIVER IN PERSON|SHIP|furiously regular requests: blithe| +47754|624293|36806|3|37|45038.62|0.09|0.02|N|O|1997-09-01|1997-09-15|1997-09-11|TAKE BACK RETURN|RAIL|as slyly blithely special accounts.| +47754|479010|29011|4|18|17801.82|0.04|0.08|N|O|1997-09-05|1997-08-04|1997-09-25|NONE|MAIL|sly regular ideas cajole fluffily slyly fin| +47754|716150|3693|5|12|13993.44|0.00|0.08|N|O|1997-10-22|1997-08-06|1997-10-27|DELIVER IN PERSON|MAIL|ent accounts wa| +47754|319176|44189|6|10|11951.60|0.03|0.04|N|O|1997-09-24|1997-08-27|1997-09-30|TAKE BACK RETURN|RAIL|inal accounts sleep against the quic| +47754|381285|31286|7|10|13662.70|0.04|0.03|N|O|1997-10-23|1997-08-05|1997-11-01|COLLECT COD|FOB|long the blithely unusual theodolit| +47755|242553|30066|1|17|25424.18|0.09|0.05|R|F|1994-04-22|1994-05-03|1994-05-14|DELIVER IN PERSON|MAIL|pinto beans. slyly even packages nag| +47755|582182|19716|2|44|55623.04|0.01|0.02|A|F|1994-07-28|1994-05-17|1994-08-23|NONE|AIR|sauternes nag bo| +47755|730248|30249|3|10|12782.10|0.03|0.08|A|F|1994-06-27|1994-06-02|1994-06-30|TAKE BACK RETURN|FOB|hely ruthless asymptotes shall have| +47755|272163|34669|4|3|3405.45|0.07|0.04|R|F|1994-07-28|1994-05-02|1994-08-03|DELIVER IN PERSON|TRUCK|ep blithel| +47756|277673|2684|1|2|3301.32|0.04|0.01|A|F|1993-03-19|1993-03-19|1993-03-25|NONE|SHIP|thely. packages are quickly| +47756|833882|46399|2|43|78081.12|0.01|0.02|A|F|1993-02-27|1993-03-15|1993-03-16|TAKE BACK RETURN|SHIP|he regular, regu| +47757|668060|18061|1|17|17476.51|0.02|0.01|R|F|1993-10-15|1993-11-10|1993-10-25|TAKE BACK RETURN|TRUCK|es? permanently| +47757|76013|26014|2|27|26703.27|0.04|0.00|A|F|1993-08-31|1993-11-03|1993-09-13|NONE|TRUCK|osits haggle carefully| +47757|547099|22120|3|11|12606.77|0.02|0.07|A|F|1993-10-27|1993-10-06|1993-11-18|COLLECT COD|SHIP|platelets boost after the f| +47757|85945|23449|4|42|81099.48|0.04|0.01|A|F|1993-11-10|1993-11-04|1993-11-24|TAKE BACK RETURN|MAIL|about the blithely | +47757|474712|49731|5|42|70840.98|0.08|0.07|R|F|1993-10-21|1993-10-16|1993-11-20|NONE|TRUCK|telets. blithely re| +47757|469338|6866|6|20|26146.20|0.09|0.06|R|F|1993-11-16|1993-10-17|1993-11-30|NONE|MAIL|es. furiously | +47758|508617|33638|1|37|60146.83|0.10|0.02|A|F|1993-10-27|1993-12-06|1993-11-10|TAKE BACK RETURN|RAIL|bold accounts| +47758|310141|35154|2|22|25324.86|0.09|0.07|R|F|1994-01-07|1994-01-01|1994-01-27|TAKE BACK RETURN|REG AIR|de of the regular, bold packages sleep s| +47758|529114|16645|3|38|43437.42|0.09|0.07|R|F|1993-11-26|1994-01-03|1993-12-23|TAKE BACK RETURN|RAIL|, even foxes detect | +47758|813580|26097|4|11|16428.94|0.03|0.05|A|F|1994-01-05|1993-12-14|1994-01-18|NONE|REG AIR|refully after the fur| +47758|822785|10334|5|39|66601.86|0.08|0.02|A|F|1994-01-25|1993-11-17|1994-01-27|COLLECT COD|TRUCK|nts are blithely instructions. | +47759|500647|13158|1|44|72495.28|0.08|0.03|A|F|1993-08-19|1993-08-28|1993-09-02|NONE|TRUCK|lar deposits. fluffily e| +47759|365940|3462|2|7|14041.51|0.02|0.08|A|F|1993-09-20|1993-09-17|1993-10-10|COLLECT COD|SHIP|foxes. final | +47759|342383|17396|3|25|35634.25|0.07|0.01|R|F|1993-07-31|1993-09-26|1993-08-01|COLLECT COD|FOB|le blithely above the s| +47759|417006|29515|4|17|15690.66|0.06|0.02|A|F|1993-08-05|1993-09-25|1993-08-28|DELIVER IN PERSON|RAIL|l packages above the f| +47784|592560|42561|1|30|49576.20|0.05|0.04|N|F|1995-05-29|1995-03-24|1995-06-22|COLLECT COD|SHIP|n packages. carefully final packages wou| +47784|140715|40716|2|28|49159.88|0.05|0.02|R|F|1995-05-07|1995-04-19|1995-05-09|COLLECT COD|AIR|gular theodolites along the unusual plate| +47784|987102|12141|3|22|26159.32|0.03|0.00|R|F|1995-02-25|1995-03-23|1995-03-07|NONE|FOB|usly pending dependencies| +47784|216749|4262|4|32|53303.36|0.08|0.02|A|F|1995-05-06|1995-03-14|1995-05-09|DELIVER IN PERSON|RAIL|horses detect fur| +47784|888587|13622|5|42|66172.68|0.06|0.06|R|F|1995-04-22|1995-03-02|1995-05-06|TAKE BACK RETURN|FOB|y along the caref| +47784|465279|27789|6|14|17419.50|0.10|0.08|A|F|1995-03-10|1995-04-04|1995-03-21|TAKE BACK RETURN|TRUCK|fily unusual accounts. fl| +47785|71240|21241|1|31|37548.44|0.09|0.01|N|F|1995-05-31|1995-06-17|1995-06-25|NONE|FOB|es use carefully across| +47785|324286|36793|2|39|51100.53|0.07|0.00|N|O|1995-08-12|1995-06-21|1995-09-09|DELIVER IN PERSON|TRUCK| the furiously ironic requests. | +47785|270772|20773|3|6|10456.56|0.00|0.06|N|O|1995-08-06|1995-07-04|1995-08-16|NONE|SHIP|riously final | +47785|861693|49245|4|8|13237.20|0.00|0.06|A|F|1995-05-03|1995-06-21|1995-05-21|TAKE BACK RETURN|AIR| furiously unusual dependencies are across | +47785|473130|23131|5|45|49639.95|0.07|0.03|R|F|1995-04-18|1995-06-18|1995-05-14|COLLECT COD|RAIL|g fluffily blithely daring packages. caref| +47785|895825|45826|6|21|38236.38|0.05|0.06|R|F|1995-04-30|1995-06-15|1995-05-22|NONE|AIR| will lose furiousl| +47786|798531|48532|1|19|30960.50|0.01|0.02|N|O|1996-09-20|1996-09-05|1996-10-09|COLLECT COD|AIR|ent Tiresias sleep slyly final deposit| +47786|907910|32947|2|38|72879.06|0.01|0.00|N|O|1996-09-27|1996-09-26|1996-10-21|NONE|FOB|en requests among the f| +47786|241015|3520|3|33|31548.00|0.07|0.06|N|O|1996-09-19|1996-09-14|1996-10-13|TAKE BACK RETURN|FOB|ully quickly final packages. sly| +47787|66242|28744|1|25|30206.00|0.05|0.07|N|O|1995-09-18|1995-09-17|1995-10-04|DELIVER IN PERSON|MAIL|ests. furiously special depos| +47787|315068|15069|2|40|43322.00|0.05|0.08|N|O|1995-07-12|1995-10-07|1995-07-24|TAKE BACK RETURN|SHIP|resias. accounts| +47787|342158|42159|3|20|24002.80|0.08|0.08|N|O|1995-10-25|1995-08-09|1995-11-24|COLLECT COD|AIR|ly: quickly fi| +47787|638192|25729|4|3|3390.48|0.08|0.06|N|O|1995-09-29|1995-09-27|1995-10-04|DELIVER IN PERSON|TRUCK|ounts sleep carefully s| +47788|54553|4554|1|19|28643.45|0.00|0.02|R|F|1993-10-22|1993-10-27|1993-11-07|NONE|FOB|ke fluffily above the regular g| +47788|857821|7822|2|16|28460.48|0.10|0.01|A|F|1993-12-21|1993-09-27|1994-01-08|TAKE BACK RETURN|TRUCK| slyly alongside of the final accounts. | +47788|388011|13026|3|16|17584.00|0.00|0.02|A|F|1993-10-22|1993-10-29|1993-11-02|COLLECT COD|RAIL|ross the quickly silent pinto beans.| +47788|286639|49145|4|41|66650.42|0.09|0.07|R|F|1993-10-27|1993-10-08|1993-11-05|COLLECT COD|SHIP|ongside of th| +47789|744898|44899|1|31|60228.66|0.08|0.01|N|O|1996-10-31|1996-12-08|1996-11-10|TAKE BACK RETURN|AIR|yly idle theodolites. furiously brave| +47790|836462|48979|1|46|64327.32|0.06|0.07|R|F|1992-06-04|1992-06-04|1992-06-10|TAKE BACK RETURN|RAIL|r the ironi| +47790|403527|3528|2|47|67233.50|0.02|0.04|R|F|1992-05-30|1992-04-28|1992-06-06|COLLECT COD|FOB|usual, special instructions. ca| +47791|517631|42652|1|13|21431.93|0.04|0.01|A|F|1994-02-03|1994-02-24|1994-02-12|NONE|MAIL|arefully slyly special| +47791|814899|39932|2|18|32649.30|0.01|0.05|R|F|1994-02-28|1994-01-28|1994-03-03|COLLECT COD|AIR|uriously according to the ironic, bold a| +47791|995672|45673|3|1|1767.63|0.04|0.07|A|F|1994-04-05|1994-02-08|1994-04-20|NONE|SHIP|final idea| +47791|252724|27735|4|8|13413.68|0.02|0.00|A|F|1993-12-21|1994-01-24|1994-01-01|COLLECT COD|REG AIR| slyly final deposits about the id| +47791|528542|3563|5|23|36121.96|0.03|0.03|R|F|1993-12-23|1994-03-07|1994-01-08|COLLECT COD|TRUCK|structions under the furi| +47816|613169|13170|1|7|7574.91|0.05|0.01|A|F|1993-11-18|1993-10-24|1993-12-07|TAKE BACK RETURN|REG AIR| escapades at the ironi| +47816|519203|31714|2|25|30554.50|0.01|0.01|R|F|1993-10-05|1993-11-11|1993-10-18|NONE|MAIL|s wake blithe| +47816|235594|48099|3|5|7647.90|0.09|0.04|A|F|1993-09-05|1993-09-28|1993-09-27|NONE|FOB|eep about the quickly bold pack| +47816|627002|14539|4|25|23224.25|0.07|0.05|A|F|1993-10-13|1993-10-12|1993-10-18|TAKE BACK RETURN|FOB|ely bold asymptotes. busily special p| +47816|13288|789|5|10|12012.80|0.03|0.00|R|F|1993-09-22|1993-11-07|1993-10-07|NONE|TRUCK|blithe dependencies x-ray regular,| +47816|328296|15815|6|19|25161.32|0.09|0.08|R|F|1993-12-15|1993-10-17|1993-12-21|TAKE BACK RETURN|AIR|e fluffily even foxes. quickl| +47816|664421|26935|7|31|42947.09|0.05|0.04|R|F|1993-09-19|1993-10-02|1993-09-28|DELIVER IN PERSON|REG AIR|n accounts| +47817|909173|46728|1|31|36646.03|0.10|0.03|R|F|1992-05-02|1992-06-25|1992-05-09|COLLECT COD|REG AIR|otes shall have to are| +47817|463084|38103|2|38|39788.28|0.00|0.02|A|F|1992-05-23|1992-07-02|1992-06-07|NONE|AIR|y. blithely even requests about the | +47817|46831|9332|3|34|60446.22|0.10|0.04|A|F|1992-08-04|1992-05-31|1992-08-11|TAKE BACK RETURN|TRUCK|nd the silent accounts. blithely unusu| +47817|83016|45518|4|25|24975.25|0.00|0.02|A|F|1992-08-05|1992-06-16|1992-08-31|TAKE BACK RETURN|MAIL|y final courts sleep | +47818|13886|1387|1|28|50396.64|0.07|0.01|N|O|1998-05-14|1998-06-11|1998-06-02|DELIVER IN PERSON|MAIL|s sleep. slyly| +47818|375930|25931|2|25|50148.00|0.01|0.08|N|O|1998-07-22|1998-04-30|1998-07-29|TAKE BACK RETURN|MAIL|l requests sleep blithely| +47818|244519|7024|3|29|42441.50|0.06|0.01|N|O|1998-05-22|1998-05-02|1998-05-28|DELIVER IN PERSON|TRUCK| furiously silent packages use furiously ag| +47819|973020|10578|1|42|45905.16|0.02|0.02|N|O|1996-03-22|1996-04-12|1996-04-03|COLLECT COD|FOB|boost carefully. carefully final ac| +47819|545675|20696|2|10|17206.50|0.10|0.06|N|O|1996-05-21|1996-03-30|1996-06-09|NONE|REG AIR| the bold foxes are slyly alongside of t| +47819|157588|32595|3|12|19746.96|0.05|0.00|N|O|1996-02-27|1996-04-03|1996-03-04|DELIVER IN PERSON|TRUCK|d requests. re| +47819|578167|40679|4|20|24902.80|0.01|0.01|N|O|1996-02-24|1996-03-13|1996-03-05|NONE|REG AIR| ideas nag. bravely even water| +47819|246049|46050|5|44|43781.32|0.07|0.00|N|O|1996-05-10|1996-03-17|1996-06-08|TAKE BACK RETURN|RAIL|furiously: ironic, express packag| +47820|55943|30946|1|8|15191.52|0.00|0.03|R|F|1993-07-19|1993-06-27|1993-07-21|TAKE BACK RETURN|TRUCK|y bold foxes. furiously even courts wake fu| +47821|254805|29816|1|31|54553.49|0.06|0.03|R|F|1993-05-19|1993-04-25|1993-06-06|NONE|AIR|ep fluffily requests. sl| +47821|502512|27533|2|50|75724.50|0.04|0.00|R|F|1993-04-11|1993-05-15|1993-04-28|DELIVER IN PERSON|SHIP|n instructions. blithely slow depo| +47821|707097|19612|3|22|24289.32|0.01|0.04|A|F|1993-04-10|1993-04-14|1993-04-21|DELIVER IN PERSON|SHIP|ooze carefull| +47822|550041|42|1|38|41458.76|0.09|0.01|A|F|1993-10-10|1993-09-26|1993-11-08|NONE|RAIL|posits. furiously fina| +47822|533823|46334|2|20|37136.00|0.05|0.08|A|F|1993-09-12|1993-10-31|1993-09-15|TAKE BACK RETURN|MAIL|es. furiously| +47822|952432|39990|3|36|53438.04|0.03|0.06|R|F|1993-12-09|1993-10-27|1993-12-29|TAKE BACK RETURN|REG AIR|dolites. quickly f| +47822|522763|47784|4|18|32143.32|0.01|0.00|A|F|1993-10-06|1993-10-20|1993-10-25|DELIVER IN PERSON|REG AIR|packages haggle carefully across| +47822|65425|15426|5|39|54226.38|0.04|0.04|A|F|1993-11-19|1993-11-06|1993-11-21|COLLECT COD|SHIP| carefully spec| +47823|683354|20894|1|6|8023.92|0.08|0.07|A|F|1994-03-13|1993-12-27|1994-04-08|COLLECT COD|SHIP|unts. even, eve| +47823|127602|15109|2|9|14666.40|0.10|0.07|R|F|1993-11-28|1994-02-05|1993-12-13|COLLECT COD|AIR|ost slyly of the u| +47823|596059|46060|3|4|4620.12|0.08|0.08|R|F|1993-12-13|1994-01-27|1994-01-09|TAKE BACK RETURN|AIR|ts haggle! quickly pending theodolites caj| +47823|947294|22331|4|11|14753.75|0.08|0.05|A|F|1994-01-01|1994-02-17|1994-01-15|DELIVER IN PERSON|AIR|ts wake furious| +47823|168044|5554|5|20|22240.80|0.07|0.05|R|F|1993-12-28|1994-01-26|1993-12-31|COLLECT COD|TRUCK|yly for the furiously even ideas. sly| +47823|314006|26513|6|7|7139.93|0.10|0.00|R|F|1994-02-07|1994-01-19|1994-02-27|TAKE BACK RETURN|TRUCK|en ideas haggle slyly. blithely r| +47823|490797|40798|7|47|84025.19|0.06|0.07|A|F|1994-01-13|1994-02-14|1994-02-04|TAKE BACK RETURN|REG AIR|quickly requests. final requests acr| +47848|808772|8773|1|29|48741.17|0.04|0.01|R|F|1992-12-01|1992-11-21|1992-12-27|COLLECT COD|TRUCK|deposits sleep. enticing| +47848|14920|27421|2|44|80736.48|0.00|0.05|R|F|1992-11-20|1992-12-25|1992-12-01|DELIVER IN PERSON|AIR|ly. unusual packages | +47849|132156|7161|1|30|35644.50|0.07|0.08|N|O|1997-08-20|1997-09-04|1997-09-18|NONE|REG AIR|ng ideas nag quickly ir| +47849|131986|6991|2|48|96863.04|0.06|0.05|N|O|1997-09-19|1997-09-03|1997-10-12|COLLECT COD|AIR|l theodolites. dugouts wake b| +47849|283540|8551|3|13|19805.89|0.08|0.03|N|O|1997-10-02|1997-09-18|1997-10-14|TAKE BACK RETURN|TRUCK|wake slyly alon| +47849|447856|35381|4|48|86583.84|0.07|0.07|N|O|1997-07-18|1997-09-11|1997-08-06|COLLECT COD|AIR|ng foxes haggle | +47850|513500|1031|1|35|52971.80|0.09|0.05|N|O|1996-07-26|1996-09-15|1996-08-25|COLLECT COD|RAIL|ng pinto beans. carefully expre| +47850|390206|27728|2|22|28516.18|0.09|0.04|N|O|1996-10-20|1996-08-09|1996-10-22|NONE|REG AIR|ts use quickly special ideas. blit| +47850|182178|32179|3|23|28983.91|0.02|0.04|N|O|1996-09-20|1996-09-11|1996-09-23|NONE|SHIP|ironic foxes.| +47850|858792|33827|4|13|22759.75|0.07|0.04|N|O|1996-10-05|1996-09-08|1996-10-29|TAKE BACK RETURN|TRUCK|uctions about the bold, ironic pinto bea| +47850|705850|43393|5|27|50107.14|0.07|0.02|N|O|1996-09-05|1996-08-04|1996-09-06|DELIVER IN PERSON|AIR|pending dependencies? packages use caref| +47850|207237|44750|6|37|42336.14|0.03|0.02|N|O|1996-09-07|1996-08-06|1996-09-26|NONE|TRUCK|ress ideas| +47851|28997|16498|1|36|69335.64|0.08|0.08|N|O|1998-04-11|1998-03-15|1998-04-30|NONE|REG AIR|usly ironic sheaves| +47851|336510|11523|2|47|72685.50|0.03|0.06|N|O|1998-02-11|1998-03-23|1998-03-08|TAKE BACK RETURN|SHIP|ts wake across the blithely reg| +47852|96091|21094|1|46|50006.14|0.07|0.03|R|F|1993-06-16|1993-08-01|1993-06-18|NONE|TRUCK|deposits. slyly | +47852|988257|777|2|25|33630.25|0.08|0.01|A|F|1993-08-06|1993-07-31|1993-09-01|COLLECT COD|FOB| platelets against the f| +47852|625730|25731|3|21|34769.70|0.09|0.07|R|F|1993-08-10|1993-07-05|1993-08-30|TAKE BACK RETURN|MAIL|nic deposits. carefully| +47852|631679|19216|4|8|12885.12|0.07|0.06|R|F|1993-09-05|1993-07-13|1993-09-24|DELIVER IN PERSON|AIR|tain fluffily silent deposits. bli| +47853|501543|1544|1|26|40157.52|0.06|0.01|N|O|1998-04-10|1998-03-16|1998-04-27|DELIVER IN PERSON|FOB|equests haggle fluffily final packages. | +47853|425620|25621|2|4|6182.40|0.10|0.07|N|O|1998-04-28|1998-02-26|1998-05-07|NONE|MAIL|as affix blithely. blithely r| +47853|379697|29698|3|18|31980.24|0.06|0.07|N|O|1998-03-19|1998-04-01|1998-03-20|TAKE BACK RETURN|FOB| pending courts haggle furio| +47853|556896|31919|4|16|31245.92|0.07|0.02|N|O|1998-03-11|1998-02-27|1998-04-02|DELIVER IN PERSON|TRUCK| asymptotes haggle slyly iron| +47853|739035|26578|5|35|37590.00|0.09|0.08|N|O|1998-05-02|1998-02-21|1998-05-07|TAKE BACK RETURN|MAIL|sleep even dep| +47853|951501|14021|6|31|48126.26|0.03|0.01|N|O|1998-01-28|1998-03-19|1998-02-22|DELIVER IN PERSON|SHIP|blithely stealthy| +47854|925106|12661|1|19|21490.14|0.09|0.02|N|O|1997-01-18|1997-03-12|1997-02-15|DELIVER IN PERSON|TRUCK|s. slyly quiet instructions| +47854|242801|5306|2|43|74982.97|0.04|0.05|N|O|1997-03-30|1997-02-12|1997-04-26|COLLECT COD|TRUCK|counts slee| +47855|521476|33987|1|31|46420.95|0.02|0.05|R|F|1992-09-03|1992-07-24|1992-09-22|TAKE BACK RETURN|AIR|structions. blithely fi| +47855|432057|44566|2|11|10879.33|0.07|0.08|A|F|1992-06-30|1992-07-04|1992-07-10|COLLECT COD|AIR| cajole. daring asymptotes wak| +47855|565892|15893|3|16|31325.92|0.04|0.07|R|F|1992-09-14|1992-07-19|1992-10-12|NONE|TRUCK|sleep fluffily until the slyly ironic | +47855|942971|18008|4|22|44306.46|0.09|0.06|A|F|1992-06-30|1992-08-13|1992-07-10|COLLECT COD|REG AIR| beans detect. bo| +47855|500096|37627|5|18|19729.26|0.10|0.01|A|F|1992-07-16|1992-07-19|1992-08-09|DELIVER IN PERSON|SHIP|ntly ironic pinto beans above the| +47880|912760|37797|1|40|70908.80|0.09|0.04|N|O|1997-02-08|1996-11-21|1997-03-09|TAKE BACK RETURN|RAIL|ve. furiou| +47880|756807|31838|2|23|42866.71|0.09|0.06|N|O|1996-10-17|1996-12-24|1996-10-31|NONE|AIR|ecial theodolites ha| +47880|643663|6176|3|16|25706.08|0.10|0.07|N|O|1997-01-14|1996-12-26|1997-02-02|TAKE BACK RETURN|TRUCK|regular asymptotes wake blithely carefully| +47880|36781|24282|4|33|56686.74|0.03|0.05|N|O|1996-12-14|1996-11-14|1996-12-29|COLLECT COD|REG AIR|d carefully whithout the express excu| +47881|973633|48672|1|23|39251.57|0.07|0.04|R|F|1992-11-04|1992-12-01|1992-11-05|DELIVER IN PERSON|TRUCK|ct. carefully bol| +47881|845506|45507|2|41|59509.86|0.00|0.02|R|F|1992-10-11|1992-12-17|1992-10-23|DELIVER IN PERSON|SHIP|special courts promise above the final acc| +47881|411372|23881|3|17|21816.95|0.00|0.08|R|F|1992-10-17|1992-10-30|1992-10-23|DELIVER IN PERSON|TRUCK|uests. final instructions nag c| +47881|917599|17600|4|43|69511.65|0.08|0.03|R|F|1992-12-31|1992-11-01|1993-01-08|COLLECT COD|MAIL|iously pending deposits. furiously final p| +47881|82966|7969|5|22|42877.12|0.06|0.04|R|F|1992-12-29|1992-11-11|1993-01-01|COLLECT COD|FOB|final accounts. slowly even instruction| +47882|746755|9270|1|6|10810.32|0.07|0.06|N|O|1995-09-10|1995-10-15|1995-09-27|NONE|SHIP|ully special package| +47882|705128|5129|2|4|4532.36|0.06|0.02|N|O|1995-10-26|1995-12-02|1995-10-30|TAKE BACK RETURN|MAIL|ts sleep fluffily. excuses promise. furiou| +47882|71027|8531|3|16|15968.32|0.10|0.00|N|O|1995-12-01|1995-10-22|1995-12-08|TAKE BACK RETURN|RAIL|usly regular| +47882|741147|41148|4|22|26138.42|0.08|0.00|N|O|1995-12-03|1995-11-01|1995-12-31|DELIVER IN PERSON|MAIL|inly ironic packages sleep slyly above the| +47883|604288|4289|1|36|42921.00|0.05|0.04|R|F|1993-08-31|1993-10-13|1993-09-07|TAKE BACK RETURN|TRUCK|nt deposits | +47883|259619|22125|2|49|77351.40|0.09|0.00|R|F|1993-08-18|1993-10-09|1993-08-20|TAKE BACK RETURN|RAIL|usual, enticing pint| +47884|626839|1864|1|17|30018.60|0.08|0.02|N|O|1995-09-07|1995-08-03|1995-10-05|TAKE BACK RETURN|SHIP|, ironic accounts| +47884|267743|5259|2|14|23950.22|0.04|0.06|N|O|1995-08-06|1995-08-29|1995-08-13|COLLECT COD|RAIL| blithely even instr| +47885|502336|27357|1|44|58885.64|0.03|0.07|N|O|1995-10-24|1995-11-09|1995-11-12|TAKE BACK RETURN|FOB|usy ideas. r| +47885|753191|40737|2|26|32348.16|0.04|0.08|N|O|1995-12-02|1995-11-19|1995-12-06|DELIVER IN PERSON|AIR|g furiously. fluffily ironic theodolit| +47885|868353|43388|3|45|59458.95|0.07|0.07|N|O|1996-01-03|1995-12-27|1996-01-17|DELIVER IN PERSON|AIR|before the carefully bold packages| +47885|393694|18709|4|21|37541.28|0.02|0.02|N|O|1995-10-04|1995-12-27|1995-10-23|COLLECT COD|TRUCK|ns. blithely ironic a| +47885|800588|589|5|16|23816.64|0.08|0.03|N|O|1995-10-07|1995-12-22|1995-11-04|DELIVER IN PERSON|TRUCK|special deposits. | +47885|476694|14222|6|16|26730.72|0.03|0.08|N|O|1996-01-22|1995-12-26|1996-02-19|DELIVER IN PERSON|TRUCK|lly ironic packages. ironic, even req| +47886|484325|34326|1|27|35351.10|0.02|0.00|N|O|1997-02-02|1996-12-16|1997-02-16|TAKE BACK RETURN|FOB|ronic foxes poach fluffi| +47886|42345|4846|2|43|55355.62|0.03|0.08|N|O|1997-03-08|1996-12-09|1997-03-31|TAKE BACK RETURN|RAIL|he blithely final epitaphs. deposits ca| +47886|680308|17848|3|29|37359.83|0.09|0.00|N|O|1997-01-29|1996-12-18|1997-02-05|COLLECT COD|SHIP| sleep ideas. reque| +47886|925710|38229|4|45|78105.15|0.06|0.00|N|O|1997-01-18|1997-02-02|1997-02-11|NONE|FOB|ironic platelets e| +47886|395410|32932|5|49|73764.60|0.06|0.06|N|O|1996-12-02|1997-01-19|1996-12-17|COLLECT COD|RAIL|onic requests; carefully bold | +47887|575925|38437|1|12|24010.80|0.05|0.00|N|O|1996-10-09|1996-09-14|1996-10-14|NONE|SHIP|s. carefully regular excuses use? | +47887|571144|33656|2|50|60756.00|0.04|0.04|N|O|1996-08-11|1996-08-08|1996-09-01|COLLECT COD|RAIL|the blithely unusual pinto bea| +47887|203324|3325|3|3|3681.93|0.09|0.05|N|O|1996-09-01|1996-08-06|1996-09-11|TAKE BACK RETURN|TRUCK|ages. slyly express theodolites haggle qu| +47887|256012|31023|4|45|43560.00|0.03|0.07|N|O|1996-08-28|1996-08-22|1996-09-03|DELIVER IN PERSON|FOB|ully final packages are. slyly reg| +47887|787584|25130|5|15|25073.25|0.00|0.04|N|O|1996-10-23|1996-09-22|1996-11-14|DELIVER IN PERSON|FOB|oach blithe| +47912|283581|8592|1|23|35985.11|0.01|0.08|R|F|1993-12-03|1993-11-29|1993-12-15|TAKE BACK RETURN|MAIL|s nag. furiously express acco| +47912|129322|41825|2|36|48647.52|0.00|0.07|R|F|1993-12-20|1993-11-22|1994-01-03|COLLECT COD|RAIL|ngside of the packages.| +47912|502644|2645|3|18|29639.16|0.08|0.03|A|F|1993-12-13|1993-12-26|1993-12-25|DELIVER IN PERSON|AIR|ronic instructions alongside | +47913|498046|48047|1|49|51156.98|0.02|0.06|N|O|1996-11-20|1996-10-24|1996-12-18|NONE|REG AIR|final, special foxes. unusual accounts| +47913|646284|46285|2|1|1230.25|0.03|0.05|N|O|1996-10-18|1996-09-29|1996-10-19|TAKE BACK RETURN|REG AIR|as. furiously pending requests c| +47913|81795|44297|3|49|87062.71|0.04|0.02|N|O|1996-09-06|1996-11-05|1996-10-04|DELIVER IN PERSON|FOB| across the f| +47914|4507|42008|1|3|4234.50|0.02|0.07|R|F|1993-05-16|1993-04-21|1993-05-30|NONE|TRUCK| unusual id| +47914|738210|38211|2|23|28708.14|0.02|0.04|R|F|1993-06-06|1993-04-23|1993-06-23|DELIVER IN PERSON|SHIP|al, final ins| +47915|381984|6999|1|48|99166.56|0.08|0.04|R|F|1992-06-08|1992-06-26|1992-06-25|COLLECT COD|TRUCK|into beans use fluffily final dolph| +47915|992062|4582|2|16|18464.32|0.00|0.00|A|F|1992-07-08|1992-06-17|1992-07-24|DELIVER IN PERSON|AIR| the accounts. quick| +47916|65501|3005|1|6|8799.00|0.04|0.03|N|O|1998-04-04|1998-02-02|1998-04-11|NONE|MAIL| accounts. e| +47917|612967|12968|1|11|20679.23|0.08|0.00|N|O|1995-07-19|1995-07-29|1995-08-17|COLLECT COD|TRUCK|e the even packages. quickl| +47917|123827|36330|2|24|44419.68|0.09|0.06|N|O|1995-08-02|1995-07-14|1995-08-03|DELIVER IN PERSON|AIR|st carefully along the closel| +47917|144662|7165|3|15|25599.90|0.08|0.06|A|F|1995-05-26|1995-06-18|1995-06-03|DELIVER IN PERSON|FOB|attainments nag furiously around | +47917|325231|37738|4|45|56529.90|0.07|0.00|A|F|1995-05-30|1995-07-19|1995-06-15|COLLECT COD|AIR|haggle. specia| +47917|157355|32362|5|48|67792.80|0.10|0.06|N|O|1995-06-19|1995-06-17|1995-07-04|DELIVER IN PERSON|REG AIR|ajole carefully above the slyly unusu| +47917|655552|43092|6|13|19597.76|0.08|0.03|N|O|1995-07-05|1995-08-13|1995-07-23|NONE|TRUCK| even deposits? slyly silent pin| +47918|166964|4474|1|39|79207.44|0.05|0.08|R|F|1993-09-02|1993-08-02|1993-09-18|COLLECT COD|AIR|inal pinto beans. pendin| +47918|152047|2048|2|37|40664.48|0.03|0.02|R|F|1993-08-22|1993-07-09|1993-09-02|TAKE BACK RETURN|SHIP|onic instructions are fluff| +47918|452716|15226|3|17|28367.73|0.06|0.03|R|F|1993-05-05|1993-07-28|1993-05-15|TAKE BACK RETURN|TRUCK| regular accounts | +47918|786427|23973|4|38|57508.82|0.05|0.06|R|F|1993-07-25|1993-06-15|1993-08-06|DELIVER IN PERSON|TRUCK|across the unusual gifts wake | +47919|318599|31106|1|45|72791.10|0.03|0.04|A|F|1992-05-03|1992-06-13|1992-05-13|NONE|SHIP|osits alongside of| +47919|687105|49619|2|35|38222.45|0.07|0.04|R|F|1992-04-11|1992-05-21|1992-05-05|DELIVER IN PERSON|MAIL|onic deposits need to integr| +47919|172043|9553|3|17|18955.68|0.07|0.07|R|F|1992-05-23|1992-05-10|1992-05-31|NONE|AIR|s shall have to wake slyly along | +47919|516214|3745|4|14|17222.66|0.01|0.02|A|F|1992-04-11|1992-05-24|1992-05-09|COLLECT COD|FOB|s haggle ironically final requests. blit| +47919|992440|4960|5|48|73555.20|0.08|0.00|R|F|1992-04-19|1992-06-05|1992-05-05|DELIVER IN PERSON|REG AIR|icingly bold asymptotes hagg| +47919|936939|36940|6|35|69156.15|0.04|0.04|R|F|1992-07-12|1992-05-03|1992-08-01|DELIVER IN PERSON|SHIP| patterns. even, pending f| +47944|692834|42835|1|39|71245.20|0.00|0.01|R|F|1994-06-06|1994-05-24|1994-06-08|NONE|REG AIR|n platelets cajole carefully ironic asymp| +47944|445690|8199|2|48|78512.16|0.09|0.01|A|F|1994-05-11|1994-05-24|1994-06-06|COLLECT COD|TRUCK|he even accounts. regular, speci| +47944|708805|46348|3|5|9068.85|0.10|0.06|R|F|1994-05-05|1994-05-03|1994-05-25|COLLECT COD|MAIL|g, express requests. ca| +47945|161177|48687|1|14|17334.38|0.03|0.01|N|O|1997-07-31|1997-08-13|1997-08-15|COLLECT COD|FOB|nts-- ironi| +47945|896433|21468|2|25|35734.75|0.09|0.03|N|O|1997-10-11|1997-09-19|1997-10-29|DELIVER IN PERSON|AIR|p. foxes against th| +47945|345384|20397|3|34|48598.58|0.04|0.06|N|O|1997-08-20|1997-08-16|1997-09-03|COLLECT COD|MAIL| requests. packages are furio| +47945|864530|2082|4|24|35867.76|0.04|0.08|N|O|1997-07-30|1997-09-02|1997-08-17|NONE|REG AIR| special packages acr| +47946|962160|24680|1|45|54995.40|0.08|0.07|A|F|1994-05-19|1994-07-05|1994-05-21|COLLECT COD|MAIL| dazzle quic| +47947|898971|36523|1|38|74857.34|0.10|0.08|A|F|1992-06-23|1992-06-28|1992-07-11|NONE|REG AIR|ges wake slyly. carefully bo| +47947|990871|28429|2|18|35312.94|0.08|0.04|A|F|1992-08-10|1992-07-11|1992-09-01|TAKE BACK RETURN|FOB|le furiously against the expre| +47947|563695|13696|3|25|43966.75|0.02|0.01|A|F|1992-06-30|1992-08-08|1992-07-02|NONE|AIR|its might nag furiously along the spec| +47947|7329|19830|4|47|58107.04|0.03|0.01|A|F|1992-07-01|1992-08-03|1992-07-31|DELIVER IN PERSON|SHIP|structions wa| +47948|736793|24336|1|2|3659.52|0.02|0.04|N|O|1998-05-04|1998-03-21|1998-05-26|NONE|REG AIR|ngside of the c| +47948|276197|26198|2|32|37541.76|0.08|0.00|N|O|1998-01-22|1998-03-29|1998-02-01|NONE|REG AIR|inal requests alongside of the pinto bean| +47948|34614|34615|3|32|49555.52|0.06|0.06|N|O|1998-01-21|1998-04-19|1998-02-18|COLLECT COD|REG AIR|nal packages. blithely final e| +47948|753828|16344|4|10|18817.90|0.07|0.05|N|O|1998-02-16|1998-03-08|1998-03-18|TAKE BACK RETURN|RAIL|r the carefully bold i| +47948|583286|45798|5|48|65724.48|0.09|0.05|N|O|1998-01-21|1998-04-09|1998-01-22|DELIVER IN PERSON|MAIL|kages wake carefully. regular pa| +47948|280222|5233|6|48|57706.08|0.01|0.02|N|O|1998-02-19|1998-03-27|1998-03-10|TAKE BACK RETURN|TRUCK|sts along the pending, regular d| +47949|657958|45498|1|16|30654.72|0.09|0.00|N|O|1998-08-26|1998-07-02|1998-09-25|TAKE BACK RETURN|TRUCK|sual packages cajole acr| +47949|286509|36510|2|44|65801.56|0.00|0.05|N|O|1998-06-30|1998-06-10|1998-07-19|NONE|RAIL|xes. carefully pending pint| +47949|346102|8609|3|21|24109.89|0.02|0.05|N|O|1998-08-07|1998-06-26|1998-08-21|COLLECT COD|TRUCK|ely express excuses across the| +47949|932556|32557|4|19|30181.69|0.01|0.02|N|O|1998-07-23|1998-07-26|1998-07-28|TAKE BACK RETURN|MAIL|even instructions | +47950|59233|21735|1|49|58419.27|0.07|0.02|N|O|1998-05-05|1998-02-23|1998-05-18|NONE|AIR| unusual, special depend| +47950|518858|31369|2|30|56304.90|0.09|0.06|N|O|1998-03-29|1998-03-31|1998-04-13|NONE|REG AIR|bove the sl| +47950|442946|42947|3|43|81223.56|0.04|0.02|N|O|1998-05-04|1998-04-03|1998-05-14|TAKE BACK RETURN|MAIL|es sleep quickly. carefully silen| +47950|590797|28331|4|4|7551.08|0.06|0.07|N|O|1998-01-30|1998-04-10|1998-02-08|TAKE BACK RETURN|RAIL|en pinto beans at the permanent dependencie| +47950|512092|12093|5|8|8832.56|0.08|0.03|N|O|1998-03-06|1998-02-26|1998-03-18|DELIVER IN PERSON|TRUCK|ly express accounts wa| +47950|726404|38919|6|32|45771.84|0.04|0.08|N|O|1998-01-20|1998-03-25|1998-01-26|TAKE BACK RETURN|TRUCK|y along the blithely final frays. | +47951|362208|24716|1|8|10161.52|0.06|0.04|N|O|1996-02-08|1996-02-23|1996-03-07|TAKE BACK RETURN|SHIP|ounts. silently ironic accounts are quickl| +47951|625616|25617|2|20|30831.60|0.07|0.00|N|O|1996-02-13|1996-03-16|1996-02-18|DELIVER IN PERSON|SHIP|s. dolphins sleep. slyly regular pinto be| +47976|167788|42795|1|36|66808.08|0.07|0.01|R|F|1993-01-15|1993-01-16|1993-02-13|TAKE BACK RETURN|REG AIR|te the carefully pending acco| +47976|1183|38684|2|39|42283.02|0.02|0.05|R|F|1992-12-14|1993-02-08|1992-12-22|DELIVER IN PERSON|AIR|s are quickly acro| +47976|882649|20201|3|27|44053.20|0.05|0.05|A|F|1993-02-01|1992-12-21|1993-03-03|COLLECT COD|SHIP|ilent theodolites a| +47976|673107|35621|4|3|3240.21|0.03|0.00|A|F|1993-01-15|1993-01-06|1993-02-05|DELIVER IN PERSON|FOB|he final frets. idly even a| +47976|897272|47273|5|13|16499.99|0.04|0.00|R|F|1992-11-30|1993-01-12|1992-12-06|DELIVER IN PERSON|RAIL|ideas nag caref| +47976|441998|17015|6|21|40739.37|0.06|0.02|R|F|1993-03-06|1993-01-10|1993-04-02|TAKE BACK RETURN|MAIL|aggle furiously slyly express deposits. | +47977|25132|12633|1|9|9514.17|0.00|0.02|A|F|1995-05-17|1995-06-27|1995-06-16|DELIVER IN PERSON|RAIL|dolphins are car| +47977|389110|39111|2|10|11991.00|0.03|0.07|A|F|1995-05-24|1995-07-09|1995-05-31|TAKE BACK RETURN|REG AIR|ly special pac| +47977|768398|5944|3|27|39591.72|0.04|0.07|N|O|1995-08-20|1995-07-28|1995-08-23|TAKE BACK RETURN|MAIL|kly express pint| +47977|460840|35859|4|14|25211.48|0.09|0.07|N|O|1995-08-23|1995-07-22|1995-09-09|NONE|REG AIR|counts. carefully ironic ideas acro| +47977|326658|1671|5|39|65700.96|0.04|0.01|N|O|1995-07-10|1995-07-26|1995-07-29|NONE|RAIL|xes cajole b| +47978|701873|1874|1|39|73118.76|0.04|0.01|A|F|1994-09-15|1994-09-25|1994-10-09|TAKE BACK RETURN|RAIL| packages. furiously pending de| +47979|632307|44820|1|44|54527.88|0.04|0.00|N|O|1996-07-15|1996-08-12|1996-07-20|TAKE BACK RETURN|FOB| final deposits. bli| +47979|176045|1052|2|19|21299.76|0.10|0.01|N|O|1996-08-23|1996-08-24|1996-09-04|TAKE BACK RETURN|RAIL|ly bold theodolites. closely spe| +47980|954058|29097|1|20|22240.20|0.01|0.08|N|O|1996-09-08|1996-09-26|1996-10-03|COLLECT COD|TRUCK|r requests according to the gifts | +47980|852233|14751|2|24|28444.56|0.01|0.02|N|O|1996-08-14|1996-10-19|1996-08-26|COLLECT COD|MAIL|ngly unusual platelets. blithely re| +47980|470100|45119|3|24|25681.92|0.06|0.00|N|O|1996-09-25|1996-08-30|1996-10-13|DELIVER IN PERSON|RAIL|orbits serve furiously. spe| +47981|125675|13182|1|3|5102.01|0.08|0.08|R|F|1992-05-04|1992-03-27|1992-05-20|NONE|SHIP|equests after the unusu| +47981|209251|46764|2|48|55691.52|0.06|0.00|A|F|1992-04-13|1992-04-06|1992-05-13|COLLECT COD|AIR|dly regular instru| +47981|876223|38741|3|44|52763.92|0.00|0.03|R|F|1992-03-18|1992-04-21|1992-03-24|NONE|SHIP|sly express depo| +47981|669923|7463|4|7|13250.23|0.01|0.08|A|F|1992-02-22|1992-03-26|1992-03-01|COLLECT COD|MAIL|arefully regular acc| +47981|390835|15850|5|35|67403.70|0.05|0.02|R|F|1992-06-06|1992-04-30|1992-06-26|TAKE BACK RETURN|RAIL|beans haggle idly alongside of the slyl| +47981|755791|43337|6|20|36935.20|0.10|0.02|A|F|1992-05-12|1992-04-25|1992-06-08|NONE|RAIL|y. foxes haggle furiously carefully | +47981|567480|5014|7|37|57256.02|0.04|0.02|A|F|1992-03-30|1992-04-04|1992-04-08|TAKE BACK RETURN|MAIL|y. fluffily regular depos| +47982|630663|18200|1|41|65338.83|0.06|0.06|N|O|1996-01-18|1996-01-02|1996-01-22|COLLECT COD|FOB|bout the fluffily bold platelets affix car| +47982|543069|5580|2|31|34473.24|0.07|0.03|N|O|1995-10-19|1995-12-31|1995-11-18|TAKE BACK RETURN|REG AIR|yly among the | +47982|345698|20711|3|39|68003.52|0.09|0.04|N|O|1996-01-21|1995-12-22|1996-02-04|NONE|REG AIR|cial deposits among the furiously speci| +47983|34225|46726|1|16|18547.52|0.09|0.05|N|O|1996-07-09|1996-08-29|1996-07-27|NONE|SHIP| requests use carefully final packages.| +47983|216556|16557|2|3|4417.62|0.02|0.05|N|O|1996-06-21|1996-09-14|1996-07-10|TAKE BACK RETURN|AIR|long the bold, even | +47983|647304|34841|3|5|6256.35|0.06|0.03|N|O|1996-07-11|1996-07-28|1996-07-16|COLLECT COD|TRUCK|kly. quickly regular pinto beans nag f| +47983|221857|46866|4|7|12451.88|0.01|0.06|N|O|1996-08-28|1996-08-11|1996-09-15|NONE|MAIL| foxes detect slyly| +47983|739310|14339|5|46|62066.88|0.08|0.07|N|O|1996-06-25|1996-08-13|1996-07-19|NONE|AIR|gular requests. carefully e| +47983|577754|40266|6|23|42129.79|0.04|0.08|N|O|1996-06-27|1996-07-30|1996-07-12|TAKE BACK RETURN|FOB|gle above the finally regu| +48008|542714|42715|1|48|84321.12|0.03|0.08|N|O|1997-01-28|1997-02-14|1997-02-11|TAKE BACK RETURN|SHIP|es use at the ironic packages: carefull| +48008|380933|18455|2|40|80556.80|0.08|0.05|N|O|1997-04-10|1997-03-31|1997-05-03|TAKE BACK RETURN|AIR|ully ironic pl| +48008|329504|42011|3|49|75141.01|0.04|0.05|N|O|1997-01-17|1997-03-21|1997-02-14|TAKE BACK RETURN|REG AIR|egular packages| +48008|968644|18645|4|15|25689.00|0.03|0.04|N|O|1997-03-18|1997-02-17|1997-04-11|TAKE BACK RETURN|MAIL|ly pending instructions u| +48009|773888|36404|1|30|58855.50|0.01|0.02|R|F|1992-11-21|1992-12-21|1992-12-16|DELIVER IN PERSON|AIR| pending requests wake quickly acc| +48009|728584|28585|2|24|38701.20|0.01|0.02|R|F|1992-12-26|1993-01-15|1993-01-16|DELIVER IN PERSON|AIR|its. regula| +48010|696332|46333|1|9|11954.70|0.04|0.00|N|O|1997-12-19|1997-12-05|1997-12-22|COLLECT COD|MAIL|s haggle blithely silent deposits. even, ir| +48010|239356|39357|2|36|46632.24|0.05|0.03|N|O|1998-01-02|1997-12-09|1998-01-25|TAKE BACK RETURN|AIR|lways. furiously regular r| +48010|852396|2397|3|10|13483.50|0.09|0.07|N|O|1997-10-18|1997-11-21|1997-10-30|NONE|MAIL| blithely blithe accounts. e| +48010|218643|43652|4|42|65588.46|0.10|0.00|N|O|1997-10-26|1997-10-23|1997-11-09|NONE|FOB|oxes. carefully regular theodolites nag| +48010|724097|49126|5|33|36994.98|0.09|0.06|N|O|1997-12-24|1997-12-10|1998-01-23|COLLECT COD|SHIP|regular sentiments wake slyly a| +48011|220468|45477|1|13|18049.85|0.00|0.03|R|F|1992-10-19|1992-11-19|1992-11-15|DELIVER IN PERSON|RAIL| according to the fluffily fin| +48012|403187|3188|1|30|32704.80|0.05|0.00|R|F|1993-09-23|1993-11-05|1993-09-24|DELIVER IN PERSON|RAIL|y unusual pinto beans. b| +48012|350564|25579|2|40|64582.00|0.01|0.04|R|F|1993-09-27|1993-10-14|1993-10-18|COLLECT COD|AIR|tes use fluffily | +48012|922565|47602|3|40|63500.80|0.03|0.02|A|F|1993-12-21|1993-11-06|1993-12-25|NONE|SHIP| slyly silent pac| +48013|163049|13050|1|17|18904.68|0.07|0.04|R|F|1994-03-05|1994-02-18|1994-03-25|DELIVER IN PERSON|MAIL|its doubt fluffily instructions. blit| +48013|359619|22127|2|40|67144.00|0.02|0.04|R|F|1994-01-26|1994-03-08|1994-02-11|TAKE BACK RETURN|RAIL|ding platelets use blithely depo| +48013|115926|15927|3|2|3883.84|0.04|0.06|A|F|1994-01-13|1994-03-04|1994-01-18|DELIVER IN PERSON|REG AIR|ular, final accounts. carefully bold s| +48013|356157|6158|4|25|30328.50|0.07|0.01|A|F|1994-03-24|1994-02-19|1994-03-27|NONE|TRUCK|elets haggle. unusual dolphins sleep f| +48013|929062|4099|5|22|24002.44|0.04|0.08|A|F|1994-03-31|1994-04-01|1994-04-25|COLLECT COD|RAIL|ular theodolites sleep furiously bold pack| +48013|731894|6923|6|40|77034.40|0.04|0.04|A|F|1994-02-25|1994-02-13|1994-03-03|COLLECT COD|FOB|final dependencies wake after the sly| +48014|423080|35589|1|47|47143.82|0.01|0.02|A|F|1995-03-06|1995-04-06|1995-03-10|NONE|REG AIR|quests. blit| +48014|692699|17726|2|21|35524.86|0.05|0.04|A|F|1995-04-14|1995-05-17|1995-05-08|NONE|RAIL|ggle regular, special escapades. careful| +48014|181303|43807|3|9|12458.70|0.07|0.04|R|F|1995-05-07|1995-05-20|1995-05-27|COLLECT COD|TRUCK| foxes. packages hang fluff| +48015|3680|28681|1|43|68098.24|0.00|0.00|A|F|1995-02-07|1994-12-30|1995-02-09|NONE|FOB| furiously across the bold e| +48040|394496|7004|1|43|68390.64|0.08|0.00|N|O|1996-04-14|1996-05-06|1996-04-30|TAKE BACK RETURN|REG AIR| express excuses| +48040|282566|20082|2|1|1548.55|0.10|0.05|N|O|1996-06-18|1996-06-08|1996-06-21|COLLECT COD|TRUCK|ly ironic asymptotes. regular, pending| +48040|74372|36874|3|6|8078.22|0.04|0.03|N|O|1996-05-06|1996-05-07|1996-05-24|TAKE BACK RETURN|REG AIR|y players around the flu| +48041|628162|3187|1|27|29433.51|0.07|0.00|R|F|1994-12-07|1994-11-30|1995-01-02|DELIVER IN PERSON|TRUCK|slyly regular pinto beans along the fluf| +48041|516953|16954|2|27|53188.11|0.07|0.06|R|F|1995-01-04|1994-12-20|1995-01-24|NONE|FOB|packages sleep fluffily foxes. | +48041|415549|40566|3|17|24896.84|0.04|0.02|R|F|1994-11-07|1994-12-06|1994-11-22|DELIVER IN PERSON|TRUCK|lar dolphins cajole f| +48042|383631|21153|1|15|25719.30|0.09|0.04|N|O|1997-05-18|1997-05-11|1997-05-20|NONE|RAIL|ses doubt. final de| +48042|671269|8809|2|9|11162.07|0.06|0.05|N|O|1997-05-03|1997-05-25|1997-05-06|NONE|TRUCK|he slyly even instructions. pending, sp| +48042|14278|39279|3|42|50075.34|0.09|0.06|N|O|1997-05-27|1997-06-20|1997-06-20|NONE|TRUCK|as blithely after the slyly final | +48042|962305|12306|4|8|10938.08|0.01|0.02|N|O|1997-07-25|1997-05-25|1997-08-14|COLLECT COD|RAIL|ost carefully about the fina| +48043|877882|27883|1|7|13018.88|0.09|0.05|N|O|1995-09-28|1995-10-15|1995-09-30|NONE|REG AIR|he carefully regular | +48044|413385|25894|1|2|2596.72|0.07|0.08|A|F|1992-05-01|1992-07-14|1992-05-29|TAKE BACK RETURN|MAIL|tterns. careful dependencies haggle furi| +48044|750023|25054|2|49|52576.51|0.00|0.01|R|F|1992-08-13|1992-07-12|1992-08-23|NONE|AIR|quickly furiously iron| +48045|113390|13391|1|26|36488.14|0.04|0.03|N|O|1997-07-02|1997-07-28|1997-07-16|COLLECT COD|RAIL|affix furiously across the ca| +48045|732944|7973|2|31|61284.21|0.01|0.07|N|O|1997-08-21|1997-08-09|1997-09-02|DELIVER IN PERSON|RAIL| dependencies alongside of the carefully f| +48045|586442|36443|3|3|4585.26|0.06|0.02|N|O|1997-07-17|1997-08-13|1997-08-03|NONE|FOB|usly regular packa| +48045|319871|44884|4|47|88870.42|0.09|0.00|N|O|1997-05-30|1997-08-18|1997-06-12|COLLECT COD|REG AIR|y courts. pendi| +48045|68613|31115|5|44|69590.84|0.08|0.04|N|O|1997-09-20|1997-07-12|1997-09-26|NONE|RAIL| enticing packages sleep boldly sil| +48045|173108|23109|6|27|31889.70|0.10|0.05|N|O|1997-08-19|1997-07-09|1997-09-17|DELIVER IN PERSON|FOB|press packages. | +48046|355803|18311|1|37|68775.23|0.02|0.00|R|F|1993-08-25|1993-09-08|1993-09-24|TAKE BACK RETURN|AIR|s. final, even requests c| +48047|50771|38275|1|49|84366.73|0.00|0.06|R|F|1995-05-19|1995-04-20|1995-05-30|TAKE BACK RETURN|AIR|dencies nag blit| +48047|303875|28888|2|32|60123.52|0.09|0.05|R|F|1995-03-17|1995-05-28|1995-04-06|NONE|SHIP|sits. blithely thin packages use blithely e| +48047|226310|26311|3|30|37089.00|0.09|0.04|A|F|1995-04-26|1995-04-07|1995-05-22|DELIVER IN PERSON|SHIP|ial packages sleep c| +48047|579412|29413|4|20|29827.80|0.10|0.06|R|F|1995-04-17|1995-05-11|1995-04-23|NONE|RAIL|cajole along the furiously pending a| +48072|456419|43947|1|40|55015.60|0.08|0.04|N|O|1998-03-11|1998-05-03|1998-03-30|TAKE BACK RETURN|SHIP|y regular decoys are furiously across the s| +48072|29440|29441|2|50|68472.00|0.03|0.01|N|O|1998-06-20|1998-05-15|1998-07-14|TAKE BACK RETURN|REG AIR|he ironic accounts. bu| +48072|792738|42739|3|33|60413.10|0.02|0.04|N|O|1998-03-29|1998-05-27|1998-03-31|TAKE BACK RETURN|MAIL|ctions. re| +48073|393217|18232|1|47|61579.40|0.00|0.04|N|O|1998-05-04|1998-04-15|1998-05-14|NONE|MAIL|ajole quickly express deposits. unusual, ex| +48073|784226|46742|2|25|32754.75|0.00|0.01|N|O|1998-02-23|1998-03-29|1998-02-28|TAKE BACK RETURN|FOB|es. pinto beans w| +48073|477206|2225|3|45|53243.10|0.02|0.06|N|O|1998-04-02|1998-03-26|1998-05-02|TAKE BACK RETURN|TRUCK| packages. blithely final deposi| +48073|387349|37350|4|34|48835.22|0.05|0.08|N|O|1998-03-08|1998-03-19|1998-03-15|TAKE BACK RETURN|AIR| packages wake busily. furiously fina| +48073|161799|11800|5|48|89317.92|0.01|0.00|N|O|1998-01-24|1998-03-05|1998-02-13|NONE|REG AIR|ounts after the fluf| +48073|347477|47478|6|29|44209.34|0.09|0.02|N|O|1998-04-12|1998-03-29|1998-05-06|DELIVER IN PERSON|FOB|nt gifts sleep quickly among the fluffily| +48074|254392|41908|1|3|4039.14|0.10|0.00|N|O|1997-01-29|1996-12-31|1997-02-19|NONE|AIR|ggle furiously careful| +48074|558675|33698|2|49|84948.85|0.00|0.08|N|O|1997-01-01|1997-01-12|1997-01-26|DELIVER IN PERSON|AIR| regularly even instructions sleep | +48074|646096|21121|3|12|12504.72|0.06|0.07|N|O|1997-02-20|1996-12-03|1997-02-28|DELIVER IN PERSON|AIR| dolphins ab| +48074|932088|32089|4|7|7840.28|0.07|0.08|N|O|1997-01-17|1997-01-16|1997-01-30|COLLECT COD|AIR|oubt always against the ent| +48074|602002|14515|5|21|18983.37|0.08|0.04|N|O|1997-02-13|1997-01-13|1997-03-07|TAKE BACK RETURN|TRUCK| even realms integrate deposits. ironi| +48074|847227|34776|6|38|44618.84|0.10|0.05|N|O|1997-01-07|1997-01-05|1997-01-25|COLLECT COD|AIR|accounts. final | +48075|872930|35448|1|28|53280.92|0.01|0.08|A|F|1994-07-08|1994-07-31|1994-07-18|NONE|MAIL|uriously. quickly| +48075|317887|5406|2|32|60955.84|0.06|0.08|R|F|1994-09-25|1994-07-27|1994-09-29|NONE|TRUCK|ts. final, even foxes dazzle qu| +48075|726504|14047|3|2|3060.94|0.03|0.01|R|F|1994-09-08|1994-07-11|1994-09-17|DELIVER IN PERSON|AIR|ites cajole car| +48075|336540|36541|4|39|61484.67|0.01|0.05|R|F|1994-09-02|1994-07-06|1994-09-15|NONE|AIR|xpress deposits impress after t| +48075|216201|28706|5|11|12289.09|0.02|0.04|R|F|1994-06-08|1994-07-10|1994-06-13|TAKE BACK RETURN|FOB|endencies. furi| +48075|680229|30230|6|33|39903.27|0.10|0.03|A|F|1994-09-03|1994-08-30|1994-09-06|COLLECT COD|AIR|es sleep furiously even accounts-- furious| +48076|62298|49802|1|29|36548.41|0.07|0.01|A|F|1993-06-18|1993-05-25|1993-07-05|NONE|TRUCK|fluffily pending deposits | +48076|40371|40372|2|28|36718.36|0.08|0.02|R|F|1993-03-25|1993-04-26|1993-04-20|NONE|AIR|ounts nag carefully ironic | +48076|515325|15326|3|7|9382.10|0.05|0.07|R|F|1993-06-30|1993-04-20|1993-07-25|NONE|RAIL|furiously special dep| +48076|52363|27366|4|46|60506.56|0.07|0.06|R|F|1993-05-25|1993-05-15|1993-06-20|COLLECT COD|RAIL|al foxes. special, special ide| +48076|60103|10104|5|20|21262.00|0.02|0.01|A|F|1993-05-29|1993-04-20|1993-06-02|COLLECT COD|SHIP|e platelets. furiously final r| +48077|222737|10250|1|20|33194.40|0.00|0.06|R|F|1992-05-30|1992-07-31|1992-06-07|NONE|SHIP|oxes about the accounts boost regular reque| +48077|540696|28227|2|32|55573.44|0.01|0.05|A|F|1992-06-21|1992-06-22|1992-06-22|DELIVER IN PERSON|FOB|he instructions-- accounts | +48078|687721|25261|1|48|82017.12|0.00|0.08|N|O|1995-12-28|1995-11-12|1996-01-03|COLLECT COD|REG AIR|s. unusual, ironic | +48079|166548|16549|1|34|54894.36|0.10|0.03|R|F|1993-08-05|1993-07-18|1993-09-02|NONE|TRUCK|posits maintain unusual theodolites. ca| +48079|168351|18352|2|22|31225.70|0.03|0.03|A|F|1993-10-07|1993-09-08|1993-10-28|NONE|FOB|ts are sly| +48079|469760|44779|3|15|25946.10|0.03|0.01|A|F|1993-08-04|1993-07-21|1993-08-22|COLLECT COD|MAIL|ckly express foxes| +48104|43257|5758|1|29|34807.25|0.09|0.05|R|F|1992-12-05|1993-01-19|1992-12-28|DELIVER IN PERSON|MAIL|mptotes. express dependencies cajole | +48104|13167|668|2|1|1080.16|0.10|0.02|R|F|1993-01-19|1993-01-02|1993-02-10|DELIVER IN PERSON|SHIP|p. quietly ironic braid| +48104|289519|2025|3|47|70899.50|0.02|0.08|R|F|1992-12-28|1992-12-01|1993-01-23|TAKE BACK RETURN|SHIP| regularly ev| +48104|939072|39073|4|2|2222.06|0.07|0.07|R|F|1992-11-20|1992-12-03|1992-12-12|NONE|MAIL|nstructions are| +48104|967136|17137|5|42|50529.78|0.00|0.01|R|F|1992-10-29|1992-12-28|1992-11-25|NONE|MAIL|ly close accounts cajole. unusual, r| +48104|645068|20093|6|44|44573.32|0.02|0.02|R|F|1992-12-30|1992-12-08|1993-01-24|DELIVER IN PERSON|RAIL|kages use blithely final multipliers| +48104|648718|48719|7|36|60000.48|0.02|0.08|R|F|1992-12-04|1992-12-16|1992-12-22|TAKE BACK RETURN|AIR|regular requests. f| +48105|996019|33577|1|30|33449.10|0.03|0.03|N|O|1997-09-18|1997-10-21|1997-09-26|NONE|REG AIR|-- silently even instructions unw| +48105|78353|28354|2|25|33283.75|0.01|0.00|N|O|1997-11-16|1997-11-08|1997-12-16|DELIVER IN PERSON|MAIL|ld foxes wake slyly r| +48105|864986|40021|3|47|91694.18|0.10|0.01|N|O|1997-09-10|1997-09-15|1997-09-24|COLLECT COD|MAIL|s. enticing| +48105|811423|23940|4|41|54709.58|0.07|0.06|N|O|1997-09-07|1997-09-25|1997-09-10|COLLECT COD|TRUCK|s-- ideas haggle sl| +48106|319075|44088|1|36|39386.16|0.01|0.03|A|F|1993-05-21|1993-04-26|1993-06-20|TAKE BACK RETURN|MAIL|sly final escapades nag.| +48106|688785|1299|2|49|86913.75|0.05|0.08|A|F|1993-04-26|1993-04-12|1993-04-29|TAKE BACK RETURN|MAIL|thless pinto beans. final fox| +48106|406640|31657|3|17|26292.54|0.08|0.04|R|F|1993-03-13|1993-05-14|1993-04-11|TAKE BACK RETURN|MAIL|ged accounts boost above | +48106|397626|10134|4|46|79286.06|0.05|0.04|R|F|1993-06-18|1993-05-13|1993-07-15|COLLECT COD|SHIP|ges. silently bold waters ar| +48106|887319|37320|5|24|31350.48|0.08|0.00|R|F|1993-03-02|1993-03-30|1993-03-29|TAKE BACK RETURN|AIR|uriously unusual courts boost| +48106|160469|10470|6|4|6117.84|0.00|0.08|R|F|1993-05-30|1993-03-25|1993-05-31|DELIVER IN PERSON|TRUCK|ages cajole furious| +48107|108451|33456|1|48|70053.60|0.06|0.08|A|F|1992-03-08|1992-04-23|1992-03-15|DELIVER IN PERSON|SHIP|en dependencies. slyl| +48108|686980|36981|1|41|80644.95|0.06|0.06|R|F|1992-05-04|1992-03-10|1992-05-06|DELIVER IN PERSON|TRUCK|. blithely quiet inst| +48108|72103|9607|2|14|15051.40|0.04|0.07|A|F|1992-01-11|1992-02-29|1992-02-08|NONE|RAIL|after the furiously express pinto beans| +48109|622446|47471|1|34|46525.94|0.03|0.03|A|F|1994-04-28|1994-05-15|1994-05-24|DELIVER IN PERSON|FOB| carefully fina| +48109|443433|43434|2|46|63314.86|0.07|0.02|A|F|1994-05-20|1994-04-29|1994-05-22|TAKE BACK RETURN|RAIL|rding to the blithely re| +48109|775739|25740|3|19|34479.30|0.03|0.05|R|F|1994-02-26|1994-04-16|1994-03-10|NONE|TRUCK|lly express dugouts nag requests: fi| +48109|835537|23086|4|12|17669.88|0.02|0.06|R|F|1994-04-11|1994-05-10|1994-05-10|NONE|REG AIR| are carefully final ac| +48109|862040|37075|5|39|39078.00|0.02|0.08|R|F|1994-05-31|1994-04-26|1994-06-29|DELIVER IN PERSON|TRUCK|nd the pending deposits integrate furiou| +48109|303854|16361|6|1|1857.84|0.07|0.01|A|F|1994-06-11|1994-03-22|1994-07-03|NONE|AIR|e carefully regular dependencies. blithe| +48110|646025|8538|1|22|21361.78|0.01|0.06|A|F|1993-10-24|1993-10-19|1993-10-30|DELIVER IN PERSON|AIR| ironic accounts. carefully regul| +48110|733316|20859|2|24|32382.72|0.00|0.07|A|F|1993-11-04|1993-11-02|1993-11-23|TAKE BACK RETURN|SHIP|ges-- carefully | +48110|827455|2488|3|16|22118.56|0.05|0.00|R|F|1993-09-24|1993-10-30|1993-10-03|TAKE BACK RETURN|FOB|; bold, regular requests nag regularly.| +48110|24421|24422|4|21|28253.82|0.09|0.08|A|F|1993-11-09|1993-10-05|1993-11-11|COLLECT COD|FOB|lly beneat| +48110|443112|30637|5|17|17936.53|0.01|0.08|R|F|1993-08-23|1993-09-07|1993-09-20|TAKE BACK RETURN|FOB|lithely regular deposits. blithely bold ac| +48111|855593|18111|1|14|21679.70|0.08|0.08|A|F|1993-05-13|1993-06-22|1993-06-06|COLLECT COD|TRUCK|heodolites grow blithel| +48111|948992|48993|2|25|51023.75|0.01|0.08|R|F|1993-06-11|1993-06-13|1993-06-25|NONE|TRUCK|ly regular accounts dazzle according to the| +48111|706423|6424|3|7|10005.73|0.01|0.02|R|F|1993-07-26|1993-07-07|1993-08-25|DELIVER IN PERSON|MAIL| ideas wake fluffily. blithely regu| +48111|834665|47182|4|11|17595.82|0.06|0.07|R|F|1993-06-28|1993-06-23|1993-07-26|DELIVER IN PERSON|REG AIR|ronically | +48136|70583|45586|1|28|43500.24|0.01|0.04|A|F|1992-06-12|1992-07-05|1992-06-26|NONE|SHIP|haggle slyly ironi| +48136|280262|17778|2|44|54659.00|0.04|0.05|R|F|1992-08-11|1992-06-17|1992-08-21|TAKE BACK RETURN|MAIL|ily regular excuses detect across the r| +48136|351790|26805|3|22|40519.16|0.02|0.02|A|F|1992-08-19|1992-06-11|1992-08-21|COLLECT COD|TRUCK|es beside the | +48136|523384|48405|4|22|30961.92|0.06|0.04|A|F|1992-08-14|1992-06-26|1992-09-03|NONE|REG AIR|st quickly express sheaves. pending | +48137|729253|29254|1|17|21797.74|0.06|0.04|A|F|1994-10-18|1994-09-09|1994-10-23|DELIVER IN PERSON|REG AIR|into beans cajole even accounts. furiou| +48138|323913|11432|1|12|23242.80|0.05|0.07|N|O|1997-05-16|1997-03-19|1997-05-18|DELIVER IN PERSON|REG AIR|beneath the | +48139|71416|46419|1|15|20811.15|0.01|0.02|N|O|1998-08-27|1998-09-02|1998-09-22|COLLECT COD|REG AIR|ng the regular foxes. fluffily silent the| +48139|280228|17744|2|3|3624.63|0.09|0.02|N|O|1998-09-19|1998-07-23|1998-10-17|NONE|MAIL|ial platelets| +48139|777976|27977|3|37|75995.78|0.09|0.08|N|O|1998-07-23|1998-07-24|1998-08-07|DELIVER IN PERSON|SHIP| deposits. ex| +48140|79629|29630|1|11|17694.82|0.05|0.05|N|O|1996-11-21|1997-01-18|1996-12-13|NONE|TRUCK|ests. ruthless, final requests cajole slyly| +48140|322824|22825|2|25|46170.25|0.05|0.00|N|O|1996-11-18|1997-01-01|1996-12-06|DELIVER IN PERSON|AIR|eans are nea| +48140|700536|25565|3|45|69142.50|0.04|0.01|N|O|1997-01-19|1997-01-06|1997-02-07|NONE|AIR|iously requests. requests cajole. care| +48140|893454|18489|4|3|4342.23|0.10|0.05|N|O|1996-12-12|1996-12-31|1997-01-05|TAKE BACK RETURN|TRUCK|asymptotes boost per| +48140|279341|4352|5|10|13203.30|0.05|0.07|N|O|1996-12-10|1997-02-08|1996-12-19|NONE|RAIL|lly even dugouts wake quick| +48140|874612|37130|6|22|34904.54|0.01|0.05|N|O|1997-01-13|1997-01-06|1997-01-21|DELIVER IN PERSON|AIR|le express foxes. final, ironic pinto bea| +48140|602762|40299|7|18|29965.14|0.02|0.07|N|O|1997-02-11|1997-01-02|1997-02-23|NONE|FOB|s cajole carefully quickly unusual theo| +48141|606667|6668|1|19|29898.97|0.07|0.05|N|O|1997-08-26|1997-07-05|1997-09-20|TAKE BACK RETURN|SHIP|n pinto beans nag carefully b| +48141|240008|15017|2|5|4739.95|0.00|0.05|N|O|1997-09-08|1997-06-29|1997-10-02|NONE|FOB|nstructions ca| +48141|808179|33212|3|37|40223.81|0.05|0.00|N|O|1997-09-04|1997-08-08|1997-09-09|TAKE BACK RETURN|MAIL|ges among the foxes maintain slyly unusual| +48142|332246|44753|1|42|53685.66|0.08|0.07|N|O|1996-12-08|1996-10-15|1996-12-24|COLLECT COD|FOB|ously unusual packages use | +48142|43552|31053|2|1|1495.55|0.10|0.07|N|O|1996-12-02|1996-10-20|1997-01-01|COLLECT COD|AIR|g accounts sleep furiously fluffily ironic| +48142|976251|38771|3|3|3981.63|0.08|0.06|N|O|1996-10-03|1996-09-30|1996-10-15|NONE|TRUCK|busily regular | +48142|846332|33881|4|39|49853.31|0.03|0.01|N|O|1996-10-17|1996-09-25|1996-10-24|DELIVER IN PERSON|AIR|ent deposits. accounts about the| +48142|298536|36052|5|1|1534.52|0.02|0.08|N|O|1996-12-06|1996-11-10|1996-12-13|NONE|AIR|the furiously p| +48142|489645|14664|6|11|17980.82|0.02|0.01|N|O|1996-11-15|1996-10-13|1996-12-04|COLLECT COD|FOB|es above the quic| +48142|455906|5907|7|43|80060.84|0.00|0.05|N|O|1996-09-04|1996-10-21|1996-09-18|DELIVER IN PERSON|FOB|y final pinto beans. careful| +48143|397769|35291|1|48|89604.00|0.03|0.06|N|O|1995-11-30|1995-12-30|1995-12-28|TAKE BACK RETURN|TRUCK|usual asymptotes wake| +48168|603451|28476|1|26|35214.92|0.07|0.05|A|F|1993-02-05|1993-04-19|1993-03-01|TAKE BACK RETURN|REG AIR|deposits. instructions sleep. platele| +48168|188394|898|2|5|7411.95|0.02|0.04|R|F|1993-04-10|1993-03-27|1993-05-03|DELIVER IN PERSON|TRUCK|he quickly regular accounts. regular pac| +48168|331187|43694|3|39|47508.63|0.04|0.08|A|F|1993-04-11|1993-03-20|1993-04-19|DELIVER IN PERSON|TRUCK| ironic request| +48168|254544|29555|4|4|5994.12|0.00|0.00|R|F|1993-04-21|1993-04-21|1993-05-12|NONE|RAIL|eep. pending deposits grow. deposits cajol| +48168|108389|45896|5|24|33537.12|0.03|0.01|R|F|1993-02-11|1993-03-11|1993-03-10|NONE|AIR|quickly. furiously ex| +48168|684407|46921|6|10|13913.70|0.04|0.02|R|F|1993-04-03|1993-03-05|1993-04-13|NONE|REG AIR|y ironic Tiresias across the reques| +48169|935231|22786|1|5|6330.95|0.10|0.04|N|O|1997-02-16|1997-01-02|1997-02-19|DELIVER IN PERSON|SHIP|equests boost. quickly speci| +48169|421668|34177|2|15|23844.60|0.03|0.06|N|O|1996-11-25|1996-12-25|1996-12-10|COLLECT COD|TRUCK|egular reque| +48169|960987|23507|3|9|18431.46|0.04|0.03|N|O|1996-11-15|1996-11-26|1996-12-05|TAKE BACK RETURN|REG AIR|c theodolites wake careful| +48169|303223|40742|4|31|38012.51|0.00|0.03|N|O|1997-01-05|1997-01-15|1997-01-25|DELIVER IN PERSON|MAIL| blithely ironic| +48169|259672|9673|5|31|50581.46|0.08|0.07|N|O|1996-12-09|1997-01-16|1996-12-27|NONE|TRUCK|blithely special| +48169|306079|18586|6|36|39062.16|0.02|0.03|N|O|1996-11-17|1997-01-13|1996-12-04|TAKE BACK RETURN|FOB| haggle. pending grouches kindle slyl| +48170|440516|3025|1|26|37868.74|0.09|0.01|R|F|1993-08-25|1993-07-07|1993-09-17|TAKE BACK RETURN|RAIL|eans detect-- carefully special a| +48170|743003|5518|2|6|6275.82|0.09|0.06|A|F|1993-05-04|1993-07-10|1993-05-11|NONE|RAIL| detect fluffily furiously even pint| +48170|648250|10763|3|43|51523.46|0.03|0.00|A|F|1993-07-03|1993-07-20|1993-07-15|DELIVER IN PERSON|FOB| slyly carefully even requests| +48170|137327|37328|4|10|13643.20|0.09|0.01|R|F|1993-05-10|1993-06-02|1993-05-16|DELIVER IN PERSON|SHIP| requests snooze quickly. fluffily | +48171|13698|1199|1|34|54797.46|0.05|0.02|R|F|1993-04-07|1993-02-22|1993-05-04|DELIVER IN PERSON|SHIP| instructions wou| +48171|213474|25979|2|30|41623.80|0.04|0.02|R|F|1993-01-28|1993-02-07|1993-02-14|COLLECT COD|REG AIR|ages among the blithely pending fox| +48171|849699|49700|3|16|26378.40|0.05|0.03|A|F|1993-04-04|1993-02-15|1993-04-14|DELIVER IN PERSON|AIR|s. ironic warthogs nag carefully| +48171|890926|3444|4|43|82425.84|0.00|0.03|A|F|1993-04-10|1993-02-27|1993-04-30|COLLECT COD|MAIL|platelets. pinto beans wake fur| +48171|788793|26339|5|13|24462.88|0.00|0.02|R|F|1993-04-19|1993-01-28|1993-05-18|COLLECT COD|RAIL|express requests. quickly bold| +48171|229039|29040|6|38|36784.76|0.04|0.04|R|F|1993-03-27|1993-01-29|1993-04-13|DELIVER IN PERSON|FOB| accounts benea| +48171|456556|6557|7|9|13612.77|0.00|0.04|A|F|1993-01-26|1993-03-24|1993-02-22|DELIVER IN PERSON|REG AIR|lose about the b| +48172|325634|25635|1|36|59746.32|0.00|0.07|N|O|1996-04-03|1996-02-08|1996-04-26|TAKE BACK RETURN|REG AIR|he unusual ideas. slyly final acco| +48172|927477|27478|2|42|63186.06|0.09|0.05|N|O|1996-02-09|1996-02-25|1996-03-10|TAKE BACK RETURN|TRUCK|c deposits. quickly express re| +48172|103807|3808|3|26|47080.80|0.08|0.05|N|O|1996-03-23|1996-03-07|1996-03-27|NONE|MAIL| packages cajole ruthlessly qu| +48172|676854|14394|4|16|29293.12|0.06|0.04|N|O|1995-12-30|1996-02-23|1996-01-16|NONE|REG AIR|inal ideas grow against the qu| +48172|877083|39601|5|45|47701.80|0.09|0.08|N|O|1996-03-01|1996-03-12|1996-03-19|COLLECT COD|REG AIR|asymptotes: carefully express pa| +48173|261237|48753|1|46|55118.12|0.02|0.03|R|F|1992-04-09|1992-04-19|1992-05-04|NONE|MAIL|arefully foxes. special, bold packages ar| +48173|608307|33332|2|41|49826.07|0.08|0.08|R|F|1992-05-24|1992-03-06|1992-05-27|NONE|MAIL|ffily ironic accounts wake slyly. final| +48173|805475|43024|3|26|35891.18|0.09|0.03|R|F|1992-05-02|1992-04-07|1992-05-07|NONE|REG AIR| instructions integrate s| +48173|603318|15831|4|7|8548.96|0.08|0.01|A|F|1992-05-21|1992-03-12|1992-05-25|COLLECT COD|MAIL|ptotes haggle carefully. blithely| +48173|955711|30750|5|17|30033.39|0.00|0.03|R|F|1992-04-04|1992-04-03|1992-04-28|TAKE BACK RETURN|SHIP| bold requests about the deposit| +48174|774704|12250|1|10|17786.70|0.08|0.07|N|O|1995-10-27|1995-11-14|1995-11-22|DELIVER IN PERSON|REG AIR|the ironic courts wake above the unusual,| +48174|445219|45220|2|23|26776.37|0.06|0.05|N|O|1996-01-15|1995-11-08|1996-02-03|COLLECT COD|TRUCK| pending requests. slyly regular | +48174|792182|4698|3|38|48417.70|0.00|0.08|N|O|1996-01-09|1995-12-18|1996-01-11|NONE|SHIP|ents haggle furiously against| +48174|188251|13258|4|42|56248.50|0.09|0.01|N|O|1996-01-23|1995-11-27|1996-02-03|DELIVER IN PERSON|REG AIR|d platelets are closely c| +48175|937512|37513|1|25|38736.75|0.09|0.02|R|F|1994-03-06|1994-03-07|1994-03-10|NONE|FOB|quickly special deposits are. blithe| +48175|761705|36736|2|19|33566.73|0.00|0.06|R|F|1994-05-07|1994-03-06|1994-05-09|NONE|SHIP|t instructions. blithely fina| +48200|923677|23678|1|15|25509.45|0.03|0.07|N|O|1997-03-25|1997-04-26|1997-04-20|NONE|RAIL|hely regula| +48200|226210|1219|2|13|14770.60|0.07|0.05|N|O|1997-04-30|1997-05-13|1997-05-16|TAKE BACK RETURN|TRUCK|ag carefully | +48200|901462|1463|3|18|26341.56|0.10|0.04|N|O|1997-02-23|1997-05-06|1997-02-25|DELIVER IN PERSON|REG AIR| express packag| +48201|836769|49286|1|18|30702.96|0.09|0.00|A|F|1993-09-18|1993-07-30|1993-10-18|DELIVER IN PERSON|FOB|lly against the furiously ironic dep| +48202|306916|19423|1|45|86530.50|0.03|0.05|N|O|1995-09-27|1995-08-01|1995-10-05|COLLECT COD|AIR|oss the care| +48203|783478|8509|1|48|74949.12|0.09|0.00|R|F|1992-06-20|1992-08-29|1992-07-14|NONE|AIR|ts are. fina| +48203|905630|30667|2|24|39254.16|0.08|0.04|A|F|1992-08-22|1992-08-19|1992-09-16|TAKE BACK RETURN|REG AIR|s wake quickly quickly final requests.| +48203|922876|10431|3|19|36077.77|0.02|0.03|A|F|1992-07-02|1992-08-19|1992-07-26|TAKE BACK RETURN|MAIL|sily alongside of the ca| +48203|776704|26705|4|15|26710.05|0.04|0.08|R|F|1992-07-27|1992-09-03|1992-08-02|TAKE BACK RETURN|AIR|e ironic req| +48204|321204|46217|1|32|39206.08|0.07|0.06|N|O|1997-07-30|1997-10-21|1997-08-14|NONE|REG AIR|special, fi| +48204|462744|272|2|26|44374.72|0.03|0.01|N|O|1997-09-26|1997-10-13|1997-10-01|NONE|AIR|ccounts nag blithely. ironic, e| +48205|791026|16057|1|2|2233.98|0.10|0.06|N|O|1998-04-05|1998-03-19|1998-04-24|DELIVER IN PERSON|REG AIR|ymptotes engage after the car| +48205|767515|5061|2|29|45891.92|0.03|0.05|N|O|1998-05-12|1998-03-18|1998-05-22|TAKE BACK RETURN|FOB|slyly final packages are quickly p| +48205|618984|31497|3|4|7611.80|0.07|0.06|N|O|1998-04-27|1998-04-29|1998-05-11|NONE|MAIL|. carefully ironic accounts mold bes| +48206|144740|44741|1|44|78528.56|0.07|0.04|R|F|1993-12-25|1993-10-07|1994-01-12|COLLECT COD|SHIP|arefully regular| +48206|639733|2246|2|6|10036.20|0.01|0.04|R|F|1993-09-30|1993-10-21|1993-10-27|TAKE BACK RETURN|FOB|iously sly | +48206|981176|31177|3|42|52799.46|0.07|0.04|A|F|1993-12-02|1993-10-03|1993-12-25|COLLECT COD|TRUCK|counts. quietly regular requests nag| +48206|614257|14258|4|25|29280.50|0.09|0.06|R|F|1993-12-26|1993-10-13|1994-01-21|COLLECT COD|FOB| the furiously careful deposit| +48207|972366|34886|1|23|33081.36|0.05|0.01|N|O|1998-02-27|1998-04-03|1998-03-16|NONE|REG AIR|r packages use fluffily ar| +48207|546543|34074|2|18|28611.36|0.03|0.03|N|O|1998-04-17|1998-02-19|1998-04-29|TAKE BACK RETURN|MAIL| special, even| +48207|739359|1874|3|23|32161.36|0.04|0.04|N|O|1998-02-21|1998-03-10|1998-03-15|DELIVER IN PERSON|REG AIR|s. asymptotes caj| +48207|391986|41987|4|2|4155.94|0.04|0.08|N|O|1998-04-25|1998-02-24|1998-04-30|DELIVER IN PERSON|FOB|courts alongside of the ironic, ev| +48207|102544|40051|5|32|49489.28|0.10|0.06|N|O|1998-03-14|1998-02-17|1998-03-20|NONE|RAIL|ld theodolites dazzle fluffily d| +48207|453619|41147|6|21|33024.39|0.00|0.03|N|O|1998-04-29|1998-02-15|1998-05-01|DELIVER IN PERSON|TRUCK|ajole ironic packages. | +48207|964708|27228|7|35|62043.10|0.03|0.04|N|O|1998-01-20|1998-04-13|1998-02-05|DELIVER IN PERSON|FOB|lyly bold dinos cajole never e| +48232|834583|34584|1|5|7587.70|0.02|0.08|R|F|1995-02-11|1995-03-18|1995-03-04|DELIVER IN PERSON|MAIL|lyly regular a| +48232|825512|13061|2|7|10062.29|0.10|0.03|A|F|1994-12-29|1995-01-31|1995-01-17|TAKE BACK RETURN|SHIP|kages. quickly express account| +48232|377513|40021|3|29|46124.50|0.05|0.06|R|F|1995-01-09|1995-03-18|1995-01-13|COLLECT COD|FOB|etect carefully regular notorn| +48232|845190|32739|4|2|2270.30|0.10|0.06|R|F|1995-01-23|1995-02-16|1995-01-25|DELIVER IN PERSON|SHIP|egular foxes. quickly express | +48232|97009|22012|5|40|40240.00|0.00|0.07|R|F|1995-02-02|1995-02-15|1995-03-02|COLLECT COD|REG AIR|ly final accounts cajole furiousl| +48233|818103|43136|1|41|41863.46|0.04|0.06|N|O|1995-08-23|1995-07-22|1995-08-28|TAKE BACK RETURN|MAIL|final, ironic theodolites. quickly re| +48233|841390|3907|2|50|66567.50|0.07|0.01|N|F|1995-06-05|1995-07-23|1995-06-21|COLLECT COD|AIR|. furiousl| +48233|233585|8594|3|37|56187.09|0.03|0.02|N|O|1995-06-26|1995-06-18|1995-07-08|NONE|REG AIR|thely quickly bold reques| +48233|858246|45798|4|42|50576.40|0.07|0.07|R|F|1995-05-21|1995-08-10|1995-06-11|DELIVER IN PERSON|MAIL|equests nag. unusual packages am| +48233|525738|13269|5|44|77603.24|0.01|0.06|N|O|1995-07-07|1995-07-14|1995-07-15|TAKE BACK RETURN|RAIL|tructions against the final| +48234|266454|28960|1|46|65340.24|0.02|0.05|R|F|1992-09-02|1992-10-15|1992-09-21|DELIVER IN PERSON|MAIL|nusual ideas. instructions wake| +48234|284508|22024|2|3|4477.47|0.04|0.03|R|F|1992-09-25|1992-10-20|1992-09-30|DELIVER IN PERSON|MAIL|nal foxes sleep regular, pending courts. bl| +48234|712421|49964|3|2|2866.78|0.03|0.00|R|F|1992-12-19|1992-10-30|1992-12-24|NONE|FOB|aggle carefully. slyl| +48234|655691|43231|4|30|49399.80|0.02|0.04|R|F|1992-09-11|1992-10-16|1992-09-17|COLLECT COD|REG AIR| packages sleep according to the bold, qu| +48234|194505|32015|5|2|3199.00|0.06|0.07|R|F|1992-11-05|1992-11-16|1992-11-18|DELIVER IN PERSON|TRUCK| requests | +48234|42070|29571|6|42|42506.94|0.04|0.05|A|F|1992-10-05|1992-11-07|1992-10-14|COLLECT COD|MAIL| special packages sleep alon| +48234|67109|4613|7|20|21522.00|0.04|0.02|A|F|1992-12-16|1992-11-14|1992-12-23|DELIVER IN PERSON|AIR|final accounts. unusual, express platelet| +48235|897253|22288|1|44|55009.24|0.04|0.05|N|O|1998-10-02|1998-08-26|1998-10-20|NONE|TRUCK|y final asymp| +48235|127480|2485|2|44|66329.12|0.00|0.05|N|O|1998-11-08|1998-09-22|1998-11-12|DELIVER IN PERSON|AIR|gle. even platelets above the ir| +48236|744667|7182|1|46|78734.98|0.09|0.07|R|F|1993-04-18|1993-06-12|1993-05-05|NONE|FOB|ake slyly | +48236|602922|2923|2|28|51096.92|0.00|0.08|R|F|1993-04-27|1993-04-27|1993-05-26|DELIVER IN PERSON|MAIL|ar accounts about t| +48237|855212|5213|1|19|22176.23|0.00|0.01|A|F|1993-11-07|1993-10-12|1993-11-19|TAKE BACK RETURN|SHIP|ully furiously regular accounts. furiou| +48237|540699|15720|2|46|80024.82|0.03|0.04|R|F|1993-07-28|1993-10-02|1993-08-15|DELIVER IN PERSON|REG AIR|r packages use acco| +48237|513189|720|3|31|37266.96|0.00|0.06|A|F|1993-08-01|1993-09-26|1993-08-07|DELIVER IN PERSON|RAIL|lar excuses. sly requests haggle bl| +48237|152009|27016|4|20|21220.00|0.08|0.03|R|F|1993-09-13|1993-09-16|1993-09-19|NONE|AIR|egrate carefully according to | +48237|809036|46585|5|30|28349.70|0.10|0.00|A|F|1993-08-06|1993-09-20|1993-09-04|COLLECT COD|REG AIR|ts detect furiously careful, final| +48237|461041|48569|6|25|25050.50|0.07|0.02|A|F|1993-11-18|1993-08-25|1993-11-24|DELIVER IN PERSON|REG AIR|usual depe| +48238|562470|37493|1|9|13792.05|0.09|0.05|N|O|1997-05-05|1997-07-04|1997-06-01|COLLECT COD|RAIL|posits. final, expr| +48238|419172|19173|2|10|10911.50|0.02|0.05|N|O|1997-07-09|1997-07-25|1997-07-27|COLLECT COD|AIR|riously final requests nag blit| +48238|20320|45321|3|38|47132.16|0.06|0.07|N|O|1997-06-14|1997-07-27|1997-07-01|DELIVER IN PERSON|FOB|ular packages-- requests eat fur| +48238|502645|40176|4|17|28009.54|0.10|0.00|N|O|1997-07-24|1997-07-28|1997-07-27|COLLECT COD|MAIL|out the carefully sly pinto | +48238|943404|30959|5|28|40526.08|0.08|0.02|N|O|1997-06-04|1997-06-29|1997-06-14|TAKE BACK RETURN|RAIL| final sauternes. even requests sleep a| +48238|783316|45832|6|33|46176.24|0.00|0.08|N|O|1997-05-17|1997-06-03|1997-06-02|DELIVER IN PERSON|TRUCK|accounts boost carefully. closely express | +48239|808576|21093|1|24|35628.72|0.01|0.00|A|F|1992-07-12|1992-08-13|1992-07-31|NONE|TRUCK|ilent requests-- deposits w| +48239|725528|25529|2|9|13981.41|0.10|0.03|A|F|1992-09-08|1992-07-13|1992-09-29|TAKE BACK RETURN|RAIL|carefully express packages affix fluff| +48239|947943|47944|3|41|81626.90|0.01|0.04|A|F|1992-07-07|1992-08-13|1992-07-30|DELIVER IN PERSON|AIR|ending, unusual deposits sublate| +48239|62460|37463|4|30|42673.80|0.07|0.03|R|F|1992-07-27|1992-07-26|1992-08-23|DELIVER IN PERSON|AIR|lithely quickly regular platelets. asympto| +48239|756630|19146|5|8|13492.80|0.06|0.04|R|F|1992-09-27|1992-08-08|1992-10-11|COLLECT COD|RAIL|ly ironic i| +48264|468139|5667|1|17|18820.87|0.04|0.08|N|O|1997-12-07|1997-10-26|1997-12-20|TAKE BACK RETURN|RAIL| slyly pending deposit| +48264|6945|6946|2|28|51854.32|0.02|0.07|N|O|1997-12-12|1997-09-16|1998-01-04|COLLECT COD|FOB|ular ideas. packages impress furiousl| +48265|993734|31292|1|44|80418.36|0.03|0.03|A|F|1993-10-26|1993-10-12|1993-11-09|TAKE BACK RETURN|FOB|bove the bravely regular instruct| +48265|678843|16383|2|34|61941.54|0.03|0.03|R|F|1993-11-11|1993-11-30|1993-11-15|DELIVER IN PERSON|TRUCK|poach carefully furiously regula| +48265|309720|22227|3|22|38053.62|0.08|0.04|A|F|1993-12-11|1993-11-23|1993-12-25|DELIVER IN PERSON|TRUCK| among the special, silent pac| +48265|457262|32281|4|12|14630.88|0.09|0.02|A|F|1993-12-31|1993-12-09|1994-01-13|NONE|FOB| platelets haggle carefully. blithely eve| +48266|343876|43877|1|15|28797.90|0.04|0.05|N|O|1997-08-16|1997-10-16|1997-09-07|COLLECT COD|REG AIR|haggle quiet deposits. carefully spe| +48266|512595|37616|2|22|35366.54|0.08|0.05|N|O|1997-10-27|1997-09-09|1997-11-22|TAKE BACK RETURN|FOB|s. blithely even accou| +48266|180041|42545|3|42|47083.68|0.06|0.04|N|O|1997-09-13|1997-10-21|1997-10-09|NONE|REG AIR|ng the even account| +48267|571912|21913|1|9|17855.01|0.06|0.07|A|F|1993-02-22|1993-02-24|1993-03-23|COLLECT COD|AIR|jole quickl| +48268|229779|42284|1|7|11961.32|0.07|0.01|A|F|1992-12-13|1992-12-10|1992-12-20|COLLECT COD|SHIP|blithely bold dependenc| +48268|893314|30866|2|34|44447.18|0.07|0.03|R|F|1992-10-20|1992-12-03|1992-11-19|NONE|SHIP|ng the furio| +48268|920168|20169|3|49|58217.88|0.06|0.06|R|F|1992-10-12|1992-11-30|1992-11-11|COLLECT COD|MAIL| special instructions sno| +48268|255292|30303|4|6|7483.68|0.09|0.08|A|F|1992-11-03|1992-10-31|1992-11-18|NONE|AIR|ic instructions use careful| +48268|690045|15072|5|12|12420.12|0.06|0.05|A|F|1992-12-22|1992-11-11|1992-12-31|DELIVER IN PERSON|MAIL|packages-- furiously even ideas will wake | +48268|569550|19551|6|35|56683.55|0.06|0.05|A|F|1992-09-23|1992-10-21|1992-10-10|TAKE BACK RETURN|MAIL|y ironic accounts sle| +48269|970011|32531|1|28|30267.16|0.01|0.04|N|O|1998-07-13|1998-07-26|1998-08-08|DELIVER IN PERSON|SHIP|he regular depende| +48269|966997|42036|2|20|41279.00|0.01|0.00|N|O|1998-10-23|1998-07-29|1998-11-03|COLLECT COD|SHIP|taphs among the| +48269|311010|36023|3|20|20420.00|0.10|0.07|N|O|1998-10-23|1998-09-21|1998-10-25|DELIVER IN PERSON|SHIP|ly. ruthless| +48269|134160|46663|4|36|42989.76|0.00|0.03|N|O|1998-08-17|1998-09-07|1998-08-31|NONE|AIR|hely after the furio| +48269|820781|8330|5|24|40841.76|0.09|0.04|N|O|1998-07-16|1998-09-15|1998-08-08|TAKE BACK RETURN|TRUCK|es haggle slyly about the unusual depen| +48269|849509|37058|6|21|30627.66|0.08|0.08|N|O|1998-07-27|1998-09-20|1998-08-20|TAKE BACK RETURN|FOB|rnes. final, bold acc| +48270|613284|821|1|25|29931.25|0.06|0.03|N|O|1995-11-24|1996-01-10|1995-12-14|DELIVER IN PERSON|FOB|ts. blithely pending excuses ab| +48270|463907|1435|2|29|54255.52|0.08|0.04|N|O|1996-01-30|1995-12-15|1996-02-02|TAKE BACK RETURN|RAIL|y, final theodolites| +48270|876730|1765|3|13|22186.97|0.10|0.05|N|O|1995-12-09|1996-01-04|1996-01-02|TAKE BACK RETURN|RAIL|iously pending grouche| +48270|193066|30576|4|8|9272.48|0.08|0.04|N|O|1995-11-29|1995-12-01|1995-12-03|COLLECT COD|RAIL|ages detect careful| +48271|602455|2456|1|22|29863.24|0.05|0.01|R|F|1992-06-16|1992-04-27|1992-07-04|DELIVER IN PERSON|FOB| instructions. furiously clos| +48271|446796|9305|2|11|19170.47|0.00|0.02|R|F|1992-05-26|1992-05-11|1992-06-22|COLLECT COD|RAIL|heodolites wake slyly furiously expre| +48271|297050|9556|3|5|5235.20|0.04|0.07|R|F|1992-06-15|1992-05-07|1992-07-13|DELIVER IN PERSON|TRUCK|es alongside | +48271|508493|46024|4|45|67566.15|0.07|0.04|A|F|1992-04-27|1992-04-11|1992-05-17|NONE|TRUCK|rts. blithely ironic dolphins along| +48271|227638|27639|5|37|57927.94|0.07|0.01|A|F|1992-06-12|1992-04-01|1992-07-06|TAKE BACK RETURN|MAIL|ely bold accounts may sleep quickly. unusu| +48271|902143|14662|6|30|34353.00|0.05|0.06|A|F|1992-02-26|1992-03-27|1992-03-07|COLLECT COD|TRUCK|lly after the e| +48296|526482|14013|1|27|40728.42|0.03|0.03|A|F|1994-04-10|1994-05-08|1994-05-07|COLLECT COD|FOB| foxes. carefully sil| +48296|576467|14001|2|5|7717.20|0.03|0.00|R|F|1994-05-05|1994-06-01|1994-06-04|COLLECT COD|SHIP|refully ironic instructions cajole fl| +48296|678259|3286|3|41|50726.02|0.00|0.08|R|F|1994-08-03|1994-05-13|1994-08-25|NONE|REG AIR|uickly against the carefully regular foxe| +48296|492808|17827|4|11|19808.58|0.09|0.07|R|F|1994-04-07|1994-05-18|1994-04-08|DELIVER IN PERSON|AIR|ests solve blithely. carefully silent | +48296|611158|36183|5|20|21382.40|0.05|0.05|R|F|1994-07-10|1994-06-10|1994-07-15|TAKE BACK RETURN|MAIL|osits sleep a| +48297|305440|17947|1|37|53480.91|0.08|0.08|A|F|1994-07-27|1994-09-21|1994-08-20|NONE|MAIL|s; blithely iron| +48297|516015|3546|2|26|26805.74|0.01|0.01|R|F|1994-10-31|1994-08-31|1994-11-12|DELIVER IN PERSON|RAIL|the furiously furious | +48297|662782|322|3|25|43618.75|0.10|0.00|A|F|1994-07-22|1994-09-20|1994-08-21|TAKE BACK RETURN|FOB|es. carefully final| +48298|493614|43615|1|30|48227.70|0.10|0.05|N|O|1998-08-20|1998-07-14|1998-09-19|COLLECT COD|MAIL|p deposits. quickly pending foxes in| +48298|161600|11601|2|7|11631.20|0.02|0.04|N|O|1998-05-29|1998-06-09|1998-06-10|DELIVER IN PERSON|TRUCK|into beans sleep final packag| +48298|10595|35596|3|24|36134.16|0.09|0.06|N|O|1998-07-30|1998-07-21|1998-08-13|COLLECT COD|SHIP|the always final accounts. express exc| +48298|63269|773|4|2|2464.52|0.03|0.06|N|O|1998-06-03|1998-06-09|1998-06-26|TAKE BACK RETURN|TRUCK|quests wake slyl| +48298|346800|46801|5|40|73871.60|0.10|0.06|N|O|1998-05-19|1998-06-10|1998-05-25|TAKE BACK RETURN|MAIL|unts sleep. fluffily bol| +48298|653828|28855|6|10|17817.90|0.00|0.02|N|O|1998-06-10|1998-06-07|1998-06-13|NONE|TRUCK|final, unusual theodolites use caref| +48298|875684|719|7|26|43150.64|0.06|0.02|N|O|1998-05-05|1998-06-17|1998-05-10|NONE|REG AIR|ackages are. blithely exp| +48299|617569|5106|1|32|47568.96|0.10|0.01|R|F|1994-02-12|1994-01-09|1994-02-15|TAKE BACK RETURN|FOB|lar packages. | +48299|471255|33765|2|12|14714.76|0.04|0.07|A|F|1993-12-04|1994-01-27|1993-12-28|COLLECT COD|MAIL|ld foxes haggle carefully aroun| +48299|371085|8607|3|38|43930.66|0.02|0.03|A|F|1994-02-26|1993-12-24|1994-03-07|COLLECT COD|MAIL|yly among the bli| +48300|627710|40223|1|8|13101.44|0.08|0.01|N|O|1995-07-28|1995-08-10|1995-08-12|DELIVER IN PERSON|FOB| final, ironic asympto| +48300|912868|25387|2|49|92160.18|0.00|0.02|N|O|1995-08-04|1995-08-10|1995-08-09|DELIVER IN PERSON|RAIL|kages across the | +48300|563665|38688|3|35|60502.40|0.05|0.05|N|O|1995-09-26|1995-08-12|1995-10-12|TAKE BACK RETURN|FOB|s. final, regular e| +48301|928606|3643|1|5|8172.80|0.03|0.06|N|O|1997-03-07|1997-04-16|1997-03-25|NONE|RAIL|y silent packages after | +48301|70089|20090|2|20|21181.60|0.02|0.02|N|O|1997-03-01|1997-03-18|1997-03-28|NONE|RAIL|fully unusual dolphins hang evenl| +48302|684438|9465|1|42|59740.80|0.07|0.02|N|O|1995-11-27|1996-02-04|1995-12-10|NONE|REG AIR|usly ironic theodolites integr| +48302|340768|3275|2|42|75967.50|0.07|0.03|N|O|1996-01-14|1995-12-23|1996-01-20|DELIVER IN PERSON|AIR|kages ought to wake fluffily. ev| +48303|875574|25575|1|35|54233.55|0.01|0.07|N|O|1997-01-23|1996-12-19|1997-02-13|TAKE BACK RETURN|AIR|y permanent platelets are furio| +48303|756239|43785|2|48|62169.60|0.07|0.06|N|O|1996-12-04|1996-11-02|1996-12-10|COLLECT COD|RAIL|onic, bold ideas against the bold, unu| +48303|102176|14679|3|4|4712.68|0.08|0.06|N|O|1997-01-07|1996-11-06|1997-01-24|TAKE BACK RETURN|MAIL|packages cajole fi| +48303|268518|31024|4|24|35676.00|0.09|0.00|N|O|1996-10-04|1996-11-27|1996-10-20|TAKE BACK RETURN|TRUCK|en packages boost above the carefully re| +48303|966116|16117|5|11|13002.77|0.06|0.08|N|O|1996-11-30|1996-11-06|1996-12-03|DELIVER IN PERSON|FOB|ecial deposits| +48303|504505|4506|6|38|57360.24|0.09|0.00|N|O|1997-01-08|1996-12-31|1997-01-21|COLLECT COD|FOB|ily ironic excuses affix carefully after | +48328|757458|19974|1|39|59101.38|0.02|0.08|A|F|1993-10-26|1993-11-17|1993-10-29|DELIVER IN PERSON|SHIP|quests wake | +48328|589827|2339|2|32|61337.60|0.01|0.08|A|F|1993-12-13|1993-12-20|1993-12-20|NONE|FOB|e quickly. packages thrash according to t| +48329|668904|43931|1|4|7491.48|0.06|0.05|N|O|1995-08-03|1995-07-07|1995-08-14|NONE|RAIL|its. regular, final accounts haggle| +48329|254866|29877|2|20|36417.00|0.04|0.01|N|O|1995-08-15|1995-06-10|1995-09-08|DELIVER IN PERSON|MAIL| foxes. special, s| +48330|157786|20290|1|27|49782.06|0.08|0.01|A|F|1993-12-02|1993-10-19|1993-12-20|NONE|SHIP| across the furiou| +48330|903803|28840|2|18|32521.68|0.03|0.07|A|F|1993-12-31|1993-10-28|1994-01-19|NONE|TRUCK|gifts. slyly ironic accounts affix caref| +48330|203751|28760|3|49|81082.26|0.00|0.06|R|F|1993-11-19|1993-11-17|1993-11-27|COLLECT COD|MAIL| deposits use b| +48330|435219|22744|4|14|16158.66|0.07|0.05|R|F|1993-12-16|1993-11-22|1993-12-21|TAKE BACK RETURN|FOB|ular deposits nag carefully regul| +48330|716026|16027|5|47|48973.53|0.00|0.00|A|F|1993-12-19|1993-11-10|1993-12-26|TAKE BACK RETURN|FOB|y regular packages nag slyly| +48331|998131|23170|1|49|60225.41|0.08|0.04|A|F|1992-04-01|1992-05-31|1992-04-18|COLLECT COD|AIR|ily unusual frets cajole daringl| +48331|580532|30533|2|29|46762.79|0.03|0.02|R|F|1992-04-26|1992-06-07|1992-05-22|COLLECT COD|REG AIR|s cajole carefully pint| +48331|999544|12064|3|11|18078.50|0.00|0.03|R|F|1992-04-10|1992-06-10|1992-04-13|COLLECT COD|FOB|g pinto beans are about the carefull| +48331|319703|7222|4|35|60294.15|0.02|0.05|A|F|1992-04-09|1992-05-12|1992-04-30|COLLECT COD|TRUCK|yly. special, special excuses are| +48331|233135|8144|5|36|38452.32|0.07|0.06|R|F|1992-04-18|1992-04-15|1992-05-01|TAKE BACK RETURN|AIR|leep furiously. pending accounts snooze fur| +48331|295539|20550|6|10|15345.20|0.07|0.03|R|F|1992-06-06|1992-05-31|1992-06-28|TAKE BACK RETURN|FOB|ar accounts | +48332|330307|42814|1|49|65527.21|0.05|0.05|N|O|1996-12-04|1996-12-27|1997-01-02|NONE|SHIP|. asymptotes sleep acco| +48333|15101|40102|1|10|10161.00|0.05|0.06|N|O|1997-03-05|1997-05-23|1997-04-03|NONE|MAIL|ideas lose furi| +48333|791108|41109|2|15|17986.05|0.00|0.08|N|O|1997-03-19|1997-03-31|1997-03-20|DELIVER IN PERSON|RAIL|ests. quickly bold accounts boost sile| +48333|143344|5847|3|14|19422.76|0.09|0.07|N|O|1997-06-19|1997-05-13|1997-06-20|NONE|AIR|he slyly ir| +48333|172912|35416|4|40|79396.40|0.06|0.08|N|O|1997-03-20|1997-04-11|1997-04-06|NONE|MAIL|al instruct| +48334|418951|31460|1|47|87886.71|0.06|0.06|A|F|1994-02-06|1994-03-17|1994-03-04|NONE|AIR|ously final r| +48334|306003|43522|2|31|31278.69|0.09|0.06|A|F|1994-03-04|1994-03-15|1994-04-02|COLLECT COD|RAIL|the deposits. q| +48334|983770|21328|3|36|66734.28|0.01|0.04|R|F|1994-01-06|1994-02-14|1994-01-08|NONE|FOB|as cajole furiously | +48334|213544|26049|4|50|72876.50|0.02|0.04|A|F|1994-03-04|1994-03-13|1994-04-02|NONE|RAIL|ng blithely blithely silent asymptotes| +48334|17206|29707|5|45|50544.00|0.08|0.00|R|F|1994-01-19|1994-02-07|1994-02-10|DELIVER IN PERSON|RAIL|quests. fluffily bol| +48334|172010|34514|6|16|17312.16|0.09|0.08|R|F|1994-02-05|1994-02-15|1994-02-27|NONE|SHIP| packages haggle deposits. busily | +48335|821119|46152|1|29|30162.03|0.07|0.03|N|O|1998-05-07|1998-06-03|1998-06-06|NONE|SHIP| pending asymptotes about the furious| +48335|541964|16985|2|23|46136.62|0.09|0.07|N|O|1998-04-02|1998-04-29|1998-04-22|TAKE BACK RETURN|TRUCK| deposits after the foxes nag bli| +48335|781214|31215|3|36|46626.48|0.06|0.06|N|O|1998-05-31|1998-05-01|1998-06-15|DELIVER IN PERSON|FOB|ess ideas. regular ac| +48360|429010|41519|1|41|38498.59|0.05|0.05|N|O|1995-12-30|1996-01-05|1996-01-19|COLLECT COD|MAIL| theodolites for the fluffily iro| +48360|363977|13978|2|46|93884.16|0.03|0.00|N|O|1996-02-03|1995-12-12|1996-02-05|DELIVER IN PERSON|REG AIR|ts. ironic, regular instructio| +48361|10225|35226|1|48|54490.56|0.06|0.04|N|O|1996-08-08|1996-09-22|1996-08-31|NONE|REG AIR|encies eat. final packages affix quic| +48362|112278|12279|1|49|63223.23|0.08|0.06|N|O|1998-01-08|1998-01-16|1998-02-05|COLLECT COD|MAIL|posits! special, | +48362|45273|32774|2|6|7309.62|0.02|0.03|N|O|1998-01-22|1998-01-12|1998-01-26|DELIVER IN PERSON|MAIL|e quietly slow accounts nag according to | +48362|892056|4574|3|24|25152.24|0.00|0.05|N|O|1998-02-28|1998-01-26|1998-03-25|TAKE BACK RETURN|AIR|into beans. | +48362|776824|14370|4|42|79833.18|0.10|0.04|N|O|1998-02-02|1998-02-03|1998-02-14|NONE|RAIL|ests wake near the slyly fin| +48362|80659|43161|5|47|77063.55|0.02|0.03|N|O|1997-12-07|1997-12-23|1997-12-17|COLLECT COD|AIR|lyly unusual accounts nag outside the | +48362|620658|8195|6|48|75773.76|0.00|0.05|N|O|1998-02-01|1997-12-31|1998-02-15|NONE|TRUCK|ing accounts. regular foxes c| +48363|20965|45966|1|19|35833.24|0.04|0.01|R|F|1993-03-22|1993-04-02|1993-04-12|TAKE BACK RETURN|MAIL|arefully unusual deposits. sometimes fi| +48364|352980|27995|1|25|50824.25|0.08|0.02|N|O|1997-03-23|1997-04-06|1997-04-16|TAKE BACK RETURN|SHIP|nts are across the slyly ironic p| +48364|520564|33075|2|12|19014.48|0.04|0.06|N|O|1997-04-09|1997-03-27|1997-04-26|COLLECT COD|TRUCK| even instructions. blithely ironic| +48365|543870|6381|1|14|26793.90|0.09|0.02|N|F|1995-06-15|1995-06-05|1995-06-22|COLLECT COD|TRUCK|rave excuses at the bl| +48365|822002|22003|2|49|45274.04|0.04|0.07|A|F|1995-04-28|1995-07-11|1995-05-09|DELIVER IN PERSON|TRUCK|the deposits was carefully a| +48366|811662|49211|1|42|66092.04|0.06|0.03|A|F|1992-08-14|1992-05-31|1992-08-15|DELIVER IN PERSON|REG AIR|dinos x-ray requests; ironic,| +48366|591926|4438|2|35|70626.50|0.09|0.05|A|F|1992-07-11|1992-06-24|1992-07-19|TAKE BACK RETURN|FOB|yly even asymptotes. bold| +48366|496031|46032|3|45|46215.45|0.00|0.03|R|F|1992-07-14|1992-07-12|1992-07-16|COLLECT COD|AIR|busily express re| +48366|783760|8791|4|31|57155.63|0.08|0.08|R|F|1992-05-31|1992-07-10|1992-06-11|NONE|MAIL|ze carefully unusual, f| +48367|443771|31296|1|38|65160.50|0.04|0.08|N|O|1997-01-01|1997-01-29|1997-01-10|NONE|RAIL| haggle carefully after the d| +48367|453504|41032|2|25|36437.00|0.06|0.04|N|O|1997-02-01|1996-12-29|1997-02-03|NONE|TRUCK|ong the final theodoli| +48367|28550|16051|3|27|39920.85|0.08|0.06|N|O|1997-01-28|1997-02-03|1997-01-29|COLLECT COD|AIR|fix furiously | +48392|2862|27863|1|23|40591.78|0.10|0.08|N|O|1995-12-13|1996-01-03|1995-12-27|NONE|AIR|special decoys maintain b| +48392|98142|48143|2|21|23942.94|0.09|0.07|N|O|1996-02-11|1995-12-25|1996-03-05|TAKE BACK RETURN|SHIP|ully even pinto beans are| +48392|470778|45797|3|22|38472.50|0.06|0.01|N|O|1995-11-29|1996-01-05|1995-12-26|DELIVER IN PERSON|TRUCK|ctions. fluf| +48392|359559|9560|4|19|30752.26|0.03|0.03|N|O|1996-02-20|1996-01-06|1996-03-11|COLLECT COD|TRUCK|unusual accounts. blithely close| +48393|839728|27277|1|2|3335.36|0.06|0.04|A|F|1995-02-18|1995-05-11|1995-03-05|NONE|AIR|nic packages against the slyly express| +48393|304952|4953|2|48|93933.12|0.09|0.03|R|F|1995-05-06|1995-04-25|1995-05-23|NONE|SHIP|thely regular excuses. blithely express acc| +48393|315123|40136|3|2|2276.22|0.09|0.08|R|F|1995-04-23|1995-04-16|1995-05-09|COLLECT COD|AIR|ckly regular r| +48393|265325|40336|4|24|30967.44|0.02|0.07|R|F|1995-04-06|1995-05-08|1995-04-25|DELIVER IN PERSON|SHIP|e the ironic accounts use aga| +48393|309530|34543|5|6|9237.12|0.01|0.00|A|F|1995-04-26|1995-04-24|1995-05-07|DELIVER IN PERSON|FOB|the pending, regular ins| +48393|265833|3349|6|50|89941.00|0.05|0.04|R|F|1995-03-17|1995-04-01|1995-03-25|NONE|RAIL|ironic packages sleep slyly about t| +48393|841267|28816|7|16|19331.52|0.01|0.00|A|F|1995-04-12|1995-04-05|1995-05-06|NONE|FOB|ndencies sleep fu| +48394|160208|47718|1|35|44387.00|0.07|0.01|A|F|1993-01-16|1992-10-27|1993-02-06|DELIVER IN PERSON|FOB|ptotes sleep blithely | +48394|604335|29360|2|48|59486.40|0.07|0.00|A|F|1993-01-08|1992-10-30|1993-02-04|COLLECT COD|AIR| special plat| +48394|52571|27574|3|17|25900.69|0.06|0.08|R|F|1992-11-18|1992-11-30|1992-12-13|TAKE BACK RETURN|RAIL|lly alongside of the quickly special ide| +48394|554554|42088|4|3|4825.59|0.10|0.03|R|F|1992-11-10|1992-11-30|1992-12-01|NONE|MAIL|after the fluffily pe| +48394|373485|23486|5|18|28052.46|0.07|0.01|R|F|1992-10-30|1992-11-26|1992-11-20|COLLECT COD|FOB| deposits. unusual p| +48394|160894|23398|6|9|17594.01|0.06|0.02|R|F|1992-09-30|1992-11-28|1992-10-26|TAKE BACK RETURN|SHIP| final packages use furiously after| +48395|513899|38920|1|6|11477.22|0.02|0.08|N|O|1998-02-08|1998-01-29|1998-03-04|DELIVER IN PERSON|SHIP|al packages| +48395|93264|5766|2|17|21373.42|0.08|0.08|N|O|1998-01-28|1998-01-09|1998-02-02|COLLECT COD|MAIL|. quickly special requ| +48395|483127|20655|3|20|22202.00|0.07|0.02|N|O|1998-02-14|1998-01-12|1998-02-26|TAKE BACK RETURN|TRUCK|uriously. ironi| +48395|904698|17217|4|38|64700.70|0.07|0.01|N|O|1998-01-16|1998-01-15|1998-02-07|DELIVER IN PERSON|SHIP|regular accounts haggle qui| +48395|242988|30501|5|39|75307.83|0.03|0.03|N|O|1997-12-23|1998-02-07|1997-12-26|NONE|AIR|unts cajole furiously r| +48395|895831|8349|6|10|18267.90|0.08|0.06|N|O|1997-12-20|1997-12-26|1998-01-15|COLLECT COD|REG AIR|blithely pending accounts s| +48395|214814|27319|7|6|10372.80|0.04|0.01|N|O|1997-12-28|1997-12-24|1998-01-13|NONE|REG AIR|deposits are re| +48396|378490|40998|1|20|31369.60|0.02|0.08|N|O|1996-09-25|1996-09-18|1996-10-19|DELIVER IN PERSON|TRUCK|y express instructions x-ra| +48396|279430|16946|2|1|1409.42|0.07|0.01|N|O|1996-10-28|1996-10-21|1996-11-01|TAKE BACK RETURN|SHIP| deposits. ruthless, regular| +48396|379130|29131|3|42|50783.04|0.06|0.03|N|O|1996-09-09|1996-10-04|1996-09-23|COLLECT COD|RAIL|y express depo| +48396|32541|45042|4|42|61888.68|0.10|0.07|N|O|1996-09-15|1996-10-19|1996-10-05|NONE|SHIP|slyly pending deposits cajole about the| +48396|906990|44545|5|42|83871.90|0.09|0.05|N|O|1996-08-22|1996-10-02|1996-08-28|COLLECT COD|TRUCK|ests boost care| +48396|765419|40450|6|15|22265.70|0.06|0.06|N|O|1996-12-04|1996-09-08|1996-12-18|NONE|SHIP|y idle requests nag according t| +48396|383597|46105|7|45|75626.10|0.05|0.00|N|O|1996-11-10|1996-09-30|1996-12-03|NONE|SHIP|deposits. carefully silent packages | +48397|106166|18669|1|15|17582.40|0.09|0.05|N|O|1996-05-21|1996-05-29|1996-06-20|TAKE BACK RETURN|REG AIR|regular pinto bea| +48397|328285|28286|2|48|63036.96|0.08|0.07|N|O|1996-04-02|1996-04-07|1996-04-22|TAKE BACK RETURN|SHIP|fily pendin| +48397|480016|17544|3|47|46811.53|0.01|0.05|N|O|1996-06-14|1996-05-03|1996-07-11|DELIVER IN PERSON|TRUCK|ronic plate| +48398|131573|44076|1|25|40114.25|0.06|0.05|R|F|1993-05-22|1993-05-02|1993-06-17|COLLECT COD|MAIL|. instructions sleep ca| +48399|552665|40199|1|14|24046.96|0.00|0.08|N|O|1997-01-19|1997-02-25|1997-01-25|DELIVER IN PERSON|RAIL|lar ideas are after t| +48399|627963|2988|2|19|35927.67|0.09|0.00|N|O|1997-03-02|1997-02-15|1997-03-25|COLLECT COD|REG AIR|ove the pending theodolites. quickly e| +48399|164645|27149|3|16|27354.24|0.05|0.05|N|O|1997-02-10|1997-03-12|1997-02-25|NONE|FOB|urts promise. dogge| +48399|177065|14575|4|41|46824.46|0.03|0.02|N|O|1997-01-30|1997-03-20|1997-02-03|NONE|RAIL|ly even foxes cajole carefully quiet p| +48399|923888|48925|5|9|17206.56|0.10|0.01|N|O|1997-05-11|1997-02-24|1997-05-27|COLLECT COD|REG AIR| final platelets haggle against t| +48399|772925|22926|6|38|75919.82|0.01|0.05|N|O|1997-01-31|1997-03-22|1997-02-03|DELIVER IN PERSON|AIR| grouches dete| +48424|309248|46767|1|7|8800.61|0.06|0.00|A|F|1993-12-24|1993-12-28|1994-01-13|TAKE BACK RETURN|AIR|deposits hag| +48424|527944|27945|2|24|47326.08|0.01|0.04|A|F|1994-01-21|1994-02-07|1994-02-14|DELIVER IN PERSON|TRUCK| busily above the tithes. express pack| +48424|152769|2770|3|27|49187.52|0.00|0.07|A|F|1994-02-19|1994-01-02|1994-03-05|COLLECT COD|SHIP|ithely across the furiously even deposi| +48424|588284|13307|4|2|2744.52|0.03|0.08|R|F|1994-01-12|1994-01-28|1994-02-07|COLLECT COD|AIR|uriously final ideas | +48424|280722|43228|5|38|64702.98|0.09|0.06|R|F|1993-12-28|1994-01-17|1994-01-25|COLLECT COD|FOB|usual ideas after the carefull| +48425|738945|1460|1|1|1983.91|0.04|0.06|N|O|1997-11-19|1997-10-24|1997-12-02|TAKE BACK RETURN|SHIP|ts according to the carefully bold plate| +48425|432919|45428|2|13|24074.57|0.10|0.04|N|O|1997-12-25|1997-12-21|1998-01-19|NONE|TRUCK|ronic braids| +48426|151578|14082|1|35|57034.95|0.01|0.08|N|O|1996-08-22|1996-08-21|1996-09-17|NONE|RAIL| special dependencies| +48426|558515|46049|2|45|70807.05|0.04|0.01|N|O|1996-10-22|1996-09-22|1996-10-29|TAKE BACK RETURN|SHIP|uriously pending ideas cajo| +48426|960274|10275|3|2|2668.46|0.01|0.04|N|O|1996-09-16|1996-08-11|1996-10-06|NONE|TRUCK|! fluffily regular foxes cajole | +48426|320105|20106|4|28|31502.52|0.04|0.05|N|O|1996-07-30|1996-09-26|1996-08-27|COLLECT COD|RAIL|y along the depos| +48426|989953|14992|5|49|100102.59|0.06|0.01|N|O|1996-10-05|1996-08-25|1996-11-02|TAKE BACK RETURN|MAIL|l accounts. attainments after the| +48426|129554|42057|6|40|63342.00|0.07|0.04|N|O|1996-09-16|1996-09-13|1996-10-03|COLLECT COD|AIR|e blithely final theodolite| +48427|335202|10215|1|4|4948.76|0.10|0.02|A|F|1995-02-21|1995-02-27|1995-03-12|TAKE BACK RETURN|RAIL|gular requests after the c| +48428|698681|11195|1|39|65506.35|0.04|0.04|N|O|1998-07-23|1998-07-02|1998-08-09|TAKE BACK RETURN|MAIL|quietly furiously regular theodolites| +48428|721769|34284|2|46|82373.58|0.01|0.07|N|O|1998-06-28|1998-05-28|1998-07-18|TAKE BACK RETURN|TRUCK|dolphins wake ca| +48428|765257|15258|3|35|46277.70|0.03|0.05|N|O|1998-06-03|1998-05-25|1998-06-07|COLLECT COD|AIR|y pending deposits are f| +48428|658815|33842|4|25|44344.50|0.03|0.03|N|O|1998-06-03|1998-06-23|1998-06-09|DELIVER IN PERSON|REG AIR|special requests along the ironic, fin| +48429|571035|8569|1|4|4424.04|0.03|0.00|N|O|1998-04-12|1998-06-05|1998-05-02|NONE|TRUCK|mong the carefully | +48429|373926|36434|2|15|29998.65|0.02|0.01|N|O|1998-07-20|1998-07-09|1998-08-15|DELIVER IN PERSON|REG AIR|er the pending grouches maintain someti| +48429|561109|11110|3|35|40952.80|0.02|0.02|N|O|1998-04-24|1998-05-27|1998-05-08|TAKE BACK RETURN|FOB|d carefully across the final acco| +48429|554732|17244|4|23|41094.33|0.06|0.04|N|O|1998-06-13|1998-06-21|1998-06-24|TAKE BACK RETURN|MAIL| carefully regular packages nag slyly| +48429|370695|45710|5|15|26485.20|0.01|0.08|N|O|1998-05-25|1998-07-09|1998-05-26|DELIVER IN PERSON|MAIL|frays. regularly even account| +48429|266854|16855|6|23|41879.32|0.10|0.01|N|O|1998-05-11|1998-07-10|1998-05-12|TAKE BACK RETURN|RAIL|uriously bold dependencies. regula| +48430|544371|19392|1|15|21230.25|0.04|0.03|A|F|1992-12-20|1992-12-25|1992-12-28|NONE|TRUCK|l, ironic foxes above the blithel| +48430|232805|45310|2|31|53871.49|0.00|0.07|A|F|1992-11-06|1993-02-02|1992-11-27|TAKE BACK RETURN|AIR|uriously final ideas haggle e| +48430|750001|2|3|2|2101.94|0.09|0.01|A|F|1993-01-14|1993-02-03|1993-01-30|TAKE BACK RETURN|FOB|ages. furiously regular foxe| +48430|252057|2058|4|33|33298.32|0.07|0.07|R|F|1992-11-18|1992-12-21|1992-12-13|NONE|SHIP|y pending deposits. slyly silen| +48430|311554|49073|5|19|29745.26|0.06|0.08|A|F|1992-11-24|1993-02-03|1992-12-19|TAKE BACK RETURN|FOB|blithely along the | +48431|484592|22120|1|36|56756.52|0.00|0.06|A|F|1994-10-14|1994-09-17|1994-11-07|DELIVER IN PERSON|AIR|y quietly bold ideas.| +48431|531527|6548|2|45|70132.50|0.02|0.04|A|F|1994-11-20|1994-09-13|1994-11-23|COLLECT COD|MAIL|eposits. carefully bold packages | +48456|226652|14165|1|11|17365.04|0.00|0.00|N|O|1998-04-11|1998-02-20|1998-05-09|TAKE BACK RETURN|TRUCK|beyond the even, ironic accounts. | +48456|336145|48652|2|6|7086.78|0.05|0.00|N|O|1998-04-28|1998-04-07|1998-05-16|NONE|REG AIR|usly across th| +48456|583823|33824|3|16|30508.80|0.08|0.06|N|O|1998-04-20|1998-03-06|1998-05-12|DELIVER IN PERSON|MAIL| deposits integrate furio| +48456|297045|47046|4|15|15630.45|0.09|0.01|N|O|1998-04-13|1998-02-08|1998-04-30|DELIVER IN PERSON|MAIL|. stealthy acc| +48456|428726|41235|5|6|9928.20|0.00|0.07|N|O|1998-02-03|1998-04-01|1998-02-16|TAKE BACK RETURN|SHIP|ronic packages. furiously speci| +48457|742463|42464|1|42|63228.06|0.10|0.08|A|F|1992-06-27|1992-08-12|1992-07-06|COLLECT COD|MAIL|mptotes. pending, even instruction| +48457|562798|25310|2|32|59544.64|0.04|0.06|A|F|1992-06-22|1992-07-28|1992-06-23|NONE|TRUCK|after the slyly even| +48457|944440|44441|3|22|32656.80|0.01|0.06|A|F|1992-08-18|1992-06-29|1992-08-20|COLLECT COD|RAIL| the carefully regular deposits cajole be| +48457|199531|37041|4|31|50546.43|0.10|0.02|R|F|1992-08-07|1992-06-29|1992-08-21|DELIVER IN PERSON|SHIP|sly bold pi| +48457|503613|28634|5|17|27482.03|0.07|0.00|A|F|1992-07-05|1992-06-30|1992-07-21|NONE|TRUCK|st wake final, bold requests. pac| +48457|222189|9702|6|5|5555.85|0.00|0.08|R|F|1992-08-11|1992-08-06|1992-08-19|NONE|TRUCK|boost. carefully special theo| +48458|200537|538|1|3|4312.56|0.07|0.05|A|F|1993-12-17|1993-10-27|1993-12-29|DELIVER IN PERSON|TRUCK|st cajole r| +48458|413776|26285|2|46|77728.50|0.01|0.03|A|F|1993-11-27|1993-12-11|1993-12-05|NONE|REG AIR|lyly regul| +48458|317208|29715|3|20|24503.80|0.04|0.03|R|F|1993-12-15|1993-11-28|1994-01-07|NONE|SHIP| beans use against the e| +48459|959525|22045|1|39|61794.72|0.06|0.06|N|O|1997-02-03|1996-11-28|1997-02-18|COLLECT COD|FOB|xcuses cajole slyly. blithely final pinto b| +48459|721301|46330|2|14|18511.78|0.10|0.07|N|O|1997-01-30|1996-11-26|1997-02-01|DELIVER IN PERSON|TRUCK|s nag slyly furiously bo| +48459|905516|30553|3|7|10650.29|0.01|0.06|N|O|1996-11-08|1996-12-10|1996-11-16|COLLECT COD|MAIL|eodolites among the quickly ironic | +48460|742736|17765|1|22|39131.40|0.01|0.03|N|O|1997-06-30|1997-06-06|1997-07-05|TAKE BACK RETURN|TRUCK| after the slyly brave i| +48460|159468|34475|2|45|68735.70|0.07|0.00|N|O|1997-04-20|1997-05-20|1997-04-29|COLLECT COD|AIR|ng the ideas poach along the blithel| +48461|962023|24543|1|30|32549.40|0.04|0.08|R|F|1992-06-30|1992-06-01|1992-07-07|NONE|RAIL|nusual packages haggle furiously final fo| +48461|706799|6800|2|39|70424.64|0.03|0.08|R|F|1992-06-06|1992-05-14|1992-06-25|NONE|FOB|ress deposits. never special depo| +48461|154544|17048|3|10|15985.40|0.01|0.08|R|F|1992-08-05|1992-06-19|1992-09-01|NONE|REG AIR| after the carefully | +48461|417097|29606|4|23|23323.61|0.04|0.02|R|F|1992-07-27|1992-06-06|1992-08-07|DELIVER IN PERSON|REG AIR|unts? blithely silent pinto beans run bl| +48461|146503|9006|5|27|41836.50|0.02|0.07|R|F|1992-06-29|1992-06-29|1992-07-12|TAKE BACK RETURN|RAIL|silent foxes. carefully even accounts aff| +48462|231773|19286|1|19|32390.44|0.06|0.08|A|F|1993-02-13|1993-02-13|1993-02-21|COLLECT COD|FOB|eans after the quickly even dependencie| +48462|396874|21889|2|41|80805.26|0.06|0.07|A|F|1993-03-23|1993-02-25|1993-03-29|DELIVER IN PERSON|FOB|symptotes are | +48462|249767|12272|3|6|10300.50|0.05|0.05|A|F|1993-01-13|1993-03-16|1993-02-05|DELIVER IN PERSON|FOB|nusual, silent packages kindle b| +48462|832443|32444|4|32|44012.80|0.08|0.03|A|F|1993-02-22|1993-02-25|1993-02-24|COLLECT COD|RAIL|egular, pending depo| +48462|859190|9191|5|3|3447.45|0.02|0.01|A|F|1993-04-16|1993-03-24|1993-05-09|TAKE BACK RETURN|SHIP|ly. bold excuses cajole slyly. fluf| +48463|197601|10105|1|12|20383.20|0.06|0.00|N|O|1998-03-03|1998-03-14|1998-04-02|NONE|MAIL|y stealthy deposits are unusual pi| +48488|840069|15102|1|10|10090.20|0.01|0.08|A|F|1992-08-03|1992-10-20|1992-08-28|COLLECT COD|AIR|sly final deposits cajole according to the| +48488|25057|58|2|3|2946.15|0.08|0.02|R|F|1992-08-22|1992-10-25|1992-09-07|COLLECT COD|AIR| blithely fin| +48489|941128|41129|1|36|42086.88|0.06|0.02|R|F|1993-02-05|1993-02-24|1993-02-27|COLLECT COD|REG AIR|into beans detect. ir| +48489|533141|33142|2|22|25830.64|0.06|0.04|A|F|1993-02-15|1993-02-27|1993-03-14|DELIVER IN PERSON|TRUCK|ing foxes. f| +48489|492483|30011|3|2|2950.92|0.09|0.07|A|F|1993-04-02|1993-03-08|1993-04-21|NONE|FOB| quickly. ruthlessly regular| +48489|159567|47077|4|30|48796.80|0.05|0.08|A|F|1993-01-07|1993-03-22|1993-02-05|NONE|TRUCK|posits. fluffily ironic p| +48489|837873|390|5|13|23540.79|0.01|0.00|R|F|1993-01-08|1993-03-21|1993-02-07|TAKE BACK RETURN|SHIP|ously fluffily regular | +48489|121245|8752|6|30|37987.20|0.04|0.04|A|F|1993-01-18|1993-02-23|1993-01-22|NONE|AIR|uses print doggedly. even depos| +48490|439753|14770|1|17|28776.41|0.03|0.01|N|O|1995-07-16|1995-05-31|1995-07-23|COLLECT COD|RAIL|express deposits are express, bold pi| +48490|919239|44276|2|29|36487.51|0.04|0.02|N|O|1995-07-02|1995-05-12|1995-07-04|TAKE BACK RETURN|TRUCK|le blithely. sp| +48490|641631|29168|3|22|34597.20|0.00|0.04|R|F|1995-05-03|1995-05-30|1995-05-06|NONE|MAIL|e the unus| +48490|881934|31935|4|38|72803.82|0.01|0.03|N|O|1995-06-27|1995-06-30|1995-07-08|TAKE BACK RETURN|TRUCK|ve the carefully special pa| +48491|857558|7559|1|4|6062.04|0.00|0.02|R|F|1994-12-22|1994-10-18|1994-12-28|NONE|REG AIR| haggle carefully bli| +48491|972350|34870|2|10|14223.10|0.04|0.05|A|F|1994-09-12|1994-10-13|1994-10-03|NONE|SHIP|ts cajole fu| +48491|271955|9471|3|23|44319.62|0.04|0.05|R|F|1994-12-10|1994-11-18|1994-12-14|TAKE BACK RETURN|AIR| wake furiously| +48491|736062|36063|4|24|26352.72|0.08|0.08|A|F|1994-09-07|1994-11-06|1994-09-15|DELIVER IN PERSON|SHIP|sits. pending | +48491|979257|29258|5|19|25387.99|0.05|0.05|A|F|1994-10-10|1994-11-18|1994-11-03|TAKE BACK RETURN|RAIL|ar packages. final theodoli| +48491|362666|37681|6|21|36301.65|0.08|0.07|R|F|1994-12-22|1994-09-30|1994-12-30|COLLECT COD|REG AIR|hely final accounts. c| +48491|315094|2613|7|49|54344.92|0.03|0.02|R|F|1994-12-02|1994-11-18|1994-12-25|NONE|SHIP|ess packages cajole s| +48492|781655|19201|1|7|12156.34|0.10|0.07|N|O|1996-12-19|1996-11-19|1996-12-26|TAKE BACK RETURN|FOB|ts according to the slyly bold asympt| +48492|274223|36729|2|17|20352.57|0.08|0.02|N|O|1996-10-26|1996-10-31|1996-11-01|COLLECT COD|AIR|p quickly alongside of the | +48493|715051|27566|1|35|37310.70|0.10|0.03|R|F|1992-06-10|1992-07-05|1992-07-01|COLLECT COD|REG AIR|instructions are slyly even t| +48493|855605|18123|2|39|60861.84|0.09|0.07|A|F|1992-05-19|1992-06-24|1992-06-15|COLLECT COD|MAIL|endencies bo| +48494|975652|25653|1|1|1727.61|0.09|0.07|N|O|1998-08-02|1998-07-28|1998-08-27|TAKE BACK RETURN|MAIL|s. blithely r| +48494|771040|33556|2|11|12221.11|0.03|0.06|N|O|1998-09-08|1998-07-09|1998-09-18|TAKE BACK RETURN|AIR|slyly express i| +48495|478917|41427|1|10|18958.90|0.08|0.04|N|O|1996-12-06|1996-12-18|1996-12-22|DELIVER IN PERSON|RAIL| decoys after the dependencies sleep acc| +48495|150461|12965|2|42|63481.32|0.02|0.08|N|O|1996-10-23|1996-11-11|1996-10-30|NONE|SHIP|y atop the care| +48495|790045|15076|3|10|11350.10|0.09|0.00|N|O|1996-10-22|1996-11-07|1996-11-02|DELIVER IN PERSON|TRUCK|rough the furiously stealthy deposits. bl| +48495|269764|7280|4|31|53746.25|0.00|0.04|N|O|1996-11-26|1996-11-07|1996-12-04|COLLECT COD|TRUCK|ously whithout the bold | +48495|907711|32748|5|41|70465.47|0.05|0.08|N|O|1997-01-04|1996-12-20|1997-01-21|COLLECT COD|MAIL|le packages| +48520|855555|43107|1|32|48336.32|0.07|0.07|N|O|1998-03-25|1998-02-13|1998-03-30|DELIVER IN PERSON|SHIP|cuses. regular id| +48520|311746|36759|2|29|50974.17|0.01|0.01|N|O|1998-04-20|1998-02-02|1998-04-26|DELIVER IN PERSON|SHIP|ideas. carefully regular co| +48521|556797|19309|1|2|3707.54|0.01|0.02|N|O|1997-06-27|1997-08-30|1997-07-25|DELIVER IN PERSON|RAIL|nst the regular, regula| +48521|78420|28421|2|7|9788.94|0.03|0.06|N|O|1997-08-31|1997-07-05|1997-09-30|NONE|AIR|inal pains nag furio| +48521|537|538|3|24|34500.72|0.09|0.06|N|O|1997-07-17|1997-07-13|1997-07-25|TAKE BACK RETURN|MAIL|quickly; s| +48521|23718|36219|4|14|22983.94|0.07|0.06|N|O|1997-08-28|1997-07-27|1997-08-30|NONE|TRUCK|tegrate furiously.| +48522|764297|26813|1|48|65340.48|0.10|0.02|N|O|1995-07-16|1995-08-31|1995-08-06|DELIVER IN PERSON|RAIL|hely along the quickly| +48522|533286|33287|2|9|11873.34|0.04|0.08|N|O|1995-07-17|1995-07-15|1995-07-24|COLLECT COD|REG AIR|s: furiously | +48522|925005|12560|3|48|49438.08|0.05|0.06|N|O|1995-08-21|1995-08-16|1995-09-08|COLLECT COD|REG AIR|ly silent pearls cajole reg| +48522|551038|26061|4|42|45738.42|0.08|0.06|N|O|1995-07-18|1995-08-29|1995-07-27|NONE|MAIL|ly. slyly final foxes wake furiously ab| +48522|283670|21186|5|49|81029.34|0.10|0.02|N|F|1995-06-14|1995-08-19|1995-06-25|DELIVER IN PERSON|MAIL|furiously final foxes use furi| +48523|363415|25923|1|7|10348.80|0.09|0.01|A|F|1992-07-20|1992-05-24|1992-07-23|NONE|SHIP|s. slyly even instruction| +48524|27749|15250|1|46|77130.04|0.01|0.04|A|F|1995-01-07|1995-02-15|1995-01-14|DELIVER IN PERSON|SHIP|ly unusual foxes. slyly even dep| +48524|364595|14596|2|29|48127.82|0.03|0.06|R|F|1994-12-06|1995-02-23|1994-12-15|NONE|TRUCK|theodolites. final foxes sleep fluffi| +48524|736205|11234|3|24|29788.08|0.09|0.08|A|F|1995-02-03|1995-02-19|1995-02-12|NONE|SHIP|otornis wake slyly about the sly| +48524|382852|32853|4|9|17413.56|0.09|0.03|R|F|1995-02-08|1995-02-15|1995-02-28|COLLECT COD|AIR|ding packages. final ideas sleep a| +48524|590471|2983|5|35|54650.75|0.05|0.04|R|F|1994-12-29|1995-03-04|1994-12-31|NONE|MAIL|mong the furiously ironic asym| +48524|43620|43621|6|29|45344.98|0.08|0.04|A|F|1995-02-20|1995-03-03|1995-03-10|TAKE BACK RETURN|FOB|nts print alongside of the ironic court| +48525|84341|34342|1|24|31808.16|0.05|0.04|N|O|1996-02-23|1996-04-07|1996-03-16|NONE|SHIP|latelets detect slyly careful| +48525|507430|44961|2|13|18686.33|0.08|0.00|N|O|1996-05-04|1996-03-21|1996-05-18|TAKE BACK RETURN|MAIL|regular asymptotes are furiously al| +48525|370422|32930|3|7|10446.87|0.04|0.04|N|O|1996-04-03|1996-03-23|1996-04-17|TAKE BACK RETURN|FOB|ests after the quickly final | +48525|682457|7484|4|20|28788.40|0.06|0.02|N|O|1996-05-11|1996-04-11|1996-05-24|COLLECT COD|AIR| regular, final deposits after the sl| +48525|42299|4800|5|8|9930.32|0.00|0.01|N|O|1996-02-09|1996-03-20|1996-03-05|DELIVER IN PERSON|MAIL|nding accounts across the accounts| +48526|414712|2237|1|1|1626.69|0.10|0.06|A|F|1993-07-31|1993-07-02|1993-08-23|TAKE BACK RETURN|AIR|above the doggedly bold pinto beans. | +48527|468622|6150|1|25|39765.00|0.09|0.03|A|F|1992-11-02|1992-10-30|1992-12-02|COLLECT COD|FOB|riously final instructions. blithely furi| +48527|117670|5177|2|29|48942.43|0.09|0.06|R|F|1992-11-06|1992-10-26|1992-11-13|DELIVER IN PERSON|REG AIR| pinto beans dazzle carefully| +48527|671952|21953|3|12|23087.04|0.03|0.06|R|F|1992-10-21|1992-10-12|1992-11-11|DELIVER IN PERSON|SHIP|y blithely unusual accounts. depe| +48527|492830|5340|4|34|61975.54|0.04|0.02|A|F|1992-11-26|1992-10-18|1992-11-28|DELIVER IN PERSON|TRUCK|along the furiou| +48552|881989|44507|1|29|57157.26|0.10|0.06|A|F|1992-02-15|1992-05-13|1992-02-17|TAKE BACK RETURN|RAIL|. bold packages cajole carefully. soma| +48552|587470|12493|2|1|1557.45|0.08|0.06|A|F|1992-05-13|1992-03-27|1992-06-02|DELIVER IN PERSON|FOB| accounts nag ac| +48552|591870|29404|3|11|21580.35|0.03|0.00|A|F|1992-05-18|1992-04-08|1992-06-04|COLLECT COD|SHIP|efully alongside of the carefully| +48552|550191|192|4|46|57093.82|0.06|0.04|R|F|1992-03-09|1992-04-20|1992-03-28|NONE|MAIL|arefully final de| +48552|47449|47450|5|7|9775.08|0.04|0.01|A|F|1992-04-22|1992-04-14|1992-04-24|NONE|SHIP|ously ironic packages against the regula| +48552|470001|20002|6|20|19419.60|0.05|0.06|A|F|1992-02-24|1992-05-11|1992-03-24|TAKE BACK RETURN|FOB|. blithely regular accoun| +48553|562895|429|1|23|45031.01|0.05|0.04|N|O|1997-10-17|1997-09-17|1997-11-06|NONE|AIR|. furiously | +48554|64280|26782|1|50|62214.00|0.06|0.01|A|F|1993-03-01|1993-02-21|1993-03-08|NONE|TRUCK|ironic requests. blith| +48554|347889|35408|2|9|17431.83|0.01|0.08|A|F|1993-01-11|1993-03-09|1993-01-16|NONE|TRUCK|e according t| +48554|954869|42427|3|31|59638.42|0.07|0.06|A|F|1993-01-31|1993-02-21|1993-02-10|TAKE BACK RETURN|SHIP|s the dogged platelets. sl| +48554|471798|34308|4|35|61941.95|0.10|0.00|R|F|1993-04-11|1993-03-30|1993-04-13|TAKE BACK RETURN|SHIP|blate furiously slyly bold ide| +48554|502094|2095|5|43|47131.01|0.01|0.06|R|F|1993-02-09|1993-04-04|1993-03-11|DELIVER IN PERSON|REG AIR|tructions. even asy| +48554|684042|9069|6|43|44118.43|0.01|0.05|A|F|1993-04-19|1993-02-19|1993-05-04|DELIVER IN PERSON|MAIL|uickly carefully pending packages. ex| +48555|29735|4736|1|26|43282.98|0.06|0.06|A|F|1993-01-13|1993-03-04|1993-02-02|TAKE BACK RETURN|FOB| excuses according | +48555|754797|4798|2|32|59256.32|0.10|0.03|R|F|1993-03-07|1993-03-11|1993-03-10|DELIVER IN PERSON|SHIP|ag evenly blithely f| +48555|872481|47516|3|28|40696.32|0.01|0.01|A|F|1993-04-11|1993-02-21|1993-05-07|DELIVER IN PERSON|REG AIR| unusual deposits. fluf| +48555|772516|22517|4|24|38123.52|0.01|0.04|R|F|1993-04-03|1993-04-05|1993-04-07|COLLECT COD|RAIL|eposits nag| +48556|917709|17710|1|37|63886.42|0.02|0.03|N|O|1996-11-22|1996-10-15|1996-12-05|TAKE BACK RETURN|REG AIR|s wake fluffily| +48556|927265|2302|2|11|14214.42|0.10|0.06|N|O|1996-11-27|1996-10-09|1996-12-13|NONE|MAIL|. bold deposits wake furiously quic| +48556|535984|48495|3|2|4039.92|0.06|0.06|N|O|1996-09-26|1996-08-31|1996-10-19|DELIVER IN PERSON|REG AIR|old atop the furi| +48556|282298|32299|4|7|8961.96|0.03|0.04|N|O|1996-08-08|1996-10-11|1996-08-10|NONE|TRUCK| wake slyly along the regu| +48556|567643|30155|5|23|39344.26|0.02|0.08|N|O|1996-08-08|1996-10-04|1996-08-26|NONE|TRUCK|ts sleep blithely across t| +48556|370158|20159|6|14|17193.96|0.03|0.03|N|O|1996-08-24|1996-10-05|1996-08-27|NONE|FOB|longside of the regular, expres| +48557|899048|36600|1|26|27222.00|0.09|0.01|N|O|1997-11-06|1997-11-11|1997-12-05|DELIVER IN PERSON|REG AIR|theodolites impress even packages. qui| +48557|285024|47530|2|45|45405.45|0.04|0.06|N|O|1997-12-21|1997-10-16|1997-12-24|DELIVER IN PERSON|REG AIR|s theodolites. regular requests wake caref| +48557|389266|39267|3|31|42012.75|0.09|0.04|N|O|1997-11-16|1997-10-14|1997-12-05|COLLECT COD|FOB|unts sleep b| +48558|940441|2960|1|31|45923.40|0.05|0.06|N|O|1997-07-28|1997-09-18|1997-08-09|TAKE BACK RETURN|FOB|ully unusual requests sublate carefully acc| +48558|988049|25607|2|35|39795.00|0.04|0.03|N|O|1997-09-07|1997-09-03|1997-09-11|DELIVER IN PERSON|RAIL|t foxes after the carefully bold excuses| +48558|129691|4696|3|37|63665.53|0.01|0.05|N|O|1997-10-24|1997-09-22|1997-11-20|COLLECT COD|MAIL|ly after the slyly final accounts.| +48558|701715|14230|4|37|63517.16|0.02|0.07|N|O|1997-07-28|1997-08-17|1997-08-27|COLLECT COD|FOB|ajole quickly final, regular fo| +48558|719816|32331|5|14|25700.92|0.02|0.01|N|O|1997-09-24|1997-08-15|1997-10-12|TAKE BACK RETURN|TRUCK|carefully regular excuses| +48558|932675|45194|6|26|44398.38|0.00|0.07|N|O|1997-08-11|1997-07-31|1997-08-28|TAKE BACK RETURN|MAIL|inal pinto beans. quickly| +48559|433010|33011|1|35|33004.65|0.10|0.07|N|O|1998-08-16|1998-10-07|1998-08-30|COLLECT COD|SHIP|regular deposits snooze| +48559|595557|45558|2|26|42965.78|0.02|0.08|N|O|1998-08-06|1998-09-15|1998-08-08|NONE|REG AIR|about the bold sheaves sleep across th| +48584|704997|42540|1|10|20019.60|0.01|0.06|N|O|1997-10-21|1997-11-11|1997-11-05|DELIVER IN PERSON|AIR|usly pending theodolites are. accou| +48584|881029|18581|2|1|1009.98|0.04|0.02|N|O|1998-01-05|1997-11-27|1998-01-27|NONE|RAIL|posits cajole slyly. blithely silent pa| +48584|442656|17673|3|48|76734.24|0.07|0.02|N|O|1997-11-23|1997-11-01|1997-12-22|TAKE BACK RETURN|AIR| deposits sl| +48585|93976|18979|1|38|74858.86|0.05|0.01|R|F|1994-05-14|1994-03-29|1994-05-29|NONE|REG AIR|lent dugouts. furiously final foxes after t| +48585|447266|47267|2|16|19411.84|0.08|0.05|A|F|1994-02-24|1994-04-20|1994-03-23|NONE|AIR|hily ironic pinto bean| +48585|195281|32791|3|20|27525.60|0.01|0.05|R|F|1994-04-17|1994-03-31|1994-05-17|COLLECT COD|FOB|he blithely regular foxes. unusual, pendi| +48585|76607|26608|4|35|55426.00|0.07|0.05|A|F|1994-05-18|1994-04-20|1994-05-26|TAKE BACK RETURN|AIR|ing foxes. furiously i| +48586|196059|33569|1|7|8085.35|0.01|0.04|N|F|1995-06-13|1995-06-15|1995-07-03|TAKE BACK RETURN|RAIL|, unusual deposits. blithely specia| +48586|156348|6349|2|31|43534.54|0.00|0.07|N|O|1995-07-22|1995-06-09|1995-08-13|COLLECT COD|MAIL| even depths sleep. carefully bold| +48586|730958|5987|3|6|11933.52|0.08|0.08|N|F|1995-06-06|1995-05-23|1995-06-28|TAKE BACK RETURN|SHIP|. even account| +48586|198243|35753|4|43|57673.32|0.10|0.08|R|F|1995-05-10|1995-07-05|1995-05-30|COLLECT COD|TRUCK| slyly express deposits. blithely bold r| +48586|857269|19787|5|44|53953.68|0.02|0.07|N|O|1995-07-12|1995-06-28|1995-07-26|COLLECT COD|REG AIR|eodolites print furiously quick asympto| +48587|575360|383|1|45|64590.30|0.01|0.01|A|F|1992-03-25|1992-02-18|1992-04-02|NONE|FOB|uriously special requests wake| +48587|67662|5166|2|14|22815.24|0.08|0.01|R|F|1992-01-21|1992-03-16|1992-02-06|COLLECT COD|MAIL|ithely. blithely bo| +48587|182560|20070|3|1|1642.56|0.05|0.04|A|F|1992-02-25|1992-03-16|1992-03-08|DELIVER IN PERSON|TRUCK|regular foxes wake blithely| +48587|269324|31830|4|46|59492.26|0.00|0.00|R|F|1992-03-12|1992-03-16|1992-03-26|DELIVER IN PERSON|FOB|unusual deposits. regul| +48587|518891|18892|5|27|51566.49|0.05|0.07|A|F|1992-04-28|1992-02-27|1992-05-24|COLLECT COD|AIR| cajole carefully. slyly enticing fre| +48588|476557|26558|1|21|32204.13|0.10|0.08|R|F|1993-11-17|1993-10-15|1993-11-25|DELIVER IN PERSON|RAIL|ld requests cajole never enticing | +48589|929953|29954|1|41|81299.31|0.04|0.05|R|F|1993-03-31|1993-01-13|1993-04-16|NONE|TRUCK|. final, pending shea| +48590|960582|23102|1|10|16425.40|0.06|0.06|N|O|1998-07-05|1998-06-12|1998-07-19|NONE|TRUCK|osits are furiously aft| +48590|501318|38849|2|47|62006.63|0.03|0.05|N|O|1998-06-29|1998-05-13|1998-07-17|TAKE BACK RETURN|AIR|ly special ideas detect furi| +48590|636459|36460|3|36|50235.12|0.02|0.08|N|O|1998-04-18|1998-05-18|1998-05-07|COLLECT COD|SHIP|egular theo| +48590|964954|39993|4|42|84794.22|0.08|0.08|N|O|1998-03-21|1998-05-31|1998-04-12|TAKE BACK RETURN|FOB| use after the bold packag| +48590|973339|23340|5|23|32482.67|0.05|0.04|N|O|1998-06-19|1998-06-03|1998-07-19|DELIVER IN PERSON|AIR|uickly regula| +48591|125254|37757|1|21|26864.25|0.04|0.04|N|O|1997-12-06|1998-02-16|1997-12-15|DELIVER IN PERSON|AIR|fully bold d| +48591|133032|45535|2|24|25560.72|0.10|0.07|N|O|1997-12-10|1998-01-13|1997-12-16|DELIVER IN PERSON|TRUCK|tipliers. regular, regular packages sleep.| +48591|853535|28570|3|27|40189.23|0.04|0.07|N|O|1998-02-01|1998-02-06|1998-02-07|COLLECT COD|SHIP|platelets print carefully across th| +48591|362255|12256|4|43|56641.32|0.04|0.02|N|O|1998-01-12|1998-01-01|1998-02-02|TAKE BACK RETURN|MAIL|accounts thr| +48591|415406|27915|5|23|30391.74|0.04|0.04|N|O|1998-02-18|1998-01-26|1998-03-20|DELIVER IN PERSON|TRUCK|gle instructions. daring| +48591|725317|346|6|19|25503.32|0.04|0.03|N|O|1998-03-06|1998-02-18|1998-03-25|DELIVER IN PERSON|SHIP|out the furiously bold packages. | +48591|400202|12711|7|13|14328.34|0.06|0.07|N|O|1998-01-17|1998-01-07|1998-02-04|DELIVER IN PERSON|REG AIR|deas integrate carefull| +48616|193868|18875|1|31|60817.66|0.06|0.00|R|F|1992-04-19|1992-04-28|1992-05-15|DELIVER IN PERSON|FOB| the deposits. special, bold deposits ar| +48616|330447|30448|2|9|13296.87|0.02|0.05|R|F|1992-06-03|1992-03-30|1992-06-20|COLLECT COD|FOB| furiously ironic pinto bean| +48616|821065|33582|3|25|24650.50|0.09|0.05|A|F|1992-06-07|1992-03-14|1992-06-21|DELIVER IN PERSON|FOB|its cajole blithely ab| +48616|628188|15725|4|38|42413.70|0.02|0.04|A|F|1992-04-13|1992-04-27|1992-04-15|COLLECT COD|FOB|counts haggle p| +48616|955222|42780|5|24|30652.32|0.07|0.04|R|F|1992-06-10|1992-05-04|1992-06-19|TAKE BACK RETURN|MAIL|quests haggle | +48616|400148|25165|6|9|9433.08|0.04|0.04|R|F|1992-02-20|1992-04-06|1992-02-21|COLLECT COD|FOB|efully bold idea| +48616|272008|34514|7|4|3919.96|0.01|0.05|A|F|1992-04-26|1992-04-20|1992-05-02|NONE|TRUCK|s integrate? even foxes above the fluffily| +48617|625920|38433|1|37|68297.93|0.05|0.04|N|O|1995-07-26|1995-07-21|1995-08-24|COLLECT COD|SHIP|t deposits. regul| +48617|825769|38286|2|36|61009.92|0.05|0.01|N|O|1995-06-19|1995-07-31|1995-07-19|DELIVER IN PERSON|TRUCK| deposits haggle blithely about the | +48617|687799|25339|3|29|51816.04|0.00|0.06|N|O|1995-07-29|1995-08-10|1995-08-28|NONE|SHIP|ets. accounts boost ironically fi| +48617|835094|10127|4|17|17493.85|0.02|0.01|N|O|1995-10-08|1995-07-27|1995-10-28|DELIVER IN PERSON|TRUCK|es. foxes wake ironic excuses. car| +48617|416549|29058|5|43|63017.36|0.06|0.06|N|O|1995-10-08|1995-08-08|1995-10-17|TAKE BACK RETURN|RAIL|ithely even accounts according to t| +48617|933708|8745|6|2|3483.32|0.10|0.07|N|O|1995-10-02|1995-08-23|1995-10-06|NONE|REG AIR|across the carefull| +48618|181422|6429|1|39|58633.38|0.10|0.05|N|O|1996-08-03|1996-07-14|1996-08-04|COLLECT COD|FOB|pendencies nag-- blit| +48618|146279|46280|2|3|3975.81|0.01|0.03|N|O|1996-06-29|1996-06-28|1996-07-19|COLLECT COD|SHIP|es wake. final, regula| +48618|508889|33910|3|47|89199.42|0.02|0.04|N|O|1996-06-24|1996-07-13|1996-07-11|NONE|FOB|lyly around the | +48618|881500|44018|4|30|44443.80|0.04|0.04|N|O|1996-08-30|1996-07-11|1996-09-01|COLLECT COD|REG AIR|ecial instructions ca| +48618|356555|19063|5|49|78965.46|0.00|0.07|N|O|1996-06-12|1996-06-13|1996-06-27|COLLECT COD|RAIL|yly ironic packages sleep according to th| +48618|615458|40483|6|3|4120.26|0.00|0.03|N|O|1996-06-08|1996-06-16|1996-06-30|COLLECT COD|REG AIR|y ideas. unusual deposit| +48618|988891|1411|7|18|35637.30|0.07|0.07|N|O|1996-07-24|1996-07-08|1996-08-02|TAKE BACK RETURN|FOB|nal, pending | +48619|290207|15218|1|8|9577.52|0.01|0.08|N|O|1996-05-08|1996-06-25|1996-06-03|COLLECT COD|SHIP|r theodolites. blithely| +48619|494087|44088|2|31|33512.86|0.09|0.06|N|O|1996-08-19|1996-07-21|1996-08-23|COLLECT COD|MAIL|final, regular as| +48620|524302|24303|1|18|23873.04|0.06|0.07|N|O|1998-10-18|1998-09-12|1998-10-30|COLLECT COD|FOB|al platelets n| +48621|396638|9146|1|17|29488.54|0.07|0.03|N|O|1997-02-08|1997-01-09|1997-02-23|NONE|REG AIR|ccording to | +48621|278300|28301|2|22|28122.38|0.10|0.00|N|O|1996-11-08|1997-01-07|1996-11-18|COLLECT COD|TRUCK|ests accor| +48622|414027|1552|1|30|28230.00|0.05|0.00|N|O|1998-06-01|1998-06-08|1998-06-23|TAKE BACK RETURN|TRUCK|usly. furiously pending asymptotes cajole | +48622|541733|4244|2|39|69213.69|0.03|0.02|N|O|1998-05-27|1998-05-28|1998-06-03|DELIVER IN PERSON|FOB|ourts? bold, u| +48622|902653|40208|3|29|48012.69|0.00|0.03|N|O|1998-08-06|1998-06-02|1998-09-04|DELIVER IN PERSON|SHIP|fully final foxes. furious instructions ar| +48622|884249|9284|4|36|44395.20|0.06|0.07|N|O|1998-07-06|1998-05-19|1998-08-01|TAKE BACK RETURN|REG AIR|cording to the fluffily regular d| +48622|563658|13659|5|9|15494.67|0.07|0.03|N|O|1998-06-07|1998-07-04|1998-06-15|COLLECT COD|FOB|ous patterns nag carefully accor| +48622|399713|24728|6|42|76133.40|0.04|0.07|N|O|1998-04-13|1998-06-19|1998-04-28|COLLECT COD|SHIP|refully regular id| +48622|968080|30600|7|45|51661.80|0.05|0.03|N|O|1998-07-18|1998-06-29|1998-08-13|NONE|SHIP|usual pinto beans. carefully even | +48623|511286|23797|1|14|18161.64|0.06|0.02|R|F|1994-12-17|1995-01-06|1995-01-01|COLLECT COD|SHIP|s. regular, special asymptotes after the ru| +48623|181252|18762|2|3|3999.75|0.09|0.00|A|F|1994-12-04|1994-12-26|1994-12-17|NONE|TRUCK|ourts nag. d| +48623|286782|24298|3|30|53063.10|0.06|0.04|A|F|1995-02-22|1995-01-13|1995-03-09|NONE|AIR| express requests nag along the car| +48648|527860|40371|1|13|24541.92|0.04|0.07|R|F|1993-11-13|1993-10-04|1993-11-24|NONE|SHIP|ic asymptotes play daringl| +48648|739914|14943|2|7|13677.16|0.06|0.04|A|F|1993-11-29|1993-10-20|1993-12-02|COLLECT COD|RAIL| furiously regular t| +48648|729079|41594|3|8|8864.32|0.01|0.07|A|F|1993-11-02|1993-10-07|1993-11-14|DELIVER IN PERSON|TRUCK| ironic accounts cajole slyly at the thi| +48648|629933|17470|4|21|39120.90|0.09|0.04|R|F|1993-10-10|1993-11-01|1993-10-18|NONE|SHIP|ggle among th| +48648|271157|21158|5|48|54150.72|0.02|0.08|A|F|1993-12-04|1993-10-05|1993-12-05|DELIVER IN PERSON|REG AIR|st quickly above the| +48648|331596|44103|6|34|55337.72|0.10|0.06|A|F|1993-11-20|1993-09-16|1993-11-23|TAKE BACK RETURN|RAIL|lly bold theodolites. permanently regular | +48648|131833|6838|7|41|76458.03|0.00|0.02|A|F|1993-08-31|1993-10-14|1993-09-06|DELIVER IN PERSON|SHIP|ove the slyly ironic pinto beans. s| +48649|703577|16092|1|19|30030.26|0.03|0.01|N|O|1996-04-23|1996-07-15|1996-05-19|COLLECT COD|MAIL|he final instruc| +48649|15995|15996|2|20|38219.80|0.08|0.00|N|O|1996-07-26|1996-07-06|1996-08-24|DELIVER IN PERSON|RAIL|ect busily carefully special deposi| +48649|818355|43388|3|18|22919.58|0.03|0.08|N|O|1996-06-26|1996-06-26|1996-07-12|COLLECT COD|RAIL|wake. special th| +48649|88064|25568|4|9|9468.54|0.01|0.02|N|O|1996-07-23|1996-06-22|1996-08-19|DELIVER IN PERSON|AIR|ccounts. quic| +48649|84347|46849|5|32|42602.88|0.09|0.04|N|O|1996-07-01|1996-06-28|1996-07-27|DELIVER IN PERSON|REG AIR|ent depend| +48649|617727|30240|6|45|74011.05|0.04|0.05|N|O|1996-05-27|1996-07-01|1996-06-09|DELIVER IN PERSON|REG AIR|ges. fluffily regular packages| +48649|132471|44974|7|3|4510.41|0.09|0.06|N|O|1996-06-07|1996-07-10|1996-06-14|DELIVER IN PERSON|FOB|y unusual theodolites. bl| +48650|428262|3279|1|3|3570.72|0.00|0.04|R|F|1994-06-11|1994-06-25|1994-07-11|DELIVER IN PERSON|MAIL|ests sleep again| +48650|798608|48609|2|23|39251.11|0.07|0.08|A|F|1994-05-14|1994-06-15|1994-06-07|COLLECT COD|SHIP|ding, ironic deposi| +48650|192703|17710|3|21|37709.70|0.07|0.08|R|F|1994-06-27|1994-07-08|1994-06-29|DELIVER IN PERSON|AIR|y above the express packag| +48650|747392|9907|4|2|2878.72|0.08|0.07|A|F|1994-05-13|1994-06-25|1994-05-19|COLLECT COD|FOB| special requests x-ray blithely unusua| +48651|79134|4137|1|25|27828.25|0.01|0.00|N|O|1996-08-12|1996-09-09|1996-09-01|NONE|REG AIR|ate slyly sl| +48651|4529|4530|2|16|22936.32|0.06|0.05|N|O|1996-09-14|1996-08-07|1996-10-12|COLLECT COD|SHIP|ckly. express, f| +48651|104719|29724|3|36|62053.56|0.04|0.05|N|O|1996-06-23|1996-08-06|1996-07-15|COLLECT COD|TRUCK|hely. requests wake according to| +48651|998733|11253|4|18|32970.42|0.10|0.08|N|O|1996-08-13|1996-07-30|1996-09-07|DELIVER IN PERSON|MAIL|s? special packages are blithely | +48651|693375|18402|5|47|64311.98|0.04|0.04|N|O|1996-09-09|1996-09-11|1996-09-19|NONE|SHIP|ly blithely iron| +48652|1100|1101|1|20|20022.00|0.03|0.00|N|O|1998-04-17|1998-03-04|1998-05-06|TAKE BACK RETURN|REG AIR|ts are furiously. furiously b| +48652|481361|18889|2|32|42954.88|0.03|0.04|N|O|1998-03-17|1998-03-08|1998-04-04|COLLECT COD|FOB|ly regular | +48652|226753|14266|3|18|30235.32|0.06|0.08|N|O|1998-01-27|1998-02-02|1998-02-13|NONE|AIR|y to unwind. quickly even | +48652|31149|31150|4|9|9721.26|0.00|0.06|N|O|1998-01-04|1998-02-26|1998-01-17|COLLECT COD|REG AIR|uriously ironic ideas around the b| +48653|191711|29221|1|2|3605.42|0.09|0.04|N|O|1997-04-24|1997-05-02|1997-05-09|TAKE BACK RETURN|RAIL|cajole slyly. fina| +48653|77437|27438|2|12|16973.16|0.01|0.03|N|O|1997-06-19|1997-04-02|1997-07-13|COLLECT COD|REG AIR|eposits are carefully | +48653|477264|39774|3|17|21101.08|0.10|0.01|N|O|1997-03-02|1997-04-06|1997-03-21|TAKE BACK RETURN|REG AIR| ironic accou| +48653|367719|42734|4|45|80401.50|0.10|0.00|N|O|1997-06-15|1997-04-21|1997-06-28|TAKE BACK RETURN|RAIL|dolites. brave p| +48654|342386|4893|1|27|38565.99|0.07|0.00|R|F|1994-06-23|1994-06-06|1994-06-26|DELIVER IN PERSON|REG AIR|ly special packages. iron| +48654|481151|18679|2|32|36228.16|0.10|0.02|R|F|1994-06-23|1994-06-04|1994-07-20|NONE|RAIL|pecial accounts. special accounts use| +48655|564777|39800|1|49|90245.75|0.04|0.04|N|O|1998-01-01|1997-11-26|1998-01-19|DELIVER IN PERSON|AIR|he carefully regul| +48655|191968|29478|2|30|61798.80|0.09|0.01|N|O|1998-01-12|1997-10-30|1998-02-07|NONE|RAIL|ke blithely above the final theodolites. s| +48680|623790|48815|1|21|35988.96|0.08|0.04|R|F|1993-08-20|1993-07-08|1993-08-22|DELIVER IN PERSON|TRUCK|ic, pending instructions. carefully fin| +48680|33254|20755|2|13|15434.25|0.10|0.01|A|F|1993-06-18|1993-06-16|1993-06-21|TAKE BACK RETURN|RAIL|efully even warhorses| +48680|895915|33467|3|39|74523.93|0.03|0.00|A|F|1993-06-10|1993-07-19|1993-06-28|DELIVER IN PERSON|RAIL|e the regular, expr| +48680|636177|11202|4|29|32281.06|0.04|0.03|A|F|1993-08-31|1993-07-29|1993-09-13|NONE|TRUCK|olites believe blithely pending platelet| +48681|956062|31101|1|6|6708.12|0.10|0.03|N|O|1997-04-17|1997-04-25|1997-05-02|DELIVER IN PERSON|TRUCK|ickly regular dep| +48681|522737|47758|2|42|73907.82|0.08|0.03|N|O|1997-04-23|1997-04-15|1997-05-04|COLLECT COD|AIR|ments wake| +48681|632259|7284|3|50|59561.00|0.04|0.08|N|O|1997-04-25|1997-04-15|1997-05-07|COLLECT COD|TRUCK|rate slyly ironic t| +48681|362557|25065|4|19|30771.26|0.01|0.00|N|O|1997-06-16|1997-05-05|1997-06-19|COLLECT COD|MAIL|blithely ironic packa| +48682|861973|24491|1|47|90941.71|0.01|0.02|N|O|1996-08-20|1996-07-29|1996-09-12|DELIVER IN PERSON|SHIP| requests. bli| +48682|168921|18922|2|3|5969.76|0.09|0.03|N|O|1996-08-11|1996-08-13|1996-08-30|NONE|MAIL|ckages. slyly ironic reque| +48683|315137|2656|1|6|6912.72|0.02|0.00|N|O|1997-07-30|1997-06-23|1997-08-01|TAKE BACK RETURN|FOB|lyly even acc| +48683|494356|44357|2|25|33758.25|0.01|0.07|N|O|1997-05-02|1997-06-12|1997-05-18|COLLECT COD|SHIP| dependencies nag q| +48683|631362|18899|3|43|55613.19|0.10|0.00|N|O|1997-06-17|1997-05-12|1997-07-15|DELIVER IN PERSON|SHIP| permanently at the furiously reg| +48683|299981|37497|4|43|85181.71|0.05|0.06|N|O|1997-04-08|1997-05-22|1997-04-19|NONE|TRUCK|ully final ac| +48683|778727|41243|5|18|32502.42|0.02|0.06|N|O|1997-06-15|1997-05-17|1997-07-03|COLLECT COD|AIR|thely unusua| +48684|766220|41251|1|7|9003.33|0.07|0.00|R|F|1994-10-12|1994-07-29|1994-10-28|COLLECT COD|MAIL| haggle carefully. blithely exp| +48684|851628|39180|2|14|22114.12|0.10|0.02|R|F|1994-07-15|1994-08-28|1994-07-16|DELIVER IN PERSON|RAIL|riously ironic deposits solve. final, b| +48684|303506|41025|3|8|12075.92|0.03|0.01|R|F|1994-07-25|1994-08-01|1994-08-08|COLLECT COD|MAIL|lyly among the furiously| +48685|201369|26378|1|37|47002.95|0.03|0.06|R|F|1993-07-02|1993-08-28|1993-08-01|COLLECT COD|REG AIR|ould promise. carefull| +48685|405985|5986|2|49|92657.04|0.01|0.04|R|F|1993-09-24|1993-09-01|1993-10-07|TAKE BACK RETURN|FOB|gle blithely. requests | +48685|389446|26968|3|9|13818.87|0.01|0.08|R|F|1993-08-02|1993-07-27|1993-08-25|NONE|SHIP|rding to the fluffil| +48685|411406|48931|4|29|38204.02|0.10|0.00|A|F|1993-08-14|1993-07-21|1993-09-07|NONE|RAIL|lar foxes are carefully caref| +48685|494536|32064|5|49|74994.99|0.09|0.06|R|F|1993-10-02|1993-08-24|1993-10-06|TAKE BACK RETURN|TRUCK|ajole furio| +48685|654094|4095|6|50|52403.00|0.01|0.02|R|F|1993-09-11|1993-08-21|1993-10-06|TAKE BACK RETURN|SHIP|as boost furiously. regularl| +48686|688687|38688|1|41|68701.65|0.10|0.07|A|F|1992-05-04|1992-05-30|1992-05-19|TAKE BACK RETURN|MAIL|s wake slyl| +48687|764528|27044|1|2|3184.98|0.09|0.06|A|F|1995-03-07|1995-03-01|1995-04-02|TAKE BACK RETURN|SHIP|ions. ironic accounts according to| +48687|420988|20989|2|36|68722.56|0.03|0.04|R|F|1995-01-07|1995-01-13|1995-01-19|COLLECT COD|RAIL|egular, ironic deposits breach quickly a| +48687|532038|7059|3|43|46010.43|0.01|0.07|A|F|1994-12-17|1995-01-26|1994-12-23|COLLECT COD|REG AIR|riously regular request| +48712|494252|19271|1|40|49849.20|0.10|0.08|A|F|1992-11-21|1992-12-29|1992-11-26|NONE|REG AIR|ly pending th| +48712|878365|15917|2|42|56419.44|0.09|0.03|A|F|1992-10-25|1992-11-08|1992-11-17|NONE|SHIP|ress deposits haggle furiously. quickl| +48712|676966|1993|3|34|66059.62|0.00|0.07|A|F|1993-01-14|1992-12-30|1993-01-25|COLLECT COD|RAIL| packages wake quickly final sa| +48712|765030|27546|4|10|10950.00|0.10|0.04|R|F|1992-11-16|1992-12-06|1992-11-23|NONE|TRUCK|equests. br| +48712|852194|39746|5|32|36676.80|0.10|0.01|R|F|1992-11-26|1992-11-18|1992-12-23|NONE|MAIL|oubt furiously. blithely fluffy depos| +48713|516221|16222|1|5|6186.00|0.10|0.02|N|O|1998-04-06|1998-03-28|1998-04-13|NONE|AIR|xpress deposits cajole ca| +48713|111033|23536|2|28|29232.84|0.00|0.06|N|O|1998-02-24|1998-03-21|1998-03-06|TAKE BACK RETURN|FOB|stealthy instructions. blithely fi| +48713|129043|41546|3|12|12864.48|0.03|0.03|N|O|1998-02-26|1998-02-10|1998-03-16|COLLECT COD|FOB|od along the f| +48713|812496|37529|4|10|14084.50|0.09|0.00|N|O|1998-04-20|1998-03-30|1998-05-19|TAKE BACK RETURN|REG AIR|ng the bold, regula| +48713|618283|18284|5|33|39641.25|0.04|0.08|N|O|1998-05-10|1998-03-03|1998-05-24|NONE|AIR|ly express requests lose afte| +48713|467639|17640|6|3|4819.83|0.05|0.03|N|O|1998-05-04|1998-03-25|1998-05-31|TAKE BACK RETURN|MAIL|blithely thin reque| +48713|597355|22378|7|49|71164.17|0.00|0.02|N|O|1998-04-26|1998-02-09|1998-05-13|COLLECT COD|MAIL|, slow requests c| +48714|737237|37238|1|39|49693.80|0.08|0.04|N|O|1997-08-22|1997-08-08|1997-09-12|COLLECT COD|MAIL|ke blithely. regular acc| +48714|731659|6688|2|34|57481.08|0.09|0.08|N|O|1997-05-20|1997-06-28|1997-05-21|TAKE BACK RETURN|RAIL|onic theod| +48714|983902|33903|3|30|59575.80|0.06|0.08|N|O|1997-06-15|1997-07-07|1997-06-25|TAKE BACK RETURN|REG AIR|the furiously ironic d| +48715|735721|23264|1|45|79051.05|0.02|0.00|N|O|1995-11-23|1995-12-22|1995-12-09|COLLECT COD|AIR|usual somas haggle blithely ironic reques| +48715|246715|34228|2|10|16617.00|0.00|0.03|N|O|1995-12-01|1995-11-16|1995-12-27|NONE|RAIL|r multipliers cajole blithely.| +48715|536673|24204|3|19|32483.35|0.04|0.00|N|O|1995-12-13|1995-12-11|1996-01-11|TAKE BACK RETURN|FOB| above the ironic pack| +48715|862773|325|4|46|79843.58|0.01|0.03|N|O|1995-12-10|1995-11-11|1995-12-16|DELIVER IN PERSON|AIR|kly special requests! pending,| +48715|612776|313|5|32|54039.68|0.01|0.00|N|O|1996-02-02|1995-11-20|1996-02-29|NONE|TRUCK|ly unusual requests nag quickly atop th| +48715|919672|44709|6|16|27066.08|0.01|0.06|N|O|1995-12-07|1995-11-30|1996-01-02|TAKE BACK RETURN|SHIP|s wake carefully quickly spe| +48715|916507|4062|7|27|41133.42|0.02|0.03|N|O|1995-10-10|1995-12-27|1995-10-29|DELIVER IN PERSON|MAIL| fluffily! ironic d| +48716|728298|15841|1|1|1326.26|0.00|0.04|A|F|1994-03-31|1994-04-13|1994-04-26|COLLECT COD|TRUCK|le! regular packa| +48716|500095|25116|2|21|22996.47|0.03|0.05|R|F|1994-05-11|1994-04-07|1994-06-10|DELIVER IN PERSON|SHIP|counts haggle acco| +48717|841365|16398|1|36|47027.52|0.03|0.05|N|O|1996-10-06|1996-08-08|1996-10-13|DELIVER IN PERSON|FOB|ounts cajole. final| +48717|805592|30625|2|25|37438.75|0.02|0.08|N|O|1996-06-16|1996-07-31|1996-06-24|TAKE BACK RETURN|TRUCK|blithely along the dogged ideas| +48717|582763|7786|3|29|53526.46|0.03|0.03|N|O|1996-08-23|1996-07-19|1996-09-01|DELIVER IN PERSON|TRUCK|c pinto beans use slyly. furiously pending | +48717|493088|18107|4|4|4324.24|0.08|0.06|N|O|1996-09-11|1996-08-02|1996-10-09|COLLECT COD|REG AIR|hout the re| +48717|323689|36196|5|30|51380.10|0.07|0.08|N|O|1996-07-11|1996-08-27|1996-07-24|TAKE BACK RETURN|TRUCK|beans boost fluffily. ironic, regula| +48717|226410|26411|6|27|36082.80|0.03|0.07|N|O|1996-07-16|1996-07-10|1996-07-30|NONE|SHIP|ly express idea| +48718|602625|15138|1|39|59576.01|0.02|0.03|N|O|1997-07-24|1997-08-03|1997-08-14|COLLECT COD|TRUCK|, regular | +48718|316515|29022|2|39|59728.50|0.03|0.02|N|O|1997-06-23|1997-07-25|1997-07-06|TAKE BACK RETURN|SHIP|deposits. blithely regular waters thrash | +48718|652442|14956|3|1|1394.41|0.01|0.03|N|O|1997-06-27|1997-07-27|1997-07-14|TAKE BACK RETURN|REG AIR|y express platelets breach a| +48718|578798|41310|4|23|43165.71|0.04|0.06|N|O|1997-05-27|1997-06-18|1997-06-10|COLLECT COD|AIR|s should haggle slyly regular ideas. sly| +48718|847461|47462|5|1|1408.42|0.00|0.00|N|O|1997-07-03|1997-07-16|1997-07-27|NONE|AIR| slyly ironic ideas use express inst| +48719|517043|29554|1|16|16960.32|0.02|0.03|N|O|1997-02-09|1997-04-09|1997-02-19|NONE|AIR|y special foxes. fluffily even foxes aft| +48719|938796|26351|2|45|82563.75|0.00|0.08|N|O|1997-03-05|1997-02-22|1997-03-23|NONE|RAIL|unts. final ideas across the fox| +48719|329276|16795|3|32|41768.32|0.04|0.06|N|O|1997-04-23|1997-03-01|1997-05-12|COLLECT COD|SHIP|ly final requests. regular, | +48744|964923|2481|1|28|55660.64|0.00|0.08|R|F|1993-05-19|1993-06-18|1993-05-20|DELIVER IN PERSON|RAIL| the furiously pend| +48744|454122|41650|2|10|10761.00|0.10|0.08|R|F|1993-07-26|1993-06-11|1993-08-23|TAKE BACK RETURN|RAIL|along the slyly even deposits| +48745|328326|28327|1|33|44692.23|0.09|0.08|A|F|1993-10-10|1993-09-13|1993-10-30|DELIVER IN PERSON|TRUCK|ely even reque| +48745|172360|22361|2|12|17188.32|0.07|0.08|R|F|1993-08-03|1993-08-05|1993-08-16|TAKE BACK RETURN|RAIL|le quickly acco| +48745|843161|43162|3|50|55206.00|0.05|0.06|A|F|1993-08-06|1993-07-31|1993-08-07|TAKE BACK RETURN|AIR|quickly packages. ironic pac| +48745|4100|4101|4|30|30123.00|0.03|0.07|R|F|1993-08-04|1993-08-28|1993-08-06|TAKE BACK RETURN|FOB|refully regular account| +48745|899043|11561|5|43|44806.00|0.01|0.08|R|F|1993-07-25|1993-08-18|1993-08-22|NONE|TRUCK|gular theodol| +48746|45232|45233|1|40|47089.20|0.02|0.06|N|O|1996-08-15|1996-09-20|1996-08-18|COLLECT COD|RAIL| deposits. regular dolphins are sly| +48747|980577|43097|1|19|31493.07|0.07|0.01|R|F|1995-02-04|1995-04-11|1995-03-01|COLLECT COD|MAIL| foxes. furiously| +48747|541266|41267|2|2|2614.48|0.05|0.08|R|F|1995-04-20|1995-03-18|1995-05-08|TAKE BACK RETURN|RAIL|accounts cajole furiously along the pendin| +48748|589703|14726|1|18|32268.24|0.02|0.02|N|O|1997-10-25|1997-12-20|1997-10-29|NONE|MAIL|e quickly ex| +48748|127223|2228|2|30|37506.60|0.04|0.02|N|O|1997-12-02|1997-11-22|1997-12-04|NONE|TRUCK|beans! brav| +48748|229041|41546|3|28|27160.84|0.01|0.02|N|O|1998-01-21|1997-12-24|1998-01-23|NONE|MAIL|quests. unusual deposits haggle! regular| +48748|484355|9374|4|18|24107.94|0.08|0.06|N|O|1998-02-07|1997-12-18|1998-03-05|TAKE BACK RETURN|TRUCK|o use against the sile| +48748|547858|10369|5|20|38116.60|0.07|0.04|N|O|1997-12-20|1997-11-20|1998-01-07|TAKE BACK RETURN|RAIL|lly above the regular dolphins. e| +48748|837582|12615|6|5|7597.70|0.03|0.05|N|O|1998-02-06|1998-01-04|1998-03-05|DELIVER IN PERSON|TRUCK|ording to the quickly fin| +48749|66081|16082|1|33|34553.64|0.02|0.02|A|F|1992-11-15|1992-12-12|1992-11-30|TAKE BACK RETURN|MAIL|furiously alon| +48749|620113|32626|2|28|28926.24|0.06|0.07|R|F|1992-12-05|1992-12-01|1993-01-01|DELIVER IN PERSON|REG AIR|hely daring pinto | +48749|225575|38080|3|27|40515.12|0.07|0.03|A|F|1993-01-02|1993-01-21|1993-01-18|NONE|FOB|usly. even accou| +48749|234731|34732|4|38|63297.36|0.03|0.05|R|F|1993-01-15|1992-12-17|1993-02-03|TAKE BACK RETURN|FOB|ously even instructi| +48749|122071|34574|5|50|54653.50|0.10|0.00|A|F|1993-01-10|1993-01-21|1993-02-04|NONE|MAIL|he blithely spe| +48749|637473|12498|6|23|32440.12|0.01|0.05|R|F|1993-02-23|1993-01-13|1993-03-06|COLLECT COD|REG AIR|ilent foxes. furiously express accounts | +48750|570271|7805|1|31|41578.75|0.08|0.00|A|F|1995-02-11|1995-02-04|1995-02-19|NONE|RAIL|packages. slyly bold theodolites wake b| +48750|544620|32151|2|31|51602.60|0.02|0.02|A|F|1994-12-24|1994-12-16|1995-01-18|DELIVER IN PERSON|MAIL|g according to the slyly express req| +48750|425736|753|3|9|14955.39|0.03|0.05|A|F|1995-01-30|1994-12-22|1995-02-03|NONE|MAIL| the regular, ironic packages. express th| +48750|330772|5785|4|15|27041.40|0.08|0.00|A|F|1994-12-21|1995-01-14|1995-01-18|TAKE BACK RETURN|REG AIR|s. carefully ironic| +48750|269791|19792|5|12|21129.36|0.03|0.01|R|F|1995-02-25|1995-02-08|1995-03-12|NONE|MAIL|ly final deposits after the careful| +48750|367832|30340|6|16|30397.12|0.04|0.04|R|F|1994-11-17|1994-12-29|1994-11-28|TAKE BACK RETURN|MAIL|uests wake. slyly final packages sleep care| +48751|80643|43145|1|41|66569.24|0.06|0.00|A|F|1993-05-31|1993-07-17|1993-06-01|COLLECT COD|TRUCK|fully even requests boost ironic| +48751|355461|17969|2|22|33361.90|0.09|0.03|R|F|1993-08-12|1993-07-21|1993-08-18|COLLECT COD|AIR|slyly. ironic, final reques| +48751|230401|42906|3|26|34616.14|0.04|0.04|R|F|1993-08-21|1993-08-11|1993-09-17|NONE|SHIP|even requests thras| +48751|334622|22141|4|45|74547.45|0.00|0.02|A|F|1993-09-03|1993-07-12|1993-09-05|TAKE BACK RETURN|SHIP|e quickly even dolphin| +48751|982548|7587|5|23|37501.50|0.08|0.05|A|F|1993-05-31|1993-08-20|1993-06-23|TAKE BACK RETURN|AIR|usly across the express, unusual deposit| +48751|672134|9674|6|4|4424.40|0.10|0.02|A|F|1993-06-08|1993-07-11|1993-07-05|COLLECT COD|RAIL|n dependencies. pinto beans sleep. fur| +48776|463559|13560|1|17|25883.01|0.09|0.02|N|O|1995-08-26|1995-09-02|1995-09-16|COLLECT COD|MAIL|quickly unusual pack| +48776|27435|39936|2|24|32698.32|0.05|0.03|N|O|1995-11-25|1995-09-18|1995-12-13|NONE|SHIP|carefully unusual depo| +48777|100396|25401|1|7|9774.73|0.04|0.06|N|O|1997-12-23|1998-01-19|1998-01-11|TAKE BACK RETURN|SHIP| slyly final theodolites. ironic p| +48778|968785|18786|1|12|22244.88|0.10|0.00|R|F|1994-03-03|1994-04-11|1994-03-20|TAKE BACK RETURN|RAIL|lyly ironi| +48779|595967|45968|1|37|76328.78|0.04|0.07|R|F|1994-09-10|1994-10-27|1994-10-08|NONE|MAIL|theodolites impress. daring foxes are t| +48779|412700|25209|2|33|53218.44|0.08|0.07|A|F|1994-09-22|1994-11-04|1994-10-18|COLLECT COD|RAIL| carefully even deposits. slyly bold| +48779|238545|38546|3|34|50440.02|0.02|0.01|A|F|1994-10-05|1994-11-06|1994-11-02|COLLECT COD|REG AIR|ithes kindle against the ide| +48780|245801|33314|1|9|15721.11|0.02|0.00|N|O|1996-12-21|1996-10-05|1997-01-12|COLLECT COD|TRUCK|s. final, even deposi| +48780|163274|13275|2|5|6686.35|0.06|0.06|N|O|1996-11-06|1996-11-17|1996-11-07|NONE|TRUCK|tes use furiously according to the| +48780|133221|33222|3|35|43897.70|0.07|0.02|N|O|1996-09-08|1996-11-07|1996-10-07|NONE|SHIP|sts doubt foxes. slyly ca| +48780|33546|8547|4|20|29590.80|0.05|0.06|N|O|1996-10-05|1996-11-11|1996-10-14|COLLECT COD|MAIL| boost quickly according to the regular in| +48781|384108|21630|1|38|45299.42|0.06|0.08|R|F|1993-12-11|1994-02-11|1993-12-31|TAKE BACK RETURN|TRUCK|e slyly. quickly re| +48781|690457|27997|2|9|13026.78|0.03|0.03|R|F|1994-01-13|1994-02-10|1994-01-25|TAKE BACK RETURN|RAIL|fully final pinto beans. fluffily | +48781|498908|36436|3|46|87716.48|0.00|0.03|A|F|1994-03-18|1994-01-30|1994-04-10|TAKE BACK RETURN|REG AIR|packages sleep| +48781|132823|7828|4|24|44539.68|0.10|0.01|R|F|1993-12-28|1994-01-31|1994-01-23|DELIVER IN PERSON|SHIP|blithely regular foxes. daringly re| +48781|343808|31327|5|44|81478.76|0.03|0.02|R|F|1993-12-30|1994-01-19|1994-01-20|COLLECT COD|REG AIR|ly ironic packages x-ray blit| +48782|532306|44817|1|46|61560.88|0.05|0.03|N|O|1997-09-02|1997-09-07|1997-09-14|TAKE BACK RETURN|REG AIR|carefully | +48782|465352|40371|2|1|1317.33|0.05|0.02|N|O|1997-09-20|1997-08-09|1997-09-26|DELIVER IN PERSON|FOB|; carefully final as| +48782|165718|15719|3|44|78483.24|0.04|0.02|N|O|1997-09-01|1997-07-23|1997-09-02|COLLECT COD|AIR| across the | +48782|219351|19352|4|46|58435.64|0.03|0.04|N|O|1997-06-29|1997-08-29|1997-07-26|DELIVER IN PERSON|TRUCK|ackages engage furiously alongside of the| +48782|617650|5187|5|4|6270.48|0.00|0.02|N|O|1997-08-06|1997-07-20|1997-08-23|COLLECT COD|FOB|ccording to the ironically regular packa| +48783|276999|2010|1|17|33591.66|0.01|0.04|A|F|1994-07-06|1994-08-03|1994-07-21|COLLECT COD|RAIL| regular a| +48783|519370|31881|2|15|20840.25|0.04|0.04|R|F|1994-07-13|1994-06-06|1994-07-20|TAKE BACK RETURN|SHIP|uickly regular requests. regular asymptote| +48783|47421|47422|3|28|38315.76|0.00|0.05|R|F|1994-08-09|1994-07-22|1994-08-22|COLLECT COD|REG AIR|longside of the silent| +48808|689800|2314|1|22|39374.94|0.06|0.01|N|O|1998-02-10|1998-02-19|1998-02-26|COLLECT COD|FOB|y pending packages. carefully special foxes| +48808|464619|2147|2|44|69677.96|0.05|0.08|N|O|1998-01-31|1998-03-28|1998-02-10|COLLECT COD|MAIL|he furiously regular theodolites. slyl| +48808|846849|46850|3|15|26937.00|0.02|0.06|N|O|1998-01-25|1998-04-06|1998-02-24|NONE|SHIP|ges affix. furious| +48808|978520|41040|4|39|62340.72|0.02|0.07|N|O|1998-04-23|1998-02-25|1998-05-05|COLLECT COD|MAIL|kages are slyly even excuses. fur| +48808|972803|35323|5|42|78781.92|0.07|0.03|N|O|1998-02-04|1998-04-08|1998-02-15|TAKE BACK RETURN|SHIP|l asymptotes nag b| +48808|894987|32539|6|32|63422.08|0.01|0.01|N|O|1998-03-18|1998-03-01|1998-04-16|NONE|SHIP|es. regular | +48808|40931|3432|7|3|5615.79|0.04|0.07|N|O|1998-02-28|1998-02-24|1998-03-23|DELIVER IN PERSON|RAIL|old packages wake alon| +48809|919576|44613|1|38|60630.14|0.09|0.08|N|O|1996-12-28|1997-02-22|1997-01-05|DELIVER IN PERSON|TRUCK|y about the bol| +48809|305512|30525|2|11|16692.50|0.08|0.08|N|O|1997-03-25|1997-03-04|1997-04-15|COLLECT COD|RAIL|s since the e| +48809|726911|14454|3|13|25192.44|0.09|0.04|N|O|1997-02-01|1997-01-25|1997-03-01|DELIVER IN PERSON|AIR|r theodolites use above the ironic| +48809|189364|26874|4|44|63947.84|0.00|0.01|N|O|1997-01-12|1997-02-03|1997-02-08|TAKE BACK RETURN|AIR|quests sleep across t| +48809|624264|49289|5|6|7129.38|0.03|0.00|N|O|1997-03-06|1997-02-03|1997-03-12|COLLECT COD|MAIL|ves will use express requests. even, | +48810|784747|34748|1|25|45792.75|0.04|0.05|A|F|1994-09-06|1994-07-10|1994-09-19|TAKE BACK RETURN|SHIP|nder quick| +48811|834035|34036|1|47|45542.53|0.02|0.02|R|F|1994-12-12|1994-10-05|1994-12-19|TAKE BACK RETURN|REG AIR|ter the furiously special pinto beans.| +48812|115432|2939|1|7|10132.01|0.06|0.04|N|O|1998-03-17|1998-02-14|1998-04-16|COLLECT COD|REG AIR|r foxes among the furiously| +48812|57678|20180|2|26|42527.42|0.03|0.00|N|O|1998-01-23|1998-03-12|1998-02-15|NONE|FOB|lyly pending pinto b| +48812|386924|49432|3|48|96523.68|0.04|0.01|N|O|1998-01-19|1998-03-05|1998-01-24|NONE|REG AIR|unusual req| +48813|692704|30244|1|37|62776.79|0.08|0.01|N|O|1996-06-07|1996-05-22|1996-06-20|DELIVER IN PERSON|REG AIR|ndencies bo| +48813|270453|7969|2|48|68325.12|0.01|0.03|N|O|1996-06-24|1996-05-09|1996-06-29|NONE|SHIP|usual asymptotes. pending requests are fu| +48813|490581|40582|3|10|15715.60|0.05|0.03|N|O|1996-04-09|1996-05-21|1996-04-11|COLLECT COD|TRUCK|itaphs doubt across the| +48813|193732|6236|4|40|73029.20|0.02|0.03|N|O|1996-03-23|1996-04-12|1996-04-03|COLLECT COD|FOB|accounts wake blithely final | +48813|52888|15390|5|6|11045.28|0.01|0.08|N|O|1996-05-23|1996-05-15|1996-06-14|NONE|FOB|sh. furiousl| +48813|877799|27800|6|32|56856.00|0.01|0.08|N|O|1996-06-20|1996-05-21|1996-07-06|NONE|TRUCK|even theod| +48813|167771|5281|7|29|53324.33|0.04|0.07|N|O|1996-05-21|1996-05-28|1996-05-30|COLLECT COD|REG AIR|eans cajole fluffily among| +48814|721680|9223|1|35|59557.75|0.07|0.03|R|F|1993-01-27|1992-11-30|1993-02-13|TAKE BACK RETURN|FOB|ages eat carefully quickly ironic depos| +48814|273621|11137|2|35|55811.35|0.00|0.05|R|F|1992-11-06|1992-12-14|1992-11-22|COLLECT COD|REG AIR|n, special accounts boost furiously re| +48814|740235|2750|3|41|52283.20|0.02|0.07|R|F|1992-12-15|1993-01-26|1992-12-19|DELIVER IN PERSON|RAIL|requests. quickly even| +48815|93477|18480|1|10|14704.70|0.01|0.03|A|F|1992-07-03|1992-06-18|1992-07-06|COLLECT COD|RAIL|, permanent ex| +48840|99688|24691|1|41|69194.88|0.08|0.08|A|F|1995-04-29|1995-04-02|1995-05-06|COLLECT COD|MAIL|ual dependencies. final, regula| +48841|462169|24679|1|38|42983.32|0.07|0.06|N|O|1998-02-10|1998-02-22|1998-03-02|TAKE BACK RETURN|TRUCK|ost furiou| +48841|662952|37979|2|48|91916.16|0.01|0.02|N|O|1998-02-10|1998-01-21|1998-03-07|DELIVER IN PERSON|RAIL|usly carefully expres| +48841|224366|49375|3|14|18064.90|0.07|0.05|N|O|1997-12-16|1998-01-30|1998-01-14|DELIVER IN PERSON|RAIL|posits are carefully ironic packages. bol| +48841|913164|25683|4|10|11771.20|0.02|0.01|N|O|1998-01-18|1998-02-14|1998-01-31|DELIVER IN PERSON|RAIL| run fluff| +48841|546730|46731|5|40|71068.40|0.05|0.01|N|O|1998-01-25|1998-02-19|1998-02-22|DELIVER IN PERSON|REG AIR|ithely express requests cajole accordin| +48841|882522|32523|6|12|18053.76|0.01|0.07|N|O|1998-04-02|1998-02-10|1998-05-01|NONE|SHIP|xpress, ironic ideas. slyly quiet packa| +48842|267202|29708|1|4|4676.76|0.02|0.07|N|O|1997-07-14|1997-07-08|1997-08-13|TAKE BACK RETURN|SHIP|e. slyly ironic platele| +48842|850401|37953|2|30|40540.80|0.04|0.02|N|O|1997-08-15|1997-06-23|1997-08-26|DELIVER IN PERSON|TRUCK| the fluffily express theodoli| +48842|680459|30460|3|48|69092.16|0.05|0.04|N|O|1997-06-01|1997-06-22|1997-06-22|NONE|SHIP|bout the unusual packag| +48842|471322|21323|4|8|10346.40|0.03|0.05|N|O|1997-08-08|1997-06-04|1997-08-18|DELIVER IN PERSON|MAIL|of the carefully express packages wake fu| +48842|507919|45450|5|36|69368.04|0.05|0.03|N|O|1997-08-25|1997-07-15|1997-09-18|DELIVER IN PERSON|FOB|ers are careful| +48843|980333|42853|1|17|24025.93|0.06|0.06|N|F|1995-06-13|1995-05-18|1995-06-19|NONE|AIR|equests. carefully unusua| +48843|455048|5049|2|31|31093.62|0.10|0.05|A|F|1995-04-24|1995-04-24|1995-05-19|TAKE BACK RETURN|SHIP|counts are furiously across the carefull| +48844|172176|9686|1|10|12481.70|0.02|0.04|N|O|1997-10-12|1997-12-03|1997-10-16|TAKE BACK RETURN|MAIL|ep furiously sp| +48844|748764|23793|2|33|59820.09|0.02|0.06|N|O|1997-10-03|1997-11-09|1997-10-17|TAKE BACK RETURN|TRUCK|requests! unusual ac| +48845|656026|43566|1|19|18657.81|0.05|0.01|N|O|1998-05-13|1998-03-04|1998-05-20|COLLECT COD|SHIP| special dolphins cajole carefu| +48845|819301|6850|2|32|39048.32|0.04|0.05|N|O|1998-05-10|1998-03-18|1998-05-22|DELIVER IN PERSON|RAIL|mptotes above the slyly r| +48845|987333|12372|3|3|4260.87|0.10|0.07|N|O|1998-02-17|1998-04-01|1998-03-01|NONE|FOB|ave to nag agains| +48845|100960|961|4|8|15687.68|0.03|0.05|N|O|1998-02-23|1998-03-29|1998-03-16|NONE|FOB| tithes according to the bold, express dep| +48846|385633|48141|1|37|63588.94|0.07|0.08|R|F|1994-07-30|1994-07-06|1994-08-14|TAKE BACK RETURN|FOB|sts. carefully bold theodolites are:| +48846|330543|5556|2|7|11014.71|0.01|0.05|R|F|1994-05-11|1994-06-14|1994-05-26|DELIVER IN PERSON|SHIP|yly across the f| +48846|419710|7235|3|43|70076.67|0.05|0.03|R|F|1994-07-21|1994-06-13|1994-08-04|TAKE BACK RETURN|SHIP|bout the foxes run blithely furious| +48846|62946|37949|4|39|74448.66|0.09|0.08|A|F|1994-05-09|1994-06-02|1994-05-19|TAKE BACK RETURN|AIR|e furiously accordin| +48846|920754|45791|5|15|26620.65|0.04|0.04|R|F|1994-05-12|1994-07-16|1994-06-04|TAKE BACK RETURN|SHIP| impress enticingly regular theod| +48846|110695|23198|6|4|6822.76|0.03|0.05|A|F|1994-06-04|1994-06-05|1994-06-07|DELIVER IN PERSON|AIR|e carefully final | +48846|438991|26516|7|8|15439.76|0.03|0.03|A|F|1994-06-19|1994-06-18|1994-07-15|DELIVER IN PERSON|AIR|ss platelets wake blithely according to | +48847|105156|42663|1|14|16256.10|0.05|0.04|N|O|1998-03-04|1998-04-08|1998-04-01|NONE|FOB|ending requests. furio| +48847|347255|9762|2|20|26044.80|0.06|0.08|N|O|1998-02-01|1998-03-25|1998-02-23|COLLECT COD|RAIL| deposits are furi| +48847|310326|10327|3|35|46770.85|0.01|0.06|N|O|1998-02-09|1998-03-29|1998-02-23|COLLECT COD|REG AIR|ackages are furiously furiou| +48847|636136|48649|4|8|8576.80|0.10|0.07|N|O|1998-03-22|1998-03-13|1998-04-20|NONE|AIR| slyly bold foxes. s| +48847|526246|38757|5|22|27988.84|0.09|0.08|N|O|1998-04-07|1998-02-19|1998-04-11|COLLECT COD|MAIL| final, regular requests wa| +48847|602065|27090|6|49|47384.47|0.04|0.03|N|O|1998-03-03|1998-03-12|1998-03-27|TAKE BACK RETURN|FOB|pending accounts around the careful| +48847|895609|33161|7|13|20859.28|0.06|0.04|N|O|1998-05-12|1998-03-13|1998-05-29|NONE|SHIP|lly even packages | +48872|486880|36881|1|18|33603.48|0.04|0.07|N|O|1997-05-01|1997-06-13|1997-05-23|COLLECT COD|TRUCK|ght to integrate blithely above the slyly f| +48872|983864|33865|2|26|50643.32|0.05|0.04|N|O|1997-06-18|1997-06-12|1997-07-04|COLLECT COD|SHIP| instructions use | +48872|796309|8825|3|26|36537.02|0.03|0.07|N|O|1997-08-23|1997-05-31|1997-09-15|DELIVER IN PERSON|REG AIR|ronic foxes a| +48872|561791|36814|4|6|11116.62|0.04|0.05|N|O|1997-04-29|1997-06-30|1997-05-02|DELIVER IN PERSON|REG AIR|e furiously a| +48872|14344|39345|5|2|2516.68|0.10|0.03|N|O|1997-05-13|1997-07-13|1997-06-12|COLLECT COD|TRUCK|the blithely special ins| +48872|77766|27767|6|20|34875.20|0.05|0.02|N|O|1997-07-31|1997-06-06|1997-08-16|TAKE BACK RETURN|FOB|ily pending requests. fina| +48872|3377|40878|7|1|1280.37|0.06|0.03|N|O|1997-08-20|1997-06-02|1997-09-18|NONE|AIR|lyly unusual depos| +48873|753011|3012|1|22|23407.56|0.02|0.01|N|O|1995-10-16|1995-11-27|1995-10-27|COLLECT COD|REG AIR|usual, fina| +48873|849174|11691|2|38|42678.94|0.10|0.03|N|O|1995-11-03|1995-11-10|1995-12-03|NONE|MAIL|gular package| +48873|61162|23664|3|7|7862.12|0.02|0.06|N|O|1995-10-31|1995-12-12|1995-11-18|TAKE BACK RETURN|SHIP| slyly regular | +48873|935445|47964|4|32|47372.80|0.10|0.01|N|O|1995-12-04|1995-10-23|1995-12-06|COLLECT COD|FOB|odolites. requests nag. | +48873|15302|2803|5|42|51126.60|0.00|0.01|N|O|1995-12-17|1995-11-08|1995-12-30|NONE|AIR|ns use. blithely final packages al| +48873|167169|42176|6|4|4944.64|0.06|0.00|N|O|1995-10-05|1995-11-04|1995-10-29|DELIVER IN PERSON|FOB|express packages across| +48874|640748|15773|1|23|38840.33|0.07|0.04|N|O|1996-01-10|1996-02-06|1996-01-17|NONE|RAIL|eep blithely| +48874|38482|983|2|8|11363.84|0.01|0.07|N|O|1996-03-12|1996-01-29|1996-03-23|NONE|MAIL|ntegrate. silently busy packages dazzle som| +48874|751230|26261|3|26|33311.20|0.01|0.01|N|O|1996-01-26|1996-02-11|1996-02-13|TAKE BACK RETURN|REG AIR|theodolites. sl| +48874|916943|29462|4|43|84275.70|0.04|0.06|N|O|1996-03-10|1996-03-02|1996-03-16|NONE|RAIL|eposits sleep slyly accor| +48874|55048|17550|5|11|11033.44|0.06|0.08|N|O|1996-01-04|1996-01-31|1996-01-31|DELIVER IN PERSON|SHIP|losely regular foxe| +48874|178918|3925|6|28|55913.48|0.02|0.00|N|O|1995-12-17|1996-03-07|1996-01-04|COLLECT COD|FOB|ake. unusual, even deposits| +48875|688065|579|1|38|40015.14|0.10|0.06|N|O|1996-12-21|1996-12-01|1997-01-15|DELIVER IN PERSON|FOB| express, b| +48876|564955|2489|1|15|30298.95|0.03|0.05|R|F|1992-08-29|1992-09-12|1992-09-25|NONE|SHIP|d. blithely even deposits snooze. e| +48876|193397|30907|2|20|29807.80|0.00|0.03|A|F|1992-11-10|1992-10-31|1992-11-30|DELIVER IN PERSON|AIR|hely after the slyly b| +48876|406757|6758|3|33|54903.09|0.09|0.07|A|F|1992-10-28|1992-09-19|1992-11-20|COLLECT COD|FOB|lyly pending excuses. furiously reg| +48876|360526|35541|4|35|55527.85|0.01|0.05|A|F|1992-08-27|1992-09-19|1992-09-21|COLLECT COD|TRUCK|ach slyly after the furiously ir| +48877|328198|3211|1|11|13487.98|0.01|0.05|N|O|1997-05-29|1997-05-31|1997-06-09|COLLECT COD|TRUCK|es. blithely express fo| +48877|9903|22404|2|39|70703.10|0.05|0.07|N|O|1997-06-15|1997-06-09|1997-07-09|COLLECT COD|REG AIR| boost bli| +48877|426146|26147|3|35|37524.20|0.05|0.06|N|O|1997-05-20|1997-05-18|1997-06-15|DELIVER IN PERSON|RAIL|r platelets. slyly ironic pinto beans nag | +48877|231156|6165|4|8|8697.12|0.06|0.07|N|O|1997-04-01|1997-06-15|1997-04-21|TAKE BACK RETURN|TRUCK|s sleep carefully. blithely regu| +48877|32992|32993|5|20|38499.80|0.09|0.02|N|O|1997-06-03|1997-05-28|1997-06-05|NONE|MAIL|final excuses. deposits eat regu| +48878|429593|17118|1|46|70038.22|0.09|0.04|A|F|1993-07-29|1993-07-25|1993-08-21|NONE|REG AIR|y final, sp| +48878|166700|29204|2|10|17667.00|0.00|0.05|A|F|1993-09-01|1993-09-18|1993-09-02|COLLECT COD|SHIP|g to the sl| +48878|715803|40832|3|36|65475.72|0.04|0.04|R|F|1993-09-19|1993-08-02|1993-10-12|NONE|MAIL|uests. ironic platelets eat carefull| +48878|493649|43650|4|37|60776.94|0.10|0.06|R|F|1993-09-08|1993-08-23|1993-09-09|NONE|MAIL|y express accounts. slyly ir| +48879|568149|5683|1|10|12171.20|0.01|0.08|R|F|1992-09-30|1992-11-06|1992-10-27|TAKE BACK RETURN|FOB|de of the slyly pending accounts. slyly| +48879|877656|40174|2|35|57176.35|0.10|0.01|R|F|1993-01-19|1992-12-02|1993-02-09|COLLECT COD|FOB|quests haggle slyly ironic, regular| +48879|763049|38080|3|42|46704.42|0.03|0.01|A|F|1992-11-17|1992-11-17|1992-11-27|COLLECT COD|REG AIR|ar ideas use slyly. acc| +48879|552433|14945|4|8|11883.28|0.00|0.01|R|F|1992-10-03|1992-12-03|1992-10-05|COLLECT COD|SHIP|bold accounts.| +48879|737929|25472|5|12|23602.68|0.07|0.04|A|F|1992-11-29|1992-11-23|1992-12-01|COLLECT COD|AIR|ly unusual sauterne| +48904|545016|32547|1|15|15914.85|0.08|0.04|N|O|1997-07-30|1997-08-13|1997-08-14|COLLECT COD|REG AIR|bold requests. slyly ironic t| +48904|79707|29708|2|15|25300.50|0.04|0.03|N|O|1997-08-01|1997-09-03|1997-08-20|NONE|FOB|ng to the quickly even packages. so| +48904|626713|14250|3|45|73785.60|0.10|0.01|N|O|1997-09-24|1997-09-17|1997-09-27|NONE|SHIP|fully. furiousl| +48904|159116|21620|4|27|31727.97|0.02|0.04|N|O|1997-10-01|1997-09-20|1997-10-19|COLLECT COD|TRUCK|ng to the f| +48904|251343|26354|5|34|44007.22|0.09|0.06|N|O|1997-07-30|1997-09-06|1997-08-26|NONE|FOB|as. carefully| +48904|308620|8621|6|6|9771.66|0.04|0.08|N|O|1997-10-07|1997-08-22|1997-10-28|NONE|REG AIR| sly asymptotes affix quickly across the | +48904|961900|36939|7|33|64741.38|0.07|0.03|N|O|1997-10-21|1997-10-01|1997-11-17|NONE|REG AIR|instructions must | +48905|641122|41123|1|11|11693.99|0.10|0.01|A|F|1993-09-26|1993-08-30|1993-10-04|NONE|TRUCK|he always idle excuses. fur| +48905|333817|21336|2|38|70330.40|0.09|0.01|A|F|1993-07-27|1993-09-09|1993-07-29|DELIVER IN PERSON|TRUCK| the furiously unusual ideas. bold excuses | +48905|459568|9569|3|40|61101.60|0.06|0.00|A|F|1993-10-14|1993-10-19|1993-10-17|COLLECT COD|RAIL|kages; express ideas wake| +48905|947984|23021|4|8|16255.52|0.02|0.08|R|F|1993-07-26|1993-09-16|1993-08-10|DELIVER IN PERSON|SHIP|ously around| +48905|754914|4915|5|7|13782.16|0.07|0.03|R|F|1993-09-30|1993-09-01|1993-10-19|TAKE BACK RETURN|SHIP|ts haggle slyly deposits-- slyly even accou| +48905|825512|545|6|6|8624.82|0.09|0.07|R|F|1993-09-09|1993-10-12|1993-09-17|NONE|AIR|s. bold instructions wake. final a| +48905|369858|44873|7|16|30845.44|0.06|0.03|A|F|1993-08-10|1993-10-11|1993-08-16|TAKE BACK RETURN|AIR|boost carefully hock| +48906|201233|38746|1|35|39697.70|0.01|0.06|A|F|1994-11-13|1994-08-24|1994-11-25|NONE|TRUCK|y unusual instructions. quickly even | +48906|115004|2511|2|34|34646.00|0.08|0.05|R|F|1994-08-25|1994-09-22|1994-09-14|COLLECT COD|SHIP|luffily even theodolites s| +48906|858874|33909|3|22|40322.26|0.03|0.01|A|F|1994-07-18|1994-09-21|1994-08-14|TAKE BACK RETURN|FOB|regular, silent accounts was carefu| +48906|87861|25365|4|4|7395.44|0.05|0.06|R|F|1994-09-02|1994-09-05|1994-09-15|TAKE BACK RETURN|FOB|furiously final ideas | +48906|676018|38532|5|42|41747.16|0.05|0.02|A|F|1994-09-15|1994-08-23|1994-09-24|NONE|REG AIR|s detect. requests according | +48907|506361|31382|1|44|60162.96|0.05|0.05|A|F|1992-08-15|1992-07-26|1992-09-04|NONE|AIR|ts use furiously after th| +48908|608902|46439|1|22|39839.14|0.01|0.07|N|O|1995-07-30|1995-09-06|1995-08-17|DELIVER IN PERSON|RAIL| fluffily unusual packages! entic| +48908|810408|22925|2|22|29003.92|0.07|0.03|N|O|1995-09-12|1995-08-26|1995-09-21|COLLECT COD|MAIL|uests boost fluffily. pinto beans cajole| +48908|513244|13245|3|29|36459.38|0.10|0.07|N|O|1995-09-17|1995-08-17|1995-10-17|DELIVER IN PERSON|AIR|usly unusual platelets | +48908|86603|49105|4|12|19075.20|0.04|0.04|N|O|1995-09-28|1995-08-01|1995-10-17|COLLECT COD|TRUCK|sits. ironic, even packages cajole caref| +48908|525545|566|5|27|42404.04|0.03|0.05|N|O|1995-10-18|1995-08-08|1995-11-08|NONE|SHIP|usly after the e| +48909|494892|7402|1|6|11321.22|0.06|0.08|N|O|1998-04-06|1998-03-10|1998-04-18|TAKE BACK RETURN|RAIL| furiously ironic pac| +48910|434063|21588|1|18|17946.72|0.03|0.02|R|F|1994-11-10|1994-11-13|1994-11-28|NONE|REG AIR|wake among the slyly i| +48911|431490|19015|1|14|19900.58|0.03|0.01|N|O|1997-09-30|1997-10-10|1997-10-02|NONE|FOB| regular deposit| +48911|39581|14582|2|10|15205.80|0.00|0.08|N|O|1997-10-25|1997-10-03|1997-11-04|DELIVER IN PERSON|SHIP|al asymptotes ac| +48911|226478|13991|3|34|47751.64|0.01|0.04|N|O|1997-08-31|1997-09-27|1997-09-02|NONE|AIR| to cajole blith| +48911|412683|208|4|48|76591.68|0.00|0.07|N|O|1997-09-02|1997-09-07|1997-09-05|COLLECT COD|FOB|ly ruthless escapades b| +48936|720638|33153|1|47|77954.20|0.08|0.07|N|O|1995-10-31|1995-11-16|1995-11-15|DELIVER IN PERSON|TRUCK| about the pinto beans. re| +48936|758238|20754|2|31|40182.20|0.10|0.06|N|O|1995-12-24|1995-11-15|1996-01-14|COLLECT COD|MAIL|blithely e| +48936|696522|21549|3|14|21258.86|0.04|0.02|N|O|1995-12-19|1995-12-12|1996-01-13|NONE|TRUCK|ular reques| +48936|436459|48968|4|23|32094.89|0.06|0.01|N|O|1996-01-25|1995-11-17|1996-01-31|TAKE BACK RETURN|REG AIR|s sleep even de| +48936|565004|2538|5|42|44897.16|0.08|0.07|N|O|1996-01-26|1995-11-13|1996-02-19|COLLECT COD|MAIL|nal excuses. blithely ironic ideas subl| +48937|430567|30568|1|11|16472.94|0.09|0.01|N|O|1995-07-19|1995-08-03|1995-07-21|DELIVER IN PERSON|RAIL|l packages sublate | +48937|534964|22495|2|12|23987.28|0.00|0.08|N|O|1995-09-23|1995-08-11|1995-09-27|COLLECT COD|FOB|hely above the regular deposits. special pa| +48937|134370|34371|3|31|43535.47|0.08|0.00|N|O|1995-07-22|1995-07-18|1995-08-14|COLLECT COD|RAIL|t ideas. unusual braids wake. c| +48937|354621|17129|4|47|78753.67|0.01|0.00|N|O|1995-06-28|1995-08-07|1995-07-11|NONE|RAIL|carefully final instructions. multipli| +48938|854616|42168|1|13|20417.41|0.03|0.00|R|F|1992-05-13|1992-05-12|1992-05-29|TAKE BACK RETURN|REG AIR|ly ironic accounts wake carefully re| +48938|518133|43154|2|15|17266.65|0.03|0.00|A|F|1992-03-24|1992-04-19|1992-04-16|TAKE BACK RETURN|MAIL|ions wake carefully final accounts. | +48938|248626|11131|3|43|67708.23|0.02|0.00|R|F|1992-04-01|1992-04-16|1992-04-20|TAKE BACK RETURN|TRUCK|regular packages sleep furiously| +48938|642326|42327|4|20|25365.80|0.00|0.08|A|F|1992-06-23|1992-05-07|1992-06-26|NONE|MAIL|ajole slyly alongside of the doggedl| +48939|521276|46297|1|46|59673.50|0.05|0.01|N|O|1996-05-20|1996-06-23|1996-06-15|TAKE BACK RETURN|MAIL|carefully across the slyly pending re| +48939|79780|4783|2|25|43994.50|0.01|0.00|N|O|1996-06-15|1996-06-28|1996-06-17|COLLECT COD|MAIL|d foxes. requests n| +48939|853559|3560|3|43|65037.93|0.01|0.07|N|O|1996-06-20|1996-07-03|1996-07-02|COLLECT COD|MAIL|refully regular grouches. car| +48939|759710|47256|4|43|76096.24|0.07|0.04|N|O|1996-06-14|1996-06-18|1996-06-24|COLLECT COD|REG AIR|owly according| +48939|430439|30440|5|27|36974.07|0.01|0.06|N|O|1996-06-11|1996-05-27|1996-07-08|TAKE BACK RETURN|FOB|uses among the furiously express| +48939|386000|48508|6|20|21719.80|0.01|0.08|N|O|1996-06-20|1996-07-11|1996-06-21|TAKE BACK RETURN|SHIP|ect slyly blithely pending ideas. carefull| +48940|245253|45254|1|49|58713.76|0.02|0.08|N|O|1998-01-27|1998-03-02|1998-02-25|COLLECT COD|TRUCK|ests cajol| +48940|953766|28805|2|44|80067.68|0.06|0.04|N|O|1998-05-09|1998-03-27|1998-05-20|COLLECT COD|MAIL|blithely regular package| +48940|934855|34856|3|23|43465.63|0.01|0.07|N|O|1998-03-28|1998-03-07|1998-04-26|DELIVER IN PERSON|RAIL|inal foxes. furiously bold accounts in| +48941|666959|4499|1|1|1925.92|0.06|0.06|N|O|1996-03-05|1996-05-03|1996-03-15|COLLECT COD|RAIL| beans. fluffily bold | +48942|561830|36853|1|13|24593.53|0.00|0.03|N|O|1996-02-03|1996-01-14|1996-02-24|NONE|REG AIR|counts integr| +48943|841248|41249|1|45|53514.00|0.08|0.04|A|F|1992-07-17|1992-05-10|1992-08-13|NONE|AIR|ending depo| +48943|839100|1617|2|42|43640.52|0.08|0.04|A|F|1992-06-29|1992-06-04|1992-07-08|COLLECT COD|AIR|alongside of the slyly| +48943|740425|27968|3|40|58615.60|0.03|0.04|A|F|1992-06-20|1992-06-26|1992-06-28|DELIVER IN PERSON|RAIL|uses sleep. quickly final | +48968|937132|12169|1|23|26889.07|0.02|0.08|N|O|1998-03-17|1998-03-13|1998-03-31|COLLECT COD|MAIL|c packages. platelets ab| +48969|755692|18208|1|23|40196.18|0.04|0.07|A|F|1993-09-01|1993-07-13|1993-09-02|DELIVER IN PERSON|TRUCK|y unusual pinto beans across the blith| +48969|901066|13585|2|34|36278.68|0.10|0.07|R|F|1993-06-28|1993-06-22|1993-07-04|DELIVER IN PERSON|MAIL|posits. even accounts cajole slyly. brave,| +48969|210198|35207|3|4|4432.72|0.10|0.02|A|F|1993-07-13|1993-07-10|1993-07-27|COLLECT COD|FOB|ounts above the ironic requests| +48969|791051|41052|4|12|13704.24|0.01|0.01|A|F|1993-06-19|1993-06-17|1993-07-17|NONE|MAIL|ch slyly among th| +48969|183659|8666|5|42|73191.30|0.03|0.00|A|F|1993-08-31|1993-07-26|1993-09-07|NONE|FOB|, bold instructions a| +48970|351551|14059|1|36|57691.44|0.06|0.04|A|F|1992-03-16|1992-02-19|1992-04-13|DELIVER IN PERSON|SHIP|xpress acc| +48971|380264|5279|1|46|61835.50|0.00|0.05|R|F|1993-01-21|1993-01-19|1993-02-16|DELIVER IN PERSON|REG AIR|nt theodolites cajole carefully. regular,| +48971|93961|18964|2|49|95793.04|0.10|0.03|A|F|1992-12-30|1992-12-17|1993-01-10|TAKE BACK RETURN|FOB|ual accounts. fluffily fluffy depos| +48971|188448|952|3|1|1536.44|0.00|0.06|R|F|1993-03-14|1993-01-11|1993-04-01|COLLECT COD|TRUCK|y ironic de| +48971|240627|28140|4|50|78380.50|0.10|0.08|R|F|1992-11-16|1993-01-10|1992-11-29|DELIVER IN PERSON|AIR|ularly final foxes cajole| +48972|430502|18027|1|40|57299.20|0.04|0.06|N|O|1997-07-28|1997-06-26|1997-08-07|DELIVER IN PERSON|REG AIR|, ironic d| +48972|430601|30602|2|1|1531.58|0.07|0.05|N|O|1997-06-01|1997-05-26|1997-06-14|NONE|TRUCK|nic foxes alongside of the fluffily specia| +48972|100161|12664|3|31|35995.96|0.04|0.08|N|O|1997-06-07|1997-07-17|1997-07-07|TAKE BACK RETURN|SHIP|e blithely. blit| +48972|398817|48818|4|34|65137.20|0.05|0.07|N|O|1997-06-21|1997-06-09|1997-07-04|COLLECT COD|FOB|arefully regul| +48973|482911|7930|1|18|34090.02|0.04|0.03|N|O|1995-12-06|1995-11-25|1996-01-03|NONE|FOB|oxes; fluffily spe| +48973|275665|38171|2|21|34453.65|0.06|0.03|N|O|1996-01-08|1996-01-21|1996-02-06|COLLECT COD|TRUCK|against the theodolites. furiously f| +48973|91391|16394|3|49|67737.11|0.10|0.00|N|O|1996-02-21|1996-01-09|1996-03-22|NONE|RAIL|dencies wake special deposits. daringly | +48973|997166|34724|4|16|20209.92|0.08|0.07|N|O|1996-02-13|1996-01-11|1996-02-17|COLLECT COD|FOB|asymptotes ca| +48973|359192|34207|5|39|48796.02|0.05|0.07|N|O|1996-01-16|1996-01-16|1996-01-21|NONE|REG AIR| blithely regular packages. carefull| +48973|939873|2392|6|30|57384.90|0.03|0.02|N|O|1996-01-19|1996-01-20|1996-01-31|NONE|TRUCK|grouches are furiously pending | +48973|437444|12461|7|9|12432.78|0.06|0.00|N|O|1995-11-07|1995-12-18|1995-11-25|DELIVER IN PERSON|RAIL|ges. quickly unusual excuses kindl| +48974|119904|32407|1|15|28858.50|0.09|0.07|A|F|1993-05-27|1993-03-23|1993-06-07|DELIVER IN PERSON|SHIP|sual requests promise. fluf| +48974|215382|40391|2|5|6486.85|0.03|0.07|A|F|1993-04-01|1993-04-05|1993-04-18|COLLECT COD|AIR|nes cajole| +48974|918678|43715|3|25|42415.75|0.02|0.08|A|F|1993-04-26|1993-03-19|1993-05-16|TAKE BACK RETURN|AIR|are blithely along the carefull| +48974|212421|24926|4|29|38668.89|0.08|0.03|R|F|1993-04-05|1993-04-20|1993-04-26|COLLECT COD|AIR|unts haggle at the c| +48974|154779|42289|5|24|44010.48|0.04|0.00|A|F|1993-03-04|1993-03-29|1993-03-08|TAKE BACK RETURN|REG AIR|egular, regular packages. pend| +48975|634369|46882|1|44|57346.52|0.10|0.00|N|O|1998-05-06|1998-02-25|1998-05-12|DELIVER IN PERSON|AIR|atelets. blithely sil| +48975|829870|29871|2|6|10798.98|0.02|0.01|N|O|1998-05-12|1998-02-20|1998-06-05|NONE|AIR|lyly final accounts. bold | +48975|618734|6271|3|23|38012.10|0.04|0.01|N|O|1998-04-23|1998-03-30|1998-05-13|TAKE BACK RETURN|REG AIR|ironic packages haggle. car| +48975|61072|11073|4|47|48554.29|0.07|0.07|N|O|1998-05-12|1998-03-05|1998-06-07|TAKE BACK RETURN|SHIP|equests poach across | +49000|470027|45046|1|46|45862.00|0.05|0.02|R|F|1994-07-14|1994-06-26|1994-07-24|DELIVER IN PERSON|RAIL|dolphins snooze carefully | +49000|732659|20202|2|35|59206.70|0.05|0.00|R|F|1994-07-10|1994-05-06|1994-07-12|TAKE BACK RETURN|REG AIR|ding to the furiously slow| +49000|795459|7975|3|50|77721.00|0.07|0.08|A|F|1994-04-09|1994-06-26|1994-05-01|NONE|FOB|lly even request| +49000|279019|41525|4|41|40918.00|0.02|0.02|R|F|1994-06-17|1994-06-03|1994-07-09|COLLECT COD|SHIP|lar instructions alongs| +49000|470184|20185|5|15|17312.40|0.10|0.04|A|F|1994-06-05|1994-05-08|1994-06-08|COLLECT COD|FOB|. slyly unusual packages sleep above t| +49001|519260|19261|1|48|61403.52|0.01|0.02|A|F|1992-09-17|1992-08-29|1992-10-05|TAKE BACK RETURN|SHIP|inst the carefully special packages. pac| +49001|187289|24799|2|9|12386.52|0.04|0.08|A|F|1992-09-07|1992-08-06|1992-09-13|COLLECT COD|REG AIR|usly above th| +49001|753578|3579|3|35|57103.90|0.06|0.02|R|F|1992-07-31|1992-09-08|1992-08-02|NONE|MAIL|telets haggle carefully exp| +49001|376073|38581|4|48|55154.88|0.08|0.06|R|F|1992-09-22|1992-08-15|1992-10-02|NONE|RAIL| even instructions. fluffily fin| +49001|642988|5501|5|5|9654.75|0.03|0.06|A|F|1992-10-24|1992-09-17|1992-11-20|DELIVER IN PERSON|FOB| slyly acros| +49002|135460|10465|1|7|10468.22|0.02|0.08|N|O|1995-11-15|1995-11-15|1995-11-29|NONE|TRUCK|eas. ironic packages integrate. c| +49002|675267|37781|2|22|27329.06|0.03|0.00|N|O|1996-01-08|1995-12-03|1996-01-18|DELIVER IN PERSON|FOB|ously at the carefully ironic foxes.| +49002|205263|5264|3|49|57244.25|0.09|0.00|N|O|1995-12-10|1995-12-20|1995-12-17|NONE|MAIL|s boost fluffily final accoun| +49002|838760|26309|4|35|59455.20|0.06|0.03|N|O|1996-01-06|1995-12-18|1996-01-22|COLLECT COD|MAIL| accounts during the packages sleep reg| +49003|379142|29143|1|28|34191.64|0.09|0.01|A|F|1993-03-11|1993-03-25|1993-03-25|TAKE BACK RETURN|SHIP|inal theodolites was fluffily. fu| +49003|232802|7811|2|11|19082.69|0.02|0.01|R|F|1993-03-23|1993-03-07|1993-03-25|COLLECT COD|MAIL|accounts sleep about the final accounts. | +49003|695913|33453|3|48|91626.24|0.07|0.04|A|F|1993-02-13|1993-03-07|1993-02-27|DELIVER IN PERSON|MAIL|ts! furiously ironic packages wake sl| +49003|194403|6907|4|16|23958.40|0.03|0.05|R|F|1993-01-28|1993-04-10|1993-02-07|DELIVER IN PERSON|MAIL|. ironic pinto beans| +49003|323173|10692|5|23|27511.68|0.05|0.01|A|F|1993-03-30|1993-04-03|1993-04-23|NONE|REG AIR|edly final| +49003|554237|41771|6|26|33571.46|0.10|0.06|A|F|1993-03-09|1993-04-01|1993-04-02|DELIVER IN PERSON|AIR|ke fluffily accor| +49004|257655|7656|1|19|30640.16|0.04|0.06|R|F|1994-06-22|1994-05-31|1994-07-16|COLLECT COD|RAIL|gular esca| +49004|406184|31201|2|7|7631.12|0.10|0.03|A|F|1994-08-10|1994-06-19|1994-08-14|DELIVER IN PERSON|TRUCK|cross the quickl| +49004|726915|1944|3|18|34953.84|0.06|0.08|R|F|1994-06-18|1994-05-29|1994-07-14|NONE|SHIP|. excuses cajole daringly around t| +49005|425145|25146|1|11|11771.32|0.10|0.08|A|F|1992-07-08|1992-07-17|1992-07-15|COLLECT COD|MAIL|le after the| +49006|795759|45760|1|50|92736.00|0.07|0.07|A|F|1994-11-05|1994-12-25|1994-11-17|NONE|REG AIR|press accounts wake. unusual, regul| +49006|317229|4748|2|28|34893.88|0.00|0.03|R|F|1994-12-03|1994-12-27|1994-12-25|TAKE BACK RETURN|SHIP|sual instructions nag carefully| +49006|658225|8226|3|30|35495.70|0.10|0.08|R|F|1995-01-23|1994-11-15|1995-02-05|DELIVER IN PERSON|REG AIR|es nag slyly along the blithely | +49006|781952|31953|4|26|52881.92|0.00|0.05|A|F|1995-02-05|1994-11-21|1995-03-06|TAKE BACK RETURN|RAIL|c pinto beans. carefully regular ac| +49007|631177|6202|1|11|12189.54|0.09|0.00|N|O|1998-03-17|1998-03-26|1998-04-03|TAKE BACK RETURN|SHIP|gle blithely pending foxes. caref| +49032|932270|44789|1|3|3906.69|0.09|0.03|R|F|1993-05-30|1993-06-14|1993-06-20|NONE|RAIL|refully ironic accou| +49032|659397|9398|2|9|12207.24|0.10|0.04|R|F|1993-05-04|1993-05-17|1993-05-28|NONE|SHIP|thely ironic deposits haggle quickly | +49032|478779|28780|3|29|50974.75|0.08|0.04|A|F|1993-04-25|1993-07-13|1993-05-08|TAKE BACK RETURN|MAIL|r packages. bold deposits sleep furiousl| +49033|456998|44526|1|15|29324.55|0.06|0.07|N|O|1995-11-18|1995-10-28|1995-12-12|TAKE BACK RETURN|REG AIR|luffily even asymptotes. quic| +49033|754440|4441|2|12|17932.92|0.09|0.08|N|O|1995-10-03|1995-11-16|1995-10-05|COLLECT COD|REG AIR|onic braid| +49034|751057|26088|1|48|53184.96|0.00|0.06|N|O|1997-10-01|1997-08-14|1997-10-24|TAKE BACK RETURN|TRUCK|g foxes. slyly bold deposits according to t| +49034|8218|8219|2|43|48427.03|0.01|0.03|N|O|1997-10-18|1997-09-05|1997-10-27|COLLECT COD|RAIL|yly. slyly q| +49034|115320|2827|3|9|12017.88|0.04|0.04|N|O|1997-08-28|1997-08-13|1997-09-24|COLLECT COD|FOB|y pending theodo| +49034|171687|9197|4|42|73864.56|0.08|0.07|N|O|1997-09-09|1997-08-28|1997-09-28|DELIVER IN PERSON|AIR|tructions detect accounts. fin| +49034|542275|42276|5|20|26345.00|0.01|0.06|N|O|1997-08-06|1997-08-11|1997-08-26|DELIVER IN PERSON|TRUCK|longside of the ironic, final depos| +49034|14911|27412|6|21|38344.11|0.00|0.06|N|O|1997-07-25|1997-09-28|1997-08-11|COLLECT COD|TRUCK|packages according to | +49034|594060|19083|7|8|9232.32|0.01|0.03|N|O|1997-08-18|1997-09-08|1997-09-09|DELIVER IN PERSON|SHIP| dependencies a| +49035|351501|26516|1|36|55889.64|0.02|0.08|N|O|1995-07-14|1995-05-22|1995-07-18|COLLECT COD|SHIP|blithely. deposits about the pinto b| +49035|665612|3152|2|26|41017.08|0.08|0.01|N|F|1995-05-29|1995-07-11|1995-06-27|DELIVER IN PERSON|AIR|refully pending platel| +49035|928133|3170|3|30|34832.70|0.08|0.05|N|O|1995-07-16|1995-06-28|1995-08-08|COLLECT COD|REG AIR|e the ideas| +49035|129847|17354|4|43|80704.12|0.00|0.00|R|F|1995-06-12|1995-05-29|1995-06-17|COLLECT COD|REG AIR|l excuses. quic| +49035|321999|47012|5|50|101049.00|0.06|0.01|N|O|1995-07-10|1995-06-05|1995-07-26|DELIVER IN PERSON|MAIL|y bold package| +49035|834362|34363|6|29|37593.28|0.07|0.02|R|F|1995-05-19|1995-07-07|1995-06-03|COLLECT COD|RAIL|y. fluffily regular dependencies solve. | +49036|439875|27400|1|3|5444.55|0.01|0.00|R|F|1993-01-27|1993-01-02|1993-02-21|TAKE BACK RETURN|SHIP|ounts. furiously express dependencie| +49036|969630|7188|2|38|64584.42|0.06|0.02|R|F|1992-11-18|1992-11-24|1992-12-10|TAKE BACK RETURN|MAIL|unts. always regular packages ru| +49036|569058|6592|3|14|15778.42|0.01|0.01|R|F|1992-12-21|1992-11-28|1992-12-30|DELIVER IN PERSON|TRUCK|ully about the furiously bo| +49036|142270|17275|4|30|39368.10|0.02|0.07|R|F|1992-11-07|1992-11-18|1992-11-23|DELIVER IN PERSON|TRUCK|unts cajole blithely across the caref| +49037|841337|28886|1|24|30678.96|0.06|0.01|A|F|1993-03-24|1993-02-25|1993-03-29|TAKE BACK RETURN|FOB| sleep. ca| +49037|345198|20211|2|44|54699.92|0.02|0.08|A|F|1993-03-09|1993-02-22|1993-04-06|DELIVER IN PERSON|MAIL|tions. furiously special requ| +49037|740838|40839|3|22|41333.60|0.02|0.04|A|F|1993-02-14|1993-02-27|1993-03-05|NONE|RAIL|long the silently ironic packa| +49037|254405|29416|4|50|67969.50|0.07|0.01|R|F|1993-04-12|1993-04-06|1993-04-18|NONE|TRUCK|ress deposits. carefully regular acc| +49038|156032|18536|1|12|13056.36|0.09|0.04|N|O|1998-04-20|1998-03-10|1998-04-29|TAKE BACK RETURN|TRUCK|press instructions detect never furiou| +49038|420680|33189|2|3|4801.98|0.05|0.06|N|O|1998-03-01|1998-04-12|1998-03-17|DELIVER IN PERSON|TRUCK|s. carefully unusual | +49038|362072|24580|3|30|34021.80|0.00|0.05|N|O|1998-04-12|1998-03-23|1998-04-29|NONE|TRUCK|nusual requests use| +49038|334501|34502|4|36|55277.64|0.03|0.05|N|O|1998-04-17|1998-03-19|1998-05-16|NONE|AIR|special foxes are | +49038|954250|4251|5|23|29996.83|0.01|0.04|N|O|1998-02-10|1998-03-05|1998-03-09|COLLECT COD|MAIL| beans cajole carefull| +49038|75883|13387|6|25|46472.00|0.00|0.01|N|O|1998-04-11|1998-03-08|1998-04-12|COLLECT COD|REG AIR| the furiously even foxes. care| +49039|778069|40585|1|47|53910.41|0.08|0.04|A|F|1992-05-31|1992-06-30|1992-06-04|DELIVER IN PERSON|AIR|ts sleep around the quickly regular| +49039|4652|42153|2|16|24906.40|0.05|0.02|A|F|1992-07-31|1992-06-16|1992-08-30|NONE|MAIL|ccounts. carefully reg| +49039|185703|23213|3|39|69759.30|0.07|0.00|A|F|1992-04-16|1992-06-12|1992-05-16|NONE|REG AIR|the pending deposits cajole furiou| +49039|107373|44880|4|24|33128.88|0.09|0.08|R|F|1992-08-05|1992-05-18|1992-08-06|DELIVER IN PERSON|REG AIR| alongside of the even| +49039|614915|14916|5|40|73195.20|0.08|0.00|A|F|1992-08-02|1992-05-09|1992-08-06|DELIVER IN PERSON|SHIP|y. accounts are carefully ironic| +49039|870670|20671|6|8|13125.04|0.02|0.04|A|F|1992-07-29|1992-05-27|1992-08-10|COLLECT COD|MAIL|hely carefully even accounts. fluffi| +49064|934990|47509|1|13|26324.35|0.08|0.07|R|F|1995-03-08|1995-02-10|1995-03-23|DELIVER IN PERSON|SHIP| requests cajole quickly furiously regul| +49064|362545|67|2|17|27328.01|0.06|0.02|R|F|1995-01-04|1995-03-21|1995-02-03|TAKE BACK RETURN|RAIL|ily final pac| +49064|281780|19296|3|47|82803.19|0.04|0.04|R|F|1995-03-18|1995-03-11|1995-04-17|TAKE BACK RETURN|MAIL|nic foxes. carefully ir| +49064|869682|32200|4|25|41291.00|0.00|0.02|R|F|1995-03-15|1995-02-28|1995-04-02|COLLECT COD|MAIL|uickly among the theodolites. slyly even | +49064|744701|44702|5|32|55861.44|0.05|0.03|R|F|1995-01-01|1995-02-15|1995-01-09|TAKE BACK RETURN|MAIL|nstructions wake| +49064|176697|26698|6|19|33700.11|0.10|0.06|A|F|1995-02-23|1995-03-02|1995-03-22|DELIVER IN PERSON|REG AIR|ites are furiously q| +49064|736532|36533|7|20|31370.00|0.05|0.00|A|F|1995-01-13|1995-02-18|1995-02-04|DELIVER IN PERSON|REG AIR|sly regular foxes | +49065|891450|41451|1|38|54773.58|0.07|0.01|R|F|1994-05-27|1994-05-21|1994-06-02|TAKE BACK RETURN|RAIL|inal deposits| +49066|292289|29805|1|12|15375.24|0.01|0.07|A|F|1995-06-01|1995-04-13|1995-06-11|TAKE BACK RETURN|TRUCK| cajole carefully. sly asym| +49066|496843|9353|2|26|47835.32|0.03|0.05|A|F|1995-05-27|1995-04-27|1995-05-31|NONE|TRUCK|ngside of the blithe| +49066|433527|46036|3|48|70104.00|0.04|0.08|R|F|1995-04-29|1995-03-25|1995-05-03|COLLECT COD|TRUCK|silent requests against the q| +49066|276323|13839|4|37|48074.47|0.10|0.03|R|F|1995-05-04|1995-04-12|1995-05-12|TAKE BACK RETURN|REG AIR|ular instr| +49066|147609|35116|5|17|28162.20|0.04|0.05|R|F|1995-04-30|1995-03-20|1995-05-28|NONE|AIR|kly ironic d| +49067|477440|27441|1|49|69453.58|0.00|0.01|N|O|1997-06-16|1997-06-28|1997-06-20|DELIVER IN PERSON|AIR| requests at the fluffily final | +49067|320530|20531|2|19|29459.88|0.06|0.00|N|O|1997-07-09|1997-07-17|1997-07-23|DELIVER IN PERSON|AIR|uests. unusual deposits about t| +49067|134919|9924|3|48|93787.68|0.08|0.06|N|O|1997-06-09|1997-06-17|1997-06-12|DELIVER IN PERSON|AIR| use quickly. ironic | +49067|580173|30174|4|43|53885.45|0.03|0.05|N|O|1997-05-23|1997-07-29|1997-06-11|NONE|FOB|y bold deposits a| +49067|957821|20341|5|45|84545.10|0.06|0.05|N|O|1997-06-19|1997-07-07|1997-06-27|NONE|TRUCK|integrate fluffily. slyly sp| +49067|93390|43391|6|20|27667.80|0.06|0.01|N|O|1997-05-20|1997-07-08|1997-06-16|NONE|REG AIR| bold pinto beans.| +49068|153198|3199|1|43|53801.17|0.04|0.04|A|F|1994-11-10|1994-12-08|1994-11-23|TAKE BACK RETURN|RAIL|ans among the bold foxes hang fl| +49068|789874|2390|2|22|43204.48|0.09|0.05|R|F|1994-11-28|1994-11-10|1994-12-17|COLLECT COD|REG AIR| ideas. silent ideas haggle | +49068|407238|32255|3|11|12597.31|0.05|0.06|R|F|1994-09-24|1994-11-03|1994-10-12|NONE|AIR|its! blithely express p| +49068|435547|10564|4|15|22237.80|0.08|0.05|A|F|1994-10-29|1994-11-16|1994-11-28|DELIVER IN PERSON|SHIP|eodolites against the daringly fin| +49068|229022|41527|5|49|46599.49|0.00|0.06|R|F|1994-11-09|1994-10-30|1994-11-10|COLLECT COD|RAIL|refully about the p| +49069|113510|26013|1|15|22852.65|0.05|0.08|N|O|1995-12-15|1995-12-09|1996-01-03|TAKE BACK RETURN|MAIL|unts. silent, final ideas cajole| +49069|748540|23569|2|41|65128.91|0.01|0.05|N|O|1996-01-08|1995-11-30|1996-01-22|DELIVER IN PERSON|AIR|riously ideas. blithe| +49069|696862|46863|3|10|18588.30|0.08|0.08|N|O|1995-11-06|1995-11-26|1995-11-11|DELIVER IN PERSON|MAIL|ngly pending forges sleep blith| +49069|158944|33951|4|21|42061.74|0.00|0.00|N|O|1995-12-28|1995-12-21|1995-12-31|DELIVER IN PERSON|RAIL|quickly above the regular instruc| +49069|364939|27447|5|36|72141.12|0.07|0.06|N|O|1996-01-17|1995-11-19|1996-02-15|DELIVER IN PERSON|REG AIR|ly special accounts at the fin| +49069|514664|14665|6|39|65466.96|0.01|0.08|N|O|1995-12-12|1995-10-30|1995-12-18|COLLECT COD|MAIL|he ironic pack| +49069|941048|16085|7|9|9801.00|0.07|0.04|N|O|1996-01-16|1995-12-10|1996-02-06|TAKE BACK RETURN|REG AIR|always even packages haggle ab| +49070|179218|29219|1|47|60968.87|0.01|0.03|R|F|1992-03-23|1992-04-30|1992-04-06|COLLECT COD|MAIL|blithely final ideas are slyly even in| +49070|112824|12825|2|10|18368.20|0.08|0.03|R|F|1992-04-08|1992-04-21|1992-04-29|TAKE BACK RETURN|RAIL| slyly pendi| +49071|717544|17545|1|35|54652.85|0.04|0.07|A|F|1992-11-19|1992-09-08|1992-11-21|COLLECT COD|AIR|refully bold accounts cajole furiously spec| +49071|759903|47449|2|49|96180.63|0.04|0.06|A|F|1992-09-19|1992-10-15|1992-10-10|COLLECT COD|AIR|y pending dependencies. slyly specia| +49071|684401|21941|3|47|65112.39|0.02|0.03|R|F|1992-07-28|1992-09-27|1992-08-22|DELIVER IN PERSON|TRUCK|he packages. quickly pendin| +49096|376795|14317|1|40|74871.20|0.07|0.05|N|O|1996-03-12|1996-01-15|1996-03-24|COLLECT COD|RAIL| the deposits. furi| +49096|787009|12040|2|13|14247.61|0.04|0.07|N|O|1996-03-23|1996-02-22|1996-04-17|NONE|FOB|ending deposits after the slyly reg| +49096|248363|35876|3|40|52454.00|0.08|0.07|N|O|1996-02-10|1996-03-03|1996-03-11|COLLECT COD|FOB|otes run slyly slyly even | +49097|28848|3849|1|37|65743.08|0.07|0.05|N|O|1996-02-11|1996-02-12|1996-02-16|TAKE BACK RETURN|AIR|. slyly brave a| +49097|842590|17623|2|8|12260.40|0.05|0.01|N|O|1996-02-18|1996-03-17|1996-03-19|NONE|AIR|pecial, ironic grouches nag | +49097|401708|39233|3|4|6438.72|0.08|0.04|N|O|1996-04-04|1996-03-07|1996-04-07|NONE|REG AIR|g the quickly ironic depos| +49097|503712|41243|4|34|58333.46|0.10|0.07|N|O|1996-04-08|1996-02-03|1996-04-27|NONE|FOB|ronic sheaves cajole blithely against the | +49098|46866|21867|1|30|54385.80|0.10|0.07|R|F|1994-08-05|1994-05-16|1994-08-16|COLLECT COD|REG AIR|slyly entici| +49098|673039|23040|2|38|38456.00|0.01|0.07|A|F|1994-06-22|1994-06-10|1994-07-01|COLLECT COD|SHIP|lly final requests nag blithely along th| +49098|750231|232|3|48|61497.60|0.02|0.06|A|F|1994-08-07|1994-06-01|1994-08-30|NONE|RAIL|refully final instructions. pending account| +49098|132230|19737|4|47|59324.81|0.09|0.01|R|F|1994-05-15|1994-05-22|1994-06-06|COLLECT COD|RAIL|ves. even requests are blithely. carefully | +49099|891091|16126|1|9|9738.45|0.06|0.04|N|O|1995-06-19|1995-06-17|1995-07-08|DELIVER IN PERSON|REG AIR|osits. furiously busy packages thrash s| +49100|514429|26940|1|24|34641.60|0.01|0.00|R|F|1993-12-05|1994-01-27|1993-12-26|NONE|TRUCK|ructions need | +49100|997371|47372|2|15|22024.95|0.10|0.07|R|F|1994-02-27|1994-01-12|1994-03-15|COLLECT COD|AIR|he quickly regul| +49100|813924|26441|3|46|84542.48|0.06|0.00|A|F|1994-02-12|1994-02-01|1994-03-12|NONE|AIR|instructions. blithely special p| +49100|613391|38416|4|14|18261.04|0.09|0.03|R|F|1993-12-31|1994-02-17|1994-01-28|DELIVER IN PERSON|SHIP|fluffily with the regular, express accou| +49101|320625|33132|1|4|6582.44|0.06|0.00|N|O|1997-05-14|1997-05-29|1997-05-23|TAKE BACK RETURN|MAIL|regular ideas are even accounts: | +49101|741000|41001|2|4|4163.88|0.06|0.06|N|O|1997-07-22|1997-06-13|1997-08-08|COLLECT COD|TRUCK|s. furiously regular instructions ar| +49101|975829|38349|3|38|72381.64|0.06|0.01|N|O|1997-07-09|1997-05-11|1997-07-26|COLLECT COD|RAIL|express in| +49101|748410|10925|4|42|61251.96|0.06|0.02|N|O|1997-05-02|1997-06-06|1997-05-06|COLLECT COD|RAIL|ven ideas against | +49101|521562|46583|5|10|15835.40|0.10|0.04|N|O|1997-07-05|1997-06-11|1997-07-24|COLLECT COD|MAIL|olites haggle. furiously regular excu| +49101|888419|937|6|20|28147.40|0.09|0.06|N|O|1997-06-14|1997-06-09|1997-07-08|COLLECT COD|MAIL|ly across th| +49102|3746|41247|1|47|77537.78|0.06|0.04|R|F|1992-03-19|1992-03-01|1992-03-23|NONE|AIR|l ideas grow near the carefu| +49102|951245|26284|2|38|49255.60|0.09|0.06|R|F|1992-01-21|1992-03-18|1992-02-16|TAKE BACK RETURN|FOB|inder along the slyly final the| +49102|568174|30686|3|27|33538.05|0.04|0.02|A|F|1992-01-31|1992-02-17|1992-02-13|DELIVER IN PERSON|MAIL|structions wake agai| +49102|296970|21981|4|31|60975.76|0.10|0.04|R|F|1992-04-23|1992-02-28|1992-04-30|NONE|RAIL|deposits eat after the requests. carefull| +49102|163124|38131|5|35|41549.20|0.01|0.01|A|F|1992-03-23|1992-03-15|1992-03-27|DELIVER IN PERSON|TRUCK|hely express accounts above the b| +49103|429629|17154|1|26|40523.60|0.00|0.00|N|O|1997-10-04|1997-12-19|1997-10-21|DELIVER IN PERSON|TRUCK|gle deposits-- quickly ironic | +49128|79586|42088|1|22|34442.76|0.09|0.05|N|O|1996-05-17|1996-06-24|1996-06-02|TAKE BACK RETURN|MAIL|iously final | +49128|592248|42249|2|40|53608.80|0.07|0.04|N|O|1996-07-29|1996-06-19|1996-08-28|COLLECT COD|RAIL|y unusual packages. furious accounts ca| +49128|911088|36125|3|30|32971.20|0.00|0.05|N|O|1996-05-01|1996-05-23|1996-05-19|TAKE BACK RETURN|MAIL|ly ironic requests | +49129|85832|48334|1|49|89073.67|0.07|0.04|N|O|1997-08-10|1997-08-05|1997-08-31|TAKE BACK RETURN|AIR|ccounts. blithely ironic | +49129|576418|38930|2|23|34370.97|0.09|0.08|N|O|1997-09-22|1997-07-31|1997-10-01|DELIVER IN PERSON|REG AIR| packages cajole pending, p| +49129|847287|34836|3|10|12342.40|0.09|0.05|N|O|1997-07-30|1997-09-26|1997-08-17|NONE|MAIL|equests. furiousl| +49129|336614|36615|4|41|67674.60|0.00|0.08|N|O|1997-10-28|1997-08-09|1997-10-31|NONE|SHIP|ons haggle bli| +49130|94872|7374|1|18|33603.66|0.00|0.07|A|F|1993-02-14|1992-11-30|1993-02-20|COLLECT COD|RAIL|old instructions try to wake| +49130|506844|31865|2|20|37016.40|0.10|0.03|R|F|1993-01-13|1992-12-12|1993-01-14|COLLECT COD|REG AIR|express depos| +49131|917025|42062|1|47|48973.06|0.00|0.07|N|O|1995-10-11|1995-10-19|1995-11-08|NONE|AIR|olites. pending depo| +49131|433193|45702|2|39|43920.63|0.06|0.05|N|O|1995-11-05|1995-10-22|1995-11-25|COLLECT COD|FOB|nd the carefully special pinto beans. pend| +49131|668033|5573|3|46|46046.00|0.06|0.01|N|O|1995-11-12|1995-10-16|1995-12-08|COLLECT COD|AIR|ial excuses. quickly bol| +49131|615541|15542|4|9|13108.59|0.06|0.07|N|O|1995-11-19|1995-10-26|1995-12-13|COLLECT COD|REG AIR|into beans. quic| +49131|389796|14811|5|46|86745.88|0.04|0.00|N|O|1995-12-11|1995-10-30|1996-01-08|TAKE BACK RETURN|REG AIR|e quickly. furiously express| +49131|291209|3715|6|6|7201.14|0.08|0.02|N|O|1995-11-12|1995-10-21|1995-11-28|DELIVER IN PERSON|MAIL|le. epitaphs nod furiou| +49132|576158|38670|1|35|43194.55|0.05|0.01|N|O|1997-04-15|1997-04-04|1997-05-11|NONE|MAIL|ronic, regular re| +49132|480431|42941|2|20|28228.20|0.01|0.07|N|O|1997-05-25|1997-05-04|1997-06-01|NONE|MAIL|y unusual pa| +49132|591577|41578|3|10|16685.50|0.10|0.05|N|O|1997-05-20|1997-05-26|1997-06-01|TAKE BACK RETURN|SHIP|. silent, regular packages hagg| +49132|625659|13196|4|31|49123.22|0.03|0.04|N|O|1997-07-04|1997-05-20|1997-08-02|COLLECT COD|RAIL|lose blithely final requests. closely | +49132|445780|20797|5|26|44869.76|0.03|0.01|N|O|1997-04-22|1997-04-26|1997-05-13|TAKE BACK RETURN|FOB|he quickly | +49132|222354|22355|6|33|42119.22|0.03|0.01|N|O|1997-06-01|1997-04-16|1997-06-09|TAKE BACK RETURN|AIR|sly stealthy foxe| +49132|94554|7056|7|2|3097.10|0.06|0.08|N|O|1997-03-25|1997-04-12|1997-04-19|COLLECT COD|RAIL|accounts. fluffily regular| +49133|163469|25973|1|32|49038.72|0.09|0.05|N|O|1996-11-24|1996-11-13|1996-12-13|TAKE BACK RETURN|TRUCK|ic asymptotes sleep. carefully expr| +49133|413127|38144|2|26|27042.60|0.03|0.00|N|O|1996-10-15|1996-12-02|1996-11-10|DELIVER IN PERSON|REG AIR|t accounts bo| +49133|415952|28461|3|45|84056.85|0.07|0.08|N|O|1996-12-25|1996-12-23|1997-01-23|DELIVER IN PERSON|RAIL|ly pending excuses poach a| +49133|897180|9698|4|16|18834.24|0.05|0.07|N|O|1997-01-25|1996-11-14|1997-02-24|TAKE BACK RETURN|SHIP|e the regular accounts. fluffily eve| +49133|901808|39363|5|5|9048.80|0.08|0.06|N|O|1996-11-19|1996-12-25|1996-11-29|DELIVER IN PERSON|SHIP|tly ironic dugouts among the carefully | +49133|671844|9384|6|22|39947.82|0.05|0.02|N|O|1997-01-30|1996-11-16|1997-02-28|TAKE BACK RETURN|TRUCK|efully blithe accounts. furiously| +49134|336398|11411|1|33|47334.54|0.02|0.00|N|O|1997-12-04|1997-12-21|1997-12-21|NONE|FOB|l accounts use blithely pending re| +49134|839912|27461|2|50|92593.50|0.07|0.04|N|O|1997-11-02|1997-12-07|1997-11-11|DELIVER IN PERSON|SHIP|intain slyly| +49134|387766|25288|3|3|5561.25|0.02|0.05|N|O|1997-11-28|1997-11-29|1997-12-19|TAKE BACK RETURN|SHIP|ter the furiousl| +49134|181410|31411|4|39|58164.99|0.00|0.06|N|O|1997-12-29|1998-01-02|1998-01-08|NONE|FOB|ackages wake quickly at the furiously r| +49134|957343|19863|5|27|37808.10|0.05|0.08|N|O|1997-12-20|1998-01-21|1998-01-07|NONE|REG AIR|ole evenly specia| +49135|83720|33721|1|46|78371.12|0.09|0.04|N|O|1997-09-10|1997-07-02|1997-09-17|DELIVER IN PERSON|MAIL| blithely behind the| +49135|81579|31580|2|32|49938.24|0.01|0.00|N|O|1997-07-06|1997-08-10|1997-07-11|DELIVER IN PERSON|REG AIR|l requests. unusual as| +49135|95174|7676|3|31|36244.27|0.08|0.05|N|O|1997-08-07|1997-08-22|1997-08-09|COLLECT COD|MAIL|luffily ironic pack| +49160|211490|11491|1|46|64468.08|0.02|0.02|N|O|1997-02-18|1997-03-10|1997-02-24|DELIVER IN PERSON|RAIL|ntegrate furiously packages. unusu| +49160|502808|27829|2|34|61566.52|0.05|0.01|N|O|1997-03-08|1997-02-23|1997-03-20|TAKE BACK RETURN|SHIP| final foxes. furiously regula| +49161|439015|14032|1|30|28619.70|0.01|0.01|N|O|1995-12-29|1996-02-23|1996-01-24|TAKE BACK RETURN|AIR|y blithely specia| +49161|521315|46336|2|15|20044.35|0.03|0.05|N|O|1996-02-03|1996-03-09|1996-02-11|DELIVER IN PERSON|FOB|ular deposi| +49161|737602|25145|3|47|77059.79|0.05|0.05|N|O|1996-04-19|1996-01-27|1996-05-05|COLLECT COD|SHIP| pending cour| +49161|867728|5280|4|22|37304.96|0.04|0.08|N|O|1996-01-10|1996-03-25|1996-01-13|COLLECT COD|AIR|ges. furiously final p| +49162|446031|46032|1|40|39080.40|0.06|0.05|R|F|1993-03-14|1993-02-24|1993-03-30|DELIVER IN PERSON|MAIL|l deposits wak| +49163|340782|3289|1|14|25518.78|0.10|0.07|R|F|1992-12-05|1993-02-01|1992-12-07|COLLECT COD|MAIL| even dependenc| +49163|521993|21994|2|39|78583.83|0.10|0.02|R|F|1993-01-19|1993-01-07|1993-01-22|COLLECT COD|MAIL| pending packages may cajole slyly. unusual| +49164|998221|35779|1|30|39575.40|0.01|0.05|N|O|1996-01-05|1995-12-24|1996-01-23|NONE|MAIL|o the requests use | +49164|92955|42956|2|11|21427.45|0.00|0.07|N|O|1996-01-15|1995-12-07|1996-01-26|TAKE BACK RETURN|MAIL|ns wake. pending requests grow slyly re| +49164|282489|32490|3|27|39729.69|0.06|0.02|N|O|1996-01-18|1996-01-02|1996-02-13|TAKE BACK RETURN|FOB|ously whithout the blit| +49164|781401|6432|4|6|8894.22|0.06|0.03|N|O|1995-11-10|1995-12-20|1995-11-25|TAKE BACK RETURN|AIR|eposits sleep ab| +49165|561257|23769|1|30|39546.90|0.01|0.00|N|O|1997-04-22|1997-02-12|1997-04-23|DELIVER IN PERSON|SHIP|ages affix fluffily carefully pendi| +49166|971744|46783|1|31|56286.70|0.00|0.01|A|F|1992-08-19|1992-07-28|1992-09-10|NONE|REG AIR| furiously regular packages. carefully i| +49166|91695|16698|2|13|21926.97|0.04|0.03|A|F|1992-07-26|1992-06-20|1992-08-07|COLLECT COD|SHIP|sts. furiously ex| +49166|116605|29108|3|43|69728.80|0.00|0.05|A|F|1992-07-14|1992-08-02|1992-08-09|TAKE BACK RETURN|MAIL|ctions. caref| +49167|331057|6070|1|34|36993.36|0.10|0.00|N|O|1998-03-28|1998-04-20|1998-04-09|NONE|REG AIR|refully bold requests about the c| +49167|72349|22350|2|8|10570.72|0.03|0.08|N|O|1998-05-26|1998-03-04|1998-06-25|NONE|AIR|osely regular pinto beans cajole | +49167|953072|40630|3|32|36000.96|0.10|0.02|N|O|1998-04-09|1998-04-01|1998-04-28|NONE|FOB|ilent deposits lose according to the | +49167|274840|24841|4|38|68963.54|0.04|0.06|N|O|1998-05-05|1998-03-30|1998-05-29|NONE|MAIL| permanently about the blithely express| +49167|230296|30297|5|36|44146.08|0.06|0.02|N|O|1998-01-28|1998-03-29|1998-02-16|DELIVER IN PERSON|MAIL|o beans; requests integrate furiousl| +49167|577492|40004|6|8|12555.76|0.09|0.06|N|O|1998-03-10|1998-03-08|1998-03-24|NONE|RAIL|uickly ironic hockey players ab| +49167|907581|45136|7|50|79427.00|0.06|0.07|N|O|1998-03-06|1998-03-20|1998-03-09|DELIVER IN PERSON|RAIL|onic accounts snooze quickly among the sly| +49192|698827|11341|1|39|71205.81|0.02|0.06|N|O|1995-08-11|1995-08-02|1995-08-13|NONE|SHIP|d to use quickly| +49192|169677|44684|2|4|6986.68|0.05|0.05|N|O|1995-07-13|1995-08-08|1995-08-06|TAKE BACK RETURN|MAIL|urts sleep thinl| +49192|760019|22535|3|38|41001.24|0.10|0.04|N|O|1995-08-12|1995-08-06|1995-09-09|NONE|SHIP| unusual, pending ideas. fu| +49192|624675|49700|4|3|4798.92|0.01|0.03|N|O|1995-07-27|1995-06-30|1995-08-05|COLLECT COD|MAIL|olites across the permanently regular epita| +49192|911386|11387|5|11|15370.74|0.08|0.00|N|F|1995-06-09|1995-08-05|1995-07-02|NONE|FOB|uriously about the ironic, ironic foxes.| +49192|651158|26185|6|50|55456.00|0.00|0.01|N|O|1995-06-23|1995-07-26|1995-07-07|TAKE BACK RETURN|MAIL|deposits along the qu| +49193|44961|44962|1|23|43837.08|0.02|0.01|N|O|1997-09-01|1997-10-04|1997-09-22|TAKE BACK RETURN|MAIL| among the requests. slyly unusual in| +49193|643474|43475|2|25|35436.00|0.06|0.05|N|O|1997-10-04|1997-08-24|1997-10-12|DELIVER IN PERSON|RAIL|l theodolites nag carefully carefull| +49193|853038|28073|3|8|7927.92|0.04|0.04|N|O|1997-09-03|1997-10-08|1997-09-09|NONE|TRUCK|y bold accounts dazzle fluff| +49193|994646|7166|4|2|3481.20|0.00|0.07|N|O|1997-11-07|1997-08-24|1997-11-14|NONE|AIR|y silent notornis. blithely s| +49193|999986|12506|5|25|52148.50|0.04|0.01|N|O|1997-09-27|1997-09-13|1997-10-21|DELIVER IN PERSON|FOB|ound the unusual, even| +49193|761461|49007|6|50|76121.50|0.00|0.04|N|O|1997-10-21|1997-09-25|1997-10-26|COLLECT COD|REG AIR|mong the furiously pending ide| +49194|905385|30422|1|50|69517.00|0.08|0.07|R|F|1995-04-19|1995-02-13|1995-05-17|COLLECT COD|MAIL|l, regular account| +49194|802630|27663|2|34|52108.06|0.04|0.06|A|F|1995-02-21|1995-04-07|1995-03-21|NONE|AIR|y. thinly bold requ| +49194|787371|12402|3|32|46666.88|0.04|0.05|R|F|1995-04-15|1995-03-19|1995-04-22|DELIVER IN PERSON|RAIL|ly regular, r| +49194|342960|5467|4|7|14020.65|0.01|0.08|A|F|1995-01-17|1995-02-23|1995-02-09|DELIVER IN PERSON|TRUCK|yly to the slyly pending dependencies| +49194|127143|14650|5|22|25743.08|0.08|0.08|R|F|1995-02-25|1995-04-06|1995-03-19|TAKE BACK RETURN|RAIL|structions alongside of | +49194|882295|44813|6|23|29376.75|0.05|0.05|A|F|1995-02-07|1995-04-09|1995-02-09|COLLECT COD|SHIP|ckages. carefully regular pac| +49194|724847|12390|7|44|82359.64|0.08|0.04|A|F|1995-03-04|1995-03-08|1995-03-22|TAKE BACK RETURN|FOB| the final plate| +49195|495225|32753|1|8|9761.60|0.08|0.04|N|O|1997-10-27|1997-09-20|1997-11-04|TAKE BACK RETURN|TRUCK|elets. idle, final pinto beans agains| +49196|37923|12924|1|15|27913.80|0.10|0.05|R|F|1992-12-28|1993-01-09|1993-01-13|DELIVER IN PERSON|TRUCK|g to the pinto beans. fluffily final theo| +49196|366983|4505|2|6|12299.82|0.05|0.01|A|F|1993-02-04|1993-02-12|1993-02-06|COLLECT COD|MAIL| after the c| +49196|874381|49416|3|32|43370.88|0.07|0.01|R|F|1992-12-08|1993-02-03|1992-12-29|DELIVER IN PERSON|FOB|e alongsid| +49197|226078|13591|1|34|34138.04|0.00|0.00|N|O|1995-11-12|1995-12-15|1995-11-22|NONE|TRUCK| detect furiously care| +49197|679345|29346|2|8|10594.48|0.04|0.07|N|O|1995-11-23|1996-01-04|1995-12-12|TAKE BACK RETURN|FOB|refully bold a| +49198|331408|18927|1|14|20151.46|0.09|0.03|N|O|1995-11-04|1995-10-11|1995-12-02|NONE|FOB|quickly even packages. r| +49198|965949|15950|2|46|92685.40|0.10|0.08|N|O|1995-09-01|1995-09-19|1995-09-24|TAKE BACK RETURN|SHIP| evenly eve| +49198|695207|32747|3|12|14426.04|0.10|0.01|N|O|1995-09-23|1995-09-15|1995-10-09|NONE|MAIL|es haggle furiously. slyly express packages| +49199|364799|27307|1|42|78278.76|0.07|0.08|N|O|1997-03-20|1997-04-28|1997-04-01|DELIVER IN PERSON|AIR| boost blithely. quickly bold| +49224|365361|2883|1|9|12837.15|0.08|0.07|R|F|1992-11-18|1992-10-07|1992-12-13|COLLECT COD|SHIP|cording to t| +49224|606974|19487|2|10|18809.40|0.02|0.03|A|F|1992-11-19|1992-12-03|1992-12-15|DELIVER IN PERSON|RAIL|ions. deposits wake fluffily. slyly ironi| +49224|405427|42952|3|38|50631.20|0.01|0.06|R|F|1992-09-08|1992-10-12|1992-09-18|NONE|SHIP|ular foxes.| +49224|11429|36430|4|43|57638.06|0.01|0.00|R|F|1992-11-25|1992-12-02|1992-12-05|NONE|REG AIR|silent, close accounts use | +49224|72923|35425|5|42|79628.64|0.02|0.03|R|F|1992-09-26|1992-11-10|1992-09-29|DELIVER IN PERSON|FOB|sits. final requests| +49225|213535|38544|1|39|56492.28|0.08|0.04|R|F|1994-12-28|1994-11-11|1995-01-08|DELIVER IN PERSON|FOB|ts sleep carefully careful| +49225|873036|23037|2|24|24215.76|0.06|0.05|A|F|1995-01-27|1994-12-17|1995-02-05|NONE|REG AIR|counts x-ray furiously. regular deposits w| +49225|114415|1922|3|28|40023.48|0.01|0.01|R|F|1994-12-14|1994-12-26|1994-12-31|DELIVER IN PERSON|RAIL|ckages boost furiously amo| +49226|246270|46271|1|29|35271.54|0.10|0.06|N|O|1996-12-14|1997-01-05|1996-12-31|DELIVER IN PERSON|MAIL|counts. slyly | +49226|59861|47365|2|38|69192.68|0.01|0.01|N|O|1997-03-29|1997-02-08|1997-04-22|TAKE BACK RETURN|REG AIR|ggle alongside of the | +49226|78399|28400|3|10|13773.90|0.07|0.01|N|O|1996-12-08|1997-02-20|1996-12-31|NONE|REG AIR|detect courts. ironic Tiresias cajole| +49226|646692|9205|4|7|11470.62|0.09|0.02|N|O|1997-01-10|1997-01-18|1997-01-16|TAKE BACK RETURN|RAIL|ter the boldly ev| +49226|937241|49760|5|27|34511.40|0.03|0.08|N|O|1997-02-18|1997-02-05|1997-03-19|NONE|RAIL|egular exc| +49227|84619|47121|1|16|25657.76|0.04|0.08|N|O|1998-08-04|1998-07-27|1998-08-14|DELIVER IN PERSON|MAIL|ironic deposits sleep express request| +49227|181565|44069|2|10|16465.60|0.00|0.03|N|O|1998-08-01|1998-07-10|1998-08-10|COLLECT COD|TRUCK|en requests | +49227|552097|14609|3|11|12639.77|0.02|0.04|N|O|1998-05-12|1998-08-01|1998-06-06|NONE|MAIL|s pinto beans wake-- sly| +49227|93426|43427|4|34|48260.28|0.09|0.00|N|O|1998-08-17|1998-06-23|1998-09-14|TAKE BACK RETURN|FOB| sleep across the carefu| +49228|823810|11359|1|40|69350.80|0.05|0.04|R|F|1992-06-01|1992-07-30|1992-06-04|DELIVER IN PERSON|TRUCK|ously. blithel| +49228|758186|33217|2|25|31103.75|0.06|0.01|R|F|1992-09-01|1992-07-07|1992-09-25|DELIVER IN PERSON|FOB|ts. express dep| +49228|829188|29189|3|40|44685.60|0.09|0.05|R|F|1992-06-18|1992-08-10|1992-06-21|DELIVER IN PERSON|RAIL|d to boost. bravely special requests detec| +49228|155702|18206|4|12|21092.40|0.07|0.00|R|F|1992-08-12|1992-06-18|1992-08-13|TAKE BACK RETURN|FOB| the final notornis cajole quickl| +49229|935620|23175|1|17|28144.86|0.04|0.01|N|O|1995-09-18|1995-10-16|1995-09-20|DELIVER IN PERSON|AIR|inal requests. regular pa| +49230|613029|38054|1|1|941.99|0.10|0.06|N|O|1997-12-13|1998-01-25|1998-01-08|TAKE BACK RETURN|FOB| the accounts. special ideas u| +49231|930830|18385|1|3|5582.37|0.06|0.07|N|O|1996-01-29|1995-12-07|1996-02-05|COLLECT COD|SHIP|ccounts haggle fluffily furiously even | +49231|449119|36644|2|38|40587.42|0.05|0.04|N|O|1995-12-03|1996-01-05|1995-12-11|NONE|REG AIR|s above the fluffily even pl| +49231|328030|3043|3|24|25392.48|0.10|0.08|N|O|1996-01-16|1996-01-08|1996-01-27|NONE|FOB|ounts. regular, iro| +49231|190195|27705|4|11|14137.09|0.07|0.07|N|O|1996-02-12|1996-01-14|1996-03-13|COLLECT COD|TRUCK|g requests. carefully final depo| +49256|512129|12130|1|23|26245.30|0.04|0.01|R|F|1992-05-08|1992-03-19|1992-05-28|NONE|FOB|ding to the final packages. quick| +49256|346526|9033|2|8|12580.08|0.09|0.03|A|F|1992-05-21|1992-04-05|1992-05-28|TAKE BACK RETURN|FOB|aphs wake blithely | +49256|54130|16632|3|50|54206.50|0.07|0.08|R|F|1992-05-16|1992-04-25|1992-05-27|COLLECT COD|AIR|boost furiously above the| +49256|749912|12427|4|27|52970.76|0.01|0.08|R|F|1992-05-26|1992-05-12|1992-06-25|TAKE BACK RETURN|TRUCK|al deposit| +49256|768819|18820|5|24|45306.72|0.05|0.00|A|F|1992-05-31|1992-04-09|1992-06-16|NONE|FOB|the ironic accounts. final deposits| +49257|554621|42155|1|18|30160.80|0.07|0.07|R|F|1994-01-20|1993-12-27|1994-02-18|TAKE BACK RETURN|REG AIR|ag among the carefully bold platelets. iro| +49258|218450|18451|1|5|6842.20|0.03|0.00|N|O|1995-12-27|1996-01-31|1996-01-14|TAKE BACK RETURN|REG AIR| ironic pinto beans detect i| +49258|474651|37161|2|17|27635.71|0.02|0.07|N|O|1995-12-19|1996-03-13|1995-12-28|COLLECT COD|RAIL|ns. carefully silent di| +49258|445681|45682|3|45|73199.70|0.05|0.01|N|O|1996-04-11|1996-02-26|1996-04-29|NONE|MAIL| platelets; pinto beans | +49258|546580|46581|4|36|58556.16|0.07|0.03|N|O|1996-02-09|1996-01-29|1996-02-12|NONE|TRUCK|across the flu| +49258|354895|17403|5|27|52646.76|0.03|0.02|N|O|1995-12-28|1996-01-27|1996-01-27|TAKE BACK RETURN|MAIL|e carefully blithely| +49259|827845|15394|1|29|51411.20|0.09|0.04|R|F|1992-10-31|1992-12-12|1992-11-23|TAKE BACK RETURN|FOB|ts wake across the reg| +49259|575163|12697|2|2|2476.28|0.08|0.01|R|F|1992-12-25|1992-11-25|1993-01-17|NONE|REG AIR|ven, regular packages. bol| +49259|755628|43174|3|9|15152.31|0.03|0.01|R|F|1992-11-02|1992-11-19|1992-12-01|DELIVER IN PERSON|RAIL|nst the instructions. furiou| +49259|837533|50|4|8|11763.92|0.01|0.06|R|F|1993-01-19|1992-12-27|1993-02-16|COLLECT COD|SHIP|tions along the e| +49259|408630|46155|5|43|66160.23|0.08|0.01|R|F|1993-02-01|1992-12-15|1993-02-24|NONE|TRUCK|eodolites. quickly unusual i| +49260|473596|48615|1|14|21973.98|0.08|0.05|R|F|1994-03-23|1994-05-15|1994-04-08|NONE|RAIL|y stealthy deposits haggle carefully. expr| +49260|712466|24981|2|34|50266.62|0.00|0.00|R|F|1994-04-27|1994-04-30|1994-05-12|COLLECT COD|SHIP|against the bold requests. even ideas hagg| +49260|411609|11610|3|44|66905.52|0.03|0.00|A|F|1994-05-20|1994-05-19|1994-06-06|NONE|MAIL|ts. furiously expres| +49260|903311|40866|4|6|7885.62|0.07|0.03|A|F|1994-02-24|1994-05-16|1994-03-05|NONE|MAIL|equests are! blithe dolphins breach fu| +49261|519450|6981|1|50|73471.50|0.01|0.06|N|O|1997-08-04|1997-07-29|1997-08-08|NONE|AIR|. accounts about the ironically fluffy t| +49262|221842|9355|1|15|26457.45|0.10|0.06|A|F|1993-01-12|1992-12-01|1993-02-04|NONE|TRUCK|jole blithely slyly special package| +49262|488538|13557|2|29|44268.79|0.03|0.04|R|F|1993-01-11|1992-11-23|1993-02-08|DELIVER IN PERSON|SHIP|s affix above the furiously final requests| +49262|843946|6463|3|8|15119.20|0.06|0.01|A|F|1992-11-11|1992-11-15|1992-11-19|DELIVER IN PERSON|MAIL|nic ideas cajole among the even, regular as| +49262|199945|37455|4|2|4089.88|0.00|0.00|R|F|1993-01-10|1992-11-22|1993-01-16|DELIVER IN PERSON|SHIP|ick platelets. | +49262|475187|12715|5|27|31378.32|0.07|0.07|A|F|1993-01-07|1992-12-24|1993-01-20|DELIVER IN PERSON|REG AIR|y ironic excuse| +49262|453112|3113|6|42|44733.78|0.05|0.03|A|F|1992-12-17|1992-12-18|1993-01-01|COLLECT COD|FOB|dependencies haggle quickl| +49263|565052|27564|1|50|55851.50|0.03|0.00|R|F|1993-12-26|1994-01-08|1994-01-13|TAKE BACK RETURN|SHIP|y carefully ironic requ| +49263|813518|1067|2|18|25766.46|0.01|0.03|A|F|1993-12-17|1994-01-08|1994-01-10|NONE|MAIL|nstructions. unusual, | +49263|781205|6236|3|35|45015.95|0.04|0.01|R|F|1994-02-10|1994-01-01|1994-02-24|COLLECT COD|RAIL|ses around the carefully ironic theodoli| +49263|707063|7064|4|31|33170.93|0.04|0.04|R|F|1993-12-15|1994-01-18|1994-01-09|COLLECT COD|TRUCK|eposits boost caref| +49263|600321|322|5|18|21983.22|0.08|0.02|R|F|1993-11-16|1994-01-21|1993-12-05|TAKE BACK RETURN|MAIL| fluffily even pinto beans sle| +49263|589190|1702|6|8|10233.36|0.10|0.07|R|F|1993-11-20|1993-12-21|1993-12-06|TAKE BACK RETURN|TRUCK|s nag carefully brave pinto beans. c| +49263|505382|42913|7|46|63818.56|0.08|0.05|R|F|1994-02-08|1993-11-29|1994-02-11|DELIVER IN PERSON|AIR|hely ironic reque| +49288|940111|2630|1|20|23021.40|0.01|0.00|A|F|1995-01-30|1995-02-19|1995-02-08|NONE|MAIL|ependencie| +49288|437212|37213|2|1|1149.19|0.05|0.06|A|F|1994-12-19|1995-02-18|1995-01-10|TAKE BACK RETURN|MAIL|gle carefully quickly blithe | +49288|216526|29031|3|33|47602.83|0.03|0.01|R|F|1995-04-01|1995-02-25|1995-05-01|TAKE BACK RETURN|FOB|ely silent packages against the blithe| +49288|138159|25666|4|40|47886.00|0.10|0.06|A|F|1994-12-16|1995-03-10|1995-01-03|COLLECT COD|MAIL|instructions cajole after the car| +49288|31049|31050|5|17|16660.68|0.00|0.00|A|F|1995-01-31|1995-02-01|1995-02-28|COLLECT COD|RAIL|ly ironic warthogs maintain fluffily sl| +49288|835075|35076|6|29|29290.87|0.03|0.00|R|F|1995-01-01|1995-02-26|1995-01-12|NONE|AIR|ic instructions about the caref| +49288|93422|43423|7|19|26892.98|0.10|0.00|R|F|1995-03-03|1995-03-02|1995-03-19|DELIVER IN PERSON|TRUCK|arefully regular theodolites wake q| +49289|133049|45552|1|41|44363.64|0.00|0.03|N|O|1997-09-03|1997-08-21|1997-09-17|TAKE BACK RETURN|FOB|r requests detect furiously along the| +49289|152847|40357|2|22|41796.48|0.06|0.00|N|O|1997-08-02|1997-10-19|1997-08-19|TAKE BACK RETURN|FOB| furiously regular packages int| +49289|893425|43426|3|19|26949.22|0.05|0.00|N|O|1997-09-04|1997-10-08|1997-09-09|TAKE BACK RETURN|SHIP|inal, final accounts sleep blithely final p| +49289|785348|35349|4|45|64498.95|0.00|0.03|N|O|1997-08-18|1997-09-08|1997-08-20|DELIVER IN PERSON|MAIL| fluffily unusual requests sleep| +49289|340963|28482|5|50|100197.50|0.02|0.00|N|O|1997-11-12|1997-10-05|1997-12-02|TAKE BACK RETURN|AIR|pinto beans bo| +49289|550430|37964|6|47|69579.27|0.03|0.07|N|O|1997-10-02|1997-10-19|1997-10-07|TAKE BACK RETURN|RAIL| nag. dependencies hinder furious| +49289|68990|18991|7|40|78359.60|0.04|0.03|N|O|1997-09-14|1997-09-17|1997-09-17|NONE|MAIL|the slyly bold account| +49290|504750|42281|1|19|33339.87|0.09|0.08|A|F|1994-07-21|1994-08-30|1994-07-25|TAKE BACK RETURN|SHIP|y final warhorses haggle behind| +49290|323297|48310|2|14|18483.92|0.02|0.02|R|F|1994-10-12|1994-08-08|1994-11-07|DELIVER IN PERSON|FOB|e fluffily daring deposits. carefully i| +49290|639933|2446|3|1|1872.90|0.09|0.02|A|F|1994-08-28|1994-09-02|1994-09-13|DELIVER IN PERSON|TRUCK|e packages snooze. iro| +49290|350334|37856|4|16|22149.12|0.04|0.04|A|F|1994-09-12|1994-08-01|1994-10-02|COLLECT COD|FOB|ronic pinto beans boost ca| +49291|1564|26565|1|32|46897.92|0.10|0.07|A|F|1995-02-19|1995-02-01|1995-03-16|TAKE BACK RETURN|RAIL| at the quickly special pa| +49291|274570|12086|2|34|52515.04|0.09|0.01|A|F|1995-01-04|1995-01-17|1995-01-25|TAKE BACK RETURN|RAIL|ggle furiously special foxes. | +49291|689288|1802|3|40|51090.00|0.07|0.00|R|F|1995-02-11|1995-03-01|1995-02-17|TAKE BACK RETURN|RAIL|dencies. fluffily special re| +49291|853594|41146|4|36|55711.80|0.09|0.01|R|F|1995-02-15|1995-03-02|1995-02-22|COLLECT COD|TRUCK|e the carefully silent asymptotes int| +49292|479887|4906|1|48|89609.28|0.01|0.04|N|O|1996-04-21|1996-05-02|1996-05-02|DELIVER IN PERSON|SHIP|atelets. carefully regular pac| +49292|444500|19517|2|13|18778.24|0.01|0.00|N|O|1996-03-23|1996-04-27|1996-04-21|COLLECT COD|FOB| detect around th| +49292|704229|29258|3|21|25896.99|0.05|0.07|N|O|1996-02-14|1996-03-25|1996-03-12|DELIVER IN PERSON|AIR| ironic deposits boost carefully. furiousl| +49292|969860|7418|4|10|19298.20|0.02|0.04|N|O|1996-02-14|1996-04-30|1996-03-11|NONE|TRUCK|cally unusu| +49292|422018|22019|5|23|21619.77|0.01|0.07|N|O|1996-03-19|1996-05-07|1996-04-17|DELIVER IN PERSON|FOB|es at the regular, bold| +49293|970882|33402|1|19|37103.96|0.02|0.06|R|F|1993-04-27|1993-05-20|1993-04-29|TAKE BACK RETURN|RAIL|nal deposits sleep evenl| +49293|599247|36781|2|3|4038.66|0.06|0.00|R|F|1993-06-09|1993-04-30|1993-06-22|TAKE BACK RETURN|REG AIR|furiously bold pinto be| +49293|543562|31093|3|7|11238.78|0.04|0.06|R|F|1993-06-30|1993-05-08|1993-07-01|COLLECT COD|TRUCK|aids. final depo| +49293|644984|44985|4|16|30863.20|0.06|0.02|A|F|1993-05-27|1993-05-08|1993-06-25|DELIVER IN PERSON|MAIL|y. packages across the f| +49293|235276|47781|5|12|14535.12|0.04|0.01|A|F|1993-05-05|1993-06-02|1993-05-20|COLLECT COD|RAIL|ts detect ruthlessly ab| +49293|271480|21481|6|26|37738.22|0.09|0.05|A|F|1993-07-09|1993-06-04|1993-08-02|NONE|TRUCK|s integrate carefully at the ironic pack| +49294|651161|1162|1|50|55606.50|0.00|0.01|N|O|1997-08-29|1997-09-11|1997-09-03|COLLECT COD|TRUCK|es above the furiously busy| +49294|48346|35847|2|21|27181.14|0.04|0.05|N|O|1997-08-24|1997-08-20|1997-09-02|TAKE BACK RETURN|AIR|dolites haggle about the daringly| +49294|550750|38284|3|24|43217.52|0.06|0.08|N|O|1997-09-16|1997-07-26|1997-10-09|COLLECT COD|FOB|s according to | +49294|443553|43554|4|45|67343.85|0.10|0.03|N|O|1997-07-21|1997-07-31|1997-08-07|COLLECT COD|SHIP|en accounts d| +49294|792313|42314|5|19|26700.32|0.01|0.01|N|O|1997-07-04|1997-08-02|1997-07-26|COLLECT COD|RAIL|olites wake quickly express ideas? slyl| +49294|388181|689|6|17|21575.89|0.03|0.07|N|O|1997-08-02|1997-08-27|1997-08-10|DELIVER IN PERSON|FOB|thely unusual, special depos| +49295|931446|43965|1|44|65005.60|0.03|0.00|N|O|1998-07-21|1998-07-16|1998-08-19|NONE|REG AIR| unusual accounts. final, un| +49295|800830|13347|2|43|74423.97|0.09|0.08|N|O|1998-07-15|1998-07-31|1998-07-22|NONE|RAIL|ss pinto bea| +49295|545811|33342|3|24|44562.96|0.00|0.00|N|O|1998-09-12|1998-07-09|1998-10-02|COLLECT COD|FOB|sits; unusual instructions caj| +49295|437308|49817|4|32|39848.96|0.02|0.04|N|O|1998-08-08|1998-07-25|1998-08-23|COLLECT COD|SHIP|? quickly permanent instru| +49320|61702|11703|1|11|18300.70|0.04|0.08|R|F|1994-11-07|1994-11-14|1994-11-14|NONE|MAIL|atelets are even pinto beans. furiou| +49320|20451|45452|2|25|34286.25|0.04|0.08|R|F|1995-01-23|1994-12-15|1995-02-16|DELIVER IN PERSON|FOB|ross the furiously| +49320|710534|35563|3|35|54057.50|0.10|0.07|R|F|1994-10-28|1994-12-24|1994-11-09|COLLECT COD|AIR|x above the pearls| +49320|937279|24834|4|44|57914.12|0.00|0.07|R|F|1995-02-12|1994-11-30|1995-03-14|TAKE BACK RETURN|FOB| dependencies across the | +49320|845155|45156|5|24|26402.64|0.07|0.02|R|F|1994-11-15|1994-12-11|1994-11-18|NONE|FOB|s. blithely final deposits sleep ironi| +49321|82624|20128|1|4|6426.48|0.06|0.00|A|F|1994-05-03|1994-03-11|1994-05-31|NONE|RAIL|attainments will ha| +49321|657578|45118|2|32|49137.28|0.06|0.02|A|F|1994-03-11|1994-03-26|1994-04-04|COLLECT COD|FOB|o beans unwind furiously fluffily final| +49321|908871|46426|3|9|16918.47|0.05|0.01|R|F|1994-03-12|1994-02-26|1994-03-18|COLLECT COD|SHIP|ans sleep furiously upon | +49321|386385|48893|4|15|22070.55|0.08|0.02|A|F|1994-02-07|1994-02-06|1994-02-17|COLLECT COD|TRUCK|ers. slyly regular d| +49321|955947|43505|5|14|28040.60|0.06|0.07|R|F|1994-01-10|1994-03-15|1994-01-30|TAKE BACK RETURN|FOB|ependencies across the quickly final requ| +49322|809772|47321|1|30|50451.90|0.09|0.05|N|O|1998-09-05|1998-10-16|1998-09-28|COLLECT COD|MAIL|ns are furiously of the blithely| +49322|824881|24882|2|45|81262.80|0.02|0.02|N|O|1998-09-23|1998-10-06|1998-10-18|DELIVER IN PERSON|RAIL|ntly regular req| +49322|770865|8411|3|46|89048.18|0.01|0.08|N|O|1998-09-09|1998-10-04|1998-10-08|DELIVER IN PERSON|TRUCK|ss the slyly regular req| +49322|915498|40535|4|20|30269.00|0.04|0.08|N|O|1998-09-07|1998-10-29|1998-09-08|COLLECT COD|MAIL| ironic requests unwind across the| +49322|762131|49677|5|30|35793.00|0.02|0.07|N|O|1998-09-09|1998-10-09|1998-09-15|DELIVER IN PERSON|REG AIR|instructions. b| +49323|475627|25628|1|31|49680.60|0.09|0.08|R|F|1993-07-10|1993-05-23|1993-07-28|TAKE BACK RETURN|FOB|s sublate quickly ruthle| +49323|860488|35523|2|1|1448.44|0.02|0.03|A|F|1993-04-15|1993-04-12|1993-04-16|TAKE BACK RETURN|FOB|may sublate furiously pa| +49323|220373|7886|3|42|54321.12|0.02|0.08|A|F|1993-03-18|1993-05-27|1993-04-13|TAKE BACK RETURN|AIR|ourts alongside of the slyly even t| +49323|800718|13235|4|3|4856.01|0.08|0.03|A|F|1993-07-03|1993-05-24|1993-07-21|NONE|FOB|l accounts. daring instructions cajole al| +49324|635962|48475|1|1|1897.93|0.09|0.01|R|F|1995-02-10|1995-01-17|1995-03-02|COLLECT COD|SHIP| the express instructio| +49324|604576|17089|2|2|2961.08|0.04|0.01|A|F|1995-01-11|1995-02-16|1995-02-04|TAKE BACK RETURN|REG AIR|en, express excuses after the regular, reg| +49324|98835|48836|3|50|91691.50|0.09|0.04|R|F|1995-04-05|1995-02-12|1995-05-03|DELIVER IN PERSON|MAIL|ickly final requests across the regula| +49324|117175|17176|4|27|32188.59|0.09|0.07|A|F|1995-01-19|1995-01-30|1995-02-13|NONE|SHIP| the fluffily fina| +49325|289067|1573|1|25|26401.25|0.08|0.02|N|O|1996-07-14|1996-07-25|1996-08-13|TAKE BACK RETURN|TRUCK|se quickly final requests.| +49325|348026|48027|2|19|20406.19|0.10|0.05|N|O|1996-07-30|1996-07-16|1996-08-11|TAKE BACK RETURN|RAIL|ly never express instructions. never| +49325|257207|32218|3|15|17462.85|0.02|0.08|N|O|1996-07-20|1996-08-25|1996-07-31|TAKE BACK RETURN|SHIP|s foxes promise always special account| +49325|863701|38736|4|9|14981.94|0.05|0.00|N|O|1996-06-23|1996-07-13|1996-07-08|TAKE BACK RETURN|SHIP|y. carefully unusual deposits betwe| +49326|786292|48808|1|22|30321.72|0.05|0.08|N|O|1996-06-05|1996-07-10|1996-07-01|NONE|FOB|eans cajole. ironic, regul| +49326|198862|23869|2|16|31373.76|0.03|0.00|N|O|1996-06-02|1996-05-15|1996-06-13|DELIVER IN PERSON|TRUCK|yly silent accounts. s| +49327|810332|10333|1|49|60872.21|0.08|0.06|N|O|1997-01-13|1996-12-13|1997-01-19|COLLECT COD|RAIL|according to the sometimes pending packa| +49327|247024|47025|2|29|28159.29|0.00|0.04|N|O|1996-10-26|1996-11-06|1996-10-27|COLLECT COD|RAIL| regularly. foxes cajole blithely| +49352|347954|22967|1|25|50048.50|0.06|0.03|R|F|1993-06-03|1993-05-20|1993-07-03|DELIVER IN PERSON|REG AIR|c ideas wake blithely unu| +49352|56532|19034|2|32|47632.96|0.02|0.06|A|F|1993-06-05|1993-05-25|1993-06-11|DELIVER IN PERSON|SHIP|e furiously even idea| +49352|125470|25471|3|14|20936.58|0.08|0.05|R|F|1993-03-09|1993-03-29|1993-03-15|NONE|REG AIR|deposits. blithely specia| +49353|896110|33662|1|30|33182.10|0.00|0.01|N|O|1998-02-27|1998-03-05|1998-03-16|NONE|SHIP|ackages after the reg| +49353|906621|31658|2|33|53710.14|0.03|0.04|N|O|1998-05-19|1998-04-22|1998-06-10|NONE|SHIP| after the slyly express packages. pendin| +49353|572491|22492|3|44|68792.68|0.00|0.07|N|O|1998-03-21|1998-03-21|1998-04-17|TAKE BACK RETURN|AIR|fily. express gifts sleep qui| +49354|401259|38784|1|34|39447.82|0.08|0.08|N|O|1996-04-22|1996-04-01|1996-05-04|TAKE BACK RETURN|FOB|. furiously bold depths a| +49354|956118|31157|2|9|10566.63|0.07|0.08|N|O|1996-02-18|1996-04-22|1996-02-27|TAKE BACK RETURN|MAIL|er the regular dependencies. acc| +49354|470612|33122|3|8|12660.72|0.07|0.08|N|O|1996-04-29|1996-04-15|1996-05-17|TAKE BACK RETURN|RAIL|lyly regular ideas. | +49354|568394|43417|4|28|40946.36|0.03|0.06|N|O|1996-05-01|1996-04-22|1996-05-06|DELIVER IN PERSON|MAIL|refully pending ideas. packages a| +49354|989944|14983|5|27|54915.30|0.03|0.07|N|O|1996-05-18|1996-03-02|1996-05-22|COLLECT COD|RAIL|ole furiously after the slyly final ide| +49355|863247|25765|1|23|27834.60|0.07|0.06|N|O|1997-03-21|1997-04-15|1997-04-17|TAKE BACK RETURN|FOB|ual excuses sleep b| +49356|582939|20473|1|33|66723.03|0.09|0.08|N|O|1998-04-07|1998-02-27|1998-04-17|TAKE BACK RETURN|RAIL| pinto bean| +49357|689876|2390|1|45|83962.80|0.10|0.06|N|O|1997-04-03|1997-03-28|1997-04-21|DELIVER IN PERSON|RAIL|nts haggle quickly bold theodolites. car| +49357|745045|7560|2|28|30520.28|0.03|0.00|N|O|1997-03-24|1997-05-11|1997-04-01|DELIVER IN PERSON|SHIP|l asymptot| +49357|955140|30179|3|46|54974.60|0.04|0.01|N|O|1997-06-02|1997-04-30|1997-06-12|NONE|MAIL| beans. slyly bold theodolites about the p| +49357|31652|6653|4|19|30089.35|0.04|0.01|N|O|1997-03-22|1997-04-17|1997-04-02|COLLECT COD|FOB|; quickly ironic req| +49357|968986|31506|5|3|6164.82|0.07|0.05|N|O|1997-05-29|1997-04-02|1997-06-28|COLLECT COD|MAIL|y. pinto beans sleep at the fi| +49358|606967|44504|1|33|61839.69|0.06|0.05|A|F|1992-07-31|1992-10-04|1992-08-06|TAKE BACK RETURN|FOB|usly packages. quickly special packages hag| +49358|288650|38651|2|1|1638.64|0.05|0.05|A|F|1992-10-20|1992-10-13|1992-11-16|NONE|AIR|lyly. quickly even| +49358|336092|48599|3|48|54147.84|0.06|0.01|A|F|1992-10-17|1992-09-17|1992-11-13|TAKE BACK RETURN|TRUCK|t requests! fluffily final ideas | +49358|685911|10938|4|36|68287.68|0.09|0.02|A|F|1992-11-05|1992-10-17|1992-12-01|DELIVER IN PERSON|AIR|ly regular deposits haggle carefully | +49358|98149|10651|5|41|47032.74|0.10|0.06|A|F|1992-10-22|1992-10-12|1992-11-16|DELIVER IN PERSON|REG AIR|atelets ha| +49358|585716|10739|6|8|14413.52|0.09|0.06|R|F|1992-11-09|1992-09-28|1992-12-02|COLLECT COD|REG AIR|ggle slyly furiously i| +49359|920318|32837|1|6|8029.62|0.07|0.06|N|O|1998-07-18|1998-04-30|1998-08-03|NONE|REG AIR| dogged, express requests. final instructi| +49359|773975|49006|2|38|77859.72|0.04|0.04|N|O|1998-05-12|1998-04-22|1998-05-14|NONE|MAIL|er the final accounts cajole on| +49359|181025|6032|3|2|2212.04|0.01|0.00|N|O|1998-07-14|1998-06-15|1998-07-27|TAKE BACK RETURN|TRUCK|nts boost fluffily along| +49359|474339|49358|4|6|7879.86|0.07|0.01|N|O|1998-04-24|1998-05-22|1998-04-26|COLLECT COD|RAIL|blithely fi| +49359|202185|14690|5|17|18481.89|0.02|0.05|N|O|1998-03-23|1998-06-01|1998-04-08|DELIVER IN PERSON|REG AIR|o beans. bl| +49384|209400|9401|1|8|10475.12|0.02|0.03|N|O|1995-07-29|1995-07-10|1995-08-04|DELIVER IN PERSON|MAIL|ole fluffily fin| +49385|873340|10892|1|39|51218.70|0.01|0.06|A|F|1992-08-03|1992-10-03|1992-08-17|NONE|TRUCK|e the blit| +49385|216456|41465|2|31|42545.64|0.08|0.02|A|F|1992-10-29|1992-08-22|1992-11-13|COLLECT COD|SHIP|jole furiously | +49385|972938|10496|3|28|56304.92|0.05|0.01|R|F|1992-07-22|1992-09-16|1992-08-02|DELIVER IN PERSON|FOB|s boost furiously about the | +49385|158999|34006|4|23|47333.77|0.08|0.02|A|F|1992-08-05|1992-08-15|1992-08-10|NONE|AIR| nag quickly: even in| +49386|633350|8375|1|41|52616.12|0.10|0.02|N|O|1995-09-13|1995-11-01|1995-10-09|TAKE BACK RETURN|RAIL|til the furiously| +49387|878706|28707|1|6|10107.96|0.03|0.06|R|F|1994-09-26|1994-09-09|1994-10-04|NONE|MAIL|regular deposits. reg| +49387|405830|18339|2|42|72904.02|0.10|0.08|R|F|1994-09-16|1994-08-27|1994-09-23|NONE|REG AIR|eep carefully | +49387|768262|43293|3|43|57199.89|0.09|0.01|A|F|1994-10-11|1994-08-22|1994-10-20|NONE|MAIL|rts. slow instructions above th| +49387|170015|7525|4|23|24955.23|0.02|0.04|R|F|1994-08-05|1994-08-18|1994-08-16|NONE|RAIL|platelets. carefully exp| +49387|426842|26843|5|18|31838.76|0.10|0.02|R|F|1994-07-14|1994-08-23|1994-07-15|DELIVER IN PERSON|FOB|ole slyly | +49387|927861|40380|6|23|43442.86|0.10|0.08|R|F|1994-07-18|1994-08-02|1994-07-21|TAKE BACK RETURN|REG AIR|gle furiously. express, ironic package| +49387|545817|33348|7|19|35393.01|0.04|0.04|R|F|1994-07-10|1994-08-08|1994-08-05|DELIVER IN PERSON|MAIL|even ideas. accounts according to the rut| +49388|534879|22410|1|19|36363.15|0.05|0.06|R|F|1994-02-09|1994-01-20|1994-02-24|NONE|TRUCK|sts. carefully even ac| +49388|707467|19982|2|50|73721.50|0.02|0.03|R|F|1994-01-20|1993-12-15|1994-01-21|TAKE BACK RETURN|RAIL|lites sleep blithely express theodolites| +49389|343705|6212|1|36|62952.84|0.02|0.03|N|O|1995-09-16|1995-09-29|1995-09-25|DELIVER IN PERSON|SHIP|iously express a| +49389|633446|45959|2|31|42761.71|0.03|0.03|N|O|1995-12-06|1995-10-14|1995-12-26|COLLECT COD|FOB|elets cajole quickly! bravely ironic inst| +49389|321614|46627|3|1|1635.60|0.00|0.06|N|O|1995-10-23|1995-10-26|1995-10-27|NONE|REG AIR|the pending excus| +49389|361555|49077|4|6|9699.24|0.10|0.04|N|O|1995-09-20|1995-11-10|1995-09-25|COLLECT COD|TRUCK|requests. f| +49389|646535|46536|5|50|74075.00|0.01|0.06|N|O|1995-08-24|1995-09-21|1995-08-30|TAKE BACK RETURN|FOB| regular th| +49390|892589|30141|1|30|47446.20|0.01|0.05|R|F|1992-04-27|1992-02-27|1992-05-16|TAKE BACK RETURN|MAIL|nal pinto beans affix carefully u| +49390|728258|28259|2|17|21865.74|0.04|0.06|A|F|1992-02-22|1992-04-06|1992-02-26|DELIVER IN PERSON|FOB|refully regular theodolites cajo| +49390|820461|32978|3|13|17958.46|0.04|0.08|A|F|1992-04-23|1992-03-21|1992-05-23|TAKE BACK RETURN|SHIP|lyly carefully pending excuses. pen| +49390|474734|12262|4|10|17087.10|0.03|0.01|A|F|1992-02-09|1992-03-08|1992-02-28|DELIVER IN PERSON|SHIP|ntain furiously among the deposits. s| +49390|852690|40242|5|28|45994.20|0.07|0.02|R|F|1992-04-13|1992-03-24|1992-05-02|NONE|TRUCK|packages sleep blithely even asym| +49390|147056|34563|6|45|49637.25|0.09|0.04|A|F|1992-04-18|1992-03-10|1992-04-24|TAKE BACK RETURN|SHIP| pending pack| +49390|568508|18509|7|2|3152.96|0.06|0.06|R|F|1992-03-30|1992-03-27|1992-04-05|TAKE BACK RETURN|TRUCK| packages are carefully express requests| +49391|910903|48458|1|22|42104.92|0.04|0.04|N|O|1995-06-28|1995-06-08|1995-07-26|DELIVER IN PERSON|TRUCK|sleep slyly about the regular deposits. f| +49391|533937|46448|2|8|15767.28|0.07|0.00|A|F|1995-04-21|1995-05-04|1995-04-24|TAKE BACK RETURN|FOB|ns wake car| +49391|872444|9996|3|15|21246.00|0.02|0.08|A|F|1995-05-12|1995-06-12|1995-05-17|DELIVER IN PERSON|RAIL|counts sleep acco| +49391|162177|49687|4|3|3717.51|0.07|0.08|N|F|1995-06-03|1995-05-13|1995-06-21|TAKE BACK RETURN|SHIP| quickly across the bold fo| +49391|696698|21725|5|26|44061.16|0.08|0.06|A|F|1995-04-07|1995-04-19|1995-04-25|NONE|RAIL|ly regular dolphins wake sl| +49391|386781|24303|6|43|80314.11|0.03|0.06|R|F|1995-06-03|1995-04-21|1995-06-05|COLLECT COD|AIR|ts according to the closel| +49416|64699|14700|1|48|79857.12|0.10|0.07|R|F|1993-08-14|1993-08-05|1993-08-28|COLLECT COD|FOB|ngage slyly blithely even platelets; iron| +49417|213272|13273|1|19|22519.94|0.03|0.07|N|O|1997-09-03|1997-10-20|1997-09-10|DELIVER IN PERSON|FOB|bove the requests sleep along the furio| +49417|452507|40035|2|21|30649.08|0.06|0.03|N|O|1997-09-24|1997-10-14|1997-10-11|TAKE BACK RETURN|SHIP|ts wake above the fluffily regular ideas.| +49417|283227|45733|3|21|25414.41|0.07|0.04|N|O|1997-10-04|1997-10-06|1997-10-25|COLLECT COD|RAIL|nstead of the expr| +49417|186587|49091|4|47|78658.26|0.03|0.01|N|O|1997-11-27|1997-10-04|1997-12-19|TAKE BACK RETURN|FOB|slyly accord| +49417|966275|16276|5|16|21459.68|0.08|0.08|N|O|1997-08-27|1997-10-15|1997-08-29|DELIVER IN PERSON|AIR|deposits. slyly bold requests haggle ca| +49417|181812|6819|6|26|49239.06|0.08|0.01|N|O|1997-10-26|1997-11-04|1997-11-18|TAKE BACK RETURN|FOB|ending courts alongside of the furiously f| +49418|270917|45928|1|2|3775.80|0.07|0.01|N|O|1996-02-15|1996-01-26|1996-03-08|COLLECT COD|SHIP|lar, unusual packages affix slyly. | +49418|296156|46157|2|47|54150.58|0.06|0.02|N|O|1995-12-26|1996-02-02|1996-01-13|NONE|RAIL|to beans cajole. care| +49418|485973|23501|3|1|1958.95|0.09|0.01|N|O|1995-12-27|1996-03-05|1995-12-30|DELIVER IN PERSON|AIR| bold dependencies. carefully blithe pa| +49418|731742|44257|4|15|26605.65|0.10|0.03|N|O|1996-03-11|1996-01-10|1996-04-04|DELIVER IN PERSON|TRUCK| quickly according to t| +49418|376322|38830|5|10|13983.10|0.04|0.02|N|O|1996-01-26|1996-02-14|1996-02-15|TAKE BACK RETURN|SHIP|ckages use furiously. final| +49419|892290|29842|1|17|21798.25|0.06|0.07|A|F|1992-10-15|1992-09-16|1992-10-29|TAKE BACK RETURN|AIR| blithely across the ironic ideas| +49419|713551|38580|2|9|14080.68|0.05|0.01|A|F|1992-08-13|1992-08-18|1992-08-23|NONE|MAIL|ns. fluffily ironic c| +49419|640397|27934|3|2|2674.72|0.03|0.03|R|F|1992-07-03|1992-07-30|1992-07-15|NONE|RAIL|are. furiously regular package| +49420|308286|20793|1|20|25885.40|0.09|0.00|A|F|1994-05-04|1994-06-01|1994-05-06|NONE|AIR|usly final requests| +49420|360927|48449|2|50|99395.50|0.02|0.04|R|F|1994-04-13|1994-06-05|1994-04-15|DELIVER IN PERSON|RAIL|y unusual hockey | +49420|96886|9388|3|37|69666.56|0.08|0.05|R|F|1994-07-01|1994-04-28|1994-07-20|NONE|RAIL|believe. slyly final acc| +49420|362567|25075|4|19|30961.45|0.01|0.01|A|F|1994-05-19|1994-05-19|1994-05-28|NONE|REG AIR|s. furiously final| +49420|658056|45596|5|28|28392.56|0.09|0.07|A|F|1994-07-06|1994-06-05|1994-07-13|COLLECT COD|SHIP|al foxes cajole carefully special req| +49420|943461|5980|6|9|13539.78|0.08|0.04|R|F|1994-05-12|1994-05-22|1994-05-17|COLLECT COD|MAIL| haggle. blithel| +49421|157740|32747|1|19|34157.06|0.10|0.08|A|F|1994-12-02|1994-10-21|1994-12-08|DELIVER IN PERSON|FOB|uriously final platelets i| +49422|162568|25072|1|40|65222.40|0.00|0.00|A|F|1995-05-08|1995-03-15|1995-06-04|NONE|RAIL|ly. ironic platelets solve | +49422|270926|20927|2|49|92948.59|0.10|0.07|R|F|1995-01-29|1995-03-09|1995-01-31|COLLECT COD|AIR|gular deposits.| +49423|965419|27939|1|37|54921.69|0.02|0.06|A|F|1993-01-09|1992-11-29|1993-01-25|TAKE BACK RETURN|TRUCK| across the regular | +49423|788251|25797|2|49|65621.78|0.01|0.07|A|F|1992-11-10|1993-01-01|1992-11-23|NONE|FOB| requests. slyly pend| +49423|118535|43540|3|41|63694.73|0.00|0.01|A|F|1992-11-16|1992-11-23|1992-11-30|COLLECT COD|FOB| ironic deposits integra| +49423|211210|36219|4|12|13454.40|0.00|0.08|R|F|1993-02-07|1992-12-30|1993-03-04|NONE|REG AIR|ests mold carefully s| +49423|793384|30930|5|8|11818.80|0.02|0.00|R|F|1992-12-19|1993-01-10|1993-01-17|TAKE BACK RETURN|AIR|cording to the | +49448|105152|30157|1|14|16200.10|0.03|0.02|N|O|1995-10-03|1995-09-19|1995-10-24|TAKE BACK RETURN|SHIP|onic instructions sleep. ca| +49449|125146|37649|1|1|1171.14|0.09|0.06|N|O|1996-03-28|1996-03-29|1996-04-01|NONE|RAIL|the quickly bold requests detect| +49450|610085|22598|1|39|38806.95|0.09|0.01|N|O|1997-06-25|1997-06-12|1997-07-23|DELIVER IN PERSON|REG AIR|ncies across the final instruc| +49450|693659|6173|2|40|66104.80|0.05|0.01|N|O|1997-05-21|1997-07-26|1997-06-05|NONE|SHIP|inal accounts. spe| +49450|314760|39773|3|42|74539.50|0.06|0.05|N|O|1997-05-05|1997-06-18|1997-05-09|NONE|REG AIR|usual waters are blithely.| +49450|165484|27988|4|11|17044.28|0.10|0.06|N|O|1997-07-25|1997-06-16|1997-08-16|TAKE BACK RETURN|MAIL|ts cajole sl| +49450|283603|21119|5|20|31731.80|0.05|0.04|N|O|1997-06-02|1997-06-01|1997-06-08|TAKE BACK RETURN|RAIL|nstructions. special foxes boo| +49450|500135|37666|6|48|54485.28|0.08|0.07|N|O|1997-07-06|1997-06-10|1997-07-11|DELIVER IN PERSON|MAIL|s. thinly unusual pa| +49450|763046|25562|7|4|4436.04|0.07|0.03|N|O|1997-07-13|1997-06-04|1997-07-14|DELIVER IN PERSON|SHIP|ly express accounts. ir| +49451|506438|43969|1|14|20221.74|0.04|0.01|A|F|1994-07-23|1994-06-20|1994-08-16|TAKE BACK RETURN|TRUCK|eans sleep after the quickly regular reques| +49451|690348|27888|2|6|8029.86|0.06|0.01|A|F|1994-04-18|1994-06-28|1994-04-23|DELIVER IN PERSON|FOB|counts wake: ironic | +49451|666872|16873|3|47|86425.48|0.07|0.03|A|F|1994-05-25|1994-06-14|1994-06-03|COLLECT COD|MAIL| around the carefu| +49452|471175|33685|1|1|1146.15|0.01|0.02|N|O|1998-03-20|1998-04-13|1998-03-26|COLLECT COD|TRUCK|e quickly slyly regular decoys. | +49452|26366|13867|2|32|41355.52|0.02|0.01|N|O|1998-03-22|1998-05-03|1998-04-02|TAKE BACK RETURN|RAIL|ully: pinto bea| +49452|118470|43475|3|22|32746.34|0.07|0.03|N|O|1998-05-14|1998-04-08|1998-05-26|COLLECT COD|SHIP| the furiously i| +49453|753955|28986|1|27|54240.84|0.01|0.04|R|F|1994-08-09|1994-06-04|1994-08-30|DELIVER IN PERSON|MAIL|ously among the qui| +49453|706877|6878|2|36|67818.24|0.09|0.01|R|F|1994-06-06|1994-05-27|1994-06-19|DELIVER IN PERSON|TRUCK|s. blithely | +49454|924631|24632|1|6|9933.54|0.05|0.08|N|O|1998-09-23|1998-08-14|1998-09-25|DELIVER IN PERSON|TRUCK|y ironic accounts. expre| +49454|260288|47804|2|35|43689.45|0.05|0.02|N|O|1998-10-07|1998-08-20|1998-10-19|COLLECT COD|TRUCK|across the furiously | +49454|656476|18990|3|45|64459.80|0.06|0.01|N|O|1998-09-16|1998-09-01|1998-10-13|COLLECT COD|MAIL|ly final platelets haggle car| +49454|381077|31078|4|36|41690.16|0.09|0.03|N|O|1998-08-13|1998-07-16|1998-08-28|COLLECT COD|MAIL|uests nag blithely around the unusual| +49454|745935|20964|5|47|93102.30|0.06|0.02|N|O|1998-07-10|1998-08-24|1998-08-08|NONE|TRUCK|lithely slyly regular ideas. | +49454|918422|43459|6|15|21605.70|0.08|0.05|N|O|1998-07-28|1998-08-16|1998-08-12|COLLECT COD|REG AIR| even pint| +49454|918030|30549|7|8|8383.92|0.07|0.04|N|O|1998-08-15|1998-08-25|1998-08-29|DELIVER IN PERSON|MAIL|pinto beans? quickly spec| +49455|318123|43136|1|50|57055.50|0.00|0.03|R|F|1993-12-26|1993-12-19|1994-01-21|NONE|RAIL|inal dinos. carefully ironic | +49455|685222|22762|2|34|41044.46|0.09|0.04|A|F|1993-12-07|1993-11-13|1993-12-23|COLLECT COD|RAIL| accounts. regular requests above the evenl| +49455|517463|42484|3|46|68100.24|0.03|0.01|R|F|1993-10-05|1993-12-08|1993-11-04|NONE|FOB|serve quickly after the pen| +49455|989063|39064|4|29|33408.58|0.02|0.07|A|F|1993-11-20|1993-12-04|1993-12-11|COLLECT COD|SHIP|wake carefully. furiously even dep| +49455|172658|35162|5|50|86532.50|0.07|0.05|A|F|1994-01-11|1993-12-01|1994-01-15|NONE|RAIL|along the brave packages. unusual pin| +49455|861461|11462|6|2|2844.84|0.02|0.06|R|F|1993-11-16|1993-10-30|1993-12-13|COLLECT COD|SHIP|e carefully pending deposits. dolphins det| +49480|54056|41560|1|31|31311.55|0.05|0.06|N|O|1995-07-23|1995-08-01|1995-07-27|NONE|SHIP|ng deposits. slyly even reque| +49480|508682|33703|2|14|23669.24|0.06|0.08|N|O|1995-08-30|1995-08-27|1995-09-27|DELIVER IN PERSON|SHIP|ructions integrate carefully furio| +49480|401771|39296|3|18|30109.50|0.00|0.04|N|O|1995-06-29|1995-07-30|1995-07-19|NONE|TRUCK| are alongside of the regula| +49480|551342|26365|4|12|16719.84|0.05|0.04|N|O|1995-07-30|1995-09-21|1995-08-15|DELIVER IN PERSON|REG AIR|lyly at the blithely unus| +49481|736499|11528|1|17|26102.82|0.01|0.07|A|F|1995-04-11|1995-06-15|1995-04-27|DELIVER IN PERSON|SHIP|ironic, ironic pinto bea| +49481|330761|30762|2|4|7167.00|0.09|0.05|R|F|1995-04-28|1995-05-01|1995-05-23|DELIVER IN PERSON|TRUCK| requests. even, special pinto beans haggle| +49481|95513|8015|3|7|10559.57|0.00|0.04|N|F|1995-05-30|1995-05-19|1995-06-20|COLLECT COD|RAIL|quests integrate above the final requests.| +49481|284365|9376|4|13|17541.55|0.00|0.02|A|F|1995-04-14|1995-04-22|1995-04-27|NONE|RAIL|ns. slyly even platelets across| +49481|316824|41837|5|48|88358.88|0.09|0.00|A|F|1995-04-09|1995-06-04|1995-04-21|NONE|REG AIR|, final excuses integrate| +49481|859505|34540|6|17|24895.82|0.00|0.05|N|F|1995-06-08|1995-06-20|1995-06-22|TAKE BACK RETURN|TRUCK| quickly un| +49482|447239|34764|1|35|41517.35|0.07|0.00|A|F|1992-05-11|1992-05-19|1992-05-21|COLLECT COD|MAIL| accounts. furiou| +49482|745108|45109|2|43|49582.01|0.09|0.06|R|F|1992-05-24|1992-05-14|1992-05-25|COLLECT COD|SHIP|riously regular instructions.| +49482|23033|23034|3|2|1912.06|0.10|0.04|R|F|1992-04-13|1992-05-26|1992-04-20|NONE|MAIL|nal deposits| +49482|99769|12271|4|16|28300.16|0.00|0.00|A|F|1992-03-12|1992-05-11|1992-04-08|DELIVER IN PERSON|AIR|und the foxes. quickly bold packages | +49482|803989|3990|5|29|54895.26|0.02|0.08|R|F|1992-03-07|1992-05-20|1992-03-25|TAKE BACK RETURN|FOB| slyly final instructi| +49482|639297|14322|6|29|35851.54|0.07|0.01|A|F|1992-05-07|1992-04-11|1992-05-12|TAKE BACK RETURN|MAIL|. slyly un| +49483|150023|37533|1|43|46139.86|0.00|0.04|R|F|1993-06-13|1993-03-14|1993-07-13|DELIVER IN PERSON|TRUCK|ructions b| +49483|432443|19968|2|38|52265.96|0.09|0.03|R|F|1993-03-30|1993-04-21|1993-04-19|NONE|FOB|ts haggle carefull| +49484|479864|42374|1|38|70065.92|0.08|0.04|R|F|1994-06-17|1994-07-04|1994-06-21|NONE|SHIP|quickly bold accounts ea| +49485|699025|49026|1|45|46079.55|0.07|0.04|N|O|1995-06-27|1995-06-25|1995-07-14|DELIVER IN PERSON|REG AIR|terns. regular, stealthy deposits| +49485|503586|41117|2|43|68351.08|0.07|0.04|R|F|1995-04-15|1995-05-07|1995-05-07|COLLECT COD|AIR|ironic accounts engage carefully dog| +49485|753163|3164|3|21|25538.73|0.03|0.08|R|F|1995-04-14|1995-05-29|1995-05-06|TAKE BACK RETURN|SHIP|etimes furious instructions. bold f| +49486|298754|48755|1|35|61345.90|0.06|0.03|R|F|1993-03-16|1993-03-18|1993-03-19|NONE|REG AIR|nag furiously unusual c| +49486|151024|26031|2|17|18275.34|0.10|0.02|A|F|1993-04-02|1993-03-15|1993-04-16|DELIVER IN PERSON|AIR|busily. slyly br| +49487|71316|33818|1|47|60503.57|0.10|0.07|N|O|1995-07-22|1995-08-02|1995-07-30|DELIVER IN PERSON|REG AIR|ounts-- express id| +49487|603772|16285|2|27|45244.98|0.02|0.01|N|O|1995-07-25|1995-07-04|1995-08-02|TAKE BACK RETURN|REG AIR| cajole furiously final| +49487|594529|7041|3|44|71434.00|0.07|0.05|N|O|1995-08-23|1995-07-08|1995-08-25|COLLECT COD|AIR|e the blithely final accounts. fur| +49512|840569|28118|1|16|24152.32|0.10|0.08|N|O|1995-11-05|1995-11-25|1995-11-20|COLLECT COD|MAIL|ag quickly.| +49512|427283|2300|2|13|15733.38|0.09|0.04|N|O|1995-12-15|1996-01-17|1996-01-08|NONE|MAIL|ldly against the car| +49512|334627|34628|3|22|36555.42|0.05|0.04|N|O|1996-02-16|1996-01-06|1996-03-08|TAKE BACK RETURN|MAIL|regular deposits cajole fluffily aga| +49512|66986|4490|4|40|78119.20|0.07|0.06|N|O|1995-11-08|1996-01-01|1995-12-02|TAKE BACK RETURN|SHIP|ress foxes. speci| +49512|833330|8363|5|11|13896.19|0.06|0.06|N|O|1995-11-24|1995-12-27|1995-12-17|DELIVER IN PERSON|FOB|ironic foxes haggle furiously; furio| +49512|771217|46248|6|46|59256.28|0.02|0.08|N|O|1995-11-17|1995-12-05|1995-11-19|TAKE BACK RETURN|RAIL|ests. carefully express foxes ar| +49513|53159|15661|1|39|43373.85|0.05|0.07|N|O|1997-05-04|1997-03-08|1997-06-01|COLLECT COD|FOB|y regular frets above the quickly regu| +49513|437012|49521|2|31|29418.69|0.09|0.02|N|O|1997-04-26|1997-02-17|1997-05-25|TAKE BACK RETURN|FOB|hogs wake blithely accord| +49513|848565|23598|3|24|36324.48|0.03|0.00|N|O|1997-05-06|1997-02-26|1997-05-30|DELIVER IN PERSON|REG AIR|quickly among the furiously even asympt| +49514|331601|44108|1|41|66936.19|0.02|0.07|A|F|1993-08-07|1993-06-15|1993-08-24|TAKE BACK RETURN|RAIL|. furiously special deposits boost furiou| +49515|32531|7532|1|9|13171.77|0.07|0.08|N|O|1998-07-08|1998-06-18|1998-07-15|NONE|REG AIR|press, ironic theod| +49516|447281|22298|1|10|12282.60|0.03|0.04|A|F|1994-05-06|1994-04-18|1994-05-13|COLLECT COD|FOB|ly even req| +49516|447752|10261|2|50|84986.50|0.10|0.04|R|F|1994-01-29|1994-04-07|1994-02-06|TAKE BACK RETURN|AIR|ly regular foxes affix after t| +49516|354114|16622|3|20|23362.00|0.08|0.04|R|F|1994-02-14|1994-03-23|1994-03-10|TAKE BACK RETURN|MAIL|e close requests | +49517|768622|31138|1|44|74385.96|0.08|0.00|R|F|1994-01-28|1993-12-10|1994-02-13|TAKE BACK RETURN|SHIP|ackages cajole blithely blithely spe| +49517|227859|40364|2|11|19655.24|0.08|0.07|A|F|1993-12-28|1993-12-24|1993-12-29|NONE|FOB|ld excuses. qui| +49517|620999|8536|3|47|90238.12|0.03|0.04|R|F|1993-12-09|1993-12-05|1993-12-19|NONE|RAIL|carefully around the pen| +49517|115399|40404|4|49|69305.11|0.09|0.04|R|F|1994-01-28|1993-12-11|1994-02-22|COLLECT COD|FOB|ly unusual f| +49517|507430|44961|5|20|28748.20|0.00|0.07|A|F|1994-01-26|1994-01-10|1994-02-02|TAKE BACK RETURN|RAIL| requests. careful| +49517|359653|9654|6|42|71930.88|0.07|0.05|R|F|1994-02-20|1994-01-24|1994-03-21|NONE|SHIP|, regular dependencies. carefully express | +49517|686460|24000|7|41|59303.63|0.03|0.06|R|F|1993-12-15|1993-12-30|1994-01-10|DELIVER IN PERSON|AIR|ept the quickly| +49518|329375|4388|1|12|16852.32|0.08|0.02|N|O|1997-11-29|1997-10-10|1997-12-07|DELIVER IN PERSON|SHIP|lly among the blithely spec| +49518|801444|1445|2|45|60543.00|0.10|0.00|N|O|1997-08-07|1997-09-08|1997-08-31|TAKE BACK RETURN|TRUCK|ructions are according to the slyly iro| +49518|867861|42896|3|14|25603.48|0.08|0.06|N|O|1997-08-30|1997-09-22|1997-09-26|DELIVER IN PERSON|RAIL|after the slyly regular pinto beans. bold| +49518|126872|14379|4|13|24685.31|0.05|0.07|N|O|1997-11-20|1997-09-13|1997-11-26|DELIVER IN PERSON|FOB|equests cajole furiously. slyl| +49518|328804|3817|5|12|21993.48|0.08|0.01|N|O|1997-11-28|1997-09-03|1997-12-06|TAKE BACK RETURN|TRUCK|uctions sublate. blithely | +49519|172326|47333|1|10|13983.20|0.08|0.00|N|O|1997-11-10|1997-10-27|1997-11-24|NONE|RAIL| furiously pending pinto beans haggle. car| +49519|270929|8445|2|48|91195.68|0.02|0.00|N|O|1997-12-03|1997-11-14|1997-12-30|DELIVER IN PERSON|FOB|decoys. slyly dogged the| +49544|489270|26798|1|3|3777.75|0.01|0.01|R|F|1993-09-19|1993-10-09|1993-09-26|DELIVER IN PERSON|REG AIR|al pinto beans sleep about the sly acc| +49544|157283|19787|2|50|67014.00|0.10|0.05|A|F|1993-11-05|1993-10-10|1993-11-10|TAKE BACK RETURN|TRUCK|nding requests nag.| +49544|443560|31085|3|5|7517.70|0.10|0.05|R|F|1993-11-06|1993-10-05|1993-12-01|COLLECT COD|FOB|sts. carefully pending pinto beans acros| +49544|907071|7072|4|25|26950.75|0.00|0.02|A|F|1993-10-07|1993-10-21|1993-10-31|TAKE BACK RETURN|MAIL|ed frays. c| +49545|766832|41863|1|28|53166.40|0.08|0.03|A|F|1993-05-20|1993-06-20|1993-06-14|COLLECT COD|FOB|sly even waters. quickly ironi| +49545|144360|19365|2|11|15447.96|0.00|0.04|A|F|1993-05-13|1993-07-17|1993-06-02|NONE|TRUCK|quests. reg| +49545|252515|2516|3|2|2935.00|0.05|0.06|A|F|1993-05-16|1993-06-20|1993-06-13|DELIVER IN PERSON|SHIP|uctions use car| +49545|19205|6706|4|26|29229.20|0.05|0.00|R|F|1993-07-16|1993-06-28|1993-07-31|TAKE BACK RETURN|TRUCK|urts affix slyl| +49545|776734|14280|5|5|9053.50|0.10|0.00|R|F|1993-09-10|1993-07-17|1993-10-10|TAKE BACK RETURN|SHIP|ests haggle furiously even dolphins. | +49546|222715|35220|1|43|70421.10|0.08|0.04|R|F|1994-11-25|1994-09-27|1994-12-14|DELIVER IN PERSON|SHIP|s cajole furiously furio| +49547|681265|31266|1|36|44864.28|0.02|0.02|A|F|1994-04-08|1994-04-28|1994-04-09|DELIVER IN PERSON|REG AIR|bold foxes.| +49547|16600|4101|2|37|56114.20|0.00|0.06|R|F|1994-03-27|1994-06-04|1994-04-19|NONE|TRUCK| along the q| +49547|983228|45748|3|15|19667.70|0.06|0.01|R|F|1994-06-11|1994-05-18|1994-06-13|TAKE BACK RETURN|FOB|e blithely bold ideas. express account| +49547|104229|16732|4|48|59194.56|0.06|0.05|R|F|1994-04-13|1994-05-20|1994-05-08|TAKE BACK RETURN|FOB|wake after the final accounts. | +49548|181547|31548|1|21|34199.34|0.10|0.05|A|F|1994-12-11|1994-10-26|1994-12-28|NONE|SHIP|press instructions. blit| +49548|252058|14564|2|24|24240.96|0.06|0.00|A|F|1994-10-10|1994-12-14|1994-10-28|COLLECT COD|TRUCK| the ironic| +49548|329242|16761|3|36|45764.28|0.10|0.05|A|F|1994-11-21|1994-11-26|1994-12-10|TAKE BACK RETURN|REG AIR|ular instructions doze furious| +49548|560700|35723|4|22|38734.96|0.08|0.06|A|F|1994-10-28|1994-12-14|1994-11-25|TAKE BACK RETURN|RAIL|lar excuses wa| +49548|678351|15891|5|8|10634.56|0.04|0.00|A|F|1995-01-09|1994-12-02|1995-01-26|NONE|TRUCK|le ruthless| +49549|208735|21240|1|16|26299.52|0.01|0.03|A|F|1992-01-29|1992-03-17|1992-02-27|COLLECT COD|FOB|es according to| +49549|192538|30048|2|50|81526.50|0.08|0.04|A|F|1992-03-18|1992-03-21|1992-04-08|DELIVER IN PERSON|REG AIR|the furiously regu| +49549|969391|31911|3|6|8762.10|0.08|0.05|A|F|1992-04-09|1992-02-09|1992-04-27|TAKE BACK RETURN|REG AIR| foxes wake blithely regular| +49549|550436|25459|4|15|22296.15|0.07|0.03|R|F|1992-04-12|1992-02-13|1992-04-29|DELIVER IN PERSON|MAIL|posits are furiously| +49550|565505|15506|1|47|73812.56|0.09|0.08|R|F|1993-01-24|1993-01-18|1993-02-03|DELIVER IN PERSON|SHIP|requests! final instructions caj| +49550|430015|17540|2|43|40634.57|0.07|0.01|R|F|1992-12-13|1993-01-21|1992-12-16|NONE|MAIL|s blithely| +49550|252021|14527|3|10|9730.10|0.06|0.03|A|F|1993-02-10|1993-01-07|1993-03-06|NONE|FOB| furiously quickly bold ideas. sometimes ev| +49550|716938|29453|4|15|29323.50|0.00|0.02|R|F|1993-02-11|1992-12-26|1993-03-09|DELIVER IN PERSON|MAIL|ain along the slyly unusual| +49550|570307|7841|5|1|1377.28|0.10|0.01|A|F|1993-02-13|1993-02-14|1993-02-15|NONE|RAIL|nal deposits. packages cajole re| +49550|140364|2867|6|32|44939.52|0.03|0.06|A|F|1993-03-01|1993-01-26|1993-03-29|NONE|FOB|y regular packages lose slyly. carefully si| +49550|82169|44671|7|21|24174.36|0.01|0.06|A|F|1993-03-19|1992-12-29|1993-04-04|DELIVER IN PERSON|REG AIR|l requests. carefully spe| +49551|7897|20398|1|16|28878.24|0.05|0.02|N|O|1995-11-23|1995-10-30|1995-12-01|DELIVER IN PERSON|SHIP| haggle blithely furiously unusual | +49576|157861|32868|1|9|17269.74|0.08|0.07|N|O|1995-11-12|1995-12-31|1995-11-26|TAKE BACK RETURN|MAIL|ounts haggle blith| +49576|160686|35693|2|30|52400.40|0.07|0.08|N|O|1995-12-29|1996-01-02|1996-01-19|COLLECT COD|MAIL|y pending requests. busi| +49576|646376|8889|3|23|30413.82|0.09|0.02|N|O|1995-12-08|1995-12-30|1996-01-02|TAKE BACK RETURN|AIR|ly unusual| +49576|627542|15079|4|9|13225.59|0.07|0.08|N|O|1995-12-22|1996-01-04|1996-01-15|TAKE BACK RETURN|AIR| final patterns haggle slyly id| +49577|175317|37821|1|21|29238.51|0.04|0.04|N|O|1995-08-15|1995-08-13|1995-08-31|TAKE BACK RETURN|MAIL|ly regular packages cajole slyly| +49577|538603|13624|2|18|29548.44|0.06|0.03|N|O|1995-10-15|1995-08-22|1995-10-21|COLLECT COD|MAIL|ly against the unusual platelets. eve| +49578|472970|10498|1|40|77718.00|0.04|0.06|N|O|1997-12-07|1997-11-13|1997-12-29|COLLECT COD|FOB|blithely bold asymptotes. idly even req| +49578|192668|30178|2|36|63383.76|0.06|0.03|N|O|1997-11-13|1997-11-16|1997-11-18|NONE|MAIL|ickly ironic packages| +49579|592655|42656|1|2|3495.26|0.04|0.03|A|F|1994-05-16|1994-06-13|1994-06-05|TAKE BACK RETURN|SHIP|posits sleep slyly c| +49580|188621|13628|1|12|20515.44|0.08|0.06|R|F|1995-04-09|1995-05-27|1995-05-08|DELIVER IN PERSON|MAIL|ng instruction| +49581|627456|27457|1|39|53953.38|0.06|0.03|N|O|1997-04-03|1997-03-02|1997-04-27|COLLECT COD|SHIP|furiously about the careful| +49581|645744|8257|2|13|21966.23|0.03|0.05|N|O|1997-01-22|1997-03-12|1997-01-31|COLLECT COD|RAIL|ccording to the furiously express re| +49582|74775|12279|1|3|5249.31|0.08|0.03|A|F|1994-05-04|1994-04-17|1994-05-26|TAKE BACK RETURN|RAIL|ial packages agai| +49582|733700|46215|2|37|64145.79|0.03|0.07|A|F|1994-05-13|1994-05-16|1994-06-05|NONE|AIR|use carefully. carefully ironic e| +49582|281384|6395|3|26|35499.62|0.01|0.06|A|F|1994-06-30|1994-05-16|1994-07-25|DELIVER IN PERSON|SHIP|tions; furiously final packages | +49583|140048|2551|1|19|20672.76|0.01|0.04|N|O|1998-02-11|1998-02-20|1998-02-15|DELIVER IN PERSON|MAIL|s wake around the carefully express | +49583|774263|36779|2|42|56163.66|0.04|0.01|N|O|1998-01-04|1998-03-08|1998-01-20|TAKE BACK RETURN|MAIL|al deposits. furiously | +49583|27676|40177|3|41|65750.47|0.04|0.07|N|O|1998-03-17|1998-01-29|1998-04-10|TAKE BACK RETURN|SHIP|ously pending packages serve blithely silen| +49583|143478|43479|4|37|56294.39|0.10|0.02|N|O|1998-03-28|1998-02-11|1998-04-08|COLLECT COD|MAIL|elets. bold requests de| +49583|421272|8797|5|32|38184.00|0.03|0.08|N|O|1998-02-14|1998-03-16|1998-03-08|TAKE BACK RETURN|AIR|s sleep aroun| +49608|502636|40167|1|29|47519.69|0.07|0.04|N|O|1998-06-14|1998-07-26|1998-06-23|TAKE BACK RETURN|REG AIR|l theodolites. bold| +49608|790915|28461|2|2|4011.76|0.03|0.08|N|O|1998-08-28|1998-07-01|1998-09-23|COLLECT COD|FOB| excuses according to the furiously bol| +49608|901051|1052|3|12|12624.12|0.05|0.04|N|O|1998-09-11|1998-07-14|1998-09-28|TAKE BACK RETURN|FOB|structions wake about the furiously regul| +49609|445158|45159|1|3|3309.39|0.00|0.04|R|F|1993-01-10|1992-12-21|1993-02-03|NONE|AIR|ests. furiously ironic| +49609|756487|31518|2|15|23151.75|0.03|0.06|A|F|1993-01-05|1993-01-23|1993-01-18|TAKE BACK RETURN|SHIP|s. unusual| +49609|266595|29101|3|19|29670.02|0.08|0.06|R|F|1992-12-17|1993-01-02|1993-01-03|COLLECT COD|RAIL|express foxes. slyly express war| +49609|657126|19640|4|32|34658.88|0.02|0.06|R|F|1992-11-27|1993-01-09|1992-12-17|COLLECT COD|AIR|ons use slyly asympt| +49610|159462|34469|1|46|69987.16|0.10|0.00|N|O|1995-07-31|1995-06-27|1995-08-16|TAKE BACK RETURN|SHIP|arefully. slyly special ideas sleep fluffi| +49610|77159|2162|2|50|56807.50|0.10|0.04|N|O|1995-07-01|1995-07-12|1995-07-03|TAKE BACK RETURN|MAIL|uriously blithely ironic pi| +49610|801971|39520|3|48|89900.64|0.04|0.05|N|O|1995-07-08|1995-07-20|1995-07-31|DELIVER IN PERSON|REG AIR|ideas. quickly speci| +49610|718451|18452|4|24|35266.08|0.03|0.05|N|O|1995-06-22|1995-06-30|1995-07-07|NONE|FOB|ke above the pe| +49611|160535|35542|1|39|62225.67|0.09|0.07|A|F|1995-04-02|1995-01-30|1995-04-13|TAKE BACK RETURN|TRUCK|ions cajole furiously regular deposits. re| +49611|109450|21953|2|44|64215.80|0.00|0.08|R|F|1995-02-07|1995-02-23|1995-02-25|COLLECT COD|TRUCK|ly regular accounts cajole blithely a| +49612|979212|29213|1|1|1291.17|0.02|0.03|N|O|1997-03-03|1997-03-14|1997-03-21|COLLECT COD|AIR|riously slyly iron| +49612|608298|33323|2|14|16887.64|0.01|0.06|N|O|1997-03-22|1997-02-18|1997-04-04|COLLECT COD|TRUCK|ously regular acc| +49612|650771|38311|3|1|1721.74|0.05|0.08|N|O|1997-03-28|1997-03-08|1997-04-02|DELIVER IN PERSON|MAIL|efully along the| +49612|495860|20879|4|14|25981.76|0.08|0.07|N|O|1997-01-11|1997-03-11|1997-02-04|COLLECT COD|TRUCK|press pinto beans sleep slowly. carefully | +49613|608468|33493|1|24|33034.32|0.09|0.00|R|F|1992-08-29|1992-10-15|1992-09-04|COLLECT COD|FOB| the furiously special instru| +49614|245516|45517|1|45|65767.50|0.10|0.01|R|F|1994-10-17|1994-10-07|1994-11-10|COLLECT COD|REG AIR|ons. furiously bold| +49614|374796|37304|2|44|82314.32|0.03|0.04|R|F|1994-12-01|1994-10-22|1994-12-25|NONE|TRUCK|ular instruc| +49614|184461|34462|3|29|44818.34|0.08|0.01|A|F|1994-09-18|1994-10-13|1994-10-04|NONE|RAIL| slyly across the even re| +49614|228819|16332|4|19|33208.20|0.03|0.08|R|F|1994-12-03|1994-09-21|1994-12-25|COLLECT COD|AIR|the slyly bold deposits nag furiously neve| +49614|758268|33299|5|49|64985.27|0.09|0.01|A|F|1994-08-19|1994-11-04|1994-08-29|NONE|REG AIR|s. blithely regular | +49614|196150|33660|6|10|12461.50|0.01|0.00|R|F|1994-10-27|1994-10-07|1994-11-17|TAKE BACK RETURN|TRUCK|ggle slyly sly ideas. furiously special | +49614|677317|39831|7|10|12942.80|0.08|0.07|A|F|1994-10-15|1994-11-02|1994-10-27|COLLECT COD|AIR|silent requests. silent, ev| +49615|653168|40708|1|28|31391.64|0.09|0.02|N|O|1998-05-03|1998-05-29|1998-05-17|NONE|RAIL|e final platelets. slyly ironic dep| +49615|780953|30954|2|16|32542.72|0.10|0.07|N|O|1998-05-27|1998-05-03|1998-06-22|NONE|AIR|ly regular excuses| +49640|966773|29293|1|18|33115.14|0.03|0.03|A|F|1992-11-10|1992-09-23|1992-12-08|TAKE BACK RETURN|RAIL|arefully. unusual r| +49640|552028|2029|2|3|3240.00|0.03|0.00|A|F|1992-09-11|1992-09-09|1992-09-21|DELIVER IN PERSON|MAIL|the unusual theodolites. furi| +49640|929128|16683|3|32|37026.56|0.00|0.08|A|F|1992-10-26|1992-09-13|1992-11-20|TAKE BACK RETURN|TRUCK|ndencies among the regular, silent re| +49640|851346|1347|4|2|2594.60|0.09|0.03|R|F|1992-08-09|1992-09-20|1992-08-20|DELIVER IN PERSON|FOB|accounts promise. slyly even| +49640|567097|17098|5|20|23281.40|0.06|0.06|R|F|1992-11-22|1992-10-09|1992-12-21|DELIVER IN PERSON|RAIL|g packages are carefully. slyly regular cou| +49641|75873|876|1|50|92443.50|0.04|0.05|N|O|1996-02-24|1995-12-29|1996-03-03|NONE|SHIP|lar reques| +49641|189812|27322|2|13|24723.53|0.10|0.01|N|O|1996-01-11|1996-02-12|1996-01-22|TAKE BACK RETURN|FOB|structions. regular, regular depo| +49641|167232|4742|3|15|19488.45|0.07|0.05|N|O|1996-03-03|1996-02-13|1996-03-06|DELIVER IN PERSON|MAIL|fily about the slyly regular fo| +49641|662877|417|4|31|57035.04|0.01|0.03|N|O|1996-01-10|1996-01-07|1996-02-06|TAKE BACK RETURN|FOB|structions nag quickly above | +49641|966903|4461|5|16|31517.76|0.07|0.04|N|O|1995-11-19|1996-01-26|1995-12-15|COLLECT COD|REG AIR| ironic instruction| +49641|736744|24287|6|28|49859.88|0.05|0.00|N|O|1996-01-06|1996-01-25|1996-01-08|DELIVER IN PERSON|SHIP|lets after the blithely special pack| +49641|439613|39614|7|26|40367.34|0.01|0.03|N|O|1995-11-18|1996-02-03|1995-12-12|NONE|TRUCK|the slyly ironic accounts. evenl| +49642|565826|28338|1|50|94590.00|0.10|0.06|R|F|1993-02-12|1992-11-23|1993-02-13|DELIVER IN PERSON|SHIP| pearls. carefully furious theodolites | +49642|834123|21672|2|32|33826.56|0.05|0.08|R|F|1992-12-11|1992-12-02|1992-12-21|COLLECT COD|FOB|ymptotes haggle carefully against the quic| +49643|315393|40406|1|26|36617.88|0.06|0.07|A|F|1993-07-15|1993-06-27|1993-08-01|COLLECT COD|SHIP|sly pending packages. stealthily eve| +49643|804831|17348|2|25|43394.75|0.09|0.05|R|F|1993-09-03|1993-07-07|1993-09-30|DELIVER IN PERSON|TRUCK|latelets. furiously even deposits | +49643|778174|28175|3|27|33807.78|0.07|0.04|A|F|1993-08-26|1993-06-21|1993-09-15|COLLECT COD|TRUCK| the quickly ironic ins| +49643|754049|16565|4|3|3309.03|0.09|0.02|R|F|1993-07-02|1993-06-25|1993-07-13|NONE|SHIP|ets use slyly quickly unusual deco| +49643|301336|1337|5|37|49480.84|0.03|0.07|A|F|1993-05-13|1993-07-26|1993-06-08|COLLECT COD|FOB|ole slyly along the | +49643|542622|5133|6|2|3329.20|0.08|0.07|A|F|1993-05-29|1993-07-17|1993-06-11|TAKE BACK RETURN|REG AIR|even packages haggle slyly after the quic| +49644|200180|37693|1|9|9721.53|0.05|0.02|A|F|1994-09-16|1994-09-08|1994-09-24|COLLECT COD|REG AIR| the final packag| +49644|419685|19686|2|37|59372.42|0.05|0.05|R|F|1994-07-27|1994-10-02|1994-08-03|NONE|FOB|oss the silent, final r| +49644|629874|42387|3|25|45096.00|0.04|0.03|A|F|1994-09-26|1994-09-02|1994-10-09|TAKE BACK RETURN|RAIL|y about the furiously regular instructi| +49645|240680|28193|1|50|81033.50|0.08|0.02|A|F|1995-04-19|1995-03-11|1995-04-22|TAKE BACK RETURN|SHIP|the slyly even instruct| +49645|96488|21491|2|27|40080.96|0.03|0.08|A|F|1995-04-06|1995-03-08|1995-04-19|TAKE BACK RETURN|TRUCK|ing, bold ideas boost.| +49645|657028|19542|3|38|37429.62|0.02|0.04|A|F|1995-05-18|1995-03-08|1995-06-11|COLLECT COD|MAIL|egular packages are around | +49646|516437|16438|1|25|36335.25|0.00|0.06|A|F|1994-10-12|1994-10-20|1994-10-13|DELIVER IN PERSON|TRUCK|uickly ironic packages are fur| +49646|748573|36116|2|49|79455.46|0.07|0.03|R|F|1994-12-31|1994-10-20|1995-01-18|DELIVER IN PERSON|SHIP|efully among the blithely unusual re| +49646|262216|12217|3|4|4712.80|0.09|0.03|A|F|1994-12-01|1994-11-06|1994-12-20|COLLECT COD|FOB|nic packages sleep about the qu| +49646|54146|16648|4|40|44005.60|0.02|0.07|R|F|1994-12-16|1994-10-15|1994-12-17|COLLECT COD|RAIL|row furious| +49646|26598|26599|5|40|60983.60|0.06|0.00|A|F|1994-12-15|1994-11-18|1995-01-11|DELIVER IN PERSON|FOB|s wake permanently unusua| +49646|24243|36744|6|34|39686.16|0.04|0.04|R|F|1994-12-29|1994-11-19|1995-01-03|NONE|REG AIR|p quickly re| +49647|133961|21468|1|6|11969.76|0.06|0.00|A|F|1993-11-02|1993-09-01|1993-11-25|NONE|FOB|ic pinto beans a| +49647|474765|24766|2|18|31315.32|0.04|0.01|A|F|1993-11-06|1993-08-30|1993-11-21|NONE|TRUCK|ly. bold, pendi| +49647|367407|42422|3|25|36859.75|0.05|0.06|R|F|1993-10-07|1993-10-06|1993-11-04|NONE|AIR|g among the express packages. caref| +49672|161251|11252|1|10|13122.50|0.10|0.07|R|F|1992-08-29|1992-10-31|1992-09-24|COLLECT COD|MAIL|e. carefully regular ideas around th| +49672|145451|32958|2|18|26936.10|0.04|0.02|R|F|1992-10-13|1992-11-04|1992-11-12|DELIVER IN PERSON|RAIL|jole quickly silently final pearls| +49672|592532|5044|3|20|32490.20|0.07|0.02|A|F|1992-11-02|1992-09-25|1992-11-20|DELIVER IN PERSON|MAIL|ily express| +49673|859507|9508|1|26|38127.96|0.01|0.06|N|O|1996-02-15|1996-03-16|1996-03-03|TAKE BACK RETURN|REG AIR|ar requests use carefull| +49673|721346|46375|2|43|58794.33|0.05|0.07|N|O|1996-04-19|1996-03-24|1996-05-14|NONE|FOB|sleep accord| +49673|648786|11299|3|12|20817.00|0.08|0.02|N|O|1996-03-04|1996-03-01|1996-04-01|COLLECT COD|SHIP|al packages. requests above | +49673|137283|49786|4|26|34327.28|0.03|0.05|N|O|1996-02-29|1996-02-28|1996-03-29|NONE|FOB|heodolites cajole fluffil| +49674|296662|34178|1|48|79615.20|0.00|0.07|N|O|1997-11-01|1997-08-26|1997-11-14|COLLECT COD|FOB|lar requests. special requests cajol| +49674|986670|49190|2|1|1756.63|0.02|0.00|N|O|1997-09-15|1997-09-24|1997-09-24|COLLECT COD|MAIL|regular realms. quickly regular requests de| +49674|947249|22286|3|41|53144.20|0.05|0.00|N|O|1997-08-21|1997-08-26|1997-08-23|NONE|FOB|y ironic pains cajole. iron| +49674|408683|46208|4|17|27058.22|0.05|0.06|N|O|1997-09-10|1997-10-06|1997-09-26|NONE|AIR|ter the pending, bo| +49674|728574|41089|5|8|12820.32|0.05|0.02|N|O|1997-10-11|1997-08-16|1997-11-07|COLLECT COD|MAIL|affix carefully special de| +49675|740943|40944|1|1|1983.91|0.02|0.02|A|F|1993-11-17|1993-11-03|1993-11-25|NONE|FOB|aggle. blithel| +49675|20135|20136|2|16|16882.08|0.00|0.03|A|F|1993-12-12|1993-12-02|1993-12-14|TAKE BACK RETURN|TRUCK|l requests. bold platelets alongside of th| +49675|406024|6025|3|32|29760.00|0.10|0.05|A|F|1994-01-27|1993-11-21|1994-02-02|NONE|REG AIR|gainst the ironic Tiresias| +49675|44458|19459|4|9|12622.05|0.03|0.05|A|F|1993-10-31|1993-12-06|1993-11-05|NONE|AIR|tions. blithely final pinto beans wake acco| +49675|203509|16014|5|27|38137.23|0.00|0.05|A|F|1993-10-28|1993-12-21|1993-11-24|NONE|TRUCK|es. final | +49676|239070|1575|1|24|24217.44|0.08|0.08|R|F|1994-11-17|1995-01-06|1994-12-05|TAKE BACK RETURN|REG AIR|s are beneath the orbits. specia| +49676|39868|27369|2|9|16270.74|0.05|0.03|A|F|1995-02-19|1995-01-23|1995-03-17|TAKE BACK RETURN|SHIP|ic requests are furiously f| +49676|54260|29263|3|28|33999.28|0.01|0.03|R|F|1994-12-27|1995-01-08|1995-01-07|COLLECT COD|FOB|thin foxes alon| +49676|944215|19252|4|40|50366.80|0.02|0.05|R|F|1994-11-27|1994-12-16|1994-12-27|TAKE BACK RETURN|REG AIR|hely regular courts sleep bravely slyl| +49676|413094|38111|5|29|29205.03|0.08|0.05|A|F|1995-01-22|1995-01-10|1995-02-16|TAKE BACK RETURN|FOB|he carefully even asymptotes| +49677|103276|3277|1|17|21747.59|0.04|0.01|A|F|1994-02-21|1994-01-23|1994-03-23|COLLECT COD|SHIP|besides the bold, unusual packages. foxe| +49677|747241|9756|2|45|57969.45|0.05|0.07|A|F|1994-03-04|1994-01-09|1994-03-07|DELIVER IN PERSON|TRUCK| ironic deposits detect slyly around| +49677|864634|27152|3|14|22380.26|0.04|0.01|R|F|1993-12-18|1994-02-25|1994-01-09|DELIVER IN PERSON|AIR|ar, ironic de| +49677|896660|9178|4|22|36445.64|0.00|0.04|A|F|1994-03-18|1994-02-26|1994-03-31|DELIVER IN PERSON|TRUCK| beans. deposits ar| +49677|159487|34494|5|27|41754.96|0.02|0.00|R|F|1994-03-18|1994-01-08|1994-04-07|DELIVER IN PERSON|RAIL|ing to the fluffily bold theodolites. s| +49678|544935|19956|1|22|43558.02|0.06|0.01|N|O|1996-07-04|1996-08-23|1996-07-30|TAKE BACK RETURN|RAIL| braids; special ideas sle| +49678|721636|46665|2|15|24864.00|0.02|0.06|N|O|1996-07-28|1996-08-14|1996-08-06|TAKE BACK RETURN|AIR|ly along the even tithes. special, re| +49679|224094|49103|1|5|5090.40|0.03|0.08|N|O|1996-04-30|1996-06-17|1996-05-08|COLLECT COD|MAIL|ies nag unusual theodolites. idl| +49679|333823|21342|2|2|3713.62|0.06|0.05|N|O|1996-06-13|1996-05-20|1996-06-26|COLLECT COD|RAIL| ironic requests wake carefully| +49679|550745|746|3|29|52075.88|0.07|0.02|N|O|1996-08-12|1996-07-06|1996-09-01|TAKE BACK RETURN|RAIL|lar, regular ex| +49704|75754|13258|1|1|1729.75|0.07|0.00|A|F|1994-02-05|1994-02-20|1994-02-21|DELIVER IN PERSON|REG AIR|er the blithely pending deposits cajole bli| +49704|184783|22293|2|31|57901.18|0.07|0.07|A|F|1994-03-25|1994-04-09|1994-04-18|DELIVER IN PERSON|RAIL|ly regular accoun| +49705|252643|27654|1|28|44677.64|0.01|0.04|N|O|1996-02-12|1996-03-23|1996-02-18|DELIVER IN PERSON|SHIP|tect whithout the slyly ironi| +49705|161173|36180|2|29|35790.93|0.10|0.08|N|O|1996-01-23|1996-02-24|1996-02-21|NONE|TRUCK|old, special accou| +49706|320969|8488|1|29|57708.55|0.00|0.08|R|F|1992-05-27|1992-03-27|1992-06-08|DELIVER IN PERSON|TRUCK|ructions grow bl| +49706|522010|9541|2|23|23735.77|0.09|0.08|R|F|1992-02-26|1992-04-10|1992-03-11|TAKE BACK RETURN|TRUCK|fily. regular, regula| +49707|885870|23422|1|29|53819.07|0.04|0.07|N|O|1996-08-25|1996-09-27|1996-09-13|COLLECT COD|TRUCK|ly about the fluffily even packages| +49707|805278|5279|2|33|39046.59|0.03|0.05|N|O|1996-10-20|1996-09-19|1996-11-10|TAKE BACK RETURN|REG AIR|ng deposits| +49707|292717|42718|3|29|49581.30|0.05|0.06|N|O|1996-11-18|1996-10-06|1996-11-23|COLLECT COD|TRUCK|st the quickly pending courts. careful| +49707|682100|44614|4|18|19477.26|0.09|0.08|N|O|1996-10-16|1996-09-24|1996-10-27|COLLECT COD|FOB|ges after the carefully even theodolites wa| +49707|40679|28180|5|36|58308.12|0.07|0.02|N|O|1996-11-15|1996-09-14|1996-12-01|COLLECT COD|MAIL|blithely unusual pac| +49707|677340|27341|6|46|60596.26|0.10|0.03|N|O|1996-09-13|1996-10-23|1996-10-07|NONE|AIR|fily. caref| +49708|395647|45648|1|23|40080.49|0.01|0.01|A|F|1992-12-14|1992-12-31|1993-01-01|NONE|RAIL| wake. slyly pending packages sleep fur| +49709|434507|9524|1|37|53334.76|0.03|0.02|R|F|1993-07-21|1993-07-24|1993-07-24|NONE|MAIL|oxes haggle quickly. pending| +49709|750415|12931|2|30|43961.40|0.04|0.03|R|F|1993-06-07|1993-08-15|1993-06-22|NONE|TRUCK|s against th| +49709|220147|20148|3|11|11738.43|0.01|0.05|R|F|1993-09-10|1993-07-13|1993-10-06|DELIVER IN PERSON|FOB|ironic packages. idly| +49710|558686|21198|1|30|52339.80|0.07|0.07|N|O|1998-05-01|1998-06-05|1998-05-18|COLLECT COD|SHIP|gainst the fluffily regu| +49710|829351|41868|2|44|56333.64|0.07|0.07|N|O|1998-06-29|1998-06-24|1998-07-09|TAKE BACK RETURN|TRUCK|e daringly unus| +49711|867576|17577|1|24|37044.72|0.09|0.08|N|O|1997-03-28|1997-04-15|1997-04-01|COLLECT COD|MAIL|sly regular dependencies. accounts nag quic| +49711|343849|43850|2|3|5678.49|0.01|0.05|N|O|1997-04-02|1997-04-16|1997-04-26|NONE|MAIL|riously unusual instructio| +49711|61882|36885|3|3|5531.64|0.03|0.02|N|O|1997-02-17|1997-03-22|1997-03-05|TAKE BACK RETURN|SHIP|ructions. slyly ironic pint| +49736|546339|21360|1|6|8311.86|0.06|0.07|N|O|1996-02-01|1996-04-25|1996-02-06|DELIVER IN PERSON|REG AIR|he carefully ironi| +49737|974788|37308|1|43|80097.82|0.08|0.01|N|O|1997-10-10|1997-07-28|1997-11-09|NONE|AIR|elets boost against the| +49737|256506|6507|2|11|16087.39|0.10|0.07|N|O|1997-06-25|1997-09-11|1997-07-04|COLLECT COD|MAIL|egular deposits wake slyly iro| +49737|91213|41214|3|35|42147.35|0.08|0.08|N|O|1997-09-06|1997-09-03|1997-09-18|NONE|RAIL|accounts. bravely regular instructions | +49737|15734|3235|4|17|28045.41|0.04|0.03|N|O|1997-09-04|1997-09-03|1997-09-19|DELIVER IN PERSON|MAIL|es. slyly special foxes haggle quickly| +49737|433413|8430|5|6|8078.34|0.00|0.07|N|O|1997-10-09|1997-08-21|1997-10-13|COLLECT COD|AIR| final depe| +49737|359199|21707|6|17|21389.06|0.01|0.02|N|O|1997-09-02|1997-08-07|1997-09-06|COLLECT COD|RAIL| accounts. even, regular ac| +49738|39113|14114|1|1|1052.11|0.01|0.05|R|F|1993-11-07|1993-11-04|1993-12-02|DELIVER IN PERSON|TRUCK|out the expres| +49738|370228|20229|2|6|7789.26|0.02|0.06|A|F|1993-11-18|1993-11-08|1993-12-10|NONE|TRUCK|ial depend| +49738|413265|790|3|12|14138.88|0.05|0.00|A|F|1993-09-09|1993-10-13|1993-10-07|TAKE BACK RETURN|MAIL| final braids cajole carefully even Tir| +49738|735124|35125|4|5|5795.45|0.10|0.03|R|F|1993-11-06|1993-10-11|1993-11-13|NONE|TRUCK| slyly after the quickly ironic instru| +49738|226865|26866|5|26|46588.10|0.06|0.00|R|F|1993-10-06|1993-11-17|1993-10-16|COLLECT COD|RAIL|nic requests nag blith| +49738|915723|15724|6|4|6954.72|0.01|0.08|A|F|1993-11-18|1993-10-18|1993-12-01|TAKE BACK RETURN|TRUCK|leep slyly blithely bold theo| +49739|525679|38190|1|7|11932.55|0.00|0.06|N|O|1995-08-11|1995-05-24|1995-08-13|NONE|SHIP|riously ev| +49739|74165|11669|2|42|47844.72|0.01|0.03|R|F|1995-06-16|1995-06-02|1995-06-17|COLLECT COD|SHIP|regular, special deposits a| +49739|476945|14473|3|15|28828.80|0.02|0.08|N|F|1995-06-07|1995-06-14|1995-07-06|COLLECT COD|SHIP|c instructions affix. ironic requests integ| +49739|11587|24088|4|35|52450.30|0.10|0.06|N|O|1995-06-22|1995-06-01|1995-06-26|TAKE BACK RETURN|MAIL|l packages. pending real| +49739|726759|14302|5|25|44643.00|0.08|0.02|N|O|1995-07-11|1995-06-05|1995-07-16|COLLECT COD|REG AIR|s breach carefully al| +49739|633811|33812|6|1|1744.78|0.05|0.01|A|F|1995-06-03|1995-05-31|1995-06-11|DELIVER IN PERSON|TRUCK|-- requests above the final pinto bea| +49739|458763|46291|7|23|39600.02|0.10|0.05|R|F|1995-05-15|1995-05-28|1995-06-13|DELIVER IN PERSON|MAIL|endencies wa| +49740|428119|28120|1|28|29318.52|0.08|0.07|R|F|1992-06-04|1992-07-20|1992-06-16|NONE|TRUCK|ealthily ironic ideas-- furio| +49740|382803|7818|2|23|43373.17|0.05|0.03|R|F|1992-07-25|1992-06-18|1992-07-29|COLLECT COD|SHIP|ld dependencies cajole pend| +49740|765948|3494|3|34|68472.94|0.09|0.04|R|F|1992-07-17|1992-08-10|1992-07-31|DELIVER IN PERSON|AIR|ay furiously after the blithely regular in| +49740|274564|37070|4|5|7692.75|0.02|0.02|A|F|1992-09-12|1992-07-25|1992-09-26|COLLECT COD|MAIL|fily about the even packages! slyly final| +49741|582224|32225|1|19|24817.80|0.03|0.05|N|O|1996-01-26|1996-02-12|1996-01-28|COLLECT COD|TRUCK|l ideas unwind furiously accor| +49741|438049|13066|2|6|5922.12|0.06|0.02|N|O|1996-01-26|1996-01-27|1996-02-07|TAKE BACK RETURN|REG AIR|carefully. quick| +49741|286647|24163|3|38|62077.94|0.10|0.07|N|O|1996-01-06|1996-03-01|1996-01-17|NONE|MAIL| never special theodolites haggl| +49742|454883|42411|1|39|71676.54|0.01|0.04|R|F|1994-10-09|1994-09-22|1994-10-19|DELIVER IN PERSON|AIR|ly ironic deposits ar| +49742|211164|23669|2|36|38705.40|0.10|0.03|A|F|1994-11-26|1994-10-01|1994-12-24|NONE|AIR|accounts. blithely silent pinto bea| +49742|19575|7076|3|40|59782.80|0.07|0.03|R|F|1994-09-02|1994-09-05|1994-09-25|NONE|FOB|nts. fluff| +49742|995019|45020|4|42|46786.74|0.06|0.05|R|F|1994-11-04|1994-09-26|1994-11-28|COLLECT COD|FOB|gle. furiou| +49742|274199|49210|5|18|21117.24|0.06|0.08|A|F|1994-09-15|1994-09-14|1994-09-21|DELIVER IN PERSON|FOB|ehind the furiously ironi| +49742|449308|36833|6|48|60349.44|0.08|0.01|R|F|1994-11-02|1994-10-11|1994-11-27|COLLECT COD|MAIL| pinto beans cajole carefully. daring| +49742|512032|49563|7|16|16704.16|0.01|0.07|R|F|1994-09-18|1994-09-28|1994-10-11|COLLECT COD|AIR|final dependencies. carefully even depos| +49743|708545|33574|1|31|48158.81|0.09|0.05|N|O|1997-10-10|1997-12-22|1997-10-17|TAKE BACK RETURN|FOB|encies? the| +49743|510449|22960|2|10|14594.20|0.09|0.06|N|O|1997-12-07|1997-12-08|1997-12-31|NONE|FOB|le carefull| +49743|112030|24533|3|2|2084.06|0.02|0.07|N|O|1998-01-14|1997-12-15|1998-02-13|DELIVER IN PERSON|REG AIR|cording to the accounts.| +49743|882709|7744|4|28|47366.48|0.04|0.05|N|O|1997-11-27|1997-12-09|1997-12-01|DELIVER IN PERSON|AIR| instructions cajole furiously blith| +49768|906699|6700|1|38|64814.70|0.09|0.07|A|F|1994-05-28|1994-07-27|1994-06-06|DELIVER IN PERSON|AIR|oss the quick| +49768|879675|17227|2|48|79422.24|0.07|0.08|A|F|1994-06-05|1994-08-20|1994-06-26|TAKE BACK RETURN|TRUCK|thrash after the re| +49768|683206|33207|3|49|58269.33|0.07|0.00|R|F|1994-09-04|1994-07-13|1994-09-27|NONE|REG AIR|ithely final warthogs! furiously | +49768|638496|38497|4|36|51640.56|0.03|0.04|R|F|1994-09-24|1994-07-19|1994-10-12|TAKE BACK RETURN|SHIP|uriously even packages nag. e| +49769|489052|1562|1|24|24984.72|0.09|0.07|N|O|1996-08-31|1996-08-31|1996-09-23|COLLECT COD|REG AIR|y tithes. care| +49769|492218|4728|2|25|30254.75|0.08|0.00|N|O|1996-09-10|1996-09-11|1996-09-24|TAKE BACK RETURN|MAIL|s x-ray blithe| +49769|691986|17013|3|7|13845.65|0.02|0.06|N|O|1996-07-30|1996-08-08|1996-08-13|COLLECT COD|RAIL|cies use finally furiously final acco| +49769|201503|1504|4|45|63202.05|0.09|0.05|N|O|1996-10-06|1996-08-14|1996-10-19|TAKE BACK RETURN|SHIP|ns wake above the ironic| +49769|645939|33476|5|31|58431.90|0.09|0.08|N|O|1996-06-18|1996-07-23|1996-07-05|COLLECT COD|RAIL| dependencies haggle furious| +49769|293639|43640|6|35|57141.70|0.09|0.08|N|O|1996-07-03|1996-08-29|1996-07-20|COLLECT COD|FOB|ress packages sleep quickly even de| +49769|188250|754|7|36|48177.00|0.06|0.07|N|O|1996-06-17|1996-07-21|1996-07-07|TAKE BACK RETURN|FOB|r the never regular foxes. ironic| +49770|914193|26712|1|42|50700.30|0.04|0.08|N|O|1996-10-10|1996-08-17|1996-10-29|NONE|REG AIR|uests. carefully regula| +49770|834045|34046|2|48|46992.00|0.07|0.01|N|O|1996-07-08|1996-09-02|1996-07-27|COLLECT COD|RAIL|y furious accounts. quickly even foxes wa| +49770|783551|46067|3|48|78456.96|0.00|0.07|N|O|1996-08-12|1996-08-22|1996-09-09|COLLECT COD|AIR|ites sleep slyly. fluffily even excuses in| +49771|207071|19576|1|17|16627.02|0.02|0.03|R|F|1992-12-17|1992-11-19|1993-01-13|TAKE BACK RETURN|TRUCK|ironic waters integr| +49771|232098|44603|2|15|15451.20|0.08|0.06|A|F|1992-11-08|1992-09-27|1992-11-11|DELIVER IN PERSON|SHIP|ultipliers haggle carefu| +49771|856698|31733|3|30|49639.50|0.00|0.00|A|F|1992-11-03|1992-09-29|1992-11-13|TAKE BACK RETURN|FOB|le. pending, ironic re| +49771|509994|9995|4|45|90178.65|0.09|0.07|R|F|1992-09-09|1992-10-19|1992-09-27|COLLECT COD|FOB| silently after the slyly bol| +49772|251885|1886|1|15|27553.05|0.01|0.02|N|O|1996-11-02|1996-08-21|1996-11-03|TAKE BACK RETURN|RAIL|e blithely ironic ideas. | +49772|415719|28228|2|8|13077.52|0.02|0.06|N|O|1996-09-29|1996-10-14|1996-10-06|COLLECT COD|FOB|dolites? even, dogged deposits wake b| +49772|988308|25866|3|39|54454.14|0.08|0.06|N|O|1996-07-26|1996-10-16|1996-07-31|COLLECT COD|MAIL|c grouches. quickly unusual ins| +49773|893259|5777|1|10|12522.10|0.00|0.08|R|F|1994-08-24|1994-08-14|1994-09-08|NONE|REG AIR| silent packages. furiously | +49773|1243|26244|2|44|50346.56|0.06|0.02|A|F|1994-07-11|1994-08-29|1994-07-12|DELIVER IN PERSON|AIR| fluffily regular dependencie| +49774|270429|32935|1|14|19591.74|0.07|0.03|N|O|1997-04-28|1997-05-17|1997-05-13|NONE|AIR| carefully express platelets wake ca| +49774|89143|1645|2|30|33964.20|0.00|0.04|N|O|1997-04-07|1997-04-07|1997-05-03|DELIVER IN PERSON|MAIL|lly unusual dependencies. final r| +49774|225965|13478|3|37|69965.15|0.07|0.01|N|O|1997-04-08|1997-05-13|1997-05-04|DELIVER IN PERSON|AIR|ans wake about | +49774|789097|14128|4|38|45070.28|0.08|0.05|N|O|1997-03-21|1997-04-02|1997-03-31|COLLECT COD|SHIP|ts. even reques| +49775|214122|14123|1|41|42480.51|0.04|0.00|N|O|1997-08-15|1997-09-16|1997-09-10|TAKE BACK RETURN|FOB|ccounts. slyly even platelets use sly| +49775|732313|44828|2|40|53811.20|0.08|0.03|N|O|1997-09-04|1997-11-02|1997-09-12|TAKE BACK RETURN|FOB| thinly silent instructions w| +49800|748591|36134|1|27|44268.12|0.06|0.00|A|F|1994-09-22|1994-09-19|1994-10-17|COLLECT COD|MAIL| instructions; slyly final d| +49800|565801|40824|2|23|42935.94|0.00|0.02|A|F|1994-09-10|1994-09-07|1994-09-27|DELIVER IN PERSON|AIR|g accounts. pending req| +49800|404948|29965|3|43|79675.56|0.06|0.03|A|F|1994-11-21|1994-09-03|1994-12-21|TAKE BACK RETURN|FOB|ymptotes are carefu| +49800|957046|32085|4|39|43017.00|0.00|0.04|A|F|1994-09-26|1994-10-01|1994-10-01|DELIVER IN PERSON|SHIP|ve the instru| +49800|62861|25363|5|13|23710.18|0.01|0.07|A|F|1994-09-01|1994-09-17|1994-09-22|DELIVER IN PERSON|REG AIR|equests cajole unusual deposits.| +49800|489116|26644|6|7|7735.63|0.06|0.08|R|F|1994-10-05|1994-10-05|1994-10-17|DELIVER IN PERSON|REG AIR|s are never across the fluffily ex| +49800|560799|48333|7|28|52073.56|0.03|0.01|R|F|1994-08-09|1994-09-14|1994-08-26|DELIVER IN PERSON|TRUCK|y. requests cajole carefully. pending packa| +49801|335428|47935|1|23|33658.43|0.03|0.01|N|O|1995-06-30|1995-07-24|1995-07-23|COLLECT COD|FOB|eep furiously slyly eve| +49801|529774|42285|2|14|25252.50|0.02|0.06|N|O|1995-07-08|1995-07-30|1995-08-06|DELIVER IN PERSON|SHIP| accounts are. final packages haggle furio| +49801|900352|37907|3|29|39216.99|0.03|0.00|N|O|1995-07-09|1995-07-22|1995-07-18|COLLECT COD|AIR|ound the blithely silent f| +49801|201167|1168|4|4|4272.60|0.02|0.05|N|O|1995-06-25|1995-07-28|1995-07-15|NONE|TRUCK|nag accounts. packages across| +49801|999715|12235|5|34|61698.78|0.10|0.07|N|O|1995-06-27|1995-08-24|1995-07-23|DELIVER IN PERSON|TRUCK|gle about the even requests. carefull| +49801|197913|10417|6|28|56305.48|0.02|0.06|N|O|1995-08-08|1995-08-24|1995-08-17|COLLECT COD|FOB| after the bold| +49802|197619|35129|1|28|48065.08|0.02|0.08|N|O|1997-08-04|1997-07-25|1997-08-11|NONE|TRUCK|lly regular acc| +49802|369355|19356|2|28|39881.52|0.01|0.03|N|O|1997-06-15|1997-08-09|1997-06-21|NONE|RAIL|slyly final| +49802|744004|6519|3|31|32487.07|0.00|0.06|N|O|1997-07-25|1997-07-19|1997-08-14|TAKE BACK RETURN|RAIL|s. final instructions sleep across the sly| +49803|2295|27296|1|13|15564.77|0.10|0.08|R|F|1993-05-15|1993-06-26|1993-05-30|TAKE BACK RETURN|TRUCK|about the fluffily special| +49803|562298|24810|2|9|12242.43|0.09|0.04|R|F|1993-07-23|1993-07-22|1993-07-24|TAKE BACK RETURN|RAIL|ial accounts. final platelets| +49804|503217|15728|1|37|45147.03|0.04|0.08|N|O|1997-07-14|1997-07-22|1997-08-05|DELIVER IN PERSON|FOB| the pending, reg| +49804|562301|24813|2|44|59984.32|0.08|0.00|N|O|1997-10-09|1997-08-20|1997-11-05|DELIVER IN PERSON|SHIP|blithely sly p| +49804|591842|29376|3|44|85088.08|0.10|0.05|N|O|1997-07-30|1997-08-10|1997-08-22|NONE|AIR| the slyly bold requests. final, ironic th| +49804|73588|23589|4|37|57778.46|0.08|0.03|N|O|1997-08-17|1997-08-10|1997-08-30|NONE|REG AIR| sentiments. sl| +49804|790765|15796|5|26|48248.98|0.05|0.06|N|O|1997-06-22|1997-09-08|1997-07-08|NONE|SHIP| haggle fl| +49804|372696|10218|6|36|63672.48|0.03|0.06|N|O|1997-09-08|1997-07-29|1997-09-29|DELIVER IN PERSON|AIR| requests. e| +49804|889430|26982|7|22|31226.58|0.00|0.07|N|O|1997-06-17|1997-08-20|1997-06-30|COLLECT COD|FOB|lithely reg| +49805|636438|11463|1|1|1374.40|0.06|0.08|N|O|1996-11-05|1996-10-04|1996-11-09|COLLECT COD|FOB|ly! quickly final deposits across the s| +49805|611656|36681|2|36|56434.32|0.09|0.03|N|O|1996-11-14|1996-10-16|1996-12-08|NONE|TRUCK| pending platel| +49805|94507|32011|3|41|61561.50|0.01|0.04|N|O|1996-09-05|1996-10-31|1996-09-30|NONE|FOB|s haggle fluffily always| +49805|366259|16260|4|28|37106.72|0.09|0.05|N|O|1996-12-06|1996-10-06|1996-12-28|DELIVER IN PERSON|REG AIR|eposits-- ironic depos| +49805|710951|35980|5|37|72591.04|0.02|0.07|N|O|1996-12-07|1996-10-10|1996-12-17|NONE|AIR|pinto beans. bold e| +49805|946623|34178|6|17|28382.86|0.10|0.04|N|O|1996-09-26|1996-11-24|1996-10-23|NONE|AIR|quests are slyly unusual deposits. depths| +49806|165470|2980|1|28|42993.16|0.09|0.05|R|F|1995-02-02|1994-12-30|1995-02-17|COLLECT COD|AIR|l instructions haggle. quickly enticing| +49806|51206|26209|2|18|20829.60|0.04|0.05|A|F|1995-01-01|1995-02-09|1995-01-13|DELIVER IN PERSON|AIR|fully final platelets sleep slyly. blithel| +49806|617054|4591|3|24|23304.48|0.04|0.05|A|F|1995-02-13|1995-02-01|1995-03-11|DELIVER IN PERSON|RAIL| to the silent f| +49806|818609|43642|4|28|42771.68|0.07|0.08|A|F|1994-12-13|1994-12-30|1994-12-28|DELIVER IN PERSON|RAIL|s pending dolphins. pe| +49806|349420|49421|5|45|66123.45|0.06|0.00|R|F|1995-03-11|1995-02-24|1995-04-03|DELIVER IN PERSON|REG AIR|even ideas. fluffily express asymptotes| +49807|166851|16852|1|14|26849.90|0.06|0.06|N|O|1997-08-01|1997-09-21|1997-08-20|NONE|MAIL|ly final pinto be| +49807|263059|575|2|31|31683.24|0.03|0.03|N|O|1997-07-11|1997-09-26|1997-07-29|TAKE BACK RETURN|REG AIR| pending ideas| +49807|229094|29095|3|39|39900.12|0.09|0.04|N|O|1997-09-13|1997-09-05|1997-09-17|COLLECT COD|MAIL|ake furiously| +49832|535940|23471|1|41|81012.72|0.04|0.08|N|O|1995-12-18|1996-03-11|1996-01-15|TAKE BACK RETURN|RAIL|ut the special ideas. slyly bold requests| +49832|541313|28844|2|19|25731.51|0.06|0.00|N|O|1996-02-10|1996-02-27|1996-02-27|TAKE BACK RETURN|RAIL|ructions. fu| +49833|299092|49093|1|23|25094.84|0.00|0.07|A|F|1994-06-13|1994-04-29|1994-06-19|NONE|MAIL|. slyly ironic requests are| +49834|911410|11411|1|35|49747.95|0.10|0.01|N|O|1998-01-26|1998-03-25|1998-02-15|TAKE BACK RETURN|REG AIR|fter the perma| +49834|61033|11034|2|15|14910.45|0.00|0.08|N|O|1998-05-07|1998-02-21|1998-05-26|NONE|FOB|regular excuses sleep slyly unusual deposit| +49834|764911|2457|3|35|69155.80|0.00|0.00|N|O|1998-03-16|1998-02-13|1998-03-18|DELIVER IN PERSON|FOB|ual packages. final, unusual ideas accordi| +49835|773582|48613|1|10|16555.50|0.08|0.07|R|F|1993-03-14|1993-01-28|1993-04-08|NONE|REG AIR|osits. carefully ironic deposits| +49835|585548|48060|2|42|68607.84|0.03|0.01|A|F|1992-12-07|1992-12-26|1993-01-06|NONE|SHIP|oubt carefully alongside of th| +49835|291826|29342|3|34|61805.54|0.02|0.08|A|F|1992-12-14|1993-01-07|1992-12-29|NONE|AIR| boost blithely furiously un| +49835|707039|32068|4|19|19874.00|0.04|0.04|A|F|1993-03-08|1993-01-10|1993-03-25|NONE|AIR|furiously regular dolphins. blithel| +49835|189930|39931|5|17|34338.81|0.03|0.00|A|F|1993-01-09|1993-01-16|1993-01-18|COLLECT COD|MAIL|symptotes. regularly express theodolites ar| +49836|703143|40686|1|3|3438.33|0.04|0.03|N|O|1998-06-17|1998-06-03|1998-06-27|DELIVER IN PERSON|MAIL|xpress packages cajole foxes. slow| +49836|721584|21585|2|29|46560.95|0.10|0.05|N|O|1998-04-12|1998-05-16|1998-04-22|COLLECT COD|FOB|ptotes. accounts would boost slyl| +49836|653672|3673|3|49|79656.36|0.04|0.07|N|O|1998-03-24|1998-05-05|1998-04-08|TAKE BACK RETURN|FOB|xes sleep against | +49836|259619|47135|4|6|9471.60|0.10|0.03|N|O|1998-05-01|1998-05-26|1998-05-05|TAKE BACK RETURN|RAIL|ns. furiously final deposits against th| +49836|401891|1892|5|39|69921.93|0.04|0.08|N|O|1998-06-21|1998-04-18|1998-06-28|TAKE BACK RETURN|MAIL|? blithely brave depo| +49836|569442|44465|6|14|21159.88|0.02|0.03|N|O|1998-03-24|1998-05-07|1998-03-30|DELIVER IN PERSON|MAIL|ironic theodolites. slyly expr| +49837|434612|9629|1|40|61863.60|0.04|0.03|A|F|1993-06-17|1993-07-15|1993-06-18|DELIVER IN PERSON|FOB|impress enticin| +49837|516545|29056|2|50|78076.00|0.00|0.02|R|F|1993-07-25|1993-07-03|1993-08-12|TAKE BACK RETURN|RAIL|s are furiously alongside of th| +49837|563571|13572|3|34|55574.70|0.02|0.07|A|F|1993-06-25|1993-07-19|1993-07-21|TAKE BACK RETURN|MAIL|the ironic,| +49838|834960|22509|1|23|43583.16|0.00|0.06|N|O|1997-06-01|1997-07-11|1997-06-02|COLLECT COD|AIR|cuses are ruthlessly reg| +49839|548326|48327|1|48|65966.40|0.00|0.04|R|F|1992-08-26|1992-07-22|1992-09-04|TAKE BACK RETURN|FOB|deposits affix re| +49839|710260|22775|2|35|44458.05|0.09|0.05|A|F|1992-08-26|1992-07-27|1992-09-10|TAKE BACK RETURN|RAIL|ages. final deposits | +49864|101280|1281|1|5|6406.40|0.01|0.03|N|O|1998-01-10|1998-02-03|1998-01-22|COLLECT COD|AIR|ic requests! fluffily final in| +49864|196871|46872|2|47|92489.89|0.08|0.03|N|O|1998-01-04|1998-02-25|1998-01-25|NONE|TRUCK| nag carefully. qu| +49864|807524|7525|3|19|27198.12|0.02|0.03|N|O|1998-02-13|1998-02-18|1998-03-12|COLLECT COD|TRUCK|final water| +49864|44078|6579|4|41|41904.87|0.05|0.01|N|O|1998-03-29|1998-02-24|1998-04-24|NONE|RAIL| regularly final frays. even ideas c| +49865|943496|18533|1|41|63117.45|0.03|0.00|N|O|1995-10-07|1995-09-08|1995-10-13|TAKE BACK RETURN|REG AIR| quickly furiously special instructions. c| +49865|335371|10384|2|35|49222.60|0.08|0.08|N|O|1995-10-18|1995-11-05|1995-11-10|TAKE BACK RETURN|REG AIR|ular waters snooze against t| +49866|221516|34021|1|45|64687.50|0.02|0.02|N|O|1995-11-21|1995-10-17|1995-12-07|TAKE BACK RETURN|AIR| the regul| +49866|18633|6134|2|23|35687.49|0.01|0.00|N|O|1995-08-12|1995-09-05|1995-08-28|DELIVER IN PERSON|REG AIR|ffily. accounts above the express accounts | +49866|163049|13050|3|10|11120.40|0.03|0.01|N|O|1995-11-11|1995-09-04|1995-11-30|NONE|MAIL|blithely across the furiously even foxes| +49866|351026|38548|4|31|33387.31|0.09|0.00|N|O|1995-10-13|1995-08-28|1995-11-12|NONE|REG AIR|regular, bold sentiments. bli| +49867|753467|41013|1|15|22806.45|0.00|0.04|N|O|1995-12-16|1996-02-01|1996-01-11|COLLECT COD|RAIL|ts cajole carefull| +49867|510845|10846|2|40|74232.80|0.00|0.00|N|O|1996-01-19|1996-03-06|1996-02-15|DELIVER IN PERSON|REG AIR|ng the regular ideas. r| +49867|768091|30607|3|7|8113.42|0.00|0.05|N|O|1996-02-15|1996-01-28|1996-02-28|TAKE BACK RETURN|AIR| sleep slyly theodolites. iron| +49867|299240|11746|4|18|22306.14|0.03|0.04|N|O|1996-03-31|1996-01-24|1996-04-09|COLLECT COD|AIR|p furiously| +49868|250059|37575|1|18|18162.72|0.05|0.05|N|O|1996-01-24|1996-02-20|1996-02-13|COLLECT COD|MAIL|use. even dolphins affix sly| +49868|726248|1277|2|35|44597.35|0.08|0.03|N|O|1996-03-20|1996-02-11|1996-04-10|TAKE BACK RETURN|RAIL|tealthy, special dependencies sleep f| +49868|43502|6003|3|7|10118.50|0.03|0.00|N|O|1996-03-05|1996-02-09|1996-03-20|DELIVER IN PERSON|AIR|ly. slyly final deposits above the unu| +49868|135582|10587|4|23|37204.34|0.03|0.00|N|O|1996-03-06|1996-01-19|1996-03-30|TAKE BACK RETURN|FOB|ccording to the regular, unusual packag| +49868|714819|39848|5|48|88021.44|0.07|0.02|N|O|1996-03-18|1996-01-17|1996-04-16|TAKE BACK RETURN|MAIL|regular ideas promise. pending, even | +49868|952853|15373|6|5|9529.05|0.03|0.03|N|O|1996-03-05|1996-02-14|1996-04-02|DELIVER IN PERSON|SHIP|the quickly iro| +49869|263099|13100|1|29|30800.32|0.10|0.07|A|F|1993-12-01|1993-10-30|1993-12-19|TAKE BACK RETURN|SHIP|ely express excuse| +49869|896769|21804|2|35|61800.20|0.03|0.07|R|F|1993-12-02|1993-10-16|1993-12-22|TAKE BACK RETURN|AIR| packages a| +49869|994896|19935|3|46|91579.10|0.06|0.04|A|F|1993-10-24|1993-11-12|1993-11-16|TAKE BACK RETURN|FOB|lyly regular asymptotes slee| +49869|206128|43641|4|10|10341.10|0.10|0.04|R|F|1993-09-27|1993-10-25|1993-10-11|DELIVER IN PERSON|RAIL|the carefully ir| +49869|378018|3033|5|36|39456.00|0.03|0.05|A|F|1993-10-02|1993-10-12|1993-10-22|DELIVER IN PERSON|SHIP|s cajole fluffily even packages. | +49870|964567|2125|1|11|17946.72|0.08|0.07|R|F|1992-12-22|1993-01-25|1992-12-25|TAKE BACK RETURN|AIR|egular, final accounts. bold, r| +49870|460798|48326|2|36|63315.72|0.03|0.01|R|F|1992-12-27|1993-02-21|1993-01-10|TAKE BACK RETURN|MAIL|s. unusual packages thrash fluffily a| +49871|219854|44863|1|43|76275.12|0.01|0.01|N|O|1996-07-02|1996-07-28|1996-07-28|TAKE BACK RETURN|AIR|manent theodolites across the pin| +49871|76288|1291|2|29|36664.12|0.06|0.07|N|O|1996-05-30|1996-06-30|1996-06-20|COLLECT COD|REG AIR| pending instructions | +49871|165721|28225|3|46|82189.12|0.10|0.02|N|O|1996-06-02|1996-06-22|1996-06-22|COLLECT COD|RAIL| ironic, unusual ac| +49871|270089|20090|4|37|39185.59|0.01|0.07|N|O|1996-06-04|1996-07-01|1996-06-20|TAKE BACK RETURN|FOB|press foxes must ha| +49871|377130|14652|5|35|42249.20|0.07|0.01|N|O|1996-09-07|1996-07-18|1996-09-29|COLLECT COD|AIR|ously ironic packages doze. quickly ironi| +49871|423591|11116|6|42|63611.94|0.02|0.07|N|O|1996-05-23|1996-06-24|1996-05-29|NONE|MAIL|ests according to the careful| +49871|289535|27051|7|31|47260.12|0.10|0.00|N|O|1996-05-20|1996-08-11|1996-06-01|NONE|AIR|es could have to unwind-- slyly special d| +49896|206999|32008|1|13|24777.74|0.02|0.05|R|F|1993-11-19|1993-10-10|1993-12-12|TAKE BACK RETURN|RAIL|ly ironic asymptotes. | +49897|66140|41143|1|29|32078.06|0.09|0.08|A|F|1993-04-30|1993-04-24|1993-05-07|NONE|AIR|st. busily pending ideas are near | +49897|612958|12959|2|35|65482.20|0.00|0.07|A|F|1993-05-12|1993-05-28|1993-06-03|TAKE BACK RETURN|AIR|ests are furiously by the bold, final pin| +49897|977841|27842|3|8|15350.40|0.00|0.07|R|F|1993-04-27|1993-04-11|1993-05-04|DELIVER IN PERSON|SHIP| along the quickly even packages. final ac| +49897|570300|20301|4|45|61662.60|0.08|0.08|A|F|1993-06-01|1993-04-09|1993-06-19|COLLECT COD|FOB|es maintain blithe| +49897|19157|31658|5|47|50579.05|0.10|0.04|R|F|1993-05-06|1993-04-16|1993-05-15|COLLECT COD|TRUCK|es; bravely regular | +49897|956444|44002|6|33|49513.20|0.08|0.01|R|F|1993-06-22|1993-04-14|1993-07-02|DELIVER IN PERSON|FOB|engage furiously beyon| +49898|603240|28265|1|3|3429.63|0.05|0.06|A|F|1994-04-20|1994-02-20|1994-04-27|COLLECT COD|AIR|carefully. un| +49898|643738|43739|2|5|8408.50|0.10|0.00|R|F|1994-03-14|1994-03-02|1994-03-21|DELIVER IN PERSON|TRUCK| slowly bold foxes s| +49898|288484|38485|3|49|72151.03|0.09|0.00|R|F|1994-01-26|1994-02-24|1994-02-04|DELIVER IN PERSON|AIR|ut the blithely express packag| +49898|536858|11879|4|2|3789.66|0.07|0.07|A|F|1994-01-19|1994-03-05|1994-02-11|TAKE BACK RETURN|REG AIR|inst the instructions. sl| +49898|959839|9840|5|49|93040.71|0.07|0.03|R|F|1994-01-30|1994-02-20|1994-02-20|NONE|SHIP|ngside of the carefully r| +49898|9376|21877|6|46|59127.02|0.04|0.04|A|F|1994-04-22|1994-03-05|1994-04-29|DELIVER IN PERSON|RAIL|r patterns. furiously ironic requests a| +49899|864012|39047|1|32|31231.04|0.09|0.07|N|O|1997-09-09|1997-10-27|1997-10-03|DELIVER IN PERSON|MAIL|packages. somas use perma| +49899|445021|7530|2|44|42504.00|0.06|0.07|N|O|1997-08-15|1997-11-03|1997-09-06|DELIVER IN PERSON|FOB|final instructions promise around th| +49899|467227|29737|3|19|22689.80|0.10|0.04|N|O|1997-08-16|1997-10-15|1997-08-24|DELIVER IN PERSON|RAIL|carefully stealthily bold | +49900|316793|41806|1|12|21717.36|0.09|0.05|N|O|1998-06-03|1998-08-04|1998-06-12|COLLECT COD|TRUCK|usly bold accounts detect | +49900|326952|14471|2|47|93010.18|0.00|0.03|N|O|1998-07-04|1998-07-28|1998-07-18|TAKE BACK RETURN|TRUCK|ven packages. regular, ironic packages | +49900|74287|49290|3|15|18919.20|0.09|0.04|N|O|1998-08-30|1998-07-05|1998-09-01|DELIVER IN PERSON|FOB|accounts. quickly even instructions sleep| +49900|527485|27486|4|30|45373.80|0.02|0.01|N|O|1998-05-25|1998-06-29|1998-06-09|COLLECT COD|AIR|ys regular req| +49900|438231|13248|5|42|49106.82|0.10|0.02|N|O|1998-06-17|1998-07-09|1998-06-28|DELIVER IN PERSON|REG AIR|e along the carefully final | +49901|606034|18547|1|34|31960.00|0.04|0.06|A|F|1992-10-15|1992-10-21|1992-10-20|COLLECT COD|AIR|usual requests after the busily pending i| +49901|610773|23286|2|33|55563.42|0.04|0.02|R|F|1993-01-07|1992-12-04|1993-02-01|DELIVER IN PERSON|REG AIR|egular accounts. fluffily ironic ac| +49901|260430|47946|3|43|59788.06|0.00|0.08|A|F|1992-10-05|1992-10-09|1992-10-17|COLLECT COD|FOB|the quickly pending dependencie| +49902|580582|30583|1|19|31588.64|0.07|0.01|N|O|1998-06-03|1998-06-28|1998-06-12|DELIVER IN PERSON|SHIP|y final foxes sleep | +49903|942726|30281|1|11|19455.48|0.02|0.02|A|F|1993-09-06|1993-10-23|1993-09-12|DELIVER IN PERSON|FOB| regular, silent instruct| +49903|388482|13497|2|36|56536.92|0.08|0.04|R|F|1993-09-29|1993-10-09|1993-10-03|COLLECT COD|REG AIR|unts run quickly. quickly even ti| +49903|206416|6417|3|5|6612.00|0.10|0.06|A|F|1993-11-19|1993-09-15|1993-11-21|NONE|REG AIR|ses behind the even packa| +49903|217305|4818|4|5|6111.45|0.04|0.00|R|F|1993-08-13|1993-09-15|1993-08-16|TAKE BACK RETURN|MAIL|carefully thi| +49903|231354|43859|5|23|29562.82|0.00|0.04|R|F|1993-11-20|1993-08-28|1993-12-19|TAKE BACK RETURN|SHIP| nod furiously deposits. regula| +49903|357563|20071|6|22|35652.10|0.05|0.06|A|F|1993-10-02|1993-09-11|1993-10-05|COLLECT COD|TRUCK|nal accounts sleep about the i| +49903|559289|21801|7|35|47189.10|0.10|0.00|R|F|1993-11-11|1993-09-22|1993-12-10|DELIVER IN PERSON|REG AIR|d instructions cajole slyly accordin| +49928|959474|47032|1|5|7667.15|0.01|0.07|R|F|1994-04-26|1994-03-12|1994-05-15|NONE|SHIP|regular pin| +49928|877783|15335|2|18|31693.32|0.09|0.06|R|F|1994-03-05|1994-04-20|1994-03-27|NONE|RAIL|r the ideas must doze fluffil| +49928|894247|31799|3|30|37236.00|0.00|0.02|R|F|1994-04-07|1994-03-11|1994-04-17|NONE|AIR|s. quickly express foxes solve | +49928|607523|7524|4|42|60080.58|0.01|0.02|R|F|1994-04-25|1994-04-03|1994-04-28|COLLECT COD|RAIL| blithely ironic instructions haggle c| +49928|623216|35729|5|10|11391.80|0.10|0.02|R|F|1994-03-06|1994-03-13|1994-03-17|DELIVER IN PERSON|FOB|usly regular dependencies use. carefully un| +49928|376775|26776|6|33|61108.08|0.02|0.02|A|F|1994-03-03|1994-03-14|1994-03-04|DELIVER IN PERSON|TRUCK|kages. ruthless, quiet grouches haggle | +49928|442930|17947|7|14|26220.74|0.08|0.06|R|F|1994-04-19|1994-04-10|1994-05-14|DELIVER IN PERSON|RAIL|es after the accounts| +49929|321045|46058|1|31|33046.93|0.05|0.01|N|O|1998-04-25|1998-04-08|1998-04-30|COLLECT COD|TRUCK|uriously about the id| +49929|799148|49149|2|43|53625.73|0.04|0.03|N|O|1998-05-19|1998-03-10|1998-06-12|COLLECT COD|AIR|onic packages. bravely special requests | +49930|814522|27039|1|28|40221.44|0.05|0.00|A|F|1992-02-24|1992-04-07|1992-03-06|NONE|SHIP| pending requests. ironic theodolite| +49930|665235|2775|2|43|51608.60|0.00|0.05|R|F|1992-03-02|1992-04-21|1992-03-24|TAKE BACK RETURN|TRUCK| the furiously pending Tiresias. slyly s| +49931|10932|35933|1|17|31329.81|0.10|0.04|A|F|1994-08-15|1994-08-07|1994-09-07|COLLECT COD|MAIL|e furiously around the| +49931|720708|45737|2|31|53588.77|0.05|0.02|A|F|1994-09-22|1994-08-31|1994-10-09|TAKE BACK RETURN|RAIL|pendencies are| +49931|936177|11214|3|19|23049.47|0.09|0.01|A|F|1994-07-15|1994-09-08|1994-07-21|DELIVER IN PERSON|AIR| quickly thin decoys.| +49931|317478|17479|4|32|47854.72|0.04|0.03|A|F|1994-09-20|1994-08-13|1994-09-30|NONE|RAIL|uickly pending pi| +49931|837898|25447|5|39|71598.15|0.06|0.02|A|F|1994-07-10|1994-09-03|1994-07-16|NONE|FOB| deposits. q| +49931|537710|25241|6|11|19224.59|0.08|0.03|R|F|1994-07-04|1994-09-04|1994-08-01|DELIVER IN PERSON|RAIL|fix blithely unusual requests. fluff| +49932|465763|28273|1|10|17287.40|0.03|0.04|N|O|1998-08-13|1998-10-01|1998-09-05|COLLECT COD|RAIL|ouches. furiously final requests hang| +49932|68709|6213|2|22|36909.40|0.04|0.04|N|O|1998-10-10|1998-10-07|1998-11-05|COLLECT COD|AIR|ooze furiousl| +49932|784635|22181|3|16|27513.60|0.07|0.02|N|O|1998-10-26|1998-09-20|1998-11-11|NONE|SHIP|ses from the quickly ironic pin| +49932|357116|32131|4|5|5865.50|0.01|0.00|N|O|1998-08-08|1998-10-13|1998-08-09|TAKE BACK RETURN|FOB| regularly special dep| +49932|47696|47697|5|42|69034.98|0.03|0.05|N|O|1998-09-28|1998-09-12|1998-10-18|DELIVER IN PERSON|REG AIR|ng pinto beans. final deposits after th| +49932|621170|33683|6|35|38189.90|0.08|0.05|N|O|1998-07-23|1998-09-25|1998-07-25|NONE|SHIP|ions. carefully pending ideas about t| +49933|670630|20631|1|22|35213.20|0.10|0.07|A|F|1994-12-28|1994-11-25|1995-01-11|NONE|REG AIR|egular accounts snooze silent, regular r| +49933|268399|30905|2|2|2734.76|0.07|0.07|R|F|1994-11-21|1994-12-02|1994-12-15|DELIVER IN PERSON|REG AIR|re blithel| +49933|975362|37882|3|32|45994.24|0.01|0.02|A|F|1994-11-07|1994-11-06|1994-11-10|COLLECT COD|AIR|ial requests us| +49934|653830|3831|1|12|21405.60|0.10|0.02|N|O|1995-08-23|1995-07-27|1995-09-13|NONE|REG AIR|ding requests are. furiously even ideas acr| +49934|917806|42843|2|1|1823.76|0.04|0.02|N|O|1995-09-17|1995-06-30|1995-09-19|COLLECT COD|FOB|bold packages haggle above the ironi| +49934|553945|16457|3|50|99946.00|0.09|0.04|N|O|1995-07-02|1995-08-03|1995-07-13|NONE|SHIP|lar deposits| +49934|139099|14104|4|10|11380.90|0.00|0.06|N|O|1995-06-20|1995-07-22|1995-06-28|COLLECT COD|REG AIR|ly special deposits are carefully towa| +49934|826095|1128|5|8|8168.40|0.00|0.06|N|O|1995-06-20|1995-07-13|1995-07-18|DELIVER IN PERSON|SHIP|osits. carefully re| +49934|162963|12964|6|18|36467.28|0.10|0.07|N|F|1995-05-29|1995-07-03|1995-06-27|TAKE BACK RETURN|TRUCK|ly slyly regular dependencies| +49934|909385|9386|7|43|59956.62|0.01|0.04|N|O|1995-06-24|1995-08-06|1995-07-14|NONE|FOB| carefully enticing dinos. court| +49935|32245|44746|1|14|16481.36|0.09|0.08|A|F|1993-01-20|1993-01-05|1993-02-10|DELIVER IN PERSON|AIR|ckly? notornis wake sile| +49935|934349|21904|2|28|38732.40|0.07|0.06|A|F|1993-01-25|1993-01-01|1993-01-31|COLLECT COD|MAIL|tions. quickly special deposits cajole s| +49935|600966|13479|3|16|29870.88|0.02|0.04|A|F|1992-11-10|1992-12-21|1992-11-29|TAKE BACK RETURN|SHIP|uriously above the bold, ironic re| +49935|430034|17559|4|49|47236.49|0.02|0.05|A|F|1992-10-24|1992-12-13|1992-11-05|NONE|FOB|ven accounts. furiously regular instr| +49935|571846|21847|5|32|61370.24|0.01|0.06|R|F|1993-02-05|1992-12-07|1993-02-20|DELIVER IN PERSON|REG AIR| packages. slyly busy in| +49960|878005|3040|1|13|12778.48|0.00|0.02|R|F|1995-03-05|1995-04-09|1995-03-11|COLLECT COD|AIR|bold instructions. unusual | +49960|615326|2863|2|15|18619.35|0.06|0.04|R|F|1995-02-15|1995-04-08|1995-03-07|DELIVER IN PERSON|SHIP|sits are slyly al| +49960|775046|37562|3|50|56050.50|0.01|0.02|R|F|1995-03-31|1995-03-05|1995-04-14|NONE|MAIL|uriously. furiously regu| +49960|196075|46076|4|47|55040.29|0.03|0.04|R|F|1995-04-25|1995-03-13|1995-05-19|TAKE BACK RETURN|AIR|lyly along the slyly| +49960|416598|41615|5|23|34835.11|0.10|0.02|A|F|1995-04-30|1995-03-18|1995-05-19|COLLECT COD|MAIL|s foxes mold slyly after the special p| +49960|757027|44573|6|20|21679.80|0.01|0.07|A|F|1995-04-05|1995-04-02|1995-04-15|COLLECT COD|SHIP|nal pains wake slyly. waters na| +49961|350106|37628|1|15|17341.35|0.04|0.02|N|O|1996-09-03|1996-07-26|1996-09-17|NONE|RAIL|arefully express packages| +49962|113474|38479|1|39|58011.33|0.08|0.05|A|F|1994-09-10|1994-10-23|1994-10-04|DELIVER IN PERSON|AIR|s the regul| +49962|145635|8138|2|8|13445.04|0.09|0.02|A|F|1994-12-07|1994-11-02|1994-12-20|NONE|SHIP| accounts ca| +49962|683353|33354|3|31|41425.92|0.09|0.04|R|F|1994-11-14|1994-11-23|1994-12-01|NONE|MAIL| serve quickly above the bold a| +49962|102949|2950|4|27|52702.38|0.07|0.04|A|F|1994-10-27|1994-11-23|1994-11-25|DELIVER IN PERSON|AIR|beans. fluffily pending ideas cajole expres| +49962|252026|14532|5|35|34230.35|0.05|0.06|A|F|1994-09-30|1994-11-11|1994-10-25|COLLECT COD|FOB|mptotes use blithely. regular packages | +49962|790529|40530|6|30|48584.70|0.03|0.01|A|F|1994-10-06|1994-10-10|1994-10-10|COLLECT COD|REG AIR|s. express, express excuses cajole blithely| +49962|420129|32638|7|21|22031.10|0.05|0.02|R|F|1994-12-27|1994-10-06|1995-01-03|NONE|SHIP|thogs cajole evenl| +49963|97208|34712|1|32|38566.40|0.02|0.00|R|F|1993-09-27|1993-09-27|1993-10-14|COLLECT COD|TRUCK|ts haggle about the caref| +49963|769360|31876|2|31|44309.23|0.00|0.05|R|F|1993-12-04|1993-10-30|1994-01-02|DELIVER IN PERSON|RAIL| nod carefully| +49963|618230|43255|3|7|8037.40|0.05|0.03|A|F|1993-10-02|1993-09-28|1993-10-14|NONE|TRUCK|dly unusual cou| +49963|591062|28596|4|15|17295.60|0.01|0.02|A|F|1993-11-03|1993-09-21|1993-11-04|NONE|MAIL|s-- final theodolites are carefully. | +49964|455010|30029|1|37|35704.63|0.07|0.01|R|F|1995-05-25|1995-08-17|1995-06-05|TAKE BACK RETURN|SHIP| slyly silent theo| +49964|342848|42849|2|35|66179.05|0.06|0.06|N|O|1995-08-01|1995-08-01|1995-08-06|TAKE BACK RETURN|SHIP|al, bold excuses! blithe| +49964|230008|17521|3|24|22511.76|0.10|0.01|A|F|1995-05-31|1995-07-22|1995-06-02|DELIVER IN PERSON|AIR|ons use about the regular packages. q| +49964|727836|27837|4|29|54050.20|0.02|0.00|N|O|1995-08-12|1995-08-06|1995-09-04|NONE|TRUCK|ideas. slyly pen| +49964|727931|2960|5|18|35260.20|0.04|0.02|N|O|1995-08-27|1995-08-19|1995-09-23|NONE|MAIL|about the furiousl| +49964|327296|27297|6|9|11909.52|0.07|0.00|N|O|1995-09-20|1995-08-11|1995-09-21|TAKE BACK RETURN|SHIP|posits. carefully silent pac| +49964|863530|38565|7|32|47791.68|0.07|0.00|N|O|1995-06-27|1995-06-30|1995-07-24|COLLECT COD|TRUCK|ut the accounts. final, special de| +49965|344753|44754|1|9|16179.66|0.03|0.06|R|F|1993-04-21|1993-05-23|1993-05-08|TAKE BACK RETURN|REG AIR|s. furiously special r| +49965|251112|26123|2|45|47839.50|0.03|0.04|R|F|1993-06-30|1993-06-15|1993-07-29|COLLECT COD|TRUCK|accounts against the regu| +49965|432681|20206|3|21|33886.86|0.08|0.05|A|F|1993-04-24|1993-07-02|1993-05-16|NONE|FOB|ously express requests wak| +49965|56162|31165|4|17|19008.72|0.03|0.01|R|F|1993-04-30|1993-06-08|1993-05-28|DELIVER IN PERSON|REG AIR|gular requests. fluffily ironic ideas lose| +49965|905753|18272|5|50|87935.50|0.09|0.04|R|F|1993-05-27|1993-05-26|1993-06-21|TAKE BACK RETURN|REG AIR|s wake furiously slowly | +49965|983833|21391|6|6|11500.74|0.00|0.08|A|F|1993-04-18|1993-06-18|1993-05-17|DELIVER IN PERSON|RAIL|ng the foxes: blithe decoys use blithel| +49965|280145|17661|7|16|18002.08|0.06|0.01|R|F|1993-05-20|1993-06-22|1993-06-01|TAKE BACK RETURN|REG AIR|even deposits use blithely| +49966|381587|31588|1|13|21691.41|0.06|0.04|R|F|1992-05-17|1992-06-05|1992-05-19|NONE|FOB| sleep slyly aft| +49966|332135|44642|2|11|12838.32|0.03|0.04|R|F|1992-07-14|1992-07-25|1992-07-29|DELIVER IN PERSON|RAIL|x. final packages wake. bl| +49966|184265|21775|3|4|5397.04|0.00|0.02|R|F|1992-06-15|1992-07-02|1992-07-04|NONE|RAIL|iously against the quickly fin| +49967|978887|28888|1|23|45214.32|0.09|0.07|R|F|1993-12-16|1993-11-11|1993-12-19|DELIVER IN PERSON|SHIP|special requests. slyly fina| +49992|129792|29793|1|26|47366.54|0.07|0.01|A|F|1994-03-07|1994-01-06|1994-03-11|TAKE BACK RETURN|REG AIR|y regular excuses. permanently final | +49993|302139|2140|1|16|18257.92|0.07|0.05|N|O|1997-09-16|1997-09-05|1997-10-02|TAKE BACK RETURN|REG AIR|ng the final requests. f| +49993|44737|19738|2|16|26907.68|0.08|0.05|N|O|1997-09-03|1997-09-16|1997-09-29|TAKE BACK RETURN|FOB|express, even| +49993|888710|26262|3|1|1698.67|0.08|0.02|N|O|1997-10-16|1997-09-22|1997-11-15|TAKE BACK RETURN|AIR|xes detect| +49993|546874|9385|4|27|51862.95|0.04|0.07|N|O|1997-08-08|1997-09-08|1997-08-25|COLLECT COD|TRUCK|onic, final pinto beans cajole f| +49994|438441|38442|1|6|8276.52|0.00|0.07|N|O|1997-12-28|1997-12-19|1998-01-03|COLLECT COD|SHIP|beans. carefully special depos| +49994|874399|11951|2|16|21973.60|0.09|0.04|N|O|1998-02-22|1997-12-20|1998-03-03|DELIVER IN PERSON|AIR|fully ironi| +49994|23794|48795|3|30|51533.70|0.08|0.03|N|O|1998-02-23|1998-01-17|1998-03-10|COLLECT COD|FOB|- accounts nod caref| +49994|902300|27337|4|43|55997.18|0.05|0.03|N|O|1997-12-05|1998-01-25|1997-12-22|NONE|TRUCK|ep along the pack| +49994|948590|23627|5|24|39325.20|0.02|0.03|N|O|1998-02-12|1998-01-02|1998-02-14|COLLECT COD|REG AIR|eans. ironic packages about the sly| +49994|937451|49970|6|15|22326.15|0.06|0.02|N|O|1997-12-24|1997-12-28|1998-01-17|NONE|RAIL| are? quickly spe| +49994|722464|47493|7|14|20810.02|0.08|0.00|N|O|1998-01-19|1997-12-21|1998-02-10|TAKE BACK RETURN|MAIL|re blithely slyly pendin| +49995|452327|14837|1|1|1279.30|0.05|0.00|N|O|1996-06-13|1996-05-21|1996-07-12|NONE|SHIP|dependencies alongside of the flu| +49995|248623|48624|2|9|14144.49|0.08|0.04|N|O|1996-05-10|1996-05-07|1996-05-21|DELIVER IN PERSON|MAIL|refully regular | +49996|169620|44627|1|45|76032.90|0.07|0.05|A|F|1994-06-06|1994-07-07|1994-06-27|NONE|AIR| wake furiously about the sile| +49996|801789|39338|2|49|82846.26|0.02|0.02|R|F|1994-06-29|1994-06-29|1994-07-26|DELIVER IN PERSON|SHIP|eans nag carefully; | +49996|664046|1586|3|39|39390.39|0.08|0.00|A|F|1994-06-16|1994-06-19|1994-06-24|NONE|MAIL|ckly regular| +49996|618157|30670|4|38|40854.56|0.06|0.07|A|F|1994-06-21|1994-08-03|1994-07-06|TAKE BACK RETURN|REG AIR|sts are slyly ironica| +49996|363606|13607|5|7|11687.13|0.07|0.02|A|F|1994-09-13|1994-07-19|1994-10-06|COLLECT COD|TRUCK|oxes sleep. furiously | +49996|109928|9929|6|35|67827.20|0.04|0.01|R|F|1994-07-04|1994-06-24|1994-07-06|NONE|REG AIR|e slyly bold exc| +49996|558023|8024|7|25|27025.00|0.09|0.06|R|F|1994-06-16|1994-08-12|1994-06-18|COLLECT COD|SHIP|accounts ha| +49997|688843|26383|1|14|25645.34|0.03|0.03|N|O|1996-04-23|1996-02-15|1996-05-01|NONE|FOB|tes cajole blithely reg| +49997|372563|35071|2|12|19626.60|0.09|0.06|N|O|1996-01-20|1996-03-02|1996-02-07|NONE|MAIL|ely alongside of the fluff| +49997|659901|22415|3|31|57686.97|0.00|0.08|N|O|1996-04-23|1996-03-05|1996-05-13|DELIVER IN PERSON|MAIL|nding excuses! | +49997|940579|15616|4|18|29151.54|0.05|0.05|N|O|1996-03-25|1996-02-14|1996-04-09|COLLECT COD|RAIL|. quickly final ideas integrate f| +49997|301101|13608|5|3|3306.27|0.05|0.01|N|O|1996-01-08|1996-03-10|1996-01-24|NONE|FOB|instructions are carefully slyly| +49997|596825|9337|6|34|65341.20|0.08|0.08|N|O|1996-01-31|1996-02-15|1996-02-13|TAKE BACK RETURN|REG AIR|equests use blithely quickl| +49998|931705|31706|1|21|36469.86|0.01|0.05|R|F|1993-11-14|1993-09-09|1993-11-15|TAKE BACK RETURN|SHIP|tions boost quickly. bo| +49999|927412|27413|1|10|14393.70|0.04|0.05|R|F|1993-02-25|1993-04-08|1993-03-24|NONE|SHIP|ithely regular de| +49999|4586|17087|2|17|25339.86|0.08|0.01|A|F|1993-04-17|1993-04-05|1993-04-18|DELIVER IN PERSON|REG AIR| final foxes sleep above the| +49999|62972|37975|3|32|61919.04|0.08|0.07|R|F|1993-02-13|1993-03-24|1993-03-14|NONE|MAIL|sts. slyly caref| +49999|353975|28990|4|35|71013.60|0.07|0.02|A|F|1993-05-03|1993-03-28|1993-05-19|TAKE BACK RETURN|FOB|y. furiously pending deposits | +49999|253420|3421|5|40|54936.40|0.04|0.03|R|F|1993-05-26|1993-03-15|1993-05-27|NONE|RAIL|eas sleep about the bold, specia| +50024|144915|44916|1|40|78396.40|0.06|0.00|R|F|1992-07-20|1992-06-22|1992-08-07|NONE|TRUCK|ounts promise blithely. ex| +50024|577126|39638|2|43|51733.30|0.04|0.02|R|F|1992-05-06|1992-05-31|1992-05-31|NONE|TRUCK|y. slyly even acco| +50024|743822|6337|3|15|27986.85|0.08|0.02|R|F|1992-04-28|1992-05-10|1992-05-06|NONE|FOB|ng the furiously ironic fo| +50024|403783|16292|4|2|3373.52|0.04|0.01|A|F|1992-07-15|1992-07-02|1992-07-28|TAKE BACK RETURN|MAIL|lar account| +50025|757724|7725|1|36|64140.84|0.05|0.01|A|F|1993-02-27|1993-04-01|1993-03-15|COLLECT COD|FOB|lyly slow foxes. | +50025|52078|2079|2|4|4120.28|0.08|0.04|R|F|1993-03-04|1993-04-01|1993-03-22|COLLECT COD|FOB|sly thin packages. fluffily regu| +50025|266397|41408|3|1|1363.38|0.08|0.05|R|F|1993-04-06|1993-04-23|1993-04-14|COLLECT COD|TRUCK|sts cajole slyly regularly bold t| +50026|439106|39107|1|34|35532.72|0.09|0.01|A|F|1993-07-29|1993-08-07|1993-08-01|NONE|TRUCK|y according to the slyly final instructio| +50026|46377|33878|2|37|48964.69|0.07|0.07|A|F|1993-07-10|1993-06-30|1993-08-01|COLLECT COD|TRUCK|dinos above the final requests wake al| +50026|454075|16585|3|29|29842.45|0.00|0.08|A|F|1993-09-17|1993-07-11|1993-10-13|TAKE BACK RETURN|FOB|s wake. foxes c| +50026|632022|44535|4|37|35297.63|0.06|0.08|A|F|1993-08-28|1993-07-31|1993-09-20|COLLECT COD|MAIL|ly special depo| +50026|380258|30259|5|20|26764.80|0.08|0.08|A|F|1993-06-17|1993-07-02|1993-06-27|DELIVER IN PERSON|REG AIR|osits. even foxes accordi| +50026|980744|43264|6|32|58390.40|0.07|0.04|A|F|1993-08-10|1993-08-06|1993-08-13|NONE|TRUCK|ons. careful| +50027|654036|29063|1|7|6930.00|0.08|0.08|N|O|1996-09-07|1996-09-06|1996-09-08|TAKE BACK RETURN|AIR|ckly even accounts| +50027|375793|808|2|47|87832.66|0.02|0.07|N|O|1996-10-01|1996-09-24|1996-10-17|TAKE BACK RETURN|AIR|oxes use blithely slyly pending dept| +50028|131384|6389|1|35|49538.30|0.02|0.02|N|O|1998-01-13|1998-02-04|1998-01-28|TAKE BACK RETURN|TRUCK|against the slo| +50028|163121|38128|2|20|23682.40|0.05|0.00|N|O|1998-01-29|1998-03-19|1998-02-07|TAKE BACK RETURN|TRUCK| slyly final as| +50029|150176|12680|1|20|24523.40|0.08|0.05|N|O|1995-11-05|1995-10-23|1995-11-23|TAKE BACK RETURN|AIR|tect fluffily slyly express accounts. ide| +50029|997231|22270|2|26|34532.94|0.05|0.05|N|O|1995-09-16|1995-10-14|1995-10-07|TAKE BACK RETURN|RAIL|about the b| +50029|449069|36594|3|42|42757.68|0.01|0.06|N|O|1995-09-29|1995-10-24|1995-10-18|COLLECT COD|SHIP|ts wake carefully around the depos| +50029|497636|22655|4|29|47374.69|0.04|0.06|N|O|1995-09-29|1995-11-09|1995-10-06|NONE|TRUCK|cial accounts integrate quickly | +50029|767797|17798|5|49|91373.24|0.08|0.05|N|O|1995-12-15|1995-10-30|1996-01-10|DELIVER IN PERSON|SHIP|osits haggle furiously above the s| +50030|518088|30599|1|24|26545.44|0.00|0.08|A|F|1994-10-29|1994-11-21|1994-11-21|NONE|FOB|rays are furiously bold pinto beans. un| +50031|359938|34953|1|20|39958.40|0.10|0.08|N|O|1995-08-01|1995-05-30|1995-08-03|NONE|AIR|inal accounts sleep final pinto bea| +50056|44930|32431|1|38|71247.34|0.00|0.03|N|O|1997-09-25|1997-07-29|1997-10-05|COLLECT COD|AIR|l foxes wake f| +50056|123364|35867|2|28|38846.08|0.00|0.07|N|O|1997-08-24|1997-07-29|1997-09-23|COLLECT COD|AIR|ress packages. ruthlessly| +50056|377789|40297|3|21|39202.17|0.01|0.03|N|O|1997-08-30|1997-08-18|1997-09-18|TAKE BACK RETURN|RAIL|s nag fluffily across the slyly even instru| +50056|487354|49864|4|10|13413.30|0.01|0.02|N|O|1997-07-04|1997-08-22|1997-07-29|DELIVER IN PERSON|TRUCK|ove the pinto beans. fluffily ironic accoun| +50056|946819|21856|5|42|78362.34|0.01|0.02|N|O|1997-08-26|1997-08-03|1997-09-18|TAKE BACK RETURN|RAIL|en accounts. blithely iron| +50056|181931|6938|6|49|98633.57|0.00|0.04|N|O|1997-08-19|1997-08-13|1997-09-12|DELIVER IN PERSON|FOB|ide of the packages. care| +50056|708069|20584|7|15|16155.45|0.00|0.02|N|O|1997-10-04|1997-08-30|1997-10-13|COLLECT COD|TRUCK|e ironic requests. packages boost sly| +50057|508370|33391|1|41|56512.35|0.09|0.05|A|F|1994-07-03|1994-07-24|1994-07-11|DELIVER IN PERSON|REG AIR|out the car| +50057|169005|6515|2|11|11814.00|0.01|0.02|A|F|1994-05-19|1994-07-16|1994-06-01|NONE|MAIL|are above the| +50057|465425|15426|3|12|16684.80|0.02|0.02|R|F|1994-08-05|1994-06-16|1994-08-19|COLLECT COD|AIR|nst the pendin| +50058|971048|21049|1|50|55950.00|0.02|0.05|R|F|1993-08-13|1993-08-12|1993-08-24|TAKE BACK RETURN|SHIP|always above the | +50058|393762|31284|2|8|14846.00|0.10|0.01|A|F|1993-09-27|1993-08-13|1993-10-07|DELIVER IN PERSON|MAIL|rate quickly regul| +50058|952348|39906|3|21|29406.30|0.05|0.00|R|F|1993-07-03|1993-08-26|1993-07-20|NONE|AIR|pinto beans dazzle alongside of the f| +50058|103748|3749|4|12|21020.88|0.01|0.05|A|F|1993-08-11|1993-08-17|1993-09-03|NONE|RAIL|r deposits sleep slyly. furious| +50058|685981|11008|5|28|55074.60|0.05|0.04|R|F|1993-08-10|1993-07-07|1993-08-30|DELIVER IN PERSON|REG AIR|eas. dependencies | +50058|272339|47350|6|11|14424.52|0.02|0.03|R|F|1993-06-19|1993-07-06|1993-07-09|COLLECT COD|FOB|p blithely blithely regu| +50059|590005|2517|1|25|27374.50|0.00|0.04|A|F|1993-10-27|1993-12-23|1993-11-11|DELIVER IN PERSON|RAIL|n theodolites. q| +50059|199610|49611|2|37|63255.57|0.03|0.08|R|F|1994-01-22|1993-12-29|1994-02-21|NONE|TRUCK|tes haggle. furiousl| +50059|842603|5120|3|16|24728.96|0.09|0.01|R|F|1993-11-17|1994-01-09|1993-11-20|TAKE BACK RETURN|FOB|s haggle car| +50059|627750|15287|4|2|3355.44|0.01|0.01|R|F|1993-12-11|1993-12-13|1993-12-15|DELIVER IN PERSON|FOB|gular requests. carefully final pa| +50059|578109|40621|5|22|26115.76|0.09|0.03|A|F|1993-11-01|1993-11-16|1993-11-22|TAKE BACK RETURN|FOB|ng the carefully even depos| +50060|387519|37520|1|20|32130.00|0.01|0.04|N|O|1996-10-20|1996-08-11|1996-10-26|TAKE BACK RETURN|SHIP|tructions integrate. blithe| +50060|26086|13587|2|31|31374.48|0.01|0.00|N|O|1996-10-27|1996-09-12|1996-11-14|DELIVER IN PERSON|SHIP|lets cajole abou| +50060|415644|15645|3|31|48348.22|0.06|0.06|N|O|1996-11-04|1996-08-06|1996-11-15|TAKE BACK RETURN|RAIL|ngside of the carefully| +50060|720984|33499|4|49|98242.55|0.08|0.03|N|O|1996-08-22|1996-09-18|1996-08-30|DELIVER IN PERSON|SHIP|usual, pending account| +50060|571023|8557|5|20|21880.00|0.02|0.03|N|O|1996-09-08|1996-09-12|1996-09-20|TAKE BACK RETURN|RAIL|ts. quickly regular requests sleep f| +50060|179456|41960|6|2|3070.90|0.09|0.06|N|O|1996-09-12|1996-08-24|1996-10-02|TAKE BACK RETURN|MAIL|s hang carefully bo| +50060|110149|35154|7|10|11591.40|0.01|0.04|N|O|1996-07-10|1996-09-09|1996-07-12|DELIVER IN PERSON|AIR|sly daring requests. carefully pending| +50061|273686|48697|1|2|3319.34|0.10|0.06|N|O|1998-04-10|1998-05-24|1998-04-18|TAKE BACK RETURN|SHIP|e quickly slyly silent pac| +50061|832217|32218|2|30|34475.10|0.02|0.01|N|O|1998-07-31|1998-05-21|1998-08-29|COLLECT COD|AIR|s wake according to the bold, i| +50061|66539|16540|3|34|51188.02|0.01|0.00|N|O|1998-06-21|1998-05-15|1998-07-06|NONE|AIR|e furiously pending requests. unusual | +50061|313833|13834|4|6|11080.92|0.07|0.04|N|O|1998-05-10|1998-05-09|1998-05-15|COLLECT COD|AIR|iously unusual deposits wake| +50061|579747|17281|5|36|65761.92|0.00|0.06|N|O|1998-06-07|1998-05-13|1998-06-08|COLLECT COD|TRUCK|yly against the blithely bold requests. | +50062|2979|27980|1|43|80924.71|0.09|0.08|N|O|1996-05-19|1996-06-10|1996-06-15|TAKE BACK RETURN|AIR|e furiously after t| +50063|151809|26816|1|32|59545.60|0.10|0.08|N|O|1995-12-23|1995-10-12|1996-01-16|TAKE BACK RETURN|TRUCK|unts cajole along the thinly bold| +50063|450600|13110|2|8|12404.64|0.07|0.00|N|O|1995-10-10|1995-11-18|1995-10-16|COLLECT COD|TRUCK|y final dep| +50063|228469|3478|3|35|48910.75|0.06|0.04|N|O|1995-09-18|1995-11-24|1995-10-11|TAKE BACK RETURN|SHIP| ideas. furiously bold asymptot| +50063|869253|31771|4|34|41555.14|0.07|0.07|N|O|1995-11-20|1995-10-25|1995-12-01|COLLECT COD|REG AIR|ding requests afte| +50088|811024|36057|1|32|29919.36|0.00|0.08|R|F|1993-03-11|1993-02-17|1993-03-19|TAKE BACK RETURN|REG AIR|ag across the bol| +50088|873831|11383|2|17|30681.43|0.05|0.03|R|F|1993-02-11|1993-02-14|1993-03-07|DELIVER IN PERSON|FOB| regular accounts nag | +50088|468236|5764|3|1|1204.21|0.08|0.00|R|F|1993-01-29|1993-01-26|1993-02-24|COLLECT COD|RAIL|s. unusual, p| +50088|629093|41606|4|26|26573.56|0.10|0.01|A|F|1993-03-01|1993-01-21|1993-03-30|NONE|MAIL|pains. furi| +50088|164088|1598|5|45|51843.60|0.08|0.04|R|F|1993-03-27|1993-02-17|1993-04-05|DELIVER IN PERSON|RAIL|heodolites. slyly final ideas sleep idea| +50088|810779|10780|6|43|72658.39|0.00|0.02|A|F|1992-12-24|1993-02-02|1993-01-22|NONE|RAIL|de the quickly e| +50088|760550|23066|7|47|75694.44|0.06|0.03|R|F|1993-03-18|1993-03-04|1993-04-07|DELIVER IN PERSON|REG AIR|uffily final accounts wake caref| +50089|547535|22556|1|15|23737.65|0.01|0.01|R|F|1992-07-16|1992-05-11|1992-08-08|NONE|REG AIR|fully final notornis. speci| +50089|406723|44248|2|15|24445.50|0.06|0.02|A|F|1992-03-26|1992-06-06|1992-04-10|COLLECT COD|RAIL|elets affix careful| +50089|790203|40204|3|1|1293.17|0.01|0.03|A|F|1992-07-21|1992-06-06|1992-08-15|COLLECT COD|FOB|st. pending accounts along the furiously ir| +50090|16077|41078|1|20|19861.40|0.07|0.02|R|F|1992-08-18|1992-07-28|1992-08-20|TAKE BACK RETURN|RAIL|e the furiou| +50090|190873|40874|2|33|64807.71|0.10|0.04|A|F|1992-08-26|1992-07-25|1992-09-08|TAKE BACK RETURN|REG AIR|ickly carefully express accounts| +50090|1509|1510|3|14|19747.00|0.08|0.01|R|F|1992-09-13|1992-08-14|1992-10-06|DELIVER IN PERSON|MAIL| upon the quickly regular theodolites: b| +50090|345306|32825|4|44|59456.76|0.09|0.05|A|F|1992-08-30|1992-06-26|1992-09-12|NONE|REG AIR|lose deposits. careful| +50091|59998|35001|1|14|27411.86|0.04|0.01|R|F|1993-01-27|1993-03-22|1993-02-18|NONE|AIR|onic dolphins nag against the c| +50091|376965|39473|2|19|38797.05|0.10|0.04|A|F|1993-03-20|1993-04-10|1993-04-17|TAKE BACK RETURN|REG AIR|ggle requests. permanent reques| +50091|637380|24917|3|4|5269.40|0.03|0.01|A|F|1993-02-02|1993-04-21|1993-02-26|COLLECT COD|AIR| furiously furious excuses wake blithely af| +50092|950124|12644|1|48|56355.84|0.02|0.03|N|O|1998-07-25|1998-08-10|1998-07-31|NONE|AIR|ons serve. pending, final instruct| +50093|414188|39205|1|35|38575.60|0.07|0.07|R|F|1994-03-21|1994-05-08|1994-03-30|NONE|SHIP| cajole carefully. carefully regular pa| +50093|244092|44093|2|14|14505.12|0.08|0.03|R|F|1994-05-04|1994-04-08|1994-05-14|DELIVER IN PERSON|MAIL|symptotes haggle care| +50093|453983|29002|3|14|27117.44|0.10|0.01|R|F|1994-06-19|1994-05-06|1994-06-27|NONE|AIR|xpress pac| +50093|90344|2846|4|13|17346.42|0.03|0.04|A|F|1994-03-17|1994-04-19|1994-04-01|COLLECT COD|AIR|s haggle above the bu| +50094|499774|37302|1|44|78045.00|0.05|0.01|A|F|1993-03-01|1993-02-22|1993-03-09|COLLECT COD|FOB|r pinto beans. dinos sleep | +50094|700474|12989|2|7|10321.08|0.07|0.03|R|F|1993-01-23|1993-02-20|1993-02-06|TAKE BACK RETURN|FOB|ter the permanent| +50094|863457|13458|3|11|15624.51|0.06|0.03|A|F|1993-03-23|1993-01-15|1993-04-11|COLLECT COD|REG AIR| packages! blithely unusual pinto beans us| +50094|117195|29698|4|8|9697.52|0.04|0.04|A|F|1993-02-21|1993-02-12|1993-03-18|DELIVER IN PERSON|RAIL|final deposits among| +50094|680580|5607|5|8|12484.40|0.00|0.08|R|F|1993-03-15|1993-02-24|1993-04-08|DELIVER IN PERSON|TRUCK|ites haggle packages. furi| +50094|493500|43501|6|16|23895.68|0.09|0.02|R|F|1993-01-08|1993-01-30|1993-01-18|COLLECT COD|RAIL|fily bold deposits| +50095|897332|47333|1|42|55830.18|0.02|0.07|A|F|1994-07-19|1994-08-04|1994-07-30|TAKE BACK RETURN|TRUCK|ly stealthy, unusual packages. even req| +50095|454417|16927|2|8|10971.12|0.00|0.03|A|F|1994-08-17|1994-09-10|1994-09-01|TAKE BACK RETURN|TRUCK|accounts boost carefully. sly| +50095|379136|4151|3|10|12151.20|0.06|0.01|A|F|1994-09-02|1994-09-13|1994-10-02|COLLECT COD|MAIL|iously ironic | +50095|129611|42114|4|30|49218.30|0.05|0.01|A|F|1994-07-21|1994-08-13|1994-08-18|DELIVER IN PERSON|SHIP|en instructions sleep blithely. silent| +50095|370176|7698|5|13|16200.08|0.00|0.05|A|F|1994-07-08|1994-08-06|1994-07-21|DELIVER IN PERSON|MAIL|posits boost s| +50095|538230|13251|6|13|16486.73|0.07|0.01|A|F|1994-08-09|1994-09-03|1994-09-04|TAKE BACK RETURN|MAIL|s the silent accounts. carefully | +50095|21183|33684|7|23|25396.14|0.03|0.01|R|F|1994-07-24|1994-09-11|1994-07-28|NONE|AIR|arefully express requests wake fluf| +50120|18212|5713|1|38|42947.98|0.04|0.08|A|F|1994-02-24|1994-01-10|1994-03-11|DELIVER IN PERSON|MAIL|ess foxes dete| +50120|79073|29074|2|30|31562.10|0.02|0.02|R|F|1994-03-10|1994-01-09|1994-03-22|DELIVER IN PERSON|TRUCK|en platelets. furiously speci| +50121|452836|27855|1|38|67974.78|0.04|0.04|N|O|1996-11-27|1996-12-06|1996-11-30|TAKE BACK RETURN|TRUCK|nic, special foxes sleep carefully: furiou| +50121|800536|13053|2|41|58896.09|0.00|0.05|N|O|1996-12-21|1996-11-16|1997-01-12|TAKE BACK RETURN|FOB|ly pending orbits. ideas| +50121|591868|4380|3|43|84273.12|0.06|0.06|N|O|1996-12-15|1996-12-30|1997-01-03|TAKE BACK RETURN|TRUCK|requests haggle | +50121|516631|29142|4|6|9885.66|0.05|0.05|N|O|1996-11-07|1996-12-24|1996-11-18|COLLECT COD|REG AIR|ironic dinos. fu| +50122|56981|6982|1|28|54263.44|0.00|0.07|R|F|1994-10-07|1994-11-14|1994-11-05|TAKE BACK RETURN|REG AIR|inal instructions sleep carefu| +50122|672235|47262|2|4|4828.80|0.00|0.08|A|F|1995-01-11|1994-12-23|1995-01-16|NONE|AIR| final accounts. fi| +50122|243186|30699|3|38|42908.46|0.09|0.07|R|F|1994-11-19|1994-12-12|1994-12-02|DELIVER IN PERSON|RAIL|lly behind the ironic sheav| +50123|806877|44426|1|8|14270.64|0.08|0.07|N|O|1997-01-29|1997-01-09|1997-02-13|COLLECT COD|AIR|l pinto beans wake slyly at the| +50123|168484|43491|2|14|21734.72|0.03|0.01|N|O|1997-01-30|1996-11-20|1997-02-21|TAKE BACK RETURN|SHIP|cies. quickly regular a| +50123|709659|47202|3|16|26697.92|0.08|0.02|N|O|1996-12-12|1997-01-01|1996-12-31|DELIVER IN PERSON|FOB| detect quickly. regular, even deposi| +50123|228307|28308|4|5|6176.45|0.08|0.06|N|O|1996-12-19|1997-01-08|1997-01-09|DELIVER IN PERSON|REG AIR|accounts along the special dep| +50123|147665|35172|5|3|5137.98|0.02|0.08|N|O|1997-01-25|1996-12-07|1997-02-13|DELIVER IN PERSON|SHIP|s the slyly final i| +50123|795483|45484|6|28|44196.60|0.08|0.00|N|O|1996-12-19|1997-01-15|1996-12-29|NONE|AIR|ular, regular acc| +50123|679416|4443|7|31|43256.78|0.07|0.07|N|O|1996-12-25|1996-12-01|1997-01-19|DELIVER IN PERSON|TRUCK|aggle about the express,| +50124|943425|18462|1|13|19088.94|0.09|0.01|A|F|1993-09-07|1993-10-10|1993-09-14|TAKE BACK RETURN|FOB|riously final reques| +50124|135283|10288|2|6|7909.68|0.02|0.02|A|F|1993-09-13|1993-10-05|1993-09-24|COLLECT COD|RAIL|press platelets us| +50124|692622|17649|3|21|33906.39|0.06|0.01|A|F|1993-11-21|1993-10-23|1993-12-07|TAKE BACK RETURN|SHIP|ing deposits. regular warhorses affix quic| +50124|891126|41127|4|43|48034.44|0.03|0.05|R|F|1993-10-05|1993-09-29|1993-10-09|COLLECT COD|MAIL|ages. ironic, bold patterns b| +50124|139261|26768|5|23|29905.98|0.10|0.08|A|F|1993-12-04|1993-09-29|1993-12-22|NONE|REG AIR|quickly regular deposits. car| +50125|447111|34636|1|8|8464.72|0.10|0.00|A|F|1993-12-21|1993-12-01|1994-01-13|TAKE BACK RETURN|REG AIR|? quickly unusual instructions| +50126|500611|612|1|50|80579.50|0.03|0.05|R|F|1992-12-15|1993-02-19|1992-12-31|NONE|REG AIR|blithely regular idea| +50126|757189|32220|2|36|44861.40|0.08|0.03|R|F|1993-01-16|1993-02-18|1993-01-26|DELIVER IN PERSON|SHIP|ly slyly e| +50126|70145|32647|3|10|11151.40|0.08|0.07|R|F|1993-03-25|1993-03-02|1993-03-27|TAKE BACK RETURN|MAIL|es nag blithely. unusual r| +50127|368221|18222|1|21|27073.41|0.10|0.05|A|F|1994-10-08|1994-09-30|1994-10-30|NONE|SHIP|fy asymptotes wake | +50152|983339|33340|1|13|18489.77|0.01|0.06|N|O|1998-08-10|1998-06-16|1998-09-07|TAKE BACK RETURN|RAIL|ut the even accounts. quick| +50152|971389|46428|2|32|46730.88|0.03|0.05|N|O|1998-08-23|1998-07-14|1998-09-10|NONE|SHIP|ideas around| +50153|904466|29503|1|15|22056.30|0.10|0.01|N|O|1995-09-16|1995-10-20|1995-10-10|DELIVER IN PERSON|SHIP|totes. stealthily eve| +50153|352798|40320|2|7|12955.46|0.05|0.03|N|O|1995-10-05|1995-10-06|1995-10-29|DELIVER IN PERSON|AIR|solve furious| +50153|459780|22290|3|16|27836.16|0.04|0.07|N|O|1995-10-10|1995-09-28|1995-10-22|NONE|SHIP|ccounts detect. furiously regular reque| +50153|522154|47175|4|18|21170.34|0.03|0.07|N|O|1995-10-31|1995-10-03|1995-11-27|DELIVER IN PERSON|FOB| theodolites. always i| +50154|941516|16553|1|12|18689.64|0.02|0.07|A|F|1992-10-30|1992-10-23|1992-11-07|DELIVER IN PERSON|RAIL|egular instructions among the slyly exp| +50154|53094|28097|2|41|42930.69|0.02|0.01|A|F|1992-10-23|1992-11-16|1992-11-15|DELIVER IN PERSON|REG AIR|sual foxes. fluffily f| +50154|335341|47848|3|11|15139.63|0.04|0.08|R|F|1992-10-29|1992-11-01|1992-11-09|NONE|MAIL|ts wake car| +50154|63355|25857|4|44|58007.40|0.00|0.05|R|F|1992-09-14|1992-10-22|1992-09-27|NONE|SHIP| even accounts boost fu| +50154|796525|9041|5|20|32429.80|0.04|0.05|R|F|1992-12-27|1992-10-23|1993-01-15|DELIVER IN PERSON|MAIL|rding to the sometim| +50154|187552|12559|6|47|77058.85|0.09|0.03|A|F|1992-11-06|1992-10-20|1992-11-27|NONE|AIR|final requests. slyly| +50154|183146|45650|7|14|17207.96|0.03|0.04|A|F|1992-10-21|1992-12-03|1992-11-18|DELIVER IN PERSON|RAIL|quests above the blithely spe| +50155|133406|33407|1|9|12954.60|0.05|0.06|R|F|1995-04-21|1995-03-13|1995-05-11|COLLECT COD|FOB|ly special accounts. carefully unusua| +50155|143244|18249|2|43|55351.32|0.08|0.00|A|F|1995-04-17|1995-03-31|1995-04-18|TAKE BACK RETURN|TRUCK|ctions promise quickly across| +50156|18536|6037|1|12|17454.36|0.01|0.04|R|F|1994-02-11|1993-12-06|1994-03-08|NONE|RAIL|theodolites. regu| +50156|523964|11495|2|42|83493.48|0.04|0.03|R|F|1994-01-31|1993-12-17|1994-02-21|TAKE BACK RETURN|FOB|bold foxes. quickly express acc| +50157|909827|34864|1|2|3673.56|0.06|0.07|N|O|1996-05-13|1996-04-19|1996-05-21|TAKE BACK RETURN|REG AIR|s are. sly| +50158|254568|42084|1|43|65469.65|0.07|0.07|A|F|1992-04-17|1992-05-13|1992-05-08|TAKE BACK RETURN|MAIL|ches. quickly final ideas nag sly| +50158|519813|7344|2|46|84308.34|0.09|0.02|A|F|1992-03-13|1992-05-08|1992-03-30|COLLECT COD|TRUCK| sleep. furiou| +50158|494391|44392|3|13|18009.81|0.03|0.02|A|F|1992-06-24|1992-05-12|1992-06-26|DELIVER IN PERSON|FOB|gular packages. carefully unu| +50158|228162|15675|4|21|22893.15|0.08|0.04|A|F|1992-03-05|1992-04-05|1992-03-21|DELIVER IN PERSON|MAIL|egular deposits. furiously final accou| +50159|391653|41654|1|13|22680.32|0.01|0.02|A|F|1992-05-29|1992-04-10|1992-06-28|NONE|TRUCK|ronic ideas. express, regular instruct| +50159|498973|36501|2|32|63102.40|0.01|0.06|R|F|1992-04-21|1992-05-13|1992-05-21|COLLECT COD|AIR|quickly enticing attainments.| +50159|238837|13846|3|36|63929.52|0.04|0.01|A|F|1992-06-10|1992-05-21|1992-06-28|COLLECT COD|REG AIR|thely pending dolphins. final dependenc| +50159|132491|32492|4|9|13711.41|0.00|0.04|A|F|1992-03-15|1992-05-12|1992-03-29|NONE|AIR|se. special, pending theodolites nag quic| +50159|761228|11229|5|13|16759.47|0.10|0.03|R|F|1992-05-09|1992-04-07|1992-05-20|NONE|FOB| silent sentiments| +50159|942267|4786|6|19|24875.18|0.10|0.03|R|F|1992-06-14|1992-05-18|1992-07-04|TAKE BACK RETURN|MAIL|y special ideas integra| +50159|665530|3070|7|22|32901.00|0.09|0.08|R|F|1992-06-25|1992-04-14|1992-07-04|DELIVER IN PERSON|AIR|. fluffily regular grouches doze b| +50184|558605|21117|1|18|29944.44|0.07|0.03|N|O|1996-06-21|1996-06-12|1996-07-12|DELIVER IN PERSON|FOB|ithely according to the | +50184|463837|13838|2|37|66629.97|0.04|0.05|N|O|1996-04-04|1996-05-28|1996-04-28|NONE|FOB|l ideas use. blithely pe| +50184|702274|27303|3|6|7657.44|0.06|0.08|N|O|1996-06-13|1996-06-28|1996-06-18|DELIVER IN PERSON|MAIL|platelets. express packages so| +50185|711118|48661|1|25|28227.00|0.02|0.06|N|O|1996-07-30|1996-10-18|1996-08-08|TAKE BACK RETURN|FOB|requests. fluffil| +50185|743509|43510|2|46|71413.62|0.10|0.02|N|O|1996-07-28|1996-10-17|1996-08-27|DELIVER IN PERSON|FOB|ing sheaves serve carefully pending r| +50186|542783|30314|1|17|31037.92|0.02|0.04|N|O|1997-04-07|1997-04-09|1997-04-20|TAKE BACK RETURN|AIR|quests about the regular courts boo| +50186|547273|9784|2|30|39607.50|0.10|0.05|N|O|1997-04-06|1997-03-12|1997-04-18|COLLECT COD|SHIP|lithely reg| +50187|691909|41910|1|5|9504.35|0.05|0.00|N|O|1997-06-05|1997-07-21|1997-06-08|COLLECT COD|REG AIR|ts. furiously ironic platelets sno| +50187|900744|38299|2|14|24425.80|0.00|0.06|N|O|1997-07-19|1997-07-09|1997-08-17|DELIVER IN PERSON|TRUCK|thely regular theodolites. | +50187|802474|14991|3|13|17893.59|0.05|0.00|N|O|1997-06-09|1997-07-09|1997-07-08|TAKE BACK RETURN|FOB|y regular accounts.| +50187|177880|40384|4|40|78315.20|0.05|0.00|N|O|1997-06-25|1997-06-09|1997-07-07|DELIVER IN PERSON|MAIL|nding package| +50188|874247|11799|1|26|31751.20|0.02|0.02|N|O|1996-09-11|1996-07-20|1996-09-29|COLLECT COD|MAIL|sly bold dependencies. furiousl| +50188|466442|3970|2|30|42252.60|0.03|0.04|N|O|1996-05-22|1996-07-03|1996-06-20|NONE|AIR|thely even accounts. care| +50188|483109|20637|3|30|32762.40|0.08|0.07|N|O|1996-08-02|1996-07-16|1996-08-09|NONE|RAIL|courts. carefully| +50188|597904|35438|4|42|84078.96|0.00|0.07|N|O|1996-07-28|1996-06-14|1996-08-11|DELIVER IN PERSON|MAIL|hes sleep. even| +50188|961693|36732|5|14|24565.10|0.08|0.04|N|O|1996-06-19|1996-06-16|1996-07-09|DELIVER IN PERSON|AIR|sly even accounts. furiously iro| +50189|902784|15303|1|14|25014.36|0.02|0.01|A|F|1993-07-05|1993-06-15|1993-07-21|DELIVER IN PERSON|REG AIR|nts across the reg| +50189|79326|4329|2|3|3915.96|0.04|0.06|A|F|1993-07-29|1993-05-21|1993-08-02|DELIVER IN PERSON|RAIL|dolites. carefully ironic foxes affix; | +50189|230175|5184|3|41|45311.56|0.06|0.05|R|F|1993-06-23|1993-06-01|1993-07-14|DELIVER IN PERSON|TRUCK|ss accounts. fl| +50189|535640|10661|4|28|46917.36|0.09|0.07|R|F|1993-08-16|1993-06-21|1993-08-23|NONE|REG AIR|slyly about the regu| +50189|487881|37882|5|13|24295.18|0.06|0.07|R|F|1993-06-20|1993-07-06|1993-07-11|NONE|FOB|regular accounts! quic| +50190|984381|9420|1|36|52752.24|0.05|0.00|N|O|1996-07-18|1996-07-17|1996-08-06|COLLECT COD|REG AIR|deposits daz| +50190|486718|49228|2|5|8523.45|0.01|0.02|N|O|1996-06-14|1996-08-25|1996-06-24|DELIVER IN PERSON|SHIP|ronic, final pin| +50190|253283|28294|3|31|38324.37|0.05|0.05|N|O|1996-07-22|1996-08-22|1996-07-23|NONE|FOB|g, regular p| +50190|919715|44752|4|15|26020.05|0.04|0.04|N|O|1996-08-06|1996-08-29|1996-08-10|NONE|RAIL|lites use quickly according to the f| +50190|642904|30441|5|12|22162.44|0.07|0.00|N|O|1996-10-05|1996-07-14|1996-10-18|COLLECT COD|TRUCK|ly furious accounts. pending, regular| +50190|276567|14083|6|48|74090.40|0.08|0.02|N|O|1996-08-18|1996-09-01|1996-09-16|NONE|SHIP|slyly furiously silent p| +50191|238063|13072|1|14|14014.70|0.03|0.02|N|O|1997-10-12|1997-09-10|1997-10-22|TAKE BACK RETURN|FOB|ntegrate blithely. slyly even pinto b| +50191|121637|9144|2|25|41465.75|0.01|0.04|N|O|1997-07-20|1997-09-13|1997-08-04|NONE|MAIL| requests-- quickly bold theodolites a| +50191|343782|18795|3|5|9128.85|0.10|0.01|N|O|1997-09-26|1997-07-22|1997-10-23|TAKE BACK RETURN|FOB|nusual dependencies haggle iro| +50191|941647|41648|4|19|32083.40|0.01|0.07|N|O|1997-10-18|1997-08-29|1997-10-29|TAKE BACK RETURN|RAIL|osits. blithely unusual | +50191|257516|7517|5|15|22102.50|0.05|0.07|N|O|1997-10-15|1997-07-22|1997-11-04|NONE|SHIP| asymptotes. slyly regular accounts cajo| +50191|57976|45480|6|29|56085.13|0.10|0.02|N|O|1997-09-27|1997-09-17|1997-10-13|COLLECT COD|REG AIR|he regular, ironic packages impress| +50191|392036|17051|7|50|56401.00|0.05|0.05|N|O|1997-10-15|1997-08-04|1997-11-13|DELIVER IN PERSON|FOB|ly silent hockey players nag furiously amo| +50216|944583|32138|1|39|63474.06|0.05|0.02|A|F|1994-05-27|1994-05-05|1994-06-13|NONE|SHIP|special accounts serve | +50216|604245|29270|2|49|56311.29|0.01|0.05|A|F|1994-06-13|1994-04-21|1994-07-04|COLLECT COD|FOB|; blithely regular ideas sleep blithely| +50217|151897|1898|1|38|74057.82|0.03|0.01|A|F|1994-09-15|1994-08-23|1994-09-23|COLLECT COD|RAIL|e furiously slyly even instructions. | +50217|919007|6562|2|34|34882.64|0.00|0.07|A|F|1994-07-20|1994-09-13|1994-07-24|COLLECT COD|FOB|ll are slyly pending asymptot| +50217|742894|17923|3|43|83284.98|0.02|0.08|A|F|1994-08-08|1994-08-29|1994-08-27|DELIVER IN PERSON|MAIL|quests. daringl| +50217|806620|19137|4|39|59536.62|0.02|0.07|R|F|1994-10-03|1994-09-22|1994-10-30|COLLECT COD|SHIP|e. blithely f| +50217|848861|48862|5|25|45245.50|0.03|0.08|R|F|1994-07-01|1994-08-04|1994-07-31|NONE|AIR|into beans haggle across the c| +50218|463052|580|1|14|14210.42|0.07|0.00|N|O|1998-01-19|1998-02-11|1998-02-11|DELIVER IN PERSON|MAIL|heodolites are quick| +50218|508604|8605|2|39|62890.62|0.02|0.01|N|O|1997-12-10|1997-12-27|1998-01-08|TAKE BACK RETURN|SHIP|ding to the carefully ironi| +50218|97788|22791|3|23|41072.94|0.10|0.04|N|O|1998-02-15|1997-12-30|1998-02-27|NONE|REG AIR|he regular packages| +50219|70628|8132|1|36|57550.32|0.05|0.04|R|F|1993-01-27|1993-02-11|1993-01-31|COLLECT COD|RAIL|s haggle carefully even foxes. regu| +50219|39075|1576|2|36|36506.52|0.05|0.05|A|F|1993-04-13|1993-02-12|1993-05-08|NONE|SHIP|ng accounts use quickly eve| +50219|729577|4606|3|15|24098.10|0.07|0.03|A|F|1993-02-06|1993-03-14|1993-03-05|NONE|FOB|ithely ironic pinto beans. care| +50219|993003|30561|4|2|2191.92|0.00|0.01|A|F|1993-02-01|1993-03-04|1993-02-10|NONE|SHIP|instructions. fur| +50219|394660|32182|5|41|71940.65|0.10|0.04|A|F|1993-03-30|1993-03-10|1993-04-14|TAKE BACK RETURN|FOB|es detect afte| +50219|44366|6867|6|38|49793.68|0.10|0.00|R|F|1993-03-24|1993-01-27|1993-04-10|TAKE BACK RETURN|MAIL|dolites. ideas affix slyly. ironic pl| +50220|987062|12101|1|5|5745.10|0.03|0.01|A|F|1995-05-02|1995-06-08|1995-05-18|DELIVER IN PERSON|MAIL|ess courts. excuses will| +50220|547485|9996|2|35|53636.10|0.03|0.07|N|F|1995-06-12|1995-06-01|1995-06-22|DELIVER IN PERSON|RAIL|special warhorses w| +50220|566171|16172|3|16|19794.40|0.05|0.04|N|O|1995-06-30|1995-06-07|1995-07-25|DELIVER IN PERSON|TRUCK|nstructions haggle quic| +50220|631756|44269|4|22|37129.84|0.06|0.04|A|F|1995-03-30|1995-04-17|1995-04-22|COLLECT COD|TRUCK|y even instructions affix quickly about the| +50220|920511|45548|5|39|59727.33|0.09|0.05|A|F|1995-03-27|1995-06-06|1995-04-13|COLLECT COD|SHIP|nal deposits nag furiously. furiously ev| +50221|297461|34977|1|17|24793.65|0.09|0.03|R|F|1994-07-11|1994-08-25|1994-07-16|COLLECT COD|FOB| serve furiously slyly blithe pinto bean| +50221|424295|36804|2|25|30481.75|0.09|0.05|A|F|1994-10-08|1994-07-11|1994-10-23|COLLECT COD|REG AIR|he furiously regular waters.| +50221|120282|20283|3|39|50788.92|0.04|0.03|A|F|1994-07-26|1994-08-20|1994-08-15|TAKE BACK RETURN|MAIL| carefully acco| +50222|841556|4073|1|33|49417.83|0.10|0.03|N|O|1996-02-22|1995-12-05|1996-03-19|DELIVER IN PERSON|AIR|equests. ironic deposits haggle aga| +50222|15327|40328|2|33|40996.56|0.00|0.00|N|O|1996-02-07|1995-12-27|1996-03-06|NONE|TRUCK|pending platelets detect fluffily. s| +50222|597361|9873|3|27|39375.18|0.08|0.07|N|O|1995-11-07|1995-12-05|1995-11-08|COLLECT COD|REG AIR| regular braids use| +50222|836616|36617|4|1|1552.57|0.08|0.08|N|O|1996-02-13|1995-12-31|1996-02-22|COLLECT COD|AIR| carefully | +50223|446538|21555|1|42|62349.42|0.03|0.08|N|O|1998-02-28|1998-03-02|1998-03-28|NONE|RAIL|old packages| +50223|956467|44025|2|22|33515.24|0.05|0.06|N|O|1998-03-16|1998-03-20|1998-03-23|DELIVER IN PERSON|REG AIR|ng accounts caj| +50248|161869|36876|1|37|71441.82|0.02|0.01|R|F|1994-12-21|1995-01-24|1995-01-19|COLLECT COD|MAIL|kages wake along the| +50248|517637|30148|2|6|9927.66|0.06|0.02|R|F|1995-03-13|1995-02-24|1995-04-02|DELIVER IN PERSON|FOB|metimes express instruc| +50248|913167|38204|3|22|25962.64|0.03|0.07|A|F|1995-01-28|1995-01-31|1995-01-30|NONE|FOB|tealthy, final forges. | +50248|584140|21674|4|43|52637.16|0.07|0.01|R|F|1994-12-07|1995-01-30|1994-12-17|NONE|AIR|gside of t| +50248|633150|45663|5|8|8664.96|0.04|0.04|R|F|1995-04-05|1995-02-28|1995-04-29|COLLECT COD|RAIL|ular packages sleep furiously. eve| +50248|339598|39599|6|5|8187.90|0.10|0.07|A|F|1994-12-22|1995-02-25|1995-01-09|NONE|RAIL|express requests cajole furiously| +50249|477796|2815|1|41|72724.57|0.10|0.02|N|O|1995-07-01|1995-05-01|1995-07-24|COLLECT COD|TRUCK|nal dinos sleep. iron| +50250|265306|40317|1|43|54665.47|0.08|0.07|R|F|1993-06-10|1993-08-09|1993-06-24|TAKE BACK RETURN|REG AIR|riously final | +50250|996593|9113|2|11|18585.05|0.07|0.01|R|F|1993-07-28|1993-07-10|1993-07-31|DELIVER IN PERSON|MAIL|uriously even foxes use care| +50250|727374|27375|3|10|14013.40|0.00|0.06|A|F|1993-06-08|1993-08-21|1993-06-19|NONE|AIR| even requests boost carefully| +50250|962459|12460|4|25|38035.25|0.04|0.02|A|F|1993-08-17|1993-08-15|1993-09-13|DELIVER IN PERSON|REG AIR|ole against t| +50250|34683|47184|5|14|22647.52|0.05|0.05|A|F|1993-06-09|1993-07-31|1993-06-24|DELIVER IN PERSON|RAIL|ly careful excuses acr| +50250|906347|43902|6|32|43305.60|0.03|0.07|R|F|1993-06-30|1993-07-26|1993-07-14|TAKE BACK RETURN|RAIL| furiously bold forges: slyly brav| +50251|475574|593|1|8|12396.40|0.02|0.07|A|F|1994-08-15|1994-10-14|1994-08-21|COLLECT COD|MAIL|s above the carefully ironic req| +50251|967781|30301|2|23|42521.02|0.08|0.03|A|F|1994-12-03|1994-09-08|1994-12-22|COLLECT COD|TRUCK|ts. final hockey players boost alon| +50251|494106|44107|3|40|44003.20|0.07|0.07|A|F|1994-09-11|1994-10-31|1994-09-12|DELIVER IN PERSON|AIR|nal packages. slyly regular theodoli| +50251|435247|35248|4|43|50835.46|0.10|0.07|A|F|1994-10-02|1994-10-17|1994-10-14|TAKE BACK RETURN|SHIP|slyly ironic requests. blithe| +50251|183331|20841|5|11|15557.63|0.08|0.03|R|F|1994-09-24|1994-11-06|1994-09-29|COLLECT COD|REG AIR| ideas. fluffily ironic epi| +50251|229627|42132|6|39|60707.79|0.03|0.04|R|F|1994-11-20|1994-09-18|1994-11-29|NONE|TRUCK|d requests haggle. pending | +50251|333763|46270|7|23|41325.25|0.01|0.00|A|F|1994-11-07|1994-09-20|1994-11-16|NONE|FOB|after the blithely regular requests. i| +50252|538858|26389|1|16|30349.28|0.05|0.03|R|F|1992-03-20|1992-04-20|1992-04-11|TAKE BACK RETURN|AIR| regular asymptotes boost fluffily careful| +50252|579511|29512|2|1|1590.49|0.08|0.02|A|F|1992-05-01|1992-04-04|1992-05-09|TAKE BACK RETURN|MAIL| special pinto beans. final, regul| +50252|833600|46117|3|31|47540.36|0.09|0.05|A|F|1992-04-12|1992-03-12|1992-04-21|TAKE BACK RETURN|REG AIR|beans unwind carefully. slyl| +50253|855852|18370|1|7|12654.67|0.02|0.00|N|O|1996-08-26|1996-09-07|1996-09-20|NONE|RAIL|lly unusual courts sle| +50253|300086|37605|2|4|4344.28|0.05|0.01|N|O|1996-07-05|1996-09-15|1996-07-23|COLLECT COD|SHIP|ng multipliers cajole | +50253|534354|9375|3|10|13883.30|0.02|0.06|N|O|1996-07-04|1996-08-03|1996-07-05|COLLECT COD|REG AIR|y regular foxes. | +50254|666101|3641|1|34|36280.38|0.05|0.02|N|O|1997-02-02|1997-02-04|1997-02-21|DELIVER IN PERSON|TRUCK|ross the furiously final depo| +50254|156199|31206|2|16|20083.04|0.08|0.00|N|O|1997-01-18|1997-02-14|1997-01-24|COLLECT COD|AIR|ise furiously. blithely | +50254|226504|14017|3|15|21457.35|0.08|0.01|N|O|1997-04-22|1997-01-30|1997-05-01|COLLECT COD|SHIP|sts are care| +50255|197817|10321|1|39|74677.59|0.03|0.03|A|F|1992-04-18|1992-02-26|1992-05-16|COLLECT COD|TRUCK|ajole slyly. pa| +50280|903871|16390|1|33|61869.39|0.05|0.01|A|F|1994-04-10|1994-01-22|1994-05-07|DELIVER IN PERSON|AIR|carefully regu| +50280|347763|22776|2|18|32593.50|0.01|0.01|R|F|1993-12-24|1994-03-18|1993-12-29|TAKE BACK RETURN|SHIP|packages s| +50280|839863|27412|3|34|61295.88|0.00|0.01|R|F|1994-02-07|1994-01-31|1994-03-02|COLLECT COD|TRUCK|le. regularly ironic pa| +50281|280263|42769|1|29|36054.25|0.08|0.00|A|F|1993-12-16|1994-01-09|1994-01-03|COLLECT COD|FOB|requests affix silently acros| +50281|370667|8189|2|35|60817.75|0.03|0.04|R|F|1994-01-06|1994-01-17|1994-02-01|NONE|AIR|quests use carefu| +50281|792529|30075|3|13|21079.37|0.01|0.06|A|F|1993-12-04|1994-01-02|1993-12-13|COLLECT COD|SHIP|ronic, ironic accounts.| +50281|32506|7507|4|22|31647.00|0.05|0.06|R|F|1994-01-15|1993-12-24|1994-01-28|DELIVER IN PERSON|TRUCK| special courts wake slyly bol| +50281|328214|40721|5|36|44719.20|0.06|0.07|A|F|1994-01-20|1993-12-10|1994-02-13|COLLECT COD|TRUCK|ular deposits. even, ironic instructio| +50281|282910|20426|6|2|3785.80|0.04|0.07|R|F|1994-02-02|1994-01-15|1994-02-20|NONE|REG AIR|s alongside of the fluffily bold pa| +50281|858810|33845|7|26|45988.02|0.10|0.01|R|F|1994-02-06|1993-12-29|1994-02-13|COLLECT COD|TRUCK|sleep quickly abo| +50282|11610|36611|1|1|1521.61|0.02|0.06|A|F|1994-02-27|1994-04-09|1994-03-27|TAKE BACK RETURN|AIR|inal ideas ought to | +50282|125544|549|2|8|12556.32|0.07|0.06|R|F|1994-01-30|1994-04-15|1994-02-26|TAKE BACK RETURN|REG AIR|ess requests are r| +50282|10268|22769|3|38|44773.88|0.04|0.06|R|F|1994-03-11|1994-03-25|1994-03-24|TAKE BACK RETURN|AIR|s. pending| +50282|572351|34863|4|21|29889.93|0.00|0.02|A|F|1994-04-02|1994-03-27|1994-04-11|COLLECT COD|TRUCK|n packages boost blithely ironic ideas| +50282|486941|49451|5|36|69405.12|0.06|0.04|A|F|1994-03-15|1994-04-08|1994-04-06|DELIVER IN PERSON|REG AIR| are quickly? quickly express | +50282|4618|4619|6|4|6090.44|0.00|0.02|A|F|1994-05-14|1994-04-01|1994-06-01|COLLECT COD|RAIL| theodolites are regular platelets. slyl| +50282|612328|37353|7|3|3720.87|0.10|0.08|R|F|1994-04-09|1994-03-04|1994-04-18|NONE|MAIL|nt accounts cajo| +50283|385938|48446|1|2|4047.84|0.08|0.02|N|O|1996-01-11|1996-02-03|1996-01-22|DELIVER IN PERSON|SHIP|s cajole regular accounts. carefully| +50283|457801|45329|2|40|70351.20|0.09|0.04|N|O|1996-03-05|1996-02-19|1996-03-20|DELIVER IN PERSON|MAIL|kages use furiou| +50283|244705|32218|3|27|44541.63|0.08|0.08|N|O|1996-01-14|1996-02-01|1996-01-23|COLLECT COD|AIR|ounts affix quickly blithely i| +50283|755254|5255|4|40|52368.80|0.01|0.05|N|O|1996-04-08|1996-01-17|1996-04-18|TAKE BACK RETURN|RAIL|usual instructions. even pa| +50283|547081|22102|5|13|14664.78|0.06|0.05|N|O|1996-02-06|1996-02-20|1996-02-29|NONE|SHIP| above the even p| +50284|256398|43914|1|39|52820.82|0.03|0.03|N|O|1997-10-16|1997-10-07|1997-10-26|DELIVER IN PERSON|AIR|unusual packages| +50284|273758|11274|2|20|34634.80|0.09|0.02|N|O|1997-12-18|1997-10-27|1998-01-14|TAKE BACK RETURN|REG AIR| quickly among t| +50284|47496|22497|3|2|2886.98|0.03|0.06|N|O|1997-12-29|1997-10-13|1998-01-08|NONE|RAIL|ymptotes haggle furious| +50285|575361|384|1|21|30163.14|0.05|0.03|R|F|1995-04-26|1995-07-03|1995-05-25|TAKE BACK RETURN|RAIL|e ironic theodolites. carefully unus| +50285|90984|15987|2|12|23699.76|0.04|0.02|N|F|1995-05-28|1995-05-27|1995-06-26|COLLECT COD|AIR|c somas ought to integrate above the furiou| +50286|669514|32028|1|45|66756.60|0.06|0.00|N|O|1996-09-10|1996-11-23|1996-09-20|NONE|RAIL|xpress packages wake. bo| +50286|509132|9133|2|37|42221.07|0.06|0.04|N|O|1996-09-21|1996-10-07|1996-10-04|NONE|AIR|packages are furiously alongside of t| +50286|973290|23291|3|33|44987.25|0.01|0.05|N|O|1996-12-23|1996-10-26|1997-01-10|COLLECT COD|RAIL| requests sleep quickly bli| +50286|74490|24491|4|33|48328.17|0.08|0.07|N|O|1996-12-11|1996-10-02|1997-01-02|DELIVER IN PERSON|AIR|ly silent dependencies lose| +50287|954843|29882|1|26|49342.80|0.09|0.00|R|F|1993-07-30|1993-09-25|1993-08-06|NONE|AIR|packages sleep daringly with the | +50287|33138|45639|2|2|2142.26|0.07|0.00|A|F|1993-09-18|1993-09-13|1993-10-16|TAKE BACK RETURN|AIR|ests. fluffily dogged| +50287|940606|40607|3|13|21405.28|0.06|0.05|R|F|1993-10-23|1993-08-23|1993-11-16|TAKE BACK RETURN|SHIP|ly special id| +50287|761339|48885|4|10|14003.00|0.08|0.05|A|F|1993-09-28|1993-08-06|1993-10-06|COLLECT COD|MAIL| ironic theodolites against the carefu| +50287|807995|7996|5|26|49476.70|0.04|0.07|R|F|1993-09-15|1993-09-29|1993-10-10|COLLECT COD|TRUCK|rve quickly. ironic pinto beans detec| +50287|958846|8847|6|21|40000.80|0.02|0.07|R|F|1993-10-23|1993-08-29|1993-11-05|TAKE BACK RETURN|FOB|regular foxes use quickly pending account| +50287|311363|11364|7|29|39856.15|0.09|0.00|R|F|1993-09-07|1993-08-15|1993-09-30|COLLECT COD|AIR|ole blithely blithely r| +50312|68786|31288|1|27|47379.06|0.04|0.07|N|O|1995-12-25|1996-02-06|1996-01-21|TAKE BACK RETURN|SHIP|lar dependenci| +50312|84000|34001|2|13|12792.00|0.08|0.01|N|O|1996-02-28|1996-01-20|1996-03-01|DELIVER IN PERSON|RAIL|e final, pending p| +50312|786855|36856|3|34|66021.88|0.06|0.05|N|O|1996-01-31|1996-02-22|1996-02-21|NONE|AIR|raids. fluffily d| +50313|803761|3762|1|26|43282.72|0.01|0.06|A|F|1993-01-19|1993-01-26|1993-01-25|TAKE BACK RETURN|FOB|ideas. blithely express pinto| +50314|717884|42913|1|1|1901.85|0.02|0.00|R|F|1995-03-13|1995-02-10|1995-03-31|DELIVER IN PERSON|TRUCK| toward the asym| +50314|468441|43460|2|30|42282.60|0.02|0.05|A|F|1995-01-22|1995-04-08|1995-02-12|NONE|FOB|y express dep| +50314|83997|9000|3|44|87163.56|0.05|0.04|A|F|1995-02-16|1995-04-03|1995-03-12|DELIVER IN PERSON|SHIP|y along the | +50314|731437|18980|4|46|67546.40|0.07|0.05|R|F|1995-04-05|1995-03-25|1995-04-21|NONE|TRUCK|arefully final accounts alo| +50314|246630|34143|5|4|6306.48|0.10|0.01|R|F|1995-02-20|1995-02-16|1995-03-10|NONE|SHIP|lly pending requests about the slyly bol| +50315|625773|38286|1|4|6794.96|0.04|0.05|N|O|1998-01-24|1998-03-13|1998-01-30|COLLECT COD|TRUCK|egular ideas sleep slyly ironic asymptotes| +50315|353763|16271|2|26|47235.50|0.08|0.00|N|O|1998-02-12|1998-03-17|1998-02-17|DELIVER IN PERSON|RAIL|silent requests nag quic| +50315|688188|702|3|13|15289.95|0.06|0.01|N|O|1998-02-08|1998-03-24|1998-02-17|DELIVER IN PERSON|RAIL|avely about the carefully bold packages. ca| +50315|360447|22955|4|6|9044.58|0.06|0.03|N|O|1998-05-16|1998-03-05|1998-05-24|DELIVER IN PERSON|TRUCK|ructions haggle | +50315|20480|7981|5|42|58820.16|0.02|0.00|N|O|1998-01-26|1998-03-29|1998-02-02|NONE|SHIP|ickly pending pinto beans. slyly final| +50315|205168|30177|6|35|37560.25|0.01|0.08|N|O|1998-03-31|1998-03-22|1998-04-16|COLLECT COD|MAIL|ronic, ironic foxes haggl| +50315|257028|44544|7|30|29550.30|0.05|0.00|N|O|1998-04-23|1998-04-05|1998-04-26|TAKE BACK RETURN|RAIL|ongside of the carefully even excus| +50316|857123|7124|1|48|51843.84|0.00|0.06|A|F|1993-05-25|1993-04-23|1993-06-04|TAKE BACK RETURN|AIR|refully special escap| +50316|652268|27295|2|3|3660.69|0.00|0.04|A|F|1993-04-07|1993-04-02|1993-04-26|COLLECT COD|AIR|packages. regular, special a| +50316|663327|13328|3|33|42579.57|0.00|0.06|R|F|1993-02-19|1993-04-02|1993-02-28|TAKE BACK RETURN|SHIP|nic dependencies. quickly un| +50317|481664|6683|1|24|39495.36|0.08|0.01|R|F|1993-11-25|1993-10-28|1993-11-26|TAKE BACK RETURN|FOB|special instructions are i| +50317|315889|3408|2|44|83814.28|0.05|0.01|A|F|1993-10-21|1993-09-17|1993-11-11|NONE|MAIL|sh quickly.| +50317|135578|23085|3|24|38725.68|0.01|0.08|R|F|1993-10-04|1993-09-19|1993-10-05|DELIVER IN PERSON|MAIL|en requests. pinto beans are past the furi| +50318|74354|11858|1|29|38522.15|0.02|0.07|N|O|1996-12-27|1997-02-21|1997-01-01|COLLECT COD|MAIL|ely regular requests. carefully even foxe| +50318|653731|28758|2|44|74126.80|0.00|0.06|N|O|1996-12-26|1997-02-02|1997-01-04|COLLECT COD|MAIL|mong the blithel| +50318|252096|2097|3|33|34586.64|0.08|0.00|N|O|1997-02-20|1997-01-21|1997-03-12|NONE|SHIP|nic platelets wa| +50318|971881|21882|4|33|64443.72|0.07|0.05|N|O|1997-01-12|1997-03-06|1997-02-08|COLLECT COD|REG AIR|ffily regular dolphins-- slyly pen| +50319|168882|18883|1|14|27312.32|0.07|0.07|A|F|1993-05-06|1993-04-16|1993-05-27|TAKE BACK RETURN|REG AIR|iously ironic | +50319|385442|10457|2|7|10692.01|0.05|0.03|A|F|1993-04-03|1993-04-08|1993-04-23|COLLECT COD|FOB|y pending accounts. dari| +50319|120064|20065|3|19|20597.14|0.01|0.05|A|F|1993-03-22|1993-04-07|1993-04-05|TAKE BACK RETURN|MAIL|of the fluffily r| +50319|909023|34060|4|21|21671.58|0.03|0.02|A|F|1993-05-09|1993-04-19|1993-05-22|COLLECT COD|FOB|nic ideas might | +50319|936912|24467|5|37|72108.19|0.02|0.02|R|F|1993-02-22|1993-04-30|1993-03-03|COLLECT COD|AIR|ages. quickly ironic deposits accordi| +50344|534289|21820|1|21|27788.46|0.07|0.02|N|O|1996-08-12|1996-11-04|1996-08-28|COLLECT COD|FOB|haggle across t| +50344|792005|29551|2|12|13163.64|0.02|0.06|N|O|1996-11-18|1996-10-14|1996-11-28|NONE|TRUCK|quests. slyly even i| +50344|215155|40164|3|34|36384.76|0.06|0.03|N|O|1996-10-28|1996-10-07|1996-11-02|TAKE BACK RETURN|RAIL|. quickly pending ideas wake furious| +50344|93798|18801|4|48|86005.92|0.08|0.03|N|O|1996-11-21|1996-09-12|1996-11-29|DELIVER IN PERSON|TRUCK|pinto beans. silent, express ep| +50344|459213|34232|5|26|30476.94|0.05|0.07|N|O|1996-12-03|1996-09-25|1996-12-23|COLLECT COD|FOB|sleep quickly inside the ir| +50344|988532|1052|6|23|37271.27|0.00|0.08|N|O|1996-08-14|1996-10-26|1996-08-28|TAKE BACK RETURN|REG AIR|structions. bold, unusual deposits bo| +50344|253830|16336|7|31|55298.42|0.01|0.04|N|O|1996-11-22|1996-10-21|1996-12-10|TAKE BACK RETURN|FOB|ously regular pinto bea| +50345|108084|33089|1|2|2184.16|0.00|0.04|N|O|1995-09-23|1995-08-14|1995-09-24|DELIVER IN PERSON|AIR| use blithely along| +50345|557704|7705|2|6|10570.08|0.06|0.04|N|O|1995-09-25|1995-09-13|1995-09-30|DELIVER IN PERSON|RAIL|ic deposits| +50345|326168|26169|3|1|1194.15|0.03|0.07|N|O|1995-09-22|1995-08-11|1995-10-12|TAKE BACK RETURN|TRUCK|arefully. furiously u| +50346|448598|48599|1|6|9279.42|0.09|0.08|R|F|1993-05-31|1993-07-14|1993-06-29|DELIVER IN PERSON|TRUCK|lent, idle| +50346|578971|16505|2|24|49198.80|0.02|0.00|A|F|1993-06-05|1993-06-28|1993-06-09|NONE|AIR| cajole carefully slyly express account| +50346|754519|17035|3|12|18881.76|0.05|0.01|R|F|1993-07-22|1993-08-14|1993-07-28|TAKE BACK RETURN|TRUCK|slyly even forges. regular,| +50347|405283|42808|1|49|58224.74|0.01|0.02|A|F|1993-04-28|1993-04-05|1993-05-21|DELIVER IN PERSON|FOB|lithely even | +50347|581466|6489|2|20|30948.80|0.03|0.05|R|F|1993-05-26|1993-04-24|1993-05-29|DELIVER IN PERSON|SHIP|sual, express accounts slee| +50347|694310|19337|3|36|46954.08|0.00|0.02|A|F|1993-06-23|1993-05-08|1993-07-09|NONE|TRUCK|eep. quickly ironic pa| +50347|253911|41427|4|31|57811.90|0.05|0.00|A|F|1993-04-02|1993-04-21|1993-04-21|NONE|AIR|iously silent asymptotes mold r| +50347|478105|3124|5|43|46572.44|0.10|0.01|A|F|1993-03-21|1993-05-14|1993-03-24|TAKE BACK RETURN|REG AIR|orbits haggle blithely ironic p| +50348|513794|13795|1|38|68695.26|0.01|0.00|R|F|1994-10-22|1994-09-01|1994-11-07|NONE|MAIL|ccounts boost| +50348|329944|17463|2|18|35530.74|0.04|0.08|A|F|1994-10-15|1994-10-10|1994-10-18|TAKE BACK RETURN|SHIP|ackages. carefully even foxes| +50348|361769|49291|3|27|49430.25|0.08|0.05|R|F|1994-08-06|1994-09-27|1994-09-05|DELIVER IN PERSON|SHIP| cajole fluffily around the slyly regular | +50348|247580|47581|4|9|13748.13|0.02|0.04|A|F|1994-11-03|1994-10-17|1994-11-16|TAKE BACK RETURN|TRUCK|phins haggle carefully even a| +50348|75015|25016|5|29|28710.29|0.04|0.01|A|F|1994-08-28|1994-09-05|1994-09-17|NONE|TRUCK| quickly regul| +50348|773405|35921|6|29|42872.73|0.08|0.05|R|F|1994-09-19|1994-09-30|1994-09-23|NONE|MAIL| pinto beans cajole carefully furiously re| +50349|991234|41235|1|24|31804.56|0.04|0.00|A|F|1994-02-19|1994-02-27|1994-03-03|NONE|REG AIR|es. slyly regular requests use fluffily. | +50349|664396|1936|2|47|63936.92|0.10|0.00|A|F|1994-02-26|1994-02-08|1994-03-05|TAKE BACK RETURN|TRUCK|t pinto beans. pending packages boost ca| +50349|502413|2414|3|18|25477.02|0.08|0.01|R|F|1994-04-18|1994-02-08|1994-05-07|DELIVER IN PERSON|REG AIR|ronic pinto beans; ironic i| +50350|836804|49321|1|1|1740.76|0.10|0.08|A|F|1995-02-01|1994-11-20|1995-02-09|TAKE BACK RETURN|RAIL|uriously ironic requests. instructions| +50350|154601|42111|2|45|74502.00|0.09|0.04|A|F|1994-12-11|1994-11-12|1995-01-06|COLLECT COD|REG AIR|leep alongside | +50350|377956|40464|3|4|8135.76|0.10|0.07|R|F|1994-11-17|1995-01-07|1994-12-07|TAKE BACK RETURN|SHIP|ions nag ca| +50350|303829|16336|4|5|9164.05|0.09|0.07|A|F|1995-02-07|1994-11-30|1995-02-12|DELIVER IN PERSON|SHIP|express, r| +50350|450638|38166|5|6|9531.66|0.04|0.03|R|F|1995-02-01|1994-12-24|1995-03-02|DELIVER IN PERSON|AIR|e furiously | +50350|869229|31747|6|38|45530.84|0.06|0.03|R|F|1995-01-30|1994-12-11|1995-02-24|NONE|TRUCK| pinto beans cajole slowly ironic deposi| +50351|454098|16608|1|28|29457.96|0.08|0.00|A|F|1994-04-18|1994-05-25|1994-05-18|NONE|RAIL|heodolites maintai| +50351|11389|36390|2|14|18205.32|0.01|0.06|R|F|1994-07-13|1994-05-30|1994-07-24|DELIVER IN PERSON|SHIP|lar, final escapades wake furiously a| +50351|411462|23971|3|12|16481.28|0.07|0.04|A|F|1994-04-23|1994-06-26|1994-04-29|NONE|RAIL|the quickly bold ideas.| +50351|437527|25052|4|31|45399.50|0.06|0.01|R|F|1994-05-07|1994-05-18|1994-06-01|NONE|FOB|gular deposits haggle furiousl| +50376|340864|40865|1|29|55240.65|0.10|0.04|R|F|1994-11-05|1994-11-30|1994-12-05|DELIVER IN PERSON|SHIP|c accounts. blithely | +50376|892868|30420|2|22|40938.04|0.05|0.04|R|F|1995-01-24|1995-01-19|1995-02-14|NONE|MAIL|nal deposits sleep blithely| +50376|417763|5288|3|39|65548.86|0.07|0.03|R|F|1995-01-06|1995-01-05|1995-01-27|COLLECT COD|AIR|. sometimes express frays cajole across t| +50377|380242|42750|1|22|29089.06|0.00|0.01|N|O|1995-08-26|1995-09-06|1995-09-08|NONE|MAIL|final foxes haggle carefully against | +50377|715626|28141|2|44|72229.96|0.03|0.04|N|O|1995-08-23|1995-07-27|1995-08-27|DELIVER IN PERSON|FOB|sual requests sle| +50377|520232|45253|3|11|13774.31|0.03|0.05|N|O|1995-08-30|1995-09-12|1995-09-26|COLLECT COD|MAIL|totes. quick| +50377|523747|36258|4|16|28331.52|0.09|0.03|N|O|1995-08-31|1995-08-17|1995-09-17|COLLECT COD|SHIP|cajole blithely blithely final | +50377|602574|15087|5|45|66444.30|0.00|0.01|N|O|1995-07-13|1995-07-26|1995-08-11|DELIVER IN PERSON|MAIL|ifts sleep furiously against| +50377|457015|32034|6|8|7775.92|0.01|0.03|N|O|1995-08-28|1995-07-31|1995-09-10|TAKE BACK RETURN|FOB| along the eve| +50377|41010|3511|7|24|22824.24|0.09|0.01|N|O|1995-07-29|1995-07-18|1995-08-27|DELIVER IN PERSON|SHIP|silent, special multipliers wak| +50378|246709|9214|1|20|33113.80|0.10|0.07|A|F|1993-08-30|1993-06-14|1993-09-25|NONE|AIR|ns impress quickly against the fluffily | +50378|431323|43832|2|21|26340.30|0.10|0.02|A|F|1993-05-14|1993-06-12|1993-05-24|TAKE BACK RETURN|MAIL|lyly final ideas. ca| +50378|232607|45112|3|46|70821.14|0.04|0.05|R|F|1993-07-02|1993-07-03|1993-07-10|COLLECT COD|RAIL|ts wake quickly blithely pending reques| +50379|232516|45021|1|40|57940.00|0.08|0.00|A|F|1993-03-18|1993-05-21|1993-03-26|COLLECT COD|FOB|jole blithely iron| +50379|886765|36766|2|36|63061.92|0.03|0.05|R|F|1993-05-28|1993-04-14|1993-06-06|DELIVER IN PERSON|REG AIR|riously ruthless| +50380|430413|42922|1|21|28211.19|0.07|0.02|R|F|1994-09-27|1994-09-09|1994-10-15|TAKE BACK RETURN|AIR| quickly ironic dependencies| +50380|935694|48213|2|25|43241.25|0.08|0.05|A|F|1994-10-09|1994-09-15|1994-10-30|TAKE BACK RETURN|REG AIR|theodolites integrate along the quickly pe| +50380|198786|36296|3|20|37695.60|0.04|0.00|A|F|1994-09-01|1994-09-16|1994-09-23|DELIVER IN PERSON|REG AIR|y pending multipliers. slyly even| +50380|981830|44350|4|20|38235.80|0.08|0.07|A|F|1994-08-15|1994-09-27|1994-09-04|NONE|TRUCK|ly bold pack| +50380|601125|26150|5|26|26678.34|0.05|0.07|A|F|1994-10-10|1994-09-26|1994-10-16|TAKE BACK RETURN|MAIL|ove the finally silent platele| +50380|106316|6317|6|35|46280.85|0.01|0.00|R|F|1994-10-13|1994-10-11|1994-10-17|NONE|RAIL|carefully pending requests. daringl| +50381|537812|323|1|16|29596.64|0.00|0.08|A|F|1995-05-26|1995-04-27|1995-05-29|COLLECT COD|TRUCK|counts wake among the pack| +50381|4961|17462|2|40|74638.40|0.02|0.03|R|F|1995-05-01|1995-04-10|1995-05-18|COLLECT COD|FOB|es against the blithely | +50381|364208|1730|3|29|36893.51|0.09|0.04|R|F|1995-06-01|1995-03-30|1995-06-04|DELIVER IN PERSON|MAIL|ccounts boost furiously. pending ide| +50381|241805|16814|4|40|69871.60|0.04|0.00|R|F|1995-03-08|1995-03-30|1995-04-04|TAKE BACK RETURN|SHIP|after the regular asymptotes. furio| +50382|535644|35645|1|25|41990.50|0.01|0.07|N|O|1996-12-06|1997-01-30|1996-12-14|TAKE BACK RETURN|MAIL|le slyly final deposits.| +50382|561934|24446|2|33|65865.03|0.01|0.07|N|O|1997-03-15|1997-02-09|1997-04-14|COLLECT COD|TRUCK|efully final accounts. unusual deposits | +50383|55874|30877|1|31|56725.97|0.02|0.04|A|F|1993-01-12|1992-12-16|1993-01-23|NONE|REG AIR|uriously regular sheaves: carefully i| +50383|60855|35858|2|5|9079.25|0.02|0.05|R|F|1992-12-08|1993-01-05|1993-01-07|DELIVER IN PERSON|REG AIR|furiously express accounts cajole unusua| +50383|779159|4190|3|50|61906.00|0.04|0.08|A|F|1993-02-12|1992-11-30|1993-02-26|COLLECT COD|FOB| final, final deposits? special, e| +50383|316650|4169|4|1|1666.64|0.02|0.05|A|F|1993-02-06|1992-12-17|1993-02-14|DELIVER IN PERSON|AIR|fily. furiously express r| +50408|62957|12958|1|4|7679.80|0.10|0.00|N|O|1998-02-13|1998-02-13|1998-03-04|DELIVER IN PERSON|REG AIR|integrate boldly. thinly pe| +50408|111506|24009|2|35|53112.50|0.08|0.03|N|O|1998-05-06|1998-04-05|1998-05-12|TAKE BACK RETURN|FOB|uriously busy requests. slyly even| +50408|81205|18709|3|7|8303.40|0.05|0.02|N|O|1998-02-24|1998-03-05|1998-03-01|DELIVER IN PERSON|AIR| express instructions use quickly a| +50408|807508|32541|4|2|2830.92|0.08|0.03|N|O|1998-01-19|1998-02-22|1998-02-11|TAKE BACK RETURN|TRUCK|y against t| +50409|254567|29578|1|41|62383.55|0.00|0.00|N|O|1996-09-05|1996-10-31|1996-09-14|TAKE BACK RETURN|TRUCK|nts sleep blithely| +50409|495990|8500|2|49|97312.53|0.05|0.04|N|O|1996-11-02|1996-10-19|1996-11-15|COLLECT COD|RAIL| excuses mold caref| +50409|93364|5866|3|28|38006.08|0.10|0.05|N|O|1996-12-08|1996-11-24|1996-12-27|NONE|MAIL|requests. fluff| +50409|165561|15562|4|1|1626.56|0.07|0.00|N|O|1996-10-06|1996-10-17|1996-10-31|NONE|FOB|tions. final accounts | +50409|583015|33016|5|30|32939.70|0.09|0.04|N|O|1996-10-30|1996-10-31|1996-11-03|NONE|REG AIR|thlessly regular escapades run ca| +50409|719101|6644|6|31|34722.17|0.00|0.04|N|O|1996-11-26|1996-10-03|1996-11-29|DELIVER IN PERSON|TRUCK|ding deposits. requests haggle slyly. iro| +50410|187841|345|1|40|77153.60|0.04|0.01|N|O|1998-05-18|1998-04-26|1998-06-06|COLLECT COD|REG AIR|s kindle fluffily thinly expr| +50410|34775|34776|2|12|20517.24|0.03|0.02|N|O|1998-06-15|1998-05-23|1998-07-03|NONE|AIR|wake accounts. fluffily re| +50410|460578|10579|3|39|60003.45|0.04|0.02|N|O|1998-06-18|1998-05-03|1998-07-07|NONE|RAIL|uriously final r| +50410|927315|14870|4|23|30872.21|0.00|0.01|N|O|1998-06-07|1998-04-24|1998-06-08|NONE|RAIL|regular foxes kindle fluffily alo| +50410|380904|5919|5|49|97259.61|0.04|0.00|N|O|1998-05-04|1998-06-01|1998-05-27|NONE|AIR|ular, final d| +50410|838830|1347|6|24|42450.96|0.08|0.02|N|O|1998-06-21|1998-05-24|1998-06-27|NONE|SHIP|quests. slyly pen| +50410|207017|44530|7|25|23100.00|0.02|0.02|N|O|1998-07-04|1998-05-09|1998-07-24|DELIVER IN PERSON|AIR|uld solve carefully| +50411|321100|8619|1|27|30269.43|0.08|0.08|A|F|1992-11-23|1992-10-21|1992-12-13|NONE|REG AIR|t carefully express asymptotes. furi| +50411|726620|1649|2|46|75743.14|0.03|0.02|A|F|1992-08-18|1992-08-30|1992-09-14|COLLECT COD|MAIL| asymptotes. regular ideas a| +50411|294885|19896|3|30|56396.10|0.08|0.01|R|F|1992-10-07|1992-09-03|1992-10-21|COLLECT COD|RAIL|egular, regular dependencies. blithely exp| +50411|127701|27702|4|35|60504.50|0.07|0.05|A|F|1992-11-08|1992-09-24|1992-11-11|DELIVER IN PERSON|TRUCK|instructions across the| +50412|883811|21363|1|24|43074.48|0.04|0.00|N|O|1996-06-16|1996-05-21|1996-07-02|NONE|SHIP|its doubt? carefully ironi| +50412|207372|7373|2|32|40939.52|0.07|0.04|N|O|1996-04-24|1996-05-21|1996-04-30|COLLECT COD|TRUCK|ans. bold deposits haggle. quickly pen| +50412|297277|47278|3|26|33130.76|0.03|0.05|N|O|1996-04-14|1996-05-23|1996-05-05|NONE|RAIL|ole. slowly special requests against th| +50412|323957|11476|4|46|91123.24|0.08|0.05|N|O|1996-07-04|1996-06-12|1996-07-30|COLLECT COD|SHIP|silent ideas believe quickly alongsid| +50412|740887|40888|5|47|90608.95|0.01|0.04|N|O|1996-05-02|1996-05-14|1996-05-07|COLLECT COD|FOB|c requests serve slyly a| +50413|13462|38463|1|33|45390.18|0.02|0.07|R|F|1994-06-11|1994-07-12|1994-07-05|TAKE BACK RETURN|SHIP|iously express | +50413|245231|32744|2|10|11762.20|0.00|0.07|A|F|1994-06-08|1994-06-17|1994-07-05|NONE|SHIP|aringly against the carefully final excus| +50413|587288|49800|3|6|8251.56|0.10|0.06|A|F|1994-05-22|1994-06-03|1994-05-25|DELIVER IN PERSON|RAIL|olites wake theodo| +50413|546387|33918|4|21|30100.56|0.03|0.05|R|F|1994-08-02|1994-06-13|1994-08-18|DELIVER IN PERSON|TRUCK|y about the blithely even asympt| +50413|119153|31656|5|48|56263.20|0.09|0.03|A|F|1994-07-28|1994-07-06|1994-08-13|COLLECT COD|FOB|y bold packages sleep carefully| +50413|592818|30352|6|44|84074.76|0.06|0.07|R|F|1994-07-24|1994-07-04|1994-08-05|DELIVER IN PERSON|FOB|zzle slyly | +50413|485516|48026|7|3|4504.47|0.02|0.06|R|F|1994-05-17|1994-07-02|1994-05-25|NONE|FOB|sits wake among the slyly express foxes. fi| +50414|58652|8653|1|44|70868.60|0.06|0.06|N|O|1997-06-03|1997-05-03|1997-06-27|NONE|TRUCK|lar, close requests. slyly regular depo| +50414|755760|43306|2|18|32683.14|0.01|0.02|N|O|1997-06-06|1997-04-01|1997-06-23|DELIVER IN PERSON|REG AIR| pending accounts; furiously | +50415|991176|41177|1|50|63356.50|0.08|0.04|R|F|1993-04-12|1993-03-27|1993-05-03|NONE|RAIL|above the deposits haggle blithely even| +50415|688182|13209|2|30|35104.50|0.02|0.07|A|F|1993-05-13|1993-05-01|1993-06-02|NONE|REG AIR|into beans sublate. even attai| +50415|267947|30453|3|3|5744.79|0.07|0.01|R|F|1993-03-13|1993-03-30|1993-03-22|COLLECT COD|AIR|hely agains| +50440|773645|23646|1|10|17186.10|0.04|0.02|R|F|1994-12-30|1995-02-22|1995-01-28|DELIVER IN PERSON|TRUCK|usual theodolites a| +50440|643008|43009|2|38|36136.86|0.02|0.05|A|F|1995-02-14|1995-02-23|1995-03-10|COLLECT COD|RAIL|s alongside of the furiously regular | +50440|20071|32572|3|36|35678.52|0.07|0.01|A|F|1995-02-01|1995-02-21|1995-02-20|NONE|AIR|eas cajole fur| +50440|320147|45160|4|48|56022.24|0.03|0.01|R|F|1994-12-10|1995-01-14|1995-01-02|TAKE BACK RETURN|FOB|, express platelets cajole carefully at| +50440|702505|2506|5|11|16582.17|0.10|0.00|R|F|1994-12-07|1995-02-04|1994-12-17|DELIVER IN PERSON|FOB|. ironic, regu| +50440|987476|37477|6|1|1563.43|0.10|0.03|R|F|1995-01-22|1995-01-05|1995-01-30|TAKE BACK RETURN|TRUCK|accounts above| +50441|136463|36464|1|1|1499.46|0.02|0.08|R|F|1994-07-17|1994-07-26|1994-08-04|DELIVER IN PERSON|TRUCK|hely ironic accounts. foxes ca| +50441|527804|2825|2|34|62280.52|0.09|0.04|R|F|1994-09-03|1994-09-02|1994-09-05|TAKE BACK RETURN|REG AIR|press requests.| +50441|787547|37548|3|43|70283.93|0.09|0.01|R|F|1994-07-26|1994-09-02|1994-08-20|NONE|REG AIR| bold deposits. slyly express| +50441|290254|27770|4|31|38571.44|0.08|0.03|A|F|1994-06-16|1994-07-25|1994-06-20|TAKE BACK RETURN|SHIP|ets. blithely ironic pinto beans sleep | +50442|645326|7839|1|30|38138.70|0.10|0.04|R|F|1992-12-06|1992-11-11|1992-12-17|NONE|FOB|. theodolites af| +50443|452398|39926|1|12|16204.44|0.09|0.01|N|O|1996-05-14|1996-06-22|1996-06-07|NONE|RAIL|kly slyly final foxes. bl| +50443|451849|14359|2|46|82837.72|0.08|0.07|N|O|1996-05-23|1996-07-28|1996-06-08|COLLECT COD|FOB| accounts. silent pinto beans use fluffi| +50443|212624|37633|3|38|58391.18|0.10|0.05|N|O|1996-06-28|1996-07-30|1996-07-28|TAKE BACK RETURN|FOB|eposits are quickly. blit| +50443|565276|40299|4|50|67062.50|0.03|0.03|N|O|1996-07-02|1996-07-15|1996-07-30|TAKE BACK RETURN|RAIL|beans. deposits nag around the furiously u| +50443|592292|42293|5|39|53986.53|0.06|0.03|N|O|1996-06-30|1996-07-31|1996-07-22|NONE|AIR|ss the ironi| +50443|645303|45304|6|21|26213.67|0.00|0.04|N|O|1996-08-16|1996-06-18|1996-09-05|TAKE BACK RETURN|RAIL|equests cajole finally accoun| +50443|602357|14870|7|17|21408.44|0.05|0.08|N|O|1996-08-15|1996-06-21|1996-08-18|COLLECT COD|AIR|ording to the blithe| +50444|808917|21434|1|28|51124.36|0.07|0.05|N|O|1998-07-25|1998-06-07|1998-08-06|TAKE BACK RETURN|AIR|osits haggle against the slyly ironic | +50444|463361|13362|2|25|33108.50|0.07|0.05|N|O|1998-05-24|1998-07-21|1998-05-28|COLLECT COD|AIR|ffily slyly silent instructi| +50445|805115|30148|1|48|48963.36|0.07|0.05|R|F|1993-02-27|1993-03-09|1993-03-15|NONE|TRUCK|cording to the bli| +50445|564335|14336|2|45|62968.95|0.05|0.02|A|F|1993-02-12|1993-01-28|1993-03-08|TAKE BACK RETURN|SHIP|le ironic asym| +50445|767624|30140|3|27|45672.93|0.03|0.05|A|F|1993-01-25|1993-03-02|1993-02-14|NONE|AIR|ironic packages nag idly: furiously even| +50445|446887|21904|4|15|27507.90|0.10|0.08|R|F|1993-01-17|1993-03-15|1993-02-01|NONE|TRUCK|es. furiously | +50445|820249|45282|5|20|23384.00|0.08|0.05|A|F|1993-04-03|1993-03-09|1993-04-23|NONE|SHIP|es boost instructions. permanent d| +50445|918972|6527|6|40|79637.20|0.01|0.07|A|F|1993-01-16|1993-02-11|1993-01-22|COLLECT COD|TRUCK|s detect slyly eve| +50445|157865|45375|7|26|49994.36|0.06|0.00|R|F|1993-01-03|1993-02-09|1993-01-31|DELIVER IN PERSON|SHIP|g packages haggle f| +50446|225418|25419|1|49|65826.60|0.05|0.02|N|O|1996-04-01|1996-05-17|1996-04-19|TAKE BACK RETURN|FOB| regular deposits sleep | +50447|428676|41185|1|8|12837.20|0.02|0.05|A|F|1994-08-17|1994-10-05|1994-08-23|COLLECT COD|MAIL| wake careful| +50472|373851|11373|1|31|59670.04|0.09|0.01|N|O|1997-02-01|1997-01-15|1997-02-10|TAKE BACK RETURN|TRUCK|c instructions are. carefull| +50472|307051|32064|2|33|34915.32|0.08|0.06|N|O|1997-01-22|1997-01-12|1997-02-19|NONE|FOB| pearls cajole carefully| +50472|597249|34783|3|32|43079.04|0.09|0.05|N|O|1997-01-22|1997-01-16|1997-02-16|COLLECT COD|MAIL|ep blithely around the regular courts. bold| +50472|951893|1894|4|1|1944.85|0.10|0.04|N|O|1996-11-27|1996-12-04|1996-12-10|DELIVER IN PERSON|MAIL|deposits sleep according to the furio| +50472|462966|12967|5|36|69441.84|0.00|0.06|N|O|1996-12-10|1996-12-31|1996-12-18|TAKE BACK RETURN|REG AIR|ss requests wake against the multipliers| +50472|53408|28411|6|20|27228.00|0.02|0.07|N|O|1996-12-10|1996-11-27|1996-12-19|DELIVER IN PERSON|SHIP|blithely regular theodolites. furiously| +50472|619150|44175|7|38|40626.56|0.08|0.01|N|O|1996-12-03|1997-01-02|1996-12-24|COLLECT COD|REG AIR|furiously regular ideas kindle daringl| +50473|38726|38727|1|6|9988.32|0.04|0.04|R|F|1994-10-11|1994-11-13|1994-11-09|DELIVER IN PERSON|REG AIR|ely daring requests. carefully | +50473|862093|49645|2|11|11605.55|0.01|0.05|A|F|1994-09-28|1994-10-01|1994-10-03|DELIVER IN PERSON|TRUCK|y. boldly silent accounts a| +50473|192468|17475|3|37|57737.02|0.05|0.08|A|F|1994-11-28|1994-11-15|1994-12-09|TAKE BACK RETURN|RAIL|n orbits lose sly| +50473|795373|20404|4|48|70480.32|0.00|0.01|R|F|1994-09-08|1994-11-17|1994-10-03|COLLECT COD|RAIL|ly final pinto beans.| +50474|869396|6948|1|1|1365.35|0.05|0.01|N|O|1996-11-21|1996-12-14|1996-11-22|DELIVER IN PERSON|RAIL|ts. bold packages are stealthily bold reque| +50474|935882|48401|2|7|13424.88|0.03|0.01|N|O|1996-11-09|1996-11-16|1996-12-02|TAKE BACK RETURN|RAIL|ess packages cajole carefully fluffily ev| +50474|361226|36241|3|27|34754.67|0.04|0.01|N|O|1996-10-10|1996-12-11|1996-11-08|COLLECT COD|TRUCK|. slyly pending | +50474|113574|1081|4|32|50802.24|0.09|0.05|N|O|1996-11-16|1997-01-01|1996-11-19|NONE|MAIL|yly after the bold, regular foxes. ir| +50474|821691|21692|5|29|46766.85|0.04|0.06|N|O|1996-11-09|1996-11-23|1996-12-06|NONE|MAIL|elets cajole furiously among the r| +50474|158373|8374|6|34|48666.58|0.10|0.00|N|O|1997-02-02|1996-11-09|1997-02-05|COLLECT COD|RAIL| slyly along the permanent accoun| +50475|471028|21029|1|48|47952.00|0.01|0.06|N|O|1997-08-24|1997-10-14|1997-08-30|COLLECT COD|TRUCK|tly. pending re| +50475|558257|45791|2|47|61815.81|0.09|0.01|N|O|1997-10-22|1997-11-02|1997-10-24|NONE|SHIP|ending pinto beans sleep blithely b| +50475|624677|24678|3|46|73675.44|0.09|0.07|N|O|1997-10-20|1997-10-01|1997-11-18|TAKE BACK RETURN|MAIL|ress packages. pending pack| +50475|936994|49513|4|27|54835.65|0.02|0.01|N|O|1997-08-26|1997-10-05|1997-09-05|NONE|MAIL|cies according to the bli| +50475|42801|17802|5|15|26157.00|0.08|0.00|N|O|1997-10-02|1997-11-01|1997-10-19|DELIVER IN PERSON|MAIL| beans haggle blithe| +50476|857874|20392|1|31|56786.73|0.07|0.02|A|F|1995-02-27|1995-02-08|1995-03-11|NONE|FOB|even packa| +50476|287495|37496|2|9|13342.32|0.00|0.01|R|F|1995-02-22|1995-02-20|1995-03-23|NONE|REG AIR|indle according to the| +50476|924630|37149|3|23|38055.57|0.04|0.03|R|F|1995-04-13|1995-02-10|1995-05-10|DELIVER IN PERSON|TRUCK|sts. quickly regu| +50476|245340|20349|4|21|26991.93|0.04|0.04|A|F|1995-01-05|1995-03-01|1995-01-08|DELIVER IN PERSON|FOB|s. furiously | +50476|419300|6825|5|48|58525.44|0.07|0.07|A|F|1994-12-31|1995-03-07|1995-01-12|COLLECT COD|TRUCK| boost fluffil| +50476|174911|49918|6|43|85394.13|0.08|0.07|R|F|1995-03-29|1995-02-24|1995-04-14|TAKE BACK RETURN|SHIP|ng deposits. blithely even de| +50477|332999|45506|1|18|36575.64|0.05|0.06|N|O|1996-06-06|1996-06-01|1996-06-18|TAKE BACK RETURN|FOB|ckly. even, ironic sauternes us| +50477|705984|18499|2|43|85567.85|0.02|0.08|N|O|1996-06-09|1996-07-02|1996-07-04|COLLECT COD|RAIL|ickly regu| +50477|462906|12907|3|17|31770.96|0.00|0.03|N|O|1996-06-18|1996-05-20|1996-07-07|NONE|RAIL|hely across the packages| +50477|53613|3614|4|36|56397.96|0.06|0.07|N|O|1996-07-06|1996-06-01|1996-07-12|COLLECT COD|AIR|ages. furiously pending d| +50477|61328|48832|5|11|14182.52|0.10|0.02|N|O|1996-06-13|1996-07-12|1996-06-29|DELIVER IN PERSON|MAIL| wake above the slyly unusual excuses.| +50477|725632|661|6|32|53043.20|0.01|0.01|N|O|1996-07-04|1996-06-12|1996-07-13|DELIVER IN PERSON|TRUCK|ular, careful theodolites. asympt| +50477|683690|46204|7|23|38494.18|0.06|0.06|N|O|1996-06-25|1996-07-05|1996-07-24|COLLECT COD|REG AIR|ncies cajole accordin| +50478|776190|26191|1|11|13927.76|0.06|0.01|A|F|1992-07-02|1992-08-22|1992-07-22|TAKE BACK RETURN|FOB|ayers breach q| +50479|477943|15471|1|3|5762.76|0.10|0.03|A|F|1993-10-18|1993-09-02|1993-11-11|NONE|AIR|pecial inst| +50479|783504|33505|2|17|26986.99|0.02|0.08|R|F|1993-09-17|1993-09-09|1993-09-18|COLLECT COD|RAIL|o beans cajole after the slyly| +50479|338288|25807|3|45|59682.15|0.01|0.07|A|F|1993-11-03|1993-10-03|1993-11-04|TAKE BACK RETURN|SHIP|y bold packages cajole blithely after| +50479|594881|19904|4|49|96817.14|0.04|0.04|R|F|1993-08-21|1993-09-06|1993-09-01|COLLECT COD|REG AIR|s. regular, unusual deposits sleep s| +50504|425540|557|1|28|41034.56|0.10|0.06|A|F|1994-07-04|1994-09-01|1994-07-27|COLLECT COD|AIR|cial accoun| +50504|41677|4178|2|41|66365.47|0.04|0.01|R|F|1994-09-24|1994-09-23|1994-10-24|DELIVER IN PERSON|RAIL| ideas sleep slyly above the slyly regular| +50504|462021|24531|3|17|16711.00|0.00|0.05|A|F|1994-07-12|1994-09-12|1994-07-22|DELIVER IN PERSON|SHIP|ts. even m| +50504|186336|36337|4|9|12800.97|0.02|0.03|R|F|1994-07-08|1994-08-08|1994-07-09|COLLECT COD|AIR|yly express d| +50504|748997|24026|5|36|73654.56|0.08|0.04|A|F|1994-10-10|1994-09-21|1994-10-28|COLLECT COD|REG AIR| express deposits sublate | +50504|386982|11997|6|25|51724.25|0.00|0.07|R|F|1994-07-30|1994-09-18|1994-08-19|DELIVER IN PERSON|AIR|thinly bold pinto beans. | +50504|5733|43234|7|19|31135.87|0.07|0.03|A|F|1994-08-16|1994-09-13|1994-08-29|COLLECT COD|TRUCK|eposits sle| +50505|354080|16588|1|13|14742.91|0.02|0.06|N|O|1997-03-12|1997-03-10|1997-04-08|DELIVER IN PERSON|RAIL|odolites wake quickly excuses. furiously b| +50506|880324|30325|1|10|13042.80|0.02|0.06|N|O|1996-10-16|1996-12-02|1996-10-30|COLLECT COD|REG AIR|riously around the fluffily special do| +50506|604380|41917|2|27|34677.45|0.04|0.07|N|O|1996-12-15|1996-12-17|1996-12-29|COLLECT COD|SHIP|its are after th| +50506|808818|46367|3|17|29355.09|0.10|0.01|N|O|1997-01-07|1996-11-12|1997-02-02|COLLECT COD|TRUCK| carefully amo| +50506|787946|37947|4|39|79322.49|0.09|0.07|N|O|1996-10-26|1996-11-19|1996-11-11|COLLECT COD|SHIP|s across the regular deposits nag bl| +50506|4558|29559|5|33|48264.15|0.05|0.06|N|O|1997-01-22|1996-11-12|1997-01-30|DELIVER IN PERSON|SHIP|efully final dependenc| +50507|102156|14659|1|17|19688.55|0.10|0.08|A|F|1994-03-04|1994-04-08|1994-03-06|TAKE BACK RETURN|RAIL|de of the pending, final requests sl| +50507|920440|45477|2|7|10222.80|0.03|0.05|A|F|1994-03-04|1994-05-10|1994-03-19|TAKE BACK RETURN|TRUCK| across th| +50507|822988|10537|3|2|3821.88|0.05|0.02|R|F|1994-04-06|1994-04-02|1994-04-13|TAKE BACK RETURN|REG AIR|oxes haggle against the c| +50507|957801|20321|4|6|11152.56|0.03|0.04|R|F|1994-03-11|1994-03-30|1994-03-13|NONE|TRUCK|e about the bold deposits: fina| +50508|897955|47956|1|12|23434.92|0.03|0.06|A|F|1993-09-22|1993-08-18|1993-09-24|DELIVER IN PERSON|TRUCK| final requests could have to| +50508|913326|38363|2|30|40178.40|0.10|0.03|A|F|1993-08-12|1993-08-07|1993-08-23|COLLECT COD|AIR|unwind carefully | +50508|270001|20002|3|47|45636.53|0.06|0.00|R|F|1993-10-09|1993-08-02|1993-10-27|DELIVER IN PERSON|AIR|asymptotes across the furiously pendi| +50508|902823|27860|4|41|74856.98|0.10|0.07|A|F|1993-09-21|1993-09-22|1993-10-02|COLLECT COD|FOB|packages haggle fluffily among the fin| +50508|729674|29675|5|43|73256.52|0.03|0.03|R|F|1993-10-09|1993-08-18|1993-10-23|COLLECT COD|RAIL|yly even requests against t| +50509|937893|37894|1|5|9654.25|0.08|0.07|N|O|1995-07-13|1995-07-27|1995-08-01|COLLECT COD|TRUCK| even, bold ideas. furiously regula| +50509|163025|535|2|14|15232.28|0.00|0.01|R|F|1995-05-23|1995-07-12|1995-06-07|COLLECT COD|TRUCK|ajole slyly among the platelets| +50510|515037|2568|1|42|44184.42|0.06|0.01|N|O|1995-09-12|1995-09-11|1995-09-30|COLLECT COD|AIR|y final accounts| +50510|218837|31342|2|8|14046.56|0.00|0.08|N|O|1995-12-01|1995-10-08|1995-12-23|NONE|MAIL|ckages. deposits boost furiously quickly bo| +50510|979835|4874|3|3|5744.37|0.01|0.02|N|O|1995-10-30|1995-09-14|1995-11-18|COLLECT COD|TRUCK|oxes. slyly regular deposits are furious| +50510|76732|26733|4|25|42718.25|0.10|0.07|N|O|1995-11-06|1995-10-04|1995-11-27|COLLECT COD|REG AIR| the carefully special packages| +50510|623124|35637|5|41|42930.69|0.09|0.07|N|O|1995-09-13|1995-10-05|1995-09-25|NONE|TRUCK|. accounts sle| +50510|840748|3265|6|29|48972.30|0.10|0.08|N|O|1995-09-06|1995-09-08|1995-10-01|DELIVER IN PERSON|TRUCK|sts maintai| +50510|442016|4525|7|34|32571.66|0.00|0.00|N|O|1995-08-08|1995-09-09|1995-08-27|TAKE BACK RETURN|TRUCK| slow asymptotes-- furiou| +50511|953695|16215|1|40|69946.00|0.09|0.03|A|F|1994-03-02|1994-03-25|1994-03-19|TAKE BACK RETURN|RAIL|es use blithely blithely f| +50511|748307|23336|2|37|50144.99|0.01|0.01|R|F|1994-05-22|1994-03-22|1994-06-05|TAKE BACK RETURN|AIR|fore the regula| +50511|781447|31448|3|30|45852.30|0.10|0.06|R|F|1994-04-24|1994-04-08|1994-04-26|TAKE BACK RETURN|TRUCK|inal decoys a| +50511|776603|39119|4|1|1679.57|0.10|0.01|A|F|1994-05-18|1994-04-20|1994-06-16|TAKE BACK RETURN|SHIP| fluffily s| +50511|356324|6325|5|23|31747.13|0.10|0.06|A|F|1994-05-26|1994-04-30|1994-06-04|DELIVER IN PERSON|RAIL|y idle deposits. blith| +50511|733414|20957|6|14|20263.32|0.00|0.02|A|F|1994-06-03|1994-04-15|1994-06-14|DELIVER IN PERSON|RAIL|ccording to th| +50536|182686|45190|1|38|67209.84|0.00|0.06|N|O|1998-08-05|1998-07-15|1998-09-03|DELIVER IN PERSON|FOB|inally above the regular| +50536|397001|34523|2|9|9881.91|0.08|0.06|N|O|1998-07-05|1998-06-06|1998-08-02|TAKE BACK RETURN|FOB|refully even instructions. bli| +50536|381976|31977|3|9|18521.64|0.06|0.06|N|O|1998-07-22|1998-07-25|1998-08-19|DELIVER IN PERSON|REG AIR|ual dinos boost slyly after the re| +50536|855907|43459|4|18|33531.48|0.06|0.08|N|O|1998-07-18|1998-06-23|1998-08-06|TAKE BACK RETURN|REG AIR|ccounts after the unusual platelets los| +50536|217563|5076|5|45|66624.75|0.05|0.03|N|O|1998-06-24|1998-07-19|1998-07-08|DELIVER IN PERSON|REG AIR|uriously. express, unusual deposit| +50536|577720|15254|6|43|77301.10|0.01|0.00|N|O|1998-07-04|1998-06-08|1998-07-08|TAKE BACK RETURN|FOB|e through the quickly even| +50536|736671|11700|7|1|1707.64|0.10|0.05|N|O|1998-05-07|1998-07-18|1998-05-15|DELIVER IN PERSON|REG AIR|ruthless deposits. ironic, silent foxes a| +50537|219365|19366|1|14|17980.90|0.01|0.01|N|O|1995-12-19|1996-01-18|1996-01-15|TAKE BACK RETURN|SHIP|its. ironic, unusual courts haggle packages| +50537|851588|39140|2|45|69279.30|0.07|0.03|N|O|1996-03-08|1996-01-05|1996-03-13|COLLECT COD|SHIP|inal asymptotes. bold| +50538|207998|33007|1|8|15247.84|0.09|0.05|N|O|1995-12-14|1996-02-13|1995-12-27|DELIVER IN PERSON|SHIP|mong the furiously final asymptotes| +50538|816277|16278|2|14|16705.22|0.04|0.08|N|O|1996-02-15|1996-01-14|1996-03-03|DELIVER IN PERSON|SHIP|sly unusua| +50538|161960|24464|3|1|2021.96|0.05|0.04|N|O|1996-02-25|1996-01-01|1996-03-14|NONE|TRUCK| asymptote| +50538|51762|14264|4|10|17137.60|0.05|0.04|N|O|1995-12-19|1996-02-24|1996-01-02|TAKE BACK RETURN|AIR|e never above the slyly express requests.| +50538|950399|37957|5|11|15942.85|0.05|0.04|N|O|1996-01-28|1996-02-12|1996-02-10|DELIVER IN PERSON|RAIL|ss, unusual theodolites wake finally sl| +50538|339397|39398|6|42|60327.96|0.09|0.06|N|O|1996-02-02|1996-01-22|1996-02-13|TAKE BACK RETURN|REG AIR| packages shall sleep about the | +50539|373476|48491|1|9|13945.14|0.07|0.08|N|O|1996-03-01|1996-04-12|1996-03-16|TAKE BACK RETURN|MAIL|es. slyly sp| +50539|994536|44537|2|4|6521.96|0.03|0.08|N|O|1996-03-16|1996-05-07|1996-04-11|TAKE BACK RETURN|AIR|uriously beside the ironically speci| +50539|163466|25970|3|48|73414.08|0.01|0.05|N|O|1996-05-22|1996-04-15|1996-06-21|COLLECT COD|RAIL|furiously even platelets sleep caref| +50540|262626|142|1|28|44481.08|0.04|0.02|N|O|1997-08-19|1997-09-07|1997-08-20|TAKE BACK RETURN|RAIL|ress excuses. carefully | +50540|947409|47410|2|44|64079.84|0.04|0.03|N|O|1997-09-24|1997-10-04|1997-10-08|NONE|SHIP|above the platelets. pearl| +50540|90412|2914|3|35|49084.35|0.03|0.07|N|O|1997-09-13|1997-10-10|1997-09-23|TAKE BACK RETURN|MAIL| bold deposits are. slyly | +50540|546294|8805|4|27|36187.29|0.03|0.06|N|O|1997-07-31|1997-09-02|1997-08-24|DELIVER IN PERSON|REG AIR| accounts wake blithely even, pending| +50541|42208|4709|1|43|49458.60|0.04|0.04|N|O|1997-05-28|1997-06-20|1997-06-19|COLLECT COD|AIR|l platelets. ironic, f| +50541|384904|9919|2|35|69611.15|0.07|0.02|N|O|1997-04-29|1997-05-24|1997-05-29|TAKE BACK RETURN|TRUCK|s. blithely special re| +50541|76287|38789|3|16|20212.48|0.05|0.05|N|O|1997-07-23|1997-05-17|1997-08-04|NONE|SHIP|gular ideas haggle agai| +50541|154858|42368|4|7|13389.95|0.06|0.03|N|O|1997-07-26|1997-05-23|1997-08-07|NONE|SHIP|he slyly bold accounts sleep | +50541|695639|45640|5|49|80095.40|0.01|0.03|N|O|1997-08-09|1997-05-19|1997-08-21|TAKE BACK RETURN|FOB|s? carefully pending pinto beans | +50542|808610|46159|1|8|12148.56|0.07|0.08|N|O|1995-11-03|1995-11-25|1995-12-01|DELIVER IN PERSON|MAIL|onic requests a| +50542|291649|4155|2|37|60703.31|0.10|0.06|N|O|1996-01-01|1995-11-08|1996-01-22|DELIVER IN PERSON|REG AIR|y pending instr| +50542|733848|46363|3|36|67745.16|0.05|0.07|N|O|1995-12-26|1995-11-28|1996-01-13|COLLECT COD|SHIP|counts. ironic asymptotes| +50542|773441|35957|4|9|13629.69|0.10|0.06|N|O|1995-11-28|1995-10-23|1995-12-26|NONE|RAIL|deas. blithely| +50542|213923|13924|5|41|75313.31|0.00|0.01|N|O|1995-09-16|1995-11-02|1995-09-24|NONE|AIR|dolites. blithely regular requests affix | +50543|440453|15470|1|24|33442.32|0.00|0.03|A|F|1993-03-22|1993-02-10|1993-04-15|TAKE BACK RETURN|REG AIR|ng deposits integrate sly| +50543|686240|36241|2|27|33107.67|0.08|0.01|A|F|1992-12-25|1993-02-20|1993-01-07|COLLECT COD|FOB|, unusual asym| +50568|767349|17350|1|34|48154.54|0.04|0.04|A|F|1994-06-05|1994-06-02|1994-06-23|DELIVER IN PERSON|SHIP| the carefully ironic instructions? fl| +50568|826214|13763|2|24|27364.08|0.10|0.02|A|F|1994-03-23|1994-05-19|1994-04-02|DELIVER IN PERSON|RAIL|aggle furiously bold a| +50568|173205|10715|3|20|25564.00|0.06|0.00|A|F|1994-05-20|1994-06-14|1994-06-10|NONE|REG AIR|cuses must have | +50568|47959|10460|4|14|26697.30|0.00|0.08|R|F|1994-05-28|1994-06-16|1994-06-08|NONE|TRUCK|cial pinto beans. slyly bold depe| +50568|37277|12278|5|8|9714.16|0.09|0.07|A|F|1994-05-22|1994-06-10|1994-06-02|TAKE BACK RETURN|TRUCK|ing requests! slyly regular packages along| +50568|513985|13986|6|35|69963.60|0.05|0.08|A|F|1994-06-14|1994-05-18|1994-06-29|NONE|MAIL|ans unwind special tithes; ideas among| +50568|529732|29733|7|28|49327.88|0.06|0.03|R|F|1994-07-10|1994-06-05|1994-08-07|COLLECT COD|SHIP|carefully above the carefully ironic accou| +50569|191838|29348|1|29|55965.07|0.04|0.01|A|F|1994-02-08|1994-03-06|1994-02-25|DELIVER IN PERSON|SHIP| quickly regular deposits cajo| +50569|216744|29249|2|48|79715.04|0.01|0.05|R|F|1994-01-16|1994-04-07|1994-01-18|NONE|REG AIR| blithely even foxes cajole ca| +50569|805502|43051|3|13|18296.98|0.01|0.00|R|F|1994-03-21|1994-04-05|1994-04-12|DELIVER IN PERSON|MAIL|o beans. final, idle requests sleep s| +50570|800050|37599|1|46|43700.46|0.01|0.03|A|F|1993-11-24|1993-11-11|1993-12-19|COLLECT COD|RAIL|deas. carefully unusual ideas above| +50570|436048|36049|2|2|1968.04|0.03|0.01|R|F|1993-11-18|1993-09-22|1993-12-15|COLLECT COD|REG AIR|sits. final, regu| +50570|645296|20321|3|19|23583.94|0.03|0.02|R|F|1993-10-26|1993-10-26|1993-11-15|TAKE BACK RETURN|AIR|s are carefully packages. pen| +50570|485181|22709|4|25|29154.00|0.07|0.02|A|F|1993-12-01|1993-09-21|1993-12-14|DELIVER IN PERSON|MAIL| accounts was. never regular excuse| +50571|712901|37930|1|21|40191.27|0.07|0.06|R|F|1993-05-15|1993-07-15|1993-06-06|DELIVER IN PERSON|REG AIR|ions unwind. bold accounts | +50571|716061|16062|2|9|9693.27|0.04|0.00|R|F|1993-07-14|1993-07-31|1993-08-07|DELIVER IN PERSON|SHIP|o beans cajole furiously blithely unusua| +50572|744964|44965|1|12|24107.16|0.05|0.01|N|O|1996-04-12|1996-06-26|1996-04-22|NONE|MAIL|special accounts. requests cajole. accounts| +50572|607087|7088|2|14|13916.70|0.08|0.00|N|O|1996-06-27|1996-05-20|1996-07-10|NONE|MAIL|frets are across the decoys. furious| +50572|305333|30346|3|14|18736.48|0.07|0.06|N|O|1996-05-29|1996-06-20|1996-06-11|COLLECT COD|FOB|ully. stealthi| +50572|730265|17808|4|14|18133.22|0.02|0.02|N|O|1996-07-15|1996-06-09|1996-07-20|TAKE BACK RETURN|RAIL|ages integrate furiously | +50573|88730|38731|1|33|56718.09|0.03|0.01|R|F|1994-05-02|1994-04-02|1994-05-27|DELIVER IN PERSON|REG AIR|final sauternes haggle carefu| +50573|282935|7946|2|15|28768.80|0.06|0.05|R|F|1994-05-05|1994-04-17|1994-05-15|TAKE BACK RETURN|RAIL| the quickly bold excuses | +50574|900797|38352|1|28|50337.00|0.04|0.02|R|F|1992-09-18|1992-11-08|1992-10-04|NONE|AIR|t the dogge| +50574|681696|31697|2|30|50329.80|0.06|0.01|R|F|1992-10-19|1992-10-20|1992-11-05|DELIVER IN PERSON|FOB|nic deposi| +50574|264538|39549|3|42|63105.84|0.01|0.01|A|F|1992-12-17|1992-11-26|1993-01-05|NONE|AIR| ideas. quickly| +50574|76525|14029|4|30|45045.60|0.06|0.02|R|F|1992-09-30|1992-11-13|1992-10-06|DELIVER IN PERSON|AIR|iously special pinto beans. slyly ironi| +50575|505672|18183|1|31|52007.15|0.04|0.08|N|O|1998-11-05|1998-08-30|1998-11-12|COLLECT COD|RAIL|uctions. furiously final excuses integrate| +50575|824266|24267|2|36|42847.92|0.01|0.05|N|O|1998-09-12|1998-08-23|1998-10-08|TAKE BACK RETURN|FOB|ilent pinto b| +50575|435432|35433|3|38|51961.58|0.07|0.05|N|O|1998-08-28|1998-10-04|1998-09-09|TAKE BACK RETURN|RAIL|es. carefully special deposits haggle quic| +50575|296316|8822|4|49|64302.70|0.04|0.04|N|O|1998-07-25|1998-08-28|1998-08-09|TAKE BACK RETURN|RAIL|sly regular accounts. slyly | +50575|174088|49095|5|48|55779.84|0.00|0.07|N|O|1998-11-12|1998-10-07|1998-11-30|DELIVER IN PERSON|AIR|ss ideas. slyly iro| +50575|884298|46816|6|24|30774.00|0.03|0.04|N|O|1998-08-20|1998-10-06|1998-09-13|DELIVER IN PERSON|MAIL|sts. furiously bold requests sleep fur| +50575|380731|5746|7|35|63410.20|0.05|0.05|N|O|1998-09-05|1998-09-06|1998-10-02|TAKE BACK RETURN|REG AIR| foxes. requests are after the instructions| +50600|944795|44796|1|20|36795.00|0.04|0.07|A|F|1992-09-17|1992-11-11|1992-10-03|TAKE BACK RETURN|FOB|nic excuses ca| +50600|163717|13718|2|44|78351.24|0.05|0.01|R|F|1992-10-19|1992-09-21|1992-10-23|DELIVER IN PERSON|MAIL|ously package| +50600|585059|22593|3|17|19448.51|0.03|0.04|A|F|1992-10-07|1992-10-05|1992-10-27|COLLECT COD|RAIL|nts cajole abo| +50600|80837|30838|4|5|9089.15|0.03|0.06|R|F|1992-09-24|1992-11-05|1992-10-22|TAKE BACK RETURN|REG AIR|equests haggle c| +50600|625835|13372|5|7|12325.60|0.09|0.05|A|F|1992-10-26|1992-10-03|1992-11-24|COLLECT COD|REG AIR|arefully bold requests cajole s| +50601|278574|16090|1|44|68312.64|0.09|0.08|N|O|1996-06-25|1996-09-02|1996-07-14|COLLECT COD|REG AIR|lyly stealthy foxes? bl| +50601|986562|24120|2|43|70886.36|0.05|0.03|N|O|1996-08-19|1996-08-13|1996-09-13|DELIVER IN PERSON|TRUCK|le above the stealthily even deposits| +50602|31781|31782|1|1|1712.78|0.04|0.08|N|O|1998-04-10|1998-03-23|1998-04-18|DELIVER IN PERSON|REG AIR|es wake against the theodolites. fu| +50602|127530|15037|2|14|21805.42|0.07|0.08|N|O|1998-03-13|1998-03-05|1998-03-31|COLLECT COD|SHIP| bold, express platelets hinder after | +50602|394218|6726|3|31|40678.20|0.07|0.02|N|O|1998-01-15|1998-02-20|1998-02-13|TAKE BACK RETURN|REG AIR|lyly even foxes. qui| +50603|779241|41757|1|33|43566.93|0.01|0.00|A|F|1994-03-31|1994-03-10|1994-04-18|NONE|RAIL|believe evenly unusu| +50603|702520|2521|2|10|15224.90|0.01|0.04|R|F|1994-01-18|1994-02-25|1994-02-04|NONE|RAIL|he carefully even deposits haggle a| +50603|251632|1633|3|36|57010.32|0.02|0.02|A|F|1994-02-05|1994-03-21|1994-02-18|NONE|RAIL|ely along the furiously | +50603|162988|37995|4|7|14356.86|0.07|0.05|R|F|1994-03-11|1994-02-27|1994-04-06|TAKE BACK RETURN|TRUCK|e blithely final courts nag among the e| +50603|327298|2311|5|38|50360.64|0.05|0.05|R|F|1994-03-29|1994-03-23|1994-04-14|NONE|RAIL|ess instructions us| +50603|887056|37057|6|17|17731.17|0.03|0.05|A|F|1994-04-08|1994-02-12|1994-04-17|COLLECT COD|TRUCK|re idly unusual requests. even, regu| +50604|600711|13224|1|32|51573.76|0.00|0.00|A|F|1992-04-16|1992-06-24|1992-05-05|TAKE BACK RETURN|TRUCK| instructions. furiously fluffy waters i| +50604|134977|9982|2|36|72430.92|0.08|0.00|R|F|1992-08-06|1992-07-04|1992-08-10|COLLECT COD|RAIL|s wake furiously. instructio| +50604|554478|4479|3|42|64362.90|0.08|0.03|R|F|1992-05-20|1992-05-14|1992-05-23|NONE|TRUCK| unusual sauternes. furiously | +50604|97067|34571|4|20|21281.20|0.07|0.06|R|F|1992-07-15|1992-05-17|1992-07-31|DELIVER IN PERSON|AIR|ep slyly about the carefully| +50604|399950|49951|5|29|59448.26|0.07|0.07|A|F|1992-05-24|1992-06-19|1992-06-16|DELIVER IN PERSON|MAIL|ording to the blithely regular pa| +50604|947483|10002|6|15|22956.60|0.09|0.00|A|F|1992-04-17|1992-06-29|1992-05-03|COLLECT COD|SHIP|haggle above the slyly unusual| +50605|18980|43981|1|30|56969.40|0.03|0.04|R|F|1994-04-04|1994-02-10|1994-05-03|DELIVER IN PERSON|TRUCK|leep slyly. platelets alongside of the | +50605|991510|16549|2|4|6405.88|0.01|0.07|A|F|1994-03-27|1994-01-21|1994-04-12|COLLECT COD|RAIL|e blithely. requests nag sly| +50605|304150|29163|3|38|43857.32|0.01|0.03|A|F|1994-02-19|1994-02-18|1994-02-24|TAKE BACK RETURN|FOB|unts wake blithely instructions. slyly ev| +50605|838585|13618|4|29|44182.66|0.08|0.08|R|F|1994-02-09|1994-01-31|1994-03-03|DELIVER IN PERSON|REG AIR|furiously silent p| +50606|624477|12014|1|17|23824.48|0.06|0.06|R|F|1994-07-23|1994-06-19|1994-08-06|NONE|SHIP|times final frays haggle q| +50606|578902|16436|2|29|57445.52|0.10|0.04|A|F|1994-07-15|1994-06-28|1994-08-04|TAKE BACK RETURN|TRUCK| accounts us| +50606|597891|35425|3|10|19888.70|0.04|0.00|R|F|1994-05-01|1994-05-21|1994-05-16|COLLECT COD|SHIP| ironic req| +50606|742007|4522|4|20|20979.40|0.03|0.01|A|F|1994-08-12|1994-07-03|1994-08-24|NONE|FOB|usly even instructions sleep quickly. pen| +50606|901487|39042|5|42|62514.48|0.01|0.08|A|F|1994-06-24|1994-06-11|1994-07-16|TAKE BACK RETURN|MAIL|xes cajole slyl| +50607|302972|2973|1|38|75048.48|0.01|0.07|N|O|1995-10-05|1995-09-29|1995-10-06|NONE|TRUCK|ts. requests sleep. carefully special a| +50607|45814|33315|2|34|59833.54|0.01|0.04|N|O|1995-10-07|1995-10-13|1995-10-11|COLLECT COD|FOB| ironic foxes. bold multipliers shou| +50607|993263|5783|3|27|36617.94|0.04|0.02|N|O|1995-09-01|1995-10-27|1995-09-22|DELIVER IN PERSON|SHIP|re fluffily above the regular, even| +50607|755278|17794|4|8|10665.92|0.01|0.07|N|O|1995-10-03|1995-10-19|1995-10-04|COLLECT COD|RAIL|usly bold dependencies! p| +50607|953786|41344|5|44|80948.56|0.06|0.04|N|O|1995-09-02|1995-10-25|1995-09-10|NONE|RAIL|ly final theodolites haggle slyly. even| +50632|469154|19155|1|48|53910.24|0.08|0.01|R|F|1993-06-25|1993-05-06|1993-07-03|COLLECT COD|TRUCK|es: pending deposits nod specia| +50632|56018|43522|2|46|44804.46|0.01|0.06|R|F|1993-06-09|1993-06-25|1993-06-21|DELIVER IN PERSON|REG AIR| along the furiously special platelet| +50632|480573|30574|3|17|26410.35|0.07|0.08|A|F|1993-06-26|1993-06-22|1993-07-15|COLLECT COD|REG AIR|ithely even packages. de| +50632|974808|37328|4|29|54600.04|0.08|0.03|A|F|1993-04-12|1993-05-28|1993-05-05|COLLECT COD|RAIL|. accounts may cajole carefully ac| +50632|592140|29674|5|6|7392.72|0.00|0.06|A|F|1993-06-25|1993-04-29|1993-07-13|DELIVER IN PERSON|FOB|late blithely | +50633|644320|31857|1|23|29078.67|0.00|0.03|R|F|1993-12-19|1993-11-30|1993-12-28|COLLECT COD|AIR|ndencies cajole c| +50634|713458|1001|1|17|25014.14|0.02|0.06|R|F|1993-07-02|1993-06-08|1993-07-14|TAKE BACK RETURN|AIR|ironic theodol| +50634|86839|11842|2|5|9129.15|0.05|0.07|A|F|1993-07-13|1993-05-29|1993-08-11|TAKE BACK RETURN|REG AIR|express foxes may nag slyly ruthle| +50634|497005|22024|3|43|43085.14|0.10|0.07|A|F|1993-08-21|1993-05-23|1993-09-02|TAKE BACK RETURN|REG AIR|y regular accounts snooze furiously | +50634|150639|25646|4|19|32102.97|0.09|0.05|R|F|1993-05-09|1993-06-18|1993-05-17|COLLECT COD|MAIL|posits? final packa| +50634|776384|13930|5|49|71557.15|0.10|0.05|A|F|1993-04-25|1993-06-14|1993-05-17|DELIVER IN PERSON|MAIL|ording to the fluffily final | +50634|669736|32250|6|6|10234.20|0.10|0.00|R|F|1993-07-28|1993-06-08|1993-07-31|TAKE BACK RETURN|SHIP|ages. attainments haggle quickly f| +50635|863475|13476|1|16|23014.88|0.05|0.07|N|O|1995-06-25|1995-05-15|1995-06-28|COLLECT COD|RAIL|ously across the slyly unusual requ| +50635|413994|13995|2|43|82042.71|0.00|0.00|N|F|1995-05-30|1995-04-25|1995-06-25|TAKE BACK RETURN|AIR| boost furio| +50635|988119|639|3|32|38626.24|0.09|0.00|N|F|1995-05-26|1995-05-11|1995-06-19|NONE|TRUCK|ounts sleep toward the blithely ironic req| +50635|314133|1652|4|36|41296.32|0.07|0.05|R|F|1995-06-08|1995-05-04|1995-06-09|DELIVER IN PERSON|MAIL|iously final requests. depths| +50635|630573|18110|5|6|9021.24|0.08|0.05|R|F|1995-04-01|1995-05-21|1995-04-25|DELIVER IN PERSON|TRUCK|eposits. pend| +50635|29277|16778|6|22|26537.94|0.09|0.07|N|O|1995-06-23|1995-05-09|1995-07-15|DELIVER IN PERSON|FOB|. furiously express pains detect quickl| +50636|452117|27136|1|23|24589.07|0.10|0.06|R|F|1993-06-21|1993-06-03|1993-06-22|TAKE BACK RETURN|REG AIR|ts. slyly fin| +50636|716269|3812|2|43|55264.89|0.10|0.07|A|F|1993-06-09|1993-05-27|1993-06-21|COLLECT COD|RAIL|s cajole furiously about the carefully | +50636|327774|2787|3|30|54052.80|0.09|0.02|A|F|1993-03-30|1993-05-29|1993-04-18|DELIVER IN PERSON|AIR|es. unusual, regular excuses gr| +50636|896923|9441|4|17|32637.96|0.03|0.05|A|F|1993-03-30|1993-05-12|1993-04-04|TAKE BACK RETURN|FOB|deas. blithely final deposits wake | +50637|52538|27541|1|8|11924.24|0.08|0.02|N|O|1997-12-05|1998-01-28|1998-01-03|TAKE BACK RETURN|FOB|c requests. express packages haggle c| +50637|478|479|2|41|56517.27|0.02|0.08|N|O|1998-02-25|1998-02-09|1998-03-02|TAKE BACK RETURN|SHIP|; deposits are furiously regular,| +50637|24236|11737|3|28|32486.44|0.05|0.05|N|O|1998-02-28|1997-12-23|1998-03-05|COLLECT COD|SHIP|to beans. furiously special theod| +50637|326504|1517|4|10|15304.90|0.00|0.01|N|O|1998-02-15|1998-02-03|1998-03-05|DELIVER IN PERSON|MAIL|bold foxes. instructions affix slyly final| +50637|535951|48462|5|41|81464.13|0.03|0.06|N|O|1998-02-24|1997-12-21|1998-03-06|NONE|FOB|ar ideas. blithely ironic foxes sleep| +50637|724559|24560|6|32|50672.64|0.08|0.06|N|O|1997-12-23|1998-01-01|1998-01-19|COLLECT COD|MAIL|oost blithely beside the blithely | +50637|658709|21223|7|17|28350.39|0.05|0.02|N|O|1997-11-28|1998-01-27|1997-12-05|DELIVER IN PERSON|TRUCK| the carefully quiet deposits haggle above| +50638|912477|12478|1|49|72982.07|0.04|0.01|A|F|1993-11-26|1993-09-26|1993-12-07|COLLECT COD|REG AIR|theodolites. express deposit| +50638|998202|35760|2|33|42905.28|0.02|0.01|R|F|1993-10-03|1993-11-22|1993-10-23|DELIVER IN PERSON|TRUCK| requests affix slyly along | +50638|774641|24642|3|3|5146.83|0.06|0.02|A|F|1993-10-12|1993-10-31|1993-10-29|TAKE BACK RETURN|REG AIR|; fluffily e| +50638|377569|2584|4|48|79034.40|0.05|0.02|A|F|1993-09-13|1993-10-01|1993-09-25|COLLECT COD|RAIL|fully even escapa| +50638|801737|1738|5|15|24580.35|0.00|0.08|A|F|1993-09-08|1993-11-18|1993-09-13|DELIVER IN PERSON|SHIP|jole even inst| +50638|777013|27014|6|36|39239.28|0.00|0.00|A|F|1993-10-02|1993-11-04|1993-10-05|TAKE BACK RETURN|SHIP|odolites sleep blit| +50639|811993|24510|1|30|57148.50|0.02|0.02|R|F|1995-02-10|1995-03-12|1995-02-12|NONE|REG AIR|e furiously. fluffily permanent excuses aga| +50639|162626|25130|2|42|70922.04|0.06|0.03|A|F|1995-03-20|1995-02-10|1995-04-02|NONE|RAIL|onic account| +50639|252102|27113|3|38|40055.42|0.07|0.04|R|F|1995-04-13|1995-02-15|1995-04-27|NONE|REG AIR|lly ironic accounts? pend| +50639|73624|48627|4|50|79881.00|0.04|0.03|R|F|1995-04-21|1995-03-20|1995-05-21|DELIVER IN PERSON|RAIL|uriously final deposits affix. pen| +50639|382806|32807|5|20|37775.80|0.03|0.02|A|F|1995-04-23|1995-02-12|1995-05-03|COLLECT COD|MAIL|ckages. even, final deposits a| +50639|811755|49304|6|28|46667.88|0.02|0.06|R|F|1995-02-12|1995-03-25|1995-02-17|TAKE BACK RETURN|AIR|ckly express dependencies. slyly r| +50664|142968|5471|1|8|16087.68|0.04|0.07|A|F|1993-01-30|1992-12-08|1993-02-20|DELIVER IN PERSON|RAIL|thely idle accounts are | +50665|947126|22163|1|14|16423.12|0.00|0.06|N|O|1998-02-12|1997-12-05|1998-03-04|TAKE BACK RETURN|FOB|ndle about the furio| +50665|341504|16517|2|45|69547.05|0.10|0.04|N|O|1998-01-09|1998-01-20|1998-02-08|DELIVER IN PERSON|REG AIR|ever even courts. blithely final foxe| +50665|652591|40131|3|35|54024.60|0.08|0.01|N|O|1997-12-05|1998-01-24|1997-12-07|COLLECT COD|FOB|structions are furiously pinto beans. grouc| +50665|95054|20057|4|1|1049.05|0.01|0.02|N|O|1997-12-27|1998-01-09|1998-01-18|TAKE BACK RETURN|RAIL|ns haggle slyly alongside of the furiou| +50665|561727|36750|5|48|85857.60|0.06|0.07|N|O|1997-12-31|1997-12-05|1998-01-23|TAKE BACK RETURN|MAIL|lets haggle slyly e| +50666|511544|11545|1|30|46665.60|0.09|0.00|A|F|1995-05-01|1995-04-08|1995-05-08|TAKE BACK RETURN|RAIL|to the permanently u| +50666|506792|44323|2|47|84542.19|0.00|0.04|A|F|1995-03-07|1995-05-19|1995-03-09|TAKE BACK RETURN|MAIL|nic, ironic requests. furiously unu| +50666|643836|6349|3|23|40935.40|0.03|0.00|A|F|1995-04-21|1995-05-02|1995-05-19|TAKE BACK RETURN|AIR|beans are carefully silent, silent | +50666|936161|11198|4|26|31125.12|0.01|0.02|N|F|1995-06-06|1995-05-09|1995-06-29|COLLECT COD|RAIL|ously above the blithely pendi| +50666|55858|18360|5|13|23580.05|0.03|0.08|N|O|1995-06-23|1995-04-27|1995-07-14|COLLECT COD|MAIL|uests. furiously even excu| +50667|522707|35218|1|48|83024.64|0.02|0.01|R|F|1992-04-25|1992-05-19|1992-05-05|TAKE BACK RETURN|TRUCK| ironic, silent requests wake carefu| +50667|122551|10058|2|37|58221.35|0.10|0.08|A|F|1992-05-23|1992-03-30|1992-06-01|DELIVER IN PERSON|MAIL|ges wake carefully. carefully unusual| +50668|294201|6707|1|32|38246.08|0.04|0.08|R|F|1995-05-10|1995-05-12|1995-05-15|DELIVER IN PERSON|REG AIR|un. blithely silent waters wake q| +50668|620144|20145|2|50|53205.50|0.09|0.05|N|O|1995-07-28|1995-05-27|1995-08-11|DELIVER IN PERSON|RAIL|s integrate | +50668|758809|33840|3|25|46694.25|0.08|0.08|N|O|1995-07-04|1995-05-09|1995-07-05|COLLECT COD|MAIL|lly ironic foxes according to the sile| +50668|298851|36367|4|40|73993.60|0.08|0.08|R|F|1995-04-06|1995-06-04|1995-05-06|TAKE BACK RETURN|FOB|ng deposits.| +50668|779488|42004|5|25|39186.25|0.00|0.03|A|F|1995-04-26|1995-06-02|1995-05-19|NONE|AIR|lly dogged requests boost slyly. d| +50668|846912|34461|6|9|16729.83|0.07|0.03|A|F|1995-05-26|1995-05-24|1995-06-09|NONE|REG AIR|deposits wake regular fo| +50668|35040|47541|7|38|37051.52|0.09|0.02|N|O|1995-07-05|1995-06-07|1995-07-23|COLLECT COD|TRUCK|lithely fina| +50669|916514|29033|1|1|1530.47|0.07|0.01|N|O|1997-06-26|1997-05-25|1997-07-23|COLLECT COD|RAIL|kages are furiously above t| +50669|835457|23006|2|25|34810.25|0.02|0.04|N|O|1997-07-16|1997-06-04|1997-07-19|NONE|TRUCK|about the carefully express acco| +50669|515490|40511|3|2|3010.94|0.09|0.03|N|O|1997-06-22|1997-05-24|1997-06-29|TAKE BACK RETURN|REG AIR|to beans across the furiou| +50670|242569|30082|1|4|6046.20|0.08|0.04|R|F|1995-05-09|1995-07-21|1995-05-24|DELIVER IN PERSON|RAIL|le furiously carefully even accou| +50670|857068|32103|2|1|1025.02|0.07|0.04|N|O|1995-08-29|1995-07-20|1995-09-25|NONE|FOB|s haggle quick| +50671|625728|25729|1|39|64493.91|0.09|0.01|R|F|1993-04-21|1993-05-28|1993-04-29|DELIVER IN PERSON|MAIL|ial ideas. | +50671|599332|49333|2|20|28626.20|0.00|0.03|R|F|1993-06-09|1993-05-18|1993-06-24|DELIVER IN PERSON|AIR|wake across the| +50696|944298|44299|1|5|6711.25|0.02|0.00|A|F|1994-09-27|1994-12-10|1994-10-14|TAKE BACK RETURN|AIR|l, regular| +50696|809021|46570|2|48|44639.04|0.08|0.07|A|F|1994-09-24|1994-12-03|1994-09-30|NONE|MAIL|blithely. quickly even accounts ar| +50697|868497|18498|1|36|52756.20|0.03|0.03|N|O|1995-11-26|1996-01-19|1995-12-01|NONE|AIR|eans are. furiously regular a| +50697|828117|40634|2|17|17766.19|0.03|0.02|N|O|1996-01-16|1995-12-15|1996-02-14|TAKE BACK RETURN|TRUCK|ets solve ironic accoun| +50697|155741|30748|3|18|32341.32|0.06|0.01|N|O|1996-03-04|1995-12-23|1996-03-08|NONE|SHIP|lyly decoys. express accounts abov| +50697|534584|34585|4|44|71216.64|0.06|0.03|N|O|1996-03-13|1996-01-05|1996-04-10|NONE|TRUCK|ding requests. even excuses | +50697|742481|42482|5|49|74649.05|0.10|0.07|N|O|1996-01-03|1996-01-28|1996-02-01|COLLECT COD|AIR|s cajole requests. even pint| +50697|864591|27109|6|13|20222.15|0.06|0.00|N|O|1996-02-15|1995-12-20|1996-03-10|DELIVER IN PERSON|REG AIR|al foxes. slyly express instructions hag| +50697|173089|10599|7|46|53455.68|0.06|0.02|N|O|1995-12-23|1996-02-07|1995-12-28|NONE|FOB|ar ideas wake slyly. even ideas haggle amon| +50698|96360|33864|1|13|17632.68|0.05|0.07|N|O|1996-01-02|1995-11-04|1996-01-19|TAKE BACK RETURN|MAIL| platelets. furious| +50698|511351|11352|2|10|13623.30|0.06|0.02|N|O|1995-12-22|1995-12-02|1996-01-01|NONE|AIR|ts along the silent requests wake| +50698|259631|9632|3|49|77940.38|0.03|0.06|N|O|1996-01-09|1995-12-08|1996-01-25|TAKE BACK RETURN|RAIL|e enticingly after the slyly expres| +50698|615535|28048|4|27|39163.50|0.06|0.08|N|O|1995-12-11|1995-11-10|1996-01-08|TAKE BACK RETURN|FOB|ly among the regular, permanent| +50698|287983|489|5|10|19709.70|0.07|0.03|N|O|1995-10-05|1995-11-12|1995-10-14|NONE|AIR|eas? furiously final frays acr| +50698|116123|41128|6|9|10252.08|0.01|0.06|N|O|1995-11-30|1995-12-08|1995-12-01|TAKE BACK RETURN|TRUCK|refully. furiously unusua| +50699|996592|34150|1|37|62476.35|0.07|0.07|R|F|1994-10-22|1994-09-18|1994-10-29|DELIVER IN PERSON|REG AIR|y; fluffily thin deposits detect around t| +50700|184943|34944|1|41|83145.54|0.02|0.01|A|F|1993-01-24|1992-12-20|1993-02-21|DELIVER IN PERSON|AIR|gle quickly accounts. even, even p| +50700|325543|556|2|22|34507.66|0.00|0.05|A|F|1992-11-02|1992-11-30|1992-11-09|COLLECT COD|TRUCK|ic excuses wake. quietly ex| +50700|387764|272|3|18|33331.50|0.01|0.08|R|F|1993-01-06|1992-12-24|1993-02-05|DELIVER IN PERSON|REG AIR|os. ironic e| +50701|190694|28204|1|20|35693.80|0.01|0.00|N|O|1996-08-29|1996-09-27|1996-08-30|DELIVER IN PERSON|RAIL|s are fluffily regular,| +50701|985711|10750|2|45|80850.15|0.00|0.03|N|O|1996-11-02|1996-10-10|1996-11-22|DELIVER IN PERSON|AIR|osits haggle i| +50701|837099|37100|3|18|18648.90|0.04|0.02|N|O|1996-10-12|1996-10-11|1996-10-29|DELIVER IN PERSON|MAIL| express deposits a| +50701|106369|6370|4|22|30257.92|0.09|0.02|N|O|1996-12-10|1996-11-03|1997-01-07|COLLECT COD|SHIP|, regular deposits. carefu| +50702|298642|48643|1|46|75468.98|0.02|0.00|N|O|1996-08-10|1996-07-23|1996-08-21|COLLECT COD|SHIP|arefully unusua| +50702|265112|40123|2|20|21542.00|0.04|0.03|N|O|1996-08-17|1996-06-26|1996-09-05|COLLECT COD|AIR|sly furiou| +50702|723910|48939|3|2|3867.76|0.02|0.08|N|O|1996-06-15|1996-06-17|1996-07-14|COLLECT COD|AIR|rve slyly special somas. q| +50702|754346|4347|4|8|11202.48|0.08|0.06|N|O|1996-06-23|1996-07-18|1996-07-12|DELIVER IN PERSON|FOB|rint. busily ironic foxes believe boldly| +50702|285324|35325|5|2|2618.62|0.09|0.07|N|O|1996-05-19|1996-07-21|1996-05-30|COLLECT COD|MAIL|ldly regular dependencies. slyly ironic | +50702|436868|24393|6|38|68583.92|0.04|0.02|N|O|1996-06-11|1996-07-22|1996-06-30|NONE|FOB| of the furiously enticing deposits ha| +50702|425584|25585|7|3|4528.68|0.02|0.00|N|O|1996-05-09|1996-06-19|1996-05-31|NONE|SHIP|he furiously| +50703|777192|2223|1|40|50766.40|0.06|0.00|R|F|1993-06-11|1993-08-01|1993-06-18|TAKE BACK RETURN|RAIL|ans among the slyly final deposits c| +50703|251813|14319|2|27|47649.60|0.08|0.06|A|F|1993-08-29|1993-06-28|1993-09-28|DELIVER IN PERSON|MAIL| above the spec| +50703|218911|31416|3|25|45747.50|0.01|0.03|A|F|1993-07-20|1993-07-04|1993-08-10|COLLECT COD|TRUCK|he special sheaves. flu| +50728|33667|21168|1|25|40016.50|0.10|0.01|N|O|1997-12-16|1997-11-24|1998-01-01|TAKE BACK RETURN|MAIL| to the final request| +50728|830548|18097|2|20|29570.00|0.02|0.02|N|O|1997-12-10|1997-11-23|1998-01-05|NONE|AIR|ng the pending, final instructions. | +50729|875380|12932|1|13|17619.42|0.07|0.07|N|O|1996-08-09|1996-07-09|1996-08-11|NONE|TRUCK|haggle above the special the| +50730|133175|8180|1|35|42285.95|0.03|0.02|A|F|1995-01-22|1995-03-02|1995-01-27|DELIVER IN PERSON|REG AIR|ayers detect carefully pendin| +50730|258907|8908|2|17|31720.13|0.00|0.04|R|F|1995-01-08|1995-02-24|1995-01-31|TAKE BACK RETURN|RAIL| fluffily above the fluf| +50730|449139|11648|3|36|39171.96|0.01|0.01|A|F|1995-04-11|1995-02-08|1995-05-08|COLLECT COD|REG AIR|ding accounts dazzle after the p| +50731|116884|16885|1|26|49422.88|0.04|0.07|A|F|1994-09-07|1994-07-10|1994-09-27|DELIVER IN PERSON|TRUCK| requests sleep bli| +50732|287363|12374|1|11|14853.85|0.08|0.03|N|F|1995-06-12|1995-06-22|1995-06-27|DELIVER IN PERSON|SHIP|hall have | +50732|693637|6151|2|30|48918.00|0.07|0.05|A|F|1995-05-12|1995-06-21|1995-05-31|COLLECT COD|SHIP|usly carefully final ideas. slyly regu| +50732|951914|26953|3|42|82566.54|0.02|0.07|N|O|1995-07-23|1995-06-27|1995-08-09|NONE|MAIL|aggle never alongside of the f| +50732|810550|48099|4|23|33591.73|0.08|0.06|N|O|1995-07-13|1995-06-08|1995-07-22|TAKE BACK RETURN|MAIL|o beans after the thinly final dinos | +50732|909655|47210|5|30|49938.30|0.06|0.06|N|F|1995-06-15|1995-05-20|1995-07-06|COLLECT COD|MAIL|dolites dazzle carefully regula| +50733|120641|20642|1|28|46525.92|0.06|0.05|N|O|1997-06-18|1997-09-10|1997-07-06|TAKE BACK RETURN|RAIL|pains. carefully express requests boost c| +50733|607851|32876|2|18|31658.76|0.05|0.05|N|O|1997-08-17|1997-07-14|1997-09-03|DELIVER IN PERSON|SHIP|thely regular platelets haggle above the c| +50733|140869|15874|3|3|5729.58|0.03|0.06|N|O|1997-10-01|1997-09-11|1997-10-17|TAKE BACK RETURN|MAIL|iously careful packa| +50734|255798|43314|1|14|24552.92|0.00|0.08|A|F|1993-01-01|1992-11-14|1993-01-03|COLLECT COD|MAIL|s. carefully even| +50734|194177|6681|2|31|39406.27|0.00|0.04|R|F|1992-12-05|1992-11-12|1993-01-04|TAKE BACK RETURN|MAIL|nd special, regular | +50734|530146|30147|3|5|5880.60|0.10|0.04|R|F|1992-11-24|1992-12-11|1992-12-09|DELIVER IN PERSON|MAIL|ully regula| +50734|159827|47337|4|13|24528.66|0.04|0.07|R|F|1992-11-27|1992-12-24|1992-11-30|DELIVER IN PERSON|REG AIR|. special pearls promise fluffily. s| +50735|814139|1688|1|23|24221.07|0.04|0.05|A|F|1993-05-11|1993-05-14|1993-06-06|DELIVER IN PERSON|TRUCK| after the unusual, final requests| +50735|222130|9643|2|29|30511.48|0.03|0.01|A|F|1993-05-27|1993-05-17|1993-06-19|NONE|MAIL|furiously regular dependencies| +50735|324091|11610|3|17|18956.36|0.06|0.06|R|F|1993-05-17|1993-05-28|1993-05-22|COLLECT COD|REG AIR|haggle furi| +50735|992502|30060|4|28|44644.88|0.07|0.00|A|F|1993-04-20|1993-06-01|1993-04-21|DELIVER IN PERSON|MAIL|ual asymptotes about the thin | +50735|970685|8243|5|46|80759.44|0.04|0.05|A|F|1993-05-12|1993-06-03|1993-05-28|TAKE BACK RETURN|REG AIR| carefully| +50735|293796|6302|6|46|82329.88|0.05|0.07|A|F|1993-07-20|1993-06-24|1993-08-13|TAKE BACK RETURN|MAIL|st carefully | +50735|821816|9365|7|23|39968.71|0.03|0.05|A|F|1993-06-06|1993-05-08|1993-07-06|NONE|TRUCK|totes among the regular ideas are along| +50760|248365|10870|1|38|49907.30|0.05|0.02|N|O|1997-10-09|1997-11-08|1997-10-27|NONE|AIR|ial deposits. s| +50761|768339|30855|1|11|15480.30|0.04|0.07|R|F|1992-06-21|1992-05-22|1992-07-08|NONE|SHIP|e furiously around the| +50762|837242|37243|1|33|38913.60|0.01|0.06|N|O|1997-12-24|1998-01-17|1997-12-31|NONE|SHIP|r asymptotes| +50762|512312|49843|2|29|38404.41|0.02|0.05|N|O|1998-03-21|1998-02-04|1998-04-13|NONE|TRUCK|n deposits. pending, eve| +50762|420270|7795|3|12|14283.00|0.08|0.03|N|O|1998-01-12|1998-03-12|1998-01-21|TAKE BACK RETURN|SHIP|rding to the ironic, even deposits! decoys | +50762|468121|43140|4|29|31583.90|0.08|0.03|N|O|1997-12-20|1998-02-28|1998-01-16|NONE|SHIP|ets. slyly | +50762|695362|32902|5|23|31218.59|0.01|0.02|N|O|1998-04-05|1998-01-30|1998-04-28|NONE|AIR|s unusual deposits. ironi| +50762|938931|13968|6|36|70916.04|0.02|0.06|N|O|1998-03-15|1998-01-20|1998-03-25|NONE|MAIL|theodolites. express, ironic packages us| +50762|603377|40914|7|8|10242.72|0.07|0.03|N|O|1998-01-01|1998-02-21|1998-01-24|NONE|AIR|he blithely regular requests. final pack| +50763|944604|32159|1|19|31322.64|0.09|0.00|A|F|1992-05-30|1992-06-14|1992-06-29|NONE|SHIP| even accou| +50763|951282|1283|2|26|34664.24|0.09|0.06|A|F|1992-07-03|1992-07-08|1992-07-22|NONE|RAIL| use furiously slyly b| +50763|189925|27435|3|49|98731.08|0.02|0.04|A|F|1992-05-04|1992-05-14|1992-05-13|TAKE BACK RETURN|TRUCK| the blithe instructions w| +50763|53473|3474|4|48|68470.56|0.05|0.02|A|F|1992-05-19|1992-06-30|1992-06-06|NONE|SHIP|lly bold foxes haggle quickly. carefully e| +50763|716735|16736|5|34|59557.80|0.05|0.05|R|F|1992-05-06|1992-05-31|1992-05-12|TAKE BACK RETURN|SHIP|ts about the regular, ir| +50763|161211|36218|6|26|33077.46|0.07|0.00|R|F|1992-07-13|1992-07-08|1992-08-11|COLLECT COD|SHIP|ronic packages alongside of| +50763|463689|38708|7|18|29747.88|0.03|0.00|A|F|1992-07-31|1992-05-09|1992-08-13|DELIVER IN PERSON|REG AIR|each accounts. carefully fi| +50764|204269|4270|1|43|50449.75|0.00|0.04|N|O|1995-07-18|1995-09-25|1995-07-26|DELIVER IN PERSON|FOB|al instructions above the quickly fin| +50764|138282|785|2|20|26405.60|0.08|0.03|N|O|1995-08-04|1995-09-04|1995-08-08|NONE|REG AIR|eposits shall wake final| +50765|459577|9578|1|23|35340.65|0.05|0.08|A|F|1994-08-04|1994-07-29|1994-09-03|COLLECT COD|REG AIR| the even, special deposits. fu| +50765|104425|29430|2|40|57176.80|0.04|0.06|A|F|1994-10-15|1994-09-01|1994-11-01|TAKE BACK RETURN|FOB|blithely fi| +50765|63761|26263|3|24|41394.24|0.02|0.06|R|F|1994-08-09|1994-09-12|1994-08-20|NONE|MAIL|ross the regular deposits. furiously spec| +50765|620297|20298|4|20|24345.20|0.09|0.07|R|F|1994-08-10|1994-08-02|1994-08-20|DELIVER IN PERSON|AIR| permanent ideas are furiously about | +50765|327345|2358|5|32|43914.56|0.10|0.08|R|F|1994-09-15|1994-08-02|1994-10-08|COLLECT COD|REG AIR|s. ironic instructions wake| +50765|685542|10569|6|23|35132.73|0.08|0.05|R|F|1994-08-18|1994-08-25|1994-08-23|COLLECT COD|REG AIR| haggle furiously quickly re| +50765|890179|2697|7|32|37412.16|0.06|0.02|R|F|1994-09-04|1994-08-25|1994-09-10|TAKE BACK RETURN|SHIP| packages integrate quickly. carefully s| +50766|233708|21221|1|44|72234.36|0.03|0.08|R|F|1992-10-23|1992-10-19|1992-11-19|DELIVER IN PERSON|MAIL|oss the bold pinto beans. platele| +50766|914687|2242|2|25|42541.00|0.00|0.05|R|F|1992-09-25|1992-11-05|1992-10-15|DELIVER IN PERSON|REG AIR|iously blithely regular theodol| +50766|131875|6880|3|42|80088.54|0.05|0.03|A|F|1992-10-03|1992-12-02|1992-10-14|DELIVER IN PERSON|TRUCK|s detect. ironic instructio| +50767|61689|36692|1|15|24760.20|0.04|0.02|R|F|1993-07-15|1993-09-06|1993-07-16|COLLECT COD|FOB|arefully pending | +50767|790966|28512|2|39|80220.27|0.00|0.01|A|F|1993-07-17|1993-09-28|1993-08-03|NONE|RAIL|nic deposits are| +50767|759510|34541|3|2|3138.96|0.08|0.00|R|F|1993-09-04|1993-09-14|1993-09-18|DELIVER IN PERSON|TRUCK| bold theodolites. | +50767|78022|28023|4|4|4000.08|0.06|0.00|R|F|1993-09-09|1993-08-21|1993-09-24|TAKE BACK RETURN|REG AIR| sleep carefully after the regular pac| +50767|305986|5987|5|33|65735.01|0.05|0.00|R|F|1993-09-01|1993-08-13|1993-09-21|NONE|MAIL|ajole furiously carefu| +50767|704345|16860|6|19|25636.89|0.04|0.04|A|F|1993-10-02|1993-08-16|1993-10-22|COLLECT COD|SHIP|ounts sleep fluffily even packages. fina| +50767|919893|7448|7|16|30605.60|0.05|0.03|A|F|1993-09-23|1993-08-29|1993-10-13|TAKE BACK RETURN|AIR|ly regular dependencies wake slyly furiou| +50792|640388|15413|1|15|19925.25|0.01|0.01|N|O|1997-12-27|1997-12-26|1998-01-06|DELIVER IN PERSON|RAIL|inst the ironic instructions affix f| +50792|986350|36351|2|39|56016.09|0.07|0.00|N|O|1998-01-07|1998-01-17|1998-01-25|NONE|REG AIR|regular deposits snooze blithely | +50793|86347|36348|1|14|18666.76|0.05|0.02|A|F|1994-08-12|1994-10-02|1994-08-29|DELIVER IN PERSON|SHIP|y even packages. ir| +50793|222818|35323|2|14|24371.20|0.01|0.00|R|F|1994-07-22|1994-09-01|1994-07-23|NONE|FOB| carefully re| +50793|901796|26833|3|28|50337.00|0.05|0.02|A|F|1994-10-24|1994-10-03|1994-11-19|COLLECT COD|REG AIR|daring packages cajole furiously e| +50793|473258|35768|4|10|12312.30|0.08|0.04|A|F|1994-09-20|1994-10-12|1994-10-14|NONE|MAIL| packages. final,| +50793|35915|48416|5|30|55527.30|0.01|0.05|A|F|1994-10-22|1994-10-13|1994-11-21|TAKE BACK RETURN|FOB|. unusual, ironic | +50793|606953|44490|6|50|92996.00|0.09|0.03|A|F|1994-07-26|1994-09-11|1994-08-12|TAKE BACK RETURN|SHIP|xcuses haggle about the some| +50794|951884|39442|1|44|85176.96|0.08|0.03|N|O|1996-10-21|1996-10-05|1996-10-22|DELIVER IN PERSON|FOB|ly final pinto beans--| +50794|311017|48536|2|2|2056.00|0.07|0.07|N|O|1996-09-23|1996-09-08|1996-09-29|NONE|AIR|lar requests. fluffil| +50794|247251|47252|3|3|3594.72|0.01|0.01|N|O|1996-10-17|1996-09-28|1996-10-18|COLLECT COD|MAIL|ns. careful| +50794|541819|41820|4|50|93039.50|0.05|0.02|N|O|1996-09-27|1996-10-02|1996-10-18|COLLECT COD|MAIL|into beans| +50794|346415|8922|5|42|61378.80|0.00|0.01|N|O|1996-07-25|1996-09-16|1996-07-28|TAKE BACK RETURN|AIR| cajole around the special excuses. stea| +50795|424149|11674|1|20|21462.40|0.08|0.05|R|F|1993-10-06|1993-11-03|1993-10-17|TAKE BACK RETURN|TRUCK|al, regular ideas. regular, iro| +50795|671434|21435|2|34|47783.60|0.06|0.04|R|F|1993-09-15|1993-11-22|1993-10-13|COLLECT COD|FOB|the regular, ironic pinto beans. | +50795|788225|741|3|39|51214.41|0.07|0.02|A|F|1993-12-29|1993-12-02|1994-01-06|COLLECT COD|RAIL|xcuses snooze blithely along the carefully | +50795|689783|27323|4|12|21273.00|0.10|0.02|R|F|1993-09-27|1993-10-31|1993-10-13|NONE|FOB|ven requests. regular | +50796|896048|33600|1|16|16704.00|0.02|0.08|N|O|1995-11-03|1996-01-08|1995-11-29|TAKE BACK RETURN|TRUCK| deposits are slyly against| +50796|864047|14048|2|1|1011.00|0.04|0.01|N|O|1995-11-17|1995-12-03|1995-11-30|COLLECT COD|FOB|g instructions. slyly r| +50796|29119|16620|3|33|34587.63|0.08|0.08|N|O|1996-01-19|1996-01-21|1996-02-05|TAKE BACK RETURN|SHIP|iously regular | +50796|395432|32954|4|15|22911.30|0.07|0.05|N|O|1995-12-11|1995-12-26|1995-12-17|COLLECT COD|REG AIR|e doggedly again| +50796|10743|23244|5|11|18191.14|0.02|0.00|N|O|1995-12-01|1995-12-26|1995-12-29|COLLECT COD|MAIL|ajole furiously furio| +50796|543398|30929|6|48|69185.76|0.03|0.06|N|O|1996-02-24|1995-12-26|1996-03-05|COLLECT COD|FOB|y final pinto beans. spec| +50796|882636|32637|7|19|30753.21|0.05|0.00|N|O|1996-01-13|1996-01-31|1996-01-24|NONE|TRUCK|ar, ironic requests sleep carefully final | +50797|446799|9308|1|19|33169.63|0.09|0.02|N|O|1996-11-15|1996-12-24|1996-12-10|TAKE BACK RETURN|REG AIR|l deposits. blithely bold| +50798|408687|46212|1|44|70209.04|0.00|0.08|N|O|1997-11-13|1997-09-23|1997-11-21|DELIVER IN PERSON|RAIL|ular deposits. ac| +50798|791787|16818|2|45|84543.75|0.03|0.04|N|O|1997-10-03|1997-09-27|1997-10-08|NONE|SHIP|regular deposits. final, regular r| +50799|23824|36325|1|37|64669.34|0.08|0.08|N|O|1996-04-14|1996-03-07|1996-04-27|TAKE BACK RETURN|MAIL| furiously final accou| +50824|183152|45656|1|29|35819.35|0.01|0.05|A|F|1994-02-24|1994-01-27|1994-03-16|TAKE BACK RETURN|SHIP|hes sleep carefully! carefully special| +50824|222720|10233|2|42|68993.82|0.06|0.04|A|F|1994-03-25|1993-12-31|1994-04-09|NONE|TRUCK|quickly ironic | +50824|252482|39998|3|38|54509.86|0.10|0.00|A|F|1993-11-27|1993-12-30|1993-12-21|TAKE BACK RETURN|AIR|es. packages| +50824|462860|388|4|35|63799.40|0.07|0.01|R|F|1993-12-19|1993-12-28|1993-12-28|COLLECT COD|MAIL|egular, regu| +50824|281526|19042|5|38|57285.38|0.01|0.06|R|F|1994-01-19|1994-01-15|1994-02-07|COLLECT COD|REG AIR|ts are past the carefully| +50824|595452|7964|6|38|58802.34|0.03|0.00|R|F|1993-12-08|1994-01-08|1994-01-03|DELIVER IN PERSON|SHIP|y among the final| +50824|749387|36930|7|28|40217.80|0.09|0.02|R|F|1993-12-22|1994-01-11|1994-01-09|TAKE BACK RETURN|SHIP|ncies nag fluffily bold accounts. depo| +50825|930876|43395|1|22|41950.26|0.04|0.02|A|F|1995-04-24|1995-05-15|1995-05-12|COLLECT COD|MAIL|uffily regular packages| +50825|222685|47694|2|26|41799.42|0.06|0.01|N|O|1995-07-10|1995-05-20|1995-08-03|COLLECT COD|MAIL|tructions. careful| +50825|654548|4549|3|45|67612.95|0.06|0.03|N|F|1995-06-16|1995-05-14|1995-06-26|DELIVER IN PERSON|RAIL|tructions. requests haggle bli| +50825|975846|885|4|3|5765.40|0.10|0.02|R|F|1995-04-22|1995-05-13|1995-04-27|TAKE BACK RETURN|REG AIR|thely above the bol| +50825|34910|22411|5|36|66416.76|0.07|0.04|R|F|1995-05-20|1995-04-24|1995-06-03|COLLECT COD|FOB|y above the blithely regular req| +50825|725373|25374|6|2|2796.68|0.08|0.08|A|F|1995-04-04|1995-06-13|1995-04-29|DELIVER IN PERSON|RAIL|uffily final instructions. pl| +50825|332448|44955|7|37|54775.91|0.03|0.03|N|O|1995-07-19|1995-06-17|1995-08-18|NONE|TRUCK|nticing pa| +50826|449040|11549|1|44|43516.88|0.05|0.07|A|F|1992-05-01|1992-03-31|1992-05-19|NONE|SHIP|ending instructions haggle. pendin| +50826|14006|39007|2|5|4600.00|0.06|0.02|A|F|1992-02-23|1992-03-16|1992-03-10|TAKE BACK RETURN|MAIL|ggle carefully. carefully regular the| +50826|390179|40180|3|14|17768.24|0.07|0.07|A|F|1992-01-28|1992-03-24|1992-02-19|DELIVER IN PERSON|FOB|pending deposi| +50826|730440|17983|4|2|2940.82|0.07|0.04|A|F|1992-05-02|1992-03-05|1992-05-06|TAKE BACK RETURN|FOB| silent courts. ironic co| +50827|696597|21624|1|1|1593.56|0.02|0.08|N|O|1997-05-16|1997-04-27|1997-05-18|NONE|RAIL| haggle fluffily. ironically bol| +50827|704762|4763|2|4|7066.92|0.04|0.01|N|O|1997-06-04|1997-05-26|1997-06-14|DELIVER IN PERSON|FOB| furiously. regular foxes sleep s| +50827|921262|8817|3|10|12832.20|0.01|0.03|N|O|1997-04-08|1997-05-13|1997-04-28|DELIVER IN PERSON|MAIL|odolites sleep carefully against the unusu| +50827|635669|48182|4|36|57766.68|0.04|0.02|N|O|1997-05-06|1997-05-16|1997-05-30|TAKE BACK RETURN|REG AIR|rding to the b| +50827|684717|9744|5|15|25525.20|0.04|0.05|N|O|1997-07-07|1997-05-02|1997-08-05|TAKE BACK RETURN|REG AIR| across the furiously regular | +50827|25226|37727|6|37|42595.14|0.01|0.00|N|O|1997-07-25|1997-05-03|1997-08-22|TAKE BACK RETURN|MAIL|n theodolites are quickly regula| +50827|965905|40944|7|50|98543.00|0.00|0.06|N|O|1997-07-24|1997-06-09|1997-07-25|TAKE BACK RETURN|AIR|ent pinto beans lose fluffi| +50828|949651|24688|1|40|68024.40|0.05|0.04|A|F|1994-11-06|1994-10-25|1994-11-27|NONE|SHIP|ironic accounts along th| +50828|776313|1344|2|37|51403.36|0.01|0.05|R|F|1994-09-28|1994-09-18|1994-10-06|TAKE BACK RETURN|AIR|eas haggle. pe| +50828|486037|11056|3|36|36828.36|0.07|0.08|R|F|1994-08-20|1994-10-18|1994-08-29|DELIVER IN PERSON|AIR|taphs. even deposits cajole carefully ac| +50828|820155|20156|4|15|16126.65|0.08|0.02|R|F|1994-11-28|1994-09-26|1994-12-20|DELIVER IN PERSON|SHIP|latelets sleep among the blithely ironic | +50828|336519|11532|5|13|20221.50|0.05|0.04|A|F|1994-11-06|1994-10-22|1994-11-24|COLLECT COD|REG AIR|y at the regular | +50828|874791|37309|6|47|82990.25|0.09|0.03|A|F|1994-09-19|1994-10-13|1994-09-22|NONE|RAIL|affix blithely. ironic requests wak| +50829|831997|31998|1|17|32792.15|0.01|0.06|A|F|1992-04-14|1992-06-11|1992-05-05|DELIVER IN PERSON|TRUCK| ideas sleep blithely slyly re| +50829|367593|5115|2|1|1660.58|0.05|0.03|R|F|1992-04-23|1992-06-10|1992-05-11|COLLECT COD|MAIL|l, special accounts affix ag| +50829|135174|10179|3|15|18137.55|0.01|0.00|R|F|1992-06-07|1992-05-21|1992-06-12|DELIVER IN PERSON|SHIP|ously silent packages. express requ| +50829|858739|21257|4|3|5093.07|0.00|0.01|A|F|1992-07-18|1992-06-04|1992-08-10|TAKE BACK RETURN|TRUCK|uffily blithely stealth| +50829|825070|37587|5|34|33831.02|0.02|0.03|R|F|1992-05-26|1992-06-17|1992-05-30|NONE|AIR|atelets across the req| +50829|944559|7078|6|29|46501.79|0.09|0.00|R|F|1992-05-08|1992-06-27|1992-06-05|DELIVER IN PERSON|AIR|s-- slyly regular instructions sle| +50829|198581|48582|7|8|13436.64|0.00|0.08|R|F|1992-05-04|1992-05-24|1992-05-12|TAKE BACK RETURN|MAIL|ages mold blithely from the carefully spe| +50830|543150|18171|1|17|20283.21|0.08|0.02|R|F|1992-07-28|1992-09-14|1992-08-01|COLLECT COD|SHIP|s was carefully final, final deposits. e| +50830|711611|24126|2|50|81129.00|0.04|0.03|A|F|1992-07-11|1992-09-16|1992-07-18|NONE|MAIL|tect blithely alongside of | +50831|772290|9836|1|1|1362.26|0.05|0.03|A|F|1992-06-26|1992-05-16|1992-07-23|TAKE BACK RETURN|FOB|n requests. regular requests nag quickly | +50831|869744|19745|2|40|68548.00|0.07|0.08|R|F|1992-07-09|1992-05-28|1992-07-13|TAKE BACK RETURN|MAIL|y pending, regular instructions. bl| +50831|785678|35679|3|44|77600.16|0.06|0.02|R|F|1992-03-30|1992-05-13|1992-04-19|TAKE BACK RETURN|TRUCK|pecial, final deposits wake slyly q| +50831|886360|23912|4|21|28272.72|0.01|0.04|R|F|1992-07-11|1992-04-26|1992-08-02|COLLECT COD|AIR|ironic, enticing deposits wake quickly | +50856|147667|47668|1|26|44581.16|0.07|0.02|N|O|1996-05-09|1996-04-24|1996-05-29|TAKE BACK RETURN|RAIL|ackages haggle according to the b| +50856|828284|40801|2|2|2424.48|0.08|0.02|N|O|1996-04-06|1996-04-01|1996-04-29|DELIVER IN PERSON|RAIL|iously unusual reque| +50856|954287|16807|3|16|21459.84|0.04|0.08|N|O|1996-04-15|1996-04-29|1996-05-15|TAKE BACK RETURN|RAIL|al ideas use fluffily along th| +50856|685330|10357|4|12|15783.60|0.03|0.05|N|O|1996-04-01|1996-05-03|1996-04-11|NONE|SHIP|blithely regular accounts. furiously| +50856|337986|493|5|1|2023.97|0.07|0.03|N|O|1996-02-04|1996-04-03|1996-02-24|COLLECT COD|SHIP|usual packages. theodolites sublate after t| +50856|520114|32625|6|50|56704.50|0.00|0.08|N|O|1996-03-21|1996-03-04|1996-04-05|TAKE BACK RETURN|REG AIR| according | +50857|303248|40767|1|36|45044.28|0.07|0.04|A|F|1992-11-29|1992-10-25|1992-12-28|NONE|FOB|l packages.| +50857|678172|28173|2|30|34504.20|0.06|0.02|R|F|1992-10-09|1992-11-18|1992-10-15|DELIVER IN PERSON|RAIL|s sleep. unusual, express foxes above t| +50857|26224|1225|3|48|55210.56|0.00|0.07|R|F|1993-01-13|1992-10-26|1993-01-18|TAKE BACK RETURN|SHIP|ic dependencies kindle blithe| +50857|745038|32581|4|45|48735.00|0.06|0.01|R|F|1992-12-22|1992-11-07|1992-12-23|DELIVER IN PERSON|RAIL|ick packages. enticing instruct| +50857|839020|14053|5|33|31646.34|0.02|0.03|R|F|1992-12-28|1992-12-11|1993-01-04|DELIVER IN PERSON|MAIL|ges. quickly exp| +50858|754089|29120|1|35|40006.75|0.04|0.08|A|F|1992-05-11|1992-07-18|1992-05-18|TAKE BACK RETURN|REG AIR|ts haggle furiously. even courts ar| +50858|972150|22151|2|42|51328.62|0.02|0.06|A|F|1992-06-27|1992-06-13|1992-07-01|TAKE BACK RETURN|FOB|inal dolphins. even accounts above the | +50858|909520|34557|3|33|50472.84|0.02|0.02|A|F|1992-06-18|1992-07-12|1992-06-27|DELIVER IN PERSON|REG AIR|elets cajole slyly ironic accounts. h| +50858|287679|37680|4|33|54999.78|0.10|0.02|R|F|1992-08-16|1992-07-14|1992-09-09|DELIVER IN PERSON|RAIL| bold dolphins promise sl| +50858|20288|7789|5|5|6041.40|0.04|0.07|R|F|1992-07-05|1992-06-21|1992-08-04|TAKE BACK RETURN|AIR|pending theo| +50859|565392|40415|1|32|46635.84|0.01|0.01|R|F|1992-11-20|1992-11-23|1992-12-01|NONE|SHIP| dugouts. blit| +50859|542803|30334|2|38|70139.64|0.09|0.01|R|F|1992-12-18|1992-12-11|1992-12-20|TAKE BACK RETURN|RAIL|d dolphins s| +50859|887478|25030|3|10|14654.30|0.08|0.05|R|F|1992-11-24|1992-11-02|1992-11-25|TAKE BACK RETURN|FOB|packages. silent patterns wake furiously ca| +50859|827571|15120|4|26|38961.78|0.01|0.04|A|F|1992-12-07|1992-11-23|1992-12-21|NONE|TRUCK|inal deposits are blithe| +50860|904366|41921|1|10|13703.20|0.10|0.03|N|O|1998-07-28|1998-05-06|1998-07-31|TAKE BACK RETURN|RAIL| theodolites ough| +50861|611989|24502|1|19|36118.05|0.03|0.02|A|F|1993-11-01|1993-12-21|1993-11-25|TAKE BACK RETURN|REG AIR|nto beans impress quickly whithout the | +50862|694866|19893|1|11|20469.13|0.10|0.08|N|O|1995-08-20|1995-07-26|1995-09-09|COLLECT COD|REG AIR|ests among the requests integrate | +50862|600608|25633|2|12|18102.84|0.10|0.02|N|F|1995-06-11|1995-07-28|1995-06-28|DELIVER IN PERSON|TRUCK| are slowly warthogs. furiously bold pa| +50862|402360|14869|3|44|55542.96|0.10|0.00|N|O|1995-09-11|1995-06-28|1995-10-09|DELIVER IN PERSON|FOB| quickly even requests a| +50863|723996|11539|1|8|16159.68|0.04|0.03|N|O|1997-05-24|1997-07-31|1997-05-30|NONE|FOB|ickly packages. care| +50863|187753|12760|2|49|90196.75|0.10|0.07|N|O|1997-07-17|1997-08-08|1997-08-15|DELIVER IN PERSON|AIR|mpress fluffily across th| +50888|487415|49925|1|46|64509.94|0.03|0.00|N|O|1995-07-07|1995-04-13|1995-08-05|TAKE BACK RETURN|RAIL|nd the carefully r| +50889|925354|391|1|50|68965.50|0.05|0.07|R|F|1995-03-10|1995-04-16|1995-03-17|DELIVER IN PERSON|TRUCK|ful packages sleep about the blithely fin| +50889|422975|35484|2|50|94897.50|0.08|0.06|R|F|1995-03-11|1995-03-31|1995-03-23|COLLECT COD|FOB|unts boost finally. | +50890|709620|22135|1|31|50517.29|0.06|0.01|R|F|1993-08-15|1993-06-16|1993-09-02|TAKE BACK RETURN|RAIL|quests aro| +50890|581442|18976|2|47|71600.74|0.03|0.08|R|F|1993-04-28|1993-05-23|1993-05-05|NONE|SHIP|uests haggle carefully doggedly regular pin| +50890|286399|48905|3|21|29092.98|0.06|0.01|A|F|1993-05-10|1993-06-11|1993-05-29|COLLECT COD|RAIL|about the requests. bold foxes integrate| +50890|504393|16904|4|29|40523.73|0.02|0.02|R|F|1993-04-27|1993-05-22|1993-05-17|NONE|REG AIR| theodolites maint| +50890|328713|3726|5|25|43542.50|0.08|0.01|R|F|1993-05-01|1993-07-06|1993-05-26|NONE|REG AIR|nusual courts maintain blithely express exc| +50890|665718|40745|6|6|10102.08|0.02|0.04|R|F|1993-07-06|1993-07-12|1993-07-28|TAKE BACK RETURN|SHIP| special accounts | +50891|361003|11004|1|6|6383.94|0.06|0.05|N|O|1997-08-24|1997-08-10|1997-09-08|TAKE BACK RETURN|MAIL|t slyly along the carefully bold p| +50891|364547|27055|2|32|51568.96|0.08|0.08|N|O|1997-06-10|1997-07-20|1997-07-08|COLLECT COD|TRUCK| to the quickly ironic foxes cajole again| +50891|932726|32727|3|22|38690.96|0.08|0.01|N|O|1997-08-01|1997-08-23|1997-08-21|DELIVER IN PERSON|MAIL|uriously ironic | +50892|77395|27396|1|6|8234.34|0.10|0.07|N|O|1996-07-19|1996-07-14|1996-08-04|COLLECT COD|SHIP|ar platelets. quickly regular pac| +50893|19384|19385|1|41|53438.58|0.00|0.04|R|F|1992-09-25|1992-11-06|1992-10-07|TAKE BACK RETURN|REG AIR|pecial accounts are after the | +50893|785613|23159|2|20|33971.60|0.00|0.01|R|F|1992-11-03|1992-11-20|1992-11-27|DELIVER IN PERSON|REG AIR|the special platelets | +50893|784188|46704|3|3|3816.45|0.09|0.02|R|F|1992-09-07|1992-10-29|1992-09-20|TAKE BACK RETURN|TRUCK|ven pinto beans. slyly bold packages detec| +50893|841204|3721|4|26|29774.16|0.02|0.07|R|F|1992-10-20|1992-11-12|1992-11-12|DELIVER IN PERSON|SHIP|ckages shall have to wake | +50894|243991|43992|1|48|92879.04|0.04|0.00|N|O|1995-08-23|1995-11-06|1995-09-11|TAKE BACK RETURN|RAIL|nis sleep blithely regular foxes. ironic de| +50894|755074|5075|2|18|20322.72|0.00|0.01|N|O|1995-11-11|1995-09-14|1995-11-17|DELIVER IN PERSON|AIR|ly fluffily even packages. furi| +50894|524983|12514|3|21|42167.16|0.03|0.07|N|O|1995-11-27|1995-09-22|1995-12-27|TAKE BACK RETURN|RAIL|ges cajole quickly regular| +50894|383745|46253|4|12|21944.76|0.06|0.06|N|O|1995-10-29|1995-09-28|1995-11-21|TAKE BACK RETURN|AIR|ly carefully | +50895|490410|27938|1|37|51814.43|0.10|0.06|N|O|1997-09-12|1997-12-01|1997-10-01|TAKE BACK RETURN|SHIP| blithely entic| +50895|305043|30056|2|25|26200.75|0.03|0.03|N|O|1997-10-29|1997-11-04|1997-11-07|NONE|FOB|ggle among the packages. fina| +50895|849898|37447|3|10|18478.50|0.02|0.01|N|O|1997-10-08|1997-12-01|1997-11-05|DELIVER IN PERSON|RAIL|s pinto beans. carefully ir| +50895|220193|7706|4|29|32282.22|0.05|0.01|N|O|1997-10-12|1997-12-03|1997-11-02|TAKE BACK RETURN|REG AIR|oss the blithely thi| +50895|780029|42545|5|32|35487.68|0.10|0.01|N|O|1997-11-30|1997-12-04|1997-12-07|DELIVER IN PERSON|RAIL|uffily pending asymptotes s| +50895|932653|45172|6|13|21912.93|0.04|0.07|N|O|1997-12-24|1997-11-17|1998-01-18|DELIVER IN PERSON|RAIL|instructions. fin| +50920|713524|1067|1|23|35362.27|0.05|0.01|N|O|1998-09-01|1998-08-28|1998-09-29|DELIVER IN PERSON|RAIL|nag carefully blithely regular reque| +50920|194709|44710|2|4|7214.80|0.10|0.00|N|O|1998-09-28|1998-10-01|1998-10-20|COLLECT COD|TRUCK|ites. ironic, regul| +50920|460143|10144|3|43|47434.16|0.04|0.00|N|O|1998-09-28|1998-09-26|1998-10-20|DELIVER IN PERSON|REG AIR|ing theodolites. quickly final a| +50921|311168|11169|1|7|8254.05|0.06|0.04|A|F|1993-09-30|1993-09-23|1993-10-24|TAKE BACK RETURN|TRUCK| of the even a| +50921|787855|12886|2|33|64113.06|0.06|0.03|A|F|1993-11-20|1993-11-07|1993-12-01|DELIVER IN PERSON|MAIL| deposits. slyly regu| +50921|470144|32654|3|35|38994.20|0.09|0.03|R|F|1993-09-27|1993-11-08|1993-10-10|TAKE BACK RETURN|RAIL|lly silent accounts! bli| +50921|701711|39254|4|41|70219.88|0.09|0.00|A|F|1993-08-18|1993-10-05|1993-09-10|NONE|MAIL| quickly final package| +50921|650654|655|5|46|73812.52|0.07|0.04|R|F|1993-08-25|1993-09-28|1993-09-10|DELIVER IN PERSON|FOB|ely. express, express deposits cajo| +50921|533241|20772|6|49|62436.78|0.01|0.04|R|F|1993-08-31|1993-09-25|1993-09-05|COLLECT COD|SHIP|ins. furiously final dependencies a| +50922|341794|41795|1|48|88117.44|0.10|0.05|N|O|1997-10-08|1997-09-13|1997-10-11|COLLECT COD|REG AIR|furiously | +50922|531480|31481|2|50|75573.00|0.02|0.06|N|O|1997-10-17|1997-10-28|1997-10-27|COLLECT COD|RAIL|uests nag slyly at the car| +50922|568342|18343|3|11|15513.52|0.02|0.07|N|O|1997-09-17|1997-10-09|1997-10-12|DELIVER IN PERSON|FOB| carefully alongside of the ca| +50922|119135|31638|4|39|45011.07|0.01|0.06|N|O|1997-11-29|1997-11-11|1997-12-07|TAKE BACK RETURN|TRUCK|carefully even pinto beans along the | +50922|294915|7421|5|19|36288.10|0.10|0.02|N|O|1997-10-05|1997-11-05|1997-10-19|DELIVER IN PERSON|SHIP|blithely final asymptot| +50922|631148|31149|6|19|20503.09|0.10|0.02|N|O|1997-12-05|1997-10-20|1997-12-11|COLLECT COD|MAIL|at the unusual requests. carefull| +50922|697668|10182|7|1|1665.63|0.07|0.01|N|O|1997-09-10|1997-10-18|1997-10-06|COLLECT COD|MAIL|bove the quickl| +50923|697139|34679|1|4|4544.40|0.05|0.04|N|O|1996-03-13|1996-03-23|1996-04-08|COLLECT COD|MAIL|slyly above the f| +50923|798549|11065|2|6|9885.06|0.04|0.02|N|O|1996-04-25|1996-04-01|1996-04-29|DELIVER IN PERSON|TRUCK|d pinto beans. blithely fi| +50923|201892|26901|3|32|57404.16|0.07|0.04|N|O|1996-02-07|1996-03-07|1996-02-08|COLLECT COD|TRUCK| are never beyond the regular, iro| +50923|194951|44952|4|24|49102.80|0.09|0.02|N|O|1996-05-03|1996-04-04|1996-06-01|COLLECT COD|AIR|ffily regula| +50923|536304|36305|5|4|5361.12|0.10|0.01|N|O|1996-04-29|1996-04-01|1996-05-13|TAKE BACK RETURN|FOB|doze carefully along the blithely ironic| +50923|654599|4600|6|1|1553.56|0.07|0.03|N|O|1996-01-28|1996-03-02|1996-02-14|TAKE BACK RETURN|MAIL| affix quickly r| +50923|840785|3302|7|47|81109.78|0.02|0.02|N|O|1996-03-23|1996-03-16|1996-04-07|COLLECT COD|REG AIR|ld furiously flu| +50924|65105|27607|1|8|8560.80|0.04|0.08|A|F|1994-09-27|1994-10-18|1994-10-07|TAKE BACK RETURN|SHIP|ickly ironic deposits. quickly ironic th| +50924|203161|40674|2|41|43630.15|0.00|0.03|R|F|1994-11-09|1994-10-28|1994-11-21|TAKE BACK RETURN|TRUCK|ously deposits! idly e| +50924|510428|10429|3|6|8630.40|0.00|0.08|A|F|1994-10-01|1994-11-18|1994-10-10|TAKE BACK RETURN|RAIL|ckages run regular pinto beans. inst| +50924|753050|15566|4|1|1103.02|0.09|0.08|R|F|1994-09-19|1994-10-26|1994-09-22|COLLECT COD|AIR|uriously bold dugouts. bold, pending accou| +50924|507442|19953|5|27|39134.34|0.10|0.04|A|F|1994-12-18|1994-10-30|1994-12-21|NONE|AIR|refully final platelets sleep. excuse| +50924|572985|35497|6|31|63796.76|0.03|0.05|R|F|1994-12-20|1994-11-09|1995-01-04|NONE|SHIP| the slyly final packages. quickly final | +50925|619248|44273|1|34|39685.14|0.09|0.02|N|O|1998-02-03|1997-12-07|1998-03-04|COLLECT COD|MAIL|elieve pinto bean| +50926|31283|31284|1|50|60714.00|0.08|0.08|R|F|1994-08-09|1994-09-04|1994-08-30|DELIVER IN PERSON|AIR|ccounts-- blithely unusual | +50926|770557|8103|2|19|30922.88|0.10|0.07|R|F|1994-09-22|1994-10-05|1994-09-29|DELIVER IN PERSON|TRUCK| ironic platelets cajole fl| +50927|679181|29182|1|28|32484.20|0.02|0.08|N|O|1995-08-25|1995-09-14|1995-09-12|DELIVER IN PERSON|SHIP|. ironic, brave theodolites use.| +50927|994443|6963|2|24|36897.60|0.00|0.07|N|O|1995-09-11|1995-08-25|1995-09-14|TAKE BACK RETURN|REG AIR|l ideas: ironic ideas affix bold, furious| +50927|587368|37369|3|25|36383.50|0.03|0.05|N|O|1995-09-13|1995-08-18|1995-09-18|COLLECT COD|AIR|theodolites. unusual instructions| +50927|892781|5299|4|34|60307.16|0.10|0.05|N|O|1995-07-08|1995-09-18|1995-07-28|COLLECT COD|MAIL|permanent packages wake slyly after the fur| +50952|604806|17319|1|13|22240.01|0.00|0.03|N|O|1996-06-30|1996-08-15|1996-07-11|NONE|AIR| pending, regular ideas use blithely| +50953|747912|10427|1|31|60756.28|0.08|0.02|N|O|1995-07-31|1995-06-24|1995-08-10|TAKE BACK RETURN|MAIL|ironic requests detect blithely. r| +50953|149570|12073|2|33|53445.81|0.02|0.07|N|O|1995-07-13|1995-06-15|1995-07-24|COLLECT COD|REG AIR|silent, ironic excus| +50954|918291|18292|1|44|57607.00|0.06|0.05|N|O|1996-02-03|1995-12-08|1996-02-15|NONE|RAIL|ts integrate blithely about the speci| +50954|713655|13656|2|47|78425.14|0.08|0.07|N|O|1995-11-15|1995-11-17|1995-12-14|TAKE BACK RETURN|REG AIR|ld accounts caj| +50954|384715|22237|3|37|66588.90|0.04|0.00|N|O|1995-11-06|1995-11-29|1995-12-05|DELIVER IN PERSON|RAIL|equests grow pending, sp| +50954|890173|40174|4|18|20936.34|0.10|0.07|N|O|1995-11-22|1995-12-24|1995-12-19|TAKE BACK RETURN|TRUCK|es wake. final re| +50954|121305|21306|5|24|31831.20|0.01|0.07|N|O|1996-01-01|1995-12-27|1996-01-18|TAKE BACK RETURN|AIR|asymptotes maintain blithely a| +50954|768973|44004|6|18|36754.92|0.08|0.04|N|O|1995-12-22|1995-11-09|1996-01-06|NONE|FOB|ual ideas are furiously final ideas. regu| +50954|128237|3242|7|14|17713.22|0.01|0.07|N|O|1995-11-26|1995-12-01|1995-12-25|DELIVER IN PERSON|SHIP|fily stealthily pending no| +50955|274858|24859|1|7|12829.88|0.02|0.07|R|F|1992-10-17|1992-10-08|1992-11-16|COLLECT COD|FOB| quickly regular grouches eat ca| +50955|523855|11386|2|19|35697.77|0.02|0.01|A|F|1992-08-08|1992-09-30|1992-08-21|TAKE BACK RETURN|TRUCK|lways silent deposits dazzl| +50955|428388|28389|3|7|9214.52|0.06|0.04|R|F|1992-10-03|1992-10-10|1992-10-06|DELIVER IN PERSON|TRUCK|its. furiously expres| +50955|907611|32648|4|9|14567.13|0.04|0.07|A|F|1992-11-05|1992-08-14|1992-11-19|COLLECT COD|TRUCK| the final, re| +50955|206625|44138|5|33|50543.13|0.04|0.03|R|F|1992-10-26|1992-09-24|1992-10-27|COLLECT COD|AIR|ding, pending platelets wake furiously ir| +50956|221185|33690|1|20|22123.40|0.03|0.06|N|O|1997-08-24|1997-09-12|1997-09-10|COLLECT COD|MAIL|round the carefully | +50956|448051|35576|2|47|46954.41|0.07|0.01|N|O|1997-09-10|1997-09-05|1997-09-20|TAKE BACK RETURN|RAIL|e even asymptotes. escapades are fu| +50956|380044|42552|3|28|31472.84|0.07|0.08|N|O|1997-08-27|1997-07-26|1997-09-09|NONE|SHIP|ingly. bold inst| +50956|395242|7750|4|10|13372.30|0.10|0.01|N|O|1997-10-06|1997-08-17|1997-10-26|DELIVER IN PERSON|FOB|express accounts. furiously ironic packages| +50956|824385|11934|5|32|41898.88|0.02|0.02|N|O|1997-06-27|1997-09-17|1997-07-21|DELIVER IN PERSON|TRUCK|refully close dependencies above the q| +50956|432174|44683|6|41|45352.15|0.02|0.01|N|O|1997-09-17|1997-09-10|1997-10-13|COLLECT COD|MAIL| sleep quickly among the furiously even | +50956|532205|32206|7|18|22269.24|0.04|0.07|N|O|1997-09-13|1997-08-01|1997-09-17|DELIVER IN PERSON|TRUCK|ter the slyly bold requests| +50957|759939|9940|1|44|87951.60|0.10|0.06|A|F|1993-04-19|1993-05-30|1993-05-03|DELIVER IN PERSON|RAIL|s. blithely regular packages wake sl| +50957|292455|17466|2|1|1447.44|0.08|0.08|R|F|1993-05-09|1993-04-22|1993-05-15|DELIVER IN PERSON|MAIL|ss the silent theodo| +50957|286012|23528|3|42|41916.00|0.03|0.03|A|F|1993-04-26|1993-04-28|1993-05-10|COLLECT COD|REG AIR|even, regular attainments. carefully regu| +50957|2003|2004|4|28|25340.00|0.08|0.00|A|F|1993-03-23|1993-04-30|1993-04-20|NONE|REG AIR|regular, unusual asy| +50957|656652|44192|5|26|41824.12|0.06|0.08|A|F|1993-06-12|1993-04-26|1993-07-08|COLLECT COD|FOB| furiously dogged foxes integrate slyly. | +50957|340274|15287|6|39|51256.14|0.09|0.00|A|F|1993-07-06|1993-04-25|1993-07-12|NONE|SHIP|the blithely bo| +50957|972858|22859|7|4|7723.24|0.04|0.06|A|F|1993-05-01|1993-04-11|1993-05-27|TAKE BACK RETURN|RAIL|unts. quickly special escapades according| +50958|824376|36893|1|22|28607.26|0.03|0.07|R|F|1993-04-28|1993-05-29|1993-05-26|TAKE BACK RETURN|REG AIR|deas. final courts ca| +50958|284811|34812|2|30|53874.00|0.04|0.00|A|F|1993-07-23|1993-06-09|1993-08-10|NONE|TRUCK| quickly unusual requests wake | +50959|853573|41125|1|43|65640.79|0.02|0.00|N|F|1995-05-27|1995-06-06|1995-06-18|NONE|MAIL|scapades cajole fluffily. carefully | +50959|996520|21559|2|5|8082.40|0.07|0.00|N|O|1995-07-03|1995-06-22|1995-07-29|COLLECT COD|FOB|heodolites; slyly bold attainments | +50959|500833|13344|3|43|78853.83|0.03|0.06|R|F|1995-05-02|1995-05-22|1995-05-18|TAKE BACK RETURN|MAIL|eposits. slyl| +50959|491839|29367|4|39|71401.59|0.04|0.01|A|F|1995-05-07|1995-06-07|1995-05-22|NONE|TRUCK| requests about the | +50959|324194|24195|5|27|32890.86|0.09|0.07|A|F|1995-05-26|1995-05-16|1995-06-06|COLLECT COD|AIR|rding to the quickly express pinto beans? s| +50959|716322|28837|6|25|33457.25|0.01|0.01|N|F|1995-05-30|1995-05-28|1995-06-20|COLLECT COD|RAIL|frays grow fl| +50984|410852|35869|1|4|7051.32|0.06|0.04|N|O|1997-11-28|1997-12-23|1997-12-11|TAKE BACK RETURN|RAIL|blithely special, regular th| +50984|182573|45077|2|16|26489.12|0.04|0.01|N|O|1997-10-30|1997-11-29|1997-11-27|NONE|AIR|pecial requests nag blithely. packages hi| +50984|494543|32071|3|28|43050.56|0.02|0.05|N|O|1997-10-22|1997-11-14|1997-11-16|DELIVER IN PERSON|MAIL|slyly. bold a| +50984|781820|31821|4|33|62759.07|0.09|0.06|N|O|1997-10-21|1997-11-21|1997-11-06|COLLECT COD|FOB|use blithely furious, express platelets.| +50985|480781|43291|1|40|70470.40|0.01|0.04|N|O|1996-06-01|1996-03-11|1996-06-06|TAKE BACK RETURN|MAIL|deas serve blithely blithely bold accou| +50985|472921|35431|2|25|47347.50|0.04|0.07|N|O|1996-02-18|1996-04-21|1996-03-18|COLLECT COD|AIR|sly ironic attainments| +50985|379617|17139|3|34|57684.40|0.04|0.05|N|O|1996-02-25|1996-04-03|1996-03-19|NONE|REG AIR|st the quickly expre| +50986|407231|32248|1|44|50081.24|0.02|0.01|N|O|1997-12-31|1998-02-28|1998-01-02|COLLECT COD|REG AIR|express pint| +50986|315655|15656|2|26|43436.64|0.03|0.08|N|O|1998-02-11|1998-01-08|1998-02-12|DELIVER IN PERSON|REG AIR| blithely final pinto beans| +50986|201646|14151|3|42|65000.46|0.10|0.04|N|O|1998-01-18|1997-12-31|1998-02-08|DELIVER IN PERSON|RAIL| ironic deposits haggle about the qui| +50987|20387|7888|1|46|60139.48|0.10|0.07|A|F|1993-04-21|1993-06-13|1993-05-12|NONE|SHIP|onic packages thrash fluffily. blithely| +50987|630346|5371|2|14|17868.34|0.08|0.00|A|F|1993-05-16|1993-05-30|1993-06-05|DELIVER IN PERSON|TRUCK|ccounts wake carefully. furiousl| +50987|223298|10811|3|15|18319.20|0.01|0.03|R|F|1993-05-03|1993-05-07|1993-05-12|NONE|SHIP|e carefully final pinto| +50987|954191|41749|4|26|32373.90|0.04|0.01|A|F|1993-05-25|1993-06-03|1993-06-11|COLLECT COD|SHIP|arefully? carefully unusual depe| +50988|606693|44230|1|9|14396.94|0.03|0.00|N|O|1998-03-11|1998-03-30|1998-03-28|NONE|AIR|arefully after the blithely | +50988|679514|17054|2|10|14934.80|0.01|0.06|N|O|1998-04-27|1998-02-21|1998-05-20|DELIVER IN PERSON|TRUCK|le quickly. reg| +50988|575747|13281|3|3|5468.16|0.10|0.06|N|O|1998-02-23|1998-03-19|1998-03-07|NONE|RAIL| nag furiously after| +50988|577143|14677|4|30|36603.60|0.04|0.02|N|O|1998-03-24|1998-03-22|1998-04-13|NONE|RAIL|frays. quickly regular deposits wa| +50988|27856|40357|5|11|19622.35|0.07|0.08|N|O|1998-02-15|1998-03-25|1998-03-07|DELIVER IN PERSON|MAIL|ar packages. carefully regular p| +50989|216758|16759|1|43|72013.82|0.02|0.06|N|O|1995-08-07|1995-07-19|1995-08-30|NONE|SHIP|riously express accounts across the| +50990|863780|13781|1|25|43593.50|0.06|0.05|N|O|1996-08-01|1996-07-26|1996-08-20|TAKE BACK RETURN|REG AIR|ss asymptotes along the perman| +50990|537386|49897|2|26|37007.36|0.09|0.01|N|O|1996-08-06|1996-06-26|1996-08-13|DELIVER IN PERSON|RAIL|nic deposits. careful| +50990|833447|45964|3|28|38651.20|0.03|0.05|N|O|1996-08-14|1996-07-30|1996-08-21|TAKE BACK RETURN|MAIL|ar ideas above the slyly regula| +50990|737413|24956|4|18|26106.84|0.00|0.00|N|O|1996-07-10|1996-08-02|1996-07-20|NONE|TRUCK|ites haggle carefully. packages alongs| +50991|363318|840|1|2|2762.60|0.03|0.04|R|F|1994-06-13|1994-07-13|1994-06-21|DELIVER IN PERSON|SHIP|ve the furiously bol| +50991|283602|8613|2|23|36468.57|0.03|0.07|A|F|1994-08-13|1994-06-25|1994-08-29|TAKE BACK RETURN|FOB|quests against the blithel| +50991|492520|30048|3|29|43862.50|0.03|0.01|R|F|1994-04-30|1994-07-13|1994-05-26|TAKE BACK RETURN|RAIL|eep blithely bold, regular courts-- slyly| +50991|776778|1809|4|41|76044.34|0.02|0.02|R|F|1994-07-08|1994-07-21|1994-07-21|NONE|SHIP|hall have to cajole alongside o| +51016|62397|37400|1|37|50297.43|0.05|0.06|N|O|1996-08-04|1996-06-26|1996-08-23|NONE|MAIL|l, final ideas. carefu| +51016|697550|22577|2|36|55710.72|0.02|0.06|N|O|1996-05-26|1996-07-26|1996-06-12|COLLECT COD|AIR|slyly final| +51017|590909|3421|1|37|73995.56|0.05|0.06|N|O|1998-06-05|1998-07-28|1998-06-09|DELIVER IN PERSON|TRUCK|requests are besides the| +51017|392440|42441|2|42|64362.06|0.01|0.08|N|O|1998-07-01|1998-07-23|1998-07-08|NONE|MAIL|press pinto beans dazzle carefully aga| +51017|732307|7336|3|44|58927.88|0.00|0.01|N|O|1998-07-13|1998-07-18|1998-08-08|COLLECT COD|REG AIR| deposits. slyly regular| +51017|880986|18538|4|25|49173.50|0.09|0.06|N|O|1998-09-03|1998-07-29|1998-09-05|NONE|SHIP|lithely. closely i| +51017|725604|13147|5|20|32591.40|0.06|0.02|N|O|1998-06-04|1998-07-24|1998-06-28|TAKE BACK RETURN|SHIP|es. furiously stea| +51017|216542|4055|6|33|48131.49|0.06|0.07|N|O|1998-09-08|1998-06-21|1998-09-27|TAKE BACK RETURN|REG AIR|fully. quickly furious packages integr| +51017|417153|42170|7|27|28893.51|0.09|0.07|N|O|1998-06-14|1998-08-04|1998-07-10|TAKE BACK RETURN|RAIL| fluffily sp| +51018|90121|40122|1|8|8888.96|0.10|0.02|N|O|1995-10-09|1995-09-02|1995-10-25|DELIVER IN PERSON|REG AIR|ess theodolites;| +51018|653600|41140|2|33|51267.81|0.02|0.08|N|O|1995-10-01|1995-08-12|1995-10-26|COLLECT COD|REG AIR| furiously re| +51018|53325|40829|3|29|37071.28|0.05|0.04|N|O|1995-09-30|1995-08-10|1995-10-24|DELIVER IN PERSON|RAIL| nag slyly after the | +51019|899238|49239|1|25|30929.75|0.08|0.02|A|F|1992-03-01|1992-02-17|1992-03-07|NONE|REG AIR|hely slyly even reques| +51019|482785|7804|2|5|8838.80|0.10|0.07|A|F|1992-02-01|1992-02-08|1992-02-26|COLLECT COD|MAIL|n packages. fluffily regular accounts are| +51019|151048|1049|3|30|32971.20|0.04|0.00|R|F|1992-04-12|1992-03-14|1992-05-10|DELIVER IN PERSON|RAIL|ove the ideas thrash above the quickly | +51019|659581|9582|4|24|36973.20|0.02|0.04|A|F|1992-04-07|1992-03-24|1992-04-18|COLLECT COD|RAIL|encies integrate blithely between t| +51019|575955|13489|5|43|87329.99|0.08|0.00|R|F|1992-02-16|1992-02-12|1992-02-20|COLLECT COD|REG AIR| busy pinto be| +51020|806091|6092|1|48|47858.40|0.06|0.07|N|O|1996-02-29|1996-03-29|1996-03-27|DELIVER IN PERSON|SHIP|ternes. si| +51020|964985|14986|2|29|59448.26|0.06|0.05|N|O|1996-03-18|1996-03-15|1996-04-07|TAKE BACK RETURN|REG AIR| carefully re| +51020|489559|2069|3|15|23227.95|0.05|0.03|N|O|1996-04-23|1996-03-07|1996-05-08|TAKE BACK RETURN|MAIL| express d| +51020|2682|27683|4|43|68141.24|0.03|0.02|N|O|1996-02-04|1996-04-14|1996-02-26|DELIVER IN PERSON|SHIP|instructions. furiously pendin| +51020|66653|41656|5|11|17816.15|0.09|0.03|N|O|1996-03-14|1996-04-01|1996-04-13|DELIVER IN PERSON|RAIL|kages along the slyly | +51020|229305|41810|6|25|30857.25|0.04|0.08|N|O|1996-03-08|1996-03-27|1996-03-15|COLLECT COD|AIR|yly final requests are| +51020|927244|2281|7|16|20339.20|0.02|0.08|N|O|1996-04-15|1996-04-05|1996-04-22|TAKE BACK RETURN|RAIL|s. patterns are quic| +51021|182506|45010|1|15|23827.50|0.03|0.05|R|F|1993-10-19|1993-10-18|1993-10-20|COLLECT COD|TRUCK|sly ironic pinto beans to t| +51022|464329|1857|1|44|56905.20|0.08|0.03|N|O|1995-10-01|1995-08-27|1995-10-21|DELIVER IN PERSON|FOB|unts. slyly sp| +51022|970027|45066|2|43|47170.14|0.08|0.01|N|O|1995-08-24|1995-10-10|1995-09-07|TAKE BACK RETURN|REG AIR| bold dolphins wa| +51022|231207|31208|3|36|40974.84|0.06|0.01|N|O|1995-08-09|1995-10-08|1995-08-28|TAKE BACK RETURN|AIR|otes above the bold accounts| +51022|895200|20235|4|30|35854.80|0.08|0.06|N|O|1995-08-21|1995-08-29|1995-09-10|TAKE BACK RETURN|REG AIR|carefully regular warhorses. careful| +51022|614232|39257|5|34|38970.80|0.00|0.05|N|O|1995-10-13|1995-09-04|1995-10-17|NONE|REG AIR|ic ideas nag bold realms-- furiously ironi| +51022|390584|28106|6|46|77030.22|0.09|0.00|N|O|1995-07-30|1995-08-26|1995-08-01|TAKE BACK RETURN|MAIL|yly bold deposits. st| +51023|534944|34945|1|2|3957.84|0.05|0.07|N|O|1996-09-03|1996-08-18|1996-09-23|TAKE BACK RETURN|FOB|ts. slyly p| +51023|792483|4999|2|25|39386.25|0.03|0.00|N|O|1996-06-30|1996-08-17|1996-07-05|TAKE BACK RETURN|TRUCK| requests. dolphins p| +51023|257884|20390|3|7|12893.09|0.08|0.01|N|O|1996-07-10|1996-08-09|1996-07-20|COLLECT COD|RAIL| requests. slyly sile| +51023|244095|31608|4|9|9351.72|0.03|0.08|N|O|1996-07-08|1996-08-10|1996-08-07|COLLECT COD|AIR|ges haggle blithely accordi| +51048|421118|33627|1|3|3117.27|0.06|0.03|N|O|1997-03-21|1997-02-07|1997-04-19|NONE|RAIL|s. blithely enticing | +51049|831704|31705|1|3|4906.98|0.03|0.04|N|O|1996-10-29|1996-10-27|1996-11-25|COLLECT COD|RAIL|ously regular packages sleep close| +51050|496458|8968|1|21|30543.03|0.08|0.08|N|O|1996-10-25|1996-12-06|1996-11-20|DELIVER IN PERSON|TRUCK|dolites. quickl| +51050|955688|18208|2|35|61027.40|0.08|0.08|N|O|1996-12-10|1996-11-30|1996-12-22|TAKE BACK RETURN|MAIL|its cajole bl| +51051|773957|23958|1|29|58896.68|0.07|0.00|R|F|1992-11-18|1992-10-19|1992-11-28|TAKE BACK RETURN|RAIL|ckages nag along the furiously i| +51051|881956|44474|2|37|71702.67|0.05|0.00|A|F|1992-09-07|1992-11-06|1992-09-29|COLLECT COD|RAIL|wake slyly. requests ca| +51052|661423|23937|1|49|67835.11|0.00|0.01|N|O|1998-07-17|1998-04-26|1998-07-20|TAKE BACK RETURN|FOB|arefully regular instr| +51052|532681|45192|2|17|29132.22|0.05|0.01|N|O|1998-06-14|1998-05-03|1998-07-12|NONE|RAIL|ously. slyl| +51052|763725|38756|3|45|80491.05|0.02|0.07|N|O|1998-06-08|1998-05-08|1998-06-12|COLLECT COD|RAIL|ideas haggle carefully. pinto beans | +51053|112397|49904|1|20|28187.80|0.07|0.02|A|F|1992-08-13|1992-08-13|1992-08-20|COLLECT COD|SHIP|iously unusual deposits cajole acco| +51054|311243|36256|1|49|61457.27|0.03|0.04|N|O|1995-08-13|1995-07-02|1995-09-12|TAKE BACK RETURN|REG AIR|osits. slyly ironic| +51054|45185|7686|2|12|13562.16|0.06|0.08|N|O|1995-07-12|1995-06-16|1995-07-14|NONE|SHIP|oubt carefully. carefully| +51054|410423|22932|3|4|5333.60|0.06|0.06|R|F|1995-05-30|1995-07-11|1995-06-05|DELIVER IN PERSON|TRUCK|luffily unusual pinto beans use ca| +51054|963538|1096|4|10|16014.90|0.10|0.07|N|O|1995-06-21|1995-06-10|1995-07-21|NONE|SHIP|posits. regular foxes after the slyly re| +51055|200523|524|1|19|27046.69|0.08|0.04|R|F|1993-03-12|1993-02-24|1993-04-09|TAKE BACK RETURN|MAIL|arefully special asympt| +51055|184839|34840|2|20|38476.60|0.09|0.02|R|F|1993-02-26|1993-03-11|1993-03-02|TAKE BACK RETURN|MAIL| requests could haggle along t| +51055|573829|36341|3|42|79917.60|0.02|0.02|A|F|1993-02-22|1993-02-10|1993-03-18|COLLECT COD|MAIL|e furiousl| +51055|336947|11960|4|38|75389.34|0.10|0.03|A|F|1993-03-23|1993-03-01|1993-04-21|TAKE BACK RETURN|REG AIR|thely final packages sl| +51055|54170|4171|5|27|30352.59|0.07|0.02|R|F|1993-02-15|1993-03-28|1993-02-18|COLLECT COD|MAIL|unts wake carefully among t| +51055|429570|29571|6|40|59982.00|0.08|0.05|A|F|1993-02-19|1993-02-05|1993-02-25|NONE|MAIL|uickly according to the blithe| +51080|810411|22928|1|49|64747.13|0.08|0.00|A|F|1994-09-20|1994-09-06|1994-10-08|DELIVER IN PERSON|TRUCK|c pearls affix furiously ac| +51081|439359|26884|1|22|28563.26|0.00|0.00|A|F|1993-05-07|1993-02-22|1993-05-11|COLLECT COD|RAIL|es wake care| +51082|662298|24812|1|25|31506.50|0.09|0.05|R|F|1994-06-02|1994-03-27|1994-06-22|NONE|TRUCK|y bold packages. unusual| +51082|231417|43922|2|14|18877.60|0.03|0.04|A|F|1994-04-16|1994-04-13|1994-04-28|NONE|AIR|refully furiously bold p| +51082|409787|34804|3|41|69567.16|0.03|0.04|R|F|1994-05-14|1994-03-09|1994-05-29|DELIVER IN PERSON|TRUCK|dolphins print blithely acro| +51082|288754|26270|4|13|22655.62|0.02|0.00|A|F|1994-03-19|1994-04-20|1994-03-30|TAKE BACK RETURN|REG AIR| attainmen| +51082|72622|47625|5|2|3189.24|0.07|0.08|A|F|1994-04-18|1994-03-19|1994-04-21|DELIVER IN PERSON|REG AIR|sits sleep ac| +51082|553420|28443|6|45|66303.00|0.10|0.05|R|F|1994-04-19|1994-04-05|1994-05-18|TAKE BACK RETURN|FOB|ress deposits. final, bold asymptotes h| +51082|318249|30756|7|2|2534.46|0.10|0.06|A|F|1994-05-27|1994-04-27|1994-06-16|NONE|SHIP|oze furiously. unusual instructions dou| +51083|794288|19319|1|20|27645.00|0.07|0.08|A|F|1995-01-06|1994-12-04|1995-01-08|COLLECT COD|TRUCK|endencies. bravely unusual de| +51083|583687|46199|2|14|24789.24|0.09|0.05|R|F|1995-01-12|1995-01-15|1995-02-02|NONE|RAIL|lly according to the platelets. ironic, fin| +51083|22499|47500|3|21|29851.29|0.00|0.08|R|F|1994-12-16|1995-01-20|1995-01-09|TAKE BACK RETURN|AIR|riously bo| +51083|127509|15016|4|15|23047.50|0.08|0.05|R|F|1995-02-09|1994-12-18|1995-02-28|TAKE BACK RETURN|AIR|encies are about the quic| +51083|42133|4634|5|27|29028.51|0.02|0.01|R|F|1995-01-11|1994-12-02|1995-01-16|COLLECT COD|TRUCK|c ideas use over the carefully | +51083|119459|31962|6|38|56181.10|0.05|0.01|R|F|1994-12-24|1995-01-06|1995-01-02|NONE|AIR| ironic instructi| +51084|330313|30314|1|13|17462.90|0.05|0.04|N|O|1995-10-06|1995-08-30|1995-10-27|TAKE BACK RETURN|FOB|ongside of the busily unusual asymptotes. i| +51084|555808|30831|2|7|13046.46|0.03|0.06|N|O|1995-10-30|1995-09-21|1995-11-06|TAKE BACK RETURN|MAIL|blithely final th| +51084|462326|12327|3|28|36072.40|0.01|0.04|N|O|1995-11-17|1995-09-20|1995-12-02|DELIVER IN PERSON|SHIP|ccounts. final, special deposits sleep | +51085|279096|16612|1|10|10750.80|0.04|0.05|A|F|1994-03-16|1993-12-29|1994-04-10|TAKE BACK RETURN|TRUCK|eans might dazzle ca| +51085|763014|13015|2|27|29078.46|0.08|0.05|A|F|1994-01-05|1993-12-17|1994-01-08|COLLECT COD|MAIL|symptotes cajo| +51085|962685|243|3|50|87382.00|0.10|0.00|A|F|1994-02-15|1994-01-12|1994-02-20|NONE|TRUCK| cajole quickly slyly ex| +51085|839441|39442|4|50|69020.00|0.09|0.02|A|F|1993-11-18|1994-02-03|1993-11-20|NONE|RAIL|old asymptotes. quickly ironic d| +51085|475902|921|5|20|37557.60|0.02|0.06|A|F|1994-01-10|1994-01-25|1994-02-08|NONE|AIR|s. express, bu| +51085|474470|11998|6|33|47666.85|0.03|0.06|R|F|1994-02-03|1993-12-20|1994-02-05|DELIVER IN PERSON|REG AIR| among the iro| +51085|402608|40133|7|22|33232.76|0.05|0.08|R|F|1994-03-07|1994-01-20|1994-03-19|COLLECT COD|RAIL|ic pinto bean| +51086|629180|16717|1|29|32165.35|0.01|0.00|R|F|1993-09-02|1993-07-15|1993-09-23|NONE|REG AIR|d across the regular platelets-- | +51086|626703|26704|2|15|24445.05|0.01|0.03|A|F|1993-09-13|1993-08-19|1993-09-14|DELIVER IN PERSON|RAIL|le. slyly fin| +51086|987241|24799|3|20|26564.00|0.00|0.06|R|F|1993-07-15|1993-06-29|1993-08-12|TAKE BACK RETURN|RAIL|unusual, bold ideas. even accoun| +51086|549977|12488|4|21|42565.95|0.00|0.02|R|F|1993-07-20|1993-07-05|1993-08-02|TAKE BACK RETURN|SHIP|lar foxes across the | +51086|460139|22649|5|9|9891.99|0.10|0.06|R|F|1993-09-09|1993-08-11|1993-10-09|TAKE BACK RETURN|RAIL|ly final deposits? final, exp| +51086|546353|21374|6|9|12593.97|0.00|0.07|A|F|1993-06-19|1993-07-23|1993-06-27|TAKE BACK RETURN|SHIP|pearls sleep. unusu| +51086|539821|14842|7|12|22329.60|0.06|0.04|R|F|1993-08-17|1993-08-06|1993-08-25|COLLECT COD|SHIP|sly slyly careful deposits. slyly ir| +51087|771126|33642|1|25|29927.25|0.09|0.02|R|F|1993-11-29|1993-12-13|1993-12-11|DELIVER IN PERSON|RAIL|quests among the theodolites | +51087|312751|12752|2|35|61730.90|0.00|0.00|R|F|1994-01-30|1993-11-19|1994-02-20|TAKE BACK RETURN|MAIL|ing to the attainments. ex| +51087|399937|12445|3|5|10184.60|0.04|0.04|R|F|1993-12-26|1993-12-27|1994-01-13|DELIVER IN PERSON|TRUCK|unusual accounts. quickly stealthy packag| +51087|726545|1574|4|26|40859.26|0.06|0.05|R|F|1993-11-29|1993-12-25|1993-12-12|NONE|TRUCK|lithely pending account| +51087|34824|9825|5|16|28141.12|0.05|0.00|R|F|1993-11-01|1993-11-23|1993-11-02|TAKE BACK RETURN|TRUCK|oxes play furiously carefully ironic | +51087|280735|30736|6|43|73775.96|0.05|0.06|A|F|1993-12-25|1993-12-02|1994-01-21|COLLECT COD|MAIL|es haggle above the enticingly| +51112|285038|47544|1|46|47058.92|0.04|0.05|A|F|1994-10-15|1994-09-03|1994-10-16|NONE|REG AIR|ide of the ideas. unusu| +51112|620755|45780|2|11|18432.92|0.01|0.06|R|F|1994-10-28|1994-10-17|1994-11-19|COLLECT COD|TRUCK|posits engage s| +51112|16894|16895|3|30|54326.70|0.05|0.01|R|F|1994-08-20|1994-09-27|1994-09-17|COLLECT COD|MAIL|ar, regula| +51113|473707|23708|1|22|36974.96|0.10|0.01|A|F|1992-11-05|1992-11-13|1992-12-02|DELIVER IN PERSON|REG AIR|the fluffily even requests. bli| +51113|590286|15309|2|20|27525.20|0.01|0.03|R|F|1992-10-23|1992-11-05|1992-11-07|COLLECT COD|AIR|en ideas. blithely iro| +51114|169442|31946|1|16|24183.04|0.05|0.07|R|F|1992-08-27|1992-09-07|1992-09-18|NONE|RAIL| deposits after the fluff| +51114|798913|11429|2|44|88522.72|0.00|0.08|R|F|1992-11-09|1992-09-20|1992-11-10|TAKE BACK RETURN|FOB|ickly enticing deposits. carefu| +51114|324727|12246|3|8|14013.68|0.03|0.00|A|F|1992-10-07|1992-10-23|1992-10-26|TAKE BACK RETURN|SHIP|ts boost carefully final deposits. care| +51114|678900|16440|4|13|24425.31|0.10|0.08|A|F|1992-10-17|1992-09-15|1992-11-15|COLLECT COD|RAIL|ual packages sleep. deposits cajol| +51114|270438|7954|5|15|21126.30|0.03|0.02|R|F|1992-08-11|1992-10-21|1992-08-31|TAKE BACK RETURN|RAIL|arefully silent requests. carefu| +51114|246907|21916|6|26|48201.14|0.00|0.02|A|F|1992-10-13|1992-09-24|1992-10-23|DELIVER IN PERSON|SHIP|ar requests sleep along t| +51114|764699|14700|7|37|65255.42|0.09|0.08|A|F|1992-10-30|1992-10-30|1992-11-18|DELIVER IN PERSON|TRUCK|e across the carefully | +51115|281181|18697|1|26|30216.42|0.08|0.03|N|O|1996-08-20|1996-07-17|1996-09-05|DELIVER IN PERSON|SHIP|l asymptotes. ironic, pen| +51115|805942|30975|2|35|64676.50|0.04|0.03|N|O|1996-06-24|1996-08-13|1996-06-30|NONE|AIR|ong the slyly ironic re| +51115|459834|47362|3|21|37670.01|0.08|0.08|N|O|1996-06-12|1996-08-22|1996-06-20|COLLECT COD|AIR|lites. slyly ironic asymptotes a| +51115|427414|39923|4|30|40241.70|0.06|0.08|N|O|1996-09-16|1996-09-01|1996-09-23|TAKE BACK RETURN|MAIL|lithely final| +51116|62333|49837|1|14|18134.62|0.10|0.00|N|O|1995-10-14|1995-11-06|1995-10-15|DELIVER IN PERSON|TRUCK|ounts cajole slyly. final packages| +51117|986330|11369|1|6|8497.74|0.06|0.01|A|F|1994-04-29|1994-03-07|1994-04-30|TAKE BACK RETURN|REG AIR|nic theodoli| +51117|242898|42899|2|27|49703.76|0.10|0.03|R|F|1994-05-15|1994-02-22|1994-06-02|TAKE BACK RETURN|REG AIR|iously regular ideas. dinos serve | +51117|381804|44312|3|39|73545.81|0.03|0.04|R|F|1994-02-16|1994-04-05|1994-03-10|TAKE BACK RETURN|REG AIR|s instructions wake carefully abo| +51117|966623|41662|4|29|48997.82|0.02|0.01|A|F|1994-04-28|1994-03-08|1994-04-30|NONE|FOB|riously express tithes lose carefully blit| +51117|17701|30202|5|40|64748.00|0.08|0.07|A|F|1994-04-17|1994-03-05|1994-05-01|TAKE BACK RETURN|TRUCK|nusual, perm| +51117|494110|31638|6|25|27602.25|0.06|0.04|R|F|1994-02-02|1994-04-06|1994-02-08|DELIVER IN PERSON|RAIL|es affix: blithely bold | +51118|940027|15064|1|47|50148.06|0.06|0.03|A|F|1995-04-04|1995-03-23|1995-04-09|TAKE BACK RETURN|RAIL| the slyly sp| +51118|31894|44395|2|12|21910.68|0.08|0.08|A|F|1995-05-12|1995-03-16|1995-05-23|DELIVER IN PERSON|FOB|ully final excuses. blithely ironic ideas | +51118|28211|40712|3|44|50125.24|0.10|0.01|R|F|1995-04-30|1995-04-17|1995-05-29|DELIVER IN PERSON|RAIL|he quickly even asymptotes boost carefully| +51119|707673|32702|1|38|63864.32|0.06|0.04|N|O|1998-08-16|1998-06-09|1998-08-21|DELIVER IN PERSON|SHIP|y bold asymptotes. care| +51119|846557|34106|2|24|36084.24|0.05|0.05|N|O|1998-06-27|1998-06-15|1998-07-06|TAKE BACK RETURN|SHIP|ending, bold packages. quickly bold account| +51119|72200|22201|3|45|52749.00|0.08|0.02|N|O|1998-08-31|1998-06-10|1998-09-14|NONE|RAIL|e after the sl| +51119|459567|34586|4|35|53428.90|0.01|0.00|N|O|1998-05-24|1998-07-20|1998-06-07|COLLECT COD|REG AIR|nal packages are abou| +51119|940924|15961|5|19|37332.72|0.07|0.02|N|O|1998-05-12|1998-07-10|1998-05-13|TAKE BACK RETURN|TRUCK|usly final pinto beans wake blithely ab| +51119|107829|45336|6|50|91841.00|0.06|0.08|N|O|1998-07-12|1998-07-09|1998-07-18|DELIVER IN PERSON|TRUCK|e furiously special deposits. | +51144|667439|17440|1|48|67507.20|0.01|0.00|N|O|1998-02-11|1997-12-12|1998-02-22|NONE|RAIL|onically after the u| +51144|645185|7698|2|38|42945.70|0.00|0.00|N|O|1997-11-07|1998-01-17|1997-12-02|TAKE BACK RETURN|RAIL| among the furiously final hockey players| +51144|613818|26331|3|37|64075.86|0.10|0.04|N|O|1997-12-02|1998-02-02|1997-12-22|COLLECT COD|TRUCK|to beans nod against the iro| +51144|424630|49647|4|30|46638.30|0.04|0.00|N|O|1998-02-07|1997-12-12|1998-02-17|DELIVER IN PERSON|REG AIR|haggle fluf| +51144|751887|14403|5|9|17449.65|0.04|0.02|N|O|1998-02-23|1998-01-07|1998-03-17|NONE|REG AIR|thely after the regular, regular acc| +51144|950660|13180|6|28|47897.36|0.03|0.04|N|O|1997-11-16|1998-01-15|1997-11-27|NONE|MAIL|n packages haggle furiousl| +51144|738763|13792|7|13|23422.49|0.09|0.06|N|O|1998-03-03|1997-12-23|1998-03-08|TAKE BACK RETURN|REG AIR|ly. express accounts use across the | +51145|385018|22540|1|38|41914.00|0.00|0.03|N|O|1997-01-24|1997-04-11|1997-01-31|NONE|FOB|egular pinto beans nag slyly quick| +51145|992793|17832|2|6|11314.50|0.02|0.08|N|O|1997-01-28|1997-03-13|1997-02-23|DELIVER IN PERSON|RAIL|oxes. furiously fi| +51145|865343|15344|3|41|53640.30|0.00|0.00|N|O|1997-03-27|1997-04-10|1997-04-19|NONE|AIR|ly bold depos| +51145|815728|3277|4|35|57528.80|0.00|0.01|N|O|1997-04-04|1997-04-16|1997-04-28|DELIVER IN PERSON|MAIL|to beans sleep quickly about the ironic f| +51146|483178|45688|1|10|11611.50|0.00|0.03|A|F|1995-05-09|1995-07-22|1995-05-13|COLLECT COD|TRUCK|lar theodolites. regularly ironic foxes a| +51146|767985|17986|2|32|65694.40|0.10|0.04|N|O|1995-07-22|1995-07-09|1995-07-24|COLLECT COD|AIR|totes. carefully even pinto beans breac| +51146|518709|43730|3|45|77745.60|0.07|0.06|A|F|1995-05-15|1995-05-28|1995-06-13|TAKE BACK RETURN|MAIL|ole about the special asymptotes.| +51146|940895|28450|4|50|96792.50|0.06|0.04|N|F|1995-06-05|1995-06-16|1995-07-05|DELIVER IN PERSON|SHIP|orbits integrate quickl| +51146|617616|5153|5|30|46007.40|0.03|0.06|A|F|1995-05-16|1995-07-03|1995-06-01|TAKE BACK RETURN|MAIL|c excuses? blithely special p| +51146|268613|43624|6|21|33213.60|0.02|0.00|N|O|1995-07-29|1995-06-15|1995-08-14|NONE|AIR|old, regular asymptotes b| +51146|572478|34990|7|41|63568.45|0.03|0.06|N|O|1995-06-19|1995-07-02|1995-07-15|DELIVER IN PERSON|SHIP|s. requests integra| +51147|635522|48035|1|11|16032.39|0.00|0.04|N|O|1996-02-19|1996-01-16|1996-02-21|TAKE BACK RETURN|AIR|blithely unusual r| +51147|205135|17640|2|30|31203.60|0.06|0.03|N|O|1996-02-20|1995-12-30|1996-03-06|NONE|FOB|nts sleep slyly a| +51148|956667|44225|1|33|56879.46|0.04|0.04|N|O|1996-01-05|1996-01-21|1996-01-06|DELIVER IN PERSON|FOB|sits haggle carefully against the ironic| +51148|701462|13977|2|31|45366.33|0.10|0.07|N|O|1995-11-05|1995-12-08|1995-12-05|COLLECT COD|TRUCK|sly regular courts kindle furiousl| +51148|470308|45327|3|27|34513.56|0.08|0.01|N|O|1996-02-08|1995-12-02|1996-03-08|NONE|RAIL|fily even deposits integrate | +51149|584394|34395|1|32|47307.84|0.09|0.08|N|O|1995-10-19|1995-11-23|1995-10-31|NONE|SHIP|e silent ideas. regular d| +51149|896009|33561|2|39|39193.44|0.00|0.07|N|O|1995-09-28|1995-11-18|1995-10-22|NONE|SHIP|refully final foxes doubt blithel| +51150|695781|20808|1|16|28428.00|0.05|0.00|R|F|1992-10-31|1992-10-13|1992-11-09|TAKE BACK RETURN|RAIL|y regular requests detect slyly a| +51150|986122|11161|2|12|14496.96|0.00|0.05|A|F|1992-10-31|1992-09-05|1992-11-16|DELIVER IN PERSON|AIR|ress pinto bea| +51150|752408|39954|3|19|27747.03|0.08|0.07|A|F|1992-09-09|1992-09-13|1992-09-22|COLLECT COD|MAIL|es. accounts engage afte| +51150|712132|24647|4|25|28602.50|0.10|0.06|A|F|1992-09-17|1992-09-23|1992-09-28|COLLECT COD|SHIP|fily final foxes. quickly regular deposit| +51150|793372|30918|5|5|7326.70|0.03|0.00|A|F|1992-08-07|1992-09-27|1992-08-18|DELIVER IN PERSON|FOB|al asymptotes haggle | +51151|665049|27563|1|27|27378.27|0.10|0.03|N|O|1998-04-19|1998-05-17|1998-05-03|COLLECT COD|AIR|unts. express ideas boost behind the | +51151|464597|2125|2|13|20300.41|0.06|0.06|N|O|1998-05-19|1998-05-06|1998-06-04|NONE|MAIL|ward the furiou| +51151|477953|40463|3|41|79168.13|0.07|0.03|N|O|1998-06-08|1998-05-14|1998-06-13|NONE|AIR|haggle about the special depo| +51151|944876|32431|4|45|86437.35|0.09|0.07|N|O|1998-06-15|1998-05-12|1998-06-16|TAKE BACK RETURN|RAIL|ter the carefully ironic de| +51151|515942|3473|5|7|13705.44|0.06|0.06|N|O|1998-04-23|1998-05-12|1998-04-27|COLLECT COD|TRUCK|blithely. ironic accounts nag. furiously| +51151|421019|46036|6|39|36659.61|0.01|0.07|N|O|1998-07-28|1998-05-12|1998-08-06|DELIVER IN PERSON|MAIL|requests use quickly ironic deposits.| +51176|278328|40834|1|40|52252.40|0.10|0.06|R|F|1992-12-06|1992-12-19|1992-12-14|NONE|SHIP| special foxes. slyly fi| +51176|857526|20044|2|30|44504.40|0.01|0.00|R|F|1993-02-06|1993-01-26|1993-02-12|COLLECT COD|AIR| regular instructions use a| +51176|438482|13499|3|44|62500.24|0.05|0.05|R|F|1992-12-09|1993-01-28|1992-12-11|COLLECT COD|TRUCK|mes ironic accounts. final | +51176|553274|15786|4|7|9290.75|0.09|0.05|A|F|1993-02-19|1993-01-19|1993-03-05|DELIVER IN PERSON|FOB| deposits cajole doggedly special, regul| +51176|874613|24614|5|18|28576.26|0.05|0.05|A|F|1992-11-13|1992-12-28|1992-11-17|COLLECT COD|RAIL|boost carefully final deposit| +51176|619158|44183|6|45|48470.40|0.03|0.07|A|F|1992-12-12|1993-01-05|1993-01-04|COLLECT COD|SHIP|packages use fluffi| +51176|178333|15843|7|11|15524.63|0.09|0.01|A|F|1993-01-03|1992-12-10|1993-01-28|NONE|FOB| unusual foxes. furious | +51177|233158|8167|1|42|45827.88|0.01|0.06|R|F|1993-07-22|1993-09-03|1993-08-20|TAKE BACK RETURN|SHIP|tructions sl| +51178|225169|37674|1|7|7659.05|0.07|0.04|N|O|1996-12-26|1997-02-06|1997-01-09|TAKE BACK RETURN|TRUCK|ly regular requests. unus| +51178|413104|25613|2|18|18307.44|0.08|0.04|N|O|1997-02-15|1997-02-17|1997-03-15|COLLECT COD|TRUCK|ely unusual packages are carefully b| +51178|23632|11133|3|29|45113.27|0.10|0.03|N|O|1996-12-18|1997-02-05|1996-12-25|NONE|TRUCK|s will have to use carefully a| +51179|350306|37828|1|10|13562.90|0.00|0.03|N|O|1997-01-30|1997-02-19|1997-02-24|DELIVER IN PERSON|TRUCK|heodolites haggle. slyly| +51180|452851|2852|1|16|28861.28|0.09|0.01|N|O|1998-03-17|1998-06-13|1998-04-14|TAKE BACK RETURN|TRUCK|yly pending pin| +51180|50823|824|2|47|83369.54|0.05|0.06|N|O|1998-04-23|1998-06-03|1998-05-03|COLLECT COD|MAIL|ss the iro| +51180|170333|7843|3|8|11226.64|0.01|0.07|N|O|1998-03-29|1998-05-02|1998-04-18|DELIVER IN PERSON|FOB|es haggle fluffily even pinto beans. dep| +51181|543808|18829|1|44|81478.32|0.05|0.01|N|O|1997-08-28|1997-06-23|1997-08-29|DELIVER IN PERSON|SHIP|e final theodolites. qui| +51181|765880|40911|2|6|11675.10|0.00|0.08|N|O|1997-08-22|1997-07-12|1997-09-03|DELIVER IN PERSON|MAIL|dazzle blithely around the| +51182|422971|10496|1|42|79545.90|0.02|0.02|N|O|1996-05-21|1996-07-13|1996-05-29|NONE|SHIP|sits. carefully pending ideas caj| +51182|871573|46608|2|24|37068.72|0.09|0.01|N|O|1996-06-30|1996-07-06|1996-07-28|COLLECT COD|SHIP| pending packages. blithely express dolphi| +51182|521842|9373|3|27|50323.14|0.06|0.05|N|O|1996-07-27|1996-07-19|1996-08-09|COLLECT COD|REG AIR|arefully according to the fluffily specia| +51183|144888|32395|1|12|23194.56|0.06|0.04|N|O|1996-12-22|1997-01-19|1997-01-16|TAKE BACK RETURN|RAIL|egular requests print | +51183|126624|1629|2|30|49518.60|0.09|0.06|N|O|1997-02-15|1996-12-19|1997-02-21|NONE|AIR|es. ironic theodolites boost en| +51183|165661|40668|3|49|84606.34|0.03|0.03|N|O|1997-01-12|1996-12-10|1997-01-20|COLLECT COD|FOB|. even dependencie| +51183|250227|37743|4|43|50620.03|0.07|0.00|N|O|1997-02-13|1997-01-05|1997-03-06|NONE|FOB|ose fluffily slyly bold| +51208|775525|13071|1|48|76823.52|0.03|0.00|R|F|1994-07-26|1994-08-05|1994-08-25|COLLECT COD|MAIL|ously. even foxes cajole carefully. f| +51208|241246|16255|2|12|14246.76|0.01|0.08|R|F|1994-09-09|1994-08-20|1994-10-01|NONE|TRUCK|s. never bold pack| +51208|606684|19197|3|29|46128.85|0.05|0.05|R|F|1994-08-03|1994-08-20|1994-08-31|DELIVER IN PERSON|REG AIR|e carefully above the bli| +51208|537214|12235|4|13|16265.47|0.08|0.01|A|F|1994-08-20|1994-09-07|1994-09-13|TAKE BACK RETURN|MAIL|ly bold packages. ironic pi| +51208|955683|18203|5|2|3477.28|0.08|0.08|A|F|1994-08-07|1994-07-18|1994-08-14|TAKE BACK RETURN|MAIL| slyly pen| +51208|161174|36181|6|17|20997.89|0.10|0.05|A|F|1994-08-02|1994-07-26|1994-08-13|TAKE BACK RETURN|TRUCK|refully unusual packages wake slyly. furio| +51209|399280|24295|1|50|68963.50|0.06|0.00|N|O|1997-01-31|1997-01-14|1997-02-06|DELIVER IN PERSON|TRUCK| even asympto| +51209|687741|37742|2|20|34574.20|0.05|0.02|N|O|1997-02-16|1997-01-03|1997-03-12|NONE|SHIP|each ironic, regu| +51209|851546|39098|3|5|7487.50|0.10|0.08|N|O|1997-02-17|1996-12-15|1997-02-19|NONE|FOB|ly-- slyly regular| +51209|931175|18730|4|43|51863.59|0.10|0.04|N|O|1997-01-11|1997-01-05|1997-01-13|COLLECT COD|AIR|s the blithely express gifts. blithel| +51209|257263|32274|5|25|30506.25|0.00|0.01|N|O|1996-11-21|1997-01-13|1996-11-24|TAKE BACK RETURN|FOB|. enticingly regular pinto beans h| +51210|326374|26375|1|22|30807.92|0.04|0.08|N|O|1997-05-01|1997-04-27|1997-05-09|DELIVER IN PERSON|AIR|long the sly| +51210|364924|2446|2|15|29833.65|0.05|0.00|N|O|1997-04-27|1997-05-21|1997-05-07|TAKE BACK RETURN|RAIL|theodolites sleep slyly. slyly exp| +51210|273666|23667|3|9|14756.85|0.09|0.01|N|O|1997-04-17|1997-04-25|1997-04-21|NONE|AIR|ng, special deposits! slyly ev| +51210|497937|35465|4|23|44502.93|0.04|0.05|N|O|1997-04-20|1997-06-01|1997-05-18|DELIVER IN PERSON|FOB|haggle against the special reques| +51210|824532|37049|5|6|8738.94|0.08|0.02|N|O|1997-07-11|1997-04-22|1997-08-04|NONE|AIR|lar theodolites| +51210|899311|24346|6|5|6551.35|0.07|0.07|N|O|1997-05-07|1997-06-16|1997-05-26|NONE|REG AIR|ests after the carefull| +51210|715312|40341|7|47|62382.16|0.08|0.07|N|O|1997-05-16|1997-04-26|1997-05-20|NONE|SHIP|odolites among the carefully dogged p| +51211|248076|35589|1|15|15360.90|0.10|0.00|N|O|1998-01-11|1998-01-09|1998-01-28|NONE|TRUCK|alms thrash carefully iron| +51211|408142|20651|2|21|22052.52|0.01|0.03|N|O|1998-03-13|1997-12-19|1998-04-04|NONE|MAIL|ccounts. furiously regular pa| +51212|804735|17252|1|34|55749.46|0.05|0.01|A|F|1995-01-03|1995-01-12|1995-01-14|COLLECT COD|RAIL|st the carefu| +51212|178706|16216|2|43|76742.10|0.09|0.04|R|F|1994-10-18|1994-12-15|1994-10-19|TAKE BACK RETURN|TRUCK|ithely furiously pending requests| +51213|958513|21033|1|4|6285.88|0.05|0.00|R|F|1994-01-02|1993-12-29|1994-01-16|NONE|AIR|s escapades| +51213|726552|14095|2|12|18942.24|0.09|0.03|A|F|1994-01-23|1993-12-26|1994-02-04|DELIVER IN PERSON|SHIP|s could have to are alongside of the blith| +51213|150083|37593|3|20|22661.60|0.01|0.08|R|F|1994-02-04|1993-12-17|1994-03-01|DELIVER IN PERSON|RAIL| even pinto | +51213|437741|250|4|36|60433.92|0.07|0.03|A|F|1994-02-13|1993-12-16|1994-03-14|COLLECT COD|FOB|hes are blithely. carefully eve| +51213|97866|10368|5|12|22366.32|0.08|0.00|A|F|1993-12-22|1994-01-12|1994-01-15|NONE|FOB|ickly ironic accounts across| +51213|825531|564|6|36|52433.64|0.01|0.03|R|F|1993-12-13|1994-01-06|1993-12-28|DELIVER IN PERSON|REG AIR|ackages about t| +51214|628831|16368|1|32|56313.60|0.06|0.08|N|O|1996-11-24|1996-12-29|1996-12-04|NONE|TRUCK|the sly platelets. c| +51215|557459|7460|1|45|68239.35|0.02|0.08|N|O|1995-12-12|1995-11-10|1995-12-31|DELIVER IN PERSON|FOB|carefully even accou| +51215|209763|22268|2|10|16727.50|0.07|0.00|N|O|1995-11-02|1995-10-02|1995-11-09|COLLECT COD|TRUCK|ously unusual packages. blithely ironic d| +51215|486622|11641|3|4|6434.40|0.07|0.01|N|O|1995-09-15|1995-10-27|1995-10-12|TAKE BACK RETURN|TRUCK|ages. accounts according to the furiously | +51240|710359|35388|1|1|1369.32|0.02|0.07|A|F|1992-09-25|1992-07-17|1992-10-01|DELIVER IN PERSON|SHIP|pecial pinto beans cajole. quickly| +51240|994846|32404|2|48|93158.40|0.09|0.04|A|F|1992-06-21|1992-08-07|1992-07-20|TAKE BACK RETURN|REG AIR|heodolites boost closely fluffily i| +51240|372173|22174|3|46|57277.36|0.01|0.01|R|F|1992-06-26|1992-07-23|1992-07-02|DELIVER IN PERSON|MAIL|ar ideas w| +51240|105927|5928|4|17|32859.64|0.10|0.02|A|F|1992-06-18|1992-08-02|1992-07-02|TAKE BACK RETURN|RAIL|ding asympt| +51240|302956|15463|5|3|5876.82|0.07|0.00|R|F|1992-09-03|1992-07-09|1992-09-13|TAKE BACK RETURN|AIR|y final theodolites| +51240|780978|6009|6|19|39119.86|0.08|0.02|R|F|1992-08-23|1992-07-01|1992-09-06|NONE|REG AIR|ole slyly slyly bold id| +51240|886050|36051|7|5|5180.05|0.09|0.06|R|F|1992-06-10|1992-06-27|1992-06-12|DELIVER IN PERSON|RAIL|slyly. ironic, silent instructions eat | +51241|826781|39298|1|2|3415.48|0.02|0.06|N|O|1997-06-03|1997-07-10|1997-07-03|TAKE BACK RETURN|AIR|he furiously bold somas! slyly pend| +51241|691972|41973|2|26|51062.44|0.04|0.00|N|O|1997-06-14|1997-07-19|1997-07-01|DELIVER IN PERSON|FOB|yly special requests. even re| +51241|962024|24544|3|47|51041.06|0.06|0.00|N|O|1997-07-07|1997-08-27|1997-08-05|NONE|AIR|dependencies cajole alongside o| +51242|901902|1903|1|33|62827.38|0.09|0.01|R|F|1992-09-26|1992-10-06|1992-10-06|TAKE BACK RETURN|AIR|ress Tiresias. quickly | +51242|265340|2856|2|20|26106.60|0.09|0.07|A|F|1992-09-28|1992-11-13|1992-10-16|COLLECT COD|FOB| ruthless, ironic requests | +51242|558644|8645|3|3|5107.86|0.07|0.03|A|F|1992-12-04|1992-11-04|1992-12-18|COLLECT COD|AIR|hely regular packages| +51242|113629|38634|4|48|78845.76|0.03|0.01|A|F|1992-10-16|1992-09-27|1992-10-25|NONE|FOB|e boldly brave depths. entici| +51243|523472|11003|1|17|25422.65|0.05|0.00|N|O|1995-12-13|1996-01-01|1995-12-17|DELIVER IN PERSON|FOB|ly furiously ironic instru| +51243|984688|9727|2|20|35452.80|0.06|0.03|N|O|1996-02-27|1995-12-24|1996-03-18|COLLECT COD|RAIL|e furiously final deposit| +51244|110094|10095|1|18|19873.62|0.00|0.03|N|O|1996-02-13|1996-03-04|1996-02-14|NONE|MAIL|al tithes above the carefully ironic pack| +51245|967550|42589|1|29|46907.79|0.09|0.01|A|F|1994-06-13|1994-03-19|1994-06-15|NONE|FOB|c requests. regular wa| +51245|611108|36133|2|16|16305.12|0.05|0.07|A|F|1994-05-15|1994-05-04|1994-06-01|TAKE BACK RETURN|TRUCK|bout the slyly eve| +51245|882424|19976|3|20|28127.60|0.06|0.02|R|F|1994-05-24|1994-05-02|1994-06-23|COLLECT COD|TRUCK|s cajole regul| +51245|891961|41962|4|9|17576.28|0.03|0.03|A|F|1994-02-19|1994-05-07|1994-03-08|COLLECT COD|AIR|lyly slyly| +51246|722489|47518|1|13|19648.85|0.06|0.02|A|F|1994-11-07|1994-11-19|1994-11-24|TAKE BACK RETURN|RAIL|k requests among the fl| +51246|856379|18897|2|35|46736.55|0.10|0.05|R|F|1994-09-11|1994-10-06|1994-10-10|DELIVER IN PERSON|TRUCK| are boldly beyond the caref| +51246|150011|37521|3|23|24403.23|0.08|0.03|R|F|1994-09-12|1994-10-20|1994-09-16|DELIVER IN PERSON|MAIL| blithely according| +51246|229044|29045|4|10|9730.30|0.01|0.04|A|F|1994-09-15|1994-11-12|1994-10-01|COLLECT COD|MAIL|egular requests! | +51246|533403|20934|5|14|20109.32|0.00|0.06|R|F|1994-11-06|1994-11-15|1994-12-01|COLLECT COD|MAIL|equests cajole fluffily. slyly unusual pa| +51247|589452|26986|1|27|41618.61|0.04|0.01|A|F|1995-01-14|1995-03-09|1995-02-04|TAKE BACK RETURN|FOB|ang slyly re| +51247|918358|30877|2|29|39912.99|0.03|0.06|R|F|1995-01-02|1995-03-17|1995-01-13|NONE|TRUCK|ts are carefully. pendi| +51247|837333|12366|3|20|25405.80|0.09|0.05|A|F|1995-03-16|1995-03-18|1995-03-25|NONE|AIR|y. thin requests sleep alongs| +51247|54185|41689|4|21|23922.78|0.06|0.01|R|F|1995-04-19|1995-02-09|1995-04-28|DELIVER IN PERSON|RAIL|ounts. carefully final de| +51247|679912|42426|5|27|51080.76|0.05|0.00|R|F|1995-02-07|1995-03-06|1995-03-06|COLLECT COD|SHIP| after the carefully fi| +51272|412373|12374|1|15|19280.25|0.09|0.03|N|O|1997-04-19|1997-03-02|1997-05-01|DELIVER IN PERSON|TRUCK|nstructions. final, express theodolites b| +51273|380672|18194|1|38|66601.08|0.07|0.04|A|F|1992-09-12|1992-07-20|1992-09-22|DELIVER IN PERSON|MAIL|across the| +51273|946526|9045|2|36|56609.28|0.07|0.02|A|F|1992-07-06|1992-08-19|1992-07-29|COLLECT COD|SHIP|uffily carefully regula| +51273|255764|43280|3|20|34395.00|0.06|0.04|A|F|1992-06-27|1992-07-22|1992-07-14|DELIVER IN PERSON|MAIL|. requests are according| +51274|473299|10827|1|4|5089.08|0.01|0.02|N|O|1998-09-08|1998-08-15|1998-10-08|DELIVER IN PERSON|MAIL|sts sleep quickly. blithely| +51274|726208|13751|2|40|49366.80|0.05|0.06|N|O|1998-09-20|1998-08-06|1998-09-28|TAKE BACK RETURN|SHIP|nic requests| +51274|371405|8927|3|32|47244.48|0.00|0.07|N|O|1998-08-28|1998-09-29|1998-09-12|COLLECT COD|SHIP|ly ironic | +51275|924014|24015|1|15|15569.55|0.05|0.03|N|O|1997-04-09|1997-05-23|1997-04-18|DELIVER IN PERSON|SHIP|ully unusual dependencies against | +51275|893307|18342|2|49|63712.74|0.08|0.06|N|O|1997-05-03|1997-05-07|1997-05-09|DELIVER IN PERSON|AIR|e courts affix along the theodolite| +51276|984504|47024|1|29|46065.34|0.01|0.05|N|O|1997-11-11|1997-12-02|1997-11-21|NONE|REG AIR|fluffily busy p| +51276|546234|21255|2|47|60169.87|0.09|0.08|N|O|1997-10-17|1997-12-16|1997-10-22|DELIVER IN PERSON|RAIL|c requests according to | +51276|553771|41305|3|37|67515.75|0.10|0.04|N|O|1998-01-27|1997-12-18|1998-02-26|COLLECT COD|SHIP|s haggle thinly across t| +51277|75865|25866|1|24|44180.64|0.00|0.03|N|O|1996-12-04|1996-10-13|1996-12-21|NONE|FOB|e regular | +51277|50746|13248|2|49|83140.26|0.07|0.00|N|O|1996-08-23|1996-09-07|1996-09-18|DELIVER IN PERSON|SHIP|tegrate fluf| +51277|872275|9827|3|38|47394.74|0.01|0.02|N|O|1996-11-23|1996-10-04|1996-11-24|COLLECT COD|MAIL| final, express accounts haggle s| +51278|630041|5066|1|8|7768.08|0.05|0.01|R|F|1994-07-01|1994-07-19|1994-07-03|DELIVER IN PERSON|TRUCK| final requests eat. furiousl| +51278|86969|11972|2|30|58678.80|0.00|0.01|A|F|1994-09-03|1994-07-29|1994-09-09|NONE|TRUCK|ng platelets. packages | +51278|676899|1926|3|34|63779.24|0.01|0.02|R|F|1994-07-27|1994-08-30|1994-08-10|NONE|SHIP|fily even packages wake bold fo| +51278|633846|33847|4|31|55174.11|0.07|0.05|R|F|1994-10-12|1994-08-01|1994-11-05|DELIVER IN PERSON|FOB|g the bold, final requests solve asympto| +51278|37985|486|5|46|88457.08|0.09|0.08|R|F|1994-09-16|1994-07-30|1994-10-15|DELIVER IN PERSON|SHIP|y unusual accounts wake furiously.| +51278|408281|8282|6|35|41624.10|0.10|0.04|A|F|1994-08-04|1994-08-18|1994-08-16|COLLECT COD|FOB|ounts about the carefully final requests| +51279|3561|28562|1|46|67369.76|0.00|0.07|N|O|1995-07-11|1995-07-23|1995-07-28|DELIVER IN PERSON|SHIP| dependencies nag bli| +51304|891900|16935|1|6|11351.16|0.06|0.01|A|F|1994-07-17|1994-06-01|1994-07-30|DELIVER IN PERSON|RAIL| fluffily across the carefully unusua| +51305|754639|17155|1|21|35565.60|0.00|0.07|N|O|1996-03-25|1996-03-06|1996-04-12|TAKE BACK RETURN|FOB|lar theodolites. furiously even accou| +51305|203916|16421|2|5|9099.50|0.02|0.06|N|O|1996-02-26|1996-02-19|1996-03-26|NONE|TRUCK|oach carefull| +51305|201355|26364|3|24|30152.16|0.08|0.02|N|O|1996-01-29|1996-03-18|1996-01-31|COLLECT COD|SHIP|t fluffily regular| +51305|168792|6302|4|19|35355.01|0.07|0.08|N|O|1996-03-25|1996-03-25|1996-03-29|COLLECT COD|RAIL|nal, pending ideas a| +51305|873701|11253|5|4|6698.64|0.09|0.01|N|O|1996-04-15|1996-03-11|1996-05-05|TAKE BACK RETURN|REG AIR|braids wake qui| +51306|77430|39932|1|43|60519.49|0.06|0.04|N|O|1996-02-08|1996-03-01|1996-02-27|COLLECT COD|TRUCK|nal ideas wake quickly ac| +51306|354609|29624|2|18|29944.62|0.06|0.05|N|O|1996-01-01|1996-03-05|1996-01-31|TAKE BACK RETURN|RAIL|regular, pending foxes. fluf| +51306|907503|7504|3|11|16615.06|0.05|0.01|N|O|1996-04-12|1996-03-12|1996-05-05|COLLECT COD|RAIL|ely final ideas sho| +51306|396221|46222|4|39|51371.19|0.02|0.00|N|O|1996-01-10|1996-03-24|1996-01-19|TAKE BACK RETURN|AIR|ach. even, special ideas are slyly about| +51306|283294|8305|5|1|1277.28|0.00|0.06|N|O|1996-04-01|1996-02-14|1996-04-26|NONE|TRUCK|ss sentiments.| +51306|321403|46416|6|14|19941.46|0.09|0.00|N|O|1996-04-06|1996-03-10|1996-05-03|TAKE BACK RETURN|TRUCK|wake quickly final depos| +51306|814018|39051|7|15|13979.55|0.05|0.03|N|O|1996-03-18|1996-03-20|1996-04-16|TAKE BACK RETURN|FOB|sits sleep slyly final account| +51307|197925|22932|1|22|44504.24|0.02|0.02|A|F|1992-12-31|1993-03-10|1993-01-21|NONE|RAIL|es. blithely bold deposits | +51308|377852|2867|1|8|15438.72|0.00|0.02|R|F|1995-03-06|1995-04-12|1995-03-23|TAKE BACK RETURN|AIR|ests. carefully ironic platelets w| +51308|551184|1185|2|47|58052.52|0.06|0.06|N|F|1995-06-09|1995-04-22|1995-07-04|NONE|RAIL|ts nag packages. deposits sleep | +51308|746824|9339|3|32|59865.28|0.01|0.02|N|F|1995-06-17|1995-05-15|1995-07-04|DELIVER IN PERSON|FOB|s. furiously ironi| +51308|857772|45324|4|25|43243.25|0.04|0.06|N|F|1995-06-12|1995-04-25|1995-06-20|TAKE BACK RETURN|MAIL|he blithely rut| +51308|561851|11852|5|50|95641.50|0.00|0.01|R|F|1995-05-19|1995-04-12|1995-05-24|NONE|AIR|carefully agai| +51309|193063|43064|1|4|4624.24|0.06|0.08|N|O|1997-05-12|1997-05-06|1997-05-24|COLLECT COD|MAIL|posits sleep about the b| +51309|793967|43968|2|27|55645.11|0.09|0.03|N|O|1997-05-06|1997-05-13|1997-05-25|TAKE BACK RETURN|FOB| even ideas according to the final foxes ha| +51309|194230|31740|3|26|34429.98|0.04|0.01|N|O|1997-04-01|1997-06-03|1997-04-02|COLLECT COD|FOB|ily even platelets daz| +51309|418525|43542|4|29|41861.50|0.01|0.03|N|O|1997-04-21|1997-04-25|1997-04-28|NONE|REG AIR|kly pending dependencies. | +51310|304760|17267|1|16|28236.00|0.10|0.07|R|F|1995-05-26|1995-05-18|1995-06-06|COLLECT COD|FOB|ise among the furio| +51310|90338|2840|2|36|47819.88|0.04|0.07|A|F|1995-04-15|1995-05-18|1995-04-17|NONE|FOB|onic, ironic deposits can was | +51311|293626|43627|1|12|19435.32|0.01|0.00|A|F|1992-08-30|1992-08-17|1992-09-17|COLLECT COD|FOB|efully pending deposits above the si| +51336|966270|28790|1|31|41423.13|0.01|0.06|R|F|1994-03-14|1994-03-01|1994-03-31|DELIVER IN PERSON|SHIP|ts cajole carefully after the express dep| +51336|97561|35065|2|8|12468.48|0.02|0.08|R|F|1994-01-06|1994-02-28|1994-01-14|NONE|AIR|al dependencies. | +51336|707336|7337|3|36|48358.80|0.09|0.03|R|F|1994-01-11|1994-04-01|1994-02-05|COLLECT COD|REG AIR|ajole. furiously ironic| +51336|179624|4631|4|32|54515.84|0.00|0.02|R|F|1994-03-10|1994-03-22|1994-04-09|DELIVER IN PERSON|RAIL|e. slyly special asymptot| +51336|927486|27487|5|15|22701.60|0.04|0.06|R|F|1994-02-17|1994-02-16|1994-03-10|COLLECT COD|FOB| ideas. furiously regular reque| +51336|246662|9167|6|2|3217.30|0.00|0.03|R|F|1994-03-28|1994-03-18|1994-04-25|TAKE BACK RETURN|TRUCK|lites haggle sly| +51336|636101|23638|7|23|23852.61|0.01|0.08|A|F|1994-01-07|1994-03-21|1994-02-02|NONE|TRUCK|uickly among the fluffily e| +51337|941029|41030|1|6|6419.88|0.00|0.02|N|F|1995-06-15|1995-04-29|1995-07-13|COLLECT COD|MAIL|ckages haggle carefully after the quickl| +51337|863956|38991|2|41|78716.31|0.03|0.07|R|F|1995-04-02|1995-04-01|1995-04-13|TAKE BACK RETURN|FOB|ithely special somas | +51337|507642|32663|3|37|61035.94|0.04|0.07|A|F|1995-05-28|1995-05-05|1995-06-10|TAKE BACK RETURN|MAIL|ic ideas c| +51337|923265|48302|4|42|54105.24|0.10|0.03|A|F|1995-03-31|1995-04-18|1995-04-18|COLLECT COD|RAIL|ts. furiousl| +51337|313687|1206|5|29|49319.43|0.10|0.08|R|F|1995-04-18|1995-04-07|1995-05-05|COLLECT COD|RAIL|beans nag slyly. courts hang special pl| +51337|123152|10659|6|44|51706.60|0.06|0.05|A|F|1995-04-03|1995-04-08|1995-04-21|COLLECT COD|AIR|ccording to the special pac| +51338|905141|17660|1|14|16045.40|0.09|0.01|N|O|1996-02-17|1996-03-28|1996-02-29|TAKE BACK RETURN|AIR|carefully regula| +51338|689019|1533|2|27|27215.46|0.02|0.00|N|O|1996-05-30|1996-03-29|1996-06-03|TAKE BACK RETURN|AIR|ns wake blith| +51338|342083|17096|3|13|14625.91|0.00|0.06|N|O|1996-02-07|1996-03-13|1996-02-12|DELIVER IN PERSON|FOB|lar deposits are quickly ca| +51339|421541|9066|1|32|46800.64|0.07|0.05|R|F|1994-01-03|1994-01-29|1994-01-12|COLLECT COD|MAIL|nt requests-- multipliers grow | +51339|835212|22761|2|47|53916.99|0.00|0.07|R|F|1994-03-16|1994-02-12|1994-04-03|NONE|MAIL|ideas alongside of the daringly sile| +51339|403821|41346|3|39|67267.20|0.05|0.04|A|F|1994-01-25|1994-02-08|1994-02-08|DELIVER IN PERSON|SHIP|iously pendin| +51339|8874|33875|4|23|41006.01|0.09|0.00|R|F|1994-03-03|1994-01-06|1994-03-22|COLLECT COD|TRUCK|ges across the | +51339|133196|33197|5|46|56542.74|0.01|0.03|A|F|1994-03-17|1994-02-03|1994-04-02|DELIVER IN PERSON|SHIP|theodolites boost sl| +51339|622920|10457|6|7|12900.23|0.04|0.06|A|F|1994-02-26|1994-01-15|1994-02-28|DELIVER IN PERSON|AIR|accounts are slyly slyly special asymp| +51340|625481|506|1|22|30941.90|0.02|0.08|A|F|1993-02-16|1992-12-28|1993-03-06|COLLECT COD|SHIP|integrate car| +51341|840529|15562|1|19|27920.12|0.04|0.01|N|O|1996-01-13|1996-02-04|1996-02-12|DELIVER IN PERSON|MAIL|ongside of the | +51341|760774|10775|2|6|11008.44|0.05|0.06|N|O|1996-03-18|1996-02-20|1996-04-17|DELIVER IN PERSON|AIR|inal ideas haggle carefu| +51342|639553|39554|1|46|68655.92|0.09|0.03|A|F|1993-07-29|1993-08-04|1993-08-10|TAKE BACK RETURN|RAIL| beans. caref| +51342|959994|22514|2|41|84211.95|0.01|0.06|R|F|1993-06-15|1993-08-16|1993-06-28|TAKE BACK RETURN|MAIL|special requests affix. sil| +51342|608051|8052|3|11|10549.22|0.03|0.00|A|F|1993-07-11|1993-08-23|1993-07-17|COLLECT COD|FOB|ithely pending frays cajole theodoli| +51343|101524|1525|1|1|1525.52|0.06|0.01|N|O|1996-02-01|1995-11-27|1996-02-20|NONE|REG AIR|s cajole final, special f| +51343|308165|45684|2|12|14077.80|0.06|0.06|N|O|1995-11-12|1995-12-19|1995-11-25|TAKE BACK RETURN|REG AIR|ular pinto beans | +51368|91974|16977|1|20|39319.40|0.06|0.08|N|O|1997-11-17|1997-10-21|1997-11-26|NONE|FOB|iously furiously final foxes. final foxes | +51368|796383|46384|2|41|60653.35|0.04|0.05|N|O|1997-10-26|1997-11-06|1997-10-27|COLLECT COD|MAIL| final foxes sleep carefully| +51368|798357|10873|3|9|13097.88|0.06|0.05|N|O|1997-11-02|1997-11-28|1997-11-04|NONE|AIR|arefully aroun| +51368|984871|47391|4|42|82144.86|0.06|0.02|N|O|1997-11-01|1997-11-04|1997-11-23|TAKE BACK RETURN|TRUCK|ng to the ironic, r| +51368|718673|18674|5|47|79507.08|0.08|0.04|N|O|1997-11-23|1997-12-08|1997-12-11|COLLECT COD|FOB|efully. slyly pen| +51368|724221|24222|6|43|53543.17|0.03|0.06|N|O|1997-09-26|1997-10-23|1997-10-03|NONE|SHIP| unusual accoun| +51368|976522|1561|7|31|49552.88|0.03|0.04|N|O|1997-10-28|1997-12-06|1997-11-02|TAKE BACK RETURN|REG AIR|cial courts boost furiously s| +51369|400614|13123|1|41|62098.19|0.06|0.04|N|O|1996-06-12|1996-08-04|1996-07-04|DELIVER IN PERSON|AIR|bout the unusual dependencies wake blithely| +51369|110524|10525|2|2|3069.04|0.03|0.05|N|O|1996-08-08|1996-07-10|1996-08-17|TAKE BACK RETURN|TRUCK|as-- even pearls sleep| +51369|560710|35733|3|46|81451.74|0.03|0.02|N|O|1996-05-31|1996-08-10|1996-06-21|DELIVER IN PERSON|TRUCK|eodolites across the | +51369|847424|9941|4|11|15085.18|0.03|0.02|N|O|1996-07-28|1996-08-03|1996-08-24|TAKE BACK RETURN|TRUCK|eposits affix furiously| +51369|644728|44729|5|43|71925.67|0.08|0.02|N|O|1996-06-19|1996-07-07|1996-07-15|NONE|REG AIR|jole quickly even accounts. final theodol| +51369|927259|39778|6|42|54020.82|0.10|0.06|N|O|1996-09-07|1996-07-28|1996-09-17|TAKE BACK RETURN|RAIL|cial account| +51370|563167|13168|1|46|56586.44|0.01|0.03|N|O|1996-05-04|1996-05-30|1996-05-23|COLLECT COD|AIR| ideas integrate about the packages. bold,| +51370|144694|7197|2|19|33035.11|0.04|0.02|N|O|1996-07-11|1996-06-01|1996-08-08|DELIVER IN PERSON|TRUCK|c pinto bean| +51370|855280|17798|3|23|28410.52|0.10|0.01|N|O|1996-07-18|1996-06-07|1996-08-15|TAKE BACK RETURN|RAIL|ly bold instructions detect. | +51371|381901|6916|1|1|1982.89|0.08|0.04|N|O|1998-01-30|1997-12-08|1998-02-05|COLLECT COD|SHIP|ess, unusual depo| +51371|596394|21417|2|15|22355.55|0.03|0.05|N|O|1998-01-29|1998-01-08|1998-02-06|NONE|AIR|fix slyly carefully silent theodolit| +51371|578242|15776|3|8|10561.76|0.04|0.02|N|O|1997-12-22|1997-11-30|1997-12-29|DELIVER IN PERSON|FOB|final, unusua| +51371|502009|14520|4|47|47516.06|0.06|0.05|N|O|1998-01-23|1997-12-28|1998-02-19|NONE|SHIP|nly slyly final requests. bold ac| +51372|646136|21161|1|42|45448.20|0.09|0.02|A|F|1993-12-25|1993-12-25|1994-01-15|DELIVER IN PERSON|RAIL|onic instructions might use along | +51373|403069|15578|1|40|38881.60|0.08|0.03|A|F|1993-11-16|1993-10-13|1993-12-12|DELIVER IN PERSON|AIR|haggle carefully final decoys. slyly final | +51373|363911|38926|2|23|45422.70|0.02|0.04|R|F|1993-09-11|1993-09-27|1993-09-17|COLLECT COD|REG AIR|ly of the bold, regular excuses. slyly pend| +51374|310625|35638|1|24|39254.64|0.04|0.04|R|F|1992-12-05|1992-11-23|1992-12-19|COLLECT COD|FOB|ost quickly even instructions| +51374|661025|11026|2|26|25635.74|0.00|0.08|A|F|1992-12-06|1992-11-30|1992-12-21|NONE|REG AIR|hely regular packages haggle over | +51374|836972|36973|3|4|7635.72|0.10|0.02|A|F|1992-09-22|1992-11-25|1992-10-02|TAKE BACK RETURN|AIR|lently ironic requests x-ray carefully agai| +51374|976759|14317|4|35|64249.85|0.01|0.02|A|F|1992-11-15|1992-11-03|1992-11-20|COLLECT COD|REG AIR|each quickly. blithely even depe| +51375|603971|16484|1|17|31873.98|0.10|0.04|A|F|1994-10-30|1994-12-29|1994-11-29|DELIVER IN PERSON|TRUCK|packages play carefully slyly| +51375|937798|37799|2|28|51401.00|0.00|0.06|A|F|1995-01-03|1994-11-27|1995-01-06|DELIVER IN PERSON|MAIL|ic theodolite| +51375|554526|4527|3|22|34771.00|0.03|0.04|R|F|1994-12-28|1995-01-05|1995-01-11|COLLECT COD|REG AIR| dazzle sly| +51375|912833|388|4|19|35070.01|0.05|0.04|R|F|1994-10-24|1994-12-27|1994-11-01|NONE|REG AIR|ons use blithely iron| +51375|978221|40741|5|26|33778.68|0.10|0.04|A|F|1994-11-11|1994-11-26|1994-11-16|COLLECT COD|AIR|rding to the speci| +51400|946437|21474|1|14|20767.46|0.03|0.01|A|F|1994-04-02|1994-02-13|1994-04-17|COLLECT COD|TRUCK|ding to the| +51400|764379|26895|2|19|27423.46|0.06|0.08|R|F|1994-02-23|1994-03-08|1994-03-05|DELIVER IN PERSON|RAIL|carefully regular accounts. quickly | +51401|951187|13707|1|34|42096.76|0.09|0.08|N|O|1998-01-28|1997-12-04|1998-02-17|TAKE BACK RETURN|SHIP|encies. foxe| +51401|589823|2335|2|48|91814.40|0.07|0.01|N|O|1998-01-10|1997-11-27|1998-01-27|TAKE BACK RETURN|SHIP|hely silent requests believe| +51401|152687|40197|3|2|3479.36|0.02|0.05|N|O|1997-10-11|1997-12-12|1997-10-31|COLLECT COD|FOB|s. quickly silent accounts nag quickly| +51401|208612|46125|4|24|36494.40|0.04|0.07|N|O|1997-12-08|1997-11-22|1997-12-30|TAKE BACK RETURN|RAIL|ckly ironic deposits! even, regular | +51401|141739|16744|5|17|30272.41|0.06|0.04|N|O|1997-11-22|1997-12-04|1997-11-24|DELIVER IN PERSON|SHIP|o beans na| +51402|866497|4049|1|38|55611.10|0.02|0.08|R|F|1993-02-25|1993-03-12|1993-03-24|DELIVER IN PERSON|TRUCK|pecial warhorses cajole furio| +51402|212758|12759|2|32|53463.68|0.06|0.06|A|F|1993-03-22|1993-04-02|1993-04-10|COLLECT COD|TRUCK|ackages promise furiously. slyly quick| +51402|808838|8839|3|14|24455.06|0.07|0.08|A|F|1993-03-25|1993-03-29|1993-04-12|TAKE BACK RETURN|MAIL|ding ideas along the final d| +51402|135406|10411|4|27|38917.80|0.05|0.04|A|F|1993-02-03|1993-04-03|1993-03-02|COLLECT COD|TRUCK|ng accounts. idly even foxes must a| +51403|836428|36429|1|6|8186.28|0.03|0.08|A|F|1992-04-21|1992-05-30|1992-05-03|DELIVER IN PERSON|FOB| packages sleep slyly ironic requests. slyl| +51403|832476|20025|2|23|32393.89|0.09|0.08|A|F|1992-04-07|1992-04-25|1992-04-17|DELIVER IN PERSON|SHIP|y. express requests wake.| +51403|415770|3295|3|7|11800.25|0.06|0.07|A|F|1992-03-26|1992-04-26|1992-04-21|NONE|TRUCK|. special deposits pla| +51403|835771|23320|4|22|37548.06|0.06|0.07|R|F|1992-04-08|1992-06-23|1992-04-20|DELIVER IN PERSON|FOB|ggle blithely final accounts. depo| +51403|791371|41372|5|12|17548.08|0.02|0.08|A|F|1992-04-10|1992-05-29|1992-04-12|COLLECT COD|SHIP|al packages sleep before the ideas. unusual| +51403|560382|35405|6|15|21635.40|0.05|0.08|A|F|1992-07-18|1992-04-27|1992-07-24|DELIVER IN PERSON|TRUCK| furiously | +51403|338247|25766|7|46|59120.58|0.10|0.03|R|F|1992-07-24|1992-05-12|1992-08-02|DELIVER IN PERSON|AIR|tes wake furiously. slyly bold accoun| +51404|907209|7210|1|12|14593.92|0.01|0.04|N|O|1998-04-09|1998-04-28|1998-04-28|COLLECT COD|MAIL|o beans integrate carefully. slyly spec| +51405|59124|9125|1|36|38992.32|0.03|0.03|N|O|1995-07-02|1995-07-24|1995-07-06|TAKE BACK RETURN|AIR|instructions:| +51405|691002|3516|2|30|29789.10|0.09|0.03|N|F|1995-06-15|1995-06-26|1995-07-10|NONE|MAIL|ar dolphins cajole quickly pending inst| +51405|660988|10989|3|37|72111.15|0.01|0.08|N|F|1995-06-06|1995-07-05|1995-06-25|NONE|AIR|sly regular decoys eng| +51406|45047|20048|1|34|33729.36|0.03|0.04|R|F|1993-04-17|1993-04-13|1993-05-15|NONE|FOB|e finally along the carefully bol| +51406|92127|29631|2|41|45883.92|0.06|0.07|R|F|1993-04-20|1993-04-01|1993-05-10|COLLECT COD|MAIL|e furiously bold pains!| +51406|366085|3607|3|38|43740.66|0.07|0.01|A|F|1993-04-21|1993-04-05|1993-05-07|NONE|RAIL|quick escapades. carefull| +51407|816802|16803|1|4|6875.04|0.00|0.06|A|F|1993-05-21|1993-06-07|1993-06-20|DELIVER IN PERSON|MAIL|ly according to th| +51407|982857|20415|2|21|40736.01|0.10|0.03|R|F|1993-05-08|1993-05-21|1993-05-24|COLLECT COD|SHIP|ular pinto beans above the final requests | +51407|872795|22796|3|4|7071.00|0.07|0.01|R|F|1993-06-14|1993-05-03|1993-07-03|COLLECT COD|AIR|urts. spec| +51407|63306|13307|4|4|5077.20|0.01|0.01|R|F|1993-06-02|1993-05-26|1993-06-20|DELIVER IN PERSON|TRUCK| carefully bold accounts. carefully ironi| +51407|978184|40704|5|11|13883.54|0.00|0.05|A|F|1993-07-09|1993-06-09|1993-07-31|COLLECT COD|RAIL|ly sly foxes cajole slyly slyly pendi| +51432|758312|20828|1|32|43848.96|0.06|0.04|N|O|1996-02-23|1996-01-25|1996-03-11|DELIVER IN PERSON|RAIL|x-ray slyly regular dependencies.| +51432|935366|35367|2|16|22421.12|0.06|0.08|N|O|1996-03-06|1996-02-08|1996-03-13|COLLECT COD|SHIP| unusual pint| +51433|274309|36815|1|5|6416.45|0.06|0.04|R|F|1994-05-18|1994-05-30|1994-05-29|TAKE BACK RETURN|FOB|ts above the theodolites bel| +51433|309268|34281|2|5|6386.25|0.10|0.06|R|F|1994-05-01|1994-05-19|1994-05-30|COLLECT COD|RAIL| instructions thrash. pinto beans haggle.| +51434|972080|22081|1|39|44929.56|0.07|0.07|N|O|1997-04-19|1997-05-04|1997-05-08|COLLECT COD|REG AIR|al foxes. bold, express acco| +51434|744298|31841|2|21|28187.46|0.08|0.06|N|O|1997-04-18|1997-04-15|1997-04-20|NONE|AIR|inos. express forg| +51434|415630|40647|3|39|60278.79|0.07|0.04|N|O|1997-05-15|1997-04-20|1997-06-14|NONE|AIR|cajole fluffily slyly final pac| +51435|352163|14671|1|11|13366.65|0.06|0.04|R|F|1994-05-10|1994-02-21|1994-05-22|TAKE BACK RETURN|RAIL|kly even foxes| +51435|792971|5487|2|49|101133.06|0.10|0.06|A|F|1994-02-16|1994-03-30|1994-03-08|DELIVER IN PERSON|REG AIR| carefully pendi| +51435|461484|23994|3|10|14454.60|0.08|0.00|R|F|1994-03-11|1994-03-01|1994-04-04|NONE|FOB|quests. blithely unus| +51436|440227|40228|1|11|12839.20|0.00|0.03|N|O|1998-02-11|1998-03-22|1998-02-17|DELIVER IN PERSON|SHIP|hy theodoli| +51436|889050|1568|2|48|49872.48|0.06|0.02|N|O|1998-03-28|1998-03-17|1998-04-20|COLLECT COD|FOB|its wake around the blithe| +51436|254355|41871|3|30|39280.20|0.05|0.06|N|O|1998-05-11|1998-02-28|1998-05-12|TAKE BACK RETURN|MAIL|ests are slyly| +51436|938475|13512|4|35|52970.05|0.08|0.01|N|O|1998-04-30|1998-04-02|1998-05-15|DELIVER IN PERSON|TRUCK|tructions run sometimes quietly final| +51436|934075|34076|5|50|55451.50|0.03|0.02|N|O|1998-05-04|1998-03-13|1998-05-08|NONE|RAIL|ng epitaphs aff| +51436|988331|25889|6|5|7096.45|0.06|0.00|N|O|1998-05-08|1998-04-17|1998-05-13|TAKE BACK RETURN|RAIL| express ideas are after the fluffily s| +51436|872298|22299|7|4|5081.00|0.10|0.07|N|O|1998-04-20|1998-03-07|1998-05-07|TAKE BACK RETURN|AIR|kly even pinto be| +51437|707499|45042|1|49|73816.54|0.05|0.04|A|F|1995-05-07|1995-04-12|1995-06-06|COLLECT COD|RAIL|ons. furiously e| +51437|921749|46786|2|45|79681.50|0.06|0.03|R|F|1995-04-24|1995-02-20|1995-05-01|TAKE BACK RETURN|SHIP|e. slyly express pi| +51437|822318|47351|3|32|39688.64|0.04|0.00|A|F|1995-03-12|1995-03-11|1995-03-13|TAKE BACK RETURN|RAIL| special excuses. slyly special f| +51437|683399|33400|4|40|55294.40|0.06|0.00|A|F|1995-02-04|1995-03-26|1995-02-05|TAKE BACK RETURN|SHIP|ay carefully instructions. fluf| +51437|882823|20375|5|6|10834.68|0.02|0.03|A|F|1995-05-05|1995-02-24|1995-06-01|TAKE BACK RETURN|SHIP|ges cajole caref| +51437|598001|10513|6|38|41761.24|0.10|0.08|A|F|1995-05-01|1995-03-31|1995-05-25|DELIVER IN PERSON|AIR|ts detect carefully agains| +51437|594070|6582|7|34|39577.70|0.00|0.02|A|F|1995-04-06|1995-02-18|1995-05-06|DELIVER IN PERSON|AIR|en deposits run blithely final theodolites| +51438|529825|42336|1|22|40805.60|0.09|0.07|N|O|1997-07-17|1997-09-29|1997-07-27|COLLECT COD|SHIP|egular courts cajole never acro| +51438|754115|41661|2|35|40917.80|0.08|0.02|N|O|1997-09-01|1997-08-06|1997-09-07|DELIVER IN PERSON|RAIL|he furiously bold accounts! blithely r| +51439|372449|9971|1|8|12171.44|0.10|0.07|N|O|1995-11-07|1996-01-04|1995-11-10|DELIVER IN PERSON|RAIL| slyly fluffily final deposits| +51439|738237|38238|2|1|1275.20|0.01|0.00|N|O|1995-12-10|1995-12-25|1995-12-15|DELIVER IN PERSON|TRUCK|slyly carefully regular| +51439|546692|21713|3|18|31296.06|0.05|0.05|N|O|1996-01-04|1995-12-10|1996-01-21|COLLECT COD|SHIP|ly. courts ha| +51464|964692|39731|1|34|59726.10|0.06|0.05|R|F|1993-06-23|1993-07-27|1993-07-09|TAKE BACK RETURN|RAIL|xes cajole quickly alongsi| +51464|564104|26616|2|40|46723.20|0.07|0.00|R|F|1993-09-22|1993-07-30|1993-10-13|TAKE BACK RETURN|MAIL|refully final theodolit| +51464|879554|4589|3|20|30670.20|0.08|0.06|R|F|1993-07-29|1993-08-15|1993-08-03|TAKE BACK RETURN|RAIL|he pending, specia| +51464|657577|45117|4|34|52174.36|0.02|0.08|A|F|1993-08-01|1993-09-12|1993-08-27|COLLECT COD|MAIL|aringly sly accounts | +51464|896631|46632|5|24|39062.16|0.01|0.00|A|F|1993-09-05|1993-08-19|1993-09-19|COLLECT COD|TRUCK|ously final | +51464|661284|23798|6|39|48564.75|0.08|0.04|A|F|1993-10-16|1993-08-04|1993-11-05|NONE|MAIL|thin requests print blithely acr| +51465|272283|9799|1|3|3765.81|0.00|0.01|A|F|1994-08-06|1994-06-10|1994-08-28|DELIVER IN PERSON|AIR|lly blithely unusual requests? fluffily | +51465|253488|3489|2|24|34595.28|0.05|0.08|R|F|1994-07-26|1994-06-28|1994-08-03|COLLECT COD|AIR|ounts haggle depo| +51465|357604|45126|3|27|44862.93|0.08|0.01|A|F|1994-08-02|1994-07-02|1994-08-30|COLLECT COD|AIR|inal foxes wake furiously. ironic ins| +51465|247101|9606|4|9|9432.81|0.02|0.08|R|F|1994-08-10|1994-07-01|1994-09-04|DELIVER IN PERSON|MAIL|ve the sly| +51466|323415|35922|1|33|47467.20|0.00|0.05|N|O|1996-04-27|1996-06-16|1996-05-09|DELIVER IN PERSON|TRUCK|eposits daz| +51466|632347|19884|2|49|62686.19|0.02|0.07|N|O|1996-06-03|1996-05-20|1996-06-12|COLLECT COD|FOB|y silent accounts nag slyly bold| +51466|845826|8343|3|2|3543.56|0.09|0.00|N|O|1996-06-13|1996-06-18|1996-06-23|TAKE BACK RETURN|REG AIR|. silent, idle requests | +51466|789708|27254|4|47|84490.49|0.09|0.06|N|O|1996-06-29|1996-05-26|1996-07-15|NONE|FOB|carefully even packages use a| +51466|606376|18889|5|21|26929.14|0.01|0.05|N|O|1996-04-27|1996-05-09|1996-05-17|COLLECT COD|AIR|ounts detec| +51466|349615|37134|6|15|24969.00|0.05|0.04|N|O|1996-07-13|1996-04-30|1996-07-26|DELIVER IN PERSON|REG AIR|n foxes. regular accounts use blit| +51466|974342|11900|7|25|35407.50|0.08|0.04|N|O|1996-06-12|1996-04-24|1996-06-26|TAKE BACK RETURN|FOB|even requests. quic| +51467|751832|26863|1|20|37676.00|0.10|0.00|A|F|1995-02-07|1995-01-09|1995-02-17|TAKE BACK RETURN|SHIP|ntegrate car| +51467|32314|7315|2|9|11216.79|0.09|0.00|R|F|1995-01-03|1995-02-03|1995-01-16|NONE|RAIL|ter the fluffily pending excuses. ironi| +51467|94702|44703|3|43|72958.10|0.08|0.07|R|F|1995-01-31|1995-01-13|1995-02-11|NONE|FOB|al accounts are agains| +51467|656512|44052|4|23|33775.04|0.04|0.06|R|F|1995-03-21|1995-02-14|1995-04-11|NONE|SHIP|lyly final packages.| +51467|986313|23871|5|49|68564.23|0.03|0.06|R|F|1995-01-29|1995-02-09|1995-01-31|DELIVER IN PERSON|TRUCK|to beans affix fluffily quickly expre| +51467|957705|45263|6|11|19389.26|0.10|0.04|R|F|1994-12-26|1995-01-08|1994-12-31|DELIVER IN PERSON|SHIP|eodolites | +51468|708682|33711|1|39|65935.35|0.03|0.07|R|F|1994-02-11|1993-12-21|1994-02-21|DELIVER IN PERSON|AIR|ffily furiously final requests. r| +51468|806894|44443|2|45|81038.25|0.09|0.07|A|F|1993-12-11|1994-01-24|1993-12-14|NONE|MAIL| requests use furiously alongside of the | +51468|455978|18488|3|35|67688.25|0.10|0.07|R|F|1994-02-27|1994-02-03|1994-03-23|NONE|TRUCK|around the furiousl| +51469|926167|26168|1|28|33407.36|0.00|0.06|N|O|1997-02-22|1997-02-21|1997-03-24|TAKE BACK RETURN|AIR|lly. carefully express pinto beans | +51469|80357|42859|2|37|49481.95|0.10|0.04|N|O|1996-11-28|1996-12-26|1996-12-11|TAKE BACK RETURN|REG AIR| blithely special instruct| +51469|551792|14304|3|17|31344.09|0.00|0.03|N|O|1996-12-27|1997-02-13|1996-12-28|DELIVER IN PERSON|MAIL|r instructions| +51469|966794|4352|4|49|91176.75|0.10|0.01|N|O|1996-11-26|1996-12-25|1996-12-06|DELIVER IN PERSON|TRUCK|blithe package| +51469|899965|12483|5|33|64842.36|0.00|0.05|N|O|1996-11-30|1997-01-03|1996-12-06|DELIVER IN PERSON|MAIL| instructions wa| +51469|704576|4577|6|27|42674.58|0.06|0.05|N|O|1996-12-02|1997-02-09|1996-12-28|TAKE BACK RETURN|FOB|. final ideas | +51470|776012|1043|1|14|15231.72|0.01|0.06|A|F|1993-08-31|1993-07-26|1993-09-10|TAKE BACK RETURN|MAIL| regular, regular escapades| +51470|419019|31528|2|25|23449.75|0.09|0.05|A|F|1993-06-28|1993-08-05|1993-07-03|NONE|MAIL|posits was. even accounts haggle| +51470|441515|16532|3|15|21847.35|0.03|0.05|R|F|1993-07-23|1993-08-11|1993-07-25|TAKE BACK RETURN|REG AIR|regular deposits acro| +51471|318762|31269|1|8|14246.00|0.00|0.02|A|F|1994-07-07|1994-09-16|1994-08-05|TAKE BACK RETURN|AIR|y blithely ironi| +51471|430397|17922|2|39|51767.43|0.03|0.00|R|F|1994-10-26|1994-08-14|1994-11-20|NONE|MAIL| requests. regularly unusual requests wa| +51471|666005|28519|3|1|970.97|0.09|0.04|R|F|1994-08-06|1994-08-03|1994-08-18|TAKE BACK RETURN|MAIL|e across the silent accounts. busily| +51496|724664|37179|1|22|37149.86|0.00|0.05|A|F|1992-12-16|1992-11-30|1993-01-14|NONE|MAIL|ructions are slyly ir| +51496|427382|27383|2|23|30115.28|0.01|0.08|R|F|1992-12-02|1992-11-03|1992-12-20|NONE|TRUCK|pinto beans. bol| +51496|5682|18183|3|28|44455.04|0.06|0.08|A|F|1992-09-13|1992-11-06|1992-10-04|NONE|FOB|jole: regular, regular theodoli| +51496|489360|39361|4|43|58021.62|0.08|0.07|R|F|1992-09-15|1992-11-22|1992-10-15|TAKE BACK RETURN|SHIP|al package| +51496|659304|34331|5|47|59373.69|0.06|0.04|A|F|1992-11-17|1992-11-27|1992-12-01|DELIVER IN PERSON|FOB|ges wake accounts. fluffily| +51496|912785|340|6|29|52134.46|0.03|0.06|A|F|1992-10-09|1992-11-05|1992-10-10|DELIVER IN PERSON|MAIL|lets. requests sl| +51497|342787|17800|1|26|47574.02|0.09|0.02|R|F|1993-06-30|1993-07-21|1993-07-12|NONE|SHIP|counts wake slyly| +51497|215287|40296|2|32|38472.64|0.10|0.03|A|F|1993-06-09|1993-06-22|1993-07-04|DELIVER IN PERSON|SHIP|lve quickly final foxes. e| +51497|327452|27453|3|7|10356.08|0.10|0.06|R|F|1993-05-22|1993-08-12|1993-06-13|TAKE BACK RETURN|REG AIR|kly. blithely special deposits sleep bli| +51497|475487|37997|4|21|30711.66|0.09|0.00|A|F|1993-08-08|1993-07-04|1993-08-29|DELIVER IN PERSON|SHIP|ts. quickly unusual ideas about the sl| +51497|503092|40623|5|41|44897.87|0.05|0.01|R|F|1993-07-28|1993-07-29|1993-08-10|TAKE BACK RETURN|FOB|he stealthily special accounts haggle furi| +51498|728441|3470|1|48|70531.68|0.00|0.05|A|F|1992-06-05|1992-07-09|1992-06-15|TAKE BACK RETURN|TRUCK|s snooze across the ironic| +51498|906680|6681|2|14|23612.96|0.03|0.06|R|F|1992-04-29|1992-06-02|1992-05-20|NONE|REG AIR|ding theodolit| +51498|559960|22472|3|38|76757.72|0.05|0.02|A|F|1992-05-26|1992-06-27|1992-06-02|COLLECT COD|SHIP|fully final foxes. pinto bea| +51498|233023|33024|4|30|28680.30|0.01|0.07|A|F|1992-04-24|1992-07-04|1992-04-27|DELIVER IN PERSON|RAIL| regular pinto beans. f| +51498|405479|30496|5|39|53993.55|0.02|0.08|R|F|1992-05-05|1992-06-16|1992-06-03|COLLECT COD|AIR|s sleep-- fluff| +51498|869840|7392|6|21|38005.80|0.01|0.05|R|F|1992-07-30|1992-06-11|1992-08-25|COLLECT COD|RAIL|s believe furi| +51499|919717|44754|1|2|3473.34|0.09|0.04|R|F|1993-02-11|1993-01-24|1993-03-06|COLLECT COD|AIR|ully even dugouts wake silently sinc| +51499|669435|6975|2|37|51962.80|0.08|0.05|A|F|1993-02-04|1993-02-06|1993-02-09|COLLECT COD|SHIP|, express deposits? final | +51499|189669|39670|3|5|8793.30|0.01|0.05|A|F|1992-12-21|1993-03-06|1992-12-28|NONE|RAIL|lyly ironic requests. ideas despite the f| +51499|754511|4512|4|42|65750.16|0.07|0.02|R|F|1993-01-07|1993-01-27|1993-01-09|DELIVER IN PERSON|MAIL|ag bravely. blithely| +51499|62011|37014|5|2|1946.02|0.10|0.03|A|F|1993-04-06|1993-01-26|1993-04-16|TAKE BACK RETURN|REG AIR|s breach carefully. regular, final | +51500|422896|35405|1|39|70935.93|0.09|0.05|N|O|1998-03-08|1998-01-20|1998-04-06|DELIVER IN PERSON|SHIP|y quiet accounts. thin d| +51500|608906|33931|2|25|45371.75|0.04|0.05|N|O|1998-03-04|1998-01-19|1998-03-16|TAKE BACK RETURN|RAIL|tes. blithely ironic fo| +51500|872792|35310|3|24|42354.00|0.05|0.01|N|O|1998-01-30|1998-01-31|1998-02-04|TAKE BACK RETURN|REG AIR|unts play. packages use quiet theodoli| +51500|953|13454|4|27|50056.65|0.09|0.06|N|O|1997-12-23|1998-02-20|1998-01-11|NONE|RAIL|ickly across the quickly perman| +51500|16626|16627|5|16|24681.92|0.00|0.07|N|O|1998-03-14|1998-01-06|1998-04-12|TAKE BACK RETURN|TRUCK|ously idly final dependen| +51500|425747|764|6|30|50181.60|0.10|0.06|N|O|1998-01-26|1998-02-20|1998-01-28|NONE|REG AIR|e blithely even instructions| +51500|513846|26357|7|16|29757.12|0.05|0.05|N|O|1998-01-09|1998-02-21|1998-01-16|DELIVER IN PERSON|REG AIR| requests. fluffily ironic | +51501|201731|14236|1|47|76737.84|0.04|0.07|R|F|1994-04-28|1994-04-29|1994-05-05|TAKE BACK RETURN|FOB|ing to the permanent, ironic req| +51501|487528|12547|2|35|53042.50|0.09|0.04|A|F|1994-03-13|1994-05-11|1994-03-30|TAKE BACK RETURN|RAIL|. express packages shall have to dazzle b| +51501|880025|42543|3|12|12059.76|0.02|0.08|R|F|1994-03-25|1994-04-12|1994-03-28|COLLECT COD|AIR|ular deposi| +51501|571860|21861|4|3|5795.52|0.00|0.03|R|F|1994-06-06|1994-04-05|1994-06-11|NONE|MAIL|he carefully bol| +51501|248748|23757|5|21|35631.33|0.05|0.07|R|F|1994-06-01|1994-05-11|1994-06-21|TAKE BACK RETURN|MAIL|s the slyly final deposits. quickly| +51501|698063|35603|6|18|19098.54|0.06|0.03|A|F|1994-03-10|1994-04-12|1994-03-21|TAKE BACK RETURN|REG AIR|ts boost carefu| +51502|84073|9076|1|32|33826.24|0.00|0.08|N|O|1997-04-13|1997-04-11|1997-04-16|DELIVER IN PERSON|MAIL|regular deposits ar| +51502|8356|33357|2|42|53102.70|0.04|0.08|N|O|1997-05-18|1997-06-04|1997-05-30|COLLECT COD|FOB|he quiet pinto b| +51502|425993|1010|3|35|67163.95|0.00|0.02|N|O|1997-05-18|1997-05-23|1997-05-29|COLLECT COD|AIR|c requests sleep blithely| +51503|299591|24602|1|13|20677.54|0.02|0.08|N|O|1995-10-07|1995-09-05|1995-10-11|DELIVER IN PERSON|SHIP|sly final ideas sleep fluffil| +51503|212192|49705|2|1|1104.18|0.05|0.05|N|O|1995-07-30|1995-09-23|1995-08-21|COLLECT COD|AIR|ests. instructions haggle| +51503|304871|4872|3|17|31889.62|0.01|0.03|N|O|1995-10-13|1995-09-22|1995-10-18|COLLECT COD|MAIL| silent ideas. foxes use sometimes against| +51503|959299|46857|4|26|35314.50|0.10|0.06|N|O|1995-10-17|1995-09-20|1995-11-08|NONE|MAIL|ular requests poach carefully| +51503|921983|9538|5|42|84207.48|0.06|0.03|N|O|1995-09-07|1995-09-10|1995-10-02|COLLECT COD|AIR| deposits. carefully regular accounts | +51503|754724|4725|6|13|23122.97|0.07|0.00|N|O|1995-10-08|1995-09-27|1995-10-09|NONE|FOB| the silently pending | +51503|634279|21816|7|12|14558.88|0.06|0.01|N|O|1995-07-13|1995-08-29|1995-07-23|NONE|AIR| bold requests. furiously pend| +51528|310592|35605|1|21|33654.18|0.10|0.03|R|F|1992-10-27|1992-09-02|1992-11-20|COLLECT COD|MAIL|xes. blithel| +51528|108687|21190|2|21|35609.28|0.01|0.07|A|F|1992-07-26|1992-09-12|1992-07-27|NONE|FOB|, even requests kindle slyly. silent| +51529|477227|39737|1|45|54189.00|0.07|0.05|A|F|1993-11-20|1993-11-18|1993-12-16|NONE|TRUCK|p deposits. even asymptotes detect caref| +51529|739269|39270|2|45|58870.35|0.03|0.01|A|F|1993-10-22|1994-01-02|1993-11-11|NONE|MAIL|carefully express| +51529|889981|39982|3|42|82779.48|0.05|0.06|R|F|1993-12-18|1993-12-25|1993-12-27|TAKE BACK RETURN|MAIL|lar, bold instruct| +51529|896395|21430|4|9|12522.15|0.05|0.04|R|F|1993-10-17|1993-12-20|1993-10-30|DELIVER IN PERSON|FOB| accounts use fluffily | +51529|702605|2606|5|50|80378.50|0.07|0.07|R|F|1993-12-22|1993-12-18|1993-12-24|TAKE BACK RETURN|MAIL|ingly after the furiously unusual acco| +51530|54309|4310|1|12|15159.60|0.03|0.00|N|O|1997-07-27|1997-05-25|1997-07-31|TAKE BACK RETURN|MAIL|ely slyly regular ideas. slyly| +51530|762947|37978|2|35|70346.85|0.10|0.07|N|O|1997-04-25|1997-06-22|1997-05-08|TAKE BACK RETURN|AIR|rate slyly after the i| +51530|844187|44188|3|23|26016.22|0.06|0.07|N|O|1997-06-07|1997-07-14|1997-06-09|COLLECT COD|RAIL| foxes haggle carefully ironic| +51530|247986|35499|4|35|67688.95|0.06|0.04|N|O|1997-07-09|1997-06-03|1997-08-08|NONE|SHIP|y above the s| +51530|896886|46887|5|29|54602.36|0.04|0.03|N|O|1997-08-17|1997-07-06|1997-09-16|DELIVER IN PERSON|RAIL|y regular, ironic id| +51530|949516|24553|6|24|37571.28|0.03|0.01|N|O|1997-08-13|1997-05-22|1997-08-24|NONE|RAIL|quickly pending packages. regu| +51531|296026|33542|1|34|34748.34|0.06|0.06|R|F|1994-07-24|1994-07-11|1994-07-27|NONE|MAIL|osits at the idly special patt| +51532|189652|27162|1|1|1741.65|0.04|0.00|N|O|1996-08-04|1996-05-28|1996-08-13|NONE|AIR|l, ironic asymptotes sl| +51532|474147|11675|2|28|31391.36|0.06|0.02|N|O|1996-05-10|1996-06-12|1996-05-12|COLLECT COD|REG AIR|te among t| +51532|983826|33827|3|24|45834.72|0.06|0.06|N|O|1996-04-21|1996-06-08|1996-05-03|NONE|RAIL| ironic deposits. special requests int| +51532|153115|3116|4|50|58405.50|0.07|0.06|N|O|1996-06-20|1996-05-12|1996-07-10|DELIVER IN PERSON|AIR|ckly regular requests are| +51532|391748|4256|5|41|75428.93|0.08|0.08|N|O|1996-06-09|1996-05-08|1996-06-13|COLLECT COD|TRUCK|ly ironic dependencies nag. careful| +51532|102150|27155|6|42|48390.30|0.01|0.08|N|O|1996-07-20|1996-07-02|1996-08-09|COLLECT COD|MAIL|as believe slyly dependencies. slowly r| +51532|833974|33975|7|40|76317.20|0.09|0.02|N|O|1996-04-08|1996-06-26|1996-04-20|DELIVER IN PERSON|AIR|nic excuses wak| +51533|593505|6017|1|42|67136.16|0.09|0.07|A|F|1992-08-12|1992-09-07|1992-08-16|COLLECT COD|AIR|onic requests must have to | +51534|403310|15819|1|28|33972.12|0.08|0.03|N|O|1998-02-17|1998-01-12|1998-02-27|DELIVER IN PERSON|AIR|ly even accounts wake car| +51534|415708|15709|2|44|71441.92|0.02|0.01|N|O|1997-12-25|1998-02-18|1998-01-06|COLLECT COD|FOB|uests. silent ideas x-ray fluf| +51535|825930|963|1|21|38973.69|0.06|0.05|A|F|1994-08-31|1994-07-29|1994-09-05|TAKE BACK RETURN|SHIP| to the slyly pending fo| +51535|392460|42461|2|9|13972.05|0.01|0.04|R|F|1994-08-25|1994-06-30|1994-09-15|TAKE BACK RETURN|AIR| beans. pinto beans | +51535|58534|33537|3|33|49253.49|0.07|0.07|A|F|1994-07-21|1994-06-25|1994-08-11|NONE|REG AIR|ding dolphins | +51535|770609|8155|4|45|75580.65|0.04|0.06|A|F|1994-06-24|1994-06-28|1994-07-01|COLLECT COD|MAIL|tes haggle carefully among the express| +51535|622249|9786|5|32|37478.72|0.07|0.06|A|F|1994-06-10|1994-08-15|1994-06-22|TAKE BACK RETURN|REG AIR|ges wake! packages cajole furi| +51535|129991|42494|6|21|42440.79|0.06|0.05|A|F|1994-07-28|1994-07-28|1994-07-30|NONE|SHIP|ickly careful deposits hinder| +51535|753911|41457|7|35|68770.80|0.01|0.05|A|F|1994-08-17|1994-08-09|1994-09-02|TAKE BACK RETURN|MAIL|packages cajole quickly behind | +51560|965885|28405|1|30|58525.20|0.02|0.03|R|F|1993-09-21|1993-07-05|1993-09-26|NONE|RAIL|iously even accounts about the | +51561|27760|40261|1|22|37130.72|0.01|0.04|N|O|1997-01-14|1997-03-20|1997-02-01|DELIVER IN PERSON|TRUCK|unts are quickly along the| +51561|552068|14580|2|3|3360.12|0.02|0.01|N|O|1997-03-02|1997-03-20|1997-03-28|NONE|FOB| carefully pendin| +51561|592382|4894|3|49|72243.64|0.07|0.02|N|O|1997-04-05|1997-03-31|1997-05-03|COLLECT COD|MAIL|oost. deposits poach blithely carefu| +51561|152740|40250|4|25|44818.50|0.01|0.06|N|O|1997-03-29|1997-02-03|1997-04-02|NONE|RAIL|requests doze final deposits. slyly regular| +51561|95731|8233|5|33|56982.09|0.10|0.03|N|O|1997-02-09|1997-02-11|1997-03-09|NONE|FOB|arefully even idea| +51561|950025|12545|6|10|10749.80|0.07|0.04|N|O|1997-01-17|1997-03-13|1997-02-04|DELIVER IN PERSON|RAIL|ithely after the ironic deposits. blithel| +51561|65270|40273|7|6|7411.62|0.04|0.05|N|O|1997-03-23|1997-02-15|1997-04-22|TAKE BACK RETURN|TRUCK|ges wake carefull| +51562|991078|16117|1|11|12859.33|0.01|0.00|N|O|1998-10-26|1998-09-06|1998-11-23|TAKE BACK RETURN|REG AIR| regular asymptotes wake slyly a| +51563|555048|30071|1|41|45223.82|0.00|0.06|N|O|1998-04-10|1998-04-13|1998-04-11|TAKE BACK RETURN|RAIL|ress dolphins | +51563|682202|7229|2|8|9473.36|0.06|0.01|N|O|1998-03-26|1998-05-21|1998-04-21|NONE|MAIL| final pinto be| +51564|927654|2691|1|48|80717.28|0.05|0.07|N|O|1995-12-05|1995-10-22|1995-12-28|COLLECT COD|MAIL|ideas print platelets. furiously f| +51564|71222|8726|2|40|47728.80|0.05|0.00|N|O|1995-11-25|1995-11-20|1995-12-05|COLLECT COD|MAIL|al deposits. blithely f| +51564|18455|18456|3|46|63178.70|0.01|0.06|N|O|1995-09-25|1995-11-15|1995-10-09|TAKE BACK RETURN|REG AIR|s. furiously regular accounts s| +51564|168625|43632|4|28|47421.36|0.05|0.02|N|O|1995-11-15|1995-10-03|1995-11-20|DELIVER IN PERSON|MAIL| pinto beans wake slyly above the c| +51564|72518|22519|5|46|68563.46|0.02|0.06|N|O|1995-10-01|1995-09-21|1995-10-25|NONE|FOB|pending, bold instructions. careful| +51564|801925|39474|6|40|73075.20|0.10|0.04|N|O|1995-08-29|1995-10-16|1995-09-27|NONE|RAIL|lar requests s| +51564|950489|490|7|44|67735.36|0.10|0.00|N|O|1995-09-10|1995-09-28|1995-09-29|COLLECT COD|REG AIR|olphins. fluffily bold request| +51565|856812|19330|1|20|35375.40|0.01|0.08|N|O|1995-07-14|1995-08-05|1995-08-02|COLLECT COD|AIR|at the slyly unusual a| +51565|436064|48573|2|17|17000.68|0.09|0.00|N|O|1995-09-17|1995-06-28|1995-09-21|NONE|TRUCK|heodolites nag furiously. deposits grow bli| +51565|911369|36406|3|42|57973.44|0.08|0.08|N|O|1995-09-10|1995-08-06|1995-10-01|TAKE BACK RETURN|MAIL|ar deposits sleep express ideas. fluffily b| +51565|375364|37872|4|22|31665.70|0.06|0.02|N|O|1995-07-19|1995-07-21|1995-08-11|COLLECT COD|MAIL|equests boost doggedl| +51565|739292|1807|5|17|22631.42|0.03|0.02|N|O|1995-07-12|1995-06-29|1995-07-20|COLLECT COD|TRUCK|nusual accounts.| +51566|668358|30872|1|1|1326.32|0.10|0.03|N|O|1997-08-16|1997-09-04|1997-09-04|DELIVER IN PERSON|FOB| wake quickly. furiously final ideas in| +51566|91879|29383|2|6|11225.22|0.04|0.07|N|O|1997-09-17|1997-08-30|1997-09-25|TAKE BACK RETURN|SHIP|ouches across the bold requests ha| +51567|73836|11340|1|38|68773.54|0.09|0.02|R|F|1993-05-04|1993-04-24|1993-05-13|TAKE BACK RETURN|AIR|e ideas. express accounts dazzle | +51592|524279|11810|1|47|61252.75|0.09|0.08|R|F|1994-03-28|1994-02-24|1994-03-31|NONE|FOB| requests cajole acr| +51592|553608|41142|2|15|24923.70|0.02|0.07|A|F|1994-01-06|1994-01-26|1994-01-20|DELIVER IN PERSON|REG AIR|ymptotes sleep fur| +51592|488390|25918|3|34|46864.58|0.02|0.00|A|F|1993-12-31|1994-01-25|1994-01-07|TAKE BACK RETURN|RAIL|express ideas are slyly. | +51592|359215|34230|4|2|2548.40|0.04|0.07|A|F|1993-12-15|1994-01-14|1993-12-28|TAKE BACK RETURN|TRUCK|quiet ideas boost never s| +51592|319890|7409|5|11|21008.68|0.05|0.01|A|F|1993-12-24|1994-01-15|1994-01-11|TAKE BACK RETURN|MAIL| after the special| +51593|431188|18713|1|1|1119.16|0.01|0.03|N|O|1997-12-27|1997-12-16|1998-01-24|DELIVER IN PERSON|RAIL|thely regular asymptotes.| +51593|964658|2216|2|37|63736.57|0.10|0.07|N|O|1997-10-19|1997-10-31|1997-11-14|DELIVER IN PERSON|SHIP|ajole furiously. blithely sp| +51593|994673|44674|3|41|72472.83|0.08|0.08|N|O|1997-12-29|1997-11-16|1998-01-25|NONE|RAIL|final ideas. f| +51593|453164|40692|4|42|46919.88|0.00|0.00|N|O|1997-11-16|1997-11-16|1997-11-18|DELIVER IN PERSON|REG AIR|slyly final req| +51593|325545|38052|5|35|54968.55|0.07|0.00|N|O|1997-10-31|1997-12-28|1997-11-04|TAKE BACK RETURN|REG AIR|gular, final pin| +51593|430332|30333|6|10|12623.10|0.05|0.03|N|O|1997-11-27|1997-12-21|1997-12-12|NONE|REG AIR|, regular deposits haggle. ironic foxes en| +51594|156745|19249|1|13|23422.62|0.07|0.01|R|F|1995-06-01|1995-05-04|1995-06-02|TAKE BACK RETURN|RAIL|nally. carefully express asympto| +51594|400097|98|2|50|49853.50|0.08|0.05|N|O|1995-07-12|1995-05-06|1995-08-10|TAKE BACK RETURN|RAIL|equests haggle| +51594|414418|14419|3|42|55960.38|0.02|0.01|R|F|1995-05-12|1995-05-13|1995-05-21|TAKE BACK RETURN|SHIP|r platelets. pending deposit| +51594|109708|47215|4|1|1717.70|0.02|0.02|R|F|1995-05-25|1995-05-29|1995-06-07|TAKE BACK RETURN|AIR|nstructions. slyly unusual | +51594|861379|11380|5|47|62995.51|0.08|0.06|A|F|1995-03-24|1995-05-03|1995-04-17|TAKE BACK RETURN|FOB|uests promise quickly care| +51594|182294|19804|6|3|4128.87|0.04|0.07|N|F|1995-06-16|1995-04-20|1995-07-16|TAKE BACK RETURN|FOB|dolites haggle along the furiously unusua| +51595|525789|13320|1|36|65331.36|0.04|0.04|N|O|1998-07-21|1998-06-27|1998-08-12|DELIVER IN PERSON|MAIL|dependencies are. slyly expr| +51595|925798|38317|2|26|47417.50|0.01|0.05|N|O|1998-09-03|1998-06-16|1998-09-16|COLLECT COD|REG AIR|es alongside of the unus| +51595|870704|20705|3|2|3349.32|0.10|0.00|N|O|1998-06-16|1998-07-08|1998-07-12|TAKE BACK RETURN|FOB|its. slyly silent accounts wake care| +51595|919159|19160|4|34|40055.74|0.01|0.03|N|O|1998-06-12|1998-06-27|1998-06-22|DELIVER IN PERSON|AIR|ges integrate carefully above the br| +51595|302821|15328|5|3|5471.43|0.03|0.08|N|O|1998-08-30|1998-07-26|1998-09-09|COLLECT COD|TRUCK|the closely quiet packages. blithely u| +51596|666824|29338|1|24|42978.96|0.01|0.06|A|F|1993-05-01|1993-05-24|1993-05-11|TAKE BACK RETURN|TRUCK|ideas. carefully ironic instructions| +51596|307302|19809|2|19|24876.51|0.00|0.07|R|F|1993-06-01|1993-04-30|1993-06-25|COLLECT COD|FOB|es along the furiousl| +51597|963282|25802|1|34|45738.16|0.01|0.03|A|F|1994-07-09|1994-08-14|1994-07-18|COLLECT COD|REG AIR|s across the pending,| +51598|44094|31595|1|21|21799.89|0.10|0.02|R|F|1992-03-27|1992-04-22|1992-04-19|COLLECT COD|AIR|ublate according to the | +51598|80408|42910|2|15|20826.00|0.03|0.00|A|F|1992-05-02|1992-05-26|1992-05-16|COLLECT COD|AIR| about the final, silent| +51598|414532|27041|3|50|72325.50|0.02|0.08|R|F|1992-06-21|1992-05-20|1992-06-29|NONE|SHIP|nding accounts alongside of the ca| +51598|34870|47371|4|1|1804.87|0.03|0.06|A|F|1992-05-14|1992-05-19|1992-05-22|NONE|RAIL|lyly regular asymptotes. furiously sp| +51598|52657|15159|5|48|77263.20|0.04|0.08|R|F|1992-03-20|1992-05-10|1992-03-24|DELIVER IN PERSON|MAIL|s haggle express deposits. care| +51598|1868|14369|6|16|28317.76|0.04|0.08|A|F|1992-04-07|1992-05-23|1992-04-15|TAKE BACK RETURN|RAIL|rding to the express | +51598|393571|6079|7|13|21639.28|0.05|0.05|R|F|1992-05-31|1992-05-18|1992-06-17|TAKE BACK RETURN|REG AIR|e the packages. quick| +51599|741917|4432|1|47|92067.36|0.08|0.08|N|O|1996-07-07|1996-06-17|1996-08-04|COLLECT COD|REG AIR|the slyly regular | +51599|382287|7302|2|44|60247.88|0.08|0.04|N|O|1996-05-26|1996-07-05|1996-05-27|COLLECT COD|MAIL|r accounts believe carefully among the| +51599|93579|6081|3|15|23588.55|0.03|0.02|N|O|1996-04-28|1996-05-13|1996-05-15|DELIVER IN PERSON|REG AIR|nusual, regular requests.| +51599|777673|40189|4|37|64773.68|0.02|0.00|N|O|1996-06-18|1996-06-04|1996-06-27|TAKE BACK RETURN|TRUCK|blithely sil| +51624|783691|21237|1|34|60338.44|0.02|0.07|A|F|1993-10-07|1993-12-16|1993-10-31|NONE|AIR|uctions nag carefully furiously idle the| +51624|487001|24529|2|10|9879.80|0.03|0.08|A|F|1993-12-04|1993-11-17|1993-12-29|NONE|AIR|nal decoys cajole. carefully| +51624|9344|34345|3|35|43866.90|0.00|0.03|A|F|1994-01-22|1993-11-09|1994-02-09|NONE|RAIL|fully regular packages accor| +51624|38956|26457|4|24|45478.80|0.06|0.02|R|F|1993-10-07|1993-12-21|1993-11-02|NONE|REG AIR|es wake fluffily-- carefully regular | +51624|730386|30387|5|2|2832.70|0.07|0.07|R|F|1994-01-01|1993-11-27|1994-01-29|COLLECT COD|REG AIR| slyly bold accounts. accounts cajole qui| +51624|585786|35787|6|38|71126.88|0.05|0.00|R|F|1994-01-09|1993-12-29|1994-02-04|DELIVER IN PERSON|SHIP|ounts detect iron| +51624|304343|4344|7|28|37725.24|0.01|0.07|A|F|1993-11-12|1993-11-22|1993-12-06|TAKE BACK RETURN|TRUCK|es about the special | +51625|78717|3720|1|13|22044.23|0.05|0.03|N|O|1998-07-26|1998-07-30|1998-08-17|NONE|REG AIR|ag careful| +51625|993777|43778|2|21|39285.33|0.01|0.03|N|O|1998-07-12|1998-07-21|1998-07-31|TAKE BACK RETURN|TRUCK|e blithely carefully unus| +51625|395629|20644|3|25|43115.25|0.02|0.02|N|O|1998-08-08|1998-09-01|1998-08-22|COLLECT COD|FOB|ges sleep. final pinto beans wake f| +51625|329585|42092|4|6|9687.42|0.10|0.02|N|O|1998-08-14|1998-08-07|1998-09-01|DELIVER IN PERSON|MAIL|oost fluffily | +51625|326300|26301|5|22|29178.38|0.06|0.08|N|O|1998-09-18|1998-08-20|1998-10-01|NONE|RAIL|ts. regular, unusual dolphins run. carefull| +51625|119960|19961|6|20|39599.20|0.01|0.07|N|O|1998-09-15|1998-07-28|1998-09-17|DELIVER IN PERSON|AIR|e carefully blit| +51626|92520|42521|1|36|54450.72|0.03|0.06|A|F|1995-03-30|1995-04-25|1995-04-28|COLLECT COD|MAIL|n attainmen| +51627|979110|29111|1|16|19025.12|0.00|0.08|N|O|1997-07-17|1997-07-30|1997-07-23|NONE|MAIL|ve. blithely| +51628|251271|26282|1|23|28111.98|0.09|0.06|N|O|1996-08-29|1996-08-11|1996-09-20|TAKE BACK RETURN|AIR| furiously across the instructions. blithe| +51628|100236|37743|2|29|35850.67|0.03|0.01|N|O|1996-09-04|1996-07-04|1996-09-19|NONE|REG AIR|tes use ironical| +51628|658948|46488|3|16|30510.56|0.08|0.08|N|O|1996-09-16|1996-07-16|1996-09-30|DELIVER IN PERSON|AIR|ng theodol| +51628|934981|47500|4|35|70557.90|0.04|0.04|N|O|1996-09-02|1996-08-07|1996-09-07|TAKE BACK RETURN|MAIL|s. busy ideas wake even account| +51628|212098|12099|5|28|28282.24|0.05|0.07|N|O|1996-06-30|1996-08-21|1996-07-03|DELIVER IN PERSON|RAIL|ccounts abo| +51628|730879|43394|6|30|57295.20|0.08|0.00|N|O|1996-08-11|1996-07-16|1996-09-02|COLLECT COD|TRUCK|n deposits use blithely furiously ironic| +51628|868574|6126|7|44|67871.32|0.06|0.05|N|O|1996-06-15|1996-07-11|1996-07-01|TAKE BACK RETURN|MAIL|elets wake slyly blithely final request| +51629|113215|38220|1|30|36846.30|0.04|0.07|R|F|1995-05-19|1995-05-25|1995-06-10|DELIVER IN PERSON|REG AIR|y regular requests after the ir| +51629|792092|42093|2|17|20129.02|0.00|0.01|N|O|1995-07-12|1995-06-05|1995-08-06|TAKE BACK RETURN|SHIP|ording to the e| +51629|684094|21634|3|33|35575.98|0.02|0.02|R|F|1995-05-19|1995-06-10|1995-06-11|NONE|TRUCK| the furiously express notornis.| +51629|552793|2794|4|9|16611.93|0.05|0.05|R|F|1995-04-18|1995-05-20|1995-05-07|COLLECT COD|TRUCK|c accounts try to cajole furiously.| +51629|777741|40257|5|9|16368.39|0.10|0.07|N|O|1995-07-23|1995-06-25|1995-08-15|COLLECT COD|FOB|t about the unusual a| +51629|490443|2953|6|12|17201.04|0.01|0.01|R|F|1995-05-26|1995-06-17|1995-05-27|TAKE BACK RETURN|RAIL|ing asympt| +51629|869387|31905|7|3|4069.02|0.00|0.07|A|F|1995-04-23|1995-06-17|1995-05-10|NONE|FOB| haggle furiously across the furiously | +51630|776725|39241|1|28|50447.32|0.06|0.03|N|O|1998-04-16|1998-04-22|1998-04-27|DELIVER IN PERSON|REG AIR|xcuses cajole after the special theodo| +51631|165375|27879|1|36|51853.32|0.08|0.01|R|F|1995-05-12|1995-04-13|1995-05-17|NONE|SHIP|usual packa| +51631|452968|15478|2|24|46102.56|0.09|0.06|A|F|1995-02-01|1995-03-21|1995-02-13|NONE|SHIP|es wake asymptotes. fluffily pe| +51631|22262|34763|3|14|16579.64|0.02|0.08|R|F|1995-04-21|1995-04-01|1995-05-12|COLLECT COD|AIR|s. blithely final deposits besides th| +51631|144553|32060|4|44|70292.20|0.09|0.01|A|F|1995-05-17|1995-03-25|1995-06-02|NONE|SHIP|unts dazzle around the f| +51631|488680|1190|5|43|71752.38|0.09|0.00|A|F|1995-04-21|1995-02-22|1995-05-16|COLLECT COD|MAIL|. furiously| +51631|236914|49419|6|21|38868.90|0.01|0.07|A|F|1995-02-09|1995-03-10|1995-03-03|DELIVER IN PERSON|MAIL|ly unusual patterns at | +51656|91685|16688|1|30|50300.40|0.03|0.03|R|F|1994-06-21|1994-06-20|1994-07-03|NONE|RAIL|x across the final, even notornis. furiousl| +51656|941498|41499|2|4|6157.80|0.07|0.03|R|F|1994-05-02|1994-04-24|1994-05-23|TAKE BACK RETURN|TRUCK| shall have to | +51656|751465|39011|3|3|4549.29|0.07|0.06|A|F|1994-06-12|1994-04-23|1994-06-22|DELIVER IN PERSON|MAIL|haggle carefully across the slyly reg| +51656|868986|6538|4|4|7819.76|0.09|0.03|R|F|1994-05-15|1994-06-12|1994-06-07|NONE|SHIP|ns sleep silent deposits. carefull| +51656|34237|46738|5|49|57390.27|0.08|0.08|A|F|1994-04-25|1994-06-13|1994-05-10|DELIVER IN PERSON|SHIP|beans affix carefully against the unusua| +51657|496105|21124|1|7|7707.56|0.10|0.05|N|O|1998-05-21|1998-07-19|1998-06-16|NONE|MAIL|riously furious| +51657|33897|8898|2|2|3661.78|0.01|0.03|N|O|1998-09-02|1998-06-15|1998-09-07|DELIVER IN PERSON|MAIL|ickly ironic reques| +51657|697056|34596|3|41|43173.82|0.07|0.02|N|O|1998-09-09|1998-06-10|1998-09-14|TAKE BACK RETURN|AIR|e unusual requests. final, final asymptote| +51657|411442|36459|4|39|52783.38|0.04|0.07|N|O|1998-08-25|1998-08-05|1998-09-09|NONE|MAIL|nstructions: special, ironic packages boos| +51657|102011|2012|5|17|17221.17|0.08|0.01|N|O|1998-05-18|1998-06-21|1998-06-01|DELIVER IN PERSON|TRUCK| blithely even ideas th| +51658|653276|40816|1|7|8604.68|0.01|0.06|N|O|1996-12-20|1997-02-15|1996-12-24|NONE|RAIL|eposits boost f| +51658|609396|9397|2|20|26107.20|0.04|0.04|N|O|1997-04-07|1997-02-25|1997-04-16|DELIVER IN PERSON|SHIP|posits. slyly blithe accounts wake a| +51658|112550|37555|3|34|53126.70|0.10|0.08|N|O|1997-01-06|1997-02-16|1997-01-14|TAKE BACK RETURN|MAIL|n deposits inside the regul| +51658|615066|15067|4|20|19620.60|0.05|0.07|N|O|1997-02-28|1997-03-11|1997-03-16|COLLECT COD|TRUCK|e deposits across| +51659|812281|24798|1|40|47729.60|0.05|0.00|A|F|1994-08-07|1994-10-28|1994-09-04|COLLECT COD|SHIP|even excuses nag slyly along the sl| +51659|371|37872|2|23|29241.51|0.00|0.06|R|F|1994-11-28|1994-09-20|1994-11-30|NONE|AIR|packages c| +51659|231238|43743|3|27|31568.94|0.08|0.02|A|F|1994-08-30|1994-09-09|1994-09-28|COLLECT COD|AIR|across the blithely enticing d| +51659|413853|13854|4|45|79507.35|0.04|0.07|A|F|1994-11-02|1994-10-21|1994-11-07|NONE|SHIP|he furiously regular accounts| +51659|623452|35965|5|26|35760.92|0.07|0.03|R|F|1994-11-16|1994-10-24|1994-12-16|TAKE BACK RETURN|TRUCK|riously unusual excuses sleep. | +51659|355286|17794|6|20|26825.40|0.06|0.07|A|F|1994-09-20|1994-10-14|1994-10-04|COLLECT COD|REG AIR|yly ironic dependencies wake caref| +51660|19767|7268|1|12|20241.12|0.06|0.06|N|O|1995-08-21|1995-07-31|1995-09-06|COLLECT COD|MAIL|dependencies cajole. blit| +51660|217761|5274|2|21|35253.75|0.07|0.06|N|O|1995-07-27|1995-09-10|1995-08-18|DELIVER IN PERSON|MAIL|lyly unusual acco| +51660|904600|4601|3|18|28882.08|0.02|0.05|N|O|1995-09-16|1995-09-17|1995-10-02|NONE|REG AIR|venly regular requests sleep against the sl| +51660|608882|46419|4|30|53725.50|0.02|0.06|N|O|1995-10-15|1995-09-05|1995-10-29|COLLECT COD|SHIP| accounts believe after the carefully reg| +51661|144095|6598|1|40|45563.60|0.04|0.04|R|F|1994-08-30|1994-08-09|1994-09-23|COLLECT COD|AIR|nding foxes play furiously c| +51661|795821|45822|2|24|46002.96|0.03|0.02|R|F|1994-06-30|1994-06-25|1994-07-26|COLLECT COD|TRUCK|ep carefully regular deposits. r| +51662|786879|36880|1|44|86496.96|0.01|0.08|R|F|1993-03-05|1993-04-01|1993-03-28|TAKE BACK RETURN|MAIL|against the fluffily silen| +51662|70574|33076|2|35|54059.95|0.01|0.00|A|F|1993-01-11|1993-03-14|1993-01-20|NONE|SHIP|he pending asymptotes. blithely entici| +51662|131991|31992|3|11|22252.89|0.08|0.05|A|F|1993-01-23|1993-02-22|1993-02-03|NONE|REG AIR|onic deposits sleep quickly | +51662|368393|43408|4|23|33611.74|0.06|0.06|A|F|1993-02-04|1993-03-11|1993-02-07|TAKE BACK RETURN|RAIL|press deposits haggle | +51662|580555|30556|5|45|73598.85|0.03|0.01|R|F|1993-03-16|1993-02-24|1993-04-09|TAKE BACK RETURN|FOB|t deposits hang along the furiously f| +51663|66548|41551|1|33|49979.82|0.00|0.01|R|F|1992-07-25|1992-08-07|1992-07-30|TAKE BACK RETURN|FOB|lly among the dogged deposits. bold th| +51663|468998|6526|2|36|70810.92|0.03|0.01|A|F|1992-06-16|1992-06-30|1992-06-24|TAKE BACK RETURN|REG AIR|into beans cajole. fu| +51663|447935|22952|3|25|47072.75|0.08|0.07|R|F|1992-08-07|1992-07-07|1992-09-05|COLLECT COD|RAIL|ly across the c| +51663|433438|33439|4|24|32913.84|0.07|0.05|R|F|1992-06-30|1992-07-05|1992-07-11|COLLECT COD|MAIL|te quickly quickly regular dependenci| +51688|533847|21378|1|14|26331.48|0.03|0.06|R|F|1993-08-10|1993-10-13|1993-09-01|DELIVER IN PERSON|RAIL|ending ideas i| +51689|655132|30159|1|1|1087.10|0.05|0.07|A|F|1992-11-08|1993-01-12|1992-11-15|DELIVER IN PERSON|FOB|final foxes. ironic instructions alongsid| +51690|545165|7676|1|3|3630.42|0.00|0.04|N|O|1998-03-01|1998-03-15|1998-03-18|TAKE BACK RETURN|MAIL|tions. slyly even braids wake carefull| +51691|387549|57|1|15|24547.95|0.04|0.05|R|F|1993-04-05|1993-04-12|1993-04-23|DELIVER IN PERSON|AIR|ously unusual asymptotes hag| +51691|535363|22894|2|14|19576.76|0.09|0.02|A|F|1993-03-06|1993-03-06|1993-03-23|COLLECT COD|FOB|y special ideas are fu| +51691|842594|5111|3|34|52242.70|0.08|0.03|A|F|1993-02-19|1993-03-10|1993-03-11|NONE|SHIP|ns wake car| +51691|470510|8038|4|10|14804.90|0.06|0.01|A|F|1993-02-25|1993-03-24|1993-03-14|COLLECT COD|AIR| furiously ironic ide| +51692|560952|35975|1|24|48310.32|0.08|0.00|N|O|1997-06-09|1997-04-30|1997-06-10|NONE|FOB|te according to the car| +51692|917073|4628|2|43|46871.29|0.03|0.04|N|O|1997-05-01|1997-04-25|1997-05-08|NONE|FOB|efully unusua| +51692|242260|17269|3|10|12022.50|0.05|0.06|N|O|1997-03-05|1997-04-19|1997-03-20|NONE|SHIP|ost against the f| +51692|649957|12470|4|23|43859.16|0.06|0.02|N|O|1997-04-02|1997-05-06|1997-04-21|TAKE BACK RETURN|SHIP|en, express reques| +51692|826934|1967|5|9|16748.01|0.01|0.08|N|O|1997-03-05|1997-04-02|1997-04-04|COLLECT COD|FOB|lar accounts caj| +51692|264484|26990|6|44|63732.68|0.10|0.04|N|O|1997-03-03|1997-04-24|1997-03-07|TAKE BACK RETURN|TRUCK|ar asymptotes are furiously. | +51692|169911|44918|7|29|57446.39|0.10|0.07|N|O|1997-03-17|1997-05-10|1997-04-03|DELIVER IN PERSON|MAIL|xpress pinto beans are furiously quick t| +51693|679355|16895|1|49|65381.68|0.10|0.07|N|O|1998-02-27|1998-03-07|1998-03-23|TAKE BACK RETURN|REG AIR|ven packages. enticing, special p| +51693|907448|19967|2|16|23286.40|0.02|0.02|N|O|1998-03-30|1998-03-18|1998-04-08|TAKE BACK RETURN|FOB|al theodolites. requests use sly| +51693|478266|40776|3|6|7465.44|0.01|0.08|N|O|1998-02-18|1998-04-17|1998-03-16|TAKE BACK RETURN|FOB| final ideas. quickly| +51693|216123|16124|4|20|20782.20|0.04|0.05|N|O|1998-05-10|1998-04-21|1998-05-31|NONE|REG AIR|e carefully even theodo| +51694|799139|49140|1|3|3714.30|0.02|0.02|A|F|1994-01-14|1993-12-13|1994-01-19|DELIVER IN PERSON|AIR|o beans. blithely special t| +51694|124539|37042|2|10|15635.30|0.04|0.00|R|F|1993-11-06|1993-12-29|1993-12-02|NONE|MAIL|he furiously bold sauternes! excuses g| +51694|116573|29076|3|5|7947.85|0.00|0.03|A|F|1994-01-14|1993-11-19|1994-02-02|NONE|REG AIR|quietly pending dugouts. quickly reg| +51694|232838|7847|4|5|8854.10|0.00|0.03|R|F|1993-10-14|1993-12-12|1993-11-03|COLLECT COD|MAIL|otes haggle furiously| +51695|625739|764|1|17|28299.90|0.04|0.03|R|F|1993-11-29|1993-11-05|1993-12-08|DELIVER IN PERSON|FOB|equests along the carefully ironic| +51695|783980|9011|2|34|70174.30|0.10|0.03|R|F|1993-12-31|1993-11-13|1994-01-16|DELIVER IN PERSON|TRUCK|ependencies. un| +51695|342597|5104|3|1|1639.58|0.08|0.06|A|F|1993-09-24|1993-12-18|1993-10-12|DELIVER IN PERSON|TRUCK| unusual accounts? dog| +51695|26175|38676|4|12|13214.04|0.09|0.08|A|F|1993-12-10|1993-12-01|1994-01-01|NONE|REG AIR|y even warhorses play carefully above t| +51695|914926|39963|5|24|46581.12|0.00|0.06|A|F|1993-11-20|1993-12-18|1993-11-26|COLLECT COD|REG AIR|deposits engage. slyly bold requ| +51695|151983|1984|6|49|99714.02|0.02|0.00|R|F|1993-09-29|1993-12-03|1993-10-23|TAKE BACK RETURN|SHIP|ecial pinto beans sl| +51695|371386|33894|7|12|17488.44|0.00|0.00|R|F|1993-11-23|1993-12-13|1993-11-24|NONE|MAIL|are regular deposits. ironi| +51720|867928|17929|1|45|85314.60|0.09|0.06|N|O|1997-01-26|1997-03-04|1997-02-11|NONE|REG AIR| requests. reques| +51720|264286|39297|2|47|58762.69|0.04|0.07|N|O|1997-01-20|1997-03-07|1997-02-11|DELIVER IN PERSON|REG AIR|ust affix among the quick re| +51720|847093|9610|3|21|21841.05|0.10|0.02|N|O|1997-04-02|1997-02-20|1997-04-03|DELIVER IN PERSON|RAIL|eposits wake at the regular, regular depo| +51720|75256|25257|4|26|32012.50|0.02|0.05|N|O|1997-04-11|1997-01-25|1997-04-21|NONE|AIR| to the slyly express requests cajo| +51721|528301|15832|1|29|38549.12|0.01|0.07|A|F|1993-12-24|1993-12-06|1994-01-15|TAKE BACK RETURN|SHIP|ake carefully near| +51722|842955|5472|1|1|1897.91|0.06|0.00|A|F|1992-10-23|1992-08-21|1992-10-24|COLLECT COD|FOB|cross the excuses sleep even pinto beans. f| +51723|906669|31706|1|14|23458.68|0.03|0.03|A|F|1993-12-09|1993-10-16|1993-12-18|TAKE BACK RETURN|RAIL|olites are b| +51723|384265|34266|2|44|59367.00|0.07|0.05|A|F|1993-12-14|1993-10-29|1993-12-24|DELIVER IN PERSON|MAIL|onic, final excuses along the carefully b| +51723|341217|41218|3|35|44037.00|0.05|0.02|A|F|1993-12-04|1993-11-15|1993-12-21|TAKE BACK RETURN|FOB|leep along the pending, iro| +51723|821601|9150|4|13|19793.28|0.03|0.07|A|F|1993-12-10|1993-09-26|1993-12-24|NONE|AIR|ly even dependencies cajole car| +51724|564846|14847|1|37|70700.34|0.04|0.06|N|O|1996-10-13|1996-09-15|1996-11-12|COLLECT COD|SHIP|ggle slowly pending theodolit| +51724|355640|18148|2|34|57651.42|0.08|0.02|N|O|1996-08-09|1996-08-09|1996-08-25|NONE|REG AIR| cajole carefully. boldly ironic | +51724|229497|17010|3|36|51353.28|0.05|0.05|N|O|1996-09-04|1996-09-15|1996-09-09|COLLECT COD|AIR|fter the slyly regular pint| +51725|499597|49598|1|49|78231.93|0.04|0.08|R|F|1994-01-13|1994-01-08|1994-01-26|DELIVER IN PERSON|SHIP|s. pending packages wake around the| +51725|712547|12548|2|16|24952.16|0.06|0.07|R|F|1994-01-19|1994-01-15|1994-02-15|DELIVER IN PERSON|AIR|eposits wake carefu| +51725|761313|36344|3|27|37105.56|0.10|0.06|A|F|1994-02-11|1993-11-29|1994-02-26|COLLECT COD|TRUCK|s cajole carefully even requests. u| +51725|384103|46611|4|25|29677.25|0.08|0.00|A|F|1994-01-16|1993-12-30|1994-01-23|TAKE BACK RETURN|RAIL|s. slyly regular theodolites sleep. p| +51726|344888|7395|1|37|71516.19|0.07|0.08|N|O|1998-08-14|1998-08-25|1998-09-10|NONE|TRUCK|ermanent pinto bea| +51726|519405|19406|2|28|39882.64|0.09|0.06|N|O|1998-09-11|1998-08-25|1998-09-25|NONE|RAIL|eep final, ironic theodolites| +51727|181571|19081|1|36|59492.52|0.10|0.04|A|F|1992-09-12|1992-08-06|1992-09-20|TAKE BACK RETURN|SHIP|s nag blith| +51727|656431|43971|2|26|36072.40|0.04|0.00|R|F|1992-06-26|1992-08-26|1992-07-12|TAKE BACK RETURN|TRUCK|oss the slyly idle accounts cajole | +51727|623680|11217|3|33|52920.45|0.02|0.02|A|F|1992-08-26|1992-08-26|1992-08-30|COLLECT COD|RAIL|tructions nag furiously. furiously expr| +51727|176487|26488|4|46|71920.08|0.04|0.03|R|F|1992-07-07|1992-09-03|1992-07-30|TAKE BACK RETURN|TRUCK|es. pendin| +51727|213367|38376|5|38|48653.30|0.04|0.05|R|F|1992-09-27|1992-08-01|1992-10-20|TAKE BACK RETURN|RAIL|nding dependencies. p| +51752|909965|47520|1|6|11849.52|0.05|0.08|N|O|1996-10-27|1996-11-07|1996-11-20|NONE|MAIL|es. silent packages alongside of the| +51753|837311|24860|1|3|3744.81|0.07|0.05|A|F|1992-07-21|1992-09-20|1992-08-06|TAKE BACK RETURN|RAIL|encies. unusua| +51753|685774|10801|2|8|14077.92|0.00|0.08|A|F|1992-11-02|1992-10-13|1992-11-23|DELIVER IN PERSON|REG AIR|ic dependencies unwind blithely along the| +51754|673225|10765|1|35|41936.65|0.02|0.08|N|O|1997-07-04|1997-06-04|1997-07-15|TAKE BACK RETURN|RAIL|es maintain slyly af| +51754|890335|15370|2|15|19879.35|0.04|0.06|N|O|1997-04-30|1997-05-01|1997-05-17|COLLECT COD|RAIL|deposits ac| +51754|855126|42678|3|22|23783.76|0.01|0.04|N|O|1997-05-28|1997-05-28|1997-06-05|COLLECT COD|TRUCK|pinto beans nag.| +51754|102212|2213|4|4|4856.84|0.09|0.00|N|O|1997-05-29|1997-04-26|1997-06-12|COLLECT COD|TRUCK|l, express deposits. furiously| +51754|867728|30246|5|20|33913.60|0.08|0.06|N|O|1997-04-19|1997-04-28|1997-05-18|COLLECT COD|TRUCK|s sleep regular, special requests.| +51754|893790|6308|6|20|35675.00|0.01|0.01|N|O|1997-03-28|1997-04-28|1997-04-27|TAKE BACK RETURN|AIR|y requests. blithely bold pinto beans eat. | +51754|914789|14790|7|24|43289.76|0.08|0.05|N|O|1997-05-23|1997-05-25|1997-06-16|TAKE BACK RETURN|REG AIR|promise across the fu| +51755|842805|42806|1|49|85640.24|0.10|0.03|N|O|1996-04-06|1996-05-12|1996-04-28|DELIVER IN PERSON|AIR|yly ironic packages. bold platelet| +51755|15456|15457|2|3|4114.35|0.07|0.05|N|O|1996-05-12|1996-05-22|1996-05-16|COLLECT COD|RAIL|sleep furiously. carefully regular escap| +51755|762009|24525|3|43|46051.71|0.01|0.01|N|O|1996-06-09|1996-06-15|1996-06-11|COLLECT COD|REG AIR|nic pinto beans. slyly silent cou| +51755|84212|46714|4|36|43063.56|0.08|0.07|N|O|1996-05-20|1996-06-30|1996-05-27|COLLECT COD|REG AIR|theodolites. bold requests affix;| +51755|340927|3434|5|9|17711.19|0.03|0.05|N|O|1996-07-25|1996-05-23|1996-08-07|NONE|TRUCK|thely regular platelets nag furiously fin| +51755|948371|48372|6|36|51095.88|0.08|0.05|N|O|1996-05-02|1996-06-06|1996-06-01|NONE|REG AIR|beans haggle slyly unusual pa| +51756|54129|29132|1|32|34659.84|0.04|0.06|A|F|1994-08-22|1994-08-19|1994-08-31|TAKE BACK RETURN|MAIL|xes unwind fluffily. foxes according to| +51756|744598|32141|2|13|21353.28|0.02|0.08|R|F|1994-09-10|1994-08-25|1994-09-20|TAKE BACK RETURN|TRUCK|d ideas run unusual requests.| +51757|881158|6193|1|13|14808.43|0.01|0.01|N|O|1997-01-26|1997-01-31|1997-02-15|DELIVER IN PERSON|REG AIR| slyly ironic instructions. bl| +51758|971218|8776|1|3|3867.51|0.08|0.05|N|O|1996-04-05|1996-01-10|1996-04-14|DELIVER IN PERSON|FOB|ly final deposits. ironic, pending depende| +51758|246129|8634|2|24|25802.64|0.10|0.04|N|O|1996-02-21|1996-02-16|1996-03-06|DELIVER IN PERSON|RAIL|riously daring ideas haggle slyly busi| +51758|688463|26003|3|30|43542.90|0.06|0.05|N|O|1996-03-14|1996-02-22|1996-03-20|NONE|AIR|ts detect beside the daring excuses. furio| +51758|997054|47055|4|20|23020.20|0.04|0.08|N|O|1996-03-25|1996-02-26|1996-04-15|DELIVER IN PERSON|RAIL| above the even pac| +51758|478461|28462|5|38|54698.72|0.07|0.03|N|O|1996-03-21|1996-02-27|1996-04-08|NONE|REG AIR| requests instead of the blithely regu| +51758|488618|38619|6|29|46591.11|0.06|0.01|N|O|1996-02-10|1996-02-15|1996-02-18|TAKE BACK RETURN|AIR| the furiously bold ideas. slyly final| +51758|189284|14291|7|43|59051.04|0.06|0.01|N|O|1996-03-03|1996-02-05|1996-03-29|NONE|RAIL|x final ideas-- slyly| +51759|282652|20168|1|34|55577.76|0.02|0.08|N|O|1998-08-30|1998-09-03|1998-09-01|TAKE BACK RETURN|TRUCK|quests. slyly unusual requests are fu| +51759|518861|31372|2|10|18798.40|0.09|0.04|N|O|1998-09-09|1998-09-10|1998-09-29|TAKE BACK RETURN|MAIL|ily special deposi| +51784|400634|25651|1|35|53711.35|0.04|0.02|N|O|1998-07-20|1998-06-20|1998-08-19|DELIVER IN PERSON|SHIP|ic, ironic pint| +51784|439748|39749|2|12|20252.64|0.05|0.08|N|O|1998-06-14|1998-06-15|1998-07-06|COLLECT COD|FOB|ular requests. ideas a| +51784|829306|16855|3|17|20999.42|0.03|0.06|N|O|1998-06-27|1998-06-08|1998-07-14|NONE|RAIL| ideas. even, ironic accounts hang amon| +51785|541993|17014|1|22|44769.34|0.04|0.04|N|F|1995-06-02|1995-05-11|1995-06-27|TAKE BACK RETURN|FOB|e above the final dependencies. escapad| +51786|692302|42303|1|43|55653.61|0.03|0.00|N|O|1997-08-18|1997-07-12|1997-09-11|COLLECT COD|RAIL|usual packages! always final ac| +51786|513533|13534|2|42|64953.42|0.07|0.06|N|O|1997-09-06|1997-08-01|1997-09-11|NONE|MAIL|s the slyly final de| +51786|946575|21612|3|20|32430.60|0.03|0.02|N|O|1997-05-26|1997-08-18|1997-06-09|NONE|REG AIR|dolites use blithely final ideas. carefu| +51787|611138|36163|1|12|12589.20|0.07|0.04|N|O|1997-05-12|1997-04-28|1997-05-23|NONE|TRUCK| courts are caref| +51787|383719|46227|2|4|7210.80|0.00|0.03|N|O|1997-04-20|1997-04-10|1997-05-01|NONE|RAIL| the ironic deposits. boldly regular acc| +51787|150367|25374|3|12|17008.32|0.08|0.01|N|O|1997-05-11|1997-04-07|1997-05-18|TAKE BACK RETURN|AIR|y special pinto bea| +51787|209321|46834|4|20|24606.20|0.01|0.06|N|O|1997-04-27|1997-04-12|1997-04-30|NONE|RAIL|uld doubt along the even dependencies. exp| +51788|158137|45647|1|15|17926.95|0.04|0.04|R|F|1994-07-07|1994-05-18|1994-07-15|COLLECT COD|AIR|aggle ironic d| +51788|792856|5372|2|27|52618.14|0.09|0.07|A|F|1994-07-12|1994-06-03|1994-07-20|DELIVER IN PERSON|FOB|eodolites affix. bold, unusual pa| +51788|522431|9962|3|25|36335.25|0.02|0.07|A|F|1994-06-24|1994-06-27|1994-06-30|NONE|RAIL|refully final braids| +51788|482774|20302|4|40|70270.00|0.01|0.05|A|F|1994-04-20|1994-06-08|1994-04-25|NONE|REG AIR|nal requests. ironic| +51789|331182|43689|1|8|9705.36|0.07|0.02|N|O|1997-10-20|1997-10-20|1997-11-16|DELIVER IN PERSON|RAIL|lar, regular p| +51789|161981|24485|2|1|2042.98|0.00|0.01|N|O|1997-12-18|1997-11-29|1998-01-14|DELIVER IN PERSON|TRUCK|s. fluffily ironic dependencie| +51789|410969|35986|3|4|7519.76|0.06|0.07|N|O|1997-12-12|1997-10-12|1997-12-29|COLLECT COD|FOB| regular accounts. slyly re| +51790|564311|1845|1|14|19254.06|0.05|0.02|N|O|1997-07-30|1997-07-10|1997-08-19|COLLECT COD|TRUCK|press sheaves detect quickly among th| +51790|370217|45232|2|40|51488.00|0.05|0.03|N|O|1997-07-25|1997-06-20|1997-08-06|NONE|SHIP|nod furiously along the bo| +51790|221081|33586|3|16|16033.12|0.10|0.05|N|O|1997-06-29|1997-07-03|1997-07-26|NONE|MAIL|tain never| +51790|693199|43200|4|9|10729.44|0.05|0.03|N|O|1997-08-27|1997-07-01|1997-09-01|TAKE BACK RETURN|REG AIR|posits cajole quickly above the q| +51790|582573|20107|5|34|56288.70|0.06|0.08|N|O|1997-07-22|1997-07-02|1997-08-17|TAKE BACK RETURN|REG AIR|ideas cajole bold packages.| +51790|303083|40602|6|50|54303.50|0.07|0.01|N|O|1997-06-05|1997-07-15|1997-06-24|NONE|SHIP| final sheav| +51790|915855|15856|7|8|14966.48|0.00|0.03|N|O|1997-08-23|1997-08-03|1997-09-08|TAKE BACK RETURN|TRUCK|ole furiously. sly, ironic excuses mainta| +51791|763899|26415|1|8|15702.88|0.04|0.08|A|F|1994-01-18|1994-01-02|1994-01-29|NONE|REG AIR|t grouches. requests hagg| +51791|846569|34118|2|10|15155.20|0.03|0.01|R|F|1993-11-22|1994-01-05|1993-12-04|COLLECT COD|REG AIR|. slyly special accounts sleep quic| +51791|274958|12474|3|38|73451.72|0.10|0.04|R|F|1994-02-23|1994-02-09|1994-03-17|DELIVER IN PERSON|SHIP| affix about the slyly pending ideas-- | +51791|209045|46558|4|41|39115.23|0.02|0.05|R|F|1993-11-19|1994-01-13|1993-12-13|TAKE BACK RETURN|TRUCK|ar, regular ideas. foxes a| +51816|243080|30593|1|4|4092.28|0.08|0.07|R|F|1993-11-07|1994-01-19|1993-11-11|DELIVER IN PERSON|AIR|l accounts haggle regular d| +51817|204240|16745|1|49|56067.27|0.06|0.03|R|F|1992-04-13|1992-04-06|1992-04-23|NONE|SHIP|ffily along th| +51817|652461|2462|2|3|4240.29|0.08|0.07|A|F|1992-03-31|1992-03-12|1992-04-30|NONE|MAIL|about the slyly express depo| +51817|895922|45923|3|35|67125.80|0.01|0.06|R|F|1992-03-24|1992-03-25|1992-04-02|TAKE BACK RETURN|AIR| requests. carefully bold i| +51817|758636|21152|4|10|16946.00|0.06|0.06|R|F|1992-04-10|1992-05-02|1992-05-05|TAKE BACK RETURN|FOB|kages sleep never blithely specia| +51818|165026|40033|1|25|27275.50|0.10|0.05|N|O|1995-11-28|1995-12-22|1995-12-12|DELIVER IN PERSON|FOB| special requests.| +51818|577125|14659|2|21|25244.10|0.05|0.02|N|O|1995-11-08|1995-11-17|1995-11-09|NONE|SHIP|hinder above the blithely regular foxes.| +51818|739369|39370|3|11|15491.63|0.04|0.00|N|O|1995-12-02|1995-12-08|1995-12-29|COLLECT COD|SHIP|riously iron| +51818|558782|46316|4|6|11044.56|0.03|0.04|N|O|1996-01-07|1995-12-03|1996-01-08|DELIVER IN PERSON|MAIL|t the quickly | +51818|435885|35886|5|36|65550.96|0.10|0.06|N|O|1995-11-10|1995-11-17|1995-11-15|NONE|SHIP|ntiments--| +51818|914246|1801|6|50|63010.00|0.01|0.07|N|O|1996-01-01|1995-12-28|1996-01-13|NONE|TRUCK|s are even theodolites. bold requests hagg| +51818|716319|28834|7|16|21364.48|0.04|0.02|N|O|1995-11-27|1995-11-19|1995-12-26|NONE|REG AIR|uickly after the ironic ideas. furiou| +51819|169947|44954|1|6|12101.64|0.05|0.03|A|F|1992-09-08|1992-09-02|1992-09-20|DELIVER IN PERSON|MAIL|its detect a| +51819|283691|21207|2|9|15072.12|0.04|0.06|R|F|1992-07-17|1992-07-26|1992-07-29|COLLECT COD|TRUCK|quickly bold foxes slee| +51819|992373|4893|3|39|57147.87|0.04|0.08|A|F|1992-10-08|1992-08-29|1992-11-06|COLLECT COD|REG AIR|ckly special| +51819|810036|35069|4|48|45407.52|0.00|0.05|A|F|1992-09-03|1992-08-24|1992-09-20|NONE|MAIL|ns. finally regular deposits| +51819|262010|49526|5|12|11664.00|0.04|0.08|A|F|1992-09-30|1992-08-13|1992-10-27|DELIVER IN PERSON|REG AIR|uickly fluffy instructions wake carefully. | +51819|593701|6213|6|14|25125.52|0.00|0.00|A|F|1992-10-16|1992-07-22|1992-10-27|DELIVER IN PERSON|RAIL|os affix acro| +51820|619824|19825|1|36|62776.44|0.04|0.00|N|O|1998-02-18|1998-01-29|1998-03-17|DELIVER IN PERSON|RAIL|packages; carefully careful de| +51820|374846|49861|2|32|61466.56|0.06|0.00|N|O|1997-11-21|1998-01-23|1997-12-16|TAKE BACK RETURN|RAIL|unusual excu| +51821|620803|8340|1|42|72398.34|0.08|0.08|N|O|1996-06-27|1996-07-09|1996-07-16|COLLECT COD|REG AIR|mptotes. carefully iro| +51821|826274|26275|2|50|60011.50|0.10|0.02|N|O|1996-07-30|1996-06-24|1996-08-29|NONE|SHIP| blithely ironic accounts. carefully ir| +51822|803361|15878|1|1|1264.32|0.04|0.04|R|F|1992-06-12|1992-04-15|1992-07-02|NONE|SHIP|sts sleep slyly account| +51822|83231|8234|2|12|14570.76|0.04|0.00|R|F|1992-06-20|1992-05-17|1992-06-21|NONE|TRUCK|c theodolites maintain after the furiousl| +51822|862694|25212|3|10|16566.50|0.09|0.03|R|F|1992-05-22|1992-05-30|1992-06-21|COLLECT COD|TRUCK|its. blithel| +51823|142868|5371|1|45|85988.70|0.00|0.00|R|F|1992-02-13|1992-04-19|1992-02-28|NONE|FOB|uriously thin accounts. slyly regular pa| +51823|166638|4148|2|35|59662.05|0.05|0.02|R|F|1992-01-27|1992-03-24|1992-02-19|NONE|SHIP|ronic, even packages wake! e| +51823|683795|21335|3|32|56920.32|0.01|0.05|R|F|1992-02-12|1992-02-25|1992-03-12|DELIVER IN PERSON|FOB|g decoys affix. unusual, ironic| +51823|526291|13822|4|34|44787.18|0.08|0.03|A|F|1992-03-09|1992-04-08|1992-03-31|NONE|AIR|ajole! regular ide| +51848|952963|40521|1|33|66525.36|0.04|0.02|N|O|1996-02-14|1996-01-24|1996-02-29|COLLECT COD|RAIL|nto beans | +51848|433429|20954|2|7|9536.80|0.01|0.05|N|O|1995-11-15|1995-12-21|1995-12-08|COLLECT COD|TRUCK|ts haggle carefully-- f| +51848|624888|49913|3|22|39882.70|0.01|0.08|N|O|1995-11-10|1996-01-16|1995-11-21|DELIVER IN PERSON|REG AIR|haggle furiously about the | +51848|490470|40471|4|29|42353.05|0.06|0.03|N|O|1995-12-30|1996-01-03|1996-01-17|TAKE BACK RETURN|FOB|sly special accounts. daringl| +51848|328591|16110|5|38|61544.04|0.02|0.03|N|O|1996-01-13|1995-12-15|1996-02-11|NONE|AIR|its. silently final courts| +51848|624907|37420|6|16|29309.92|0.00|0.07|N|O|1995-12-13|1995-12-14|1995-12-31|NONE|REG AIR| the requests. fin| +51848|795441|32987|7|13|19973.33|0.07|0.08|N|O|1996-01-20|1995-12-18|1996-02-12|NONE|REG AIR|special som| +51849|961582|49140|1|30|49306.20|0.00|0.02|N|O|1998-03-12|1998-04-01|1998-04-01|NONE|FOB|boost slyly. quickly even de| +51849|297496|47497|2|24|35843.52|0.06|0.08|N|O|1998-03-06|1998-02-27|1998-03-22|NONE|REG AIR|uriously. regular, ironic fox| +51849|15131|40132|3|35|36614.55|0.02|0.00|N|O|1998-04-16|1998-02-15|1998-05-12|COLLECT COD|REG AIR|even, silent requests wake blithely a| +51849|302522|40041|4|10|15245.10|0.08|0.08|N|O|1998-01-12|1998-03-18|1998-01-21|NONE|TRUCK|y special de| +51849|480110|5129|5|31|33792.79|0.06|0.03|N|O|1998-01-23|1998-03-05|1998-02-09|NONE|TRUCK|riously fluffily bold accoun| +51849|202691|27700|6|39|62153.52|0.02|0.08|N|O|1998-03-14|1998-03-29|1998-04-13|COLLECT COD|TRUCK| accounts sleep fl| +51849|623944|36457|7|46|85923.86|0.09|0.06|N|O|1998-02-08|1998-03-26|1998-03-09|COLLECT COD|SHIP|lly pending de| +51850|623156|23157|1|38|41006.56|0.01|0.07|N|O|1997-10-01|1997-10-07|1997-10-23|NONE|RAIL|ironic multipliers. carefully ruthless| +51850|380767|30768|2|12|22173.00|0.07|0.06|N|O|1997-08-15|1997-09-21|1997-08-23|TAKE BACK RETURN|FOB|ly final as| +51850|549398|24419|3|16|23157.92|0.00|0.07|N|O|1997-10-27|1997-10-05|1997-11-25|DELIVER IN PERSON|AIR| requests are careful| +51851|434843|9860|1|9|16000.38|0.06|0.05|A|F|1994-12-30|1994-12-30|1995-01-22|DELIVER IN PERSON|AIR|ly ironic notornis for the | +51851|398878|11386|2|33|65236.38|0.09|0.04|A|F|1994-11-14|1994-12-05|1994-12-14|NONE|AIR|ans. busily express| +51851|935682|10719|3|41|70423.24|0.06|0.06|A|F|1995-02-27|1995-01-25|1995-03-03|TAKE BACK RETURN|RAIL|ests sleep t| +51851|992506|42507|4|1|1598.46|0.03|0.03|R|F|1994-12-02|1994-12-04|1994-12-31|TAKE BACK RETURN|TRUCK|slyly even| +51851|40347|2848|5|12|15448.08|0.07|0.00|R|F|1994-12-10|1994-12-21|1994-12-20|COLLECT COD|TRUCK|ess somas. express requ| +51851|111648|11649|6|22|36512.08|0.06|0.08|R|F|1995-01-17|1994-12-23|1995-02-11|NONE|RAIL|theodolites. blithely| +51851|464789|2317|7|19|33321.44|0.03|0.06|A|F|1994-11-24|1994-12-14|1994-12-05|NONE|REG AIR|of the slyly| +51852|693190|18217|1|12|14197.92|0.07|0.03|A|F|1993-06-10|1993-09-05|1993-06-11|DELIVER IN PERSON|MAIL|nto beans; slyly silent| +51852|430538|18063|2|44|64614.44|0.06|0.04|R|F|1993-10-03|1993-08-21|1993-10-26|TAKE BACK RETURN|MAIL|s integrate carefully| +51852|50011|25014|3|24|23064.24|0.04|0.04|R|F|1993-08-07|1993-07-22|1993-08-08|TAKE BACK RETURN|MAIL|furiously spec| +51852|526866|26867|4|14|26499.76|0.01|0.07|A|F|1993-09-25|1993-08-10|1993-10-12|NONE|FOB|l deposits sleep blithely. requests are| +51852|26437|1438|5|41|55900.63|0.04|0.07|R|F|1993-08-10|1993-07-23|1993-08-14|COLLECT COD|FOB|ges sleep furiousl| +51852|310215|47734|6|41|50233.20|0.02|0.00|A|F|1993-07-15|1993-07-09|1993-08-03|NONE|REG AIR| theodolites poach fluffily special | +51853|320330|45343|1|14|18904.48|0.00|0.03|A|F|1993-05-12|1993-05-20|1993-05-30|TAKE BACK RETURN|RAIL|dependenci| +51853|782017|44533|2|14|15385.72|0.02|0.07|R|F|1993-07-06|1993-06-18|1993-07-19|NONE|REG AIR|he ironic courts. express instructions hag| +51854|358797|8798|1|32|59384.96|0.10|0.00|N|O|1998-05-08|1998-02-27|1998-05-16|TAKE BACK RETURN|SHIP|: carefully unusual platelet| +51854|295019|32535|2|38|38532.00|0.09|0.05|N|O|1998-04-14|1998-03-07|1998-04-25|DELIVER IN PERSON|RAIL|rs after the carefully unusual reques| +51854|383026|45534|3|42|46578.42|0.03|0.03|N|O|1998-03-03|1998-03-10|1998-04-01|COLLECT COD|FOB|ly special ideas h| +51854|510779|23290|4|47|84118.25|0.08|0.05|N|O|1998-04-20|1998-04-04|1998-05-01|COLLECT COD|RAIL|ording to the carefully ironic accoun| +51854|659275|34302|5|42|51838.08|0.03|0.00|N|O|1998-02-15|1998-02-28|1998-02-25|COLLECT COD|REG AIR|sleep. fluffily | +51854|420029|20030|6|23|21827.00|0.10|0.06|N|O|1998-04-28|1998-03-15|1998-05-02|TAKE BACK RETURN|FOB| to serve slyly regular requests. fluff| +51854|418616|18617|7|44|67521.96|0.05|0.00|N|O|1998-04-15|1998-03-17|1998-05-02|TAKE BACK RETURN|MAIL|s. bold, bold deposits affix. unu| +51855|676096|13636|1|24|25729.44|0.02|0.03|R|F|1992-10-30|1992-11-09|1992-11-08|TAKE BACK RETURN|AIR|e. carefully regul| +51880|529020|16551|1|24|25176.00|0.05|0.08|N|O|1997-12-02|1997-11-01|1997-12-08|DELIVER IN PERSON|FOB|d packages boost carefully expr| +51880|232379|7388|2|29|38029.44|0.05|0.03|N|O|1997-11-20|1997-11-26|1997-12-09|COLLECT COD|MAIL|ronically final packages sleep slyly. s| +51880|585758|35759|3|35|64530.55|0.04|0.07|N|O|1997-12-29|1997-12-06|1998-01-09|COLLECT COD|MAIL|uickly regular dependencies use | +51880|823866|36383|4|50|89491.00|0.05|0.05|N|O|1997-10-11|1997-11-26|1997-10-19|COLLECT COD|RAIL|lyly. carefu| +51880|710828|23343|5|45|82745.55|0.03|0.08|N|O|1997-12-17|1997-12-09|1998-01-04|TAKE BACK RETURN|SHIP|leep quickly. quickly| +51880|871836|21837|6|45|81350.55|0.08|0.07|N|O|1997-11-28|1997-11-12|1997-12-22|TAKE BACK RETURN|FOB| instructions against the fur| +51880|946730|46731|7|9|15990.21|0.03|0.01|N|O|1997-10-08|1997-11-27|1997-10-31|COLLECT COD|TRUCK|instructions. silent, silent | +51881|683346|8373|1|22|29244.82|0.06|0.04|N|O|1998-01-08|1997-12-16|1998-02-06|NONE|SHIP|ss foxes wake slyly. carefully even deposi| +51881|983933|33934|2|35|70591.15|0.05|0.02|N|O|1998-01-31|1997-12-13|1998-02-23|COLLECT COD|TRUCK|fully furiou| +51882|210752|23257|1|42|69835.08|0.05|0.02|N|O|1995-08-03|1995-08-09|1995-08-16|DELIVER IN PERSON|FOB|e fluffily express reque| +51882|95313|32817|2|19|24857.89|0.03|0.03|N|O|1995-07-18|1995-06-29|1995-08-11|NONE|SHIP|rouches x-ray quickly instructi| +51882|910026|10027|3|43|44547.14|0.05|0.07|N|F|1995-06-16|1995-07-27|1995-06-24|COLLECT COD|AIR|endencies. brav| +51882|799466|11982|4|15|23481.45|0.04|0.03|N|O|1995-07-10|1995-07-01|1995-07-23|DELIVER IN PERSON|SHIP|ual asymptote| +51882|624841|12378|5|41|72398.21|0.06|0.06|A|F|1995-05-18|1995-08-05|1995-06-05|DELIVER IN PERSON|MAIL|jole blithely. quickly final accounts use.| +51883|491923|29451|1|27|51702.30|0.03|0.04|R|F|1994-07-24|1994-08-22|1994-07-26|COLLECT COD|TRUCK|y regular accounts detect along the| +51883|736752|24295|2|35|62605.20|0.05|0.06|R|F|1994-07-01|1994-08-07|1994-07-30|COLLECT COD|FOB|sits! unusual reque| +51884|723467|35982|1|28|41732.04|0.04|0.07|N|O|1996-01-01|1995-10-30|1996-01-29|DELIVER IN PERSON|MAIL|instructions. quickly fin| +51884|303525|3526|2|10|15285.10|0.04|0.07|N|O|1995-11-20|1995-12-05|1995-12-15|NONE|TRUCK| accounts. slyly blithe pinto beans| +51885|38606|1107|1|40|61784.00|0.06|0.00|R|F|1994-06-17|1994-07-22|1994-07-17|TAKE BACK RETURN|MAIL|solve carefu| +51886|840935|40936|1|3|5627.67|0.05|0.05|A|F|1992-07-20|1992-07-08|1992-07-27|COLLECT COD|SHIP|ages. thin foxe| +51886|592568|42569|2|49|81366.46|0.06|0.05|R|F|1992-06-28|1992-08-14|1992-07-27|TAKE BACK RETURN|REG AIR|tions near the slyly sp| +51886|279539|17055|3|11|16703.72|0.02|0.02|R|F|1992-07-13|1992-07-31|1992-08-10|NONE|AIR|ial excuses detect quickly. fin| +51886|204388|41901|4|25|32309.25|0.02|0.04|A|F|1992-06-13|1992-08-03|1992-07-06|TAKE BACK RETURN|RAIL| hockey players use finally along the iron| +51887|825939|13488|1|34|63406.26|0.07|0.00|R|F|1995-04-17|1995-05-20|1995-05-14|COLLECT COD|SHIP|inal asymptotes wake. regular depos| +51887|548643|36174|2|23|38907.26|0.00|0.04|R|F|1995-04-10|1995-06-18|1995-05-01|NONE|AIR|against the blithely iron| +51887|26634|26635|3|24|37455.12|0.07|0.03|N|O|1995-07-13|1995-05-18|1995-07-24|DELIVER IN PERSON|AIR|cial realms. final, final requests about t| +51887|630419|17956|4|44|59372.72|0.01|0.08|A|F|1995-05-19|1995-06-10|1995-05-29|DELIVER IN PERSON|FOB|yly after the deposits. special dep| +51887|444282|44283|5|38|46597.88|0.05|0.02|R|F|1995-05-05|1995-05-20|1995-05-30|COLLECT COD|SHIP|rts cajole quickly along the| +51887|32981|32982|6|5|9569.90|0.10|0.01|R|F|1995-06-01|1995-05-20|1995-06-16|DELIVER IN PERSON|RAIL|carefully across the fluffily unu| +51912|788246|762|1|2|2668.42|0.04|0.02|N|O|1996-09-25|1996-08-15|1996-10-24|COLLECT COD|FOB|leep after the ironic| +51912|38628|13629|2|15|23499.30|0.04|0.05|N|O|1996-10-18|1996-08-27|1996-10-21|DELIVER IN PERSON|RAIL|d packages wake slyly final deposits. pendi| +51912|210393|47906|3|10|13033.80|0.02|0.01|N|O|1996-08-19|1996-10-08|1996-09-03|COLLECT COD|TRUCK|e bold, bold packages integra| +51912|63045|38048|4|23|23184.92|0.06|0.07|N|O|1996-10-01|1996-08-20|1996-10-25|COLLECT COD|REG AIR|iously. bold pinto beans about the accoun| +51912|581361|6384|5|25|36058.50|0.00|0.04|N|O|1996-09-16|1996-08-18|1996-09-22|COLLECT COD|RAIL|nstructions boost | +51913|948798|11317|1|37|68329.75|0.09|0.03|N|O|1996-07-14|1996-06-04|1996-07-16|COLLECT COD|RAIL| theodolites sleep furiously fl| +51913|432457|32458|2|28|38904.04|0.03|0.05|N|O|1996-08-06|1996-07-07|1996-08-12|NONE|REG AIR|y pending deposits. even packages afte| +51913|289440|14451|3|31|44312.33|0.00|0.04|N|O|1996-07-11|1996-07-28|1996-07-17|COLLECT COD|TRUCK|olites. furiously close foxes sleep.| +51913|609849|47386|4|21|36935.01|0.09|0.08|N|O|1996-05-26|1996-06-18|1996-06-01|TAKE BACK RETURN|SHIP|blithely ironic, expres| +51913|720735|8278|5|23|40381.10|0.00|0.00|N|O|1996-07-16|1996-07-13|1996-07-25|TAKE BACK RETURN|AIR| quickly. furiously regular foxes| +51913|392752|17767|6|13|23981.62|0.02|0.02|N|O|1996-07-15|1996-06-28|1996-07-24|DELIVER IN PERSON|FOB|pinto beans. quie| +51913|968962|18963|7|7|14216.44|0.05|0.01|N|O|1996-07-08|1996-07-04|1996-08-04|TAKE BACK RETURN|FOB|lets. slyly special theodolites use | +51914|341184|28703|1|14|17152.38|0.03|0.08|N|O|1998-04-12|1998-02-20|1998-04-16|COLLECT COD|REG AIR|iously aroun| +51915|161860|24364|1|14|26906.04|0.09|0.02|A|F|1993-11-19|1993-11-03|1993-12-09|TAKE BACK RETURN|RAIL|s cajole quickly at the pinto beans.| +51915|365367|2889|2|4|5729.40|0.10|0.08|R|F|1993-10-23|1993-10-22|1993-11-12|DELIVER IN PERSON|MAIL|olphins haggle among the never regula| +51915|713961|1504|3|22|43448.46|0.10|0.02|R|F|1993-10-20|1993-12-04|1993-10-22|TAKE BACK RETURN|AIR|. unusual, bold packages wake. bl| +51915|526991|14522|4|2|4035.94|0.03|0.05|R|F|1993-11-27|1993-11-25|1993-12-23|DELIVER IN PERSON|RAIL| blithely unusual reques| +51915|136183|23690|5|5|6095.90|0.04|0.06|A|F|1993-10-28|1993-11-30|1993-11-02|TAKE BACK RETURN|FOB|packages sleep slyly furio| +51915|820227|20228|6|27|30973.86|0.08|0.02|R|F|1993-10-10|1993-12-02|1993-11-06|COLLECT COD|TRUCK|yly. packages are! slow deposits about | +51915|544903|44904|7|39|75967.32|0.06|0.03|R|F|1993-11-20|1993-11-22|1993-12-15|TAKE BACK RETURN|SHIP|gage. quickly even e| +51916|177743|27744|1|14|25490.36|0.08|0.07|N|O|1995-10-17|1995-10-22|1995-11-02|TAKE BACK RETURN|AIR|osits cajole slyly| +51916|313439|958|2|18|26143.56|0.10|0.08|N|O|1996-01-11|1995-11-26|1996-01-15|DELIVER IN PERSON|FOB|he bold, special packa| +51917|630324|30325|1|12|15051.48|0.02|0.00|N|O|1996-08-10|1996-07-11|1996-08-21|NONE|SHIP|luffily bold| +51917|847021|47022|2|34|32911.32|0.07|0.00|N|O|1996-04-23|1996-05-21|1996-04-25|DELIVER IN PERSON|MAIL|ss packages haggle bet| +51917|880412|17964|3|43|59871.91|0.07|0.08|N|O|1996-07-06|1996-06-20|1996-08-05|COLLECT COD|SHIP|ular accounts. daringly expre| +51918|868455|18456|1|38|54089.58|0.07|0.08|N|O|1998-06-15|1998-04-07|1998-07-13|NONE|AIR|riously bold packages are| +51918|117890|17891|2|16|30526.24|0.02|0.00|N|O|1998-03-26|1998-04-07|1998-04-06|NONE|REG AIR|furiously sly p| +51918|364543|27051|3|40|64301.20|0.02|0.00|N|O|1998-05-20|1998-04-26|1998-06-13|TAKE BACK RETURN|REG AIR|ly regular somas after the acco| +51918|862805|25323|4|39|68942.64|0.03|0.08|N|O|1998-06-25|1998-05-06|1998-07-19|COLLECT COD|TRUCK|against the instructi| +51918|160309|10310|5|40|54772.00|0.08|0.02|N|O|1998-05-29|1998-04-13|1998-06-02|DELIVER IN PERSON|TRUCK|alongside of | +51918|303330|40849|6|50|66666.00|0.04|0.05|N|O|1998-06-07|1998-05-30|1998-06-08|DELIVER IN PERSON|MAIL|sly final requests. ir| +51919|891528|4046|1|20|30389.60|0.00|0.04|N|O|1996-08-04|1996-08-30|1996-09-03|TAKE BACK RETURN|FOB|kly. carefully quiet packages between | +51919|896024|46025|2|5|5099.90|0.06|0.01|N|O|1996-06-30|1996-08-21|1996-07-30|NONE|AIR|xpress platelets. ironic somas at the qu| +51919|469394|19395|3|5|6816.85|0.06|0.05|N|O|1996-09-18|1996-08-13|1996-09-22|TAKE BACK RETURN|RAIL|t foxes. slyly ironic p| +51919|104614|42121|4|9|14567.49|0.06|0.02|N|O|1996-07-02|1996-08-27|1996-07-03|DELIVER IN PERSON|SHIP| sleep. specia| +51919|241455|28968|5|25|34911.00|0.10|0.02|N|O|1996-10-23|1996-08-27|1996-11-03|DELIVER IN PERSON|SHIP|kly regula| +51944|646706|34243|1|33|54538.11|0.04|0.02|N|O|1996-12-15|1997-02-20|1997-01-10|COLLECT COD|TRUCK|kly furiously express | +51944|174982|24983|2|17|34968.66|0.09|0.02|N|O|1997-01-12|1997-02-14|1997-01-23|DELIVER IN PERSON|MAIL|c sheaves are quickly against the| +51944|918377|43414|3|23|32092.59|0.05|0.06|N|O|1997-02-15|1997-01-12|1997-03-04|NONE|TRUCK|ses. fluffily stealthy pin| +51944|157941|32948|4|14|27985.16|0.00|0.04|N|O|1997-01-20|1997-01-24|1997-02-19|COLLECT COD|REG AIR| carefully. deposits wa| +51944|499676|12186|5|29|48593.85|0.09|0.08|N|O|1997-02-04|1997-02-06|1997-02-12|COLLECT COD|REG AIR|ccounts nag blithely. express accounts| +51944|51936|14438|6|20|37758.60|0.10|0.03|N|O|1997-01-01|1997-01-30|1997-01-22|NONE|TRUCK|lithely ironic ins| +51944|875301|336|7|14|17867.64|0.00|0.06|N|O|1997-02-28|1997-01-12|1997-03-07|NONE|SHIP|. quickly final ideas again| +51945|167733|17734|1|14|25210.22|0.10|0.07|A|F|1992-06-06|1992-04-08|1992-06-17|TAKE BACK RETURN|SHIP|yly bold accounts are sly| +51945|75441|444|2|25|35411.00|0.02|0.05|A|F|1992-06-27|1992-04-11|1992-07-12|TAKE BACK RETURN|REG AIR|. fluffily final| +51945|935378|22933|3|16|22613.28|0.01|0.05|R|F|1992-04-10|1992-04-07|1992-04-28|COLLECT COD|MAIL|ts maintain furiously. regul| +51946|352703|40225|1|11|19312.59|0.09|0.05|A|F|1992-04-27|1992-04-21|1992-05-17|DELIVER IN PERSON|FOB|y. quickly express dep| +51947|339779|27298|1|41|74569.16|0.10|0.04|R|F|1993-09-20|1993-10-03|1993-09-26|NONE|RAIL|warthogs. thinly bold wate| +51947|665559|3099|2|3|4573.56|0.00|0.06|R|F|1993-11-08|1993-10-13|1993-12-04|TAKE BACK RETURN|TRUCK|eas use. slyly| +51947|39152|26653|3|14|15276.10|0.03|0.05|R|F|1993-12-01|1993-10-24|1993-12-25|COLLECT COD|TRUCK|s: blithely silent requests hagg| +51947|15567|28068|4|13|19273.28|0.08|0.00|A|F|1993-10-14|1993-11-15|1993-11-09|TAKE BACK RETURN|FOB|ccounts. re| +51947|624662|12199|5|41|65051.83|0.02|0.05|R|F|1993-09-23|1993-10-12|1993-10-03|DELIVER IN PERSON|SHIP| pains. accounts | +51947|683177|45691|6|27|31323.78|0.10|0.02|A|F|1993-10-18|1993-10-17|1993-11-02|NONE|MAIL|ts sleep slyly across the furious, express| +51948|303818|3819|1|32|58297.60|0.06|0.06|N|O|1996-10-24|1996-09-23|1996-11-02|DELIVER IN PERSON|REG AIR|special foxes; final deposits ca| +51948|265764|15765|2|48|83028.00|0.08|0.08|N|O|1996-10-20|1996-10-07|1996-11-12|NONE|RAIL|ges cajole pending request| +51948|683598|21138|3|24|37957.44|0.01|0.05|N|O|1996-11-04|1996-09-06|1996-12-04|DELIVER IN PERSON|SHIP|lithely. accounts s| +51949|149603|37110|1|41|67756.60|0.03|0.00|N|O|1998-04-08|1998-04-10|1998-05-05|COLLECT COD|RAIL|es haggle above the bli| +51949|368308|30816|2|25|34407.25|0.10|0.07|N|O|1998-02-12|1998-04-25|1998-03-14|TAKE BACK RETURN|AIR|sts! blithely special accoun| +51949|140636|28143|3|26|43592.38|0.06|0.02|N|O|1998-03-07|1998-05-04|1998-03-10|COLLECT COD|FOB|iously. iro| +51950|679957|4984|1|15|29053.80|0.05|0.05|A|F|1992-03-14|1992-03-23|1992-03-30|DELIVER IN PERSON|SHIP|ideas. fluffily bold pinto beans are furio| +51950|23813|11314|2|10|17368.10|0.03|0.08|R|F|1992-05-08|1992-03-22|1992-05-16|DELIVER IN PERSON|FOB|urts. carefully final foxes boos| +51950|223220|48229|3|37|42298.77|0.01|0.02|R|F|1992-05-15|1992-02-24|1992-05-29|TAKE BACK RETURN|MAIL|he quickly busy pi| +51950|655592|43132|4|13|20118.28|0.02|0.00|R|F|1992-03-18|1992-03-17|1992-04-04|COLLECT COD|SHIP|he carefully ironic asymptotes. wart| +51950|533687|21218|5|37|63664.42|0.10|0.01|A|F|1992-01-27|1992-04-21|1992-02-04|COLLECT COD|MAIL|l packages.| +51951|670058|20059|1|9|9252.18|0.04|0.00|N|O|1997-01-26|1997-02-01|1997-02-20|TAKE BACK RETURN|TRUCK|ly express accounts. furiously | +51951|657563|32590|2|23|34972.19|0.07|0.03|N|O|1997-01-12|1997-02-08|1997-01-16|COLLECT COD|REG AIR|regular, re| +51976|535807|35808|1|32|58968.96|0.00|0.07|N|O|1996-02-14|1996-03-22|1996-03-04|COLLECT COD|REG AIR| unusual packages| +51976|293439|18450|2|38|54431.96|0.08|0.01|N|O|1996-04-04|1996-03-06|1996-04-23|DELIVER IN PERSON|RAIL|express requests according t| +51976|812502|12503|3|46|65065.16|0.06|0.06|N|O|1996-04-18|1996-02-21|1996-04-21|COLLECT COD|TRUCK|around the fu| +51976|720033|32548|4|19|20007.00|0.01|0.00|N|O|1996-03-01|1996-02-17|1996-03-09|TAKE BACK RETURN|MAIL|requests. furiously express deposits | +51976|590422|2934|5|43|65033.20|0.04|0.08|N|O|1996-03-28|1996-02-05|1996-04-18|DELIVER IN PERSON|AIR|ctions wake furiously! ironically| +51976|222149|34654|6|30|32133.90|0.09|0.03|N|O|1996-02-10|1996-02-03|1996-03-02|NONE|REG AIR|ependencies are among the furiously u| +51977|238513|38514|1|27|39190.50|0.07|0.03|N|O|1997-10-11|1997-10-21|1997-10-16|DELIVER IN PERSON|FOB|es. carefully fi| +51978|178969|28970|1|10|20479.60|0.09|0.03|N|O|1996-04-02|1996-04-01|1996-04-20|TAKE BACK RETURN|AIR|ymptotes cajole blithely furiously unusual| +51978|917138|17139|2|41|47358.69|0.05|0.08|N|O|1996-04-04|1996-04-04|1996-04-14|DELIVER IN PERSON|RAIL|ve the slyly regular packages. furious, sly| +51978|334782|47289|3|41|74487.57|0.08|0.05|N|O|1996-03-08|1996-04-17|1996-03-30|COLLECT COD|MAIL|as. blithely ironic depende| +51979|286970|11981|1|2|3913.92|0.10|0.02|N|O|1995-07-14|1995-05-15|1995-07-15|TAKE BACK RETURN|FOB|eodolites. blithely | +51979|100649|650|2|25|41241.00|0.07|0.02|R|F|1995-05-22|1995-05-26|1995-06-01|TAKE BACK RETURN|REG AIR|ifts. furiously r| +51979|598418|48419|3|19|28811.41|0.06|0.03|A|F|1995-04-18|1995-06-19|1995-05-13|TAKE BACK RETURN|MAIL|ges. quickly special accounts hang| +51979|597896|10408|4|8|15950.96|0.00|0.03|R|F|1995-06-04|1995-06-30|1995-06-11|TAKE BACK RETURN|REG AIR|iers are slyly ab| +51980|406630|6631|1|19|29195.59|0.01|0.06|A|F|1992-08-29|1992-07-24|1992-09-18|COLLECT COD|TRUCK|its boost carefully along the carefully | +51980|218308|30813|2|33|40467.57|0.03|0.02|A|F|1992-08-21|1992-07-24|1992-09-20|DELIVER IN PERSON|MAIL|ts after the pendi| +51980|93517|18520|3|15|22657.65|0.10|0.03|A|F|1992-07-21|1992-07-28|1992-08-07|COLLECT COD|SHIP|do boost. p| +51980|731327|31328|4|30|40748.70|0.00|0.07|R|F|1992-05-17|1992-08-07|1992-05-21|NONE|RAIL|ve to integrate bold asymptotes. e| +51980|405328|42853|5|36|44398.80|0.01|0.05|R|F|1992-06-10|1992-08-08|1992-07-04|COLLECT COD|RAIL|ar accounts doubt slyly re| +51981|467885|30395|1|19|35204.34|0.01|0.08|N|O|1998-08-12|1998-05-28|1998-08-17|TAKE BACK RETURN|MAIL| cajole above the ironic, | +51981|738584|13613|2|34|55166.70|0.04|0.05|N|O|1998-05-27|1998-07-16|1998-06-13|DELIVER IN PERSON|SHIP|requests wake along | +51981|379379|29380|3|24|35000.64|0.10|0.00|N|O|1998-05-27|1998-07-13|1998-06-16|COLLECT COD|FOB|equests haggle carefully care| +51981|220635|8148|4|48|74669.76|0.04|0.03|N|O|1998-06-11|1998-07-09|1998-07-09|TAKE BACK RETURN|MAIL|y. ironic r| +51982|706854|6855|1|44|81876.08|0.08|0.07|R|F|1992-05-27|1992-08-07|1992-06-26|DELIVER IN PERSON|SHIP| lose furious| +51983|337092|49599|1|38|42905.04|0.01|0.07|N|O|1996-09-06|1996-08-07|1996-09-29|DELIVER IN PERSON|REG AIR| theodolites integrate carefu| +51983|499151|11661|2|32|36804.16|0.06|0.02|N|O|1996-06-25|1996-08-07|1996-07-01|DELIVER IN PERSON|SHIP|final packages. blithely b| +51983|229199|41704|3|50|56409.00|0.01|0.00|N|O|1996-06-17|1996-07-09|1996-06-23|TAKE BACK RETURN|SHIP|al asymptotes sublate blithely daring ho| +51983|142887|17892|4|37|71405.56|0.01|0.08|N|O|1996-09-10|1996-08-18|1996-10-08|TAKE BACK RETURN|RAIL|unts. fluffily ironic theodolites| +51983|487574|25102|5|16|24984.80|0.09|0.07|N|O|1996-07-31|1996-06-27|1996-08-04|TAKE BACK RETURN|AIR|x unusual requests. r| +52008|236191|23704|1|49|55231.82|0.07|0.05|N|O|1996-06-07|1996-06-11|1996-06-14|DELIVER IN PERSON|RAIL| the carefully unusua| +52008|647157|34694|2|40|44164.80|0.07|0.06|N|O|1996-06-21|1996-07-21|1996-06-26|COLLECT COD|REG AIR|n accounts along the carefully iron| +52008|764213|1759|3|6|7663.08|0.10|0.08|N|O|1996-06-13|1996-06-14|1996-06-23|TAKE BACK RETURN|SHIP|cross the ev| +52009|598283|23306|1|50|69063.00|0.03|0.04|N|O|1995-07-29|1995-05-29|1995-08-16|DELIVER IN PERSON|AIR|y final theodolites. blithely final packa| +52010|159632|9633|1|40|67665.20|0.07|0.07|R|F|1993-07-23|1993-06-17|1993-08-09|DELIVER IN PERSON|MAIL|e the unusual pinto beans. quick| +52011|373088|10610|1|49|56892.43|0.09|0.01|R|F|1993-06-06|1993-04-08|1993-06-14|TAKE BACK RETURN|REG AIR|ckages cajole blit| +52011|489211|39212|2|30|36005.70|0.04|0.06|A|F|1993-04-23|1993-04-12|1993-05-04|TAKE BACK RETURN|AIR|pendencies. quickly b| +52011|164735|27239|3|4|7198.92|0.02|0.08|R|F|1993-04-10|1993-05-02|1993-04-11|COLLECT COD|RAIL|eodolites a| +52011|689730|39731|4|3|5159.10|0.05|0.08|A|F|1993-04-07|1993-04-15|1993-04-14|DELIVER IN PERSON|MAIL|instructions grow slyly carefully fina| +52011|284504|47010|5|49|72936.01|0.01|0.07|R|F|1993-05-15|1993-04-20|1993-06-11|NONE|TRUCK|ounts. furiously ironi| +52011|658388|8389|6|29|39044.15|0.03|0.06|R|F|1993-05-26|1993-05-03|1993-06-01|COLLECT COD|REG AIR|sublate fluff| +52011|518802|18803|7|19|34594.82|0.01|0.02|A|F|1993-04-30|1993-05-13|1993-05-06|COLLECT COD|RAIL| ironic, final pinto beans boost! thin| +52012|495361|32889|1|19|25770.46|0.03|0.07|N|O|1998-05-25|1998-04-16|1998-05-28|TAKE BACK RETURN|MAIL|d the dolphins aff| +52012|521559|34070|2|6|9483.18|0.00|0.08|N|O|1998-06-04|1998-05-05|1998-06-17|TAKE BACK RETURN|REG AIR|inal epitaphs kindle. regular foxes use | +52012|842102|4619|3|9|9396.54|0.09|0.02|N|O|1998-05-18|1998-03-31|1998-06-06|TAKE BACK RETURN|SHIP|posits wake acr| +52012|203031|3032|4|29|27086.58|0.03|0.03|N|O|1998-06-20|1998-04-20|1998-07-15|NONE|FOB|kages are about the regular requests. blit| +52012|331449|31450|5|5|7402.15|0.06|0.04|N|O|1998-05-24|1998-05-29|1998-06-12|TAKE BACK RETURN|AIR| blithely regular packages! blit| +52013|496505|9015|1|23|34534.04|0.00|0.03|R|F|1993-11-28|1993-10-13|1993-12-28|NONE|MAIL|ts cajole furiously. furiously even | +52013|753085|3086|2|38|43245.90|0.00|0.06|R|F|1993-10-30|1993-10-26|1993-11-24|COLLECT COD|TRUCK| bold pinto beans wake fluffily pe| +52014|961724|24244|1|23|41070.64|0.08|0.07|N|O|1995-09-04|1995-08-18|1995-09-24|COLLECT COD|MAIL|ounts sleep. quick| +52015|75476|25477|1|16|23223.52|0.09|0.08|N|O|1998-01-25|1998-02-01|1998-02-20|TAKE BACK RETURN|REG AIR|jole above the thinly regular | +52040|88390|25894|1|22|30324.58|0.06|0.08|N|O|1997-02-26|1997-03-09|1997-03-13|TAKE BACK RETURN|SHIP|above the even packages. quickly pendin| +52040|568050|43073|2|48|53665.44|0.09|0.07|N|O|1997-02-22|1997-03-16|1997-03-02|NONE|TRUCK| final deposits. iron| +52040|199745|37255|3|26|47963.24|0.03|0.05|N|O|1997-01-11|1997-02-23|1997-01-17|NONE|FOB|mong the fox| +52040|113573|26076|4|3|4759.71|0.05|0.05|N|O|1997-02-01|1997-03-17|1997-02-09|NONE|FOB|ideas snooz| +52040|816197|41230|5|34|37847.10|0.01|0.02|N|O|1997-02-17|1997-03-07|1997-03-02|DELIVER IN PERSON|TRUCK|ing, express pinto beans. furious| +52040|818845|43878|6|34|59969.20|0.02|0.07|N|O|1997-03-17|1997-02-15|1997-03-27|TAKE BACK RETURN|MAIL|s are furiously around the quickly | +52041|498635|36163|1|21|34305.81|0.00|0.05|N|O|1996-01-01|1995-12-27|1996-01-10|TAKE BACK RETURN|MAIL|ly final instructions use permanently| +52041|555657|30680|2|22|37677.86|0.07|0.00|N|O|1996-01-07|1996-02-08|1996-01-31|COLLECT COD|TRUCK|regular packages. pen| +52041|915328|15329|3|1|1343.28|0.05|0.02|N|O|1995-12-06|1995-12-27|1995-12-29|COLLECT COD|RAIL|hely. final, special courts nag slyly| +52042|639416|14441|1|45|60992.10|0.05|0.01|R|F|1992-09-27|1992-10-28|1992-10-12|COLLECT COD|AIR|osits. packages ca| +52042|657202|19716|2|21|24342.57|0.01|0.06|A|F|1992-12-17|1992-10-04|1992-12-19|COLLECT COD|TRUCK| are slyly among the even, special id| +52042|586957|36958|3|41|83801.13|0.04|0.03|R|F|1992-09-29|1992-09-20|1992-10-11|DELIVER IN PERSON|AIR|s could wake fluffily requests. ironi| +52042|975718|13276|4|39|69953.13|0.01|0.01|R|F|1992-10-18|1992-10-11|1992-10-27|TAKE BACK RETURN|REG AIR|xes. slyly | +52042|889233|14268|5|8|9777.52|0.00|0.02|A|F|1992-09-24|1992-10-18|1992-10-23|NONE|RAIL| boost qui| +52043|928872|41391|1|17|32314.11|0.08|0.06|R|F|1992-06-21|1992-06-03|1992-07-06|NONE|MAIL|xes cajole slyly: requests wake carefu| +52044|767033|4579|1|4|4400.00|0.08|0.02|N|O|1997-01-30|1997-02-12|1997-02-05|NONE|REG AIR|ending hocke| +52044|512196|12197|2|21|25371.57|0.10|0.04|N|O|1997-02-10|1997-02-18|1997-02-16|COLLECT COD|RAIL| final instructions. blithe| +52044|461971|24481|3|33|63787.35|0.05|0.05|N|O|1997-03-07|1997-02-14|1997-03-26|DELIVER IN PERSON|AIR|into beans cajole furiously carefully fi| +52044|345847|8354|4|10|18928.30|0.02|0.02|N|O|1996-12-18|1997-01-30|1996-12-25|DELIVER IN PERSON|FOB| the ironic requests. slyly ironic account| +52044|642853|17878|5|13|23345.66|0.10|0.04|N|O|1996-12-27|1997-01-20|1997-01-03|DELIVER IN PERSON|RAIL|at the regular, bold realm| +52044|420221|32730|6|13|14835.60|0.09|0.06|N|O|1997-03-13|1997-01-20|1997-03-18|DELIVER IN PERSON|AIR|epitaphs. q| +52045|414919|39936|1|16|29342.24|0.02|0.02|A|F|1995-03-30|1995-04-29|1995-04-02|NONE|MAIL|tect blithely silent platelets. ironic,| +52045|541502|4013|2|1|1543.48|0.03|0.03|N|F|1995-06-04|1995-03-16|1995-06-24|COLLECT COD|MAIL|r packages beneath the even instruc| +52046|717295|17296|1|22|28869.72|0.09|0.07|N|O|1998-05-23|1998-06-07|1998-06-13|TAKE BACK RETURN|TRUCK|e carefully special, even | +52047|328590|41097|1|46|74454.68|0.03|0.06|N|O|1997-05-08|1997-05-18|1997-05-28|COLLECT COD|MAIL|hless theodoli| +52047|598868|11380|2|20|39336.80|0.09|0.07|N|O|1997-04-02|1997-04-22|1997-04-28|DELIVER IN PERSON|AIR|slyly express theodolite| +52072|962672|230|1|10|17346.30|0.07|0.06|A|F|1993-11-29|1993-10-02|1993-12-05|NONE|TRUCK|s dazzle among the silent, express | +52072|619778|32291|2|13|22070.62|0.00|0.08|R|F|1993-10-08|1993-11-18|1993-11-07|NONE|AIR|tructions detect busily| +52072|604802|42339|3|21|35842.17|0.04|0.07|R|F|1993-11-18|1993-10-20|1993-12-12|COLLECT COD|FOB|s. carefully brave hockey pl| +52072|899892|24927|4|30|56755.50|0.00|0.02|R|F|1993-09-14|1993-10-17|1993-09-20|TAKE BACK RETURN|RAIL|ly quickly regular accounts. final ex| +52073|585998|23532|1|20|41679.40|0.03|0.07|N|O|1997-09-27|1997-09-09|1997-10-15|COLLECT COD|RAIL|l, final deposits nag slowly after the| +52073|853969|29004|2|17|32689.64|0.03|0.08|N|O|1997-08-10|1997-10-09|1997-09-06|DELIVER IN PERSON|AIR| solve blithely according to the un| +52073|647916|10429|3|1|1863.88|0.02|0.06|N|O|1997-10-04|1997-09-10|1997-10-09|COLLECT COD|MAIL| requests? ironic sauternes boost bl| +52073|520842|45863|4|15|27942.30|0.05|0.00|N|O|1997-08-14|1997-09-11|1997-08-29|NONE|TRUCK|final, bold accounts are. slyly ironi| +52074|64510|39513|1|37|54556.87|0.00|0.08|R|F|1993-02-05|1993-01-05|1993-03-07|COLLECT COD|MAIL|ic requests wak| +52074|218834|18835|2|47|82382.54|0.01|0.04|A|F|1992-11-19|1993-01-28|1992-12-01|DELIVER IN PERSON|REG AIR|usly. fluff| +52074|939498|14535|3|48|73797.60|0.04|0.04|R|F|1992-11-11|1993-01-02|1992-11-17|TAKE BACK RETURN|TRUCK|carefully ironic id| +52074|130972|30973|4|35|70103.95|0.04|0.05|A|F|1992-11-20|1993-01-07|1992-11-23|DELIVER IN PERSON|REG AIR|s wake slow requ| +52074|233294|45799|5|36|44182.08|0.09|0.06|A|F|1993-01-27|1992-12-20|1993-02-04|COLLECT COD|FOB|ar notornis wake b| +52074|957968|33007|6|3|6077.76|0.05|0.06|R|F|1993-01-26|1993-01-26|1993-02-05|TAKE BACK RETURN|TRUCK|ithely. slyly special packages are| +52075|438049|38050|1|28|27636.56|0.01|0.04|N|O|1998-05-28|1998-04-12|1998-06-26|NONE|SHIP|s instructions. blithely ev| +52075|280355|30356|2|33|44066.22|0.02|0.01|N|O|1998-02-12|1998-04-02|1998-02-25|TAKE BACK RETURN|FOB|y ironic instructions| +52075|912697|25216|3|1|1709.65|0.05|0.04|N|O|1998-04-13|1998-03-24|1998-05-12|DELIVER IN PERSON|REG AIR| pending ideas boost ironic dolphins. ca| +52076|387292|49800|1|43|59309.04|0.00|0.00|N|O|1996-04-01|1996-04-30|1996-04-30|DELIVER IN PERSON|REG AIR|ve foxes integrate bl| +52076|212343|49856|2|49|61511.17|0.01|0.06|N|O|1996-05-18|1996-03-28|1996-06-16|COLLECT COD|FOB|the slyly bol| +52076|840709|15742|3|43|70935.38|0.08|0.03|N|O|1996-03-28|1996-03-19|1996-04-25|COLLECT COD|TRUCK|encies affix slyly after the b| +52076|781110|6141|4|35|41687.80|0.04|0.02|N|O|1996-05-04|1996-03-23|1996-05-20|TAKE BACK RETURN|REG AIR|detect furiously ironic theodolites. even p| +52077|714472|26987|1|35|52025.40|0.06|0.03|R|F|1993-09-07|1993-08-31|1993-09-27|COLLECT COD|MAIL|yly. express deposit| +52077|128876|28877|2|40|76194.80|0.05|0.01|A|F|1993-07-19|1993-09-24|1993-07-29|NONE|AIR| regular deposits sleep| +52077|3753|16254|3|15|24851.25|0.09|0.02|A|F|1993-07-20|1993-09-27|1993-08-16|COLLECT COD|FOB| regular ideas. busily final th| +52077|73798|48801|4|44|77958.76|0.07|0.08|A|F|1993-09-11|1993-09-09|1993-09-12|COLLECT COD|MAIL|dencies wake carefully express dep| +52078|220951|33456|1|3|5615.82|0.01|0.02|N|O|1998-05-31|1998-04-20|1998-06-18|DELIVER IN PERSON|AIR|about the quickly regular deposit| +52078|517945|5476|2|21|41221.32|0.00|0.08|N|O|1998-05-02|1998-03-27|1998-05-31|DELIVER IN PERSON|RAIL|lyly special| +52079|741372|28915|1|10|14133.40|0.07|0.08|N|O|1995-07-07|1995-06-30|1995-07-27|DELIVER IN PERSON|RAIL|final deposits according to t| +52079|228503|16016|2|1|1431.49|0.02|0.00|N|F|1995-06-04|1995-05-20|1995-07-04|NONE|MAIL|ag regular, final packages. fluffy| +52079|444265|31790|3|34|41114.16|0.07|0.00|R|F|1995-05-25|1995-06-02|1995-06-13|DELIVER IN PERSON|AIR|boldly. carefully bold r| +52079|747992|10507|4|25|50999.00|0.10|0.06|R|F|1995-04-30|1995-05-20|1995-05-02|TAKE BACK RETURN|FOB|furiously! daringly final ideas about the c| +52079|486415|36416|5|2|2802.78|0.04|0.05|A|F|1995-05-15|1995-05-18|1995-06-11|COLLECT COD|REG AIR|ely unusual f| +52104|24210|49211|1|34|38563.14|0.01|0.06|A|F|1995-01-01|1994-11-29|1995-01-15|COLLECT COD|REG AIR|ckages-- ironic, unusual t| +52104|883234|45752|2|48|58425.12|0.07|0.03|R|F|1995-01-31|1994-11-27|1995-02-15|TAKE BACK RETURN|REG AIR|integrate fluffi| +52104|498706|36234|3|48|81824.64|0.01|0.00|A|F|1994-11-26|1994-12-23|1994-12-10|DELIVER IN PERSON|REG AIR| furiously platelets. ca| +52105|261668|11669|1|6|9777.90|0.01|0.05|N|O|1998-02-18|1998-02-23|1998-02-19|TAKE BACK RETURN|SHIP|boost pending pinto beans. blithely iron| +52105|837735|252|2|14|23417.66|0.04|0.04|N|O|1998-01-07|1998-03-15|1998-01-22|COLLECT COD|AIR|unts. unusual, | +52105|811903|49452|3|37|67149.82|0.05|0.00|N|O|1998-01-26|1998-01-18|1998-02-17|COLLECT COD|AIR|es haggle from the even, express req| +52105|640773|40774|4|47|80545.78|0.07|0.05|N|O|1998-03-19|1998-02-11|1998-03-27|TAKE BACK RETURN|TRUCK|reach special acc| +52105|466122|16123|5|28|30466.80|0.03|0.04|N|O|1998-03-07|1998-03-01|1998-03-26|DELIVER IN PERSON|MAIL|bout the care| +52105|107512|7513|6|4|6078.04|0.02|0.08|N|O|1998-02-21|1998-02-28|1998-03-05|NONE|MAIL| according to the carefully even ac| +52105|947353|34908|7|38|53211.78|0.06|0.01|N|O|1998-01-01|1998-01-26|1998-01-24|TAKE BACK RETURN|FOB|lithely above the final, fina| +52106|156906|6907|1|46|90293.40|0.10|0.07|R|F|1994-11-20|1994-10-11|1994-12-02|TAKE BACK RETURN|AIR|kages. blithely bold deposits am| +52106|113538|26041|2|39|60509.67|0.05|0.05|R|F|1994-10-27|1994-11-26|1994-11-19|COLLECT COD|RAIL|ecial theodolites are fluffi| +52106|223256|10769|3|37|43631.88|0.03|0.02|A|F|1994-11-28|1994-12-04|1994-12-19|COLLECT COD|RAIL|ithely quickly even r| +52107|129454|16961|1|3|4450.35|0.10|0.01|N|O|1998-02-08|1997-12-11|1998-02-25|NONE|FOB|arefully after the regular pa| +52107|717459|5002|2|7|10334.94|0.02|0.02|N|O|1998-01-02|1998-01-09|1998-01-25|DELIVER IN PERSON|AIR|fully even deposits cajole dependencies| +52107|331090|6103|3|50|56054.00|0.06|0.06|N|O|1997-11-07|1997-12-25|1997-12-02|NONE|MAIL|ts wake bli| +52108|990405|15444|1|34|50842.24|0.01|0.06|A|F|1993-06-28|1993-06-29|1993-07-13|TAKE BACK RETURN|SHIP|ages; even grouches boost| +52108|723481|35996|2|14|21062.30|0.07|0.04|A|F|1993-08-22|1993-07-06|1993-09-07|COLLECT COD|REG AIR|hely ironic deposits al| +52108|528838|16369|3|17|31735.77|0.02|0.01|A|F|1993-08-12|1993-05-25|1993-09-10|NONE|REG AIR|r accounts haggle fluffily abo| +52108|179328|4335|4|33|46441.56|0.03|0.01|R|F|1993-06-16|1993-05-26|1993-07-07|TAKE BACK RETURN|REG AIR|uctions are furiously after the ru| +52109|438056|565|1|40|39761.20|0.10|0.06|R|F|1992-06-03|1992-04-29|1992-06-11|DELIVER IN PERSON|RAIL|platelets cajole never eve| +52109|406062|31079|2|34|32913.36|0.03|0.05|R|F|1992-03-27|1992-05-12|1992-04-20|TAKE BACK RETURN|AIR|sly instructions.| +52109|672650|10190|3|40|64904.80|0.07|0.06|R|F|1992-04-11|1992-04-18|1992-05-06|TAKE BACK RETURN|SHIP|leep blithely special, final requests. r| +52109|215612|3125|4|39|59576.40|0.04|0.00|R|F|1992-04-07|1992-03-25|1992-05-03|NONE|AIR|ending depen| +52109|787558|37559|5|20|32910.40|0.03|0.05|A|F|1992-03-23|1992-04-29|1992-03-29|COLLECT COD|REG AIR|sual foxes impress finally after th| +52110|17918|30419|1|50|91795.50|0.05|0.01|R|F|1994-12-17|1995-02-08|1994-12-26|NONE|FOB|lyly express| +52110|137425|24932|2|14|20473.88|0.04|0.03|R|F|1995-02-25|1995-02-12|1995-03-04|TAKE BACK RETURN|FOB|tions. slow, even the| +52110|699579|12093|3|42|66298.68|0.08|0.03|R|F|1995-02-28|1995-02-24|1995-03-19|COLLECT COD|REG AIR|ons boost against the unusual, ironic id| +52110|818405|5954|4|10|13233.60|0.06|0.07|R|F|1995-02-25|1995-02-26|1995-03-09|NONE|SHIP|d accounts poa| +52110|924006|24007|5|30|30898.80|0.01|0.02|A|F|1995-01-14|1995-01-16|1995-02-01|NONE|AIR|wake. blithely pending | +52111|11712|49213|1|3|4871.13|0.10|0.07|N|O|1997-06-28|1997-04-25|1997-07-26|DELIVER IN PERSON|SHIP|ter the accounts na| +52111|829658|42175|2|6|9525.66|0.01|0.02|N|O|1997-06-14|1997-05-24|1997-06-27|COLLECT COD|AIR|nts according to the furiou| +52111|48259|48260|3|1|1207.25|0.08|0.07|N|O|1997-06-19|1997-05-25|1997-07-14|DELIVER IN PERSON|MAIL|s. furious| +52111|75205|25206|4|21|24784.20|0.08|0.02|N|O|1997-03-19|1997-04-20|1997-03-21|DELIVER IN PERSON|TRUCK|xes. furiousl| +52111|966666|29186|5|23|39850.26|0.06|0.05|N|O|1997-06-01|1997-04-15|1997-06-05|TAKE BACK RETURN|REG AIR|sts. slyly specia| +52111|742892|42893|6|42|81264.12|0.08|0.04|N|O|1997-06-01|1997-05-05|1997-06-26|TAKE BACK RETURN|FOB| unusual accounts? regul| +52111|785559|48075|7|1|1644.52|0.08|0.08|N|O|1997-04-27|1997-05-17|1997-05-11|DELIVER IN PERSON|TRUCK|pending pinto beans wake carefully regu| +52136|880673|18225|1|16|26458.08|0.03|0.06|A|F|1994-09-24|1994-08-26|1994-10-20|TAKE BACK RETURN|REG AIR| dependencies could have to haggle across| +52136|461251|36270|2|41|49701.43|0.10|0.02|R|F|1994-06-29|1994-09-11|1994-07-08|NONE|TRUCK|ges sleep against the ironic de| +52136|244112|6617|3|20|21122.00|0.06|0.08|A|F|1994-10-08|1994-07-27|1994-10-23|NONE|MAIL|lyly even accoun| +52136|786416|11447|4|1|1502.38|0.05|0.08|A|F|1994-07-11|1994-09-15|1994-08-10|COLLECT COD|TRUCK|e blithely. b| +52137|987744|12783|1|12|21980.40|0.01|0.03|A|F|1994-02-14|1994-03-10|1994-02-24|DELIVER IN PERSON|TRUCK|pending instructions w| +52137|10173|47674|2|22|23829.74|0.00|0.05|R|F|1994-02-19|1994-02-28|1994-03-17|DELIVER IN PERSON|AIR| accounts. regular, unusual pinto | +52137|967593|17594|3|29|48155.95|0.00|0.02|R|F|1994-01-27|1994-03-26|1994-02-01|TAKE BACK RETURN|FOB|ar accounts. furiously special as| +52137|321171|21172|4|23|27419.68|0.10|0.02|A|F|1994-02-02|1994-03-26|1994-02-27|COLLECT COD|FOB|inal excuses. slyly bold requests hag| +52138|971440|8998|1|43|64990.20|0.05|0.01|A|F|1994-12-29|1995-02-09|1994-12-31|TAKE BACK RETURN|MAIL| ideas try to affix carefully ironica| +52138|981374|43894|2|50|72766.50|0.10|0.08|R|F|1995-02-06|1995-02-10|1995-02-10|DELIVER IN PERSON|AIR|s doubt. furiously ironi| +52138|939384|1903|3|6|8540.04|0.04|0.02|A|F|1995-02-05|1995-02-05|1995-02-27|DELIVER IN PERSON|MAIL|uickly across the fl| +52138|215546|3059|4|28|40922.84|0.00|0.01|A|F|1995-02-06|1995-01-07|1995-02-18|DELIVER IN PERSON|RAIL|posits. acco| +52139|984365|21923|1|40|57972.80|0.08|0.03|N|O|1995-11-19|1996-01-06|1995-11-28|DELIVER IN PERSON|MAIL|ual packages da| +52139|209093|46606|2|45|45093.60|0.02|0.01|N|O|1995-12-17|1995-12-20|1996-01-11|DELIVER IN PERSON|SHIP|requests use blithely. final| +52139|213324|13325|3|27|33407.37|0.00|0.05|N|O|1995-12-05|1995-11-24|1995-12-29|TAKE BACK RETURN|FOB|ic epitaphs. bli| +52139|332121|7134|4|24|27674.64|0.10|0.07|N|O|1995-10-26|1996-01-01|1995-11-16|COLLECT COD|MAIL|pending requests wak| +52139|946774|34329|5|13|23669.49|0.09|0.03|N|O|1995-11-05|1995-12-09|1995-11-23|TAKE BACK RETURN|SHIP|y slow accounts ca| +52140|424392|36901|1|29|38174.73|0.08|0.01|R|F|1993-05-28|1993-05-20|1993-06-20|NONE|REG AIR|silent, final instructions are along the| +52140|753535|28566|2|6|9531.00|0.10|0.05|R|F|1993-05-01|1993-07-18|1993-05-23|DELIVER IN PERSON|FOB|uses. quickly ironic accounts wake sly| +52141|568107|30619|1|28|32902.24|0.03|0.04|R|F|1994-06-13|1994-08-01|1994-06-30|DELIVER IN PERSON|REG AIR|platelets lose bold pinto beans| +52141|159665|22169|2|10|17246.60|0.05|0.00|A|F|1994-06-07|1994-08-08|1994-07-05|NONE|SHIP|ackages haggle alongside of the war| +52141|486365|36366|3|37|49999.58|0.06|0.00|R|F|1994-09-05|1994-07-13|1994-09-16|DELIVER IN PERSON|FOB|itaphs boost furiously. final| +52142|671925|21926|1|31|58803.59|0.04|0.01|R|F|1992-08-03|1992-06-15|1992-08-13|NONE|FOB|al foxes kindle. final pains affix slyly| +52142|30581|18082|2|15|22673.70|0.04|0.01|R|F|1992-08-10|1992-07-21|1992-08-31|DELIVER IN PERSON|RAIL|the carefully ironic packages. ironic, f| +52143|995702|45703|1|36|64715.76|0.09|0.07|A|F|1993-02-20|1993-01-19|1993-02-27|NONE|TRUCK|uriously quickly bold deposits. | +52143|763418|13419|2|31|45922.78|0.04|0.01|R|F|1993-01-19|1993-01-02|1993-02-01|DELIVER IN PERSON|REG AIR|carefully unusual pack| +52143|763831|13832|3|18|34106.40|0.07|0.02|R|F|1993-01-30|1993-01-28|1993-02-12|NONE|TRUCK|s. slyly regular| +52143|703489|3490|4|20|29849.00|0.07|0.04|A|F|1992-12-15|1993-01-02|1992-12-25|COLLECT COD|RAIL| furiously. carefully pendin| +52143|523311|10842|5|11|14677.19|0.06|0.03|A|F|1993-01-07|1993-01-23|1993-01-23|NONE|MAIL|eans cajole express, si| +52168|37936|37937|1|25|46848.25|0.08|0.01|A|F|1995-02-09|1995-02-21|1995-02-28|DELIVER IN PERSON|MAIL|bold deposits. deposits against the care| +52168|586372|36373|2|38|55417.30|0.03|0.01|R|F|1995-05-02|1995-02-10|1995-05-20|COLLECT COD|SHIP|odolites thrash s| +52168|141658|41659|3|3|5098.95|0.00|0.01|R|F|1995-02-04|1995-03-19|1995-02-16|TAKE BACK RETURN|TRUCK|riously alongside of the slyly express| +52169|980759|43279|1|35|64389.85|0.04|0.02|N|F|1995-06-12|1995-05-16|1995-06-21|DELIVER IN PERSON|MAIL|osits wake c| +52169|615088|2625|2|43|43131.15|0.03|0.01|A|F|1995-03-22|1995-04-30|1995-04-20|TAKE BACK RETURN|REG AIR|oxes run blithely reg| +52169|774637|24638|3|23|39366.80|0.05|0.08|R|F|1995-03-20|1995-05-18|1995-04-03|DELIVER IN PERSON|FOB|s according to the express, even t| +52170|456810|19320|1|25|44169.75|0.00|0.08|A|F|1994-07-15|1994-07-22|1994-07-28|COLLECT COD|RAIL|uests about the pendi| +52170|602502|2503|2|33|46347.51|0.04|0.07|A|F|1994-06-22|1994-07-21|1994-07-07|TAKE BACK RETURN|MAIL|dependencies. quickly ironic in| +52170|251026|38542|3|11|10747.11|0.02|0.02|R|F|1994-08-26|1994-08-11|1994-09-13|COLLECT COD|SHIP|kly bold deposits. slyly ironic saut| +52170|988622|13661|4|47|80397.26|0.01|0.04|R|F|1994-09-08|1994-07-16|1994-10-03|DELIVER IN PERSON|RAIL|. excuses thrash slyly blit| +52170|755796|43342|5|47|87032.72|0.06|0.01|R|F|1994-08-01|1994-07-12|1994-08-25|DELIVER IN PERSON|MAIL| foxes-- express deposits a| +52170|656544|31571|6|20|30010.20|0.01|0.06|A|F|1994-08-22|1994-07-13|1994-09-14|DELIVER IN PERSON|TRUCK|uses against| +52171|331635|31636|1|29|48331.98|0.03|0.08|N|O|1997-03-25|1997-03-31|1997-04-04|NONE|FOB|ar accounts. blithely unu| +52171|784200|21746|2|13|16694.21|0.06|0.07|N|O|1997-04-10|1997-04-05|1997-05-06|DELIVER IN PERSON|RAIL|fluffily re| +52171|35908|23409|3|2|3687.80|0.02|0.00|N|O|1997-05-15|1997-05-06|1997-06-10|TAKE BACK RETURN|SHIP|uses-- quickly regular instructions cajo| +52171|497626|10136|4|39|63320.40|0.01|0.02|N|O|1997-05-01|1997-05-14|1997-05-05|DELIVER IN PERSON|RAIL|ing pinto beans! careful| +52171|600102|25127|5|41|41084.87|0.09|0.06|N|O|1997-06-28|1997-05-10|1997-06-29|TAKE BACK RETURN|FOB|ironic packages-- final, spec| +52171|901139|26176|6|40|45603.60|0.01|0.02|N|O|1997-05-10|1997-04-20|1997-06-03|NONE|MAIL|kly pending deposits sleep after| +52172|21712|46713|1|4|6534.84|0.03|0.01|N|O|1997-08-21|1997-07-17|1997-09-10|TAKE BACK RETURN|SHIP|n theodolites. quickly bo| +52172|900945|25982|2|50|97295.00|0.07|0.06|N|O|1997-08-29|1997-08-01|1997-09-05|NONE|MAIL|l deposits. quickly regular accou| +52172|180171|17681|3|16|20018.72|0.03|0.01|N|O|1997-08-20|1997-08-09|1997-08-28|COLLECT COD|SHIP| deposits. regular deposits sleep iron| +52173|60924|48428|1|6|11309.52|0.08|0.06|A|F|1992-12-05|1992-12-02|1992-12-19|NONE|REG AIR|atelets. furiously ironic somas aft| +52173|934863|9900|2|43|81606.26|0.09|0.05|A|F|1992-12-11|1992-12-19|1993-01-10|TAKE BACK RETURN|MAIL|. regular r| +52173|238750|13759|3|42|70927.08|0.05|0.01|R|F|1992-11-17|1993-01-02|1992-12-05|TAKE BACK RETURN|REG AIR|g carefully. iron| +52173|661438|11439|4|4|5597.60|0.00|0.05|A|F|1992-12-16|1992-12-27|1993-01-08|NONE|REG AIR|otes maintain carefully | +52173|787030|37031|5|40|44680.00|0.00|0.01|R|F|1992-11-04|1992-12-01|1992-11-16|TAKE BACK RETURN|AIR|etect furiously bli| +52174|95894|33398|1|22|41577.58|0.06|0.01|A|F|1995-03-05|1995-05-06|1995-03-12|DELIVER IN PERSON|TRUCK|ccounts. furiously reg| +52174|676216|26217|2|1|1192.18|0.04|0.07|R|F|1995-05-02|1995-04-29|1995-05-19|DELIVER IN PERSON|AIR|ar accounts. express acco| +52174|149165|11668|3|27|32782.32|0.00|0.01|R|F|1995-03-19|1995-03-17|1995-04-17|NONE|SHIP|regular requests nag among| +52174|15379|27880|4|31|40125.47|0.02|0.04|A|F|1995-02-13|1995-04-18|1995-02-16|NONE|SHIP|c ideas sleep. requests| +52174|467911|42930|5|47|88307.83|0.07|0.02|R|F|1995-04-17|1995-04-24|1995-05-12|NONE|AIR|ly ironic braids cajole after the | +52174|179405|4412|6|35|51954.00|0.04|0.04|R|F|1995-04-24|1995-04-14|1995-04-29|NONE|REG AIR|nal accounts h| +52175|690407|40408|1|39|54497.43|0.04|0.02|N|O|1995-11-04|1995-10-22|1995-11-26|DELIVER IN PERSON|FOB|refully re| +52175|666088|16089|2|46|48486.30|0.07|0.02|N|O|1995-12-13|1995-10-25|1995-12-24|NONE|RAIL|ts. ironic instruc| +52175|933711|8748|3|19|33148.73|0.10|0.02|N|O|1995-10-01|1995-10-26|1995-10-18|DELIVER IN PERSON|FOB|xpress realms boost quickly | +52175|870263|45298|4|33|40696.26|0.09|0.07|N|O|1995-09-20|1995-11-04|1995-09-23|NONE|SHIP|se blithely carefully final asymptote| +52175|494862|19881|5|43|79844.12|0.10|0.06|N|O|1995-09-13|1995-11-22|1995-09-28|DELIVER IN PERSON|RAIL|sual pinto beans | +52200|353652|28667|1|47|80165.08|0.05|0.08|R|F|1993-06-15|1993-04-24|1993-07-14|NONE|FOB|. even requests after the final foxes ha| +52200|813467|38500|2|42|57977.64|0.06|0.06|A|F|1993-04-15|1993-04-17|1993-04-26|DELIVER IN PERSON|AIR| according to| +52200|930213|30214|3|7|8702.19|0.08|0.02|R|F|1993-06-25|1993-04-26|1993-07-24|COLLECT COD|SHIP|usly unusual p| +52200|77207|2210|4|6|7105.20|0.03|0.08|A|F|1993-05-03|1993-05-18|1993-05-08|DELIVER IN PERSON|TRUCK|after the regular, bold idea| +52201|631945|44458|1|33|61938.03|0.00|0.07|R|F|1993-03-21|1993-03-02|1993-04-09|COLLECT COD|AIR|fully? accounts are furiously. expres| +52201|87913|415|2|18|34216.38|0.09|0.00|A|F|1993-04-21|1993-03-19|1993-05-10|DELIVER IN PERSON|FOB|sly special sheaves h| +52201|540402|40403|3|7|10096.66|0.09|0.02|R|F|1993-01-26|1993-03-07|1993-02-20|COLLECT COD|AIR|le furiously according| +52201|522767|10298|4|25|44743.50|0.09|0.01|R|F|1993-03-31|1993-03-17|1993-04-18|NONE|MAIL| fluffily ev| +52201|133702|33703|5|41|71163.70|0.08|0.02|R|F|1993-01-27|1993-03-04|1993-02-15|TAKE BACK RETURN|RAIL|lithely. fin| +52202|947105|9624|1|37|42626.22|0.01|0.01|N|O|1997-04-18|1997-06-20|1997-05-10|TAKE BACK RETURN|AIR|hless instructions wake| +52202|988981|38982|2|42|86937.48|0.09|0.00|N|O|1997-07-24|1997-07-03|1997-08-03|TAKE BACK RETURN|RAIL| carefully ironic excuses. fluffi| +52202|796000|21031|3|30|32879.10|0.00|0.07|N|O|1997-07-15|1997-06-16|1997-07-16|DELIVER IN PERSON|REG AIR|ges. blithely special requests use carefu| +52202|364526|14527|4|33|52486.83|0.03|0.08|N|O|1997-04-30|1997-06-21|1997-05-05|COLLECT COD|TRUCK|ess foxes haggle. pending deposits after | +52202|583834|33835|5|8|15342.48|0.10|0.07|N|O|1997-05-30|1997-05-14|1997-06-21|NONE|SHIP|ts haggle quick| +52202|495851|8361|6|2|3693.66|0.03|0.00|N|O|1997-05-16|1997-05-17|1997-05-22|DELIVER IN PERSON|REG AIR|nding requests boost slyly c| +52203|480896|5915|1|31|58182.97|0.07|0.03|R|F|1992-10-30|1992-10-15|1992-11-04|NONE|REG AIR|slyly slyly brave deposits. c| +52203|403350|28367|2|26|32586.58|0.01|0.03|R|F|1992-12-18|1992-10-19|1992-12-20|COLLECT COD|REG AIR|lyly special pinto beans nag slyly alon| +52203|95827|33331|3|12|21873.84|0.01|0.00|R|F|1992-11-18|1992-10-04|1992-12-08|NONE|RAIL|ep quickly carefully regul| +52203|564050|1584|4|22|24508.66|0.02|0.08|R|F|1992-09-06|1992-11-01|1992-09-07|NONE|AIR|s shall detect slyly. requests affix | +52203|971781|34301|5|46|85226.04|0.10|0.00|R|F|1992-11-25|1992-10-20|1992-12-10|DELIVER IN PERSON|TRUCK|ly pending cou| +52204|291132|16143|1|50|56156.00|0.06|0.01|R|F|1994-08-22|1994-08-11|1994-09-19|TAKE BACK RETURN|TRUCK|quickly ironic platelets. blith| +52204|50123|12625|2|48|51509.76|0.08|0.03|A|F|1994-10-07|1994-08-25|1994-10-21|TAKE BACK RETURN|FOB| of the fluffily f| +52205|473453|48472|1|44|62762.92|0.06|0.03|R|F|1994-08-27|1994-08-13|1994-09-09|TAKE BACK RETURN|SHIP|usly regular packages across the fur| +52205|316862|29369|2|12|22546.20|0.08|0.05|R|F|1994-10-27|1994-09-25|1994-11-26|COLLECT COD|AIR|deposits. slyl| +52205|483885|8904|3|30|56065.80|0.07|0.01|A|F|1994-09-28|1994-09-20|1994-10-16|DELIVER IN PERSON|REG AIR|refully ironic dolphins alon| +52205|647819|47820|4|29|51236.62|0.01|0.04|R|F|1994-07-31|1994-08-31|1994-08-27|TAKE BACK RETURN|REG AIR|ccording to the slyly even | +52205|884239|21791|5|34|41588.46|0.06|0.04|A|F|1994-11-09|1994-09-15|1994-12-09|COLLECT COD|TRUCK|riously pending accounts are slyl| +52205|393983|6491|6|14|29077.58|0.06|0.01|A|F|1994-11-02|1994-09-15|1994-11-24|COLLECT COD|RAIL| across the furiously spec| +52206|444695|19712|1|22|36072.74|0.09|0.02|A|F|1995-04-07|1995-04-25|1995-05-01|TAKE BACK RETURN|TRUCK|t the requests. req| +52206|976426|13984|2|19|28545.22|0.10|0.08|A|F|1995-05-05|1995-05-03|1995-05-27|NONE|AIR|yly ironic foxes. slyly bold f| +52206|787544|12575|3|14|22841.14|0.02|0.06|A|F|1995-04-17|1995-04-10|1995-04-28|TAKE BACK RETURN|AIR|ly about the slyly iro| +52206|251623|26634|4|7|11022.27|0.03|0.05|R|F|1995-05-09|1995-04-04|1995-06-03|COLLECT COD|REG AIR|e furiously ironic requests.| +52207|906242|43797|1|36|44935.20|0.05|0.08|A|F|1992-08-01|1992-08-21|1992-08-15|COLLECT COD|AIR|ly alongside of| +52207|202820|15325|2|21|36179.01|0.09|0.07|R|F|1992-07-15|1992-07-12|1992-08-02|DELIVER IN PERSON|MAIL| bold accounts. depend| +52207|792968|42969|3|29|59766.97|0.07|0.08|R|F|1992-07-22|1992-07-25|1992-07-24|NONE|REG AIR|lar packages shall | +52207|400376|12885|4|10|12763.50|0.04|0.04|R|F|1992-07-29|1992-07-12|1992-08-25|DELIVER IN PERSON|TRUCK|xcuses. furiously f| +52232|613186|38211|1|47|51660.05|0.01|0.04|A|F|1992-08-25|1992-09-25|1992-08-27|COLLECT COD|MAIL|ts haggle bravely final accounts. regula| +52233|269265|19266|1|4|4937.00|0.10|0.04|N|O|1998-08-14|1998-07-13|1998-08-20|COLLECT COD|TRUCK|ic packages along| +52234|884669|47187|1|14|23150.68|0.06|0.05|A|F|1993-03-21|1993-03-02|1993-04-03|NONE|RAIL|ath the furiously careful| +52234|625634|659|2|4|6238.40|0.10|0.01|A|F|1993-03-28|1993-02-25|1993-04-10|TAKE BACK RETURN|FOB|furiously regular pinto bea| +52234|23626|11127|3|33|51137.46|0.05|0.06|R|F|1993-02-28|1993-03-03|1993-03-05|COLLECT COD|SHIP| the bold theodolites nag slyly carefully| +52235|757441|19957|1|1|1498.41|0.08|0.08|R|F|1992-08-11|1992-08-23|1992-08-30|NONE|RAIL|nently unusual asymptotes sleep sl| +52235|310582|48101|2|45|71665.65|0.08|0.04|R|F|1992-08-12|1992-07-19|1992-08-30|COLLECT COD|REG AIR|eposits among the slyly bold foxes | +52235|938980|1499|3|1|2018.94|0.04|0.02|R|F|1992-09-12|1992-07-24|1992-09-29|NONE|AIR|arefully expres| +52235|423713|11238|4|42|68740.98|0.01|0.02|R|F|1992-08-06|1992-08-14|1992-08-31|COLLECT COD|FOB|ag carefully expr| +52235|340944|40945|5|24|47638.32|0.03|0.03|A|F|1992-06-04|1992-08-11|1992-07-03|COLLECT COD|MAIL|eas. regular pi| +52235|234339|34340|6|7|8913.24|0.06|0.06|A|F|1992-08-04|1992-08-11|1992-08-24|TAKE BACK RETURN|MAIL|iously about the slyly even requests. fo| +52236|116997|42002|1|21|42293.79|0.10|0.03|A|F|1993-07-23|1993-05-28|1993-08-19|DELIVER IN PERSON|RAIL|lithely silent instructions. slowly i| +52236|361769|49291|2|38|69568.50|0.09|0.00|A|F|1993-04-18|1993-05-24|1993-04-20|TAKE BACK RETURN|FOB|old carefully against the furiou| +52236|236749|49254|3|44|74172.12|0.04|0.08|R|F|1993-04-04|1993-05-17|1993-04-07|NONE|REG AIR|g above the| +52236|26716|26717|4|45|73921.95|0.03|0.06|R|F|1993-06-11|1993-06-22|1993-06-23|DELIVER IN PERSON|SHIP|venly ironic r| +52237|624883|24884|1|1|1807.85|0.02|0.05|N|O|1997-03-24|1997-04-13|1997-04-23|DELIVER IN PERSON|TRUCK| the furiously ironic asymptote| +52237|392664|30186|2|31|54456.15|0.07|0.03|N|O|1997-04-21|1997-04-11|1997-05-12|DELIVER IN PERSON|TRUCK|l packages? special, i| +52237|500853|13364|3|43|79714.69|0.09|0.06|N|O|1997-05-23|1997-05-08|1997-06-13|NONE|MAIL|lithely regula| +52238|98562|23565|1|47|73346.32|0.00|0.07|R|F|1995-03-22|1995-03-01|1995-04-17|TAKE BACK RETURN|MAIL|eposits. blithely ironic pa| +52238|530155|5176|2|1|1185.13|0.05|0.07|A|F|1995-03-24|1995-02-04|1995-04-14|TAKE BACK RETURN|REG AIR|ts. even accounts c| +52239|501733|26754|1|27|46837.17|0.05|0.02|N|O|1996-05-20|1996-05-29|1996-05-30|TAKE BACK RETURN|SHIP|c packages. fluffily| +52239|610874|48411|2|43|76748.12|0.10|0.07|N|O|1996-07-20|1996-06-18|1996-08-04|NONE|SHIP|even, regular pin| +52239|944093|44094|3|14|15918.70|0.02|0.07|N|O|1996-05-28|1996-05-21|1996-06-10|NONE|FOB|about the bravely iron| +52239|366976|41991|4|44|89890.24|0.06|0.02|N|O|1996-04-30|1996-07-02|1996-05-23|DELIVER IN PERSON|REG AIR|egularly even pain| +52239|756226|6227|5|50|64109.50|0.00|0.07|N|O|1996-05-08|1996-06-12|1996-06-01|NONE|AIR|ly ironic packages. carefully regul| +52264|613459|13460|1|50|68621.00|0.10|0.02|A|F|1994-04-04|1994-04-05|1994-04-08|TAKE BACK RETURN|MAIL| special accounts sleep slyly along t| +52264|393920|6428|2|10|20139.10|0.01|0.02|R|F|1994-02-20|1994-03-08|1994-03-11|COLLECT COD|RAIL|according to the furiously| +52264|599242|11754|3|47|63037.34|0.08|0.01|A|F|1994-03-02|1994-04-21|1994-03-05|NONE|SHIP|y even requests. slyly pending req| +52264|446774|21791|4|43|73992.25|0.08|0.08|A|F|1994-02-24|1994-04-08|1994-02-26|DELIVER IN PERSON|TRUCK|xpress pinto beans wake quickly caref| +52264|917158|17159|5|23|27027.53|0.04|0.00|A|F|1994-05-23|1994-04-24|1994-06-05|COLLECT COD|RAIL|egular accounts dazzle slyly. slyly ir| +52264|664256|1796|6|50|61011.00|0.03|0.02|A|F|1994-02-19|1994-05-02|1994-03-07|DELIVER IN PERSON|SHIP|ully silent packages integrate| +52264|145299|32806|7|32|43017.28|0.00|0.06|A|F|1994-04-11|1994-05-01|1994-04-20|COLLECT COD|REG AIR|express ideas. caref| +52265|24739|24740|1|43|71540.39|0.07|0.01|N|O|1997-10-24|1997-08-20|1997-10-31|DELIVER IN PERSON|TRUCK|tructions cajole after the | +52265|782903|20449|2|29|57590.23|0.01|0.05|N|O|1997-08-10|1997-08-13|1997-09-08|DELIVER IN PERSON|SHIP| integrate quickly furiously unusual p| +52265|247578|35091|3|31|47292.36|0.09|0.01|N|O|1997-09-21|1997-09-14|1997-09-22|NONE|SHIP|inal accounts cajole blithely pendin| +52265|30796|30797|4|37|63891.23|0.10|0.08|N|O|1997-08-18|1997-10-05|1997-08-22|NONE|FOB|onic accounts wake slyly. final pack| +52265|584902|34903|5|1|1986.88|0.06|0.03|N|O|1997-07-25|1997-10-04|1997-08-15|NONE|AIR|y final packages run furi| +52265|445268|45269|6|24|29117.76|0.08|0.05|N|O|1997-09-07|1997-10-05|1997-09-28|TAKE BACK RETURN|REG AIR|aggle silent s| +52266|529505|29506|1|44|67517.12|0.07|0.06|R|F|1994-08-21|1994-06-13|1994-09-05|COLLECT COD|AIR| blithely unusual excus| +52267|452099|14609|1|11|11561.77|0.06|0.06|A|F|1993-05-09|1993-03-12|1993-06-05|DELIVER IN PERSON|RAIL|yly. slyly ironic excuses haggle finally. | +52267|423751|48768|2|1|1674.73|0.02|0.02|A|F|1993-04-09|1993-03-25|1993-04-30|COLLECT COD|SHIP|unusual realms across the stealthily final| +52267|971405|8963|3|35|51672.60|0.08|0.08|A|F|1993-01-27|1993-03-04|1993-02-07|NONE|MAIL|s around the carefully pending| +52267|392400|17415|4|46|68649.94|0.06|0.08|A|F|1993-05-05|1993-04-13|1993-05-20|NONE|RAIL|cuses sleep after | +52267|63137|25639|5|22|24202.86|0.02|0.06|A|F|1993-02-12|1993-04-08|1993-03-10|TAKE BACK RETURN|MAIL|nal foxes. slyly regular pa| +52267|137024|12029|6|9|9549.18|0.04|0.04|A|F|1993-05-10|1993-04-05|1993-06-08|DELIVER IN PERSON|MAIL|ng packages | +52268|712963|37992|1|41|81013.13|0.00|0.02|N|O|1996-02-29|1996-04-01|1996-03-19|TAKE BACK RETURN|AIR|ic, special requests solve fu| +52268|752820|40366|2|28|52438.12|0.07|0.04|N|O|1996-05-22|1996-04-21|1996-06-12|TAKE BACK RETURN|MAIL|leep furiously except the inst| +52269|745274|32817|1|35|46173.40|0.08|0.06|N|O|1996-06-10|1996-04-28|1996-07-10|TAKE BACK RETURN|RAIL|carefully silent deposits| +52269|816131|41164|2|17|17800.53|0.10|0.06|N|O|1996-05-12|1996-05-28|1996-06-11|TAKE BACK RETURN|AIR|ly quick p| +52269|700215|37758|3|38|46176.84|0.09|0.01|N|O|1996-03-25|1996-05-12|1996-04-18|DELIVER IN PERSON|TRUCK|ess dolphins nag furiously. blithely fin| +52269|498190|23209|4|22|26139.74|0.08|0.06|N|O|1996-03-27|1996-04-30|1996-04-10|DELIVER IN PERSON|RAIL|le daringly carefu| +52269|74329|36831|5|36|46919.52|0.10|0.02|N|O|1996-06-30|1996-04-24|1996-07-13|TAKE BACK RETURN|TRUCK|ecial package| +52270|856212|18730|1|15|17522.55|0.08|0.04|N|O|1995-10-17|1995-10-09|1995-11-11|TAKE BACK RETURN|MAIL|s wake among t| +52270|345729|8236|2|1|1774.71|0.01|0.00|N|O|1995-11-27|1995-11-01|1995-12-02|COLLECT COD|AIR|ithely silent requests use quic| +52270|661099|23613|3|17|18021.02|0.10|0.01|N|O|1995-09-15|1995-09-23|1995-10-07|TAKE BACK RETURN|AIR|es cajole fluffily? unusual ide| +52270|79197|29198|4|45|52928.55|0.00|0.05|N|O|1995-09-15|1995-10-24|1995-09-18|COLLECT COD|FOB|uffily regular warthogs atop the carefully | +52271|267833|30339|1|15|27012.30|0.04|0.04|N|O|1998-07-22|1998-07-20|1998-07-30|TAKE BACK RETURN|MAIL| quickly expr| +52271|462903|431|2|18|33585.84|0.08|0.05|N|O|1998-07-28|1998-07-05|1998-08-15|COLLECT COD|MAIL|sublate never regular, special deposits. f| +52296|150608|609|1|9|14927.40|0.00|0.07|A|F|1993-04-01|1993-02-12|1993-04-28|COLLECT COD|TRUCK|carefully ironic pl| +52296|259068|34079|2|36|36973.80|0.09|0.01|A|F|1993-03-30|1993-02-03|1993-04-01|COLLECT COD|RAIL|r foxes sleep according to the carefu| +52296|153478|15982|3|48|73510.56|0.10|0.05|R|F|1993-03-09|1993-02-21|1993-03-30|NONE|SHIP| ironic asy| +52296|496731|21750|4|6|10366.26|0.04|0.08|A|F|1993-03-31|1993-02-04|1993-04-19|TAKE BACK RETURN|RAIL|ter the courts use de| +52296|548405|35936|5|43|62495.34|0.03|0.07|R|F|1993-02-04|1993-03-18|1993-03-06|NONE|AIR|s boost bravely. furiously regular p| +52296|32368|19869|6|46|59816.56|0.10|0.04|A|F|1993-03-20|1993-03-23|1993-04-02|TAKE BACK RETURN|AIR|intain aro| +52297|712046|12047|1|24|25392.24|0.07|0.07|A|F|1992-05-17|1992-04-11|1992-05-27|COLLECT COD|TRUCK|ts above the blithely final foxes wake | +52297|351653|26668|2|30|51139.20|0.08|0.01|A|F|1992-04-15|1992-04-07|1992-05-07|DELIVER IN PERSON|REG AIR|ges. quickly bol| +52297|216147|16148|3|17|18073.21|0.01|0.04|A|F|1992-01-21|1992-04-01|1992-02-10|DELIVER IN PERSON|REG AIR|equests engage furiously across the fluffil| +52297|777911|2942|4|11|21877.68|0.00|0.05|A|F|1992-03-15|1992-04-03|1992-03-22|NONE|AIR|haggle carefully between th| +52297|348297|35816|5|3|4035.84|0.06|0.05|A|F|1992-01-20|1992-02-27|1992-02-16|TAKE BACK RETURN|AIR|leep carefully about the furiously regular | +52298|714989|27504|1|33|66130.35|0.02|0.00|N|O|1996-08-02|1996-06-12|1996-08-16|COLLECT COD|AIR|tions use slyly. final,| +52298|809853|47402|2|6|10576.86|0.00|0.03|N|O|1996-07-03|1996-05-26|1996-07-10|NONE|FOB|ages doze against the| +52298|192211|4715|3|45|58644.45|0.02|0.00|N|O|1996-07-20|1996-06-01|1996-08-11|TAKE BACK RETURN|REG AIR|packages haggle fluffily fluf| +52298|474756|12284|4|31|53652.63|0.04|0.04|N|O|1996-06-13|1996-06-20|1996-06-24|DELIVER IN PERSON|TRUCK|ickly special packages unwind sl| +52298|210128|47641|5|39|40486.29|0.05|0.00|N|O|1996-08-02|1996-05-13|1996-08-24|DELIVER IN PERSON|RAIL|uickly above the furiously regular ac| +52298|609379|46916|6|41|52821.94|0.05|0.03|N|O|1996-06-15|1996-06-17|1996-06-22|NONE|RAIL| even gifts cajole fluffil| +52298|819178|31695|7|50|54856.50|0.06|0.07|N|O|1996-06-07|1996-06-12|1996-07-06|COLLECT COD|AIR|g to the entic| +52299|921078|8633|1|39|42862.17|0.00|0.08|N|O|1998-03-04|1998-01-11|1998-04-03|COLLECT COD|RAIL|to beans affix acc| +52299|546437|21458|2|27|40052.07|0.01|0.01|N|O|1997-12-15|1998-01-05|1997-12-16|TAKE BACK RETURN|AIR|s. express theodolites| +52300|988080|600|1|46|53729.84|0.01|0.06|A|F|1992-07-11|1992-06-11|1992-08-04|COLLECT COD|FOB|gular requests. furiously un| +52300|660248|22762|2|32|38662.72|0.01|0.07|R|F|1992-06-28|1992-05-21|1992-07-21|TAKE BACK RETURN|RAIL|e regular, express ideas. final accounts wa| +52300|779911|42427|3|21|41808.48|0.05|0.04|R|F|1992-06-25|1992-05-03|1992-07-07|NONE|FOB|egular dependencies. carefully ironic epi| +52300|960213|22733|4|49|62385.33|0.02|0.08|A|F|1992-06-20|1992-05-08|1992-06-21|TAKE BACK RETURN|MAIL| haggle furiously final accounts| +52300|283768|21284|5|19|33283.25|0.10|0.05|A|F|1992-04-18|1992-05-10|1992-05-01|DELIVER IN PERSON|MAIL|he sometimes express patterns. fin| +52301|797134|34680|1|23|28315.30|0.03|0.00|A|F|1994-09-19|1994-11-23|1994-09-30|COLLECT COD|FOB|e slyly even| +52301|428693|3710|2|13|21081.71|0.05|0.07|A|F|1994-11-23|1994-11-27|1994-11-27|NONE|REG AIR|ideas. furiously even pinto beans after th| +52301|35057|47558|3|42|41666.10|0.05|0.04|A|F|1994-12-29|1994-11-03|1995-01-28|COLLECT COD|MAIL|nstructions sleep regular warthogs. furi| +52302|558974|33997|1|2|4065.90|0.08|0.03|N|O|1996-09-14|1996-08-31|1996-10-05|TAKE BACK RETURN|FOB|deposits boost. slyly special d| +52302|660357|22871|2|3|3951.96|0.09|0.07|N|O|1996-10-12|1996-09-22|1996-10-25|COLLECT COD|AIR| regular courts: final deposits along the b| +52302|614498|27011|3|24|33899.04|0.09|0.06|N|O|1996-08-30|1996-09-23|1996-09-25|NONE|RAIL| realms. blithely regula| +52302|864669|14670|4|29|47374.98|0.08|0.07|N|O|1996-08-01|1996-09-27|1996-08-08|COLLECT COD|REG AIR|ag ironic excuses; slyly expres| +52302|482949|45459|5|3|5795.76|0.04|0.06|N|O|1996-08-20|1996-08-13|1996-09-08|TAKE BACK RETURN|AIR| pinto beans. requests ha| +52302|918272|30791|6|43|55479.89|0.08|0.00|N|O|1996-10-14|1996-09-21|1996-10-24|DELIVER IN PERSON|AIR| nag furiously ac| +52303|238961|1466|1|35|66498.25|0.10|0.05|N|O|1996-11-23|1996-11-26|1996-11-29|DELIVER IN PERSON|TRUCK|ckly bold requests. slyly| +52303|204224|16729|2|29|32718.09|0.05|0.02|N|O|1996-11-17|1996-11-03|1996-12-13|DELIVER IN PERSON|FOB|fts. carefully final instructions haggle. | +52303|392202|42203|3|43|55650.17|0.10|0.00|N|O|1996-12-03|1996-12-24|1996-12-14|NONE|MAIL|usly regular pinto b| +52303|738315|830|4|21|28418.88|0.02|0.07|N|O|1996-12-06|1996-12-12|1996-12-20|NONE|REG AIR|finally ironic| +52303|859252|9253|5|35|42392.35|0.01|0.03|N|O|1996-12-04|1996-11-12|1996-12-31|DELIVER IN PERSON|TRUCK|y regular in| +52303|439555|2064|6|18|26901.54|0.06|0.00|N|O|1997-01-12|1996-12-07|1997-02-08|DELIVER IN PERSON|REG AIR|al deposits. furiously silent requests impr| +52303|587968|480|7|50|102797.00|0.00|0.00|N|O|1996-09-28|1996-12-20|1996-10-03|TAKE BACK RETURN|FOB|c packages. special, special pinto be| +52328|976721|14279|1|2|3595.36|0.05|0.06|N|O|1996-10-15|1996-09-25|1996-10-21|NONE|AIR|tes. quickly final packages are ideas. fin| +52329|794700|7216|1|40|71786.80|0.08|0.08|A|F|1992-12-07|1993-03-01|1992-12-16|COLLECT COD|REG AIR|e final instruct| +52329|508983|8984|2|7|13943.72|0.02|0.04|A|F|1993-02-07|1993-02-02|1993-02-08|TAKE BACK RETURN|MAIL|express depen| +52329|470480|8008|3|24|34811.04|0.03|0.01|A|F|1993-01-31|1993-02-18|1993-02-14|TAKE BACK RETURN|AIR|olites are careful| +52329|342144|29663|4|32|37956.16|0.08|0.01|A|F|1993-03-30|1993-02-21|1993-04-07|DELIVER IN PERSON|SHIP|ependencies above the forges cajole quick| +52329|408418|33435|5|23|30506.97|0.07|0.06|R|F|1993-02-28|1993-01-04|1993-03-27|TAKE BACK RETURN|AIR|refully regular dependen| +52329|266526|29032|6|23|34327.73|0.10|0.01|A|F|1993-01-11|1993-02-21|1993-01-26|NONE|SHIP|egular requests. furiously ironic theodol| +52330|558728|46262|1|44|78614.80|0.01|0.02|N|O|1997-07-07|1997-07-03|1997-07-15|DELIVER IN PERSON|SHIP|y pending requests. caref| +52330|541229|28760|2|45|57159.00|0.08|0.06|N|O|1997-09-22|1997-07-18|1997-10-21|DELIVER IN PERSON|FOB|s; even requests slee| +52330|435070|10087|3|2|2010.10|0.02|0.06|N|O|1997-07-27|1997-08-07|1997-08-08|DELIVER IN PERSON|FOB| can use carefull| +52331|998822|11342|1|15|28811.70|0.04|0.00|R|F|1994-05-05|1994-05-21|1994-06-01|DELIVER IN PERSON|MAIL| foxes above | +52331|199631|12135|2|24|41535.12|0.07|0.04|A|F|1994-05-07|1994-05-12|1994-05-24|TAKE BACK RETURN|TRUCK|after the regular | +52331|183661|21171|3|38|66297.08|0.03|0.05|R|F|1994-06-28|1994-05-29|1994-07-07|DELIVER IN PERSON|MAIL|ithely. slyly sp| +52331|781481|31482|4|8|12499.60|0.05|0.04|A|F|1994-07-13|1994-06-23|1994-07-31|NONE|TRUCK|ickly quiet foxes. unusual, special foxes | +52331|346840|9347|5|29|54718.07|0.02|0.07|R|F|1994-04-18|1994-06-10|1994-05-17|TAKE BACK RETURN|SHIP|ven deposits. fluf| +52331|331106|18625|6|31|35249.79|0.01|0.08|A|F|1994-06-20|1994-05-02|1994-07-01|COLLECT COD|FOB|iously final foxes. slyly pending accoun| +52331|892795|5313|7|4|7151.00|0.01|0.03|R|F|1994-07-28|1994-05-14|1994-08-05|COLLECT COD|TRUCK|eposits. regular, pending epitaphs into| +52332|190941|3445|1|47|95501.18|0.00|0.05|R|F|1994-11-09|1994-12-22|1994-11-27|DELIVER IN PERSON|MAIL|ns about the quickly express depo| +52332|136371|11376|2|43|60516.91|0.07|0.00|A|F|1994-11-05|1994-11-06|1994-11-14|DELIVER IN PERSON|FOB|nic depend| +52332|982276|19834|3|48|65195.04|0.04|0.08|R|F|1994-11-06|1994-12-01|1994-11-25|COLLECT COD|REG AIR|the requests. never ironic instructions| +52332|99758|12260|4|11|19335.25|0.01|0.03|A|F|1994-11-23|1994-12-21|1994-12-11|DELIVER IN PERSON|AIR|beans slee| +52333|81539|6542|1|30|45615.90|0.05|0.04|N|O|1997-08-29|1997-10-20|1997-09-03|TAKE BACK RETURN|TRUCK|ding ideas above the slyly regular asympt| +52333|415650|40667|2|36|56362.68|0.02|0.03|N|O|1997-08-26|1997-08-31|1997-09-04|NONE|RAIL|al instructions. never express id| +52333|817671|5220|3|20|31772.60|0.10|0.07|N|O|1997-09-08|1997-10-01|1997-10-01|DELIVER IN PERSON|AIR|ove the unusual pinto beans. slyly| +52333|588858|38859|4|3|5840.49|0.02|0.05|N|O|1997-10-19|1997-10-18|1997-10-24|NONE|MAIL|lar depende| +52333|927606|15161|5|12|19602.72|0.08|0.05|N|O|1997-08-26|1997-09-30|1997-09-25|COLLECT COD|AIR| requests; final, regular packages cajole | +52334|854005|16523|1|6|5753.76|0.06|0.07|A|F|1992-09-26|1992-10-08|1992-10-02|NONE|AIR|nto beans. carefully busy packages except| +52334|255728|5729|2|24|40409.04|0.02|0.01|A|F|1992-09-11|1992-10-20|1992-10-09|DELIVER IN PERSON|SHIP|nal pinto beans snooze furiously. even,| +52334|8545|46046|3|36|52327.44|0.09|0.08|A|F|1992-10-13|1992-10-31|1992-11-09|DELIVER IN PERSON|REG AIR| engage. slyly bold deposits cajo| +52334|607545|20058|4|16|23240.16|0.08|0.02|A|F|1992-11-19|1992-10-20|1992-11-27|NONE|REG AIR| furiously after| +52334|998357|35915|5|26|37838.06|0.09|0.03|R|F|1992-10-31|1992-10-16|1992-11-22|COLLECT COD|REG AIR|ins. quickly express accounts cajole | +52334|377574|2589|6|3|4954.68|0.07|0.00|A|F|1992-08-19|1992-11-05|1992-09-08|TAKE BACK RETURN|REG AIR|ic accounts cajole b| +52334|872839|47874|7|26|47106.54|0.04|0.02|A|F|1992-12-01|1992-10-26|1992-12-09|TAKE BACK RETURN|MAIL|yly regular instructions. fu| +52335|797819|22850|1|6|11500.68|0.09|0.03|N|O|1997-04-07|1997-05-16|1997-04-19|DELIVER IN PERSON|RAIL|ously alongside of the furi| +52335|931139|6176|2|21|24571.89|0.04|0.02|N|O|1997-05-03|1997-05-20|1997-05-06|COLLECT COD|FOB|ilent pinto bea| +52335|648442|23467|3|36|50054.76|0.07|0.07|N|O|1997-06-01|1997-04-23|1997-06-06|COLLECT COD|AIR|snooze aft| +52335|352978|40500|4|24|48743.04|0.09|0.03|N|O|1997-02-27|1997-03-29|1997-03-22|COLLECT COD|AIR|even accounts play abo| +52335|496310|46311|5|35|45720.15|0.03|0.08|N|O|1997-06-05|1997-05-16|1997-06-14|DELIVER IN PERSON|RAIL|riously above the| +52335|473962|11490|6|19|36782.86|0.10|0.04|N|O|1997-03-26|1997-05-03|1997-04-23|COLLECT COD|REG AIR|egular packages nag along | +52360|219602|7115|1|33|50212.47|0.07|0.04|A|F|1993-02-12|1993-01-08|1993-03-03|DELIVER IN PERSON|RAIL| deposits are q| +52360|850197|198|2|15|17207.25|0.05|0.07|R|F|1992-11-16|1992-12-03|1992-11-24|COLLECT COD|SHIP|ding platelets engage carefully acr| +52361|8091|33092|1|14|13987.26|0.04|0.01|A|F|1993-08-23|1993-10-02|1993-09-19|NONE|SHIP| express requests; carefully even| +52361|983096|33097|2|18|21222.90|0.06|0.06|R|F|1993-11-27|1993-09-30|1993-12-06|COLLECT COD|AIR| enticing theo| +52361|885148|35149|3|4|4532.40|0.00|0.02|R|F|1993-11-22|1993-09-13|1993-12-11|DELIVER IN PERSON|RAIL|capades cajole carefully regular deposi| +52362|783326|20872|1|49|69055.21|0.00|0.05|N|O|1995-07-10|1995-08-24|1995-07-11|TAKE BACK RETURN|FOB|e. final asymptotes sleep even | +52363|109266|21769|1|41|52285.66|0.00|0.08|N|O|1996-03-22|1996-05-06|1996-04-04|TAKE BACK RETURN|MAIL|s. bravely fluffy | +52363|427744|15269|2|18|30090.96|0.00|0.06|N|O|1996-03-12|1996-04-04|1996-03-15|COLLECT COD|AIR|rts wake furiously | +52363|91897|16900|3|42|79333.38|0.05|0.03|N|O|1996-03-19|1996-03-19|1996-04-07|TAKE BACK RETURN|MAIL|es. sly deposits nag slyly| +52363|507998|20509|4|14|28083.58|0.00|0.03|N|O|1996-03-18|1996-05-05|1996-04-08|NONE|MAIL|blithely final instructions wake | +52363|916136|28655|5|30|34562.70|0.02|0.03|N|O|1996-02-25|1996-04-04|1996-03-18|DELIVER IN PERSON|SHIP|y. fluffily daring excuses | +52363|481126|43636|6|2|2214.20|0.05|0.04|N|O|1996-04-09|1996-03-28|1996-04-28|TAKE BACK RETURN|TRUCK|ironic, bold ideas sleep furiously | +52363|275305|25306|7|30|38408.70|0.06|0.00|N|O|1996-04-19|1996-04-01|1996-05-03|DELIVER IN PERSON|FOB|wake blithely alongside | +52364|48831|36332|1|30|53394.90|0.07|0.03|A|F|1994-08-16|1994-09-26|1994-08-17|DELIVER IN PERSON|REG AIR| across the regular asymptote| +52364|696310|21337|2|17|22206.76|0.08|0.07|R|F|1994-09-01|1994-10-01|1994-09-16|DELIVER IN PERSON|FOB|pecial accounts. ironic deposits boost ab| +52364|868848|6400|3|5|9084.00|0.04|0.00|A|F|1994-10-28|1994-08-29|1994-11-13|NONE|REG AIR|ns could have to solve about the q| +52364|721968|21969|4|4|7959.72|0.03|0.06|A|F|1994-09-12|1994-09-23|1994-09-15|TAKE BACK RETURN|REG AIR|sts according to the slyly final asy| +52364|107085|44592|5|24|26209.92|0.06|0.07|R|F|1994-09-20|1994-08-26|1994-10-16|NONE|AIR|sual courts? quickly even dept| +52364|768201|30717|6|1|1269.17|0.05|0.06|R|F|1994-08-02|1994-10-09|1994-08-30|DELIVER IN PERSON|AIR|inal dependencies? speci| +52364|149229|36736|7|20|25564.40|0.02|0.03|R|F|1994-08-24|1994-09-21|1994-09-05|NONE|FOB|ckly ironic ideas.| +52365|84672|47174|1|38|62953.46|0.05|0.01|N|O|1997-06-14|1997-04-15|1997-07-04|TAKE BACK RETURN|SHIP|ironic excuses. pending, express p| +52365|81292|18796|2|34|43291.86|0.06|0.03|N|O|1997-04-28|1997-05-08|1997-05-14|DELIVER IN PERSON|FOB|jole quickly ironic hockey players| +52365|267760|17761|3|17|29371.75|0.04|0.00|N|O|1997-05-04|1997-04-16|1997-05-06|NONE|MAIL|eep slyly. unusual, expres| +52366|119934|19935|1|18|35170.74|0.05|0.00|N|O|1995-11-13|1995-11-26|1995-11-21|TAKE BACK RETURN|AIR|ss accounts wake| +52366|724902|12445|2|18|34683.66|0.05|0.00|N|O|1996-01-01|1995-12-02|1996-01-06|TAKE BACK RETURN|FOB|ickly regular theodolites. platelets| +52366|423299|48316|3|2|2444.54|0.10|0.04|N|O|1996-02-12|1995-12-31|1996-02-29|NONE|RAIL|aphs. carefully final instructions grow car| +52366|385712|35713|4|10|17977.00|0.02|0.03|N|O|1996-02-09|1995-12-05|1996-02-20|COLLECT COD|MAIL|s cajole. pendin| +52366|654318|16832|5|6|7633.68|0.10|0.08|N|O|1996-01-20|1995-12-21|1996-02-17|NONE|FOB|furiously regular p| +52366|115810|28313|6|16|29212.96|0.06|0.03|N|O|1996-01-23|1995-12-30|1996-02-09|DELIVER IN PERSON|RAIL|slyly accoun| +52367|380018|42526|1|15|16470.00|0.00|0.04|A|F|1995-05-08|1995-03-06|1995-05-09|DELIVER IN PERSON|REG AIR|onic deposits among the | +52392|218139|30644|1|37|39113.44|0.09|0.07|N|O|1998-09-13|1998-08-19|1998-10-07|NONE|SHIP|. carefully ironic requests sle| +52392|245486|7991|2|23|32923.81|0.00|0.03|N|O|1998-07-31|1998-08-23|1998-08-26|TAKE BACK RETURN|AIR|tainments. slyly final deposit| +52393|108655|21158|1|20|33273.00|0.06|0.08|N|O|1998-02-20|1998-01-18|1998-02-25|NONE|FOB|blithely special deposits. sl| +52393|151182|38692|2|5|6165.90|0.04|0.08|N|O|1998-03-08|1998-01-12|1998-03-28|NONE|TRUCK|unts haggle carefully. quickly ironic | +52393|899958|49959|3|17|33284.47|0.08|0.05|N|O|1997-12-27|1998-01-17|1998-01-24|COLLECT COD|SHIP|le. regular deposits doze. blithely steal| +52393|583189|20723|4|12|15265.92|0.09|0.07|N|O|1997-12-01|1997-12-28|1997-12-15|DELIVER IN PERSON|AIR|ns are never furiously express as| +52393|646061|33598|5|8|8056.24|0.08|0.02|N|O|1998-01-20|1998-01-05|1998-02-16|NONE|FOB|l, regular theodolites? qu| +52393|337464|49971|6|34|51049.30|0.02|0.08|N|O|1997-12-07|1998-01-19|1997-12-29|DELIVER IN PERSON|REG AIR|e carefull| +52394|221663|46672|1|6|9507.90|0.08|0.08|R|F|1993-06-01|1993-05-26|1993-06-05|DELIVER IN PERSON|TRUCK|quickly regular foxes! slyly bold epitaphs| +52394|481396|43906|2|20|27547.40|0.00|0.06|R|F|1993-04-14|1993-05-15|1993-04-20|DELIVER IN PERSON|AIR|he slyly ironic theodolites. quick| +52394|816533|41566|3|50|72474.50|0.02|0.03|A|F|1993-04-19|1993-06-21|1993-04-30|TAKE BACK RETURN|FOB|s was furi| +52394|455788|43316|4|24|41850.24|0.08|0.07|R|F|1993-04-21|1993-05-13|1993-04-28|NONE|AIR|olites cajole. silen| +52394|417697|5222|5|28|45210.76|0.09|0.03|R|F|1993-07-22|1993-06-12|1993-08-03|TAKE BACK RETURN|RAIL|ons are: quickly ironic dependenci| +52395|518074|43095|1|17|18564.85|0.08|0.02|N|O|1996-10-07|1996-10-27|1996-10-16|TAKE BACK RETURN|TRUCK|furiously even sentiments nag quickly quick| +52395|265626|28132|2|42|66847.62|0.09|0.04|N|O|1996-10-26|1996-09-27|1996-10-30|TAKE BACK RETURN|MAIL|requests. special sheaves nag| +52396|228939|28940|1|42|78452.64|0.10|0.08|R|F|1993-08-31|1993-07-19|1993-09-17|NONE|REG AIR|final accounts | +52397|662112|12113|1|29|31148.32|0.07|0.04|N|O|1995-08-17|1995-07-18|1995-08-20|COLLECT COD|FOB|he warhorses. express| +52397|100031|12534|2|5|5155.15|0.07|0.00|N|O|1995-08-24|1995-06-12|1995-09-18|COLLECT COD|TRUCK| bold notornis haggle furiously final| +52397|219987|19988|3|39|74371.83|0.10|0.06|N|O|1995-08-16|1995-05-26|1995-09-04|COLLECT COD|MAIL|ithely among the special notornis. p| +52398|914028|14029|1|28|29175.44|0.05|0.05|N|O|1998-08-16|1998-07-26|1998-09-13|TAKE BACK RETURN|FOB|nts haggle al| +52398|58415|8416|2|25|34335.25|0.02|0.05|N|O|1998-05-30|1998-07-08|1998-06-06|COLLECT COD|TRUCK|, ironic ideas boost permanently beyo| +52398|775449|37965|3|25|38110.25|0.09|0.07|N|O|1998-08-22|1998-07-17|1998-08-29|COLLECT COD|MAIL|s cajole across the carefully | +52398|956993|32032|4|21|43048.95|0.08|0.04|N|O|1998-07-16|1998-08-01|1998-08-10|NONE|SHIP|riously alongside of the carefull| +52398|176415|13925|5|14|20879.74|0.10|0.02|N|O|1998-07-10|1998-06-17|1998-07-18|DELIVER IN PERSON|TRUCK| regular platelets. carefully silen| +52398|993080|43081|6|31|36364.24|0.10|0.05|N|O|1998-07-20|1998-06-23|1998-07-27|COLLECT COD|RAIL|ly ironic deposits maintain a| +52398|679586|17126|7|42|65753.10|0.05|0.07|N|O|1998-05-12|1998-06-24|1998-05-17|NONE|AIR|always regular dependencies. fu| +52399|786886|36887|1|20|39457.00|0.01|0.00|N|O|1997-03-28|1997-03-27|1997-04-15|NONE|SHIP|thely final pack| +52399|181396|18906|2|23|33979.97|0.01|0.03|N|O|1997-04-26|1997-03-23|1997-05-02|NONE|AIR|y. carefully s| +52399|707071|32100|3|9|9702.36|0.08|0.04|N|O|1997-04-12|1997-04-10|1997-04-26|DELIVER IN PERSON|RAIL|s. carefully ironic requests d| +52399|739756|2271|4|11|19752.92|0.07|0.06|N|O|1997-04-17|1997-03-21|1997-04-30|COLLECT COD|REG AIR|ts haggle b| +52399|66423|28925|5|22|30567.24|0.06|0.00|N|O|1997-04-28|1997-03-28|1997-05-16|NONE|AIR|fluffily silent reques| +52399|369802|32310|6|12|22461.48|0.03|0.01|N|O|1997-04-30|1997-04-30|1997-05-09|NONE|RAIL|unusual pinto beans boost carefu| +52399|250861|25872|7|45|81533.25|0.04|0.02|N|O|1997-05-18|1997-03-08|1997-05-27|DELIVER IN PERSON|MAIL|t deposits haggle blithely | +52424|218314|43323|1|7|8626.10|0.06|0.02|A|F|1994-10-02|1994-12-14|1994-10-27|DELIVER IN PERSON|TRUCK|re fluffily. c| +52424|193389|18396|2|7|10376.66|0.09|0.02|A|F|1994-10-02|1994-10-22|1994-10-07|TAKE BACK RETURN|SHIP| quietly bold dependencies. carefully final| +52424|285042|22558|3|32|32864.96|0.09|0.03|A|F|1994-10-10|1994-10-22|1994-11-01|NONE|FOB|he even, final accounts. ironic, pe| +52424|684845|47359|4|45|82341.45|0.02|0.03|R|F|1995-01-14|1994-11-30|1995-02-06|COLLECT COD|REG AIR| deposits. express accounts poa| +52424|179841|17351|5|49|94121.16|0.01|0.01|A|F|1994-10-07|1994-11-01|1994-10-10|DELIVER IN PERSON|REG AIR|e the furiously regular pac| +52425|74932|37434|1|20|38138.60|0.08|0.07|N|O|1997-07-23|1997-08-06|1997-08-01|NONE|SHIP|ously express instructions detect s| +52425|372031|47046|2|28|30884.56|0.08|0.07|N|O|1997-08-03|1997-07-30|1997-08-24|NONE|SHIP|usual asymptote| +52425|722069|9612|3|49|53460.47|0.02|0.04|N|O|1997-05-30|1997-06-29|1997-06-20|TAKE BACK RETURN|RAIL|he quietly reg| +52425|813453|1002|4|15|20496.15|0.02|0.00|N|O|1997-06-19|1997-07-06|1997-07-08|DELIVER IN PERSON|RAIL| regular, ironic ideas affix slyly. f| +52425|689074|26614|5|40|42521.60|0.06|0.06|N|O|1997-07-03|1997-08-12|1997-07-26|NONE|TRUCK|s according to the quick| +52425|266417|3933|6|7|9683.80|0.05|0.01|N|O|1997-06-02|1997-07-16|1997-06-19|DELIVER IN PERSON|FOB|inal platelets nag sly| +52425|655635|5636|7|42|66805.20|0.10|0.08|N|O|1997-06-05|1997-07-29|1997-07-05|DELIVER IN PERSON|SHIP|r deposits. slyly pending packages wake| +52426|256531|31542|1|22|32725.44|0.10|0.00|R|F|1992-08-19|1992-09-05|1992-09-07|COLLECT COD|REG AIR| regular, unu| +52427|37671|25172|1|40|64346.80|0.07|0.00|R|F|1993-05-09|1993-03-31|1993-05-11|DELIVER IN PERSON|SHIP|requests. quietly expre| +52427|135782|48285|2|15|27266.70|0.05|0.05|A|F|1993-04-30|1993-02-18|1993-05-28|NONE|REG AIR| slyly even pinto | +52427|73826|23827|3|36|64793.52|0.07|0.00|R|F|1993-01-22|1993-04-08|1993-01-23|NONE|RAIL|ial, unusual packages pro| +52428|307035|32048|1|42|43764.84|0.05|0.03|R|F|1995-02-12|1995-03-05|1995-03-02|DELIVER IN PERSON|TRUCK|ts. slyly special depo| +52428|332005|44512|2|44|45627.56|0.03|0.03|A|F|1995-02-03|1995-02-03|1995-02-08|NONE|SHIP|hely special platelets. f| +52428|4715|42216|3|37|59929.27|0.10|0.01|R|F|1995-02-12|1995-03-09|1995-03-05|TAKE BACK RETURN|REG AIR|s. blithel| +52428|242991|42992|4|23|44481.54|0.01|0.03|R|F|1995-04-10|1995-02-20|1995-05-02|COLLECT COD|RAIL|pecial platelets haggle furiously | +52429|473005|10533|1|12|11735.76|0.03|0.04|N|O|1996-12-04|1996-10-05|1996-12-29|COLLECT COD|SHIP|gle blithely. | +52429|788348|864|2|37|53143.47|0.06|0.03|N|O|1996-08-09|1996-10-01|1996-08-21|COLLECT COD|RAIL|ay about the slyly ironic foxes. unus| +52429|760883|35914|3|16|31101.60|0.06|0.05|N|O|1996-11-16|1996-10-15|1996-12-09|NONE|SHIP|e final, special package| +52429|152976|15480|4|40|81158.80|0.08|0.07|N|O|1996-08-14|1996-09-14|1996-08-27|COLLECT COD|MAIL|? carefully | +52429|59036|21538|5|38|37811.14|0.10|0.04|N|O|1996-08-09|1996-09-13|1996-09-07|NONE|MAIL|ic theodol| +52429|212092|12093|6|26|26106.08|0.09|0.06|N|O|1996-10-07|1996-10-29|1996-10-13|COLLECT COD|RAIL|s. quickly sly| +52430|252484|27495|1|26|37348.22|0.08|0.02|N|O|1996-04-24|1996-05-11|1996-05-13|COLLECT COD|FOB| asymptotes. carefully thin theodolites| +52430|492953|5463|2|30|58377.90|0.00|0.07|N|O|1996-04-24|1996-05-17|1996-04-29|TAKE BACK RETURN|TRUCK|s until the i| +52430|44321|44322|3|2|2530.64|0.08|0.01|N|O|1996-03-31|1996-06-06|1996-04-29|COLLECT COD|TRUCK|dolphins use about the packages-- ironic| +52430|897916|10434|4|4|7655.48|0.08|0.00|N|O|1996-05-11|1996-05-27|1996-05-17|TAKE BACK RETURN|AIR|y bold requests. silen| +52431|541097|16118|1|10|11380.70|0.04|0.02|A|F|1992-08-02|1992-07-02|1992-08-17|DELIVER IN PERSON|SHIP|osits could have to use alongside of the| +52456|319944|19945|1|1|1963.93|0.05|0.04|R|F|1993-11-21|1993-10-25|1993-11-22|COLLECT COD|RAIL|slyly final theodolites sleep. fluffily bo| +52457|154833|29840|1|7|13214.81|0.07|0.00|A|F|1993-08-22|1993-10-01|1993-08-27|TAKE BACK RETURN|RAIL|tes nag furiously. ironic dependencies| +52457|276748|39254|2|13|22421.49|0.10|0.05|R|F|1993-10-11|1993-11-03|1993-10-19|TAKE BACK RETURN|RAIL| courts engage blithely| +52458|804447|16964|1|34|45947.60|0.01|0.02|A|F|1994-02-02|1994-02-09|1994-02-18|COLLECT COD|AIR| silent dependen| +52458|337682|12695|2|16|27514.72|0.00|0.07|R|F|1994-01-03|1994-01-05|1994-01-19|TAKE BACK RETURN|AIR|about the | +52458|414355|39372|3|3|3807.99|0.03|0.01|A|F|1994-01-22|1994-02-11|1994-02-15|NONE|SHIP| quickly regular dep| +52458|58384|20886|4|35|46983.30|0.02|0.00|R|F|1994-01-06|1994-02-02|1994-02-04|DELIVER IN PERSON|TRUCK|oost slyly pendi| +52458|258760|46276|5|9|15468.75|0.07|0.03|R|F|1993-12-18|1994-01-02|1994-01-15|TAKE BACK RETURN|SHIP|es are fluffily unusu| +52459|370020|32528|1|5|5450.05|0.10|0.05|N|O|1995-11-09|1995-12-27|1995-11-24|TAKE BACK RETURN|FOB|es. fluffily final requests sleep a| +52459|919339|31858|2|34|46181.86|0.01|0.06|N|O|1995-11-21|1996-01-01|1995-11-29|DELIVER IN PERSON|FOB|ts. furiously bold dugouts haggl| +52459|320364|32871|3|47|65064.45|0.07|0.03|N|O|1995-10-26|1996-01-03|1995-11-02|NONE|TRUCK|ccounts boost furi| +52459|342878|17891|4|10|19208.60|0.05|0.04|N|O|1996-01-31|1995-12-10|1996-02-26|TAKE BACK RETURN|AIR|ly final packages | +52460|946148|46149|1|12|14329.20|0.02|0.05|A|F|1993-01-25|1993-01-06|1993-02-21|DELIVER IN PERSON|AIR|he gifts. quickly express pa| +52460|901394|1395|2|2|2790.70|0.04|0.07|R|F|1993-01-15|1993-01-27|1993-01-28|TAKE BACK RETURN|RAIL|final accounts along the furiously i| +52461|355500|18008|1|9|13999.41|0.09|0.05|N|O|1996-01-01|1995-12-21|1996-01-10|NONE|REG AIR| furiously regular dependencies use | +52461|888215|25767|2|29|34891.93|0.10|0.05|N|O|1995-10-27|1995-12-21|1995-11-15|NONE|AIR|nst the excuses. carefully f| +52461|217253|17254|3|24|28085.76|0.09|0.03|N|O|1995-12-24|1995-11-20|1996-01-10|TAKE BACK RETURN|RAIL|he bold accounts. quickly un| +52461|365484|27992|4|50|77473.50|0.03|0.06|N|O|1995-10-09|1995-12-13|1995-10-31|TAKE BACK RETURN|RAIL|he quickly unusual accounts haggle| +52461|674372|24373|5|7|9424.38|0.06|0.07|N|O|1995-12-12|1995-12-19|1996-01-06|NONE|SHIP|l pinto beans. sly| +52461|164468|1978|6|33|50571.18|0.01|0.05|N|O|1995-12-15|1995-12-01|1995-12-19|NONE|SHIP| slowly bold requests. | +52462|174472|11982|1|26|40208.22|0.06|0.06|N|O|1997-03-31|1997-04-13|1997-04-17|NONE|SHIP|riously requests. slyly s| +52463|168825|43832|1|16|30301.12|0.00|0.07|A|F|1992-09-22|1992-08-10|1992-09-30|NONE|MAIL|eodolites are | +52463|426696|1713|2|32|51925.44|0.02|0.05|R|F|1992-10-10|1992-09-07|1992-10-24|TAKE BACK RETURN|REG AIR|ly outside the re| +52463|477941|15469|3|3|5756.76|0.07|0.04|A|F|1992-07-12|1992-08-25|1992-07-23|NONE|TRUCK|hely regula| +52463|745843|20872|4|15|28332.15|0.07|0.05|R|F|1992-07-12|1992-08-04|1992-07-20|TAKE BACK RETURN|TRUCK| haggle among the blithely | +52463|378451|3466|5|24|36706.56|0.08|0.02|A|F|1992-10-25|1992-09-23|1992-11-05|NONE|FOB| instructions wake carefully d| +52463|622070|47095|6|33|32737.32|0.05|0.07|R|F|1992-07-09|1992-08-27|1992-07-31|NONE|FOB|uests sleep slyly bold,| +52488|474714|24715|1|11|18575.59|0.09|0.03|R|F|1995-03-21|1995-02-15|1995-03-23|DELIVER IN PERSON|TRUCK|even platelets. daring pack| +52488|506459|18970|2|30|43962.90|0.03|0.05|A|F|1994-12-29|1995-01-11|1995-01-25|COLLECT COD|FOB|n, pending pinto beans detect. pending p| +52488|46847|21848|3|21|37670.64|0.10|0.07|R|F|1995-03-01|1995-02-18|1995-03-22|DELIVER IN PERSON|SHIP|fully above the blithely silent warthogs. e| +52488|344660|19673|4|50|85232.50|0.08|0.06|A|F|1995-01-02|1995-02-03|1995-01-23|DELIVER IN PERSON|TRUCK|are ruthlessly blithely even pac| +52489|955400|5401|1|47|68401.92|0.04|0.06|R|F|1994-02-20|1994-03-16|1994-03-07|COLLECT COD|FOB| ruthless packag| +52489|400488|489|2|46|63869.16|0.04|0.03|R|F|1994-03-27|1994-03-23|1994-04-08|DELIVER IN PERSON|SHIP| sleep by the slyly final de| +52489|993084|18123|3|32|37665.28|0.00|0.07|R|F|1994-03-04|1994-04-26|1994-03-24|NONE|TRUCK|ts haggle around the | +52490|581755|6778|1|34|62448.82|0.10|0.02|N|O|1996-01-31|1996-02-07|1996-02-08|DELIVER IN PERSON|TRUCK|s. quickly slow instru| +52490|548161|35692|2|2|2418.28|0.08|0.04|N|O|1996-03-25|1996-01-26|1996-04-09|COLLECT COD|AIR|even courts run carefu| +52490|937815|25370|3|33|61141.41|0.02|0.04|N|O|1996-02-13|1996-03-16|1996-02-19|TAKE BACK RETURN|RAIL|wake fluffily of the pending requ| +52490|854088|16606|4|17|17714.68|0.09|0.00|N|O|1996-04-10|1996-03-03|1996-04-15|NONE|MAIL|of the express | +52491|24563|24564|1|4|5950.24|0.10|0.02|R|F|1994-03-10|1994-04-26|1994-03-14|TAKE BACK RETURN|FOB|lar foxes. slyly ironic asymptote| +52491|828253|3286|2|5|5906.05|0.02|0.00|A|F|1994-03-20|1994-05-21|1994-04-01|NONE|SHIP|the dependencies wak| +52491|444109|6618|3|29|30539.32|0.08|0.03|A|F|1994-03-20|1994-05-10|1994-03-23|COLLECT COD|REG AIR|dolphins nag furio| +52491|131535|44038|4|18|28197.54|0.00|0.04|R|F|1994-05-20|1994-05-07|1994-06-04|DELIVER IN PERSON|AIR|pendencies mainta| +52491|693848|43849|5|20|36836.20|0.03|0.05|A|F|1994-06-08|1994-04-05|1994-06-19|NONE|SHIP|al deposits.| +52491|493964|31492|6|7|13705.58|0.03|0.07|A|F|1994-05-05|1994-04-20|1994-05-06|NONE|REG AIR|f the bold foxes boost slyly furiously i| +52492|10769|10770|1|2|3359.52|0.02|0.05|R|F|1992-04-27|1992-04-25|1992-05-11|NONE|SHIP|hely idle as| +52492|980775|30776|2|10|18557.30|0.02|0.02|R|F|1992-03-10|1992-04-01|1992-04-01|NONE|AIR|e bold theodo| +52492|871926|46961|3|21|39855.48|0.08|0.06|R|F|1992-04-27|1992-03-20|1992-05-15|COLLECT COD|FOB|into beans. pending pinto b| +52493|616072|28585|1|23|22724.92|0.03|0.03|R|F|1994-10-25|1994-11-06|1994-11-14|TAKE BACK RETURN|RAIL|packages? theodolites dete| +52494|320455|32962|1|34|50164.96|0.10|0.06|R|F|1995-03-19|1995-03-26|1995-03-25|COLLECT COD|REG AIR|boost fluffily across the blithe| +52494|884586|9621|2|8|12564.32|0.03|0.01|R|F|1995-01-26|1995-02-25|1995-01-27|TAKE BACK RETURN|FOB|l theodolites. deposits use carefully. f| +52494|234677|22190|3|25|40291.50|0.09|0.06|A|F|1995-05-02|1995-02-28|1995-05-21|DELIVER IN PERSON|TRUCK|ages. regular, regular in| +52495|989032|14071|1|43|48202.57|0.09|0.07|A|F|1992-07-22|1992-06-26|1992-08-16|NONE|AIR|the carefully final courts. depo| +52520|542734|5245|1|46|81728.66|0.07|0.01|A|F|1994-10-19|1994-09-08|1994-11-07|NONE|MAIL|ully ironic packages use qu| +52520|719509|44538|2|26|39740.22|0.03|0.07|A|F|1994-08-15|1994-08-27|1994-09-01|COLLECT COD|RAIL|t the requests wake s| +52520|785757|10788|3|7|12899.04|0.05|0.02|R|F|1994-10-27|1994-10-18|1994-11-19|DELIVER IN PERSON|MAIL|ven requests-- furiously ironic p| +52520|210488|10489|4|12|16781.64|0.09|0.03|R|F|1994-11-05|1994-09-17|1994-12-05|DELIVER IN PERSON|RAIL|kly bold accounts thrash slyly bold de| +52521|971030|8588|1|46|50645.54|0.03|0.07|R|F|1992-03-26|1992-02-25|1992-04-02|TAKE BACK RETURN|TRUCK| pending packages do | +52521|95100|32604|2|17|18616.70|0.03|0.00|R|F|1992-04-24|1992-04-04|1992-05-11|NONE|TRUCK|l requests unwind slyly throughout the| +52521|338815|13828|3|11|20391.80|0.05|0.08|R|F|1992-02-03|1992-04-21|1992-02-28|COLLECT COD|TRUCK|ions engag| +52521|449048|24065|4|17|16949.34|0.01|0.01|A|F|1992-04-07|1992-03-10|1992-04-24|COLLECT COD|REG AIR|posits. dependencies x-ray carefully. | +52521|138297|13302|5|17|22699.93|0.02|0.07|A|F|1992-03-18|1992-03-13|1992-04-09|DELIVER IN PERSON|REG AIR|ithely spe| +52522|320405|45418|1|14|19955.46|0.04|0.06|N|O|1998-06-15|1998-06-18|1998-06-29|DELIVER IN PERSON|MAIL|l deposits. bold excus| +52522|43150|30651|2|43|47005.45|0.10|0.05|N|O|1998-07-25|1998-05-25|1998-08-21|DELIVER IN PERSON|MAIL|posits detect according to the final p| +52523|81209|6212|1|49|58319.80|0.00|0.02|N|O|1997-09-07|1997-10-06|1997-09-28|TAKE BACK RETURN|AIR|mptotes. requests shall wake between th| +52523|876631|26632|2|25|40189.75|0.09|0.03|N|O|1997-08-31|1997-10-07|1997-09-06|COLLECT COD|REG AIR|egular deposits agai| +52523|526566|1587|3|50|79627.00|0.06|0.03|N|O|1997-10-07|1997-10-11|1997-11-06|TAKE BACK RETURN|FOB|rges nod furiously | +52523|989338|1858|4|12|17127.48|0.05|0.08|N|O|1997-11-23|1997-09-24|1997-12-17|COLLECT COD|FOB|theodolites are slyly pac| +52524|591415|16438|1|49|73813.11|0.02|0.03|R|F|1993-04-24|1993-02-19|1993-05-11|COLLECT COD|REG AIR|e excuses. ca| +52524|898741|23776|2|49|85245.30|0.02|0.08|R|F|1993-01-12|1993-03-23|1993-01-16|DELIVER IN PERSON|AIR| ironic deposits. regular courts ar| +52524|128871|3876|3|31|58895.97|0.09|0.00|A|F|1993-02-16|1993-03-02|1993-03-15|COLLECT COD|REG AIR| ironic accounts. ir| +52524|926758|1795|4|4|7138.84|0.00|0.07|A|F|1993-03-30|1993-02-20|1993-04-02|NONE|AIR|efully regular accounts are furiously | +52524|5038|42539|5|33|31119.99|0.01|0.05|R|F|1993-01-05|1993-02-01|1993-01-07|TAKE BACK RETURN|MAIL|furiously unusual dependenci| +52524|673239|10779|6|2|2424.40|0.07|0.03|A|F|1993-04-14|1993-03-19|1993-04-20|TAKE BACK RETURN|AIR|hins serve besides the iro| +52525|801458|13975|1|43|58454.63|0.00|0.07|A|F|1994-10-04|1994-12-02|1994-10-20|DELIVER IN PERSON|RAIL|ges. quickly bold dolphins use fluffil| +52525|100476|12979|2|40|59058.80|0.07|0.07|R|F|1994-10-14|1994-11-06|1994-10-18|TAKE BACK RETURN|REG AIR|es are thinly| +52526|531012|43523|1|33|34418.67|0.01|0.07|N|O|1995-06-23|1995-07-15|1995-07-04|COLLECT COD|REG AIR|enticingly regular | +52526|704297|16812|2|34|44242.84|0.05|0.07|N|O|1995-07-27|1995-08-25|1995-08-09|TAKE BACK RETURN|TRUCK|sts boost blithely among the qui| +52526|108080|20583|3|23|25025.84|0.03|0.00|N|O|1995-08-21|1995-07-30|1995-09-07|DELIVER IN PERSON|TRUCK|xcuses. fluffily even pl| +52527|709552|47095|1|41|64022.32|0.05|0.07|A|F|1993-12-06|1994-02-06|1993-12-25|TAKE BACK RETURN|TRUCK|iously slyly final deposits: slyly eve| +52527|430277|17802|2|14|16901.50|0.00|0.00|A|F|1994-03-05|1994-01-02|1994-03-07|COLLECT COD|TRUCK|e ironic accounts cajole even account| +52527|656217|43757|3|35|41061.30|0.06|0.02|R|F|1994-02-19|1993-12-27|1994-03-21|COLLECT COD|RAIL|ts sleep care| +52527|28762|3763|4|35|59176.60|0.01|0.03|R|F|1993-12-14|1994-01-20|1993-12-29|COLLECT COD|RAIL|nd the slyly eve| +52552|662493|33|1|14|20376.44|0.00|0.02|R|F|1994-09-12|1994-10-19|1994-09-25|TAKE BACK RETURN|AIR|ly carefully regular excuses. bli| +52552|511072|11073|2|6|6498.30|0.06|0.07|R|F|1994-11-17|1994-10-31|1994-12-15|DELIVER IN PERSON|RAIL|ely unusual deposits. even| +52552|582984|32985|3|41|84745.36|0.04|0.07|R|F|1994-09-18|1994-10-16|1994-09-29|NONE|MAIL|ans detect careful| +52552|210230|10231|4|21|23944.62|0.05|0.01|A|F|1994-11-20|1994-10-08|1994-11-23|DELIVER IN PERSON|MAIL|lessly pending instructions are qui| +52552|327705|2718|5|43|74505.67|0.07|0.08|A|F|1994-11-26|1994-10-19|1994-12-10|COLLECT COD|SHIP|manently furi| +52553|934802|34803|1|44|80817.44|0.01|0.05|R|F|1992-12-04|1992-12-28|1992-12-06|NONE|AIR|bold requests.| +52553|201020|13525|2|1|921.01|0.03|0.02|A|F|1992-11-20|1993-01-08|1992-11-25|NONE|TRUCK|y unusual instructions. daringl| +52554|842373|17406|1|30|39459.90|0.01|0.06|A|F|1993-05-04|1993-04-24|1993-05-21|COLLECT COD|FOB| deposits behind the s| +52554|760897|48443|2|6|11747.16|0.07|0.07|A|F|1993-06-23|1993-04-28|1993-07-14|DELIVER IN PERSON|RAIL|egular excuses sleep fluffily pending, p| +52554|387744|12759|3|15|27475.95|0.05|0.04|R|F|1993-05-08|1993-05-27|1993-05-21|TAKE BACK RETURN|MAIL|bt furiously above the asympto| +52554|798067|23098|4|49|57086.47|0.01|0.04|A|F|1993-05-06|1993-05-20|1993-06-02|TAKE BACK RETURN|SHIP|unts. carefully even pi| +52554|104942|29947|5|37|72036.78|0.02|0.04|A|F|1993-03-14|1993-05-03|1993-03-25|COLLECT COD|TRUCK|press deposits will have to eat furious pac| +52555|611665|36690|1|24|37839.12|0.01|0.04|N|O|1996-06-15|1996-07-06|1996-06-20|DELIVER IN PERSON|RAIL|osits are final, ironic accou| +52555|241674|41675|2|35|56548.10|0.09|0.05|N|O|1996-08-06|1996-08-01|1996-09-02|DELIVER IN PERSON|RAIL|osits sleep according| +52555|802828|27861|3|17|29423.26|0.00|0.06|N|O|1996-06-17|1996-08-06|1996-07-06|DELIVER IN PERSON|SHIP|ngly across the| +52555|113430|13431|4|41|59180.63|0.05|0.08|N|O|1996-09-19|1996-07-08|1996-10-18|COLLECT COD|SHIP|kly according to the slyly pending theodo| +52555|403703|41228|5|4|6426.72|0.09|0.03|N|O|1996-09-12|1996-07-09|1996-09-30|COLLECT COD|REG AIR|. packages nag slyly-- ev| +52555|32575|45076|6|28|42211.96|0.07|0.06|N|O|1996-06-12|1996-08-14|1996-07-11|TAKE BACK RETURN|AIR|ve. pinto beans along the bold dol| +52556|678170|15710|1|1|1148.14|0.01|0.05|N|O|1996-03-30|1996-04-23|1996-04-25|TAKE BACK RETURN|FOB|ans doze. careful| +52556|989190|26748|2|44|56282.60|0.04|0.04|N|O|1996-04-12|1996-05-29|1996-05-06|NONE|MAIL|ng the slyly ironic packages integrat| +52556|308224|45743|3|36|44359.56|0.10|0.02|N|O|1996-06-15|1996-04-28|1996-06-28|NONE|MAIL|efully above the pending| +52556|314636|27143|4|24|39614.88|0.02|0.05|N|O|1996-07-01|1996-04-23|1996-07-31|COLLECT COD|MAIL| theodolites kindle flu| +52556|73065|23066|5|3|3114.18|0.06|0.05|N|O|1996-03-10|1996-04-15|1996-04-08|COLLECT COD|RAIL|he furiously pending ideas use alongside| +52557|357026|32041|1|34|36822.34|0.06|0.07|R|F|1992-04-18|1992-07-07|1992-05-01|DELIVER IN PERSON|FOB|ng theodolites wake. ca| +52558|947576|10095|1|2|3247.06|0.06|0.05|R|F|1994-04-29|1994-03-30|1994-05-08|COLLECT COD|RAIL|xpress excuses | +52558|907021|7022|2|49|50371.02|0.01|0.07|R|F|1994-03-26|1994-04-16|1994-03-28|TAKE BACK RETURN|REG AIR|fully final depo| +52558|286256|23772|3|4|4968.96|0.06|0.05|R|F|1994-03-19|1994-04-12|1994-04-07|NONE|RAIL| regular deposits against the ironic in| +52558|91860|29364|4|6|11111.16|0.05|0.06|A|F|1994-05-20|1994-04-10|1994-05-25|DELIVER IN PERSON|TRUCK|oxes sleep fluffily doggedl| +52558|884753|34754|5|16|27803.36|0.10|0.08|R|F|1994-02-21|1994-04-28|1994-03-05|NONE|REG AIR|equests after the s| +52559|130700|43203|1|35|60574.50|0.06|0.04|R|F|1992-05-07|1992-02-13|1992-06-02|DELIVER IN PERSON|RAIL|nusual, ironic ideas alongside of th| +52559|662647|12648|2|31|49897.91|0.00|0.06|A|F|1992-01-16|1992-02-12|1992-01-25|NONE|SHIP| pending foxes hagg| +52559|100466|12969|3|13|19063.98|0.02|0.03|R|F|1992-04-22|1992-03-19|1992-04-26|COLLECT COD|MAIL|theodolites. evenly unusual pinto| +52559|517880|42901|4|13|24672.18|0.02|0.08|A|F|1992-01-22|1992-03-31|1992-01-26|COLLECT COD|SHIP|the express decoys. regular, | +52559|9105|46606|5|49|49690.90|0.10|0.04|A|F|1992-02-02|1992-03-08|1992-02-17|COLLECT COD|MAIL| courts cajole acr| +52559|17103|4604|6|42|42844.20|0.01|0.00|R|F|1992-02-15|1992-03-03|1992-03-05|NONE|REG AIR|unts breach slyly| +52584|344790|32309|1|37|67886.86|0.10|0.08|N|O|1998-03-07|1998-04-20|1998-03-24|NONE|AIR|ely regular,| +52584|881299|31300|2|1|1280.25|0.07|0.05|N|O|1998-03-26|1998-04-06|1998-04-18|NONE|TRUCK|lithe, silent pinto bea| +52585|461130|23640|1|47|51282.17|0.08|0.06|A|F|1992-06-26|1992-08-02|1992-06-27|DELIVER IN PERSON|TRUCK|lites sleep. regular, ironic ideas| +52585|198002|23009|2|3|3300.00|0.03|0.08|R|F|1992-07-17|1992-08-09|1992-07-22|COLLECT COD|SHIP|ckages mus| +52585|810160|22677|3|38|40664.56|0.02|0.00|A|F|1992-08-21|1992-07-26|1992-09-06|NONE|FOB|are quickly. final packages nag above the | +52585|345209|32728|4|13|16304.47|0.05|0.04|R|F|1992-08-01|1992-07-29|1992-08-23|COLLECT COD|MAIL|wake among the ironically regular dolphin| +52586|759799|47345|1|47|87361.72|0.00|0.01|A|F|1994-03-14|1993-12-24|1994-04-02|NONE|RAIL|ajole slyly about the furiously ironic | +52587|517942|17943|1|2|3919.84|0.10|0.04|N|O|1997-01-30|1997-01-11|1997-02-02|NONE|REG AIR|blithely even deposits affix fu| +52587|36441|23942|2|24|33058.56|0.10|0.00|N|O|1997-03-09|1996-12-26|1997-03-24|TAKE BACK RETURN|REG AIR|xpress foxes? blithely| +52587|456401|6402|3|27|36649.26|0.00|0.07|N|O|1996-12-24|1997-01-05|1997-01-11|DELIVER IN PERSON|AIR|ar deposits nag. regular accounts cajo| +52587|722349|9892|4|42|57595.02|0.00|0.04|N|O|1997-03-04|1996-12-10|1997-03-29|TAKE BACK RETURN|MAIL|ully even platelets wake careful| +52587|513007|13008|5|29|29579.42|0.08|0.06|N|O|1997-01-13|1997-01-19|1997-01-29|NONE|MAIL|final excuses.| +52587|105485|5486|6|40|59619.20|0.09|0.05|N|O|1996-12-22|1996-12-25|1996-12-25|COLLECT COD|TRUCK| haggle boldl| +52588|510902|23413|1|25|47822.00|0.08|0.05|N|O|1996-07-18|1996-05-24|1996-08-12|NONE|REG AIR| furiously never ironic| +52588|728950|41465|2|37|73220.04|0.07|0.02|N|O|1996-07-31|1996-06-25|1996-08-22|DELIVER IN PERSON|REG AIR|larly after the carefully regular requests.| +52588|456566|19076|3|46|70036.84|0.10|0.04|N|O|1996-05-05|1996-06-21|1996-06-04|NONE|FOB|s slyly. furiously regul| +52589|487870|12889|1|44|81745.40|0.04|0.04|R|F|1994-09-07|1994-08-13|1994-09-16|TAKE BACK RETURN|MAIL|ss the furiously re| +52589|622522|47547|2|38|54890.62|0.02|0.01|A|F|1994-08-22|1994-07-29|1994-09-10|TAKE BACK RETURN|AIR| along the some| +52589|713919|38948|3|1|1932.88|0.08|0.00|A|F|1994-07-15|1994-09-02|1994-08-10|NONE|MAIL|egular accounts according to the ironic| +52589|831039|31040|4|5|4849.95|0.01|0.01|R|F|1994-06-29|1994-07-21|1994-07-23|COLLECT COD|FOB|s. blithely special| +52589|269910|19911|5|7|13159.30|0.05|0.01|A|F|1994-06-21|1994-08-05|1994-07-21|NONE|TRUCK|ilent requests wake. courts nag ca| +52589|372556|10078|6|18|29313.72|0.01|0.01|R|F|1994-10-11|1994-07-14|1994-10-24|DELIVER IN PERSON|FOB|lar, even foxe| +52590|383923|8938|1|18|36124.38|0.03|0.00|N|O|1995-10-04|1995-11-03|1995-10-20|DELIVER IN PERSON|REG AIR|iresias after the final, fi| +52590|586754|11777|2|29|53381.17|0.00|0.02|N|O|1995-09-07|1995-11-29|1995-10-03|COLLECT COD|RAIL|ular platelets nag. carefully ironic excuse| +52590|558264|8265|3|17|22478.08|0.02|0.03|N|O|1995-12-27|1995-10-09|1996-01-12|COLLECT COD|REG AIR|quests sle| +52590|730200|17743|4|7|8611.19|0.08|0.07|N|O|1995-12-05|1995-11-19|1995-12-24|TAKE BACK RETURN|REG AIR|e? blithely ironic accoun| +52590|460991|36010|5|45|87838.65|0.02|0.06|N|O|1995-10-26|1995-10-17|1995-11-24|TAKE BACK RETURN|RAIL|sts. carefully ironi| +52590|869360|19361|6|36|47855.52|0.04|0.05|N|O|1995-11-05|1995-10-20|1995-11-23|DELIVER IN PERSON|AIR|egular dep| +52591|48854|36355|1|23|41465.55|0.01|0.04|A|F|1993-09-29|1993-11-23|1993-10-22|COLLECT COD|FOB|ing to the ironic idea| +52616|15127|15128|1|47|48979.64|0.07|0.01|A|F|1995-04-28|1995-05-24|1995-05-10|DELIVER IN PERSON|REG AIR|ourts dazzle stealthily above the ironic| +52616|238761|38762|2|12|20397.00|0.09|0.08|R|F|1995-05-15|1995-05-22|1995-06-12|DELIVER IN PERSON|AIR|ounts. final req| +52616|841750|4267|3|45|76126.95|0.09|0.02|A|F|1995-05-10|1995-04-28|1995-05-22|TAKE BACK RETURN|RAIL|ccounts cajo| +52616|286131|23647|4|48|53621.76|0.08|0.02|A|F|1995-03-26|1995-06-10|1995-04-20|DELIVER IN PERSON|MAIL| carefully regular depos| +52617|276910|14426|1|38|71702.20|0.10|0.02|N|O|1996-09-09|1996-07-01|1996-10-09|NONE|SHIP|posits sleep furiously alongsid| +52617|10078|10079|2|23|22725.61|0.03|0.01|N|O|1996-07-04|1996-08-10|1996-07-26|TAKE BACK RETURN|FOB|bold foxes across the unusual, f| +52617|379591|17113|3|26|43435.08|0.10|0.01|N|O|1996-07-28|1996-07-23|1996-08-27|NONE|MAIL|ld platelets. furiously ironi| +52617|777806|15352|4|39|73467.03|0.01|0.03|N|O|1996-07-30|1996-07-02|1996-08-22|NONE|REG AIR|, final instructions i| +52617|569034|6568|5|13|14339.13|0.05|0.04|N|O|1996-07-06|1996-06-22|1996-07-31|COLLECT COD|MAIL|fully regular a| +52617|749660|37203|6|22|37611.86|0.08|0.01|N|O|1996-07-25|1996-08-12|1996-08-17|NONE|TRUCK|nding requests. slyl| +52617|524203|11734|7|40|49087.20|0.01|0.05|N|O|1996-08-19|1996-06-25|1996-08-23|TAKE BACK RETURN|TRUCK| stealthy deposits integrate d| +52618|276697|14213|1|37|61926.16|0.04|0.06|A|F|1994-09-10|1994-09-24|1994-09-19|TAKE BACK RETURN|SHIP|lly even pinto beans according| +52619|791777|41778|1|43|80355.82|0.06|0.04|A|F|1995-05-18|1995-03-31|1995-06-11|TAKE BACK RETURN|TRUCK|ve furiously according to| +52619|389578|2086|2|41|68369.96|0.02|0.06|A|F|1995-03-10|1995-04-04|1995-04-03|NONE|MAIL|usly according to the blithely final req| +52619|633727|46240|3|25|41517.25|0.05|0.01|R|F|1995-05-05|1995-05-08|1995-05-12|TAKE BACK RETURN|REG AIR|e fluffily unusu| +52620|867031|4583|1|3|2993.97|0.10|0.03|N|O|1995-09-05|1995-09-28|1995-09-06|DELIVER IN PERSON|FOB|counts unwind carefully silen| +52620|179374|29375|2|32|46507.84|0.08|0.04|N|O|1995-09-01|1995-10-02|1995-09-18|NONE|RAIL|ependencies cajole slyly. furiousl| +52620|731949|31950|3|1|1980.91|0.10|0.05|N|O|1995-10-24|1995-11-12|1995-10-30|NONE|SHIP|es play slyly pinto beans: furiously p| +52620|863807|26325|4|29|51352.04|0.03|0.06|N|O|1995-12-27|1995-09-30|1996-01-11|NONE|SHIP|ts above the ruthlessly dogg| +52620|1795|1796|5|13|22058.27|0.06|0.01|N|O|1995-12-05|1995-10-15|1995-12-07|NONE|FOB|y unusual accounts use. e| +52621|523912|48933|1|19|36781.91|0.02|0.05|N|O|1997-10-29|1997-09-21|1997-11-02|TAKE BACK RETURN|MAIL|y even asymptotes| +52621|386539|11554|2|9|14629.68|0.05|0.04|N|O|1997-07-17|1997-08-18|1997-08-11|NONE|SHIP|ate furiously bold, stealth| +52621|552862|2863|3|16|30637.44|0.00|0.01|N|O|1997-10-11|1997-08-11|1997-10-22|COLLECT COD|MAIL|ccounts eat. quickl| +52622|932235|44754|1|8|10137.52|0.03|0.05|N|O|1997-12-21|1997-11-30|1998-01-10|TAKE BACK RETURN|RAIL|uickly: final, special deposits engage b| +52623|817659|17660|1|33|52028.13|0.04|0.05|R|F|1992-05-28|1992-07-18|1992-06-21|COLLECT COD|MAIL|xpress deposits are blithely| +52623|380144|17666|2|11|13465.43|0.06|0.05|A|F|1992-06-05|1992-07-08|1992-06-16|TAKE BACK RETURN|MAIL|deposits. slyly bold deposits about | +52623|77872|15376|3|10|18498.70|0.01|0.00|A|F|1992-08-20|1992-07-21|1992-08-30|COLLECT COD|TRUCK|urts. excuses nag. blit| +52623|791147|16178|4|44|54476.84|0.01|0.03|A|F|1992-06-10|1992-06-23|1992-06-26|DELIVER IN PERSON|MAIL|lthily even accounts. exp| +52623|798419|48420|5|14|21243.32|0.01|0.01|A|F|1992-09-12|1992-07-03|1992-09-21|NONE|SHIP|ep slyly even de| +52623|17318|29819|6|44|54353.64|0.04|0.04|R|F|1992-06-01|1992-06-21|1992-06-13|TAKE BACK RETURN|RAIL|al deposits sleep furiously above the fu| +52648|422720|10245|1|24|39424.80|0.03|0.00|N|O|1996-06-01|1996-03-23|1996-06-16|TAKE BACK RETURN|FOB|bold forges? bold, regular ideas use a| +52648|643275|30812|2|30|36547.20|0.08|0.03|N|O|1996-02-14|1996-03-26|1996-03-04|NONE|REG AIR|onic requests nag carefully | +52648|521806|21807|3|23|42038.94|0.04|0.08|N|O|1996-03-06|1996-04-05|1996-04-02|NONE|REG AIR|oost fluffily | +52649|679398|16938|1|16|22037.76|0.07|0.03|N|O|1998-03-14|1998-01-15|1998-03-15|NONE|REG AIR|usly silent d| +52649|638095|25632|2|19|19628.14|0.00|0.06|N|O|1998-03-10|1998-01-27|1998-03-25|COLLECT COD|SHIP|deposits. quickly ev| +52649|451554|14064|3|28|42154.84|0.09|0.04|N|O|1998-02-01|1998-01-20|1998-02-26|TAKE BACK RETURN|REG AIR|ending ideas haggle quickly.| +52649|262187|49703|4|45|51712.65|0.07|0.01|N|O|1998-01-17|1998-02-01|1998-01-18|COLLECT COD|RAIL|ously regular notornis sleep b| +52650|743375|18404|1|23|32621.82|0.06|0.02|N|O|1996-11-02|1996-11-04|1996-11-29|DELIVER IN PERSON|TRUCK|ove the carefully unusual waters are a| +52650|897912|35464|2|47|89763.89|0.08|0.05|N|O|1996-09-19|1996-10-06|1996-10-12|TAKE BACK RETURN|TRUCK| slyly above the regular p| +52650|191133|28643|3|50|61206.50|0.05|0.04|N|O|1996-10-12|1996-09-22|1996-10-29|COLLECT COD|AIR|cuses. carefully special requests integrate| +52651|174261|24262|1|29|38722.54|0.02|0.04|A|F|1994-05-13|1994-06-24|1994-05-22|TAKE BACK RETURN|TRUCK|ickly against t| +52651|801843|14360|2|26|45364.80|0.06|0.06|R|F|1994-07-19|1994-07-05|1994-07-31|TAKE BACK RETURN|MAIL|sly express deposits boost en| +52651|563547|26059|3|20|32210.40|0.06|0.05|R|F|1994-05-10|1994-06-15|1994-05-20|COLLECT COD|TRUCK|he furiously pending a| +52651|519224|31735|4|21|26107.20|0.01|0.03|R|F|1994-08-30|1994-07-26|1994-09-16|COLLECT COD|FOB|unts affix carefully above the quickly even| +52651|594496|44497|5|18|28628.46|0.04|0.01|R|F|1994-08-02|1994-07-23|1994-08-13|TAKE BACK RETURN|REG AIR|? quickly even pinto beans| +52651|686891|11918|6|18|33801.48|0.04|0.06|R|F|1994-06-20|1994-06-13|1994-06-23|DELIVER IN PERSON|SHIP|efully regular| +52652|106046|43553|1|42|44185.68|0.03|0.08|A|F|1994-08-22|1994-10-06|1994-09-11|DELIVER IN PERSON|TRUCK|ep carefully above the carefull| +52653|440864|15881|1|24|43316.16|0.07|0.08|R|F|1994-08-16|1994-07-23|1994-08-23|NONE|TRUCK|the slyly fi| +52653|600430|431|2|50|66520.00|0.03|0.01|A|F|1994-06-24|1994-08-08|1994-07-21|COLLECT COD|SHIP|mptotes. fluffily even requests u| +52654|239454|1959|1|29|40409.76|0.05|0.07|N|O|1996-04-10|1996-03-08|1996-05-08|COLLECT COD|TRUCK|ing platel| +52655|853739|16257|1|24|40624.56|0.10|0.05|R|F|1994-06-25|1994-05-16|1994-07-12|TAKE BACK RETURN|SHIP| beans. quickly regula| +52655|791301|3817|2|47|65436.69|0.02|0.01|A|F|1994-05-10|1994-06-07|1994-05-28|NONE|RAIL|etect sly packages. quickly | +52655|381903|44411|3|34|67486.26|0.05|0.08|A|F|1994-06-03|1994-04-23|1994-06-13|DELIVER IN PERSON|REG AIR|affix furiously. regular accounts abo| +52655|641184|16209|4|24|27003.60|0.04|0.04|A|F|1994-04-06|1994-04-14|1994-04-09|COLLECT COD|SHIP|uriously final requests; hockey players | +52655|369003|44018|5|44|47167.56|0.10|0.01|A|F|1994-04-07|1994-05-18|1994-04-14|DELIVER IN PERSON|SHIP|l pinto beans need to ha| +52680|949213|11732|1|29|36602.93|0.06|0.06|R|F|1993-01-21|1993-01-08|1993-02-20|TAKE BACK RETURN|RAIL|ously blithely final instructions. express | +52680|415237|15238|2|1|1152.21|0.06|0.04|A|F|1993-02-03|1992-11-30|1993-02-16|DELIVER IN PERSON|FOB|furiously careful braids above the even d| +52680|882475|44993|3|41|59754.63|0.02|0.01|A|F|1992-11-16|1992-12-17|1992-12-14|DELIVER IN PERSON|AIR|deposits. pinto beans poach. slyl| +52680|745575|8090|4|9|14584.86|0.09|0.03|A|F|1992-11-01|1993-01-05|1992-11-19|COLLECT COD|TRUCK| unwind along the bold deposits. ca| +52680|872239|22240|5|27|32702.13|0.00|0.02|R|F|1993-01-30|1992-12-08|1993-02-15|COLLECT COD|SHIP|sly even, special deposits. fox| +52680|715178|2721|6|46|54884.44|0.05|0.03|A|F|1993-01-06|1992-11-28|1993-01-08|DELIVER IN PERSON|SHIP|es along the blithely special package| +52681|112306|24809|1|30|39549.00|0.07|0.05|N|O|1998-04-27|1998-06-03|1998-05-22|NONE|MAIL|r deposits maintain blithely abov| +52681|515872|40893|2|4|7551.40|0.01|0.07|N|O|1998-05-09|1998-05-26|1998-05-21|DELIVER IN PERSON|RAIL|latelets wake furiou| +52681|259257|21763|3|4|4864.96|0.05|0.01|N|O|1998-08-06|1998-05-14|1998-08-28|DELIVER IN PERSON|TRUCK|lly alongside of the blithely furious d| +52681|324848|12367|4|20|37456.60|0.04|0.00|N|O|1998-06-01|1998-05-18|1998-06-27|DELIVER IN PERSON|AIR|quests. even| +52681|713091|25606|5|12|13248.72|0.01|0.01|N|O|1998-04-12|1998-06-10|1998-04-27|NONE|SHIP|ully express| +52681|914643|14644|6|35|58016.00|0.00|0.02|N|O|1998-07-29|1998-05-11|1998-08-04|TAKE BACK RETURN|RAIL|e slyly ironic gifts. sometimes quiet | +52682|813737|1286|1|35|57774.15|0.07|0.08|A|F|1992-03-01|1992-05-19|1992-03-21|TAKE BACK RETURN|SHIP|lyly? slyl| +52682|477693|15221|2|38|63485.46|0.08|0.06|A|F|1992-03-07|1992-04-20|1992-03-11|DELIVER IN PERSON|TRUCK|usly ironic warhorses. blithely final de| +52682|582857|32858|3|26|50435.58|0.10|0.01|A|F|1992-04-28|1992-05-07|1992-05-23|COLLECT COD|SHIP|ccounts wak| +52682|61258|48762|4|10|12192.50|0.07|0.08|A|F|1992-04-30|1992-04-30|1992-05-08|TAKE BACK RETURN|MAIL|bits! carefully unus| +52682|550299|300|5|28|37779.56|0.05|0.00|A|F|1992-04-18|1992-04-11|1992-05-14|COLLECT COD|TRUCK|press asymptotes sleep bli| +52682|864818|39853|6|16|28524.32|0.05|0.02|R|F|1992-04-22|1992-04-15|1992-05-08|COLLECT COD|MAIL|st the slyly regu| +52683|173986|23987|1|1|2059.98|0.08|0.07|A|F|1994-11-19|1994-10-26|1994-12-03|TAKE BACK RETURN|FOB|gular theodolites. qu| +52683|168679|31183|2|50|87383.50|0.08|0.04|R|F|1994-11-26|1994-11-09|1994-12-01|TAKE BACK RETURN|TRUCK|sual warthogs boost furiously accor| +52683|982193|44713|3|19|24227.85|0.04|0.03|A|F|1994-11-01|1994-09-28|1994-11-27|NONE|AIR|counts are quickly quic| +52683|702117|27146|4|42|47001.36|0.00|0.07|R|F|1994-12-03|1994-11-10|1994-12-14|COLLECT COD|REG AIR| slyly blithel| +52683|468298|18299|5|35|44319.45|0.00|0.08|A|F|1994-09-10|1994-10-19|1994-09-30|NONE|TRUCK| cajole furio| +52684|975515|25516|1|6|9542.82|0.02|0.00|A|F|1994-03-27|1993-12-28|1994-04-20|DELIVER IN PERSON|FOB|ts are furiou| +52684|465196|40215|2|38|44124.46|0.07|0.06|A|F|1994-01-19|1994-02-08|1994-01-27|DELIVER IN PERSON|RAIL|s detect slyly-- f| +52684|543063|18084|3|8|8848.32|0.04|0.02|R|F|1994-02-25|1994-02-14|1994-03-06|NONE|TRUCK|e of the furiously| +52684|248855|36368|4|43|77565.12|0.00|0.05|R|F|1993-12-01|1994-01-11|1993-12-12|TAKE BACK RETURN|MAIL|are slyly slyly regular requests. express d| +52685|958865|8866|1|30|57714.60|0.01|0.07|R|F|1994-04-22|1994-05-02|1994-04-28|TAKE BACK RETURN|REG AIR| express, ironic requests? | +52685|633254|20791|2|44|52237.68|0.04|0.02|A|F|1994-05-01|1994-05-11|1994-05-07|COLLECT COD|RAIL|totes engage quickly under the furiously fi| +52685|86475|23979|3|13|18999.11|0.09|0.08|A|F|1994-04-16|1994-05-30|1994-05-12|NONE|MAIL|out the pinto beans was after t| +52686|47491|22492|1|21|30208.29|0.03|0.05|N|O|1998-08-05|1998-10-10|1998-08-07|COLLECT COD|REG AIR| quickly special | +52687|751572|39118|1|24|38964.96|0.08|0.07|N|O|1996-07-15|1996-08-20|1996-08-05|TAKE BACK RETURN|MAIL|y regular theodolites boost. foxe| +52687|668041|43068|2|47|47423.47|0.07|0.06|N|O|1996-07-26|1996-07-23|1996-08-25|NONE|FOB|carefully. carefully quiet| +52687|757136|19652|3|21|25055.10|0.01|0.01|N|O|1996-07-11|1996-07-23|1996-07-13|TAKE BACK RETURN|SHIP|uickly deposits. iron| +52687|171459|21460|4|26|39791.70|0.01|0.00|N|O|1996-07-12|1996-09-06|1996-08-08|COLLECT COD|FOB|ajole regular| +52687|702698|27727|5|29|49319.14|0.10|0.07|N|O|1996-07-13|1996-07-29|1996-07-22|COLLECT COD|FOB|the even pinto beans.| +52712|890030|15065|1|47|47939.53|0.00|0.07|A|F|1994-02-23|1993-12-28|1994-02-26|COLLECT COD|SHIP|es. carefully ironic platelets are furio| +52712|722774|10317|2|49|88040.26|0.03|0.06|R|F|1993-11-26|1993-12-22|1993-11-27|TAKE BACK RETURN|TRUCK|ymptotes. sly| +52712|646117|46118|3|10|10630.80|0.10|0.01|A|F|1994-03-19|1994-01-03|1994-04-10|TAKE BACK RETURN|MAIL|packages. quickly ironic pa| +52712|276355|1366|4|5|6656.70|0.06|0.07|R|F|1993-12-29|1993-12-24|1994-01-26|DELIVER IN PERSON|REG AIR|luffily according to the pendi| +52713|238169|25682|1|34|37643.10|0.07|0.01|A|F|1992-05-28|1992-04-05|1992-05-29|NONE|SHIP|foxes. ideas| +52713|894576|44577|2|35|54968.55|0.10|0.05|R|F|1992-02-22|1992-05-09|1992-03-14|NONE|REG AIR|dolites solve ab| +52713|125082|12589|3|11|12177.88|0.09|0.07|R|F|1992-04-20|1992-04-23|1992-05-06|NONE|TRUCK|ests. blithely idle deposits integrate furi| +52714|149673|49674|1|24|41344.08|0.03|0.02|N|O|1998-08-28|1998-08-18|1998-09-10|COLLECT COD|RAIL|ronic instructions boost foxes| +52714|544016|31547|2|27|28619.73|0.02|0.05|N|O|1998-07-16|1998-08-15|1998-07-29|TAKE BACK RETURN|SHIP|e slyly notornis? furiously st| +52714|273322|23323|3|21|27201.51|0.03|0.04|N|O|1998-08-12|1998-09-07|1998-09-04|DELIVER IN PERSON|REG AIR|lyly regular requests caj| +52714|722766|47795|4|23|41140.79|0.05|0.02|N|O|1998-07-24|1998-08-19|1998-08-12|NONE|TRUCK|along the slyly regular | +52714|512208|24719|5|36|43926.48|0.09|0.04|N|O|1998-10-06|1998-09-13|1998-10-16|NONE|TRUCK|re slyly blithely pending depths. even| +52715|910383|10384|1|29|40406.86|0.02|0.05|N|O|1995-10-27|1995-12-26|1995-11-01|TAKE BACK RETURN|SHIP| platelets. blithely | +52715|797040|47041|2|7|7959.07|0.04|0.08|N|O|1995-12-20|1996-01-10|1995-12-29|TAKE BACK RETURN|REG AIR|he furious| +52715|846491|46492|3|35|50310.75|0.02|0.08|N|O|1996-01-15|1995-12-11|1996-02-11|DELIVER IN PERSON|RAIL|uickly even packages cajole blithely spe| +52715|961192|11193|4|38|47619.70|0.08|0.05|N|O|1996-01-27|1996-01-06|1996-02-26|DELIVER IN PERSON|MAIL|ously. special, u| +52715|749776|49777|5|20|36514.80|0.08|0.03|N|O|1995-12-12|1995-12-01|1995-12-30|COLLECT COD|RAIL|ajole quickly accor| +52715|476202|13730|6|46|54196.28|0.09|0.01|N|O|1995-11-07|1996-01-04|1995-11-12|DELIVER IN PERSON|AIR|le carefully| +52715|511051|36072|7|25|26550.75|0.07|0.01|N|O|1995-10-28|1996-01-09|1995-11-04|NONE|RAIL|nal packages sleep ruthlessly across| +52716|230790|5799|1|25|43019.50|0.06|0.01|A|F|1995-03-12|1995-04-04|1995-03-22|COLLECT COD|AIR|y pending som| +52716|878226|40744|2|50|60209.00|0.06|0.05|A|F|1995-04-23|1995-04-17|1995-05-23|TAKE BACK RETURN|AIR|ular requests. silent,| +52716|332601|20120|3|50|81679.50|0.03|0.05|R|F|1995-04-06|1995-03-18|1995-04-13|NONE|RAIL|e bold foxes. ironic deposits alongside| +52716|15205|15206|4|27|30245.40|0.01|0.02|R|F|1995-03-05|1995-03-20|1995-03-08|DELIVER IN PERSON|RAIL|t the ironic reques| +52717|948834|36389|1|30|56483.70|0.03|0.02|A|F|1994-01-13|1994-02-06|1994-01-23|COLLECT COD|RAIL|uickly express decoys | +52717|37380|37381|2|42|55329.96|0.02|0.08|A|F|1994-03-16|1994-02-06|1994-04-02|TAKE BACK RETURN|FOB|s wake quickly. careful| +52717|239699|27212|3|13|21302.84|0.05|0.07|A|F|1994-02-06|1993-12-21|1994-03-04|NONE|FOB|ular accounts. carefully regu| +52717|612017|49554|4|5|4644.90|0.04|0.03|R|F|1993-12-30|1993-12-28|1994-01-05|DELIVER IN PERSON|SHIP| carefully pending pe| +52717|165382|2892|5|5|7236.90|0.07|0.07|R|F|1994-02-04|1994-01-04|1994-03-05|COLLECT COD|REG AIR|nts cajole. | +52717|570833|45856|6|13|24749.53|0.07|0.00|R|F|1994-03-02|1994-01-24|1994-03-11|DELIVER IN PERSON|TRUCK|ses against the furiously expres| +52717|981351|43871|7|18|25781.58|0.03|0.02|A|F|1994-02-26|1994-01-15|1994-03-22|COLLECT COD|MAIL|r instructions. requ| +52718|560705|10706|1|27|47673.36|0.09|0.00|R|F|1993-11-21|1993-12-28|1993-12-02|TAKE BACK RETURN|AIR|tterns haggle aga| +52719|343999|44000|1|22|44945.56|0.04|0.02|R|F|1994-05-23|1994-07-13|1994-05-27|NONE|RAIL| the pinto beans. final ins| +52719|575524|38036|2|27|43186.50|0.10|0.01|A|F|1994-06-30|1994-07-17|1994-07-30|NONE|TRUCK|pinto beans. specia| +52719|831004|31005|3|39|36463.44|0.05|0.06|A|F|1994-08-17|1994-06-21|1994-09-11|DELIVER IN PERSON|FOB|packages. carefully final pinto beans hagg| +52719|676335|26336|4|43|56385.90|0.09|0.08|A|F|1994-08-14|1994-07-23|1994-08-19|DELIVER IN PERSON|FOB|tions. pending, regular deposits cajole | +52719|152090|2091|5|23|26268.07|0.09|0.08|R|F|1994-06-27|1994-07-29|1994-07-01|TAKE BACK RETURN|RAIL|uickly about | +52719|166121|41128|6|20|23742.40|0.06|0.06|A|F|1994-05-21|1994-06-24|1994-05-30|COLLECT COD|MAIL| the regular, express depo| +52744|921166|33685|1|15|17806.80|0.02|0.03|A|F|1995-05-21|1995-04-29|1995-06-05|TAKE BACK RETURN|SHIP|tealthy dependencies. regular, e| +52744|36695|36696|2|32|52214.08|0.05|0.07|A|F|1995-05-31|1995-03-27|1995-06-05|DELIVER IN PERSON|TRUCK|latelets-- sl| +52744|725372|37887|3|32|44714.88|0.00|0.02|N|F|1995-06-05|1995-03-26|1995-06-27|COLLECT COD|RAIL|y quickly bold excuses. en| +52744|324270|11789|4|20|25885.20|0.10|0.01|A|F|1995-06-03|1995-04-21|1995-06-07|DELIVER IN PERSON|AIR|the close asymptotes ma| +52744|992052|17091|5|25|28600.25|0.01|0.00|A|F|1995-02-16|1995-04-21|1995-03-07|TAKE BACK RETURN|REG AIR|ular packages. furiously final e| +52744|406444|6445|6|44|59418.48|0.07|0.03|R|F|1995-04-07|1995-04-30|1995-04-22|TAKE BACK RETURN|AIR|ithely sly theodolites oug| +52745|988677|13716|1|3|5296.89|0.04|0.03|N|O|1996-02-24|1996-01-06|1996-03-18|NONE|AIR| use regularly about the| +52745|685310|22850|2|37|47925.36|0.09|0.00|N|O|1996-01-12|1996-01-11|1996-01-26|DELIVER IN PERSON|MAIL|ar deposits. fur| +52745|5029|17530|3|9|8406.18|0.07|0.07|N|O|1996-01-22|1996-01-26|1996-02-21|COLLECT COD|SHIP|ckages cajole sl| +52745|507993|33014|4|5|10004.85|0.03|0.03|N|O|1995-12-06|1995-12-30|1995-12-31|DELIVER IN PERSON|RAIL|eas haggle busily.| +52745|831853|6886|5|37|66037.97|0.01|0.07|N|O|1996-02-20|1995-12-20|1996-02-29|COLLECT COD|AIR|ickly regular foxes. even deposits aga| +52745|950685|25724|6|11|19092.04|0.02|0.08|N|O|1995-12-03|1995-12-06|1995-12-04|DELIVER IN PERSON|FOB|inal packages haggle. furiously eve| +52745|161591|11592|7|17|28094.03|0.10|0.01|N|O|1995-11-08|1995-12-07|1995-11-22|DELIVER IN PERSON|FOB| are. quickly bold accounts thras| +52746|845560|8077|1|33|49682.16|0.04|0.04|A|F|1992-11-02|1992-11-02|1992-11-26|NONE|FOB|uld wake furiousl| +52746|325930|38437|2|24|46942.08|0.04|0.06|A|F|1992-11-07|1992-10-30|1992-12-01|NONE|FOB| sometimes even frets a| +52746|897371|34923|3|34|46523.22|0.09|0.02|A|F|1992-10-27|1992-11-18|1992-11-20|TAKE BACK RETURN|FOB|ests are after the final foxes. excus| +52746|98496|23499|4|50|74724.50|0.09|0.02|R|F|1993-01-08|1992-12-15|1993-01-11|NONE|FOB|final, regular excuses.| +52746|412949|12950|5|13|24204.96|0.05|0.03|A|F|1992-10-19|1992-11-03|1992-10-21|TAKE BACK RETURN|REG AIR|cajole furiously even r| +52747|150800|38310|1|15|27762.00|0.06|0.06|N|O|1997-10-23|1997-10-02|1997-11-08|COLLECT COD|AIR|e quickly quickly iron| +52747|486381|48891|2|49|67000.64|0.07|0.03|N|O|1997-08-30|1997-10-15|1997-09-08|TAKE BACK RETURN|SHIP|s. even, blithe deposits boos| +52747|601948|1949|3|7|12949.37|0.07|0.08|N|O|1997-10-06|1997-09-25|1997-10-25|NONE|TRUCK|y regular accounts sleep| +52747|929813|29814|4|46|84767.42|0.00|0.08|N|O|1997-09-08|1997-10-08|1997-09-24|TAKE BACK RETURN|MAIL|sly above the furiously pending theodolite| +52747|351405|38927|5|48|69906.72|0.04|0.04|N|O|1997-10-26|1997-10-12|1997-11-15|TAKE BACK RETURN|TRUCK|egular accounts cajole furiously b| +52747|61456|48960|6|26|36853.70|0.00|0.01|N|O|1997-11-18|1997-10-06|1997-11-20|TAKE BACK RETURN|FOB|e slyly fin| +52747|890773|3291|7|28|49384.44|0.04|0.00|N|O|1997-09-27|1997-09-26|1997-10-06|COLLECT COD|SHIP|ess accounts. slyly unusual f| +52748|218167|43176|1|7|7596.05|0.02|0.03|R|F|1994-01-21|1993-12-18|1994-01-31|TAKE BACK RETURN|REG AIR| ideas use bravely even deposits. | +52748|721759|46788|2|46|81913.12|0.06|0.07|A|F|1993-10-28|1993-12-11|1993-11-09|TAKE BACK RETURN|RAIL|ckages. ideas de| +52748|599244|36778|3|3|4029.66|0.00|0.06|R|F|1993-10-09|1993-12-03|1993-10-17|TAKE BACK RETURN|SHIP|riously ironic requests. ruthlessly ironic| +52748|479253|4272|4|49|60379.27|0.05|0.08|R|F|1993-11-28|1993-12-01|1993-12-15|COLLECT COD|RAIL|e among the bol| +52749|8774|8775|1|29|48800.33|0.07|0.08|N|O|1997-02-27|1997-04-20|1997-03-23|DELIVER IN PERSON|FOB|ly final excuses nag quickly. | +52749|463527|26037|2|4|5962.00|0.10|0.04|N|O|1997-03-05|1997-04-19|1997-03-27|DELIVER IN PERSON|FOB|, special platel| +52749|482735|32736|3|44|75579.24|0.08|0.07|N|O|1997-04-04|1997-04-14|1997-04-23|TAKE BACK RETURN|AIR|press dolphins along the regular, | +52749|319371|31878|4|14|19465.04|0.05|0.04|N|O|1997-03-30|1997-03-19|1997-04-02|NONE|FOB|ans against the even requ| +52749|664987|2527|5|33|64414.35|0.10|0.00|N|O|1997-03-21|1997-04-30|1997-03-28|NONE|FOB|d the pending, even packages; | +52749|420787|8312|6|22|37570.72|0.06|0.08|N|O|1997-02-07|1997-04-12|1997-03-06|DELIVER IN PERSON|MAIL|carefully. slyly e| +52750|107449|32454|1|5|7282.20|0.07|0.06|A|F|1993-05-28|1993-03-08|1993-06-01|COLLECT COD|SHIP| regular pint| +52750|889197|26749|2|26|30839.90|0.08|0.06|R|F|1993-05-28|1993-03-23|1993-06-27|NONE|RAIL| requests dazzle caref| +52750|721798|34313|3|24|43674.24|0.05|0.00|A|F|1993-04-15|1993-04-16|1993-04-23|DELIVER IN PERSON|AIR|each slyly| +52750|251556|14062|4|44|66331.76|0.05|0.00|A|F|1993-05-29|1993-03-11|1993-06-22|TAKE BACK RETURN|SHIP|ccounts about the express, regu| +52750|890819|28371|5|26|47054.02|0.00|0.07|R|F|1993-04-07|1993-03-11|1993-04-10|TAKE BACK RETURN|AIR|s sleep furiously. slyly | +52751|627050|14587|1|27|26379.54|0.10|0.02|R|F|1993-12-18|1994-03-10|1994-01-12|TAKE BACK RETURN|FOB|le fluffily fluffily e| +52751|819037|44070|2|42|40151.58|0.04|0.01|R|F|1994-04-11|1994-01-18|1994-05-06|COLLECT COD|SHIP|egular dependencies slee| +52751|538199|38200|3|13|16083.21|0.00|0.07|A|F|1994-03-04|1994-03-03|1994-03-19|TAKE BACK RETURN|RAIL|und the regular requests cajole at| +52751|499157|24176|4|37|42776.81|0.06|0.06|R|F|1994-03-01|1994-02-05|1994-03-31|COLLECT COD|RAIL|ke carefully special hockey| +52751|316205|3724|5|9|10990.71|0.08|0.07|R|F|1993-12-22|1994-02-18|1994-01-11|COLLECT COD|REG AIR|arefully ironic courts across the slyly re| +52751|448477|36002|6|50|71272.50|0.03|0.00|A|F|1994-03-15|1994-01-30|1994-04-07|COLLECT COD|MAIL|y toward the regular, | +52776|467390|17391|1|9|12216.33|0.10|0.03|N|O|1996-01-22|1995-11-02|1996-02-17|NONE|FOB| shall have to haggle bold, final reque| +52776|407117|7118|2|12|12289.08|0.07|0.03|N|O|1995-11-10|1995-12-05|1995-11-18|NONE|MAIL|of the bli| +52777|925198|12753|1|10|12231.50|0.07|0.08|N|O|1996-03-05|1996-03-20|1996-03-29|NONE|AIR|fully even fox| +52777|793863|43864|2|17|33266.11|0.05|0.01|N|O|1996-03-02|1996-03-31|1996-03-15|TAKE BACK RETURN|SHIP|l requests above the final ideas cajole | +52777|440036|27561|3|11|10736.11|0.06|0.06|N|O|1996-04-03|1996-04-11|1996-04-08|TAKE BACK RETURN|AIR|. quickly bold pinto beans use blit| +52778|11695|36696|1|18|28920.42|0.00|0.01|R|F|1995-01-10|1994-12-05|1995-01-15|COLLECT COD|REG AIR|blithely carefully final packag| +52778|557104|7105|2|29|33671.32|0.07|0.00|R|F|1995-01-27|1995-01-18|1995-02-25|DELIVER IN PERSON|RAIL|of the thinly ironic pinto beans. | +52778|244787|7292|3|6|10390.62|0.07|0.02|R|F|1994-11-22|1994-12-23|1994-12-17|DELIVER IN PERSON|REG AIR|cial, final packages lo| +52778|119860|44865|4|24|45116.64|0.06|0.01|A|F|1995-01-10|1994-12-22|1995-01-16|DELIVER IN PERSON|MAIL|nic grouches nag carefully carefu| +52778|475822|38332|5|25|44945.00|0.09|0.05|R|F|1995-02-19|1994-12-21|1995-03-18|TAKE BACK RETURN|RAIL|usual theodolites cajole fur| +52778|123850|36353|6|9|16864.65|0.10|0.08|A|F|1995-01-18|1995-01-26|1995-02-08|COLLECT COD|MAIL|final depths nag. slyly s| +52779|551913|26936|1|25|49122.25|0.00|0.04|A|F|1993-10-04|1993-09-09|1993-10-28|TAKE BACK RETURN|REG AIR| final dependencies sleep quickly | +52779|997486|35044|2|29|45919.76|0.10|0.08|A|F|1993-06-27|1993-08-20|1993-07-14|COLLECT COD|REG AIR|carefully pen| +52779|746779|9294|3|2|3651.48|0.01|0.04|A|F|1993-06-24|1993-08-02|1993-07-05|TAKE BACK RETURN|RAIL|ular pinto beans. blithely unusual fo| +52780|13995|1496|1|8|15271.92|0.03|0.05|A|F|1992-10-25|1992-09-02|1992-10-27|COLLECT COD|TRUCK| slyly unusual ideas. slyly bold pi| +52780|208732|8733|2|8|13125.76|0.04|0.08|R|F|1992-08-30|1992-09-18|1992-09-07|DELIVER IN PERSON|RAIL|uriously special requests are | +52780|158360|45870|3|30|42550.80|0.07|0.08|R|F|1992-11-17|1992-09-13|1992-12-10|TAKE BACK RETURN|REG AIR|final excuses. carefully i| +52780|543870|6381|4|33|63157.05|0.01|0.01|R|F|1992-10-08|1992-10-08|1992-11-03|TAKE BACK RETURN|AIR|nusual requests above| +52780|821994|47027|5|31|59394.45|0.05|0.04|A|F|1992-08-17|1992-10-08|1992-09-05|DELIVER IN PERSON|TRUCK|s haggle slyly a| +52780|245990|20999|6|28|54207.44|0.10|0.01|R|F|1992-10-06|1992-10-10|1992-10-25|TAKE BACK RETURN|SHIP|nusual ins| +52780|346822|46823|7|12|22425.72|0.03|0.05|R|F|1992-08-27|1992-09-27|1992-08-30|DELIVER IN PERSON|MAIL|posits nag. regular packages ha| +52781|22379|34880|1|10|13013.70|0.06|0.02|R|F|1994-01-03|1994-01-26|1994-01-28|NONE|MAIL| outside the furiously unusual idea| +52781|121666|46671|2|36|60755.76|0.02|0.03|A|F|1994-02-02|1993-12-03|1994-02-07|NONE|SHIP|to the carefully regular foxes. bl| +52781|827796|40313|3|46|79292.50|0.01|0.05|R|F|1994-01-31|1993-12-08|1994-02-12|DELIVER IN PERSON|AIR|. fluffily ironic foxes detect q| +52782|256503|44019|1|7|10216.43|0.07|0.02|N|F|1995-06-16|1995-07-11|1995-07-06|TAKE BACK RETURN|SHIP|he blithely r| +52783|372762|22763|1|24|44034.00|0.05|0.05|N|O|1998-07-25|1998-09-05|1998-08-06|COLLECT COD|RAIL| furiously silent dinos sleep fluffily bl| +52783|996610|21649|2|24|40957.68|0.05|0.02|N|O|1998-08-03|1998-09-04|1998-09-01|NONE|AIR|deposits detect across the fluffil| +52783|24251|24252|3|32|37608.00|0.05|0.05|N|O|1998-08-04|1998-10-18|1998-08-25|COLLECT COD|FOB|ly regular pinto beans. daring a| +52783|585376|35377|4|6|8768.10|0.00|0.02|N|O|1998-07-22|1998-09-30|1998-07-23|TAKE BACK RETURN|FOB| close accounts haggle fluf| +52808|254389|29400|1|10|13433.70|0.06|0.01|R|F|1995-01-13|1995-01-04|1995-02-02|COLLECT COD|REG AIR|ly even pinto beans wake quickly. slyly i| +52808|511208|11209|2|35|42671.30|0.08|0.06|A|F|1995-02-04|1994-11-24|1995-02-14|NONE|RAIL|ake furiously furiously| +52808|869411|31929|3|8|11042.96|0.09|0.02|R|F|1994-12-21|1994-12-23|1994-12-29|COLLECT COD|SHIP|e carefully. carefully bold theodol| +52808|185809|35810|4|2|3789.60|0.00|0.02|R|F|1995-01-22|1994-12-23|1995-02-14|DELIVER IN PERSON|MAIL|y slyly final packag| +52809|547332|9843|1|32|44137.92|0.09|0.07|A|F|1994-06-12|1994-04-04|1994-06-17|COLLECT COD|MAIL|uests. platelets cajole blith| +52809|3380|28381|2|3|3850.14|0.10|0.03|R|F|1994-05-04|1994-05-29|1994-06-01|NONE|REG AIR|s. requests use between| +52810|382448|44956|1|37|56625.91|0.04|0.02|N|O|1996-06-16|1996-08-24|1996-07-16|DELIVER IN PERSON|SHIP|egular instructions. final platele| +52810|795555|20586|2|22|36311.44|0.04|0.03|N|O|1996-07-22|1996-07-16|1996-08-17|NONE|REG AIR|efully! furiously r| +52810|883652|46170|3|33|53975.13|0.00|0.00|N|O|1996-08-31|1996-07-14|1996-09-05|NONE|FOB|ve to sleep. bold, final packag| +52810|531349|31350|4|15|20704.80|0.00|0.07|N|O|1996-07-20|1996-08-30|1996-08-06|TAKE BACK RETURN|FOB|according to the slyly r| +52810|370604|45619|5|28|46888.52|0.10|0.01|N|O|1996-08-28|1996-07-29|1996-09-07|NONE|TRUCK| regular, | +52810|729771|17314|6|41|73830.34|0.00|0.07|N|O|1996-07-22|1996-08-10|1996-07-31|DELIVER IN PERSON|FOB|o beans. fu| +52810|253179|40695|7|39|44154.24|0.10|0.02|N|O|1996-07-05|1996-07-30|1996-07-31|TAKE BACK RETURN|REG AIR|he thinly unusual requests. even deposits| +52811|170302|7812|1|40|54892.00|0.02|0.08|N|O|1998-06-08|1998-08-11|1998-06-17|NONE|FOB|oost slyly against the regular, | +52811|264196|39207|2|12|13922.16|0.01|0.03|N|O|1998-08-10|1998-08-06|1998-08-15|NONE|FOB|ly deposits. brave, silent| +52811|330107|17626|3|23|26153.07|0.04|0.08|N|O|1998-06-06|1998-07-20|1998-07-04|TAKE BACK RETURN|AIR|ss packages are furiously a| +52811|105780|30785|4|3|5357.34|0.10|0.01|N|O|1998-06-10|1998-07-21|1998-06-16|DELIVER IN PERSON|REG AIR|ly express platelets wake slyly. de| +52811|843019|5536|5|15|14429.55|0.08|0.07|N|O|1998-06-07|1998-07-01|1998-06-13|TAKE BACK RETURN|REG AIR|sts. quickly regular| +52812|669215|31729|1|41|48551.38|0.04|0.06|A|F|1993-04-30|1993-05-28|1993-05-22|NONE|REG AIR|e quickly pending accounts breach sl| +52812|490512|15531|2|17|25542.33|0.05|0.01|A|F|1993-05-01|1993-05-20|1993-05-20|DELIVER IN PERSON|AIR| furiously final requests. blithe| +52812|24332|49333|3|30|37689.90|0.05|0.00|R|F|1993-07-04|1993-04-24|1993-07-14|TAKE BACK RETURN|AIR|ackages are| +52812|939659|39660|4|43|73040.23|0.02|0.03|R|F|1993-04-03|1993-05-08|1993-05-03|TAKE BACK RETURN|RAIL|e. ironic, ironic deposits are even pi| +52812|841768|29317|5|45|76937.40|0.05|0.05|A|F|1993-06-19|1993-04-11|1993-06-23|NONE|REG AIR|nst the pinto be| +52812|582359|44871|6|16|23061.28|0.07|0.01|A|F|1993-06-04|1993-05-15|1993-06-21|COLLECT COD|TRUCK|es might wake quickly b| +52812|706601|19116|7|7|11252.99|0.04|0.01|R|F|1993-05-25|1993-04-16|1993-06-23|COLLECT COD|FOB|stealthy pinto beans need to| +52813|829918|4951|1|28|51740.36|0.03|0.01|N|O|1998-01-31|1997-12-05|1998-02-23|DELIVER IN PERSON|FOB|kly. caref| +52813|427770|27771|2|19|32257.25|0.09|0.08|N|O|1998-02-01|1997-12-15|1998-02-19|COLLECT COD|REG AIR|counts wake furiousl| +52813|516846|41867|3|20|37256.40|0.08|0.00|N|O|1997-11-10|1998-01-13|1997-12-03|DELIVER IN PERSON|TRUCK| blithely thin pinto beans try to| +52813|615281|15282|4|21|25121.25|0.01|0.03|N|O|1997-12-14|1998-01-18|1997-12-17|NONE|REG AIR|sual notornis: regular deposits cajole per| +52813|18315|43316|5|39|48099.09|0.09|0.07|N|O|1998-01-31|1997-12-21|1998-02-05|DELIVER IN PERSON|REG AIR|thely bold ideas| +52813|807339|7340|6|12|14955.48|0.02|0.02|N|O|1998-02-07|1997-12-12|1998-03-01|NONE|SHIP|sleep carefully furiously ironic a| +52813|937995|13032|7|19|38626.05|0.07|0.01|N|O|1997-11-11|1997-12-15|1997-11-23|NONE|RAIL|ully. furiously special deposi| +52814|875771|806|1|15|26200.95|0.01|0.06|N|O|1996-03-31|1996-02-25|1996-04-07|NONE|AIR|press, express pa| +52814|77836|2839|2|34|61670.22|0.04|0.04|N|O|1995-12-21|1996-03-06|1996-01-16|NONE|SHIP|ress accounts| +52814|186380|23890|3|4|5865.52|0.10|0.05|N|O|1996-04-02|1996-02-16|1996-04-25|COLLECT COD|REG AIR|its cajole. caref| +52814|478916|3935|4|48|90954.72|0.01|0.06|N|O|1996-03-25|1996-01-31|1996-04-21|NONE|AIR| unusual accounts wake ironic, bo| +52814|127256|27257|5|25|32081.25|0.09|0.07|N|O|1996-01-15|1996-02-08|1996-02-07|DELIVER IN PERSON|AIR|ounts. qui| +52815|10070|47571|1|15|14701.05|0.01|0.08|N|O|1996-08-09|1996-09-16|1996-09-06|DELIVER IN PERSON|FOB|ar platelets unwind fluffily. final,| +52815|243177|43178|2|10|11201.60|0.02|0.03|N|O|1996-10-27|1996-09-26|1996-11-26|DELIVER IN PERSON|FOB|pliers above the pending ideas hag| +52840|452905|40433|1|9|16720.92|0.03|0.00|N|O|1997-01-28|1996-12-31|1997-02-12|TAKE BACK RETURN|MAIL|ag quickly | +52840|960857|23377|2|31|59452.11|0.05|0.03|N|O|1997-02-25|1997-01-03|1997-03-27|COLLECT COD|TRUCK|eodolites engage slyly furi| +52840|121263|21264|3|46|59075.96|0.09|0.00|N|O|1997-02-20|1996-12-31|1997-03-18|DELIVER IN PERSON|REG AIR|ronic courts. ironic| +52840|50489|12991|4|13|18713.24|0.06|0.07|N|O|1996-12-26|1997-01-21|1997-01-17|DELIVER IN PERSON|RAIL| regular accounts after the care| +52840|564672|27184|5|10|17366.50|0.07|0.08|N|O|1997-03-13|1997-01-30|1997-03-30|TAKE BACK RETURN|MAIL|ses. ironic, final grouches| +52840|439464|26989|6|9|12630.96|0.06|0.00|N|O|1997-02-27|1997-01-17|1997-03-20|NONE|FOB|ly special theodolites haggle. blit| +52841|797692|47693|1|10|17896.60|0.08|0.07|N|O|1996-04-16|1996-03-04|1996-05-05|COLLECT COD|MAIL|lar somas haggle fluffily regular re| +52842|398839|48840|1|7|13564.74|0.04|0.06|A|F|1995-01-12|1995-03-07|1995-02-09|TAKE BACK RETURN|RAIL|carefully ironic ins| +52842|283573|8584|2|38|59149.28|0.02|0.07|A|F|1995-02-20|1995-03-31|1995-03-08|TAKE BACK RETURN|FOB|s cajole carefully| +52842|922|923|3|44|80208.48|0.00|0.02|R|F|1995-01-15|1995-03-20|1995-02-14|COLLECT COD|MAIL|ic theodolites: bold, regular dolphins | +52842|493692|31220|4|9|15171.03|0.05|0.05|R|F|1995-02-27|1995-02-08|1995-03-03|NONE|REG AIR|longside of the furiously bold requests. d| +52842|465356|15357|5|9|11891.97|0.06|0.00|R|F|1995-03-16|1995-02-13|1995-03-30|NONE|AIR|hely carefully pe| +52842|233033|20546|6|42|40572.84|0.07|0.00|R|F|1995-04-17|1995-04-03|1995-05-11|COLLECT COD|FOB|s cajole slyl| +52843|579026|16560|1|35|38675.00|0.04|0.07|R|F|1992-11-18|1992-12-30|1992-12-11|DELIVER IN PERSON|RAIL|ven requests. special, sp| +52843|684072|21612|2|45|47521.80|0.03|0.06|R|F|1993-01-23|1992-12-18|1993-02-06|TAKE BACK RETURN|FOB| slyly about the orbits: furiously speci| +52843|191739|16746|3|47|86044.31|0.01|0.03|R|F|1992-10-20|1992-11-06|1992-10-28|NONE|SHIP|he regular asy| +52843|544961|19982|4|50|100297.00|0.06|0.07|R|F|1992-12-12|1992-11-25|1992-12-17|DELIVER IN PERSON|FOB|uses alongside of the pinto beans dete| +52844|164623|2133|1|14|23626.68|0.00|0.02|N|O|1996-03-04|1996-01-11|1996-03-08|COLLECT COD|SHIP|old accounts. quickly| +52844|814462|2011|2|21|28904.82|0.04|0.05|N|O|1996-02-12|1996-01-02|1996-02-18|NONE|MAIL|packages. furiously final depos| +52844|646625|46626|3|45|70721.55|0.04|0.08|N|O|1995-12-04|1996-01-27|1995-12-25|COLLECT COD|RAIL|otes after the final warthogs are care| +52844|822742|35259|4|18|29964.60|0.10|0.01|N|O|1995-11-17|1996-01-20|1995-12-14|NONE|FOB|ironic instructions haggle careful| +52844|819342|19343|5|50|63065.00|0.07|0.02|N|O|1996-03-02|1996-01-16|1996-03-17|DELIVER IN PERSON|REG AIR|uffily bold packages haggle| +52844|670372|20373|6|5|6711.70|0.05|0.01|N|O|1996-02-03|1996-01-11|1996-03-03|COLLECT COD|AIR|kages alon| +52845|528656|28657|1|39|65700.57|0.02|0.03|N|O|1997-01-29|1997-01-28|1997-02-26|DELIVER IN PERSON|REG AIR| special foxes after the reg| +52845|107087|19590|2|25|27352.00|0.05|0.06|N|O|1997-04-04|1997-02-08|1997-04-27|COLLECT COD|MAIL|are alongside of the| +52846|308555|21062|1|31|48469.74|0.06|0.06|N|O|1996-05-22|1996-03-20|1996-05-25|TAKE BACK RETURN|FOB|ual deposits wake furiously.| +52846|871006|33524|2|47|45917.12|0.09|0.02|N|O|1996-04-29|1996-03-27|1996-05-15|NONE|SHIP| slyly special accounts. regular, s| +52846|983446|33447|3|11|16823.40|0.06|0.01|N|O|1996-04-10|1996-02-27|1996-05-01|TAKE BACK RETURN|RAIL|ng to the carefully special foxes; quic| +52846|774773|12319|4|30|55432.20|0.03|0.08|N|O|1996-02-14|1996-03-11|1996-03-01|TAKE BACK RETURN|MAIL|ts use quickly. slyly unusu| +52846|593629|6141|5|15|25839.00|0.09|0.08|N|O|1996-04-24|1996-04-25|1996-05-18|DELIVER IN PERSON|AIR|packages. blithely| +52846|121063|33566|6|48|52034.88|0.02|0.02|N|O|1996-05-17|1996-04-03|1996-06-04|COLLECT COD|REG AIR|the frets. quickly expres| +52847|417592|30101|1|45|67930.65|0.07|0.06|R|F|1995-05-07|1995-04-09|1995-05-13|DELIVER IN PERSON|SHIP|ilent foxes; blithely eve| +52847|453568|41096|2|17|25866.18|0.00|0.00|A|F|1995-03-28|1995-03-13|1995-04-14|TAKE BACK RETURN|TRUCK|xpress fox| +52847|113113|38118|3|16|18017.76|0.05|0.04|A|F|1995-01-12|1995-02-11|1995-02-06|DELIVER IN PERSON|REG AIR|counts nag q| +52847|76317|38819|4|20|25866.20|0.08|0.06|R|F|1995-03-07|1995-04-02|1995-03-25|DELIVER IN PERSON|MAIL|inally ironic request| +52847|654799|42339|5|2|3507.52|0.08|0.02|R|F|1995-03-26|1995-02-26|1995-04-09|TAKE BACK RETURN|REG AIR|l packages need to was furious| +52847|198008|48009|6|17|18802.00|0.01|0.07|R|F|1995-03-06|1995-04-09|1995-03-10|DELIVER IN PERSON|REG AIR|e, express | +52847|909320|46875|7|26|34561.28|0.05|0.03|R|F|1995-03-15|1995-02-08|1995-04-05|TAKE BACK RETURN|FOB|l instructions use slyly: fluffily quie| +52872|928985|41504|1|44|88613.36|0.04|0.04|N|O|1996-01-06|1996-01-04|1996-02-03|NONE|FOB|kly ironic ideas are carefully. i| +52872|446968|34493|2|39|74682.66|0.09|0.00|N|O|1995-12-08|1996-01-23|1995-12-24|DELIVER IN PERSON|RAIL|g carefully aro| +52872|185512|35513|3|27|43132.77|0.07|0.03|N|O|1996-02-11|1996-01-17|1996-03-07|TAKE BACK RETURN|SHIP|blithely bold courts wake s| +52872|896887|21922|4|18|33909.12|0.10|0.04|N|O|1995-12-06|1996-02-07|1995-12-14|TAKE BACK RETURN|MAIL|ut the care| +52872|972690|47729|5|17|29965.05|0.00|0.00|N|O|1995-12-09|1995-12-20|1996-01-05|NONE|FOB|ly silent acco| +52873|355462|5463|1|47|71320.15|0.02|0.03|A|F|1994-08-22|1994-10-06|1994-09-06|NONE|REG AIR|packages hinder care| +52873|238884|1389|2|23|41926.01|0.03|0.03|R|F|1994-10-18|1994-09-13|1994-10-25|NONE|TRUCK|carefully final packages be| +52873|921584|9139|3|45|72249.30|0.08|0.08|R|F|1994-11-05|1994-09-27|1994-11-15|TAKE BACK RETURN|FOB| wake furiously. blithe, even braids | +52873|58717|8718|4|39|65352.69|0.04|0.07|A|F|1994-08-31|1994-09-28|1994-09-20|TAKE BACK RETURN|TRUCK|ts above the furiously ironic requests wak| +52873|848877|48878|5|22|40168.26|0.07|0.06|A|F|1994-09-22|1994-09-22|1994-09-29|NONE|REG AIR| doggedly furious| +52873|65081|40084|6|14|14645.12|0.01|0.07|A|F|1994-09-05|1994-09-26|1994-09-12|TAKE BACK RETURN|MAIL|nag furiously boldly ironic| +52873|815317|15318|7|35|43129.45|0.04|0.08|R|F|1994-09-20|1994-09-08|1994-09-27|DELIVER IN PERSON|MAIL|gular requests wake slyly b| +52874|23799|23800|1|14|24119.06|0.09|0.06|R|F|1994-12-22|1994-11-20|1995-01-03|TAKE BACK RETURN|RAIL|sts. furiously even pinto beans| +52874|975704|743|2|10|17796.60|0.05|0.03|A|F|1994-10-18|1994-11-12|1994-10-26|DELIVER IN PERSON|TRUCK|en requests. quickly unusu| +52874|641505|16530|3|25|36161.75|0.05|0.05|A|F|1994-11-08|1994-10-29|1994-11-11|DELIVER IN PERSON|FOB|sleep slyly pend| +52875|824530|37047|1|4|5817.96|0.04|0.07|R|F|1994-05-03|1994-06-09|1994-05-29|NONE|RAIL|its affix carefully. slyly final | +52875|875222|37740|2|21|25140.78|0.01|0.08|R|F|1994-04-25|1994-06-12|1994-05-15|TAKE BACK RETURN|REG AIR|s boost beneath the carefully brave requ| +52875|842001|29550|3|34|32060.64|0.05|0.02|A|F|1994-04-16|1994-06-11|1994-04-29|COLLECT COD|AIR|iously regular theodolites are quickly. car| +52876|915871|15872|1|50|94341.50|0.03|0.07|N|O|1996-02-13|1996-02-28|1996-02-18|TAKE BACK RETURN|AIR|ecial packages are furi| +52876|34833|47334|2|9|15910.47|0.03|0.06|N|O|1995-12-23|1996-01-04|1996-01-14|COLLECT COD|RAIL|hockey players: carefully ironic | +52876|421719|9244|3|44|72190.36|0.10|0.05|N|O|1996-01-27|1996-02-17|1996-02-03|TAKE BACK RETURN|AIR|nic deposi| +52876|820002|7551|4|29|26736.84|0.07|0.08|N|O|1996-01-18|1996-01-05|1996-01-31|COLLECT COD|FOB|ve the regular requests. bold acco| +52876|759312|21828|5|9|12341.52|0.01|0.07|N|O|1996-01-20|1996-03-01|1996-01-21|COLLECT COD|FOB|sual platelets. carefully e| +52877|260855|48371|1|26|47211.84|0.07|0.01|N|O|1997-09-04|1997-07-21|1997-10-04|TAKE BACK RETURN|MAIL| theodolites sleep slyly above the slo| +52877|181848|44352|2|4|7719.36|0.06|0.08|N|O|1997-07-25|1997-07-13|1997-08-21|NONE|MAIL|ar platelets. furiously ironic pinto b| +52877|313034|38047|3|30|31410.60|0.01|0.01|N|O|1997-08-20|1997-07-11|1997-08-25|TAKE BACK RETURN|REG AIR|ously bold waters above the quick| +52877|160709|48219|4|32|56630.40|0.06|0.03|N|O|1997-07-26|1997-07-12|1997-08-13|TAKE BACK RETURN|FOB|y regular pa| +52877|31535|19036|5|7|10265.71|0.04|0.00|N|O|1997-07-21|1997-07-31|1997-08-09|COLLECT COD|SHIP| about the regular pinto beans | +52877|996710|9230|6|32|57813.44|0.02|0.04|N|O|1997-08-05|1997-08-17|1997-08-21|DELIVER IN PERSON|REG AIR|d. pending, special pinto beans are b| +52878|76037|38539|1|12|12156.36|0.01|0.03|N|O|1996-10-05|1996-07-30|1996-10-19|TAKE BACK RETURN|RAIL|y final ideas. carefully regular packag| +52878|939122|39123|2|16|18577.28|0.02|0.00|N|O|1996-06-17|1996-07-30|1996-07-10|COLLECT COD|FOB| ironic packages cajole above the acco| +52878|813753|38786|3|2|3333.42|0.02|0.02|N|O|1996-07-28|1996-09-06|1996-08-06|COLLECT COD|SHIP|y. slyly final packages hagg| +52878|745300|45301|4|31|41703.37|0.10|0.01|N|O|1996-06-18|1996-07-30|1996-06-25|TAKE BACK RETURN|REG AIR|rding to the carefully ironic requests-- un| +52879|774967|37483|1|26|53090.18|0.05|0.08|R|F|1994-10-27|1994-09-09|1994-11-13|COLLECT COD|FOB|ggle blithely. slyly dogged account| +52904|82956|20460|1|6|11633.70|0.03|0.02|N|O|1997-01-01|1996-12-29|1997-01-16|COLLECT COD|FOB|y ironic foxes. ironically final theodol| +52904|235682|23195|2|2|3235.34|0.09|0.00|N|O|1997-02-04|1996-12-02|1997-02-20|COLLECT COD|AIR|the furiously ruthl| +52904|99690|49691|3|43|72656.67|0.10|0.04|N|O|1996-11-15|1997-01-02|1996-11-28|DELIVER IN PERSON|MAIL|the instructions solve furiously permanent| +52904|478883|3902|4|46|85645.56|0.07|0.03|N|O|1996-11-11|1996-12-22|1996-11-13|TAKE BACK RETURN|TRUCK|l pinto beans. regular, ruthless ide| +52905|13176|38177|1|42|45745.14|0.05|0.01|R|F|1992-11-17|1992-10-28|1992-12-07|COLLECT COD|SHIP|al ideas. sly| +52905|432264|7281|2|11|13158.64|0.00|0.01|A|F|1992-12-17|1992-10-08|1992-12-31|COLLECT COD|SHIP| the quickly pending pinto beans use bli| +52906|125108|37611|1|13|14730.30|0.06|0.06|R|F|1994-10-11|1994-09-29|1994-10-27|NONE|SHIP|atelets sleep depo| +52906|678557|16097|2|7|10748.64|0.08|0.08|R|F|1994-10-14|1994-09-11|1994-11-01|NONE|RAIL|epths after t| +52906|498569|48570|3|16|25080.64|0.05|0.03|R|F|1994-07-31|1994-08-21|1994-08-13|COLLECT COD|MAIL| slyly bold requests | +52906|443530|31055|4|36|53046.36|0.10|0.07|R|F|1994-08-18|1994-09-01|1994-09-15|DELIVER IN PERSON|MAIL|gle fluffily along the th| +52906|395633|45634|5|24|41486.88|0.07|0.02|A|F|1994-10-20|1994-09-11|1994-10-31|TAKE BACK RETURN|RAIL| cajole unusual, final pac| +52906|395389|7897|6|41|60859.17|0.01|0.02|A|F|1994-11-01|1994-10-19|1994-11-16|TAKE BACK RETURN|RAIL|ly ironic packages c| +52906|296023|8529|7|12|12228.12|0.03|0.00|R|F|1994-10-21|1994-09-09|1994-10-30|DELIVER IN PERSON|REG AIR| instructions eat furiou| +52907|249509|37022|1|20|29169.80|0.05|0.08|R|F|1992-04-09|1992-04-02|1992-04-25|TAKE BACK RETURN|TRUCK|ages cajole fluffily permanent pinto| +52907|493402|5912|2|38|53024.44|0.04|0.04|A|F|1992-03-17|1992-04-28|1992-03-22|DELIVER IN PERSON|SHIP|instructions detect after the e| +52907|599452|49453|3|8|12411.44|0.07|0.05|R|F|1992-04-03|1992-03-27|1992-04-12|COLLECT COD|RAIL| quickly pending pinto | +52907|980935|5974|4|33|66524.37|0.03|0.07|R|F|1992-06-13|1992-05-13|1992-07-03|COLLECT COD|FOB|ously slyly final accounts-- quickly unu| +52908|258905|46421|1|19|35413.91|0.08|0.07|A|F|1994-09-15|1994-09-11|1994-09-17|COLLECT COD|AIR|ly to the slyly permanent pinto beans. alw| +52908|401633|1634|2|29|44503.69|0.04|0.02|A|F|1994-09-14|1994-09-08|1994-10-07|DELIVER IN PERSON|SHIP| would boost! furiously spec| +52908|231966|31967|3|15|28469.25|0.02|0.05|R|F|1994-07-01|1994-07-18|1994-07-10|DELIVER IN PERSON|TRUCK|ajole fluffily slyly pending requests.| +52908|649857|37394|4|21|37943.22|0.09|0.07|R|F|1994-07-15|1994-08-28|1994-08-10|DELIVER IN PERSON|MAIL|st finally-- slyly final pinto b| +52908|142182|17187|5|35|42846.30|0.08|0.07|R|F|1994-07-30|1994-09-14|1994-08-14|COLLECT COD|SHIP|nts haggle quickly| +52909|900056|37611|1|6|6336.06|0.10|0.05|A|F|1994-11-10|1995-01-09|1994-11-24|TAKE BACK RETURN|AIR| deposits about the blithely| +52909|235320|10329|2|43|53978.33|0.05|0.02|R|F|1994-12-14|1994-11-22|1994-12-23|DELIVER IN PERSON|AIR|the express accounts inte| +52909|10062|10063|3|16|15552.96|0.05|0.01|R|F|1994-12-10|1995-01-03|1994-12-16|COLLECT COD|RAIL|sits across the blithely| +52909|109769|47276|4|34|60477.84|0.09|0.05|R|F|1994-11-13|1994-12-07|1994-11-23|TAKE BACK RETURN|RAIL|e slyly even gifts. ca| +52909|881021|18573|5|17|17033.66|0.04|0.03|R|F|1994-12-03|1994-12-08|1994-12-09|DELIVER IN PERSON|AIR| sleep slyly after t| +52909|319946|19947|6|18|35386.74|0.00|0.04|A|F|1994-11-27|1995-01-09|1994-12-03|TAKE BACK RETURN|REG AIR|. slyly re| +52910|840926|3443|1|23|42938.24|0.01|0.08|N|F|1995-06-03|1995-06-23|1995-06-30|TAKE BACK RETURN|FOB|bove the fluf| +52910|439789|14806|2|30|51862.80|0.03|0.01|N|O|1995-07-25|1995-07-04|1995-08-10|COLLECT COD|RAIL| carefully express packages wake asympto| +52910|530377|30378|3|11|15480.85|0.02|0.00|R|F|1995-05-29|1995-07-10|1995-05-31|TAKE BACK RETURN|TRUCK| wake across the f| +52910|32894|7895|4|26|47499.14|0.07|0.06|N|F|1995-06-14|1995-06-17|1995-06-19|COLLECT COD|FOB|cross the packa| +52910|834729|9762|5|6|9982.08|0.02|0.05|N|O|1995-07-24|1995-07-10|1995-07-31|NONE|REG AIR|rave somas doze daringly silent accoun| +52910|275385|37891|6|15|20405.55|0.09|0.08|N|O|1995-08-17|1995-06-17|1995-09-16|DELIVER IN PERSON|AIR|carefully above t| +52910|388259|25781|7|28|37722.72|0.04|0.05|N|O|1995-06-18|1995-06-15|1995-07-02|DELIVER IN PERSON|TRUCK|ffily pending theodo| +52911|467986|43005|1|8|15631.68|0.01|0.07|A|F|1992-06-24|1992-07-24|1992-07-03|NONE|TRUCK|lar ideas nag carefully dependencies. re| +52911|430505|5522|2|10|14354.80|0.08|0.08|A|F|1992-06-22|1992-07-08|1992-07-15|TAKE BACK RETURN|SHIP| use slyly. regular accounts | +52911|481496|44006|3|16|23639.52|0.02|0.04|R|F|1992-06-02|1992-06-16|1992-06-22|DELIVER IN PERSON|SHIP|uriously fluffy| +52936|906076|18595|1|22|23804.66|0.10|0.02|A|F|1995-03-07|1995-02-15|1995-04-02|TAKE BACK RETURN|MAIL|the blithely ironic requests nag a| +52936|414050|1575|2|10|9640.30|0.01|0.06|R|F|1995-02-20|1995-02-21|1995-03-07|TAKE BACK RETURN|SHIP|nst the bold deposits. | +52937|205090|17595|1|15|14926.20|0.03|0.02|R|F|1992-07-12|1992-08-03|1992-07-13|NONE|REG AIR| the slyly silent instructions. | +52938|189121|39122|1|39|47194.68|0.01|0.03|A|F|1992-05-14|1992-06-23|1992-06-12|DELIVER IN PERSON|RAIL|s detect quickly. ruth| +52938|545661|20682|2|4|6826.56|0.02|0.04|A|F|1992-07-21|1992-06-14|1992-08-11|NONE|TRUCK|longside of the slyly unusual pack| +52938|912819|12820|3|6|10990.62|0.10|0.04|A|F|1992-04-04|1992-06-24|1992-04-12|COLLECT COD|SHIP|slow asymptotes use ca| +52938|733843|21386|4|7|13137.67|0.08|0.01|R|F|1992-07-18|1992-06-01|1992-08-09|NONE|TRUCK|riously final platelets. unusual| +52938|689597|14624|5|14|22211.84|0.05|0.04|A|F|1992-06-12|1992-06-17|1992-06-23|COLLECT COD|MAIL|e carefully pending theodolites. fi| +52938|49599|12100|6|45|69686.55|0.02|0.03|R|F|1992-04-19|1992-06-14|1992-05-07|NONE|SHIP|kly furiously special deposi| +52939|107391|19894|1|37|51740.43|0.10|0.03|R|F|1994-01-10|1994-01-20|1994-01-24|TAKE BACK RETURN|REG AIR|inly regul| +52939|905039|30076|2|3|3131.97|0.03|0.00|A|F|1994-03-04|1994-01-13|1994-03-18|COLLECT COD|AIR|regular theodolites cajole express account| +52939|976477|38997|3|13|20194.59|0.01|0.00|A|F|1994-01-17|1994-02-07|1994-01-29|DELIVER IN PERSON|SHIP|tly pending dugouts. final, final instru| +52939|637895|37896|4|6|10997.16|0.02|0.00|A|F|1993-11-27|1994-01-24|1993-12-27|COLLECT COD|REG AIR|ng to the blithely| +52939|95380|20383|5|18|24756.84|0.08|0.05|A|F|1994-01-18|1994-02-05|1994-01-19|COLLECT COD|MAIL|ts integrate slyl| +52940|813606|1155|1|46|69899.76|0.04|0.05|N|O|1995-07-30|1995-06-28|1995-08-10|DELIVER IN PERSON|MAIL|bove the slyly bold dep| +52940|259755|47271|2|27|46297.98|0.07|0.08|N|O|1995-08-08|1995-08-26|1995-08-23|NONE|REG AIR| final foxes. quickly regular packag| +52940|694461|6975|3|5|7277.15|0.07|0.07|R|F|1995-06-11|1995-08-14|1995-06-17|COLLECT COD|FOB|e blithely ironic asy| +52940|802185|2186|4|10|10871.40|0.07|0.03|A|F|1995-06-06|1995-08-17|1995-06-17|DELIVER IN PERSON|SHIP| requests. furiously even pi| +52940|313463|38476|5|47|69393.15|0.00|0.03|N|O|1995-07-22|1995-06-30|1995-08-18|DELIVER IN PERSON|TRUCK|ly special de| +52941|59063|21565|1|21|21463.26|0.09|0.06|N|O|1997-10-08|1997-10-14|1997-10-15|DELIVER IN PERSON|MAIL|efully unusual d| +52941|659972|47512|2|17|32842.98|0.04|0.01|N|O|1997-12-23|1997-11-09|1997-12-31|COLLECT COD|FOB|wake slyly across the bl| +52941|135853|48356|3|32|60443.20|0.09|0.01|N|O|1997-10-01|1997-10-19|1997-10-30|DELIVER IN PERSON|FOB|sits. blithely| +52941|278257|15773|4|7|8646.68|0.01|0.03|N|O|1997-11-22|1997-10-20|1997-12-10|TAKE BACK RETURN|REG AIR| packages use carefully ironic platelet| +52941|664052|39079|5|23|23368.46|0.07|0.03|N|O|1997-10-21|1997-10-28|1997-11-09|COLLECT COD|FOB| special theodolites. final | +52941|715017|27532|6|21|21671.58|0.02|0.04|N|O|1998-01-01|1997-11-15|1998-01-03|TAKE BACK RETURN|TRUCK|es. express, even requests | +52942|481396|18924|1|6|8264.22|0.08|0.02|R|F|1994-07-03|1994-06-18|1994-07-15|DELIVER IN PERSON|REG AIR|deposits. pains haggle| +52942|812056|49605|2|40|38720.40|0.02|0.01|R|F|1994-07-28|1994-07-21|1994-08-21|DELIVER IN PERSON|FOB|he blithely final packages. accounts are | +52942|216173|16174|3|26|28318.16|0.03|0.01|R|F|1994-05-17|1994-07-09|1994-05-23|DELIVER IN PERSON|SHIP|deposits: special f| +52943|356105|31120|1|47|54571.23|0.08|0.01|N|O|1998-09-09|1998-07-15|1998-10-01|DELIVER IN PERSON|AIR|quickly silent| +52968|991009|3529|1|26|28598.96|0.09|0.06|R|F|1994-04-11|1994-04-17|1994-04-12|TAKE BACK RETURN|REG AIR|lyly carefully regular| +52968|871785|46820|2|21|36891.54|0.03|0.05|R|F|1994-06-08|1994-04-21|1994-06-27|NONE|AIR|elets. regular attainm| +52968|79506|17010|3|47|69818.50|0.01|0.00|R|F|1994-04-11|1994-05-22|1994-04-18|NONE|REG AIR|g ideas hang quickl| +52968|244117|19126|4|21|22283.10|0.02|0.02|A|F|1994-05-14|1994-05-03|1994-06-07|TAKE BACK RETURN|FOB|ounts are slyly unusual platelets. sl| +52968|869391|19392|5|17|23125.95|0.06|0.01|A|F|1994-05-25|1994-04-05|1994-06-10|NONE|FOB| pending deposits unwind | +52968|853063|3064|6|16|16256.32|0.00|0.04|R|F|1994-05-06|1994-05-01|1994-05-31|COLLECT COD|REG AIR|rns cajole. regular inst| +52968|428352|3369|7|33|42250.89|0.03|0.07|A|F|1994-03-10|1994-04-08|1994-03-18|DELIVER IN PERSON|MAIL|pinto beans acc| +52969|298054|23065|1|10|10520.40|0.07|0.07|A|F|1993-03-22|1993-03-05|1993-04-19|NONE|FOB|ic foxes boost caref| +52969|385995|23517|2|37|76996.26|0.00|0.03|A|F|1993-05-04|1993-04-20|1993-05-06|NONE|SHIP|ular requests boost furiously after the eve| +52969|415466|2991|3|31|42824.64|0.08|0.03|A|F|1993-04-04|1993-03-23|1993-05-03|TAKE BACK RETURN|MAIL|tect carefully | +52969|734614|22157|4|35|57700.30|0.01|0.05|A|F|1993-05-15|1993-04-16|1993-06-13|DELIVER IN PERSON|TRUCK|y slyly regular pinto beans: express | +52969|644899|32436|5|42|77442.12|0.04|0.08|R|F|1993-04-02|1993-03-16|1993-04-25|COLLECT COD|MAIL|he carefully ironic foxes cajole unusua| +52969|811824|49373|6|39|67695.42|0.08|0.01|R|F|1993-04-03|1993-03-30|1993-04-24|TAKE BACK RETURN|SHIP|y express foxes sleep above the blithely | +52969|310110|10111|7|21|23522.10|0.08|0.08|A|F|1993-05-13|1993-03-23|1993-05-26|NONE|MAIL|nto beans are carefully above the sl| +52970|16769|16770|1|15|25286.40|0.07|0.00|A|F|1992-12-04|1992-09-20|1992-12-27|TAKE BACK RETURN|MAIL| pending packages wake bl| +52970|823817|23818|2|1|1740.77|0.05|0.05|R|F|1992-09-25|1992-10-29|1992-10-10|TAKE BACK RETURN|TRUCK|pending pinto beans sleep slyly acco| +52971|142558|42559|1|47|75225.85|0.05|0.07|R|F|1993-08-17|1993-09-01|1993-08-21|NONE|MAIL|equests. blithely ironic patte| +52971|957094|7095|2|33|37984.65|0.06|0.08|R|F|1993-09-21|1993-07-22|1993-10-05|NONE|FOB|ual packages hin| +52971|870495|20496|3|8|11723.60|0.09|0.03|R|F|1993-10-04|1993-08-16|1993-11-01|COLLECT COD|SHIP|r the permanently special ideas breach f| +52971|399625|49626|4|40|68984.40|0.03|0.08|R|F|1993-08-28|1993-08-06|1993-08-31|NONE|RAIL|bits: slyly ironic excuses was ab| +52971|496417|21436|5|29|40988.31|0.03|0.01|A|F|1993-08-01|1993-08-03|1993-08-08|NONE|TRUCK|s. blithely regular theodolites haggle| +52971|277142|2153|6|31|34693.03|0.10|0.03|A|F|1993-07-15|1993-08-29|1993-08-10|NONE|RAIL|y about the ir| +52972|174626|24627|1|2|3401.24|0.09|0.08|A|F|1993-08-21|1993-09-21|1993-08-28|DELIVER IN PERSON|RAIL|ar requests. slyly even deposits use blith| +52972|923292|23293|2|37|48664.25|0.03|0.05|A|F|1993-09-12|1993-10-15|1993-10-07|COLLECT COD|AIR|e unusual, pending packages. iro| +52972|765307|27823|3|20|27445.40|0.02|0.08|R|F|1993-11-15|1993-10-15|1993-12-02|NONE|TRUCK| requests caj| +52972|511216|48747|4|23|28225.37|0.05|0.08|R|F|1993-10-15|1993-09-27|1993-10-18|TAKE BACK RETURN|TRUCK| the final accounts. furiously even deposi| +52973|381930|31931|1|37|74441.04|0.06|0.00|R|F|1994-08-24|1994-08-26|1994-09-11|NONE|RAIL|c theodolites-- pending deposits acro| +52973|94745|19748|2|9|15657.66|0.06|0.02|A|F|1994-10-09|1994-08-25|1994-10-13|COLLECT COD|REG AIR|ans. slyly special | +52973|378440|3455|3|17|25813.31|0.07|0.04|R|F|1994-08-18|1994-08-15|1994-09-07|TAKE BACK RETURN|SHIP| slyly slyly regular packages. | +52973|426505|1522|4|48|68711.04|0.00|0.07|R|F|1994-08-15|1994-09-09|1994-08-25|DELIVER IN PERSON|MAIL|l instructions nag. quickly ironi| +52973|259441|9442|5|23|32209.89|0.00|0.06|A|F|1994-07-07|1994-09-15|1994-07-10|TAKE BACK RETURN|FOB|cial deposits serve. ironically unusua| +52973|408923|33940|6|40|73276.00|0.04|0.05|A|F|1994-07-30|1994-08-26|1994-08-16|COLLECT COD|REG AIR|es above the fluffily ironic package| +52973|756962|19478|7|25|50473.25|0.02|0.02|A|F|1994-08-17|1994-08-06|1994-09-06|COLLECT COD|AIR|uffily express pinto beans. reg| +52974|259118|34129|1|26|28004.60|0.03|0.03|R|F|1994-09-07|1994-09-15|1994-09-30|NONE|FOB| gifts sleep after the ir| +52975|816778|4327|1|26|44062.98|0.10|0.01|N|O|1997-11-26|1997-11-21|1997-12-04|NONE|FOB|etimes blithely regula| +52975|586984|49496|2|4|8283.84|0.08|0.08|N|O|1997-09-25|1997-10-30|1997-10-06|DELIVER IN PERSON|FOB|express theodolites are | +52975|428396|15921|3|8|10594.96|0.00|0.01|N|O|1997-12-19|1997-10-23|1998-01-13|COLLECT COD|SHIP|ly regular warhorses. regular deposits | +52975|34899|9900|4|42|77023.38|0.06|0.00|N|O|1997-09-24|1997-10-05|1997-10-03|NONE|RAIL|carefully even, fi| +52975|537211|37212|5|31|38693.89|0.09|0.07|N|O|1997-12-07|1997-11-26|1998-01-06|NONE|SHIP| pending requests acco| +52975|900946|25983|6|43|83716.70|0.00|0.02|N|O|1997-11-17|1997-11-25|1997-12-04|NONE|FOB|ess foxes believe | +52975|185884|35885|7|35|68945.80|0.04|0.07|N|O|1997-10-25|1997-11-20|1997-10-30|COLLECT COD|FOB|xpress, regular packages| +53000|147534|35041|1|31|49027.43|0.00|0.00|N|O|1998-05-09|1998-04-08|1998-05-28|TAKE BACK RETURN|TRUCK|ts against the slyly regular requests use| +53000|600257|258|2|5|5786.10|0.00|0.07|N|O|1998-03-12|1998-03-26|1998-03-17|COLLECT COD|SHIP|nusual dolphins. furiously ironic req| +53000|513682|38703|3|34|57652.44|0.09|0.06|N|O|1998-02-15|1998-04-10|1998-02-26|NONE|AIR|sts. carefully pendin| +53000|450997|13507|4|36|70126.92|0.08|0.06|N|O|1998-01-28|1998-04-06|1998-02-26|DELIVER IN PERSON|MAIL|cing accou| +53000|901130|1131|5|5|5655.45|0.06|0.05|N|O|1998-04-23|1998-03-14|1998-05-09|NONE|MAIL|elets cajole furiously through | +53000|277433|39939|6|36|50775.12|0.00|0.02|N|O|1998-04-23|1998-03-09|1998-04-24|DELIVER IN PERSON|REG AIR| nag final accounts. furiously fina| +53000|809993|35026|7|43|81826.85|0.01|0.03|N|O|1998-04-10|1998-03-22|1998-04-26|DELIVER IN PERSON|RAIL|ously enticingly bold pa| +53001|547815|35346|1|18|33530.22|0.09|0.06|A|F|1995-01-27|1995-02-08|1995-02-02|NONE|RAIL| to the slyly unusual instructions. s| +53001|112844|25347|2|39|72416.76|0.09|0.08|R|F|1995-03-31|1995-02-09|1995-04-26|COLLECT COD|TRUCK|ial foxes are. fluffil| +53001|566818|41841|3|9|16963.11|0.08|0.08|R|F|1995-01-03|1995-01-24|1995-01-08|COLLECT COD|AIR|g excuses. furiously silent reque| +53001|502035|39566|4|36|37332.36|0.09|0.03|R|F|1995-03-26|1995-01-17|1995-04-01|TAKE BACK RETURN|SHIP|cial accounts boost| +53002|696520|9034|1|23|34879.27|0.03|0.05|A|F|1994-08-23|1994-08-24|1994-09-16|TAKE BACK RETURN|AIR|ckly regular platelets wake slyl| +53003|823212|10761|1|14|15892.38|0.02|0.05|N|O|1997-10-03|1997-10-11|1997-10-24|NONE|AIR|lent foxes are after the gift| +53003|713503|13504|2|28|42461.16|0.05|0.07|N|O|1997-11-06|1997-10-01|1997-12-05|NONE|RAIL| fluffily quickly ironic depos| +53003|838836|1353|3|37|65667.23|0.05|0.03|N|O|1997-11-03|1997-11-02|1997-11-22|NONE|FOB|eposits. regular, final requests around| +53003|305378|42897|4|4|5533.44|0.00|0.03|N|O|1997-11-03|1997-10-20|1997-11-14|NONE|TRUCK|ccounts cajole at the blithely rut| +53004|946341|8860|1|30|41619.00|0.04|0.03|A|F|1994-10-06|1994-11-03|1994-10-15|DELIVER IN PERSON|RAIL|rses. ideas cajole slyly even deposits. ca| +53004|145424|45425|2|11|16163.62|0.06|0.03|R|F|1994-10-12|1994-10-15|1994-11-11|TAKE BACK RETURN|AIR|sual dependencie| +53004|130314|17821|3|27|36296.37|0.01|0.04|A|F|1994-10-22|1994-10-25|1994-10-27|DELIVER IN PERSON|FOB|eas promise: final| +53004|183274|8281|4|48|65148.96|0.06|0.07|A|F|1994-11-15|1994-12-03|1994-11-30|TAKE BACK RETURN|REG AIR|s foxes boost furiously afte| +53004|281040|18556|5|19|19399.57|0.08|0.03|A|F|1995-01-09|1994-10-23|1995-01-28|TAKE BACK RETURN|AIR|carefully furiously ironic ideas? carefully| +53004|427688|27689|6|24|38775.84|0.03|0.06|A|F|1994-10-27|1994-11-19|1994-10-31|TAKE BACK RETURN|RAIL|tions. quickly ironic excuses are. quick| +53004|151387|1388|7|44|63288.72|0.07|0.01|R|F|1994-12-20|1994-11-17|1994-12-30|DELIVER IN PERSON|REG AIR|uctions cajole across the ex| +53005|348921|48922|1|24|47277.84|0.05|0.07|N|O|1998-03-17|1998-03-25|1998-04-07|COLLECT COD|SHIP|ests haggle sly| +53005|313357|13358|2|18|24666.12|0.01|0.00|N|O|1998-05-26|1998-04-07|1998-06-18|NONE|RAIL|lar deposits sleep f| +53005|577472|27473|3|49|75923.05|0.09|0.04|N|O|1998-03-09|1998-03-27|1998-03-17|TAKE BACK RETURN|RAIL|s. gifts boost blit| +53006|314286|14287|1|10|13002.70|0.08|0.01|N|O|1997-10-27|1997-11-06|1997-11-02|NONE|AIR|lyly slyly b| +53006|192394|17401|2|48|71346.72|0.04|0.03|N|O|1997-11-17|1997-12-06|1997-11-22|NONE|SHIP|dly final account| +53006|556545|6546|3|33|52850.16|0.06|0.00|N|O|1997-12-21|1997-10-31|1998-01-17|NONE|REG AIR|lly regular pac| +53006|844965|7482|4|24|45838.08|0.00|0.03|N|O|1998-01-09|1997-12-10|1998-01-27|COLLECT COD|TRUCK|efully permanent packages use against th| +53006|317099|4618|5|3|3348.24|0.01|0.05|N|O|1997-11-07|1997-11-13|1997-11-11|DELIVER IN PERSON|RAIL|s lose at the qu| +53006|481626|19154|6|22|35367.20|0.00|0.04|N|O|1997-11-22|1997-11-18|1997-12-12|NONE|SHIP|lly special dugouts. ruthless accounts| +53006|676154|38668|7|44|49725.28|0.07|0.08|N|O|1997-09-28|1997-10-30|1997-10-06|DELIVER IN PERSON|TRUCK| slyly quiet deposits.| +53007|105237|30242|1|6|7453.38|0.08|0.04|N|O|1997-01-11|1997-01-15|1997-01-22|NONE|REG AIR|the ironic theodolites. carefully | +53007|715970|15971|2|34|67521.96|0.04|0.03|N|O|1996-11-11|1997-01-01|1996-12-07|DELIVER IN PERSON|SHIP|fter the expre| +53007|296405|21416|3|8|11211.12|0.08|0.05|N|O|1996-11-26|1997-01-01|1996-12-15|DELIVER IN PERSON|REG AIR|. unusual, ironic asymptotes grow| +53007|672908|22909|4|37|69592.19|0.01|0.05|N|O|1997-01-17|1997-01-19|1997-01-27|TAKE BACK RETURN|MAIL|uriously regu| +53007|554567|4568|5|27|43781.58|0.10|0.03|N|O|1997-01-26|1996-12-19|1997-02-17|COLLECT COD|REG AIR|thely carefully regular instructions. acc| +53007|600380|381|6|6|7682.10|0.06|0.02|N|O|1997-01-13|1996-12-14|1997-01-22|NONE|MAIL|tructions. slyly pen| +53032|884587|34588|1|13|20430.02|0.08|0.07|R|F|1993-05-15|1993-04-20|1993-05-16|NONE|REG AIR|fts grow quickly dolphi| +53033|896561|34113|1|26|40495.52|0.00|0.03|N|O|1998-01-02|1997-11-27|1998-01-05|NONE|RAIL|uests. pending requests should sleep. bra| +53034|675391|37905|1|21|28693.56|0.00|0.01|N|O|1998-07-18|1998-06-06|1998-07-30|DELIVER IN PERSON|RAIL|ds sleep blithely across the| +53034|284283|46789|2|1|1267.27|0.06|0.08|N|O|1998-07-16|1998-05-08|1998-07-24|TAKE BACK RETURN|AIR|ze carefully pending theodolites| +53034|931416|31417|3|44|63684.28|0.02|0.03|N|O|1998-06-17|1998-06-04|1998-06-22|DELIVER IN PERSON|RAIL|ickly ironic req| +53034|303324|28337|4|21|27873.51|0.03|0.02|N|O|1998-05-12|1998-07-03|1998-05-18|NONE|TRUCK|equests boost sly| +53034|951694|1695|5|50|87282.50|0.06|0.03|N|O|1998-04-29|1998-06-01|1998-05-07|COLLECT COD|AIR|thlessly s| +53034|118187|43192|6|38|45796.84|0.06|0.06|N|O|1998-06-21|1998-06-01|1998-07-01|DELIVER IN PERSON|SHIP|y final deposits cajole slyly even pai| +53034|354276|29291|7|48|63852.48|0.04|0.08|N|O|1998-05-04|1998-05-29|1998-05-08|TAKE BACK RETURN|REG AIR|ironic ideas haggle sl| +53035|305787|43306|1|49|87845.73|0.08|0.03|R|F|1992-07-05|1992-08-30|1992-07-23|DELIVER IN PERSON|RAIL|ly; furiously b| +53035|355896|5897|2|40|78075.20|0.02|0.08|A|F|1992-09-25|1992-07-21|1992-10-06|TAKE BACK RETURN|MAIL|eposits. ironic, even pac| +53035|529539|17070|3|26|40781.26|0.07|0.04|R|F|1992-07-21|1992-07-28|1992-08-03|COLLECT COD|AIR|uriously final ideas. slyly regular dep| +53035|948129|10648|4|38|44729.04|0.06|0.08|R|F|1992-06-17|1992-07-29|1992-07-16|DELIVER IN PERSON|RAIL|ches boost s| +53035|196608|34118|5|48|81820.80|0.02|0.06|R|F|1992-07-10|1992-08-28|1992-07-15|COLLECT COD|MAIL|o the theodolites cajole | +53035|379270|41778|6|36|48573.36|0.04|0.08|R|F|1992-09-15|1992-09-11|1992-10-05|COLLECT COD|AIR|ronic waters wake| +53036|245341|7846|1|45|57884.85|0.06|0.06|N|O|1995-12-11|1995-12-06|1995-12-26|DELIVER IN PERSON|MAIL| furiously final ideas wake fluffily among| +53036|436033|36034|2|30|29070.30|0.09|0.07|N|O|1995-10-23|1995-12-21|1995-10-27|DELIVER IN PERSON|SHIP|es. furiously regular pla| +53036|402702|15211|3|19|30488.92|0.02|0.01|N|O|1995-11-20|1995-12-24|1995-12-10|TAKE BACK RETURN|AIR| furiously final pinto beans. theod| +53036|208362|45875|4|30|38110.50|0.02|0.02|N|O|1996-01-16|1995-11-04|1996-01-20|NONE|AIR|thely. ironic, pe| +53036|926981|26982|5|17|34134.98|0.10|0.07|N|O|1995-12-12|1995-12-14|1996-01-01|DELIVER IN PERSON|FOB|pending requests haggle quickly unusual, e| +53037|635002|22539|1|17|15928.49|0.03|0.02|N|O|1998-04-05|1998-03-03|1998-04-27|NONE|SHIP|al ideas affix blithely despit| +53037|474092|36602|2|34|36246.38|0.04|0.07|N|O|1998-02-14|1998-02-18|1998-03-08|NONE|FOB|about the furiously even pack| +53037|61347|36350|3|18|23550.12|0.01|0.04|N|O|1998-03-12|1998-03-31|1998-03-13|TAKE BACK RETURN|MAIL| packages. accounts serve. furious| +53037|57102|19604|4|16|16945.60|0.08|0.08|N|O|1998-04-25|1998-02-27|1998-05-02|COLLECT COD|SHIP|ackages haggle. pending instruct| +53037|703632|41175|5|19|31076.40|0.08|0.08|N|O|1998-03-15|1998-03-23|1998-03-18|COLLECT COD|FOB|y idle deposits i| +53037|928401|3438|6|28|40022.08|0.03|0.02|N|O|1998-04-16|1998-03-21|1998-05-10|DELIVER IN PERSON|AIR|hins. ideas wake along the furiously fin| +53038|312131|37144|1|3|3429.36|0.00|0.02|R|F|1993-12-13|1994-01-20|1993-12-17|NONE|SHIP|efully pending f| +53038|975377|12935|2|14|20332.62|0.00|0.01|R|F|1993-11-28|1994-02-09|1993-12-20|DELIVER IN PERSON|REG AIR|quests haggle above the fluf| +53038|155032|42542|3|30|32610.90|0.07|0.00|R|F|1994-01-28|1994-02-23|1994-02-05|COLLECT COD|TRUCK|ironic deposits. slyly silent accounts ha| +53038|613372|38397|4|50|64267.00|0.07|0.03|A|F|1994-03-05|1993-12-29|1994-03-21|DELIVER IN PERSON|AIR|fluffily ironic theodolites. furious| +53038|936665|11702|5|16|27225.92|0.10|0.02|R|F|1994-02-23|1994-01-02|1994-03-23|DELIVER IN PERSON|MAIL|attainments nag slyly carefully final p| +53039|179894|4901|1|5|9869.45|0.02|0.04|N|O|1997-03-16|1997-03-11|1997-03-24|DELIVER IN PERSON|SHIP|deposits wake blithely care| +53039|470185|7713|2|5|5775.80|0.08|0.02|N|O|1997-03-12|1997-03-18|1997-04-05|COLLECT COD|AIR|al attainme| +53039|382723|20245|3|43|77645.53|0.08|0.00|N|O|1997-04-07|1997-03-05|1997-04-15|TAKE BACK RETURN|TRUCK|rbits affix. | +53039|411289|48814|4|48|57612.48|0.00|0.06|N|O|1997-03-09|1997-04-03|1997-03-22|NONE|SHIP|efully special, bold accou| +53039|530352|17883|5|39|53910.87|0.09|0.01|N|O|1997-05-03|1997-04-25|1997-05-17|DELIVER IN PERSON|FOB|g requests. blithely express | +53039|615404|15405|6|42|55413.54|0.01|0.01|N|O|1997-02-03|1997-03-03|1997-02-25|TAKE BACK RETURN|AIR|nts. regular, unusual| +53064|265078|15079|1|31|32334.86|0.03|0.06|N|O|1997-07-01|1997-08-01|1997-07-14|TAKE BACK RETURN|REG AIR| cajole furiously across the | +53064|155622|43132|2|37|62071.94|0.07|0.02|N|O|1997-06-17|1997-07-20|1997-07-10|DELIVER IN PERSON|REG AIR|s wake alongside of the regular attainment| +53064|532473|20004|3|46|69250.70|0.10|0.04|N|O|1997-06-27|1997-07-06|1997-07-17|COLLECT COD|REG AIR|lar packages. | +53064|271669|9185|4|42|68907.30|0.07|0.02|N|O|1997-09-25|1997-07-25|1997-10-24|TAKE BACK RETURN|MAIL|to the furiously | +53064|933488|33489|5|40|60857.60|0.00|0.05|N|O|1997-06-20|1997-07-14|1997-06-29|COLLECT COD|AIR|n packages nag slyly| +53065|248141|35654|1|23|25049.99|0.04|0.07|R|F|1992-03-07|1992-03-10|1992-03-08|COLLECT COD|FOB|s are furiously. express,| +53065|494090|19109|2|23|24933.61|0.07|0.07|A|F|1992-05-28|1992-03-29|1992-06-19|DELIVER IN PERSON|TRUCK|ironic pinto beans are | +53065|159125|46635|3|28|33155.36|0.03|0.01|A|F|1992-05-30|1992-04-16|1992-06-01|COLLECT COD|MAIL|sly quickly bold cour| +53065|398627|23642|4|8|13804.88|0.09|0.05|R|F|1992-02-07|1992-03-25|1992-03-04|DELIVER IN PERSON|RAIL|arefully special do| +53065|718255|18256|5|6|7639.32|0.07|0.00|R|F|1992-04-29|1992-04-15|1992-05-23|TAKE BACK RETURN|AIR|g, final theodolites are furiously. car| +53065|698458|23485|6|35|50974.70|0.07|0.00|A|F|1992-04-16|1992-04-26|1992-05-09|NONE|RAIL|s across th| +53066|480458|17986|1|50|71921.50|0.06|0.02|N|O|1998-09-16|1998-08-13|1998-10-16|COLLECT COD|SHIP|ymptotes kin| +53067|11710|24211|1|2|3243.42|0.05|0.05|N|O|1996-07-02|1996-06-02|1996-07-25|NONE|TRUCK|longside of the bold| +53067|795723|8239|2|17|30917.73|0.05|0.07|N|O|1996-08-09|1996-06-22|1996-08-13|TAKE BACK RETURN|SHIP|ges after the furiously | +53067|700409|410|3|3|4228.11|0.07|0.02|N|O|1996-07-23|1996-07-03|1996-08-14|NONE|RAIL|riously silent | +53067|770528|20529|4|7|11189.43|0.02|0.06|N|O|1996-08-23|1996-06-28|1996-09-06|NONE|RAIL|oxes boost fur| +53067|259694|47210|5|4|6614.72|0.05|0.04|N|O|1996-05-16|1996-06-06|1996-06-08|TAKE BACK RETURN|TRUCK|ggle blithely fluffily unusual instructio| +53067|664151|1691|6|14|15611.68|0.09|0.05|N|O|1996-08-21|1996-06-12|1996-09-14|DELIVER IN PERSON|AIR|ses. express theodolites accord| +53067|378527|28528|7|27|43348.77|0.08|0.01|N|O|1996-07-05|1996-06-07|1996-07-15|COLLECT COD|MAIL|ly alongside of the fluf| +53068|895217|20252|1|4|4848.68|0.10|0.03|A|F|1993-01-11|1993-03-21|1993-02-03|DELIVER IN PERSON|REG AIR|otes. enticingly final packages u| +53068|903839|16358|2|12|22113.48|0.00|0.01|A|F|1993-02-27|1993-03-11|1993-03-07|NONE|MAIL| requests eat quic| +53068|814897|2446|3|49|88780.65|0.07|0.07|A|F|1993-04-09|1993-01-28|1993-05-08|COLLECT COD|MAIL|ts. requests nag carefully carefully | +53068|958019|8020|4|18|19385.46|0.08|0.06|R|F|1993-02-19|1993-02-15|1993-03-04|NONE|REG AIR|en foxes. final pinto beans wake fl| +53068|424426|49443|5|37|49964.80|0.04|0.04|R|F|1993-04-05|1993-02-19|1993-05-03|NONE|AIR|ep blithely special instructions. | +53068|311336|48855|6|31|41766.92|0.06|0.08|R|F|1992-12-30|1993-02-24|1993-01-21|TAKE BACK RETURN|REG AIR|. carefully special requests abov| +53068|623615|23616|7|15|23078.70|0.05|0.08|R|F|1993-03-20|1993-01-23|1993-04-02|TAKE BACK RETURN|FOB| theodolites. f| +53069|83073|8076|1|30|31682.10|0.01|0.04|R|F|1993-11-04|1993-10-20|1993-11-15|NONE|RAIL|ely even courts. accounts use| +53069|200523|38036|2|35|49822.85|0.02|0.07|A|F|1993-08-28|1993-09-21|1993-09-12|DELIVER IN PERSON|MAIL| express foxes boost furiously| +53069|187554|37555|3|18|29547.90|0.04|0.02|A|F|1993-09-13|1993-11-01|1993-09-26|TAKE BACK RETURN|REG AIR|ch. regular, unusual instructi| +53069|217442|29947|4|14|19032.02|0.08|0.08|R|F|1993-10-07|1993-10-07|1993-11-01|NONE|AIR|long the pending pl| +53069|531993|19524|5|44|89098.68|0.03|0.00|R|F|1993-11-11|1993-09-15|1993-11-28|DELIVER IN PERSON|FOB|. regular, express deposits a| +53069|205766|18271|6|26|43465.50|0.08|0.04|R|F|1993-09-03|1993-10-10|1993-09-10|DELIVER IN PERSON|RAIL|lithely during the fluffily ironic accounts| +53069|299801|37317|7|8|14406.32|0.03|0.08|R|F|1993-10-16|1993-11-02|1993-11-09|DELIVER IN PERSON|REG AIR| nag among t| +53070|752255|14771|1|9|11764.98|0.04|0.08|A|F|1995-02-03|1995-03-08|1995-02-26|TAKE BACK RETURN|TRUCK|tegrate aft| +53070|134893|22400|2|46|88682.94|0.00|0.05|R|F|1995-02-16|1995-01-26|1995-03-15|DELIVER IN PERSON|RAIL|hely express instructions. bold| +53070|136660|11665|3|50|84833.00|0.03|0.06|R|F|1995-02-21|1995-01-23|1995-03-20|DELIVER IN PERSON|TRUCK|s are. carefully even| +53070|842905|42906|4|29|53587.94|0.09|0.00|R|F|1995-03-25|1995-03-08|1995-04-18|DELIVER IN PERSON|RAIL|ess deposits cajole acros| +53071|591744|16767|1|19|34878.68|0.02|0.00|N|O|1996-07-22|1996-08-27|1996-08-13|COLLECT COD|MAIL|thely. carefully even escapades are| +53071|435881|10898|2|15|27252.90|0.09|0.07|N|O|1996-07-25|1996-09-18|1996-08-24|DELIVER IN PERSON|REG AIR|inal foxes cajole carefully | +53096|773341|10887|1|2|2828.62|0.05|0.02|N|O|1997-03-08|1997-01-12|1997-03-09|TAKE BACK RETURN|REG AIR| regular pinto beans.| +53096|529931|17462|2|34|66670.94|0.07|0.05|N|O|1997-01-02|1997-01-31|1997-01-19|COLLECT COD|SHIP| haggle slyly f| +53096|541548|41549|3|23|36558.96|0.03|0.02|N|O|1997-01-02|1997-01-16|1997-01-14|DELIVER IN PERSON|RAIL|ests against the silent accounts h| +53096|784682|22228|4|14|24733.10|0.08|0.08|N|O|1997-02-28|1997-01-31|1997-03-19|DELIVER IN PERSON|SHIP|packages. bl| +53096|150217|37727|5|28|35481.88|0.08|0.00|N|O|1997-01-31|1997-01-29|1997-02-20|TAKE BACK RETURN|SHIP|deas cajole | +53097|230066|42571|1|11|10956.55|0.04|0.02|R|F|1993-09-26|1993-07-18|1993-10-22|TAKE BACK RETURN|RAIL|bout the unusual| +53098|201509|1510|1|12|16925.88|0.03|0.03|R|F|1994-11-16|1994-10-24|1994-11-17|DELIVER IN PERSON|MAIL|es sleep f| +53098|750727|25758|2|32|56886.08|0.04|0.02|R|F|1994-08-26|1994-11-10|1994-09-14|DELIVER IN PERSON|RAIL|nding requests haggle. regular, regular| +53098|453085|28104|3|29|30103.74|0.06|0.00|R|F|1994-10-24|1994-11-03|1994-10-28|DELIVER IN PERSON|SHIP|ake blithely| +53098|987909|25467|4|25|49921.50|0.10|0.02|A|F|1994-09-24|1994-10-31|1994-10-20|COLLECT COD|RAIL|ld packages sle| +53098|780809|18355|5|49|92598.73|0.10|0.04|R|F|1994-11-30|1994-11-02|1994-12-16|COLLECT COD|TRUCK|ntain agains| +53099|20481|45482|1|27|37839.96|0.06|0.04|A|F|1993-06-09|1993-06-28|1993-06-24|TAKE BACK RETURN|AIR|e along the regular theodolites. fluffi| +53099|224046|24047|2|48|46561.44|0.02|0.01|A|F|1993-04-24|1993-07-05|1993-05-03|NONE|RAIL|rding to the final, p| +53100|395982|45983|1|49|101820.53|0.02|0.08|R|F|1992-02-29|1992-04-15|1992-03-26|COLLECT COD|AIR|lyly. final, pending | +53100|259539|34550|2|19|28471.88|0.01|0.03|R|F|1992-04-16|1992-05-17|1992-04-23|COLLECT COD|SHIP|ans use ironica| +53100|61461|23963|3|44|62588.24|0.02|0.08|A|F|1992-03-07|1992-04-10|1992-03-17|COLLECT COD|SHIP|ly regular accounts. carefully| +53100|960929|48487|4|23|45767.24|0.04|0.08|R|F|1992-06-17|1992-05-20|1992-06-19|COLLECT COD|FOB|requests. blithely ironic| +53100|322900|35407|5|33|63455.37|0.10|0.01|R|F|1992-04-26|1992-05-16|1992-05-21|NONE|FOB|fter the final, u| +53101|204769|29778|1|49|82013.75|0.05|0.03|A|F|1994-09-30|1994-11-05|1994-10-30|COLLECT COD|SHIP|cuses haggle carefully bli| +53101|549125|49126|2|45|52834.50|0.09|0.00|R|F|1994-11-12|1994-10-11|1994-11-16|COLLECT COD|REG AIR|foxes after the unusual a| +53101|134283|21790|3|16|21076.48|0.09|0.03|A|F|1994-10-14|1994-10-07|1994-11-11|NONE|MAIL|s. bold, unusual instructions was f| +53101|886668|36669|4|7|11582.34|0.01|0.01|A|F|1994-09-30|1994-10-23|1994-10-25|NONE|RAIL| sleep across the theodolites. carefully| +53101|221756|34261|5|15|25166.10|0.08|0.05|R|F|1994-11-20|1994-10-28|1994-12-03|COLLECT COD|TRUCK|ly bold dolphins; slyly ironic de| +53101|50646|25649|6|9|14369.76|0.02|0.08|R|F|1994-10-19|1994-10-04|1994-10-28|TAKE BACK RETURN|TRUCK|d slyly around| +53101|195358|20365|7|7|10173.45|0.01|0.08|A|F|1994-11-30|1994-10-27|1994-12-08|DELIVER IN PERSON|MAIL| requests snooze about the exp| +53102|367731|30239|1|16|28779.52|0.03|0.06|A|F|1992-12-09|1993-01-12|1992-12-12|DELIVER IN PERSON|SHIP| pending pinto beans sleep furiou| +53102|438349|38350|2|3|3861.96|0.06|0.00|A|F|1993-01-03|1992-12-25|1993-01-12|COLLECT COD|SHIP|old ideas nod car| +53102|325185|25186|3|11|13311.87|0.10|0.06|A|F|1993-01-14|1993-01-16|1993-01-15|COLLECT COD|SHIP|ecial depos| +53102|381707|19229|4|30|53660.70|0.01|0.04|R|F|1993-01-02|1992-12-13|1993-01-25|NONE|TRUCK|. fluffily fina| +53102|339982|14995|5|34|68746.98|0.08|0.00|R|F|1993-02-26|1993-01-29|1993-03-24|TAKE BACK RETURN|SHIP|g to the iro| +53102|72276|34778|6|36|44937.72|0.08|0.07|A|F|1992-11-28|1993-01-21|1992-11-29|DELIVER IN PERSON|SHIP|e unusual in| +53102|728339|3368|7|40|54692.00|0.00|0.04|A|F|1993-01-06|1992-12-14|1993-01-19|COLLECT COD|REG AIR|y ironic ideas. final fr| +53103|189449|1953|1|33|50768.52|0.02|0.06|N|O|1996-04-13|1996-05-14|1996-05-03|TAKE BACK RETURN|RAIL|eas. carefully express in| +53103|64636|2140|2|11|17606.93|0.04|0.08|N|O|1996-07-19|1996-05-31|1996-07-27|TAKE BACK RETURN|FOB| deposits wa| +53128|888719|1237|1|16|27322.72|0.10|0.03|A|F|1993-04-25|1993-05-11|1993-04-30|DELIVER IN PERSON|TRUCK|en theodolites along the blithel| +53128|689486|14513|2|23|33935.35|0.01|0.03|R|F|1993-05-21|1993-05-16|1993-06-12|DELIVER IN PERSON|MAIL|ng requests nag around the bli| +53128|178055|3062|3|26|29459.30|0.01|0.00|R|F|1993-07-30|1993-06-10|1993-07-31|NONE|MAIL|es regular packages| +53128|570176|20177|4|27|33646.05|0.00|0.02|R|F|1993-06-03|1993-07-03|1993-06-14|COLLECT COD|FOB|lyly against the furiously eve| +53129|270791|45802|1|18|31712.04|0.07|0.01|R|F|1992-04-29|1992-04-28|1992-05-25|DELIVER IN PERSON|TRUCK|theodolites haggle fluffily alongside o| +53129|175171|25172|2|44|54831.48|0.08|0.00|R|F|1992-07-14|1992-05-05|1992-07-22|NONE|AIR|slyly special, bold theod| +53129|87697|199|3|39|65702.91|0.07|0.07|R|F|1992-07-02|1992-05-13|1992-07-16|COLLECT COD|SHIP|y quiet acc| +53129|911400|11401|4|14|19759.04|0.03|0.06|A|F|1992-06-27|1992-05-15|1992-07-27|TAKE BACK RETURN|SHIP|uriously final packages sleep blithely! t| +53129|897321|9839|5|39|51412.92|0.03|0.06|R|F|1992-07-10|1992-05-20|1992-07-21|NONE|SHIP|ke carefully ironically ironic ti| +53129|257459|19965|6|40|56657.60|0.08|0.03|A|F|1992-04-17|1992-05-27|1992-04-22|COLLECT COD|RAIL|sleep furiously regular deposit| +53130|566073|28585|1|27|30754.35|0.08|0.05|N|F|1995-06-17|1995-04-10|1995-07-15|TAKE BACK RETURN|SHIP|e until the | +53130|980956|5995|2|24|48885.84|0.07|0.03|A|F|1995-03-17|1995-04-29|1995-04-16|DELIVER IN PERSON|REG AIR|g requests integrate above the expr| +53131|93473|18476|1|14|20530.58|0.08|0.04|A|F|1994-06-17|1994-05-02|1994-07-03|DELIVER IN PERSON|RAIL|otes sleep | +53131|990522|28080|2|23|37087.04|0.07|0.07|A|F|1994-03-11|1994-04-10|1994-03-23|TAKE BACK RETURN|TRUCK|ependencies in place of the regular| +53132|371232|46247|1|16|20851.52|0.02|0.05|N|O|1997-12-19|1997-12-27|1998-01-12|TAKE BACK RETURN|MAIL|instructions nag. blithel| +53133|854190|29225|1|27|30892.05|0.10|0.08|N|O|1995-08-28|1995-08-10|1995-08-30|DELIVER IN PERSON|AIR|y regular deposits haggle furiousl| +53133|365223|40238|2|10|12882.10|0.05|0.00|N|O|1995-07-15|1995-07-01|1995-08-04|DELIVER IN PERSON|RAIL| unusual instruct| +53134|94287|19290|1|23|29469.44|0.00|0.06|N|O|1997-01-30|1997-01-08|1997-02-21|COLLECT COD|RAIL|blithely. carefully pending| +53134|671798|9338|2|25|44244.00|0.01|0.03|N|O|1997-02-04|1997-01-27|1997-02-08|NONE|RAIL|uriously even asymptotes against th| +53135|64836|27338|1|21|37817.43|0.10|0.01|N|O|1996-04-13|1996-03-08|1996-04-28|TAKE BACK RETURN|REG AIR|y final accounts. deposits nag f| +53135|692417|29957|2|3|4228.14|0.00|0.08|N|O|1996-04-28|1996-02-23|1996-05-25|COLLECT COD|AIR| of the carefully expres| +53160|360603|48125|1|9|14972.31|0.05|0.01|R|F|1994-02-21|1994-03-08|1994-03-01|NONE|TRUCK|ccounts use furiously alongside of the | +53160|649444|11957|2|20|27868.20|0.07|0.03|A|F|1994-04-12|1994-03-03|1994-04-22|TAKE BACK RETURN|FOB|e of the quic| +53160|195121|20128|3|20|24322.40|0.02|0.05|A|F|1994-02-07|1994-03-01|1994-03-09|COLLECT COD|AIR|ounts nag furiously re| +53160|396412|33934|4|38|57319.20|0.06|0.03|R|F|1994-02-06|1994-02-10|1994-02-23|COLLECT COD|MAIL|even foxes are fluffily even deposits. the| +53160|481587|31588|5|34|53331.04|0.09|0.08|A|F|1993-12-27|1994-02-19|1994-01-03|COLLECT COD|SHIP| alongside of the furiously regular a| +53160|27755|15256|6|16|26924.00|0.05|0.03|A|F|1994-01-09|1994-03-15|1994-01-31|COLLECT COD|RAIL|lar asymptotes-- ironic, dogged deposits c| +53161|326237|1250|1|36|45475.92|0.01|0.03|N|O|1997-03-20|1997-01-19|1997-03-21|DELIVER IN PERSON|REG AIR|theodolites cajol| +53161|50276|37780|2|27|33109.29|0.06|0.07|N|O|1996-12-07|1997-02-06|1996-12-08|COLLECT COD|TRUCK|lyly ironic ins| +53161|972823|10381|3|2|3791.56|0.01|0.05|N|O|1997-02-11|1997-02-14|1997-02-14|NONE|TRUCK| beans. dolphins sleep blithely a| +53162|802831|40380|1|45|78020.55|0.01|0.02|A|F|1994-01-09|1994-01-15|1994-01-30|DELIVER IN PERSON|TRUCK|ular requests. silent | +53162|168128|30632|2|6|7176.72|0.09|0.08|R|F|1993-11-26|1994-01-04|1993-12-26|NONE|TRUCK| instructions boost enticingly fluff| +53162|721305|33820|3|32|42440.64|0.10|0.01|A|F|1994-01-06|1993-12-27|1994-01-27|NONE|TRUCK|y express deposits are foxe| +53162|958171|20691|4|34|41790.42|0.01|0.07|R|F|1994-01-31|1993-12-26|1994-02-22|COLLECT COD|TRUCK|y even deposits with the blit| +53163|103047|28052|1|24|25200.96|0.10|0.06|A|F|1994-05-09|1994-07-02|1994-05-29|TAKE BACK RETURN|MAIL| silent pains against the carefully ironic | +53164|481568|31569|1|43|66630.22|0.05|0.01|N|O|1996-03-06|1996-03-10|1996-03-10|TAKE BACK RETURN|SHIP|g sentiments. regular instructions| +53164|696871|46872|2|36|67242.24|0.04|0.00|N|O|1996-02-08|1996-03-09|1996-02-24|COLLECT COD|AIR|c accounts. ironic deposits serve. packa| +53164|307958|45477|3|33|64876.02|0.10|0.08|N|O|1996-04-01|1996-04-15|1996-04-13|NONE|AIR| carefully a| +53164|844425|19458|4|10|13693.80|0.01|0.08|N|O|1996-02-19|1996-02-18|1996-02-25|DELIVER IN PERSON|FOB|slyly unusual ideas are according to | +53164|239998|27511|5|21|40697.58|0.00|0.05|N|O|1996-05-13|1996-03-23|1996-06-03|NONE|FOB|e slyly regular accounts? foxes nag after | +53165|95731|45732|1|19|32807.87|0.08|0.06|A|F|1994-10-13|1994-10-12|1994-11-02|DELIVER IN PERSON|FOB| are by the blithely regular req| +53165|946347|46348|2|10|13933.00|0.00|0.04|A|F|1994-09-26|1994-11-21|1994-10-11|NONE|REG AIR|ly special theodolites nag about| +53165|242510|42511|3|37|53742.50|0.10|0.04|R|F|1994-12-22|1994-11-27|1995-01-13|NONE|RAIL| deposits. final, final id| +53165|856576|31611|4|50|76626.50|0.02|0.03|A|F|1994-11-14|1994-12-01|1994-12-09|NONE|REG AIR|nic, final foxes around the slyly regular | +53166|340093|15106|1|41|46456.28|0.05|0.02|R|F|1994-05-19|1994-07-07|1994-06-17|TAKE BACK RETURN|FOB|l requests. blith| +53166|937386|24941|2|13|18503.42|0.02|0.05|A|F|1994-04-30|1994-05-20|1994-05-16|NONE|RAIL|ular pinto b| +53166|630169|17706|3|26|28577.38|0.02|0.06|R|F|1994-05-09|1994-06-15|1994-05-30|DELIVER IN PERSON|TRUCK|equests. fluffily final pinto beans | +53167|463211|13212|1|42|49315.98|0.09|0.01|R|F|1995-04-15|1995-02-26|1995-05-10|TAKE BACK RETURN|TRUCK|y bold packages use above the da| +53167|181317|31318|2|37|51737.47|0.10|0.02|R|F|1995-02-05|1995-02-20|1995-03-01|COLLECT COD|REG AIR|final theodolites boost quickly furiousl| +53167|383977|46485|3|39|80377.44|0.10|0.05|R|F|1995-05-02|1995-03-03|1995-05-18|NONE|RAIL|ilent platelets nag slyly carefully pending| +53167|487443|49953|4|6|8582.52|0.06|0.03|A|F|1995-01-13|1995-04-02|1995-02-09|COLLECT COD|TRUCK| of the blithe| +53167|453074|15584|5|19|19513.95|0.03|0.03|R|F|1995-02-10|1995-03-23|1995-03-12|TAKE BACK RETURN|SHIP|nts. bold a| +53167|813099|38132|6|47|47566.35|0.03|0.04|R|F|1995-01-27|1995-02-12|1995-02-09|TAKE BACK RETURN|RAIL|sleep furiously. | +53192|854110|41662|1|49|52139.43|0.08|0.03|N|O|1996-06-21|1996-06-17|1996-07-09|DELIVER IN PERSON|SHIP|osits haggle slyly. ironic | +53192|18751|6252|2|11|18367.25|0.09|0.07|N|O|1996-04-10|1996-04-29|1996-04-16|NONE|MAIL|ful requests;| +53192|131467|6472|3|49|73424.54|0.09|0.06|N|O|1996-05-24|1996-05-14|1996-05-30|NONE|MAIL|cajole furiously. blithely bold de| +53192|551660|39194|4|14|23962.96|0.08|0.00|N|O|1996-04-05|1996-05-25|1996-04-21|COLLECT COD|MAIL|arefully unusua| +53192|737625|12654|5|19|31589.21|0.08|0.02|N|O|1996-04-01|1996-04-29|1996-04-05|NONE|SHIP|nusual pinto beans. quickly final dolphi| +53192|254844|42360|6|36|64757.88|0.06|0.00|N|O|1996-07-13|1996-05-25|1996-07-25|TAKE BACK RETURN|SHIP|y pending pinto beans n| +53192|151866|26873|7|12|23014.32|0.07|0.02|N|O|1996-06-17|1996-04-21|1996-06-22|DELIVER IN PERSON|FOB|instructions across the ironic pa| +53193|397380|47381|1|3|4432.11|0.06|0.00|R|F|1994-09-18|1994-10-05|1994-09-25|NONE|FOB|lar, silent a| +53193|749314|11829|2|3|4089.84|0.06|0.06|A|F|1994-11-07|1994-10-01|1994-11-27|NONE|SHIP| the furious| +53193|711895|11896|3|43|81994.98|0.10|0.06|A|F|1994-10-19|1994-09-14|1994-11-17|TAKE BACK RETURN|REG AIR|xpress theodolites. busi| +53193|817568|17569|4|48|71304.96|0.07|0.01|R|F|1994-11-28|1994-09-20|1994-12-13|NONE|MAIL|es. blithely unu| +53193|858800|33835|5|34|59797.84|0.03|0.00|A|F|1994-10-17|1994-10-17|1994-11-06|COLLECT COD|RAIL|nusual asymp| +53193|841849|41850|6|50|89540.00|0.04|0.07|A|F|1994-11-19|1994-10-29|1994-11-30|TAKE BACK RETURN|AIR|e ironic theodolites use regular excuse| +53194|175225|12735|1|10|13002.20|0.00|0.00|A|F|1993-12-22|1993-12-11|1994-01-03|COLLECT COD|TRUCK| about the furiously ironic deposits h| +53194|992339|29897|2|22|31488.38|0.09|0.02|R|F|1993-10-24|1993-11-03|1993-10-29|TAKE BACK RETURN|TRUCK|refully regular requests wa| +53194|232794|45299|3|12|20721.36|0.04|0.06|R|F|1993-12-16|1993-12-19|1993-12-23|TAKE BACK RETURN|MAIL|xpress foxes about the fluff| +53194|560908|10909|4|2|3937.76|0.05|0.02|A|F|1993-12-18|1993-12-17|1994-01-13|NONE|FOB|ently. stealthily regul| +53195|821100|33617|1|46|46968.76|0.07|0.03|A|F|1994-08-24|1994-07-06|1994-09-03|NONE|MAIL|sleep express| +53195|211691|49204|2|4|6410.72|0.10|0.08|R|F|1994-06-08|1994-07-24|1994-06-20|NONE|MAIL|ng ideas. regu| +53195|886554|11589|3|10|15405.10|0.05|0.08|R|F|1994-05-31|1994-07-02|1994-06-30|COLLECT COD|RAIL| use furiously. ca| +53195|310549|35562|4|50|77976.50|0.01|0.05|A|F|1994-09-20|1994-07-29|1994-09-26|NONE|SHIP|enticing deposits. deposi| +53195|391243|16258|5|6|8005.38|0.08|0.04|R|F|1994-09-13|1994-06-29|1994-09-24|TAKE BACK RETURN|FOB|riously flu| +53195|620072|20073|6|38|37697.52|0.06|0.04|A|F|1994-07-23|1994-06-30|1994-07-27|TAKE BACK RETURN|REG AIR|blithely. carefully even accounts de| +53196|146206|46207|1|16|20035.20|0.05|0.02|R|F|1992-01-18|1992-03-27|1992-02-02|TAKE BACK RETURN|SHIP|s theodolites boost slyly even requests? r| +53197|67161|4665|1|36|40613.76|0.02|0.01|N|O|1997-06-16|1997-05-04|1997-07-04|TAKE BACK RETURN|REG AIR|y even deposits run according to the req| +53197|767162|4708|2|28|34415.64|0.06|0.03|N|O|1997-05-29|1997-05-16|1997-06-14|DELIVER IN PERSON|REG AIR| regular, final platelets. slyly sp| +53197|684170|21710|3|13|15003.82|0.10|0.04|N|O|1997-05-08|1997-05-30|1997-05-23|NONE|TRUCK|press deposits haggle blit| +53197|828937|28938|4|1|1865.89|0.04|0.06|N|O|1997-04-20|1997-06-12|1997-04-27|TAKE BACK RETURN|AIR|s against t| +53198|204156|41669|1|13|13781.82|0.04|0.06|R|F|1993-03-10|1993-03-04|1993-04-07|COLLECT COD|REG AIR|ke blithely unusual, express packages: d| +53198|236811|36812|2|49|85642.20|0.10|0.02|R|F|1993-03-28|1993-03-15|1993-03-29|NONE|REG AIR|he final packages.| +53198|77727|40229|3|11|18751.92|0.08|0.00|A|F|1992-12-31|1993-03-02|1993-01-20|COLLECT COD|RAIL|hely according to the final packages.| +53199|640756|3269|1|33|55991.76|0.03|0.08|A|F|1993-12-19|1994-01-02|1994-01-04|COLLECT COD|MAIL|efully against| +53199|169409|19410|2|49|72441.60|0.05|0.04|R|F|1994-01-22|1994-01-30|1994-02-10|TAKE BACK RETURN|RAIL|. blithely ironic ideas use quic| +53199|246888|9393|3|38|69725.06|0.06|0.06|R|F|1994-03-08|1993-12-30|1994-03-31|NONE|MAIL| carefully express dependencies? | +53199|438378|25903|4|23|30276.05|0.05|0.03|R|F|1994-03-17|1994-02-07|1994-03-18|TAKE BACK RETURN|FOB|h furiously among | +53199|813105|25622|5|46|46830.76|0.06|0.04|R|F|1994-01-24|1994-02-07|1994-02-17|DELIVER IN PERSON|RAIL|arefully ironi| +53199|842033|29582|6|44|42899.56|0.04|0.01|R|F|1994-03-01|1994-01-22|1994-03-26|DELIVER IN PERSON|REG AIR|ages. depo| +53199|42584|30085|7|39|59536.62|0.07|0.03|R|F|1994-01-15|1994-01-01|1994-02-11|DELIVER IN PERSON|REG AIR|lyly regular dol| +53224|697450|9964|1|39|56449.38|0.08|0.03|N|O|1997-05-14|1997-06-30|1997-06-13|TAKE BACK RETURN|RAIL|uses are carefully. regular, special dol| +53224|36221|11222|2|3|3471.66|0.01|0.04|N|O|1997-06-02|1997-06-18|1997-06-04|NONE|TRUCK|lar foxes. foxes haggle carefully | +53224|762002|12003|3|24|25535.28|0.04|0.02|N|O|1997-05-30|1997-07-20|1997-06-24|DELIVER IN PERSON|REG AIR|refully. slow packages use carefully | +53225|921792|9347|1|7|12696.25|0.09|0.04|N|O|1998-01-22|1998-02-09|1998-02-18|DELIVER IN PERSON|MAIL|lithely. pending, even asymptotes beyon| +53225|553089|15601|2|35|39972.10|0.03|0.06|N|O|1998-01-18|1998-03-18|1998-02-14|COLLECT COD|MAIL|hinly regular packages nod fluffil| +53225|761292|11293|3|25|33831.50|0.08|0.05|N|O|1998-04-21|1998-02-23|1998-05-03|DELIVER IN PERSON|TRUCK|ickly idly unusual the| +53225|18572|31073|4|3|4471.71|0.04|0.06|N|O|1998-02-11|1998-03-02|1998-02-20|TAKE BACK RETURN|MAIL|lar, final| +53225|136769|11774|5|12|21669.12|0.10|0.04|N|O|1998-01-05|1998-03-17|1998-01-11|DELIVER IN PERSON|FOB|ickly across the slyly expr| +53225|669329|44356|6|1|1298.29|0.06|0.07|N|O|1998-01-19|1998-02-17|1998-02-14|COLLECT COD|MAIL|after the sly| +53225|405930|18439|7|5|9179.55|0.00|0.03|N|O|1998-01-23|1998-02-06|1998-02-11|NONE|FOB|e the blithely final depths; sl| +53226|451064|26083|1|4|4060.16|0.05|0.02|A|F|1994-01-20|1994-01-25|1994-01-21|DELIVER IN PERSON|TRUCK|according to the ironic ideas| +53226|30608|43109|2|2|3077.20|0.06|0.04|R|F|1994-02-20|1994-02-04|1994-03-16|DELIVER IN PERSON|AIR|. pending, ironic ideas x-ray despite t| +53226|416405|16406|3|1|1321.38|0.04|0.03|A|F|1994-03-15|1993-12-21|1994-03-28|TAKE BACK RETURN|MAIL|fully ironic dependencies haggle. pen| +53226|503276|15787|4|6|7675.50|0.10|0.08|A|F|1993-12-13|1994-02-13|1993-12-17|DELIVER IN PERSON|MAIL|the dependencies. regular theodoli| +53226|558903|46437|5|38|74551.44|0.07|0.02|R|F|1993-12-12|1994-02-05|1993-12-16|NONE|SHIP| across the requests. pla| +53227|839914|14947|1|2|3707.74|0.03|0.04|N|O|1995-06-21|1995-06-13|1995-06-28|DELIVER IN PERSON|SHIP|es promise slyly! even pinto beans are furi| +53227|419941|32450|2|29|53966.68|0.04|0.07|N|O|1995-07-14|1995-07-09|1995-08-06|TAKE BACK RETURN|MAIL|gouts nag bl| +53227|933258|45777|3|11|14203.31|0.01|0.01|N|O|1995-07-20|1995-07-02|1995-08-02|NONE|AIR|l foxes after the daring inst| +53228|481997|7016|1|45|89053.65|0.06|0.05|N|O|1995-10-15|1995-09-09|1995-10-20|COLLECT COD|TRUCK|counts haggle furiously alongside o| +53228|908025|45580|2|37|38220.26|0.02|0.05|N|O|1995-10-03|1995-08-11|1995-10-13|TAKE BACK RETURN|AIR|osits boost blithely. excuses s| +53228|173651|48658|3|14|24145.10|0.04|0.08|N|O|1995-09-30|1995-08-05|1995-10-24|COLLECT COD|RAIL|ses. regular requests are a| +53228|543453|18474|4|41|61353.63|0.02|0.07|N|O|1995-07-24|1995-09-10|1995-07-25|COLLECT COD|MAIL|ake carefully| +53228|802351|14868|5|15|18799.65|0.00|0.03|N|O|1995-06-30|1995-09-05|1995-07-01|DELIVER IN PERSON|MAIL| nag furiously blithely | +53229|628754|16291|1|26|43750.72|0.09|0.08|N|O|1996-11-03|1996-12-24|1996-11-17|DELIVER IN PERSON|AIR|slyly regular deposits | +53229|465552|28062|2|44|66771.32|0.09|0.05|N|O|1996-10-25|1996-12-25|1996-10-31|DELIVER IN PERSON|AIR|counts. fur| +53229|516477|28988|3|47|70192.15|0.00|0.08|N|O|1997-01-15|1996-12-06|1997-02-04|DELIVER IN PERSON|REG AIR|usual, unusual pla| +53229|413353|25862|4|17|21527.61|0.01|0.02|N|O|1997-01-17|1996-12-27|1997-01-18|COLLECT COD|REG AIR| pinto beans boost slyly slyly iron| +53229|213479|25984|5|30|41773.80|0.10|0.08|N|O|1997-02-03|1996-11-29|1997-02-04|COLLECT COD|FOB| sleep accordin| +53229|925819|38338|6|30|55343.10|0.00|0.03|N|O|1997-01-25|1996-12-18|1997-02-05|DELIVER IN PERSON|MAIL|ts cajole sometimes about the| +53230|806156|43705|1|12|12745.32|0.02|0.05|R|F|1994-02-20|1994-01-05|1994-03-09|DELIVER IN PERSON|MAIL|deposits. regular accounts gr| +53230|60222|10223|2|8|9457.76|0.04|0.03|R|F|1994-01-08|1993-12-07|1994-01-14|DELIVER IN PERSON|AIR|ding instructions sleep after th| +53231|700189|37732|1|21|24972.15|0.01|0.02|R|F|1994-02-17|1994-02-24|1994-02-28|COLLECT COD|FOB| above the ironic foxes. s| +53231|64304|26806|2|11|13951.30|0.02|0.02|A|F|1994-03-08|1994-03-03|1994-03-28|TAKE BACK RETURN|FOB|frets. reg| +53231|750892|38438|3|33|64114.38|0.08|0.07|A|F|1994-02-10|1994-03-16|1994-02-21|TAKE BACK RETURN|MAIL| ironic requests haggle about the even, | +53231|230194|30195|4|41|46091.38|0.05|0.01|A|F|1994-04-21|1994-03-26|1994-05-06|TAKE BACK RETURN|RAIL|slyly bold req| +53231|856654|44206|5|46|74088.06|0.01|0.05|R|F|1994-03-07|1994-03-08|1994-04-03|TAKE BACK RETURN|SHIP|r the blithely even packages. pending| +53231|773337|48368|6|12|16923.60|0.03|0.03|A|F|1994-05-08|1994-04-06|1994-05-31|TAKE BACK RETURN|MAIL|ickly regular accounts| +53256|554620|29643|1|10|16746.00|0.05|0.04|R|F|1993-05-13|1993-05-26|1993-06-03|DELIVER IN PERSON|MAIL|ithely even orbits sleep fluf| +53256|498158|23177|2|18|20810.34|0.04|0.02|A|F|1993-05-15|1993-05-28|1993-06-07|NONE|REG AIR| haggle sometimes. carefull| +53256|535663|10684|3|43|73041.52|0.07|0.07|A|F|1993-04-11|1993-06-06|1993-04-20|TAKE BACK RETURN|FOB| accounts.| +53256|882306|19858|4|16|20612.16|0.08|0.08|A|F|1993-07-25|1993-06-02|1993-08-18|NONE|MAIL|l pains cajole. express excuses detect slyl| +53257|357181|32196|1|10|12381.70|0.09|0.01|R|F|1994-01-12|1994-01-08|1994-01-29|NONE|TRUCK| the carefully final platelets. b| +53257|139396|39397|2|7|10047.73|0.05|0.01|A|F|1994-04-02|1994-02-28|1994-04-09|DELIVER IN PERSON|REG AIR|y brave pinto beans. regular instructi| +53257|827238|27239|3|17|19808.23|0.07|0.01|R|F|1994-03-11|1994-02-22|1994-03-30|NONE|AIR|y alongside of t| +53257|388040|13055|4|21|23688.63|0.04|0.03|A|F|1994-03-15|1994-01-15|1994-04-09|COLLECT COD|FOB|tly regular instructions nag slyly a| +53258|148540|48541|1|28|44479.12|0.08|0.07|R|F|1995-05-10|1995-04-02|1995-06-08|TAKE BACK RETURN|SHIP|efully regular foxes are care| +53258|504330|29351|2|17|22683.27|0.08|0.08|R|F|1995-04-30|1995-03-24|1995-05-29|COLLECT COD|REG AIR|unts sleep sly| +53258|272302|9818|3|39|49697.31|0.07|0.02|R|F|1995-04-25|1995-03-23|1995-05-21|TAKE BACK RETURN|REG AIR|quests. waters after the re| +53259|602796|40333|1|11|18686.36|0.06|0.08|A|F|1993-04-22|1993-05-05|1993-04-27|NONE|AIR|ly across the ironic packag| +53260|548611|11122|1|2|3319.18|0.05|0.01|A|F|1995-04-14|1995-01-23|1995-04-25|COLLECT COD|REG AIR|ully final excuses doubt sly| +53260|497493|35021|2|18|26828.46|0.01|0.00|R|F|1995-01-04|1995-02-07|1995-01-24|DELIVER IN PERSON|MAIL|ns haggle. fur| +53260|360563|23071|3|2|3247.10|0.01|0.05|R|F|1995-01-17|1995-02-16|1995-02-03|DELIVER IN PERSON|AIR|ironic asympto| +53260|968448|18449|4|5|7582.00|0.05|0.00|A|F|1995-01-09|1995-02-01|1995-01-19|TAKE BACK RETURN|SHIP|y ironic excuses run c| +53260|697562|47563|5|19|29631.07|0.08|0.03|A|F|1995-02-11|1995-02-08|1995-02-28|COLLECT COD|AIR| furiously bold foxes sleep alongside| +53261|352126|39648|1|16|18849.76|0.05|0.07|N|O|1996-01-21|1996-03-18|1996-02-18|NONE|TRUCK|nic foxes above the even, regular package| +53261|166885|29389|2|4|7807.52|0.00|0.02|N|O|1996-04-19|1996-02-11|1996-04-30|DELIVER IN PERSON|AIR| unusual decoys. carefully fu| +53261|833046|33047|3|9|8811.00|0.02|0.05|N|O|1996-03-14|1996-02-16|1996-03-21|TAKE BACK RETURN|RAIL| permanent packages. slyly fi| +53261|994667|19706|4|22|38755.64|0.10|0.07|N|O|1996-02-28|1996-02-10|1996-03-10|TAKE BACK RETURN|TRUCK|old requests use fluffily stealthy dugo| +53261|354662|4663|5|27|46349.55|0.03|0.00|N|O|1996-03-07|1996-03-13|1996-03-13|COLLECT COD|SHIP|lar requests. furiousl| +53261|790944|40945|6|20|40698.20|0.03|0.07|N|O|1996-03-09|1996-02-24|1996-04-04|COLLECT COD|TRUCK|ently ironic | +53261|381747|44255|7|14|25602.22|0.09|0.08|N|O|1995-12-21|1996-02-25|1996-01-06|NONE|TRUCK|e always after | +53262|12064|49565|1|22|21473.32|0.03|0.05|N|O|1995-10-09|1995-10-04|1995-10-21|COLLECT COD|REG AIR|thely expres| +53262|748295|23324|2|43|57760.18|0.05|0.05|N|O|1995-10-10|1995-10-04|1995-10-24|TAKE BACK RETURN|FOB|fily regular pin| +53262|579777|17311|3|40|74270.00|0.00|0.06|N|O|1995-09-22|1995-10-24|1995-09-30|TAKE BACK RETURN|FOB|its. blithel| +53263|42373|29874|1|41|53930.17|0.07|0.05|N|O|1998-09-08|1998-08-03|1998-10-07|TAKE BACK RETURN|MAIL|e blithely after the carefully final depend| +53263|151330|26337|2|38|52490.54|0.07|0.00|N|O|1998-08-07|1998-06-29|1998-09-04|COLLECT COD|MAIL|ndencies after the express platel| +53263|395951|20966|3|17|34797.98|0.05|0.03|N|O|1998-08-06|1998-07-29|1998-08-13|TAKE BACK RETURN|TRUCK|l requests. caref| +53263|746121|8636|4|30|35012.70|0.05|0.08|N|O|1998-06-06|1998-07-01|1998-06-09|NONE|TRUCK|requests. ideas need to i| +53263|51021|26024|5|26|25272.52|0.08|0.04|N|O|1998-08-20|1998-06-14|1998-08-26|COLLECT COD|RAIL|ar, ironic accounts. furiously| +53263|496188|21207|6|31|36708.96|0.01|0.06|N|O|1998-09-05|1998-06-28|1998-09-18|DELIVER IN PERSON|FOB|is nag blithely fur| +53263|415595|40612|7|30|45317.10|0.06|0.06|N|O|1998-08-31|1998-07-31|1998-09-12|TAKE BACK RETURN|SHIP|carefully against the re| +53288|904326|29363|1|15|19954.20|0.00|0.04|N|O|1996-09-29|1996-08-09|1996-10-08|NONE|MAIL|structions across the pi| +53288|997444|47445|2|34|52407.60|0.02|0.01|N|O|1996-08-29|1996-08-31|1996-09-19|NONE|FOB|ackages sleep closely acro| +53288|30901|30902|3|32|58620.80|0.00|0.02|N|O|1996-10-06|1996-07-09|1996-10-27|NONE|TRUCK|tructions a| +53288|344834|19847|4|41|77031.62|0.00|0.04|N|O|1996-07-07|1996-08-18|1996-07-26|COLLECT COD|FOB|the furiously bold packages; carefully ir| +53289|817222|4771|1|38|43288.84|0.10|0.06|N|O|1997-06-04|1997-06-27|1997-06-11|TAKE BACK RETURN|SHIP|tes cajole. ironic ideas detect along th| +53289|37687|12688|2|21|34118.28|0.09|0.08|N|O|1997-07-15|1997-06-19|1997-07-22|COLLECT COD|REG AIR|g platelets dete| +53289|402708|2709|3|29|46709.72|0.06|0.06|N|O|1997-08-10|1997-05-31|1997-08-26|DELIVER IN PERSON|FOB|d theodolite| +53290|622170|47195|1|16|17474.24|0.07|0.01|N|O|1995-07-11|1995-09-14|1995-07-21|COLLECT COD|AIR| dependencies. req| +53290|810716|48265|2|38|61813.46|0.05|0.05|N|O|1995-10-23|1995-09-06|1995-11-04|NONE|AIR| blithely alongside of the qui| +53290|692039|17066|3|12|12372.00|0.00|0.02|N|O|1995-09-04|1995-09-21|1995-09-07|TAKE BACK RETURN|FOB|the blithely unusual deposits ha| +53290|87933|12936|4|6|11525.58|0.03|0.05|N|O|1995-10-14|1995-08-19|1995-10-26|NONE|RAIL| haggle blithely against the furiously r| +53291|197037|22044|1|36|40825.08|0.02|0.06|N|O|1997-10-25|1997-10-18|1997-10-29|DELIVER IN PERSON|MAIL| ideas above the requests wake| +53291|589407|39408|2|3|4489.14|0.10|0.00|N|O|1997-09-20|1997-11-04|1997-10-07|COLLECT COD|REG AIR|s. carefully dogged ideas boost| +53291|150873|874|3|41|78878.67|0.00|0.00|N|O|1997-11-15|1997-12-09|1997-11-16|TAKE BACK RETURN|AIR|ole blithely against the quickly bold in| +53292|344204|19217|1|25|31204.75|0.04|0.03|N|O|1997-04-21|1997-05-27|1997-05-13|COLLECT COD|REG AIR|g above the ironic ideas. special ac| +53292|29129|29130|2|37|39150.44|0.04|0.04|N|O|1997-04-12|1997-05-10|1997-05-02|TAKE BACK RETURN|TRUCK|ar theodolites cajole slyly regular asymp| +53292|563080|38103|3|10|11430.60|0.02|0.04|N|O|1997-06-24|1997-05-10|1997-07-14|NONE|SHIP|ions affix quickly even foxes. furiously fi| +53292|681702|31703|4|1|1683.67|0.05|0.06|N|O|1997-06-06|1997-05-12|1997-06-10|NONE|FOB|nts lose along the quickly | +53293|675320|12860|1|41|53106.89|0.07|0.07|R|F|1993-08-11|1993-08-27|1993-09-01|DELIVER IN PERSON|MAIL|s poach. accounts use quickly. e| +53293|101225|26230|2|17|20845.74|0.10|0.04|A|F|1993-08-14|1993-08-09|1993-08-25|DELIVER IN PERSON|AIR|ven theodolites sleep quietly idle theod| +53293|284747|47253|3|14|24244.22|0.01|0.07|A|F|1993-07-26|1993-08-18|1993-07-30|DELIVER IN PERSON|MAIL|unts haggle unusual, i| +53293|736005|48520|4|22|22901.34|0.07|0.02|R|F|1993-08-14|1993-09-01|1993-09-04|COLLECT COD|REG AIR|e. slyly ironic accoun| +53293|21802|21803|5|33|56885.40|0.06|0.05|A|F|1993-08-13|1993-08-07|1993-08-14|COLLECT COD|SHIP|iers sleep quickly. furiously even packag| +53293|424278|49295|6|34|40876.50|0.01|0.00|R|F|1993-09-03|1993-08-13|1993-09-14|TAKE BACK RETURN|REG AIR|fully. pending, ironic pinto beans| +53293|826793|39310|7|24|41274.00|0.08|0.03|A|F|1993-07-04|1993-08-11|1993-07-17|COLLECT COD|RAIL|cording to the | +53294|900466|38021|1|43|63056.06|0.03|0.08|N|O|1998-09-17|1998-10-08|1998-10-15|COLLECT COD|AIR| thinly fi| +53295|221397|21398|1|41|54053.58|0.00|0.08|A|F|1993-09-30|1993-08-20|1993-10-21|NONE|SHIP|nusual platelets| +53295|14895|14896|2|30|54296.70|0.00|0.04|A|F|1993-10-28|1993-08-28|1993-11-10|DELIVER IN PERSON|FOB|ickly. carefully | +53295|332377|7390|3|40|56374.40|0.00|0.03|R|F|1993-08-27|1993-09-13|1993-09-03|TAKE BACK RETURN|MAIL|ckly deposits| +53295|254016|4017|4|29|28130.00|0.06|0.06|R|F|1993-10-22|1993-09-27|1993-11-06|DELIVER IN PERSON|RAIL|gular theodoli| +53320|202645|27654|1|42|65000.46|0.00|0.05|N|O|1996-02-13|1996-02-16|1996-02-16|TAKE BACK RETURN|TRUCK|en asymptotes are slyly. ironic| +53320|850574|13092|2|27|41162.31|0.10|0.02|N|O|1995-12-23|1996-02-07|1996-01-12|NONE|MAIL|ests hang b| +53321|960033|35072|1|26|28417.74|0.09|0.02|N|O|1997-12-28|1997-12-29|1998-01-15|NONE|MAIL|s boost slyly carefu| +53321|264597|14598|2|31|48408.98|0.02|0.04|N|O|1998-02-15|1997-12-12|1998-03-08|NONE|REG AIR|ns among the express excuses run slyly flu| +53321|81204|31205|3|49|58074.80|0.03|0.03|N|O|1998-02-18|1997-12-29|1998-03-14|TAKE BACK RETURN|SHIP|uriously unusu| +53321|785673|23219|4|11|19345.04|0.06|0.01|N|O|1998-03-11|1998-01-07|1998-03-13|DELIVER IN PERSON|MAIL| regular depo| +53322|833974|21523|1|16|30526.88|0.06|0.03|A|F|1994-10-03|1994-09-20|1994-10-19|TAKE BACK RETURN|REG AIR|ic deposit| +53322|599860|12372|2|47|92112.48|0.06|0.00|A|F|1994-11-01|1994-11-19|1994-11-28|TAKE BACK RETURN|MAIL|ld, final requests. slyl| +53323|16163|41164|1|9|9712.44|0.08|0.03|N|O|1996-07-25|1996-07-03|1996-08-24|TAKE BACK RETURN|FOB|arefully spec| +53323|641460|28997|2|23|32232.89|0.10|0.00|N|O|1996-04-26|1996-06-23|1996-05-01|TAKE BACK RETURN|AIR|otes use. final, regular packages boost. r| +53323|4390|41891|3|37|47892.43|0.05|0.07|N|O|1996-06-08|1996-07-16|1996-07-03|NONE|REG AIR|es; blithely final package| +53323|769354|31870|4|35|49816.20|0.00|0.06|N|O|1996-07-30|1996-05-31|1996-08-02|NONE|FOB|ously pending d| +53323|517364|29875|5|37|51109.58|0.10|0.00|N|O|1996-05-14|1996-07-10|1996-05-16|COLLECT COD|RAIL| the carefully even foxes haggle | +53323|332048|7061|6|14|15120.42|0.04|0.02|N|O|1996-05-21|1996-05-19|1996-05-31|NONE|REG AIR|he furiously special deposits are after t| +53324|591435|16458|1|16|24422.56|0.04|0.02|R|F|1992-11-04|1992-11-03|1992-11-15|TAKE BACK RETURN|REG AIR|refully along the iro| +53324|236777|49282|2|42|71977.92|0.05|0.06|A|F|1992-12-21|1992-12-06|1993-01-06|TAKE BACK RETURN|TRUCK|egular requests detec| +53324|509016|21527|3|35|35874.65|0.04|0.07|A|F|1992-11-06|1992-10-31|1992-11-07|NONE|REG AIR|deposits might nag. blithely| +53325|752522|40068|1|9|14170.41|0.09|0.00|N|O|1998-08-24|1998-09-17|1998-09-03|COLLECT COD|TRUCK|ts sleep fluffily about the eve| +53325|625327|12864|2|45|56353.05|0.08|0.03|N|O|1998-09-24|1998-08-03|1998-09-25|COLLECT COD|MAIL|ly unusual ideas; slyly unusual depos| +53325|863372|38407|3|7|9347.31|0.05|0.03|N|O|1998-08-16|1998-08-03|1998-08-30|DELIVER IN PERSON|MAIL|requests use carefully aft| +53325|685752|23292|4|17|29541.24|0.07|0.00|N|O|1998-08-11|1998-09-05|1998-09-01|TAKE BACK RETURN|SHIP|ld deposits use furiously a| +53325|419128|31637|5|2|2094.20|0.09|0.03|N|O|1998-09-22|1998-07-28|1998-10-11|DELIVER IN PERSON|SHIP|al packages nag pinto | +53325|280070|42576|6|10|10500.60|0.01|0.08|N|O|1998-10-21|1998-09-10|1998-11-10|DELIVER IN PERSON|SHIP|hely ironic requests c| +53325|132491|7496|7|32|48751.68|0.02|0.03|N|O|1998-09-03|1998-09-10|1998-09-14|NONE|REG AIR|ep blithely. even frets boost qu| +53326|769610|32126|1|17|28552.86|0.03|0.08|N|O|1996-05-11|1996-02-16|1996-05-17|TAKE BACK RETURN|MAIL|y ironic foxes. fu| +53326|819238|44271|2|8|9257.52|0.06|0.00|N|O|1996-03-17|1996-02-18|1996-03-22|DELIVER IN PERSON|TRUCK| use ironically al| +53326|918830|31349|3|37|68405.23|0.02|0.00|N|O|1996-04-18|1996-03-23|1996-05-05|COLLECT COD|TRUCK|ourts. even requ| +53326|772896|47927|4|50|98443.00|0.10|0.00|N|O|1996-04-18|1996-03-15|1996-05-03|TAKE BACK RETURN|REG AIR| ironic instructions sleep furiously reque| +53327|763761|1307|1|12|21896.76|0.10|0.01|N|O|1997-08-15|1997-07-07|1997-09-10|DELIVER IN PERSON|FOB|nal requests wake blithely-- instructions| +53327|517269|29780|2|21|27011.04|0.10|0.05|N|O|1997-05-15|1997-07-22|1997-05-30|NONE|MAIL| run carefully furiously speci| +53327|735375|22918|3|14|19744.76|0.01|0.04|N|O|1997-05-31|1997-06-03|1997-06-10|NONE|REG AIR|lent accounts sleep furi| +53327|441842|41843|4|1|1783.82|0.10|0.07|N|O|1997-05-29|1997-06-28|1997-06-04|COLLECT COD|REG AIR|ts sleep carefully. slyly re| +53327|38443|13444|5|24|33154.56|0.03|0.04|N|O|1997-06-12|1997-07-05|1997-07-07|DELIVER IN PERSON|FOB| express foxes cajole carefully. qui| +53352|730313|42828|1|1|1343.28|0.00|0.02|N|O|1998-08-27|1998-07-03|1998-09-14|NONE|AIR| run slyly| +53352|355293|30308|2|15|20224.20|0.01|0.06|N|O|1998-07-20|1998-07-12|1998-08-01|COLLECT COD|AIR|iously regular theodolites. ironic instr| +53353|783561|46077|1|20|32890.60|0.09|0.07|N|O|1997-11-30|1997-11-23|1997-12-25|NONE|AIR|y unusual ideas. quickly bold platelets| +53354|154336|4337|1|5|6951.65|0.04|0.01|A|F|1992-11-18|1992-10-17|1992-12-18|NONE|SHIP| foxes are sl| +53354|908927|21446|2|16|30974.08|0.07|0.03|R|F|1992-11-30|1992-09-30|1992-12-03|NONE|TRUCK|to beans haggle bravely blithely u| +53354|332968|32969|3|42|84039.90|0.04|0.00|R|F|1992-11-26|1992-09-27|1992-11-30|NONE|RAIL|times even depths. quickly | +53354|188348|13355|4|12|17236.08|0.08|0.01|A|F|1992-10-03|1992-11-04|1992-10-10|TAKE BACK RETURN|FOB|fluffily final packages. slyly| +53354|553598|3599|5|27|44592.39|0.07|0.00|A|F|1992-11-04|1992-10-28|1992-11-19|DELIVER IN PERSON|REG AIR|ffily bold| +53354|317603|17604|6|30|48617.70|0.02|0.05|R|F|1992-09-30|1992-10-14|1992-10-01|COLLECT COD|REG AIR|al deposits nag alongside| +53355|500549|25570|1|42|65079.84|0.06|0.05|N|O|1996-11-24|1996-11-25|1996-12-08|DELIVER IN PERSON|FOB|al sauternes. fi| +53356|457170|32189|1|46|51848.90|0.06|0.02|R|F|1994-04-16|1994-06-06|1994-05-16|TAKE BACK RETURN|RAIL|ss, ironic foxes.| +53357|39519|2020|1|10|14585.10|0.01|0.05|N|O|1997-11-14|1997-11-13|1997-12-05|DELIVER IN PERSON|SHIP|ly alongside o| +53358|317633|42646|1|5|8253.10|0.03|0.00|N|O|1996-06-14|1996-08-16|1996-07-04|COLLECT COD|TRUCK|se slyly around the bold requests. even, f| +53359|936866|36867|1|40|76112.80|0.08|0.01|N|O|1995-11-08|1995-11-02|1995-11-14|TAKE BACK RETURN|MAIL|structions. | +53359|890072|27624|2|16|16992.48|0.05|0.04|N|O|1995-09-05|1995-10-22|1995-09-15|DELIVER IN PERSON|FOB|oss the speci| +53359|424478|36987|3|9|12622.05|0.00|0.03|N|O|1995-12-08|1995-10-31|1995-12-28|TAKE BACK RETURN|REG AIR|counts nod. furiously ironic | +53359|192664|30174|4|34|59726.44|0.01|0.05|N|O|1995-12-16|1995-10-27|1996-01-07|DELIVER IN PERSON|REG AIR|sts haggle furiously along the fluf| +53384|106159|31164|1|17|19807.55|0.08|0.07|R|F|1995-05-30|1995-05-24|1995-06-06|TAKE BACK RETURN|FOB|en, ironic foxes nag quickly expre| +53384|211414|11415|2|37|49039.80|0.05|0.07|R|F|1995-03-19|1995-04-03|1995-04-03|TAKE BACK RETURN|MAIL|sly silent ideas. quickly ex| +53385|614319|39344|1|7|8632.96|0.05|0.02|R|F|1994-11-23|1994-12-29|1994-12-02|NONE|FOB| carefully final p| +53385|850531|532|2|31|45926.19|0.10|0.00|R|F|1994-12-22|1994-12-31|1995-01-18|NONE|TRUCK|ven waters hinder. specia| +53385|860753|35788|3|44|75403.24|0.08|0.04|A|F|1994-11-16|1994-11-14|1994-12-16|COLLECT COD|TRUCK|ackages haggle along| +53385|662957|25471|4|10|19199.20|0.02|0.03|A|F|1995-01-10|1994-12-05|1995-02-02|COLLECT COD|FOB| the regul| +53385|305393|5394|5|17|23772.46|0.00|0.06|A|F|1994-12-23|1994-12-25|1995-01-14|NONE|SHIP|the carefully pending deposit| +53385|723885|48914|6|25|47721.25|0.04|0.04|A|F|1995-01-06|1994-12-27|1995-01-14|DELIVER IN PERSON|REG AIR|cross the furiously regular asymptot| +53386|287338|37339|1|17|22530.44|0.06|0.00|N|O|1995-09-03|1995-09-30|1995-09-05|COLLECT COD|RAIL|ests wake sly| +53386|285367|22883|2|4|5409.40|0.04|0.05|N|O|1995-08-16|1995-08-21|1995-08-20|NONE|AIR|dencies nag regularly. ironi| +53386|151658|26665|3|5|8548.25|0.02|0.01|N|O|1995-10-21|1995-08-14|1995-11-15|COLLECT COD|SHIP|re blithely special, ironic| +53386|903313|40868|4|38|50018.26|0.02|0.06|N|O|1995-08-29|1995-09-10|1995-09-11|COLLECT COD|FOB|es. express theodolites| +53386|966873|41912|5|30|58194.90|0.09|0.06|N|O|1995-09-20|1995-09-27|1995-10-15|COLLECT COD|MAIL|according to the even pack| +53387|991192|3712|1|42|53892.30|0.08|0.02|A|F|1994-11-19|1994-11-23|1994-11-29|TAKE BACK RETURN|FOB|ts. careful, final de| +53388|767081|42112|1|11|12628.55|0.09|0.06|R|F|1993-10-01|1993-10-18|1993-10-24|TAKE BACK RETURN|MAIL|ly silent dependencies slee| +53388|314524|2043|2|20|30770.20|0.07|0.03|R|F|1993-12-04|1993-10-27|1993-12-19|TAKE BACK RETURN|RAIL|s shall hag| +53388|189861|14868|3|34|66329.24|0.07|0.02|A|F|1993-08-30|1993-09-17|1993-09-19|TAKE BACK RETURN|FOB|attainments af| +53389|240795|15804|1|5|8678.90|0.09|0.01|A|F|1994-02-28|1993-12-11|1994-03-22|NONE|RAIL|sly daring excuses use quickly| +53389|36817|49318|2|14|24553.34|0.04|0.02|A|F|1993-12-26|1994-01-24|1993-12-27|DELIVER IN PERSON|SHIP|ly express excuses doubt carefully ag| +53389|768540|43571|3|8|12868.08|0.10|0.08|A|F|1994-02-05|1994-01-15|1994-02-23|DELIVER IN PERSON|REG AIR|o beans wake furiou| +53389|842318|42319|4|39|49150.53|0.01|0.05|R|F|1994-01-24|1994-01-20|1994-02-05|DELIVER IN PERSON|REG AIR|ng the even instr| +53389|828675|41192|5|38|60937.94|0.06|0.02|R|F|1994-02-22|1994-01-23|1994-03-08|COLLECT COD|REG AIR| regular theodolites. fluffily regular | +53389|527184|39695|6|5|6055.80|0.10|0.06|A|F|1993-11-22|1994-01-27|1993-12-03|NONE|FOB|he even foxes. packa| +53390|911778|36815|1|21|37584.33|0.09|0.03|N|O|1998-10-18|1998-10-05|1998-11-12|DELIVER IN PERSON|RAIL|e slyly enticin| +53390|246909|46910|2|15|27838.35|0.10|0.04|N|O|1998-09-22|1998-09-09|1998-10-05|TAKE BACK RETURN|AIR|y bold dependenci| +53390|785744|35745|3|37|67699.27|0.05|0.02|N|O|1998-08-30|1998-10-17|1998-09-18|COLLECT COD|MAIL|eodolites. excuses cajole quic| +53391|320747|45760|1|31|54799.63|0.08|0.08|A|F|1992-06-26|1992-08-18|1992-07-09|COLLECT COD|SHIP|the foxes. idle realms| +53391|790249|40250|2|29|38837.09|0.03|0.02|A|F|1992-08-31|1992-08-29|1992-09-20|NONE|TRUCK|ently even packages. expr| +53391|698739|11253|3|16|27803.20|0.09|0.04|A|F|1992-07-30|1992-08-12|1992-08-17|TAKE BACK RETURN|FOB|olites use about the furiously e| +53391|690368|15395|4|45|61124.85|0.03|0.03|A|F|1992-09-21|1992-07-25|1992-10-20|NONE|TRUCK|nding foxes. ironic accounts ea| +53391|13455|13456|5|38|52001.10|0.10|0.05|R|F|1992-06-20|1992-07-07|1992-07-16|NONE|REG AIR|riously requests. furiously s| +53416|119011|31514|1|19|19570.19|0.03|0.06|R|F|1993-10-02|1993-08-08|1993-10-11|NONE|SHIP|sly special theodolit| +53416|209845|34854|2|43|75457.69|0.10|0.07|R|F|1993-09-09|1993-08-03|1993-09-13|COLLECT COD|AIR| blithely thin, ironic foxes. regula| +53416|859782|9783|3|4|6966.96|0.00|0.03|A|F|1993-09-14|1993-08-12|1993-10-04|DELIVER IN PERSON|SHIP|rnes. slyly pending acc| +53416|350150|37672|4|38|45605.32|0.05|0.06|R|F|1993-08-16|1993-07-26|1993-08-30|COLLECT COD|FOB|odolites. furiously ironic pint| +53417|756478|6479|1|43|65980.92|0.08|0.06|N|O|1995-12-19|1995-11-02|1996-01-03|TAKE BACK RETURN|AIR|ependencies sleep. acc| +53417|113895|13896|2|38|72537.82|0.03|0.04|N|O|1995-11-29|1995-11-05|1995-12-12|DELIVER IN PERSON|AIR|ar accounts use carefully thinly | +53417|223342|23343|3|39|49347.87|0.10|0.03|N|O|1995-11-02|1995-11-15|1995-11-30|TAKE BACK RETURN|RAIL|or the final, regular deposits. ironic re| +53418|189652|39653|1|24|41799.60|0.01|0.08|N|O|1996-09-20|1996-09-11|1996-09-24|DELIVER IN PERSON|MAIL|g asymptotes are f| +53418|472480|47499|2|40|58098.40|0.08|0.08|N|O|1996-10-09|1996-10-17|1996-10-26|NONE|AIR|e carefully final foxes. instruction| +53418|966277|28797|3|7|9402.61|0.02|0.05|N|O|1996-12-08|1996-10-12|1997-01-06|COLLECT COD|TRUCK|ccording to the foxes boost car| +53418|209181|21686|4|5|5450.85|0.07|0.04|N|O|1996-08-12|1996-11-07|1996-08-30|NONE|REG AIR|eodolites. carefully regular deposi| +53418|699270|36810|5|15|19038.60|0.10|0.08|N|O|1996-10-24|1996-09-22|1996-11-13|TAKE BACK RETURN|RAIL|e blithely after the blithely eve| +53419|573002|23003|1|44|47299.12|0.01|0.03|R|F|1993-11-04|1993-11-24|1993-11-29|TAKE BACK RETURN|TRUCK|odolites are fluffily against th| +53419|432016|7033|2|49|46451.51|0.06|0.04|R|F|1993-11-29|1993-11-23|1993-12-24|NONE|TRUCK|ts detect quickly around the furi| +53419|891345|3863|3|29|38752.70|0.06|0.06|R|F|1993-10-13|1993-10-19|1993-10-26|DELIVER IN PERSON|FOB|gainst the blithely final packa| +53419|832548|7581|4|18|26649.00|0.07|0.02|A|F|1993-12-11|1993-10-31|1994-01-01|COLLECT COD|RAIL|ns boost against the furiously regul| +53419|632982|32983|5|5|9574.75|0.06|0.07|A|F|1993-10-11|1993-11-13|1993-10-27|NONE|RAIL| slyly across the slyl| +53420|39450|14451|1|5|6947.25|0.07|0.03|A|F|1994-04-18|1994-05-16|1994-05-18|COLLECT COD|SHIP|ind furiously closely| +53420|28380|40881|2|40|52335.20|0.01|0.07|A|F|1994-05-31|1994-05-14|1994-06-30|COLLECT COD|RAIL|nos cajole above the| +53420|972581|10139|3|13|21496.02|0.02|0.01|A|F|1994-03-29|1994-05-24|1994-04-08|COLLECT COD|RAIL|iously ironic foxes. pending| +53421|901417|13936|1|28|39714.36|0.03|0.03|A|F|1992-08-15|1992-11-05|1992-09-04|NONE|REG AIR| blithe packa| +53421|109872|47379|2|22|41401.14|0.05|0.07|A|F|1992-11-11|1992-09-16|1992-12-02|COLLECT COD|SHIP|g, regular dolphins | +53422|681146|31147|1|33|37194.63|0.01|0.02|R|F|1995-03-10|1995-04-02|1995-04-01|NONE|SHIP|se among the unusual pinto beans.| +53422|6475|6476|2|15|20722.05|0.07|0.03|R|F|1995-02-15|1995-03-16|1995-03-17|TAKE BACK RETURN|FOB|kages. boldly unusual deposits| +53422|817721|42754|3|6|9832.08|0.08|0.06|R|F|1995-02-23|1995-04-06|1995-03-12|DELIVER IN PERSON|AIR|bout the blithely final de| +53422|433276|20801|4|2|2418.50|0.03|0.01|A|F|1995-03-11|1995-04-28|1995-03-25|TAKE BACK RETURN|AIR|arefully express p| +53422|65720|40723|5|29|48885.88|0.00|0.05|R|F|1995-03-31|1995-04-29|1995-04-14|DELIVER IN PERSON|MAIL|n requests caj| +53422|554512|17024|6|35|54827.15|0.06|0.07|R|F|1995-04-03|1995-03-13|1995-04-27|COLLECT COD|AIR|ronic requests sleep| +53423|242318|42319|1|5|6301.50|0.10|0.07|N|O|1996-03-01|1996-01-29|1996-03-31|NONE|SHIP|ously ironic pinto beans| +53423|638177|13202|2|14|15611.96|0.01|0.08|N|O|1996-01-13|1996-01-24|1996-01-14|TAKE BACK RETURN|REG AIR|ajole blithely quickly special s| +53423|840367|27916|3|27|35297.64|0.00|0.07|N|O|1996-03-14|1996-03-06|1996-04-01|TAKE BACK RETURN|AIR|outs. blithely ironic reques| +53423|37307|37308|4|32|39817.60|0.03|0.06|N|O|1996-04-02|1996-02-29|1996-04-05|NONE|FOB|ent requests integrate quickly boldl| +53423|4768|17269|5|23|38473.48|0.06|0.08|N|O|1996-02-19|1996-02-11|1996-03-04|NONE|RAIL| tithes solve b| +53423|132888|20395|6|29|55705.52|0.02|0.04|N|O|1996-03-07|1996-02-26|1996-03-09|COLLECT COD|TRUCK|s are furiously express packages. care| +53423|445988|33513|7|30|58018.80|0.04|0.06|N|O|1996-04-22|1996-01-25|1996-05-14|DELIVER IN PERSON|FOB|into beans do cajole | +53448|707867|20382|1|33|61869.39|0.08|0.05|A|F|1993-12-30|1993-12-06|1994-01-04|COLLECT COD|REG AIR|oxes. final, regular asymptotes cajole c| +53448|106193|6194|2|19|22784.61|0.03|0.02|A|F|1993-12-12|1993-12-07|1993-12-27|DELIVER IN PERSON|AIR|arefully. caref| +53448|771735|34251|3|41|74074.70|0.06|0.00|R|F|1993-12-27|1993-12-21|1994-01-13|COLLECT COD|SHIP|ecial packages after the fluffily speci| +53448|542630|17651|4|8|13380.88|0.01|0.01|R|F|1993-10-31|1994-01-12|1993-11-20|NONE|AIR|dolites sleep carefully after the c| +53449|467825|30335|1|45|80676.00|0.01|0.07|N|O|1996-01-05|1995-12-29|1996-01-24|TAKE BACK RETURN|RAIL| slyly express requests | +53449|726572|14115|2|21|33569.34|0.00|0.04|N|O|1995-12-25|1996-01-20|1996-01-22|DELIVER IN PERSON|SHIP|r ideas. ideas according to the regular| +53450|461620|36639|1|44|69590.40|0.06|0.05|A|F|1995-04-04|1995-05-04|1995-04-22|COLLECT COD|REG AIR|bold requests. deposits sle| +53450|443019|30544|2|46|44251.54|0.04|0.04|A|F|1995-05-18|1995-04-28|1995-06-11|DELIVER IN PERSON|REG AIR| accounts. slyly express accounts h| +53451|886624|24176|1|29|46706.82|0.10|0.02|N|O|1997-09-24|1997-08-05|1997-10-01|TAKE BACK RETURN|MAIL|ular packages nag| +53452|959805|9806|1|20|37295.20|0.07|0.04|R|F|1994-08-27|1994-08-29|1994-09-05|COLLECT COD|SHIP|es print ev| +53452|441267|16284|2|12|14498.88|0.02|0.03|A|F|1994-08-22|1994-09-30|1994-09-15|NONE|TRUCK|sly, special theodolites de| +53452|372478|22479|3|1|1550.46|0.02|0.01|R|F|1994-10-04|1994-09-23|1994-11-03|COLLECT COD|REG AIR|above the fluffily bold deposits cajo| +53452|229279|4288|4|7|8457.82|0.04|0.06|R|F|1994-10-03|1994-09-29|1994-10-09|DELIVER IN PERSON|REG AIR|ckages wake regular | +53452|490595|28123|5|45|71350.65|0.08|0.05|A|F|1994-09-29|1994-09-01|1994-10-21|COLLECT COD|REG AIR|eodolites. regular, bold a| +53452|426230|38739|6|36|41623.56|0.09|0.05|R|F|1994-10-21|1994-09-01|1994-11-10|NONE|MAIL|s cajole carefully; requests nag blithely| +53452|645960|45961|7|40|76237.20|0.07|0.01|R|F|1994-07-17|1994-09-11|1994-08-10|COLLECT COD|REG AIR|mong the regular ideas. blithely| +53453|645106|32643|1|10|10510.70|0.03|0.03|N|O|1997-10-15|1997-08-14|1997-11-04|TAKE BACK RETURN|SHIP|ajole carefully doggedly even accounts.| +53453|287240|12251|2|34|41725.82|0.07|0.06|N|O|1997-10-20|1997-08-01|1997-11-16|NONE|FOB|s. blithely expres| +53453|638002|515|3|26|24439.22|0.06|0.04|N|O|1997-09-03|1997-08-22|1997-09-29|TAKE BACK RETURN|RAIL|quests haggle. r| +53453|894169|19204|4|25|29078.00|0.05|0.07|N|O|1997-06-29|1997-09-02|1997-07-12|COLLECT COD|MAIL|express, regular asymptotes. pendi| +53454|883300|33301|1|14|17965.64|0.10|0.01|N|O|1996-05-29|1996-04-25|1996-05-30|COLLECT COD|MAIL| quickly along the final| +53454|616969|4506|2|14|26403.02|0.09|0.04|N|O|1996-07-04|1996-04-30|1996-07-24|TAKE BACK RETURN|MAIL|lar accounts across the bold d| +53454|395642|8150|3|16|27802.08|0.00|0.00|N|O|1996-07-09|1996-05-17|1996-08-08|TAKE BACK RETURN|TRUCK|posits. slyly bold accounts caj| +53454|543394|5905|4|38|54620.06|0.07|0.01|N|O|1996-04-02|1996-05-12|1996-04-21|DELIVER IN PERSON|REG AIR|ckages wake blit| +53454|807135|7136|5|35|36473.15|0.10|0.06|N|O|1996-05-07|1996-05-29|1996-06-06|NONE|TRUCK|st asymptotes. furi| +53455|760679|35710|1|43|74804.52|0.08|0.00|N|O|1996-07-02|1996-06-24|1996-07-12|NONE|RAIL|its. carefully| +53455|718108|43137|2|6|6756.42|0.06|0.07|N|O|1996-07-05|1996-08-02|1996-07-18|DELIVER IN PERSON|AIR|eans. careful| +53455|228425|28426|3|44|59550.04|0.02|0.00|N|O|1996-07-02|1996-06-23|1996-07-30|COLLECT COD|AIR|ly about the blithely final accounts.| +53455|125866|13373|4|48|90809.28|0.08|0.03|N|O|1996-05-20|1996-07-18|1996-06-11|COLLECT COD|FOB|s are slyly unusual tithes. fu| +53455|418352|43369|5|40|50813.20|0.06|0.08|N|O|1996-07-25|1996-06-26|1996-08-10|COLLECT COD|FOB|ss excuses wake slyly ironic| +53455|236260|48765|6|28|33495.00|0.04|0.01|N|O|1996-05-22|1996-07-16|1996-06-10|TAKE BACK RETURN|AIR|unts wake fluffily. eve| +53455|809420|21937|7|24|31905.12|0.10|0.01|N|O|1996-08-06|1996-07-17|1996-08-19|TAKE BACK RETURN|MAIL|ggle quick| +53480|914979|27498|1|4|7975.72|0.01|0.01|N|O|1995-10-27|1995-12-03|1995-11-10|TAKE BACK RETURN|AIR| cajole ruthlessly acros| +53480|35518|48019|2|32|46512.32|0.08|0.04|N|O|1995-11-21|1995-10-22|1995-12-10|TAKE BACK RETURN|FOB|lar depths. slyly special courts unwi| +53480|935365|35366|3|46|64414.72|0.03|0.07|N|O|1995-10-05|1995-11-19|1995-10-30|NONE|FOB|kages cajole fluffily blithel| +53481|783434|33435|1|18|27313.20|0.09|0.03|A|F|1993-11-18|1993-11-12|1993-12-09|TAKE BACK RETURN|REG AIR|uriously pending pinto beans unwind| +53481|163323|13324|2|22|30499.04|0.01|0.00|R|F|1993-11-07|1993-11-03|1993-12-05|NONE|TRUCK| requests hang carefully | +53481|958284|33323|3|28|37582.72|0.05|0.07|A|F|1993-10-22|1993-09-21|1993-11-19|NONE|RAIL|e furiously quickly sile| +53481|878710|16262|4|48|81056.16|0.06|0.05|R|F|1993-11-08|1993-10-25|1993-11-13|TAKE BACK RETURN|RAIL|requests ab| +53482|280490|42996|1|26|38232.48|0.10|0.02|N|O|1995-07-12|1995-06-07|1995-08-03|NONE|FOB|y special foxes wake about th| +53482|180943|5950|2|22|44526.68|0.07|0.06|N|O|1995-07-03|1995-06-08|1995-07-05|TAKE BACK RETURN|MAIL|refully regular dino| +53483|730059|42574|1|22|23958.44|0.09|0.03|N|O|1995-11-20|1995-09-21|1995-12-13|COLLECT COD|TRUCK|rls haggle slyly alo| +53483|91816|29320|2|5|9039.05|0.05|0.06|N|O|1995-10-30|1995-09-12|1995-11-20|NONE|AIR|ously furiously bold accounts. ruth| +53484|852521|27556|1|14|20628.72|0.03|0.01|N|O|1996-11-26|1996-09-28|1996-12-04|DELIVER IN PERSON|AIR|le above the b| +53484|308284|20791|2|4|5169.08|0.06|0.05|N|O|1996-08-09|1996-10-31|1996-08-12|DELIVER IN PERSON|RAIL|nic packages! care| +53484|313531|1050|3|6|9267.12|0.09|0.01|N|O|1996-10-19|1996-09-25|1996-10-23|NONE|REG AIR|. pending, ironic| +53484|504041|41572|4|40|41800.80|0.02|0.00|N|O|1996-09-05|1996-10-17|1996-09-22|DELIVER IN PERSON|FOB|ndle slyly. always | +53484|416736|29245|5|23|38012.33|0.08|0.06|N|O|1996-10-23|1996-11-02|1996-10-24|TAKE BACK RETURN|REG AIR|al, unusual asympt| +53484|72857|47860|6|35|64044.75|0.10|0.01|N|O|1996-08-08|1996-11-02|1996-09-04|DELIVER IN PERSON|AIR|unts sleep. final, ir| +53484|505071|42602|7|20|21521.00|0.10|0.00|N|O|1996-10-09|1996-10-17|1996-10-10|TAKE BACK RETURN|TRUCK|ronic dependencies. special deposits acr| +53485|720549|20550|1|1|1569.51|0.06|0.08|R|F|1992-12-10|1992-12-23|1992-12-28|COLLECT COD|REG AIR| even, even requests lose regular g| +53485|255544|18050|2|23|34489.19|0.01|0.06|R|F|1992-12-14|1992-12-22|1993-01-01|TAKE BACK RETURN|TRUCK|regular acco| +53485|915047|27566|3|23|24426.00|0.05|0.03|A|F|1992-10-21|1992-11-28|1992-10-30|TAKE BACK RETURN|SHIP|ages. slyly ironic instructio| +53485|192177|42178|4|10|12691.70|0.04|0.08|A|F|1992-12-04|1992-11-29|1992-12-12|DELIVER IN PERSON|RAIL| express theodolites. | +53485|905074|42629|5|33|35607.99|0.01|0.08|A|F|1993-01-10|1992-11-26|1993-01-16|COLLECT COD|RAIL| are. busily even pinto bea| +53486|676076|38590|1|18|18936.72|0.09|0.02|N|O|1995-10-26|1995-11-20|1995-11-09|TAKE BACK RETURN|TRUCK|ckly. furiousl| +53486|793867|6383|2|35|68629.05|0.10|0.01|N|O|1995-12-24|1995-11-18|1996-01-23|TAKE BACK RETURN|SHIP|bold theodolites. fu| +53486|507264|7265|3|3|3813.72|0.02|0.08|N|O|1996-01-25|1995-11-11|1996-02-22|TAKE BACK RETURN|REG AIR|yly blithe ideas eat quickly. pe| +53486|579829|29830|4|33|62990.40|0.01|0.04|N|O|1996-01-08|1995-12-12|1996-01-16|TAKE BACK RETURN|REG AIR|lly ironic war| +53487|871106|8658|1|22|23695.32|0.03|0.03|A|F|1992-10-29|1992-11-15|1992-11-22|DELIVER IN PERSON|REG AIR|uctions hang blithely acco| +53487|670358|20359|2|3|3984.96|0.06|0.01|A|F|1992-11-01|1992-11-11|1992-11-22|COLLECT COD|TRUCK|nally quiet depos| +53487|692704|5218|3|20|33933.40|0.00|0.08|R|F|1992-09-11|1992-11-08|1992-10-11|NONE|REG AIR|lar asymptote| +53487|275986|25987|4|36|70630.92|0.09|0.05|R|F|1992-09-27|1992-11-22|1992-10-05|TAKE BACK RETURN|TRUCK|l instructions sleep? ironic instru| +53487|487798|25326|5|14|25000.78|0.06|0.04|R|F|1992-12-10|1992-11-01|1993-01-06|NONE|TRUCK|ges are furiously above| +53512|544236|19257|1|50|64010.50|0.10|0.05|A|F|1992-09-20|1992-08-24|1992-10-04|COLLECT COD|TRUCK|egular packages above the| +53512|971916|9474|2|11|21866.57|0.00|0.05|A|F|1992-10-02|1992-09-03|1992-10-26|TAKE BACK RETURN|AIR|about the dogged sentiments. slyly unu| +53512|982224|32225|3|29|37879.22|0.08|0.08|A|F|1992-11-01|1992-10-10|1992-11-02|TAKE BACK RETURN|AIR|ong the express| +53512|230976|30977|4|23|43860.08|0.06|0.04|A|F|1992-08-31|1992-08-13|1992-09-24|DELIVER IN PERSON|FOB|above the foxes. quickly unu| +53512|2794|27795|5|49|83142.71|0.00|0.04|A|F|1992-07-19|1992-09-09|1992-08-10|NONE|RAIL|final pinto beans. bold, regular a| +53513|188815|38816|1|4|7615.24|0.03|0.03|N|O|1998-03-09|1998-02-27|1998-03-13|COLLECT COD|RAIL|ans according to t| +53513|413253|778|2|50|58311.50|0.01|0.03|N|O|1997-12-18|1998-01-12|1997-12-29|COLLECT COD|REG AIR|totes cajole regula| +53513|535959|23490|3|7|13964.51|0.07|0.05|N|O|1998-03-22|1998-03-01|1998-03-23|NONE|TRUCK|s cajole carefully along the specia| +53513|853233|15751|4|30|35585.70|0.08|0.05|N|O|1997-12-22|1998-02-03|1998-01-19|COLLECT COD|AIR| ideas. furiously ironic depo| +53514|791|13292|1|18|30452.22|0.01|0.07|R|F|1995-01-24|1995-02-24|1995-02-20|COLLECT COD|TRUCK|s will have to use caref| +53514|285552|48058|2|41|63039.14|0.02|0.03|R|F|1995-02-15|1995-02-01|1995-03-01|DELIVER IN PERSON|MAIL| the stealthy braids. blithely unusual in| +53515|976675|1714|1|6|10509.78|0.02|0.05|N|O|1996-06-16|1996-06-03|1996-06-18|TAKE BACK RETURN|MAIL| regular pearls after the furiously r| +53516|436789|49298|1|13|22434.88|0.06|0.08|N|O|1997-10-03|1997-11-01|1997-11-02|COLLECT COD|AIR|ts. even, silent pinto beans sleep ca| +53516|103569|41076|2|17|26733.52|0.08|0.00|N|O|1998-01-11|1997-11-28|1998-01-28|NONE|MAIL|the stealthily regular account| +53516|677094|14634|3|43|46055.58|0.05|0.01|N|O|1997-09-23|1997-11-17|1997-09-28|COLLECT COD|SHIP|y final dependencies. slyly silent accoun| +53517|888624|26176|1|4|6450.32|0.10|0.06|A|F|1994-04-01|1994-04-23|1994-04-06|COLLECT COD|FOB| across the deposits. special instruct| +53518|633504|46017|1|36|51748.92|0.00|0.06|N|O|1996-05-25|1996-06-26|1996-06-06|DELIVER IN PERSON|RAIL|furiously ironic requests. quickly pending | +53518|300231|12738|2|17|20930.74|0.10|0.08|N|O|1996-06-13|1996-07-29|1996-07-08|TAKE BACK RETURN|MAIL| the slyly regular deposits. carefully f| +53518|978122|3161|3|12|14400.96|0.08|0.03|N|O|1996-05-15|1996-07-22|1996-06-14|NONE|FOB|ithes agains| +53518|291627|29143|4|1|1618.61|0.03|0.00|N|O|1996-05-06|1996-06-23|1996-05-17|COLLECT COD|TRUCK|inal packages haggle slyly at the unusual| +53518|373694|23695|5|27|47727.36|0.01|0.01|N|O|1996-08-12|1996-06-09|1996-08-18|DELIVER IN PERSON|FOB|ven, bold packages hagg| +53518|667506|30020|6|40|58938.80|0.09|0.02|N|O|1996-08-10|1996-07-13|1996-09-05|COLLECT COD|RAIL|st the quickly bold instruction| +53518|768206|5752|7|38|48418.46|0.07|0.03|N|O|1996-05-12|1996-07-26|1996-06-07|TAKE BACK RETURN|SHIP|ts wake careful| +53519|234114|34115|1|5|5240.50|0.06|0.08|A|F|1993-11-15|1993-10-25|1993-11-17|NONE|FOB|ites. pending, unusual deposit| +53519|743523|6038|2|39|61093.11|0.10|0.04|R|F|1993-09-29|1993-11-06|1993-10-20|TAKE BACK RETURN|FOB|usly ironic accounts. quickly re| +53519|376617|14139|3|35|59276.00|0.04|0.02|R|F|1994-01-11|1993-12-10|1994-01-25|DELIVER IN PERSON|MAIL|ts. furiously expres| +53519|787091|49607|4|37|43588.22|0.02|0.04|R|F|1994-01-05|1993-11-03|1994-02-01|DELIVER IN PERSON|MAIL|uffily quiet exc| +53519|630328|5353|5|5|6291.45|0.04|0.03|R|F|1994-01-12|1993-11-03|1994-01-13|NONE|SHIP| deposits are against the fin| +53544|465210|40229|1|7|8226.33|0.07|0.02|N|O|1996-07-02|1996-06-29|1996-07-06|DELIVER IN PERSON|MAIL|ounts sleep. unusu| +53544|768752|31268|2|13|23669.36|0.08|0.02|N|O|1996-04-22|1996-06-09|1996-05-07|DELIVER IN PERSON|MAIL|riously across th| +53545|258851|33862|1|38|68773.92|0.09|0.07|N|O|1997-06-11|1997-04-21|1997-06-18|COLLECT COD|RAIL| dinos. slyly ironic requests believe car| +53545|508315|8316|2|40|52931.60|0.09|0.07|N|O|1997-04-28|1997-04-06|1997-05-10|TAKE BACK RETURN|RAIL|sts. fluffily eve| +53545|245752|33265|3|1|1697.74|0.10|0.07|N|O|1997-05-23|1997-04-15|1997-06-16|DELIVER IN PERSON|AIR|lyly across the bold accounts. packag| +53546|133472|8477|1|21|31614.87|0.09|0.04|N|O|1995-07-05|1995-06-29|1995-07-13|TAKE BACK RETURN|FOB|. attainments wa| +53547|711086|23601|1|45|49367.25|0.07|0.00|N|O|1998-01-26|1997-12-29|1998-02-11|COLLECT COD|REG AIR|ending epitaphs. regularly final acco| +53547|221842|46851|2|22|38804.26|0.10|0.07|N|O|1998-01-08|1998-01-06|1998-01-21|NONE|TRUCK|e unusual f| +53547|490909|15928|3|2|3799.76|0.10|0.01|N|O|1997-11-16|1997-12-23|1997-11-20|NONE|SHIP|ickly among the quickly even account| +53548|783889|21435|1|10|19728.50|0.03|0.02|N|O|1995-09-15|1995-10-16|1995-09-26|DELIVER IN PERSON|TRUCK|ost carefully accounts. acco| +53549|287881|387|1|27|50459.49|0.03|0.00|N|O|1998-05-03|1998-05-04|1998-05-23|DELIVER IN PERSON|SHIP|oldly expres| +53549|415460|15461|2|19|26133.36|0.07|0.07|N|O|1998-05-26|1998-05-08|1998-06-08|COLLECT COD|REG AIR|sual pinto be| +53549|636088|23625|3|13|13312.65|0.07|0.05|N|O|1998-04-13|1998-03-18|1998-05-11|COLLECT COD|REG AIR|carefully unus| +53549|715684|28199|4|25|42491.25|0.06|0.05|N|O|1998-02-15|1998-05-11|1998-03-13|COLLECT COD|FOB|int even accounts| +53549|496422|21441|5|23|32623.20|0.04|0.08|N|O|1998-05-16|1998-03-21|1998-05-25|DELIVER IN PERSON|SHIP|ic accounts across the instructions nag amo| +53549|363600|38615|6|29|48244.11|0.06|0.03|N|O|1998-04-06|1998-04-20|1998-04-14|COLLECT COD|MAIL|final asympto| +53549|10017|35018|7|49|45423.49|0.00|0.05|N|O|1998-04-02|1998-03-26|1998-04-26|TAKE BACK RETURN|FOB| pinto beans aft| +53550|346620|46621|1|19|31665.59|0.07|0.01|A|F|1994-02-16|1994-01-19|1994-03-01|TAKE BACK RETURN|REG AIR| the furiously bold| +53550|631300|31301|2|39|48019.53|0.10|0.04|R|F|1994-01-13|1993-12-25|1994-01-19|TAKE BACK RETURN|SHIP|thely ironic decoys. furiously| +53550|244979|7484|3|27|51946.92|0.09|0.03|A|F|1994-02-10|1993-12-19|1994-03-07|COLLECT COD|TRUCK|even requests thrash carefully ab| +53550|353348|15856|4|11|15414.63|0.07|0.02|R|F|1994-02-22|1994-01-11|1994-03-07|TAKE BACK RETURN|AIR|? furiously ironic requests cajole always b| +53550|707606|7607|5|2|3227.14|0.04|0.07|A|F|1994-01-27|1993-12-06|1994-02-01|TAKE BACK RETURN|RAIL|ts? even, ironic requests wake caref| +53551|934352|21907|1|10|13863.10|0.01|0.08|N|O|1997-02-20|1997-03-15|1997-02-25|TAKE BACK RETURN|AIR|ng the ironic packages. express p| +53551|642195|29732|2|6|6822.96|0.00|0.02|N|O|1997-04-25|1997-03-16|1997-05-04|TAKE BACK RETURN|RAIL|ve furiously regu| +53551|371102|46117|3|28|32846.52|0.05|0.02|N|O|1997-03-15|1997-02-25|1997-03-26|TAKE BACK RETURN|SHIP|ackages integrate. | +53551|100683|38190|4|34|57245.12|0.05|0.06|N|O|1997-03-27|1997-03-16|1997-04-20|NONE|MAIL| packages. furiously unusual| +53551|177546|40050|5|18|29223.72|0.08|0.07|N|O|1997-04-19|1997-02-11|1997-04-22|TAKE BACK RETURN|AIR|lly regular requ| +53551|999605|49606|6|6|10227.36|0.05|0.00|N|O|1997-04-22|1997-03-13|1997-05-12|COLLECT COD|TRUCK|y special deposits use iro| +53576|446364|8873|1|18|23586.12|0.08|0.02|N|O|1995-12-30|1995-11-24|1996-01-09|NONE|FOB|ending, special courts u| +53576|34375|9376|2|41|53684.17|0.01|0.03|N|O|1995-11-22|1995-11-12|1995-12-06|DELIVER IN PERSON|TRUCK|es use fluffily after the slyly e| +53577|348736|11243|1|7|12493.04|0.03|0.05|R|F|1993-08-17|1993-09-28|1993-08-25|NONE|REG AIR|unts. furiously even pinto | +53578|461749|24259|1|5|8553.60|0.06|0.04|N|F|1995-06-05|1995-07-25|1995-06-20|COLLECT COD|REG AIR|ffily express f| +53579|614453|39478|1|26|35552.92|0.01|0.00|A|F|1992-10-23|1992-10-19|1992-11-14|DELIVER IN PERSON|AIR| carefully furious dependencies ar| +53579|102842|15345|2|28|51655.52|0.04|0.04|R|F|1992-10-14|1992-11-02|1992-11-04|NONE|AIR| ironic dependencies | +53580|22216|22217|1|8|9105.68|0.08|0.05|A|F|1992-04-04|1992-04-12|1992-04-09|DELIVER IN PERSON|SHIP|x. careful| +53580|367911|5433|2|48|94987.20|0.05|0.05|R|F|1992-04-16|1992-04-20|1992-04-19|COLLECT COD|AIR|instructions play c| +53580|467811|42830|3|14|24903.06|0.00|0.01|A|F|1992-06-15|1992-05-15|1992-07-15|DELIVER IN PERSON|SHIP|efully about the carefu| +53581|326020|1033|1|36|37656.36|0.10|0.01|R|F|1995-04-02|1995-03-28|1995-04-03|COLLECT COD|MAIL|ealthy fox| +53581|407672|20181|2|41|64765.65|0.04|0.05|A|F|1995-01-25|1995-03-02|1995-02-08|DELIVER IN PERSON|AIR|al excuses slee| +53581|734701|34702|3|3|5207.01|0.07|0.02|A|F|1995-04-24|1995-03-11|1995-04-25|COLLECT COD|RAIL|ronic requests wake final platele| +53581|105605|30610|4|43|69255.80|0.05|0.03|A|F|1995-05-19|1995-03-11|1995-05-30|NONE|SHIP|slyly after the q| +53582|968240|18241|1|33|43170.60|0.01|0.06|N|O|1997-11-19|1997-12-25|1997-11-25|DELIVER IN PERSON|AIR| even deposits. unusual, express ide| +53582|199550|37060|2|17|28042.35|0.07|0.00|N|O|1997-11-20|1998-01-29|1997-12-15|TAKE BACK RETURN|REG AIR|efully special ideas use fluffily. qu| +53582|833025|33026|3|26|24907.48|0.01|0.01|N|O|1998-03-06|1997-12-16|1998-03-21|COLLECT COD|AIR|y regular requests wake. even, ironic d| +53582|647692|22717|4|45|73784.70|0.03|0.02|N|O|1998-03-12|1998-02-11|1998-03-21|NONE|RAIL|furiously pending hoc| +53582|758362|33393|5|28|39769.24|0.07|0.07|N|O|1998-03-14|1998-01-05|1998-03-27|TAKE BACK RETURN|RAIL|counts hinder blithely| +53582|784589|9620|6|12|20082.60|0.09|0.03|N|O|1997-12-22|1997-12-22|1998-01-14|TAKE BACK RETURN|MAIL|ts. accounts | +53582|586798|49310|7|39|73506.03|0.10|0.04|N|O|1998-01-02|1998-02-01|1998-01-16|DELIVER IN PERSON|AIR|kly regular deposi| +53583|309360|46879|1|46|62990.10|0.02|0.03|N|O|1997-06-25|1997-06-12|1997-07-02|DELIVER IN PERSON|RAIL| carefully regular packages haggl| +53583|411728|24237|2|28|45911.60|0.07|0.08|N|O|1997-06-17|1997-04-21|1997-06-20|DELIVER IN PERSON|RAIL|luffily regular i| +53583|903762|16281|3|34|60034.48|0.04|0.03|N|O|1997-07-11|1997-05-10|1997-08-04|NONE|AIR|foxes. furiously special requests x-ra| +53583|522520|10051|4|22|33935.00|0.02|0.05|N|O|1997-07-15|1997-04-24|1997-07-25|TAKE BACK RETURN|REG AIR|nal accounts. slyly bold deposit| +53583|991526|29084|5|40|64699.20|0.01|0.04|N|O|1997-05-07|1997-04-26|1997-05-16|TAKE BACK RETURN|TRUCK|ependencie| +53583|561966|36989|6|7|14195.58|0.04|0.06|N|O|1997-07-13|1997-05-01|1997-07-14|NONE|RAIL| requests. blithely pending asymptotes x| +53608|236934|24447|1|10|18709.20|0.04|0.05|R|F|1995-01-16|1995-01-09|1995-01-22|DELIVER IN PERSON|AIR|s. quickly even packages use quickly| +53608|133676|46179|2|14|23935.38|0.03|0.01|R|F|1995-01-09|1994-12-18|1995-01-28|DELIVER IN PERSON|AIR|quests snooze unusual,| +53608|676003|38517|3|3|2936.91|0.03|0.02|R|F|1994-11-22|1994-11-30|1994-11-23|DELIVER IN PERSON|SHIP|old asymptotes breach alongside| +53608|577993|40505|4|39|80767.83|0.04|0.07|R|F|1995-01-13|1994-12-02|1995-01-18|NONE|TRUCK|to beans. furiou| +53608|322649|47662|5|36|60178.68|0.04|0.02|A|F|1994-12-21|1995-01-09|1994-12-31|DELIVER IN PERSON|TRUCK| the furiously express accounts| +53609|554865|17377|1|13|24957.92|0.09|0.05|N|O|1996-07-01|1996-07-26|1996-07-09|TAKE BACK RETURN|FOB|nal accounts. blithely unusual depend| +53609|613686|13687|2|12|19195.80|0.08|0.05|N|O|1996-07-07|1996-08-02|1996-07-20|NONE|FOB|of the ironic requests affix carefully iron| +53609|207709|20214|3|4|6466.76|0.05|0.05|N|O|1996-09-10|1996-08-06|1996-09-28|COLLECT COD|SHIP|cies are above the car| +53609|963404|25924|4|39|57227.04|0.04|0.03|N|O|1996-09-20|1996-09-05|1996-10-15|NONE|AIR|regular, final requ| +53610|956796|44354|1|34|62993.50|0.00|0.03|A|F|1992-07-24|1992-09-16|1992-08-22|DELIVER IN PERSON|FOB|lly about the unusual requests. ruthl| +53610|866220|41255|2|9|10675.62|0.07|0.06|A|F|1992-07-26|1992-09-25|1992-08-03|COLLECT COD|RAIL|s are. carefully | +53610|559433|9434|3|23|34325.43|0.03|0.08|A|F|1992-09-07|1992-09-22|1992-10-03|TAKE BACK RETURN|RAIL|uches cajole b| +53610|386142|36143|4|44|54037.72|0.07|0.01|A|F|1992-09-26|1992-09-13|1992-10-12|TAKE BACK RETURN|RAIL|yly ironic accounts along t| +53611|31149|31150|1|22|23763.08|0.03|0.03|A|F|1995-01-22|1995-02-16|1995-02-04|DELIVER IN PERSON|MAIL| theodolites use frets. deposi| +53611|518965|43986|2|43|85309.42|0.01|0.03|A|F|1995-02-14|1995-03-31|1995-03-03|COLLECT COD|SHIP|luffily ironic dolphins. expr| +53611|237768|273|3|7|11940.25|0.08|0.05|R|F|1995-02-09|1995-03-13|1995-02-28|DELIVER IN PERSON|RAIL|ully. silent, special packages af| +53611|151752|39262|4|2|3607.50|0.00|0.01|R|F|1995-02-09|1995-02-18|1995-02-23|TAKE BACK RETURN|TRUCK|ely packages. furiously express| +53611|480631|5650|5|32|51571.52|0.03|0.04|R|F|1995-02-16|1995-04-04|1995-02-21|TAKE BACK RETURN|MAIL|ms. carefully final account| +53612|272409|34915|1|36|49730.04|0.05|0.08|N|O|1997-05-28|1997-05-17|1997-06-17|COLLECT COD|TRUCK|sual instru| +53612|367453|42468|2|31|47133.64|0.02|0.02|N|O|1997-04-12|1997-04-21|1997-05-05|DELIVER IN PERSON|AIR| pinto beans. account| +53612|766484|29000|3|36|55816.20|0.03|0.01|N|O|1997-03-30|1997-04-25|1997-04-04|COLLECT COD|RAIL|yly ironic forges a| +53612|289469|26985|4|34|49587.30|0.08|0.04|N|O|1997-03-08|1997-05-13|1997-03-24|COLLECT COD|REG AIR|ily final notornis. | +53613|450612|613|1|31|48440.29|0.02|0.00|N|O|1996-01-28|1996-02-15|1996-02-18|COLLECT COD|FOB|oss the unusua| +53614|955462|43020|1|46|69801.32|0.10|0.04|R|F|1993-03-09|1993-03-24|1993-03-11|DELIVER IN PERSON|REG AIR|nag about the special deposits. regular i| +53614|447633|22650|2|13|20547.93|0.00|0.07|A|F|1993-03-27|1993-04-26|1993-03-28|DELIVER IN PERSON|FOB|ly express deposi| +53614|354524|4525|3|1|1578.51|0.05|0.03|A|F|1993-05-19|1993-05-11|1993-06-07|DELIVER IN PERSON|REG AIR|quests unwind-- | +53615|10271|22772|1|44|51975.88|0.01|0.07|N|O|1997-01-10|1997-01-11|1997-01-11|NONE|TRUCK|xcuses solv| +53640|669236|31750|1|33|39771.60|0.06|0.00|N|O|1998-06-14|1998-07-09|1998-06-18|DELIVER IN PERSON|AIR| asymptotes. carefully careful i| +53640|834637|9670|2|28|44004.52|0.05|0.02|N|O|1998-10-06|1998-08-10|1998-10-07|NONE|SHIP|fily specia| +53640|740877|28420|3|43|82467.12|0.06|0.06|N|O|1998-08-14|1998-07-29|1998-08-27|COLLECT COD|SHIP|ke slyly across the iron| +53640|905676|30713|4|50|84081.50|0.01|0.01|N|O|1998-08-05|1998-07-26|1998-08-24|TAKE BACK RETURN|REG AIR|lyly ironic accounts| +53640|688068|25608|5|21|22176.63|0.08|0.06|N|O|1998-07-16|1998-08-22|1998-07-23|DELIVER IN PERSON|TRUCK|cording to the ironic ti| +53641|381693|31694|1|37|65663.16|0.01|0.00|R|F|1993-04-05|1993-02-27|1993-04-29|TAKE BACK RETURN|SHIP|ily ironic packages alongsi| +53641|109370|21873|2|1|1379.37|0.08|0.02|R|F|1993-01-14|1993-03-02|1993-01-29|NONE|TRUCK|ly unusual sauternes after the sl| +53641|179810|4817|3|40|75592.40|0.07|0.06|R|F|1993-01-12|1993-02-13|1993-01-24|DELIVER IN PERSON|MAIL|s integrate fluffily express pa| +53641|61915|24417|4|7|13138.37|0.09|0.06|A|F|1993-02-08|1993-02-21|1993-02-15|NONE|AIR|deposits. furiously express idea| +53641|604662|29687|5|8|12533.04|0.08|0.05|R|F|1993-04-05|1993-02-17|1993-04-29|TAKE BACK RETURN|AIR|ounts integrate s| +53642|11471|23972|1|4|5529.88|0.07|0.01|A|F|1995-03-09|1995-04-09|1995-04-03|COLLECT COD|FOB|egular accou| +53642|785929|23475|2|39|78580.71|0.00|0.01|R|F|1995-03-26|1995-04-18|1995-04-21|NONE|REG AIR|equests cajole doggedl| +53642|103881|28886|3|31|58431.28|0.06|0.00|N|F|1995-05-26|1995-02-28|1995-06-20|COLLECT COD|REG AIR|ns boost quickly fluffily pending th| +53642|917334|42371|4|32|43241.28|0.10|0.02|A|F|1995-03-17|1995-04-23|1995-04-02|NONE|AIR|ng the final pinto beans. blithely d| +53643|868367|18368|1|10|13353.20|0.04|0.05|R|F|1992-08-20|1992-08-06|1992-08-31|TAKE BACK RETURN|AIR|use furiously ironic asymptotes. quickly sp| +53643|639340|14365|2|24|30703.44|0.00|0.03|R|F|1992-07-16|1992-07-31|1992-07-26|COLLECT COD|RAIL|usual, regular ideas wake regular, sly pi| +53643|377145|27146|3|17|20776.21|0.10|0.07|R|F|1992-09-10|1992-07-18|1992-09-23|TAKE BACK RETURN|FOB|press depo| +53644|269677|32183|1|50|82333.00|0.07|0.04|R|F|1994-08-31|1994-09-21|1994-09-14|NONE|FOB|quests. slyly| +53644|452578|27597|2|21|32141.55|0.05|0.01|A|F|1994-08-24|1994-10-25|1994-09-15|NONE|AIR|st have to cajole carefully am| +53644|471700|46719|3|13|21731.84|0.07|0.01|A|F|1994-10-20|1994-09-18|1994-11-12|NONE|AIR|sly slyly final packages. unusual, e| +53644|857406|7407|4|20|27267.20|0.05|0.07|A|F|1994-11-27|1994-10-26|1994-12-09|NONE|AIR|ithely stea| +53644|412477|24986|5|31|43072.95|0.05|0.07|R|F|1994-11-20|1994-09-12|1994-11-23|TAKE BACK RETURN|RAIL|pending platelets ca| +53644|497596|10106|6|7|11154.99|0.10|0.03|R|F|1994-10-01|1994-10-09|1994-10-04|COLLECT COD|MAIL|s cajole quickly bold, special account| +53644|80462|30463|7|17|24521.82|0.05|0.05|R|F|1994-10-30|1994-11-05|1994-11-15|DELIVER IN PERSON|SHIP|ecial excuses wake slyly | +53645|318157|18158|1|49|57581.86|0.02|0.00|R|F|1992-11-26|1992-11-05|1992-11-27|NONE|REG AIR|g to the slyly final accounts. e| +53645|256351|18857|2|47|61444.98|0.01|0.01|R|F|1992-09-03|1992-11-16|1992-09-25|TAKE BACK RETURN|FOB|to the even, bold deposits affi| +53645|487553|25081|3|43|66242.79|0.02|0.08|R|F|1992-12-01|1992-11-26|1992-12-13|TAKE BACK RETURN|AIR|e slyly carefully silent foxes. | +53645|287450|49956|4|16|22999.04|0.07|0.06|R|F|1992-11-16|1992-10-24|1992-12-09|NONE|SHIP|ronic, express deposits sleep furiousl| +53645|166036|28540|5|5|5510.15|0.01|0.04|R|F|1992-12-28|1992-10-11|1993-01-23|NONE|FOB|ts cajole carefully ironic request| +53645|550611|612|6|50|83079.50|0.01|0.02|A|F|1992-12-14|1992-10-21|1992-12-21|NONE|MAIL|. express foxes| +53645|106631|6632|7|18|29477.34|0.02|0.06|R|F|1992-12-18|1992-10-10|1993-01-06|COLLECT COD|AIR|ses. slyly even asym| +53646|134924|34925|1|32|62685.44|0.04|0.00|A|F|1993-06-01|1993-03-25|1993-06-15|TAKE BACK RETURN|RAIL|s! final, even asymptotes w| +53647|636265|11290|1|19|22823.37|0.10|0.00|R|F|1993-01-12|1993-03-14|1993-01-23|DELIVER IN PERSON|REG AIR|ronic pinto beans wake. regular, spec| +53647|693579|6093|2|11|17297.94|0.03|0.08|R|F|1993-02-08|1993-02-12|1993-02-24|COLLECT COD|MAIL|ions. pearls according to| +53647|967122|17123|3|2|2378.16|0.10|0.07|A|F|1993-02-01|1993-01-26|1993-02-28|COLLECT COD|SHIP|s. blithely even requests| +53647|410668|48193|4|49|77353.36|0.02|0.00|A|F|1993-01-22|1993-01-24|1993-01-26|DELIVER IN PERSON|SHIP|ic attainments. final deposits nag care| +53672|486226|36227|1|43|52124.60|0.04|0.07|A|F|1993-01-24|1993-03-31|1993-01-31|COLLECT COD|RAIL|e final, regular ideas thrash slyly slyly f| +53673|886297|36298|1|21|26948.25|0.05|0.06|A|F|1993-11-22|1993-11-26|1993-12-21|DELIVER IN PERSON|TRUCK|quests nag above the careful| +53673|985510|23068|2|4|6381.88|0.07|0.00|A|F|1993-10-19|1993-11-10|1993-10-27|COLLECT COD|RAIL|ully furiou| +53673|452609|15119|3|13|20300.54|0.02|0.05|R|F|1993-12-09|1993-11-08|1993-12-27|DELIVER IN PERSON|SHIP| regular deposits| +53673|984500|9539|4|23|36442.58|0.03|0.07|R|F|1993-09-19|1993-12-10|1993-09-26|DELIVER IN PERSON|REG AIR|the pending, regular deposits. f| +53673|476361|13889|5|25|33433.50|0.07|0.06|A|F|1994-01-05|1993-10-28|1994-01-26|COLLECT COD|TRUCK| above the regular tithes. slyly pen| +53673|184398|21908|6|39|57813.21|0.01|0.04|R|F|1993-12-08|1993-12-14|1993-12-13|NONE|REG AIR|beans against the ironic, final theodo| +53673|171539|34043|7|4|6442.12|0.07|0.08|R|F|1993-09-17|1993-11-10|1993-10-10|NONE|SHIP|riously final packages| +53674|55392|17894|1|15|20210.85|0.02|0.07|R|F|1994-12-24|1994-12-07|1994-12-27|NONE|REG AIR|ronic packages. s| +53674|961964|11965|2|15|30388.80|0.10|0.07|A|F|1994-10-18|1995-01-07|1994-10-27|COLLECT COD|AIR|arefully quickly | +53674|713695|13696|3|14|23921.24|0.07|0.02|A|F|1994-12-30|1994-12-27|1995-01-20|COLLECT COD|FOB|ual theodolites. slyly special requests alo| +53674|61531|11532|4|3|4477.59|0.02|0.05|R|F|1994-12-31|1994-11-19|1995-01-05|TAKE BACK RETURN|RAIL|wake account| +53675|306161|43680|1|6|7002.90|0.04|0.05|N|O|1995-07-07|1995-06-30|1995-07-24|TAKE BACK RETURN|SHIP| blithely unusual instructions. qui| +53675|646332|33869|2|48|61358.40|0.00|0.03|A|F|1995-06-08|1995-07-15|1995-06-11|DELIVER IN PERSON|TRUCK|ainst the regular dependencies. blit| +53675|895221|20256|3|50|60809.00|0.01|0.07|N|O|1995-07-06|1995-07-05|1995-07-18|COLLECT COD|SHIP|fluffily unusual instructions. ironic multi| +53675|970238|20239|4|19|24855.61|0.07|0.07|N|O|1995-08-16|1995-07-04|1995-09-04|COLLECT COD|MAIL|y ironic excuses. unusual| +53675|781491|6522|5|49|77050.54|0.02|0.05|A|F|1995-05-08|1995-06-24|1995-05-10|COLLECT COD|TRUCK| the quickl| +53676|308579|33592|1|48|76202.88|0.02|0.08|N|O|1995-07-19|1995-06-14|1995-07-20|NONE|SHIP|quickly bold instructions. ironically | +53676|273351|48362|2|49|64892.66|0.00|0.08|N|O|1995-06-24|1995-05-02|1995-07-06|COLLECT COD|RAIL|l packages sleep silently slyly | +53676|209597|22102|3|5|7532.90|0.09|0.08|N|O|1995-06-27|1995-06-09|1995-07-25|DELIVER IN PERSON|REG AIR|us dolphins grow quickly across the | +53676|688781|26321|4|41|72559.75|0.06|0.06|R|F|1995-04-11|1995-06-29|1995-05-03|DELIVER IN PERSON|REG AIR| furiously; carefully final requests aga| +53676|338261|25780|5|22|28583.50|0.10|0.04|R|F|1995-04-15|1995-05-28|1995-05-12|DELIVER IN PERSON|TRUCK|pinto beans. fu| +53676|151971|1972|6|48|97102.56|0.08|0.06|N|F|1995-06-15|1995-06-29|1995-07-10|DELIVER IN PERSON|REG AIR|he quickly special accounts. dogg| +53676|163619|26123|7|36|60573.96|0.06|0.04|R|F|1995-05-21|1995-06-27|1995-06-07|NONE|RAIL| the ideas. fluffily special package| +53677|934267|9304|1|38|49446.36|0.02|0.07|A|F|1992-08-10|1992-09-23|1992-08-30|DELIVER IN PERSON|REG AIR|long the unu| +53677|209798|34807|2|32|54648.96|0.01|0.01|R|F|1992-08-20|1992-08-10|1992-08-23|NONE|REG AIR|ckly ironic theodolites. blithel| +53677|62040|24542|3|27|27055.08|0.08|0.02|A|F|1992-08-17|1992-08-29|1992-08-21|COLLECT COD|MAIL|latelets after the final excuses t| +53677|703405|28434|4|46|64785.02|0.04|0.06|A|F|1992-08-05|1992-09-03|1992-08-18|DELIVER IN PERSON|MAIL|carefully bold excuses impress after| +53677|113101|608|5|20|22282.00|0.09|0.01|R|F|1992-08-04|1992-09-27|1992-08-31|TAKE BACK RETURN|SHIP|uriously among the blithe| +53678|246615|46616|1|46|71833.60|0.00|0.04|N|O|1996-01-27|1996-02-23|1996-02-18|DELIVER IN PERSON|TRUCK|ages among| +53678|856164|43716|2|44|49285.28|0.05|0.02|N|O|1996-02-14|1996-02-16|1996-02-17|DELIVER IN PERSON|AIR|eep! regular, silent decoys thrash | +53678|542751|5262|3|47|84305.31|0.09|0.01|N|O|1996-01-13|1996-02-26|1996-01-21|NONE|TRUCK|kindle. si| +53678|15573|28074|4|1|1488.57|0.06|0.08|N|O|1996-01-02|1996-03-25|1996-01-31|TAKE BACK RETURN|REG AIR|iously ironic somas. carefully | +53679|891923|29475|1|30|57446.40|0.10|0.06|N|O|1998-07-24|1998-08-20|1998-07-25|TAKE BACK RETURN|TRUCK|ke carefully: furiously fi| +53679|537254|24785|2|28|36154.44|0.07|0.00|N|O|1998-08-25|1998-08-21|1998-08-26|COLLECT COD|TRUCK|excuses-- pinto beans | +53679|621817|21818|3|9|15649.02|0.06|0.01|N|O|1998-08-08|1998-10-15|1998-09-06|COLLECT COD|RAIL|ly busy packages| +53679|868475|43510|4|28|40416.04|0.06|0.03|N|O|1998-10-16|1998-09-15|1998-11-05|COLLECT COD|AIR| dolphins. carefully pending depen| +53679|442551|17568|5|10|14935.30|0.07|0.05|N|O|1998-07-24|1998-09-08|1998-07-31|NONE|FOB|y slyly final a| +53704|343731|43732|1|37|65664.64|0.05|0.07|A|F|1993-07-19|1993-06-13|1993-08-07|DELIVER IN PERSON|TRUCK|e even, quiet packages. pending ideas u| +53704|86640|24144|2|36|58559.04|0.08|0.07|A|F|1993-06-16|1993-06-18|1993-06-28|COLLECT COD|AIR|structions haggle| +53704|148774|36281|3|38|69265.26|0.07|0.02|A|F|1993-05-24|1993-07-15|1993-06-09|DELIVER IN PERSON|RAIL|luffily special| +53704|443342|30867|4|1|1285.32|0.03|0.05|R|F|1993-08-24|1993-07-02|1993-08-25|DELIVER IN PERSON|MAIL|egular foxes after the slyly r| +53705|58135|33138|1|15|16396.95|0.08|0.06|N|O|1996-04-08|1996-02-17|1996-04-17|COLLECT COD|MAIL|nd the carefully special pinto beans. regu| +53705|68553|31055|2|47|71512.85|0.10|0.07|N|O|1996-02-04|1996-02-21|1996-02-21|DELIVER IN PERSON|REG AIR| pending instructions. careful| +53705|158137|8138|3|36|43024.68|0.05|0.03|N|O|1996-01-16|1996-02-25|1996-01-27|DELIVER IN PERSON|FOB|ole blithely silent packages. slyly | +53705|801567|14084|4|17|24964.84|0.05|0.00|N|O|1996-03-22|1996-03-20|1996-04-14|DELIVER IN PERSON|REG AIR|gle enticingly specia| +53705|923989|49026|5|47|94608.18|0.07|0.03|N|O|1996-02-17|1996-02-14|1996-03-08|DELIVER IN PERSON|TRUCK|ng the final packages sleep| +53705|471497|9025|6|29|42585.63|0.10|0.05|N|O|1996-03-19|1996-02-01|1996-04-11|NONE|FOB|thely: final, ironic instructions | +53706|843535|31084|1|21|31048.29|0.02|0.03|N|O|1996-12-30|1997-03-18|1997-01-24|NONE|SHIP|usly regular packages cajole alon| +53706|283376|33377|2|36|48936.96|0.00|0.00|N|O|1997-03-13|1997-02-18|1997-04-06|COLLECT COD|SHIP|equests dazzle c| +53706|691840|4354|3|48|87926.88|0.08|0.00|N|O|1997-04-06|1997-02-26|1997-04-25|DELIVER IN PERSON|RAIL|auternes. carefully pe| +53707|7536|45037|1|43|62071.79|0.04|0.08|R|F|1993-05-19|1993-07-12|1993-06-10|COLLECT COD|FOB|ly ironic reque| +53707|655801|30828|2|5|8783.85|0.07|0.04|A|F|1993-06-28|1993-06-29|1993-06-29|TAKE BACK RETURN|TRUCK|inal requests after | +53707|43070|18071|3|46|46601.22|0.00|0.04|R|F|1993-08-06|1993-06-06|1993-08-27|DELIVER IN PERSON|SHIP| express accounts | +53708|44703|19704|1|46|75794.20|0.09|0.06|A|F|1994-04-04|1994-04-14|1994-04-12|NONE|AIR|are slyly regular packages. silent ideas us| +53708|311265|11266|2|28|35735.00|0.01|0.07|A|F|1994-04-14|1994-04-05|1994-05-04|DELIVER IN PERSON|MAIL| unusual theodolites. quickly regular pac| +53708|425789|25790|3|47|80593.72|0.02|0.02|A|F|1994-03-03|1994-04-18|1994-04-01|DELIVER IN PERSON|AIR|ld packages. bl| +53708|224598|49607|4|21|31974.18|0.09|0.05|R|F|1994-05-04|1994-05-08|1994-05-26|DELIVER IN PERSON|AIR|s, final packages| +53709|828526|41043|1|22|31998.56|0.03|0.00|N|O|1998-02-11|1998-01-10|1998-03-06|DELIVER IN PERSON|AIR|n deposits affix| +53710|449164|36689|1|3|3339.42|0.03|0.08|N|O|1998-01-06|1998-01-04|1998-01-22|NONE|FOB|ironic ins| +53710|86718|24222|2|16|27275.36|0.09|0.06|N|O|1997-12-23|1998-01-09|1997-12-28|COLLECT COD|AIR|eans about the pending platelets run f| +53710|463377|38396|3|42|56294.70|0.06|0.00|N|O|1997-10-31|1997-12-22|1997-11-12|COLLECT COD|MAIL|ct. blithely unusual| +53710|977154|27155|4|6|7386.66|0.01|0.02|N|O|1998-02-17|1998-01-13|1998-02-20|DELIVER IN PERSON|AIR| special packages near the packa| +53710|22648|22649|5|36|56543.04|0.08|0.02|N|O|1998-02-23|1998-01-04|1998-02-27|COLLECT COD|TRUCK|s. pinto beans cajole sly| +53710|643507|31044|6|25|36261.75|0.02|0.04|N|O|1998-01-08|1997-12-16|1998-02-01|NONE|TRUCK|posits sleep furiously quickl| +53711|851622|39174|1|46|72384.68|0.03|0.08|N|O|1997-08-17|1997-09-18|1997-09-02|NONE|TRUCK|ngside of the fluffily even platelets. even| +53711|199783|49784|2|3|5648.34|0.02|0.00|N|O|1997-08-21|1997-11-09|1997-09-11|NONE|AIR|quests: carefully| +53711|743494|43495|3|23|35361.58|0.08|0.06|N|O|1997-10-16|1997-11-12|1997-10-24|COLLECT COD|SHIP| regular platelets wake according| +53736|923687|36206|1|17|29080.88|0.10|0.07|N|O|1996-05-11|1996-04-09|1996-05-31|DELIVER IN PERSON|TRUCK|arefully regular packages cajo| +53736|395353|32875|2|35|50691.90|0.06|0.06|N|O|1996-03-13|1996-03-15|1996-03-26|COLLECT COD|SHIP|ge furiously ac| +53736|696140|21167|3|7|7952.77|0.02|0.02|N|O|1996-04-03|1996-04-28|1996-04-05|NONE|RAIL|s. regular escapa| +53736|9586|22087|4|43|64309.94|0.04|0.08|N|O|1996-06-10|1996-03-24|1996-06-19|COLLECT COD|AIR|s. careful| +53736|101061|1062|5|5|5310.30|0.01|0.06|N|O|1996-04-12|1996-03-30|1996-04-27|TAKE BACK RETURN|RAIL| final accounts wake. carefully iro| +53737|565015|40038|1|26|28079.74|0.05|0.05|N|F|1995-05-27|1995-07-16|1995-06-25|TAKE BACK RETURN|AIR|ress requests x-ray among th| +53737|192417|17424|2|1|1509.41|0.10|0.01|N|O|1995-08-15|1995-06-21|1995-08-30|TAKE BACK RETURN|TRUCK|ts cajole blithely fluffil| +53737|942338|29893|3|33|45549.57|0.00|0.01|N|F|1995-06-16|1995-08-07|1995-07-10|TAKE BACK RETURN|RAIL|fily unusual foxes. carefully final ide| +53738|479368|41878|1|26|35030.84|0.08|0.05|A|F|1992-07-24|1992-08-06|1992-08-02|TAKE BACK RETURN|RAIL|uriously unu| +53739|490358|15377|1|16|21573.28|0.06|0.04|N|O|1996-01-26|1996-02-24|1996-02-02|DELIVER IN PERSON|MAIL|c deposits. blithely regular accounts aft| +53739|437490|12507|2|27|38541.69|0.10|0.05|N|O|1996-04-22|1996-03-21|1996-04-25|DELIVER IN PERSON|AIR|ly ironic, regular accounts. quickly bol| +53739|886082|48600|3|27|28837.08|0.01|0.00|N|O|1996-04-11|1996-02-21|1996-05-05|NONE|FOB|ugouts along the theodo| +53739|370228|20229|4|36|46735.56|0.01|0.01|N|O|1996-01-19|1996-01-29|1996-01-24|COLLECT COD|REG AIR|luffily even excuses a| +53739|412905|430|5|1|1817.88|0.08|0.01|N|O|1996-04-09|1996-03-22|1996-04-19|TAKE BACK RETURN|REG AIR|the bold, exp| +53739|684386|9413|6|19|26036.65|0.03|0.04|N|O|1996-03-21|1996-03-09|1996-04-03|COLLECT COD|FOB| packages. furiousl| +53740|817817|17818|1|8|13878.16|0.00|0.01|A|F|1992-12-21|1993-01-20|1993-01-13|NONE|REG AIR|re even ideas. slyly| +53740|40844|15845|2|17|30342.28|0.05|0.00|A|F|1993-01-15|1993-02-13|1993-02-03|DELIVER IN PERSON|SHIP| cajole. even, brave packages along the| +53740|453556|16066|3|23|34719.19|0.09|0.03|A|F|1993-02-10|1993-01-27|1993-03-11|NONE|AIR| excuses. fluffily final asymptotes h| +53740|910112|35149|4|42|47126.94|0.09|0.01|R|F|1993-02-07|1993-01-19|1993-03-07|TAKE BACK RETURN|FOB|n pinto beans. carefully even fox| +53740|249168|49169|5|40|44686.00|0.01|0.02|R|F|1993-02-16|1993-03-12|1993-03-08|NONE|FOB|yly bold packages use | +53741|992716|30274|1|1|1808.67|0.03|0.08|A|F|1995-01-05|1995-01-31|1995-02-01|DELIVER IN PERSON|SHIP|ths against the | +53741|565610|40633|2|13|21782.67|0.03|0.07|A|F|1995-02-08|1995-02-13|1995-03-08|TAKE BACK RETURN|REG AIR|eans. blithely ironic theodolites agains| +53741|203713|28722|3|19|30717.30|0.05|0.07|R|F|1995-03-10|1995-02-05|1995-03-13|DELIVER IN PERSON|TRUCK|l excuses.| +53741|792486|17517|4|42|66294.90|0.03|0.05|A|F|1994-12-31|1995-02-11|1995-01-04|NONE|AIR|usly bold packages; blithely expre| +53741|306712|44231|5|29|49842.30|0.03|0.01|R|F|1995-02-06|1995-01-27|1995-03-04|NONE|SHIP| unusual, unusual p| +53741|908355|33392|6|49|66802.19|0.00|0.07|R|F|1995-01-08|1995-01-18|1995-01-11|TAKE BACK RETURN|AIR|y. careful| +53741|712146|12147|7|20|23162.20|0.04|0.02|R|F|1995-03-02|1995-01-29|1995-03-31|NONE|REG AIR|te furiously fluffi| +53742|21526|9027|1|9|13027.68|0.10|0.05|A|F|1993-02-22|1993-01-16|1993-03-09|DELIVER IN PERSON|MAIL| slyly regular foxes. depths cajo| +53742|776314|38830|2|1|1390.28|0.00|0.02|R|F|1992-12-20|1993-02-08|1993-01-09|TAKE BACK RETURN|REG AIR|s haggle quickly ironic| +53742|507482|19993|3|41|61067.86|0.05|0.07|R|F|1993-01-26|1993-02-16|1993-02-11|COLLECT COD|RAIL|ress requests. dogged, ironic theodolite| +53742|233695|33696|4|13|21172.84|0.09|0.01|R|F|1993-03-30|1993-01-23|1993-04-09|NONE|SHIP| dependencies wake blithely even, bold id| +53742|695102|7616|5|24|26329.68|0.00|0.04|R|F|1993-01-21|1993-02-23|1993-02-16|DELIVER IN PERSON|RAIL|e. furiously regular ideas| +53743|780168|17714|1|6|7488.78|0.01|0.03|N|O|1996-01-15|1995-12-26|1996-01-24|NONE|AIR|blithely. slyly regular | +53768|388198|38199|1|45|57878.10|0.06|0.02|R|F|1994-10-29|1995-01-01|1994-11-13|DELIVER IN PERSON|REG AIR|ly regular reques| +53768|439194|14211|2|50|56658.50|0.03|0.06|A|F|1994-10-13|1994-12-23|1994-10-29|DELIVER IN PERSON|FOB|ains nag furiously about the furiously reg| +53768|525178|12709|3|28|33688.20|0.02|0.08|R|F|1995-01-04|1994-12-25|1995-01-08|DELIVER IN PERSON|REG AIR|lites. close requests br| +53769|920021|45058|1|35|36434.30|0.06|0.02|N|O|1997-07-21|1997-05-15|1997-08-15|NONE|SHIP|egular packages snooz| +53769|781314|31315|2|27|37672.56|0.07|0.07|N|O|1997-07-24|1997-05-21|1997-08-14|DELIVER IN PERSON|SHIP|es. furiou| +53769|542910|42911|3|48|93738.72|0.04|0.01|N|O|1997-05-06|1997-05-24|1997-05-31|DELIVER IN PERSON|REG AIR|tructions. furi| +53769|682361|32362|4|24|32239.92|0.02|0.04|N|O|1997-08-06|1997-07-03|1997-08-11|COLLECT COD|SHIP|nusual theodolites haggle agai| +53769|440828|3337|5|30|53064.00|0.04|0.07|N|O|1997-07-25|1997-06-23|1997-08-03|TAKE BACK RETURN|RAIL|ccounts wake carefully| +53769|984127|21685|6|11|13321.88|0.05|0.04|N|O|1997-06-21|1997-06-06|1997-06-24|TAKE BACK RETURN|SHIP|sts. blithely unusual accoun| +53769|216525|4038|7|30|43245.30|0.09|0.08|N|O|1997-07-04|1997-06-22|1997-07-13|DELIVER IN PERSON|REG AIR|blithely regular ideas sleep slyly pinto| +53770|131468|43971|1|31|46483.26|0.00|0.03|N|O|1995-08-21|1995-10-02|1995-09-03|DELIVER IN PERSON|FOB|ornis detect quickly | +53771|356015|6016|1|26|27846.00|0.05|0.05|A|F|1995-03-13|1995-04-02|1995-03-14|NONE|AIR|ost blithel| +53771|542536|5047|2|20|31570.20|0.03|0.01|A|F|1995-01-19|1995-04-06|1995-01-23|TAKE BACK RETURN|RAIL|impress. care| +53771|388004|25526|3|35|38219.65|0.03|0.08|R|F|1995-03-27|1995-04-01|1995-04-18|COLLECT COD|SHIP|unusual requests nod. packages s| +53772|640636|40637|1|43|67793.80|0.05|0.05|N|O|1996-09-19|1996-09-22|1996-09-29|TAKE BACK RETURN|TRUCK|tructions wake| +53773|662925|25439|1|22|41533.58|0.09|0.02|N|O|1998-06-10|1998-05-31|1998-07-10|NONE|FOB|ts may impress| +53773|768112|5658|2|38|44843.04|0.06|0.07|N|O|1998-04-16|1998-04-20|1998-05-10|DELIVER IN PERSON|REG AIR|es are fur| +53773|654729|29756|3|17|28622.73|0.04|0.02|N|O|1998-03-17|1998-05-22|1998-04-05|NONE|AIR|dolphins haggle slyly blithely bold theo| +53774|290409|2915|1|48|67170.72|0.07|0.01|N|O|1996-07-24|1996-07-09|1996-08-07|NONE|REG AIR|usly slyly | +53774|904060|41615|2|3|3192.06|0.03|0.02|N|O|1996-06-04|1996-08-17|1996-07-04|DELIVER IN PERSON|AIR|arefully quickly specia| +53775|4721|17222|1|44|71531.68|0.00|0.07|N|O|1998-02-08|1998-03-09|1998-02-17|TAKE BACK RETURN|AIR|kages lose c| +53775|329300|29301|2|15|19939.35|0.09|0.02|N|O|1997-12-16|1998-02-21|1997-12-23|NONE|TRUCK|e special, regular instructions. fluffily| +53775|540515|40516|3|3|4666.47|0.02|0.06|N|O|1998-01-06|1998-01-19|1998-01-16|TAKE BACK RETURN|TRUCK|yly silent deposits wake f| +53775|420200|45217|4|34|38086.12|0.03|0.02|N|O|1997-12-14|1998-01-23|1997-12-15|TAKE BACK RETURN|FOB|wake slyly regular accounts. b| +53800|568911|43934|1|18|35638.02|0.10|0.06|R|F|1993-05-11|1993-05-26|1993-05-16|DELIVER IN PERSON|SHIP|instructions wake caref| +53800|673074|23075|2|42|43975.68|0.07|0.05|A|F|1993-08-16|1993-06-03|1993-09-08|NONE|AIR|nusual packages; bold requests| +53800|339800|14813|3|25|45994.75|0.00|0.03|A|F|1993-07-23|1993-06-24|1993-08-18|TAKE BACK RETURN|TRUCK|ly bold accounts?| +53800|5348|30349|4|41|51386.94|0.09|0.04|R|F|1993-08-14|1993-07-07|1993-09-07|TAKE BACK RETURN|RAIL|y ironic deposits sleep| +53800|883762|21314|5|44|76811.68|0.03|0.04|A|F|1993-05-05|1993-06-11|1993-05-27|DELIVER IN PERSON|RAIL|ggle slyly even de| +53800|376235|38743|6|9|11800.98|0.10|0.03|A|F|1993-07-13|1993-06-14|1993-08-04|COLLECT COD|FOB|he slyly silent pinto beans. carefully | +53800|378789|41297|7|39|72843.03|0.06|0.06|A|F|1993-06-21|1993-06-02|1993-06-30|COLLECT COD|RAIL|und the carefully final instruction| +53801|305556|43075|1|27|42161.58|0.08|0.06|A|F|1992-09-08|1992-09-30|1992-10-08|NONE|MAIL|inal, fina| +53801|472827|22828|2|47|84590.60|0.00|0.00|R|F|1992-08-12|1992-09-30|1992-08-23|DELIVER IN PERSON|TRUCK|lyly regular pearls. slyly iron| +53801|792876|17907|3|46|90566.64|0.00|0.08|R|F|1992-10-22|1992-08-28|1992-10-26|COLLECT COD|REG AIR|ound the final foxes are above | +53801|856311|18829|4|26|32949.02|0.08|0.07|A|F|1992-09-28|1992-09-05|1992-10-28|DELIVER IN PERSON|REG AIR|y blithe deposits. final accounts wake| +53802|964917|14918|1|7|13873.09|0.10|0.07|N|O|1997-09-14|1997-07-28|1997-09-20|DELIVER IN PERSON|MAIL|ross the car| +53802|349030|36549|2|29|31291.58|0.09|0.07|N|O|1997-08-25|1997-07-05|1997-09-07|TAKE BACK RETURN|REG AIR|y ironic foxes. carefully final| +53802|132354|32355|3|21|29113.35|0.07|0.07|N|O|1997-05-19|1997-07-11|1997-05-21|NONE|TRUCK|r deposits. even pinto bea| +53802|458655|46183|4|17|27431.71|0.08|0.03|N|O|1997-07-25|1997-07-18|1997-08-08|TAKE BACK RETURN|REG AIR|ecial accounts! slyly special requests | +53803|613220|13221|1|3|3399.57|0.00|0.01|R|F|1993-12-24|1994-01-18|1993-12-29|TAKE BACK RETURN|FOB|s use. ironic accounts about the p| +53803|376942|1957|2|43|86813.99|0.09|0.07|R|F|1994-02-12|1994-02-14|1994-02-18|DELIVER IN PERSON|AIR|es use. pac| +53803|251024|13530|3|5|4875.05|0.01|0.05|A|F|1993-12-31|1994-02-15|1994-01-10|DELIVER IN PERSON|SHIP|ep furiousl| +53803|947893|10412|4|5|9704.25|0.01|0.04|A|F|1994-02-17|1994-01-16|1994-03-15|COLLECT COD|TRUCK|ously even requests detect stealt| +53803|233147|8156|5|19|20522.47|0.05|0.01|A|F|1994-02-25|1994-01-18|1994-03-13|COLLECT COD|MAIL|uickly sauternes. carefully pend| +53803|486448|23976|6|4|5737.68|0.07|0.07|A|F|1994-02-04|1994-02-16|1994-02-27|NONE|MAIL|re furiously acr| +53804|810932|35965|1|7|12900.23|0.09|0.02|A|F|1993-10-15|1993-11-20|1993-10-22|COLLECT COD|REG AIR|fts about the blithely unus| +53804|320594|8113|2|38|61354.04|0.00|0.02|R|F|1994-01-15|1993-11-15|1994-01-25|DELIVER IN PERSON|SHIP|sly regular ideas.| +53804|215725|3238|3|48|78754.08|0.10|0.02|R|F|1993-12-26|1994-01-02|1994-01-10|TAKE BACK RETURN|RAIL|heodolites. pending in| +53804|685640|35641|4|33|53645.13|0.03|0.07|A|F|1994-02-05|1993-12-12|1994-02-11|COLLECT COD|SHIP|l, final deposits haggle c| +53804|541606|29137|5|28|46132.24|0.05|0.03|R|F|1993-10-31|1993-12-31|1993-11-10|COLLECT COD|FOB| deposits use fluffily. regular frets caj| +53804|759308|21824|6|31|42385.37|0.06|0.01|A|F|1994-01-02|1993-12-01|1994-01-03|COLLECT COD|REG AIR|s. silent, regula| +53805|978912|3951|1|30|59726.10|0.04|0.02|A|F|1993-11-14|1993-12-20|1993-12-01|COLLECT COD|RAIL|fluffily ironic accounts. slyly | +53806|765877|15878|1|13|25256.92|0.04|0.00|N|O|1996-08-29|1996-08-09|1996-09-24|NONE|RAIL|ly ironic packa| +53806|87859|361|2|45|83108.25|0.06|0.01|N|O|1996-07-26|1996-09-03|1996-08-06|TAKE BACK RETURN|TRUCK|ions cajole across th| +53807|958535|46093|1|36|57365.64|0.05|0.06|N|O|1995-06-19|1995-07-05|1995-07-01|COLLECT COD|TRUCK|nts. slyly unusual packages are s| +53807|90924|15927|2|13|24893.96|0.00|0.04|R|F|1995-06-06|1995-05-31|1995-06-15|TAKE BACK RETURN|RAIL|. carefully regular pinto be| +53807|154886|42396|3|11|21349.68|0.02|0.01|A|F|1995-04-24|1995-06-27|1995-05-21|DELIVER IN PERSON|SHIP|n foxes across the carefully| +53807|154726|42236|4|3|5342.16|0.00|0.00|A|F|1995-04-17|1995-06-22|1995-05-12|TAKE BACK RETURN|RAIL|ntly regular instructi| +53807|472058|47077|5|38|39141.14|0.09|0.08|N|O|1995-06-29|1995-06-12|1995-07-12|TAKE BACK RETURN|AIR|ep carefully. ironic requests use-- slyly | +53807|869803|44838|6|25|44319.00|0.05|0.08|N|F|1995-06-15|1995-05-31|1995-07-12|COLLECT COD|AIR|l waters. even instructi| +53807|766698|16699|7|9|15881.94|0.06|0.04|N|O|1995-08-04|1995-06-20|1995-08-18|NONE|AIR|furiously unusua| +53832|885028|22580|1|18|18233.64|0.05|0.00|R|F|1993-08-02|1993-05-18|1993-08-03|TAKE BACK RETURN|MAIL|iously express dolphins cajole. q| +53832|660759|23273|2|35|60190.20|0.01|0.05|A|F|1993-06-04|1993-05-14|1993-07-01|NONE|REG AIR|ely furiously special ideas. clo| +53832|363583|26091|3|37|60923.09|0.10|0.04|R|F|1993-07-23|1993-06-07|1993-07-27|COLLECT COD|MAIL|ourts inte| +53832|739350|1865|4|35|48626.20|0.03|0.07|A|F|1993-05-14|1993-05-22|1993-05-22|DELIVER IN PERSON|RAIL|lithely. fluffily regul| +53832|243755|43756|5|12|20384.88|0.01|0.05|R|F|1993-06-22|1993-07-01|1993-07-17|COLLECT COD|MAIL|nding, special requests haggle close re| +53832|776837|26838|6|37|70810.60|0.07|0.00|R|F|1993-04-15|1993-06-08|1993-04-24|NONE|MAIL|ously express deposits doze slyly.| +53833|131209|43712|1|44|54568.80|0.02|0.02|N|O|1995-10-24|1995-12-21|1995-11-23|DELIVER IN PERSON|TRUCK|he blithely bold d| +53834|604872|42409|1|11|19545.24|0.07|0.04|N|O|1995-08-16|1995-11-08|1995-08-20|DELIVER IN PERSON|RAIL|ly across the slyly dogged requests. ex| +53835|331908|6921|1|19|36857.91|0.01|0.00|A|F|1995-03-13|1995-04-03|1995-03-15|COLLECT COD|MAIL|quickly even asymptotes. slyl| +53835|374029|11551|2|11|12133.11|0.01|0.06|R|F|1995-04-07|1995-03-13|1995-04-09|DELIVER IN PERSON|AIR|s? regular packa| +53835|292529|17540|3|13|19779.63|0.04|0.04|R|F|1995-02-19|1995-03-20|1995-03-21|COLLECT COD|FOB|unts need to wake af| +53836|666203|3743|1|39|45597.63|0.06|0.07|N|O|1997-10-24|1997-11-05|1997-11-17|DELIVER IN PERSON|FOB|ckages boost blithely. fluffily even depo| +53837|117147|29650|1|47|54714.58|0.02|0.06|N|O|1995-12-27|1995-12-23|1996-01-25|COLLECT COD|AIR|ly final deposits | +53837|884967|34968|2|24|46846.08|0.09|0.03|N|O|1995-10-28|1996-01-07|1995-11-22|DELIVER IN PERSON|TRUCK|ncies integrate fluffily about | +53838|668016|30530|1|34|33455.32|0.00|0.00|N|O|1998-05-13|1998-07-03|1998-06-08|DELIVER IN PERSON|RAIL|ccording to the i| +53838|340789|40790|2|21|38425.17|0.00|0.01|N|O|1998-07-23|1998-05-20|1998-07-29|COLLECT COD|TRUCK|c excuses shall boost furiously specia| +53838|624205|24206|3|30|33875.10|0.10|0.05|N|O|1998-07-29|1998-06-02|1998-08-27|COLLECT COD|RAIL|tealthy asymptot| +53838|10768|23269|4|35|58756.60|0.07|0.08|N|O|1998-06-23|1998-05-20|1998-06-24|NONE|TRUCK|nusual orbits use about the slyly regular | +53838|964018|14019|5|21|22721.37|0.03|0.03|N|O|1998-06-04|1998-07-02|1998-06-28|DELIVER IN PERSON|MAIL|ng accounts im| +53839|43280|30781|1|22|26912.16|0.10|0.04|R|F|1992-06-01|1992-07-21|1992-06-15|COLLECT COD|SHIP|e blithely? car| +53839|400909|38434|2|14|25338.32|0.00|0.03|R|F|1992-06-14|1992-06-29|1992-06-27|NONE|REG AIR|ray furiously regul| +53864|727440|2469|1|39|57228.99|0.05|0.08|A|F|1993-04-14|1993-01-24|1993-04-28|DELIVER IN PERSON|FOB|ts. blithely ironic platel| +53864|73020|35522|2|15|14895.30|0.10|0.03|A|F|1993-03-25|1993-02-12|1993-04-18|NONE|MAIL|carefully even re| +53864|246820|21829|3|34|60071.54|0.10|0.04|R|F|1993-04-04|1993-02-25|1993-04-11|DELIVER IN PERSON|TRUCK|e the bold instructions| +53864|301567|14074|4|31|48625.05|0.10|0.04|A|F|1993-03-04|1993-03-05|1993-03-26|DELIVER IN PERSON|FOB|instructions haggle blithel| +53865|125147|37650|1|28|32819.92|0.03|0.03|A|F|1995-01-16|1994-11-25|1995-02-09|DELIVER IN PERSON|SHIP| idle requests use. r| +53865|338570|38571|2|22|35388.32|0.04|0.05|R|F|1995-02-01|1994-12-26|1995-02-16|TAKE BACK RETURN|RAIL|g to the ironic, regular r| +53865|343319|43320|3|15|20434.50|0.07|0.03|A|F|1994-11-08|1994-12-29|1994-12-04|NONE|RAIL|g platelets. | +53865|151561|14065|4|37|59664.72|0.03|0.00|A|F|1995-01-12|1994-12-02|1995-01-28|COLLECT COD|REG AIR|ly even accounts run regularl| +53866|616084|28597|1|20|20001.00|0.03|0.01|N|O|1995-10-31|1995-10-06|1995-11-11|TAKE BACK RETURN|MAIL|osits nod. regular dependenci| +53866|512705|37726|2|22|37788.96|0.09|0.03|N|O|1995-12-26|1995-09-28|1995-12-29|TAKE BACK RETURN|FOB|pinto beans hinder ironic| +53866|23949|36450|3|45|84282.30|0.07|0.03|N|O|1995-11-29|1995-10-22|1995-12-22|DELIVER IN PERSON|AIR|ly alongside of | +53866|502236|14747|4|23|28478.83|0.01|0.03|N|O|1995-12-02|1995-11-22|1995-12-04|NONE|REG AIR|y regular pearls wake| +53866|64886|2390|5|1|1850.88|0.06|0.00|N|O|1995-09-15|1995-10-19|1995-09-22|DELIVER IN PERSON|REG AIR| ideas. fluffy deposits haggle| +53867|794130|6646|1|15|18361.50|0.01|0.02|N|O|1995-08-19|1995-10-05|1995-09-01|NONE|SHIP|unusual requests. fluffi| +53867|928239|28240|2|23|29145.37|0.07|0.06|N|O|1995-10-21|1995-09-14|1995-10-29|DELIVER IN PERSON|TRUCK|ions along the platelets hagg| +53867|908671|46226|3|34|57107.42|0.05|0.08|N|O|1995-11-30|1995-10-20|1995-12-10|TAKE BACK RETURN|TRUCK|s against the d| +53867|19715|44716|4|45|73561.95|0.10|0.07|N|O|1995-09-02|1995-09-19|1995-09-20|COLLECT COD|SHIP|ideas inte| +53868|327254|2267|1|30|38437.20|0.10|0.05|N|O|1998-01-06|1997-11-07|1998-01-16|NONE|RAIL|gular deposits. blithely quick foxes a| +53869|134855|34856|1|14|26457.90|0.01|0.01|N|O|1996-04-17|1996-03-04|1996-05-06|DELIVER IN PERSON|MAIL|ing Tiresias engage carefully a| +53869|497551|35079|2|48|74329.44|0.04|0.05|N|O|1996-04-07|1996-02-18|1996-05-03|TAKE BACK RETURN|MAIL| bold accounts was fluffily along the | +53870|725477|506|1|42|63102.48|0.05|0.03|R|F|1992-11-28|1992-12-11|1992-12-13|COLLECT COD|RAIL|eposits. carefully final pinto beans arou| +53870|79263|16767|2|46|57143.96|0.01|0.07|A|F|1993-01-06|1992-11-28|1993-01-20|DELIVER IN PERSON|TRUCK|s wake quickly within | +53870|157203|7204|3|33|41586.60|0.07|0.08|R|F|1992-12-18|1992-11-29|1992-12-19|COLLECT COD|RAIL|nic accounts are. furiously iro| +53870|99499|37003|4|22|32966.78|0.04|0.05|R|F|1992-10-23|1992-11-03|1992-10-30|NONE|AIR|inal requests c| +53870|265024|40035|5|20|19780.20|0.07|0.05|A|F|1992-10-28|1992-11-26|1992-11-18|NONE|REG AIR|ainst the special, f| +53870|246762|34275|6|11|18796.25|0.07|0.04|R|F|1993-01-19|1992-11-06|1993-02-07|COLLECT COD|TRUCK|y. slyly even depo| +53870|312212|12213|7|25|30605.00|0.09|0.06|A|F|1992-12-30|1992-11-25|1993-01-13|NONE|MAIL|fts sleep furiou| +53871|336813|36814|1|15|27747.00|0.05|0.07|N|O|1997-04-06|1997-01-15|1997-05-04|TAKE BACK RETURN|FOB|ic ideas. fluffily regular packag| +53896|382007|7022|1|26|28313.74|0.08|0.04|A|F|1994-12-09|1994-10-07|1994-12-20|TAKE BACK RETURN|AIR| the pinto beans. requests boost quickly! s| +53896|389000|26522|2|29|31580.71|0.08|0.06|R|F|1994-11-21|1994-09-30|1994-12-21|NONE|SHIP|quests. pending excuses| +53896|914003|26522|3|34|34576.64|0.05|0.06|A|F|1994-09-10|1994-11-12|1994-10-10|TAKE BACK RETURN|MAIL|ate regularly slow fo| +53897|74346|24347|1|5|6601.70|0.01|0.08|A|F|1993-08-24|1993-09-26|1993-09-02|NONE|AIR|heodolites. furiously ironic theodolites| +53897|529605|4626|2|25|40864.50|0.00|0.08|R|F|1993-10-11|1993-08-31|1993-10-23|NONE|TRUCK|above the idly regular packages. blithel| +53897|62776|12777|3|2|3477.54|0.08|0.00|A|F|1993-09-30|1993-09-28|1993-10-27|DELIVER IN PERSON|REG AIR|uts integrate| +53898|41268|16269|1|5|6046.30|0.00|0.03|R|F|1994-08-07|1994-06-26|1994-09-03|TAKE BACK RETURN|SHIP|lyly pending theodolites a| +53898|591033|16056|2|2|2248.02|0.07|0.04|A|F|1994-07-23|1994-07-08|1994-08-07|DELIVER IN PERSON|RAIL|o affix. blithely final co| +53898|479068|16596|3|45|47116.80|0.05|0.01|R|F|1994-05-30|1994-06-04|1994-06-23|COLLECT COD|MAIL|n foxes haggle fu| +53898|679693|29694|4|15|25089.90|0.07|0.02|R|F|1994-07-14|1994-06-22|1994-08-09|TAKE BACK RETURN|MAIL|y ideas. quickly final accounts wake! furi| +53898|593963|31497|5|7|14398.58|0.06|0.00|R|F|1994-07-01|1994-06-16|1994-07-04|TAKE BACK RETURN|REG AIR|. final, even foxes cajole quickly ac| +53898|730527|5556|6|47|73202.03|0.05|0.03|R|F|1994-06-20|1994-06-22|1994-07-04|DELIVER IN PERSON|RAIL|s wake carefully regular pac| +53899|220616|45625|1|3|4609.80|0.03|0.00|A|F|1993-12-27|1993-12-02|1994-01-16|COLLECT COD|TRUCK|efully according to the carefully bold acco| +53899|890473|40474|2|37|54146.91|0.00|0.07|R|F|1993-09-19|1993-10-24|1993-09-30|DELIVER IN PERSON|TRUCK|arefully even reque| +53899|170088|7598|3|8|9264.64|0.06|0.06|A|F|1993-11-27|1993-12-09|1993-12-21|NONE|MAIL|olphins. ironic| +53899|664567|14568|4|42|64324.26|0.04|0.04|A|F|1993-09-26|1993-11-30|1993-09-27|COLLECT COD|AIR|carefully furiously b| +53899|365980|3502|5|29|59333.13|0.03|0.03|A|F|1993-11-05|1993-10-19|1993-11-17|DELIVER IN PERSON|FOB|rate unusual| +53900|780529|18075|1|3|4828.47|0.01|0.06|R|F|1993-03-13|1993-03-18|1993-03-21|DELIVER IN PERSON|AIR|theodolites u| +53900|342486|30005|2|23|35154.81|0.01|0.04|R|F|1993-05-12|1993-05-05|1993-06-01|DELIVER IN PERSON|REG AIR|ironic exc| +53900|156612|44122|3|31|51726.91|0.00|0.08|A|F|1993-02-18|1993-05-08|1993-03-16|NONE|SHIP|lyly. blithely regular depe| +53900|168094|43101|4|42|48807.78|0.08|0.07|R|F|1993-05-18|1993-03-25|1993-06-03|TAKE BACK RETURN|MAIL|lites. blithely special r| +53900|152617|40127|5|12|20035.32|0.03|0.00|R|F|1993-04-23|1993-04-09|1993-05-01|COLLECT COD|TRUCK|ole express, brave pinto beans. r| +53900|27872|2873|6|32|57595.84|0.02|0.06|R|F|1993-04-02|1993-03-22|1993-04-29|DELIVER IN PERSON|FOB|ding to the fluff| +53900|430255|30256|7|19|22519.37|0.09|0.07|R|F|1993-03-06|1993-04-15|1993-03-12|NONE|MAIL|nstructions. slyly bold pack| +53901|293856|43857|1|45|83242.80|0.02|0.06|A|F|1992-04-08|1992-04-28|1992-04-30|TAKE BACK RETURN|RAIL|r, final theodolit| +53901|829171|16720|2|46|50605.98|0.02|0.00|R|F|1992-05-23|1992-05-14|1992-05-31|COLLECT COD|AIR|s accounts| +53901|871691|46726|3|22|36578.30|0.05|0.02|A|F|1992-05-01|1992-06-12|1992-05-26|TAKE BACK RETURN|AIR|ual foxes. fluffily pending pinto | +53901|497194|47195|4|6|7147.02|0.05|0.05|A|F|1992-03-21|1992-06-02|1992-04-14|NONE|MAIL|to beans ea| +53902|146593|46594|1|30|49187.70|0.02|0.01|N|O|1998-06-23|1998-06-12|1998-07-21|COLLECT COD|MAIL|hely expres| +53902|786640|11671|2|31|53524.91|0.05|0.06|N|O|1998-07-29|1998-05-28|1998-08-24|DELIVER IN PERSON|SHIP|lyly unusual reque| +53902|46623|21624|3|35|54936.70|0.00|0.04|N|O|1998-05-07|1998-06-19|1998-05-21|DELIVER IN PERSON|REG AIR|lar pinto beans. bold, | +53902|583604|8627|4|21|35439.18|0.02|0.06|N|O|1998-04-26|1998-06-06|1998-05-11|COLLECT COD|TRUCK|nstructions. furio| +53902|625171|12708|5|50|54807.00|0.03|0.04|N|O|1998-06-17|1998-05-18|1998-07-10|NONE|RAIL|heodolites. p| +53902|239277|39278|6|26|31622.76|0.04|0.04|N|O|1998-07-01|1998-06-21|1998-07-14|DELIVER IN PERSON|MAIL|n ideas breach. pinto beans sleep abou| +53902|512303|37324|7|20|26305.60|0.07|0.08|N|O|1998-04-02|1998-06-01|1998-04-30|NONE|TRUCK|the regular asym| +53903|266255|3771|1|35|42743.40|0.05|0.04|N|O|1997-09-01|1997-11-25|1997-09-16|NONE|RAIL| the carefully silent | +53903|935988|23543|2|5|10119.70|0.03|0.06|N|O|1997-10-04|1997-10-03|1997-10-14|COLLECT COD|FOB|nusual deposits cajol| +53903|138226|25733|3|5|6321.10|0.02|0.01|N|O|1997-11-30|1997-10-16|1997-12-01|NONE|SHIP|lites. unusual packages integr| +53903|162985|25489|4|44|90111.12|0.04|0.01|N|O|1997-11-21|1997-10-30|1997-12-05|COLLECT COD|TRUCK|nding pinto beans acros| +53903|276912|26913|5|40|75556.00|0.06|0.08|N|O|1997-08-31|1997-10-29|1997-09-23|TAKE BACK RETURN|MAIL|c accounts. bold, pending deposits aga| +53928|811161|11162|1|48|51461.76|0.04|0.00|N|O|1997-11-07|1997-10-09|1997-12-03|NONE|SHIP|usly special deposits may grow. fo| +53928|179503|29504|2|28|44310.00|0.07|0.02|N|O|1997-10-12|1997-10-20|1997-11-05|COLLECT COD|TRUCK|hinly regular accounts. blithely final pea| +53928|895236|45237|3|9|11080.71|0.00|0.02|N|O|1997-09-16|1997-11-14|1997-09-22|TAKE BACK RETURN|REG AIR|cial, ironic a| +53928|223828|36333|4|27|47298.87|0.02|0.02|N|O|1997-11-24|1997-11-23|1997-12-03|DELIVER IN PERSON|REG AIR|iously express package| +53929|32605|32606|1|46|70729.60|0.09|0.04|N|O|1998-02-01|1998-01-19|1998-02-20|TAKE BACK RETURN|SHIP|as. blithely reg| +53929|988907|38908|2|1|1995.86|0.10|0.03|N|O|1998-03-10|1998-02-12|1998-03-18|DELIVER IN PERSON|MAIL|de of the fluffily r| +53930|63554|38557|1|34|51596.70|0.10|0.08|N|O|1995-08-17|1995-09-17|1995-08-26|DELIVER IN PERSON|TRUCK|ngly. pending packages sleep s| +53930|148942|11445|2|43|85610.42|0.10|0.02|N|O|1995-11-21|1995-09-21|1995-11-22|COLLECT COD|RAIL|at the asymptotes affi| +53930|267566|42577|3|34|52140.70|0.06|0.02|N|O|1995-10-18|1995-09-10|1995-10-20|TAKE BACK RETURN|TRUCK| ideas abou| +53931|680531|43045|1|36|54414.00|0.08|0.06|R|F|1994-05-26|1994-05-28|1994-06-22|COLLECT COD|FOB|ites lose blithely t| +53931|678344|3371|2|27|35702.37|0.02|0.07|R|F|1994-07-18|1994-06-01|1994-08-03|TAKE BACK RETURN|FOB|s cajole furiously around th| +53931|923296|35815|3|17|22427.25|0.04|0.04|R|F|1994-04-08|1994-06-12|1994-04-11|DELIVER IN PERSON|SHIP|gular packages. sil| +53932|438174|25699|1|40|44486.00|0.04|0.08|R|F|1992-10-12|1992-11-14|1992-11-03|NONE|MAIL| requests affix care| +53932|383644|8659|2|50|86381.50|0.09|0.03|R|F|1993-01-12|1992-12-01|1993-01-19|TAKE BACK RETURN|MAIL| use quickly quickly even warhorses. q| +53932|904033|16552|3|41|42516.59|0.03|0.08|A|F|1992-11-12|1992-11-07|1992-11-18|TAKE BACK RETURN|AIR|eep blithely against the furiously reg| +53932|79635|42137|4|3|4843.89|0.04|0.06|A|F|1993-01-12|1992-12-22|1993-01-16|TAKE BACK RETURN|TRUCK|ecial deposits across the unusual, fin| +53932|420192|7717|5|25|27804.25|0.08|0.07|A|F|1993-01-13|1992-10-23|1993-02-01|TAKE BACK RETURN|RAIL|ze among the carefully ironic foxe| +53933|345632|20645|1|3|5032.86|0.04|0.02|N|O|1997-11-27|1997-12-20|1997-12-18|TAKE BACK RETURN|TRUCK|ounts. careful| +53933|31813|19314|2|43|75026.83|0.09|0.00|N|O|1998-01-10|1998-01-11|1998-02-02|TAKE BACK RETURN|RAIL|old, ironic deposits. fluff| +53933|673999|24000|3|25|49324.00|0.08|0.00|N|O|1997-12-29|1998-01-26|1998-01-15|DELIVER IN PERSON|RAIL|s use quickly despite the r| +53933|888737|1255|4|8|13805.52|0.10|0.07|N|O|1997-11-21|1998-01-03|1997-11-24|COLLECT COD|SHIP| express plate| +53933|995951|8471|5|33|67548.03|0.06|0.00|N|O|1998-01-10|1998-01-18|1998-01-19|NONE|MAIL|ly furiously permanent Tiresias. | +53934|761744|11745|1|20|36114.20|0.04|0.06|A|F|1994-03-21|1994-04-15|1994-03-22|TAKE BACK RETURN|TRUCK|ular deposits. express | +53934|622524|22525|2|12|17357.88|0.10|0.06|A|F|1994-03-14|1994-05-21|1994-03-26|DELIVER IN PERSON|REG AIR|posits. busily ironic requests sleep f| +53934|752511|2512|3|31|48467.88|0.09|0.01|A|F|1994-03-11|1994-03-30|1994-03-27|DELIVER IN PERSON|REG AIR|xpress, even dep| +53934|443873|43874|4|20|36337.00|0.05|0.02|R|F|1994-03-07|1994-05-17|1994-04-01|COLLECT COD|AIR|ounts. carefully iron| +53934|159754|9755|5|35|63481.25|0.00|0.07|R|F|1994-06-11|1994-04-08|1994-07-08|COLLECT COD|FOB|ironic pinto beans! carefully t| +53935|71671|34173|1|11|18069.37|0.04|0.02|A|F|1994-08-06|1994-07-09|1994-08-29|COLLECT COD|REG AIR|ithely blithely unusual | +53935|563756|13757|2|35|63690.55|0.07|0.02|R|F|1994-07-21|1994-07-05|1994-08-17|DELIVER IN PERSON|FOB|es. bold, i| +53935|40183|2684|3|23|25833.14|0.02|0.01|A|F|1994-08-07|1994-07-23|1994-08-26|DELIVER IN PERSON|MAIL| quickly express de| +53935|340777|15790|4|34|61803.84|0.01|0.02|A|F|1994-06-27|1994-08-20|1994-07-05|TAKE BACK RETURN|TRUCK|s detect acr| +53935|431661|6678|5|22|35038.08|0.06|0.01|R|F|1994-09-15|1994-06-30|1994-09-26|COLLECT COD|MAIL| beans haggle | +53960|538976|1487|1|44|88657.80|0.05|0.06|N|O|1998-04-26|1998-03-16|1998-05-06|TAKE BACK RETURN|AIR|y regular instruc| +53960|559661|22173|2|8|13765.12|0.01|0.07|N|O|1998-01-17|1998-03-29|1998-01-21|TAKE BACK RETURN|RAIL|lyly pending pinto beans s| +53960|209378|34387|3|39|50207.04|0.00|0.03|N|O|1998-02-04|1998-04-02|1998-02-24|TAKE BACK RETURN|RAIL|into beans are according to the ca| +53960|9261|21762|4|32|37448.32|0.00|0.08|N|O|1998-04-11|1998-02-17|1998-05-02|DELIVER IN PERSON|AIR|ake silent excus| +53961|614201|1738|1|7|7806.19|0.05|0.00|N|O|1995-12-14|1995-11-14|1995-12-21|TAKE BACK RETURN|SHIP|unts wake. regul| +53961|862101|37136|2|13|13819.78|0.09|0.00|N|O|1995-12-13|1995-12-06|1996-01-03|DELIVER IN PERSON|MAIL|iously express pac| +53961|317995|17996|3|7|14090.86|0.01|0.08|N|O|1995-12-04|1995-11-22|1996-01-01|TAKE BACK RETURN|TRUCK|dependenci| +53961|529957|17488|4|19|37751.67|0.04|0.04|N|O|1995-10-22|1996-01-04|1995-11-15|TAKE BACK RETURN|TRUCK|inal pinto| +53961|983675|46195|5|1|1758.63|0.03|0.04|N|O|1995-10-30|1995-12-19|1995-11-26|COLLECT COD|FOB|l accounts are blithely p| +53961|617410|42435|6|42|55749.96|0.01|0.01|N|O|1995-11-22|1995-11-22|1995-12-02|DELIVER IN PERSON|AIR|se furiously fluffily express deposits. | +53962|755786|30817|1|26|47885.50|0.10|0.04|N|O|1996-11-19|1996-11-30|1996-12-07|DELIVER IN PERSON|TRUCK|sauternes. regular, | +53963|324214|49227|1|37|45813.40|0.00|0.07|N|O|1996-12-16|1996-10-17|1997-01-15|NONE|AIR|blithely among the blithely slow deposi| +53963|60338|10339|2|24|31159.92|0.07|0.06|N|O|1996-10-07|1996-09-30|1996-11-02|DELIVER IN PERSON|RAIL| hinder slyly silent | +53963|95841|33345|3|35|64289.40|0.08|0.02|N|O|1996-10-03|1996-10-31|1996-10-12|NONE|TRUCK|e deposits. quickly ironic accounts| +53963|798394|35940|4|36|53724.96|0.00|0.08|N|O|1996-08-30|1996-11-06|1996-09-17|DELIVER IN PERSON|RAIL|ven deposits | +53963|607772|32797|5|16|26875.84|0.07|0.03|N|O|1996-09-03|1996-10-09|1996-09-30|TAKE BACK RETURN|TRUCK|y above the even | +53963|811231|48780|6|29|33123.51|0.05|0.05|N|O|1996-10-07|1996-11-10|1996-10-17|DELIVER IN PERSON|REG AIR| special accounts. final | +53964|940522|15559|1|14|21874.72|0.02|0.02|N|O|1998-05-01|1998-03-17|1998-05-09|COLLECT COD|REG AIR|structions breach | +53965|357882|45404|1|43|83414.41|0.10|0.03|R|F|1994-09-07|1994-09-29|1994-09-13|NONE|TRUCK| the express packages. furiously regular | +53965|912220|12221|2|36|44358.48|0.04|0.02|A|F|1994-11-02|1994-08-13|1994-11-23|DELIVER IN PERSON|SHIP|es: deposits after | +53965|676591|14131|3|39|61134.84|0.00|0.01|A|F|1994-11-10|1994-09-12|1994-11-25|TAKE BACK RETURN|TRUCK|ffily regular du| +53965|449557|12066|4|3|4519.59|0.04|0.06|R|F|1994-08-16|1994-08-20|1994-08-23|TAKE BACK RETURN|SHIP|ts sleep about the| +53965|697128|9642|5|1|1125.09|0.01|0.06|A|F|1994-08-24|1994-08-29|1994-09-06|DELIVER IN PERSON|TRUCK|xpress deposits. busily iron| +53966|59525|47029|1|2|2969.04|0.10|0.08|R|F|1993-02-03|1993-03-17|1993-02-13|COLLECT COD|MAIL|haggle quickly slyly pending theo| +53966|433544|21069|2|40|59100.80|0.10|0.01|A|F|1993-04-28|1993-02-20|1993-05-22|DELIVER IN PERSON|AIR|ole. pending, final platel| +53966|570078|32590|3|38|43625.90|0.07|0.03|A|F|1993-01-25|1993-02-01|1993-02-03|DELIVER IN PERSON|AIR|t the instructions| +53966|286949|24465|4|36|69693.48|0.10|0.02|A|F|1993-01-15|1993-01-31|1993-02-11|COLLECT COD|RAIL|refully ironic dolphins nag. fluffily expre| +53967|734629|22172|1|24|39926.16|0.07|0.01|N|O|1998-07-21|1998-07-19|1998-08-14|NONE|REG AIR| use slyly| +53967|907544|7545|2|14|21721.00|0.06|0.08|N|O|1998-07-27|1998-08-08|1998-07-28|DELIVER IN PERSON|FOB|atelets affix regular, regular accounts| +53967|88456|38457|3|42|60666.90|0.03|0.07|N|O|1998-06-01|1998-08-08|1998-06-19|DELIVER IN PERSON|AIR|xes cajole quickly ag| +53967|669118|31632|4|26|28264.08|0.00|0.00|N|O|1998-05-22|1998-06-29|1998-06-11|DELIVER IN PERSON|AIR|ording to the b| +53992|243175|43176|1|38|42490.08|0.08|0.05|A|F|1994-01-20|1994-01-27|1994-01-24|NONE|SHIP|sly slyly s| +53992|36834|36835|2|30|53124.90|0.09|0.01|A|F|1994-03-16|1994-03-07|1994-04-03|DELIVER IN PERSON|TRUCK|after the bold, even requests. c| +53992|64557|27059|3|20|30431.00|0.10|0.00|A|F|1994-01-22|1994-03-08|1994-02-10|DELIVER IN PERSON|RAIL|d, pending courts u| +53993|605083|17596|1|23|22725.15|0.10|0.01|N|O|1996-10-10|1996-10-06|1996-11-04|COLLECT COD|REG AIR|e around the qui| +53993|615428|15429|2|29|38958.31|0.06|0.05|N|O|1996-09-21|1996-10-01|1996-10-15|TAKE BACK RETURN|MAIL|y ironic theodolites sleep above the fur| +53993|485930|10949|3|45|86215.95|0.03|0.03|N|O|1996-07-23|1996-09-29|1996-08-05|NONE|SHIP|pending deposits doubt| +53993|14252|39253|4|38|44317.50|0.03|0.00|N|O|1996-08-04|1996-09-26|1996-08-26|TAKE BACK RETURN|AIR|lar, even excuses| +53993|518057|30568|5|5|5375.15|0.09|0.08|N|O|1996-08-12|1996-08-13|1996-08-22|COLLECT COD|MAIL|s about the furiously ironic packages bel| +53994|923033|48070|1|43|45407.57|0.09|0.05|A|F|1994-10-17|1994-12-02|1994-11-06|COLLECT COD|AIR|thely ironic packag| +53994|411185|23694|2|44|48231.04|0.08|0.07|R|F|1994-12-09|1994-12-06|1995-01-07|COLLECT COD|RAIL|press excuses along the fluffily regular| +53994|778161|15707|3|17|21065.21|0.00|0.00|R|F|1994-11-12|1994-11-24|1994-11-27|NONE|TRUCK|ss requests use. even foxes cajole | +53994|540781|3292|4|14|25504.64|0.03|0.07|A|F|1994-11-18|1994-11-10|1994-12-09|NONE|RAIL|s wake furiously sly| +53994|896609|34161|5|29|46561.24|0.05|0.06|R|F|1994-09-22|1994-10-23|1994-10-22|DELIVER IN PERSON|SHIP|y fluffily final depo| +53994|297592|35108|6|17|27022.86|0.07|0.06|R|F|1994-09-15|1994-10-10|1994-09-23|TAKE BACK RETURN|REG AIR|tions. final courts cajole | +53995|292961|30477|1|6|11723.70|0.03|0.08|N|O|1998-08-02|1998-07-26|1998-08-31|DELIVER IN PERSON|SHIP|s along the quickly regular foxes boos| +53995|781857|6888|2|33|63981.06|0.00|0.04|N|O|1998-07-12|1998-08-03|1998-07-14|NONE|SHIP| according | +53995|664082|26596|3|17|17782.85|0.01|0.02|N|O|1998-07-30|1998-08-01|1998-08-27|COLLECT COD|AIR|ly ironic pac| +53996|144541|19546|1|27|42809.58|0.01|0.06|R|F|1995-02-20|1995-01-31|1995-03-18|TAKE BACK RETURN|FOB|etect. quickly idle ideas wake against | +53996|290806|3312|2|34|61090.86|0.09|0.00|R|F|1995-04-07|1995-02-05|1995-04-10|NONE|SHIP|s sleep ca| +53997|439954|2463|1|28|53030.04|0.07|0.00|A|F|1994-09-20|1994-08-14|1994-09-30|TAKE BACK RETURN|SHIP| furiously fin| +53997|297601|10107|2|23|36767.57|0.06|0.00|A|F|1994-07-08|1994-08-24|1994-07-22|TAKE BACK RETURN|RAIL|wake. slyly regular accounts will use even | +53997|769412|19413|3|7|10369.66|0.08|0.00|A|F|1994-08-02|1994-09-14|1994-08-24|DELIVER IN PERSON|RAIL|he slyly even deposits. furiously special p| +53997|497734|47735|4|47|81390.37|0.04|0.01|A|F|1994-09-25|1994-09-17|1994-10-04|COLLECT COD|TRUCK|ress requests boost slyly along the| +53997|413080|13081|5|46|45680.76|0.08|0.01|R|F|1994-08-22|1994-08-12|1994-09-19|TAKE BACK RETURN|REG AIR| accounts nag| +53997|629762|29763|6|5|8458.65|0.08|0.02|A|F|1994-08-08|1994-09-02|1994-09-05|COLLECT COD|TRUCK|romise blithely unusual accounts. sl| +53997|400210|211|7|31|34415.89|0.09|0.07|A|F|1994-10-13|1994-08-21|1994-11-08|TAKE BACK RETURN|MAIL|refully packages: even, pend| +53998|324772|12291|1|15|26951.40|0.02|0.06|R|F|1993-07-10|1993-07-06|1993-08-08|NONE|RAIL|iously bold platelets haggle b| +53999|317174|17175|1|16|19058.56|0.00|0.08|R|F|1992-10-11|1992-10-20|1992-10-19|NONE|RAIL|uffily furiously final deposits. blithe| +53999|737453|49968|2|6|8942.52|0.08|0.05|A|F|1992-10-25|1992-11-26|1992-10-31|COLLECT COD|TRUCK|ccounts solve flu| +53999|361177|11178|3|12|14857.92|0.09|0.08|R|F|1992-11-05|1992-10-21|1992-11-06|COLLECT COD|RAIL|l requests are fluffily among the blithely | +53999|290842|28358|4|18|32990.94|0.01|0.00|R|F|1992-12-14|1992-10-13|1993-01-03|TAKE BACK RETURN|SHIP|regular ideas sleep accor| +53999|174788|24789|5|34|63334.52|0.08|0.05|A|F|1992-09-28|1992-10-21|1992-10-17|NONE|MAIL|ve the deposits wake fluffily| +54024|380729|43237|1|50|90485.50|0.07|0.03|A|F|1995-04-08|1995-04-21|1995-04-28|DELIVER IN PERSON|TRUCK|n pinto beans integrate alongside of the| +54024|911713|49268|2|22|37942.74|0.04|0.08|N|F|1995-05-31|1995-04-01|1995-06-24|DELIVER IN PERSON|MAIL|ix regularly alongside o| +54025|250594|595|1|7|10812.06|0.09|0.02|N|O|1997-12-13|1997-12-27|1998-01-04|COLLECT COD|AIR|ly regular packages are caref| +54026|529545|29546|1|13|20468.76|0.01|0.08|R|F|1994-02-08|1994-02-24|1994-03-09|NONE|REG AIR|latelets. carefully final accounts wake| +54026|49449|36950|2|44|61531.36|0.05|0.01|R|F|1994-02-13|1994-03-26|1994-03-03|NONE|MAIL| across the quickly regular theodolites | +54026|84813|22317|3|45|80901.45|0.02|0.04|R|F|1994-02-21|1994-03-20|1994-02-28|NONE|FOB|ess accounts among the instructions use a| +54026|445771|8280|4|40|68670.00|0.05|0.01|R|F|1994-04-27|1994-02-27|1994-05-21|COLLECT COD|RAIL| quickly after the permanent pac| +54026|69701|7205|5|14|23389.80|0.02|0.08|R|F|1994-03-04|1994-04-11|1994-03-19|TAKE BACK RETURN|RAIL| ideas nag quickly final patterns. sly| +54027|442304|42305|1|4|4985.12|0.08|0.01|A|F|1992-03-05|1992-04-14|1992-03-30|NONE|AIR|sleep blithely bold packages. asymp| +54027|790986|16017|2|35|72693.25|0.09|0.07|A|F|1992-05-16|1992-05-10|1992-06-10|COLLECT COD|SHIP|ual accounts nag carefully. sly| +54027|98251|23254|3|31|38726.75|0.09|0.01|R|F|1992-05-25|1992-05-11|1992-06-12|NONE|FOB|ending accounts wake unusual, even req| +54027|296568|34084|4|28|43807.40|0.05|0.04|R|F|1992-06-10|1992-05-10|1992-07-05|COLLECT COD|RAIL| according to the requests grow c| +54027|415542|3067|5|17|24777.84|0.02|0.07|R|F|1992-03-20|1992-04-01|1992-03-21|DELIVER IN PERSON|SHIP|y. carefully ironic requests cajol| +54027|999355|49356|6|46|66898.26|0.06|0.03|R|F|1992-06-27|1992-04-09|1992-07-26|TAKE BACK RETURN|FOB|ts. carefully| +54027|151463|1464|7|3|4543.38|0.03|0.03|R|F|1992-05-15|1992-04-06|1992-05-31|DELIVER IN PERSON|FOB|pendencies. even, unusual | +54028|631890|6915|1|44|80161.84|0.05|0.07|A|F|1994-08-29|1994-08-30|1994-09-24|DELIVER IN PERSON|RAIL|ructions. carefully f| +54028|171429|8939|2|4|6001.68|0.04|0.00|R|F|1994-08-13|1994-08-13|1994-08-26|NONE|FOB|ven accounts doubt alongside of | +54028|202335|2336|3|23|28458.36|0.09|0.03|R|F|1994-07-21|1994-09-24|1994-08-14|COLLECT COD|MAIL|thely among the carefully speci| +54028|628327|40840|4|36|45190.44|0.04|0.04|R|F|1994-07-24|1994-08-19|1994-08-11|TAKE BACK RETURN|FOB|ng the carefully even packages. silent f| +54029|928457|40976|1|28|41591.48|0.07|0.04|N|O|1997-07-12|1997-08-19|1997-08-05|DELIVER IN PERSON|TRUCK|ickly. slyly even sheaves a| +54029|572906|47929|2|24|47493.12|0.08|0.08|N|O|1997-09-19|1997-08-11|1997-10-08|DELIVER IN PERSON|RAIL|e fluffily alongside of the deposit| +54029|828284|15833|3|10|12122.40|0.07|0.00|N|O|1997-08-30|1997-09-06|1997-09-10|TAKE BACK RETURN|REG AIR|uickly ironic pinto beans sleep. bold, i| +54029|957026|7027|4|19|20576.62|0.07|0.07|N|O|1997-06-23|1997-08-15|1997-07-08|TAKE BACK RETURN|SHIP|iously ironic requ| +54029|723556|11099|5|36|56862.72|0.02|0.02|N|O|1997-08-07|1997-07-29|1997-09-06|DELIVER IN PERSON|MAIL|unusual accounts are quickly furiousl| +54029|799849|12365|6|26|50669.06|0.07|0.07|N|O|1997-08-05|1997-08-01|1997-08-26|COLLECT COD|AIR|sh furiously | +54030|17609|17610|1|29|44271.40|0.00|0.08|N|O|1997-03-03|1997-01-12|1997-03-25|TAKE BACK RETURN|SHIP|use. quickly final requests about t| +54030|938963|1482|2|27|54051.84|0.08|0.08|N|O|1997-03-11|1997-01-03|1997-03-29|COLLECT COD|FOB| packages use carefully. speci| +54030|143788|31295|3|27|49458.06|0.07|0.04|N|O|1997-03-09|1997-02-16|1997-03-30|TAKE BACK RETURN|RAIL|es nag carefully. dependenci| +54030|628875|28876|4|40|72153.60|0.03|0.05|N|O|1997-02-07|1997-02-05|1997-03-09|NONE|TRUCK|lly even deposits are caref| +54030|498780|23799|5|40|71150.40|0.00|0.07|N|O|1997-01-06|1997-01-12|1997-02-04|DELIVER IN PERSON|FOB|nto beans. furious| +54031|848551|23584|1|9|13495.59|0.01|0.03|N|O|1995-09-07|1995-10-19|1995-09-29|NONE|REG AIR|sly specia| +54031|591961|4473|2|12|24635.28|0.06|0.05|N|O|1995-10-18|1995-10-13|1995-11-11|TAKE BACK RETURN|FOB|! slyly regular ideas poach whithout the i| +54031|72388|34890|3|15|20405.70|0.04|0.05|N|O|1995-10-16|1995-10-05|1995-11-12|COLLECT COD|REG AIR| foxes x-ray blith| +54031|621092|21093|4|2|2026.12|0.05|0.08|N|O|1995-09-19|1995-10-13|1995-09-28|COLLECT COD|SHIP|ckly pending dependencies. ca| +54031|682747|32748|5|38|65728.98|0.07|0.05|N|O|1995-10-21|1995-10-01|1995-11-06|COLLECT COD|TRUCK|uests across the special packag| +54031|922572|22573|6|37|58997.61|0.04|0.02|N|O|1995-12-02|1995-10-05|1995-12-11|TAKE BACK RETURN|REG AIR|egular, final deposits. furious a| +54031|659503|47043|7|43|62886.21|0.07|0.02|N|O|1995-12-21|1995-11-11|1995-12-29|DELIVER IN PERSON|RAIL|quests! quickly regular | +54056|255130|42646|1|3|3255.36|0.00|0.04|R|F|1994-12-16|1994-12-11|1995-01-13|NONE|RAIL|regular requests run daringly ironic, fi| +54056|960176|22696|2|20|24722.60|0.02|0.03|A|F|1994-11-21|1994-12-08|1994-11-28|NONE|TRUCK|ly regular accounts. quickl| +54056|662894|37921|3|45|83558.70|0.05|0.08|A|F|1994-12-31|1995-01-05|1995-01-09|NONE|REG AIR|g packages lose about | +54056|257927|20433|4|33|62202.03|0.00|0.08|A|F|1994-10-23|1995-01-11|1994-10-28|NONE|FOB|yly instructions. slyly final packages| +54056|969396|6954|5|23|33703.05|0.07|0.00|R|F|1995-01-05|1994-12-14|1995-01-23|DELIVER IN PERSON|RAIL|deas nag against the ruthless, ex| +54056|623519|23520|6|13|18752.24|0.03|0.00|R|F|1994-11-16|1994-12-13|1994-11-27|DELIVER IN PERSON|RAIL|blithely express pi| +54057|783846|8877|1|37|71402.97|0.01|0.03|R|F|1994-04-28|1994-05-18|1994-05-19|DELIVER IN PERSON|AIR|ending foxes. fluffily ironic theodolites c| +54057|92078|17081|2|41|43872.87|0.03|0.07|A|F|1994-05-28|1994-06-06|1994-06-25|TAKE BACK RETURN|TRUCK|leep above | +54057|545968|8479|3|28|56390.32|0.00|0.03|A|F|1994-05-01|1994-05-06|1994-05-29|TAKE BACK RETURN|RAIL|eas sleep. caref| +54057|70897|33399|4|26|48565.14|0.06|0.02|R|F|1994-07-11|1994-04-29|1994-07-12|NONE|MAIL|press requests about the bli| +54057|554648|17160|5|27|45970.74|0.05|0.08|A|F|1994-05-02|1994-06-04|1994-05-24|TAKE BACK RETURN|MAIL|final, fluffy req| +54057|955664|43222|6|40|68784.80|0.03|0.01|R|F|1994-05-17|1994-05-20|1994-06-08|COLLECT COD|RAIL|vely across the even depe| +54058|302626|27639|1|4|6514.44|0.01|0.06|N|O|1998-06-24|1998-07-01|1998-07-24|DELIVER IN PERSON|REG AIR|out the bold asymptotes. blithely | +54058|224569|12082|2|3|4480.65|0.07|0.08|N|O|1998-06-28|1998-06-17|1998-07-07|DELIVER IN PERSON|TRUCK|fily silent orbits haggle fluffily. furious| +54058|317979|5498|3|43|85869.28|0.06|0.02|N|O|1998-06-10|1998-06-11|1998-06-17|DELIVER IN PERSON|REG AIR|gular accounts haggle quickly pending p| +54059|730658|5687|1|12|20263.44|0.05|0.01|N|O|1998-05-26|1998-05-24|1998-06-13|TAKE BACK RETURN|AIR| haggle besides the blith| +54059|158476|33483|2|30|46034.10|0.07|0.00|N|O|1998-03-30|1998-05-10|1998-04-10|COLLECT COD|TRUCK|eas. furiously ironic accounts nag bli| +54059|493208|30736|3|22|26425.96|0.05|0.01|N|O|1998-04-21|1998-04-01|1998-05-12|NONE|SHIP|e bold, regular theodolites. reg| +54060|943082|43083|1|27|30376.08|0.03|0.06|N|O|1995-12-09|1996-02-03|1995-12-25|COLLECT COD|FOB|uests. carefully pending | +54060|371491|46506|2|31|48436.88|0.02|0.02|N|O|1996-01-25|1995-12-10|1996-02-09|NONE|AIR|al, even foxes solve blithely. bl| +54060|636242|11267|3|40|47128.40|0.08|0.04|N|O|1996-02-05|1995-12-23|1996-02-14|COLLECT COD|TRUCK|efully unusual| +54060|306752|31765|4|39|68590.86|0.09|0.07|N|O|1996-01-31|1996-01-23|1996-02-08|DELIVER IN PERSON|REG AIR|g theodolite| +54061|63143|647|1|7|7742.98|0.02|0.03|R|F|1994-10-07|1994-11-30|1994-11-05|TAKE BACK RETURN|RAIL|lar deposi| +54062|593236|18259|1|47|62472.87|0.04|0.08|A|F|1995-05-24|1995-04-22|1995-05-29|NONE|FOB|ronic requests about the blithely even d| +54062|508368|33389|2|45|61935.30|0.01|0.02|R|F|1995-05-07|1995-04-27|1995-05-11|NONE|TRUCK|? regular warhorses sleep slyly above the | +54062|125162|12669|3|17|20181.72|0.02|0.06|A|F|1995-04-03|1995-04-13|1995-05-01|NONE|MAIL|ickly special foxes alongside | +54062|590736|40737|4|22|40187.62|0.07|0.07|R|F|1995-05-22|1995-04-13|1995-05-30|NONE|MAIL|g the pending, brave p| +54062|490853|28381|5|19|35032.77|0.03|0.03|A|F|1995-04-30|1995-05-08|1995-05-03|DELIVER IN PERSON|MAIL|e the busily regular foxes. blith| +54063|482444|32445|1|15|21396.30|0.05|0.04|N|O|1996-01-22|1996-04-12|1996-02-06|TAKE BACK RETURN|REG AIR|althy packages s| +54063|427108|14633|2|49|50718.92|0.01|0.05|N|O|1996-03-05|1996-03-29|1996-03-13|DELIVER IN PERSON|FOB|. carefully final foxes a| +54063|393618|43619|3|34|58194.40|0.07|0.03|N|O|1996-02-08|1996-04-10|1996-02-24|DELIVER IN PERSON|REG AIR|lar packages unwind blit| +54088|132202|32203|1|33|40728.60|0.04|0.07|A|F|1995-02-20|1995-01-10|1995-03-14|NONE|SHIP|. platelets sle| +54088|917041|4596|2|22|23276.00|0.10|0.01|R|F|1994-12-11|1995-03-01|1995-01-09|TAKE BACK RETURN|SHIP|s are blithely according to th| +54088|707531|32560|3|35|53847.50|0.01|0.08|R|F|1995-03-01|1995-01-09|1995-03-18|DELIVER IN PERSON|RAIL|usly pending foxes wake slyly. furiously s| +54088|462120|12121|4|21|22724.10|0.01|0.07|R|F|1995-04-04|1995-02-06|1995-04-20|COLLECT COD|FOB| accounts are carefully furiously final ex| +54088|848900|36449|5|49|90594.14|0.05|0.06|R|F|1995-01-18|1995-01-25|1995-02-16|NONE|MAIL|t carefully. furio| +54089|511908|11909|1|43|82554.84|0.04|0.05|A|F|1993-08-12|1993-07-05|1993-08-27|TAKE BACK RETURN|AIR|poach blithely special, regular inst| +54089|631090|18627|2|24|24505.44|0.04|0.07|A|F|1993-08-20|1993-07-17|1993-08-27|COLLECT COD|RAIL|s cajole slyly according to the | +54089|725351|25352|3|8|11010.56|0.04|0.00|R|F|1993-06-21|1993-07-14|1993-07-16|NONE|REG AIR|foxes are blithely above the carefully spe| +54089|968491|31011|4|29|45224.05|0.01|0.03|A|F|1993-07-14|1993-06-05|1993-08-07|COLLECT COD|AIR|r excuses wake according to the pe| +54089|415741|3266|5|44|72895.68|0.04|0.03|A|F|1993-08-02|1993-06-26|1993-08-27|NONE|TRUCK|as haggle evenl| +54090|922831|35350|1|40|74151.60|0.04|0.06|N|O|1997-01-27|1997-03-21|1997-02-17|COLLECT COD|MAIL|are blithely carefully pending account| +54090|19659|32160|2|5|7893.25|0.06|0.04|N|O|1997-04-22|1997-03-29|1997-05-13|NONE|TRUCK|fully daring r| +54090|403820|3821|3|13|22409.40|0.08|0.02|N|O|1997-04-04|1997-03-16|1997-05-04|DELIVER IN PERSON|TRUCK|es around the bl| +54090|996829|46830|4|6|11554.68|0.07|0.01|N|O|1997-02-07|1997-03-18|1997-02-12|DELIVER IN PERSON|TRUCK|nts use carefu| +54091|696703|21730|1|9|15297.03|0.07|0.08|A|F|1993-08-10|1993-08-21|1993-08-19|NONE|RAIL|ependencies solve across the carefully | +54091|472261|47280|2|1|1233.24|0.01|0.00|R|F|1993-10-11|1993-09-22|1993-10-17|COLLECT COD|TRUCK|ainst the furiously regular ac| +54091|283798|8809|3|21|37417.38|0.06|0.07|R|F|1993-07-11|1993-08-17|1993-08-10|COLLECT COD|TRUCK|heodolites; furiously special accounts acco| +54091|786028|11059|4|13|14481.87|0.06|0.05|R|F|1993-09-29|1993-07-31|1993-10-14|TAKE BACK RETURN|TRUCK|ly bold requests.| +54092|458732|33751|1|32|54102.72|0.04|0.05|N|O|1997-02-21|1997-02-13|1997-03-20|DELIVER IN PERSON|FOB|n deposits snooz| +54092|905106|30143|2|33|36664.98|0.04|0.03|N|O|1997-03-27|1997-02-02|1997-04-04|DELIVER IN PERSON|TRUCK|g foxes use carefully regular accounts. car| +54093|562867|401|1|27|52105.68|0.09|0.01|A|F|1995-05-11|1995-03-18|1995-05-18|DELIVER IN PERSON|AIR| regular instructions| +54093|89790|2292|2|43|76530.97|0.09|0.07|A|F|1995-03-07|1995-04-09|1995-04-01|DELIVER IN PERSON|RAIL|nticing inst| +54093|97136|22139|3|35|39659.55|0.10|0.02|A|F|1995-02-10|1995-03-10|1995-02-26|NONE|REG AIR|egular hockey players| +54093|564490|39513|4|12|18653.64|0.10|0.00|A|F|1995-03-05|1995-02-27|1995-03-20|COLLECT COD|MAIL|ound the carefully bold foxes w| +54093|375746|25747|5|42|76512.66|0.01|0.00|R|F|1995-05-01|1995-03-07|1995-05-24|COLLECT COD|AIR|ely regular deposits haggle slyly.| +54093|151710|39220|6|13|22902.23|0.02|0.02|R|F|1995-05-20|1995-04-11|1995-06-14|TAKE BACK RETURN|AIR|carefully pinto beans. furiously| +54094|158135|45645|1|45|53690.85|0.00|0.06|N|O|1996-10-15|1996-11-09|1996-10-30|TAKE BACK RETURN|TRUCK|kly ironic | +54094|774198|49229|2|38|48342.08|0.06|0.06|N|O|1996-10-16|1996-11-27|1996-11-13|TAKE BACK RETURN|MAIL|t platelets brea| +54094|936344|23899|3|6|8281.80|0.09|0.04|N|O|1996-11-03|1996-10-16|1996-11-20|COLLECT COD|MAIL|s according to| +54094|119686|32189|4|43|73344.24|0.01|0.04|N|O|1996-11-15|1996-11-21|1996-12-10|NONE|SHIP|unts sleep| +54094|548329|35860|5|24|33055.20|0.09|0.05|N|O|1996-09-21|1996-11-17|1996-10-05|TAKE BACK RETURN|AIR|. slyly ironic d| +54094|756506|31537|6|27|42186.69|0.09|0.01|N|O|1996-12-05|1996-10-12|1996-12-08|COLLECT COD|MAIL|olites affix fluffily| +54094|583101|20635|7|2|2368.16|0.04|0.08|N|O|1996-12-08|1996-11-20|1996-12-30|TAKE BACK RETURN|SHIP|ely regular packages. accounts hagg| +54095|176817|39321|1|29|54920.49|0.06|0.05|R|F|1994-01-29|1994-01-04|1994-02-23|TAKE BACK RETURN|TRUCK| ironic, silen| +54095|748496|23525|2|42|64867.32|0.02|0.07|R|F|1993-12-28|1993-11-11|1993-12-30|NONE|SHIP|iously final accounts. daringly special ac| +54095|968337|18338|3|32|44969.28|0.02|0.05|R|F|1994-01-11|1993-11-25|1994-02-05|DELIVER IN PERSON|TRUCK|ptotes across the never e| +54095|832397|32398|4|11|14622.85|0.00|0.03|A|F|1993-11-01|1993-11-07|1993-11-29|NONE|RAIL|thely special accounts. furiously even r| +54095|87917|37918|5|2|3809.82|0.09|0.08|R|F|1994-01-02|1994-01-02|1994-01-05|NONE|MAIL| foxes use final requests. furiously reg| +54120|144400|44401|1|46|66442.40|0.05|0.08|N|O|1995-09-11|1995-10-10|1995-10-08|COLLECT COD|RAIL|dencies. evenly ironic reques| +54120|917679|5234|2|38|64471.94|0.04|0.04|N|O|1995-10-12|1995-08-30|1995-10-17|COLLECT COD|MAIL|egular acco| +54120|415820|3345|3|41|71167.80|0.07|0.03|N|O|1995-09-15|1995-09-12|1995-09-25|DELIVER IN PERSON|RAIL|egrate fur| +54120|673067|35581|4|32|33280.96|0.10|0.01|N|O|1995-10-02|1995-08-29|1995-10-14|COLLECT COD|TRUCK|eful notornis cajole quickly. bold, p| +54120|230097|17610|5|15|15406.20|0.07|0.05|N|O|1995-08-12|1995-09-07|1995-08-23|DELIVER IN PERSON|AIR|e ironic, regular pinto beans use | +54120|240172|15181|6|5|5560.80|0.02|0.08|N|O|1995-08-19|1995-10-04|1995-08-26|NONE|TRUCK|aggle fluffily furiou| +54121|477336|2355|1|25|32832.75|0.04|0.02|R|F|1994-04-08|1994-03-06|1994-05-03|COLLECT COD|RAIL|furiously even ideas.| +54122|300273|274|1|20|25465.20|0.05|0.04|N|O|1996-02-10|1996-02-26|1996-02-16|TAKE BACK RETURN|TRUCK|kly blithely final accounts. f| +54122|687590|104|2|47|74145.32|0.08|0.00|N|O|1996-02-28|1996-02-26|1996-03-22|COLLECT COD|FOB|xcuses haggle boldly express a| +54122|323660|11179|3|2|3367.30|0.10|0.05|N|O|1996-02-09|1996-02-04|1996-03-10|TAKE BACK RETURN|MAIL|carefully bold packag| +54123|385027|22549|1|33|36696.33|0.06|0.00|A|F|1993-08-05|1993-10-16|1993-08-27|DELIVER IN PERSON|FOB|excuses. carefull| +54123|142065|42066|2|37|40961.22|0.04|0.05|A|F|1993-09-11|1993-10-08|1993-09-19|DELIVER IN PERSON|REG AIR|accounts about the blithe| +54123|685577|35578|3|40|62501.60|0.00|0.01|R|F|1993-08-20|1993-10-01|1993-08-21|NONE|TRUCK|egular excuses. fluffy instructio| +54123|476038|38548|4|34|34476.34|0.01|0.05|A|F|1993-10-14|1993-08-20|1993-10-22|DELIVER IN PERSON|TRUCK|e quickly a| +54123|757915|7916|5|17|33538.96|0.10|0.00|R|F|1993-09-17|1993-08-18|1993-10-12|TAKE BACK RETURN|REG AIR| boost. regular acc| +54123|262290|12291|6|4|5009.12|0.06|0.04|A|F|1993-10-09|1993-10-12|1993-11-02|NONE|AIR| unusual requests poach. blithel| +54123|304800|42319|7|47|84825.13|0.00|0.06|A|F|1993-09-23|1993-09-08|1993-09-24|NONE|REG AIR|symptotes haggle fluffily quickly ironic| +54124|765143|40174|1|40|48324.40|0.04|0.06|R|F|1993-06-14|1993-06-07|1993-07-04|TAKE BACK RETURN|RAIL|ily unusual packages sleep. fin| +54124|754730|42276|2|50|89235.00|0.03|0.05|R|F|1993-07-16|1993-06-15|1993-07-25|COLLECT COD|RAIL|aring deposits sleep furiously carefully sp| +54124|739058|39059|3|44|48268.88|0.03|0.02|A|F|1993-05-15|1993-05-20|1993-06-04|TAKE BACK RETURN|RAIL|grate fluffily| +54125|29386|16887|1|49|64453.62|0.02|0.00|N|O|1998-09-19|1998-09-09|1998-10-06|DELIVER IN PERSON|AIR|ole slyly around th| +54125|878900|28901|2|49|92064.14|0.04|0.05|N|O|1998-08-31|1998-08-31|1998-09-19|COLLECT COD|TRUCK| ideas should are| +54125|668823|31337|3|20|35835.80|0.10|0.02|N|O|1998-11-07|1998-08-16|1998-11-25|COLLECT COD|RAIL|ily regular | +54125|897508|10026|4|24|36131.04|0.08|0.01|N|O|1998-10-07|1998-10-10|1998-11-03|DELIVER IN PERSON|AIR|otes. quickl| +54126|666658|29172|1|13|21120.06|0.05|0.02|A|F|1993-04-25|1993-06-05|1993-05-23|DELIVER IN PERSON|AIR|boost above the ev| +54126|517405|29916|2|12|17068.56|0.07|0.07|R|F|1993-07-28|1993-05-22|1993-08-14|TAKE BACK RETURN|REG AIR|te furiously| +54127|780762|5793|1|3|5528.19|0.00|0.01|N|O|1996-03-28|1996-03-26|1996-04-15|COLLECT COD|SHIP| fluffily ironic t| +54127|251742|1743|2|17|28793.41|0.03|0.04|N|O|1996-04-16|1996-04-29|1996-04-25|TAKE BACK RETURN|AIR|ests haggle blithe| +54152|985566|23124|1|4|6606.08|0.09|0.08|R|F|1994-10-29|1994-12-11|1994-11-18|DELIVER IN PERSON|AIR| slyly finally expr| +54152|397517|10025|2|33|53278.50|0.02|0.07|R|F|1994-12-26|1994-12-12|1994-12-31|DELIVER IN PERSON|FOB|regular accounts detect fluffily abo| +54152|67813|17814|3|3|5342.43|0.06|0.00|R|F|1994-12-29|1994-11-19|1995-01-03|TAKE BACK RETURN|RAIL| final, unusual accounts. deposit| +54152|729331|4360|4|35|47610.50|0.05|0.02|R|F|1994-11-10|1995-01-11|1994-12-09|NONE|TRUCK|eans against the carefully special instruc| +54152|849426|49427|5|50|68769.00|0.07|0.00|R|F|1994-11-19|1994-11-21|1994-11-28|COLLECT COD|SHIP|ans wake furiously. quickly re| +54152|291181|28697|6|21|24615.57|0.04|0.01|R|F|1995-01-30|1994-11-26|1995-02-15|NONE|SHIP| slyly slow foxes. bold re| +54152|873794|11346|7|9|15909.75|0.09|0.08|A|F|1995-01-23|1994-12-18|1995-02-08|DELIVER IN PERSON|AIR| haggle slyly above the ironic packages. | +54153|846658|21691|1|42|67393.62|0.05|0.00|R|F|1994-04-22|1994-06-01|1994-04-24|NONE|FOB|sly final accounts. carefully final| +54153|766421|41452|2|26|38672.14|0.08|0.03|R|F|1994-06-07|1994-07-03|1994-06-16|DELIVER IN PERSON|FOB| accounts haggle furiously against the| +54154|675525|38039|1|13|19506.37|0.04|0.06|R|F|1994-07-30|1994-07-21|1994-08-13|NONE|FOB|ep blithely. bold, pending instructi| +54154|532266|19797|2|45|58420.80|0.08|0.03|A|F|1994-06-07|1994-07-03|1994-06-19|DELIVER IN PERSON|AIR|ng the unusual, even pinto | +54154|793380|5896|3|25|36833.75|0.04|0.02|R|F|1994-08-30|1994-08-15|1994-09-25|COLLECT COD|RAIL|e express accounts cajole | +54154|331228|31229|4|47|59182.87|0.02|0.04|R|F|1994-07-16|1994-08-05|1994-08-02|COLLECT COD|TRUCK|ng requests. blithe| +54155|24992|12493|1|45|86264.55|0.09|0.01|N|O|1995-09-13|1995-09-26|1995-10-01|NONE|MAIL| deposits. slyly even foxe| +54155|26251|1252|2|30|35317.50|0.09|0.03|N|O|1995-09-16|1995-10-01|1995-09-19|NONE|REG AIR|ly even platelets are| +54155|194780|44781|3|42|78740.76|0.01|0.01|N|O|1995-09-22|1995-10-02|1995-10-17|NONE|AIR|deposits. furiously regular requests are fu| +54155|658016|20530|4|23|22401.54|0.00|0.06|N|O|1995-10-21|1995-11-12|1995-11-07|TAKE BACK RETURN|SHIP|fluffily among the | +54156|461792|24302|1|23|40336.71|0.00|0.01|R|F|1992-11-07|1992-12-06|1992-11-19|TAKE BACK RETURN|REG AIR|deposits! even, even packages sle| +54156|328390|28391|2|22|31204.36|0.06|0.04|R|F|1993-01-24|1993-01-10|1993-02-04|TAKE BACK RETURN|TRUCK|he braids among the permanently ironic d| +54156|248634|36147|3|22|34817.64|0.06|0.08|A|F|1992-11-15|1992-12-11|1992-11-19|TAKE BACK RETURN|REG AIR|xcuses. even decoys nag busy, | +54157|966418|28938|1|1|1484.37|0.09|0.00|A|F|1994-05-26|1994-04-23|1994-06-24|DELIVER IN PERSON|FOB|the blithely even accounts.| +54157|573809|11343|2|17|32007.26|0.05|0.04|A|F|1994-04-18|1994-04-07|1994-05-10|COLLECT COD|FOB|rash. final, even | +54157|428|429|3|27|35867.34|0.06|0.06|A|F|1994-06-07|1994-06-03|1994-06-12|TAKE BACK RETURN|MAIL|gle quickly| +54157|192356|17363|4|26|37657.10|0.06|0.05|R|F|1994-03-27|1994-04-09|1994-04-07|NONE|SHIP|earls unwind. blithel| +54157|911926|49481|5|49|94956.12|0.06|0.06|A|F|1994-04-30|1994-05-11|1994-05-28|COLLECT COD|REG AIR|regular, bold requ| +54158|763510|13511|1|43|67659.64|0.01|0.03|R|F|1995-01-17|1994-12-30|1995-01-18|TAKE BACK RETURN|RAIL|ges according to the s| +54158|302644|40163|2|38|62571.94|0.05|0.04|R|F|1994-12-15|1994-12-04|1994-12-30|DELIVER IN PERSON|TRUCK|after the requests are slyly blithe | +54158|531855|44366|3|29|54718.07|0.01|0.07|R|F|1995-01-13|1994-11-28|1995-01-29|COLLECT COD|RAIL|odolites ca| +54159|451767|1768|1|39|67030.86|0.09|0.04|N|O|1997-11-23|1997-10-24|1997-11-26|DELIVER IN PERSON|AIR|e. unusual accounts| +54159|843424|5941|2|13|17775.94|0.02|0.00|N|O|1997-12-16|1997-10-26|1998-01-04|TAKE BACK RETURN|MAIL|ar ideas. packages serve bli| +54159|423854|48871|3|28|49779.24|0.05|0.06|N|O|1997-09-21|1997-10-06|1997-10-07|TAKE BACK RETURN|RAIL|its haggle slyl| +54159|707990|45533|4|21|41957.16|0.10|0.00|N|O|1997-09-14|1997-11-15|1997-10-05|TAKE BACK RETURN|TRUCK|tructions. | +54184|148888|23893|1|31|60043.28|0.08|0.02|N|O|1997-06-29|1997-07-02|1997-07-19|DELIVER IN PERSON|MAIL|ously fina| +54184|347858|47859|2|6|11435.04|0.10|0.02|N|O|1997-09-09|1997-07-06|1997-09-13|DELIVER IN PERSON|TRUCK|ckly regular theodolites. ironic, fin| +54184|435667|10684|3|5|8013.20|0.10|0.07|N|O|1997-05-18|1997-06-20|1997-06-09|DELIVER IN PERSON|AIR|ully regular requests sleep quickly fu| +54184|254933|17439|4|38|71740.96|0.04|0.05|N|O|1997-06-12|1997-07-23|1997-06-19|NONE|FOB|ke. regular requests detect dolphins. never| +54184|645019|7532|5|44|42415.12|0.00|0.04|N|O|1997-08-30|1997-07-09|1997-09-11|TAKE BACK RETURN|FOB|ilent asymptotes| +54184|834290|46807|6|39|47745.75|0.00|0.07|N|O|1997-06-08|1997-06-15|1997-06-29|DELIVER IN PERSON|FOB| foxes above| +54184|910709|35746|7|16|27514.56|0.06|0.00|N|O|1997-06-16|1997-07-18|1997-06-27|COLLECT COD|SHIP| haggle carefully a| +54185|277314|39820|1|22|28408.60|0.02|0.06|A|F|1994-10-07|1994-11-24|1994-11-05|DELIVER IN PERSON|REG AIR|the carefully regular excuse| +54185|814958|27475|2|22|41204.02|0.09|0.06|A|F|1994-11-27|1994-10-29|1994-12-04|NONE|RAIL|l accounts sleep at | +54185|987164|12203|3|19|23771.28|0.05|0.04|R|F|1994-10-13|1994-11-29|1994-10-14|NONE|TRUCK|deposits sleep slyly fu| +54186|676648|1675|1|6|9747.66|0.04|0.06|A|F|1994-03-14|1994-04-10|1994-04-10|TAKE BACK RETURN|FOB|, enticing reque| +54186|413453|978|2|48|65588.64|0.09|0.05|A|F|1994-03-12|1994-04-11|1994-04-05|DELIVER IN PERSON|RAIL|s from the regular, | +54186|891116|16151|3|33|36533.31|0.06|0.01|A|F|1994-03-21|1994-04-11|1994-04-18|NONE|FOB|riously regular requests. express accounts| +54186|971472|9030|4|41|63280.63|0.04|0.01|A|F|1994-03-06|1994-04-19|1994-04-05|COLLECT COD|AIR|y pending de| +54187|585011|35012|1|43|47127.57|0.06|0.08|N|O|1998-06-04|1998-05-02|1998-07-02|COLLECT COD|FOB|he quickly bold courts cajo| +54187|265478|15479|2|29|41860.34|0.07|0.07|N|O|1998-05-21|1998-04-26|1998-05-26|NONE|REG AIR|ld foxes. express pinto beans boost! | +54187|887528|25080|3|50|75774.00|0.00|0.06|N|O|1998-04-30|1998-04-21|1998-05-20|COLLECT COD|MAIL|ously final ideas. carefully | +54187|681709|31710|4|31|52410.77|0.01|0.03|N|O|1998-06-08|1998-05-18|1998-06-20|NONE|TRUCK| requests. | +54187|478792|41302|5|41|72601.57|0.05|0.04|N|O|1998-05-16|1998-05-20|1998-05-24|DELIVER IN PERSON|FOB|e ironic theodoli| +54188|989588|2108|1|35|58713.90|0.00|0.08|N|O|1997-01-23|1996-12-15|1997-01-29|DELIVER IN PERSON|SHIP|ly. fluffily unusual excuses caj| +54188|4090|29091|2|24|23858.16|0.02|0.05|N|O|1996-12-11|1997-01-01|1996-12-31|DELIVER IN PERSON|REG AIR|. ironic accounts boost carefu| +54188|732357|32358|3|1|1389.32|0.07|0.00|N|O|1997-03-04|1996-12-21|1997-03-12|NONE|TRUCK|e quickly slyly pending foxes.| +54188|717680|17681|4|43|72998.95|0.10|0.08|N|O|1997-01-06|1997-01-08|1997-01-31|DELIVER IN PERSON|RAIL| slyly among th| +54189|637171|49684|1|28|31027.92|0.09|0.05|R|F|1993-01-23|1993-02-18|1993-02-10|NONE|MAIL|ely even instru| +54190|145327|7830|1|40|54892.80|0.01|0.02|N|O|1996-12-18|1996-12-10|1996-12-28|NONE|RAIL|ng the final r| +54190|495041|32569|2|28|29008.56|0.09|0.02|N|O|1996-11-28|1996-12-14|1996-12-21|DELIVER IN PERSON|REG AIR|osits boost req| +54190|151668|1669|3|29|49870.14|0.08|0.03|N|O|1996-12-22|1996-10-31|1997-01-14|TAKE BACK RETURN|AIR|ly express sauternes haggle. ca| +54191|623066|23067|1|26|25714.78|0.02|0.07|N|O|1998-02-27|1997-12-21|1998-03-24|COLLECT COD|FOB|y regular excuses. carefully | +54191|868071|5623|2|25|25975.75|0.10|0.07|N|O|1997-12-16|1997-12-10|1997-12-22|TAKE BACK RETURN|AIR|y alongside of the fluffily final plat| +54191|662630|25144|3|23|36629.80|0.10|0.01|N|O|1997-12-28|1997-12-26|1998-01-19|NONE|RAIL|gular, ironic r| +54216|557332|7333|1|28|38900.68|0.06|0.05|N|O|1997-02-15|1997-01-17|1997-02-25|TAKE BACK RETURN|AIR|y pending packages cajole | +54216|68672|18673|2|4|6562.68|0.05|0.04|N|O|1996-12-30|1997-01-16|1997-01-15|COLLECT COD|MAIL|furiously unusual hockey play| +54216|167769|17770|3|28|51429.28|0.00|0.01|N|O|1997-03-04|1997-02-08|1997-03-09|DELIVER IN PERSON|SHIP|quests. furiously silent pinto beans | +54216|680193|30194|4|27|31675.32|0.06|0.07|N|O|1997-01-23|1997-01-24|1997-02-16|COLLECT COD|MAIL|g ideas was slyly against the quickly | +54216|991806|16845|5|30|56932.80|0.02|0.00|N|O|1996-12-16|1997-03-01|1997-01-02|TAKE BACK RETURN|AIR|gular packages a| +54216|276422|13938|6|23|32163.43|0.07|0.00|N|O|1997-03-07|1997-02-26|1997-04-02|TAKE BACK RETURN|REG AIR|s haggle blithely even,| +54217|526523|26524|1|34|52683.00|0.01|0.00|R|F|1993-12-07|1994-02-11|1993-12-12|DELIVER IN PERSON|FOB|e furiously pendi| +54217|258794|46310|2|3|5258.34|0.02|0.06|R|F|1993-12-28|1993-12-27|1993-12-31|TAKE BACK RETURN|RAIL|uffy foxes wake blithely pe| +54217|537243|24774|3|24|30725.28|0.05|0.03|R|F|1993-12-18|1993-12-28|1993-12-31|TAKE BACK RETURN|MAIL|ounts sleep carefully ironic instructio| +54217|431613|6630|4|1|1544.59|0.04|0.01|R|F|1993-12-04|1994-01-23|1993-12-23|COLLECT COD|RAIL|y even accounts can are b| +54217|105609|5610|5|30|48438.00|0.03|0.03|R|F|1993-12-09|1994-02-20|1993-12-26|COLLECT COD|FOB|sts. even, regular courts cajole e| +54217|966406|28926|6|42|61839.12|0.06|0.00|R|F|1994-01-29|1994-01-28|1994-02-13|DELIVER IN PERSON|RAIL|aring grouches. final, express somas use s| +54218|796215|46216|1|11|14422.98|0.10|0.03|N|O|1996-08-29|1996-07-29|1996-08-30|NONE|RAIL| regular acco| +54218|978626|28627|2|24|40909.92|0.00|0.06|N|O|1996-08-31|1996-07-01|1996-09-02|NONE|TRUCK|excuses solve special, close p| +54218|761332|36363|3|2|2786.60|0.03|0.08|N|O|1996-06-10|1996-06-07|1996-07-03|NONE|FOB|ly final packages along the quickly pendin| +54218|699560|37100|4|49|76416.97|0.07|0.07|N|O|1996-05-24|1996-07-20|1996-06-11|COLLECT COD|RAIL|-- quickly special deposits| +54219|593926|6438|1|6|12119.40|0.03|0.03|A|F|1994-08-02|1994-08-10|1994-08-22|TAKE BACK RETURN|RAIL|regular requests. carefully close| +54219|107329|19832|2|12|16035.84|0.07|0.08|R|F|1994-09-22|1994-08-16|1994-10-08|DELIVER IN PERSON|AIR|into beans haggle quickly furiously bold a| +54219|862551|37586|3|27|40864.77|0.01|0.02|R|F|1994-10-28|1994-08-09|1994-11-02|NONE|MAIL| furiously regular accounts nag.| +54219|880021|17573|4|10|10009.80|0.10|0.00|A|F|1994-10-16|1994-08-31|1994-10-28|NONE|TRUCK|uests according to the carefully busy | +54219|497768|47769|5|39|68863.86|0.00|0.06|A|F|1994-07-01|1994-09-04|1994-07-07|TAKE BACK RETURN|MAIL|eposits at the quiet, even patterns | +54219|980508|43028|6|1|1588.46|0.08|0.08|R|F|1994-07-15|1994-08-10|1994-08-10|COLLECT COD|REG AIR|lar requests. quickly even accounts int| +54219|382478|44986|7|32|49934.72|0.08|0.00|A|F|1994-07-23|1994-08-11|1994-08-05|COLLECT COD|TRUCK|y regular excuses according to the carefull| +54220|297280|34796|1|37|47258.99|0.07|0.04|N|O|1997-04-20|1997-04-24|1997-05-02|COLLECT COD|REG AIR|ggle pending, s| +54220|376637|39145|2|30|51408.60|0.04|0.05|N|O|1997-03-12|1997-04-15|1997-03-28|COLLECT COD|REG AIR|ests are blithely quickly ironi| +54220|121739|21740|3|23|40496.79|0.08|0.03|N|O|1997-05-29|1997-04-17|1997-06-05|TAKE BACK RETURN|FOB|p quickly. special requests thrash | +54220|54611|17113|4|19|29746.59|0.09|0.08|N|O|1997-03-21|1997-05-24|1997-04-14|TAKE BACK RETURN|FOB| requests. blithely unusu| +54220|839060|14093|5|5|4995.10|0.09|0.03|N|O|1997-06-26|1997-04-14|1997-07-21|NONE|FOB| wake quic| +54220|69737|32239|6|34|58028.82|0.06|0.07|N|O|1997-05-25|1997-05-28|1997-06-14|TAKE BACK RETURN|REG AIR|kages are with the theodolites.| +54221|244600|19609|1|46|71051.14|0.04|0.04|N|O|1996-10-21|1996-12-26|1996-11-20|COLLECT COD|AIR|packages integrate blithely| +54221|984796|47316|2|15|28211.25|0.03|0.06|N|O|1996-10-10|1996-11-11|1996-10-26|COLLECT COD|MAIL|ly bold packages. fluffily bol| +54221|463260|13261|3|5|6116.20|0.10|0.06|N|O|1996-11-05|1996-12-30|1996-11-28|DELIVER IN PERSON|AIR|refully special theodolites. t| +54221|10701|48202|4|16|25787.20|0.01|0.03|N|O|1996-10-20|1996-12-18|1996-11-12|NONE|AIR|theodolites. slyly final accounts try to s| +54222|755550|43096|1|14|22477.28|0.09|0.00|N|O|1995-07-21|1995-08-07|1995-08-12|NONE|MAIL|sly unusual ideas. thinly regu| +54222|514626|2157|2|37|60702.20|0.07|0.05|N|O|1995-09-06|1995-09-02|1995-09-22|DELIVER IN PERSON|RAIL|requests. iron| +54222|313224|743|3|7|8660.47|0.00|0.05|N|O|1995-10-04|1995-08-08|1995-10-14|DELIVER IN PERSON|SHIP|st unusual pa| +54222|349391|11898|4|21|30247.98|0.09|0.07|N|O|1995-09-20|1995-08-02|1995-10-06|NONE|TRUCK|gular platelets. sly packages sleep fluf| +54222|209482|9483|5|46|64007.62|0.04|0.02|N|O|1995-07-31|1995-09-21|1995-08-14|COLLECT COD|MAIL|gular, unusual requests. carefully| +54223|366041|16042|1|47|52030.41|0.08|0.04|A|F|1994-08-23|1994-10-15|1994-08-29|DELIVER IN PERSON|REG AIR|ly by the bold packages: slyly final courts| +54223|42489|29990|2|36|51533.28|0.02|0.08|A|F|1994-09-09|1994-11-03|1994-10-04|TAKE BACK RETURN|AIR|tes are against the quickly do| +54248|548606|23627|1|46|76110.68|0.10|0.07|A|F|1992-10-01|1992-11-11|1992-10-06|NONE|RAIL|ic, special pinto beans. slow dependenci| +54249|354712|29727|1|13|22967.10|0.07|0.06|A|F|1993-09-17|1993-10-02|1993-10-17|COLLECT COD|TRUCK|st. pending theodolites sleep qui| +54249|634830|47343|2|46|81180.80|0.01|0.01|A|F|1993-10-12|1993-10-22|1993-10-27|NONE|AIR|packages. slyly final accounts boost escap| +54250|551170|38704|1|34|41519.10|0.06|0.07|A|F|1992-07-19|1992-08-09|1992-08-02|COLLECT COD|REG AIR|ccording to the even accoun| +54250|503776|28797|2|46|81868.50|0.07|0.02|A|F|1992-08-21|1992-06-21|1992-08-28|DELIVER IN PERSON|TRUCK|among the fluffily regular instr| +54250|951761|1762|3|35|63445.20|0.07|0.08|A|F|1992-06-17|1992-08-07|1992-07-05|DELIVER IN PERSON|TRUCK|ly final pa| +54251|823410|23411|1|3|4000.11|0.04|0.03|A|F|1994-07-21|1994-06-13|1994-08-11|COLLECT COD|MAIL|unts integrate a| +54251|50448|37952|2|33|46148.52|0.05|0.08|R|F|1994-06-19|1994-06-23|1994-06-24|NONE|MAIL|ily final asymptotes! careful| +54251|868642|31160|3|25|40265.00|0.07|0.02|R|F|1994-05-26|1994-06-11|1994-06-01|NONE|TRUCK|r the slyly final packages. instructions| +54252|453446|3447|1|38|53177.96|0.10|0.00|A|F|1994-08-13|1994-06-15|1994-09-05|COLLECT COD|REG AIR|thely regular | +54253|928831|28832|1|30|55793.70|0.04|0.07|N|O|1998-07-11|1998-10-01|1998-08-02|TAKE BACK RETURN|AIR| quickly ironic foxe| +54253|857614|7615|2|25|39289.25|0.07|0.01|N|O|1998-10-04|1998-09-20|1998-11-03|NONE|RAIL|ven foxes integrate after t| +54253|908305|45860|3|9|11819.34|0.03|0.03|N|O|1998-08-11|1998-09-10|1998-08-15|NONE|SHIP|indle furiously bold ideas. blithely silent| +54253|876039|13591|4|7|7104.93|0.08|0.03|N|O|1998-09-05|1998-08-16|1998-10-04|NONE|FOB|g to the fl| +54253|576543|39055|5|24|38868.48|0.00|0.02|N|O|1998-07-27|1998-09-29|1998-08-14|NONE|RAIL|furiously regular forges affix s| +54253|948534|48535|6|40|63299.60|0.01|0.08|N|O|1998-08-22|1998-09-20|1998-09-16|DELIVER IN PERSON|SHIP|c dependencies use quickly whithout | +54253|996588|9108|7|26|43798.04|0.09|0.03|N|O|1998-09-22|1998-09-21|1998-10-12|DELIVER IN PERSON|RAIL| breach furiousl| +54254|644187|6700|1|39|44114.85|0.00|0.06|N|O|1997-10-28|1997-10-17|1997-11-01|COLLECT COD|RAIL| slyly final accounts cajole. | +54254|847309|9826|2|44|55275.44|0.02|0.01|N|O|1997-10-24|1997-10-20|1997-10-30|COLLECT COD|TRUCK| final deposits are. ironic accounts sho| +54254|705713|18228|3|1|1718.68|0.07|0.06|N|O|1997-12-26|1997-11-09|1998-01-23|DELIVER IN PERSON|SHIP|ly special dolphins. e| +54254|914095|39132|4|4|4436.20|0.03|0.05|N|O|1998-01-10|1997-11-23|1998-01-21|NONE|RAIL| final foxes| +54254|186539|36540|5|33|53642.49|0.09|0.01|N|O|1997-10-17|1997-11-12|1997-10-24|DELIVER IN PERSON|RAIL|packages. fluffy pinto beans above the quic| +54254|158383|20887|6|4|5765.52|0.08|0.05|N|O|1998-01-03|1997-12-06|1998-01-25|NONE|TRUCK|sits. slyly | +54255|841031|16064|1|6|5831.94|0.10|0.02|R|F|1993-07-12|1993-06-28|1993-08-09|TAKE BACK RETURN|FOB|en, express ideas haggle furiously along th| +54255|193749|18756|2|34|62653.16|0.05|0.08|R|F|1993-06-11|1993-06-23|1993-06-25|DELIVER IN PERSON|AIR|express deposits. dependencies lose| +54255|332540|45047|3|16|25160.48|0.06|0.03|A|F|1993-05-27|1993-06-13|1993-06-05|COLLECT COD|RAIL|s. final tithes boost slyly express, bol| +54255|986045|48565|4|39|44109.00|0.06|0.07|A|F|1993-08-10|1993-07-24|1993-08-11|DELIVER IN PERSON|SHIP|ow requests. furiously even pinto| +54255|457144|7145|5|33|36336.96|0.02|0.04|R|F|1993-08-30|1993-06-14|1993-09-11|COLLECT COD|RAIL| above the asymptotes. silent, pen| +54255|208194|33203|6|7|7715.26|0.04|0.08|R|F|1993-05-16|1993-07-23|1993-06-01|DELIVER IN PERSON|REG AIR|ular requests. quickly regular requests use| +54255|112548|25051|7|8|12484.32|0.06|0.03|R|F|1993-07-18|1993-07-14|1993-08-14|NONE|FOB|arefully pending pinto be| +54280|589881|39882|1|15|29562.90|0.09|0.02|A|F|1993-07-30|1993-10-02|1993-08-10|NONE|FOB| furiously ironic foxes.| +54280|123337|23338|2|7|9522.31|0.08|0.03|A|F|1993-07-18|1993-09-09|1993-07-25|DELIVER IN PERSON|TRUCK|requests are. even instructions print quic| +54281|827194|14743|1|29|32513.35|0.00|0.03|N|O|1997-11-16|1998-01-17|1997-11-22|COLLECT COD|SHIP|decoys. furious depende| +54281|647618|35155|2|32|50098.56|0.04|0.03|N|O|1998-01-31|1997-12-04|1998-02-26|DELIVER IN PERSON|FOB|s boost slyl| +54281|513547|1078|3|40|62420.80|0.01|0.06|N|O|1997-12-31|1998-01-14|1998-01-01|DELIVER IN PERSON|RAIL|sleep above the ca| +54282|569340|6874|1|30|42279.60|0.10|0.05|A|F|1993-01-21|1993-01-21|1993-01-29|NONE|REG AIR|ly carefully final requests. stealthy fo| +54283|313843|1362|1|30|55704.90|0.06|0.04|R|F|1994-03-13|1994-02-14|1994-03-21|TAKE BACK RETURN|TRUCK|riously bold dependenci| +54283|745525|20554|2|6|9422.94|0.07|0.07|A|F|1993-11-17|1994-01-29|1993-11-18|NONE|SHIP|lithely. final platelets snooz| +54283|35749|48250|3|46|77498.04|0.10|0.04|R|F|1994-02-02|1993-12-31|1994-02-24|COLLECT COD|REG AIR| dependencies haggle carefully. carefull| +54284|682463|44977|1|17|24572.31|0.05|0.00|N|O|1997-02-15|1997-01-13|1997-03-04|COLLECT COD|REG AIR|aring pinto be| +54284|149222|24227|2|20|25424.40|0.07|0.03|N|O|1997-02-03|1996-12-30|1997-02-08|TAKE BACK RETURN|REG AIR|nal accounts affix above the | +54284|973288|35808|3|3|4083.72|0.06|0.03|N|O|1997-03-01|1997-02-17|1997-03-07|COLLECT COD|FOB|sts. slyly pending | +54284|35491|47992|4|29|41368.21|0.07|0.06|N|O|1997-01-14|1997-02-08|1997-01-17|NONE|FOB| the fluffily unusu| +54285|175699|13209|1|47|83410.43|0.01|0.05|N|O|1997-02-11|1997-04-11|1997-02-16|DELIVER IN PERSON|AIR|even asymptotes detect carefully carefully | +54285|959512|47070|2|31|48715.57|0.03|0.04|N|O|1997-03-01|1997-04-09|1997-03-27|COLLECT COD|SHIP|nt requests. sp| +54285|517284|42305|3|7|9108.82|0.01|0.01|N|O|1997-05-12|1997-04-01|1997-05-20|COLLECT COD|SHIP|asymptotes boost along the slyly ironic pa| +54285|978454|3493|4|25|38310.25|0.02|0.07|N|O|1997-05-21|1997-03-14|1997-06-07|DELIVER IN PERSON|TRUCK|cajole furiously regular theodolites.| +54286|817004|17005|1|44|40522.24|0.05|0.07|R|F|1994-03-15|1994-02-24|1994-03-30|TAKE BACK RETURN|MAIL|unusual ideas. blithely f| +54286|383681|33682|2|4|7058.68|0.01|0.03|R|F|1994-03-14|1994-03-14|1994-03-15|DELIVER IN PERSON|AIR|iously regular ideas haggle packages. furio| +54286|514028|1559|3|38|39596.00|0.07|0.01|A|F|1994-01-21|1994-03-30|1994-02-08|DELIVER IN PERSON|AIR|ackages wake around the accounts.| +54286|266381|16382|4|42|56589.54|0.02|0.04|R|F|1994-02-16|1994-03-04|1994-02-17|COLLECT COD|REG AIR|requests boost car| +54287|243574|18583|1|18|27316.08|0.02|0.07|A|F|1994-02-01|1994-02-28|1994-02-02|COLLECT COD|RAIL|s use. platelets integrate special id| +54312|31785|6786|1|12|20601.36|0.05|0.04|A|F|1993-09-29|1993-10-11|1993-10-20|NONE|TRUCK|t the packages. even platele| +54312|207391|44904|2|27|35056.26|0.10|0.05|A|F|1993-11-16|1993-11-03|1993-12-04|TAKE BACK RETURN|REG AIR|of the finally final packages! perma| +54313|822505|10054|1|42|59953.32|0.04|0.01|N|O|1998-05-15|1998-06-08|1998-06-04|DELIVER IN PERSON|RAIL|ing instructions wake| +54313|838091|38092|2|10|10290.50|0.00|0.07|N|O|1998-05-11|1998-06-03|1998-05-28|DELIVER IN PERSON|REG AIR| blithely busy deposits. sly| +54313|792157|29703|3|41|51213.92|0.09|0.02|N|O|1998-04-29|1998-06-06|1998-05-03|NONE|MAIL|ly regular package| +54313|769298|31814|4|7|9570.82|0.06|0.06|N|O|1998-05-12|1998-05-13|1998-05-24|NONE|REG AIR|fter the quickly| +54313|582497|45009|5|40|63178.80|0.03|0.04|N|O|1998-06-16|1998-06-09|1998-06-19|TAKE BACK RETURN|AIR|equests nag ca| +54313|11717|24218|6|39|63519.69|0.06|0.08|N|O|1998-07-14|1998-05-12|1998-07-18|COLLECT COD|TRUCK|he carefully unusual packages. e| +54314|374526|37034|1|22|35211.22|0.05|0.04|R|F|1994-10-25|1994-10-17|1994-11-21|NONE|FOB|cial deposits play quickly: regula| +54314|657501|20015|2|44|64172.68|0.00|0.02|R|F|1994-10-30|1994-09-23|1994-11-12|DELIVER IN PERSON|AIR|tes. slyly express | +54314|615250|2787|3|4|4660.88|0.01|0.01|A|F|1994-09-15|1994-11-03|1994-09-29|DELIVER IN PERSON|RAIL| furiously. sl| +54314|505382|30403|4|12|16648.32|0.01|0.06|R|F|1994-08-30|1994-10-06|1994-09-08|NONE|AIR|y special ideas. furiously re| +54314|952242|27281|5|43|55650.60|0.00|0.05|A|F|1994-11-22|1994-10-26|1994-12-17|NONE|RAIL|deposits. silent, unusu| +54314|320784|8303|6|16|28876.32|0.09|0.04|R|F|1994-09-24|1994-10-07|1994-10-07|COLLECT COD|RAIL|e. silent pinto beans detect. pending instr| +54315|45864|8365|1|9|16288.74|0.05|0.07|N|O|1995-08-30|1995-09-16|1995-09-01|NONE|AIR|cuses. slyly even accou| +54315|820267|32784|2|15|17808.30|0.00|0.05|N|O|1995-11-03|1995-08-27|1995-11-24|NONE|REG AIR|ackages according to the quickly ironic re| +54315|221814|46823|3|30|52074.00|0.01|0.07|N|O|1995-10-20|1995-08-25|1995-11-13|NONE|MAIL|y ironic deposits haggle fl| +54316|213568|26073|1|7|10370.85|0.05|0.08|R|F|1993-09-21|1993-10-19|1993-10-13|DELIVER IN PERSON|SHIP|he blithely special requests are blithel| +54316|436339|11356|2|11|14028.41|0.04|0.07|R|F|1993-11-23|1993-12-09|1993-12-07|TAKE BACK RETURN|MAIL|es. regular notornis along the s| +54316|546716|9227|3|41|72270.29|0.09|0.00|R|F|1993-12-04|1993-11-13|1993-12-23|COLLECT COD|TRUCK|sly. regular braids along th| +54316|655761|43301|4|41|70385.93|0.02|0.02|R|F|1993-12-31|1993-10-29|1994-01-23|COLLECT COD|REG AIR| fluffily final deposits | +54316|370284|20285|5|23|31148.21|0.08|0.04|A|F|1993-12-19|1993-11-24|1994-01-01|DELIVER IN PERSON|MAIL| the furiousl| +54317|282523|7534|1|39|58714.89|0.09|0.02|N|O|1995-08-14|1995-07-28|1995-09-06|COLLECT COD|FOB|ns. furiously even escapa| +54317|347858|10365|2|40|76233.60|0.07|0.07|N|O|1995-08-26|1995-07-27|1995-09-21|COLLECT COD|RAIL|ns. furiously even requests haggle blithe| +54318|412274|12275|1|2|2372.50|0.07|0.06|A|F|1993-01-14|1993-04-01|1993-01-26|NONE|RAIL|lyly express asymptotes | +54318|82747|45249|2|20|34594.80|0.02|0.00|A|F|1993-01-22|1993-03-05|1993-02-04|NONE|AIR|hely around the close deposits. quickly| +54318|723513|23514|3|27|41484.96|0.01|0.07|A|F|1993-01-14|1993-02-24|1993-01-21|TAKE BACK RETURN|REG AIR|tions. final f| +54318|70345|7849|4|7|9207.38|0.03|0.07|R|F|1993-04-27|1993-02-11|1993-04-30|DELIVER IN PERSON|REG AIR|lar accounts. carefull| +54318|278890|41396|5|14|26164.32|0.08|0.01|R|F|1993-02-14|1993-02-20|1993-03-03|TAKE BACK RETURN|FOB|ly carefully regular sauternes| +54318|289921|14932|6|43|82169.13|0.01|0.06|A|F|1993-01-13|1993-04-02|1993-02-04|DELIVER IN PERSON|RAIL|hang even package| +54318|701516|14031|7|28|42489.44|0.10|0.02|R|F|1993-03-30|1993-02-21|1993-04-02|NONE|RAIL|cing accounts cajole slyly after the car| +54319|376821|14343|1|35|66423.35|0.09|0.03|A|F|1994-09-26|1994-10-11|1994-09-30|NONE|REG AIR|quests sleep fluffily. ir| +54319|224158|49167|2|32|34628.48|0.06|0.00|A|F|1994-09-11|1994-11-03|1994-09-13|DELIVER IN PERSON|MAIL|ages wake slyly. even asymptotes cajole| +54319|423058|35567|3|19|18639.57|0.04|0.05|R|F|1994-11-20|1994-11-06|1994-11-21|NONE|MAIL| theodolites after th| +54344|752931|2932|1|40|79356.00|0.00|0.01|N|O|1997-07-19|1997-07-07|1997-07-24|TAKE BACK RETURN|TRUCK|ly regular deposits integrate ironic dep| +54345|106672|6673|1|44|73861.48|0.06|0.06|N|O|1998-09-04|1998-10-12|1998-09-09|DELIVER IN PERSON|TRUCK|ly regular packages haggl| +54345|826126|13675|2|13|13677.04|0.06|0.08|N|O|1998-10-06|1998-08-24|1998-10-19|NONE|REG AIR|riously unusual accounts. special account| +54345|684230|34231|3|37|44925.40|0.07|0.06|N|O|1998-10-06|1998-08-29|1998-10-15|NONE|SHIP|uffy accounts according to the qui| +54345|852227|2228|4|46|54242.28|0.01|0.08|N|O|1998-11-15|1998-09-10|1998-12-09|COLLECT COD|FOB|y unusual in| +54345|369125|19126|5|42|50152.62|0.07|0.02|N|O|1998-10-10|1998-09-25|1998-10-12|TAKE BACK RETURN|TRUCK|lithely. quickly expr| +54345|867736|17737|6|10|17036.90|0.02|0.06|N|O|1998-08-24|1998-09-13|1998-08-25|COLLECT COD|FOB|ent packages after the special, | +54346|987680|25238|1|20|35352.80|0.01|0.03|N|O|1997-11-23|1997-11-10|1997-12-01|DELIVER IN PERSON|FOB|riously bold instructions haggle | +54347|811987|24504|1|19|36079.86|0.05|0.02|R|F|1994-01-31|1994-01-28|1994-02-16|NONE|SHIP| furiously. ironic patterns caj| +54348|910371|35408|1|28|38677.24|0.08|0.04|N|O|1995-09-09|1995-11-03|1995-09-22|DELIVER IN PERSON|RAIL|ly bold foxes.| +54348|591935|16958|2|47|95264.77|0.04|0.00|N|O|1995-12-11|1995-09-30|1995-12-12|COLLECT COD|FOB|final instructions. final decoys alongsid| +54348|635677|10702|3|44|70956.16|0.09|0.05|N|O|1995-09-22|1995-11-06|1995-10-09|DELIVER IN PERSON|AIR| deposits. bold pinto beans x-ra| +54348|812513|37546|4|16|22807.52|0.02|0.08|N|O|1995-09-23|1995-09-16|1995-09-30|DELIVER IN PERSON|TRUCK|e regular packages. exp| +54348|905769|30806|5|36|63889.92|0.02|0.02|N|O|1995-08-26|1995-11-12|1995-09-18|DELIVER IN PERSON|MAIL|ic foxes. carefully special deposi| +54348|245211|20220|6|44|50872.80|0.07|0.02|N|O|1995-12-13|1995-09-22|1996-01-11|TAKE BACK RETURN|RAIL|arefully unusua| +54348|247655|47656|7|42|67310.88|0.09|0.04|N|O|1995-11-23|1995-10-13|1995-12-15|NONE|MAIL|pecial accounts along the furiously | +54349|332533|7546|1|8|12524.16|0.06|0.05|N|O|1996-06-12|1996-06-23|1996-07-08|NONE|AIR|ng, ironic deposits ar| +54349|870591|8143|2|17|26546.35|0.08|0.07|N|O|1996-07-22|1996-06-09|1996-08-21|TAKE BACK RETURN|MAIL|nal deposits | +54349|11693|49194|3|20|32093.80|0.02|0.08|N|O|1996-06-19|1996-05-20|1996-06-20|DELIVER IN PERSON|RAIL|requests are fluff| +54349|518481|30992|4|24|35987.04|0.00|0.05|N|O|1996-05-13|1996-05-10|1996-05-25|NONE|MAIL|ependencies. blithe theodolites maintai| +54350|917533|17534|1|13|20156.37|0.06|0.06|A|F|1992-03-06|1992-03-03|1992-04-04|TAKE BACK RETURN|REG AIR|aggle fluffily alongside of th| +54350|968311|18312|2|38|52412.26|0.05|0.01|A|F|1992-02-05|1992-03-12|1992-02-18|COLLECT COD|REG AIR|stealthily final requests wake blithe| +54350|386732|24254|3|19|34555.68|0.04|0.00|A|F|1992-02-15|1992-03-31|1992-02-29|COLLECT COD|MAIL|ar packages play carefully. furi| +54350|800109|37658|4|20|20181.20|0.06|0.05|R|F|1992-04-20|1992-03-22|1992-05-19|TAKE BACK RETURN|TRUCK|s wake across t| +54350|419016|19017|5|29|27114.71|0.00|0.03|R|F|1992-03-14|1992-02-07|1992-03-28|COLLECT COD|FOB|unusual excuses wake blithely around th| +54351|505772|30793|1|38|67554.50|0.00|0.08|A|F|1993-09-18|1993-11-12|1993-09-19|NONE|MAIL|ithely. carefully bold packages snooze sl| +54351|507194|19705|2|47|56454.99|0.10|0.08|R|F|1993-10-25|1993-10-30|1993-11-02|NONE|MAIL|ckly about the slyly bold instructions| +54351|400630|38155|3|29|44387.69|0.05|0.05|R|F|1993-09-23|1993-10-25|1993-10-01|TAKE BACK RETURN|TRUCK| regular accounts hag| +54351|375564|25565|4|4|6558.20|0.08|0.03|R|F|1993-11-30|1993-10-27|1993-12-29|COLLECT COD|MAIL|te slyly. | +54351|87906|12909|5|40|75756.00|0.00|0.06|A|F|1993-09-08|1993-11-29|1993-10-04|COLLECT COD|REG AIR|endencies haggle sly| +54351|421660|34169|6|21|33214.44|0.08|0.04|R|F|1993-09-05|1993-10-04|1993-09-10|TAKE BACK RETURN|TRUCK|sts. furiously express | +54376|89754|27258|1|7|12206.25|0.10|0.00|A|F|1993-10-30|1993-10-10|1993-11-07|COLLECT COD|SHIP| final requests. re| +54376|480379|30380|2|10|13593.50|0.07|0.06|R|F|1993-09-28|1993-08-27|1993-10-10|NONE|SHIP|urts along the furiously| +54377|423217|10742|1|39|44467.41|0.10|0.07|R|F|1992-07-06|1992-06-18|1992-07-11|NONE|AIR|nusual deposits are quickly bold p| +54377|2331|39832|2|6|7399.98|0.02|0.00|R|F|1992-05-26|1992-05-28|1992-06-01|TAKE BACK RETURN|RAIL|oubt along t| +54377|166424|16425|3|13|19375.46|0.03|0.05|A|F|1992-05-27|1992-05-08|1992-06-24|DELIVER IN PERSON|RAIL|stealthily final excus| +54377|74664|37166|4|30|49159.80|0.03|0.04|A|F|1992-04-26|1992-06-22|1992-05-15|DELIVER IN PERSON|RAIL|ly across the | +54377|875289|12841|5|37|46776.88|0.06|0.06|A|F|1992-05-16|1992-06-24|1992-05-21|TAKE BACK RETURN|MAIL|quickly alongside of | +54378|293326|43327|1|19|25066.89|0.04|0.01|N|O|1998-01-24|1997-12-04|1998-02-20|NONE|AIR|counts. bold theodolites| +54379|935461|35462|1|48|71828.16|0.01|0.00|N|O|1997-09-08|1997-08-30|1997-10-05|COLLECT COD|MAIL|ly final requests. carefully unusual court| +54380|496599|46600|1|28|44675.96|0.01|0.01|N|O|1998-09-08|1998-07-11|1998-09-30|TAKE BACK RETURN|TRUCK| carefully unusua| +54381|754676|17192|1|36|62303.04|0.03|0.06|N|O|1996-01-31|1995-11-20|1996-02-26|NONE|FOB|ang blithely| +54381|825470|13019|2|9|12558.87|0.09|0.06|N|O|1995-10-30|1996-01-08|1995-11-16|COLLECT COD|SHIP|egular foxes alon| +54381|669414|19415|3|21|29050.98|0.06|0.00|N|O|1995-12-17|1995-11-22|1995-12-20|DELIVER IN PERSON|TRUCK|quietly about the furiously regular pac| +54381|832270|44787|4|37|44482.51|0.08|0.04|N|O|1995-12-09|1995-12-06|1996-01-02|TAKE BACK RETURN|FOB|lyly unusual deposi| +54381|949878|12397|5|49|94463.67|0.05|0.03|N|O|1996-01-19|1995-12-03|1996-01-22|NONE|MAIL|r braids h| +54381|589367|14390|6|21|30583.14|0.01|0.03|N|O|1996-01-18|1995-12-25|1996-02-06|DELIVER IN PERSON|TRUCK| theodolites use furiously-- quick req| +54382|266760|29266|1|37|63889.75|0.03|0.06|N|O|1996-06-13|1996-06-14|1996-06-30|TAKE BACK RETURN|MAIL|inal theodolites nag quickly along | +54382|432693|32694|2|5|8128.35|0.06|0.06|N|O|1996-08-01|1996-06-15|1996-08-08|COLLECT COD|MAIL|cross the deposits. special, r| +54383|845799|8316|1|45|78513.75|0.04|0.08|A|F|1992-10-22|1992-08-09|1992-11-07|NONE|MAIL|ly even ideas affix. quickly un| +54383|338236|743|2|12|15290.64|0.04|0.07|R|F|1992-08-18|1992-09-09|1992-08-30|COLLECT COD|TRUCK|ording to the ironic reques| +54408|278972|16488|1|6|11705.76|0.06|0.02|N|O|1997-06-23|1997-07-08|1997-07-08|TAKE BACK RETURN|MAIL|packages. sometimes | +54409|129210|16717|1|11|13631.31|0.05|0.02|A|F|1994-10-25|1994-12-06|1994-11-14|NONE|AIR|p carefully. ironic, express theod| +54409|630889|43402|2|43|78253.55|0.08|0.03|A|F|1994-10-18|1994-12-27|1994-10-22|DELIVER IN PERSON|RAIL|al accounts are fur| +54409|348860|36379|3|39|74445.15|0.01|0.00|R|F|1994-11-01|1994-11-09|1994-11-29|TAKE BACK RETURN|TRUCK|ial reques| +54410|455870|30889|1|28|51123.80|0.01|0.04|N|O|1996-11-25|1996-10-09|1996-12-10|NONE|MAIL|ckly regular sauternes boost carefull| +54410|796109|8625|2|42|50612.94|0.00|0.00|N|O|1996-11-03|1996-09-25|1996-12-03|NONE|REG AIR|ites sleep slyly above the final| +54410|193345|5849|3|36|51780.24|0.03|0.02|N|O|1996-10-22|1996-10-28|1996-11-10|TAKE BACK RETURN|SHIP|y quickly regular deposits. fu| +54410|544941|19962|4|10|19859.20|0.02|0.06|N|O|1996-11-18|1996-10-11|1996-12-09|NONE|REG AIR|pinto beans| +54410|813909|26426|5|26|47394.36|0.03|0.05|N|O|1996-09-04|1996-10-25|1996-09-06|DELIVER IN PERSON|REG AIR|ly final requests above | +54411|472256|47275|1|38|46672.74|0.04|0.02|N|O|1996-03-08|1996-03-14|1996-03-27|NONE|REG AIR| regular asymptotes| +54411|199477|11981|2|35|55176.45|0.00|0.06|N|O|1996-02-19|1996-03-05|1996-03-18|TAKE BACK RETURN|TRUCK| regular d| +54411|597899|22922|3|18|35943.66|0.00|0.00|N|O|1996-02-06|1996-03-20|1996-03-02|DELIVER IN PERSON|RAIL|riously slyly| +54411|880119|42637|4|50|54953.50|0.04|0.05|N|O|1995-12-30|1996-02-02|1996-01-24|DELIVER IN PERSON|SHIP|heodolites. asymptotes are flu| +54411|148835|36342|5|23|43328.09|0.01|0.07|N|O|1996-02-18|1996-03-12|1996-03-12|DELIVER IN PERSON|SHIP|ously around the furio| +54411|455370|17880|6|2|2650.70|0.04|0.03|N|O|1996-03-24|1996-02-04|1996-03-28|DELIVER IN PERSON|FOB| ironic deposits above the carefully u| +54411|392459|4967|7|24|37234.56|0.06|0.05|N|O|1996-02-15|1996-02-24|1996-03-12|NONE|TRUCK|e carefully| +54412|46411|33912|1|29|39364.89|0.06|0.05|N|O|1995-09-25|1995-07-07|1995-10-23|NONE|TRUCK|ites sleep quickly over the unusual deposi| +54412|18575|43576|2|31|46300.67|0.05|0.08|N|O|1995-08-17|1995-07-22|1995-09-08|COLLECT COD|SHIP|lithely final| +54413|609871|47408|1|6|10685.04|0.09|0.02|N|O|1996-12-23|1996-12-26|1997-01-22|TAKE BACK RETURN|MAIL|uctions are furiously across the | +54413|101481|38988|2|46|68194.08|0.07|0.01|N|O|1996-12-26|1997-01-15|1997-01-06|NONE|TRUCK| alongside of the ironic instru| +54414|780309|17855|1|46|63906.42|0.03|0.02|A|F|1992-08-28|1992-08-19|1992-09-23|DELIVER IN PERSON|REG AIR|instructions above the bol| +54415|425596|613|1|44|66949.08|0.07|0.03|N|O|1997-11-20|1997-11-18|1997-12-13|DELIVER IN PERSON|RAIL|lar deposits. sheaves cajole furiou| +54415|991266|3786|2|8|10857.76|0.05|0.00|N|O|1997-09-30|1997-10-22|1997-10-03|NONE|FOB| requests must integrate. carefully iro| +54440|371454|21455|1|34|51864.96|0.09|0.00|N|O|1996-09-14|1996-08-08|1996-10-08|COLLECT COD|MAIL| beans are slyly: platelets haggle carefull| +54440|20267|32768|2|37|43928.62|0.01|0.04|N|O|1996-08-26|1996-08-12|1996-08-31|TAKE BACK RETURN|SHIP| regular requests. pending deposits haggle | +54440|625137|162|3|1|1062.10|0.00|0.01|N|O|1996-09-06|1996-07-09|1996-09-16|COLLECT COD|SHIP|. quickly ironi| +54440|663522|1062|4|48|71303.52|0.03|0.03|N|O|1996-09-18|1996-06-21|1996-10-12|COLLECT COD|AIR|mptotes according to the fur| +54440|803380|15897|5|10|12833.40|0.03|0.04|N|O|1996-05-30|1996-08-06|1996-06-12|NONE|AIR|ts sleep quickly slyly bra| +54441|583639|46151|1|29|49955.69|0.00|0.06|N|O|1995-07-19|1995-05-20|1995-08-18|DELIVER IN PERSON|REG AIR|even, bold foxes alongside of the slyly| +54441|211483|23988|2|38|52989.86|0.03|0.06|N|O|1995-07-14|1995-06-30|1995-07-20|COLLECT COD|AIR|l, bold deposits. daringly u| +54441|392675|42676|3|44|77777.04|0.05|0.04|N|O|1995-06-23|1995-06-07|1995-07-15|NONE|MAIL|ests sleep blit| +54441|685015|10042|4|46|45999.08|0.08|0.04|R|F|1995-05-25|1995-05-23|1995-06-08|NONE|RAIL| furiously sp| +54441|40888|15889|5|29|53037.52|0.01|0.03|A|F|1995-05-01|1995-05-18|1995-05-25|COLLECT COD|MAIL| excuses maintain fu| +54441|193579|6083|6|7|11707.99|0.06|0.07|N|O|1995-07-21|1995-05-31|1995-08-11|NONE|TRUCK| foxes? quickly | +54441|465670|15671|7|4|6542.60|0.00|0.08|N|O|1995-07-04|1995-07-03|1995-07-19|COLLECT COD|REG AIR|ges. carefully special theodoli| +54442|510408|10409|1|28|39714.64|0.03|0.06|R|F|1993-09-26|1993-09-20|1993-09-28|TAKE BACK RETURN|AIR|o beans x-ray fluff| +54442|427176|14701|2|5|5515.75|0.00|0.00|R|F|1993-09-28|1993-09-05|1993-10-01|NONE|FOB| even requests x-ray ironic, daring pac| +54442|537020|37021|3|42|44394.00|0.07|0.03|R|F|1993-10-30|1993-10-05|1993-11-14|DELIVER IN PERSON|REG AIR|he regular instructions affix | +54442|678579|16119|4|14|21805.56|0.05|0.06|R|F|1993-08-19|1993-09-04|1993-09-08|COLLECT COD|MAIL|as about the blithely bold pinto beans are | +54442|869296|6848|5|22|27835.50|0.04|0.07|R|F|1993-08-31|1993-10-05|1993-09-03|DELIVER IN PERSON|RAIL|ully silent theodolites. blithe| +54443|193488|5992|1|26|41118.48|0.05|0.08|A|F|1995-03-14|1995-02-26|1995-04-07|DELIVER IN PERSON|MAIL|ronic grouches sleep furiously slyl| +54443|947292|34847|2|23|30802.75|0.07|0.06|R|F|1995-03-05|1995-03-08|1995-03-19|DELIVER IN PERSON|SHIP|its. blithely pending theodolit| +54443|127206|2211|3|16|19731.20|0.02|0.08|R|F|1995-02-01|1995-02-02|1995-03-01|TAKE BACK RETURN|SHIP|y alongside of t| +54444|225114|25115|1|39|40524.90|0.06|0.06|N|O|1995-07-07|1995-08-03|1995-07-08|NONE|AIR|slyly. final packa| +54444|478150|15678|2|15|16921.95|0.04|0.03|N|O|1995-06-28|1995-09-07|1995-07-27|TAKE BACK RETURN|MAIL|e pending deposits: special asymptot| +54444|256385|31396|3|45|60361.65|0.10|0.00|N|O|1995-08-16|1995-08-13|1995-09-06|NONE|REG AIR|eposits. blithely | +54444|47936|10437|4|47|88544.71|0.04|0.06|N|O|1995-07-18|1995-08-06|1995-07-27|COLLECT COD|SHIP|counts promise carefully| +54445|306364|31377|1|22|30147.70|0.09|0.00|N|O|1996-06-13|1996-07-09|1996-06-28|NONE|MAIL|ons. unusua| +54445|50584|38088|2|32|49106.56|0.05|0.08|N|O|1996-08-22|1996-07-14|1996-09-01|NONE|AIR| regular asymptotes sleep ironi| +54445|150005|25012|3|28|29540.00|0.05|0.00|N|O|1996-05-21|1996-07-09|1996-06-14|TAKE BACK RETURN|MAIL|ans. express, r| +54445|128444|3449|4|27|39755.88|0.08|0.02|N|O|1996-06-16|1996-07-28|1996-06-17|NONE|TRUCK|deas cajole| +54446|399383|36905|1|30|44471.10|0.03|0.04|N|O|1996-07-31|1996-09-30|1996-08-27|TAKE BACK RETURN|AIR|ly brave fo| +54446|416977|4502|2|23|43560.85|0.04|0.06|N|O|1996-11-07|1996-09-10|1996-11-26|DELIVER IN PERSON|RAIL|s use. unusual, unusual packa| +54446|125837|25838|3|34|63336.22|0.08|0.00|N|O|1996-08-07|1996-10-12|1996-08-17|NONE|RAIL|beans after the doggedly | +54446|927114|27115|4|16|18257.12|0.01|0.00|N|O|1996-11-20|1996-10-03|1996-11-27|COLLECT COD|FOB|slyly silent theodolites. bra| +54447|834327|9360|1|8|10090.24|0.09|0.06|N|O|1998-07-16|1998-06-01|1998-07-24|TAKE BACK RETURN|FOB|accounts are| +54447|524116|49137|2|28|31922.52|0.05|0.01|N|O|1998-06-20|1998-06-20|1998-06-22|DELIVER IN PERSON|AIR|ld ideas. even asymptotes sublate f| +54447|814536|2085|3|3|4351.47|0.04|0.06|N|O|1998-05-27|1998-07-27|1998-06-23|TAKE BACK RETURN|AIR| haggle fu| +54447|893295|18330|4|22|28341.50|0.00|0.01|N|O|1998-08-24|1998-07-09|1998-08-27|TAKE BACK RETURN|MAIL|silent, final packages bo| +54447|608553|46090|5|19|27768.88|0.10|0.07|N|O|1998-07-08|1998-06-26|1998-07-10|NONE|SHIP|osits. slyly ironic | +54472|955897|18417|1|28|54679.80|0.00|0.03|R|F|1993-01-02|1993-03-15|1993-01-12|TAKE BACK RETURN|SHIP|unts. slyly special platelets nag| +54472|756405|43951|2|13|18997.81|0.04|0.04|R|F|1993-03-08|1993-03-12|1993-03-14|TAKE BACK RETURN|FOB|ss accounts nag bl| +54473|330792|43299|1|40|72911.20|0.10|0.02|A|F|1993-05-14|1993-06-01|1993-05-20|TAKE BACK RETURN|FOB|omise quickly idly even accounts. slyly fi| +54473|609502|34527|2|13|18349.11|0.03|0.05|R|F|1993-05-07|1993-07-11|1993-05-11|DELIVER IN PERSON|SHIP|ously carefully bo| +54473|897064|47065|3|37|39257.74|0.08|0.04|A|F|1993-07-21|1993-07-09|1993-07-25|NONE|MAIL| players nag carefully alongside of the | +54473|940754|15791|4|35|62814.85|0.03|0.04|A|F|1993-06-22|1993-06-20|1993-07-13|TAKE BACK RETURN|TRUCK|express instructions.| +54474|353233|28248|1|9|11575.98|0.08|0.06|R|F|1993-07-06|1993-09-06|1993-07-13|TAKE BACK RETURN|TRUCK| pending foxes nag | +54474|784448|34449|2|45|68958.45|0.01|0.06|R|F|1993-07-04|1993-07-27|1993-07-11|DELIVER IN PERSON|TRUCK|arefully even platelets. spe| +54474|211926|36935|3|17|31244.47|0.09|0.03|R|F|1993-08-27|1993-08-24|1993-09-18|COLLECT COD|TRUCK| ironic accou| +54474|825237|12786|4|8|9297.52|0.08|0.07|R|F|1993-09-16|1993-09-04|1993-09-29|NONE|TRUCK|g to the even requ| +54474|754735|4736|5|1|1789.70|0.00|0.04|A|F|1993-10-18|1993-09-13|1993-11-05|NONE|FOB|nal decoys. blithely | +54474|814481|2030|6|41|57213.04|0.00|0.02|A|F|1993-08-15|1993-09-19|1993-09-06|COLLECT COD|FOB|lly. fluffily re| +54475|921230|46267|1|19|23772.61|0.02|0.04|N|O|1995-12-17|1995-10-18|1995-12-26|TAKE BACK RETURN|SHIP|rly express | +54475|108399|8400|2|6|8444.34|0.08|0.06|N|O|1995-11-18|1995-11-20|1995-12-05|COLLECT COD|MAIL|e. blithely silent deposit| +54475|852392|14910|3|10|13443.50|0.00|0.01|N|O|1995-11-17|1995-10-07|1995-11-22|COLLECT COD|RAIL|oost blithely. re| +54475|139064|14069|4|3|3309.18|0.06|0.01|N|O|1995-10-26|1995-11-22|1995-11-18|TAKE BACK RETURN|FOB|sts use regular, r| +54475|247867|10372|5|13|23593.05|0.08|0.06|N|O|1995-10-16|1995-10-26|1995-11-04|TAKE BACK RETURN|FOB| above the blithely iro| +54476|43198|30699|1|35|39941.65|0.04|0.02|R|F|1993-02-01|1993-03-05|1993-02-07|TAKE BACK RETURN|RAIL|fully along the always stealthy foxes.| +54476|25315|25316|2|40|49612.40|0.00|0.08|R|F|1993-05-08|1993-03-27|1993-05-27|TAKE BACK RETURN|RAIL|ages. slyly final foxes boost. regularly | +54476|458362|45890|3|16|21125.44|0.05|0.08|A|F|1993-03-04|1993-04-13|1993-03-13|NONE|AIR|lly regular accounts. final idea| +54476|679699|42213|4|6|10071.96|0.00|0.05|R|F|1993-04-29|1993-03-13|1993-05-04|NONE|SHIP| requests haggle silent requests. sly| +54476|688834|38835|5|34|61975.20|0.00|0.08|A|F|1993-03-31|1993-03-15|1993-04-07|DELIVER IN PERSON|RAIL|counts nag above the carefully final asymp| +54476|231595|19108|6|49|74802.42|0.02|0.04|A|F|1993-01-25|1993-03-06|1993-02-16|TAKE BACK RETURN|AIR|inal platelets. requests boost fluffily p| +54476|401261|13770|7|13|15109.12|0.00|0.04|A|F|1993-02-15|1993-03-22|1993-03-10|NONE|RAIL|ches use slyly. furiously sp| +54477|977516|40036|1|2|3186.94|0.02|0.07|N|O|1997-07-30|1997-08-19|1997-08-03|NONE|TRUCK|gle carefully. acc| +54478|592712|42713|1|20|36093.80|0.07|0.00|A|F|1993-10-02|1993-08-28|1993-10-21|DELIVER IN PERSON|REG AIR|longside of the carefully final instru| +54478|707748|45291|2|40|70228.40|0.05|0.07|R|F|1993-09-29|1993-09-13|1993-10-18|DELIVER IN PERSON|FOB|hely bold a| +54478|118537|18538|3|5|7777.65|0.09|0.05|R|F|1993-07-17|1993-09-02|1993-08-03|COLLECT COD|FOB|lly unusual asymptotes impress f| +54479|611269|36294|1|14|16523.22|0.04|0.06|N|O|1996-09-14|1996-09-13|1996-10-06|NONE|REG AIR| express dependencies inte| +54479|593690|31224|2|3|5351.01|0.09|0.06|N|O|1996-09-06|1996-09-30|1996-10-01|COLLECT COD|SHIP|unusual deposits| +54479|133294|8299|3|36|47782.44|0.04|0.05|N|O|1996-12-01|1996-10-20|1996-12-21|TAKE BACK RETURN|MAIL|ipliers us| +54479|262176|37187|4|36|40973.76|0.09|0.05|N|O|1996-10-04|1996-11-05|1996-10-06|COLLECT COD|AIR| haggle quickly thin ideas. ironic reque| +54479|387543|51|5|9|14674.77|0.02|0.00|N|O|1996-09-18|1996-09-09|1996-10-03|COLLECT COD|AIR|. quickly even deposits are slyly acros| +54479|427031|2048|6|31|29698.31|0.07|0.03|N|O|1996-10-13|1996-10-27|1996-11-06|DELIVER IN PERSON|RAIL|r platelets. ideas us| +54479|96531|34035|7|35|53463.55|0.06|0.01|N|O|1996-08-13|1996-11-04|1996-08-26|NONE|SHIP|ar instructions are ca| +54504|381640|44148|1|4|6886.52|0.06|0.00|A|F|1992-11-20|1992-10-26|1992-11-25|DELIVER IN PERSON|FOB| slyly pending multipliers. carefully even | +54504|217282|29787|2|2|2398.54|0.04|0.00|R|F|1992-11-17|1992-10-24|1992-12-09|NONE|MAIL|wake slyly after the blithely regular pa| +54504|845029|32578|3|50|48699.00|0.04|0.02|A|F|1992-11-17|1992-10-15|1992-11-29|TAKE BACK RETURN|SHIP|ch quickly blithely final ideas. furiou| +54504|389265|14280|4|32|43336.00|0.07|0.07|A|F|1992-09-07|1992-10-09|1992-09-25|TAKE BACK RETURN|FOB|eposits use quickly furiously furious pack| +54504|369375|19376|5|47|67884.92|0.09|0.01|A|F|1992-11-05|1992-12-02|1992-11-26|NONE|TRUCK|foxes are. slyly special pinto beans wake| +54504|71662|9166|6|46|75148.36|0.10|0.07|A|F|1992-10-28|1992-11-26|1992-10-31|TAKE BACK RETURN|MAIL| after the carefully ironic excuses. furiou| +54505|630892|43405|1|17|30988.62|0.03|0.04|R|F|1994-07-10|1994-04-25|1994-07-15|COLLECT COD|TRUCK|y pending instructions: furiously | +54506|166349|3859|1|44|62274.96|0.02|0.04|N|O|1998-06-29|1998-05-30|1998-07-29|COLLECT COD|SHIP|pendencies. slyly even packa| +54506|814869|14870|2|3|5351.46|0.01|0.03|N|O|1998-04-16|1998-05-22|1998-05-16|TAKE BACK RETURN|RAIL|ckages. furiously final excuses boost| +54506|500607|608|3|22|35366.76|0.05|0.06|N|O|1998-04-11|1998-04-24|1998-04-18|TAKE BACK RETURN|TRUCK|blithely final packag| +54507|130878|30879|1|39|74445.93|0.03|0.02|R|F|1993-10-20|1993-11-14|1993-11-02|COLLECT COD|FOB|ly regular ideas. unusual, | +54507|664960|14961|2|37|71222.41|0.04|0.05|R|F|1993-10-07|1993-11-04|1993-10-25|COLLECT COD|REG AIR|slyly pendin| +54507|969064|44103|3|38|43054.76|0.08|0.05|R|F|1994-01-08|1993-11-04|1994-01-20|TAKE BACK RETURN|FOB|ly carefully ironic id| +54508|365239|2761|1|26|33909.72|0.03|0.08|N|O|1996-10-07|1996-11-03|1996-10-20|NONE|SHIP|final requ| +54508|569661|32173|2|40|69225.60|0.03|0.02|N|O|1996-11-08|1996-09-22|1996-11-10|TAKE BACK RETURN|TRUCK|carefully dolphins. unusual, perman| +54508|277645|40151|3|6|9735.78|0.04|0.02|N|O|1996-09-19|1996-09-07|1996-10-09|DELIVER IN PERSON|AIR|s cajole blithely b| +54509|841310|3827|1|4|5005.08|0.08|0.04|N|O|1997-05-27|1997-04-09|1997-06-14|COLLECT COD|REG AIR|g to the furiously express requests| +54509|883130|33131|2|6|6678.54|0.06|0.03|N|O|1997-03-29|1997-05-27|1997-04-09|DELIVER IN PERSON|FOB|tes. enticing accounts| +54509|749826|24855|3|47|88162.13|0.03|0.05|N|O|1997-03-21|1997-04-24|1997-03-30|COLLECT COD|RAIL|uickly slyly bold deposits. furious| +54509|316182|41195|4|28|33548.76|0.03|0.01|N|O|1997-07-02|1997-05-24|1997-07-18|DELIVER IN PERSON|REG AIR|uses. epitaphs s| +54509|67239|4743|5|48|57899.04|0.09|0.03|N|O|1997-05-25|1997-06-04|1997-06-15|DELIVER IN PERSON|SHIP|o beans. pinto beans poach along th| +54510|641891|41892|1|37|67815.82|0.06|0.03|N|O|1998-10-21|1998-10-21|1998-11-05|DELIVER IN PERSON|AIR| accounts among the furiously pendi| +54510|247796|47797|2|1|1743.78|0.03|0.07|N|O|1998-10-01|1998-09-05|1998-10-31|DELIVER IN PERSON|TRUCK|pecial packages. furiously iro| +54510|702271|39814|3|46|58569.04|0.02|0.01|N|O|1998-11-03|1998-10-13|1998-11-24|DELIVER IN PERSON|RAIL|e even ideas are sometimes about the | +54510|65925|3429|4|41|77527.72|0.01|0.08|N|O|1998-10-01|1998-09-28|1998-10-25|NONE|MAIL|sh at the excuses. unusual deposit| +54510|991595|29153|5|18|30357.90|0.07|0.08|N|O|1998-10-04|1998-10-21|1998-10-16|TAKE BACK RETURN|RAIL| ironic platelets lose fluf| +54510|733276|8305|6|37|48441.88|0.04|0.04|N|O|1998-10-28|1998-09-22|1998-11-03|COLLECT COD|MAIL| thrash quickly alongsi| +54510|164851|27355|7|3|5747.55|0.05|0.06|N|O|1998-10-18|1998-09-23|1998-11-10|DELIVER IN PERSON|RAIL|slyly silent platelet| +54511|640664|40665|1|12|19255.56|0.07|0.02|N|O|1998-11-11|1998-09-18|1998-12-11|DELIVER IN PERSON|FOB|egular packages| +54511|629719|17256|2|31|51109.08|0.04|0.07|N|O|1998-08-27|1998-10-07|1998-09-20|COLLECT COD|AIR|the blithely ironic requests sleep sly| +54511|686289|48803|3|42|53560.50|0.04|0.08|N|O|1998-10-19|1998-08-29|1998-11-09|COLLECT COD|FOB|. carefully final pearls haggle carefu| +54511|447737|10246|4|18|30324.78|0.05|0.04|N|O|1998-08-25|1998-09-23|1998-09-22|NONE|AIR|. slyly even sentiments cajole | +54511|114001|26504|5|6|6090.00|0.06|0.05|N|O|1998-11-13|1998-10-09|1998-11-20|TAKE BACK RETURN|RAIL| sleep; sl| +54511|10650|10651|6|28|43698.20|0.02|0.00|N|O|1998-10-17|1998-09-10|1998-10-30|TAKE BACK RETURN|RAIL|s detect slyly pinto beans. carefu| +54536|563058|25570|1|38|42599.14|0.04|0.08|A|F|1993-10-04|1993-08-26|1993-11-03|COLLECT COD|REG AIR|y sly packages use among the | +54536|301607|14114|2|32|51474.88|0.04|0.04|A|F|1993-07-27|1993-07-13|1993-08-16|DELIVER IN PERSON|AIR|s after th| +54537|515916|3447|1|46|88866.94|0.09|0.00|N|O|1997-10-16|1997-10-21|1997-11-02|COLLECT COD|AIR|lithely slyly even platelets. b| +54537|992165|29723|2|18|22628.16|0.05|0.06|N|O|1997-08-14|1997-09-27|1997-09-10|TAKE BACK RETURN|SHIP| accounts? slyly pending r| +54538|17823|5324|1|5|8704.10|0.00|0.04|A|F|1992-08-26|1992-08-03|1992-09-03|DELIVER IN PERSON|FOB|uses sleep quickly ab| +54538|548132|10643|2|22|25962.42|0.00|0.05|A|F|1992-07-15|1992-07-08|1992-08-02|COLLECT COD|TRUCK|s use slyly special ideas. slyly silent p| +54538|452479|40007|3|28|40080.60|0.01|0.01|R|F|1992-06-18|1992-08-23|1992-06-28|NONE|RAIL|stealthily along the bold theodolites. ir| +54538|801232|26265|4|11|12465.09|0.00|0.01|A|F|1992-08-19|1992-08-04|1992-09-04|TAKE BACK RETURN|AIR|the furiously| +54538|300367|368|5|26|35551.10|0.08|0.03|R|F|1992-08-10|1992-07-22|1992-08-16|TAKE BACK RETURN|AIR|ckages against the | +54538|256903|44419|6|36|66956.04|0.01|0.06|A|F|1992-06-21|1992-08-17|1992-07-12|NONE|TRUCK|fluffily regular platelets will have t| +54539|708542|33571|1|9|13954.59|0.08|0.04|N|O|1995-09-23|1995-08-29|1995-10-06|DELIVER IN PERSON|MAIL|s courts about the packa| +54539|450468|25487|2|6|8510.64|0.01|0.08|N|O|1995-09-04|1995-08-06|1995-09-05|COLLECT COD|MAIL| the carefully unusual saut| +54539|6422|18923|3|45|59778.90|0.00|0.07|N|O|1995-08-08|1995-09-22|1995-09-03|DELIVER IN PERSON|AIR| the idly regula| +54539|923519|48556|4|1|1542.47|0.00|0.05|N|O|1995-09-25|1995-08-24|1995-10-16|COLLECT COD|RAIL|ons are furi| +54539|583292|45804|5|50|68763.50|0.08|0.07|N|O|1995-09-13|1995-08-05|1995-10-09|DELIVER IN PERSON|REG AIR|ckages. carefully special ideas na| +54539|379633|17155|6|35|59941.70|0.08|0.00|N|O|1995-10-13|1995-09-11|1995-10-18|TAKE BACK RETURN|AIR|sly stealthy ideas. furiously ironic accoun| +54540|356760|31775|1|6|10900.50|0.03|0.07|A|F|1992-10-29|1992-10-05|1992-11-21|TAKE BACK RETURN|TRUCK|lithely foxes. fluffily even theodol| +54540|60485|47989|2|42|60710.16|0.10|0.08|A|F|1992-09-26|1992-08-31|1992-10-05|DELIVER IN PERSON|SHIP|ckages engage. unusual foxes use darin| +54540|555552|18064|3|29|46618.37|0.10|0.00|R|F|1992-11-28|1992-10-07|1992-12-06|NONE|SHIP| regular pains cajole blithe| +54540|152141|14645|4|21|25055.94|0.01|0.07|A|F|1992-09-18|1992-10-14|1992-09-22|TAKE BACK RETURN|TRUCK| the final, pending depo| +54540|26458|38959|5|4|5537.80|0.06|0.02|R|F|1992-10-06|1992-09-02|1992-10-19|TAKE BACK RETURN|FOB|thely final dep| +54540|667943|30457|6|45|85990.95|0.08|0.08|R|F|1992-10-16|1992-09-25|1992-11-08|DELIVER IN PERSON|SHIP|uests. care| +54540|103025|28030|7|3|3084.06|0.02|0.03|R|F|1992-09-12|1992-09-01|1992-09-28|DELIVER IN PERSON|SHIP|ly. thin requ| +54541|528397|3418|1|21|29932.77|0.02|0.02|A|F|1992-04-07|1992-04-09|1992-04-26|TAKE BACK RETURN|AIR|refully ironic Tiresias| +54542|301685|26698|1|18|30360.06|0.08|0.00|N|O|1997-04-17|1997-04-21|1997-05-03|COLLECT COD|MAIL|r accounts. q| +54543|572144|47167|1|32|38915.84|0.10|0.04|N|O|1998-03-14|1998-01-14|1998-03-27|COLLECT COD|SHIP|ajole fluffily| +54543|13027|528|2|36|33840.72|0.09|0.04|N|O|1997-12-01|1998-01-19|1997-12-22|COLLECT COD|SHIP| beans wake atop the c| +54568|920321|45358|1|37|49627.36|0.04|0.08|N|O|1996-02-22|1996-03-08|1996-03-20|DELIVER IN PERSON|MAIL|sly even deposits cajole sl| +54568|828610|3643|2|3|4615.71|0.07|0.08|N|O|1996-02-23|1996-02-07|1996-03-01|TAKE BACK RETURN|MAIL|quests wake blithely slyly | +54568|446324|21341|3|24|30487.20|0.05|0.08|N|O|1996-02-09|1996-01-23|1996-03-06|COLLECT COD|RAIL|refully unusual foxes amo| +54568|355093|42615|4|27|30998.16|0.01|0.02|N|O|1995-12-19|1996-03-10|1995-12-29|NONE|SHIP|ly across the furiously regular requ| +54568|38756|13757|5|26|44063.50|0.02|0.00|N|O|1995-12-17|1996-02-02|1995-12-18|DELIVER IN PERSON|RAIL|ickly quickly regular accounts. unusual | +54569|627866|27867|1|46|82516.18|0.01|0.07|R|F|1992-11-16|1992-12-10|1992-12-13|NONE|MAIL|usly ironic accou| +54569|531931|31932|2|40|78516.40|0.01|0.07|A|F|1992-11-25|1992-12-20|1992-12-19|TAKE BACK RETURN|TRUCK|lly blithely final accounts. blit| +54569|158316|20820|3|28|38480.68|0.06|0.03|A|F|1992-12-05|1993-01-10|1992-12-09|DELIVER IN PERSON|RAIL|beans. final | +54569|808387|8388|4|8|10362.72|0.05|0.04|A|F|1993-01-17|1992-12-18|1993-02-03|DELIVER IN PERSON|RAIL|arefully bold packages haggle fluffil| +54570|221244|33749|1|29|33791.67|0.02|0.03|N|O|1998-05-27|1998-06-20|1998-06-20|COLLECT COD|REG AIR|ets haggle | +54570|432131|19656|2|33|35082.63|0.03|0.05|N|O|1998-07-04|1998-05-17|1998-07-21|DELIVER IN PERSON|SHIP|ic requests about the carefully regular id| +54570|809988|9989|3|32|60734.08|0.04|0.08|N|O|1998-04-20|1998-06-20|1998-04-25|DELIVER IN PERSON|RAIL| express requests. blithely exp| +54570|452850|15360|4|16|28845.28|0.08|0.07|N|O|1998-06-14|1998-06-19|1998-06-23|COLLECT COD|RAIL|rets wake blithely. | +54570|33323|8324|5|29|36433.28|0.04|0.07|N|O|1998-06-05|1998-06-05|1998-06-07|COLLECT COD|MAIL|final accounts. asym| +54570|51839|26842|6|6|10744.98|0.06|0.07|N|O|1998-08-06|1998-05-16|1998-08-24|DELIVER IN PERSON|MAIL| furiously permanen| +54571|102938|27943|1|26|50464.18|0.09|0.05|A|F|1994-03-30|1994-05-21|1994-04-07|TAKE BACK RETURN|REG AIR|regular, silent ideas are c| +54571|63089|38092|2|10|10520.80|0.09|0.02|R|F|1994-03-28|1994-04-12|1994-04-20|TAKE BACK RETURN|SHIP|rding to the ca| +54571|336786|49293|3|9|16404.93|0.03|0.04|R|F|1994-05-25|1994-04-06|1994-06-11|TAKE BACK RETURN|TRUCK|ajole. even, bold ideas aff| +54572|886982|36983|1|30|59068.20|0.08|0.01|A|F|1992-01-17|1992-04-10|1992-01-25|COLLECT COD|SHIP|ies haggle quickl| +54572|497340|34868|2|12|16047.84|0.05|0.06|R|F|1992-02-08|1992-03-29|1992-02-23|NONE|REG AIR|ress instructions unwin| +54572|779802|17348|3|47|88443.19|0.03|0.00|R|F|1992-02-05|1992-04-02|1992-02-23|TAKE BACK RETURN|TRUCK|al packages e| +54572|119732|19733|4|47|82331.31|0.04|0.05|R|F|1992-04-10|1992-03-10|1992-05-06|TAKE BACK RETURN|SHIP| accounts. blithely final deposits | +54573|122516|10023|1|36|55386.36|0.00|0.08|N|O|1995-07-27|1995-09-07|1995-08-13|NONE|AIR|slyly even | +54573|110599|35604|2|36|57945.24|0.09|0.01|N|O|1995-10-08|1995-09-24|1995-10-29|DELIVER IN PERSON|TRUCK|he even deposits haggle stealthily re| +54573|834929|34930|3|33|61508.04|0.02|0.03|N|O|1995-10-27|1995-10-10|1995-11-18|TAKE BACK RETURN|RAIL|nic depende| +54573|646249|33786|4|21|25099.41|0.09|0.07|N|O|1995-11-11|1995-10-08|1995-11-12|TAKE BACK RETURN|TRUCK|sits. slyly regu| +54574|527253|27254|1|21|26884.83|0.00|0.06|N|O|1997-12-29|1998-01-20|1998-01-14|NONE|AIR|iously. special requests wake | +54574|525704|38215|2|21|36323.28|0.02|0.01|N|O|1997-11-06|1998-01-04|1997-11-24|COLLECT COD|MAIL| requests sleep decoys. | +54574|498698|11208|3|28|47506.76|0.04|0.07|N|O|1998-02-07|1998-01-10|1998-02-21|COLLECT COD|FOB|al, even dinos ca| +54574|612725|12726|4|31|50768.39|0.03|0.02|N|O|1997-11-17|1998-01-24|1997-11-19|NONE|REG AIR|ithely ironic pinto beans mold above t| +54574|66684|16685|5|14|23109.52|0.04|0.06|N|O|1997-11-09|1997-12-18|1997-11-16|DELIVER IN PERSON|RAIL| affix according to the special theodolite| +54574|744515|44516|6|2|3118.96|0.00|0.07|N|O|1998-01-18|1997-12-08|1998-02-04|COLLECT COD|TRUCK|the theodolites. pending fo| +54575|680867|30868|1|24|44347.92|0.06|0.07|N|O|1996-04-07|1996-03-08|1996-05-02|NONE|REG AIR|yly even deposits. fin| +54575|316281|28788|2|45|58377.15|0.04|0.01|N|O|1995-12-16|1996-02-06|1995-12-21|DELIVER IN PERSON|RAIL|counts affix quickly regular instruc| +54600|297669|22680|1|34|56666.10|0.06|0.07|N|O|1998-08-04|1998-07-29|1998-08-31|DELIVER IN PERSON|TRUCK|ckages cajole never slyly spe| +54600|911788|49343|2|12|21596.88|0.06|0.03|N|O|1998-06-27|1998-07-03|1998-06-30|TAKE BACK RETURN|REG AIR|iously even dependencies. ca| +54600|410981|10982|3|3|5675.88|0.03|0.06|N|O|1998-07-29|1998-06-14|1998-08-07|TAKE BACK RETURN|TRUCK|ackages sublate according to the re| +54600|343934|31453|4|18|35602.56|0.05|0.06|N|O|1998-06-24|1998-07-17|1998-07-05|NONE|FOB|ly final accounts. even, | +54601|298898|36414|1|21|39834.48|0.01|0.00|A|F|1994-07-12|1994-06-09|1994-08-04|COLLECT COD|RAIL|regular dependenc| +54602|55566|43070|1|6|9129.36|0.04|0.02|N|O|1998-02-27|1997-12-27|1998-03-08|DELIVER IN PERSON|MAIL|p silent requests-- ironic, pending r| +54602|888736|13771|2|43|74161.67|0.03|0.07|N|O|1998-01-25|1998-01-06|1998-02-12|NONE|AIR|nstructions. unusual, express depos| +54602|979562|17120|3|24|39396.48|0.03|0.03|N|O|1998-03-20|1998-02-13|1998-04-10|DELIVER IN PERSON|MAIL|beans are brav| +54603|251975|14481|1|31|59735.76|0.04|0.03|R|F|1992-09-25|1992-11-17|1992-10-08|TAKE BACK RETURN|AIR|es. ironic requests cajole according| +54603|932446|7483|2|38|56179.20|0.05|0.02|A|F|1992-12-05|1992-11-03|1992-12-13|DELIVER IN PERSON|REG AIR|al dependencies haggle! multipliers| +54603|617037|4574|3|36|34344.00|0.05|0.02|A|F|1992-10-25|1992-10-20|1992-11-01|DELIVER IN PERSON|AIR|onically bold th| +54603|529683|29684|4|30|51379.80|0.09|0.07|A|F|1992-10-08|1992-11-04|1992-11-03|COLLECT COD|MAIL|ts are after the qui| +54603|368896|6418|5|9|17683.92|0.08|0.08|A|F|1992-11-09|1992-12-01|1992-11-22|TAKE BACK RETURN|FOB| use carefully | +54603|18321|18322|6|32|39658.24|0.08|0.05|R|F|1992-10-28|1992-11-13|1992-10-29|COLLECT COD|SHIP|ly according to the carefully even | +54603|905873|30910|7|2|3757.66|0.06|0.05|A|F|1992-10-04|1992-10-24|1992-10-19|TAKE BACK RETURN|RAIL|ainst the ironic asymptotes. | +54604|998748|11268|1|37|68327.90|0.10|0.03|R|F|1994-09-06|1994-10-12|1994-09-21|DELIVER IN PERSON|AIR|uickly even accounts sleep--| +54604|946778|46779|2|5|9123.65|0.08|0.01|R|F|1994-11-09|1994-10-07|1994-11-23|COLLECT COD|REG AIR| slyly regular requests sleep again| +54604|482997|8016|3|17|33659.49|0.01|0.00|R|F|1994-11-03|1994-09-02|1994-11-21|COLLECT COD|SHIP|fter the ne| +54604|725899|928|4|18|34647.48|0.07|0.03|R|F|1994-10-03|1994-10-15|1994-10-29|DELIVER IN PERSON|REG AIR|ide of the requests. e| +54604|175072|37576|5|37|42441.59|0.05|0.07|R|F|1994-08-27|1994-09-17|1994-09-09|NONE|REG AIR|ld have to caj| +54604|418974|6499|6|13|24608.35|0.08|0.03|R|F|1994-10-22|1994-09-10|1994-10-23|NONE|MAIL|ests cajole along the furiously | +54604|687288|24828|7|46|58661.50|0.07|0.03|A|F|1994-08-16|1994-09-07|1994-08-28|TAKE BACK RETURN|TRUCK| beans. regular ac| +54605|241733|29246|1|21|35169.12|0.04|0.01|R|F|1992-07-04|1992-09-02|1992-07-10|COLLECT COD|TRUCK|fluffily. car| +54606|743514|43515|1|18|28034.64|0.07|0.07|N|O|1995-07-24|1995-09-21|1995-07-31|TAKE BACK RETURN|AIR|ites haggle above the pending deposit| +54606|223650|48659|2|17|26751.88|0.08|0.00|N|O|1995-09-30|1995-08-04|1995-10-15|NONE|TRUCK|egular deposits at th| +54606|881022|31023|3|17|17050.66|0.09|0.03|N|O|1995-07-06|1995-09-20|1995-08-03|TAKE BACK RETURN|REG AIR| ironic accounts sublate b| +54606|324306|11825|4|48|63853.92|0.09|0.07|N|O|1995-08-02|1995-09-13|1995-08-27|DELIVER IN PERSON|AIR|ffily regular foxes a| +54606|594260|6772|5|41|55523.84|0.05|0.03|N|O|1995-08-26|1995-09-14|1995-09-16|COLLECT COD|RAIL|sits haggle. car| +54606|713091|38120|6|4|4416.24|0.07|0.00|N|O|1995-09-05|1995-09-13|1995-09-09|TAKE BACK RETURN|REG AIR| alongside of the unusu| +54607|281728|44234|1|37|63259.27|0.10|0.00|N|O|1998-03-29|1998-05-19|1998-04-07|TAKE BACK RETURN|TRUCK|. always silen| +54607|993160|30718|2|19|23809.28|0.08|0.04|N|O|1998-06-05|1998-04-14|1998-06-30|TAKE BACK RETURN|SHIP|ly express acc| +54607|38580|38581|3|1|1518.58|0.04|0.08|N|O|1998-05-07|1998-04-14|1998-05-26|COLLECT COD|RAIL|uriously silent instructions. furiou| +54607|403032|15541|4|21|19635.21|0.05|0.08|N|O|1998-07-08|1998-05-07|1998-08-01|COLLECT COD|MAIL|g to the carefully regular depths n| +54607|756357|6358|5|17|24026.44|0.04|0.06|N|O|1998-04-14|1998-05-20|1998-05-01|TAKE BACK RETURN|MAIL|s. bold foxes gro| +54607|91929|41930|6|36|69153.12|0.08|0.06|N|O|1998-04-11|1998-05-10|1998-04-15|NONE|SHIP|en platelets; packages haggle slyly slowl| +54632|796415|46416|1|25|37784.50|0.04|0.06|N|O|1998-08-23|1998-08-03|1998-08-28|COLLECT COD|AIR|le carefully car| +54632|338095|602|2|18|20395.44|0.03|0.06|N|O|1998-06-06|1998-07-12|1998-06-12|TAKE BACK RETURN|TRUCK|arefully ironic| +54632|356893|31908|3|45|87744.60|0.06|0.02|N|O|1998-09-03|1998-08-04|1998-09-14|COLLECT COD|RAIL|y. furiously even deposits detect furi| +54632|284113|9124|4|15|16456.50|0.05|0.03|N|O|1998-07-01|1998-08-05|1998-07-21|COLLECT COD|SHIP|nal accounts cajole against the f| +54633|495436|32964|1|39|55824.99|0.04|0.08|A|F|1992-06-29|1992-06-04|1992-07-10|COLLECT COD|MAIL| the final deposits. carefully ironic fo| +54633|787044|49560|2|46|52026.46|0.07|0.06|A|F|1992-07-22|1992-06-16|1992-08-14|DELIVER IN PERSON|MAIL|bove the quickly f| +54633|844756|32305|3|44|74831.24|0.05|0.03|R|F|1992-05-06|1992-06-08|1992-05-26|COLLECT COD|TRUCK|ic deposits use furiously about t| +54633|805603|43152|4|39|58833.84|0.07|0.04|R|F|1992-06-27|1992-05-25|1992-07-16|TAKE BACK RETURN|SHIP|? bold, quick ideas above the b| +54633|764531|14532|5|3|4786.50|0.10|0.04|A|F|1992-04-13|1992-06-23|1992-05-04|DELIVER IN PERSON|REG AIR|nic accounts. sl| +54633|458218|45746|6|8|9409.52|0.01|0.00|R|F|1992-05-01|1992-06-10|1992-05-03|DELIVER IN PERSON|REG AIR|ck packages nag slyly | +54634|375724|25725|1|36|64789.56|0.00|0.08|A|F|1993-02-27|1993-01-22|1993-03-22|TAKE BACK RETURN|MAIL|furiously furious platelets. special,| +54634|783479|8510|2|31|48435.64|0.00|0.05|A|F|1993-01-11|1993-01-16|1993-01-13|NONE|RAIL|edly regular in| +54634|929728|29729|3|26|45699.68|0.01|0.07|R|F|1993-01-22|1993-02-01|1993-02-06|NONE|REG AIR| bold deposits cajole furiously| +54634|927726|27727|4|32|56117.76|0.00|0.00|A|F|1992-11-20|1993-02-03|1992-12-11|NONE|TRUCK|requests among the carefully spe| +54634|285491|23007|5|47|69394.56|0.02|0.05|A|F|1992-12-08|1992-12-30|1992-12-24|COLLECT COD|MAIL|arefully even accounts sleep| +54634|237823|12832|6|3|5282.43|0.03|0.01|R|F|1993-02-21|1993-01-08|1993-03-03|TAKE BACK RETURN|TRUCK|c accounts. bold accounts boost carefully a| +54635|99136|36640|1|42|47675.46|0.09|0.01|N|O|1997-04-18|1997-05-30|1997-05-08|DELIVER IN PERSON|REG AIR|egular, regular excuses. furiously pending | +54635|171577|9087|2|5|8242.85|0.07|0.04|N|O|1997-04-23|1997-04-17|1997-04-30|NONE|TRUCK| regular pinto beans are | +54635|687207|12234|3|16|19106.72|0.10|0.05|N|O|1997-05-08|1997-04-29|1997-05-31|NONE|MAIL|nic deposits | +54635|876063|38581|4|40|41560.80|0.04|0.03|N|O|1997-05-08|1997-05-13|1997-05-09|COLLECT COD|MAIL|ng requests acco| +54635|975750|25751|5|18|32862.78|0.09|0.03|N|O|1997-06-18|1997-05-19|1997-07-11|COLLECT COD|RAIL|lyly enticing requests. special instruc| +54636|470116|45135|1|22|23893.98|0.09|0.06|N|O|1998-08-12|1998-09-12|1998-09-04|TAKE BACK RETURN|SHIP|ep quickly. blithe| +54637|514999|15000|1|37|74516.89|0.10|0.00|R|F|1994-11-28|1994-10-24|1994-12-19|TAKE BACK RETURN|TRUCK|s cajole carefully. regular | +54637|584056|9079|2|10|11400.30|0.03|0.06|A|F|1994-10-18|1994-09-10|1994-10-30|NONE|FOB|ual accounts. furiously ironic requ| +54638|258963|33974|1|12|23063.40|0.06|0.06|R|F|1995-03-07|1995-03-11|1995-03-13|DELIVER IN PERSON|REG AIR|ts? carefully final di| +54638|388851|13866|2|23|44616.32|0.05|0.01|R|F|1995-05-04|1995-03-29|1995-05-26|TAKE BACK RETURN|SHIP| integrate iro| +54639|107945|32950|1|34|66399.96|0.05|0.02|R|F|1992-01-17|1992-03-22|1992-01-21|TAKE BACK RETURN|FOB|ly. blithely ironic accounts inte| +54639|230705|43210|2|22|35985.18|0.09|0.05|R|F|1992-01-10|1992-02-11|1992-02-06|TAKE BACK RETURN|RAIL|silently even pearls. ironic accoun| +54639|458695|33714|3|8|13229.36|0.00|0.06|A|F|1992-04-01|1992-04-03|1992-04-30|COLLECT COD|SHIP|thely. deposits until the furiously | +54639|271663|21664|4|37|60482.05|0.02|0.07|R|F|1992-03-08|1992-03-28|1992-03-31|TAKE BACK RETURN|AIR|platelets | +54664|766948|16949|1|50|100745.50|0.03|0.05|R|F|1993-05-15|1993-05-03|1993-05-20|TAKE BACK RETURN|RAIL|ep furiously| +54664|90434|2936|2|43|61250.49|0.08|0.06|A|F|1993-03-20|1993-03-21|1993-03-23|COLLECT COD|REG AIR|deas? pending, pend| +54664|912764|12765|3|47|83505.84|0.01|0.01|R|F|1993-05-30|1993-04-17|1993-06-10|COLLECT COD|TRUCK|l deposits use. | +54665|148804|48805|1|32|59289.60|0.09|0.03|N|O|1996-08-26|1996-09-12|1996-09-17|DELIVER IN PERSON|RAIL|s engage regular theodolites. | +54665|940442|2961|2|49|72637.60|0.07|0.01|N|O|1996-08-30|1996-08-05|1996-09-03|DELIVER IN PERSON|MAIL|oze quickly among the carefully un| +54665|995226|32784|3|6|7927.08|0.03|0.07|N|O|1996-10-11|1996-08-11|1996-10-27|TAKE BACK RETURN|MAIL|s wake daringly regular, si| +54665|749842|24871|4|6|11350.86|0.02|0.07|N|O|1996-09-07|1996-08-22|1996-09-24|COLLECT COD|AIR|hely pending courts. ironic, pe| +54665|591796|29330|5|26|49082.02|0.03|0.05|N|O|1996-07-11|1996-09-06|1996-07-24|COLLECT COD|MAIL|aintain slyly ironic, ironic somas. fu| +54665|301987|1988|6|50|99448.50|0.02|0.03|N|O|1996-09-24|1996-09-12|1996-09-28|DELIVER IN PERSON|TRUCK|s snooze furiously. even, fin| +54666|243981|18990|1|21|40424.37|0.04|0.03|N|O|1997-05-26|1997-06-17|1997-06-15|DELIVER IN PERSON|MAIL|quickly final accounts are across the blit| +54667|574012|49035|1|44|47783.56|0.02|0.00|N|O|1998-07-03|1998-07-27|1998-07-05|COLLECT COD|AIR|ial instructions cajole ca| +54668|82224|19728|1|17|20505.74|0.06|0.08|N|O|1997-09-02|1997-11-05|1997-09-20|COLLECT COD|REG AIR| pending, regular hockey players use c| +54669|742598|30141|1|25|41014.00|0.10|0.07|R|F|1992-06-11|1992-04-11|1992-06-23|COLLECT COD|FOB|ng requests. packages a| +54669|839747|2264|2|24|40480.80|0.03|0.07|A|F|1992-05-23|1992-05-09|1992-06-20|COLLECT COD|AIR|posits cajole fur| +54669|627758|15295|3|4|6742.88|0.01|0.06|A|F|1992-03-31|1992-05-12|1992-04-12|DELIVER IN PERSON|TRUCK|gular pinto beans ha| +54669|722733|10276|4|30|52671.00|0.04|0.05|A|F|1992-05-02|1992-05-17|1992-05-16|DELIVER IN PERSON|AIR|ss the iron| +54669|962444|24964|5|41|61762.40|0.06|0.03|R|F|1992-06-19|1992-04-15|1992-06-21|NONE|MAIL| blithely dogged deposits | +54669|792872|42873|6|37|72699.08|0.10|0.00|R|F|1992-05-11|1992-05-03|1992-05-26|TAKE BACK RETURN|SHIP| along the iron| +54669|783307|20853|7|15|20854.05|0.00|0.03|R|F|1992-03-27|1992-05-03|1992-04-11|DELIVER IN PERSON|SHIP|ges. carefully ironic f| +54670|31866|6867|1|16|28765.76|0.02|0.02|A|F|1992-04-29|1992-06-29|1992-05-25|DELIVER IN PERSON|TRUCK|ons haggle along the| +54670|562448|24960|2|18|27187.56|0.09|0.08|A|F|1992-06-30|1992-07-21|1992-07-26|NONE|AIR|. even accounts haggle carefully. instruct| +54670|58447|33450|3|35|49190.40|0.01|0.00|R|F|1992-05-14|1992-06-14|1992-06-10|DELIVER IN PERSON|SHIP|l asymptotes d| +54670|312126|24633|4|12|13657.32|0.00|0.05|A|F|1992-05-21|1992-07-10|1992-06-18|NONE|REG AIR|ngside of the furi| +54670|897740|10258|5|18|31278.60|0.05|0.00|A|F|1992-06-01|1992-06-11|1992-06-03|TAKE BACK RETURN|FOB|unusual foxes across the quic| +54670|300174|37693|6|4|4696.64|0.05|0.00|A|F|1992-08-18|1992-07-18|1992-09-11|DELIVER IN PERSON|REG AIR|fully bold packages | +54670|8576|8577|7|48|71259.36|0.02|0.04|A|F|1992-06-18|1992-06-09|1992-06-29|COLLECT COD|SHIP|ses. blithely regular requests hag| +54671|127357|27358|1|3|4153.05|0.07|0.05|A|F|1993-04-19|1993-02-28|1993-05-14|TAKE BACK RETURN|REG AIR|onic excuses after the blithely final de| +54671|475170|37680|2|34|38935.10|0.02|0.05|A|F|1993-04-11|1993-03-08|1993-04-17|TAKE BACK RETURN|RAIL|furiously across the| +54671|171863|9373|3|13|25153.18|0.02|0.05|R|F|1993-03-01|1993-03-19|1993-03-31|DELIVER IN PERSON|FOB|ages? ironic, re| +54671|497301|9811|4|44|57124.32|0.06|0.07|R|F|1993-02-11|1993-03-22|1993-02-19|COLLECT COD|REG AIR|gular ideas. slyly express| +54671|132193|32194|5|10|12251.90|0.08|0.03|R|F|1993-03-29|1993-02-15|1993-04-21|COLLECT COD|REG AIR|ts are slyly along the quickly fin| +54671|762377|37408|6|41|59012.94|0.00|0.02|R|F|1993-03-08|1993-03-16|1993-03-25|NONE|FOB|efully pending deposits alongside of th| +54696|189743|2247|1|26|47651.24|0.06|0.01|N|O|1996-12-14|1996-12-27|1997-01-12|NONE|FOB|gular theodolites wake across the fin| +54696|4993|4994|2|37|70225.63|0.00|0.00|N|O|1996-12-19|1997-01-21|1997-01-18|TAKE BACK RETURN|REG AIR|eposits are up the carefully iro| +54696|906724|19243|3|35|60573.80|0.03|0.01|N|O|1997-01-02|1997-02-02|1997-01-14|TAKE BACK RETURN|FOB|carefully final deposits sleep blithely. re| +54697|567481|29993|1|3|4645.38|0.06|0.05|R|F|1993-09-17|1993-09-29|1993-09-24|TAKE BACK RETURN|SHIP|s sleep pending foxes. slyly reg| +54697|647685|10198|2|17|27755.05|0.06|0.06|A|F|1993-07-31|1993-08-21|1993-08-27|DELIVER IN PERSON|RAIL|osits. furious| +54698|742701|42702|1|25|43591.75|0.04|0.07|N|O|1998-01-27|1997-11-14|1998-02-24|DELIVER IN PERSON|REG AIR|instructions wake c| +54698|564985|14986|2|9|18449.64|0.03|0.08|N|O|1998-01-29|1997-12-25|1998-02-20|DELIVER IN PERSON|REG AIR|kly special multiplie| +54699|500020|25041|1|6|6120.00|0.08|0.08|A|F|1994-08-09|1994-07-12|1994-08-25|TAKE BACK RETURN|FOB|he carefully ironic ideas. carefu| +54700|168829|43836|1|10|18978.20|0.05|0.07|N|O|1997-07-19|1997-05-16|1997-07-27|DELIVER IN PERSON|RAIL|accounts promise thinly around the de| +54700|504537|42068|2|15|23122.65|0.09|0.02|N|O|1997-07-10|1997-06-07|1997-07-13|DELIVER IN PERSON|FOB|y silent instructions may cajole caref| +54700|752782|15298|3|49|89902.75|0.01|0.03|N|O|1997-06-03|1997-06-15|1997-06-14|COLLECT COD|REG AIR|regular deposits. blit| +54700|996378|46379|4|21|30960.93|0.06|0.06|N|O|1997-05-27|1997-06-07|1997-06-16|TAKE BACK RETURN|MAIL|ns breach furious| +54700|112663|25166|5|8|13405.28|0.01|0.05|N|O|1997-05-24|1997-06-04|1997-06-09|DELIVER IN PERSON|SHIP|permanent pinto beans. r| +54700|525014|12545|6|20|20779.80|0.04|0.04|N|O|1997-04-27|1997-05-08|1997-05-04|COLLECT COD|REG AIR|instructions. carefully bold packag| +54701|380467|42975|1|22|34043.90|0.04|0.07|N|O|1996-05-15|1996-04-06|1996-06-09|NONE|TRUCK| across the quickly express packages. s| +54702|809611|34644|1|26|39534.82|0.00|0.06|N|O|1995-06-19|1995-07-15|1995-06-21|NONE|AIR|deposits nag across the furiously pendin| +54703|897257|22292|1|43|53931.03|0.00|0.08|N|O|1996-08-31|1996-07-18|1996-09-07|COLLECT COD|FOB| across the ironic decoys. car| +54703|189558|39559|2|16|26360.80|0.03|0.05|N|O|1996-09-23|1996-07-28|1996-10-10|COLLECT COD|RAIL|refully ironic de| +54703|899505|37057|3|38|57169.48|0.07|0.07|N|O|1996-09-04|1996-08-26|1996-10-04|DELIVER IN PERSON|RAIL|carefully past| +54703|975465|37985|4|27|41591.34|0.00|0.08|N|O|1996-08-18|1996-07-21|1996-09-02|COLLECT COD|SHIP|ole slyly. enticingly spe| +54703|629105|4130|5|12|12408.84|0.08|0.05|N|O|1996-09-22|1996-08-06|1996-10-14|COLLECT COD|AIR|ss instructions wake express foxes. acc| +54728|902562|27599|1|25|39113.00|0.08|0.02|A|F|1993-12-24|1993-12-14|1993-12-27|NONE|SHIP|s orbits integrate s| +54728|357856|32871|2|31|59329.04|0.06|0.01|R|F|1993-11-19|1993-12-09|1993-11-28|TAKE BACK RETURN|FOB|ve the regula| +54728|485761|35762|3|44|76856.56|0.00|0.07|A|F|1993-10-31|1993-11-05|1993-11-20|COLLECT COD|RAIL|egular ideas. express, busy| +54728|182515|45019|4|30|47925.30|0.10|0.07|A|F|1993-12-28|1993-12-13|1994-01-25|TAKE BACK RETURN|FOB|ironic instructions are carefully fluffily| +54729|81193|43695|1|14|16438.66|0.01|0.04|N|O|1998-01-08|1998-01-03|1998-01-26|TAKE BACK RETURN|SHIP|uriously regular packages haggle at the bl| +54729|598388|10900|2|36|53508.96|0.10|0.04|N|O|1998-03-02|1998-01-15|1998-04-01|DELIVER IN PERSON|MAIL|ons. carefully unusual deposits | +54730|61219|48723|1|15|17703.15|0.06|0.01|R|F|1994-03-09|1994-03-10|1994-03-30|DELIVER IN PERSON|FOB|the quick, i| +54730|900327|37882|2|37|49109.36|0.02|0.00|R|F|1994-02-11|1994-02-21|1994-03-01|DELIVER IN PERSON|AIR| are furiously after the carefu| +54730|783051|20597|3|22|24948.44|0.09|0.00|R|F|1994-02-07|1994-03-03|1994-03-03|NONE|TRUCK| fluffily furiousl| +54730|724921|12464|4|11|21404.79|0.02|0.02|R|F|1994-01-30|1994-02-03|1994-02-20|TAKE BACK RETURN|AIR|. furiously express ideas cajole bravely f| +54730|739180|1695|5|37|45108.55|0.08|0.06|R|F|1994-03-29|1994-02-04|1994-04-09|NONE|TRUCK|inal requests. final| +54731|693785|43786|1|30|53362.50|0.05|0.00|N|O|1996-05-21|1996-04-14|1996-06-11|DELIVER IN PERSON|FOB| enticingly u| +54731|432427|44936|2|6|8156.40|0.06|0.07|N|O|1996-04-07|1996-04-29|1996-05-05|NONE|TRUCK|longside of the| +54732|69648|32150|1|50|80882.00|0.06|0.04|N|O|1995-10-06|1995-12-25|1995-10-14|TAKE BACK RETURN|AIR|refully. regular deposi| +54732|560827|35850|2|49|92502.20|0.03|0.06|N|O|1996-01-06|1995-12-06|1996-02-03|COLLECT COD|FOB|ts haggle p| +54732|810473|35506|3|6|8300.58|0.08|0.04|N|O|1995-12-25|1995-12-01|1996-01-14|TAKE BACK RETURN|AIR|accounts along the special decoys cajole | +54732|610439|35464|4|38|51277.20|0.04|0.00|N|O|1996-01-04|1995-11-15|1996-01-05|COLLECT COD|AIR|ar foxes. furiousl| +54732|632198|7223|5|43|48596.88|0.01|0.02|N|O|1995-12-28|1995-12-16|1996-01-26|DELIVER IN PERSON|TRUCK|: deposits affix slyly sly| +54733|582604|45116|1|28|47224.24|0.01|0.04|N|O|1997-10-17|1997-10-15|1997-10-30|COLLECT COD|SHIP|to the regular the| +54733|821142|8691|2|42|44650.20|0.00|0.05|N|O|1997-11-03|1997-11-11|1997-11-23|NONE|RAIL|eodolites. silent, ironic requests det| +54733|928203|40722|3|40|49246.40|0.09|0.04|N|O|1997-11-16|1997-11-04|1997-11-22|TAKE BACK RETURN|SHIP|carefully | +54733|302597|2598|4|17|27192.86|0.02|0.06|N|O|1997-09-03|1997-10-21|1997-09-23|COLLECT COD|MAIL|ly unusual packages. blithely e| +54733|733401|33402|5|48|68849.76|0.01|0.00|N|O|1997-11-28|1997-11-04|1997-12-15|COLLECT COD|REG AIR|ar asymptotes cajole always bold package| +54734|479332|41842|1|37|48518.47|0.09|0.02|N|O|1998-04-25|1998-05-08|1998-05-16|TAKE BACK RETURN|SHIP|ts boost blithely. q| +54734|127865|40368|2|2|3785.72|0.06|0.01|N|O|1998-06-04|1998-04-01|1998-07-03|COLLECT COD|AIR|ideas. furiously ironic ideas affix ex| +54734|16619|41620|3|31|47603.91|0.03|0.04|N|O|1998-03-19|1998-03-24|1998-04-04|NONE|MAIL|ng, bold request| +54734|304633|29646|4|20|32752.40|0.02|0.02|N|O|1998-06-13|1998-04-01|1998-06-19|TAKE BACK RETURN|RAIL|ix even foxes! carefully | +54735|307026|32039|1|4|4132.04|0.03|0.03|N|O|1997-08-04|1997-09-13|1997-08-27|COLLECT COD|SHIP| ironic packages are blithely carefully iro| +54735|178452|28453|2|21|32139.45|0.03|0.06|N|O|1997-11-04|1997-08-21|1997-11-18|COLLECT COD|FOB| blithely pending foxes | +54735|233312|45817|3|9|11207.70|0.02|0.02|N|O|1997-10-30|1997-09-15|1997-11-20|COLLECT COD|TRUCK|gside of the final, final | +54735|266570|41581|4|25|38414.00|0.10|0.02|N|O|1997-09-13|1997-10-02|1997-09-19|DELIVER IN PERSON|MAIL|ave to boost slyly ideas. pending | +54735|226199|38704|5|48|54008.64|0.08|0.02|N|O|1997-11-01|1997-09-23|1997-11-25|DELIVER IN PERSON|FOB|the furiously reg| +54735|711508|24023|6|8|12155.76|0.00|0.07|N|O|1997-09-26|1997-09-21|1997-09-29|COLLECT COD|SHIP|ffily even pinto b| +54760|457635|32654|1|37|58926.57|0.05|0.05|N|O|1996-05-05|1996-05-17|1996-05-23|NONE|AIR|eas across the even, final packages play af| +54761|947676|47677|1|31|53432.53|0.07|0.03|N|O|1997-04-10|1997-03-08|1997-04-12|COLLECT COD|RAIL|ecial accounts cajole slyly. slyly even | +54761|575673|25674|2|7|12240.55|0.01|0.03|N|O|1997-03-19|1997-03-26|1997-04-16|DELIVER IN PERSON|REG AIR|structions cajole. ironic| +54761|326528|26529|3|16|24872.16|0.00|0.00|N|O|1997-02-08|1997-04-04|1997-02-18|DELIVER IN PERSON|SHIP|press asymptotes. | +54761|947000|47001|4|15|15704.40|0.02|0.02|N|O|1997-04-12|1997-04-03|1997-05-11|COLLECT COD|RAIL|ly silent notornis: iron| +54761|220730|45739|5|48|79234.56|0.00|0.08|N|O|1997-03-16|1997-02-28|1997-03-28|DELIVER IN PERSON|TRUCK|gle furiously a| +54761|805836|5837|6|44|76638.76|0.03|0.06|N|O|1997-03-09|1997-03-15|1997-03-15|NONE|FOB|nic requests affix slyly fo| +54761|676056|38570|7|28|28896.56|0.02|0.08|N|O|1997-03-24|1997-02-18|1997-04-23|COLLECT COD|RAIL| dependencies integrate carefully. depo| +54762|466278|41297|1|39|48525.75|0.00|0.08|A|F|1993-08-16|1993-06-12|1993-08-20|TAKE BACK RETURN|AIR| sly pearls doze unus| +54762|730066|5095|2|46|50417.38|0.07|0.06|R|F|1993-08-06|1993-06-15|1993-08-25|TAKE BACK RETURN|FOB|ickly regular account| +54762|207858|32867|3|31|54741.04|0.08|0.01|A|F|1993-08-03|1993-07-03|1993-08-18|COLLECT COD|MAIL|ages. sometimes bold acc| +54762|455531|43059|4|40|59460.40|0.03|0.03|A|F|1993-07-09|1993-07-11|1993-07-24|NONE|REG AIR|express pinto bean| +54762|103544|16047|5|27|41783.58|0.05|0.05|A|F|1993-05-30|1993-07-29|1993-06-26|TAKE BACK RETURN|TRUCK|s. permanent instructions above | +54763|429904|29905|1|31|56850.28|0.10|0.02|R|F|1995-04-09|1995-04-19|1995-04-27|NONE|AIR| to the accounts cajole slyly| +54763|383045|33046|2|33|37224.99|0.02|0.07|R|F|1995-04-13|1995-05-28|1995-05-04|NONE|MAIL| the carefully ironic req| +54763|835441|22990|3|41|56432.40|0.01|0.01|R|F|1995-05-27|1995-06-15|1995-06-02|COLLECT COD|AIR|sly express warhorses nag| +54763|241340|28853|4|6|7687.98|0.06|0.07|N|O|1995-06-28|1995-05-23|1995-07-23|NONE|SHIP|. blithely special asym| +54763|195610|45611|5|42|71635.62|0.02|0.00|R|F|1995-06-07|1995-06-06|1995-06-15|DELIVER IN PERSON|FOB|y regular asymptote| +54764|228258|28259|1|34|40332.16|0.08|0.04|N|O|1996-10-04|1996-11-03|1996-10-19|COLLECT COD|AIR|furiously special packages. flu| +54764|321232|8751|2|33|41356.26|0.02|0.04|N|O|1996-11-04|1996-09-29|1996-12-01|COLLECT COD|SHIP|ng foxes should have to use slyly | +54764|931207|31208|3|12|14857.92|0.02|0.06|N|O|1996-11-09|1996-10-18|1996-11-13|DELIVER IN PERSON|FOB|ins. furiously bold decoys alongside of| +54764|779814|42330|4|15|28406.70|0.02|0.04|N|O|1996-11-13|1996-11-23|1996-11-17|COLLECT COD|RAIL|arefully regular requests abov| +54764|324094|24095|5|29|32424.32|0.02|0.04|N|O|1996-09-24|1996-10-10|1996-10-18|COLLECT COD|SHIP|ns over the blithely busy request| +54764|46081|8582|6|16|16433.28|0.03|0.04|N|O|1996-10-15|1996-10-31|1996-11-03|COLLECT COD|REG AIR|. fluffy foxes| +54764|478383|15911|7|12|16336.32|0.01|0.00|N|O|1996-10-06|1996-10-30|1996-10-11|COLLECT COD|AIR|y. furiously even ideas haggle | +54765|167832|5342|1|32|60794.56|0.04|0.02|N|O|1996-05-22|1996-07-10|1996-06-12|DELIVER IN PERSON|FOB|y according to the blithely| +54765|740619|15648|2|19|31532.02|0.05|0.05|N|O|1996-07-01|1996-07-29|1996-07-09|DELIVER IN PERSON|AIR| haggle into the express, final grouche| +54765|572873|22874|3|30|58375.50|0.03|0.06|N|O|1996-06-11|1996-06-21|1996-06-28|COLLECT COD|AIR|es. carefully special accou| +54765|263948|38959|4|50|95596.50|0.09|0.07|N|O|1996-08-14|1996-07-24|1996-09-07|TAKE BACK RETURN|AIR| slyly final| +54765|161736|11737|5|2|3595.46|0.08|0.05|N|O|1996-06-28|1996-07-21|1996-07-06|COLLECT COD|AIR|ily about the carefully ironic courts| +54766|800472|38021|1|19|26076.17|0.01|0.05|N|O|1998-07-31|1998-06-20|1998-08-04|TAKE BACK RETURN|SHIP|ns. slyly even pinto beans integrate bl| +54766|527560|15091|2|13|20638.02|0.00|0.04|N|O|1998-05-14|1998-05-04|1998-05-17|NONE|REG AIR|xpress theodolites. unusual, fina| +54766|692822|17849|3|18|32666.22|0.07|0.08|N|O|1998-05-31|1998-05-01|1998-06-16|NONE|SHIP|ven deposits detect blithely f| +54766|245648|20657|4|3|4780.89|0.03|0.08|N|O|1998-05-08|1998-06-19|1998-06-05|DELIVER IN PERSON|RAIL|ular deposits among| +54766|602940|15453|5|21|38701.11|0.04|0.06|N|O|1998-05-26|1998-06-07|1998-06-06|TAKE BACK RETURN|MAIL|ual requests against the fluffi| +54766|598132|10644|6|23|28292.53|0.04|0.03|N|O|1998-05-20|1998-06-17|1998-05-31|DELIVER IN PERSON|MAIL|y even accounts h| +54767|74876|37378|1|13|24061.31|0.05|0.07|A|F|1992-02-24|1992-03-13|1992-02-29|NONE|MAIL|requests grow slyly. quickly fin| +54767|430339|42848|2|3|3807.93|0.01|0.04|A|F|1992-05-20|1992-04-09|1992-05-25|NONE|SHIP|carefully ironic accounts sleep. regular| +54767|700787|25816|3|41|73297.75|0.05|0.05|R|F|1992-06-11|1992-04-29|1992-06-25|TAKE BACK RETURN|FOB| permanently furious packages. slyly bold| +54767|114270|14271|4|47|60360.69|0.06|0.02|R|F|1992-03-31|1992-04-15|1992-04-07|TAKE BACK RETURN|SHIP|along the furiously| +54767|529251|29252|5|15|19203.45|0.02|0.03|R|F|1992-05-11|1992-03-31|1992-06-06|TAKE BACK RETURN|MAIL|beans use quickly along the dep| +54767|114109|26612|6|20|22462.00|0.00|0.05|R|F|1992-02-13|1992-04-29|1992-03-08|COLLECT COD|AIR| instructions! unusual, pending deposits co| +54767|829459|4492|7|32|44429.12|0.05|0.00|A|F|1992-04-09|1992-03-29|1992-04-15|TAKE BACK RETURN|AIR|instructions affix furiously ca| +54792|707174|19689|1|42|49607.88|0.08|0.04|A|F|1992-07-05|1992-06-11|1992-07-20|NONE|SHIP|y pending deposits. sly| +54792|461909|24419|2|19|35546.72|0.03|0.04|A|F|1992-03-27|1992-06-20|1992-04-15|DELIVER IN PERSON|SHIP|, special dependencies.| +54792|299015|36531|3|42|42588.00|0.00|0.07|A|F|1992-03-29|1992-05-24|1992-04-22|COLLECT COD|AIR|ss furiously p| +54792|542924|42925|4|25|49172.50|0.03|0.07|R|F|1992-06-04|1992-05-29|1992-06-29|TAKE BACK RETURN|REG AIR|s. slyly final asymptotes sleep careful| +54792|919140|44177|5|11|12750.10|0.07|0.06|R|F|1992-05-31|1992-05-19|1992-06-24|COLLECT COD|RAIL|es use quickly. carefu| +54792|985070|22628|6|43|49666.29|0.07|0.07|R|F|1992-07-18|1992-05-31|1992-07-21|TAKE BACK RETURN|REG AIR|ounts. silently regular| +54792|67545|42548|7|37|55963.98|0.08|0.07|R|F|1992-06-26|1992-05-07|1992-07-05|COLLECT COD|AIR|ess accounts | +54793|217616|17617|1|25|38340.00|0.06|0.03|R|F|1992-11-22|1992-12-16|1992-12-20|COLLECT COD|RAIL|ly special p| +54793|471468|46487|2|12|17273.28|0.04|0.03|A|F|1993-01-26|1992-11-14|1993-02-15|DELIVER IN PERSON|RAIL|sits. even ideas maintain carefully regula| +54794|142131|17136|1|39|45752.07|0.06|0.07|R|F|1994-12-11|1995-01-09|1994-12-29|DELIVER IN PERSON|REG AIR|tegrate final,| +54794|778936|3967|2|24|48357.60|0.00|0.07|R|F|1994-12-29|1995-01-27|1995-01-09|NONE|AIR|ar deposits could de| +54794|568117|18118|3|31|36737.79|0.00|0.03|R|F|1995-02-19|1994-12-07|1995-02-21|TAKE BACK RETURN|MAIL|riously special ideas haggle carefull| +54794|332636|20155|4|37|61738.94|0.09|0.03|A|F|1995-01-31|1994-12-24|1995-02-24|DELIVER IN PERSON|FOB|ges: ironic deposits promise bli| +54795|981704|44224|1|7|12499.62|0.03|0.01|R|F|1993-07-07|1993-06-06|1993-07-22|DELIVER IN PERSON|SHIP|hely regular ideas caj| +54795|497734|22753|2|16|27707.36|0.04|0.03|R|F|1993-08-17|1993-06-05|1993-09-14|COLLECT COD|REG AIR|ideas print | +54795|404988|4989|3|35|66253.60|0.01|0.05|R|F|1993-05-17|1993-06-14|1993-05-21|TAKE BACK RETURN|AIR|nic foxes. furiously ironic idea| +54795|619689|32202|4|45|72389.25|0.06|0.04|R|F|1993-07-14|1993-07-02|1993-07-24|TAKE BACK RETURN|MAIL|ts sleep carefully about the quickly unusua| +54795|104307|16810|5|25|32782.50|0.07|0.03|R|F|1993-06-02|1993-06-10|1993-06-27|COLLECT COD|RAIL| wake slyly. reg| +54795|80535|30536|6|8|12124.24|0.05|0.02|R|F|1993-08-12|1993-07-13|1993-08-30|NONE|SHIP|regular courts detect al| +54796|671885|46912|1|30|55705.50|0.06|0.04|N|O|1997-05-29|1997-05-07|1997-06-06|TAKE BACK RETURN|FOB|ing accounts wake. | +54796|366162|41177|2|8|9825.20|0.07|0.02|N|O|1997-03-24|1997-05-05|1997-04-18|DELIVER IN PERSON|SHIP|nstructions beside the furio| +54796|73917|23918|3|26|49163.66|0.06|0.02|N|O|1997-04-14|1997-03-28|1997-05-04|DELIVER IN PERSON|REG AIR|s-- express platelets ha| +54796|319014|44027|4|22|22726.00|0.01|0.08|N|O|1997-04-16|1997-03-18|1997-04-20|NONE|RAIL|en instructions! pending, regu| +54796|667804|30318|5|28|49609.56|0.02|0.06|N|O|1997-02-25|1997-03-21|1997-03-23|TAKE BACK RETURN|TRUCK|sits. blithely express theodolite| +54797|143009|18014|1|41|43132.00|0.03|0.00|A|F|1993-04-29|1993-06-09|1993-05-17|TAKE BACK RETURN|MAIL|y bold requests accordi| +54798|38613|1114|1|32|49651.52|0.01|0.08|N|O|1996-02-24|1996-03-17|1996-02-28|COLLECT COD|RAIL|ending deposits. carefully even| +54798|960865|48423|2|20|38516.40|0.07|0.05|N|O|1996-03-06|1996-03-07|1996-03-27|DELIVER IN PERSON|REG AIR| boost carefully requests. blith| +54798|243745|6250|3|33|55728.09|0.08|0.03|N|O|1996-01-10|1996-03-16|1996-01-24|DELIVER IN PERSON|TRUCK|ole packages. caref| +54798|616874|16875|4|29|51934.36|0.07|0.06|N|O|1996-01-11|1996-04-02|1996-02-01|COLLECT COD|MAIL| hockey players are blithely| +54798|787965|12996|5|40|82117.20|0.04|0.06|N|O|1996-03-03|1996-02-08|1996-03-20|DELIVER IN PERSON|SHIP|fully. bold deposits| +54798|314029|39042|6|32|33376.32|0.03|0.03|N|O|1996-01-14|1996-02-07|1996-01-19|NONE|RAIL|es after the theodolites could hag| +54799|508958|21469|1|11|21636.23|0.06|0.02|N|O|1996-08-04|1996-08-18|1996-08-23|NONE|REG AIR|ending somas haggle fu| +54799|45672|8173|2|33|53383.11|0.00|0.03|N|O|1996-09-19|1996-08-17|1996-10-03|COLLECT COD|TRUCK|nusual plate| +54799|602542|15055|3|39|56335.89|0.02|0.00|N|O|1996-08-18|1996-07-14|1996-09-08|NONE|SHIP|eas haggle| +54799|907134|32171|4|32|36514.88|0.05|0.04|N|O|1996-06-30|1996-08-11|1996-07-06|TAKE BACK RETURN|REG AIR|anently about the regular foxes. foxes| +54824|6506|19007|1|28|39550.00|0.09|0.07|R|F|1993-11-06|1993-08-26|1993-12-01|TAKE BACK RETURN|REG AIR|ar accounts. furiously pending | +54824|337103|24622|2|13|14821.17|0.09|0.01|A|F|1993-11-12|1993-10-07|1993-12-11|TAKE BACK RETURN|AIR|ackages after the carefully even packages c| +54824|675511|13051|3|17|25270.16|0.07|0.05|R|F|1993-10-21|1993-09-09|1993-10-26|COLLECT COD|REG AIR|yly specia| +54824|301717|39236|4|12|20624.40|0.09|0.01|A|F|1993-09-20|1993-10-16|1993-10-16|COLLECT COD|AIR|mptotes. carefully ironic theodolit| +54824|953217|15737|5|36|45726.12|0.01|0.00|A|F|1993-11-13|1993-09-18|1993-12-11|COLLECT COD|FOB|inal deposits cajole. quick| +54824|709647|34676|6|1|1656.61|0.10|0.05|R|F|1993-08-17|1993-09-08|1993-09-13|COLLECT COD|RAIL| affix carefull| +54824|30801|5802|7|26|45026.80|0.04|0.08|A|F|1993-10-10|1993-09-08|1993-10-18|TAKE BACK RETURN|SHIP| even depo| +54825|660043|10044|1|23|23069.23|0.03|0.06|N|O|1996-11-11|1997-01-26|1996-11-25|COLLECT COD|MAIL|structions | +54825|339572|14585|2|49|78966.44|0.06|0.08|N|O|1996-11-21|1997-01-30|1996-11-24|TAKE BACK RETURN|RAIL| regular req| +54825|184687|34688|3|7|12401.76|0.02|0.02|N|O|1997-02-22|1997-01-28|1997-03-20|COLLECT COD|FOB|icingly regular dolphins haggle furiously| +54825|29422|41923|4|13|17568.46|0.10|0.07|N|O|1996-11-16|1997-01-28|1996-12-06|TAKE BACK RETURN|TRUCK|ironic theodolites sleep| +54825|481257|18785|5|21|26002.83|0.06|0.01|N|O|1997-02-02|1997-01-22|1997-02-19|DELIVER IN PERSON|SHIP|ermanently furiously final pa| +54826|415164|27673|1|22|23741.08|0.10|0.02|N|O|1995-08-03|1995-06-01|1995-08-24|COLLECT COD|RAIL|ly ironic instructions cajole slyly fi| +54826|646222|21247|2|37|43223.03|0.04|0.01|N|O|1995-07-16|1995-07-10|1995-07-21|TAKE BACK RETURN|AIR|ackages haggle quickly. furiou| +54826|36560|49061|3|1|1496.56|0.01|0.02|N|O|1995-07-29|1995-07-01|1995-08-11|NONE|TRUCK|posits doze after the quickly regular pac| +54826|455545|30564|4|29|43515.08|0.08|0.03|N|O|1995-07-17|1995-06-04|1995-07-22|COLLECT COD|TRUCK|hrough the bold,| +54827|348295|23308|1|8|10746.24|0.07|0.07|N|O|1996-03-08|1996-03-26|1996-03-20|NONE|TRUCK|egular foxes wake carefully according | +54827|788581|13612|2|11|18365.05|0.09|0.04|N|O|1996-02-13|1996-04-14|1996-02-18|NONE|TRUCK| packages boost blithely instead of the| +54827|664582|2122|3|16|24744.80|0.04|0.05|N|O|1996-03-28|1996-04-03|1996-03-31|TAKE BACK RETURN|RAIL|ss foxes hinder carefully blithely| +54827|623248|23249|4|37|43334.77|0.05|0.07|N|O|1996-01-28|1996-02-21|1996-02-02|DELIVER IN PERSON|TRUCK|accounts cajole furiously. blith| +54827|926483|1520|5|47|70943.68|0.03|0.00|N|O|1996-01-19|1996-02-14|1996-01-25|DELIVER IN PERSON|SHIP|ronic requests a| +54827|394094|44095|6|16|19009.28|0.00|0.05|N|O|1996-02-13|1996-04-06|1996-02-22|DELIVER IN PERSON|REG AIR| unusual packages haggle blithely| +54828|467114|29624|1|18|19459.62|0.09|0.03|N|O|1997-07-18|1997-08-18|1997-07-19|TAKE BACK RETURN|REG AIR|longside of the slyly regular pinto| +54828|782985|8016|2|45|93057.75|0.09|0.07|N|O|1997-07-14|1997-07-19|1997-07-27|NONE|FOB|gular dolphins| +54828|618719|43744|3|50|81884.00|0.05|0.04|N|O|1997-07-06|1997-08-18|1997-07-20|TAKE BACK RETURN|FOB|uriously unusual frets are. | +54828|793590|6106|4|3|5050.68|0.07|0.05|N|O|1997-07-24|1997-08-19|1997-08-07|DELIVER IN PERSON|RAIL|r the dependencies nag blit| +54828|859324|21842|5|27|34648.56|0.08|0.01|N|O|1997-06-15|1997-08-13|1997-06-27|TAKE BACK RETURN|RAIL|y final packages. quic| +54828|655131|17645|6|2|2172.20|0.03|0.00|N|O|1997-10-05|1997-08-30|1997-11-04|TAKE BACK RETURN|RAIL|y unusual pinto beans. unusual, iro| +54828|774147|11693|7|37|45181.07|0.10|0.07|N|O|1997-10-01|1997-07-18|1997-10-21|TAKE BACK RETURN|RAIL|c requests are carefully acco| +54829|84154|9157|1|14|15934.10|0.06|0.06|A|F|1994-05-03|1994-06-11|1994-05-15|DELIVER IN PERSON|MAIL|thely after the slyly i| +54830|425911|38420|1|22|40411.58|0.00|0.02|N|O|1996-06-09|1996-06-16|1996-06-10|COLLECT COD|SHIP|al sheaves. blithely unusual courts haggle | +54830|284655|22171|2|4|6558.56|0.08|0.06|N|O|1996-07-05|1996-06-14|1996-08-03|COLLECT COD|TRUCK|ainst the blithely even deposi| +54830|182556|32557|3|37|60626.35|0.02|0.03|N|O|1996-07-20|1996-07-16|1996-08-05|COLLECT COD|MAIL| theodolites snooze across the quickly re| +54830|217772|17773|4|9|15207.84|0.00|0.08|N|O|1996-06-03|1996-07-22|1996-06-30|COLLECT COD|FOB|sly across the careful gifts. even| +54830|79481|29482|5|14|20446.72|0.08|0.03|N|O|1996-08-19|1996-07-18|1996-09-04|TAKE BACK RETURN|MAIL| theodolites among the foxes m| +54830|820758|45791|6|44|73863.24|0.09|0.05|N|O|1996-07-22|1996-07-06|1996-08-16|NONE|RAIL|ly ironic theodolites upon the fluffil| +54831|138765|13770|1|20|36075.20|0.09|0.07|A|F|1993-01-01|1993-01-21|1993-01-11|TAKE BACK RETURN|TRUCK|se accounts wake furi| +54831|208115|20620|2|37|37854.70|0.03|0.04|A|F|1992-11-30|1993-01-07|1992-12-25|TAKE BACK RETURN|FOB|rding to the furiously regula| +54831|787113|24659|3|40|48003.20|0.08|0.00|R|F|1992-11-21|1993-01-17|1992-12-12|NONE|AIR|. final, unusual courts against the s| +54831|7770|20271|4|26|43622.02|0.10|0.01|A|F|1993-01-25|1993-01-13|1993-01-26|NONE|TRUCK|xpress grouches. blithely u| +54831|583997|46509|5|12|24971.64|0.01|0.02|R|F|1993-03-15|1993-02-08|1993-03-22|TAKE BACK RETURN|FOB|after the quickly stea| +54856|534311|21842|1|32|43049.28|0.03|0.05|N|O|1995-09-05|1995-10-08|1995-09-18|DELIVER IN PERSON|MAIL|fully regular dependencies. regular, bold | +54857|401691|26708|1|46|73262.82|0.00|0.08|N|O|1997-01-25|1997-03-06|1997-01-30|COLLECT COD|AIR| around the furiously express| +54857|211499|49012|2|22|31030.56|0.08|0.08|N|O|1997-03-11|1997-01-29|1997-03-23|DELIVER IN PERSON|TRUCK|ng the blithe| +54857|656346|31373|3|19|24743.89|0.08|0.01|N|O|1997-04-08|1997-02-28|1997-04-28|DELIVER IN PERSON|REG AIR|nal deposits according to| +54858|245396|20405|1|30|40241.40|0.09|0.07|A|F|1994-12-10|1995-02-11|1994-12-12|NONE|FOB|ely final packages. blith| +54858|360296|35311|2|6|8137.68|0.04|0.02|R|F|1994-12-02|1995-02-02|1994-12-31|DELIVER IN PERSON|TRUCK| requests. stealthily regular i| +54858|489331|1841|3|32|42249.92|0.06|0.00|A|F|1994-12-03|1994-12-19|1994-12-26|COLLECT COD|TRUCK|e blithely about th| +54858|174492|49499|4|46|72058.54|0.10|0.08|R|F|1994-12-26|1995-02-13|1995-01-10|COLLECT COD|TRUCK|e along the s| +54859|415999|28508|1|17|32554.49|0.01|0.04|N|O|1997-10-02|1997-08-05|1997-10-13|DELIVER IN PERSON|MAIL|ously even accounts. fluffily iro| +54859|681696|6723|2|48|80527.68|0.07|0.07|N|O|1997-09-07|1997-08-13|1997-10-01|NONE|FOB|regular accounts | +54860|140096|40097|1|11|12496.99|0.05|0.01|N|O|1996-12-02|1996-09-28|1996-12-18|TAKE BACK RETURN|MAIL|all boost blithely slyly bo| +54860|580629|5652|2|3|5128.80|0.05|0.00|N|O|1996-11-11|1996-11-19|1996-11-26|DELIVER IN PERSON|TRUCK|y ironic packages haggle| +54860|629064|4089|3|47|46672.41|0.08|0.03|N|O|1996-11-17|1996-10-16|1996-12-16|COLLECT COD|RAIL|nic pinto beans. furio| +54860|671034|21035|4|28|28140.00|0.07|0.01|N|O|1996-10-10|1996-10-15|1996-10-29|TAKE BACK RETURN|RAIL|he carefully| +54860|61664|49168|5|15|24384.90|0.08|0.02|N|O|1996-10-09|1996-11-17|1996-11-07|TAKE BACK RETURN|FOB|yly permanent requests afte| +54860|380857|5872|6|12|23254.08|0.05|0.05|N|O|1996-10-28|1996-10-06|1996-11-12|TAKE BACK RETURN|TRUCK|ously regular dolphins boost? fluff| +54860|47874|10375|7|31|56477.97|0.00|0.03|N|O|1996-12-20|1996-10-26|1997-01-07|TAKE BACK RETURN|AIR|egrate doggedly alo| +54861|603534|16047|1|13|18687.50|0.06|0.06|N|O|1996-11-18|1996-10-21|1996-12-06|COLLECT COD|FOB|beans do sleep across the s| +54861|580423|42935|2|49|73666.60|0.08|0.05|N|O|1996-11-21|1996-10-22|1996-12-08|NONE|MAIL|sits? regular excuses| +54861|168337|5847|3|47|66050.51|0.07|0.07|N|O|1996-10-15|1996-09-23|1996-11-14|DELIVER IN PERSON|RAIL| regular accounts. ironic, ironic | +54861|239571|27084|4|44|66464.64|0.02|0.08|N|O|1996-08-05|1996-09-11|1996-08-25|TAKE BACK RETURN|AIR|thy requests wake fluffily. furiously| +54861|455453|17963|5|31|43661.33|0.08|0.02|N|O|1996-08-22|1996-09-13|1996-08-30|NONE|FOB|le, final deposits. furiously bold | +54861|796322|33868|6|30|42548.70|0.04|0.07|N|O|1996-08-12|1996-10-12|1996-08-25|NONE|SHIP| final instructions along the packages | +54862|478850|41360|1|23|42063.09|0.08|0.06|A|F|1994-02-18|1994-01-21|1994-03-02|COLLECT COD|FOB| waters thrash slyly final instruc| +54862|15669|28170|2|31|49124.46|0.03|0.00|R|F|1994-03-09|1994-01-01|1994-03-17|DELIVER IN PERSON|RAIL|deposits past the carefully even d| +54862|336915|49422|3|13|25374.70|0.05|0.05|A|F|1994-01-25|1994-02-05|1994-01-28|TAKE BACK RETURN|REG AIR|y bold dependenc| +54862|520467|45488|4|5|7437.20|0.04|0.01|A|F|1994-01-06|1994-01-20|1994-01-30|NONE|RAIL| pinto beans. ideas engage quietly r| +54863|574383|11917|1|21|30604.56|0.06|0.05|A|F|1994-09-12|1994-09-22|1994-09-28|COLLECT COD|AIR|ffily among the regular, special| +54863|643259|43260|2|1|1202.22|0.03|0.08|R|F|1994-10-20|1994-09-29|1994-10-23|COLLECT COD|REG AIR|e. unusual accounts hagg| +54888|739059|14088|1|32|35136.64|0.08|0.03|N|O|1997-07-19|1997-07-21|1997-07-20|NONE|FOB| pinto beans breach carefully. | +54889|967945|42984|1|1|2012.90|0.00|0.04|N|O|1998-02-10|1998-03-10|1998-03-04|COLLECT COD|MAIL|hlessly furiously ironic requ| +54890|729557|4586|1|34|53941.68|0.02|0.05|A|F|1992-04-27|1992-04-06|1992-05-11|TAKE BACK RETURN|MAIL|cajole. instructions slee| +54890|660703|35730|2|34|56564.78|0.05|0.08|A|F|1992-03-24|1992-04-27|1992-04-22|COLLECT COD|TRUCK|sts. carefully final dolphins affix. expre| +54891|98811|23814|1|44|79631.64|0.07|0.04|R|F|1992-12-11|1992-11-08|1992-12-19|NONE|REG AIR| foxes thrash furiously exp| +54892|223041|48050|1|22|21208.66|0.08|0.02|R|F|1992-06-06|1992-06-25|1992-06-11|COLLECT COD|MAIL|regular packages haggle furiously.| +54892|639959|2472|2|38|72158.96|0.01|0.01|R|F|1992-08-30|1992-07-22|1992-09-23|COLLECT COD|MAIL|dependencies. carefully bold cour| +54892|787773|289|3|28|52100.72|0.04|0.06|A|F|1992-06-10|1992-07-05|1992-07-07|NONE|FOB|inst the express accounts. final accou| +54893|560371|22883|1|5|7156.75|0.04|0.04|N|O|1996-03-15|1996-05-16|1996-03-28|TAKE BACK RETURN|TRUCK|are above the special, slow| +54893|154022|16526|2|43|46268.86|0.10|0.08|N|O|1996-04-13|1996-06-03|1996-05-04|DELIVER IN PERSON|REG AIR|s are. asymptot| +54893|639214|1727|3|12|13838.16|0.09|0.03|N|O|1996-04-09|1996-04-27|1996-04-25|DELIVER IN PERSON|FOB|xes: pending foxes sleep furiousl| +54893|257153|32164|4|42|46625.88|0.07|0.08|N|O|1996-05-21|1996-05-27|1996-06-15|NONE|MAIL|sometimes according to the pending, ir| +54893|967965|30485|5|34|69119.28|0.00|0.00|N|O|1996-04-04|1996-05-08|1996-04-21|COLLECT COD|REG AIR|le unusual dinos. slowly final| +54893|577571|27572|6|49|80778.95|0.06|0.00|N|O|1996-04-13|1996-05-20|1996-05-06|COLLECT COD|FOB|furiously | +54893|219171|31676|7|45|49057.20|0.03|0.02|N|O|1996-04-15|1996-05-17|1996-05-13|TAKE BACK RETURN|REG AIR|gside of the reg| +54894|590590|40591|1|42|70583.94|0.07|0.00|N|O|1997-02-01|1997-03-26|1997-03-02|TAKE BACK RETURN|SHIP|ess theodolit| +54894|43203|30704|2|29|33239.80|0.01|0.03|N|O|1997-02-13|1997-03-19|1997-02-15|DELIVER IN PERSON|AIR| carefully special packages. iro| +54894|101027|1028|3|30|30840.60|0.05|0.08|N|O|1997-03-07|1997-04-10|1997-03-28|COLLECT COD|SHIP| furiously express packa| +54894|954924|42482|4|48|94986.24|0.08|0.08|N|O|1997-03-24|1997-04-14|1997-04-01|TAKE BACK RETURN|AIR|structions. caref| +54894|405586|18095|5|48|71594.88|0.03|0.06|N|O|1997-05-09|1997-03-28|1997-05-18|NONE|RAIL|asymptotes detect furiously| +54894|670211|32725|6|10|11811.80|0.10|0.05|N|O|1997-03-02|1997-04-07|1997-03-24|NONE|MAIL|onic depos| +54895|612429|49966|1|36|48290.04|0.08|0.04|N|O|1997-10-21|1997-10-31|1997-11-18|COLLECT COD|TRUCK|nts nag slyly ironi| +54920|241986|4491|1|6|11567.82|0.10|0.06|A|F|1995-02-17|1995-05-05|1995-03-08|TAKE BACK RETURN|FOB|e blithely regul| +54920|43310|5811|2|36|45119.16|0.00|0.08|R|F|1995-02-28|1995-03-13|1995-03-19|NONE|REG AIR|os must have to poach furious| +54920|895606|45607|3|13|20820.28|0.03|0.01|R|F|1995-05-19|1995-03-14|1995-05-30|NONE|FOB| requests. multipliers wa| +54921|734895|22438|1|40|77194.40|0.03|0.01|N|O|1996-06-07|1996-06-10|1996-06-21|DELIVER IN PERSON|REG AIR| final platelets along the quickly re| +54921|370586|33094|2|27|44727.39|0.07|0.03|N|O|1996-08-13|1996-07-05|1996-08-17|DELIVER IN PERSON|TRUCK|usly bold accounts| +54921|432909|20434|3|6|11051.28|0.03|0.05|N|O|1996-05-26|1996-07-25|1996-06-08|TAKE BACK RETURN|RAIL|uses. even packages wake carefully. regu| +54921|893337|30889|4|9|11972.61|0.04|0.01|N|O|1996-05-31|1996-07-09|1996-06-05|DELIVER IN PERSON|TRUCK|ar packages are according to th| +54921|304826|17333|5|34|62247.54|0.04|0.05|N|O|1996-08-15|1996-07-18|1996-08-17|NONE|FOB|latelets hagg| +54922|764884|2430|1|17|33130.45|0.09|0.04|A|F|1993-08-07|1993-08-22|1993-08-26|DELIVER IN PERSON|FOB|riously final requests haggle slyly a| +54923|593116|43117|1|4|4836.36|0.05|0.04|R|F|1993-03-07|1993-02-20|1993-04-06|COLLECT COD|FOB|lithely alongside of the closely bo| +54923|487043|49553|2|29|29870.58|0.03|0.01|R|F|1993-03-22|1993-03-20|1993-04-13|TAKE BACK RETURN|FOB| permanently unusual requests are quickly a| +54923|729081|41596|3|36|39961.80|0.01|0.00|A|F|1993-03-09|1993-02-26|1993-03-13|NONE|FOB|ent accounts at the f| +54923|648567|48568|4|4|6062.12|0.04|0.04|A|F|1993-02-04|1993-02-03|1993-02-16|DELIVER IN PERSON|SHIP|cajole carefully| +54923|462631|159|5|14|22310.54|0.01|0.02|A|F|1993-01-22|1993-02-03|1993-01-23|TAKE BACK RETURN|TRUCK|usly specia| +54924|222370|47379|1|12|15508.32|0.10|0.06|A|F|1993-02-23|1993-05-01|1993-03-21|NONE|FOB|fily regula| +54924|357818|45340|2|3|5627.40|0.08|0.06|R|F|1993-06-07|1993-04-07|1993-07-01|COLLECT COD|FOB|nding theodolites| +54924|831586|44103|3|47|71324.38|0.07|0.08|A|F|1993-03-05|1993-03-22|1993-03-16|TAKE BACK RETURN|REG AIR|old asymptotes. requ| +54924|464955|39974|4|16|30718.88|0.03|0.07|R|F|1993-03-24|1993-05-06|1993-04-12|COLLECT COD|REG AIR|ly ironic requests. quickly even inst| +54925|158644|46154|1|23|39160.72|0.10|0.00|A|F|1992-06-24|1992-04-15|1992-07-04|TAKE BACK RETURN|MAIL|olites. slyly unusual platelets are alo| +54925|327097|2110|2|29|32598.32|0.06|0.08|A|F|1992-03-31|1992-05-06|1992-04-08|NONE|FOB|foxes boost about the carefully bold | +54925|508898|46429|3|10|19068.70|0.02|0.02|A|F|1992-06-07|1992-05-05|1992-07-04|COLLECT COD|REG AIR|dencies across t| +54925|39545|2046|4|50|74227.00|0.02|0.08|R|F|1992-04-24|1992-05-10|1992-05-18|COLLECT COD|TRUCK|capades cajole furious| +54925|630649|5674|5|27|42649.47|0.02|0.03|A|F|1992-03-05|1992-05-09|1992-04-03|DELIVER IN PERSON|RAIL|cording to | +54925|309334|9335|6|27|36269.64|0.00|0.06|R|F|1992-06-20|1992-04-16|1992-07-01|TAKE BACK RETURN|RAIL| blithely final platelets. foxes aga| +54926|991799|16838|1|11|20798.25|0.04|0.00|N|O|1996-01-02|1995-12-01|1996-01-19|TAKE BACK RETURN|MAIL| accounts engage above the packages| +54926|155896|5897|2|17|33182.13|0.04|0.00|N|O|1995-11-19|1995-11-24|1995-12-12|COLLECT COD|TRUCK|ts wake furiously slyly final courts. dolph| +54927|618520|18521|1|17|24454.33|0.10|0.04|N|O|1998-06-29|1998-06-10|1998-07-18|DELIVER IN PERSON|AIR|ial requests affix quickl| +54927|449766|24783|2|40|68629.60|0.04|0.03|N|O|1998-07-16|1998-05-04|1998-08-03|NONE|REG AIR|r accounts use blithely r| +54927|207802|20307|3|50|85489.50|0.05|0.06|N|O|1998-03-31|1998-05-02|1998-04-09|COLLECT COD|REG AIR|pitaphs. bravely ironic ideas int| +54927|525618|38129|4|46|75605.14|0.07|0.08|N|O|1998-07-17|1998-05-25|1998-08-05|DELIVER IN PERSON|AIR|ajole along the theodolite| +54952|92289|42290|1|3|3843.84|0.04|0.08|A|F|1994-10-24|1994-08-24|1994-11-14|TAKE BACK RETURN|REG AIR|osits. deposits across the carefully exp| +54952|90444|2946|2|47|67418.68|0.00|0.02|A|F|1994-09-22|1994-09-30|1994-10-12|COLLECT COD|AIR|rding to the blithely bold requests. fina| +54952|88231|38232|3|48|58523.04|0.02|0.02|R|F|1994-08-13|1994-09-17|1994-08-16|COLLECT COD|REG AIR| cajole slyly special ac| +54953|213761|38770|1|26|43543.50|0.06|0.04|N|O|1997-06-30|1997-08-14|1997-07-01|TAKE BACK RETURN|FOB| platelets wake furiously alongsi| +54953|680737|30738|2|50|85885.00|0.03|0.06|N|O|1997-08-23|1997-09-12|1997-09-02|TAKE BACK RETURN|REG AIR|carefully sly accounts: quickly| +54953|142178|17183|3|10|12201.70|0.02|0.05|N|O|1997-08-17|1997-08-10|1997-08-26|NONE|SHIP|even packages wake pinto beans.| +54953|575261|12795|4|12|16034.88|0.10|0.00|N|O|1997-09-22|1997-08-14|1997-10-15|DELIVER IN PERSON|RAIL|deas against the slyly final dep| +54953|406523|6524|5|31|44314.50|0.09|0.01|N|O|1997-09-26|1997-07-28|1997-10-10|COLLECT COD|TRUCK|the slyly even foxes. car| +54953|418564|43581|6|41|60784.14|0.05|0.02|N|O|1997-06-27|1997-08-09|1997-07-13|TAKE BACK RETURN|SHIP|he slyly express instructi| +54953|795293|20324|7|25|34706.50|0.01|0.05|N|O|1997-08-22|1997-08-23|1997-08-28|COLLECT COD|SHIP|furiously final request| +54954|487040|12059|1|3|3081.06|0.00|0.06|N|O|1998-03-29|1998-04-29|1998-04-08|NONE|RAIL| requests. blithely | +54955|176977|14487|1|10|20539.70|0.05|0.02|N|O|1995-11-26|1995-11-18|1995-12-16|DELIVER IN PERSON|RAIL| ironic accounts | +54956|935075|22630|1|35|38851.05|0.02|0.05|N|O|1996-11-12|1996-09-30|1996-12-05|NONE|AIR|symptotes wake along the regular, express p| +54956|791749|4265|2|2|3681.42|0.08|0.05|N|O|1996-08-25|1996-11-01|1996-09-04|COLLECT COD|FOB| carefully regu| +54956|923424|23425|3|29|41974.02|0.09|0.01|N|O|1996-09-10|1996-10-25|1996-09-15|COLLECT COD|FOB|r the quickly ironic requests. speci| +54956|979990|42510|4|41|84867.95|0.07|0.02|N|O|1996-11-25|1996-10-27|1996-12-11|NONE|MAIL|sleep slyly along the even depend| +54956|679892|29893|5|18|33693.48|0.08|0.08|N|O|1996-09-23|1996-10-19|1996-10-22|COLLECT COD|MAIL| fluffily among the quickly pending| +54957|896996|46997|1|14|27901.30|0.10|0.00|A|F|1993-06-05|1993-04-24|1993-06-18|NONE|FOB|lar, ironic accounts. blithely unusual in| +54957|795600|20631|2|33|55953.81|0.08|0.05|A|F|1993-05-03|1993-05-15|1993-05-09|DELIVER IN PERSON|SHIP|iously final requests. ironi| +54958|643681|31218|1|18|29243.70|0.06|0.08|N|O|1996-03-22|1996-03-23|1996-03-28|TAKE BACK RETURN|MAIL| carefully. quick| +54958|339865|27384|2|4|7619.40|0.08|0.05|N|O|1996-05-14|1996-05-05|1996-06-04|NONE|FOB|lyly pending ins| +54958|104632|29637|3|50|81831.50|0.10|0.04|N|O|1996-03-06|1996-03-09|1996-03-28|COLLECT COD|TRUCK|gular deposits. sil| +54958|549947|24968|4|34|67895.28|0.09|0.01|N|O|1996-03-08|1996-04-11|1996-03-09|TAKE BACK RETURN|RAIL|press requests cajole blithely. c| +54959|261179|11180|1|22|25083.52|0.10|0.08|A|F|1994-05-13|1994-03-11|1994-05-18|NONE|TRUCK|st the excuses serv| +54959|632625|20162|2|47|73206.73|0.03|0.07|R|F|1994-06-03|1994-04-18|1994-06-08|COLLECT COD|SHIP|ly alongside of the fluffily ironic packag| +54959|515578|28089|3|14|22309.70|0.08|0.00|R|F|1994-02-13|1994-03-11|1994-02-24|DELIVER IN PERSON|MAIL|kages: slyly| +54959|310221|22728|4|12|14774.52|0.09|0.00|A|F|1994-03-02|1994-05-04|1994-03-15|DELIVER IN PERSON|AIR|ke. quickly regular pinto beans use furio| +54984|910579|35616|1|19|30201.07|0.03|0.06|N|O|1997-12-07|1998-01-14|1997-12-10|NONE|MAIL|yly. deposits nag final deposit| +54985|970781|20782|1|26|48145.24|0.06|0.03|N|O|1996-02-06|1996-03-15|1996-02-25|NONE|AIR|even reques| +54985|913510|26029|2|20|30469.40|0.05|0.08|N|O|1996-01-26|1996-04-06|1996-02-23|COLLECT COD|REG AIR|ding theodo| +54985|356299|6300|3|34|46079.52|0.03|0.01|N|O|1996-02-01|1996-02-29|1996-02-19|COLLECT COD|SHIP|h the deposits sleep furiously furiously | +54985|303426|28439|4|27|38594.07|0.09|0.08|N|O|1996-02-28|1996-03-10|1996-03-02|DELIVER IN PERSON|TRUCK|ter the express, ironic deposi| +54985|666061|3601|5|27|27729.81|0.02|0.02|N|O|1996-03-02|1996-03-31|1996-03-05|TAKE BACK RETURN|TRUCK|ckly. slyly fi| +54985|470679|45698|6|28|46190.20|0.02|0.05|N|O|1996-04-11|1996-02-26|1996-04-18|NONE|REG AIR|carefully pending asymptotes hag| +54985|700103|25132|7|12|13236.84|0.10|0.03|N|O|1996-02-04|1996-03-04|1996-02-20|DELIVER IN PERSON|AIR|unts. even acco| +54986|617185|4722|1|15|16532.25|0.10|0.07|N|O|1997-04-16|1997-06-23|1997-04-26|NONE|TRUCK|efully final hockey players among the| +54986|19251|6752|2|8|9362.00|0.08|0.03|N|O|1997-04-25|1997-06-26|1997-05-20|TAKE BACK RETURN|RAIL| foxes. instr| +54986|539304|39305|3|34|45671.52|0.05|0.03|N|O|1997-04-16|1997-07-13|1997-05-13|COLLECT COD|REG AIR|n excuses wake. blithely| +54987|375415|37923|1|39|58125.60|0.10|0.01|N|O|1995-07-05|1995-08-09|1995-08-04|COLLECT COD|MAIL|y unusual p| +54987|592335|4847|2|50|71365.50|0.02|0.04|N|F|1995-06-12|1995-07-07|1995-07-12|DELIVER IN PERSON|TRUCK| instructions sleep furiou| +54987|361768|36783|3|45|82338.75|0.06|0.01|R|F|1995-06-02|1995-07-31|1995-06-04|TAKE BACK RETURN|RAIL|en deposits wake blithely about the thin| +54987|229173|29174|4|19|20941.04|0.03|0.07|N|O|1995-09-21|1995-07-27|1995-10-04|COLLECT COD|REG AIR|s. blithely final foxes wake furiously. i| +54988|922692|10247|1|41|70300.65|0.08|0.06|A|F|1995-02-25|1995-02-06|1995-03-04|COLLECT COD|TRUCK|y unusual packages. pendin| +54988|672390|22391|2|24|32696.64|0.00|0.04|R|F|1995-01-23|1995-03-04|1995-02-14|COLLECT COD|FOB|ges play carefully always expres| +54988|853476|15994|3|39|55747.77|0.02|0.04|A|F|1995-04-26|1995-03-17|1995-05-18|TAKE BACK RETURN|SHIP|odolites unwind carefully deposits. | +54989|169497|32001|1|26|40728.74|0.02|0.05|R|F|1994-07-15|1994-06-05|1994-08-02|NONE|MAIL|ng ideas. furious| +54989|724107|11650|2|48|54291.36|0.01|0.01|A|F|1994-05-15|1994-05-29|1994-06-05|NONE|SHIP|carefully final requests; ironic d| +54989|64352|39355|3|14|18428.90|0.07|0.03|R|F|1994-05-25|1994-05-11|1994-05-29|NONE|MAIL|ins breach around the | +54990|660487|48027|1|25|36186.25|0.02|0.06|R|F|1995-04-30|1995-03-13|1995-05-05|NONE|MAIL|olites sleep carefully ironic platele| +54990|798447|35993|2|14|21635.74|0.01|0.06|A|F|1995-04-05|1995-04-03|1995-04-08|TAKE BACK RETURN|REG AIR|s above the slyl| +54990|484450|9469|3|47|67418.21|0.07|0.06|A|F|1995-05-01|1995-03-07|1995-05-09|COLLECT COD|RAIL|instructions. qu| +54990|148108|23113|4|26|30058.60|0.00|0.00|R|F|1995-04-27|1995-02-22|1995-05-04|TAKE BACK RETURN|SHIP|s. carefully ironic deposits wake dar| +54990|237586|91|5|17|25900.69|0.06|0.02|A|F|1995-03-07|1995-02-14|1995-04-03|DELIVER IN PERSON|AIR|e bold, regular instructions. slyly| +54991|4379|4380|1|47|60318.39|0.02|0.07|N|O|1996-10-16|1996-11-02|1996-10-31|DELIVER IN PERSON|SHIP|ions cajole carefully exp| +54991|591445|3957|2|43|66066.06|0.04|0.00|N|O|1996-12-07|1996-10-19|1996-12-25|DELIVER IN PERSON|MAIL|idly final pi| +54991|400364|37889|3|19|24022.46|0.10|0.06|N|O|1996-10-08|1996-09-28|1996-10-12|TAKE BACK RETURN|RAIL|deposits cajole blithely final deposits. fu| +54991|911864|49419|4|18|33764.76|0.02|0.05|N|O|1996-09-20|1996-10-09|1996-10-06|COLLECT COD|AIR|accounts. accounts cajol| +54991|694278|6792|5|10|12722.40|0.05|0.03|N|O|1996-10-23|1996-09-30|1996-10-27|COLLECT COD|RAIL|nusual asymp| +54991|726594|39109|6|38|61581.28|0.06|0.05|N|O|1996-09-07|1996-09-13|1996-10-07|TAKE BACK RETURN|TRUCK|xes after the furi| +55016|90801|15804|1|37|66296.60|0.09|0.03|N|O|1996-06-13|1996-04-30|1996-07-09|COLLECT COD|MAIL|sual courts. blithel| +55016|79090|16594|2|23|24589.07|0.07|0.04|N|O|1996-07-02|1996-05-23|1996-07-21|TAKE BACK RETURN|AIR|the furiously final instructions. ho| +55017|970156|32676|1|43|52722.73|0.02|0.07|R|F|1993-03-17|1993-02-14|1993-04-16|DELIVER IN PERSON|AIR| use carefully. bold, furious theodolites| +55017|395864|20879|2|21|41156.85|0.08|0.07|A|F|1993-03-07|1993-03-05|1993-03-19|TAKE BACK RETURN|AIR|ts; ironic, express requests are | +55017|274333|36839|3|15|19609.80|0.01|0.04|A|F|1993-02-19|1993-03-06|1993-03-15|TAKE BACK RETURN|REG AIR|g asymptotes according | +55017|712271|37300|4|30|38497.20|0.07|0.06|A|F|1993-02-26|1993-02-20|1993-03-03|DELIVER IN PERSON|TRUCK|ze carefully. even, regular packages p| +55017|137322|12327|5|47|63888.04|0.01|0.08|A|F|1993-04-20|1993-03-30|1993-05-14|COLLECT COD|FOB| even theodoli| +55017|965037|40076|6|43|47385.57|0.09|0.02|R|F|1993-02-13|1993-03-14|1993-03-10|COLLECT COD|FOB| haggle slyly theodolites. s| +55018|627659|2684|1|15|23799.30|0.04|0.00|N|O|1997-03-22|1997-03-11|1997-04-01|DELIVER IN PERSON|FOB| fluffily regular theodol| +55018|55599|5600|2|4|6218.36|0.05|0.02|N|O|1997-01-30|1997-02-19|1997-02-05|DELIVER IN PERSON|AIR|y even account| +55018|440503|3012|3|31|44747.88|0.06|0.02|N|O|1997-04-26|1997-04-02|1997-05-19|TAKE BACK RETURN|RAIL|is. slyly bold excuses cajole fluffily slo| +55019|849524|37073|1|29|42730.92|0.03|0.03|N|O|1997-07-04|1997-09-17|1997-07-23|COLLECT COD|MAIL|even theodoli| +55019|944463|44464|2|4|6029.68|0.03|0.03|N|O|1997-09-27|1997-09-14|1997-10-17|DELIVER IN PERSON|REG AIR| sleep careful| +55019|573850|36362|3|31|59638.73|0.09|0.02|N|O|1997-10-16|1997-08-04|1997-10-22|DELIVER IN PERSON|RAIL| alongside of the r| +55019|692945|30485|4|4|7751.64|0.07|0.02|N|O|1997-06-29|1997-09-11|1997-07-22|COLLECT COD|MAIL|bout the carefully special deposits. s| +55019|313539|26046|5|29|45023.08|0.06|0.07|N|O|1997-09-27|1997-08-14|1997-10-23|DELIVER IN PERSON|TRUCK|ons can cajole slyly| +55019|648861|11374|6|16|28957.28|0.00|0.04|N|O|1997-10-19|1997-09-07|1997-11-06|TAKE BACK RETURN|MAIL| the blithely | +55020|793739|43740|1|24|43984.80|0.05|0.06|N|O|1996-07-20|1996-08-09|1996-07-30|COLLECT COD|FOB|e quickly silent deposits. express th| +55020|367112|29620|2|45|53059.50|0.04|0.04|N|O|1996-06-24|1996-08-19|1996-07-19|DELIVER IN PERSON|REG AIR| furiously even instru| +55020|45510|33011|3|2|2911.02|0.10|0.00|N|O|1996-07-10|1996-07-07|1996-07-15|COLLECT COD|SHIP|eposits haggl| +55020|876328|13880|4|42|54779.76|0.08|0.06|N|O|1996-07-05|1996-07-27|1996-07-22|TAKE BACK RETURN|SHIP|ronic, final dependencies. fl| +55021|131875|31876|1|34|64833.58|0.03|0.03|N|O|1998-04-30|1998-06-29|1998-05-22|NONE|AIR| dolphins wake blithe| +55021|420418|7943|2|41|54873.99|0.05|0.03|N|O|1998-05-27|1998-07-19|1998-06-05|TAKE BACK RETURN|AIR|s. foxes sleep furiously. blith| +55021|956624|19144|3|10|16805.80|0.02|0.06|N|O|1998-05-08|1998-06-29|1998-05-25|NONE|SHIP|es promise blithely along the ironic a| +55021|976631|14189|4|41|70011.19|0.08|0.02|N|O|1998-05-26|1998-06-03|1998-06-02|TAKE BACK RETURN|FOB|unts are regular, bold p| +55022|90004|15007|1|38|37772.00|0.00|0.03|A|F|1995-03-30|1995-05-29|1995-04-16|NONE|REG AIR|aggle quickly above the carefully fin| +55023|203594|41107|1|12|17970.96|0.05|0.01|R|F|1995-03-28|1995-04-03|1995-04-16|DELIVER IN PERSON|AIR|the carefully even instructions? fu| +55023|790673|40674|2|5|8818.20|0.03|0.00|R|F|1995-03-14|1995-03-18|1995-04-01|TAKE BACK RETURN|FOB|arefully silent requests | +55023|834337|46854|3|2|2542.58|0.09|0.03|R|F|1995-04-11|1995-03-10|1995-05-10|DELIVER IN PERSON|TRUCK|tions along the fluffily unusual foxes ca| +55023|690254|2768|4|9|11197.98|0.10|0.02|A|F|1995-01-21|1995-02-18|1995-02-09|NONE|RAIL|es sleep above the unusual| +55023|98702|36206|5|42|71429.40|0.08|0.01|R|F|1995-03-16|1995-02-24|1995-04-14|DELIVER IN PERSON|REG AIR|nto beans. carefully ironic ideas abo| +55023|883075|20627|6|1|1058.03|0.01|0.07|R|F|1995-01-21|1995-03-23|1995-02-13|DELIVER IN PERSON|REG AIR| accounts boost. furiously bold| +55023|833554|33555|7|39|58012.89|0.08|0.04|A|F|1995-04-02|1995-02-25|1995-04-26|DELIVER IN PERSON|SHIP|are blithely al| +55048|529635|4656|1|16|26633.76|0.00|0.01|R|F|1992-10-15|1992-10-14|1992-10-23|TAKE BACK RETURN|MAIL|y slyly express ideas. carefully even | +55048|574143|49166|2|35|42599.20|0.01|0.00|R|F|1992-09-20|1992-11-04|1992-10-13|DELIVER IN PERSON|SHIP|ep slyly unusual asymp| +55048|619010|31523|3|40|37159.20|0.06|0.00|A|F|1992-12-04|1992-10-17|1992-12-19|COLLECT COD|SHIP|l dependencies are. furiously final pin| +55048|696615|34155|4|14|22562.12|0.10|0.00|A|F|1992-09-05|1992-10-19|1992-09-07|COLLECT COD|AIR| hockey players unwind furiously. r| +55048|995151|7671|5|4|4984.44|0.00|0.01|R|F|1992-12-25|1992-11-04|1993-01-09|TAKE BACK RETURN|REG AIR|il the blithely special | +55048|499353|49354|6|42|56797.86|0.00|0.07|A|F|1992-11-27|1992-10-09|1992-12-24|NONE|FOB|ual, special | +55048|615544|40569|7|42|61299.42|0.05|0.07|A|F|1992-09-15|1992-10-18|1992-09-20|COLLECT COD|FOB|sly regular requests after the | +55049|439212|1721|1|21|24174.99|0.04|0.03|A|F|1992-08-07|1992-09-07|1992-08-13|TAKE BACK RETURN|SHIP|foxes nag among the ideas. slyly regul| +55049|820803|33320|2|5|8618.80|0.09|0.07|A|F|1992-08-07|1992-07-19|1992-08-27|DELIVER IN PERSON|MAIL|al requests wak| +55050|797603|10119|1|41|69723.37|0.00|0.01|R|F|1992-04-21|1992-04-07|1992-05-11|DELIVER IN PERSON|AIR|gly carefully iron| +55050|299860|24871|2|29|53935.65|0.10|0.00|A|F|1992-03-23|1992-02-28|1992-04-17|NONE|AIR|es nod blithely regular packages. packa| +55050|745499|45500|3|21|32433.66|0.01|0.04|A|F|1992-02-22|1992-03-19|1992-03-18|DELIVER IN PERSON|TRUCK|deposits. regular, final pin| +55050|595586|45587|4|17|28586.52|0.05|0.08|R|F|1992-03-11|1992-04-04|1992-03-25|NONE|MAIL|iously special acc| +55050|8100|8101|5|42|42340.20|0.04|0.00|A|F|1992-03-15|1992-02-10|1992-04-01|NONE|RAIL|tructions promise. blithely ironic dep| +55050|131147|31148|6|27|31809.78|0.05|0.05|A|F|1992-03-28|1992-03-28|1992-04-22|NONE|AIR|y ironic theodolites. | +55050|185486|10493|7|31|48715.88|0.05|0.00|A|F|1992-03-10|1992-03-21|1992-03-29|TAKE BACK RETURN|AIR|y furiously across the slyl| +55051|458571|46099|1|9|13765.95|0.07|0.07|N|O|1998-06-13|1998-07-03|1998-06-22|TAKE BACK RETURN|RAIL|h furiously according to the flu| +55051|198865|36375|2|21|41241.06|0.02|0.07|N|O|1998-06-06|1998-07-14|1998-06-09|NONE|REG AIR|ng the carefully p| +55051|312962|481|3|20|39499.00|0.09|0.00|N|O|1998-07-06|1998-06-14|1998-07-15|DELIVER IN PERSON|FOB|ost slyly quickly bold package| +55052|240249|40250|1|2|2378.46|0.00|0.03|A|F|1992-06-07|1992-06-28|1992-06-12|DELIVER IN PERSON|AIR|ckages sleep slyly carefully even ideas. s| +55052|853668|28703|2|17|27567.54|0.00|0.03|R|F|1992-07-12|1992-06-05|1992-08-11|TAKE BACK RETURN|RAIL|nts. quickly unusual orbits haggle. ruthles| +55052|589444|1956|3|36|55203.12|0.04|0.07|A|F|1992-07-05|1992-06-13|1992-07-11|NONE|REG AIR|gle busily about the pending,| +55052|781467|6498|4|21|32517.03|0.06|0.00|R|F|1992-07-09|1992-06-24|1992-08-03|DELIVER IN PERSON|AIR|ts. furiously express dep| +55052|109881|47388|5|10|18908.80|0.03|0.00|A|F|1992-08-03|1992-07-09|1992-08-20|TAKE BACK RETURN|AIR|sits! furiously special ide| +55052|761495|11496|6|50|77823.00|0.10|0.00|R|F|1992-06-29|1992-07-05|1992-07-20|DELIVER IN PERSON|RAIL|e carefully b| +55053|640897|15922|1|4|7351.44|0.08|0.07|N|O|1997-06-14|1997-05-22|1997-07-03|NONE|MAIL|xpress pains| +55053|542724|42725|2|44|77734.80|0.02|0.06|N|O|1997-03-26|1997-05-31|1997-03-28|DELIVER IN PERSON|REG AIR|s. slyly i| +55053|554991|4992|3|21|42965.37|0.03|0.00|N|O|1997-06-30|1997-05-06|1997-07-03|DELIVER IN PERSON|FOB|special, final foxes cajole arou| +55054|789139|26685|1|42|51580.20|0.04|0.02|A|F|1993-02-03|1993-03-13|1993-02-06|NONE|MAIL|s. special, regular deposits| +55054|46153|8654|2|33|36271.95|0.09|0.02|A|F|1993-04-18|1993-03-11|1993-05-17|NONE|MAIL|sits are slyly about the f| +55054|679887|29888|3|30|56005.50|0.01|0.06|R|F|1993-04-03|1993-03-17|1993-04-24|DELIVER IN PERSON|REG AIR|arefully sly| +55054|849068|24101|4|10|10170.20|0.00|0.02|A|F|1993-04-09|1993-02-27|1993-04-27|COLLECT COD|REG AIR|as integrate| +55054|269682|19683|5|39|64415.13|0.04|0.04|R|F|1993-02-22|1993-02-11|1993-03-24|DELIVER IN PERSON|REG AIR|s use quickly. quickly qui| +55055|776021|38537|1|35|38394.65|0.07|0.08|N|O|1995-06-21|1995-07-09|1995-07-15|NONE|TRUCK|onic dugouts b| +55055|580070|17604|2|35|40251.75|0.01|0.01|N|O|1995-07-17|1995-07-21|1995-07-24|NONE|RAIL|. regular reque| +55055|226120|26121|3|44|46028.84|0.04|0.06|A|F|1995-05-20|1995-07-15|1995-06-03|TAKE BACK RETURN|TRUCK|even platelets. blithely express ideas| +55055|384696|34697|4|44|78349.92|0.02|0.02|N|O|1995-07-06|1995-07-21|1995-07-19|TAKE BACK RETURN|TRUCK|le blithely ironic dugouts. qu| +55055|580945|30946|5|48|97244.16|0.07|0.02|N|O|1995-08-29|1995-08-08|1995-09-17|NONE|SHIP|al deposits. carefully silent pinto bean| +55080|402875|15384|1|25|44446.25|0.07|0.02|N|O|1996-12-14|1996-12-01|1996-12-30|TAKE BACK RETURN|REG AIR|lly blithely| +55080|108540|46047|2|33|51101.82|0.05|0.01|N|O|1996-12-14|1996-12-13|1997-01-09|COLLECT COD|AIR| beans nag carefully along the unusual acc| +55080|227444|27445|3|13|17828.59|0.06|0.07|N|O|1996-10-16|1996-12-04|1996-11-06|COLLECT COD|TRUCK|ress excuses-- eve| +55080|648557|23582|4|9|13549.68|0.10|0.05|N|O|1996-11-29|1996-11-18|1996-12-12|DELIVER IN PERSON|TRUCK|tions impress quickly bold braids. furio| +55080|283783|33784|5|24|42402.48|0.01|0.04|N|O|1997-01-07|1996-11-09|1997-02-04|TAKE BACK RETURN|FOB|ng, pending excuses. account| +55080|526334|38845|6|50|68015.50|0.06|0.02|N|O|1996-11-26|1996-12-26|1996-12-09|NONE|TRUCK|se across the quick| +55080|84974|22478|7|21|41138.37|0.03|0.03|N|O|1996-10-07|1996-12-12|1996-10-21|TAKE BACK RETURN|MAIL|r requests should have t| +55081|149555|49556|1|23|36904.65|0.03|0.04|N|O|1998-11-21|1998-10-10|1998-12-14|NONE|RAIL|kly ironic accounts engage sl| +55082|369170|6692|1|32|39653.12|0.04|0.08|R|F|1995-01-30|1995-04-18|1995-02-11|DELIVER IN PERSON|TRUCK|uests nag furiously| +55082|624162|36675|2|41|44531.33|0.10|0.03|R|F|1995-02-12|1995-04-21|1995-03-09|DELIVER IN PERSON|REG AIR|y regular instructions? enticing requests a| +55082|288809|1315|3|16|28764.64|0.09|0.07|R|F|1995-03-29|1995-02-28|1995-04-03|DELIVER IN PERSON|AIR|gle furiously regula| +55082|997676|35234|4|19|33698.97|0.07|0.02|A|F|1995-05-21|1995-04-13|1995-06-09|COLLECT COD|AIR|ngly blithely bold dep| +55082|925365|37884|5|37|51441.84|0.09|0.00|R|F|1995-04-28|1995-03-26|1995-05-16|COLLECT COD|SHIP|ely bold foxes| +55082|600516|38053|6|13|18414.24|0.08|0.01|R|F|1995-05-23|1995-03-22|1995-06-10|DELIVER IN PERSON|AIR|t, unusual ideas boost bl| +55082|863931|13932|7|41|77690.49|0.05|0.07|A|F|1995-05-22|1995-03-12|1995-06-10|DELIVER IN PERSON|MAIL|, unusual ideas hang betw| +55083|72848|10352|1|4|7283.36|0.10|0.05|N|O|1997-10-04|1997-12-03|1997-11-01|NONE|MAIL| final warthogs haggle carefully.| +55083|341445|28964|2|49|72835.07|0.01|0.03|N|O|1997-10-28|1997-11-16|1997-11-21|TAKE BACK RETURN|RAIL|theodolites? quickly final packages i| +55083|660012|35039|3|14|13607.72|0.05|0.02|N|O|1997-11-06|1997-11-19|1997-11-07|DELIVER IN PERSON|TRUCK|equests. slyly final deposits sleep quick| +55083|815073|15074|4|46|45449.38|0.08|0.05|N|O|1997-11-22|1997-11-23|1997-12-01|COLLECT COD|FOB|iously final pack| +55083|916739|4294|5|30|52670.70|0.07|0.04|N|O|1997-10-21|1997-10-31|1997-11-08|COLLECT COD|REG AIR|ial foxes. final deposits w| +55084|12738|25239|1|23|37966.79|0.06|0.06|N|O|1996-01-30|1996-01-17|1996-02-04|TAKE BACK RETURN|REG AIR|quests cajole quickly regular | +55084|73341|35843|2|25|32858.50|0.03|0.04|N|O|1996-02-21|1996-02-02|1996-03-04|COLLECT COD|SHIP| silent packages boos| +55085|342686|30205|1|24|41488.08|0.03|0.01|N|O|1998-04-26|1998-04-01|1998-04-30|DELIVER IN PERSON|FOB|he slyly ir| +55085|514633|2164|2|10|16476.10|0.03|0.06|N|O|1998-03-07|1998-03-16|1998-04-05|NONE|TRUCK|ounts against the slowly pending fox| +55085|429164|4181|3|40|43725.60|0.08|0.08|N|O|1998-02-21|1998-04-14|1998-03-13|TAKE BACK RETURN|MAIL|fter the blithely express reque| +55085|950185|186|4|32|39524.48|0.00|0.01|N|O|1998-02-21|1998-03-28|1998-02-25|COLLECT COD|TRUCK|eas affix slyly alongside of the e| +55086|27427|39928|1|30|40632.60|0.00|0.06|R|F|1993-08-13|1993-07-19|1993-08-29|TAKE BACK RETURN|TRUCK|ain blithely furious| +55086|961434|23954|2|5|7476.95|0.07|0.02|A|F|1993-06-18|1993-08-05|1993-06-30|TAKE BACK RETURN|REG AIR|ar dugouts. boldly final package| +55086|809564|34597|3|10|14735.20|0.09|0.04|A|F|1993-09-12|1993-08-04|1993-09-16|COLLECT COD|REG AIR|ly express packages integrate slyly. furiou| +55086|336121|36122|4|25|28927.75|0.10|0.06|A|F|1993-09-14|1993-07-04|1993-10-14|COLLECT COD|RAIL|ronic pinto| +55086|171044|8554|5|4|4460.16|0.10|0.01|A|F|1993-09-20|1993-07-31|1993-10-13|DELIVER IN PERSON|FOB|ackages against t| +55086|731023|6052|6|26|27403.74|0.04|0.07|R|F|1993-06-24|1993-08-19|1993-07-22|DELIVER IN PERSON|RAIL|y regular i| +55086|292823|30339|7|48|87158.88|0.02|0.03|A|F|1993-07-02|1993-07-30|1993-07-28|TAKE BACK RETURN|SHIP|ts. bold ideas cajole car| +55087|469243|31753|1|13|15758.86|0.06|0.07|N|F|1995-06-13|1995-07-18|1995-06-29|COLLECT COD|MAIL|ic ideas. fl| +55087|563063|25575|2|14|15764.56|0.09|0.05|N|O|1995-08-14|1995-06-22|1995-08-25|COLLECT COD|AIR|sts. special, ironic sheaves haggle | +55087|397057|47058|3|45|51931.80|0.05|0.05|N|O|1995-08-28|1995-07-14|1995-09-22|TAKE BACK RETURN|MAIL|riously regular accounts accor| +55087|335650|23169|4|1|1685.64|0.03|0.04|N|O|1995-08-25|1995-07-16|1995-08-28|DELIVER IN PERSON|MAIL|hes. pending instructio| +55112|555619|5620|1|11|18420.49|0.10|0.06|N|O|1996-04-16|1996-04-17|1996-04-24|DELIVER IN PERSON|MAIL|ously ironic accounts haggle blithely re| +55112|272055|47066|2|37|38000.48|0.10|0.08|N|O|1996-05-23|1996-05-02|1996-06-03|COLLECT COD|SHIP|instructions are near| +55112|426252|13777|3|11|12960.53|0.02|0.03|N|O|1996-03-12|1996-03-28|1996-03-16|NONE|MAIL|lithely regula| +55113|919062|31581|1|2|2162.04|0.02|0.07|R|F|1992-08-18|1992-09-17|1992-09-12|DELIVER IN PERSON|SHIP|among the fi| +55113|659283|46823|2|31|38509.75|0.10|0.08|A|F|1992-08-29|1992-10-08|1992-08-30|COLLECT COD|SHIP|about the boldly bold acc| +55113|566233|16234|3|13|16889.73|0.06|0.07|A|F|1992-08-18|1992-10-09|1992-08-29|TAKE BACK RETURN|TRUCK|re quickly bold deposits; | +55114|962716|12717|1|48|85376.16|0.05|0.03|R|F|1994-10-22|1994-09-05|1994-10-25|TAKE BACK RETURN|FOB|wake express, silent accounts. fluffi| +55114|367486|17487|2|35|54371.45|0.02|0.00|R|F|1994-08-25|1994-09-26|1994-09-12|COLLECT COD|AIR|tructions are after the final, pending pack| +55115|87497|25001|1|21|31174.29|0.07|0.00|N|O|1998-05-08|1998-07-04|1998-05-29|DELIVER IN PERSON|TRUCK|s. fluffily even pains about the furious| +55116|980234|42754|1|32|42054.08|0.09|0.05|N|O|1998-04-05|1998-03-10|1998-04-07|TAKE BACK RETURN|AIR|l orbits boost among the final platele| +55117|795591|45592|1|10|16865.60|0.05|0.03|R|F|1992-04-03|1992-02-22|1992-04-11|COLLECT COD|TRUCK| asymptotes. ironic dolphins wak| +55117|484975|34976|2|34|66638.30|0.02|0.06|R|F|1992-04-15|1992-03-17|1992-05-06|COLLECT COD|FOB|ainst the furiously reg| +55117|974225|36745|3|36|46770.48|0.08|0.00|R|F|1992-01-15|1992-03-12|1992-01-18|DELIVER IN PERSON|MAIL| theodolites boost at the theodolites.| +55117|794324|31870|4|33|46803.57|0.01|0.02|R|F|1992-03-24|1992-03-25|1992-04-04|COLLECT COD|SHIP|e blithely carefully | +55117|195357|7861|5|19|27594.65|0.09|0.04|A|F|1992-04-28|1992-02-28|1992-05-08|DELIVER IN PERSON|AIR|deposits. blithely regular ideas na| +55117|358331|20839|6|28|38900.96|0.07|0.07|R|F|1992-03-10|1992-02-16|1992-03-21|NONE|FOB| furiously ironic requests hang after the d| +55118|843193|5710|1|29|32948.35|0.02|0.08|N|O|1998-10-24|1998-09-26|1998-11-08|COLLECT COD|RAIL|gside of the alwa| +55118|542898|17919|2|41|79575.67|0.07|0.07|N|O|1998-09-18|1998-10-01|1998-10-07|NONE|RAIL|al packages. blithely express deposit| +55118|486530|49040|3|2|3033.02|0.06|0.03|N|O|1998-10-28|1998-09-18|1998-11-26|COLLECT COD|FOB|se enticing| +55119|769480|7026|1|16|24791.20|0.01|0.05|R|F|1992-05-19|1992-06-19|1992-06-16|NONE|TRUCK|s use dolphins. silent foxes impres| +55119|642137|42138|2|2|2158.20|0.09|0.07|A|F|1992-08-25|1992-07-29|1992-09-15|TAKE BACK RETURN|MAIL|ding packages can are blithely. blithel| +55119|394614|44615|3|5|8543.00|0.07|0.05|R|F|1992-06-28|1992-06-12|1992-07-05|NONE|MAIL|ly even dependencies. regu| +55119|262395|37406|4|41|55652.58|0.09|0.07|A|F|1992-06-07|1992-06-25|1992-07-07|DELIVER IN PERSON|SHIP|he slyly iron| +55119|57101|7102|5|31|32801.10|0.03|0.04|A|F|1992-06-17|1992-07-02|1992-06-23|NONE|REG AIR|l packages. de| +55144|127645|27646|1|35|58542.40|0.10|0.00|A|F|1995-03-09|1994-12-27|1995-04-06|COLLECT COD|TRUCK|l deposits. furiously| +55144|324654|12173|2|1|1678.64|0.03|0.01|A|F|1995-02-17|1995-02-13|1995-03-14|TAKE BACK RETURN|SHIP|ly pending requests wake blithel| +55144|457682|7683|3|28|45910.48|0.00|0.02|R|F|1995-02-10|1995-02-08|1995-02-26|NONE|FOB|platelets ca| +55144|245514|8019|4|13|18973.50|0.07|0.03|A|F|1995-01-19|1995-01-28|1995-01-29|NONE|TRUCK|sly special packages shall use slyly even i| +55144|348037|48038|5|26|28210.52|0.06|0.05|A|F|1994-12-29|1994-12-25|1995-01-25|TAKE BACK RETURN|RAIL|furiously according to the slyly ironi| +55145|633467|33468|1|16|22406.88|0.08|0.03|R|F|1992-07-12|1992-07-03|1992-07-27|COLLECT COD|TRUCK| slyly bold p| +55145|664965|14966|2|9|17369.37|0.02|0.05|R|F|1992-06-16|1992-07-26|1992-06-23|COLLECT COD|RAIL|ly about the slyly ironic foxes. b| +55145|55859|43363|3|42|76223.70|0.04|0.05|A|F|1992-07-14|1992-07-27|1992-07-19|COLLECT COD|RAIL|ost furiously alon| +55145|807625|32658|4|9|13793.22|0.04|0.01|R|F|1992-08-11|1992-07-20|1992-09-07|TAKE BACK RETURN|AIR|ter the even packages. | +55146|622616|47641|1|27|41541.66|0.08|0.00|A|F|1992-06-01|1992-06-19|1992-06-17|NONE|TRUCK|hely about the slyly regular request| +55146|294454|31970|2|41|59386.04|0.02|0.05|A|F|1992-05-17|1992-05-18|1992-06-04|COLLECT COD|TRUCK|uctions boost fluffily. bold decoys acc| +55146|887355|24907|3|42|56377.02|0.04|0.07|R|F|1992-04-13|1992-06-16|1992-04-24|NONE|SHIP|gular deposits cajole blithely af| +55146|764728|2274|4|27|48402.63|0.07|0.05|R|F|1992-07-20|1992-06-19|1992-07-31|TAKE BACK RETURN|TRUCK|uriously final, regular platelets. bli| +55146|766698|41729|5|12|21175.92|0.02|0.02|R|F|1992-06-17|1992-06-04|1992-06-23|DELIVER IN PERSON|REG AIR|al deposits are qui| +55146|884167|9202|6|8|9208.96|0.00|0.02|A|F|1992-05-24|1992-05-13|1992-06-15|COLLECT COD|TRUCK|s. slyly special p| +55147|246998|22007|1|33|64184.34|0.06|0.05|R|F|1994-10-10|1994-12-18|1994-10-17|TAKE BACK RETURN|REG AIR|ously silent deposits are care| +55147|287835|25351|2|2|3645.64|0.01|0.00|A|F|1994-11-15|1994-12-14|1994-12-01|NONE|TRUCK|s nag. bold courts wake courts. ca| +55147|639359|39360|3|15|19474.80|0.04|0.06|R|F|1994-10-10|1994-11-05|1994-10-21|NONE|RAIL|blithely unusual accounts hagg| +55148|922305|47342|1|22|29199.72|0.08|0.07|N|O|1998-01-17|1997-11-30|1998-01-21|NONE|RAIL|unusual accounts sleep qu| +55149|531302|18833|1|17|22665.76|0.05|0.01|N|O|1997-07-25|1997-08-11|1997-08-03|TAKE BACK RETURN|MAIL|ly regular | +55149|591011|16034|2|23|25345.77|0.04|0.08|N|O|1997-07-02|1997-08-02|1997-07-23|COLLECT COD|SHIP|ons. silent, ironic theodolites haggle car| +55149|119156|44161|3|16|18802.40|0.06|0.04|N|O|1997-09-13|1997-07-25|1997-09-14|COLLECT COD|AIR|he carefully special warthogs. warthogs| +55149|651430|38970|4|21|29009.40|0.01|0.05|N|O|1997-09-04|1997-06-26|1997-09-17|DELIVER IN PERSON|AIR| silent instructio| +55149|572011|47034|5|23|24908.77|0.10|0.05|N|O|1997-06-03|1997-07-25|1997-06-05|DELIVER IN PERSON|FOB|cial accounts sleep | +55149|786910|36911|6|9|17971.92|0.04|0.04|N|O|1997-07-05|1997-07-18|1997-07-12|COLLECT COD|AIR|lites are slyly. furiously unus| +55149|586598|11621|7|9|15161.13|0.10|0.06|N|O|1997-07-24|1997-07-18|1997-08-09|COLLECT COD|REG AIR|nts. pending d| +55150|944515|19552|1|39|60819.33|0.00|0.07|A|F|1994-10-03|1994-10-26|1994-10-20|NONE|SHIP|telets instead of the express deposits gro| +55150|449707|24724|2|46|76207.28|0.08|0.03|R|F|1994-11-11|1994-09-19|1994-12-08|TAKE BACK RETURN|RAIL|out the expre| +55151|177157|39661|1|50|61707.50|0.01|0.06|A|F|1994-05-14|1994-06-07|1994-05-21|DELIVER IN PERSON|SHIP|y across the slyly | +55176|419879|7404|1|40|71954.00|0.04|0.02|R|F|1995-04-14|1995-04-22|1995-04-28|TAKE BACK RETURN|MAIL|ound the final decoys | +55177|957162|7163|1|9|10972.08|0.05|0.03|R|F|1993-06-05|1993-04-17|1993-07-04|DELIVER IN PERSON|AIR| regular theodolites; regular packages are.| +55177|15321|15322|2|24|29671.68|0.02|0.05|R|F|1993-04-10|1993-05-09|1993-05-04|TAKE BACK RETURN|AIR|bout the blithely| +55177|484199|34200|3|41|48509.97|0.07|0.01|A|F|1993-04-27|1993-04-28|1993-05-24|TAKE BACK RETURN|AIR|he asymptotes sleep regularly across the | +55177|931737|19292|4|19|33605.11|0.10|0.02|A|F|1993-04-20|1993-04-07|1993-05-03|DELIVER IN PERSON|AIR|er the permane| +55177|701139|38682|5|6|6840.60|0.05|0.03|A|F|1993-03-29|1993-03-27|1993-04-14|COLLECT COD|FOB|ests. slyly even foxes hang| +55178|515663|3194|1|36|60431.04|0.04|0.03|A|F|1992-08-01|1992-07-24|1992-08-17|NONE|SHIP|l dolphins wake furiously blithely bold| +55179|233929|21442|1|38|70790.58|0.03|0.01|N|O|1997-12-09|1997-11-28|1997-12-29|TAKE BACK RETURN|FOB| the bold, unusual asympt| +55179|639491|39492|2|22|31470.12|0.05|0.07|N|O|1997-10-11|1997-12-14|1997-10-26|COLLECT COD|RAIL|uests are excus| +55179|911386|11387|3|23|32138.82|0.08|0.03|N|O|1997-12-27|1997-12-27|1998-01-04|DELIVER IN PERSON|RAIL|s dazzle fluffily after the pend| +55179|649045|24070|4|45|44730.45|0.07|0.02|N|O|1997-12-03|1997-11-02|1997-12-14|NONE|TRUCK| carefully. ironic, ironic ideas na| +55179|484205|34206|5|25|29729.50|0.02|0.02|N|O|1997-11-26|1997-12-22|1997-12-25|DELIVER IN PERSON|TRUCK|ending deposits at the qui| +55179|31524|19025|6|4|5822.08|0.00|0.05|N|O|1997-10-30|1997-11-12|1997-10-31|DELIVER IN PERSON|MAIL|ly. slyly pending de| +55179|807938|32971|7|50|92294.50|0.01|0.08|N|O|1997-11-16|1997-11-14|1997-12-09|TAKE BACK RETURN|RAIL|ways regular packages. ironic| +55180|5884|5885|1|33|59066.04|0.01|0.05|A|F|1992-09-30|1992-10-10|1992-10-21|NONE|RAIL|ing dependencies impress at the spec| +55180|875665|13217|2|42|68906.04|0.06|0.08|R|F|1992-11-04|1992-10-08|1992-11-13|DELIVER IN PERSON|MAIL|refully ironic| +55180|297940|47941|3|28|54262.04|0.06|0.00|A|F|1992-12-12|1992-11-12|1993-01-01|COLLECT COD|SHIP|furiously. carefully| +55180|467987|30497|4|2|3909.92|0.00|0.04|R|F|1992-11-04|1992-10-22|1992-11-18|COLLECT COD|FOB|unts instead of the quickly ironic platelet| +55180|449726|49727|5|47|78757.90|0.09|0.04|R|F|1992-10-07|1992-09-21|1992-10-27|DELIVER IN PERSON|REG AIR|ut the slyly speci| +55181|544951|44952|1|10|19959.30|0.00|0.02|R|F|1992-11-06|1992-09-26|1992-11-25|NONE|FOB|ely unusual requests cajo| +55181|982317|7356|2|37|51772.99|0.09|0.01|R|F|1992-11-08|1992-09-23|1992-11-19|TAKE BACK RETURN|RAIL|ic pinto beans sleep slyly quickly ex| +55181|792673|17704|3|44|77688.16|0.04|0.04|A|F|1992-10-11|1992-11-01|1992-10-24|NONE|REG AIR|riously final instructions haggle a| +55181|447654|10163|4|50|80081.50|0.02|0.08|A|F|1992-12-08|1992-09-28|1992-12-31|NONE|FOB|ilent foxes haggle blithely. slyly final re| +55181|705795|43338|5|8|14406.08|0.08|0.06|A|F|1992-09-07|1992-09-23|1992-09-22|DELIVER IN PERSON|SHIP|accounts are always according to the fur| +55182|186171|36172|1|8|10057.36|0.00|0.08|A|F|1992-12-20|1992-11-07|1993-01-04|COLLECT COD|MAIL|side of the regular, special | +55182|959812|22332|2|33|61768.41|0.00|0.00|A|F|1992-11-21|1992-12-19|1992-12-16|TAKE BACK RETURN|TRUCK|ing to the ironic, unusual| +55182|555431|42965|3|44|65402.04|0.09|0.06|A|F|1992-11-15|1992-11-27|1992-11-27|NONE|TRUCK|al instructions cajole. unusual, regular re| +55182|114194|14195|4|34|41078.46|0.05|0.02|R|F|1992-09-25|1992-10-25|1992-10-01|NONE|AIR|ithely silent requests haggle accor| +55183|603611|16124|1|25|37864.50|0.08|0.03|R|F|1993-06-08|1993-05-20|1993-07-06|DELIVER IN PERSON|FOB|ully. furiously quick | +55183|884923|34924|2|30|57236.40|0.03|0.00|A|F|1993-04-06|1993-05-09|1993-05-06|NONE|FOB|uickly express asymptotes. f| +55208|875480|515|1|41|59673.04|0.07|0.05|R|F|1994-08-27|1994-09-02|1994-09-22|TAKE BACK RETURN|AIR|ronic accounts. regular asympto| +55208|186676|11683|2|10|17626.70|0.00|0.04|A|F|1994-08-19|1994-09-16|1994-09-16|TAKE BACK RETURN|FOB|he final depen| +55208|461840|36859|3|16|28829.12|0.00|0.03|A|F|1994-08-03|1994-10-06|1994-08-07|COLLECT COD|TRUCK|ffix fluffily | +55208|132362|7367|4|3|4183.08|0.04|0.06|A|F|1994-08-14|1994-09-07|1994-09-12|COLLECT COD|AIR|quick accounts. fluffily | +55208|599459|11971|5|38|59220.34|0.09|0.07|A|F|1994-10-16|1994-09-26|1994-11-15|NONE|RAIL|phins across the| +55209|53766|28769|1|22|37834.72|0.06|0.01|N|O|1998-03-12|1998-03-30|1998-04-07|DELIVER IN PERSON|SHIP|players: blithely regular theodoli| +55209|628588|16125|2|16|24264.80|0.07|0.02|N|O|1998-03-22|1998-04-20|1998-03-30|NONE|SHIP| epitaphs. e| +55209|671663|21664|3|37|60481.31|0.04|0.05|N|O|1998-03-18|1998-04-27|1998-04-08|NONE|SHIP| boost abo| +55209|630714|30715|4|45|74010.60|0.06|0.02|N|O|1998-02-20|1998-03-27|1998-02-26|NONE|FOB|lent requests cajole even pinto| +55209|403014|3015|5|29|26592.71|0.04|0.06|N|O|1998-05-26|1998-03-17|1998-06-13|TAKE BACK RETURN|TRUCK| detect quickly dependencies. regular, reg| +55209|454784|42312|6|11|19126.36|0.00|0.04|N|O|1998-05-21|1998-05-09|1998-05-28|COLLECT COD|MAIL|d packages. iron| +55209|546338|33869|7|34|47066.54|0.05|0.00|N|O|1998-05-18|1998-05-09|1998-05-19|TAKE BACK RETURN|MAIL|ar requests above the bold, express d| +55210|301282|26295|1|12|15399.24|0.07|0.00|N|O|1998-01-31|1998-01-25|1998-02-12|NONE|SHIP|ns are blithely. carefully final a| +55211|180581|43085|1|32|53170.56|0.02|0.02|R|F|1993-09-19|1993-08-06|1993-09-24|TAKE BACK RETURN|AIR|aggle. carefully regular req| +55211|9884|9885|2|40|71755.20|0.01|0.01|A|F|1993-07-08|1993-08-31|1993-07-26|TAKE BACK RETURN|FOB|eans haggle furiously| +55211|115979|40984|3|19|37904.43|0.09|0.01|R|F|1993-09-10|1993-08-24|1993-10-10|DELIVER IN PERSON|REG AIR|e carefully b| +55211|257074|7075|4|45|46397.70|0.10|0.05|R|F|1993-09-11|1993-08-05|1993-09-20|NONE|RAIL|p carefully| +55211|638468|26005|5|47|66102.21|0.02|0.07|R|F|1993-10-06|1993-09-16|1993-10-21|NONE|TRUCK|structions. care| +55212|858080|45632|1|20|20760.80|0.04|0.01|N|O|1996-01-18|1996-01-17|1996-02-16|NONE|TRUCK|arefully unusual deposits.| +55212|741515|4030|2|12|18677.76|0.05|0.06|N|O|1996-03-29|1996-02-23|1996-04-07|NONE|REG AIR|kages. furiously final requests c| +55212|628209|40722|3|35|39800.95|0.00|0.08|N|O|1996-02-01|1996-01-27|1996-02-02|COLLECT COD|FOB| even deposits. furiously regular account| +55213|580518|5541|1|44|70333.56|0.00|0.04|N|O|1998-01-02|1998-03-17|1998-01-07|COLLECT COD|MAIL|y over the regular sentiments. care| +55213|750344|345|2|8|11154.48|0.08|0.05|N|O|1998-01-09|1998-02-18|1998-02-08|DELIVER IN PERSON|FOB| packages integrate. dep| +55213|24990|24991|3|28|53619.72|0.01|0.08|N|O|1998-04-15|1998-02-28|1998-04-25|TAKE BACK RETURN|AIR|ackages sleep across the qui| +55213|4071|41572|4|15|14626.05|0.07|0.07|N|O|1998-03-23|1998-02-20|1998-03-31|DELIVER IN PERSON|FOB|even requests cajole carefully special| +55213|416688|29197|5|21|33697.86|0.08|0.05|N|O|1998-02-01|1998-02-17|1998-02-07|DELIVER IN PERSON|FOB|ntly final deposit| +55214|520301|7832|1|34|44923.52|0.09|0.07|N|O|1997-10-05|1997-11-04|1997-10-13|DELIVER IN PERSON|RAIL|ckly regular courts engage carefully quic| +55214|693053|18080|2|2|2092.04|0.10|0.07|N|O|1997-09-20|1997-11-29|1997-10-16|DELIVER IN PERSON|SHIP|ic excuses are qu| +55214|137350|12355|3|48|66592.80|0.02|0.07|N|O|1997-12-30|1997-10-27|1998-01-03|TAKE BACK RETURN|REG AIR|y bold pinto be| +55214|425783|25784|4|17|29048.92|0.07|0.07|N|O|1997-10-14|1997-10-13|1997-11-13|NONE|AIR|old accounts sleep ac| +55214|122620|35123|5|42|68990.04|0.05|0.00|N|O|1997-10-12|1997-10-20|1997-11-04|COLLECT COD|AIR|ate carefully bes| +55215|980537|18095|1|17|27497.33|0.06|0.08|N|O|1996-03-22|1996-01-25|1996-04-20|NONE|FOB|cial accounts haggle furiously| +55215|871422|21423|2|19|26474.22|0.05|0.04|N|O|1996-01-28|1996-01-06|1996-02-22|TAKE BACK RETURN|AIR|s are. special idea| +55215|989056|39057|3|3|3435.03|0.07|0.05|N|O|1996-02-15|1996-02-21|1996-02-26|TAKE BACK RETURN|SHIP|ly final packages use slyly | +55215|63535|26037|4|26|38961.78|0.10|0.07|N|O|1996-02-20|1996-02-03|1996-03-10|TAKE BACK RETURN|RAIL|ggle slyly. | +55215|830081|17630|5|24|24264.96|0.05|0.08|N|O|1996-03-05|1996-02-24|1996-03-09|COLLECT COD|SHIP|ular deposits. blithely bol| +55240|135090|22597|1|29|32627.61|0.03|0.01|N|O|1996-12-03|1996-09-19|1997-01-02|COLLECT COD|MAIL|cuses. furiousl| +55240|453836|16346|2|7|12528.67|0.03|0.05|N|O|1996-08-08|1996-09-12|1996-08-11|COLLECT COD|TRUCK|iments mold furiously. regular tithes| +55240|608258|45795|3|36|41983.92|0.08|0.01|N|O|1996-10-08|1996-09-06|1996-10-21|NONE|REG AIR|ideas will nag across t| +55240|988777|13816|4|49|91420.77|0.06|0.08|N|O|1996-11-11|1996-10-14|1996-11-28|TAKE BACK RETURN|TRUCK|slyly unusual| +55240|372050|34558|5|17|19074.68|0.04|0.07|N|O|1996-11-10|1996-09-25|1996-11-21|TAKE BACK RETURN|FOB|unusual pinto beans. car| +55240|29129|29130|6|32|33859.84|0.10|0.07|N|O|1996-09-17|1996-09-13|1996-10-10|COLLECT COD|TRUCK|ke according to th| +55240|567033|17034|7|16|17600.16|0.09|0.08|N|O|1996-09-04|1996-09-22|1996-09-13|DELIVER IN PERSON|REG AIR|ully packages. slyly express dolphins a| +55241|108285|8286|1|46|59490.88|0.05|0.05|R|F|1992-06-10|1992-06-30|1992-07-07|TAKE BACK RETURN|FOB| unusual requests cajole. furiou| +55242|780690|30691|1|7|12394.62|0.02|0.04|N|O|1995-11-27|1995-10-31|1995-12-06|COLLECT COD|TRUCK|slyly. furiously express asym| +55243|464498|27008|1|29|42411.63|0.07|0.05|R|F|1992-11-21|1992-10-09|1992-12-10|NONE|REG AIR|instruction| +55243|802507|15024|2|30|42283.80|0.03|0.02|A|F|1992-11-12|1992-10-22|1992-12-01|DELIVER IN PERSON|SHIP|luffily bold requests. never pending | +55243|729803|4832|3|3|5498.31|0.04|0.08|A|F|1992-10-29|1992-10-02|1992-11-03|NONE|SHIP|usual requests. carefully pendi| +55243|795382|20413|4|46|67958.10|0.10|0.08|R|F|1992-11-20|1992-09-30|1992-12-19|NONE|SHIP|pecial requests. furiously pending dep| +55243|976727|26728|5|40|72147.20|0.06|0.05|A|F|1992-11-06|1992-09-01|1992-11-11|DELIVER IN PERSON|MAIL|f the expre| +55244|687221|49735|1|34|41078.46|0.09|0.02|R|F|1993-10-09|1993-10-16|1993-10-28|TAKE BACK RETURN|FOB|ests. even requests above t| +55244|116489|16490|2|3|4516.44|0.10|0.02|R|F|1993-10-09|1993-10-13|1993-11-03|TAKE BACK RETURN|REG AIR|se quickly re| +55244|816602|29119|3|46|69853.76|0.07|0.04|R|F|1993-08-26|1993-09-08|1993-09-24|DELIVER IN PERSON|FOB|y final foxes. express, | +55244|623529|11066|4|15|21787.35|0.06|0.01|A|F|1993-09-25|1993-09-14|1993-10-11|NONE|SHIP|ost final f| +55245|586500|49012|1|39|61872.72|0.06|0.00|N|O|1998-10-05|1998-10-18|1998-11-04|DELIVER IN PERSON|FOB|e furiously | +55245|289981|27497|2|10|19709.70|0.02|0.04|N|O|1998-08-19|1998-09-12|1998-09-07|DELIVER IN PERSON|FOB|ckly pending instructions sleep | +55245|703605|41148|3|48|77211.36|0.03|0.06|N|O|1998-11-08|1998-10-24|1998-11-11|COLLECT COD|TRUCK|uests print ir| +55245|475215|234|4|42|49987.98|0.08|0.01|N|O|1998-08-07|1998-10-06|1998-08-31|DELIVER IN PERSON|FOB| cajole. blithely ironic ideas thra| +55246|268150|5666|1|2|2236.28|0.02|0.03|A|F|1992-10-17|1992-11-20|1992-10-18|TAKE BACK RETURN|RAIL|t slyly. qui| +55246|781688|6719|2|25|44241.25|0.07|0.05|R|F|1992-12-27|1992-11-17|1993-01-06|TAKE BACK RETURN|MAIL|packages across the fluffily special cour| +55246|818163|18164|3|31|33514.72|0.06|0.01|A|F|1992-10-10|1992-12-31|1992-10-20|COLLECT COD|TRUCK|al foxes. slyly| +55246|864735|2287|4|26|44191.94|0.06|0.05|A|F|1992-10-20|1993-01-04|1992-10-27|DELIVER IN PERSON|REG AIR|nt pinto bean| +55246|588612|13635|5|23|39113.57|0.10|0.00|A|F|1992-12-22|1992-11-21|1993-01-07|TAKE BACK RETURN|FOB|ptotes. slyly| +55246|787755|25301|6|22|40539.84|0.03|0.04|R|F|1992-12-03|1992-12-14|1992-12-18|NONE|FOB|the final grouches wake furiously | +55247|577698|40210|1|16|28410.72|0.02|0.04|R|F|1992-12-09|1993-02-28|1992-12-17|TAKE BACK RETURN|MAIL|de of the pinto beans. carefu| +55247|362923|25431|2|17|33760.47|0.09|0.04|R|F|1992-12-16|1993-02-10|1993-01-10|COLLECT COD|FOB|s. bold orbits are fluffily| +55272|849216|36765|1|25|29129.25|0.05|0.07|N|O|1997-08-22|1997-09-28|1997-09-09|DELIVER IN PERSON|TRUCK|ickly about the instructions.| +55273|348258|10765|1|1|1306.24|0.01|0.00|A|F|1995-03-13|1995-04-06|1995-03-24|DELIVER IN PERSON|RAIL|cial theodolites are fluffil| +55273|171628|21629|2|17|28893.54|0.05|0.07|A|F|1995-02-15|1995-03-11|1995-03-11|NONE|SHIP|yly; regular ideas wake. furiou| +55273|540743|15764|3|29|51727.88|0.07|0.03|R|F|1995-04-05|1995-02-15|1995-04-20|TAKE BACK RETURN|RAIL|ing multipliers sleep busily. final fox| +55274|940018|27573|1|19|20101.43|0.05|0.05|A|F|1993-06-21|1993-07-05|1993-07-09|TAKE BACK RETURN|REG AIR|lithely regular requests. furiously | +55274|877354|39872|2|31|41270.61|0.00|0.02|R|F|1993-08-02|1993-08-25|1993-08-22|DELIVER IN PERSON|TRUCK|requests. slyly bold deposits sl| +55274|683046|33047|3|17|17493.17|0.10|0.07|R|F|1993-07-24|1993-07-16|1993-07-28|TAKE BACK RETURN|FOB|ke carefully blithely ironic deposit| +55274|952603|27642|4|7|11588.92|0.09|0.02|R|F|1993-08-05|1993-07-06|1993-08-18|COLLECT COD|MAIL|ly unusual p| +55274|390556|40557|5|39|64215.06|0.03|0.08|R|F|1993-08-05|1993-08-17|1993-08-23|COLLECT COD|SHIP|tly even pinto beans are quickly| +55274|62521|25|6|42|62307.84|0.02|0.00|R|F|1993-08-10|1993-07-20|1993-08-16|COLLECT COD|REG AIR|symptotes nod furiously. request| +55275|764681|39712|1|14|24439.10|0.02|0.03|N|O|1996-12-03|1996-12-19|1996-12-17|DELIVER IN PERSON|SHIP|lyly regular theo| +55275|983858|33859|2|37|71846.97|0.07|0.08|N|O|1997-01-16|1997-01-02|1997-02-03|TAKE BACK RETURN|AIR|y regular foxes according | +55275|685371|47885|3|8|10850.72|0.00|0.05|N|O|1997-02-21|1996-12-25|1997-03-21|DELIVER IN PERSON|REG AIR|osits are ca| +55276|6545|19046|1|28|40643.12|0.00|0.00|N|O|1997-07-19|1997-05-04|1997-07-29|DELIVER IN PERSON|TRUCK|ar packages around the busily unus| +55276|991739|4259|2|14|25629.66|0.05|0.01|N|O|1997-07-09|1997-06-13|1997-07-19|TAKE BACK RETURN|SHIP| fluffily. | +55276|153800|3801|3|28|51906.40|0.01|0.02|N|O|1997-05-17|1997-06-09|1997-05-19|NONE|RAIL|furiously after the| +55276|908892|46447|4|13|24711.05|0.04|0.06|N|O|1997-06-22|1997-06-19|1997-06-23|NONE|REG AIR|s. slyly ironic dependencies | +55276|743502|43503|5|9|13909.23|0.02|0.06|N|O|1997-06-28|1997-06-19|1997-07-14|COLLECT COD|SHIP| blithely abo| +55276|25220|221|6|29|33211.38|0.09|0.07|N|O|1997-04-23|1997-05-26|1997-05-21|NONE|SHIP|uriously silent requests. carefu| +55277|706967|44510|1|30|59217.90|0.04|0.08|N|O|1996-02-01|1996-03-21|1996-02-06|DELIVER IN PERSON|AIR|ven, regular accounts c| +55277|978815|41335|2|5|9468.85|0.08|0.05|N|O|1996-04-23|1996-03-27|1996-05-02|COLLECT COD|AIR|quickly final | +55277|932553|45072|3|18|28539.18|0.10|0.02|N|O|1996-01-21|1996-02-16|1996-01-23|DELIVER IN PERSON|FOB|ts wake quickly bold dependencies! slyly s| +55277|416703|16704|4|40|64787.20|0.05|0.00|N|O|1996-01-15|1996-02-02|1996-01-28|COLLECT COD|RAIL|ly pending frays. bl| +55277|512528|59|5|12|18486.00|0.10|0.05|N|O|1996-03-30|1996-02-24|1996-04-02|TAKE BACK RETURN|SHIP|ar deposit| +55277|57129|7130|6|4|4344.48|0.03|0.06|N|O|1996-04-13|1996-03-07|1996-04-15|NONE|RAIL|excuses. fluffily ironic packages | +55278|199349|11853|1|32|46346.88|0.09|0.04|N|F|1995-05-28|1995-04-19|1995-06-20|COLLECT COD|RAIL|refully abo| +55278|444685|19702|2|9|14666.94|0.08|0.03|R|F|1995-04-20|1995-03-28|1995-05-01|DELIVER IN PERSON|REG AIR|yly special theodolites hagg| +55278|809232|34265|3|10|11411.90|0.09|0.07|A|F|1995-02-20|1995-04-20|1995-03-11|TAKE BACK RETURN|MAIL| regular requests| +55278|745776|20805|4|19|34613.06|0.02|0.07|A|F|1995-05-02|1995-05-04|1995-05-18|DELIVER IN PERSON|TRUCK|egular ideas detect furiously r| +55278|255125|30136|5|44|47524.84|0.05|0.01|N|F|1995-06-10|1995-04-09|1995-07-06|NONE|AIR|ven instructions. theo| +55278|871800|46835|6|35|62011.60|0.05|0.05|A|F|1995-04-26|1995-03-19|1995-04-27|TAKE BACK RETURN|TRUCK|o the furious| +55279|962629|12630|1|28|47364.24|0.04|0.08|R|F|1992-11-18|1992-12-20|1992-12-10|COLLECT COD|REG AIR|gular accounts detect.| +55279|892106|4624|2|26|28549.56|0.00|0.01|R|F|1993-01-02|1993-01-11|1993-01-08|DELIVER IN PERSON|REG AIR|g instructions! qu| +55279|615874|40899|3|46|82332.64|0.09|0.06|R|F|1993-02-17|1993-01-11|1993-03-16|NONE|TRUCK|le. fluffily express deposi| +55279|983850|8889|4|26|50279.06|0.03|0.01|A|F|1993-01-13|1992-12-11|1993-01-26|DELIVER IN PERSON|RAIL|boost blith| +55279|556040|6041|5|38|41648.76|0.05|0.03|R|F|1993-02-20|1993-01-22|1993-03-10|NONE|FOB|refully. slyly express inst| +55304|518716|31227|1|47|81530.43|0.00|0.03|N|O|1997-10-11|1997-10-28|1997-10-22|TAKE BACK RETURN|RAIL|equests haggle i| +55304|49189|11690|2|39|44389.02|0.03|0.06|N|O|1997-12-14|1997-10-29|1997-12-17|COLLECT COD|REG AIR|ual asymptotes are blithely upon th| +55305|653390|28417|1|40|53734.40|0.02|0.00|N|O|1998-08-23|1998-05-29|1998-09-13|TAKE BACK RETURN|SHIP|ironic instructions wak| +55306|844602|44603|1|24|37117.44|0.05|0.06|N|O|1996-03-21|1996-06-04|1996-04-15|DELIVER IN PERSON|SHIP|furiously eve| +55306|213878|1391|2|1|1791.86|0.10|0.08|N|O|1996-06-25|1996-04-27|1996-07-22|COLLECT COD|REG AIR|ns! final waters after the slyly ev| +55306|631374|43887|3|48|62656.32|0.08|0.06|N|O|1996-04-02|1996-06-15|1996-04-12|TAKE BACK RETURN|AIR|xpress accounts. ironic dependenc| +55306|488957|1467|4|12|23351.16|0.06|0.06|N|O|1996-05-21|1996-05-15|1996-05-24|TAKE BACK RETURN|MAIL|ke after the carefully unusu| +55307|963935|13936|1|21|41976.69|0.03|0.00|N|F|1995-05-30|1995-05-12|1995-06-23|TAKE BACK RETURN|REG AIR|kly. busy, regular epitaphs alongside of| +55307|840141|27690|2|37|40000.70|0.02|0.05|N|O|1995-07-27|1995-06-14|1995-08-13|TAKE BACK RETURN|RAIL|uctions are blit| +55308|29089|29090|1|10|10180.80|0.05|0.03|N|O|1997-01-17|1997-01-03|1997-01-23|COLLECT COD|MAIL|nstructions. q| +55308|895233|20268|2|2|2456.38|0.02|0.00|N|O|1997-02-20|1997-01-10|1997-02-21|COLLECT COD|SHIP|sts among the fluffily pending depo| +55308|167627|5137|3|17|28808.54|0.07|0.06|N|O|1996-12-06|1996-12-04|1996-12-10|NONE|FOB|ackages. regular excuses are | +55308|296046|21057|4|17|17714.51|0.00|0.08|N|O|1996-11-09|1997-01-10|1996-11-10|COLLECT COD|MAIL|l foxes cajole above the furiously final | +55309|642990|42991|1|25|48324.00|0.09|0.04|N|O|1996-09-25|1996-10-21|1996-10-05|TAKE BACK RETURN|REG AIR|ily regular ideas are. fluff| +55309|721863|46892|2|31|58429.73|0.05|0.08|N|O|1996-09-23|1996-11-05|1996-09-29|NONE|AIR|oxes-- furiously regular platelets| +55309|335805|35806|3|33|60746.07|0.07|0.07|N|O|1996-10-24|1996-11-12|1996-11-05|COLLECT COD|MAIL|s. furiously reg| +55310|986792|24350|1|22|41332.50|0.07|0.03|N|O|1995-09-02|1995-10-09|1995-09-30|TAKE BACK RETURN|RAIL|. carefully final courts haggle furi| +55310|5240|42741|2|31|35502.44|0.04|0.01|N|O|1995-10-22|1995-10-02|1995-11-08|COLLECT COD|AIR|lar escapades. pending in| +55310|59302|34305|3|21|26487.30|0.01|0.04|N|O|1995-10-10|1995-08-31|1995-11-06|COLLECT COD|REG AIR|ar theodol| +55310|681677|19217|4|43|71321.52|0.01|0.02|N|O|1995-09-29|1995-09-10|1995-10-17|COLLECT COD|FOB| furiously regular dependencies aft| +55310|932895|45414|5|47|90608.95|0.00|0.02|N|O|1995-11-24|1995-09-03|1995-12-13|COLLECT COD|TRUCK|blithely across the furiously| +55311|684237|9264|1|27|32972.40|0.09|0.07|R|F|1995-06-02|1995-06-07|1995-06-09|DELIVER IN PERSON|REG AIR|packages affix carefully quiet| +55311|956513|19033|2|49|76904.03|0.00|0.04|N|O|1995-06-18|1995-05-19|1995-06-22|DELIVER IN PERSON|AIR|of the carefully regular instructions.| +55311|110152|10153|3|36|41837.40|0.02|0.04|N|F|1995-06-04|1995-04-28|1995-07-03|COLLECT COD|MAIL|ites detect| +55311|308654|33667|4|13|21614.32|0.06|0.01|A|F|1995-04-17|1995-05-29|1995-05-15|TAKE BACK RETURN|MAIL|es are carefully about th| +55336|983764|21322|1|30|55431.60|0.07|0.05|R|F|1992-12-08|1992-09-24|1992-12-20|COLLECT COD|TRUCK|g accounts. fluffily unusual requests past| +55336|111965|36970|2|26|51400.96|0.01|0.05|A|F|1992-11-25|1992-09-13|1992-12-02|DELIVER IN PERSON|AIR|onic requests| +55336|788254|25800|3|23|30871.06|0.02|0.03|R|F|1992-11-16|1992-09-26|1992-12-05|NONE|MAIL|packages thrash carefully. always pendi| +55336|170534|45541|4|45|72203.85|0.06|0.08|A|F|1992-10-15|1992-10-18|1992-11-02|DELIVER IN PERSON|REG AIR|sits haggle | +55337|189140|26650|1|2|2458.28|0.03|0.07|A|F|1995-01-12|1995-01-20|1995-01-15|NONE|TRUCK| epitaphs abou| +55337|869986|45021|2|42|82149.48|0.05|0.08|R|F|1994-12-30|1995-01-07|1995-01-04|NONE|SHIP|l requests. carefully unusual accoun| +55337|838759|1276|3|37|62815.27|0.10|0.03|A|F|1995-03-05|1995-02-26|1995-03-23|DELIVER IN PERSON|RAIL|ag. furiously unusual | +55337|18395|5896|4|28|36774.92|0.03|0.03|R|F|1995-03-05|1995-01-08|1995-03-26|NONE|RAIL| according to the pinto beans in| +55337|151064|26071|5|39|43487.34|0.07|0.02|A|F|1995-02-21|1995-01-23|1995-03-22|COLLECT COD|REG AIR|y close theodolites am| +55337|923917|23918|6|40|77634.80|0.09|0.08|R|F|1995-01-05|1995-02-15|1995-01-15|TAKE BACK RETURN|TRUCK|yly quick courts are blithely. even, bold| +55337|264749|39760|7|16|27419.68|0.01|0.07|A|F|1994-12-01|1995-01-30|1994-12-05|COLLECT COD|TRUCK|ess foxes; bravely pending requests wake. | +55338|636287|11312|1|18|22018.50|0.07|0.08|R|F|1993-05-20|1993-03-14|1993-06-08|DELIVER IN PERSON|AIR|lent excuses according to the accounts s| +55338|58906|46410|2|46|85785.40|0.06|0.07|R|F|1993-04-02|1993-03-02|1993-04-17|DELIVER IN PERSON|FOB|hely express deposits. final, | +55338|19535|19536|3|39|56726.67|0.05|0.05|R|F|1993-05-12|1993-04-23|1993-06-11|TAKE BACK RETURN|REG AIR|press blithely. bold deposits sleep care| +55338|311503|49022|4|48|72695.52|0.10|0.03|R|F|1993-04-12|1993-03-08|1993-05-03|NONE|SHIP|y unusual theodol| +55338|421471|21472|5|15|20886.75|0.04|0.00|R|F|1993-04-09|1993-04-20|1993-04-11|DELIVER IN PERSON|RAIL|ously packages.| +55338|658494|8495|6|29|42121.34|0.05|0.01|R|F|1993-02-15|1993-03-30|1993-03-17|TAKE BACK RETURN|FOB|ronic instructions are acr| +55338|302760|15267|7|43|75798.25|0.00|0.06|A|F|1993-04-10|1993-04-02|1993-04-18|COLLECT COD|TRUCK|carefully regular instruc| +55339|481866|19394|1|28|51739.52|0.08|0.06|N|O|1998-05-04|1998-04-06|1998-05-08|NONE|SHIP|ly. slyly even theodolites sl| +55339|709911|22426|2|6|11525.28|0.04|0.03|N|O|1998-03-20|1998-05-03|1998-04-14|DELIVER IN PERSON|RAIL|lar warthogs. bravely ir| +55339|470473|8001|3|28|40416.60|0.07|0.03|N|O|1998-03-12|1998-04-11|1998-03-29|COLLECT COD|FOB|ackages. furiously regular attainment| +55339|232661|20174|4|47|74901.55|0.03|0.04|N|O|1998-04-21|1998-04-17|1998-04-28|TAKE BACK RETURN|RAIL|. carefully ironic foxes wake slyly about | +55339|326299|13818|5|9|11927.52|0.02|0.01|N|O|1998-03-16|1998-04-11|1998-03-26|DELIVER IN PERSON|TRUCK|equests wake fluf| +55340|677844|2871|1|23|41901.63|0.07|0.08|N|O|1995-10-16|1995-08-22|1995-10-24|DELIVER IN PERSON|RAIL|st quickly after the slyly pending d| +55340|521172|21173|2|1|1193.15|0.08|0.04|N|O|1995-08-15|1995-08-18|1995-08-24|TAKE BACK RETURN|REG AIR|s haggle. deposits | +55340|327933|2946|3|27|52944.84|0.02|0.02|N|O|1995-09-11|1995-08-24|1995-09-18|COLLECT COD|FOB|ular theodolites.| +55340|566599|4133|4|49|81612.93|0.00|0.02|N|O|1995-09-04|1995-09-01|1995-09-27|COLLECT COD|AIR| packages beyond the re| +55340|819995|32512|5|48|91917.60|0.09|0.07|N|O|1995-07-12|1995-08-26|1995-07-16|NONE|REG AIR|slyly fluffy packages. quickly| +55340|643560|31097|6|25|37588.25|0.06|0.03|N|O|1995-08-15|1995-08-24|1995-08-22|NONE|RAIL|eans cajole between the furiousl| +55340|300345|25358|7|3|4035.99|0.09|0.06|N|O|1995-08-08|1995-09-15|1995-08-09|TAKE BACK RETURN|AIR|express deposits: | +55341|883194|33195|1|46|54148.90|0.04|0.01|N|O|1997-10-21|1997-09-14|1997-11-17|DELIVER IN PERSON|TRUCK|ructions use across the regular i| +55341|825404|12953|2|39|51845.04|0.03|0.05|N|O|1997-08-24|1997-09-09|1997-08-25|DELIVER IN PERSON|AIR| pending ideas. slyly pending excuses | +55341|554407|4408|3|45|65762.10|0.06|0.00|N|O|1997-10-16|1997-09-14|1997-11-03|NONE|AIR|ly final dolphins. ironi| +55341|906669|6670|4|22|36863.64|0.06|0.08|N|O|1997-09-08|1997-10-27|1997-10-04|DELIVER IN PERSON|MAIL| pinto bea| +55341|370835|20836|5|13|24775.66|0.06|0.00|N|O|1997-11-10|1997-08-29|1997-11-29|TAKE BACK RETURN|FOB| the fluffily bold theodolites. caref| +55342|589403|14426|1|29|43279.02|0.10|0.06|R|F|1992-03-12|1992-04-27|1992-04-01|DELIVER IN PERSON|REG AIR|ole carefully across the fluf| +55342|80311|5314|2|22|28408.82|0.09|0.01|R|F|1992-04-04|1992-04-01|1992-04-13|COLLECT COD|TRUCK|iously careful| +55342|770979|8525|3|41|84047.54|0.01|0.02|R|F|1992-03-07|1992-03-09|1992-03-22|DELIVER IN PERSON|AIR| along the furiously express foxe| +55342|836284|48801|4|2|2440.48|0.00|0.04|A|F|1992-04-02|1992-04-14|1992-04-25|NONE|MAIL|ackages cajole acro| +55342|423786|23787|5|43|73519.68|0.04|0.02|A|F|1992-05-02|1992-03-31|1992-05-10|TAKE BACK RETURN|FOB|. final deposits are after the ironic i| +55342|556864|19376|6|32|61466.88|0.01|0.06|A|F|1992-04-05|1992-04-23|1992-04-11|DELIVER IN PERSON|RAIL| mold quickly slyly express warth| +55343|874869|12421|1|17|31344.94|0.01|0.06|N|O|1995-09-11|1995-07-09|1995-09-21|TAKE BACK RETURN|SHIP|ajole slyly carefully regular foxes. quic| +55343|918793|43830|2|12|21741.00|0.04|0.06|N|O|1995-07-13|1995-08-06|1995-07-15|COLLECT COD|SHIP|lites. permanent pinto b| +55343|145307|7810|3|10|13523.00|0.09|0.00|N|O|1995-07-23|1995-08-19|1995-07-24|DELIVER IN PERSON|MAIL|deposits besides the silent packages use| +55343|173855|23856|4|48|92584.80|0.01|0.02|N|O|1995-07-01|1995-08-15|1995-07-03|DELIVER IN PERSON|REG AIR|l accounts. pend| +55343|972381|9939|5|13|18893.42|0.07|0.07|N|O|1995-09-18|1995-08-04|1995-10-18|TAKE BACK RETURN|TRUCK|lent requests haggle a| +55343|795782|20813|6|15|28166.25|0.00|0.08|N|O|1995-07-08|1995-07-15|1995-07-13|NONE|SHIP|y. unusual, even package| +55368|399077|49078|1|38|44690.28|0.07|0.08|R|F|1993-08-25|1993-11-19|1993-09-06|NONE|TRUCK|nusual dependencies s| +55369|75154|157|1|50|56457.50|0.07|0.07|A|F|1994-03-19|1994-04-29|1994-04-05|DELIVER IN PERSON|RAIL| haggle furiously slyly bold de| +55370|281531|6542|1|31|46888.12|0.09|0.01|R|F|1994-08-12|1994-05-17|1994-08-18|TAKE BACK RETURN|RAIL|ets. fluffily express ideas across the re| +55370|682176|32177|2|23|26637.22|0.00|0.00|R|F|1994-07-15|1994-06-27|1994-07-17|TAKE BACK RETURN|REG AIR|s haggle bravely. express decoys b| +55370|319617|19618|3|13|21275.80|0.01|0.05|A|F|1994-07-14|1994-06-06|1994-08-06|TAKE BACK RETURN|RAIL|lithely bold asymptotes are iron| +55370|793451|5967|4|29|44788.18|0.06|0.04|R|F|1994-07-22|1994-06-28|1994-08-09|COLLECT COD|SHIP|are furiously quickly silent requests. | +55371|336302|11315|1|37|49516.73|0.01|0.08|R|F|1993-12-06|1993-12-08|1993-12-18|NONE|REG AIR|ckages nag| +55371|225300|37805|2|34|41659.86|0.06|0.05|R|F|1994-01-11|1993-10-23|1994-01-15|DELIVER IN PERSON|FOB|ccounts. carefully pend| +55371|615921|3458|3|3|5510.67|0.03|0.03|A|F|1993-11-27|1993-11-01|1993-12-03|COLLECT COD|SHIP|y ironic pinto bean| +55371|781020|43536|4|36|39635.64|0.09|0.05|A|F|1993-11-26|1993-10-30|1993-12-16|TAKE BACK RETURN|MAIL| regular account| +55371|600527|38064|5|23|32832.27|0.02|0.06|A|F|1993-12-22|1993-12-04|1993-12-23|COLLECT COD|AIR| affix. slyly bold packages doze s| +55371|42998|5499|6|5|9704.95|0.04|0.06|A|F|1993-11-08|1993-10-18|1993-11-13|COLLECT COD|REG AIR|ourts sleep fluffily slyly regular deposi| +55371|657440|44980|7|37|51704.17|0.08|0.02|A|F|1994-01-01|1993-12-04|1994-01-15|DELIVER IN PERSON|RAIL|regular theodolites w| +55372|591217|3729|1|31|40553.89|0.01|0.08|N|O|1997-05-01|1997-05-02|1997-05-18|DELIVER IN PERSON|MAIL|ccounts along the furiously i| +55372|575031|54|2|7|7742.07|0.00|0.02|N|O|1997-06-04|1997-04-23|1997-06-15|NONE|TRUCK|e of the fin| +55372|529465|29466|3|19|28394.36|0.05|0.02|N|O|1997-03-30|1997-05-06|1997-04-02|NONE|AIR|lways special ins| +55372|702922|15437|4|13|25023.57|0.07|0.05|N|O|1997-06-03|1997-05-23|1997-06-05|COLLECT COD|TRUCK|he regular requests. boldly even ideas wak| +55373|846800|21833|1|20|34935.20|0.03|0.04|N|O|1996-06-09|1996-07-06|1996-06-27|DELIVER IN PERSON|MAIL|ts cajole blithely after| +55373|153652|41162|2|14|23879.10|0.06|0.03|N|O|1996-07-18|1996-05-30|1996-08-08|COLLECT COD|FOB| instructions about the | +55373|416084|16085|3|34|34002.04|0.04|0.03|N|O|1996-08-18|1996-05-31|1996-09-13|TAKE BACK RETURN|RAIL|ithes affix ironically regular c| +55373|116449|16450|4|9|13188.96|0.04|0.08|N|O|1996-07-17|1996-07-07|1996-08-08|COLLECT COD|FOB|nts. ironic accounts sleep. special, silen| +55373|151627|1628|5|10|16786.20|0.00|0.04|N|O|1996-04-26|1996-06-12|1996-05-04|NONE|TRUCK|. special f| +55373|383822|8837|6|19|36210.39|0.07|0.07|N|O|1996-05-02|1996-06-11|1996-05-27|NONE|REG AIR|ly before the instructions; quickly final | +55373|883109|45627|7|4|4368.24|0.09|0.03|N|O|1996-04-27|1996-06-04|1996-05-01|NONE|MAIL|nly regular warthogs haggle carefu| +55374|412541|66|1|1|1453.52|0.00|0.00|A|F|1993-11-25|1993-11-29|1993-12-23|DELIVER IN PERSON|RAIL|y pending asymptotes: fur| +55374|563664|26176|2|50|86382.00|0.00|0.08|A|F|1993-10-29|1994-01-02|1993-11-25|NONE|TRUCK|ut the ideas; carefully f| +55374|500274|25295|3|31|39501.75|0.03|0.03|A|F|1993-11-18|1993-12-27|1993-11-29|TAKE BACK RETURN|SHIP|deas. deposits sleep f| +55374|97120|9622|4|15|16756.80|0.08|0.04|R|F|1993-10-06|1993-12-18|1993-10-13|DELIVER IN PERSON|RAIL| beans use about the blithely u| +55374|284071|9082|5|17|17936.02|0.06|0.06|R|F|1993-10-13|1993-11-26|1993-10-25|COLLECT COD|MAIL|riously ironic accounts sleep fluffil| +55374|376797|39305|6|8|14990.24|0.05|0.04|A|F|1993-11-20|1993-11-24|1993-11-30|DELIVER IN PERSON|REG AIR|in packages. | +55375|348433|23446|1|44|65182.48|0.06|0.04|A|F|1993-08-25|1993-08-03|1993-09-24|COLLECT COD|SHIP| quickly blithe courts above the regula| +55375|108019|20522|2|8|8216.08|0.03|0.07|A|F|1993-08-24|1993-07-14|1993-09-01|NONE|TRUCK|c accounts. foxes along the quickly | +55375|466552|4080|3|2|3037.06|0.05|0.05|A|F|1993-06-18|1993-08-30|1993-07-09|DELIVER IN PERSON|RAIL|sts. slyly even requ| +55375|327745|40252|4|25|44318.25|0.03|0.00|A|F|1993-07-24|1993-08-25|1993-07-25|COLLECT COD|MAIL|blithely quickly ironic cour| +55375|396880|9388|5|28|55352.36|0.06|0.04|A|F|1993-09-06|1993-08-16|1993-09-25|TAKE BACK RETURN|SHIP|ts. final sauternes play ir| +55400|703665|28694|1|32|53396.16|0.05|0.05|R|F|1992-11-05|1992-10-15|1992-12-05|NONE|REG AIR|y ironic acc| +55400|488205|13224|2|46|54886.28|0.09|0.00|A|F|1992-12-30|1992-11-28|1993-01-19|COLLECT COD|FOB|ly regular accounts. | +55400|260145|22651|3|7|7735.91|0.10|0.04|A|F|1992-12-27|1992-11-24|1992-12-29|DELIVER IN PERSON|MAIL|e even accoun| +55400|249617|24626|4|46|72063.60|0.06|0.06|R|F|1992-09-13|1992-10-16|1992-10-02|COLLECT COD|MAIL|uctions cajole | +55400|302013|14520|5|44|44660.00|0.07|0.02|R|F|1992-12-13|1992-10-14|1993-01-04|COLLECT COD|REG AIR|old, express foxes haggle carefully abo| +55401|943974|6493|1|30|60537.90|0.10|0.06|N|O|1997-09-08|1997-10-07|1997-09-12|COLLECT COD|SHIP| carefully even platelets might are regu| +55401|361633|36648|2|13|22030.06|0.09|0.08|N|O|1997-09-08|1997-09-07|1997-10-08|TAKE BACK RETURN|RAIL|eep carefully furious| +55401|960308|22828|3|19|25996.94|0.01|0.08|N|O|1997-11-05|1997-09-01|1997-11-25|TAKE BACK RETURN|REG AIR| furiously.| +55401|893355|43356|4|14|18876.34|0.10|0.04|N|O|1997-08-25|1997-08-23|1997-09-23|COLLECT COD|SHIP|unts according to th| +55401|606783|6784|5|8|13518.00|0.02|0.07|N|O|1997-08-04|1997-10-18|1997-08-09|DELIVER IN PERSON|MAIL|ut the bold, even asymptotes. slyl| +55401|196984|34494|6|19|39538.62|0.06|0.02|N|O|1997-07-23|1997-09-14|1997-07-27|DELIVER IN PERSON|REG AIR|s wake quickly. careful| +55402|404274|29291|1|25|29456.25|0.03|0.08|N|O|1996-10-18|1996-12-15|1996-11-05|DELIVER IN PERSON|RAIL|gle quickly against the | +55402|619235|19236|2|17|19621.40|0.04|0.05|N|O|1996-10-29|1996-11-06|1996-11-17|DELIVER IN PERSON|MAIL|uses cajole. carefully brave requests sle| +55403|870269|20270|1|11|13631.42|0.09|0.05|A|F|1992-06-21|1992-07-09|1992-07-10|TAKE BACK RETURN|MAIL|dolites sleep slyly. ironic packages cajol| +55403|609510|22023|2|37|52520.76|0.04|0.02|R|F|1992-07-28|1992-08-02|1992-08-08|DELIVER IN PERSON|FOB|ag fluffily along the | +55403|34064|21565|3|8|7984.48|0.00|0.06|R|F|1992-07-31|1992-08-05|1992-08-27|TAKE BACK RETURN|FOB|ly final foxes. iron| +55404|233790|33791|1|26|44818.28|0.09|0.07|A|F|1994-04-17|1994-06-08|1994-05-07|NONE|AIR| final deposits cajole. accounts can sleep| +55404|300455|456|2|40|58217.60|0.04|0.02|A|F|1994-07-12|1994-06-24|1994-07-26|NONE|RAIL| evenly ironic | +55405|969614|19615|1|41|69026.37|0.05|0.06|A|F|1993-03-19|1993-03-21|1993-04-07|COLLECT COD|TRUCK|sleep blithely furiously final requests. bl| +55405|293194|30710|2|16|18994.88|0.07|0.02|A|F|1993-05-03|1993-05-05|1993-05-04|TAKE BACK RETURN|REG AIR|o beans. blithely even ac| +55405|698313|48314|3|3|3933.84|0.08|0.08|A|F|1993-03-17|1993-05-03|1993-03-25|NONE|RAIL|lyly express theodolites doze furiously. fu| +55405|540949|15970|4|42|83576.64|0.09|0.05|R|F|1993-05-18|1993-03-25|1993-05-31|TAKE BACK RETURN|AIR|l, regular instructions use fluffily ag| +55405|717835|5378|5|40|74112.00|0.03|0.07|A|F|1993-05-02|1993-04-18|1993-05-15|TAKE BACK RETURN|RAIL|ructions. final, regular ideas are.| +55405|644849|7362|6|6|10762.86|0.10|0.02|A|F|1993-02-19|1993-03-25|1993-03-20|COLLECT COD|REG AIR|st the even accounts. c| +55406|116566|29069|1|8|12660.48|0.05|0.06|A|F|1994-06-26|1994-06-09|1994-07-10|NONE|TRUCK|along the asymptotes. slyly unusual instr| +55406|117298|29801|2|27|35512.83|0.05|0.07|R|F|1994-05-01|1994-06-16|1994-05-19|NONE|FOB|ld, ironic depos| +55406|414692|39709|3|27|43380.09|0.01|0.01|R|F|1994-07-18|1994-05-30|1994-08-01|DELIVER IN PERSON|FOB| regular deposits. un| +55406|715832|3375|4|33|60977.40|0.03|0.07|A|F|1994-06-10|1994-04-30|1994-06-25|COLLECT COD|RAIL|ar pinto beans. sly| +55406|979675|17233|5|40|70185.20|0.00|0.07|R|F|1994-06-29|1994-05-29|1994-07-03|DELIVER IN PERSON|RAIL|accounts use slyly. slyly ironic acco| +55406|383013|20535|6|21|23016.00|0.00|0.01|R|F|1994-06-06|1994-05-01|1994-06-22|COLLECT COD|REG AIR| requests. c| +55406|289512|14523|7|21|31531.50|0.02|0.05|A|F|1994-05-21|1994-06-20|1994-06-09|TAKE BACK RETURN|FOB| ironic requests. blithely permanent theodo| +55407|822928|47961|1|32|59228.16|0.09|0.00|R|F|1993-07-29|1993-08-26|1993-08-11|DELIVER IN PERSON|TRUCK|to the carefully fi| +55407|946360|33915|2|10|14063.20|0.07|0.00|A|F|1993-08-13|1993-08-18|1993-09-04|DELIVER IN PERSON|MAIL| final requests | +55407|462087|49615|3|19|19932.14|0.00|0.02|R|F|1993-08-13|1993-07-06|1993-09-05|NONE|SHIP| even pack| +55407|280760|18276|4|40|69630.00|0.09|0.02|R|F|1993-06-14|1993-08-24|1993-07-03|TAKE BACK RETURN|MAIL|uctions sleep furiously| +55407|730216|17759|5|40|49847.20|0.07|0.06|R|F|1993-06-30|1993-07-14|1993-07-12|NONE|REG AIR|instructio| +55407|724028|11571|6|3|3155.97|0.08|0.01|R|F|1993-06-28|1993-08-01|1993-07-21|TAKE BACK RETURN|AIR|refully even deposit| +55432|459025|46553|1|46|45264.00|0.08|0.05|N|O|1996-02-14|1996-03-04|1996-02-17|COLLECT COD|RAIL| furiously pending theodolites cajo| +55432|821138|21139|2|14|14827.26|0.10|0.07|N|O|1996-01-27|1996-02-12|1996-01-31|NONE|AIR|ges above the even, special p| +55432|858666|8667|3|24|38990.88|0.08|0.02|N|O|1996-01-09|1996-02-07|1996-01-12|NONE|TRUCK|n foxes. p| +55432|589349|1861|4|3|4314.96|0.07|0.05|N|O|1996-03-30|1996-02-10|1996-04-29|TAKE BACK RETURN|REG AIR|requests. s| +55432|180114|5121|5|24|28658.64|0.01|0.05|N|O|1996-05-02|1996-02-15|1996-05-10|TAKE BACK RETURN|FOB|e of the blithely express foxes wa| +55432|163049|38056|6|38|42257.52|0.07|0.00|N|O|1996-04-18|1996-02-13|1996-05-03|NONE|TRUCK|counts cajole furiously. slyly| +55433|26962|39463|1|42|79336.32|0.08|0.03|R|F|1994-02-01|1994-03-16|1994-02-21|DELIVER IN PERSON|FOB|riously. slyly silent request| +55433|136450|48953|2|31|46079.95|0.02|0.08|A|F|1994-04-18|1994-02-22|1994-05-02|COLLECT COD|MAIL|s instructions. ironic requests| +55434|179926|4933|1|4|8023.68|0.03|0.00|A|F|1994-09-26|1994-09-04|1994-09-30|NONE|TRUCK|y alongside of the sometimes final depths. | +55434|5250|17751|2|35|40433.75|0.03|0.00|A|F|1994-07-23|1994-08-24|1994-07-27|COLLECT COD|AIR|iously final asymptotes| +55434|226685|39190|3|29|46738.43|0.05|0.03|A|F|1994-09-26|1994-09-02|1994-10-12|TAKE BACK RETURN|REG AIR|eep quickly. iron| +55434|880352|5387|4|6|7993.86|0.04|0.00|R|F|1994-10-26|1994-08-03|1994-11-13|NONE|AIR|e slyly fluffily special courts. dolphins c| +55434|63921|1425|5|17|32043.64|0.08|0.03|R|F|1994-08-29|1994-07-29|1994-09-05|TAKE BACK RETURN|FOB|usly stealthily dogged dependencies. slyly| +55434|313124|13125|6|39|44347.29|0.07|0.04|R|F|1994-08-17|1994-09-24|1994-08-26|TAKE BACK RETURN|SHIP|ove the final accounts. furiously| +55434|665650|3190|7|13|21003.06|0.10|0.06|A|F|1994-09-07|1994-09-02|1994-09-13|DELIVER IN PERSON|SHIP| beans. fur| +55435|564355|39378|1|23|32644.59|0.06|0.06|R|F|1992-07-09|1992-04-30|1992-07-21|NONE|AIR|e carefully ironic foxes. bl| +55435|99720|37224|2|9|15477.48|0.09|0.02|R|F|1992-03-21|1992-04-26|1992-04-20|COLLECT COD|REG AIR|earls. final asymptotes sleep. requests ca| +55435|989851|14890|3|24|46579.44|0.09|0.07|A|F|1992-07-08|1992-05-02|1992-07-29|COLLECT COD|TRUCK|theodolite| +55435|420886|8411|4|45|81308.70|0.04|0.04|A|F|1992-05-10|1992-05-06|1992-05-15|DELIVER IN PERSON|MAIL|en instructions. carefully express account| +55435|820020|45053|5|33|31019.34|0.04|0.05|R|F|1992-05-28|1992-06-06|1992-06-08|DELIVER IN PERSON|MAIL| accounts at the regu| +55435|70050|7554|6|42|42842.10|0.05|0.02|A|F|1992-06-04|1992-04-10|1992-06-10|TAKE BACK RETURN|AIR|riously after the slyly pending asymp| +55436|839621|2138|1|29|45256.82|0.10|0.01|R|F|1992-09-17|1992-11-21|1992-09-26|DELIVER IN PERSON|RAIL|ly even requests. ironic dependen| +55436|505693|43224|2|17|28877.39|0.10|0.04|A|F|1992-10-26|1992-11-17|1992-11-05|TAKE BACK RETURN|MAIL| carefully regular requests poach alon| +55436|172242|22243|3|10|13142.40|0.02|0.07|A|F|1992-11-29|1992-11-27|1992-12-11|TAKE BACK RETURN|REG AIR|ular deposits. blithely unusual notornis ar| +55436|868568|43603|4|37|56851.24|0.06|0.02|A|F|1992-09-03|1992-11-03|1992-09-18|TAKE BACK RETURN|REG AIR|tructions. special, bold foxes use flu| +55436|20151|7652|5|29|31063.35|0.07|0.00|R|F|1992-09-25|1992-11-09|1992-10-01|DELIVER IN PERSON|MAIL|pending foxe| +55437|744074|6589|1|29|32423.16|0.04|0.08|N|O|1996-09-05|1996-10-02|1996-09-06|DELIVER IN PERSON|MAIL|sly quick excuses are blithely abo| +55437|642521|17546|2|24|35123.76|0.00|0.01|N|O|1996-08-11|1996-10-10|1996-08-28|NONE|REG AIR|ctions are car| +55437|846759|34308|3|46|78462.66|0.02|0.00|N|O|1996-10-17|1996-10-06|1996-10-27|TAKE BACK RETURN|SHIP|eposits. daringly | +55437|461855|24365|4|9|16351.47|0.00|0.07|N|O|1996-11-04|1996-10-12|1996-11-12|NONE|SHIP|o the furiously special decoys: carefully p| +55437|396377|46378|5|2|2946.72|0.08|0.07|N|O|1996-07-29|1996-10-08|1996-08-28|TAKE BACK RETURN|REG AIR|regular, unusual dependencies.| +55437|895204|45205|6|28|33576.48|0.09|0.07|N|O|1996-11-01|1996-10-03|1996-11-08|NONE|TRUCK|e stealthy | +55438|489405|1915|1|35|48803.30|0.05|0.06|N|O|1996-08-23|1996-09-01|1996-09-11|COLLECT COD|RAIL|iously brave ideas. furiously ironic excu| +55439|605420|5421|1|3|3976.17|0.01|0.05|R|F|1994-07-26|1994-07-30|1994-08-07|TAKE BACK RETURN|MAIL|yly bold packages integrate | +55439|293177|30693|2|48|56167.68|0.01|0.07|R|F|1994-06-22|1994-06-27|1994-07-21|NONE|RAIL|beans wake ironic pinto beans. bold| +55439|415867|3392|3|9|16045.56|0.09|0.02|A|F|1994-05-05|1994-07-23|1994-05-08|COLLECT COD|SHIP|r the final accounts. ironic package| +55439|473712|11240|4|5|8428.45|0.01|0.00|A|F|1994-06-19|1994-07-24|1994-07-11|DELIVER IN PERSON|TRUCK|ully even packa| +55464|98491|48492|1|42|62558.58|0.01|0.08|R|F|1993-01-21|1993-02-14|1993-02-01|COLLECT COD|SHIP|quests. eve| +55464|324143|49156|2|48|56022.24|0.10|0.06|A|F|1993-01-28|1993-02-20|1993-02-17|COLLECT COD|REG AIR|totes serve carefully even instruction| +55465|114552|39557|1|47|73627.85|0.08|0.07|A|F|1994-12-17|1995-01-02|1995-01-08|NONE|RAIL|und the furiously regular depths ha| +55465|273463|48474|2|21|30165.45|0.08|0.03|R|F|1994-11-02|1994-12-19|1994-11-07|COLLECT COD|FOB| about the deposits prom| +55465|85139|10142|3|42|47213.46|0.10|0.04|A|F|1995-01-02|1994-12-07|1995-01-18|COLLECT COD|SHIP|refully final excuses cajole qu| +55465|930483|5520|4|22|33295.68|0.09|0.04|A|F|1994-11-17|1995-01-11|1994-11-29|TAKE BACK RETURN|REG AIR|pecial theodolites. fluffily unusual accoun| +55466|189515|27025|1|35|56157.85|0.06|0.01|A|F|1992-04-10|1992-06-01|1992-04-20|TAKE BACK RETURN|REG AIR|after the idly u| +55466|169806|32310|2|1|1875.80|0.01|0.06|R|F|1992-07-10|1992-05-15|1992-07-15|TAKE BACK RETURN|FOB| final deposits integrate. quickl| +55466|918250|18251|3|50|63410.50|0.04|0.08|A|F|1992-07-01|1992-06-25|1992-07-12|TAKE BACK RETURN|REG AIR|avely according to the carefull| +55466|11285|11286|4|45|53832.60|0.07|0.04|A|F|1992-05-12|1992-06-29|1992-05-20|COLLECT COD|MAIL|. ideas cajole. bold ideas cajole furious| +55466|657455|7456|5|46|64971.32|0.01|0.07|A|F|1992-04-18|1992-05-13|1992-05-14|COLLECT COD|AIR|s. pending accounts wake care| +55466|846137|46138|6|21|22744.89|0.04|0.06|A|F|1992-05-17|1992-06-05|1992-05-26|COLLECT COD|TRUCK| ironic re| +55466|23866|11367|7|37|66224.82|0.06|0.08|A|F|1992-04-22|1992-05-13|1992-05-13|COLLECT COD|MAIL|of the final, ironic dependencies. pl| +55467|106019|43526|1|10|10250.10|0.03|0.01|N|O|1996-11-30|1997-01-11|1996-12-21|COLLECT COD|REG AIR|ly pending deposits | +55467|855019|42571|2|23|22401.31|0.02|0.02|N|O|1996-11-19|1996-12-16|1996-11-29|DELIVER IN PERSON|FOB|ckly pending| +55467|302820|40339|3|5|9114.05|0.09|0.06|N|O|1996-11-24|1996-12-02|1996-12-19|DELIVER IN PERSON|AIR|y. braids run regularly furiously even a| +55468|233091|45596|1|35|35842.80|0.09|0.07|N|O|1998-05-25|1998-05-06|1998-06-04|COLLECT COD|SHIP|le furiously slyly unusual dependencies. | +55469|178012|15522|1|46|50140.46|0.05|0.00|N|O|1997-03-24|1997-03-21|1997-04-19|NONE|RAIL|for the eve| +55469|842441|29990|2|40|55336.00|0.00|0.07|N|O|1997-03-27|1997-04-09|1997-04-19|TAKE BACK RETURN|RAIL|haggle blithely| +55469|898648|36200|3|45|74097.00|0.06|0.07|N|O|1997-05-05|1997-04-22|1997-05-23|DELIVER IN PERSON|REG AIR|ully final requests against the silent | +55469|562157|24669|4|8|9753.04|0.09|0.02|N|O|1997-03-09|1997-04-19|1997-03-20|NONE|SHIP|deas haggle slyly across the e| +55469|166176|28680|5|1|1242.17|0.09|0.08|N|O|1997-03-05|1997-04-20|1997-03-14|TAKE BACK RETURN|FOB|y across th| +55470|644058|6571|1|16|16032.32|0.02|0.03|N|O|1998-09-09|1998-08-25|1998-10-01|TAKE BACK RETURN|REG AIR| the carefully bold accounts.| +55470|675702|38216|2|32|53685.44|0.08|0.03|N|O|1998-09-12|1998-09-07|1998-09-18|NONE|SHIP|y special deposits unwind | +55470|521024|46045|3|20|20900.00|0.09|0.04|N|O|1998-10-12|1998-09-12|1998-10-22|DELIVER IN PERSON|MAIL|he carefully | +55470|838530|26079|4|42|61676.58|0.10|0.04|N|O|1998-09-18|1998-08-11|1998-10-06|COLLECT COD|RAIL|the slyly pending requests wake | +55470|158484|45994|5|41|63241.68|0.01|0.07|N|O|1998-09-29|1998-09-19|1998-10-22|DELIVER IN PERSON|MAIL|xpress packa| +55470|634716|9741|6|28|46219.04|0.02|0.07|N|O|1998-08-10|1998-09-08|1998-09-07|COLLECT COD|AIR|ven foxes above the| +55470|668248|18249|7|24|29189.04|0.01|0.02|N|O|1998-10-22|1998-09-16|1998-11-10|NONE|FOB|usly bold platelets inte| +55471|230236|5245|1|24|27989.28|0.07|0.03|R|F|1995-02-04|1995-01-31|1995-02-09|DELIVER IN PERSON|AIR|ccounts nag slyly. specia| +55471|564165|1699|2|49|60227.86|0.06|0.07|A|F|1995-04-01|1995-01-11|1995-04-06|COLLECT COD|REG AIR|unts after the daring platel| +55471|920923|8478|3|18|34989.84|0.01|0.08|A|F|1994-12-28|1995-01-26|1994-12-30|TAKE BACK RETURN|SHIP|ickly final accounts. fluffily reg| +55496|762657|37688|1|12|20635.44|0.10|0.07|R|F|1995-04-06|1995-03-28|1995-04-09|NONE|MAIL| fluffily regular forg| +55496|963076|38115|2|41|46700.23|0.04|0.07|A|F|1995-04-25|1995-03-17|1995-05-10|TAKE BACK RETURN|SHIP|ealms serve quickly among the ca| +55496|417966|30475|3|3|5651.82|0.07|0.01|A|F|1995-04-12|1995-04-08|1995-04-22|DELIVER IN PERSON|REG AIR|ndencies. specia| +55497|741404|16433|1|32|46251.84|0.09|0.01|R|F|1995-02-01|1995-04-16|1995-02-10|DELIVER IN PERSON|TRUCK| packages inside the| +55497|762802|12803|2|46|85779.42|0.10|0.07|A|F|1995-04-01|1995-04-25|1995-04-25|TAKE BACK RETURN|AIR|egular courts. blithe| +55497|397523|35045|3|42|68061.42|0.01|0.07|N|F|1995-05-26|1995-04-24|1995-06-25|NONE|SHIP|the even deposits hind| +55498|713114|13115|1|27|30431.16|0.03|0.08|A|F|1993-03-24|1993-02-16|1993-04-19|TAKE BACK RETURN|MAIL| carefully silent pinto beans. unusual de| +55498|298589|36105|2|16|25401.12|0.02|0.05|A|F|1993-04-06|1993-02-08|1993-05-01|NONE|RAIL|ual Tiresias boost blithely ironic in| +55498|385036|22558|3|12|13452.24|0.07|0.06|R|F|1993-01-12|1993-01-15|1993-01-25|TAKE BACK RETURN|AIR|ular, final ideas according to| +55498|299634|49635|4|15|24504.30|0.01|0.02|A|F|1993-01-20|1993-02-18|1993-02-03|NONE|SHIP|luffily. furiously pending packages mus| +55499|465081|40100|1|42|43934.52|0.07|0.02|R|F|1995-01-31|1995-03-27|1995-02-15|NONE|AIR|regular asymptotes | +55499|610098|22611|2|40|40322.40|0.05|0.02|R|F|1995-04-22|1995-03-03|1995-05-12|DELIVER IN PERSON|TRUCK|ependencies. unusual escapades | +55499|914402|14403|3|11|15579.96|0.07|0.03|A|F|1995-03-15|1995-03-29|1995-03-25|COLLECT COD|FOB|longside of the furiou| +55499|338075|25594|4|49|54539.94|0.04|0.07|R|F|1995-02-25|1995-04-12|1995-03-19|COLLECT COD|RAIL| pending pa| +55499|13597|1098|5|19|28701.21|0.06|0.06|R|F|1995-02-07|1995-02-24|1995-02-18|DELIVER IN PERSON|TRUCK| carefully final asymptotes sleep | +55499|510573|35594|6|34|53840.70|0.04|0.02|A|F|1995-03-08|1995-03-19|1995-03-13|DELIVER IN PERSON|MAIL|s. furiously bold ideas nag furiously.| +55500|506896|44427|1|41|78017.67|0.09|0.07|A|F|1992-12-23|1992-12-22|1993-01-09|NONE|SHIP|usly final excuses sleep around t| +55500|399838|24853|2|14|27129.48|0.08|0.06|A|F|1993-03-09|1992-12-21|1993-03-22|NONE|MAIL|aggle furiously across the en| +55500|69687|44690|3|36|59640.48|0.05|0.05|A|F|1992-12-04|1993-02-08|1992-12-25|COLLECT COD|FOB|breach slyly regular | +55500|221999|22000|4|36|69155.28|0.01|0.05|R|F|1993-02-06|1993-01-02|1993-03-04|COLLECT COD|REG AIR|ular deposits wake. regular pinto beans| +55500|122815|35318|5|20|36756.20|0.07|0.08|R|F|1993-03-06|1993-02-06|1993-03-27|TAKE BACK RETURN|MAIL| deposits use blithely across t| +55500|148058|35565|6|25|27651.25|0.06|0.00|A|F|1993-01-16|1993-02-03|1993-02-03|COLLECT COD|REG AIR|e blithely r| +55500|395343|20358|7|23|33081.59|0.00|0.01|R|F|1993-03-06|1993-02-13|1993-03-23|DELIVER IN PERSON|AIR|he furiously special| +55501|523091|48112|1|42|46790.94|0.00|0.06|N|O|1998-10-23|1998-09-30|1998-11-19|NONE|SHIP|yly blithely even courts. bli| +55501|577552|40064|2|13|21183.89|0.00|0.00|N|O|1998-11-16|1998-09-16|1998-12-11|NONE|RAIL|should hav| +55501|911782|24301|3|26|46637.24|0.03|0.01|N|O|1998-08-25|1998-10-03|1998-08-31|COLLECT COD|TRUCK|osits wake slyly even theodolit| +55501|312423|49942|4|7|10047.87|0.03|0.03|N|O|1998-10-14|1998-10-11|1998-10-24|NONE|SHIP|escapades? pending forges| +55501|888568|13603|5|48|74712.96|0.08|0.04|N|O|1998-08-25|1998-09-07|1998-09-12|NONE|TRUCK|arefully final| +55501|158446|20950|6|25|37611.00|0.10|0.08|N|O|1998-11-12|1998-09-12|1998-11-26|TAKE BACK RETURN|SHIP|its haggle pinto beans. i| +55501|988908|26466|7|47|93852.42|0.05|0.08|N|O|1998-10-17|1998-08-24|1998-10-18|TAKE BACK RETURN|MAIL|! slyly special depths according t| +55502|564583|39606|1|48|79082.88|0.01|0.00|R|F|1992-07-22|1992-07-16|1992-08-03|DELIVER IN PERSON|FOB|y regular packages alongside of the fur| +55502|945864|8383|2|9|17188.38|0.08|0.03|A|F|1992-07-03|1992-06-07|1992-07-29|DELIVER IN PERSON|MAIL|ke ironically a| +55502|131230|31231|3|7|8828.61|0.04|0.03|A|F|1992-07-05|1992-06-26|1992-07-18|NONE|REG AIR|posits. quickly pending grouches affix| +55502|566793|41816|4|23|42774.71|0.06|0.01|A|F|1992-07-10|1992-06-23|1992-07-20|NONE|MAIL|s haggle slyly| +55502|88952|1454|5|44|85401.80|0.04|0.01|A|F|1992-08-16|1992-07-07|1992-09-07|TAKE BACK RETURN|FOB|ts sleep alongside of the fluffily | +55502|4600|42101|6|4|6018.40|0.06|0.02|R|F|1992-06-11|1992-06-03|1992-06-24|NONE|AIR| even requests| +55502|309346|21853|7|25|33883.25|0.00|0.01|R|F|1992-08-11|1992-07-16|1992-08-28|DELIVER IN PERSON|MAIL|raids. slyl| +55503|163546|13547|1|9|14485.86|0.07|0.03|R|F|1993-08-04|1993-09-05|1993-08-30|COLLECT COD|TRUCK| blithely enticingly spec| +55503|708962|21477|2|29|57156.97|0.06|0.01|R|F|1993-11-16|1993-10-04|1993-11-21|DELIVER IN PERSON|AIR|the fluffily special ideas play| +55528|654639|17153|1|10|15936.00|0.08|0.02|R|F|1994-07-05|1994-08-17|1994-07-26|COLLECT COD|MAIL|es among the bold| +55528|507678|32699|2|21|35398.65|0.00|0.00|R|F|1994-07-19|1994-09-03|1994-07-21|COLLECT COD|REG AIR|egular theodolites. quickly final th| +55529|291777|41778|1|24|42450.24|0.10|0.07|N|O|1995-07-21|1995-08-19|1995-07-31|TAKE BACK RETURN|FOB|lets? ironic, f| +55529|884879|22431|2|22|41004.26|0.04|0.07|N|O|1995-09-19|1995-08-18|1995-10-02|TAKE BACK RETURN|MAIL|requests sublate at the blithely special| +55529|145285|7788|3|29|38578.12|0.00|0.05|N|O|1995-09-08|1995-07-25|1995-09-26|NONE|TRUCK|s are. quickly ir| +55529|803096|15613|4|18|17982.90|0.06|0.04|N|O|1995-08-31|1995-09-08|1995-09-14|COLLECT COD|AIR|s nag fina| +55529|632743|20280|5|32|53622.72|0.01|0.07|N|O|1995-08-09|1995-08-14|1995-09-03|COLLECT COD|RAIL|nusual dependencies| +55530|616739|41764|1|33|54638.10|0.08|0.00|A|F|1993-10-09|1993-08-31|1993-10-31|TAKE BACK RETURN|AIR|e the even instructions| +55530|521112|21113|2|2|2266.18|0.10|0.03|R|F|1993-09-14|1993-09-17|1993-09-26|DELIVER IN PERSON|RAIL|nt foxes integrate accor| +55530|314458|26965|3|12|17669.28|0.01|0.01|A|F|1993-08-01|1993-09-22|1993-08-03|NONE|RAIL|decoys cajole slyly according to | +55530|80723|43225|4|2|3407.44|0.06|0.03|R|F|1993-07-19|1993-08-29|1993-08-08|COLLECT COD|RAIL|ding to the carefully ironic warthog| +55530|708797|8798|5|43|77647.68|0.09|0.00|R|F|1993-08-27|1993-09-18|1993-09-22|NONE|SHIP|sts. slyly regular tithes c| +55531|763360|38391|1|8|11386.64|0.01|0.04|A|F|1993-03-09|1993-03-06|1993-03-20|COLLECT COD|REG AIR|the carefully s| +55531|782827|32828|2|41|78301.39|0.04|0.07|R|F|1993-02-28|1993-03-08|1993-03-03|TAKE BACK RETURN|SHIP|lar foxes nag blithely. packages sleep a| +55531|967896|5454|3|25|49096.25|0.02|0.08|A|F|1993-02-25|1993-02-09|1993-03-11|COLLECT COD|SHIP|sheaves engage blithely | +55531|418595|6120|4|29|43893.53|0.06|0.02|A|F|1993-01-08|1993-01-19|1993-01-10|DELIVER IN PERSON|TRUCK|ven deposits. | +55532|731908|6937|1|2|3879.74|0.10|0.00|A|F|1994-06-13|1994-05-10|1994-06-20|TAKE BACK RETURN|AIR| courts wak| +55532|164858|27362|2|10|19228.50|0.06|0.05|R|F|1994-04-09|1994-04-04|1994-05-04|NONE|SHIP|ckly ironic deposits cajol| +55532|756549|19065|3|14|22477.14|0.03|0.02|R|F|1994-02-28|1994-03-30|1994-03-06|TAKE BACK RETURN|AIR|es. bold deposits thrash| +55532|309748|34761|4|37|65036.01|0.02|0.01|A|F|1994-03-27|1994-03-31|1994-04-23|DELIVER IN PERSON|MAIL|ironic, re| +55532|934295|46814|5|1|1329.25|0.04|0.02|A|F|1994-05-31|1994-04-25|1994-06-23|DELIVER IN PERSON|TRUCK|es nag slyly a| +55533|139322|26829|1|10|13613.20|0.09|0.04|N|O|1998-05-28|1998-05-03|1998-06-13|DELIVER IN PERSON|MAIL|instructions. furiously expre| +55533|572531|22532|2|10|16035.10|0.07|0.05|N|O|1998-03-03|1998-05-27|1998-03-18|DELIVER IN PERSON|MAIL|sits across the furiously ironic pinto| +55533|512920|25431|3|15|28993.50|0.06|0.07|N|O|1998-03-20|1998-04-30|1998-04-06|TAKE BACK RETURN|AIR|notornis sleep regular ideas. sl| +55533|643488|43489|4|50|71572.50|0.05|0.03|N|O|1998-03-16|1998-05-18|1998-03-17|TAKE BACK RETURN|SHIP|mptotes believe carefully final d| +55533|98496|10998|5|11|16439.39|0.10|0.06|N|O|1998-04-21|1998-05-01|1998-05-02|TAKE BACK RETURN|SHIP|s along the slyly final accounts| +55534|405548|18057|1|42|61047.84|0.01|0.00|R|F|1995-02-11|1995-03-23|1995-03-02|NONE|TRUCK|fully blithely regular ac| +55534|38623|1124|2|2|3123.24|0.09|0.02|R|F|1995-02-13|1995-03-14|1995-02-20|NONE|MAIL| packages. regular packages| +55534|122346|9853|3|10|13683.40|0.08|0.00|A|F|1995-02-05|1995-03-01|1995-03-05|DELIVER IN PERSON|SHIP| deposits are quickly after the slyly regul| +55534|262928|25434|4|5|9454.55|0.08|0.01|A|F|1995-03-08|1995-03-01|1995-03-25|TAKE BACK RETURN|RAIL|pecial requests wake | +55535|657951|32978|1|24|45814.08|0.02|0.00|N|O|1996-05-22|1996-03-22|1996-06-07|NONE|FOB|the even theodolites. | +55535|180524|43028|2|28|44926.56|0.09|0.03|N|O|1996-03-16|1996-04-02|1996-04-12|TAKE BACK RETURN|MAIL|iments use about the | +55535|61375|11376|3|7|9354.59|0.04|0.02|N|O|1996-02-17|1996-04-23|1996-02-24|DELIVER IN PERSON|AIR|s boost blithe| +55535|525283|12814|4|28|36631.28|0.08|0.06|N|O|1996-04-23|1996-04-24|1996-05-21|TAKE BACK RETURN|RAIL|pending instructions. slyly even sentimen| +55535|425656|13181|5|6|9489.78|0.07|0.07|N|O|1996-02-20|1996-04-30|1996-02-22|COLLECT COD|MAIL|ly special excuses ca| +55560|981040|31041|1|19|21299.00|0.06|0.07|A|F|1994-03-09|1994-03-31|1994-03-16|COLLECT COD|REG AIR|unusual, pending theodolites. bold a| +55560|332862|7875|2|48|90952.80|0.05|0.05|A|F|1994-05-24|1994-05-14|1994-06-03|COLLECT COD|RAIL|xpress deposits sleep| +55560|411019|23528|3|48|44639.52|0.07|0.04|A|F|1994-02-20|1994-04-10|1994-03-06|NONE|REG AIR| furiously ironic reque| +55560|979600|17158|4|32|53745.92|0.03|0.06|R|F|1994-02-23|1994-04-29|1994-02-28|DELIVER IN PERSON|SHIP|ackages cajole final, express dolphins. | +55561|186687|11694|1|15|26605.20|0.08|0.00|N|O|1997-03-16|1997-04-15|1997-03-20|COLLECT COD|MAIL|l dolphins cajole blith| +55562|572722|47745|1|4|7178.80|0.09|0.03|R|F|1994-04-09|1994-04-08|1994-04-25|TAKE BACK RETURN|TRUCK|thely regula| +55562|725113|25114|2|3|3414.24|0.07|0.01|R|F|1994-04-01|1994-04-28|1994-04-15|TAKE BACK RETURN|FOB|st slyly care| +55563|654545|29572|1|2|2999.02|0.05|0.04|N|O|1996-06-19|1996-08-16|1996-07-05|COLLECT COD|SHIP|odolites. regular inst| +55563|925820|38339|2|16|29532.48|0.09|0.04|N|O|1996-08-15|1996-07-03|1996-09-13|TAKE BACK RETURN|SHIP|s. fluffily final packages us| +55563|245368|7873|3|26|34147.10|0.09|0.02|N|O|1996-09-17|1996-07-16|1996-10-08|TAKE BACK RETURN|MAIL|packages. | +55563|896153|21188|4|6|6894.66|0.08|0.03|N|O|1996-07-13|1996-07-08|1996-08-10|COLLECT COD|FOB|ven packages: packages wak| +55564|680992|18532|1|21|41432.16|0.05|0.06|A|F|1994-12-10|1994-10-08|1994-12-28|NONE|FOB|ake fluffily along the fluffil| +55564|427170|2187|2|44|48274.60|0.08|0.04|R|F|1994-11-13|1994-11-15|1994-12-07|NONE|TRUCK|otes haggle carefully. blithely express | +55564|435034|47543|3|44|42636.44|0.04|0.04|A|F|1994-10-07|1994-10-26|1994-10-31|COLLECT COD|REG AIR| beans. furiously even | +55564|609662|22175|4|50|78581.50|0.04|0.02|A|F|1994-12-12|1994-10-18|1994-12-27|TAKE BACK RETURN|FOB|l accounts. slyly silent reque| +55565|936331|11368|1|36|49222.44|0.02|0.04|N|O|1998-03-09|1998-02-03|1998-04-03|TAKE BACK RETURN|FOB|luffily regular requests. unusual, | +55565|908898|46453|2|39|74367.15|0.05|0.02|N|O|1998-02-01|1997-12-23|1998-02-19|TAKE BACK RETURN|REG AIR|o the accou| +55565|841081|41082|3|14|14308.56|0.04|0.02|N|O|1998-02-16|1997-12-22|1998-02-23|NONE|MAIL|ts. quickl| +55565|38363|864|4|1|1301.36|0.07|0.05|N|O|1997-12-15|1998-01-24|1998-01-14|NONE|REG AIR|its sleep quickly. unusual platelets| +55565|759098|9099|5|2|2314.12|0.07|0.02|N|O|1998-01-22|1998-01-21|1998-01-25|TAKE BACK RETURN|FOB|quiet packages sleep furiously| +55565|156811|44321|6|36|67241.16|0.09|0.00|N|O|1997-11-24|1998-01-08|1997-12-01|COLLECT COD|SHIP|around the courts. account| +55566|915689|28208|1|21|35797.44|0.01|0.07|A|F|1993-06-04|1993-04-27|1993-06-23|COLLECT COD|SHIP| special excuses. regu| +55566|968978|18979|2|29|59360.97|0.10|0.08|A|F|1993-05-02|1993-04-25|1993-05-17|COLLECT COD|TRUCK|hely. furiou| +55566|597818|35352|3|5|9578.95|0.08|0.00|A|F|1993-06-03|1993-03-30|1993-06-26|DELIVER IN PERSON|AIR|inal asymptotes x-ray after t| +55566|524717|12248|4|35|60959.15|0.04|0.08|A|F|1993-05-20|1993-05-11|1993-06-02|NONE|RAIL|ally final ac| +55566|908533|8534|5|33|50869.17|0.00|0.00|A|F|1993-05-06|1993-03-29|1993-05-21|TAKE BACK RETURN|MAIL|ites. thinly silent pa| +55566|703251|15766|6|13|16304.86|0.03|0.00|R|F|1993-03-17|1993-05-12|1993-04-13|COLLECT COD|AIR| even, regular courts use quickly pend| +55567|285167|47673|1|9|10369.35|0.07|0.01|N|O|1998-07-09|1998-05-20|1998-07-10|TAKE BACK RETURN|TRUCK|l deposits across the i| +55567|790850|28396|2|9|17467.38|0.04|0.04|N|O|1998-05-31|1998-04-21|1998-06-26|COLLECT COD|AIR|gular instructions. slow foxes integ| +55567|814790|14791|3|10|17047.50|0.04|0.01|N|O|1998-03-21|1998-05-11|1998-04-01|DELIVER IN PERSON|MAIL|ly above the slyly thin foxes. regu| +55567|173811|11321|4|45|84816.45|0.05|0.07|N|O|1998-06-15|1998-04-30|1998-07-15|NONE|AIR|r the carefully express depo| +55592|4891|29892|1|7|12571.23|0.09|0.02|R|F|1993-05-04|1993-03-21|1993-05-26|DELIVER IN PERSON|FOB|tes. requests use carefully atop the | +55592|198979|23986|2|49|101820.53|0.06|0.05|R|F|1993-02-06|1993-04-17|1993-02-10|NONE|FOB|ake. bold, silent foxes b| +55592|238217|25730|3|45|51984.00|0.07|0.03|R|F|1993-03-12|1993-04-29|1993-04-08|DELIVER IN PERSON|MAIL|regular in| +55592|712478|21|4|46|68560.24|0.08|0.02|A|F|1993-05-27|1993-04-19|1993-06-18|TAKE BACK RETURN|RAIL|the blithely ironic deposits. un| +55592|613169|13170|5|22|23806.86|0.09|0.03|R|F|1993-04-05|1993-04-27|1993-04-09|NONE|MAIL|deposits. fl| +55592|527507|40018|6|41|62913.68|0.07|0.05|R|F|1993-04-23|1993-03-10|1993-05-23|TAKE BACK RETURN|SHIP|al, pending ideas among the slyly ir| +55592|797188|47189|7|36|46265.40|0.08|0.01|A|F|1993-02-19|1993-03-05|1993-02-22|TAKE BACK RETURN|FOB|efully unusual, thin foxes? | +55593|324249|11768|1|7|8912.61|0.06|0.02|R|F|1994-01-20|1993-11-14|1994-01-28|DELIVER IN PERSON|MAIL|l requests wake. slyly | +55593|641078|16103|2|29|29552.16|0.06|0.01|R|F|1993-12-23|1993-12-07|1994-01-07|TAKE BACK RETURN|TRUCK|old, silent instruc| +55593|594335|31869|3|45|64318.95|0.03|0.01|A|F|1993-11-14|1993-11-21|1993-12-05|COLLECT COD|AIR| warhorses | +55593|980117|42637|4|33|39503.31|0.10|0.08|A|F|1993-10-09|1993-12-06|1993-10-17|NONE|MAIL|ss the fluffily pending | +55593|823511|11060|5|22|31558.34|0.02|0.05|A|F|1994-01-22|1993-11-20|1994-02-05|DELIVER IN PERSON|TRUCK|yly quickly regu| +55593|738549|1064|6|21|33337.71|0.03|0.04|R|F|1993-12-20|1993-11-08|1993-12-23|NONE|RAIL|lites. slyly bold requests caj| +55593|780318|30319|7|34|47541.52|0.10|0.05|R|F|1994-01-21|1993-11-25|1994-01-23|TAKE BACK RETURN|SHIP|dencies. requests sublate slyly about the b| +55594|792179|29725|1|4|5084.56|0.08|0.00|A|F|1995-06-12|1995-08-17|1995-06-14|COLLECT COD|MAIL|requests integrate furiously carefully iro| +55594|143625|6128|2|25|41715.50|0.03|0.00|N|O|1995-07-30|1995-07-17|1995-08-25|NONE|TRUCK|e above the unusual, express requests. s| +55594|903366|40921|3|28|38340.96|0.08|0.06|N|O|1995-09-17|1995-07-13|1995-10-03|DELIVER IN PERSON|TRUCK| carefully regul| +55594|858672|21190|4|37|60333.31|0.04|0.08|N|F|1995-06-05|1995-07-06|1995-06-22|COLLECT COD|RAIL|quests. thin| +55595|712199|12200|1|29|35123.64|0.03|0.01|N|O|1995-07-10|1995-06-03|1995-07-28|COLLECT COD|AIR| blithely final theodolites ough| +55595|925925|38444|2|11|21459.68|0.08|0.07|A|F|1995-04-07|1995-05-19|1995-04-23|COLLECT COD|RAIL|ully. slyly regular instructions above the| +55595|20037|20038|3|24|22968.72|0.06|0.02|N|O|1995-06-20|1995-05-21|1995-06-28|COLLECT COD|TRUCK|he slyly regular multipliers pl| +55595|747304|34847|4|35|47294.45|0.10|0.01|A|F|1995-05-20|1995-04-19|1995-06-10|NONE|REG AIR|s. furiously express requests again| +55595|925639|676|5|42|69912.78|0.09|0.01|A|F|1995-05-02|1995-05-08|1995-05-08|NONE|SHIP|carefully pending requests snooze caref| +55595|211523|49036|6|29|41600.79|0.00|0.07|N|O|1995-07-14|1995-06-03|1995-07-20|TAKE BACK RETURN|RAIL|odolites. slyly bold th| +55595|61806|36809|7|23|40659.40|0.08|0.03|A|F|1995-05-05|1995-05-16|1995-05-07|TAKE BACK RETURN|FOB|es nag after the thin| +55596|771288|33804|1|8|10874.00|0.09|0.07|A|F|1994-06-23|1994-07-17|1994-07-07|NONE|RAIL|s. carefully expre| +55596|29120|4121|2|27|28326.24|0.03|0.07|A|F|1994-07-25|1994-08-12|1994-08-09|COLLECT COD|TRUCK|to beans. ironic packages wa| +55596|403908|16417|3|43|77910.84|0.07|0.01|A|F|1994-07-29|1994-08-30|1994-08-22|COLLECT COD|TRUCK|he deposits are slyl| +55597|483389|20917|1|10|13723.60|0.04|0.04|R|F|1993-03-14|1992-12-22|1993-04-12|DELIVER IN PERSON|REG AIR|s need to sleep carefu| +55597|307821|32834|2|47|85954.07|0.02|0.03|A|F|1993-03-05|1993-01-30|1993-04-01|COLLECT COD|SHIP|inal ideas haggle furiousl| +55597|534135|46646|3|2|2338.22|0.10|0.00|R|F|1992-11-17|1992-12-20|1992-12-02|COLLECT COD|REG AIR|ly final platelets. final pinto beans ac| +55597|205703|30712|4|1|1608.69|0.08|0.07|R|F|1993-02-01|1993-01-23|1993-02-16|TAKE BACK RETURN|RAIL|key players wake furiousl| +55597|237685|12694|5|22|35698.74|0.10|0.06|A|F|1992-11-26|1992-12-19|1992-12-16|NONE|RAIL| warhorses affix theodolites. final, r| +55598|727257|14800|1|39|50084.58|0.02|0.02|A|F|1994-06-05|1994-06-12|1994-07-05|DELIVER IN PERSON|TRUCK|thely express excuses.| +55598|1116|26117|2|12|12205.32|0.03|0.08|R|F|1994-08-02|1994-07-08|1994-08-10|TAKE BACK RETURN|MAIL|egular pinto | +55598|744210|19239|3|40|50167.20|0.06|0.00|A|F|1994-08-19|1994-07-06|1994-09-14|DELIVER IN PERSON|RAIL|egular ideas belie| +55599|783971|21517|1|18|36988.92|0.07|0.00|R|F|1993-03-28|1993-03-25|1993-04-25|COLLECT COD|TRUCK|y regular exc| +55599|185147|35148|2|4|4928.56|0.02|0.08|R|F|1993-03-29|1993-02-28|1993-04-08|DELIVER IN PERSON|TRUCK|eans alongside of the | +55599|748953|36496|3|44|88084.48|0.05|0.00|R|F|1993-02-10|1993-04-08|1993-02-26|TAKE BACK RETURN|REG AIR|oss the fluffily unusual acco| +55599|647054|34591|4|15|15015.30|0.10|0.02|R|F|1993-03-31|1993-03-05|1993-04-20|DELIVER IN PERSON|MAIL|es hinder slyly after the deposits. steal| +55624|820697|20698|1|25|40441.25|0.01|0.02|A|F|1992-11-19|1993-01-17|1992-11-21|NONE|MAIL|ove the blithely even instructio| +55625|626753|14290|1|3|5039.16|0.08|0.01|R|F|1993-07-21|1993-07-01|1993-07-27|NONE|SHIP|posits. pack| +55625|831229|18778|2|40|46407.20|0.03|0.03|A|F|1993-08-14|1993-07-21|1993-08-16|DELIVER IN PERSON|FOB|ns nag quickly. bold, furious theodol| +55625|453513|28532|3|45|65992.05|0.05|0.04|R|F|1993-09-13|1993-08-12|1993-09-18|COLLECT COD|SHIP|efully regular| +55626|557119|19631|1|27|31754.43|0.06|0.07|N|O|1997-08-10|1997-08-08|1997-09-01|COLLECT COD|REG AIR|s. carefully spec| +55627|842582|30131|1|47|71653.38|0.07|0.00|R|F|1993-06-14|1993-06-10|1993-06-27|COLLECT COD|RAIL|instructions n| +55627|266156|28662|2|48|53862.72|0.06|0.05|R|F|1993-06-18|1993-06-19|1993-06-30|TAKE BACK RETURN|AIR|y even ideas haggle along t| +55627|269222|6738|3|9|10720.89|0.00|0.05|R|F|1993-04-03|1993-06-21|1993-04-14|TAKE BACK RETURN|AIR|e unusual accounts detect bold | +55627|798561|23592|4|32|53104.96|0.04|0.07|A|F|1993-04-23|1993-05-19|1993-05-16|DELIVER IN PERSON|RAIL|kly above t| +55628|860286|10287|1|42|52342.08|0.01|0.00|N|O|1996-11-07|1996-11-19|1996-11-22|DELIVER IN PERSON|SHIP|. fluffily pending r| +55629|765888|3434|1|23|44938.55|0.07|0.02|A|F|1992-10-09|1992-07-27|1992-10-11|TAKE BACK RETURN|RAIL|riously express requ| +55629|279370|16886|2|31|41830.16|0.09|0.06|A|F|1992-06-19|1992-09-16|1992-07-07|DELIVER IN PERSON|MAIL|ely according to the furiously iron| +55629|371415|21416|3|9|13377.60|0.09|0.07|R|F|1992-07-01|1992-09-15|1992-07-19|NONE|REG AIR|slyly along the braids. blithely even| +55629|358477|33492|4|21|32244.66|0.03|0.08|A|F|1992-07-10|1992-08-15|1992-07-28|COLLECT COD|AIR| carefully thin dinos again| +55629|921309|8864|5|24|31926.24|0.10|0.01|R|F|1992-08-14|1992-08-03|1992-08-28|NONE|AIR|are quickly after the carefully sil| +55629|433082|45591|6|27|27406.62|0.04|0.06|A|F|1992-07-08|1992-09-04|1992-07-28|COLLECT COD|SHIP|r ideas. fluffily ironic foxes haggl| +55629|806875|19392|7|25|44545.75|0.08|0.06|R|F|1992-10-07|1992-08-18|1992-10-08|DELIVER IN PERSON|SHIP| except the quickly| +55630|140294|27801|1|18|24017.22|0.03|0.06|A|F|1994-06-03|1994-06-25|1994-06-11|DELIVER IN PERSON|MAIL| integrate. regular, express excus| +55630|910546|23065|2|43|66929.50|0.06|0.07|A|F|1994-06-01|1994-06-18|1994-06-05|TAKE BACK RETURN|TRUCK|ing theodolites are according to the furio| +55630|537936|25467|3|31|61191.21|0.08|0.08|R|F|1994-05-15|1994-07-15|1994-06-12|TAKE BACK RETURN|SHIP|egular instructions cajole| +55630|89890|27394|4|29|54516.81|0.02|0.08|A|F|1994-04-25|1994-05-30|1994-05-18|DELIVER IN PERSON|TRUCK|nent instructions-- carefully pending| +55630|767894|17895|5|30|58855.80|0.03|0.03|R|F|1994-05-16|1994-07-12|1994-06-09|DELIVER IN PERSON|REG AIR|ages. slyly r| +55631|864573|27091|1|29|44588.37|0.02|0.07|N|O|1998-05-21|1998-06-26|1998-06-13|TAKE BACK RETURN|MAIL| final asymptotes boost above the | +55631|866968|29486|2|11|21284.12|0.02|0.08|N|O|1998-05-25|1998-05-06|1998-06-15|DELIVER IN PERSON|RAIL|- instructions sleep blithely according to| +55656|13004|25505|1|7|6419.00|0.00|0.01|N|O|1996-07-05|1996-07-22|1996-07-06|NONE|RAIL|nto beans haggle carefully against the f| +55656|551378|13890|2|14|20010.90|0.09|0.05|N|O|1996-06-16|1996-06-30|1996-06-22|COLLECT COD|MAIL|ns cajole slyly. | +55656|996974|22013|3|33|68340.69|0.06|0.03|N|O|1996-06-23|1996-08-12|1996-07-22|DELIVER IN PERSON|RAIL|ake carefully. quickly express | +55656|133507|8512|4|21|32350.50|0.01|0.02|N|O|1996-07-09|1996-07-11|1996-08-01|NONE|AIR|ial excuses. Tiresias | +55656|851263|38815|5|35|42497.70|0.05|0.00|N|O|1996-07-25|1996-08-02|1996-08-19|TAKE BACK RETURN|TRUCK| are quickly final requests. slyly special | +55656|170270|7780|6|48|64332.96|0.06|0.00|N|O|1996-07-20|1996-08-06|1996-08-09|TAKE BACK RETURN|REG AIR|otes. carefully bold packages slee| +55656|716131|3674|7|31|35560.10|0.01|0.08|N|O|1996-06-02|1996-08-03|1996-06-10|TAKE BACK RETURN|REG AIR|ly. regular theodolites hang blithely acc| +55657|1879|14380|1|36|64111.32|0.00|0.02|N|O|1997-08-09|1997-06-28|1997-08-17|DELIVER IN PERSON|REG AIR|heodolites grow b| +55657|576278|38790|2|34|46044.50|0.05|0.07|N|O|1997-07-21|1997-07-15|1997-08-07|DELIVER IN PERSON|TRUCK|platelets acc| +55657|491581|29109|3|44|69192.64|0.07|0.07|N|O|1997-05-12|1997-06-09|1997-06-01|COLLECT COD|MAIL|en pinto beans ca| +55657|988534|26092|4|22|35694.78|0.05|0.04|N|O|1997-05-28|1997-06-18|1997-06-22|DELIVER IN PERSON|SHIP|ickly pending deposits| +55657|280909|18425|5|18|34018.02|0.02|0.07|N|O|1997-05-21|1997-07-21|1997-06-03|DELIVER IN PERSON|REG AIR|e the furiously regula| +55657|228831|28832|6|13|22877.66|0.03|0.04|N|O|1997-07-20|1997-08-03|1997-07-27|DELIVER IN PERSON|AIR|ly even pack| +55658|255624|18130|1|24|37910.64|0.10|0.01|N|O|1998-07-22|1998-07-17|1998-07-29|COLLECT COD|FOB|riously final| +55658|265542|40553|2|47|70853.91|0.07|0.08|N|O|1998-09-10|1998-07-27|1998-10-09|COLLECT COD|RAIL| slyly ironic ideas boost| +55658|958285|33324|3|9|12089.16|0.00|0.01|N|O|1998-08-28|1998-07-14|1998-09-19|TAKE BACK RETURN|REG AIR|ages impress about the s| +55658|892656|5174|4|15|24729.15|0.02|0.06|N|O|1998-09-19|1998-07-17|1998-09-20|COLLECT COD|SHIP|ular, slow pack| +55658|865343|2895|5|14|18316.20|0.10|0.00|N|O|1998-06-06|1998-08-13|1998-07-06|NONE|MAIL| accounts cajole| +55658|814162|39195|6|40|43044.80|0.08|0.00|N|O|1998-07-27|1998-08-12|1998-08-20|COLLECT COD|RAIL|nto beans eat slyly slyl| +55659|671707|46734|1|1|1678.67|0.01|0.05|R|F|1994-06-23|1994-06-03|1994-07-23|COLLECT COD|REG AIR|x blithely among th| +55659|366213|28721|2|7|8954.40|0.00|0.05|A|F|1994-07-13|1994-06-29|1994-08-11|COLLECT COD|MAIL|hely express dep| +55659|929731|29732|3|38|66906.22|0.02|0.07|R|F|1994-05-20|1994-06-11|1994-06-15|TAKE BACK RETURN|SHIP|across the blithely express dolphins. pack| +55660|330034|30035|1|50|53201.00|0.02|0.02|A|F|1994-02-10|1993-12-17|1994-03-12|DELIVER IN PERSON|TRUCK|uickly unusual pinto beans haggle b| +55660|872063|22064|2|16|16560.32|0.04|0.05|A|F|1994-01-31|1994-01-15|1994-02-28|COLLECT COD|AIR| to the carefully regular realms.| +55661|99210|24213|1|31|37485.51|0.02|0.04|A|F|1993-04-09|1993-06-19|1993-04-11|NONE|REG AIR|he final patterns. s| +55661|421151|21152|2|28|30019.64|0.01|0.04|A|F|1993-06-10|1993-06-18|1993-06-24|NONE|TRUCK|press pinto beans after the sl| +55661|273537|11053|3|8|12084.16|0.07|0.08|A|F|1993-07-02|1993-06-24|1993-07-04|TAKE BACK RETURN|RAIL|r packages hag| +55661|333015|8028|4|2|2096.00|0.00|0.08|R|F|1993-05-27|1993-05-26|1993-06-07|DELIVER IN PERSON|SHIP|es. fluffily bold packages integ| +55661|973114|48153|5|44|52231.08|0.03|0.05|R|F|1993-07-02|1993-05-24|1993-07-14|NONE|TRUCK|d deposits sleep ironic, final p| +55661|110691|23194|6|20|34033.80|0.06|0.06|A|F|1993-06-29|1993-06-23|1993-07-23|NONE|REG AIR| ironic deposits. final, regular depos| +55662|707630|20145|1|3|4912.80|0.00|0.06|R|F|1993-11-14|1993-10-22|1993-11-16|COLLECT COD|SHIP|aintain slyly along th| +55662|136979|24486|2|27|54431.19|0.00|0.04|R|F|1993-10-04|1993-10-12|1993-10-13|DELIVER IN PERSON|REG AIR|yly ironic instructions affix th| +55663|367310|42325|1|5|6886.50|0.07|0.02|N|O|1996-11-30|1997-02-12|1996-12-10|TAKE BACK RETURN|REG AIR|e. blithely special requ| +55663|375630|38138|2|28|47757.36|0.01|0.03|N|O|1997-01-03|1997-01-07|1997-01-26|NONE|TRUCK|affix blithely against| +55663|205182|42695|3|46|50009.82|0.01|0.01|N|O|1997-02-13|1997-01-09|1997-02-16|DELIVER IN PERSON|TRUCK|n requests breach f| +55663|493220|5730|4|13|15771.60|0.05|0.07|N|O|1996-12-19|1997-01-02|1997-01-17|COLLECT COD|TRUCK|haggle fluff| +55663|536031|36032|5|2|2134.02|0.10|0.08|N|O|1997-01-09|1996-12-26|1997-01-12|NONE|SHIP|rnes may haggle pending deposits. theo| +55663|65287|40290|6|38|47586.64|0.07|0.00|N|O|1996-12-02|1997-01-09|1996-12-18|TAKE BACK RETURN|RAIL|y ironic theodolites integrate c| +55663|265658|15659|7|38|61698.32|0.01|0.05|N|O|1997-03-10|1997-01-25|1997-03-24|TAKE BACK RETURN|RAIL| sleep slyly even deposits. regular| +55688|904617|29654|1|8|12972.56|0.00|0.01|A|F|1993-03-01|1993-02-03|1993-03-08|NONE|RAIL|. requests unwind. packages toward the ca| +55689|117304|4811|1|25|33032.50|0.01|0.08|R|F|1993-01-14|1993-01-29|1993-01-31|DELIVER IN PERSON|RAIL|ickly regular deposit| +55689|520019|45040|2|19|19740.81|0.10|0.08|R|F|1993-03-18|1993-02-23|1993-04-14|DELIVER IN PERSON|FOB|y packages| +55690|72805|22806|1|40|71112.00|0.04|0.00|R|F|1995-04-13|1995-05-04|1995-04-21|TAKE BACK RETURN|MAIL|. slyly regular deposits integra| +55690|623446|10983|2|5|6847.05|0.08|0.08|R|F|1995-05-07|1995-04-24|1995-05-16|COLLECT COD|RAIL| blithely carefully iron| +55690|251790|39306|3|8|13934.24|0.02|0.01|A|F|1995-03-18|1995-04-24|1995-04-13|NONE|REG AIR|e quickly alongside of the quick| +55690|827209|27210|4|38|43174.08|0.05|0.04|N|F|1995-05-31|1995-05-21|1995-06-19|COLLECT COD|REG AIR|efully regular packages cajole quickly. d| +55690|894986|32538|5|3|5942.82|0.03|0.00|R|F|1995-04-01|1995-05-16|1995-04-07|TAKE BACK RETURN|FOB|onic packages haggle carefully even br| +55691|92602|17605|1|39|62189.40|0.00|0.04|A|F|1995-04-02|1995-02-25|1995-04-30|NONE|AIR| cajole furiously amon| +55691|345350|7857|2|25|34883.50|0.07|0.03|R|F|1995-02-16|1995-01-30|1995-02-19|NONE|AIR|ajole against the fluffily f| +55691|294551|44552|3|15|23183.10|0.05|0.00|A|F|1995-02-13|1995-01-22|1995-03-06|NONE|SHIP|ges. furiously special accoun| +55691|508525|46056|4|49|75141.50|0.03|0.04|R|F|1995-03-04|1995-02-18|1995-03-13|DELIVER IN PERSON|FOB|even, bold account| +55691|765239|40270|5|34|44342.80|0.04|0.03|A|F|1994-12-04|1995-01-28|1994-12-23|COLLECT COD|MAIL|according to the | +55692|662694|25208|1|5|8283.30|0.08|0.04|N|O|1998-04-10|1998-03-11|1998-04-23|TAKE BACK RETURN|MAIL|en courts. quickly final deposits| +55692|890772|40773|2|2|3525.46|0.03|0.02|N|O|1998-02-19|1998-03-07|1998-02-24|TAKE BACK RETURN|SHIP|e furiously special packages. slyly ex| +55692|203727|3728|3|10|16307.10|0.07|0.06|N|O|1998-02-11|1998-03-16|1998-02-25|TAKE BACK RETURN|SHIP|lly. regular packages c| +55693|446645|46646|1|4|6366.48|0.08|0.06|A|F|1992-05-31|1992-05-26|1992-06-09|TAKE BACK RETURN|REG AIR|d packages. entici| +55693|746029|46030|2|3|3224.97|0.01|0.02|A|F|1992-06-15|1992-05-16|1992-07-14|NONE|REG AIR| slyly bold accounts cajole quickly| +55693|503372|15883|3|16|22005.60|0.02|0.06|A|F|1992-06-01|1992-05-27|1992-06-29|DELIVER IN PERSON|RAIL|. carefully ironi| +55694|289723|2229|1|3|5138.13|0.10|0.04|N|O|1997-03-17|1997-04-24|1997-03-31|NONE|RAIL|l excuses are carefully regular instruc| +55694|366066|28574|2|49|55470.45|0.02|0.03|N|O|1997-05-14|1997-04-17|1997-05-25|TAKE BACK RETURN|FOB|are blithely carefully ironi| +55694|470732|8260|3|47|80027.37|0.07|0.06|N|O|1997-03-11|1997-05-13|1997-03-20|DELIVER IN PERSON|TRUCK| unusual pinto beans. fluffily reg| +55695|667445|17446|1|3|4237.23|0.00|0.00|A|F|1992-09-09|1992-09-06|1992-09-22|NONE|AIR|use. slyly regular accoun| +55695|735916|48431|2|10|19518.80|0.06|0.06|A|F|1992-08-25|1992-10-14|1992-09-18|TAKE BACK RETURN|REG AIR|al platelets solve furio| +55695|531396|18927|3|23|32829.51|0.04|0.06|A|F|1992-10-27|1992-10-14|1992-10-29|NONE|TRUCK|the furiously pending accounts | +55720|773254|10800|1|35|46452.70|0.08|0.06|A|F|1993-09-12|1993-09-04|1993-09-29|TAKE BACK RETURN|REG AIR| packages-- enticingly regular sauternes| +55720|71456|8960|2|19|27121.55|0.02|0.07|R|F|1993-08-16|1993-09-21|1993-09-15|TAKE BACK RETURN|TRUCK|dencies. furiously ironic| +55720|948576|48577|3|10|16245.30|0.06|0.05|R|F|1993-08-12|1993-10-13|1993-08-20|COLLECT COD|REG AIR|oach after t| +55720|710470|35499|4|21|31089.24|0.09|0.05|A|F|1993-09-03|1993-09-15|1993-09-08|COLLECT COD|SHIP|c deposits lose blithely alongside of th| +55720|863533|1085|5|32|47887.68|0.04|0.08|A|F|1993-10-02|1993-09-14|1993-10-05|TAKE BACK RETURN|REG AIR|sts are permanently. spe| +55720|386773|49281|6|41|76250.16|0.06|0.04|R|F|1993-09-11|1993-09-11|1993-10-10|DELIVER IN PERSON|REG AIR|uests. ironic, unusual pla| +55720|477497|27498|7|3|4423.41|0.01|0.07|R|F|1993-10-30|1993-10-05|1993-11-12|DELIVER IN PERSON|MAIL| bold accounts. ironic, blithe theodol| +55721|277656|27657|1|18|29405.52|0.03|0.03|A|F|1993-07-01|1993-05-26|1993-07-18|COLLECT COD|RAIL|packages. pending escapades haggle slyly?| +55721|548720|48721|2|2|3537.40|0.07|0.05|R|F|1993-05-10|1993-05-22|1993-05-12|DELIVER IN PERSON|REG AIR|ilent packages. | +55721|333051|20570|3|43|46613.72|0.04|0.05|A|F|1993-07-20|1993-06-23|1993-08-08|TAKE BACK RETURN|REG AIR|accounts against | +55722|550424|25447|1|41|60450.40|0.05|0.04|R|F|1992-03-29|1992-02-08|1992-04-01|NONE|SHIP|uickly regu| +55723|839197|14230|1|3|3408.45|0.03|0.06|N|O|1996-09-28|1996-10-11|1996-09-30|NONE|MAIL|e quickly regular instructions. final pac| +55724|981682|31683|1|23|40563.72|0.01|0.02|R|F|1995-01-31|1994-12-23|1995-02-18|COLLECT COD|FOB|. pending platelets wake at the final e| +55724|115392|2899|2|23|32369.97|0.09|0.07|R|F|1995-01-25|1995-01-30|1995-02-22|TAKE BACK RETURN|RAIL|ess, unusual theodolites wake acco| +55724|389424|39425|3|44|66590.04|0.02|0.05|R|F|1995-02-24|1994-12-21|1995-03-02|COLLECT COD|SHIP| the furiously ironi| +55725|401249|38774|1|14|16103.08|0.10|0.05|N|O|1998-11-21|1998-09-06|1998-12-03|DELIVER IN PERSON|FOB|ructions are blithely after the caref| +55725|788149|25695|2|47|58144.17|0.09|0.05|N|O|1998-11-18|1998-09-14|1998-12-15|DELIVER IN PERSON|TRUCK|slyly bold patterns det| +55726|191693|16700|1|14|24985.66|0.09|0.03|A|F|1992-06-06|1992-07-05|1992-07-06|COLLECT COD|TRUCK|ironic ideas. fin| +55726|782023|7054|2|41|45304.59|0.04|0.02|R|F|1992-06-27|1992-07-07|1992-07-27|COLLECT COD|REG AIR|fully bold platelets w| +55726|451913|14423|3|32|59676.48|0.05|0.02|R|F|1992-05-05|1992-06-10|1992-05-18|COLLECT COD|AIR|cial deposits sleep carefully express,| +55726|289227|1733|4|34|41351.14|0.01|0.02|R|F|1992-08-20|1992-07-14|1992-09-01|NONE|FOB| beans along the alway| +55726|34951|47452|5|20|37719.00|0.03|0.06|R|F|1992-05-20|1992-06-28|1992-06-17|COLLECT COD|SHIP|ar requests against the| +55727|596303|46304|1|12|16791.36|0.05|0.03|A|F|1993-08-26|1993-08-22|1993-09-23|COLLECT COD|MAIL|even accounts. theodolites about the| +55727|53548|3549|2|16|24024.64|0.07|0.02|R|F|1993-08-18|1993-07-23|1993-08-20|NONE|MAIL| final accounts are carefully. slyly specia| +55727|967812|5370|3|2|3759.54|0.01|0.01|A|F|1993-07-14|1993-08-31|1993-08-01|DELIVER IN PERSON|FOB|y express foxes. carefully regular | +55727|2797|40298|4|19|32296.01|0.10|0.05|A|F|1993-07-31|1993-07-14|1993-08-07|DELIVER IN PERSON|FOB|gular theodolites. blithe| +55752|605893|5894|1|50|89943.00|0.04|0.03|R|F|1992-10-14|1992-12-28|1992-11-09|NONE|FOB|unusual theodolites. foxes wake carefully| +55752|229092|41597|2|21|21442.68|0.01|0.08|R|F|1993-01-23|1992-11-25|1993-02-22|NONE|FOB|ut the slyly bold instructions us| +55752|338431|13444|3|23|33796.66|0.07|0.08|R|F|1993-01-28|1992-12-17|1993-02-27|TAKE BACK RETURN|SHIP|ding warthogs| +55752|3602|28603|4|3|4516.80|0.04|0.04|A|F|1992-10-21|1992-11-20|1992-10-31|NONE|TRUCK|ckages boost above the fluffily sly pains: | +55752|535182|10203|5|20|24343.20|0.04|0.03|R|F|1993-02-09|1993-01-05|1993-02-13|TAKE BACK RETURN|SHIP|ins cajole carefully. doggedly daring gi| +55752|800672|38221|6|14|22016.82|0.00|0.08|R|F|1993-01-17|1992-11-15|1993-02-09|NONE|SHIP|asymptotes | +55753|198198|35708|1|25|32404.75|0.06|0.01|N|O|1997-06-21|1997-03-24|1997-07-03|DELIVER IN PERSON|REG AIR|ages snooze slyly. express| +55753|110453|10454|2|6|8780.70|0.00|0.07|N|O|1997-06-11|1997-04-24|1997-06-14|DELIVER IN PERSON|RAIL|ites along the express, expres| +55753|383554|8569|3|30|49126.20|0.01|0.03|N|O|1997-03-14|1997-05-19|1997-03-20|TAKE BACK RETURN|TRUCK|es grow slyly regular, ironic foxes. re| +55753|380247|30248|4|21|27871.83|0.05|0.06|N|O|1997-04-04|1997-03-25|1997-04-26|TAKE BACK RETURN|MAIL|nal instructio| +55753|803822|3823|5|49|84563.22|0.07|0.07|N|O|1997-05-07|1997-04-09|1997-05-25|COLLECT COD|TRUCK|oost slyly acc| +55753|819566|32083|6|44|65362.88|0.01|0.01|N|O|1997-03-04|1997-05-13|1997-03-09|TAKE BACK RETURN|SHIP|e regular fo| +55754|130911|5916|1|45|87385.95|0.00|0.06|R|F|1995-03-20|1995-04-01|1995-04-19|DELIVER IN PERSON|REG AIR|ounts. furiously fin| +55754|211013|36022|2|7|6468.00|0.05|0.03|A|F|1995-03-21|1995-03-08|1995-04-16|NONE|TRUCK|sleep furio| +55754|492081|29609|3|24|25753.44|0.00|0.03|A|F|1995-03-25|1995-02-08|1995-03-31|NONE|TRUCK|xes sleep furiously| +55754|392489|4997|4|19|30047.93|0.05|0.06|R|F|1995-02-23|1995-02-23|1995-03-08|COLLECT COD|MAIL|fily. blithely final pa| +55754|557817|45351|5|5|9373.95|0.04|0.02|A|F|1995-01-10|1995-03-24|1995-01-24|TAKE BACK RETURN|MAIL|wake blithely. final | +55754|223804|36309|6|48|82933.92|0.08|0.04|R|F|1995-02-10|1995-02-19|1995-02-12|COLLECT COD|REG AIR| the blith| +55755|715157|2700|1|5|5860.60|0.00|0.02|N|O|1998-01-10|1998-03-25|1998-01-30|TAKE BACK RETURN|RAIL| blithely even theodolites. sly| +55755|639821|39822|2|32|56345.28|0.00|0.00|N|O|1998-04-09|1998-03-17|1998-04-11|COLLECT COD|TRUCK|ithely about the final pinto beans. fin| +55755|467176|42195|3|10|11431.50|0.08|0.01|N|O|1998-02-06|1998-02-11|1998-03-01|COLLECT COD|TRUCK|l accounts wake qui| +55755|825629|13178|4|45|69956.10|0.08|0.01|N|O|1998-01-22|1998-02-19|1998-02-01|COLLECT COD|TRUCK| wake. request| +55756|972033|47072|1|24|26519.76|0.10|0.04|R|F|1994-11-21|1994-10-10|1994-12-05|DELIVER IN PERSON|FOB| blithely after the| +55756|954868|29907|2|30|57684.60|0.10|0.02|A|F|1994-09-19|1994-11-01|1994-10-13|NONE|RAIL|s. blithely ironic theodol| +55756|462015|37034|3|29|28332.71|0.10|0.01|R|F|1994-08-31|1994-10-30|1994-09-17|DELIVER IN PERSON|REG AIR|carefully fi| +55756|79859|4862|4|14|25743.90|0.01|0.06|A|F|1994-10-29|1994-09-23|1994-11-07|DELIVER IN PERSON|REG AIR|egular theodolites. ca| +55757|55815|18317|1|8|14166.48|0.03|0.03|N|O|1997-05-01|1997-04-05|1997-05-12|TAKE BACK RETURN|MAIL|l pinto beans wake fluffily across the q| +55758|220582|33087|1|34|51087.38|0.10|0.01|R|F|1993-02-05|1993-02-18|1993-02-21|TAKE BACK RETURN|RAIL|symptotes. bold,| +55758|320846|20847|2|20|37336.60|0.10|0.05|A|F|1993-02-12|1993-02-21|1993-02-21|COLLECT COD|FOB|ly. regular, even accounts impress ca| +55758|455254|42782|3|11|13301.53|0.01|0.01|R|F|1993-01-25|1993-02-01|1993-02-05|DELIVER IN PERSON|RAIL|r requests boost above t| +55759|732227|32228|1|1|1259.19|0.03|0.03|R|F|1995-02-09|1995-01-20|1995-03-05|TAKE BACK RETURN|FOB|ronic theodolites against the pinto beans u| +55759|531798|6819|2|27|49403.79|0.08|0.04|A|F|1995-02-03|1994-12-25|1995-02-12|TAKE BACK RETURN|FOB|ckages. bold ideas w| +55759|926306|1343|3|2|2664.52|0.06|0.02|R|F|1994-11-28|1994-12-25|1994-12-27|NONE|TRUCK|s. furiousl| +55759|415049|27558|4|28|26992.56|0.00|0.03|A|F|1994-11-16|1994-12-18|1994-11-25|TAKE BACK RETURN|SHIP|ndencies haggle slyly | +55759|720911|20912|5|31|59888.28|0.04|0.05|A|F|1995-01-22|1994-12-13|1995-02-05|COLLECT COD|REG AIR|y final deposits wake! pendi| +55759|346063|21076|6|35|38816.75|0.06|0.01|R|F|1994-12-22|1994-12-10|1994-12-23|NONE|REG AIR|. blithely express accounts wake qui| +55759|279469|16985|7|25|36211.25|0.00|0.06|R|F|1994-10-31|1995-01-08|1994-11-11|COLLECT COD|REG AIR| sleep fluffily about the ironic | +55784|31935|6936|1|12|22403.16|0.08|0.01|R|F|1995-05-12|1995-05-07|1995-06-11|TAKE BACK RETURN|SHIP|ly even packages wake furious| +55784|730988|6017|2|19|38360.05|0.01|0.04|R|F|1995-03-29|1995-05-25|1995-04-16|COLLECT COD|MAIL|arefully ironic depos| +55784|702519|2520|3|11|16736.28|0.02|0.00|A|F|1995-04-07|1995-05-03|1995-04-11|TAKE BACK RETURN|MAIL|against the furiously regular | +55784|231573|19086|4|46|69209.76|0.03|0.08|A|F|1995-05-11|1995-04-02|1995-05-24|DELIVER IN PERSON|REG AIR|regular sentiments are | +55784|31637|44138|5|48|75294.24|0.00|0.08|R|F|1995-04-21|1995-04-17|1995-04-22|TAKE BACK RETURN|TRUCK|. packages wake. regularly even theo| +55784|710857|23372|6|35|65373.70|0.00|0.02|A|F|1995-05-13|1995-04-11|1995-06-10|DELIVER IN PERSON|FOB|nal foxes among the slyly reg| +55785|264914|2430|1|25|46972.50|0.07|0.01|N|O|1998-09-07|1998-08-28|1998-10-06|DELIVER IN PERSON|SHIP|ven excuses haggle | +55785|408316|20825|2|28|34280.12|0.03|0.06|N|O|1998-10-01|1998-09-07|1998-10-09|NONE|RAIL|uickly ironic deposits snooze furiously sly| +55785|559626|47160|3|9|15170.40|0.00|0.07|N|O|1998-09-19|1998-08-23|1998-09-21|DELIVER IN PERSON|REG AIR|gside of the blithely bold | +55785|624208|36721|4|35|39625.95|0.05|0.06|N|O|1998-10-12|1998-08-13|1998-11-06|TAKE BACK RETURN|FOB| cajole blithely from the pinto beans. bl| +55785|60379|10380|5|29|38841.73|0.09|0.03|N|O|1998-09-11|1998-07-27|1998-09-28|NONE|MAIL|endencies nag furiously brave, | +55786|82422|32423|1|44|61794.48|0.09|0.05|N|O|1995-12-05|1995-11-09|1995-12-26|DELIVER IN PERSON|TRUCK|the final escapades. pinto bea| +55786|254798|4799|2|18|31550.04|0.07|0.08|N|O|1995-11-24|1995-12-11|1995-12-18|DELIVER IN PERSON|TRUCK|nstructions; slowly cl| +55786|383191|33192|3|28|35677.04|0.07|0.01|N|O|1995-09-29|1995-11-20|1995-10-26|COLLECT COD|REG AIR|ely even theodolites h| +55786|281979|19495|4|22|43141.12|0.04|0.00|N|O|1995-12-18|1995-12-14|1996-01-05|TAKE BACK RETURN|MAIL|e final inst| +55787|563356|890|1|46|65289.18|0.08|0.04|A|F|1992-04-30|1992-04-24|1992-05-16|TAKE BACK RETURN|MAIL|ly from the slyly re| +55787|307822|7823|2|24|43915.44|0.05|0.08|A|F|1992-04-28|1992-05-26|1992-05-10|TAKE BACK RETURN|FOB|oxes; slyly regular foxes cajole. carefully| +55787|562349|37372|3|3|4233.96|0.06|0.05|R|F|1992-03-30|1992-06-02|1992-04-04|NONE|TRUCK|en requests| +55787|399429|11937|4|26|39738.66|0.04|0.02|A|F|1992-05-30|1992-06-01|1992-06-18|NONE|FOB|in blithely into the re| +55787|194871|7375|5|15|29488.05|0.07|0.02|A|F|1992-06-04|1992-04-20|1992-06-30|DELIVER IN PERSON|SHIP|ic requests cajole quickly carefull| +55787|192751|30261|6|38|70062.50|0.00|0.02|A|F|1992-06-01|1992-05-10|1992-06-10|DELIVER IN PERSON|FOB|ions sleep idly accord| +55788|75124|37626|1|8|8792.96|0.08|0.02|N|O|1998-10-25|1998-09-13|1998-11-12|TAKE BACK RETURN|AIR|lphins hinder | +55789|414043|26552|1|8|7656.16|0.03|0.07|N|O|1997-11-10|1997-11-12|1997-11-15|TAKE BACK RETURN|SHIP| furiously| +55790|786963|11994|1|1|2049.93|0.07|0.04|A|F|1993-11-13|1993-12-28|1993-12-13|DELIVER IN PERSON|SHIP|eans cajole permanently furio| +55790|483656|33657|2|48|78702.24|0.02|0.06|R|F|1994-02-14|1993-12-10|1994-03-11|DELIVER IN PERSON|RAIL|ons boost fluffily along t| +55790|805792|5793|3|28|47537.00|0.05|0.05|A|F|1994-01-26|1994-01-16|1994-01-27|DELIVER IN PERSON|SHIP|. carefully special ide| +55790|931737|19292|4|13|22992.97|0.09|0.07|A|F|1993-12-21|1993-12-11|1994-01-05|NONE|TRUCK| instructions. final pinto beans use| +55790|696475|21502|5|47|69157.68|0.02|0.03|A|F|1993-12-28|1993-12-01|1994-01-10|TAKE BACK RETURN|TRUCK|y bold theodolit| +55791|160184|35191|1|27|33592.86|0.04|0.07|N|O|1998-07-03|1998-06-06|1998-07-05|COLLECT COD|REG AIR|ording to the blithely ironic fox| +55791|209088|9089|2|29|28915.03|0.05|0.06|N|O|1998-05-13|1998-05-01|1998-05-17|DELIVER IN PERSON|RAIL|, final pinto bea| +55791|131194|18701|3|34|41656.46|0.07|0.05|N|O|1998-06-07|1998-06-03|1998-06-10|TAKE BACK RETURN|TRUCK|onic instructions haggle blithely r| +55791|974572|12130|4|49|80679.97|0.03|0.01|N|O|1998-04-30|1998-05-15|1998-05-23|TAKE BACK RETURN|MAIL|tead of the slyly even accounts. furiously| +55791|624523|24524|5|34|49214.66|0.07|0.02|N|O|1998-05-26|1998-05-02|1998-06-05|TAKE BACK RETURN|REG AIR|inos. blithely re| +55791|349870|12377|6|50|95993.00|0.08|0.08|N|O|1998-07-09|1998-05-03|1998-08-04|COLLECT COD|MAIL|bold accounts. carefully special requests | +55791|253863|41379|7|20|36337.00|0.07|0.07|N|O|1998-06-25|1998-05-21|1998-07-15|TAKE BACK RETURN|RAIL|. slyly ironic pinto beans sleep ab| +55816|666691|4231|1|5|8288.30|0.00|0.03|A|F|1992-07-18|1992-06-18|1992-07-25|DELIVER IN PERSON|AIR|y regularly silent acco| +55816|67333|29835|2|50|65016.50|0.06|0.06|R|F|1992-06-22|1992-06-11|1992-06-28|TAKE BACK RETURN|REG AIR|eposits. daring, expres| +55816|656039|6040|3|43|42785.00|0.08|0.02|R|F|1992-07-21|1992-06-08|1992-07-25|NONE|RAIL|ts-- carefully unusual deposits after the | +55817|417765|5290|1|29|48799.46|0.04|0.04|R|F|1993-11-12|1993-10-19|1993-11-14|DELIVER IN PERSON|SHIP|slyly express the| +55817|359937|9938|2|31|61904.52|0.05|0.03|A|F|1993-12-31|1993-12-06|1994-01-22|DELIVER IN PERSON|FOB|pinto beans cajole slyly. accounts| +55817|459966|47494|3|32|61630.08|0.08|0.01|A|F|1993-11-19|1993-11-05|1993-12-07|DELIVER IN PERSON|TRUCK|ily after the expr| +55817|646346|33883|4|18|23261.58|0.03|0.00|R|F|1993-10-05|1993-12-02|1993-10-22|DELIVER IN PERSON|REG AIR| pending deposits are across the blithely | +55818|229484|29485|1|41|57952.27|0.00|0.04|A|F|1992-09-15|1992-10-30|1992-10-08|COLLECT COD|REG AIR|he ironic platelet| +55818|932766|7803|2|49|88137.28|0.00|0.03|R|F|1992-12-20|1992-10-31|1993-01-14|DELIVER IN PERSON|TRUCK|aggle furiously ironic i| +55818|981598|44118|3|11|18475.05|0.01|0.02|R|F|1992-10-26|1992-11-29|1992-11-18|DELIVER IN PERSON|REG AIR|le blithely accounts. furious| +55818|711952|24467|4|29|56953.68|0.10|0.01|A|F|1992-09-29|1992-11-18|1992-10-22|NONE|SHIP|d deposits wake theodolites. | +55818|770178|45209|5|43|53670.02|0.10|0.05|R|F|1992-09-24|1992-10-11|1992-10-06|TAKE BACK RETURN|TRUCK|w carefully sometimes special hocke| +55819|916139|28658|1|14|16171.26|0.03|0.01|N|O|1996-06-10|1996-08-15|1996-06-27|COLLECT COD|MAIL|wake blithely regular reques| +55819|537828|339|2|10|18658.00|0.08|0.08|N|O|1996-06-10|1996-08-01|1996-06-26|NONE|RAIL|en platele| +55819|266580|16581|3|9|13919.13|0.03|0.07|N|O|1996-07-03|1996-07-01|1996-07-10|TAKE BACK RETURN|TRUCK|iously-- sl| +55819|409390|46915|4|30|38981.10|0.08|0.06|N|O|1996-07-24|1996-07-13|1996-07-25|TAKE BACK RETURN|MAIL|. requests might nag bl| +55819|616515|29028|5|4|5725.92|0.01|0.03|N|O|1996-06-18|1996-08-12|1996-06-19|COLLECT COD|RAIL|sly express | +55820|945329|7848|1|9|12368.52|0.07|0.02|R|F|1994-05-11|1994-04-04|1994-05-19|TAKE BACK RETURN|FOB|ep along the carefully ironic fox| +55820|143075|43076|2|27|30187.89|0.08|0.07|R|F|1994-02-01|1994-04-02|1994-02-17|DELIVER IN PERSON|TRUCK|ve. pending| +55820|651689|14203|3|30|49219.50|0.06|0.05|R|F|1994-01-19|1994-03-19|1994-02-06|COLLECT COD|TRUCK|r deposits.| +55821|554694|29717|1|41|71695.47|0.08|0.08|N|O|1998-01-01|1998-01-31|1998-01-21|TAKE BACK RETURN|REG AIR|ng the blithely even i| +55821|732384|32385|2|23|32576.05|0.06|0.08|N|O|1998-03-18|1998-02-19|1998-04-01|NONE|TRUCK|blithely unusual requests. ironic, pending | +55821|176391|1398|3|48|70434.72|0.04|0.08|N|O|1998-01-17|1998-01-14|1998-01-23|NONE|AIR|gular theodolite| +55821|597222|34756|4|2|2638.40|0.06|0.08|N|O|1997-12-18|1998-01-25|1998-01-02|DELIVER IN PERSON|RAIL| carefully above the | +55821|498261|10771|5|48|60443.52|0.09|0.07|N|O|1998-01-28|1998-01-21|1998-02-21|DELIVER IN PERSON|REG AIR|ial platelets| +55821|269689|7205|6|6|9952.02|0.00|0.03|N|O|1997-12-31|1998-02-08|1998-01-27|COLLECT COD|TRUCK|the blithely regular reque| +55821|657723|32750|7|25|42017.25|0.00|0.05|N|O|1997-12-09|1997-12-24|1997-12-28|DELIVER IN PERSON|FOB|ithely final r| +55822|340203|2710|1|8|9945.52|0.04|0.04|N|O|1997-09-19|1997-11-01|1997-09-24|TAKE BACK RETURN|MAIL|deposits. fluffily s| +55822|784111|9142|2|7|8365.56|0.04|0.06|N|O|1997-12-17|1997-10-27|1997-12-24|DELIVER IN PERSON|TRUCK|slyly final foxes| +55822|549735|37266|3|22|39263.62|0.06|0.02|N|O|1997-10-15|1997-10-27|1997-11-08|TAKE BACK RETURN|FOB|ly final pinto bea| +55822|392423|29945|4|2|3030.82|0.09|0.07|N|O|1997-09-03|1997-10-24|1997-10-02|NONE|SHIP|r the bold, pending requests are carefully | +55823|204942|42455|1|44|81264.92|0.04|0.04|N|O|1998-04-26|1998-02-22|1998-05-17|DELIVER IN PERSON|RAIL|y special pinto bean| +55823|457639|32658|2|39|62267.79|0.02|0.05|N|O|1998-03-02|1998-04-16|1998-03-12|NONE|MAIL|sleep. slyly pe| +55823|522491|47512|3|48|72646.56|0.03|0.00|N|O|1998-04-08|1998-02-28|1998-04-13|TAKE BACK RETURN|FOB|eposits. regular deposits mold quickly cl| +55823|492555|17574|4|16|24760.48|0.09|0.00|N|O|1998-04-12|1998-04-11|1998-05-05|DELIVER IN PERSON|AIR|quickly ironic accounts eat quickly| +55823|370283|7805|5|36|48717.72|0.09|0.06|N|O|1998-05-05|1998-03-18|1998-05-27|TAKE BACK RETURN|REG AIR|ithely regu| +55823|339085|1592|6|13|14612.91|0.04|0.03|N|O|1998-02-17|1998-02-28|1998-03-19|DELIVER IN PERSON|RAIL|structions integrate enticingly alon| +55823|997773|10293|7|24|44897.52|0.00|0.03|N|O|1998-02-24|1998-02-27|1998-03-20|TAKE BACK RETURN|TRUCK|y across the fluffily quick deposits| +55848|558454|33477|1|12|18149.16|0.08|0.04|R|F|1992-10-02|1992-08-07|1992-10-12|TAKE BACK RETURN|REG AIR|sly regular somas. ironic deposits haggle f| +55849|222885|22886|1|50|90393.50|0.05|0.01|R|F|1994-01-06|1994-03-11|1994-01-23|COLLECT COD|FOB|c dependenc| +55849|12068|37069|2|26|25481.56|0.01|0.03|A|F|1994-03-23|1994-02-05|1994-04-13|NONE|TRUCK|e. blithely regular excuses detect blit| +55849|818497|18498|3|1|1415.45|0.09|0.04|R|F|1994-01-24|1994-02-23|1994-02-12|TAKE BACK RETURN|SHIP|ual, regular packages against the pend| +55850|201407|26416|1|40|52335.60|0.04|0.00|R|F|1993-01-30|1993-02-20|1993-02-14|DELIVER IN PERSON|MAIL|riously enticing p| +55850|32580|20081|2|11|16638.38|0.07|0.01|R|F|1992-12-31|1993-02-20|1993-01-06|NONE|REG AIR|l dependencies. final account| +55851|174750|12260|1|30|54742.50|0.00|0.03|R|F|1993-04-13|1993-04-29|1993-05-03|DELIVER IN PERSON|MAIL|. permanent, ironic| +55851|16157|16158|2|13|13950.95|0.01|0.02|R|F|1993-04-06|1993-06-03|1993-04-13|NONE|MAIL|busily ironic, pending th| +55852|676841|14381|1|9|16360.29|0.07|0.08|N|O|1997-09-29|1997-10-12|1997-10-26|COLLECT COD|MAIL|ys after the furious| +55852|666413|41440|2|22|30346.36|0.05|0.05|N|O|1997-08-21|1997-09-27|1997-08-30|COLLECT COD|REG AIR|oxes. carefully final hock| +55852|388917|1425|3|10|20059.00|0.04|0.03|N|O|1997-10-22|1997-10-18|1997-10-23|DELIVER IN PERSON|FOB|ronic pinto beans? quickl| +55853|256339|31350|1|47|60880.04|0.08|0.04|N|O|1995-09-11|1995-08-16|1995-10-09|COLLECT COD|AIR|y behind the silent| +55853|275262|25263|2|44|54439.00|0.04|0.01|N|O|1995-09-12|1995-07-13|1995-10-12|DELIVER IN PERSON|MAIL|s are final packa| +55853|324947|37454|3|5|9859.65|0.08|0.01|N|O|1995-09-02|1995-07-02|1995-09-19|TAKE BACK RETURN|REG AIR|ove the even sheaves. excu| +55854|576180|1203|1|6|7536.96|0.07|0.00|N|O|1998-08-28|1998-08-18|1998-09-13|TAKE BACK RETURN|SHIP|eans wake. fluffily even theodolites u| +55854|851542|39094|2|43|64220.50|0.06|0.02|N|O|1998-08-18|1998-08-05|1998-09-07|TAKE BACK RETURN|REG AIR|lar, silent requests. sly| +55854|850415|416|3|26|35499.62|0.07|0.03|N|O|1998-07-10|1998-07-31|1998-07-14|TAKE BACK RETURN|MAIL|usly across the final, final ideas. fluffi| +55855|925081|37600|1|10|11060.40|0.08|0.00|R|F|1993-07-31|1993-07-16|1993-08-04|NONE|REG AIR|slyly bold pinto beans. unusual de| +55855|820271|45304|2|50|59561.50|0.00|0.04|A|F|1993-08-15|1993-07-28|1993-08-25|NONE|SHIP|edly again| +55855|292924|30440|3|10|19169.10|0.03|0.04|R|F|1993-07-24|1993-07-04|1993-08-12|COLLECT COD|AIR|packages haggle ironi| +55880|676735|39249|1|11|18828.70|0.08|0.02|N|O|1998-05-24|1998-08-11|1998-06-23|COLLECT COD|FOB|lar packages boos| +55880|883722|21274|2|31|52876.08|0.02|0.08|N|O|1998-06-18|1998-08-05|1998-07-03|NONE|SHIP|ayers are fu| +55881|433657|33658|1|22|34993.86|0.05|0.02|N|O|1998-05-17|1998-04-23|1998-05-29|TAKE BACK RETURN|TRUCK|sits around| +55881|470054|7582|2|32|32768.96|0.03|0.02|N|O|1998-05-09|1998-05-10|1998-06-07|TAKE BACK RETURN|MAIL|lar packages. blit| +55881|189625|39626|3|14|24004.68|0.02|0.04|N|O|1998-03-01|1998-04-29|1998-03-21|NONE|TRUCK|ly special requests sleep fluffily across| +55882|740844|40845|1|5|9424.05|0.10|0.07|A|F|1992-06-05|1992-05-31|1992-06-25|NONE|MAIL|inal somas integrate pinto beans. carefu| +55882|360311|10312|2|29|39767.70|0.00|0.00|R|F|1992-06-26|1992-04-17|1992-07-15|DELIVER IN PERSON|MAIL|deposits around the slyly e| +55882|740377|15406|3|4|5669.36|0.00|0.06|A|F|1992-06-04|1992-06-02|1992-06-09|DELIVER IN PERSON|FOB| after the reque| +55882|512122|12123|4|38|43095.80|0.02|0.05|R|F|1992-06-11|1992-04-26|1992-06-18|NONE|TRUCK|evenly fluffily even d| +55882|224881|12394|5|25|45146.75|0.09|0.07|A|F|1992-04-27|1992-05-07|1992-05-19|DELIVER IN PERSON|RAIL|re whithout the slyly slow deposits. furiou| +55882|562289|12290|6|18|24322.68|0.00|0.05|R|F|1992-05-01|1992-04-27|1992-05-07|NONE|TRUCK|posits mold aft| +55882|376389|26390|7|31|45426.47|0.00|0.03|A|F|1992-06-01|1992-06-02|1992-06-14|DELIVER IN PERSON|REG AIR|o beans are furiou| +55883|969819|7377|1|10|18887.70|0.04|0.03|N|O|1997-06-27|1997-05-23|1997-06-29|DELIVER IN PERSON|AIR|ndencies according to th| +55883|731850|31851|2|13|24463.66|0.00|0.08|N|O|1997-07-03|1997-06-28|1997-07-14|COLLECT COD|TRUCK|the regular gi| +55883|193214|30724|3|27|35294.67|0.05|0.04|N|O|1997-06-28|1997-05-16|1997-07-15|TAKE BACK RETURN|AIR|even accounts cajole final packages. care| +55883|340151|27670|4|6|7146.84|0.03|0.07|N|O|1997-04-15|1997-06-12|1997-04-29|DELIVER IN PERSON|TRUCK| dependencies. quickly | +55883|908998|8999|5|21|42145.95|0.07|0.04|N|O|1997-05-08|1997-06-12|1997-06-03|NONE|SHIP|sits impress carefully. f| +55883|520416|45437|6|31|44528.09|0.03|0.01|N|O|1997-06-19|1997-05-08|1997-07-06|NONE|FOB|fter the fluffily regular acco| +55883|627716|40229|7|33|54241.44|0.02|0.03|N|O|1997-05-26|1997-07-01|1997-06-23|TAKE BACK RETURN|SHIP|usual, special accounts nag ironic p| +55884|15503|40504|1|1|1418.50|0.09|0.01|R|F|1994-08-17|1994-10-15|1994-08-31|COLLECT COD|AIR|s haggle fluf| +55884|550219|220|2|14|17768.66|0.07|0.07|A|F|1994-07-22|1994-08-25|1994-08-04|NONE|AIR| fluffily quickly special decoys. | +55885|701986|27015|1|17|33795.15|0.00|0.04|N|O|1998-09-20|1998-09-17|1998-10-16|NONE|MAIL|even foxes. quickly ironic attainment| +55886|436650|11667|1|32|50772.16|0.04|0.01|N|O|1997-02-05|1997-02-09|1997-02-19|TAKE BACK RETURN|TRUCK| even asympto| +55886|774222|36738|2|15|19442.85|0.01|0.04|N|O|1997-03-13|1997-02-16|1997-03-22|COLLECT COD|SHIP|ronic depos| +55886|348285|48286|3|14|18665.78|0.09|0.01|N|O|1997-03-06|1997-03-02|1997-03-19|COLLECT COD|MAIL|silent theodolites after the unusual dolph| +55887|93589|31093|1|50|79129.00|0.06|0.08|N|O|1996-05-30|1996-05-31|1996-06-06|COLLECT COD|RAIL|evenly bold accounts cajole furiously s| +55887|941871|16908|2|24|45907.92|0.09|0.04|N|O|1996-04-02|1996-05-17|1996-04-27|NONE|MAIL|iously. carefully i| +55887|12709|210|3|19|30812.30|0.00|0.08|N|O|1996-04-01|1996-04-18|1996-04-04|TAKE BACK RETURN|REG AIR|lyly regular| +55887|598718|11230|4|3|5450.07|0.08|0.06|N|O|1996-06-09|1996-06-14|1996-07-06|DELIVER IN PERSON|TRUCK| bold platele| +55912|5392|5393|1|49|63572.11|0.07|0.01|R|F|1992-11-13|1992-10-27|1992-11-17|TAKE BACK RETURN|SHIP|furiously ir| +55912|620716|33229|2|38|62193.84|0.06|0.03|R|F|1992-10-02|1992-09-25|1992-10-11|DELIVER IN PERSON|MAIL|tions sleep| +55912|368980|6502|3|13|26636.61|0.03|0.06|R|F|1992-11-15|1992-10-18|1992-12-05|NONE|SHIP|doggedly furiously special packages. f| +55912|442743|5252|4|27|45514.44|0.03|0.00|A|F|1992-09-09|1992-10-12|1992-09-19|COLLECT COD|AIR|ual theodolites boost | +55912|177928|15438|5|4|8023.68|0.01|0.07|R|F|1992-10-22|1992-10-18|1992-11-01|NONE|REG AIR|quickly pending waters along the requests | +55912|434203|46712|6|17|19332.06|0.06|0.05|R|F|1992-12-15|1992-09-27|1992-12-18|DELIVER IN PERSON|MAIL|ely after the quickly regu| +55912|646738|9251|7|14|23585.80|0.05|0.02|A|F|1992-10-24|1992-11-18|1992-11-23|DELIVER IN PERSON|AIR| slyly ironic packages. quickly ironic in| +55913|718508|6051|1|39|59532.33|0.06|0.08|N|O|1995-10-04|1995-09-06|1995-10-29|NONE|REG AIR|s nag according to the| +55913|954688|29727|2|6|10455.84|0.05|0.05|N|O|1995-11-20|1995-09-01|1995-12-04|NONE|MAIL|ctions. even, regular excuses mainta| +55913|436356|36357|3|18|23261.94|0.03|0.02|N|O|1995-08-05|1995-09-25|1995-08-24|NONE|AIR|lly even dinos. quickly fina| +55913|834038|9071|4|1|971.99|0.00|0.04|N|O|1995-11-21|1995-09-11|1995-12-10|TAKE BACK RETURN|FOB| according to | +55913|671040|21041|5|16|16176.16|0.05|0.01|N|O|1995-09-05|1995-09-24|1995-09-16|NONE|SHIP|ously even accou| +55913|152873|40383|6|29|55850.23|0.03|0.07|N|O|1995-09-03|1995-09-22|1995-09-16|NONE|SHIP|ng to the regul| +55913|322240|22241|7|47|59324.81|0.07|0.05|N|O|1995-10-21|1995-10-13|1995-11-18|DELIVER IN PERSON|RAIL|y silent in| +55914|872298|22299|1|40|50810.00|0.09|0.04|N|O|1996-01-09|1995-11-13|1996-02-04|NONE|AIR|s. accounts wake slyly. fi| +55914|712171|37200|2|27|31944.78|0.08|0.07|N|O|1996-01-07|1995-11-28|1996-01-31|DELIVER IN PERSON|FOB|ual requests about the unu| +55915|679706|17246|1|29|48884.43|0.09|0.04|N|O|1997-08-05|1997-10-02|1997-08-07|TAKE BACK RETURN|REG AIR|hely regular packages in place of the caref| +55915|812061|12062|2|49|47677.98|0.01|0.02|N|O|1997-07-31|1997-10-25|1997-08-05|DELIVER IN PERSON|REG AIR|he fluffily close platelets. carefully pen| +55915|294069|31585|3|39|41458.95|0.00|0.00|N|O|1997-09-23|1997-10-11|1997-10-22|NONE|SHIP|ffily unusual packa| +55915|407059|44584|4|49|47335.47|0.03|0.05|N|O|1997-11-03|1997-09-18|1997-11-16|COLLECT COD|TRUCK|packages. bold packages by the s| +55915|423843|23844|5|40|70672.80|0.07|0.00|N|O|1997-09-20|1997-09-01|1997-10-11|COLLECT COD|MAIL|riously pending accounts.| +55915|515078|2609|6|34|37163.70|0.00|0.02|N|O|1997-08-22|1997-09-20|1997-09-14|TAKE BACK RETURN|RAIL|ckages. carefully final account| +55915|905734|18253|7|41|71327.29|0.06|0.06|N|O|1997-08-13|1997-10-10|1997-08-18|NONE|MAIL|cuses are blithel| +55916|656887|44427|1|44|81129.40|0.09|0.03|A|F|1993-07-17|1993-07-06|1993-08-15|COLLECT COD|AIR|ful deposits cajole carefully i| +55916|289045|26561|2|23|23782.69|0.07|0.05|A|F|1993-06-05|1993-06-25|1993-06-23|NONE|AIR|kly regular dolphins after t| +55916|969253|44292|3|15|19833.15|0.07|0.04|R|F|1993-06-24|1993-07-08|1993-07-03|DELIVER IN PERSON|AIR| along the the| +55916|222874|22875|4|32|57499.52|0.01|0.00|R|F|1993-07-19|1993-07-15|1993-08-10|COLLECT COD|MAIL|efully. carefully un| +55916|832922|20471|5|24|44517.12|0.04|0.02|A|F|1993-06-01|1993-05-29|1993-06-27|TAKE BACK RETURN|MAIL|ly blithely p| +55917|589098|1610|1|47|55792.29|0.10|0.08|A|F|1992-05-26|1992-04-15|1992-06-23|TAKE BACK RETURN|FOB| carefully final deposits | +55917|968001|43040|2|2|2137.92|0.02|0.00|A|F|1992-05-28|1992-04-01|1992-06-15|TAKE BACK RETURN|TRUCK|. ironic, silent p| +55917|183159|45663|3|5|6210.75|0.09|0.00|A|F|1992-04-15|1992-04-01|1992-04-20|COLLECT COD|AIR|ounts engage slyly unusual pinto beans.| +55917|350141|25156|4|44|52409.72|0.09|0.02|R|F|1992-04-03|1992-04-06|1992-04-24|COLLECT COD|REG AIR|al accounts abo| +55917|819211|44244|5|49|55378.33|0.04|0.03|R|F|1992-06-05|1992-04-05|1992-06-17|COLLECT COD|RAIL|uickly special g| +55917|473111|35621|6|14|15177.26|0.04|0.04|A|F|1992-04-26|1992-04-12|1992-05-26|DELIVER IN PERSON|RAIL|nts. carefully bold accounts | +55918|578844|16378|1|26|49993.32|0.04|0.06|N|O|1998-06-28|1998-07-01|1998-07-03|DELIVER IN PERSON|TRUCK|ages. courts at th| +55918|623899|48924|2|10|18228.60|0.04|0.01|N|O|1998-08-19|1998-07-08|1998-08-26|COLLECT COD|TRUCK|bove the final, s| +55918|864272|1824|3|27|33378.21|0.00|0.08|N|O|1998-07-17|1998-07-22|1998-08-06|TAKE BACK RETURN|TRUCK|packages. carefully final ideas along t| +55919|343326|30845|1|40|54772.40|0.01|0.03|N|O|1995-08-03|1995-09-12|1995-08-30|TAKE BACK RETURN|RAIL| haggle ironically after the blithely speci| +55919|279248|16764|2|26|31907.98|0.07|0.07|N|O|1995-10-03|1995-09-01|1995-10-21|NONE|MAIL| through the final dependencie| +55919|317572|42585|3|42|66761.52|0.08|0.02|N|O|1995-08-30|1995-09-19|1995-09-29|NONE|AIR| integrate quickly against the depo| +55919|422886|22887|4|33|59692.38|0.04|0.00|N|O|1995-10-08|1995-08-24|1995-10-17|NONE|RAIL|dolites affix ou| +55944|556863|6864|1|50|95992.00|0.03|0.07|N|O|1997-11-20|1997-11-03|1997-11-24|COLLECT COD|AIR|e blithely ironi| +55944|180091|42595|2|27|31619.43|0.08|0.00|N|O|1997-09-11|1997-11-04|1997-09-28|COLLECT COD|AIR|thely atop | +55944|785748|35749|3|4|7334.84|0.00|0.01|N|O|1997-09-22|1997-10-02|1997-10-11|NONE|FOB|. special theodolites around th| +55944|51292|13794|4|40|49731.60|0.07|0.08|N|O|1997-11-07|1997-10-05|1997-12-05|TAKE BACK RETURN|SHIP|silent deposits after the| +55944|49984|24985|5|22|42547.56|0.05|0.07|N|O|1997-08-27|1997-10-09|1997-09-17|DELIVER IN PERSON|TRUCK|ully silent accounts. ironic, fi| +55944|72240|22241|6|33|40003.92|0.04|0.06|N|O|1997-10-08|1997-10-24|1997-10-15|COLLECT COD|AIR|e carefully even instruct| +55944|127861|27862|7|11|20777.46|0.07|0.00|N|O|1997-08-31|1997-10-01|1997-09-21|NONE|REG AIR|nt instructions. furiously special | +55945|952654|2655|1|47|80210.67|0.04|0.00|R|F|1994-07-22|1994-08-02|1994-07-28|NONE|REG AIR|iously along the daringly busy dino| +55945|246291|33804|2|14|17321.92|0.01|0.02|R|F|1994-07-22|1994-08-16|1994-08-05|DELIVER IN PERSON|AIR|ly ideas. ironic asympto| +55945|404276|16785|3|42|49570.50|0.10|0.02|A|F|1994-08-17|1994-07-29|1994-08-22|COLLECT COD|SHIP| slyly special ideas wake| +55945|661842|36869|4|3|5411.43|0.02|0.07|A|F|1994-08-13|1994-07-12|1994-09-05|TAKE BACK RETURN|FOB|pending reque| +55945|570105|45128|5|24|28201.92|0.00|0.06|A|F|1994-09-12|1994-07-22|1994-09-15|TAKE BACK RETURN|AIR|hely ironic dep| +55945|753596|41142|6|27|44538.12|0.01|0.03|R|F|1994-07-27|1994-07-06|1994-08-11|NONE|FOB|leep final, ironic theodolite| +55946|871981|21982|1|23|44917.62|0.01|0.06|N|O|1997-11-13|1997-10-13|1997-12-01|DELIVER IN PERSON|REG AIR|r tithes. carefully iron| +55946|377045|2060|2|24|26928.72|0.10|0.01|N|O|1997-10-09|1997-10-08|1997-11-03|DELIVER IN PERSON|REG AIR|jole busily above the fox| +55946|981160|31161|3|12|14893.44|0.10|0.03|N|O|1997-09-05|1997-09-16|1997-09-09|TAKE BACK RETURN|FOB|l ideas. express | +55946|349029|24042|4|24|25872.24|0.02|0.01|N|O|1997-09-29|1997-11-02|1997-10-19|TAKE BACK RETURN|RAIL|pecial deposits haggle spe| +55946|123698|48703|5|12|20660.28|0.02|0.07|N|O|1997-09-24|1997-11-05|1997-10-14|NONE|FOB|to beans mold. slyly even dep| +55946|977861|15419|6|50|96941.00|0.07|0.07|N|O|1997-09-17|1997-09-16|1997-10-02|COLLECT COD|TRUCK|s. regular deposits boost fluffi| +55947|23457|35958|1|41|56598.45|0.02|0.01|R|F|1994-09-21|1994-08-13|1994-10-06|NONE|AIR|osits cajole. furiously dogged| +55947|238678|1183|2|22|35566.52|0.00|0.06|A|F|1994-07-08|1994-07-10|1994-07-09|TAKE BACK RETURN|TRUCK|the carefully regular epita| +55947|444360|19377|3|24|31304.16|0.01|0.01|A|F|1994-08-14|1994-08-13|1994-08-30|NONE|REG AIR|equests; furiously silent packages sleep c| +55947|345596|8103|4|3|4924.74|0.07|0.01|R|F|1994-09-15|1994-08-02|1994-10-13|NONE|RAIL|ggle quickly. do| +55947|426647|1664|5|48|75533.76|0.04|0.05|A|F|1994-08-28|1994-07-27|1994-09-21|TAKE BACK RETURN|SHIP|ully slow deposits nag. fluffily e| +55947|646068|46069|6|19|19266.57|0.06|0.06|A|F|1994-07-19|1994-08-12|1994-07-27|TAKE BACK RETURN|TRUCK|s use furiously express foxes. eve| +55948|333150|20669|1|23|27212.22|0.04|0.02|R|F|1992-08-13|1992-08-13|1992-09-02|DELIVER IN PERSON|RAIL|e about the idly regular reques| +55948|240898|40899|2|10|18388.80|0.02|0.05|R|F|1992-06-11|1992-08-05|1992-06-24|DELIVER IN PERSON|MAIL|gular, pending t| +55948|763259|38290|3|33|43633.26|0.09|0.04|R|F|1992-08-12|1992-06-26|1992-08-20|COLLECT COD|TRUCK|fully pending ideas. | +55948|83840|8843|4|7|12766.88|0.06|0.04|A|F|1992-07-22|1992-06-19|1992-08-12|NONE|RAIL|lyly bold frays may sl| +55948|87157|24661|5|25|28603.75|0.05|0.01|R|F|1992-09-03|1992-07-04|1992-09-27|NONE|RAIL|es. ideas sublate slyly agai| +55948|837226|49743|6|35|40711.30|0.08|0.03|R|F|1992-06-27|1992-07-14|1992-07-15|COLLECT COD|AIR|grouches sleep quickly | +55949|245114|20123|1|31|32832.10|0.06|0.02|N|O|1995-11-24|1995-12-13|1995-11-25|COLLECT COD|SHIP|s hinder slowly. bold| +55949|624803|49828|2|9|15549.93|0.04|0.08|N|O|1995-12-16|1995-11-16|1996-01-11|DELIVER IN PERSON|MAIL|ve the even deposi| +55949|51397|13899|3|33|44496.87|0.06|0.05|N|O|1996-02-02|1996-01-07|1996-02-24|TAKE BACK RETURN|SHIP|ent request| +55949|817796|17797|4|18|30847.50|0.07|0.06|N|O|1995-11-09|1995-11-28|1995-12-02|COLLECT COD|AIR|even ideas! even courts above| +55949|696288|21315|5|25|32106.25|0.08|0.00|N|O|1995-11-30|1995-11-17|1995-12-03|COLLECT COD|REG AIR|furiously final deposits. quickly silent f| +55950|177110|39614|1|47|55794.17|0.02|0.06|N|O|1996-05-13|1996-07-02|1996-06-02|COLLECT COD|RAIL|y express ideas sleep across the blithely r| +55950|686325|36326|2|20|26225.80|0.05|0.08|N|O|1996-07-30|1996-06-15|1996-08-29|DELIVER IN PERSON|AIR|ng excuses | +55950|52708|15210|3|44|73070.80|0.08|0.07|N|O|1996-08-12|1996-07-07|1996-09-01|TAKE BACK RETURN|AIR|fily express t| +55950|853487|16005|4|42|60498.48|0.10|0.08|N|O|1996-08-21|1996-07-31|1996-08-26|NONE|AIR|hely final packages. furiously pending| +55950|546450|8961|5|1|1496.43|0.02|0.07|N|O|1996-07-08|1996-07-13|1996-07-17|TAKE BACK RETURN|RAIL|kages! furiously unusual idea| +55951|627751|27752|1|36|60433.92|0.02|0.05|N|O|1997-06-24|1997-07-21|1997-07-03|TAKE BACK RETURN|MAIL|ronic deposits boost according| +55951|602575|27600|2|4|5910.16|0.09|0.08|N|O|1997-06-28|1997-08-07|1997-07-19|NONE|RAIL|ng platelet| +55951|462783|25293|3|8|13966.08|0.04|0.03|N|O|1997-08-30|1997-08-03|1997-09-13|TAKE BACK RETURN|SHIP|ng the bold foxes. furiously unusua| +55951|984360|9399|4|2|2888.64|0.01|0.01|N|O|1997-07-10|1997-07-01|1997-07-17|NONE|RAIL|its thrash alon| +55951|127832|2837|5|30|55794.90|0.03|0.02|N|O|1997-06-12|1997-07-08|1997-06-17|COLLECT COD|FOB| cajole slyly along the carefully sly pac| +55976|782454|32455|1|21|32264.82|0.03|0.02|R|F|1992-04-02|1992-04-29|1992-04-06|TAKE BACK RETURN|REG AIR|pinto beans play carefully! ironic, ir| +55977|386250|11265|1|29|38750.96|0.03|0.08|A|F|1993-12-20|1993-12-23|1994-01-17|NONE|REG AIR|e blithely ruthless ideas. si| +55977|700818|38361|2|26|47288.28|0.00|0.01|A|F|1994-01-29|1993-11-17|1994-01-30|TAKE BACK RETURN|FOB|gle quickly reg| +55977|645125|20150|3|3|3210.27|0.03|0.07|R|F|1993-11-13|1993-11-27|1993-12-08|DELIVER IN PERSON|FOB|ld requests cajole n| +55977|605883|43420|4|29|51876.65|0.04|0.08|A|F|1994-01-30|1993-12-12|1994-02-10|NONE|MAIL| to the requests. furiously re| +55977|67509|30011|5|37|54630.50|0.06|0.03|A|F|1993-11-30|1993-12-09|1993-12-09|TAKE BACK RETURN|AIR|thely regular dependencies n| +55977|609257|46794|6|41|47815.02|0.05|0.01|A|F|1993-10-05|1993-12-20|1993-10-08|COLLECT COD|REG AIR|efully regular foxes. excuses nag flu| +55978|244559|32072|1|32|48113.28|0.04|0.04|N|O|1998-08-05|1998-09-02|1998-08-27|NONE|MAIL|ss deposits acc| +55979|19930|44931|1|5|9249.65|0.08|0.02|N|O|1996-06-24|1996-06-08|1996-07-19|TAKE BACK RETURN|MAIL|latelets. furiously even packages de| +55980|621065|46090|1|37|36483.11|0.09|0.02|A|F|1992-04-18|1992-03-30|1992-05-06|TAKE BACK RETURN|SHIP|r finally quickly pending depend| +55980|224278|11791|2|14|16831.64|0.08|0.06|R|F|1992-02-13|1992-03-11|1992-03-07|TAKE BACK RETURN|RAIL|eep fluffily according to the sly| +55981|384309|21831|1|4|5573.16|0.01|0.01|A|F|1993-09-05|1993-08-27|1993-09-13|NONE|SHIP|al accounts after the quickly idle | +55982|836662|11695|1|2|3197.24|0.04|0.05|A|F|1993-03-07|1993-03-26|1993-03-08|COLLECT COD|REG AIR|y against the blithely fi| +55982|772067|9613|2|42|47839.26|0.10|0.06|R|F|1993-05-12|1993-04-14|1993-05-26|NONE|MAIL|ts detect quick| +55982|118339|5846|3|48|65151.84|0.01|0.02|R|F|1993-03-20|1993-04-16|1993-03-21|DELIVER IN PERSON|TRUCK|y final depos| +55982|909225|9226|4|50|61709.00|0.07|0.08|A|F|1993-02-25|1993-05-14|1993-03-14|NONE|RAIL|ic asymptote| +55982|342878|5385|5|22|42258.92|0.09|0.01|R|F|1993-05-03|1993-03-25|1993-05-16|TAKE BACK RETURN|AIR|ts are. slyly even saut| +55982|735747|35748|6|44|78439.24|0.00|0.01|R|F|1993-04-23|1993-04-13|1993-04-25|DELIVER IN PERSON|SHIP|g the even foxes. bold, even decoys at the | +55982|699706|37246|7|28|47758.76|0.04|0.04|A|F|1993-05-10|1993-04-23|1993-05-28|NONE|RAIL|osits. care| +55983|943851|6370|1|35|66318.35|0.08|0.05|N|O|1996-01-26|1996-02-10|1996-02-19|TAKE BACK RETURN|SHIP|oach among the quickly unusual theodo| +55983|298821|23832|2|38|69152.78|0.10|0.02|N|O|1996-01-09|1996-01-13|1996-02-03|COLLECT COD|TRUCK|ns. blithely| +55983|282412|44918|3|33|46015.20|0.03|0.05|N|O|1996-01-10|1996-01-21|1996-02-06|NONE|TRUCK|aggle acros| +55983|487373|12392|4|28|38089.80|0.01|0.04|N|O|1996-01-18|1996-03-05|1996-02-11|COLLECT COD|SHIP|pendencies. sil| +55983|274212|36718|5|20|23724.00|0.09|0.03|N|O|1995-12-18|1996-01-15|1995-12-29|TAKE BACK RETURN|FOB|y pending theodolites. bold acc| +56008|760689|10690|1|19|33243.35|0.07|0.05|R|F|1994-04-18|1994-02-12|1994-04-20|NONE|MAIL|ackages use special, special account| +56008|888081|599|2|12|12828.48|0.03|0.04|R|F|1994-01-23|1994-03-12|1994-02-13|DELIVER IN PERSON|FOB|uickly across the quickly ev| +56009|629953|42466|1|11|20712.12|0.00|0.04|R|F|1993-06-12|1993-05-19|1993-06-29|DELIVER IN PERSON|REG AIR|counts. carefully regular | +56009|619439|44464|2|2|2716.80|0.10|0.07|R|F|1993-05-03|1993-06-17|1993-05-04|DELIVER IN PERSON|TRUCK|ng the silent, regular requests wake furi| +56010|620530|33043|1|13|18856.50|0.01|0.06|A|F|1993-08-14|1993-06-18|1993-08-31|COLLECT COD|RAIL|ole slyly blithely even packages. car| +56010|243113|43114|2|5|5280.50|0.07|0.07|A|F|1993-07-12|1993-06-03|1993-08-03|DELIVER IN PERSON|MAIL|ly. even, ruthless deposits sleep s| +56011|240883|3388|1|8|14590.96|0.09|0.01|A|F|1994-05-26|1994-05-09|1994-06-16|NONE|SHIP| pending foxes sleep pending, | +56011|510710|48241|2|16|27531.04|0.01|0.02|A|F|1994-03-11|1994-04-02|1994-04-01|NONE|TRUCK|d accounts.| +56011|490954|28482|3|15|29173.95|0.09|0.05|R|F|1994-04-30|1994-03-17|1994-05-01|DELIVER IN PERSON|AIR|e final, special foxes hag| +56011|459015|46543|4|18|17531.82|0.00|0.05|R|F|1994-05-27|1994-04-14|1994-06-21|COLLECT COD|AIR|ely. final, fi| +56011|656119|43659|5|10|10750.80|0.02|0.02|A|F|1994-04-26|1994-05-02|1994-05-25|COLLECT COD|REG AIR|foxes. slyl| +56011|384403|9418|6|48|71394.72|0.08|0.02|A|F|1994-04-10|1994-03-22|1994-04-27|DELIVER IN PERSON|SHIP|ncies detect quick| +56011|651131|13645|7|44|47612.40|0.01|0.05|A|F|1994-02-25|1994-03-31|1994-03-04|COLLECT COD|FOB|nto beans serve along the | +56012|542082|17103|1|46|51706.76|0.10|0.07|R|F|1992-11-02|1992-12-25|1992-11-14|COLLECT COD|SHIP|g the carefully q| +56013|78890|41392|1|41|76624.49|0.10|0.03|R|F|1994-08-24|1994-07-11|1994-09-22|COLLECT COD|FOB|ainst the slyly ironic courts. p| +56014|747665|10180|1|35|59942.05|0.10|0.06|A|F|1992-05-11|1992-04-18|1992-06-03|DELIVER IN PERSON|AIR|sts. slyly ironic deposits sleep| +56015|391134|3642|1|15|18376.80|0.09|0.05|N|O|1996-03-04|1996-03-02|1996-03-21|COLLECT COD|TRUCK|eposits after the special, reg| +56015|776775|14321|2|45|83328.30|0.07|0.08|N|O|1996-04-22|1996-02-07|1996-04-27|COLLECT COD|RAIL|aggle. bold frays b| +56015|240850|40851|3|27|48352.68|0.03|0.05|N|O|1996-01-20|1996-02-15|1996-02-19|DELIVER IN PERSON|MAIL|blithely final packages | +56015|958301|20821|4|43|58448.18|0.02|0.01|N|O|1996-02-19|1996-03-01|1996-03-10|DELIVER IN PERSON|MAIL|ourts wake. regular, regular requests ca| +56040|74485|36987|1|28|40865.44|0.09|0.07|R|F|1992-09-06|1992-10-30|1992-09-26|DELIVER IN PERSON|TRUCK|r, special orbits. slyly unus| +56040|854882|42434|2|40|73473.60|0.08|0.02|R|F|1992-09-14|1992-10-31|1992-09-16|NONE|AIR| asymptotes wak| +56041|373103|10625|1|13|15289.17|0.01|0.02|A|F|1994-12-29|1995-01-30|1995-01-26|TAKE BACK RETURN|AIR|e furiously final| +56041|729332|4361|2|13|17696.90|0.04|0.08|A|F|1995-01-16|1994-12-08|1995-02-06|NONE|TRUCK|ep blithely silent dolphins. regu| +56042|871231|21232|1|46|55300.74|0.03|0.05|N|O|1998-06-30|1998-07-12|1998-07-28|COLLECT COD|FOB|ut the stealthily unusual packages. do| +56042|769938|19939|2|44|88347.60|0.00|0.01|N|O|1998-09-06|1998-07-25|1998-09-19|DELIVER IN PERSON|SHIP|bold theodolites. | +56042|335130|35131|3|39|45439.68|0.05|0.02|N|O|1998-08-06|1998-07-09|1998-08-09|NONE|FOB|riously final pack| +56042|515771|15772|4|41|73256.75|0.02|0.03|N|O|1998-06-08|1998-07-24|1998-07-04|NONE|FOB|onic instructions. fluffily special packa| +56042|558689|21201|5|38|66411.08|0.07|0.01|N|O|1998-09-27|1998-08-18|1998-10-24|TAKE BACK RETURN|FOB| ironic ideas! carefull| +56043|203428|3429|1|15|19971.15|0.03|0.00|R|F|1994-10-23|1994-11-17|1994-11-04|DELIVER IN PERSON|REG AIR|ffily. silent, permanent depos| +56043|9510|47011|2|45|63877.95|0.02|0.03|R|F|1994-10-24|1994-11-01|1994-10-27|TAKE BACK RETURN|TRUCK|eodolites. i| +56044|848907|48908|1|25|46396.50|0.09|0.02|R|F|1992-12-15|1992-12-06|1992-12-30|NONE|MAIL| ironic platelets above| +56044|566086|41109|2|5|5760.30|0.09|0.08|R|F|1993-01-06|1992-10-26|1993-01-23|NONE|TRUCK|lyly unusual instruc| +56044|206825|19330|3|10|17318.10|0.04|0.07|A|F|1992-10-04|1992-11-10|1992-11-03|COLLECT COD|TRUCK| unusual packages. furiously ironic reques| +56044|98499|23502|4|36|53909.64|0.07|0.05|R|F|1992-12-01|1992-10-18|1992-12-27|DELIVER IN PERSON|REG AIR|ly unusual instructions near the package| +56044|463899|13900|5|9|16765.83|0.02|0.04|A|F|1992-11-20|1992-11-19|1992-12-02|DELIVER IN PERSON|FOB|ealms; blith| +56045|963159|38198|1|16|19553.76|0.03|0.01|R|F|1994-03-31|1994-04-02|1994-04-01|TAKE BACK RETURN|MAIL|y. blithely sly instructions c| +56045|801097|38646|2|8|7984.40|0.03|0.00|R|F|1994-03-27|1994-03-14|1994-03-30|NONE|TRUCK|pains within the furiously even| +56046|816691|4240|1|25|40191.25|0.03|0.04|N|F|1995-06-04|1995-06-28|1995-06-27|TAKE BACK RETURN|RAIL|s cajole. furiously ironic excuses | +56046|122341|9848|2|35|47716.90|0.09|0.06|A|F|1995-05-02|1995-05-07|1995-05-19|COLLECT COD|RAIL|s. slyly final theodol| +56046|183647|33648|3|27|46727.28|0.00|0.06|N|O|1995-06-25|1995-05-25|1995-07-13|COLLECT COD|RAIL|ly regular packages | +56046|543693|43694|4|5|8683.35|0.07|0.02|N|O|1995-06-24|1995-06-15|1995-07-19|TAKE BACK RETURN|FOB|ld dependencies wake. ironic, i| +56047|123967|48972|1|45|89593.20|0.04|0.06|R|F|1995-03-14|1995-04-06|1995-03-27|TAKE BACK RETURN|REG AIR|le slyly carefully bold account| +56047|499413|36941|2|47|66382.33|0.09|0.07|N|O|1995-07-02|1995-04-22|1995-07-06|DELIVER IN PERSON|SHIP|ts. pinto beans nag since the | +56047|625701|726|3|18|29280.06|0.08|0.08|N|F|1995-06-07|1995-04-23|1995-07-01|TAKE BACK RETURN|TRUCK|s use quickly regular, ironic ideas. p| +56047|153065|28072|4|36|40250.16|0.01|0.08|N|O|1995-06-23|1995-04-07|1995-07-18|TAKE BACK RETURN|AIR|ut the even, regular ideas impre| +56072|653906|16420|1|11|20458.57|0.01|0.08|R|F|1994-06-30|1994-05-10|1994-07-07|TAKE BACK RETURN|RAIL|ely regular, even pinto bea| +56072|195539|20546|2|45|73553.85|0.03|0.04|R|F|1994-07-08|1994-05-08|1994-08-03|DELIVER IN PERSON|SHIP| dependencies. slyly pending instruct| +56072|413237|13238|3|12|13802.52|0.10|0.02|R|F|1994-07-10|1994-04-26|1994-07-20|DELIVER IN PERSON|TRUCK|eep near the slyly i| +56072|264000|26506|4|3|2891.97|0.07|0.00|A|F|1994-07-02|1994-05-04|1994-07-04|NONE|SHIP|ress foxes. accounts along the slyly un| +56072|46632|9133|5|44|69459.72|0.05|0.06|R|F|1994-06-18|1994-06-05|1994-06-23|NONE|MAIL|ckages use fu| +56073|536288|48799|1|13|17215.38|0.00|0.05|N|O|1997-07-20|1997-05-29|1997-08-05|NONE|FOB|le fluffily. furiously even foxes hagg| +56074|120769|33272|1|30|53692.80|0.10|0.05|N|O|1997-05-10|1997-07-10|1997-05-20|TAKE BACK RETURN|FOB|osits lose furiously. final packa| +56075|110296|22799|1|17|22206.93|0.03|0.01|R|F|1992-07-15|1992-05-24|1992-08-12|NONE|SHIP|thless requests was furiously among| +56075|735877|23420|2|32|61210.88|0.01|0.05|A|F|1992-06-03|1992-05-15|1992-06-23|COLLECT COD|REG AIR|regular foxes. blithely special pack| +56075|883443|33444|3|12|17116.80|0.08|0.06|R|F|1992-07-05|1992-05-04|1992-07-09|COLLECT COD|MAIL|lyly unusual pack| +56075|12112|12113|4|32|32771.52|0.09|0.05|A|F|1992-06-14|1992-04-25|1992-06-17|COLLECT COD|REG AIR|ss theodolite| +56075|562636|170|5|34|57752.74|0.10|0.01|A|F|1992-06-21|1992-05-03|1992-07-02|DELIVER IN PERSON|TRUCK|; ruthlessly even dependencies wake among t| +56075|218172|18173|6|44|47967.04|0.06|0.01|A|F|1992-04-12|1992-05-24|1992-05-06|COLLECT COD|SHIP|y express theodolites nag furiously d| +56076|923259|48296|1|15|19233.15|0.01|0.02|R|F|1993-11-21|1993-10-05|1993-11-27|TAKE BACK RETURN|AIR|e furiously? | +56076|200635|25644|2|5|7678.10|0.03|0.06|A|F|1993-10-02|1993-10-14|1993-10-21|NONE|AIR|uffily express foxes eat in| +56076|59802|47306|3|22|38759.60|0.03|0.07|R|F|1993-08-08|1993-09-11|1993-08-29|TAKE BACK RETURN|RAIL| thin asymptotes sleep f| +56076|81735|44237|4|16|27467.68|0.07|0.03|R|F|1993-10-08|1993-09-21|1993-10-28|DELIVER IN PERSON|FOB|t blithely. quickly final packages haggle.| +56076|703985|16500|5|44|87513.80|0.06|0.07|R|F|1993-11-08|1993-09-13|1993-11-20|DELIVER IN PERSON|MAIL|ns. blithely express depos| +56076|866275|28793|6|40|49649.20|0.06|0.07|R|F|1993-08-09|1993-10-07|1993-08-15|DELIVER IN PERSON|REG AIR|unts. foxes haggle sly| +56077|825686|13235|1|50|80582.00|0.00|0.06|N|O|1995-07-01|1995-08-26|1995-07-07|TAKE BACK RETURN|AIR|equests. slyly regular accounts boost f| +56077|289118|26634|2|19|21034.90|0.00|0.08|N|O|1995-08-15|1995-07-16|1995-09-04|TAKE BACK RETURN|TRUCK|fily express account| +56077|190824|28334|3|42|80422.44|0.05|0.06|N|O|1995-08-17|1995-07-03|1995-09-03|NONE|RAIL|lar pinto beans dazzle slyly fluff| +56078|614737|27250|1|42|69371.40|0.02|0.03|A|F|1993-07-04|1993-09-03|1993-07-13|NONE|FOB|solve: quickly bold escapades cajole fluffi| +56078|879878|17430|2|14|26009.62|0.07|0.06|R|F|1993-08-15|1993-09-02|1993-09-04|NONE|MAIL|deas sleep finally after the carefully si| +56078|103627|41134|3|18|29351.16|0.05|0.01|R|F|1993-10-11|1993-08-08|1993-10-17|DELIVER IN PERSON|RAIL|the ironic foxes.| +56078|650350|37890|4|33|42910.56|0.01|0.03|A|F|1993-08-07|1993-09-08|1993-08-31|DELIVER IN PERSON|AIR|ckages affix blithely am| +56079|973927|48966|1|31|62027.28|0.06|0.01|N|O|1998-05-30|1998-07-13|1998-06-06|COLLECT COD|FOB|. unusual a| +56079|777199|27200|2|39|49770.24|0.03|0.00|N|O|1998-09-01|1998-06-27|1998-10-01|DELIVER IN PERSON|RAIL|y express platelets. unusual| +56079|370117|7639|3|15|17806.50|0.02|0.02|N|O|1998-08-13|1998-08-05|1998-09-06|TAKE BACK RETURN|AIR| regular excuses sleep carefull| +56079|544117|44118|4|23|26705.07|0.07|0.03|N|O|1998-08-29|1998-07-16|1998-09-20|TAKE BACK RETURN|RAIL|furiously final platelets alongside of | +56079|959796|47354|5|14|25980.50|0.07|0.02|N|O|1998-06-02|1998-07-31|1998-06-28|TAKE BACK RETURN|AIR|xcuses. slyly express p| +56104|347127|34646|1|2|2348.22|0.09|0.04|R|F|1992-07-11|1992-08-03|1992-07-21|NONE|FOB| ironic platelets| +56104|160086|35093|2|40|45843.20|0.08|0.06|A|F|1992-08-25|1992-08-06|1992-09-06|COLLECT COD|SHIP|e carefully against the final | +56104|549608|49609|3|16|26521.28|0.05|0.05|R|F|1992-05-25|1992-07-23|1992-06-19|NONE|SHIP|refully unusual deposits | +56104|253210|40726|4|41|47691.20|0.05|0.04|R|F|1992-08-25|1992-07-16|1992-09-08|TAKE BACK RETURN|MAIL|aggle. blithely unusual package| +56104|688870|26410|5|49|91083.16|0.01|0.04|R|F|1992-08-27|1992-06-24|1992-09-19|DELIVER IN PERSON|REG AIR| depths haggl| +56104|826500|1533|6|45|64190.70|0.05|0.01|A|F|1992-08-18|1992-07-10|1992-09-07|NONE|RAIL|ght to cajo| +56105|804872|42421|1|19|33759.77|0.04|0.08|N|O|1997-01-13|1997-01-12|1997-01-14|COLLECT COD|RAIL|press request| +56105|467403|29913|2|40|54815.20|0.04|0.02|N|O|1997-03-23|1997-02-18|1997-04-11|DELIVER IN PERSON|REG AIR|l theodolites wake about the fluffily| +56105|629362|16899|3|28|36157.24|0.00|0.01|N|O|1997-02-15|1997-01-31|1997-02-23|NONE|AIR|al instructions! furiously| +56105|684035|9062|4|4|4076.00|0.02|0.06|N|O|1997-03-30|1997-01-02|1997-04-08|COLLECT COD|RAIL|ide of the blithely b| +56106|403811|16320|1|4|6859.16|0.03|0.07|N|O|1998-02-17|1998-01-03|1998-03-10|DELIVER IN PERSON|TRUCK|ng theodolites. furiou| +56106|851165|1166|2|8|8928.96|0.01|0.05|N|O|1998-02-01|1998-01-21|1998-02-10|COLLECT COD|TRUCK|. furiously regular deposits sleep| +56107|689401|39402|1|37|51443.69|0.10|0.07|A|F|1992-06-16|1992-06-26|1992-06-29|COLLECT COD|SHIP|uctions cajole slyly eve| +56107|755918|43464|2|48|94746.24|0.04|0.06|A|F|1992-07-09|1992-06-11|1992-08-05|TAKE BACK RETURN|MAIL|xpress plate| +56107|707155|32184|3|3|3486.36|0.00|0.07|A|F|1992-06-14|1992-06-08|1992-07-10|DELIVER IN PERSON|AIR|. furiously express dependencies are| +56107|141177|41178|4|25|30454.25|0.10|0.03|A|F|1992-07-27|1992-05-20|1992-08-03|COLLECT COD|REG AIR| beans promise. even deposits at | +56107|748919|11434|5|21|41325.48|0.03|0.00|R|F|1992-08-14|1992-07-06|1992-08-26|COLLECT COD|AIR|sits try to use quickly fluf| +56107|81215|43717|6|11|13158.31|0.09|0.05|R|F|1992-07-16|1992-07-13|1992-08-14|NONE|REG AIR|lly silent ideas use| +56107|978084|40604|7|50|58102.00|0.08|0.00|A|F|1992-07-06|1992-06-03|1992-07-14|DELIVER IN PERSON|RAIL|slyly regular waters cajole carefully regul| +56108|650914|915|1|10|18648.80|0.07|0.01|A|F|1994-01-28|1994-01-16|1994-02-18|COLLECT COD|RAIL| furiously even instructions haggle bold| +56108|901130|13649|2|11|12441.99|0.09|0.02|R|F|1994-03-07|1994-01-18|1994-04-02|TAKE BACK RETURN|AIR|ges sleep qu| +56109|848180|35729|1|6|6768.84|0.01|0.04|N|O|1996-07-18|1996-07-29|1996-08-08|DELIVER IN PERSON|RAIL|. carefully special packages cajole slyly | +56109|350768|38290|2|18|32737.50|0.03|0.02|N|O|1996-09-18|1996-07-09|1996-09-26|NONE|TRUCK| above the daring, even req| +56109|342469|29988|3|23|34763.35|0.07|0.07|N|O|1996-09-04|1996-07-26|1996-09-15|DELIVER IN PERSON|RAIL| platelets cajole furiously e| +56109|867670|30188|4|45|73693.35|0.04|0.01|N|O|1996-07-19|1996-07-06|1996-08-11|DELIVER IN PERSON|REG AIR|. carefully even packages al| +56109|924494|49531|5|5|7592.25|0.10|0.06|N|O|1996-06-21|1996-07-09|1996-07-14|COLLECT COD|AIR|ly bold requests lose | +56109|959727|47285|6|1|1786.68|0.02|0.08|N|O|1996-06-25|1996-07-06|1996-06-28|NONE|AIR|ke against the unusual | +56109|123651|11158|7|49|82057.85|0.00|0.02|N|O|1996-08-26|1996-08-22|1996-09-22|COLLECT COD|MAIL| carefully slyly un| +56110|196617|34127|1|44|75398.84|0.00|0.08|R|F|1994-04-13|1994-06-28|1994-05-08|DELIVER IN PERSON|REG AIR|l pinto beans use. bold warthogs | +56110|539656|2167|2|5|8478.15|0.03|0.06|R|F|1994-04-19|1994-06-23|1994-05-09|DELIVER IN PERSON|AIR|posits. final, ironic | +56110|988985|38986|3|24|49774.56|0.10|0.07|R|F|1994-05-04|1994-05-16|1994-05-23|NONE|REG AIR|ndencies nag furio| +56111|12301|12302|1|34|41252.20|0.00|0.04|N|O|1998-07-23|1998-05-28|1998-08-08|NONE|FOB|nts around the ruthlessly| +56111|736980|24523|2|21|42355.95|0.02|0.03|N|O|1998-04-17|1998-06-28|1998-05-15|COLLECT COD|SHIP|riously special r| +56136|189893|27403|1|9|17846.01|0.09|0.07|R|F|1992-10-06|1992-08-13|1992-10-15|COLLECT COD|SHIP|yly ironic instructions. pinto beans| +56136|517688|42709|2|45|76754.70|0.04|0.04|R|F|1992-06-19|1992-07-24|1992-06-22|TAKE BACK RETURN|FOB|uickly. silent, ironi| +56136|771297|21298|3|26|35574.76|0.04|0.05|R|F|1992-07-28|1992-07-11|1992-08-06|COLLECT COD|AIR|s. carefully regular packages snooze| +56136|176459|26460|4|33|50669.85|0.05|0.00|A|F|1992-08-10|1992-08-03|1992-08-28|TAKE BACK RETURN|RAIL| regular, ironic packages haggle across t| +56136|734307|9336|5|49|65722.23|0.02|0.01|A|F|1992-09-30|1992-08-02|1992-10-11|NONE|AIR|ly against the slyly regular ideas. q| +56137|476740|39250|1|48|82402.56|0.04|0.08|N|O|1998-08-14|1998-07-01|1998-09-13|TAKE BACK RETURN|AIR|carefully ca| +56138|291646|29162|1|6|9825.78|0.02|0.08|R|F|1994-10-31|1994-09-09|1994-11-02|NONE|FOB|lar accounts along the blithely expre| +56139|459549|47077|1|27|40730.04|0.01|0.05|N|O|1996-04-30|1996-04-16|1996-05-06|TAKE BACK RETURN|RAIL|! furiously pending sentiments use bli| +56139|634937|22474|2|1|1871.90|0.03|0.04|N|O|1996-05-03|1996-04-19|1996-06-01|DELIVER IN PERSON|REG AIR|yly pending requ| +56139|374926|37434|3|6|12005.46|0.06|0.05|N|O|1996-04-24|1996-05-27|1996-05-17|DELIVER IN PERSON|MAIL| express deposit| +56139|368229|30737|4|39|50591.19|0.07|0.06|N|O|1996-03-13|1996-05-16|1996-04-10|COLLECT COD|FOB| ironic pinto beans nag slyly eve| +56139|823232|35749|5|19|21948.61|0.03|0.08|N|O|1996-06-14|1996-05-19|1996-07-11|DELIVER IN PERSON|TRUCK|icingly quickly ironic gi| +56140|121270|33773|1|28|36155.56|0.08|0.03|N|O|1996-03-28|1996-04-29|1996-04-11|COLLECT COD|TRUCK| across the fluffy, even deposits. furio| +56141|149922|12425|1|5|9859.60|0.08|0.04|N|O|1996-01-03|1995-12-01|1996-01-30|TAKE BACK RETURN|TRUCK| wake. regular packages sl| +56141|734403|46918|2|20|28747.40|0.04|0.05|N|O|1995-12-22|1995-11-15|1996-01-09|COLLECT COD|REG AIR|eep above the pending ins| +56141|104312|16815|3|29|38172.99|0.00|0.06|N|O|1995-11-11|1995-11-09|1995-12-05|NONE|MAIL|jole. regular packages sleep ac| +56142|491752|16771|1|18|31387.14|0.06|0.08|N|O|1997-05-11|1997-04-02|1997-06-03|COLLECT COD|AIR|ged requests. ironic deposits haggle quickl| +56143|795636|8152|1|41|70995.60|0.03|0.02|N|O|1997-04-25|1997-03-15|1997-04-26|DELIVER IN PERSON|TRUCK|s accounts. fluffily regular theodolites in| +56143|253400|40916|2|20|27067.80|0.09|0.03|N|O|1997-05-09|1997-04-21|1997-05-28|DELIVER IN PERSON|FOB|ronic deposits. ideas p| +56143|880416|42934|3|42|58647.54|0.09|0.01|N|O|1997-05-20|1997-04-20|1997-06-16|COLLECT COD|AIR|deas wake bus| +56143|147278|47279|4|22|29155.94|0.10|0.08|N|O|1997-05-28|1997-03-15|1997-06-15|NONE|REG AIR|t the carefully regular instructions| +56143|299910|37426|5|35|66846.50|0.03|0.03|N|O|1997-05-02|1997-04-23|1997-05-14|DELIVER IN PERSON|FOB|ctions detect. carefully bold deposi| +56143|576769|1792|6|14|25840.36|0.09|0.01|N|O|1997-02-16|1997-03-02|1997-03-09|COLLECT COD|AIR| theodolites across the f| +56168|871792|21793|1|6|10582.50|0.06|0.08|N|O|1995-09-09|1995-07-01|1995-09-19|COLLECT COD|REG AIR|the ideas cajole a| +56169|197580|22587|1|5|8387.90|0.01|0.06|A|F|1992-06-19|1992-05-07|1992-07-08|TAKE BACK RETURN|FOB|tions will sleep. quickly| +56169|719313|6856|2|18|23981.04|0.09|0.03|R|F|1992-03-06|1992-05-11|1992-03-17|TAKE BACK RETURN|MAIL|ggle. fluffily| +56169|478396|3415|3|30|41231.10|0.01|0.05|A|F|1992-05-04|1992-05-04|1992-05-05|COLLECT COD|TRUCK| across the flu| +56169|393521|18536|4|38|61351.38|0.08|0.01|R|F|1992-04-17|1992-04-04|1992-05-14|DELIVER IN PERSON|REG AIR|ag silently regular, regular dependen| +56169|895816|8334|5|22|39858.94|0.01|0.03|A|F|1992-04-28|1992-04-12|1992-05-19|DELIVER IN PERSON|MAIL|ic foxes wake regular accounts--| +56169|963549|26069|6|9|14512.50|0.01|0.03|R|F|1992-05-20|1992-04-26|1992-06-10|NONE|AIR|gly ironic packages cajole fluffily u| +56170|570561|33073|1|1|1631.54|0.10|0.02|N|O|1996-01-29|1996-02-07|1996-02-04|COLLECT COD|TRUCK|tions may nag. idle id| +56171|12861|25362|1|6|10643.16|0.09|0.07|R|F|1992-08-31|1992-09-03|1992-09-28|TAKE BACK RETURN|AIR|s. final, special foxes will have to| +56171|145818|8321|2|24|44731.44|0.00|0.01|A|F|1992-06-29|1992-07-14|1992-07-03|DELIVER IN PERSON|FOB|slyly silent b| +56171|753184|28215|3|22|27217.30|0.06|0.06|R|F|1992-07-05|1992-08-08|1992-07-24|COLLECT COD|SHIP|cajole. even, ironic packages| +56171|748046|23075|4|14|15316.14|0.02|0.08|R|F|1992-08-11|1992-07-27|1992-09-05|NONE|RAIL| integrate blithe| +56171|394814|44815|5|23|43902.40|0.01|0.02|R|F|1992-08-18|1992-07-18|1992-09-17|NONE|RAIL|ntegrate within the slyly ir| +56172|86372|23876|1|19|25809.03|0.05|0.08|R|F|1995-02-22|1995-03-11|1995-03-11|TAKE BACK RETURN|FOB|ly even theodolites affix carefu| +56173|964300|1858|1|16|21828.16|0.07|0.07|N|O|1998-07-06|1998-05-14|1998-07-24|NONE|TRUCK|ackages to| +56174|677682|2709|1|38|63066.70|0.08|0.01|N|O|1996-10-22|1996-11-22|1996-10-24|COLLECT COD|TRUCK| beans nag furiously blit| +56174|784705|22251|2|25|44741.75|0.01|0.07|N|O|1997-01-12|1996-12-12|1997-02-07|DELIVER IN PERSON|FOB|across the ruthlessly bold idea| +56174|534922|34923|3|26|50879.40|0.10|0.08|N|O|1996-12-05|1996-11-21|1996-12-09|COLLECT COD|RAIL|lly furiously even requests. furiou| +56174|432509|32510|4|46|66308.08|0.03|0.07|N|O|1996-12-30|1997-01-07|1997-01-15|TAKE BACK RETURN|MAIL| blithely-- sometimes| +56174|177318|2325|5|7|9767.17|0.05|0.05|N|O|1996-11-13|1997-01-13|1996-11-19|NONE|AIR|lyly quickly s| +56174|177300|14810|6|40|55092.00|0.07|0.05|N|O|1997-01-23|1996-12-05|1997-02-05|TAKE BACK RETURN|AIR|arefully bold | +56174|877723|15275|7|8|13605.44|0.04|0.03|N|O|1997-01-21|1996-12-08|1997-01-29|DELIVER IN PERSON|RAIL|ccounts. regular accounts alon| +56175|874268|49303|1|6|7453.32|0.02|0.06|R|F|1994-01-03|1993-11-22|1994-01-19|DELIVER IN PERSON|RAIL|nts. fluffily regular pinto beans haggle ca| +56175|813745|1294|2|44|72982.80|0.01|0.06|R|F|1993-11-05|1993-11-27|1993-11-26|TAKE BACK RETURN|MAIL|ic requests. deposits cajole blithely acro| +56175|603995|3996|3|12|22787.52|0.02|0.08|A|F|1993-12-07|1993-11-28|1994-01-05|COLLECT COD|AIR|ecial packag| +56175|339682|2189|4|25|43041.75|0.10|0.01|A|F|1994-01-08|1993-12-23|1994-02-05|TAKE BACK RETURN|FOB| carefully| +56175|19947|19948|5|20|37338.80|0.08|0.04|R|F|1993-12-05|1993-11-04|1993-12-08|NONE|REG AIR|y regular packages. fur| +56175|246128|46129|6|10|10741.10|0.00|0.03|R|F|1993-11-02|1993-11-10|1993-11-09|TAKE BACK RETURN|SHIP|usual deposits| +56200|554673|42207|1|20|34553.00|0.10|0.02|R|F|1994-08-20|1994-10-09|1994-09-13|DELIVER IN PERSON|MAIL|iously regular depen| +56200|380002|42510|2|7|7573.93|0.04|0.03|R|F|1994-10-08|1994-10-21|1994-11-05|COLLECT COD|FOB|usly pending deposits. careful| +56200|687480|12507|3|7|10272.15|0.01|0.04|R|F|1994-11-09|1994-10-09|1994-12-09|DELIVER IN PERSON|SHIP|lyly pending pea| +56200|467590|42609|4|2|3115.14|0.03|0.07|A|F|1994-08-24|1994-09-26|1994-09-13|DELIVER IN PERSON|MAIL|ar Tiresias are carefully. quic| +56200|776071|38587|5|49|56204.96|0.03|0.08|A|F|1994-08-26|1994-10-10|1994-09-01|TAKE BACK RETURN|RAIL| whithout the carefully| +56201|156358|43868|1|8|11314.80|0.00|0.05|N|O|1996-10-09|1996-09-11|1996-10-19|NONE|MAIL|sly final excuses among the carefully e| +56201|900234|25271|2|46|56772.74|0.07|0.04|N|O|1996-08-09|1996-09-04|1996-08-10|TAKE BACK RETURN|RAIL|g the requests| +56201|229062|16575|3|46|45588.30|0.02|0.06|N|O|1996-09-13|1996-07-30|1996-09-21|TAKE BACK RETURN|AIR|ages again| +56201|844783|7300|4|32|55287.68|0.01|0.07|N|O|1996-07-28|1996-09-16|1996-08-22|NONE|MAIL|to beans dazzle blithel| +56201|257615|32626|5|16|25161.60|0.03|0.07|N|O|1996-06-25|1996-09-13|1996-06-29|DELIVER IN PERSON|REG AIR|ly above the carefully ca| +56202|595666|8178|1|21|36994.44|0.00|0.06|N|O|1995-11-02|1995-08-26|1995-11-22|NONE|MAIL|ecoys. boldly final packages wi| +56202|347521|22534|2|21|32938.71|0.03|0.00|N|O|1995-10-17|1995-09-09|1995-10-25|TAKE BACK RETURN|FOB|lets are packages. ironic| +56202|771286|8832|3|17|23073.25|0.05|0.05|N|O|1995-08-06|1995-08-24|1995-08-18|TAKE BACK RETURN|SHIP| furiously. accounts use blithely special i| +56202|991537|4057|4|13|21170.37|0.06|0.06|N|O|1995-07-25|1995-10-09|1995-07-26|COLLECT COD|AIR|fully. regular theodolite| +56202|759449|21965|5|30|45252.30|0.00|0.04|N|O|1995-07-30|1995-09-06|1995-08-07|COLLECT COD|AIR|platelets wake| +56203|252454|2455|1|14|19690.16|0.03|0.04|R|F|1995-03-12|1995-04-04|1995-04-07|DELIVER IN PERSON|REG AIR|s about the quic| +56203|991705|41706|2|8|14373.28|0.09|0.05|R|F|1995-05-10|1995-03-24|1995-05-16|COLLECT COD|SHIP|e carefully special request| +56203|575142|37654|3|3|3651.36|0.01|0.03|R|F|1995-02-23|1995-03-07|1995-03-13|DELIVER IN PERSON|AIR|cial accounts are furiously. excus| +56204|521607|46628|1|30|48857.40|0.05|0.05|R|F|1993-05-18|1993-05-15|1993-06-05|COLLECT COD|TRUCK|ly unusual excuses cajole blithely alongs| +56204|641026|41027|2|13|12570.87|0.10|0.05|A|F|1993-04-09|1993-05-11|1993-04-20|TAKE BACK RETURN|MAIL|slyly even foxes. | +56204|711982|24497|3|39|77764.05|0.07|0.07|R|F|1993-03-18|1993-05-01|1993-03-20|TAKE BACK RETURN|SHIP|fully unusual accounts. ironic, final req| +56204|278344|3355|4|17|22479.61|0.08|0.05|A|F|1993-04-14|1993-04-20|1993-05-05|COLLECT COD|RAIL|s integrate. qu| +56204|123881|23882|5|27|51431.76|0.05|0.04|R|F|1993-04-17|1993-05-27|1993-05-02|COLLECT COD|FOB|er the furiously enticing deposits. finall| +56204|64026|14027|6|19|18810.38|0.04|0.03|R|F|1993-04-01|1993-05-13|1993-04-04|COLLECT COD|RAIL|accounts along the instructions wak| +56205|114553|14554|1|30|47026.50|0.10|0.00|N|O|1995-11-22|1995-12-28|1995-11-30|TAKE BACK RETURN|AIR|furiously regular pint| +56205|286549|11560|2|28|42994.84|0.09|0.05|N|O|1996-01-18|1995-11-21|1996-02-10|NONE|AIR|furiously regular inst| +56205|16321|41322|3|3|3711.96|0.08|0.07|N|O|1995-10-14|1995-11-24|1995-10-22|TAKE BACK RETURN|RAIL|ges cajole furiously. carefully regul| +56205|302582|27595|4|39|61798.23|0.08|0.00|N|O|1995-12-09|1995-11-08|1996-01-03|COLLECT COD|MAIL| carefully along the fluf| +56206|848113|23146|1|20|21221.40|0.03|0.08|A|F|1993-09-17|1993-07-08|1993-10-04|TAKE BACK RETURN|FOB|ets. regular, ironic excuses | +56206|231612|44117|2|18|27784.80|0.05|0.06|R|F|1993-06-27|1993-06-29|1993-07-23|DELIVER IN PERSON|TRUCK| ironic accounts. slyly| +56206|701840|14355|3|42|77356.02|0.08|0.03|A|F|1993-09-14|1993-06-22|1993-09-25|TAKE BACK RETURN|RAIL|uses nag fluffily. | +56206|817807|17808|4|4|6899.04|0.07|0.00|R|F|1993-06-16|1993-07-16|1993-06-21|NONE|MAIL| doubt fluffily carefully| +56207|910588|35625|1|16|25576.64|0.04|0.06|R|F|1995-02-10|1994-12-20|1995-02-20|NONE|TRUCK| hinder expre| +56207|242873|42874|2|24|43580.64|0.06|0.00|A|F|1994-10-29|1995-01-15|1994-10-31|TAKE BACK RETURN|MAIL|slow sentiments are al| +56207|961543|49101|3|27|43321.50|0.00|0.06|A|F|1995-02-13|1994-12-28|1995-03-10|NONE|FOB|ackages use at the slyly special tithes.| +56207|650475|25502|4|41|58443.04|0.04|0.06|A|F|1994-11-12|1995-01-18|1994-11-26|TAKE BACK RETURN|FOB|press requests| +56207|523110|35621|5|38|43057.42|0.02|0.03|A|F|1994-11-22|1994-11-27|1994-12-09|COLLECT COD|FOB|uests thrash slyly alongside o| +56207|899326|11844|6|47|62288.16|0.03|0.04|A|F|1994-12-02|1994-12-24|1994-12-12|NONE|TRUCK|ns detect carefully unusual packages. sly| +56207|956404|43962|7|1|1460.36|0.07|0.04|A|F|1995-01-10|1995-01-07|1995-02-08|DELIVER IN PERSON|REG AIR| the slyly e| +56232|269640|7156|1|10|16096.30|0.09|0.08|N|O|1998-11-08|1998-09-22|1998-12-05|DELIVER IN PERSON|FOB|ular ideas dete| +56232|830092|17641|2|40|40882.00|0.04|0.03|N|O|1998-10-31|1998-10-15|1998-11-07|DELIVER IN PERSON|REG AIR|the furiously final | +56233|530517|43028|1|6|9284.94|0.09|0.06|N|O|1997-10-11|1997-09-28|1997-10-15|DELIVER IN PERSON|FOB|tructions are quickly across the| +56233|393366|30888|2|45|65670.75|0.08|0.07|N|O|1997-12-13|1997-11-09|1998-01-02|COLLECT COD|FOB|ic, express accounts boost| +56233|289322|39323|3|2|2622.62|0.07|0.05|N|O|1997-10-01|1997-09-27|1997-10-15|NONE|AIR| are final, final requests? fluffily ironi| +56233|618586|31099|4|25|37613.75|0.09|0.01|N|O|1997-12-07|1997-10-30|1997-12-30|TAKE BACK RETURN|SHIP|st the quick| +56234|372969|47984|1|34|69426.30|0.04|0.05|R|F|1993-06-24|1993-06-02|1993-07-12|DELIVER IN PERSON|RAIL|lyly. slyly even pinto beans sl| +56234|483328|33329|2|7|9179.10|0.05|0.08|R|F|1993-07-23|1993-05-22|1993-07-31|NONE|MAIL|ests. silent, thin packages integrat| +56234|292709|42710|3|19|32332.11|0.08|0.03|A|F|1993-05-06|1993-06-09|1993-05-12|COLLECT COD|FOB| pending accounts haggle slyly regular do| +56234|556862|19374|4|40|76753.60|0.00|0.00|R|F|1993-08-01|1993-06-25|1993-08-25|TAKE BACK RETURN|MAIL|d haggle car| +56234|172993|10503|5|44|90903.56|0.08|0.07|R|F|1993-07-07|1993-05-24|1993-07-21|NONE|MAIL| are deposits. iron| +56234|480974|5993|6|43|84062.85|0.07|0.07|A|F|1993-04-12|1993-06-13|1993-04-15|COLLECT COD|SHIP|accounts. furiously permanent pinto | +56235|54314|4315|1|48|60878.88|0.05|0.01|R|F|1995-04-15|1995-04-07|1995-05-14|TAKE BACK RETURN|SHIP| carefully. express th| +56235|852356|14874|2|43|56257.33|0.07|0.04|N|F|1995-06-06|1995-04-29|1995-07-06|DELIVER IN PERSON|TRUCK|onic requests| +56235|531879|6900|3|27|51592.95|0.05|0.07|A|F|1995-04-01|1995-03-30|1995-04-13|DELIVER IN PERSON|SHIP|efully iro| +56235|283187|20703|4|5|5850.85|0.01|0.04|R|F|1995-05-26|1995-04-15|1995-06-04|NONE|MAIL|ounts sleep quickly special instruction| +56235|515993|15994|5|16|32143.52|0.02|0.03|A|F|1995-04-23|1995-05-04|1995-05-20|COLLECT COD|AIR|egrate about the slyly regular deposits.| +56235|282436|44942|6|8|11347.36|0.05|0.03|A|F|1995-02-23|1995-05-04|1995-02-28|TAKE BACK RETURN|TRUCK|he slyly final pinto beans are slyly across| +56235|895385|32937|7|37|51072.58|0.01|0.06|R|F|1995-05-19|1995-03-17|1995-05-26|NONE|FOB|lly final, bold foxes. pinto beans cajo| +56236|733721|21264|1|32|56150.08|0.03|0.02|A|F|1994-01-04|1993-12-13|1994-01-06|COLLECT COD|FOB| platelets. carefully spec| +56236|642947|30484|2|6|11339.46|0.01|0.08|R|F|1993-10-24|1993-12-17|1993-11-13|TAKE BACK RETURN|AIR|cross the furiously ironic courts; fi| +56236|997235|22274|3|27|35969.13|0.04|0.06|A|F|1994-01-09|1993-11-25|1994-01-21|DELIVER IN PERSON|SHIP| regular, bold requests. fur| +56236|515077|40098|4|13|14196.65|0.04|0.00|A|F|1994-01-27|1993-12-15|1994-02-11|NONE|AIR|around the theodolites ar| +56236|887342|49860|5|39|51842.70|0.04|0.06|R|F|1993-10-21|1993-12-21|1993-11-10|TAKE BACK RETURN|AIR|eposits sleep slyly hockey pla| +56236|543085|43086|6|2|2256.12|0.06|0.07|R|F|1993-12-15|1993-11-26|1994-01-01|NONE|REG AIR| special, regular| +56237|141443|41444|1|31|46017.64|0.08|0.02|A|F|1992-06-28|1992-06-20|1992-07-02|TAKE BACK RETURN|REG AIR|n requests s| +56237|219866|19867|2|46|82149.10|0.08|0.02|A|F|1992-07-23|1992-07-02|1992-08-16|DELIVER IN PERSON|RAIL|iously even pains. slyly unusu| +56237|278835|41341|3|16|29021.12|0.08|0.02|A|F|1992-07-13|1992-06-03|1992-07-21|TAKE BACK RETURN|REG AIR|ests are furiously to the expres| +56237|363678|1200|4|31|53991.46|0.03|0.08|A|F|1992-06-11|1992-06-14|1992-06-18|COLLECT COD|MAIL|unts sleep silentl| +56237|335827|35828|5|17|31667.77|0.04|0.04|A|F|1992-07-28|1992-06-25|1992-07-29|NONE|SHIP|lyly ideas. final, unus| +56238|953277|3278|1|41|54539.43|0.09|0.03|A|F|1992-08-01|1992-09-16|1992-08-25|COLLECT COD|AIR|ing foxes must have to cajole. special, pe| +56238|721667|46696|2|33|55724.79|0.02|0.01|A|F|1992-07-03|1992-09-08|1992-07-11|COLLECT COD|RAIL|accounts. pinto bean| +56239|773535|36051|1|21|33778.50|0.00|0.02|N|O|1997-08-23|1997-08-15|1997-09-22|DELIVER IN PERSON|TRUCK|nstructions about the | +56239|792361|17392|2|13|18893.29|0.10|0.04|N|O|1997-06-06|1997-07-15|1997-06-17|TAKE BACK RETURN|REG AIR|to the deposits cajol| +56239|200073|74|3|48|46706.88|0.02|0.04|N|O|1997-07-16|1997-07-05|1997-08-04|NONE|REG AIR|final gifts sleep furiously. ironic,| +56239|618845|31358|4|24|42331.44|0.06|0.00|N|O|1997-09-22|1997-07-24|1997-10-09|DELIVER IN PERSON|AIR|ly carefull| +56239|916360|28879|5|25|34408.00|0.07|0.00|N|O|1997-08-31|1997-08-17|1997-09-06|NONE|RAIL| blithe platelets: | +56239|248216|48217|6|17|19791.40|0.04|0.04|N|O|1997-06-21|1997-07-13|1997-07-11|COLLECT COD|MAIL|fluffily final platelets boost quickly req| +56239|753486|16002|7|46|70814.70|0.07|0.02|N|O|1997-06-30|1997-08-16|1997-07-04|TAKE BACK RETURN|MAIL|ts are bli| +56264|825379|12928|1|4|5217.32|0.04|0.03|N|O|1997-01-21|1997-04-12|1997-01-25|NONE|MAIL|ar requests cajole caref| +56264|140259|15264|2|6|7795.50|0.07|0.05|N|O|1997-05-07|1997-03-11|1997-06-02|COLLECT COD|TRUCK|to the slyly silen| +56264|321533|9052|3|46|71507.92|0.08|0.02|N|O|1997-02-08|1997-02-15|1997-03-07|DELIVER IN PERSON|TRUCK|lar instructions affix a| +56264|4001|29002|4|42|38010.00|0.02|0.03|N|O|1997-04-01|1997-02-19|1997-04-02|COLLECT COD|MAIL|refully. slyly unu| +56264|233341|45846|5|44|56070.52|0.04|0.00|N|O|1997-04-27|1997-04-01|1997-05-05|COLLECT COD|MAIL|posits poach about the ironic| +56265|620354|45379|1|42|53521.44|0.02|0.07|R|F|1992-10-02|1992-11-13|1992-10-20|COLLECT COD|SHIP|e ironic, silent deposits use blit| +56266|466420|3948|1|17|23568.80|0.03|0.03|N|O|1998-03-25|1998-03-15|1998-03-27|NONE|AIR|hely unusual deposits use thinly. sl| +56266|115966|15967|2|1|1981.96|0.08|0.03|N|O|1998-05-08|1998-03-29|1998-06-05|DELIVER IN PERSON|AIR|ithely express excuses sleep specia| +56267|169335|31839|1|20|28086.60|0.04|0.07|N|O|1998-05-03|1998-05-18|1998-05-23|COLLECT COD|REG AIR|foxes are slyly above the| +56267|7442|32443|2|45|60724.80|0.01|0.08|N|O|1998-06-09|1998-05-19|1998-06-14|DELIVER IN PERSON|SHIP|furiously unusual | +56267|61945|49449|3|46|87719.24|0.05|0.08|N|O|1998-06-28|1998-05-09|1998-07-22|TAKE BACK RETURN|MAIL|bold excuses cajole b| +56267|109439|21942|4|25|36210.75|0.08|0.05|N|O|1998-03-21|1998-05-10|1998-04-20|DELIVER IN PERSON|SHIP|along the regular fo| +56268|674441|49468|1|11|15569.51|0.01|0.05|A|F|1994-01-01|1993-12-17|1994-01-21|DELIVER IN PERSON|TRUCK|c asymptotes. blithely bold dep| +56268|314521|2040|2|7|10748.57|0.06|0.02|R|F|1993-12-27|1993-11-13|1994-01-14|DELIVER IN PERSON|RAIL| even dolphins use b| +56268|153946|28953|3|8|15999.52|0.09|0.04|A|F|1993-12-24|1993-12-03|1994-01-13|DELIVER IN PERSON|RAIL|riously about the silent deposi| +56269|437089|49598|1|44|45146.64|0.05|0.06|N|F|1995-06-15|1995-07-08|1995-06-29|COLLECT COD|FOB| regular packag| +56269|149073|36580|2|5|5610.35|0.08|0.04|N|O|1995-06-23|1995-07-01|1995-07-21|NONE|FOB|ly ironic packages sleep after th| +56269|458354|33373|3|39|51180.87|0.07|0.07|N|O|1995-07-21|1995-06-02|1995-07-30|TAKE BACK RETURN|REG AIR|as across the silent depo| +56269|551112|38646|4|14|16283.26|0.08|0.03|N|O|1995-08-04|1995-07-01|1995-08-09|NONE|SHIP| theodolites run slyly acros| +56270|611805|36830|1|21|36052.17|0.02|0.07|R|F|1992-07-17|1992-07-18|1992-07-24|DELIVER IN PERSON|REG AIR|s cajole blithely slow courts.| +56270|595493|8005|2|38|60361.86|0.04|0.00|R|F|1992-08-29|1992-07-21|1992-09-25|NONE|FOB| wake final,| +56270|450301|37829|3|46|57558.88|0.00|0.01|A|F|1992-08-01|1992-06-29|1992-08-15|DELIVER IN PERSON|SHIP|odolites. silent foxes integrate blith| +56270|192106|4610|4|17|20367.70|0.10|0.01|R|F|1992-08-21|1992-08-10|1992-08-22|NONE|REG AIR|xpress, regular instructions. f| +56270|724130|24131|5|4|4616.40|0.09|0.04|R|F|1992-07-11|1992-08-02|1992-07-23|TAKE BACK RETURN|RAIL| accounts. carefully even pinto | +56270|443063|30588|6|18|18108.72|0.09|0.08|R|F|1992-06-11|1992-07-14|1992-06-23|COLLECT COD|RAIL|he bold requests. even accounts han| +56271|581719|6742|1|27|48618.63|0.03|0.01|N|O|1995-09-14|1995-07-23|1995-10-06|COLLECT COD|REG AIR|fter the hockey players wake furiously a| +56271|947112|47113|2|6|6954.42|0.07|0.02|N|O|1995-09-15|1995-07-04|1995-09-30|NONE|AIR|unts. enticin| +56271|98762|48763|3|39|68669.64|0.10|0.01|N|O|1995-07-06|1995-07-18|1995-07-10|DELIVER IN PERSON|AIR|ts can haggle quickly among the asymptote| +56271|876554|26555|4|25|38262.75|0.04|0.02|N|O|1995-09-14|1995-07-30|1995-10-06|TAKE BACK RETURN|FOB|s. excuses are sl| +56271|240381|27894|5|34|44926.58|0.03|0.05|N|F|1995-06-10|1995-07-12|1995-07-04|NONE|TRUCK|ully. pendi| +56271|69235|31737|6|4|4816.92|0.06|0.05|N|O|1995-09-03|1995-07-29|1995-09-16|DELIVER IN PERSON|FOB|lar pinto beans affix quickly regu| +56271|621890|46915|7|20|36237.20|0.09|0.03|N|O|1995-08-04|1995-07-27|1995-08-10|DELIVER IN PERSON|AIR|ithely along the perman| +56296|92127|29631|1|36|40288.32|0.01|0.02|N|O|1996-04-17|1996-04-28|1996-04-21|TAKE BACK RETURN|AIR|uriously with the pin| +56296|375727|25728|2|6|10816.26|0.08|0.01|N|O|1996-04-23|1996-05-15|1996-05-20|DELIVER IN PERSON|AIR|structions are| +56297|941824|41825|1|10|18657.80|0.07|0.01|N|O|1995-11-08|1995-12-25|1995-11-16|DELIVER IN PERSON|REG AIR|lithely bold requests sleep quick| +56297|234127|46632|2|30|31833.30|0.08|0.06|N|O|1995-12-28|1995-12-13|1996-01-16|COLLECT COD|MAIL|c foxes according t| +56297|956478|31517|3|30|46032.90|0.01|0.07|N|O|1995-11-08|1995-12-29|1995-11-13|COLLECT COD|REG AIR| foxes. quickly f| +56298|528206|3227|1|23|28386.14|0.10|0.07|N|O|1997-11-16|1997-12-16|1997-11-26|DELIVER IN PERSON|SHIP|ly final gif| +56298|549217|36748|2|15|18992.85|0.04|0.03|N|O|1997-10-27|1997-12-07|1997-11-25|COLLECT COD|AIR|, final deposits wak| +56298|677698|2725|3|47|78756.02|0.10|0.08|N|O|1997-10-08|1997-12-31|1997-10-16|TAKE BACK RETURN|TRUCK|lyly final exc| +56298|59254|9255|4|26|31544.50|0.07|0.00|N|O|1997-10-28|1997-11-07|1997-11-11|NONE|SHIP|x slyly after the dependencie| +56298|880530|30531|5|21|31720.29|0.02|0.04|N|O|1997-11-25|1997-12-25|1997-12-11|COLLECT COD|AIR|- furious forges cajole furiou| +56299|651989|27016|1|18|34937.10|0.08|0.00|R|F|1994-05-21|1994-05-11|1994-05-23|NONE|REG AIR|s cajole quietly abov| +56299|965979|15980|2|49|100201.57|0.05|0.08|A|F|1994-05-16|1994-05-20|1994-05-24|TAKE BACK RETURN|TRUCK|s are furiously furiously express reques| +56299|199405|36915|3|44|66193.60|0.03|0.00|A|F|1994-05-27|1994-05-24|1994-06-18|DELIVER IN PERSON|AIR| furiously; quickly even theod| +56299|388013|38014|4|47|51747.00|0.07|0.07|A|F|1994-06-01|1994-06-17|1994-06-15|TAKE BACK RETURN|MAIL|uickly quietly special ideas. thinl| +56300|372460|34968|1|31|47505.95|0.00|0.05|R|F|1993-05-02|1993-05-27|1993-05-09|NONE|MAIL|ealthily fluffy packages. brai| +56301|645853|45854|1|20|35976.40|0.06|0.01|A|F|1995-05-20|1995-06-20|1995-06-01|NONE|REG AIR|le slyly against the excuses. sl| +56301|846051|8568|2|16|15952.16|0.04|0.00|N|O|1995-07-26|1995-06-24|1995-08-08|COLLECT COD|REG AIR|un slyly ironic deposits. furiously bold| +56301|564342|39365|3|13|18282.16|0.03|0.04|N|O|1995-07-26|1995-06-12|1995-08-04|COLLECT COD|FOB|s. unusual, regular instructions wa| +56301|886984|49502|4|42|82779.48|0.05|0.00|A|F|1995-04-18|1995-06-19|1995-05-18|TAKE BACK RETURN|RAIL|ake carefully. express packages | +56301|529694|42205|5|19|32749.73|0.00|0.03|R|F|1995-04-23|1995-05-31|1995-05-04|DELIVER IN PERSON|REG AIR|es nag. even theodolites a| +56301|557018|19530|6|37|39774.63|0.02|0.03|R|F|1995-05-03|1995-05-01|1995-05-21|DELIVER IN PERSON|FOB|blithely s| +56301|792134|29680|7|22|26974.20|0.07|0.06|A|F|1995-05-25|1995-05-28|1995-06-06|COLLECT COD|AIR|g, express foxes sleep regular, | +56302|391003|28525|1|45|49229.55|0.04|0.04|R|F|1994-03-15|1994-02-12|1994-04-09|TAKE BACK RETURN|RAIL|ts use furiously final dep| +56303|900428|12947|1|33|47136.54|0.03|0.06|N|O|1997-06-16|1997-07-21|1997-06-19|TAKE BACK RETURN|TRUCK|quests. carefully pending theodolites are | +56303|481169|6188|2|28|32203.92|0.02|0.02|N|O|1997-09-24|1997-07-13|1997-09-29|COLLECT COD|FOB|y ironic foxes are regular theodolites| +56303|4966|42467|3|24|44903.04|0.07|0.04|N|O|1997-09-22|1997-07-09|1997-10-13|COLLECT COD|REG AIR|refully fi| +56303|448358|35883|4|4|5225.32|0.10|0.04|N|O|1997-08-30|1997-08-16|1997-09-02|NONE|TRUCK| the finally final a| +56303|536103|23634|5|17|19364.36|0.06|0.06|N|O|1997-07-01|1997-07-02|1997-07-27|TAKE BACK RETURN|AIR|ely stealthy deposits wake furiousl| +56328|890985|16020|1|26|51374.44|0.04|0.01|N|O|1997-05-19|1997-05-18|1997-06-17|TAKE BACK RETURN|MAIL| ironic requests ac| +56328|784815|22361|2|22|41795.16|0.04|0.04|N|O|1997-07-20|1997-05-15|1997-07-26|NONE|AIR|oxes; regular foxes affix along| +56328|385647|23169|3|38|65839.94|0.01|0.03|N|O|1997-07-31|1997-05-14|1997-08-26|NONE|AIR| regular depo| +56328|567885|5419|4|42|82020.12|0.04|0.03|N|O|1997-05-07|1997-06-21|1997-05-27|COLLECT COD|TRUCK|al requests. carefully ironic reques| +56328|434674|47183|5|12|19303.80|0.08|0.00|N|O|1997-06-10|1997-05-04|1997-06-27|COLLECT COD|AIR|ss the blithely even deposits. f| +56328|549947|49948|6|37|73886.04|0.00|0.01|N|O|1997-06-25|1997-06-24|1997-07-06|NONE|REG AIR|he regular, express ideas. carefully si| +56328|944655|7174|7|27|45889.47|0.03|0.03|N|O|1997-04-20|1997-05-16|1997-04-24|COLLECT COD|AIR|s use quickly about the blithely | +56329|809937|22454|1|35|64641.15|0.03|0.03|N|O|1998-05-17|1998-05-07|1998-06-09|TAKE BACK RETURN|TRUCK|oxes are quickly. fluffily unu| +56330|422964|10489|1|33|62269.02|0.00|0.08|R|F|1993-05-11|1993-05-29|1993-06-10|DELIVER IN PERSON|REG AIR|ns wake quickly expr| +56330|750695|696|2|26|45387.16|0.08|0.04|A|F|1993-07-21|1993-05-10|1993-08-20|DELIVER IN PERSON|SHIP| blithely close requests haggle around | +56330|920704|20705|3|21|36217.86|0.00|0.08|R|F|1993-07-31|1993-05-29|1993-08-06|DELIVER IN PERSON|AIR| blithely | +56330|261409|48925|4|8|10963.12|0.09|0.05|A|F|1993-06-18|1993-06-07|1993-07-11|NONE|SHIP|blithely among the bo| +56330|484372|34373|5|4|5425.40|0.10|0.08|R|F|1993-07-19|1993-05-20|1993-08-09|DELIVER IN PERSON|TRUCK|foxes maintain carefully acc| +56330|838013|13046|6|8|7607.76|0.07|0.06|R|F|1993-04-16|1993-05-14|1993-05-12|TAKE BACK RETURN|FOB|ly among the boldly express re| +56330|469539|32049|7|13|19610.63|0.01|0.01|A|F|1993-04-22|1993-06-03|1993-05-14|TAKE BACK RETURN|AIR|ackages across the accounts | +56331|540791|15812|1|49|89756.73|0.03|0.01|A|F|1993-12-18|1993-12-31|1994-01-14|DELIVER IN PERSON|RAIL|eans haggle blithely beside the pending dep| +56331|61072|48576|2|3|3099.21|0.02|0.01|R|F|1993-12-09|1993-12-22|1993-12-19|COLLECT COD|REG AIR|fluffily according to the stealt| +56331|432673|32674|3|37|59409.05|0.02|0.08|R|F|1994-02-05|1994-01-14|1994-02-25|TAKE BACK RETURN|REG AIR|bove the requests. pending ideas past| +56331|918449|18450|4|42|61630.80|0.04|0.03|R|F|1994-02-26|1993-12-26|1994-03-20|DELIVER IN PERSON|SHIP|counts are even, final excuses. re| +56331|366833|4355|5|8|15198.56|0.09|0.03|R|F|1994-01-31|1994-01-15|1994-02-21|TAKE BACK RETURN|MAIL| special pa| +56331|352584|40106|6|47|76918.79|0.03|0.01|A|F|1994-02-08|1994-02-11|1994-02-25|DELIVER IN PERSON|REG AIR|al requests nag furiously! c| +56332|809278|21795|1|2|2374.46|0.00|0.08|N|O|1998-02-20|1997-11-25|1998-03-18|DELIVER IN PERSON|TRUCK|old braids| +56332|526292|26293|2|34|44821.18|0.05|0.05|N|O|1998-01-03|1997-12-16|1998-01-12|DELIVER IN PERSON|FOB|iously regular | +56332|387198|37199|3|11|14136.98|0.06|0.00|N|O|1998-02-02|1997-12-14|1998-02-11|DELIVER IN PERSON|REG AIR|the furiousl| +56332|634977|34978|4|42|80301.48|0.07|0.08|N|O|1997-12-24|1998-01-24|1998-01-20|DELIVER IN PERSON|TRUCK|efully regular requests haggle furiously| +56333|328404|15923|1|9|12891.51|0.02|0.03|A|F|1993-06-28|1993-05-29|1993-07-12|TAKE BACK RETURN|REG AIR|y regular | +56333|483198|8217|2|10|11811.70|0.02|0.01|A|F|1993-06-06|1993-06-22|1993-06-11|NONE|FOB|nstructions wake | +56333|107297|7298|3|28|36520.12|0.07|0.03|R|F|1993-06-14|1993-07-17|1993-06-28|COLLECT COD|MAIL|courts. furiously even accounts | +56333|339514|14527|4|26|40391.00|0.00|0.07|A|F|1993-08-12|1993-06-13|1993-09-07|DELIVER IN PERSON|MAIL|ithely unusual accounts. slyly ironic| +56333|209639|34648|5|29|44909.98|0.05|0.04|R|F|1993-07-01|1993-07-03|1993-07-02|DELIVER IN PERSON|MAIL|ages. carefully even dolphins ca| +56333|394086|19101|6|14|16520.98|0.00|0.01|A|F|1993-08-23|1993-06-09|1993-08-27|COLLECT COD|TRUCK|s sleep slyly slyly special requests. blit| +56333|392191|29713|7|7|8982.26|0.09|0.01|R|F|1993-06-18|1993-06-07|1993-06-19|TAKE BACK RETURN|TRUCK|s. final, even packages are furi| +56334|548002|35533|1|50|52499.00|0.06|0.01|N|O|1997-08-04|1997-06-04|1997-08-31|NONE|RAIL| instructions are carefully according to t| +56334|254858|17364|2|26|47133.84|0.02|0.03|N|O|1997-07-26|1997-06-19|1997-08-19|COLLECT COD|REG AIR|nic, brave foxes sleep | +56334|384935|9950|3|24|48478.08|0.00|0.02|N|O|1997-07-13|1997-05-17|1997-08-05|NONE|FOB| courts grow. packag| +56334|592710|42711|4|45|81121.05|0.05|0.08|N|O|1997-04-13|1997-07-03|1997-05-09|COLLECT COD|FOB| regular foxes. final r| +56334|675809|25810|5|25|44619.25|0.10|0.03|N|O|1997-05-02|1997-05-12|1997-05-16|DELIVER IN PERSON|FOB|to beans nag blithely. theodolites accordi| +56334|312824|12825|6|6|11020.86|0.10|0.00|N|O|1997-05-22|1997-06-22|1997-06-17|TAKE BACK RETURN|MAIL|heaves among the packages do cajole abov| +56334|625898|923|7|37|67482.82|0.05|0.03|N|O|1997-05-21|1997-06-13|1997-06-02|DELIVER IN PERSON|SHIP|structions. regular packa| +56335|463369|13370|1|3|3997.02|0.07|0.00|N|O|1996-09-15|1996-07-27|1996-09-17|DELIVER IN PERSON|AIR| pinto beans haggle a| +56335|830519|5552|2|36|52180.92|0.07|0.03|N|O|1996-07-15|1996-07-07|1996-08-05|NONE|RAIL|aggle blithely even accounts. carefully eve| +56335|530650|18181|3|1|1680.63|0.06|0.07|N|O|1996-09-04|1996-08-21|1996-09-27|DELIVER IN PERSON|FOB|ly bold platelets around the furio| +56360|315565|40578|1|40|63222.00|0.00|0.01|N|O|1995-12-24|1995-12-19|1996-01-04|DELIVER IN PERSON|MAIL|ss ideas? carefully regular plat| +56360|688816|38817|2|37|66776.86|0.01|0.00|N|O|1995-12-17|1995-12-24|1995-12-24|NONE|SHIP|posits sleep: regular, ironi| +56360|926953|14508|3|2|3959.82|0.04|0.06|N|O|1996-01-06|1995-12-21|1996-01-13|COLLECT COD|RAIL|ing to the ironic theodolites are carefully| +56360|292857|42858|4|4|7399.36|0.00|0.04|N|O|1996-01-14|1995-12-26|1996-02-13|TAKE BACK RETURN|AIR|ts. carefully even| +56360|40349|40350|5|19|24497.46|0.02|0.05|N|O|1996-02-16|1995-12-26|1996-03-03|TAKE BACK RETURN|FOB|hinder carefully blithely blithe requests.| +56361|953077|40635|1|32|36160.96|0.03|0.01|A|F|1994-05-08|1994-06-03|1994-05-11|COLLECT COD|REG AIR|sits play furiously furiously bold i| +56361|352392|2393|2|28|40442.64|0.02|0.02|A|F|1994-07-18|1994-06-26|1994-07-31|COLLECT COD|RAIL|sleep blithely ironic deposits. regular| +56361|638239|752|3|2|2354.40|0.06|0.03|R|F|1994-06-22|1994-06-27|1994-07-14|NONE|RAIL|e furiously even, | +56361|870630|20631|4|5|8002.95|0.06|0.01|A|F|1994-06-22|1994-06-22|1994-07-11|NONE|TRUCK|otes breach ironic i| +56361|671738|34252|5|10|17097.00|0.04|0.08|R|F|1994-06-20|1994-06-08|1994-07-15|TAKE BACK RETURN|TRUCK|s. blithely iron| +56362|925121|12676|1|50|57304.00|0.07|0.05|R|F|1992-10-22|1992-12-25|1992-10-28|DELIVER IN PERSON|MAIL|lithely final accounts. regular, final| +56362|495155|32683|2|42|48305.46|0.09|0.05|A|F|1993-01-23|1992-12-23|1993-01-30|TAKE BACK RETURN|REG AIR|r pains. requests are | +56363|428081|3098|1|44|44398.64|0.10|0.07|A|F|1994-07-06|1994-06-16|1994-07-18|DELIVER IN PERSON|TRUCK|odolites sleep against the ironi| +56363|745987|33530|2|7|14230.65|0.03|0.05|A|F|1994-05-06|1994-05-08|1994-06-05|TAKE BACK RETURN|TRUCK|enticingly pending ex| +56363|799202|49203|3|8|10409.36|0.02|0.04|R|F|1994-06-17|1994-05-13|1994-06-28|COLLECT COD|AIR|ickly silent foxes affix quickly always ev| +56364|655892|43432|1|43|79457.98|0.10|0.03|N|O|1996-06-20|1996-07-14|1996-06-27|DELIVER IN PERSON|FOB|ly special accounts cajole blith| +56364|573767|11301|2|50|92037.00|0.07|0.00|N|O|1996-08-02|1996-06-28|1996-08-25|COLLECT COD|SHIP|efully final requests. final i| +56364|296697|46698|3|17|28792.56|0.03|0.06|N|O|1996-08-04|1996-05-18|1996-08-18|DELIVER IN PERSON|TRUCK|sts are slyly. reg| +56364|577521|2544|4|48|76728.00|0.03|0.01|N|O|1996-05-10|1996-05-28|1996-05-14|COLLECT COD|SHIP|uickly blithely | +56364|392565|42566|5|13|21548.15|0.08|0.05|N|O|1996-05-27|1996-06-05|1996-05-31|NONE|FOB|ironic dependencies unwind quickly. final | +56364|832482|32483|6|9|12729.96|0.08|0.08|N|O|1996-07-30|1996-06-24|1996-08-02|COLLECT COD|FOB|ironic pack| +56365|391394|16409|1|39|57929.82|0.09|0.00|R|F|1993-03-19|1993-02-20|1993-04-04|DELIVER IN PERSON|AIR|furiously ironic| +56365|144843|7346|2|38|71737.92|0.08|0.01|R|F|1993-01-23|1993-02-22|1993-02-12|TAKE BACK RETURN|REG AIR|ets. final foxes about the blithel| +56365|374244|24245|3|29|38228.67|0.04|0.02|A|F|1992-12-18|1993-01-13|1993-01-11|TAKE BACK RETURN|FOB|nts. carefully regul| +56365|911935|24454|4|49|95397.61|0.01|0.08|R|F|1993-01-05|1993-01-23|1993-01-30|NONE|TRUCK|ges. fluffily ironic a| +56366|709775|34804|1|15|26771.10|0.01|0.01|R|F|1994-01-16|1994-03-23|1994-01-30|NONE|FOB|instructions. care| +56366|188390|894|2|3|4435.17|0.02|0.06|A|F|1994-01-15|1994-01-29|1994-02-08|DELIVER IN PERSON|TRUCK|theodolites | +56366|260554|10555|3|1|1514.54|0.02|0.01|R|F|1994-03-05|1994-03-09|1994-04-02|NONE|AIR|e alongside| +56366|126006|1011|4|30|30960.00|0.06|0.03|R|F|1994-03-02|1994-02-09|1994-03-08|COLLECT COD|FOB|e slyly final deposits. flu| +56366|770356|7902|5|49|69889.68|0.05|0.07|R|F|1994-01-15|1994-03-16|1994-01-20|COLLECT COD|RAIL|counts integrate carefully unusua| +56366|366966|4488|6|26|52856.70|0.01|0.04|R|F|1994-01-15|1994-02-01|1994-02-14|NONE|MAIL|the ironic, even depos| +56366|587662|174|7|14|24494.96|0.08|0.07|A|F|1994-04-06|1994-02-22|1994-05-04|DELIVER IN PERSON|FOB| use slyly a| +56367|828575|28576|1|44|66155.32|0.08|0.08|A|F|1992-09-02|1992-10-07|1992-09-26|NONE|TRUCK|en theodolites cajole furiously| +56392|978267|40787|1|25|33630.50|0.02|0.01|N|O|1998-08-08|1998-05-18|1998-09-04|NONE|SHIP|ual braids cajole | +56392|729706|42221|2|41|71162.47|0.03|0.00|N|O|1998-07-31|1998-05-22|1998-08-19|NONE|TRUCK|s use along the care| +56392|156994|44504|3|45|92294.55|0.10|0.01|N|O|1998-06-29|1998-07-11|1998-07-29|NONE|REG AIR|e even theodolites. carefully specia| +56393|762504|50|1|15|23497.05|0.02|0.06|N|O|1996-12-22|1997-01-30|1996-12-27|DELIVER IN PERSON|SHIP|egular pinto beans nag accounts. evenly f| +56393|402555|2556|2|8|11660.24|0.10|0.01|N|O|1996-11-23|1997-01-28|1996-12-02|COLLECT COD|FOB|mold blithely above the slyly bold | +56393|725970|13513|3|22|43910.68|0.01|0.02|N|O|1996-12-25|1997-01-11|1997-01-12|DELIVER IN PERSON|FOB|ithely ironic packages haggle abov| +56393|376724|1739|4|11|19807.81|0.03|0.06|N|O|1997-02-08|1996-12-22|1997-03-06|TAKE BACK RETURN|REG AIR|ccording to| +56393|599428|36962|5|6|9164.40|0.04|0.02|N|O|1997-02-16|1997-01-08|1997-03-17|NONE|RAIL|he frets. bold asymptotes boost regular | +56393|572853|47876|6|6|11554.98|0.03|0.06|N|O|1996-12-31|1997-01-11|1997-01-20|NONE|RAIL|lites haggle blithely accord| +56394|342495|42496|1|41|63036.68|0.06|0.05|N|O|1995-07-01|1995-08-02|1995-07-09|DELIVER IN PERSON|AIR|lyly express gifts above the| +56395|894001|31553|1|23|22884.08|0.00|0.00|A|F|1995-05-03|1995-02-25|1995-05-08|COLLECT COD|FOB|hely ironic packages. furiously special | +56395|469299|44318|2|48|60876.96|0.01|0.07|R|F|1995-02-17|1995-04-14|1995-03-02|TAKE BACK RETURN|MAIL|de of the regularly ironic packag| +56395|491584|29112|3|26|40964.56|0.07|0.01|A|F|1995-05-03|1995-04-14|1995-05-12|TAKE BACK RETURN|REG AIR|ains haggle about the pending instru| +56395|40243|15244|4|34|40230.16|0.02|0.01|R|F|1995-02-21|1995-03-25|1995-03-22|NONE|REG AIR|blithely; blithely| +56395|351075|38597|5|46|51798.76|0.03|0.01|R|F|1995-01-23|1995-03-11|1995-01-24|DELIVER IN PERSON|AIR|c dinos mold. | +56396|248762|23771|1|48|82116.00|0.07|0.06|A|F|1994-05-10|1994-04-17|1994-06-03|NONE|RAIL| according to the fin| +56396|928886|28887|2|6|11489.04|0.05|0.08|R|F|1994-03-06|1994-04-13|1994-03-19|TAKE BACK RETURN|SHIP|yly slyly unusual pa| +56396|782065|32066|3|50|57351.50|0.05|0.04|A|F|1994-02-28|1994-05-05|1994-03-09|NONE|AIR|. furiously regular ideas around t| +56396|151841|14345|4|41|77606.44|0.10|0.01|A|F|1994-04-17|1994-05-06|1994-04-27|NONE|REG AIR|kages. orbits use ca| +56396|976697|39217|5|30|53209.50|0.04|0.06|R|F|1994-05-04|1994-05-09|1994-06-01|DELIVER IN PERSON|RAIL| even deposits. fluffily| +56397|455677|30696|1|45|73469.25|0.03|0.06|N|O|1998-08-08|1998-08-16|1998-08-17|TAKE BACK RETURN|FOB|ke. careful| +56397|554255|29278|2|38|49750.74|0.02|0.00|N|O|1998-09-14|1998-08-03|1998-09-26|TAKE BACK RETURN|FOB|ests. furiously| +56397|347665|10172|3|21|35965.65|0.01|0.03|N|O|1998-08-09|1998-09-03|1998-08-18|DELIVER IN PERSON|AIR|xcuses. fluffily even ide| +56397|197171|34681|4|35|44385.95|0.04|0.03|N|O|1998-07-31|1998-08-22|1998-08-09|NONE|SHIP|dle ironically enticing pinto bean| +56397|838964|13997|5|10|19029.20|0.03|0.08|N|O|1998-07-26|1998-08-31|1998-08-08|COLLECT COD|AIR| deposits cajole slyl| +56398|557238|32261|1|21|27199.41|0.07|0.02|N|O|1996-10-21|1996-12-21|1996-11-17|DELIVER IN PERSON|REG AIR|ly regular dolphins. foxe| +56398|498726|11236|2|48|82785.60|0.04|0.03|N|O|1996-10-30|1996-11-23|1996-11-14|TAKE BACK RETURN|TRUCK|even excuses haggle. special, quiet theo| +56398|82081|7084|3|1|1063.08|0.02|0.08|N|O|1996-11-28|1997-01-14|1996-12-06|DELIVER IN PERSON|SHIP|ges. fluffily final pa| +56399|517644|5175|1|18|29909.16|0.04|0.03|A|F|1993-12-30|1993-12-20|1994-01-18|COLLECT COD|MAIL| packages. sl| +56399|33184|45685|2|10|11171.80|0.10|0.05|A|F|1994-01-21|1993-12-17|1994-02-11|DELIVER IN PERSON|MAIL|dolphins. accounts slee| +56424|734560|9589|1|9|14350.77|0.04|0.00|N|O|1997-05-10|1997-05-25|1997-05-15|TAKE BACK RETURN|FOB|ts according to the fluffily final de| +56424|735021|35022|2|32|33791.68|0.01|0.06|N|O|1997-07-08|1997-05-18|1997-07-29|COLLECT COD|FOB|unusual packages | +56424|491650|16669|3|17|27907.71|0.04|0.08|N|O|1997-06-26|1997-06-01|1997-07-19|DELIVER IN PERSON|AIR|special, regular packages serve furiously a| +56425|159908|34915|1|20|39358.00|0.02|0.06|R|F|1994-11-22|1994-12-18|1994-12-16|TAKE BACK RETURN|AIR|lar accounts need to nag furiou| +56426|115200|40205|1|35|42532.00|0.03|0.03|A|F|1995-01-28|1995-02-01|1995-01-29|DELIVER IN PERSON|TRUCK|ges are. carefully express deposits above | +56426|153650|3651|2|39|66442.35|0.02|0.04|A|F|1995-03-18|1995-02-28|1995-04-11|DELIVER IN PERSON|SHIP|equests ha| +56426|392065|17080|3|19|21983.95|0.10|0.03|A|F|1995-03-28|1995-01-22|1995-04-11|COLLECT COD|SHIP|r packages. slyly regular platelets grow a| +56426|426977|39486|4|4|7615.80|0.03|0.02|R|F|1995-01-09|1995-02-08|1995-02-06|NONE|FOB|lar requests | +56426|198893|23900|5|10|19918.90|0.07|0.00|R|F|1995-01-16|1995-01-07|1995-01-19|NONE|TRUCK|nic theodolites. ironic th| +56427|426798|14323|1|23|39669.71|0.09|0.03|N|O|1997-01-16|1996-12-12|1997-01-26|TAKE BACK RETURN|MAIL|ly final instructions wake someti| +56427|183737|21247|2|27|49159.71|0.07|0.08|N|O|1996-11-25|1996-12-11|1996-12-21|DELIVER IN PERSON|TRUCK| pinto beans cajole sometimes express plate| +56427|64458|1962|3|47|66855.15|0.03|0.07|N|O|1997-02-02|1996-11-28|1997-02-18|TAKE BACK RETURN|SHIP|d deposits haggle silently| +56427|336450|48957|4|16|23783.04|0.10|0.07|N|O|1996-11-13|1996-12-07|1996-12-09|TAKE BACK RETURN|TRUCK|ly ironic theodolites. ideas are furi| +56428|115786|15787|1|42|75674.76|0.00|0.02|A|F|1992-01-30|1992-02-11|1992-02-23|COLLECT COD|REG AIR|lar, ironic dugouts! | +56429|564838|39861|1|29|55181.49|0.02|0.08|N|O|1997-09-23|1997-10-15|1997-10-23|TAKE BACK RETURN|MAIL|es. furiously even | +56430|703724|16239|1|48|82929.12|0.09|0.05|R|F|1995-03-11|1995-05-18|1995-03-12|TAKE BACK RETURN|RAIL|. ironic, special foxes sleep agains| +56430|484338|21866|2|17|22479.27|0.07|0.06|A|F|1995-05-03|1995-06-04|1995-05-07|NONE|RAIL|uriously bold pinto beans. | +56430|258282|20788|3|17|21084.59|0.02|0.02|A|F|1995-04-09|1995-04-13|1995-04-20|TAKE BACK RETURN|REG AIR|lyly regular requests haggle | +56431|735681|23224|1|48|82399.20|0.05|0.08|N|O|1997-01-17|1996-12-24|1997-01-26|TAKE BACK RETURN|FOB|the special requests thrash slyly among th| +56431|583931|21465|2|17|34253.47|0.06|0.04|N|O|1996-11-12|1996-12-31|1996-11-29|COLLECT COD|MAIL|aphs! regular, ironic pi| +56431|127547|2552|3|43|67705.22|0.04|0.04|N|O|1997-02-02|1996-12-21|1997-03-03|NONE|REG AIR|efully; unusual requests h| +56431|670457|32971|4|27|38540.34|0.07|0.07|N|O|1996-11-05|1996-12-20|1996-11-13|DELIVER IN PERSON|AIR|al ideas sleep quickly| +56431|367704|42719|5|14|24803.66|0.09|0.04|N|O|1997-01-22|1996-12-07|1997-02-18|TAKE BACK RETURN|RAIL| deposits. bold, final pinto| +56456|707929|7930|1|4|7747.56|0.00|0.05|R|F|1994-04-20|1994-04-22|1994-04-28|COLLECT COD|RAIL|ick pinto beans. deposits | +56457|67612|5116|1|45|71082.45|0.10|0.08|A|F|1992-10-15|1992-10-30|1992-11-01|COLLECT COD|RAIL|l dependencies are | +56457|353567|3568|2|7|11343.85|0.07|0.04|A|F|1992-09-16|1992-11-06|1992-10-15|NONE|AIR|ages cajole slyly according to th| +56457|392190|4698|3|25|32054.50|0.04|0.01|A|F|1992-10-23|1992-11-11|1992-11-07|DELIVER IN PERSON|TRUCK|pending ideas. slyly final accounts sleep n| +56458|385392|35393|1|43|63527.34|0.00|0.01|N|O|1996-01-23|1996-04-01|1996-02-14|NONE|FOB|nusual foxes! | +56459|735802|10831|1|14|25728.78|0.02|0.06|N|O|1998-03-22|1998-05-01|1998-03-29|COLLECT COD|SHIP| serve among the even foxes| +56459|617261|4798|2|6|7069.38|0.02|0.08|N|O|1998-06-22|1998-05-16|1998-07-16|COLLECT COD|REG AIR|osits wake. blit| +56459|302595|2596|3|27|43134.66|0.03|0.08|N|O|1998-04-01|1998-04-28|1998-04-03|COLLECT COD|RAIL|ully quickly unusu| +56459|711190|11191|4|8|9609.28|0.04|0.01|N|O|1998-05-12|1998-04-09|1998-06-05|TAKE BACK RETURN|TRUCK|cies. furiously regular fox| +56459|965228|15229|5|29|37502.22|0.06|0.06|N|O|1998-03-21|1998-05-15|1998-03-26|NONE|SHIP| even, express theodolit| +56459|585520|48032|6|48|77064.00|0.07|0.00|N|O|1998-03-06|1998-04-21|1998-03-10|NONE|MAIL|sly among the pe| +56460|134445|9450|1|44|65095.36|0.07|0.03|R|F|1993-06-05|1993-06-05|1993-07-02|DELIVER IN PERSON|RAIL| final, final | +56460|610448|47985|2|30|40752.30|0.09|0.01|R|F|1993-05-11|1993-07-26|1993-06-09|DELIVER IN PERSON|REG AIR|ently regular courts. slyl| +56460|792013|4529|3|45|49724.10|0.03|0.03|A|F|1993-07-28|1993-07-14|1993-08-17|NONE|TRUCK|. furiously regular | +56460|348508|11015|4|29|45138.21|0.07|0.07|R|F|1993-05-22|1993-06-10|1993-06-14|COLLECT COD|TRUCK| boost pending, silent excuses. final, re| +56461|74788|49791|1|17|29967.26|0.10|0.00|N|O|1995-12-15|1995-10-21|1996-01-01|TAKE BACK RETURN|REG AIR|refully final, iro| +56461|953660|41218|2|36|61690.32|0.08|0.04|N|O|1995-09-12|1995-10-27|1995-09-30|DELIVER IN PERSON|MAIL|ymptotes above th| +56461|150920|13424|3|5|9854.60|0.09|0.03|N|O|1995-09-25|1995-09-28|1995-09-28|COLLECT COD|RAIL|ending ideas| +56462|328986|28987|1|19|38284.43|0.10|0.05|N|O|1995-09-20|1995-10-07|1995-09-21|DELIVER IN PERSON|FOB|d have to are blithely unusual ac| +56462|267130|29636|2|17|18651.04|0.07|0.00|N|O|1995-10-06|1995-09-28|1995-10-17|NONE|TRUCK|efully express accounts. blithely si| +56462|653162|3163|3|17|18957.21|0.06|0.00|N|O|1995-10-21|1995-09-30|1995-11-10|NONE|REG AIR|ing depende| +56462|687318|37319|4|47|61348.16|0.06|0.02|N|O|1995-12-05|1995-10-11|1995-12-08|NONE|FOB|nic instruc| +56463|151802|39312|1|34|63029.20|0.05|0.00|N|O|1997-11-13|1997-09-22|1997-12-09|DELIVER IN PERSON|TRUCK|old theodolites boost slyly | +56463|330168|17687|2|27|32350.05|0.01|0.08|N|O|1997-10-22|1997-08-23|1997-11-17|DELIVER IN PERSON|MAIL|ronic accounts nag sometimes final in| +56463|124985|24986|3|24|48239.52|0.10|0.04|N|O|1997-09-01|1997-10-20|1997-09-22|TAKE BACK RETURN|RAIL|n ideas caj| +56463|614556|39581|4|36|52938.72|0.01|0.07|N|O|1997-09-11|1997-09-20|1997-09-25|COLLECT COD|SHIP|y quick dependencies cajole sl| +56488|888470|13505|1|19|27710.17|0.10|0.04|N|O|1996-05-31|1996-05-05|1996-06-05|DELIVER IN PERSON|RAIL|he asymptotes haggle. carefully ev| +56488|503568|16079|2|22|34573.88|0.01|0.02|N|O|1996-05-02|1996-06-22|1996-05-14|NONE|RAIL|e final dolphins sleep ironic, | +56489|551898|26921|1|24|46796.88|0.01|0.04|N|O|1997-08-28|1997-10-08|1997-09-16|NONE|SHIP| unusual foxes against the theod| +56490|741902|29445|1|1|1943.87|0.00|0.00|N|O|1998-04-14|1998-05-26|1998-04-26|DELIVER IN PERSON|REG AIR|rious packages. quickly| +56490|132376|19883|2|37|52109.69|0.08|0.00|N|O|1998-05-28|1998-05-25|1998-06-11|NONE|TRUCK|e blithely | +56490|828928|41445|3|37|68704.56|0.04|0.00|N|O|1998-06-04|1998-04-12|1998-06-27|DELIVER IN PERSON|MAIL| ironic accounts. special ac| +56490|788525|1041|4|4|6453.96|0.06|0.07|N|O|1998-04-25|1998-04-05|1998-05-18|TAKE BACK RETURN|TRUCK|l, bold patterns. ca| +56490|733902|46417|5|36|69691.32|0.00|0.01|N|O|1998-03-22|1998-04-17|1998-04-11|COLLECT COD|SHIP|e ironic foxes. pending, regular | +56491|555006|30029|1|18|19097.64|0.05|0.05|N|O|1997-03-01|1997-02-09|1997-03-30|DELIVER IN PERSON|SHIP| final accounts sleep carefully acco| +56491|978861|16419|2|35|67893.70|0.06|0.03|N|O|1996-12-17|1997-02-13|1997-01-06|COLLECT COD|RAIL|sly. quickly pending instructi| +56491|716513|41542|3|21|32119.08|0.02|0.01|N|O|1996-12-22|1997-02-06|1996-12-24|DELIVER IN PERSON|MAIL|s sleep slyly alongside of the express ac| +56491|425403|12928|4|2|2656.76|0.09|0.01|N|O|1997-01-05|1997-01-02|1997-01-27|DELIVER IN PERSON|AIR| cajole furiously unus| +56491|742047|42048|5|35|38115.35|0.06|0.05|N|O|1997-01-22|1997-01-21|1997-02-08|NONE|FOB|ual, bold asym| +56491|582194|7217|6|14|17866.38|0.05|0.02|N|O|1996-12-11|1997-02-09|1997-01-02|COLLECT COD|RAIL|lly carefully final packages. fluffily | +56491|918911|43948|7|30|57896.10|0.10|0.08|N|O|1997-01-05|1997-01-03|1997-01-24|DELIVER IN PERSON|FOB|y against the q| +56492|122084|47089|1|47|51985.76|0.01|0.02|N|O|1995-09-29|1995-08-30|1995-10-07|NONE|AIR|its cajole quickly: regular a| +56492|856846|6847|2|18|32450.40|0.01|0.07|N|O|1995-08-18|1995-08-28|1995-08-31|COLLECT COD|AIR|efully pending packages. slyly ironi| +56493|930383|5420|1|13|18373.42|0.01|0.05|N|O|1997-05-10|1997-07-09|1997-05-20|NONE|AIR|ly final multipliers. final| +56493|945845|20882|2|50|94540.00|0.02|0.00|N|O|1997-06-03|1997-07-02|1997-07-02|NONE|RAIL|ic gifts haggle carefully slyly pending ide| +56493|814395|39428|3|38|49755.30|0.05|0.03|N|O|1997-07-01|1997-06-28|1997-07-19|TAKE BACK RETURN|REG AIR|among the slyly i| +56494|38806|26307|1|48|83750.40|0.01|0.04|A|F|1993-11-04|1993-12-29|1993-12-04|DELIVER IN PERSON|TRUCK| foxes. packages w| +56494|201764|39277|2|39|64964.25|0.03|0.08|A|F|1993-10-28|1993-12-28|1993-11-04|DELIVER IN PERSON|MAIL| furiously; furiously pending deposits at| +56494|41815|4316|3|2|3513.62|0.05|0.06|R|F|1993-10-15|1993-12-08|1993-11-08|DELIVER IN PERSON|TRUCK|ld packages | +56494|780795|5826|4|22|41266.72|0.01|0.03|R|F|1993-11-24|1993-11-28|1993-12-05|NONE|AIR|ly unusual requests. carefully| +56494|807594|20111|5|29|43544.95|0.02|0.07|A|F|1993-12-03|1993-12-06|1993-12-18|TAKE BACK RETURN|TRUCK| blithely expre| +56495|684532|22072|1|29|43978.50|0.09|0.05|R|F|1992-05-17|1992-07-17|1992-05-23|NONE|FOB|c, even ideas sleep slyly accordi| +56495|924927|37446|2|2|3903.76|0.05|0.06|A|F|1992-06-18|1992-07-16|1992-07-17|TAKE BACK RETURN|SHIP|lar packages along| +56520|317475|17476|1|35|52236.10|0.09|0.01|R|F|1994-08-06|1994-08-14|1994-08-11|DELIVER IN PERSON|FOB|are carefully regular, ironic plate| +56520|800175|176|2|38|40854.94|0.10|0.02|A|F|1994-09-18|1994-08-28|1994-10-05|DELIVER IN PERSON|TRUCK|rts cajole | +56520|525571|25572|3|33|52686.15|0.07|0.07|R|F|1994-07-09|1994-09-26|1994-07-26|NONE|FOB|e foxes. sheaves cajole ir| +56520|261664|24170|4|30|48769.50|0.03|0.07|R|F|1994-09-22|1994-10-01|1994-10-11|TAKE BACK RETURN|REG AIR|g to the pearls| +56520|772127|34643|5|47|56357.23|0.03|0.06|R|F|1994-07-31|1994-09-18|1994-08-26|NONE|FOB|ole quickly pending deposits. | +56521|602066|39603|1|48|46465.44|0.00|0.01|N|O|1995-10-13|1995-08-10|1995-10-26|COLLECT COD|TRUCK|final requ| +56522|257452|7453|1|42|59196.48|0.03|0.00|N|O|1997-04-23|1997-07-07|1997-05-15|COLLECT COD|RAIL|ruthless frays. c| +56522|979894|42414|2|44|86849.40|0.02|0.00|N|O|1997-04-30|1997-06-19|1997-05-06|NONE|RAIL|nstructions detect furiously silent pinto | +56523|856702|6703|1|4|6634.64|0.09|0.07|R|F|1994-05-09|1994-02-19|1994-05-19|TAKE BACK RETURN|MAIL|e after the furiously even | +56523|581621|6644|2|11|18728.60|0.06|0.00|A|F|1994-05-09|1994-03-09|1994-05-28|NONE|AIR|xes. carefully even theodolites cajole aft| +56523|295544|45545|3|23|35409.19|0.09|0.02|R|F|1994-02-09|1994-03-06|1994-02-16|DELIVER IN PERSON|RAIL|nts. permanently special warhorses | +56523|205481|30490|4|38|52685.86|0.01|0.00|A|F|1994-02-16|1994-04-07|1994-02-22|COLLECT COD|RAIL|ong the carefully final accounts. iron| +56524|540636|28167|1|8|13412.88|0.01|0.04|N|O|1998-01-26|1998-04-21|1998-02-13|NONE|FOB|lose excuses sleep carefully darin| +56524|454946|4947|2|13|24711.96|0.04|0.05|N|O|1998-01-30|1998-03-08|1998-02-11|COLLECT COD|RAIL| pending, final| +56524|269985|7501|3|39|76243.83|0.01|0.05|N|O|1998-02-27|1998-04-21|1998-03-21|NONE|TRUCK|ar ideas. blithely ironic excuses sle| +56525|281391|18907|1|13|17840.94|0.08|0.04|N|O|1997-09-18|1997-09-02|1997-10-07|COLLECT COD|RAIL|ymptotes are. carefully p| +56525|327628|27629|2|28|46357.08|0.00|0.03|N|O|1997-06-24|1997-09-06|1997-06-29|NONE|RAIL|latelets. final de| +56525|439130|14147|3|10|10691.10|0.03|0.05|N|O|1997-09-29|1997-08-28|1997-09-30|COLLECT COD|REG AIR|ular excuses sno| +56525|443479|43480|4|43|61165.35|0.10|0.03|N|O|1997-06-30|1997-08-04|1997-07-16|DELIVER IN PERSON|TRUCK|even waters | +56525|549908|49909|5|48|93978.24|0.07|0.02|N|O|1997-08-12|1997-08-11|1997-08-17|TAKE BACK RETURN|TRUCK| across the | +56525|290465|15476|6|43|62584.35|0.01|0.08|N|O|1997-07-15|1997-07-10|1997-07-27|TAKE BACK RETURN|FOB|ckages: accounts wake unusual platelets. | +56526|57603|7604|1|13|20287.80|0.03|0.00|N|O|1997-06-12|1997-05-30|1997-06-21|NONE|SHIP|ffily ironic theodolites. careful| +56527|640909|3422|1|23|42547.01|0.08|0.05|A|F|1994-11-14|1994-11-02|1994-11-21|NONE|MAIL|its wake carefully around the | +56527|749051|36594|2|25|27500.50|0.05|0.03|R|F|1994-11-10|1994-12-03|1994-11-17|TAKE BACK RETURN|REG AIR|ts haggle bl| +56527|285700|23216|3|34|57313.46|0.02|0.07|R|F|1994-11-24|1994-11-17|1994-12-16|COLLECT COD|RAIL| final instructions.| +56527|753022|15538|4|24|25799.76|0.00|0.03|A|F|1994-10-23|1994-12-19|1994-10-27|COLLECT COD|RAIL|somas. quickly regular re| +56527|24438|24439|5|2|2724.86|0.00|0.00|A|F|1994-11-21|1994-12-18|1994-12-14|NONE|SHIP|ose inside| +56527|718389|5932|6|10|14073.50|0.00|0.03|A|F|1995-01-07|1994-11-07|1995-01-20|TAKE BACK RETURN|REG AIR|al packages sleep permanently | +56552|26356|26357|1|8|10258.80|0.09|0.03|N|O|1995-11-06|1995-08-25|1995-11-07|COLLECT COD|AIR|press deposit| +56552|956683|6684|2|1|1739.64|0.00|0.02|N|O|1995-07-21|1995-08-25|1995-08-12|DELIVER IN PERSON|SHIP| requests use pending p| +56552|971034|46073|3|24|26519.76|0.07|0.00|N|O|1995-10-13|1995-08-16|1995-10-23|COLLECT COD|REG AIR|ng packages nag ironic braids. ironic p| +56552|157883|20387|4|24|46581.12|0.04|0.02|N|O|1995-08-20|1995-09-21|1995-09-10|COLLECT COD|MAIL| packages run regular acc| +56552|534951|47462|5|49|97310.57|0.04|0.04|N|O|1995-10-04|1995-08-09|1995-10-14|COLLECT COD|MAIL| unwind quickly. requests inte| +56553|200571|13076|1|20|29431.20|0.02|0.08|N|O|1997-03-10|1997-03-28|1997-03-27|NONE|REG AIR|ic ideas are sl| +56553|989155|1675|2|26|32346.86|0.08|0.07|N|O|1997-03-12|1997-03-12|1997-04-07|TAKE BACK RETURN|FOB|aggle along the boldly pending accou| +56553|712317|24832|3|43|57159.04|0.02|0.08|N|O|1997-04-04|1997-04-28|1997-04-05|DELIVER IN PERSON|RAIL| furiously carefully ironic a| +56553|895909|45910|4|46|87623.56|0.05|0.05|N|O|1997-05-31|1997-03-06|1997-06-04|NONE|TRUCK|nos. even packa| +56554|585619|35620|1|35|59660.65|0.10|0.01|N|O|1995-10-31|1995-09-19|1995-11-09|DELIVER IN PERSON|AIR|theodolites nag carefully after the fin| +56554|497556|10066|2|13|20195.89|0.08|0.03|N|O|1995-09-17|1995-09-06|1995-09-24|NONE|AIR|s wake furiou| +56554|418680|6205|3|20|31973.20|0.06|0.03|N|O|1995-11-17|1995-10-04|1995-12-07|NONE|RAIL|ckages boost brave| +56554|745867|33410|4|23|43995.09|0.05|0.08|N|O|1995-11-18|1995-09-27|1995-11-29|COLLECT COD|TRUCK|nal, regular theodolites dete| +56554|781517|19063|5|49|78325.52|0.06|0.07|N|O|1995-09-02|1995-10-22|1995-09-14|TAKE BACK RETURN|RAIL| carefully unusual ac| +56555|415158|40175|1|9|9658.17|0.00|0.05|A|F|1992-10-14|1992-10-20|1992-10-29|NONE|MAIL|unusual theodolites. even, | +56555|551953|26976|2|1|2004.93|0.02|0.03|A|F|1992-10-05|1992-09-03|1992-10-12|COLLECT COD|AIR|ial courts cajole fluffily acr| +56555|663902|26416|3|10|18658.70|0.07|0.07|R|F|1992-08-08|1992-09-23|1992-08-26|DELIVER IN PERSON|FOB| furiously. ironic, close accounts am| +56555|189439|1943|4|42|64194.06|0.07|0.01|R|F|1992-10-31|1992-10-24|1992-11-11|DELIVER IN PERSON|FOB|sts. even deposits cajole car| +56555|899500|37052|5|27|40485.42|0.04|0.04|A|F|1992-11-16|1992-09-07|1992-11-20|COLLECT COD|FOB|es sleep fluffily blithely unusual deposits| +56555|888318|836|6|31|40494.37|0.05|0.02|A|F|1992-10-08|1992-09-23|1992-11-03|TAKE BACK RETURN|FOB|quests can| +56555|955834|18354|7|34|64252.86|0.01|0.04|R|F|1992-09-09|1992-10-24|1992-09-10|NONE|TRUCK|its. furious| +56556|695893|20920|1|15|28332.90|0.08|0.00|N|O|1995-08-18|1995-08-07|1995-09-09|DELIVER IN PERSON|TRUCK|alongside of the u| +56556|863066|25584|2|50|51451.00|0.08|0.04|N|F|1995-05-28|1995-07-06|1995-06-21|NONE|AIR|uriously even packages. tithes are s| +56556|539374|39375|3|41|57947.35|0.03|0.08|N|O|1995-08-05|1995-06-18|1995-08-14|DELIVER IN PERSON|MAIL|inal, final t| +56556|247317|47318|4|4|5057.20|0.05|0.05|N|O|1995-09-03|1995-06-20|1995-09-20|NONE|REG AIR|uests. carefu| +56556|643960|18985|5|43|81868.99|0.01|0.01|N|O|1995-09-04|1995-08-09|1995-09-07|DELIVER IN PERSON|REG AIR|hely. quickly regular courts wak| +56556|23892|23893|6|19|34501.91|0.05|0.03|A|F|1995-05-18|1995-07-08|1995-05-27|DELIVER IN PERSON|AIR|ely even excuses cajole packages.| +56557|46043|33544|1|44|43517.76|0.05|0.04|N|O|1996-08-25|1996-09-04|1996-09-10|TAKE BACK RETURN|TRUCK|posits wake furiously slyly final| +56557|837591|25140|2|34|51970.70|0.07|0.07|N|O|1996-11-05|1996-09-03|1996-11-10|COLLECT COD|RAIL|ckly even ideas wake carefull| +56557|379890|17412|3|9|17728.92|0.04|0.03|N|O|1996-10-04|1996-10-01|1996-10-12|NONE|TRUCK|osits. foxes wake blithely regular ins| +56557|799259|11775|4|37|50254.14|0.00|0.04|N|O|1996-09-25|1996-08-11|1996-10-19|TAKE BACK RETURN|TRUCK|kages haggle slyl| +56557|134671|22178|5|50|85283.50|0.07|0.05|N|O|1996-08-03|1996-09-24|1996-08-14|DELIVER IN PERSON|TRUCK|kages boost blithe| +56557|413617|38634|6|16|24489.44|0.03|0.07|N|O|1996-07-19|1996-08-30|1996-07-29|COLLECT COD|FOB|ges. fluffily final instructions a| +56558|465591|28101|1|28|43583.96|0.01|0.08|A|F|1995-05-16|1995-04-18|1995-05-27|DELIVER IN PERSON|TRUCK|the packages wake slyly bet| +56558|187228|37229|2|2|2630.44|0.09|0.02|A|F|1995-06-06|1995-04-15|1995-06-09|COLLECT COD|MAIL|silent ideas wake carefully fluf| +56558|727948|27949|3|42|82988.22|0.08|0.06|R|F|1995-05-11|1995-04-14|1995-05-17|DELIVER IN PERSON|RAIL|furiously bold accounts. finally i| +56558|612012|37037|4|33|30491.34|0.06|0.00|N|F|1995-06-14|1995-03-30|1995-07-11|DELIVER IN PERSON|TRUCK|usly even accounts. excuse| +56558|76725|26726|5|45|76577.40|0.00|0.03|R|F|1995-05-15|1995-03-26|1995-05-29|NONE|AIR|accounts. furiously ironic sauterne| +56558|510769|48300|6|34|60511.16|0.00|0.06|A|F|1995-03-03|1995-03-27|1995-03-16|TAKE BACK RETURN|TRUCK|y unusual hock| +56559|972011|9569|1|45|48733.65|0.02|0.08|N|O|1995-12-26|1996-02-08|1995-12-30|NONE|REG AIR|ckages. final, special re| +56559|572401|47424|2|38|55988.44|0.03|0.04|N|O|1996-02-22|1996-01-22|1996-02-26|DELIVER IN PERSON|FOB|ng theodolites. ironic p| +56559|341846|16859|3|26|49083.58|0.05|0.02|N|O|1996-01-29|1996-02-02|1996-02-05|COLLECT COD|RAIL|ns. blithely unusual dependencies a| +56559|403368|15877|4|21|26698.14|0.07|0.07|N|O|1996-01-15|1996-03-02|1996-02-12|TAKE BACK RETURN|SHIP|eas boost slyly furiously even accounts| +56584|32465|44966|1|43|60090.78|0.04|0.04|N|O|1998-02-02|1998-01-18|1998-02-15|DELIVER IN PERSON|SHIP|r, even requests are among the pend| +56584|626862|26863|2|19|33987.77|0.08|0.07|N|O|1997-11-03|1997-12-28|1997-11-04|TAKE BACK RETURN|RAIL|foxes. final dolphins cajole furiously ex| +56584|655563|5564|3|13|19740.89|0.04|0.01|N|O|1998-02-14|1998-01-06|1998-02-21|NONE|AIR|sts. express| +56584|43467|43468|4|48|67702.08|0.08|0.05|N|O|1998-01-28|1998-01-23|1998-02-24|TAKE BACK RETURN|FOB|s are furiously against th| +56584|538688|1199|5|20|34533.20|0.09|0.06|N|O|1998-01-11|1998-01-11|1998-01-23|TAKE BACK RETURN|RAIL|es detect blithely final requests-- | +56584|722331|47360|6|20|27066.00|0.07|0.06|N|O|1997-11-22|1998-01-18|1997-11-28|NONE|TRUCK|nto beans. re| +56584|201745|14250|7|41|67515.93|0.10|0.04|N|O|1997-11-20|1997-12-26|1997-12-04|COLLECT COD|TRUCK|cuses against the | +56585|716113|28628|1|18|20323.44|0.02|0.08|A|F|1992-04-07|1992-05-05|1992-05-02|NONE|AIR|l requests are carefull| +56585|704203|4204|2|4|4828.68|0.01|0.01|A|F|1992-05-26|1992-06-03|1992-06-10|COLLECT COD|SHIP|e. fluffily special deposits| +56586|610141|22654|1|22|23124.42|0.01|0.03|A|F|1992-10-18|1992-08-22|1992-10-26|DELIVER IN PERSON|MAIL| packages haggle carefully. car| +56586|636118|23655|2|49|51649.92|0.00|0.03|A|F|1992-09-27|1992-08-25|1992-10-14|DELIVER IN PERSON|RAIL| sleep furiously even deposits| +56587|666167|28681|1|44|49857.72|0.08|0.04|A|F|1993-07-07|1993-06-08|1993-07-24|COLLECT COD|RAIL| slyly. slyly bol| +56587|258418|20924|2|46|63314.40|0.03|0.01|R|F|1993-04-29|1993-05-23|1993-05-26|DELIVER IN PERSON|AIR| even theodolites alongside of t| +56587|219359|6872|3|50|63917.00|0.10|0.03|A|F|1993-04-21|1993-06-05|1993-05-09|TAKE BACK RETURN|FOB|ong the acc| +56587|762907|37938|4|29|57126.23|0.04|0.08|A|F|1993-04-21|1993-05-29|1993-05-05|DELIVER IN PERSON|SHIP| print furiously final instructions. bli| +56587|175635|25636|5|30|51318.90|0.09|0.00|R|F|1993-07-02|1993-06-12|1993-07-25|NONE|RAIL|quickly final asymptotes. final, special a| +56588|679297|29298|1|37|47221.62|0.03|0.03|N|O|1997-07-14|1997-08-16|1997-07-18|NONE|REG AIR|sts wake slyly furious| +56588|929919|29920|2|3|5846.61|0.06|0.02|N|O|1997-07-18|1997-09-17|1997-07-20|COLLECT COD|SHIP|. quick pinto beans | +56588|145452|45453|3|8|11979.60|0.09|0.04|N|O|1997-08-21|1997-08-02|1997-09-11|DELIVER IN PERSON|TRUCK|old foxes. fl| +56588|600170|37707|4|45|48156.30|0.09|0.08|N|O|1997-10-12|1997-07-29|1997-10-15|TAKE BACK RETURN|AIR|ording to the bold fo| +56588|54385|29388|5|3|4018.14|0.03|0.07|N|O|1997-10-26|1997-08-14|1997-10-30|DELIVER IN PERSON|SHIP|into beans cajole slyly. carefully iro| +56588|46558|21559|6|41|61686.55|0.06|0.04|N|O|1997-09-27|1997-08-04|1997-10-11|COLLECT COD|AIR|lyly bold accounts was idly. | +56589|832485|32486|1|14|19844.16|0.10|0.06|N|O|1998-03-18|1998-05-26|1998-04-04|TAKE BACK RETURN|REG AIR|ages. blithely furious packages sleep qu| +56589|563673|13674|2|10|17366.50|0.06|0.04|N|O|1998-05-17|1998-05-12|1998-06-02|COLLECT COD|RAIL| instructions mold carefully final | +56589|636891|24428|3|34|62147.24|0.01|0.06|N|O|1998-04-10|1998-04-13|1998-04-20|COLLECT COD|AIR|ckly pending b| +56589|220750|45759|4|47|78524.78|0.08|0.01|N|O|1998-03-03|1998-04-17|1998-03-19|COLLECT COD|MAIL|ar instructions. furiously unu| +56589|130575|18082|5|25|40139.25|0.06|0.04|N|O|1998-04-08|1998-04-13|1998-04-19|NONE|REG AIR|closely fu| +56590|499990|49991|1|5|9949.85|0.04|0.07|A|F|1994-12-27|1994-12-23|1995-01-24|NONE|AIR|al deposits detect neve| +56590|318840|6359|2|3|5576.49|0.05|0.04|A|F|1995-01-14|1995-02-10|1995-01-20|TAKE BACK RETURN|AIR| carefully close pinto beans sleep furiou| +56591|34747|34748|1|31|52133.94|0.04|0.00|N|O|1996-07-15|1996-06-17|1996-08-13|TAKE BACK RETURN|SHIP|l requests. ruthlessly regul| +56591|978967|16525|2|47|96158.24|0.03|0.07|N|O|1996-08-22|1996-06-14|1996-08-30|COLLECT COD|REG AIR|ding to the slyly enticing pains. unusual,| +56591|486446|48956|3|41|58729.22|0.06|0.02|N|O|1996-05-27|1996-07-13|1996-06-24|COLLECT COD|MAIL|y. carefully ironic packages | +56591|696192|21219|4|7|8317.12|0.10|0.03|N|O|1996-05-22|1996-06-24|1996-06-04|NONE|TRUCK|slyly silent| +56591|885662|35663|5|32|52723.84|0.01|0.01|N|O|1996-08-27|1996-08-08|1996-09-09|NONE|MAIL|he carefully regular attainments. ir| +56591|309528|47047|6|42|64575.42|0.03|0.03|N|O|1996-05-27|1996-06-14|1996-06-25|COLLECT COD|REG AIR|e blithely b| +56591|229651|17164|7|37|58483.68|0.04|0.05|N|O|1996-06-13|1996-08-05|1996-06-27|TAKE BACK RETURN|REG AIR|ets are careful| +56616|742072|4587|1|43|47903.72|0.09|0.05|N|O|1995-07-24|1995-08-23|1995-08-07|TAKE BACK RETURN|FOB|ctions. even, ironic requests hagg| +56616|996803|46804|2|7|13298.32|0.08|0.08|N|O|1995-09-19|1995-09-03|1995-10-05|DELIVER IN PERSON|RAIL|st fluffil| +56616|264775|14776|3|3|5219.28|0.06|0.03|N|O|1995-09-23|1995-09-04|1995-09-29|DELIVER IN PERSON|MAIL|eposits. stealthily re| +56617|743407|5922|1|13|18854.81|0.06|0.01|N|O|1995-10-14|1995-08-21|1995-10-15|TAKE BACK RETURN|SHIP|sits across the instructions wake above | +56617|428641|28642|2|4|6278.48|0.02|0.00|N|O|1995-10-13|1995-07-30|1995-11-02|DELIVER IN PERSON|TRUCK|fily. final requests| +56617|163160|25664|3|1|1223.16|0.01|0.00|N|O|1995-08-07|1995-08-16|1995-08-27|DELIVER IN PERSON|SHIP|thely. regular, regular re| +56618|410821|23330|1|26|45026.80|0.01|0.07|R|F|1993-11-09|1993-09-27|1993-11-12|TAKE BACK RETURN|TRUCK|theodolites. slyly final d| +56618|654888|17402|2|43|79242.55|0.08|0.03|A|F|1993-08-11|1993-10-17|1993-09-10|TAKE BACK RETURN|SHIP|final packages run fluffily quickl| +56619|544577|32108|1|40|64862.00|0.08|0.04|A|F|1993-11-02|1993-12-04|1993-11-17|NONE|MAIL|deposits kindle quickly ironic pinto beans.| +56619|698251|35791|2|21|26233.62|0.06|0.05|R|F|1993-11-03|1993-11-10|1993-11-29|COLLECT COD|SHIP|nic accounts | +56619|498750|48751|3|9|15738.57|0.04|0.07|A|F|1994-02-06|1993-12-30|1994-02-11|COLLECT COD|MAIL|thily regular p| +56620|417250|42267|1|48|56027.04|0.09|0.07|N|O|1995-08-23|1995-08-30|1995-09-10|COLLECT COD|SHIP|manent deposits promise blithely dogge| +56620|718374|43403|2|11|15315.74|0.00|0.04|N|O|1995-06-28|1995-08-28|1995-07-02|NONE|MAIL|es. fluffily express p| +56620|695810|8324|3|49|88483.22|0.03|0.00|N|O|1995-09-16|1995-08-07|1995-09-22|TAKE BACK RETURN|SHIP|ilent dolphins. final platelet| +56620|473791|23792|4|47|82944.19|0.02|0.08|N|O|1995-06-19|1995-09-02|1995-07-18|NONE|FOB| requests r| +56620|3525|41026|5|8|11428.16|0.09|0.05|N|O|1995-10-03|1995-08-01|1995-10-22|COLLECT COD|MAIL|furiously: asymptotes mold slyly alon| +56620|235363|47868|6|36|46740.60|0.10|0.05|N|O|1995-07-10|1995-08-08|1995-07-18|DELIVER IN PERSON|AIR|al frays use fluffily. pending theodol| +56620|741742|16771|7|40|71348.40|0.03|0.05|N|O|1995-10-05|1995-08-29|1995-10-28|COLLECT COD|SHIP| regular accounts mold| +56621|446045|8554|1|10|9910.20|0.08|0.05|A|F|1993-07-20|1993-08-05|1993-08-02|TAKE BACK RETURN|AIR|ckages. carefully bold p| +56621|666988|29502|2|7|13684.65|0.05|0.08|A|F|1993-07-22|1993-09-07|1993-08-04|DELIVER IN PERSON|TRUCK|telets hang slyly ironic | +56621|62130|37133|3|23|25118.99|0.03|0.01|A|F|1993-10-07|1993-09-15|1993-11-01|DELIVER IN PERSON|REG AIR|ly express, special foxes. expre| +56621|203970|28979|4|11|20613.56|0.01|0.00|R|F|1993-09-29|1993-09-27|1993-10-28|DELIVER IN PERSON|TRUCK|quick deposits. regular accoun| +56621|116297|28800|5|48|63037.92|0.06|0.00|A|F|1993-08-16|1993-09-06|1993-08-29|DELIVER IN PERSON|SHIP|ct furiously final somas. quick| +56621|593915|6427|6|49|98435.61|0.09|0.05|A|F|1993-11-01|1993-09-17|1993-11-05|COLLECT COD|RAIL|s; furiously bold depo| +56621|913892|26411|7|20|38117.00|0.03|0.04|R|F|1993-09-23|1993-09-09|1993-10-14|DELIVER IN PERSON|AIR|s. furiously regular deposits detect c| +56622|774579|12125|1|5|8267.70|0.02|0.08|A|F|1993-11-11|1993-11-23|1993-12-10|TAKE BACK RETURN|MAIL|egular idea| +56623|631772|44285|1|18|30667.32|0.08|0.07|N|O|1997-07-05|1997-07-22|1997-07-11|DELIVER IN PERSON|MAIL|the regular exc| +56648|393282|30804|1|35|48134.45|0.09|0.08|N|O|1996-04-26|1996-03-01|1996-05-11|NONE|RAIL|dolites. blithely regular asymptote| +56648|882524|7559|2|24|36155.52|0.04|0.02|N|O|1996-04-08|1996-03-29|1996-04-12|DELIVER IN PERSON|FOB|ideas. even, pending accounts | +56648|569629|32141|3|37|62848.20|0.04|0.08|N|O|1996-01-16|1996-03-22|1996-01-28|NONE|TRUCK|ial ideas unwind quickly alon| +56648|749028|49029|4|4|4307.96|0.03|0.06|N|O|1996-03-22|1996-02-14|1996-04-17|COLLECT COD|RAIL|even theodolite| +56648|910762|10763|5|5|8863.60|0.03|0.01|N|O|1996-03-04|1996-03-18|1996-03-13|COLLECT COD|MAIL|nts haggle above the even platele| +56648|172205|34709|6|25|31930.00|0.09|0.04|N|O|1996-02-21|1996-03-13|1996-02-23|DELIVER IN PERSON|SHIP|ronic requests ma| +56649|166519|16520|1|6|9513.06|0.08|0.06|R|F|1993-03-17|1993-01-07|1993-03-25|TAKE BACK RETURN|FOB|c accounts. pending requests engage qu| +56649|680988|30989|2|17|33472.15|0.06|0.06|A|F|1993-02-15|1993-02-04|1993-03-10|COLLECT COD|RAIL|liers integrate carefully. | +56649|348617|48618|3|7|11659.20|0.05|0.01|A|F|1992-12-19|1993-01-29|1993-01-10|DELIVER IN PERSON|MAIL|rts sleep quickly according to the fox| +56649|190255|2759|4|27|36321.75|0.00|0.00|A|F|1993-03-20|1993-01-19|1993-03-31|TAKE BACK RETURN|AIR|e slyly. theodolites breach fluffily. ins| +56649|599043|24066|5|31|35402.62|0.09|0.06|A|F|1992-12-02|1993-01-10|1992-12-23|NONE|REG AIR|s the ironic requ| +56649|104969|42476|6|10|19739.60|0.01|0.06|R|F|1993-03-08|1993-01-06|1993-03-24|TAKE BACK RETURN|MAIL|ffix above the ironic theodolites. | +56650|480916|30917|1|33|62597.37|0.09|0.07|N|O|1998-06-18|1998-04-23|1998-07-18|DELIVER IN PERSON|MAIL|ons according to the| +56650|749518|37061|2|25|39187.00|0.05|0.03|N|O|1998-03-27|1998-05-08|1998-04-25|TAKE BACK RETURN|RAIL|e unusual asymptotes p| +56651|121552|9059|1|7|11014.85|0.08|0.03|N|O|1996-03-09|1996-01-14|1996-03-24|NONE|FOB|nal deposits. furiously final d| +56651|915415|15416|2|23|32898.51|0.06|0.06|N|O|1996-02-10|1996-02-05|1996-03-01|COLLECT COD|AIR|ial instructions. brave frays use along| +56652|632474|32475|1|22|30941.68|0.03|0.02|N|O|1995-08-23|1995-09-18|1995-09-12|DELIVER IN PERSON|MAIL|ithely regular deposits: blith| +56653|266831|29337|1|36|64721.52|0.10|0.03|R|F|1992-07-17|1992-07-19|1992-08-09|COLLECT COD|FOB|ly enticing courts according to the | +56653|620267|20268|2|43|51050.89|0.07|0.08|A|F|1992-09-03|1992-07-06|1992-09-14|COLLECT COD|REG AIR|slyly final instructions according to | +56653|813435|25952|3|14|18877.46|0.05|0.00|A|F|1992-09-03|1992-08-03|1992-09-22|TAKE BACK RETURN|AIR|kages. slyly unusual re| +56654|395864|8372|1|45|88193.25|0.04|0.02|A|F|1994-06-05|1994-05-16|1994-07-03|NONE|SHIP|ructions are slyly about the brav| +56654|270373|20374|2|41|55077.76|0.06|0.07|R|F|1994-04-12|1994-06-02|1994-04-24|COLLECT COD|FOB| accounts along the carefully ir| +56654|154151|4152|3|33|39769.95|0.02|0.06|A|F|1994-04-28|1994-05-24|1994-05-05|COLLECT COD|TRUCK|se deposits. regular deposi| +56654|801029|13546|4|50|46499.00|0.03|0.07|A|F|1994-05-14|1994-05-24|1994-05-23|DELIVER IN PERSON|TRUCK|ggle at the quickly ironic requests. st| +56654|888070|38071|5|43|45495.29|0.00|0.01|R|F|1994-04-26|1994-06-03|1994-05-12|NONE|SHIP| packages haggle agai| +56654|781272|6303|6|2|2706.48|0.03|0.05|R|F|1994-07-20|1994-05-06|1994-08-18|NONE|RAIL|ts cajole. pending, e| +56654|834311|9344|7|42|52301.34|0.08|0.06|R|F|1994-04-14|1994-05-28|1994-04-17|NONE|AIR|unts? asymptotes wake fluffi| +56655|251023|13529|1|9|8766.09|0.09|0.04|N|O|1996-02-21|1996-01-16|1996-02-28|TAKE BACK RETURN|MAIL|oggedly reg| +56655|934956|47475|2|4|7963.64|0.09|0.03|N|O|1996-03-26|1996-01-11|1996-03-31|NONE|AIR|ainst the careful| +56655|801183|1184|3|23|24935.22|0.06|0.07|N|O|1996-02-16|1996-02-02|1996-03-13|NONE|FOB|yly. blithely regular packages sle| +56655|470850|33360|4|28|50983.24|0.05|0.06|N|O|1996-01-28|1996-02-03|1996-02-23|NONE|REG AIR|refully ironic senti| +56680|450975|25994|1|13|25037.35|0.03|0.00|N|O|1995-12-16|1995-10-27|1995-12-31|NONE|MAIL|cajole slyly around the unusual packa| +56680|522263|34774|2|26|33416.24|0.07|0.05|N|O|1996-01-18|1995-10-28|1996-02-07|COLLECT COD|FOB|cies wake furio| +56680|664647|39674|3|44|70910.84|0.03|0.04|N|O|1995-10-19|1995-10-21|1995-11-13|COLLECT COD|FOB| blithely bold packages. | +56680|711951|11952|4|30|58887.60|0.01|0.06|N|O|1995-11-02|1995-11-10|1995-11-06|COLLECT COD|SHIP|endencies use. accounts wake fluffily. i| +56680|753578|16094|5|28|45683.12|0.08|0.01|N|O|1995-10-31|1995-11-14|1995-11-01|NONE|SHIP| grouches are quickly amo| +56681|119209|31712|1|16|19651.20|0.03|0.08|R|F|1994-05-14|1994-07-08|1994-05-18|DELIVER IN PERSON|FOB|slyly around the bli| +56681|538517|1028|2|5|7777.45|0.01|0.08|R|F|1994-05-01|1994-06-16|1994-05-22|COLLECT COD|RAIL|ld, final ideas wake carefully. blit| +56681|854146|41698|3|13|14301.30|0.01|0.04|R|F|1994-05-21|1994-07-03|1994-06-12|DELIVER IN PERSON|SHIP|xcept the careful, pending foxes. furiousl| +56681|627759|40272|4|49|82649.28|0.06|0.00|R|F|1994-08-08|1994-06-15|1994-08-27|DELIVER IN PERSON|TRUCK|ies use carefully across th| +56681|744451|19480|5|40|59816.80|0.03|0.08|A|F|1994-05-07|1994-06-17|1994-05-14|COLLECT COD|AIR|lyly unusual packages haggle express p| +56681|979806|17364|6|16|30172.16|0.01|0.02|R|F|1994-06-30|1994-06-19|1994-07-03|COLLECT COD|RAIL|ans. slyly express asymptotes are against| +56682|537423|24954|1|11|16064.40|0.01|0.06|A|F|1992-03-28|1992-04-12|1992-03-29|TAKE BACK RETURN|RAIL|lyly even p| +56682|460950|35969|2|12|22931.16|0.07|0.00|A|F|1992-02-04|1992-04-02|1992-02-24|DELIVER IN PERSON|TRUCK|und the carefully ironic theodolites.| +56682|174190|36694|3|11|13906.09|0.10|0.06|R|F|1992-03-30|1992-03-05|1992-04-15|TAKE BACK RETURN|RAIL|osits; closely enticing | +56682|607257|19770|4|10|11642.20|0.02|0.07|A|F|1992-05-12|1992-03-21|1992-05-18|DELIVER IN PERSON|AIR|s. slyly final deposits haggle furiously| +56682|161716|49226|5|35|62219.85|0.05|0.08|R|F|1992-03-26|1992-03-16|1992-03-27|NONE|AIR|s. blithely silent instructions ought to w| +56682|945266|20303|6|24|31469.28|0.00|0.06|R|F|1992-01-22|1992-02-29|1992-01-29|NONE|REG AIR|ly pending deposits are furiously accor| +56682|72960|35462|7|4|7731.84|0.04|0.00|A|F|1992-02-22|1992-04-13|1992-03-02|DELIVER IN PERSON|MAIL|nts. platelets haggle quickly. | +56683|226841|1850|1|10|17678.30|0.02|0.07|A|F|1995-04-25|1995-07-01|1995-05-09|COLLECT COD|MAIL|oxes eat quickly with t| +56683|507789|7790|2|33|59293.08|0.10|0.08|A|F|1995-05-08|1995-06-22|1995-05-18|DELIVER IN PERSON|REG AIR| even deposits sleep slyly: silent request| +56683|404005|16514|3|49|44540.02|0.10|0.07|N|O|1995-07-29|1995-06-03|1995-08-01|COLLECT COD|SHIP|nd the slyly f| +56683|109470|34475|4|20|29589.40|0.02|0.08|N|F|1995-06-15|1995-07-06|1995-06-26|COLLECT COD|RAIL|carefully final foxes poach alo| +56683|853338|40890|5|14|18078.06|0.09|0.00|R|F|1995-05-30|1995-05-31|1995-06-01|COLLECT COD|RAIL|posits. express pac| +56684|620228|32741|1|39|44779.41|0.04|0.05|N|O|1996-01-22|1996-01-24|1996-02-14|TAKE BACK RETURN|RAIL| deposits across the ironic, r| +56684|168174|30678|2|44|54655.48|0.08|0.00|N|O|1996-01-07|1996-01-21|1996-02-01|DELIVER IN PERSON|TRUCK|inal pinto beans wake b| +56684|492202|42203|3|35|41796.30|0.08|0.07|N|O|1996-02-27|1996-02-22|1996-03-07|COLLECT COD|REG AIR|s eat alongside of the pending, | +56684|430304|5321|4|38|46902.64|0.01|0.05|N|O|1996-02-19|1996-02-24|1996-03-19|NONE|REG AIR|c multipliers. fluffily r| +56685|582900|32901|1|24|47589.12|0.02|0.06|A|F|1992-04-08|1992-02-21|1992-04-12|DELIVER IN PERSON|AIR|t furiously above the ironic, regular depos| +56685|794839|7355|2|34|65749.20|0.09|0.04|R|F|1992-04-13|1992-03-29|1992-04-19|COLLECT COD|FOB|ly final deposits sleep thinly epitaphs. | +56685|850257|12775|3|45|54324.45|0.09|0.01|R|F|1992-01-11|1992-03-03|1992-02-05|NONE|MAIL| cajole. furiously reg| +56686|568160|30672|1|36|44213.04|0.06|0.04|N|O|1996-07-01|1996-05-19|1996-07-25|COLLECT COD|REG AIR|thely pending forges are quickly blithel| +56686|49758|49759|2|34|58063.50|0.09|0.03|N|O|1996-05-11|1996-05-28|1996-05-27|COLLECT COD|TRUCK|equests. instructio| +56686|279010|16526|3|28|27692.00|0.08|0.04|N|O|1996-08-10|1996-05-13|1996-09-08|TAKE BACK RETURN|RAIL|ly among the ex| +56686|313468|987|4|27|39999.15|0.08|0.02|N|O|1996-05-19|1996-05-22|1996-06-02|NONE|SHIP|ounts might are carefully express | +56686|454330|4331|5|31|39813.61|0.09|0.07|N|O|1996-06-18|1996-06-23|1996-07-03|DELIVER IN PERSON|MAIL|o beans doze qu| +56686|910901|35938|6|47|89857.42|0.08|0.04|N|O|1996-05-30|1996-06-29|1996-06-02|COLLECT COD|TRUCK|ans haggle furiously busily even pac| +56686|509018|9019|7|40|41079.60|0.02|0.05|N|O|1996-05-13|1996-07-01|1996-06-05|DELIVER IN PERSON|SHIP| against the regul| +56687|56127|6128|1|20|21662.40|0.10|0.07|R|F|1992-04-29|1992-05-15|1992-05-24|NONE|RAIL| asymptotes boost blithely alongside | +56712|881833|6868|1|21|38110.59|0.05|0.05|N|O|1997-12-12|1998-02-09|1998-01-03|COLLECT COD|RAIL| blithely closel| +56712|955172|42730|2|46|56447.98|0.07|0.06|N|O|1997-12-29|1998-01-04|1998-01-16|COLLECT COD|AIR|, express deposits. carefully ex| +56712|566819|4353|3|42|79203.18|0.05|0.01|N|O|1998-02-16|1998-01-07|1998-02-21|COLLECT COD|TRUCK|e above the platelets. furiou| +56712|522940|47961|4|48|94220.16|0.05|0.07|N|O|1998-01-07|1998-02-04|1998-01-08|NONE|AIR|mong the ironic warhorses | +56712|38028|38029|5|17|16422.34|0.09|0.06|N|O|1998-02-05|1998-01-03|1998-02-13|TAKE BACK RETURN|REG AIR|fully bold deposits.| +56713|717811|17812|1|14|25602.92|0.08|0.03|N|O|1996-07-16|1996-06-29|1996-08-13|DELIVER IN PERSON|TRUCK|grow slyly. quickly silent fox| +56713|246949|34462|2|39|73941.27|0.02|0.05|N|O|1996-07-29|1996-07-10|1996-08-20|COLLECT COD|RAIL|furiously express asymptotes against the| +56713|455250|30269|3|14|16873.22|0.04|0.06|N|O|1996-04-28|1996-06-14|1996-05-28|COLLECT COD|TRUCK| quickly. final, bold deposits | +56714|184342|21852|1|42|59906.28|0.06|0.06|R|F|1992-03-13|1992-03-29|1992-04-07|DELIVER IN PERSON|FOB| lose fluffily packages| +56714|221943|46952|2|18|33568.74|0.08|0.07|A|F|1992-04-29|1992-05-09|1992-05-27|DELIVER IN PERSON|MAIL| the carefully bold accounts. reques| +56714|180943|30944|3|15|30359.10|0.06|0.00|A|F|1992-04-26|1992-04-26|1992-05-08|TAKE BACK RETURN|RAIL| sleep carefully. carefully d| +56714|101406|13909|4|49|68962.60|0.00|0.02|R|F|1992-04-26|1992-04-08|1992-05-10|DELIVER IN PERSON|MAIL|t packages cajole furiously. fluffily| +56714|317238|42251|5|21|26359.62|0.07|0.08|R|F|1992-04-14|1992-05-09|1992-04-25|NONE|RAIL|s platelets accordin| +56715|49544|24545|1|49|73183.46|0.07|0.01|N|O|1997-05-11|1997-04-17|1997-06-06|NONE|TRUCK|ronic patte| +56716|775686|13232|1|21|36994.65|0.08|0.02|N|O|1997-05-17|1997-04-04|1997-06-11|DELIVER IN PERSON|REG AIR|ons wake fu| +56716|951580|14100|2|17|27736.18|0.09|0.06|N|O|1997-04-07|1997-05-03|1997-04-28|TAKE BACK RETURN|AIR|counts. furiously unusual accounts wil| +56716|195021|45022|3|13|14508.26|0.05|0.02|N|O|1997-02-18|1997-03-23|1997-03-10|NONE|SHIP|lyly silent deposits-- sometimes eve| +56717|326232|26233|1|20|25164.40|0.05|0.03|R|F|1993-10-30|1993-12-13|1993-11-11|NONE|FOB|al dinos wak| +56717|970110|45149|2|33|38942.31|0.07|0.05|R|F|1993-11-04|1993-12-12|1993-11-21|NONE|AIR|y even deposits. blith| +56718|924827|49864|1|36|66664.08|0.05|0.00|A|F|1992-11-12|1992-09-05|1992-11-13|DELIVER IN PERSON|TRUCK|slyly regular deposits.| +56718|556833|19345|2|34|64253.54|0.08|0.00|R|F|1992-09-07|1992-10-22|1992-09-16|COLLECT COD|RAIL|e furiously regular, un| +56719|980919|30920|1|5|9999.35|0.06|0.08|A|F|1992-11-16|1992-12-04|1992-12-09|COLLECT COD|TRUCK|s are slyly about th| +56719|292614|30130|2|6|9639.60|0.01|0.03|A|F|1992-09-24|1992-10-29|1992-10-17|NONE|MAIL|quests. even, even foxes | +56744|172731|10241|1|33|59523.09|0.10|0.07|N|O|1997-11-01|1997-09-13|1997-11-07|NONE|AIR|s. unusual pinto beans p| +56744|83979|46481|2|45|88333.65|0.03|0.03|N|O|1997-07-05|1997-10-01|1997-07-20|DELIVER IN PERSON|FOB| unusual depend| +56744|420205|32714|3|34|38256.12|0.05|0.06|N|O|1997-10-27|1997-08-09|1997-11-07|COLLECT COD|TRUCK|nusual, unusual foxes afte| +56744|383409|20931|4|35|52233.65|0.02|0.04|N|O|1997-09-17|1997-10-01|1997-09-24|DELIVER IN PERSON|SHIP| excuses. bold accounts are slyly across t| +56744|952539|27578|5|41|65251.09|0.10|0.00|N|O|1997-08-19|1997-09-15|1997-09-10|TAKE BACK RETURN|MAIL|unusual foxes after the requests nag bli| +56745|3800|41301|1|12|20445.60|0.09|0.04|N|O|1997-11-24|1997-10-12|1997-12-22|DELIVER IN PERSON|FOB|quickly bold i| +56745|864935|39970|2|17|32298.13|0.09|0.03|N|O|1997-12-28|1997-11-18|1998-01-10|NONE|FOB|posits sleep blithe| +56745|947251|34806|3|31|40244.51|0.02|0.05|N|O|1997-12-04|1997-11-07|1997-12-13|NONE|SHIP|uests haggle quickly. | +56745|440309|15326|4|33|41226.24|0.06|0.01|N|O|1997-10-01|1997-10-12|1997-10-16|TAKE BACK RETURN|REG AIR|onic pinto beans. carefully stealthy d| +56745|272776|47787|5|26|45467.76|0.06|0.08|N|O|1997-11-13|1997-11-04|1997-11-15|COLLECT COD|TRUCK|ests dazzle slow| +56745|529912|42423|6|7|13593.23|0.09|0.07|N|O|1997-12-21|1997-10-19|1998-01-03|NONE|TRUCK|bold instructions use instead of the quic| +56746|653349|28376|1|38|49487.78|0.06|0.03|N|O|1996-02-03|1996-02-08|1996-02-18|COLLECT COD|SHIP|deposits? ironic, sp| +56747|200629|38142|1|49|74950.89|0.00|0.08|A|F|1992-11-22|1992-10-15|1992-12-16|NONE|MAIL|longside of t| +56748|485920|10939|1|20|38118.00|0.02|0.03|N|O|1996-12-16|1997-01-13|1996-12-30|DELIVER IN PERSON|FOB|cial, final deposits haggle furiously | +56748|856722|6723|2|3|5036.04|0.10|0.00|N|O|1997-02-18|1997-01-22|1997-02-24|NONE|TRUCK| after the special, reg| +56749|864126|39161|1|46|50143.68|0.01|0.06|N|O|1995-11-06|1995-10-19|1995-11-11|TAKE BACK RETURN|MAIL|luffily even packages. boldl| +56749|351760|39282|2|17|30799.75|0.00|0.00|N|O|1995-09-04|1995-09-04|1995-09-08|NONE|TRUCK| haggle final deposits| +56749|18552|18553|3|24|35293.20|0.04|0.01|N|O|1995-08-29|1995-09-10|1995-09-09|DELIVER IN PERSON|SHIP| final, bold ideas sl| +56749|798983|24014|4|17|35393.15|0.00|0.00|N|O|1995-07-22|1995-08-29|1995-07-26|TAKE BACK RETURN|AIR|e. always p| +56749|498393|48394|5|23|32001.51|0.01|0.07|N|O|1995-11-04|1995-10-12|1995-11-21|NONE|REG AIR|t the silent, regular packa| +56749|480224|30225|6|3|3612.60|0.06|0.02|N|O|1995-09-20|1995-09-21|1995-10-19|DELIVER IN PERSON|SHIP|ironic instru| +56750|796641|46642|1|46|79930.06|0.01|0.03|A|F|1995-02-22|1995-01-31|1995-03-23|DELIVER IN PERSON|REG AIR|cajole blithely about the c| +56751|409322|9323|1|22|27088.60|0.09|0.06|A|F|1994-09-02|1994-07-09|1994-09-20|DELIVER IN PERSON|MAIL|ut the furiously fi| +56751|468919|31429|2|10|18878.90|0.00|0.08|A|F|1994-08-04|1994-07-11|1994-08-27|DELIVER IN PERSON|TRUCK|ajole furiously. slyly bo| +56751|118532|43537|3|13|20156.89|0.06|0.04|A|F|1994-10-01|1994-07-16|1994-10-21|NONE|RAIL|pains. regular,| +56751|161669|36676|4|37|64034.42|0.09|0.03|R|F|1994-09-29|1994-07-09|1994-10-25|NONE|RAIL|cies cajole carefull| +56751|159185|46695|5|47|58476.46|0.06|0.05|A|F|1994-07-07|1994-08-31|1994-07-20|DELIVER IN PERSON|REG AIR|ng the slyly regular p| +56776|688539|1053|1|6|9165.00|0.08|0.06|N|O|1998-05-09|1998-05-09|1998-05-26|DELIVER IN PERSON|AIR|uriously. carefully | +56776|262680|25186|2|47|77205.49|0.10|0.04|N|O|1998-04-25|1998-06-03|1998-05-01|NONE|SHIP|old, final requests after the p| +56776|848795|11312|3|38|66262.50|0.09|0.03|N|O|1998-04-28|1998-06-14|1998-05-12|DELIVER IN PERSON|REG AIR|lly stealthy requests. f| +56776|692086|42087|4|7|7546.35|0.04|0.03|N|O|1998-05-25|1998-05-15|1998-06-18|COLLECT COD|TRUCK|. asymptotes wake fluf| +56776|878067|15619|5|33|34485.66|0.00|0.02|N|O|1998-06-27|1998-05-18|1998-07-08|NONE|AIR|ag slyly. slyly special excuses | +56776|670915|45942|6|36|67891.68|0.06|0.01|N|O|1998-06-16|1998-05-06|1998-07-15|NONE|REG AIR|onic instructions. packages grow furiously| +56776|65760|40763|7|15|25886.40|0.00|0.04|N|O|1998-07-20|1998-06-04|1998-08-07|COLLECT COD|TRUCK|ackages solve slyly abou| +56777|219511|32016|1|27|38623.50|0.09|0.07|N|O|1996-12-24|1997-01-01|1997-01-14|NONE|FOB|sits integrate furiousl| +56778|589016|1528|1|12|13259.88|0.07|0.02|R|F|1993-03-22|1993-01-28|1993-04-18|COLLECT COD|REG AIR|ide of the carefully even packages pri| +56778|582295|44807|2|37|50958.99|0.10|0.08|R|F|1993-01-05|1992-12-24|1993-01-24|NONE|MAIL|lly furiously ironic depen| +56778|628542|41055|3|29|42644.79|0.03|0.08|A|F|1993-02-02|1992-12-26|1993-02-27|TAKE BACK RETURN|AIR|xpress reques| +56778|894215|44216|4|13|15719.21|0.07|0.05|R|F|1993-01-23|1993-01-30|1993-01-25|DELIVER IN PERSON|TRUCK|ar pinto beans. | +56778|61453|23955|5|36|50920.20|0.02|0.07|A|F|1993-01-18|1992-12-27|1993-01-30|NONE|SHIP|ly final ideas nag above the theodolites. r| +56778|837124|37125|6|22|23343.76|0.08|0.05|A|F|1992-12-27|1993-01-17|1992-12-30|DELIVER IN PERSON|SHIP|heodolites haggle according to the enticin| +56779|47276|34777|1|50|61163.50|0.05|0.02|N|O|1998-05-27|1998-07-18|1998-05-31|DELIVER IN PERSON|MAIL|yly special dep| +56779|552589|15101|2|37|60737.72|0.03|0.00|N|O|1998-09-14|1998-07-24|1998-10-07|COLLECT COD|MAIL| are atop the b| +56779|359841|47363|3|19|36115.77|0.05|0.04|N|O|1998-07-01|1998-08-12|1998-07-13|NONE|MAIL|y. bold asymp| +56779|833756|46273|4|16|27035.36|0.00|0.08|N|O|1998-09-14|1998-07-22|1998-09-30|DELIVER IN PERSON|TRUCK| daringly ironic dependencies. q| +56779|935499|35500|5|7|10741.15|0.01|0.07|N|O|1998-07-02|1998-08-16|1998-07-29|NONE|SHIP|arefully pending packages. special excus| +56779|925712|25713|6|25|43441.75|0.06|0.04|N|O|1998-06-15|1998-07-06|1998-06-19|DELIVER IN PERSON|SHIP|nst the special pinto beans. f| +56779|431912|31913|7|29|53472.81|0.10|0.08|N|O|1998-09-08|1998-07-26|1998-09-16|NONE|SHIP|ithely stealth| +56780|143725|43726|1|42|74286.24|0.05|0.05|N|O|1996-06-17|1996-07-30|1996-07-11|NONE|REG AIR|ly alongside of the even, pend| +56780|575994|25995|2|48|99358.56|0.10|0.05|N|O|1996-06-06|1996-07-22|1996-06-14|DELIVER IN PERSON|FOB|al, close ideas cajole. b| +56780|720141|7684|3|47|54572.17|0.02|0.02|N|O|1996-07-11|1996-07-07|1996-07-30|DELIVER IN PERSON|AIR| pinto beans | +56780|397539|22554|4|23|37639.96|0.03|0.05|N|O|1996-06-25|1996-08-03|1996-07-20|DELIVER IN PERSON|MAIL|ng requests. regula| +56780|428969|41478|5|9|17081.46|0.05|0.04|N|O|1996-07-01|1996-07-05|1996-07-31|DELIVER IN PERSON|MAIL|egular requests. blithely final ideas| +56780|672102|34616|6|4|4296.28|0.10|0.01|N|O|1996-05-30|1996-08-05|1996-06-09|TAKE BACK RETURN|TRUCK|lar packages. | +56781|160169|35176|1|11|13520.76|0.02|0.06|N|O|1997-11-22|1998-01-03|1997-12-20|COLLECT COD|RAIL| deposits. slyly even theodolit| +56781|950732|733|2|18|32088.42|0.00|0.08|N|O|1997-12-05|1997-12-17|1998-01-01|NONE|SHIP| carefully furiously final dolphins;| +56781|937270|37271|3|10|13072.30|0.03|0.06|N|O|1997-12-31|1998-01-09|1998-01-03|COLLECT COD|TRUCK|he furiously even re| +56781|687281|12308|4|16|20292.00|0.03|0.08|N|O|1998-01-03|1997-12-30|1998-01-15|NONE|MAIL|yly after the ironic Tiresias. unusua| +56781|125018|37521|5|34|35462.34|0.09|0.05|N|O|1998-02-27|1998-01-02|1998-03-17|COLLECT COD|AIR|into beans. fluffily s| +56781|170596|33100|6|48|79996.32|0.03|0.08|N|O|1998-02-17|1998-01-03|1998-02-23|COLLECT COD|MAIL|s accounts are blithely.| +56782|676865|26866|1|48|88407.84|0.03|0.01|N|O|1997-08-27|1997-11-14|1997-09-25|COLLECT COD|AIR|gular excuses sleep | +56782|64164|26666|2|32|36101.12|0.04|0.00|N|O|1997-09-27|1997-09-24|1997-10-17|COLLECT COD|MAIL|hely final requests. careful| +56782|402386|2387|3|44|56687.84|0.01|0.03|N|O|1997-09-01|1997-11-10|1997-09-02|TAKE BACK RETURN|REG AIR|lly alongside of the carefully unusual| +56782|896879|46880|4|43|80660.69|0.04|0.00|N|O|1997-11-07|1997-10-17|1997-11-23|NONE|AIR|counts promise blithely slyly regular packa| +56782|833991|46508|5|33|63523.35|0.05|0.01|N|O|1997-12-18|1997-10-25|1998-01-09|COLLECT COD|TRUCK| do use slyly regular pinto beans: final | +56782|876350|26351|6|42|55705.02|0.10|0.00|N|O|1997-09-12|1997-10-10|1997-09-28|DELIVER IN PERSON|TRUCK|lets along the slyly regular as| +56782|805865|30898|7|42|74374.44|0.10|0.02|N|O|1997-12-09|1997-10-07|1997-12-28|TAKE BACK RETURN|MAIL|. bravely silent requests are regular ac| +56783|157824|7825|1|45|84681.90|0.01|0.08|R|F|1994-04-28|1994-04-12|1994-05-28|DELIVER IN PERSON|SHIP|ests sleep pending dependencies| +56783|537903|37904|2|37|71812.56|0.09|0.06|A|F|1994-04-19|1994-03-31|1994-05-03|TAKE BACK RETURN|TRUCK|ry to are slyly against the carefully regul| +56808|599981|12493|1|29|60347.84|0.10|0.00|N|O|1997-06-12|1997-08-12|1997-06-15|DELIVER IN PERSON|REG AIR|tes after the ironically fina| +56808|878758|28759|2|46|79888.66|0.06|0.02|N|O|1997-09-05|1997-07-23|1997-09-30|COLLECT COD|RAIL|against the carefully | +56808|273641|48652|3|9|14531.67|0.05|0.04|N|O|1997-08-16|1997-07-28|1997-08-31|TAKE BACK RETURN|MAIL| ruthlessly even reques| +56808|72825|10329|4|2|3595.64|0.05|0.00|N|O|1997-08-13|1997-07-07|1997-08-27|NONE|FOB|after the quickly even | +56809|397274|9782|1|5|6856.30|0.10|0.02|N|O|1997-12-04|1997-10-30|1997-12-31|DELIVER IN PERSON|REG AIR|gle. fluffily close pinto | +56809|983059|20617|2|33|37686.33|0.08|0.05|N|O|1997-12-19|1997-11-10|1998-01-14|DELIVER IN PERSON|RAIL|ckly ironic packa| +56809|263867|1383|3|6|10985.10|0.04|0.05|N|O|1997-11-28|1997-11-07|1997-12-15|TAKE BACK RETURN|FOB|slyly pending theodolites maintain quic| +56809|808455|8456|4|12|16360.92|0.00|0.01|N|O|1997-12-18|1997-10-22|1998-01-09|NONE|FOB| foxes. slyly ironic accounts n| +56809|697027|47028|5|22|22527.78|0.02|0.06|N|O|1997-11-15|1997-11-24|1997-12-11|DELIVER IN PERSON|TRUCK|ng the final, final foxes. blithely e| +56809|931709|6746|6|41|71367.06|0.00|0.04|N|O|1997-12-24|1997-10-24|1998-01-03|NONE|FOB|al accounts sleep s| +56810|146237|46238|1|17|21814.91|0.05|0.01|N|O|1997-11-02|1997-10-21|1997-11-28|TAKE BACK RETURN|RAIL|ending deposi| +56810|803036|3037|2|13|12206.87|0.07|0.02|N|O|1997-11-27|1997-11-10|1997-11-28|COLLECT COD|TRUCK|nag ruthlessly furiously iro| +56810|619925|32438|3|41|75640.49|0.05|0.00|N|O|1997-09-19|1997-10-01|1997-10-19|DELIVER IN PERSON|MAIL|lites use quickly patte| +56810|68152|30654|4|22|24643.30|0.09|0.08|N|O|1997-12-06|1997-11-05|1997-12-13|TAKE BACK RETURN|AIR|haggle blithely about the platelets. caref| +56810|418710|31219|5|29|47232.01|0.03|0.01|N|O|1997-09-02|1997-11-09|1997-09-30|NONE|RAIL|refully special packages cajole flu| +56810|244516|32029|6|29|42354.50|0.05|0.00|N|O|1997-12-13|1997-10-04|1998-01-12|NONE|TRUCK|r the unusual foxes? express, p| +56810|580151|42663|7|37|45551.81|0.08|0.08|N|O|1997-11-25|1997-10-09|1997-12-24|DELIVER IN PERSON|TRUCK|re express, | +56811|587196|49708|1|33|42344.61|0.01|0.03|N|O|1998-03-05|1998-02-05|1998-03-08|DELIVER IN PERSON|MAIL|ies. platelets sleep | +56811|989894|14933|2|2|3967.70|0.10|0.00|N|O|1998-01-30|1998-01-13|1998-02-10|DELIVER IN PERSON|AIR|beans. fluffily unusual Tiresias haggle| +56812|911490|11491|1|9|13513.05|0.05|0.02|A|F|1994-08-16|1994-08-13|1994-09-13|NONE|RAIL|xes wake blithely even| +56812|407199|32216|2|35|38715.95|0.10|0.04|R|F|1994-06-26|1994-08-12|1994-07-14|NONE|RAIL|press packages s| +56812|790623|28169|3|1|1713.59|0.02|0.04|A|F|1994-06-01|1994-07-24|1994-06-18|TAKE BACK RETURN|MAIL|ake. carefully| +56812|989128|39129|4|11|13387.88|0.03|0.08|R|F|1994-08-11|1994-08-01|1994-09-08|COLLECT COD|RAIL| final courts boost a| +56812|266824|41835|5|13|23280.53|0.00|0.06|R|F|1994-07-05|1994-08-12|1994-07-24|NONE|SHIP|ress Tiresia| +56812|501932|26953|6|31|59951.21|0.06|0.00|A|F|1994-07-12|1994-06-28|1994-08-01|NONE|AIR|ounts are furiously ca| +56812|962078|49636|7|13|14820.39|0.01|0.00|R|F|1994-09-14|1994-07-22|1994-10-06|COLLECT COD|SHIP|sts nod quickly about the bold d| +56813|635749|48262|1|30|50541.30|0.09|0.03|N|O|1997-05-29|1997-04-07|1997-06-20|TAKE BACK RETURN|FOB|cajole special, unusual acco| +56814|244442|31955|1|34|47138.62|0.03|0.00|N|O|1997-02-10|1997-01-07|1997-03-08|NONE|RAIL|s. asymptotes sleep furiously bo| +56815|692163|17190|1|23|26567.99|0.08|0.02|N|O|1996-08-10|1996-09-27|1996-08-12|COLLECT COD|MAIL|oldly ironic ideas among the q| +56815|170162|7672|2|36|44357.76|0.05|0.07|N|O|1996-09-04|1996-09-10|1996-09-25|TAKE BACK RETURN|FOB|es believe carefully regul| +56815|902049|39604|3|36|37836.00|0.03|0.05|N|O|1996-08-31|1996-10-18|1996-09-13|COLLECT COD|SHIP|ffily regular| +56815|726428|38943|4|10|14543.90|0.00|0.07|N|O|1996-10-05|1996-10-12|1996-10-07|NONE|REG AIR|al accounts integrate. | +56840|512151|24662|1|25|29078.25|0.07|0.08|N|O|1997-06-05|1997-05-28|1997-06-09|DELIVER IN PERSON|MAIL|ackages wake final asympto| +56841|576802|1825|1|5|9393.90|0.07|0.02|N|O|1996-04-17|1996-03-07|1996-05-06|COLLECT COD|MAIL|ding platelets. furiously| +56841|310091|10092|2|4|4404.32|0.08|0.03|N|O|1996-02-27|1996-03-25|1996-03-27|COLLECT COD|REG AIR| asymptotes nag carefully around the qu| +56841|690542|40543|3|26|39845.26|0.10|0.04|N|O|1996-04-14|1996-03-01|1996-05-12|DELIVER IN PERSON|MAIL|y ironic ideas! | +56841|934193|21748|4|30|36814.50|0.10|0.05|N|O|1996-04-22|1996-02-16|1996-05-02|COLLECT COD|FOB|slyly special requests. slyly bold package| +56841|979328|16886|5|15|21109.20|0.05|0.06|N|O|1996-03-30|1996-01-25|1996-04-23|COLLECT COD|TRUCK|rnes. quickl| +56841|559451|21963|6|48|72500.64|0.02|0.01|N|O|1996-02-03|1996-02-09|1996-02-22|COLLECT COD|AIR| fluffily ironic accounts nag blithely | +56841|679044|16584|7|5|5115.05|0.09|0.06|N|O|1996-02-25|1996-02-07|1996-02-26|TAKE BACK RETURN|TRUCK|are slyly regul| +56842|680710|43224|1|27|45648.36|0.09|0.06|N|O|1997-12-04|1998-01-11|1997-12-10|TAKE BACK RETURN|FOB|ross the furiously u| +56842|676446|1473|2|9|12801.69|0.07|0.05|N|O|1997-10-31|1997-12-19|1997-11-03|TAKE BACK RETURN|SHIP| beans use quickl| +56842|24564|12065|3|20|29771.20|0.05|0.08|N|O|1997-11-14|1997-12-02|1997-12-01|TAKE BACK RETURN|RAIL|thely carefully re| +56843|148620|23625|1|33|55064.46|0.07|0.02|R|F|1992-10-06|1992-09-03|1992-10-21|TAKE BACK RETURN|SHIP| special tithes. blithely final pa| +56843|842788|30337|2|43|74421.82|0.07|0.07|R|F|1992-10-12|1992-10-07|1992-11-07|DELIVER IN PERSON|MAIL|furiously final packages cajole furiously| +56843|733292|20835|3|32|42408.32|0.07|0.06|R|F|1992-09-01|1992-09-08|1992-09-08|NONE|SHIP| quickly final ideas nag furiously pen| +56843|430134|5151|4|35|37243.85|0.04|0.04|A|F|1992-09-24|1992-10-07|1992-09-26|TAKE BACK RETURN|AIR|ckages wake furiously f| +56843|245531|33044|5|30|44295.60|0.00|0.05|A|F|1992-07-27|1992-10-19|1992-08-20|COLLECT COD|SHIP|express deposits are carefully. fluff| +56843|627721|27722|6|10|16486.90|0.05|0.02|R|F|1992-09-08|1992-08-23|1992-09-20|COLLECT COD|REG AIR|osits wake a| +56844|126017|13524|1|41|42763.41|0.07|0.07|A|F|1994-07-17|1994-08-02|1994-08-14|NONE|MAIL|arefully unusual| +56844|954581|17101|2|3|4906.62|0.05|0.01|R|F|1994-09-05|1994-07-04|1994-09-29|COLLECT COD|TRUCK|hy packages are on the slyly specia| +56844|634961|47474|3|26|49294.18|0.04|0.05|R|F|1994-06-23|1994-07-10|1994-06-27|NONE|MAIL|e pending asymptotes! theodolites| +56844|781341|31342|4|45|64003.95|0.08|0.04|A|F|1994-05-24|1994-06-19|1994-05-31|DELIVER IN PERSON|REG AIR|e unusual instructions. enticing, sile| +56844|994030|6550|5|41|46083.59|0.10|0.03|A|F|1994-06-29|1994-06-22|1994-07-03|COLLECT COD|MAIL|o the regular dinos. b| +56844|652008|39548|6|2|1919.94|0.10|0.00|A|F|1994-08-22|1994-07-20|1994-08-23|COLLECT COD|REG AIR|cial, special pin| +56844|287204|49710|7|23|27397.37|0.08|0.04|A|F|1994-09-12|1994-08-02|1994-10-01|COLLECT COD|FOB|packages shall haggle. ironic epitap| +56845|36381|11382|1|14|18443.32|0.08|0.04|N|O|1995-07-13|1995-08-05|1995-07-30|DELIVER IN PERSON|AIR|ironic fox| +56845|452857|15367|2|24|43435.92|0.09|0.07|N|O|1995-08-11|1995-07-27|1995-09-05|NONE|MAIL|equests about the carefu| +56845|157927|32934|3|40|79396.80|0.05|0.04|N|O|1995-07-24|1995-08-15|1995-08-07|NONE|AIR|ns. unusual| +56845|264964|39975|4|35|67513.25|0.03|0.05|N|O|1995-07-23|1995-07-02|1995-08-04|DELIVER IN PERSON|RAIL|aggle finally among the silent,| +56846|385991|11006|1|27|56078.46|0.02|0.05|N|O|1997-04-09|1997-03-14|1997-05-09|TAKE BACK RETURN|AIR|. ironic instructions cajole b| +56847|579077|41589|1|26|30057.30|0.04|0.01|N|O|1998-08-07|1998-07-07|1998-08-25|COLLECT COD|RAIL|ns mold furiously quickly | +56847|542304|42305|2|43|57890.04|0.09|0.06|N|O|1998-07-05|1998-06-08|1998-07-12|NONE|SHIP|, ironic acco| +56847|494049|19068|3|47|49021.94|0.00|0.02|N|O|1998-05-10|1998-06-12|1998-05-19|DELIVER IN PERSON|REG AIR| slyly express packages. pending fox| +56847|468988|6516|4|43|84149.28|0.08|0.05|N|O|1998-09-01|1998-06-17|1998-09-13|COLLECT COD|MAIL|nts are closely fluffily final deposi| +56847|264931|39942|5|43|81524.56|0.00|0.01|N|O|1998-07-12|1998-07-30|1998-07-19|NONE|FOB|y? pinto beans haggle carefully. accou| +56847|685338|10365|6|46|60871.80|0.10|0.07|N|O|1998-06-12|1998-06-24|1998-06-29|COLLECT COD|REG AIR|ccording to the depos| +56847|471175|21176|7|2|2292.30|0.01|0.00|N|O|1998-07-23|1998-06-16|1998-08-19|NONE|FOB|kages sleep furiously. blithely silent fo| +56872|30193|42694|1|38|42681.22|0.07|0.02|A|F|1994-03-12|1994-03-25|1994-03-22|NONE|MAIL|alongside of the unusual accoun| +56872|440449|15466|2|5|6947.10|0.00|0.03|A|F|1994-05-19|1994-03-05|1994-06-10|TAKE BACK RETURN|MAIL|y regular deposits boost. special fox| +56873|671724|34238|1|5|8478.45|0.10|0.00|A|F|1994-10-22|1994-09-10|1994-11-09|DELIVER IN PERSON|MAIL| foxes detect carefully furiously r| +56873|656524|6525|2|20|29609.80|0.08|0.03|R|F|1994-08-29|1994-10-04|1994-09-23|TAKE BACK RETURN|AIR| furiously ironic asymptotes. daringly dar| +56873|192444|29954|3|12|18437.28|0.05|0.02|R|F|1994-09-30|1994-09-21|1994-10-29|TAKE BACK RETURN|REG AIR|regular platelets pr| +56873|399969|12477|4|4|8275.80|0.00|0.02|R|F|1994-10-26|1994-09-08|1994-11-09|DELIVER IN PERSON|TRUCK|ecial platelets. even | +56873|277780|15296|5|41|72068.57|0.05|0.08|A|F|1994-11-15|1994-09-10|1994-12-14|COLLECT COD|SHIP|riously. careful| +56873|635856|10881|6|21|37628.22|0.06|0.00|A|F|1994-09-02|1994-09-21|1994-09-05|TAKE BACK RETURN|MAIL|equests cajole| +56873|830393|30394|7|15|19850.25|0.07|0.03|R|F|1994-08-07|1994-11-02|1994-08-23|NONE|FOB|ly ironic requests use carefully| +56874|403028|15537|1|20|18620.00|0.10|0.04|A|F|1992-11-16|1992-12-30|1992-11-28|NONE|AIR|ts. accoun| +56874|679870|42384|2|24|44396.16|0.01|0.04|R|F|1992-12-02|1992-12-15|1992-12-08|COLLECT COD|TRUCK| beans haggle| +56874|573125|35637|3|26|31150.60|0.09|0.00|A|F|1993-03-05|1993-01-19|1993-03-06|DELIVER IN PERSON|REG AIR|s packages are carefully pendin| +56874|510348|10349|4|4|5433.28|0.03|0.05|R|F|1992-11-12|1993-01-28|1992-12-01|COLLECT COD|AIR|quickly alongsid| +56874|408676|21185|5|20|31693.00|0.09|0.08|R|F|1993-03-01|1993-01-31|1993-03-10|TAKE BACK RETURN|RAIL|ke across the ironic p| +56875|517078|42099|1|2|2190.10|0.10|0.03|N|O|1996-03-11|1996-03-05|1996-03-27|TAKE BACK RETURN|REG AIR| the regular, even requests. blithely re| +56875|527041|39552|2|7|7476.14|0.00|0.05|N|O|1996-03-30|1996-02-10|1996-04-09|DELIVER IN PERSON|REG AIR| fluffily | +56876|932367|32368|1|10|13993.20|0.07|0.06|N|O|1997-09-13|1997-08-13|1997-09-19|TAKE BACK RETURN|FOB|lithely pending ideas use fluffily specia| +56876|283971|46477|2|11|21504.56|0.04|0.06|N|O|1997-08-25|1997-08-16|1997-09-03|COLLECT COD|REG AIR|ould have to h| +56876|698228|35768|3|26|31880.94|0.05|0.04|N|O|1997-08-05|1997-09-11|1997-08-21|DELIVER IN PERSON|RAIL|ideas boost fluf| +56876|114366|14367|4|29|40030.44|0.06|0.02|N|O|1997-09-26|1997-09-08|1997-10-15|NONE|TRUCK|quests wake furiously furiously | +56876|141350|41351|5|21|29218.35|0.07|0.06|N|O|1997-07-31|1997-09-02|1997-08-22|TAKE BACK RETURN|FOB|s use furious| +56877|837298|37299|1|19|23469.75|0.10|0.00|N|O|1996-09-28|1996-10-15|1996-10-27|DELIVER IN PERSON|MAIL|fluffily f| +56877|455773|5774|2|36|62235.00|0.02|0.05|N|O|1996-12-24|1996-10-10|1997-01-02|COLLECT COD|REG AIR|ronic ideas. furiously pending escapa| +56878|126044|26045|1|47|50291.88|0.02|0.03|R|F|1992-06-28|1992-08-20|1992-07-08|NONE|RAIL|ongside of the packages? furi| +56879|837621|37622|1|42|65460.36|0.02|0.04|N|O|1997-08-03|1997-07-14|1997-08-31|DELIVER IN PERSON|RAIL|riously pending warthogs. quick theodolites| +56879|884925|22477|2|43|82124.84|0.07|0.00|N|O|1997-07-01|1997-06-25|1997-07-18|TAKE BACK RETURN|REG AIR|uffily regular dependencies serve al| +56879|932728|20283|3|15|26410.20|0.08|0.03|N|O|1997-05-28|1997-05-25|1997-06-11|DELIVER IN PERSON|AIR|es. slyly final foxes dazzle. special, bus| +56879|346113|21126|4|28|32454.80|0.06|0.07|N|O|1997-06-09|1997-05-28|1997-07-01|NONE|AIR|kages. ironic, unusual dependenci| +56879|106630|6631|5|36|58918.68|0.04|0.04|N|O|1997-06-29|1997-06-27|1997-07-28|DELIVER IN PERSON|RAIL| boost fluffily sp| +56904|976312|38832|1|28|38871.56|0.05|0.03|A|F|1992-07-06|1992-06-02|1992-07-20|TAKE BACK RETURN|RAIL| regular asymptotes b| +56904|868127|18128|2|7|7665.56|0.08|0.02|A|F|1992-04-13|1992-06-03|1992-04-24|COLLECT COD|SHIP|eans cajole quickly silent in| +56905|510694|10695|1|2|3409.34|0.08|0.06|N|O|1996-08-27|1996-08-08|1996-09-01|TAKE BACK RETURN|FOB|, even notornis detect foxes. s| +56906|996793|46794|1|29|54802.75|0.02|0.04|A|F|1994-07-26|1994-06-20|1994-08-01|COLLECT COD|AIR|sly furiously even dependencies. eve| +56906|98692|48693|2|2|3381.38|0.04|0.04|R|F|1994-06-24|1994-08-02|1994-07-16|COLLECT COD|SHIP|. quickly | +56906|706230|43773|3|5|6181.00|0.00|0.04|R|F|1994-05-24|1994-07-28|1994-06-09|TAKE BACK RETURN|MAIL| bold pinto beans boost brave fox| +56906|605693|5694|4|28|44762.48|0.09|0.05|R|F|1994-06-06|1994-06-17|1994-07-03|DELIVER IN PERSON|MAIL|ts. carefully | +56906|871775|34293|5|27|47161.71|0.06|0.04|A|F|1994-06-06|1994-06-17|1994-06-25|DELIVER IN PERSON|REG AIR| the furiously ironic realm| +56906|915762|3317|6|45|79997.40|0.10|0.05|R|F|1994-08-23|1994-08-03|1994-08-25|NONE|REG AIR|dencies boost furiously across the caref| +56907|94840|7342|1|42|77063.28|0.06|0.04|N|O|1996-10-22|1996-09-12|1996-11-20|DELIVER IN PERSON|MAIL|lly regular packages.| +56907|975003|25004|2|4|4311.84|0.06|0.06|N|O|1996-10-18|1996-08-21|1996-11-01|TAKE BACK RETURN|AIR| furiously| +56907|872211|22212|3|41|48509.97|0.03|0.02|N|O|1996-08-28|1996-09-02|1996-09-22|COLLECT COD|SHIP|nstructions. blith| +56907|233958|8967|4|40|75677.60|0.07|0.01|N|O|1996-08-28|1996-09-10|1996-09-02|TAKE BACK RETURN|TRUCK|ly enticing req| +56907|118535|31038|5|23|35731.19|0.09|0.04|N|O|1996-07-23|1996-08-15|1996-08-05|COLLECT COD|RAIL|y according to the bold accounts. qu| +56907|207860|7861|6|48|84856.80|0.07|0.05|N|O|1996-09-02|1996-08-23|1996-09-13|TAKE BACK RETURN|REG AIR|ronic accounts. bold accounts slee| +56907|495211|32739|7|23|27742.37|0.06|0.07|N|O|1996-10-19|1996-09-16|1996-11-07|TAKE BACK RETURN|RAIL|ing packages are across the foxes. furi| +56908|130|131|1|1|1030.13|0.04|0.01|N|O|1997-01-11|1996-12-30|1997-01-29|TAKE BACK RETURN|REG AIR|ptotes cajole slyly regular f| +56908|181358|6365|2|43|61892.05|0.09|0.02|N|O|1997-03-13|1997-01-10|1997-03-31|NONE|AIR|ly bold din| +56908|80774|5777|3|9|15792.93|0.10|0.02|N|O|1996-12-16|1997-02-05|1996-12-29|DELIVER IN PERSON|REG AIR|ound the carefully bold pinto bean| +56908|559797|9798|4|39|72414.03|0.04|0.03|N|O|1997-01-12|1997-01-15|1997-01-15|NONE|TRUCK|ipliers. even, regular excuses poa| +56908|506120|43651|5|35|39413.50|0.08|0.07|N|O|1997-03-25|1997-01-10|1997-04-16|NONE|RAIL|es are across | +56908|351645|14153|6|46|78044.98|0.07|0.06|N|O|1997-01-22|1997-02-09|1997-02-09|NONE|TRUCK| blithely regular packages. close, even | +56908|85455|22959|7|38|54737.10|0.04|0.06|N|O|1996-12-13|1997-01-24|1996-12-22|COLLECT COD|REG AIR|yly pending instructions. ironic hockey pl| +56909|228387|40892|1|22|28938.14|0.07|0.08|R|F|1993-11-26|1993-11-30|1993-12-10|NONE|SHIP|furiously carefully daring deposits. c| +56909|495021|20040|2|19|19304.00|0.10|0.08|R|F|1993-11-08|1993-12-14|1993-11-25|TAKE BACK RETURN|REG AIR|te furiously blithely regular deposits. pen| +56909|814939|39972|3|12|22246.68|0.05|0.07|R|F|1993-12-20|1993-12-27|1993-12-27|TAKE BACK RETURN|AIR|r the fluffily pending warhorses.| +56909|669264|31778|4|3|3699.69|0.00|0.01|A|F|1993-11-08|1993-11-07|1993-12-06|DELIVER IN PERSON|SHIP| brave instructions breach under | +56909|315536|40549|5|17|26375.84|0.10|0.00|R|F|1993-11-29|1993-12-03|1993-12-28|DELIVER IN PERSON|AIR| accounts affix ironic court| +56909|211807|49320|6|4|6875.16|0.02|0.08|A|F|1993-10-22|1993-11-15|1993-10-25|NONE|TRUCK|ly regular dolphins | +56910|904075|41630|1|13|14027.39|0.09|0.01|N|O|1997-08-11|1997-08-26|1997-08-18|COLLECT COD|SHIP|e the express, ironic instructions b| +56910|773458|23459|2|7|10719.94|0.05|0.06|N|O|1997-10-18|1997-09-19|1997-11-06|TAKE BACK RETURN|FOB|n deposits use quickly depos| +56910|508187|45718|3|10|11951.60|0.05|0.03|N|O|1997-10-26|1997-10-07|1997-11-18|TAKE BACK RETURN|REG AIR|ly among t| +56910|85181|22685|4|41|47813.38|0.04|0.01|N|O|1997-11-09|1997-09-28|1997-11-12|TAKE BACK RETURN|TRUCK|sly above the furiously ironic pa| +56911|273315|23316|1|37|47667.10|0.07|0.06|N|O|1997-10-29|1997-12-04|1997-11-10|TAKE BACK RETURN|TRUCK|. foxes haggle. regular, regular deposits n| +56911|603617|41154|2|13|19767.54|0.02|0.05|N|O|1998-01-02|1997-11-21|1998-01-03|DELIVER IN PERSON|FOB|ously even pa| +56911|980921|5960|3|3|6005.64|0.05|0.08|N|O|1997-12-14|1997-12-23|1997-12-22|TAKE BACK RETURN|REG AIR|ter the pending s| +56911|329375|41882|4|4|5617.44|0.08|0.03|N|O|1997-12-04|1997-12-31|1997-12-22|COLLECT COD|REG AIR|ully bold deposits. slyly even | +56911|789556|39557|5|3|4936.56|0.05|0.05|N|O|1997-12-11|1997-12-10|1998-01-08|TAKE BACK RETURN|MAIL|sts sleep acco| +56936|639253|14278|1|20|23844.40|0.08|0.08|N|O|1997-08-04|1997-08-21|1997-08-28|COLLECT COD|REG AIR|ic instructions im| +56936|924743|37262|2|32|56566.40|0.04|0.06|N|O|1997-09-23|1997-09-03|1997-10-04|DELIVER IN PERSON|FOB|ole furiously about the quick| +56936|141294|28801|3|41|54746.89|0.03|0.01|N|O|1997-06-25|1997-08-04|1997-07-11|COLLECT COD|RAIL| regular deposits after t| +56936|711554|49097|4|23|36006.96|0.08|0.00|N|O|1997-08-29|1997-08-05|1997-09-13|COLLECT COD|SHIP| beans are quickly about the blit| +56936|75424|37926|5|14|19591.88|0.05|0.04|N|O|1997-10-01|1997-08-06|1997-10-26|NONE|REG AIR|sleep caref| +56936|635942|35943|6|21|39436.11|0.08|0.01|N|O|1997-07-26|1997-08-09|1997-08-12|DELIVER IN PERSON|SHIP|ccounts serve a| +56937|6790|19291|1|22|37329.38|0.09|0.01|R|F|1993-01-16|1992-11-03|1993-01-31|NONE|TRUCK|ans are express Tiresias. quick| +56937|115273|2780|2|13|16747.51|0.07|0.05|A|F|1993-01-18|1992-12-10|1993-02-10|COLLECT COD|FOB|al instructions boos| +56937|389004|14019|3|40|43719.60|0.00|0.08|R|F|1992-11-19|1992-10-29|1992-12-08|COLLECT COD|RAIL|. regular theodolites detect | +56937|974234|49273|4|36|47094.84|0.05|0.08|R|F|1992-12-22|1992-11-24|1992-12-26|COLLECT COD|MAIL|ithely ironic pinto beans c| +56937|949059|36614|5|32|35456.32|0.10|0.00|A|F|1992-10-22|1992-11-09|1992-11-01|COLLECT COD|TRUCK|the furiou| +56937|828966|16515|6|15|28423.80|0.08|0.07|A|F|1992-11-01|1992-12-15|1992-11-17|NONE|FOB|fully ironic notornis wake. car| +56938|433224|8241|1|45|52074.00|0.07|0.00|A|F|1992-12-30|1992-10-12|1993-01-07|COLLECT COD|FOB|s about the stealthily| +56939|449227|49228|1|33|38814.60|0.06|0.02|R|F|1992-06-08|1992-06-27|1992-06-23|TAKE BACK RETURN|RAIL| slyly ironic asymptotes boost slyly| +56939|150572|573|2|9|14603.13|0.00|0.01|A|F|1992-07-11|1992-06-23|1992-07-22|NONE|RAIL| accounts use carefully. d| +56939|657995|20509|3|34|66400.64|0.00|0.08|R|F|1992-05-05|1992-06-23|1992-05-30|NONE|AIR|efully pending accounts | +56939|919811|32330|4|2|3661.54|0.02|0.02|R|F|1992-06-12|1992-06-28|1992-07-12|COLLECT COD|MAIL|es detect furiously car| +56939|252381|39897|5|45|60001.65|0.02|0.03|R|F|1992-05-29|1992-06-24|1992-06-20|TAKE BACK RETURN|SHIP|. blithely regular frays cajole unusual de| +56940|720393|7936|1|38|53707.68|0.05|0.03|N|O|1997-10-18|1997-11-09|1997-11-06|NONE|AIR|al, bold accounts along the ironically clo| +56940|638476|13501|2|7|9901.08|0.00|0.01|N|O|1997-09-19|1997-10-31|1997-09-23|NONE|MAIL| waters wake ex| +56940|862532|84|3|29|43340.21|0.07|0.05|N|O|1997-09-04|1997-11-01|1997-09-07|COLLECT COD|MAIL|xes along the carefully quiet war| +56940|572883|35395|4|40|78234.40|0.04|0.03|N|O|1997-10-25|1997-09-17|1997-10-26|NONE|FOB|, regular deposits sle| +56941|379815|4830|1|41|77686.80|0.08|0.06|N|O|1998-05-16|1998-04-08|1998-05-26|COLLECT COD|TRUCK|foxes wake quickl| +56941|542328|42329|2|13|17813.90|0.03|0.04|N|O|1998-03-23|1998-03-27|1998-04-03|NONE|SHIP| accounts wake ruthlessly ironic reques| +56941|902820|15339|3|22|40101.16|0.00|0.01|N|O|1998-03-07|1998-03-18|1998-03-22|NONE|RAIL|sts cajole| +56941|687662|176|4|31|51138.53|0.09|0.00|N|O|1998-03-29|1998-03-29|1998-04-22|NONE|RAIL|ial deposits haggle ca| +56942|268495|43506|1|20|29269.60|0.06|0.03|N|O|1997-02-15|1997-01-06|1997-03-12|DELIVER IN PERSON|TRUCK|gular ideas. furiously regular instru| +56943|991751|41752|1|27|49753.17|0.08|0.01|R|F|1995-02-01|1994-12-03|1995-02-21|DELIVER IN PERSON|FOB|. blithely pending r| +56943|357857|32872|2|29|55530.36|0.04|0.05|R|F|1995-02-16|1994-12-01|1995-03-03|TAKE BACK RETURN|AIR| according | +56943|493642|43643|3|49|80145.38|0.07|0.05|A|F|1994-11-23|1994-12-03|1994-12-17|NONE|MAIL|pecial depo| +56943|641067|3580|4|19|19152.57|0.05|0.07|R|F|1995-01-30|1994-12-08|1995-02-22|DELIVER IN PERSON|TRUCK|counts wake blithely. pen| +56943|410110|35127|5|42|42843.78|0.02|0.06|R|F|1995-01-14|1994-11-24|1995-01-16|COLLECT COD|SHIP|ts wake along t| +56968|573093|23094|1|24|27985.68|0.00|0.00|N|O|1997-12-31|1997-12-31|1998-01-23|TAKE BACK RETURN|AIR|tes haggle. deposits are.| +56969|843323|5840|1|5|6331.40|0.08|0.00|A|F|1994-05-04|1994-04-27|1994-05-10|COLLECT COD|FOB|nding theodolites? blit| +56969|714442|26957|2|4|5825.64|0.10|0.08|R|F|1994-02-12|1994-03-14|1994-03-07|COLLECT COD|TRUCK|deposits. deposits are sly| +56970|3918|16419|1|48|87451.68|0.03|0.04|R|F|1992-06-25|1992-07-16|1992-07-01|COLLECT COD|REG AIR| cajole busy courts. final instructions acc| +56970|840803|40804|2|32|55800.32|0.02|0.07|A|F|1992-07-23|1992-08-18|1992-08-22|COLLECT COD|SHIP| ironic deposits wake according | +56971|678293|40807|1|43|54664.18|0.03|0.07|R|F|1993-11-12|1993-11-27|1993-11-17|TAKE BACK RETURN|MAIL|e carefully unusual i| +56971|57222|44726|2|7|8254.54|0.06|0.02|R|F|1994-02-07|1994-01-13|1994-03-06|NONE|FOB| slyly unusual instructions haggle fluffily| +56971|721825|21826|3|45|83105.55|0.00|0.07|R|F|1994-02-22|1993-12-31|1994-03-09|COLLECT COD|REG AIR|he carefully un| +56971|709367|46910|4|45|61934.85|0.10|0.05|A|F|1994-02-18|1993-12-17|1994-02-26|DELIVER IN PERSON|RAIL|ironic frets. carefully ev| +56971|325275|12794|5|25|32506.50|0.06|0.08|R|F|1994-02-06|1994-01-18|1994-02-17|NONE|REG AIR|s haggle furiously. unusual excuses arou| +56971|880300|42818|6|25|32006.50|0.05|0.07|R|F|1993-11-14|1993-12-03|1993-11-25|DELIVER IN PERSON|RAIL|efully regular instructi| +56971|195656|45657|7|15|26274.75|0.08|0.08|R|F|1994-01-01|1993-11-30|1994-01-19|TAKE BACK RETURN|SHIP|e across the idle es| +56972|379370|29371|1|34|49278.24|0.07|0.06|A|F|1992-10-22|1992-12-26|1992-11-13|COLLECT COD|AIR|ly final theodolite| +56972|55600|30603|2|7|10889.20|0.10|0.01|R|F|1993-02-13|1992-11-20|1993-02-22|COLLECT COD|TRUCK|en deposits. even deposits de| +56973|247490|9995|1|26|37374.48|0.06|0.01|R|F|1994-06-13|1994-08-25|1994-06-15|COLLECT COD|AIR|gle fluffily slyly even dependencies| +56973|556003|18515|2|32|33887.36|0.03|0.04|R|F|1994-08-03|1994-08-20|1994-08-18|TAKE BACK RETURN|SHIP| furiously unusual pearls nag quickly ironi| +56973|735642|23185|3|3|5032.83|0.04|0.01|R|F|1994-08-23|1994-07-30|1994-09-14|DELIVER IN PERSON|SHIP|dogged orbits. car| +56973|933959|46478|4|25|49822.75|0.02|0.04|R|F|1994-06-03|1994-08-08|1994-06-11|DELIVER IN PERSON|RAIL|inal braids haggl| +56973|45779|45780|5|50|86238.50|0.08|0.02|R|F|1994-08-17|1994-08-04|1994-08-25|COLLECT COD|SHIP| final deposits abo| +56974|207105|19610|1|28|28338.52|0.05|0.07|A|F|1992-07-13|1992-07-29|1992-07-23|NONE|TRUCK|ckly caref| +56974|797388|9904|2|8|11882.80|0.08|0.05|R|F|1992-09-29|1992-09-17|1992-10-21|COLLECT COD|MAIL|nic accounts af| +56974|699598|24625|3|43|68695.08|0.04|0.07|R|F|1992-08-15|1992-08-04|1992-09-02|DELIVER IN PERSON|REG AIR| ironic, express accounts. t| +56974|126811|14318|4|13|23891.53|0.09|0.02|R|F|1992-07-03|1992-08-15|1992-08-02|COLLECT COD|MAIL| warthogs! ironic packages cajole. un| +56974|302086|39605|5|16|17409.12|0.08|0.03|R|F|1992-10-15|1992-07-21|1992-11-13|TAKE BACK RETURN|TRUCK|iously blithely regular waters. furiou| +56974|150363|364|6|49|69254.64|0.06|0.02|R|F|1992-07-31|1992-08-25|1992-08-29|NONE|MAIL|g slyly? regular theodolites a| +56974|144895|19900|7|31|60136.59|0.09|0.00|R|F|1992-10-07|1992-09-07|1992-10-28|TAKE BACK RETURN|RAIL|ular, pending deposits. quickly quick as| +56975|237469|49974|1|23|32348.35|0.06|0.00|A|F|1994-09-16|1994-10-15|1994-09-25|NONE|MAIL|structions. quick| +56975|135354|10359|2|49|68078.15|0.08|0.02|A|F|1994-12-17|1994-10-22|1995-01-16|TAKE BACK RETURN|RAIL|about the q| +56975|888405|923|3|1|1393.36|0.05|0.07|A|F|1994-11-01|1994-10-25|1994-11-15|COLLECT COD|SHIP|ges. somas wake quickly depende| +56975|418238|30747|4|48|55498.08|0.06|0.05|A|F|1994-09-13|1994-10-23|1994-09-15|NONE|SHIP|al patterns after the daringly pending in| +56975|320834|33341|5|22|40806.04|0.10|0.06|R|F|1994-11-01|1994-10-11|1994-11-29|NONE|TRUCK|thely furiously unusual foxes. slyly fur| +57000|2231|14732|1|35|39663.05|0.03|0.06|A|F|1994-10-06|1994-12-06|1994-10-29|NONE|AIR|eas should are unusual ac| +57000|481680|19208|2|8|13293.28|0.09|0.06|A|F|1994-11-23|1994-10-12|1994-11-28|DELIVER IN PERSON|TRUCK|sts. fluffily spe| +57000|592700|30234|3|7|12548.76|0.01|0.04|A|F|1994-12-21|1994-12-06|1994-12-30|COLLECT COD|SHIP|le, regular accounts hinder fl| +57001|864878|27396|1|14|25799.62|0.05|0.05|N|O|1995-09-28|1995-09-14|1995-10-23|NONE|TRUCK|rate past the iro| +57001|995385|20424|2|15|22205.10|0.02|0.08|N|O|1995-09-04|1995-08-27|1995-09-27|COLLECT COD|RAIL| ironic requests| +57001|419902|44919|3|5|9109.40|0.04|0.05|N|O|1995-07-09|1995-08-30|1995-08-05|DELIVER IN PERSON|TRUCK|e final requests boost of the quick| +57002|126849|14356|1|30|56275.20|0.02|0.05|R|F|1992-11-22|1992-12-23|1992-12-03|DELIVER IN PERSON|TRUCK|w packages. quietly| +57003|207033|7034|1|12|11280.24|0.04|0.05|A|F|1993-04-23|1993-03-24|1993-05-20|DELIVER IN PERSON|AIR|express deposits boost quickly. bold,| +57004|960051|47609|1|38|42218.38|0.06|0.01|N|O|1997-05-28|1997-05-10|1997-06-26|COLLECT COD|REG AIR|cajole quickly c| +57004|567861|17862|2|32|61722.88|0.00|0.00|N|O|1997-05-26|1997-04-07|1997-06-16|TAKE BACK RETURN|AIR|kages. carefully even ideas cajole busil| +57004|38957|1458|3|20|37919.00|0.04|0.01|N|O|1997-04-13|1997-05-23|1997-05-13|DELIVER IN PERSON|AIR|lly carefully special i| +57004|736303|11332|4|7|9374.89|0.09|0.08|N|O|1997-06-21|1997-04-21|1997-07-16|TAKE BACK RETURN|RAIL|oze quickly regular accounts. even, final | +57004|28354|3355|5|30|38470.50|0.07|0.00|N|O|1997-03-16|1997-04-07|1997-03-21|DELIVER IN PERSON|FOB|ccounts. s| +57004|541966|29497|6|29|58230.26|0.02|0.07|N|O|1997-05-25|1997-04-15|1997-06-14|DELIVER IN PERSON|REG AIR|ular theodolites haggle furiou| +57005|765808|28324|1|21|39349.17|0.06|0.05|N|O|1996-07-07|1996-05-12|1996-07-08|COLLECT COD|REG AIR|the blithely regular i| +57006|650874|38414|1|3|5474.52|0.07|0.08|A|F|1994-05-17|1994-06-02|1994-05-28|TAKE BACK RETURN|SHIP|l packages at the| +57006|226356|38861|2|32|41034.88|0.04|0.05|R|F|1994-06-10|1994-06-25|1994-06-16|DELIVER IN PERSON|SHIP| blithely across the e| +57006|357181|32196|3|12|14858.04|0.00|0.01|R|F|1994-08-14|1994-06-20|1994-09-06|NONE|REG AIR|its. slyly pending cour| +57007|755459|43005|1|23|34831.66|0.06|0.02|R|F|1994-08-06|1994-08-07|1994-08-14|NONE|REG AIR|riously abov| +57007|992609|17648|2|49|83376.44|0.02|0.00|A|F|1994-10-30|1994-08-13|1994-10-31|NONE|RAIL|: final, final accounts | +57007|764951|2497|3|31|62493.52|0.08|0.06|A|F|1994-07-17|1994-09-11|1994-07-18|DELIVER IN PERSON|FOB|yly along the blithely even foxe| +57007|515568|40589|4|37|58590.98|0.05|0.04|A|F|1994-11-01|1994-09-02|1994-11-25|NONE|AIR|ely ironic foxes sle| +57007|142377|17382|5|49|69549.13|0.02|0.08|R|F|1994-08-03|1994-08-30|1994-08-24|TAKE BACK RETURN|SHIP|ests. theodolites according to th| +57007|918960|18961|6|26|51451.92|0.10|0.00|A|F|1994-10-26|1994-09-24|1994-11-23|DELIVER IN PERSON|FOB|lyly across the regular theodolites.| +57032|458392|8393|1|26|35109.62|0.00|0.05|N|O|1998-04-08|1998-04-12|1998-05-03|NONE|TRUCK|special courts: | +57032|184406|9413|2|4|5961.60|0.00|0.06|N|O|1998-03-22|1998-05-03|1998-04-15|COLLECT COD|REG AIR|uriously. slyly b| +57032|297716|47717|3|29|49697.30|0.10|0.08|N|O|1998-03-13|1998-04-12|1998-04-09|NONE|FOB|ticing requests across the regular platel| +57032|707612|32641|4|2|3239.16|0.07|0.07|N|O|1998-04-29|1998-04-24|1998-05-22|TAKE BACK RETURN|MAIL|ic accounts haggle | +57033|206555|19060|1|27|39461.58|0.08|0.05|A|F|1992-05-26|1992-06-08|1992-05-29|TAKE BACK RETURN|MAIL|counts above the unusual, regular d| +57033|567266|42289|2|27|35997.48|0.10|0.08|R|F|1992-06-30|1992-05-04|1992-07-06|NONE|MAIL|furiously even re| +57033|30697|18198|3|16|26043.04|0.08|0.07|A|F|1992-06-14|1992-04-16|1992-07-03|TAKE BACK RETURN|FOB|eposits engage slyly against the furiou| +57034|604801|29826|1|10|17057.70|0.00|0.04|N|O|1997-03-25|1997-04-04|1997-03-28|NONE|MAIL|gular dependencies. bli| +57034|885139|47657|2|34|38219.06|0.00|0.06|N|O|1997-05-23|1997-05-14|1997-05-27|COLLECT COD|SHIP|iously final theodolites. ir| +57034|520625|8156|3|17|27975.20|0.07|0.02|N|O|1997-03-25|1997-04-04|1997-04-02|NONE|REG AIR|nusual deposit| +57034|135096|47599|4|48|54292.32|0.04|0.03|N|O|1997-06-26|1997-04-23|1997-07-10|TAKE BACK RETURN|SHIP|es haggle quickly about the final instruc| +57034|543722|43723|5|7|12359.90|0.01|0.01|N|O|1997-05-05|1997-05-06|1997-05-12|DELIVER IN PERSON|AIR|s. furiously even asymptotes afte| +57034|319755|44768|6|38|67440.12|0.04|0.07|N|O|1997-03-08|1997-05-26|1997-04-01|TAKE BACK RETURN|RAIL| ironic courts along the enticingly bol| +57035|968815|6373|1|17|32024.09|0.08|0.05|N|O|1997-09-15|1997-08-17|1997-10-04|COLLECT COD|AIR|ructions. carefully even packages d| +57035|860851|10852|2|31|56166.11|0.04|0.04|N|O|1997-09-17|1997-08-05|1997-10-05|COLLECT COD|RAIL|ly special patterns. pending platelets a| +57035|313288|807|3|34|44243.18|0.10|0.08|N|O|1997-06-09|1997-08-27|1997-06-30|TAKE BACK RETURN|SHIP|pendencies wake slyl| +57035|415703|28212|4|44|71221.92|0.04|0.04|N|O|1997-07-10|1997-08-29|1997-08-08|COLLECT COD|AIR|ons cajole| +57035|706966|19481|5|35|69052.55|0.09|0.08|N|O|1997-06-20|1997-07-20|1997-07-17|DELIVER IN PERSON|REG AIR|ticing requests alongside o| +57035|964649|27169|6|14|23990.40|0.03|0.04|N|O|1997-08-28|1997-08-11|1997-09-27|COLLECT COD|REG AIR|deposits promise furiously. quickly r| +57035|849157|49158|7|49|54199.39|0.00|0.04|N|O|1997-07-15|1997-07-16|1997-08-11|DELIVER IN PERSON|TRUCK|xpress deposits cajole caref| +57036|771069|8615|1|19|21660.57|0.03|0.00|N|O|1997-05-12|1997-04-11|1997-05-18|TAKE BACK RETURN|FOB|r ideas haggle furiously ac| +57036|355790|5791|2|30|55373.40|0.10|0.05|N|O|1997-03-30|1997-03-16|1997-04-27|COLLECT COD|MAIL|ar packages integrate fluffily among the| +57037|951635|26674|1|34|57344.06|0.02|0.01|R|F|1994-05-28|1994-05-31|1994-06-24|COLLECT COD|TRUCK|efully alo| +57037|116364|3871|2|4|5521.44|0.04|0.03|A|F|1994-08-21|1994-06-23|1994-08-26|TAKE BACK RETURN|MAIL|platelets. r| +57037|728167|28168|3|18|21512.34|0.06|0.00|R|F|1994-06-20|1994-06-13|1994-07-12|DELIVER IN PERSON|REG AIR| the blithely final deposits. furi| +57037|290914|28430|4|13|24763.70|0.01|0.01|A|F|1994-06-29|1994-06-10|1994-07-07|NONE|REG AIR|s grow furiously a| +57037|387109|37110|5|29|34686.61|0.08|0.01|R|F|1994-07-10|1994-07-11|1994-07-12|COLLECT COD|MAIL| wake finally ironic deposits. furi| +57037|126546|39049|6|10|15725.40|0.00|0.03|R|F|1994-08-10|1994-07-20|1994-08-31|COLLECT COD|TRUCK|express deposits. quickly| +57038|203465|40978|1|36|49264.20|0.03|0.04|A|F|1992-08-22|1992-08-03|1992-08-27|NONE|MAIL| busily even requests. unusual, ironic| +57039|489401|39402|1|29|40321.02|0.04|0.02|R|F|1995-01-24|1995-03-05|1995-02-06|TAKE BACK RETURN|SHIP|y quiet theodol| +57064|993985|19024|1|34|70683.96|0.00|0.02|A|F|1992-06-02|1992-05-01|1992-06-11|TAKE BACK RETURN|AIR|ronic deposits sho| +57064|900582|583|2|36|56971.44|0.06|0.03|R|F|1992-03-16|1992-03-10|1992-04-06|TAKE BACK RETURN|TRUCK|e pending packages. furiously ir| +57064|81089|43591|3|19|20331.52|0.00|0.05|R|F|1992-05-09|1992-03-14|1992-05-15|DELIVER IN PERSON|AIR|ow carefully pe| +57064|858187|8188|4|50|57257.00|0.01|0.00|R|F|1992-02-09|1992-03-15|1992-02-22|COLLECT COD|SHIP|cies. ironic | +57064|536391|48902|5|7|9991.59|0.10|0.02|R|F|1992-04-12|1992-04-04|1992-05-04|COLLECT COD|REG AIR|eep blithely slyly | +57065|385977|10992|1|18|37133.28|0.03|0.05|N|O|1996-11-14|1996-11-25|1996-11-22|TAKE BACK RETURN|SHIP|nic instructions wake final pinto| +57065|112492|12493|2|22|33098.78|0.08|0.07|N|O|1997-01-24|1996-12-12|1997-02-22|NONE|MAIL|lessly iron| +57065|643759|43760|3|42|71514.24|0.05|0.05|N|O|1996-12-04|1996-12-27|1996-12-24|COLLECT COD|REG AIR|ecial requests cajol| +57066|632634|45147|1|45|70497.00|0.03|0.06|N|O|1997-05-29|1997-05-30|1997-06-13|TAKE BACK RETURN|SHIP|pendencies. fluffily special pack| +57067|601551|14064|1|33|47933.16|0.07|0.00|R|F|1992-10-09|1992-10-28|1992-10-22|NONE|AIR|nusual courts. special, bold packages slee| +57067|263679|13680|2|43|70634.38|0.04|0.02|A|F|1993-01-03|1992-12-18|1993-01-22|TAKE BACK RETURN|TRUCK|eas. blithely unusual accounts| +57067|645741|33278|3|50|84335.50|0.10|0.06|A|F|1992-12-05|1992-10-19|1993-01-02|TAKE BACK RETURN|TRUCK| special ideas sleep c| +57068|206249|43762|1|27|31191.21|0.06|0.03|N|O|1997-08-29|1997-10-19|1997-09-24|COLLECT COD|AIR|p carefully special ins| +57068|420066|20067|2|34|33525.36|0.05|0.06|N|O|1997-08-16|1997-09-26|1997-08-21|DELIVER IN PERSON|TRUCK|excuses! slyly expre| +57069|583877|21411|1|8|15686.80|0.05|0.03|N|O|1996-05-01|1996-04-05|1996-05-20|NONE|FOB|g foxes. furiously even deposits| +57070|790596|3112|1|34|57343.04|0.01|0.03|A|F|1992-02-01|1992-03-07|1992-02-07|NONE|SHIP|e. ironic packages nod slyly furi| +57070|533485|33486|2|46|69849.16|0.04|0.05|R|F|1992-04-10|1992-02-12|1992-05-01|COLLECT COD|RAIL|ss, unusual accounts wake | +57071|100304|12807|1|13|16955.90|0.01|0.00|N|O|1997-03-23|1997-04-08|1997-04-10|COLLECT COD|TRUCK| pending cou| +57071|798961|36507|2|17|35018.81|0.10|0.00|N|O|1997-03-29|1997-02-13|1997-04-08|NONE|SHIP|y ironic theodolit| +57071|123815|36318|3|5|9194.05|0.00|0.01|N|O|1997-01-10|1997-02-28|1997-02-01|NONE|FOB| slyly even ep| +57071|950145|12665|4|40|47804.00|0.01|0.02|N|O|1997-03-02|1997-03-14|1997-03-23|TAKE BACK RETURN|AIR|ffily. slyly final pac| +57071|85045|47547|5|14|14420.56|0.08|0.02|N|O|1997-01-26|1997-03-29|1997-02-21|DELIVER IN PERSON|AIR|hely alongside of the slyly regu| +57071|342677|5184|6|37|63627.42|0.09|0.04|N|O|1997-01-20|1997-02-18|1997-02-03|TAKE BACK RETURN|RAIL|ntegrate quickly car| +57096|452024|2025|1|22|21472.00|0.05|0.07|A|F|1993-05-19|1993-04-07|1993-05-27|COLLECT COD|RAIL|he carefully reg| +57096|155347|5348|2|27|37863.18|0.10|0.00|R|F|1993-03-08|1993-03-25|1993-03-10|NONE|TRUCK|d pinto beans after th| +57096|905156|42711|3|8|9288.88|0.03|0.03|A|F|1993-03-20|1993-02-21|1993-04-11|COLLECT COD|TRUCK|ackages da| +57096|949043|24080|4|26|28392.00|0.05|0.01|A|F|1993-05-15|1993-03-15|1993-06-10|TAKE BACK RETURN|MAIL|its. slyly regular theodolites are fl| +57096|553557|3558|5|4|6442.12|0.08|0.07|R|F|1993-03-04|1993-03-11|1993-03-22|TAKE BACK RETURN|TRUCK|egular deposits. unusual platelets| +57097|286102|48608|1|32|34818.88|0.09|0.03|N|O|1996-06-04|1996-05-26|1996-06-29|TAKE BACK RETURN|REG AIR|blithely pending warhorses. ironic dugouts | +57097|505887|30908|2|31|58678.66|0.03|0.04|N|O|1996-05-28|1996-06-11|1996-06-27|NONE|MAIL|use express accounts. express| +57098|712465|24980|1|1|1477.43|0.09|0.05|A|F|1993-01-03|1993-03-02|1993-01-26|COLLECT COD|FOB|ongside of the quickly final pinto beans | +57098|395862|20877|2|21|41114.85|0.08|0.00|R|F|1993-02-16|1993-01-18|1993-03-12|COLLECT COD|RAIL|g the blithely unus| +57099|739304|14333|1|30|40298.10|0.03|0.04|N|O|1996-08-23|1996-10-05|1996-08-27|DELIVER IN PERSON|TRUCK|sual foxes. packages sleep carefully acr| +57099|465782|28292|2|33|57676.08|0.00|0.07|N|O|1996-11-18|1996-10-18|1996-11-27|COLLECT COD|TRUCK| the packages. quickly ironic accoun| +57099|394544|19559|3|25|40963.25|0.08|0.07|N|O|1996-12-09|1996-10-22|1996-12-15|NONE|TRUCK|latelets sleep never. exp| +57099|97369|34873|4|47|64218.92|0.07|0.03|N|O|1996-11-21|1996-10-18|1996-11-22|NONE|TRUCK|ges hang. carefully | +57099|473495|11023|5|7|10279.29|0.08|0.05|N|O|1996-10-06|1996-10-19|1996-10-29|TAKE BACK RETURN|SHIP|y boldly special dolphins.| +57099|28639|28640|6|20|31352.60|0.03|0.02|N|O|1996-10-25|1996-10-25|1996-10-29|TAKE BACK RETURN|FOB|lphins. furiously dogged ideas| +57100|929451|29452|1|31|45892.71|0.07|0.04|R|F|1994-09-05|1994-10-01|1994-09-30|NONE|MAIL|es sleep slyly pla| +57100|279137|29138|2|1|1116.12|0.00|0.01|R|F|1994-12-02|1994-11-23|1994-12-20|TAKE BACK RETURN|REG AIR|ven account| +57100|443156|5665|3|2|2198.26|0.03|0.04|A|F|1994-10-30|1994-11-05|1994-11-15|DELIVER IN PERSON|AIR|ages cajole carefully | +57100|122626|22627|4|15|24729.30|0.00|0.06|A|F|1994-12-28|1994-11-10|1995-01-08|DELIVER IN PERSON|SHIP|quests-- fluffily pending dolp| +57101|831737|19286|1|48|80097.12|0.07|0.03|A|F|1994-07-26|1994-09-02|1994-08-12|TAKE BACK RETURN|FOB|romise blithely ironic instructi| +57101|994508|32066|2|6|9614.76|0.01|0.04|A|F|1994-09-20|1994-09-29|1994-09-26|COLLECT COD|AIR|ording to the careful| +57101|686058|48572|3|10|10440.20|0.00|0.08|A|F|1994-11-01|1994-09-07|1994-11-20|DELIVER IN PERSON|REG AIR|inal deposits wake e| +57101|562094|37117|4|15|17341.05|0.07|0.05|A|F|1994-11-12|1994-09-12|1994-12-05|COLLECT COD|MAIL|ally ironic accounts. doggedly fin| +57101|101406|1407|5|17|23925.80|0.10|0.03|A|F|1994-07-28|1994-09-28|1994-08-18|TAKE BACK RETURN|AIR|the excuses. slyly unusual req| +57101|324681|24682|6|28|47758.76|0.07|0.04|A|F|1994-08-23|1994-09-02|1994-09-10|COLLECT COD|TRUCK|e theodolites nag special, regula| +57101|906751|19270|7|15|26365.65|0.03|0.01|A|F|1994-08-08|1994-08-24|1994-08-25|TAKE BACK RETURN|FOB|y final deposits. | +57102|752260|39806|1|36|47240.28|0.10|0.00|R|F|1992-08-05|1992-09-06|1992-08-14|NONE|REG AIR|after the blithely brave c| +57102|225820|13333|2|36|62849.16|0.08|0.04|R|F|1992-07-04|1992-08-28|1992-07-07|COLLECT COD|TRUCK|accounts integrate. slyly eve| +57102|342683|42684|3|7|12079.69|0.06|0.08|R|F|1992-07-25|1992-07-31|1992-08-13|NONE|RAIL|ndencies wake silen| +57102|465538|28048|4|2|3007.02|0.07|0.06|A|F|1992-08-01|1992-08-07|1992-08-20|DELIVER IN PERSON|REG AIR|usly specia| +57102|292619|30135|5|24|38678.40|0.00|0.01|R|F|1992-10-02|1992-08-04|1992-10-11|COLLECT COD|SHIP|uests. furiou| +57103|156095|18599|1|15|17266.35|0.06|0.02|N|O|1996-08-29|1996-07-29|1996-09-20|COLLECT COD|RAIL|riously bold requests. final| +57103|486162|36163|2|42|48221.88|0.10|0.07|N|O|1996-08-18|1996-08-06|1996-09-04|COLLECT COD|AIR|accounts. blithely bold | +57103|916550|41587|3|36|56394.36|0.05|0.06|N|O|1996-07-26|1996-07-15|1996-08-07|NONE|MAIL|nts nag carefully. blithely| +57103|443065|30590|4|12|12096.48|0.02|0.04|N|O|1996-06-07|1996-07-01|1996-07-03|TAKE BACK RETURN|RAIL|etly even packages. slyly speci| +57128|432121|44630|1|37|38964.70|0.02|0.07|N|O|1995-10-31|1995-12-05|1995-11-07|TAKE BACK RETURN|FOB| accounts haggle| +57128|647207|9720|2|33|38087.61|0.02|0.04|N|O|1995-11-24|1995-10-19|1995-12-17|TAKE BACK RETURN|AIR|kly final a| +57128|598394|23417|3|14|20893.18|0.06|0.06|N|O|1995-10-27|1995-10-29|1995-11-19|NONE|RAIL|requests. | +57128|198227|23234|4|9|11926.98|0.10|0.01|N|O|1995-12-22|1995-12-01|1996-01-21|NONE|FOB|t frets. slyly | +57128|587745|37746|5|13|23825.36|0.09|0.05|N|O|1995-10-29|1995-11-18|1995-11-14|COLLECT COD|SHIP|ans detect. fluffily final ideas thrash s| +57128|215564|15565|6|30|44386.50|0.05|0.04|N|O|1995-12-09|1995-10-31|1995-12-24|DELIVER IN PERSON|TRUCK|ely slyly even ideas. final packages po| +57128|970821|20822|7|49|92697.22|0.06|0.04|N|O|1995-12-27|1995-10-18|1996-01-24|DELIVER IN PERSON|AIR|le. final deposi| +57129|582117|19651|1|45|53959.05|0.05|0.08|N|O|1996-10-27|1996-09-29|1996-11-07|NONE|TRUCK|final pinto beans. bold theodoli| +57129|629540|42053|2|44|64658.44|0.10|0.06|N|O|1996-09-03|1996-09-13|1996-09-12|COLLECT COD|MAIL|ages. furiously fi| +57129|666101|3641|3|19|20274.33|0.04|0.05|N|O|1996-10-21|1996-08-18|1996-10-23|NONE|SHIP|, thin instructions. u| +57130|432013|44522|1|44|41579.56|0.04|0.01|R|F|1993-06-21|1993-07-23|1993-06-30|TAKE BACK RETURN|AIR|ngside of the slyly pendin| +57130|831254|43771|2|13|15407.73|0.05|0.03|A|F|1993-08-14|1993-08-01|1993-08-27|TAKE BACK RETURN|FOB|s according to| +57130|885411|10446|3|50|69818.50|0.10|0.02|R|F|1993-06-04|1993-07-08|1993-06-21|NONE|RAIL| dependencies are. ideas above the blith| +57130|95318|32822|4|2|2626.62|0.09|0.04|A|F|1993-09-02|1993-07-20|1993-09-22|TAKE BACK RETURN|FOB|sts play carefully special foxes. re| +57130|997634|35192|5|44|76189.96|0.04|0.05|R|F|1993-05-23|1993-07-11|1993-06-21|COLLECT COD|MAIL|ss the silent warhorses. special pinto bea| +57130|233467|20980|6|39|54617.55|0.09|0.02|R|F|1993-06-10|1993-07-03|1993-07-01|NONE|RAIL|en requests affix bli| +57130|870817|20818|7|21|37543.17|0.10|0.05|A|F|1993-07-21|1993-08-02|1993-08-18|TAKE BACK RETURN|SHIP|rnes. bold ideas nag above| +57131|819817|7366|1|8|13894.16|0.08|0.05|N|O|1996-10-21|1996-10-29|1996-11-05|NONE|RAIL|the blithely ironic foxes. furi| +57131|649285|49286|2|49|60478.25|0.06|0.07|N|O|1996-09-11|1996-09-16|1996-10-01|DELIVER IN PERSON|TRUCK|ntegrate furiously. expr| +57131|521054|33565|3|33|35475.99|0.01|0.02|N|O|1996-09-23|1996-09-09|1996-10-20|DELIVER IN PERSON|TRUCK| boost blithely spe| +57132|665207|15208|1|15|17582.55|0.03|0.04|N|O|1995-08-29|1995-09-29|1995-09-19|COLLECT COD|RAIL|refully near the f| +57132|128075|15582|2|15|16546.05|0.02|0.05|N|O|1995-08-24|1995-08-28|1995-09-22|TAKE BACK RETURN|SHIP| silent deposits will have to snooz| +57132|549552|12063|3|32|51248.96|0.07|0.02|N|O|1995-08-24|1995-08-09|1995-09-09|TAKE BACK RETURN|REG AIR|ully about the slyly fin| +57132|303730|3731|4|35|60680.20|0.09|0.01|N|O|1995-10-11|1995-09-29|1995-10-28|NONE|REG AIR|eep slyly. blithely final depe| +57132|787488|25034|5|11|17329.95|0.06|0.05|N|O|1995-09-04|1995-08-28|1995-09-12|COLLECT COD|MAIL|yly permanent request| +57133|549163|24184|1|14|16969.96|0.04|0.01|N|O|1997-08-12|1997-07-22|1997-08-27|COLLECT COD|SHIP|ed ideas. furiously ironic braids af| +57134|848385|23418|1|23|30666.82|0.10|0.04|N|O|1998-02-04|1998-02-02|1998-02-14|TAKE BACK RETURN|RAIL|ccounts. blithely ironic platelets around t| +57134|797305|47306|2|20|28045.40|0.02|0.06|N|O|1998-04-23|1998-02-08|1998-05-15|DELIVER IN PERSON|REG AIR|ial ideas. fluffily fin| +57134|295923|20934|3|36|69080.76|0.09|0.02|N|O|1998-01-29|1998-02-12|1998-02-14|DELIVER IN PERSON|SHIP|ar deposits detect blithely| +57135|469483|31993|1|28|40668.88|0.03|0.03|R|F|1992-03-10|1992-04-10|1992-03-22|NONE|AIR|odolites. asymptotes above the q| +57135|589347|26881|2|44|63198.08|0.01|0.01|A|F|1992-03-27|1992-04-06|1992-04-19|TAKE BACK RETURN|FOB|nto beans. carefully ironic deposits main| +57135|143705|18710|3|18|31476.60|0.04|0.03|A|F|1992-02-12|1992-05-05|1992-02-20|DELIVER IN PERSON|FOB|dencies. slyly special instr| +57135|249259|49260|4|42|50746.08|0.07|0.07|R|F|1992-05-21|1992-03-13|1992-06-19|COLLECT COD|REG AIR|yly regular account| +57135|280561|18077|5|25|38538.75|0.00|0.05|A|F|1992-05-22|1992-03-20|1992-06-09|NONE|TRUCK|leep furiously? blithely b| +57135|386548|11563|6|1|1634.53|0.01|0.08|R|F|1992-05-08|1992-04-08|1992-05-12|TAKE BACK RETURN|FOB|packages; furiously regular inst| +57160|705475|43018|1|37|54776.28|0.10|0.06|N|O|1996-11-13|1996-11-08|1996-11-17|TAKE BACK RETURN|AIR|fully spec| +57160|904513|17032|2|31|47041.57|0.09|0.06|N|O|1996-11-11|1996-10-23|1996-12-06|DELIVER IN PERSON|SHIP|hely along the furiously r| +57160|141531|16536|3|32|50320.96|0.05|0.07|N|O|1996-08-14|1996-09-18|1996-08-16|TAKE BACK RETURN|AIR| quickly pending instructions boost ab| +57160|706532|44075|4|6|9231.00|0.02|0.04|N|O|1996-10-04|1996-10-05|1996-10-30|COLLECT COD|SHIP|. even, regula| +57160|670919|8459|5|2|3779.76|0.07|0.03|N|O|1996-08-14|1996-09-18|1996-09-09|NONE|TRUCK|ely ironic | +57160|128261|40764|6|48|61884.48|0.01|0.00|N|O|1996-09-09|1996-10-21|1996-09-22|TAKE BACK RETURN|FOB|ng ideas use about the | +57160|680287|30288|7|36|45621.00|0.08|0.05|N|O|1996-10-26|1996-09-14|1996-11-11|NONE|AIR|nd the blith| +57161|575895|13429|1|21|41388.27|0.01|0.03|N|O|1997-04-25|1997-02-19|1997-05-17|DELIVER IN PERSON|TRUCK| braids ought to int| +57161|50894|13396|2|16|29518.24|0.09|0.08|N|O|1997-01-29|1997-03-29|1997-02-07|TAKE BACK RETURN|REG AIR|s wake blithely final accounts-- final, | +57162|39762|39763|1|15|25526.40|0.05|0.00|A|F|1993-06-17|1993-05-27|1993-07-03|DELIVER IN PERSON|FOB| final deposits use regular| +57163|351571|1572|1|16|25960.96|0.04|0.06|R|F|1994-09-11|1994-10-22|1994-10-02|NONE|AIR|ut the blithely regular accounts are aro| +57164|41841|4342|1|22|39222.48|0.10|0.02|R|F|1995-05-29|1995-05-16|1995-06-04|DELIVER IN PERSON|SHIP|posits; carefully unusual reques| +57164|208928|8929|2|21|38575.11|0.01|0.04|N|F|1995-06-12|1995-05-06|1995-07-01|DELIVER IN PERSON|FOB|l, daring ideas sleep according to the sly| +57164|450757|25776|3|6|10246.38|0.01|0.02|A|F|1995-05-14|1995-05-01|1995-06-06|DELIVER IN PERSON|AIR|ly according to the s| +57164|860587|23105|4|9|13927.86|0.02|0.00|N|O|1995-07-15|1995-06-04|1995-07-17|TAKE BACK RETURN|AIR|deposits nag slyly blithely special r| +57165|772884|47915|1|26|50878.10|0.01|0.05|R|F|1994-10-21|1994-09-22|1994-10-30|COLLECT COD|AIR| requests. | +57165|850815|25850|2|45|79459.65|0.08|0.03|A|F|1994-11-17|1994-10-22|1994-12-01|NONE|FOB|ent deposits. furiously unusu| +57165|636889|24426|3|26|47472.10|0.01|0.02|A|F|1994-10-16|1994-11-03|1994-10-17|DELIVER IN PERSON|TRUCK| carefully ironic accounts. furious| +57165|176625|14135|4|29|49346.98|0.00|0.08|A|F|1994-12-04|1994-11-07|1994-12-26|DELIVER IN PERSON|MAIL|tes cajole slyly ironic req| +57166|758305|20821|1|36|49077.72|0.08|0.01|R|F|1992-06-18|1992-04-20|1992-07-11|TAKE BACK RETURN|SHIP| even foxes boost blithely slyly special | +57166|826947|26948|2|27|50595.30|0.07|0.05|R|F|1992-03-06|1992-05-04|1992-03-20|DELIVER IN PERSON|SHIP|lly even accounts about| +57167|565241|15242|1|28|36574.16|0.08|0.08|N|O|1997-08-02|1997-08-16|1997-08-11|COLLECT COD|TRUCK| theodolites. b| +57167|996345|33903|2|2|2882.60|0.04|0.03|N|O|1997-09-27|1997-09-25|1997-10-18|DELIVER IN PERSON|MAIL|e slyly reg| +57167|568887|6421|3|38|74322.68|0.10|0.04|N|O|1997-09-23|1997-10-03|1997-10-14|DELIVER IN PERSON|FOB|. ruthlessly pending deposit| +57167|279493|4504|4|12|17669.76|0.02|0.05|N|O|1997-08-04|1997-08-12|1997-08-19|COLLECT COD|RAIL|pite the furiously express requests. carefu| +57167|435972|10989|5|8|15263.60|0.05|0.01|N|O|1997-11-04|1997-09-06|1997-11-21|NONE|RAIL|ns. carefully expr| +57167|369301|44316|6|32|43849.28|0.02|0.03|N|O|1997-08-26|1997-09-08|1997-09-23|COLLECT COD|TRUCK|es use fluffily accounts| +57192|44633|19634|1|4|6310.52|0.07|0.07|N|O|1998-09-10|1998-07-31|1998-10-01|TAKE BACK RETURN|RAIL|special deposits. express, express p| +57192|140268|27775|2|48|62796.48|0.06|0.00|N|O|1998-09-06|1998-09-08|1998-09-27|NONE|MAIL|ic requests. fluffily final packag| +57192|478851|41361|3|25|45745.75|0.02|0.04|N|O|1998-08-14|1998-08-23|1998-09-05|DELIVER IN PERSON|MAIL| the final requests. unusual, bold mul| +57192|45080|20081|4|47|48178.76|0.06|0.02|N|O|1998-07-03|1998-09-10|1998-07-22|DELIVER IN PERSON|AIR|ts along the slyly even deposits sle| +57192|655923|5924|5|8|15031.12|0.02|0.04|N|O|1998-09-26|1998-08-18|1998-10-22|DELIVER IN PERSON|MAIL|e closely. requests sleep carefull| +57192|85267|35268|6|1|1252.26|0.01|0.06|N|O|1998-09-12|1998-09-17|1998-09-13|COLLECT COD|MAIL|hind the ir| +57192|80379|42881|7|43|58452.91|0.02|0.01|N|O|1998-07-29|1998-09-19|1998-08-09|TAKE BACK RETURN|MAIL|ide the blithely pending depo| +57193|918959|43996|1|3|5933.73|0.07|0.06|N|O|1996-06-26|1996-05-09|1996-07-12|TAKE BACK RETURN|SHIP|structions along the a| +57193|930587|43106|2|20|32350.80|0.02|0.00|N|O|1996-07-01|1996-04-12|1996-07-18|COLLECT COD|RAIL|l deposits. furiously final pinto| +57193|368051|30559|3|38|42523.52|0.02|0.03|N|O|1996-05-17|1996-05-09|1996-06-11|TAKE BACK RETURN|RAIL|ithely fluffily | +57193|816865|4414|4|14|24945.48|0.08|0.03|N|O|1996-06-06|1996-06-08|1996-06-19|DELIVER IN PERSON|RAIL|ests. special f| +57193|39331|14332|5|8|10162.64|0.02|0.07|N|O|1996-07-09|1996-04-16|1996-07-19|TAKE BACK RETURN|RAIL|ial foxes. fluffily regular deposits detect| +57193|27279|39780|6|7|8443.89|0.08|0.08|N|O|1996-04-14|1996-05-12|1996-05-11|DELIVER IN PERSON|REG AIR|tes. final instructions after the re| +57194|700842|38385|1|12|22113.72|0.04|0.08|N|O|1998-07-27|1998-06-29|1998-08-18|COLLECT COD|RAIL|nstructions haggle| +57194|49960|37461|2|9|17189.64|0.04|0.00|N|O|1998-05-26|1998-06-25|1998-06-21|COLLECT COD|SHIP|ckly regul| +57195|765152|2698|1|29|35296.48|0.03|0.03|A|F|1994-05-03|1994-04-18|1994-05-17|NONE|MAIL|s integrate blithely| +57195|893014|5532|2|41|41285.77|0.10|0.01|R|F|1994-04-25|1994-05-12|1994-05-18|TAKE BACK RETURN|TRUCK|y after the pending, unusual re| +57195|880237|17789|3|43|52339.17|0.08|0.08|R|F|1994-04-10|1994-05-01|1994-04-22|COLLECT COD|RAIL|ackages. furiously u| +57195|128937|16444|4|18|35386.74|0.01|0.03|A|F|1994-04-15|1994-04-09|1994-04-22|DELIVER IN PERSON|RAIL| regular theod| +57195|41921|29422|5|5|9314.60|0.08|0.02|R|F|1994-04-23|1994-05-16|1994-04-29|DELIVER IN PERSON|MAIL|lly. unusual packages integrate alway| +57195|561395|11396|6|14|20389.18|0.08|0.01|A|F|1994-03-06|1994-04-27|1994-03-14|TAKE BACK RETURN|RAIL|ual accounts | +57195|364388|1910|7|2|2904.74|0.06|0.04|R|F|1994-03-05|1994-04-12|1994-04-04|NONE|SHIP|ake. carefully final| +57196|260710|35721|1|42|70169.40|0.00|0.00|N|O|1996-08-23|1996-10-26|1996-09-16|TAKE BACK RETURN|TRUCK|old requests about the slyly ironic de| +57196|739583|2098|2|46|74637.30|0.03|0.07|N|O|1996-09-19|1996-10-11|1996-09-22|NONE|MAIL|nic pinto beans. ironic deposits maintain| +57196|157018|19522|3|43|46225.43|0.02|0.03|N|O|1996-11-23|1996-09-20|1996-11-29|DELIVER IN PERSON|RAIL|onic theodolites are fluffily. boldly e| +57197|521279|33790|1|37|48109.25|0.10|0.08|N|O|1998-03-05|1998-03-06|1998-03-31|TAKE BACK RETURN|SHIP|ccording to the pending pac| +57197|131035|31036|2|1|1066.03|0.04|0.07|N|O|1998-04-08|1998-03-02|1998-05-04|NONE|TRUCK|instructions? blithely spe| +57197|294534|44535|3|26|39741.52|0.10|0.03|N|O|1998-05-01|1998-04-11|1998-05-20|COLLECT COD|AIR| carefully. carefully final accounts| +57197|218965|18966|4|34|64054.30|0.06|0.08|N|O|1998-02-21|1998-02-22|1998-03-09|DELIVER IN PERSON|MAIL|ng, ironic packages. always final theodolit| +57197|130153|5158|5|35|41410.25|0.04|0.05|N|O|1998-01-30|1998-03-19|1998-01-31|TAKE BACK RETURN|REG AIR|aggle furio| +57197|478638|16166|6|24|38798.64|0.01|0.00|N|O|1998-04-23|1998-03-21|1998-05-23|DELIVER IN PERSON|REG AIR| blithely bold accounts. silent packag| +57198|340444|2951|1|41|60861.63|0.02|0.04|N|O|1998-04-18|1998-04-08|1998-05-08|TAKE BACK RETURN|MAIL|ccording to the slyly fin| +57198|838797|26346|2|38|65958.50|0.05|0.04|N|O|1998-04-09|1998-04-08|1998-05-04|COLLECT COD|SHIP| across the ideas. pending, unu| +57198|647016|34553|3|39|37556.22|0.04|0.03|N|O|1998-04-04|1998-05-08|1998-04-20|TAKE BACK RETURN|RAIL|decoys nag slyly. deposits haggle accordin| +57199|79711|17215|1|37|62556.27|0.08|0.03|R|F|1995-01-29|1995-01-09|1995-02-04|DELIVER IN PERSON|MAIL|according to the express,| +57199|690154|2668|2|25|28603.00|0.04|0.07|A|F|1995-01-24|1995-01-07|1995-02-09|TAKE BACK RETURN|SHIP|lithely ironic theodolites. slyly final| +57224|677476|2503|1|16|23255.04|0.00|0.07|A|F|1992-08-29|1992-11-15|1992-09-06|TAKE BACK RETURN|TRUCK|ideas. ideas run accordi| +57224|336963|49470|2|39|77998.05|0.07|0.02|R|F|1992-11-18|1992-10-15|1992-12-17|COLLECT COD|MAIL|sly regular packages| +57224|324649|24650|3|42|70292.46|0.02|0.01|R|F|1992-08-28|1992-11-06|1992-08-31|NONE|MAIL| slyly express packages detect. depo| +57224|375528|38036|4|28|44898.28|0.00|0.02|R|F|1992-09-12|1992-11-16|1992-10-02|NONE|AIR|into beans af| +57224|493352|5862|5|35|47086.55|0.07|0.06|R|F|1992-11-22|1992-10-02|1992-12-15|NONE|RAIL|final theodol| +57224|758970|46516|6|27|54781.38|0.06|0.06|A|F|1992-09-29|1992-10-25|1992-10-05|NONE|REG AIR|xes integrate furiously afte| +57224|6329|6330|7|11|13588.52|0.00|0.07|A|F|1992-12-15|1992-10-11|1992-12-30|DELIVER IN PERSON|REG AIR|are. quickly special packages are carefu| +57225|356532|19040|1|23|36535.96|0.00|0.04|N|O|1996-10-10|1996-12-01|1996-10-28|TAKE BACK RETURN|AIR| packages haggle furiously above the ironi| +57225|218888|43897|2|20|36137.40|0.00|0.00|N|O|1996-10-29|1996-10-19|1996-11-16|NONE|SHIP|ly final accounts solve a| +57225|837628|25177|3|2|3131.16|0.01|0.01|N|O|1996-10-03|1996-12-08|1996-10-18|TAKE BACK RETURN|TRUCK|yly busy pinto| +57226|537394|24925|1|35|50097.95|0.01|0.02|A|F|1994-11-11|1994-10-04|1994-11-13|DELIVER IN PERSON|REG AIR|hely fluffily final packages. dogged depths| +57226|979378|16936|2|13|18945.29|0.10|0.02|R|F|1994-11-16|1994-10-04|1994-12-14|COLLECT COD|TRUCK|nal asymptotes sle| +57226|391010|41011|3|33|36333.00|0.08|0.07|A|F|1994-09-28|1994-11-06|1994-10-13|NONE|SHIP|lyly across the | +57226|700572|25601|4|33|51893.82|0.00|0.02|R|F|1994-09-19|1994-09-27|1994-10-17|TAKE BACK RETURN|SHIP| to the express, bold foxes. slyly| +57227|477516|2535|1|7|10454.43|0.00|0.05|N|O|1996-06-01|1996-06-18|1996-06-12|DELIVER IN PERSON|RAIL|ithely bold braids | +57227|604031|4032|2|12|11220.00|0.08|0.01|N|O|1996-06-25|1996-05-22|1996-07-03|DELIVER IN PERSON|RAIL|l instructions. f| +57228|329123|29124|1|35|40323.85|0.07|0.08|N|O|1997-08-13|1997-09-15|1997-09-05|DELIVER IN PERSON|TRUCK|al foxes wake alongside of the carefully r| +57228|566846|16847|2|28|53558.96|0.03|0.01|N|O|1997-08-25|1997-08-04|1997-09-19|NONE|FOB|ost slyly pending pearls. p| +57228|979906|4945|3|28|55604.08|0.02|0.02|N|O|1997-09-10|1997-08-12|1997-09-29|DELIVER IN PERSON|MAIL|iously. ironic accounts haggle| +57228|266403|16404|4|31|42451.09|0.06|0.02|N|O|1997-10-13|1997-07-23|1997-10-28|DELIVER IN PERSON|TRUCK|se blithely. furiously even packages in| +57228|419224|19225|5|34|38868.80|0.01|0.08|N|O|1997-08-27|1997-08-10|1997-09-17|COLLECT COD|REG AIR|ld, enticing dolphins are furiously to t| +57229|835920|10953|1|21|38973.48|0.08|0.05|N|O|1995-06-26|1995-07-18|1995-07-15|COLLECT COD|REG AIR|quickly even asympto| +57229|296302|21313|2|45|58423.05|0.02|0.04|N|O|1995-07-20|1995-07-17|1995-07-21|NONE|AIR|ggle slyly final deposits. even asymptotes | +57229|939469|39470|3|28|42235.76|0.02|0.03|N|O|1995-08-18|1995-08-28|1995-09-01|NONE|AIR|special accounts cajole deposits. furiou| +57229|644485|6998|4|27|38595.15|0.00|0.03|N|O|1995-06-28|1995-08-08|1995-07-25|TAKE BACK RETURN|SHIP|aggle slyly sile| +57229|844383|6900|5|16|21237.44|0.09|0.02|N|O|1995-06-20|1995-08-22|1995-06-28|TAKE BACK RETURN|FOB|s haggle carefully enticing reques| +57230|626571|39084|1|10|14975.40|0.07|0.05|A|F|1994-08-02|1994-10-08|1994-08-13|NONE|MAIL|express instructions wake fluffily idly unu| +57230|777333|2364|2|21|29616.30|0.04|0.08|R|F|1994-10-26|1994-08-22|1994-11-04|DELIVER IN PERSON|RAIL|slyly express requests at the fluffily| +57230|619353|6890|3|4|5089.28|0.03|0.06|R|F|1994-08-28|1994-10-04|1994-09-18|TAKE BACK RETURN|REG AIR|lar ideas dazzle slyly throughout| +57231|465605|15606|1|46|72246.68|0.00|0.05|N|O|1998-08-14|1998-09-05|1998-08-24|NONE|REG AIR| after the careful| +57231|406429|43954|2|35|46739.00|0.04|0.03|N|O|1998-10-28|1998-09-22|1998-11-01|COLLECT COD|MAIL|its. ironic ideas hinder carefully furi| +57231|838318|25867|3|44|55275.88|0.08|0.06|N|O|1998-08-26|1998-09-09|1998-09-19|COLLECT COD|REG AIR|, busy packages. unu| +57256|597621|22644|1|46|79055.60|0.02|0.01|N|O|1998-02-02|1998-01-24|1998-02-18|NONE|RAIL|ly ironic gro| +57256|215391|40400|2|9|11757.42|0.06|0.04|N|O|1998-02-25|1998-01-25|1998-03-11|COLLECT COD|AIR|quickly ru| +57256|75581|38083|3|11|17122.38|0.07|0.08|N|O|1998-01-21|1998-01-30|1998-02-15|COLLECT COD|RAIL|impress blithely. acco| +57257|328136|15655|1|20|23282.40|0.06|0.07|N|O|1995-08-31|1995-08-28|1995-09-25|COLLECT COD|TRUCK|s. carefully bol| +57258|663286|25800|1|16|19988.00|0.00|0.08|N|O|1996-06-17|1996-06-28|1996-07-11|NONE|FOB| packages. finally s| +57258|834331|34332|2|11|13918.19|0.07|0.04|N|O|1996-09-09|1996-08-15|1996-09-26|DELIVER IN PERSON|AIR|lithely bold dugouts sleep accordi| +57258|594319|44320|3|36|50878.44|0.09|0.00|N|O|1996-06-16|1996-07-22|1996-06-23|DELIVER IN PERSON|TRUCK| ironic requests hang | +57258|708495|21010|4|34|51117.64|0.00|0.04|N|O|1996-08-16|1996-06-26|1996-09-05|NONE|TRUCK|ithely final packages| +57258|673036|10576|5|19|19171.00|0.01|0.05|N|O|1996-07-31|1996-07-10|1996-08-26|TAKE BACK RETURN|RAIL|iously fluf| +57258|700237|25266|6|36|44539.20|0.07|0.02|N|O|1996-05-27|1996-08-08|1996-06-11|NONE|TRUCK|refully pending dolphins h| +57258|868839|31357|7|40|72311.60|0.09|0.08|N|O|1996-07-09|1996-07-31|1996-08-03|NONE|MAIL|ronic request| +57259|572437|34949|1|6|9056.46|0.10|0.03|A|F|1995-02-02|1995-02-07|1995-02-20|TAKE BACK RETURN|TRUCK|egular instructions. slyly ironic de| +57259|946105|8624|2|49|56401.94|0.00|0.08|R|F|1995-01-19|1995-02-26|1995-02-04|NONE|RAIL|alms. furiousl| +57260|847590|22623|1|32|49201.60|0.06|0.04|N|O|1996-03-04|1996-04-20|1996-03-21|TAKE BACK RETURN|TRUCK|ithely express excuses. carefully sp| +57260|442623|17640|2|37|57927.20|0.01|0.00|N|O|1996-03-26|1996-04-02|1996-03-30|COLLECT COD|SHIP|eans are furiously | +57260|160369|47879|3|45|64321.20|0.06|0.02|N|O|1996-03-25|1996-03-16|1996-03-26|DELIVER IN PERSON|AIR|uriously express instruc| +57261|947713|10232|1|2|3521.34|0.05|0.00|N|O|1995-12-08|1996-01-17|1995-12-18|TAKE BACK RETURN|TRUCK|s are slyly furiously final ac| +57261|202424|14929|2|43|57035.63|0.03|0.05|N|O|1996-02-24|1996-01-08|1996-03-04|COLLECT COD|TRUCK|st the carefully silent ex| +57261|135678|35679|3|34|58264.78|0.07|0.01|N|O|1995-11-14|1995-12-28|1995-11-15|NONE|AIR|less, slow foxes wake abo| +57261|332412|32413|4|48|69331.20|0.05|0.00|N|O|1995-11-25|1995-12-06|1995-12-03|TAKE BACK RETURN|REG AIR|lent deposits poac| +57261|840595|3112|5|4|6142.20|0.07|0.00|N|O|1995-12-30|1995-12-03|1996-01-21|TAKE BACK RETURN|REG AIR|al accounts print according | +57261|871742|46777|6|21|35987.70|0.00|0.06|N|O|1995-12-04|1996-01-24|1995-12-29|NONE|MAIL| quickly. bold dolphi| +57261|365616|15617|7|33|55492.80|0.02|0.04|N|O|1996-02-10|1995-12-17|1996-03-11|TAKE BACK RETURN|TRUCK|cajole around the fluffily regular| +57262|893234|30786|1|27|33134.13|0.04|0.00|N|O|1996-07-18|1996-05-31|1996-08-05|COLLECT COD|SHIP|ts. quickly s| +57262|574322|24323|2|47|65626.10|0.10|0.04|N|O|1996-06-19|1996-06-14|1996-07-17|DELIVER IN PERSON|RAIL| furiously fina| +57262|622630|47655|3|23|35709.80|0.00|0.02|N|O|1996-05-28|1996-05-15|1996-06-19|COLLECT COD|TRUCK|eans affix quickly. fo| +57263|33659|8660|1|49|78039.85|0.10|0.02|R|F|1995-04-22|1995-04-18|1995-04-29|TAKE BACK RETURN|TRUCK|ithely about the slowly| +57263|697703|47704|2|42|71428.14|0.07|0.08|R|F|1995-04-01|1995-02-25|1995-04-23|COLLECT COD|FOB| cajole furiously| +57263|286323|36324|3|13|17021.03|0.09|0.02|R|F|1995-03-02|1995-02-25|1995-03-08|NONE|SHIP|ironic packages. blit| +57263|226316|38821|4|12|14907.60|0.03|0.06|A|F|1995-04-13|1995-04-10|1995-05-06|NONE|MAIL|ructions need to affix amo| +57263|681758|31759|5|29|50451.88|0.00|0.04|R|F|1995-05-13|1995-04-15|1995-05-28|NONE|REG AIR|e the regular, regular dependen| +57263|294183|19194|6|42|49441.14|0.07|0.06|A|F|1995-05-10|1995-04-13|1995-06-08|NONE|REG AIR|ious, even pearls nag furiously fluffily | +57263|319471|6990|7|47|70051.62|0.05|0.07|R|F|1995-04-04|1995-03-24|1995-04-06|COLLECT COD|FOB|uffily final f| +57288|340064|2571|1|14|15456.70|0.07|0.07|N|O|1997-04-09|1997-03-03|1997-04-23|TAKE BACK RETURN|MAIL|daring deposits. regular, express exc| +57289|306171|6172|1|42|49440.72|0.09|0.04|N|O|1997-05-14|1997-06-15|1997-06-02|NONE|AIR|ntain quickly. fluffily busy pinto bea| +57289|801114|38663|2|10|10150.70|0.02|0.01|N|O|1997-05-05|1997-05-02|1997-05-18|DELIVER IN PERSON|TRUCK|packages use atop the regular packages. | +57289|318057|43070|3|1|1075.04|0.09|0.00|N|O|1997-07-09|1997-05-07|1997-08-04|NONE|REG AIR|osits cajole qui| +57289|576695|39207|4|12|21260.04|0.09|0.08|N|O|1997-05-12|1997-05-03|1997-05-26|COLLECT COD|RAIL|unts. fluffily regular accounts haggle | +57289|505150|42681|5|29|33498.77|0.02|0.02|N|O|1997-03-19|1997-05-04|1997-04-10|DELIVER IN PERSON|AIR|al asymptotes along the slyly idle packa| +57289|51227|13729|6|15|17673.30|0.03|0.02|N|O|1997-04-17|1997-04-25|1997-05-14|COLLECT COD|REG AIR|tes. carefully unusual| +57290|709954|47497|1|22|43206.24|0.08|0.01|R|F|1993-12-22|1993-11-25|1994-01-16|TAKE BACK RETURN|FOB|fily regular theodoli| +57290|180857|5864|2|3|5813.55|0.04|0.00|R|F|1993-11-26|1993-11-05|1993-12-19|DELIVER IN PERSON|TRUCK|-ray slyly. notornis | +57291|666896|4436|1|44|81965.84|0.06|0.03|A|F|1993-11-30|1994-02-04|1993-12-07|DELIVER IN PERSON|FOB| the furious| +57291|520554|33065|2|43|67704.79|0.06|0.00|A|F|1994-02-02|1993-12-10|1994-02-04|DELIVER IN PERSON|TRUCK|en forges are| +57291|942764|30319|3|25|45168.00|0.04|0.02|R|F|1993-12-11|1994-01-14|1993-12-26|DELIVER IN PERSON|MAIL|uickly ironic ideas mold quic| +57292|866732|4284|1|5|8493.45|0.08|0.01|A|F|1992-05-04|1992-05-06|1992-06-03|TAKE BACK RETURN|AIR|e after the dependencies. furiously expres| +57293|447240|22257|1|21|24931.62|0.03|0.01|N|O|1997-04-26|1997-05-13|1997-04-27|TAKE BACK RETURN|REG AIR|run. silent| +57293|756535|19051|2|31|49336.50|0.00|0.00|N|O|1997-04-09|1997-04-11|1997-05-05|COLLECT COD|TRUCK|ly ironic t| +57293|68203|18204|3|46|53875.20|0.10|0.05|N|O|1997-03-11|1997-04-29|1997-04-02|COLLECT COD|AIR|ously ironic packages cajole quickly e| +57293|283539|21055|4|11|16747.72|0.01|0.06|N|O|1997-05-20|1997-05-10|1997-05-22|TAKE BACK RETURN|MAIL| furiously along the s| +57293|433182|20707|5|39|43491.24|0.06|0.04|N|O|1997-04-24|1997-04-04|1997-05-20|COLLECT COD|TRUCK|e foxes nag across th| +57293|479464|16992|6|1|1443.44|0.06|0.00|N|O|1997-05-01|1997-03-20|1997-05-04|NONE|SHIP|uickly unusual | +57294|835163|47680|1|30|32943.60|0.04|0.06|A|F|1993-02-25|1993-02-08|1993-02-26|TAKE BACK RETURN|RAIL|owly. slyly un| +57294|574930|12464|2|39|78191.49|0.02|0.07|A|F|1993-05-04|1993-03-17|1993-05-20|TAKE BACK RETURN|RAIL|yly final packages. quickly even | +57294|841732|4249|3|11|18410.59|0.04|0.01|R|F|1993-02-03|1993-03-10|1993-02-17|NONE|REG AIR|lyly even pinto beans haggle| +57294|973523|36043|4|40|63859.20|0.05|0.00|A|F|1993-03-31|1993-02-27|1993-04-06|COLLECT COD|FOB|sly express fray| +57294|987448|37449|5|34|52203.60|0.03|0.07|R|F|1993-02-12|1993-02-24|1993-03-03|NONE|FOB|old instructions. pin| +57294|25089|12590|6|36|36506.88|0.04|0.01|A|F|1993-04-23|1993-02-26|1993-04-28|NONE|TRUCK|o beans. final | +57295|955146|42704|1|14|16815.40|0.02|0.04|N|O|1998-08-12|1998-07-27|1998-08-14|COLLECT COD|REG AIR|counts? final, pending asymptotes da| +57295|123299|48304|2|31|40990.99|0.07|0.00|N|O|1998-06-16|1998-07-11|1998-07-08|NONE|REG AIR|s use doggedly ag| +57295|276486|14002|3|31|45336.57|0.03|0.03|N|O|1998-06-11|1998-06-22|1998-06-21|DELIVER IN PERSON|FOB|structions. speci| +57320|228548|3557|1|43|63490.79|0.04|0.07|N|O|1995-11-02|1995-10-07|1995-11-04|TAKE BACK RETURN|TRUCK|re carefully across the furiously i| +57321|20439|20440|1|49|66612.07|0.02|0.01|A|F|1994-03-18|1994-04-10|1994-04-07|TAKE BACK RETURN|MAIL|s sleep express accounts? furiously| +57321|510085|35106|2|16|17520.96|0.03|0.05|A|F|1994-04-26|1994-05-26|1994-05-10|NONE|AIR|ithely final deposits abou| +57321|991449|3969|3|19|29267.60|0.10|0.01|R|F|1994-04-18|1994-04-17|1994-05-07|TAKE BACK RETURN|FOB|s the even, regular excuses| +57322|750868|38414|1|10|19188.30|0.09|0.01|A|F|1994-12-24|1994-12-24|1995-01-01|DELIVER IN PERSON|AIR|d dependencies haggle daringly accordin| +57322|825743|776|2|2|3337.40|0.09|0.08|R|F|1995-02-01|1994-12-14|1995-02-09|COLLECT COD|SHIP|r asymptotes across the slyly si| +57322|246838|9343|3|41|73177.62|0.01|0.08|A|F|1995-01-25|1994-11-25|1995-02-02|DELIVER IN PERSON|FOB|quests haggle carefully pinto beans.| +57322|601497|39034|4|6|8390.76|0.01|0.03|A|F|1995-02-01|1994-12-30|1995-02-23|TAKE BACK RETURN|REG AIR|o beans haggle. bold depe| +57322|345881|33400|5|34|65513.58|0.00|0.05|R|F|1995-01-22|1994-12-14|1995-02-15|NONE|AIR|y even package| +57322|209326|21831|6|34|42000.54|0.08|0.04|R|F|1994-12-29|1994-12-26|1995-01-01|TAKE BACK RETURN|MAIL|e. carefull| +57323|363986|39001|1|2|4099.94|0.06|0.04|A|F|1994-02-12|1994-04-04|1994-03-07|NONE|TRUCK|ven, even idea| +57324|209711|22216|1|30|48621.00|0.02|0.00|N|O|1997-03-17|1997-03-10|1997-03-21|TAKE BACK RETURN|TRUCK|y ironic pa| +57324|597664|22687|2|44|77512.16|0.10|0.00|N|O|1997-05-18|1997-04-13|1997-05-22|TAKE BACK RETURN|REG AIR|ous asymptotes. platelets sl| +57324|930941|30942|3|42|82819.80|0.04|0.00|N|O|1997-02-16|1997-04-25|1997-03-02|DELIVER IN PERSON|FOB|cajole doggedly. furi| +57324|312475|12476|4|22|32724.12|0.04|0.02|N|O|1997-04-25|1997-04-12|1997-05-02|NONE|SHIP|nts. theodolites are blithely pendin| +57324|765396|40427|5|35|51147.60|0.06|0.00|N|O|1997-02-22|1997-03-12|1997-03-19|TAKE BACK RETURN|TRUCK|e blithely even accounts? furiou| +57324|994540|19579|6|37|60476.50|0.04|0.01|N|O|1997-05-12|1997-03-07|1997-05-25|NONE|RAIL| slyly regular packages integr| +57324|231180|6189|7|1|1111.17|0.07|0.08|N|O|1997-05-03|1997-03-26|1997-05-04|COLLECT COD|FOB|ular requests d| +57325|432114|32115|1|8|8368.72|0.09|0.06|A|F|1994-01-19|1993-12-24|1994-01-25|COLLECT COD|REG AIR|. regular pinto beans cajole caref| +57325|523308|35819|2|7|9318.96|0.09|0.01|A|F|1993-12-15|1993-12-20|1993-12-16|DELIVER IN PERSON|FOB|counts unwind furio| +57326|818798|31315|1|35|60086.25|0.05|0.08|R|F|1994-05-03|1994-04-30|1994-05-19|TAKE BACK RETURN|FOB| blithely ironic| +57327|120931|45936|1|25|48798.25|0.04|0.07|A|F|1994-11-27|1994-11-21|1994-12-18|DELIVER IN PERSON|RAIL|uffily final req| +57327|480110|17638|2|23|25072.07|0.01|0.03|A|F|1994-09-29|1994-11-21|1994-10-14|NONE|AIR|kly ironic deposits. thin | +57327|201650|1651|3|49|76030.36|0.03|0.05|A|F|1994-11-08|1994-12-03|1994-12-05|NONE|REG AIR|uests. furiously unusual packa| +57327|129418|41921|4|42|60791.22|0.01|0.02|R|F|1994-09-20|1994-11-20|1994-10-08|COLLECT COD|TRUCK| the express requests sleep carefully u| +57352|599355|36889|1|28|40721.24|0.02|0.08|A|F|1992-08-21|1992-09-27|1992-09-20|DELIVER IN PERSON|MAIL|eodolites boost fluffi| +57352|350475|37997|2|50|76273.00|0.02|0.07|R|F|1992-11-28|1992-09-08|1992-12-04|DELIVER IN PERSON|TRUCK|ely even dolphins c| +57352|431821|6838|3|25|43820.00|0.00|0.03|A|F|1992-10-09|1992-10-29|1992-10-31|DELIVER IN PERSON|AIR|fts. pending,| +57352|614038|14039|4|5|4760.00|0.02|0.08|R|F|1992-10-25|1992-10-09|1992-11-21|NONE|RAIL|phs. carefully even accounts boost dogge| +57353|474115|11643|1|18|19603.62|0.09|0.04|N|O|1996-12-16|1997-01-08|1997-01-04|COLLECT COD|AIR|d courts are quickly. caref| +57353|442257|17274|2|34|40773.82|0.04|0.04|N|O|1997-02-28|1996-12-28|1997-03-13|NONE|REG AIR|ide of the slyly ironic accounts. special | +57354|636848|24385|1|31|55329.11|0.10|0.08|A|F|1992-05-21|1992-07-28|1992-05-30|COLLECT COD|MAIL|deposits. quickly bold | +57354|500802|38333|2|41|73913.98|0.08|0.06|R|F|1992-06-11|1992-07-05|1992-06-19|DELIVER IN PERSON|FOB|s across the accounts cajol| +57354|969444|44483|3|24|36321.60|0.00|0.03|A|F|1992-07-25|1992-07-31|1992-07-27|COLLECT COD|REG AIR|boost quickly even packages. ironic| +57354|439911|39912|4|10|18508.90|0.00|0.08|A|F|1992-06-11|1992-08-14|1992-06-26|DELIVER IN PERSON|FOB| instructio| +57354|572276|9810|5|3|4044.75|0.06|0.08|R|F|1992-08-28|1992-08-08|1992-09-17|TAKE BACK RETURN|REG AIR|s. even, final a| +57354|241820|41821|6|17|29950.77|0.05|0.06|R|F|1992-09-08|1992-07-27|1992-10-04|COLLECT COD|FOB| theodolites affix blithe| +57355|94804|44805|1|1|1798.80|0.09|0.03|N|O|1997-09-03|1997-10-03|1997-10-02|NONE|FOB| around the carefully ex| +57355|360500|10501|2|22|34330.78|0.07|0.08|N|O|1997-08-21|1997-09-10|1997-09-07|COLLECT COD|REG AIR|bove the quickly final theodolites | +57356|197999|48000|1|49|102752.51|0.03|0.02|N|O|1997-09-04|1997-10-22|1997-09-10|TAKE BACK RETURN|FOB|s cajole. regularly regular requests along| +57356|760384|35415|2|1|1444.35|0.04|0.06|N|O|1997-10-27|1997-09-29|1997-11-17|NONE|TRUCK|ep slyly ideas. regular, p| +57356|764877|39908|3|28|54371.52|0.08|0.01|N|O|1997-10-24|1997-11-02|1997-11-18|TAKE BACK RETURN|SHIP|finally pending requests afte| +57356|277687|40193|4|38|63257.46|0.04|0.07|N|O|1997-08-19|1997-09-30|1997-08-25|TAKE BACK RETURN|MAIL|he busy, final accoun| +57356|73502|36004|5|28|41314.00|0.04|0.06|N|O|1997-12-06|1997-09-20|1997-12-11|TAKE BACK RETURN|MAIL|equests. multipliers| +57356|336359|36360|6|48|66976.32|0.10|0.02|N|O|1997-11-01|1997-10-09|1997-11-18|TAKE BACK RETURN|MAIL|ss requests haggle evenly. sheaves are sl| +57357|729985|29986|1|1|2014.95|0.04|0.07|N|O|1995-11-12|1995-10-30|1995-12-11|COLLECT COD|SHIP|old excuses. blithely even theodolite| +57358|157818|32825|1|28|52522.68|0.09|0.00|A|F|1995-03-10|1995-04-24|1995-04-04|NONE|REG AIR|ual theodolites nag slyly regu| +57358|440402|2911|2|18|24162.84|0.06|0.03|A|F|1995-04-07|1995-04-01|1995-04-09|COLLECT COD|RAIL|thely ironic requests. slyly final ac| +57358|829119|16668|3|39|40874.73|0.00|0.02|N|F|1995-06-09|1995-05-25|1995-06-20|COLLECT COD|MAIL|es? requests around the ironic deposits c| +57358|2925|27926|4|22|40214.24|0.08|0.00|A|F|1995-03-09|1995-04-16|1995-03-24|TAKE BACK RETURN|SHIP| according to the blithe| +57358|145021|32528|5|1|1066.02|0.03|0.01|A|F|1995-03-16|1995-05-19|1995-04-02|COLLECT COD|FOB|ly slyly final sheaves. deposits | +57359|518153|5684|1|39|45674.07|0.01|0.08|R|F|1995-03-04|1995-03-12|1995-03-25|COLLECT COD|TRUCK|ctions hinder pending, regular| +57359|582115|19649|2|8|9576.72|0.05|0.06|A|F|1995-03-18|1995-04-22|1995-04-15|TAKE BACK RETURN|RAIL|onic, unusual deposits wak| +57359|599017|49018|3|19|21203.81|0.08|0.01|A|F|1995-02-02|1995-04-03|1995-02-10|NONE|FOB|the carefully silent | +57359|668727|18728|4|13|22043.97|0.08|0.02|A|F|1995-03-27|1995-03-04|1995-04-26|TAKE BACK RETURN|AIR|posits wake slyly regular the| +57359|286074|23590|5|10|10600.60|0.07|0.04|R|F|1995-03-04|1995-03-09|1995-03-07|DELIVER IN PERSON|FOB|ts. furiously silent asymptotes serv| +57359|40257|15258|6|24|28734.00|0.03|0.06|A|F|1995-03-29|1995-03-07|1995-04-07|TAKE BACK RETURN|RAIL|ve the slyly final dependencies. re| +57384|697921|47922|1|46|88268.94|0.04|0.00|N|O|1996-03-21|1996-03-11|1996-04-16|NONE|TRUCK|bold asymptotes. blithely ironic excus| +57384|958010|45568|2|29|30971.13|0.00|0.01|N|O|1996-05-02|1996-03-07|1996-05-16|DELIVER IN PERSON|REG AIR|tructions-- carefully bold forges nag f| +57384|258859|8860|3|23|41810.32|0.06|0.01|N|O|1996-03-14|1996-03-11|1996-04-02|DELIVER IN PERSON|REG AIR|ly regular excuses. ironi| +57384|629428|29429|4|50|67869.50|0.06|0.02|N|O|1996-01-17|1996-04-02|1996-01-25|DELIVER IN PERSON|SHIP|nts unwind against the carefu| +57384|793024|30570|5|31|34626.69|0.05|0.04|N|O|1996-05-09|1996-02-17|1996-05-22|TAKE BACK RETURN|MAIL|eodolites. blithely express| +57385|105968|30973|1|6|11843.76|0.02|0.05|N|O|1995-12-06|1996-02-09|1995-12-28|TAKE BACK RETURN|TRUCK|nic requests before the furiously thin es| +57385|988586|1106|2|3|5023.62|0.07|0.00|N|O|1996-03-02|1996-01-06|1996-03-18|NONE|REG AIR|ons boost. ironic deposits are furiously c| +57385|148908|36415|3|34|66534.60|0.01|0.00|N|O|1996-02-04|1995-12-22|1996-02-10|TAKE BACK RETURN|SHIP|ckages cajole blithel| +57385|690300|27840|4|42|54191.34|0.03|0.03|N|O|1996-03-14|1996-02-16|1996-03-30|COLLECT COD|AIR|ithely. furiously ironic | +57385|871588|34106|5|50|77977.00|0.08|0.03|N|O|1995-12-12|1995-12-29|1996-01-11|COLLECT COD|SHIP|ajole careful| +57385|765805|3351|6|4|7483.08|0.09|0.06|N|O|1996-02-09|1996-01-18|1996-02-14|NONE|FOB|inal requests cajole car| +57385|881542|19094|7|11|16758.50|0.05|0.03|N|O|1996-03-14|1996-02-04|1996-04-09|COLLECT COD|AIR|ithely express excuses are slyl| +57386|64763|2267|1|19|32827.44|0.04|0.00|R|F|1995-02-04|1995-02-27|1995-02-27|COLLECT COD|TRUCK| packages are agai| +57386|469907|19908|2|29|54429.52|0.09|0.05|R|F|1994-12-28|1995-01-30|1994-12-29|TAKE BACK RETURN|TRUCK|. quickly | +57386|714497|2040|3|33|49878.18|0.08|0.04|A|F|1995-03-18|1995-02-03|1995-04-04|TAKE BACK RETURN|SHIP|the blithely silent requests wake quickl| +57386|540644|28175|4|36|60646.32|0.10|0.05|A|F|1995-01-22|1995-01-06|1995-01-26|TAKE BACK RETURN|SHIP| requests was| +57386|601401|38938|5|2|2604.74|0.05|0.00|A|F|1995-03-31|1995-02-14|1995-04-30|COLLECT COD|SHIP|ependencies shall haggle| +57386|736615|24158|6|7|11561.06|0.04|0.01|A|F|1995-02-05|1995-01-28|1995-02-11|NONE|AIR|quests cajole around the requests. even, | +57387|803372|15889|1|48|61215.84|0.01|0.03|A|F|1993-02-09|1993-01-05|1993-02-13|DELIVER IN PERSON|TRUCK|slyly final accounts. theodoli| +57387|265210|27716|2|41|48183.20|0.00|0.00|A|F|1993-01-30|1992-12-29|1993-02-03|DELIVER IN PERSON|MAIL| silent ideas cajole | +57387|379344|4359|3|35|49816.55|0.10|0.05|R|F|1993-02-09|1993-01-20|1993-03-08|DELIVER IN PERSON|MAIL|to the fluffily regular accoun| +57387|627294|2319|4|46|56177.96|0.03|0.07|A|F|1993-03-18|1992-12-29|1993-04-16|NONE|MAIL|osits doubt. slyly bold frets wak| +57387|923075|48112|5|49|53803.47|0.04|0.06|R|F|1993-03-09|1992-12-30|1993-04-03|TAKE BACK RETURN|MAIL| special accounts hang. never ironic idea| +57388|24284|11785|1|38|45914.64|0.10|0.03|N|O|1996-09-14|1996-11-02|1996-10-01|COLLECT COD|RAIL|l excuses. even, special | +57388|129035|16542|2|46|48945.38|0.09|0.04|N|O|1996-10-22|1996-10-23|1996-11-18|COLLECT COD|REG AIR|special requests agains| +57388|683823|33824|3|13|23488.27|0.08|0.02|N|O|1996-09-11|1996-11-16|1996-10-09|TAKE BACK RETURN|TRUCK|y. slyly regular deposits | +57388|5508|18009|4|47|66434.50|0.07|0.02|N|O|1996-10-09|1996-11-03|1996-10-31|TAKE BACK RETURN|RAIL|counts doubt across the furiously| +57388|560537|48071|5|9|14377.59|0.00|0.04|N|O|1997-01-06|1996-12-05|1997-01-19|DELIVER IN PERSON|RAIL|accounts. quickly | +57388|930536|43055|6|32|50127.68|0.05|0.03|N|O|1996-10-29|1996-11-01|1996-11-16|COLLECT COD|AIR| packages. slyly u| +57388|511087|36108|7|24|26353.44|0.02|0.00|N|O|1996-09-14|1996-10-18|1996-09-25|NONE|AIR|lyly blithely ironic foxes. bold requ| +57389|823677|48710|1|41|65625.83|0.01|0.08|R|F|1995-02-09|1994-12-21|1995-03-10|DELIVER IN PERSON|REG AIR|posits wake | +57389|523367|35878|2|26|36148.84|0.04|0.01|R|F|1994-12-01|1994-12-13|1994-12-17|NONE|FOB|thely unusual accoun| +57389|213784|13785|3|28|47537.56|0.02|0.08|A|F|1995-02-19|1994-12-31|1995-02-27|NONE|TRUCK|affix among | +57389|55949|5950|4|35|66672.90|0.02|0.06|R|F|1995-02-25|1994-12-29|1995-03-06|NONE|SHIP|re carefully past the u| +57389|326817|39324|5|37|68220.60|0.10|0.02|A|F|1994-11-13|1994-12-07|1994-12-09|DELIVER IN PERSON|REG AIR|re furiously| +57389|805618|5619|6|33|50277.81|0.08|0.06|R|F|1994-11-10|1994-12-14|1994-11-26|COLLECT COD|AIR|old, ironic deposit| +57389|11147|48648|7|27|28569.78|0.07|0.08|A|F|1995-01-20|1995-01-07|1995-02-17|COLLECT COD|FOB|telets nag.| +57390|345460|45461|1|6|9032.70|0.07|0.08|N|O|1995-07-06|1995-06-28|1995-08-05|NONE|AIR|uests. unusual de| +57390|136604|49107|2|30|49218.00|0.05|0.07|N|O|1995-07-16|1995-06-27|1995-08-03|TAKE BACK RETURN|FOB|arefully alongside of| +57390|900031|37586|3|27|27836.73|0.03|0.04|N|O|1995-08-01|1995-06-04|1995-08-02|TAKE BACK RETURN|SHIP|e instructions. bli| +57390|811897|11898|4|16|28941.60|0.01|0.00|A|F|1995-05-28|1995-07-16|1995-06-12|COLLECT COD|AIR|furiously express ide| +57390|552648|2649|5|11|18706.82|0.03|0.02|N|O|1995-07-25|1995-06-27|1995-08-06|TAKE BACK RETURN|RAIL|nto beans. unusual packages wake caref| +57390|350628|13136|6|2|3357.22|0.08|0.08|A|F|1995-04-28|1995-07-19|1995-05-06|TAKE BACK RETURN|REG AIR|ully among the final, p| +57390|991584|4104|7|42|70372.68|0.05|0.04|A|F|1995-06-01|1995-06-10|1995-06-05|COLLECT COD|SHIP|rmanently.| +57391|546868|21889|1|9|17233.56|0.01|0.02|N|O|1997-02-01|1997-04-20|1997-03-01|TAKE BACK RETURN|FOB|ously final foxes. ironic pinto beans | +57391|197813|47814|2|35|66878.35|0.07|0.06|N|O|1997-04-03|1997-03-23|1997-04-07|COLLECT COD|RAIL|e final deposits. regular| +57391|633100|45613|3|4|4132.28|0.03|0.08|N|O|1997-03-22|1997-03-21|1997-04-10|TAKE BACK RETURN|REG AIR|ding to the thinly pend| +57391|500877|25898|4|37|69480.45|0.02|0.02|N|O|1997-04-09|1997-04-19|1997-05-02|DELIVER IN PERSON|TRUCK|ar instructions unwind care| +57391|236228|36229|5|22|25612.62|0.08|0.02|N|O|1997-03-16|1997-03-30|1997-04-02|COLLECT COD|SHIP|e unusual requests. fluffily fin| +57391|277837|27838|6|26|47185.32|0.09|0.02|N|O|1997-03-30|1997-03-08|1997-04-28|DELIVER IN PERSON|MAIL|ag slyly. furiously pen| +57391|605332|30357|7|17|21034.10|0.01|0.00|N|O|1997-05-08|1997-04-06|1997-05-12|DELIVER IN PERSON|SHIP| express accounts. deposits nag. sly| +57416|810823|35856|1|6|10402.68|0.01|0.08|A|F|1995-02-06|1995-03-17|1995-02-11|NONE|TRUCK|iously final| +57416|501104|38635|2|4|4420.32|0.06|0.08|A|F|1995-01-06|1995-02-11|1995-01-07|DELIVER IN PERSON|REG AIR| against the in| +57416|47662|47663|3|30|48289.80|0.03|0.05|R|F|1995-02-01|1995-03-11|1995-02-26|COLLECT COD|MAIL|ests cajole slyly final requ| +57417|952445|27484|1|47|70377.80|0.05|0.04|A|F|1993-02-08|1992-12-28|1993-02-19|COLLECT COD|MAIL|g, ironic dependencies? bus| +57417|730177|30178|2|2|2414.28|0.07|0.08|A|F|1992-11-29|1992-12-24|1992-12-07|NONE|SHIP|eans nag alo| +57417|79886|4889|3|11|20524.68|0.09|0.05|R|F|1993-01-07|1992-12-13|1993-01-17|COLLECT COD|TRUCK|sits nag after the slyly regular i| +57418|372477|34985|1|18|27890.28|0.01|0.06|A|F|1992-05-03|1992-06-03|1992-05-08|NONE|FOB|slyly regular pinto beans against the fu| +57418|220021|7534|2|6|5646.06|0.08|0.05|A|F|1992-04-11|1992-06-23|1992-04-29|NONE|REG AIR|ickly after the even deposits.| +57418|881392|18944|3|18|24720.30|0.03|0.03|R|F|1992-05-29|1992-05-15|1992-06-08|COLLECT COD|RAIL| haggle fluffily above the fluffily ironi| +57418|545134|20155|4|21|24761.31|0.06|0.01|A|F|1992-04-23|1992-06-20|1992-05-19|NONE|AIR|uickly bold theodolites. bl| +57418|62854|25356|5|43|78124.55|0.02|0.05|A|F|1992-06-21|1992-06-30|1992-06-23|NONE|SHIP|ts. even excuses wake. slyly fluf| +57419|984221|46741|1|37|48291.66|0.10|0.04|A|F|1992-06-22|1992-05-19|1992-07-05|DELIVER IN PERSON|TRUCK|lyly final asymp| +57419|797209|34755|2|26|33960.42|0.01|0.06|A|F|1992-06-25|1992-05-30|1992-07-22|TAKE BACK RETURN|SHIP|althy accounts wake carefully bold requ| +57419|687001|12028|3|33|32603.01|0.03|0.01|A|F|1992-05-11|1992-05-06|1992-05-13|DELIVER IN PERSON|TRUCK|inal asympt| +57419|417559|5084|4|8|11812.24|0.00|0.02|A|F|1992-07-09|1992-05-18|1992-07-21|DELIVER IN PERSON|MAIL|accounts sleep fluffily after the packages.| +57419|901019|38574|5|6|6119.82|0.02|0.00|A|F|1992-06-23|1992-05-15|1992-07-05|TAKE BACK RETURN|FOB| furiously slyly ironic dol| +57419|413732|13733|6|29|47725.59|0.01|0.01|R|F|1992-03-28|1992-05-19|1992-04-25|DELIVER IN PERSON|MAIL|nt, regular | +57420|496835|21854|1|20|36636.20|0.02|0.08|R|F|1994-12-19|1994-12-05|1995-01-12|DELIVER IN PERSON|TRUCK|s. carefully bold realms try to snooze ac| +57420|298279|23290|2|22|28099.72|0.08|0.05|R|F|1994-12-09|1994-12-30|1995-01-05|DELIVER IN PERSON|SHIP|wake never deposits. flu| +57421|342517|30036|1|22|34309.00|0.09|0.04|A|F|1995-02-26|1995-02-27|1995-03-06|TAKE BACK RETURN|SHIP|ecial requests. evenly regular| +57421|673747|36261|2|13|22369.23|0.08|0.08|A|F|1995-04-08|1995-02-13|1995-05-01|TAKE BACK RETURN|FOB|refully. furiously sile| +57422|349232|36751|1|8|10249.76|0.00|0.06|N|O|1997-12-26|1998-01-14|1998-01-08|COLLECT COD|RAIL|quests was after the slyly regular a| +57422|536722|36723|2|37|65071.90|0.05|0.02|N|O|1998-03-07|1997-12-24|1998-03-14|TAKE BACK RETURN|REG AIR|old pinto beans play bl| +57422|686506|11533|3|7|10447.29|0.02|0.05|N|O|1998-02-15|1998-01-11|1998-02-17|TAKE BACK RETURN|REG AIR|al requests. requests sleep carefully r| +57423|173415|23416|1|25|37210.25|0.10|0.03|N|O|1997-05-17|1997-05-29|1997-05-19|TAKE BACK RETURN|MAIL|egular accounts cajole quickl| +57423|577620|27621|2|38|64508.80|0.10|0.05|N|O|1997-04-16|1997-06-11|1997-04-22|TAKE BACK RETURN|MAIL| are among the blithely unusual idea| +57423|53579|16081|3|46|70498.22|0.06|0.04|N|O|1997-04-13|1997-05-15|1997-04-29|NONE|REG AIR|ng the even packages cajole against t| +57423|491873|41874|4|6|11189.10|0.03|0.01|N|O|1997-06-15|1997-05-23|1997-07-02|COLLECT COD|REG AIR|y express deposits. furiously regular| +57423|904629|17148|5|2|3267.16|0.01|0.05|N|O|1997-06-17|1997-05-02|1997-07-03|NONE|REG AIR|of the slyly bold| +57423|84842|34843|6|4|7307.36|0.03|0.01|N|O|1997-04-03|1997-05-25|1997-04-27|DELIVER IN PERSON|SHIP| furiously pending deposits.| +57448|739236|1751|1|3|3825.60|0.05|0.03|A|F|1992-08-11|1992-08-19|1992-08-22|TAKE BACK RETURN|TRUCK|kly pending pinto beans. fin| +57448|331968|6981|2|12|23999.40|0.10|0.04|R|F|1992-08-13|1992-08-22|1992-08-30|TAKE BACK RETURN|SHIP|e regularly. busily unusual dependenc| +57448|383638|33639|3|26|44762.12|0.03|0.08|A|F|1992-08-05|1992-08-15|1992-08-23|COLLECT COD|REG AIR|e at the care| +57448|798737|23768|4|23|42221.10|0.00|0.03|R|F|1992-07-08|1992-08-29|1992-07-29|TAKE BACK RETURN|TRUCK|posits are quickly. quickly regul| +57448|370234|7756|5|8|10433.76|0.00|0.00|A|F|1992-08-02|1992-08-10|1992-08-22|TAKE BACK RETURN|REG AIR|into beans across the c| +57448|506187|6188|6|27|32215.32|0.02|0.08|A|F|1992-07-06|1992-08-18|1992-07-15|COLLECT COD|REG AIR|olphins affix blith| +57449|528856|28857|1|19|35811.77|0.09|0.06|A|F|1992-10-11|1992-11-21|1992-10-29|COLLECT COD|TRUCK|fully final accounts haggle care| +57449|468739|43758|2|42|71723.82|0.01|0.04|A|F|1992-12-13|1992-10-05|1992-12-31|TAKE BACK RETURN|RAIL|regular dolphins sleep | +57449|93547|31051|3|13|20027.02|0.01|0.05|R|F|1992-12-17|1992-11-01|1993-01-01|TAKE BACK RETURN|RAIL| requests. blithely silent ideas sl| +57449|228098|15611|4|41|42069.28|0.02|0.07|R|F|1992-09-02|1992-11-24|1992-09-18|NONE|SHIP|arefully ironic requests nag | +57449|634893|22430|5|36|65802.96|0.02|0.06|R|F|1992-09-06|1992-09-28|1992-09-10|DELIVER IN PERSON|TRUCK|hes-- excuses sl| +57450|335513|23032|1|12|18582.00|0.09|0.03|R|F|1993-04-27|1993-04-29|1993-05-12|DELIVER IN PERSON|MAIL| regular foxes cajole slyly along th| +57450|953977|3978|2|34|69051.62|0.10|0.00|R|F|1993-03-02|1993-05-01|1993-03-27|DELIVER IN PERSON|MAIL|sts nag. brave| +57450|489349|14368|3|10|13383.20|0.07|0.03|R|F|1993-04-30|1993-04-22|1993-05-04|COLLECT COD|MAIL|s. bold pinto beans wake furiously | +57451|141654|16659|1|9|15260.85|0.05|0.07|N|O|1997-05-01|1997-06-26|1997-05-18|COLLECT COD|FOB|ding to the r| +57451|776207|1238|2|1|1283.17|0.05|0.06|N|O|1997-05-07|1997-05-19|1997-05-15|NONE|SHIP|l packages wake after the| +57451|707456|7457|3|26|38048.92|0.08|0.01|N|O|1997-06-07|1997-06-14|1997-06-30|DELIVER IN PERSON|TRUCK|ironic pin| +57452|262108|24614|1|50|53504.50|0.00|0.01|A|F|1994-09-04|1994-10-17|1994-09-14|NONE|FOB|press accounts. express pinto| +57452|243336|5841|2|22|28145.04|0.10|0.05|A|F|1994-10-28|1994-10-16|1994-11-07|DELIVER IN PERSON|TRUCK|the furiously ironic pack| +57452|733942|8971|3|41|81012.31|0.06|0.07|A|F|1994-11-25|1994-10-03|1994-12-21|DELIVER IN PERSON|FOB|haggle quickly| +57452|354031|4032|4|30|32550.60|0.07|0.05|R|F|1994-12-22|1994-10-26|1995-01-14|COLLECT COD|TRUCK|oxes are according to the ironic| +57452|191003|41004|5|34|37196.00|0.07|0.08|R|F|1994-10-25|1994-11-22|1994-11-03|COLLECT COD|SHIP|. furiously even accou| +57452|179939|4946|6|3|6056.79|0.01|0.06|A|F|1994-12-10|1994-10-15|1994-12-20|NONE|REG AIR|he furiously un| +57452|230947|5956|7|9|16901.37|0.06|0.03|R|F|1994-10-23|1994-10-14|1994-10-25|COLLECT COD|TRUCK|unusual requ| +57453|513419|25930|1|32|45836.48|0.06|0.01|A|F|1992-11-03|1992-10-08|1992-11-09|TAKE BACK RETURN|TRUCK|nto beans haggl| +57453|26633|26634|2|9|14036.67|0.04|0.00|R|F|1992-11-09|1992-11-25|1992-11-25|TAKE BACK RETURN|REG AIR|s. unusual, even theodolites are furiously.| +57453|616425|28938|3|15|20120.85|0.02|0.08|R|F|1992-12-13|1992-10-19|1992-12-16|DELIVER IN PERSON|SHIP|ct carefully behind the deposits. gr| +57453|254716|29727|4|37|61815.90|0.10|0.03|A|F|1992-11-26|1992-10-25|1992-12-07|TAKE BACK RETURN|RAIL|es. furiously even instructi| +57453|10665|10666|5|44|69329.04|0.01|0.02|R|F|1992-12-19|1992-10-21|1992-12-27|DELIVER IN PERSON|AIR|ickly ironic theodolites. furiously ironic | +57454|539603|2114|1|36|59132.88|0.01|0.06|N|O|1998-07-11|1998-08-21|1998-07-24|COLLECT COD|SHIP|odolites nag car| +57454|94619|44620|2|26|41953.86|0.06|0.07|N|O|1998-09-27|1998-07-14|1998-10-10|DELIVER IN PERSON|SHIP|refully ironic deposi| +57455|666418|16419|1|37|51222.06|0.04|0.00|R|F|1994-12-10|1994-12-31|1995-01-01|DELIVER IN PERSON|AIR|ic deposits sleep ironic excuses. pack| +57455|474506|49525|2|30|44414.40|0.06|0.01|A|F|1994-12-20|1994-12-29|1995-01-01|COLLECT COD|FOB|thely final instructions haggle caref| +57455|20445|45446|3|32|43694.08|0.01|0.03|R|F|1994-11-01|1994-12-19|1994-11-10|TAKE BACK RETURN|AIR|g carefully ac| +57455|616790|29303|4|4|6827.04|0.01|0.06|A|F|1995-02-19|1994-11-27|1995-03-03|COLLECT COD|REG AIR|ges: bold, bold theodolites affi| +57455|377653|2668|5|5|8653.20|0.01|0.01|A|F|1995-01-18|1995-01-03|1995-02-01|NONE|RAIL|he blithely unusual exc| +57480|755185|17701|1|47|58287.05|0.03|0.06|R|F|1993-04-26|1993-06-01|1993-05-02|DELIVER IN PERSON|TRUCK|arefully unusual ideas. ins| +57480|389490|27012|2|7|11056.36|0.05|0.04|R|F|1993-07-30|1993-05-18|1993-08-07|DELIVER IN PERSON|TRUCK|lets kindle blithely pendin| +57480|157165|32172|3|38|46442.08|0.05|0.01|A|F|1993-06-04|1993-07-13|1993-06-23|NONE|TRUCK|special asymptotes wa| +57480|467292|42311|4|35|44074.45|0.03|0.04|A|F|1993-06-17|1993-06-06|1993-06-19|NONE|FOB|atelets. furiously even ideas sleep stealth| +57480|774035|24036|5|6|6654.00|0.07|0.03|R|F|1993-05-29|1993-06-06|1993-06-06|COLLECT COD|MAIL| pending excuse| +57480|204440|4441|6|47|63188.21|0.00|0.05|A|F|1993-08-11|1993-06-15|1993-09-01|TAKE BACK RETURN|SHIP|silently regular platelets doze bl| +57480|13205|38206|7|49|54791.80|0.05|0.07|R|F|1993-06-05|1993-07-04|1993-06-09|NONE|FOB| sleep fluffily. | +57481|932142|44661|1|6|7044.60|0.01|0.03|N|O|1996-04-01|1996-03-12|1996-04-22|DELIVER IN PERSON|FOB|ts use furiously blithely careful| +57482|446888|21905|1|11|20183.46|0.03|0.01|N|O|1998-07-13|1998-08-17|1998-07-30|NONE|SHIP|ndencies. daringly p| +57482|839306|26855|2|14|17433.64|0.02|0.01|N|O|1998-09-24|1998-07-16|1998-09-30|COLLECT COD|REG AIR|ully even theodolites about the theodolites| +57482|213486|25991|3|49|68574.03|0.05|0.00|N|O|1998-07-20|1998-07-27|1998-08-10|COLLECT COD|RAIL|equests. carefu| +57482|56824|19326|4|7|12465.74|0.03|0.02|N|O|1998-07-30|1998-07-09|1998-08-27|NONE|SHIP|ts. regular p| +57482|38489|990|5|36|51389.28|0.10|0.06|N|O|1998-08-17|1998-08-03|1998-08-18|TAKE BACK RETURN|AIR| fluffily. slowly even requests ought| +57483|141494|41495|1|3|4606.47|0.10|0.03|A|F|1993-08-25|1993-10-06|1993-09-24|TAKE BACK RETURN|REG AIR|sts. unusual instructions haggle furious| +57483|80500|5503|2|42|62181.00|0.05|0.02|R|F|1993-09-08|1993-08-15|1993-09-28|DELIVER IN PERSON|MAIL|ites are carefully. final pint| +57483|963245|38284|3|7|9157.40|0.04|0.08|A|F|1993-10-20|1993-09-08|1993-11-13|COLLECT COD|MAIL| cajole slyly express dep| +57483|258539|46055|4|1|1497.52|0.08|0.07|A|F|1993-09-03|1993-09-14|1993-09-13|DELIVER IN PERSON|TRUCK|uests. pinto | +57483|256234|31245|5|21|24994.62|0.02|0.02|A|F|1993-11-07|1993-10-05|1993-11-23|DELIVER IN PERSON|TRUCK|efully regular pac| +57483|524574|24575|6|17|27175.35|0.08|0.05|R|F|1993-09-27|1993-08-27|1993-10-03|TAKE BACK RETURN|REG AIR|yers wake furiously ironic deposits. | +57484|261544|11545|1|13|19571.89|0.02|0.08|N|O|1995-12-04|1996-01-26|1995-12-23|COLLECT COD|AIR|boost slyly; hockey playe| +57484|759122|21638|2|35|41338.15|0.08|0.05|N|O|1996-01-24|1996-02-12|1996-02-06|NONE|TRUCK|bold deposits haggle quickly over th| +57485|530241|5262|1|8|10169.76|0.02|0.01|N|O|1998-02-06|1998-01-05|1998-02-16|NONE|SHIP|unts boost carefully even p| +57485|754520|29551|2|25|39362.25|0.04|0.02|N|O|1998-03-14|1998-01-22|1998-03-27|COLLECT COD|SHIP|ve slyly unusual accounts. bol| +57485|211533|11534|3|32|46224.64|0.04|0.03|N|O|1997-12-11|1998-01-15|1997-12-14|TAKE BACK RETURN|TRUCK|Tiresias. final accounts are blithely.| +57485|232014|19527|4|41|38786.00|0.02|0.06|N|O|1998-03-23|1998-01-13|1998-03-31|NONE|SHIP|ts. final foxes haggle furiously | +57485|455105|17615|5|4|4240.32|0.02|0.01|N|O|1998-02-27|1998-01-28|1998-03-13|COLLECT COD|TRUCK|usual accounts| +57485|933667|46186|6|29|49317.98|0.08|0.08|N|O|1998-02-18|1998-02-25|1998-02-22|TAKE BACK RETURN|REG AIR|gular, final theodoli| +57486|88046|38047|1|5|5170.20|0.03|0.05|N|O|1996-09-09|1996-10-28|1996-10-09|DELIVER IN PERSON|REG AIR|sly furiously regular accounts. carefully e| +57486|788346|25892|2|7|10040.17|0.07|0.00|N|O|1996-11-30|1996-11-02|1996-12-09|NONE|FOB|rious requests! blithely regular asympto| +57486|727042|14585|3|2|2138.02|0.06|0.00|N|O|1996-10-25|1996-09-05|1996-11-01|COLLECT COD|RAIL|he regular, special ideas wake f| +57486|383580|46088|4|1|1663.57|0.04|0.02|N|O|1996-11-04|1996-09-12|1996-12-01|NONE|AIR|hely ironic asymptot| +57486|821623|34140|5|2|3089.16|0.04|0.06|N|O|1996-09-14|1996-10-03|1996-09-19|COLLECT COD|MAIL|y final requests. spec| +57486|8922|21423|6|2|3661.84|0.08|0.03|N|O|1996-08-10|1996-09-16|1996-09-04|COLLECT COD|REG AIR|ain fluffily ironi| +57486|937317|49836|7|33|44690.91|0.09|0.07|N|O|1996-09-15|1996-10-13|1996-10-15|NONE|FOB|ar pinto beans are. pinto beans x-ray. | +57487|472962|10490|1|38|73527.72|0.06|0.04|R|F|1993-07-21|1993-07-26|1993-08-20|TAKE BACK RETURN|SHIP|al packages: blithely blithe i| +57487|72032|9536|2|18|18072.54|0.10|0.08|R|F|1993-08-19|1993-07-17|1993-09-14|TAKE BACK RETURN|TRUCK|le fluffily-| +57487|633285|45798|3|28|34111.00|0.07|0.06|R|F|1993-09-10|1993-07-14|1993-09-24|COLLECT COD|TRUCK|lar pinto beans u| +57487|620257|45282|4|23|27076.06|0.00|0.02|R|F|1993-05-27|1993-07-03|1993-06-11|COLLECT COD|TRUCK|express accounts ha| +57512|446941|46942|1|39|73628.88|0.03|0.01|N|O|1996-04-22|1996-06-06|1996-05-16|NONE|SHIP|lieve alongsi| +57512|720876|20877|2|48|91048.32|0.02|0.08|N|O|1996-07-10|1996-06-26|1996-08-04|NONE|FOB|ring instructions use above the fluffily r| +57512|761481|36512|3|36|55528.20|0.05|0.07|N|O|1996-05-29|1996-07-12|1996-06-27|NONE|MAIL|ffily pending packa| +57512|195922|33432|4|30|60537.60|0.01|0.08|N|O|1996-06-25|1996-06-06|1996-07-01|NONE|TRUCK|oost instructions! packages according | +57512|847999|10516|5|17|33098.15|0.07|0.05|N|O|1996-07-24|1996-06-14|1996-07-26|DELIVER IN PERSON|FOB|ng, final accounts; furiou| +57513|294109|31625|1|1|1103.09|0.08|0.02|A|F|1993-01-17|1992-12-05|1993-01-29|COLLECT COD|AIR|ages? fluffily even deposi| +57514|498646|36174|1|49|80586.38|0.04|0.07|A|F|1994-12-05|1994-12-27|1994-12-12|TAKE BACK RETURN|MAIL|ss foxes. quickly bold theodolites ca| +57514|731155|18698|2|47|55747.64|0.03|0.04|A|F|1995-01-07|1995-01-20|1995-01-21|COLLECT COD|RAIL|haggle against the pending ideas. car| +57514|518689|6220|3|26|44399.16|0.04|0.07|A|F|1994-12-06|1995-02-07|1995-01-04|COLLECT COD|SHIP|theodolites wake blithely acro| +57514|605418|30443|4|29|38378.02|0.01|0.01|R|F|1995-01-27|1994-12-16|1995-02-05|TAKE BACK RETURN|SHIP|y ironic courts| +57515|567890|30402|1|45|88104.15|0.01|0.01|R|F|1994-04-01|1994-05-15|1994-05-01|TAKE BACK RETURN|FOB|s are slyly ironic foxes.| +57515|519613|7144|2|28|45712.52|0.03|0.08|R|F|1994-06-23|1994-04-24|1994-07-03|TAKE BACK RETURN|MAIL|uests engage furiously express d| +57515|129561|29562|3|44|69984.64|0.08|0.03|R|F|1994-04-07|1994-05-13|1994-05-03|NONE|RAIL|ar requests mol| +57515|529217|16748|4|41|51093.79|0.08|0.08|A|F|1994-04-05|1994-04-05|1994-04-29|TAKE BACK RETURN|FOB|jole. carefully regular platele| +57515|539818|27349|5|43|79884.97|0.07|0.03|R|F|1994-05-22|1994-04-16|1994-06-12|DELIVER IN PERSON|AIR|al instructions. furiously expres| +57516|173879|36383|1|17|33198.79|0.02|0.07|R|F|1995-02-08|1995-01-25|1995-03-01|COLLECT COD|REG AIR|arefully i| +57516|371901|46916|2|6|11837.34|0.09|0.08|A|F|1995-01-21|1994-12-22|1995-01-31|COLLECT COD|FOB| across the carefully final pa| +57516|536791|11812|3|26|47522.02|0.02|0.00|A|F|1994-12-30|1995-01-20|1995-01-11|COLLECT COD|AIR|sts eat doggedly regular accounts: | +57516|832247|19796|4|14|16508.80|0.03|0.08|A|F|1994-11-29|1995-01-29|1994-12-09|COLLECT COD|FOB|intain regula| +57516|571011|46034|5|20|21639.80|0.06|0.03|A|F|1994-11-18|1994-12-20|1994-11-25|COLLECT COD|FOB|ing packages cajole after the p| +57517|472524|10052|1|47|70335.50|0.02|0.01|N|O|1998-04-08|1998-04-11|1998-04-20|TAKE BACK RETURN|RAIL| blithely ir| +57517|703498|28527|2|39|58556.94|0.06|0.04|N|O|1998-05-12|1998-05-16|1998-05-22|COLLECT COD|FOB|ly regular deposits| +57517|674211|24212|3|36|42666.48|0.01|0.06|N|O|1998-03-02|1998-04-11|1998-03-25|COLLECT COD|REG AIR|s are carefully. slyly daring packages | +57518|893730|18765|1|11|18960.59|0.04|0.02|N|O|1995-10-27|1995-11-23|1995-11-25|NONE|MAIL|quests wake stealthily aroun| +57518|911080|36117|2|27|29458.08|0.10|0.07|N|O|1995-08-31|1995-11-19|1995-09-21|COLLECT COD|TRUCK|telets haggle. furiously even packages| +57518|516089|28600|3|30|33151.80|0.06|0.04|N|O|1995-12-17|1995-11-10|1996-01-13|DELIVER IN PERSON|REG AIR|ly ironic waters boost carefull| +57518|899701|37253|4|21|35713.86|0.00|0.05|N|O|1995-12-06|1995-09-29|1995-12-31|TAKE BACK RETURN|TRUCK|e quickly a| +57518|258541|8542|5|2|2999.06|0.08|0.05|N|O|1995-10-04|1995-09-29|1995-10-05|TAKE BACK RETURN|TRUCK| ideas are furiously requests. caref| +57518|284315|21831|6|5|6496.50|0.08|0.01|N|O|1995-12-08|1995-10-15|1996-01-01|TAKE BACK RETURN|SHIP|e final courts. unusual sauterne| +57518|482158|44668|7|29|33063.77|0.03|0.00|N|O|1995-11-07|1995-10-11|1995-11-28|TAKE BACK RETURN|AIR|es. furiously bold| +57519|617475|5012|1|27|37595.88|0.08|0.05|R|F|1993-10-19|1993-10-15|1993-11-13|NONE|MAIL|osits about the furiously unusual packages| +57519|898217|10735|2|10|12151.70|0.01|0.01|R|F|1993-09-26|1993-11-17|1993-10-08|TAKE BACK RETURN|RAIL| the ruthlessly f| +57544|36208|36209|1|45|51489.00|0.00|0.08|R|F|1993-07-09|1993-07-25|1993-07-22|DELIVER IN PERSON|AIR|ke. ironic, final account| +57544|535695|48206|2|39|67496.13|0.10|0.04|A|F|1993-06-22|1993-07-30|1993-07-21|TAKE BACK RETURN|RAIL|ly according to the slyly final | +57544|420463|45480|3|43|59487.92|0.04|0.02|R|F|1993-08-15|1993-07-27|1993-08-30|NONE|MAIL|yly bold packages sl| +57545|210967|10968|1|42|78873.90|0.09|0.01|N|O|1996-12-25|1996-12-04|1997-01-11|NONE|REG AIR|tes. final platelets sno| +57545|709139|34168|2|5|5740.50|0.10|0.06|N|O|1996-09-17|1996-11-01|1996-09-21|DELIVER IN PERSON|FOB| ironic requests haggle slyly. silent | +57545|483701|46211|3|9|15162.12|0.03|0.00|N|O|1996-11-11|1996-11-08|1996-12-06|COLLECT COD|AIR|l accounts. fluffily bold foxes | +57545|556990|44524|4|50|102348.50|0.01|0.08|N|O|1996-10-21|1996-11-14|1996-10-28|DELIVER IN PERSON|SHIP|ggle permanent, final foxe| +57545|323256|10775|5|44|56286.56|0.08|0.07|N|O|1997-01-01|1996-11-28|1997-01-23|DELIVER IN PERSON|FOB|g against the quickly even asympto| +57545|962115|24635|6|37|43551.59|0.06|0.00|N|O|1996-11-20|1996-11-23|1996-12-17|COLLECT COD|RAIL|cajole closely. requests cajo| +57546|343460|30979|1|21|31572.45|0.02|0.02|A|F|1994-06-08|1994-04-30|1994-06-30|NONE|TRUCK|lent packages serve fluffily ev| +57546|519766|32277|2|6|10714.44|0.02|0.06|A|F|1994-04-26|1994-05-11|1994-05-05|NONE|AIR|t the requests are acros| +57547|395503|8011|1|4|6393.96|0.07|0.08|R|F|1994-07-19|1994-05-02|1994-07-21|DELIVER IN PERSON|REG AIR|ckly even ideas cajole careful| +57547|213507|1020|2|44|62501.56|0.09|0.01|R|F|1994-07-22|1994-06-05|1994-08-21|TAKE BACK RETURN|TRUCK|ly with the carefully ironi| +57547|402218|39743|3|2|2240.38|0.09|0.00|A|F|1994-04-16|1994-04-29|1994-05-03|NONE|FOB|beans! accounts should grow. a| +57548|187312|37313|1|41|57371.71|0.05|0.07|N|O|1996-01-07|1995-12-31|1996-01-17|DELIVER IN PERSON|FOB|eve slyly blithely bold instructions| +57548|136248|11253|2|14|17979.36|0.02|0.04|N|O|1995-11-28|1996-01-17|1995-12-19|TAKE BACK RETURN|TRUCK|ar, special instructio| +57548|916224|3779|3|22|27283.96|0.05|0.05|N|O|1995-12-04|1996-01-23|1995-12-11|NONE|REG AIR|hely. furiousl| +57548|965217|27737|4|1|1282.17|0.02|0.06|N|O|1995-12-06|1996-01-22|1995-12-21|NONE|FOB|, final attainments. | +57549|921777|34296|1|37|66553.01|0.01|0.05|A|F|1993-07-04|1993-04-28|1993-07-05|NONE|FOB|ongside of the | +57549|295594|33110|2|34|54045.72|0.04|0.07|A|F|1993-05-27|1993-06-14|1993-06-25|COLLECT COD|AIR|regular packag| +57549|36524|36525|3|38|55499.76|0.02|0.02|R|F|1993-04-07|1993-05-15|1993-05-04|TAKE BACK RETURN|RAIL|ut the pending requests.| +57550|636146|11171|1|47|50859.17|0.10|0.02|N|O|1996-05-07|1996-04-20|1996-05-11|TAKE BACK RETURN|SHIP|ate quickly?| +57550|702558|40101|2|45|70223.40|0.07|0.02|N|O|1996-06-16|1996-06-01|1996-07-07|TAKE BACK RETURN|RAIL| accounts are carefully furiously f| +57550|885356|10391|3|6|8047.86|0.03|0.04|N|O|1996-06-16|1996-04-12|1996-06-22|TAKE BACK RETURN|MAIL|final request| +57550|172307|22308|4|23|31723.90|0.01|0.01|N|O|1996-04-18|1996-05-11|1996-05-08|DELIVER IN PERSON|AIR|lithely ironic deposits. final| +57550|957052|44610|5|6|6654.06|0.04|0.01|N|O|1996-03-29|1996-06-02|1996-04-28|TAKE BACK RETURN|REG AIR|c requests? furiously fin| +57550|164189|26693|6|38|47620.84|0.10|0.02|N|O|1996-04-16|1996-05-23|1996-04-18|NONE|TRUCK|to beans. even pack| +57550|508859|21370|7|5|9339.15|0.00|0.07|N|O|1996-04-05|1996-04-26|1996-04-25|COLLECT COD|AIR| furiously ironic, express pin| +57551|382905|32906|1|6|11927.34|0.07|0.05|R|F|1994-12-05|1995-01-28|1994-12-22|NONE|TRUCK|e furiously pending p| +57551|478686|16214|2|16|26634.56|0.01|0.05|A|F|1994-12-20|1995-01-27|1995-01-03|TAKE BACK RETURN|FOB|riously ironic fre| +57551|267197|17198|3|32|37253.76|0.09|0.08|A|F|1994-11-23|1994-12-30|1994-12-22|COLLECT COD|RAIL|counts. special, ironic requests acros| +57551|764937|27453|4|9|18017.10|0.04|0.05|R|F|1994-12-30|1995-01-25|1995-01-20|NONE|RAIL|unts wake about the furiously final platele| +57551|287813|37814|5|39|70231.20|0.01|0.04|A|F|1994-11-24|1995-01-25|1994-12-21|DELIVER IN PERSON|AIR|yly final packages wake fluff| +57576|775951|38467|1|10|20269.20|0.03|0.07|N|O|1997-04-17|1997-03-13|1997-05-13|DELIVER IN PERSON|SHIP|jole about the | +57576|399016|24031|2|44|49060.00|0.04|0.00|N|O|1997-04-22|1997-03-13|1997-04-28|DELIVER IN PERSON|MAIL|sits. furiously ir| +57577|40976|3477|1|17|32588.49|0.02|0.07|N|O|1996-01-18|1996-04-04|1996-01-19|NONE|TRUCK|l dolphins c| +57577|670712|20713|2|11|18509.48|0.03|0.05|N|O|1996-03-04|1996-02-17|1996-03-22|NONE|REG AIR|und the even pinto beans. steal| +57577|644729|44730|3|36|60252.84|0.10|0.08|N|O|1996-05-16|1996-02-16|1996-05-23|TAKE BACK RETURN|REG AIR|ithely fluffily ironic pl| +57578|976072|26073|1|44|50513.32|0.07|0.04|A|F|1994-09-29|1994-08-27|1994-10-12|NONE|AIR|platelets sl| +57578|825949|25950|2|48|89995.20|0.01|0.05|R|F|1994-06-16|1994-08-04|1994-06-26|COLLECT COD|SHIP|ng realms.| +57578|709185|9186|3|17|20300.55|0.07|0.08|R|F|1994-07-11|1994-07-20|1994-07-21|NONE|RAIL|quickly final deposits | +57578|261282|11283|4|2|2486.54|0.01|0.05|R|F|1994-07-30|1994-08-22|1994-08-25|COLLECT COD|TRUCK|n foxes affix quickly across the blithely| +57579|813222|25739|1|44|49947.92|0.05|0.07|N|O|1996-06-19|1996-05-18|1996-07-18|TAKE BACK RETURN|TRUCK|ccounts could print at the packages.| +57579|814458|2007|2|20|27448.20|0.08|0.03|N|O|1996-04-14|1996-06-02|1996-04-19|COLLECT COD|MAIL|riously regular accounts integrate f| +57579|590565|28099|3|23|38077.42|0.08|0.02|N|O|1996-08-02|1996-06-08|1996-08-22|DELIVER IN PERSON|AIR|onic, fina| +57579|617566|5103|4|3|4450.59|0.09|0.00|N|O|1996-06-01|1996-06-13|1996-06-21|TAKE BACK RETURN|TRUCK| ironic accounts breach | +57579|418419|30928|5|3|4012.17|0.10|0.02|N|O|1996-04-19|1996-06-23|1996-05-05|DELIVER IN PERSON|TRUCK|carefully final ideas doze | +57579|359477|9478|6|46|70677.16|0.02|0.05|N|O|1996-06-16|1996-05-21|1996-07-14|TAKE BACK RETURN|REG AIR|sly after the ironic requests. stea| +57580|124004|24005|1|44|45232.00|0.10|0.04|N|O|1996-12-10|1996-11-24|1996-12-18|TAKE BACK RETURN|SHIP|entiments are fluffily blithely iro| +57580|126501|1506|2|38|58045.00|0.02|0.00|N|O|1997-01-24|1996-11-11|1997-02-19|COLLECT COD|SHIP|aggle carefully foxes. quickly reg| +57580|90976|15979|3|19|37372.43|0.07|0.07|N|O|1996-12-13|1996-11-25|1997-01-02|DELIVER IN PERSON|AIR|its breach fluffily ironic | +57580|29506|4507|4|18|25839.00|0.00|0.08|N|O|1996-11-17|1996-11-11|1996-11-25|DELIVER IN PERSON|SHIP|ounts along the bl| +57580|897164|47165|5|44|51089.28|0.07|0.03|N|O|1997-02-02|1996-12-10|1997-02-20|COLLECT COD|RAIL|uriously quickly regular packages-- slyly| +57581|103781|28786|1|49|87454.22|0.09|0.06|A|F|1992-02-19|1992-03-14|1992-03-08|NONE|SHIP|he quickly special requests| +57582|626644|39157|1|33|51830.13|0.09|0.03|R|F|1994-09-28|1994-09-09|1994-10-07|TAKE BACK RETURN|RAIL|longside of the pending accounts. carefu| +57582|1533|1534|2|40|57381.20|0.00|0.05|R|F|1994-07-16|1994-08-31|1994-08-10|TAKE BACK RETURN|AIR|nes detect furiously; bold excuses | +57583|184473|21983|1|5|7787.35|0.09|0.02|R|F|1992-07-23|1992-06-16|1992-08-21|DELIVER IN PERSON|SHIP|. courts cajole carefull| +57583|425441|37950|2|32|43725.44|0.04|0.08|R|F|1992-07-13|1992-06-25|1992-08-03|TAKE BACK RETURN|SHIP|nusual pack| +57583|382119|32120|3|41|49245.10|0.05|0.07|R|F|1992-07-08|1992-06-20|1992-07-20|NONE|TRUCK|nstructions--| +57583|268659|6175|4|16|26042.24|0.01|0.05|A|F|1992-08-27|1992-07-16|1992-09-13|COLLECT COD|RAIL|foxes wake c| +57583|344581|19594|5|27|43890.39|0.06|0.03|A|F|1992-07-14|1992-08-05|1992-08-10|DELIVER IN PERSON|AIR| nag. requests cajole fl| +57583|364473|39488|6|36|55348.56|0.06|0.06|A|F|1992-07-26|1992-07-16|1992-07-30|TAKE BACK RETURN|REG AIR|ts integrate slyly carefull| +57608|367150|42165|1|46|55988.44|0.09|0.01|A|F|1993-11-15|1993-11-07|1993-11-22|DELIVER IN PERSON|FOB|uickly final deposits use. expre| +57608|684345|46859|2|48|63806.88|0.09|0.07|R|F|1993-11-04|1993-09-18|1993-11-23|NONE|FOB|fully after the even, special dep| +57608|779823|29824|3|20|38055.80|0.10|0.05|A|F|1993-10-08|1993-10-15|1993-10-28|COLLECT COD|RAIL|ag bravely blithely pending theodolite| +57608|468655|31165|4|37|60074.31|0.08|0.01|R|F|1993-09-24|1993-10-24|1993-10-16|NONE|REG AIR|ven foxes boost carefully blithely fin| +57609|484261|9280|1|16|19923.84|0.05|0.02|A|F|1993-07-26|1993-07-01|1993-08-09|NONE|REG AIR|sts. slyly e| +57609|968003|30523|2|9|9638.64|0.03|0.02|R|F|1993-06-23|1993-07-10|1993-07-04|COLLECT COD|RAIL|ecial deposits run carefully| +57609|225054|37559|3|36|35245.44|0.00|0.04|A|F|1993-06-28|1993-06-12|1993-07-25|TAKE BACK RETURN|AIR|ickly above the closely e| +57609|471921|9449|4|39|73823.10|0.01|0.06|A|F|1993-05-22|1993-06-20|1993-06-15|TAKE BACK RETURN|REG AIR|quests around the platelets are against | +57609|574501|37013|5|24|37811.52|0.09|0.03|A|F|1993-07-16|1993-06-07|1993-07-21|TAKE BACK RETURN|TRUCK|gular, silent dolphins accor| +57609|627267|14804|6|40|47769.20|0.07|0.08|A|F|1993-07-14|1993-07-25|1993-08-09|TAKE BACK RETURN|RAIL|fully careful fo| +57609|467345|4873|7|27|35432.64|0.08|0.07|R|F|1993-05-14|1993-07-30|1993-05-31|TAKE BACK RETURN|REG AIR|ing to the r| +57610|667368|29882|1|33|44065.89|0.10|0.03|R|F|1995-03-25|1995-03-30|1995-03-28|NONE|RAIL|s serve. furi| +57610|453730|16240|2|12|20204.52|0.03|0.03|R|F|1995-04-28|1995-03-23|1995-05-17|COLLECT COD|AIR|refully acc| +57610|827102|39619|3|15|15435.90|0.02|0.02|R|F|1995-03-01|1995-03-13|1995-03-22|NONE|SHIP| packages at| +57611|500824|38355|1|42|76641.60|0.01|0.01|N|O|1998-01-15|1998-01-26|1998-01-30|NONE|AIR|ously special packages haggle caref| +57611|343756|18769|2|5|8998.70|0.00|0.00|N|O|1998-03-26|1998-02-04|1998-03-28|COLLECT COD|RAIL| the furiously unusual deposit| +57611|497704|35232|3|47|79978.96|0.05|0.00|N|O|1997-12-25|1998-02-02|1998-01-09|NONE|SHIP|ily final accounts. final requests ha| +57612|363360|13361|1|46|65474.10|0.03|0.01|A|F|1993-08-12|1993-08-22|1993-08-28|COLLECT COD|TRUCK|even, even requests cajole bravely | +57612|982513|20071|2|48|76582.56|0.06|0.02|A|F|1993-09-28|1993-08-03|1993-10-14|TAKE BACK RETURN|RAIL| packages are. e| +57612|80077|30078|3|23|24312.61|0.03|0.00|R|F|1993-07-31|1993-08-19|1993-08-20|NONE|MAIL|y. accounts| +57613|240714|15723|1|43|71152.10|0.03|0.00|A|F|1993-05-16|1993-05-11|1993-05-20|COLLECT COD|REG AIR| carefully along the special reque| +57613|674496|24497|2|48|70582.08|0.08|0.07|A|F|1993-05-06|1993-05-10|1993-05-15|COLLECT COD|REG AIR|ending, final instruction| +57613|248833|23842|3|24|42763.68|0.03|0.06|A|F|1993-06-14|1993-06-07|1993-07-06|COLLECT COD|MAIL|fter the regular| +57613|135094|47597|4|28|31614.52|0.02|0.01|R|F|1993-03-29|1993-06-03|1993-04-20|NONE|RAIL|y pending dolph| +57613|517511|30022|5|49|74896.01|0.04|0.00|R|F|1993-06-20|1993-06-05|1993-07-03|DELIVER IN PERSON|REG AIR|thely. final warho| +57614|949523|24560|1|19|29877.12|0.08|0.01|N|O|1997-03-22|1997-04-11|1997-04-03|TAKE BACK RETURN|MAIL|nstructions use quickly r| +57614|623373|10910|2|32|41482.88|0.10|0.02|N|O|1997-06-27|1997-04-17|1997-07-07|TAKE BACK RETURN|SHIP|ilent depo| +57615|422612|35121|1|13|19949.67|0.02|0.03|A|F|1993-03-21|1993-03-16|1993-03-22|COLLECT COD|TRUCK|kages haggle slyly. blit| +57615|830360|5393|2|26|33548.32|0.00|0.04|R|F|1993-04-11|1993-03-29|1993-04-28|NONE|AIR|ously express accounts integrate bl| +57615|845485|8002|3|13|18595.72|0.06|0.08|R|F|1993-03-31|1993-02-25|1993-04-14|DELIVER IN PERSON|FOB| blithely thin requests nag car| +57615|59381|21883|4|37|49594.06|0.02|0.06|A|F|1993-02-27|1993-03-05|1993-03-04|NONE|MAIL|ending deposits detect. accounts | +57640|170409|32913|1|26|38464.40|0.02|0.04|N|O|1998-05-23|1998-07-07|1998-05-29|NONE|AIR|refully around the quic| +57640|57350|32353|2|38|49679.30|0.06|0.02|N|O|1998-05-29|1998-07-02|1998-06-27|NONE|TRUCK|s along the ironic deposits s| +57641|390548|28070|1|3|4915.59|0.02|0.04|N|O|1998-06-16|1998-06-16|1998-06-17|DELIVER IN PERSON|MAIL|ach epitaphs-- regular de| +57641|937847|366|2|13|24502.40|0.02|0.05|N|O|1998-05-20|1998-06-03|1998-05-26|TAKE BACK RETURN|SHIP|ld platelets nag across t| +57641|378948|16470|3|30|60807.90|0.05|0.03|N|O|1998-06-12|1998-05-03|1998-06-29|COLLECT COD|FOB|l excuses haggle carefu| +57641|971898|9456|4|33|65005.05|0.09|0.06|N|O|1998-04-30|1998-06-17|1998-05-18|TAKE BACK RETURN|AIR| the dugouts. pinto beans nag carefully af| +57641|687256|12283|5|26|32323.72|0.05|0.03|N|O|1998-05-18|1998-04-30|1998-06-12|TAKE BACK RETURN|RAIL|nding deposits haggle alo| +57641|703279|15794|6|33|42313.92|0.00|0.03|N|O|1998-04-30|1998-05-21|1998-05-23|DELIVER IN PERSON|RAIL|al dolphins haggle furiously fro| +57641|993806|18845|7|12|22797.12|0.05|0.01|N|O|1998-06-03|1998-05-07|1998-06-11|DELIVER IN PERSON|FOB|e pinto beans haggle a| +57642|888166|25718|1|7|8078.84|0.09|0.01|R|F|1993-09-21|1993-07-18|1993-10-19|TAKE BACK RETURN|AIR|latelets cajole furi| +57642|397206|9714|2|33|43005.27|0.01|0.04|A|F|1993-08-04|1993-07-28|1993-08-19|DELIVER IN PERSON|SHIP|ickly bold pinto beans nag slyly within| +57642|836042|11075|3|24|23472.00|0.02|0.01|R|F|1993-08-05|1993-09-08|1993-08-24|NONE|TRUCK|uriously foxes. quiet, pending deposits a| +57642|348713|23726|4|35|61659.50|0.01|0.04|A|F|1993-06-16|1993-08-04|1993-06-17|COLLECT COD|FOB|ckly boldly bus| +57642|803645|16162|5|22|34069.20|0.08|0.00|A|F|1993-07-14|1993-07-22|1993-08-04|DELIVER IN PERSON|MAIL|ounts boost| +57643|9781|47282|1|26|43960.28|0.06|0.04|N|O|1998-01-24|1998-01-27|1998-02-08|TAKE BACK RETURN|SHIP|s. slyly dar| +57643|381374|6389|2|20|29107.20|0.09|0.03|N|O|1997-12-13|1998-01-13|1997-12-23|DELIVER IN PERSON|AIR|quickly regular | +57643|747861|10376|3|28|53447.24|0.09|0.02|N|O|1998-01-25|1998-02-27|1998-02-14|NONE|RAIL|ites haggle.| +57643|297278|9784|4|47|59937.22|0.04|0.06|N|O|1997-12-14|1998-02-11|1998-01-04|NONE|RAIL|beans are flu| +57643|346708|21721|5|28|49131.32|0.07|0.07|N|O|1998-03-04|1998-02-07|1998-04-03|DELIVER IN PERSON|RAIL|jole blithely a| +57644|960955|35994|1|33|66525.03|0.05|0.07|N|O|1996-01-26|1995-12-16|1996-02-03|DELIVER IN PERSON|MAIL|ng the furiously unusual accounts. bold, e| +57644|767821|5367|2|45|84995.55|0.04|0.05|N|O|1995-10-30|1995-12-26|1995-11-27|DELIVER IN PERSON|AIR|uriously final| +57644|759586|47132|3|12|19746.60|0.08|0.05|N|O|1995-11-10|1995-10-31|1995-11-14|COLLECT COD|TRUCK|instructions nag al| +57645|326055|13574|1|1|1081.04|0.07|0.03|R|F|1992-10-28|1992-10-25|1992-11-13|TAKE BACK RETURN|FOB| excuses could hang blithe| +57645|2046|27047|2|15|14220.60|0.04|0.01|A|F|1992-12-03|1992-11-25|1992-12-26|DELIVER IN PERSON|TRUCK|ndencies-- carefully re| +57645|372021|34529|3|28|30604.28|0.00|0.00|A|F|1992-11-15|1992-11-11|1992-11-18|NONE|SHIP|furiously regu| +57646|771618|9164|1|8|13516.64|0.01|0.03|A|F|1995-03-01|1995-01-23|1995-03-29|TAKE BACK RETURN|TRUCK|oost carefully pending w| +57646|580473|18007|2|48|74565.60|0.08|0.08|R|F|1994-12-27|1995-02-23|1994-12-30|DELIVER IN PERSON|SHIP|ns. special ideas from the fluff| +57646|998567|36125|3|49|81610.48|0.06|0.02|R|F|1995-01-26|1995-03-03|1995-02-19|DELIVER IN PERSON|MAIL|totes unwind quickly abo| +57646|899675|49676|4|39|65310.57|0.02|0.02|R|F|1995-02-18|1995-02-14|1995-02-28|TAKE BACK RETURN|REG AIR|ckages. carefully final courts boost blithe| +57646|823637|11186|5|7|10924.13|0.10|0.07|A|F|1995-01-07|1995-02-04|1995-01-17|DELIVER IN PERSON|MAIL|wly final instructions. blithel| +57647|888294|38295|1|3|3846.75|0.10|0.06|N|O|1998-08-01|1998-08-14|1998-08-13|DELIVER IN PERSON|REG AIR|long the final realms. regular, even| +57647|555601|5602|2|38|62950.04|0.02|0.06|N|O|1998-08-10|1998-08-19|1998-08-18|DELIVER IN PERSON|AIR| asymptotes. carefully regul| +57647|984945|34946|3|33|66986.70|0.07|0.02|N|O|1998-10-15|1998-10-01|1998-10-18|COLLECT COD|REG AIR|uests. car| +57647|962494|37533|4|8|12451.60|0.07|0.02|N|O|1998-08-27|1998-09-04|1998-09-04|TAKE BACK RETURN|FOB|ag carefully about the reques| +57647|630277|30278|5|9|10865.16|0.08|0.08|N|O|1998-09-26|1998-09-18|1998-10-17|NONE|RAIL|ounts mold blithely flu| +57647|63563|13564|6|29|44270.24|0.01|0.08|N|O|1998-08-23|1998-09-05|1998-09-16|COLLECT COD|RAIL|onic accoun| +57672|209264|9265|1|23|26984.75|0.09|0.05|N|O|1997-07-14|1997-07-11|1997-08-11|DELIVER IN PERSON|SHIP|ntain above the silent dependen| +57672|87316|49818|2|28|36492.68|0.02|0.02|N|O|1997-06-04|1997-07-20|1997-07-01|DELIVER IN PERSON|SHIP| ideas nag quickly furiously r| +57672|507145|44676|3|48|55301.76|0.10|0.01|N|O|1997-08-12|1997-08-24|1997-09-05|DELIVER IN PERSON|RAIL| the quickly final pinto beans. i| +57672|577585|15119|4|17|28263.52|0.04|0.00|N|O|1997-09-08|1997-07-08|1997-09-27|DELIVER IN PERSON|MAIL|packages wake among th| +57672|467149|17150|5|28|31251.36|0.03|0.03|N|O|1997-08-23|1997-08-30|1997-08-28|COLLECT COD|TRUCK|fily pending accounts believe above t| +57672|365408|27916|6|26|38308.14|0.03|0.02|N|O|1997-06-26|1997-08-28|1997-06-27|DELIVER IN PERSON|SHIP| slyly along the slyly qu| +57672|397837|47838|7|28|54174.96|0.03|0.03|N|O|1997-08-26|1997-07-29|1997-09-17|COLLECT COD|TRUCK|s the furiously regular courts haggle quic| +57673|430457|17982|1|41|56884.63|0.01|0.02|R|F|1995-03-01|1995-04-03|1995-03-26|NONE|TRUCK|uests sleep. fluffily | +57673|684842|47356|2|42|76726.02|0.01|0.05|R|F|1995-03-10|1995-03-03|1995-03-28|NONE|RAIL|. packages affix idly. care| +57673|127404|2409|3|45|64413.00|0.10|0.01|A|F|1995-04-23|1995-03-04|1995-04-24|COLLECT COD|MAIL| final dinos sleep quickly about the sil| +57673|278875|16391|4|28|51908.08|0.10|0.06|R|F|1995-05-04|1995-03-24|1995-06-03|COLLECT COD|REG AIR|cial, express packages wa| +57674|695521|8035|1|15|22747.35|0.03|0.01|N|O|1996-08-04|1996-06-08|1996-08-20|COLLECT COD|SHIP|the slyly ironic pin| +57674|614524|39549|2|24|34523.76|0.01|0.04|N|O|1996-06-21|1996-06-16|1996-07-15|TAKE BACK RETURN|RAIL|l asymptotes| +57674|295471|32987|3|13|19063.98|0.01|0.08|N|O|1996-08-30|1996-06-18|1996-09-12|TAKE BACK RETURN|FOB|oost carefully across the fluffily| +57674|980498|18056|4|47|74187.15|0.09|0.07|N|O|1996-07-07|1996-06-09|1996-07-26|TAKE BACK RETURN|SHIP| cajole carefully even pac| +57674|213233|25738|5|17|19485.74|0.04|0.05|N|O|1996-08-18|1996-06-20|1996-08-19|TAKE BACK RETURN|AIR|onic pinto be| +57674|792611|17642|6|37|63032.46|0.02|0.05|N|O|1996-07-05|1996-06-09|1996-07-24|DELIVER IN PERSON|FOB| pending deposits. even hockey p| +57674|411544|11545|7|34|49487.68|0.05|0.04|N|O|1996-08-30|1996-07-14|1996-09-12|TAKE BACK RETURN|FOB|deposits. | +57675|812636|12637|1|44|68137.96|0.07|0.04|A|F|1994-02-13|1994-03-31|1994-02-24|DELIVER IN PERSON|REG AIR|ic dependencies. slyly final accounts| +57675|963102|13103|2|3|3495.18|0.06|0.00|R|F|1994-03-08|1994-05-03|1994-04-05|COLLECT COD|TRUCK|boost quickly unusu| +57675|846655|46656|3|31|49649.91|0.07|0.03|R|F|1994-04-25|1994-04-08|1994-05-07|TAKE BACK RETURN|TRUCK| even deposits at the final deposits| +57675|729911|17454|4|27|52403.76|0.05|0.07|R|F|1994-05-26|1994-05-01|1994-06-19|TAKE BACK RETURN|REG AIR|ts serve blithely. even, regular requ| +57675|610012|22525|5|2|1843.96|0.09|0.00|A|F|1994-03-25|1994-04-26|1994-04-21|COLLECT COD|REG AIR| final asymptotes about | +57675|459824|9825|6|21|37459.80|0.07|0.06|A|F|1994-03-27|1994-03-26|1994-04-05|DELIVER IN PERSON|AIR|y. fluffily | +57675|250922|38438|7|26|48695.66|0.04|0.01|R|F|1994-02-21|1994-03-11|1994-03-19|DELIVER IN PERSON|MAIL|cross the regular packages sleep caref| +57676|230835|30836|1|37|65335.34|0.05|0.05|N|O|1998-07-01|1998-08-30|1998-07-28|COLLECT COD|REG AIR|yly blithely spec| +57676|631655|19192|2|9|14279.58|0.08|0.06|N|O|1998-07-26|1998-07-08|1998-08-02|COLLECT COD|AIR|ounts. slyly final requests wa| +57677|839947|14980|1|24|45285.60|0.00|0.08|N|O|1997-03-20|1997-01-25|1997-04-04|NONE|MAIL|e ruthlessly according to th| +57678|748641|11156|1|2|3379.22|0.03|0.08|A|F|1992-06-10|1992-08-03|1992-06-26|TAKE BACK RETURN|REG AIR|ng the caref| +57678|404349|29366|2|28|35092.96|0.02|0.06|R|F|1992-06-17|1992-07-04|1992-06-28|NONE|FOB|uffily above the pending, bli| +57678|889721|14756|3|22|37634.96|0.05|0.04|A|F|1992-08-28|1992-07-16|1992-09-10|COLLECT COD|SHIP|ntain slyly pending sentiments; fur| +57679|883788|46306|1|20|35434.80|0.00|0.08|A|F|1992-10-22|1993-01-16|1992-10-26|TAKE BACK RETURN|MAIL|, unusual requests| +57704|391829|16844|1|33|63386.73|0.07|0.03|A|F|1994-06-12|1994-05-25|1994-06-29|COLLECT COD|MAIL|gular accounts wake blithely across| +57705|119542|44547|1|1|1561.54|0.04|0.00|N|O|1996-08-21|1996-09-08|1996-08-29|TAKE BACK RETURN|REG AIR| the even accounts affix slyly across th| +57705|137792|12797|2|25|45744.75|0.02|0.01|N|O|1996-08-08|1996-07-25|1996-08-11|TAKE BACK RETURN|SHIP| to the special deposits sleep about the| +57705|854682|17200|3|17|27822.88|0.01|0.08|N|O|1996-07-19|1996-09-03|1996-07-21|TAKE BACK RETURN|FOB| pinto beans | +57706|996514|9034|1|50|80523.50|0.03|0.06|A|F|1993-06-01|1993-05-25|1993-06-17|NONE|AIR|en, bold instructions mold furiously ironic| +57706|397392|9900|2|13|19361.94|0.02|0.02|A|F|1993-05-09|1993-07-07|1993-05-10|DELIVER IN PERSON|AIR| blithely. careful| +57706|956893|31932|3|30|58495.50|0.08|0.03|A|F|1993-05-29|1993-05-18|1993-06-17|NONE|SHIP|e of the spe| +57706|488650|26178|4|31|50797.53|0.03|0.06|R|F|1993-08-11|1993-06-24|1993-09-02|DELIVER IN PERSON|AIR|jole blithely.| +57706|737529|44|5|5|7832.45|0.10|0.01|A|F|1993-08-10|1993-07-03|1993-08-25|COLLECT COD|RAIL|ons. final deposits affix slyly. foxes a| +57706|636249|11274|6|40|47408.40|0.04|0.04|R|F|1993-08-06|1993-05-30|1993-08-25|COLLECT COD|RAIL|ily carefully fi| +57706|427286|14811|7|13|15772.38|0.00|0.01|R|F|1993-08-09|1993-06-09|1993-08-12|COLLECT COD|MAIL|will wake carefully acr| +57707|393880|43881|1|34|67111.58|0.08|0.00|N|O|1995-10-20|1995-10-05|1995-11-06|NONE|MAIL|carefully final deposits promise caref| +57707|939581|14618|2|24|38892.96|0.00|0.01|N|O|1995-09-14|1995-10-08|1995-09-16|COLLECT COD|TRUCK| haggle abo| +57707|521224|8755|3|29|36110.80|0.08|0.07|N|O|1995-09-02|1995-09-19|1995-09-08|COLLECT COD|RAIL|atelets. pending de| +57707|211366|11367|4|17|21714.95|0.02|0.04|N|O|1995-10-15|1995-09-25|1995-11-02|COLLECT COD|FOB|ironic excuses. express requests wi| +57707|420587|45604|5|23|34673.88|0.02|0.01|N|O|1995-11-22|1995-09-30|1995-12-16|TAKE BACK RETURN|TRUCK| regular asy| +57707|793159|18190|6|46|57597.52|0.10|0.04|N|O|1995-11-05|1995-09-21|1995-12-01|COLLECT COD|MAIL|sleep regular, regular dependenc| +57708|533336|8357|1|29|39709.99|0.03|0.06|A|F|1994-03-31|1994-02-02|1994-04-05|TAKE BACK RETURN|REG AIR|slyly across the | +57708|777187|2218|2|22|27811.30|0.10|0.01|R|F|1994-03-26|1994-03-04|1994-03-27|TAKE BACK RETURN|REG AIR|r requests sleep. quickly final accounts ha| +57708|174638|49645|3|36|61654.68|0.05|0.06|A|F|1994-04-10|1994-02-25|1994-04-23|TAKE BACK RETURN|MAIL| quickly unusual de| +57708|124782|37285|4|46|83111.88|0.08|0.00|R|F|1994-01-05|1994-02-25|1994-01-30|DELIVER IN PERSON|MAIL|, unusual deposits are sometimes. regular f| +57708|205663|43176|5|48|75295.20|0.10|0.01|A|F|1994-03-20|1994-01-19|1994-03-30|NONE|REG AIR|tect. even, ironic instruc| +57708|570236|32748|6|18|23511.78|0.02|0.07|R|F|1994-03-28|1994-01-28|1994-04-06|NONE|AIR|sometimes bold instructions ha| +57708|953377|28416|7|47|67225.51|0.08|0.08|R|F|1994-03-29|1994-02-26|1994-04-14|NONE|MAIL|nts. even, regular pinto beans wa| +57709|403530|41055|1|47|67374.97|0.04|0.01|N|O|1996-03-13|1996-04-22|1996-03-25|COLLECT COD|MAIL| cajole fi| +57709|126706|1711|2|12|20792.40|0.00|0.01|N|O|1996-03-07|1996-03-24|1996-03-22|DELIVER IN PERSON|TRUCK|c tithes. carefully express plat| +57709|545575|20596|3|8|12964.40|0.06|0.04|N|O|1996-03-20|1996-04-29|1996-03-21|DELIVER IN PERSON|RAIL|lithely regular theodolites are furiousl| +57709|466881|29391|4|38|70218.68|0.06|0.01|N|O|1996-06-01|1996-05-07|1996-06-06|DELIVER IN PERSON|REG AIR|s. requests e| +57709|864408|39443|5|50|68618.00|0.09|0.01|N|O|1996-05-11|1996-03-27|1996-05-23|DELIVER IN PERSON|AIR|ironic ideas until th| +57710|783422|33423|1|4|6021.56|0.00|0.05|R|F|1993-04-16|1993-05-23|1993-04-28|NONE|TRUCK| frets boost blith| +57710|959798|9799|2|44|81741.00|0.01|0.08|A|F|1993-04-09|1993-06-10|1993-04-12|COLLECT COD|TRUCK|ounts. fur| +57710|318104|5623|3|46|51616.14|0.03|0.06|R|F|1993-04-17|1993-05-30|1993-05-08|TAKE BACK RETURN|REG AIR|efully final ideas-- ins| +57710|362306|37321|4|16|21892.64|0.02|0.05|A|F|1993-06-03|1993-05-28|1993-06-17|DELIVER IN PERSON|REG AIR| the slyly unusual requests im| +57711|885245|10280|1|7|8611.40|0.08|0.03|N|O|1996-09-09|1996-11-22|1996-10-04|NONE|AIR|dolphins use carefully regula| +57711|303981|3982|2|50|99248.50|0.03|0.05|N|O|1996-10-07|1996-10-24|1996-10-11|COLLECT COD|FOB|ke furiously final | +57711|993191|5711|3|47|60355.05|0.06|0.06|N|O|1996-12-28|1996-11-14|1996-12-30|COLLECT COD|REG AIR|tes. quickly| +57711|550464|37998|4|19|28774.36|0.02|0.04|N|O|1996-09-18|1996-11-27|1996-10-09|COLLECT COD|SHIP|the ironic, express att| +57711|632066|44579|5|35|34931.05|0.05|0.02|N|O|1996-09-19|1996-11-19|1996-09-22|COLLECT COD|MAIL|ts. regular, express deposits cajole p| +57711|122456|34959|6|9|13306.05|0.10|0.08|N|O|1996-11-15|1996-10-13|1996-12-15|NONE|SHIP|fluffily silent dependencies| +57711|103807|16310|7|12|21729.60|0.08|0.00|N|O|1996-10-01|1996-10-16|1996-10-30|NONE|FOB|ual ideas. q| +57736|682325|19865|1|5|6536.45|0.01|0.00|R|F|1992-11-10|1992-12-29|1992-12-05|TAKE BACK RETURN|AIR|xes wake furiously bold| +57736|821997|47030|2|43|82514.85|0.02|0.00|A|F|1993-02-05|1992-12-15|1993-02-27|DELIVER IN PERSON|RAIL|usly. furiously re| +57736|291219|28735|3|36|43567.20|0.07|0.03|R|F|1992-10-17|1992-12-08|1992-10-27|DELIVER IN PERSON|SHIP|y even deposits. blithely bold requests| +57736|503699|28720|4|41|69809.47|0.03|0.03|R|F|1992-11-04|1992-11-30|1992-11-06|COLLECT COD|AIR|nod final, bol| +57736|665536|40563|5|25|37537.50|0.00|0.04|A|F|1992-11-25|1992-12-30|1992-12-17|COLLECT COD|SHIP| blithely ironic reques| +57737|129755|29756|1|41|73174.75|0.09|0.07|N|O|1998-03-03|1998-03-19|1998-03-15|DELIVER IN PERSON|TRUCK|es are special foxes. final, express do| +57737|783899|8930|2|33|65434.38|0.05|0.05|N|O|1998-03-13|1998-03-09|1998-04-09|COLLECT COD|FOB| haggle slyly regular theodolites. f| +57737|975933|38453|3|42|84373.38|0.01|0.05|N|O|1998-05-05|1998-04-18|1998-05-27|NONE|MAIL|final instructions ab| +57737|502996|2997|4|44|87954.68|0.07|0.00|N|O|1998-04-11|1998-03-25|1998-04-25|COLLECT COD|FOB|ctions. furiously| +57737|846748|46749|5|28|47451.60|0.00|0.05|N|O|1998-04-24|1998-03-06|1998-05-22|NONE|FOB|fully across the | +57738|557934|45468|1|28|55773.48|0.09|0.00|R|F|1992-12-18|1992-12-27|1992-12-23|COLLECT COD|TRUCK|ns use furiously across the slyl| +57738|192269|42270|2|49|66701.74|0.07|0.00|A|F|1992-12-29|1993-01-08|1993-01-28|COLLECT COD|TRUCK|eaves. quickly ironic accounts against | +57738|453639|16149|3|34|54148.74|0.04|0.06|A|F|1993-03-01|1993-02-02|1993-03-27|NONE|SHIP|platelets. unusual, f| +57739|866667|29185|1|32|52275.84|0.01|0.01|N|O|1997-07-07|1997-05-01|1997-08-03|TAKE BACK RETURN|AIR|long the theodolites nag fluffi| +57739|62816|37819|2|24|42691.44|0.00|0.00|N|O|1997-04-02|1997-06-11|1997-04-14|NONE|FOB|y ironic pinto beans. ideas sleep quic| +57740|650913|25940|1|18|33549.84|0.01|0.02|A|F|1992-12-07|1992-12-19|1992-12-12|NONE|MAIL|old deposits was according to the idea| +57740|886635|49153|2|34|55134.06|0.01|0.03|R|F|1992-10-20|1992-12-13|1992-11-16|NONE|FOB|lly-- quickly fin| +57741|721551|46580|1|23|36167.96|0.05|0.02|N|O|1998-07-03|1998-07-24|1998-07-14|DELIVER IN PERSON|AIR|thely among th| +57741|93312|43313|2|2|2610.62|0.09|0.08|N|O|1998-06-25|1998-07-15|1998-07-19|DELIVER IN PERSON|AIR|blithe, pending ideas coul| +57741|285525|35526|3|38|57399.38|0.04|0.00|N|O|1998-06-15|1998-08-03|1998-06-24|NONE|SHIP|into beans. brave, d| +57741|816427|41460|4|47|63138.86|0.01|0.07|N|O|1998-08-20|1998-08-22|1998-09-10|COLLECT COD|RAIL|deposits against the packag| +57741|678646|28647|5|8|12996.88|0.10|0.08|N|O|1998-07-04|1998-06-29|1998-07-05|DELIVER IN PERSON|FOB|ideas: furiously regu| +57742|169069|44076|1|37|42108.22|0.00|0.06|R|F|1992-12-17|1992-12-13|1993-01-05|NONE|TRUCK|packages affix furiously. special| +57742|528708|41219|2|39|67730.52|0.07|0.08|R|F|1993-01-15|1992-12-11|1993-01-27|NONE|AIR|es haggle silent, s| +57743|828276|15825|1|50|60211.50|0.07|0.05|N|O|1998-05-04|1998-05-02|1998-05-21|COLLECT COD|AIR|usly pending pint| +57743|833917|33918|2|34|62929.58|0.10|0.04|N|O|1998-04-10|1998-05-02|1998-04-25|TAKE BACK RETURN|REG AIR|ily. special, regular accounts haggle| +57743|634149|9174|3|7|7581.77|0.05|0.06|N|O|1998-07-02|1998-04-27|1998-07-31|COLLECT COD|AIR|al foxes. pending orbit| +57743|128131|40634|4|39|45206.07|0.01|0.02|N|O|1998-06-10|1998-06-11|1998-06-19|COLLECT COD|MAIL|s are slyl| +57743|481085|31086|5|2|2132.12|0.08|0.01|N|O|1998-05-19|1998-05-19|1998-06-04|DELIVER IN PERSON|MAIL|after the slyly bold patterns.| +57743|588964|1476|6|26|53376.44|0.10|0.02|N|O|1998-03-24|1998-06-12|1998-04-19|COLLECT COD|SHIP|s the unusual, express theodolites w| +57743|710962|10963|7|45|88781.85|0.04|0.08|N|O|1998-04-25|1998-06-07|1998-05-21|NONE|SHIP|eposits. ironic, unusual packages nod caref| +57768|131974|6979|1|17|34101.49|0.06|0.07|N|O|1997-08-04|1997-05-10|1997-08-23|COLLECT COD|TRUCK| slyly bold accounts! final pinto beans a| +57769|253090|15596|1|45|46938.60|0.10|0.07|R|F|1993-11-04|1993-09-24|1993-11-05|COLLECT COD|MAIL|pinto beans w| +57769|669573|7113|2|32|49361.28|0.09|0.06|R|F|1993-11-25|1993-10-16|1993-12-08|NONE|FOB|e finally regular dependenc| +57769|498706|36234|3|17|28979.56|0.05|0.04|A|F|1993-08-05|1993-09-04|1993-08-09|DELIVER IN PERSON|REG AIR|tes. slyly regular dependencies | +57769|742760|42761|4|37|66701.01|0.06|0.06|R|F|1993-11-03|1993-10-13|1993-11-07|DELIVER IN PERSON|TRUCK|alongside of the | +57769|567034|17035|5|36|39636.36|0.02|0.06|R|F|1993-10-17|1993-10-20|1993-10-20|NONE|SHIP| quickly unusual pack| +57770|608516|21029|1|48|68375.04|0.05|0.05|N|O|1996-06-19|1996-05-21|1996-06-21|COLLECT COD|FOB|quests integrate slyly. slyly bold | +57770|323161|48174|2|2|2368.30|0.05|0.01|N|O|1996-06-28|1996-04-19|1996-07-02|TAKE BACK RETURN|MAIL| requests wake slyly. blithely fina| +57770|366803|29311|3|46|86010.34|0.05|0.08|N|O|1996-04-13|1996-04-19|1996-05-10|DELIVER IN PERSON|REG AIR|ests. slyly even dependencies above t| +57770|857457|45009|4|17|24044.97|0.03|0.04|N|O|1996-06-02|1996-04-29|1996-06-16|TAKE BACK RETURN|AIR|usly-- foxes could | +57770|265794|40805|5|20|35195.60|0.04|0.04|N|O|1996-06-20|1996-05-24|1996-07-02|COLLECT COD|TRUCK|the quickly pen| +57771|400691|692|1|26|41383.42|0.10|0.03|R|F|1995-02-07|1995-03-10|1995-02-24|DELIVER IN PERSON|MAIL|permanently regular pin| +57771|401014|1015|2|17|15554.83|0.01|0.04|R|F|1995-04-17|1995-03-25|1995-04-18|NONE|TRUCK|leep. slyly express packages doubt. e| +57771|826597|14146|3|36|54847.80|0.04|0.04|A|F|1995-05-08|1995-04-12|1995-05-20|NONE|REG AIR|ously bold deposit| +57771|609001|9002|4|46|41858.62|0.03|0.03|R|F|1995-04-07|1995-03-07|1995-05-01|DELIVER IN PERSON|MAIL|symptotes nag care| +57772|749935|12450|1|30|59547.00|0.10|0.01|N|O|1998-02-06|1997-12-19|1998-03-06|DELIVER IN PERSON|TRUCK|y final acc| +57772|147858|10361|2|15|28587.75|0.09|0.02|N|O|1997-11-15|1997-12-09|1997-11-28|COLLECT COD|FOB|asymptotes doze. slyly pending| +57772|39639|2140|3|36|56830.68|0.01|0.07|N|O|1998-01-07|1997-12-27|1998-01-23|NONE|REG AIR|nic frays nag furiously blithe| +57772|197206|47207|4|26|33883.20|0.05|0.04|N|O|1997-11-16|1998-01-01|1997-12-13|TAKE BACK RETURN|RAIL|y express, unusual requ| +57772|439160|1669|5|14|15387.96|0.09|0.06|N|O|1997-12-13|1997-12-30|1998-01-08|TAKE BACK RETURN|REG AIR|sits affix blithely slyly e| +57773|977206|27207|1|15|19247.40|0.03|0.00|A|F|1995-02-22|1995-03-05|1995-03-08|NONE|MAIL|ackages. carefully silent packages affix| +57773|885396|22948|2|37|51109.95|0.08|0.01|A|F|1995-03-27|1995-04-07|1995-03-30|COLLECT COD|FOB|ses sleep carefully against the accounts.| +57773|843121|30670|3|28|29794.24|0.00|0.00|A|F|1995-05-04|1995-04-30|1995-06-01|TAKE BACK RETURN|RAIL|uriously pending reque| +57773|323949|36456|4|37|72998.41|0.09|0.05|A|F|1995-03-20|1995-04-30|1995-04-16|DELIVER IN PERSON|SHIP|egular, special instructions.| +57773|607565|32590|5|27|39758.31|0.06|0.02|R|F|1995-03-23|1995-03-17|1995-04-07|TAKE BACK RETURN|SHIP|ly after the blithely final Tiresias. car| +57773|328966|28967|6|50|99747.50|0.10|0.02|A|F|1995-03-03|1995-03-18|1995-03-15|TAKE BACK RETURN|RAIL|efully final sheaves affix | +57773|928358|40877|7|13|18022.03|0.00|0.06|R|F|1995-04-11|1995-04-04|1995-04-21|NONE|SHIP| express foxes haggle pinto beans. depo| +57774|908465|33502|1|39|57463.38|0.08|0.04|R|F|1992-04-29|1992-04-30|1992-05-14|DELIVER IN PERSON|TRUCK|gular deposits! packages a| +57774|555342|30365|2|20|27946.40|0.08|0.04|A|F|1992-05-13|1992-05-04|1992-05-27|NONE|REG AIR|ts. ironic requests wake about the slyly| +57774|617549|42574|3|1|1466.51|0.09|0.08|R|F|1992-04-04|1992-05-16|1992-04-15|DELIVER IN PERSON|AIR|ously bold deposi| +57774|141350|28857|4|23|32001.05|0.00|0.02|A|F|1992-03-19|1992-04-12|1992-04-13|TAKE BACK RETURN|RAIL|ies. express, ironic f| +57774|658701|8702|5|49|81323.83|0.02|0.03|R|F|1992-05-21|1992-04-18|1992-06-15|COLLECT COD|FOB|ronic request| +57774|778545|16091|6|19|30846.69|0.07|0.05|R|F|1992-02-22|1992-04-12|1992-03-16|TAKE BACK RETURN|SHIP|d ideas. fi| +57774|992034|29592|7|20|22519.80|0.08|0.01|R|F|1992-05-20|1992-04-29|1992-06-06|COLLECT COD|RAIL|ckages. carefully blithe platelets acc| +57775|100762|38269|1|7|12339.32|0.10|0.01|R|F|1994-04-18|1994-03-26|1994-05-15|DELIVER IN PERSON|SHIP|ithely. unusual platelets sleep furiously| +57775|497862|47863|2|41|76253.44|0.09|0.01|A|F|1994-03-26|1994-02-23|1994-04-21|NONE|AIR|lyly quick deposits. instructions abou| +57775|556003|18515|3|33|34946.34|0.03|0.08|R|F|1994-02-20|1994-04-03|1994-03-06|DELIVER IN PERSON|FOB|carefully express requests cajo| +57800|852574|27609|1|25|38163.25|0.06|0.05|A|F|1994-10-22|1994-12-22|1994-10-25|TAKE BACK RETURN|RAIL|y express packages thrash slyly; regular sa| +57801|320665|20666|1|35|58997.75|0.07|0.04|N|O|1998-07-10|1998-05-31|1998-07-14|COLLECT COD|AIR|d requests across the slyly f| +57802|92857|5359|1|36|66594.60|0.04|0.05|R|F|1992-08-04|1992-09-15|1992-08-05|COLLECT COD|TRUCK|eep blithely | +57802|641057|41058|2|42|41916.84|0.08|0.07|A|F|1992-07-02|1992-08-13|1992-07-30|COLLECT COD|AIR|nt deposit| +57802|229556|17069|3|20|29710.80|0.10|0.00|R|F|1992-06-28|1992-08-18|1992-07-23|TAKE BACK RETURN|SHIP| bold asymptotes are | +57803|323463|10982|1|25|37161.25|0.06|0.07|A|F|1993-08-13|1993-09-30|1993-08-28|TAKE BACK RETURN|AIR| kindle care| +57803|441108|16125|2|40|41963.20|0.06|0.03|A|F|1993-08-29|1993-09-17|1993-09-18|NONE|FOB|sual deposits. blithely re| +57803|697777|10291|3|48|85187.52|0.05|0.03|A|F|1993-08-16|1993-09-04|1993-09-08|DELIVER IN PERSON|FOB|ending ideas. | +57803|532493|45004|4|41|62544.27|0.08|0.05|A|F|1993-10-31|1993-09-13|1993-11-26|NONE|MAIL|inal packages. regular packag| +57803|593709|6221|5|13|23434.84|0.00|0.06|R|F|1993-10-22|1993-10-27|1993-10-30|TAKE BACK RETURN|FOB|sits. dogged, final | +57804|248382|23391|1|1|1330.37|0.02|0.00|R|F|1993-01-02|1993-01-03|1993-01-07|TAKE BACK RETURN|AIR|t; special instructio| +57804|554426|41960|2|23|34049.20|0.09|0.05|A|F|1993-02-24|1992-12-05|1993-03-07|DELIVER IN PERSON|AIR|accounts. slyly final Tiresias | +57805|321440|21441|1|37|54072.91|0.10|0.08|A|F|1994-02-05|1994-02-23|1994-03-06|DELIVER IN PERSON|MAIL|express requests | +57805|425336|25337|2|27|34055.37|0.07|0.05|R|F|1994-03-21|1994-02-17|1994-04-13|TAKE BACK RETURN|AIR|ly quickly | +57805|614557|39582|3|44|64746.88|0.07|0.03|R|F|1994-04-25|1994-03-03|1994-05-16|TAKE BACK RETURN|RAIL|ckages haggle carefully. carefully | +57805|853820|28855|4|48|85141.44|0.09|0.01|R|F|1994-03-17|1994-02-19|1994-04-02|COLLECT COD|SHIP| alongside o| +57806|91796|4298|1|50|89389.50|0.03|0.01|N|O|1996-02-01|1996-02-12|1996-02-04|COLLECT COD|REG AIR|fily across the ironic | +57807|453738|3739|1|47|79510.37|0.06|0.01|N|O|1998-07-25|1998-07-05|1998-08-05|DELIVER IN PERSON|REG AIR|lithely silent deposits affi| +57807|960557|48115|2|3|4852.53|0.09|0.00|N|O|1998-06-10|1998-07-02|1998-07-03|TAKE BACK RETURN|MAIL|arefully unusual pinto beans nag; qui| +57807|75164|37666|3|35|39870.60|0.06|0.06|N|O|1998-05-18|1998-07-24|1998-05-19|DELIVER IN PERSON|FOB|lites print blithely furiously| +57832|548552|23573|1|4|6402.12|0.08|0.02|N|O|1998-09-23|1998-08-09|1998-10-20|DELIVER IN PERSON|SHIP|kages; carefull| +57832|498856|23875|2|5|9274.15|0.08|0.01|N|O|1998-09-21|1998-08-03|1998-10-09|NONE|REG AIR|uickly ironic ideas are | +57832|270333|32839|3|40|52132.80|0.01|0.00|N|O|1998-07-08|1998-07-03|1998-08-07|COLLECT COD|RAIL|eposits cajole quickly iro| +57833|506141|31162|1|50|57356.00|0.10|0.06|A|F|1992-05-31|1992-07-29|1992-06-09|TAKE BACK RETURN|SHIP| furiously express inst| +57833|707878|7879|2|24|45260.16|0.10|0.03|A|F|1992-07-30|1992-06-12|1992-08-08|NONE|FOB|tegrate furiously slyly regul| +57833|290958|3464|3|14|27285.16|0.04|0.01|A|F|1992-09-03|1992-06-14|1992-09-17|DELIVER IN PERSON|AIR|ly ironic notornis-- carefully regular | +57833|115838|40843|4|44|81568.52|0.04|0.07|R|F|1992-06-28|1992-07-02|1992-07-10|COLLECT COD|AIR|ckly regular requests. account| +57834|645333|32870|1|12|15339.60|0.02|0.03|R|F|1995-04-17|1995-04-15|1995-05-13|TAKE BACK RETURN|TRUCK|atelets. express foxes sleep q| +57834|97125|9627|2|35|39274.20|0.08|0.05|A|F|1995-04-02|1995-03-24|1995-04-20|COLLECT COD|TRUCK|ckages are quickly regular dep| +57834|364808|2330|3|28|52438.12|0.02|0.06|A|F|1995-03-29|1995-04-13|1995-04-02|DELIVER IN PERSON|REG AIR|he even request| +57834|320619|20620|4|44|72142.40|0.03|0.08|A|F|1995-05-04|1995-03-11|1995-05-12|COLLECT COD|SHIP|are according to the regular pint| +57834|637520|12545|5|30|43724.70|0.10|0.06|R|F|1995-03-30|1995-04-14|1995-04-12|NONE|MAIL|bove the furiously unusua| +57834|783194|33195|6|25|31929.00|0.05|0.04|R|F|1995-04-28|1995-04-15|1995-05-17|COLLECT COD|RAIL|efully ironic pint| +57834|134840|22347|7|30|56245.20|0.09|0.00|R|F|1995-03-06|1995-03-08|1995-03-18|TAKE BACK RETURN|AIR|g the slyly regular depo| +57835|249518|12023|1|35|51362.50|0.02|0.01|N|O|1996-04-23|1996-07-05|1996-05-09|NONE|SHIP|play quickly furiously special i| +57835|640006|27543|2|33|31217.01|0.03|0.01|N|O|1996-05-01|1996-06-23|1996-05-20|DELIVER IN PERSON|MAIL|yly bold packages. careful| +57835|565299|27811|3|40|54570.80|0.00|0.00|N|O|1996-08-01|1996-06-28|1996-08-25|TAKE BACK RETURN|MAIL|unwind. quickly express instructions | +57835|979830|42350|4|15|28646.85|0.06|0.00|N|O|1996-06-29|1996-07-04|1996-07-12|COLLECT COD|SHIP| pinto beans boost c| +57836|498656|36184|1|2|3309.26|0.03|0.07|N|O|1998-06-17|1998-04-15|1998-07-07|DELIVER IN PERSON|TRUCK|urts. slyly final accounts ca| +57836|895509|8027|2|10|15044.60|0.07|0.03|N|O|1998-07-04|1998-05-09|1998-07-21|TAKE BACK RETURN|FOB|sly dogged dolphins. slyly regular ideas ha| +57836|812240|49789|3|36|41479.20|0.03|0.01|N|O|1998-06-01|1998-04-18|1998-06-13|NONE|FOB|ses. blithely sp| +57837|504831|17342|1|8|14686.48|0.00|0.03|R|F|1994-03-08|1994-03-13|1994-04-03|TAKE BACK RETURN|REG AIR|posits cajole against the accounts. blithe| +57837|678667|28668|2|4|6582.52|0.07|0.06|A|F|1994-04-18|1994-03-04|1994-04-27|TAKE BACK RETURN|REG AIR|, even account| +57837|354084|16592|3|38|43246.66|0.01|0.00|R|F|1994-05-06|1994-03-21|1994-06-03|TAKE BACK RETURN|TRUCK|he slyly ironic instructions. express,| +57837|80032|30033|4|12|12144.36|0.04|0.08|R|F|1994-05-01|1994-04-22|1994-05-20|COLLECT COD|SHIP|ly. special dependencies sleep foxes. fin| +57837|83446|8449|5|37|52889.28|0.02|0.06|A|F|1994-05-02|1994-04-08|1994-05-29|TAKE BACK RETURN|FOB|encies wake alongside of the fluffy senti| +57837|461916|49444|6|6|11267.34|0.05|0.03|A|F|1994-04-10|1994-04-13|1994-04-15|NONE|AIR|s. slyly even warthogs wake a| +57838|188200|13207|1|42|54104.40|0.08|0.02|N|O|1997-02-09|1996-12-31|1997-03-02|DELIVER IN PERSON|FOB|quickly bold ideas wake carefully along the| +57838|66237|41240|2|30|36096.90|0.07|0.02|N|O|1997-01-17|1997-02-16|1997-01-29|NONE|AIR|ealthy waters inte| +57838|240851|28364|3|27|48379.68|0.03|0.00|N|O|1997-02-28|1996-12-31|1997-03-22|DELIVER IN PERSON|REG AIR|arls wake slyly bold instructions.| +57838|969313|19314|4|38|52526.26|0.05|0.01|N|O|1997-02-25|1997-01-02|1997-03-21|NONE|AIR|hely regular foxes im| +57838|232922|7931|5|45|83470.95|0.00|0.04|N|O|1997-03-06|1997-02-22|1997-03-10|TAKE BACK RETURN|MAIL| final accounts believe slyly afte| +57839|677988|15528|1|24|47182.80|0.07|0.08|N|O|1996-02-02|1995-12-29|1996-02-21|DELIVER IN PERSON|FOB|kly pending accounts sol| +57864|191938|4442|1|9|18269.37|0.06|0.08|A|F|1992-05-18|1992-05-30|1992-06-04|TAKE BACK RETURN|AIR|kages. regular packages nag furiously| +57864|897574|22609|2|41|64432.73|0.04|0.06|A|F|1992-06-26|1992-05-22|1992-07-21|COLLECT COD|SHIP| the warhorses| +57864|518572|31083|3|45|71574.75|0.07|0.00|A|F|1992-05-13|1992-05-28|1992-05-25|DELIVER IN PERSON|TRUCK|s. final, | +57864|637141|12166|4|26|28030.86|0.06|0.04|R|F|1992-03-14|1992-04-17|1992-04-09|TAKE BACK RETURN|SHIP|usly among the slyly even accounts. ca| +57865|337052|12065|1|36|39205.44|0.04|0.01|A|F|1993-01-15|1993-03-17|1993-02-01|NONE|REG AIR|silently throughout the final accounts| +57866|592218|17241|1|24|31444.56|0.03|0.08|N|O|1996-11-11|1996-11-23|1996-11-17|DELIVER IN PERSON|REG AIR|ets? fluffily final inst| +57866|404111|4112|2|1|1015.09|0.10|0.01|N|O|1996-10-18|1996-12-13|1996-10-26|DELIVER IN PERSON|AIR|unts. quickly ex| +57866|892998|5516|3|14|27873.30|0.04|0.03|N|O|1996-11-11|1996-11-13|1996-11-19|DELIVER IN PERSON|RAIL|al packages until the quickly bold account| +57866|605265|17778|4|30|35106.90|0.04|0.01|N|O|1996-12-21|1996-12-24|1997-01-01|COLLECT COD|RAIL|ts detect furiously. fluffil| +57866|680289|17829|5|30|38077.50|0.04|0.00|N|O|1996-12-01|1996-11-13|1996-12-10|COLLECT COD|RAIL|sts around the furiou| +57866|604531|17044|6|34|48807.00|0.07|0.03|N|O|1996-11-22|1996-11-25|1996-12-17|NONE|SHIP|quickly express multipliers. bli| +57866|347660|35179|7|33|56352.45|0.10|0.02|N|O|1996-10-31|1996-12-08|1996-11-28|DELIVER IN PERSON|FOB|ar accounts haggle quickly carefully final | +57867|120269|32772|1|49|63173.74|0.02|0.07|N|O|1996-02-27|1995-12-11|1996-03-06|TAKE BACK RETURN|FOB|olphins sleep | +57867|348657|11164|2|8|13645.12|0.04|0.05|N|O|1996-02-08|1996-01-17|1996-02-09|DELIVER IN PERSON|REG AIR|final packages. sl| +57867|874037|36555|3|8|8087.92|0.09|0.02|N|O|1996-01-17|1995-12-29|1996-01-26|COLLECT COD|SHIP|equests haggle final requests. furiously| +57867|924055|24056|4|11|11869.11|0.00|0.04|N|O|1996-02-23|1996-02-04|1996-02-26|NONE|AIR|ches are against the accounts. | +57867|586364|48876|5|18|26106.12|0.10|0.06|N|O|1995-12-26|1996-01-04|1995-12-31|DELIVER IN PERSON|REG AIR|fully. silent, unusual inst| +57867|5761|43262|6|23|38335.48|0.08|0.07|N|O|1996-01-27|1996-01-28|1996-02-13|DELIVER IN PERSON|AIR|ges sleep quick| +57868|994668|19707|1|26|45828.12|0.02|0.01|A|F|1993-08-14|1993-07-04|1993-08-31|COLLECT COD|MAIL|, furious theodolites sleep b| +57868|384809|47317|2|3|5681.37|0.09|0.08|A|F|1993-05-03|1993-06-16|1993-05-09|TAKE BACK RETURN|REG AIR|uriously ironic pac| +57869|526740|1761|1|20|35334.40|0.00|0.00|N|O|1996-10-06|1996-08-20|1996-11-03|DELIVER IN PERSON|REG AIR| blithely final deposits. furious| +57869|905271|30308|2|7|8933.61|0.02|0.01|N|O|1996-09-10|1996-07-11|1996-09-11|COLLECT COD|RAIL|kages. quickly regular theodol| +57869|886570|36571|3|11|17121.83|0.01|0.07|N|O|1996-06-25|1996-07-29|1996-06-28|NONE|REG AIR|s use quietly bold pinto beans. carefully| +57869|574540|49563|4|43|69424.36|0.09|0.05|N|O|1996-06-13|1996-08-05|1996-06-14|DELIVER IN PERSON|MAIL|usly even requests wake carefully about| +57869|292375|29891|5|44|60163.84|0.04|0.04|N|O|1996-10-06|1996-09-04|1996-11-04|NONE|MAIL|accounts sleep never. regul| +57870|917891|5446|1|18|34359.30|0.05|0.00|A|F|1994-08-11|1994-09-30|1994-09-04|DELIVER IN PERSON|SHIP|en dependencies after the unusual foxes h| +57870|985239|22797|2|35|46346.65|0.08|0.06|R|F|1994-10-01|1994-08-27|1994-10-20|COLLECT COD|AIR|ag across the carefully final | +57871|500807|808|1|2|3615.56|0.00|0.02|N|O|1997-07-26|1997-08-06|1997-08-05|NONE|MAIL| wake slyly above the carefully close in| +57871|59252|9253|2|36|43605.00|0.10|0.06|N|O|1997-05-29|1997-08-02|1997-06-24|DELIVER IN PERSON|AIR|silent accounts? slyly even account| +57871|836030|48547|3|4|3863.96|0.09|0.05|N|O|1997-06-13|1997-07-29|1997-07-05|COLLECT COD|TRUCK|express instructions among the regular ac| +57871|143349|30856|4|7|9746.38|0.08|0.08|N|O|1997-08-31|1997-06-26|1997-09-20|DELIVER IN PERSON|MAIL|r requests nag fluffily. sl| +57871|252084|2085|5|6|6216.42|0.09|0.07|N|O|1997-07-03|1997-06-30|1997-07-13|DELIVER IN PERSON|FOB|r courts cajo| +57896|197471|22478|1|20|31369.40|0.10|0.00|N|O|1995-10-10|1995-08-17|1995-11-08|NONE|REG AIR|ly express accounts integrate fur| +57896|892325|29877|2|47|61912.16|0.02|0.02|N|O|1995-08-15|1995-09-14|1995-09-06|DELIVER IN PERSON|RAIL|er the deposits. special | +57896|297132|34648|3|12|13549.44|0.01|0.06|N|O|1995-11-05|1995-09-09|1995-12-05|COLLECT COD|SHIP|ermanent tithes. slyly final din| +57897|475352|37862|1|27|35837.91|0.02|0.03|N|O|1996-03-04|1996-05-08|1996-03-24|DELIVER IN PERSON|MAIL| close cou| +57897|237139|49644|2|7|7532.84|0.00|0.02|N|O|1996-05-24|1996-03-30|1996-05-30|DELIVER IN PERSON|MAIL|y above the slyly final platel| +57897|587405|49917|3|24|35817.12|0.09|0.06|N|O|1996-06-12|1996-05-04|1996-07-11|NONE|AIR|lar, ironic | +57897|512684|215|4|36|61079.76|0.06|0.08|N|O|1996-05-27|1996-05-10|1996-06-04|COLLECT COD|RAIL| pinto beans breach furious| +57897|673046|23047|5|18|18342.18|0.00|0.03|N|O|1996-05-01|1996-05-10|1996-05-08|DELIVER IN PERSON|SHIP|nt accounts acro| +57897|873966|11518|6|30|58197.60|0.10|0.01|N|O|1996-05-08|1996-05-08|1996-05-13|COLLECT COD|FOB|packages af| +57897|744660|32203|7|39|66480.57|0.03|0.03|N|O|1996-06-04|1996-04-07|1996-06-29|TAKE BACK RETURN|RAIL| the slyly special | +57898|499379|11889|1|4|5513.40|0.03|0.03|N|O|1997-11-14|1997-09-23|1997-12-14|TAKE BACK RETURN|TRUCK|ffily about the furiousl| +57898|61733|49237|2|39|66094.47|0.06|0.00|N|O|1997-12-18|1997-10-18|1998-01-04|NONE|AIR| slyly even accou| +57898|540051|2562|3|6|6546.18|0.03|0.04|N|O|1997-11-10|1997-10-24|1997-11-29|NONE|AIR| requests affix around t| +57898|635827|35828|4|22|38781.38|0.06|0.01|N|O|1997-11-16|1997-10-11|1997-11-19|COLLECT COD|RAIL|slyly silent deposits wake car| +57898|330225|17744|5|27|33890.67|0.09|0.00|N|O|1997-09-22|1997-11-12|1997-10-01|NONE|SHIP| ironic somas. carefully regular| +57899|160494|22998|1|35|54407.15|0.08|0.04|N|O|1998-01-21|1997-11-26|1998-02-19|COLLECT COD|FOB|nts boost even packages. slyly exp| +57899|421739|21740|2|14|23249.94|0.02|0.02|N|O|1997-10-30|1997-12-04|1997-11-06|COLLECT COD|FOB|ial instructions. furi| +57899|164996|2506|3|19|39158.81|0.00|0.01|N|O|1997-11-11|1997-12-28|1997-12-06|COLLECT COD|FOB| regular requests. theodolites nag| +57899|76551|1554|4|10|15275.50|0.05|0.00|N|O|1998-01-23|1997-11-03|1998-02-17|NONE|AIR|y ironic dependencie| +57899|582439|44951|5|30|45642.30|0.02|0.08|N|O|1997-11-26|1997-12-24|1997-12-22|COLLECT COD|RAIL|ven pinto beans haggle. blithely even | +57900|121741|46746|1|32|56407.68|0.00|0.00|R|F|1994-03-25|1994-03-31|1994-03-30|TAKE BACK RETURN|AIR|c dependencies. bold, reg| +57900|86762|36763|2|39|68201.64|0.04|0.01|R|F|1994-04-29|1994-04-24|1994-05-18|TAKE BACK RETURN|AIR|ithely pending requests. pending| +57900|196293|21300|3|24|33342.96|0.05|0.07|R|F|1994-02-09|1994-02-26|1994-02-18|DELIVER IN PERSON|REG AIR|ar instructions wake furious| +57900|96400|33904|4|6|8378.40|0.04|0.06|R|F|1994-03-09|1994-03-01|1994-04-06|COLLECT COD|TRUCK|ending, silent accounts wake | +57900|194256|31766|5|44|59411.00|0.00|0.00|A|F|1994-02-01|1994-03-17|1994-02-15|DELIVER IN PERSON|TRUCK| blithely regular packages. furiousl| +57900|852411|2412|6|40|54534.80|0.07|0.07|R|F|1994-02-05|1994-03-21|1994-02-06|DELIVER IN PERSON|MAIL|nic dependencies eat quickly across the | +57901|722544|47573|1|19|29763.69|0.07|0.06|N|O|1996-04-05|1996-05-12|1996-04-22|DELIVER IN PERSON|RAIL|nst the careful ideas. silent deposits hagg| +57901|786958|36959|2|21|42943.32|0.09|0.06|N|O|1996-06-27|1996-06-03|1996-07-24|DELIVER IN PERSON|REG AIR|tes. carefully idle pack| +57901|387635|37636|3|19|32729.78|0.04|0.08|N|O|1996-04-03|1996-04-19|1996-04-15|DELIVER IN PERSON|FOB|ounts. fluffily bold dependencies boost | +57901|968669|6227|4|11|19113.82|0.05|0.01|N|O|1996-06-18|1996-05-18|1996-07-01|COLLECT COD|TRUCK|ts after the ironic, bold | +57901|410039|10040|5|26|24674.26|0.00|0.08|N|O|1996-06-03|1996-05-03|1996-06-22|TAKE BACK RETURN|TRUCK| accounts are c| +57901|518006|18007|6|41|41983.18|0.05|0.04|N|O|1996-03-25|1996-05-24|1996-04-16|COLLECT COD|MAIL|cording to t| +57902|335454|10467|1|20|29788.80|0.10|0.03|R|F|1994-11-14|1994-11-26|1994-11-29|TAKE BACK RETURN|SHIP| packages cajole furiously regular ideas.| +57902|969788|44827|2|36|66878.64|0.10|0.00|A|F|1994-10-24|1994-10-16|1994-11-04|TAKE BACK RETURN|RAIL|e packages sleep fluffily ir| +57902|217877|5390|3|45|80768.70|0.04|0.03|R|F|1994-12-18|1994-11-09|1994-12-30|TAKE BACK RETURN|REG AIR| against the furi| +57903|140032|40033|1|28|30016.84|0.10|0.06|R|F|1993-03-29|1993-03-02|1993-04-23|DELIVER IN PERSON|FOB|leep slyly carefully silen| +57903|501467|1468|2|35|51395.40|0.05|0.07|R|F|1993-02-28|1993-04-02|1993-03-13|COLLECT COD|REG AIR|ndencies. carefully express braids am| +57903|146533|21538|3|21|33170.13|0.07|0.03|A|F|1993-05-20|1993-03-25|1993-05-26|TAKE BACK RETURN|SHIP|usly ironic excuses. final, e| +57903|764367|39398|4|21|30057.93|0.10|0.07|R|F|1993-04-24|1993-04-09|1993-04-30|TAKE BACK RETURN|MAIL| slyly bold packages cajole daringly | +57928|715493|40522|1|39|58829.94|0.01|0.01|A|F|1995-01-21|1995-04-08|1995-01-26|NONE|REG AIR|sly even packages. blithely | +57928|282344|7355|2|22|29179.26|0.07|0.01|A|F|1995-04-22|1995-03-06|1995-05-07|COLLECT COD|FOB| carefully silent depo| +57928|345529|8036|3|46|72427.46|0.06|0.02|R|F|1995-01-14|1995-03-03|1995-01-17|NONE|SHIP|cross the careful| +57928|305535|30548|4|17|26188.84|0.00|0.06|R|F|1995-01-27|1995-02-28|1995-02-22|COLLECT COD|REG AIR|ironic accounts affix along| +57928|120992|45997|5|42|84545.58|0.10|0.03|A|F|1995-02-25|1995-04-01|1995-03-25|TAKE BACK RETURN|MAIL|iously around the furious| +57929|399673|37195|1|13|23044.58|0.00|0.00|N|O|1996-01-30|1995-12-19|1996-02-28|TAKE BACK RETURN|TRUCK|odolites haggle quickly above | +57929|297736|35252|2|13|22538.36|0.07|0.00|N|O|1995-11-05|1995-12-24|1995-11-16|TAKE BACK RETURN|AIR|ptotes are. carefull| +57929|36656|11657|3|31|49372.15|0.05|0.05|N|O|1996-02-04|1996-01-05|1996-02-16|DELIVER IN PERSON|FOB| quickly express| +57929|74195|49198|4|7|8184.33|0.01|0.01|N|O|1996-02-10|1995-12-13|1996-02-11|NONE|TRUCK|final deposits: fluffil| +57929|985683|23241|5|6|10611.84|0.08|0.06|N|O|1996-02-08|1995-12-14|1996-02-25|COLLECT COD|FOB|l asymptotes. even, final deposits cajo| +57929|362429|49951|6|34|50707.94|0.06|0.05|N|O|1996-02-06|1995-12-26|1996-02-27|NONE|FOB|nding accounts | +57929|339518|2025|7|35|54512.50|0.04|0.07|N|O|1995-12-20|1995-12-06|1995-12-23|TAKE BACK RETURN|RAIL|s dazzle slyly. even, ironic pinto beans do| +57930|268337|43348|1|12|15663.84|0.09|0.08|N|O|1996-06-09|1996-06-09|1996-06-12|DELIVER IN PERSON|FOB|uriously? slyly silent foxes integrat| +57930|927497|15052|2|42|64026.90|0.10|0.08|N|O|1996-04-11|1996-05-24|1996-04-20|DELIVER IN PERSON|RAIL|y among the blithely final | +57930|432108|44617|3|27|28082.16|0.04|0.04|N|O|1996-04-20|1996-05-25|1996-05-03|DELIVER IN PERSON|RAIL|. quickly special accounts boost. even, u| +57931|161185|23689|1|42|52339.56|0.07|0.01|A|F|1994-11-19|1994-10-27|1994-11-22|COLLECT COD|MAIL|xpress epitaphs. carefully ironic ideas a| +57931|35868|23369|2|18|32469.48|0.07|0.07|A|F|1994-11-05|1994-11-10|1994-11-17|NONE|FOB|haggle blithely regula| +57931|822618|47651|3|48|73947.36|0.00|0.08|A|F|1995-01-19|1994-11-14|1995-02-04|COLLECT COD|RAIL|riously unusual foxes eat blithely caref| +57932|109043|34048|1|36|37873.44|0.08|0.04|N|O|1996-09-24|1996-10-30|1996-09-29|NONE|SHIP|ts according to the acco| +57932|676112|1139|2|33|35906.64|0.09|0.05|N|O|1996-10-27|1996-09-27|1996-11-21|TAKE BACK RETURN|TRUCK|sts nag ir| +57932|400848|38373|3|24|41971.68|0.10|0.01|N|O|1996-10-11|1996-10-05|1996-10-22|DELIVER IN PERSON|RAIL|thely bold deposits. ca| +57932|51961|1962|4|41|78431.36|0.06|0.01|N|O|1996-10-28|1996-11-03|1996-11-18|DELIVER IN PERSON|RAIL|s. slyly bold platelets lose| +57932|306197|18704|5|23|27673.14|0.00|0.07|N|O|1996-09-28|1996-10-11|1996-10-04|COLLECT COD|AIR|enly pending reque| +57932|243735|43736|6|18|30216.96|0.01|0.07|N|O|1996-11-15|1996-09-30|1996-12-13|COLLECT COD|TRUCK|ld accounts beneath the fluffi| +57932|437666|175|7|28|44901.92|0.09|0.00|N|O|1996-10-07|1996-10-27|1996-10-08|DELIVER IN PERSON|AIR|ckages caj| +57933|835692|48209|1|43|69988.95|0.01|0.08|R|F|1994-08-17|1994-10-31|1994-08-24|COLLECT COD|FOB|ts. permanently even ideas wake carefully. | +57933|463361|889|2|33|43703.22|0.08|0.05|R|F|1994-11-29|1994-10-25|1994-12-20|COLLECT COD|SHIP| deposits around the | +57933|702339|2340|3|18|24143.40|0.05|0.00|A|F|1994-08-14|1994-10-15|1994-09-03|DELIVER IN PERSON|AIR|eodolites. blithely expr| +57933|204756|4757|4|14|23250.36|0.04|0.07|R|F|1994-12-02|1994-10-15|1994-12-16|DELIVER IN PERSON|SHIP|des the ironic, final accounts. pinto bean| +57934|666914|16915|1|15|28213.20|0.08|0.02|N|O|1996-02-14|1996-04-27|1996-02-17|TAKE BACK RETURN|RAIL| instructions are carefu| +57934|818840|31357|2|35|61558.00|0.06|0.05|N|O|1996-05-23|1996-04-03|1996-06-16|DELIVER IN PERSON|REG AIR|y regular | +57934|242483|29996|3|48|68422.56|0.08|0.05|N|O|1996-03-10|1996-03-09|1996-04-09|DELIVER IN PERSON|TRUCK| haggle slyly. furiously unusual | +57934|410418|35435|4|29|38523.31|0.07|0.05|N|O|1996-03-03|1996-03-16|1996-03-14|COLLECT COD|FOB|ilent, pending accounts u| +57934|892607|30159|5|11|17595.16|0.01|0.05|N|O|1996-03-19|1996-03-29|1996-04-16|TAKE BACK RETURN|TRUCK|furiously even theodolites. s| +57935|878190|40708|1|16|18690.40|0.07|0.08|N|O|1996-11-13|1996-11-20|1996-12-07|DELIVER IN PERSON|RAIL|the carefully final i| +57935|731051|18594|2|6|6492.12|0.04|0.04|N|O|1996-11-13|1996-12-05|1996-11-28|DELIVER IN PERSON|FOB|braids alongside of the | +57935|757733|45279|3|33|59093.10|0.07|0.01|N|O|1996-12-18|1996-11-08|1996-12-30|COLLECT COD|REG AIR|he final excuses cajole quic| +57935|208472|45985|4|23|31750.58|0.06|0.03|N|O|1996-12-26|1996-12-16|1997-01-05|NONE|RAIL| even, pending deposits | +57935|786018|48534|5|14|15455.72|0.06|0.00|N|O|1996-11-16|1996-11-17|1996-12-07|TAKE BACK RETURN|FOB|lar platelets. even deposits | +57960|94089|6591|1|25|27077.00|0.04|0.08|A|F|1992-03-07|1992-03-06|1992-03-14|TAKE BACK RETURN|FOB|ding to the fu| +57960|339831|2338|2|29|54253.78|0.09|0.02|A|F|1992-02-22|1992-03-17|1992-02-29|NONE|MAIL|ing to the exp| +57960|531672|19203|3|6|10221.90|0.02|0.05|A|F|1992-02-27|1992-04-15|1992-03-19|TAKE BACK RETURN|SHIP|ong the regular| +57960|800014|25047|4|4|4455.92|0.07|0.03|R|F|1992-05-08|1992-03-09|1992-05-29|DELIVER IN PERSON|RAIL|ts wake carefully along the regular, s| +57960|834153|34154|5|34|36961.74|0.04|0.07|R|F|1992-02-25|1992-03-31|1992-02-26|TAKE BACK RETURN|REG AIR|le unusual, unusual excuses. | +57961|478107|15635|1|7|7595.56|0.06|0.07|A|F|1993-08-21|1993-08-23|1993-09-12|COLLECT COD|AIR|regular packages haggle c| +57962|768556|43587|1|42|68229.84|0.05|0.08|R|F|1994-04-24|1994-06-20|1994-05-05|TAKE BACK RETURN|MAIL|ial requests above the packages are | +57962|106787|44294|2|24|43050.72|0.09|0.04|A|F|1994-05-19|1994-04-30|1994-06-11|TAKE BACK RETURN|REG AIR|ns. express foxes | +57962|753612|41158|3|24|39973.92|0.10|0.00|R|F|1994-06-09|1994-05-20|1994-06-11|NONE|FOB|he blithely | +57962|942232|42233|4|20|25483.80|0.02|0.06|R|F|1994-04-27|1994-05-05|1994-05-27|COLLECT COD|RAIL| accounts boost bl| +57962|86582|24086|5|5|7842.90|0.00|0.00|R|F|1994-06-25|1994-06-18|1994-07-20|DELIVER IN PERSON|SHIP|nic, bold accounts. quickly final | +57962|182265|19775|6|38|51195.88|0.00|0.05|A|F|1994-04-09|1994-04-28|1994-04-14|TAKE BACK RETURN|AIR|usual requests against the furiously | +57963|517415|17416|1|36|51566.04|0.10|0.06|N|O|1996-01-26|1996-01-30|1996-02-05|DELIVER IN PERSON|SHIP| instructions. pending, thin| +57963|182806|45310|2|30|56664.00|0.05|0.04|N|O|1995-12-30|1995-12-28|1996-01-27|TAKE BACK RETURN|FOB|ing accounts after the | +57963|412799|25308|3|5|8558.85|0.09|0.08|N|O|1996-03-01|1996-01-05|1996-03-30|TAKE BACK RETURN|REG AIR|s! deposits are carefully afte| +57964|959497|34536|1|34|52919.30|0.09|0.04|N|O|1998-05-23|1998-03-15|1998-06-01|TAKE BACK RETURN|AIR| ironic deposits wake among| +57964|265940|40951|2|23|43836.39|0.10|0.01|N|O|1998-03-03|1998-04-04|1998-03-06|COLLECT COD|TRUCK|sual requests integrate finally. care| +57964|642388|4901|3|3|3991.05|0.00|0.02|N|O|1998-05-15|1998-04-08|1998-06-07|TAKE BACK RETURN|TRUCK|ajole carefully| +57964|609082|9083|4|13|12883.65|0.04|0.02|N|O|1998-02-16|1998-04-26|1998-03-06|TAKE BACK RETURN|MAIL|ily express instr| +57965|545831|45832|1|40|75072.40|0.08|0.00|N|F|1995-06-07|1995-07-11|1995-07-05|DELIVER IN PERSON|TRUCK|ously special de| +57966|452916|27935|1|3|5606.67|0.00|0.02|R|F|1992-05-27|1992-05-12|1992-06-15|DELIVER IN PERSON|FOB|pendencies. slyly even platelet| +57967|645321|45322|1|47|59515.63|0.08|0.08|A|F|1994-04-21|1994-03-02|1994-04-26|NONE|MAIL|cajole regular, ironic dep| +57967|900151|12670|2|30|34533.30|0.07|0.08|A|F|1994-04-06|1994-03-02|1994-05-01|DELIVER IN PERSON|AIR|lly final foxes. final pin| +57992|230617|18130|1|9|13928.40|0.07|0.05|N|F|1995-06-05|1995-05-28|1995-06-29|TAKE BACK RETURN|REG AIR|usly quiet platelets according to the blith| +57992|972811|10369|2|20|37675.40|0.02|0.08|N|O|1995-07-09|1995-05-17|1995-08-05|COLLECT COD|FOB|as. pinto beans cajole ac| +57993|387778|25300|1|31|57838.56|0.01|0.00|A|F|1995-05-01|1995-04-28|1995-05-21|NONE|TRUCK|out the slyly i| +57993|373078|23079|2|49|56401.94|0.00|0.06|A|F|1995-02-14|1995-04-04|1995-02-20|COLLECT COD|REG AIR|its. fluffily even foxes are agai| +57993|317775|5294|3|23|41233.48|0.09|0.02|R|F|1995-03-13|1995-03-14|1995-03-31|DELIVER IN PERSON|AIR|usly even foxes. fi| +57994|217825|5338|1|13|22656.53|0.10|0.00|A|F|1993-01-26|1993-01-13|1993-02-03|COLLECT COD|MAIL|gular, bold deposits around the| +57994|983043|8082|2|14|15764.00|0.07|0.07|A|F|1993-01-23|1993-01-16|1993-02-06|TAKE BACK RETURN|RAIL|beans against the final d| +57994|989936|27494|3|34|68880.26|0.10|0.01|R|F|1993-03-08|1993-01-17|1993-03-26|NONE|AIR|se furiously above the bold s| +57994|854332|4333|4|29|37302.41|0.10|0.02|A|F|1992-11-16|1992-12-23|1992-11-21|DELIVER IN PERSON|RAIL|e quickly brave | +57994|755145|30176|5|39|46804.29|0.02|0.01|R|F|1993-02-09|1992-12-18|1993-02-14|COLLECT COD|MAIL|yly. quickly regular instructions co| +57994|718442|30957|6|41|59876.81|0.10|0.07|R|F|1993-01-20|1993-01-15|1993-01-23|TAKE BACK RETURN|FOB|ideas sleep unusual, even packages. never s| +57994|844134|31683|7|34|36655.06|0.10|0.07|A|F|1993-02-09|1993-01-20|1993-02-19|COLLECT COD|REG AIR|ter the slyly express saute| +57995|355757|18265|1|49|88824.26|0.02|0.03|A|F|1993-10-26|1993-08-29|1993-10-29|NONE|REG AIR|ckages. ideas| +57995|194424|6928|2|24|36442.08|0.07|0.00|R|F|1993-09-30|1993-08-26|1993-10-05|DELIVER IN PERSON|AIR|gle carefully. ir| +57996|969116|44155|1|34|40292.38|0.05|0.01|R|F|1994-05-02|1994-04-26|1994-05-24|TAKE BACK RETURN|SHIP| carefully according to the quickly sp| +57996|931454|6491|2|18|26737.38|0.02|0.08|A|F|1994-03-29|1994-04-26|1994-03-31|DELIVER IN PERSON|MAIL|nt quickly | +57996|936234|11271|3|44|55888.36|0.02|0.06|A|F|1994-06-06|1994-04-20|1994-06-08|DELIVER IN PERSON|REG AIR|. furiously express | +57996|281084|43590|4|35|37277.45|0.00|0.02|A|F|1994-05-17|1994-05-19|1994-06-12|DELIVER IN PERSON|FOB|al theodolites boost sly| +57997|366335|3857|1|8|11210.56|0.06|0.07|N|O|1996-10-02|1996-08-16|1996-10-20|NONE|RAIL|ording to the accounts d| +57997|980607|18165|2|7|11812.92|0.03|0.00|N|O|1996-07-29|1996-07-09|1996-08-21|NONE|MAIL|t the furiously express packages. ironic | +57997|58917|46421|3|21|39394.11|0.08|0.04|N|O|1996-08-18|1996-08-18|1996-09-07|TAKE BACK RETURN|REG AIR|ly. final asymptotes wit| +57998|772608|35124|1|36|60500.52|0.04|0.07|N|O|1996-08-18|1996-07-12|1996-08-20|TAKE BACK RETURN|SHIP|unts. furiously unusual foxes | +57999|938998|14035|1|3|6110.85|0.07|0.03|A|F|1994-06-23|1994-07-04|1994-07-12|DELIVER IN PERSON|FOB|final instructions a| +58024|84128|34129|1|41|45596.92|0.00|0.00|N|O|1996-03-20|1996-04-18|1996-03-24|DELIVER IN PERSON|MAIL|iously against the bold, expres| +58024|927594|15149|2|47|76212.85|0.09|0.04|N|O|1996-04-02|1996-04-05|1996-04-18|TAKE BACK RETURN|RAIL|furiously ironic instructions. carefull| +58024|65361|40364|3|44|58359.84|0.10|0.06|N|O|1996-05-30|1996-04-26|1996-06-14|COLLECT COD|MAIL|egular packages ab| +58024|518847|43868|4|12|22389.84|0.01|0.08|N|O|1996-05-22|1996-05-04|1996-06-20|DELIVER IN PERSON|AIR|lithely furiously final dependencie| +58024|261406|48922|5|12|16408.68|0.05|0.05|N|O|1996-04-02|1996-03-17|1996-04-05|TAKE BACK RETURN|MAIL|deas. regular, fi| +58024|440263|2772|6|23|27674.52|0.10|0.02|N|O|1996-04-09|1996-05-09|1996-04-20|DELIVER IN PERSON|MAIL|cies. caref| +58025|877944|2979|1|18|34594.20|0.03|0.05|A|F|1993-04-12|1993-03-20|1993-05-03|COLLECT COD|AIR|ly carefully ironic de| +58025|588647|13670|2|13|22563.06|0.00|0.02|A|F|1993-03-24|1993-02-27|1993-04-23|DELIVER IN PERSON|AIR|ly even ideas nod requests. fluffily ir| +58025|384922|47430|3|31|62214.21|0.08|0.01|R|F|1993-05-03|1993-04-01|1993-05-16|DELIVER IN PERSON|REG AIR|ual accounts. slyly regular theodol| +58025|378698|41206|4|26|46193.68|0.07|0.05|R|F|1993-01-15|1993-02-20|1993-02-10|DELIVER IN PERSON|SHIP|ns after the final, special packages im| +58025|774992|23|5|43|88879.28|0.03|0.05|R|F|1993-03-27|1993-03-14|1993-04-07|TAKE BACK RETURN|TRUCK|eep blithely about the furiously | +58025|285289|10300|6|15|19114.05|0.03|0.04|A|F|1993-02-08|1993-03-26|1993-02-10|DELIVER IN PERSON|SHIP|g pinto beans. blithely ironic | +58026|943262|5781|1|32|41767.04|0.08|0.04|R|F|1993-02-24|1993-04-05|1993-03-04|TAKE BACK RETURN|AIR|furiously | +58026|391569|29091|2|42|69743.10|0.08|0.00|A|F|1993-02-10|1993-03-20|1993-03-09|COLLECT COD|RAIL|eans. slyly special deposits ha| +58026|95619|45620|3|44|71042.84|0.10|0.05|R|F|1993-06-03|1993-03-29|1993-06-29|COLLECT COD|RAIL|tions solve busily. carefully regular the| +58026|66508|4012|4|43|63403.50|0.03|0.01|A|F|1993-03-24|1993-03-14|1993-03-28|DELIVER IN PERSON|TRUCK|ironic pinto beans. fluffily ironic foxes | +58027|874871|12423|1|25|46145.75|0.05|0.03|N|O|1998-01-10|1997-10-23|1998-01-17|DELIVER IN PERSON|TRUCK|kages detect carefully special accounts| +58028|452107|2108|1|13|13768.04|0.09|0.00|N|O|1996-08-22|1996-09-21|1996-09-08|NONE|RAIL|are carefully silent, re| +58028|551407|1408|2|14|20417.32|0.00|0.06|N|O|1996-06-30|1996-07-30|1996-07-25|DELIVER IN PERSON|RAIL|se according to the carefully special pack| +58028|484267|21795|3|20|25024.80|0.02|0.01|N|O|1996-08-27|1996-09-23|1996-09-06|NONE|AIR|ly carefully express foxes. fluffily| +58028|70811|20812|4|22|39199.82|0.07|0.02|N|O|1996-10-03|1996-09-17|1996-10-25|TAKE BACK RETURN|RAIL|. pinto beans s| +58028|105439|30444|5|32|46221.76|0.06|0.05|N|O|1996-09-27|1996-09-11|1996-10-12|COLLECT COD|RAIL|ve the ironic instruct| +58028|103434|15937|6|5|7187.15|0.05|0.06|N|O|1996-07-18|1996-08-05|1996-07-25|COLLECT COD|SHIP|kly final packa| +58028|402634|2635|7|5|7683.05|0.05|0.04|N|O|1996-08-29|1996-09-19|1996-09-10|NONE|SHIP|ely pending ideas haggle along t| +58029|57698|7699|1|45|74506.05|0.07|0.01|N|O|1996-03-01|1996-03-25|1996-03-23|COLLECT COD|RAIL|ly furious instructio| +58029|715217|15218|2|30|36965.40|0.01|0.05|N|O|1996-05-21|1996-04-03|1996-06-12|DELIVER IN PERSON|FOB|s haggle blithely! foxes nag al| +58029|645447|20472|3|16|22278.56|0.00|0.05|N|O|1996-05-25|1996-05-10|1996-06-24|DELIVER IN PERSON|SHIP|dolites. regular, unusual accounts abo| +58030|650969|970|1|25|47998.25|0.09|0.04|N|O|1995-11-22|1995-12-08|1995-12-03|TAKE BACK RETURN|RAIL|side of the deposits. special | +58030|828860|28861|2|32|57242.24|0.01|0.08|N|O|1996-01-31|1996-01-27|1996-02-02|NONE|TRUCK|uriously pe| +58030|640068|27605|3|49|49393.47|0.10|0.05|N|O|1995-12-04|1996-01-01|1995-12-10|DELIVER IN PERSON|TRUCK|s. unusual, pending accounts | +58030|615794|28307|4|21|35904.96|0.00|0.07|N|O|1995-11-29|1995-12-30|1995-12-26|NONE|RAIL|tes. slyly special multipliers acco| +58031|469941|7469|1|2|3821.84|0.09|0.03|N|O|1995-11-10|1995-11-27|1995-11-13|DELIVER IN PERSON|SHIP|es. regular pinto beans boost quickly| +58031|295440|45441|2|26|37321.18|0.07|0.04|N|O|1995-11-09|1995-11-16|1995-11-15|COLLECT COD|RAIL|nstructions boost according to the | +58031|459120|34139|3|16|17265.60|0.08|0.03|N|O|1995-10-20|1995-10-15|1995-10-23|COLLECT COD|MAIL|cial accounts.| +58031|428862|28863|4|2|3581.68|0.09|0.02|N|O|1995-09-12|1995-11-03|1995-10-10|COLLECT COD|AIR|iments nag pending, ironic r| +58031|877257|2292|5|34|41963.14|0.10|0.08|N|O|1996-01-07|1995-11-09|1996-02-01|NONE|FOB| the blithely final ideas. blithely silen| +58031|57056|19558|6|25|25326.25|0.10|0.05|N|O|1996-01-03|1995-10-26|1996-01-18|TAKE BACK RETURN|TRUCK|riously quickly pending pearls. blithely s| +58056|340027|2534|1|31|33077.31|0.05|0.04|N|O|1996-12-18|1996-12-16|1997-01-07|DELIVER IN PERSON|TRUCK|zzle. pending, bo| +58056|828412|3445|2|24|32168.88|0.07|0.04|N|O|1997-01-28|1996-11-25|1997-02-23|TAKE BACK RETURN|REG AIR|s print among the| +58056|120203|7710|3|15|18348.00|0.04|0.08|N|O|1996-10-29|1996-12-11|1996-11-06|DELIVER IN PERSON|RAIL|refully unusual platel| +58056|242048|17057|4|23|22770.69|0.06|0.07|N|O|1996-10-13|1997-01-01|1996-11-06|NONE|FOB| cajole quickly after the carefully regul| +58056|88482|38483|5|34|49996.32|0.03|0.03|N|O|1996-11-22|1996-11-18|1996-12-01|DELIVER IN PERSON|FOB|ully slyly close dependencie| +58056|109523|47030|6|35|53638.20|0.00|0.06|N|O|1997-02-01|1996-12-26|1997-02-18|NONE|RAIL|nic accounts. accounts eng| +58057|382227|44735|1|2|2618.42|0.02|0.01|N|O|1996-06-11|1996-06-28|1996-07-02|COLLECT COD|REG AIR|uickly ironic packages affix careful| +58057|87531|12534|2|20|30370.60|0.05|0.01|N|O|1996-07-31|1996-07-01|1996-08-06|DELIVER IN PERSON|MAIL|final deposits. slyly sil| +58057|121159|21160|3|33|38944.95|0.10|0.03|N|O|1996-07-06|1996-06-09|1996-07-26|NONE|MAIL|yly. express, bold dep| +58057|308167|33180|4|2|2350.30|0.05|0.01|N|O|1996-07-08|1996-05-30|1996-07-17|TAKE BACK RETURN|MAIL|foxes sleep| +58057|359200|9201|5|20|25183.80|0.10|0.04|N|O|1996-06-02|1996-06-04|1996-06-19|TAKE BACK RETURN|MAIL|inal reque| +58057|71426|46429|6|18|25153.56|0.05|0.07|N|O|1996-05-16|1996-06-10|1996-05-18|NONE|FOB|ular requests. silently re| +58058|89765|2267|1|3|5264.28|0.09|0.02|N|O|1997-10-13|1997-10-16|1997-10-31|NONE|TRUCK|y bold deposit| +58058|665450|15451|2|36|50955.12|0.04|0.02|N|O|1997-09-02|1997-10-12|1997-09-28|DELIVER IN PERSON|AIR|lyly regular packages. regular, bo| +58058|203172|40685|3|29|31179.64|0.01|0.03|N|O|1997-11-29|1997-11-14|1997-12-11|TAKE BACK RETURN|SHIP|ly bold requests wake toward| +58058|697384|22411|4|44|60779.40|0.04|0.08|N|O|1997-11-06|1997-11-08|1997-11-26|COLLECT COD|AIR|ts cajole bravely. furiously| +58058|927733|15288|5|25|44017.25|0.06|0.06|N|O|1997-11-07|1997-09-22|1997-11-27|NONE|FOB|ost slyly unusual requests. carefu| +58059|887257|12292|1|28|34837.88|0.09|0.07|R|F|1992-08-05|1992-10-13|1992-08-28|TAKE BACK RETURN|REG AIR|lar accounts nag accordi| +58059|116291|41296|2|34|44447.86|0.04|0.07|R|F|1992-09-16|1992-09-14|1992-09-18|DELIVER IN PERSON|SHIP|press pinto bea| +58059|488533|26061|3|25|38037.75|0.09|0.04|A|F|1992-11-15|1992-10-09|1992-12-03|COLLECT COD|SHIP|ain slyly after | +58059|757575|20091|4|16|26120.64|0.08|0.06|R|F|1992-11-26|1992-10-21|1992-12-23|TAKE BACK RETURN|REG AIR| slyly reg| +58059|548916|23937|5|2|3929.78|0.00|0.04|R|F|1992-09-26|1992-10-10|1992-10-15|TAKE BACK RETURN|REG AIR| furiously silent notorni| +58059|614851|39876|6|15|26487.30|0.06|0.01|R|F|1992-09-24|1992-09-09|1992-09-30|TAKE BACK RETURN|MAIL|accounts cajole furiously special ac| +58059|790256|40257|7|43|57887.46|0.03|0.02|R|F|1992-08-30|1992-09-14|1992-09-15|DELIVER IN PERSON|RAIL|ongside of th| +58060|820024|7573|1|38|35871.24|0.00|0.00|R|F|1995-02-05|1995-01-01|1995-02-20|DELIVER IN PERSON|MAIL|ss the quickly regular requests. i| +58061|226299|38804|1|9|11027.52|0.02|0.00|N|O|1995-12-18|1995-11-16|1995-12-21|DELIVER IN PERSON|MAIL|eposits se| +58062|718300|18301|1|30|39548.10|0.02|0.02|A|F|1995-01-27|1995-01-21|1995-02-02|COLLECT COD|MAIL|ole ironically| +58062|462116|24626|2|17|18327.53|0.05|0.05|R|F|1994-12-17|1995-01-12|1994-12-21|NONE|RAIL|es. deposits about the carefully even acco| +58063|883000|8035|1|8|7863.68|0.00|0.00|N|O|1998-04-24|1998-03-09|1998-05-05|NONE|MAIL|fily even packages. furiously i| +58063|580216|5239|2|9|11665.71|0.10|0.08|N|O|1998-03-23|1998-02-15|1998-04-05|TAKE BACK RETURN|REG AIR|ously blithely regular dugouts. c| +58063|673629|11169|3|47|75321.73|0.07|0.08|N|O|1998-01-27|1998-02-13|1998-02-07|COLLECT COD|SHIP|deas across the carefully regular dep| +58063|671031|46058|4|6|6012.00|0.09|0.03|N|O|1998-03-22|1998-03-19|1998-04-01|TAKE BACK RETURN|RAIL|regular asymp| +58063|10934|23435|5|43|79331.99|0.08|0.02|N|O|1998-01-19|1998-02-22|1998-01-21|COLLECT COD|MAIL|deas cajole even de| +58063|752914|2915|6|32|62940.16|0.02|0.06|N|O|1998-03-14|1998-03-09|1998-03-31|TAKE BACK RETURN|AIR| ironic requests use slyly slyly sp| +58088|633378|45891|1|16|20981.44|0.10|0.00|R|F|1992-05-31|1992-06-27|1992-06-10|TAKE BACK RETURN|MAIL|s. accounts integrate quickly careful| +58088|183191|8198|2|2|2548.38|0.09|0.06|A|F|1992-07-23|1992-07-05|1992-08-05|NONE|MAIL|ts above the special requests wake caref| +58089|618383|30896|1|10|13013.50|0.09|0.05|R|F|1992-05-07|1992-05-20|1992-05-17|DELIVER IN PERSON|TRUCK| pending deposits us| +58089|158745|46255|2|31|55915.94|0.07|0.07|R|F|1992-07-18|1992-05-14|1992-07-23|TAKE BACK RETURN|SHIP|structions cajole furio| +58089|19541|7042|3|9|13144.86|0.02|0.00|A|F|1992-05-16|1992-05-24|1992-05-27|COLLECT COD|TRUCK|ns nag. quickly | +58089|424046|24047|4|5|4850.10|0.00|0.03|A|F|1992-04-26|1992-06-04|1992-05-02|DELIVER IN PERSON|TRUCK|theodolites affix furiously af| +58090|674740|37254|1|6|10288.26|0.07|0.03|N|O|1995-12-31|1995-11-24|1996-01-16|COLLECT COD|REG AIR|t carefully abo| +58090|343011|18024|2|39|41106.00|0.04|0.01|N|O|1996-01-23|1995-11-14|1996-02-20|DELIVER IN PERSON|SHIP|ccounts try to h| +58090|972054|47093|3|50|56300.50|0.07|0.08|N|O|1995-11-25|1995-12-07|1995-12-25|TAKE BACK RETURN|RAIL| the slyly unusual foxes sleep c| +58091|885275|10310|1|30|37806.90|0.05|0.07|N|O|1997-04-26|1997-06-02|1997-05-14|COLLECT COD|MAIL|-ray blithely ideas. blithely bold packag| +58091|802849|27882|2|30|52554.00|0.00|0.07|N|O|1997-05-13|1997-06-21|1997-05-18|DELIVER IN PERSON|RAIL|arefully specia| +58092|400251|12760|1|38|43746.74|0.02|0.07|N|O|1998-07-28|1998-06-24|1998-08-06|COLLECT COD|RAIL|er the quick deposits. si| +58093|825224|12773|1|19|21834.42|0.04|0.02|R|F|1993-11-29|1994-01-21|1993-12-11|TAKE BACK RETURN|AIR|nal, silent accounts | +58093|535440|35441|2|43|63443.06|0.09|0.03|A|F|1994-01-11|1994-01-12|1994-02-05|NONE|REG AIR|ic deposits. packages a| +58093|125657|13164|3|29|48796.85|0.03|0.02|R|F|1993-12-12|1994-01-01|1993-12-30|TAKE BACK RETURN|REG AIR|ggle quickly bl| +58093|907036|44591|4|6|6257.94|0.05|0.01|A|F|1994-01-25|1994-01-14|1994-02-18|NONE|MAIL|lly among the carefully regul| +58093|544534|19555|5|28|44198.28|0.01|0.00|A|F|1994-01-31|1994-01-03|1994-02-17|DELIVER IN PERSON|AIR|deas haggle. b| +58093|970407|32927|6|22|32501.92|0.02|0.06|A|F|1994-01-27|1994-01-28|1994-01-28|COLLECT COD|MAIL|ideas promise furiously. packages sleep. un| +58093|615991|15992|7|17|32418.32|0.05|0.07|A|F|1994-03-01|1994-02-02|1994-03-18|COLLECT COD|MAIL|ly even accounts. | +58094|948918|36473|1|2|3933.74|0.04|0.03|N|O|1997-03-14|1997-01-05|1997-03-31|NONE|TRUCK|ely ironic deposits x-ra| +58094|458500|8501|2|35|51046.80|0.07|0.00|N|O|1997-03-07|1997-01-17|1997-03-31|COLLECT COD|TRUCK|onic courts. ruthless | +58094|2808|40309|3|35|59878.00|0.02|0.06|N|O|1997-01-13|1997-01-25|1997-02-01|DELIVER IN PERSON|REG AIR|egular courts sleep blithely reg| +58094|182027|32028|4|38|42142.76|0.01|0.01|N|O|1997-01-02|1997-03-01|1997-01-29|COLLECT COD|MAIL|ly final i| +58095|969162|19163|1|12|14773.44|0.03|0.01|A|F|1992-08-11|1992-07-02|1992-08-18|COLLECT COD|FOB|ound the p| +58095|693820|6334|2|11|19951.69|0.08|0.06|R|F|1992-09-02|1992-08-26|1992-10-01|TAKE BACK RETURN|RAIL| quickly after the special asym| +58095|32177|32178|3|43|47694.31|0.06|0.08|R|F|1992-07-31|1992-08-25|1992-08-22|DELIVER IN PERSON|RAIL| regular a| +58120|982400|7439|1|42|62259.12|0.00|0.05|N|O|1996-09-01|1996-09-05|1996-09-14|DELIVER IN PERSON|REG AIR|s ideas above the special requests de| +58121|441895|29420|1|42|77148.54|0.09|0.07|N|O|1997-08-30|1997-09-10|1997-09-15|TAKE BACK RETURN|FOB|nticing requests. ironi| +58121|912578|133|2|20|31810.60|0.02|0.00|N|O|1997-08-17|1997-10-08|1997-09-15|NONE|RAIL|olites wake fur| +58121|693159|18186|3|24|27650.88|0.05|0.06|N|O|1997-08-15|1997-10-14|1997-08-18|TAKE BACK RETURN|REG AIR| pinto beans. ca| +58121|913419|38456|4|49|70186.13|0.07|0.00|N|O|1997-08-15|1997-10-25|1997-08-25|NONE|SHIP|ely carefully pendin| +58121|822197|47230|5|36|40289.40|0.02|0.08|N|O|1997-10-03|1997-10-09|1997-11-01|NONE|MAIL|nto beans cajol| +58121|660807|35834|6|40|70710.80|0.01|0.02|N|O|1997-09-07|1997-09-15|1997-09-18|DELIVER IN PERSON|AIR|instructions haggle carefully | +58122|247770|10275|1|9|15459.84|0.04|0.04|R|F|1992-10-10|1992-09-12|1992-10-25|DELIVER IN PERSON|RAIL|ccounts along the furiously ironic a| +58122|264527|14528|2|4|5966.04|0.07|0.01|A|F|1992-08-22|1992-08-27|1992-09-21|COLLECT COD|AIR| beans promise furiously quickly even ide| +58122|894358|19393|3|1|1352.31|0.07|0.04|R|F|1992-07-03|1992-09-26|1992-07-20|NONE|MAIL|ages. slyly ironic account| +58122|474714|37224|4|1|1688.69|0.04|0.05|A|F|1992-10-19|1992-08-05|1992-11-11|NONE|MAIL|lyly ironic theodolites amo| +58122|514097|1628|5|5|5555.35|0.05|0.03|A|F|1992-08-30|1992-08-06|1992-09-10|DELIVER IN PERSON|AIR|slyly instead of the careful| +58123|330245|30246|1|28|35706.44|0.08|0.06|N|O|1997-09-02|1997-10-12|1997-09-22|DELIVER IN PERSON|MAIL|pending exc| +58123|424945|12470|2|45|84146.40|0.04|0.01|N|O|1997-08-19|1997-10-16|1997-09-10|DELIVER IN PERSON|AIR|as against th| +58123|41166|16167|3|25|27679.00|0.04|0.00|N|O|1997-11-14|1997-10-19|1997-11-24|DELIVER IN PERSON|RAIL|. slyly final theodolites despite t| +58123|870945|33463|4|38|72804.20|0.00|0.05|N|O|1997-10-24|1997-10-17|1997-10-25|NONE|AIR|g ideas sleep fluffily unusual pinto be| +58123|972452|34972|5|32|48781.12|0.05|0.02|N|O|1997-08-08|1997-09-20|1997-09-06|NONE|TRUCK|lyly even in| +58124|614321|39346|1|45|55588.05|0.08|0.05|N|O|1995-11-08|1996-01-07|1995-12-05|TAKE BACK RETURN|TRUCK|ts was fluffily. package| +58125|166642|4152|1|28|47841.92|0.00|0.01|N|O|1997-02-05|1997-03-30|1997-02-18|COLLECT COD|RAIL|al accounts wake| +58125|741209|41210|2|44|55007.48|0.01|0.05|N|O|1997-03-08|1997-04-16|1997-03-17|TAKE BACK RETURN|FOB|ngside of the regular, bold pack| +58125|487505|37506|3|33|49251.84|0.04|0.07|N|O|1997-02-14|1997-03-22|1997-03-12|NONE|REG AIR| foxes wake alon| +58125|490874|3384|4|29|54080.65|0.05|0.01|N|O|1997-04-15|1997-03-29|1997-05-15|COLLECT COD|SHIP|lithely dolphins. specia| +58126|552733|40267|1|42|74999.82|0.05|0.06|R|F|1994-02-01|1994-02-11|1994-02-10|COLLECT COD|RAIL|are slyly. slyly final theodolites | +58126|776451|26452|2|48|73316.16|0.10|0.05|A|F|1993-12-20|1994-01-09|1993-12-28|NONE|RAIL|rding to the unusual accounts. qui| +58126|808904|8905|3|35|63450.10|0.04|0.08|R|F|1994-03-02|1994-01-17|1994-03-06|DELIVER IN PERSON|FOB|uctions against | +58126|235676|48181|4|45|72524.70|0.02|0.05|A|F|1994-01-18|1994-01-23|1994-02-11|COLLECT COD|MAIL|he pending deposits. slyly re| +58126|996147|8667|5|20|24862.00|0.02|0.07|R|F|1994-02-06|1994-02-02|1994-02-19|NONE|RAIL|ests. carefully special dolphins wake furi| +58127|918499|43536|1|2|3034.90|0.01|0.01|A|F|1992-12-01|1993-02-12|1992-12-25|DELIVER IN PERSON|TRUCK|olve furious| +58127|209686|9687|2|12|19148.04|0.06|0.07|R|F|1992-11-24|1993-01-01|1992-12-23|NONE|REG AIR|ously final deposits. | +58127|183140|20650|3|7|8561.98|0.04|0.08|R|F|1992-12-08|1993-01-05|1992-12-19|DELIVER IN PERSON|MAIL|according to| +58152|57876|7877|1|35|64185.45|0.07|0.07|A|F|1993-12-19|1994-02-07|1993-12-24|DELIVER IN PERSON|TRUCK|l foxes. furiou| +58152|714016|39045|2|29|29869.42|0.05|0.03|A|F|1994-01-30|1993-12-30|1994-02-07|COLLECT COD|SHIP|re carefully furious| +58152|453579|16089|3|39|59769.45|0.00|0.06|A|F|1994-01-29|1993-12-23|1994-02-12|NONE|TRUCK|odolites maint| +58152|289535|14546|4|1|1524.52|0.07|0.02|R|F|1994-02-12|1994-02-02|1994-03-03|COLLECT COD|MAIL|eodolites. bold, silent| +58152|201138|26147|5|38|39486.56|0.03|0.07|R|F|1994-03-17|1994-01-26|1994-04-16|TAKE BACK RETURN|MAIL|ly ironic | +58152|509972|22483|6|37|73332.15|0.08|0.01|R|F|1994-02-01|1993-12-29|1994-03-03|TAKE BACK RETURN|AIR|g packages. ironic dol| +58153|548386|10897|1|18|25818.48|0.08|0.05|A|F|1992-07-12|1992-05-26|1992-07-15|DELIVER IN PERSON|MAIL|its are bold requests. evenly express asym| +58153|706963|31992|2|23|45308.39|0.03|0.01|A|F|1992-06-13|1992-05-28|1992-06-20|COLLECT COD|REG AIR|uickly ironic dependencies | +58153|926707|26708|3|38|65879.08|0.09|0.03|R|F|1992-04-08|1992-05-26|1992-05-06|TAKE BACK RETURN|AIR|ic theodolites against the final a| +58153|153960|41470|4|49|98684.04|0.08|0.00|A|F|1992-04-10|1992-04-30|1992-04-27|TAKE BACK RETURN|MAIL|l dependencies along| +58153|596467|8979|5|18|28141.92|0.04|0.08|A|F|1992-06-17|1992-05-14|1992-06-22|TAKE BACK RETURN|RAIL| slyly through the carefully f| +58153|819950|44983|6|13|24308.83|0.10|0.00|R|F|1992-05-23|1992-04-21|1992-06-16|TAKE BACK RETURN|MAIL|are slyly across the doggedly regul| +58154|327244|14763|1|22|27967.06|0.00|0.03|N|O|1996-03-19|1996-02-26|1996-04-02|TAKE BACK RETURN|SHIP|ve the never bol| +58154|976294|38814|2|42|57550.50|0.09|0.05|N|O|1996-02-01|1996-03-07|1996-02-24|NONE|RAIL|er the even, regular pinto beans. furio| +58154|563400|25912|3|5|7316.90|0.01|0.07|N|O|1996-04-11|1996-04-20|1996-05-06|DELIVER IN PERSON|TRUCK|hely silent forges. blithely bold deposit| +58154|53761|41265|4|14|24006.64|0.04|0.04|N|O|1996-05-19|1996-04-13|1996-06-18|TAKE BACK RETURN|AIR|posits haggle fu| +58155|770916|8462|1|14|27816.32|0.07|0.06|N|O|1996-01-14|1996-02-13|1996-02-11|COLLECT COD|REG AIR| foxes. accounts along the final, iro| +58155|781517|44033|2|48|76727.04|0.00|0.08|N|O|1996-02-02|1996-03-30|1996-02-06|COLLECT COD|RAIL|its. regular accounts boost fluffily si| +58155|944540|7059|3|10|15845.00|0.10|0.06|N|O|1996-03-19|1996-02-24|1996-04-04|DELIVER IN PERSON|REG AIR|ounts sleep final frets. even reque| +58155|871987|47022|4|39|76398.66|0.07|0.00|N|O|1996-01-27|1996-03-05|1996-01-31|NONE|REG AIR|cajole sly| +58155|471251|46270|5|10|12222.30|0.01|0.04|N|O|1996-03-06|1996-02-14|1996-04-03|COLLECT COD|MAIL|; slyly spec| +58155|301516|26529|6|47|71322.50|0.06|0.08|N|O|1996-04-09|1996-02-24|1996-04-17|TAKE BACK RETURN|SHIP|equests. re| +58156|895336|20371|1|8|10650.32|0.06|0.03|N|O|1996-02-11|1996-03-30|1996-03-09|DELIVER IN PERSON|TRUCK|ep quickly deposits. slyly even| +58156|897098|47099|2|32|35041.60|0.01|0.08|N|O|1996-03-05|1996-03-11|1996-04-01|DELIVER IN PERSON|SHIP|the furiously enticing excuses| +58157|641154|28691|1|16|17521.92|0.10|0.08|N|O|1996-02-27|1996-03-08|1996-03-04|DELIVER IN PERSON|SHIP|t the busily final theodolites. fluffily fi| +58157|860939|23457|2|13|24698.57|0.07|0.04|N|O|1996-03-27|1996-02-15|1996-04-09|COLLECT COD|FOB|e blithely after the carefully| +58157|792675|42676|3|30|53029.20|0.10|0.04|N|O|1996-03-12|1996-03-21|1996-04-06|COLLECT COD|MAIL|o beans. quickly i| +58158|750224|12740|1|36|45870.84|0.03|0.06|A|F|1994-01-12|1993-11-15|1994-01-19|NONE|RAIL|ainst the even, ironic excuses. doggedl| +58158|11414|48915|2|49|64945.09|0.08|0.01|R|F|1993-12-27|1993-12-02|1994-01-15|DELIVER IN PERSON|SHIP|totes. ironic, final requests are regul| +58158|830400|5433|3|10|13303.60|0.01|0.02|R|F|1993-09-29|1993-10-23|1993-10-19|DELIVER IN PERSON|RAIL|uickly ironic i| +58159|7149|19650|1|39|41189.46|0.07|0.02|N|O|1997-03-27|1997-05-02|1997-04-18|NONE|TRUCK|ticing instructions. carefully ironic p| +58159|144129|6632|2|46|53963.52|0.09|0.02|N|O|1997-03-13|1997-04-09|1997-03-28|COLLECT COD|AIR|lyly regular ideas? slow, speci| +58159|367193|42208|3|17|21423.06|0.00|0.00|N|O|1997-03-29|1997-04-11|1997-04-19|NONE|MAIL|among the final instructions. silent| +58159|399660|37182|4|20|35193.00|0.01|0.05|N|O|1997-03-07|1997-04-07|1997-03-29|COLLECT COD|MAIL|nt deposits wake fluffily slyly expr| +58159|70583|45586|5|7|10875.06|0.06|0.01|N|O|1997-03-13|1997-04-04|1997-04-02|DELIVER IN PERSON|TRUCK|nts cajole. packages use s| +58184|124254|24255|1|45|57521.25|0.00|0.06|A|F|1992-11-27|1992-11-26|1992-12-23|COLLECT COD|REG AIR|uickly pending pinto beans a| +58184|326131|1144|2|45|52070.40|0.03|0.04|R|F|1992-10-25|1992-12-07|1992-10-30|DELIVER IN PERSON|REG AIR|its wake slyly across the si| +58184|268094|18095|3|3|3186.24|0.09|0.02|A|F|1992-11-13|1992-12-18|1992-12-03|DELIVER IN PERSON|REG AIR|c accounts aff| +58184|845396|20429|4|20|26827.00|0.07|0.07|R|F|1993-01-20|1992-10-23|1993-02-04|TAKE BACK RETURN|AIR|ily ironic i| +58184|557955|45489|5|13|26168.09|0.10|0.04|R|F|1992-11-21|1992-11-02|1992-12-01|COLLECT COD|TRUCK|requests cajole quickly along the | +58184|533225|8246|6|27|33971.40|0.06|0.02|R|F|1992-09-30|1992-12-19|1992-10-22|NONE|MAIL| detect carefully spec| +58185|244841|32354|1|27|48217.41|0.05|0.01|N|O|1996-02-28|1996-03-24|1996-03-13|NONE|TRUCK|al dolphins need to unw| +58185|38049|25550|2|20|19740.80|0.02|0.08|N|O|1996-03-13|1996-03-30|1996-03-29|DELIVER IN PERSON|FOB|ly slowly final accounts. final, ironic de| +58186|21153|8654|1|9|9667.35|0.06|0.07|R|F|1993-03-18|1993-01-18|1993-04-15|TAKE BACK RETURN|TRUCK|uriously slyly unus| +58186|514898|39919|2|23|43996.01|0.02|0.07|A|F|1993-03-15|1993-01-22|1993-04-08|NONE|RAIL|ltipliers are quickly after the u| +58186|883918|33919|3|24|45644.88|0.02|0.05|A|F|1993-03-09|1993-01-09|1993-03-30|TAKE BACK RETURN|REG AIR| carefully ironic| +58186|996120|46121|4|16|19457.28|0.00|0.01|R|F|1993-01-18|1993-01-20|1993-01-19|NONE|FOB|fily slyly ironic | +58186|784908|9939|5|15|29893.05|0.01|0.00|A|F|1993-03-21|1993-01-08|1993-03-30|TAKE BACK RETURN|REG AIR| beans alon| +58186|942766|30321|6|5|9043.60|0.03|0.00|R|F|1993-03-25|1993-01-06|1993-04-07|COLLECT COD|FOB|uests sleep fluffily from the ironic asy| +58186|63138|642|7|34|37438.42|0.10|0.01|R|F|1993-02-22|1993-02-19|1993-03-20|DELIVER IN PERSON|MAIL|ses use furiously always daring deposits. e| +58187|158367|20871|1|20|28507.20|0.08|0.01|A|F|1992-07-29|1992-08-16|1992-08-19|COLLECT COD|SHIP|fully express asymptotes. carefully final| +58187|662894|434|2|43|79844.98|0.01|0.05|A|F|1992-09-11|1992-06-18|1992-10-05|DELIVER IN PERSON|SHIP|ng to the deposits sublate s| +58187|248676|48677|3|1|1624.66|0.03|0.01|R|F|1992-06-17|1992-08-14|1992-06-26|TAKE BACK RETURN|FOB|eposits. special, regular | +58187|491730|4240|4|47|80920.37|0.07|0.07|A|F|1992-05-23|1992-06-28|1992-06-04|DELIVER IN PERSON|FOB|lar ideas. even or| +58188|282320|7331|1|11|14325.41|0.04|0.04|N|O|1996-02-10|1995-12-31|1996-02-23|DELIVER IN PERSON|MAIL|ly ironic | +58188|939231|1750|2|38|48267.22|0.07|0.02|N|O|1996-02-01|1995-12-07|1996-02-18|DELIVER IN PERSON|RAIL|quickly pending accounts| +58189|23530|23531|1|25|36338.25|0.09|0.01|A|F|1993-12-06|1993-12-10|1994-01-05|COLLECT COD|AIR|n, bold dependencies. quickly final pla| +58189|453745|28764|2|39|66250.08|0.02|0.04|A|F|1993-10-08|1993-11-16|1993-10-28|DELIVER IN PERSON|AIR|ndencies. even courts boost furiously alo| +58189|80582|30583|3|11|17188.38|0.04|0.01|R|F|1993-11-03|1993-11-08|1993-11-08|TAKE BACK RETURN|TRUCK|s? blithely pending requests detect furiou| +58189|338683|26202|4|5|8608.35|0.07|0.08|R|F|1993-10-22|1993-11-12|1993-11-21|TAKE BACK RETURN|AIR|ic excuses are carefully besides| +58189|235578|10587|5|48|72650.88|0.01|0.02|R|F|1993-12-02|1993-11-27|1993-12-25|TAKE BACK RETURN|MAIL|s the accounts. regular, ruthless reques| +58189|357978|7979|6|43|87546.28|0.00|0.01|R|F|1993-11-07|1993-12-14|1993-12-05|NONE|REG AIR|final courts sl| +58190|150951|38461|1|42|84081.90|0.09|0.08|R|F|1994-10-11|1994-09-17|1994-11-08|TAKE BACK RETURN|RAIL|counts cajole across the quick| +58190|24786|24787|2|17|29083.26|0.00|0.01|A|F|1994-10-16|1994-10-16|1994-10-31|COLLECT COD|AIR|ironic accounts wa| +58190|568154|30666|3|22|26886.86|0.07|0.02|A|F|1994-08-16|1994-10-30|1994-08-28|TAKE BACK RETURN|SHIP|sly. carefully ir| +58190|960013|47571|4|22|23605.34|0.00|0.05|R|F|1994-11-12|1994-09-16|1994-11-28|TAKE BACK RETURN|FOB|special packages above the | +58190|935193|35194|5|40|49126.00|0.07|0.07|A|F|1994-08-18|1994-09-18|1994-09-01|COLLECT COD|RAIL|carefully ironic p| +58190|787239|24785|6|10|13262.00|0.05|0.01|R|F|1994-08-22|1994-09-07|1994-09-21|COLLECT COD|REG AIR|blithely final requests. unus| +58190|113267|13268|7|23|29445.98|0.05|0.01|A|F|1994-08-15|1994-09-13|1994-09-04|NONE|AIR|uriously regular ideas. regu| +58191|668990|44017|1|23|45056.08|0.08|0.05|A|F|1994-03-13|1994-02-14|1994-04-01|COLLECT COD|RAIL|s. even, dogged forges maintai| +58191|704028|16543|2|2|2063.98|0.10|0.05|R|F|1993-12-22|1994-02-01|1994-01-10|TAKE BACK RETURN|TRUCK|ajole even requests. blithely f| +58216|127103|39606|1|30|33903.00|0.04|0.00|R|F|1993-11-06|1993-10-23|1993-12-06|TAKE BACK RETURN|REG AIR|s. carefully pending packages about t| +58216|210237|22742|2|41|47036.02|0.07|0.00|R|F|1993-11-04|1993-12-14|1993-11-26|TAKE BACK RETURN|SHIP|never final instructions.| +58216|443441|30966|3|39|53992.38|0.04|0.06|R|F|1993-09-30|1993-12-12|1993-10-24|NONE|AIR| furiously! slyly unusua| +58216|910603|23122|4|27|43566.12|0.06|0.08|A|F|1993-11-04|1993-11-05|1993-11-30|NONE|RAIL|s nag blithely against the| +58217|508405|33426|1|22|31094.36|0.06|0.07|N|O|1998-10-21|1998-09-08|1998-11-17|TAKE BACK RETURN|REG AIR| silent depo| +58218|703282|3283|1|39|50124.75|0.00|0.06|A|F|1994-05-16|1994-05-30|1994-06-01|TAKE BACK RETURN|REG AIR|ng the requests. quickly final foxes are | +58219|265836|28342|1|44|79280.08|0.10|0.01|N|O|1997-03-17|1997-02-09|1997-04-08|TAKE BACK RETURN|TRUCK|ns use care| +58219|896020|33572|2|12|12191.76|0.07|0.03|N|O|1996-12-27|1997-03-06|1997-01-24|TAKE BACK RETURN|FOB|final platelets | +58219|398574|11082|3|18|30106.08|0.01|0.08|N|O|1997-01-13|1997-02-17|1997-01-23|COLLECT COD|MAIL|usual requests | +58220|285029|47535|1|47|47658.47|0.05|0.07|A|F|1993-03-29|1993-04-14|1993-04-15|DELIVER IN PERSON|REG AIR|nstructions wake. regular accounts boo| +58220|468250|30760|2|48|58475.04|0.09|0.05|R|F|1993-04-05|1993-03-22|1993-05-01|COLLECT COD|MAIL|, final deposits sleep | +58220|871554|9106|3|7|10678.57|0.10|0.06|A|F|1993-04-28|1993-04-25|1993-05-15|NONE|MAIL|s nag carefull| +58220|204764|17269|4|27|45056.25|0.01|0.05|R|F|1993-05-28|1993-04-15|1993-06-26|DELIVER IN PERSON|TRUCK|fully regular ideas instead of the evenl| +58220|463661|38680|5|24|38991.36|0.10|0.03|A|F|1993-03-15|1993-05-01|1993-03-29|DELIVER IN PERSON|SHIP|ic foxes. fluffily final ideas ab| +58220|741637|41638|6|7|11750.20|0.05|0.03|R|F|1993-03-25|1993-04-28|1993-03-29|NONE|SHIP|he furiously silent requests. fur| +58221|762316|37347|1|46|63400.88|0.09|0.04|N|O|1998-08-30|1998-07-05|1998-09-19|NONE|TRUCK|es nag furiously. slyly unusual | +58221|232413|7422|2|26|34980.40|0.07|0.07|N|O|1998-09-14|1998-07-26|1998-10-06|TAKE BACK RETURN|RAIL|ly express theodoli| +58221|161043|48553|3|40|44161.60|0.04|0.03|N|O|1998-09-21|1998-08-06|1998-09-27|DELIVER IN PERSON|MAIL|ans after the blithely even theod| +58221|640521|40522|4|13|18999.37|0.07|0.02|N|O|1998-07-04|1998-08-27|1998-08-02|NONE|FOB|lites. depths haggle| +58221|235641|10650|5|10|15766.30|0.10|0.08|N|O|1998-07-08|1998-07-27|1998-07-27|NONE|RAIL|efully about the slyly slow| +58222|497296|22315|1|43|55610.61|0.01|0.08|R|F|1993-08-23|1993-09-25|1993-09-13|NONE|TRUCK|ial requests impress. unusual accounts a| +58222|45493|32994|2|32|46031.68|0.07|0.02|R|F|1993-10-09|1993-08-18|1993-11-01|TAKE BACK RETURN|REG AIR|es are quickly along the foxes. accounts w| +58222|586760|11783|3|8|14773.92|0.02|0.08|A|F|1993-11-02|1993-09-18|1993-11-04|TAKE BACK RETURN|TRUCK|ccounts wake. regular accounts | +58222|662002|49542|4|8|7711.76|0.00|0.01|R|F|1993-11-07|1993-09-18|1993-11-30|NONE|FOB|press platelets. final p| +58222|263582|1098|5|47|72641.79|0.04|0.03|R|F|1993-08-15|1993-09-15|1993-09-03|TAKE BACK RETURN|MAIL|ly under the dolphins.| +58222|9537|47038|6|23|33270.19|0.02|0.06|A|F|1993-08-11|1993-09-06|1993-08-31|DELIVER IN PERSON|AIR|xpress accounts| +58223|149483|49484|1|20|30649.60|0.10|0.07|R|F|1992-07-13|1992-08-05|1992-07-29|COLLECT COD|FOB|deposits after the dar| +58223|352869|40391|2|39|74952.15|0.07|0.04|R|F|1992-09-15|1992-08-16|1992-10-01|TAKE BACK RETURN|MAIL|entiments haggle| +58223|660972|48512|3|35|67652.90|0.09|0.04|R|F|1992-07-13|1992-08-02|1992-08-04|TAKE BACK RETURN|TRUCK|. furiously ironic dep| +58223|941878|16915|4|14|26877.62|0.02|0.00|A|F|1992-08-25|1992-07-29|1992-09-01|TAKE BACK RETURN|SHIP|al requests sleep regular packages. sly| +58223|131467|18974|5|43|64433.78|0.10|0.03|A|F|1992-06-12|1992-08-22|1992-06-19|COLLECT COD|SHIP|oost blithely: fluffily regu| +58223|553115|3116|6|46|53732.14|0.06|0.05|A|F|1992-09-05|1992-09-01|1992-09-14|NONE|SHIP|y regular epita| +58223|203654|3655|7|15|23364.60|0.04|0.04|R|F|1992-09-04|1992-09-02|1992-09-29|COLLECT COD|MAIL|odolites about the carefully final idea| +58248|797434|9950|1|5|7657.00|0.09|0.07|A|F|1993-01-01|1993-01-12|1993-01-13|TAKE BACK RETURN|RAIL|fully regular accounts. regular, ironic id| +58248|460790|10791|2|26|45520.02|0.00|0.06|R|F|1993-02-15|1993-01-17|1993-03-17|COLLECT COD|TRUCK|c courts sleep packa| +58248|492086|29614|3|45|48512.70|0.05|0.01|R|F|1993-01-31|1993-02-02|1993-02-20|TAKE BACK RETURN|REG AIR|hely regular foxes do boost blithely bold | +58248|475723|25724|4|3|5096.10|0.09|0.05|R|F|1993-01-11|1992-12-10|1993-01-12|TAKE BACK RETURN|SHIP|onic requests. express deposits integrate q| +58248|462194|24704|5|41|47402.97|0.05|0.03|R|F|1992-12-14|1993-01-13|1992-12-28|DELIVER IN PERSON|MAIL|old excuses s| +58248|86405|36406|6|50|69570.00|0.01|0.06|R|F|1992-12-10|1993-02-01|1992-12-27|NONE|TRUCK|equests. fluffily final| +58248|207931|32940|7|22|40456.24|0.08|0.04|R|F|1992-12-15|1993-01-12|1993-01-03|NONE|FOB|iously unusual pinto | +58249|694727|32267|1|35|60259.15|0.03|0.06|N|O|1995-07-04|1995-05-18|1995-07-27|TAKE BACK RETURN|SHIP|re blithely furiously ironic ideas! flu| +58249|270768|20769|2|30|52162.50|0.04|0.02|R|F|1995-05-03|1995-05-26|1995-05-12|TAKE BACK RETURN|AIR| deposits us| +58249|786670|11701|3|16|28106.24|0.06|0.02|A|F|1995-05-25|1995-05-19|1995-06-17|NONE|TRUCK|ecial deposits. slyly ca| +58249|551893|14405|4|32|62235.84|0.10|0.08|R|F|1995-03-20|1995-05-19|1995-04-09|NONE|RAIL|ieve final plate| +58249|663207|38234|5|22|25743.74|0.01|0.03|A|F|1995-04-23|1995-06-08|1995-05-09|DELIVER IN PERSON|MAIL|e even dep| +58249|504772|29793|6|25|44418.75|0.08|0.06|R|F|1995-04-21|1995-04-16|1995-05-11|TAKE BACK RETURN|AIR|the carefully silent| +58249|691794|16821|7|33|58930.08|0.06|0.00|N|O|1995-06-24|1995-04-20|1995-07-08|DELIVER IN PERSON|TRUCK|ularly ironic d| +58250|965150|27670|1|5|6075.55|0.03|0.03|R|F|1994-04-26|1994-03-19|1994-04-27|COLLECT COD|FOB| pending packages are care| +58251|681260|6287|1|46|57096.58|0.09|0.08|R|F|1994-08-05|1994-09-09|1994-09-03|COLLECT COD|REG AIR|blithely blithe accounts haggle| +58252|108132|8133|1|15|17101.95|0.04|0.06|N|O|1997-03-20|1997-03-23|1997-03-25|TAKE BACK RETURN|FOB|c accounts. furiously even theodolites | +58252|367460|29968|2|25|38186.25|0.06|0.02|N|O|1997-02-11|1997-04-19|1997-02-18|DELIVER IN PERSON|RAIL|even packages. furiously regular| +58252|883418|45936|3|47|65864.39|0.07|0.06|N|O|1997-03-30|1997-03-31|1997-04-05|DELIVER IN PERSON|AIR|ow requests dazzle| +58253|919815|19816|1|36|66051.72|0.10|0.00|N|O|1996-01-25|1996-02-18|1996-02-04|TAKE BACK RETURN|FOB|express accounts. even platelets against th| +58254|408699|46224|1|17|27330.39|0.02|0.07|N|O|1997-12-10|1997-10-21|1997-12-25|NONE|FOB|inst the instructions. gifts haggle sly| +58254|989536|2056|2|4|6501.96|0.01|0.03|N|O|1997-10-04|1997-10-31|1997-10-11|COLLECT COD|MAIL|arefully fi| +58254|124813|37316|3|26|47783.06|0.10|0.01|N|O|1998-01-07|1997-12-03|1998-02-04|TAKE BACK RETURN|MAIL|s. furiously regular platelets a| +58254|724935|12478|4|43|84275.70|0.07|0.00|N|O|1997-09-15|1997-11-09|1997-09-30|COLLECT COD|RAIL|unusual dol| +58254|970942|20943|5|22|44283.80|0.00|0.02|N|O|1997-10-11|1997-11-15|1997-10-12|DELIVER IN PERSON|REG AIR|indle furiously regular a| +58254|610900|35925|6|5|9054.35|0.01|0.02|N|O|1997-10-18|1997-10-09|1997-11-02|TAKE BACK RETURN|RAIL|y; final theodolites thra| +58255|700141|37684|1|12|13693.32|0.07|0.01|R|F|1994-04-23|1994-05-21|1994-05-17|DELIVER IN PERSON|FOB|onic, special dinos haggle slyly against th| +58255|268628|31134|2|27|43108.47|0.10|0.00|A|F|1994-05-14|1994-04-22|1994-06-09|TAKE BACK RETURN|RAIL|as cajole furiously q| +58255|830122|17671|3|48|50499.84|0.00|0.06|A|F|1994-04-04|1994-05-01|1994-04-24|COLLECT COD|RAIL|s sleep blithely instructions--| +58255|859507|47059|4|14|20530.44|0.06|0.07|A|F|1994-03-27|1994-04-20|1994-04-15|COLLECT COD|REG AIR|es. regular, final accounts beyond the furi| +58255|732342|44857|5|1|1374.31|0.10|0.01|A|F|1994-04-17|1994-06-06|1994-05-01|TAKE BACK RETURN|AIR| furious dependencie| +58255|459378|46906|6|13|17385.55|0.08|0.05|A|F|1994-05-25|1994-05-17|1994-06-15|TAKE BACK RETURN|AIR|ithely final ideas are slyly| +58255|762761|307|7|44|80244.12|0.08|0.02|A|F|1994-06-09|1994-05-26|1994-06-15|DELIVER IN PERSON|SHIP|to the ideas. furi| +58280|716668|16669|1|14|23584.82|0.10|0.02|R|F|1992-03-08|1992-04-20|1992-03-12|DELIVER IN PERSON|AIR|carefully special plate| +58280|37853|12854|2|21|37607.85|0.09|0.06|R|F|1992-02-20|1992-04-23|1992-03-07|COLLECT COD|REG AIR|ages cajole pending tithes. quick| +58280|187267|24777|3|16|21668.16|0.04|0.06|R|F|1992-05-10|1992-04-01|1992-06-05|DELIVER IN PERSON|RAIL| blithely final accounts slee| +58280|394348|6856|4|36|51923.88|0.08|0.08|R|F|1992-05-16|1992-02-28|1992-06-08|DELIVER IN PERSON|SHIP|ully regular theodolites a| +58281|548993|48994|1|17|34713.49|0.03|0.06|N|O|1997-02-15|1997-02-28|1997-03-04|TAKE BACK RETURN|TRUCK|ding to the express packa| +58282|19461|19462|1|31|42794.26|0.05|0.04|N|O|1998-08-17|1998-07-29|1998-08-29|DELIVER IN PERSON|FOB|ly regular instructions detect| +58282|69756|44759|2|49|84561.75|0.10|0.08|N|O|1998-06-13|1998-08-04|1998-06-27|DELIVER IN PERSON|FOB|the pinto b| +58282|372929|47944|3|7|14013.37|0.09|0.06|N|O|1998-09-10|1998-08-13|1998-09-13|NONE|SHIP| dogged sheaves haggle! s| +58282|806864|19381|4|33|58437.06|0.05|0.00|N|O|1998-08-25|1998-07-30|1998-09-21|TAKE BACK RETURN|AIR|y above the bra| +58283|277575|27576|1|39|60549.84|0.04|0.02|N|O|1998-02-26|1998-02-13|1998-03-11|NONE|AIR|imes special account| +58283|198953|11457|2|19|38987.05|0.09|0.03|N|O|1998-03-30|1998-03-09|1998-04-07|TAKE BACK RETURN|FOB|ly even requests | +58283|799956|24987|3|17|34950.64|0.05|0.08|N|O|1998-04-08|1998-03-07|1998-05-08|COLLECT COD|FOB|ly. regular, express packages boost. f| +58283|859418|21936|4|5|6886.85|0.01|0.00|N|O|1998-03-16|1998-03-05|1998-03-29|COLLECT COD|AIR|haggle bli| +58284|47733|47734|1|25|42018.25|0.00|0.04|R|F|1994-09-23|1994-10-20|1994-10-03|COLLECT COD|MAIL| final deposits. carefully final theodolit| +58284|236660|36661|2|27|43109.55|0.04|0.03|A|F|1994-11-01|1994-11-14|1994-11-30|COLLECT COD|REG AIR|ly unusual deposits. quickly regular deposi| +58284|527920|15451|3|12|23374.80|0.09|0.08|A|F|1994-11-20|1994-10-26|1994-12-15|TAKE BACK RETURN|MAIL|lly ironic packages about the silent p| +58284|739983|15012|4|47|95078.65|0.02|0.08|R|F|1994-12-29|1994-10-15|1995-01-20|COLLECT COD|REG AIR|lar asymptotes are fu| +58285|394727|44728|1|12|21860.52|0.05|0.04|N|O|1995-09-13|1995-06-22|1995-09-25|TAKE BACK RETURN|REG AIR|s about the carefully regular accounts affi| +58285|174580|49587|2|46|76110.68|0.03|0.04|A|F|1995-05-26|1995-07-18|1995-06-10|NONE|TRUCK|slyly express decoys| +58286|680583|18123|1|5|7817.75|0.03|0.08|N|O|1996-06-08|1996-06-13|1996-07-06|DELIVER IN PERSON|MAIL|t slyly. final deposits nag quickly slyly | +58286|546328|8839|2|5|6871.50|0.03|0.04|N|O|1996-07-02|1996-06-21|1996-07-28|COLLECT COD|TRUCK|y final theodolites lose carefu| +58286|121690|34193|3|43|73602.67|0.04|0.03|N|O|1996-05-01|1996-06-29|1996-05-30|COLLECT COD|FOB|y within the furiously bold request| +58286|233257|45762|4|50|59512.00|0.02|0.06|N|O|1996-05-21|1996-07-18|1996-06-15|NONE|SHIP|ymptotes wake. regular,| +58287|921335|33854|1|3|4068.87|0.05|0.00|A|F|1995-02-02|1994-12-29|1995-02-20|NONE|MAIL| even dolphins. e| +58287|875069|25070|2|18|18792.36|0.05|0.00|R|F|1994-10-14|1995-01-02|1994-10-15|COLLECT COD|RAIL|s. furiously silent theodolites can | +58287|271923|21924|3|39|73901.49|0.07|0.00|R|F|1995-02-01|1994-11-22|1995-02-28|TAKE BACK RETURN|FOB| deposits.| +58287|195260|32770|4|18|24394.68|0.05|0.05|A|F|1994-12-30|1994-12-26|1995-01-24|COLLECT COD|REG AIR|n accounts. quickly ironic foxes| +58287|718096|30611|5|9|10026.54|0.04|0.02|R|F|1995-01-16|1994-12-06|1995-01-20|DELIVER IN PERSON|FOB|mold caref| +58287|34902|47403|6|46|84497.40|0.01|0.08|R|F|1994-12-24|1994-11-20|1994-12-26|COLLECT COD|MAIL| carefully ironic Tiresias haggle. sp| +58287|590978|40979|7|17|35172.15|0.07|0.01|R|F|1994-12-15|1994-11-23|1994-12-20|COLLECT COD|FOB|even, silent accounts nag carefully ac| +58312|565550|28062|1|28|45234.84|0.00|0.05|A|F|1994-05-28|1994-06-12|1994-06-06|DELIVER IN PERSON|FOB|symptotes cajole sometimes after the even,| +58313|43741|31242|1|48|80867.52|0.02|0.00|A|F|1992-03-26|1992-04-25|1992-04-20|COLLECT COD|REG AIR| the ironic ideas. carefully express depos| +58313|150188|189|2|16|19810.88|0.10|0.08|R|F|1992-02-14|1992-04-17|1992-03-15|DELIVER IN PERSON|SHIP|e even, special platelets. unusu| +58313|207087|7088|3|2|1988.14|0.06|0.00|A|F|1992-04-08|1992-04-19|1992-04-11|COLLECT COD|MAIL| unusual, final dolphins. caref| +58314|954185|29224|1|34|42130.76|0.08|0.02|N|O|1997-10-10|1997-08-17|1997-10-24|NONE|SHIP|es wake among the slyly regular requ| +58314|972428|47467|2|36|54013.68|0.04|0.05|N|O|1997-09-28|1997-08-01|1997-10-28|DELIVER IN PERSON|AIR|requests haggle blithely? dolphi| +58314|583059|45571|3|7|7994.21|0.01|0.07|N|O|1997-07-19|1997-08-23|1997-08-08|NONE|TRUCK|blithe packages wake blithely among the car| +58314|472483|22484|4|28|40752.88|0.10|0.04|N|O|1997-07-02|1997-08-23|1997-07-30|TAKE BACK RETURN|REG AIR|ly regular orbits| +58314|5252|30253|5|5|5786.25|0.07|0.06|N|O|1997-09-19|1997-08-18|1997-10-01|TAKE BACK RETURN|FOB|e blithely even at| +58314|267366|29872|6|8|10666.80|0.02|0.04|N|O|1997-09-21|1997-07-31|1997-09-24|COLLECT COD|TRUCK|ss dependencies. quick| +58314|613775|26288|7|30|50662.20|0.06|0.00|N|O|1997-07-04|1997-08-12|1997-07-22|NONE|FOB|lites are blithely ironic accounts. sly| +58315|700386|387|1|44|60999.40|0.07|0.07|N|O|1997-03-11|1997-04-10|1997-03-20|TAKE BACK RETURN|TRUCK|ly special instructions above the pinto | +58315|376510|1525|2|28|44422.00|0.02|0.03|N|O|1997-02-27|1997-05-06|1997-03-08|DELIVER IN PERSON|RAIL|y packages dete| +58316|353693|3694|1|47|82093.96|0.02|0.06|N|O|1996-01-29|1996-03-18|1996-02-27|TAKE BACK RETURN|AIR|e carefully bold deposits cajole blithely s| +58316|513849|13850|2|38|70787.16|0.05|0.03|N|O|1996-04-05|1996-03-19|1996-04-23|TAKE BACK RETURN|TRUCK|nic deposits haggle blithely aga| +58316|246874|46875|3|49|89222.14|0.04|0.03|N|O|1996-02-04|1996-02-05|1996-03-02|DELIVER IN PERSON|REG AIR|ironic dinos. pinto beans | +58316|197490|47491|4|6|9524.94|0.07|0.02|N|O|1996-01-13|1996-03-17|1996-01-18|COLLECT COD|REG AIR|ent deposi| +58316|211523|49036|5|21|30124.71|0.09|0.05|N|O|1996-04-25|1996-03-25|1996-04-26|DELIVER IN PERSON|AIR|instructions. slyly pe| +58317|654650|17164|1|37|59370.94|0.09|0.05|N|O|1998-02-21|1998-02-25|1998-03-16|NONE|FOB|ets. furious| +58318|805276|42825|1|15|17718.45|0.10|0.08|R|F|1993-11-03|1993-11-12|1993-11-20|NONE|TRUCK|us pinto beans are ironic | +58319|300750|38269|1|24|42017.76|0.06|0.00|R|F|1994-01-17|1993-12-14|1994-02-08|TAKE BACK RETURN|MAIL|ructions sleep carefu| +58319|693379|18406|2|41|56265.94|0.10|0.03|R|F|1993-10-09|1993-12-09|1993-10-19|COLLECT COD|SHIP|y against the stealthy, ironic p| +58319|615597|40622|3|14|21175.84|0.04|0.02|A|F|1993-11-22|1993-11-30|1993-12-14|COLLECT COD|MAIL|boost carefully regular excuses. ironi| +58319|325963|38470|4|1|1988.95|0.02|0.05|A|F|1993-10-04|1993-11-09|1993-10-06|TAKE BACK RETURN|MAIL|deposits. dolphins wake furiously unusua| +58319|446813|9322|5|11|19357.69|0.09|0.08|R|F|1993-12-10|1993-12-06|1993-12-14|TAKE BACK RETURN|RAIL|ly furious | +58344|499068|24087|1|37|39480.48|0.09|0.00|N|O|1998-08-02|1998-10-11|1998-08-07|NONE|RAIL|ld packages along the furiously un| +58344|832568|32569|2|45|67523.40|0.04|0.05|N|O|1998-07-31|1998-09-29|1998-08-04|DELIVER IN PERSON|REG AIR| blithely pending deposits. sly| +58344|961517|11518|3|17|26833.99|0.08|0.03|N|O|1998-09-14|1998-08-28|1998-10-06|COLLECT COD|SHIP|ndencies x-ray furiously. slyly pendin| +58344|206618|6619|4|25|38115.00|0.05|0.04|N|O|1998-08-11|1998-09-01|1998-08-29|NONE|REG AIR| fluffily even deposits sn| +58344|620531|45556|5|36|52254.00|0.08|0.00|N|O|1998-08-12|1998-08-21|1998-09-02|DELIVER IN PERSON|REG AIR|usly alongside of the dogged requests. fin| +58344|254688|17194|6|48|78848.16|0.08|0.02|N|O|1998-09-05|1998-09-12|1998-09-18|DELIVER IN PERSON|RAIL|iously according to the fluffily | +58344|531472|31473|7|38|57131.10|0.10|0.03|N|O|1998-10-09|1998-08-18|1998-10-22|DELIVER IN PERSON|AIR| blithely special | +58345|441305|28830|1|27|33649.56|0.04|0.08|N|O|1996-06-07|1996-05-28|1996-06-18|TAKE BACK RETURN|FOB|er the carefully regu| +58345|997758|47759|2|17|31547.07|0.09|0.01|N|O|1996-06-06|1996-04-16|1996-06-10|DELIVER IN PERSON|REG AIR| slyly regular e| +58345|309325|9326|3|27|36026.37|0.05|0.05|N|O|1996-05-30|1996-05-21|1996-06-23|COLLECT COD|RAIL|es haggle. silent platelets| +58345|822207|9756|4|13|14679.08|0.02|0.01|N|O|1996-04-29|1996-05-30|1996-05-10|TAKE BACK RETURN|TRUCK|nto beans cajole slyly silent theod| +58346|869808|44843|1|24|42666.24|0.00|0.02|A|F|1994-07-30|1994-06-07|1994-08-22|NONE|RAIL|eep slyly througho| +58346|855692|18210|2|24|39543.60|0.04|0.08|A|F|1994-06-12|1994-07-06|1994-06-23|COLLECT COD|TRUCK|s: blithely regular theodolites about| +58346|601217|38754|3|30|33545.40|0.04|0.02|R|F|1994-07-06|1994-07-28|1994-07-08|NONE|REG AIR|ng to the slyly regul| +58346|648877|36414|4|24|43820.16|0.05|0.01|A|F|1994-06-30|1994-06-24|1994-07-26|DELIVER IN PERSON|REG AIR|carefully i| +58346|674234|11774|5|40|48328.00|0.01|0.02|A|F|1994-08-31|1994-06-20|1994-09-09|COLLECT COD|RAIL|nic foxes. furiously unusual pinto beans| +58346|835606|10639|6|42|64745.52|0.04|0.02|R|F|1994-08-15|1994-07-14|1994-08-19|TAKE BACK RETURN|MAIL|low deposits. carefully i| +58347|721168|33683|1|36|42808.68|0.03|0.01|A|F|1994-02-09|1994-04-13|1994-03-03|NONE|MAIL|ly ironic accounts. special escapades af| +58347|659512|9513|2|1|1471.48|0.02|0.05|R|F|1994-03-30|1994-04-07|1994-04-24|COLLECT COD|SHIP|iously even packages. i| +58347|410640|35657|3|7|10854.34|0.07|0.05|A|F|1994-04-21|1994-03-12|1994-04-26|DELIVER IN PERSON|MAIL|ironic dolphins c| +58347|616026|3563|4|44|41447.56|0.08|0.02|A|F|1994-05-05|1994-04-06|1994-05-22|TAKE BACK RETURN|FOB|final dependencies| +58348|342551|17564|1|47|74896.38|0.10|0.05|N|O|1996-01-23|1996-02-02|1996-02-01|TAKE BACK RETURN|RAIL|packages. blit| +58349|237091|24604|1|6|6168.48|0.03|0.01|R|F|1993-08-14|1993-06-06|1993-08-24|DELIVER IN PERSON|TRUCK| instructi| +58349|787981|497|2|22|45516.90|0.00|0.05|R|F|1993-08-01|1993-05-31|1993-08-15|TAKE BACK RETURN|SHIP|g to the furiously ironic braids mus| +58349|585314|35315|3|26|36381.54|0.01|0.07|A|F|1993-08-19|1993-07-13|1993-08-30|TAKE BACK RETURN|REG AIR|nal foxes. ironic pint| +58349|367410|42425|4|20|29548.00|0.10|0.03|A|F|1993-06-12|1993-07-09|1993-07-08|DELIVER IN PERSON|SHIP| deposits are br| +58349|56241|43745|5|47|56270.28|0.05|0.02|A|F|1993-05-10|1993-06-07|1993-05-13|COLLECT COD|FOB|long the furiously ironic ideas| +58350|689410|1924|1|47|65770.86|0.06|0.06|R|F|1993-10-30|1993-10-05|1993-11-23|TAKE BACK RETURN|AIR|g the pending theodolites. carefully u| +58350|903547|41102|2|46|71323.00|0.04|0.08|R|F|1993-12-23|1993-10-16|1994-01-22|DELIVER IN PERSON|MAIL|nal dugouts. ideas| +58350|904452|4453|3|38|55343.58|0.00|0.07|A|F|1993-08-28|1993-10-14|1993-09-07|TAKE BACK RETURN|SHIP|y. quickly unusual instructions along th| +58350|124369|36872|4|48|66881.28|0.09|0.03|A|F|1993-11-19|1993-10-14|1993-11-22|NONE|TRUCK|nstructions engage blit| +58350|266358|28864|5|39|51649.26|0.09|0.05|A|F|1993-10-26|1993-11-07|1993-11-03|TAKE BACK RETURN|FOB|ly pending ideas according to the careful| +58350|669615|44642|6|12|19014.96|0.05|0.07|R|F|1993-12-10|1993-10-18|1993-12-31|DELIVER IN PERSON|TRUCK|tect furiously at the blithely bold | +58350|205216|5217|7|24|26908.80|0.05|0.00|A|F|1993-12-13|1993-10-18|1994-01-12|TAKE BACK RETURN|REG AIR|ely special ideas. carefu| +58351|53510|28513|1|42|61467.42|0.00|0.07|N|O|1996-04-04|1996-03-04|1996-04-07|DELIVER IN PERSON|MAIL|nic dolphins are furi| +58351|326284|13803|2|14|18343.78|0.03|0.03|N|O|1996-03-10|1996-01-07|1996-04-09|NONE|MAIL|furiously quickly final | +58351|850303|304|3|21|26318.46|0.07|0.00|N|O|1995-12-23|1996-02-16|1996-01-14|NONE|REG AIR|ts use blithely blithely| +58351|28602|3603|4|23|35203.80|0.09|0.04|N|O|1996-01-19|1996-02-02|1996-01-31|DELIVER IN PERSON|SHIP|y brave pinto beans. even fo| +58351|711144|23659|5|29|33498.19|0.01|0.05|N|O|1996-03-03|1996-01-15|1996-03-18|TAKE BACK RETURN|FOB| patterns cajole ironic, ironic | +58351|181801|44305|6|49|92257.20|0.06|0.08|N|O|1995-12-15|1996-02-15|1996-01-08|DELIVER IN PERSON|SHIP|y even ideas detect regular, daring inst| +58351|521389|46410|7|40|56414.40|0.04|0.05|N|O|1996-04-02|1996-01-06|1996-04-12|NONE|RAIL|side of the slyly en| +58376|981901|44421|1|50|99143.00|0.05|0.01|R|F|1994-11-06|1994-12-09|1994-11-29|TAKE BACK RETURN|AIR|quests haggle against the regular att| +58376|797589|35135|2|36|60715.80|0.06|0.08|A|F|1994-10-16|1994-12-23|1994-11-04|TAKE BACK RETURN|TRUCK|blithely careful foxes affix fu| +58376|77216|14720|3|8|9545.68|0.04|0.05|R|F|1994-12-17|1994-11-29|1995-01-05|NONE|FOB|uickly regular deposits. ir| +58376|758502|8503|4|24|37451.28|0.08|0.01|A|F|1994-11-26|1994-12-14|1994-12-07|COLLECT COD|SHIP|ckly ironic deposits. blithely even | +58376|135380|10385|5|19|26892.22|0.04|0.07|A|F|1995-01-23|1994-11-26|1995-01-30|COLLECT COD|TRUCK|deas use carefully bold gifts. bravely iron| +58376|329147|29148|6|15|17641.95|0.07|0.03|A|F|1995-01-14|1994-12-12|1995-02-06|DELIVER IN PERSON|TRUCK|y. regular dolphins breach fluf| +58377|234554|47059|1|31|46144.74|0.06|0.01|A|F|1995-05-01|1995-05-10|1995-05-18|COLLECT COD|AIR|es along the furi| +58377|133329|8334|2|12|16347.84|0.06|0.05|N|F|1995-06-12|1995-06-01|1995-06-23|DELIVER IN PERSON|RAIL|ts will sleep slyly reg| +58377|855399|5400|3|8|10834.80|0.06|0.02|A|F|1995-05-16|1995-05-22|1995-05-18|COLLECT COD|RAIL|sly final p| +58377|688809|1323|4|19|34157.63|0.03|0.04|N|O|1995-06-22|1995-06-09|1995-06-28|COLLECT COD|AIR|its wake careful| +58378|885687|10722|1|10|16726.40|0.06|0.00|N|O|1997-12-02|1998-01-13|1997-12-16|DELIVER IN PERSON|REG AIR| the even, regular ideas cajole | +58378|732849|45364|2|26|48927.06|0.02|0.03|N|O|1998-02-07|1998-01-18|1998-02-15|DELIVER IN PERSON|AIR|unusual accounts across the sl| +58378|977074|39594|3|32|36832.96|0.05|0.04|N|O|1998-01-20|1998-02-18|1998-02-03|TAKE BACK RETURN|REG AIR|y even ideas? bravely unusual | +58378|678344|15884|4|23|30413.13|0.07|0.01|N|O|1998-03-10|1998-01-19|1998-04-06|NONE|REG AIR|enly ironic deposits.| +58378|923789|36308|5|46|83386.04|0.02|0.00|N|O|1998-01-16|1998-01-03|1998-01-19|DELIVER IN PERSON|RAIL|odolites sleep slyly above| +58379|902482|40037|1|14|20782.16|0.07|0.02|N|O|1996-12-25|1996-11-07|1997-01-01|NONE|RAIL|poach carefully thin pinto beans| +58379|999895|12415|2|44|87773.40|0.07|0.00|N|O|1996-10-17|1996-12-11|1996-10-23|COLLECT COD|REG AIR| pending deposits: furiousl| +58379|232603|45108|3|47|72172.73|0.08|0.03|N|O|1996-11-03|1996-11-11|1996-11-22|NONE|REG AIR|c deposits. packages cajole| +58379|347455|34974|4|50|75122.00|0.06|0.04|N|O|1996-11-11|1996-10-24|1996-11-25|COLLECT COD|AIR|xcuses against the blithely even pa| +58380|322789|47802|1|7|12682.39|0.02|0.04|R|F|1993-09-02|1993-07-24|1993-09-18|DELIVER IN PERSON|TRUCK| fluffily ironic accounts are acc| +58380|102499|40006|2|9|13513.41|0.06|0.03|A|F|1993-08-07|1993-06-22|1993-08-27|COLLECT COD|FOB| according to | +58380|696449|33989|3|11|15899.51|0.01|0.06|A|F|1993-09-09|1993-07-26|1993-10-06|COLLECT COD|FOB|according to the quickly regular | +58380|209856|22361|4|6|10595.04|0.09|0.05|R|F|1993-08-26|1993-07-11|1993-09-11|COLLECT COD|REG AIR|ly pending instructions among the ir| +58380|42082|42083|5|1|1024.08|0.00|0.06|R|F|1993-06-21|1993-07-30|1993-07-12|COLLECT COD|RAIL|s haggle quickly. special theodolites boo| +58380|259849|22355|6|45|81397.35|0.09|0.07|R|F|1993-06-15|1993-07-10|1993-06-18|DELIVER IN PERSON|AIR|o beans. blithely regular ide| +58380|278362|28363|7|46|61656.10|0.03|0.03|A|F|1993-07-01|1993-07-31|1993-07-26|NONE|MAIL|-ray deposits. bold as| +58381|419749|44766|1|34|56736.48|0.06|0.03|N|O|1997-01-13|1996-11-26|1997-02-02|TAKE BACK RETURN|REG AIR|. packages thrash quickly again| +58381|718569|6112|2|50|79376.50|0.02|0.08|N|O|1997-01-23|1996-11-22|1997-02-12|TAKE BACK RETURN|SHIP|thely among the slyly unus| +58381|972805|47844|3|25|46944.00|0.02|0.06|N|O|1996-12-08|1996-12-02|1996-12-24|DELIVER IN PERSON|AIR|efully regular instructions haggle alongsid| +58381|924140|49177|4|31|36087.10|0.01|0.06|N|O|1996-10-18|1996-11-22|1996-10-26|NONE|REG AIR|foxes are furiously. final a| +58381|19192|31693|5|23|25557.37|0.06|0.07|N|O|1996-10-26|1996-12-01|1996-11-10|NONE|RAIL|s. carefully special warthogs nod. regular,| +58381|549401|24422|6|17|24656.46|0.04|0.06|N|O|1996-12-06|1996-11-20|1996-12-22|NONE|SHIP|ly. furiously ir| +58381|777253|27254|7|3|3990.66|0.04|0.04|N|O|1996-12-18|1996-12-07|1997-01-14|DELIVER IN PERSON|SHIP| requests | +58382|284871|22387|1|40|74234.40|0.08|0.01|N|O|1998-07-29|1998-08-07|1998-08-17|COLLECT COD|FOB|y regular theodolites play sly| +58382|812333|49882|2|33|41094.57|0.05|0.01|N|O|1998-08-28|1998-07-24|1998-09-15|COLLECT COD|TRUCK|bout the dependencies. final,| +58382|865459|40494|3|23|32761.43|0.01|0.08|N|O|1998-07-06|1998-09-01|1998-07-14|TAKE BACK RETURN|AIR|ons sleep furiously.| +58383|936580|24135|1|13|21015.02|0.03|0.01|A|F|1992-08-03|1992-08-28|1992-08-12|TAKE BACK RETURN|MAIL| affix ironic platelet| +58383|96420|46421|2|29|41076.18|0.02|0.01|A|F|1992-07-31|1992-08-06|1992-08-17|COLLECT COD|FOB| slyly ironic foxes nag aft| +58383|529240|16771|3|35|44422.70|0.07|0.08|A|F|1992-08-05|1992-07-29|1992-08-11|NONE|REG AIR|nstructions integrate about the bli| +58383|932819|7856|4|38|70367.26|0.05|0.02|R|F|1992-07-09|1992-08-11|1992-08-07|TAKE BACK RETURN|SHIP|sual deposits affix slyly? carefully regul| +58383|888134|652|5|26|29174.34|0.09|0.04|A|F|1992-08-26|1992-08-23|1992-08-29|NONE|REG AIR|d blithely after the even d| +58408|278728|16244|1|13|22187.23|0.02|0.08|N|O|1998-06-21|1998-04-10|1998-07-10|TAKE BACK RETURN|RAIL|fully final warhorses affix. slyly un| +58408|572332|47355|2|31|43533.61|0.06|0.01|N|O|1998-06-24|1998-04-27|1998-06-25|DELIVER IN PERSON|FOB|e dependen| +58408|177650|40154|3|17|29370.05|0.02|0.02|N|O|1998-06-08|1998-05-24|1998-06-27|COLLECT COD|SHIP|the special packa| +58408|762769|12770|4|30|54951.90|0.01|0.05|N|O|1998-07-06|1998-05-21|1998-07-09|DELIVER IN PERSON|REG AIR|ckly silent foxes. silent re| +58408|845600|20633|5|30|46366.80|0.02|0.07|N|O|1998-05-31|1998-05-10|1998-06-07|COLLECT COD|MAIL|ular pinto beans. furiousl| +58408|991375|28933|6|33|48388.89|0.02|0.02|N|O|1998-04-18|1998-04-18|1998-04-27|COLLECT COD|TRUCK|packages haggle asymptotes. slyly pend| +58408|29345|4346|7|27|34407.18|0.00|0.03|N|O|1998-05-22|1998-04-07|1998-05-31|DELIVER IN PERSON|RAIL| fluffily busily ironic braids| +58409|196621|9125|1|13|22329.06|0.09|0.07|N|O|1995-10-31|1995-10-02|1995-11-27|DELIVER IN PERSON|MAIL|nts cajole. careful| +58409|599066|36600|2|42|48931.68|0.03|0.07|N|O|1995-10-19|1995-09-12|1995-10-23|TAKE BACK RETURN|RAIL| about the express, regular deposits. d| +58409|492335|17354|3|24|31855.44|0.08|0.02|N|O|1995-09-12|1995-09-11|1995-09-18|DELIVER IN PERSON|REG AIR|al deposits in| +58409|665209|40236|4|43|50489.31|0.00|0.01|N|O|1995-08-07|1995-09-20|1995-08-15|NONE|MAIL|es. furiously quiet instructions across th| +58409|166338|28842|5|9|12638.97|0.00|0.00|N|O|1995-10-23|1995-10-30|1995-11-21|TAKE BACK RETURN|REG AIR| deposits. ideas cajole special accounts. | +58409|637798|37799|6|14|24300.64|0.03|0.05|N|O|1995-08-22|1995-09-30|1995-09-10|NONE|AIR|slyly ironic plate| +58409|458151|8152|7|38|42146.94|0.09|0.08|N|O|1995-11-07|1995-09-29|1995-11-11|TAKE BACK RETURN|REG AIR|eans cajole. blithely | +58410|127983|40486|1|17|34186.66|0.01|0.05|A|F|1993-08-04|1993-06-27|1993-08-09|TAKE BACK RETURN|RAIL|fluffily. accounts should | +58410|999046|24085|2|37|42365.00|0.06|0.06|A|F|1993-05-14|1993-05-13|1993-06-08|TAKE BACK RETURN|FOB|cial packages are furi| +58410|957908|45466|3|6|11795.16|0.05|0.08|A|F|1993-05-23|1993-06-26|1993-06-11|TAKE BACK RETURN|FOB|s. slyly final requests cajol| +58410|550292|12804|4|21|28187.67|0.09|0.03|R|F|1993-04-24|1993-05-19|1993-05-16|DELIVER IN PERSON|AIR|er the slyly regu| +58410|746437|33980|5|41|60819.40|0.01|0.04|A|F|1993-06-19|1993-05-22|1993-07-03|NONE|TRUCK| regular packages use slyly? slyly re| +58410|350741|13249|6|20|35834.60|0.03|0.04|A|F|1993-07-07|1993-05-08|1993-07-26|DELIVER IN PERSON|RAIL| ironic requ| +58411|626784|26785|1|19|32504.25|0.10|0.03|N|O|1996-08-04|1996-08-13|1996-08-16|COLLECT COD|FOB|posits. instructions wake blithely| +58411|344959|44960|2|27|54106.38|0.04|0.07|N|O|1996-10-16|1996-09-14|1996-10-28|NONE|TRUCK|inal courts. f| +58411|725464|37979|3|44|65534.92|0.07|0.07|N|O|1996-08-06|1996-09-13|1996-09-01|DELIVER IN PERSON|MAIL| platelets detect furiously | +58412|612772|37797|1|43|72443.82|0.08|0.08|N|O|1995-09-25|1995-09-17|1995-10-16|COLLECT COD|REG AIR|ironic dolphins: furiously sly depths int| +58412|851019|13537|2|16|15519.52|0.02|0.02|N|O|1995-08-05|1995-09-05|1995-08-13|DELIVER IN PERSON|SHIP|ep never. instructions are quickly along | +58412|67030|17031|3|1|997.03|0.00|0.06|N|O|1995-11-19|1995-10-01|1995-11-22|NONE|REG AIR|nstructions across the carefully f| +58413|190489|2993|1|7|11056.36|0.09|0.07|N|O|1997-06-21|1997-05-22|1997-06-29|COLLECT COD|RAIL|ly even courts above th| +58413|541342|41343|2|30|41499.60|0.07|0.01|N|O|1997-06-19|1997-06-27|1997-07-01|TAKE BACK RETURN|REG AIR|into beans| +58413|319612|32119|3|22|35895.20|0.08|0.06|N|O|1997-06-10|1997-07-05|1997-06-25|TAKE BACK RETURN|REG AIR|orses wake blithely fluffily express d| +58413|715281|15282|4|9|11666.25|0.08|0.01|N|O|1997-05-04|1997-05-10|1997-05-13|TAKE BACK RETURN|FOB|s cajole furiously a| +58413|725369|12912|5|50|69716.50|0.00|0.03|N|O|1997-04-10|1997-05-26|1997-05-07|COLLECT COD|FOB|g furiously across the furi| +58413|262347|49863|6|23|30114.59|0.04|0.06|N|O|1997-07-25|1997-06-14|1997-08-04|NONE|REG AIR|. theodolites cajole. | +58413|265072|40083|7|23|23852.38|0.01|0.08|N|O|1997-07-11|1997-06-17|1997-07-29|DELIVER IN PERSON|MAIL|sly final dolphins use about th| +58414|57135|19637|1|9|9829.17|0.07|0.08|N|O|1996-01-24|1996-02-13|1996-02-04|COLLECT COD|SHIP|ideas x-ray. even deposits affix furio| +58414|260947|35958|2|32|61053.76|0.05|0.01|N|O|1996-04-21|1996-03-16|1996-05-16|DELIVER IN PERSON|MAIL|al theodolites sleep about the furiousl| +58414|734295|9324|3|42|55828.92|0.06|0.01|N|O|1996-03-29|1996-04-02|1996-04-17|TAKE BACK RETURN|SHIP| of the ironic, u| +58414|280228|17744|4|5|6041.05|0.03|0.03|N|O|1996-04-27|1996-03-12|1996-05-27|COLLECT COD|REG AIR|ng to the carefully eve| +58414|788025|541|5|29|32276.71|0.01|0.08|N|O|1996-03-03|1996-02-06|1996-03-28|TAKE BACK RETURN|MAIL|uickly even pinto beans c| +58414|330353|17872|6|13|17983.42|0.01|0.08|N|O|1996-03-13|1996-02-24|1996-03-14|COLLECT COD|REG AIR| even foxes; carefully unusu| +58414|238690|13699|7|34|55375.12|0.01|0.04|N|O|1996-02-27|1996-03-21|1996-03-03|DELIVER IN PERSON|SHIP|ng deposits haggle qui| +58415|660493|35520|1|17|24708.82|0.01|0.06|N|O|1996-10-21|1996-10-29|1996-11-01|TAKE BACK RETURN|REG AIR| quickly bold dependen| +58415|893154|43155|2|48|55061.28|0.00|0.07|N|O|1996-10-04|1996-11-15|1996-10-31|DELIVER IN PERSON|AIR|ffily final accounts. pinto beans hag| +58415|223225|48234|3|31|35594.51|0.05|0.08|N|O|1996-09-29|1996-11-14|1996-10-01|COLLECT COD|TRUCK|de of the fluffily ironic asymptotes; c| +58415|728112|28113|4|13|14821.04|0.00|0.03|N|O|1996-11-08|1996-12-14|1996-12-02|DELIVER IN PERSON|FOB|ly final instructions. t| +58415|362832|37847|5|50|94741.00|0.00|0.07|N|O|1996-11-20|1996-12-18|1996-11-26|TAKE BACK RETURN|RAIL|s detect. packages use carefully| +58440|291280|41281|1|40|50850.80|0.00|0.04|A|F|1992-11-09|1992-10-14|1992-12-07|TAKE BACK RETURN|AIR|slyly pending fox| +58440|533383|33384|2|34|48156.24|0.02|0.05|R|F|1992-10-19|1992-10-23|1992-10-21|TAKE BACK RETURN|RAIL|es are quickly; slyly ev| +58440|566171|3705|3|46|56908.90|0.02|0.00|R|F|1992-11-23|1992-10-07|1992-12-14|COLLECT COD|FOB|ously. final, even tithes can sublate fur| +58440|630598|30599|4|1|1528.56|0.04|0.02|A|F|1992-10-04|1992-10-22|1992-10-25|DELIVER IN PERSON|AIR|le? blithely | +58440|452918|40446|5|23|43030.47|0.01|0.01|R|F|1992-08-12|1992-09-26|1992-09-10|NONE|AIR|aggle slyly along the regular pi| +58440|184112|21622|6|13|15549.43|0.02|0.01|A|F|1992-10-06|1992-10-01|1992-10-11|TAKE BACK RETURN|RAIL|l packages hinder always. requests det| +58441|447910|47911|1|22|40873.58|0.10|0.03|R|F|1994-07-05|1994-05-07|1994-07-26|TAKE BACK RETURN|REG AIR|ly bold deposit| +58442|967932|30452|1|34|67996.26|0.05|0.04|N|O|1995-10-03|1995-09-11|1995-10-23|NONE|REG AIR| blithely regular | +58442|32456|32457|2|27|37488.15|0.09|0.02|N|O|1995-08-08|1995-09-17|1995-08-11|DELIVER IN PERSON|REG AIR|carefully regular deposits are| +58443|701022|26051|1|17|17390.83|0.06|0.03|N|O|1996-01-11|1995-11-16|1996-01-14|TAKE BACK RETURN|MAIL|al deposits | +58444|176410|38914|1|4|5945.64|0.00|0.07|A|F|1994-10-18|1994-11-04|1994-10-29|NONE|AIR|ending, regular pint| +58444|906833|19352|2|38|69912.02|0.04|0.03|R|F|1994-11-24|1994-10-18|1994-12-10|NONE|MAIL|as. special notornis solve | +58444|133160|8165|3|4|4772.64|0.00|0.02|A|F|1994-09-21|1994-11-29|1994-09-22|NONE|MAIL|ructions impress b| +58444|16235|28736|4|30|34536.90|0.00|0.01|A|F|1995-01-10|1994-11-04|1995-01-24|TAKE BACK RETURN|SHIP|. furiously pend| +58445|634753|22290|1|20|33754.40|0.03|0.00|A|F|1995-03-14|1995-02-23|1995-04-06|TAKE BACK RETURN|REG AIR|ns against the carefully special deposit| +58445|280622|30623|2|14|22436.54|0.10|0.04|A|F|1995-04-17|1995-03-11|1995-05-16|DELIVER IN PERSON|MAIL|e quickly. fluffily ironic pinto beans | +58445|404469|16978|3|2|2746.88|0.08|0.07|A|F|1995-05-07|1995-03-14|1995-06-04|TAKE BACK RETURN|SHIP|long the fin| +58445|902601|15120|4|35|56124.60|0.10|0.02|A|F|1995-01-23|1995-04-09|1995-01-28|TAKE BACK RETURN|RAIL|s was carefully blithely final accoun| +58445|495|37996|5|28|39073.72|0.03|0.02|R|F|1995-01-29|1995-04-06|1995-02-15|COLLECT COD|FOB|riously. even instru| +58445|316621|16622|6|3|4912.83|0.01|0.06|R|F|1995-04-02|1995-04-07|1995-04-16|COLLECT COD|RAIL|urts after the packages sleep furiously | +58445|446731|46732|7|42|70463.82|0.02|0.04|A|F|1995-04-14|1995-02-18|1995-04-21|NONE|SHIP|s; furiously bold instructions sleep| +58446|195183|45184|1|17|21729.06|0.08|0.02|N|O|1996-02-03|1996-03-30|1996-02-06|COLLECT COD|SHIP|. furiously regular asymptote| +58446|434838|22363|2|46|81549.26|0.07|0.01|N|O|1996-03-13|1996-02-23|1996-04-11|COLLECT COD|AIR|sual ideas wake brave| +58446|309931|22438|3|30|58227.60|0.04|0.00|N|O|1996-02-01|1996-04-19|1996-02-15|COLLECT COD|AIR| the final, final foxes sleep regular r| +58446|8719|21220|4|34|55342.14|0.05|0.04|N|O|1996-02-24|1996-03-02|1996-03-06|DELIVER IN PERSON|TRUCK|ts. regular p| +58446|538019|25550|5|1|1056.99|0.05|0.02|N|O|1996-05-12|1996-03-05|1996-06-07|NONE|RAIL|ual accounts cajole furiously even h| +58447|993636|18675|1|22|38050.98|0.00|0.05|A|F|1994-11-03|1994-11-15|1994-11-05|COLLECT COD|SHIP|beans cajole slyly even pinto bea| +58447|31126|6127|2|13|13742.56|0.07|0.04|A|F|1994-11-25|1994-12-25|1994-12-25|NONE|REG AIR|y unusual packages engage slyly furiousl| +58472|852646|15164|1|37|59148.20|0.05|0.04|A|F|1993-07-05|1993-05-16|1993-07-06|NONE|TRUCK|. final pin| +58472|408294|45819|2|25|30056.75|0.08|0.04|R|F|1993-06-03|1993-05-01|1993-07-03|DELIVER IN PERSON|FOB|al, final accounts. fluf| +58472|190534|40535|3|17|27617.01|0.03|0.02|R|F|1993-06-22|1993-05-14|1993-07-22|DELIVER IN PERSON|SHIP|he even Tiresias. even deposits slee| +58472|302119|39638|4|21|23543.10|0.02|0.07|A|F|1993-05-17|1993-04-21|1993-05-21|TAKE BACK RETURN|TRUCK| slyly ironic foxes. quic| +58472|713384|38413|5|13|18165.55|0.05|0.07|R|F|1993-06-19|1993-06-17|1993-07-15|COLLECT COD|AIR|ctions behind | +58472|841836|41837|6|16|28444.64|0.07|0.08|R|F|1993-06-08|1993-04-28|1993-06-10|DELIVER IN PERSON|FOB|final foxes sleep slyly despite t| +58473|967195|42234|1|15|18932.25|0.05|0.05|N|O|1997-08-05|1997-07-05|1997-08-12|NONE|RAIL|c accounts. regu| +58473|630697|30698|2|37|60223.42|0.04|0.01|N|O|1997-09-04|1997-07-16|1997-09-22|DELIVER IN PERSON|SHIP|y against the blithely special foxes. furio| +58473|123143|48148|3|45|52476.30|0.02|0.01|N|O|1997-06-16|1997-08-03|1997-07-04|NONE|RAIL|sly final deposits wake. unusual depe| +58473|663480|13481|4|32|46190.40|0.04|0.06|N|O|1997-08-16|1997-07-25|1997-09-07|NONE|SHIP|p furiously even excuses. fu| +58473|100017|37524|5|30|30510.30|0.07|0.07|N|O|1997-06-14|1997-06-21|1997-06-15|TAKE BACK RETURN|FOB| final asymptotes wake according to t| +58473|972564|35084|6|37|60551.24|0.09|0.06|N|O|1997-05-20|1997-06-22|1997-05-27|NONE|AIR|sual requests. careful| +58473|874472|24473|7|2|2892.86|0.02|0.05|N|O|1997-09-02|1997-06-14|1997-09-20|COLLECT COD|TRUCK|s cajole fur| +58474|237633|37634|1|8|12564.96|0.08|0.00|N|O|1996-03-18|1996-05-10|1996-04-03|DELIVER IN PERSON|MAIL|press packages; fin| +58474|887090|12125|2|7|7539.35|0.08|0.00|N|O|1996-03-25|1996-05-30|1996-04-15|COLLECT COD|MAIL| regular excuses sleep blithely sly| +58474|311641|36654|3|31|51231.53|0.01|0.01|N|O|1996-03-11|1996-04-22|1996-04-04|DELIVER IN PERSON|FOB|elets. bli| +58474|738311|826|4|45|60717.60|0.06|0.03|N|O|1996-05-08|1996-05-13|1996-05-31|DELIVER IN PERSON|FOB|ole! furiously dogged package| +58475|795202|45203|1|9|11674.53|0.04|0.00|A|F|1992-07-24|1992-09-04|1992-07-27|NONE|MAIL|. carefully ironic accounts sleep care| +58476|349795|37314|1|44|81170.32|0.10|0.02|A|F|1993-12-13|1993-12-25|1993-12-22|TAKE BACK RETURN|MAIL|ages wake fluffily about the | +58476|999343|24382|2|13|18749.90|0.10|0.00|A|F|1994-01-14|1994-02-06|1994-01-15|NONE|SHIP| after the fluffily eve| +58476|948478|48479|3|17|25949.31|0.05|0.06|A|F|1994-02-20|1994-01-06|1994-02-23|NONE|MAIL|es. finall| +58477|360497|23005|1|24|37379.52|0.05|0.06|N|O|1996-09-17|1996-08-25|1996-10-07|DELIVER IN PERSON|FOB|y about the | +58477|861979|49531|2|7|13586.51|0.06|0.01|N|O|1996-08-05|1996-08-22|1996-08-12|COLLECT COD|MAIL|. blithely final | +58477|279687|17203|3|9|15000.03|0.07|0.03|N|O|1996-09-15|1996-07-18|1996-09-27|TAKE BACK RETURN|TRUCK| quickly iron| +58478|806339|43888|1|16|19924.64|0.07|0.05|A|F|1992-05-21|1992-06-19|1992-06-07|DELIVER IN PERSON|FOB|eep among the even pinto| +58478|137590|93|2|30|48827.70|0.08|0.00|A|F|1992-08-08|1992-07-26|1992-08-16|DELIVER IN PERSON|RAIL|tes according to the furi| +58478|466694|29204|3|42|69748.14|0.07|0.07|A|F|1992-05-22|1992-08-03|1992-06-15|COLLECT COD|AIR|furiously bold pl| +58479|878507|16059|1|24|35651.04|0.04|0.01|A|F|1992-04-04|1992-05-06|1992-04-07|NONE|SHIP|ckages nag furiously final depe| +58479|65300|27802|2|12|15183.60|0.09|0.06|R|F|1992-04-02|1992-04-10|1992-04-23|NONE|AIR|egular requests. ironic, pending packag| +58479|494149|19168|3|46|52583.52|0.09|0.00|R|F|1992-06-12|1992-05-21|1992-07-12|TAKE BACK RETURN|MAIL|ing to the furiously ironic accounts; flu| +58479|150342|343|4|41|57085.94|0.04|0.04|R|F|1992-06-14|1992-04-07|1992-06-16|DELIVER IN PERSON|AIR|requests. final, even pa| +58479|791033|41034|5|27|30348.00|0.02|0.00|A|F|1992-02-29|1992-04-30|1992-03-06|NONE|REG AIR|nusual asymptotes. bold theodolites cajo| +58479|887916|434|6|35|66635.45|0.03|0.03|R|F|1992-05-26|1992-04-17|1992-06-18|NONE|RAIL|y about the furiously ironic accou| +58504|481340|18868|1|15|19819.80|0.02|0.03|N|O|1998-01-14|1998-03-15|1998-01-23|NONE|FOB|tes wake slyly. quickly bo| +58504|880366|17918|2|45|60584.40|0.04|0.06|N|O|1998-03-31|1998-03-16|1998-04-06|TAKE BACK RETURN|AIR|dolphins cajole among the sometim| +58504|300184|37703|3|19|22499.23|0.08|0.01|N|O|1997-12-26|1998-03-03|1998-01-14|COLLECT COD|TRUCK|dolites us| +58504|175872|38376|4|50|97393.50|0.09|0.06|N|O|1998-03-22|1998-02-10|1998-04-20|TAKE BACK RETURN|AIR|y above the ironic pac| +58504|879116|29117|5|7|7665.49|0.08|0.03|N|O|1998-01-14|1998-01-31|1998-01-28|TAKE BACK RETURN|MAIL| pending accounts. special pac| +58504|294537|44538|6|49|75044.48|0.02|0.00|N|O|1997-12-29|1998-03-15|1998-01-22|DELIVER IN PERSON|AIR|cies are carefully until th| +58504|277083|2094|7|32|33922.24|0.03|0.02|N|O|1997-12-28|1998-01-25|1998-01-13|DELIVER IN PERSON|TRUCK|kly final excuses wake car| +58505|929768|17323|1|5|8988.60|0.05|0.05|R|F|1993-08-22|1993-10-24|1993-09-02|TAKE BACK RETURN|REG AIR|special ideas. furiously r| +58506|354111|4112|1|48|55924.80|0.03|0.06|N|O|1996-12-31|1996-12-19|1997-01-30|TAKE BACK RETURN|AIR|ose. unusual dependencies detect blith| +58507|680225|42739|1|14|16872.66|0.04|0.05|N|O|1996-01-30|1995-10-31|1996-02-02|COLLECT COD|AIR|hely. slyly ironic theodolites wake qui| +58507|528452|40963|2|43|63658.49|0.09|0.04|N|O|1996-01-18|1995-12-06|1996-01-29|DELIVER IN PERSON|TRUCK|g slowly across th| +58507|691017|28557|3|17|17135.66|0.05|0.05|N|O|1996-01-24|1995-11-19|1996-01-31|COLLECT COD|TRUCK|he carefully slow reque| +58507|922099|22100|4|39|43720.95|0.06|0.02|N|O|1996-01-05|1995-11-30|1996-01-29|DELIVER IN PERSON|RAIL| busily across the quickly | +58507|707419|32448|5|36|51349.68|0.03|0.05|N|O|1996-01-24|1995-12-16|1996-02-23|TAKE BACK RETURN|TRUCK|ording to the pe| +58508|233902|8911|1|41|75271.49|0.03|0.07|A|F|1993-01-03|1992-11-16|1993-01-08|DELIVER IN PERSON|REG AIR|requests caj| +58508|180380|30381|2|12|17524.56|0.09|0.01|A|F|1992-11-14|1992-12-18|1992-12-10|TAKE BACK RETURN|MAIL|y silent dependencies hagg| +58508|641658|4171|3|44|70383.28|0.10|0.08|A|F|1992-12-24|1992-12-01|1993-01-11|NONE|RAIL|dolites. foxes use. sp| +58508|329634|29635|4|48|79853.76|0.03|0.03|A|F|1992-11-19|1992-11-20|1992-12-08|TAKE BACK RETURN|FOB|across the quickly silent din| +58508|150166|37676|5|1|1216.16|0.08|0.05|A|F|1992-10-27|1992-11-11|1992-11-17|COLLECT COD|REG AIR|l, final packages. sly| +58508|839842|14875|6|28|49890.40|0.00|0.03|R|F|1993-01-22|1992-12-12|1993-01-30|NONE|FOB| detect quickly regular instructions-| +58509|274607|49618|1|5|7907.95|0.04|0.01|R|F|1993-09-11|1993-09-26|1993-09-19|DELIVER IN PERSON|FOB|ns. slyly even pinto beans haggle blit| +58509|313644|1163|2|47|77908.61|0.07|0.05|R|F|1993-11-05|1993-09-03|1993-11-10|DELIVER IN PERSON|FOB|ounts. bli| +58509|412181|49706|3|14|15304.24|0.04|0.04|R|F|1993-11-24|1993-09-29|1993-12-13|COLLECT COD|TRUCK|e furiously even| +58510|475803|25804|1|3|5336.34|0.01|0.03|N|O|1997-10-13|1997-10-24|1997-11-10|DELIVER IN PERSON|REG AIR| slyly unusual platelets wake sl| +58510|815882|40915|2|5|8989.20|0.03|0.07|N|O|1997-11-06|1997-10-21|1997-12-05|DELIVER IN PERSON|SHIP|en pinto beans. furiously| +58510|519932|44953|3|18|35134.38|0.00|0.03|N|O|1997-09-24|1997-11-15|1997-09-27|DELIVER IN PERSON|TRUCK|ges throughout the warthogs cajo| +58510|482485|44995|4|26|38153.96|0.03|0.02|N|O|1997-11-18|1997-11-01|1997-12-14|NONE|AIR|y ironic multipliers. blithely ironic | +58510|114795|27298|5|24|43434.96|0.02|0.02|N|O|1998-01-15|1997-11-18|1998-01-28|COLLECT COD|RAIL|ly carefully blithe re| +58510|355987|5988|6|4|8171.88|0.10|0.00|N|O|1997-12-02|1997-11-04|1997-12-14|DELIVER IN PERSON|FOB|eodolites cajole carefully requests. slyly| +58510|62333|12334|7|48|62175.84|0.08|0.03|N|O|1997-10-30|1997-10-24|1997-11-04|COLLECT COD|REG AIR|yly regular depos| +58511|623937|23938|1|44|81879.60|0.06|0.02|N|O|1997-11-29|1997-11-16|1997-12-01|COLLECT COD|TRUCK|n ideas. slyly regu| +58511|498960|11470|2|50|97947.00|0.01|0.01|N|O|1997-09-02|1997-10-13|1997-09-10|COLLECT COD|MAIL|le carefully b| +58536|409445|9446|1|5|6772.10|0.08|0.00|A|F|1994-02-28|1994-03-20|1994-03-05|DELIVER IN PERSON|AIR|kly bold, final packages. da| +58536|530651|43162|2|50|84081.50|0.06|0.06|R|F|1994-05-16|1994-03-14|1994-05-23|NONE|MAIL|ing dependenc| +58536|644214|6727|3|41|47485.38|0.04|0.03|A|F|1994-01-23|1994-04-04|1994-02-22|NONE|REG AIR|cial accounts. furiously express | +58536|294116|31632|4|19|21091.90|0.03|0.08|A|F|1994-05-08|1994-04-15|1994-05-15|DELIVER IN PERSON|RAIL|sits unwind above| +58536|198038|10542|5|48|54529.44|0.08|0.04|R|F|1994-02-25|1994-04-10|1994-03-04|NONE|TRUCK|nic deposi| +58536|421939|9464|6|5|9304.55|0.07|0.04|A|F|1994-03-06|1994-03-27|1994-03-17|NONE|TRUCK| even theodolites cajole above the q| +58537|839967|39968|1|13|24789.96|0.08|0.03|N|O|1996-03-14|1996-03-02|1996-04-07|TAKE BACK RETURN|MAIL|y regular pinto beans hang blithely. di| +58537|310503|23010|2|27|40864.23|0.09|0.05|N|O|1996-03-27|1996-03-19|1996-04-01|DELIVER IN PERSON|TRUCK|nal requests. slyly| +58538|688876|26416|1|34|63404.56|0.01|0.06|N|O|1995-07-12|1995-08-26|1995-08-02|TAKE BACK RETURN|RAIL|lly silent th| +58538|924158|49195|2|38|44920.18|0.06|0.00|N|O|1995-08-26|1995-06-28|1995-09-16|COLLECT COD|MAIL|ate. theodolites| +58539|589211|1723|1|45|58508.55|0.01|0.02|N|O|1997-01-20|1996-12-30|1997-02-13|COLLECT COD|MAIL|quests. slyly regular theo| +58539|865003|2555|2|31|30006.76|0.10|0.02|N|O|1997-02-13|1996-12-14|1997-03-11|DELIVER IN PERSON|MAIL|ages print furio| +58539|101476|1477|3|35|51711.45|0.01|0.06|N|O|1996-10-27|1996-12-12|1996-11-22|COLLECT COD|AIR|grate fluffily permanent requests. final,| +58539|501767|26788|4|26|45987.24|0.09|0.05|N|O|1996-11-01|1997-01-09|1996-11-17|NONE|SHIP|ully silent, even accounts. quick| +58539|190088|15095|5|47|55369.76|0.09|0.07|N|O|1996-12-20|1996-12-27|1997-01-13|NONE|REG AIR|ly silent foxes of the sile| +58539|792718|17749|6|21|38024.28|0.09|0.04|N|O|1997-02-15|1996-11-25|1997-02-22|COLLECT COD|REG AIR|e of the car| +58540|535190|35191|1|20|24503.40|0.07|0.01|N|O|1998-01-12|1997-12-21|1998-01-22|NONE|REG AIR| instructions cajole blithel| +58540|927162|39681|2|37|43997.44|0.08|0.08|N|O|1998-01-03|1997-11-27|1998-01-07|DELIVER IN PERSON|REG AIR|sauternes sleep quickly express re| +58540|802898|40447|3|36|64830.60|0.06|0.01|N|O|1998-01-06|1997-11-20|1998-01-28|TAKE BACK RETURN|AIR|omise about the regula| +58540|291416|16427|4|42|59110.80|0.07|0.03|N|O|1998-01-04|1997-11-29|1998-01-29|DELIVER IN PERSON|FOB| blithely regular | +58541|138909|38910|1|5|9739.50|0.07|0.03|N|O|1998-08-02|1998-08-05|1998-08-22|NONE|AIR|ways furiously even accounts. | +58542|312267|37280|1|29|37098.25|0.09|0.08|N|O|1996-08-18|1996-09-12|1996-09-12|COLLECT COD|AIR|use slyly slyly ironic packages. carefu| +58543|754250|4251|1|48|62602.56|0.10|0.05|N|O|1998-03-10|1998-03-12|1998-04-02|NONE|MAIL|lyly silent plate| +58543|666401|3941|2|18|24612.66|0.04|0.05|N|O|1998-04-07|1998-04-22|1998-05-05|NONE|FOB|lyly unusu| +58543|187701|12708|3|6|10732.20|0.10|0.02|N|O|1998-03-14|1998-04-26|1998-03-31|COLLECT COD|AIR|fluffily even notornis solve da| +58543|686661|11688|4|9|14828.67|0.10|0.00|N|O|1998-03-31|1998-04-28|1998-04-23|DELIVER IN PERSON|TRUCK|blithely regular packages sleep ca| +58543|704153|16668|5|31|35870.72|0.10|0.08|N|O|1998-02-17|1998-04-14|1998-02-26|NONE|AIR|nt dinos use thi| +58543|684918|34919|6|22|41863.36|0.09|0.04|N|O|1998-02-13|1998-03-16|1998-03-07|TAKE BACK RETURN|REG AIR|serve never fluffy| +58568|815658|40691|1|21|33045.81|0.05|0.06|N|O|1996-12-24|1996-12-13|1997-01-11|NONE|FOB|gged requests detect furiously| +58568|758179|8180|2|23|28454.22|0.07|0.03|N|O|1996-11-09|1996-11-30|1996-12-06|DELIVER IN PERSON|TRUCK|oward the bold accounts. carefully regular| +58568|713076|619|3|45|49006.80|0.06|0.01|N|O|1996-10-25|1996-11-24|1996-11-16|TAKE BACK RETURN|TRUCK| carefully along the special | +58568|661077|36104|4|33|34255.32|0.01|0.07|N|O|1997-01-28|1996-11-30|1997-02-19|NONE|REG AIR|e carefully bold waters. f| +58569|457132|19642|1|24|26138.64|0.07|0.05|N|O|1995-10-30|1995-10-31|1995-11-18|TAKE BACK RETURN|REG AIR|nooze slyly among the blithely regul| +58570|411154|11155|1|43|45800.59|0.04|0.08|R|F|1994-08-27|1994-06-23|1994-08-29|COLLECT COD|TRUCK|the furiously| +58570|255868|18374|2|45|82073.25|0.01|0.05|A|F|1994-07-09|1994-07-25|1994-07-26|COLLECT COD|MAIL|packages nag furiously about the| +58570|366489|16490|3|7|10888.29|0.06|0.08|R|F|1994-08-15|1994-07-08|1994-09-02|COLLECT COD|REG AIR| quickly regular packages! qu| +58570|575432|455|4|9|13566.69|0.01|0.04|A|F|1994-05-13|1994-06-17|1994-05-30|NONE|MAIL| bold asymptotes. quickly regul| +58570|281039|43545|5|37|37740.74|0.05|0.06|R|F|1994-06-25|1994-06-29|1994-07-10|DELIVER IN PERSON|RAIL|uctions wake bli| +58571|259394|46910|1|26|35187.88|0.10|0.02|A|F|1994-07-06|1994-09-13|1994-07-26|NONE|SHIP|the furiously regular pa| +58571|627202|2227|2|41|46295.97|0.07|0.07|A|F|1994-08-10|1994-09-22|1994-08-20|DELIVER IN PERSON|AIR|ely ironic dependencies haggle a| +58572|121010|46015|1|10|10310.10|0.09|0.05|A|F|1992-01-16|1992-02-17|1992-01-23|TAKE BACK RETURN|SHIP|packages. regular accounts around t| +58573|371095|21096|1|23|26819.84|0.04|0.08|N|O|1997-04-07|1997-05-01|1997-04-27|TAKE BACK RETURN|REG AIR|ly ironic platelets detect| +58573|992453|4973|2|44|67998.04|0.09|0.01|N|O|1997-04-14|1997-03-15|1997-05-01|NONE|SHIP|int ironically| +58574|149543|12046|1|27|42998.58|0.00|0.04|N|O|1998-04-19|1998-06-27|1998-04-29|COLLECT COD|RAIL|players against the slyly express| +58575|312885|12886|1|12|22774.44|0.08|0.04|R|F|1994-10-06|1994-12-06|1994-11-04|DELIVER IN PERSON|TRUCK|ly regular| +58575|650096|97|2|4|4184.24|0.00|0.04|A|F|1995-01-22|1994-12-17|1995-02-11|COLLECT COD|SHIP|jole. furiously ironic dep| +58575|156014|18518|3|24|25680.24|0.07|0.03|A|F|1995-01-21|1994-12-19|1995-02-04|TAKE BACK RETURN|MAIL|y bold requests affix slyly ideas.| +58575|121008|21009|4|47|48363.00|0.05|0.05|R|F|1994-11-26|1994-11-04|1994-12-14|NONE|REG AIR|urts. finally unusual pinto beans wake | +58575|780164|17710|5|19|23638.47|0.02|0.00|R|F|1994-12-29|1994-11-09|1995-01-07|COLLECT COD|TRUCK|throughout the fl| +58600|418363|30872|1|5|6406.70|0.01|0.05|A|F|1993-09-04|1993-07-27|1993-09-16|TAKE BACK RETURN|TRUCK|d furiously according to the special tit| +58601|417784|17785|1|21|35736.96|0.07|0.00|R|F|1992-09-25|1992-07-19|1992-10-18|COLLECT COD|REG AIR|s packages| +58601|685499|10526|2|28|41564.88|0.08|0.03|A|F|1992-08-28|1992-08-14|1992-09-12|TAKE BACK RETURN|REG AIR|onic requests. final dep| +58601|168878|18879|3|36|70087.32|0.02|0.04|R|F|1992-08-30|1992-08-23|1992-09-18|DELIVER IN PERSON|RAIL|t the furiously ironic requests. furious| +58602|191430|16437|1|21|31950.03|0.09|0.01|N|O|1995-06-30|1995-05-08|1995-07-16|NONE|AIR|ests wake slyly. quickly| +58602|347258|22271|2|29|37851.96|0.10|0.08|R|F|1995-05-17|1995-06-01|1995-05-29|DELIVER IN PERSON|AIR|s lose according to the furio| +58603|46793|21794|1|1|1739.79|0.04|0.03|A|F|1994-09-13|1994-08-24|1994-10-13|NONE|RAIL|inal packages. furious| +58603|434923|47432|2|27|50163.30|0.04|0.03|R|F|1994-09-19|1994-07-31|1994-10-13|DELIVER IN PERSON|FOB|ly ironic requests sleep above the furiou| +58603|735223|10252|3|3|3774.57|0.03|0.04|A|F|1994-07-14|1994-09-02|1994-08-08|NONE|MAIL|y after the sil| +58603|881469|19021|4|23|33359.66|0.03|0.02|A|F|1994-08-21|1994-08-08|1994-09-16|DELIVER IN PERSON|SHIP|sly. furiously unusual packages pla| +58604|526895|14426|1|15|28828.05|0.09|0.03|R|F|1993-11-20|1993-12-27|1993-12-09|NONE|SHIP|y even deposits. slyly even theodolites u| +58604|514364|26875|2|44|60646.96|0.10|0.00|R|F|1993-12-08|1993-12-21|1993-12-28|COLLECT COD|AIR|ets wake furiously express pa| +58605|275688|38194|1|4|6654.68|0.06|0.01|R|F|1992-06-04|1992-06-30|1992-06-18|NONE|MAIL|sly bold d| +58605|473631|48650|2|48|77021.28|0.10|0.03|A|F|1992-07-05|1992-06-05|1992-07-20|TAKE BACK RETURN|AIR|equests around the bli| +58605|302739|40258|3|46|80119.12|0.06|0.08|A|F|1992-07-23|1992-05-05|1992-07-31|DELIVER IN PERSON|REG AIR|kly special instructions sl| +58605|123129|10636|4|9|10369.08|0.08|0.08|R|F|1992-07-01|1992-05-22|1992-07-26|COLLECT COD|FOB|side of the quickly express waters. slyly e| +58606|874438|49473|1|20|28247.80|0.04|0.03|N|O|1998-11-04|1998-09-12|1998-11-21|COLLECT COD|TRUCK| ironic ideas integrate around the inst| +58606|671450|46477|2|29|41221.18|0.07|0.00|N|O|1998-10-13|1998-08-18|1998-11-03|TAKE BACK RETURN|TRUCK|e carefully| +58606|48882|36383|3|5|9154.40|0.07|0.06|N|O|1998-08-22|1998-09-20|1998-08-26|COLLECT COD|AIR|s. carefully special excuses cajole | +58606|555817|5818|4|17|31837.43|0.09|0.08|N|O|1998-10-27|1998-08-16|1998-11-03|DELIVER IN PERSON|REG AIR|furiously carefully silent dependencies.| +58607|331748|6761|1|23|40933.79|0.06|0.03|N|O|1995-06-20|1995-09-02|1995-06-26|COLLECT COD|FOB|er the furiously fluffy| +58607|684990|10017|2|5|9874.80|0.03|0.05|N|O|1995-09-24|1995-07-05|1995-10-07|NONE|TRUCK|y around the carefully| +58607|618514|18515|3|12|17189.76|0.05|0.07|N|F|1995-06-08|1995-07-17|1995-07-02|NONE|AIR|ests sleep c| +58632|747652|47653|1|45|76482.90|0.04|0.00|A|F|1993-09-12|1993-06-30|1993-09-21|NONE|SHIP|beans sleep. slyly even | +58632|774731|37247|2|44|79450.80|0.03|0.08|R|F|1993-08-04|1993-07-16|1993-08-17|TAKE BACK RETURN|REG AIR|ual packages. final, reg| +58632|898256|48257|3|3|3762.63|0.03|0.05|R|F|1993-07-30|1993-07-25|1993-08-22|COLLECT COD|FOB|ove the fluffily special requests-- q| +58632|988586|13625|4|8|13396.32|0.02|0.04|R|F|1993-08-08|1993-08-20|1993-08-14|COLLECT COD|MAIL|onic ideas haggle against the e| +58632|157932|45442|5|23|45768.39|0.02|0.03|R|F|1993-07-16|1993-08-26|1993-08-12|NONE|RAIL|al packages are. regular deposits af| +58633|589407|14430|1|14|20949.32|0.02|0.04|N|O|1998-07-04|1998-06-08|1998-07-19|DELIVER IN PERSON|MAIL|ithely ironic platelets sublate blithel| +58633|162167|37174|2|10|12291.60|0.02|0.06|N|O|1998-05-11|1998-06-25|1998-05-24|COLLECT COD|SHIP|eodolites. slyly fluff| +58634|914510|27029|1|24|36587.28|0.02|0.08|N|O|1995-07-16|1995-08-09|1995-08-01|NONE|FOB| integrate fluffily along the quickly busy| +58634|164867|2377|2|2|3863.72|0.09|0.07|N|O|1995-09-14|1995-08-29|1995-09-18|NONE|RAIL|es. regula| +58635|988781|13820|1|10|18697.40|0.06|0.05|R|F|1995-01-22|1995-03-16|1995-02-07|TAKE BACK RETURN|AIR|urious foxes nag blithely quickly even acco| +58635|429886|17411|2|40|72634.40|0.02|0.04|R|F|1995-02-12|1995-03-01|1995-02-16|COLLECT COD|MAIL| regular idea| +58635|93384|5886|3|24|33057.12|0.00|0.00|A|F|1995-01-21|1995-02-20|1995-02-03|NONE|MAIL| even accounts wake furiously | +58635|490364|40365|4|32|43338.88|0.10|0.03|A|F|1995-02-07|1995-04-05|1995-03-03|NONE|TRUCK|y regular deposits. deposits c| +58636|560961|35984|1|1|2021.94|0.02|0.00|N|O|1997-03-17|1997-06-01|1997-03-29|COLLECT COD|AIR|bout the ironic, ironic ideas. pending| +58636|59967|47471|2|13|25050.48|0.00|0.07|N|O|1997-06-26|1997-06-09|1997-07-17|NONE|SHIP|y regular packages sleep slyly | +58636|859196|34231|3|20|23103.00|0.05|0.01|N|O|1997-04-05|1997-05-12|1997-05-02|TAKE BACK RETURN|MAIL|st requests. furiousl| +58637|619958|44983|1|37|69483.04|0.04|0.01|N|O|1995-08-01|1995-10-08|1995-08-19|NONE|TRUCK|ng blithely a| +58637|619449|44474|2|37|50631.17|0.09|0.07|N|O|1995-09-11|1995-08-25|1995-09-29|DELIVER IN PERSON|REG AIR|d instructions. flu| +58638|16733|29234|1|42|69288.66|0.10|0.06|N|O|1996-07-24|1996-09-25|1996-08-11|COLLECT COD|TRUCK|uriously quickly special asymp| +58638|227072|2081|2|4|3996.24|0.09|0.03|N|O|1996-07-23|1996-09-14|1996-08-22|TAKE BACK RETURN|AIR|y according to the carefully| +58638|382703|32704|3|14|24999.66|0.04|0.05|N|O|1996-08-19|1996-07-31|1996-09-08|NONE|REG AIR| carefully ruthless packages| +58638|78293|28294|4|13|16526.77|0.06|0.04|N|O|1996-09-02|1996-08-21|1996-09-05|DELIVER IN PERSON|MAIL|ggle evenly regul| +58638|860542|48094|5|40|60100.00|0.08|0.06|N|O|1996-08-24|1996-08-22|1996-09-16|NONE|MAIL|are among the carefully final cou| +58639|84660|22164|1|25|41116.50|0.10|0.00|N|O|1998-07-22|1998-07-16|1998-07-23|TAKE BACK RETURN|REG AIR| fluffily pen| +58639|880162|5197|2|36|41116.32|0.09|0.07|N|O|1998-08-30|1998-06-15|1998-09-03|COLLECT COD|SHIP|t the even, even pinto beans. slyly| +58639|878143|28144|3|24|26906.40|0.04|0.05|N|O|1998-07-13|1998-07-09|1998-07-16|COLLECT COD|MAIL|to the regular, | +58639|935696|48215|4|40|69266.00|0.05|0.06|N|O|1998-05-23|1998-06-05|1998-06-11|COLLECT COD|MAIL|latelets above the reg| +58639|230013|30014|5|30|28290.00|0.03|0.08|N|O|1998-05-28|1998-06-24|1998-06-10|NONE|REG AIR|egular deposits haggle about the qui| +58664|120342|7849|1|46|62667.64|0.07|0.07|A|F|1993-08-10|1993-07-21|1993-09-07|NONE|AIR| foxes nag carefully carefully regu| +58664|580543|5566|2|14|22729.28|0.05|0.08|A|F|1993-08-14|1993-08-08|1993-08-28|COLLECT COD|FOB|luffily even requests. theodol| +58664|184966|9973|3|29|59477.84|0.07|0.05|R|F|1993-06-16|1993-07-29|1993-06-28|TAKE BACK RETURN|MAIL|accounts. multip| +58665|911350|11351|1|26|35394.06|0.03|0.08|N|O|1997-08-27|1997-08-31|1997-08-30|TAKE BACK RETURN|TRUCK|ld, final packages cajole slyly. furiously | +58665|48973|11474|2|40|76878.80|0.03|0.07|N|O|1997-09-14|1997-08-03|1997-10-02|NONE|TRUCK| carefully unusual packages impress doggedl| +58665|87375|24879|3|30|40871.10|0.09|0.03|N|O|1997-08-19|1997-08-28|1997-09-06|TAKE BACK RETURN|AIR| sublate carefu| +58666|246081|21090|1|10|10270.70|0.10|0.03|R|F|1993-12-26|1993-11-15|1993-12-27|COLLECT COD|FOB| slyly bold pinto beans slee| +58666|873551|48586|2|22|33539.22|0.05|0.02|R|F|1993-10-08|1993-12-20|1993-10-09|DELIVER IN PERSON|RAIL|nstructions haggle slyly| +58666|756401|18917|3|9|13116.33|0.05|0.06|R|F|1993-12-16|1993-11-08|1994-01-03|TAKE BACK RETURN|TRUCK|le quickly unusual instru| +58666|829893|17442|4|46|83851.10|0.04|0.04|R|F|1993-10-04|1993-12-17|1993-10-30|DELIVER IN PERSON|RAIL|dle asymptotes x-ray after the | +58667|45243|7744|1|36|42776.64|0.04|0.07|N|O|1996-04-13|1996-03-19|1996-04-15|DELIVER IN PERSON|TRUCK|unts. final| +58667|383710|46218|2|19|34080.30|0.08|0.01|N|O|1996-01-02|1996-02-14|1996-01-24|NONE|REG AIR|accounts boos| +58667|2871|27872|3|32|56763.84|0.09|0.03|N|O|1996-03-10|1996-03-08|1996-03-26|DELIVER IN PERSON|AIR|lent instructions. furiously regul| +58667|248166|35679|4|49|54593.35|0.01|0.06|N|O|1996-01-02|1996-03-03|1996-01-10|NONE|SHIP|osits haggle furiously carefully even| +58667|918639|18640|5|47|77906.73|0.08|0.07|N|O|1996-01-01|1996-01-29|1996-01-20|COLLECT COD|RAIL|ld requests nag alongside of| +58668|653311|28338|1|14|17699.92|0.09|0.06|R|F|1994-06-09|1994-06-22|1994-06-19|TAKE BACK RETURN|TRUCK|fully regular accoun| +58668|190019|40020|2|45|49905.45|0.10|0.00|R|F|1994-08-29|1994-06-29|1994-09-28|TAKE BACK RETURN|REG AIR|ar deposits among the bli| +58668|637977|37978|3|32|61278.08|0.04|0.07|A|F|1994-07-19|1994-06-29|1994-08-02|TAKE BACK RETURN|REG AIR| requests. carefully re| +58668|462709|12710|4|18|30090.24|0.07|0.03|A|F|1994-09-09|1994-07-27|1994-10-07|NONE|AIR|ully regular, express packages. realms| +58668|747927|35470|5|17|33573.13|0.10|0.06|R|F|1994-06-05|1994-06-24|1994-06-25|DELIVER IN PERSON|AIR|phins detect carefully around the busy pint| +58669|958269|33308|1|31|41143.82|0.01|0.05|N|F|1995-05-28|1995-07-04|1995-06-19|TAKE BACK RETURN|TRUCK|theodolites. braids haggle p| +58669|615986|41011|2|39|74176.05|0.05|0.02|N|O|1995-07-10|1995-06-30|1995-07-27|NONE|MAIL|g packages| +58669|872995|48030|3|6|11807.70|0.00|0.05|R|F|1995-05-18|1995-06-07|1995-06-10|DELIVER IN PERSON|TRUCK|cies. carefu| +58670|855503|30538|1|2|2916.92|0.00|0.03|N|O|1998-01-06|1998-01-12|1998-01-20|NONE|TRUCK|quickly bold platele| +58670|429542|29543|2|28|41202.56|0.03|0.00|N|O|1998-01-16|1998-01-09|1998-01-29|COLLECT COD|FOB|s. final deposit| +58670|302543|40062|3|38|58730.14|0.04|0.00|N|O|1998-02-08|1997-12-23|1998-02-28|DELIVER IN PERSON|TRUCK|ers maintain busily. carefu| +58670|839387|14420|4|42|55706.28|0.08|0.06|N|O|1998-02-02|1998-01-13|1998-02-09|TAKE BACK RETURN|RAIL|ely careful requests haggl| +58670|576394|1417|5|20|29407.40|0.06|0.07|N|O|1998-01-18|1997-12-10|1998-01-23|COLLECT COD|TRUCK| slyly final f| +58670|441865|16882|6|49|88535.16|0.03|0.01|N|O|1997-11-26|1998-01-16|1997-12-20|DELIVER IN PERSON|AIR|structions; idle foxes | +58670|416112|41129|7|38|39067.42|0.06|0.07|N|O|1998-02-20|1998-01-10|1998-03-22|DELIVER IN PERSON|SHIP|! blithely special foxes| +58671|593568|31102|1|4|6646.16|0.07|0.04|R|F|1994-04-20|1994-05-13|1994-04-23|TAKE BACK RETURN|REG AIR|en requests nag f| +58696|726854|26855|1|24|45139.68|0.05|0.06|N|O|1998-01-13|1997-12-18|1998-02-12|COLLECT COD|FOB|e. carefully pending | +58696|230860|30861|2|49|87751.65|0.03|0.05|N|O|1997-11-06|1997-12-02|1997-11-16|DELIVER IN PERSON|AIR|the final packages. fluffily i| +58696|59812|9813|3|14|24805.34|0.05|0.07|N|O|1997-11-21|1997-11-24|1997-12-12|TAKE BACK RETURN|SHIP| furiously pending ins| +58696|250166|167|4|33|36832.95|0.09|0.07|N|O|1997-12-23|1997-11-01|1997-12-27|TAKE BACK RETURN|AIR|he furiously caref| +58696|528724|41235|5|12|21032.40|0.00|0.00|N|O|1997-10-19|1997-11-17|1997-11-17|TAKE BACK RETURN|MAIL| even foxes along the frays boost abo| +58696|248414|48415|6|21|28610.40|0.06|0.04|N|O|1997-10-06|1997-10-25|1997-10-15|TAKE BACK RETURN|SHIP|y above the ruthle| +58697|509402|34423|1|10|14113.80|0.04|0.04|R|F|1994-06-01|1994-07-19|1994-06-12|COLLECT COD|FOB|es. quickly express acc| +58697|509767|34788|2|37|65739.38|0.08|0.02|R|F|1994-08-06|1994-06-16|1994-08-17|DELIVER IN PERSON|RAIL|es. blithely special acco| +58697|638009|25546|3|1|946.97|0.10|0.06|R|F|1994-05-15|1994-07-21|1994-05-28|COLLECT COD|RAIL|bove the blithely bold ideas run sp| +58697|14570|14571|4|31|46021.67|0.05|0.05|A|F|1994-04-30|1994-07-20|1994-05-26|COLLECT COD|AIR| run carefully since the foxes. fl| +58698|974480|37000|1|47|73058.68|0.06|0.07|A|F|1993-01-13|1993-03-07|1993-01-25|DELIVER IN PERSON|RAIL|p above the pending pack| +58698|85092|35093|2|34|36621.06|0.08|0.03|A|F|1993-03-23|1993-02-23|1993-04-10|COLLECT COD|MAIL| unusual packages nag | +58698|130018|42521|3|29|30392.29|0.01|0.00|A|F|1992-12-24|1993-02-04|1993-01-18|NONE|RAIL|ans. bold foxes poach. warthogs| +58698|198198|48199|4|31|40181.89|0.09|0.06|A|F|1993-03-27|1993-03-02|1993-04-12|COLLECT COD|TRUCK|slyly ironic pinto beans among t| +58698|103042|28047|5|24|25080.96|0.06|0.04|R|F|1993-02-26|1993-02-15|1993-03-21|TAKE BACK RETURN|TRUCK|osits affix blithely! regularly even| +58698|817268|29785|6|38|45038.36|0.09|0.01|A|F|1993-04-10|1993-03-09|1993-04-14|COLLECT COD|TRUCK|even packages integra| +58698|822007|9556|7|36|33442.56|0.10|0.07|A|F|1993-03-31|1993-01-13|1993-04-24|COLLECT COD|TRUCK|e carefully| +58699|462147|24657|1|27|29946.24|0.07|0.06|R|F|1995-04-08|1995-02-22|1995-04-28|TAKE BACK RETURN|AIR| pinto beans. slyly regular theodoli| +58699|288992|38993|2|9|17828.82|0.00|0.02|A|F|1995-02-07|1995-02-13|1995-02-28|COLLECT COD|MAIL|ross the final deposits cajole| +58699|85773|23277|3|13|22864.01|0.04|0.02|A|F|1995-01-14|1995-01-27|1995-01-31|DELIVER IN PERSON|FOB|onic packages. iron| +58699|579659|42171|4|3|5215.89|0.01|0.01|R|F|1995-02-22|1995-01-21|1995-03-07|DELIVER IN PERSON|SHIP|ar deposits slee| +58699|326126|38633|5|37|42628.07|0.10|0.01|R|F|1994-12-24|1995-03-15|1994-12-30|NONE|SHIP| regular instructions haggle | +58699|198384|10888|6|25|37059.50|0.03|0.08|A|F|1994-12-30|1995-02-10|1995-01-14|DELIVER IN PERSON|TRUCK|ld, ironic theodolites hinder| +58699|238317|38318|7|39|48956.70|0.08|0.06|R|F|1995-02-03|1995-02-19|1995-02-08|COLLECT COD|SHIP| dolphins. furiously unusual accounts ca| +58700|381350|43858|1|28|40077.52|0.05|0.08|R|F|1994-05-11|1994-06-28|1994-05-13|DELIVER IN PERSON|FOB|lly bold instructions. | +58700|336500|11513|2|6|9218.94|0.04|0.06|R|F|1994-06-27|1994-06-16|1994-07-21|DELIVER IN PERSON|MAIL|ely carefully bold requests. fina| +58700|539596|39597|3|50|81778.50|0.03|0.06|R|F|1994-07-25|1994-05-20|1994-08-14|COLLECT COD|RAIL|n requests are except | +58700|975369|37889|4|22|31775.04|0.09|0.08|R|F|1994-07-06|1994-07-16|1994-07-16|COLLECT COD|TRUCK|sleep slyly bold instruc| +58700|11653|24154|5|49|76667.85|0.10|0.05|A|F|1994-07-04|1994-05-19|1994-07-20|COLLECT COD|SHIP|ages use furiously above the regula| +58701|55748|5749|1|13|22148.62|0.05|0.06|N|O|1997-12-16|1998-02-09|1997-12-20|DELIVER IN PERSON|AIR|y final, bold deposits-- quickly even r| +58701|951202|26241|2|15|18797.40|0.10|0.06|N|O|1997-12-20|1998-02-05|1998-01-11|NONE|FOB|ironic pack| +58701|847600|35149|3|23|35593.88|0.05|0.06|N|O|1998-02-20|1998-01-13|1998-03-15|TAKE BACK RETURN|AIR|se about the carefully ironic theod| +58702|857344|19862|1|1|1301.30|0.03|0.05|N|O|1995-06-22|1995-07-02|1995-07-02|DELIVER IN PERSON|FOB|eposits lose carefully. even,| +58703|100169|12672|1|44|51443.04|0.08|0.02|A|F|1992-03-27|1992-02-27|1992-03-30|DELIVER IN PERSON|RAIL|lar deposits among| +58703|538032|13053|2|3|3210.03|0.06|0.01|R|F|1992-05-05|1992-04-13|1992-05-29|NONE|MAIL|ins toward the requests sleep furiousl| +58703|698349|35889|3|28|37724.68|0.06|0.08|A|F|1992-02-07|1992-03-12|1992-02-12|NONE|FOB|tes haggle against the depths. slyly spe| +58703|151038|1039|4|14|15246.42|0.09|0.06|A|F|1992-02-12|1992-03-10|1992-03-01|DELIVER IN PERSON|FOB|t are! foxes will are regular deposits| +58728|921024|8579|1|41|42844.18|0.05|0.01|A|F|1995-03-22|1995-03-05|1995-03-29|DELIVER IN PERSON|FOB| carefully ironic ideas. fluffily pendi| +58729|887380|37381|1|23|31448.82|0.06|0.04|R|F|1994-02-15|1994-03-07|1994-03-07|COLLECT COD|TRUCK|sts sleep. slyl| +58729|187985|37986|2|11|22802.78|0.05|0.08|R|F|1994-01-25|1994-03-31|1994-02-18|COLLECT COD|AIR|es sleep packages. dinos amon| +58729|461819|36838|3|50|89039.50|0.05|0.02|R|F|1994-03-15|1994-02-25|1994-03-31|TAKE BACK RETURN|TRUCK|ect blithely above the slyly bold| +58729|775597|25598|4|2|3345.12|0.09|0.08|R|F|1994-01-13|1994-03-16|1994-02-01|COLLECT COD|AIR|uffily unusual requests alongside | +58729|449387|24404|5|8|10690.88|0.08|0.05|R|F|1994-04-08|1994-02-22|1994-04-18|DELIVER IN PERSON|FOB|osits. furiously | +58729|831965|44482|6|22|41732.24|0.08|0.01|A|F|1994-01-22|1994-03-17|1994-02-14|TAKE BACK RETURN|TRUCK|ly carefully pending in| +58730|859248|34283|1|34|41044.80|0.06|0.03|N|O|1995-06-20|1995-06-19|1995-06-27|COLLECT COD|TRUCK|ajole ironic, brave foxes. carefu| +58730|374079|24080|2|19|21908.14|0.06|0.06|N|F|1995-06-06|1995-08-03|1995-06-27|TAKE BACK RETURN|MAIL|lithely unusual deposits na| +58730|142833|30340|3|43|80660.69|0.00|0.07|N|O|1995-06-20|1995-07-20|1995-06-27|DELIVER IN PERSON|RAIL|ss packages a| +58730|582596|20130|4|27|45321.39|0.06|0.04|N|O|1995-08-07|1995-07-17|1995-08-09|DELIVER IN PERSON|RAIL| carefully fluffily final asymptotes; f| +58730|676354|38868|5|41|54543.12|0.08|0.04|N|O|1995-07-07|1995-07-02|1995-07-23|COLLECT COD|FOB|sts. pending pinto be| +58730|479123|16651|6|40|44084.00|0.09|0.00|N|O|1995-07-24|1995-06-25|1995-07-29|COLLECT COD|REG AIR|l, unusual requests. regular pinto | +58730|604136|29161|7|21|21842.10|0.06|0.01|N|F|1995-06-04|1995-07-11|1995-06-18|TAKE BACK RETURN|TRUCK|ully. carefully regular ideas shall caj| +58731|705961|5962|1|38|74743.34|0.08|0.07|A|F|1992-09-03|1992-10-25|1992-09-06|TAKE BACK RETURN|AIR|earls. unusu| +58732|178141|15651|1|38|46327.32|0.07|0.07|N|O|1997-12-26|1997-11-01|1998-01-24|TAKE BACK RETURN|MAIL|riously final accounts affix carefully aga| +58732|6487|31488|2|14|19508.72|0.00|0.01|N|O|1998-01-04|1997-11-23|1998-01-21|COLLECT COD|SHIP| ironic foxes use slyly. slyly ironic | +58732|17834|17835|3|20|35036.60|0.02|0.08|N|O|1997-10-22|1997-11-10|1997-10-25|TAKE BACK RETURN|SHIP|e deposits use carefully unus| +58732|722981|35496|4|43|86169.85|0.00|0.00|N|O|1998-01-16|1997-11-14|1998-02-05|DELIVER IN PERSON|FOB|hockey players wake carefully. fluffily i| +58732|138204|25711|5|38|47203.60|0.10|0.00|N|O|1997-10-23|1997-12-01|1997-11-17|COLLECT COD|RAIL|carefully | +58733|809754|47303|1|7|11645.97|0.05|0.01|R|F|1993-03-01|1993-02-18|1993-03-21|NONE|TRUCK| furiously slyly silent| +58733|521969|46990|2|36|71673.84|0.03|0.03|R|F|1993-04-05|1993-03-03|1993-04-25|TAKE BACK RETURN|SHIP| the regular| +58733|732312|7341|3|10|13442.80|0.03|0.08|R|F|1993-04-23|1993-02-20|1993-05-04|DELIVER IN PERSON|FOB|sts on the furiously regular f| +58733|967108|29628|4|18|21151.08|0.03|0.06|R|F|1993-03-05|1993-03-08|1993-03-06|COLLECT COD|FOB|special deposits. bold re| +58734|660801|48341|1|25|44044.25|0.08|0.00|A|F|1993-11-06|1993-12-14|1993-11-10|TAKE BACK RETURN|REG AIR|ly above the blithely bold excuses. sent| +58734|80487|30488|2|10|14674.80|0.01|0.03|A|F|1993-11-13|1993-12-14|1993-11-26|COLLECT COD|FOB|bove the quic| +58734|732282|32283|3|31|40741.75|0.05|0.04|R|F|1994-01-15|1994-01-16|1994-02-02|COLLECT COD|MAIL|ular deposits sleep quickly bold multiplier| +58734|446873|9382|4|20|36397.00|0.06|0.07|R|F|1993-11-10|1993-12-26|1993-11-12|TAKE BACK RETURN|FOB|metimes final ideas cajole furi| +58734|587571|12594|5|44|72976.20|0.08|0.08|A|F|1993-12-31|1993-12-21|1994-01-17|COLLECT COD|FOB| above the accounts c| +58734|300531|38050|6|38|58197.76|0.07|0.06|R|F|1994-02-10|1993-12-12|1994-02-17|TAKE BACK RETURN|RAIL|tes boost ruthless, r| +58735|556996|32019|1|46|94436.62|0.06|0.08|N|O|1995-10-02|1995-11-13|1995-10-22|DELIVER IN PERSON|RAIL|lly above th| +58735|425453|12978|2|47|64786.21|0.00|0.04|N|O|1995-10-27|1995-10-27|1995-10-31|DELIVER IN PERSON|TRUCK|olites sleep blithely carefully ironic| +58735|582552|20086|3|22|35959.66|0.03|0.03|N|O|1995-10-07|1995-11-05|1995-11-01|COLLECT COD|RAIL|l packages sleep about the regular notorn| +58760|911912|24431|1|46|88498.02|0.03|0.05|R|F|1994-04-06|1994-04-10|1994-04-27|NONE|AIR| carefully bold f| +58760|496966|46967|2|21|41221.74|0.00|0.01|R|F|1994-02-01|1994-03-16|1994-02-02|NONE|SHIP|e furiously | +58760|505222|5223|3|25|30680.00|0.05|0.00|R|F|1994-03-03|1994-04-04|1994-03-29|TAKE BACK RETURN|FOB|ackages above the quickly| +58760|249609|24618|4|12|18703.08|0.06|0.00|A|F|1994-02-26|1994-02-22|1994-03-03|NONE|MAIL|ffily final requests.| +58760|165631|3141|5|3|5089.89|0.05|0.07|R|F|1994-04-11|1994-04-08|1994-04-30|TAKE BACK RETURN|RAIL|ackages mold slyly among the warthog| +58761|506775|19286|1|25|44543.75|0.03|0.04|A|F|1993-04-26|1993-04-02|1993-05-02|DELIVER IN PERSON|RAIL| dependencies haggl| +58761|359754|9755|2|15|27206.10|0.01|0.03|A|F|1993-02-10|1993-03-24|1993-02-15|COLLECT COD|REG AIR|accounts beside the carefully| +58761|377527|27528|3|26|41717.26|0.10|0.05|A|F|1993-05-30|1993-04-07|1993-06-14|COLLECT COD|AIR|s. furiously special tithes against the | +58761|93873|18876|4|19|35470.53|0.07|0.00|R|F|1993-03-19|1993-03-17|1993-03-20|DELIVER IN PERSON|RAIL|ly about th| +58761|710227|47770|5|45|55673.55|0.00|0.06|R|F|1993-05-30|1993-04-30|1993-06-05|NONE|REG AIR|requests use accordi| +58761|777816|40332|6|9|17044.02|0.05|0.04|A|F|1993-04-18|1993-05-08|1993-04-19|NONE|AIR| regular requests. bold deposits caj| +58761|742161|29704|7|15|18046.95|0.05|0.02|R|F|1993-02-12|1993-04-14|1993-02-21|TAKE BACK RETURN|MAIL|even accounts nag packages. qui| +58762|497071|9581|1|10|10680.50|0.09|0.00|A|F|1993-12-17|1994-02-23|1993-12-27|DELIVER IN PERSON|REG AIR| requests across the bl| +58762|269536|7052|2|1|1505.52|0.04|0.04|A|F|1993-12-25|1994-03-01|1994-01-12|NONE|MAIL| requests boost slyly regular p| +58762|76265|1268|3|4|4965.04|0.03|0.01|A|F|1994-01-28|1994-01-30|1994-02-18|TAKE BACK RETURN|REG AIR|ully even ideas. bold requests | +58762|784624|22170|4|31|52966.29|0.05|0.03|A|F|1993-12-24|1994-01-19|1994-01-15|DELIVER IN PERSON|MAIL|fully regular packages lose furiously reg| +58762|169033|6543|5|21|23142.63|0.01|0.01|A|F|1994-03-21|1994-02-01|1994-04-06|COLLECT COD|SHIP| accounts sleep blithely. final asymptotes | +58763|721676|21677|1|10|16976.40|0.08|0.03|R|F|1995-04-21|1995-05-29|1995-04-23|DELIVER IN PERSON|MAIL|posits. carefully ironic requests| +58763|208380|20885|2|49|63130.13|0.06|0.01|R|F|1995-04-25|1995-05-28|1995-05-01|DELIVER IN PERSON|AIR|ickly. dolph| +58763|241233|41234|3|7|8219.54|0.04|0.03|R|F|1995-04-13|1995-06-24|1995-05-02|TAKE BACK RETURN|AIR|ironic instructions impress blith| +58763|399145|11653|4|46|57229.98|0.08|0.04|R|F|1995-04-30|1995-06-03|1995-05-19|DELIVER IN PERSON|RAIL|s snooze against| +58763|418149|18150|5|29|30946.48|0.09|0.00|A|F|1995-05-17|1995-05-22|1995-05-20|NONE|FOB|cording to the final, ironic| +58764|929556|4593|1|34|53907.34|0.08|0.04|N|O|1997-05-25|1997-05-12|1997-06-07|DELIVER IN PERSON|AIR|yly across the sp| +58764|39577|2078|2|9|13649.13|0.02|0.03|N|O|1997-04-11|1997-05-29|1997-05-11|TAKE BACK RETURN|AIR|yly ironic excuses cajole fur| +58764|158608|46118|3|6|9999.60|0.09|0.04|N|O|1997-05-31|1997-05-04|1997-06-13|TAKE BACK RETURN|MAIL|ly above the furiously regular ideas. bold | +58765|906574|44129|1|48|75865.44|0.06|0.02|N|O|1996-09-14|1996-08-27|1996-09-21|COLLECT COD|FOB|ular pinto beans af| +58765|787326|12357|2|8|11306.32|0.03|0.07|N|O|1996-08-23|1996-09-28|1996-09-07|DELIVER IN PERSON|MAIL|ost slyly against| +58765|581697|44209|3|5|8893.35|0.06|0.08|N|O|1996-09-14|1996-09-02|1996-10-08|NONE|MAIL|e slyly-- slyly reg| +58765|578028|28029|4|33|36498.00|0.09|0.01|N|O|1996-10-21|1996-08-17|1996-10-25|TAKE BACK RETURN|AIR|egular asymptotes might | +58766|299086|11592|1|2|2170.14|0.04|0.05|N|F|1995-05-23|1995-04-12|1995-06-19|TAKE BACK RETURN|TRUCK|s the carefully final requests. depos| +58766|725622|13165|2|49|80731.91|0.01|0.01|A|F|1995-04-23|1995-04-23|1995-04-28|NONE|MAIL| requests. furiously bold deposits was f| +58766|515071|15072|3|6|6516.30|0.01|0.04|N|F|1995-05-25|1995-04-21|1995-06-24|NONE|RAIL|s above the slyly bold p| +58767|198732|48733|1|14|25630.22|0.04|0.03|N|O|1997-02-07|1997-01-26|1997-02-09|TAKE BACK RETURN|FOB|l theodolites sublate u| +58767|79762|4765|2|47|81862.72|0.01|0.04|N|O|1997-01-15|1997-01-22|1997-01-20|TAKE BACK RETURN|RAIL| slyly final packages sleep slyly | +58767|555664|5665|3|36|61907.04|0.04|0.05|N|O|1996-12-04|1996-12-27|1996-12-09|TAKE BACK RETURN|SHIP|ions are furiously along| +58767|36879|36880|4|9|16342.83|0.09|0.08|N|O|1997-03-06|1997-01-21|1997-03-21|NONE|AIR|r requests aro| +58792|1743|14244|1|4|6578.96|0.04|0.03|A|F|1994-10-03|1994-09-13|1994-10-28|COLLECT COD|TRUCK|ites above the furiously b| +58792|294539|32055|2|32|49072.64|0.00|0.03|A|F|1994-08-14|1994-09-30|1994-09-10|DELIVER IN PERSON|MAIL|out the slyly regular instructi| +58792|307137|32150|3|33|37755.96|0.03|0.02|R|F|1994-10-27|1994-10-25|1994-11-19|COLLECT COD|REG AIR|e. carefully ironic grouches sleep? special| +58792|34875|22376|4|15|27148.05|0.08|0.01|A|F|1994-10-23|1994-09-30|1994-11-11|NONE|AIR|s. ironic, regular instruc| +58792|128197|28198|5|26|31854.94|0.04|0.07|R|F|1994-11-03|1994-10-04|1994-11-08|DELIVER IN PERSON|SHIP|l, regular excuses. instructions | +58792|604600|17113|6|32|48146.24|0.03|0.00|R|F|1994-12-05|1994-09-21|1994-12-22|DELIVER IN PERSON|MAIL|refully packages.| +58793|632990|8015|1|17|32690.32|0.07|0.01|N|O|1997-01-24|1997-01-10|1997-02-14|DELIVER IN PERSON|MAIL|he carefully ironic accounts. deposits| +58794|345743|33262|1|31|55450.63|0.02|0.00|A|F|1992-01-18|1992-03-06|1992-02-06|COLLECT COD|AIR|hely regular deposits. even| +58795|381611|44119|1|4|6770.40|0.04|0.05|N|O|1995-06-27|1995-05-28|1995-07-27|COLLECT COD|AIR| ironic package| +58795|721638|9181|2|36|59745.60|0.09|0.08|R|F|1995-06-03|1995-06-19|1995-06-17|COLLECT COD|REG AIR|boost carefully. fluffily s| +58795|556906|44440|3|12|23554.56|0.01|0.05|A|F|1995-04-14|1995-05-22|1995-05-07|COLLECT COD|AIR|ickly slyly even warhorses. excuses wake| +58795|904210|16729|4|13|15784.21|0.02|0.00|R|F|1995-05-19|1995-05-14|1995-06-16|NONE|SHIP|ges haggle slyly against the ideas. careful| +58796|295347|45348|1|30|40269.90|0.09|0.01|A|F|1993-12-14|1993-12-22|1993-12-25|TAKE BACK RETURN|AIR|slyly accounts. ironic, fluffy packages| +58796|888658|1176|2|24|39518.64|0.01|0.06|A|F|1993-11-18|1993-12-05|1993-12-14|TAKE BACK RETURN|FOB|accounts. evenly pending deposit| +58796|661680|24194|3|24|39399.60|0.10|0.02|A|F|1994-02-12|1993-12-13|1994-03-12|TAKE BACK RETURN|SHIP|nto beans against the| +58797|714589|39618|1|8|12828.40|0.04|0.01|N|O|1997-01-21|1996-12-02|1997-02-16|NONE|REG AIR|kages run slyly warthogs| +58797|89522|39523|2|36|54414.72|0.08|0.04|N|O|1996-10-27|1996-12-15|1996-11-26|COLLECT COD|FOB|odolites nag idly after the iron| +58797|587363|12386|3|19|27556.46|0.09|0.01|N|O|1996-12-02|1996-12-21|1996-12-19|DELIVER IN PERSON|FOB| sly requests affix| +58797|807904|45453|4|18|32613.48|0.05|0.03|N|O|1997-01-13|1996-12-04|1997-02-05|COLLECT COD|MAIL|hely bold depths cajole f| +58797|432148|19673|5|36|38884.32|0.07|0.04|N|O|1996-12-19|1996-12-06|1996-12-31|TAKE BACK RETURN|RAIL|y furiously unusual dependencies| +58798|744116|44117|1|25|29002.00|0.05|0.01|R|F|1992-02-10|1992-02-18|1992-03-02|DELIVER IN PERSON|REG AIR|ometimes ironic accou| +58798|349086|24099|2|12|13620.84|0.02|0.00|A|F|1992-02-13|1992-02-09|1992-02-29|COLLECT COD|RAIL|lithely express platelets. quickly regula| +58798|78272|40774|3|7|8751.89|0.00|0.00|R|F|1992-03-06|1992-02-11|1992-03-30|DELIVER IN PERSON|MAIL|y unusual pa| +58798|510343|35364|4|49|66312.68|0.10|0.00|A|F|1992-04-17|1992-04-05|1992-05-14|DELIVER IN PERSON|TRUCK|ironic asymptot| +58798|330287|5300|5|26|34249.02|0.02|0.05|R|F|1992-02-12|1992-03-07|1992-02-28|NONE|FOB|eposits. furiously ev| +58798|121398|21399|6|41|58194.99|0.03|0.04|A|F|1992-01-15|1992-02-21|1992-01-30|DELIVER IN PERSON|RAIL|tes cajole silent deposits. | +58798|325857|13376|7|23|43305.32|0.04|0.02|A|F|1992-04-11|1992-04-09|1992-04-16|DELIVER IN PERSON|FOB|express dugouts. sly| +58799|677357|39871|1|33|44032.56|0.05|0.06|A|F|1992-06-06|1992-06-01|1992-06-29|TAKE BACK RETURN|FOB| the requests cajole slyly along the| +58799|330391|42898|2|18|25584.84|0.08|0.07|R|F|1992-05-26|1992-06-11|1992-06-13|COLLECT COD|AIR|he quickly regul| +58799|877299|14851|3|38|48497.50|0.03|0.08|R|F|1992-07-31|1992-07-10|1992-08-15|TAKE BACK RETURN|REG AIR| regular patterns. r| +58799|749392|36935|4|22|31709.92|0.07|0.06|A|F|1992-07-03|1992-05-17|1992-07-12|COLLECT COD|AIR|to beans. qui| +58799|20629|20630|5|3|4648.86|0.01|0.02|R|F|1992-06-27|1992-06-22|1992-07-07|DELIVER IN PERSON|RAIL|ess requests across the f| +58799|698039|23066|6|14|14518.00|0.01|0.07|R|F|1992-06-10|1992-06-02|1992-06-26|TAKE BACK RETURN|FOB|fluffily unusual acco| +58824|775559|38075|1|3|4903.56|0.09|0.08|R|F|1992-12-08|1992-09-20|1992-12-24|DELIVER IN PERSON|RAIL|equests. slyly express package| +58824|809589|9590|2|8|11988.32|0.08|0.06|R|F|1992-09-05|1992-10-11|1992-09-07|COLLECT COD|REG AIR|unts-- carefully| +58824|749322|24351|3|47|64450.63|0.07|0.07|A|F|1992-09-01|1992-10-02|1992-09-13|TAKE BACK RETURN|AIR|nod carefull| +58824|840107|15140|4|35|36647.10|0.07|0.03|R|F|1992-10-16|1992-09-24|1992-11-13|COLLECT COD|RAIL| furiously silent th| +58824|669613|44640|5|38|60138.04|0.07|0.00|A|F|1992-09-27|1992-10-14|1992-10-16|TAKE BACK RETURN|FOB|ut the pending, bold somas. slyly | +58825|732265|7294|1|4|5188.92|0.08|0.00|A|F|1992-09-16|1992-12-02|1992-10-06|NONE|TRUCK|y final platelets haggle slyl| +58826|918469|43506|1|43|63959.06|0.02|0.02|N|O|1995-09-03|1995-09-04|1995-09-19|TAKE BACK RETURN|RAIL|ironically bold de| +58827|662055|49595|1|19|19323.38|0.07|0.05|R|F|1993-07-26|1993-06-28|1993-08-09|DELIVER IN PERSON|FOB|. carefully| +58827|155741|30748|2|14|25154.36|0.08|0.05|A|F|1993-07-27|1993-05-13|1993-08-24|TAKE BACK RETURN|SHIP| deposits haggle. special| +58827|528158|3179|3|21|24908.73|0.08|0.01|A|F|1993-06-23|1993-06-18|1993-07-11|TAKE BACK RETURN|MAIL|lyly after the quickly unu| +58827|749957|37500|4|5|10034.60|0.01|0.01|A|F|1993-08-07|1993-07-10|1993-08-31|DELIVER IN PERSON|AIR|ular dolphins| +58828|745859|8374|1|1|1904.82|0.10|0.05|R|F|1993-10-15|1993-09-24|1993-10-30|NONE|FOB|ithely ironic instruc| +58828|636001|23538|2|6|5621.82|0.10|0.03|A|F|1993-12-04|1993-11-07|1993-12-16|NONE|TRUCK|ccounts around the blithely slow| +58829|488890|38891|1|7|13152.09|0.00|0.07|N|O|1996-04-16|1996-05-15|1996-04-18|COLLECT COD|RAIL|egular platelets. bold accounts s| +58829|767819|17820|2|22|41509.16|0.00|0.02|N|O|1996-05-06|1996-06-29|1996-05-26|COLLECT COD|MAIL|lithe deposits aro| +58829|730244|42759|3|14|17838.94|0.05|0.02|N|O|1996-04-28|1996-06-11|1996-05-08|COLLECT COD|REG AIR|ckages sleep ironically about | +58829|210820|48333|4|41|70963.21|0.07|0.00|N|O|1996-04-25|1996-07-01|1996-05-07|DELIVER IN PERSON|TRUCK|tes. ideas are quickl| +58829|241766|16775|5|30|51232.50|0.10|0.03|N|O|1996-05-25|1996-05-03|1996-06-08|TAKE BACK RETURN|MAIL|luffily final requests alongside of the re| +58830|448066|48067|1|38|38533.52|0.05|0.04|A|F|1993-06-04|1993-05-18|1993-06-28|NONE|TRUCK|regular, regular frets | +58830|631779|6804|2|48|82115.52|0.02|0.02|A|F|1993-06-11|1993-05-11|1993-06-13|NONE|REG AIR|ackages sleep.| +58831|482536|45046|1|15|22777.65|0.05|0.08|R|F|1993-11-15|1993-10-30|1993-12-05|DELIVER IN PERSON|RAIL| detect furiously unusual pac| +58831|969630|19631|2|45|76481.55|0.01|0.01|R|F|1993-11-26|1993-11-03|1993-12-07|TAKE BACK RETURN|AIR| regular pinto beans around the | +58831|570897|45920|3|14|27550.18|0.04|0.06|A|F|1993-08-26|1993-10-03|1993-09-20|TAKE BACK RETURN|MAIL|s wake silent, special deposit| +58831|53650|41154|4|15|24054.75|0.10|0.08|R|F|1993-10-31|1993-10-07|1993-11-20|NONE|REG AIR|ar package| +58831|684596|22136|5|15|23708.40|0.07|0.05|A|F|1993-09-18|1993-10-01|1993-09-19|DELIVER IN PERSON|AIR|ole furious| +58831|466|467|6|1|1366.46|0.01|0.01|R|F|1993-12-06|1993-11-03|1993-12-07|COLLECT COD|TRUCK|uests wake according to the fi| +58856|296746|34262|1|30|52281.90|0.00|0.08|A|F|1994-10-04|1994-10-17|1994-10-05|COLLECT COD|AIR|ding asymptotes. quickly ironic pla| +58856|400683|13192|2|42|66513.72|0.08|0.05|A|F|1994-07-20|1994-09-20|1994-08-10|TAKE BACK RETURN|MAIL|usly regular deposits among the final, u| +58856|274046|49057|3|1|1020.03|0.04|0.05|R|F|1994-08-03|1994-10-14|1994-08-07|COLLECT COD|REG AIR|detect blithely. unusual, | +58856|889060|26612|4|21|22029.42|0.03|0.08|R|F|1994-09-14|1994-10-10|1994-09-19|DELIVER IN PERSON|TRUCK|ial instructions. re| +58857|432888|7905|1|44|80117.84|0.02|0.00|R|F|1993-09-20|1993-08-09|1993-09-25|DELIVER IN PERSON|AIR|. final theodolites| +58857|545126|45127|2|24|28106.40|0.07|0.01|R|F|1993-06-12|1993-08-12|1993-07-04|NONE|TRUCK|carefully regular accounts use quickly thi| +58857|925556|593|3|12|18978.12|0.03|0.00|R|F|1993-08-28|1993-08-14|1993-09-14|NONE|FOB|to beans cajole furiously ironic dol| +58857|814047|14048|4|3|2883.00|0.05|0.01|A|F|1993-07-02|1993-08-13|1993-07-11|NONE|RAIL| affix slyly ironic ideas. warhorses shoul| +58857|674356|36870|5|19|25276.08|0.06|0.02|A|F|1993-10-04|1993-08-27|1993-10-29|TAKE BACK RETURN|MAIL|slyly final packages cajole furiousl| +58857|884957|9992|6|10|19419.10|0.06|0.00|A|F|1993-07-15|1993-08-18|1993-08-05|COLLECT COD|RAIL| according to the| +58857|461563|49091|7|41|62506.14|0.07|0.08|R|F|1993-06-23|1993-08-24|1993-07-14|NONE|MAIL|y instructions. blithely regular | +58858|485995|11014|1|40|79238.80|0.02|0.03|N|O|1996-12-25|1996-12-17|1996-12-30|NONE|MAIL| ironic, ironic foxes sleep| +58858|113856|1363|2|14|26177.90|0.08|0.04|N|O|1996-12-12|1997-01-24|1996-12-30|TAKE BACK RETURN|TRUCK|ideas are slyly among the accoun| +58859|546739|34270|1|18|32142.78|0.02|0.07|R|F|1993-11-03|1993-12-07|1993-11-12|NONE|FOB|unts sleep among the r| +58859|33501|8502|2|24|34428.00|0.05|0.03|A|F|1993-11-22|1993-11-22|1993-12-07|COLLECT COD|FOB| regular acco| +58859|41629|41630|3|3|4711.86|0.07|0.08|R|F|1993-12-22|1993-11-04|1994-01-18|COLLECT COD|TRUCK|egrate around the unusual instructi| +58860|45611|20612|1|15|23349.15|0.08|0.03|N|O|1996-08-05|1996-08-02|1996-09-02|TAKE BACK RETURN|SHIP|eas use. final, silent accounts are| +58861|346427|8934|1|32|47149.12|0.08|0.01|A|F|1993-03-10|1993-04-15|1993-04-07|TAKE BACK RETURN|MAIL|. furiously special theodolites nag fluffi| +58861|396160|46161|2|1|1256.15|0.08|0.06|R|F|1993-03-07|1993-03-29|1993-04-04|COLLECT COD|TRUCK|urts. furiously iron| +58861|258721|46237|3|35|58789.85|0.09|0.00|R|F|1993-02-28|1993-04-08|1993-03-16|TAKE BACK RETURN|FOB|raids haggle fur| +58861|314944|14945|4|5|9794.65|0.03|0.07|A|F|1993-04-30|1993-03-06|1993-05-08|NONE|RAIL| ironic foxes.| +58861|254474|41990|5|40|57138.40|0.07|0.07|A|F|1993-02-14|1993-03-15|1993-03-12|TAKE BACK RETURN|MAIL| ironic idea| +58861|933205|45724|6|26|32192.16|0.05|0.01|A|F|1993-06-01|1993-04-16|1993-06-12|DELIVER IN PERSON|RAIL|accounts. blithely ironic request| +58861|364752|2274|7|18|32701.32|0.03|0.06|A|F|1993-05-10|1993-04-27|1993-06-07|DELIVER IN PERSON|REG AIR|ual deposits. pinto beans use sl| +58862|383615|8630|1|35|59451.00|0.06|0.04|R|F|1994-03-05|1994-03-02|1994-04-04|NONE|RAIL|ly regular requests wake fluffily | +58862|407372|7373|2|41|52453.35|0.05|0.04|A|F|1994-04-17|1994-02-01|1994-05-17|TAKE BACK RETURN|TRUCK|n deposits nag according to the ironic, | +58862|691600|4114|3|13|20690.41|0.09|0.05|R|F|1994-01-13|1994-01-26|1994-02-05|COLLECT COD|TRUCK|leep across the fluffily ironic court| +58862|706446|18961|4|38|55191.58|0.10|0.04|R|F|1994-02-03|1994-02-20|1994-02-24|DELIVER IN PERSON|REG AIR|ly regular deposits breach! fi| +58863|580468|42980|1|7|10839.08|0.09|0.08|N|O|1996-02-05|1996-04-13|1996-02-12|DELIVER IN PERSON|FOB|ckages play carefully outside the | +58888|676390|13930|1|28|38258.08|0.03|0.07|N|O|1996-08-23|1996-07-23|1996-08-31|TAKE BACK RETURN|AIR|. dogged accounts at the slyly | +58888|77151|14655|2|8|9025.20|0.09|0.05|N|O|1996-08-03|1996-07-18|1996-08-15|NONE|TRUCK|ly regular re| +58889|903817|28854|1|19|34594.63|0.10|0.06|N|O|1997-10-21|1997-10-06|1997-11-09|TAKE BACK RETURN|RAIL|usly ironic accou| +58889|443856|43857|2|45|80992.35|0.02|0.03|N|O|1997-11-01|1997-08-21|1997-11-05|TAKE BACK RETURN|FOB|nal requests cajol| +58889|883021|33022|3|10|10039.80|0.02|0.07|N|O|1997-09-20|1997-09-27|1997-10-08|TAKE BACK RETURN|REG AIR|eat. blithely regular packages nag slyl| +58889|931706|31707|4|40|69506.40|0.00|0.02|N|O|1997-08-04|1997-09-01|1997-08-26|NONE|RAIL| excuses nag above the carefully ironic acc| +58889|167232|42239|5|47|61063.81|0.01|0.07|N|O|1997-07-30|1997-09-02|1997-08-06|TAKE BACK RETURN|REG AIR|er the fluffily express ac| +58890|862313|24831|1|6|7651.62|0.08|0.02|R|F|1994-07-14|1994-07-03|1994-08-01|DELIVER IN PERSON|FOB| regular foxes. pending packages affix fu| +58890|890192|15227|2|48|56743.20|0.09|0.07|R|F|1994-07-31|1994-07-08|1994-08-11|NONE|AIR|nic, regular foxes. furiously ironic foxes| +58890|454137|29156|3|16|17457.76|0.10|0.01|R|F|1994-08-21|1994-07-09|1994-09-06|COLLECT COD|RAIL|e. carefully even a| +58890|676490|26491|4|50|73323.00|0.00|0.00|R|F|1994-07-08|1994-07-22|1994-07-30|TAKE BACK RETURN|RAIL|eposits nag slyly around the furiousl| +58890|755774|43320|5|21|38424.54|0.01|0.07|R|F|1994-09-16|1994-08-24|1994-09-25|TAKE BACK RETURN|MAIL|ins across the carefully regular idea| +58890|289018|1524|6|23|23161.00|0.07|0.03|A|F|1994-09-24|1994-07-30|1994-10-14|TAKE BACK RETURN|MAIL|sily according to the special warthogs.| +58890|516161|3692|7|4|4708.56|0.08|0.01|A|F|1994-08-06|1994-07-25|1994-08-08|COLLECT COD|TRUCK|beans cajole above the| +58891|105705|30710|1|6|10264.20|0.07|0.04|N|O|1998-05-23|1998-06-15|1998-05-27|NONE|TRUCK|slyly special in| +58891|574005|24006|2|31|33448.38|0.04|0.02|N|O|1998-04-10|1998-06-12|1998-04-28|TAKE BACK RETURN|RAIL| of the blithely even plat| +58891|286439|23955|3|23|32784.66|0.07|0.03|N|O|1998-05-24|1998-06-26|1998-06-07|DELIVER IN PERSON|AIR|e carefull| +58891|174237|36741|4|12|15734.76|0.02|0.06|N|O|1998-05-18|1998-06-01|1998-05-31|NONE|RAIL|s. ironic pac| +58891|384924|22446|5|9|18080.19|0.08|0.00|N|O|1998-07-15|1998-06-06|1998-07-23|DELIVER IN PERSON|AIR|aggle bravely along the dogged fo| +58891|414034|1559|6|17|16116.17|0.00|0.03|N|O|1998-05-17|1998-06-30|1998-06-11|COLLECT COD|AIR|ording to the blithely express in| +58892|843318|5835|1|35|44144.45|0.03|0.02|A|F|1993-03-07|1993-05-03|1993-04-05|DELIVER IN PERSON|TRUCK|s! fluffily regular platelets outside| +58892|643386|43387|2|5|6646.75|0.10|0.04|A|F|1993-05-25|1993-04-15|1993-05-27|DELIVER IN PERSON|AIR|accounts. deposits doze b| +58892|387339|12354|3|11|15689.52|0.07|0.02|R|F|1993-05-04|1993-04-06|1993-05-29|TAKE BACK RETURN|MAIL|oost carefully across the express instructi| +58892|992295|29853|4|15|20808.75|0.05|0.08|A|F|1993-03-24|1993-05-24|1993-03-30|NONE|SHIP|press foxes boost against the fur| +58892|502062|2063|5|4|4256.16|0.10|0.05|R|F|1993-04-30|1993-04-15|1993-05-30|NONE|FOB|accounts? special theodolites| +58893|885847|10882|1|29|53151.20|0.03|0.05|R|F|1993-04-30|1993-05-26|1993-05-20|NONE|SHIP| regular deposit| +58893|428039|15564|2|49|47383.49|0.08|0.02|R|F|1993-04-26|1993-05-27|1993-05-16|TAKE BACK RETURN|SHIP|old theodolites. theodolites h| +58893|39790|14791|3|49|84759.71|0.08|0.00|R|F|1993-05-05|1993-05-21|1993-05-16|COLLECT COD|FOB| ironic requests wake quickly besi| +58893|749965|24994|4|34|68507.62|0.06|0.03|R|F|1993-05-16|1993-05-23|1993-06-13|COLLECT COD|AIR|quietly even warhorses nag| +58893|645670|20695|5|17|27465.88|0.10|0.05|R|F|1993-05-24|1993-06-07|1993-06-21|TAKE BACK RETURN|FOB|warthogs cajole permanent| +58893|763729|38760|6|41|73500.29|0.10|0.03|A|F|1993-07-09|1993-05-08|1993-07-17|TAKE BACK RETURN|MAIL|heodolites sleep evenly silent req| +58894|798101|10617|1|2|2398.14|0.10|0.06|N|O|1997-09-03|1997-10-06|1997-09-18|COLLECT COD|REG AIR|fully regular pinto beans ma| +58894|679037|16577|2|45|45720.00|0.05|0.05|N|O|1997-11-02|1997-09-06|1997-11-09|TAKE BACK RETURN|REG AIR|ajole furiously. quickly | +58894|573770|11304|3|27|49781.25|0.05|0.07|N|O|1997-11-08|1997-09-20|1997-11-20|DELIVER IN PERSON|RAIL|es. blithely ironi| +58894|344109|44110|4|50|57654.50|0.04|0.06|N|O|1997-08-19|1997-09-29|1997-09-14|DELIVER IN PERSON|SHIP|its. furiously silent requests aff| +58894|433442|33443|5|47|64644.74|0.08|0.06|N|O|1997-07-27|1997-09-24|1997-08-15|DELIVER IN PERSON|TRUCK|nt instructions across the alwa| +58894|849607|24640|6|6|9339.36|0.07|0.05|N|O|1997-09-04|1997-09-26|1997-09-05|NONE|TRUCK|rding to the never final package| +58895|24207|36708|1|39|44116.80|0.02|0.07|N|O|1996-02-26|1996-01-15|1996-03-20|DELIVER IN PERSON|SHIP|ly special | +58895|846144|33693|2|13|14171.30|0.08|0.06|N|O|1995-12-02|1996-01-06|1996-01-01|NONE|AIR|usly careful excuses haggle. regular | +58920|317231|17232|1|48|59914.56|0.06|0.05|N|O|1998-02-14|1998-02-15|1998-03-12|DELIVER IN PERSON|MAIL|sleep furiously unusual, bold sheaves. f| +58921|319674|19675|1|9|15242.94|0.03|0.08|R|F|1992-09-18|1992-09-28|1992-09-24|NONE|RAIL|ckages above the slyly regular requ| +58921|758849|8850|2|19|36248.39|0.03|0.08|A|F|1992-09-30|1992-08-11|1992-10-10|COLLECT COD|REG AIR|grate blithely bl| +58922|663421|961|1|6|8306.34|0.02|0.08|N|O|1997-11-01|1997-11-14|1997-11-23|NONE|MAIL|tealthy deposits. | +58922|101575|26580|2|35|55179.95|0.04|0.00|N|O|1997-11-30|1997-10-23|1997-12-07|DELIVER IN PERSON|MAIL|counts. blithely unusu| +58922|170779|45786|3|45|83239.65|0.06|0.00|N|O|1997-11-17|1997-11-03|1997-12-17|COLLECT COD|RAIL|ular deposits haggle slyly express re| +58922|281098|31099|4|45|48558.60|0.00|0.08|N|O|1997-10-20|1997-11-13|1997-10-29|TAKE BACK RETURN|RAIL|fully ironic deposits cajole a| +58922|405703|30720|5|48|77216.64|0.10|0.07|N|O|1997-10-16|1997-11-19|1997-11-03|DELIVER IN PERSON|MAIL|quests sublate according to the slyly regul| +58922|639544|27081|6|40|59340.40|0.02|0.02|N|O|1997-12-18|1997-12-11|1998-01-09|DELIVER IN PERSON|AIR|lyly at the blithely ironic account| +58923|68442|5946|1|30|42313.20|0.06|0.01|N|O|1997-05-07|1997-07-31|1997-05-31|NONE|MAIL|ng the pending instructions. slyly re| +58923|302528|27541|2|40|61220.40|0.02|0.07|N|O|1997-07-21|1997-06-29|1997-07-24|TAKE BACK RETURN|REG AIR|e never express | +58923|586611|24145|3|32|54322.88|0.04|0.00|N|O|1997-06-14|1997-06-03|1997-06-29|DELIVER IN PERSON|FOB|nding packag| +58924|146005|33512|1|45|47295.00|0.06|0.07|R|F|1993-10-05|1993-10-26|1993-10-27|DELIVER IN PERSON|FOB|ously ironic packages. s| +58925|712112|12113|1|13|14613.04|0.10|0.06|N|O|1996-04-15|1996-02-24|1996-04-26|DELIVER IN PERSON|RAIL|old ideas. req| +58925|449786|24803|2|36|62487.36|0.06|0.03|N|O|1996-01-29|1996-01-22|1996-02-09|TAKE BACK RETURN|SHIP|g fluffily above the | +58925|546277|21298|3|42|55576.50|0.04|0.07|N|O|1996-03-27|1996-02-21|1996-04-14|DELIVER IN PERSON|TRUCK|requests cajole carefully. s| +58925|271879|9395|4|43|79586.98|0.07|0.04|N|O|1996-01-13|1996-02-24|1996-02-03|NONE|FOB|ets wake quickly | +58926|639179|39180|1|35|39134.90|0.04|0.02|N|O|1997-02-22|1997-02-05|1997-03-13|COLLECT COD|RAIL|ithely. slyly express asymptot| +58926|676006|13546|2|12|11783.64|0.08|0.04|N|O|1997-02-24|1997-01-14|1997-03-03|DELIVER IN PERSON|FOB|carefully special atta| +58926|629506|29507|3|33|47370.51|0.00|0.03|N|O|1997-01-26|1997-01-17|1997-01-28|COLLECT COD|AIR|packages unwind q| +58926|104371|29376|4|45|61891.65|0.08|0.06|N|O|1997-01-02|1997-01-18|1997-01-20|NONE|MAIL|y regular dependencies. fluff| +58927|803050|3051|1|40|38120.40|0.01|0.06|N|O|1997-07-14|1997-08-09|1997-07-27|DELIVER IN PERSON|FOB|deposits. idea| +58927|855373|5374|2|45|59774.85|0.02|0.08|N|O|1997-08-01|1997-07-31|1997-08-16|TAKE BACK RETURN|TRUCK| about the carefully sp| +58927|250970|13476|3|2|3841.92|0.00|0.05|N|O|1997-08-21|1997-06-27|1997-09-12|TAKE BACK RETURN|RAIL|bove the slyly regular ins| +58927|49223|49224|4|9|10549.98|0.02|0.04|N|O|1997-08-11|1997-07-10|1997-08-17|DELIVER IN PERSON|FOB|across the final sauterne| +58952|280129|5140|1|35|38818.85|0.01|0.04|N|O|1996-11-16|1996-11-08|1996-11-20|COLLECT COD|TRUCK|jole slyly alongsid| +58952|113065|38070|2|29|31263.74|0.07|0.08|N|O|1996-10-08|1996-10-08|1996-10-25|DELIVER IN PERSON|MAIL|ully across the pending, dogged noto| +58953|474572|37082|1|16|24744.80|0.02|0.06|A|F|1993-05-07|1993-05-02|1993-05-20|NONE|AIR|eans are slyly daringly i| +58953|130451|5456|2|43|63702.35|0.06|0.03|A|F|1993-05-24|1993-05-04|1993-06-03|DELIVER IN PERSON|FOB| asymptote| +58953|489744|39745|3|19|32940.68|0.01|0.08|R|F|1993-06-07|1993-05-10|1993-07-06|DELIVER IN PERSON|TRUCK|atelets engage quickly. blithely iron| +58953|124895|49900|4|6|11519.34|0.00|0.01|R|F|1993-06-24|1993-05-17|1993-07-16|TAKE BACK RETURN|REG AIR|elets. express foxes are| +58953|94166|31670|5|43|49886.88|0.00|0.07|A|F|1993-04-04|1993-05-13|1993-04-29|TAKE BACK RETURN|MAIL|n pinto beans. quickly p| +58953|638515|26052|6|48|69767.04|0.08|0.08|R|F|1993-03-31|1993-04-22|1993-04-08|NONE|RAIL|low packages haggle blithely. caref| +58954|680364|30365|1|46|61839.18|0.02|0.08|R|F|1992-09-12|1992-08-29|1992-09-21|COLLECT COD|FOB|ven packages sleep against the fluffily ir| +58955|834720|47237|1|41|67841.88|0.07|0.00|N|O|1998-06-30|1998-04-25|1998-07-12|COLLECT COD|REG AIR|lithely. furiously idle requests are| +58955|130378|42881|2|40|56334.80|0.09|0.06|N|O|1998-05-28|1998-06-05|1998-06-11|TAKE BACK RETURN|SHIP|ress requests shall | +58955|256121|43637|3|6|6462.66|0.02|0.03|N|O|1998-03-23|1998-05-07|1998-04-06|COLLECT COD|TRUCK|ickly expres| +58955|612576|37601|4|12|17862.48|0.06|0.05|N|O|1998-05-01|1998-05-12|1998-05-08|NONE|FOB|ly silent t| +58956|457578|45106|1|22|33782.10|0.07|0.08|N|O|1995-10-14|1995-10-19|1995-10-17|NONE|AIR|ular packages thrash sl| +58956|500508|25529|2|30|45254.40|0.07|0.00|N|O|1995-11-08|1995-10-31|1995-11-23|DELIVER IN PERSON|TRUCK|requests. pend| +58956|25104|12605|3|17|17494.70|0.02|0.04|N|O|1995-09-30|1995-10-19|1995-10-23|DELIVER IN PERSON|AIR|blithely fina| +58956|916100|41137|4|46|51338.76|0.04|0.00|N|O|1995-11-06|1995-11-16|1995-11-10|NONE|AIR|old requests at the p| +58956|887558|37559|5|6|9273.06|0.08|0.04|N|O|1995-12-29|1995-11-01|1996-01-13|TAKE BACK RETURN|SHIP|st furiously about the blithely sp| +58957|753004|40550|1|24|25367.28|0.00|0.08|N|O|1996-01-14|1995-12-16|1996-02-10|DELIVER IN PERSON|REG AIR|t the furiousl| +58957|736028|36029|2|39|41495.61|0.07|0.03|N|O|1996-01-30|1995-12-22|1996-02-08|DELIVER IN PERSON|SHIP| even package| +58957|419358|6883|3|26|33210.58|0.02|0.08|N|O|1995-12-13|1996-01-20|1995-12-18|COLLECT COD|REG AIR|to beans affix slyly according to the furio| +58957|149302|11805|4|48|64862.40|0.00|0.02|N|O|1996-02-27|1996-01-01|1996-02-28|NONE|RAIL|osits? carefully unusual epitaphs boost | +58958|516731|41752|1|2|3495.42|0.02|0.05|A|F|1992-06-19|1992-04-29|1992-07-07|COLLECT COD|SHIP| theodolites cajole blithely even ac| +58958|691270|41271|2|24|30269.76|0.03|0.07|R|F|1992-03-29|1992-04-11|1992-04-16|NONE|REG AIR|ly unusual pac| +58959|879064|29065|1|40|41720.80|0.07|0.08|N|O|1995-11-01|1995-10-29|1995-11-29|TAKE BACK RETURN|MAIL|o the expre| +58959|413515|26024|2|26|37140.74|0.02|0.01|N|O|1995-09-01|1995-09-28|1995-09-09|NONE|RAIL|dolites doze al| +58959|936734|49253|3|49|86763.81|0.03|0.01|N|O|1995-10-30|1995-10-12|1995-11-06|COLLECT COD|FOB|quickly pending foxes| +58959|683043|20583|4|8|8208.08|0.00|0.04|N|O|1995-09-25|1995-11-13|1995-10-05|TAKE BACK RETURN|RAIL| boost blithely to the furiously final war| +58959|899759|12277|5|30|52761.30|0.06|0.03|N|O|1995-10-30|1995-11-21|1995-11-12|DELIVER IN PERSON|RAIL|iously about the slyly express ideas. pac| +58959|247410|34923|6|47|63797.80|0.09|0.01|N|O|1995-11-03|1995-11-11|1995-11-05|NONE|RAIL|luffily according to the | +58959|215385|15386|7|38|49414.06|0.08|0.07|N|O|1995-10-03|1995-11-10|1995-10-06|COLLECT COD|SHIP|ke blithely| +58984|970222|32742|1|43|55563.74|0.04|0.07|N|O|1996-10-17|1996-09-06|1996-11-01|COLLECT COD|AIR| blithely bold | +58984|520294|20295|2|41|53885.07|0.00|0.07|N|O|1996-09-27|1996-08-01|1996-10-22|DELIVER IN PERSON|FOB|. carefully close deposits wak| +58984|571431|8965|3|25|37560.25|0.06|0.02|N|O|1996-07-28|1996-08-04|1996-08-14|TAKE BACK RETURN|MAIL|orges. furiously regular instructions sle| +58985|621760|46785|1|38|63905.74|0.03|0.08|N|O|1997-03-08|1997-03-24|1997-03-10|COLLECT COD|RAIL|ickly regular braids. regular f| +58985|907201|7202|2|5|6040.80|0.00|0.05|N|O|1997-05-27|1997-04-29|1997-06-16|TAKE BACK RETURN|TRUCK|er. final dependencies wake foxes| +58985|313722|13723|3|41|71164.11|0.00|0.07|N|O|1997-03-27|1997-04-05|1997-04-02|NONE|REG AIR|c instructions. furiously bold the| +58985|722910|35425|4|50|96644.00|0.05|0.00|N|O|1997-03-28|1997-04-25|1997-04-01|COLLECT COD|REG AIR| requests. busily special platelets us| +58985|935932|48451|5|35|68876.15|0.01|0.04|N|O|1997-06-08|1997-05-12|1997-07-01|COLLECT COD|REG AIR|bout the regular epitaphs haggle busy r| +58986|893788|43789|1|30|53452.20|0.09|0.06|N|O|1997-08-17|1997-08-13|1997-08-29|TAKE BACK RETURN|FOB| express requests hang carefully ag| +58986|884493|34494|2|42|62052.90|0.03|0.04|N|O|1997-07-07|1997-08-27|1997-08-05|DELIVER IN PERSON|FOB|onic packages do| +58986|660027|22541|3|15|14804.85|0.10|0.08|N|O|1997-08-15|1997-08-10|1997-09-10|NONE|MAIL| ideas cajole furious| +58987|838662|13695|1|21|33613.02|0.01|0.00|N|O|1998-01-26|1998-01-19|1998-01-29|TAKE BACK RETURN|RAIL|inal, ironic accounts. slyly | +58987|376242|13764|2|21|27682.83|0.10|0.00|N|O|1998-02-19|1998-01-09|1998-03-10|COLLECT COD|MAIL|ncies doubt furiously alongside of th| +58987|497742|47743|3|31|53931.32|0.07|0.02|N|O|1998-03-12|1998-01-21|1998-04-01|DELIVER IN PERSON|TRUCK|counts haggle bli| +58987|548398|23419|4|40|57854.80|0.04|0.03|N|O|1998-03-02|1998-03-04|1998-03-25|NONE|REG AIR|es. carefully ev| +58987|918119|43156|5|7|7959.49|0.06|0.05|N|O|1998-02-25|1998-02-06|1998-03-21|COLLECT COD|MAIL| packages serve across the unusu| +58987|816231|41264|6|35|40151.65|0.05|0.05|N|O|1998-03-28|1998-02-04|1998-04-03|DELIVER IN PERSON|MAIL|ns boost according to the ironic, bo| +58987|385553|23075|7|17|27855.18|0.07|0.06|N|O|1997-12-10|1998-03-03|1997-12-12|COLLECT COD|TRUCK|ic, bold accounts boost pinto | +58988|977027|14585|1|5|5519.90|0.08|0.04|R|F|1992-09-18|1992-09-12|1992-09-19|COLLECT COD|SHIP|y around the carefully sl| +58989|446526|34051|1|4|5890.00|0.00|0.05|R|F|1995-02-10|1995-01-24|1995-02-19|TAKE BACK RETURN|MAIL|eas. quickly ruthless a| +58989|752011|27042|2|17|18070.66|0.00|0.08|R|F|1994-12-26|1995-03-06|1995-01-11|COLLECT COD|RAIL|slyly silent requests grow. expre| +58990|168315|30819|1|19|26282.89|0.04|0.01|A|F|1994-01-27|1994-04-09|1994-01-29|NONE|SHIP|ly around the quickly express deposits. per| +58990|855773|5774|2|18|31117.14|0.09|0.07|A|F|1994-01-19|1994-03-08|1994-02-15|COLLECT COD|AIR|lithely. final excuses impress furiou| +58991|315980|28487|1|49|97802.53|0.04|0.00|A|F|1994-10-30|1994-09-12|1994-11-21|COLLECT COD|TRUCK|en accounts. carefully r| +58991|673616|11156|2|41|65172.78|0.01|0.07|R|F|1994-09-25|1994-08-24|1994-10-20|NONE|REG AIR|d ideas sleep silent, regular th| +58991|456737|19247|3|14|23711.94|0.01|0.02|R|F|1994-09-18|1994-09-05|1994-09-19|COLLECT COD|RAIL|rave requests. carefully| +58991|374756|12278|4|32|58583.68|0.02|0.05|R|F|1994-08-27|1994-09-28|1994-09-04|NONE|TRUCK|regular dolphins snooze qu| +58991|523587|36098|5|5|8052.80|0.06|0.06|R|F|1994-09-06|1994-10-11|1994-09-16|NONE|AIR|lent instructions affix even, thin depths.| +59016|861710|49262|1|46|76896.82|0.03|0.04|R|F|1992-03-29|1992-05-11|1992-04-02|DELIVER IN PERSON|MAIL|gular deposits boost furi| +59016|746255|8770|2|39|50747.58|0.09|0.02|A|F|1992-05-19|1992-05-16|1992-06-06|NONE|AIR|ructions against the even depen| +59016|301556|14063|3|24|37380.96|0.10|0.00|A|F|1992-04-05|1992-05-25|1992-04-14|TAKE BACK RETURN|TRUCK|instructions affix fur| +59016|239470|14479|4|17|23960.82|0.09|0.02|R|F|1992-06-03|1992-06-06|1992-06-23|TAKE BACK RETURN|FOB|refully above the d| +59016|770835|20836|5|25|47645.00|0.05|0.06|A|F|1992-06-20|1992-05-21|1992-06-25|NONE|SHIP|, blithe excus| +59016|418962|43979|6|19|35737.86|0.08|0.06|A|F|1992-04-16|1992-04-28|1992-05-01|TAKE BACK RETURN|FOB|ickly ironic requests slee| +59017|496603|34131|1|31|49586.98|0.03|0.05|N|O|1997-11-21|1997-10-10|1997-12-19|NONE|REG AIR|posits hang blithely quic| +59017|400583|25600|2|34|50441.04|0.09|0.03|N|O|1997-10-09|1997-10-14|1997-10-24|TAKE BACK RETURN|RAIL|longside of the requests. perman| +59018|135705|35706|1|1|1740.70|0.01|0.04|N|O|1996-11-08|1996-11-18|1996-11-22|TAKE BACK RETURN|TRUCK|ng dependencies. regular, regular foxes | +59018|788588|1104|2|36|60355.80|0.07|0.05|N|O|1996-10-03|1996-10-29|1996-10-07|COLLECT COD|FOB|! slyly regular asy| +59019|712175|24690|1|4|4748.56|0.00|0.06|A|F|1994-12-26|1995-01-22|1995-01-24|TAKE BACK RETURN|TRUCK| the carefully special accounts| +59019|519776|32287|2|9|16161.75|0.07|0.00|A|F|1995-03-19|1995-02-18|1995-04-14|COLLECT COD|FOB|posits. even requests use slyly caref| +59020|390930|28452|1|20|40418.40|0.01|0.05|N|O|1998-05-19|1998-05-02|1998-05-31|NONE|RAIL|ss instructions haggle. quick| +59020|344638|19651|2|46|77400.52|0.08|0.04|N|O|1998-07-23|1998-05-22|1998-08-20|NONE|TRUCK|tions. slyly final accounts snooze accord| +59020|316927|4446|3|6|11663.46|0.01|0.06|N|O|1998-07-20|1998-06-10|1998-08-02|DELIVER IN PERSON|FOB|sely about the requests. furiously ironi| +59020|578332|15866|4|17|23975.27|0.10|0.00|N|O|1998-05-08|1998-06-12|1998-05-20|COLLECT COD|TRUCK|rash about the quickly special foxes. unu| +59020|23651|48652|5|36|56687.40|0.05|0.05|N|O|1998-05-23|1998-06-06|1998-06-02|DELIVER IN PERSON|AIR|ily even packages. | +59020|488100|38101|6|32|34818.56|0.00|0.04|N|O|1998-05-02|1998-05-24|1998-05-19|TAKE BACK RETURN|SHIP|iously regular ideas. qu| +59021|363713|26221|1|28|49747.60|0.00|0.00|N|O|1996-06-19|1996-04-20|1996-07-07|NONE|TRUCK| instructions| +59021|916270|3825|2|11|14148.53|0.06|0.05|N|O|1996-03-25|1996-04-06|1996-04-23|COLLECT COD|SHIP|rthogs affix furiously caref| +59021|742602|42603|3|26|42758.82|0.09|0.01|N|O|1996-06-24|1996-03-30|1996-07-03|TAKE BACK RETURN|MAIL|ar accounts haggle about the finally | +59021|908416|33453|4|12|17092.44|0.00|0.08|N|O|1996-06-09|1996-03-29|1996-07-09|NONE|TRUCK|deposits. ca| +59022|292613|5119|1|1|1605.60|0.05|0.01|R|F|1993-12-07|1993-10-28|1994-01-04|NONE|FOB|ly express | +59022|931208|18763|2|4|4956.64|0.02|0.07|A|F|1993-09-25|1993-12-06|1993-10-12|NONE|MAIL|ic requests. final acc| +59022|801329|26362|3|38|46750.64|0.00|0.02|R|F|1993-09-25|1993-11-02|1993-10-23|TAKE BACK RETURN|SHIP|nto beans atop the quickly eve| +59022|921474|9029|4|33|49349.19|0.06|0.04|A|F|1993-10-03|1993-11-10|1993-10-12|NONE|MAIL|regular, final sheaves: slyly final th| +59022|205112|5113|5|36|36615.60|0.00|0.05|A|F|1993-10-03|1993-11-13|1993-10-11|DELIVER IN PERSON|REG AIR|egular dinos are ideas. ca| +59023|659422|34449|1|24|33153.36|0.05|0.07|N|O|1998-01-06|1998-01-13|1998-02-05|NONE|AIR|nag theodolites. r| +59023|898523|36075|2|5|7607.40|0.06|0.06|N|O|1997-12-12|1997-12-20|1997-12-16|DELIVER IN PERSON|AIR| furiously ironic foxes kindle carefully| +59023|463054|25564|3|9|9153.27|0.05|0.02|N|O|1998-01-21|1997-12-26|1998-01-25|DELIVER IN PERSON|SHIP|s solve fur| +59023|547556|22577|4|31|49709.43|0.01|0.02|N|O|1997-12-17|1998-01-26|1997-12-24|NONE|REG AIR|, bold req| +59048|851296|38848|1|35|43653.75|0.07|0.07|N|O|1995-09-19|1995-08-21|1995-10-12|DELIVER IN PERSON|SHIP|furiously regular theo| +59048|731554|44069|2|5|7927.60|0.08|0.03|N|O|1995-07-05|1995-09-23|1995-07-20|TAKE BACK RETURN|AIR|ular packages. blithely | +59048|211683|49196|3|42|66976.14|0.03|0.06|N|O|1995-10-14|1995-09-25|1995-10-23|TAKE BACK RETURN|FOB| furiously silent ideas across the q| +59048|748771|11286|4|17|30935.58|0.07|0.01|N|O|1995-09-09|1995-08-27|1995-09-17|COLLECT COD|MAIL|promise carefully abov| +59048|587789|37790|5|2|3753.52|0.10|0.05|N|O|1995-08-06|1995-09-02|1995-08-10|COLLECT COD|SHIP|requests use blithely. packag| +59048|959546|22066|6|39|62614.50|0.08|0.05|N|O|1995-08-20|1995-08-29|1995-09-08|COLLECT COD|SHIP|pinto beans. quickly ironic packages wake | +59049|179650|29651|1|30|51889.50|0.05|0.05|A|F|1994-08-24|1994-09-25|1994-09-02|DELIVER IN PERSON|RAIL|tions cajole slyly among the| +59049|369731|19732|2|24|43217.28|0.07|0.07|R|F|1994-10-20|1994-10-03|1994-10-25|TAKE BACK RETURN|REG AIR|kly silent req| +59049|52456|39960|3|42|59154.90|0.05|0.04|R|F|1994-07-29|1994-09-28|1994-08-23|COLLECT COD|SHIP|fily final accounts accor| +59049|626042|1067|4|39|37752.39|0.04|0.05|A|F|1994-07-30|1994-09-17|1994-08-12|TAKE BACK RETURN|TRUCK|latelets nod blit| +59050|273394|35900|1|40|54695.20|0.05|0.04|N|O|1995-10-01|1995-07-23|1995-10-11|COLLECT COD|TRUCK|blithely. slyly e| +59050|922243|9798|2|41|51873.20|0.09|0.05|N|O|1995-09-20|1995-08-19|1995-09-23|NONE|FOB| carefully ironic packages haggle c| +59050|125156|25157|3|11|12992.65|0.05|0.05|N|O|1995-09-11|1995-08-20|1995-10-10|DELIVER IN PERSON|RAIL|ely across the pending,| +59050|492085|29613|4|1|1077.06|0.00|0.05|N|O|1995-09-24|1995-07-19|1995-10-11|DELIVER IN PERSON|RAIL|bove the ironic, fluffy requ| +59050|457033|19543|5|39|38610.39|0.10|0.02|N|O|1995-08-13|1995-09-08|1995-09-06|COLLECT COD|TRUCK|nt, ironic dep| +59050|349956|24969|6|19|38112.86|0.02|0.00|N|O|1995-08-20|1995-09-07|1995-09-18|NONE|MAIL| after the bold packages haggl| +59050|700896|25925|7|10|18968.60|0.01|0.05|N|O|1995-07-19|1995-08-14|1995-08-16|COLLECT COD|REG AIR|ts. bravely final ideas sublate b| +59051|951416|38974|1|22|32282.14|0.09|0.08|N|O|1997-08-12|1997-06-24|1997-08-25|TAKE BACK RETURN|MAIL|e ideas. rea| +59051|446564|34089|2|1|1510.54|0.09|0.08|N|O|1997-05-20|1997-07-15|1997-06-14|DELIVER IN PERSON|REG AIR|s will snooze carefully above the | +59051|396231|8739|3|46|61052.12|0.08|0.06|N|O|1997-08-08|1997-07-13|1997-08-16|TAKE BACK RETURN|MAIL|ely regular deposits sleep above the fluf| +59051|444126|6635|4|37|39593.70|0.04|0.01|N|O|1997-05-22|1997-07-21|1997-06-05|NONE|FOB|the furiously unusual packages ha| +59052|888832|13867|1|6|10924.74|0.00|0.06|A|F|1995-05-25|1995-04-30|1995-06-05|NONE|REG AIR|s. carefull| +59052|598854|36388|2|37|72254.71|0.05|0.08|R|F|1995-04-23|1995-03-18|1995-05-05|NONE|REG AIR| to the enticing deposit| +59052|926078|38597|3|44|48577.32|0.09|0.03|R|F|1995-02-17|1995-04-04|1995-03-14|NONE|FOB|sublate carefully e| +59052|578211|3234|4|40|51567.60|0.01|0.03|A|F|1995-04-25|1995-03-17|1995-05-08|DELIVER IN PERSON|FOB| unusual dep| +59053|557630|45164|1|49|82692.89|0.03|0.08|R|F|1995-02-02|1994-12-27|1995-02-05|TAKE BACK RETURN|FOB|o beans. quickly ironic theo| +59053|84686|9689|2|39|65156.52|0.04|0.04|R|F|1995-01-30|1994-12-29|1995-02-06|DELIVER IN PERSON|AIR|l, blithe pinto beans: ironic accounts| +59054|985590|48110|1|35|58644.25|0.00|0.05|A|F|1992-07-28|1992-08-16|1992-08-05|COLLECT COD|FOB|regular asymptotes. bli| +59055|476717|26718|1|32|54198.08|0.08|0.04|A|F|1994-07-22|1994-10-07|1994-08-11|COLLECT COD|REG AIR|ole about the blit| +59055|182066|19576|2|5|5740.30|0.09|0.00|A|F|1994-09-17|1994-09-01|1994-10-12|COLLECT COD|FOB|. unusual requests wake| +59055|971643|9201|3|7|12002.20|0.00|0.01|R|F|1994-09-19|1994-08-23|1994-10-07|COLLECT COD|MAIL|thely. asymptotes haggle carefully. car| +59055|393608|43609|4|33|56152.47|0.06|0.04|A|F|1994-09-30|1994-08-23|1994-10-29|NONE|SHIP|ironic packages after th| +59080|364788|39803|1|35|64846.95|0.01|0.03|A|F|1993-04-20|1993-02-06|1993-05-05|NONE|RAIL|e carefully special deposits try to wak| +59080|979953|17511|2|9|18296.19|0.01|0.06|A|F|1993-01-18|1993-03-02|1993-02-04|NONE|FOB|ding request| +59080|60677|35680|3|13|21289.71|0.01|0.02|R|F|1993-03-10|1993-03-23|1993-03-29|TAKE BACK RETURN|SHIP| packages are carefully furiou| +59080|794730|32276|4|29|52916.30|0.06|0.07|A|F|1993-03-06|1993-03-26|1993-03-12|DELIVER IN PERSON|AIR|es. regular ideas | +59080|11898|36899|5|17|30768.13|0.02|0.00|A|F|1993-03-25|1993-02-22|1993-04-09|COLLECT COD|REG AIR|usly regular, even frets. pending, final c| +59081|807245|7246|1|27|31109.40|0.08|0.07|A|F|1993-10-28|1993-09-11|1993-11-11|TAKE BACK RETURN|SHIP| slyly ironic depos| +59081|356435|43957|2|26|38776.92|0.01|0.00|A|F|1993-11-06|1993-09-18|1993-11-07|DELIVER IN PERSON|AIR| silent courts. quickly spec| +59082|957413|19933|1|33|48522.21|0.03|0.00|A|F|1993-04-25|1993-04-01|1993-05-13|COLLECT COD|SHIP|have to dazzle dari| +59082|239134|14143|2|38|40778.56|0.04|0.08|A|F|1993-04-10|1993-03-05|1993-05-04|TAKE BACK RETURN|SHIP|special deposits. c| +59082|113082|38087|3|47|51468.76|0.09|0.01|R|F|1993-03-20|1993-04-01|1993-03-25|TAKE BACK RETURN|SHIP|ongside of the foxes. carefully r| +59082|568073|30585|4|8|9128.40|0.01|0.04|R|F|1993-02-24|1993-03-06|1993-03-26|COLLECT COD|REG AIR|ent instructions are above the blithely | +59082|590837|3349|5|2|3855.62|0.09|0.00|R|F|1993-01-21|1993-03-07|1993-02-01|COLLECT COD|SHIP|deposits sleep slyly regular pack| +59082|188384|888|6|20|29447.60|0.02|0.01|A|F|1993-04-29|1993-04-11|1993-05-20|COLLECT COD|MAIL|y. carefully regular theodolit| +59082|169753|32257|7|11|20050.25|0.07|0.04|A|F|1993-02-15|1993-03-06|1993-02-28|NONE|SHIP|le. requests boost furiously amo| +59083|24588|24589|1|37|55965.46|0.09|0.01|A|F|1994-09-11|1994-10-09|1994-10-07|DELIVER IN PERSON|REG AIR|dolites ought to haggle| +59083|237408|37409|2|47|63233.33|0.07|0.08|R|F|1994-10-17|1994-11-18|1994-10-29|NONE|SHIP|osely ironic asympto| +59083|108135|33140|3|5|5715.65|0.00|0.04|A|F|1994-10-31|1994-11-01|1994-11-28|TAKE BACK RETURN|FOB| slyly among the slyl| +59083|422174|47191|4|27|29596.05|0.07|0.00|A|F|1994-09-16|1994-10-25|1994-10-07|TAKE BACK RETURN|REG AIR|f the carefully final foxes. careful| +59083|464095|1623|5|26|27535.82|0.08|0.04|R|F|1994-10-21|1994-11-11|1994-11-12|TAKE BACK RETURN|FOB|he carefully special packa| +59084|456260|43788|1|37|45000.88|0.01|0.07|N|O|1998-05-21|1998-04-05|1998-06-01|COLLECT COD|AIR|ions are blithely! pinto b| +59084|349308|49309|2|2|2714.58|0.03|0.04|N|O|1998-05-06|1998-04-17|1998-06-03|COLLECT COD|SHIP| cajole according to the enticingly | +59084|808727|46276|3|24|39256.32|0.05|0.02|N|O|1998-03-06|1998-04-25|1998-03-26|TAKE BACK RETURN|AIR| final packages promise| +59084|260137|35148|4|45|49370.40|0.04|0.02|N|O|1998-04-29|1998-05-09|1998-05-24|DELIVER IN PERSON|MAIL|deposits. slyly sly dependen| +59085|11439|23940|1|42|56718.06|0.06|0.02|R|F|1994-04-24|1994-06-18|1994-05-01|NONE|RAIL|e furiously above the final | +59085|240799|40800|2|30|52193.40|0.05|0.07|R|F|1994-06-28|1994-06-11|1994-07-20|COLLECT COD|AIR| requests are even req| +59085|102323|27328|3|38|50362.16|0.10|0.07|A|F|1994-07-06|1994-05-24|1994-07-11|COLLECT COD|MAIL|o beans boost| +59085|739827|27370|4|18|33602.22|0.08|0.01|A|F|1994-04-19|1994-05-12|1994-04-30|COLLECT COD|FOB|slyly bold package| +59086|69714|32216|1|30|50511.30|0.00|0.04|A|F|1994-08-28|1994-10-15|1994-08-29|COLLECT COD|REG AIR|iously regular asymp| +59086|675216|25217|2|46|54794.28|0.02|0.00|A|F|1994-11-21|1994-10-14|1994-12-14|COLLECT COD|FOB|carefully silent platelets mold closely | +59086|344589|32108|3|9|14702.13|0.07|0.03|R|F|1994-10-12|1994-09-10|1994-11-03|TAKE BACK RETURN|REG AIR|carefully silent pack| +59086|496661|21680|4|40|66305.60|0.07|0.07|A|F|1994-10-15|1994-10-23|1994-11-12|TAKE BACK RETURN|FOB|beans. quickly pending packages po| +59086|365833|40848|5|19|36077.58|0.07|0.05|A|F|1994-10-09|1994-10-16|1994-10-19|TAKE BACK RETURN|TRUCK|. carefully ironic depos| +59086|541042|16063|6|14|15162.28|0.00|0.06|A|F|1994-10-23|1994-10-11|1994-11-11|TAKE BACK RETURN|TRUCK|sly above t| +59086|285073|22589|7|17|17987.02|0.07|0.02|R|F|1994-11-14|1994-10-10|1994-12-11|COLLECT COD|AIR|s the unusual ac| +59087|218462|30967|1|11|15184.95|0.08|0.07|N|O|1997-03-08|1997-05-02|1997-03-09|NONE|MAIL|al theodolites. even, unusua| +59087|689312|1826|2|39|50749.92|0.06|0.01|N|O|1997-04-06|1997-05-22|1997-05-03|NONE|SHIP| regularly blithely express requests.| +59112|167578|42585|1|35|57594.95|0.06|0.02|R|F|1994-10-25|1994-09-19|1994-10-31|COLLECT COD|FOB| the carefully pending asymptotes. bl| +59112|476617|26618|2|5|7967.95|0.05|0.07|R|F|1994-10-14|1994-09-26|1994-11-03|COLLECT COD|TRUCK|equests cajole fluffily. accounts wake. i| +59112|497448|34976|3|50|72271.00|0.06|0.03|R|F|1994-08-12|1994-10-02|1994-09-03|COLLECT COD|SHIP| bold frays. blithely ironic | +59112|594283|19306|4|47|64731.22|0.04|0.00|A|F|1994-10-17|1994-10-03|1994-11-06|DELIVER IN PERSON|TRUCK| quickly bol| +59112|103611|41118|5|14|22604.54|0.05|0.07|A|F|1994-12-01|1994-10-02|1994-12-30|DELIVER IN PERSON|REG AIR|frays. silent, even requests detect a| +59113|717443|29958|1|14|20445.74|0.09|0.03|N|O|1996-06-11|1996-05-17|1996-06-13|NONE|RAIL|ilent requests. even requests use furious| +59113|58192|33195|2|49|56359.31|0.01|0.02|N|O|1996-06-25|1996-06-14|1996-07-03|TAKE BACK RETURN|RAIL|ounts about the carefully e| +59113|28512|28513|3|24|34572.24|0.05|0.00|N|O|1996-06-20|1996-05-11|1996-07-18|COLLECT COD|RAIL|al theodolites use against the | +59113|188617|38618|4|24|40934.64|0.10|0.07|N|O|1996-07-13|1996-06-18|1996-07-30|DELIVER IN PERSON|AIR|. regular, special id| +59114|324758|12277|1|24|42785.76|0.08|0.06|R|F|1995-02-19|1995-02-17|1995-03-07|DELIVER IN PERSON|TRUCK|nts ought to cajole blithe| +59115|911140|48695|1|35|40288.50|0.03|0.06|N|O|1995-12-05|1996-01-18|1995-12-29|TAKE BACK RETURN|SHIP|counts. unusual theodolit| +59115|518897|18898|2|24|45980.88|0.05|0.07|N|O|1996-01-28|1996-02-24|1996-01-30|NONE|RAIL|y regular dolphins | +59115|99571|12073|3|50|78528.50|0.02|0.00|N|O|1996-01-12|1996-01-23|1996-01-16|DELIVER IN PERSON|TRUCK|as haggle ca| +59115|479684|4703|4|14|23291.24|0.08|0.04|N|O|1996-02-03|1996-02-14|1996-02-14|DELIVER IN PERSON|FOB| regular theodolites. even, iro| +59115|43019|5520|5|7|6734.07|0.05|0.06|N|O|1996-03-29|1996-01-18|1996-04-03|TAKE BACK RETURN|SHIP|f the ideas. ruthless p| +59116|818982|31499|1|20|38018.80|0.05|0.05|R|F|1995-04-08|1995-01-23|1995-05-03|COLLECT COD|MAIL|mptotes. sl| +59116|621872|9409|2|24|43052.16|0.04|0.04|R|F|1994-12-15|1995-03-11|1995-01-12|COLLECT COD|TRUCK|carefully ca| +59116|791845|16876|3|19|36799.39|0.00|0.07|A|F|1995-02-20|1995-03-07|1995-02-27|NONE|RAIL|lar pinto beans. bold, unus| +59116|533872|21403|4|34|64798.90|0.03|0.07|R|F|1995-03-24|1995-02-08|1995-04-23|DELIVER IN PERSON|REG AIR|arefully iro| +59116|773732|23733|5|24|43336.80|0.09|0.05|A|F|1995-02-18|1995-02-17|1995-03-05|COLLECT COD|TRUCK|. blithely ironic requests are qu| +59116|98251|10753|6|19|23735.75|0.06|0.08|A|F|1995-03-25|1995-03-07|1995-04-20|NONE|MAIL|lar packages. packages cajo| +59117|329361|41868|1|3|4171.05|0.05|0.02|A|F|1993-04-23|1993-03-20|1993-05-14|TAKE BACK RETURN|MAIL|inal pinto beans against| +59117|566685|29197|2|38|66563.08|0.02|0.07|R|F|1993-03-18|1993-03-24|1993-04-03|COLLECT COD|TRUCK|fully final tithes. even d| +59117|260368|35379|3|3|3985.05|0.10|0.05|R|F|1993-03-08|1993-04-04|1993-03-13|COLLECT COD|AIR|ickly. blithely even accounts doz| +59117|989627|14666|4|26|44631.08|0.04|0.03|R|F|1993-03-17|1993-02-20|1993-04-12|DELIVER IN PERSON|RAIL|ts haggle furiously carefully ex| +59117|659447|9448|5|48|67507.68|0.04|0.05|R|F|1993-03-20|1993-04-01|1993-03-25|DELIVER IN PERSON|FOB|ly regular requests. blithely permanent pl| +59118|22018|9519|1|26|24440.26|0.00|0.04|N|O|1996-06-07|1996-06-27|1996-06-26|COLLECT COD|RAIL|ong the final requests. carefull| +59118|44881|19882|2|35|63905.80|0.05|0.02|N|O|1996-08-12|1996-06-24|1996-09-07|COLLECT COD|RAIL|rts. carefully final theodolites haggle| +59118|312193|37206|3|20|24103.60|0.06|0.01|N|O|1996-05-01|1996-06-22|1996-05-24|DELIVER IN PERSON|REG AIR|y bold instructi| +59118|12199|37200|4|34|37780.46|0.04|0.02|N|O|1996-06-15|1996-06-25|1996-06-29|TAKE BACK RETURN|AIR|s after the carefully ironic | +59118|18130|5631|5|15|15721.95|0.07|0.08|N|O|1996-07-08|1996-06-24|1996-08-01|TAKE BACK RETURN|MAIL|ing to the slyly regular acc| +59118|695246|45247|6|9|11170.89|0.07|0.03|N|O|1996-05-25|1996-06-23|1996-06-13|NONE|SHIP|lar, even pinto beans afte| +59119|464243|14244|1|11|13279.42|0.04|0.00|A|F|1995-03-17|1995-02-26|1995-04-14|DELIVER IN PERSON|AIR|riously final accou| +59119|522078|9609|2|13|14300.65|0.06|0.01|A|F|1995-04-30|1995-03-28|1995-05-23|TAKE BACK RETURN|SHIP|egular waters about| +59119|556561|44095|3|27|43673.58|0.07|0.01|R|F|1995-02-13|1995-02-09|1995-02-28|NONE|TRUCK|equests nag. even dep| +59119|110146|47653|4|12|13873.68|0.04|0.08|R|F|1995-02-05|1995-03-16|1995-02-17|DELIVER IN PERSON|FOB|nal pinto beans. caref| +59144|857543|7544|1|47|70523.50|0.01|0.05|N|O|1998-09-22|1998-09-10|1998-10-11|NONE|RAIL|sly final accounts. foxes detect furi| +59144|710080|10081|2|37|40331.85|0.08|0.00|N|O|1998-08-04|1998-09-08|1998-08-18|DELIVER IN PERSON|TRUCK|e the ironic packages. thin| +59144|309136|9137|3|7|8015.84|0.05|0.06|N|O|1998-09-14|1998-10-24|1998-09-28|NONE|FOB|fully enticing accounts. pending| +59144|646110|33647|4|32|33794.56|0.04|0.01|N|O|1998-09-20|1998-10-08|1998-09-28|NONE|MAIL|structions. furiously express asympto| +59144|154686|29693|5|16|27850.88|0.09|0.02|N|O|1998-08-19|1998-10-08|1998-08-27|COLLECT COD|TRUCK|r accounts use about the bold waters. sly a| +59144|799773|24804|6|13|24345.62|0.03|0.07|N|O|1998-11-03|1998-09-25|1998-11-30|TAKE BACK RETURN|MAIL|osits are fu| +59144|773801|11347|7|47|88114.19|0.05|0.02|N|O|1998-09-11|1998-09-25|1998-10-09|TAKE BACK RETURN|AIR|lly special theodoli| +59145|269521|7037|1|5|7452.55|0.02|0.01|N|O|1998-06-30|1998-08-05|1998-07-12|COLLECT COD|MAIL|? pinto beans eat furiously along the fu| +59145|838696|1213|2|25|40866.25|0.03|0.00|N|O|1998-07-26|1998-07-17|1998-08-05|COLLECT COD|REG AIR|nts haggle carefully even epitaphs.| +59145|955065|30104|3|39|43680.78|0.06|0.07|N|O|1998-08-17|1998-08-02|1998-08-30|COLLECT COD|REG AIR| quickly pending deposits. regular dol| +59145|769478|44509|4|49|75824.56|0.08|0.01|N|O|1998-10-11|1998-08-30|1998-11-04|NONE|FOB|oggedly ironic dol| +59145|606817|31842|5|49|84465.22|0.04|0.07|N|O|1998-08-10|1998-08-15|1998-08-16|TAKE BACK RETURN|TRUCK|deas among| +59145|764576|27092|6|18|29529.72|0.02|0.07|N|O|1998-08-21|1998-08-03|1998-09-01|DELIVER IN PERSON|AIR|iously special dependenci| +59145|215576|40585|7|17|25356.52|0.03|0.04|N|O|1998-09-12|1998-08-11|1998-10-04|DELIVER IN PERSON|REG AIR|s are. deposits eat.| +59146|169055|19056|1|19|21356.95|0.04|0.04|R|F|1992-09-16|1992-11-01|1992-09-24|NONE|RAIL|he fluffily even pinto | +59146|302753|40272|2|47|82519.78|0.01|0.07|A|F|1992-12-27|1992-12-11|1993-01-07|TAKE BACK RETURN|REG AIR|riously unusual foxes are f| +59146|356746|19254|3|32|57687.36|0.01|0.06|A|F|1992-11-09|1992-12-07|1992-11-25|DELIVER IN PERSON|MAIL|fully spec| +59146|815292|15293|4|25|30181.25|0.05|0.07|R|F|1993-01-05|1992-10-18|1993-02-03|COLLECT COD|TRUCK|ymptotes affix s| +59146|608187|8188|5|24|26283.60|0.01|0.03|R|F|1992-12-06|1992-11-12|1992-12-10|COLLECT COD|AIR|ackages. ironic packages| +59146|793002|5518|6|37|40513.89|0.05|0.04|R|F|1993-01-08|1992-12-10|1993-01-20|NONE|MAIL|ctions wake slyly | +59147|603162|40699|1|7|7455.91|0.01|0.03|R|F|1995-01-15|1994-12-07|1995-01-22|COLLECT COD|REG AIR|ests use. boldly special deposits| +59147|330676|43183|2|39|66559.74|0.06|0.04|A|F|1994-11-11|1994-12-23|1994-11-16|COLLECT COD|AIR|s about the fluffily bo| +59147|667616|17617|3|49|77595.42|0.09|0.04|R|F|1994-10-15|1994-11-14|1994-10-23|DELIVER IN PERSON|AIR|ld requests. bold instructions hin| +59147|609532|22045|4|12|17298.00|0.03|0.07|R|F|1995-01-20|1994-12-05|1995-02-16|DELIVER IN PERSON|TRUCK|gular instructions after th| +59147|392606|30128|5|9|15287.31|0.08|0.03|R|F|1994-10-26|1994-12-07|1994-11-23|DELIVER IN PERSON|TRUCK| fluffily unusual instructions | +59147|518886|18887|6|13|24763.18|0.05|0.01|A|F|1994-12-13|1994-11-14|1994-12-30|DELIVER IN PERSON|REG AIR|ial deposits wake carefully blithe| +59147|910455|35492|7|44|64478.04|0.02|0.01|A|F|1995-01-07|1994-12-25|1995-01-14|COLLECT COD|RAIL|ithely unusual account| +59148|571|25572|1|24|35317.68|0.10|0.08|R|F|1993-11-13|1994-01-08|1993-12-11|DELIVER IN PERSON|RAIL|instructions are. blithely express| +59149|15521|40522|1|48|68952.96|0.01|0.04|R|F|1992-04-13|1992-04-13|1992-05-11|COLLECT COD|SHIP|ial theodolites x-ray carefully furiou| +59149|854594|17112|2|24|37165.20|0.04|0.04|R|F|1992-03-18|1992-05-03|1992-03-22|NONE|AIR|into beans. final, ironic requests about th| +59150|314156|14157|1|22|25743.08|0.09|0.08|A|F|1994-10-13|1994-10-11|1994-11-09|TAKE BACK RETURN|FOB|ealthily express theodoli| +59150|5730|5731|2|10|16357.30|0.05|0.03|A|F|1994-09-16|1994-09-24|1994-10-05|COLLECT COD|FOB|e the furiously ironic courts. quickly fi| +59150|293151|18162|3|43|49198.02|0.02|0.05|R|F|1994-11-27|1994-09-15|1994-12-21|COLLECT COD|TRUCK|s wake quickly; carefully| +59150|984760|22318|4|45|83012.40|0.00|0.03|A|F|1994-09-03|1994-09-04|1994-09-16|NONE|REG AIR|sual foxes.| +59151|980601|30602|1|41|68943.96|0.08|0.03|N|O|1998-03-13|1998-02-21|1998-03-25|NONE|AIR|refully after| +59151|950671|13191|2|44|75751.72|0.03|0.01|N|O|1998-03-19|1998-03-19|1998-04-17|TAKE BACK RETURN|AIR|s sleep above the doggedly bo| +59151|918504|6059|3|38|57853.48|0.10|0.05|N|O|1998-02-23|1998-03-15|1998-03-10|DELIVER IN PERSON|RAIL|fully silent | +59151|281861|44367|4|38|70028.30|0.04|0.07|N|O|1998-03-04|1998-03-09|1998-03-07|COLLECT COD|RAIL|ven dependencies nag | +59151|224623|24624|5|35|54166.35|0.07|0.06|N|O|1998-01-05|1998-03-16|1998-02-01|TAKE BACK RETURN|SHIP|structions use fur| +59151|224273|49282|6|27|32326.02|0.09|0.03|N|O|1998-03-09|1998-02-20|1998-04-06|NONE|RAIL|regular excuses. ironi| +59176|540622|15643|1|3|4987.80|0.07|0.04|N|O|1996-06-08|1996-06-16|1996-06-13|COLLECT COD|TRUCK|o the slyly express theodolites use abo| +59176|219427|44436|2|40|53856.40|0.07|0.07|N|O|1996-06-05|1996-05-20|1996-06-15|NONE|SHIP| of the blithely unusu| +59176|903327|40882|3|3|3990.84|0.07|0.08|N|O|1996-05-28|1996-05-19|1996-06-07|NONE|MAIL|ans cajole. express | +59176|204435|16940|4|40|53576.80|0.10|0.04|N|O|1996-06-23|1996-04-20|1996-07-06|TAKE BACK RETURN|MAIL|ainst the ironic, specia| +59177|567755|17756|1|30|54681.90|0.02|0.00|N|O|1995-12-24|1996-01-09|1996-01-01|NONE|TRUCK|the bold d| +59177|251704|1705|2|13|21523.97|0.02|0.06|N|O|1995-12-12|1996-02-05|1995-12-31|DELIVER IN PERSON|TRUCK|. hockey players are ruthlessly fluffily| +59177|372389|9911|3|18|26304.66|0.00|0.06|N|O|1996-03-14|1996-01-06|1996-04-12|DELIVER IN PERSON|MAIL| alongside of the carefull| +59177|730162|30163|4|6|7152.78|0.07|0.04|N|O|1996-03-17|1996-01-30|1996-04-07|TAKE BACK RETURN|TRUCK|ideas believe slyl| +59178|679081|16621|1|44|46642.20|0.09|0.06|A|F|1992-11-25|1992-09-19|1992-12-18|TAKE BACK RETURN|REG AIR|ly ironic packages. even| +59178|311977|49496|2|18|35801.28|0.06|0.06|R|F|1992-10-13|1992-09-20|1992-11-05|COLLECT COD|TRUCK|al excuses! sometime| +59178|382900|20422|3|29|57503.81|0.02|0.03|R|F|1992-08-22|1992-10-03|1992-09-19|NONE|FOB|fluffily final frays are quickly special r| +59178|394247|19262|4|49|65720.27|0.02|0.05|R|F|1992-09-11|1992-09-15|1992-09-24|TAKE BACK RETURN|SHIP|xcuses are on the br| +59178|106000|31005|5|26|26156.00|0.02|0.04|A|F|1992-12-07|1992-09-13|1992-12-11|COLLECT COD|REG AIR|ilently even senti| +59179|235480|22993|1|24|33971.28|0.01|0.07|R|F|1993-03-30|1993-01-24|1993-04-17|DELIVER IN PERSON|MAIL| deposits detect furi| +59179|697818|22845|2|1|1815.78|0.09|0.07|A|F|1992-12-13|1993-01-31|1992-12-16|DELIVER IN PERSON|SHIP|s boost along t| +59180|643024|18049|1|26|25141.74|0.09|0.05|R|F|1995-01-01|1995-01-10|1995-01-02|TAKE BACK RETURN|FOB|ly around the special, iron| +59180|288038|13049|2|40|41040.80|0.07|0.05|R|F|1995-02-02|1995-02-12|1995-02-12|TAKE BACK RETURN|AIR|y ironic courts. special, expre| +59180|42475|17476|3|34|48193.98|0.03|0.00|A|F|1995-02-02|1994-12-16|1995-02-25|COLLECT COD|SHIP|inal deposits doubt furiously ev| +59180|873131|35649|4|3|3312.27|0.04|0.02|A|F|1995-02-19|1995-02-02|1995-02-28|NONE|REG AIR|ests haggle alongside of the quickly| +59180|709343|9344|5|2|2704.62|0.08|0.03|R|F|1995-02-25|1995-01-11|1995-03-21|COLLECT COD|SHIP|ainst the slyly idle accounts. furiously i| +59180|917004|29523|6|49|50027.04|0.03|0.08|R|F|1995-02-27|1995-01-03|1995-03-25|DELIVER IN PERSON|RAIL|al platelets sleep slyly| +59181|288418|924|1|29|40785.60|0.02|0.00|A|F|1994-03-16|1994-04-01|1994-04-08|TAKE BACK RETURN|AIR|to beans alongside of the slyly sly | +59181|436588|24113|2|34|51835.04|0.09|0.06|R|F|1994-03-03|1994-04-09|1994-03-29|COLLECT COD|REG AIR|ages are quickly pendi| +59181|719893|44922|3|9|17215.74|0.08|0.01|R|F|1994-04-18|1994-03-27|1994-05-03|DELIVER IN PERSON|FOB|old excuses. fluf| +59181|235155|47660|4|26|28343.64|0.09|0.03|R|F|1994-05-17|1994-05-14|1994-06-05|DELIVER IN PERSON|RAIL| are blithely even p| +59181|240185|27698|5|5|5625.85|0.07|0.07|A|F|1994-06-05|1994-05-04|1994-06-16|COLLECT COD|TRUCK|e bold accounts sleep evenly a| +59181|781941|31942|6|37|74847.67|0.00|0.04|A|F|1994-04-05|1994-04-20|1994-04-18|DELIVER IN PERSON|SHIP|ts according to the | +59181|67812|17813|7|5|8899.05|0.09|0.08|A|F|1994-03-04|1994-05-04|1994-03-07|COLLECT COD|FOB|refully after the furiously| +59182|699856|12370|1|19|35260.58|0.01|0.03|N|O|1998-07-27|1998-05-30|1998-08-19|NONE|REG AIR|o beans. blithely regular braids haggle | +59182|478116|15644|2|48|52516.32|0.02|0.02|N|O|1998-07-26|1998-06-06|1998-08-20|NONE|MAIL|iously ironic accounts use fluffily a| +59183|754128|29159|1|7|8274.63|0.00|0.02|A|F|1993-03-21|1993-04-25|1993-04-04|NONE|MAIL| are carefully. | +59183|623523|11060|2|35|50627.15|0.02|0.00|R|F|1993-05-01|1993-03-13|1993-05-04|COLLECT COD|REG AIR| bold accounts. packages are slyl| +59183|536551|11572|3|16|25400.48|0.02|0.06|R|F|1993-03-31|1993-04-25|1993-04-07|DELIVER IN PERSON|RAIL|ts. furiously final deposits a| +59208|994711|32269|1|42|75838.14|0.03|0.05|N|O|1996-11-24|1996-11-08|1996-11-26|NONE|FOB|gle blithely sil| +59208|95459|32963|2|15|21816.75|0.08|0.06|N|O|1996-12-30|1996-12-08|1997-01-05|TAKE BACK RETURN|MAIL|le slow accounts. q| +59209|271981|9497|1|12|23435.64|0.09|0.06|N|O|1997-06-23|1997-06-16|1997-06-27|NONE|SHIP| theodolites. carefully | +59209|179292|16802|2|42|57594.18|0.08|0.00|N|O|1997-05-15|1997-05-24|1997-06-05|TAKE BACK RETURN|RAIL|slyly even theodolite| +59209|358813|21321|3|7|13102.60|0.02|0.02|N|O|1997-05-30|1997-07-04|1997-06-17|TAKE BACK RETURN|FOB|unusual requests sleep. carefully ex| +59209|558878|46412|4|12|23242.20|0.04|0.01|N|O|1997-06-14|1997-06-29|1997-07-08|COLLECT COD|REG AIR|out the blithely silent requests wake blit| +59209|48016|48017|5|17|16388.17|0.10|0.03|N|O|1997-05-28|1997-05-12|1997-06-25|DELIVER IN PERSON|RAIL|wake quickly pending re| +59209|988612|38613|6|1|1700.57|0.06|0.02|N|O|1997-07-12|1997-06-15|1997-07-19|NONE|RAIL|e furiously pending requests use blithely | +59209|589822|39823|7|9|17206.20|0.08|0.07|N|O|1997-07-04|1997-05-31|1997-07-21|COLLECT COD|FOB|alms. slyly silent orbits lose fu| +59210|134671|22178|1|48|81872.16|0.07|0.01|A|F|1993-11-19|1993-12-27|1993-11-25|DELIVER IN PERSON|AIR|es. slyly pending ideas unwind qu| +59211|62260|49764|1|1|1222.26|0.03|0.02|R|F|1993-11-17|1993-10-01|1993-12-06|COLLECT COD|SHIP|nding requests should wake furiously final | +59211|395080|32602|2|34|39952.38|0.06|0.08|R|F|1993-11-20|1993-11-14|1993-11-24|DELIVER IN PERSON|RAIL|ess, even instructio| +59211|93154|30658|3|33|37855.95|0.06|0.02|A|F|1993-11-09|1993-09-30|1993-11-30|COLLECT COD|MAIL|oss the furiously u| +59212|347086|22099|1|3|3399.21|0.06|0.01|N|O|1995-07-07|1995-07-02|1995-07-29|DELIVER IN PERSON|RAIL|ward the even, special ide| +59213|182636|20146|1|8|13749.04|0.00|0.05|N|O|1995-08-20|1995-08-13|1995-08-29|TAKE BACK RETURN|RAIL|ges integrate blithely alongside of| +59214|30468|42969|1|13|18179.98|0.06|0.01|N|O|1997-08-03|1997-09-03|1997-08-12|DELIVER IN PERSON|AIR|ithely even deposits: furi| +59214|71444|8948|2|44|62279.36|0.03|0.04|N|O|1997-10-01|1997-08-22|1997-10-25|NONE|RAIL|ial accounts might are. silent, | +59214|756580|19096|3|13|21275.15|0.03|0.00|N|O|1997-10-30|1997-08-19|1997-11-22|TAKE BACK RETURN|RAIL|structions. final, iro| +59214|825451|37968|4|43|59185.63|0.08|0.04|N|O|1997-08-01|1997-09-19|1997-08-07|COLLECT COD|RAIL|cuses are furiou| +59214|353769|41291|5|48|87492.00|0.04|0.05|N|O|1997-09-19|1997-09-24|1997-09-26|COLLECT COD|REG AIR|ourts cajole furiously even| +59214|781736|44252|6|26|47260.20|0.03|0.01|N|O|1997-11-04|1997-10-02|1997-11-06|DELIVER IN PERSON|AIR|y furiously regular ideas. close | +59215|770897|45928|1|43|84617.98|0.03|0.05|R|F|1993-10-25|1993-12-03|1993-11-20|COLLECT COD|RAIL|nto beans.| +59215|450195|25214|2|20|22903.40|0.02|0.03|A|F|1993-09-18|1993-11-22|1993-09-19|DELIVER IN PERSON|SHIP|quickly special inst| +59215|423817|36326|3|29|50482.91|0.08|0.03|A|F|1994-01-11|1993-11-22|1994-01-25|COLLECT COD|SHIP|encies. fluffil| +59215|76277|1280|4|13|16292.51|0.08|0.03|A|F|1993-12-31|1993-11-24|1994-01-15|TAKE BACK RETURN|MAIL|le carefully. accounts nag. sl| +59215|976566|26567|5|46|75555.92|0.05|0.06|R|F|1993-09-22|1993-12-05|1993-09-26|NONE|SHIP|lly regular | +59240|308553|46072|1|35|54653.90|0.10|0.07|R|F|1994-08-11|1994-08-14|1994-09-01|DELIVER IN PERSON|TRUCK|quickly even tith| +59240|838174|38175|2|48|53382.24|0.02|0.06|R|F|1994-06-27|1994-08-02|1994-07-01|TAKE BACK RETURN|TRUCK|foxes haggle among the pending, regul| +59240|182425|7432|3|23|34670.66|0.10|0.00|A|F|1994-10-03|1994-07-23|1994-10-24|DELIVER IN PERSON|REG AIR|ly regular pl| +59241|65427|15428|1|32|44557.44|0.09|0.06|N|O|1996-10-03|1996-11-04|1996-10-20|TAKE BACK RETURN|RAIL|lyly even accounts al| +59241|616081|41106|2|15|14955.75|0.00|0.06|N|O|1996-10-24|1996-10-30|1996-11-12|DELIVER IN PERSON|MAIL|accounts try to are furiously instruction| +59241|464690|27200|3|47|77769.49|0.06|0.02|N|O|1996-11-18|1996-11-21|1996-12-03|DELIVER IN PERSON|SHIP|e furiously after the final foxes. slyly | +59241|39619|27120|4|36|56109.96|0.10|0.01|N|O|1996-12-24|1996-10-15|1997-01-19|TAKE BACK RETURN|RAIL|g accounts wake p| +59241|863584|1136|5|42|64996.68|0.01|0.02|N|O|1996-12-10|1996-11-12|1996-12-16|TAKE BACK RETURN|MAIL|latelets. quickly silent asymptotes caj| +59242|898982|36534|1|34|67351.96|0.04|0.08|N|O|1996-06-11|1996-06-30|1996-07-07|DELIVER IN PERSON|REG AIR|fully slyly even instructions. reg| +59242|175409|37913|2|20|29688.00|0.02|0.08|N|O|1996-05-09|1996-05-24|1996-05-26|NONE|AIR|, regular deposits. e| +59243|1799|26800|1|42|71433.18|0.00|0.00|R|F|1993-10-14|1993-11-11|1993-11-06|COLLECT COD|MAIL|thely ironic pack| +59244|833752|8785|1|7|11799.97|0.02|0.05|N|O|1998-01-22|1998-02-09|1998-02-13|NONE|RAIL|lyly ironic foxes wake slyly; pinto bean| +59244|858402|33437|2|3|4081.08|0.08|0.01|N|O|1998-02-19|1998-03-21|1998-03-09|TAKE BACK RETURN|TRUCK|is. unusual foxes cajole careful| +59244|146961|21966|3|4|8031.84|0.09|0.01|N|O|1998-02-12|1998-03-19|1998-02-24|NONE|FOB|sly above the accounts. blithe| +59244|963883|1441|4|29|56458.36|0.07|0.02|N|O|1998-02-27|1998-02-18|1998-03-14|NONE|MAIL|ic accounts. silently pending plat| +59244|981275|31276|5|22|29837.06|0.08|0.01|N|O|1998-03-24|1998-02-05|1998-04-14|NONE|MAIL|yly slyly regular packages: brave e| +59245|961025|11026|1|10|10859.80|0.00|0.02|A|F|1992-06-09|1992-08-09|1992-06-23|NONE|SHIP|uests after the bli| +59245|932643|32644|2|2|3351.20|0.06|0.05|A|F|1992-07-10|1992-06-30|1992-08-08|COLLECT COD|AIR|ly ironic decoys. pending, even pinto be| +59245|923208|48245|3|16|19698.56|0.00|0.04|R|F|1992-07-06|1992-07-30|1992-07-07|COLLECT COD|FOB| daringly ironic pinto beans acro| +59245|352906|2907|4|36|70520.04|0.03|0.04|R|F|1992-05-24|1992-06-29|1992-06-10|NONE|REG AIR|longside of the slyly regular requests. bo| +59245|281204|43710|5|24|28444.56|0.07|0.05|A|F|1992-07-23|1992-08-13|1992-08-22|TAKE BACK RETURN|TRUCK|ccounts-- car| +59246|117420|4927|1|28|40247.76|0.04|0.04|N|O|1998-08-09|1998-06-21|1998-09-01|COLLECT COD|SHIP| breach carefully | +59246|474451|11979|2|48|68420.64|0.04|0.07|N|O|1998-07-28|1998-07-09|1998-08-25|DELIVER IN PERSON|SHIP|cial packages x-ray in place of the| +59246|93991|31495|3|14|27789.86|0.04|0.06|N|O|1998-06-05|1998-06-20|1998-06-07|NONE|REG AIR|ar deposits wake carefully. idly fu| +59247|242544|17553|1|20|29730.60|0.06|0.02|N|O|1996-05-25|1996-04-10|1996-05-27|DELIVER IN PERSON|TRUCK|ithely even instructions will have to cajo| +59247|436001|11018|2|10|9369.80|0.01|0.02|N|O|1996-04-08|1996-04-22|1996-05-03|NONE|MAIL| wake furiously above t| +59247|867441|42476|3|21|29576.40|0.05|0.02|N|O|1996-03-11|1996-04-11|1996-03-14|TAKE BACK RETURN|SHIP|g to the pinto b| +59247|75955|38457|4|25|48273.75|0.08|0.00|N|O|1996-04-20|1996-04-11|1996-05-06|TAKE BACK RETURN|MAIL|lly final accounts wake slyly af| +59272|578331|40843|1|18|25367.58|0.01|0.03|A|F|1995-02-12|1995-02-14|1995-02-18|NONE|MAIL|inal accounts. regular instructions cajol| +59272|998700|48701|2|42|75543.72|0.05|0.08|A|F|1995-04-01|1995-02-26|1995-04-04|TAKE BACK RETURN|REG AIR|ding to the quickly even packa| +59272|145631|8134|3|33|55328.79|0.09|0.03|A|F|1995-03-15|1995-01-29|1995-03-27|TAKE BACK RETURN|TRUCK|iously pending packages beyond the slyl| +59272|617314|29827|4|34|41863.52|0.00|0.06|A|F|1995-01-29|1995-01-23|1995-02-21|DELIVER IN PERSON|AIR|ainments detect s| +59272|187092|12099|5|13|15328.17|0.08|0.04|A|F|1994-12-17|1995-03-04|1995-01-07|TAKE BACK RETURN|REG AIR|as about the regular theodolites | +59273|930180|42699|1|40|48405.60|0.00|0.07|N|O|1998-07-25|1998-05-13|1998-08-23|TAKE BACK RETURN|RAIL| slyly unusual requests. carefully iro| +59273|519594|7125|2|31|50020.67|0.10|0.03|N|O|1998-07-30|1998-05-23|1998-08-19|COLLECT COD|MAIL|lent deposits poach care| +59273|806888|6889|3|6|10769.04|0.06|0.04|N|O|1998-04-11|1998-05-15|1998-04-24|TAKE BACK RETURN|FOB| try to use carefully a| +59273|357750|7751|4|26|47001.24|0.02|0.02|N|O|1998-05-30|1998-05-15|1998-06-13|COLLECT COD|AIR|eposits sle| +59273|687990|37991|5|21|41537.16|0.05|0.07|N|O|1998-05-04|1998-05-11|1998-05-08|TAKE BACK RETURN|MAIL|s packages sleep carefully afte| +59273|31814|31815|6|37|64594.97|0.10|0.00|N|O|1998-04-22|1998-07-02|1998-05-02|DELIVER IN PERSON|MAIL|regular accounts are asymptot| +59274|705586|18101|1|41|65253.55|0.03|0.06|A|F|1993-06-20|1993-05-11|1993-07-03|DELIVER IN PERSON|AIR|e furiousl| +59274|769419|31935|2|22|32744.36|0.02|0.00|A|F|1993-04-30|1993-05-09|1993-05-10|TAKE BACK RETURN|SHIP|ost blithely final deposits. ironic inst| +59274|623379|35892|3|48|62512.32|0.04|0.00|A|F|1993-06-23|1993-04-27|1993-07-17|COLLECT COD|TRUCK|s. pending packages | +59274|120731|20732|4|29|50800.17|0.02|0.04|A|F|1993-04-02|1993-05-08|1993-04-05|COLLECT COD|AIR|s. carefully fluffy depe| +59274|117604|5111|5|15|24324.00|0.10|0.01|A|F|1993-05-16|1993-04-18|1993-05-20|COLLECT COD|TRUCK| packages. final requests wake | +59274|569428|19429|6|1|1497.40|0.02|0.08|A|F|1993-04-24|1993-05-23|1993-05-10|COLLECT COD|MAIL|l accounts boost. blithely ironic ideas sub| +59274|370001|7523|7|19|20348.81|0.09|0.02|R|F|1993-03-29|1993-04-26|1993-04-11|DELIVER IN PERSON|MAIL|ar accounts wake above the carefully un| +59275|602269|2270|1|3|3513.69|0.06|0.08|N|O|1996-07-23|1996-08-19|1996-08-08|NONE|REG AIR|he quickly final platelets doubt fluffily a| +59275|329953|42460|2|43|85266.42|0.05|0.06|N|O|1996-08-19|1996-08-18|1996-09-08|NONE|TRUCK|, regular instructi| +59275|504460|16971|3|10|14644.40|0.05|0.04|N|O|1996-06-30|1996-08-12|1996-07-14|NONE|MAIL|uests. furiously even accounts above the f| +59275|444534|19551|4|49|72446.99|0.10|0.08|N|O|1996-06-24|1996-08-27|1996-07-02|DELIVER IN PERSON|REG AIR|the furiously express frays. c| +59275|271250|21251|5|3|3663.72|0.03|0.05|N|O|1996-07-05|1996-07-24|1996-07-30|DELIVER IN PERSON|RAIL|eas sleep blithely | +59275|882611|32612|6|46|73304.22|0.08|0.03|N|O|1996-07-10|1996-09-14|1996-07-18|NONE|RAIL|beans. ideas nag slyly quic| +59275|27611|2612|7|22|33849.42|0.00|0.01|N|O|1996-09-18|1996-08-05|1996-10-17|COLLECT COD|RAIL|encies sleep slyly accord| +59276|55119|5120|1|18|19333.98|0.03|0.05|R|F|1993-01-05|1992-10-18|1993-01-21|DELIVER IN PERSON|TRUCK|al accounts sleep bravely blithely regul| +59277|996994|9514|1|10|20909.50|0.00|0.06|R|F|1993-08-23|1993-10-01|1993-09-12|NONE|REG AIR|eodolites after the packages are ag| +59277|473321|10849|2|15|19414.50|0.07|0.00|A|F|1993-08-27|1993-08-18|1993-09-23|DELIVER IN PERSON|AIR|ckly across the quickly regular account| +59277|90486|2988|3|16|23623.68|0.00|0.08|A|F|1993-10-10|1993-09-09|1993-10-22|DELIVER IN PERSON|MAIL|ses nag slyly silent, ironic| +59277|797754|22785|4|13|24072.36|0.05|0.01|A|F|1993-07-20|1993-09-08|1993-08-19|NONE|MAIL|are furiou| +59277|846209|46210|5|2|2310.32|0.00|0.01|R|F|1993-07-21|1993-08-31|1993-08-20|COLLECT COD|AIR| the furiously final pinto | +59278|121772|34275|1|8|14350.16|0.09|0.05|N|O|1997-03-08|1997-01-17|1997-03-29|DELIVER IN PERSON|FOB|. special depths use carefully iro| +59278|615676|28189|2|1|1591.64|0.02|0.00|N|O|1997-02-09|1997-01-05|1997-02-15|COLLECT COD|RAIL|ely regular requests detect| +59278|651554|1555|3|44|66242.88|0.08|0.03|N|O|1997-02-03|1997-01-04|1997-03-01|NONE|RAIL| even requests. pl| +59278|659680|47220|4|16|26234.40|0.02|0.00|N|O|1996-12-22|1997-01-16|1997-01-13|NONE|REG AIR|uriously unusu| +59278|228822|3831|5|34|59527.54|0.07|0.00|N|O|1997-03-12|1997-02-11|1997-03-30|TAKE BACK RETURN|RAIL| to the requests. final deposits sleep sly| +59278|795083|20114|6|29|34163.45|0.07|0.03|N|O|1997-02-08|1997-01-12|1997-02-16|COLLECT COD|SHIP|ar requests haggle slyly? slyly | +59278|949905|12424|7|47|91878.42|0.06|0.00|N|O|1997-01-14|1997-03-01|1997-01-24|TAKE BACK RETURN|SHIP|ial ideas after the final deposi| +59279|44752|7253|1|18|30541.50|0.09|0.00|N|O|1995-07-30|1995-10-01|1995-08-22|NONE|MAIL|gle furiously. furiously pending accou| +59279|143388|18393|2|11|15745.18|0.06|0.08|N|O|1995-11-15|1995-09-28|1995-11-18|TAKE BACK RETURN|RAIL|ironic pinto beans affix slyly.| +59279|918038|5593|3|33|34847.67|0.03|0.05|N|O|1995-09-27|1995-08-26|1995-10-05|TAKE BACK RETURN|AIR|ake furiously. blith| +59279|449269|36794|4|15|18273.60|0.02|0.00|N|O|1995-10-04|1995-08-27|1995-10-21|TAKE BACK RETURN|MAIL|yly express pinto beans s| +59304|753256|3257|1|27|35348.94|0.06|0.04|N|O|1997-11-12|1997-10-18|1997-12-12|TAKE BACK RETURN|RAIL|nts hinder carefully. furiously | +59304|960546|35585|2|39|62653.50|0.06|0.08|N|O|1997-11-01|1997-11-20|1997-11-02|COLLECT COD|MAIL| against the slyly regular accoun| +59304|886642|49160|3|2|3257.20|0.09|0.05|N|O|1997-11-07|1997-11-02|1997-11-26|TAKE BACK RETURN|SHIP| express requests boost among th| +59305|259671|9672|1|2|3261.32|0.07|0.01|A|F|1993-03-21|1993-01-31|1993-04-20|TAKE BACK RETURN|MAIL| the blithely final excuses.| +59305|288141|13152|2|20|22582.60|0.05|0.03|A|F|1992-12-26|1993-02-24|1993-01-07|TAKE BACK RETURN|FOB| blithely. slyly special deposits nag fina| +59306|212884|12885|1|15|26953.05|0.10|0.03|N|O|1995-09-24|1995-09-13|1995-10-05|COLLECT COD|REG AIR|ss the furiousl| +59306|934879|47398|2|13|24879.79|0.02|0.04|N|O|1995-08-13|1995-09-11|1995-08-28|COLLECT COD|SHIP|s. accounts sleep quickly after th| +59306|507093|44624|3|45|49503.15|0.00|0.02|N|O|1995-08-14|1995-08-22|1995-08-24|COLLECT COD|SHIP|ic foxes. even, final accounts cajole car| +59306|697580|47581|4|28|44171.40|0.07|0.03|N|O|1995-07-22|1995-07-21|1995-08-21|COLLECT COD|REG AIR|packages lose evenly. furiously ir| +59306|226712|1721|5|47|77018.90|0.05|0.06|N|O|1995-08-19|1995-08-17|1995-09-05|TAKE BACK RETURN|SHIP|s. silent instructions haggle blith| +59307|549515|49516|1|7|10951.43|0.05|0.03|A|F|1993-12-23|1993-12-15|1993-12-31|TAKE BACK RETURN|TRUCK|. accounts after the quickly ironic a| +59308|999229|36787|1|49|65080.82|0.03|0.03|N|O|1997-02-09|1996-12-16|1997-02-14|TAKE BACK RETURN|TRUCK|ully daring | +59309|173449|23450|1|25|38061.00|0.07|0.05|N|O|1998-07-14|1998-07-19|1998-08-13|COLLECT COD|RAIL| slyly regular deposits s| +59309|155073|17577|2|29|32714.03|0.04|0.03|N|O|1998-07-20|1998-07-21|1998-07-28|DELIVER IN PERSON|AIR|hy packages at the accou| +59309|306201|6202|3|27|32594.13|0.02|0.00|N|O|1998-09-19|1998-07-21|1998-09-29|DELIVER IN PERSON|TRUCK|inal requests. blithel| +59309|319361|31868|4|1|1380.35|0.09|0.03|N|O|1998-07-05|1998-08-16|1998-08-03|DELIVER IN PERSON|RAIL|s-- carefully even| +59310|832154|19703|1|47|51047.17|0.04|0.06|N|O|1996-11-23|1996-11-20|1996-12-22|TAKE BACK RETURN|REG AIR|st the courts wake quickly across the | +59310|7373|32374|2|6|7682.22|0.10|0.05|N|O|1996-12-12|1996-11-08|1996-12-29|NONE|MAIL|ending, express depo| +59310|910350|47905|3|33|44890.23|0.04|0.01|N|O|1996-11-06|1996-10-23|1996-11-21|NONE|REG AIR|le ironically. furiousl| +59310|244679|19688|4|46|74688.36|0.09|0.07|N|O|1996-09-14|1996-09-27|1996-10-04|NONE|MAIL| blithely ironic foxes above th| +59310|304017|4018|5|17|17357.00|0.02|0.04|N|O|1996-10-06|1996-09-29|1996-10-09|COLLECT COD|FOB|ing deposit| +59310|604368|16881|6|22|27991.26|0.08|0.00|N|O|1996-12-07|1996-11-09|1996-12-28|DELIVER IN PERSON|TRUCK| dazzle enticingly bold packages? ca| +59310|599415|36949|7|27|40888.53|0.02|0.05|N|O|1996-10-14|1996-11-03|1996-11-08|TAKE BACK RETURN|TRUCK| fluffily special attainments grow brav| +59311|362887|12888|1|18|35097.66|0.08|0.05|R|F|1994-12-22|1994-11-30|1994-12-24|DELIVER IN PERSON|RAIL|der the finally special deposits; r| +59336|703166|15681|1|30|35073.90|0.07|0.02|N|O|1997-03-22|1997-05-04|1997-04-02|NONE|TRUCK|t the pinto beans. unusual,| +59336|105013|17516|2|24|24432.24|0.07|0.04|N|O|1997-04-08|1997-04-19|1997-05-02|COLLECT COD|AIR|s detect acco| +59336|952989|40547|3|49|100055.06|0.09|0.02|N|O|1997-06-05|1997-04-20|1997-06-07|NONE|AIR|nts boost fl| +59337|244450|6955|1|5|6972.20|0.10|0.08|R|F|1993-11-14|1993-11-12|1993-11-20|TAKE BACK RETURN|MAIL|. blithely even| +59337|456754|44282|2|39|66718.47|0.06|0.08|A|F|1993-11-11|1993-10-19|1993-12-07|DELIVER IN PERSON|RAIL| fluffily. careful| +59337|653086|15600|3|28|29093.40|0.09|0.00|A|F|1993-10-11|1993-09-22|1993-10-25|DELIVER IN PERSON|TRUCK| the furiously even foxes. regular, regula| +59337|401947|26964|4|29|53618.68|0.05|0.03|R|F|1993-11-09|1993-10-03|1993-12-03|COLLECT COD|AIR|t cajole thi| +59337|506986|6987|5|15|29894.40|0.00|0.02|R|F|1993-08-28|1993-10-07|1993-09-21|TAKE BACK RETURN|REG AIR|furiously final account| +59337|908292|8293|6|2|2600.50|0.01|0.02|R|F|1993-09-15|1993-10-22|1993-10-09|TAKE BACK RETURN|SHIP|n requests sle| +59337|662974|25488|7|4|7747.76|0.01|0.04|A|F|1993-12-08|1993-09-16|1993-12-16|DELIVER IN PERSON|FOB|ual deposits sleep carefully. bold T| +59338|591799|16822|1|36|68067.72|0.05|0.00|N|O|1997-02-20|1997-04-15|1997-03-01|NONE|MAIL|eposits. final ideas sleep fluffily above| +59338|349242|36761|2|8|10329.84|0.06|0.08|N|O|1997-03-13|1997-05-04|1997-04-10|COLLECT COD|FOB|ly sly courts. quickly expres| +59338|705396|5397|3|35|49047.60|0.01|0.07|N|O|1997-05-15|1997-03-11|1997-05-25|COLLECT COD|RAIL|eep carefu| +59338|588916|1428|4|49|98239.61|0.03|0.05|N|O|1997-03-02|1997-04-25|1997-03-09|DELIVER IN PERSON|MAIL|uses detect idl| +59338|902420|39975|5|28|39826.64|0.09|0.05|N|O|1997-05-03|1997-04-21|1997-05-31|TAKE BACK RETURN|MAIL|ccounts. ironic| +59339|21187|46188|1|14|15514.52|0.09|0.07|A|F|1993-12-20|1994-01-08|1993-12-25|TAKE BACK RETURN|RAIL|lithely special frays: | +59340|899080|36632|1|29|31292.16|0.03|0.01|N|O|1998-07-17|1998-07-04|1998-08-05|NONE|AIR| deposits. excuses x-ray furiously| +59340|837362|37363|2|50|64966.00|0.03|0.07|N|O|1998-08-03|1998-08-03|1998-08-19|NONE|RAIL|ly about the some| +59341|67186|29688|1|4|4612.72|0.08|0.05|A|F|1994-06-28|1994-08-20|1994-07-15|NONE|FOB|ajole slyly. slyl| +59341|186577|24087|2|18|29944.26|0.01|0.08|R|F|1994-07-12|1994-09-19|1994-07-29|TAKE BACK RETURN|RAIL|instructions solve. close accounts about | +59341|794236|31782|3|17|22613.40|0.10|0.03|R|F|1994-06-27|1994-07-26|1994-06-29|DELIVER IN PERSON|REG AIR|ymptotes haggle | +59341|718153|5696|4|47|55042.64|0.01|0.07|A|F|1994-07-26|1994-08-15|1994-08-21|DELIVER IN PERSON|REG AIR|e ideas wake against th| +59342|325139|152|1|36|41908.32|0.00|0.07|N|O|1997-09-09|1997-11-14|1997-10-04|DELIVER IN PERSON|FOB|ackages are idea| +59342|596988|34522|2|10|20849.60|0.09|0.00|N|O|1997-10-24|1997-10-20|1997-11-22|TAKE BACK RETURN|AIR|lyly pending excuse| +59342|572116|47139|3|46|54652.14|0.07|0.02|N|O|1997-11-26|1997-11-13|1997-12-21|NONE|TRUCK|lly permanent pinto be| +59342|549040|11551|4|11|11979.22|0.10|0.00|N|O|1997-09-18|1997-10-25|1997-09-27|NONE|TRUCK|gle accoun| +59342|714212|1755|5|33|40463.94|0.02|0.08|N|O|1997-11-12|1997-09-26|1997-11-28|COLLECT COD|TRUCK|unts haggle fluffily. bo| +59342|749623|24652|6|40|66903.60|0.06|0.06|N|O|1997-10-29|1997-10-20|1997-11-17|NONE|MAIL| regular deposits are slyly among the slow,| +59342|902860|15379|7|42|78238.44|0.04|0.02|N|O|1997-10-01|1997-10-09|1997-10-08|COLLECT COD|TRUCK|iously alongside of the furiously f| +59343|360159|22667|1|11|13410.54|0.04|0.07|N|O|1995-10-19|1995-09-28|1995-10-20|NONE|TRUCK|lyly unusual requests sleep. forges us| +59368|770821|8367|1|24|45402.96|0.03|0.00|A|F|1994-10-24|1994-12-01|1994-10-27|DELIVER IN PERSON|RAIL|sts. deposits| +59368|185877|10884|2|20|39257.40|0.07|0.01|R|F|1994-11-27|1994-12-28|1994-12-11|NONE|MAIL|e beside the slyly regular accounts. slyly | +59369|438982|13999|1|21|40340.16|0.06|0.05|N|O|1998-06-09|1998-06-24|1998-07-07|COLLECT COD|FOB|g ideas. carefully express| +59369|958623|46181|2|38|63900.04|0.06|0.06|N|O|1998-06-11|1998-05-11|1998-06-12|TAKE BACK RETURN|MAIL| ironic, final deposits are furi| +59369|565248|2782|3|45|59094.90|0.06|0.04|N|O|1998-05-29|1998-05-13|1998-06-02|TAKE BACK RETURN|SHIP|ins. carefully express foxes use quic| +59370|79259|29260|1|30|37147.50|0.04|0.02|N|O|1997-05-10|1997-05-30|1997-05-27|DELIVER IN PERSON|AIR| slyly regular ideas a| +59370|102786|40293|2|43|76917.54|0.02|0.05|N|O|1997-06-22|1997-05-08|1997-07-01|TAKE BACK RETURN|SHIP|y silent deposi| +59370|517258|29769|3|22|28055.06|0.02|0.05|N|O|1997-07-23|1997-05-18|1997-08-16|COLLECT COD|MAIL|s. theodolites| +59370|541219|28750|4|49|61749.31|0.02|0.00|N|O|1997-07-08|1997-06-21|1997-07-18|TAKE BACK RETURN|SHIP|. slyly even theodolites nag. even f| +59371|709752|34781|1|36|63421.92|0.06|0.06|A|F|1993-07-01|1993-07-22|1993-07-07|DELIVER IN PERSON|MAIL|boldly final requests alongside of the | +59371|790818|28364|2|22|41993.16|0.07|0.05|A|F|1993-08-07|1993-07-26|1993-08-14|DELIVER IN PERSON|AIR|ns until the final foxe| +59371|272454|47465|3|35|49925.40|0.03|0.08|R|F|1993-05-31|1993-08-14|1993-06-25|TAKE BACK RETURN|FOB|nly regular foxes are furiou| +59372|9115|21616|1|45|46084.95|0.05|0.05|N|O|1997-08-17|1997-08-14|1997-08-26|DELIVER IN PERSON|SHIP|yly ruthless packages cajole accord| +59373|749625|49626|1|42|70332.78|0.06|0.00|A|F|1992-03-18|1992-05-08|1992-04-13|NONE|MAIL|uriously final theodolites | +59374|892488|5006|1|41|60698.04|0.09|0.08|A|F|1994-05-22|1994-04-23|1994-06-19|COLLECT COD|TRUCK|s cajole regular | +59374|35539|10540|2|31|45710.43|0.06|0.01|R|F|1994-05-16|1994-03-24|1994-05-31|TAKE BACK RETURN|REG AIR| pinto beans. slyly pending theodolites | +59375|913129|25648|1|45|51393.60|0.01|0.07|N|O|1997-05-03|1997-05-21|1997-05-10|DELIVER IN PERSON|AIR|symptotes sleep slyly furiously unusual pla| +59375|957514|7515|2|6|9428.82|0.06|0.01|N|O|1997-06-16|1997-05-03|1997-07-06|NONE|TRUCK|latelets. quickly slow deposits c| +59375|928604|41123|3|3|4897.68|0.03|0.03|N|O|1997-04-22|1997-04-20|1997-05-07|COLLECT COD|TRUCK|sits ought to are | +59400|670346|7886|1|28|36856.68|0.07|0.03|A|F|1992-09-04|1992-06-28|1992-09-29|TAKE BACK RETURN|AIR| dugouts affix. exc| +59400|498845|48846|2|17|31344.94|0.08|0.07|R|F|1992-08-07|1992-07-20|1992-08-29|TAKE BACK RETURN|REG AIR|s nag slyl| +59401|676772|1799|1|31|54210.94|0.04|0.01|N|O|1998-01-22|1998-03-24|1998-02-15|TAKE BACK RETURN|SHIP|gle quickly. slyly ironic ideas| +59401|503187|40718|2|35|41655.60|0.02|0.00|N|O|1998-03-21|1998-03-23|1998-03-27|TAKE BACK RETURN|TRUCK| slyly special accoun| +59401|59003|9004|3|16|15392.00|0.03|0.05|N|O|1998-04-15|1998-01-28|1998-05-05|DELIVER IN PERSON|FOB|ages. quickly regular requests haggl| +59402|62075|24577|1|18|18667.26|0.02|0.08|N|O|1997-11-18|1997-09-24|1997-11-30|COLLECT COD|REG AIR|ages. carefully final deposits| +59402|291259|28775|2|23|28755.52|0.00|0.00|N|O|1997-11-12|1997-10-21|1997-12-02|DELIVER IN PERSON|TRUCK|inal accounts nag carefully even accounts.| +59403|157965|7966|1|29|58665.84|0.02|0.01|N|O|1998-02-07|1998-02-17|1998-02-10|DELIVER IN PERSON|REG AIR|nic pinto beans wake carefully acc| +59403|902187|14706|2|24|28539.36|0.07|0.03|N|O|1998-01-27|1998-01-22|1998-02-11|NONE|MAIL|about the furio| +59403|40380|27881|3|31|40931.78|0.01|0.00|N|O|1997-12-22|1998-02-11|1998-01-03|NONE|SHIP|packages solve furiously against the| +59403|657021|19535|4|13|12713.87|0.06|0.03|N|O|1998-01-05|1998-03-02|1998-01-23|COLLECT COD|SHIP|d, express deposits. fluffi| +59403|544018|19039|5|37|39293.63|0.05|0.06|N|O|1998-02-12|1998-01-25|1998-03-03|NONE|SHIP|ke carefully ironic asymptotes.| +59403|294462|6968|6|46|66996.70|0.06|0.06|N|O|1998-03-28|1998-02-17|1998-04-13|COLLECT COD|REG AIR|ar platelets use slyly regular | +59404|402183|39708|1|42|45576.72|0.07|0.02|N|O|1996-05-06|1996-07-22|1996-05-28|COLLECT COD|AIR| wake instructions. slyly fina| +59404|478806|28807|2|42|74960.76|0.05|0.04|N|O|1996-06-11|1996-06-24|1996-06-14|COLLECT COD|FOB|gular requests. theodolites| +59404|283473|8484|3|21|30585.66|0.00|0.00|N|O|1996-05-27|1996-06-07|1996-06-12|TAKE BACK RETURN|SHIP|lay idly special instructions. pain| +59404|319145|44158|4|35|40744.55|0.06|0.07|N|O|1996-08-04|1996-06-22|1996-08-31|TAKE BACK RETURN|REG AIR|ly regular sheaves wake furiously unusual t| +59405|355288|30303|1|37|49700.99|0.03|0.04|N|O|1997-07-25|1997-06-09|1997-08-21|COLLECT COD|TRUCK|xpress instructions haggl| +59405|315313|40326|2|3|3984.90|0.05|0.04|N|O|1997-07-02|1997-07-05|1997-07-17|COLLECT COD|RAIL|pending ideas haggle c| +59405|454672|29691|3|6|9759.90|0.09|0.00|N|O|1997-07-26|1997-06-10|1997-08-13|COLLECT COD|RAIL|wake. furiously regular f| +59405|668190|43217|4|12|13897.92|0.02|0.00|N|O|1997-06-28|1997-07-11|1997-07-08|TAKE BACK RETURN|AIR|n requests along the carefully even d| +59406|319233|44246|1|36|45079.92|0.06|0.06|N|O|1997-02-05|1996-12-29|1997-03-07|COLLECT COD|SHIP| haggle thin deposit| +59406|345259|32778|2|43|56082.32|0.08|0.04|N|O|1997-03-16|1997-02-18|1997-03-21|NONE|FOB|ounts wake instructions. accounts p| +59406|751919|26950|3|7|13796.16|0.00|0.00|N|O|1997-02-09|1997-01-15|1997-02-21|TAKE BACK RETURN|MAIL|ut the silent, even foxes. blithely e| +59406|489717|39718|4|8|13653.52|0.10|0.02|N|O|1997-02-28|1997-01-10|1997-03-30|DELIVER IN PERSON|AIR|haggle furiously theodolites. quickly silen| +59407|274354|36860|1|29|38521.86|0.00|0.03|A|F|1994-10-12|1994-11-29|1994-10-23|NONE|TRUCK| packages. fluffily special| +59432|360168|22676|1|28|34388.20|0.02|0.08|A|F|1992-08-03|1992-05-23|1992-08-31|DELIVER IN PERSON|TRUCK| pending excuses. sly| +59432|341039|16052|2|50|54001.00|0.09|0.00|A|F|1992-07-12|1992-07-11|1992-07-26|NONE|RAIL|ular deposits. slyly even i| +59432|840873|28422|3|49|88877.67|0.08|0.06|A|F|1992-05-17|1992-06-05|1992-06-01|NONE|REG AIR|ages. even, silent requests against t| +59432|545650|20671|4|25|42390.75|0.07|0.05|A|F|1992-05-25|1992-06-06|1992-06-10|TAKE BACK RETURN|FOB|usly according to the re| +59433|216812|4325|1|39|67423.20|0.09|0.01|N|O|1996-12-15|1996-10-24|1996-12-16|COLLECT COD|MAIL|ependencies use carefully a| +59433|958099|20619|2|23|26612.15|0.07|0.04|N|O|1996-11-29|1996-11-16|1996-12-13|DELIVER IN PERSON|AIR|efully express requests | +59433|761717|11718|3|24|42688.32|0.01|0.08|N|O|1996-11-06|1996-12-02|1996-11-08|NONE|RAIL|r sentiments use furious| +59433|173196|48203|4|8|10153.52|0.04|0.00|N|O|1996-10-06|1996-11-03|1996-10-15|TAKE BACK RETURN|AIR|ckly. blithely final deposi| +59434|743722|43723|1|42|74158.98|0.05|0.05|N|O|1997-05-15|1997-07-25|1997-05-23|TAKE BACK RETURN|REG AIR|s. quick pinto beans haggle fl| +59434|731014|18557|2|45|47024.10|0.02|0.03|N|O|1997-07-10|1997-06-23|1997-07-27|NONE|RAIL| final requests maintain.| +59434|146165|21170|3|22|26645.52|0.01|0.04|N|O|1997-05-16|1997-07-07|1997-05-24|COLLECT COD|SHIP|rnis cajole quickly carefully | +59434|582631|20165|4|26|44553.86|0.00|0.03|N|O|1997-05-20|1997-07-22|1997-06-05|DELIVER IN PERSON|FOB| the pinto bean| +59434|274931|24932|5|20|38118.40|0.09|0.07|N|O|1997-06-02|1997-06-17|1997-06-28|DELIVER IN PERSON|REG AIR|al, busy a| +59435|185351|35352|1|2|2872.70|0.05|0.08|A|F|1993-11-22|1993-10-28|1993-12-12|DELIVER IN PERSON|AIR| final accounts are | +59436|184032|9039|1|32|35712.96|0.08|0.03|R|F|1993-05-08|1993-06-01|1993-05-10|TAKE BACK RETURN|SHIP|thely unusual deposits| +59436|9455|34456|2|27|36840.15|0.06|0.00|A|F|1993-07-03|1993-06-11|1993-07-07|DELIVER IN PERSON|RAIL|should nag. special foxes cajole ca| +59436|909435|21954|3|46|66441.94|0.01|0.03|R|F|1993-06-21|1993-06-28|1993-06-25|COLLECT COD|FOB|sits. quickly ironic dep| +59436|867139|42174|4|26|28758.34|0.00|0.02|R|F|1993-06-07|1993-06-15|1993-06-24|TAKE BACK RETURN|FOB|ss the permanently unusual | +59436|990975|16014|5|41|84703.13|0.06|0.05|R|F|1993-08-05|1993-07-07|1993-09-04|DELIVER IN PERSON|FOB|ges sleep car| +59436|309922|22429|6|29|56025.39|0.06|0.02|R|F|1993-05-05|1993-06-15|1993-05-28|NONE|SHIP|riously unusual | +59437|582431|32432|1|22|33295.02|0.02|0.08|R|F|1994-03-12|1994-02-28|1994-03-22|NONE|REG AIR|riously special excuses haggle | +59437|917770|42807|2|50|89386.50|0.00|0.07|R|F|1994-03-16|1994-04-05|1994-03-18|COLLECT COD|TRUCK|lyly bold accoun| +59437|960322|10323|3|24|33174.72|0.10|0.01|R|F|1994-04-05|1994-04-27|1994-04-09|DELIVER IN PERSON|SHIP| ironic pin| +59437|129406|29407|4|10|14354.00|0.10|0.04|R|F|1994-04-13|1994-02-27|1994-05-03|DELIVER IN PERSON|REG AIR| the carefully f| +59438|196921|34431|1|36|72645.12|0.02|0.02|N|O|1997-11-16|1997-12-28|1997-12-03|NONE|AIR|es. slyly unusual reques| +59438|647254|34791|2|2|2402.44|0.03|0.08|N|O|1997-12-15|1998-01-13|1998-01-11|COLLECT COD|MAIL|dolites. de| +59439|987467|49987|1|31|48187.02|0.06|0.07|R|F|1994-10-16|1994-09-10|1994-10-24|DELIVER IN PERSON|MAIL|ly after the fluffily regular| +59464|433232|8249|1|32|37286.72|0.01|0.02|N|O|1996-01-27|1995-11-27|1996-01-29|DELIVER IN PERSON|FOB|pinto beans. fluff| +59464|329181|16700|2|26|31464.42|0.08|0.08|N|O|1995-12-21|1995-11-18|1996-01-08|COLLECT COD|AIR|sly even ideas. iron| +59464|533270|45781|3|22|28671.50|0.00|0.02|N|O|1996-01-06|1995-12-01|1996-01-11|COLLECT COD|AIR|ideas haggle slyly according to the even| +59464|660599|10600|4|13|20274.28|0.09|0.03|N|O|1995-10-12|1995-12-06|1995-10-14|NONE|RAIL|gular packages. final, ironic accou| +59464|678403|3430|5|12|16576.44|0.02|0.08|N|O|1996-01-19|1995-12-03|1996-01-31|COLLECT COD|TRUCK|unusual instructions. furio| +59464|913465|1020|6|20|29568.40|0.07|0.01|N|O|1996-01-24|1995-12-26|1996-02-01|TAKE BACK RETURN|SHIP| packages cajole slyly regular deposit| +59465|668475|30989|1|18|25981.92|0.06|0.08|N|O|1996-05-06|1996-03-19|1996-05-30|COLLECT COD|REG AIR|ons use slyly along the regul| +59465|46264|46265|2|23|27835.98|0.06|0.07|N|O|1996-02-26|1996-04-06|1996-03-25|TAKE BACK RETURN|FOB|. blithely unusual requests haggle after t| +59466|961308|48866|1|17|23277.42|0.05|0.01|A|F|1992-06-16|1992-07-17|1992-07-07|TAKE BACK RETURN|MAIL| theodolites boost furiously blithely pe| +59466|694496|19523|2|12|17885.52|0.01|0.02|R|F|1992-08-29|1992-07-08|1992-09-19|COLLECT COD|AIR|aggle slyly express pac| +59466|380413|30414|3|5|7467.00|0.10|0.03|R|F|1992-09-03|1992-07-29|1992-09-23|TAKE BACK RETURN|REG AIR|tes. slyly ev| +59466|588326|838|4|5|7071.50|0.03|0.04|A|F|1992-06-27|1992-08-05|1992-07-22|COLLECT COD|MAIL|slyly quickly | +59466|991521|16560|5|6|9674.88|0.06|0.06|R|F|1992-05-28|1992-07-13|1992-06-22|COLLECT COD|RAIL|gular pinto beans use. slyly ironic | +59467|802576|27609|1|17|25135.01|0.02|0.06|N|O|1995-11-22|1995-10-09|1995-12-10|DELIVER IN PERSON|TRUCK| ironic foxes wake blithely aga| +59467|886188|23740|2|25|29353.50|0.00|0.00|N|O|1995-10-18|1995-10-12|1995-10-24|DELIVER IN PERSON|MAIL|ily ironic | +59467|161269|11270|3|6|7981.56|0.03|0.01|N|O|1995-12-21|1995-12-05|1996-01-16|TAKE BACK RETURN|FOB|ake blithely amon| +59468|193757|18764|1|39|72179.25|0.10|0.02|A|F|1992-08-13|1992-08-08|1992-09-03|TAKE BACK RETURN|RAIL|uickly regular packages detect carefully bo| +59469|492172|42173|1|47|54715.05|0.02|0.01|N|O|1996-02-25|1996-04-22|1996-03-20|DELIVER IN PERSON|SHIP|unts. idea| +59469|927491|15046|2|21|31887.45|0.06|0.03|N|O|1996-01-31|1996-03-31|1996-03-01|DELIVER IN PERSON|TRUCK|uickly along the fluffily even pack| +59470|421844|21845|1|16|28253.12|0.08|0.04|R|F|1992-04-04|1992-04-07|1992-04-20|DELIVER IN PERSON|AIR|, blithe requests believe brave acc| +59470|920278|32797|2|37|48034.51|0.10|0.08|R|F|1992-03-17|1992-04-22|1992-03-21|COLLECT COD|AIR| packages are after the slyly even sent| +59470|108600|33605|3|47|75604.20|0.05|0.07|R|F|1992-04-08|1992-03-18|1992-04-12|TAKE BACK RETURN|RAIL| requests. carefully regular| +59471|159197|21701|1|44|55272.36|0.00|0.04|R|F|1995-03-17|1995-01-30|1995-03-19|DELIVER IN PERSON|TRUCK|ular deposits. quickly express exc| +59471|617263|17264|2|14|16523.22|0.02|0.07|R|F|1995-01-28|1995-03-03|1995-02-09|NONE|TRUCK|fully unusual packages. bold dugouts acco| +59471|335709|48216|3|49|85489.81|0.09|0.02|A|F|1995-01-13|1995-02-25|1995-02-03|TAKE BACK RETURN|FOB|ly. furiously ironic dolphin| +59471|247572|35085|4|24|36469.44|0.00|0.01|R|F|1995-03-12|1995-02-15|1995-03-27|DELIVER IN PERSON|TRUCK|y regular request| +59471|931347|43866|5|6|8269.80|0.10|0.05|A|F|1995-01-12|1995-01-24|1995-02-10|NONE|FOB|ets cajole furiously s| +59496|550762|13274|1|6|10876.44|0.07|0.05|N|O|1997-06-18|1997-08-26|1997-07-13|DELIVER IN PERSON|AIR|hely final foxes. unusual, unusual theod| +59496|656219|43759|2|43|50532.74|0.03|0.06|N|O|1997-06-28|1997-08-06|1997-06-29|NONE|AIR|packages. regular packages are furious| +59496|68630|31132|3|17|27176.71|0.08|0.05|N|O|1997-06-23|1997-07-12|1997-06-27|NONE|REG AIR|ly among the blith| +59496|451601|26620|4|16|24841.28|0.02|0.08|N|O|1997-08-18|1997-08-01|1997-09-02|DELIVER IN PERSON|REG AIR|, special requests. regular| +59496|51813|1814|5|5|8824.05|0.07|0.06|N|O|1997-09-28|1997-08-04|1997-10-14|DELIVER IN PERSON|MAIL| furiously after the bold packages.| +59496|815588|28105|6|5|7517.70|0.02|0.08|N|O|1997-07-24|1997-07-12|1997-07-28|NONE|REG AIR|requests. furiously final Ti| +59497|889167|14202|1|33|38151.96|0.10|0.07|A|F|1993-06-07|1993-06-02|1993-07-07|DELIVER IN PERSON|REG AIR|deposits are carefully. regular req| +59497|228259|40764|2|46|54613.04|0.04|0.04|A|F|1993-05-06|1993-05-29|1993-05-16|COLLECT COD|FOB|nts after the slyly even deposits affix| +59497|347098|22111|3|17|19466.36|0.09|0.02|A|F|1993-07-01|1993-06-01|1993-07-18|COLLECT COD|TRUCK|heodolites. idly regula| +59497|663596|38623|4|3|4678.68|0.05|0.03|A|F|1993-03-11|1993-05-17|1993-03-19|TAKE BACK RETURN|TRUCK|dolites. bl| +59498|138493|996|1|3|4594.47|0.05|0.02|N|O|1995-06-26|1995-04-21|1995-06-28|TAKE BACK RETURN|FOB|inal theodolites sleep slyly. slyly specia| +59498|650288|12802|2|3|3714.75|0.05|0.05|N|F|1995-06-01|1995-04-18|1995-06-19|COLLECT COD|TRUCK|e slyly regular packages. furiously | +59498|388508|26030|3|33|52684.17|0.02|0.01|A|F|1995-05-13|1995-05-29|1995-06-11|TAKE BACK RETURN|AIR|es. furiously final | +59498|647494|10007|4|24|34595.04|0.02|0.03|N|O|1995-06-27|1995-05-17|1995-07-20|TAKE BACK RETURN|REG AIR|s thrash abou| +59498|423969|23970|5|28|53002.32|0.06|0.07|N|O|1995-06-29|1995-06-04|1995-07-06|TAKE BACK RETURN|RAIL| deposits cajole furiously. doggedly speci| +59498|636102|48615|6|30|31142.10|0.03|0.01|N|O|1995-06-18|1995-04-17|1995-07-10|TAKE BACK RETURN|FOB|gular package| +59498|961698|11699|7|7|12317.55|0.01|0.00|N|F|1995-05-25|1995-04-22|1995-06-20|COLLECT COD|AIR|jole. carefully ironic instructi| +59499|255255|30266|1|11|13312.64|0.08|0.01|R|F|1993-09-01|1993-09-26|1993-09-26|DELIVER IN PERSON|SHIP|hely about the even grou| +59499|61297|11298|2|1|1258.29|0.03|0.03|R|F|1993-08-14|1993-11-01|1993-09-07|DELIVER IN PERSON|FOB|according to the slyly final courts. slyly| +59499|218264|5777|3|17|20098.25|0.08|0.04|R|F|1993-11-19|1993-09-18|1993-12-02|TAKE BACK RETURN|RAIL|s are. depths nag| +59500|710827|10828|1|50|91889.50|0.08|0.01|A|F|1993-02-17|1993-01-09|1993-03-15|NONE|MAIL|ggle evenly along the furiou| +59501|773423|48454|1|9|13467.51|0.03|0.00|R|F|1995-01-21|1995-02-22|1995-02-09|TAKE BACK RETURN|MAIL|oss the regular, regular packages. thinly | +59501|909344|34381|2|44|59545.20|0.03|0.08|R|F|1995-03-11|1995-02-16|1995-03-29|NONE|FOB|fluffily express asymptotes | +59501|339784|2291|3|18|32827.86|0.00|0.05|R|F|1995-03-29|1995-03-22|1995-04-05|COLLECT COD|MAIL|aggle quickly. | +59501|733930|33931|4|29|56953.10|0.10|0.04|A|F|1995-03-27|1995-02-26|1995-04-02|NONE|MAIL| above the carefully final | +59501|153269|15773|5|12|15867.12|0.06|0.03|A|F|1995-02-23|1995-02-12|1995-03-15|TAKE BACK RETURN|AIR| use slyly. dependencies according| +59501|983662|21220|6|28|48877.36|0.08|0.03|R|F|1995-04-19|1995-02-28|1995-04-30|TAKE BACK RETURN|FOB|nic pearls b| +59502|937763|282|1|43|77430.96|0.04|0.02|R|F|1992-10-27|1992-09-22|1992-11-25|DELIVER IN PERSON|SHIP|ers wake slyly acc| +59502|968245|5803|2|9|11818.80|0.09|0.05|A|F|1992-09-06|1992-09-21|1992-10-05|DELIVER IN PERSON|TRUCK|es cajole furiously. regular pi| +59502|285586|10597|3|4|6286.28|0.03|0.04|R|F|1992-12-07|1992-10-08|1992-12-31|NONE|RAIL|ly bold theo| +59502|827930|40447|4|43|79889.27|0.10|0.07|A|F|1992-10-09|1992-10-10|1992-11-05|DELIVER IN PERSON|MAIL|ul theodolites| +59502|16999|4500|5|8|15327.92|0.07|0.07|A|F|1992-10-03|1992-11-13|1992-10-14|NONE|MAIL|sts boost carefully furiously unusu| +59502|699262|24289|6|6|7567.38|0.02|0.03|R|F|1992-10-19|1992-10-17|1992-11-03|TAKE BACK RETURN|AIR|he quickly regu| +59503|605134|42671|1|35|36368.50|0.07|0.07|N|O|1998-08-12|1998-07-10|1998-09-11|DELIVER IN PERSON|MAIL| final accounts haggle after th| +59503|470826|33336|2|48|86246.40|0.03|0.07|N|O|1998-09-06|1998-08-09|1998-09-14|DELIVER IN PERSON|TRUCK|ng, special accounts sleep? expre| +59503|171561|21562|3|11|17958.16|0.07|0.05|N|O|1998-06-15|1998-07-15|1998-06-22|DELIVER IN PERSON|TRUCK|ly final request| +59503|409152|21661|4|26|27589.38|0.04|0.05|N|O|1998-08-19|1998-08-03|1998-08-22|NONE|MAIL|lithely regu| +59503|601525|14038|5|43|61339.07|0.00|0.05|N|O|1998-09-10|1998-07-24|1998-09-11|NONE|TRUCK|gular dinos hang slyly. accounts ought t| +59528|758452|8453|1|21|31718.82|0.02|0.07|A|F|1993-01-05|1992-12-01|1993-01-23|DELIVER IN PERSON|FOB|leep special depths. blithely | +59528|288145|38146|2|29|32860.77|0.02|0.01|A|F|1992-12-30|1992-11-08|1993-01-04|TAKE BACK RETURN|SHIP|s boost alongside of| +59528|837430|12463|3|16|21878.24|0.07|0.08|R|F|1992-10-06|1992-10-12|1992-10-20|DELIVER IN PERSON|MAIL|ronic foxes. | +59528|670229|7769|4|14|16788.66|0.09|0.04|A|F|1992-12-31|1992-10-21|1993-01-02|TAKE BACK RETURN|MAIL|the quickly b| +59529|920925|45962|1|31|60322.28|0.03|0.05|R|F|1993-12-26|1994-01-26|1994-01-05|COLLECT COD|MAIL|efully enticing escapades w| +59529|978183|3222|2|45|56751.30|0.09|0.07|A|F|1994-01-22|1993-12-26|1994-02-09|TAKE BACK RETURN|SHIP|arefully excuses. deposi| +59529|306113|18620|3|31|34692.10|0.08|0.01|R|F|1993-11-15|1994-01-21|1993-12-06|DELIVER IN PERSON|AIR|bravely. pin| +59530|109091|46598|1|14|15401.26|0.00|0.06|N|O|1998-05-12|1998-07-05|1998-05-25|COLLECT COD|REG AIR|ly according to the blithely pe| +59530|487949|12968|2|32|61981.44|0.06|0.00|N|O|1998-05-25|1998-06-25|1998-05-28|DELIVER IN PERSON|RAIL|. blithely special pla| +59530|947150|47151|3|28|33519.08|0.08|0.08|N|O|1998-07-28|1998-06-04|1998-08-16|TAKE BACK RETURN|REG AIR|bt blithely. unusual dolphins sl| +59530|747638|10153|4|9|15170.40|0.02|0.05|N|O|1998-04-20|1998-05-30|1998-04-27|NONE|MAIL|pliers are fluffily b| +59530|543032|18053|5|8|8600.08|0.01|0.08|N|O|1998-05-20|1998-05-20|1998-06-07|COLLECT COD|SHIP| along the unusual, final pinto beans.| +59531|820776|33293|1|20|33934.60|0.00|0.07|N|O|1996-02-07|1995-11-19|1996-02-21|DELIVER IN PERSON|SHIP|pecial dolphi| +59532|866511|41546|1|38|56143.86|0.04|0.07|R|F|1994-12-28|1995-01-07|1995-01-15|NONE|AIR|nic foxes haggle slyly sly| +59532|447705|10214|2|38|62801.84|0.07|0.07|R|F|1995-02-25|1995-02-18|1995-03-10|TAKE BACK RETURN|SHIP| above the slyly even depos| +59533|115806|40811|1|39|71050.20|0.05|0.03|N|O|1998-09-12|1998-09-13|1998-10-08|TAKE BACK RETURN|MAIL| silent accounts snooze after the | +59533|351276|38798|2|48|63708.48|0.02|0.00|N|O|1998-09-20|1998-09-04|1998-10-02|COLLECT COD|AIR|f the carefully regular theodolit| +59533|893873|6391|3|38|70939.54|0.03|0.07|N|O|1998-09-06|1998-08-01|1998-09-15|TAKE BACK RETURN|SHIP|ag since th| +59533|316507|41520|4|49|74651.01|0.08|0.06|N|O|1998-10-05|1998-09-02|1998-10-16|TAKE BACK RETURN|RAIL|grate silen| +59534|761967|49513|1|37|75070.41|0.10|0.07|A|F|1994-11-02|1994-09-20|1994-11-05|NONE|TRUCK|r dolphins. instructions are blithely| +59534|369117|31625|2|39|46257.90|0.03|0.01|A|F|1994-11-02|1994-09-04|1994-11-19|DELIVER IN PERSON|SHIP|s. final the| +59534|733224|33225|3|44|55316.36|0.09|0.00|R|F|1994-08-16|1994-09-23|1994-08-28|COLLECT COD|TRUCK|ly regular foxes integrate blithely. ac| +59534|290082|27598|4|41|43954.87|0.08|0.07|A|F|1994-08-22|1994-09-02|1994-09-07|NONE|REG AIR|sts. ironic, final asymptotes use ac| +59534|399008|24023|5|6|6641.94|0.01|0.08|A|F|1994-09-25|1994-08-30|1994-09-29|DELIVER IN PERSON|RAIL| regular requ| +59534|111647|36652|6|33|54735.12|0.07|0.06|R|F|1994-10-03|1994-09-01|1994-10-25|COLLECT COD|REG AIR|ual, even packages. furiously unusua| +59534|443743|31268|7|19|32047.68|0.06|0.03|A|F|1994-09-18|1994-08-21|1994-09-29|NONE|SHIP|c theodolites. unu| +59535|988077|597|1|5|5825.15|0.07|0.02|N|O|1998-05-17|1998-07-05|1998-05-27|NONE|MAIL|ajole about the bold, ironic pla| +59535|607827|7828|2|16|27756.64|0.07|0.04|N|O|1998-06-03|1998-07-24|1998-06-08|NONE|AIR|ccounts. packages among the pendin| +59535|739806|27349|3|21|38761.17|0.05|0.04|N|O|1998-08-21|1998-07-24|1998-09-01|COLLECT COD|RAIL| slyly quickly even req| +59560|692295|29835|1|33|42479.58|0.07|0.01|N|O|1996-02-22|1996-01-21|1996-03-13|NONE|AIR|ld requests haggle fluffily quickly even ac| +59560|392819|30341|2|37|70736.60|0.02|0.08|N|O|1995-11-19|1996-02-09|1995-12-05|TAKE BACK RETURN|SHIP|to beans use quickly care| +59560|107730|7731|3|30|52131.90|0.07|0.04|N|O|1996-02-26|1996-01-23|1996-03-18|DELIVER IN PERSON|FOB|onic packages wake. regular, ir| +59560|615510|28023|4|9|12829.32|0.00|0.02|N|O|1996-02-21|1995-12-30|1996-03-16|TAKE BACK RETURN|MAIL|hely ironic platelets integrate qu| +59561|994977|32535|1|50|103596.50|0.10|0.05|N|O|1996-01-13|1996-04-02|1996-02-07|TAKE BACK RETURN|REG AIR|to beans around the bold somas wake slyl| +59561|574326|24327|2|39|54611.70|0.03|0.03|N|O|1996-01-14|1996-02-25|1996-01-26|NONE|AIR|l theodolites run blithely express dependen| +59561|682603|20143|3|8|12684.56|0.09|0.06|N|O|1996-03-05|1996-02-29|1996-03-28|NONE|MAIL| sleep. regular d| +59561|506094|31115|4|26|28601.82|0.10|0.07|N|O|1996-01-31|1996-02-16|1996-02-26|COLLECT COD|RAIL|ly express accounts. f| +59562|917904|17905|1|24|46124.64|0.09|0.05|N|O|1995-06-26|1995-06-24|1995-07-08|TAKE BACK RETURN|FOB|e fluffily special instructions. ironic de| +59563|27512|27513|1|7|10076.57|0.04|0.08|N|O|1998-02-15|1998-02-11|1998-03-10|COLLECT COD|TRUCK| quickly expre| +59563|379666|4681|2|38|66334.70|0.00|0.01|N|O|1998-01-31|1998-02-26|1998-02-08|COLLECT COD|REG AIR|ly ironic instructions dete| +59563|35229|22730|3|42|48897.24|0.07|0.07|N|O|1998-01-06|1998-02-02|1998-01-12|TAKE BACK RETURN|AIR|ly final ideas. | +59563|87766|37767|4|41|71904.16|0.09|0.06|N|O|1997-12-27|1998-01-16|1997-12-31|COLLECT COD|MAIL|gside of the| +59564|518237|18238|1|2|2510.42|0.10|0.02|A|F|1992-04-13|1992-03-01|1992-05-02|DELIVER IN PERSON|REG AIR|ily quiet dugouts | +59564|996136|46137|2|18|22177.62|0.10|0.04|R|F|1992-04-02|1992-03-21|1992-04-04|DELIVER IN PERSON|TRUCK|special theodolites boost! fur| +59564|57352|19854|3|30|39280.50|0.01|0.06|A|F|1992-02-28|1992-02-17|1992-03-15|TAKE BACK RETURN|AIR|requests. fluffily even r| +59564|904709|17228|4|39|66832.74|0.09|0.05|R|F|1992-03-09|1992-02-27|1992-03-23|TAKE BACK RETURN|AIR|sts haggle bold acco| +59564|440009|40010|5|6|5693.88|0.07|0.00|R|F|1992-03-13|1992-03-28|1992-03-21|COLLECT COD|FOB|hely regular accounts. quick| +59565|436911|11928|1|39|72067.71|0.06|0.06|A|F|1993-03-08|1993-04-22|1993-04-02|COLLECT COD|FOB| accounts maintain | +59565|161865|36872|2|37|71293.82|0.02|0.07|R|F|1993-02-28|1993-03-19|1993-03-16|TAKE BACK RETURN|RAIL|thely special accounts.| +59565|457687|45215|3|27|44405.82|0.05|0.07|A|F|1993-03-23|1993-02-28|1993-04-17|TAKE BACK RETURN|FOB|ecial deposits play slyly foxes. bli| +59565|333710|46217|4|18|31386.60|0.00|0.06|A|F|1993-04-07|1993-04-14|1993-04-30|NONE|AIR|the even dolphins| +59565|647372|34909|5|8|10554.72|0.03|0.01|A|F|1993-05-04|1993-02-26|1993-05-10|NONE|FOB|ainments haggle. f| +59565|373139|48154|6|21|25454.52|0.08|0.04|A|F|1993-02-12|1993-03-05|1993-03-05|TAKE BACK RETURN|SHIP|st the carefully bold deposits. furiou| +59565|342559|17572|7|44|70467.76|0.09|0.06|R|F|1993-02-11|1993-04-06|1993-03-01|COLLECT COD|RAIL|gular packages. blithely q| +59566|387465|49973|1|15|23286.75|0.01|0.03|A|F|1993-01-04|1993-01-10|1993-02-01|TAKE BACK RETURN|AIR|he regular instructions. b| +59566|116036|28539|2|9|9468.27|0.04|0.06|A|F|1993-01-12|1993-01-18|1993-01-26|DELIVER IN PERSON|SHIP|l requests abov| +59567|925713|13268|1|36|62592.12|0.01|0.02|N|O|1998-07-17|1998-06-24|1998-08-02|DELIVER IN PERSON|MAIL|ly special accounts. theodolites prom| +59567|442940|30465|2|12|22595.04|0.10|0.05|N|O|1998-05-18|1998-07-12|1998-06-12|TAKE BACK RETURN|MAIL|packages. theodolites haggle | +59567|480468|42978|3|47|68076.68|0.04|0.08|N|O|1998-09-10|1998-08-09|1998-09-22|NONE|MAIL|ts use slyly around the| +59567|223893|36398|4|9|16351.92|0.04|0.02|N|O|1998-09-02|1998-07-20|1998-09-25|NONE|AIR|counts. carefully regular d| +59567|958177|20697|5|6|7410.78|0.00|0.06|N|O|1998-09-14|1998-06-21|1998-09-25|COLLECT COD|FOB| carefully accounts. ca| +59592|957966|7967|1|41|82980.72|0.08|0.08|N|O|1997-03-31|1997-06-24|1997-04-28|TAKE BACK RETURN|MAIL|orges use. silent pla| +59592|533010|8031|2|48|50063.52|0.02|0.01|N|O|1997-05-05|1997-06-19|1997-06-02|DELIVER IN PERSON|REG AIR|less asymptotes. requests c| +59592|288805|38806|3|8|14350.32|0.09|0.01|N|O|1997-05-02|1997-05-09|1997-05-05|COLLECT COD|AIR|ly ironic theodolites against| +59592|933022|8059|4|36|37979.28|0.08|0.01|N|O|1997-05-03|1997-05-10|1997-05-05|COLLECT COD|MAIL|lyly furiously even r| +59592|291697|4203|5|12|20264.16|0.04|0.03|N|O|1997-04-15|1997-05-07|1997-04-18|TAKE BACK RETURN|FOB|furiously regular foxes.| +59592|544949|7460|6|26|51841.92|0.10|0.06|N|O|1997-05-08|1997-05-16|1997-05-16|TAKE BACK RETURN|MAIL|about the | +59592|955191|42749|7|39|48599.85|0.05|0.08|N|O|1997-03-29|1997-05-07|1997-04-03|COLLECT COD|MAIL|lithely against the silent | +59593|882699|7734|1|27|45404.55|0.03|0.04|N|O|1997-01-08|1997-01-19|1997-02-06|COLLECT COD|MAIL|ithely bol| +59593|519607|19608|2|33|53677.14|0.01|0.01|N|O|1996-12-15|1997-01-06|1996-12-20|TAKE BACK RETURN|REG AIR|to beans use blithely regular | +59593|24438|11939|3|38|51772.34|0.00|0.08|N|O|1997-02-11|1996-12-19|1997-02-24|NONE|SHIP|l, final bra| +59594|114088|1595|1|16|17633.28|0.03|0.03|N|O|1997-11-19|1997-11-19|1997-12-09|COLLECT COD|TRUCK|ly across the pinto beans; bravel| +59594|468616|18617|2|25|39614.75|0.00|0.06|N|O|1997-11-15|1997-11-09|1997-12-02|DELIVER IN PERSON|REG AIR| foxes wake. slyly even dependencies ca| +59594|25914|38415|3|4|7359.64|0.01|0.03|N|O|1997-12-30|1997-11-01|1998-01-19|NONE|REG AIR| express excuses. blithely re| +59594|522924|35435|4|23|44778.70|0.01|0.00|N|O|1997-12-21|1997-10-08|1997-12-31|NONE|TRUCK|aves believe furiously above the enticingly| +59594|776033|26034|5|50|55450.00|0.02|0.06|N|O|1997-12-22|1997-11-28|1998-01-08|DELIVER IN PERSON|MAIL| wake carefully| +59595|945995|21032|1|3|6122.85|0.08|0.02|R|F|1994-01-31|1994-01-02|1994-02-20|TAKE BACK RETURN|MAIL| requests sleep. instructions accord| +59595|330909|30910|2|33|64016.37|0.05|0.06|A|F|1994-01-21|1994-02-01|1994-02-19|NONE|REG AIR|blithely. carefully brave dependencies tr| +59595|577529|27530|3|16|25704.00|0.06|0.08|A|F|1993-12-09|1994-01-26|1993-12-15|NONE|REG AIR|odolites play bli| +59595|520808|8339|4|31|56692.18|0.00|0.05|A|F|1994-03-17|1994-01-02|1994-04-16|NONE|AIR|ogs. carefully regular pinto beans use flu| +59595|210679|35688|5|2|3179.32|0.07|0.07|R|F|1994-03-26|1994-01-04|1994-03-29|DELIVER IN PERSON|AIR|hely along the furiously fi| +59595|869093|44128|6|20|21241.00|0.10|0.06|R|F|1994-01-04|1994-03-01|1994-01-31|TAKE BACK RETURN|MAIL|e ironic requests. fluf| +59595|832455|32456|7|40|55496.40|0.08|0.04|A|F|1994-01-12|1994-02-06|1994-01-31|NONE|FOB|e carefully unusual, p| +59596|68796|43799|1|30|52943.70|0.10|0.02|N|O|1996-12-06|1996-12-26|1996-12-29|DELIVER IN PERSON|RAIL|sts. slyly ironic t| +59596|239471|39472|2|23|32440.58|0.10|0.05|N|O|1996-12-13|1996-12-16|1997-01-01|COLLECT COD|RAIL|express, even accounts wake. ironic, | +59596|785017|47533|3|4|4407.92|0.08|0.04|N|O|1997-01-22|1996-11-24|1997-02-19|TAKE BACK RETURN|REG AIR|ons. slyly special instructions after the| +59596|765434|40465|4|40|59976.00|0.06|0.04|N|O|1996-11-29|1996-12-02|1996-12-02|COLLECT COD|AIR|kly unusual realms. | +59596|635543|10568|5|21|31048.71|0.09|0.01|N|O|1996-11-30|1997-01-08|1996-12-04|NONE|MAIL|es. regular deposits doze. carefully expr| +59596|570642|8176|6|46|78780.52|0.03|0.06|N|O|1997-01-01|1996-11-30|1997-01-08|NONE|AIR|ash furiously. packag| +59596|774817|12363|7|17|32160.26|0.00|0.02|N|O|1996-12-05|1996-11-17|1996-12-26|DELIVER IN PERSON|TRUCK| regular foxes. | +59597|345063|20076|1|49|54294.45|0.00|0.08|N|O|1998-06-22|1998-08-17|1998-07-19|NONE|SHIP|e carefully a| +59597|458716|46244|2|3|5024.07|0.03|0.01|N|O|1998-09-12|1998-07-27|1998-09-18|TAKE BACK RETURN|FOB|ckly against the sly deposits. instructi| +59598|492860|42861|1|46|85230.64|0.01|0.07|N|O|1996-08-05|1996-06-27|1996-08-26|NONE|AIR| ruthless packages wake among the quickly| +59598|483821|8840|2|46|83020.80|0.07|0.08|N|O|1996-05-20|1996-08-01|1996-05-21|NONE|FOB|st the quickl| +59599|984655|9694|1|36|62625.96|0.00|0.00|N|O|1997-02-28|1997-04-16|1997-03-22|COLLECT COD|FOB|equests x-ray furiousl| +59599|93694|6196|2|29|48943.01|0.09|0.03|N|O|1997-04-25|1997-04-26|1997-05-25|DELIVER IN PERSON|AIR|quickly. pending foxes use f| +59599|709198|34227|3|9|10864.44|0.00|0.01|N|O|1997-04-29|1997-04-30|1997-05-18|DELIVER IN PERSON|REG AIR|ular instructions. ironic packages poa| +59599|481415|18943|4|13|18153.07|0.01|0.04|N|O|1997-05-17|1997-04-26|1997-06-09|TAKE BACK RETURN|AIR|g the ironic ideas.| +59599|125760|765|5|19|33929.44|0.06|0.08|N|O|1997-04-13|1997-04-08|1997-05-02|COLLECT COD|RAIL|nstructions sl| +59599|645335|45336|6|42|53772.60|0.09|0.04|N|O|1997-05-15|1997-04-27|1997-05-16|DELIVER IN PERSON|FOB|ilent packages cajole after| +59599|139583|27090|7|15|24338.70|0.07|0.05|N|O|1997-05-18|1997-04-26|1997-06-14|NONE|TRUCK| ironic dependen| +59624|957309|19829|1|30|40987.80|0.04|0.07|R|F|1994-04-06|1994-02-02|1994-04-23|DELIVER IN PERSON|MAIL|s nod carefully according to the bli| +59624|479492|4511|2|41|60330.27|0.07|0.08|A|F|1994-03-20|1994-02-25|1994-04-15|DELIVER IN PERSON|TRUCK|inal accounts. q| +59624|814485|27002|3|23|32187.12|0.04|0.05|R|F|1994-03-12|1994-02-03|1994-03-13|NONE|MAIL| slyly instructions| +59624|45457|32958|4|40|56098.00|0.06|0.03|R|F|1994-04-12|1994-01-30|1994-05-06|TAKE BACK RETURN|FOB|nto beans haggle against the fluffily bold | +59624|988426|946|5|10|15143.80|0.07|0.05|R|F|1994-04-15|1994-03-22|1994-04-26|DELIVER IN PERSON|SHIP|ites wake blithely. furiously bold theo| +59625|748301|10816|1|36|48573.72|0.00|0.04|N|O|1996-07-01|1996-07-17|1996-07-03|NONE|TRUCK|uses. blithely | +59625|688791|13818|2|2|3559.52|0.03|0.07|N|O|1996-05-27|1996-08-14|1996-06-11|NONE|REG AIR|ely final accounts. caref| +59625|500729|25750|3|22|38053.40|0.06|0.08|N|O|1996-08-18|1996-07-20|1996-08-21|TAKE BACK RETURN|RAIL|eposits. accounts cajole. silent instructio| +59625|744915|44916|4|19|37237.72|0.01|0.00|N|O|1996-08-26|1996-08-14|1996-09-20|TAKE BACK RETURN|FOB|t packages eat slyly slyly ironic dep| +59625|774502|12048|5|26|40988.22|0.00|0.06|N|O|1996-07-06|1996-08-16|1996-08-03|DELIVER IN PERSON|MAIL|. quickly even deposits boost| +59625|52355|27358|6|33|43142.55|0.09|0.05|N|O|1996-08-22|1996-07-30|1996-09-08|TAKE BACK RETURN|REG AIR|ing excuses | +59625|924879|12434|7|50|95191.50|0.02|0.07|N|O|1996-05-30|1996-08-18|1996-06-02|DELIVER IN PERSON|TRUCK|osits are caref| +59626|435789|48298|1|14|24146.64|0.07|0.01|A|F|1994-08-02|1994-07-06|1994-08-05|NONE|RAIL|riously regular platel| +59626|302593|27606|2|12|19146.96|0.01|0.00|A|F|1994-05-24|1994-06-13|1994-05-28|NONE|TRUCK|leep silent, even packages. special| +59626|665758|28272|3|13|22408.36|0.07|0.05|R|F|1994-08-15|1994-05-29|1994-08-19|DELIVER IN PERSON|REG AIR|e carefully final | +59627|552371|39905|1|43|61204.05|0.02|0.00|N|O|1996-05-09|1996-04-25|1996-05-27|DELIVER IN PERSON|SHIP| sleep blithely across the eve| +59628|199826|49827|1|8|15406.56|0.08|0.02|A|F|1992-05-15|1992-05-21|1992-06-10|NONE|RAIL|ly ironic | +59628|459818|9819|2|10|17777.90|0.03|0.03|A|F|1992-06-21|1992-07-02|1992-07-07|DELIVER IN PERSON|SHIP|y against the blithe| +59628|157287|7288|3|8|10754.24|0.10|0.06|R|F|1992-06-07|1992-05-25|1992-06-09|DELIVER IN PERSON|AIR|ounts along the unusual depo| +59628|512737|268|4|10|17497.10|0.02|0.07|R|F|1992-04-10|1992-06-05|1992-04-21|DELIVER IN PERSON|MAIL|ges wake after| +59628|569580|44603|5|3|4948.68|0.10|0.05|A|F|1992-07-20|1992-05-25|1992-08-08|TAKE BACK RETURN|TRUCK|c deposits cajole carefully. even dep| +59628|922212|47249|6|16|19746.72|0.09|0.02|A|F|1992-06-05|1992-05-18|1992-06-16|TAKE BACK RETURN|TRUCK|hely final packages hinder fur| +59629|247942|22951|1|21|39688.53|0.02|0.05|R|F|1994-08-25|1994-06-22|1994-09-04|DELIVER IN PERSON|TRUCK|into beans. pending instructions are| +59629|147080|9583|2|39|43956.12|0.07|0.00|R|F|1994-09-10|1994-07-17|1994-10-03|NONE|RAIL| the furiously even accounts. slyly speci| +59629|971723|34243|3|33|59224.44|0.02|0.04|A|F|1994-09-18|1994-07-11|1994-09-21|COLLECT COD|REG AIR|y about the unusu| +59630|473977|23978|1|3|5852.85|0.10|0.05|N|O|1997-08-23|1997-11-07|1997-08-29|NONE|AIR|ag ironically| +59630|125409|12916|2|35|50204.00|0.04|0.07|N|O|1997-08-31|1997-10-13|1997-09-30|TAKE BACK RETURN|TRUCK|nal braids. carefully regular frets haggle| +59630|738289|38290|3|36|47781.00|0.03|0.02|N|O|1997-11-22|1997-11-17|1997-11-26|NONE|REG AIR|ect furiously| +59630|415528|28037|4|37|53409.50|0.02|0.06|N|O|1997-12-07|1997-09-23|1997-12-21|COLLECT COD|MAIL|lithely carefully final foxes. iron| +59630|773118|10664|5|30|35732.40|0.01|0.05|N|O|1997-12-13|1997-11-17|1998-01-02|DELIVER IN PERSON|MAIL| the ironic, f| +59630|788621|1137|6|46|78641.14|0.07|0.08|N|O|1997-09-04|1997-11-18|1997-09-08|DELIVER IN PERSON|FOB|ons. bold, brave requests haggle ca| +59631|972066|9624|1|14|15932.28|0.04|0.02|N|O|1997-07-09|1997-07-03|1997-07-26|COLLECT COD|TRUCK|ages. accounts haggle fluf| +59631|499803|12313|2|21|37858.38|0.03|0.04|N|O|1997-07-25|1997-07-10|1997-08-14|DELIVER IN PERSON|FOB| requests use regular, | +59631|175128|135|3|3|3609.36|0.08|0.04|N|O|1997-05-20|1997-06-16|1997-06-15|NONE|TRUCK| the blithely regular | +59631|367233|17234|4|47|61110.34|0.01|0.07|N|O|1997-09-03|1997-07-09|1997-09-04|DELIVER IN PERSON|RAIL|y, ironic accounts. furi| +59631|68775|31277|5|12|20925.24|0.07|0.07|N|O|1997-06-14|1997-07-01|1997-07-03|DELIVER IN PERSON|TRUCK|use blithely f| +59656|678352|40866|1|39|51882.48|0.10|0.05|A|F|1994-03-06|1994-01-19|1994-03-07|NONE|RAIL|oxes are furiously| +59656|59216|21718|2|3|3525.63|0.02|0.07|A|F|1993-12-11|1994-01-28|1993-12-14|TAKE BACK RETURN|AIR|sly unusual dep| +59656|241766|4271|3|43|73433.25|0.03|0.06|A|F|1993-11-17|1994-02-05|1993-12-06|DELIVER IN PERSON|SHIP|ns are carefully after t| +59656|347557|35076|4|43|68995.22|0.00|0.00|A|F|1993-11-27|1993-12-11|1993-12-14|COLLECT COD|AIR|instructions boost fluffily across | +59656|384364|21886|5|42|60830.70|0.01|0.00|A|F|1994-01-29|1993-12-17|1994-02-11|DELIVER IN PERSON|FOB|olites. final deposits cajole| +59657|407494|45019|1|46|64467.62|0.04|0.01|N|O|1996-04-18|1996-05-10|1996-04-24|TAKE BACK RETURN|TRUCK|s cajole flu| +59657|747571|47572|2|22|35607.88|0.00|0.07|N|O|1996-04-16|1996-04-10|1996-05-14|DELIVER IN PERSON|TRUCK|he accounts. caref| +59657|420315|45332|3|39|48176.31|0.00|0.02|N|O|1996-03-10|1996-04-03|1996-04-09|TAKE BACK RETURN|TRUCK| ideas. ir| +59657|231716|44221|4|11|18124.70|0.05|0.02|N|O|1996-04-12|1996-05-23|1996-04-24|DELIVER IN PERSON|TRUCK|thely? regular excuses according to the reg| +59657|442738|42739|5|45|75631.95|0.05|0.07|N|O|1996-05-10|1996-05-06|1996-06-07|NONE|SHIP|thely ironic deposits. slyly e| +59658|445657|8166|1|11|17628.93|0.02|0.03|N|O|1997-04-13|1997-02-09|1997-04-19|DELIVER IN PERSON|MAIL|usly slyly final requests| +59658|142215|42216|2|3|3771.63|0.08|0.07|N|O|1997-03-02|1997-03-16|1997-03-28|TAKE BACK RETURN|MAIL|riously even ac| +59659|101442|26447|1|18|25981.92|0.01|0.03|N|O|1998-06-29|1998-07-16|1998-07-05|NONE|AIR| slyly even accounts sleep carefully agai| +59660|174374|11884|1|31|44899.47|0.10|0.06|R|F|1992-10-24|1992-10-14|1992-11-23|DELIVER IN PERSON|AIR|s will have to nag carefully | +59660|701013|38556|2|42|42587.16|0.09|0.01|A|F|1992-12-02|1992-10-13|1992-12-29|NONE|RAIL|ckly even packag| +59660|917831|5386|3|18|33278.22|0.04|0.01|R|F|1992-09-20|1992-11-16|1992-09-24|NONE|RAIL|ing requests use carefully ruthless, ir| +59660|973524|23525|4|33|52716.84|0.00|0.07|R|F|1992-11-10|1992-11-19|1992-12-02|COLLECT COD|RAIL|ffy accounts about t| +59660|11459|11460|5|30|41113.50|0.09|0.04|A|F|1992-10-13|1992-11-20|1992-10-22|DELIVER IN PERSON|AIR|ily. special accounts haggle. furious| +59660|583023|33024|6|41|45346.00|0.00|0.06|A|F|1992-11-06|1992-10-18|1992-11-28|COLLECT COD|TRUCK|its cajole furiously ex| +59661|93750|31254|1|34|59287.50|0.02|0.06|R|F|1993-05-25|1993-06-07|1993-06-06|COLLECT COD|AIR|yly express, da| +59661|653183|40723|2|20|22723.00|0.04|0.08|R|F|1993-08-05|1993-07-12|1993-08-06|TAKE BACK RETURN|RAIL|etect slyly exc| +59661|43269|43270|3|1|1212.26|0.10|0.01|R|F|1993-08-05|1993-07-13|1993-08-20|TAKE BACK RETURN|SHIP|as besides t| +59661|217302|42311|4|40|48771.60|0.00|0.06|A|F|1993-05-15|1993-06-15|1993-05-29|DELIVER IN PERSON|AIR| are slyly. furiously regular foxes cajo| +59661|189647|27157|5|41|71202.24|0.02|0.07|A|F|1993-06-25|1993-06-20|1993-07-18|COLLECT COD|AIR|fily even instructions. final, bold platele| +59661|392690|5198|6|45|80220.60|0.05|0.02|A|F|1993-06-09|1993-06-29|1993-06-14|TAKE BACK RETURN|TRUCK|g quickly. blithely ironic de| +59662|812921|37954|1|18|33009.84|0.09|0.07|R|F|1994-09-29|1994-08-07|1994-10-20|COLLECT COD|MAIL|ully beneath the carefully express| +59662|761175|48721|2|20|24722.80|0.07|0.02|A|F|1994-07-01|1994-07-22|1994-07-06|NONE|REG AIR|h slyly across the furio| +59663|638474|38475|1|35|49435.40|0.03|0.06|N|O|1996-08-15|1996-10-10|1996-08-28|NONE|FOB|e carefully regular dolphins are f| +59663|829302|16851|2|25|30781.50|0.08|0.04|N|O|1996-11-14|1996-10-17|1996-11-29|DELIVER IN PERSON|RAIL|ges wake blithely a| +59688|790888|40889|1|50|98942.50|0.09|0.07|A|F|1993-12-07|1993-12-14|1993-12-16|DELIVER IN PERSON|MAIL|odolites would sleep according t| +59688|443232|43233|2|41|48183.61|0.01|0.06|A|F|1994-02-04|1993-12-30|1994-02-16|DELIVER IN PERSON|AIR|und the ironic pinto beans doubt slyly b| +59688|395123|32645|3|32|38979.52|0.09|0.01|R|F|1994-01-11|1994-01-07|1994-02-04|DELIVER IN PERSON|TRUCK|fully pending accounts.| +59689|787572|25118|1|35|58083.90|0.04|0.05|R|F|1992-09-08|1992-08-17|1992-09-11|NONE|TRUCK|s doze slyly inside the ironic asy| +59689|717253|42282|2|15|19053.30|0.03|0.03|R|F|1992-08-30|1992-08-30|1992-09-16|TAKE BACK RETURN|RAIL|inal, pending excuses po| +59690|712409|37438|1|50|71068.50|0.00|0.01|A|F|1995-03-25|1995-02-14|1995-04-06|NONE|RAIL| express requests. ironi| +59690|456706|31725|2|13|21614.84|0.04|0.01|A|F|1995-05-08|1995-02-11|1995-06-01|COLLECT COD|TRUCK|ly regular req| +59690|846242|8759|3|24|28516.80|0.06|0.03|R|F|1995-02-09|1995-03-17|1995-03-09|COLLECT COD|RAIL|eposits! furious| +59690|776753|39269|4|25|45743.00|0.03|0.00|A|F|1995-01-24|1995-03-07|1995-02-12|TAKE BACK RETURN|SHIP|ular, special depths. f| +59691|432402|32403|1|47|62715.86|0.03|0.02|A|F|1994-01-17|1994-02-09|1994-02-08|TAKE BACK RETURN|REG AIR|, ironic deposits. ironic mult| +59691|378623|28624|2|24|40838.64|0.04|0.02|R|F|1994-01-23|1994-02-14|1994-02-08|DELIVER IN PERSON|SHIP| wake. blithely ironic asymptotes play | +59691|505140|17651|3|4|4580.48|0.00|0.01|A|F|1994-02-13|1994-01-17|1994-03-05|TAKE BACK RETURN|FOB|en packages cajole slyly again| +59691|884549|9584|4|42|64407.00|0.07|0.06|R|F|1994-02-17|1994-02-12|1994-03-18|COLLECT COD|REG AIR|counts promise. pending dep| +59691|607699|20212|5|45|72299.70|0.09|0.00|A|F|1994-02-01|1994-01-23|1994-02-04|NONE|RAIL|ites haggle furiously along the regular, b| +59692|310760|48279|1|19|33644.25|0.08|0.08|R|F|1992-09-26|1992-12-11|1992-09-29|COLLECT COD|REG AIR|l theodoli| +59692|936393|11430|2|36|51456.60|0.09|0.03|R|F|1992-10-18|1992-11-13|1992-11-14|TAKE BACK RETURN|RAIL|ironic accounts. requests are. s| +59693|932288|44807|1|32|42247.68|0.08|0.03|A|F|1995-04-16|1995-04-05|1995-05-13|TAKE BACK RETURN|SHIP|unts haggle carefully carefully regular | +59693|955797|18317|2|39|72257.25|0.03|0.04|A|F|1995-04-02|1995-04-15|1995-04-20|DELIVER IN PERSON|SHIP|ts wake ironic| +59693|77891|27892|3|13|24295.57|0.06|0.07|R|F|1995-05-11|1995-03-13|1995-05-27|NONE|TRUCK|ffily even dependencies use of th| +59693|113163|38168|4|9|10585.44|0.10|0.07|A|F|1995-03-09|1995-03-26|1995-03-28|DELIVER IN PERSON|TRUCK|posits according to| +59693|920712|45749|5|13|22524.71|0.01|0.02|R|F|1995-03-23|1995-04-06|1995-04-13|TAKE BACK RETURN|SHIP|ounts sleep furiously along | +59694|130703|43206|1|28|48543.60|0.03|0.07|N|O|1996-03-07|1996-03-21|1996-03-20|TAKE BACK RETURN|FOB| requests boost after the carefully re| +59694|718997|44026|2|47|94750.12|0.04|0.04|N|O|1996-03-06|1996-03-06|1996-03-16|DELIVER IN PERSON|AIR|ar, ironic asymptotes detect quickly pendi| +59695|66027|28529|1|23|22839.46|0.00|0.08|N|O|1996-02-05|1995-11-23|1996-03-05|DELIVER IN PERSON|RAIL|ly regular requests are blithely slyl| +59695|707261|7262|2|3|3804.69|0.05|0.08|N|O|1995-12-06|1995-12-31|1995-12-19|DELIVER IN PERSON|SHIP|ronic packages cajole| +59695|921042|33561|3|7|7441.00|0.02|0.05|N|O|1995-12-12|1995-12-29|1995-12-27|NONE|SHIP|ronic, even ideas. pi| +59695|941161|41162|4|21|25244.52|0.03|0.01|N|O|1996-01-17|1996-01-16|1996-02-11|TAKE BACK RETURN|REG AIR|ular ideas affix blit| +59720|380325|5340|1|19|26700.89|0.07|0.02|A|F|1994-06-23|1994-06-10|1994-07-08|TAKE BACK RETURN|REG AIR| fluffily final | +59720|121774|34277|2|17|30528.09|0.00|0.07|A|F|1994-08-05|1994-06-08|1994-09-01|NONE|MAIL|int furiously. final, ruthless sauter| +59721|658815|33842|1|22|39023.16|0.07|0.03|R|F|1992-07-03|1992-09-02|1992-07-11|DELIVER IN PERSON|MAIL|ronic deposits. b| +59722|734470|34471|1|25|37611.00|0.04|0.02|A|F|1994-11-22|1995-01-04|1994-12-20|NONE|RAIL|packages. realms ea| +59722|231810|44315|2|39|67930.20|0.08|0.02|R|F|1995-01-28|1994-12-09|1995-02-09|COLLECT COD|REG AIR|its nod furiousl| +59722|28681|28682|3|24|38632.32|0.05|0.02|R|F|1995-01-04|1994-11-25|1995-01-08|DELIVER IN PERSON|RAIL|f the quickly iron| +59722|32329|32330|4|30|37839.60|0.06|0.01|A|F|1995-01-31|1994-12-05|1995-02-09|DELIVER IN PERSON|REG AIR|ding courts sleep. regular | +59722|338893|38894|5|13|25114.44|0.07|0.02|A|F|1994-12-13|1995-01-10|1994-12-22|COLLECT COD|REG AIR|ions. quickly ex| +59723|300471|37990|1|28|41200.88|0.08|0.00|N|O|1997-01-21|1996-11-26|1997-02-13|DELIVER IN PERSON|TRUCK| unusual asymptotes cajole evenly bold | +59723|15378|15379|2|44|56908.28|0.08|0.02|N|O|1997-01-11|1996-12-04|1997-02-06|DELIVER IN PERSON|MAIL|lyly ironic, regular | +59723|454254|29273|3|23|27789.29|0.08|0.01|N|O|1996-12-29|1996-12-09|1997-01-27|COLLECT COD|MAIL|fluffily even requests wak| +59723|645964|45965|4|17|32468.81|0.02|0.04|N|O|1997-02-16|1996-11-30|1997-03-14|NONE|FOB| requests sleep across the | +59723|714009|39038|5|9|9206.73|0.06|0.02|N|O|1997-02-21|1997-01-14|1997-03-12|DELIVER IN PERSON|SHIP|usly unusual accounts boost| +59723|345927|20940|6|35|69051.85|0.00|0.01|N|O|1997-01-25|1996-12-30|1997-02-01|DELIVER IN PERSON|SHIP|he slyly final deposits| +59724|849931|24964|1|2|3761.78|0.10|0.00|N|O|1996-02-03|1996-02-17|1996-02-23|COLLECT COD|RAIL|latelets. express epi| +59724|777407|14953|2|49|72734.13|0.07|0.01|N|O|1995-12-16|1996-01-26|1996-01-14|DELIVER IN PERSON|REG AIR|to beans. slyl| +59724|875931|966|3|35|66741.15|0.01|0.00|N|O|1996-01-06|1996-01-23|1996-01-15|DELIVER IN PERSON|REG AIR|timents according to the s| +59725|895684|8202|1|10|16796.40|0.04|0.08|A|F|1993-07-09|1993-06-01|1993-07-30|NONE|AIR|ar packages nod q| +59725|748874|48875|2|7|13459.88|0.07|0.03|A|F|1993-07-23|1993-07-17|1993-08-06|NONE|AIR|de of the finally final pin| +59726|900697|698|1|17|28860.05|0.09|0.07|N|O|1997-06-12|1997-06-24|1997-07-05|COLLECT COD|REG AIR|heodolites use slyly about the slyl| +59726|9741|47242|2|20|33014.80|0.06|0.02|N|O|1997-06-17|1997-08-05|1997-07-06|TAKE BACK RETURN|RAIL|thy ideas. pinto b| +59726|715319|27834|3|50|66714.00|0.09|0.04|N|O|1997-06-25|1997-07-25|1997-07-22|COLLECT COD|REG AIR|heodolites. quietly| +59726|355939|43461|4|24|47878.08|0.09|0.03|N|O|1997-07-27|1997-08-01|1997-08-11|NONE|TRUCK|avely special instructions are a| +59727|317266|4785|1|31|39780.75|0.08|0.02|R|F|1992-07-02|1992-06-22|1992-07-21|TAKE BACK RETURN|REG AIR|ests. even theodoli| +59727|275937|38443|2|40|76516.80|0.03|0.01|R|F|1992-07-20|1992-07-14|1992-08-07|DELIVER IN PERSON|REG AIR|ans breach blithely blithely fu| +59727|664957|39984|3|38|73032.96|0.05|0.03|R|F|1992-07-31|1992-07-17|1992-08-08|TAKE BACK RETURN|REG AIR|l, even courts:| +59752|270251|45262|1|2|2442.48|0.00|0.00|N|O|1997-01-08|1997-02-05|1997-01-17|NONE|MAIL|etect regular| +59752|101161|13664|2|8|9297.28|0.08|0.05|N|O|1996-12-28|1997-01-01|1997-01-03|TAKE BACK RETURN|MAIL| dependencies: blithely unusual requests ar| +59753|332365|19884|1|36|50304.60|0.10|0.08|A|F|1994-03-13|1994-05-03|1994-04-10|NONE|MAIL| after the regular p| +59753|45248|7749|2|6|7159.44|0.07|0.04|R|F|1994-03-02|1994-04-16|1994-03-19|NONE|SHIP|ic accounts use slyly| +59753|475560|25561|3|18|27639.72|0.01|0.04|R|F|1994-04-06|1994-03-15|1994-04-09|DELIVER IN PERSON|FOB| bold requests. slyly ruthless instruction| +59753|730353|5382|4|31|42882.92|0.08|0.00|R|F|1994-06-09|1994-03-16|1994-06-22|COLLECT COD|TRUCK|ackages across the furiously regu| +59753|32227|19728|5|12|13910.64|0.02|0.01|A|F|1994-03-21|1994-03-18|1994-04-06|NONE|SHIP|final packages. final deposit| +59753|636587|36588|6|40|60942.00|0.00|0.00|A|F|1994-04-28|1994-04-06|1994-05-10|COLLECT COD|SHIP|dolphins. exp| +59753|114278|14279|7|46|59444.42|0.04|0.07|A|F|1994-04-26|1994-04-25|1994-05-08|TAKE BACK RETURN|RAIL|theodolites. slyly e| +59754|669946|32460|1|23|44065.93|0.09|0.02|N|O|1996-05-08|1996-05-25|1996-05-14|TAKE BACK RETURN|REG AIR|. final pinto beans are.| +59754|768927|6473|2|10|19958.90|0.06|0.01|N|O|1996-07-11|1996-05-08|1996-07-19|NONE|MAIL|ly express accounts. final pains ha| +59754|346336|21349|3|36|49763.52|0.00|0.04|N|O|1996-07-12|1996-06-07|1996-08-10|TAKE BACK RETURN|FOB|al, final courts. furiously regu| +59754|860595|10596|4|1|1555.55|0.08|0.05|N|O|1996-04-04|1996-05-08|1996-04-28|TAKE BACK RETURN|FOB|ual accounts along the furiously ironic | +59754|18536|6037|5|1|1454.53|0.00|0.01|N|O|1996-07-02|1996-05-25|1996-07-29|COLLECT COD|MAIL|s. carefully even accounts across the blit| +59754|528308|3329|6|35|46769.80|0.04|0.00|N|O|1996-07-15|1996-06-17|1996-08-10|NONE|FOB|ress ideas. carefully r| +59755|870156|7708|1|28|31531.08|0.00|0.05|A|F|1992-06-29|1992-05-02|1992-07-06|TAKE BACK RETURN|FOB|ions! regular t| +59755|696558|46559|2|47|73062.44|0.01|0.05|A|F|1992-04-05|1992-05-20|1992-04-15|DELIVER IN PERSON|FOB|cuses use | +59755|41735|29236|3|30|50301.90|0.05|0.01|A|F|1992-05-17|1992-06-01|1992-05-29|TAKE BACK RETURN|RAIL|gular foxes are furi| +59756|400516|25533|1|49|69408.01|0.05|0.04|N|O|1996-03-29|1996-02-19|1996-04-19|NONE|FOB|theodolites wake according to | +59756|470899|8427|2|43|80404.41|0.02|0.04|N|O|1996-03-28|1996-02-02|1996-04-27|DELIVER IN PERSON|FOB|ajole. requests wake. blithely bol| +59756|394094|6602|3|42|49899.36|0.05|0.08|N|O|1996-03-12|1996-03-07|1996-03-22|DELIVER IN PERSON|TRUCK|nag slyly unusual deposits. bu| +59756|532424|44935|4|10|14564.00|0.01|0.07|N|O|1996-01-28|1996-02-24|1996-02-05|TAKE BACK RETURN|MAIL|gle express deposits. slyl| +59756|442090|42091|5|44|45411.08|0.03|0.08|N|O|1996-03-10|1996-02-17|1996-04-02|DELIVER IN PERSON|AIR|xcuses cajole | +59757|716070|41099|1|9|9774.36|0.03|0.07|A|F|1992-05-30|1992-05-06|1992-06-10|COLLECT COD|REG AIR|ways pending packages; quic| +59757|986510|24068|2|40|63858.80|0.04|0.03|A|F|1992-05-16|1992-05-20|1992-05-30|NONE|AIR|r requests sublate doggedly car| +59758|524745|37256|1|37|65479.64|0.09|0.03|N|O|1995-09-15|1995-09-24|1995-10-05|DELIVER IN PERSON|MAIL|g the slyly ironic pac| +59758|383852|8867|2|21|40652.64|0.05|0.07|N|O|1995-09-02|1995-10-11|1995-10-01|DELIVER IN PERSON|REG AIR|s cajole blithely. furiously regular accoun| +59758|387738|37739|3|15|27385.80|0.10|0.01|N|O|1995-08-28|1995-10-07|1995-09-11|TAKE BACK RETURN|AIR|ep. excuses nag. slyly ironic dep| +59759|334487|34488|1|5|7607.35|0.01|0.01|N|O|1996-06-06|1996-06-26|1996-06-20|DELIVER IN PERSON|SHIP|nag slyly fluffily unusua| +59759|719561|19562|2|35|55318.55|0.03|0.01|N|O|1996-07-30|1996-08-02|1996-08-05|DELIVER IN PERSON|AIR|s nag slyly ironic packages. ca| +59759|652230|39770|3|21|24826.20|0.05|0.00|N|O|1996-07-29|1996-07-25|1996-08-05|COLLECT COD|TRUCK|thely packages.| +59759|22089|34590|4|38|38421.04|0.10|0.08|N|O|1996-08-11|1996-07-18|1996-09-01|COLLECT COD|SHIP|. slowly pending realms against | +59759|236563|11572|5|4|5998.20|0.10|0.03|N|O|1996-06-21|1996-06-18|1996-06-29|NONE|REG AIR|tes. regular, special reques| +59759|913504|26023|6|14|21244.44|0.10|0.02|N|O|1996-09-10|1996-07-31|1996-10-07|TAKE BACK RETURN|SHIP|ys haggle furiously fi| +59784|380467|5482|1|41|63445.45|0.05|0.02|N|O|1997-07-06|1997-08-11|1997-07-29|TAKE BACK RETURN|MAIL|carefully final foxes doubt along the| +59785|155804|18308|1|21|39055.80|0.04|0.02|A|F|1994-07-14|1994-07-05|1994-08-11|TAKE BACK RETURN|SHIP| blithely ironic pinto beans. carefull| +59785|590651|28185|2|6|10449.78|0.07|0.08|R|F|1994-05-09|1994-07-31|1994-06-01|NONE|REG AIR|unusual packages | +59785|56999|19501|3|11|21515.89|0.06|0.06|R|F|1994-06-10|1994-07-12|1994-06-14|NONE|SHIP|. final accounts cajole alongside o| +59785|979952|17510|4|10|20319.10|0.02|0.06|R|F|1994-06-21|1994-06-24|1994-07-07|DELIVER IN PERSON|REG AIR|onic excus| +59786|319009|44022|1|49|50371.51|0.08|0.05|N|O|1996-07-16|1996-07-02|1996-08-10|NONE|RAIL|sly around the i| +59786|583835|46347|2|34|65239.54|0.06|0.02|N|O|1996-07-05|1996-06-07|1996-07-24|NONE|REG AIR| sleep slyly final| +59786|507097|32118|3|9|9936.63|0.01|0.07|N|O|1996-06-05|1996-06-23|1996-06-11|NONE|RAIL|equests. quickly special deposits nag fluf| +59786|771422|33938|4|42|62722.38|0.03|0.05|N|O|1996-06-15|1996-06-06|1996-07-03|TAKE BACK RETURN|AIR|unts. accounts w| +59786|285744|48250|5|42|72648.66|0.01|0.06|N|O|1996-06-13|1996-07-07|1996-06-30|NONE|REG AIR|ng the caref| +59787|208400|8401|1|3|3925.17|0.08|0.05|N|O|1997-07-14|1997-08-27|1997-08-01|DELIVER IN PERSON|REG AIR|ously unusua| +59787|574895|24896|2|34|66975.58|0.01|0.02|N|O|1997-06-17|1997-08-24|1997-07-16|TAKE BACK RETURN|RAIL|are even deposits. qui| +59788|692700|5214|1|30|50780.10|0.04|0.05|A|F|1994-07-01|1994-08-05|1994-07-09|NONE|TRUCK|uests. careful decoys among | +59788|198082|35592|2|4|4720.32|0.02|0.03|A|F|1994-07-07|1994-09-17|1994-07-31|DELIVER IN PERSON|AIR|into beans. even, ironic foxes after the| +59788|160654|35661|3|12|20575.80|0.04|0.05|A|F|1994-07-25|1994-08-06|1994-07-31|TAKE BACK RETURN|RAIL|s. silently final accounts after the| +59788|111318|23821|4|12|15951.72|0.02|0.07|R|F|1994-09-07|1994-09-25|1994-09-14|NONE|AIR|haggle slyly requests. slyly express | +59788|915118|2673|5|24|27193.68|0.04|0.05|R|F|1994-07-15|1994-08-31|1994-08-06|TAKE BACK RETURN|FOB|s haggle furiously final, ironic account| +59789|700114|12629|1|17|18939.36|0.00|0.04|N|O|1997-07-22|1997-05-07|1997-08-13|NONE|AIR|ithely permanent dependencies cajole! bus| +59789|811584|11585|2|10|14955.40|0.03|0.03|N|O|1997-05-02|1997-05-11|1997-05-31|COLLECT COD|RAIL|eposits wake re| +59789|286370|48876|3|26|35265.36|0.06|0.01|N|O|1997-05-15|1997-05-24|1997-05-24|DELIVER IN PERSON|AIR|unusual instructions. carefully ironic | +59789|19902|7403|4|46|83807.40|0.09|0.08|N|O|1997-05-31|1997-06-12|1997-06-19|DELIVER IN PERSON|AIR|kages wake fluffily| +59789|481938|6957|5|5|9599.55|0.10|0.06|N|O|1997-07-14|1997-06-10|1997-07-21|COLLECT COD|AIR|nal requests was furiously abou| +59789|918248|43285|6|20|25324.00|0.02|0.01|N|O|1997-07-05|1997-06-30|1997-07-25|DELIVER IN PERSON|REG AIR|structions cajole daringly aft| +59790|405171|17680|1|34|36589.10|0.04|0.07|N|O|1997-09-28|1997-09-18|1997-10-11|TAKE BACK RETURN|REG AIR|ly regular ideas sleep slyly across the| +59791|606882|31907|1|30|53665.50|0.10|0.02|R|F|1994-06-29|1994-08-03|1994-07-09|DELIVER IN PERSON|RAIL|onically even deposits | +59791|856245|6246|2|8|9609.60|0.08|0.01|R|F|1994-07-21|1994-07-24|1994-08-20|COLLECT COD|SHIP|dolphins integrate; pending, special theod| +59816|673524|23525|1|34|50914.66|0.06|0.00|N|O|1996-11-04|1997-01-26|1996-11-30|DELIVER IN PERSON|SHIP|ever unusual foxes; special, special packa| +59816|916899|16900|2|41|78549.85|0.01|0.04|N|O|1996-12-11|1997-01-28|1996-12-21|NONE|AIR|inally along the bli| +59816|314939|39952|3|21|41032.32|0.00|0.08|N|O|1997-02-19|1997-01-06|1997-02-23|DELIVER IN PERSON|REG AIR|jole accordin| +59816|176445|38949|4|8|12171.52|0.09|0.03|N|O|1997-01-12|1997-01-25|1997-02-02|DELIVER IN PERSON|MAIL|long the blithely final | +59817|718015|18016|1|38|39253.24|0.05|0.02|A|F|1995-01-07|1995-02-04|1995-01-17|DELIVER IN PERSON|REG AIR|the furiously regular | +59817|668512|6052|2|42|62180.16|0.06|0.01|A|F|1995-02-24|1995-02-13|1995-03-18|DELIVER IN PERSON|MAIL|slyly final | +59817|671622|34136|3|26|41433.34|0.00|0.00|R|F|1994-12-19|1995-01-15|1994-12-30|TAKE BACK RETURN|RAIL|ng the fluffily regular epitaphs. blithely | +59817|943559|31114|4|44|70510.44|0.08|0.06|R|F|1995-01-19|1995-02-10|1995-02-08|DELIVER IN PERSON|SHIP|sly special accounts are quickly. close| +59817|385215|35216|5|12|15602.40|0.02|0.06|A|F|1995-02-03|1995-01-20|1995-02-11|TAKE BACK RETURN|REG AIR| blithely ironic instruction| +59817|307495|20002|6|46|69114.08|0.00|0.00|A|F|1995-01-29|1995-01-21|1995-02-09|DELIVER IN PERSON|FOB|y final packages. sile| +59818|337837|37838|1|5|9374.10|0.01|0.04|N|O|1998-08-10|1998-07-04|1998-08-15|COLLECT COD|MAIL|was fluffily against the blithely regul| +59819|423113|23114|1|30|31082.70|0.00|0.06|N|O|1995-06-24|1995-07-06|1995-07-15|DELIVER IN PERSON|AIR|fully bold requests | +59819|252496|40012|2|20|28969.60|0.02|0.07|N|O|1995-08-21|1995-06-27|1995-09-19|COLLECT COD|FOB|ach quickly regular deposits. fur| +59820|963944|13945|1|7|14055.30|0.09|0.06|N|O|1996-11-27|1996-12-16|1996-12-03|NONE|AIR| cajole slyly unusual instructions. slyl| +59820|993061|18100|2|42|48468.84|0.04|0.08|N|O|1997-02-02|1997-01-10|1997-02-07|NONE|REG AIR| asymptotes was carefully a| +59820|359651|34666|3|8|13685.12|0.05|0.08|N|O|1996-12-07|1996-12-26|1996-12-15|COLLECT COD|REG AIR| final idea| +59821|233846|8855|1|36|64073.88|0.08|0.03|A|F|1993-04-19|1993-05-20|1993-05-19|DELIVER IN PERSON|TRUCK|l, stealthy packages breach quickly blit| +59821|232936|20449|2|25|46723.00|0.07|0.04|A|F|1993-05-07|1993-06-14|1993-05-30|TAKE BACK RETURN|MAIL|ly ironic deposits. ironic packages cajole | +59822|147457|47458|1|31|46637.95|0.06|0.05|N|O|1995-11-17|1995-12-22|1995-12-10|DELIVER IN PERSON|TRUCK|e furiously among the quickly | +59822|308750|21257|2|7|12311.18|0.10|0.06|N|O|1996-01-11|1995-12-01|1996-01-27|NONE|MAIL|lphins according| +59822|147883|22888|3|42|81096.96|0.05|0.00|N|O|1995-10-06|1995-11-26|1995-11-02|DELIVER IN PERSON|RAIL|cial dependencies cajole careful| +59822|460729|10730|4|33|55760.10|0.04|0.00|N|O|1996-01-19|1995-11-16|1996-02-12|NONE|AIR| slyly ironic dependencies| +59822|456360|6361|5|47|61867.98|0.02|0.05|N|O|1995-12-17|1995-11-06|1995-12-21|TAKE BACK RETURN|FOB|ns sleep quickly. courts haggle after the c| +59823|245247|45248|1|35|41728.05|0.05|0.01|R|F|1995-05-29|1995-06-07|1995-06-04|COLLECT COD|FOB|counts use s| +59823|857267|44819|2|22|26932.84|0.08|0.07|A|F|1995-06-02|1995-05-11|1995-06-14|COLLECT COD|FOB|pending orbits sleep fluffil| +59823|73927|48930|3|9|17108.28|0.04|0.04|A|F|1995-04-04|1995-05-27|1995-04-14|DELIVER IN PERSON|SHIP|ully blith| +59848|606841|31866|1|11|19225.91|0.09|0.05|N|O|1997-10-25|1997-10-03|1997-11-10|DELIVER IN PERSON|TRUCK|e even platelets. blith| +59848|167947|5457|2|23|46343.62|0.06|0.00|N|O|1997-11-03|1997-10-05|1997-11-29|NONE|SHIP|ounts haggle according to the| +59848|673176|10716|3|14|16087.96|0.04|0.06|N|O|1997-10-31|1997-09-12|1997-11-28|TAKE BACK RETURN|AIR|lyly about the bold pa| +59849|287707|213|1|16|27115.04|0.04|0.08|A|F|1992-02-18|1992-03-15|1992-03-01|COLLECT COD|RAIL|s are quickly. furiously unusual theodolite| +59849|480509|30510|2|23|34258.04|0.09|0.05|A|F|1992-02-19|1992-03-01|1992-02-28|NONE|FOB|symptotes use blithely across the careful| +59849|913232|13233|3|34|42336.46|0.06|0.05|R|F|1992-03-04|1992-02-11|1992-04-03|TAKE BACK RETURN|TRUCK|g accounts. carefully even theodolites h| +59849|675019|25020|4|42|41747.16|0.08|0.05|R|F|1992-02-08|1992-03-05|1992-02-16|NONE|AIR| quickly fi| +59850|239182|1687|1|3|3363.51|0.07|0.01|N|O|1996-05-22|1996-04-18|1996-06-03|NONE|AIR| unusual deposits. foxes sleep care| +59850|931556|44075|2|24|38100.24|0.03|0.05|N|O|1996-05-27|1996-04-24|1996-06-10|COLLECT COD|AIR| nag furiously ironic accounts. furiously | +59851|116327|28830|1|17|22836.44|0.00|0.05|N|O|1996-01-10|1996-01-05|1996-01-26|TAKE BACK RETURN|SHIP|iously special instructions according| +59851|101361|1362|2|1|1362.36|0.01|0.05|N|O|1996-02-26|1996-01-18|1996-03-05|NONE|REG AIR|h evenly according to the qui| +59851|561000|48534|3|39|41378.22|0.02|0.00|N|O|1995-12-07|1996-01-29|1995-12-09|COLLECT COD|RAIL|xpress req| +59851|712459|37488|4|34|50028.28|0.08|0.05|N|O|1996-01-06|1996-01-31|1996-01-07|NONE|AIR|lar requests affix furious th| +59852|866055|41090|1|45|45945.45|0.05|0.05|R|F|1993-10-16|1993-09-18|1993-10-26|COLLECT COD|TRUCK| silent pinto b| +59852|773058|23059|2|41|46371.82|0.09|0.03|R|F|1993-10-22|1993-10-08|1993-10-27|NONE|FOB|x throughout the even| +59852|776656|14202|3|45|77967.90|0.07|0.05|A|F|1993-10-17|1993-10-11|1993-11-13|DELIVER IN PERSON|REG AIR| requests. bold | +59852|249759|49760|4|43|73475.82|0.08|0.00|R|F|1993-10-17|1993-10-17|1993-11-04|TAKE BACK RETURN|FOB| requests. furiously ironic pinto bea| +59852|692695|30235|5|39|65818.74|0.04|0.08|R|F|1993-08-21|1993-10-08|1993-08-23|TAKE BACK RETURN|MAIL|e carefully. slyly pending requests wake| +59852|120445|32948|6|8|11723.52|0.07|0.01|R|F|1993-09-22|1993-10-01|1993-09-26|TAKE BACK RETURN|SHIP|de of the final, regular deposits. car| +59853|506522|44053|1|9|13756.50|0.08|0.07|R|F|1993-06-23|1993-07-08|1993-06-25|DELIVER IN PERSON|SHIP|lyly final accounts. | +59854|866374|3926|1|43|57634.19|0.03|0.08|N|O|1997-10-19|1997-11-26|1997-11-04|COLLECT COD|FOB|s. fluffily regular acco| +59854|141329|3832|2|42|57553.44|0.07|0.06|N|O|1997-10-22|1997-12-09|1997-11-13|DELIVER IN PERSON|REG AIR|lyly against the packages. slyly even | +59854|307837|32850|3|16|29517.12|0.00|0.00|N|O|1998-01-16|1997-11-15|1998-02-13|COLLECT COD|SHIP|ies cajole pending asympt| +59854|807964|32997|4|31|58029.52|0.09|0.02|N|O|1997-09-25|1997-10-28|1997-10-23|NONE|REG AIR| ideas was furi| +59854|449834|37359|5|24|42811.44|0.07|0.06|N|O|1998-01-16|1997-11-19|1998-01-25|TAKE BACK RETURN|FOB|ly above the blithely pend| +59854|356698|6699|6|3|5264.04|0.08|0.02|N|O|1997-11-04|1997-11-06|1997-11-26|DELIVER IN PERSON|RAIL|ide of the slyly even i| +59854|9841|9842|7|5|8754.20|0.01|0.00|N|O|1997-10-11|1997-12-07|1997-10-22|NONE|AIR|bout the blithely regular braids. f| +59855|396720|21735|1|10|18167.10|0.09|0.02|N|O|1997-10-31|1997-10-14|1997-11-29|DELIVER IN PERSON|REG AIR|inal asymptotes ag| +59855|671268|8808|2|13|16109.99|0.09|0.01|N|O|1997-12-09|1997-10-15|1998-01-01|TAKE BACK RETURN|AIR|s haggle carefully blithely final excu| +59855|998148|10668|3|1|1246.10|0.09|0.07|N|O|1997-10-10|1997-10-13|1997-10-18|COLLECT COD|AIR|lly final foxes. blithely s| +59855|862923|37958|4|42|79206.96|0.10|0.05|N|O|1997-10-04|1997-11-18|1997-11-02|NONE|REG AIR|s after the furiously e| +59855|146015|33522|5|42|44562.42|0.04|0.08|N|O|1997-09-02|1997-10-05|1997-09-11|DELIVER IN PERSON|SHIP|the carefully reg| +59880|602999|28024|1|47|89392.12|0.02|0.02|N|O|1997-01-02|1996-12-31|1997-01-05|COLLECT COD|AIR|above the blithely | +59880|599500|49501|2|21|33589.08|0.02|0.07|N|O|1996-10-30|1997-01-06|1996-11-05|TAKE BACK RETURN|MAIL|ublate accor| +59881|793806|43807|1|27|51293.79|0.07|0.07|N|O|1998-05-10|1998-07-04|1998-06-07|DELIVER IN PERSON|FOB|carefully accord| +59881|496903|21922|2|41|77895.08|0.09|0.03|N|O|1998-04-23|1998-06-30|1998-05-03|COLLECT COD|SHIP|s impress around the blithely express| +59881|445993|8502|3|48|93070.56|0.02|0.00|N|O|1998-06-15|1998-06-03|1998-06-18|COLLECT COD|MAIL|fully even foxes. car| +59882|351538|26553|1|1|1589.52|0.05|0.04|N|O|1998-03-02|1998-04-21|1998-03-16|DELIVER IN PERSON|SHIP|cial requests | +59883|816163|16164|1|39|42085.68|0.00|0.03|N|O|1998-05-10|1998-05-21|1998-05-22|COLLECT COD|FOB|al requests ha| +59883|245525|33038|2|29|42644.79|0.08|0.08|N|O|1998-05-20|1998-06-12|1998-06-11|TAKE BACK RETURN|MAIL|wake. silent, regular theodolites sleep a| +59883|525117|12648|3|34|38831.06|0.02|0.06|N|O|1998-04-22|1998-05-06|1998-04-23|DELIVER IN PERSON|MAIL|se against the carefully final asymptote| +59883|630758|43271|4|34|57416.48|0.09|0.06|N|O|1998-07-02|1998-05-24|1998-07-13|NONE|AIR|e slyly. qui| +59883|140243|15248|5|29|37213.96|0.08|0.08|N|O|1998-05-16|1998-05-28|1998-06-07|TAKE BACK RETURN|MAIL|olphins. enticingly express packages boost | +59884|226408|13921|1|31|41366.09|0.06|0.02|R|F|1992-06-06|1992-06-11|1992-06-07|TAKE BACK RETURN|RAIL|ular water| +59884|239111|26624|2|7|7350.70|0.08|0.08|A|F|1992-07-17|1992-07-10|1992-08-15|COLLECT COD|RAIL|ial packages serve car| +59884|735570|35571|3|7|11238.78|0.03|0.03|A|F|1992-07-17|1992-05-26|1992-08-03|TAKE BACK RETURN|FOB|lyly across the sometim| +59884|711324|11325|4|1|1335.29|0.09|0.08|R|F|1992-04-22|1992-07-03|1992-05-13|DELIVER IN PERSON|MAIL|ual instructions. quickly pend| +59885|309276|21783|1|47|60407.22|0.03|0.01|N|O|1997-09-11|1997-10-06|1997-09-27|DELIVER IN PERSON|MAIL|r furiously. even, pending dependencies caj| +59885|993300|43301|2|26|36224.76|0.01|0.07|N|O|1997-07-29|1997-09-15|1997-08-27|COLLECT COD|FOB|counts. regular the| +59885|389652|39653|3|32|55732.48|0.08|0.00|N|O|1997-09-01|1997-09-06|1997-09-13|DELIVER IN PERSON|AIR|sits solve blithely abo| +59885|880742|18294|4|25|43067.50|0.01|0.06|N|O|1997-10-27|1997-10-01|1997-11-19|DELIVER IN PERSON|FOB|ckages. doggedly unusual instr| +59885|617566|30079|5|45|66758.85|0.06|0.03|N|O|1997-09-28|1997-08-26|1997-10-21|DELIVER IN PERSON|FOB|ular packages sleep.| +59885|426159|13684|6|22|23872.86|0.07|0.01|N|O|1997-07-19|1997-09-14|1997-08-03|NONE|FOB|e quickly. regular, unu| +59886|11825|24326|1|22|38210.04|0.04|0.03|N|O|1996-11-28|1996-11-21|1996-12-11|DELIVER IN PERSON|RAIL| special foxes. carefully reg| +59886|728984|41499|2|47|94608.65|0.01|0.01|N|O|1997-01-17|1996-11-14|1997-02-02|TAKE BACK RETURN|SHIP|g carefully ironic pack| +59886|33299|8300|3|15|18484.35|0.10|0.03|N|O|1997-01-26|1996-12-07|1997-02-22|NONE|AIR|requests. blithely bold theodol| +59886|641612|16637|4|48|74571.84|0.07|0.03|N|O|1996-10-06|1996-12-01|1996-10-24|NONE|SHIP|ven foxes sleep slyly. carefully final pa| +59886|556631|31654|5|9|15188.49|0.01|0.01|N|O|1996-11-18|1996-12-02|1996-12-08|COLLECT COD|AIR|totes poach fu| +59886|294369|6875|6|37|50443.95|0.01|0.07|N|O|1997-01-27|1996-11-24|1997-01-30|NONE|AIR|y final deposits. never bold pack| +59887|809270|9271|1|8|9433.84|0.06|0.00|N|O|1995-08-03|1995-08-28|1995-08-31|COLLECT COD|MAIL|egular, regular mult| +59887|387335|12350|2|32|45514.24|0.07|0.08|N|O|1995-10-20|1995-09-05|1995-10-21|TAKE BACK RETURN|FOB|ly across the final theodolites. sentime| +59887|933770|46289|3|44|79364.12|0.07|0.06|N|O|1995-11-04|1995-10-13|1995-11-11|NONE|AIR|sly bold packages nag | +59887|862482|34|4|42|60666.48|0.04|0.06|N|O|1995-10-10|1995-09-10|1995-10-27|DELIVER IN PERSON|MAIL|ual requests haggle slyly| +59912|51243|38747|1|17|20302.08|0.05|0.00|R|F|1995-03-25|1995-04-15|1995-04-07|COLLECT COD|SHIP|gular deposits. requ| +59912|240150|2655|2|16|17442.24|0.07|0.07|R|F|1995-05-07|1995-05-04|1995-05-16|DELIVER IN PERSON|FOB|ut the caref| +59912|199612|12116|3|30|51348.30|0.03|0.08|R|F|1995-02-23|1995-03-21|1995-03-12|DELIVER IN PERSON|MAIL|he evenly | +59912|867147|4699|4|36|40107.60|0.07|0.08|A|F|1995-03-20|1995-05-03|1995-04-01|NONE|REG AIR|sits poach s| +59912|130253|5258|5|10|12832.50|0.08|0.04|R|F|1995-03-21|1995-03-26|1995-03-27|NONE|REG AIR| sleep blithely regula| +59913|720179|7722|1|23|27580.22|0.05|0.08|A|F|1994-12-05|1994-10-11|1994-12-27|NONE|REG AIR|lites nag furi| +59913|43527|6028|2|34|49997.68|0.05|0.08|A|F|1994-10-11|1994-10-07|1994-10-28|NONE|TRUCK| the carefully unusual requests wa| +59913|558002|8003|3|3|3179.94|0.03|0.05|R|F|1994-10-03|1994-09-30|1994-10-07|NONE|TRUCK|ual requests | +59913|335396|22915|4|2|2862.76|0.06|0.05|A|F|1994-11-01|1994-10-11|1994-11-14|DELIVER IN PERSON|TRUCK|nto beans. | +59913|994513|32071|5|15|24112.05|0.06|0.07|A|F|1994-09-14|1994-10-04|1994-09-25|DELIVER IN PERSON|MAIL|onic ideas haggle quickly express foxes. | +59914|999892|12412|1|26|51788.10|0.05|0.01|N|O|1997-07-03|1997-07-22|1997-07-22|NONE|REG AIR| asymptotes wake furiously fluffily regula| +59914|181011|6018|2|16|17472.16|0.03|0.04|N|O|1997-08-24|1997-09-01|1997-09-06|DELIVER IN PERSON|FOB|luffily ironic notornis. carefully regula| +59914|250356|25367|3|33|43109.22|0.05|0.00|N|O|1997-07-01|1997-08-07|1997-07-02|NONE|AIR|deposits are stealthily. carefully | +59914|722227|47256|4|36|44970.84|0.03|0.00|N|O|1997-07-11|1997-07-23|1997-07-29|TAKE BACK RETURN|SHIP|s. slyly final foxes use regula| +59914|453639|41167|5|43|68482.23|0.09|0.02|N|O|1997-08-09|1997-07-30|1997-08-26|NONE|RAIL|ake final, express packages. slyly express| +59914|304216|16723|6|49|59789.80|0.03|0.04|N|O|1997-06-20|1997-08-04|1997-06-26|COLLECT COD|MAIL|aring courts are ag| +59914|943832|6351|7|6|11254.74|0.03|0.00|N|O|1997-07-21|1997-07-31|1997-08-18|NONE|MAIL|ly. slyly quick requests breach carefully. | +59915|984389|9428|1|17|25046.78|0.01|0.02|N|O|1995-12-29|1996-02-27|1996-01-01|NONE|MAIL|ackages are-- the| +59915|620235|20236|2|43|49673.60|0.09|0.05|N|O|1996-01-15|1996-01-21|1996-01-22|TAKE BACK RETURN|AIR|es. careful| +59916|819216|31733|1|12|13622.04|0.02|0.04|N|O|1998-03-09|1998-04-08|1998-03-30|DELIVER IN PERSON|RAIL|the never even accounts | +59916|553707|16219|2|38|66905.84|0.10|0.05|N|O|1998-06-24|1998-04-30|1998-07-12|TAKE BACK RETURN|FOB|the slyly final dependencies? accounts i| +59917|744789|19818|1|36|66015.00|0.06|0.04|R|F|1995-04-05|1995-04-24|1995-04-16|TAKE BACK RETURN|RAIL|lly above the ironic attainmen| +59917|659739|9740|2|10|16987.00|0.10|0.02|A|F|1995-04-02|1995-03-27|1995-05-01|COLLECT COD|FOB|blithely regular frays| +59917|226621|14134|3|44|68094.84|0.03|0.00|R|F|1995-03-05|1995-05-05|1995-03-22|TAKE BACK RETURN|FOB| accounts. qui| +59917|810769|10770|4|6|10078.32|0.03|0.03|A|F|1995-02-23|1995-04-19|1995-02-24|COLLECT COD|AIR|thely above the silent foxes. final foxes| +59918|462621|12622|1|32|50675.20|0.10|0.03|R|F|1992-06-07|1992-06-13|1992-06-21|NONE|TRUCK|cording to the blithely special idea| +59918|261480|36491|2|31|44685.57|0.04|0.05|A|F|1992-06-14|1992-05-21|1992-06-15|NONE|REG AIR|olites detect slyly fi| +59919|320549|33056|1|20|31390.60|0.10|0.03|R|F|1993-10-23|1993-09-21|1993-11-16|DELIVER IN PERSON|RAIL|. express accounts cajol| +59944|627579|15116|1|6|9039.24|0.09|0.08|N|O|1996-07-15|1996-09-07|1996-08-13|TAKE BACK RETURN|MAIL|s across the even dependencies boost| +59944|714973|27488|2|42|83493.48|0.00|0.01|N|O|1996-10-27|1996-09-18|1996-10-29|NONE|REG AIR|its affix blithely expr| +59944|543545|6056|3|21|33358.92|0.00|0.08|N|O|1996-08-26|1996-08-01|1996-09-04|TAKE BACK RETURN|TRUCK|ake thinly blithely bol| +59944|355893|30908|4|25|48722.00|0.01|0.02|N|O|1996-09-30|1996-09-06|1996-10-30|COLLECT COD|FOB|slyly express | +59945|294945|7451|1|2|3879.86|0.06|0.01|N|O|1997-01-14|1997-02-02|1997-01-22|TAKE BACK RETURN|REG AIR|ongside of the bra| +59945|133922|46425|2|42|82148.64|0.00|0.07|N|O|1997-03-11|1996-12-16|1997-03-27|COLLECT COD|REG AIR|ainst the accounts sleep slyly alon| +59945|816716|4265|3|2|3265.34|0.02|0.01|N|O|1997-01-11|1997-02-08|1997-02-06|NONE|TRUCK| cajole blithely packages. pendi| +59945|538642|38643|4|23|38654.26|0.06|0.06|N|O|1996-12-17|1997-01-03|1996-12-18|TAKE BACK RETURN|RAIL|he accounts | +59945|941674|16711|5|19|32596.97|0.05|0.01|N|O|1996-12-03|1997-02-06|1996-12-11|NONE|AIR|s alongside of t| +59946|729494|29495|1|33|50274.18|0.07|0.03|A|F|1993-02-27|1993-01-28|1993-03-12|NONE|RAIL|lly. regular excuses use. even, unusual r| +59947|454395|4396|1|46|62071.02|0.03|0.07|N|O|1996-02-10|1996-01-17|1996-03-06|COLLECT COD|RAIL|. slyly ironic decoys cajole above| +59947|1881|14382|2|39|69532.32|0.03|0.01|N|O|1995-12-19|1996-01-19|1996-01-03|COLLECT COD|AIR|s cajole quickly with the blithely regular| +59947|613610|1147|3|49|74655.42|0.09|0.05|N|O|1995-12-17|1995-12-12|1996-01-07|NONE|SHIP| excuses affix furiously al| +59948|387438|49946|1|9|13728.78|0.05|0.00|N|O|1998-06-25|1998-07-27|1998-06-30|COLLECT COD|MAIL|as sleep. carefully fluffy| +59948|658443|33470|2|32|44845.12|0.08|0.02|N|O|1998-08-30|1998-07-29|1998-09-14|TAKE BACK RETURN|REG AIR|alongside of the quickly bold a| +59948|450242|12752|3|15|17883.30|0.06|0.02|N|O|1998-09-15|1998-08-05|1998-09-28|NONE|REG AIR|s doze alongside of the quickly unusual | +59948|202141|27150|4|1|1043.13|0.08|0.08|N|O|1998-06-20|1998-07-10|1998-07-15|COLLECT COD|TRUCK|. quickly final decoys| +59949|321092|33599|1|6|6678.48|0.00|0.04|N|O|1998-05-29|1998-07-13|1998-06-03|NONE|FOB|to beans integrate slyly acros| +59949|580674|30675|2|23|40356.95|0.10|0.00|N|O|1998-06-16|1998-06-14|1998-07-08|COLLECT COD|FOB| pains wake| +59950|595808|20831|1|40|76151.20|0.01|0.04|N|O|1998-01-25|1998-01-09|1998-02-11|COLLECT COD|SHIP|slowly iro| +59950|738132|647|2|48|56164.80|0.00|0.06|N|O|1998-03-01|1998-01-02|1998-03-02|NONE|SHIP|. slyly even instructions are.| +59950|777901|27902|3|32|63323.84|0.05|0.08|N|O|1998-01-05|1997-12-29|1998-01-12|TAKE BACK RETURN|REG AIR|en hockey players are against the| +59950|170834|45841|4|27|51430.41|0.04|0.04|N|O|1997-12-04|1997-12-30|1998-01-03|NONE|AIR|ic instructions hang s| +59950|194146|6650|5|38|47125.32|0.02|0.08|N|O|1998-01-20|1997-12-23|1998-02-19|NONE|FOB|gular dolphins. final forges are blithely. | +59951|312745|12746|1|48|84371.04|0.09|0.07|R|F|1992-11-10|1992-11-12|1992-11-21|NONE|TRUCK| foxes. blithely regular excu| +59951|292661|17672|2|50|82682.50|0.09|0.05|R|F|1992-12-19|1992-12-04|1992-12-31|COLLECT COD|MAIL|s. ironic, express theodo| +59951|738083|38084|3|32|35873.60|0.10|0.07|A|F|1992-12-21|1992-12-01|1992-12-22|TAKE BACK RETURN|AIR|egular instru| +59951|952673|27712|4|45|77653.35|0.00|0.05|R|F|1992-10-08|1992-10-18|1992-11-05|COLLECT COD|TRUCK|-- slyly express courts caj| +59951|563376|13377|5|33|47498.55|0.05|0.05|R|F|1992-10-09|1992-10-29|1992-10-29|COLLECT COD|SHIP| express escapades sle| +59951|657763|7764|6|47|80874.31|0.00|0.07|A|F|1992-11-13|1992-11-29|1992-11-18|DELIVER IN PERSON|REG AIR|sual requests. patterns sleep bli| +59976|780200|17746|1|33|42245.61|0.01|0.07|A|F|1993-09-05|1993-07-11|1993-09-20|NONE|AIR|final foxes. iron| +59976|818220|43253|2|7|7967.26|0.07|0.08|R|F|1993-06-30|1993-07-05|1993-07-19|TAKE BACK RETURN|REG AIR| furiously above the fluffily ironic idea| +59976|814238|26755|3|38|43783.22|0.10|0.08|R|F|1993-09-06|1993-08-27|1993-09-15|NONE|FOB|nal theodolites. regular f| +59976|884607|22159|4|13|20690.28|0.09|0.08|A|F|1993-09-19|1993-08-30|1993-10-09|DELIVER IN PERSON|TRUCK|es cajole | +59977|710367|22882|1|22|30301.26|0.03|0.03|R|F|1993-10-25|1993-11-04|1993-11-14|NONE|TRUCK|usly over the regular, ironic s| +59977|132176|7181|2|5|6040.85|0.02|0.03|R|F|1993-11-20|1993-10-22|1993-12-02|TAKE BACK RETURN|TRUCK|efully pending instructions| +59977|465742|3270|3|49|83678.28|0.00|0.03|A|F|1993-10-01|1993-11-19|1993-10-28|COLLECT COD|REG AIR|ions. fluffily f| +59977|712515|37544|4|38|58044.24|0.06|0.04|A|F|1993-12-20|1993-10-05|1994-01-13|TAKE BACK RETURN|RAIL|regular accounts-- bravely regular de| +59977|236821|11830|5|44|77343.64|0.00|0.06|R|F|1993-09-23|1993-11-23|1993-10-06|NONE|REG AIR|e the furiousl| +59977|247693|22702|6|49|80393.32|0.07|0.02|R|F|1993-11-25|1993-11-25|1993-12-01|COLLECT COD|FOB|s are regularly after the qui| +59977|962892|25412|7|26|50826.10|0.05|0.07|A|F|1993-12-09|1993-10-20|1994-01-01|COLLECT COD|TRUCK| packages. furious| +59978|318661|43674|1|46|77263.90|0.06|0.00|R|F|1994-03-30|1994-03-02|1994-03-31|COLLECT COD|RAIL| the blithely ironic foxes. deposits ha| +59979|538726|26257|1|3|5294.10|0.02|0.01|A|F|1992-08-19|1992-08-18|1992-08-28|NONE|FOB|e quietly final excuses. pending c| +59979|356650|31665|2|13|22186.32|0.01|0.06|R|F|1992-09-29|1992-08-21|1992-10-13|TAKE BACK RETURN|REG AIR|ording to the flu| +59979|207936|20441|3|17|31346.64|0.02|0.06|R|F|1992-07-22|1992-08-10|1992-08-05|NONE|AIR|xpress accounts| +59979|771872|34388|4|1|1943.84|0.00|0.03|A|F|1992-07-24|1992-08-26|1992-08-06|DELIVER IN PERSON|FOB|lar accounts af| +59979|838746|1263|5|6|10108.20|0.10|0.04|R|F|1992-07-16|1992-08-11|1992-07-26|NONE|MAIL|y according to the | +59979|788331|847|6|6|8515.80|0.04|0.04|A|F|1992-09-22|1992-08-18|1992-10-05|DELIVER IN PERSON|SHIP|kly final theodolites; b| +59980|149866|49867|1|32|61307.52|0.00|0.06|A|F|1994-12-08|1994-12-12|1994-12-19|DELIVER IN PERSON|TRUCK|uriously at the unusual escapades. even in| +59980|785471|35472|2|25|38911.00|0.08|0.00|A|F|1995-01-02|1994-12-31|1995-01-27|NONE|TRUCK|osits. slyly ironic ins| +59981|426125|1142|1|46|48350.60|0.03|0.00|R|F|1993-02-23|1993-03-03|1993-03-10|COLLECT COD|AIR|ow requests snooze carefully sometime| +59981|875690|13242|2|15|24984.75|0.02|0.01|A|F|1993-04-05|1993-04-09|1993-04-20|DELIVER IN PERSON|FOB|instructions sleep carefully stealthy i| +59981|718192|18193|3|21|25413.36|0.10|0.03|R|F|1993-02-23|1993-04-09|1993-03-19|DELIVER IN PERSON|AIR|thely beneath the special, | +59981|652597|27624|4|39|60432.84|0.04|0.00|A|F|1993-03-30|1993-04-07|1993-04-25|COLLECT COD|FOB|nst the carefully busy | +59981|188712|26222|5|26|46818.46|0.02|0.06|A|F|1993-04-14|1993-03-31|1993-05-05|TAKE BACK RETURN|SHIP|ing packages. deposits alongside| +59981|674437|24438|6|28|39519.20|0.02|0.04|A|F|1993-04-03|1993-03-20|1993-05-02|NONE|AIR|, regular requests. | +59981|259416|34427|7|19|26132.60|0.01|0.03|A|F|1993-04-16|1993-03-19|1993-05-05|DELIVER IN PERSON|SHIP|regular package| +59982|996379|46380|1|40|59013.20|0.02|0.08|N|O|1996-03-19|1996-05-01|1996-04-02|COLLECT COD|FOB|posits. slyly | +59982|137074|37075|2|10|11110.70|0.10|0.07|N|O|1996-03-27|1996-04-07|1996-04-09|COLLECT COD|AIR| bold requests. ca| +59982|791375|28921|3|14|20528.76|0.00|0.08|N|O|1996-03-02|1996-05-09|1996-03-23|TAKE BACK RETURN|REG AIR|kly regular courts. never special re| +59982|626758|14295|4|16|26955.52|0.04|0.05|N|O|1996-05-20|1996-05-03|1996-05-31|NONE|RAIL|ng the bravely even asymptot| +59982|910228|22747|5|44|54479.92|0.00|0.01|N|O|1996-04-05|1996-05-11|1996-04-27|COLLECT COD|FOB|brave courts. slyly pending waters ar| +59983|532361|7382|1|2|2786.68|0.05|0.04|N|O|1996-10-02|1996-08-10|1996-10-26|DELIVER IN PERSON|FOB|mong the slyly final accounts. pending| +59983|378431|15953|2|19|28678.98|0.03|0.05|N|O|1996-09-23|1996-09-13|1996-10-18|COLLECT COD|TRUCK|e blithely ironic requests wake f| +59983|284848|22364|3|37|67814.71|0.04|0.08|N|O|1996-09-05|1996-09-09|1996-09-12|TAKE BACK RETURN|RAIL|ously final asymptotes sleep fluffily| +59983|425475|25476|4|37|51816.65|0.06|0.06|N|O|1996-08-15|1996-08-06|1996-08-27|DELIVER IN PERSON|MAIL|quickly final request| +59983|952591|27630|5|30|49306.50|0.03|0.02|N|O|1996-09-08|1996-08-01|1996-09-16|NONE|AIR|its will have to haggl| +60008|831239|6272|1|29|33935.51|0.10|0.04|N|O|1996-05-08|1996-05-27|1996-05-14|DELIVER IN PERSON|REG AIR|egular epitaphs hagg| diff --git a/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u3 b/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u3 new file mode 100644 index 0000000..af15b97 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-5g-3/lineitem.tbl.u3 @@ -0,0 +1,30017 @@ +60009|114219|1726|1|40|49328.40|0.10|0.06|R|F|1995-05-23|1995-05-29|1995-06-10|DELIVER IN PERSON|AIR|the carefully close accounts nag a| +60010|755758|18274|1|48|87058.56|0.06|0.08|N|O|1995-08-06|1995-06-10|1995-08-15|TAKE BACK RETURN|AIR|ts across the r| +60010|17545|30046|2|30|43876.20|0.06|0.00|N|F|1995-06-17|1995-06-06|1995-07-15|TAKE BACK RETURN|TRUCK|ites according to the slyly final packa| +60010|864903|27421|3|17|31753.62|0.07|0.00|N|F|1995-06-05|1995-06-06|1995-06-20|DELIVER IN PERSON|FOB|deposits; quickly silent foxes detect| +60010|423894|36403|4|13|23632.31|0.08|0.07|N|O|1995-07-27|1995-05-12|1995-07-28|NONE|TRUCK|furiously dolphins. blithely silent| +60010|376879|26880|5|20|39117.20|0.09|0.07|R|F|1995-05-09|1995-06-26|1995-05-21|DELIVER IN PERSON|SHIP|the furiously express ideas| +60010|189275|14282|6|49|66849.23|0.04|0.06|N|O|1995-07-12|1995-05-16|1995-07-27|DELIVER IN PERSON|SHIP|leep furiously| +60011|548322|10833|1|17|23295.10|0.02|0.04|N|O|1998-06-10|1998-07-21|1998-06-24|TAKE BACK RETURN|RAIL|e even, daring depende| +60011|633600|33601|2|30|46007.10|0.01|0.01|N|O|1998-06-08|1998-07-12|1998-06-11|COLLECT COD|REG AIR|. slyly unusual requests boo| +60012|299264|24275|1|42|53056.50|0.07|0.00|A|F|1992-12-11|1992-11-15|1993-01-03|NONE|SHIP|ges after the slyly pend| +60012|716970|29485|2|22|43712.68|0.06|0.00|A|F|1992-12-21|1992-10-30|1993-01-12|TAKE BACK RETURN|TRUCK|rts detect blithely above the carefully | +60012|99229|11731|3|33|40531.26|0.06|0.03|R|F|1992-10-26|1992-10-19|1992-11-05|TAKE BACK RETURN|RAIL| carefully pending packages. furio| +60012|727162|2191|4|2|2378.26|0.01|0.02|R|F|1992-12-26|1992-11-17|1993-01-16|TAKE BACK RETURN|AIR|ccounts after the ca| +60012|401054|26071|5|5|4775.15|0.01|0.02|R|F|1992-12-29|1992-11-24|1993-01-03|TAKE BACK RETURN|RAIL|uffily regular foxes. caref| +60013|309674|47193|1|15|25254.90|0.02|0.06|N|O|1998-05-30|1998-08-11|1998-06-26|TAKE BACK RETURN|AIR|. furiously bold req| +60013|678655|41169|2|17|27771.54|0.10|0.08|N|O|1998-07-26|1998-07-30|1998-08-19|NONE|REG AIR|d pinto beans. fluffily flu| +60013|152124|39634|3|5|5880.60|0.04|0.08|N|O|1998-07-04|1998-07-20|1998-07-08|TAKE BACK RETURN|MAIL|. slyly ironic in| +60013|747409|34952|4|36|52429.32|0.04|0.08|N|O|1998-05-30|1998-07-03|1998-06-01|DELIVER IN PERSON|MAIL|. slyly regular accounts | +60014|946397|8916|1|26|37527.10|0.01|0.03|N|O|1998-07-19|1998-07-26|1998-08-10|TAKE BACK RETURN|AIR|nding deposits. carefully ironic requ| +60014|79916|17420|2|9|17063.19|0.07|0.03|N|O|1998-08-23|1998-07-29|1998-09-20|DELIVER IN PERSON|FOB|haggle slyly ironic, regular platelets. f| +60014|136832|24339|3|14|26163.62|0.03|0.00|N|O|1998-07-27|1998-07-19|1998-07-31|DELIVER IN PERSON|TRUCK|y special ac| +60015|617231|29744|1|12|13778.40|0.00|0.05|R|F|1992-08-22|1992-08-31|1992-08-25|COLLECT COD|REG AIR|ong the pending packages. requests h| +60015|797145|9661|2|49|60863.39|0.00|0.08|A|F|1992-09-28|1992-08-12|1992-09-30|COLLECT COD|SHIP|ely bold dep| +60015|606219|6220|3|38|42756.84|0.08|0.05|R|F|1992-08-17|1992-08-18|1992-09-12|TAKE BACK RETURN|TRUCK|leep fluffily alongside of th| +60015|706705|6706|4|20|34233.40|0.04|0.00|A|F|1992-09-20|1992-08-07|1992-10-04|TAKE BACK RETURN|FOB|es haggle among th| +60015|584050|34051|5|44|49897.32|0.00|0.00|A|F|1992-06-26|1992-07-08|1992-07-19|NONE|REG AIR|ounts. carefully regular dependencies wake| +60040|327999|15518|1|5|10134.90|0.01|0.05|N|O|1997-03-29|1997-04-15|1997-03-30|COLLECT COD|AIR|und the quickly iron| +60040|672003|22004|2|50|48748.50|0.03|0.08|N|O|1997-04-03|1997-04-14|1997-04-20|COLLECT COD|REG AIR|as are furiously. slyl| +60041|183046|8053|1|39|44032.56|0.10|0.01|R|F|1993-06-10|1993-06-13|1993-06-14|NONE|REG AIR|excuses haggle blithely. even, | +60041|438144|38145|2|38|41120.56|0.07|0.03|A|F|1993-04-18|1993-06-02|1993-05-11|NONE|SHIP|riously express deposits. slyly unusual c| +60042|770442|7988|1|50|75620.50|0.00|0.02|R|F|1992-07-31|1992-09-23|1992-08-27|DELIVER IN PERSON|RAIL|the blithely pending requests slee| +60042|811080|48629|2|32|31713.28|0.10|0.08|R|F|1992-10-14|1992-09-27|1992-10-15|COLLECT COD|TRUCK|ely unusual packages. carefully final| +60043|281826|31827|1|14|25309.34|0.08|0.01|N|O|1996-11-01|1996-11-27|1996-11-23|TAKE BACK RETURN|FOB|ns haggle slyly| +60043|638521|26058|2|3|4378.47|0.07|0.02|N|O|1996-11-04|1997-01-15|1996-11-10|DELIVER IN PERSON|MAIL|s. daring asymptotes wake sl| +60043|622395|47420|3|30|39520.80|0.05|0.02|N|O|1996-11-20|1996-11-23|1996-12-02|COLLECT COD|TRUCK|the unusual | +60044|127216|39719|1|6|7459.26|0.02|0.04|N|O|1997-09-01|1997-10-14|1997-09-21|TAKE BACK RETURN|SHIP|nt deposits unwind among the slyly| +60044|104117|4118|2|49|54934.39|0.07|0.03|N|O|1997-08-23|1997-10-26|1997-09-14|DELIVER IN PERSON|FOB|ons. carefully pendi| +60044|878181|40699|3|7|8113.98|0.07|0.00|N|O|1997-11-27|1997-09-25|1997-12-07|DELIVER IN PERSON|MAIL|e special deposits. final accounts wake | +60044|575705|25706|4|46|81911.28|0.03|0.02|N|O|1997-12-08|1997-10-20|1997-12-26|DELIVER IN PERSON|FOB|ronic asymptotes | +60044|864176|1728|5|26|29643.38|0.01|0.01|N|O|1997-11-11|1997-11-15|1997-11-28|DELIVER IN PERSON|RAIL|ily regular theodolites. fluffily r| +60044|198432|35942|6|9|13773.87|0.04|0.02|N|O|1997-12-13|1997-10-19|1998-01-02|COLLECT COD|REG AIR| above the slyl| +60044|39549|14550|7|17|25305.18|0.04|0.00|N|O|1997-09-29|1997-10-14|1997-10-07|COLLECT COD|REG AIR|dolites. furiously regula| +60045|693949|18976|1|20|38858.20|0.08|0.01|A|F|1994-06-30|1994-06-11|1994-07-07|NONE|RAIL|lyly final dependencies| +60045|186965|36966|2|16|32831.36|0.00|0.01|R|F|1994-05-13|1994-06-28|1994-06-11|TAKE BACK RETURN|FOB|n instructions. even | +60045|305501|43020|3|2|3012.98|0.07|0.06|A|F|1994-06-25|1994-05-02|1994-07-14|COLLECT COD|TRUCK|ular theodoli| +60045|554066|29089|4|35|39201.40|0.07|0.03|A|F|1994-07-29|1994-06-02|1994-08-21|NONE|AIR| slyly silent requests nag thin requests| +60045|177312|2319|5|34|47236.54|0.09|0.02|A|F|1994-04-03|1994-06-14|1994-04-04|COLLECT COD|RAIL|ess instruct| +60045|80723|18227|6|31|52815.32|0.10|0.05|A|F|1994-05-21|1994-05-26|1994-05-26|TAKE BACK RETURN|MAIL|pinto beans print slyly. blithely iro| +60046|704592|17107|1|20|31931.20|0.09|0.00|N|O|1996-01-03|1996-01-02|1996-01-22|DELIVER IN PERSON|MAIL|ut the blithely fluf| +60046|71117|46120|2|12|13057.32|0.09|0.04|N|O|1996-01-17|1996-01-05|1996-02-12|NONE|FOB|fluffily quick request| +60046|256286|18792|3|1|1242.27|0.00|0.05|N|O|1996-02-03|1995-11-17|1996-02-26|DELIVER IN PERSON|TRUCK|lent requests wake; regular instruc| +60046|383322|20844|4|1|1405.31|0.09|0.01|N|O|1995-11-19|1995-12-12|1995-11-23|DELIVER IN PERSON|SHIP|usly carefully silent dolp| +60047|444337|6846|1|25|32032.75|0.04|0.06|N|O|1996-03-09|1996-03-22|1996-03-31|TAKE BACK RETURN|AIR|at the special req| +60047|964366|1924|2|19|27176.08|0.01|0.07|N|O|1996-04-15|1996-03-15|1996-05-04|COLLECT COD|FOB|oxes integra| +60047|89449|26953|3|19|27330.36|0.04|0.08|N|O|1996-03-15|1996-03-23|1996-03-20|NONE|FOB|e fluffily | +60047|355219|5220|4|45|57339.00|0.05|0.00|N|O|1996-02-27|1996-04-06|1996-02-28|NONE|AIR|ecial ideas; blithely final pack| +60072|172958|10468|1|16|32495.20|0.10|0.07|N|O|1997-07-04|1997-05-08|1997-08-01|NONE|MAIL|ffily acro| +60072|904616|17135|2|23|37273.11|0.03|0.05|N|O|1997-04-13|1997-04-24|1997-04-21|COLLECT COD|AIR| fluffily even deposits| +60072|879932|4967|3|12|22942.68|0.04|0.03|N|O|1997-07-02|1997-04-30|1997-07-25|DELIVER IN PERSON|REG AIR|l, unusual accounts wake. instru| +60072|11572|36573|4|3|4450.71|0.09|0.08|N|O|1997-03-26|1997-04-18|1997-04-24|TAKE BACK RETURN|RAIL| deposits haggle across the final ide| +60073|9321|21822|1|21|25836.72|0.06|0.05|N|O|1996-12-30|1996-11-21|1997-01-20|COLLECT COD|AIR|ges. quickly pending| +60073|648092|23117|2|40|41602.40|0.09|0.02|N|O|1996-09-18|1996-11-29|1996-10-15|DELIVER IN PERSON|TRUCK|lar accounts.| +60073|470170|7698|3|7|7981.05|0.06|0.02|N|O|1996-09-06|1996-11-12|1996-09-26|DELIVER IN PERSON|TRUCK| beneath the ir| +60073|144785|44786|4|35|64042.30|0.01|0.05|N|O|1996-10-19|1996-10-24|1996-11-06|COLLECT COD|FOB|ackages? packages haggle fluffily | +60073|399454|24469|5|19|29515.36|0.00|0.02|N|O|1996-10-01|1996-10-16|1996-10-03|COLLECT COD|MAIL| accounts cajole fluffily accor| +60073|617346|42371|6|26|32846.06|0.08|0.01|N|O|1996-10-29|1996-11-22|1996-11-08|COLLECT COD|REG AIR|ckly carefully silent accounts. ca| +60074|893406|18441|1|19|26587.84|0.10|0.06|N|O|1997-09-27|1997-09-30|1997-10-12|COLLECT COD|MAIL| requests maintain daringly c| +60074|467895|42914|2|47|87554.89|0.00|0.06|N|O|1997-10-04|1997-10-18|1997-10-20|COLLECT COD|AIR|against the final packages. quickly speci| +60075|416210|28719|1|11|12388.09|0.06|0.08|A|F|1992-08-04|1992-08-31|1992-08-13|COLLECT COD|RAIL|ely regular| +60075|239688|14697|2|5|8138.35|0.05|0.08|A|F|1992-10-26|1992-08-18|1992-11-04|COLLECT COD|AIR| cajole slyly dogged pinto beans| +60075|432786|45295|3|47|80781.72|0.10|0.05|R|F|1992-07-26|1992-09-19|1992-08-05|NONE|RAIL| furiously ironic| +60075|818496|31013|4|6|8486.70|0.10|0.01|A|F|1992-08-21|1992-08-20|1992-09-19|TAKE BACK RETURN|FOB|across the sl| +60075|453349|3350|5|43|55999.76|0.04|0.05|A|F|1992-08-31|1992-08-21|1992-09-11|NONE|TRUCK|its. blithely spec| +60076|375341|37849|1|19|26910.27|0.08|0.05|N|O|1998-10-26|1998-09-10|1998-11-02|TAKE BACK RETURN|TRUCK|as doubt ac| +60076|342753|17766|2|8|14365.92|0.09|0.01|N|O|1998-08-01|1998-09-22|1998-08-02|NONE|TRUCK|sentiments wake carefully u| +60076|643900|31437|3|2|3687.74|0.04|0.07|N|O|1998-08-15|1998-08-29|1998-09-01|NONE|MAIL|eposits. fluffily bol| +60076|16615|29116|4|34|52074.74|0.05|0.01|N|O|1998-11-13|1998-09-13|1998-11-22|NONE|REG AIR|ckly about the slyly bold foxes| +60076|242124|4629|5|18|19189.98|0.01|0.03|N|O|1998-10-12|1998-10-12|1998-11-01|DELIVER IN PERSON|AIR|. unusual requests| +60076|374261|11783|6|26|34716.50|0.04|0.01|N|O|1998-08-07|1998-09-09|1998-08-23|TAKE BACK RETURN|AIR|ions against the ironic deposits wake| +60076|189662|27172|7|3|5254.98|0.05|0.02|N|O|1998-08-23|1998-08-19|1998-09-17|NONE|RAIL|he bold pinto beans; quickly regula| +60077|638133|38134|1|10|10711.00|0.03|0.07|N|O|1997-08-22|1997-07-06|1997-09-17|COLLECT COD|FOB|s. regular pinto beans wake fur| +60077|95101|45102|2|47|51516.70|0.04|0.02|N|O|1997-06-18|1997-07-21|1997-07-11|TAKE BACK RETURN|TRUCK|instructions cajole furiously fu| +60077|351431|1432|3|45|66708.90|0.04|0.05|N|O|1997-06-04|1997-07-26|1997-06-22|TAKE BACK RETURN|TRUCK|al foxes. theodolites haggle slyly a| +60077|487962|25490|4|30|58498.20|0.07|0.06|N|O|1997-06-10|1997-08-04|1997-06-25|COLLECT COD|MAIL| to sleep carefully regular | +60077|174076|36580|5|41|47152.87|0.02|0.02|N|O|1997-08-30|1997-08-02|1997-09-04|DELIVER IN PERSON|AIR|sits are slyly alongside of the bravely sp| +60078|282614|32615|1|16|25545.60|0.10|0.01|N|O|1996-03-30|1996-05-04|1996-04-09|DELIVER IN PERSON|REG AIR|haggle along the unusu| +60078|879071|29072|2|29|30450.87|0.08|0.08|N|O|1996-02-16|1996-03-29|1996-02-20|NONE|REG AIR|as about the| +60079|597347|9859|1|12|17331.84|0.10|0.06|N|O|1998-10-04|1998-09-02|1998-10-24|NONE|FOB|. carefully| +60079|606873|44410|2|47|83652.48|0.02|0.03|N|O|1998-09-25|1998-09-10|1998-10-24|NONE|SHIP|pinto beans hag| +60079|706722|44265|3|28|48403.32|0.02|0.01|N|O|1998-08-18|1998-09-05|1998-08-25|DELIVER IN PERSON|TRUCK|rbits. qui| +60079|866050|28568|4|21|21336.21|0.04|0.01|N|O|1998-09-02|1998-09-02|1998-09-12|COLLECT COD|AIR|its sleep blithely carefully ironic ideas.| +60104|341102|41103|1|7|8001.63|0.01|0.08|N|O|1997-10-01|1997-12-17|1997-10-12|NONE|FOB|es detect | +60104|886132|11167|2|4|4472.36|0.08|0.06|N|O|1997-10-24|1997-12-13|1997-10-30|DELIVER IN PERSON|TRUCK|. stealthily express | +60104|206483|6484|3|5|6947.35|0.06|0.01|N|O|1997-11-26|1997-10-27|1997-11-27|COLLECT COD|RAIL|quests. carefully unusual accounts slee| +60104|357106|44628|4|50|58154.50|0.06|0.02|N|O|1997-12-08|1997-11-12|1997-12-17|DELIVER IN PERSON|SHIP|nal pinto beans | +60105|48862|48863|1|35|63380.10|0.09|0.01|A|F|1993-10-15|1993-08-26|1993-10-16|NONE|SHIP| across the final accounts sleep f| +60105|217843|30348|2|23|40499.09|0.06|0.06|A|F|1993-08-31|1993-08-30|1993-09-19|TAKE BACK RETURN|AIR|ld accounts. blithely sly depths nag. exp| +60105|283974|33975|3|35|68528.60|0.04|0.03|A|F|1993-09-21|1993-08-18|1993-10-19|COLLECT COD|FOB| are express ideas. blithely| +60105|749428|24457|4|21|31025.19|0.06|0.00|A|F|1993-08-08|1993-08-31|1993-08-15|TAKE BACK RETURN|SHIP|thely again| +60105|634576|47089|5|7|10573.78|0.01|0.08|R|F|1993-09-14|1993-09-25|1993-09-26|NONE|TRUCK|y final requests cajo| +60105|311368|36381|6|50|68967.50|0.10|0.05|R|F|1993-08-14|1993-08-28|1993-08-20|DELIVER IN PERSON|RAIL|al, bold requests promise quickly fu| +60105|151488|38998|7|37|56960.76|0.04|0.04|R|F|1993-08-23|1993-08-08|1993-09-18|NONE|RAIL| haggle among the packages. ironic reque| +60106|43808|6309|1|46|80582.80|0.08|0.05|R|F|1993-06-24|1993-05-08|1993-07-11|NONE|REG AIR|ons are slyly pend| +60106|268295|5811|2|7|8842.96|0.10|0.07|A|F|1993-05-23|1993-05-02|1993-06-10|COLLECT COD|RAIL|ress instructions cajole a| +60106|221652|21653|3|27|42488.28|0.03|0.00|A|F|1993-04-29|1993-05-26|1993-05-14|NONE|REG AIR|s cajole above the furiously pending| +60106|302071|39590|4|38|40776.28|0.10|0.01|A|F|1993-03-24|1993-06-11|1993-04-10|TAKE BACK RETURN|REG AIR|silent theodolites. ca| +60107|936235|36236|1|14|17796.66|0.08|0.01|A|F|1993-03-13|1993-02-08|1993-04-11|NONE|RAIL| carefully s| +60107|301338|26351|2|44|58930.08|0.01|0.06|A|F|1993-01-30|1993-01-31|1993-02-03|DELIVER IN PERSON|RAIL|ticing foxes; requests serve fluffily. f| +60108|810384|22901|1|48|62128.32|0.01|0.05|R|F|1994-03-02|1994-03-13|1994-03-15|NONE|SHIP| special requests. fluffily| +60108|119539|32042|2|49|76367.97|0.04|0.05|R|F|1994-03-28|1994-02-16|1994-03-30|TAKE BACK RETURN|RAIL|its. final, ironic accounts wake above the | +60108|78170|28171|3|33|37889.61|0.03|0.03|R|F|1994-03-30|1994-04-08|1994-04-27|COLLECT COD|AIR|e between the quiet packages? daringl| +60108|799812|37358|4|47|89853.66|0.07|0.06|R|F|1994-03-22|1994-03-06|1994-04-14|COLLECT COD|MAIL| theodolites. slyly eve| +60108|431310|31311|5|20|24825.80|0.05|0.07|A|F|1994-01-13|1994-03-06|1994-01-19|COLLECT COD|RAIL| final dolp| +60108|22179|9680|6|3|3303.51|0.06|0.03|R|F|1994-04-15|1994-02-21|1994-05-02|COLLECT COD|REG AIR|posits are fu| +60109|69948|32450|1|34|65209.96|0.07|0.08|N|O|1996-09-29|1996-11-07|1996-10-21|COLLECT COD|FOB|s. ironic requests ought to use across the| +60109|610627|10628|2|17|26139.03|0.10|0.08|N|O|1996-09-26|1996-10-30|1996-09-28|NONE|TRUCK|pinto beans? e| +60110|133280|20787|1|40|52531.20|0.03|0.07|R|F|1993-07-19|1993-08-19|1993-07-30|DELIVER IN PERSON|MAIL|ter the carefully dogged deposits. regul| +60110|23542|36043|2|11|16120.94|0.03|0.02|A|F|1993-08-20|1993-07-19|1993-09-02|NONE|TRUCK|y carefully final requests. | +60110|668845|6385|3|10|18138.10|0.02|0.00|A|F|1993-08-15|1993-09-01|1993-08-20|TAKE BACK RETURN|SHIP| accounts alon| +60111|407636|45161|1|21|32415.81|0.10|0.06|A|F|1994-12-21|1994-11-01|1994-12-30|NONE|RAIL|quickly unusual| +60111|125183|188|2|48|57992.64|0.04|0.07|A|F|1994-12-20|1994-10-27|1994-12-24|DELIVER IN PERSON|FOB|inst the express foxes. fluf| +60111|942664|30219|3|1|1706.62|0.04|0.03|R|F|1994-10-11|1994-11-22|1994-10-25|DELIVER IN PERSON|AIR| accounts impress after the | +60111|350572|13080|4|14|22715.84|0.02|0.01|R|F|1994-11-27|1994-10-15|1994-12-25|TAKE BACK RETURN|AIR|ake furiously. accounts affix qui| +60111|59565|22067|5|10|15245.60|0.05|0.03|A|F|1994-12-09|1994-11-12|1995-01-05|TAKE BACK RETURN|SHIP|nal, regular accounts. furiously si| +60111|106291|43798|6|19|24648.51|0.08|0.03|R|F|1994-11-30|1994-11-05|1994-12-12|DELIVER IN PERSON|REG AIR| blithely special theodo| +60111|426809|39318|7|12|20829.36|0.05|0.07|A|F|1994-11-27|1994-11-08|1994-12-23|DELIVER IN PERSON|FOB|s the fluffily f| +60136|364839|2361|1|9|17134.38|0.00|0.04|R|F|1993-10-02|1993-09-15|1993-10-08|DELIVER IN PERSON|TRUCK|es. ironic, ironic requests wake aft| +60136|848876|11393|2|34|62044.22|0.06|0.04|A|F|1993-08-12|1993-09-22|1993-08-27|NONE|AIR|fully final deposits. asymptotes affix fu| +60136|43606|31107|3|34|52686.40|0.08|0.05|R|F|1993-08-23|1993-09-28|1993-08-26|COLLECT COD|RAIL| pinto beans cajole about the quickly bl| +60137|935760|48279|1|40|71828.80|0.09|0.08|N|O|1996-08-16|1996-07-27|1996-08-27|COLLECT COD|FOB|theodolites are aga| +60137|311625|11626|2|9|14729.49|0.08|0.08|N|O|1996-08-24|1996-06-18|1996-08-25|TAKE BACK RETURN|SHIP|thely about the quickly unusual frets. pe| +60137|471463|46482|3|19|27254.36|0.04|0.04|N|O|1996-07-03|1996-06-05|1996-07-17|NONE|MAIL|r, unusual| +60138|325985|38492|1|26|52285.22|0.02|0.04|N|O|1997-05-13|1997-05-17|1997-06-09|TAKE BACK RETURN|SHIP|st fluffily | +60138|817165|17166|2|18|19478.16|0.03|0.07|N|O|1997-07-06|1997-06-12|1997-07-29|DELIVER IN PERSON|RAIL|e unusual | +60138|77047|27048|3|15|15360.60|0.01|0.03|N|O|1997-05-09|1997-06-11|1997-05-20|NONE|FOB| platelets. blithely unusual sauternes hag| +60138|928440|3477|4|23|33773.20|0.01|0.05|N|O|1997-06-25|1997-06-19|1997-07-18|TAKE BACK RETURN|TRUCK|efully regular accounts. blith| +60138|281961|44467|5|44|85489.80|0.02|0.07|N|O|1997-07-06|1997-06-12|1997-07-26|NONE|AIR|equests wake | +60138|911010|23529|6|22|22461.34|0.03|0.08|N|O|1997-07-24|1997-05-19|1997-08-22|DELIVER IN PERSON|TRUCK|ironic deposits. blit| +60138|329173|41680|7|15|18032.40|0.10|0.04|N|O|1997-04-08|1997-05-10|1997-04-11|COLLECT COD|TRUCK|ironic dependencies wake reg| +60139|404902|17411|1|4|7227.52|0.06|0.00|R|F|1993-05-17|1993-04-03|1993-06-05|COLLECT COD|FOB|es integrate| +60139|177798|2805|2|7|13130.53|0.05|0.04|A|F|1993-04-12|1993-02-25|1993-05-01|NONE|MAIL|gular accounts cajole slyly sp| +60139|239909|14918|3|23|42524.47|0.04|0.02|R|F|1993-03-21|1993-04-19|1993-04-14|NONE|REG AIR|e carefully slyly quick packages. fin| +60139|134001|34002|4|10|10350.00|0.07|0.06|A|F|1993-03-10|1993-04-07|1993-04-06|DELIVER IN PERSON|AIR|ons wake across the slyly fina| +60139|143113|5616|5|24|27746.64|0.01|0.04|A|F|1993-02-14|1993-04-07|1993-03-11|COLLECT COD|SHIP| even platelets. final, special | +60139|299901|12407|6|8|15207.12|0.05|0.03|R|F|1993-04-05|1993-04-15|1993-04-24|NONE|AIR|ideas. packages along the ca| +60140|809049|9050|1|14|13412.00|0.00|0.02|A|F|1992-04-01|1992-06-16|1992-04-20|DELIVER IN PERSON|MAIL|riously special pinto beans are fluffily| +60140|677902|2929|2|9|16918.83|0.01|0.00|R|F|1992-07-17|1992-05-06|1992-08-15|COLLECT COD|AIR| ideas sleep blithely behind the bold| +60141|502675|27696|1|32|53684.80|0.02|0.08|N|O|1995-07-25|1995-08-23|1995-08-13|TAKE BACK RETURN|RAIL|ly unusual packages haggl| +60141|445755|33280|2|41|69729.93|0.10|0.03|N|O|1995-09-21|1995-08-01|1995-09-28|COLLECT COD|FOB| along the blithely ironic deposits. c| +60141|799323|36869|3|43|61158.47|0.02|0.01|N|O|1995-07-14|1995-08-22|1995-08-13|DELIVER IN PERSON|REG AIR|eodolites are slyly silently | +60141|214029|26534|4|37|34891.37|0.10|0.08|N|O|1995-09-23|1995-07-27|1995-10-14|DELIVER IN PERSON|AIR|lly pending | +60141|184594|47098|5|11|18464.49|0.02|0.06|A|F|1995-06-02|1995-07-28|1995-06-15|COLLECT COD|AIR|ts. deposits| +60141|456196|31215|6|11|12673.87|0.05|0.02|N|O|1995-08-22|1995-08-15|1995-09-14|NONE|SHIP|counts are. unusual pearls wake a| +60141|281235|6246|7|16|19459.52|0.04|0.05|N|O|1995-08-12|1995-07-13|1995-08-20|DELIVER IN PERSON|MAIL|ounts after the furiously special instruc| +60142|715241|2784|1|9|11305.89|0.00|0.04|N|O|1998-01-09|1998-01-03|1998-01-16|TAKE BACK RETURN|SHIP|ious asymptotes us| +60142|46212|8713|2|36|41695.56|0.02|0.04|N|O|1998-02-15|1998-02-03|1998-02-28|DELIVER IN PERSON|REG AIR|ly express requests integrat| +60142|676168|38682|3|7|8008.91|0.07|0.05|N|O|1997-12-26|1998-01-15|1997-12-27|NONE|MAIL|rmanently regular accounts. sly| +60142|346423|46424|4|36|52898.76|0.03|0.08|N|O|1998-01-17|1997-12-15|1998-02-15|COLLECT COD|SHIP|re. ironic, final pla| +60142|315987|41000|5|38|76112.86|0.00|0.00|N|O|1997-12-26|1998-02-03|1998-01-17|DELIVER IN PERSON|AIR|efully final ideas | +60142|785619|35620|6|6|10227.48|0.00|0.03|N|O|1998-01-14|1998-01-08|1998-02-11|DELIVER IN PERSON|MAIL| about the regular, re| +60142|894023|31575|7|31|31526.38|0.02|0.05|N|O|1998-03-03|1997-12-22|1998-03-13|DELIVER IN PERSON|MAIL|the slyly | +60143|842522|30071|1|26|38076.48|0.09|0.01|R|F|1995-04-01|1995-06-07|1995-04-30|COLLECT COD|AIR|ep blithely careful| +60143|265625|3141|2|3|4771.83|0.07|0.08|N|F|1995-06-13|1995-04-28|1995-07-03|TAKE BACK RETURN|AIR|kages haggle fluffily according to t| +60143|346848|9355|3|8|15158.64|0.10|0.00|A|F|1995-04-10|1995-04-28|1995-04-15|COLLECT COD|RAIL|es. dogged, regular packages above the r| +60143|458566|21076|4|26|39638.04|0.08|0.03|R|F|1995-05-25|1995-04-15|1995-06-02|NONE|FOB|auternes. slyly ironic excuses are a| +60143|117212|42217|5|19|23354.99|0.10|0.06|R|F|1995-04-03|1995-05-21|1995-05-01|DELIVER IN PERSON|REG AIR|ckly among the ironic deposits. fu| +60168|629504|4529|1|29|41570.63|0.01|0.02|R|F|1994-07-21|1994-06-11|1994-08-08|COLLECT COD|REG AIR|lyly daring accounts after the ironic, fin| +60168|69066|19067|2|30|31051.80|0.10|0.03|R|F|1994-05-28|1994-04-28|1994-06-13|NONE|MAIL|e quickly alongside of the blithe| +60168|786662|11693|3|11|19234.93|0.01|0.00|R|F|1994-06-10|1994-06-11|1994-07-03|NONE|FOB|st slyly above the sl| +60168|423768|36277|4|45|76128.30|0.10|0.08|A|F|1994-07-22|1994-06-25|1994-08-13|DELIVER IN PERSON|MAIL|kages. bold theodo| +60168|258077|45593|5|41|42437.46|0.03|0.03|R|F|1994-03-28|1994-06-07|1994-04-19|NONE|RAIL|ions haggle. c| +60168|490042|27570|6|6|6192.12|0.07|0.02|R|F|1994-05-23|1994-05-14|1994-06-04|NONE|FOB|refully above the ironic instruct| +60169|32707|45208|1|42|68867.40|0.01|0.01|R|F|1994-01-31|1994-03-15|1994-02-26|NONE|SHIP|ng requests.| +60170|315833|28340|1|1|1848.82|0.03|0.00|A|F|1994-04-04|1994-02-22|1994-05-04|TAKE BACK RETURN|SHIP|tions! slyly final requests sleep care| +60170|200225|12730|2|17|19128.57|0.05|0.01|R|F|1994-01-23|1994-02-11|1994-02-16|COLLECT COD|SHIP|ckly pending asymptotes. i| +60171|210514|35523|1|7|9971.50|0.03|0.06|A|F|1994-09-22|1994-07-11|1994-10-08|DELIVER IN PERSON|REG AIR|yly stealthy, ironic reques| +60171|93189|43190|2|41|48469.38|0.05|0.06|R|F|1994-10-07|1994-07-14|1994-11-04|TAKE BACK RETURN|FOB|furiously en| +60171|220530|45539|3|39|56570.28|0.01|0.05|R|F|1994-06-23|1994-08-06|1994-07-06|NONE|TRUCK|ove the accounts. silent, regular depo| +60172|568797|6331|1|24|44778.48|0.04|0.01|A|F|1992-12-16|1992-12-22|1992-12-30|NONE|AIR|y across the b| +60173|790739|40740|1|1|1829.70|0.02|0.03|R|F|1993-06-19|1993-07-31|1993-06-25|NONE|REG AIR|p among the slyly close frays. furio| +60174|740763|28306|1|20|36074.60|0.05|0.03|A|F|1993-02-06|1993-01-02|1993-03-08|TAKE BACK RETURN|AIR|ions against the fu| +60175|224698|12211|1|11|17849.48|0.08|0.03|N|O|1998-04-08|1998-05-14|1998-04-15|NONE|MAIL|. pending dolphins against the blithe| +60175|497451|22470|2|23|33313.89|0.09|0.00|N|O|1998-04-28|1998-05-24|1998-05-25|DELIVER IN PERSON|FOB|egular, special instructions. | +60175|652401|39941|3|44|59548.28|0.01|0.02|N|O|1998-05-10|1998-05-22|1998-05-31|NONE|RAIL| daring instructions | +60200|49110|36611|1|3|3177.33|0.02|0.01|N|O|1998-06-18|1998-06-03|1998-07-07|NONE|REG AIR| pending accounts. furiously pending r| +60200|381832|19354|2|8|15310.56|0.08|0.07|N|O|1998-06-28|1998-05-19|1998-07-13|DELIVER IN PERSON|SHIP|efully silent excuses are quickly | +60200|438005|514|3|49|46206.02|0.08|0.01|N|O|1998-04-15|1998-06-20|1998-04-25|NONE|AIR|ronic packages are. furiously final| +60201|943686|18723|1|15|25944.60|0.00|0.08|N|O|1998-06-08|1998-07-31|1998-06-29|NONE|RAIL|odolites. regular packages sleep b| +60202|889353|1871|1|20|26846.20|0.01|0.01|A|F|1993-05-17|1993-04-08|1993-05-20|DELIVER IN PERSON|RAIL|d the furiously bold th| +60202|350417|25432|2|28|41087.20|0.09|0.00|A|F|1993-02-18|1993-04-30|1993-02-25|NONE|TRUCK|posits nag slyly. s| +60202|453846|41374|3|44|79192.08|0.08|0.07|R|F|1993-03-14|1993-05-05|1993-04-10|NONE|AIR|osits cajole. bold depe| +60202|783569|8600|4|13|21482.89|0.01|0.07|A|F|1993-02-20|1993-04-14|1993-03-09|NONE|MAIL|y regular requests. special, unusual| +60202|435232|10249|5|6|7003.26|0.02|0.05|R|F|1993-03-18|1993-03-26|1993-04-07|TAKE BACK RETURN|AIR|usly unusual ideas; accounts are according | +60203|553151|3152|1|5|6020.65|0.01|0.00|N|O|1998-06-27|1998-04-18|1998-06-28|DELIVER IN PERSON|MAIL| carefully. dependencies c| +60203|794059|19090|2|45|51885.90|0.00|0.00|N|O|1998-04-26|1998-05-26|1998-04-27|DELIVER IN PERSON|FOB|usly. final deposits cajole quickly even | +60203|745096|20125|3|32|36513.92|0.03|0.06|N|O|1998-05-14|1998-04-23|1998-05-23|TAKE BACK RETURN|FOB| boost blithely final a| +60203|815086|15087|4|45|45046.80|0.01|0.04|N|O|1998-05-29|1998-06-03|1998-06-27|TAKE BACK RETURN|REG AIR|ependencies hang? b| +60204|38163|25664|1|29|31933.64|0.02|0.08|N|O|1995-12-18|1995-11-10|1995-12-26|NONE|RAIL|efully even ideas haggle q| +60204|404443|41968|2|24|32338.08|0.06|0.04|N|O|1995-10-14|1995-11-04|1995-11-11|TAKE BACK RETURN|REG AIR|cing deposits detect. slyly slow requ| +60205|555646|43180|1|47|79976.14|0.10|0.03|N|O|1996-10-07|1996-11-24|1996-10-08|TAKE BACK RETURN|RAIL|g, unusual r| +60205|730618|30619|2|36|59348.88|0.05|0.06|N|O|1996-12-14|1996-10-14|1997-01-10|DELIVER IN PERSON|MAIL|r, regular asymptotes. carefu| +60205|488335|13354|3|35|46315.85|0.00|0.01|N|O|1996-12-15|1996-10-01|1997-01-10|DELIVER IN PERSON|AIR| after the carefully ironic | +60205|438560|13577|4|9|13486.86|0.06|0.03|N|O|1996-09-01|1996-11-21|1996-09-06|NONE|FOB| packages w| +60205|872182|34700|5|10|11541.40|0.03|0.03|N|O|1996-10-13|1996-10-16|1996-11-07|DELIVER IN PERSON|FOB| the blithely regular requests| +60206|357215|44737|1|31|39438.20|0.04|0.08|R|F|1992-10-29|1992-09-24|1992-11-15|COLLECT COD|MAIL|r accounts. slyly final | +60206|700774|38317|2|38|67440.12|0.02|0.03|R|F|1992-09-03|1992-10-10|1992-09-28|DELIVER IN PERSON|FOB|ajole quickly a| +60206|901244|13763|3|37|46072.40|0.05|0.08|A|F|1992-09-13|1992-09-08|1992-09-19|TAKE BACK RETURN|REG AIR|ven pearls are b| +60207|611817|49354|1|40|69151.20|0.02|0.01|N|O|1996-02-07|1996-04-29|1996-02-27|COLLECT COD|SHIP|requests wake carefully quickly| +60207|791607|29153|2|34|57751.38|0.10|0.07|N|O|1996-02-26|1996-04-18|1996-03-08|NONE|SHIP|en asymptotes cajole slyly spec| +60207|524196|49217|3|37|45146.29|0.01|0.01|N|O|1996-05-16|1996-04-22|1996-06-05|DELIVER IN PERSON|REG AIR|ckly even foxes ca| +60207|150270|12774|4|13|17163.51|0.08|0.03|N|O|1996-04-04|1996-03-10|1996-04-28|COLLECT COD|RAIL| regular fo| +60207|579136|29137|5|43|52249.73|0.00|0.00|N|O|1996-05-30|1996-03-31|1996-06-05|COLLECT COD|REG AIR|press ideas wake| +60207|524498|37009|6|16|24359.52|0.09|0.06|N|O|1996-04-24|1996-04-10|1996-05-10|TAKE BACK RETURN|SHIP|iously even foxes cajole car| +60232|425712|38221|1|4|6550.76|0.06|0.04|N|O|1996-06-15|1996-05-22|1996-06-17|COLLECT COD|TRUCK|ntly special platelets int| +60232|939187|1706|2|9|11035.26|0.04|0.00|N|O|1996-07-08|1996-04-17|1996-08-01|TAKE BACK RETURN|RAIL|s are carefully special, express idea| +60232|908099|8100|3|46|50924.30|0.10|0.07|N|O|1996-05-06|1996-04-28|1996-05-24|COLLECT COD|MAIL|r realms haggle furiously alongsi| +60232|411141|48666|4|27|28407.24|0.02|0.03|N|O|1996-07-05|1996-05-14|1996-08-01|COLLECT COD|REG AIR|ts alongside of the slyly ir| +60233|400073|25090|1|21|20434.05|0.07|0.03|N|O|1997-10-30|1997-11-18|1997-11-21|NONE|MAIL|p. regular packages sleep among | +60233|17378|4879|2|35|45337.95|0.00|0.02|N|O|1997-12-17|1997-10-20|1997-12-28|NONE|RAIL|ajole alongside of the de| +60233|66178|28680|3|38|43478.46|0.04|0.07|N|O|1997-09-29|1997-11-08|1997-10-24|COLLECT COD|REG AIR|sly blithely| +60233|247778|35291|4|27|46595.52|0.02|0.05|N|O|1997-11-03|1997-10-17|1997-11-25|TAKE BACK RETURN|RAIL|s haggle ev| +60233|402451|27468|5|34|46016.62|0.04|0.07|N|O|1998-01-03|1997-11-06|1998-01-30|TAKE BACK RETURN|FOB|to beans wak| +60233|984799|22357|6|14|26372.50|0.04|0.03|N|O|1997-10-16|1997-10-10|1997-10-30|NONE|AIR|y special accounts. sl| +60234|305372|5373|1|27|37188.72|0.10|0.06|A|F|1993-10-06|1993-10-26|1993-10-21|TAKE BACK RETURN|SHIP|the bravely ironic a| +60234|384753|9768|2|9|16539.66|0.00|0.00|R|F|1993-12-10|1993-12-11|1993-12-30|COLLECT COD|SHIP|lithely requests. regular ideas ar| +60234|533195|20726|3|32|39301.44|0.01|0.07|A|F|1993-09-21|1993-12-02|1993-10-19|COLLECT COD|AIR|nticing, regular pinto beans m| +60234|397517|22532|4|22|35519.00|0.04|0.04|A|F|1994-01-09|1993-10-28|1994-02-03|DELIVER IN PERSON|SHIP| requests nag blithely from the even, iro| +60234|57850|32853|5|17|30733.45|0.02|0.06|A|F|1993-10-30|1993-12-05|1993-11-25|DELIVER IN PERSON|AIR|s x-ray quickl| +60234|281726|19242|6|37|63185.27|0.07|0.03|A|F|1993-12-01|1993-12-11|1993-12-12|TAKE BACK RETURN|FOB|furiously against the fluf| +60235|429563|29564|1|15|22388.10|0.08|0.00|A|F|1994-07-10|1994-06-22|1994-07-29|COLLECT COD|FOB| foxes according to the exp| +60235|661101|48641|2|27|28675.89|0.10|0.03|A|F|1994-05-15|1994-06-15|1994-05-20|TAKE BACK RETURN|RAIL|ronic deposits af| +60235|111613|49120|3|1|1624.61|0.08|0.08|R|F|1994-06-03|1994-06-17|1994-06-26|COLLECT COD|AIR|hang blithel| +60235|878625|41143|4|37|59332.46|0.01|0.05|A|F|1994-05-03|1994-06-10|1994-05-28|TAKE BACK RETURN|RAIL|onic pinto beans. carefully final platele| +60236|391853|4361|1|35|68069.40|0.03|0.07|N|O|1998-08-31|1998-10-05|1998-09-21|COLLECT COD|SHIP|sits among the regular waters haggle r| +60236|859217|46769|2|30|35285.10|0.02|0.08|N|O|1998-08-07|1998-10-12|1998-08-20|DELIVER IN PERSON|FOB|eas accord| +60236|856639|19157|3|7|11169.13|0.03|0.00|N|O|1998-09-20|1998-09-03|1998-09-30|NONE|TRUCK| according to the ironi| +60236|521970|9501|4|22|43822.90|0.05|0.03|N|O|1998-10-05|1998-09-15|1998-10-18|TAKE BACK RETURN|REG AIR|side of the pending, unusual p| +60236|736719|11748|5|2|3511.36|0.04|0.01|N|O|1998-08-23|1998-08-24|1998-09-03|TAKE BACK RETURN|AIR|s use closely along the final platele| +60236|22882|22883|6|9|16243.92|0.06|0.04|N|O|1998-10-14|1998-08-22|1998-10-19|COLLECT COD|RAIL|uriously across the care| +60236|573221|48244|7|15|19413.00|0.06|0.03|N|O|1998-10-26|1998-08-19|1998-11-15|COLLECT COD|MAIL|ly regular packages. carefully s| +60237|117532|17533|1|50|77476.50|0.01|0.04|N|O|1998-08-04|1998-10-08|1998-08-05|NONE|AIR|furiously special theodolite| +60237|351160|1161|2|26|31489.90|0.06|0.08|N|O|1998-08-12|1998-10-06|1998-08-21|NONE|AIR|y regular asymptotes: even requests hag| +60237|934823|22378|3|12|22293.36|0.09|0.08|N|O|1998-08-10|1998-10-10|1998-08-26|NONE|FOB|ual foxes. special foxes hang carefu| +60238|212200|49713|1|37|41151.03|0.01|0.01|N|O|1996-11-23|1997-01-12|1996-11-27|NONE|MAIL|should have to eat blith| +60238|443053|30578|2|15|14940.45|0.02|0.06|N|O|1997-02-27|1996-12-27|1997-03-04|TAKE BACK RETURN|AIR|ts sleep blithely bold theodolites. bl| +60239|728431|28432|1|14|20431.60|0.05|0.04|N|O|1998-06-25|1998-07-07|1998-07-07|DELIVER IN PERSON|TRUCK|e furiously final deposits. blithely | +60239|724552|49581|2|28|44142.56|0.09|0.05|N|O|1998-07-10|1998-07-09|1998-08-01|TAKE BACK RETURN|SHIP|al dolphins lo| +60264|144453|19458|1|9|13477.05|0.09|0.04|R|F|1994-07-10|1994-07-03|1994-07-22|TAKE BACK RETURN|MAIL|ilent pinto beans. slyly spe| +60264|808609|33642|2|16|24280.96|0.06|0.05|R|F|1994-07-06|1994-06-02|1994-08-01|DELIVER IN PERSON|AIR|l, ironic requests. s| +60264|283009|20525|3|16|15871.84|0.03|0.03|R|F|1994-04-16|1994-05-22|1994-05-09|DELIVER IN PERSON|RAIL| regular requests integrate d| +60264|516130|28641|4|21|24068.31|0.03|0.02|A|F|1994-07-28|1994-05-31|1994-07-30|NONE|TRUCK|y about the bold, regular Tiresias. blith| +60264|585165|35166|5|28|35003.92|0.04|0.07|R|F|1994-04-19|1994-05-28|1994-05-09|NONE|AIR|ven platelets integra| +60264|864177|26695|6|50|57056.50|0.02|0.04|A|F|1994-06-24|1994-06-30|1994-07-04|COLLECT COD|FOB|outs: slyly regular | +60264|220855|8368|7|4|7103.36|0.00|0.08|A|F|1994-05-14|1994-06-16|1994-05-18|NONE|AIR|regular requests wake furiously a| +60265|895312|45313|1|12|15687.24|0.04|0.04|R|F|1993-03-13|1993-03-29|1993-03-29|COLLECT COD|REG AIR|lly regular instructions. f| +60265|503197|15708|2|34|40805.78|0.04|0.04|R|F|1993-05-02|1993-03-22|1993-05-22|TAKE BACK RETURN|FOB|dolites. slyly express i| +60265|219593|7106|3|21|31764.18|0.02|0.08|A|F|1993-03-26|1993-03-15|1993-04-15|NONE|RAIL|r deposits cajole| +60265|683637|33638|4|23|37273.80|0.01|0.01|R|F|1993-02-12|1993-02-25|1993-02-20|TAKE BACK RETURN|SHIP|ly. carefully bold accounts are after the | +60265|872135|9687|5|32|35426.88|0.09|0.01|R|F|1993-02-10|1993-03-25|1993-03-04|TAKE BACK RETURN|TRUCK| blithely | +60266|885620|48138|1|13|20872.54|0.04|0.08|A|F|1995-06-05|1995-05-19|1995-06-11|DELIVER IN PERSON|MAIL|ose deposits above the carefu| +60266|599739|37273|2|40|73548.40|0.10|0.04|N|O|1995-07-09|1995-05-30|1995-07-16|NONE|FOB| furiously pending packages. silent| +60266|804569|29602|3|4|5894.08|0.05|0.02|R|F|1995-04-22|1995-05-27|1995-04-24|TAKE BACK RETURN|FOB|wake slyly! furiousl| +60266|384192|21714|4|38|48494.84|0.05|0.03|R|F|1995-06-05|1995-06-06|1995-06-08|COLLECT COD|FOB|rls unwind accor| +60267|735901|48416|1|2|3873.74|0.07|0.01|R|F|1992-12-15|1992-12-08|1992-12-16|DELIVER IN PERSON|SHIP|sentiments cajole ruthlessly according to| +60267|287322|12333|2|35|45825.85|0.08|0.01|A|F|1992-11-12|1992-11-24|1992-11-15|COLLECT COD|REG AIR|alongside of the slyly regular id| +60267|19669|19670|3|30|47659.80|0.05|0.05|R|F|1993-01-19|1992-12-01|1993-01-24|DELIVER IN PERSON|RAIL| blithely among| +60267|575288|311|4|46|62709.96|0.10|0.00|A|F|1992-11-09|1992-11-01|1992-12-01|TAKE BACK RETURN|MAIL|ges. stealthily ironi| +60267|858229|20747|5|28|33241.04|0.09|0.07|R|F|1992-10-20|1992-11-17|1992-11-04|NONE|AIR|usly regular accounts need to s| +60267|253544|28555|6|29|43428.37|0.05|0.04|R|F|1992-12-08|1992-12-18|1992-12-19|TAKE BACK RETURN|REG AIR|ccounts wake dugouts. pinto be| +60268|938054|13091|1|46|50232.46|0.10|0.02|N|O|1997-08-20|1997-08-31|1997-08-27|TAKE BACK RETURN|TRUCK|ular frets along the bold, ex| +60268|873516|36034|2|44|65536.68|0.05|0.04|N|O|1997-11-07|1997-10-07|1997-11-09|DELIVER IN PERSON|RAIL|quickly along the bold, pending pi| +60268|172758|22759|3|6|10984.50|0.08|0.04|N|O|1997-11-15|1997-08-24|1997-11-18|DELIVER IN PERSON|MAIL|fluffily. ironic excuses slee| +60268|530880|30881|4|45|85988.70|0.00|0.01|N|O|1997-09-01|1997-09-17|1997-09-11|DELIVER IN PERSON|RAIL| slyly express accounts above the regular| +60268|490984|28512|5|40|78998.40|0.02|0.04|N|O|1997-08-16|1997-09-29|1997-08-23|NONE|REG AIR| accounts sleep fu| +60269|382881|20403|1|12|23566.44|0.09|0.00|R|F|1994-08-10|1994-07-06|1994-08-14|COLLECT COD|AIR|. slowly bold a| +60269|78500|16004|2|32|47312.00|0.06|0.08|R|F|1994-07-02|1994-07-08|1994-07-04|NONE|FOB|egrate enti| +60269|345475|20488|3|4|6081.84|0.07|0.01|A|F|1994-04-18|1994-06-08|1994-05-07|COLLECT COD|RAIL|as pending packages. ironic instruc| +60269|397997|35519|4|6|12569.88|0.08|0.07|R|F|1994-06-02|1994-06-03|1994-06-04|DELIVER IN PERSON|SHIP|blithely ironic, express p| +60269|130617|30618|5|5|8238.05|0.05|0.07|R|F|1994-06-28|1994-05-14|1994-07-22|DELIVER IN PERSON|TRUCK|regular, regu| +60269|274053|24054|6|7|7189.28|0.06|0.04|A|F|1994-08-07|1994-06-10|1994-09-05|DELIVER IN PERSON|RAIL|xpress accounts are unusual warhorses. qu| +60270|243590|31103|1|15|23003.70|0.02|0.02|N|O|1998-01-25|1998-01-09|1998-02-22|NONE|AIR| ironic excuses: pending, fina| +60270|9448|46949|2|31|42080.64|0.07|0.02|N|O|1997-12-28|1998-01-31|1998-01-15|NONE|MAIL|s cajole after the dolphins. final, | +60270|790005|15036|3|12|13139.64|0.00|0.08|N|O|1998-01-24|1997-12-30|1998-01-31|COLLECT COD|AIR| dependencies. slyly even braids detect| +60270|600492|38029|4|15|20886.90|0.08|0.07|N|O|1998-01-25|1998-01-26|1998-02-18|TAKE BACK RETURN|RAIL|ly unusual packages slee| +60270|453758|41286|5|15|25675.95|0.09|0.06|N|O|1998-01-04|1998-02-03|1998-01-26|NONE|RAIL|onic requests engage. acco| +60270|308909|46428|6|26|49865.14|0.05|0.08|N|O|1998-01-26|1998-02-08|1998-02-06|TAKE BACK RETURN|MAIL|ly regular fo| +60270|822114|22115|7|22|22793.54|0.01|0.02|N|O|1998-03-11|1998-02-21|1998-03-22|COLLECT COD|AIR|tructions abou| +60271|265248|2764|1|1|1213.23|0.08|0.02|R|F|1995-02-09|1994-12-07|1995-02-18|NONE|SHIP|riously bold pinto beans. accounts among| +60271|16927|41928|2|36|66381.12|0.00|0.03|R|F|1995-01-10|1994-12-29|1995-01-27|DELIVER IN PERSON|TRUCK|ructions detect carefully regular foxes. | +60271|484743|22271|3|49|84658.28|0.01|0.03|A|F|1994-12-02|1994-12-31|1994-12-31|COLLECT COD|TRUCK|d the quickly express packages are c| +60271|66253|16254|4|13|15850.25|0.10|0.03|A|F|1994-11-14|1994-11-22|1994-11-20|DELIVER IN PERSON|MAIL|regular deposits| +60296|665740|15741|1|22|37525.62|0.04|0.03|N|O|1998-01-22|1997-12-10|1998-01-31|COLLECT COD|TRUCK|unts boost alongside of the b| +60296|76847|39349|2|23|41948.32|0.02|0.01|N|O|1997-12-10|1997-11-15|1997-12-24|NONE|AIR|s sleep careful| +60296|566506|41529|3|32|50319.36|0.07|0.00|N|O|1997-12-13|1997-11-27|1998-01-03|COLLECT COD|FOB|ong the slyly furious theodolites. c| +60296|251997|27008|4|4|7795.92|0.05|0.07|N|O|1997-10-18|1997-11-27|1997-11-12|NONE|MAIL| dolphins integrate furiously eve| +60297|974923|49962|1|47|93900.36|0.08|0.01|N|O|1996-02-22|1996-03-28|1996-02-27|NONE|SHIP|symptotes.| +60297|519344|44365|2|43|58622.76|0.06|0.01|N|O|1996-03-11|1996-03-13|1996-04-09|NONE|TRUCK|ding packages. careful| +60297|611899|36924|3|3|5432.58|0.02|0.01|N|O|1996-04-26|1996-02-26|1996-04-27|COLLECT COD|FOB|sits haggle | +60297|182540|32541|4|7|11357.78|0.04|0.03|N|O|1996-02-03|1996-02-23|1996-03-04|COLLECT COD|AIR|platelets c| +60297|946056|33611|5|36|39672.36|0.04|0.04|N|O|1996-01-28|1996-03-21|1996-02-14|TAKE BACK RETURN|SHIP|inal accounts haggle furiously above t| +60297|350552|38074|6|3|4807.62|0.01|0.02|N|O|1996-04-10|1996-03-17|1996-04-20|COLLECT COD|TRUCK|ular deposits. de| +60298|48999|49000|1|30|58439.70|0.01|0.07|R|F|1993-05-18|1993-03-29|1993-05-25|DELIVER IN PERSON|FOB| express accounts | +60298|525816|25817|2|38|69988.02|0.04|0.02|R|F|1993-05-03|1993-05-27|1993-05-11|TAKE BACK RETURN|RAIL|ily bold pinto beans sle| +60298|383084|20606|3|23|26842.61|0.01|0.03|A|F|1993-06-20|1993-04-13|1993-07-19|TAKE BACK RETURN|FOB|terns haggle slyly quickly unusual| +60299|359996|35011|1|23|47287.54|0.08|0.01|N|O|1998-01-21|1998-02-07|1998-01-25|DELIVER IN PERSON|MAIL|. fluffily busy packages among the furio| +60300|147914|22919|1|39|76514.49|0.04|0.05|A|F|1995-01-27|1995-03-27|1995-02-15|TAKE BACK RETURN|FOB|en ideas do thrash fluffily regular e| +60300|977128|39648|2|5|6025.40|0.08|0.03|R|F|1995-03-05|1995-03-27|1995-03-07|COLLECT COD|SHIP|to the even, regular pin| +60300|582697|32698|3|13|23135.71|0.01|0.05|R|F|1995-01-15|1995-02-09|1995-02-01|DELIVER IN PERSON|TRUCK|ests affix always across the| +60300|378284|40792|4|15|20434.05|0.09|0.01|R|F|1995-02-08|1995-02-19|1995-02-20|COLLECT COD|AIR| accounts haggle slyly accoun| +60300|818070|5619|5|35|34581.05|0.08|0.02|R|F|1995-01-17|1995-03-27|1995-01-18|COLLECT COD|RAIL| final theodolit| +60301|171794|21795|1|22|41047.38|0.02|0.08|N|O|1997-02-03|1997-02-28|1997-02-09|NONE|TRUCK|ggle dinos-- even forges sleep final exc| +60301|332096|7109|2|19|21433.52|0.10|0.08|N|O|1997-02-01|1997-03-26|1997-02-16|DELIVER IN PERSON|RAIL|r instructions are slyly exp| +60301|523219|48240|3|18|22359.42|0.04|0.05|N|O|1997-04-17|1997-02-07|1997-04-29|NONE|REG AIR|kages. blithely final accoun| +60301|730798|5827|4|47|85951.72|0.08|0.01|N|O|1997-02-22|1997-03-22|1997-03-01|NONE|SHIP|old packages. sly instructio| +60301|508821|46352|5|19|34766.20|0.07|0.08|N|O|1997-04-23|1997-02-27|1997-05-01|NONE|REG AIR|lar instructions. | +60301|737903|37904|6|4|7763.48|0.02|0.02|N|O|1997-05-08|1997-03-09|1997-06-02|COLLECT COD|FOB|ets cajole blithely along the carefully bol| +60302|810173|10174|1|9|9748.17|0.06|0.01|N|O|1997-12-16|1998-02-19|1998-01-10|NONE|RAIL|xes cajole above | +60302|572965|35477|2|11|22417.34|0.10|0.04|N|O|1997-12-18|1998-02-13|1998-01-07|DELIVER IN PERSON|MAIL|odolites are. quickly e| +60303|472798|47817|1|14|24790.78|0.05|0.00|A|F|1993-03-05|1993-03-17|1993-04-04|COLLECT COD|AIR|ithely even deposits cajole aga| +60303|312125|37138|2|13|14782.43|0.04|0.02|A|F|1993-03-15|1993-04-21|1993-03-16|DELIVER IN PERSON|FOB|g deposits. blithely pendi| +60328|539389|1900|1|25|35709.00|0.06|0.03|A|F|1992-04-18|1992-03-07|1992-04-29|DELIVER IN PERSON|MAIL|n instructions cajole quickly within | +60328|509391|21902|2|9|12603.33|0.10|0.08|R|F|1992-04-01|1992-04-06|1992-04-17|TAKE BACK RETURN|REG AIR|slyly regular pac| +60329|715908|15909|1|11|21162.57|0.05|0.01|A|F|1993-04-07|1993-03-11|1993-04-19|COLLECT COD|AIR|quests: blithel| +60330|409641|47166|1|32|49619.84|0.09|0.08|N|O|1995-11-11|1995-09-06|1995-12-08|NONE|REG AIR|s. ironic excu| +60330|828323|28324|2|46|57558.88|0.05|0.03|N|O|1995-09-09|1995-09-16|1995-09-16|COLLECT COD|TRUCK| quickly regular multipl| +60330|617399|29912|3|45|59236.20|0.01|0.04|N|O|1995-10-15|1995-09-24|1995-11-13|COLLECT COD|TRUCK|ly silent pinto beans detect slyly about t| +60330|619044|31557|4|21|20223.21|0.01|0.00|N|O|1995-10-06|1995-10-13|1995-10-14|DELIVER IN PERSON|REG AIR|ly even ideas | +60330|265725|40736|5|45|76081.95|0.05|0.07|N|O|1995-09-19|1995-10-14|1995-10-16|NONE|AIR|usual pinto beans shall wake permanent p| +60330|28492|28493|6|49|69604.01|0.03|0.00|N|O|1995-09-13|1995-09-26|1995-10-08|DELIVER IN PERSON|REG AIR|coys at the ironica| +60331|277187|14703|1|16|18626.72|0.05|0.08|N|O|1995-12-16|1995-09-27|1995-12-27|TAKE BACK RETURN|TRUCK|ngly along the slyly regular packages| +60331|674414|49441|2|27|37486.26|0.08|0.08|N|O|1995-12-20|1995-11-17|1996-01-07|DELIVER IN PERSON|TRUCK|onic foxes sleep a| +60331|875955|25956|3|49|94614.59|0.09|0.01|N|O|1995-09-22|1995-10-24|1995-09-30|DELIVER IN PERSON|RAIL|s. blithely| +60331|170911|8421|4|37|73330.67|0.09|0.04|N|O|1995-08-29|1995-11-16|1995-08-30|COLLECT COD|AIR|are slyly bold ideas. blithely| +60331|498708|11218|5|19|32426.92|0.10|0.00|N|O|1995-09-16|1995-10-07|1995-09-24|NONE|RAIL|ackages grow | +60331|769511|7057|6|37|58477.76|0.04|0.03|N|O|1995-10-17|1995-09-29|1995-10-26|COLLECT COD|RAIL|s integrate along th| +60332|785935|35936|1|38|76794.20|0.10|0.02|R|F|1994-09-04|1994-08-16|1994-09-22|DELIVER IN PERSON|RAIL|nd the ironic deposits. regular, even ins| +60332|197930|47931|2|42|85173.06|0.10|0.07|A|F|1994-06-17|1994-09-07|1994-06-26|COLLECT COD|TRUCK| after the blithely special asymptot| +60332|606934|6935|3|1|1840.90|0.02|0.07|R|F|1994-10-08|1994-09-04|1994-10-20|COLLECT COD|FOB|about the theodolites. accounts a| +60332|725660|689|4|12|20227.56|0.01|0.03|R|F|1994-09-29|1994-07-13|1994-10-27|TAKE BACK RETURN|SHIP|refully behind the even accounts. always | +60332|165302|40309|5|15|20509.50|0.07|0.01|R|F|1994-08-16|1994-07-19|1994-08-27|DELIVER IN PERSON|TRUCK| boost across| +60332|217059|42068|6|43|41969.72|0.00|0.00|R|F|1994-09-29|1994-08-21|1994-10-21|COLLECT COD|TRUCK|ructions: quickly pending accounts doze| +60332|100909|38416|7|40|76396.00|0.01|0.06|A|F|1994-09-30|1994-08-30|1994-10-27|TAKE BACK RETURN|FOB|uriously pending tithes.| +60333|974493|12051|1|17|26646.65|0.05|0.05|N|O|1998-06-09|1998-04-30|1998-06-13|TAKE BACK RETURN|TRUCK| express accoun| +60333|294447|44448|2|12|17297.16|0.02|0.00|N|O|1998-06-07|1998-04-20|1998-06-15|NONE|RAIL|even sauternes. packages detec| +60333|765850|3396|3|46|88127.72|0.03|0.01|N|O|1998-05-28|1998-04-09|1998-06-27|COLLECT COD|TRUCK|e quiet pearls. ironic, regular requests| +60333|640567|15592|4|9|13567.77|0.05|0.01|N|O|1998-03-22|1998-04-26|1998-03-24|TAKE BACK RETURN|REG AIR|are quickly above the slyly spe| +60333|994071|31629|5|34|39611.02|0.06|0.08|N|O|1998-04-27|1998-05-18|1998-05-07|DELIVER IN PERSON|SHIP|latelets boost quickly. slyly ironic de| +60333|340869|15882|6|35|66844.75|0.10|0.05|N|O|1998-06-02|1998-05-22|1998-06-24|NONE|REG AIR|ly? special| +60333|980241|30242|7|11|14533.20|0.07|0.05|N|O|1998-05-27|1998-05-09|1998-06-11|NONE|RAIL|atelets. furiously silent instructions wak| +60334|905630|5631|1|39|63788.01|0.10|0.03|A|F|1994-03-31|1994-02-08|1994-04-17|NONE|AIR|jole. slowly| +60334|920169|20170|2|40|47564.80|0.05|0.07|R|F|1994-01-14|1994-02-15|1994-01-20|TAKE BACK RETURN|RAIL|endencies alon| +60334|264629|27135|3|44|70118.84|0.04|0.02|R|F|1993-12-13|1994-02-20|1993-12-24|DELIVER IN PERSON|FOB|es believe furiously after the car| +60334|614626|2163|4|47|72407.73|0.07|0.07|R|F|1994-02-13|1994-02-25|1994-03-10|NONE|REG AIR| slyly regular d| +60334|6699|6700|5|32|51382.08|0.03|0.03|A|F|1994-04-02|1994-03-04|1994-04-18|TAKE BACK RETURN|MAIL|ial waters cajole| +60335|185306|47810|1|30|41739.00|0.03|0.04|N|O|1997-01-01|1996-10-19|1997-01-29|NONE|REG AIR|r foxes wake carefully above the packages. | +60335|435237|47746|2|9|10549.89|0.03|0.04|N|O|1996-11-11|1996-12-15|1996-11-16|DELIVER IN PERSON|REG AIR|against the regular dependencies haggle fur| +60335|19767|7268|3|40|67470.40|0.10|0.03|N|O|1996-11-03|1996-12-12|1996-11-26|COLLECT COD|RAIL|sts cajole carefull| +60335|221393|21394|4|9|11829.42|0.00|0.07|N|O|1997-01-03|1996-12-14|1997-01-17|COLLECT COD|MAIL|ly ironic deposits. carefully pending as| +60335|938134|38135|5|32|37506.88|0.09|0.06|N|O|1996-12-01|1996-11-05|1996-12-17|NONE|FOB|e of the final deposits. blithely pend| +60360|805565|30598|1|28|41174.56|0.10|0.00|A|F|1994-05-26|1994-03-23|1994-05-29|COLLECT COD|REG AIR|ages nag furiously furiously bold theodo| +60360|121258|46263|2|40|51170.00|0.04|0.01|R|F|1994-05-20|1994-04-19|1994-05-29|COLLECT COD|MAIL|. furiously | +60360|972797|22798|3|36|67311.00|0.09|0.03|R|F|1994-03-20|1994-03-18|1994-04-18|TAKE BACK RETURN|FOB|stealthily. final| +60360|789049|39050|4|29|33002.29|0.02|0.08|R|F|1994-05-18|1994-04-11|1994-06-05|TAKE BACK RETURN|TRUCK|the carefully bold excuses. furiously s| +60360|545431|32962|5|44|64962.04|0.04|0.03|A|F|1994-04-27|1994-04-26|1994-05-21|NONE|TRUCK|ounts sleep fu| +60360|45935|33436|6|36|67713.48|0.10|0.07|R|F|1994-05-18|1994-03-18|1994-06-14|COLLECT COD|RAIL|r, unusual plate| +60361|189586|2090|1|13|21782.54|0.01|0.00|N|O|1995-06-22|1995-08-19|1995-07-07|TAKE BACK RETURN|SHIP|ly pending instructions integrate c| +60361|357817|32832|2|38|71242.40|0.09|0.01|A|F|1995-06-08|1995-08-19|1995-06-13|TAKE BACK RETURN|RAIL|regular pinto beans. blithe| +60362|290582|28098|1|11|17298.27|0.02|0.03|N|O|1996-02-11|1996-01-04|1996-03-08|DELIVER IN PERSON|SHIP|eans? packages boost blithely. quick| +60362|803581|16098|2|33|48989.82|0.01|0.07|N|O|1996-01-31|1995-12-29|1996-02-12|COLLECT COD|TRUCK|ress slyly regular accounts. | +60363|141180|28687|1|49|59837.82|0.10|0.03|R|F|1993-02-20|1993-01-07|1993-03-04|TAKE BACK RETURN|FOB|r theodolites sleep about the furious| +60364|878991|41509|1|3|5909.85|0.00|0.06|N|O|1996-06-15|1996-07-15|1996-06-25|TAKE BACK RETURN|TRUCK|y. blithely even ideas are b| +60364|193087|5591|2|32|37762.56|0.09|0.03|N|O|1996-07-11|1996-06-26|1996-07-28|TAKE BACK RETURN|TRUCK|ironic dolphins. | +60365|926859|14414|1|30|56574.30|0.08|0.07|N|O|1996-11-05|1996-09-24|1996-11-12|TAKE BACK RETURN|REG AIR|ests are slyly never ironic instructions. c| +60365|714075|1618|2|8|8712.32|0.01|0.07|N|O|1996-08-28|1996-10-08|1996-09-21|NONE|SHIP|efully above the special instru| +60365|448498|36023|3|8|11571.76|0.04|0.08|N|O|1996-09-03|1996-09-05|1996-09-26|DELIVER IN PERSON|RAIL| requests wake about the | +60365|899315|36867|4|40|52570.80|0.10|0.07|N|O|1996-10-04|1996-10-06|1996-10-30|TAKE BACK RETURN|FOB|y bold warthogs across the final pa| +60365|772116|34632|5|48|57027.84|0.06|0.04|N|O|1996-10-29|1996-09-12|1996-11-14|DELIVER IN PERSON|RAIL|fter the blithely final pack| +60366|515988|15989|1|46|92182.16|0.06|0.08|N|O|1997-08-05|1997-09-06|1997-08-17|NONE|RAIL|ajole furiously f| +60367|965903|40942|1|25|49221.50|0.03|0.07|R|F|1994-01-14|1993-12-19|1994-01-27|DELIVER IN PERSON|TRUCK|ven dependencies boost against the pe| +60367|921273|33792|2|45|58240.35|0.02|0.01|R|F|1994-02-17|1993-12-22|1994-03-10|DELIVER IN PERSON|AIR|out the slyly speci| +60367|820293|45326|3|45|54596.25|0.06|0.02|R|F|1994-02-15|1994-01-29|1994-03-06|NONE|REG AIR|ecial instructions ag| +60367|661139|48679|4|5|5500.50|0.08|0.04|A|F|1993-11-21|1994-02-05|1993-12-19|DELIVER IN PERSON|REG AIR| platelets wake ruthlessl| +60392|23519|11020|1|24|34620.24|0.09|0.08|R|F|1993-08-10|1993-07-13|1993-08-27|TAKE BACK RETURN|MAIL|c ideas. slyl| +60392|268534|31040|2|27|40568.04|0.05|0.00|A|F|1993-07-28|1993-08-12|1993-07-30|NONE|SHIP|riously final accounts should sleep| +60393|840108|27657|1|3|3144.18|0.00|0.02|A|F|1993-10-25|1993-09-23|1993-10-29|TAKE BACK RETURN|AIR|ic packages.| +60393|691261|28801|2|29|36314.67|0.06|0.04|R|F|1993-12-20|1993-09-27|1994-01-14|DELIVER IN PERSON|RAIL|ven deposits. carefully silent ideas haggle| +60394|519994|45015|1|29|58405.13|0.08|0.04|N|O|1997-04-30|1997-04-18|1997-05-20|COLLECT COD|FOB|tes. ironic pi| +60394|534435|46946|2|40|58776.40|0.02|0.05|N|O|1997-04-01|1997-03-27|1997-04-23|TAKE BACK RETURN|RAIL|ing, regular pack| +60394|240437|40438|3|24|33058.08|0.00|0.03|N|O|1997-05-12|1997-04-09|1997-05-23|NONE|TRUCK|ding packages sleep never among t| +60394|22948|47949|4|39|72966.66|0.08|0.08|N|O|1997-04-09|1997-05-03|1997-04-17|DELIVER IN PERSON|TRUCK|reach fluffily| +60394|685215|10242|5|32|38405.76|0.03|0.01|N|O|1997-05-20|1997-04-09|1997-05-24|COLLECT COD|RAIL|d, regular packages cajol| +60395|321517|46530|1|28|43078.00|0.10|0.04|N|O|1997-10-29|1997-10-04|1997-11-15|TAKE BACK RETURN|FOB|ly regular| +60395|733999|9028|2|20|40659.20|0.08|0.02|N|O|1997-11-14|1997-11-07|1997-11-30|DELIVER IN PERSON|REG AIR|ronic packages about the fluff| +60395|311188|11189|3|4|4796.68|0.10|0.01|N|O|1997-11-20|1997-11-03|1997-12-14|TAKE BACK RETURN|SHIP| cajole quickly furiously ironic instru| +60395|130955|43458|4|41|81423.95|0.04|0.07|N|O|1997-09-03|1997-11-24|1997-09-06|COLLECT COD|REG AIR| above the fluffily reg| +60396|516162|28673|1|13|15315.82|0.08|0.03|A|F|1995-01-10|1995-01-30|1995-01-18|NONE|RAIL|deposits are slyly alongs| +60397|325483|37990|1|8|12067.76|0.06|0.07|N|O|1998-02-28|1998-04-11|1998-03-08|COLLECT COD|TRUCK|manent inst| +60397|387476|24998|2|4|6253.84|0.07|0.03|N|O|1998-04-04|1998-03-16|1998-05-01|DELIVER IN PERSON|FOB|heodolites un| +60397|303892|3893|3|1|1895.88|0.07|0.01|N|O|1998-02-12|1998-04-14|1998-03-09|COLLECT COD|REG AIR| pinto beans haggle even, special pint| +60397|503168|15679|4|5|5855.70|0.09|0.06|N|O|1998-02-22|1998-04-27|1998-03-19|NONE|TRUCK|totes. care| +60398|213313|25818|1|32|39241.60|0.03|0.05|N|O|1997-06-30|1997-07-17|1997-07-25|COLLECT COD|RAIL|al dependencies. fluffily unusual requ| +60399|603665|28690|1|23|36078.49|0.01|0.07|N|O|1995-10-06|1995-10-18|1995-11-05|DELIVER IN PERSON|MAIL| asymptotes cajo| +60424|369418|31926|1|10|14874.00|0.09|0.02|R|F|1995-04-14|1995-04-18|1995-05-13|COLLECT COD|SHIP|regular accounts| +60424|798544|48545|2|42|68985.42|0.03|0.06|A|F|1995-05-18|1995-03-29|1995-05-22|DELIVER IN PERSON|REG AIR|ins nod fu| +60424|125022|25023|3|22|23034.44|0.00|0.02|A|F|1995-02-23|1995-03-09|1995-03-22|DELIVER IN PERSON|FOB| integrate furiously above the carefully | +60424|230796|5805|4|26|44896.28|0.09|0.07|R|F|1995-05-10|1995-04-03|1995-05-23|DELIVER IN PERSON|TRUCK|d doubt by the accounts. even requests wake| +60424|980829|5868|5|26|49654.28|0.09|0.01|R|F|1995-05-02|1995-03-27|1995-05-14|NONE|FOB|ng carefully| +60424|793003|18034|6|26|28495.22|0.06|0.06|R|F|1995-05-26|1995-04-04|1995-06-03|DELIVER IN PERSON|TRUCK| ideas after the ironic, regular| +60425|447976|47977|1|11|21163.45|0.04|0.06|N|O|1995-08-30|1995-08-21|1995-09-06|DELIVER IN PERSON|SHIP| final pinto be| +60425|130940|43443|2|29|57157.26|0.04|0.04|N|O|1995-07-24|1995-09-19|1995-08-23|NONE|AIR|iously express | +60425|701179|38722|3|15|17702.10|0.05|0.06|N|O|1995-09-16|1995-09-10|1995-09-21|TAKE BACK RETURN|SHIP| special, final accounts use according to | +60425|703752|16267|4|13|22824.36|0.05|0.07|N|O|1995-07-16|1995-08-10|1995-07-31|COLLECT COD|FOB|sly expres| +60426|877618|27619|1|20|31911.40|0.06|0.03|N|O|1996-07-08|1996-07-02|1996-08-06|COLLECT COD|REG AIR|g platelets. carefully even theodolit| +60426|119471|44476|2|48|71542.56|0.02|0.01|N|O|1996-05-15|1996-07-07|1996-05-29|COLLECT COD|TRUCK|furiously slow ideas. regular packages s| +60426|937039|49558|3|5|5379.95|0.04|0.06|N|O|1996-07-28|1996-06-30|1996-08-16|DELIVER IN PERSON|RAIL| slyly express pa| +60426|801074|13591|4|15|14625.45|0.07|0.05|N|O|1996-07-05|1996-06-12|1996-07-25|COLLECT COD|AIR|bits detect furiou| +60427|506826|31847|1|46|84308.80|0.02|0.03|N|O|1996-09-04|1996-10-21|1996-09-28|NONE|RAIL|g asymptotes haggle slyly | +60427|223316|10829|2|14|17350.20|0.04|0.01|N|O|1996-11-11|1996-10-15|1996-11-13|TAKE BACK RETURN|AIR| packages use quickly regula| +60428|400024|37549|1|29|26796.00|0.07|0.07|N|O|1996-09-04|1996-07-15|1996-09-12|COLLECT COD|SHIP| bold theodolites haggle furiously tow| +60428|202395|39908|2|9|11676.42|0.10|0.00|N|O|1996-06-02|1996-07-01|1996-06-21|COLLECT COD|SHIP|st pending packages. sl| +60428|641685|16710|3|19|30906.35|0.02|0.06|N|O|1996-06-07|1996-08-13|1996-07-01|DELIVER IN PERSON|TRUCK|lent somas. even, bold requests nag blith| +60428|798762|23793|4|25|46518.25|0.06|0.05|N|O|1996-08-09|1996-07-20|1996-08-29|NONE|REG AIR|ts. blithely regular theo| +60429|408352|45877|1|3|3780.99|0.01|0.02|A|F|1993-10-02|1993-07-08|1993-10-11|DELIVER IN PERSON|REG AIR| slyly even packages sleep| +60429|165191|40198|2|9|11305.71|0.07|0.07|A|F|1993-07-17|1993-08-27|1993-07-26|COLLECT COD|AIR|among the slyl| +60429|360566|10567|3|31|50423.05|0.06|0.06|R|F|1993-06-25|1993-07-18|1993-07-25|TAKE BACK RETURN|MAIL|er about the quickly ironic packages. caref| +60429|22184|22185|4|16|17698.88|0.08|0.00|R|F|1993-07-07|1993-08-26|1993-07-23|DELIVER IN PERSON|MAIL|ans. carefully final accou| +60429|836015|23564|5|1|950.97|0.10|0.06|A|F|1993-07-14|1993-07-29|1993-07-27|TAKE BACK RETURN|SHIP|ns alongside of the silent depos| +60429|896654|34206|6|45|74277.45|0.01|0.02|R|F|1993-07-22|1993-07-14|1993-07-26|NONE|TRUCK|ts nag slyly alongside of | +60430|331978|31979|1|30|60298.80|0.00|0.06|N|O|1997-03-28|1997-04-08|1997-04-13|COLLECT COD|RAIL|instructions boost furiously fluffily eve| +60430|540659|15680|2|43|73084.09|0.00|0.07|N|O|1997-03-30|1997-04-05|1997-04-20|DELIVER IN PERSON|REG AIR|yly silent deposits. final, even | +60430|841381|28930|3|48|63472.32|0.05|0.04|N|O|1997-05-16|1997-04-21|1997-05-22|COLLECT COD|AIR|above the furiously special deposits. quick| +60430|79813|17317|4|40|71712.40|0.05|0.04|N|O|1997-05-10|1997-03-09|1997-05-17|COLLECT COD|AIR|y special account| +60431|324874|24875|1|14|26584.04|0.08|0.08|A|F|1994-08-18|1994-08-31|1994-09-04|NONE|SHIP|even platelets sle| +60431|156361|43871|2|24|34016.64|0.06|0.08|A|F|1994-09-15|1994-09-07|1994-10-03|COLLECT COD|TRUCK|o the slyly even packages sle| +60431|951888|39446|3|27|52375.68|0.01|0.08|R|F|1994-07-17|1994-07-29|1994-07-19|DELIVER IN PERSON|AIR|. special platelets about the regular depos| +60431|378464|3479|4|19|29306.55|0.00|0.01|R|F|1994-06-27|1994-08-29|1994-07-08|NONE|FOB|t alongside of the enticingly bold req| +60431|839909|2426|5|8|14790.88|0.08|0.03|A|F|1994-06-17|1994-08-22|1994-07-09|COLLECT COD|REG AIR|g the furiously final in| +60456|574231|11765|1|6|7831.26|0.00|0.05|A|F|1994-11-17|1994-11-30|1994-12-11|COLLECT COD|FOB|equests. furiously unusual theodolit| +60456|90133|2635|2|13|14600.69|0.06|0.07|R|F|1994-11-17|1994-11-23|1994-12-10|COLLECT COD|MAIL|riously ironic | +60456|854652|42204|3|44|70690.84|0.00|0.01|A|F|1994-10-28|1994-11-08|1994-11-25|DELIVER IN PERSON|RAIL|d the ironic instructions cajole quick| +60456|127564|40067|4|14|22281.84|0.09|0.08|R|F|1994-10-18|1994-12-06|1994-11-06|NONE|TRUCK|regular, special ideas sleep about the | +60457|797313|47314|1|33|46539.24|0.09|0.04|N|O|1996-10-31|1997-01-19|1996-11-14|TAKE BACK RETURN|REG AIR|ns haggle along the quickl| +60457|428384|3401|2|46|60368.56|0.10|0.06|N|O|1997-01-08|1996-12-16|1997-02-04|TAKE BACK RETURN|MAIL|lar instructions| +60457|838496|26045|3|4|5737.80|0.02|0.01|N|O|1997-01-17|1997-01-12|1997-02-10|TAKE BACK RETURN|REG AIR|r accounts cajole sly| +60457|596418|33952|4|11|16658.29|0.04|0.00|N|O|1996-12-31|1997-01-20|1997-01-28|DELIVER IN PERSON|SHIP|ess after the final | +60457|985385|35386|5|38|55872.92|0.10|0.03|N|O|1997-01-09|1996-12-14|1997-01-27|COLLECT COD|TRUCK|oze idly ironic package| +60457|360824|35839|6|21|39581.01|0.07|0.08|N|O|1996-12-29|1996-12-08|1997-01-26|NONE|AIR| along the expre| +60457|353711|28726|7|35|61764.50|0.01|0.04|N|O|1996-12-25|1997-01-14|1997-01-13|NONE|RAIL|es. accounts wake carefully above the f| +60458|819476|7025|1|44|61398.92|0.00|0.02|R|F|1995-06-08|1995-08-12|1995-06-10|DELIVER IN PERSON|RAIL|uests cajole slyly? ironic, regular pl| +60458|929038|41557|2|7|7468.93|0.07|0.08|N|O|1995-08-03|1995-07-13|1995-08-19|COLLECT COD|RAIL|the pending, expre| +60458|340927|15940|3|13|25582.83|0.00|0.01|N|O|1995-09-03|1995-07-21|1995-09-25|TAKE BACK RETURN|MAIL|ly special requests. slyly ironic theodolit| +60459|37484|12485|1|14|19900.72|0.07|0.06|N|O|1997-09-19|1997-09-29|1997-10-03|NONE|FOB|luffily quick| +60459|979704|29705|2|31|55293.46|0.01|0.01|N|O|1997-09-07|1997-09-24|1997-09-13|NONE|AIR|egular packa| +60460|1011|26012|1|27|24624.27|0.00|0.07|A|F|1994-06-09|1994-07-26|1994-06-30|DELIVER IN PERSON|AIR|lyly unusual epitaphs. fluf| +60460|988552|1072|2|23|37731.73|0.00|0.06|R|F|1994-08-15|1994-06-10|1994-08-30|NONE|AIR|eodolites. theodolites | +60460|577505|27506|3|16|25319.68|0.08|0.08|R|F|1994-08-14|1994-07-21|1994-08-28|COLLECT COD|MAIL|inal deposits. unusual pinto| +60460|116388|16389|4|17|23874.46|0.10|0.06|A|F|1994-07-10|1994-06-26|1994-07-30|TAKE BACK RETURN|REG AIR| about the deposits haggle carefull| +60461|854570|29605|1|48|73177.44|0.09|0.05|N|O|1996-11-09|1996-12-01|1996-11-29|TAKE BACK RETURN|MAIL|e slyly furiously express waters| +60461|742477|4992|2|28|42544.32|0.06|0.05|N|O|1996-12-13|1996-12-01|1996-12-23|COLLECT COD|REG AIR|ng the slyly regu| +60461|801518|14035|3|13|18453.11|0.08|0.05|N|O|1996-10-30|1997-01-25|1996-11-20|TAKE BACK RETURN|FOB|ut the accounts. fi| +60461|110054|35059|4|30|31921.50|0.03|0.06|N|O|1997-01-19|1996-12-24|1997-02-11|NONE|MAIL|e slyly along the bravely i| +60461|673068|48095|5|15|15615.45|0.10|0.08|N|O|1996-12-29|1997-01-05|1997-01-08|TAKE BACK RETURN|FOB| run. excuses haggle. ide| +60461|249937|24946|6|31|58494.52|0.09|0.06|N|O|1997-02-12|1996-12-22|1997-03-12|NONE|SHIP|ckages. slyly bold packages use blithely.| +60461|688465|979|7|42|61044.06|0.07|0.06|N|O|1996-12-05|1997-01-14|1996-12-08|NONE|AIR|ccounts cajole fluffily above th| +60462|23452|35953|1|28|38512.60|0.04|0.07|N|O|1997-10-09|1997-12-13|1997-10-10|DELIVER IN PERSON|SHIP|c dependencies. quickly special ideas| +60462|155421|42931|2|32|47245.44|0.00|0.07|N|O|1997-11-01|1997-12-03|1997-11-08|DELIVER IN PERSON|AIR|ow quickly. even foxes h| +60462|145369|32876|3|36|50916.96|0.06|0.00|N|O|1997-10-21|1997-11-24|1997-11-16|COLLECT COD|MAIL| excuses. blithely final requests alongsid| +60462|216179|16180|4|31|33949.96|0.07|0.01|N|O|1997-11-09|1997-11-08|1997-12-09|TAKE BACK RETURN|TRUCK|y packages. regular excuses was slyly. fina| +60462|306543|44062|5|49|75926.97|0.10|0.07|N|O|1997-09-16|1997-12-12|1997-10-01|TAKE BACK RETURN|RAIL|t requests boost blithely across | +60462|68197|43200|6|44|51268.36|0.10|0.02|N|O|1997-09-24|1997-12-04|1997-10-18|TAKE BACK RETURN|MAIL|blithely regular requests. bo| +60463|872523|47558|1|17|25423.16|0.08|0.04|A|F|1992-05-30|1992-06-04|1992-06-13|DELIVER IN PERSON|REG AIR|y regular epitaphs against the furiously r| +60463|478040|3059|2|22|22396.44|0.04|0.00|A|F|1992-06-09|1992-06-18|1992-07-08|TAKE BACK RETURN|AIR|s boost ironic, final | +60488|467002|29512|1|50|48449.00|0.02|0.02|N|O|1997-01-15|1997-01-13|1997-02-14|COLLECT COD|REG AIR|out the final accounts. silent excuses| +60488|899929|37481|2|32|61724.16|0.08|0.06|N|O|1996-12-25|1997-01-15|1996-12-26|DELIVER IN PERSON|AIR| cajole after the blithely even courts. sp| +60488|100740|25745|3|16|27851.84|0.09|0.05|N|O|1996-12-24|1997-01-04|1997-01-22|COLLECT COD|SHIP|regular for| +60488|130649|18156|4|42|70544.88|0.09|0.07|N|O|1997-01-22|1997-01-22|1997-02-21|COLLECT COD|MAIL|urts. blithely even accounts subl| +60488|802983|15500|5|7|13201.58|0.02|0.00|N|O|1997-01-10|1997-01-24|1997-02-08|NONE|TRUCK|ncies serve slyly bli| +60488|726740|26741|6|20|35334.20|0.00|0.02|N|O|1996-12-07|1997-01-24|1996-12-09|TAKE BACK RETURN|SHIP|ic, ironic frays haggle blithely about the | +60488|318080|30587|7|22|24157.54|0.06|0.00|N|O|1997-01-09|1996-12-20|1997-01-20|DELIVER IN PERSON|RAIL| theodolites; quickly regular | +60489|961314|48872|1|3|4125.81|0.03|0.02|R|F|1995-04-21|1995-04-14|1995-05-18|NONE|AIR|the instructions wake carefully| +60489|798211|35757|2|48|62840.64|0.03|0.00|A|F|1995-03-07|1995-04-11|1995-03-29|TAKE BACK RETURN|MAIL|sias are. silent, pen| +60490|237830|37831|1|50|88391.00|0.01|0.04|N|O|1997-09-17|1997-09-19|1997-09-26|COLLECT COD|REG AIR|eans boost bl| +60490|201416|13921|2|48|63235.20|0.00|0.03|N|O|1997-10-05|1997-09-17|1997-10-10|TAKE BACK RETURN|RAIL|ltipliers sleep across the final packages. | +60490|197239|34749|3|4|5344.92|0.06|0.06|N|O|1997-10-17|1997-08-27|1997-11-10|DELIVER IN PERSON|MAIL|ithely bold platelets lose carefully c| +60491|343366|30885|1|43|60602.05|0.02|0.03|A|F|1993-03-20|1993-01-13|1993-04-06|COLLECT COD|FOB|courts haggle blithely| +60492|16306|41307|1|42|51336.60|0.09|0.04|A|F|1993-11-09|1993-10-18|1993-11-22|TAKE BACK RETURN|RAIL|fix furiously across the regularly exp| +60493|155932|30939|1|41|81505.13|0.06|0.01|N|O|1995-07-09|1995-09-06|1995-07-20|DELIVER IN PERSON|FOB|luffily bold accounts cajole furi| +60493|743755|18784|2|4|7194.88|0.06|0.01|N|O|1995-07-24|1995-08-31|1995-07-25|NONE|MAIL|iously reg| +60493|286358|36359|3|40|53773.60|0.05|0.04|N|O|1995-07-11|1995-07-21|1995-07-22|TAKE BACK RETURN|REG AIR|y even theodolites above the | +60493|804536|42085|4|38|54738.62|0.07|0.03|N|O|1995-08-28|1995-08-17|1995-09-07|TAKE BACK RETURN|MAIL|hins may use after the furiously unus| +60493|825084|37601|5|36|36325.44|0.08|0.05|N|O|1995-07-05|1995-08-23|1995-07-11|DELIVER IN PERSON|AIR|nts mainta| +60493|170992|45999|6|12|24755.88|0.05|0.08|N|O|1995-09-13|1995-08-16|1995-09-27|TAKE BACK RETURN|FOB|ly silent accounts. furiously u| +60493|849868|37417|7|35|63623.70|0.04|0.02|N|O|1995-10-14|1995-08-30|1995-11-13|NONE|MAIL|ously even deposits dazzle ex| +60494|716332|16333|1|3|4044.90|0.02|0.02|N|O|1997-04-19|1997-03-26|1997-05-16|COLLECT COD|SHIP|s deposits use blithely. fluffily iron| +60495|307155|32168|1|49|56944.86|0.10|0.05|N|O|1997-12-22|1998-01-03|1998-01-14|DELIVER IN PERSON|RAIL|deposits cajole quickly ironic d| +60495|351850|26865|2|21|39938.64|0.07|0.08|N|O|1998-02-13|1998-01-28|1998-03-04|COLLECT COD|REG AIR|thy deposits doze fluffily even gifts. f| +60495|540155|15176|3|20|23902.60|0.10|0.05|N|O|1997-12-30|1998-01-06|1998-01-04|COLLECT COD|SHIP|xes. final accounts run doggedly. regular a| +60495|375754|13276|4|3|5489.22|0.03|0.01|N|O|1997-12-16|1997-12-15|1997-12-20|DELIVER IN PERSON|REG AIR|ly according to the foxes. doggedly unusual| +60495|285134|35135|5|26|29097.12|0.03|0.06|N|O|1997-12-29|1998-01-06|1998-01-28|COLLECT COD|FOB|kages above the regular, ironic instru| +60520|841647|29196|1|17|27006.20|0.07|0.07|N|O|1997-02-15|1997-02-19|1997-03-10|DELIVER IN PERSON|RAIL|inal, even deposits. carefully pending re| +60520|552207|14719|2|29|36516.22|0.09|0.08|N|O|1997-02-24|1997-02-25|1997-03-17|COLLECT COD|MAIL|out the furiously pending deposits. fin| +60520|935894|35895|3|42|81053.70|0.08|0.00|N|O|1997-02-14|1997-03-12|1997-03-02|TAKE BACK RETURN|TRUCK|es sleep ir| +60520|564946|39969|4|23|46251.16|0.06|0.03|N|O|1997-01-06|1997-02-07|1997-01-07|DELIVER IN PERSON|SHIP|g deposits. exp| +60520|42199|29700|5|34|38800.46|0.09|0.05|N|O|1996-12-28|1997-03-20|1997-01-18|COLLECT COD|FOB|lly even packages according| +60520|228228|28229|6|41|47404.61|0.10|0.06|N|O|1997-02-11|1997-03-23|1997-03-13|NONE|REG AIR|slyly final accounts w| +60520|821307|8856|7|25|30706.50|0.08|0.02|N|O|1997-03-08|1997-02-06|1997-03-17|TAKE BACK RETURN|FOB|cuses nag slyly b| +60521|691913|41914|1|46|87624.48|0.01|0.02|R|F|1993-04-02|1993-04-10|1993-04-26|TAKE BACK RETURN|FOB| express braids mold furio| +60521|978648|41168|2|47|81150.20|0.07|0.08|A|F|1993-05-26|1993-05-01|1993-06-08|TAKE BACK RETURN|MAIL|egular, sile| +60522|156357|31364|1|37|52293.95|0.10|0.06|N|O|1996-10-23|1996-08-24|1996-11-18|DELIVER IN PERSON|MAIL|ongside of the theodolites. final, | +60522|885834|23386|2|43|78250.97|0.06|0.05|N|O|1996-07-23|1996-08-07|1996-08-16|TAKE BACK RETURN|MAIL|lites. quickly final dependencies sleep. | +60523|33572|21073|1|38|57211.66|0.06|0.08|N|O|1996-11-28|1996-10-28|1996-12-02|COLLECT COD|TRUCK|ans cajole blithely alongside of th| +60523|236442|36443|2|12|16541.16|0.07|0.02|N|O|1996-10-04|1996-09-25|1996-10-13|NONE|TRUCK|rts sleep blithely| +60523|865899|15900|3|21|39161.85|0.04|0.00|N|O|1996-09-01|1996-09-05|1996-09-05|TAKE BACK RETURN|MAIL|ar excuses| +60523|156609|44119|4|4|6662.40|0.09|0.05|N|O|1996-08-07|1996-09-10|1996-08-18|COLLECT COD|RAIL|e, silent deposits| +60523|115626|28129|5|14|22982.68|0.00|0.05|N|O|1996-11-06|1996-10-07|1996-11-23|TAKE BACK RETURN|REG AIR| are furiously blithely regular pinto bea| +60523|323285|10804|6|8|10466.16|0.04|0.00|N|O|1996-10-31|1996-10-25|1996-11-29|COLLECT COD|MAIL|express packages use slyl| +60524|639771|27308|1|24|41057.76|0.09|0.04|N|O|1996-03-21|1996-05-04|1996-03-29|DELIVER IN PERSON|SHIP|arefully. slyly final sentiments above the| +60524|622296|22297|2|6|7309.56|0.04|0.03|N|O|1996-05-15|1996-05-10|1996-05-28|TAKE BACK RETURN|MAIL| above the packages. carefull| +60524|926786|14341|3|32|58007.68|0.07|0.03|N|O|1996-04-26|1996-03-29|1996-05-04|DELIVER IN PERSON|RAIL|ans boost regularly slyly regular water| +60524|484584|47094|4|32|50193.92|0.03|0.01|N|O|1996-04-17|1996-04-08|1996-05-09|TAKE BACK RETURN|AIR| fluffily even foxes use. carefully iron| +60524|388132|38133|5|27|32943.24|0.08|0.03|N|O|1996-03-13|1996-03-13|1996-04-10|COLLECT COD|SHIP|y special pinto beans. carefully special p| +60524|325619|38126|6|50|82230.00|0.05|0.02|N|O|1996-03-02|1996-05-08|1996-03-20|COLLECT COD|MAIL|es. blithel| +60525|347414|47415|1|40|58456.00|0.00|0.06|R|F|1992-05-02|1992-03-15|1992-05-06|COLLECT COD|MAIL|ts doubt slyly according to the fluffily | +60525|979235|41755|2|32|42054.08|0.10|0.05|A|F|1992-06-03|1992-04-20|1992-06-19|NONE|REG AIR|nto beans maintain car| +60525|994959|7479|3|43|88318.13|0.10|0.08|R|F|1992-04-19|1992-03-15|1992-05-01|TAKE BACK RETURN|SHIP|l pinto beans cajole fluffily regula| +60525|275194|12710|4|24|28060.32|0.05|0.06|A|F|1992-02-29|1992-03-25|1992-03-25|TAKE BACK RETURN|MAIL|slyly ironic dolphin| +60526|903663|28700|1|44|73331.28|0.05|0.01|N|O|1997-12-23|1997-12-28|1998-01-03|DELIVER IN PERSON|FOB| furiously. slyly unusual deposits are q| +60527|457446|19956|1|6|8420.52|0.04|0.07|R|F|1992-09-21|1992-06-29|1992-09-25|TAKE BACK RETURN|FOB| furiously according to| +60527|280636|5647|2|44|71131.28|0.06|0.08|A|F|1992-08-26|1992-07-15|1992-09-12|COLLECT COD|RAIL|usly express courts. quickly final foxes| +60552|18061|30562|1|47|46015.82|0.04|0.07|N|O|1997-10-13|1997-10-31|1997-10-15|NONE|REG AIR|es. slyly regular pinto beans sleep fu| +60552|547736|35267|2|20|35674.20|0.03|0.03|N|O|1997-10-27|1997-10-26|1997-11-08|TAKE BACK RETURN|MAIL|ely regular deposits ar| +60552|786807|11838|3|29|54919.33|0.08|0.05|N|O|1997-10-25|1997-12-02|1997-11-08|NONE|TRUCK|sts poach slyly according to the carefully | +60552|856297|43849|4|9|11279.25|0.05|0.00|N|O|1997-11-28|1997-10-13|1997-12-10|NONE|SHIP|pades. blithely ironic | +60552|781085|31086|5|3|3498.15|0.00|0.01|N|O|1997-12-25|1997-11-16|1998-01-03|DELIVER IN PERSON|TRUCK|al instructions. ironi| +60552|691444|16471|6|15|21531.15|0.08|0.06|N|O|1997-11-11|1997-11-08|1997-11-29|COLLECT COD|TRUCK|ages-- reque| +60552|95287|32791|7|8|10258.24|0.02|0.05|N|O|1997-10-10|1997-10-13|1997-10-21|TAKE BACK RETURN|TRUCK|d theodolites are among the carefully ir| +60553|483301|8320|1|14|17979.92|0.00|0.01|N|O|1997-01-15|1997-02-08|1997-01-28|COLLECT COD|MAIL|tes. permanent dependen| +60554|157268|32275|1|15|19878.90|0.02|0.00|R|F|1994-01-20|1994-01-22|1994-01-31|NONE|RAIL|l deposits. unusual| +60554|201381|1382|2|47|60271.39|0.09|0.06|A|F|1994-03-17|1994-02-02|1994-04-02|TAKE BACK RETURN|SHIP|ly carefully final| +60554|601754|26779|3|21|34770.12|0.07|0.08|R|F|1994-02-23|1994-02-21|1994-03-19|TAKE BACK RETURN|RAIL| theodolites. fluffily ironic foxes wake f| +60554|675679|25680|4|14|23164.96|0.04|0.00|A|F|1993-12-05|1994-01-16|1993-12-22|DELIVER IN PERSON|MAIL|ge. final, even package| +60555|395756|20771|1|37|68514.38|0.01|0.05|A|F|1993-06-29|1993-06-01|1993-07-05|DELIVER IN PERSON|MAIL|ep finally across the blit| +60555|462717|37736|2|19|31914.11|0.06|0.06|A|F|1993-08-01|1993-07-06|1993-08-27|COLLECT COD|TRUCK|egular deposits. furiously special c| +60555|871223|33741|3|1|1194.18|0.00|0.08|R|F|1993-07-02|1993-07-08|1993-07-07|COLLECT COD|RAIL|es? furiousl| +60555|639762|2275|4|2|3403.46|0.08|0.06|A|F|1993-04-27|1993-05-29|1993-05-04|TAKE BACK RETURN|MAIL|the quickly special acco| +60555|467099|17100|5|2|2132.14|0.02|0.02|A|F|1993-05-29|1993-06-16|1993-06-10|TAKE BACK RETURN|MAIL|fluffily blithe | +60556|356016|31031|1|13|13936.00|0.01|0.05|A|F|1994-05-03|1994-02-13|1994-05-19|COLLECT COD|AIR|unusual frets hagg| +60556|551301|1302|2|41|55443.48|0.01|0.07|R|F|1994-02-11|1994-02-27|1994-03-05|TAKE BACK RETURN|SHIP|cajole carefully above the final Tiresias.| +60556|710327|47870|3|13|17384.77|0.00|0.03|A|F|1994-05-06|1994-03-04|1994-05-27|COLLECT COD|MAIL|fluffily even dependencies amon| +60557|330606|5619|1|33|54007.47|0.04|0.04|R|F|1992-11-13|1992-09-14|1992-11-29|TAKE BACK RETURN|MAIL| final asymptotes. carefully ironic ideas| +60557|488417|25945|2|46|64647.94|0.03|0.05|A|F|1992-09-30|1992-10-29|1992-10-08|DELIVER IN PERSON|MAIL|ly regular asymptotes| +60558|383689|8704|1|5|8863.35|0.07|0.06|R|F|1992-09-20|1992-11-18|1992-10-04|NONE|REG AIR|lets are permanentl| +60558|645144|45145|2|28|30495.08|0.02|0.05|R|F|1992-10-22|1992-11-04|1992-11-03|NONE|AIR|uests. blithely unusual t| +60558|918946|31465|3|23|45192.70|0.00|0.08|A|F|1992-10-26|1992-10-24|1992-11-05|NONE|MAIL| express theodolites wake. pe| +60558|710572|10573|4|40|63301.60|0.05|0.00|A|F|1993-01-09|1992-10-14|1993-01-28|DELIVER IN PERSON|MAIL|y final packages cajole | +60559|874701|24702|1|1|1675.66|0.09|0.05|A|F|1993-06-28|1993-07-08|1993-07-06|NONE|TRUCK| of the fluffily silent pinto beans| +60584|393958|18973|1|3|6155.82|0.06|0.05|N|O|1996-12-06|1996-12-18|1996-12-28|COLLECT COD|MAIL| carefully furi| +60584|248580|11085|2|22|33628.54|0.03|0.07|N|O|1996-12-19|1996-11-27|1996-12-27|NONE|FOB|fts! quickly silent pinto b| +60584|873980|36498|3|22|42986.68|0.02|0.04|N|O|1996-12-24|1996-11-24|1997-01-08|DELIVER IN PERSON|AIR|ly pending theodo| +60585|980621|18179|1|42|71466.36|0.01|0.05|N|O|1997-10-05|1997-12-15|1997-10-12|COLLECT COD|AIR|efully bold| +60585|295407|45408|2|16|22438.24|0.04|0.05|N|O|1997-09-30|1997-11-06|1997-10-08|COLLECT COD|RAIL|e about the furiously regular deposits: | +60585|894996|7514|3|12|23891.40|0.09|0.08|N|O|1997-12-06|1997-11-23|1997-12-13|TAKE BACK RETURN|AIR|cajole quickly against the carefully fi| +60585|185093|35094|4|7|8246.63|0.07|0.07|N|O|1997-12-29|1997-12-04|1998-01-12|COLLECT COD|MAIL|y express instructi| +60586|761877|49423|1|11|21327.24|0.02|0.05|A|F|1992-01-24|1992-02-20|1992-02-06|COLLECT COD|AIR| alongside of the bo| +60586|852476|27511|2|15|21426.45|0.08|0.01|A|F|1992-03-29|1992-03-05|1992-04-16|TAKE BACK RETURN|AIR| wake along | +60586|551411|1412|3|6|8774.34|0.03|0.03|A|F|1992-01-21|1992-03-17|1992-02-10|COLLECT COD|FOB|ng to the furiously ironic frets. sly| +60586|557115|44649|4|6|7032.54|0.03|0.00|R|F|1992-01-09|1992-02-10|1992-01-16|TAKE BACK RETURN|RAIL|atelets sleep across the carefully unu| +60586|424543|49560|5|18|26415.36|0.05|0.06|A|F|1992-03-04|1992-02-14|1992-03-23|COLLECT COD|RAIL|etect slyly furiously regular package| +60586|279778|17294|6|27|47459.52|0.08|0.04|A|F|1992-02-25|1992-02-20|1992-03-11|TAKE BACK RETURN|AIR|se carefully furiously ironic pinto| +60586|218862|31367|7|50|89042.50|0.08|0.07|A|F|1992-01-26|1992-03-14|1992-02-13|NONE|TRUCK|yly bold dependencies: foxes after the ev| +60587|400080|81|1|28|27441.68|0.07|0.02|N|O|1997-01-29|1997-02-06|1997-01-30|DELIVER IN PERSON|MAIL|slyly express escapades. regular, ironic| +60587|129804|29805|2|11|20171.80|0.08|0.03|N|O|1997-01-18|1997-03-24|1997-02-14|COLLECT COD|SHIP|le among the bold, ironic d| +60587|606505|6506|3|47|66339.09|0.10|0.08|N|O|1997-03-13|1997-03-25|1997-04-01|TAKE BACK RETURN|TRUCK|ly express packages sleep slyly a| +60587|518232|30743|4|24|30005.04|0.03|0.07|N|O|1997-03-10|1997-03-20|1997-03-27|COLLECT COD|RAIL|y slyly special theodolites. blit| +60587|911596|11597|5|7|11252.85|0.06|0.02|N|O|1997-05-03|1997-02-18|1997-05-19|DELIVER IN PERSON|SHIP|eep quickly busily pending | +60588|101284|38791|1|50|64264.00|0.10|0.01|N|O|1997-02-03|1997-03-02|1997-03-03|DELIVER IN PERSON|RAIL|al requests wa| +60588|276411|38917|2|43|59658.20|0.08|0.05|N|O|1997-02-04|1997-01-14|1997-02-27|DELIVER IN PERSON|RAIL|uickly pending t| +60588|626065|13602|3|35|34686.05|0.10|0.03|N|O|1997-02-20|1997-02-28|1997-02-26|DELIVER IN PERSON|RAIL|lithely speci| +60588|260967|35978|4|35|67478.25|0.04|0.03|N|O|1997-01-09|1997-03-05|1997-01-27|TAKE BACK RETURN|SHIP|hins are even packages. furiously | +60588|65193|27695|5|9|10423.71|0.04|0.01|N|O|1997-02-04|1997-02-23|1997-02-13|TAKE BACK RETURN|AIR|egrate slyly blithely final foxes. | +60589|57931|20433|1|1|1888.93|0.06|0.02|N|O|1995-11-14|1995-11-17|1995-11-30|NONE|MAIL|ronic requests w| +60589|637488|1|2|13|18530.85|0.05|0.00|N|O|1995-10-24|1995-12-07|1995-11-03|DELIVER IN PERSON|FOB|r deposits-| +60589|254891|29902|3|22|40609.36|0.09|0.08|N|O|1996-01-21|1995-11-30|1996-01-22|TAKE BACK RETURN|FOB| express depen| +60589|939527|27082|4|22|34462.56|0.02|0.01|N|O|1995-12-11|1996-01-04|1995-12-25|COLLECT COD|REG AIR| carefully even ideas. furiously regular| +60589|623454|48479|5|36|49587.12|0.09|0.02|N|O|1995-11-20|1995-11-13|1995-12-04|COLLECT COD|SHIP|atelets wake against the even requests| +60589|380150|42658|6|7|8610.98|0.09|0.08|N|O|1995-10-31|1995-11-24|1995-11-21|NONE|TRUCK|hely unusual asymptotes. furiously silent | +60590|577876|2899|1|19|37123.15|0.08|0.04|R|F|1994-09-14|1994-08-03|1994-10-13|DELIVER IN PERSON|RAIL|e carefully unusual packages. q| +60590|349230|24243|2|32|40935.04|0.04|0.06|A|F|1994-08-21|1994-08-27|1994-08-29|COLLECT COD|FOB|egularly bold packages are fluffi| +60590|506114|6115|3|6|6720.54|0.06|0.01|R|F|1994-09-20|1994-09-11|1994-09-26|DELIVER IN PERSON|MAIL|osits sleep carefully sent| +60590|242216|42217|4|42|48644.40|0.04|0.02|R|F|1994-08-03|1994-08-18|1994-08-22|TAKE BACK RETURN|RAIL|ges. unusual packages engage slyly above | +60591|663425|965|1|32|44428.48|0.10|0.06|A|F|1992-08-13|1992-06-03|1992-08-18|TAKE BACK RETURN|AIR|ly careful| +60591|181921|19431|2|10|20029.20|0.07|0.07|A|F|1992-05-12|1992-06-21|1992-05-26|TAKE BACK RETURN|AIR|nic, ironic dependencies poach ab| +60591|537712|37713|3|41|71737.29|0.08|0.06|A|F|1992-06-09|1992-06-21|1992-06-17|DELIVER IN PERSON|RAIL|al packages; blithely sil| +60591|325336|37843|4|30|40839.60|0.05|0.03|A|F|1992-06-28|1992-06-09|1992-07-05|DELIVER IN PERSON|TRUCK| after the dolphins? regular excuses| +60591|907957|32994|5|19|37333.29|0.09|0.06|R|F|1992-07-08|1992-06-19|1992-07-16|TAKE BACK RETURN|SHIP|y bold packages haggle regularly express | +60591|28004|3005|6|32|29824.00|0.10|0.05|A|F|1992-05-13|1992-06-19|1992-05-22|TAKE BACK RETURN|RAIL|y regular deposits. dependencies wake fin| +60591|647411|34948|7|7|9508.66|0.04|0.00|R|F|1992-05-06|1992-06-13|1992-05-31|NONE|TRUCK|osits. permanent instructions haggle abov| +60616|28472|3473|1|39|54618.33|0.03|0.04|N|O|1995-11-12|1995-09-22|1995-11-13|TAKE BACK RETURN|TRUCK|y final accounts. pending depos| +60617|63292|796|1|5|6276.45|0.06|0.03|N|O|1997-06-04|1997-04-22|1997-06-08|COLLECT COD|FOB|counts are carefully about the carefully | +60618|623125|10662|1|44|46115.96|0.04|0.04|N|O|1998-08-15|1998-09-18|1998-09-09|COLLECT COD|MAIL|otes against the regular excu| +60618|858451|20969|2|33|46510.53|0.01|0.02|N|O|1998-09-21|1998-08-31|1998-09-24|DELIVER IN PERSON|FOB|g deposits. regular deposits cajo| +60618|980493|30494|3|7|11014.15|0.09|0.08|N|O|1998-08-05|1998-10-03|1998-08-12|TAKE BACK RETURN|MAIL|nic deposits haggle along th| +60618|132934|45437|4|5|9834.65|0.05|0.07|N|O|1998-10-15|1998-10-03|1998-10-20|DELIVER IN PERSON|SHIP| dependencies affix. blit| +60618|214905|39914|5|45|81895.05|0.09|0.00|N|O|1998-09-22|1998-10-18|1998-10-11|DELIVER IN PERSON|RAIL|xpress packages. even, final packages boost| +60619|771246|46277|1|3|3951.63|0.06|0.06|N|O|1996-01-29|1996-03-09|1996-02-03|NONE|SHIP|usly. furiously express | +60619|325404|417|2|5|7146.95|0.08|0.04|N|O|1996-01-21|1996-03-09|1996-01-29|TAKE BACK RETURN|TRUCK|ly unusual| +60619|52149|27152|3|18|19820.52|0.04|0.05|N|O|1996-03-13|1996-03-15|1996-04-11|TAKE BACK RETURN|MAIL|riously special dinos cajo| +60619|458017|33036|4|21|20474.79|0.01|0.00|N|O|1996-03-13|1996-01-29|1996-04-06|NONE|FOB|d the instructions ne| +60619|878700|28701|5|15|25179.90|0.08|0.01|N|O|1995-12-17|1996-01-20|1996-01-12|TAKE BACK RETURN|AIR|. finally ironic ac| +60619|301809|26822|6|27|48891.33|0.02|0.04|N|O|1996-02-06|1996-01-23|1996-02-28|COLLECT COD|TRUCK| platelets | +60620|419677|32186|1|10|15966.50|0.03|0.00|A|F|1993-05-12|1993-05-15|1993-05-20|DELIVER IN PERSON|AIR|onic, final sh| +60620|507939|32960|2|49|95398.59|0.07|0.06|R|F|1993-07-23|1993-05-11|1993-08-20|NONE|SHIP|y regular dependencies sleep blithely reg| +60620|918508|43545|3|33|50373.18|0.01|0.04|A|F|1993-05-30|1993-05-14|1993-06-25|DELIVER IN PERSON|MAIL|ate furiously according| +60620|359271|34286|4|41|54540.66|0.02|0.04|R|F|1993-04-30|1993-05-07|1993-05-17|NONE|SHIP| requests. carefully ironic sheave| +60620|264885|27391|5|37|68445.19|0.02|0.08|A|F|1993-07-07|1993-06-01|1993-07-12|NONE|REG AIR|ending deposits. instructions across the c| +60620|916515|16516|6|6|9188.82|0.00|0.04|R|F|1993-06-09|1993-05-08|1993-06-21|TAKE BACK RETURN|RAIL|. fluffily regular pint| +60620|856557|31592|7|6|9081.06|0.00|0.01|R|F|1993-06-23|1993-05-24|1993-06-29|DELIVER IN PERSON|AIR|ges. blithe requests serve | +60621|141367|41368|1|15|21125.40|0.01|0.05|N|O|1998-05-12|1998-07-20|1998-05-25|TAKE BACK RETURN|MAIL|he bold, regular pack| +60621|944739|32294|2|37|65996.53|0.00|0.04|N|O|1998-05-19|1998-07-26|1998-05-22|DELIVER IN PERSON|SHIP|pendencies? furiously ir| +60621|221626|34131|3|15|23214.15|0.06|0.01|N|O|1998-05-12|1998-06-02|1998-05-23|DELIVER IN PERSON|SHIP|ent packages. furiously final packa| +60621|855349|5350|4|19|24781.70|0.06|0.07|N|O|1998-06-08|1998-07-03|1998-06-25|NONE|FOB|lites according to the blithely e| +60621|845783|20816|5|3|5186.22|0.00|0.08|N|O|1998-07-16|1998-06-05|1998-08-11|DELIVER IN PERSON|MAIL|ly unusual foxes. regular dinos are blith| +60621|74855|24856|6|30|54895.50|0.10|0.01|N|O|1998-05-13|1998-06-12|1998-05-28|COLLECT COD|AIR|even deposits cajole slyly even accoun| +60622|115091|2598|1|39|43137.51|0.02|0.08|R|F|1995-03-14|1995-03-17|1995-03-24|DELIVER IN PERSON|AIR|y regular theodolites grow fu| +60622|329942|4955|2|14|27607.02|0.00|0.06|A|F|1995-02-18|1995-03-22|1995-02-19|TAKE BACK RETURN|REG AIR|lent theodolites. platelets h| +60622|325134|12653|3|28|32455.36|0.03|0.08|R|F|1995-01-11|1995-02-10|1995-02-05|TAKE BACK RETURN|RAIL|ully regular theo| +60622|519194|6725|4|40|48526.80|0.07|0.03|A|F|1995-04-21|1995-02-20|1995-05-13|DELIVER IN PERSON|FOB|refully even accounts wa| +60622|86502|24006|5|5|7442.50|0.00|0.03|R|F|1995-02-02|1995-03-10|1995-02-05|DELIVER IN PERSON|RAIL|ounts sleep. blithely unusual | +60622|832138|32139|6|44|47083.96|0.06|0.03|R|F|1995-03-09|1995-03-03|1995-04-02|DELIVER IN PERSON|RAIL|ly regular deposi| +60623|43283|18284|1|45|55182.60|0.06|0.00|R|F|1992-10-28|1992-12-26|1992-11-25|COLLECT COD|SHIP|fully bold ideas. unusual platelets| +60623|448548|48549|2|39|58364.28|0.09|0.07|A|F|1992-12-31|1993-01-13|1993-01-29|DELIVER IN PERSON|AIR|ests nag quickly around the ironic reques| +60623|736674|11703|3|49|83821.36|0.04|0.06|A|F|1992-11-13|1993-01-11|1992-12-04|NONE|SHIP| slyly against the theodoli| +60623|263145|661|4|8|8865.04|0.09|0.00|A|F|1993-02-17|1993-01-20|1993-03-05|TAKE BACK RETURN|TRUCK|ld accounts according to the blithely spe| +60648|88019|521|1|35|35245.35|0.06|0.02|A|F|1993-09-29|1993-10-22|1993-10-03|COLLECT COD|SHIP|ly across the slyly final somas. | +60648|322552|10071|2|6|9447.24|0.00|0.04|A|F|1993-10-16|1993-11-28|1993-10-24|TAKE BACK RETURN|RAIL| deposits doze carefully. express, special| +60648|124043|36546|3|3|3201.12|0.04|0.00|A|F|1993-12-16|1993-11-10|1993-12-26|COLLECT COD|MAIL|nal accounts int| +60649|565584|3118|1|17|28042.52|0.07|0.07|R|F|1993-08-08|1993-06-07|1993-08-15|DELIVER IN PERSON|REG AIR|ular deposits doubt quickly even pinto| +60649|759543|9544|2|4|6410.04|0.00|0.05|R|F|1993-05-06|1993-06-30|1993-05-08|COLLECT COD|RAIL|usual, even requests wake slyly a| +60649|628396|15933|3|9|11919.24|0.00|0.04|R|F|1993-06-03|1993-06-19|1993-06-25|TAKE BACK RETURN|RAIL|ironic warthogs are carefully. regular acc| +60649|437862|12879|4|1|1799.84|0.08|0.04|A|F|1993-05-03|1993-05-20|1993-05-11|COLLECT COD|REG AIR|regular theodolites ha| +60649|137418|12423|5|38|55305.58|0.02|0.02|A|F|1993-05-30|1993-05-26|1993-06-11|DELIVER IN PERSON|MAIL|regular, unusual epitaphs. even, unusua| +60649|573121|10655|6|43|51346.30|0.06|0.05|R|F|1993-06-05|1993-05-31|1993-06-11|DELIVER IN PERSON|RAIL|express, express accounts| +60649|430824|5841|7|45|78966.00|0.01|0.00|R|F|1993-06-15|1993-06-26|1993-06-16|DELIVER IN PERSON|TRUCK|odolites use quickly unusual| +60650|853210|15728|1|5|5815.85|0.01|0.08|N|O|1997-01-09|1997-03-04|1997-01-21|TAKE BACK RETURN|FOB|atelets nag quickly qu| +60650|898205|48206|2|44|52939.04|0.03|0.03|N|O|1997-03-18|1997-03-09|1997-03-28|TAKE BACK RETURN|TRUCK|n asymptotes. furiously bold| +60651|198853|36363|1|33|64411.05|0.05|0.04|R|F|1992-06-01|1992-05-31|1992-06-30|NONE|SHIP|ide of the final dependencies maint| +60651|116324|28827|2|20|26806.40|0.10|0.03|A|F|1992-05-18|1992-05-20|1992-06-14|NONE|SHIP|quests might use slyly toward | +60651|55819|43323|3|43|76316.83|0.09|0.03|A|F|1992-06-12|1992-05-29|1992-06-23|COLLECT COD|SHIP|y final packages. pending, unusual p| +60651|142610|17615|4|29|47925.69|0.03|0.04|R|F|1992-05-10|1992-06-07|1992-05-27|COLLECT COD|MAIL|c packages. even, ironic dep| +60651|845090|32639|5|40|41402.00|0.04|0.08|R|F|1992-07-31|1992-05-25|1992-08-13|COLLECT COD|RAIL|gle slyly. regular packages| +60651|411013|36030|6|38|35111.62|0.08|0.08|R|F|1992-05-16|1992-06-26|1992-05-27|NONE|RAIL|er the ironic requests. slyly even | +60651|890692|15727|7|23|38700.95|0.03|0.07|R|F|1992-06-16|1992-05-31|1992-06-25|NONE|AIR|al requests use blithely bold ideas. furi| +60652|857686|7687|1|40|65745.60|0.09|0.03|R|F|1993-11-23|1993-11-25|1993-11-28|COLLECT COD|AIR|dolites according to the deposits | +60652|113433|13434|2|47|67982.21|0.07|0.06|A|F|1993-12-16|1994-01-08|1994-01-05|NONE|MAIL|ole among the iro| +60653|918447|30966|1|25|36635.00|0.08|0.06|N|O|1997-02-19|1997-02-11|1997-02-25|TAKE BACK RETURN|AIR|unts hang blithely among the slyly u| +60653|331411|18930|2|11|15866.40|0.08|0.01|N|O|1997-02-16|1997-02-03|1997-03-08|TAKE BACK RETURN|FOB|fter the care| +60653|12555|25056|3|49|71909.95|0.08|0.03|N|O|1997-01-28|1997-03-15|1997-02-25|TAKE BACK RETURN|MAIL| cajole quickly along| +60653|2735|15236|4|30|49131.90|0.09|0.00|N|O|1997-02-17|1997-02-27|1997-02-18|TAKE BACK RETURN|REG AIR|unts was blithely. slyly special ac| +60654|711044|11045|1|33|34815.33|0.08|0.02|A|F|1993-09-28|1993-11-01|1993-09-29|COLLECT COD|SHIP|e slyly unusual platelets. ideas are al| +60654|515489|40510|2|40|60178.40|0.07|0.06|R|F|1993-12-17|1993-11-05|1993-12-23|COLLECT COD|MAIL|fluffily bold pinto beans. slyly fluffy g| +60655|866142|41177|1|12|13297.20|0.06|0.08|A|F|1994-11-25|1994-11-11|1994-11-26|DELIVER IN PERSON|REG AIR|regular deposits i| +60655|242279|42280|2|14|17097.64|0.04|0.01|A|F|1994-12-14|1994-12-08|1994-12-15|DELIVER IN PERSON|SHIP|y final instructions cajol| +60655|971011|21012|3|34|36786.98|0.03|0.06|A|F|1994-10-27|1994-11-10|1994-11-24|COLLECT COD|REG AIR|ironic packages| +60655|770079|32595|4|12|13788.48|0.02|0.04|R|F|1994-12-28|1994-11-12|1995-01-02|NONE|REG AIR|lar requests. requests d| +60655|706011|43554|5|11|11186.78|0.06|0.03|A|F|1994-12-17|1994-11-06|1995-01-01|COLLECT COD|REG AIR|hely express asymptotes | +60655|915622|3177|6|29|47489.82|0.04|0.00|R|F|1994-11-25|1994-12-20|1994-12-20|TAKE BACK RETURN|RAIL|cial requests! bold inst| +60680|51190|26193|1|40|45647.60|0.00|0.08|N|O|1995-12-29|1996-02-04|1996-01-15|DELIVER IN PERSON|TRUCK|ckages use furio| +60680|342513|42514|2|41|63775.50|0.08|0.06|N|O|1995-12-19|1996-01-14|1996-01-17|COLLECT COD|RAIL| quickly blithely final packa| +60681|984967|10006|1|43|88232.56|0.05|0.08|A|F|1993-01-13|1993-01-14|1993-01-28|NONE|REG AIR|theodolites boost quickly. slyly unusual | +60681|333691|21210|2|37|63813.16|0.09|0.02|A|F|1992-11-27|1992-11-29|1992-12-19|COLLECT COD|FOB| detect against the blithely bold acco| +60681|336031|36032|3|33|35211.66|0.07|0.06|A|F|1992-12-26|1992-12-23|1993-01-19|TAKE BACK RETURN|REG AIR| excuses. bli| +60681|668389|30903|4|41|55651.35|0.05|0.08|R|F|1992-12-05|1993-01-13|1992-12-14|COLLECT COD|SHIP|ely final pinto beans above the care| +60682|786247|23793|1|26|34663.46|0.09|0.02|N|O|1996-07-12|1996-07-26|1996-07-14|NONE|AIR|s. ironically regu| +60682|452242|14752|2|47|56128.34|0.03|0.01|N|O|1996-08-22|1996-06-08|1996-08-29|NONE|AIR|lose slyly. s| +60682|816381|16382|3|8|10378.72|0.07|0.08|N|O|1996-08-25|1996-07-17|1996-09-18|COLLECT COD|TRUCK|lyly final accounts wake furio| +60683|848035|48036|1|47|46200.53|0.05|0.01|A|F|1993-06-18|1993-06-10|1993-07-01|TAKE BACK RETURN|REG AIR| according to the blithel| +60683|910764|48319|2|22|39043.84|0.02|0.02|A|F|1993-06-30|1993-07-01|1993-07-14|TAKE BACK RETURN|MAIL|usual theodolite| +60683|200873|38386|3|12|21286.32|0.10|0.08|R|F|1993-06-02|1993-05-23|1993-06-04|NONE|TRUCK|he ironic, express deposits cajole slyly in| +60683|63185|25687|4|14|16074.52|0.08|0.08|A|F|1993-07-26|1993-06-04|1993-07-29|COLLECT COD|TRUCK|ntain furiously alongside of the u| +60684|237754|259|1|17|28759.58|0.08|0.03|N|O|1996-07-23|1996-09-04|1996-08-11|DELIVER IN PERSON|MAIL|furiously. foxes wake s| +60685|569118|19119|1|45|53419.05|0.08|0.00|N|O|1998-03-21|1998-02-19|1998-04-17|DELIVER IN PERSON|AIR|ng the permanent, pending packages. fu| +60685|163407|13408|2|26|38230.40|0.01|0.05|N|O|1998-02-02|1997-12-31|1998-02-13|DELIVER IN PERSON|MAIL| ideas print acros| +60685|378716|3731|3|24|43072.80|0.10|0.02|N|O|1998-01-26|1998-01-25|1998-02-23|COLLECT COD|REG AIR|ts. quickly even requests are along | +60685|66493|3997|4|1|1459.49|0.08|0.08|N|O|1997-12-29|1997-12-30|1998-01-03|COLLECT COD|MAIL|ajole carefu| +60685|541746|29277|5|8|14301.76|0.01|0.03|N|O|1997-11-29|1997-12-31|1997-12-17|TAKE BACK RETURN|AIR|quests past the u| +60685|113871|13872|6|13|24503.31|0.04|0.04|N|O|1997-12-09|1998-01-17|1997-12-20|COLLECT COD|FOB| regular requests promise slyly about the | +60685|826075|13624|7|39|39040.17|0.00|0.00|N|O|1998-02-16|1998-01-01|1998-03-13|NONE|REG AIR|y ironic re| +60686|840094|40095|1|12|12408.60|0.06|0.08|N|O|1997-11-16|1997-11-13|1997-11-25|COLLECT COD|RAIL|es! pinto beans | +60686|449473|49474|2|8|11379.60|0.08|0.07|N|O|1997-10-25|1997-12-04|1997-10-26|COLLECT COD|AIR|e requests are above the deposits. fluffily| +60686|290283|27799|3|12|15279.24|0.05|0.04|N|O|1997-11-29|1997-11-23|1997-12-21|DELIVER IN PERSON|FOB|y ironic tithes haggle fur| +60686|781807|44323|4|17|32109.09|0.09|0.02|N|O|1998-01-21|1997-12-29|1998-02-03|TAKE BACK RETURN|SHIP|itaphs are blithely. ironic, | +60686|821354|33871|5|13|16579.03|0.05|0.00|N|O|1997-12-05|1997-11-14|1997-12-15|COLLECT COD|FOB|, express asymptotes agai| +60686|487761|12780|6|41|71698.34|0.10|0.06|N|O|1997-10-25|1997-12-24|1997-11-14|TAKE BACK RETURN|TRUCK|sits run about the pinto beans. final | +60687|123621|23622|1|3|4933.86|0.01|0.03|R|F|1992-05-24|1992-07-14|1992-06-09|NONE|FOB|nst the slyly s| +60687|687872|386|2|34|63234.56|0.06|0.07|A|F|1992-06-28|1992-06-24|1992-07-13|COLLECT COD|REG AIR|ending instruc| +60712|250735|38251|1|14|23600.08|0.06|0.07|R|F|1992-03-22|1992-02-19|1992-04-15|TAKE BACK RETURN|REG AIR|erns poach above the quickly | +60712|90246|40247|2|8|9889.92|0.05|0.03|A|F|1992-02-11|1992-03-14|1992-03-08|TAKE BACK RETURN|MAIL|ix carefully after the qu| +60713|704467|4468|1|17|25014.31|0.04|0.05|N|F|1995-05-24|1995-07-30|1995-06-20|TAKE BACK RETURN|TRUCK|final, bold courts above the fl| +60713|969768|7326|2|39|71671.08|0.01|0.00|A|F|1995-05-18|1995-07-04|1995-05-22|COLLECT COD|FOB|luffily bold deposits must are r| +60713|886320|48838|3|5|6531.40|0.01|0.01|N|O|1995-08-27|1995-07-07|1995-09-09|DELIVER IN PERSON|REG AIR|ross the qu| +60714|153062|28069|1|12|13380.72|0.00|0.04|N|O|1998-04-26|1998-05-21|1998-05-15|COLLECT COD|RAIL| integrate careful| +60714|503346|15857|2|11|14842.52|0.10|0.00|N|O|1998-06-28|1998-06-07|1998-07-05|TAKE BACK RETURN|SHIP|s. furiously regular instructions alongsi| +60714|721667|9210|3|21|35461.23|0.08|0.05|N|O|1998-06-21|1998-04-30|1998-06-26|COLLECT COD|AIR|d the bold depen| +60714|51430|26433|4|50|69071.50|0.09|0.01|N|O|1998-03-27|1998-05-09|1998-04-16|COLLECT COD|FOB|he quickly unusual req| +60715|699570|12084|1|13|20404.02|0.04|0.04|N|O|1998-05-02|1998-03-31|1998-06-01|DELIVER IN PERSON|RAIL|carefully final theodolites haggle b| +60715|669454|44481|2|47|66900.74|0.08|0.05|N|O|1998-02-02|1998-03-01|1998-03-01|NONE|TRUCK|ts; pinto beans use fluffily along the c| +60715|496822|21841|3|12|21825.60|0.05|0.08|N|O|1998-02-25|1998-04-14|1998-02-27|NONE|AIR|l asymptotes cajole ruthl| +60716|695123|32663|1|21|23479.89|0.03|0.03|N|O|1998-06-03|1998-06-12|1998-06-06|NONE|AIR|ronic pinto beans? ruthless| +60716|921914|34433|2|26|50332.62|0.06|0.05|N|O|1998-07-24|1998-08-01|1998-08-01|TAKE BACK RETURN|AIR|according to the sl| +60716|597470|22493|3|13|20376.85|0.07|0.07|N|O|1998-08-15|1998-06-29|1998-09-12|COLLECT COD|SHIP|ding to the regular pinto | +60716|667697|17698|4|15|24969.90|0.00|0.03|N|O|1998-06-01|1998-08-08|1998-06-23|COLLECT COD|MAIL|ly. regular, unu| +60716|974020|36540|5|15|16409.70|0.04|0.04|N|O|1998-05-24|1998-07-30|1998-06-17|TAKE BACK RETURN|SHIP|haggle alon| +60716|348280|23293|6|10|13282.70|0.10|0.03|N|O|1998-09-03|1998-06-21|1998-09-30|COLLECT COD|FOB| slyly final theodolites detec| +60717|267705|30211|1|48|80289.12|0.03|0.03|R|F|1993-01-08|1993-03-23|1993-02-03|NONE|FOB|arefully express requests h| +60717|304578|42097|2|32|50641.92|0.07|0.02|R|F|1992-12-27|1993-01-25|1993-01-09|COLLECT COD|FOB|nding, bold platelets. fluffi| +60718|374527|37035|1|11|17616.61|0.02|0.05|A|F|1993-06-07|1993-07-16|1993-06-08|DELIVER IN PERSON|REG AIR|nto beans across the | +60718|662909|12910|2|33|61771.71|0.06|0.01|A|F|1993-07-28|1993-07-01|1993-08-23|DELIVER IN PERSON|SHIP|kages. carefully | +60718|507862|32883|3|46|86012.64|0.07|0.03|R|F|1993-07-07|1993-07-11|1993-08-03|DELIVER IN PERSON|REG AIR|ions. final asymp| +60718|628660|41173|4|4|6354.52|0.00|0.02|R|F|1993-09-15|1993-07-10|1993-10-15|DELIVER IN PERSON|REG AIR|ronic deposits. regular requests acro| +60718|879483|17035|5|16|23399.04|0.07|0.08|R|F|1993-08-14|1993-08-21|1993-08-25|NONE|FOB|s. closely even| +60718|462945|473|6|6|11447.52|0.06|0.00|A|F|1993-06-26|1993-06-26|1993-07-04|NONE|SHIP|n accounts cajole slyly furiously e| +60719|553693|16205|1|3|5240.01|0.03|0.03|R|F|1992-05-10|1992-05-05|1992-05-23|NONE|FOB|lithely express deposits. stealthily re| +60719|915787|40824|2|44|79320.56|0.06|0.01|R|F|1992-05-10|1992-06-20|1992-06-08|TAKE BACK RETURN|SHIP|riously regu| +60719|615630|28143|3|3|4636.80|0.00|0.03|R|F|1992-07-09|1992-06-28|1992-07-19|COLLECT COD|RAIL|ithely regular inst| +60719|885368|10403|4|14|18946.48|0.07|0.06|A|F|1992-06-21|1992-06-16|1992-07-13|NONE|RAIL|onic, even requests engage b| +60719|373296|10818|5|34|46555.52|0.10|0.07|R|F|1992-07-05|1992-06-11|1992-08-02|NONE|AIR|erve blithely about the slyly exp| +60719|978989|28990|6|35|72377.90|0.10|0.05|A|F|1992-06-02|1992-06-04|1992-06-06|TAKE BACK RETURN|TRUCK|wake ironi| +60719|864468|2020|7|48|68756.16|0.08|0.01|R|F|1992-04-13|1992-06-27|1992-05-12|COLLECT COD|TRUCK| express ac| +60744|102897|27902|1|15|28498.35|0.08|0.05|N|O|1996-11-17|1996-11-06|1996-12-05|DELIVER IN PERSON|AIR|o beans haggle carefully. ex| +60744|378329|40837|2|38|53477.78|0.03|0.03|N|O|1996-12-04|1996-11-03|1996-12-22|TAKE BACK RETURN|RAIL|y. even asymptotes wake car| +60744|569550|19551|3|32|51824.96|0.02|0.02|N|O|1996-12-25|1996-11-02|1997-01-09|DELIVER IN PERSON|RAIL| packages. slyly daring excuses| +60744|419986|19987|4|4|7623.84|0.09|0.03|N|O|1996-10-08|1996-11-06|1996-10-12|NONE|SHIP|use above the blith| +60744|689731|27271|5|4|6882.80|0.01|0.07|N|O|1997-01-09|1996-12-15|1997-01-28|COLLECT COD|SHIP|sly among the express| +60745|765331|27847|1|8|11170.40|0.09|0.05|A|F|1994-05-18|1994-04-06|1994-05-22|COLLECT COD|REG AIR|side of the furio| +60745|907802|45357|2|43|77819.68|0.03|0.08|A|F|1994-04-02|1994-05-14|1994-04-23|DELIVER IN PERSON|FOB|y regular | +60746|270277|45288|1|16|19956.16|0.04|0.05|R|F|1993-11-11|1993-12-29|1993-12-02|COLLECT COD|AIR| slyly pending depo| +60746|538303|38304|2|9|12071.52|0.01|0.04|R|F|1994-01-30|1994-02-04|1994-02-20|DELIVER IN PERSON|TRUCK|uests detect packages. fox| +60747|9403|21904|1|40|52496.00|0.01|0.05|A|F|1995-03-03|1995-05-18|1995-03-29|NONE|REG AIR|ch about the special acc| +60747|34009|21510|2|11|10373.00|0.00|0.01|N|F|1995-06-11|1995-03-27|1995-06-28|DELIVER IN PERSON|SHIP|t blithely pac| +60747|576308|13842|3|4|5537.12|0.10|0.02|A|F|1995-04-28|1995-04-13|1995-05-22|DELIVER IN PERSON|MAIL|pades wake caref| +60748|695179|20206|1|45|52836.30|0.00|0.06|N|O|1996-10-07|1996-10-24|1996-10-18|NONE|TRUCK|nal theodolites. unusual deposi| +60749|549259|24280|1|22|28781.06|0.07|0.08|N|O|1996-10-17|1996-11-24|1996-10-30|COLLECT COD|SHIP| bold, even packa| +60750|44156|19157|1|44|48406.60|0.04|0.05|R|F|1992-12-14|1993-01-20|1993-01-07|COLLECT COD|MAIL|ove the slyly regular deposits. even| +60750|114976|39981|2|42|83620.74|0.04|0.04|A|F|1993-03-20|1993-01-24|1993-04-18|DELIVER IN PERSON|AIR|ual foxes against the bl| +60750|394747|19762|3|9|16575.57|0.05|0.08|A|F|1992-12-24|1993-02-01|1993-01-03|DELIVER IN PERSON|AIR|t alongside o| +60750|502411|27432|4|23|32507.97|0.07|0.07|R|F|1993-02-26|1993-02-27|1993-03-28|NONE|SHIP|sely after the slyly ev| +60750|13596|1097|5|14|21134.26|0.08|0.04|A|F|1993-01-15|1993-01-15|1993-02-05|DELIVER IN PERSON|MAIL|yly unusual pinto beans sleep. re| +60750|502982|2983|6|22|43669.12|0.05|0.04|A|F|1993-02-08|1993-01-31|1993-02-10|TAKE BACK RETURN|TRUCK|ously slyly special excuses. careful| +60751|569734|19735|1|21|37877.91|0.06|0.04|N|O|1998-06-30|1998-08-12|1998-07-25|DELIVER IN PERSON|TRUCK|hely regular ideas maintain at| +60776|870982|46017|1|7|13670.58|0.07|0.02|N|O|1998-04-16|1998-05-15|1998-04-21|TAKE BACK RETURN|RAIL|lites. furiously ironic accounts af| +60776|580537|43049|2|11|17792.61|0.05|0.01|N|O|1998-04-29|1998-06-18|1998-05-07|NONE|FOB|deas haggle slyly special packa| +60776|77901|15405|3|29|54488.10|0.01|0.04|N|O|1998-05-19|1998-07-03|1998-06-16|DELIVER IN PERSON|AIR|ts. quickly silent deposits along the bli| +60776|276037|1048|4|32|32416.64|0.07|0.02|N|O|1998-06-03|1998-06-03|1998-06-27|NONE|RAIL|e carefully slyly final deposits. regular| +60776|353621|28636|5|24|40190.64|0.00|0.02|N|O|1998-05-14|1998-07-03|1998-06-06|NONE|FOB|kages wake blithely about the | +60776|300660|661|6|14|23249.10|0.01|0.06|N|O|1998-07-24|1998-05-14|1998-07-29|NONE|AIR|ully regular platelets | +60777|549681|24702|1|25|43266.50|0.04|0.00|A|F|1994-05-28|1994-05-18|1994-06-05|NONE|REG AIR|gular requests. f| +60777|478624|41134|2|12|19231.20|0.05|0.05|A|F|1994-07-12|1994-06-17|1994-07-17|TAKE BACK RETURN|REG AIR|is integrate across the | +60777|218048|18049|3|22|21252.66|0.03|0.01|R|F|1994-07-29|1994-05-18|1994-08-12|TAKE BACK RETURN|AIR| deposits are! special, pending depos| +60777|729823|29824|4|40|74111.60|0.03|0.00|R|F|1994-07-23|1994-05-27|1994-07-27|TAKE BACK RETURN|TRUCK|nal excuses. quickly | +60777|127557|40060|5|15|23768.25|0.03|0.08|R|F|1994-06-30|1994-06-06|1994-07-18|COLLECT COD|RAIL|gainst the f| +60778|640146|27683|1|36|39099.96|0.01|0.04|N|O|1998-06-27|1998-05-17|1998-07-06|NONE|SHIP| cajole about the| +60778|927079|14634|2|36|39817.08|0.01|0.04|N|O|1998-04-30|1998-05-23|1998-05-07|DELIVER IN PERSON|SHIP|regularly final deposits. carefu| +60778|401234|38759|3|42|47678.82|0.09|0.02|N|O|1998-07-02|1998-05-15|1998-07-11|COLLECT COD|RAIL|idly regular theodolite| +60778|531248|18779|4|19|24305.18|0.03|0.04|N|O|1998-05-14|1998-06-10|1998-05-28|COLLECT COD|TRUCK|pending id| +60778|678707|28708|5|9|15171.03|0.03|0.07|N|O|1998-04-22|1998-06-28|1998-05-02|COLLECT COD|FOB| ironic instructions may| +60779|643433|5946|1|26|35786.40|0.03|0.05|N|O|1995-07-21|1995-08-20|1995-08-12|NONE|SHIP|furiously against the quickly close ac| +60779|175579|586|2|7|11581.99|0.09|0.01|N|O|1995-09-23|1995-08-17|1995-09-27|DELIVER IN PERSON|REG AIR|ily even warhorses according to| +60779|952166|14686|3|6|7308.72|0.06|0.07|N|O|1995-08-07|1995-08-28|1995-08-14|DELIVER IN PERSON|REG AIR| kindle blithely | +60779|47692|22693|4|26|42631.94|0.06|0.03|N|O|1995-09-10|1995-09-29|1995-09-25|DELIVER IN PERSON|TRUCK|lithely regular instructions| +60779|547391|47392|5|21|30205.77|0.02|0.08|N|O|1995-11-08|1995-09-05|1995-11-17|TAKE BACK RETURN|AIR|s sleep against the slyly ironic ideas? b| +60780|573605|23606|1|4|6714.32|0.07|0.03|N|O|1995-09-10|1995-09-22|1995-09-24|COLLECT COD|REG AIR|ular theodolites | +60780|578615|41127|2|25|42339.75|0.10|0.05|N|O|1995-08-30|1995-10-15|1995-09-23|NONE|TRUCK|o beans are quickly ev| +60780|766775|41806|3|39|71827.86|0.09|0.03|N|O|1995-09-12|1995-08-28|1995-09-18|TAKE BACK RETURN|TRUCK| carefully requests. | +60781|643721|6234|1|26|43281.94|0.05|0.06|N|O|1997-11-12|1997-11-01|1997-12-12|NONE|SHIP|iously final accounts. furi| +60781|15805|40806|2|23|39578.40|0.03|0.06|N|O|1997-12-13|1997-10-22|1997-12-18|NONE|TRUCK| pinto beans. fi| +60781|628781|3806|3|44|75229.00|0.00|0.02|N|O|1997-09-21|1997-10-07|1997-10-02|DELIVER IN PERSON|RAIL|cial attainments| +60782|363548|1070|1|4|6446.12|0.01|0.05|N|O|1998-06-19|1998-05-17|1998-07-07|DELIVER IN PERSON|REG AIR|its haggle slyly quick deposits. iro| +60782|141627|16632|2|47|78425.14|0.09|0.00|N|O|1998-03-17|1998-04-08|1998-04-02|TAKE BACK RETURN|REG AIR|c instructions sleep dogged| +60782|308261|45780|3|1|1269.25|0.01|0.05|N|O|1998-03-18|1998-04-23|1998-04-01|NONE|REG AIR|ngside of the blithely final deposits ha| +60782|931565|44084|4|12|19158.24|0.10|0.02|N|O|1998-03-22|1998-04-18|1998-03-28|COLLECT COD|REG AIR|ly final packages affix carefully blith| +60782|802291|14808|5|37|44150.25|0.10|0.07|N|O|1998-06-24|1998-05-17|1998-07-21|DELIVER IN PERSON|AIR|counts. ironic packages serve among | +60782|98986|11488|6|16|31759.68|0.02|0.08|N|O|1998-05-17|1998-03-30|1998-06-15|COLLECT COD|MAIL|ular foxes. sly| +60783|800049|50|1|3|2847.00|0.09|0.00|N|O|1996-05-26|1996-06-30|1996-05-29|COLLECT COD|TRUCK|. ironic ideas integ| +60783|417460|4985|2|32|44078.08|0.10|0.00|N|O|1996-06-27|1996-07-26|1996-07-01|DELIVER IN PERSON|TRUCK| deposits wa| +60808|981937|44457|1|42|84793.38|0.10|0.08|R|F|1995-05-06|1995-07-03|1995-05-14|NONE|FOB|ckly final foxes engage s| +60808|412359|49884|2|5|6356.65|0.07|0.06|R|F|1995-05-30|1995-07-02|1995-06-09|TAKE BACK RETURN|TRUCK|arefully regular depo| +60808|502012|27033|3|26|26363.74|0.06|0.08|N|O|1995-07-22|1995-07-13|1995-08-11|DELIVER IN PERSON|MAIL|s after the bl| +60808|312166|49685|4|14|16494.10|0.02|0.06|A|F|1995-05-10|1995-06-27|1995-05-24|DELIVER IN PERSON|TRUCK|thely fluffy attainments wake| +60808|561893|49427|5|38|74285.06|0.00|0.08|N|O|1995-06-27|1995-07-22|1995-06-30|TAKE BACK RETURN|RAIL|fix: dogged, pending packages n| +60808|728413|40928|6|18|25944.84|0.10|0.08|A|F|1995-06-02|1995-07-23|1995-06-05|COLLECT COD|MAIL|sual deposits nag-- carefu| +60809|636202|23739|1|32|36421.44|0.07|0.07|N|O|1996-09-25|1996-09-14|1996-10-03|COLLECT COD|TRUCK|equests. furiously express accounts among| +60809|635704|35705|2|23|37712.41|0.04|0.02|N|O|1996-09-26|1996-09-25|1996-09-28|TAKE BACK RETURN|AIR| haggle quickly blithely silent pinto be| +60809|267374|29880|3|9|12072.24|0.05|0.07|N|O|1996-10-22|1996-09-04|1996-11-05|TAKE BACK RETURN|FOB|gainst the qui| +60809|750478|12994|4|39|59609.16|0.01|0.08|N|O|1996-11-27|1996-09-17|1996-12-15|TAKE BACK RETURN|FOB|foxes haggle furiously stealthy packa| +60809|270931|33437|5|34|64665.28|0.10|0.04|N|O|1996-09-15|1996-09-07|1996-10-13|COLLECT COD|TRUCK|yly regular deposi| +60810|559541|9542|1|45|72023.40|0.05|0.07|N|O|1997-01-10|1997-01-10|1997-01-22|DELIVER IN PERSON|RAIL|ins boost sl| +60810|197743|35253|2|3|5522.22|0.06|0.03|N|O|1996-12-03|1997-01-19|1997-01-02|NONE|SHIP|fully permanent theodolites. carefully | +60810|456961|6962|3|22|42194.68|0.03|0.02|N|O|1996-10-27|1996-12-09|1996-10-29|TAKE BACK RETURN|RAIL| express, final requests ac| +60810|133613|33614|4|50|82330.50|0.06|0.01|N|O|1997-01-20|1996-12-22|1997-01-30|DELIVER IN PERSON|FOB|eas sleep b| +60810|624014|49039|5|46|43147.08|0.00|0.02|N|O|1997-02-03|1996-12-18|1997-02-19|TAKE BACK RETURN|MAIL|uests. slyly final accounts affix | +60810|794662|7178|6|35|61482.05|0.03|0.07|N|O|1997-01-11|1996-12-01|1997-01-16|COLLECT COD|SHIP|c Tiresias; blithely unusual acco| +60811|843261|30810|1|48|57802.56|0.05|0.04|N|O|1996-01-04|1995-12-01|1996-01-09|TAKE BACK RETURN|FOB|y ironic reques| +60811|683224|8251|2|41|49494.79|0.02|0.08|N|O|1995-09-26|1995-12-15|1995-10-17|NONE|RAIL|ual requests. regular | +60812|311196|48715|1|20|24143.60|0.03|0.02|N|O|1997-02-25|1997-01-11|1997-02-27|TAKE BACK RETURN|TRUCK|le slyly even deposits. specia| +60812|267979|5495|2|18|35045.28|0.03|0.08|N|O|1997-02-09|1997-01-21|1997-02-11|DELIVER IN PERSON|RAIL|tes sleep carefully a| +60812|918833|31352|3|19|35184.01|0.09|0.00|N|O|1997-02-28|1997-02-18|1997-03-30|NONE|REG AIR|ions. quickly pending theodolites wake | +60812|821412|33929|4|22|29334.14|0.00|0.00|N|O|1997-01-23|1997-01-22|1997-02-16|COLLECT COD|TRUCK|, even foxes are | +60812|460297|35316|5|9|11315.43|0.00|0.08|N|O|1997-03-25|1997-01-18|1997-03-30|DELIVER IN PERSON|MAIL|ly regular platelets wake final | +60813|387865|37866|1|2|3905.70|0.09|0.00|N|O|1998-05-21|1998-05-05|1998-06-14|DELIVER IN PERSON|RAIL|dependencies affix furiously special packag| +60813|845265|32814|2|19|22994.18|0.06|0.06|N|O|1998-05-15|1998-04-17|1998-06-06|TAKE BACK RETURN|RAIL|fully regular packages detect fluff| +60813|364951|27459|3|9|18143.46|0.00|0.07|N|O|1998-06-06|1998-04-27|1998-06-21|TAKE BACK RETURN|AIR|al, bold hockey players. r| +60813|724222|49251|4|3|3738.57|0.06|0.00|N|O|1998-06-19|1998-04-15|1998-07-14|DELIVER IN PERSON|FOB|ans wake carefull| +60814|592403|4915|1|41|61310.58|0.00|0.07|N|O|1998-03-09|1998-01-02|1998-03-15|COLLECT COD|FOB|. bold accou| +60814|509474|47005|2|1|1483.45|0.01|0.01|N|O|1997-12-25|1997-12-31|1998-01-11|NONE|REG AIR|deposits nod at the unusual, final dep| +60814|719653|32168|3|9|15053.58|0.01|0.05|N|O|1998-02-12|1998-01-19|1998-03-07|NONE|REG AIR|e carefully speci| +60814|196216|21223|4|18|23619.78|0.03|0.04|N|O|1998-01-27|1998-01-02|1998-02-21|DELIVER IN PERSON|RAIL|hely final packages. slyly bold ideas wa| +60814|796934|34480|5|15|30463.50|0.09|0.04|N|O|1998-03-09|1998-02-02|1998-04-05|DELIVER IN PERSON|RAIL|dependencies wake regularly. s| +60815|577180|14714|1|20|25143.20|0.00|0.01|N|O|1998-04-16|1998-03-25|1998-04-20|TAKE BACK RETURN|REG AIR|y express packages. regular theodo| +60815|648746|23771|2|23|38978.33|0.10|0.03|N|O|1998-04-06|1998-03-13|1998-04-13|COLLECT COD|AIR|y final foxes cajole | +60815|460537|48065|3|28|41930.28|0.05|0.08|N|O|1998-05-03|1998-03-14|1998-05-13|TAKE BACK RETURN|RAIL|es. slyly pe| +60815|240692|3197|4|45|73470.60|0.05|0.06|N|O|1998-05-01|1998-04-01|1998-05-05|DELIVER IN PERSON|RAIL|ogged ideas. evenly regular dugouts are c| +60815|307674|45193|5|36|60539.76|0.01|0.07|N|O|1998-01-29|1998-03-21|1998-02-26|NONE|AIR|se furiously abov| +60840|585828|48340|1|25|47845.00|0.03|0.00|N|O|1995-10-05|1995-10-24|1995-10-16|TAKE BACK RETURN|REG AIR|ously speci| +60840|999285|24324|2|10|13842.40|0.10|0.02|N|O|1995-10-09|1995-10-28|1995-10-30|DELIVER IN PERSON|SHIP|quests wake. | +60840|976616|14174|3|10|16925.70|0.06|0.03|N|O|1996-01-06|1995-11-05|1996-01-18|COLLECT COD|AIR|iously silent excuses. careful| +60840|968361|30881|4|35|50026.20|0.06|0.01|N|O|1995-11-15|1995-11-10|1995-12-05|NONE|FOB|usly silent theodolites sleep| +60840|234093|21606|5|9|9243.72|0.08|0.08|N|O|1995-12-12|1995-10-22|1995-12-19|DELIVER IN PERSON|AIR|he blithely special frays cajole quickl| +60841|446657|46658|1|30|48108.90|0.00|0.05|N|O|1997-03-13|1997-02-07|1997-03-29|DELIVER IN PERSON|RAIL|haggle. blithely even| +60841|955627|5628|2|11|18508.38|0.10|0.08|N|O|1997-02-07|1997-01-30|1997-02-15|TAKE BACK RETURN|TRUCK| slyly accordin| +60841|216876|41885|3|7|12550.02|0.00|0.07|N|O|1997-01-22|1997-02-22|1997-02-13|NONE|SHIP|nding orbits. carefully ir| +60841|27792|27793|4|35|60192.65|0.01|0.06|N|O|1996-12-22|1997-01-09|1996-12-29|NONE|REG AIR|aves. careful| +60842|191590|4094|1|15|25223.85|0.06|0.02|N|O|1995-07-14|1995-07-16|1995-07-28|NONE|RAIL|ts. special, regular ideas | +60842|42049|17050|2|48|47569.92|0.03|0.02|N|O|1995-07-28|1995-08-27|1995-08-14|TAKE BACK RETURN|SHIP|es wake final accoun| +60842|707777|7778|3|27|48187.98|0.01|0.06|N|O|1995-09-23|1995-07-28|1995-10-07|COLLECT COD|SHIP|g the fluffily final pinto beans are s| +60843|543137|5648|1|39|46024.29|0.00|0.01|R|F|1992-04-16|1992-06-20|1992-05-11|DELIVER IN PERSON|RAIL| final packages sleep. theodolite| +60843|491964|29492|2|50|97797.00|0.03|0.06|A|F|1992-05-15|1992-05-27|1992-06-03|TAKE BACK RETURN|TRUCK|s detect p| +60843|432273|32274|3|3|3615.75|0.10|0.02|A|F|1992-06-02|1992-06-18|1992-06-29|DELIVER IN PERSON|AIR| even instructions.| +60843|208785|8786|4|44|74525.88|0.03|0.01|R|F|1992-05-03|1992-05-15|1992-05-19|COLLECT COD|SHIP|y special instruc| +60843|47991|35492|5|50|96949.50|0.07|0.00|R|F|1992-05-06|1992-06-27|1992-05-15|TAKE BACK RETURN|RAIL|s promise. fluffily silent accounts b| +60843|575786|809|6|27|50267.52|0.04|0.07|R|F|1992-06-07|1992-06-30|1992-07-04|NONE|REG AIR|st the slyly even excuses grow among| +60844|465136|2664|1|1|1101.11|0.03|0.02|N|O|1996-06-12|1996-06-14|1996-07-03|TAKE BACK RETURN|AIR|nto beans. careful| +60844|531465|6486|2|37|55368.28|0.00|0.03|N|O|1996-05-28|1996-07-10|1996-06-08|DELIVER IN PERSON|RAIL|y unusual accounts nag blithely alon| +60844|332048|19567|3|34|36721.02|0.07|0.06|N|O|1996-05-18|1996-06-09|1996-06-01|COLLECT COD|FOB|its. closely special accoun| +60844|730235|42750|4|25|31630.00|0.00|0.03|N|O|1996-08-20|1996-06-30|1996-09-11|NONE|FOB|. regular, regular sauternes a| +60844|59027|9028|5|32|31552.64|0.01|0.05|N|O|1996-06-08|1996-07-03|1996-07-06|DELIVER IN PERSON|FOB|y special | +60844|66365|3869|6|28|37278.08|0.03|0.05|N|O|1996-08-09|1996-05-27|1996-08-24|TAKE BACK RETURN|SHIP|blithely final courts | +60844|389236|26758|7|33|43732.26|0.07|0.08|N|O|1996-08-07|1996-07-06|1996-08-31|TAKE BACK RETURN|SHIP|s: requests across| +60845|881385|31386|1|44|60118.96|0.03|0.03|A|F|1992-10-28|1992-11-06|1992-11-08|DELIVER IN PERSON|MAIL|. slyly regular requests sleep slyly | +60845|427496|2513|2|25|35586.75|0.05|0.02|A|F|1992-09-29|1992-10-21|1992-10-03|NONE|RAIL|he slyly regular foxes wake care| +60845|918361|30880|3|12|16551.84|0.09|0.02|A|F|1992-09-30|1992-10-10|1992-10-05|NONE|FOB|leep carefully pack| +60845|877866|2901|4|43|79284.26|0.08|0.04|R|F|1992-11-11|1992-11-13|1992-12-11|TAKE BACK RETURN|MAIL|y regular pinto beans affix furiously a| +60846|559375|46909|1|16|22949.60|0.01|0.08|N|O|1996-10-02|1996-08-29|1996-10-30|NONE|REG AIR|ests. blithely regular requests us| +60846|401999|39524|2|9|17108.73|0.10|0.01|N|O|1996-08-24|1996-10-07|1996-09-07|DELIVER IN PERSON|RAIL|yers use daringly unusual package| +60846|396743|21758|3|34|62550.82|0.02|0.05|N|O|1996-10-09|1996-08-16|1996-10-10|TAKE BACK RETURN|AIR|nic dependencies. slyly un| +60847|518412|30923|1|25|35759.75|0.08|0.06|N|O|1996-03-08|1996-03-31|1996-03-18|NONE|MAIL|sts. carefully unus| +60847|950200|12720|2|38|47506.08|0.04|0.05|N|O|1996-04-17|1996-04-16|1996-05-14|DELIVER IN PERSON|AIR|gle fluffily | +60872|427302|39811|1|33|40566.24|0.02|0.01|N|O|1997-10-06|1997-11-23|1997-10-30|NONE|RAIL|c asymptotes sleep despite the quickly re| +60872|649247|36784|2|42|50240.82|0.06|0.03|N|O|1997-12-06|1997-11-16|1998-01-04|COLLECT COD|FOB|ructions. slyl| +60872|886070|23622|3|49|51745.47|0.04|0.05|N|O|1997-12-20|1997-12-24|1998-01-06|DELIVER IN PERSON|AIR|express pinto beans poach slyly s| +60872|167282|42289|4|44|59368.32|0.08|0.00|N|O|1998-01-09|1997-12-27|1998-01-20|NONE|AIR|l patterns nag slyly| +60872|506521|44052|5|26|39715.00|0.04|0.06|N|O|1997-11-18|1997-12-27|1997-12-15|DELIVER IN PERSON|FOB| dolphins. blithely ironic acc| +60873|630584|18121|1|23|34834.65|0.09|0.08|A|F|1994-05-01|1994-05-05|1994-05-27|COLLECT COD|SHIP|fily regula| +60873|210183|10184|2|37|40447.29|0.00|0.01|A|F|1994-06-06|1994-04-11|1994-07-01|NONE|RAIL|al deposits integra| +60873|539613|14634|3|3|4957.77|0.03|0.01|A|F|1994-06-14|1994-04-18|1994-06-15|NONE|TRUCK|ously around | +60874|6772|44273|1|30|50363.10|0.01|0.06|R|F|1992-10-11|1992-10-24|1992-10-31|DELIVER IN PERSON|TRUCK| carefully regula| +60874|803220|15737|2|34|38188.12|0.04|0.04|A|F|1992-08-18|1992-10-20|1992-09-16|TAKE BACK RETURN|SHIP|, express theod| +60874|714315|14316|3|39|51841.92|0.09|0.06|R|F|1992-10-16|1992-10-25|1992-11-10|NONE|AIR|lly final ideas lose f| +60874|478828|28829|4|18|32522.40|0.10|0.07|R|F|1992-08-06|1992-10-22|1992-08-24|NONE|SHIP|ickly regular accounts. | +60875|670286|45313|1|49|61556.25|0.10|0.03|N|O|1996-12-30|1997-01-19|1997-01-10|COLLECT COD|TRUCK|daring requests are quic| +60875|490253|15272|2|37|45999.51|0.09|0.07|N|O|1996-12-30|1997-02-26|1997-01-02|NONE|TRUCK|y regular dugouts cajol| +60875|678678|3705|3|14|23192.96|0.01|0.00|N|O|1997-03-31|1997-02-11|1997-04-17|NONE|MAIL|lly final dependencies ac| +60875|530490|30491|4|36|54736.92|0.06|0.01|N|O|1997-03-08|1997-03-01|1997-03-16|DELIVER IN PERSON|SHIP|old foxes | +60875|941776|4295|5|29|52714.17|0.10|0.00|N|O|1996-12-11|1997-02-20|1996-12-29|NONE|FOB| packages sleep quickly special foxes. q| +60876|990036|40037|1|27|30401.73|0.04|0.01|N|O|1997-04-25|1997-06-01|1997-05-18|NONE|MAIL|l ideas cajole fu| +60876|528260|15791|2|7|9017.68|0.04|0.02|N|O|1997-08-13|1997-05-25|1997-08-15|COLLECT COD|SHIP|wake quickly. slyly special | +60876|451887|39415|3|29|53326.94|0.02|0.07|N|O|1997-07-23|1997-07-11|1997-08-12|DELIVER IN PERSON|MAIL|l accounts sleep | +60877|719620|7163|1|29|47548.11|0.03|0.00|N|O|1996-07-23|1996-06-13|1996-08-08|TAKE BACK RETURN|TRUCK|kly furiously express packages. boldly i| +60877|636889|11914|2|43|78511.55|0.08|0.05|N|O|1996-07-23|1996-05-06|1996-08-06|NONE|AIR|ly. quickly ironic pinto beans use furious| +60877|185828|23338|3|49|93777.18|0.05|0.06|N|O|1996-04-30|1996-06-22|1996-05-07|COLLECT COD|RAIL| carefully iro| +60877|208965|46478|4|28|52470.60|0.01|0.04|N|O|1996-06-01|1996-06-25|1996-06-12|TAKE BACK RETURN|FOB| ironic asymptotes? express pin| +60878|322950|47963|1|14|27621.16|0.07|0.07|R|F|1992-07-31|1992-08-30|1992-08-07|NONE|AIR|ording to the carefully regular ideas | +60878|815972|15973|2|22|41534.46|0.09|0.06|R|F|1992-09-18|1992-07-31|1992-09-29|DELIVER IN PERSON|SHIP|e foxes. c| +60878|31438|6439|3|9|12324.87|0.00|0.07|A|F|1992-09-24|1992-08-06|1992-09-29|NONE|TRUCK|lly ironic foxes. slyly even pac| +60878|375509|25510|4|50|79224.50|0.08|0.05|R|F|1992-07-29|1992-08-05|1992-08-18|NONE|SHIP|ons. slyly final foxes| +60878|170671|8181|5|29|50508.43|0.06|0.05|R|F|1992-08-31|1992-08-19|1992-09-18|TAKE BACK RETURN|MAIL|ly against the carefully pending requests.| +60878|455965|43493|6|12|23051.28|0.05|0.00|A|F|1992-09-27|1992-08-27|1992-10-17|NONE|AIR|reful deposits haggle s| +60878|398895|48896|7|15|29908.20|0.07|0.00|R|F|1992-08-06|1992-09-03|1992-08-10|NONE|FOB|y pending accounts affix| +60879|211592|49105|1|1|1503.58|0.02|0.04|N|O|1995-08-14|1995-08-21|1995-09-06|NONE|AIR|luffily iro| +60879|225689|25690|2|33|53284.11|0.06|0.02|N|O|1995-07-24|1995-09-05|1995-08-08|TAKE BACK RETURN|SHIP|counts. accounts wake ideas. slyly fin| +60904|746739|9254|1|23|41071.10|0.06|0.05|N|O|1997-11-15|1997-10-26|1997-11-25|TAKE BACK RETURN|MAIL| quickly bold accounts. ideas in| +60904|442357|17374|2|32|41578.56|0.02|0.08|N|O|1997-08-30|1997-10-07|1997-09-05|NONE|MAIL|y unusual requests. | +60904|689790|14817|3|50|88988.00|0.09|0.03|N|O|1997-11-26|1997-11-11|1997-12-24|TAKE BACK RETURN|FOB|g the regul| +60905|81299|6302|1|35|44810.15|0.08|0.07|A|F|1992-05-09|1992-03-11|1992-05-12|COLLECT COD|FOB|arefully p| +60905|376750|39258|2|22|40188.28|0.00|0.01|R|F|1992-04-14|1992-03-12|1992-04-18|DELIVER IN PERSON|FOB|ests wake ca| +60905|32109|19610|3|33|34356.30|0.05|0.05|A|F|1992-04-20|1992-04-15|1992-05-01|TAKE BACK RETURN|RAIL|es nag above the| +60905|639470|27007|4|38|53558.72|0.10|0.06|A|F|1992-03-12|1992-04-30|1992-04-07|TAKE BACK RETURN|SHIP|es! requests integrate blithely. | +60906|868228|18229|1|45|53828.10|0.07|0.04|N|O|1997-05-30|1997-05-05|1997-06-03|TAKE BACK RETURN|AIR|slyly final dependencies cajol| +60907|410744|23253|1|15|24820.80|0.05|0.07|R|F|1993-11-16|1993-11-18|1993-12-08|TAKE BACK RETURN|FOB| slyly ironic deposits are arou| +60907|359373|46895|2|8|11458.88|0.09|0.04|A|F|1994-02-02|1993-11-16|1994-02-21|TAKE BACK RETURN|SHIP|en packages. blithely regul| +60908|155166|42676|1|12|14653.92|0.02|0.00|N|O|1997-04-08|1997-04-28|1997-04-12|COLLECT COD|REG AIR|egular packa| +60908|863939|26457|2|23|43766.47|0.04|0.02|N|O|1997-06-03|1997-04-17|1997-06-20|TAKE BACK RETURN|TRUCK|ly about the furiously pendi| +60909|626651|39164|1|36|56794.32|0.07|0.04|N|O|1996-10-12|1996-12-30|1996-10-24|DELIVER IN PERSON|SHIP|ke blithely above the bold deposits. regul| +60909|107001|19504|2|20|20160.00|0.08|0.03|N|O|1997-02-04|1996-12-30|1997-02-16|NONE|AIR|s. fluffily even | +60909|363407|38422|3|17|24996.63|0.01|0.06|N|O|1997-01-13|1996-11-29|1997-01-27|NONE|REG AIR|posits. quickly regular deposits use sl| +60909|773946|48977|4|33|66657.03|0.04|0.00|N|O|1996-12-04|1997-01-07|1996-12-24|COLLECT COD|MAIL|s across t| +60909|707365|44908|5|33|45286.89|0.07|0.03|N|O|1996-10-18|1997-01-04|1996-11-09|TAKE BACK RETURN|SHIP|ntain quickly iron| +60909|675862|13402|6|20|36756.60|0.10|0.01|N|O|1996-12-24|1996-12-09|1997-01-16|NONE|REG AIR|ring packages. sl| +60909|212481|12482|7|12|16721.64|0.05|0.00|N|O|1996-10-19|1996-12-15|1996-11-04|DELIVER IN PERSON|TRUCK| slyly idle dep| +60910|157721|20225|1|36|64033.92|0.04|0.08|N|O|1996-07-22|1996-10-11|1996-08-12|COLLECT COD|AIR|es play. pending, ironic requests despite | +60910|806366|43915|2|28|35624.96|0.04|0.05|N|O|1996-07-24|1996-08-28|1996-08-23|TAKE BACK RETURN|MAIL|onic depos| +60910|580484|5507|3|43|67271.78|0.07|0.01|N|O|1996-09-19|1996-09-27|1996-09-28|TAKE BACK RETURN|AIR| pending foxes detect quickly. careful| +60911|260912|10913|1|46|86153.40|0.03|0.00|R|F|1993-01-30|1992-12-30|1993-02-10|DELIVER IN PERSON|SHIP|ely final requests. packages ac| +60911|133339|45842|2|21|28818.93|0.00|0.08|R|F|1993-01-11|1993-01-07|1993-01-23|DELIVER IN PERSON|TRUCK|s are fluffily even, even acc| +60936|525253|274|1|31|39625.13|0.04|0.02|R|F|1993-05-08|1993-06-11|1993-05-29|COLLECT COD|RAIL| requests cajole carefully along the f| +60936|917075|17076|2|39|42589.17|0.09|0.05|A|F|1993-05-30|1993-06-04|1993-06-01|COLLECT COD|FOB|ully slow pi| +60937|879304|41822|1|9|11549.34|0.02|0.02|A|F|1995-01-11|1994-12-14|1995-01-23|NONE|SHIP|ly above the ex| +60937|461063|36082|2|30|30721.20|0.10|0.00|R|F|1994-12-26|1994-12-22|1994-12-29|TAKE BACK RETURN|FOB|lar courts nag. even p| +60937|71553|46556|3|2|3049.10|0.04|0.08|A|F|1995-02-12|1995-01-06|1995-02-23|DELIVER IN PERSON|REG AIR|regular accounts. blithely ironic| +60937|576312|38824|4|27|37483.83|0.02|0.03|A|F|1994-12-06|1994-12-01|1994-12-27|NONE|SHIP|ironic pinto beans after the fur| +60937|71186|46189|5|35|40501.30|0.10|0.00|R|F|1995-01-03|1995-01-24|1995-01-17|TAKE BACK RETURN|MAIL|ckages are| +60937|414048|39065|6|18|17316.36|0.07|0.08|R|F|1994-11-26|1995-01-09|1994-12-05|DELIVER IN PERSON|REG AIR|y express accounts must boost blithely furi| +60938|940301|27856|1|45|60356.70|0.01|0.08|N|O|1995-09-09|1995-07-30|1995-10-02|TAKE BACK RETURN|AIR|gular instructions alongside of| +60938|628187|3212|2|27|30109.05|0.05|0.05|N|O|1995-09-01|1995-07-28|1995-09-18|COLLECT COD|FOB|to the blithely quick acc| +60938|935045|22600|3|2|2160.00|0.04|0.02|N|O|1995-09-06|1995-08-29|1995-09-16|NONE|MAIL| instructions above the unusual dep| +60938|295730|20741|4|38|65577.36|0.07|0.07|N|O|1995-06-19|1995-09-01|1995-06-20|TAKE BACK RETURN|MAIL|hely special courts wake furiously | +60939|211017|23522|1|16|14848.00|0.05|0.07|R|F|1992-04-26|1992-05-21|1992-05-18|NONE|AIR|ithely carefully even accounts. fur| +60939|554073|29096|2|40|45082.00|0.05|0.07|A|F|1992-06-24|1992-05-14|1992-07-12|DELIVER IN PERSON|REG AIR| courts are across the | +60939|303309|15816|3|28|36744.12|0.08|0.06|A|F|1992-05-25|1992-05-17|1992-06-06|COLLECT COD|SHIP|n courts. regular tith| +60939|707574|45117|4|49|77495.46|0.06|0.06|R|F|1992-05-10|1992-05-03|1992-06-06|NONE|TRUCK|ith the even packages. quickly u| +60939|191499|29009|5|40|63619.60|0.03|0.04|R|F|1992-04-16|1992-05-30|1992-04-29|NONE|REG AIR| furiously. theodolites sleep slyly | +60940|280226|5237|1|11|13268.31|0.10|0.07|A|F|1995-02-20|1995-03-20|1995-03-18|DELIVER IN PERSON|TRUCK|le blithely. requests above the final depos| +60940|754599|17115|2|7|11574.92|0.01|0.05|R|F|1995-04-18|1995-03-19|1995-05-17|DELIVER IN PERSON|SHIP|foxes. bold ideas| +60941|800556|557|1|1|1456.51|0.10|0.07|N|O|1995-09-26|1995-08-18|1995-09-28|COLLECT COD|SHIP|usly quick ac| +60941|931626|31627|2|6|9945.48|0.09|0.01|N|O|1995-08-06|1995-09-15|1995-08-26|NONE|REG AIR|t the carefully pending foxes. sl| +60941|835090|10123|3|32|32801.60|0.07|0.05|N|O|1995-10-23|1995-09-03|1995-11-05|COLLECT COD|MAIL|uriously u| +60941|351661|14169|4|49|83919.85|0.00|0.07|N|O|1995-08-13|1995-09-07|1995-09-07|COLLECT COD|REG AIR|y accounts. fluffil| +60941|353907|28922|5|3|5882.67|0.03|0.02|N|O|1995-10-01|1995-09-25|1995-10-08|DELIVER IN PERSON|MAIL|ever even packages. regular accounts| +60942|973114|10672|1|18|21367.26|0.04|0.06|A|F|1994-06-11|1994-05-29|1994-07-03|NONE|REG AIR|eodolites on the fluffi| +60942|118275|30778|2|14|18105.78|0.06|0.01|A|F|1994-06-07|1994-05-31|1994-06-12|TAKE BACK RETURN|AIR| unusual a| +60942|834587|9620|3|4|6086.16|0.00|0.08|R|F|1994-05-15|1994-05-10|1994-05-28|TAKE BACK RETURN|RAIL|es about the quick| +60942|889188|26740|4|49|57679.86|0.00|0.07|A|F|1994-06-20|1994-06-03|1994-07-19|COLLECT COD|TRUCK|eposits. bold, ev| +60942|568957|43980|5|6|12155.58|0.01|0.08|A|F|1994-06-14|1994-04-23|1994-07-13|NONE|REG AIR|riously final dolphins-- even de| +60942|450091|92|6|37|38519.59|0.07|0.07|R|F|1994-05-16|1994-06-08|1994-05-23|TAKE BACK RETURN|MAIL|encies use blith| +60942|674482|12022|7|41|59714.45|0.04|0.00|A|F|1994-06-11|1994-04-29|1994-07-09|COLLECT COD|SHIP|inal instructions sleep flu| +60943|12947|37948|1|21|39058.74|0.09|0.05|N|O|1998-06-11|1998-07-31|1998-06-22|NONE|MAIL|ly express deposi| +60943|586159|11182|2|4|4980.52|0.06|0.06|N|O|1998-09-03|1998-08-08|1998-09-11|COLLECT COD|FOB|yly according to the blithely regula| +60968|36406|23907|1|33|44299.20|0.02|0.07|N|O|1998-08-03|1998-10-15|1998-08-12|COLLECT COD|TRUCK| bold packages sleep ironic | +60968|869611|7163|2|48|75867.36|0.10|0.06|N|O|1998-10-05|1998-10-01|1998-10-24|COLLECT COD|SHIP|. slyly special asymptotes wake quic| +60968|545145|20166|3|27|32133.24|0.02|0.06|N|O|1998-09-29|1998-10-15|1998-10-14|TAKE BACK RETURN|FOB|lites sleep quickly above the regular| +60968|248370|35883|4|36|47460.96|0.05|0.06|N|O|1998-08-11|1998-10-10|1998-08-15|DELIVER IN PERSON|TRUCK|accounts haggle doggedly| +60968|353194|40716|5|32|39909.76|0.06|0.08|N|O|1998-10-30|1998-10-15|1998-11-13|COLLECT COD|TRUCK|nusual deposits sleep furiously deposits| +60968|127080|27081|6|9|9963.72|0.01|0.00|N|O|1998-10-04|1998-09-30|1998-10-07|COLLECT COD|RAIL|al theodolites haggle s| +60968|826948|1981|7|33|61871.70|0.10|0.00|N|O|1998-10-01|1998-10-15|1998-10-13|TAKE BACK RETURN|TRUCK|sts wake carefully unusual instruct| +60969|511805|24316|1|4|7267.12|0.04|0.02|N|O|1996-04-02|1996-05-02|1996-04-04|DELIVER IN PERSON|AIR| about the fluffily final i| +60969|895554|33106|2|47|72826.97|0.10|0.03|N|O|1996-06-20|1996-05-02|1996-07-11|DELIVER IN PERSON|SHIP| final ideas. s| +60969|563141|38164|3|47|56593.64|0.02|0.01|N|O|1996-03-23|1996-05-07|1996-04-17|TAKE BACK RETURN|MAIL| packages are requests. | +60969|710267|47810|4|16|20435.68|0.07|0.03|N|O|1996-03-30|1996-05-25|1996-04-21|TAKE BACK RETURN|REG AIR| the caref| +60969|455736|5737|5|16|27067.36|0.03|0.08|N|O|1996-04-13|1996-06-03|1996-04-18|TAKE BACK RETURN|REG AIR|y. pinto beans| +60969|545370|45371|6|7|9907.45|0.08|0.00|N|O|1996-03-21|1996-04-18|1996-04-17|COLLECT COD|TRUCK| pending asympt| +60969|30080|17581|7|29|29292.32|0.03|0.07|N|O|1996-03-18|1996-04-10|1996-04-12|DELIVER IN PERSON|SHIP|gular requests sleep slyly | +60970|543963|31494|1|12|24083.28|0.09|0.05|N|O|1996-05-05|1996-02-09|1996-05-25|COLLECT COD|AIR|ing to the final, fina| +60970|374370|24371|2|50|72218.00|0.05|0.07|N|O|1996-02-19|1996-02-20|1996-03-14|NONE|AIR|ful instructions. carefully ir| +60970|29344|16845|3|45|57300.30|0.10|0.03|N|O|1996-05-09|1996-02-12|1996-05-25|TAKE BACK RETURN|AIR|y furiously even pi| +60970|173690|48697|4|50|88184.50|0.06|0.00|N|O|1996-02-05|1996-03-16|1996-03-05|DELIVER IN PERSON|SHIP|d packages wake furio| +60970|193347|18354|5|45|64815.30|0.07|0.05|N|O|1996-02-25|1996-03-01|1996-02-26|TAKE BACK RETURN|RAIL|ly final a| +60970|568741|43764|6|1|1809.72|0.10|0.05|N|O|1996-04-06|1996-03-06|1996-04-25|NONE|SHIP|sts cajole furiously silent pinto beans. | +60971|158333|45843|1|28|38957.24|0.08|0.00|R|F|1993-08-09|1993-08-01|1993-09-01|DELIVER IN PERSON|MAIL| slyly furiously regula| +60971|87382|37383|2|45|61622.10|0.04|0.05|A|F|1993-10-12|1993-08-11|1993-11-05|COLLECT COD|AIR| theodolites. careful| +60971|617425|29938|3|14|18793.46|0.05|0.05|A|F|1993-08-07|1993-08-16|1993-08-19|NONE|SHIP|r the blithely regular | +60971|54362|4363|4|9|11847.24|0.10|0.00|R|F|1993-07-11|1993-08-31|1993-07-31|DELIVER IN PERSON|SHIP|usual, even instructions. ironic | +60971|660577|23091|5|41|63039.14|0.10|0.05|R|F|1993-09-24|1993-08-02|1993-10-24|COLLECT COD|MAIL|es. carefu| +60971|307723|7724|6|19|32883.49|0.05|0.03|A|F|1993-07-04|1993-09-06|1993-07-08|TAKE BACK RETURN|REG AIR|ldly even accounts. careful| +60971|889205|39206|7|47|56125.52|0.08|0.01|A|F|1993-10-01|1993-08-29|1993-10-09|NONE|TRUCK|dolites. foxes cajole quickly| +60972|856466|31501|1|15|21336.30|0.05|0.01|R|F|1992-04-21|1992-03-27|1992-05-05|DELIVER IN PERSON|MAIL|ar pinto beans nag carefully alongsi| +60972|622276|22277|2|30|35947.20|0.02|0.06|R|F|1992-04-16|1992-04-06|1992-05-15|COLLECT COD|TRUCK|as. slyly express deposits| +60972|591598|41599|3|4|6758.28|0.00|0.00|R|F|1992-06-17|1992-05-13|1992-07-04|TAKE BACK RETURN|RAIL|e quietly ruthless theodolit| +60972|984193|34194|4|14|17880.10|0.02|0.07|R|F|1992-05-01|1992-04-01|1992-05-10|NONE|SHIP|hely express, quick packa| +60972|323393|48406|5|32|45324.16|0.10|0.04|R|F|1992-06-12|1992-05-11|1992-06-30|TAKE BACK RETURN|AIR|old foxes.| +60972|257769|7770|6|31|53529.25|0.01|0.01|A|F|1992-05-18|1992-05-16|1992-06-01|DELIVER IN PERSON|MAIL|even deposits. blithely silent forges bo| +60973|763382|38413|1|6|8672.10|0.01|0.01|R|F|1992-05-06|1992-03-10|1992-06-04|DELIVER IN PERSON|SHIP|ven deposits wake about| +60973|152412|39922|2|13|19037.33|0.10|0.06|A|F|1992-05-15|1992-03-18|1992-05-20|NONE|RAIL|sts are carefully among the quietly unu| +60973|576865|39377|3|38|73789.92|0.01|0.04|R|F|1992-05-02|1992-03-06|1992-05-20|DELIVER IN PERSON|AIR|nding instructions integrate carefully aro| +60973|368725|6247|4|8|14349.68|0.07|0.06|R|F|1992-03-02|1992-03-01|1992-03-09|DELIVER IN PERSON|SHIP|egular deposits use. expr| +60974|319819|7338|1|32|58841.60|0.00|0.08|N|O|1998-07-22|1998-05-20|1998-08-10|COLLECT COD|RAIL|e regular accounts| +60974|193382|43383|2|27|39835.26|0.08|0.03|N|O|1998-06-30|1998-05-05|1998-07-26|TAKE BACK RETURN|FOB|? furiously regular requests cajole ent| +60974|170722|20723|3|25|44818.00|0.06|0.04|N|O|1998-04-07|1998-05-22|1998-04-23|NONE|MAIL|y final packages are care| +60974|312373|24880|4|46|63726.56|0.06|0.02|N|O|1998-06-08|1998-04-28|1998-06-18|TAKE BACK RETURN|RAIL|usly regular deposits boost. carefully p| +60974|52900|27903|5|33|61145.70|0.08|0.08|N|O|1998-04-06|1998-05-21|1998-04-20|DELIVER IN PERSON|TRUCK|ss deposits abo| +60974|79579|4582|6|34|52991.38|0.04|0.03|N|O|1998-06-28|1998-06-01|1998-07-14|NONE|REG AIR|thely carefully silent depos| +60975|738097|38098|1|40|45402.40|0.06|0.08|R|F|1993-08-18|1993-10-26|1993-09-17|DELIVER IN PERSON|MAIL|e of the bold requests. slyly| +61000|345720|8227|1|17|30017.07|0.09|0.02|R|F|1994-09-27|1994-11-19|1994-10-13|NONE|FOB|ourts use. regular deposits a| +61000|506418|6419|2|48|68370.72|0.02|0.05|A|F|1994-12-25|1994-11-11|1995-01-21|TAKE BACK RETURN|SHIP| cajole quickly. blithely expr| +61000|366352|3874|3|4|5673.36|0.05|0.03|R|F|1994-10-23|1994-10-17|1994-11-04|COLLECT COD|FOB|, unusual ac| +61001|673108|48135|1|44|47567.08|0.07|0.06|N|O|1997-01-17|1997-02-06|1997-02-07|COLLECT COD|RAIL|ies sleep. carefully sil| +61001|918153|18154|2|19|22251.09|0.05|0.05|N|O|1997-03-18|1997-02-02|1997-04-13|DELIVER IN PERSON|TRUCK|ular ideas are blithely after the blithel| +61001|384817|47325|3|12|22821.60|0.07|0.04|N|O|1996-12-22|1997-02-06|1996-12-26|COLLECT COD|SHIP|ly daring foxes cajole furiousl| +61001|605861|43398|4|9|15901.47|0.04|0.06|N|O|1997-03-18|1996-12-30|1997-03-22|DELIVER IN PERSON|AIR|uriously ironic accounts cajol| +61001|703684|3685|5|47|79319.55|0.04|0.08|N|O|1997-01-11|1997-01-05|1997-01-26|DELIVER IN PERSON|FOB|gle fluffy requests.| +61002|975876|13434|1|40|78073.20|0.05|0.08|N|O|1998-06-01|1998-04-23|1998-06-21|NONE|AIR|are furiously regular| +61002|537723|12744|2|3|5282.10|0.02|0.07|N|O|1998-07-17|1998-04-26|1998-07-30|DELIVER IN PERSON|TRUCK| regular re| +61002|502110|39641|3|8|8896.72|0.07|0.08|N|O|1998-05-31|1998-05-02|1998-06-26|COLLECT COD|TRUCK|ag slyly carefully final requests. depos| +61003|158853|8854|1|30|57355.50|0.08|0.01|N|O|1996-08-21|1996-10-11|1996-09-03|COLLECT COD|AIR| packages are quickly across the even pin| +61003|840260|15293|2|32|38407.04|0.08|0.03|N|O|1996-10-18|1996-09-27|1996-10-26|NONE|REG AIR|quickly final packages sleep| +61003|243542|6047|3|46|68334.38|0.07|0.03|N|O|1996-09-07|1996-09-03|1996-09-17|TAKE BACK RETURN|MAIL| ironic theodolites. final, special account| +61003|201415|13920|4|31|40808.40|0.08|0.00|N|O|1996-11-06|1996-09-10|1996-11-09|TAKE BACK RETURN|SHIP|ackages cajole according to the careful| +61003|171068|8578|5|39|44423.34|0.03|0.01|N|O|1996-08-27|1996-10-04|1996-09-16|DELIVER IN PERSON|FOB|deas haggle slyly. ironic ideas sleep c| +61004|755482|43028|1|20|30749.00|0.00|0.02|N|O|1995-08-29|1995-07-26|1995-09-19|DELIVER IN PERSON|SHIP|ccounts cajole carefully. fluffily| +61004|380922|5937|2|29|58084.39|0.00|0.08|N|O|1995-09-24|1995-08-19|1995-09-25|TAKE BACK RETURN|TRUCK|ic instructions. furiously even accounts a| +61004|143847|6350|3|19|35925.96|0.02|0.06|N|O|1995-07-28|1995-07-28|1995-08-19|DELIVER IN PERSON|TRUCK|dependencies? pending, unusual packages | +61004|629234|41747|4|22|25590.40|0.08|0.01|N|O|1995-09-09|1995-07-19|1995-09-28|NONE|RAIL|y fluffily final f| +61004|527322|27323|5|24|32383.20|0.08|0.04|N|O|1995-09-18|1995-08-14|1995-10-03|DELIVER IN PERSON|REG AIR|ly final dolphins| +61004|698212|10726|6|16|19362.88|0.10|0.07|N|O|1995-09-24|1995-08-13|1995-10-09|COLLECT COD|TRUCK|egular, ironic packages mold along the| +61005|624070|24071|1|35|34791.40|0.07|0.08|A|F|1992-07-06|1992-09-25|1992-08-02|DELIVER IN PERSON|RAIL|lent ideas. slyly ironic | +61005|736198|36199|2|35|43195.60|0.02|0.06|R|F|1992-08-25|1992-08-28|1992-08-28|COLLECT COD|FOB|y. quickly even foxes | +61005|268188|30694|3|28|32372.76|0.06|0.01|R|F|1992-07-10|1992-08-09|1992-07-20|COLLECT COD|TRUCK|hely silent packages haggle caref| +61005|430337|17862|4|2|2534.62|0.01|0.05|R|F|1992-08-09|1992-07-29|1992-08-16|COLLECT COD|TRUCK|out the carefully ironic orbits. slyly| +61005|670045|45072|5|42|42630.42|0.06|0.08|A|F|1992-09-01|1992-07-30|1992-10-01|DELIVER IN PERSON|AIR|ress packa| +61005|433838|33839|6|18|31892.58|0.08|0.00|R|F|1992-10-16|1992-08-14|1992-10-22|NONE|FOB|ithely iro| +61005|511545|36566|7|23|35799.96|0.02|0.07|A|F|1992-10-04|1992-08-29|1992-10-25|TAKE BACK RETURN|MAIL| theodolites wake final instructi| +61006|536391|11412|1|13|18555.81|0.06|0.05|N|F|1995-05-22|1995-05-04|1995-06-20|NONE|SHIP|al pains! carefully f| +61006|119750|44755|2|37|65480.75|0.03|0.07|R|F|1995-03-22|1995-04-18|1995-04-16|TAKE BACK RETURN|MAIL|around the furiously| +61006|635490|23027|3|29|41338.34|0.09|0.04|N|F|1995-06-06|1995-03-24|1995-06-24|COLLECT COD|FOB|y regular instructions. unusual, even dep| +61006|670657|8197|4|4|6510.48|0.05|0.00|A|F|1995-03-22|1995-04-26|1995-04-18|DELIVER IN PERSON|SHIP|ajole. regular, | +61006|718408|30923|5|36|51349.32|0.03|0.07|R|F|1995-04-17|1995-04-07|1995-04-30|DELIVER IN PERSON|FOB|uests are slyly care| +61006|266642|16643|6|49|78822.87|0.10|0.04|A|F|1995-03-08|1995-04-29|1995-03-27|NONE|AIR|, regular multipli| +61006|445445|7954|7|14|19465.88|0.02|0.08|A|F|1995-02-27|1995-04-29|1995-03-07|NONE|AIR|ronic acco| +61007|588910|38911|1|13|25985.57|0.10|0.06|A|F|1993-09-02|1993-07-29|1993-09-22|NONE|FOB|ep furiously among the final | +61007|800035|12552|2|26|29510.00|0.03|0.01|A|F|1993-09-02|1993-08-30|1993-10-02|TAKE BACK RETURN|MAIL|x quickly. slyly final p| +61032|812048|24565|1|25|24000.00|0.10|0.02|N|O|1997-12-14|1998-01-02|1997-12-22|NONE|MAIL|ely regular attainments boo| +61032|84940|22444|2|5|9624.70|0.04|0.07|N|O|1998-01-01|1997-12-07|1998-01-15|COLLECT COD|SHIP|deas use blithely bl| +61033|209855|22360|1|10|17648.40|0.00|0.02|R|F|1994-09-26|1994-08-10|1994-10-15|DELIVER IN PERSON|MAIL|atelets. blithely even ac| +61033|25153|154|2|50|53907.50|0.06|0.05|A|F|1994-09-09|1994-07-19|1994-09-30|TAKE BACK RETURN|TRUCK|posits cajole. blit| +61033|743614|6129|3|50|82879.00|0.07|0.04|A|F|1994-07-26|1994-08-26|1994-08-13|NONE|REG AIR|al requests wake care| +61033|904050|16569|4|30|31620.30|0.03|0.01|R|F|1994-07-23|1994-08-02|1994-07-27|COLLECT COD|AIR|must are fluffily express somas. care| +61034|166636|29140|1|50|85131.50|0.08|0.03|N|O|1996-04-27|1996-05-12|1996-04-28|DELIVER IN PERSON|FOB|g ideas according to the f| +61034|634809|22346|2|36|62775.72|0.10|0.01|N|O|1996-05-15|1996-03-14|1996-06-10|COLLECT COD|REG AIR|ke carefully along the bli| +61034|231275|43780|3|28|33775.28|0.06|0.05|N|O|1996-02-29|1996-04-08|1996-03-10|COLLECT COD|TRUCK|ly final accounts haggle furiously fluff| +61034|36519|24020|4|7|10188.57|0.10|0.01|N|O|1996-04-20|1996-04-20|1996-05-04|NONE|AIR|al packages. final, silent deposits boost | +61035|981176|31177|1|13|16342.69|0.03|0.07|N|O|1996-03-03|1996-01-04|1996-03-20|COLLECT COD|SHIP| blithely bold accounts a| +61035|610625|48162|2|37|56816.83|0.06|0.05|N|O|1996-01-01|1995-12-23|1996-01-05|DELIVER IN PERSON|SHIP|al requests. carefully ironic excu| +61035|774266|36782|3|11|14742.53|0.07|0.00|N|O|1996-03-15|1996-02-09|1996-04-13|COLLECT COD|TRUCK|al accounts cajole stealthily acros| +61035|85756|35757|4|45|78378.75|0.07|0.04|N|O|1996-03-10|1996-01-06|1996-03-16|COLLECT COD|TRUCK|ests kindle blit| +61035|285404|47910|5|4|5557.56|0.06|0.03|N|O|1996-02-01|1996-01-28|1996-02-21|TAKE BACK RETURN|AIR|ithely fluff| +61035|768368|18369|6|18|25853.94|0.02|0.06|N|O|1995-11-18|1996-01-05|1995-12-05|DELIVER IN PERSON|FOB|ss accounts wake| +61035|949481|24518|7|50|76522.00|0.03|0.00|N|O|1995-12-11|1996-02-11|1995-12-24|DELIVER IN PERSON|RAIL|press dependencies are blithely upon | +61036|910657|35694|1|27|45025.47|0.10|0.05|N|O|1997-03-07|1997-01-03|1997-03-25|NONE|MAIL|excuses. instruc| +61036|398758|48759|2|47|87266.78|0.05|0.02|N|O|1997-01-08|1997-02-12|1997-01-20|NONE|FOB|ts affix carefully accounts. reg| +61036|909012|46567|3|36|36754.92|0.02|0.02|N|O|1997-01-15|1997-01-26|1997-01-18|TAKE BACK RETURN|TRUCK|affix along the Tiresias| +61036|756115|6116|4|35|40987.80|0.05|0.04|N|O|1997-02-19|1997-02-25|1997-03-04|COLLECT COD|TRUCK| haggle across the final deposits. | +61036|19744|32245|5|37|61558.38|0.05|0.00|N|O|1996-12-09|1997-02-07|1996-12-17|TAKE BACK RETURN|MAIL|ans. quickly final instructions ha| +61036|825386|12935|6|23|30160.82|0.08|0.07|N|O|1997-02-02|1997-02-12|1997-02-28|DELIVER IN PERSON|RAIL|unusual accounts| +61037|336053|11066|1|46|50095.84|0.09|0.07|A|F|1992-08-05|1992-08-23|1992-08-19|COLLECT COD|TRUCK|tealthily regular platelets haggle slyl| +61037|38991|26492|2|47|90709.53|0.02|0.01|A|F|1992-07-27|1992-08-19|1992-08-05|NONE|FOB|posits. re| +61037|316119|3638|3|3|3405.30|0.00|0.00|R|F|1992-09-15|1992-09-26|1992-09-25|TAKE BACK RETURN|FOB|es on the blithely unusu| +61037|5389|17890|4|48|62130.24|0.06|0.02|R|F|1992-09-24|1992-09-24|1992-10-06|DELIVER IN PERSON|REG AIR|to the slyly ironic pearl| +61037|562261|37284|5|36|47636.64|0.08|0.00|R|F|1992-07-21|1992-08-27|1992-08-17|DELIVER IN PERSON|AIR|p fluffily. blithely expr| +61038|520093|7624|1|37|41183.59|0.03|0.04|R|F|1992-12-26|1993-03-05|1993-01-23|NONE|SHIP|, ironic reques| +61038|195707|33217|2|41|73910.70|0.02|0.01|R|F|1993-04-08|1993-03-19|1993-04-15|COLLECT COD|TRUCK|sly. pendin| +61038|240575|28088|3|47|71231.32|0.01|0.04|R|F|1992-12-29|1993-03-11|1993-01-25|NONE|TRUCK|packages cajole never along the furio| +61038|342269|4776|4|5|6556.25|0.10|0.04|R|F|1993-02-07|1993-03-14|1993-02-19|NONE|FOB|eans. quickly ironic packages hinder blit| +61038|514118|1649|5|7|7924.63|0.03|0.02|A|F|1993-02-25|1993-02-08|1993-03-13|TAKE BACK RETURN|AIR|et pinto beans | +61039|294023|44024|1|41|41697.41|0.05|0.08|A|F|1994-11-29|1995-01-10|1994-12-15|TAKE BACK RETURN|MAIL|y across the carefully final requests? e| +61039|631990|7015|2|17|32673.32|0.01|0.04|A|F|1994-11-17|1994-12-14|1994-12-09|TAKE BACK RETURN|AIR|ess ideas. pending pinto beans are | +61039|842069|4586|3|18|18198.36|0.05|0.02|A|F|1995-02-05|1994-12-26|1995-02-27|DELIVER IN PERSON|SHIP| final accounts. blithely ironic pinto be| +61039|653205|40745|4|34|39377.78|0.10|0.06|A|F|1995-01-07|1994-12-10|1995-01-28|NONE|RAIL|arly above the unusual shea| +61064|999775|37333|1|46|86237.58|0.05|0.07|N|O|1998-03-23|1998-04-29|1998-04-07|NONE|SHIP| deposits hagg| +61064|213368|38377|2|30|38440.50|0.06|0.01|N|O|1998-06-03|1998-04-22|1998-06-07|COLLECT COD|RAIL|ckages across the even theo| +61065|403337|15846|1|3|3720.93|0.10|0.02|A|F|1993-12-08|1993-12-17|1994-01-06|DELIVER IN PERSON|REG AIR|rhorses. furiously even theodol| +61065|884038|46556|2|12|12263.88|0.00|0.01|R|F|1993-10-05|1993-10-29|1993-11-03|TAKE BACK RETURN|RAIL|nic requests? platelets in place of| +61066|975764|803|1|39|71749.08|0.07|0.05|A|F|1993-07-06|1993-06-29|1993-07-26|COLLECT COD|TRUCK|ackages according to| +61066|657117|32144|2|1|1074.08|0.06|0.04|R|F|1993-07-28|1993-07-15|1993-08-13|COLLECT COD|RAIL|ically. foxes shou| +61067|760979|36010|1|17|34678.98|0.07|0.05|A|F|1993-11-15|1993-12-05|1993-12-13|DELIVER IN PERSON|TRUCK|ct enticingly doggedly re| +61068|388471|979|1|27|42105.42|0.03|0.06|A|F|1993-11-11|1993-12-08|1993-11-23|TAKE BACK RETURN|TRUCK|quests. blithely ironic deposits are| +61069|501782|14293|1|18|32107.68|0.10|0.05|N|O|1997-07-29|1997-05-17|1997-08-12|TAKE BACK RETURN|RAIL|ions use alongside of t| +61069|434372|21897|2|41|53560.35|0.05|0.02|N|O|1997-04-27|1997-06-27|1997-05-11|COLLECT COD|REG AIR|nto beans beli| +61070|695022|32562|1|15|15254.85|0.01|0.05|N|O|1995-09-12|1995-09-02|1995-09-24|COLLECT COD|SHIP|s accounts wa| +61070|218293|43302|2|8|9690.24|0.00|0.05|N|O|1995-08-08|1995-09-04|1995-08-30|DELIVER IN PERSON|FOB|hely regular deposits. | +61070|846360|33909|3|49|64009.68|0.00|0.04|N|O|1995-07-28|1995-09-10|1995-08-26|NONE|RAIL|encies cajole slyly qu| +61071|736781|36782|1|33|59985.75|0.05|0.00|N|O|1998-01-13|1998-02-12|1998-01-31|NONE|RAIL|t regular packages. pending deposits | +61071|69604|32106|2|15|23604.00|0.03|0.03|N|O|1998-02-10|1998-02-15|1998-02-21|DELIVER IN PERSON|AIR| beans thrash above th| +61071|831621|31622|3|42|65208.36|0.06|0.01|N|O|1998-02-20|1998-03-17|1998-02-22|DELIVER IN PERSON|SHIP|s are. express, final packages haggle | +61071|40138|2639|4|27|29109.51|0.08|0.01|N|O|1998-04-08|1998-03-30|1998-05-07|DELIVER IN PERSON|TRUCK|uffily regular requests-- furiously expr| +61071|595754|33288|5|35|64740.55|0.10|0.07|N|O|1998-03-15|1998-03-30|1998-03-17|NONE|MAIL| special multip| +61071|823457|48490|6|10|13804.10|0.04|0.08|N|O|1998-02-10|1998-02-23|1998-02-24|COLLECT COD|SHIP|r dolphins wake furiously pendi| +61071|825063|12612|7|29|28652.58|0.04|0.01|N|O|1998-02-06|1998-03-30|1998-02-21|TAKE BACK RETURN|FOB|ely silent accounts. a| +61096|821223|21224|1|1|1144.18|0.04|0.01|N|O|1998-02-23|1998-03-14|1998-03-18|NONE|MAIL| beans cajole furiously. final de| +61097|459231|21741|1|50|59510.50|0.04|0.05|N|O|1998-05-15|1998-07-02|1998-05-21|TAKE BACK RETURN|RAIL|s alongside of the even deposits w| +61097|292078|42079|2|49|52432.94|0.08|0.01|N|O|1998-05-20|1998-07-12|1998-06-12|COLLECT COD|REG AIR| carefully specia| +61097|946943|21980|3|31|61686.90|0.01|0.00|N|O|1998-07-24|1998-07-01|1998-08-07|COLLECT COD|SHIP|nts. slyly final theo| +61097|260505|10506|4|34|49826.66|0.02|0.06|N|O|1998-07-22|1998-07-20|1998-07-29|NONE|AIR|carefully pend| +61097|303071|3072|5|30|32221.80|0.09|0.03|N|O|1998-07-23|1998-07-19|1998-08-15|NONE|MAIL|inal, ironic accounts are slowly blithely | +61098|984940|22498|1|48|97195.20|0.04|0.05|R|F|1992-06-18|1992-08-17|1992-07-06|TAKE BACK RETURN|REG AIR|tes wake across the carefully bol| +61098|886328|48846|2|32|42056.96|0.08|0.03|A|F|1992-06-17|1992-08-10|1992-07-13|TAKE BACK RETURN|REG AIR|dogged excuses haggle blithely fur| +61098|504523|17034|3|31|47352.50|0.01|0.01|R|F|1992-10-05|1992-07-28|1992-10-16|NONE|FOB|onic dependenci| +61098|512567|37588|4|41|64761.14|0.05|0.02|R|F|1992-09-01|1992-08-03|1992-09-10|COLLECT COD|REG AIR|hily special deposits play about the frets.| +61099|668940|6480|1|34|64902.94|0.03|0.00|N|O|1997-02-13|1997-01-29|1997-02-26|COLLECT COD|FOB|al packages| +61099|866161|41196|2|26|29305.12|0.09|0.04|N|O|1996-12-15|1997-01-04|1996-12-26|DELIVER IN PERSON|FOB| silently even instructions grow quick| +61099|554527|29550|3|11|17396.50|0.09|0.03|N|O|1997-02-21|1997-02-11|1997-02-24|NONE|REG AIR|ts. ironic requests inside the accounts| +61100|671625|34139|1|32|51090.88|0.08|0.03|A|F|1992-07-27|1992-07-30|1992-08-10|NONE|MAIL| boost quickly final, final co| +61100|990243|2763|2|35|46662.00|0.04|0.04|A|F|1992-07-29|1992-08-15|1992-08-02|NONE|AIR|e instructions! dependencies | +61101|321968|34475|1|13|25869.35|0.02|0.01|A|F|1994-10-31|1994-10-28|1994-11-14|DELIVER IN PERSON|MAIL|y ironic instructions. pend| +61101|308461|8462|2|26|38205.70|0.02|0.06|R|F|1994-10-04|1994-10-03|1994-11-03|TAKE BACK RETURN|SHIP|blithely. | +61101|292544|17555|3|19|29194.07|0.03|0.00|A|F|1994-09-02|1994-10-06|1994-09-09|COLLECT COD|SHIP|r the deposits| +61101|784645|22191|4|32|55347.52|0.01|0.03|R|F|1994-11-01|1994-09-25|1994-11-21|NONE|REG AIR|he furiously even pa| +61101|515366|15367|5|12|16576.08|0.00|0.08|R|F|1994-12-22|1994-10-30|1995-01-14|TAKE BACK RETURN|TRUCK|lly pending deposits sleep quic| +61101|741772|29315|6|40|72549.60|0.08|0.00|R|F|1994-09-19|1994-10-08|1994-10-09|DELIVER IN PERSON|AIR| requests about the furiousl| +61102|907314|19833|1|7|9248.89|0.05|0.06|N|O|1998-05-02|1998-06-21|1998-05-21|DELIVER IN PERSON|RAIL|to the quickly final | +61103|663489|13490|1|21|30501.45|0.06|0.00|N|O|1996-07-09|1996-06-09|1996-07-22|COLLECT COD|RAIL|even packages among the slyly final package| +61128|566711|16712|1|22|39109.18|0.07|0.03|A|F|1992-08-19|1992-06-10|1992-08-20|NONE|MAIL|lar pinto beans could sleep carefull| +61128|696703|21730|2|25|42491.75|0.00|0.08|A|F|1992-07-18|1992-07-16|1992-08-02|TAKE BACK RETURN|AIR|ickly bold requests are according to | +61128|484392|21920|3|24|33032.88|0.00|0.05|R|F|1992-06-11|1992-08-05|1992-07-02|TAKE BACK RETURN|REG AIR| courts haggle | +61128|167370|42377|4|36|51745.32|0.10|0.05|A|F|1992-06-23|1992-06-12|1992-07-14|COLLECT COD|AIR|osits. unusual, regu| +61129|876325|1360|1|39|50749.92|0.02|0.07|A|F|1994-08-25|1994-07-17|1994-09-22|TAKE BACK RETURN|MAIL|usly fluffily final deposits. blithely bo| +61129|377887|40395|2|18|35367.66|0.07|0.05|R|F|1994-07-18|1994-08-21|1994-08-16|COLLECT COD|AIR|ruthless pearls. fu| +61129|145417|32924|3|34|49721.94|0.07|0.03|R|F|1994-07-14|1994-07-29|1994-07-15|DELIVER IN PERSON|FOB|sly deposits. furiously regular | +61129|16464|28965|4|43|59359.78|0.00|0.01|A|F|1994-05-29|1994-08-15|1994-06-21|DELIVER IN PERSON|SHIP|hely ironic ideas use| +61129|703070|15585|5|46|49359.84|0.02|0.04|R|F|1994-06-08|1994-08-16|1994-07-04|DELIVER IN PERSON|AIR|t the fluffily | +61129|490418|27946|6|46|64785.94|0.04|0.02|R|F|1994-09-10|1994-07-11|1994-09-12|COLLECT COD|AIR|ept the accounts n| +61129|444219|19236|7|1|1163.19|0.10|0.00|R|F|1994-06-30|1994-07-13|1994-07-30|COLLECT COD|RAIL| blithely regula| +61130|986384|36385|1|48|70576.32|0.03|0.04|R|F|1994-11-04|1994-11-27|1994-12-03|COLLECT COD|TRUCK|ove the express, express packa| +61130|149638|24643|2|29|48941.27|0.08|0.08|R|F|1994-11-02|1994-11-02|1994-11-30|TAKE BACK RETURN|TRUCK|pecial requests boost around the s| +61130|955325|30364|3|47|64873.16|0.08|0.03|A|F|1995-01-02|1994-12-01|1995-01-05|COLLECT COD|REG AIR| slyly final courts since| +61131|388128|636|1|17|20673.87|0.10|0.07|A|F|1992-08-23|1992-10-12|1992-09-07|DELIVER IN PERSON|RAIL|ackages use accounts. slyly| +61132|128682|28683|1|23|39345.64|0.09|0.06|A|F|1993-03-08|1993-04-30|1993-03-17|TAKE BACK RETURN|RAIL|y special packages are slyly. car| +61132|751208|13724|2|34|42811.78|0.02|0.04|R|F|1993-04-17|1993-05-05|1993-04-20|COLLECT COD|AIR|ounts. carefu| +61132|547499|47500|3|8|12371.76|0.09|0.05|R|F|1993-04-05|1993-04-14|1993-04-13|COLLECT COD|SHIP|sts. slyly express theodolites sleep p| +61132|813758|1307|4|12|20060.52|0.01|0.02|A|F|1993-04-15|1993-04-13|1993-05-02|TAKE BACK RETURN|REG AIR| furiously express accounts. accounts slee| +61132|829684|17233|5|17|27431.88|0.06|0.08|A|F|1993-05-30|1993-03-20|1993-06-04|COLLECT COD|TRUCK|ctions cajole carefully ironic courts. dep| +61132|494878|44879|6|27|50566.95|0.06|0.07|R|F|1993-06-02|1993-04-02|1993-06-13|TAKE BACK RETURN|AIR|ly unusual deposits was fur| +61132|410623|35640|7|49|75146.40|0.06|0.01|R|F|1993-06-09|1993-04-06|1993-06-16|TAKE BACK RETURN|AIR|braids are reque| +61133|339982|27501|1|16|32351.52|0.10|0.07|R|F|1992-07-16|1992-07-15|1992-07-31|COLLECT COD|REG AIR| deposits after the furious| +61133|71321|46324|2|1|1292.32|0.06|0.01|A|F|1992-09-26|1992-07-18|1992-10-25|NONE|REG AIR|he deposits use furiously about t| +61133|680729|5756|3|44|75226.36|0.06|0.00|R|F|1992-07-25|1992-07-07|1992-08-06|NONE|TRUCK|r the ironic warh| +61133|5600|43101|4|1|1505.60|0.09|0.08|A|F|1992-06-08|1992-08-20|1992-07-07|DELIVER IN PERSON|FOB|equests at the | +61134|474233|36743|1|12|14486.52|0.00|0.00|N|O|1998-02-27|1998-02-12|1998-03-02|DELIVER IN PERSON|AIR|lly around the slyly regular dependencies.| +61134|430280|30281|2|28|33887.28|0.05|0.04|N|O|1998-02-12|1998-03-01|1998-03-04|COLLECT COD|SHIP|efully ironic dependencie| +61134|704044|29073|3|9|9432.09|0.06|0.04|N|O|1998-03-10|1998-01-29|1998-03-12|NONE|FOB|ole grouches;| +61134|856186|31221|4|25|28553.50|0.06|0.06|N|O|1998-02-22|1998-02-25|1998-03-03|COLLECT COD|AIR|ut the carefully even accounts. slyly | +61134|902232|39787|5|46|56772.74|0.10|0.07|N|O|1998-01-03|1998-02-14|1998-01-30|TAKE BACK RETURN|SHIP|es. regularly | +61134|809258|9259|6|2|2334.42|0.01|0.06|N|O|1997-12-28|1998-02-26|1998-01-17|NONE|REG AIR|ts; furiously even a| +61135|722081|47110|1|23|25370.15|0.08|0.01|N|O|1997-07-03|1997-07-08|1997-07-10|COLLECT COD|SHIP| platelets haggle pending, ironic ideas. sl| +61135|722|13223|2|2|3245.44|0.01|0.01|N|O|1997-06-12|1997-07-02|1997-06-19|COLLECT COD|RAIL|inal frets above the carefully un| +61135|125269|25270|3|45|58241.70|0.01|0.01|N|O|1997-07-23|1997-07-10|1997-08-18|COLLECT COD|REG AIR|iously furious tithes. furiously final | +61160|964032|1590|1|17|18631.83|0.07|0.00|N|O|1998-10-23|1998-08-26|1998-11-07|TAKE BACK RETURN|SHIP|xpress deposits nag carefully. quickl| +61160|471188|8716|2|24|27819.84|0.08|0.00|N|O|1998-07-07|1998-09-03|1998-07-30|DELIVER IN PERSON|FOB|ccording to the carefully even| +61160|244009|31522|3|39|37166.61|0.04|0.04|N|O|1998-10-20|1998-09-11|1998-10-23|DELIVER IN PERSON|AIR|sts cajole furiously a| +61160|52821|2822|4|18|31928.76|0.09|0.02|N|O|1998-07-29|1998-08-18|1998-08-14|NONE|SHIP|gainst the ironic ac| +61160|748595|48596|5|40|65742.40|0.01|0.03|N|O|1998-07-31|1998-08-11|1998-08-23|NONE|SHIP|dolphins sleep carefully fluffily final a| +61160|632622|7647|6|42|65292.78|0.05|0.05|N|O|1998-07-21|1998-08-31|1998-08-01|DELIVER IN PERSON|AIR|e slyly regular asymptotes. ideas wak| +61160|474583|49602|7|35|54514.60|0.06|0.00|N|O|1998-07-30|1998-08-06|1998-08-17|DELIVER IN PERSON|SHIP|ake idly express, regu| +61161|315287|2806|1|7|9115.89|0.08|0.01|R|F|1994-10-02|1994-11-04|1994-10-28|COLLECT COD|TRUCK|fully even deposits serve acc| +61161|17687|30188|2|30|48140.40|0.02|0.06|A|F|1994-10-28|1994-11-04|1994-11-19|DELIVER IN PERSON|MAIL|ash blithely regular dolphins; fu| +61161|255789|18295|3|49|85493.73|0.04|0.01|A|F|1995-01-16|1994-11-03|1995-02-09|TAKE BACK RETURN|SHIP|inal warthogs. careful| +61161|34332|46833|4|4|5065.32|0.03|0.00|A|F|1995-01-06|1994-11-24|1995-01-16|NONE|TRUCK|ely. unusual dependencies detect. de| +61161|2361|39862|5|47|59377.92|0.04|0.07|R|F|1994-11-10|1994-12-03|1994-12-09|DELIVER IN PERSON|TRUCK|uffily even p| +61162|609112|9113|1|40|40843.20|0.10|0.03|N|O|1997-02-20|1997-03-28|1997-03-08|COLLECT COD|REG AIR|onic reques| +61162|340452|15465|2|13|19401.72|0.00|0.00|N|O|1997-02-10|1997-02-22|1997-03-10|DELIVER IN PERSON|TRUCK|ording to the foxes wake above the furiousl| +61162|974897|12455|3|5|9859.25|0.08|0.02|N|O|1997-02-03|1997-03-13|1997-02-22|NONE|MAIL|ly regular theodolites. | +61163|733813|46328|1|45|83105.10|0.00|0.02|N|O|1996-11-24|1997-01-01|1996-12-05|DELIVER IN PERSON|TRUCK|ts. pending,| +61164|11656|49157|1|28|43894.20|0.04|0.04|A|F|1993-09-24|1993-08-14|1993-10-07|NONE|RAIL|ess, silent foxes. blithely ironi| +61164|886478|24030|2|24|35146.32|0.00|0.08|R|F|1993-10-25|1993-09-28|1993-10-31|NONE|MAIL| to the packages. ironic deposit| +61164|34796|9797|3|44|76154.76|0.05|0.06|R|F|1993-09-21|1993-09-23|1993-09-23|NONE|SHIP|st fluffily along the theodolites. bl| +61164|811012|48561|4|42|38764.74|0.09|0.06|A|F|1993-08-21|1993-10-07|1993-09-02|TAKE BACK RETURN|AIR|arthogs. carefully final acc| +61165|392839|42840|1|37|71477.34|0.06|0.08|A|F|1992-04-13|1992-02-29|1992-05-11|DELIVER IN PERSON|AIR|ow packages. pend| +61165|437627|25152|2|1|1564.60|0.01|0.07|R|F|1992-05-24|1992-04-29|1992-06-21|NONE|SHIP|hely. carefully regula| +61165|196356|21363|3|47|68260.45|0.05|0.03|R|F|1992-03-10|1992-03-04|1992-03-11|NONE|RAIL|packages. permanently unusual warhorses | +61165|141448|3951|4|4|5957.76|0.04|0.08|R|F|1992-02-22|1992-04-26|1992-03-21|TAKE BACK RETURN|RAIL|mong the blithely s| +61165|303569|16076|5|3|4717.65|0.03|0.06|R|F|1992-05-03|1992-04-20|1992-05-10|TAKE BACK RETURN|SHIP|osits cajole above the bold, ironic dep| +61165|75479|37981|6|49|71269.03|0.01|0.01|A|F|1992-05-28|1992-04-21|1992-05-30|COLLECT COD|SHIP| regular pinto bea| +61165|562599|37622|7|26|43200.82|0.06|0.02|A|F|1992-03-25|1992-03-09|1992-04-16|NONE|TRUCK| are. quickly pending deposits alongside| +61166|598988|36522|1|14|29217.44|0.05|0.06|A|F|1994-06-20|1994-04-12|1994-07-01|TAKE BACK RETURN|TRUCK|latelets promise. even, special | +61166|188149|25659|2|42|51959.88|0.07|0.07|A|F|1994-05-23|1994-05-07|1994-06-21|COLLECT COD|AIR|ular theodolites sleep carefu| +61167|484200|34201|1|19|22499.42|0.02|0.08|N|O|1998-05-22|1998-06-08|1998-05-24|COLLECT COD|SHIP|ly along the carefully i| +61167|941489|4008|2|49|74991.56|0.04|0.07|N|O|1998-07-24|1998-06-07|1998-07-25|COLLECT COD|SHIP|e blithely regular foxes. express cou| +61167|597223|22246|3|33|43566.60|0.06|0.03|N|O|1998-07-02|1998-06-08|1998-07-13|COLLECT COD|TRUCK|ronic, regular reques| +61167|522257|34768|4|7|8954.61|0.07|0.07|N|O|1998-08-20|1998-07-28|1998-09-19|DELIVER IN PERSON|RAIL| ruthlessly. sly| +61192|248461|10966|1|49|69063.05|0.09|0.08|A|F|1994-10-13|1994-10-25|1994-10-22|DELIVER IN PERSON|MAIL|ng to the slyly unusual p| +61192|878601|28602|2|27|42648.12|0.09|0.04|A|F|1994-09-30|1994-10-11|1994-10-01|NONE|FOB|iously regula| +61192|631216|43729|3|25|28679.50|0.04|0.02|R|F|1994-09-11|1994-10-14|1994-10-05|DELIVER IN PERSON|FOB|ronic pint| +61192|837876|12909|4|19|34462.77|0.00|0.03|A|F|1994-10-04|1994-11-08|1994-11-03|DELIVER IN PERSON|SHIP|ccounts. regular, pending di| +61192|174418|24419|5|43|64173.63|0.10|0.01|A|F|1994-12-04|1994-10-18|1994-12-27|DELIVER IN PERSON|FOB|c, regular deposits. | +61192|426729|1746|6|48|79473.60|0.01|0.04|A|F|1994-12-01|1994-11-03|1994-12-06|NONE|RAIL|ily final | +61193|988235|13274|1|33|43665.27|0.06|0.01|R|F|1992-05-16|1992-06-19|1992-05-22|COLLECT COD|REG AIR|ntiments use | +61193|262242|24748|2|36|43352.28|0.09|0.04|R|F|1992-07-31|1992-05-31|1992-08-07|DELIVER IN PERSON|MAIL|ar packages. final instructions thr| +61193|490646|40647|3|5|8183.10|0.09|0.00|A|F|1992-06-29|1992-06-14|1992-07-19|TAKE BACK RETURN|MAIL|ng to the express ideas| +61193|283656|21172|4|5|8198.20|0.01|0.01|R|F|1992-04-21|1992-06-10|1992-04-28|DELIVER IN PERSON|REG AIR|s detect. asymptot| +61194|485464|22992|1|17|24640.48|0.00|0.05|R|F|1992-10-22|1992-08-10|1992-10-27|NONE|REG AIR|ependencies. slyly regular instru| +61194|186787|49291|2|29|54339.62|0.08|0.05|R|F|1992-11-01|1992-08-28|1992-11-13|TAKE BACK RETURN|REG AIR|nic requests. ironi| +61194|314623|39636|3|2|3275.22|0.04|0.03|A|F|1992-08-10|1992-09-19|1992-09-05|NONE|SHIP|ully alongside of the ironic pinto b| +61194|862176|49728|4|5|5690.65|0.05|0.02|A|F|1992-08-31|1992-09-22|1992-09-06|DELIVER IN PERSON|FOB|g fluffily. fluffily ironic | +61194|581014|43526|5|49|53654.51|0.05|0.01|R|F|1992-09-01|1992-09-10|1992-09-11|COLLECT COD|TRUCK|ccounts nag ab| +61194|98208|23211|6|7|8443.40|0.06|0.07|A|F|1992-09-03|1992-09-12|1992-09-22|DELIVER IN PERSON|REG AIR|, final requests wake fluffily. spec| +61195|575700|723|1|10|17756.80|0.05|0.07|A|F|1995-02-24|1995-03-27|1995-03-20|DELIVER IN PERSON|MAIL|uriously express | +61195|782852|45368|2|10|19348.20|0.00|0.06|R|F|1995-02-25|1995-04-08|1995-02-27|COLLECT COD|FOB|asymptotes. regular tithes haggle. bold, e| +61195|389275|26797|3|14|19099.64|0.03|0.01|N|F|1995-06-05|1995-05-13|1995-06-26|COLLECT COD|RAIL|ld have to haggle requests. slyly ironic pa| +61195|544646|44647|4|29|49027.98|0.08|0.01|R|F|1995-04-19|1995-04-27|1995-04-25|NONE|SHIP|into beans. slyly bold theodolites ar| +61195|860428|35463|5|49|68030.62|0.02|0.05|A|F|1995-05-01|1995-04-01|1995-05-05|TAKE BACK RETURN|SHIP|y final accounts; blithely iron| +61195|202601|40114|6|48|72172.32|0.04|0.01|N|F|1995-05-27|1995-04-03|1995-06-25|TAKE BACK RETURN|REG AIR|egular accoun| +61196|713459|1002|1|28|41227.76|0.08|0.05|R|F|1994-12-10|1994-12-02|1994-12-14|DELIVER IN PERSON|FOB| slyly. pinto beans beside| +61196|94039|31543|2|31|32023.93|0.10|0.03|R|F|1995-01-06|1994-11-27|1995-01-24|DELIVER IN PERSON|TRUCK| quickly about the speci| +61196|511770|49301|3|14|24944.50|0.05|0.00|A|F|1994-12-25|1994-12-20|1995-01-14|NONE|SHIP|ructions maintain quickly. furiou| +61196|307535|32548|4|28|43190.56|0.08|0.01|A|F|1994-11-30|1994-11-18|1994-12-05|DELIVER IN PERSON|SHIP|r packages. q| +61197|144522|7025|1|7|10965.64|0.02|0.06|N|O|1996-09-20|1996-07-22|1996-10-16|DELIVER IN PERSON|TRUCK| the carefully iro| +61197|969533|7091|2|48|76919.52|0.03|0.04|N|O|1996-09-13|1996-08-25|1996-09-23|NONE|RAIL|refully unusual ideas solv| +61197|940813|15850|3|30|55613.10|0.09|0.02|N|O|1996-06-22|1996-07-13|1996-07-05|COLLECT COD|REG AIR|slyly regular accounts. quickly | +61198|258458|33469|1|43|60906.92|0.07|0.07|N|O|1996-11-11|1996-12-13|1996-11-21|TAKE BACK RETURN|MAIL|ests. furiously special | +61198|900973|13492|2|44|86852.92|0.02|0.04|N|O|1996-12-31|1996-10-28|1997-01-09|TAKE BACK RETURN|SHIP|riously brave accou| +61199|139635|2138|1|28|46889.64|0.05|0.01|A|F|1993-01-23|1993-03-10|1993-01-29|TAKE BACK RETURN|AIR| final request| +61199|831373|18922|2|7|9130.31|0.02|0.04|A|F|1993-03-10|1993-04-01|1993-03-13|NONE|FOB|onic asymptotes. quickly ironic| +61199|882747|45265|3|26|44972.20|0.09|0.05|A|F|1993-03-24|1993-03-27|1993-04-09|NONE|FOB|ly requests sleep regular deposits. carefu| +61224|517923|42944|1|17|32995.30|0.00|0.00|R|F|1992-05-04|1992-03-19|1992-05-28|DELIVER IN PERSON|FOB|ironic attain| +61224|717610|30125|2|30|48827.40|0.10|0.00|R|F|1992-04-08|1992-04-09|1992-04-23|TAKE BACK RETURN|FOB|endencies cajole blithely| +61224|869988|32506|3|47|92023.18|0.08|0.00|R|F|1992-05-30|1992-03-16|1992-05-31|NONE|RAIL|are carefully silent pinto bea| +61224|872734|10286|4|19|32427.11|0.00|0.04|A|F|1992-03-05|1992-05-08|1992-03-22|NONE|SHIP|accounts. fl| +61224|23933|23934|5|30|55707.90|0.08|0.08|R|F|1992-02-28|1992-04-03|1992-03-25|NONE|AIR|he slyly bold pinto beans. sp| +61225|7327|44828|1|37|45669.84|0.07|0.02|N|O|1998-06-03|1998-06-08|1998-06-27|NONE|MAIL|larly. ironic a| +61226|89231|14234|1|43|52469.89|0.04|0.07|N|O|1997-05-21|1997-06-23|1997-05-31|DELIVER IN PERSON|REG AIR|s outside | +61226|702433|2434|2|49|70334.60|0.00|0.02|N|O|1997-07-17|1997-07-09|1997-08-08|DELIVER IN PERSON|REG AIR| final accounts nag quickly c| +61226|787443|24989|3|3|4591.23|0.07|0.08|N|O|1997-05-30|1997-06-12|1997-06-28|COLLECT COD|AIR|ly even packages; fur| +61226|547431|22452|4|22|32525.02|0.00|0.08|N|O|1997-04-23|1997-05-26|1997-05-23|NONE|TRUCK| the carefully sil| +61226|661200|48740|5|47|54574.99|0.00|0.03|N|O|1997-08-14|1997-06-24|1997-08-29|TAKE BACK RETURN|MAIL|ey players. | +61226|785776|48292|6|41|76331.34|0.07|0.06|N|O|1997-05-02|1997-06-08|1997-05-19|NONE|RAIL|se blithely along the blithely ironic | +61227|840296|15329|1|12|14835.00|0.04|0.05|R|F|1992-11-29|1992-10-16|1992-12-26|DELIVER IN PERSON|FOB|regular deposits will cajole before| +61228|698168|48169|1|1|1166.13|0.07|0.03|A|F|1994-07-17|1994-09-16|1994-08-05|COLLECT COD|MAIL|ep idly across the pa| +61228|102784|15287|2|46|82191.88|0.00|0.00|A|F|1994-07-27|1994-10-12|1994-08-01|DELIVER IN PERSON|TRUCK|ke fluffily. | +61228|487619|37620|3|13|20885.67|0.03|0.07|A|F|1994-10-14|1994-09-25|1994-10-22|COLLECT COD|REG AIR|s boost slyly. fluffily even | +61228|407615|20124|4|31|47200.29|0.09|0.02|A|F|1994-10-12|1994-10-06|1994-10-23|TAKE BACK RETURN|REG AIR|ites solve special deposits. theodolites | +61228|775039|25040|5|37|41218.00|0.08|0.03|A|F|1994-09-06|1994-09-25|1994-09-18|COLLECT COD|REG AIR|te along the expr| +61228|73561|48564|6|35|53709.60|0.10|0.07|A|F|1994-11-02|1994-09-01|1994-11-11|TAKE BACK RETURN|TRUCK|g to the ideas detect slyly even, regu| +61229|511313|48844|1|47|62241.63|0.04|0.01|R|F|1993-11-21|1993-11-16|1993-11-22|TAKE BACK RETURN|RAIL| final, pending foxes. b| +61229|632857|45370|2|6|10738.92|0.04|0.04|R|F|1993-12-16|1993-11-05|1994-01-15|COLLECT COD|MAIL|ix fluffily. pending d| +61229|411772|11773|3|7|11786.25|0.05|0.07|A|F|1993-12-19|1993-11-20|1994-01-06|DELIVER IN PERSON|RAIL|e silent deposits. unusual, pending package| +61229|635755|10780|4|7|11835.04|0.07|0.07|A|F|1993-10-16|1993-12-01|1993-11-01|DELIVER IN PERSON|AIR|eans. foxes along the bold, regular pin| +61229|120308|20309|5|30|39849.00|0.10|0.04|A|F|1993-12-20|1993-10-23|1994-01-19|COLLECT COD|REG AIR|riously regular sentiments nod quickly| +61229|1705|39206|6|8|12853.60|0.01|0.04|A|F|1993-12-17|1993-12-05|1993-12-23|TAKE BACK RETURN|RAIL|packages haggl| +61230|143350|18355|1|50|69667.50|0.00|0.02|N|O|1996-12-19|1996-12-26|1996-12-30|DELIVER IN PERSON|TRUCK|tegrate express, unusual dolphin| +61230|270672|33178|2|26|42709.16|0.01|0.08|N|O|1997-01-13|1996-12-15|1997-01-15|COLLECT COD|TRUCK|ss deposits wake regular dolphins. fluf| +61230|169585|19586|3|33|54601.14|0.05|0.05|N|O|1996-12-04|1996-12-10|1996-12-31|DELIVER IN PERSON|FOB|s run regularly along t| +61230|214107|14108|4|34|34717.06|0.01|0.00|N|O|1996-12-02|1996-12-28|1996-12-24|COLLECT COD|RAIL|special, bold account| +61231|618071|43096|1|25|24726.00|0.07|0.04|A|F|1994-06-22|1994-06-09|1994-07-13|TAKE BACK RETURN|SHIP|nstructions cajole. | +61231|912722|25241|2|5|8673.40|0.01|0.02|R|F|1994-06-29|1994-05-30|1994-07-08|DELIVER IN PERSON|RAIL| special accounts cajole fluffily quickly | +61231|108611|33616|3|32|51827.52|0.08|0.05|A|F|1994-05-12|1994-06-20|1994-06-08|COLLECT COD|MAIL|lithely ideas. asymptotes a| +61256|621447|21448|1|17|23262.97|0.04|0.02|A|F|1994-12-07|1994-12-16|1994-12-17|DELIVER IN PERSON|RAIL|se blithely express| +61256|644429|44430|2|10|13733.90|0.05|0.02|R|F|1995-01-24|1994-12-28|1995-02-11|COLLECT COD|RAIL|sits unwind | +61256|911926|24445|3|36|69763.68|0.02|0.00|R|F|1994-12-09|1994-12-17|1994-12-14|NONE|FOB|t the slyly bold d| +61257|165016|15017|1|9|9729.09|0.04|0.04|N|O|1997-11-09|1997-11-04|1997-11-25|COLLECT COD|SHIP| above the regular ideas. q| +61257|415417|40434|2|38|50630.82|0.08|0.03|N|O|1997-10-26|1997-10-13|1997-11-14|TAKE BACK RETURN|TRUCK|kly final platelets impress quickly. re| +61257|905590|18109|3|16|25528.80|0.08|0.03|N|O|1997-09-15|1997-10-24|1997-10-03|TAKE BACK RETURN|SHIP|final sentiments cajole. unusual, regula| +61258|134086|9091|1|39|43683.12|0.05|0.07|N|O|1996-03-20|1996-05-24|1996-03-26|DELIVER IN PERSON|MAIL|, pending a| +61259|290876|40877|1|17|31736.62|0.04|0.03|N|O|1996-04-11|1996-03-11|1996-04-14|DELIVER IN PERSON|RAIL|ial accounts. furiously f| +61259|750543|544|2|12|19122.12|0.10|0.06|N|O|1996-05-27|1996-03-09|1996-06-04|TAKE BACK RETURN|REG AIR| somas. unu| +61259|369010|6532|3|9|9711.00|0.05|0.03|N|O|1996-04-28|1996-03-27|1996-05-11|NONE|REG AIR|slyly ironic ideas boost | +61259|944038|31593|4|11|11901.89|0.09|0.01|N|O|1996-05-20|1996-03-06|1996-06-10|TAKE BACK RETURN|REG AIR|s the slyly even packa| +61259|436335|48844|5|8|10170.48|0.06|0.04|N|O|1996-02-26|1996-03-03|1996-03-27|DELIVER IN PERSON|SHIP| of the slyly silent requests boost furi| +61259|466301|28811|6|48|60829.44|0.07|0.02|N|O|1996-05-28|1996-04-13|1996-06-22|NONE|TRUCK| shall are. iron| +61260|525599|13130|1|29|47112.53|0.00|0.08|N|O|1998-03-08|1998-04-17|1998-03-13|TAKE BACK RETURN|SHIP|ial, bold deposits. furiously ironi| +61260|728491|41006|2|2|3038.92|0.10|0.03|N|O|1998-04-01|1998-02-27|1998-04-02|DELIVER IN PERSON|FOB|tructions do affix doggedly eve| +61260|738114|13143|3|49|56451.92|0.08|0.01|N|O|1998-04-17|1998-03-24|1998-05-14|DELIVER IN PERSON|SHIP|e ironic, final platelets; slyly| +61260|476883|26884|4|4|7439.44|0.01|0.08|N|O|1998-04-08|1998-03-12|1998-04-30|TAKE BACK RETURN|REG AIR|s. furiously even accounts sublate quic| +61260|964426|1984|5|31|46201.78|0.06|0.05|N|O|1998-04-30|1998-03-25|1998-05-01|TAKE BACK RETURN|FOB|lieve carefully quickly ironic pl| +61260|102243|27248|6|5|6226.20|0.04|0.06|N|O|1998-05-03|1998-03-02|1998-05-27|DELIVER IN PERSON|RAIL|en deposits. quickly ironic f| +61261|529762|17293|1|7|12542.18|0.05|0.03|N|O|1995-09-20|1995-08-07|1995-10-12|NONE|RAIL| furiously. slyly regular accounts | +61261|704520|4521|2|7|10671.43|0.07|0.08|N|O|1995-07-30|1995-08-06|1995-08-02|COLLECT COD|REG AIR|quests. carefully ironic packages haggle s| +61261|862632|37667|3|42|66972.78|0.02|0.04|N|O|1995-08-11|1995-08-14|1995-08-16|TAKE BACK RETURN|AIR|equests. pending, even the| +61261|243343|30856|4|24|30871.92|0.00|0.01|N|O|1995-09-21|1995-09-06|1995-10-07|NONE|MAIL|ronic accounts. accounts nag. final reques| +61261|854312|41864|5|23|29124.21|0.00|0.03|N|O|1995-07-22|1995-09-22|1995-08-02|COLLECT COD|REG AIR|atelets nag. fluffily special foxes are | +61262|218968|6481|1|1|1886.95|0.04|0.04|N|O|1996-01-26|1996-01-15|1996-02-04|COLLECT COD|MAIL|mptotes. special packages eat| +61263|498949|23968|1|25|48698.00|0.09|0.06|A|F|1994-09-17|1994-09-07|1994-09-20|TAKE BACK RETURN|AIR|ely-- furiously final theodolites are abov| +61263|824228|24229|2|43|49543.74|0.01|0.04|R|F|1994-07-31|1994-07-25|1994-08-24|TAKE BACK RETURN|REG AIR|inal excuses a| +61263|786626|11657|3|36|61653.24|0.04|0.00|R|F|1994-09-23|1994-08-07|1994-10-20|NONE|RAIL|lar request| +61263|813679|1228|4|23|36630.49|0.10|0.06|R|F|1994-09-01|1994-09-15|1994-09-18|TAKE BACK RETURN|REG AIR|he deposits h| +61263|492878|17897|5|42|78575.70|0.09|0.06|R|F|1994-10-06|1994-08-08|1994-10-14|COLLECT COD|MAIL|ly express accounts detec| +61263|788361|25907|6|49|71017.17|0.10|0.05|R|F|1994-06-27|1994-08-05|1994-06-28|NONE|SHIP|are slyly among the ironic foxes. fluffily| +61288|228249|15762|1|8|9417.84|0.01|0.06|N|O|1996-12-18|1997-02-01|1996-12-22|TAKE BACK RETURN|MAIL|pinto beans. bold theodol| +61288|165033|15034|2|31|34038.93|0.05|0.06|N|O|1997-01-10|1996-12-21|1997-01-23|DELIVER IN PERSON|FOB|long the express deposits; furiously fina| +61289|251381|38897|1|10|13323.70|0.07|0.05|R|F|1993-05-09|1993-04-05|1993-06-02|COLLECT COD|FOB|he regular, final platelets wake carefully | +61289|958600|8601|2|16|26536.96|0.06|0.02|R|F|1993-04-05|1993-02-22|1993-04-26|DELIVER IN PERSON|RAIL|cajole final, express packa| +61289|175205|212|3|27|34565.40|0.08|0.05|A|F|1993-03-28|1993-03-21|1993-04-22|COLLECT COD|AIR|ke furiously und| +61289|663131|13132|4|50|54705.00|0.05|0.05|R|F|1993-05-10|1993-04-01|1993-05-16|DELIVER IN PERSON|AIR|theodolites. slyly final accounts sl| +61289|227274|39779|5|43|51654.18|0.04|0.02|R|F|1993-02-10|1993-04-10|1993-03-05|NONE|SHIP|uickly even pin| +61289|778635|28636|6|45|77112.00|0.07|0.01|R|F|1993-04-06|1993-04-11|1993-05-03|NONE|RAIL|wake carefully sometimes ironic warhorse| +61290|810290|47839|1|19|22804.75|0.05|0.00|A|F|1993-11-14|1993-09-21|1993-11-26|DELIVER IN PERSON|SHIP|ly against th| +61290|540248|40249|2|36|46375.92|0.09|0.07|R|F|1993-11-25|1993-09-21|1993-12-06|TAKE BACK RETURN|TRUCK| ironic packages sleep. i| +61290|936363|23918|3|20|27986.40|0.09|0.08|A|F|1993-11-08|1993-10-23|1993-11-17|TAKE BACK RETURN|MAIL|refully special instr| +61290|446241|46242|4|18|21369.96|0.00|0.06|A|F|1993-08-17|1993-10-21|1993-08-28|COLLECT COD|RAIL|sits. slyly final asymptotes boost ab| +61290|962539|37578|5|28|44841.72|0.01|0.03|A|F|1993-10-18|1993-09-19|1993-11-05|NONE|AIR|about the express requests | +61291|889798|2316|1|29|51844.75|0.04|0.06|R|F|1994-11-10|1994-09-07|1994-11-11|COLLECT COD|MAIL|tegrate quickly regular tithes. ironi| +61291|820546|45579|2|19|27863.50|0.01|0.08|A|F|1994-10-28|1994-10-04|1994-11-26|TAKE BACK RETURN|MAIL|se carefully iro| +61291|904949|17468|3|11|21492.90|0.08|0.04|R|F|1994-11-19|1994-09-08|1994-11-23|DELIVER IN PERSON|MAIL|al packages. furiously ironic foxes are; c| +61291|462708|25218|4|11|18377.48|0.10|0.04|R|F|1994-08-11|1994-11-06|1994-08-21|TAKE BACK RETURN|FOB|al instructions cajole fluffily at the expr| +61291|730450|17993|5|5|7402.10|0.06|0.07|A|F|1994-12-03|1994-09-15|1994-12-20|DELIVER IN PERSON|RAIL| instructions engage. furiously unu| +61291|669566|44593|6|4|6142.12|0.05|0.02|R|F|1994-10-24|1994-10-08|1994-11-13|TAKE BACK RETURN|RAIL| slyly. evenly p| +61292|792524|30070|1|18|29096.82|0.10|0.05|N|O|1996-05-04|1996-05-18|1996-05-15|COLLECT COD|FOB|s impress quickly ironic requests. sly| +61292|946745|46746|2|40|71668.00|0.09|0.06|N|O|1996-04-25|1996-06-15|1996-04-26|NONE|AIR|sleep carefully blithe r| +61292|937131|12168|3|47|54900.23|0.03|0.00|N|O|1996-07-26|1996-05-22|1996-08-21|TAKE BACK RETURN|FOB|ly bold theodolites. carefully regular fo| +61293|495364|7874|1|36|48936.24|0.06|0.08|N|O|1996-05-10|1996-06-06|1996-06-02|NONE|SHIP|ly even instructions hang quickly| +61293|572783|10317|2|7|12990.32|0.09|0.04|N|O|1996-05-09|1996-05-27|1996-05-18|DELIVER IN PERSON|FOB|nag blithely | +61293|756926|44472|3|39|77332.71|0.08|0.08|N|O|1996-05-09|1996-04-28|1996-06-08|COLLECT COD|AIR|quests. furiously| +61293|639865|2378|4|27|48730.41|0.03|0.08|N|O|1996-04-26|1996-05-08|1996-05-18|DELIVER IN PERSON|FOB|inal requests about the fluffily final| +61293|196563|46564|5|48|79658.88|0.09|0.01|N|O|1996-05-03|1996-05-08|1996-05-16|NONE|FOB|lyly regular accounts. even pinto| +61293|621333|21334|6|41|51426.30|0.06|0.03|N|O|1996-03-27|1996-05-03|1996-04-24|COLLECT COD|REG AIR| quickly final pinto bean| +61293|739538|27081|7|6|9465.00|0.02|0.08|N|O|1996-06-23|1996-05-05|1996-07-07|DELIVER IN PERSON|FOB|ts. blithely regular asy| +61294|403518|16027|1|15|21322.35|0.00|0.03|A|F|1993-04-26|1993-06-28|1993-05-08|TAKE BACK RETURN|SHIP|ckly ironi| +61294|922657|47694|2|30|50388.30|0.06|0.02|R|F|1993-06-16|1993-07-04|1993-07-10|COLLECT COD|FOB| furiously final dinos cajole acro| +61294|92362|29866|3|23|31150.28|0.09|0.05|A|F|1993-05-31|1993-06-09|1993-06-15|DELIVER IN PERSON|SHIP|ons cajole. fluffily even dolphins abou| +61295|236188|48693|1|36|40470.12|0.00|0.00|A|F|1992-10-21|1992-09-23|1992-11-20|TAKE BACK RETURN|RAIL|eposits. fluffily final packages a| +61295|598900|11412|2|35|69960.80|0.09|0.04|R|F|1992-09-13|1992-10-02|1992-10-11|NONE|TRUCK|ular instructions wak| +61295|702211|27240|3|23|27903.14|0.07|0.07|R|F|1992-09-25|1992-10-21|1992-10-19|COLLECT COD|FOB|yly silent ac| +61295|49123|24124|4|18|19298.16|0.03|0.04|R|F|1992-09-14|1992-10-22|1992-09-26|COLLECT COD|RAIL|ideas. slyly express ideas are | +61295|602160|39697|5|37|39298.81|0.10|0.07|R|F|1992-09-18|1992-10-01|1992-10-07|COLLECT COD|FOB|ic asymptotes cajole slyly furiously sil| +61295|489817|39818|6|15|27101.85|0.07|0.06|R|F|1992-11-15|1992-10-07|1992-12-04|NONE|RAIL|ake. pending excuses believe blithe| +61320|521179|33690|1|4|4800.60|0.02|0.00|R|F|1994-04-14|1994-06-10|1994-05-03|COLLECT COD|TRUCK| daringly a| +61320|452232|2233|2|7|8289.47|0.08|0.01|R|F|1994-07-03|1994-06-09|1994-07-08|NONE|REG AIR|t the final, express foxes. pend| +61320|649750|24775|3|47|79886.84|0.04|0.02|R|F|1994-07-10|1994-05-21|1994-07-17|COLLECT COD|SHIP|are about the flu| +61320|343722|18735|4|14|24719.94|0.03|0.01|R|F|1994-06-05|1994-07-02|1994-06-27|TAKE BACK RETURN|RAIL|sly regular pearls breach slyly furi| +61321|987999|38000|1|48|100173.60|0.09|0.02|R|F|1993-06-20|1993-06-09|1993-06-29|TAKE BACK RETURN|MAIL|ess pinto beans | +61321|283840|46346|2|11|20062.13|0.10|0.04|A|F|1993-05-04|1993-06-08|1993-05-05|DELIVER IN PERSON|SHIP|ular asymptotes. even dep| +61321|492186|4696|3|27|31810.32|0.07|0.05|R|F|1993-04-21|1993-04-25|1993-05-06|NONE|SHIP|riously final requests. furio| +61322|154570|42080|1|37|60109.09|0.04|0.08|A|F|1993-01-11|1993-03-19|1993-01-13|COLLECT COD|TRUCK|ct furiously. i| +61322|848667|48668|2|42|67856.04|0.06|0.02|A|F|1993-03-10|1993-02-25|1993-03-13|TAKE BACK RETURN|AIR|iously special requests. | +61322|534755|47266|3|48|85907.04|0.10|0.04|R|F|1993-03-02|1993-03-30|1993-03-12|TAKE BACK RETURN|FOB|nts eat: quick| +61322|618304|43329|4|31|37890.37|0.06|0.06|R|F|1993-03-17|1993-03-19|1993-04-14|COLLECT COD|RAIL|ly bold excuses. carefully regul| +61322|819458|31975|5|20|27548.20|0.09|0.04|A|F|1993-01-06|1993-02-27|1993-02-01|NONE|RAIL|thely even | +61322|615545|3082|6|33|48196.83|0.03|0.08|R|F|1993-05-04|1993-03-01|1993-05-16|COLLECT COD|AIR|ross the blithely final foxes. s| +61322|463286|25796|7|18|22486.68|0.01|0.05|R|F|1993-04-01|1993-03-13|1993-04-22|NONE|FOB|fully against the finally unusual p| +61323|431039|43548|1|16|15520.16|0.02|0.03|A|F|1995-04-25|1995-04-26|1995-05-23|TAKE BACK RETURN|AIR| bold accounts sleep carefully. bold fra| +61323|469525|19526|2|46|68747.00|0.07|0.07|R|F|1995-05-02|1995-06-06|1995-05-29|NONE|TRUCK|eep about the final, final | +61323|300897|13404|3|9|17080.92|0.10|0.03|R|F|1995-03-25|1995-05-05|1995-04-16|DELIVER IN PERSON|FOB|odolites x-ray. furiously regular | +61324|815605|28122|1|48|72986.88|0.08|0.00|N|O|1998-10-16|1998-08-08|1998-11-13|COLLECT COD|AIR|ts boost. blithely unusual depths use blith| +61324|860847|10848|2|28|50618.40|0.04|0.00|N|O|1998-09-06|1998-09-24|1998-09-07|DELIVER IN PERSON|AIR|he carefully silent accounts. | +61324|247977|35490|3|29|55823.84|0.06|0.04|N|O|1998-07-11|1998-09-17|1998-08-04|DELIVER IN PERSON|MAIL| slyly even platelets. furiously| +61324|732861|45376|4|4|7575.32|0.03|0.01|N|O|1998-07-19|1998-09-12|1998-08-04|DELIVER IN PERSON|RAIL|ounts. blithely regul| +61324|180552|43056|5|47|76729.85|0.01|0.06|N|O|1998-09-28|1998-08-17|1998-10-25|COLLECT COD|FOB|ic sentiments. furiously special requests h| +61324|529298|29299|6|50|66363.50|0.01|0.03|N|O|1998-08-21|1998-08-01|1998-09-15|DELIVER IN PERSON|FOB|manent deposits. ironic request| +61325|556660|44194|1|44|75532.16|0.01|0.07|N|O|1996-04-20|1996-05-16|1996-04-21|COLLECT COD|SHIP|the regular| +61325|768467|30983|2|4|6141.72|0.02|0.07|N|O|1996-07-06|1996-06-03|1996-07-26|DELIVER IN PERSON|SHIP|. foxes along the regu| +61326|545821|45822|1|23|42936.40|0.08|0.03|A|F|1993-02-28|1993-02-12|1993-03-03|NONE|RAIL|ly slyly final | +61326|612102|37127|2|23|23323.61|0.00|0.05|A|F|1992-12-31|1993-01-25|1993-01-14|DELIVER IN PERSON|FOB|refully ev| +61326|590822|28356|3|34|65035.20|0.04|0.05|A|F|1993-04-07|1993-03-13|1993-04-12|TAKE BACK RETURN|MAIL| are even a| +61327|404993|4994|1|36|68326.92|0.07|0.01|A|F|1993-07-07|1993-06-22|1993-08-01|COLLECT COD|AIR|haggle stealthily. even req| +61327|701866|26895|2|1|1867.83|0.02|0.03|R|F|1993-08-26|1993-06-10|1993-09-07|NONE|RAIL|the furiously final Tiresias. ironic, e| +61327|251083|38599|3|5|5170.35|0.01|0.00|R|F|1993-05-15|1993-07-30|1993-05-16|DELIVER IN PERSON|FOB|eas haggle blith| +61327|936418|36419|4|26|37813.62|0.02|0.07|A|F|1993-06-15|1993-07-18|1993-07-08|DELIVER IN PERSON|SHIP|l packages. final request| +61327|376554|39062|5|17|27719.18|0.08|0.07|R|F|1993-07-05|1993-06-07|1993-07-19|COLLECT COD|REG AIR|omise quickly according to the| +61327|727878|2907|6|47|89574.48|0.08|0.01|R|F|1993-07-30|1993-07-26|1993-08-17|DELIVER IN PERSON|MAIL|ains are quickly-- regular, f| +61352|42388|17389|1|33|43902.54|0.05|0.03|A|F|1995-02-19|1995-03-15|1995-03-10|DELIVER IN PERSON|AIR|will have to cajol| +61352|398542|11050|2|35|57418.55|0.08|0.02|R|F|1995-01-31|1995-02-10|1995-02-19|NONE|MAIL|g requests are furiously above t| +61352|280065|5076|3|25|26126.25|0.09|0.00|R|F|1995-01-29|1995-02-11|1995-02-10|DELIVER IN PERSON|MAIL| even pinto beans. | +61352|51433|38937|4|4|5537.72|0.03|0.08|A|F|1995-02-14|1995-03-15|1995-03-06|DELIVER IN PERSON|TRUCK|n deposits. ironic deposit| +61353|902618|15137|1|34|55099.38|0.10|0.08|R|F|1993-02-21|1993-01-21|1993-03-22|NONE|TRUCK|sy notornis cajole quickly after | +61353|297256|34772|2|20|25064.80|0.05|0.02|A|F|1993-02-09|1993-02-06|1993-03-09|NONE|TRUCK|the slyly final instructions.| +61353|966472|28992|3|22|33845.46|0.07|0.07|R|F|1992-12-17|1993-01-21|1992-12-29|DELIVER IN PERSON|FOB|eep quickly. | +61353|489338|14357|4|46|61056.26|0.08|0.06|R|F|1993-02-04|1992-12-20|1993-03-02|COLLECT COD|SHIP|y even hockey players use according to th| +61353|290885|28401|5|15|28138.05|0.01|0.00|A|F|1993-02-11|1993-01-18|1993-02-16|DELIVER IN PERSON|TRUCK| ironic sauternes. bold| +61353|902946|27983|6|32|62364.80|0.07|0.05|R|F|1993-02-03|1992-12-21|1993-02-23|TAKE BACK RETURN|REG AIR|he carefully unusual foxes cajole| +61353|804359|4360|7|22|27792.82|0.10|0.07|A|F|1993-03-01|1992-12-24|1993-03-03|TAKE BACK RETURN|SHIP|e carefully iro| +61354|846477|34026|1|47|66901.21|0.05|0.06|N|O|1997-11-08|1997-12-24|1997-11-10|NONE|AIR|nstructions nag about the quickly regu| +61354|730353|17896|2|12|16599.84|0.01|0.04|N|O|1997-10-23|1997-12-16|1997-11-06|DELIVER IN PERSON|MAIL|pending asymptotes. express packages | +61355|751646|26677|1|12|20371.32|0.08|0.03|R|F|1993-11-10|1993-11-28|1993-12-10|DELIVER IN PERSON|AIR|s serve. furiously special accounts above | +61355|900381|382|2|39|53872.26|0.02|0.08|R|F|1993-09-09|1993-11-22|1993-10-02|DELIVER IN PERSON|FOB| slyly pending requests.| +61355|697257|9771|3|37|46406.14|0.03|0.02|R|F|1993-10-08|1993-11-10|1993-10-25|COLLECT COD|AIR|ages. furiously i| +61355|785492|10523|4|16|25239.36|0.01|0.02|R|F|1993-11-18|1993-10-11|1993-12-07|COLLECT COD|FOB|arefully express packa| +61356|535299|47810|1|47|62710.69|0.05|0.02|N|O|1998-08-10|1998-07-01|1998-08-26|NONE|FOB| even packages cajole never along| +61356|761092|36123|2|17|19602.02|0.07|0.07|N|O|1998-05-29|1998-07-10|1998-06-07|DELIVER IN PERSON|SHIP|to beans nag permanently. carefully spe| +61356|658180|20694|3|50|56907.50|0.06|0.03|N|O|1998-08-07|1998-08-11|1998-08-08|TAKE BACK RETURN|REG AIR|y regular tithes. furiously final packages | +61356|19750|32251|4|26|43413.50|0.01|0.06|N|O|1998-06-01|1998-07-06|1998-06-13|DELIVER IN PERSON|FOB|quickly pending acc| +61357|962692|250|1|22|38602.30|0.03|0.02|R|F|1992-08-11|1992-09-14|1992-09-02|NONE|FOB|ent deposits nag doggedly blithely unusua| +61358|491211|41212|1|29|34863.51|0.09|0.01|A|F|1994-10-08|1994-10-12|1994-10-16|TAKE BACK RETURN|TRUCK|even deposits. silently express asymptotes | +61358|775305|12851|2|30|41408.10|0.04|0.02|R|F|1994-09-06|1994-10-20|1994-09-25|NONE|AIR|xes. carefully express requests are | +61358|535507|23038|3|27|41646.96|0.10|0.05|A|F|1994-11-21|1994-11-15|1994-11-27|DELIVER IN PERSON|TRUCK|y bold realm| +61359|990186|27744|1|18|22970.52|0.04|0.04|R|F|1993-11-27|1994-01-02|1993-12-12|NONE|FOB| the furiously ironic foxes sleep| +61359|55770|43274|2|10|17257.70|0.09|0.08|R|F|1993-12-28|1994-01-06|1993-12-31|TAKE BACK RETURN|RAIL|ag slyly slyly bold asymptotes? spec| +61359|317492|29999|3|4|6037.92|0.03|0.06|R|F|1994-01-10|1993-12-15|1994-01-24|DELIVER IN PERSON|SHIP|s. express foxes| +61359|79161|4164|4|6|6840.96|0.00|0.00|R|F|1994-03-10|1993-12-25|1994-03-13|COLLECT COD|AIR|refully carefully ironic theodolites: | +61359|453105|28124|5|23|24335.84|0.00|0.00|A|F|1994-02-15|1994-02-12|1994-03-16|NONE|RAIL|ly-- blithely regular s| +61384|684337|34338|1|8|10570.40|0.07|0.04|R|F|1992-11-24|1992-12-22|1992-12-06|TAKE BACK RETURN|RAIL|packages nag slowly. quickly regular depo| +61384|639472|27009|2|35|49400.40|0.03|0.01|A|F|1992-11-27|1992-12-16|1992-12-11|COLLECT COD|RAIL|structions. unusual, final excuses hag| +61384|601500|14013|3|31|43445.57|0.10|0.04|R|F|1993-02-26|1993-01-06|1993-03-18|DELIVER IN PERSON|REG AIR|cies. silent theodolites| +61384|410323|10324|4|11|13566.30|0.00|0.08|A|F|1992-12-06|1992-12-24|1992-12-26|NONE|AIR|kly unusual theodolites| +61384|291473|3979|5|38|55649.48|0.06|0.03|R|F|1993-01-28|1993-01-15|1993-02-22|COLLECT COD|MAIL|longside of the final packa| +61385|316901|4420|1|18|34522.02|0.03|0.02|N|O|1995-06-30|1995-06-30|1995-07-12|TAKE BACK RETURN|MAIL|uses integr| +61385|144086|19091|2|44|49723.52|0.06|0.05|N|F|1995-06-04|1995-06-07|1995-07-04|NONE|RAIL|. blithely unusual requests acr| +61385|649476|37013|3|47|66995.68|0.07|0.03|N|O|1995-08-03|1995-06-10|1995-08-17|COLLECT COD|FOB|y bold accounts aff| +61385|726798|26799|4|42|76639.92|0.09|0.03|A|F|1995-05-27|1995-06-29|1995-06-03|DELIVER IN PERSON|REG AIR|quests about the requests c| +61385|284511|34512|5|34|50847.00|0.02|0.04|N|O|1995-07-08|1995-06-23|1995-07-21|COLLECT COD|SHIP|ly ironic packages after the pendi| +61385|773545|11091|6|39|63121.89|0.04|0.03|N|O|1995-06-29|1995-06-26|1995-07-15|NONE|AIR|thin the blithely bold fo| +61385|965817|40856|7|2|3765.54|0.02|0.08|R|F|1995-05-14|1995-06-05|1995-05-28|NONE|TRUCK|ts. even sheaves are| +61386|472072|22073|1|19|19836.95|0.02|0.01|A|F|1992-11-06|1992-12-10|1992-11-11|NONE|REG AIR|. slyly even excuses sleep quickly slo| +61386|99601|12103|2|10|16006.00|0.03|0.07|R|F|1992-11-09|1992-12-21|1992-11-20|NONE|FOB|slyly regular packages nag. regular acc| +61386|979233|4272|3|23|30180.37|0.06|0.00|A|F|1992-12-28|1992-11-29|1993-01-25|DELIVER IN PERSON|AIR|ges. carefully express hoc| +61387|567776|5310|1|1|1843.75|0.02|0.04|A|F|1995-03-24|1995-04-01|1995-03-28|NONE|RAIL|ounts. furiously| +61387|602654|15167|2|2|3113.24|0.02|0.05|A|F|1995-04-09|1995-02-19|1995-04-26|DELIVER IN PERSON|REG AIR| pending, e| +61387|789885|27431|3|15|29622.75|0.00|0.08|R|F|1995-01-08|1995-03-09|1995-01-12|COLLECT COD|TRUCK|equests. furiously daring instr| +61387|584020|9043|4|8|8832.00|0.05|0.04|A|F|1995-01-03|1995-02-23|1995-02-02|DELIVER IN PERSON|RAIL|quests integrate qui| +61388|253762|16268|1|45|77208.75|0.06|0.04|A|F|1994-08-05|1994-08-12|1994-08-16|DELIVER IN PERSON|MAIL|s cajole care| +61388|963610|13611|2|28|46859.96|0.06|0.07|A|F|1994-08-13|1994-09-17|1994-08-15|NONE|TRUCK|foxes. final, enticing courts solve amo| +61388|392331|42332|3|40|56932.80|0.04|0.00|R|F|1994-10-06|1994-09-05|1994-11-04|DELIVER IN PERSON|REG AIR| final, express instructions | +61389|518060|43081|1|16|17248.64|0.03|0.08|R|F|1994-07-11|1994-09-23|1994-07-17|NONE|FOB|fluffily bold packages ac| +61389|24456|11957|2|50|69022.50|0.01|0.06|A|F|1994-09-14|1994-09-01|1994-10-14|DELIVER IN PERSON|SHIP|ording to the requests grow afte| +61389|27656|40157|3|23|36423.95|0.08|0.05|R|F|1994-10-14|1994-09-21|1994-10-25|COLLECT COD|REG AIR|uffily regular packages boost furiousl| +61389|808266|45815|4|3|3522.66|0.06|0.08|R|F|1994-09-01|1994-09-08|1994-09-15|TAKE BACK RETURN|TRUCK|as. pending, ironic deposits u| +61389|526268|38779|5|11|14236.64|0.09|0.06|R|F|1994-09-10|1994-09-10|1994-09-29|DELIVER IN PERSON|MAIL|ckly after the furi| +61389|975297|37817|6|46|63123.50|0.00|0.00|A|F|1994-07-29|1994-09-08|1994-07-31|DELIVER IN PERSON|RAIL|y unusual account| +61390|549090|49091|1|16|18225.12|0.03|0.08|N|O|1995-06-30|1995-08-10|1995-07-22|TAKE BACK RETURN|MAIL| the special packages are enticing a| +61390|550005|6|2|47|49584.06|0.04|0.07|N|O|1995-07-19|1995-08-02|1995-07-29|DELIVER IN PERSON|RAIL|eposits. close, even instruct| +61390|933094|45613|3|43|48463.15|0.07|0.01|N|O|1995-07-07|1995-08-18|1995-08-06|COLLECT COD|SHIP|foxes sleep carefully against the fu| +61390|506428|18939|4|25|35860.00|0.04|0.01|N|O|1995-08-17|1995-08-27|1995-08-28|NONE|REG AIR|efully dependencies. blithely even | +61390|525047|25048|5|28|30016.56|0.10|0.07|N|O|1995-07-16|1995-08-21|1995-08-07|TAKE BACK RETURN|MAIL|telets slee| +61391|322526|10045|1|17|26324.67|0.08|0.07|R|F|1992-07-09|1992-05-19|1992-07-14|TAKE BACK RETURN|FOB|its haggle slyl| +61391|679748|42262|2|39|67380.69|0.09|0.06|R|F|1992-06-22|1992-05-14|1992-07-11|COLLECT COD|MAIL|ly packages do| +61391|508529|21040|3|32|49200.00|0.08|0.01|R|F|1992-06-12|1992-05-29|1992-06-25|COLLECT COD|RAIL|en accounts haggle. quickly ironic instruc| +61391|841836|29385|4|39|69333.81|0.00|0.02|A|F|1992-06-07|1992-06-13|1992-06-13|TAKE BACK RETURN|TRUCK|sleep requests. slyly special theodo| +61391|724681|37196|5|40|68226.00|0.03|0.02|A|F|1992-06-17|1992-05-27|1992-07-11|NONE|FOB|requests are. | +61391|699083|11597|6|8|8656.40|0.10|0.06|A|F|1992-04-14|1992-05-30|1992-04-29|TAKE BACK RETURN|AIR|ackages nag furiously quickly final | +61416|83725|33726|1|9|15378.48|0.09|0.02|A|F|1994-09-24|1994-07-28|1994-10-17|TAKE BACK RETURN|AIR|he furiously even packages. q| +61417|274063|24064|1|10|10370.50|0.01|0.07|N|O|1995-09-09|1995-09-01|1995-09-28|NONE|RAIL|nts boost carefully above the ironic a| +61418|855040|17558|1|2|1990.00|0.00|0.05|A|F|1992-10-15|1992-11-29|1992-10-21|TAKE BACK RETURN|REG AIR| unusual pinto beans across t| +61418|655711|43251|2|38|63333.84|0.07|0.03|A|F|1993-01-13|1992-11-06|1993-02-07|NONE|TRUCK|ly regular deposits boost sl| +61418|527572|40083|3|6|9597.30|0.10|0.08|A|F|1992-11-06|1992-10-30|1992-11-15|NONE|RAIL|terns detect blithely silent | +61419|787862|12893|1|37|72143.71|0.10|0.06|N|O|1997-09-02|1997-06-27|1997-09-17|NONE|MAIL|dependencies cajole of the care| +61419|591781|41782|2|50|93638.00|0.00|0.05|N|O|1997-09-03|1997-07-29|1997-09-09|DELIVER IN PERSON|FOB|ges. carefully ironic packages slee| +61419|62014|37017|3|23|22448.23|0.00|0.03|N|O|1997-08-13|1997-08-02|1997-09-03|DELIVER IN PERSON|AIR|ajole quic| +61419|268572|18573|4|19|29270.64|0.05|0.07|N|O|1997-06-04|1997-08-11|1997-06-13|COLLECT COD|AIR| regular packag| +61420|698905|48906|1|11|20942.57|0.03|0.08|N|O|1997-09-15|1997-10-12|1997-10-09|NONE|REG AIR|nstructions! slyly regular i| +61420|483772|46282|2|41|71985.75|0.09|0.02|N|O|1997-09-18|1997-11-19|1997-09-25|NONE|RAIL|ts. accounts abo| +61420|743875|31418|3|41|78672.44|0.01|0.04|N|O|1997-11-12|1997-11-05|1997-11-16|NONE|RAIL|nusual dependencies wa| +61420|291904|16915|4|8|15167.12|0.03|0.03|N|O|1997-10-01|1997-10-12|1997-10-03|COLLECT COD|AIR| detect carefully along the regular d| +61420|20436|7937|5|39|52900.77|0.09|0.01|N|O|1997-12-07|1997-10-07|1998-01-06|NONE|SHIP|ptotes engage furiously. thinly c| +61420|466923|16924|6|1|1889.90|0.06|0.03|N|O|1997-11-05|1997-10-18|1997-11-20|DELIVER IN PERSON|REG AIR|ilent dolphins cajole. platelet| +61420|560548|10549|7|46|73991.92|0.03|0.03|N|O|1997-11-28|1997-10-07|1997-12-28|DELIVER IN PERSON|REG AIR|nding escapades| +61421|118291|30794|1|30|39278.70|0.03|0.05|N|O|1996-03-29|1996-04-25|1996-04-11|TAKE BACK RETURN|MAIL|cial dolphins boost furiously bold s| +61422|770176|7722|1|49|61060.86|0.04|0.01|A|F|1992-07-31|1992-08-12|1992-08-18|COLLECT COD|TRUCK|r the accounts-- special, regular | +61422|331923|44430|2|15|29323.65|0.06|0.02|R|F|1992-05-30|1992-07-23|1992-06-24|DELIVER IN PERSON|FOB|refully against | +61422|628034|3059|3|11|10582.00|0.07|0.03|R|F|1992-07-24|1992-06-28|1992-08-06|DELIVER IN PERSON|MAIL| ideas. furiously bold escapades cajole | +61422|351443|26458|4|1|1494.43|0.08|0.05|R|F|1992-07-29|1992-08-10|1992-08-09|COLLECT COD|MAIL|are slyly blithely regu| +61422|698797|23824|5|46|82604.96|0.07|0.07|A|F|1992-06-20|1992-08-04|1992-06-24|TAKE BACK RETURN|SHIP| packages instead of the blithely final | +61422|670551|8091|6|6|9129.12|0.05|0.06|A|F|1992-09-01|1992-06-13|1992-09-21|NONE|RAIL|, final deposits. slyly pending pearls a| +61422|937580|25135|7|1|1617.54|0.10|0.05|R|F|1992-08-11|1992-06-14|1992-08-22|DELIVER IN PERSON|REG AIR|e quickly bold accounts int| +61423|895252|20287|1|3|3741.63|0.00|0.08|N|O|1996-04-23|1996-03-31|1996-05-22|COLLECT COD|MAIL| close asymptotes affix | +61423|499222|49223|2|1|1221.20|0.04|0.05|N|O|1996-05-14|1996-03-09|1996-06-06|COLLECT COD|AIR|l pinto beans wake ironic, final dep| +61423|420592|20593|3|26|39326.82|0.09|0.01|N|O|1996-03-22|1996-04-14|1996-04-08|NONE|TRUCK|uickly even packages. fluffily silent pin| +61423|877300|14852|4|2|2554.52|0.00|0.01|N|O|1996-05-06|1996-04-19|1996-05-11|COLLECT COD|RAIL|nstructions. ironic, unusual requests wa| +61423|774561|24562|5|40|65421.20|0.04|0.05|N|O|1996-03-14|1996-04-23|1996-04-13|NONE|SHIP|times instead of the unusual, e| +61423|46155|8656|6|24|26427.60|0.04|0.02|N|O|1996-03-13|1996-03-11|1996-03-27|COLLECT COD|REG AIR|egrate never furiously final | +61448|955207|30246|1|4|5048.64|0.04|0.01|A|F|1993-09-21|1993-08-20|1993-10-14|DELIVER IN PERSON|REG AIR|al packages. regular, expres| +61448|154994|17498|2|36|73763.64|0.04|0.08|A|F|1993-05-26|1993-07-02|1993-06-05|COLLECT COD|TRUCK|s wake slyly after the dep| +61448|982332|32333|3|3|4242.87|0.07|0.07|A|F|1993-07-31|1993-07-26|1993-08-04|COLLECT COD|REG AIR|ly among the asymptotes| +61448|44807|19808|4|19|33284.20|0.01|0.03|A|F|1993-07-18|1993-07-14|1993-07-27|DELIVER IN PERSON|REG AIR|. slyly express sentiments unw| +61449|790991|3507|1|21|43721.16|0.05|0.03|N|O|1995-09-16|1995-08-06|1995-09-25|TAKE BACK RETURN|AIR| regular accounts. asymp| +61449|175317|12827|2|10|13923.10|0.07|0.05|N|F|1995-05-25|1995-07-04|1995-06-23|DELIVER IN PERSON|SHIP| dolphins unwind carefully q| +61449|549168|24189|3|46|55988.44|0.03|0.07|N|F|1995-06-01|1995-06-25|1995-06-22|NONE|REG AIR|e quickly ironic accounts| +61449|861149|11150|4|25|27752.50|0.06|0.05|N|F|1995-06-04|1995-07-29|1995-06-20|COLLECT COD|SHIP| excuses. theodolites haggle. dep| +61450|419765|19766|1|17|28640.58|0.07|0.08|R|F|1994-09-21|1994-09-30|1994-10-07|TAKE BACK RETURN|TRUCK| pending requests alongside of t| +61450|983202|8241|2|28|35984.48|0.05|0.06|R|F|1994-10-13|1994-10-12|1994-10-24|DELIVER IN PERSON|REG AIR|se furiously alongside of the ironic d| +61451|4479|16980|1|39|53955.33|0.09|0.00|N|O|1996-03-07|1996-03-21|1996-03-29|COLLECT COD|MAIL|lithely. blithely silent deposi| +61451|265004|40015|2|41|39728.59|0.01|0.06|N|O|1996-05-04|1996-03-07|1996-05-10|COLLECT COD|TRUCK|e theodolites. furiously | +61451|914830|27349|3|23|42430.17|0.08|0.05|N|O|1996-06-03|1996-04-05|1996-06-21|NONE|FOB|sts grow slyly unusual requests| +61451|531541|6562|4|33|51893.16|0.09|0.06|N|O|1996-04-25|1996-03-21|1996-05-17|TAKE BACK RETURN|AIR|ly ironic depo| +61452|923354|35873|1|36|49583.16|0.00|0.03|N|O|1996-04-16|1996-03-15|1996-04-23|DELIVER IN PERSON|MAIL|iously after th| +61452|794686|19717|2|32|56980.80|0.06|0.04|N|O|1996-03-13|1996-02-21|1996-03-16|TAKE BACK RETURN|TRUCK| bold, unusual packages: slyly regul| +61452|281878|19394|3|13|24178.18|0.04|0.05|N|O|1996-01-12|1996-02-15|1996-02-03|NONE|RAIL|ckly final excuses w| +61452|506943|6944|4|30|58497.60|0.04|0.01|N|O|1996-05-03|1996-03-09|1996-05-16|DELIVER IN PERSON|TRUCK|according to the sl| +61452|186905|49409|5|50|99595.00|0.10|0.08|N|O|1996-03-17|1996-03-09|1996-03-23|NONE|FOB|s packages. slyly ironic courts sleep car| +61452|298889|23900|6|9|16990.83|0.10|0.01|N|O|1996-04-16|1996-03-20|1996-05-07|DELIVER IN PERSON|REG AIR|ajole furiously final theodolites. regula| +61452|426831|39340|7|25|43945.25|0.05|0.08|N|O|1996-02-09|1996-03-13|1996-03-03|DELIVER IN PERSON|FOB|thely pending requests wake| +61453|731982|7011|1|39|78544.05|0.00|0.08|A|F|1995-05-23|1995-05-29|1995-06-07|TAKE BACK RETURN|MAIL|ending instructions. even foxes after the | +61453|418055|30564|2|2|1946.06|0.05|0.03|A|F|1995-04-07|1995-05-21|1995-04-09|COLLECT COD|FOB|ular packages according to t| +61454|158493|20997|1|36|55853.64|0.02|0.04|R|F|1994-11-04|1994-10-13|1994-12-01|COLLECT COD|RAIL|fily silent instructions according | +61454|785319|22865|2|41|57575.48|0.01|0.07|A|F|1994-12-16|1994-10-04|1994-12-30|NONE|TRUCK|y special courts. ca| +61454|849905|12422|3|7|12984.02|0.02|0.06|R|F|1994-12-06|1994-10-05|1994-12-11|TAKE BACK RETURN|TRUCK|eposits boost carefully abo| +61454|343451|30970|4|19|28394.36|0.01|0.07|A|F|1994-09-23|1994-11-18|1994-10-10|TAKE BACK RETURN|REG AIR|ular deposits are sl| +61454|368654|18655|5|26|44788.64|0.07|0.05|A|F|1994-11-10|1994-10-13|1994-11-20|COLLECT COD|TRUCK|ts haggle blithely busy, expr| +61455|264746|14747|1|49|83825.77|0.01|0.06|N|O|1997-02-14|1997-05-03|1997-02-24|COLLECT COD|AIR|atelets cajole carefully even co| +61455|582934|32935|2|24|48405.84|0.09|0.07|N|O|1997-04-27|1997-03-17|1997-05-03|NONE|RAIL|ages. carefully even p| +61455|365804|3326|3|3|5609.37|0.05|0.03|N|O|1997-03-21|1997-03-28|1997-03-23|TAKE BACK RETURN|REG AIR|furiously unusual packages? blithe| +61480|599611|49612|1|4|6842.36|0.08|0.06|N|O|1996-07-29|1996-10-01|1996-08-16|COLLECT COD|FOB|ven requests are caref| +61480|661091|11092|2|37|38926.22|0.10|0.04|N|O|1996-10-17|1996-08-31|1996-11-08|TAKE BACK RETURN|SHIP| above the furiou| +61480|946313|33868|3|23|31263.21|0.01|0.05|N|O|1996-09-08|1996-08-18|1996-09-17|NONE|REG AIR|. instructions wake c| +61481|754878|17394|1|20|38656.80|0.05|0.04|N|O|1998-01-24|1998-02-03|1998-02-11|COLLECT COD|REG AIR|rs cajole care| +61481|229878|42383|2|17|30733.62|0.01|0.07|N|O|1998-01-02|1997-12-21|1998-01-15|DELIVER IN PERSON|SHIP|e quickly acro| +61481|554954|4955|3|15|30133.95|0.04|0.02|N|O|1998-02-25|1998-02-06|1998-03-20|DELIVER IN PERSON|FOB|mong the c| +61482|298457|48458|1|19|27653.36|0.08|0.06|R|F|1993-04-20|1993-02-20|1993-05-12|NONE|FOB|ully regular packages. slyl| +61482|153613|16117|2|40|66664.40|0.02|0.01|R|F|1993-02-22|1993-02-08|1993-03-24|TAKE BACK RETURN|TRUCK|es. ironic deposits around the furiousl| +61482|771630|9176|3|43|73168.80|0.00|0.07|R|F|1993-03-03|1993-02-28|1993-03-10|COLLECT COD|TRUCK|nts across the carefully final packag| +61482|768822|31338|4|19|35925.01|0.09|0.08|A|F|1993-04-20|1993-03-25|1993-05-03|TAKE BACK RETURN|TRUCK|to beans are warhorses. furiousl| +61482|586976|49488|5|12|24755.40|0.02|0.01|A|F|1993-02-02|1993-04-05|1993-02-12|DELIVER IN PERSON|AIR|t furiously b| +61482|297359|34875|6|5|6781.70|0.03|0.08|A|F|1993-03-21|1993-02-13|1993-04-01|TAKE BACK RETURN|RAIL| asymptote| +61482|697712|35252|7|19|32483.92|0.05|0.05|A|F|1993-03-22|1993-02-25|1993-03-26|DELIVER IN PERSON|TRUCK|s. blithely even requests use fin| +61483|437302|49811|1|25|30982.00|0.02|0.07|N|O|1998-11-17|1998-09-03|1998-12-09|COLLECT COD|FOB| requests engage blithely furiou| +61483|721787|9330|2|32|57880.00|0.10|0.08|N|O|1998-10-23|1998-10-06|1998-11-08|DELIVER IN PERSON|AIR|al packages are blithely. slyly re| +61483|64028|39031|3|39|38688.78|0.04|0.02|N|O|1998-08-18|1998-09-04|1998-08-22|TAKE BACK RETURN|AIR|ly. carefully regular p| +61483|113878|13879|4|46|87026.02|0.09|0.04|N|O|1998-10-18|1998-10-13|1998-11-15|COLLECT COD|SHIP|quests above the carefully final deposits h| +61483|932248|32249|5|4|5120.80|0.05|0.08|N|O|1998-08-26|1998-10-21|1998-08-28|DELIVER IN PERSON|REG AIR|egular deposits wake pinto | +61484|337973|37974|1|12|24131.52|0.08|0.08|R|F|1993-04-01|1993-05-28|1993-04-08|NONE|RAIL|wind slyly. slyly special idea| +61484|302150|2151|2|26|29955.64|0.06|0.01|R|F|1993-03-27|1993-05-22|1993-04-21|NONE|REG AIR|ges. quickly unusual requests| +61485|646459|46460|1|30|42162.60|0.03|0.03|A|F|1994-11-13|1994-10-01|1994-11-27|DELIVER IN PERSON|AIR|yly alongside of the foxes. fu| +61486|187009|12016|1|32|35072.00|0.00|0.05|R|F|1995-05-04|1995-05-08|1995-05-13|NONE|REG AIR| carefully even acc| +61486|58602|21104|2|25|39015.00|0.07|0.01|N|O|1995-07-17|1995-06-14|1995-07-23|NONE|REG AIR|posits wake quickly theodoli| +61486|909268|34305|3|7|8940.54|0.02|0.03|R|F|1995-04-02|1995-05-17|1995-04-27|TAKE BACK RETURN|FOB|ly pending theodolites? warhors| +61486|55046|5047|4|16|16016.64|0.08|0.00|R|F|1995-04-16|1995-06-21|1995-04-18|DELIVER IN PERSON|MAIL|o the furiously express pac| +61486|148317|48318|5|16|21844.96|0.02|0.02|N|O|1995-06-22|1995-06-05|1995-07-01|NONE|AIR| unusual, silent theodolites wak| +61486|761604|24120|6|40|66622.80|0.03|0.02|R|F|1995-05-20|1995-05-05|1995-06-01|NONE|SHIP|y ruthless ide| +61486|271256|21257|7|13|15954.12|0.03|0.03|N|O|1995-07-15|1995-05-18|1995-07-27|COLLECT COD|FOB|ets. ideas are carefull| +61487|986357|11396|1|7|10103.17|0.04|0.04|A|F|1993-12-06|1994-01-30|1993-12-13|DELIVER IN PERSON|REG AIR| instructions. regu| +61487|692531|42532|2|12|18282.00|0.00|0.06|A|F|1994-03-16|1993-12-30|1994-03-22|COLLECT COD|REG AIR|he blithely special | +61487|359270|34285|3|19|25255.94|0.06|0.07|R|F|1994-03-06|1994-02-02|1994-03-07|TAKE BACK RETURN|RAIL|cial instructions! fluffily exp| +61487|247988|47989|4|11|21295.67|0.04|0.00|R|F|1994-03-21|1994-02-07|1994-03-24|DELIVER IN PERSON|TRUCK|nts. ironic, unusual requests are sly| +61487|926430|26431|5|14|20389.46|0.08|0.01|R|F|1994-01-15|1994-02-09|1994-02-07|COLLECT COD|RAIL|thely even deposits affix carefully ac| +61487|504666|29687|6|33|55131.12|0.00|0.08|R|F|1993-12-25|1994-02-18|1994-01-17|DELIVER IN PERSON|AIR|ckages are carefully according to the quic| +61512|700274|275|1|36|45872.64|0.03|0.03|N|O|1998-05-03|1998-07-01|1998-05-11|COLLECT COD|RAIL|y unusual inst| +61512|488742|13761|2|43|74420.96|0.05|0.02|N|O|1998-04-05|1998-05-29|1998-04-18|TAKE BACK RETURN|AIR|fluffily? care| +61513|909995|35032|1|42|84207.90|0.08|0.05|N|O|1995-07-20|1995-06-17|1995-07-21|COLLECT COD|AIR| furiously| +61513|270952|8468|2|7|13460.58|0.08|0.01|R|F|1995-06-08|1995-06-03|1995-06-11|TAKE BACK RETURN|FOB|packages. fu| +61513|878007|15559|3|11|10834.56|0.03|0.00|N|O|1995-07-20|1995-06-15|1995-08-16|NONE|RAIL|y regular sheaves sleep blithely. f| +61513|662832|12833|4|22|39485.60|0.03|0.03|N|F|1995-06-04|1995-06-02|1995-06-28|COLLECT COD|REG AIR|ainments haggl| +61514|654158|29185|1|40|44484.80|0.08|0.06|A|F|1995-05-07|1995-03-13|1995-05-16|DELIVER IN PERSON|TRUCK|final ideas. quickly even dep| +61514|424283|24284|2|6|7243.56|0.10|0.07|A|F|1995-03-03|1995-03-07|1995-03-27|NONE|SHIP|blithely express packa| +61514|910926|10927|3|11|21305.68|0.00|0.06|R|F|1995-02-28|1995-02-12|1995-03-30|DELIVER IN PERSON|REG AIR|oxes haggle. s| +61514|931689|31690|4|19|32692.16|0.06|0.05|A|F|1995-02-28|1995-04-03|1995-03-14|TAKE BACK RETURN|TRUCK|e furiously re| +61514|885913|10948|5|49|93044.63|0.10|0.00|R|F|1995-04-24|1995-04-08|1995-04-29|TAKE BACK RETURN|MAIL|sleep slyly brave, | +61514|535861|48372|6|36|68286.24|0.10|0.04|A|F|1995-04-08|1995-02-20|1995-04-09|COLLECT COD|SHIP|. furiously i| +61514|213702|26207|7|45|72706.05|0.03|0.02|A|F|1995-05-07|1995-04-03|1995-05-20|TAKE BACK RETURN|AIR|even theodolites nag q| +61515|683321|45835|1|8|10434.32|0.01|0.05|N|O|1996-01-21|1996-03-05|1996-01-26|TAKE BACK RETURN|RAIL|lithely iro| +61516|123530|23531|1|10|15535.30|0.09|0.00|A|F|1993-01-18|1993-02-18|1993-01-29|NONE|SHIP|. furiously regular foxes| +61516|152511|40021|2|21|32833.71|0.07|0.02|R|F|1993-03-18|1993-01-22|1993-03-29|COLLECT COD|MAIL|nts. even packages sleep furiously. re| +61516|237073|24586|3|42|42422.52|0.06|0.07|R|F|1993-02-21|1993-02-17|1993-03-17|NONE|SHIP|endencies. close, bold| +61516|479724|42234|4|24|40888.80|0.07|0.03|R|F|1993-02-15|1993-02-05|1993-03-09|COLLECT COD|AIR|. quick requests are quickly above the | +61517|132015|19522|1|9|9423.09|0.04|0.01|R|F|1993-11-21|1993-12-17|1993-12-20|COLLECT COD|AIR|ackages by the slyly pending d| +61517|767820|17821|2|41|77399.39|0.01|0.08|R|F|1993-11-01|1993-12-13|1993-11-22|DELIVER IN PERSON|SHIP|re carefully unusu| +61517|743111|18140|3|47|54241.76|0.09|0.03|R|F|1994-01-27|1993-12-18|1994-02-10|TAKE BACK RETURN|SHIP|ding to the| +61518|416968|29477|1|21|39583.74|0.00|0.04|R|F|1994-02-28|1994-03-08|1994-03-11|DELIVER IN PERSON|RAIL|cial requests cajole f| +61518|973128|35648|2|34|40836.72|0.05|0.04|R|F|1994-03-24|1994-03-28|1994-04-07|TAKE BACK RETURN|AIR| around the carefully regular reques| +61518|361792|36807|3|23|42636.94|0.03|0.06|A|F|1994-03-31|1994-03-31|1994-04-09|NONE|MAIL|instructions cajole. quickly ironic wate| +61518|632865|32866|4|42|75508.86|0.00|0.04|R|F|1994-05-27|1994-03-29|1994-06-23|COLLECT COD|REG AIR|foxes. furiously | +61518|548788|36319|5|15|27551.40|0.05|0.06|A|F|1994-03-28|1994-02-26|1994-04-21|NONE|MAIL|y quickly furious platelets. furiously | +61518|467812|42831|6|29|51613.91|0.08|0.02|R|F|1994-03-17|1994-04-23|1994-04-07|TAKE BACK RETURN|RAIL|ly across the | +61518|502683|15194|7|22|37084.52|0.06|0.03|R|F|1994-05-27|1994-03-11|1994-06-15|TAKE BACK RETURN|TRUCK|s was quickly care| +61519|589565|39566|1|1|1654.54|0.04|0.07|A|F|1995-02-15|1995-03-05|1995-02-18|TAKE BACK RETURN|TRUCK|egular packages unwind fluffily expr| +61519|806180|43729|2|45|48876.30|0.02|0.00|R|F|1995-03-23|1995-03-14|1995-04-02|COLLECT COD|REG AIR|ial requests. carefully | +61519|461825|36844|3|31|55390.80|0.04|0.00|R|F|1995-03-24|1995-04-16|1995-04-15|COLLECT COD|RAIL|ent hockey players| +61519|880768|5803|4|20|34974.40|0.10|0.02|R|F|1995-02-04|1995-03-11|1995-02-18|COLLECT COD|REG AIR|tes besides the| +61544|185384|35385|1|20|29387.60|0.01|0.05|A|F|1994-06-03|1994-06-12|1994-06-27|COLLECT COD|MAIL|inal excuses about the fluffil| +61544|747625|10140|2|14|23416.26|0.04|0.01|R|F|1994-08-05|1994-06-06|1994-08-18|NONE|TRUCK|ckly final reques| +61544|328385|3398|3|23|32507.51|0.05|0.02|A|F|1994-08-08|1994-06-29|1994-08-21|DELIVER IN PERSON|TRUCK|uriously even packages| +61544|166661|16662|4|2|3455.32|0.00|0.04|R|F|1994-06-07|1994-07-05|1994-06-09|TAKE BACK RETURN|SHIP|s should have | +61544|61456|11457|5|27|38271.15|0.06|0.04|A|F|1994-08-30|1994-06-19|1994-09-12|DELIVER IN PERSON|REG AIR|the unusual requests sleep busily asymptot| +61544|882258|44776|6|6|7441.26|0.10|0.07|A|F|1994-09-02|1994-07-04|1994-09-03|COLLECT COD|AIR|hely special foxes are across the blithel| +61545|623169|35682|1|37|40408.81|0.10|0.06|N|O|1995-10-25|1995-10-17|1995-11-01|NONE|FOB| according to the slyly regular | +61545|587900|25434|2|21|41745.48|0.03|0.08|N|O|1995-11-16|1995-10-11|1995-12-04|TAKE BACK RETURN|TRUCK| instructions use.| +61545|828499|28500|3|10|14274.50|0.04|0.01|N|O|1995-09-11|1995-10-30|1995-09-27|COLLECT COD|FOB|fts. blithely express packages nag. | +61546|517656|17657|1|24|40167.12|0.03|0.07|A|F|1993-12-19|1994-01-13|1994-01-07|DELIVER IN PERSON|SHIP|lyly unusual, reg| +61546|232475|19988|2|8|11259.68|0.04|0.05|R|F|1994-02-16|1994-02-08|1994-03-05|DELIVER IN PERSON|RAIL|kly among the final pinto beans. fluffi| +61546|194358|31868|3|21|30499.35|0.07|0.05|R|F|1993-12-10|1994-01-27|1994-01-07|COLLECT COD|FOB|lar deposits. furiously ironic the| +61546|574690|49713|4|48|84704.16|0.05|0.08|A|F|1994-03-14|1994-01-18|1994-04-11|NONE|RAIL| carefully | +61546|806330|31363|5|17|21016.93|0.05|0.03|R|F|1994-04-01|1994-01-31|1994-04-20|COLLECT COD|RAIL|furiously pending packa| +61546|985351|22909|6|4|5745.24|0.07|0.00|R|F|1994-03-21|1994-02-15|1994-03-27|DELIVER IN PERSON|RAIL|s. ironic platelets| +61547|678667|28668|1|33|54305.79|0.07|0.06|N|O|1997-06-19|1997-05-20|1997-07-12|NONE|SHIP|ke furiously again| +61547|346171|8678|2|8|9737.28|0.10|0.08|N|O|1997-04-25|1997-06-11|1997-05-22|DELIVER IN PERSON|REG AIR|mptotes haggle realms.| +61547|95328|7830|3|20|26466.40|0.00|0.08|N|O|1997-04-08|1997-05-16|1997-05-06|DELIVER IN PERSON|SHIP|eodolites a| +61547|166465|28969|4|16|24503.36|0.08|0.06|N|O|1997-07-21|1997-05-11|1997-08-10|NONE|SHIP|s. carefully| +61547|766633|41664|5|47|79881.20|0.03|0.02|N|O|1997-06-21|1997-04-28|1997-06-25|NONE|TRUCK|e the fluffily unusual platelets| +61547|788828|26374|6|36|69004.44|0.07|0.02|N|O|1997-05-29|1997-05-19|1997-06-20|NONE|MAIL| packages nag furiou| +61547|820462|32979|7|3|4147.26|0.03|0.03|N|O|1997-06-30|1997-05-24|1997-07-20|COLLECT COD|AIR|gular sheaves. bold re| +61548|504130|41661|1|39|44230.29|0.08|0.07|N|O|1998-07-30|1998-07-31|1998-08-15|DELIVER IN PERSON|FOB|osits. carefully final a| +61548|908622|33659|2|22|35872.76|0.05|0.01|N|O|1998-08-08|1998-07-04|1998-09-07|TAKE BACK RETURN|SHIP|s. blithely ironic excuses | +61549|978053|28054|1|15|16965.15|0.00|0.06|N|O|1996-11-22|1996-09-14|1996-11-27|TAKE BACK RETURN|FOB|lly across the regular t| +61549|133998|46501|2|2|4063.98|0.08|0.02|N|O|1996-07-27|1996-09-05|1996-08-03|TAKE BACK RETURN|SHIP|t theodolites. even decoys nag care| +61549|93299|43300|3|43|55568.47|0.09|0.04|N|O|1996-10-28|1996-09-03|1996-11-08|COLLECT COD|RAIL|ackages are. packages impress blithely bo| +61549|61879|49383|4|19|34976.53|0.04|0.00|N|O|1996-10-01|1996-09-18|1996-10-20|COLLECT COD|AIR|osits cajole above th| +61549|992593|30151|5|49|82591.95|0.05|0.00|N|O|1996-11-02|1996-10-15|1996-11-30|COLLECT COD|TRUCK|. final pinto beans do| +61550|819254|19255|1|50|58660.50|0.00|0.02|N|O|1997-11-28|1997-12-31|1997-12-26|NONE|MAIL|lar packages; | +61551|704895|17410|1|11|20898.46|0.04|0.01|A|F|1995-04-13|1995-06-08|1995-04-24|TAKE BACK RETURN|RAIL|ven package| +61551|162546|37553|2|25|40213.50|0.05|0.01|N|F|1995-06-02|1995-06-10|1995-06-29|COLLECT COD|FOB|pinto beans sleep blithely. ironic pinto | +61551|901287|1288|3|46|59259.04|0.01|0.05|R|F|1995-05-05|1995-05-25|1995-05-31|DELIVER IN PERSON|RAIL| sleep. slyl| +61551|914466|14467|4|19|28127.98|0.04|0.02|R|F|1995-03-28|1995-05-23|1995-04-20|NONE|TRUCK|ons. furious| +61551|415406|15407|5|36|47569.68|0.00|0.07|A|F|1995-03-26|1995-05-06|1995-04-25|TAKE BACK RETURN|FOB|es among the ironic instructions wake care| +61551|716286|3829|6|11|14324.75|0.04|0.06|R|F|1995-04-04|1995-06-03|1995-04-11|DELIVER IN PERSON|RAIL|affix ironic deposits. brave platelet| +61576|225326|12839|1|40|50052.40|0.05|0.04|N|O|1996-06-18|1996-07-01|1996-07-11|DELIVER IN PERSON|MAIL|y express sauternes wake. even, ironic | +61576|48195|23196|2|7|8002.33|0.03|0.06|N|O|1996-09-02|1996-07-17|1996-09-21|DELIVER IN PERSON|REG AIR|ly quick packages wake| +61576|7673|20174|3|27|42678.09|0.10|0.07|N|O|1996-08-22|1996-07-01|1996-09-14|DELIVER IN PERSON|REG AIR|e carefully i| +61576|949287|36842|4|12|16034.88|0.07|0.04|N|O|1996-08-11|1996-07-09|1996-08-23|TAKE BACK RETURN|AIR| asymptotes integrate busily | +61576|665734|3274|5|34|57789.80|0.07|0.08|N|O|1996-08-22|1996-08-11|1996-09-15|TAKE BACK RETURN|RAIL|ss multipliers| +61576|990264|40265|6|25|33855.50|0.05|0.08|N|O|1996-09-18|1996-06-26|1996-10-01|COLLECT COD|REG AIR|luffily final packag| +61576|363955|26463|7|10|20189.40|0.09|0.06|N|O|1996-08-12|1996-07-15|1996-08-23|NONE|FOB|ual ideas nod alongside of the fu| +61577|990318|27876|1|16|22532.32|0.08|0.06|N|O|1996-10-19|1996-10-01|1996-11-05|DELIVER IN PERSON|TRUCK|wind blithely under the bl| +61577|264371|1887|2|32|42731.52|0.04|0.03|N|O|1996-09-10|1996-10-05|1996-10-05|TAKE BACK RETURN|REG AIR|ts. fluffily special accounts na| +61577|281306|18822|3|40|51491.60|0.04|0.07|N|O|1996-08-30|1996-10-16|1996-09-16|COLLECT COD|TRUCK|ly unusual patterns. | +61578|675032|37546|1|48|48336.00|0.03|0.08|N|O|1996-05-23|1996-05-16|1996-06-08|NONE|RAIL|ts nag slyly carefully special | +61578|262572|37583|2|14|21483.84|0.07|0.03|N|O|1996-05-21|1996-06-17|1996-05-22|DELIVER IN PERSON|SHIP|eposits cajole| +61578|47228|47229|3|33|38782.26|0.05|0.05|N|O|1996-07-15|1996-06-23|1996-08-11|DELIVER IN PERSON|RAIL| are furious| +61578|745558|20587|4|34|54519.68|0.09|0.04|N|O|1996-05-19|1996-07-04|1996-06-10|COLLECT COD|REG AIR|even instructio| +61578|577741|15275|5|47|85479.84|0.00|0.02|N|O|1996-05-10|1996-07-04|1996-05-14|TAKE BACK RETURN|TRUCK|s promise alon| +61578|79748|4751|6|3|5183.22|0.01|0.00|N|O|1996-06-20|1996-06-05|1996-07-14|TAKE BACK RETURN|RAIL| slyly ironic accounts x-ray a| +61578|309846|34859|7|22|40828.26|0.01|0.03|N|O|1996-08-01|1996-05-29|1996-08-13|TAKE BACK RETURN|SHIP|riously bold accoun| +61579|566492|16493|1|41|63897.27|0.03|0.05|N|O|1995-10-12|1995-09-25|1995-10-21|DELIVER IN PERSON|REG AIR|xes across the ironic accoun| +61580|14064|14065|1|20|19561.20|0.02|0.04|N|O|1997-08-17|1997-10-07|1997-08-29|NONE|REG AIR|eposits sleep. even, regular accounts | +61581|498937|23956|1|3|5807.73|0.06|0.04|A|F|1992-12-26|1992-11-13|1993-01-09|COLLECT COD|SHIP|ross the quickl| +61581|621157|46182|2|1|1078.12|0.05|0.02|A|F|1992-12-08|1992-12-08|1992-12-18|DELIVER IN PERSON|AIR| packages wake blithely even de| +61581|775637|38153|3|49|83917.40|0.05|0.06|A|F|1993-01-14|1992-11-01|1993-01-15|NONE|FOB|gainst the thinly regular d| +61581|122384|22385|4|37|52036.06|0.10|0.02|R|F|1992-10-03|1992-12-01|1992-10-11|DELIVER IN PERSON|TRUCK|egrate? silent dolphins could ha| +61582|561592|11593|1|39|64489.23|0.03|0.04|N|O|1995-11-08|1995-11-13|1995-11-11|TAKE BACK RETURN|REG AIR|tect. special platelets| +61582|662224|37251|2|41|48633.79|0.00|0.00|N|O|1995-09-24|1995-11-27|1995-10-04|COLLECT COD|SHIP| slyly stealthy tithes| +61582|996189|33747|3|13|16706.82|0.07|0.01|N|O|1995-10-09|1995-11-09|1995-10-17|TAKE BACK RETURN|TRUCK|hely regular courts.| +61582|932223|19778|4|35|43931.30|0.03|0.07|N|O|1995-10-19|1995-10-01|1995-10-28|NONE|REG AIR|te carefully alongs| +61582|856357|43909|5|5|6566.55|0.05|0.08|N|O|1995-10-04|1995-11-11|1995-10-06|COLLECT COD|FOB|y accounts hinder slyly even attainments.| +61583|208830|21335|1|40|69552.80|0.07|0.00|R|F|1995-02-28|1995-04-05|1995-03-13|TAKE BACK RETURN|MAIL| slyly regul| +61583|789555|27101|2|23|37823.96|0.00|0.05|R|F|1995-03-01|1995-05-09|1995-03-26|DELIVER IN PERSON|TRUCK|al theodolites. regular foxe| +61583|44289|19290|3|43|53031.04|0.04|0.07|A|F|1995-04-25|1995-04-25|1995-05-09|COLLECT COD|SHIP|nts. quickly even pac| +61583|350062|25077|4|28|31137.40|0.08|0.03|N|F|1995-06-17|1995-03-28|1995-06-19|COLLECT COD|REG AIR|use slyly slyly bo| +61608|301711|26724|1|33|56519.10|0.06|0.06|A|F|1992-08-28|1992-10-17|1992-08-31|DELIVER IN PERSON|FOB|carefully to the silently bold excus| +61608|848680|48681|2|34|55373.76|0.10|0.00|A|F|1992-10-19|1992-09-15|1992-10-26|TAKE BACK RETURN|TRUCK|kages affix slyly after the ironic, pending| +61608|759411|9412|3|32|47052.16|0.03|0.04|R|F|1992-10-18|1992-10-15|1992-10-23|TAKE BACK RETURN|FOB|around the always bold instructions | +61608|410512|35529|4|30|42674.70|0.00|0.08|A|F|1992-08-21|1992-11-05|1992-08-27|TAKE BACK RETURN|RAIL|refully unusua| +61608|470231|7759|5|35|42042.35|0.09|0.00|A|F|1992-09-04|1992-09-14|1992-09-08|DELIVER IN PERSON|TRUCK|ual foxes. furiously bold packag| +61608|167582|17583|6|50|82479.00|0.10|0.03|A|F|1992-10-26|1992-09-19|1992-11-01|NONE|FOB|its? slyly unusual packages mold. dolphins | +61609|654483|4484|1|32|45998.40|0.00|0.02|N|O|1997-09-06|1997-08-03|1997-10-04|TAKE BACK RETURN|RAIL|closely un| +61609|885234|47752|2|41|49986.79|0.00|0.07|N|O|1997-07-22|1997-08-24|1997-07-24|NONE|SHIP|, bold instructions haggle| +61609|112595|102|3|14|22506.26|0.02|0.03|N|O|1997-09-19|1997-07-17|1997-10-06|DELIVER IN PERSON|TRUCK|s cajole slyly. expre| +61609|368120|43135|4|31|36831.41|0.01|0.02|N|O|1997-07-18|1997-08-13|1997-08-09|NONE|FOB|ts. slyly silen| +61609|977915|40435|5|45|89679.15|0.07|0.04|N|O|1997-06-18|1997-08-04|1997-07-05|DELIVER IN PERSON|RAIL|al excuses. thinly pending account| +61609|801740|26773|6|34|55817.80|0.03|0.06|N|O|1997-07-23|1997-07-09|1997-08-05|COLLECT COD|RAIL|pinto beans. packages cajole furiously. sil| +61610|675865|892|1|3|5522.49|0.01|0.02|A|F|1994-05-17|1994-08-04|1994-05-20|NONE|REG AIR|the blithely bol| +61611|263088|25594|1|45|47298.15|0.06|0.06|A|F|1995-03-11|1995-01-07|1995-03-24|DELIVER IN PERSON|FOB|ly special instructions. quietly b| +61611|703364|40907|2|18|24611.94|0.05|0.05|R|F|1994-12-31|1994-12-29|1995-01-23|COLLECT COD|TRUCK|even deposits wake quickly even| +61611|433075|45584|3|27|27217.35|0.06|0.01|R|F|1995-01-31|1995-01-10|1995-02-12|DELIVER IN PERSON|REG AIR|c accounts mold| +61611|687406|24946|4|47|65488.39|0.02|0.06|R|F|1995-01-16|1995-01-12|1995-01-31|COLLECT COD|REG AIR|nic deposits. deposits wake furio| +61611|215958|3471|5|4|7495.76|0.07|0.02|A|F|1994-12-27|1995-02-07|1995-01-09|DELIVER IN PERSON|SHIP|oost furiously furiously ironic p| +61611|595303|7815|6|1|1398.28|0.07|0.06|A|F|1994-12-25|1995-01-15|1995-01-17|NONE|SHIP|re carefully ironic instructions. unusual t| +61611|243673|43674|7|22|35566.52|0.02|0.02|A|F|1995-01-08|1994-12-23|1995-01-27|NONE|REG AIR|ions sleep after the slyly final pl| +61612|398011|23026|1|30|33270.00|0.06|0.00|R|F|1994-02-28|1994-02-04|1994-03-30|TAKE BACK RETURN|SHIP|cial asymptotes wake through t| +61612|355915|30930|2|24|47301.60|0.06|0.05|A|F|1993-12-19|1994-02-17|1994-01-02|DELIVER IN PERSON|REG AIR|nically pending packages wake blithely. sly| +61613|873859|23860|1|9|16495.29|0.10|0.05|R|F|1992-10-26|1993-01-22|1992-11-10|COLLECT COD|TRUCK|he enticingly ex| +61613|932363|7400|2|14|19534.48|0.06|0.02|A|F|1992-12-01|1992-12-24|1992-12-14|DELIVER IN PERSON|SHIP|ites are carefully besi| +61613|214544|39553|3|7|10209.71|0.08|0.00|A|F|1992-12-15|1993-01-06|1992-12-27|TAKE BACK RETURN|TRUCK| final deposits| +61613|826510|39027|4|23|33038.81|0.06|0.02|R|F|1992-11-04|1993-01-02|1992-11-30|NONE|SHIP|ngside of the | +61613|139553|39554|5|30|47776.50|0.00|0.02|A|F|1993-01-08|1992-12-01|1993-01-31|NONE|SHIP|g along the pendi| +61613|456030|43558|6|33|32538.33|0.06|0.03|A|F|1993-02-12|1993-01-10|1993-03-04|TAKE BACK RETURN|FOB| nag quickly blithel| +61614|293599|31115|1|38|60518.04|0.09|0.04|N|O|1997-10-31|1997-09-11|1997-11-28|NONE|TRUCK|ogged dependencies are busily fur| +61615|420744|20745|1|44|73247.68|0.01|0.06|A|F|1993-04-24|1993-05-17|1993-05-08|COLLECT COD|SHIP|lar attainments lose fluff| +61640|547708|35239|1|45|79005.60|0.00|0.00|R|F|1995-04-02|1995-05-05|1995-04-27|COLLECT COD|MAIL|c ideas grow. even dependencie| +61640|319541|32048|2|8|12484.24|0.05|0.07|A|F|1995-05-04|1995-05-04|1995-05-09|DELIVER IN PERSON|MAIL| ironic, pending instructions. unusual depo| +61640|524194|49215|3|13|15836.21|0.07|0.07|N|O|1995-07-11|1995-06-14|1995-07-23|COLLECT COD|RAIL|e carefully even instruc| +61640|120929|8436|4|16|31198.72|0.05|0.08|A|F|1995-05-11|1995-06-07|1995-06-10|COLLECT COD|SHIP| regular packages detect blithely iro| +61641|81339|18843|1|11|14523.63|0.04|0.01|N|O|1995-06-22|1995-07-18|1995-06-29|DELIVER IN PERSON|MAIL|pecial, regular deposits. regul| +61641|61197|48701|2|45|52118.55|0.01|0.01|N|O|1995-07-05|1995-07-30|1995-07-07|DELIVER IN PERSON|AIR| platelets sleep qu| +61642|108094|8095|1|17|18735.53|0.10|0.00|N|O|1995-08-04|1995-07-24|1995-08-20|NONE|TRUCK|tect slyly unusual | +61642|728296|28297|2|42|55618.92|0.04|0.07|R|F|1995-05-12|1995-08-04|1995-05-15|COLLECT COD|AIR|cording to the special | +61642|455336|30355|3|36|46487.16|0.08|0.08|A|F|1995-05-08|1995-07-27|1995-05-11|NONE|RAIL|hely regul| +61643|880098|5133|1|12|12936.60|0.07|0.03|N|O|1997-04-04|1997-02-07|1997-04-15|DELIVER IN PERSON|SHIP|ly final packages boo| +61643|793204|43205|2|37|47995.29|0.01|0.02|N|O|1997-01-15|1997-03-17|1997-01-23|TAKE BACK RETURN|REG AIR|ly ironic packages| +61644|973576|48615|1|47|77527.91|0.08|0.05|R|F|1995-03-01|1995-04-02|1995-03-16|DELIVER IN PERSON|SHIP|lithely. regular gifts h| +61644|884725|47243|2|47|80354.96|0.04|0.08|A|F|1995-04-06|1995-03-29|1995-04-18|TAKE BACK RETURN|MAIL| pending realms integrate blithely quickly | +61645|455579|5580|1|47|72123.85|0.08|0.03|N|O|1996-02-21|1995-12-26|1996-03-12|NONE|REG AIR|thely even ideas at the quickly regul| +61645|914755|39792|2|29|51321.59|0.03|0.00|N|O|1995-12-15|1996-01-09|1996-01-07|DELIVER IN PERSON|SHIP|ironic instructions sleep slyly| +61646|462855|12856|1|34|61806.22|0.01|0.05|A|F|1992-12-14|1992-10-23|1993-01-04|DELIVER IN PERSON|SHIP| according to th| +61646|202378|27387|2|28|35850.08|0.05|0.06|R|F|1992-12-27|1992-11-20|1992-12-29|DELIVER IN PERSON|REG AIR|ly special requests hang fur| +61646|353800|28815|3|12|22245.48|0.02|0.07|R|F|1992-10-27|1992-11-01|1992-11-03|TAKE BACK RETURN|AIR|inal packages wake furiously regular ins| +61646|312763|25270|4|44|78133.00|0.04|0.08|R|F|1992-11-17|1992-11-19|1992-12-08|TAKE BACK RETURN|RAIL|he fluffily ironic ideas sleep acco| +61647|213642|38651|1|43|66892.09|0.10|0.06|N|O|1996-05-23|1996-04-18|1996-05-29|TAKE BACK RETURN|RAIL| wake busily carefully unusua| +61647|676028|38542|2|36|36143.64|0.03|0.06|N|O|1996-04-26|1996-05-07|1996-05-18|COLLECT COD|REG AIR|ges. slyly express request| +61647|821|822|3|43|74038.26|0.05|0.03|N|O|1996-06-07|1996-06-03|1996-06-21|COLLECT COD|AIR|ely bold acco| +61647|783192|33193|4|32|40805.12|0.08|0.04|N|O|1996-06-17|1996-04-19|1996-07-14|DELIVER IN PERSON|TRUCK|y final excuses. final, even | +61672|102686|27691|1|31|52349.08|0.01|0.02|N|O|1998-08-06|1998-07-21|1998-08-13|NONE|FOB|pending deposi| +61672|840145|40146|2|23|24957.30|0.01|0.01|N|O|1998-07-23|1998-06-26|1998-08-15|DELIVER IN PERSON|RAIL|ular accounts wake quickly carefully fin| +61673|600010|25035|1|28|31079.72|0.08|0.03|N|O|1996-10-12|1996-10-12|1996-10-23|COLLECT COD|REG AIR| pending deposits. even depos| +61673|352277|27292|2|27|35890.02|0.01|0.01|N|O|1996-10-04|1996-10-21|1996-10-16|COLLECT COD|SHIP|. carefully ex| +61673|704437|16952|3|31|44683.40|0.08|0.04|N|O|1996-10-11|1996-09-15|1996-11-09|TAKE BACK RETURN|TRUCK|long the special ideas. reg| +61674|737689|204|1|17|29353.05|0.04|0.02|R|F|1992-08-19|1992-06-25|1992-09-15|COLLECT COD|TRUCK| are final notornis. dep| +61674|335024|47531|2|39|41301.39|0.09|0.04|A|F|1992-08-04|1992-07-09|1992-08-16|DELIVER IN PERSON|MAIL|uests cajole. regular f| +61674|734310|34311|3|40|53771.20|0.00|0.07|A|F|1992-08-08|1992-06-12|1992-08-28|NONE|MAIL|ns. slyly regular deposits breach blithely | +61674|532738|20269|4|28|49579.88|0.06|0.08|R|F|1992-08-31|1992-07-25|1992-09-28|TAKE BACK RETURN|FOB|ully final packages | +61675|862641|37676|1|7|11225.20|0.03|0.03|R|F|1995-01-18|1995-02-21|1995-02-12|NONE|AIR|er express accounts haggle careful| +61675|392341|42342|2|48|68799.84|0.02|0.03|R|F|1995-02-22|1995-01-17|1995-03-06|NONE|RAIL|gside of the unusual, regular f| +61675|70722|20723|3|44|74479.68|0.05|0.05|A|F|1994-12-21|1995-01-23|1994-12-26|COLLECT COD|MAIL|y. bold depende| +61675|619337|31850|4|20|25126.00|0.10|0.06|R|F|1995-02-17|1994-12-29|1995-03-19|DELIVER IN PERSON|FOB|s are carefully even braids. carefully | +61675|182070|19580|5|25|28801.75|0.05|0.02|A|F|1995-02-12|1995-01-04|1995-03-14|TAKE BACK RETURN|AIR|ly pending dolp| +61675|41634|4135|6|10|15756.30|0.05|0.02|R|F|1994-12-12|1995-02-02|1994-12-13|COLLECT COD|RAIL| carefully fluffily | +61676|741108|41109|1|4|4596.28|0.09|0.03|N|O|1997-09-12|1997-07-12|1997-09-26|COLLECT COD|AIR|x blithely ironic requests. s| +61676|799310|24341|2|21|29594.88|0.00|0.04|N|O|1997-06-28|1997-07-12|1997-07-03|TAKE BACK RETURN|MAIL|ly ironic ideas. special| +61676|745|13246|3|10|16457.40|0.05|0.07|N|O|1997-06-29|1997-07-20|1997-07-16|DELIVER IN PERSON|MAIL|after the pending, final theodolites. | +61676|516791|16792|4|1|1807.77|0.04|0.05|N|O|1997-08-30|1997-08-17|1997-09-04|DELIVER IN PERSON|RAIL|lyly special packages haggle | +61676|699956|37496|5|29|56721.68|0.10|0.06|N|O|1997-07-06|1997-07-13|1997-08-04|NONE|RAIL|instructions. slyly close| +61676|147840|10343|6|21|39644.64|0.06|0.03|N|O|1997-08-14|1997-06-24|1997-09-05|NONE|AIR|ar dolphin| +61677|970466|45505|1|17|26119.14|0.04|0.05|N|O|1998-06-16|1998-07-24|1998-06-26|COLLECT COD|SHIP|ld accounts affix thinly final | +61677|616287|16288|2|49|58959.25|0.09|0.06|N|O|1998-08-23|1998-06-23|1998-09-04|COLLECT COD|REG AIR| the pending, even dolphins haggle fluffil| +61678|798013|35559|1|34|37773.32|0.06|0.03|N|O|1997-10-21|1997-11-03|1997-11-18|COLLECT COD|FOB|deposits haggle quickly. care| +61678|187691|25201|2|38|67590.22|0.10|0.05|N|O|1997-12-14|1997-11-19|1998-01-02|TAKE BACK RETURN|REG AIR|nly special re| +61678|522088|22089|3|22|24421.32|0.09|0.00|N|O|1998-01-08|1997-11-05|1998-01-14|NONE|TRUCK|lar dependencies. quickly silent dep| +61678|727544|15087|4|49|77003.99|0.08|0.06|N|O|1997-11-18|1997-11-02|1997-12-16|DELIVER IN PERSON|AIR|d forges-- fluffily f| +61679|484409|34410|1|33|45981.54|0.10|0.04|N|O|1996-11-05|1996-11-04|1996-11-19|NONE|MAIL|s packages about the ironic, e| +61679|458886|46414|2|32|59035.52|0.02|0.04|N|O|1996-12-19|1996-12-04|1997-01-17|NONE|RAIL|rding to the slyly ironic fox| +61679|493811|43812|3|43|77605.97|0.10|0.02|N|O|1997-01-09|1996-12-11|1997-01-15|DELIVER IN PERSON|SHIP|are bold pinto beans. i| +61704|463282|810|1|3|3735.78|0.04|0.04|N|O|1998-07-30|1998-06-04|1998-08-22|COLLECT COD|TRUCK|r deposits. slyly final pinto bea| +61704|369438|44453|2|36|54267.12|0.00|0.02|N|O|1998-04-12|1998-06-23|1998-04-13|COLLECT COD|RAIL| accounts dazzle above the| +61705|697298|34838|1|50|64763.00|0.04|0.08|N|O|1997-08-06|1997-07-25|1997-08-27|COLLECT COD|REG AIR| regular accoun| +61705|471418|8946|2|28|38902.92|0.08|0.06|N|O|1997-07-22|1997-06-20|1997-08-08|NONE|FOB|requests. careful decoys amo| +61705|118837|18838|3|14|25981.62|0.01|0.04|N|O|1997-05-29|1997-06-30|1997-06-10|NONE|TRUCK|des. slyly express i| +61705|280193|17709|4|24|28156.32|0.04|0.00|N|O|1997-07-26|1997-06-08|1997-08-01|NONE|MAIL|its wake furious| +61706|789479|14510|1|21|32937.24|0.01|0.02|N|O|1997-09-24|1997-08-23|1997-09-28|NONE|AIR|y regular requests wake c| +61706|760130|47676|2|27|32132.70|0.07|0.03|N|O|1997-06-24|1997-08-07|1997-07-04|COLLECT COD|REG AIR|ges wake across the slyly busy deposits. fu| +61706|498246|23265|3|22|27372.84|0.09|0.08|N|O|1997-09-20|1997-08-25|1997-10-18|DELIVER IN PERSON|TRUCK|unusual depe| +61706|5565|5566|4|45|66175.20|0.03|0.07|N|O|1997-06-09|1997-08-10|1997-06-29|DELIVER IN PERSON|FOB|fluffy requests. slyly ironic packages are| +61706|520449|7980|5|24|35266.08|0.04|0.06|N|O|1997-06-09|1997-09-04|1997-06-22|COLLECT COD|TRUCK|uses are carefully after the furiou| +61706|171790|46797|6|15|27926.85|0.01|0.07|N|O|1997-07-10|1997-08-22|1997-07-25|TAKE BACK RETURN|AIR|he carefull| +61706|259459|34470|7|38|53900.72|0.09|0.07|N|O|1997-09-21|1997-07-27|1997-09-30|DELIVER IN PERSON|FOB|ests nag according to | +61707|721007|21008|1|43|44202.71|0.03|0.00|R|F|1994-05-06|1994-05-15|1994-05-14|DELIVER IN PERSON|REG AIR|ffily fina| +61707|957802|32841|2|30|55792.80|0.03|0.04|A|F|1994-05-27|1994-04-09|1994-06-05|NONE|FOB| the tithes sleep after| +61707|776946|14492|3|37|74847.67|0.10|0.03|R|F|1994-05-12|1994-03-20|1994-05-29|NONE|SHIP|s use slyly silent requests.| +61707|125172|177|4|44|52675.48|0.07|0.00|R|F|1994-03-01|1994-03-21|1994-03-23|COLLECT COD|TRUCK|t fluffily slyly regular instructions. | +61707|763206|25722|5|1|1269.17|0.02|0.02|A|F|1994-06-13|1994-03-22|1994-06-26|NONE|SHIP| even deposits kindle blithely | +61708|258766|8767|1|17|29320.75|0.00|0.03|R|F|1992-05-03|1992-04-01|1992-05-06|NONE|SHIP|e furiously alongside of th| +61708|74055|49058|2|9|9261.45|0.01|0.02|R|F|1992-05-15|1992-03-22|1992-05-30|COLLECT COD|FOB|e furiously ironic inst| +61708|630697|18234|3|13|21159.58|0.00|0.06|R|F|1992-02-28|1992-03-17|1992-03-23|DELIVER IN PERSON|REG AIR|s need to sleep a| +61708|115826|40831|4|38|69989.16|0.04|0.07|R|F|1992-05-15|1992-04-16|1992-05-16|COLLECT COD|REG AIR|eodolites. even, unus| +61708|675648|25649|5|49|79556.89|0.08|0.04|R|F|1992-03-31|1992-05-03|1992-04-07|COLLECT COD|SHIP|ts sleep furiously qui| +61708|609040|21553|6|23|21827.23|0.01|0.06|R|F|1992-03-09|1992-03-23|1992-04-05|DELIVER IN PERSON|FOB| regular packages detect. carefully silen| +61709|737105|12134|1|1|1142.07|0.08|0.04|R|F|1993-09-07|1993-08-12|1993-09-27|NONE|AIR|ithely final dependencies sleep. car| +61709|510794|10795|2|21|37900.17|0.01|0.04|A|F|1993-09-02|1993-09-21|1993-09-14|COLLECT COD|REG AIR|nic deposits abo| +61709|900374|12893|3|15|20614.95|0.01|0.00|R|F|1993-08-04|1993-09-24|1993-08-31|NONE|RAIL|ages. ironic packages cajole quickly acco| +61710|26111|1112|1|19|19705.09|0.08|0.07|A|F|1992-12-11|1992-10-17|1992-12-16|COLLECT COD|AIR|ilent cour| +61710|842604|5121|2|21|32477.76|0.07|0.00|R|F|1992-08-29|1992-11-05|1992-09-02|TAKE BACK RETURN|TRUCK| to the fluffily unusu| +61710|633478|33479|3|8|11291.52|0.10|0.04|A|F|1992-09-16|1992-10-05|1992-10-01|DELIVER IN PERSON|MAIL|; fluffily r| +61711|304210|4211|1|44|53424.80|0.03|0.05|A|F|1994-10-25|1994-12-28|1994-11-11|COLLECT COD|MAIL| ironic deposits haggle | +61711|852303|39855|2|24|30126.24|0.03|0.00|R|F|1995-01-17|1994-12-09|1995-02-01|TAKE BACK RETURN|AIR| furiously. slyly | +61711|649957|37494|3|1|1906.92|0.06|0.03|R|F|1994-12-10|1995-01-12|1995-01-07|TAKE BACK RETURN|MAIL| beans cajole blithely.| +61736|98851|36355|1|8|14798.80|0.06|0.08|N|O|1996-09-05|1996-07-06|1996-09-21|TAKE BACK RETURN|AIR|lly slow dinos. furiously ironic accoun| +61736|373324|23325|2|8|11178.48|0.02|0.06|N|O|1996-09-16|1996-08-22|1996-09-23|COLLECT COD|MAIL| quickly unusual requests| +61736|447750|47751|3|32|54327.36|0.06|0.05|N|O|1996-08-16|1996-07-15|1996-09-10|DELIVER IN PERSON|REG AIR|ts nag car| +61736|320289|45302|4|43|56298.61|0.05|0.05|N|O|1996-08-29|1996-06-28|1996-09-20|DELIVER IN PERSON|AIR|ts haggle among the | +61736|83670|8673|5|37|61185.79|0.08|0.07|N|O|1996-06-08|1996-07-16|1996-07-07|DELIVER IN PERSON|TRUCK|s hinder carefully qu| +61736|227981|27982|6|19|36270.43|0.03|0.06|N|O|1996-09-21|1996-08-21|1996-10-08|COLLECT COD|REG AIR|fluffy, special | +61736|663235|13236|7|45|53919.00|0.08|0.03|N|O|1996-08-05|1996-07-19|1996-08-15|DELIVER IN PERSON|RAIL| the furiously | +61737|980451|30452|1|24|36753.84|0.10|0.03|R|F|1994-08-27|1994-08-31|1994-09-17|DELIVER IN PERSON|AIR|e packages. furiously special | +61737|427019|14544|2|21|19865.79|0.09|0.00|R|F|1994-10-30|1994-09-26|1994-11-24|NONE|AIR|he theodolites. packages cajole furiously| +61737|901028|38583|3|50|51449.00|0.02|0.06|A|F|1994-09-20|1994-09-05|1994-10-16|NONE|AIR|tes nag carefully b| +61738|768900|18901|1|20|39377.40|0.05|0.02|N|O|1997-02-27|1997-03-04|1997-03-11|COLLECT COD|MAIL|nic foxes. qui| +61738|897149|22184|2|18|20629.80|0.04|0.06|N|O|1996-12-29|1997-02-25|1997-01-28|DELIVER IN PERSON|SHIP|y alongsid| +61739|617855|42880|1|7|12409.74|0.07|0.04|N|O|1997-11-24|1998-01-08|1997-11-26|COLLECT COD|SHIP|less, close accounts| +61739|280175|17691|2|31|35809.96|0.00|0.02|N|O|1998-01-13|1998-01-13|1998-02-06|COLLECT COD|MAIL|ely silent requests are daring packages. pa| +61739|896547|46548|3|40|61740.00|0.09|0.00|N|O|1998-02-01|1997-12-21|1998-03-03|NONE|REG AIR|nal epitaphs ha| +61739|255519|43035|4|33|48658.50|0.05|0.01|N|O|1998-01-12|1998-01-23|1998-02-01|COLLECT COD|TRUCK|es. final instructions sleep furiously quic| +61739|503255|3256|5|20|25164.60|0.03|0.08|N|O|1997-11-10|1998-01-08|1997-11-19|NONE|REG AIR|deposits are ideas. express requests wake | +61739|199916|12420|6|19|38302.29|0.04|0.00|N|O|1998-01-15|1997-12-26|1998-01-30|DELIVER IN PERSON|REG AIR| carefully ironic instruc| +61739|975442|13000|7|50|75870.00|0.06|0.01|N|O|1997-12-21|1997-12-09|1998-01-08|COLLECT COD|RAIL|e slyly furiously final d| +61740|239188|1693|1|44|49595.48|0.02|0.08|A|F|1993-05-28|1993-05-21|1993-05-31|DELIVER IN PERSON|TRUCK|onic pinto beans enga| +61740|17012|42013|2|26|24154.26|0.04|0.08|A|F|1993-05-24|1993-07-12|1993-06-05|TAKE BACK RETURN|AIR|ing requests breach a| +61740|919528|32047|3|35|54161.80|0.03|0.07|A|F|1993-04-26|1993-07-01|1993-05-20|NONE|MAIL|tructions hang. re| +61740|494340|31868|4|3|4002.96|0.03|0.01|A|F|1993-05-12|1993-07-08|1993-05-27|DELIVER IN PERSON|AIR|ithely blithe theodolites. slyly regu| +61741|796492|9008|1|20|31769.20|0.05|0.02|N|O|1995-07-25|1995-08-07|1995-08-13|TAKE BACK RETURN|AIR|te slyly whithou| +61741|625204|12741|2|43|48554.31|0.02|0.07|N|O|1995-07-20|1995-09-07|1995-08-06|TAKE BACK RETURN|TRUCK|s. evenly express inst| +61742|358930|33945|1|27|53700.84|0.02|0.07|N|O|1995-09-06|1995-08-31|1995-09-25|NONE|REG AIR|ges. accounts | +61743|35877|48378|1|45|81579.15|0.06|0.04|N|O|1997-11-26|1997-11-11|1997-12-12|COLLECT COD|REG AIR| nag under the even instruct| +61743|977056|14614|2|37|41921.37|0.02|0.03|N|O|1997-12-08|1997-12-14|1997-12-31|COLLECT COD|SHIP|odolites wake about the specia| +61743|364123|1645|3|7|8309.77|0.09|0.08|N|O|1998-01-21|1997-12-16|1998-02-16|COLLECT COD|FOB|slyly regul| +61743|813133|682|4|28|29290.52|0.05|0.08|N|O|1998-01-24|1997-11-21|1998-01-30|DELIVER IN PERSON|AIR|efully ironic d| +61743|313799|26306|5|31|56196.18|0.03|0.00|N|O|1998-01-20|1997-12-01|1998-02-15|COLLECT COD|REG AIR|ng dependencies cajole furiousl| +61743|8915|8916|6|35|63836.85|0.04|0.03|N|O|1997-10-19|1997-12-23|1997-11-05|DELIVER IN PERSON|AIR|inal, regular theod| +61768|7523|32524|1|7|10013.64|0.07|0.03|A|F|1992-12-03|1992-10-22|1992-12-22|NONE|FOB|wake-- slyly eve| +61768|438306|13323|2|4|4977.12|0.04|0.03|R|F|1992-08-30|1992-10-23|1992-09-04|DELIVER IN PERSON|FOB|o the pending ideas. fur| +61768|607938|32963|3|15|27688.50|0.08|0.04|A|F|1992-11-28|1992-11-04|1992-12-17|DELIVER IN PERSON|RAIL|ep furiously furiously final re| +61769|674818|24819|1|43|77089.54|0.09|0.01|N|O|1995-10-04|1995-12-06|1995-10-19|DELIVER IN PERSON|AIR|ven instruct| +61769|660783|48323|2|26|45337.50|0.04|0.06|N|O|1995-11-22|1995-12-19|1995-12-06|TAKE BACK RETURN|SHIP| ironic packages nag.| +61769|778671|3702|3|22|38492.08|0.03|0.00|N|O|1995-09-28|1995-11-28|1995-10-12|COLLECT COD|REG AIR|to the unusual packa| +61769|109020|46527|4|5|5145.10|0.07|0.00|N|O|1995-10-19|1995-11-07|1995-11-14|DELIVER IN PERSON|REG AIR|nts haggle according to the ev| +61769|283228|8239|5|19|23012.99|0.03|0.05|N|O|1995-12-12|1995-11-15|1995-12-27|COLLECT COD|MAIL|quickly even acco| +61769|203884|3885|6|28|50060.36|0.04|0.04|N|O|1995-11-22|1995-11-10|1995-11-24|TAKE BACK RETURN|AIR|nusual, ironi| +61769|664787|2327|7|48|84084.00|0.00|0.00|N|O|1995-11-15|1995-11-27|1995-12-02|NONE|AIR| express theodolites? slyly regula| +61770|69574|32076|1|33|50937.81|0.05|0.03|A|F|1992-07-04|1992-09-06|1992-07-31|COLLECT COD|MAIL|, even pinto beans integra| +61770|328416|40923|2|39|56331.60|0.08|0.05|R|F|1992-07-07|1992-09-12|1992-07-25|DELIVER IN PERSON|RAIL|ly ironic requests alongside of | +61771|513934|13935|1|28|54541.48|0.02|0.00|A|F|1993-03-04|1993-03-24|1993-03-16|NONE|RAIL|he permanent, ironic packages | +61771|673042|10582|2|19|19285.19|0.06|0.03|R|F|1993-05-10|1993-03-20|1993-06-09|TAKE BACK RETURN|SHIP|re furiously. furiously fi| +61771|802473|14990|3|33|45389.19|0.03|0.04|A|F|1993-02-09|1993-03-12|1993-02-26|NONE|RAIL|ding to the c| +61771|146966|46967|4|29|58375.84|0.00|0.02|R|F|1993-03-18|1993-04-08|1993-04-13|TAKE BACK RETURN|SHIP|structions. reg| +61771|44761|19762|5|26|44349.76|0.01|0.01|R|F|1993-02-12|1993-03-18|1993-02-23|TAKE BACK RETURN|REG AIR|y pending ideas wake blit| +61771|292778|30294|6|22|38956.72|0.00|0.04|A|F|1993-05-12|1993-03-18|1993-05-26|TAKE BACK RETURN|SHIP|cies haggle along the slyly specia| +61772|443660|31185|1|12|19243.68|0.01|0.00|R|F|1994-01-16|1994-01-17|1994-01-25|DELIVER IN PERSON|REG AIR|ncies cajole quickly. even packages instead| +61772|577656|27657|2|8|13869.04|0.10|0.01|A|F|1994-02-19|1993-12-28|1994-03-21|TAKE BACK RETURN|RAIL|pending packages around | +61772|656875|44415|3|15|27477.60|0.01|0.01|A|F|1993-12-03|1994-01-15|1993-12-04|DELIVER IN PERSON|AIR|out the packages detec| +61772|82272|44774|4|24|30102.48|0.09|0.03|R|F|1994-03-14|1994-02-06|1994-04-08|DELIVER IN PERSON|SHIP|n excuses sleep slyly | +61773|208114|8115|1|4|4088.40|0.06|0.02|R|F|1993-12-25|1993-12-03|1994-01-18|TAKE BACK RETURN|MAIL|l pinto beans wake among the | +61773|766209|28725|2|27|34429.59|0.01|0.05|R|F|1993-12-17|1994-01-07|1994-01-12|TAKE BACK RETURN|REG AIR|ously along the regular requests. sl| +61773|670338|20339|3|32|41865.60|0.04|0.08|R|F|1993-11-21|1993-11-21|1993-11-26|DELIVER IN PERSON|REG AIR|endencies integrate among the | +61774|492561|42562|1|43|66802.22|0.09|0.01|A|F|1992-07-21|1992-05-25|1992-08-11|COLLECT COD|SHIP|ithely even pa| +61774|459879|9880|2|43|79070.55|0.09|0.02|R|F|1992-04-29|1992-06-22|1992-05-24|COLLECT COD|MAIL|p furiously unusual sentiments. tithes are | +61774|183684|46188|3|36|63636.48|0.06|0.01|A|F|1992-07-01|1992-06-11|1992-07-15|DELIVER IN PERSON|FOB| sleep slyly about the carefully speci| +61774|167501|17502|4|1|1568.50|0.06|0.00|R|F|1992-04-26|1992-05-19|1992-05-17|NONE|RAIL|express deposits. blithely regular co| +61774|185165|22675|5|38|47506.08|0.06|0.08|A|F|1992-05-10|1992-05-22|1992-05-14|NONE|TRUCK|uffily reg| +61774|52413|2414|6|13|17750.33|0.05|0.06|R|F|1992-05-27|1992-05-16|1992-06-19|COLLECT COD|TRUCK| impress slyly. quickly f| +61775|869392|31910|1|44|59899.40|0.07|0.02|A|F|1992-04-01|1992-02-20|1992-04-20|DELIVER IN PERSON|SHIP|tes x-ray. furiously final t| +61800|255258|30269|1|34|41250.16|0.10|0.08|A|F|1994-11-12|1994-11-12|1994-12-12|NONE|SHIP|efully pending deposits. busily regular | +61800|119416|44421|2|48|68899.68|0.00|0.06|R|F|1994-12-30|1994-12-16|1995-01-24|DELIVER IN PERSON|FOB|ven deposits eat stealthily bold reque| +61800|17879|30380|3|38|68281.06|0.08|0.04|A|F|1995-01-19|1994-12-03|1995-02-12|NONE|RAIL|ckly express pinto beans: | +61800|477083|2102|4|13|13780.78|0.05|0.00|R|F|1995-01-03|1994-11-27|1995-01-23|NONE|TRUCK| along the fluffily | +61800|330242|17761|5|10|12722.30|0.08|0.04|A|F|1994-11-02|1994-12-04|1994-11-08|COLLECT COD|REG AIR| of the blithely express foxes. bli| +61801|64147|39150|1|34|37778.76|0.00|0.08|A|F|1993-03-05|1993-03-27|1993-03-17|TAKE BACK RETURN|AIR|essly special foxes nag furiously ironic| +61801|115409|40414|2|8|11395.20|0.10|0.02|A|F|1993-01-24|1993-02-01|1993-01-29|TAKE BACK RETURN|AIR|ously. accounts affix blithely carefully ev| +61801|669263|44290|3|3|3696.69|0.10|0.07|A|F|1993-03-30|1993-03-08|1993-04-08|DELIVER IN PERSON|FOB|y courts nag quickly evenly even i| +61801|298037|48038|4|49|50715.98|0.09|0.02|A|F|1993-03-06|1993-01-29|1993-03-26|DELIVER IN PERSON|AIR|bold packages. final| +61801|93313|18316|5|1|1306.31|0.07|0.08|R|F|1993-04-24|1993-03-24|1993-04-25|NONE|RAIL|ts sleep blithely agai| +61802|505916|5917|1|13|24984.57|0.04|0.01|N|O|1996-07-07|1996-05-24|1996-07-27|TAKE BACK RETURN|REG AIR|dolites am| +61802|915446|15447|2|29|42380.60|0.08|0.03|N|O|1996-06-12|1996-05-21|1996-06-26|DELIVER IN PERSON|FOB|gside of the quickly ironic reque| +61803|188609|13616|1|21|35649.60|0.00|0.03|N|O|1995-12-17|1996-01-12|1995-12-19|NONE|REG AIR|ly express re| +61803|942407|42408|2|40|57974.40|0.09|0.08|N|O|1996-02-27|1995-12-25|1996-03-13|TAKE BACK RETURN|FOB|nd the blithely ironic foxes. furio| +61803|26135|13636|3|10|10611.30|0.00|0.05|N|O|1996-03-13|1996-01-16|1996-03-19|DELIVER IN PERSON|REG AIR|uickly with the even theodolit| +61803|249340|24349|4|28|36101.24|0.02|0.02|N|O|1996-01-18|1996-01-26|1996-02-03|TAKE BACK RETURN|AIR|ep blithely amon| +61803|652328|2329|5|42|53772.18|0.06|0.08|N|O|1995-12-06|1995-12-28|1995-12-19|TAKE BACK RETURN|SHIP|ly above the quickly unu| +61803|672365|34879|6|31|41457.23|0.05|0.01|N|O|1996-02-11|1996-02-18|1996-02-27|TAKE BACK RETURN|MAIL|ole boldly across the sl| +61804|607348|32373|1|12|15063.72|0.07|0.00|A|F|1994-03-12|1994-02-22|1994-04-05|COLLECT COD|SHIP|ly regular accounts. carefully regular p| +61804|682050|19590|2|47|48504.94|0.04|0.05|R|F|1994-03-23|1994-03-19|1994-04-10|TAKE BACK RETURN|AIR|s haggle slyly about the slyly ironic | +61804|212915|12916|3|32|58492.80|0.00|0.04|A|F|1994-02-17|1994-03-25|1994-03-10|COLLECT COD|REG AIR|requests acr| +61804|451639|26658|4|47|74758.67|0.03|0.07|R|F|1994-01-29|1994-03-15|1994-02-08|DELIVER IN PERSON|AIR|ully ironic packages| +61804|684168|46682|5|48|55302.24|0.06|0.00|R|F|1994-03-31|1994-03-30|1994-04-17|COLLECT COD|AIR| foxes snooze after th| +61804|805794|5795|6|33|56091.75|0.02|0.01|A|F|1994-03-24|1994-03-06|1994-04-11|TAKE BACK RETURN|REG AIR|eposits run quickly regular accoun| +61804|977623|27624|7|44|74825.52|0.00|0.03|R|F|1994-01-31|1994-03-08|1994-02-16|TAKE BACK RETURN|REG AIR| deposits cajole fluffily id| +61805|902527|15046|1|42|64238.16|0.08|0.06|A|F|1992-05-17|1992-04-05|1992-05-27|COLLECT COD|FOB|e quickly ironic courts detect among the sh| +61805|755508|18024|2|28|43777.16|0.02|0.08|R|F|1992-05-10|1992-03-02|1992-05-13|NONE|TRUCK|. pending theodolites are| +61805|811435|48984|3|20|26927.80|0.06|0.00|A|F|1992-03-25|1992-02-24|1992-03-31|NONE|REG AIR|fully pending instructions. | +61805|774497|49528|4|34|53429.64|0.03|0.08|R|F|1992-04-02|1992-04-20|1992-04-27|COLLECT COD|RAIL|r requests cajole furiously: carefull| +61806|339350|39351|1|48|66688.32|0.02|0.02|N|O|1998-05-04|1998-06-12|1998-05-17|COLLECT COD|RAIL| blithe packa| +61806|454319|16829|2|46|58571.34|0.05|0.05|N|O|1998-04-17|1998-06-27|1998-05-17|DELIVER IN PERSON|FOB|taphs haggle slyly final | +61806|726543|26544|3|25|39237.75|0.07|0.05|N|O|1998-06-03|1998-05-14|1998-06-05|COLLECT COD|RAIL|ding to the special re| +61806|4880|42381|4|27|48191.76|0.10|0.05|N|O|1998-04-25|1998-06-06|1998-04-26|COLLECT COD|MAIL|onic excuses. ironic packages wake ruthle| +61807|253304|40820|1|25|31432.25|0.06|0.07|A|F|1994-12-09|1995-01-12|1995-01-01|NONE|RAIL|x carefully. requests sleep | +61807|279047|29048|2|8|8208.24|0.07|0.00|A|F|1995-01-08|1994-12-26|1995-02-04|NONE|MAIL|ut the unus| +61807|937371|37372|3|48|67599.84|0.03|0.08|R|F|1995-02-06|1995-01-19|1995-02-09|DELIVER IN PERSON|REG AIR|deposits. ironic, regular dependen| +61832|303247|3248|1|47|58760.81|0.05|0.08|N|F|1995-06-11|1995-06-05|1995-06-22|DELIVER IN PERSON|AIR|olites haggle; quickly quick deposits doub| +61832|657393|44933|2|17|22956.12|0.00|0.00|N|O|1995-07-05|1995-06-11|1995-07-06|NONE|SHIP|ts. unusual, ironic escap| +61832|793397|5913|3|17|25336.12|0.00|0.04|A|F|1995-03-16|1995-06-03|1995-04-07|COLLECT COD|FOB|, daring attainments. quickly i| +61832|612907|12908|4|7|12739.09|0.02|0.02|N|O|1995-07-03|1995-05-03|1995-07-09|NONE|TRUCK|he regular foxes nag slyly acc| +61832|122920|47925|5|31|60230.52|0.04|0.04|N|F|1995-06-14|1995-05-07|1995-06-22|NONE|TRUCK|sleep furiously requests. final, ev| +61832|908474|33511|6|27|40025.61|0.00|0.02|A|F|1995-04-02|1995-04-15|1995-04-26|DELIVER IN PERSON|REG AIR|ing accounts are blith| +61832|716181|3724|7|25|29928.75|0.01|0.02|N|O|1995-07-11|1995-05-10|1995-08-04|NONE|AIR|. slyly even pinto be| +61833|850633|13151|1|8|12668.72|0.02|0.01|R|F|1993-03-17|1993-03-21|1993-04-16|DELIVER IN PERSON|MAIL|as haggle along| +61833|586326|36327|2|35|49430.50|0.09|0.05|A|F|1993-01-17|1993-02-13|1993-01-24|COLLECT COD|FOB|deas along th| +61833|377562|15084|3|22|36070.10|0.06|0.04|A|F|1993-03-03|1993-03-12|1993-03-08|COLLECT COD|RAIL|egular requests wake according to the care| +61833|678041|15581|4|26|26494.26|0.08|0.01|A|F|1993-04-28|1993-02-15|1993-05-10|NONE|SHIP| accounts. quickly express deposits | +61833|822272|34789|5|48|57323.04|0.10|0.06|R|F|1993-01-03|1993-03-16|1993-01-05|DELIVER IN PERSON|TRUCK|ng the blithely dar| +61833|914670|14671|6|24|40431.12|0.04|0.05|R|F|1993-01-26|1993-02-07|1993-02-14|TAKE BACK RETURN|FOB|daring deposits. regu| +61834|776439|26440|1|43|65162.20|0.04|0.00|N|O|1996-08-20|1996-09-24|1996-09-10|TAKE BACK RETURN|RAIL|egular packages| +61834|602162|14675|2|11|11705.43|0.00|0.00|N|O|1996-12-11|1996-09-24|1996-12-20|TAKE BACK RETURN|FOB|kly even request| +61834|533464|33465|3|41|61395.04|0.04|0.00|N|O|1996-10-03|1996-11-04|1996-10-29|TAKE BACK RETURN|SHIP| foxes. special packages sleep furious| +61834|925956|13511|4|46|91167.86|0.07|0.00|N|O|1996-11-29|1996-09-27|1996-12-25|COLLECT COD|MAIL|re furiously blithely e| +61835|479104|29105|1|47|50904.76|0.00|0.03|A|F|1993-11-29|1993-11-16|1993-12-13|NONE|AIR|all wake i| +61835|292780|17791|2|9|15954.93|0.01|0.00|R|F|1993-10-03|1993-12-01|1993-10-22|DELIVER IN PERSON|MAIL|st after the bold p| +61836|457144|7145|1|12|13213.44|0.05|0.02|A|F|1995-06-15|1995-06-14|1995-06-17|TAKE BACK RETURN|FOB| slyly bold excuses hinder silent, ironi| +61836|211027|36036|2|35|32830.35|0.03|0.07|N|F|1995-06-08|1995-06-01|1995-07-01|DELIVER IN PERSON|AIR|the ironic foxes. blithe| +61836|729228|29229|3|42|52801.98|0.01|0.08|A|F|1995-06-12|1995-06-02|1995-06-16|NONE|TRUCK|lyly permanent excuses;| +61836|119008|44013|4|19|19513.00|0.10|0.04|N|O|1995-08-27|1995-07-11|1995-09-03|NONE|REG AIR| furiously pending | +61836|154685|29692|5|23|40012.64|0.03|0.05|N|O|1995-07-21|1995-06-03|1995-07-22|TAKE BACK RETURN|RAIL|riously bold pinto beans sleep accounts. fu| +61837|397462|22477|1|7|10916.15|0.10|0.01|R|F|1992-08-02|1992-07-17|1992-08-08|NONE|MAIL|ions sleep against the furi| +61837|138737|13742|2|12|21308.76|0.10|0.03|R|F|1992-08-26|1992-07-17|1992-09-07|NONE|RAIL|usly along| +61837|746962|34505|3|40|80357.20|0.04|0.08|R|F|1992-08-08|1992-08-19|1992-08-28|NONE|TRUCK|cross the | +61837|186023|48527|4|6|6654.12|0.00|0.06|A|F|1992-08-25|1992-08-02|1992-09-04|TAKE BACK RETURN|TRUCK|hrough the accounts sleep ac| +61837|475370|389|5|20|26907.00|0.07|0.06|R|F|1992-07-02|1992-08-10|1992-07-03|COLLECT COD|TRUCK|regular braids promise carefully package| +61838|52986|27989|1|32|62047.36|0.03|0.00|A|F|1992-12-12|1993-01-07|1992-12-23|DELIVER IN PERSON|SHIP| affix carefully quickl| +61839|442454|42455|1|1|1396.43|0.00|0.07|N|O|1996-09-10|1996-08-19|1996-09-12|DELIVER IN PERSON|TRUCK|late carefully. blithely final| +61839|309222|46741|2|50|61560.50|0.10|0.06|N|O|1996-08-03|1996-07-31|1996-08-27|COLLECT COD|AIR|counts. special d| +61839|91577|4079|3|27|42351.39|0.06|0.07|N|O|1996-09-04|1996-07-28|1996-09-21|NONE|AIR|bold dependencies. | +61839|131854|31855|4|26|49032.10|0.05|0.05|N|O|1996-07-18|1996-07-21|1996-08-10|NONE|REG AIR|t the slyly bold i| +61839|57940|20442|5|21|39856.74|0.08|0.08|N|O|1996-06-17|1996-08-12|1996-06-19|TAKE BACK RETURN|TRUCK|ly express attainments. blithely final a| +61839|783966|8997|6|9|18449.37|0.01|0.04|N|O|1996-08-13|1996-07-08|1996-08-17|DELIVER IN PERSON|MAIL|cording to the express pinto beans. careful| +61839|116134|16135|7|42|48305.46|0.06|0.04|N|O|1996-05-22|1996-08-08|1996-05-26|TAKE BACK RETURN|FOB|lose instruction| +61864|848737|36286|1|33|55627.77|0.06|0.05|N|O|1996-07-06|1996-07-10|1996-07-11|NONE|SHIP|o beans. silently unusual r| +61864|719323|19324|2|46|61745.34|0.06|0.06|N|O|1996-08-07|1996-08-03|1996-08-11|TAKE BACK RETURN|FOB| among the final pearls. furiously bold| +61865|954457|42015|1|50|75570.50|0.05|0.01|N|O|1997-02-13|1997-02-04|1997-03-01|DELIVER IN PERSON|TRUCK|nal accounts sleep against the | +61865|548983|48984|2|28|56894.88|0.06|0.03|N|O|1997-03-11|1997-01-21|1997-03-15|NONE|RAIL| even ideas haggle across the blithely spec| +61865|751592|14108|3|39|64098.84|0.02|0.01|N|O|1997-03-08|1997-01-06|1997-04-06|COLLECT COD|REG AIR|ray slyly alon| +61866|557208|7209|1|44|55667.92|0.09|0.07|N|O|1996-10-17|1996-11-08|1996-11-03|DELIVER IN PERSON|MAIL|. deposits ar| +61866|987210|24768|2|10|12971.70|0.02|0.01|N|O|1996-12-13|1996-12-16|1997-01-05|TAKE BACK RETURN|MAIL|counts are fur| +61866|35323|10324|3|24|30199.68|0.04|0.04|N|O|1996-12-27|1996-11-10|1997-01-25|NONE|MAIL|ly regular accounts wake quickly final | +61866|666728|29242|4|18|30504.42|0.01|0.07|N|O|1996-10-20|1996-11-06|1996-10-24|COLLECT COD|RAIL|eposits hinder blithe| +61866|695970|20997|5|49|96331.06|0.05|0.03|N|O|1997-01-26|1996-11-27|1997-02-09|TAKE BACK RETURN|REG AIR|kages sleep. furiously regular account| +61867|775617|648|1|49|82936.42|0.06|0.07|R|F|1994-07-01|1994-07-02|1994-07-21|COLLECT COD|REG AIR|usly according to the careful| +61868|170560|20561|1|37|60330.72|0.06|0.02|R|F|1994-08-27|1994-10-02|1994-09-22|DELIVER IN PERSON|FOB|ts-- special theodolites cajole. quickly| +61869|111589|49096|1|26|41615.08|0.05|0.01|A|F|1993-07-29|1993-08-13|1993-08-13|TAKE BACK RETURN|AIR|g accounts wake | +61869|470613|33123|2|29|45924.11|0.01|0.03|R|F|1993-08-12|1993-07-09|1993-08-24|DELIVER IN PERSON|TRUCK|, special warthogs wake silent| +61869|579500|42012|3|48|75815.04|0.02|0.05|R|F|1993-09-05|1993-07-01|1993-09-07|DELIVER IN PERSON|SHIP|ly after the| +61869|642065|4578|4|39|39274.17|0.10|0.01|R|F|1993-06-22|1993-07-29|1993-07-18|DELIVER IN PERSON|FOB|asymptotes x-ray blithely. quickly express | +61869|182403|44907|5|22|32678.80|0.00|0.06|R|F|1993-07-31|1993-07-27|1993-08-01|COLLECT COD|RAIL|ly pending| +61869|637465|25002|6|41|57499.63|0.06|0.02|A|F|1993-06-24|1993-07-08|1993-07-02|COLLECT COD|RAIL|iously final pinto beans. eve| +61869|859956|47508|7|2|3831.82|0.01|0.05|R|F|1993-06-12|1993-08-05|1993-06-26|TAKE BACK RETURN|AIR|ic requests. final foxes cajole fu| +61870|279662|29663|1|20|32833.00|0.02|0.05|N|O|1996-06-25|1996-06-03|1996-07-03|NONE|RAIL|ly. excuses along the final, even request| +61870|267685|17686|2|10|16526.70|0.01|0.03|N|O|1996-07-27|1996-06-03|1996-08-03|NONE|MAIL|sleep. bravely regular pa| +61871|586985|24519|1|30|62158.80|0.09|0.08|A|F|1993-07-16|1993-07-24|1993-07-17|NONE|FOB|eas boost about the slyly silent excus| +61871|451186|13696|2|33|37526.28|0.04|0.00|R|F|1993-07-03|1993-08-15|1993-07-22|COLLECT COD|MAIL|al notornis wake slyly. | +61871|72938|10442|3|25|47773.25|0.07|0.02|R|F|1993-08-29|1993-08-09|1993-09-15|COLLECT COD|SHIP| instructions snooze quickly furi| +61871|859909|47461|4|36|67278.96|0.01|0.02|R|F|1993-07-06|1993-07-09|1993-08-01|NONE|SHIP|nal ideas are af| +61896|594180|19203|1|29|36950.64|0.06|0.04|R|F|1992-03-17|1992-04-30|1992-04-06|DELIVER IN PERSON|FOB|ackages. furiously express ideas snooze qu| +61896|367738|30246|2|32|57783.04|0.09|0.03|A|F|1992-04-23|1992-04-21|1992-04-25|TAKE BACK RETURN|AIR| snooze furiously. regular, ex| +61896|562131|24643|3|48|57269.28|0.06|0.04|R|F|1992-05-08|1992-05-08|1992-05-10|NONE|MAIL|ipliers cajole slyly. furiously regular | +61896|726843|1872|4|8|14958.48|0.03|0.08|A|F|1992-07-10|1992-05-25|1992-07-23|COLLECT COD|RAIL| x-ray quickly. stealthily bold requests| +61896|35483|10484|5|14|19858.72|0.01|0.02|R|F|1992-04-07|1992-04-26|1992-04-21|DELIVER IN PERSON|RAIL|ully unusual ideas. depths integrat| +61897|786830|11861|1|46|88172.80|0.10|0.01|N|O|1995-07-14|1995-08-03|1995-08-02|TAKE BACK RETURN|FOB|ng the slyly express theodolites. bl| +61897|247099|34612|2|43|44981.44|0.02|0.05|N|O|1995-07-08|1995-08-09|1995-07-24|COLLECT COD|REG AIR|ily. fluffily| +61897|988998|14037|3|41|85564.95|0.03|0.07|N|O|1995-07-09|1995-07-06|1995-08-03|TAKE BACK RETURN|TRUCK| unusual asymptotes ca| +61898|126119|26120|1|18|20611.98|0.07|0.03|N|O|1998-02-16|1998-03-19|1998-02-19|DELIVER IN PERSON|FOB|pending excuses among the ex| +61898|681219|6246|2|39|46807.02|0.01|0.04|N|O|1998-04-09|1998-02-26|1998-04-18|NONE|RAIL|uctions maintain. s| +61898|238706|1211|3|45|74011.05|0.09|0.00|N|O|1998-03-01|1998-04-26|1998-03-17|NONE|SHIP| fluffily unusual accounts haggle quic| +61898|916313|41350|4|11|14621.97|0.03|0.08|N|O|1998-02-15|1998-04-21|1998-02-17|DELIVER IN PERSON|TRUCK|luffily slow excuses. carefully f| +61898|468835|18836|5|18|32468.58|0.08|0.00|N|O|1998-02-07|1998-03-20|1998-03-01|NONE|TRUCK| nag quickly blithe, regular pinto be| +61898|694391|44392|6|43|59570.48|0.10|0.07|N|O|1998-03-17|1998-03-08|1998-04-05|DELIVER IN PERSON|AIR|ggle carefully against the careful| +61898|624974|37487|7|12|22787.28|0.03|0.01|N|O|1998-05-19|1998-03-01|1998-06-10|TAKE BACK RETURN|TRUCK|ly even packages haggle furiously a| +61899|925521|38040|1|2|3092.96|0.09|0.07|N|O|1996-01-03|1995-11-27|1996-01-11|DELIVER IN PERSON|SHIP|ding dependencies. slyl| +61899|228963|16476|2|5|9459.75|0.07|0.00|N|O|1996-01-02|1995-12-06|1996-01-17|TAKE BACK RETURN|RAIL|the express ins| +61900|615872|40897|1|43|76877.12|0.05|0.01|N|O|1997-09-18|1997-10-02|1997-09-28|COLLECT COD|MAIL|ithely regular exc| +61900|948381|10900|2|17|24298.78|0.10|0.08|N|O|1997-08-09|1997-09-05|1997-08-10|DELIVER IN PERSON|AIR|y final deposits? even r| +61900|426784|14309|3|36|61587.36|0.00|0.05|N|O|1997-10-18|1997-10-16|1997-11-07|TAKE BACK RETURN|SHIP|tegrate furiously; fluffily even pac| +61900|948375|23412|4|29|41276.57|0.07|0.05|N|O|1997-11-20|1997-10-08|1997-12-01|TAKE BACK RETURN|AIR|c ideas alo| +61900|328555|3568|5|26|41172.04|0.03|0.00|N|O|1997-09-01|1997-09-08|1997-09-12|DELIVER IN PERSON|MAIL| asymptotes. slyly bold ide| +61900|17596|17597|6|41|62057.19|0.08|0.02|N|O|1997-08-03|1997-10-05|1997-08-21|COLLECT COD|RAIL|against the un| +61901|499790|24809|1|15|26846.55|0.06|0.00|N|O|1997-06-17|1997-08-16|1997-06-30|COLLECT COD|RAIL|cial accounts| +61901|964559|39598|2|24|38964.24|0.10|0.03|N|O|1997-07-01|1997-07-23|1997-07-03|NONE|AIR|thely even excuses are about the| +61901|343043|30562|3|9|9774.27|0.09|0.03|N|O|1997-09-04|1997-07-16|1997-09-28|COLLECT COD|SHIP|nic foxes. unusual, iron| +61901|507581|45112|4|35|55599.60|0.05|0.08|N|O|1997-06-08|1997-08-04|1997-06-20|TAKE BACK RETURN|MAIL|about the reg| +61901|911981|37018|5|21|41851.74|0.00|0.04|N|O|1997-08-23|1997-08-20|1997-09-18|TAKE BACK RETURN|MAIL|c, regular foxes affix always fi| +61901|658392|33419|6|1|1350.36|0.05|0.07|N|O|1997-08-09|1997-08-10|1997-08-15|NONE|MAIL|s. carefully final patterns use slyl| +61901|581444|31445|7|39|59491.38|0.02|0.06|N|O|1997-05-29|1997-07-21|1997-06-03|NONE|MAIL|o beans-- ideas haggle! blithely ironic p| +61902|323817|48830|1|42|77313.60|0.07|0.04|N|O|1995-06-23|1995-05-14|1995-07-16|COLLECT COD|TRUCK| ideas. fluffily regular plate| +61902|386558|24080|2|27|44402.58|0.10|0.08|N|O|1995-07-02|1995-05-24|1995-07-24|COLLECT COD|MAIL|hes. accounts integrate q| +61902|877758|40276|3|21|36449.91|0.00|0.04|R|F|1995-06-11|1995-06-05|1995-06-15|COLLECT COD|AIR| around the express| +61902|471999|9527|4|12|23651.64|0.06|0.07|N|O|1995-07-04|1995-05-31|1995-07-05|TAKE BACK RETURN|FOB|usly express excuses are carefu| +61902|880777|43295|5|5|8788.65|0.06|0.07|R|F|1995-05-14|1995-06-22|1995-05-23|DELIVER IN PERSON|AIR|xpress foxes| +61903|584937|47449|1|46|93007.86|0.09|0.01|N|O|1995-09-14|1995-12-03|1995-09-23|TAKE BACK RETURN|REG AIR| wake blithely carefully regular packages. | +61928|682072|19612|1|33|34783.32|0.07|0.02|N|O|1996-01-29|1996-01-03|1996-02-26|NONE|TRUCK|luffily across the furiousl| +61928|572169|34681|2|38|47163.32|0.05|0.06|N|O|1995-11-24|1995-12-28|1995-11-29|DELIVER IN PERSON|SHIP|hely along the unusual| +61928|430728|43237|3|25|41467.50|0.03|0.06|N|O|1995-12-01|1996-01-12|1995-12-27|DELIVER IN PERSON|REG AIR|nag furiously final, bold deposits: r| +61928|235273|22786|4|32|38664.32|0.03|0.06|N|O|1995-11-23|1995-12-26|1995-12-22|TAKE BACK RETURN|SHIP|rts. quickly pending Tiresias sleep| +61929|244526|44527|1|19|27939.69|0.02|0.08|R|F|1993-02-18|1993-02-26|1993-03-17|DELIVER IN PERSON|MAIL|regular excuses. carefully even | +61929|738533|13562|2|13|20429.50|0.08|0.03|A|F|1993-04-30|1993-03-07|1993-05-03|COLLECT COD|AIR|symptotes. ideas breach against the excuses| +61929|517414|42435|3|45|64412.55|0.05|0.06|A|F|1993-03-13|1993-03-26|1993-04-03|TAKE BACK RETURN|REG AIR|eposits dazzle. furiously fluffy excuses ha| +61929|174800|24801|4|25|46870.00|0.07|0.04|R|F|1993-02-06|1993-03-01|1993-02-10|NONE|MAIL|ermanently regular | +61929|849642|12159|5|4|6366.40|0.09|0.00|R|F|1993-03-25|1993-04-12|1993-04-15|NONE|REG AIR|s integrate against the furiously r| +61929|928134|40653|6|37|42997.33|0.05|0.03|A|F|1993-02-21|1993-03-22|1993-02-22|DELIVER IN PERSON|REG AIR|uests cajole blithely ruthlessly silent| +61929|141633|41634|7|42|70334.46|0.00|0.02|R|F|1993-03-19|1993-03-09|1993-04-04|COLLECT COD|AIR|inly even ideas affix final requests. sl| +61930|417908|17909|1|30|54776.40|0.02|0.01|N|O|1998-03-06|1998-03-24|1998-03-31|COLLECT COD|SHIP|requests. bold pinto | +61930|775977|38493|2|43|88276.42|0.03|0.06|N|O|1998-02-21|1998-02-25|1998-03-01|DELIVER IN PERSON|TRUCK|to beans n| +61931|137733|12738|1|46|81453.58|0.08|0.01|R|F|1993-09-16|1993-11-18|1993-09-28|COLLECT COD|FOB|ts. slyly final ideas use slyly. unusu| +61931|865186|2738|2|24|27627.36|0.01|0.02|R|F|1993-10-14|1993-10-11|1993-11-03|COLLECT COD|MAIL|ounts haggle quickly| +61931|178562|41066|3|34|55779.04|0.06|0.06|R|F|1993-09-11|1993-10-22|1993-10-01|COLLECT COD|AIR|re. furiously even excuses across the | +61931|82393|44895|4|39|53640.21|0.02|0.02|A|F|1993-10-23|1993-10-13|1993-10-28|TAKE BACK RETURN|TRUCK|e slyly ironic excuses. furiously| +61931|779010|29011|5|6|6533.88|0.01|0.05|A|F|1994-01-05|1993-11-25|1994-01-21|COLLECT COD|FOB|nts use flu| +61931|806436|43985|6|29|38929.31|0.08|0.02|R|F|1994-01-05|1993-11-28|1994-01-21|DELIVER IN PERSON|AIR|ual theodolites nag regu| +61932|499519|37047|1|37|56184.13|0.03|0.00|N|O|1995-09-19|1995-11-05|1995-10-13|NONE|AIR|o beans. unus| +61932|411874|49399|2|41|73219.85|0.05|0.04|N|O|1995-10-21|1995-11-16|1995-11-03|COLLECT COD|TRUCK|al requests| +61932|364764|14765|3|18|32917.50|0.09|0.07|N|O|1995-10-27|1995-11-28|1995-11-03|DELIVER IN PERSON|SHIP|haggle about the dependencies. deposits ca| +61933|953074|40632|1|15|16905.45|0.09|0.08|N|O|1996-04-07|1996-04-21|1996-04-15|DELIVER IN PERSON|REG AIR|oss the express pinto beans. blithely fin| +61933|313244|25751|2|18|22630.14|0.02|0.00|N|O|1996-02-17|1996-03-28|1996-03-16|DELIVER IN PERSON|SHIP|refully final | +61933|686222|23762|3|32|38662.08|0.07|0.04|N|O|1996-03-17|1996-02-27|1996-04-02|NONE|AIR| silent deposits. fluffily unusual fr| +61933|332808|7821|4|29|53382.91|0.04|0.06|N|O|1996-03-15|1996-03-03|1996-04-06|TAKE BACK RETURN|TRUCK|ajole. bli| +61933|503778|28799|5|48|85524.00|0.02|0.08|N|O|1996-03-08|1996-03-31|1996-03-21|TAKE BACK RETURN|REG AIR|dolphins. express| +61934|607950|20463|1|44|81748.48|0.02|0.04|R|F|1992-05-24|1992-04-13|1992-06-04|TAKE BACK RETURN|MAIL|dolphins. furiously ev| +61934|813841|38874|2|47|82475.60|0.06|0.08|A|F|1992-03-31|1992-03-11|1992-04-11|TAKE BACK RETURN|RAIL|ieve fluffily even ideas? furiously speci| +61934|218849|6362|3|9|15910.47|0.08|0.07|A|F|1992-03-17|1992-04-12|1992-04-10|COLLECT COD|REG AIR|s cajole quickly. regular escapades solve | +61934|189198|39199|4|49|63072.31|0.04|0.02|A|F|1992-04-09|1992-04-25|1992-04-10|NONE|REG AIR|es are sly| +61934|844102|44103|5|42|43934.52|0.07|0.08|A|F|1992-02-03|1992-03-14|1992-02-06|NONE|RAIL|eep about the silent, pending| +61935|498384|35912|1|31|42853.16|0.03|0.07|A|F|1993-08-08|1993-06-07|1993-08-18|DELIVER IN PERSON|AIR|dencies. unusual accounts are fluffil| +61935|330889|43396|2|23|44157.01|0.03|0.00|R|F|1993-08-14|1993-07-18|1993-09-04|DELIVER IN PERSON|FOB|osits. ironic, pending i| +61935|238835|1340|3|50|88691.00|0.08|0.06|R|F|1993-05-10|1993-05-26|1993-05-24|DELIVER IN PERSON|REG AIR|arefully slyly unusual dependencies. | +61935|91488|16491|4|11|16274.28|0.10|0.00|A|F|1993-06-08|1993-06-24|1993-07-07|NONE|TRUCK|furiously final packages: b| +61935|634755|47268|5|7|11828.04|0.04|0.04|A|F|1993-08-06|1993-06-21|1993-08-25|DELIVER IN PERSON|SHIP|he slyly e| +61935|325984|38491|6|40|80398.80|0.08|0.02|R|F|1993-06-18|1993-06-20|1993-06-20|NONE|TRUCK|ronic ideas caj| +61960|391048|16063|1|45|51256.35|0.06|0.05|N|O|1996-05-11|1996-04-16|1996-06-10|COLLECT COD|FOB|beans hang. ironic| +61961|488744|1254|1|15|25990.80|0.08|0.02|N|O|1996-01-18|1996-03-03|1996-02-13|NONE|AIR|heodolites engage quickly bold packages| +61961|316060|3579|2|2|2152.10|0.04|0.03|N|O|1996-03-07|1996-01-29|1996-03-18|DELIVER IN PERSON|SHIP|pinto beans i| +61961|18891|6392|3|26|47057.14|0.00|0.02|N|O|1996-03-20|1996-01-31|1996-04-07|NONE|RAIL|. instructions are bravely | +61962|828189|28190|1|23|25694.22|0.07|0.07|A|F|1994-08-20|1994-09-10|1994-09-12|TAKE BACK RETURN|REG AIR|excuses must wake alongside of the care| +61962|360791|35806|2|18|33332.04|0.00|0.03|R|F|1994-07-09|1994-07-24|1994-07-20|NONE|REG AIR|ounts. blithely fina| +61962|802438|39987|3|27|36190.53|0.08|0.05|R|F|1994-08-24|1994-08-31|1994-09-07|COLLECT COD|FOB|into beans may sleep. car| +61962|560755|23267|4|35|63550.55|0.06|0.02|R|F|1994-09-26|1994-08-31|1994-10-24|DELIVER IN PERSON|FOB|kages! frets are slyly furiously ironic | +61962|601354|1355|5|19|23851.08|0.02|0.01|A|F|1994-09-01|1994-08-28|1994-09-26|COLLECT COD|REG AIR| special requests about the blit| +61963|112043|37048|1|41|43256.64|0.06|0.01|A|F|1994-02-19|1994-02-11|1994-03-10|NONE|TRUCK|sts detect furiously blithely express dolph| +61964|883014|8049|1|6|5981.82|0.10|0.08|A|F|1993-06-30|1993-07-09|1993-07-09|NONE|SHIP|xes. caref| +61964|799855|24886|2|41|80147.62|0.01|0.02|R|F|1993-08-09|1993-08-07|1993-08-19|TAKE BACK RETURN|REG AIR|ges alongside of the f| +61964|150115|25122|3|43|50099.73|0.00|0.06|R|F|1993-05-26|1993-07-19|1993-06-22|DELIVER IN PERSON|REG AIR|. furiously unusual inst| +61964|978793|41313|4|40|74870.00|0.03|0.01|R|F|1993-08-29|1993-07-06|1993-09-20|COLLECT COD|TRUCK|thely regula| +61965|893488|43489|1|16|23703.04|0.08|0.02|N|O|1996-03-12|1996-04-03|1996-03-26|TAKE BACK RETURN|TRUCK|e the carefully regular deposits na| +61965|842605|5122|2|4|6190.24|0.09|0.03|N|O|1996-03-19|1996-04-02|1996-04-14|COLLECT COD|MAIL| accounts wake furiously. furiousl| +61965|649225|24250|3|32|37574.08|0.05|0.03|N|O|1996-03-16|1996-03-02|1996-03-24|TAKE BACK RETURN|REG AIR|gainst the fl| +61965|517800|17801|4|23|41808.94|0.08|0.02|N|O|1996-05-01|1996-03-05|1996-05-05|DELIVER IN PERSON|REG AIR|. slyly quiet foxes integrate ca| +61965|656661|31688|5|12|19411.56|0.00|0.07|N|O|1996-03-29|1996-04-06|1996-03-31|NONE|AIR|ual platelets. regula| +61965|498085|35613|6|48|51986.88|0.01|0.07|N|O|1996-04-14|1996-03-18|1996-04-15|NONE|MAIL|y stealthy| +61966|850093|37645|1|49|51109.45|0.08|0.01|N|O|1996-04-13|1996-04-02|1996-04-14|NONE|REG AIR|ven ideas. carefully express requests are b| +61966|506071|31092|2|7|7539.35|0.05|0.03|N|O|1996-05-23|1996-04-30|1996-06-10|NONE|MAIL|, express pinto beans. furiousl| +61966|525767|788|3|5|8963.70|0.07|0.03|N|O|1996-06-11|1996-04-09|1996-07-02|TAKE BACK RETURN|RAIL|y ironic requests. regular,| +61966|560361|22873|4|28|39797.52|0.03|0.01|N|O|1996-04-06|1996-05-04|1996-04-14|COLLECT COD|AIR| blithely regular accounts. furious| +61966|976763|1802|5|4|7358.88|0.09|0.02|N|O|1996-05-27|1996-05-03|1996-06-19|TAKE BACK RETURN|TRUCK|ular requests. express theodolite| +61966|439850|27375|6|10|17898.30|0.09|0.06|N|O|1996-04-06|1996-04-26|1996-04-15|NONE|RAIL|ously. car| +61967|1127|1128|1|10|10281.20|0.03|0.02|A|F|1992-02-19|1992-03-01|1992-02-23|NONE|AIR| cajole slyl| +61967|932410|44929|2|5|7211.85|0.09|0.06|A|F|1992-03-31|1992-02-20|1992-04-09|TAKE BACK RETURN|SHIP| regular, pending in| +61967|12559|37560|3|39|57390.45|0.00|0.04|A|F|1992-02-01|1992-03-14|1992-02-16|COLLECT COD|MAIL|he pending, final pinto beans. final foxes | +61967|77078|27079|4|43|45368.01|0.02|0.01|A|F|1992-01-16|1992-03-23|1992-01-27|DELIVER IN PERSON|SHIP|ithely regular | +61967|436230|48739|5|49|57144.29|0.04|0.08|R|F|1992-04-24|1992-03-06|1992-04-25|COLLECT COD|MAIL|ong the regular deposits. even fox| +61992|467033|17034|1|40|40000.40|0.07|0.07|N|O|1997-04-28|1997-03-30|1997-05-21|COLLECT COD|TRUCK|rges at the fluffily ironic accounts sl| +61992|408800|46325|2|42|71768.76|0.04|0.08|N|O|1997-03-02|1997-03-12|1997-03-03|DELIVER IN PERSON|AIR| sleep boldly furiously ironi| +61992|687725|25265|3|28|47955.32|0.05|0.03|N|O|1997-05-20|1997-03-18|1997-05-25|DELIVER IN PERSON|RAIL| requests should are slyly: carefully bol| +61993|802260|2261|1|25|29055.50|0.03|0.01|R|F|1993-06-20|1993-04-29|1993-06-25|NONE|MAIL|re. slyly unusu| +61993|582101|19635|2|33|39041.64|0.10|0.03|A|F|1993-06-06|1993-05-03|1993-06-19|NONE|TRUCK| regular depths | +61993|371489|46504|3|13|20286.11|0.00|0.06|R|F|1993-04-14|1993-06-14|1993-04-30|DELIVER IN PERSON|RAIL|r the slyly ironic packa| +61993|602150|14663|4|26|27355.12|0.04|0.04|A|F|1993-07-15|1993-05-12|1993-07-27|TAKE BACK RETURN|REG AIR|ing, ironic deposit| +61993|328147|3160|5|25|29378.25|0.04|0.03|A|F|1993-06-11|1993-05-24|1993-07-08|TAKE BACK RETURN|REG AIR|ress slowly about the quickly e| +61994|116457|28960|1|16|23575.20|0.03|0.05|N|O|1995-10-27|1995-11-14|1995-11-08|COLLECT COD|TRUCK|ual dependencies are ca| +61994|276927|39433|2|37|70444.67|0.00|0.00|N|O|1996-01-14|1996-01-01|1996-02-02|TAKE BACK RETURN|SHIP|quests. quickly bold| +61994|303810|3811|3|18|32648.40|0.04|0.02|N|O|1995-11-17|1995-11-21|1995-12-05|NONE|FOB|press instructions. furiously regular realm| +61994|124318|49323|4|42|56377.02|0.00|0.07|N|O|1995-11-03|1995-12-17|1995-11-13|COLLECT COD|TRUCK| final escapades wake. q| +61995|281425|6436|1|23|32347.43|0.03|0.01|A|F|1994-06-28|1994-07-15|1994-07-01|COLLECT COD|MAIL|inal ideas.| +61995|908188|45743|2|3|3588.42|0.05|0.03|A|F|1994-09-28|1994-08-07|1994-09-29|COLLECT COD|AIR|en, regular pinto beans. special sen| +61995|912254|37291|3|2|2532.42|0.10|0.05|A|F|1994-06-23|1994-08-07|1994-07-09|TAKE BACK RETURN|SHIP|blithely regular the| +61995|246280|46281|4|6|7357.62|0.01|0.08|A|F|1994-08-21|1994-09-04|1994-09-02|COLLECT COD|MAIL|e blithely unusual foxes. b| +61995|216694|4207|5|6|9664.08|0.06|0.01|R|F|1994-08-25|1994-08-16|1994-09-06|DELIVER IN PERSON|FOB|s wake furiou| +61996|827234|14783|1|3|3483.57|0.08|0.05|A|F|1995-01-22|1994-11-26|1995-02-07|DELIVER IN PERSON|TRUCK|slyly busy ideas run instructions. regular | +61996|317657|17658|2|33|55263.12|0.06|0.00|R|F|1994-12-10|1995-01-09|1995-01-06|DELIVER IN PERSON|RAIL|special foxes wake careful dolphins| +61996|858203|8204|3|43|49929.88|0.09|0.05|R|F|1994-12-12|1994-12-31|1995-01-05|TAKE BACK RETURN|TRUCK|uickly carefully even dependencies.| +61997|200068|69|1|19|18392.95|0.06|0.05|A|F|1993-04-24|1993-05-22|1993-04-27|TAKE BACK RETURN|TRUCK|refully sile| +61997|533138|8159|2|23|26935.53|0.01|0.02|A|F|1993-06-12|1993-05-21|1993-06-20|NONE|RAIL|packages along th| +61997|446042|21059|3|42|41496.84|0.07|0.02|A|F|1993-05-19|1993-06-10|1993-06-12|NONE|AIR|ong the ironic, silent packages. carefu| +61997|614332|39357|4|29|36142.70|0.05|0.07|A|F|1993-06-03|1993-05-27|1993-07-01|DELIVER IN PERSON|MAIL|ing packages nag slyly about t| +61997|75891|13395|5|49|91477.61|0.01|0.02|A|F|1993-05-02|1993-06-10|1993-05-14|NONE|RAIL|s hang furiously| +61997|491362|16381|6|13|17593.42|0.07|0.03|A|F|1993-04-13|1993-05-02|1993-04-28|TAKE BACK RETURN|MAIL|hless platelets hang after th| +61998|135941|48444|1|43|85008.42|0.09|0.05|A|F|1992-07-14|1992-09-09|1992-08-03|COLLECT COD|RAIL|ges on the regularly busy packages| +61998|756486|44032|2|32|49358.40|0.00|0.06|R|F|1992-09-10|1992-09-28|1992-10-01|DELIVER IN PERSON|TRUCK| the blithely| +61999|909194|21713|1|46|55344.90|0.08|0.02|N|O|1997-08-26|1997-08-10|1997-09-24|NONE|TRUCK|ound the bold hockey players. r| +61999|821446|33963|2|9|12306.60|0.05|0.04|N|O|1997-07-05|1997-07-25|1997-07-28|COLLECT COD|MAIL|y. carefully fina| +61999|30612|5613|3|23|35480.03|0.01|0.07|N|O|1997-07-04|1997-08-14|1997-07-17|DELIVER IN PERSON|AIR|ake furiously ac| +61999|495114|7624|4|12|13309.08|0.04|0.01|N|O|1997-07-28|1997-07-21|1997-07-31|COLLECT COD|TRUCK|ilently ironic depend| +62024|139818|14823|1|21|39014.01|0.02|0.04|A|F|1993-11-13|1993-10-08|1993-12-07|TAKE BACK RETURN|RAIL|totes cajole after the instruc| +62024|912451|37488|2|5|7317.05|0.09|0.03|A|F|1993-09-13|1993-09-15|1993-09-19|COLLECT COD|AIR|y above the stealthy, spe| +62024|547646|10157|3|39|66051.18|0.05|0.02|R|F|1993-10-25|1993-10-29|1993-11-23|DELIVER IN PERSON|FOB|ts. even accounts cajole quickly even dep| +62025|995389|7909|1|17|25233.78|0.05|0.06|R|F|1993-06-26|1993-06-09|1993-07-07|COLLECT COD|FOB|ly special packag| +62025|500482|12993|2|42|62263.32|0.02|0.00|A|F|1993-05-17|1993-04-16|1993-05-19|NONE|FOB|ding deposits? regular, silent request| +62026|321227|46240|1|4|4992.84|0.07|0.04|N|O|1996-03-10|1996-02-01|1996-03-21|COLLECT COD|AIR| asymptotes. regular pack| +62026|861137|23655|2|23|25256.07|0.09|0.03|N|O|1995-12-02|1996-01-25|1995-12-14|DELIVER IN PERSON|TRUCK|e unusual packages. final theodolites bre| +62026|121997|34500|3|47|94892.53|0.07|0.05|N|O|1995-12-17|1995-12-24|1996-01-16|TAKE BACK RETURN|RAIL|arefully even theodolites. ac| +62026|389645|27167|4|26|45100.38|0.03|0.01|N|O|1996-02-03|1996-02-01|1996-03-02|TAKE BACK RETURN|TRUCK|side of the special packages na| +62026|751450|13966|5|49|73569.58|0.00|0.01|N|O|1995-12-25|1996-02-09|1995-12-27|NONE|MAIL|ress deposits are qu| +62027|550170|37704|1|49|59787.35|0.00|0.08|R|F|1994-07-09|1994-07-30|1994-07-14|NONE|RAIL|ronic dependencies against t| +62027|697063|9577|2|16|16960.48|0.02|0.06|R|F|1994-06-24|1994-07-20|1994-07-15|DELIVER IN PERSON|TRUCK|eans. final deposits must sleep fur| +62027|523226|23227|3|30|37476.00|0.05|0.02|R|F|1994-07-25|1994-06-21|1994-07-30|DELIVER IN PERSON|MAIL|ss deposits. slyly iron| +62027|856239|18757|4|12|14342.28|0.08|0.04|R|F|1994-06-01|1994-07-12|1994-06-25|NONE|RAIL| even instructions u| +62027|796489|21520|5|32|50734.40|0.09|0.02|A|F|1994-08-04|1994-06-23|1994-08-30|COLLECT COD|AIR|its nag carefully final instruct| +62027|580007|5030|6|10|10869.80|0.10|0.08|R|F|1994-05-30|1994-06-23|1994-06-22|DELIVER IN PERSON|FOB|thely fluffily regular pinto | +62028|3454|3455|1|48|65157.60|0.07|0.04|N|O|1997-10-03|1997-09-05|1997-10-30|DELIVER IN PERSON|AIR| furiously bold ideas sleep| +62028|50803|13305|2|7|12276.60|0.01|0.05|N|O|1997-10-04|1997-08-27|1997-10-09|DELIVER IN PERSON|RAIL|outs. slyly busy de| +62028|839817|14850|3|9|15810.93|0.07|0.07|N|O|1997-07-07|1997-07-19|1997-07-30|DELIVER IN PERSON|REG AIR|s haggle slyly according to the deposits. | +62029|678410|3437|1|44|61088.72|0.00|0.05|N|O|1997-01-29|1997-02-26|1997-02-24|DELIVER IN PERSON|MAIL|nding attainments. requests caj| +62029|24693|37194|2|31|50148.39|0.09|0.04|N|O|1996-12-25|1997-02-13|1996-12-29|TAKE BACK RETURN|SHIP|ect carefully final pin| +62029|6387|6388|3|33|42681.54|0.10|0.02|N|O|1996-12-09|1997-01-08|1996-12-16|TAKE BACK RETURN|REG AIR|ously. slyly final theodolites cajole furi| +62029|331314|31315|4|14|18834.20|0.06|0.02|N|O|1996-12-22|1997-02-03|1997-01-09|NONE|TRUCK|oost furiously.| +62029|381939|31940|5|42|84878.64|0.10|0.07|N|O|1997-01-30|1997-02-02|1997-02-26|DELIVER IN PERSON|RAIL|. blithely | +62030|925440|12995|1|49|71804.60|0.10|0.04|R|F|1992-05-24|1992-05-08|1992-06-05|COLLECT COD|TRUCK|nd the quickly ironic| +62030|856773|6774|2|27|46702.71|0.02|0.01|A|F|1992-02-29|1992-04-01|1992-03-08|TAKE BACK RETURN|SHIP|egular pinto beans. furiously even| +62030|783532|46048|3|2|3231.00|0.07|0.05|R|F|1992-02-22|1992-05-06|1992-02-26|NONE|SHIP| bold requests. carefully| +62030|816745|4294|4|42|69791.40|0.00|0.01|A|F|1992-05-17|1992-05-16|1992-05-23|DELIVER IN PERSON|MAIL|ly close packages | +62030|26021|38522|5|15|14205.30|0.00|0.00|A|F|1992-04-04|1992-05-15|1992-04-18|COLLECT COD|SHIP|lar foxes wake. final accounts r| +62030|325893|25894|6|29|55647.52|0.02|0.01|A|F|1992-05-14|1992-04-20|1992-06-01|DELIVER IN PERSON|RAIL| ironic realms along t| +62031|330355|30356|1|2|2770.68|0.10|0.05|N|O|1996-10-14|1996-09-10|1996-10-21|DELIVER IN PERSON|RAIL|kages cajole | +62031|276437|13953|2|42|59363.64|0.04|0.04|N|O|1996-10-18|1996-09-28|1996-11-17|DELIVER IN PERSON|RAIL|ructions solve furiously. silent, ironic| +62031|67245|4749|3|47|56975.28|0.07|0.02|N|O|1996-08-28|1996-10-28|1996-09-08|DELIVER IN PERSON|SHIP|y final accounts.| +62031|177622|15132|4|19|32292.78|0.07|0.00|N|O|1996-09-30|1996-10-11|1996-10-15|COLLECT COD|MAIL|osits around the | +62031|292811|5317|5|18|32468.40|0.10|0.07|N|O|1996-11-14|1996-09-17|1996-12-05|COLLECT COD|SHIP|al escapades. b| +62031|264498|2014|6|15|21937.20|0.03|0.08|N|O|1996-11-15|1996-09-10|1996-12-11|COLLECT COD|FOB| accounts may c| +62031|402988|2989|7|9|17018.64|0.01|0.00|N|O|1996-08-19|1996-11-01|1996-09-14|NONE|MAIL|rts wake special deposits. furious| +62056|6223|18724|1|41|46298.02|0.03|0.06|N|O|1997-11-29|1997-11-23|1997-12-19|DELIVER IN PERSON|AIR|uffily decoys. furiously fi| +62056|589549|2061|2|12|19662.24|0.09|0.01|N|O|1997-09-24|1997-11-10|1997-10-22|TAKE BACK RETURN|RAIL|onic deposits. | +62056|537845|37846|3|10|18828.20|0.06|0.03|N|O|1997-10-10|1997-11-28|1997-10-20|TAKE BACK RETURN|RAIL| carefully special pinto beans| +62057|925401|12956|1|17|24248.12|0.05|0.07|N|O|1995-10-21|1995-10-04|1995-10-31|TAKE BACK RETURN|MAIL|y about the quickly special theo| +62057|213673|13674|2|25|39666.50|0.02|0.08|N|O|1995-09-16|1995-10-11|1995-10-14|NONE|FOB|ic, silent theodolites. quickly final acc| +62057|191943|4447|3|47|95642.18|0.07|0.08|N|O|1995-08-28|1995-09-10|1995-09-19|TAKE BACK RETURN|AIR|fily even p| +62057|971815|46854|4|11|20754.47|0.01|0.05|N|O|1995-11-01|1995-08-23|1995-11-21|NONE|SHIP| are blithely slyly ironic foxes. final,| +62057|286031|23547|5|30|30510.60|0.04|0.07|N|O|1995-10-05|1995-10-06|1995-10-13|TAKE BACK RETURN|MAIL|d instead of the furiously | +62057|309227|21734|6|3|3708.63|0.01|0.02|N|O|1995-08-20|1995-09-06|1995-08-30|NONE|RAIL|ges boost furiously slyly even accounts. s| +62058|627197|14734|1|33|37097.28|0.10|0.08|N|O|1997-02-14|1997-03-06|1997-02-28|COLLECT COD|REG AIR|e above the evenly even deposits. slyly| +62058|283787|8798|2|44|77913.88|0.05|0.04|N|O|1997-02-26|1997-03-14|1997-03-26|DELIVER IN PERSON|RAIL|ly final pinto beans cajole. regular pla| +62058|602281|2282|3|2|2366.50|0.07|0.01|N|O|1997-03-19|1997-03-25|1997-04-01|TAKE BACK RETURN|MAIL|aggle fluffily| +62058|527670|27671|4|27|45836.55|0.08|0.02|N|O|1997-03-02|1997-03-11|1997-03-27|TAKE BACK RETURN|REG AIR|nt excuses wa| +62058|543601|43602|5|11|18090.38|0.00|0.05|N|O|1997-02-07|1997-01-30|1997-02-19|TAKE BACK RETURN|REG AIR|nts cajole carefull| +62059|181329|18839|1|9|12692.88|0.02|0.02|A|F|1992-02-16|1992-03-22|1992-02-26|NONE|AIR|c packages alongsid| +62059|593536|31070|2|3|4888.53|0.04|0.06|A|F|1992-03-01|1992-04-09|1992-03-06|TAKE BACK RETURN|TRUCK|ding foxes. fu| +62059|543259|5770|3|43|55995.89|0.01|0.03|R|F|1992-04-09|1992-04-29|1992-04-27|DELIVER IN PERSON|FOB|ing to the quick accounts. quickly express | +62059|541181|28712|4|50|61108.00|0.05|0.08|A|F|1992-04-15|1992-03-12|1992-05-09|COLLECT COD|RAIL|are quickly blithely regular instructions.| +62060|685394|47908|1|22|30345.92|0.01|0.02|A|F|1995-05-19|1995-03-12|1995-06-14|COLLECT COD|SHIP|ly regular accounts cajole among the blit| +62060|413126|38143|2|45|46759.50|0.00|0.02|R|F|1995-05-16|1995-04-09|1995-06-01|NONE|MAIL|y final requests. final warh| +62060|392222|42223|3|23|30226.83|0.10|0.00|A|F|1995-04-23|1995-04-20|1995-05-11|NONE|SHIP|lly regular packages; accoun| +62060|74607|12111|4|39|61682.40|0.09|0.00|R|F|1995-03-23|1995-03-12|1995-03-26|NONE|SHIP|s haggle blithely. even dependencies ca| +62061|452145|2146|1|24|26330.88|0.03|0.01|A|F|1994-07-22|1994-06-30|1994-08-19|COLLECT COD|TRUCK| instructions along the | +62061|200635|38148|2|27|41461.74|0.01|0.07|R|F|1994-07-28|1994-06-27|1994-08-20|NONE|RAIL|theodolites sleep pending requests. fr| +62061|69945|32447|3|39|74682.66|0.01|0.06|R|F|1994-08-01|1994-06-16|1994-08-25|DELIVER IN PERSON|FOB|fully regular instr| +62061|554708|29731|4|32|56405.76|0.03|0.01|R|F|1994-04-20|1994-06-17|1994-04-25|TAKE BACK RETURN|RAIL|atop the bold, unusual instructions. even | +62062|596791|34325|1|8|15102.16|0.10|0.08|N|O|1997-03-10|1997-03-30|1997-03-11|DELIVER IN PERSON|AIR|fully close deposits. slyly final packages| +62062|258940|33951|2|7|13292.51|0.08|0.06|N|O|1997-02-13|1997-04-05|1997-03-06|DELIVER IN PERSON|SHIP|urts haggle slowly express deposits. sly| +62063|545826|45827|1|27|50538.60|0.05|0.00|N|O|1997-11-30|1997-10-20|1997-12-17|NONE|REG AIR|ly regular instructions. caref| +62063|685333|47847|2|27|35594.10|0.06|0.04|N|O|1997-11-04|1997-11-30|1997-11-08|DELIVER IN PERSON|MAIL| silent no| +62063|389906|39907|3|18|35926.02|0.03|0.08|N|O|1997-10-16|1997-11-12|1997-11-01|DELIVER IN PERSON|MAIL|uriously express accounts cajole slyly aft| +62063|141801|4304|4|50|92140.00|0.09|0.01|N|O|1997-12-17|1997-12-01|1998-01-12|NONE|TRUCK|posits integrate. f| +62063|234783|9792|5|30|51533.10|0.01|0.01|N|O|1997-12-26|1997-10-20|1998-01-07|COLLECT COD|AIR|ts. express hocke| +62063|988223|38224|6|46|60314.28|0.06|0.05|N|O|1997-11-30|1997-10-08|1997-12-11|NONE|RAIL|the carefully unusual instructions. d| +62063|56025|43529|7|17|16677.34|0.10|0.03|N|O|1997-10-04|1997-11-04|1997-10-14|TAKE BACK RETURN|TRUCK|oxes. furiously express excu| +62088|601466|26491|1|3|4102.29|0.06|0.02|N|O|1997-07-12|1997-09-05|1997-07-13|NONE|AIR| fluffily | +62088|839022|39023|2|36|34595.28|0.02|0.00|N|O|1997-07-15|1997-07-21|1997-07-27|TAKE BACK RETURN|TRUCK|nal multipli| +62088|427552|40061|3|23|34029.19|0.03|0.05|N|O|1997-09-27|1997-08-13|1997-10-19|DELIVER IN PERSON|RAIL| are quickl| +62088|857846|20364|4|6|10822.80|0.05|0.07|N|O|1997-08-11|1997-09-16|1997-09-05|DELIVER IN PERSON|SHIP|ss ideas nag. furious packages| +62088|805493|30526|5|31|43351.95|0.06|0.04|N|O|1997-09-21|1997-08-13|1997-09-23|DELIVER IN PERSON|SHIP|. quickly | +62089|533626|21157|1|46|76341.60|0.09|0.06|R|F|1994-10-09|1994-10-21|1994-10-29|NONE|SHIP|ruthless, unusual deposi| +62090|318881|6400|1|23|43697.01|0.06|0.02|A|F|1993-03-02|1993-03-14|1993-03-09|NONE|RAIL|uriously express dependen| +62090|429525|42034|2|3|4363.50|0.02|0.08|R|F|1993-04-15|1993-04-27|1993-05-13|COLLECT COD|SHIP|. carefully| +62090|20919|45920|3|9|16559.19|0.06|0.05|R|F|1993-05-08|1993-05-05|1993-05-12|TAKE BACK RETURN|SHIP|t the final packages d| +62090|583619|46131|4|38|64698.42|0.05|0.06|R|F|1993-04-21|1993-04-17|1993-05-20|NONE|REG AIR|ng the instructions; carefu| +62091|566207|3741|1|1|1273.18|0.03|0.01|A|F|1993-08-20|1993-09-30|1993-08-25|DELIVER IN PERSON|TRUCK| pinto beans! regular asympt| +62091|236336|11345|2|12|15267.84|0.06|0.04|R|F|1993-12-05|1993-10-05|1994-01-04|DELIVER IN PERSON|MAIL|cajole carefully. regular excuses | +62091|83107|45609|3|37|40333.70|0.06|0.01|A|F|1993-11-05|1993-10-23|1993-11-30|DELIVER IN PERSON|FOB| nag ironically car| +62091|769234|6780|4|11|14335.20|0.06|0.00|R|F|1993-11-16|1993-10-18|1993-11-20|TAKE BACK RETURN|FOB|aggle carefully across the slyly| +62091|512468|24979|5|23|34050.12|0.08|0.02|A|F|1993-10-20|1993-09-22|1993-11-17|NONE|SHIP|re furiously pending, pendi| +62092|269840|44851|1|2|3619.66|0.02|0.08|R|F|1992-05-04|1992-06-03|1992-06-02|TAKE BACK RETURN|AIR|edly furious| +62093|258327|20833|1|41|52697.71|0.00|0.06|N|O|1998-08-06|1998-05-26|1998-08-28|COLLECT COD|FOB|lar accounts are qu| +62093|694462|19489|2|21|30585.03|0.02|0.08|N|O|1998-04-30|1998-06-12|1998-05-14|COLLECT COD|AIR|bove the unusual| +62093|808728|33761|3|14|22913.52|0.08|0.04|N|O|1998-08-14|1998-07-04|1998-09-02|DELIVER IN PERSON|MAIL|structions wake slyly| +62093|279054|4065|4|2|2066.08|0.10|0.00|N|O|1998-07-12|1998-07-25|1998-07-20|TAKE BACK RETURN|MAIL|equests. ironic attainment| +62093|45156|32657|5|20|22023.00|0.05|0.00|N|O|1998-07-24|1998-06-17|1998-08-15|DELIVER IN PERSON|MAIL|p furiously fluffily even packages. foxes | +62093|922143|22144|6|8|9320.80|0.02|0.07|N|O|1998-05-13|1998-06-22|1998-06-07|DELIVER IN PERSON|TRUCK|he quickly even deposits use after the fi| +62094|709851|9852|1|35|65128.70|0.10|0.03|R|F|1994-09-27|1994-08-28|1994-10-26|COLLECT COD|SHIP|! theodolites s| +62094|465152|40171|2|24|26811.12|0.02|0.04|R|F|1994-06-14|1994-08-01|1994-06-17|TAKE BACK RETURN|MAIL|xes above t| +62094|809161|46710|3|16|17121.92|0.09|0.03|R|F|1994-09-07|1994-07-06|1994-09-20|NONE|SHIP|out the fur| +62094|555847|18359|4|45|85626.90|0.03|0.06|A|F|1994-09-19|1994-08-20|1994-10-09|COLLECT COD|RAIL| sleep slyly along the foxes. furiou| +62094|118278|30781|5|25|32406.75|0.07|0.01|A|F|1994-07-14|1994-07-18|1994-07-29|COLLECT COD|SHIP|ake furiously | +62095|499085|11595|1|43|46614.58|0.00|0.02|A|F|1994-08-31|1994-08-27|1994-09-10|TAKE BACK RETURN|AIR|deposits are| +62095|118457|18458|2|28|41312.60|0.03|0.03|A|F|1994-08-07|1994-08-12|1994-08-23|NONE|REG AIR|ress theodolites. bold pinto be| +62095|905380|5381|3|48|66496.32|0.08|0.01|A|F|1994-07-06|1994-08-19|1994-07-15|COLLECT COD|RAIL|elets. furiously final pinto b| +62095|713432|975|4|32|46252.80|0.06|0.07|R|F|1994-08-17|1994-07-27|1994-08-19|COLLECT COD|TRUCK|tly even foxes among the carefully | +62120|934090|21645|1|2|2248.10|0.10|0.08|A|F|1994-08-22|1994-07-30|1994-09-16|TAKE BACK RETURN|AIR|r foxes. blithely pending co| +62120|247000|34513|2|15|14204.85|0.05|0.07|A|F|1994-08-27|1994-06-29|1994-09-14|DELIVER IN PERSON|SHIP|es around the slowly even asymptotes grow f| +62120|327734|2747|3|9|15855.48|0.02|0.05|A|F|1994-08-21|1994-07-26|1994-08-24|TAKE BACK RETURN|RAIL|s accounts. regular requests | +62120|219003|31508|4|11|10141.89|0.05|0.01|A|F|1994-06-25|1994-07-08|1994-06-26|NONE|REG AIR|. ideas against the carefully regular requ| +62120|767259|42290|5|44|58353.68|0.04|0.03|R|F|1994-07-14|1994-07-08|1994-07-19|COLLECT COD|TRUCK| carefully ironic pac| +62120|312281|12282|6|29|37504.83|0.01|0.07|R|F|1994-07-30|1994-07-17|1994-08-28|TAKE BACK RETURN|REG AIR|bove the final instructions solve accor| +62120|503467|15978|7|3|4411.32|0.00|0.08|A|F|1994-08-03|1994-06-15|1994-08-26|COLLECT COD|FOB|xpress deposits wake carefull| +62121|754434|16950|1|12|17860.80|0.06|0.05|R|F|1992-12-02|1993-01-27|1992-12-27|COLLECT COD|MAIL|carefully regular acc| +62121|755758|5759|2|27|48970.44|0.08|0.08|R|F|1993-02-28|1993-02-04|1993-03-12|NONE|RAIL|ncies use above the blithely special pinto | +62121|19580|19581|3|48|71979.84|0.00|0.06|R|F|1993-01-01|1993-01-27|1993-01-23|COLLECT COD|REG AIR|e slyly blithely reg| +62121|64728|39731|4|20|33854.40|0.01|0.08|R|F|1992-11-17|1993-02-01|1992-12-16|COLLECT COD|TRUCK|ending the| +62121|881278|31279|5|49|61702.27|0.05|0.08|R|F|1993-02-28|1993-01-15|1993-03-16|COLLECT COD|REG AIR|rays promise blithely | +62121|625913|38426|6|33|60683.04|0.03|0.06|R|F|1992-11-13|1992-12-15|1992-11-16|NONE|TRUCK| regular requests. fluffily blithe foxes al| +62121|708757|46300|7|38|67097.36|0.03|0.03|R|F|1993-02-19|1993-01-30|1993-03-11|DELIVER IN PERSON|AIR|nal packages sleep blithely | +62122|66329|16330|1|11|14248.52|0.03|0.08|N|O|1997-02-20|1997-01-04|1997-02-25|TAKE BACK RETURN|REG AIR|uriously i| +62123|348325|48326|1|5|6866.55|0.10|0.01|R|F|1995-03-05|1995-03-17|1995-03-21|DELIVER IN PERSON|AIR|ins sleep furio| +62124|572253|9787|1|50|66261.50|0.00|0.00|N|O|1998-09-26|1998-09-18|1998-10-06|NONE|MAIL|lly silent pinto be| +62124|856027|6028|2|17|16710.66|0.01|0.05|N|O|1998-09-10|1998-08-16|1998-10-08|COLLECT COD|MAIL| nag furiously above the | +62125|268815|31321|1|43|76703.40|0.03|0.07|N|O|1995-08-23|1995-07-06|1995-09-16|TAKE BACK RETURN|AIR|e dolphins. never final pla| +62125|965327|40366|2|44|61260.32|0.02|0.08|N|O|1995-08-06|1995-07-25|1995-08-20|DELIVER IN PERSON|AIR| the quickly special asymptotes. | +62125|239749|27262|3|47|79370.31|0.10|0.05|N|O|1995-06-19|1995-07-09|1995-07-07|COLLECT COD|MAIL|losely regular excuses are fur| +62126|875885|38403|1|9|16747.56|0.09|0.08|N|O|1996-10-08|1996-08-14|1996-10-20|COLLECT COD|REG AIR|ly special | +62126|998521|23560|2|24|38867.52|0.05|0.06|N|O|1996-09-25|1996-10-03|1996-09-29|TAKE BACK RETURN|AIR|. blithely unusual somas integrate fluffi| +62126|138044|547|3|7|7574.28|0.00|0.00|N|O|1996-10-31|1996-08-28|1996-11-02|COLLECT COD|MAIL|press pinto beans poach slyly sly| +62126|92246|4748|4|31|38385.44|0.09|0.01|N|O|1996-08-03|1996-08-19|1996-08-24|COLLECT COD|FOB|promise slyly. slyly regular somas wake s| +62126|373431|35939|5|12|18053.04|0.04|0.07|N|O|1996-10-08|1996-08-10|1996-10-13|DELIVER IN PERSON|RAIL|ly ironic, unusua| +62126|253770|16276|6|40|68950.40|0.03|0.05|N|O|1996-10-13|1996-09-26|1996-11-06|COLLECT COD|FOB|t the carefully u| +62126|111818|36823|7|12|21957.72|0.02|0.02|N|O|1996-10-31|1996-09-26|1996-11-06|TAKE BACK RETURN|MAIL|regular requests sl| +62127|323425|48438|1|33|47797.53|0.03|0.06|A|F|1995-01-04|1995-01-08|1995-01-11|DELIVER IN PERSON|MAIL|; busily unusual orbits according to the f| +62127|791073|41074|2|48|55873.92|0.02|0.06|R|F|1994-11-29|1995-01-19|1994-12-16|TAKE BACK RETURN|SHIP|y pending decoys. | +62127|563707|26219|3|48|84992.64|0.00|0.02|R|F|1995-03-07|1995-01-12|1995-03-17|NONE|REG AIR| packages. f| +62152|863693|38728|1|40|66266.00|0.05|0.02|N|O|1995-09-16|1995-09-06|1995-10-14|TAKE BACK RETURN|REG AIR|kly against the express | +62152|87637|139|2|39|63360.57|0.09|0.03|N|O|1995-09-08|1995-10-22|1995-09-27|COLLECT COD|AIR|s wake slyly ironic dugouts. slyly re| +62152|905109|5110|3|39|43448.34|0.10|0.04|N|O|1995-10-28|1995-10-19|1995-11-27|TAKE BACK RETURN|FOB|carefully. blithely stealthy requests a| +62152|163134|13135|4|11|13168.43|0.05|0.01|N|O|1995-11-13|1995-09-04|1995-11-16|NONE|FOB| to the silent, final theodolites sle| +62153|865655|40690|1|49|79409.89|0.08|0.00|A|F|1992-10-05|1992-12-15|1992-10-30|DELIVER IN PERSON|AIR|ronic requests. clo| +62153|62314|12315|2|9|11486.79|0.04|0.02|A|F|1992-11-17|1992-12-13|1992-11-23|TAKE BACK RETURN|AIR| even theodolites are blithely even ide| +62153|305599|30612|3|29|46532.82|0.05|0.07|A|F|1992-12-24|1992-12-07|1992-12-26|COLLECT COD|FOB|ck, pending accounts slee| +62153|199427|24434|4|19|29001.98|0.06|0.01|A|F|1992-11-24|1992-12-01|1992-11-28|COLLECT COD|FOB|ular dugouts. silently regular idea| +62154|959215|46773|1|34|43321.78|0.01|0.06|N|O|1998-08-28|1998-09-08|1998-09-27|TAKE BACK RETURN|TRUCK|ding to the deposits. slow | +62154|517736|42757|2|18|31566.78|0.03|0.01|N|O|1998-11-04|1998-09-23|1998-11-19|DELIVER IN PERSON|REG AIR|unusual, e| +62154|587086|24620|3|31|36364.86|0.09|0.03|N|O|1998-08-28|1998-08-13|1998-09-04|COLLECT COD|AIR|ily special packages nag furiously. request| +62155|906486|6487|1|35|52235.40|0.09|0.04|N|O|1995-06-19|1995-07-01|1995-06-25|COLLECT COD|SHIP|sits are pending accounts. slyly| +62155|301975|14482|2|44|86986.24|0.08|0.02|N|O|1995-06-21|1995-06-29|1995-06-23|COLLECT COD|RAIL|against th| +62155|287961|467|3|50|97447.50|0.08|0.01|N|O|1995-06-21|1995-07-05|1995-06-23|COLLECT COD|TRUCK|posits accordin| +62156|795464|20495|1|39|60817.77|0.09|0.04|N|O|1997-07-29|1997-08-28|1997-07-30|COLLECT COD|AIR|are carefully carefully quiet reque| +62156|348737|23750|2|38|67857.36|0.07|0.00|N|O|1997-10-23|1997-08-24|1997-11-10|DELIVER IN PERSON|MAIL|eodolites lose care| +62156|208800|8801|3|47|80313.13|0.02|0.04|N|O|1997-10-14|1997-09-16|1997-11-02|TAKE BACK RETURN|REG AIR| furiously regular | +62156|299210|24221|4|34|41112.80|0.07|0.07|N|O|1997-09-06|1997-09-13|1997-09-29|TAKE BACK RETURN|FOB|. quickly ironic packages wake | +62156|807248|44797|5|36|41587.20|0.01|0.03|N|O|1997-07-31|1997-08-28|1997-08-09|TAKE BACK RETURN|FOB|ins boost fluffily furious deposits. slyl| +62156|409810|47335|6|26|44714.54|0.07|0.00|N|O|1997-09-27|1997-09-14|1997-10-17|COLLECT COD|AIR|ckages haggle carefully. ironi| +62156|675721|13261|7|21|35630.49|0.06|0.08|N|O|1997-07-28|1997-09-22|1997-08-21|NONE|FOB|efully ironic ideas: slyly regular | +62157|827019|14568|1|6|5675.82|0.00|0.05|R|F|1994-12-20|1994-12-23|1994-12-23|TAKE BACK RETURN|AIR|iously unusual requests. careful| +62157|702970|40513|2|37|72998.78|0.04|0.07|A|F|1995-01-06|1995-02-05|1995-01-14|COLLECT COD|AIR|l ideas cajole sly| +62158|173623|36127|1|26|44112.12|0.04|0.05|N|O|1997-05-27|1997-07-10|1997-05-29|TAKE BACK RETURN|REG AIR| through the fluffi| +62158|75005|37507|2|42|41160.00|0.01|0.08|N|O|1997-09-19|1997-07-28|1997-10-05|COLLECT COD|AIR|integrate slyly about the f| +62158|608042|20555|3|1|950.01|0.00|0.06|N|O|1997-07-08|1997-06-29|1997-08-02|COLLECT COD|REG AIR|ly final fo| +62158|353413|3414|4|33|48391.20|0.04|0.06|N|O|1997-06-25|1997-08-22|1997-07-03|NONE|FOB|inal dependencies | +62158|806382|6383|5|43|55398.62|0.09|0.06|N|O|1997-08-29|1997-07-26|1997-09-18|DELIVER IN PERSON|FOB|egular dep| +62158|845759|45760|6|7|11932.97|0.08|0.05|N|O|1997-07-23|1997-08-17|1997-08-18|COLLECT COD|REG AIR|le requests. even theodolites nag alo| +62159|660973|23487|1|29|56084.26|0.10|0.07|A|F|1994-09-07|1994-09-27|1994-09-12|COLLECT COD|RAIL|fter the sl| +62159|965725|40764|2|17|30441.56|0.02|0.08|A|F|1994-11-30|1994-09-15|1994-12-17|NONE|AIR|r epitaphs sublate. slyly en| +62159|927107|14662|3|31|35155.86|0.07|0.01|R|F|1994-08-26|1994-10-15|1994-09-04|TAKE BACK RETURN|AIR|ly even acco| +62159|882532|45050|4|36|54521.64|0.05|0.06|A|F|1994-11-18|1994-09-07|1994-12-02|NONE|TRUCK| final foxes engage quickly silent pinto b| +62159|710606|35635|5|20|32331.40|0.10|0.04|R|F|1994-12-02|1994-10-30|1995-01-01|DELIVER IN PERSON|REG AIR| accounts shall de| +62159|139206|14211|6|23|28639.60|0.08|0.00|R|F|1994-11-20|1994-11-03|1994-12-19|TAKE BACK RETURN|MAIL| ruthlessly silent, even requests. f| +62159|629431|4456|7|44|59857.60|0.09|0.00|A|F|1994-08-16|1994-09-10|1994-08-31|TAKE BACK RETURN|RAIL|en, final foxes. ironic de| +62184|837031|24580|1|18|17423.82|0.00|0.07|A|F|1993-02-14|1993-01-25|1993-02-21|TAKE BACK RETURN|FOB|ns after the carefully express| +62185|127891|2896|1|36|69080.04|0.10|0.06|N|O|1998-02-15|1998-02-27|1998-03-08|DELIVER IN PERSON|MAIL|es are blithely express packages. furiously| +62185|449495|24512|2|27|39000.69|0.05|0.08|N|O|1998-03-23|1998-04-09|1998-03-29|NONE|REG AIR|orses. slyly final pinto beans boost| +62185|659696|47236|3|22|36424.52|0.06|0.02|N|O|1998-02-02|1998-04-18|1998-02-24|TAKE BACK RETURN|REG AIR|. slyly regular pack| +62186|216175|3688|1|30|32734.80|0.05|0.05|R|F|1993-12-10|1994-01-25|1994-01-04|NONE|FOB|es cajole slyly above the furi| +62187|646037|46038|1|19|18677.00|0.04|0.00|A|F|1992-03-28|1992-04-27|1992-04-15|NONE|AIR|ts boost ca| +62187|928435|28436|2|41|59998.99|0.00|0.03|R|F|1992-04-02|1992-05-15|1992-04-15|DELIVER IN PERSON|SHIP|ooze above the final theodo| +62187|196051|33561|3|7|8029.35|0.07|0.05|A|F|1992-03-27|1992-04-12|1992-04-07|COLLECT COD|SHIP|ily pending foxes. blith| +62187|20709|20710|4|19|30964.30|0.00|0.01|R|F|1992-06-03|1992-04-02|1992-07-03|NONE|AIR| above the special frets. blithely | +62187|49551|37052|5|23|34512.65|0.06|0.06|R|F|1992-04-26|1992-05-13|1992-04-29|TAKE BACK RETURN|TRUCK|beans. final forges agains| +62188|724920|24921|1|42|81685.38|0.02|0.02|A|F|1994-11-24|1994-09-23|1994-12-12|NONE|SHIP|ests boost slyly bold, ironic foxes.| +62188|725249|12792|2|7|8919.47|0.09|0.02|A|F|1994-09-26|1994-11-04|1994-10-24|DELIVER IN PERSON|SHIP| kindle instructions. blithely | +62189|987871|25429|1|43|84229.69|0.02|0.01|A|F|1994-02-05|1994-04-14|1994-03-06|DELIVER IN PERSON|FOB| dependencies haggle| +62189|132285|32286|2|21|27662.88|0.06|0.06|A|F|1994-04-07|1994-03-11|1994-04-16|TAKE BACK RETURN|TRUCK| attainments sleep fluff| +62189|307310|32323|3|4|5269.20|0.00|0.08|R|F|1994-05-15|1994-04-15|1994-05-31|DELIVER IN PERSON|RAIL|rts integrate carefully blithely even ac| +62189|948679|48680|4|17|29369.71|0.04|0.06|R|F|1994-05-11|1994-05-04|1994-05-21|DELIVER IN PERSON|TRUCK|lly. idly even i| +62190|72082|47085|1|32|33730.56|0.06|0.04|N|F|1995-06-11|1995-03-30|1995-06-19|DELIVER IN PERSON|MAIL|ve theodolites must sleep about the b| +62190|470488|45507|2|14|20418.44|0.04|0.00|A|F|1995-05-13|1995-03-18|1995-06-03|COLLECT COD|TRUCK|quietly regular accounts| +62190|480530|43040|3|17|25678.67|0.09|0.00|A|F|1995-03-31|1995-05-11|1995-04-07|COLLECT COD|SHIP|y final packages nag| +62190|259588|9589|4|32|49522.24|0.02|0.04|A|F|1995-03-22|1995-04-28|1995-04-03|NONE|AIR|al deposits. slyly even theodolites | +62191|177562|15072|1|47|77059.32|0.02|0.02|A|F|1993-01-15|1993-01-09|1993-02-03|DELIVER IN PERSON|AIR|oys. carefully reg| +62191|277973|27974|2|45|87793.20|0.06|0.01|A|F|1993-01-31|1993-02-15|1993-02-16|COLLECT COD|FOB|lar foxes; pending| +62191|891047|3565|3|31|32178.00|0.10|0.07|A|F|1993-01-28|1993-01-07|1993-02-16|TAKE BACK RETURN|AIR|l instructions. furiou| +62216|328881|16400|1|11|21008.57|0.01|0.01|A|F|1994-07-17|1994-08-18|1994-07-20|COLLECT COD|RAIL|ironic foxes can wake fluffily final pinto | +62216|487719|229|2|21|35840.49|0.08|0.07|R|F|1994-10-05|1994-09-02|1994-10-18|COLLECT COD|SHIP| are quickly regular dolph| +62216|90112|27616|3|13|14327.43|0.09|0.06|R|F|1994-08-21|1994-09-11|1994-09-09|NONE|FOB|egular instructions cajole caref| +62216|505659|5660|4|36|59926.68|0.08|0.05|R|F|1994-09-08|1994-09-12|1994-09-23|NONE|FOB|hely against the slyly exp| +62216|594515|7027|5|13|20923.37|0.07|0.06|R|F|1994-07-26|1994-09-13|1994-08-19|DELIVER IN PERSON|MAIL|r requests. exp| +62216|12123|24624|6|29|30018.48|0.05|0.08|A|F|1994-09-13|1994-08-20|1994-09-20|COLLECT COD|SHIP|; furiously | +62216|746478|21507|7|20|30488.80|0.05|0.05|A|F|1994-09-12|1994-07-30|1994-09-18|NONE|SHIP|sly ironic notorni| +62217|40815|40816|1|6|10534.86|0.08|0.04|N|O|1998-05-08|1998-04-25|1998-05-22|DELIVER IN PERSON|SHIP| the requests. slyly pend| +62217|969276|6834|2|45|60535.35|0.04|0.08|N|O|1998-03-07|1998-04-28|1998-03-26|COLLECT COD|SHIP|. platelets abo| +62217|614858|2395|3|43|76231.26|0.07|0.05|N|O|1998-05-22|1998-04-07|1998-05-25|COLLECT COD|REG AIR|requests boost b| +62218|538848|38849|1|13|24528.66|0.01|0.07|A|F|1992-08-20|1992-10-04|1992-09-07|COLLECT COD|FOB|whithout the enticingly even pinto beans. | +62218|412762|37779|2|9|15072.66|0.02|0.06|R|F|1992-07-27|1992-08-09|1992-08-19|TAKE BACK RETURN|AIR|ously quickly express theodolites. car| +62218|289486|14497|3|32|47215.04|0.08|0.04|R|F|1992-09-24|1992-08-10|1992-10-13|TAKE BACK RETURN|REG AIR|out the quickly regula| +62218|379697|17219|4|14|24873.52|0.09|0.08|A|F|1992-08-06|1992-08-23|1992-09-05|TAKE BACK RETURN|REG AIR|nic excuses. blit| +62219|523259|10790|1|46|58982.58|0.10|0.01|R|F|1992-06-24|1992-07-05|1992-07-06|TAKE BACK RETURN|TRUCK|furious de| +62219|408428|8429|2|11|14700.40|0.08|0.04|R|F|1992-09-05|1992-07-20|1992-09-16|TAKE BACK RETURN|MAIL|fully ruthless accounts wa| +62219|445131|32656|3|32|34435.52|0.05|0.07|R|F|1992-09-04|1992-07-16|1992-10-03|NONE|REG AIR|en accounts hinde| +62219|313514|13515|4|14|21385.00|0.06|0.03|R|F|1992-08-07|1992-07-08|1992-08-10|DELIVER IN PERSON|TRUCK|s. carefully spec| +62220|72714|35216|1|31|52288.01|0.10|0.00|N|O|1996-02-15|1996-04-25|1996-03-05|DELIVER IN PERSON|REG AIR| furiously silent grouc| +62220|102603|2604|2|26|41745.60|0.02|0.01|N|O|1996-03-14|1996-04-01|1996-03-23|COLLECT COD|MAIL| carefully ex| +62220|434185|9202|3|49|54838.84|0.07|0.05|N|O|1996-05-03|1996-03-24|1996-05-19|COLLECT COD|SHIP|riously. fluffily even deposits sleep | +62220|334184|9197|4|36|43854.12|0.04|0.03|N|O|1996-03-24|1996-03-26|1996-04-07|DELIVER IN PERSON|FOB|ecial dependencies wake furiously? slyly e| +62220|625401|25402|5|37|49075.69|0.03|0.08|N|O|1996-03-01|1996-03-27|1996-03-13|COLLECT COD|FOB| instructions haggle ironic, re| +62220|100541|13044|6|2|3083.08|0.10|0.04|N|O|1996-05-17|1996-04-30|1996-06-05|DELIVER IN PERSON|REG AIR|around the pe| +62221|241645|4150|1|17|26972.71|0.02|0.07|N|O|1996-08-22|1996-09-09|1996-09-09|NONE|MAIL|ecial somas. blithely even requests sleep.| +62221|316974|16975|2|25|49774.00|0.05|0.07|N|O|1996-09-13|1996-08-21|1996-09-30|DELIVER IN PERSON|RAIL|ve blithely slyly bold p| +62221|379080|29081|3|34|39408.38|0.06|0.01|N|O|1996-09-28|1996-08-09|1996-10-06|DELIVER IN PERSON|RAIL|ages was furiously regula| +62221|180907|43411|4|29|57649.10|0.06|0.01|N|O|1996-10-05|1996-08-03|1996-10-14|TAKE BACK RETURN|FOB| accounts doubt slyly. carefully fi| +62221|491035|28563|5|3|3078.03|0.01|0.03|N|O|1996-10-17|1996-08-15|1996-10-18|COLLECT COD|REG AIR|pending deposits. pinto bean| +62222|506460|6461|1|46|67456.24|0.07|0.05|A|F|1992-08-04|1992-07-21|1992-09-02|COLLECT COD|TRUCK|iously special, regular account| +62222|65466|40469|2|16|22903.36|0.09|0.02|A|F|1992-09-15|1992-08-31|1992-09-26|COLLECT COD|SHIP|ly after the furiousl| +62223|319630|7149|1|25|41240.50|0.02|0.05|N|O|1996-09-20|1996-08-19|1996-09-23|NONE|REG AIR|yly bold accounts use carefully regu| +62223|12245|49746|2|37|42817.88|0.00|0.06|N|O|1996-07-25|1996-09-19|1996-08-14|DELIVER IN PERSON|SHIP|pendencies cajole around the blithely iron| +62248|795212|45213|1|4|5228.72|0.05|0.01|R|F|1994-03-31|1994-04-22|1994-04-03|COLLECT COD|FOB|to beans boost care| +62248|123045|10552|2|29|30973.16|0.08|0.05|R|F|1994-04-25|1994-03-17|1994-05-07|COLLECT COD|TRUCK|never. slyly unusual platele| +62248|10848|10849|3|3|5276.52|0.10|0.04|R|F|1994-03-03|1994-03-26|1994-03-08|NONE|TRUCK|eans. furious| +62248|317597|17598|4|23|37135.34|0.08|0.01|R|F|1994-06-02|1994-03-25|1994-06-04|NONE|AIR| regular accou| +62248|841519|29068|5|1|1460.47|0.03|0.00|R|F|1994-05-05|1994-03-14|1994-05-15|NONE|REG AIR|requests? asymptotes are | +62248|395314|32836|6|19|26776.70|0.00|0.01|A|F|1994-04-26|1994-04-23|1994-04-30|NONE|AIR|ses. furiously ironic de| +62248|42246|17247|7|34|40400.16|0.09|0.01|R|F|1994-04-17|1994-04-18|1994-04-18|COLLECT COD|REG AIR|sleep at the furiously even idea| +62249|27386|39887|1|7|9193.66|0.07|0.07|N|O|1996-05-13|1996-04-01|1996-06-02|DELIVER IN PERSON|RAIL|c requests are care| +62249|276392|38898|2|9|12315.42|0.02|0.05|N|O|1996-02-21|1996-03-31|1996-03-21|COLLECT COD|RAIL|o beans use | +62249|306968|31981|3|4|7899.80|0.09|0.03|N|O|1996-03-29|1996-03-07|1996-04-09|DELIVER IN PERSON|AIR|inder blithely across the fluffily unus| +62249|202269|39782|4|29|33966.25|0.01|0.06|N|O|1996-04-11|1996-02-25|1996-05-05|TAKE BACK RETURN|TRUCK|ly special deposits. even th| +62249|524997|37508|5|46|93010.62|0.10|0.01|N|O|1996-04-17|1996-03-20|1996-04-24|COLLECT COD|SHIP|final foxes| +62249|614732|39757|6|44|72454.80|0.01|0.00|N|O|1996-03-13|1996-03-01|1996-03-18|TAKE BACK RETURN|RAIL|ing dolphins sleep slyly ironi| +62250|653986|3987|1|42|81477.90|0.01|0.07|N|O|1995-07-26|1995-08-03|1995-08-25|NONE|REG AIR|s shall nag carefully along the ca| +62250|534396|9417|2|26|37189.62|0.03|0.08|N|O|1995-08-13|1995-08-19|1995-09-12|NONE|RAIL|are carefully. silent packages| +62250|582655|20189|3|46|79930.98|0.00|0.04|N|O|1995-08-27|1995-08-13|1995-09-13|NONE|TRUCK|ng packages are careful| +62250|666468|16469|4|13|18647.59|0.09|0.07|N|F|1995-06-10|1995-08-06|1995-06-28|NONE|RAIL|ages. grouches grow quickly. quickly regula| +62251|458784|46312|1|41|71453.16|0.08|0.00|N|O|1998-01-30|1998-04-09|1998-02-20|DELIVER IN PERSON|AIR|ecial braids haggle| +62251|775140|37656|2|17|20656.87|0.08|0.03|N|O|1998-02-04|1998-04-07|1998-03-02|TAKE BACK RETURN|SHIP|ests. furiously regular acco| +62252|371717|21718|1|39|69759.30|0.07|0.04|A|F|1993-06-04|1993-06-20|1993-06-25|NONE|AIR| boost after the blithely f| +62252|443770|43771|2|4|6855.00|0.10|0.03|A|F|1993-07-28|1993-07-10|1993-08-06|NONE|RAIL|ven instructions. express, regular packa| +62252|440684|15701|3|5|8123.30|0.06|0.03|A|F|1993-06-23|1993-06-16|1993-07-02|TAKE BACK RETURN|SHIP| requests haggle at th| +62253|435946|23471|1|3|5645.76|0.03|0.07|N|O|1998-07-02|1998-04-23|1998-07-12|NONE|REG AIR|frets believe slyly along the slyly da| +62253|943781|6300|2|37|67515.38|0.02|0.07|N|O|1998-04-18|1998-06-18|1998-05-03|NONE|MAIL|lar requests. furiously silent| +62253|117736|30239|3|22|38582.06|0.07|0.08|N|O|1998-06-20|1998-06-19|1998-07-16|TAKE BACK RETURN|TRUCK|gle carefully quickly regular| +62253|783265|8296|4|50|67411.50|0.09|0.01|N|O|1998-05-26|1998-06-14|1998-06-14|DELIVER IN PERSON|FOB| cajole fluffily above the slyly | +62253|332595|32596|5|29|47199.82|0.01|0.06|N|O|1998-06-22|1998-05-08|1998-06-30|DELIVER IN PERSON|RAIL| final accounts doze car| +62254|840139|40140|1|42|45321.78|0.01|0.00|N|O|1997-09-16|1997-08-15|1997-10-04|TAKE BACK RETURN|TRUCK|lithely; quickly | +62255|353682|41204|1|38|65955.46|0.10|0.07|R|F|1994-08-11|1994-09-03|1994-09-05|NONE|RAIL|nusual deposits; furiously regular excuses| +62255|318182|30689|2|9|10801.53|0.05|0.01|A|F|1994-08-01|1994-07-24|1994-08-23|TAKE BACK RETURN|TRUCK|sts wake. carefully regular c| +62255|670632|45659|3|3|4807.80|0.02|0.02|A|F|1994-10-03|1994-09-02|1994-10-29|COLLECT COD|TRUCK|posits. acc| +62280|492200|29728|1|9|10729.62|0.08|0.00|R|F|1994-06-15|1994-05-31|1994-06-23|TAKE BACK RETURN|TRUCK|rious theodolites. carefu| +62280|394639|44640|2|11|19069.82|0.06|0.02|R|F|1994-06-07|1994-05-05|1994-06-17|TAKE BACK RETURN|TRUCK|y. carefully ironic excuses along the | +62280|686318|48832|3|16|20868.48|0.00|0.07|A|F|1994-06-17|1994-04-29|1994-07-03|DELIVER IN PERSON|TRUCK|carefully quiet ideas | +62281|467941|30451|1|35|66812.20|0.07|0.03|A|F|1993-04-04|1993-04-28|1993-05-01|TAKE BACK RETURN|REG AIR|ress requests cajole sometimes befo| +62281|676363|13903|2|46|61609.18|0.09|0.02|A|F|1993-02-19|1993-04-27|1993-02-22|TAKE BACK RETURN|SHIP| accounts | +62281|631768|44281|3|40|67989.20|0.00|0.08|A|F|1993-02-04|1993-03-24|1993-02-10|COLLECT COD|FOB|the ironic theodolites. quickly unusual rea| +62281|117156|42161|4|8|9385.20|0.07|0.05|A|F|1993-03-22|1993-03-30|1993-04-12|TAKE BACK RETURN|FOB|s. pending, ruthless requests use quickly.| +62281|32165|32166|5|42|46080.72|0.01|0.06|R|F|1993-02-09|1993-03-14|1993-03-05|COLLECT COD|RAIL|etimes quiet platelets beli| +62281|587752|25286|6|28|51512.44|0.10|0.02|R|F|1993-03-06|1993-04-13|1993-03-08|NONE|REG AIR|ts. boldly busy requests| +62281|340676|28195|7|8|13733.28|0.01|0.01|R|F|1993-02-04|1993-04-11|1993-02-15|NONE|MAIL|t fluffily above t| +62282|733902|21445|1|28|54204.36|0.00|0.00|R|F|1994-02-13|1994-02-23|1994-03-03|DELIVER IN PERSON|SHIP|hogs. slyly pending deposits affix bl| +62282|688797|13824|2|25|44644.00|0.08|0.07|R|F|1994-01-01|1994-01-16|1994-01-31|NONE|AIR|uriously final accounts. furiously pending | +62282|610549|10550|3|12|17514.12|0.02|0.05|R|F|1994-02-28|1994-02-16|1994-03-16|COLLECT COD|TRUCK| foxes nag according to the pla| +62283|871092|33610|1|20|21261.00|0.10|0.01|A|F|1993-08-01|1993-09-10|1993-08-16|DELIVER IN PERSON|SHIP|usly final theodolites are slyly dinos. | +62283|432647|45156|2|37|58445.94|0.06|0.01|R|F|1993-09-03|1993-10-20|1993-09-09|NONE|TRUCK|s haggle pla| +62284|658108|8109|1|20|21321.40|0.10|0.02|A|F|1992-12-18|1992-12-23|1992-12-27|NONE|RAIL|nding accounts sleep f| +62284|813870|13871|2|41|73137.03|0.07|0.00|R|F|1993-01-04|1992-12-11|1993-01-28|NONE|FOB|ts run qui| +62284|712490|37519|3|31|46576.26|0.03|0.05|R|F|1992-10-09|1992-11-12|1992-10-15|DELIVER IN PERSON|AIR|refully bold packages. blithely| +62284|803647|41196|4|36|55821.60|0.01|0.08|A|F|1993-01-24|1992-11-07|1993-01-25|NONE|TRUCK|nal ideas-- ironic ideas slee| +62284|894195|6713|5|17|20215.55|0.04|0.04|A|F|1993-01-27|1992-10-28|1993-02-13|TAKE BACK RETURN|REG AIR| dogged deposits. slyly final| +62284|719519|44548|6|17|26154.16|0.05|0.08|A|F|1992-12-23|1992-11-18|1993-01-04|NONE|MAIL|ckly regular packages cajole furio| +62285|130102|42605|1|27|30566.70|0.10|0.01|N|O|1998-07-07|1998-08-31|1998-08-06|COLLECT COD|SHIP|al epitaphs boost busily final dep| +62285|623012|48037|2|12|11219.76|0.07|0.03|N|O|1998-08-03|1998-08-08|1998-08-13|TAKE BACK RETURN|MAIL|r the blithe| +62285|951987|39545|3|16|32623.04|0.07|0.04|N|O|1998-07-29|1998-07-31|1998-08-06|COLLECT COD|REG AIR|hely among the care| +62285|32990|32991|4|29|55766.71|0.10|0.00|N|O|1998-07-31|1998-07-12|1998-08-18|COLLECT COD|SHIP|he blithely special deposits. | +62285|454474|29493|5|5|7142.25|0.08|0.00|N|O|1998-07-10|1998-08-23|1998-07-19|TAKE BACK RETURN|FOB|ke. blithely even instructions ought to| +62285|336019|48526|6|29|30595.00|0.09|0.03|N|O|1998-09-23|1998-07-11|1998-10-07|COLLECT COD|REG AIR|onic foxes above the unusual| +62286|699289|11803|1|44|56683.00|0.05|0.03|N|O|1996-11-13|1996-11-29|1996-11-16|DELIVER IN PERSON|SHIP|uffily final depo| +62286|937959|12996|2|19|37941.29|0.08|0.04|N|O|1996-11-16|1997-01-19|1996-12-12|COLLECT COD|AIR|r carefully asymptotes. reg| +62286|274698|37204|3|14|23417.52|0.03|0.04|N|O|1996-12-18|1996-12-25|1996-12-19|COLLECT COD|REG AIR|sits along the slyly even requests shall | +62286|844169|19202|4|38|42298.56|0.08|0.01|N|O|1996-11-05|1996-12-24|1996-11-10|COLLECT COD|MAIL|ully packages. bold asymptotes sleep fur| +62286|942030|42031|5|43|46095.57|0.08|0.00|N|O|1997-01-12|1996-12-17|1997-02-07|COLLECT COD|MAIL| instructions according to the c| +62287|496033|46034|1|47|48363.47|0.03|0.06|A|F|1993-08-30|1993-10-13|1993-09-20|DELIVER IN PERSON|AIR|e along the slyly regular accounts. bol| +62287|826413|26414|2|29|38841.73|0.10|0.08|A|F|1993-07-29|1993-10-02|1993-08-25|COLLECT COD|REG AIR|uriously fi| +62312|421708|34217|1|29|47260.72|0.04|0.06|N|O|1996-04-09|1996-02-22|1996-05-07|DELIVER IN PERSON|FOB| boost carefully slyly even excuses; u| +62312|645419|20444|2|44|60032.72|0.08|0.05|N|O|1995-12-30|1996-01-25|1996-01-04|TAKE BACK RETURN|RAIL|ubt fluffily-- furiously special pint| +62312|545872|8383|3|25|47946.25|0.03|0.06|N|O|1996-01-10|1996-01-31|1996-02-02|TAKE BACK RETURN|RAIL|e slyly. furiously ironic pinto beans nag f| +62312|456309|18819|4|16|20244.48|0.02|0.03|N|O|1996-02-11|1996-02-08|1996-02-12|NONE|FOB| unusual pack| +62312|177416|14926|5|30|44802.30|0.00|0.06|N|O|1996-02-22|1996-03-08|1996-03-20|COLLECT COD|SHIP|uests doze furiously above the regular | +62313|888781|38782|1|29|51322.46|0.06|0.04|R|F|1992-05-24|1992-06-27|1992-06-09|TAKE BACK RETURN|AIR|the fluffily express foxes. regular, reg| +62313|725470|499|2|39|58322.16|0.07|0.06|A|F|1992-08-07|1992-06-07|1992-08-18|DELIVER IN PERSON|FOB|ites wake blithely among the| +62313|966610|29130|3|27|45267.39|0.07|0.03|A|F|1992-07-03|1992-05-21|1992-07-25|TAKE BACK RETURN|AIR|nag fluffily about the regu| +62313|802280|39829|4|1|1182.24|0.04|0.08|A|F|1992-06-21|1992-05-22|1992-06-22|DELIVER IN PERSON|MAIL| ironic excuses are | +62313|916491|29010|5|1|1507.45|0.01|0.04|R|F|1992-07-29|1992-06-24|1992-08-19|DELIVER IN PERSON|FOB|xpress decoys wake requests: quickly | +62314|613684|26197|1|41|65503.65|0.07|0.01|A|F|1994-06-06|1994-06-22|1994-07-03|NONE|SHIP| ironic saute| +62314|176607|39111|2|43|72394.80|0.08|0.00|A|F|1994-05-12|1994-06-27|1994-05-29|TAKE BACK RETURN|FOB|ts. blithely final asympto| +62314|232234|19747|3|25|29155.50|0.10|0.03|R|F|1994-07-02|1994-06-14|1994-07-31|NONE|TRUCK|ove the car| +62315|910916|48471|1|45|86709.15|0.07|0.08|A|F|1994-04-26|1994-04-30|1994-05-10|NONE|RAIL|the slyly silent forges.| +62315|751048|38594|2|42|46158.42|0.05|0.02|A|F|1994-07-18|1994-06-14|1994-07-24|NONE|FOB|e slyly around the quickly even instru| +62315|862225|12226|3|9|10684.62|0.04|0.00|A|F|1994-06-30|1994-05-01|1994-07-23|COLLECT COD|REG AIR|kages use. furiously regular r| +62316|129398|29399|1|1|1427.39|0.09|0.04|R|F|1992-10-12|1992-11-29|1992-11-09|DELIVER IN PERSON|TRUCK|silently to t| +62316|781230|31231|2|2|2622.40|0.03|0.01|A|F|1992-10-09|1992-12-14|1992-11-01|DELIVER IN PERSON|RAIL| deposits. fluffily dogged| +62316|123183|23184|3|38|45834.84|0.08|0.00|A|F|1993-01-04|1992-10-25|1993-01-20|TAKE BACK RETURN|AIR| of the carefully| +62316|332979|32980|4|41|82490.36|0.04|0.08|A|F|1992-12-21|1992-11-07|1993-01-01|NONE|MAIL|final braids cajole furiously sly| +62316|368566|43581|5|29|47401.95|0.10|0.08|R|F|1992-11-27|1992-11-29|1992-11-29|DELIVER IN PERSON|TRUCK|jole caref| +62317|278190|15706|1|48|56072.64|0.06|0.06|N|O|1997-04-08|1997-03-13|1997-04-14|TAKE BACK RETURN|RAIL| careful deposits. regularly final ideas| +62318|749335|24364|1|35|48450.50|0.03|0.01|N|O|1995-12-20|1995-11-26|1996-01-02|TAKE BACK RETURN|SHIP|xes. final requests h| +62318|57970|7971|2|16|30847.52|0.07|0.07|N|O|1995-09-24|1995-11-22|1995-09-27|NONE|MAIL|old deposits| +62318|287022|12033|3|6|6054.06|0.01|0.07|N|O|1995-12-31|1995-11-09|1996-01-22|DELIVER IN PERSON|REG AIR|cording to the furiou| +62318|970542|33062|4|22|35475.00|0.01|0.03|N|O|1995-11-17|1995-11-02|1995-12-11|NONE|TRUCK|pending instructions ar| +62319|258223|8224|1|29|34255.09|0.09|0.08|A|F|1994-07-30|1994-07-30|1994-08-26|TAKE BACK RETURN|FOB|ing to the carefully c| +62319|951709|1710|2|31|54580.46|0.05|0.03|R|F|1994-06-07|1994-07-20|1994-07-04|TAKE BACK RETURN|AIR|g blithely above the regular platelets| +62319|368677|6199|3|31|54115.46|0.01|0.02|A|F|1994-08-12|1994-08-05|1994-09-09|NONE|AIR|uriously among the ironi| +62319|352723|27738|4|34|60374.14|0.02|0.08|R|F|1994-08-14|1994-08-30|1994-09-04|DELIVER IN PERSON|RAIL|nding accounts against the furi| +62319|209729|9730|5|50|81935.50|0.09|0.00|R|F|1994-09-12|1994-08-17|1994-10-01|TAKE BACK RETURN|TRUCK|refully ironic theodo| +62344|955847|18367|1|15|28542.00|0.01|0.06|R|F|1994-07-01|1994-06-18|1994-07-02|COLLECT COD|FOB|y epitaphs! regular, final deposits cajo| +62344|906594|19113|2|13|20807.15|0.07|0.06|A|F|1994-08-23|1994-08-09|1994-09-21|DELIVER IN PERSON|FOB|ss the furiously even packages. quickly exp| +62344|123398|35901|3|2|2842.78|0.00|0.08|A|F|1994-06-19|1994-07-30|1994-07-10|DELIVER IN PERSON|SHIP|s try to are car| +62344|945858|20895|4|12|22845.72|0.08|0.07|A|F|1994-08-27|1994-08-06|1994-09-08|NONE|SHIP|e slyly regular | +62344|26168|26169|5|1|1094.16|0.08|0.05|A|F|1994-06-20|1994-06-27|1994-07-15|NONE|SHIP|ely special excuses. special, | +62345|85229|47731|1|5|6071.10|0.05|0.05|A|F|1992-07-01|1992-06-20|1992-07-08|TAKE BACK RETURN|FOB|p furiously at the quic| +62345|441951|41952|2|20|37858.60|0.04|0.02|R|F|1992-06-10|1992-07-11|1992-07-05|COLLECT COD|FOB| even foxes affix carefully | +62345|855429|17947|3|16|22150.08|0.00|0.05|R|F|1992-05-31|1992-06-30|1992-06-16|DELIVER IN PERSON|MAIL|uickly ironic packages boost quickly f| +62345|182034|7041|4|49|54685.47|0.09|0.00|A|F|1992-04-23|1992-06-01|1992-05-20|NONE|TRUCK|nal platelets. quickly even| +62345|442189|29714|5|3|3393.48|0.00|0.07|A|F|1992-08-08|1992-06-24|1992-08-29|COLLECT COD|FOB|uriously ironic requests. entici| +62345|862240|49792|6|9|10819.80|0.08|0.02|R|F|1992-06-13|1992-06-14|1992-07-03|DELIVER IN PERSON|AIR|furiously regular accounts al| +62346|409756|34773|1|32|53303.36|0.06|0.04|R|F|1994-12-14|1994-12-18|1994-12-21|DELIVER IN PERSON|FOB|c dolphins. final theodoli| +62346|759730|22246|2|38|68008.60|0.00|0.05|A|F|1995-02-14|1994-12-27|1995-03-04|TAKE BACK RETURN|AIR|ts sleep against the quickly regula| +62347|41666|29167|1|22|35368.52|0.01|0.02|A|F|1993-04-29|1993-02-24|1993-05-19|DELIVER IN PERSON|TRUCK|nal notornis. slyly ironic pinto beans| +62347|266973|4489|2|18|34919.28|0.00|0.00|R|F|1993-04-01|1993-02-23|1993-04-05|COLLECT COD|TRUCK| regular deposits| +62347|1580|39081|3|25|37039.50|0.03|0.07|A|F|1993-01-25|1993-04-12|1993-02-20|COLLECT COD|FOB| warthogs bo| +62348|560515|23027|1|18|28358.82|0.00|0.05|A|F|1993-11-24|1993-09-27|1993-11-29|NONE|FOB|ing, express| +62348|567150|29662|2|40|48685.20|0.10|0.01|R|F|1993-09-28|1993-10-04|1993-10-18|DELIVER IN PERSON|SHIP|lar excuses along the ca| +62348|80045|5048|3|31|31776.24|0.05|0.02|R|F|1993-09-20|1993-10-18|1993-09-25|TAKE BACK RETURN|MAIL|ajole blithely blithely pen| +62348|312962|37975|4|49|96772.55|0.01|0.07|A|F|1993-08-25|1993-09-01|1993-08-27|NONE|RAIL|g asymptotes cajole according to the | +62349|998242|48243|1|50|67010.00|0.05|0.03|A|F|1993-03-29|1993-03-31|1993-04-16|TAKE BACK RETURN|AIR|uriously along | +62349|437949|37950|2|1|1886.92|0.04|0.00|A|F|1993-04-29|1993-03-20|1993-05-22|COLLECT COD|TRUCK| multipliers detect acros| +62349|599728|12240|3|27|49347.90|0.00|0.04|R|F|1993-03-13|1993-02-24|1993-04-02|DELIVER IN PERSON|RAIL|e blithely regular warhorses. regular | +62350|334984|22503|1|38|76720.86|0.04|0.00|A|F|1994-04-07|1994-03-04|1994-04-23|DELIVER IN PERSON|REG AIR|ake quietly quickly unusual re| +62351|944948|44949|1|49|97652.10|0.07|0.05|R|F|1992-10-11|1992-11-16|1992-10-21|TAKE BACK RETURN|RAIL|ide of the furiousl| +62376|530297|17828|1|23|30527.21|0.10|0.00|R|F|1992-05-09|1992-04-06|1992-05-29|COLLECT COD|TRUCK|ress multiplier| +62376|700282|25311|2|37|47443.25|0.10|0.08|A|F|1992-03-12|1992-03-12|1992-03-29|NONE|SHIP|e even packages. ca| +62376|632466|32467|3|48|67124.64|0.01|0.01|A|F|1992-03-10|1992-03-24|1992-03-18|NONE|AIR|kly regular theodolites believe| +62376|845964|45965|4|31|59207.52|0.01|0.08|A|F|1992-05-03|1992-04-30|1992-05-22|COLLECT COD|MAIL| bold, final| +62377|100604|13107|1|30|48138.00|0.09|0.01|A|F|1994-03-08|1994-02-13|1994-03-10|NONE|RAIL| beans above the carefully | +62377|837327|12360|2|29|36664.12|0.05|0.05|R|F|1994-01-03|1993-12-22|1994-01-31|COLLECT COD|REG AIR|quests nag furiously ironic account| +62377|942612|5131|3|36|59564.52|0.05|0.04|A|F|1993-12-26|1994-01-19|1994-01-05|NONE|FOB|ic, ironic requests. regular i| +62377|477204|39714|4|3|3543.54|0.02|0.04|R|F|1994-02-08|1994-01-13|1994-02-18|NONE|REG AIR|omas wake daringly alon| +62378|270515|20516|1|48|71304.00|0.01|0.00|N|O|1998-04-05|1998-04-19|1998-04-08|TAKE BACK RETURN|MAIL|ions. furiously final attainmen| +62378|536396|23927|2|44|63024.28|0.04|0.04|N|O|1998-07-04|1998-04-14|1998-07-22|NONE|SHIP|ously fluffily pending in| +62378|193749|6253|3|26|47911.24|0.07|0.05|N|O|1998-05-07|1998-05-21|1998-05-08|NONE|SHIP|lay fluffily final accounts. carefull| +62379|704552|29581|1|47|73156.44|0.00|0.04|A|F|1993-05-25|1993-04-18|1993-06-21|TAKE BACK RETURN|AIR|l accounts wake quickly regular theodol| +62379|395756|20771|2|29|53700.46|0.10|0.04|R|F|1993-02-08|1993-04-09|1993-02-21|NONE|AIR|the quickly regular accoun| +62380|823270|48303|1|42|50115.66|0.10|0.07|A|F|1992-06-05|1992-06-17|1992-06-13|TAKE BACK RETURN|TRUCK|sly after the final | +62380|691353|16380|2|9|12098.88|0.05|0.01|R|F|1992-06-14|1992-05-04|1992-06-18|COLLECT COD|TRUCK|onic ideas. carefully regular t| +62380|564700|2234|3|17|29999.56|0.00|0.05|R|F|1992-07-12|1992-06-09|1992-07-28|COLLECT COD|AIR|y final depe| +62381|841825|4342|1|19|33568.82|0.05|0.07|R|F|1995-04-18|1995-04-18|1995-05-07|NONE|FOB|s use blithely above the accounts. s| +62381|539744|14765|2|33|58862.76|0.07|0.02|R|F|1995-03-26|1995-04-14|1995-04-18|TAKE BACK RETURN|TRUCK| beans use against the dependen| +62381|461149|23659|3|37|41074.44|0.08|0.08|N|F|1995-06-04|1995-03-31|1995-07-03|COLLECT COD|REG AIR|hely bold requests cajole blithely d| +62381|517772|5303|4|44|78749.00|0.07|0.08|R|F|1995-03-09|1995-04-11|1995-03-31|TAKE BACK RETURN|SHIP|? blithely unusual ideas wake slyl| +62382|892127|42128|1|1|1119.08|0.04|0.05|R|F|1992-09-28|1992-11-07|1992-10-26|COLLECT COD|MAIL| requests about the final, special waters | +62382|970424|20425|2|49|73224.62|0.06|0.03|A|F|1992-10-20|1992-11-01|1992-11-09|DELIVER IN PERSON|FOB|thely ironic sentime| +62382|908728|46283|3|34|59047.12|0.00|0.04|A|F|1992-12-18|1992-11-02|1993-01-09|TAKE BACK RETURN|MAIL|ckly pending pinto beans. final inst| +62382|988346|38347|4|19|27251.70|0.08|0.05|R|F|1992-08-27|1992-11-09|1992-09-20|COLLECT COD|AIR|rding to the | +62382|119971|32474|5|6|11945.82|0.04|0.02|R|F|1992-09-21|1992-10-15|1992-10-01|COLLECT COD|TRUCK|gle among the blithel| +62383|264392|39403|1|36|48829.68|0.04|0.08|N|O|1997-04-13|1997-05-02|1997-04-30|TAKE BACK RETURN|AIR| express asymptotes | +62383|635394|10419|2|38|50515.68|0.08|0.02|N|O|1997-02-05|1997-04-22|1997-02-12|TAKE BACK RETURN|RAIL|tly bold pinto beans. ironic theodolite| +62383|65234|27736|3|21|25183.83|0.01|0.03|N|O|1997-05-08|1997-03-28|1997-05-31|DELIVER IN PERSON|TRUCK|tes. carefully even packages promis| +62383|371926|34434|4|6|11987.46|0.06|0.08|N|O|1997-02-28|1997-04-13|1997-03-12|DELIVER IN PERSON|FOB|sits haggle caref| +62408|702144|14659|1|12|13753.32|0.01|0.00|R|F|1994-06-04|1994-05-09|1994-06-20|DELIVER IN PERSON|RAIL|ckly regular excuses. care| +62409|163492|1002|1|26|40442.74|0.08|0.06|N|O|1997-02-04|1997-01-04|1997-02-10|TAKE BACK RETURN|AIR|sts. final, express deposits exce| +62409|808789|46338|2|38|64514.12|0.05|0.06|N|O|1996-10-12|1996-12-19|1996-10-22|COLLECT COD|FOB|osits. slyly ironic packa| +62409|308832|21339|3|20|36816.40|0.05|0.01|N|O|1997-01-24|1996-11-23|1997-01-25|TAKE BACK RETURN|TRUCK|ly ironic theodolites. | +62409|524244|49265|4|50|63411.00|0.04|0.04|N|O|1996-10-26|1996-11-29|1996-11-02|NONE|TRUCK|accounts cajole slyly slyly r| +62410|676971|26972|1|33|64282.02|0.06|0.08|R|F|1994-08-30|1994-11-17|1994-09-20|NONE|MAIL| carefully ironic requests| +62410|845673|8190|2|46|74456.98|0.09|0.05|R|F|1994-12-24|1994-10-08|1994-12-31|COLLECT COD|RAIL|. even ideas integrate slyly. depos| +62410|217563|17564|3|8|11844.40|0.00|0.05|A|F|1994-08-29|1994-11-20|1994-09-07|COLLECT COD|MAIL| deposits slee| +62410|580765|18299|4|27|49834.98|0.10|0.06|A|F|1994-12-20|1994-09-29|1994-12-23|TAKE BACK RETURN|TRUCK|requests lose caref| +62410|904870|4871|5|5|9374.15|0.02|0.00|R|F|1994-10-04|1994-10-23|1994-10-12|COLLECT COD|SHIP|tegrate furiously fluffily express instruc| +62410|149835|49836|6|45|84817.35|0.09|0.06|R|F|1994-09-17|1994-10-23|1994-10-11|NONE|SHIP|n pinto beans against the pending, pending | +62410|266489|41500|7|24|34931.28|0.09|0.02|A|F|1994-10-08|1994-09-28|1994-10-28|COLLECT COD|RAIL| express deposits? silent do| +62411|876768|26769|1|21|36639.12|0.01|0.08|N|F|1995-06-12|1995-07-19|1995-06-24|TAKE BACK RETURN|SHIP|to beans. furiously ironic | +62412|214929|2442|1|26|47941.66|0.01|0.04|R|F|1995-05-20|1995-04-02|1995-06-10|COLLECT COD|FOB| furiously ironic accounts wake furiously a| +62412|297281|34797|2|29|37069.83|0.09|0.03|A|F|1995-03-29|1995-04-19|1995-04-10|DELIVER IN PERSON|AIR|kly regular requests might det| +62413|312154|49673|1|15|17492.10|0.03|0.01|A|F|1993-12-21|1993-12-15|1994-01-15|COLLECT COD|TRUCK|oxes. slyly ironic instruc| +62413|368801|6323|2|20|37395.80|0.07|0.06|R|F|1994-01-30|1993-11-27|1994-02-11|TAKE BACK RETURN|SHIP| beans abo| +62413|428104|28105|3|30|30962.40|0.08|0.03|A|F|1993-11-28|1994-01-09|1993-12-06|TAKE BACK RETURN|SHIP|sts affix carefully a| +62413|137314|24821|4|45|60808.95|0.04|0.07|R|F|1993-10-26|1994-01-19|1993-10-27|TAKE BACK RETURN|RAIL|carefully permanently final attainm| +62413|820147|32664|5|49|52287.90|0.01|0.08|A|F|1994-01-02|1993-12-19|1994-01-09|NONE|RAIL|as after the carefully| +62413|202422|27431|6|39|51651.99|0.01|0.00|A|F|1993-11-12|1993-12-02|1993-12-02|TAKE BACK RETURN|MAIL|ithely. slyly even ideas along the quick| +62414|65706|3210|1|8|13373.60|0.05|0.02|N|O|1998-04-17|1998-05-30|1998-04-23|TAKE BACK RETURN|REG AIR|ld packages are blithely. ironic pin| +62414|320637|45650|2|44|72935.28|0.10|0.03|N|O|1998-04-15|1998-04-25|1998-04-16|TAKE BACK RETURN|TRUCK|ions. slyly unusual platelet| +62415|170502|45509|1|39|61327.50|0.09|0.02|N|O|1998-03-09|1998-02-01|1998-03-15|NONE|SHIP|ncies. stealthy, bold excuses according | +62415|618554|18555|2|28|41230.56|0.05|0.06|N|O|1998-02-28|1998-01-28|1998-03-18|TAKE BACK RETURN|RAIL|are furious| +62415|31492|31493|3|5|7117.45|0.10|0.07|N|O|1997-12-05|1998-02-08|1997-12-12|NONE|REG AIR|kages wake. carefully ironic depo| +62415|280057|42563|4|9|9333.36|0.03|0.00|N|O|1998-02-26|1997-12-24|1998-03-16|DELIVER IN PERSON|FOB| sleep quickly slyly regu| +62415|913611|13612|5|17|27617.69|0.00|0.05|N|O|1998-01-23|1998-01-23|1998-01-31|NONE|TRUCK|onic requests play blithel| +62415|52289|39793|6|46|57098.88|0.07|0.06|N|O|1997-11-27|1998-02-03|1997-12-09|DELIVER IN PERSON|REG AIR|ions are alongside of the slyly unusual d| +62440|850591|25626|1|30|46246.50|0.08|0.08|R|F|1992-12-18|1992-11-12|1993-01-05|COLLECT COD|SHIP| to the final, regular ideas. flu| +62440|871567|34085|2|42|64617.84|0.05|0.08|R|F|1992-09-26|1992-11-03|1992-10-24|NONE|SHIP|y. fluffily even instructions thrash. | +62441|332774|7787|1|5|9033.80|0.10|0.00|N|O|1998-07-26|1998-05-23|1998-08-02|DELIVER IN PERSON|FOB| express accou| +62441|924165|24166|2|38|45186.56|0.10|0.03|N|O|1998-08-07|1998-06-17|1998-09-03|TAKE BACK RETURN|REG AIR|posits wake blithely carefull| +62441|430608|18133|3|27|41541.66|0.01|0.06|N|O|1998-05-14|1998-06-27|1998-05-28|TAKE BACK RETURN|TRUCK|ual deposit| +62441|227848|27849|4|20|35516.60|0.08|0.07|N|O|1998-05-17|1998-07-04|1998-05-18|DELIVER IN PERSON|TRUCK|sits. carefully unusual| +62442|111966|11967|1|8|15823.68|0.01|0.04|R|F|1993-11-14|1994-01-09|1993-12-11|COLLECT COD|AIR|nts are careful| +62442|802036|14553|2|46|43147.54|0.02|0.05|R|F|1993-12-04|1994-02-10|1993-12-09|TAKE BACK RETURN|SHIP|oss the slyly ironic packag| +62442|808578|8579|3|26|38649.78|0.03|0.07|R|F|1994-01-26|1993-12-31|1994-02-05|TAKE BACK RETURN|TRUCK|silent foxes can boost carefull| +62442|769247|44278|4|3|3948.63|0.07|0.06|A|F|1993-12-29|1994-01-18|1994-01-13|TAKE BACK RETURN|TRUCK|r packages.| +62442|718027|18028|5|19|19854.81|0.02|0.00|R|F|1993-11-19|1994-01-21|1993-12-05|DELIVER IN PERSON|TRUCK|unusual pinto bean| +62443|715555|40584|1|27|42404.04|0.09|0.05|A|F|1993-08-29|1993-09-07|1993-09-10|TAKE BACK RETURN|MAIL|nal pinto beans haggle careful| +62443|319526|44539|2|3|4636.53|0.08|0.01|A|F|1993-08-28|1993-08-31|1993-09-22|NONE|TRUCK|lithely slow excuses wake | +62443|259365|46881|3|18|23838.30|0.02|0.08|A|F|1993-10-28|1993-08-23|1993-11-10|NONE|FOB| slyly special grouches. un| +62443|145254|32761|4|44|57167.00|0.05|0.03|R|F|1993-10-20|1993-09-20|1993-11-06|COLLECT COD|TRUCK|ages. even theodolites sleep acco| +62443|271075|8591|5|21|21967.26|0.09|0.02|R|F|1993-07-26|1993-09-12|1993-07-29|TAKE BACK RETURN|SHIP|ts sleep above the| +62443|956981|44539|6|2|4075.88|0.08|0.07|R|F|1993-09-06|1993-09-09|1993-09-22|TAKE BACK RETURN|MAIL|y bold excuses abov| +62443|966261|41300|7|27|35834.94|0.01|0.03|R|F|1993-07-25|1993-09-11|1993-07-30|DELIVER IN PERSON|AIR| packages. blithely even accounts wake | +62444|940392|2911|1|35|50132.25|0.07|0.08|N|O|1995-07-05|1995-05-29|1995-07-13|DELIVER IN PERSON|AIR|ing accounts need to detect fluffily pendi| +62444|165474|40481|2|46|70815.62|0.04|0.03|N|O|1995-07-19|1995-05-23|1995-07-28|NONE|SHIP|ide of the slyly ironic accounts are | +62444|113543|26046|3|8|12452.32|0.10|0.03|N|O|1995-07-03|1995-04-26|1995-07-30|COLLECT COD|AIR|ress foxes poach slyly | +62444|315537|28044|4|17|26392.84|0.04|0.04|R|F|1995-05-03|1995-05-02|1995-05-10|NONE|REG AIR|uctions cajole carefully fluffily unusu| +62444|215000|2513|5|44|40259.56|0.09|0.07|N|F|1995-06-04|1995-06-05|1995-07-02|DELIVER IN PERSON|AIR|p slyly. carefully regular | +62444|497721|10231|6|50|85935.00|0.02|0.07|N|O|1995-07-14|1995-05-01|1995-08-03|TAKE BACK RETURN|TRUCK|sts! unusual sentiments shall have| +62445|902712|40267|1|19|32578.73|0.01|0.06|R|F|1994-08-31|1994-10-21|1994-09-04|DELIVER IN PERSON|REG AIR|ckages after the slyly quick ideas| +62445|877220|14772|2|43|51478.74|0.02|0.00|R|F|1994-10-07|1994-10-08|1994-10-19|DELIVER IN PERSON|AIR|egular requests against the f| +62445|420529|8054|3|2|2899.00|0.06|0.07|R|F|1994-11-30|1994-10-16|1994-12-11|DELIVER IN PERSON|AIR|fully even instructions wake alongside of| +62445|824967|37484|4|21|39730.32|0.08|0.07|R|F|1994-12-23|1994-10-02|1995-01-08|COLLECT COD|TRUCK|totes are slyly| +62445|203568|16073|5|1|1471.55|0.06|0.06|A|F|1994-12-01|1994-10-23|1994-12-19|NONE|SHIP| to the quickly special foxes. | +62445|354533|17041|6|2|3175.04|0.04|0.07|A|F|1994-12-04|1994-10-14|1994-12-21|COLLECT COD|REG AIR|ajole acco| +62445|628017|28018|7|23|21734.54|0.00|0.00|A|F|1994-09-25|1994-11-23|1994-10-09|NONE|FOB|tes. express requests nag blith| +62446|72465|9969|1|1|1437.46|0.06|0.01|N|O|1996-01-26|1996-02-20|1996-02-12|DELIVER IN PERSON|SHIP|l pinto bea| +62446|902801|15320|2|7|12626.32|0.07|0.05|N|O|1996-01-30|1996-03-18|1996-02-28|TAKE BACK RETURN|RAIL|ongside of| +62446|363236|25744|3|49|63661.78|0.00|0.02|N|O|1996-03-12|1996-02-28|1996-04-06|DELIVER IN PERSON|AIR|to beans hang fluffily above the | +62446|894977|7495|4|24|47326.32|0.04|0.02|N|O|1996-01-26|1996-02-19|1996-02-03|DELIVER IN PERSON|REG AIR|r the bold packa| +62447|65603|40606|1|38|59606.80|0.09|0.00|N|O|1995-11-09|1995-11-17|1995-11-17|COLLECT COD|FOB|tructions integrate. enti| +62447|574879|49902|2|13|25400.05|0.08|0.06|N|O|1995-10-03|1995-11-21|1995-10-07|TAKE BACK RETURN|AIR|ng the ironic| +62447|983187|33188|3|15|19052.10|0.03|0.00|N|O|1995-12-09|1995-11-17|1995-12-25|COLLECT COD|FOB|re among the carefully sp| +62447|409701|34718|4|9|14496.12|0.07|0.03|N|O|1995-12-12|1995-11-25|1995-12-31|DELIVER IN PERSON|TRUCK|ngside of the stealthily special excu| +62447|839208|1725|5|13|14913.08|0.02|0.06|N|O|1995-10-04|1995-11-26|1995-10-26|NONE|RAIL|usual epitaphs use. ca| +62447|564267|1801|6|33|43930.92|0.06|0.06|N|O|1995-10-24|1995-11-01|1995-11-06|TAKE BACK RETURN|AIR|s. carefully ironic packages| +62447|624880|24881|7|41|73998.85|0.08|0.08|N|O|1996-01-01|1995-11-02|1996-01-31|DELIVER IN PERSON|SHIP|sleep fluffily even, final instruct| +62472|351365|26380|1|22|31159.70|0.09|0.05|R|F|1993-06-23|1993-06-27|1993-07-07|DELIVER IN PERSON|MAIL|ly ironic foxes affix fluffil| +62472|375945|960|2|7|14146.51|0.04|0.00|R|F|1993-05-16|1993-06-13|1993-06-10|COLLECT COD|FOB|sual accounts wake furiously. | +62472|495910|20929|3|25|47647.25|0.00|0.01|A|F|1993-05-15|1993-06-16|1993-06-06|DELIVER IN PERSON|AIR|d. deposits are about the silently ironic| +62473|161044|23548|1|5|5525.20|0.04|0.07|A|F|1993-09-07|1993-07-23|1993-09-16|COLLECT COD|SHIP|en accounts try to haggle careful| +62474|493825|18844|1|29|52745.20|0.01|0.07|N|O|1995-09-23|1995-08-24|1995-10-18|NONE|REG AIR|ly. quickly even inst| +62474|716173|41202|2|31|36863.34|0.07|0.03|N|O|1995-07-29|1995-09-17|1995-08-24|COLLECT COD|RAIL|uctions detect requests. requests thrash p| +62474|711676|49219|3|7|11813.48|0.04|0.04|N|O|1995-10-23|1995-09-30|1995-11-14|TAKE BACK RETURN|TRUCK|en foxes. ir| +62474|132898|32899|4|18|34756.02|0.10|0.01|N|O|1995-08-09|1995-10-04|1995-08-13|DELIVER IN PERSON|SHIP|ts cajole b| +62474|605067|30092|5|22|21384.66|0.02|0.02|N|O|1995-10-09|1995-08-17|1995-11-03|TAKE BACK RETURN|TRUCK|ts integrate slyly | +62474|344948|44949|6|14|27901.02|0.01|0.05|N|O|1995-11-04|1995-08-17|1995-11-27|DELIVER IN PERSON|MAIL| deposits wake carefully quickly furious | +62474|539972|2483|7|7|14083.65|0.00|0.06|N|O|1995-08-26|1995-08-15|1995-09-24|NONE|RAIL| packages are special, regular depende| +62475|294317|44318|1|43|56385.90|0.00|0.02|N|O|1996-02-27|1996-03-26|1996-03-12|TAKE BACK RETURN|REG AIR|o the quiet, regular packag| +62475|569497|44520|2|27|42294.69|0.00|0.01|N|O|1996-03-27|1996-02-16|1996-04-18|TAKE BACK RETURN|AIR|kly regular packages. slyly silent dol| +62475|533391|8412|3|49|69794.13|0.08|0.05|N|O|1996-03-02|1996-03-19|1996-03-27|NONE|RAIL|se carefully pen| +62475|694477|32017|4|13|19128.72|0.06|0.05|N|O|1996-04-03|1996-03-10|1996-04-15|COLLECT COD|FOB|lites use closely carefully close pi| +62475|61097|11098|5|50|52904.50|0.00|0.01|N|O|1996-04-21|1996-03-07|1996-05-03|TAKE BACK RETURN|RAIL|ly across the| +62475|846570|34119|6|26|39429.78|0.09|0.00|N|O|1996-03-31|1996-04-01|1996-04-01|DELIVER IN PERSON|SHIP|y brave foxes sleep | +62476|554297|41831|1|36|48645.72|0.02|0.05|A|F|1995-06-05|1995-06-26|1995-06-09|DELIVER IN PERSON|SHIP|s sleep furiously bold| +62476|64811|14812|2|24|42619.44|0.08|0.02|N|O|1995-08-11|1995-07-02|1995-08-18|COLLECT COD|AIR|y ironic dependencies. final dolph| +62476|267774|17775|3|5|8708.80|0.03|0.08|N|O|1995-09-23|1995-08-13|1995-09-30|COLLECT COD|MAIL|ns. carefully even asymptotes cajole flu| +62476|465847|15848|4|38|68887.16|0.04|0.04|N|O|1995-08-01|1995-07-24|1995-08-31|COLLECT COD|RAIL|ages. quickly fi| +62476|480821|18349|5|14|25225.20|0.06|0.07|N|O|1995-07-27|1995-07-31|1995-08-22|DELIVER IN PERSON|MAIL| carefully b| +62476|147750|47751|6|35|62921.25|0.01|0.06|N|F|1995-05-31|1995-08-24|1995-06-22|DELIVER IN PERSON|REG AIR|r deposits. quickly ironic theod| +62477|290999|3505|1|34|67659.32|0.00|0.01|A|F|1995-03-27|1995-04-14|1995-04-09|DELIVER IN PERSON|FOB|g the packages. quickly regular acc| +62477|813817|1366|2|42|72692.34|0.01|0.05|N|O|1995-06-29|1995-04-26|1995-07-15|DELIVER IN PERSON|AIR|ronic accounts haggle. carefull| +62477|807636|7637|3|42|64830.78|0.01|0.03|A|F|1995-05-17|1995-06-02|1995-06-10|NONE|AIR|osits are slyly furiously even requests| +62477|930733|43252|4|17|29982.73|0.03|0.00|R|F|1995-05-26|1995-05-10|1995-05-28|NONE|MAIL| the blithely regular deposits integrate fu| +62477|829264|41781|5|27|32216.94|0.06|0.05|A|F|1995-03-27|1995-05-11|1995-04-25|DELIVER IN PERSON|TRUCK|ly across the furiously | +62477|425867|38376|6|49|87849.16|0.04|0.04|R|F|1995-05-15|1995-05-22|1995-06-12|NONE|FOB|ronic dolphins sleep quickly| +62478|944816|7335|1|34|63266.18|0.04|0.08|A|F|1992-02-03|1992-03-10|1992-02-22|DELIVER IN PERSON|AIR|deas wake. carefully even packages serv| +62478|512664|195|2|40|67065.60|0.05|0.07|R|F|1992-04-30|1992-04-04|1992-05-06|TAKE BACK RETURN|SHIP|dazzle around the blithely final th| +62479|809833|9834|1|47|81911.13|0.05|0.06|N|O|1996-09-02|1996-09-19|1996-09-03|NONE|REG AIR|nusual deposits haggle blithely excuses. | +62479|848829|48830|2|13|23111.14|0.04|0.08|N|O|1996-08-12|1996-08-24|1996-09-03|DELIVER IN PERSON|MAIL|he pinto beans cajole e| +62479|254301|41817|3|42|52722.18|0.00|0.03|N|O|1996-09-04|1996-08-28|1996-09-20|COLLECT COD|RAIL| blithely bold instructi| +62479|26616|1617|4|38|58619.18|0.02|0.06|N|O|1996-09-14|1996-09-01|1996-10-06|COLLECT COD|TRUCK|regular deposits are furiously. carefully f| +62479|334841|9854|5|30|56274.90|0.08|0.00|N|O|1996-07-12|1996-08-15|1996-07-18|NONE|TRUCK|l, pending pac| +62479|656637|31664|6|37|58963.20|0.01|0.04|N|O|1996-09-15|1996-08-03|1996-09-19|NONE|RAIL| above the c| +62479|86778|24282|7|6|10588.62|0.09|0.04|N|O|1996-07-07|1996-09-22|1996-07-16|COLLECT COD|AIR|, even deposits cajole. qu| +62504|463901|1429|1|17|31702.96|0.07|0.03|R|F|1992-04-22|1992-07-09|1992-05-04|TAKE BACK RETURN|TRUCK|l theodolites affix slyly against the fur| +62504|767990|17991|2|6|12347.76|0.08|0.07|R|F|1992-04-28|1992-06-09|1992-05-01|COLLECT COD|REG AIR|y ironic dinos na| +62504|607038|19551|3|18|17010.00|0.01|0.04|R|F|1992-06-13|1992-06-16|1992-07-07|NONE|AIR|s. furiously unusual the| +62504|476372|26373|4|46|62024.10|0.04|0.00|R|F|1992-07-29|1992-06-13|1992-08-25|DELIVER IN PERSON|MAIL| to the carefully even foxes haggle f| +62504|379283|4298|5|45|61302.15|0.05|0.02|A|F|1992-06-07|1992-07-08|1992-06-09|TAKE BACK RETURN|RAIL|eposits: final deposits wake. regula| +62504|594002|6514|6|22|24111.56|0.08|0.05|R|F|1992-06-11|1992-06-22|1992-06-24|TAKE BACK RETURN|FOB|ges. slyly final depo| +62505|808899|8900|1|35|63274.75|0.03|0.07|N|O|1996-01-21|1995-12-25|1996-01-24|DELIVER IN PERSON|MAIL|l accounts according to the | +62505|150674|25681|2|30|51740.10|0.06|0.01|N|O|1996-01-12|1995-12-27|1996-01-18|COLLECT COD|FOB|along the furio| +62505|364230|39245|3|7|9059.54|0.07|0.05|N|O|1995-12-31|1995-12-09|1996-01-07|DELIVER IN PERSON|RAIL|iously ironic pinto beans integ| +62505|604542|17055|4|28|40502.28|0.03|0.02|N|O|1996-01-05|1995-12-18|1996-01-12|TAKE BACK RETURN|TRUCK|eas nod carefully.| +62505|524278|11809|5|37|48183.25|0.03|0.01|N|O|1995-11-07|1995-12-11|1995-12-07|TAKE BACK RETURN|FOB|usly even accounts. packages haggle fl| +62506|231564|19077|1|3|4486.65|0.04|0.00|A|F|1994-05-13|1994-04-25|1994-05-19|DELIVER IN PERSON|AIR|s along the blithely special instructions c| +62506|882302|7337|2|18|23116.68|0.08|0.06|A|F|1994-06-12|1994-05-11|1994-07-06|COLLECT COD|RAIL|thely expr| +62506|838322|38323|3|29|36548.12|0.03|0.02|A|F|1994-05-22|1994-04-10|1994-06-19|COLLECT COD|SHIP|efully final ideas are. express, | +62506|661615|49155|4|22|34684.76|0.05|0.00|A|F|1994-03-11|1994-04-02|1994-03-31|TAKE BACK RETURN|MAIL|ymptotes. carefully | +62506|761747|11748|5|24|43409.04|0.09|0.02|A|F|1994-06-21|1994-05-03|1994-07-13|TAKE BACK RETURN|TRUCK|ajole furiously according to t| +62507|965886|28406|1|5|9759.20|0.00|0.03|N|O|1995-12-11|1996-01-03|1996-01-03|COLLECT COD|REG AIR|kly final deposits hinder sometimes along | +62507|642716|17741|2|7|11610.76|0.09|0.02|N|O|1996-01-10|1996-01-04|1996-01-19|DELIVER IN PERSON|MAIL|l dependencies. sauternes haggle care| +62507|127338|39841|3|48|65535.84|0.01|0.06|N|O|1996-01-10|1995-11-24|1996-02-09|DELIVER IN PERSON|FOB|e unusual pinto| +62507|156511|6512|4|1|1567.51|0.08|0.06|N|O|1996-02-09|1995-12-24|1996-02-17|NONE|RAIL|ruthless pint| +62507|479281|16809|5|50|63013.00|0.03|0.06|N|O|1995-11-13|1995-12-14|1995-11-17|COLLECT COD|FOB|nic pinto b| +62507|271003|46014|6|31|30193.69|0.00|0.00|N|O|1995-10-23|1995-12-30|1995-11-21|COLLECT COD|FOB| carefully slyly ironic| +62507|733422|33423|7|18|26197.02|0.08|0.08|N|O|1996-01-26|1995-12-26|1996-02-20|DELIVER IN PERSON|RAIL|nis wake slyly. r| +62508|611538|24051|1|40|57980.00|0.06|0.06|N|O|1996-12-21|1996-12-06|1996-12-22|COLLECT COD|FOB|dolphins a| +62508|115531|15532|2|43|66500.79|0.08|0.07|N|O|1996-09-27|1996-11-28|1996-10-12|DELIVER IN PERSON|RAIL|n, unusual reque| +62508|721149|46178|3|38|44464.18|0.04|0.00|N|O|1996-11-12|1996-12-06|1996-11-24|TAKE BACK RETURN|MAIL|ep slyly regular | +62508|349181|24194|4|41|50436.97|0.10|0.01|N|O|1996-12-24|1996-12-04|1997-01-11|COLLECT COD|RAIL|quickly. carefully express packages sle| +62508|674264|11804|5|28|34670.44|0.01|0.04|N|O|1996-11-28|1996-11-01|1996-12-07|NONE|FOB|fily express courts. fluffily| +62509|349550|37069|1|17|27192.18|0.00|0.07|A|F|1993-03-23|1993-03-25|1993-03-25|TAKE BACK RETURN|MAIL|forges wake slyly. d| +62509|884747|47265|2|47|81389.90|0.00|0.03|R|F|1993-02-25|1993-03-08|1993-03-05|DELIVER IN PERSON|SHIP|uctions. requests cajole. furiously unus| +62509|929429|29430|3|50|72919.00|0.07|0.03|A|F|1993-03-06|1993-04-06|1993-03-11|COLLECT COD|SHIP|ions about the fluffily pending accounts n| +62510|359191|21699|1|49|61258.82|0.10|0.05|N|O|1998-03-01|1998-02-20|1998-03-09|TAKE BACK RETURN|TRUCK|quiet packages h| +62510|920057|20058|2|20|21540.20|0.08|0.00|N|O|1998-04-12|1998-03-03|1998-04-13|DELIVER IN PERSON|REG AIR|he quickly final requests. unu| +62510|383765|33766|3|24|44370.00|0.05|0.02|N|O|1998-05-17|1998-03-11|1998-05-28|DELIVER IN PERSON|SHIP|ely according | +62510|927228|39747|4|32|40165.76|0.00|0.07|N|O|1998-02-27|1998-03-09|1998-03-02|DELIVER IN PERSON|RAIL| even theodolites use about the fur| +62510|913248|13249|5|21|26485.20|0.01|0.04|N|O|1998-03-30|1998-04-16|1998-04-26|DELIVER IN PERSON|AIR|quests. regular, special escapades sl| +62510|952033|39591|6|41|44484.59|0.04|0.03|N|O|1998-05-07|1998-04-18|1998-06-01|TAKE BACK RETURN|SHIP|refully ironic requests haggle fluffily un| +62511|37811|312|1|47|82194.07|0.10|0.07|N|O|1995-12-15|1996-02-16|1995-12-20|DELIVER IN PERSON|MAIL|equests cajole. pending, fi| +62511|484890|47400|2|46|86244.02|0.05|0.00|N|O|1996-03-29|1996-01-15|1996-04-12|NONE|SHIP| foxes haggle| +62511|535551|48062|3|44|69807.32|0.00|0.07|N|O|1995-12-20|1996-02-21|1996-01-02|DELIVER IN PERSON|MAIL| even deposits nag slyly above| +62511|991956|16995|4|2|4095.82|0.05|0.03|N|O|1996-01-06|1996-01-16|1996-01-07|TAKE BACK RETURN|SHIP|. deposits cajole slyly unusual ideas.| +62511|802610|27643|5|12|18150.84|0.03|0.06|N|O|1996-03-12|1996-01-17|1996-03-28|COLLECT COD|REG AIR|he carefully unusual theodolites sleep f| +62536|889726|14761|1|23|39460.64|0.05|0.02|A|F|1993-09-07|1993-10-05|1993-09-09|TAKE BACK RETURN|AIR|y pending requests. pending, unusu| +62537|395696|8204|1|39|69875.52|0.06|0.07|N|O|1998-04-04|1998-04-04|1998-04-27|COLLECT COD|REG AIR|r accounts around the | +62537|458492|33511|2|37|53667.39|0.02|0.03|N|O|1998-03-12|1998-05-19|1998-03-30|NONE|AIR|ronic pint| +62537|863013|38048|3|30|29279.10|0.06|0.03|N|O|1998-05-14|1998-05-07|1998-05-22|COLLECT COD|REG AIR|yly final pinto beans. even depos| +62538|920176|45213|1|4|4784.52|0.07|0.07|A|F|1994-08-21|1994-07-25|1994-09-18|COLLECT COD|SHIP|wake blithely acro| +62538|382886|20408|2|20|39377.40|0.06|0.08|R|F|1994-07-14|1994-07-13|1994-08-06|TAKE BACK RETURN|REG AIR|slyly ironic theodolites. special, unusual| +62539|279388|4399|1|25|34184.25|0.05|0.06|A|F|1992-11-12|1992-10-05|1992-12-01|DELIVER IN PERSON|REG AIR|ons x-ray carefully abo| +62539|665639|15640|2|33|52951.80|0.09|0.03|R|F|1992-09-22|1992-10-18|1992-10-06|TAKE BACK RETURN|MAIL|e carefully regular theodolites. blithely| +62539|390085|40086|3|37|43477.59|0.01|0.03|R|F|1992-10-15|1992-09-02|1992-10-26|DELIVER IN PERSON|REG AIR|iously after t| +62539|147792|22797|4|6|11038.74|0.09|0.00|R|F|1992-11-19|1992-09-04|1992-11-28|COLLECT COD|SHIP|lithely. ironic, even| +62539|926142|38661|5|24|28034.40|0.02|0.05|A|F|1992-11-01|1992-09-15|1992-11-29|COLLECT COD|TRUCK|lly express packages sleep carefully ab| +62540|505848|5849|1|9|16684.38|0.04|0.05|N|O|1996-10-30|1996-10-06|1996-11-02|NONE|RAIL|ic, final accounts print after the| +62540|778102|28103|2|13|15340.91|0.09|0.02|N|O|1996-10-14|1996-10-05|1996-10-30|COLLECT COD|SHIP|accounts are quickly ironic deposit| +62540|558971|33994|3|8|16239.60|0.08|0.07|N|O|1996-10-07|1996-11-09|1996-10-12|COLLECT COD|SHIP|ending inst| +62540|612624|161|4|3|4609.77|0.05|0.04|N|O|1996-11-18|1996-10-24|1996-11-22|NONE|TRUCK|ular ideas boost slyly acro| +62540|365528|3050|5|43|68520.93|0.00|0.02|N|O|1996-12-19|1996-11-20|1997-01-07|COLLECT COD|RAIL|g platelets. express depo| +62540|427809|27810|6|35|60787.30|0.08|0.01|N|O|1996-10-11|1996-10-26|1996-11-04|COLLECT COD|SHIP|t after the special foxes. regular, reg| +62541|570891|8425|1|13|25504.31|0.02|0.08|N|O|1998-05-08|1998-05-19|1998-05-24|COLLECT COD|SHIP|across the| +62542|519101|44122|1|3|3360.24|0.02|0.05|A|F|1992-10-17|1992-10-14|1992-10-25|NONE|AIR| ironic instructions nag care| +62542|530322|42833|2|35|47330.50|0.02|0.07|A|F|1992-10-15|1992-10-13|1992-10-20|DELIVER IN PERSON|RAIL|nal asymptotes sleep across t| +62543|5746|18247|1|26|42945.24|0.01|0.02|A|F|1993-02-26|1993-01-31|1993-03-01|COLLECT COD|TRUCK|cial excuses| +62543|571402|8936|2|2|2946.76|0.10|0.06|A|F|1992-11-14|1992-12-15|1992-12-05|COLLECT COD|SHIP|xcuses haggle about the ironic pi| +62543|547741|22762|3|11|19675.92|0.01|0.00|R|F|1992-11-05|1992-12-19|1992-11-27|NONE|RAIL|ng foxes. packages sle| +62543|882210|44728|4|29|34572.93|0.06|0.06|R|F|1992-12-28|1992-12-31|1993-01-04|TAKE BACK RETURN|MAIL|regular packages are blithely about the iro| +62568|527911|27912|1|28|54288.92|0.02|0.03|A|F|1992-06-16|1992-07-04|1992-07-13|DELIVER IN PERSON|REG AIR|excuses haggle furiousl| +62568|595782|8294|2|50|93888.00|0.05|0.02|A|F|1992-05-21|1992-08-14|1992-06-01|DELIVER IN PERSON|TRUCK|sits haggle again| +62568|306977|19484|3|21|41663.16|0.09|0.07|A|F|1992-08-20|1992-08-01|1992-09-19|TAKE BACK RETURN|FOB|ly pending accounts. furiously f| +62568|361152|36167|4|2|2426.28|0.08|0.01|A|F|1992-05-24|1992-08-04|1992-06-12|NONE|FOB|lites. blithely express pinto beans sleep b| +62568|873634|23635|5|8|12860.72|0.06|0.02|R|F|1992-09-01|1992-06-22|1992-09-16|DELIVER IN PERSON|RAIL|beyond the furiously re| +62568|158378|8379|6|2|2872.74|0.07|0.04|R|F|1992-07-15|1992-07-25|1992-07-22|NONE|TRUCK| pinto beans solve furiously about the bol| +62568|851572|14090|7|1|1523.53|0.05|0.02|A|F|1992-07-02|1992-08-12|1992-07-26|TAKE BACK RETURN|SHIP|ng requests nod fluffily. furiou| +62569|361673|24181|1|46|79794.36|0.07|0.08|N|O|1998-05-13|1998-05-31|1998-06-06|COLLECT COD|MAIL|s sleep slyly. ironic depo| +62569|624837|24838|2|38|66948.40|0.02|0.03|N|O|1998-03-27|1998-05-10|1998-04-19|NONE|RAIL|the furiously ironic requests. regu| +62569|635408|35409|3|15|20150.55|0.10|0.01|N|O|1998-06-19|1998-05-20|1998-07-04|COLLECT COD|AIR|. pending, reg| +62570|130553|5558|1|12|19002.60|0.08|0.06|R|F|1994-02-27|1994-03-07|1994-03-05|DELIVER IN PERSON|FOB|o beans haggle blithely accordin| +62570|202631|2632|2|7|10735.34|0.03|0.02|A|F|1994-03-02|1994-03-22|1994-03-27|NONE|AIR|r the even packages. blit| +62570|616745|4282|3|48|79762.08|0.06|0.06|A|F|1994-01-31|1994-02-20|1994-02-09|DELIVER IN PERSON|RAIL|ess deposits wake carefully carefu| +62570|630587|5612|4|19|28833.45|0.06|0.06|A|F|1994-01-21|1994-04-01|1994-02-12|TAKE BACK RETURN|SHIP|al dolphins. special accounts cajole carefu| +62571|92843|42844|1|32|58746.88|0.05|0.02|R|F|1994-09-16|1994-08-18|1994-10-07|COLLECT COD|FOB|der against the ironic t| +62571|408034|20543|2|42|39564.42|0.08|0.07|R|F|1994-08-28|1994-08-14|1994-09-19|NONE|MAIL| carefully carefully ir| +62571|823452|48485|3|33|45388.53|0.09|0.00|A|F|1994-08-07|1994-10-10|1994-08-21|DELIVER IN PERSON|RAIL|packages. carefully express ideas against | +62571|742487|30030|4|18|27530.10|0.05|0.05|R|F|1994-08-17|1994-09-07|1994-08-23|COLLECT COD|AIR|ns above the slyly regular req| +62571|966021|16022|5|31|33696.38|0.10|0.06|A|F|1994-09-13|1994-09-04|1994-10-04|NONE|AIR| foxes haggle slowly against the alway| +62571|902823|2824|6|4|7303.12|0.02|0.00|A|F|1994-09-08|1994-09-30|1994-09-14|TAKE BACK RETURN|REG AIR| ironic packages al| +62571|741335|41336|7|42|57804.60|0.01|0.03|R|F|1994-09-13|1994-08-25|1994-09-18|COLLECT COD|TRUCK|ly ironic accounts! | +62572|617060|4597|1|39|38104.17|0.10|0.04|N|O|1997-09-01|1997-10-18|1997-09-17|NONE|TRUCK| blithely car| +62572|923028|10583|2|49|51498.02|0.07|0.00|N|O|1997-08-23|1997-10-08|1997-08-31|NONE|SHIP|inst the accounts. slyly slow | +62572|326590|1603|3|2|3233.16|0.02|0.02|N|O|1997-11-17|1997-10-18|1997-11-26|COLLECT COD|TRUCK|tly regular requests boost carefully again| +62573|898364|48365|1|20|27246.40|0.08|0.08|A|F|1994-05-03|1994-03-07|1994-05-29|TAKE BACK RETURN|MAIL| furiously bl| +62573|787704|220|2|2|3583.34|0.01|0.04|R|F|1994-03-28|1994-02-23|1994-04-06|TAKE BACK RETURN|SHIP|cial foxes are a| +62573|933132|45651|3|50|58254.50|0.03|0.05|R|F|1994-03-12|1994-02-27|1994-03-18|DELIVER IN PERSON|REG AIR|. courts use furiously final accounts.| +62573|149231|11734|4|15|19203.45|0.08|0.00|A|F|1994-01-08|1994-03-21|1994-02-06|TAKE BACK RETURN|AIR| regular instructions haggle even ideas. sl| +62573|118201|18202|5|3|3657.60|0.00|0.06|R|F|1994-02-04|1994-03-08|1994-03-06|NONE|RAIL|uld are careful| +62573|589176|26710|6|42|53136.30|0.01|0.00|R|F|1994-04-23|1994-02-25|1994-05-10|NONE|REG AIR|. furiously final instructions about t| +62574|94036|19039|1|45|46351.35|0.08|0.05|R|F|1993-12-13|1994-01-11|1993-12-26|NONE|REG AIR|ounts cajole furiously| +62574|454598|29617|2|32|49682.24|0.10|0.01|R|F|1993-12-10|1993-12-20|1994-01-08|DELIVER IN PERSON|FOB|ronic instructions nag st| +62574|423993|11518|3|2|3833.94|0.07|0.05|R|F|1994-02-11|1994-01-29|1994-03-01|COLLECT COD|TRUCK|even deposits. sl| +62574|37626|12627|4|16|25017.92|0.05|0.05|A|F|1994-01-28|1993-12-25|1994-02-26|NONE|RAIL|even, special instruc| +62574|376381|1396|5|19|27690.03|0.10|0.01|R|F|1994-01-19|1994-01-23|1994-02-09|DELIVER IN PERSON|MAIL|furiously express excuses integr| +62574|830705|18254|6|34|55612.44|0.09|0.02|R|F|1994-03-02|1994-01-05|1994-03-08|TAKE BACK RETURN|REG AIR|nusual packages according to the special | +62575|308612|46131|1|13|21067.80|0.02|0.05|N|O|1997-01-05|1996-12-13|1997-02-01|NONE|TRUCK|old deposits detect | +62600|351706|14214|1|1|1757.69|0.09|0.07|N|O|1995-08-09|1995-09-24|1995-08-26|DELIVER IN PERSON|RAIL|e packages. regular depende| +62600|114708|2215|2|1|1722.70|0.06|0.00|N|O|1995-09-07|1995-09-28|1995-09-11|DELIVER IN PERSON|REG AIR|ely regular deposits wake.| +62601|96330|21333|1|35|46421.55|0.04|0.05|R|F|1994-03-20|1994-02-05|1994-04-01|DELIVER IN PERSON|AIR|regular asymptotes serve carefull| +62601|8084|8085|2|7|6944.56|0.07|0.01|R|F|1994-01-24|1994-03-02|1994-02-23|TAKE BACK RETURN|AIR|nic accounts. reg| +62601|853703|28738|3|48|79519.68|0.00|0.08|A|F|1994-03-25|1994-03-12|1994-03-28|DELIVER IN PERSON|TRUCK|ar packages after | +62601|170897|33401|4|46|90522.94|0.09|0.08|R|F|1994-02-25|1994-02-16|1994-03-05|NONE|AIR|uffily special packages. quickly fina| +62601|249899|12404|5|2|3697.76|0.10|0.04|R|F|1994-03-27|1994-02-09|1994-04-15|NONE|REG AIR|aggle blithely according to the blith| +62601|51688|14190|6|19|31153.92|0.10|0.05|R|F|1994-02-18|1994-02-20|1994-03-08|DELIVER IN PERSON|REG AIR|ckages. quickly regular account| +62602|839591|2108|1|9|13774.95|0.01|0.04|N|O|1998-03-04|1998-01-08|1998-03-05|DELIVER IN PERSON|MAIL|s. carefully regular hockey players | +62603|59947|34950|1|9|17162.46|0.09|0.02|R|F|1994-07-07|1994-06-25|1994-07-20|DELIVER IN PERSON|AIR| ideas boost. eve| +62604|172592|35096|1|12|19975.08|0.07|0.01|N|O|1996-07-20|1996-04-29|1996-07-29|NONE|RAIL|o the ironic platelets sleep fluffi| +62604|753215|15731|2|4|5072.72|0.01|0.08|N|O|1996-05-31|1996-06-23|1996-06-03|COLLECT COD|SHIP|al instructions beneath the slyly eve| +62604|283056|45562|3|13|13507.52|0.06|0.03|N|O|1996-04-05|1996-05-21|1996-04-06|NONE|SHIP|deposits hag| +62604|318012|30519|4|3|3090.00|0.05|0.06|N|O|1996-04-18|1996-05-27|1996-05-11|DELIVER IN PERSON|RAIL|engage furiously pending, regula| +62605|693690|31230|1|10|16836.60|0.03|0.02|N|O|1995-06-22|1995-06-05|1995-07-18|DELIVER IN PERSON|RAIL|fily regular pinto beans. furi| +62605|842469|4986|2|21|29639.82|0.09|0.02|N|O|1995-08-19|1995-06-28|1995-08-26|COLLECT COD|TRUCK|ular accounts sleep| +62605|363925|38940|3|10|19889.10|0.08|0.08|R|F|1995-05-31|1995-07-22|1995-06-14|DELIVER IN PERSON|FOB|yly pending requ| +62605|483662|21190|4|5|8228.20|0.00|0.05|R|F|1995-06-06|1995-07-01|1995-06-11|NONE|RAIL|ously ruthless forges. final,| +62605|902580|15099|5|42|66466.68|0.01|0.03|A|F|1995-06-13|1995-06-28|1995-06-14|COLLECT COD|SHIP|jole against the express requests. accounts| +62606|767685|5231|1|6|10515.90|0.08|0.07|N|O|1997-02-18|1997-01-12|1997-02-19|COLLECT COD|REG AIR|cial instructions. furiously final p| +62606|478136|3155|2|3|3342.33|0.01|0.02|N|O|1997-03-20|1997-02-17|1997-04-04|COLLECT COD|FOB| of the quickl| +62606|28442|3443|3|48|65781.12|0.03|0.02|N|O|1996-12-25|1997-02-07|1997-01-02|NONE|MAIL|ely about th| +62606|9857|47358|4|19|33570.15|0.00|0.01|N|O|1997-01-18|1997-01-10|1997-01-31|DELIVER IN PERSON|MAIL|lithely final packages haggle even, iro| +62606|651148|26175|5|21|23081.31|0.02|0.05|N|O|1996-12-11|1997-02-27|1997-01-02|DELIVER IN PERSON|TRUCK|fully fluffily re| +62606|833223|20772|6|43|49715.74|0.07|0.01|N|O|1997-01-28|1997-02-13|1997-02-16|DELIVER IN PERSON|RAIL|w, pending theodolites nag| +62607|120062|32565|1|7|7574.42|0.10|0.04|R|F|1993-02-13|1993-01-12|1993-03-06|COLLECT COD|FOB| above the exp| +62607|876136|1171|2|41|45595.69|0.04|0.04|R|F|1993-02-07|1993-01-02|1993-03-08|DELIVER IN PERSON|SHIP|ckages pro| +62607|215126|27631|3|43|44767.73|0.03|0.01|R|F|1993-02-15|1993-01-24|1993-03-11|DELIVER IN PERSON|TRUCK|packages. | +62632|533677|21208|1|21|35923.65|0.09|0.01|A|F|1995-02-17|1995-04-21|1995-02-19|COLLECT COD|MAIL| final depths. slowly bold asy| +62632|504258|29279|2|42|53013.66|0.08|0.07|A|F|1995-04-13|1995-03-22|1995-05-04|TAKE BACK RETURN|SHIP|s against the flu| +62632|55716|18218|3|39|65196.69|0.05|0.02|A|F|1995-02-03|1995-04-03|1995-02-21|TAKE BACK RETURN|TRUCK|ng theodolites. furiously final | +62632|408984|46509|4|21|39752.16|0.01|0.04|R|F|1995-04-20|1995-03-10|1995-04-25|TAKE BACK RETURN|FOB|ithely bold requests. carefully reg| +62633|54159|4160|1|40|44526.00|0.00|0.08|N|O|1995-09-08|1995-08-30|1995-09-14|TAKE BACK RETURN|FOB|ts above the bold accoun| +62633|245110|45111|2|25|26377.50|0.01|0.04|N|O|1995-09-18|1995-08-17|1995-10-08|NONE|FOB|efully unusual instructions use quick| +62633|559288|46822|3|17|22903.42|0.10|0.08|N|O|1995-07-25|1995-08-15|1995-08-23|TAKE BACK RETURN|SHIP|refully unusual foxes hind| +62633|948572|23609|4|22|35651.66|0.03|0.03|N|O|1995-10-09|1995-08-18|1995-10-31|DELIVER IN PERSON|REG AIR|ges. silent accounts| +62633|645644|33181|5|27|42919.47|0.05|0.03|N|O|1995-09-28|1995-08-22|1995-10-14|DELIVER IN PERSON|REG AIR|ggle blithely final pinto beans. pending, p| +62633|336034|36035|6|40|42800.80|0.05|0.03|N|O|1995-08-25|1995-08-23|1995-09-21|COLLECT COD|AIR|structions. c| +62633|707889|32918|7|43|81564.55|0.03|0.07|N|O|1995-06-29|1995-09-08|1995-07-19|NONE|SHIP|furiously express r| +62634|478454|28455|1|44|63026.92|0.00|0.05|N|O|1998-04-03|1998-05-16|1998-04-10|COLLECT COD|FOB|ses cajole | +62634|366628|4150|2|22|37281.42|0.06|0.02|N|O|1998-06-03|1998-05-25|1998-06-23|NONE|AIR|ep along the r| +62635|926830|14385|1|26|48276.54|0.00|0.08|R|F|1994-12-19|1995-01-01|1995-01-11|COLLECT COD|RAIL|s. fluffily ironic deposi| +62635|224614|12127|2|35|53851.00|0.10|0.08|R|F|1995-02-08|1995-01-14|1995-02-14|TAKE BACK RETURN|TRUCK|eodolites are quickly. blithely pend| +62635|75228|25229|3|39|46925.58|0.04|0.01|R|F|1994-11-21|1995-01-21|1994-12-12|NONE|AIR|e special court| +62635|342465|4972|4|11|16581.95|0.10|0.00|A|F|1994-12-01|1995-01-18|1994-12-26|DELIVER IN PERSON|SHIP|ajole furiously accord| +62635|792866|30412|5|27|52888.41|0.08|0.07|R|F|1995-02-18|1995-01-19|1995-03-01|COLLECT COD|SHIP|r foxes will have to detect | +62635|686315|36316|6|14|18217.92|0.03|0.02|A|F|1994-12-09|1994-12-23|1994-12-25|DELIVER IN PERSON|RAIL|ep final, bold packages. r| +62636|345690|33209|1|2|3471.36|0.03|0.07|R|F|1993-06-28|1993-07-16|1993-07-17|DELIVER IN PERSON|SHIP|furiously final platelets cajole | +62636|7362|44863|2|19|24117.84|0.02|0.05|R|F|1993-06-17|1993-07-26|1993-06-27|DELIVER IN PERSON|REG AIR| across the regular, final instructio| +62636|727753|27754|3|24|42737.28|0.08|0.03|A|F|1993-05-28|1993-06-27|1993-06-19|TAKE BACK RETURN|TRUCK| instructio| +62636|336543|49050|4|9|14215.77|0.06|0.08|R|F|1993-08-29|1993-07-23|1993-09-26|COLLECT COD|AIR|eans nag. regular ideas ar| +62636|276245|26246|5|15|18318.45|0.00|0.07|R|F|1993-05-28|1993-07-13|1993-06-20|DELIVER IN PERSON|TRUCK| even plate| +62637|826110|38627|1|11|11396.77|0.03|0.08|N|O|1997-03-15|1997-03-01|1997-04-03|TAKE BACK RETURN|AIR|along the blithely unusual | +62638|450676|677|1|28|45546.20|0.09|0.02|N|O|1997-04-08|1997-03-05|1997-04-24|DELIVER IN PERSON|MAIL|luffily ironic platelets. idly | +62638|503103|40634|2|14|15485.12|0.05|0.06|N|O|1997-02-13|1997-02-09|1997-02-28|TAKE BACK RETURN|FOB|. blithely ironic instructions solve s| +62638|639582|14607|3|36|54775.80|0.01|0.01|N|O|1997-02-21|1997-02-02|1997-03-18|NONE|AIR|usly final i| +62638|440353|40354|4|38|49146.54|0.04|0.01|N|O|1997-03-21|1997-02-04|1997-04-20|NONE|REG AIR|lets: evenly even foxes across| +62638|2874|27875|5|18|31983.66|0.03|0.05|N|O|1997-01-07|1997-03-22|1997-01-11|NONE|SHIP|osits integrate furiously after the caref| +62639|748206|23235|1|19|23829.23|0.04|0.06|N|O|1996-08-24|1996-07-16|1996-08-26|NONE|AIR| furiously bold deposits boost| +62639|91484|3986|2|35|51641.80|0.02|0.06|N|O|1996-07-18|1996-08-15|1996-07-29|NONE|TRUCK|yly. slyly regular a| +62639|558934|46468|3|5|9964.55|0.05|0.07|N|O|1996-09-24|1996-08-05|1996-10-04|DELIVER IN PERSON|MAIL|uffily even excuses sl| +62639|987892|412|4|47|93052.95|0.10|0.02|N|O|1996-07-11|1996-08-03|1996-07-14|COLLECT COD|RAIL|y ironic deposits. regular, unus| +62664|958932|21452|1|29|57735.81|0.01|0.08|A|F|1993-05-07|1993-04-30|1993-06-01|COLLECT COD|REG AIR|eodolites integrate car| +62664|765933|3479|2|50|99945.00|0.10|0.03|R|F|1993-06-05|1993-05-08|1993-06-07|TAKE BACK RETURN|FOB|ly even deposits hi| +62664|24402|24403|3|49|64993.60|0.10|0.03|R|F|1993-06-01|1993-04-29|1993-06-18|NONE|MAIL|apades. stealthy i| +62664|111157|36162|4|22|25699.30|0.06|0.00|A|F|1993-05-07|1993-06-05|1993-05-28|DELIVER IN PERSON|SHIP|packages nag furiously pending platelets. | +62664|207124|7125|5|18|18559.98|0.07|0.01|R|F|1993-03-27|1993-05-31|1993-03-28|NONE|FOB|regular ideas print furiously even p| +62665|626618|39131|1|34|52515.72|0.06|0.04|R|F|1993-09-11|1993-07-12|1993-09-28|TAKE BACK RETURN|SHIP|usly unusual | +62665|552534|27557|2|22|34903.22|0.07|0.05|A|F|1993-08-17|1993-07-22|1993-08-29|DELIVER IN PERSON|MAIL| furiously| +62665|437268|37269|3|39|47004.36|0.04|0.03|A|F|1993-09-21|1993-07-27|1993-09-30|COLLECT COD|AIR|ld foxes poach a| +62665|159290|21794|4|23|31033.67|0.04|0.01|A|F|1993-07-17|1993-08-02|1993-08-02|NONE|RAIL|eposits. requests sleep carefully among th| +62665|180119|17629|5|6|7194.66|0.01|0.00|A|F|1993-09-20|1993-08-03|1993-09-22|DELIVER IN PERSON|REG AIR|nding deposits sleep across the| +62665|248161|23170|6|16|17746.40|0.08|0.00|R|F|1993-06-07|1993-08-13|1993-06-16|NONE|REG AIR|kly unusual a| +62666|234841|34842|1|16|28413.28|0.08|0.01|N|O|1998-03-25|1998-02-11|1998-04-03|DELIVER IN PERSON|SHIP|icing, pending platelets haggle quickly ac| +62666|956634|44192|2|46|77767.14|0.06|0.02|N|O|1998-01-26|1998-02-20|1998-01-30|DELIVER IN PERSON|REG AIR|. blithely bold requests ag| +62666|147316|47317|3|1|1363.31|0.02|0.04|N|O|1998-01-14|1998-01-05|1998-02-11|NONE|RAIL|ckages sleep stealthily. carefully final id| +62666|937219|49738|4|30|37685.10|0.04|0.06|N|O|1998-01-29|1998-01-24|1998-02-14|DELIVER IN PERSON|MAIL|l dependencies sl| +62666|830395|30396|5|39|51688.65|0.01|0.07|N|O|1998-03-19|1998-01-21|1998-03-26|DELIVER IN PERSON|AIR|c packages are above the qui| +62666|447208|22225|6|19|21948.42|0.10|0.00|N|O|1998-02-01|1998-02-22|1998-02-09|NONE|MAIL|ular ideas. slyly | +62666|210684|23189|7|48|76544.16|0.00|0.06|N|O|1997-12-31|1998-02-10|1998-01-17|TAKE BACK RETURN|TRUCK|ross the pending, iron| +62667|965169|15170|1|30|37023.60|0.10|0.07|R|F|1994-09-14|1994-09-13|1994-09-27|COLLECT COD|TRUCK| regular depos| +62667|590343|15366|2|11|15766.52|0.01|0.00|A|F|1994-11-20|1994-09-05|1994-12-12|TAKE BACK RETURN|SHIP|t instructions affix slow| +62668|313906|1425|1|34|65276.26|0.03|0.01|N|O|1998-03-29|1998-04-27|1998-04-16|COLLECT COD|AIR|kages during the quickly bol| +62668|817495|17496|2|16|22599.20|0.00|0.07|N|O|1998-03-31|1998-06-02|1998-04-07|COLLECT COD|REG AIR|? stealthily final deposits | +62669|336501|36502|1|49|75337.01|0.05|0.05|R|F|1994-10-13|1994-09-08|1994-10-21|TAKE BACK RETURN|TRUCK|ld asymptotes ha| +62669|570627|33139|2|42|71299.20|0.00|0.03|R|F|1994-08-29|1994-09-29|1994-09-02|NONE|SHIP| regular, unusual courts| +62669|522699|10230|3|30|51650.10|0.01|0.08|R|F|1994-07-28|1994-09-14|1994-08-06|NONE|TRUCK|whithout the slyl| +62669|986755|49275|4|50|92085.50|0.02|0.07|R|F|1994-10-20|1994-08-15|1994-11-18|TAKE BACK RETURN|REG AIR|special ideas. slyly regular packages ca| +62669|388866|38867|5|23|44961.55|0.06|0.05|R|F|1994-07-19|1994-08-22|1994-07-25|TAKE BACK RETURN|FOB|bove the fl| +62669|669259|6799|6|42|51585.24|0.02|0.00|A|F|1994-10-05|1994-08-14|1994-10-08|COLLECT COD|SHIP| carefully carefully ironic requests. fur| +62670|483106|20634|1|30|32672.40|0.06|0.05|A|F|1995-01-07|1994-11-29|1995-02-04|COLLECT COD|REG AIR|the slyly bold fox| +62670|546203|33734|2|49|61209.82|0.02|0.04|R|F|1994-12-05|1995-01-01|1994-12-07|TAKE BACK RETURN|MAIL|g carefully above the regular, ir| +62670|23065|23066|3|36|35570.16|0.01|0.01|R|F|1995-02-17|1994-12-12|1995-02-25|NONE|AIR|od according to the ideas. blithely ir| +62671|453440|15950|1|49|68277.58|0.04|0.01|N|O|1997-09-17|1997-09-28|1997-09-22|NONE|REG AIR|ackages. slyly pe| +62671|955320|5321|2|2|2750.56|0.07|0.02|N|O|1997-08-29|1997-10-15|1997-09-07|COLLECT COD|REG AIR|bold, even foxes. blithely regu| +62671|55824|43328|3|22|39156.04|0.06|0.02|N|O|1997-08-14|1997-10-19|1997-08-31|COLLECT COD|REG AIR| the slyly fi| +62671|222627|10140|4|17|26343.37|0.03|0.05|N|O|1997-08-29|1997-09-14|1997-09-02|TAKE BACK RETURN|FOB|s. regular ideas sleep furiousl| +62671|687435|24975|5|3|4267.20|0.08|0.06|N|O|1997-10-16|1997-09-10|1997-11-08|COLLECT COD|SHIP|ly about the quickly regular waters. carefu| +62696|869921|7473|1|41|77526.08|0.00|0.03|A|F|1994-11-06|1994-12-03|1994-11-13|NONE|TRUCK|s the regular accounts. asymptotes beyon| +62696|752154|14670|2|12|14473.44|0.10|0.06|A|F|1994-11-24|1994-10-27|1994-12-02|TAKE BACK RETURN|FOB|ously fluffy packa| +62696|443427|30952|3|7|9592.80|0.01|0.01|R|F|1994-10-20|1994-10-31|1994-10-21|NONE|MAIL| ironic pinto| +62697|431435|6452|1|31|42358.71|0.02|0.02|N|O|1997-03-30|1997-03-31|1997-04-06|DELIVER IN PERSON|AIR|s use furiously furiou| +62697|121109|33612|2|41|46334.10|0.05|0.03|N|O|1997-04-14|1997-03-24|1997-05-06|DELIVER IN PERSON|FOB| packages. b| +62698|752658|15174|1|40|68424.80|0.07|0.08|N|O|1996-09-15|1996-08-18|1996-10-01|TAKE BACK RETURN|FOB|s haggle blithely against the quickly bold| +62699|185964|48468|1|20|40999.20|0.02|0.06|R|F|1993-04-10|1993-04-03|1993-04-23|TAKE BACK RETURN|SHIP|y unusual requests. packages ab| +62699|491322|16341|2|9|11819.70|0.06|0.05|A|F|1993-06-13|1993-05-28|1993-07-04|NONE|REG AIR|r theodolites. furiously | +62699|638481|994|3|33|46841.85|0.10|0.05|R|F|1993-05-31|1993-04-03|1993-06-24|NONE|FOB|st furiously besides| +62699|947503|22540|4|20|31009.20|0.08|0.07|R|F|1993-03-24|1993-05-20|1993-04-16|TAKE BACK RETURN|AIR|furiously after| +62699|678648|41162|5|50|81330.50|0.00|0.05|R|F|1993-06-14|1993-04-03|1993-06-26|TAKE BACK RETURN|TRUCK|ess requests. slyly regular requests boo| +62699|35793|23294|6|36|62236.44|0.03|0.04|R|F|1993-03-16|1993-05-29|1993-03-25|NONE|AIR|refully bold theodolites sh| +62700|370597|8119|1|16|26681.28|0.04|0.08|R|F|1993-02-14|1993-03-26|1993-02-15|TAKE BACK RETURN|REG AIR|nst the quiet | +62700|619701|44726|2|1|1620.67|0.01|0.07|A|F|1993-05-08|1993-05-08|1993-05-22|TAKE BACK RETURN|SHIP| packages are ab| +62700|305727|43246|3|16|27723.36|0.02|0.08|A|F|1993-02-17|1993-05-08|1993-02-25|DELIVER IN PERSON|RAIL|apades: bold i| +62700|337051|12064|4|30|32641.20|0.00|0.04|A|F|1993-06-05|1993-05-14|1993-06-18|DELIVER IN PERSON|FOB|ke carefully across the accounts. pending | +62701|207537|7538|1|40|57780.80|0.09|0.06|A|F|1992-11-15|1992-09-19|1992-12-14|TAKE BACK RETURN|TRUCK|romise. slyly reg| +62701|59257|21759|2|43|52298.75|0.08|0.04|R|F|1992-12-09|1992-09-28|1993-01-08|DELIVER IN PERSON|FOB|nic requests-- carefull| +62701|930157|17712|3|2|2374.22|0.01|0.05|R|F|1992-09-22|1992-09-21|1992-10-07|COLLECT COD|TRUCK|. pending pinto beans sleep slyly above| +62701|148327|48328|4|34|46760.88|0.08|0.03|A|F|1992-12-15|1992-10-07|1993-01-04|COLLECT COD|REG AIR|tions. deposits haggle against | +62701|917294|17295|5|24|31470.00|0.04|0.07|A|F|1992-09-23|1992-09-28|1992-10-06|DELIVER IN PERSON|TRUCK|usual dugo| +62702|619605|44630|1|22|33540.54|0.03|0.03|R|F|1994-11-12|1995-01-10|1994-11-15|TAKE BACK RETURN|RAIL|sts. blithely bold ideas sleep. unusua| +62702|697924|22951|2|40|76875.60|0.04|0.02|R|F|1994-11-27|1994-12-15|1994-12-03|TAKE BACK RETURN|SHIP|arefully f| +62703|495570|8080|1|20|31311.00|0.05|0.00|R|F|1994-06-07|1994-06-13|1994-06-28|NONE|FOB|ly final accounts are even, unu| +62703|35912|23413|2|5|9239.55|0.00|0.08|R|F|1994-06-15|1994-06-12|1994-06-26|DELIVER IN PERSON|SHIP|nusual asymptotes ha| +62703|570490|33002|3|13|20286.11|0.09|0.07|R|F|1994-07-31|1994-05-31|1994-08-14|DELIVER IN PERSON|MAIL|s snooze slyly about the | +62703|216909|4422|4|38|69383.82|0.07|0.02|R|F|1994-08-16|1994-07-21|1994-08-26|TAKE BACK RETURN|SHIP|should have to wake. quickly regu| +62703|586688|49200|5|31|55014.46|0.10|0.06|R|F|1994-06-18|1994-07-01|1994-07-01|NONE|AIR|luffily above th| +62703|460052|35071|6|23|23276.69|0.05|0.08|R|F|1994-06-07|1994-06-19|1994-06-25|NONE|FOB|ajole blithely at the ideas. slyly even pin| +62728|410970|10971|1|30|56428.50|0.01|0.04|R|F|1992-10-22|1992-10-01|1992-11-01|NONE|TRUCK| final, final requ| +62728|165548|15549|2|33|53246.82|0.08|0.01|A|F|1992-12-08|1992-11-10|1992-12-18|NONE|AIR|olites use blith| +62728|355463|5464|3|19|28850.55|0.05|0.08|A|F|1992-12-08|1992-10-09|1992-12-14|DELIVER IN PERSON|TRUCK|c accounts sleep. quickly ironic dolp| +62729|222236|47245|1|37|42854.14|0.04|0.03|R|F|1993-05-18|1993-05-21|1993-06-11|COLLECT COD|TRUCK|ously. dep| +62729|105099|17602|2|32|35330.88|0.02|0.03|A|F|1993-06-09|1993-06-03|1993-07-09|DELIVER IN PERSON|REG AIR|ickly regular asymptotes wake sl| +62729|389261|14276|3|42|56710.50|0.05|0.04|R|F|1993-05-20|1993-04-09|1993-06-07|NONE|REG AIR|ter the blithely bold pa| +62730|977447|27448|1|33|50305.20|0.10|0.08|N|O|1998-08-02|1998-07-24|1998-08-24|TAKE BACK RETURN|MAIL|es. blithely quick packag| +62730|943588|31143|2|7|11420.78|0.00|0.07|N|O|1998-06-10|1998-07-05|1998-07-01|NONE|AIR|thin reque| +62730|869331|44366|3|47|61113.63|0.10|0.03|N|O|1998-06-16|1998-07-14|1998-06-23|DELIVER IN PERSON|RAIL|ly final deposits-- f| +62731|859221|21739|1|28|33045.04|0.02|0.03|N|O|1996-07-29|1996-08-06|1996-07-31|TAKE BACK RETURN|RAIL|daring request| +62731|919250|44287|2|2|2538.42|0.09|0.02|N|O|1996-07-10|1996-07-09|1996-07-21|DELIVER IN PERSON|TRUCK|eas use evenly after the regular ins| +62731|824275|11824|3|43|51566.89|0.10|0.01|N|O|1996-05-22|1996-07-09|1996-05-30|COLLECT COD|TRUCK|eposits hag| +62731|579296|29297|4|30|41258.10|0.03|0.02|N|O|1996-08-23|1996-07-03|1996-09-03|NONE|TRUCK|ckly. fluffily final instructions are| +62731|223938|48947|5|7|13033.44|0.08|0.03|N|O|1996-08-05|1996-07-23|1996-08-15|TAKE BACK RETURN|SHIP|posits. carefully regular requests | +62731|711120|23635|6|4|4524.36|0.03|0.05|N|O|1996-06-18|1996-06-19|1996-06-28|NONE|AIR|he dependencies. slyly regular | +62732|708090|20605|1|4|4392.24|0.05|0.08|N|O|1996-01-11|1996-01-16|1996-01-23|COLLECT COD|MAIL|y stealthy | +62732|852558|40110|2|2|3021.02|0.10|0.02|N|O|1995-12-18|1996-02-05|1996-01-01|NONE|RAIL|ing to the packages? carefully clo| +62732|937852|12889|3|31|58584.11|0.10|0.00|N|O|1996-03-08|1996-02-11|1996-03-15|COLLECT COD|SHIP|asymptotes after the blithely | +62732|476285|1304|4|5|6306.30|0.01|0.07|N|O|1996-03-17|1996-01-10|1996-04-06|TAKE BACK RETURN|MAIL|ding to the final deposits. expres| +62732|907369|44924|5|31|42665.92|0.00|0.05|N|O|1995-12-28|1996-02-16|1995-12-30|COLLECT COD|REG AIR|regular packages s| +62732|150648|13152|6|13|22082.32|0.00|0.07|N|O|1996-02-17|1996-02-05|1996-03-18|NONE|MAIL|lly regular deposits. s| +62733|19938|19939|1|38|70601.34|0.06|0.03|R|F|1992-02-15|1992-03-10|1992-02-23|TAKE BACK RETURN|TRUCK|ctions sleep | +62733|83566|21070|2|36|55784.16|0.07|0.08|A|F|1992-04-30|1992-03-12|1992-05-08|NONE|RAIL| affix fluffily. furiously regular deposits| +62733|491098|41099|3|22|23959.54|0.03|0.02|R|F|1992-04-16|1992-02-13|1992-05-01|TAKE BACK RETURN|REG AIR|gular packages. slyly bold excuses doze. | +62734|612348|37373|1|34|42850.54|0.03|0.00|N|O|1998-09-19|1998-08-17|1998-10-09|DELIVER IN PERSON|TRUCK|g to the thinly spe| +62734|725791|38306|2|40|72670.40|0.07|0.05|N|O|1998-08-12|1998-08-08|1998-08-17|COLLECT COD|AIR| of the blithely ironic d| +62734|354713|29728|3|25|44192.50|0.08|0.04|N|O|1998-06-05|1998-07-16|1998-06-09|TAKE BACK RETURN|AIR|. furiously unusu| +62734|650216|37756|4|8|9329.44|0.09|0.01|N|O|1998-07-09|1998-06-24|1998-07-30|DELIVER IN PERSON|REG AIR|en theodolites lose slyly slyly spec| +62734|178583|3590|5|18|29908.44|0.05|0.02|N|O|1998-06-14|1998-08-20|1998-07-12|DELIVER IN PERSON|AIR|ven requests cajole blithe| +62734|431598|44107|6|2|3059.14|0.05|0.05|N|O|1998-06-21|1998-07-07|1998-06-30|NONE|MAIL|sits. pinto beans affix. fluf| +62735|160307|10308|1|3|4101.90|0.01|0.07|R|F|1993-06-18|1993-07-03|1993-07-06|TAKE BACK RETURN|TRUCK| accounts among the fu| +62760|158273|8274|1|4|5325.08|0.04|0.03|R|F|1993-07-07|1993-06-09|1993-08-03|DELIVER IN PERSON|REG AIR|even theodoli| +62760|93402|5904|2|23|32094.20|0.05|0.03|A|F|1993-07-13|1993-06-24|1993-07-16|TAKE BACK RETURN|SHIP| silent sheaves! deposits ha| +62760|792180|4696|3|19|24170.85|0.09|0.06|A|F|1993-06-02|1993-06-28|1993-06-25|NONE|RAIL|lyly. ironic depths might haggle acco| +62760|156022|31029|4|35|37730.70|0.05|0.05|R|F|1993-05-17|1993-07-01|1993-05-23|DELIVER IN PERSON|SHIP|ges hang fu| +62760|259222|46738|5|19|22442.99|0.01|0.02|R|F|1993-04-30|1993-05-21|1993-05-15|DELIVER IN PERSON|SHIP|ray quickly against the even accoun| +62761|2029|27030|1|44|40964.88|0.02|0.05|R|F|1994-07-05|1994-08-11|1994-07-28|DELIVER IN PERSON|TRUCK| regular packag| +62761|87775|37776|2|27|47594.79|0.03|0.04|A|F|1994-07-12|1994-07-24|1994-08-11|NONE|MAIL| even, careful deposits| +62761|230871|5880|3|15|27027.90|0.07|0.08|R|F|1994-09-05|1994-08-16|1994-10-03|NONE|SHIP| ideas wake: | +62761|247637|22646|4|31|49123.22|0.03|0.08|R|F|1994-07-06|1994-08-09|1994-07-09|NONE|FOB|efully across the| +62761|25543|13044|5|44|64615.76|0.09|0.00|R|F|1994-06-27|1994-08-19|1994-07-09|NONE|TRUCK|ly quick accounts | +62762|967057|42096|1|21|23604.21|0.00|0.06|R|F|1993-09-29|1993-08-10|1993-10-21|TAKE BACK RETURN|SHIP|s wake across the requests. | +62762|310915|35928|2|16|30814.40|0.10|0.03|R|F|1993-07-17|1993-08-27|1993-07-29|DELIVER IN PERSON|TRUCK|the furiously unusual pinto beans. bold exc| +62762|533511|46022|3|24|37067.76|0.04|0.02|R|F|1993-08-01|1993-08-21|1993-08-19|TAKE BACK RETURN|FOB| requests. silent, pending theodolites ha| +62762|712349|37378|4|22|29948.82|0.06|0.01|R|F|1993-08-21|1993-09-18|1993-09-17|DELIVER IN PERSON|FOB|ven requests a| +62762|449014|49015|5|36|34667.64|0.03|0.05|A|F|1993-08-19|1993-09-15|1993-08-22|NONE|AIR|eodolites cajole carefully | +62762|566792|4326|6|6|11152.62|0.04|0.04|R|F|1993-06-26|1993-08-11|1993-07-11|NONE|SHIP|slyly special asymptotes. blith| +62763|931119|6156|1|43|49453.01|0.04|0.02|R|F|1995-01-01|1995-01-23|1995-01-20|TAKE BACK RETURN|SHIP|blithely idly stealthy requests. permanent| +62763|311822|24329|2|31|56848.11|0.09|0.07|A|F|1994-12-22|1994-12-31|1995-01-17|COLLECT COD|REG AIR| blithely. carefully stealthy pack| +62763|781172|43688|3|12|15037.68|0.06|0.07|A|F|1995-01-08|1994-12-26|1995-01-15|COLLECT COD|TRUCK|heodolites. finally bold de| +62763|155797|43307|4|42|77817.18|0.10|0.08|R|F|1995-01-06|1994-12-18|1995-01-18|NONE|SHIP|its cajole regular, express asympto| +62763|473138|23139|5|10|11111.10|0.08|0.02|R|F|1995-01-22|1995-02-08|1995-02-13|TAKE BACK RETURN|REG AIR|ding theodoli| +62763|17110|29611|6|43|44165.73|0.07|0.02|A|F|1995-01-01|1994-12-30|1995-01-20|COLLECT COD|REG AIR|al deposits nag. blithely regular account| +62764|414209|39226|1|48|53912.64|0.08|0.08|R|F|1992-11-13|1992-11-20|1992-12-02|COLLECT COD|SHIP| carefully regular platelets poach perma| +62764|609005|46542|2|7|6397.79|0.01|0.00|A|F|1992-10-10|1992-11-22|1992-10-28|NONE|FOB|unts. final requests could wake qu| +62764|534893|34894|3|9|17350.83|0.05|0.02|R|F|1993-01-23|1992-12-11|1993-01-24|NONE|AIR|ng instructions. even, ironic | +62764|944097|44098|4|32|36513.60|0.09|0.04|R|F|1992-11-01|1992-11-14|1992-11-24|TAKE BACK RETURN|FOB|al packages. furiously fluffy ideas are fu| +62764|430111|5128|5|43|44766.87|0.06|0.02|A|F|1992-10-07|1992-11-01|1992-10-28|NONE|FOB| pinto beans wake.| +62764|871563|9115|6|22|33759.44|0.01|0.03|A|F|1992-10-04|1992-11-01|1992-10-31|COLLECT COD|REG AIR|accounts. | +62765|2050|39551|1|29|27609.45|0.08|0.06|N|O|1996-11-03|1996-12-13|1996-11-21|COLLECT COD|REG AIR| even instructions. special re| +62765|446763|21780|2|46|78648.04|0.06|0.06|N|O|1997-01-03|1996-11-30|1997-01-22|TAKE BACK RETURN|TRUCK|ironic accounts nod slyly. permanent| +62766|856558|44110|1|13|19688.63|0.10|0.08|A|F|1993-05-17|1993-07-05|1993-05-25|NONE|FOB| to cajole carefully? final, | +62766|156613|6614|2|40|66784.40|0.10|0.06|A|F|1993-08-16|1993-05-19|1993-08-31|NONE|TRUCK|ithely around the slyly | +62766|180350|42854|3|14|20024.90|0.09|0.05|A|F|1993-06-20|1993-06-12|1993-07-11|NONE|REG AIR| even decoys wake slyly. slyly| +62766|140793|15798|4|40|73351.60|0.01|0.06|R|F|1993-05-14|1993-06-06|1993-05-25|NONE|TRUCK| slyly ironic deposits. accounts affix unus| +62766|305806|43325|5|38|68848.02|0.08|0.03|R|F|1993-06-04|1993-06-06|1993-06-25|NONE|AIR|xes. special requests| +62766|676362|1389|6|47|62901.51|0.05|0.08|R|F|1993-06-27|1993-06-10|1993-07-25|DELIVER IN PERSON|TRUCK|ges was closely regular | +62767|719257|19258|1|13|16590.86|0.05|0.01|N|O|1998-10-29|1998-09-26|1998-10-30|COLLECT COD|FOB|l ideas breach quickly carefully even| +62767|543560|31091|2|8|12828.32|0.00|0.02|N|O|1998-09-07|1998-09-26|1998-10-06|NONE|TRUCK|ss pinto beans are slyly. quickly final| +62792|78372|28373|1|37|49963.69|0.00|0.01|R|F|1992-06-10|1992-07-18|1992-06-26|COLLECT COD|RAIL|ages. furiously final instruc| +62792|186548|49052|2|26|42498.04|0.03|0.06|R|F|1992-07-16|1992-07-25|1992-07-23|DELIVER IN PERSON|RAIL|thely furiously ironic theodolites. unusua| +62792|304525|4526|3|44|67298.44|0.03|0.00|R|F|1992-10-03|1992-08-26|1992-10-07|NONE|SHIP|s cajole carefully along the unusual i| +62792|135674|35675|4|3|5129.01|0.00|0.01|R|F|1992-07-29|1992-08-28|1992-08-27|NONE|TRUCK| quietly bold requests. special fox| +62793|610932|35957|1|34|62658.60|0.04|0.05|R|F|1992-12-14|1993-01-06|1992-12-31|DELIVER IN PERSON|RAIL|y unusual foxes! carefully e| +62793|921262|21263|2|17|21814.74|0.01|0.07|R|F|1992-12-16|1992-12-06|1992-12-18|DELIVER IN PERSON|REG AIR| bold deposits-- final excus| +62794|196522|46523|1|49|79307.48|0.01|0.05|N|O|1996-07-28|1996-06-28|1996-07-31|TAKE BACK RETURN|RAIL|ronic theodolites. deposits nag| +62794|932331|19886|2|21|28629.09|0.05|0.08|N|O|1996-08-16|1996-06-21|1996-08-19|TAKE BACK RETURN|AIR|, unusual packages; careful| +62794|678821|28822|3|4|7199.16|0.08|0.08|N|O|1996-06-05|1996-06-05|1996-06-28|COLLECT COD|FOB|s haggle blithely. carefully spec| +62794|933373|8410|4|22|30939.26|0.03|0.02|N|O|1996-06-18|1996-06-18|1996-07-08|TAKE BACK RETURN|MAIL|structions are s| +62794|199643|24650|5|22|38338.08|0.09|0.01|N|O|1996-05-28|1996-07-16|1996-06-26|COLLECT COD|REG AIR|onic, ironic deposits w| +62794|395849|33371|6|43|83627.69|0.06|0.00|N|O|1996-08-16|1996-06-13|1996-08-23|TAKE BACK RETURN|TRUCK|lyly bold pa| +62795|318335|30842|1|11|14886.52|0.10|0.04|N|O|1997-05-14|1997-05-16|1997-05-24|NONE|SHIP|ld, final requests nag. blit| +62795|253483|28494|2|7|10055.29|0.07|0.05|N|O|1997-04-26|1997-06-29|1997-05-19|COLLECT COD|REG AIR|ke deposits! final instructions | +62795|278135|28136|3|49|54542.88|0.09|0.07|N|O|1997-06-06|1997-05-25|1997-06-19|DELIVER IN PERSON|SHIP|uffily alongside| +62795|612401|24914|4|50|65668.50|0.08|0.08|N|O|1997-06-11|1997-05-24|1997-06-24|NONE|TRUCK|quickly. regular inst| +62795|610006|10007|5|2|1831.94|0.03|0.03|N|O|1997-04-28|1997-05-19|1997-05-14|TAKE BACK RETURN|FOB|uctions haggle quickly f| +62796|11837|49338|1|26|45469.58|0.08|0.08|A|F|1993-02-23|1992-12-09|1993-03-22|DELIVER IN PERSON|SHIP|lly fluffy| +62796|941314|28869|2|39|52855.53|0.03|0.04|R|F|1992-12-04|1993-01-09|1992-12-22|DELIVER IN PERSON|FOB|c deposits. regular, i| +62796|653491|41031|3|29|41889.34|0.02|0.08|R|F|1993-03-10|1993-02-01|1993-03-14|NONE|TRUCK| nag. furiously even accounts ca| +62796|214003|1516|4|48|44015.52|0.10|0.03|R|F|1992-12-06|1992-12-28|1992-12-27|COLLECT COD|REG AIR|nusual dependencies. furiously special| +62797|129708|17215|1|16|27803.20|0.00|0.01|R|F|1995-02-02|1994-12-30|1995-02-13|NONE|SHIP| blithely ironic accou| +62797|987104|24662|2|22|26203.32|0.04|0.07|A|F|1994-12-20|1995-01-12|1995-01-10|NONE|AIR|c instructions are fur| +62797|245260|32773|3|45|54236.25|0.00|0.01|R|F|1995-03-12|1994-12-25|1995-03-27|NONE|SHIP|s haggle ir| +62797|80749|43251|4|47|81297.78|0.01|0.00|A|F|1994-12-26|1995-01-20|1995-01-16|NONE|AIR|packages sleep quickly specia| +62797|135467|35468|5|40|60098.40|0.01|0.03|A|F|1994-12-24|1995-01-07|1995-01-12|NONE|REG AIR| final accounts are slyly fluffily pendi| +62797|790323|2839|6|39|55118.31|0.10|0.04|A|F|1994-11-27|1995-02-12|1994-12-02|TAKE BACK RETURN|AIR|ts wake fluffily f| +62797|942286|29841|7|21|27893.04|0.08|0.07|R|F|1995-03-06|1995-01-07|1995-03-28|NONE|FOB|s use blithely.| +62798|992602|42603|1|33|55920.48|0.02|0.06|N|O|1997-09-04|1997-08-06|1997-10-04|NONE|AIR|al asymptotes. quickly pending pinto bean| +62798|654309|29336|2|24|30318.48|0.01|0.08|N|O|1997-06-15|1997-07-13|1997-07-13|DELIVER IN PERSON|SHIP| cajole about the quickly| +62799|114666|14667|1|30|50419.80|0.07|0.06|R|F|1992-12-06|1992-12-21|1992-12-27|TAKE BACK RETURN|TRUCK|egular deposits | +62824|821339|8888|1|11|13863.19|0.01|0.07|N|O|1997-06-17|1997-09-01|1997-06-21|DELIVER IN PERSON|SHIP|olites. carefully bold deposits| +62824|243563|43564|2|3|4519.65|0.00|0.07|N|O|1997-07-17|1997-07-11|1997-07-18|DELIVER IN PERSON|REG AIR|ve despite the blithely express| +62825|885918|10953|1|35|66635.45|0.05|0.08|A|F|1995-04-21|1995-05-04|1995-04-29|TAKE BACK RETURN|REG AIR|ording to the i| +62825|614790|14791|2|22|37504.72|0.08|0.03|R|F|1995-04-15|1995-04-23|1995-04-20|COLLECT COD|RAIL|n above the express, even theodolites. car| +62825|772296|47327|3|50|68413.00|0.02|0.05|A|F|1995-05-24|1995-05-19|1995-05-26|DELIVER IN PERSON|FOB|the blithely regular | +62825|962996|12997|4|41|84416.95|0.07|0.04|R|F|1995-06-01|1995-05-28|1995-06-06|TAKE BACK RETURN|RAIL| ironic packages maint| +62825|58424|20926|5|33|45619.86|0.08|0.02|R|F|1995-05-19|1995-05-11|1995-06-11|DELIVER IN PERSON|SHIP| above the carefully regular a| +62826|408481|46006|1|4|5557.84|0.10|0.01|A|F|1992-04-19|1992-03-15|1992-05-15|COLLECT COD|MAIL|ular instructions haggle furiou| +62826|330380|5393|2|17|23976.29|0.01|0.05|A|F|1992-04-17|1992-04-23|1992-05-08|COLLECT COD|REG AIR|uriously final requests tr| +62827|366187|16188|1|20|25063.40|0.01|0.01|A|F|1992-11-07|1992-10-05|1992-11-15|DELIVER IN PERSON|SHIP|thily regular foxes sleep slyl| +62827|501174|13685|2|28|32904.20|0.03|0.00|A|F|1992-09-30|1992-08-27|1992-10-05|DELIVER IN PERSON|RAIL|bits. furiously special| +62827|229945|42450|3|11|20624.23|0.02|0.07|A|F|1992-11-17|1992-10-15|1992-12-02|TAKE BACK RETURN|AIR|ages. carefully fi| +62827|673553|48580|4|35|53428.20|0.02|0.06|A|F|1992-11-07|1992-09-07|1992-11-18|COLLECT COD|FOB|. ironic, careful warthogs could have to| +62828|802968|15485|1|3|5612.76|0.01|0.06|R|F|1994-10-26|1994-12-11|1994-11-14|NONE|SHIP|sly blithely even theodolites. silent| +62828|478081|28082|2|9|9531.54|0.09|0.07|R|F|1994-12-31|1994-11-15|1995-01-09|TAKE BACK RETURN|FOB|ithely unusual packa| +62828|99475|11977|3|19|28014.93|0.10|0.01|R|F|1995-01-02|1994-12-05|1995-01-24|COLLECT COD|TRUCK| furiously even ac| +62828|869017|31535|4|35|34508.95|0.05|0.06|A|F|1994-12-31|1994-11-01|1995-01-03|TAKE BACK RETURN|FOB|ly regular instructions. fina| +62829|321523|9042|1|50|77225.50|0.02|0.05|A|F|1994-10-16|1994-12-11|1994-10-23|NONE|TRUCK|y final account| +62829|821326|46359|2|46|57374.88|0.07|0.03|R|F|1994-11-07|1994-12-14|1994-12-06|NONE|TRUCK|arefully. accounts affix slyly across| +62829|9828|34829|3|49|85153.18|0.04|0.01|R|F|1994-10-26|1994-12-01|1994-11-07|COLLECT COD|RAIL|counts hinder about the platelets. boldly | +62830|439990|2499|1|13|25089.61|0.07|0.01|A|F|1995-02-06|1994-12-31|1995-02-18|NONE|MAIL|accounts. regular acc| +62830|898455|36007|2|1|1453.41|0.06|0.00|R|F|1995-01-21|1995-02-15|1995-01-28|DELIVER IN PERSON|REG AIR|eposits. flu| +62830|320021|7540|3|31|32271.31|0.02|0.04|R|F|1994-12-08|1995-02-20|1994-12-22|COLLECT COD|TRUCK|to beans nag slyly ironic | +62830|585135|47647|4|9|10980.99|0.07|0.01|R|F|1995-02-26|1995-01-22|1995-03-07|DELIVER IN PERSON|RAIL|ng the furiously bold depos| +62830|359658|34673|5|1|1717.64|0.05|0.01|R|F|1995-03-07|1994-12-30|1995-03-13|NONE|SHIP|ng request| +62831|81092|43594|1|33|35411.97|0.04|0.07|N|O|1996-09-02|1996-11-17|1996-09-11|NONE|TRUCK| express pains cajole silently-- quickly | +62831|912400|49955|2|4|5649.44|0.06|0.08|N|O|1996-12-03|1996-10-06|1996-12-08|NONE|SHIP|thely among the carefully expr| +62831|698649|48650|3|36|59313.96|0.09|0.03|N|O|1996-09-01|1996-10-08|1996-09-20|NONE|MAIL|uts ought to doze a| +62831|187995|25505|4|5|10414.95|0.08|0.07|N|O|1996-11-11|1996-11-07|1996-12-05|DELIVER IN PERSON|FOB|thely furiou| +62831|625030|25031|5|29|27695.00|0.04|0.05|N|O|1996-10-04|1996-10-19|1996-10-06|COLLECT COD|MAIL|st blithely quickly ironic packages| +62831|864631|27149|6|47|74992.73|0.00|0.07|N|O|1996-12-13|1996-10-30|1997-01-09|COLLECT COD|TRUCK|s. pinto beans along th| +62831|842776|17809|7|5|8593.65|0.09|0.02|N|O|1996-11-26|1996-11-06|1996-12-06|TAKE BACK RETURN|SHIP|, regular | +62856|521816|34327|1|31|56971.49|0.00|0.07|A|F|1994-07-10|1994-07-13|1994-08-01|TAKE BACK RETURN|AIR| carefully fluffily pending account| +62856|147560|35067|2|6|9645.36|0.04|0.03|A|F|1994-05-14|1994-06-22|1994-05-16|COLLECT COD|MAIL|riously even dug| +62856|34120|34121|3|11|11595.32|0.10|0.03|R|F|1994-06-16|1994-06-06|1994-07-09|TAKE BACK RETURN|TRUCK|inal instructions sleep pending, un| +62856|442506|30031|4|34|49248.32|0.06|0.02|A|F|1994-08-20|1994-06-26|1994-09-12|DELIVER IN PERSON|FOB|otornis af| +62856|187638|25148|5|38|65573.94|0.07|0.03|R|F|1994-06-02|1994-05-31|1994-06-09|TAKE BACK RETURN|TRUCK|y ironic de| +62856|629843|4868|6|48|85094.88|0.07|0.02|R|F|1994-06-12|1994-06-05|1994-07-07|NONE|MAIL|lent requests solve! pa| +62856|762006|24522|7|43|45922.71|0.00|0.03|A|F|1994-08-16|1994-07-12|1994-09-05|DELIVER IN PERSON|FOB|al excuses haggle s| +62857|31447|31448|1|46|63408.24|0.03|0.01|A|F|1993-07-09|1993-07-07|1993-07-25|COLLECT COD|RAIL|ular excuses. dolphins mo| +62857|513159|25670|2|25|29303.25|0.06|0.07|R|F|1993-07-22|1993-07-22|1993-08-21|NONE|MAIL|r the quickly unusu| +62857|657289|32316|3|14|17447.50|0.08|0.06|A|F|1993-06-14|1993-07-05|1993-06-16|NONE|RAIL|cuses. carefully even foxes| +62857|42372|42373|4|34|44688.58|0.03|0.08|R|F|1993-06-26|1993-08-25|1993-07-12|TAKE BACK RETURN|FOB|odolites breach along the quickly even | +62857|137415|49918|5|46|66810.86|0.06|0.02|R|F|1993-06-07|1993-07-10|1993-07-06|TAKE BACK RETURN|RAIL| the blithely express ideas| +62857|521764|46785|6|24|42857.76|0.08|0.05|A|F|1993-08-06|1993-08-21|1993-09-02|TAKE BACK RETURN|MAIL|carefully beyond th| +62857|279858|17374|7|2|3675.68|0.02|0.04|R|F|1993-08-23|1993-07-22|1993-09-22|NONE|SHIP|. ideas engage furiously according to the f| +62858|571086|21087|1|12|13884.72|0.09|0.03|N|O|1997-12-26|1997-11-30|1998-01-13|DELIVER IN PERSON|RAIL|kages. furiously even requests wak| +62858|236039|11048|2|50|48751.00|0.05|0.06|N|O|1997-12-18|1997-12-14|1998-01-08|NONE|SHIP|lyly express asymptotes| +62858|106162|18665|3|24|28035.84|0.09|0.01|N|O|1997-12-18|1997-10-28|1997-12-28|TAKE BACK RETURN|AIR|e bravely? quickly final| +62858|258998|34009|4|31|60666.38|0.00|0.08|N|O|1997-10-25|1997-12-13|1997-11-22|DELIVER IN PERSON|RAIL|es. packages haggle blithely around t| +62859|744070|44071|1|35|38991.40|0.00|0.03|A|F|1992-03-27|1992-02-20|1992-04-19|TAKE BACK RETURN|RAIL|y final accounts cajole special platele| +62859|575692|25693|2|37|65403.79|0.07|0.05|A|F|1992-02-26|1992-02-21|1992-02-28|DELIVER IN PERSON|SHIP|quickly alon| +62859|645586|20611|3|3|4594.65|0.07|0.03|A|F|1992-04-04|1992-03-16|1992-04-19|COLLECT COD|FOB|forges along the blithely | +62859|348009|35528|4|17|17968.83|0.01|0.08|A|F|1992-01-10|1992-03-09|1992-02-01|TAKE BACK RETURN|TRUCK|tructions. blithely final pl| +62859|982900|45420|5|44|87245.84|0.02|0.07|R|F|1992-03-25|1992-02-29|1992-04-05|NONE|TRUCK|final platelets alongside of the| +62859|595764|8276|6|38|70670.12|0.09|0.02|R|F|1992-02-01|1992-03-13|1992-02-22|COLLECT COD|MAIL|he regular accounts. i| +62860|775427|12973|1|11|16526.29|0.02|0.02|R|F|1994-05-30|1994-07-16|1994-06-09|COLLECT COD|SHIP|ake permanently furiously| +62860|597935|10447|2|34|69118.94|0.05|0.03|R|F|1994-09-16|1994-07-13|1994-10-04|DELIVER IN PERSON|MAIL|about the regular, special theodolites. | +62860|485770|35771|3|5|8778.75|0.08|0.01|R|F|1994-07-26|1994-06-24|1994-07-29|DELIVER IN PERSON|FOB|. blithely | +62860|332108|44615|4|28|31922.52|0.05|0.07|R|F|1994-09-03|1994-08-09|1994-09-11|NONE|MAIL|l requests cajole carefully| +62860|728833|28834|5|45|83781.00|0.00|0.05|R|F|1994-08-08|1994-07-26|1994-08-12|DELIVER IN PERSON|SHIP|ckages sleep boldly along the bold pinto b| +62860|491568|41569|6|39|60822.06|0.09|0.01|A|F|1994-09-20|1994-08-17|1994-10-03|DELIVER IN PERSON|AIR|usly furiously even| +62860|771845|46876|7|50|95840.50|0.05|0.07|A|F|1994-09-13|1994-06-28|1994-09-17|DELIVER IN PERSON|SHIP| according to| +62861|394169|19184|1|17|21473.55|0.05|0.03|N|O|1997-11-21|1997-09-21|1997-12-01|NONE|FOB|inst the caref| +62861|784275|9306|2|32|43495.68|0.06|0.04|N|O|1997-08-19|1997-10-17|1997-09-16|TAKE BACK RETURN|SHIP|tructions alongside o| +62861|305916|18423|3|14|26906.60|0.02|0.08|N|O|1997-10-15|1997-10-13|1997-10-20|NONE|FOB| dogged, ironic pi| +62862|185755|23265|1|24|44178.00|0.06|0.04|A|F|1993-09-08|1993-08-01|1993-09-27|TAKE BACK RETURN|FOB|ess foxes sleep carefully pending inst| +62862|971952|46991|2|7|14167.37|0.04|0.08|R|F|1993-05-17|1993-08-08|1993-06-10|TAKE BACK RETURN|TRUCK|ts. deposits| +62862|594371|44372|3|26|38099.10|0.09|0.06|R|F|1993-08-25|1993-08-02|1993-08-31|NONE|RAIL|ong the package| +62862|590613|40614|4|29|49404.11|0.00|0.00|R|F|1993-05-23|1993-08-05|1993-06-04|TAKE BACK RETURN|AIR|y above the furiously express war| +62862|428675|41184|5|11|17640.15|0.02|0.01|R|F|1993-08-24|1993-07-03|1993-08-25|NONE|AIR|jole among the| +62863|300533|25546|1|15|23002.80|0.08|0.00|N|O|1996-01-20|1996-01-31|1996-02-09|NONE|FOB|its. express, unusual packages haggle care| +62863|54955|42459|2|4|7639.80|0.01|0.08|N|O|1996-01-02|1996-02-11|1996-01-19|TAKE BACK RETURN|RAIL|ly unusual foxes. unusual, i| +62863|618653|6190|3|34|53435.08|0.06|0.05|N|O|1996-03-10|1995-12-27|1996-03-28|NONE|MAIL| even accounts according to the iro| +62888|786303|23849|1|21|29174.67|0.10|0.05|N|O|1995-09-11|1995-09-10|1995-09-26|TAKE BACK RETURN|TRUCK|ters are fl| +62888|377749|15271|2|49|89509.77|0.08|0.03|N|O|1995-08-11|1995-09-17|1995-08-14|DELIVER IN PERSON|MAIL| near the carefully regular excuses inte| +62888|817518|5067|3|46|66031.62|0.10|0.01|N|O|1995-10-10|1995-08-31|1995-11-03|DELIVER IN PERSON|RAIL| quickly after the carefully unus| +62888|22145|9646|4|9|9604.26|0.06|0.03|N|O|1995-09-10|1995-09-14|1995-09-26|COLLECT COD|RAIL|ructions haggle sly| +62889|109125|46632|1|45|51035.40|0.06|0.04|N|O|1996-03-04|1996-04-04|1996-03-27|DELIVER IN PERSON|RAIL|y daring requests sleep slyly enticing| +62890|562684|25196|1|23|40173.18|0.04|0.06|R|F|1995-03-22|1995-02-20|1995-04-01|DELIVER IN PERSON|SHIP|mong the careful| +62890|29124|41625|2|28|29487.36|0.01|0.07|R|F|1995-03-15|1995-02-27|1995-04-02|TAKE BACK RETURN|TRUCK|osits dete| +62890|482790|20318|3|17|30137.09|0.01|0.00|A|F|1995-02-28|1995-03-23|1995-03-16|COLLECT COD|MAIL|the blithely spec| +62890|235534|10543|4|10|14695.20|0.06|0.00|R|F|1995-02-02|1995-02-10|1995-02-13|NONE|TRUCK|yly. furiously s| +62891|373028|35536|1|22|24222.22|0.04|0.06|A|F|1992-02-12|1992-03-16|1992-02-13|DELIVER IN PERSON|REG AIR|ely accounts. slyly regular exc| +62891|470508|20509|2|8|11827.84|0.01|0.02|A|F|1992-04-16|1992-04-01|1992-05-04|COLLECT COD|RAIL|ic pinto beans! pl| +62891|811617|24134|3|33|50442.81|0.00|0.06|R|F|1992-04-12|1992-02-24|1992-04-25|TAKE BACK RETURN|MAIL|st the furiously regular pac| +62891|834177|21726|4|40|44445.20|0.03|0.08|R|F|1992-03-16|1992-02-25|1992-03-18|COLLECT COD|REG AIR|ly according to the slyly busy reque| +62891|7383|32384|5|8|10323.04|0.07|0.06|R|F|1992-03-19|1992-03-26|1992-03-27|TAKE BACK RETURN|MAIL|against the furiously ironic r| +62892|26981|1982|1|26|49607.48|0.07|0.04|A|F|1993-09-09|1993-11-15|1993-09-18|DELIVER IN PERSON|FOB|posits nag furiously according| +62892|453418|40946|2|19|26056.41|0.02|0.04|R|F|1993-09-18|1993-11-08|1993-10-09|NONE|TRUCK|elets. furiously regular acc| +62892|584029|21563|3|48|53424.00|0.09|0.03|A|F|1993-11-01|1993-10-16|1993-11-03|COLLECT COD|RAIL|efully bold pinto beans abov| +62892|771617|46648|4|38|64166.04|0.00|0.05|R|F|1993-10-14|1993-11-11|1993-11-10|DELIVER IN PERSON|TRUCK|ove the idle, final requ| +62892|550537|25560|5|27|42862.77|0.00|0.07|R|F|1993-12-03|1993-11-11|1993-12-28|NONE|AIR|the slyly regular r| +62893|486883|49393|1|44|82273.84|0.01|0.00|N|O|1996-01-02|1995-11-17|1996-01-08|DELIVER IN PERSON|MAIL| instructi| +62893|26283|26284|2|12|14511.36|0.00|0.07|N|O|1995-10-16|1995-10-14|1995-10-21|NONE|FOB| about the carefully bold requests. r| +62893|731121|6150|3|25|28802.25|0.02|0.08|N|O|1995-09-19|1995-11-05|1995-09-23|DELIVER IN PERSON|AIR|kages. blith| +62893|942637|30192|4|37|62144.83|0.05|0.03|N|O|1995-10-21|1995-11-28|1995-11-08|TAKE BACK RETURN|RAIL|ites! blithely even att| +62894|734831|47346|1|24|44779.20|0.10|0.08|N|O|1998-07-31|1998-07-10|1998-08-08|TAKE BACK RETURN|TRUCK|. accounts x-ray. pending excuse| +62895|21587|9088|1|38|57326.04|0.10|0.05|N|O|1996-03-10|1996-01-25|1996-04-07|COLLECT COD|RAIL|d, even requests will haggl| +62920|462047|49575|1|42|42378.84|0.05|0.03|N|O|1997-03-23|1997-03-30|1997-04-07|DELIVER IN PERSON|FOB|regular theodolites sublate quickly above| +62920|616474|28987|2|1|1390.44|0.02|0.08|N|O|1997-05-29|1997-04-02|1997-06-03|TAKE BACK RETURN|REG AIR|structions-- | +62920|65834|40837|3|14|25197.62|0.02|0.08|N|O|1997-06-19|1997-04-06|1997-07-03|NONE|REG AIR|s deposits; ironic sheave| +62920|455490|30509|4|26|37582.22|0.06|0.03|N|O|1997-05-02|1997-04-13|1997-05-29|COLLECT COD|FOB|ts nag quickly. instructions impres| +62920|416984|16985|5|49|93147.04|0.00|0.07|N|O|1997-05-07|1997-05-06|1997-06-02|DELIVER IN PERSON|REG AIR|ithely final packages| +62920|241448|41449|6|31|43072.33|0.03|0.05|N|O|1997-06-12|1997-05-07|1997-07-11|COLLECT COD|FOB|riously regular foxes. pe| +62920|3321|15822|7|45|55094.40|0.05|0.04|N|O|1997-03-28|1997-05-07|1997-04-24|DELIVER IN PERSON|RAIL| pinto beans detect at the | +62921|805731|43280|1|29|47464.01|0.07|0.02|N|O|1996-04-23|1996-02-22|1996-05-11|TAKE BACK RETURN|AIR|fily final requests haggle f| +62921|909911|22430|2|20|38417.40|0.09|0.03|N|O|1996-02-06|1996-02-21|1996-02-19|TAKE BACK RETURN|TRUCK| cajole; furiously re| +62921|859779|34814|3|13|22603.49|0.00|0.07|N|O|1996-01-08|1996-03-18|1996-01-29|DELIVER IN PERSON|REG AIR|r instructions. slyly enticing shea| +62921|299427|36943|4|36|51350.76|0.05|0.00|N|O|1996-02-12|1996-02-07|1996-02-21|DELIVER IN PERSON|FOB|the ideas | +62921|467187|4715|5|46|53091.36|0.08|0.06|N|O|1996-02-09|1996-02-26|1996-03-05|NONE|SHIP|ckages haggle fluffily carefully regular p| +62922|892012|17047|1|45|45178.65|0.10|0.02|N|O|1997-12-23|1997-11-23|1998-01-08|COLLECT COD|RAIL|ular pinto beans. ironic deposits integr| +62922|39408|26909|2|43|57938.20|0.03|0.04|N|O|1997-12-28|1997-11-21|1998-01-20|NONE|FOB|longside of the furiously iro| +62922|327184|2197|3|47|56924.99|0.00|0.02|N|O|1998-02-06|1997-12-20|1998-03-02|TAKE BACK RETURN|RAIL|ffily regular platel| +62922|975990|13548|4|40|82638.00|0.07|0.03|N|O|1997-11-11|1997-12-31|1997-11-17|NONE|SHIP|y special accounts above the final a| +62923|852145|2146|1|30|32913.00|0.01|0.03|N|O|1998-09-09|1998-08-18|1998-09-28|DELIVER IN PERSON|AIR|ily ironic pack| +62923|986072|23630|2|25|28950.75|0.09|0.04|N|O|1998-09-09|1998-08-01|1998-09-26|NONE|TRUCK|ar, even de| +62923|904429|16948|3|50|71669.00|0.04|0.01|N|O|1998-06-29|1998-07-25|1998-07-29|COLLECT COD|MAIL|ully bold deposits. special, unusual water| +62924|656169|6170|1|34|38254.42|0.10|0.06|A|F|1994-04-07|1994-01-26|1994-04-22|TAKE BACK RETURN|REG AIR|t. forges ac| +62924|227475|39980|2|26|36463.96|0.03|0.07|A|F|1993-12-18|1994-03-02|1993-12-26|COLLECT COD|FOB|ic dependencies kindle. caref| +62925|14043|39044|1|1|957.04|0.01|0.03|N|O|1996-12-16|1996-11-25|1997-01-04|TAKE BACK RETURN|RAIL| slyly furiously silent accounts? regu| +62925|3923|28924|2|31|56634.52|0.07|0.00|N|O|1997-01-03|1996-11-16|1997-01-28|DELIVER IN PERSON|TRUCK|urts sleep blithely theodo| +62925|923786|36305|3|17|30765.58|0.02|0.02|N|O|1997-01-14|1997-01-06|1997-01-21|TAKE BACK RETURN|RAIL|he final theodolites impress slyly ag| +62926|943565|18602|1|7|11259.64|0.07|0.01|N|O|1998-01-03|1998-02-25|1998-01-10|COLLECT COD|AIR|te the quickly perma| +62926|492358|42359|2|49|66166.17|0.06|0.00|N|O|1997-12-17|1998-02-26|1997-12-18|DELIVER IN PERSON|REG AIR|equests. pending reques| +62926|59815|22317|3|26|46145.06|0.06|0.07|N|O|1997-12-07|1998-01-08|1997-12-12|NONE|FOB|al platelets along the f| +62926|301616|26629|4|27|43675.20|0.03|0.07|N|O|1998-01-10|1998-01-07|1998-01-16|COLLECT COD|TRUCK|blithely spec| +62926|258143|33154|5|14|15415.82|0.06|0.04|N|O|1998-03-04|1998-02-16|1998-03-20|NONE|AIR|platelets. accounts alongside of | +62926|597802|10314|6|43|81690.54|0.08|0.07|N|O|1998-03-10|1997-12-29|1998-04-07|TAKE BACK RETURN|RAIL|. slyly final account| +62926|252093|39609|7|40|41803.20|0.00|0.07|N|O|1998-02-14|1998-02-10|1998-02-26|TAKE BACK RETURN|REG AIR|inal accounts. regular, bo| +62927|921221|33740|1|30|37265.40|0.07|0.04|R|F|1992-01-22|1992-03-15|1992-02-08|NONE|RAIL|nts cajole| +62927|947457|35012|2|7|10530.87|0.09|0.06|A|F|1992-03-29|1992-02-23|1992-04-19|COLLECT COD|FOB|carefully final excuses. blithe| +62927|909316|46871|3|43|56986.61|0.06|0.01|R|F|1992-04-24|1992-02-04|1992-05-18|TAKE BACK RETURN|REG AIR|ccording to the stealthy ideas us| +62952|617710|5247|1|18|29298.24|0.05|0.04|A|F|1992-06-01|1992-06-08|1992-06-19|TAKE BACK RETURN|SHIP|uffily above the regular notornis. special| +62952|851277|26312|2|4|4912.92|0.08|0.01|A|F|1992-06-23|1992-07-08|1992-07-19|NONE|AIR|eodolites. slyly regular attainmen| +62952|407072|44597|3|42|41120.10|0.08|0.02|R|F|1992-07-27|1992-07-08|1992-08-10|TAKE BACK RETURN|MAIL|final deposits grow. blithely regular| +62952|654987|30014|4|46|89329.70|0.09|0.08|R|F|1992-05-10|1992-07-03|1992-05-31|COLLECT COD|SHIP|ts sleep. special dependencies across | +62952|352113|39635|5|32|37283.20|0.00|0.01|A|F|1992-06-07|1992-06-23|1992-07-05|COLLECT COD|SHIP|detect quickly | +62953|36635|49136|1|4|6286.52|0.04|0.06|A|F|1994-01-13|1994-02-04|1994-01-18|COLLECT COD|TRUCK|uests cajole across the specia| +62953|709862|22377|2|49|91719.67|0.04|0.05|R|F|1994-03-16|1994-02-07|1994-04-09|COLLECT COD|RAIL|ly ironic foxes| +62953|638569|38570|3|19|28643.07|0.00|0.03|A|F|1994-04-10|1994-03-28|1994-04-27|NONE|MAIL|alongside of the requests. express excuses | +62953|423470|48487|4|33|45983.85|0.04|0.00|A|F|1994-02-03|1994-02-12|1994-03-02|DELIVER IN PERSON|TRUCK| deposits against the| +62953|258577|8578|5|15|23033.40|0.09|0.02|R|F|1994-03-04|1994-03-18|1994-03-15|TAKE BACK RETURN|MAIL|ges use requests. silent, special t| +62954|411134|36151|1|41|42849.51|0.08|0.06|A|F|1994-06-15|1994-05-01|1994-06-17|NONE|SHIP|eans use furiously | +62954|913691|26210|2|46|78413.90|0.10|0.04|A|F|1994-03-05|1994-05-26|1994-04-03|COLLECT COD|FOB|instructions| +62954|402854|27871|3|39|68516.37|0.08|0.01|R|F|1994-06-02|1994-05-23|1994-06-21|NONE|REG AIR|inal accounts between the ide| +62954|755141|5142|4|33|39471.63|0.01|0.03|R|F|1994-05-11|1994-05-01|1994-05-24|TAKE BACK RETURN|AIR|kly ironic depo| +62954|638621|1134|5|21|32751.39|0.01|0.07|R|F|1994-06-28|1994-04-12|1994-07-21|COLLECT COD|SHIP|al requests. furiously| +62954|290233|40234|6|41|50152.02|0.02|0.08|R|F|1994-03-31|1994-03-30|1994-04-11|COLLECT COD|TRUCK|r pinto beans. quickl| +62955|421729|9254|1|15|24760.50|0.04|0.01|N|O|1996-09-29|1996-10-15|1996-10-09|TAKE BACK RETURN|AIR|express accounts against the blithely | +62955|982915|7954|2|46|91902.02|0.09|0.08|N|O|1996-08-30|1996-11-14|1996-09-06|DELIVER IN PERSON|FOB|ts believe| +62955|849910|24943|3|25|46496.75|0.04|0.08|N|O|1996-10-29|1996-10-20|1996-11-04|COLLECT COD|REG AIR|egular cour| +62955|424618|12143|4|10|15425.90|0.04|0.06|N|O|1996-12-16|1996-11-09|1996-12-30|COLLECT COD|TRUCK| requests a| +62956|593766|18789|1|45|83688.30|0.00|0.03|R|F|1993-12-21|1994-01-11|1994-01-11|COLLECT COD|AIR|horses haggle blithely alongside| +62956|408656|33673|2|6|9387.78|0.07|0.01|A|F|1993-12-22|1994-01-02|1993-12-30|TAKE BACK RETURN|FOB|gular theodolites shou| +62956|265519|15520|3|11|16329.50|0.01|0.05|A|F|1993-12-31|1993-12-24|1994-01-11|NONE|FOB|es. bold requests s| +62956|564032|26544|4|18|19728.18|0.04|0.01|A|F|1994-02-16|1993-12-16|1994-03-08|NONE|RAIL|r accounts. furiously ev| +62956|676579|26580|5|31|48221.74|0.01|0.07|R|F|1993-12-07|1993-12-17|1993-12-19|COLLECT COD|REG AIR|sits integrate blithely ironic requests. al| +62956|247238|22247|6|9|10666.98|0.10|0.06|R|F|1993-12-31|1994-01-15|1994-01-26|TAKE BACK RETURN|TRUCK| blithely bold excuses accordin| +62957|466806|41825|1|3|5318.34|0.00|0.05|N|O|1998-04-08|1998-05-06|1998-04-15|NONE|SHIP|ly final platelets| +62958|158592|8593|1|50|82529.50|0.04|0.06|N|O|1996-07-17|1996-07-03|1996-07-19|NONE|FOB|ously regular p| +62958|450724|725|2|29|48566.30|0.01|0.02|N|O|1996-05-30|1996-06-30|1996-06-10|DELIVER IN PERSON|AIR|fter the ironic patterns. furiously final| +62958|301995|14502|3|43|85870.14|0.00|0.06|N|O|1996-06-27|1996-06-18|1996-07-07|TAKE BACK RETURN|RAIL| foxes solve blithely abov| +62959|76809|26810|1|7|12500.60|0.01|0.01|R|F|1993-05-04|1993-06-02|1993-05-26|COLLECT COD|SHIP| about the even, special deposits.| +62959|921495|34014|2|11|16680.95|0.03|0.04|R|F|1993-05-17|1993-06-18|1993-05-24|NONE|SHIP|ilent deposits nag slyly blithely unu| +62959|565188|27700|3|8|10025.28|0.06|0.00|R|F|1993-04-18|1993-06-07|1993-04-30|DELIVER IN PERSON|FOB|furiously final ideas sublate sly| +62959|98152|23155|4|48|55207.20|0.06|0.01|A|F|1993-05-25|1993-05-25|1993-06-10|DELIVER IN PERSON|AIR|op the special acco| +62959|634631|34632|5|36|56361.60|0.01|0.02|R|F|1993-05-01|1993-05-27|1993-05-10|DELIVER IN PERSON|RAIL| slyly closely regular ac| +62959|234692|9701|6|28|45547.04|0.01|0.00|R|F|1993-06-30|1993-06-25|1993-07-12|NONE|AIR| about the furiously ev| +62959|453582|28601|7|6|9213.36|0.02|0.07|A|F|1993-05-02|1993-05-01|1993-05-13|COLLECT COD|AIR|pinto beans. quickly even br| +62984|337299|37300|1|26|34743.28|0.07|0.08|N|O|1998-05-09|1998-05-27|1998-06-04|TAKE BACK RETURN|MAIL|cross the ironic co| +62984|976259|13817|2|22|29374.62|0.10|0.01|N|O|1998-03-30|1998-05-24|1998-04-01|NONE|FOB|. quickly pending requests nag al| +62984|969253|31773|3|24|31733.04|0.09|0.06|N|O|1998-07-09|1998-05-02|1998-07-30|DELIVER IN PERSON|FOB|tions around the courts breach car| +62984|231037|6046|4|11|10648.22|0.07|0.05|N|O|1998-07-13|1998-06-07|1998-07-17|DELIVER IN PERSON|SHIP|n excuses sleep furiousl| +62984|26835|14336|5|42|73996.86|0.09|0.00|N|O|1998-06-16|1998-06-16|1998-06-28|DELIVER IN PERSON|AIR|r the quickly final packages! s| +62984|14878|27379|6|24|43028.88|0.09|0.02|N|O|1998-05-24|1998-04-21|1998-06-05|DELIVER IN PERSON|AIR|the quickly regular pinto bea| +62985|265327|27833|1|49|63323.19|0.10|0.02|A|F|1993-07-27|1993-07-28|1993-07-29|COLLECT COD|AIR|rns sleep across the slyly regular deposits| +62985|342432|17445|2|23|33911.66|0.08|0.05|A|F|1993-06-20|1993-08-15|1993-06-30|COLLECT COD|MAIL|hely against the| +62985|250694|13200|3|45|74010.60|0.03|0.04|R|F|1993-08-17|1993-06-26|1993-08-23|DELIVER IN PERSON|RAIL|ial requests. pinto beans sl| +62986|330120|17639|1|16|18401.76|0.02|0.02|N|O|1996-12-10|1996-11-21|1997-01-07|COLLECT COD|FOB|p after th| +62987|245850|8355|1|35|62854.40|0.09|0.07|R|F|1993-09-17|1993-12-10|1993-09-30|COLLECT COD|FOB|to the requests. accounts sleep furiously | +62988|143578|6081|1|42|68105.94|0.02|0.04|R|F|1993-04-18|1993-05-25|1993-05-04|NONE|RAIL|lyly special | +62988|99472|36976|2|34|50029.98|0.07|0.06|R|F|1993-05-29|1993-05-13|1993-06-05|COLLECT COD|AIR|lyly regular packages. instructions bo| +62989|691126|3640|1|25|27927.25|0.09|0.00|N|O|1996-04-01|1996-04-13|1996-04-15|NONE|MAIL|uffily ironic deposi| +62989|751779|26810|2|1|1830.74|0.01|0.03|N|O|1996-06-09|1996-05-13|1996-06-26|TAKE BACK RETURN|SHIP|oxes along the carefully bold| +62990|920215|7770|1|15|18527.55|0.01|0.07|R|F|1995-01-19|1995-02-15|1995-01-25|NONE|FOB|furiously express deposits cajole blithel| +62990|38602|13603|2|5|7703.00|0.05|0.07|A|F|1994-12-29|1995-02-08|1995-01-24|TAKE BACK RETURN|RAIL|s sleep quickly carefully ironic request| +62990|781109|43625|3|8|9520.56|0.09|0.00|R|F|1995-01-09|1995-03-01|1995-02-06|TAKE BACK RETURN|FOB| furiously| +62990|83827|33828|4|31|56135.42|0.05|0.08|R|F|1995-01-10|1995-03-03|1995-01-16|COLLECT COD|FOB|pendencies sleep within| +62990|873834|23835|5|4|7231.16|0.07|0.04|R|F|1995-03-22|1995-02-24|1995-03-23|NONE|RAIL| cajole packages. pending instr| +62990|511735|49266|6|21|36680.91|0.07|0.02|R|F|1995-04-05|1995-03-11|1995-04-12|COLLECT COD|SHIP| pinto beans believe at the| +62990|716120|3663|7|32|36354.88|0.08|0.06|A|F|1995-01-19|1995-03-10|1995-02-11|NONE|FOB|ans wake blithel| +62991|818468|30985|1|30|41592.60|0.02|0.06|R|F|1993-11-08|1993-11-18|1993-11-26|COLLECT COD|MAIL| accounts-- bold de| +62991|988213|25771|2|16|20818.72|0.02|0.02|A|F|1994-02-07|1993-12-06|1994-02-26|NONE|FOB| the slyly final accounts sleep| +62991|880855|43373|3|27|49566.87|0.05|0.05|R|F|1994-01-26|1993-12-16|1994-02-05|NONE|SHIP|posits serve after the unusual| +62991|522692|35203|4|10|17146.70|0.04|0.04|A|F|1993-12-07|1993-12-15|1993-12-31|COLLECT COD|SHIP|express ideas according to | +62991|880700|30701|5|16|26890.56|0.00|0.06|A|F|1994-01-09|1993-12-04|1994-01-28|COLLECT COD|SHIP| ideas x-ray. blithely ironic reque| +62991|920299|45336|6|2|2638.50|0.05|0.02|R|F|1993-12-28|1993-12-25|1993-12-30|TAKE BACK RETURN|FOB|furiously against the | +63016|60984|23486|1|12|23339.76|0.09|0.00|R|F|1993-06-27|1993-07-02|1993-07-03|TAKE BACK RETURN|TRUCK|posits serve slyly carefully fin| +63016|954271|29310|2|50|66261.50|0.10|0.03|R|F|1993-09-06|1993-07-21|1993-09-21|DELIVER IN PERSON|RAIL| to the blithely unusual ideas. final pint| +63016|430269|42778|3|34|40774.16|0.01|0.00|A|F|1993-07-06|1993-07-07|1993-07-19|TAKE BACK RETURN|REG AIR|as use quickly af| +63017|798289|10805|1|14|19421.50|0.01|0.02|N|O|1995-09-06|1995-10-18|1995-09-08|TAKE BACK RETURN|SHIP|es. slyly | +63017|842182|29731|2|37|41593.18|0.03|0.08|N|O|1995-09-05|1995-08-27|1995-09-10|NONE|MAIL|ould have to are after the blithe| +63017|543915|6426|3|9|17630.01|0.10|0.02|N|O|1995-10-05|1995-08-27|1995-10-06|COLLECT COD|MAIL|nic, bold instructions. even accounts| +63017|569154|44177|4|42|51371.46|0.07|0.06|N|O|1995-09-17|1995-08-23|1995-09-21|TAKE BACK RETURN|MAIL|se slyly excuses. pinto be| +63018|811520|24037|1|45|64416.60|0.08|0.03|N|O|1998-01-10|1998-01-24|1998-01-19|TAKE BACK RETURN|FOB|ze carefully quickly fin| +63018|204438|41951|2|30|40272.60|0.08|0.07|N|O|1998-03-14|1998-02-15|1998-04-07|COLLECT COD|SHIP|even instru| +63018|972993|10551|3|43|88835.85|0.10|0.03|N|O|1997-12-14|1998-01-21|1997-12-25|DELIVER IN PERSON|FOB|counts. blithely i| +63018|90987|3489|4|29|57361.42|0.02|0.00|N|O|1998-01-01|1998-01-24|1998-01-15|COLLECT COD|SHIP|ns. carefully regular courts| +63018|206711|31720|5|26|42060.20|0.10|0.02|N|O|1998-02-11|1998-01-25|1998-02-13|NONE|REG AIR|quickly ironic pin| +63018|175764|771|6|41|75430.16|0.03|0.01|N|O|1998-01-11|1998-01-17|1998-01-21|TAKE BACK RETURN|AIR| furiously. theodolites boost ru| +63019|154283|41793|1|50|66864.00|0.10|0.06|R|F|1993-11-20|1993-09-20|1993-12-08|NONE|RAIL|regular accounts print blithely| +63019|19570|44571|2|2|2979.14|0.07|0.06|A|F|1993-11-27|1993-10-06|1993-12-01|TAKE BACK RETURN|REG AIR|efully according to the car| +63019|904875|4876|3|25|46995.75|0.06|0.02|A|F|1993-10-25|1993-09-28|1993-11-12|TAKE BACK RETURN|AIR|hely final accounts integrate reg| +63020|538541|1052|1|2|3159.04|0.00|0.02|N|O|1996-05-25|1996-07-17|1996-06-02|COLLECT COD|SHIP| regular r| +63020|252141|27152|2|4|4372.52|0.05|0.01|N|O|1996-05-14|1996-06-28|1996-06-05|COLLECT COD|AIR| furiously pending excus| +63020|718900|6443|3|7|13432.09|0.09|0.00|N|O|1996-06-16|1996-07-10|1996-06-24|TAKE BACK RETURN|AIR| regular deposits will cajole of the f| +63020|541901|16922|4|43|83543.84|0.02|0.07|N|O|1996-08-03|1996-05-28|1996-08-04|NONE|AIR|nusual asymptotes. blithely iron| +63020|714965|14966|5|13|25739.09|0.02|0.06|N|O|1996-05-25|1996-07-02|1996-06-21|TAKE BACK RETURN|MAIL|coys are slyly around the final fo| +63021|820818|33335|1|10|17387.70|0.02|0.05|N|O|1996-09-19|1996-08-29|1996-10-13|COLLECT COD|REG AIR|sly ironic packages detect quickly above| +63021|481637|19165|2|21|33990.81|0.10|0.06|N|O|1996-06-08|1996-07-26|1996-06-28|TAKE BACK RETURN|MAIL|ly furious packages h| +63021|867383|17384|3|6|8102.04|0.00|0.06|N|O|1996-08-11|1996-08-08|1996-08-18|COLLECT COD|MAIL| blithely | +63021|99553|12055|4|7|10867.85|0.08|0.08|N|O|1996-06-25|1996-08-04|1996-07-08|NONE|SHIP|he carefully ironic notornis. slyly e| +63021|176412|26413|5|44|65490.04|0.00|0.05|N|O|1996-09-01|1996-08-06|1996-09-20|TAKE BACK RETURN|MAIL|s are never thin d| +63021|953729|41287|6|35|62393.80|0.10|0.08|N|O|1996-09-12|1996-08-20|1996-10-04|DELIVER IN PERSON|TRUCK| requests wake care| +63021|307587|32600|7|1|1594.57|0.04|0.01|N|O|1996-06-21|1996-08-08|1996-07-04|NONE|REG AIR|cies wake. ca| +63022|603326|15839|1|40|49171.60|0.04|0.04|R|F|1993-06-25|1993-06-26|1993-07-08|COLLECT COD|REG AIR|he enticingly pending waters. final pin| +63023|582433|19967|1|41|62131.81|0.00|0.04|A|F|1993-03-12|1993-01-12|1993-04-04|DELIVER IN PERSON|MAIL|to beans are slyly slyly| +63048|535829|35830|1|5|9324.00|0.07|0.07|N|O|1997-08-13|1997-08-25|1997-09-02|COLLECT COD|TRUCK|ons hang furious, special accounts| +63048|665551|3091|2|8|12132.16|0.07|0.02|N|O|1997-07-31|1997-07-16|1997-08-16|COLLECT COD|SHIP|ular packages affix blithe| +63049|21835|34336|1|4|7027.32|0.07|0.07|A|F|1995-04-19|1995-05-28|1995-04-27|NONE|REG AIR|p regular ide| +63049|974111|36631|2|47|55698.29|0.04|0.00|N|O|1995-07-16|1995-06-13|1995-07-22|TAKE BACK RETURN|RAIL|the idly blithe pai| +63049|882561|32562|3|39|60197.28|0.06|0.01|R|F|1995-05-01|1995-07-04|1995-05-10|NONE|RAIL|fully special escapades s| +63049|196772|34282|4|10|18687.70|0.10|0.03|R|F|1995-05-06|1995-06-01|1995-05-14|COLLECT COD|SHIP|se furiously arou| +63049|135068|47571|5|11|12133.66|0.05|0.05|N|O|1995-07-26|1995-05-16|1995-08-02|TAKE BACK RETURN|TRUCK|fix after the silent depen| +63049|76440|1443|6|49|69405.56|0.00|0.07|N|O|1995-06-28|1995-06-10|1995-07-12|COLLECT COD|AIR|ily final requests nag blithely. final, b| +63049|724576|49605|7|41|65622.14|0.07|0.05|N|O|1995-08-02|1995-06-14|1995-08-13|COLLECT COD|MAIL|ffily final| +63050|944536|44537|1|50|79024.50|0.03|0.04|R|F|1993-09-19|1993-10-10|1993-10-13|NONE|REG AIR|regular packages whi| +63050|804038|16555|2|24|22607.76|0.06|0.08|A|F|1993-09-25|1993-10-13|1993-10-01|TAKE BACK RETURN|SHIP|y slyly thi| +63051|75112|115|1|47|51094.17|0.08|0.03|N|O|1995-07-23|1995-05-28|1995-08-16|DELIVER IN PERSON|RAIL|ss ideas cajole among the slyly reg| +63051|396031|21046|2|19|21413.38|0.05|0.07|N|O|1995-06-20|1995-06-20|1995-07-15|TAKE BACK RETURN|SHIP|haggle slyly. special, exp| +63051|81879|6882|3|46|85600.02|0.05|0.05|A|F|1995-04-15|1995-06-17|1995-04-20|COLLECT COD|FOB|mptotes-- pac| +63051|131474|43977|4|49|73768.03|0.03|0.02|N|O|1995-06-28|1995-06-15|1995-07-26|DELIVER IN PERSON|REG AIR| carefully ab| +63051|678948|16488|5|47|90564.77|0.09|0.02|R|F|1995-05-12|1995-06-04|1995-05-22|NONE|RAIL| even ideas. slyly final requests detect. | +63051|68211|5715|6|17|20046.57|0.01|0.06|R|F|1995-04-01|1995-05-20|1995-04-04|COLLECT COD|FOB|gle furiously above the fluffily | +63052|637611|37612|1|36|55748.88|0.05|0.02|N|O|1998-01-05|1998-01-14|1998-01-22|NONE|REG AIR|lyly final instructio| +63052|323729|48742|2|15|26290.65|0.03|0.02|N|O|1998-02-08|1998-01-06|1998-02-17|DELIVER IN PERSON|MAIL|re carefully accordin| +63052|901520|26557|3|11|16736.28|0.10|0.03|N|O|1998-01-14|1997-12-26|1998-01-29|TAKE BACK RETURN|MAIL|usual sheaves| +63052|845534|8051|4|48|71015.52|0.01|0.04|N|O|1997-12-16|1998-02-04|1998-01-12|TAKE BACK RETURN|AIR|blithely pending theodolites hang| +63052|873323|23324|5|24|31110.72|0.05|0.05|N|O|1997-11-27|1998-01-15|1997-12-21|DELIVER IN PERSON|TRUCK|ular packages. | +63052|935544|23099|6|6|9477.00|0.07|0.03|N|O|1997-12-20|1997-12-19|1998-01-01|COLLECT COD|TRUCK| even foxes haggle u| +63052|687108|37109|7|46|50373.22|0.02|0.08|N|O|1998-03-03|1998-01-02|1998-03-18|TAKE BACK RETURN|MAIL| haggle furiou| +63053|217170|42179|1|31|33701.96|0.09|0.06|N|O|1995-12-13|1995-12-19|1995-12-27|COLLECT COD|TRUCK| express platelets a| +63053|963100|25620|2|33|38380.98|0.10|0.08|N|O|1996-01-25|1995-12-17|1996-01-28|DELIVER IN PERSON|RAIL|regular theodolites| +63053|812728|37761|3|11|18047.48|0.10|0.02|N|O|1996-01-10|1995-12-17|1996-02-04|NONE|RAIL|l dependencies use requests. f| +63053|513600|26111|4|29|46793.82|0.09|0.02|N|O|1995-12-20|1996-01-11|1996-01-17|COLLECT COD|SHIP|bravely regular i| +63053|60940|35943|5|10|19009.40|0.06|0.05|N|O|1995-12-17|1995-12-31|1995-12-21|NONE|FOB|blithely above the quickly spe| +63053|211502|24007|6|44|62193.56|0.00|0.06|N|O|1995-11-14|1996-01-05|1995-11-30|DELIVER IN PERSON|MAIL|kages. fin| +63053|704947|4948|7|47|91739.77|0.06|0.05|N|O|1995-12-27|1995-12-08|1996-01-26|TAKE BACK RETURN|REG AIR|aggle around the furiously specia| +63054|42762|5263|1|20|34095.20|0.01|0.05|R|F|1993-01-17|1993-02-12|1993-01-24|COLLECT COD|FOB|breach sly| +63054|693243|18270|2|48|59338.08|0.07|0.01|R|F|1992-12-16|1993-01-27|1992-12-22|NONE|SHIP|refully special packages caj| +63054|333842|33843|3|25|46895.75|0.02|0.01|R|F|1992-12-20|1993-01-09|1993-01-08|COLLECT COD|MAIL|er the carefully| +63055|605172|5173|1|33|35545.62|0.06|0.08|A|F|1994-07-27|1994-06-21|1994-07-30|TAKE BACK RETURN|AIR|y. carefully sile| +63055|115844|15845|2|38|70673.92|0.05|0.07|A|F|1994-08-14|1994-06-21|1994-08-28|TAKE BACK RETURN|TRUCK|oxes. even packages| +63055|989908|27466|3|8|15982.88|0.01|0.03|R|F|1994-07-27|1994-05-30|1994-08-23|NONE|TRUCK|ecial deposi| +63055|377386|14908|4|46|67315.02|0.02|0.07|A|F|1994-08-12|1994-05-21|1994-09-07|DELIVER IN PERSON|RAIL|quests haggle fluffily. carefully r| +63055|710798|35827|5|24|43410.24|0.06|0.07|A|F|1994-07-11|1994-05-25|1994-07-19|COLLECT COD|REG AIR| slyly. qu| +63080|987542|25100|1|38|61921.00|0.04|0.08|N|O|1998-04-22|1998-05-23|1998-05-15|COLLECT COD|TRUCK|itaphs. quickly regular platel| +63080|602650|27675|2|11|17078.82|0.00|0.08|N|O|1998-05-23|1998-06-12|1998-06-07|DELIVER IN PERSON|REG AIR|cajole according to t| +63080|730013|5042|3|23|23988.54|0.07|0.06|N|O|1998-06-09|1998-04-30|1998-06-27|NONE|REG AIR|eodolites sleep above the expre| +63080|319940|7459|4|12|23519.16|0.09|0.03|N|O|1998-06-05|1998-06-08|1998-06-30|NONE|MAIL|ly silent courts cajole outside | +63081|215986|3499|1|14|26627.58|0.02|0.08|N|O|1997-05-25|1997-05-17|1997-05-30|DELIVER IN PERSON|SHIP|, regular instruction| +63082|633162|8187|1|19|20807.47|0.06|0.02|N|O|1996-05-30|1996-06-08|1996-05-31|DELIVER IN PERSON|RAIL|. final, special platelets cajo| +63082|547811|35342|2|49|91080.71|0.09|0.08|N|O|1996-05-27|1996-06-21|1996-06-16|NONE|FOB|kly. quickly even requ| +63082|46148|21149|3|20|21882.80|0.06|0.07|N|O|1996-06-10|1996-06-09|1996-07-03|TAKE BACK RETURN|RAIL|s around the furious| +63083|205973|5974|1|41|77037.36|0.04|0.04|N|O|1996-11-09|1996-10-10|1996-12-03|DELIVER IN PERSON|MAIL|l foxes. packages affix slyly after the iro| +63083|782301|32302|2|49|67780.23|0.05|0.00|N|O|1996-11-01|1996-10-29|1996-11-20|TAKE BACK RETURN|TRUCK|furiously fi| +63084|791111|41112|1|28|33658.24|0.00|0.01|N|O|1996-03-07|1996-03-07|1996-03-16|TAKE BACK RETURN|MAIL|ic theodoli| +63084|199686|49687|2|11|19642.48|0.04|0.02|N|O|1996-01-25|1996-02-29|1996-02-05|DELIVER IN PERSON|TRUCK|uriously express theodolites. a| +63084|113449|956|3|32|46798.08|0.07|0.08|N|O|1995-12-22|1996-02-13|1996-01-06|DELIVER IN PERSON|MAIL|carefully even reques| +63084|733788|46303|4|24|43722.00|0.05|0.04|N|O|1996-02-06|1996-02-27|1996-02-16|DELIVER IN PERSON|MAIL|ng dolphins | +63085|980195|30196|1|17|21677.55|0.08|0.08|R|F|1994-09-29|1994-11-21|1994-10-07|TAKE BACK RETURN|FOB|pecial, regular theodolites integrate. car| +63086|426588|39097|1|1|1514.56|0.04|0.00|N|O|1997-04-10|1997-05-19|1997-04-26|NONE|SHIP| sleep carefully along the regul| +63086|651525|39065|2|49|72348.01|0.09|0.01|N|O|1997-06-03|1997-04-22|1997-07-03|TAKE BACK RETURN|AIR|excuses cajo| +63087|845507|20540|1|5|7262.30|0.10|0.05|N|O|1997-08-30|1997-07-17|1997-09-07|DELIVER IN PERSON|SHIP|; ironic, ironic depths nag. c| +63087|424465|11990|2|43|59745.92|0.01|0.04|N|O|1997-08-22|1997-08-12|1997-09-06|TAKE BACK RETURN|REG AIR|y ironic pinto beans sleep| +63112|410771|48296|1|39|65588.25|0.06|0.08|N|O|1998-01-23|1998-01-20|1998-02-06|NONE|REG AIR|arefully according to the blithely eve| +63113|98760|36264|1|48|84420.48|0.03|0.08|N|O|1997-04-24|1997-05-10|1997-05-04|TAKE BACK RETURN|FOB|ind the ironic decoys.| +63113|850250|12768|2|42|50408.82|0.00|0.01|N|O|1997-05-24|1997-05-14|1997-05-30|TAKE BACK RETURN|REG AIR|ously daring depos| +63113|141875|4378|3|49|93926.63|0.07|0.01|N|O|1997-05-26|1997-06-05|1997-06-17|DELIVER IN PERSON|RAIL|silent warhorses. furiously unus| +63114|721778|46807|1|5|8998.70|0.03|0.03|A|F|1992-05-02|1992-07-08|1992-05-09|TAKE BACK RETURN|MAIL|refully slyly speci| +63114|922199|47236|2|15|18317.25|0.02|0.02|R|F|1992-06-30|1992-05-21|1992-07-29|DELIVER IN PERSON|MAIL| carefully even theodolites. c| +63114|386081|36082|3|42|49016.94|0.00|0.04|R|F|1992-07-11|1992-07-07|1992-07-28|COLLECT COD|SHIP| beans promise slyly ironic asympt| +63115|759615|9616|1|37|61959.46|0.02|0.07|N|O|1996-01-14|1995-12-12|1996-01-19|COLLECT COD|RAIL|endencies. quickly bold accounts wake slyl| +63115|835277|35278|2|41|49701.43|0.10|0.06|N|O|1995-11-05|1995-11-27|1995-11-29|COLLECT COD|TRUCK| accounts boost along the car| +63115|485558|35559|3|18|27783.54|0.02|0.06|N|O|1995-12-02|1995-12-14|1995-12-24|NONE|FOB|ncies according to the final| +63115|767338|42369|4|6|8431.80|0.00|0.07|N|O|1996-01-14|1995-11-05|1996-02-01|DELIVER IN PERSON|SHIP|ke carefully r| +63115|634014|46527|5|41|38867.18|0.06|0.01|N|O|1995-12-05|1995-11-21|1995-12-31|COLLECT COD|AIR|ly silent theodolites. blithely regul| +63115|868204|18205|6|22|25787.52|0.02|0.00|N|O|1995-12-03|1996-01-01|1995-12-09|TAKE BACK RETURN|TRUCK|ke ironic, special deposits: bli| +63116|507338|7339|1|22|29596.82|0.05|0.08|N|O|1997-09-14|1997-09-13|1997-09-25|NONE|REG AIR| bold accounts. carefull| +63116|816168|41201|2|43|46617.16|0.06|0.00|N|O|1997-08-18|1997-08-15|1997-08-21|COLLECT COD|MAIL|eas? bold deposits are. fu| +63116|330034|17553|3|15|15960.30|0.06|0.08|N|O|1997-10-05|1997-10-07|1997-10-15|TAKE BACK RETURN|SHIP|nstructions may haggle| +63116|870153|45188|4|47|52786.17|0.01|0.02|N|O|1997-08-18|1997-09-26|1997-09-11|NONE|MAIL|c packages. slyly ex| +63116|657027|44567|5|20|19679.80|0.07|0.03|N|O|1997-10-09|1997-09-30|1997-10-12|TAKE BACK RETURN|MAIL| regular excuses cajole idly ironic the| +63116|644367|6880|6|21|27537.93|0.05|0.04|N|O|1997-09-28|1997-09-24|1997-10-21|DELIVER IN PERSON|RAIL|ts cajole. close, final foxes sleep a| +63116|871981|21982|7|45|87882.30|0.01|0.00|N|O|1997-09-13|1997-08-23|1997-09-17|COLLECT COD|RAIL|s use. even, special instruc| +63117|377773|27774|1|16|29612.16|0.04|0.04|N|O|1996-10-20|1996-08-22|1996-11-11|COLLECT COD|AIR|ular accounts. unusual t| +63117|214174|26679|2|35|38085.60|0.08|0.00|N|O|1996-09-17|1996-10-13|1996-10-16|NONE|AIR|xpress deposits nag carefully furiously| +63117|620324|32837|3|34|42305.86|0.03|0.00|N|O|1996-08-03|1996-09-06|1996-08-23|DELIVER IN PERSON|TRUCK|l excuses are carefully regular instruc| +63117|778160|40676|4|44|54477.72|0.10|0.04|N|O|1996-11-02|1996-09-28|1996-11-19|TAKE BACK RETURN|TRUCK|s wake among the blithely ironic exc| +63117|525214|12745|5|21|26022.99|0.01|0.03|N|O|1996-11-14|1996-10-05|1996-12-06|TAKE BACK RETURN|AIR|ructions. furiou| +63117|267948|17949|6|20|38318.60|0.03|0.06|N|O|1996-08-08|1996-09-11|1996-08-27|TAKE BACK RETURN|TRUCK|regular excuses detect special dolphins| +63117|398607|36129|7|40|68223.60|0.10|0.04|N|O|1996-08-14|1996-10-07|1996-09-06|DELIVER IN PERSON|REG AIR|nst the slyly express pinto beans haggl| +63118|373096|23097|1|23|26888.84|0.08|0.00|N|O|1996-03-16|1996-02-18|1996-03-18|TAKE BACK RETURN|REG AIR| blithely even courts nag pending a| +63118|618925|6462|2|18|33190.02|0.03|0.08|N|O|1996-01-15|1996-01-28|1996-01-30|DELIVER IN PERSON|AIR|out the blithely| +63118|272036|22037|3|45|45360.90|0.07|0.01|N|O|1996-01-09|1996-02-12|1996-01-13|COLLECT COD|FOB| blithely slyly unusual| +63118|92340|4842|4|35|46631.90|0.00|0.01|N|O|1996-02-15|1996-01-03|1996-02-27|NONE|FOB|efully dolphins. quickly ironic pac| +63119|212830|343|1|22|38342.04|0.09|0.07|N|O|1998-04-15|1998-04-09|1998-05-10|COLLECT COD|RAIL|ironic courts above t| +63144|494665|7175|1|40|66385.60|0.03|0.01|N|O|1997-03-08|1997-04-22|1997-03-15|COLLECT COD|REG AIR|l, special requests cajole| +63144|826225|26226|2|17|19570.06|0.09|0.07|N|O|1997-04-16|1997-04-03|1997-05-08|DELIVER IN PERSON|RAIL| regular, express courts nod. | +63144|348390|10897|3|47|67603.86|0.08|0.03|N|O|1997-05-08|1997-03-27|1997-05-13|NONE|FOB| final platelets| +63144|389809|2317|4|8|15190.32|0.01|0.05|N|O|1997-05-03|1997-04-03|1997-05-04|DELIVER IN PERSON|SHIP|uthless packages detect slyl| +63144|506809|6810|5|25|45394.50|0.06|0.05|N|O|1997-03-20|1997-04-11|1997-04-12|NONE|FOB|gle dolphins. carefully speci| +63144|938538|38539|6|40|63059.60|0.03|0.04|N|O|1997-04-10|1997-05-04|1997-04-20|COLLECT COD|REG AIR|ain furiously a| +63145|374265|36773|1|11|14731.75|0.04|0.02|N|O|1997-06-05|1997-06-13|1997-06-16|TAKE BACK RETURN|MAIL|cajole carefully! express acc| +63145|263433|25939|2|49|68424.58|0.01|0.05|N|O|1997-06-11|1997-05-24|1997-07-07|DELIVER IN PERSON|SHIP|uriously pending foxes. | +63145|513324|855|3|48|64190.40|0.07|0.07|N|O|1997-07-21|1997-06-05|1997-08-18|NONE|AIR|s solve blithely special depo| +63146|128358|3363|1|2|2772.70|0.06|0.01|N|O|1996-12-28|1997-01-14|1997-01-04|NONE|MAIL|posits. special platelets wake | +63147|909545|9546|1|12|18654.00|0.09|0.06|N|O|1995-07-03|1995-08-28|1995-07-17|NONE|FOB|uffy instructions. slyly express| +63148|287079|12090|1|16|17056.96|0.09|0.05|N|O|1997-11-27|1997-10-31|1997-12-20|TAKE BACK RETURN|AIR|s the carefully special instructions cajo| +63148|929139|4176|2|41|47891.69|0.05|0.08|N|O|1997-09-26|1997-11-15|1997-09-30|TAKE BACK RETURN|REG AIR|heodolites along the | +63148|34937|34938|3|38|71133.34|0.00|0.03|N|O|1997-10-05|1997-11-19|1997-10-30|NONE|TRUCK|eposits sleep according to t| +63149|534405|9426|1|42|60453.96|0.10|0.05|A|F|1993-04-06|1993-03-24|1993-04-09|NONE|TRUCK|ly according to t| +63149|739839|39840|2|6|11272.80|0.04|0.01|A|F|1993-04-05|1993-04-01|1993-05-05|TAKE BACK RETURN|MAIL|quests. slyly ironic foxes| +63149|471405|46424|3|5|6881.90|0.02|0.07|A|F|1993-03-10|1993-02-15|1993-03-28|DELIVER IN PERSON|FOB|inal theodolites sleep! blithely| +63149|901991|14510|4|18|35873.10|0.04|0.03|A|F|1993-01-21|1993-03-23|1993-01-25|TAKE BACK RETURN|RAIL|s use blithely ironic theodolites. | +63149|762696|242|5|7|12310.62|0.01|0.06|A|F|1993-03-09|1993-03-05|1993-04-03|COLLECT COD|FOB| against the dolphins. even warth| +63150|619212|31725|1|38|42984.84|0.10|0.01|R|F|1993-06-05|1993-06-16|1993-06-12|TAKE BACK RETURN|REG AIR|of the fluffily regular accounts. carefu| +63150|87303|37304|2|49|63224.70|0.02|0.04|A|F|1993-05-26|1993-06-06|1993-06-01|TAKE BACK RETURN|REG AIR|heodolites lose carefull| +63150|294949|7455|3|23|44710.39|0.09|0.03|A|F|1993-06-30|1993-07-26|1993-07-05|TAKE BACK RETURN|TRUCK|haggle permanently above the slyly exp| +63150|193535|6039|4|16|26056.48|0.00|0.03|R|F|1993-08-06|1993-07-30|1993-09-05|TAKE BACK RETURN|MAIL|r requests. fluffily special package| +63150|740048|27591|5|22|23936.22|0.03|0.04|R|F|1993-06-26|1993-06-11|1993-07-25|DELIVER IN PERSON|MAIL|instructions are fluffily about the bo| +63151|790038|2554|1|31|34968.00|0.07|0.01|N|O|1996-11-05|1996-11-26|1996-11-21|DELIVER IN PERSON|REG AIR|sts boost furiously u| +63151|164162|1672|2|33|40463.28|0.02|0.02|N|O|1996-11-15|1996-11-25|1996-11-24|COLLECT COD|MAIL|s poach slyly against the quickly bold h| +63151|68336|18337|3|15|19564.95|0.08|0.02|N|O|1997-02-03|1996-12-31|1997-02-27|NONE|RAIL|y among the requests.| +63151|515424|27935|4|38|54697.20|0.10|0.05|N|O|1996-12-18|1997-01-13|1997-01-05|TAKE BACK RETURN|TRUCK|ing to the eve| +63176|732092|44607|1|8|8992.48|0.06|0.00|A|F|1994-05-11|1994-05-28|1994-05-20|TAKE BACK RETURN|RAIL| cajole silent ideas. braids | +63176|260891|48407|2|40|74075.20|0.01|0.05|R|F|1994-07-15|1994-05-31|1994-08-13|COLLECT COD|AIR|pinto beans. carefully regu| +63176|790161|2677|3|25|31278.25|0.03|0.02|A|F|1994-05-19|1994-05-13|1994-05-29|NONE|TRUCK|xcuses. bravely| +63176|219156|19157|4|2|2150.28|0.06|0.07|A|F|1994-05-28|1994-05-14|1994-06-03|NONE|MAIL| requests. finally regular| +63176|339982|27501|5|18|36395.46|0.09|0.05|A|F|1994-06-07|1994-05-07|1994-06-20|NONE|FOB| ironic accounts h| +63176|71689|21690|6|31|51481.08|0.02|0.04|R|F|1994-03-25|1994-05-28|1994-04-03|NONE|MAIL|ully pending deposits cajole against th| +63177|519050|6581|1|42|44899.26|0.06|0.00|A|F|1993-05-21|1993-05-08|1993-06-02|COLLECT COD|RAIL|egular depo| +63178|786752|24298|1|8|14709.76|0.02|0.05|A|F|1992-09-21|1992-08-27|1992-10-08|DELIVER IN PERSON|SHIP| instructions. sly| +63178|926830|26831|2|32|59417.28|0.05|0.01|R|F|1992-07-30|1992-09-28|1992-08-03|DELIVER IN PERSON|RAIL|ic instructions| +63178|221828|21829|3|19|33246.39|0.03|0.00|A|F|1992-11-07|1992-09-01|1992-11-17|TAKE BACK RETURN|MAIL|. furiously express theodolites along | +63178|247775|47776|4|10|17227.60|0.07|0.05|A|F|1992-08-21|1992-09-13|1992-09-13|NONE|REG AIR|ctions above the | +63178|346970|46971|5|47|94797.12|0.04|0.01|R|F|1992-07-30|1992-09-12|1992-08-26|TAKE BACK RETURN|FOB|s. quickly final dolphins afte| +63179|934587|22142|1|18|29187.72|0.08|0.06|N|O|1997-01-04|1996-12-09|1997-01-16|COLLECT COD|MAIL|oxes? carefully regu| +63179|597807|22830|2|5|9523.90|0.06|0.03|N|O|1996-10-18|1996-12-23|1996-11-09|NONE|RAIL|tes. carefully final pinto beans| +63179|331523|31524|3|24|37308.24|0.05|0.04|N|O|1996-11-25|1996-11-19|1996-12-02|NONE|REG AIR|t the regular, bold | +63179|898233|35785|4|35|43091.65|0.08|0.05|N|O|1996-10-30|1996-12-27|1996-11-26|COLLECT COD|SHIP| detect flu| +63180|783336|20882|1|24|34063.20|0.10|0.03|R|F|1992-09-24|1992-10-29|1992-10-22|TAKE BACK RETURN|MAIL|rthogs cajole final theodolites| +63181|819411|31928|1|45|59866.65|0.04|0.07|A|F|1992-07-10|1992-07-12|1992-07-21|COLLECT COD|AIR|slyly pending pinto beans doubt| +63181|825669|13218|2|24|38270.88|0.09|0.08|A|F|1992-08-14|1992-06-18|1992-08-30|COLLECT COD|REG AIR|ly after the carefully quiet packages. reg| +63181|12017|12018|3|13|12077.13|0.06|0.05|A|F|1992-06-08|1992-07-05|1992-06-10|NONE|AIR|uffy, express depths affix| +63181|963897|13898|4|41|80394.85|0.06|0.04|A|F|1992-06-14|1992-07-01|1992-07-02|TAKE BACK RETURN|FOB|: fluffily slow| +63182|640445|2958|1|18|24937.38|0.05|0.01|N|O|1996-02-02|1996-02-12|1996-02-13|TAKE BACK RETURN|RAIL|lly against| +63182|953056|3057|2|7|7763.07|0.04|0.07|N|O|1996-04-02|1996-02-21|1996-04-09|COLLECT COD|MAIL|final deposits af| +63182|995713|8233|3|32|57877.44|0.04|0.00|N|O|1996-01-20|1996-01-25|1996-01-24|TAKE BACK RETURN|SHIP|o beans haggle according to the | +63182|935082|10119|4|32|35745.28|0.07|0.01|N|O|1996-02-20|1996-01-21|1996-03-03|TAKE BACK RETURN|MAIL|ave to use fluffily regu| +63182|913676|38713|5|10|16896.30|0.07|0.07|N|O|1996-03-16|1996-02-21|1996-03-19|NONE|RAIL|regular requests cajole caref| +63182|150626|13130|6|40|67064.80|0.05|0.03|N|O|1996-04-03|1996-02-10|1996-05-03|TAKE BACK RETURN|RAIL|ar, even d| +63182|555304|42838|7|23|31263.44|0.07|0.03|N|O|1996-01-07|1996-02-27|1996-01-22|TAKE BACK RETURN|AIR| lose pending deposits. pack| +63183|990297|40298|1|16|22196.00|0.09|0.08|N|O|1995-12-05|1995-11-05|1995-12-14|NONE|AIR|ecial deposits.| +63183|913781|38818|2|5|8973.70|0.03|0.03|N|O|1995-12-30|1995-10-29|1996-01-14|NONE|AIR|. requests are blithely. furiousl| +63183|914548|27067|3|30|46875.00|0.00|0.04|N|O|1996-01-06|1995-12-03|1996-01-13|TAKE BACK RETURN|RAIL|lithely quick dolphins cajole slyly a| +63183|805072|30105|4|26|25402.78|0.09|0.05|N|O|1995-12-31|1995-11-20|1996-01-11|TAKE BACK RETURN|SHIP|sits thras| +63183|829024|41541|5|33|31448.34|0.04|0.06|N|O|1995-10-21|1995-12-11|1995-11-06|COLLECT COD|TRUCK|al requests wake among the fluffily regu| +63183|397815|35337|6|37|70773.60|0.09|0.03|N|O|1995-11-08|1995-11-18|1995-11-24|NONE|MAIL|d deposits nag s| +63208|264405|14406|1|47|64361.33|0.08|0.03|N|O|1996-08-30|1996-06-16|1996-09-01|DELIVER IN PERSON|FOB|regular requests. special,| +63208|838716|26265|2|29|47985.43|0.08|0.08|N|O|1996-06-21|1996-07-03|1996-06-23|DELIVER IN PERSON|SHIP|arefully even requests lose slyly final, re| +63209|874229|36747|1|31|37298.58|0.04|0.01|N|O|1997-03-23|1997-01-29|1997-04-13|NONE|MAIL|ans cajole. pin| +63209|150092|37602|2|22|25125.98|0.03|0.06|N|O|1997-02-09|1997-02-19|1997-02-20|NONE|MAIL|ual theodolite| +63209|594174|31708|3|49|62139.35|0.10|0.07|N|O|1997-03-16|1997-01-20|1997-03-25|NONE|MAIL|ges use fluffily furiou| +63210|312352|24859|1|24|32744.16|0.05|0.01|R|F|1994-01-20|1994-02-14|1994-02-12|TAKE BACK RETURN|RAIL|slyly furious, id| +63210|688606|38607|2|19|30296.83|0.05|0.08|R|F|1994-02-07|1994-03-28|1994-03-05|TAKE BACK RETURN|FOB|s. slyly special plat| +63210|390154|40155|3|1|1244.14|0.00|0.01|R|F|1994-04-29|1994-02-16|1994-05-17|COLLECT COD|RAIL|kly packages| +63210|314093|39106|4|2|2214.16|0.06|0.05|R|F|1994-02-26|1994-02-12|1994-03-06|DELIVER IN PERSON|RAIL|ays wake slyly slyly unusual packag| +63211|545102|7613|1|37|42441.96|0.05|0.08|N|O|1997-04-07|1997-04-02|1997-04-26|NONE|TRUCK|ickly ironic ideas d| +63211|513967|1498|2|46|91123.24|0.02|0.00|N|O|1997-06-13|1997-04-17|1997-06-30|DELIVER IN PERSON|RAIL| sleep fluffily about the pla| +63212|37490|37491|1|32|45679.68|0.01|0.02|N|O|1995-07-25|1995-07-20|1995-08-20|COLLECT COD|REG AIR| was quickly asymptotes. blith| +63213|886208|23760|1|11|13135.76|0.00|0.08|R|F|1993-03-27|1993-02-02|1993-04-19|NONE|RAIL| among the slyl| +63213|494242|44243|2|35|43267.70|0.00|0.03|A|F|1993-04-02|1993-02-20|1993-05-01|TAKE BACK RETURN|SHIP|regular ideas sleep ironic pl| +63214|986040|36041|1|10|11260.00|0.06|0.01|N|O|1997-05-05|1997-03-13|1997-05-20|NONE|REG AIR| furiously. fluffily ironi| +63214|363353|13354|2|40|56653.60|0.00|0.04|N|O|1997-03-15|1997-04-03|1997-04-14|COLLECT COD|FOB|efully pending instruct| +63214|859341|34376|3|14|18204.20|0.07|0.02|N|O|1997-05-08|1997-02-25|1997-05-29|TAKE BACK RETURN|REG AIR|ely even reques| +63214|938367|886|4|38|53402.16|0.08|0.04|N|O|1997-04-14|1997-03-25|1997-05-12|COLLECT COD|RAIL| along the unusual, unusual pinto bea| +63214|126700|1705|5|3|5180.10|0.02|0.08|N|O|1997-04-30|1997-03-16|1997-05-27|NONE|REG AIR|ts cajole. slyly bold packages was | +63214|440764|40765|6|1|1704.74|0.04|0.01|N|O|1997-03-31|1997-03-29|1997-04-24|COLLECT COD|REG AIR|s. final accounts a| +63215|797933|22964|1|41|83266.90|0.09|0.07|R|F|1992-12-09|1993-01-17|1992-12-31|NONE|REG AIR|sly packages c| +63215|852544|27579|2|33|49384.50|0.00|0.04|R|F|1993-02-02|1993-01-25|1993-02-18|COLLECT COD|AIR|cajole according to the bl| +63215|701582|39125|3|10|15835.50|0.01|0.08|R|F|1993-01-27|1993-01-03|1993-01-30|TAKE BACK RETURN|REG AIR|the foxes. express pinto beans integrat| +63215|481998|31999|4|44|87118.68|0.05|0.05|A|F|1992-11-29|1993-02-26|1992-12-22|TAKE BACK RETURN|AIR|r packages use| +63215|938298|13335|5|13|17371.25|0.10|0.06|R|F|1993-02-09|1993-02-25|1993-03-11|NONE|RAIL|ias cajole sometimes. furiously e| +63215|961816|11817|6|46|86377.42|0.10|0.03|A|F|1993-01-20|1992-12-28|1993-01-21|TAKE BACK RETURN|MAIL|fully bold accounts boost slyly. fu| +63215|224839|12352|7|40|70552.80|0.03|0.02|R|F|1993-01-03|1993-02-16|1993-01-08|TAKE BACK RETURN|RAIL|among the furiously unusual deposits. bli| +63240|861062|11063|1|50|51151.00|0.03|0.06|N|O|1997-04-23|1997-06-25|1997-04-27|DELIVER IN PERSON|AIR|d requests. sl| +63241|599514|24537|1|7|11294.43|0.10|0.08|N|O|1998-09-07|1998-09-28|1998-09-18|DELIVER IN PERSON|TRUCK|elets use slyly slyly unusu| +63241|28346|15847|2|37|47150.58|0.00|0.03|N|O|1998-08-07|1998-09-23|1998-08-10|TAKE BACK RETURN|TRUCK|s integrate a| +63241|401412|38937|3|8|10507.12|0.05|0.07|N|O|1998-07-19|1998-08-23|1998-08-02|DELIVER IN PERSON|MAIL|jole fluffily bold requests. pinto be| +63241|531080|43591|4|39|43331.34|0.07|0.01|N|O|1998-08-26|1998-09-08|1998-09-06|NONE|SHIP|bout the express, pending asymptotes w| +63242|259999|22505|1|25|48974.50|0.05|0.08|N|O|1997-03-28|1997-03-16|1997-04-07|DELIVER IN PERSON|MAIL| players. final foxes w| +63242|793780|6296|2|21|39348.75|0.02|0.00|N|O|1997-05-24|1997-04-23|1997-06-23|NONE|FOB|osits. regular deposits cajole q| +63242|59472|34475|3|48|68710.56|0.07|0.04|N|O|1997-04-18|1997-05-09|1997-05-13|TAKE BACK RETURN|SHIP|ackages. boldly pending pinto bean| +63243|830186|42703|1|9|10045.26|0.08|0.04|N|O|1998-06-15|1998-08-19|1998-07-05|DELIVER IN PERSON|SHIP|inos. slyly bold accounts sl| +63243|933849|8886|2|48|90374.40|0.06|0.03|N|O|1998-08-12|1998-07-23|1998-08-13|NONE|SHIP|ts around the regular id| +63243|187596|25106|3|43|72394.37|0.09|0.06|N|O|1998-07-22|1998-08-14|1998-08-16|DELIVER IN PERSON|SHIP|efully pending packages; slyly f| +63243|913167|13168|4|19|22422.28|0.02|0.08|N|O|1998-09-24|1998-07-02|1998-10-16|NONE|REG AIR|nto beans are fluffily blithel| +63244|95824|45825|1|46|83711.72|0.10|0.04|N|O|1998-06-30|1998-06-21|1998-07-28|NONE|REG AIR| pending ideas boost carefully| +63244|511762|24273|2|24|42569.76|0.09|0.01|N|O|1998-08-03|1998-08-19|1998-08-29|DELIVER IN PERSON|SHIP|ructions after the furiously express reques| +63245|110139|35144|1|12|13789.56|0.02|0.03|N|O|1996-12-08|1996-12-09|1996-12-27|DELIVER IN PERSON|RAIL|even excuses sleep slyly.| +63245|100324|37831|2|38|50324.16|0.03|0.01|N|O|1996-12-31|1997-01-10|1997-01-27|COLLECT COD|AIR|bout the carefu| +63246|507615|20126|1|9|14603.31|0.07|0.02|N|O|1995-10-30|1995-12-26|1995-11-14|COLLECT COD|TRUCK|y pending packages integrate furious| +63246|470635|8163|2|36|57801.96|0.03|0.03|N|O|1995-11-25|1995-12-06|1995-12-08|TAKE BACK RETURN|SHIP|s sleep after the deposits. furiously regul| +63246|957247|32286|3|49|63905.80|0.03|0.00|N|O|1995-12-15|1996-01-03|1995-12-31|DELIVER IN PERSON|FOB|fily even t| +63246|444948|19965|4|20|37858.40|0.02|0.04|N|O|1996-02-11|1995-12-09|1996-02-27|COLLECT COD|MAIL|al, bold deposits. blithel| +63247|563749|13750|1|27|48943.44|0.05|0.06|N|O|1995-11-20|1995-09-30|1995-12-01|NONE|AIR|olphins promise pending packages. e| +63247|923131|35650|2|31|35776.79|0.06|0.06|N|O|1995-11-28|1995-09-29|1995-12-18|DELIVER IN PERSON|REG AIR|dencies wake qui| +63247|61618|49122|3|11|17375.71|0.00|0.04|N|O|1995-10-16|1995-09-05|1995-10-27|COLLECT COD|AIR|y ironic packages sleep blithely furious| +63247|598462|35996|4|4|6241.76|0.05|0.07|N|O|1995-10-12|1995-10-28|1995-10-28|DELIVER IN PERSON|FOB| regular platelets dazzle | +63247|346731|9238|5|26|46220.72|0.10|0.03|N|O|1995-09-23|1995-09-18|1995-10-21|TAKE BACK RETURN|AIR|r deposits sleep. pa| +63247|495079|20098|6|33|35443.65|0.07|0.07|N|O|1995-09-01|1995-10-03|1995-09-19|TAKE BACK RETURN|SHIP|xes. blithely even | +63272|960381|47939|1|41|59094.94|0.09|0.02|R|F|1993-08-21|1993-09-23|1993-09-20|COLLECT COD|RAIL|onic requests. bold packages| +63273|801616|14133|1|26|39456.82|0.08|0.03|N|O|1997-04-18|1997-05-10|1997-05-18|TAKE BACK RETURN|FOB|yly final accounts. ironic, regu| +63273|745781|33324|2|14|25574.50|0.10|0.07|N|O|1997-05-03|1997-05-24|1997-05-18|DELIVER IN PERSON|TRUCK|ng packages haggle slyly alongside of th| +63273|333866|21385|3|30|56995.50|0.00|0.02|N|O|1997-07-01|1997-04-07|1997-07-14|TAKE BACK RETURN|RAIL|ct across the ironic accounts.| +63273|273487|23488|4|20|29209.40|0.01|0.00|N|O|1997-05-19|1997-05-04|1997-06-05|NONE|AIR|lar requests. blithely regular request| +63273|483337|33338|5|20|26406.20|0.03|0.05|N|O|1997-06-19|1997-05-23|1997-07-05|TAKE BACK RETURN|FOB|. furiously| +63273|441606|16623|6|1|1547.58|0.04|0.03|N|O|1997-05-26|1997-05-09|1997-06-12|COLLECT COD|FOB|sly. furiously final ideas| +63273|63282|786|7|2|2490.56|0.04|0.02|N|O|1997-05-15|1997-04-24|1997-06-09|DELIVER IN PERSON|REG AIR|old requests haggle furiou| +63274|564248|1782|1|28|36742.16|0.10|0.08|N|O|1995-08-14|1995-09-08|1995-09-04|NONE|REG AIR|final, regular deposits. special ideas bo| +63275|48338|48339|1|24|30871.92|0.10|0.04|N|O|1998-01-29|1998-02-18|1998-02-10|NONE|TRUCK|ke ideas. carefully| +63275|409460|46985|2|42|57516.48|0.06|0.03|N|O|1998-01-13|1998-03-14|1998-02-11|DELIVER IN PERSON|REG AIR|ll have to cajole after the ev| +63275|791864|29410|3|45|88012.35|0.06|0.01|N|O|1998-01-20|1998-02-10|1998-02-16|COLLECT COD|TRUCK|instructions. carefully ironic dependenci| +63275|849431|11948|4|1|1380.39|0.07|0.07|N|O|1998-04-30|1998-02-28|1998-05-25|NONE|SHIP|e fluffily pending pinto be| +63275|377350|39858|5|26|37110.84|0.01|0.00|N|O|1998-04-29|1998-02-06|1998-05-26|COLLECT COD|AIR| the slyly ironic inst| +63275|104841|29846|6|38|70141.92|0.06|0.05|N|O|1998-02-12|1998-04-06|1998-02-28|COLLECT COD|SHIP|n sentiments nag | +63276|504374|16885|1|4|5513.40|0.09|0.08|A|F|1992-02-26|1992-03-22|1992-03-03|TAKE BACK RETURN|MAIL|ter the express theodolites. slyl| +63277|890140|2658|1|15|16951.50|0.00|0.06|R|F|1994-02-10|1994-02-06|1994-03-02|NONE|FOB|pinto beans. express, sly deposits do detec| +63277|567637|30149|2|36|61365.96|0.05|0.02|A|F|1994-02-19|1994-01-03|1994-03-21|COLLECT COD|RAIL|al requests. slyly unusual courts along th| +63278|783281|8312|1|38|51841.50|0.10|0.02|R|F|1992-11-01|1992-09-29|1992-11-28|COLLECT COD|MAIL|lithely special theodol| +63279|625855|880|1|37|65890.34|0.07|0.08|N|O|1998-09-05|1998-08-22|1998-09-07|COLLECT COD|SHIP|ts wake al| +63304|374226|11748|1|29|37706.09|0.02|0.08|N|O|1997-07-28|1997-05-11|1997-08-14|COLLECT COD|MAIL| sleep furiously final dependencies. car| +63305|624259|49284|1|47|55611.34|0.06|0.04|N|O|1996-03-12|1996-02-20|1996-04-03|DELIVER IN PERSON|AIR|. quickly regular depos| +63305|910620|23139|2|9|14675.22|0.04|0.01|N|O|1996-03-05|1996-02-03|1996-04-03|TAKE BACK RETURN|FOB|deas are. fluffily ironic deposits sl| +63305|784286|34287|3|39|53439.75|0.00|0.07|N|O|1996-01-17|1996-01-30|1996-01-30|NONE|SHIP|bout the slyly ironic courts. dolp| +63305|482652|32653|4|48|78462.24|0.09|0.07|N|O|1995-12-16|1996-02-21|1995-12-21|COLLECT COD|MAIL|xpress dolph| +63305|915454|15455|5|27|39674.07|0.05|0.08|N|O|1996-02-10|1996-01-13|1996-02-22|NONE|SHIP|mong the accounts int| +63305|21936|34437|6|34|63169.62|0.10|0.02|N|O|1996-01-06|1996-02-08|1996-01-19|NONE|MAIL|uests cajole. regular deposits play accor| +63305|671275|33789|7|18|22432.32|0.06|0.04|N|O|1995-12-29|1996-02-15|1996-01-13|NONE|SHIP|final foxes. carefully fi| +63306|114996|2503|1|6|12065.94|0.05|0.07|N|O|1997-05-25|1997-05-15|1997-06-02|COLLECT COD|TRUCK| pending ideas. final, i| +63306|722100|9643|2|44|49371.08|0.08|0.03|N|O|1997-03-13|1997-04-28|1997-03-22|NONE|RAIL|e regular foxes. pinto b| +63306|333476|8489|3|6|9056.76|0.00|0.01|N|O|1997-04-16|1997-05-02|1997-05-13|DELIVER IN PERSON|SHIP|ross the theodol| +63306|717408|29923|4|19|27082.03|0.06|0.07|N|O|1997-06-20|1997-05-26|1997-07-19|COLLECT COD|FOB|ts. blithely bold accounts are sly| +63307|244372|44373|1|22|28959.92|0.10|0.02|N|O|1996-07-02|1996-07-26|1996-07-11|COLLECT COD|AIR|as wake. furiously even deposi| +63307|159979|22483|2|39|79519.83|0.10|0.06|N|O|1996-07-27|1996-07-12|1996-08-25|TAKE BACK RETURN|RAIL| ideas. fluffily sly| +63307|762355|49901|3|8|11338.56|0.04|0.01|N|O|1996-09-26|1996-08-10|1996-10-09|NONE|RAIL|ide of the furiously fi| +63307|889296|39297|4|1|1285.25|0.07|0.02|N|O|1996-09-21|1996-08-05|1996-10-09|DELIVER IN PERSON|SHIP| the furiously | +63308|628204|28205|1|10|11321.70|0.00|0.06|N|O|1998-09-28|1998-07-23|1998-10-01|TAKE BACK RETURN|SHIP|iously about the carefully iro| +63308|217710|42719|2|21|34181.70|0.01|0.00|N|O|1998-06-14|1998-08-12|1998-07-13|COLLECT COD|MAIL|platelets. carefull| +63308|46024|33525|3|46|44620.92|0.06|0.02|N|O|1998-08-20|1998-08-03|1998-09-09|COLLECT COD|TRUCK|the furiously brav| +63308|518909|18910|4|46|88682.48|0.05|0.00|N|O|1998-07-27|1998-07-09|1998-07-29|COLLECT COD|AIR| foxes integr| +63309|664477|39504|1|19|27387.36|0.04|0.03|N|O|1995-06-25|1995-08-30|1995-07-07|DELIVER IN PERSON|TRUCK| requests | +63309|860288|35323|2|50|62412.00|0.10|0.06|N|O|1995-07-30|1995-08-28|1995-08-20|COLLECT COD|AIR|s poach fluffily blithely ironic dep| +63309|855864|5865|3|40|72792.80|0.00|0.02|N|O|1995-07-10|1995-08-15|1995-07-28|COLLECT COD|AIR|tions play carefully. fluffily spe| +63309|494822|19841|4|4|7267.20|0.00|0.06|N|O|1995-09-27|1995-07-31|1995-10-15|DELIVER IN PERSON|AIR|s integrate furiously: furiously ironic| +63309|457599|7600|5|12|18678.84|0.03|0.03|N|O|1995-07-16|1995-08-01|1995-08-05|NONE|RAIL|al foxes about the | +63309|851982|1983|6|23|44480.62|0.10|0.07|N|O|1995-07-16|1995-07-30|1995-07-27|COLLECT COD|FOB|ke blithely according to the pinto beans| +63310|395515|20530|1|3|4831.50|0.09|0.07|N|O|1996-02-12|1996-02-14|1996-02-17|NONE|RAIL|ly silent notornis | +63310|406333|6334|2|25|30982.75|0.00|0.02|N|O|1996-01-18|1996-03-16|1996-02-14|TAKE BACK RETURN|REG AIR|ckages use blithely of the slyly unusual | +63310|230242|30243|3|13|15238.99|0.10|0.06|N|O|1996-01-08|1996-03-17|1996-01-13|TAKE BACK RETURN|MAIL|ry to sleep furiously. quickly even accoun| +63311|272566|22567|1|22|33848.10|0.01|0.06|N|O|1998-04-04|1998-04-27|1998-04-18|NONE|RAIL|to the even, bold de| +63311|5142|5143|2|36|37697.04|0.00|0.05|N|O|1998-06-03|1998-03-21|1998-06-28|NONE|RAIL|nts. pearls according to th| +63311|421071|21072|3|44|43650.20|0.08|0.02|N|O|1998-03-01|1998-03-18|1998-03-17|COLLECT COD|RAIL|long the quickly express | +63311|928787|16342|4|28|50840.72|0.02|0.02|N|O|1998-04-12|1998-04-27|1998-04-19|NONE|FOB|symptotes. bold, special req| +63311|115643|3150|5|28|46441.92|0.02|0.06|N|O|1998-03-12|1998-04-14|1998-03-27|DELIVER IN PERSON|AIR|ress packages lose| +63311|599838|37372|6|3|5813.43|0.09|0.05|N|O|1998-04-07|1998-03-27|1998-04-21|NONE|REG AIR| pending accounts| +63311|469073|6601|7|38|39597.90|0.06|0.02|N|O|1998-05-04|1998-04-13|1998-05-06|TAKE BACK RETURN|REG AIR|tructions. even a| +63336|709436|46979|1|34|49143.60|0.02|0.08|R|F|1992-07-17|1992-05-16|1992-08-08|TAKE BACK RETURN|TRUCK| furiously fluffily expr| +63336|483358|8377|2|10|13413.30|0.06|0.06|R|F|1992-07-19|1992-07-08|1992-08-13|TAKE BACK RETURN|SHIP|he enticingly ironic deposits. | +63336|789887|27433|3|5|9884.25|0.00|0.02|A|F|1992-07-21|1992-06-19|1992-08-07|COLLECT COD|AIR|onic pinto bea| +63336|626392|38905|4|32|42187.52|0.07|0.07|A|F|1992-06-13|1992-06-03|1992-06-20|TAKE BACK RETURN|SHIP|. final warthogs around| +63337|655585|30612|1|26|40054.30|0.02|0.07|N|O|1996-07-20|1996-08-04|1996-07-22|TAKE BACK RETURN|SHIP|es. furiously even accounts| +63337|408645|33662|2|28|43501.36|0.02|0.03|N|O|1996-09-20|1996-09-06|1996-10-19|TAKE BACK RETURN|SHIP|nusual, pending deposits use ca| +63337|91883|41884|3|42|78744.96|0.05|0.05|N|O|1996-09-12|1996-07-28|1996-09-25|TAKE BACK RETURN|REG AIR|yly silent| +63338|638298|811|1|7|8653.82|0.01|0.04|N|O|1995-08-22|1995-07-20|1995-09-01|DELIVER IN PERSON|AIR|en ideas. express excuses sle| +63339|361423|23931|1|12|17812.92|0.09|0.06|R|F|1994-02-21|1994-03-13|1994-03-11|TAKE BACK RETURN|SHIP|p the carefully specia| +63339|433879|46388|2|28|50759.80|0.03|0.06|R|F|1993-12-31|1994-02-10|1994-01-09|DELIVER IN PERSON|REG AIR|regular dependencies are carefully. furiou| +63340|114927|2434|1|24|46606.08|0.10|0.05|N|O|1997-05-26|1997-05-06|1997-06-16|TAKE BACK RETURN|TRUCK|y above the quickly ironic r| +63340|577666|15200|2|15|26154.60|0.09|0.04|N|O|1997-05-11|1997-06-24|1997-06-09|TAKE BACK RETURN|SHIP|ironic deposits play fur| +63340|825791|13340|3|44|75537.00|0.02|0.07|N|O|1997-07-07|1997-06-08|1997-07-30|NONE|REG AIR|nal, bold pinto beans bo| +63340|62354|49858|4|41|53970.35|0.05|0.03|N|O|1997-06-04|1997-06-02|1997-06-23|NONE|REG AIR|ng pinto beans along the brave acco| +63341|4233|41734|1|22|25019.06|0.01|0.02|R|F|1993-08-16|1993-09-25|1993-09-14|NONE|TRUCK|packages. slyly ironic | +63342|217626|17627|1|34|52482.74|0.03|0.00|N|O|1997-07-13|1997-07-08|1997-07-17|DELIVER IN PERSON|AIR|hs impress even instructions-- fluff| +63342|629741|4766|2|25|41767.75|0.10|0.03|N|O|1997-06-11|1997-06-03|1997-06-28|DELIVER IN PERSON|RAIL| quickly unusual requests nag. c| +63342|46153|21154|3|8|8793.20|0.00|0.05|N|O|1997-06-29|1997-06-30|1997-07-03|TAKE BACK RETURN|SHIP|carefully regular depend| +63342|686774|11801|4|7|12325.18|0.01|0.01|N|O|1997-04-27|1997-06-27|1997-04-30|TAKE BACK RETURN|AIR| promise among the slyly final deposi| +63342|602321|2322|5|50|61164.50|0.08|0.06|N|O|1997-06-29|1997-07-13|1997-07-10|TAKE BACK RETURN|FOB| ironic foxes after the slyly regular d| +63342|202366|39879|6|19|24098.65|0.03|0.05|N|O|1997-05-11|1997-06-19|1997-05-17|DELIVER IN PERSON|FOB| use. final packages | +63343|525404|425|1|9|12864.42|0.08|0.02|N|O|1996-02-29|1996-01-14|1996-03-10|NONE|AIR|e regular, ironic deposits. foxes| +63343|460105|35124|2|23|24496.84|0.01|0.07|N|O|1995-11-29|1996-01-29|1995-12-20|NONE|REG AIR| express pinto beans. even pinto| +63343|979332|29333|3|27|38104.83|0.02|0.00|N|O|1995-11-18|1996-01-11|1995-11-27|TAKE BACK RETURN|SHIP|ly bold accounts sleep fl| +63343|627071|39584|4|27|26947.08|0.00|0.05|N|O|1996-01-11|1996-01-09|1996-02-06|TAKE BACK RETURN|REG AIR|ctions are after the furiously exp| +63343|165533|15534|5|27|43160.31|0.10|0.08|N|O|1996-03-06|1995-12-23|1996-03-18|NONE|MAIL|ly final accounts. fluffily ironic sheav| +63368|133496|45999|1|20|30589.80|0.00|0.04|R|F|1994-01-09|1994-01-18|1994-01-21|TAKE BACK RETURN|MAIL|dolites cajol| +63369|490747|40748|1|48|83410.56|0.00|0.03|R|F|1993-04-19|1993-03-13|1993-05-11|DELIVER IN PERSON|RAIL|ost slyly. carefully spec| +63369|970724|33244|2|21|37688.28|0.09|0.05|A|F|1993-06-03|1993-03-09|1993-06-27|NONE|TRUCK|quickly at the requests. always| +63370|346184|33703|1|35|43055.95|0.07|0.03|R|F|1992-07-15|1992-07-08|1992-07-19|NONE|MAIL|y even asymptotes. unusual pinto be| +63370|298273|35789|2|12|15255.12|0.04|0.00|R|F|1992-07-16|1992-07-17|1992-08-06|TAKE BACK RETURN|FOB|c epitaphs. furiously pending package| +63371|822565|22566|1|41|60988.32|0.10|0.02|A|F|1994-01-01|1994-01-08|1994-01-29|TAKE BACK RETURN|MAIL|ironic deposits around the pen| +63371|841620|16653|2|26|40601.08|0.05|0.01|A|F|1994-01-04|1994-01-13|1994-01-30|DELIVER IN PERSON|TRUCK| pinto beans haggle| +63371|93504|6006|3|42|62895.00|0.04|0.02|A|F|1994-01-20|1994-02-17|1994-01-21|TAKE BACK RETURN|SHIP|ideas. ideas solve furi| +63371|506131|18642|4|4|4548.44|0.05|0.03|A|F|1993-12-22|1994-02-26|1994-01-19|NONE|MAIL|fully special deposit| +63372|623396|10933|1|32|42219.52|0.03|0.03|N|O|1995-07-30|1995-07-27|1995-08-15|NONE|AIR|eposits nag requests. carefully regular pa| +63372|406957|19466|2|17|31686.81|0.02|0.03|N|O|1995-07-04|1995-08-04|1995-07-31|DELIVER IN PERSON|MAIL|ess tithes according to the sl| +63372|717592|5135|3|30|48286.80|0.02|0.06|N|O|1995-07-16|1995-07-26|1995-08-11|DELIVER IN PERSON|RAIL|s. blithely final accounts are quickly r| +63372|567271|4805|4|6|8029.50|0.00|0.02|N|O|1995-09-18|1995-08-26|1995-09-22|COLLECT COD|AIR|ds integrate stealthily. even | +63372|122626|10133|5|3|4945.86|0.10|0.03|N|O|1995-07-04|1995-07-29|1995-07-13|DELIVER IN PERSON|AIR|latelets haggle furio| +63372|965676|40715|6|9|15674.67|0.10|0.05|N|O|1995-08-02|1995-08-22|1995-08-12|COLLECT COD|RAIL|sly. slyly unusual asymptotes wake| +63372|105315|30320|7|14|18484.34|0.03|0.06|N|O|1995-07-09|1995-08-04|1995-07-23|TAKE BACK RETURN|AIR|outs wake caref| +63373|20164|45165|1|35|37945.60|0.04|0.01|R|F|1994-01-19|1993-12-17|1994-02-13|DELIVER IN PERSON|SHIP|ctions. slyly ironic package| +63373|884959|22511|2|21|40822.11|0.10|0.06|A|F|1994-01-24|1993-12-18|1994-02-21|TAKE BACK RETURN|RAIL|structions at the caref| +63373|499404|11914|3|23|32277.74|0.07|0.07|R|F|1993-11-17|1993-12-14|1993-11-25|NONE|FOB|sely above the pendin| +63373|471201|21202|4|30|35165.40|0.04|0.07|A|F|1993-11-19|1994-02-06|1993-12-11|NONE|TRUCK|ay thinly among the foxes. slyly| +63373|465589|28099|5|14|21763.84|0.04|0.05|A|F|1994-03-10|1994-02-01|1994-03-11|NONE|REG AIR|ets cajole. express, unusual instru| +63374|935157|22712|1|15|17881.65|0.00|0.07|R|F|1995-04-30|1995-05-14|1995-05-10|DELIVER IN PERSON|MAIL|kages cajole. quickly final pa| +63374|180609|18119|2|14|23654.40|0.03|0.07|N|F|1995-06-15|1995-05-02|1995-06-30|DELIVER IN PERSON|AIR|sts. furiously e| +63374|487770|25298|3|20|35155.00|0.03|0.06|N|F|1995-06-07|1995-06-21|1995-06-22|NONE|MAIL|s; regular, bold dependencies | +63374|944861|32416|4|28|53362.96|0.00|0.08|A|F|1995-05-16|1995-05-24|1995-05-31|DELIVER IN PERSON|REG AIR|-- slyly express forges cajole f| +63374|273653|48664|5|37|60185.68|0.00|0.02|N|O|1995-07-12|1995-05-31|1995-07-30|TAKE BACK RETURN|FOB|lly. slyly ironic theodo| +63374|274174|49185|6|25|28704.00|0.01|0.06|R|F|1995-04-21|1995-05-20|1995-05-01|TAKE BACK RETURN|AIR|leep furiously over the carefully speci| +63375|387544|12559|1|36|58735.08|0.00|0.00|N|O|1998-06-10|1998-06-21|1998-06-26|NONE|FOB|structions according to the quickly ironic | +63375|449391|11900|2|27|36189.99|0.02|0.03|N|O|1998-07-17|1998-07-12|1998-07-30|NONE|SHIP|ously along t| +63375|899991|25026|3|24|47782.80|0.08|0.05|N|O|1998-08-18|1998-05-30|1998-09-16|NONE|REG AIR|ow ideas. flu| +63375|146046|8549|4|32|34945.28|0.02|0.04|N|O|1998-08-03|1998-07-20|1998-08-04|TAKE BACK RETURN|MAIL|uickly ironic ideas. care| +63375|580709|30710|5|27|48321.36|0.06|0.02|N|O|1998-07-30|1998-07-05|1998-08-23|NONE|TRUCK|k deposits-- carefully even pac| +63400|775843|874|1|21|40295.01|0.09|0.05|R|F|1992-07-29|1992-06-30|1992-08-13|NONE|MAIL|slow requests. quickly final pinto beans e| +63400|588158|13181|2|14|17445.82|0.09|0.07|A|F|1992-08-14|1992-06-21|1992-08-17|NONE|TRUCK|ffily thin grouches boost bl| +63401|904721|29758|1|25|43142.00|0.08|0.00|N|O|1995-06-23|1995-08-01|1995-07-19|NONE|RAIL|nt deposits nag blithely. regular theodo| +63401|631388|6413|2|24|31664.40|0.10|0.08|A|F|1995-05-22|1995-08-05|1995-05-26|NONE|REG AIR|ove the regular foxes sleep along| +63401|721643|9186|3|7|11652.27|0.04|0.06|N|O|1995-08-09|1995-08-09|1995-09-06|DELIVER IN PERSON|FOB|p carefully. carefully ironi| +63401|640139|15164|4|46|49638.60|0.04|0.04|N|O|1995-06-29|1995-07-05|1995-07-11|NONE|TRUCK|sts wake quickly even dolphins. fina| +63401|808587|33620|5|49|73281.46|0.03|0.01|N|O|1995-08-19|1995-07-03|1995-09-16|TAKE BACK RETURN|REG AIR|eposits. special packages use fluf| +63402|715710|15711|1|50|86284.00|0.04|0.07|R|F|1992-07-12|1992-05-07|1992-07-26|COLLECT COD|FOB| pinto beans are after the furiousl| +63403|325938|13457|1|23|45170.16|0.07|0.01|A|F|1992-05-21|1992-05-01|1992-05-22|TAKE BACK RETURN|SHIP|blithely along the fin| +63403|31045|18546|2|46|44897.84|0.04|0.01|A|F|1992-06-01|1992-06-11|1992-06-10|COLLECT COD|REG AIR|thely regular excuses ab| +63404|8426|20927|1|47|62717.74|0.09|0.01|A|F|1994-08-18|1994-07-02|1994-09-17|NONE|AIR|tegrate blithely. quickly f| +63404|611312|11313|2|31|37921.68|0.09|0.07|A|F|1994-08-17|1994-07-25|1994-08-25|COLLECT COD|TRUCK|slyly pendi| +63404|312424|37437|3|7|10054.87|0.04|0.07|R|F|1994-06-20|1994-07-09|1994-07-19|DELIVER IN PERSON|REG AIR|furiously careful| +63404|906068|6069|4|16|17184.32|0.09|0.03|R|F|1994-06-16|1994-08-08|1994-07-13|NONE|TRUCK|refully even packages. pla| +63404|276940|1951|5|27|51757.11|0.05|0.08|R|F|1994-06-08|1994-08-02|1994-06-24|NONE|REG AIR|egular courts | +63405|213407|25912|1|4|5281.56|0.09|0.08|N|O|1996-08-18|1996-08-06|1996-09-11|DELIVER IN PERSON|RAIL|de of the regular multipliers cajole | +63405|723970|11513|2|38|75769.72|0.01|0.03|N|O|1996-09-21|1996-07-17|1996-10-12|DELIVER IN PERSON|RAIL|g to the enticing, regula| +63405|758555|8556|3|3|4840.56|0.03|0.03|N|O|1996-07-17|1996-07-27|1996-07-30|TAKE BACK RETURN|REG AIR| the even sheaves. sometimes ironic acc| +63405|30459|30460|4|21|29178.45|0.04|0.04|N|O|1996-09-07|1996-08-30|1996-10-03|COLLECT COD|FOB|. slyly dogged court| +63405|911364|23883|5|5|6876.60|0.10|0.02|N|O|1996-07-06|1996-08-15|1996-07-13|DELIVER IN PERSON|TRUCK|mptotes. even deposits sleep caref| +63405|282661|7672|6|31|50953.15|0.07|0.04|N|O|1996-08-09|1996-07-11|1996-09-04|TAKE BACK RETURN|FOB| furiously. blithely pe| +63405|674191|11731|7|33|38450.28|0.01|0.00|N|O|1996-07-30|1996-08-28|1996-08-02|TAKE BACK RETURN|TRUCK|y special requests alon| +63406|123970|36473|1|21|41873.37|0.08|0.04|A|F|1994-05-13|1994-05-23|1994-05-17|COLLECT COD|REG AIR|ic deposits against th| +63406|560662|10663|2|34|58569.76|0.01|0.03|A|F|1994-04-11|1994-06-20|1994-04-16|DELIVER IN PERSON|AIR| deposits x-ray after the | +63406|40431|2932|3|2|2742.86|0.02|0.03|R|F|1994-05-16|1994-06-11|1994-05-31|TAKE BACK RETURN|AIR|press deposits. blithely | +63406|520317|32828|4|25|33432.25|0.07|0.00|R|F|1994-05-15|1994-05-19|1994-06-04|TAKE BACK RETURN|AIR|ions. pending foxes boost slyly b| +63406|951276|38834|5|44|58398.12|0.03|0.08|R|F|1994-04-10|1994-06-02|1994-05-01|COLLECT COD|RAIL|olites cajole-- regular, | +63407|825073|37590|1|42|41917.26|0.08|0.06|R|F|1993-09-03|1993-08-18|1993-09-22|DELIVER IN PERSON|SHIP| unusual requ| +63407|990813|40814|2|40|76150.80|0.08|0.07|R|F|1993-07-06|1993-08-21|1993-07-14|NONE|TRUCK|final dependencies. furio| +63432|97625|10127|1|43|69772.66|0.04|0.05|N|O|1996-05-02|1996-04-02|1996-05-28|TAKE BACK RETURN|MAIL| beans. close instructions haggle | +63432|778781|3812|2|42|78109.50|0.09|0.05|N|O|1996-02-26|1996-03-01|1996-03-01|TAKE BACK RETURN|RAIL|ly final id| +63432|965896|15897|3|34|66702.90|0.06|0.02|N|O|1996-05-08|1996-03-18|1996-05-20|DELIVER IN PERSON|MAIL|tructions. packages ac| +63432|807305|7306|4|31|37580.06|0.09|0.08|N|O|1996-02-07|1996-04-14|1996-02-17|COLLECT COD|MAIL|ns. regular,| +63432|367022|42037|5|31|33759.31|0.01|0.08|N|O|1996-04-17|1996-04-08|1996-05-11|TAKE BACK RETURN|REG AIR|ges haggle carefully final asympt| +63432|536437|36438|6|34|50095.94|0.07|0.07|N|O|1996-02-28|1996-04-17|1996-03-02|COLLECT COD|RAIL|l dinos wake blithely express platelets| +63433|366005|41020|1|23|24632.77|0.05|0.07|A|F|1993-05-11|1993-03-16|1993-05-29|COLLECT COD|TRUCK| even dependencies sleep slyly brave| +63433|445110|7619|2|23|24267.07|0.09|0.04|R|F|1993-03-26|1993-04-13|1993-04-01|COLLECT COD|RAIL|are blithely quiet ideas. flu| +63433|959817|22337|3|3|5630.31|0.05|0.01|A|F|1993-04-11|1993-02-24|1993-05-09|COLLECT COD|RAIL|nd the request| +63433|640527|40528|4|35|51362.15|0.01|0.00|R|F|1993-04-25|1993-04-07|1993-05-18|NONE|SHIP|en requests. slyl| +63433|324564|24565|5|6|9531.30|0.07|0.04|A|F|1993-04-10|1993-03-01|1993-05-09|DELIVER IN PERSON|REG AIR| to the furiously final requests wake amon| +63433|940782|3301|6|36|65618.64|0.02|0.04|A|F|1993-05-06|1993-03-18|1993-05-20|COLLECT COD|AIR|l excuses w| +63433|722954|10497|7|49|96869.08|0.06|0.07|R|F|1993-05-14|1993-03-10|1993-05-30|NONE|AIR| carefully unusual requests h| +63434|680095|5122|1|25|26876.50|0.09|0.01|R|F|1993-10-28|1993-11-13|1993-11-17|NONE|SHIP|ests sleep quickly about the even foxes: | +63434|346844|46845|2|1|1890.83|0.06|0.07|A|F|1993-11-17|1993-11-02|1993-11-29|COLLECT COD|TRUCK|s. slyly special pint| +63434|401035|1036|3|33|30888.33|0.05|0.04|A|F|1993-10-10|1993-11-24|1993-11-09|COLLECT COD|REG AIR|at the furiously bold i| +63434|182932|45436|4|7|14104.51|0.02|0.03|R|F|1993-12-30|1993-12-29|1994-01-16|TAKE BACK RETURN|REG AIR|posits. qu| +63434|524495|37006|5|32|48623.04|0.05|0.07|A|F|1994-01-18|1993-11-02|1994-02-10|TAKE BACK RETURN|SHIP|ly final deposits do| +63434|175300|37804|6|19|26130.70|0.09|0.02|A|F|1994-01-19|1993-11-07|1994-02-02|COLLECT COD|AIR|even accounts. slyly | +63434|257542|45058|7|38|56982.14|0.06|0.02|R|F|1993-10-20|1993-11-29|1993-10-27|DELIVER IN PERSON|REG AIR|s are blithely above t| +63435|500087|37618|1|20|21741.20|0.01|0.07|N|O|1995-07-08|1995-04-21|1995-07-26|TAKE BACK RETURN|RAIL|uriously unusual packages. fluffily sile| +63436|264225|1741|1|15|17838.15|0.08|0.00|R|F|1993-10-20|1993-09-13|1993-11-15|TAKE BACK RETURN|SHIP|ckages print fluffily fina| +63436|829414|4447|2|2|2686.74|0.08|0.03|A|F|1993-08-21|1993-09-14|1993-09-16|DELIVER IN PERSON|SHIP| accounts sleep. regul| +63436|953588|16108|3|8|13132.32|0.08|0.08|A|F|1993-07-24|1993-09-17|1993-08-13|DELIVER IN PERSON|FOB|ns thrash sly| +63437|842937|42938|1|50|93994.50|0.04|0.08|R|F|1994-07-14|1994-06-28|1994-08-09|TAKE BACK RETURN|SHIP|fully across the ironic, bold | +63437|235539|48044|2|44|64878.88|0.07|0.05|R|F|1994-06-13|1994-06-15|1994-07-07|COLLECT COD|REG AIR| pinto beans na| +63437|691759|29299|3|30|52521.60|0.05|0.03|R|F|1994-08-01|1994-06-24|1994-08-06|DELIVER IN PERSON|FOB|oldly slyly fina| +63437|379143|41651|4|47|57440.11|0.09|0.07|R|F|1994-07-15|1994-06-18|1994-07-17|NONE|AIR|s cajole. blithely daring depo| +63437|247899|35412|5|31|57253.28|0.02|0.00|R|F|1994-06-15|1994-07-21|1994-06-22|TAKE BACK RETURN|RAIL| cajole about the final, expre| +63437|432306|19831|6|10|12382.80|0.06|0.06|R|F|1994-05-28|1994-07-02|1994-05-29|COLLECT COD|RAIL|ronic packages are carefull| +63437|757070|19586|7|50|56352.00|0.01|0.06|R|F|1994-08-26|1994-06-11|1994-09-20|TAKE BACK RETURN|RAIL|eep after th| +63438|59277|46781|1|10|12362.70|0.02|0.05|N|O|1998-03-31|1998-02-12|1998-04-28|COLLECT COD|MAIL|accounts. furiously quick requests along| +63438|262238|24744|2|47|56410.34|0.09|0.06|N|O|1998-02-02|1998-02-20|1998-02-14|NONE|AIR|t, regular ac| +63438|428215|28216|3|41|46870.79|0.07|0.03|N|O|1998-02-20|1998-03-16|1998-03-04|DELIVER IN PERSON|SHIP|he bold deposits. even dep| +63438|6720|44221|4|2|3253.44|0.05|0.02|N|O|1998-03-25|1998-01-27|1998-04-03|TAKE BACK RETURN|RAIL|eposits believe carefully unu| +63438|936223|48742|5|15|18887.70|0.10|0.07|N|O|1998-02-05|1998-01-28|1998-02-24|DELIVER IN PERSON|AIR|ncies after the furiously regular| +63439|848035|48036|1|13|12778.87|0.08|0.07|N|O|1997-01-17|1997-03-23|1997-02-13|COLLECT COD|MAIL|quickly ironic t| +63464|965134|27654|1|15|17986.35|0.08|0.03|A|F|1994-08-05|1994-07-25|1994-08-12|TAKE BACK RETURN|TRUCK| unusual packages affix blithe| +63465|512930|461|1|3|5828.73|0.07|0.08|N|O|1996-08-15|1996-09-11|1996-08-18|NONE|SHIP|cross the requests? blithely even gr| +63465|808421|20938|2|47|62480.86|0.04|0.03|N|O|1996-11-02|1996-09-28|1996-11-07|NONE|RAIL|regular accounts. quickly regul| +63466|540588|40589|1|23|37456.88|0.03|0.08|R|F|1994-06-29|1994-05-13|1994-07-22|COLLECT COD|REG AIR|accounts are final ideas. carefully re| +63466|657971|32998|2|21|40507.74|0.00|0.03|A|F|1994-05-25|1994-06-02|1994-06-07|NONE|MAIL| furiously final | +63466|513943|13944|3|24|46966.08|0.01|0.01|R|F|1994-06-12|1994-05-13|1994-06-30|TAKE BACK RETURN|REG AIR|e blithely among the bl| +63466|834226|34227|4|48|55688.64|0.10|0.04|R|F|1994-06-06|1994-07-03|1994-06-21|TAKE BACK RETURN|MAIL| haggle above the express ideas. quickly bo| +63466|823219|48252|5|25|28554.25|0.04|0.04|A|F|1994-07-20|1994-06-04|1994-08-06|TAKE BACK RETURN|AIR|structions. furio| +63467|634032|46545|1|18|17388.00|0.00|0.00|R|F|1993-08-26|1993-09-29|1993-09-22|DELIVER IN PERSON|REG AIR|d requests. stealthily regul| +63467|175780|13290|2|40|74231.20|0.04|0.08|A|F|1993-11-07|1993-08-17|1993-11-20|NONE|RAIL|nag doggedly de| +63467|327530|27531|3|29|45168.08|0.02|0.08|R|F|1993-09-07|1993-09-04|1993-10-07|DELIVER IN PERSON|TRUCK|esides the| +63467|796500|34046|4|11|17561.17|0.08|0.03|A|F|1993-07-28|1993-09-09|1993-08-10|NONE|SHIP|ntly accounts. bold, ironic for| +63467|766353|41384|5|38|53934.16|0.02|0.05|A|F|1993-10-09|1993-09-25|1993-10-16|NONE|AIR|even theodolites. blithely regular instruc| +63467|82464|44966|6|32|46286.72|0.10|0.04|R|F|1993-10-31|1993-09-10|1993-11-22|NONE|FOB|in theodolites. carefully | +63468|510444|22955|1|21|30542.82|0.03|0.06|R|F|1992-06-12|1992-05-30|1992-06-29|DELIVER IN PERSON|TRUCK|s. blithely eve| +63468|27740|27741|2|40|66709.60|0.02|0.00|R|F|1992-06-21|1992-05-23|1992-07-16|DELIVER IN PERSON|RAIL|etimes regular p| +63468|220730|33235|3|37|61076.64|0.07|0.08|R|F|1992-06-03|1992-05-18|1992-06-13|TAKE BACK RETURN|RAIL|arefully busy packages serve furiously. | +63468|808583|21100|4|16|23864.64|0.05|0.00|A|F|1992-07-14|1992-05-18|1992-07-27|NONE|RAIL|s. pinto beans cajole ac| +63469|209158|21663|1|44|46954.16|0.09|0.06|N|O|1997-12-03|1997-12-21|1997-12-22|TAKE BACK RETURN|RAIL|pecial pinto beans across the carefully| +63470|150587|38097|1|10|16375.80|0.06|0.08|A|F|1994-07-23|1994-06-16|1994-07-28|TAKE BACK RETURN|TRUCK|e the ideas. fluffily reg| +63470|910177|35214|2|21|24929.73|0.00|0.07|R|F|1994-06-28|1994-05-26|1994-07-01|DELIVER IN PERSON|TRUCK|le blithely about the quick| +63470|330420|30421|3|8|11603.28|0.09|0.02|R|F|1994-08-08|1994-06-07|1994-08-28|COLLECT COD|REG AIR|express the| +63470|367073|42088|4|10|11400.60|0.10|0.07|R|F|1994-04-18|1994-05-20|1994-04-26|NONE|MAIL|e ironic ideas| +63470|384174|46682|5|22|27679.52|0.06|0.03|A|F|1994-06-27|1994-06-13|1994-07-24|COLLECT COD|TRUCK|pending, unusual hockey players caj| +63471|510100|22611|1|20|22201.60|0.10|0.00|N|O|1998-05-31|1998-05-23|1998-06-12|NONE|MAIL|ven pinto beans are furiously permanent p| +63471|241439|3944|2|13|17945.46|0.08|0.07|N|O|1998-04-12|1998-06-20|1998-04-26|NONE|TRUCK| dogged re| +63496|524874|37385|1|18|34179.30|0.02|0.08|N|O|1997-06-10|1997-05-04|1997-07-03|COLLECT COD|MAIL|ing warthogs. | +63496|543624|6135|2|22|36687.20|0.06|0.03|N|O|1997-06-21|1997-05-26|1997-06-27|TAKE BACK RETURN|AIR|to beans. furiously special package| +63496|687292|24832|3|12|15351.12|0.04|0.04|N|O|1997-06-20|1997-05-05|1997-07-04|TAKE BACK RETURN|SHIP|n furiously after the even instructions| +63496|306363|31376|4|47|64359.45|0.07|0.02|N|O|1997-03-16|1997-05-28|1997-04-03|COLLECT COD|SHIP| regular accounts boost accor| +63496|32685|7686|5|9|14559.12|0.02|0.04|N|O|1997-04-17|1997-04-24|1997-05-11|NONE|TRUCK|ounts use care| +63496|323084|10603|6|35|38747.45|0.10|0.02|N|O|1997-06-23|1997-05-28|1997-07-19|COLLECT COD|MAIL|tructions. th| +63496|59072|46576|7|32|32994.24|0.09|0.08|N|O|1997-07-11|1997-04-24|1997-08-09|NONE|SHIP|nts boost furiously bold packages. slyly| +63497|813822|13823|1|1|1735.78|0.01|0.02|N|O|1996-06-17|1996-07-24|1996-07-09|DELIVER IN PERSON|AIR|aters cajole regular reque| +63497|905693|43248|2|40|67946.00|0.04|0.07|N|O|1996-06-23|1996-07-24|1996-06-25|COLLECT COD|RAIL|eodolites wake even| +63497|967681|17682|3|37|64699.68|0.08|0.04|N|O|1996-06-26|1996-07-14|1996-07-01|NONE|FOB|ily express packages. regular requests w| +63497|808345|45894|4|50|62665.00|0.10|0.05|N|O|1996-05-27|1996-07-03|1996-06-06|NONE|REG AIR|rays nag furiously never bold deposit| +63497|853370|40922|5|18|23819.94|0.05|0.02|N|O|1996-08-31|1996-07-28|1996-09-10|NONE|AIR|ously pending asymptotes b| +63498|934660|34661|1|28|47449.36|0.01|0.00|A|F|1993-07-06|1993-08-25|1993-07-16|NONE|AIR|deposits sleep. ir| +63498|824919|37436|2|39|71910.93|0.00|0.01|R|F|1993-08-05|1993-08-13|1993-08-31|COLLECT COD|SHIP| sleep fluffily | +63498|404402|29419|3|16|20902.08|0.10|0.02|A|F|1993-07-12|1993-08-03|1993-07-19|TAKE BACK RETURN|TRUCK|nusual dependencies be| +63498|767910|30426|4|17|33623.96|0.05|0.05|A|F|1993-07-31|1993-08-20|1993-08-21|TAKE BACK RETURN|TRUCK|ns. furiously fluffy forges kindle against| +63498|257357|19863|5|42|55202.28|0.01|0.07|R|F|1993-09-28|1993-08-16|1993-09-30|COLLECT COD|TRUCK|sias. blithely pending requests snoo| +63499|2801|2802|1|30|51114.00|0.07|0.04|R|F|1994-08-11|1994-09-26|1994-08-27|NONE|SHIP| furiously i| +63499|75126|37628|2|32|35235.84|0.01|0.08|R|F|1994-09-23|1994-10-07|1994-10-15|NONE|RAIL|ffily furiously daring requests. car| +63499|640339|2852|3|19|24306.70|0.08|0.01|R|F|1994-08-13|1994-10-08|1994-09-03|DELIVER IN PERSON|REG AIR|always furiously regular p| +63499|165474|2984|4|13|20013.11|0.00|0.06|R|F|1994-09-01|1994-11-06|1994-09-06|DELIVER IN PERSON|MAIL|engage fluffily iro| +63499|107212|44719|5|10|12192.10|0.08|0.00|A|F|1994-08-30|1994-10-31|1994-09-09|COLLECT COD|REG AIR|quests grow carefully requests. even, | +63499|901466|13985|6|32|46957.44|0.02|0.06|R|F|1994-10-25|1994-10-05|1994-11-13|TAKE BACK RETURN|REG AIR|eans sleep. care| +63500|449764|24781|1|14|23992.36|0.04|0.01|N|O|1995-12-02|1995-12-30|1995-12-24|COLLECT COD|TRUCK|s are carefully unusual hockey player| +63500|182351|44855|2|8|11466.80|0.08|0.01|N|O|1995-11-25|1996-01-06|1995-12-05|TAKE BACK RETURN|RAIL|as. even instructions af| +63501|101352|38859|1|26|35187.10|0.10|0.01|N|O|1997-06-04|1997-04-25|1997-06-14|COLLECT COD|FOB|efully final gifts wake furio| +63502|252234|14740|1|1|1186.22|0.06|0.00|N|O|1998-07-30|1998-05-21|1998-08-02|NONE|FOB|foxes. ironic requests after the always| +63502|284941|34942|2|20|38518.60|0.06|0.06|N|O|1998-06-30|1998-05-19|1998-07-01|DELIVER IN PERSON|TRUCK|egular requests about the packages | +63502|990232|15271|3|29|38343.51|0.10|0.00|N|O|1998-07-05|1998-05-20|1998-07-19|NONE|FOB|lyly regular accounts. final dep| +63502|828726|16275|4|37|61223.16|0.08|0.01|N|O|1998-04-21|1998-06-14|1998-05-12|NONE|MAIL|hes. blithely b| +63503|15252|40253|1|41|47857.25|0.10|0.07|N|O|1996-08-28|1996-10-11|1996-09-18|NONE|RAIL| accounts. pa| +63503|339499|39500|2|25|38462.00|0.05|0.00|N|O|1996-10-06|1996-10-21|1996-10-28|COLLECT COD|SHIP|o the ironic| +63503|951768|39326|3|29|52771.88|0.00|0.00|N|O|1996-12-10|1996-09-29|1996-12-12|NONE|MAIL|ges mold furiously across the care| +63503|355504|18012|4|39|60820.11|0.10|0.08|N|O|1996-08-26|1996-11-03|1996-09-07|DELIVER IN PERSON|RAIL|equests integrate alongside of| +63503|952430|2431|5|13|19271.07|0.02|0.04|N|O|1996-11-25|1996-11-15|1996-12-05|NONE|MAIL|slyly to the ironic accounts. final| +63503|484805|34806|6|5|8948.90|0.10|0.02|N|O|1996-08-30|1996-10-06|1996-09-03|DELIVER IN PERSON|REG AIR|encies sleep. c| +63503|107152|44659|7|38|44047.70|0.01|0.00|N|O|1996-09-28|1996-11-08|1996-10-07|NONE|SHIP| foxes. special packages affix c| +63528|898705|36257|1|2|3407.32|0.06|0.02|N|O|1995-09-14|1995-08-25|1995-10-09|TAKE BACK RETURN|REG AIR|ts. slyly dogged theodolites a| +63528|519651|7182|2|38|63483.94|0.03|0.08|N|O|1995-09-13|1995-09-23|1995-10-06|DELIVER IN PERSON|MAIL|iously express pinto beans| +63529|53461|3462|1|32|45262.72|0.01|0.03|N|O|1996-02-13|1995-12-17|1996-02-14|NONE|TRUCK|ns over the | +63529|505721|30742|2|37|63887.90|0.01|0.08|N|O|1995-12-01|1996-01-10|1995-12-25|COLLECT COD|TRUCK|uickly according to the perm| +63529|639367|26904|3|44|57478.52|0.06|0.07|N|O|1996-01-07|1995-12-01|1996-01-24|DELIVER IN PERSON|REG AIR|uests. ironic foxes hagg| +63529|832991|8024|4|19|36555.05|0.09|0.05|N|O|1995-11-04|1995-12-26|1995-11-24|TAKE BACK RETURN|AIR|kages sleep blithe| +63529|79412|29413|5|48|66787.68|0.07|0.00|N|O|1996-01-02|1995-11-24|1996-01-26|TAKE BACK RETURN|AIR|nstructions. final, regular accou| +63530|542069|4580|1|32|35553.28|0.01|0.08|N|O|1996-07-04|1996-07-04|1996-07-25|TAKE BACK RETURN|MAIL|sts wake slow depend| +63530|547485|22506|2|43|65895.78|0.01|0.04|N|O|1996-06-17|1996-06-30|1996-07-09|NONE|MAIL|thely unusual platelets haggle. th| +63531|487053|37054|1|39|40561.17|0.04|0.06|N|O|1998-08-31|1998-08-25|1998-09-23|COLLECT COD|MAIL|y pending packages. carefully e| +63531|894741|44742|2|25|43392.50|0.05|0.03|N|O|1998-09-15|1998-09-30|1998-09-21|TAKE BACK RETURN|RAIL|daring requests wake according t| +63531|908929|8930|3|44|85266.72|0.00|0.01|N|O|1998-07-10|1998-09-21|1998-07-23|TAKE BACK RETURN|REG AIR|ial attainments. courts use f| +63531|360486|48008|4|27|41754.69|0.01|0.05|N|O|1998-08-06|1998-09-25|1998-08-31|COLLECT COD|FOB| quickly express| +63531|675211|12751|5|18|21351.24|0.05|0.00|N|O|1998-09-26|1998-08-15|1998-10-07|TAKE BACK RETURN|AIR|nic, unusual foxes wake among the pe| +63531|261911|11912|6|5|9364.50|0.02|0.05|N|O|1998-11-01|1998-10-01|1998-11-30|COLLECT COD|SHIP|s haggle quickly? bold deposits are | +63531|931467|6504|7|10|14984.20|0.00|0.03|N|O|1998-08-14|1998-09-09|1998-08-17|NONE|AIR|ly final packages-| +63532|151209|26216|1|15|18903.00|0.00|0.00|R|F|1995-01-01|1994-11-23|1995-01-27|TAKE BACK RETURN|FOB|l, bold requests boost along the perman| +63532|361048|36063|2|14|15526.42|0.07|0.04|A|F|1995-01-01|1994-11-03|1995-01-08|NONE|FOB|y ironic re| +63532|131977|19484|3|39|78349.83|0.09|0.02|A|F|1994-11-08|1994-11-11|1994-11-12|TAKE BACK RETURN|RAIL|symptotes. express requests at| +63532|133618|8623|4|29|47896.69|0.00|0.07|R|F|1995-01-27|1994-12-25|1995-02-08|COLLECT COD|AIR| blithely express instruction| +63532|709987|9988|5|33|65899.35|0.06|0.01|R|F|1994-12-05|1994-12-24|1994-12-25|NONE|RAIL|des? furiously regular foxes| +63532|737265|24808|6|45|58600.35|0.03|0.04|R|F|1995-01-24|1994-11-22|1995-02-18|COLLECT COD|FOB|egular pains haggle blithely fin| +63533|114960|39965|1|46|90848.16|0.00|0.04|N|O|1997-11-02|1997-11-27|1997-11-20|COLLECT COD|REG AIR|the final, specia| +63533|131327|18834|2|34|46182.88|0.06|0.05|N|O|1997-11-14|1997-11-17|1997-12-08|NONE|MAIL|gle blithely boldly pendi| +63533|203538|28547|3|42|60543.84|0.05|0.05|N|O|1998-01-10|1997-11-29|1998-02-08|TAKE BACK RETURN|FOB|quickly regul| +63533|849662|12179|4|10|16116.20|0.08|0.08|N|O|1997-12-20|1997-11-17|1998-01-07|NONE|MAIL|ts boost furiously after the fluffily re| +63533|256842|44358|5|11|19787.13|0.01|0.01|N|O|1997-10-14|1997-10-28|1997-10-23|TAKE BACK RETURN|FOB|lar instructions use carefully according | +63533|728735|28736|6|11|19400.70|0.10|0.08|N|O|1997-11-09|1997-11-28|1997-11-20|DELIVER IN PERSON|SHIP|s haggle slyly ironic | +63533|841440|41441|7|2|2762.80|0.01|0.01|N|O|1997-09-26|1997-10-25|1997-10-11|NONE|TRUCK|uffily regular, even | +63534|81518|19022|1|43|64478.93|0.04|0.08|N|O|1998-07-04|1998-07-31|1998-07-18|NONE|MAIL| carefully regu| +63535|952441|14961|1|13|19414.20|0.02|0.08|N|O|1995-09-15|1995-10-06|1995-09-18|DELIVER IN PERSON|SHIP| regular requests sleep blithely.| +63535|666189|16190|2|11|12706.65|0.01|0.04|N|O|1995-10-12|1995-09-10|1995-11-03|DELIVER IN PERSON|REG AIR|ses are furiously special deposits. speci| +63535|626930|39443|3|3|5570.70|0.04|0.05|N|O|1995-07-26|1995-09-29|1995-08-24|DELIVER IN PERSON|REG AIR|al excuses. slyly unusual pack| +63560|735695|10724|1|41|70957.06|0.04|0.07|R|F|1992-07-04|1992-05-02|1992-07-12|DELIVER IN PERSON|REG AIR|ic, regular accoun| +63561|322646|10165|1|33|55064.79|0.05|0.05|N|O|1997-02-19|1997-02-21|1997-03-01|NONE|TRUCK|luffy packages. fluffily even pack| +63561|694881|19908|2|44|82537.40|0.06|0.02|N|O|1996-12-07|1997-01-12|1996-12-25|COLLECT COD|AIR| express packages.| +63561|858220|8221|3|44|51839.92|0.01|0.00|N|O|1997-01-09|1997-02-16|1997-01-23|COLLECT COD|MAIL|ally express deposi| +63561|100195|37702|4|43|51393.17|0.05|0.03|N|O|1997-02-06|1997-01-30|1997-02-25|DELIVER IN PERSON|AIR|ecial pack| +63562|131508|6513|1|20|30790.00|0.00|0.00|N|O|1997-02-10|1997-01-11|1997-02-18|DELIVER IN PERSON|REG AIR|tructions | +63563|901081|26118|1|5|5410.20|0.03|0.06|R|F|1994-01-06|1994-02-26|1994-01-09|COLLECT COD|REG AIR|en orbits. quickly regular pinto beans | +63563|463005|25515|2|39|37751.22|0.09|0.01|A|F|1994-03-11|1994-03-22|1994-03-15|NONE|MAIL|g furiousl| +63563|724683|37198|3|30|51229.50|0.04|0.08|R|F|1994-03-17|1994-02-26|1994-04-05|TAKE BACK RETURN|RAIL|eep unusual excus| +63563|746776|46777|4|15|27341.10|0.10|0.03|A|F|1994-04-05|1994-02-11|1994-04-10|NONE|FOB|ng instructions use slyly u| +63563|62816|12817|5|14|24903.34|0.08|0.04|R|F|1994-02-02|1994-03-13|1994-02-21|NONE|AIR|lyly unusual pinto beans sleep. carefully p| +63563|742558|30101|6|37|59219.24|0.07|0.06|R|F|1994-01-26|1994-03-17|1994-01-29|NONE|AIR|yly pending foxes-- ironic fo| +63564|143744|6247|1|49|87599.26|0.04|0.01|N|O|1996-05-11|1996-03-28|1996-06-09|NONE|RAIL|ronic theodolites about | +63564|893690|31242|2|27|45458.55|0.04|0.03|N|O|1996-04-28|1996-04-03|1996-05-10|TAKE BACK RETURN|FOB| pending packages. evenly sp| +63564|233575|46080|3|13|19611.28|0.01|0.05|N|O|1996-05-09|1996-03-14|1996-05-17|NONE|TRUCK| bold packag| +63564|684383|9410|4|30|41020.50|0.03|0.04|N|O|1996-03-03|1996-04-14|1996-03-22|TAKE BACK RETURN|RAIL|eposits hang furiously bold, careful foxes-| +63564|413774|38791|5|32|54008.00|0.08|0.03|N|O|1996-05-30|1996-04-19|1996-06-18|DELIVER IN PERSON|AIR|olites play slyly quickly| +63565|842275|29824|1|50|60861.50|0.08|0.02|R|F|1994-07-07|1994-06-27|1994-07-14|NONE|RAIL|the slyly dogged sheaves. quickly regula| +63565|106183|43690|2|47|55891.46|0.05|0.00|R|F|1994-04-15|1994-06-24|1994-05-14|COLLECT COD|REG AIR| foxes. slyly pending| +63565|616272|3809|3|49|58223.76|0.02|0.08|R|F|1994-07-02|1994-06-05|1994-07-23|DELIVER IN PERSON|SHIP| are blithely among the furiously final d| +63565|676006|13546|4|38|37314.86|0.04|0.01|A|F|1994-05-30|1994-06-13|1994-06-18|DELIVER IN PERSON|AIR|uctions are pending, even packages. pen| +63566|62548|37551|1|5|7552.70|0.05|0.01|N|O|1995-11-01|1995-09-30|1995-11-15|DELIVER IN PERSON|SHIP|dolites are | +63566|232316|44821|2|47|58670.10|0.04|0.00|N|O|1995-11-20|1995-09-20|1995-11-30|NONE|TRUCK| sleep! final, ironic the| +63566|522334|47355|3|21|28482.51|0.00|0.02|N|O|1995-11-25|1995-10-05|1995-12-05|NONE|MAIL|fully. even requests wake slyly express | +63567|165985|28489|1|7|14356.86|0.04|0.01|N|O|1998-05-30|1998-06-17|1998-06-05|TAKE BACK RETURN|TRUCK| slyly final accounts. furiously reg| +63567|702616|40159|2|43|69598.94|0.00|0.00|N|O|1998-08-16|1998-06-04|1998-08-26|NONE|MAIL|nts. unusual requests nag slyly after t| +63567|855748|30783|3|43|73259.10|0.05|0.05|N|O|1998-06-03|1998-06-28|1998-06-23|COLLECT COD|TRUCK|tes. courts wake amon| +63567|542659|17680|4|6|10209.78|0.07|0.01|N|O|1998-07-15|1998-07-11|1998-07-22|TAKE BACK RETURN|AIR|ic accounts nag qu| +63567|460951|48479|5|7|13383.51|0.01|0.01|N|O|1998-08-02|1998-06-21|1998-08-10|DELIVER IN PERSON|AIR|ns sleep slyly regular ideas. daringly exp| +63567|194046|44047|6|15|17100.60|0.09|0.05|N|O|1998-05-13|1998-07-12|1998-05-29|COLLECT COD|REG AIR|c accounts should are af| +63592|132418|32419|1|34|49313.94|0.05|0.01|N|O|1998-04-04|1998-03-06|1998-04-17|COLLECT COD|SHIP| slyly regular foxes. slyly | +63592|540650|3161|2|14|23668.82|0.08|0.03|N|O|1998-01-27|1998-02-09|1998-02-20|TAKE BACK RETURN|FOB|. unusual | +63592|703441|15956|3|31|44776.71|0.10|0.01|N|O|1998-03-16|1998-03-13|1998-04-10|DELIVER IN PERSON|TRUCK|kages. fluffily unusual packages| +63592|726297|1326|4|26|34404.76|0.08|0.04|N|O|1998-02-06|1998-02-09|1998-03-05|COLLECT COD|MAIL|luffily unusual accounts | +63593|169215|6725|1|26|33389.46|0.09|0.08|N|O|1997-11-01|1997-10-01|1997-11-03|NONE|MAIL|the slyly pending theodol| +63593|995000|45001|2|30|32848.80|0.04|0.03|N|O|1997-10-21|1997-10-20|1997-10-30|DELIVER IN PERSON|MAIL|ickly regular epitap| +63593|961254|36293|3|4|5260.84|0.02|0.06|N|O|1997-09-23|1997-10-16|1997-09-28|DELIVER IN PERSON|MAIL|nto beans. fluffily furious p| +63593|779311|4342|4|7|9731.96|0.09|0.03|N|O|1997-11-30|1997-09-25|1997-12-21|COLLECT COD|TRUCK|are carefully ironically pendin| +63593|877618|15170|5|1|1595.57|0.02|0.07|N|O|1997-10-04|1997-10-08|1997-10-06|TAKE BACK RETURN|MAIL|. blithely regular packages use careful| +63593|124370|49375|6|20|27887.40|0.01|0.08|N|O|1997-11-29|1997-09-06|1997-12-13|NONE|TRUCK| accounts sleep blithe| +63593|279694|29695|7|45|75315.60|0.03|0.02|N|O|1997-11-13|1997-10-13|1997-11-19|DELIVER IN PERSON|SHIP|gular packages sleep. final| +63594|810006|35039|1|48|43966.08|0.04|0.08|N|O|1997-05-05|1997-03-08|1997-05-13|COLLECT COD|RAIL|lithely silen| +63594|756685|19201|2|34|59216.10|0.03|0.01|N|O|1997-04-13|1997-03-14|1997-05-01|COLLECT COD|TRUCK|ily. carefully regu| +63594|593334|5846|3|7|9991.17|0.09|0.03|N|O|1997-02-11|1997-03-14|1997-03-08|TAKE BACK RETURN|MAIL| above the| +63594|161657|24161|4|47|80776.55|0.10|0.07|N|O|1997-02-12|1997-02-13|1997-02-13|NONE|FOB|to the quickl| +63594|956756|44314|5|40|72508.40|0.07|0.00|N|O|1997-05-06|1997-03-22|1997-05-31|NONE|FOB|gular, unusual accounts eng| +63594|192628|5132|6|7|12044.34|0.01|0.02|N|O|1997-03-26|1997-04-01|1997-04-19|DELIVER IN PERSON|RAIL|es outside | +63594|496621|46622|7|14|22646.40|0.07|0.08|N|O|1997-05-03|1997-02-16|1997-05-11|NONE|AIR|jole furiously among the the| +63595|702877|40420|1|14|26317.76|0.08|0.05|R|F|1995-03-15|1995-02-19|1995-04-14|NONE|TRUCK|have to boost among t| +63595|238084|25597|2|20|20441.40|0.07|0.02|R|F|1995-04-01|1995-02-27|1995-04-30|TAKE BACK RETURN|REG AIR|thely final pint| +63595|469441|31951|3|37|52185.54|0.08|0.05|R|F|1995-04-24|1995-04-01|1995-05-23|TAKE BACK RETURN|FOB|t requests wa| +63596|938277|25832|1|35|46033.05|0.10|0.05|R|F|1992-06-22|1992-05-23|1992-07-22|TAKE BACK RETURN|MAIL|oxes detect sl| +63596|607328|44865|2|44|54352.76|0.03|0.03|A|F|1992-08-04|1992-07-08|1992-08-08|TAKE BACK RETURN|SHIP|bold instructions. quickly | +63597|475430|25431|1|20|28108.20|0.07|0.02|N|O|1997-11-18|1997-09-29|1997-11-20|COLLECT COD|SHIP|tions wake slyly along the sp| +63597|536489|11510|2|17|25932.82|0.03|0.05|N|O|1997-11-18|1997-10-10|1997-11-27|COLLECT COD|SHIP|fter the furiously final requests. bli| +63597|754068|41614|3|1|1122.03|0.04|0.03|N|O|1997-11-27|1997-10-10|1997-12-02|DELIVER IN PERSON|RAIL|e bold theodolites. fu| +63597|619486|31999|4|2|2810.90|0.02|0.04|N|O|1997-11-02|1997-11-03|1997-11-12|DELIVER IN PERSON|REG AIR|nal theodolites. furiously | +63597|685248|47762|5|14|17264.94|0.00|0.08|N|O|1997-09-13|1997-09-30|1997-09-26|COLLECT COD|SHIP|equests sleep. furiou| +63598|940653|40654|1|28|47421.08|0.02|0.04|N|O|1997-06-29|1997-09-17|1997-07-07|NONE|FOB|e ideas. enticing dep| +63598|539757|2268|2|6|10780.38|0.04|0.00|N|O|1997-09-07|1997-08-04|1997-09-19|COLLECT COD|SHIP| alongside of the s| +63598|687941|12968|3|33|63654.03|0.02|0.07|N|O|1997-09-15|1997-08-16|1997-09-18|NONE|AIR|pending instructions. bus| +63599|891428|3946|1|49|69549.62|0.07|0.06|N|O|1998-04-08|1998-02-03|1998-04-15|DELIVER IN PERSON|AIR| carefully express requests. ironic acc| +63599|229313|16826|2|41|50934.30|0.05|0.02|N|O|1997-12-18|1998-01-22|1997-12-23|DELIVER IN PERSON|AIR|ckly blithe packages ab| +63599|50494|495|3|38|54890.62|0.10|0.01|N|O|1998-03-04|1998-02-06|1998-03-15|TAKE BACK RETURN|AIR|counts! evenly regular d| +63599|639594|27131|4|8|12268.48|0.06|0.01|N|O|1998-03-24|1998-03-09|1998-04-20|COLLECT COD|TRUCK|uriously regular foxes integrat| +63624|978192|28193|1|26|33023.90|0.10|0.06|N|O|1996-04-19|1996-06-12|1996-04-27|DELIVER IN PERSON|AIR|use across the furi| +63625|656503|19017|1|1|1459.47|0.01|0.04|R|F|1992-11-27|1992-12-29|1992-12-20|COLLECT COD|TRUCK|es! slyly even court| +63625|832181|32182|2|41|45638.74|0.07|0.08|R|F|1993-02-06|1993-01-03|1993-02-15|COLLECT COD|REG AIR|cies snooze. requests nag blithely clos| +63625|452506|15016|3|25|36462.00|0.04|0.07|A|F|1993-01-25|1992-12-16|1993-02-06|NONE|TRUCK| according t| +63625|253588|3589|4|12|18498.84|0.07|0.07|R|F|1992-11-23|1993-01-11|1992-11-28|COLLECT COD|FOB|odolites. caref| +63625|52984|40488|5|28|54235.44|0.10|0.03|A|F|1993-01-30|1992-12-17|1993-02-22|NONE|SHIP|ng request| +63625|488920|26448|6|47|89718.30|0.08|0.05|R|F|1992-12-18|1992-11-28|1992-12-22|TAKE BACK RETURN|MAIL|y bold instructions sublate slyly blith| +63625|273763|11279|7|29|50365.75|0.00|0.07|A|F|1992-10-29|1992-12-18|1992-11-17|COLLECT COD|MAIL|y above the quickly regular in| +63626|122097|34600|1|33|36929.97|0.10|0.05|N|O|1997-03-13|1997-05-16|1997-04-04|COLLECT COD|REG AIR|ly. carefully final i| +63626|72479|9983|2|12|17417.64|0.05|0.05|N|O|1997-06-04|1997-04-20|1997-06-21|NONE|MAIL|e slyly final ideas! furiously re| +63626|138194|13199|3|31|38197.89|0.03|0.01|N|O|1997-04-03|1997-04-12|1997-04-13|DELIVER IN PERSON|FOB|ffily insi| +63626|625290|37803|4|23|27950.98|0.10|0.00|N|O|1997-06-14|1997-05-10|1997-07-10|COLLECT COD|FOB|usual courts sleep| +63626|236253|23766|5|41|48758.84|0.06|0.08|N|O|1997-06-22|1997-05-20|1997-07-16|NONE|TRUCK|nts according to the unusual requests caj| +63627|103649|3650|1|18|29747.52|0.09|0.08|N|O|1995-09-15|1995-10-31|1995-09-18|TAKE BACK RETURN|SHIP|onic requests: furiously regular the| +63627|26525|26526|2|21|30481.92|0.01|0.04|N|O|1995-12-16|1995-11-25|1996-01-01|NONE|FOB|y bold requests after the fluffily iron| +63627|788968|26514|3|20|41138.60|0.04|0.02|N|O|1995-10-04|1995-11-23|1995-10-24|COLLECT COD|AIR|equests. slyly ironic dependen| +63627|181185|31186|4|21|26589.78|0.07|0.08|N|O|1995-09-18|1995-11-06|1995-10-04|COLLECT COD|SHIP|y regular requests accordi| +63627|167932|42939|5|10|19999.30|0.04|0.05|N|O|1995-09-14|1995-11-13|1995-10-01|COLLECT COD|TRUCK|usual ideas. furiously ironic foxes nag sl| +63627|431193|31194|6|24|26980.08|0.04|0.08|N|O|1995-10-30|1995-10-07|1995-11-25|NONE|MAIL|platelets nag blithely | +63628|569595|7129|1|37|61589.09|0.02|0.06|A|F|1993-08-06|1993-08-12|1993-08-28|COLLECT COD|FOB|encies sleep blithely above the furiously s| +63628|176733|14243|2|2|3619.46|0.10|0.04|A|F|1993-09-24|1993-08-20|1993-10-21|TAKE BACK RETURN|MAIL| across the furious| +63628|341542|29061|3|40|63341.20|0.02|0.00|A|F|1993-07-16|1993-07-30|1993-07-20|NONE|RAIL|ic pinto beans. bold, pendin| +63628|288625|1131|4|28|45181.08|0.03|0.04|A|F|1993-10-24|1993-08-06|1993-10-31|NONE|MAIL| final pinto beans. special, qui| +63628|908021|45576|5|48|49391.04|0.06|0.05|R|F|1993-08-23|1993-08-19|1993-09-06|DELIVER IN PERSON|RAIL|ggle. final packag| +63629|258100|8101|1|7|7406.63|0.10|0.04|N|O|1996-03-05|1996-02-09|1996-03-16|DELIVER IN PERSON|SHIP|t ideas. bravely final accounts against| +63629|886698|11733|2|45|75809.25|0.05|0.02|N|O|1996-01-27|1996-03-25|1996-02-13|TAKE BACK RETURN|MAIL| promise. furiously regular ideas| +63629|728662|28663|3|25|42265.75|0.09|0.01|N|O|1996-04-01|1996-03-29|1996-04-07|TAKE BACK RETURN|RAIL| accounts haggle quickly f| +63629|621646|34159|4|25|39190.25|0.06|0.06|N|O|1996-01-25|1996-03-08|1996-02-22|NONE|REG AIR|ounts. slyly even requests sleep q| +63629|996471|46472|5|33|51725.19|0.05|0.03|N|O|1996-03-26|1996-03-30|1996-04-24|COLLECT COD|RAIL| boost carefully even excuse| +63630|92725|42726|1|12|20612.64|0.08|0.04|N|O|1996-12-05|1996-12-29|1996-12-25|NONE|AIR|beans above the ironic | +63630|414455|14456|2|4|5477.72|0.03|0.06|N|O|1997-01-31|1996-11-15|1997-02-06|DELIVER IN PERSON|REG AIR|blithely final excuses sleep | +63631|130150|5155|1|4|4720.60|0.02|0.02|R|F|1993-02-18|1993-02-27|1993-03-18|TAKE BACK RETURN|TRUCK|bove the blithe| +63656|482937|7956|1|28|53757.48|0.10|0.01|N|O|1997-05-13|1997-04-26|1997-05-28|TAKE BACK RETURN|SHIP|carefully e| +63656|719256|19257|2|50|63761.00|0.04|0.04|N|O|1997-03-11|1997-05-26|1997-04-10|DELIVER IN PERSON|RAIL| cajole after the requests. fu| +63657|561706|11707|1|11|19444.48|0.01|0.03|N|O|1996-07-14|1996-08-05|1996-08-03|NONE|RAIL|ealms cajole carefull| +63657|588669|26203|2|12|21091.68|0.06|0.07|N|O|1996-05-10|1996-06-14|1996-06-06|DELIVER IN PERSON|AIR|e quickly along the careful| +63657|759664|9665|3|42|72392.46|0.06|0.06|N|O|1996-07-27|1996-06-28|1996-08-14|COLLECT COD|TRUCK|into beans. even, regular accounts sleep fu| +63657|671070|33584|4|6|6246.24|0.01|0.05|N|O|1996-08-12|1996-07-04|1996-08-30|DELIVER IN PERSON|TRUCK|aggle furiously packa| +63657|669030|6570|5|21|20979.00|0.02|0.01|N|O|1996-05-12|1996-07-13|1996-05-15|COLLECT COD|SHIP| special asymp| +63658|147021|9524|1|2|2136.04|0.07|0.07|A|F|1994-05-31|1994-04-24|1994-06-04|NONE|AIR|ong the furiously special platele| +63659|157573|20077|1|10|16305.70|0.08|0.00|R|F|1994-04-29|1994-05-10|1994-05-23|NONE|SHIP|blithely. ironic deposits wake slyly. re| +63659|323223|10742|2|23|28662.83|0.02|0.03|R|F|1994-05-16|1994-05-15|1994-05-27|TAKE BACK RETURN|SHIP|nal deposits haggle slyly | +63659|402600|27617|3|12|18030.96|0.08|0.03|R|F|1994-04-30|1994-04-24|1994-05-30|DELIVER IN PERSON|SHIP|cial asymptotes affix careful| +63659|489104|26632|4|50|54654.00|0.06|0.08|R|F|1994-06-26|1994-05-24|1994-06-27|DELIVER IN PERSON|SHIP|theodolites integrate carefully alongside o| +63659|363371|38386|5|37|53071.32|0.09|0.05|A|F|1994-04-04|1994-04-15|1994-04-17|TAKE BACK RETURN|REG AIR|ove the silent braids. regular, iro| +63660|992124|17163|1|17|20673.36|0.09|0.01|R|F|1993-03-23|1993-05-11|1993-03-27|TAKE BACK RETURN|SHIP|r instructions are furiously| +63660|614836|14837|2|40|70032.00|0.07|0.04|R|F|1993-03-19|1993-05-18|1993-04-01|TAKE BACK RETURN|AIR| packages boost slyly. f| +63661|520597|33108|1|14|22645.98|0.06|0.02|R|F|1994-01-28|1994-03-17|1994-02-06|DELIVER IN PERSON|MAIL|. regular, | +63661|662970|510|2|50|96647.00|0.07|0.04|R|F|1994-03-10|1994-01-25|1994-04-04|COLLECT COD|RAIL|are carefully quiet, slow| +63661|526652|39163|3|25|41965.75|0.07|0.03|A|F|1994-04-20|1994-02-15|1994-05-12|COLLECT COD|TRUCK|ously regula| +63662|346814|21827|1|21|39076.80|0.09|0.05|N|O|1995-12-15|1995-11-29|1996-01-03|NONE|AIR|ng asymptotes| +63662|901658|26695|2|36|59745.96|0.01|0.01|N|O|1996-01-20|1995-11-20|1996-02-04|TAKE BACK RETURN|FOB|sts snooze final,| +63663|185862|35863|1|44|85705.84|0.06|0.02|N|O|1998-05-24|1998-03-31|1998-06-06|TAKE BACK RETURN|TRUCK|ounts will snooze carefully about the sly| +63688|886758|49276|1|24|41873.04|0.03|0.06|N|O|1996-07-02|1996-06-10|1996-07-28|NONE|AIR|y. fluffily ironic packag| +63688|727041|27042|2|20|21360.20|0.00|0.02|N|O|1996-04-29|1996-04-25|1996-05-04|NONE|REG AIR|r packages. quickly e| +63688|371128|8650|3|10|11991.10|0.00|0.03|N|O|1996-06-08|1996-05-25|1996-06-22|TAKE BACK RETURN|RAIL|sts wake. blithely regular sentiments a| +63689|707967|7968|1|19|37523.67|0.01|0.00|R|F|1993-07-01|1993-07-28|1993-07-20|COLLECT COD|RAIL|s boost quic| +63689|785301|47817|2|43|59609.61|0.05|0.06|A|F|1993-06-26|1993-07-05|1993-07-16|DELIVER IN PERSON|FOB|sual accounts. careful| +63689|546492|9003|3|50|76923.50|0.05|0.00|R|F|1993-09-08|1993-07-20|1993-09-17|NONE|RAIL|ironic foxes. slyly iron| +63689|886480|48998|4|33|48392.52|0.01|0.01|A|F|1993-07-06|1993-06-29|1993-07-16|TAKE BACK RETURN|AIR|platelets play evenly special platel| +63690|655011|30038|1|37|35741.26|0.09|0.00|A|F|1995-03-03|1995-03-27|1995-03-21|DELIVER IN PERSON|RAIL|grate slyly fu| +63690|757253|19769|2|19|24894.18|0.08|0.00|R|F|1995-02-12|1995-04-12|1995-02-25|NONE|RAIL|ending, unusual packages wake bli| +63690|138460|38461|3|26|38959.96|0.02|0.06|R|F|1995-05-08|1995-04-08|1995-05-19|NONE|MAIL|ously bold theodolites. c| +63690|94992|44993|4|20|39739.80|0.05|0.04|R|F|1995-03-20|1995-03-14|1995-03-26|TAKE BACK RETURN|REG AIR|ind special deposits. expre| +63691|735073|35074|1|23|25484.92|0.09|0.03|R|F|1994-03-30|1994-05-25|1994-04-09|COLLECT COD|SHIP|ts. blithely even| +63692|415014|15015|1|9|8360.91|0.01|0.05|N|O|1996-02-07|1996-02-16|1996-02-20|TAKE BACK RETURN|SHIP|quickly ironic ideas. ironic| +63692|133620|46123|2|3|4960.86|0.07|0.05|N|O|1996-03-09|1996-03-09|1996-04-02|TAKE BACK RETURN|AIR|gainst the deposits. even, regular theodo| +63692|750441|442|3|20|29828.20|0.07|0.06|N|O|1996-02-29|1996-02-21|1996-03-02|NONE|AIR|xcuses haggle slyly. furiously unusual | +63692|656092|43632|4|46|48210.76|0.09|0.06|N|O|1996-01-23|1996-02-11|1996-02-12|DELIVER IN PERSON|REG AIR|ependencies wake afte| +63692|926036|13591|5|17|18053.83|0.04|0.05|N|O|1996-03-31|1996-01-27|1996-04-09|COLLECT COD|TRUCK|tes affix ca| +63692|877492|15044|6|40|58778.00|0.00|0.06|N|O|1996-03-14|1996-03-05|1996-04-07|COLLECT COD|AIR|y unusual packages. requests haggle slyly| +63692|5177|5178|7|5|5410.85|0.03|0.01|N|O|1996-04-12|1996-01-29|1996-04-22|COLLECT COD|REG AIR|heodolites. quickly pending pinto| +63693|3572|16073|1|13|19182.41|0.00|0.08|R|F|1994-12-01|1995-01-11|1994-12-14|COLLECT COD|SHIP|lly ironic requests. regul| +63693|23283|10784|2|14|16887.92|0.08|0.01|A|F|1995-01-24|1995-02-05|1995-02-12|TAKE BACK RETURN|RAIL|ts use slyly al| +63693|308563|46082|3|48|75434.40|0.01|0.06|A|F|1994-12-31|1995-01-31|1995-01-01|NONE|FOB|re according to the furiously final a| +63693|11857|11858|4|30|53065.50|0.02|0.06|A|F|1994-12-31|1995-01-19|1995-01-13|DELIVER IN PERSON|TRUCK|egular theodolites. c| +63694|333034|8047|1|3|3201.06|0.06|0.02|N|O|1995-09-10|1995-08-30|1995-09-24|TAKE BACK RETURN|FOB|s. slyly dogged | +63695|134456|34457|1|37|55146.65|0.01|0.00|N|O|1995-09-16|1995-07-03|1995-09-22|COLLECT COD|TRUCK|accounts? furi| +63695|792654|17685|2|3|5239.86|0.02|0.05|N|O|1995-08-16|1995-07-05|1995-08-23|COLLECT COD|FOB|tructions. furiously ironi| +63720|320498|33005|1|10|15184.80|0.05|0.07|N|O|1997-04-06|1997-05-12|1997-04-23|TAKE BACK RETURN|SHIP|lently pending instructions. furiously even| +63720|603133|40670|2|13|13469.30|0.07|0.03|N|O|1997-05-06|1997-05-15|1997-05-25|COLLECT COD|FOB| the carefully ironic pinto beans. unus| +63720|850544|25579|3|36|53802.00|0.00|0.04|N|O|1997-05-03|1997-03-31|1997-05-25|DELIVER IN PERSON|RAIL|egular acco| +63721|202292|27301|1|26|31051.28|0.00|0.01|A|F|1995-03-08|1995-03-06|1995-03-31|DELIVER IN PERSON|REG AIR|ickly regul| +63722|642773|42774|1|29|49756.46|0.05|0.07|N|O|1997-11-20|1997-10-15|1997-12-04|COLLECT COD|TRUCK|ously even| +63722|85684|10687|2|18|30054.24|0.01|0.07|N|O|1997-10-06|1997-10-23|1997-11-04|NONE|MAIL|integrate pin| +63722|90207|27711|3|28|33521.60|0.01|0.00|N|O|1997-08-08|1997-09-01|1997-08-23|DELIVER IN PERSON|TRUCK|tes. carefully regular| +63722|106589|6590|4|22|35102.76|0.02|0.04|N|O|1997-11-18|1997-10-18|1997-12-08|DELIVER IN PERSON|AIR|en braids boost blithely slyly bold foxes-| +63723|775831|38347|1|4|7627.20|0.00|0.00|A|F|1992-05-23|1992-03-25|1992-06-08|COLLECT COD|SHIP|regular foxes. furiously bold ins| +63723|384595|34596|2|43|72221.94|0.04|0.00|A|F|1992-05-21|1992-04-19|1992-06-09|COLLECT COD|AIR|ding asymptotes are blithely blithely iron| +63723|873372|10924|3|24|32287.92|0.05|0.08|A|F|1992-03-17|1992-05-09|1992-03-30|DELIVER IN PERSON|AIR|sly even ideas | +63723|754065|41611|4|46|51475.38|0.04|0.07|A|F|1992-06-01|1992-04-21|1992-06-04|DELIVER IN PERSON|REG AIR| the furiously | +63723|566681|41704|5|19|33205.54|0.03|0.02|R|F|1992-02-21|1992-03-28|1992-03-21|DELIVER IN PERSON|REG AIR|nstructions ca| +63724|274253|49264|1|6|7363.44|0.02|0.06|R|F|1994-04-24|1994-05-30|1994-05-13|COLLECT COD|REG AIR|of the blithely bold pin| +63724|360102|35117|2|49|56942.41|0.08|0.04|R|F|1994-04-27|1994-05-29|1994-05-06|NONE|REG AIR|requests nag slyly i| +63724|222127|22128|3|30|31473.30|0.06|0.05|A|F|1994-08-04|1994-05-27|1994-08-24|COLLECT COD|AIR|f the even ideas are brave deposits. | +63724|277916|27917|4|43|81437.70|0.05|0.01|A|F|1994-06-21|1994-06-02|1994-06-25|COLLECT COD|TRUCK|dencies. special accounts print blithely? s| +63724|919552|44589|5|4|6286.04|0.07|0.07|R|F|1994-07-14|1994-06-19|1994-07-21|COLLECT COD|TRUCK|fully ironic frays according to the entic| +63724|899284|11802|6|22|28231.28|0.09|0.07|R|F|1994-06-20|1994-06-21|1994-07-12|COLLECT COD|AIR|lyly even instructions affix acco| +63724|258018|33029|7|31|30256.00|0.09|0.06|A|F|1994-06-20|1994-06-29|1994-07-16|COLLECT COD|AIR|gularly according to the regular, s| +63725|495115|45116|1|18|19981.62|0.04|0.06|N|O|1997-05-29|1997-03-21|1997-06-09|NONE|FOB|ole blithely exp| +63725|389166|26688|2|11|13806.65|0.05|0.00|N|O|1997-04-30|1997-04-03|1997-05-18|NONE|SHIP|l dugouts wake across the unusua| +63725|706123|18638|3|9|10161.81|0.06|0.02|N|O|1997-03-29|1997-04-29|1997-04-14|COLLECT COD|AIR|al accounts serve furiously. ruthless, | +63726|515742|15743|1|19|33396.68|0.07|0.07|A|F|1994-12-02|1994-11-28|1994-12-29|DELIVER IN PERSON|SHIP|the instructions. furiously final| +63726|72796|35298|2|3|5306.37|0.07|0.05|R|F|1994-09-12|1994-10-06|1994-09-17|TAKE BACK RETURN|SHIP|ages. final, pending excuses must thr| +63726|481437|18965|3|1|1418.41|0.02|0.03|A|F|1994-10-24|1994-10-20|1994-11-03|TAKE BACK RETURN|TRUCK| the carefully bu| +63727|576217|38729|1|22|28450.18|0.07|0.02|N|O|1996-06-30|1996-04-30|1996-07-28|DELIVER IN PERSON|FOB| beans wak| +63752|723589|48618|1|10|16125.50|0.07|0.00|A|F|1993-10-11|1993-11-10|1993-10-31|TAKE BACK RETURN|REG AIR|mptotes wake carefully | +63752|351749|39271|2|33|59424.09|0.10|0.06|R|F|1993-08-26|1993-10-08|1993-09-03|DELIVER IN PERSON|RAIL|the quickly regular escapades. regular| +63752|829405|41922|3|43|57377.48|0.09|0.00|A|F|1993-09-11|1993-10-07|1993-09-28|TAKE BACK RETURN|TRUCK|t theodolites against the sp| +63752|793719|31265|4|25|45317.00|0.04|0.04|A|F|1993-12-16|1993-11-17|1994-01-10|COLLECT COD|TRUCK|iresias nag caref| +63752|28966|41467|5|39|73903.44|0.07|0.00|A|F|1993-12-18|1993-11-19|1993-12-23|COLLECT COD|SHIP|deas; carefully pending deposits detect | +63752|823835|11384|6|37|65075.23|0.09|0.02|A|F|1993-09-19|1993-10-07|1993-09-20|COLLECT COD|FOB|ove the slyly regular frays. evenly unusu| +63753|991026|16065|1|13|14520.74|0.04|0.06|N|O|1995-12-16|1996-01-05|1995-12-27|TAKE BACK RETURN|RAIL|- slyly even orbits wake furiously; fu| +63753|163638|26142|2|23|39137.49|0.08|0.04|N|O|1996-02-01|1995-11-30|1996-02-10|TAKE BACK RETURN|FOB| final, regular pinto bea| +63753|255163|42679|3|25|27953.75|0.02|0.06|N|O|1995-12-07|1996-01-07|1995-12-18|NONE|SHIP|nts. blithely| +63753|522187|47208|4|19|22974.04|0.08|0.07|N|O|1995-11-09|1995-12-01|1995-12-09|DELIVER IN PERSON|FOB|carefully pending accounts nod f| +63753|391461|28983|5|29|45021.05|0.04|0.03|N|O|1996-01-17|1996-01-17|1996-01-22|DELIVER IN PERSON|AIR|uests wake slyly. carefully bold theodolit| +63753|276114|26115|6|23|25072.30|0.08|0.06|N|O|1995-12-29|1995-12-18|1996-01-02|COLLECT COD|TRUCK|requests in| +63754|638837|13862|1|28|49722.40|0.10|0.03|N|O|1998-07-21|1998-08-21|1998-08-07|COLLECT COD|RAIL|ggle after the finally final foxes. bli| +63754|930152|5189|2|4|4728.44|0.04|0.05|N|O|1998-07-06|1998-09-14|1998-07-22|NONE|FOB|ing to the| +63754|57736|20238|3|49|82992.77|0.01|0.04|N|O|1998-09-30|1998-08-26|1998-10-25|TAKE BACK RETURN|AIR|ic theodolites wake fluffily. car| +63754|367396|42411|4|2|2926.76|0.04|0.04|N|O|1998-08-06|1998-08-15|1998-09-01|DELIVER IN PERSON|SHIP|uses of the ironic, regular pinto b| +63754|820871|33388|5|30|53754.90|0.06|0.05|N|O|1998-09-23|1998-08-02|1998-10-20|NONE|RAIL|symptotes wake al| +63754|367754|30262|6|33|60117.42|0.00|0.05|N|O|1998-07-10|1998-09-07|1998-07-23|TAKE BACK RETURN|FOB|onic deposits. regular| +63754|838832|38833|7|48|84997.92|0.09|0.01|N|O|1998-07-23|1998-08-21|1998-08-05|COLLECT COD|REG AIR|special pac| +63755|245342|20351|1|19|24459.27|0.01|0.03|N|O|1996-10-05|1996-09-27|1996-10-20|COLLECT COD|SHIP|arefully special p| +63755|461649|11650|2|15|24159.30|0.02|0.02|N|O|1996-12-13|1996-10-15|1996-12-27|NONE|FOB|. even excuses snooze r| +63755|925883|920|3|34|64900.56|0.04|0.08|N|O|1996-09-04|1996-11-16|1996-10-03|DELIVER IN PERSON|RAIL|n ideas sleep carefully around the sl| +63755|304581|4582|4|16|25369.12|0.03|0.06|N|O|1996-09-05|1996-11-05|1996-10-05|NONE|MAIL|ainst the deposits. furiously ironic accou| +63755|88863|1365|5|34|62963.24|0.09|0.06|N|O|1996-08-27|1996-11-21|1996-09-22|TAKE BACK RETURN|TRUCK|packages. blithely steal| +63756|612031|49568|1|38|35834.00|0.10|0.06|A|F|1992-11-14|1992-09-17|1992-11-28|COLLECT COD|SHIP|uffily bold tithes. quickly pendi| +63756|398311|10819|2|31|43688.30|0.00|0.08|A|F|1992-10-11|1992-10-29|1992-10-23|NONE|REG AIR|eep. furiously pending| +63756|398484|23499|3|40|63298.80|0.01|0.00|A|F|1992-11-20|1992-10-28|1992-11-23|DELIVER IN PERSON|REG AIR|dependencies could wake careful| +63756|306950|44469|4|22|43052.68|0.02|0.06|R|F|1992-08-27|1992-10-14|1992-09-23|COLLECT COD|RAIL|ckages cajole! bold requests nag carefull| +63757|466649|4177|1|6|9693.72|0.04|0.01|A|F|1994-11-23|1994-10-24|1994-12-12|COLLECT COD|SHIP|ular multipliers | +63757|955309|5310|2|30|40927.80|0.04|0.05|A|F|1994-11-14|1994-09-03|1994-11-26|NONE|AIR|ly regular requests. fluffily final wat| +63757|863765|1317|3|25|43218.00|0.03|0.00|A|F|1994-10-27|1994-09-03|1994-11-03|TAKE BACK RETURN|SHIP|slyly ironic pinto beans| +63758|611488|36513|1|8|11195.60|0.09|0.07|A|F|1995-04-02|1995-01-28|1995-04-28|NONE|SHIP|es are alongside of the u| +63759|541841|4352|1|19|35773.58|0.02|0.03|R|F|1992-04-22|1992-04-06|1992-04-28|NONE|AIR| quickly bold account| +63784|444149|44150|1|36|39352.32|0.05|0.07|N|O|1996-03-07|1996-03-03|1996-03-15|DELIVER IN PERSON|SHIP|ost carefully about the carefully even| +63784|804712|42261|2|28|45266.76|0.07|0.06|N|O|1996-02-16|1996-01-13|1996-02-24|COLLECT COD|AIR| against the accounts haggle sly| +63784|785157|47673|3|37|45958.44|0.00|0.06|N|O|1996-03-24|1996-01-05|1996-04-13|DELIVER IN PERSON|FOB|carefully across the quic| +63785|367545|30053|1|6|9675.18|0.00|0.04|R|F|1992-05-02|1992-06-17|1992-05-12|TAKE BACK RETURN|SHIP|the bold packages| +63785|319987|19988|2|2|4013.94|0.00|0.03|A|F|1992-05-26|1992-06-07|1992-06-09|COLLECT COD|AIR|s. fluffily regular accounts around t| +63786|591431|41432|1|26|39582.66|0.07|0.01|N|O|1995-09-23|1995-11-04|1995-10-02|DELIVER IN PERSON|MAIL|s unwind. blithely ironic ideas ar| +63786|170253|32757|2|35|46313.75|0.07|0.07|N|O|1995-09-02|1995-11-09|1995-09-17|NONE|MAIL|al packages wake blithely ev| +63786|437817|326|3|23|40360.17|0.03|0.01|N|O|1995-12-02|1995-11-05|1995-12-18|COLLECT COD|REG AIR|es. carefully even requests will cajole| +63787|873284|23285|1|35|44003.40|0.10|0.06|R|F|1993-09-21|1993-10-22|1993-10-11|DELIVER IN PERSON|SHIP|ial packages. ironic packages boo| +63787|275234|245|2|30|36276.60|0.03|0.03|A|F|1993-12-07|1993-10-05|1993-12-30|TAKE BACK RETURN|RAIL|ironic ideas hagg| +63787|843922|6439|3|17|31719.96|0.01|0.00|R|F|1993-08-17|1993-09-13|1993-09-14|DELIVER IN PERSON|SHIP|ular instructions cajole ironic, f| +63788|906670|31707|1|10|16766.30|0.07|0.01|R|F|1994-01-18|1994-02-13|1994-02-09|COLLECT COD|TRUCK|e slyly final the| +63788|395340|32862|2|39|55977.87|0.00|0.02|A|F|1994-01-26|1994-01-22|1994-02-04|NONE|MAIL|s cajole against the slyly final fox| +63788|467187|17188|3|44|50783.04|0.02|0.05|A|F|1994-02-13|1994-01-26|1994-02-27|TAKE BACK RETURN|FOB|l accounts caj| +63789|132978|45481|1|25|50274.25|0.09|0.05|R|F|1995-01-19|1995-01-22|1995-02-18|DELIVER IN PERSON|TRUCK|ully regular theodolites use carefully| +63789|949214|11733|2|11|13894.87|0.05|0.07|R|F|1995-03-07|1995-01-19|1995-03-21|DELIVER IN PERSON|MAIL| regular pinto beans. car| +63789|433911|21436|3|28|51656.92|0.07|0.01|R|F|1994-12-02|1994-12-18|1994-12-09|COLLECT COD|REG AIR|y excuses. ironic accounts sleep| +63790|419133|31642|1|36|37875.96|0.01|0.04|R|F|1995-05-16|1995-06-25|1995-06-14|TAKE BACK RETURN|TRUCK|round the bold epitaphs are around the q| +63790|360760|35775|2|9|16386.75|0.03|0.08|A|F|1995-05-05|1995-06-21|1995-05-06|TAKE BACK RETURN|REG AIR|accounts eat theodo| +63790|287087|12098|3|13|13962.91|0.01|0.07|R|F|1995-05-13|1995-07-06|1995-06-12|COLLECT COD|TRUCK|le carefully carefully | +63790|60481|47985|4|24|34595.52|0.08|0.06|N|F|1995-06-17|1995-06-12|1995-06-20|TAKE BACK RETURN|FOB|mold through the unusual in| +63790|502098|14609|5|42|46202.94|0.05|0.06|A|F|1995-05-14|1995-07-20|1995-05-24|COLLECT COD|RAIL|gle. blithe | +63790|749048|11563|6|18|19746.18|0.10|0.02|N|O|1995-08-10|1995-07-28|1995-09-07|COLLECT COD|FOB|ges boost iron| +63791|87542|12545|1|8|12236.32|0.06|0.07|N|O|1998-09-27|1998-07-22|1998-10-20|TAKE BACK RETURN|AIR|lways: slyly regular | +63791|302793|40312|2|39|70035.42|0.06|0.00|N|O|1998-09-22|1998-08-19|1998-10-12|NONE|RAIL|ckages haggle slyly among the slyly | +63791|37155|49656|3|42|45870.30|0.09|0.05|N|O|1998-06-19|1998-07-23|1998-07-13|NONE|AIR|xes sleep about the theodolites. excus| +63791|447518|10027|4|17|24913.33|0.07|0.02|N|O|1998-07-14|1998-08-25|1998-07-26|TAKE BACK RETURN|MAIL|f the slyly iro| +63791|423688|11213|5|26|41903.16|0.07|0.08|N|O|1998-08-06|1998-08-04|1998-08-22|NONE|RAIL|s run above the| +63791|918171|18172|6|1|1189.13|0.05|0.02|N|O|1998-07-18|1998-09-10|1998-08-10|NONE|RAIL| the final, unusual deposits nag | +63791|694561|32101|7|17|26444.01|0.05|0.05|N|O|1998-09-15|1998-08-09|1998-10-03|COLLECT COD|AIR|arefully bold notornis according to | +63816|476903|1922|1|29|54516.52|0.06|0.01|A|F|1994-01-04|1994-01-08|1994-02-03|TAKE BACK RETURN|REG AIR| furiously final, ironic packag| +63816|295521|20532|2|16|24264.16|0.07|0.05|A|F|1994-03-11|1994-01-26|1994-04-08|NONE|TRUCK|r, ironic foxes haggle fluffily about the p| +63816|808371|45920|3|13|16631.29|0.10|0.01|A|F|1994-01-24|1994-01-09|1994-02-14|TAKE BACK RETURN|AIR| are blithely. slyly express courts | +63816|280462|30463|4|27|38946.15|0.07|0.01|A|F|1993-11-27|1994-01-21|1993-12-12|NONE|AIR|o beans. furiou| +63816|723593|11136|5|25|40414.00|0.05|0.02|A|F|1994-02-06|1994-01-15|1994-02-27|DELIVER IN PERSON|TRUCK|ges haggle sl| +63817|465832|40851|1|47|84497.07|0.10|0.03|N|O|1997-12-06|1997-11-20|1997-12-30|COLLECT COD|REG AIR|nts doubt fluffily accor| +63817|226159|38664|2|41|44490.74|0.06|0.07|N|O|1997-10-07|1997-12-16|1997-10-13|DELIVER IN PERSON|MAIL|cing requests! blithely regu| +63818|145966|45967|1|6|12071.76|0.01|0.07|R|F|1994-04-02|1994-03-22|1994-04-16|COLLECT COD|REG AIR|r requests boost furiously even deposits| +63818|250241|37757|2|19|22633.37|0.09|0.06|A|F|1994-03-10|1994-03-08|1994-03-16|NONE|REG AIR|taphs thrash furio| +63818|800117|12634|3|38|38648.66|0.09|0.04|R|F|1994-04-28|1994-04-04|1994-05-12|COLLECT COD|TRUCK|according | +63818|562098|37121|4|48|55683.36|0.00|0.04|A|F|1994-04-01|1994-05-01|1994-04-14|COLLECT COD|AIR|lar, regular ideas are| +63818|170716|20717|5|40|71468.40|0.03|0.01|A|F|1994-05-03|1994-03-24|1994-05-22|COLLECT COD|REG AIR|fily pending p| +63818|223333|23334|6|19|23870.08|0.05|0.07|R|F|1994-05-14|1994-03-22|1994-05-15|DELIVER IN PERSON|MAIL|uriously cl| +63819|557828|32851|1|6|11314.80|0.06|0.04|A|F|1995-05-20|1995-08-02|1995-06-08|DELIVER IN PERSON|SHIP|ly silent packages are carefully ironic, | +63820|450494|495|1|4|5777.88|0.04|0.06|A|F|1993-09-28|1993-08-20|1993-10-04|TAKE BACK RETURN|AIR| the furious| +63820|437553|25078|2|15|22357.95|0.06|0.05|A|F|1993-10-23|1993-08-27|1993-11-14|COLLECT COD|REG AIR|ress sentiments. final, express ide| +63820|945655|33210|3|28|47617.08|0.04|0.04|R|F|1993-08-12|1993-10-15|1993-09-01|DELIVER IN PERSON|RAIL|ar requests haggle a| +63821|607258|44795|1|2|2330.44|0.08|0.06|R|F|1993-06-01|1993-07-17|1993-06-22|TAKE BACK RETURN|SHIP|e furiously. pending wat| +63821|176210|13720|2|13|16720.73|0.01|0.07|R|F|1993-07-11|1993-07-20|1993-07-12|NONE|MAIL|ts according to the pend| +63821|553249|28272|3|26|33857.72|0.07|0.02|A|F|1993-06-01|1993-07-31|1993-06-12|COLLECT COD|MAIL|ular dolphins. boldly enti| +63821|454016|16526|4|1|969.99|0.01|0.08|A|F|1993-06-22|1993-07-11|1993-07-18|TAKE BACK RETURN|TRUCK|quickly express | +63821|646885|21910|5|23|42132.55|0.02|0.04|R|F|1993-08-22|1993-08-05|1993-09-20|TAKE BACK RETURN|TRUCK| final pinto bean| +63822|236099|23612|1|3|3105.24|0.09|0.01|N|O|1996-01-02|1996-01-13|1996-01-23|DELIVER IN PERSON|RAIL|e against the furiously even epitaph| +63822|110794|35799|2|30|54143.70|0.03|0.03|N|O|1996-02-25|1996-01-27|1996-03-13|DELIVER IN PERSON|TRUCK|s. slyly final accounts w| +63822|107173|32178|3|43|50747.31|0.00|0.03|N|O|1996-02-17|1995-12-23|1996-03-16|COLLECT COD|FOB| against the ironic requests. | +63822|253161|3162|4|29|32310.35|0.07|0.00|N|O|1995-12-16|1996-01-07|1996-01-10|NONE|MAIL|hely blith| +63822|866076|41111|5|36|37513.08|0.04|0.03|N|O|1995-11-14|1995-12-09|1995-11-29|NONE|SHIP|usly. regular excuses sle| +63823|457852|32871|1|45|81442.35|0.00|0.07|N|O|1997-06-13|1997-07-06|1997-06-17|COLLECT COD|MAIL|requests. slyly idle deposits hinder alo| +63823|114966|2473|2|4|7923.84|0.08|0.03|N|O|1997-08-05|1997-08-17|1997-08-07|NONE|AIR|ironic accounts cajole furi| +63823|231144|31145|3|45|48380.85|0.02|0.02|N|O|1997-08-17|1997-08-08|1997-08-26|DELIVER IN PERSON|AIR|regular dinos. sile| +63823|836488|49005|4|38|54128.72|0.00|0.01|N|O|1997-07-23|1997-08-02|1997-07-25|TAKE BACK RETURN|MAIL|p. accounts about the unusual packages| +63823|839941|2458|5|7|13166.30|0.01|0.00|N|O|1997-08-11|1997-07-08|1997-09-05|TAKE BACK RETURN|TRUCK|e quickly. b| +63823|880624|43142|6|2|3209.16|0.01|0.07|N|O|1997-07-17|1997-06-27|1997-07-20|DELIVER IN PERSON|TRUCK|sly regular theod| +63823|642081|4594|7|47|48083.35|0.06|0.07|N|O|1997-06-07|1997-08-24|1997-07-07|TAKE BACK RETURN|AIR|ully express packages. ironic, final| +63848|446903|46904|1|31|57346.28|0.03|0.08|N|O|1997-04-25|1997-03-01|1997-05-04|NONE|MAIL|the ruthless excuses cajole fluf| +63849|371387|33895|1|19|27709.03|0.00|0.02|N|O|1997-09-13|1997-10-19|1997-09-17|DELIVER IN PERSON|RAIL|ipliers haggle bl| +63849|885139|35140|2|20|22481.80|0.01|0.05|N|O|1997-08-11|1997-09-11|1997-09-04|TAKE BACK RETURN|SHIP|s. furiously final| +63849|515882|28393|3|20|37957.20|0.05|0.08|N|O|1997-09-25|1997-10-14|1997-10-22|DELIVER IN PERSON|AIR|ven requests caj| +63849|423196|48213|4|23|25740.91|0.09|0.07|N|O|1997-12-03|1997-10-17|1997-12-08|DELIVER IN PERSON|SHIP| regular, even requests boost fur| +63850|279548|4559|1|18|27495.54|0.05|0.08|R|F|1992-04-21|1992-06-13|1992-05-06|DELIVER IN PERSON|TRUCK|d instructions u| +63850|351814|14322|2|36|67168.80|0.02|0.03|A|F|1992-04-23|1992-07-06|1992-05-20|NONE|FOB|lyly regular deposi| +63850|921269|21270|3|2|2580.44|0.06|0.04|A|F|1992-05-14|1992-06-06|1992-05-28|NONE|MAIL|te packages. furiously ironic e| +63850|762081|49627|4|23|26290.15|0.02|0.00|R|F|1992-05-11|1992-05-19|1992-06-06|NONE|TRUCK| accounts cajole | +63850|283071|45577|5|25|26351.50|0.00|0.04|A|F|1992-04-28|1992-05-27|1992-04-29|COLLECT COD|REG AIR|. furiously| +63851|206070|43583|1|7|6832.42|0.02|0.01|N|O|1997-12-02|1997-12-08|1997-12-03|TAKE BACK RETURN|RAIL| regular packages wak| +63851|405091|17600|2|32|31874.24|0.09|0.00|N|O|1998-01-05|1998-01-06|1998-01-26|COLLECT COD|SHIP|onic instru| +63851|350678|38200|3|43|74332.38|0.00|0.07|N|O|1997-12-01|1997-11-18|1997-12-22|TAKE BACK RETURN|MAIL|ajole against the quie| +63852|445239|45240|1|34|40263.14|0.07|0.07|A|F|1995-02-06|1994-12-03|1995-02-10|COLLECT COD|RAIL|mes regular forges sleep blithel| +63852|119864|32367|2|9|16954.74|0.06|0.00|A|F|1994-12-28|1995-01-10|1995-01-18|NONE|RAIL|ons. special accounts use slyly afte| +63852|543903|6414|3|8|15575.04|0.00|0.02|R|F|1995-02-25|1995-01-08|1995-03-04|NONE|RAIL|ly ironic ideas are f| +63852|371069|46084|4|27|30781.35|0.08|0.07|A|F|1994-12-17|1994-12-31|1995-01-06|NONE|TRUCK|uriously brave warhorses after the requests| +63853|472741|35251|1|47|80544.84|0.10|0.04|R|F|1994-04-26|1994-04-28|1994-04-27|COLLECT COD|MAIL|wake slyly blithely unusu| +63853|347432|34951|2|7|10355.94|0.05|0.01|R|F|1994-02-22|1994-04-26|1994-02-23|DELIVER IN PERSON|MAIL|eas promise regul| +63853|273757|36263|3|18|31153.32|0.07|0.04|A|F|1994-03-17|1994-04-19|1994-03-20|TAKE BACK RETURN|MAIL|ully bold pa| +63854|725906|935|1|21|40569.27|0.06|0.05|N|O|1996-11-08|1996-11-14|1996-12-05|TAKE BACK RETURN|MAIL|ole slyly above th| +63855|288421|13432|1|26|36644.66|0.09|0.00|A|F|1993-05-04|1993-07-17|1993-05-19|COLLECT COD|SHIP|ly along the fluffily pendin| +63855|475109|12637|2|45|48783.60|0.10|0.08|A|F|1993-08-13|1993-06-16|1993-09-11|TAKE BACK RETURN|REG AIR|s. carefully even acc| +63855|148886|36393|3|17|32892.96|0.10|0.03|R|F|1993-07-09|1993-07-11|1993-07-28|COLLECT COD|MAIL|mptotes haggle! final, quic| +63855|324551|24552|4|45|70899.30|0.01|0.07|R|F|1993-06-25|1993-07-27|1993-06-30|COLLECT COD|REG AIR|ular, quick ideas against the fl| +63855|716134|16135|5|21|24152.10|0.08|0.07|R|F|1993-07-19|1993-07-21|1993-07-30|TAKE BACK RETURN|TRUCK|nal foxes x-ray carefully among the bo| +63880|253457|15963|1|25|35261.00|0.04|0.04|A|F|1994-04-08|1994-02-10|1994-04-15|TAKE BACK RETURN|SHIP|ully past the blithely final foxes. id| +63880|850252|253|2|49|58908.29|0.01|0.00|R|F|1994-03-11|1994-02-09|1994-03-27|NONE|REG AIR|the furiously bold excuses. f| +63880|178447|28448|3|49|74746.56|0.00|0.03|A|F|1994-01-03|1994-02-19|1994-01-04|TAKE BACK RETURN|RAIL|ccounts: qui| +63881|918056|30575|1|25|26850.25|0.09|0.06|N|O|1998-04-16|1998-05-18|1998-04-18|DELIVER IN PERSON|REG AIR|s ought to integrate blithely caref| +63881|761690|49236|2|24|42039.84|0.02|0.04|N|O|1998-05-23|1998-05-16|1998-06-13|TAKE BACK RETURN|REG AIR|hould haggle carefully. fin| +63881|720903|20904|3|7|13467.09|0.10|0.08|N|O|1998-05-31|1998-06-11|1998-06-15|NONE|AIR|lar attainments. slyly final accoun| +63882|860677|35712|1|47|76968.61|0.01|0.04|N|O|1997-05-09|1997-04-23|1997-05-30|DELIVER IN PERSON|SHIP|l attainments| +63882|390749|40750|2|36|66230.28|0.01|0.00|N|O|1997-03-15|1997-04-10|1997-03-25|COLLECT COD|AIR|ests. slyly regular accounts haggle. ironi| +63882|311779|36792|3|9|16116.84|0.06|0.00|N|O|1997-06-05|1997-05-22|1997-06-17|DELIVER IN PERSON|AIR|ng the furiously final asym| +63882|56341|43845|4|22|28541.48|0.05|0.01|N|O|1997-05-12|1997-04-04|1997-05-26|TAKE BACK RETURN|FOB|haggle carefully ironic foxes. fur| +63883|861114|48666|1|50|53753.50|0.09|0.00|N|O|1995-06-21|1995-06-04|1995-07-03|COLLECT COD|SHIP|eep quickly. carefully bo| +63883|728127|3156|2|24|27722.16|0.05|0.04|R|F|1995-04-21|1995-06-04|1995-05-12|NONE|TRUCK| are slyly even, even requests. ca| +63883|618919|18920|3|31|56974.28|0.03|0.00|N|O|1995-06-22|1995-04-28|1995-07-14|DELIVER IN PERSON|TRUCK|s are quickly. express courts boost| +63883|158005|33012|4|30|31890.00|0.02|0.02|A|F|1995-05-07|1995-04-28|1995-06-05|COLLECT COD|FOB|counts. carefully fi| +63883|586767|11790|5|15|27806.10|0.09|0.07|A|F|1995-04-21|1995-06-06|1995-05-17|NONE|REG AIR|ly regular depth| +63884|129707|29708|1|14|24313.80|0.09|0.01|N|O|1996-03-14|1996-02-10|1996-04-12|NONE|REG AIR|es use quietly carefully even foxes. slyl| +63884|977485|40005|2|10|15624.40|0.00|0.07|N|O|1996-02-08|1996-01-26|1996-02-23|TAKE BACK RETURN|MAIL|eodolites al| +63884|585319|10342|3|32|44937.28|0.10|0.00|N|O|1996-04-05|1996-02-17|1996-04-14|DELIVER IN PERSON|MAIL| silent courts. ironic ideas haggle| +63884|441808|29333|4|14|24496.92|0.05|0.06|N|O|1996-01-25|1996-03-13|1996-02-03|TAKE BACK RETURN|REG AIR|y. thin, unusual theodolites affix slyly | +63884|454455|16965|5|48|67652.64|0.06|0.08|N|O|1996-01-16|1996-02-14|1996-01-23|COLLECT COD|TRUCK|al, ironic instructions caj| +63885|174769|24770|1|44|81125.44|0.03|0.04|N|O|1997-09-27|1997-08-02|1997-10-11|TAKE BACK RETURN|RAIL|oost slyly pinto beans. accounts sleep | +63885|329572|42079|2|49|78476.44|0.07|0.00|N|O|1997-10-03|1997-08-18|1997-10-05|NONE|AIR| platelets wake| +63885|110574|10575|3|3|4753.71|0.06|0.02|N|O|1997-09-08|1997-07-27|1997-09-24|DELIVER IN PERSON|AIR|. furiously ironic depos| +63885|412368|24877|4|16|20485.44|0.03|0.08|N|O|1997-07-15|1997-09-01|1997-07-22|COLLECT COD|MAIL|sly. carefully even foxes sublat| +63886|625542|38055|1|3|4402.53|0.07|0.07|R|F|1994-03-27|1994-02-07|1994-04-11|COLLECT COD|FOB|lar accounts| +63886|482864|32865|2|50|92342.00|0.10|0.03|R|F|1994-02-10|1994-03-05|1994-02-20|TAKE BACK RETURN|REG AIR|instructions nag quickly slyly even wa| +63886|492785|42786|3|1|1777.76|0.07|0.03|R|F|1994-01-06|1994-02-03|1994-01-28|NONE|RAIL|e. furiously ironic accou| +63886|234905|34906|4|46|84634.94|0.07|0.02|A|F|1994-01-17|1994-03-15|1994-01-21|NONE|TRUCK| requests across th| +63887|731077|31078|1|46|50969.84|0.00|0.01|R|F|1995-03-16|1995-04-04|1995-03-29|COLLECT COD|TRUCK|unusual pinto beans across the carefully t| +63887|199899|37409|2|5|9994.45|0.01|0.08|A|F|1995-01-22|1995-03-01|1995-02-08|TAKE BACK RETURN|FOB| foxes. silent theodolites haggle furious| +63887|698889|36429|3|5|9439.25|0.02|0.05|A|F|1995-03-28|1995-03-20|1995-03-31|NONE|SHIP|s. slyly bold requests mold quick| +63887|219906|7419|4|48|87642.72|0.04|0.03|R|F|1995-02-15|1995-04-04|1995-02-17|TAKE BACK RETURN|TRUCK|ual deposits. unusual dolphins a| +63887|947347|22384|5|16|22308.80|0.01|0.04|R|F|1995-04-15|1995-03-20|1995-05-13|DELIVER IN PERSON|FOB|lithely thin requests sleep carefully. f| +63912|219513|19514|1|27|38677.50|0.07|0.05|R|F|1995-03-23|1995-04-07|1995-04-01|TAKE BACK RETURN|TRUCK|old instructions sublate | +63912|351581|1582|2|13|21223.41|0.04|0.04|N|O|1995-06-21|1995-05-30|1995-07-06|DELIVER IN PERSON|REG AIR|s to the pinto beans wake slyly spec| +63912|9055|46556|3|30|28921.50|0.03|0.04|N|O|1995-06-30|1995-04-17|1995-07-27|COLLECT COD|RAIL|s. ironic req| +63913|763845|1391|1|17|32449.77|0.10|0.00|R|F|1994-05-24|1994-06-12|1994-05-31|NONE|FOB|e carefully about the final accounts. re| +63914|811886|49435|1|45|80902.80|0.10|0.02|R|F|1992-03-27|1992-04-10|1992-04-23|COLLECT COD|REG AIR| detect special excuses. furiously regular | +63914|351542|14050|2|19|30277.07|0.02|0.06|A|F|1992-05-04|1992-03-12|1992-05-09|NONE|MAIL|ic deposits unwind c| +63914|355624|30639|3|12|20155.32|0.01|0.04|A|F|1992-05-14|1992-02-26|1992-06-12|NONE|RAIL|ns wake slyly among| +63915|642419|17444|1|16|21782.08|0.02|0.06|A|F|1993-01-26|1993-01-09|1993-02-13|TAKE BACK RETURN|FOB|riously final deposits sleep| +63915|128463|28464|2|19|28337.74|0.06|0.06|R|F|1993-02-25|1992-12-18|1993-03-27|DELIVER IN PERSON|MAIL|ccounts use furiously. silen| +63916|684173|34174|1|22|25457.08|0.04|0.01|R|F|1993-04-07|1993-04-16|1993-04-20|NONE|FOB|the furiously ironic instructions. regula| +63916|891462|3980|2|41|59590.22|0.02|0.02|A|F|1993-03-26|1993-04-17|1993-04-03|DELIVER IN PERSON|MAIL|uternes nag slyly regular dolphins. fluff| +63916|790252|2768|3|24|32213.28|0.07|0.01|R|F|1993-03-05|1993-03-31|1993-04-01|NONE|SHIP|ong the slyly regular requests in| +63916|758383|33414|4|14|20178.90|0.04|0.02|A|F|1993-06-02|1993-03-25|1993-07-02|DELIVER IN PERSON|MAIL|yly silent | +63916|139852|14857|5|18|34053.30|0.02|0.05|A|F|1993-04-14|1993-04-25|1993-05-12|DELIVER IN PERSON|REG AIR|lly special sauternes after the carefu| +63916|481615|19143|6|17|27142.03|0.06|0.04|A|F|1993-05-28|1993-04-06|1993-06-02|NONE|MAIL|l packages are quickly regular requests| +63917|917166|4721|1|40|47324.80|0.09|0.02|N|O|1996-10-10|1996-10-16|1996-11-09|TAKE BACK RETURN|TRUCK|inst the fur| +63918|443479|43480|1|38|54053.10|0.10|0.05|N|O|1995-09-07|1995-06-14|1995-10-05|DELIVER IN PERSON|MAIL|lms. furiously regular reque| +63918|543381|18402|2|31|44155.16|0.03|0.07|N|O|1995-07-10|1995-06-11|1995-07-20|COLLECT COD|SHIP|ely across the quickly even packages| +63919|57452|32455|1|1|1409.45|0.09|0.02|R|F|1994-01-29|1994-02-07|1994-02-20|TAKE BACK RETURN|MAIL|es. blithely silent pains x-ray ironic pa| +63919|594344|44345|2|47|67601.04|0.03|0.08|R|F|1993-12-06|1994-01-12|1993-12-20|COLLECT COD|SHIP|counts serve slyly requests. qu| +63919|133092|20599|3|20|22501.80|0.04|0.05|A|F|1993-12-12|1994-01-23|1994-01-10|DELIVER IN PERSON|FOB| according to t| +63919|861118|36153|4|42|45320.94|0.00|0.07|R|F|1994-01-15|1994-02-07|1994-02-04|TAKE BACK RETURN|AIR|ly enticing packag| +63919|800176|12693|5|50|53806.50|0.00|0.02|A|F|1994-01-17|1993-12-28|1994-01-21|TAKE BACK RETURN|SHIP|gular dugouts wa| +63919|555796|18308|6|46|85181.42|0.01|0.08|R|F|1994-01-02|1994-01-24|1994-01-28|DELIVER IN PERSON|TRUCK|es. furiously ironic packages sleep careful| +63944|919881|32400|1|7|13305.88|0.10|0.06|R|F|1993-04-10|1993-03-20|1993-04-13|TAKE BACK RETURN|RAIL| frets after the carefully blithe asymptote| +63944|437434|24959|2|4|5485.64|0.09|0.07|A|F|1993-02-19|1993-05-06|1993-03-15|NONE|RAIL|pliers solve quickly | +63944|948428|23465|3|14|20669.32|0.09|0.05|R|F|1993-03-20|1993-04-13|1993-04-17|COLLECT COD|MAIL|lar, final deposits. never unu| +63944|222444|9957|4|32|43725.76|0.06|0.01|A|F|1993-05-17|1993-04-19|1993-05-18|TAKE BACK RETURN|RAIL|requests. the| +63945|974581|49620|1|44|72843.76|0.07|0.08|R|F|1994-11-27|1994-09-07|1994-12-22|TAKE BACK RETURN|FOB|aggle. sly tithes among the somas boost | +63945|766509|41540|2|32|50415.04|0.05|0.07|R|F|1994-11-21|1994-10-18|1994-11-25|DELIVER IN PERSON|MAIL|furiously even, fina| +63945|708422|8423|3|20|28607.80|0.00|0.07|R|F|1994-10-31|1994-09-08|1994-11-15|TAKE BACK RETURN|REG AIR|al packages-- slyly r| +63946|527494|40005|1|16|24343.52|0.09|0.00|N|O|1997-12-28|1997-11-18|1998-01-10|DELIVER IN PERSON|TRUCK|final decoys. slyly s| +63946|584764|9787|2|19|35126.06|0.09|0.08|N|O|1997-09-10|1997-10-07|1997-09-18|DELIVER IN PERSON|AIR|lly special ideas? furi| +63946|125603|38106|3|34|55372.40|0.06|0.06|N|O|1997-09-18|1997-11-26|1997-10-02|TAKE BACK RETURN|TRUCK|y instructions. ideas haggle car| +63946|1423|26424|4|1|1324.42|0.03|0.03|N|O|1997-09-21|1997-11-26|1997-10-09|COLLECT COD|RAIL|gular, express requests. blithely regular | +63946|912454|12455|5|33|48391.53|0.07|0.05|N|O|1997-10-17|1997-11-13|1997-11-13|DELIVER IN PERSON|MAIL| nag ironic requests. regul| +63946|611759|36784|6|29|48450.88|0.02|0.08|N|O|1997-11-04|1997-10-06|1997-11-09|NONE|TRUCK|requests. silent requests wake carefully ca| +63947|853575|41127|1|12|18342.36|0.07|0.07|N|O|1995-10-24|1995-12-13|1995-11-19|NONE|REG AIR|ss the slyly spec| +63947|34173|9174|2|38|42072.46|0.03|0.00|N|O|1995-10-26|1995-12-24|1995-11-22|COLLECT COD|MAIL|requests. unus| +63947|329132|41639|3|14|16255.68|0.02|0.02|N|O|1995-11-25|1996-01-04|1995-12-24|DELIVER IN PERSON|MAIL|ress accounts would cajol| +63947|709044|34073|4|32|33696.32|0.00|0.05|N|O|1995-11-07|1995-12-26|1995-11-16|TAKE BACK RETURN|SHIP|uickly ironic packages might sleep| +63947|889978|2496|5|19|37390.67|0.02|0.00|N|O|1995-10-29|1995-12-28|1995-10-30|TAKE BACK RETURN|AIR|gs wake about the| +63947|859502|22020|6|43|62842.78|0.09|0.08|N|O|1995-12-28|1995-11-17|1996-01-02|TAKE BACK RETURN|RAIL|ts sleep. s| +63947|633471|33472|7|5|7022.20|0.05|0.07|N|O|1995-12-04|1995-11-17|1995-12-13|NONE|RAIL|ithely even dependencies cajole. regular | +63948|742501|30044|1|11|16978.17|0.02|0.04|N|O|1998-07-20|1998-08-01|1998-08-01|NONE|SHIP|counts are slyly final foxe| +63948|200726|13231|2|7|11386.97|0.05|0.06|N|O|1998-08-26|1998-08-20|1998-09-20|DELIVER IN PERSON|FOB|se slyly unusual requests. blithely s| +63948|589552|27086|3|9|14773.77|0.07|0.00|N|O|1998-08-22|1998-07-10|1998-09-04|TAKE BACK RETURN|MAIL|y regular deposits are. slyly final ideas | +63948|589343|26877|4|17|24349.44|0.04|0.02|N|O|1998-06-08|1998-07-19|1998-07-02|DELIVER IN PERSON|REG AIR|ckly near the final, pending re| +63948|75866|13370|5|15|27627.90|0.07|0.06|N|O|1998-08-27|1998-08-18|1998-09-14|NONE|TRUCK|jole. fluffily | +63948|79711|4714|6|48|81154.08|0.04|0.07|N|O|1998-06-23|1998-08-14|1998-07-12|NONE|FOB|s. regular, unusual pinto beans after th| +63948|693629|43630|7|39|63281.01|0.00|0.02|N|O|1998-06-13|1998-07-28|1998-07-02|NONE|MAIL|onic pinto b| +63949|807204|32237|1|28|31112.48|0.09|0.00|N|O|1996-11-24|1996-11-11|1996-12-17|COLLECT COD|TRUCK|ide of the accounts-- fluffily bold | +63949|676847|14387|2|31|56538.11|0.05|0.02|N|O|1996-09-21|1996-10-08|1996-10-03|NONE|TRUCK|according to the blithely final asymptote| +63949|767248|4794|3|17|22358.57|0.05|0.05|N|O|1996-12-08|1996-10-21|1996-12-29|NONE|SHIP|hins detect blithely | +63949|121780|9287|4|9|16216.02|0.02|0.03|N|O|1996-11-02|1996-09-26|1996-11-28|COLLECT COD|REG AIR|onic platelets hagg| +63949|742165|29708|5|25|30178.25|0.10|0.00|N|O|1996-10-21|1996-10-11|1996-11-07|TAKE BACK RETURN|RAIL|even pearls snooze blithely| +63949|565286|15287|6|12|16215.12|0.01|0.02|N|O|1996-10-04|1996-10-16|1996-10-06|COLLECT COD|REG AIR|ongside of the fi| +63950|932254|7291|1|5|6431.05|0.03|0.06|N|O|1997-08-23|1997-08-25|1997-09-18|TAKE BACK RETURN|RAIL|uriously regular asymptotes sleep fl| +63950|379174|41682|2|32|40101.12|0.08|0.02|N|O|1997-07-08|1997-08-17|1997-08-05|DELIVER IN PERSON|RAIL|l platelets-- ironic theodolites affix q| +63950|768274|30790|3|15|20133.60|0.09|0.07|N|O|1997-09-17|1997-07-23|1997-09-27|COLLECT COD|TRUCK|cial deposits | +63950|379840|29841|4|24|46075.92|0.09|0.05|N|O|1997-06-06|1997-07-10|1997-07-01|TAKE BACK RETURN|RAIL|ic requests serve unusual| +63950|954942|17462|5|31|61903.90|0.05|0.02|N|O|1997-08-22|1997-08-17|1997-09-21|NONE|MAIL|ns cajole carefully u| +63950|706549|44092|6|44|68442.44|0.05|0.05|N|O|1997-07-21|1997-08-04|1997-08-10|TAKE BACK RETURN|REG AIR|the special dependen| +63951|24514|37015|1|34|48909.34|0.07|0.02|N|O|1997-03-24|1997-01-09|1997-04-22|TAKE BACK RETURN|MAIL|kages affix slyly unusual, iro| +63951|3252|15753|2|11|12707.75|0.05|0.01|N|O|1997-03-29|1997-02-14|1997-04-06|NONE|REG AIR|y across the ruthless courts. furiously| +63951|651247|13761|3|7|8387.47|0.05|0.03|N|O|1997-04-10|1997-03-05|1997-05-08|NONE|REG AIR|gouts sleep fluffily about th| +63951|507706|45237|4|1|1713.68|0.00|0.01|N|O|1997-04-04|1997-01-20|1997-04-15|COLLECT COD|SHIP|. furiously | +63951|7491|7492|5|25|34962.25|0.05|0.01|N|O|1997-01-09|1997-03-02|1997-02-08|NONE|SHIP|ss the furiously even requests. fluffily | +63951|901167|38722|6|12|14017.44|0.10|0.03|N|O|1997-03-22|1997-01-28|1997-04-02|TAKE BACK RETURN|REG AIR|e carefully unusual idea| +63951|906462|31499|7|21|30836.82|0.02|0.01|N|O|1997-03-14|1997-02-22|1997-04-07|COLLECT COD|FOB| deposits use quickl| +63976|896640|34192|1|39|63827.40|0.10|0.02|N|O|1996-10-26|1996-12-15|1996-11-05|NONE|MAIL|rthogs wake slyly. slyly final deposits a| +63976|814375|1924|2|7|9025.31|0.05|0.00|N|O|1996-11-25|1996-11-07|1996-12-04|DELIVER IN PERSON|TRUCK|oxes. quick instructions after | +63976|199897|24904|3|36|71888.04|0.05|0.07|N|O|1996-12-02|1996-12-22|1996-12-28|NONE|FOB|ions; express deposits according t| +63976|667991|30505|4|31|60727.76|0.06|0.03|N|O|1996-11-06|1996-11-15|1996-11-07|COLLECT COD|RAIL|. foxes affix | +63977|266185|16186|1|14|16116.38|0.00|0.06|N|O|1996-07-06|1996-07-11|1996-07-12|NONE|SHIP|ts wake. ironic accounts serve ca| +63977|768646|43677|2|18|30862.98|0.07|0.08|N|O|1996-07-05|1996-05-12|1996-07-13|COLLECT COD|FOB|he blithely ironic deposi| +63977|619436|19437|3|48|65059.20|0.03|0.04|N|O|1996-07-27|1996-06-18|1996-08-09|TAKE BACK RETURN|RAIL|cording to the furiously regular a| +63978|871430|33948|1|25|35034.75|0.00|0.02|N|O|1998-06-25|1998-06-08|1998-07-25|NONE|RAIL|y pending theodolit| +63978|112658|12659|2|18|30071.70|0.03|0.04|N|O|1998-07-17|1998-06-06|1998-07-28|NONE|RAIL|, regular ideas cajole carefully| +63978|439823|14840|3|5|8814.00|0.04|0.01|N|O|1998-04-06|1998-05-09|1998-04-10|COLLECT COD|SHIP|gainst the final, e| +63978|104934|17437|4|24|46534.32|0.08|0.03|N|O|1998-06-30|1998-05-16|1998-07-30|NONE|RAIL|s requests. quickly final deposits are| +63978|616535|29048|5|16|23224.00|0.10|0.06|N|O|1998-07-15|1998-05-12|1998-07-16|NONE|SHIP| slyly final hockey players. unusual, regul| +63978|88247|38248|6|11|13587.64|0.07|0.06|N|O|1998-05-01|1998-05-14|1998-05-09|COLLECT COD|RAIL|ep slyly a| +63979|429460|29461|1|17|23620.48|0.01|0.03|A|F|1993-08-16|1993-08-20|1993-08-28|DELIVER IN PERSON|REG AIR|esias use across t| +63979|918732|6287|2|4|7002.76|0.07|0.07|A|F|1993-07-21|1993-08-14|1993-08-01|NONE|AIR|posits. slyly e| +63980|943034|43035|1|14|15077.86|0.06|0.08|N|O|1997-05-12|1997-05-16|1997-05-14|DELIVER IN PERSON|REG AIR|usly. silent reques| +63980|565030|15031|2|45|49275.45|0.04|0.04|N|O|1997-04-16|1997-04-17|1997-05-08|DELIVER IN PERSON|FOB| blithely along the carefully | +63980|456400|6401|3|24|32553.12|0.07|0.08|N|O|1997-06-28|1997-05-29|1997-07-16|NONE|REG AIR|equests use careful| +63980|711932|49475|4|20|38878.00|0.01|0.01|N|O|1997-05-30|1997-05-22|1997-06-05|NONE|AIR|s integrate slyly carefully fin| +63980|436211|48720|5|35|40151.65|0.06|0.00|N|O|1997-04-11|1997-04-05|1997-04-28|COLLECT COD|AIR|gle quickly alongsid| +63981|397709|22724|1|23|41553.87|0.01|0.06|R|F|1994-02-18|1994-03-26|1994-03-16|DELIVER IN PERSON|FOB|e. unusual dependencies us| +63981|294273|44274|2|26|32948.76|0.08|0.07|R|F|1994-04-11|1994-03-09|1994-05-06|TAKE BACK RETURN|FOB|times even theodolites sl| +63981|840181|27730|3|8|8969.12|0.10|0.00|A|F|1994-04-14|1994-03-11|1994-05-03|DELIVER IN PERSON|TRUCK|sly final foxes. sp| +63982|144679|7182|1|10|17236.70|0.02|0.04|R|F|1993-05-27|1993-03-26|1993-06-25|DELIVER IN PERSON|MAIL|ions. careful| +63983|57692|7693|1|46|75885.74|0.00|0.08|A|F|1993-04-17|1993-03-03|1993-05-16|TAKE BACK RETURN|RAIL|thely upon the| +63983|619735|19736|2|43|71152.10|0.05|0.02|R|F|1993-03-27|1993-02-16|1993-04-16|TAKE BACK RETURN|AIR|ions. pending waters after the specia| +63983|884432|21984|3|4|5665.56|0.06|0.07|A|F|1993-02-26|1993-01-30|1993-03-01|DELIVER IN PERSON|SHIP| affix. sl| +63983|635720|48233|4|36|59604.84|0.00|0.03|A|F|1993-02-11|1993-02-16|1993-02-22|TAKE BACK RETURN|SHIP|sual deposits engage careful| +64008|706651|6652|1|34|56359.08|0.07|0.00|A|F|1995-04-24|1995-03-08|1995-05-03|DELIVER IN PERSON|MAIL|requests affix| +64008|679314|41828|2|36|46558.08|0.01|0.06|A|F|1995-01-21|1995-03-27|1995-01-31|TAKE BACK RETURN|SHIP|regular theodo| +64008|223917|23918|3|34|62590.60|0.09|0.03|A|F|1995-03-11|1995-03-22|1995-04-03|NONE|FOB| even pinto beans. furiously| +64008|362463|12464|4|1|1525.45|0.00|0.00|R|F|1995-01-17|1995-03-01|1995-01-26|TAKE BACK RETURN|REG AIR|ep even sent| +64008|914099|14100|5|4|4452.20|0.06|0.00|A|F|1995-05-05|1995-03-29|1995-05-12|DELIVER IN PERSON|TRUCK|efully after the blithely express pin| +64008|246591|9096|6|5|7687.90|0.06|0.08|A|F|1995-02-07|1995-02-07|1995-02-24|TAKE BACK RETURN|REG AIR|e against the blithely even platele| +64008|447831|47832|7|18|32018.58|0.01|0.06|R|F|1995-02-01|1995-03-16|1995-02-24|TAKE BACK RETURN|REG AIR|against the carefully regular pa| +64009|690193|27733|1|4|4732.64|0.00|0.04|N|O|1998-01-31|1997-12-23|1998-02-24|COLLECT COD|AIR|structions. ironic f| +64009|63493|38496|2|30|43694.70|0.00|0.00|N|O|1998-01-09|1997-12-22|1998-01-27|COLLECT COD|TRUCK|s serve furiously express| +64009|116762|29265|3|27|48026.52|0.02|0.01|N|O|1998-01-02|1997-11-28|1998-01-07|COLLECT COD|RAIL|deas use abov| +64009|406376|43901|4|13|16670.55|0.00|0.00|N|O|1997-10-28|1997-11-26|1997-10-30|COLLECT COD|RAIL|use furiously req| +64009|959386|21906|5|20|28906.80|0.06|0.06|N|O|1997-12-03|1997-12-31|1997-12-08|DELIVER IN PERSON|AIR|aves. carefully ironic dolphins cajole | +64009|386116|11131|6|44|52892.40|0.10|0.04|N|O|1997-11-27|1997-12-06|1997-12-03|NONE|REG AIR|arefully quickly special ideas. req| +64009|449516|37041|7|43|63016.07|0.00|0.06|N|O|1998-02-05|1997-12-11|1998-02-16|NONE|AIR|ecial foxes| +64010|11139|11140|1|40|42005.20|0.03|0.06|N|O|1997-10-04|1997-12-17|1997-10-24|TAKE BACK RETURN|REG AIR|capades sleep alongside of t| +64011|570887|45910|1|5|9789.30|0.07|0.00|N|O|1997-12-08|1997-10-16|1997-12-28|NONE|FOB|cial requests: pending requests b| +64011|895377|32929|2|1|1372.33|0.04|0.08|N|O|1997-09-22|1997-10-24|1997-10-15|NONE|REG AIR|alongside of the final, regular | +64012|890773|28325|1|31|54675.63|0.01|0.01|N|O|1996-06-29|1996-05-24|1996-07-11|TAKE BACK RETURN|SHIP|equests wa| +64012|207891|45404|2|22|39575.36|0.03|0.08|N|O|1996-07-29|1996-05-23|1996-08-23|DELIVER IN PERSON|MAIL|ly at the furiously bo| +64012|12643|12644|3|17|26445.88|0.10|0.01|N|O|1996-07-12|1996-06-02|1996-07-20|COLLECT COD|RAIL|ecial packages integrate carefully. | +64012|489456|26984|4|21|30354.03|0.05|0.05|N|O|1996-05-30|1996-05-27|1996-06-05|DELIVER IN PERSON|AIR|oss the bold deposits. furiously fina| +64012|271630|46641|5|45|72072.90|0.08|0.02|N|O|1996-05-07|1996-06-01|1996-05-22|COLLECT COD|TRUCK|cording to the sl| +64013|773765|11311|1|49|90097.77|0.06|0.06|N|O|1996-05-11|1996-07-16|1996-06-01|TAKE BACK RETURN|SHIP|blithely even accounts nag slyly. furiously| +64013|659401|9402|2|8|10882.96|0.07|0.06|N|O|1996-05-18|1996-07-10|1996-05-27|TAKE BACK RETURN|FOB| even requests? slyly ir| +64013|547346|9857|3|23|32046.36|0.10|0.03|N|O|1996-07-12|1996-07-04|1996-07-13|DELIVER IN PERSON|REG AIR|r requests. account| +64014|758429|8430|1|10|14873.90|0.02|0.04|N|O|1997-03-03|1997-03-29|1997-03-31|DELIVER IN PERSON|RAIL|xes. ironic, regular theodolites sle| +64014|912322|24841|2|34|45365.52|0.02|0.06|N|O|1997-04-17|1997-03-19|1997-04-25|DELIVER IN PERSON|SHIP|furiously even asymptotes sleep. slyly s| +64014|392843|5351|3|28|54203.24|0.03|0.04|N|O|1997-02-03|1997-04-05|1997-02-12|COLLECT COD|AIR|s! even asymp| +64014|502657|15168|4|32|53108.16|0.06|0.04|N|O|1997-04-17|1997-03-09|1997-05-04|DELIVER IN PERSON|AIR|arefully unusual packages nag carefully.| +64014|143837|18842|5|10|18808.30|0.06|0.07|N|O|1997-02-12|1997-04-24|1997-03-07|DELIVER IN PERSON|RAIL|ven foxes affix final courts. quickly regu| +64014|466070|16071|6|6|6216.30|0.02|0.06|N|O|1997-03-20|1997-04-30|1997-04-03|DELIVER IN PERSON|RAIL|sleep blit| +64014|227515|2524|7|33|47602.50|0.04|0.05|N|O|1997-05-21|1997-04-18|1997-06-05|DELIVER IN PERSON|AIR|uests cajole slyly ex| +64015|838454|26003|1|8|11139.28|0.03|0.05|A|F|1993-01-08|1993-01-07|1993-01-20|NONE|RAIL|es about the daring instructions| +64040|956344|18864|1|11|15403.30|0.03|0.02|N|O|1995-09-18|1995-09-18|1995-09-26|DELIVER IN PERSON|MAIL|! carefully permanent foxes cajole af| +64040|260234|10235|2|32|38215.04|0.07|0.00|N|O|1995-07-28|1995-09-03|1995-08-07|DELIVER IN PERSON|RAIL|st the furiously| +64040|743866|6381|3|50|95491.50|0.10|0.03|N|O|1995-09-08|1995-09-02|1995-09-10|COLLECT COD|RAIL| cajole. furiously e| +64041|144283|6786|1|14|18581.92|0.01|0.08|R|F|1993-04-24|1993-04-20|1993-05-14|NONE|MAIL|l foxes sleep fluffily. furio| +64041|953659|41217|2|21|35964.81|0.00|0.07|A|F|1993-05-07|1993-05-09|1993-06-02|DELIVER IN PERSON|REG AIR|telets use caref| +64041|139423|1926|3|49|71658.58|0.07|0.01|R|F|1993-05-09|1993-04-23|1993-05-31|COLLECT COD|RAIL|tain. carefully express theod| +64041|273068|23069|4|1|1041.05|0.00|0.03|A|F|1993-05-03|1993-05-22|1993-05-16|COLLECT COD|AIR|can haggle carefully near the fluffily | +64042|677942|27943|1|6|11519.46|0.03|0.02|R|F|1993-09-22|1993-08-28|1993-10-15|NONE|TRUCK|arefully. slyly ironic ideas wake care| +64042|158589|8590|2|30|49427.40|0.10|0.08|R|F|1993-10-16|1993-09-02|1993-11-07|COLLECT COD|REG AIR|es cajole around the furiously i| +64043|463709|38728|1|36|60216.48|0.02|0.00|A|F|1995-04-06|1995-05-05|1995-04-13|DELIVER IN PERSON|FOB|sual reque| +64043|543738|18759|2|14|24943.94|0.06|0.07|A|F|1995-05-26|1995-05-14|1995-06-03|DELIVER IN PERSON|RAIL|ies sleep ir| +64043|589843|39844|3|17|32857.94|0.06|0.04|N|O|1995-06-24|1995-05-28|1995-07-03|NONE|MAIL|sly express pains. carefully ironic ideas n| +64043|484972|22500|4|33|64579.35|0.00|0.01|R|F|1995-04-14|1995-05-01|1995-04-30|NONE|REG AIR|onic instructions.| +64043|908484|33521|5|1|1492.44|0.07|0.05|R|F|1995-06-14|1995-04-02|1995-06-15|TAKE BACK RETURN|RAIL| hinder slyly. final, even req| +64043|876904|39422|6|49|92162.14|0.01|0.01|R|F|1995-06-10|1995-04-06|1995-06-16|NONE|FOB|latelets about the unu| +64043|110651|23154|7|4|6646.60|0.05|0.03|R|F|1995-03-25|1995-05-10|1995-04-06|TAKE BACK RETURN|MAIL|carefully expre| +64044|697223|22250|1|48|58569.12|0.09|0.03|A|F|1994-02-04|1994-03-21|1994-02-14|TAKE BACK RETURN|TRUCK|ronic deposits na| +64045|455473|43001|1|46|65708.70|0.00|0.00|N|O|1995-08-10|1995-10-02|1995-08-24|TAKE BACK RETURN|SHIP|ests under the platelets breach carefully| +64045|132128|32129|2|38|44084.56|0.01|0.08|N|O|1995-09-12|1995-10-04|1995-10-07|TAKE BACK RETURN|RAIL|are carefully busy platelets. never ironic| +64045|660573|35600|3|3|4600.62|0.05|0.03|N|O|1995-10-17|1995-09-15|1995-11-04|DELIVER IN PERSON|FOB|eposits wake daringly| +64045|236409|48914|4|2|2690.78|0.02|0.02|N|O|1995-08-05|1995-09-04|1995-08-14|DELIVER IN PERSON|SHIP|ts cajole dependencies. carefully r| +64045|316879|41892|5|5|9479.30|0.03|0.08|N|O|1995-08-21|1995-08-29|1995-08-27|NONE|REG AIR|uickly. blithely final f| +64045|780771|30772|6|21|38886.54|0.00|0.03|N|O|1995-09-16|1995-09-30|1995-10-06|TAKE BACK RETURN|MAIL|eposits. quickly| +64045|402274|27291|7|12|14115.00|0.02|0.04|N|O|1995-07-28|1995-08-22|1995-08-04|DELIVER IN PERSON|SHIP|unusual theodolite| +64046|16531|16532|1|9|13027.77|0.01|0.04|N|O|1997-07-26|1997-06-05|1997-08-16|DELIVER IN PERSON|SHIP|al instructions. caref| +64046|828087|28088|2|21|21315.84|0.10|0.08|N|O|1997-07-10|1997-07-15|1997-07-12|TAKE BACK RETURN|REG AIR|ly always bold ac| +64046|652850|27877|3|13|23436.66|0.01|0.06|N|O|1997-06-24|1997-07-12|1997-07-20|DELIVER IN PERSON|MAIL|uriously asymptotes. pack| +64047|654883|17397|1|37|68000.45|0.10|0.02|R|F|1993-09-29|1993-08-16|1993-10-11|TAKE BACK RETURN|REG AIR|y slyly pinto beans. slyly ironic reque| +64047|612491|12492|2|31|43507.26|0.09|0.07|A|F|1993-09-14|1993-09-22|1993-09-24|TAKE BACK RETURN|RAIL|xes; furiousl| +64047|128384|40887|3|33|46608.54|0.06|0.06|A|F|1993-07-24|1993-08-10|1993-08-10|TAKE BACK RETURN|SHIP|fily about the blithe| +64047|745682|8197|4|40|69106.00|0.02|0.06|A|F|1993-08-09|1993-08-06|1993-08-27|DELIVER IN PERSON|TRUCK|packages across the carefully special depos| +64047|661261|23775|5|16|19555.68|0.05|0.02|A|F|1993-08-22|1993-08-09|1993-09-18|NONE|AIR| slyly quickly fin| +64072|487312|49822|1|10|12992.90|0.00|0.03|N|O|1997-10-14|1997-10-13|1997-11-08|TAKE BACK RETURN|MAIL|posits haggle unusual pi| +64073|170129|45136|1|21|25181.52|0.08|0.06|N|O|1997-03-06|1997-01-27|1997-03-26|DELIVER IN PERSON|REG AIR|ts boost among the| +64073|346768|21781|2|41|74404.75|0.01|0.08|N|O|1997-02-14|1996-12-22|1997-03-01|TAKE BACK RETURN|MAIL|o beans. instr| +64073|120359|7866|3|49|67588.15|0.03|0.08|N|O|1996-12-12|1997-02-01|1997-01-02|COLLECT COD|SHIP| asymptotes. furious| +64073|865431|2983|4|1|1396.39|0.10|0.01|N|O|1996-12-06|1997-01-30|1996-12-18|NONE|FOB|ly after th| +64073|291992|29508|5|10|19839.80|0.04|0.07|N|O|1997-02-08|1997-01-10|1997-02-28|TAKE BACK RETURN|SHIP|ndencies sleep f| +64073|502313|2314|6|40|52611.60|0.08|0.01|N|O|1996-11-28|1996-12-24|1996-12-07|COLLECT COD|RAIL|sts are until the furiously silent pinto b| +64073|357881|7882|7|7|13572.09|0.01|0.08|N|O|1997-02-18|1996-12-17|1997-03-06|DELIVER IN PERSON|REG AIR|ts. regular, pending instruct| +64074|894673|7191|1|6|10005.78|0.10|0.04|A|F|1995-01-04|1994-12-31|1995-01-05|DELIVER IN PERSON|MAIL|s around the blithely ironic asymptotes w| +64074|768870|6416|2|31|60104.04|0.06|0.01|R|F|1995-02-05|1994-11-27|1995-02-10|NONE|SHIP|ter the even, e| +64074|382425|32426|3|3|4522.23|0.08|0.08|R|F|1994-11-05|1994-11-24|1994-12-04|DELIVER IN PERSON|AIR| ideas. deposits affix carefully after| +64074|403532|3533|4|18|25839.18|0.04|0.01|A|F|1995-01-26|1994-11-17|1995-02-21|NONE|RAIL|gular packages affix quickly slyly fi| +64074|155844|18348|5|23|43696.32|0.02|0.00|A|F|1995-02-08|1995-01-06|1995-02-18|DELIVER IN PERSON|TRUCK|y regular frets affix caref| +64074|260760|35771|6|26|44739.50|0.09|0.04|A|F|1995-01-17|1994-11-11|1995-01-27|NONE|AIR|thely ironic deposits. packages detec| +64074|585496|23030|7|21|33210.87|0.06|0.04|A|F|1994-10-25|1994-12-26|1994-11-18|DELIVER IN PERSON|FOB|blithely even ideas. final hockey p| +64075|418849|18850|1|9|15910.38|0.05|0.05|R|F|1992-11-18|1993-01-12|1992-12-01|COLLECT COD|SHIP| pending deposits| +64075|587536|12559|2|42|68187.42|0.08|0.02|A|F|1992-11-28|1993-01-06|1992-12-15|NONE|SHIP|as. slowly spe| +64076|46559|34060|1|31|46672.05|0.03|0.03|A|F|1992-10-30|1992-11-10|1992-11-11|TAKE BACK RETURN|REG AIR| blithely regular de| +64076|500622|13133|2|15|24339.00|0.06|0.06|R|F|1992-11-24|1992-11-19|1992-11-29|DELIVER IN PERSON|FOB|ly ironic fre| +64076|952199|14719|3|42|52548.30|0.03|0.03|R|F|1992-10-17|1992-11-14|1992-11-13|NONE|AIR|uickly ironic pinto beans wake. | +64076|597212|9724|4|40|52367.60|0.04|0.02|A|F|1992-11-23|1992-10-12|1992-11-28|DELIVER IN PERSON|MAIL|g to the even, pending accounts sleep slyly| +64076|341648|41649|5|4|6758.52|0.02|0.07|A|F|1992-12-23|1992-10-16|1993-01-12|COLLECT COD|REG AIR|ously regular Tiresias. | +64076|67011|4515|6|21|20538.21|0.01|0.01|R|F|1992-09-29|1992-09-26|1992-10-14|NONE|SHIP|osely even | +64077|292413|4919|1|36|50594.40|0.00|0.05|N|O|1997-03-01|1997-04-15|1997-03-27|NONE|REG AIR|lar requests promise slyly. platelets do a| +64077|578923|16457|2|50|100095.00|0.07|0.06|N|O|1997-03-15|1997-03-13|1997-04-02|TAKE BACK RETURN|SHIP|even pinto b| +64077|957458|7459|3|14|21215.74|0.03|0.02|N|O|1997-06-02|1997-04-08|1997-06-07|DELIVER IN PERSON|REG AIR|ajole slyly special accounts. qui| +64077|982608|32609|4|30|50716.80|0.00|0.08|N|O|1997-02-22|1997-04-11|1997-03-08|NONE|FOB|riously final packages. fluff| +64077|676805|1832|5|4|7127.08|0.08|0.01|N|O|1997-05-19|1997-04-27|1997-06-12|NONE|REG AIR| blithely. blithely ev| +64078|944870|44871|1|33|63189.39|0.06|0.03|R|F|1994-10-11|1994-11-17|1994-11-08|COLLECT COD|TRUCK|ress gifts use a| +64078|416617|29126|2|25|38339.75|0.07|0.05|A|F|1994-10-07|1994-10-21|1994-10-26|TAKE BACK RETURN|TRUCK| asymptotes alongside of the quickl| +64078|74950|12454|3|42|80847.90|0.03|0.00|R|F|1994-09-24|1994-11-09|1994-10-13|DELIVER IN PERSON|MAIL|hely unusual pinto beans boost. express| +64078|670052|7592|4|34|34748.68|0.07|0.02|A|F|1994-10-04|1994-10-20|1994-10-22|TAKE BACK RETURN|TRUCK|s are fluffily. blithely express foxes mol| +64078|549504|24525|5|46|71460.08|0.06|0.08|A|F|1994-12-26|1994-10-09|1995-01-24|TAKE BACK RETURN|MAIL|press pinto beans haggle. silent accounts | +64079|510050|35071|1|20|21200.60|0.01|0.06|A|F|1992-10-10|1992-12-14|1992-10-23|NONE|MAIL|ts cajole slyly against the slyly fina| +64079|402492|27509|2|3|4183.41|0.03|0.07|R|F|1992-12-09|1992-12-23|1992-12-23|DELIVER IN PERSON|REG AIR| foxes sleep. special, careful packages| +64079|668471|43498|3|33|47501.52|0.08|0.01|R|F|1992-11-25|1992-11-08|1992-11-30|TAKE BACK RETURN|REG AIR|e furiously above the caref| +64079|990791|40792|4|4|7527.00|0.04|0.04|R|F|1992-10-29|1992-12-11|1992-11-18|NONE|MAIL|l, ironic reques| +64079|208293|33302|5|10|12012.80|0.02|0.04|A|F|1992-10-12|1992-12-06|1992-11-01|COLLECT COD|MAIL|cajole quickly bl| +64104|577239|14773|1|21|27640.41|0.10|0.05|N|O|1997-10-09|1997-09-03|1997-11-07|NONE|REG AIR|ackages nag quickly. fluffily p| +64105|856434|31469|1|49|68129.11|0.02|0.03|R|F|1993-05-28|1993-06-08|1993-06-05|NONE|FOB|n dolphins. | +64105|85724|48226|2|43|73517.96|0.02|0.00|R|F|1993-06-22|1993-06-17|1993-07-20|NONE|SHIP|l deposits. slyly express requests use | +64105|755457|17973|3|19|28735.98|0.08|0.04|R|F|1993-07-11|1993-07-06|1993-08-03|COLLECT COD|FOB|ly. slyly ironic court| +64105|950119|37677|4|45|52608.15|0.07|0.06|A|F|1993-04-29|1993-06-02|1993-05-24|COLLECT COD|SHIP|ding to the | +64106|525628|649|1|16|26457.60|0.04|0.08|A|F|1993-07-10|1993-07-19|1993-07-17|NONE|AIR|x carefully along the carefully final pint| +64106|224017|24018|2|37|34817.00|0.02|0.05|R|F|1993-06-16|1993-07-25|1993-06-27|TAKE BACK RETURN|TRUCK|ter the blithely special foxes. fluffily | +64107|159638|9639|1|44|74695.72|0.10|0.05|N|O|1995-09-24|1995-10-14|1995-10-10|NONE|TRUCK|ts! slyly regula| +64107|24069|36570|2|6|5958.36|0.02|0.00|N|O|1995-10-28|1995-11-18|1995-11-16|DELIVER IN PERSON|RAIL|s are quickly: carefully unu| +64107|514567|27078|3|25|39538.50|0.05|0.04|N|O|1995-10-14|1995-09-24|1995-11-04|NONE|TRUCK|sublate carefully among the carefully| +64107|324049|49062|4|32|34336.96|0.03|0.02|N|O|1995-11-07|1995-10-01|1995-12-03|NONE|SHIP|uffily final pinto beans hagg| +64108|152146|27153|1|41|49123.74|0.03|0.05|N|O|1997-02-15|1997-03-21|1997-03-16|NONE|TRUCK|furiously silent in| +64108|114481|1988|2|47|70287.56|0.04|0.03|N|O|1997-04-29|1997-02-17|1997-05-23|TAKE BACK RETURN|AIR|e doggedly? express asymptotes nag blit| +64108|73446|35948|3|10|14194.40|0.02|0.05|N|O|1997-04-20|1997-02-15|1997-04-30|DELIVER IN PERSON|TRUCK|s integrate carefully. car| +64108|396083|8591|4|13|15327.91|0.08|0.06|N|O|1997-01-19|1997-02-12|1997-01-24|DELIVER IN PERSON|FOB| carefully furiously fi| +64109|623422|35935|1|47|63233.33|0.00|0.00|R|F|1993-05-12|1993-05-23|1993-06-11|TAKE BACK RETURN|REG AIR|sual packages| +64109|838511|38512|2|48|69574.56|0.07|0.07|A|F|1993-06-13|1993-05-11|1993-06-18|TAKE BACK RETURN|MAIL|xpress requests poach | +64109|842768|42769|3|49|83825.28|0.10|0.03|A|F|1993-05-16|1993-03-29|1993-05-26|COLLECT COD|MAIL|xcuses among the blithely un| +64109|400343|12852|4|10|12433.20|0.06|0.04|A|F|1993-06-15|1993-05-20|1993-06-24|DELIVER IN PERSON|SHIP|e blithely final forges. quickly | +64109|549550|12061|5|41|65580.73|0.01|0.00|R|F|1993-03-08|1993-04-13|1993-03-27|COLLECT COD|MAIL|nto beans. slyly f| +64110|107347|19850|1|45|60945.30|0.06|0.01|N|O|1997-12-13|1998-01-24|1998-01-07|COLLECT COD|SHIP|luffily pendin| +64110|164312|26816|2|33|45418.23|0.08|0.03|N|O|1998-02-17|1997-12-04|1998-02-18|DELIVER IN PERSON|REG AIR|lly regular platelets. even, ironic r| +64110|582518|20052|3|31|49615.19|0.06|0.05|N|O|1998-02-14|1997-12-12|1998-03-05|COLLECT COD|MAIL|deposits haggle furious| +64111|275904|25905|1|37|69555.93|0.04|0.07|N|O|1996-11-28|1996-12-30|1996-12-03|TAKE BACK RETURN|FOB|kages should | +64111|108627|33632|2|34|55611.08|0.05|0.02|N|O|1996-11-09|1997-01-03|1996-11-24|COLLECT COD|RAIL|ages. furiously final deposits use blithe| +64111|686131|48645|3|33|36864.30|0.10|0.02|N|O|1996-12-06|1996-12-07|1997-01-04|NONE|RAIL|nusual pinto beans acr| +64111|793049|18080|4|43|49106.43|0.03|0.01|N|O|1996-11-03|1996-11-19|1996-11-12|COLLECT COD|FOB|its. furiously f| +64111|759339|34370|5|44|61525.20|0.08|0.02|N|O|1996-12-01|1996-12-17|1996-12-14|TAKE BACK RETURN|TRUCK|l theodolites. regular asympto| +64136|981662|44182|1|40|69744.80|0.09|0.05|N|O|1995-08-10|1995-07-20|1995-09-03|COLLECT COD|REG AIR|ructions wake blithely around the| +64136|783523|46039|2|35|56227.15|0.01|0.04|N|O|1995-07-18|1995-05-24|1995-08-10|DELIVER IN PERSON|REG AIR| the blithely even deposits. thin accoun| +64136|661055|11056|3|8|8128.16|0.00|0.05|N|O|1995-08-01|1995-07-11|1995-08-07|NONE|AIR| bold excuses wake q| +64136|344801|19814|4|23|42453.17|0.07|0.02|N|O|1995-08-01|1995-06-05|1995-08-08|COLLECT COD|MAIL|ckages sleep blithely according to | +64136|69218|6722|5|43|51050.03|0.01|0.06|N|O|1995-07-31|1995-05-21|1995-08-29|DELIVER IN PERSON|REG AIR|ts sleep slyly final pinto beans. blithe| +64137|521343|21344|1|41|55937.12|0.07|0.07|N|O|1996-09-12|1996-11-12|1996-09-28|TAKE BACK RETURN|REG AIR|ely special requests sleep closely. qui| +64138|195919|20926|1|16|32238.56|0.06|0.00|N|O|1997-08-21|1997-06-10|1997-08-27|DELIVER IN PERSON|AIR|ies unwind among the silently thin pa| +64138|794851|19882|2|9|17512.38|0.09|0.00|N|O|1997-08-13|1997-07-29|1997-08-31|NONE|RAIL|theodolites. bold accounts gro| +64138|44915|32416|3|8|14879.28|0.05|0.04|N|O|1997-08-05|1997-06-21|1997-08-22|TAKE BACK RETURN|RAIL|e. blithely regular asymptotes are e| +64139|521042|21043|1|29|30827.58|0.00|0.03|N|O|1996-03-25|1996-02-16|1996-04-10|NONE|AIR| blithely above the slow, final gi| +64139|143453|18458|2|13|19453.85|0.07|0.00|N|O|1996-01-21|1996-03-04|1996-02-01|TAKE BACK RETURN|AIR|y furiously thin foxes. pack| +64139|2248|2249|3|28|32206.72|0.01|0.06|N|O|1996-02-26|1996-01-18|1996-03-03|COLLECT COD|MAIL|r frays integrate quickly r| +64139|773674|11220|4|46|80391.44|0.02|0.04|N|O|1996-02-26|1996-01-11|1996-03-26|NONE|REG AIR| furiously even decoys cajole car| +64139|136038|36039|5|50|53701.50|0.07|0.00|N|O|1996-02-01|1996-02-25|1996-02-09|NONE|AIR|g enticingly. carefully | +64140|826215|38732|1|21|23964.57|0.05|0.05|N|O|1997-12-28|1998-01-27|1998-01-21|NONE|FOB| to the unusual packages. furiou| +64140|192364|42365|2|8|11650.88|0.06|0.08|N|O|1997-12-22|1997-12-31|1998-01-14|COLLECT COD|FOB|ully. thin reques| +64140|52464|27467|3|33|46743.18|0.05|0.00|N|O|1997-12-15|1997-12-30|1998-01-03|COLLECT COD|RAIL|slyly unusual accounts wake furio| +64141|381964|19486|1|26|53194.70|0.03|0.02|R|F|1995-02-12|1995-03-16|1995-02-25|DELIVER IN PERSON|RAIL|t the express, final requests. slyly r| +64142|68574|6078|1|26|40106.82|0.07|0.04|R|F|1995-02-23|1995-03-20|1995-03-25|TAKE BACK RETURN|AIR|ial pinto beans | +64142|519379|19380|2|48|67120.80|0.01|0.03|A|F|1995-03-30|1995-02-07|1995-04-07|TAKE BACK RETURN|MAIL|uriously bold instructions. care| +64142|191254|28764|3|45|60536.25|0.01|0.08|R|F|1995-03-25|1995-03-17|1995-04-08|COLLECT COD|SHIP|bold deposits wake blithely. expr| +64143|721727|9270|1|26|45465.94|0.05|0.02|R|F|1993-09-14|1993-09-27|1993-10-04|TAKE BACK RETURN|REG AIR|osits about the blithely final | +64168|400707|25724|1|27|43407.36|0.04|0.08|A|F|1993-04-29|1993-06-23|1993-05-01|NONE|SHIP|efully bold foxe| +64169|211388|23893|1|22|28586.14|0.07|0.02|R|F|1993-06-26|1993-07-15|1993-07-10|DELIVER IN PERSON|TRUCK|he furiously | +64169|793873|43874|2|1|1966.84|0.00|0.01|A|F|1993-08-28|1993-07-02|1993-09-02|COLLECT COD|TRUCK|ularly even packages. s| +64169|619502|7039|3|30|42644.10|0.07|0.01|R|F|1993-08-10|1993-07-13|1993-09-07|DELIVER IN PERSON|RAIL|. regular packages thrash carefully s| +64170|964797|14798|1|22|40958.50|0.07|0.06|N|O|1998-07-16|1998-09-17|1998-07-17|COLLECT COD|REG AIR|usual dinos print f| +64171|418265|43282|1|39|46146.36|0.01|0.06|N|O|1998-01-01|1997-12-13|1998-01-30|DELIVER IN PERSON|TRUCK|e quickly final packages. fluffily| +64171|770553|8099|2|13|21105.76|0.09|0.05|N|O|1997-11-03|1997-12-06|1997-11-20|TAKE BACK RETURN|REG AIR|the carefully special esc| +64171|675532|38046|3|36|54270.00|0.10|0.02|N|O|1997-11-03|1997-11-15|1997-11-09|NONE|RAIL| around the blithely fi| +64171|661448|11449|4|9|12684.69|0.04|0.03|N|O|1997-10-11|1997-11-05|1997-11-06|COLLECT COD|RAIL|ggle slyly. braids s| +64171|956111|6112|5|12|14004.84|0.09|0.06|N|O|1997-12-20|1997-11-19|1998-01-03|TAKE BACK RETURN|RAIL|. slyly special platelets might boost. even| +64171|352676|15184|6|1|1728.66|0.09|0.06|N|O|1998-01-12|1997-11-17|1998-01-16|DELIVER IN PERSON|RAIL|e slyly final deposits | +64172|773344|35860|1|35|49605.85|0.01|0.08|R|F|1994-03-12|1994-02-16|1994-04-09|TAKE BACK RETURN|TRUCK|s do detect. packages abou| +64172|579613|42125|2|46|77859.14|0.09|0.00|R|F|1994-02-22|1994-03-17|1994-03-13|COLLECT COD|TRUCK|al accounts wake after t| +64173|869289|44324|1|4|5032.96|0.10|0.08|N|O|1998-01-21|1997-12-21|1998-01-23|TAKE BACK RETURN|FOB|aggle regularly unusual, fluffy decoys. c| +64173|137390|49893|2|12|17128.68|0.03|0.02|N|O|1998-03-03|1998-01-28|1998-03-05|NONE|TRUCK|to are furiously depende| +64173|109048|34053|3|12|12684.48|0.10|0.05|N|O|1998-02-21|1998-02-15|1998-03-15|TAKE BACK RETURN|AIR|le slyly throughout the deposits| +64173|766138|41169|4|20|24082.00|0.06|0.00|N|O|1997-12-22|1997-12-31|1997-12-24|COLLECT COD|AIR| ideas. fl| +64173|480025|42535|5|40|40200.00|0.00|0.06|N|O|1998-02-12|1998-01-16|1998-02-28|DELIVER IN PERSON|AIR|furiously final deposits prin| +64174|665266|27780|1|41|50480.43|0.10|0.02|N|O|1998-05-24|1998-07-26|1998-05-27|COLLECT COD|REG AIR|theodolites eat above the dep| +64174|125186|37689|2|27|32701.86|0.08|0.00|N|O|1998-08-17|1998-07-01|1998-09-06|COLLECT COD|TRUCK|equests haggle blithely regular depo| +64174|989912|27470|3|40|80074.80|0.09|0.05|N|O|1998-08-09|1998-07-05|1998-08-24|COLLECT COD|TRUCK|lly bold dependencies wake blithely alon| +64174|444199|6708|4|46|52585.82|0.08|0.07|N|O|1998-08-21|1998-06-22|1998-09-18|NONE|RAIL|e furiously | +64174|648895|36432|5|15|27657.90|0.01|0.03|N|O|1998-06-19|1998-06-13|1998-07-08|NONE|REG AIR|eep fluffily | +64175|221447|21448|1|31|42421.33|0.01|0.06|R|F|1992-12-03|1992-10-16|1992-12-05|NONE|AIR|ully ironic packages about the furiou| +64200|473555|11083|1|35|53498.55|0.02|0.08|A|F|1995-02-12|1995-01-11|1995-03-10|TAKE BACK RETURN|FOB|ven foxes sleep carefully bravely | +64200|23456|48457|2|45|62075.25|0.01|0.02|R|F|1995-01-10|1995-01-19|1995-02-07|TAKE BACK RETURN|SHIP|ng, regular excuses wake slyly a| +64200|219354|19355|3|41|52206.94|0.04|0.08|A|F|1995-01-23|1995-01-27|1995-02-11|DELIVER IN PERSON|MAIL|ke slyly regular, re| +64200|677561|15101|4|39|60002.67|0.08|0.01|R|F|1994-12-07|1994-12-12|1994-12-30|NONE|TRUCK|on the blithely iro| +64201|852573|27608|1|33|50342.49|0.08|0.00|N|O|1996-09-16|1996-11-25|1996-10-03|NONE|RAIL|ajole quickly alongside of the slyly regula| +64202|596947|21970|1|11|22483.12|0.03|0.04|R|F|1994-11-01|1994-12-23|1994-11-14|DELIVER IN PERSON|TRUCK|ole carefully final | +64202|886573|36574|2|2|3119.06|0.05|0.06|R|F|1995-01-14|1994-12-19|1995-02-03|COLLECT COD|AIR|inal warhorses under the qui| +64202|628026|15563|3|5|4769.95|0.08|0.02|A|F|1994-12-27|1995-01-14|1995-01-23|TAKE BACK RETURN|TRUCK|l, express requests. unus| +64202|221619|46628|4|1|1540.60|0.05|0.08|A|F|1994-11-15|1995-01-12|1994-12-15|DELIVER IN PERSON|FOB|ests impress furiously. furiously regul| +64203|352318|27333|1|42|57552.60|0.08|0.05|R|F|1995-06-01|1995-05-17|1995-06-10|DELIVER IN PERSON|TRUCK|onic instructions. slyly f| +64203|404239|4240|2|40|45728.40|0.01|0.01|N|O|1995-07-07|1995-06-21|1995-07-13|NONE|TRUCK|lly regular requests are c| +64203|44498|44499|3|23|33177.27|0.05|0.07|N|O|1995-07-11|1995-06-20|1995-08-07|TAKE BACK RETURN|RAIL|ly alongside of the | +64203|869377|19378|4|48|64623.84|0.08|0.07|N|F|1995-05-29|1995-05-06|1995-06-23|COLLECT COD|AIR|packages. regular de| +64203|605781|43318|5|50|84337.50|0.09|0.04|N|O|1995-07-15|1995-05-17|1995-08-01|NONE|MAIL|c ideas. quickly bol| +64203|360397|47919|6|18|26232.84|0.07|0.01|N|F|1995-06-16|1995-05-31|1995-06-21|NONE|MAIL|ide of the furiously enticing r| +64203|192294|42295|7|27|37429.83|0.07|0.05|A|F|1995-04-17|1995-06-18|1995-05-17|TAKE BACK RETURN|RAIL| carefully f| +64204|876427|38945|1|44|61748.72|0.00|0.05|A|F|1993-11-17|1993-12-15|1993-12-03|COLLECT COD|RAIL|s engage slyly. final, regular p| +64205|692176|17203|1|40|46725.60|0.10|0.07|N|O|1995-12-19|1995-11-26|1996-01-05|TAKE BACK RETURN|TRUCK|ly bold dependencies promise slyly pe| +64205|396281|8789|2|21|28922.67|0.07|0.06|N|O|1996-02-07|1995-12-10|1996-02-09|NONE|REG AIR|cording to the special, regular deposits. s| +64205|291824|29340|3|31|56290.11|0.09|0.00|N|O|1995-10-26|1996-01-08|1995-11-13|NONE|MAIL| beans detect after the slyly | +64205|675397|424|4|16|21957.76|0.05|0.04|N|O|1995-12-03|1996-01-08|1995-12-08|NONE|RAIL|efully accordin| +64205|382652|20174|5|48|83262.72|0.03|0.03|N|O|1995-11-23|1995-11-17|1995-12-15|COLLECT COD|TRUCK|p alongside| +64205|229875|4884|6|46|83023.56|0.06|0.05|N|O|1995-11-01|1995-12-23|1995-11-25|DELIVER IN PERSON|TRUCK|out the blithely idle notornis. | +64206|725202|12745|1|18|22089.06|0.08|0.05|N|O|1996-11-02|1996-11-19|1996-11-28|TAKE BACK RETURN|RAIL|ts: daringly| +64206|469594|32104|2|31|48470.67|0.05|0.07|N|O|1996-08-28|1996-10-24|1996-09-17|DELIVER IN PERSON|SHIP|s are against the fina| +64206|452289|27308|3|35|43444.10|0.00|0.06|N|O|1996-09-14|1996-09-22|1996-09-16|TAKE BACK RETURN|FOB|, final instructions. slyly pending real| +64206|609568|9569|4|37|54668.61|0.00|0.05|N|O|1996-08-29|1996-10-30|1996-09-12|TAKE BACK RETURN|AIR|ously. carefully express | +64206|6522|31523|5|38|54283.76|0.02|0.06|N|O|1996-10-28|1996-10-02|1996-10-31|DELIVER IN PERSON|RAIL|sits thrash | +64207|434220|34221|1|2|2308.40|0.10|0.02|R|F|1994-09-24|1994-08-18|1994-10-12|COLLECT COD|AIR|ncies nag above the quickly bold pac| +64207|923651|36170|2|20|33492.20|0.07|0.07|R|F|1994-08-04|1994-08-16|1994-08-06|TAKE BACK RETURN|REG AIR|ly express ideas.| +64207|788528|26074|3|21|33946.29|0.02|0.02|R|F|1994-07-25|1994-08-19|1994-08-15|DELIVER IN PERSON|FOB|ly regular asymptotes. ironic p| +64232|685484|10511|1|14|20572.30|0.08|0.03|N|O|1998-02-28|1998-05-07|1998-03-27|TAKE BACK RETURN|RAIL|nal, express accounts. final deposits h| +64233|175278|37782|1|19|25712.13|0.06|0.06|R|F|1992-03-26|1992-03-01|1992-04-24|DELIVER IN PERSON|AIR|xpress frays. furiously ironic p| +64234|3826|3827|1|19|32866.58|0.03|0.06|A|F|1995-04-19|1995-04-14|1995-04-20|TAKE BACK RETURN|REG AIR|its. deposits | +64234|297842|22853|2|38|69913.54|0.06|0.01|N|F|1995-06-03|1995-05-28|1995-07-03|NONE|RAIL|lar deposits haggle slyly fina| +64234|828464|16013|3|36|50127.12|0.05|0.04|R|F|1995-04-28|1995-04-18|1995-05-18|TAKE BACK RETURN|SHIP|tructions use carefully special pin| +64234|993101|18140|4|2|2388.12|0.02|0.00|R|F|1995-04-26|1995-04-11|1995-04-28|TAKE BACK RETURN|AIR|he special deposits. i| +64234|46173|8674|5|42|47005.14|0.06|0.01|R|F|1995-04-21|1995-05-28|1995-05-11|DELIVER IN PERSON|RAIL|o beans affix. exp| +64234|16882|41883|6|33|59363.04|0.05|0.01|A|F|1995-04-25|1995-05-22|1995-04-26|COLLECT COD|SHIP|ng theodolites. unusual foxes wake. flu| +64234|734687|47202|7|10|17216.50|0.10|0.05|R|F|1995-05-27|1995-04-10|1995-06-07|DELIVER IN PERSON|MAIL|sauternes. slyl| +64235|879251|4286|1|46|56589.66|0.08|0.06|N|O|1997-12-18|1997-11-22|1997-12-22|COLLECT COD|SHIP|. carefully special excus| +64235|557156|7157|2|7|8491.91|0.00|0.02|N|O|1997-11-29|1997-12-20|1997-11-30|TAKE BACK RETURN|MAIL|slyly furiously regular hockey playe| +64235|114711|39716|3|28|48319.88|0.06|0.05|N|O|1997-10-22|1997-11-26|1997-10-28|COLLECT COD|MAIL|dolites. p| +64235|939625|14662|4|45|74906.10|0.05|0.08|N|O|1997-12-12|1997-12-28|1998-01-11|NONE|REG AIR|nal theodolites. foxes wak| +64235|274199|11715|5|2|2346.36|0.06|0.00|N|O|1997-10-20|1997-12-24|1997-10-23|NONE|REG AIR|st about the carefully regula| +64235|461963|11964|6|26|50048.44|0.01|0.05|N|O|1997-11-06|1998-01-03|1997-11-13|TAKE BACK RETURN|REG AIR|pecial, reg| +64236|522351|47372|1|22|30213.26|0.01|0.01|R|F|1994-07-23|1994-05-08|1994-08-14|DELIVER IN PERSON|AIR|unwind slyly carefully final theodolit| +64237|305112|17619|1|20|22342.00|0.10|0.06|N|O|1998-02-26|1998-03-05|1998-03-26|DELIVER IN PERSON|TRUCK|cajole dependencies. slyly ironic| +64237|2534|2535|2|13|18674.89|0.02|0.02|N|O|1998-04-10|1998-02-17|1998-04-19|DELIVER IN PERSON|AIR|doze slyly around the instructions. blit| +64237|579480|4503|3|13|20272.98|0.01|0.03|N|O|1998-03-15|1998-03-27|1998-03-28|NONE|SHIP|d, regular pa| +64237|309460|46979|4|40|58778.00|0.08|0.02|N|O|1998-02-01|1998-02-14|1998-02-03|COLLECT COD|AIR|s. accounts against the ironic,| +64237|89482|1984|5|12|17657.76|0.05|0.00|N|O|1998-03-26|1998-03-06|1998-04-24|NONE|AIR|kages cajole express, silent ac| +64238|737606|12635|1|44|72317.08|0.06|0.08|R|F|1994-09-10|1994-11-10|1994-09-23|DELIVER IN PERSON|REG AIR|ns: blithely regular pac| +64238|940185|15222|2|22|26953.08|0.01|0.05|R|F|1994-11-30|1994-10-07|1994-12-15|DELIVER IN PERSON|TRUCK|ly. blithely regular reques| +64238|675093|37607|3|50|53403.00|0.06|0.03|A|F|1994-12-11|1994-10-30|1994-12-21|TAKE BACK RETURN|AIR|ng instructions cajole a| +64238|285401|10412|4|4|5545.56|0.01|0.04|R|F|1994-09-05|1994-11-14|1994-09-22|TAKE BACK RETURN|REG AIR|es among the special foxes sleep| +64238|720760|8303|5|17|30272.41|0.10|0.05|R|F|1994-09-18|1994-10-02|1994-10-17|NONE|FOB|he quickly regular deposits can| +64238|805115|17632|6|32|32642.24|0.01|0.05|A|F|1994-08-31|1994-10-02|1994-09-18|DELIVER IN PERSON|MAIL|ly regular packages boost caref| +64238|563482|13483|7|4|6181.84|0.09|0.06|A|F|1994-11-25|1994-10-07|1994-12-02|COLLECT COD|SHIP|egular foxes affix quickly. sp| +64239|430005|17530|1|41|38334.18|0.10|0.08|N|O|1998-08-04|1998-08-01|1998-08-16|DELIVER IN PERSON|TRUCK| ought to affix blithely regu| +64264|195854|20861|1|49|95542.65|0.08|0.00|A|F|1992-07-09|1992-05-22|1992-07-16|TAKE BACK RETURN|SHIP|pecial accounts sleep regularly. theo| +64264|706328|31357|2|46|61377.34|0.06|0.04|R|F|1992-04-03|1992-05-31|1992-04-16|NONE|REG AIR|requests. slyl| +64265|367640|42655|1|15|25614.45|0.05|0.03|N|O|1995-10-17|1995-08-11|1995-11-10|DELIVER IN PERSON|AIR| theodolites are at the iron| +64265|923172|35691|2|30|35853.90|0.09|0.08|N|O|1995-10-04|1995-09-27|1995-10-29|COLLECT COD|MAIL|le among the requests. blithely even foxes| +64265|740939|40940|3|20|39598.00|0.06|0.02|N|O|1995-09-28|1995-08-31|1995-10-03|TAKE BACK RETURN|REG AIR|ely according to the ca| +64265|946935|21972|4|37|73329.93|0.01|0.07|N|O|1995-10-07|1995-08-21|1995-10-16|TAKE BACK RETURN|SHIP|pecial packages. regu| +64265|133092|8097|5|1|1125.09|0.10|0.02|N|O|1995-07-21|1995-09-13|1995-08-12|COLLECT COD|TRUCK|s wake accou| +64265|867880|5432|6|20|36956.80|0.10|0.00|N|O|1995-08-23|1995-09-02|1995-09-04|DELIVER IN PERSON|TRUCK|es boost after the quickly even pinto b| +64265|448825|36350|7|28|49666.40|0.01|0.06|N|O|1995-10-15|1995-08-26|1995-10-29|DELIVER IN PERSON|AIR|haggle furiously according to the ruthless| +64266|398795|11303|1|5|9468.90|0.00|0.03|N|O|1997-03-05|1997-03-22|1997-04-03|TAKE BACK RETURN|FOB|es. furiously bold| +64266|534315|9336|2|9|12143.61|0.05|0.02|N|O|1997-02-11|1997-03-15|1997-02-23|COLLECT COD|MAIL| unusual pearls | +64266|230774|30775|3|7|11933.32|0.10|0.02|N|O|1997-04-12|1997-04-20|1997-05-02|NONE|REG AIR|pinto beans across the ironic pinto be| +64266|618171|18172|4|26|28317.64|0.08|0.02|N|O|1997-02-20|1997-03-23|1997-03-03|NONE|MAIL|s: pending, pending packages| +64266|594976|32510|5|6|12425.70|0.07|0.04|N|O|1997-04-23|1997-03-11|1997-05-21|COLLECT COD|RAIL|e among the regular requests. | +64266|761559|11560|6|6|9723.12|0.01|0.08|N|O|1997-03-21|1997-04-07|1997-04-02|TAKE BACK RETURN|SHIP|al foxes maintain blithely arou| +64267|762693|239|1|36|63203.76|0.04|0.03|A|F|1994-04-14|1994-04-10|1994-04-25|COLLECT COD|MAIL|y ironic foxes haggle carefully e| +64267|570403|7937|2|3|4420.14|0.05|0.01|R|F|1994-05-10|1994-03-11|1994-06-08|COLLECT COD|FOB|e blithely. blithely e| +64268|403622|41147|1|42|64075.20|0.00|0.07|N|O|1997-12-25|1997-10-06|1997-12-30|TAKE BACK RETURN|SHIP|y. furious theodolites eat f| +64268|664831|27345|2|35|62853.00|0.08|0.06|N|O|1997-09-22|1997-11-09|1997-10-02|DELIVER IN PERSON|TRUCK|heodolites use against the slyly even re| +64268|798616|23647|3|47|80585.26|0.06|0.01|N|O|1997-11-20|1997-11-14|1997-12-03|TAKE BACK RETURN|RAIL|ular instructions are furiously across| +64268|336458|36459|4|1|1494.44|0.09|0.00|N|O|1997-10-17|1997-10-12|1997-11-11|COLLECT COD|TRUCK|silent packag| +64268|833485|46002|5|49|69503.56|0.05|0.06|N|O|1997-11-14|1997-11-11|1997-11-16|NONE|AIR|sual packages was slyly. packages again| +64268|373047|48062|6|7|7840.21|0.04|0.06|N|O|1997-10-30|1997-10-10|1997-11-06|DELIVER IN PERSON|TRUCK|s. furiously un| +64269|508891|46422|1|7|13299.09|0.02|0.00|N|O|1995-12-04|1995-09-20|1996-01-02|NONE|MAIL|arefully express acc| +64269|921469|9024|2|6|8942.52|0.05|0.07|N|O|1995-10-12|1995-11-03|1995-10-18|DELIVER IN PERSON|TRUCK| beans. fin| +64269|120039|45044|3|2|2118.06|0.04|0.01|N|O|1995-10-05|1995-10-18|1995-10-08|NONE|FOB|onic accounts. quickly | +64269|491838|16857|4|17|31106.77|0.04|0.04|N|O|1995-10-07|1995-11-08|1995-10-21|TAKE BACK RETURN|RAIL|eep among the bold| +64269|315115|27622|5|7|7910.70|0.06|0.01|N|O|1995-09-21|1995-09-22|1995-10-08|COLLECT COD|RAIL|lyly special accounts.| +64270|376699|39207|1|5|8878.40|0.07|0.03|N|O|1995-10-23|1995-08-31|1995-10-24|DELIVER IN PERSON|SHIP|carefully express theodolites | +64270|172578|10088|2|27|44565.39|0.08|0.04|N|O|1995-08-26|1995-09-29|1995-09-08|NONE|SHIP|uests. final sen| +64270|501887|1888|3|8|15110.88|0.08|0.05|N|O|1995-10-12|1995-08-31|1995-10-25|COLLECT COD|MAIL|haggle fina| +64270|210066|47579|4|43|41970.15|0.03|0.08|N|O|1995-08-22|1995-10-03|1995-09-10|COLLECT COD|REG AIR|are; ironic instructio| +64271|618371|30884|1|21|27076.14|0.01|0.01|R|F|1994-04-25|1994-02-08|1994-05-25|TAKE BACK RETURN|REG AIR|iously. spe| +64271|949930|37485|2|46|91074.94|0.04|0.06|R|F|1994-04-04|1994-02-04|1994-04-30|COLLECT COD|REG AIR|ess packages use carefully | +64271|459816|47344|3|47|83462.13|0.05|0.05|A|F|1994-03-07|1994-02-21|1994-04-04|NONE|FOB|ets. even requests sleep | +64271|118445|5952|4|29|42439.76|0.05|0.01|A|F|1994-04-22|1994-03-07|1994-04-24|NONE|FOB|ctions. furiously regular requests wake car| +64271|690695|15722|5|20|33713.20|0.08|0.07|R|F|1994-01-31|1994-02-20|1994-02-15|DELIVER IN PERSON|FOB|ests hinder furiously unusual acco| +64296|477335|2354|1|44|57741.64|0.07|0.00|A|F|1993-01-17|1992-11-25|1993-01-24|DELIVER IN PERSON|REG AIR|lar courts into the evenly even theodolites| +64296|553500|3501|2|45|69906.60|0.00|0.06|R|F|1993-01-31|1992-11-30|1993-02-12|DELIVER IN PERSON|SHIP|refully ironic accounts.| +64297|466794|29304|1|1|1760.77|0.04|0.08|A|F|1994-03-01|1994-02-07|1994-03-08|NONE|FOB| across the blithely bold ideas. | +64297|392964|5472|2|9|18512.55|0.06|0.08|A|F|1994-02-14|1994-03-02|1994-02-20|DELIVER IN PERSON|AIR|ajole quickly after the permanently unu| +64298|456967|44495|1|38|73109.72|0.03|0.08|R|F|1993-06-01|1993-08-04|1993-06-29|TAKE BACK RETURN|AIR|es cajole quickly| +64298|234041|34042|2|21|20475.63|0.05|0.02|A|F|1993-08-22|1993-07-04|1993-09-14|COLLECT COD|FOB|kly. requests play slyly blit| +64298|516911|4442|3|3|5783.67|0.03|0.04|A|F|1993-09-10|1993-06-20|1993-09-18|COLLECT COD|MAIL|ular pinto beans cajole slyly final inst| +64299|613391|13392|1|39|50870.04|0.02|0.01|N|O|1996-09-20|1996-09-11|1996-10-08|NONE|MAIL|s. carefully pending ideas hagg| +64299|256600|44116|2|50|77829.50|0.10|0.01|N|O|1996-08-30|1996-08-01|1996-09-25|TAKE BACK RETURN|FOB|arefully. instructions wake theodolites| +64299|659407|46947|3|47|64219.39|0.02|0.00|N|O|1996-07-10|1996-08-18|1996-08-07|NONE|REG AIR| haggle slyly alongside of the furio| +64299|636958|24495|4|18|34108.56|0.07|0.04|N|O|1996-09-27|1996-08-12|1996-10-15|TAKE BACK RETURN|SHIP| regular accounts after t| +64299|338637|13650|5|14|23458.68|0.10|0.08|N|O|1996-08-20|1996-08-02|1996-09-09|COLLECT COD|TRUCK| furiously regular, pending pinto | +64300|548156|10667|1|35|42144.55|0.07|0.03|N|O|1997-10-30|1997-10-17|1997-11-27|DELIVER IN PERSON|MAIL|ng, silent instructions | +64301|544975|19996|1|15|30299.25|0.06|0.02|N|O|1996-12-18|1997-02-18|1997-01-13|TAKE BACK RETURN|FOB|requests. finally ironic accounts among| +64301|391667|41668|2|48|84415.20|0.05|0.00|N|O|1997-01-08|1997-01-31|1997-01-26|TAKE BACK RETURN|FOB|riously bold,| +64301|745144|32687|3|39|46375.29|0.04|0.05|N|O|1997-04-04|1997-02-22|1997-04-23|COLLECT COD|MAIL|ainst the blithely regular| +64301|628426|3451|4|39|52821.21|0.01|0.03|N|O|1997-01-07|1997-01-23|1997-01-19|NONE|MAIL|s sublate. quickly bold depo| +64302|807777|45326|1|43|72443.39|0.06|0.00|R|F|1994-01-25|1994-01-18|1994-01-26|NONE|RAIL|uctions wake after the depen| +64302|299963|24974|2|39|76555.05|0.03|0.04|R|F|1994-02-17|1994-02-04|1994-03-02|NONE|AIR|iously slyly fina| +64302|474642|37152|3|50|80831.00|0.03|0.00|A|F|1994-02-13|1994-02-18|1994-03-13|COLLECT COD|RAIL| carefully final decoys| +64302|291423|41424|4|37|52333.17|0.07|0.01|R|F|1993-11-26|1994-01-25|1993-12-01|DELIVER IN PERSON|RAIL|yly express theodolites hag| +64302|936775|11812|5|37|67034.01|0.06|0.07|A|F|1994-02-07|1994-01-12|1994-03-06|DELIVER IN PERSON|FOB|hely special d| +64302|373994|23995|6|40|82719.20|0.08|0.08|R|F|1994-01-10|1994-01-20|1994-02-07|NONE|AIR|theodolites cajole | +64303|863280|832|1|21|26108.04|0.05|0.08|R|F|1995-03-05|1994-12-15|1995-03-13|COLLECT COD|FOB|silent dependencies a| +64303|142282|4785|2|6|7945.68|0.05|0.01|R|F|1995-01-16|1994-12-16|1995-01-24|NONE|MAIL|as solve carefu| +64303|325777|38284|3|27|48674.52|0.00|0.04|A|F|1994-12-22|1995-01-08|1995-01-06|COLLECT COD|FOB|y even asymptotes | +64303|332059|19578|4|41|44732.64|0.10|0.02|R|F|1995-01-09|1995-01-19|1995-02-03|TAKE BACK RETURN|RAIL|ses solve fluffily regula| +64303|905374|30411|5|40|55173.20|0.10|0.07|A|F|1995-02-09|1994-12-08|1995-03-05|TAKE BACK RETURN|REG AIR|, even accounts wake along the fluffily| +64303|611651|36676|6|21|32815.02|0.04|0.03|A|F|1995-01-12|1995-02-01|1995-01-22|TAKE BACK RETURN|FOB|usly final| +64303|2265|2266|7|6|7003.56|0.05|0.08|A|F|1995-02-28|1994-12-14|1995-03-30|COLLECT COD|AIR|t the furiously| +64328|61888|49392|1|40|73995.20|0.05|0.00|N|O|1996-08-06|1996-09-20|1996-08-11|COLLECT COD|FOB|sts cajole. carefully sly | +64329|631170|18707|1|2|2202.28|0.07|0.05|N|O|1996-01-11|1996-02-15|1996-01-21|NONE|REG AIR|gular deposits. quickly f| +64329|58949|46453|2|6|11447.64|0.08|0.07|N|O|1996-01-02|1996-02-24|1996-01-15|NONE|SHIP|deposits across th| +64329|744515|19544|3|35|54581.80|0.05|0.03|N|O|1996-02-19|1996-01-28|1996-03-09|TAKE BACK RETURN|SHIP|sly even depo| +64329|51432|13934|4|3|4150.29|0.05|0.08|N|O|1996-01-19|1996-02-18|1996-01-25|NONE|REG AIR|ions haggle. even, pending theod| +64329|409282|34299|5|32|38120.32|0.06|0.01|N|O|1996-01-27|1996-02-21|1996-02-17|TAKE BACK RETURN|REG AIR|s. regular, bold packages according to the | +64329|796165|46166|6|11|13872.43|0.02|0.02|N|O|1996-03-27|1996-03-02|1996-04-10|DELIVER IN PERSON|TRUCK|e unusual deposits. p| +64330|328173|40680|1|40|48046.40|0.05|0.00|A|F|1994-01-21|1994-03-25|1994-02-13|COLLECT COD|RAIL|slyly ironic foxes throughout the ironic r| +64330|593845|6357|2|32|62042.24|0.02|0.07|A|F|1994-02-22|1994-03-18|1994-03-22|DELIVER IN PERSON|FOB| hockey players use along the fluffily iron| +64331|490751|15770|1|19|33092.87|0.04|0.06|A|F|1994-07-03|1994-09-05|1994-07-24|COLLECT COD|SHIP|ly bravely unusual foxes. ironic | +64331|39486|14487|2|34|48466.32|0.02|0.05|R|F|1994-10-15|1994-07-31|1994-11-03|COLLECT COD|RAIL|y fluffily regular acco| +64331|639572|14597|3|2|3023.08|0.01|0.08|R|F|1994-07-18|1994-08-27|1994-07-21|COLLECT COD|SHIP| ironic accounts haggle carefully. carefu| +64331|284608|9619|4|23|36629.57|0.01|0.02|A|F|1994-09-02|1994-08-03|1994-09-29|TAKE BACK RETURN|REG AIR|requests lose pending, bold foxes. final a| +64331|400890|38415|5|20|35817.40|0.07|0.07|A|F|1994-07-02|1994-08-08|1994-07-15|DELIVER IN PERSON|AIR|le. slyly final accounts x-ray blit| +64332|680182|17722|1|7|8135.05|0.07|0.08|A|F|1994-08-10|1994-08-09|1994-09-09|NONE|SHIP|the quickly special packages. carefully| +64332|803676|28709|2|34|53707.42|0.09|0.01|A|F|1994-07-20|1994-08-06|1994-08-09|COLLECT COD|AIR| boldly even| +64333|573128|35640|1|14|16815.40|0.04|0.00|R|F|1994-03-03|1994-03-14|1994-03-27|COLLECT COD|REG AIR|ts will have to| +64333|555545|18057|2|37|59219.24|0.05|0.04|A|F|1994-05-12|1994-02-22|1994-05-24|NONE|SHIP|usly even theodolites haggle above the reg| +64333|39402|39403|3|46|61704.40|0.10|0.06|R|F|1994-02-26|1994-04-03|1994-03-10|DELIVER IN PERSON|MAIL|r deposits. regular, r| +64334|655168|5169|1|42|47171.46|0.10|0.08|R|F|1992-08-19|1992-10-06|1992-08-30|NONE|FOB|s. unusual requests use blithely | +64334|392008|42009|2|3|3299.97|0.01|0.02|R|F|1992-10-07|1992-08-29|1992-10-29|TAKE BACK RETURN|TRUCK|eodolites sleep quietly furiously e| +64334|466377|41396|3|41|55077.35|0.10|0.03|R|F|1992-09-05|1992-09-16|1992-09-27|COLLECT COD|SHIP|ag blithely ironic instructions. b| +64334|382314|32315|4|8|11170.40|0.06|0.08|R|F|1992-09-04|1992-10-04|1992-09-16|COLLECT COD|TRUCK|atelets among the dogg| +64334|544926|19947|5|50|98545.00|0.06|0.08|R|F|1992-08-13|1992-10-02|1992-09-12|COLLECT COD|RAIL|lly regular accounts haggle. blith| +64334|561916|49450|6|38|75159.82|0.06|0.05|R|F|1992-08-06|1992-09-02|1992-08-16|NONE|SHIP|l accounts affix slyly acco| +64334|108845|33850|7|42|77861.28|0.01|0.00|A|F|1992-07-20|1992-08-17|1992-08-19|TAKE BACK RETURN|MAIL|carefully f| +64335|352167|2168|1|29|35355.35|0.01|0.01|R|F|1994-10-06|1994-10-25|1994-10-11|COLLECT COD|REG AIR|e blithely. quickly perm| +64335|855308|5309|2|38|48003.88|0.05|0.04|R|F|1994-11-28|1994-09-24|1994-12-03|TAKE BACK RETURN|REG AIR|inst the regularly fina| +64335|159967|47477|3|3|6080.88|0.08|0.08|R|F|1994-09-07|1994-11-10|1994-09-11|TAKE BACK RETURN|TRUCK|ctions sleep final foxe| +64360|150595|38105|1|40|65823.60|0.07|0.05|R|F|1994-10-15|1994-12-03|1994-11-12|COLLECT COD|RAIL|ly unusual instructions | +64360|46520|21521|2|19|27863.88|0.09|0.06|R|F|1994-10-14|1994-12-02|1994-10-30|TAKE BACK RETURN|SHIP|blithely even frets wake blithely daring| +64360|850228|37780|3|12|14138.16|0.04|0.00|R|F|1994-10-18|1994-11-22|1994-11-01|TAKE BACK RETURN|TRUCK|ly final asymptotes. theod| +64361|74359|49362|1|15|20000.25|0.09|0.01|N|O|1998-07-26|1998-09-24|1998-08-25|COLLECT COD|RAIL|sts. fluffily ironic requests haggle furiou| +64362|805611|5612|1|11|16682.27|0.05|0.06|A|F|1992-09-29|1992-09-15|1992-10-07|DELIVER IN PERSON|MAIL|sits use slyly unu| +64362|898769|23804|2|14|24748.08|0.02|0.07|A|F|1992-11-05|1992-10-24|1992-11-28|DELIVER IN PERSON|TRUCK|fully after the instructions. flu| +64362|594360|6872|3|2|2908.68|0.10|0.08|R|F|1992-08-17|1992-09-23|1992-08-31|TAKE BACK RETURN|AIR|eposits. ideas haggle blith| +64362|399783|37305|4|22|41420.94|0.09|0.08|A|F|1992-09-10|1992-09-30|1992-09-30|COLLECT COD|FOB|sentiments sleep blith| +64362|142787|42788|5|50|91489.00|0.02|0.03|A|F|1992-09-11|1992-09-03|1992-10-07|COLLECT COD|TRUCK|gged packages among | +64362|807135|32168|6|9|9378.81|0.10|0.00|A|F|1992-09-17|1992-10-25|1992-10-13|DELIVER IN PERSON|REG AIR|ove the silent,| +64362|517692|42713|7|31|52999.77|0.01|0.08|A|F|1992-10-03|1992-09-28|1992-10-31|TAKE BACK RETURN|SHIP|ackages boost slyly. r| +64363|836983|49500|1|30|57598.20|0.04|0.06|A|F|1992-03-13|1992-04-10|1992-03-20|NONE|REG AIR|dolites. decoys sleep slyly alongside of t| +64364|856902|6903|1|49|91084.14|0.09|0.00|N|O|1997-03-07|1997-03-15|1997-04-02|DELIVER IN PERSON|TRUCK|kly ironic r| +64364|949715|24752|2|38|67057.46|0.08|0.06|N|O|1996-12-26|1997-01-20|1997-01-02|COLLECT COD|FOB|uctions sleep busily by the final, even | +64364|845747|45748|3|31|52473.70|0.03|0.01|N|O|1997-01-29|1997-01-30|1997-02-26|DELIVER IN PERSON|AIR|enticingly f| +64364|467098|4626|4|38|40472.66|0.01|0.00|N|O|1997-03-09|1997-03-01|1997-04-04|TAKE BACK RETURN|RAIL| use. enticingly final packages would| +64365|285313|10324|1|31|40247.30|0.03|0.01|A|F|1993-01-16|1993-03-25|1993-01-24|COLLECT COD|SHIP|s nag above| +64365|243580|31093|2|2|3047.14|0.09|0.07|R|F|1993-02-05|1993-03-13|1993-02-25|NONE|SHIP|he special pint| +64365|836830|11863|3|46|81272.34|0.03|0.05|A|F|1993-04-19|1993-01-30|1993-05-06|NONE|AIR|side the unusual packages. fluffily fin| +64365|592549|42550|4|25|41038.00|0.05|0.07|A|F|1993-01-18|1993-03-23|1993-02-03|DELIVER IN PERSON|MAIL|aggle about the regular somas. b| +64365|969505|19506|5|13|20467.98|0.07|0.01|R|F|1993-03-21|1993-03-16|1993-04-04|NONE|SHIP|its detect furiously abo| +64365|466449|3977|6|26|36800.92|0.06|0.02|R|F|1993-03-16|1993-03-24|1993-03-17|DELIVER IN PERSON|TRUCK|lyly express deposits dazzle slyly | +64366|458301|20811|1|20|25185.60|0.07|0.03|N|O|1997-03-04|1997-02-14|1997-03-07|TAKE BACK RETURN|SHIP|ress packages. fluffi| +64366|649193|49194|2|47|53681.52|0.00|0.02|N|O|1997-02-06|1997-03-03|1997-02-22|TAKE BACK RETURN|SHIP|g to the i| +64366|976732|26733|3|31|56069.39|0.03|0.07|N|O|1997-04-19|1997-03-07|1997-05-15|DELIVER IN PERSON|AIR|foxes are. quickly bold| +64367|981683|6722|1|21|37057.44|0.07|0.05|A|F|1994-01-25|1994-02-08|1994-02-09|TAKE BACK RETURN|FOB|ss pinto beans must have to detect blithel| +64367|143270|18275|2|20|26265.40|0.04|0.02|R|F|1994-01-20|1994-03-07|1994-01-27|DELIVER IN PERSON|TRUCK|ing instructions. unusual,| +64367|927025|14580|3|36|37871.28|0.06|0.02|A|F|1994-04-21|1994-03-21|1994-04-26|DELIVER IN PERSON|SHIP|uctions affix around the furiously final | +64367|499041|36569|4|19|19760.38|0.00|0.07|A|F|1994-04-04|1994-02-09|1994-04-07|NONE|RAIL|after the blithely bold pin| +64367|381182|43690|5|16|20210.72|0.07|0.02|A|F|1994-03-04|1994-02-12|1994-03-05|NONE|TRUCK|e fluffily final| +64392|974172|36692|1|32|39876.16|0.04|0.08|A|F|1994-02-21|1994-02-01|1994-03-10|TAKE BACK RETURN|FOB|ld accounts. furiously final ins| +64392|904270|29307|2|2|2548.46|0.02|0.05|A|F|1994-03-09|1994-02-06|1994-03-22|DELIVER IN PERSON|TRUCK| the ideas. unusual, bold foxes de| +64392|60401|10402|3|32|43564.80|0.01|0.00|A|F|1993-11-14|1994-01-23|1993-12-08|COLLECT COD|REG AIR|ng ideas. express dolphins nod across the| +64392|143064|5567|4|39|43175.34|0.02|0.00|R|F|1993-12-08|1994-01-06|1993-12-15|NONE|SHIP|are fluffily ironic pinto beans. enticingl| +64393|337551|25070|1|13|20651.02|0.04|0.01|N|O|1996-03-17|1996-03-26|1996-04-09|NONE|REG AIR|ions. slow, special req| +64393|212367|37376|2|2|2558.70|0.08|0.07|N|O|1996-03-16|1996-04-04|1996-04-13|DELIVER IN PERSON|RAIL|ts cajole carefully. sl| +64393|244001|44002|3|11|10394.89|0.02|0.03|N|O|1996-04-08|1996-02-21|1996-04-12|DELIVER IN PERSON|FOB|olites boost regular dependencies. per| +64393|923333|35852|4|23|31194.67|0.07|0.04|N|O|1996-02-15|1996-04-11|1996-03-04|TAKE BACK RETURN|TRUCK|usly regula| +64393|455890|5891|5|22|40609.14|0.03|0.00|N|O|1996-01-20|1996-02-28|1996-02-15|NONE|FOB|instructions. blithely | +64393|142567|42568|6|33|53115.48|0.01|0.01|N|O|1996-02-06|1996-03-25|1996-03-04|COLLECT COD|TRUCK|nts wake carefully ironic dependen| +64393|108151|33156|7|33|38251.95|0.09|0.06|N|O|1996-03-09|1996-03-27|1996-03-19|COLLECT COD|AIR|ccording to the fluffily bold id| +64394|681344|31345|1|36|47711.16|0.03|0.05|R|F|1994-09-04|1994-09-09|1994-09-30|COLLECT COD|RAIL| regular packages wake nev| +64395|865236|15237|1|20|24023.80|0.05|0.08|R|F|1995-04-23|1995-05-19|1995-05-09|COLLECT COD|REG AIR|ounts sleep slyly above the final, express| +64395|18801|31302|2|34|58473.20|0.03|0.03|R|F|1995-05-08|1995-06-04|1995-05-11|TAKE BACK RETURN|SHIP|e accounts cajole carefully. furiously| +64395|979329|29330|3|37|52106.36|0.10|0.04|R|F|1995-05-03|1995-05-22|1995-05-24|TAKE BACK RETURN|MAIL|ns nag furiously unusual packag| +64395|566400|3934|4|25|36659.50|0.03|0.01|N|O|1995-06-26|1995-05-06|1995-07-22|NONE|SHIP|sly fluffily even theodolite| +64395|484600|34601|5|1|1584.58|0.03|0.01|A|F|1995-05-18|1995-06-06|1995-06-01|TAKE BACK RETURN|FOB| theodolites sleep after the carefull| +64396|121871|21872|1|37|70036.19|0.07|0.01|N|O|1998-06-13|1998-05-25|1998-06-22|NONE|AIR|ess requests | +64396|280767|5778|2|40|69910.00|0.08|0.04|N|O|1998-04-14|1998-05-06|1998-05-12|TAKE BACK RETURN|FOB|dependencies cajole | +64397|975030|37550|1|26|28729.74|0.01|0.03|R|F|1995-01-13|1994-12-06|1995-01-28|DELIVER IN PERSON|MAIL|egrate blithely: slyly regular frets aroun| +64397|327361|27362|2|26|36097.10|0.04|0.01|A|F|1995-02-05|1994-12-17|1995-02-07|DELIVER IN PERSON|RAIL|unts nag closely across the express | +64397|945565|33120|3|22|35431.44|0.00|0.06|A|F|1994-11-22|1994-11-29|1994-12-19|DELIVER IN PERSON|TRUCK|ers across the| +64397|101652|26657|4|23|38033.95|0.03|0.02|A|F|1995-01-19|1994-12-12|1995-02-07|COLLECT COD|MAIL|along the ruthless accounts. foxes boost c| +64397|464932|2460|5|22|41732.02|0.03|0.02|A|F|1995-01-03|1994-11-14|1995-01-13|NONE|MAIL|es. ironic packages haggle expres| +64398|108059|8060|1|26|27743.30|0.00|0.00|R|F|1995-05-11|1995-05-09|1995-05-12|DELIVER IN PERSON|AIR|gouts: dolphins hag| +64398|137248|24755|2|26|33416.24|0.01|0.05|N|O|1995-08-01|1995-05-08|1995-08-02|COLLECT COD|MAIL|s boost fluffily. ideas a| +64398|721575|21576|3|44|70247.76|0.07|0.04|N|O|1995-07-08|1995-06-04|1995-07-30|COLLECT COD|TRUCK|kages. final packages are. bold | +64398|506176|6177|4|19|22460.85|0.05|0.00|R|F|1995-04-06|1995-06-19|1995-04-30|DELIVER IN PERSON|FOB|r the ironic instructi| +64398|298463|23474|5|35|51150.75|0.10|0.03|N|O|1995-07-21|1995-06-30|1995-07-29|TAKE BACK RETURN|REG AIR|e packages. deposits integrate blithely b| +64398|263989|1505|6|10|19529.70|0.08|0.08|N|O|1995-07-25|1995-06-27|1995-08-02|COLLECT COD|TRUCK|ly express packages cajole | +64398|849056|49057|7|47|47235.47|0.02|0.08|N|O|1995-07-18|1995-05-08|1995-07-23|COLLECT COD|AIR|ructions. silent, even d| +64399|70681|8185|1|34|56157.12|0.09|0.04|N|O|1997-06-05|1997-06-13|1997-06-09|DELIVER IN PERSON|RAIL| accounts cajole. silent packages haggl| +64399|929787|4824|2|40|72669.60|0.09|0.05|N|O|1997-07-08|1997-06-08|1997-07-11|COLLECT COD|SHIP|us pinto beans. someti| +64399|913708|13709|3|18|30989.88|0.00|0.04|N|O|1997-06-30|1997-05-18|1997-07-10|DELIVER IN PERSON|MAIL|ajole furiously. stea| +64399|679117|41631|4|41|44939.28|0.04|0.06|N|O|1997-05-10|1997-05-11|1997-05-13|COLLECT COD|RAIL|ng Tiresias. finally unusual platelets ca| +64424|87789|37790|1|43|76401.54|0.09|0.07|N|O|1995-12-11|1995-10-11|1995-12-22|NONE|MAIL|ing ideas. foxes caj| +64424|462047|12048|2|46|46414.92|0.05|0.00|N|O|1995-09-20|1995-12-06|1995-10-16|NONE|RAIL| the accounts. even reques| +64424|610823|23336|3|32|55481.28|0.02|0.08|N|O|1995-09-17|1995-11-30|1995-09-20|TAKE BACK RETURN|FOB| slyly even multi| +64424|95550|45551|4|48|74186.40|0.00|0.07|N|O|1995-12-05|1995-10-31|1995-12-18|NONE|SHIP|ackages; courts among the fu| +64424|908448|46003|5|14|20389.60|0.10|0.04|N|O|1995-09-26|1995-11-08|1995-10-22|COLLECT COD|FOB|uickly pending war| +64424|271589|21590|6|48|74907.36|0.09|0.04|N|O|1995-12-23|1995-10-13|1996-01-02|NONE|AIR|doubt stealthily slyly fi| +64424|583502|21036|7|33|52320.84|0.05|0.01|N|O|1995-12-02|1995-10-13|1995-12-04|NONE|RAIL|s was blithely above the regular pin| +64425|914788|14789|1|4|7210.96|0.10|0.02|A|F|1993-11-23|1993-11-24|1993-12-08|DELIVER IN PERSON|TRUCK|equests. quickly final requests| +64425|839518|27067|2|35|51011.45|0.07|0.05|A|F|1994-01-11|1993-11-02|1994-01-15|NONE|FOB|ckages cajole furiou| +64425|769585|7131|3|24|39709.20|0.08|0.03|R|F|1994-01-26|1993-11-24|1994-02-11|DELIVER IN PERSON|AIR|re quickly except the stealthy theodolites:| +64425|407774|7775|4|42|70633.50|0.07|0.02|A|F|1993-10-07|1993-12-27|1993-11-01|COLLECT COD|SHIP|le furiously against the even depo| +64425|451156|1157|5|30|33213.90|0.00|0.00|A|F|1993-10-15|1993-12-28|1993-11-07|COLLECT COD|TRUCK|its use ironic, regular theodo| +64426|502823|15334|1|49|89464.20|0.07|0.01|R|F|1995-04-10|1995-04-01|1995-04-19|DELIVER IN PERSON|RAIL|ly even de| +64426|930948|5985|2|1|1978.90|0.04|0.08|R|F|1995-01-23|1995-03-28|1995-01-26|NONE|AIR|ments against the slyly | +64426|440108|40109|3|29|30394.32|0.06|0.08|R|F|1995-02-24|1995-03-26|1995-03-02|TAKE BACK RETURN|AIR|tructions. ac| +64426|883645|46163|4|17|27686.20|0.07|0.02|R|F|1995-04-02|1995-04-01|1995-04-08|TAKE BACK RETURN|FOB|g requests. furiously ironic as| +64426|406135|31152|5|43|44767.73|0.08|0.07|A|F|1995-03-03|1995-03-30|1995-03-09|TAKE BACK RETURN|FOB|es integrate carefully furiously ironic d| +64427|309718|47237|1|35|60469.50|0.01|0.04|R|F|1995-03-14|1995-03-07|1995-03-17|NONE|SHIP|ully ironic depende| +64427|427271|14796|2|10|11982.50|0.00|0.07|R|F|1995-02-23|1995-02-17|1995-02-25|TAKE BACK RETURN|MAIL| fluffily regular packages| +64428|905071|30108|1|26|27976.78|0.03|0.00|A|F|1992-09-12|1992-08-08|1992-09-30|COLLECT COD|AIR|h the quickly final theodolites. carefully | +64428|526678|1699|2|6|10227.90|0.00|0.02|R|F|1992-09-08|1992-07-31|1992-09-25|DELIVER IN PERSON|SHIP| furiously ironic packages| +64428|875939|974|3|7|13404.23|0.01|0.05|R|F|1992-08-18|1992-08-11|1992-09-14|COLLECT COD|MAIL|y even orbits. bold deposit| +64428|905136|30173|4|25|28527.25|0.01|0.01|A|F|1992-09-02|1992-09-01|1992-09-25|COLLECT COD|FOB|urious accounts alongside of the even,| +64428|606960|31985|5|2|3733.86|0.09|0.00|A|F|1992-07-03|1992-07-16|1992-07-04|TAKE BACK RETURN|RAIL| slyly ironic accounts against t| +64429|543320|18341|1|2|2726.60|0.03|0.08|R|F|1994-04-09|1994-02-03|1994-04-19|NONE|REG AIR| fluffily express, even i| +64430|113914|1421|1|12|23134.92|0.08|0.06|R|F|1993-04-13|1993-03-01|1993-04-26|TAKE BACK RETURN|SHIP|y ironic accounts| +64430|542259|4770|2|39|50747.97|0.07|0.08|A|F|1993-03-09|1993-02-26|1993-04-07|TAKE BACK RETURN|REG AIR| fluffily pending dolphins thro| +64430|731549|31550|3|36|56898.36|0.04|0.08|R|F|1992-12-29|1993-01-16|1993-01-27|COLLECT COD|TRUCK|ost quickly carefully regular courts| +64430|136902|24409|4|30|58167.00|0.03|0.03|R|F|1992-12-27|1993-01-24|1992-12-29|DELIVER IN PERSON|SHIP|arefully even deposits boost furiously iro| +64430|905205|17724|5|28|33884.48|0.05|0.05|R|F|1993-03-12|1993-03-04|1993-04-01|NONE|REG AIR|t fluffily. quic| +64430|778935|28936|6|23|46319.70|0.02|0.04|R|F|1992-12-27|1993-03-05|1993-01-04|DELIVER IN PERSON|RAIL|into beans. regular packages| +64431|493546|31074|1|28|43106.56|0.08|0.07|R|F|1993-02-12|1992-12-27|1993-02-22|DELIVER IN PERSON|MAIL|s haggle furiousl| +64431|24625|49626|2|22|34091.64|0.00|0.06|A|F|1992-11-05|1992-12-11|1992-11-28|COLLECT COD|RAIL|slyly ironic packages. | +64456|210948|23453|1|24|44614.32|0.07|0.08|R|F|1994-02-28|1994-04-08|1994-03-22|NONE|TRUCK|nal deposits around the pinto beans wak| +64456|399512|49513|2|31|49956.50|0.05|0.05|R|F|1994-05-07|1994-03-25|1994-05-26|COLLECT COD|RAIL|aggle after the ironic, ironic asymptote| +64456|585727|48239|3|1|1812.70|0.02|0.05|A|F|1994-04-14|1994-03-02|1994-04-20|TAKE BACK RETURN|TRUCK| furiously ironic id| +64456|299233|36749|4|29|35734.38|0.06|0.06|A|F|1994-03-13|1994-02-28|1994-03-14|NONE|FOB|carefully regular| +64456|206737|31746|5|4|6574.88|0.08|0.01|A|F|1994-02-09|1994-03-01|1994-03-03|DELIVER IN PERSON|SHIP|g dependencies. slyly pending foxes wake| +64456|624668|24669|6|34|54149.42|0.10|0.02|R|F|1994-01-27|1994-04-06|1994-01-28|DELIVER IN PERSON|REG AIR|into beans wake along the quickly thin wat| +64457|164353|1863|1|23|32599.05|0.10|0.07|R|F|1993-10-29|1993-11-06|1993-11-17|TAKE BACK RETURN|FOB|c ideas would are bli| +64458|653666|28693|1|48|77742.24|0.03|0.08|N|O|1996-10-10|1996-08-23|1996-11-05|DELIVER IN PERSON|MAIL|of the blithely even pearls. unusua| +64458|164301|39308|2|12|16383.60|0.10|0.07|N|O|1996-07-15|1996-08-31|1996-07-26|NONE|SHIP|l instructions are furiously | +64458|403169|28186|3|43|46102.02|0.08|0.00|N|O|1996-07-09|1996-08-22|1996-08-02|NONE|AIR|thlessly furiously unus| +64459|607190|32215|1|43|47177.88|0.07|0.06|N|O|1995-08-06|1995-06-15|1995-08-12|TAKE BACK RETURN|TRUCK|lyly ironic | +64459|34202|9203|2|37|42039.40|0.10|0.07|N|O|1995-06-24|1995-06-20|1995-07-23|COLLECT COD|TRUCK|efully. deposits wake slyly silent a| +64460|579790|4813|1|1|1869.77|0.05|0.03|A|F|1993-02-15|1993-01-19|1993-02-20|COLLECT COD|REG AIR|l platelets are slyly among the b| +64460|529038|16569|2|46|49082.46|0.00|0.08|R|F|1993-03-08|1993-01-07|1993-03-15|NONE|SHIP| requests. fur| +64460|534226|34227|3|41|51668.20|0.09|0.00|A|F|1993-01-14|1993-01-12|1993-01-29|TAKE BACK RETURN|TRUCK|ts against the ironic accounts use s| +64460|735171|35172|4|14|16885.96|0.01|0.02|A|F|1992-12-06|1993-02-14|1993-01-04|COLLECT COD|MAIL|hely bold foxes. silently even depende| +64460|9933|47434|5|44|81088.92|0.08|0.07|R|F|1993-01-01|1993-02-13|1993-01-04|DELIVER IN PERSON|FOB|, final ideas haggle furiously caref| +64461|764628|14629|1|19|32159.21|0.01|0.02|A|F|1994-01-21|1994-02-26|1994-02-10|TAKE BACK RETURN|RAIL|nts. bold foxes al| +64461|100104|105|2|29|32018.90|0.04|0.02|A|F|1993-12-12|1994-01-22|1993-12-21|COLLECT COD|SHIP| unusual accounts w| +64461|438333|38334|3|2|2542.62|0.05|0.07|A|F|1993-12-19|1994-01-28|1993-12-24|NONE|MAIL|cajole blithely stealthy requests. f| +64461|60662|35665|4|46|74642.36|0.00|0.04|A|F|1994-02-20|1994-02-11|1994-03-09|NONE|TRUCK|y express packages are across the sl| +64461|536005|36006|5|38|39557.24|0.05|0.07|A|F|1994-01-14|1994-02-15|1994-02-03|TAKE BACK RETURN|AIR|ar dinos. regular, pending ideas ca| +64462|728482|16025|1|32|48334.40|0.10|0.00|A|F|1992-07-22|1992-08-22|1992-07-28|TAKE BACK RETURN|MAIL|lithely busy packages sle| +64462|587911|37912|2|40|79955.60|0.01|0.07|R|F|1992-08-29|1992-08-21|1992-09-17|TAKE BACK RETURN|MAIL| forges. express accounts na| +64463|824246|36763|1|28|32765.60|0.08|0.04|A|F|1992-08-31|1992-07-17|1992-09-18|TAKE BACK RETURN|AIR| affix carefully bli| +64463|90986|28490|2|9|17792.82|0.03|0.01|A|F|1992-06-16|1992-07-31|1992-06-19|NONE|RAIL|ilent ideas| +64463|186722|36723|3|3|5426.16|0.10|0.08|R|F|1992-09-24|1992-08-22|1992-10-13|NONE|RAIL| deposits. regular,| +64463|228253|40758|4|39|46068.36|0.09|0.03|A|F|1992-10-03|1992-07-13|1992-10-16|COLLECT COD|REG AIR|nently bold ideas. slyl| +64463|233341|45846|5|8|10194.64|0.04|0.08|R|F|1992-07-29|1992-07-21|1992-08-26|COLLECT COD|RAIL|pinto beans sleep carefully. pin| +64463|761846|36877|6|10|19078.10|0.08|0.00|R|F|1992-07-28|1992-08-26|1992-08-03|TAKE BACK RETURN|TRUCK|affix carefully accounts. dogg| +64488|683113|8140|1|36|39458.88|0.08|0.04|N|O|1997-08-12|1997-08-09|1997-08-23|TAKE BACK RETURN|RAIL|y furiously bold platele| +64488|70005|32507|2|13|12675.00|0.01|0.08|N|O|1997-07-11|1997-07-17|1997-07-21|COLLECT COD|REG AIR|sits wake carefully e| +64488|566720|16721|3|45|80401.50|0.07|0.03|N|O|1997-05-24|1997-06-14|1997-06-17|TAKE BACK RETURN|RAIL|counts; bli| +64488|856792|31827|4|32|55960.00|0.02|0.04|N|O|1997-08-27|1997-06-27|1997-09-19|COLLECT COD|AIR| packages. special realms after t| +64489|433406|8423|1|39|52235.82|0.00|0.07|N|O|1997-08-21|1997-08-19|1997-09-02|DELIVER IN PERSON|FOB|hins sleep carefully | +64489|244730|19739|2|4|6698.88|0.00|0.01|N|O|1997-09-17|1997-08-21|1997-09-19|DELIVER IN PERSON|REG AIR|lowly. slyly pending accounts a| +64490|152308|2309|1|6|8161.80|0.01|0.01|N|O|1996-05-20|1996-04-27|1996-06-01|DELIVER IN PERSON|MAIL|iers. blithely special packa| +64490|840374|15407|2|27|35486.91|0.05|0.03|N|O|1996-04-28|1996-04-14|1996-04-29|TAKE BACK RETURN|REG AIR|ithely carefully even deposits. qui| +64490|158905|21409|3|2|3927.80|0.10|0.02|N|O|1996-06-17|1996-05-15|1996-06-23|COLLECT COD|SHIP|fully against the accounts. unusual| +64490|707383|7384|4|1|1390.35|0.04|0.02|N|O|1996-06-23|1996-05-13|1996-07-02|COLLECT COD|MAIL|boost blithely | +64490|972779|47818|5|36|66662.28|0.09|0.06|N|O|1996-03-14|1996-04-12|1996-04-05|COLLECT COD|FOB|hins. carefully regular requests solv| +64491|75071|25072|1|50|52303.50|0.08|0.05|N|O|1995-08-08|1995-07-08|1995-08-28|TAKE BACK RETURN|REG AIR|s. furiously | +64492|435155|22680|1|22|23982.86|0.03|0.08|A|F|1994-06-23|1994-04-28|1994-07-09|DELIVER IN PERSON|TRUCK|kages dazzle fu| +64492|637951|37952|2|31|58556.52|0.02|0.00|A|F|1994-07-25|1994-05-07|1994-08-12|DELIVER IN PERSON|AIR|ments cajole according to the regularly| +64493|970864|8422|1|10|19348.20|0.08|0.05|N|O|1996-08-01|1996-05-25|1996-08-19|COLLECT COD|FOB|nic requests hagg| +64493|297251|22262|2|35|43688.40|0.03|0.02|N|O|1996-07-28|1996-05-23|1996-08-18|COLLECT COD|SHIP| ideas haggle blithely-- fluffily regul| +64493|894931|19966|3|13|25036.57|0.07|0.02|N|O|1996-05-30|1996-06-01|1996-06-11|TAKE BACK RETURN|REG AIR| ironic requests wake s| +64493|102416|2417|4|31|43970.71|0.06|0.05|N|O|1996-05-28|1996-06-12|1996-06-15|COLLECT COD|REG AIR| boost furiously reg| +64493|302635|27648|5|48|78605.76|0.04|0.03|N|O|1996-06-04|1996-05-31|1996-06-23|NONE|REG AIR|posits wake slyly around the slyly bold | +64493|382090|19612|6|19|22269.52|0.01|0.05|N|O|1996-08-11|1996-05-31|1996-08-15|DELIVER IN PERSON|AIR|even excuses. regular| +64494|340555|40556|1|43|68608.22|0.00|0.05|A|F|1993-05-22|1993-05-27|1993-06-07|TAKE BACK RETURN|RAIL| to the special, even epitaphs. caref| +64494|695517|20544|2|43|65036.64|0.07|0.02|A|F|1993-04-02|1993-05-28|1993-04-25|DELIVER IN PERSON|TRUCK| wake against the pearls. requests ca| +64494|540338|2849|3|36|49619.16|0.05|0.08|A|F|1993-06-25|1993-06-18|1993-06-28|COLLECT COD|FOB|ctions. unusual pi| +64494|448778|11287|4|33|56982.75|0.07|0.01|A|F|1993-05-20|1993-05-21|1993-05-22|NONE|AIR|atelets. furiously even deposits | +64495|897417|47418|1|27|38187.99|0.10|0.08|N|O|1998-06-22|1998-04-02|1998-07-15|NONE|SHIP|etly silent excuses use amon| +64520|530406|42917|1|22|31600.36|0.01|0.01|N|O|1996-06-27|1996-07-04|1996-07-12|NONE|REG AIR|uternes. carefully final ideas h| +64520|521799|46820|2|19|34594.63|0.10|0.04|N|O|1996-04-19|1996-05-29|1996-05-17|COLLECT COD|AIR|l theodolites. final, ironic | +64520|868816|43851|3|18|32125.86|0.09|0.06|N|O|1996-06-28|1996-07-11|1996-07-03|DELIVER IN PERSON|MAIL| haggle pending pinto beans. even, unusu| +64520|184257|34258|4|45|60356.25|0.01|0.08|N|O|1996-07-24|1996-06-09|1996-08-23|NONE|AIR|eposits cajole. blithely unusual ide| +64520|803351|15868|5|23|28849.13|0.06|0.07|N|O|1996-04-30|1996-06-09|1996-05-14|DELIVER IN PERSON|SHIP|uickly furiously final packages. quickly| +64521|311626|49145|1|11|18013.71|0.06|0.04|N|O|1998-06-04|1998-06-08|1998-06-24|DELIVER IN PERSON|FOB|thely about| +64521|490395|27923|2|13|18009.81|0.07|0.08|N|O|1998-05-27|1998-06-12|1998-06-07|COLLECT COD|FOB|press accounts along th| +64521|67403|42406|3|28|38371.20|0.03|0.02|N|O|1998-05-24|1998-07-14|1998-06-05|TAKE BACK RETURN|AIR| slyly slyly even requests. qu| +64522|618091|43116|1|46|46416.76|0.07|0.01|A|F|1994-12-26|1994-12-27|1994-12-31|NONE|AIR|eposits are cl| +64522|250798|38314|2|43|75197.54|0.09|0.06|A|F|1995-02-21|1995-02-10|1995-03-05|NONE|SHIP|nal warthogs haggle furious| +64522|146446|21451|3|39|58205.16|0.07|0.04|R|F|1995-01-17|1995-01-09|1995-01-20|TAKE BACK RETURN|REG AIR|s are quickly alongsi| +64522|304076|16583|4|12|12960.72|0.09|0.04|R|F|1995-02-16|1995-02-09|1995-02-24|COLLECT COD|AIR| final accounts. slyly| +64523|807733|45282|1|33|54142.77|0.06|0.08|N|O|1996-03-22|1996-02-16|1996-04-05|TAKE BACK RETURN|AIR|cajole carefully. boldly regular d| +64523|563604|13605|2|17|28348.86|0.04|0.03|N|O|1996-02-03|1996-01-16|1996-02-14|DELIVER IN PERSON|REG AIR|key player| +64523|478768|3787|3|5|8733.70|0.08|0.03|N|O|1996-03-21|1996-02-02|1996-03-28|COLLECT COD|AIR|uriously even ac| +64524|576474|1497|1|8|12403.60|0.09|0.02|A|F|1992-06-17|1992-04-17|1992-07-03|NONE|REG AIR| fluffily final forges are| +64524|797666|35212|2|19|33508.97|0.05|0.03|R|F|1992-03-25|1992-04-02|1992-04-07|TAKE BACK RETURN|MAIL|luffily furiously ironic requests. | +64524|364841|2363|3|19|36210.77|0.08|0.02|A|F|1992-06-10|1992-05-21|1992-06-15|DELIVER IN PERSON|RAIL|r dependencies are furiously. pendin| +64524|881559|19111|4|27|41593.77|0.04|0.07|A|F|1992-06-15|1992-04-13|1992-07-15|DELIVER IN PERSON|TRUCK|the final reques| +64524|345409|32928|5|7|10180.73|0.04|0.07|R|F|1992-05-23|1992-04-27|1992-05-25|COLLECT COD|REG AIR|riously express package| +64524|283452|20968|6|35|50240.40|0.01|0.00|A|F|1992-04-14|1992-04-28|1992-05-03|DELIVER IN PERSON|SHIP|lly regula| +64525|275725|736|1|40|68028.40|0.04|0.00|A|F|1994-04-09|1994-03-04|1994-04-30|NONE|REG AIR|requests haggle carefully alongside of| +64525|101767|1768|2|49|86669.24|0.00|0.01|A|F|1994-03-21|1994-02-27|1994-03-23|COLLECT COD|MAIL|ts wake quickly slyly ironic ideas| +64526|628291|28292|1|7|8534.82|0.09|0.02|N|F|1995-06-13|1995-06-21|1995-07-11|NONE|RAIL|al excuses haggle furiously sly| +64526|674761|49788|2|28|48600.44|0.02|0.05|R|F|1995-05-25|1995-06-03|1995-06-14|TAKE BACK RETURN|SHIP|es. final pinto beans wak| +64526|699118|49119|3|17|18990.36|0.05|0.05|N|O|1995-08-04|1995-06-21|1995-09-02|NONE|RAIL|, even deposits across t| +64527|54767|42271|1|14|24104.64|0.01|0.00|R|F|1994-02-05|1994-02-02|1994-02-19|DELIVER IN PERSON|FOB|after the slyly f| +64527|462357|49885|2|26|34302.58|0.05|0.01|A|F|1993-12-03|1994-01-06|1993-12-15|NONE|REG AIR| theodolites afte| +64527|826331|26332|3|2|2514.58|0.05|0.03|R|F|1994-02-19|1993-12-08|1994-03-11|TAKE BACK RETURN|TRUCK|ies cajole blithely blithely ironic pearls.| +64527|140645|40646|4|19|32027.16|0.03|0.08|R|F|1993-11-28|1993-12-16|1993-11-29|TAKE BACK RETURN|REG AIR|tween the busily un| +64527|806369|43918|5|49|62490.68|0.10|0.03|A|F|1994-03-05|1993-12-25|1994-03-12|COLLECT COD|AIR|nal, ironic| +64527|636803|24340|6|34|59152.18|0.06|0.04|R|F|1993-12-03|1993-12-22|1993-12-16|NONE|RAIL| according| +64527|736048|23591|7|37|40108.37|0.09|0.05|A|F|1993-12-09|1994-02-01|1993-12-30|TAKE BACK RETURN|REG AIR|ar dependencies int| +64552|754476|42022|1|36|55095.84|0.10|0.03|N|O|1996-02-01|1996-01-11|1996-02-10|NONE|MAIL|ts wake blithely silent reques| +64552|465853|40872|2|9|16369.47|0.08|0.05|N|O|1995-10-24|1995-12-23|1995-11-10|TAKE BACK RETURN|SHIP|ly ironic ideas. furiously ironic cour| +64552|574636|49659|3|13|22237.93|0.04|0.07|N|O|1996-01-13|1995-12-15|1996-01-26|COLLECT COD|TRUCK|e carefull| +64553|471403|33913|1|4|5497.52|0.02|0.04|N|O|1998-07-16|1998-08-15|1998-08-03|TAKE BACK RETURN|RAIL|y? unusual, bold pa| +64553|854548|4549|2|11|16527.50|0.08|0.00|N|O|1998-08-01|1998-09-11|1998-08-26|COLLECT COD|MAIL|xpress accounts against the ironic re| +64553|380625|5640|3|6|10233.66|0.09|0.01|N|O|1998-11-13|1998-10-08|1998-11-28|TAKE BACK RETURN|FOB|uickly final deposit| +64554|110485|35490|1|27|40377.96|0.04|0.08|R|F|1993-08-10|1993-06-11|1993-08-15|TAKE BACK RETURN|FOB|s sleep fluffily sly ideas. slyly regular | +64554|915622|15623|2|39|63865.62|0.01|0.03|A|F|1993-08-28|1993-07-29|1993-09-25|TAKE BACK RETURN|REG AIR|onic theodolites nag slyly express sheaves.| +64555|492202|42203|1|2|2388.36|0.09|0.03|A|F|1994-01-30|1994-03-25|1994-02-03|TAKE BACK RETURN|AIR|equests doze blithely. quickly pending requ| +64556|990183|15222|1|44|56018.16|0.02|0.01|R|F|1992-10-10|1992-11-12|1992-11-02|TAKE BACK RETURN|FOB|bold attainments engage blithely.| +64556|2973|15474|2|46|86294.62|0.09|0.08|A|F|1992-12-29|1992-11-03|1993-01-13|TAKE BACK RETURN|TRUCK| even depo| +64556|963573|1131|3|16|26184.48|0.07|0.08|A|F|1992-11-17|1992-11-03|1992-11-23|COLLECT COD|MAIL|gular pinto beans doubt along th| +64556|765658|15659|4|41|70668.42|0.00|0.01|R|F|1992-11-18|1992-11-07|1992-12-15|NONE|REG AIR|es! slyly unusual | +64556|399315|36837|5|47|66472.10|0.10|0.01|R|F|1992-11-03|1992-11-07|1992-11-23|TAKE BACK RETURN|REG AIR| furiously| +64557|321356|8875|1|18|24792.12|0.03|0.06|N|O|1998-05-16|1998-05-17|1998-05-30|COLLECT COD|AIR|uick foxes. | +64557|18092|18093|2|33|33332.97|0.09|0.06|N|O|1998-04-02|1998-05-16|1998-04-26|TAKE BACK RETURN|TRUCK|, pending ideas wake slyl| +64557|67947|30449|3|12|22979.28|0.04|0.03|N|O|1998-04-19|1998-05-03|1998-04-24|COLLECT COD|TRUCK|regular theodol| +64557|972047|9605|4|27|30213.00|0.01|0.05|N|O|1998-06-15|1998-05-25|1998-07-09|TAKE BACK RETURN|FOB|gle according t| +64557|186458|23968|5|3|4633.35|0.07|0.06|N|O|1998-03-31|1998-05-04|1998-04-13|DELIVER IN PERSON|MAIL|lithely idle, ironic | +64558|93443|43444|1|48|68949.12|0.04|0.01|R|F|1993-04-27|1993-04-22|1993-05-05|NONE|REG AIR|hely accord| +64558|491896|16915|2|23|43421.01|0.04|0.06|A|F|1993-06-23|1993-06-12|1993-07-22|DELIVER IN PERSON|FOB| fluffily ironic requests across | +64558|291971|16982|3|10|19629.60|0.00|0.01|R|F|1993-05-29|1993-06-10|1993-06-28|COLLECT COD|RAIL| slyly regular | +64559|111688|11689|1|32|54389.76|0.05|0.08|A|F|1993-12-22|1994-02-21|1994-01-03|NONE|AIR|ss the furiously| +64559|130883|18390|2|33|63158.04|0.07|0.02|R|F|1994-01-30|1994-02-03|1994-02-13|TAKE BACK RETURN|TRUCK|pinto beans | +64559|742801|5316|3|20|36875.40|0.10|0.02|A|F|1993-12-21|1994-01-18|1993-12-29|NONE|FOB|y final asy| +64559|243905|43906|4|34|62862.26|0.02|0.04|R|F|1994-01-16|1994-02-08|1994-01-28|DELIVER IN PERSON|RAIL| pinto beans. express instructions| +64584|230456|5465|1|34|47138.96|0.07|0.01|R|F|1994-07-14|1994-05-27|1994-08-02|COLLECT COD|RAIL|ally final de| +64584|270992|20993|2|37|72630.26|0.10|0.03|A|F|1994-05-16|1994-06-07|1994-05-22|TAKE BACK RETURN|SHIP|ecial deposits haggle quickly bo| +64584|558135|8136|3|48|57269.28|0.01|0.02|A|F|1994-03-27|1994-06-03|1994-04-23|COLLECT COD|SHIP|y ironic requests ar| +64584|559697|34720|4|35|61483.45|0.04|0.00|A|F|1994-04-28|1994-05-16|1994-05-15|TAKE BACK RETURN|RAIL|tions are quickly around the| +64584|823130|35647|5|24|25274.16|0.09|0.08|R|F|1994-07-03|1994-06-08|1994-07-17|COLLECT COD|REG AIR| pinto beans | +64584|334145|46652|6|48|56598.24|0.00|0.06|R|F|1994-05-16|1994-04-26|1994-05-17|COLLECT COD|FOB|ly bold foxes caj| +64584|961365|23885|7|48|68463.36|0.00|0.08|A|F|1994-05-26|1994-06-16|1994-06-04|COLLECT COD|REG AIR|lithely regular pinto beans. quickly unus| +64585|645368|7881|1|1|1313.33|0.06|0.04|A|F|1993-02-15|1993-02-17|1993-03-03|COLLECT COD|MAIL|uickly special instructions | +64585|695521|33061|2|33|50044.17|0.04|0.04|R|F|1993-03-31|1993-02-15|1993-04-05|NONE|TRUCK|al pinto beans after t| +64585|612552|12553|3|6|8787.12|0.07|0.04|A|F|1993-04-03|1993-04-07|1993-04-29|NONE|RAIL|haggle blithely. furiously ironic platelets| +64586|233829|21342|1|5|8814.05|0.09|0.05|N|O|1997-08-01|1997-09-24|1997-08-24|NONE|MAIL|lyly ironic deposits boost carefully expres| +64586|957393|19913|2|46|66716.10|0.07|0.08|N|O|1997-07-09|1997-09-17|1997-07-23|COLLECT COD|TRUCK|the furiously unusual excuses. fi| +64586|889193|14228|3|15|17732.25|0.08|0.00|N|O|1997-09-17|1997-08-23|1997-09-18|DELIVER IN PERSON|MAIL|quickly fluffily brave req| +64586|663961|1501|4|1|1924.93|0.07|0.03|N|O|1997-07-14|1997-09-11|1997-07-30|COLLECT COD|RAIL|ds. finally even foxes wake furi| +64586|187301|24811|5|1|1388.30|0.04|0.07|N|O|1997-07-27|1997-08-03|1997-07-31|COLLECT COD|FOB|kages x-ray except the perm| +64587|847654|35203|1|45|72072.45|0.08|0.01|N|O|1997-07-09|1997-06-25|1997-07-11|NONE|MAIL| special, fl| +64587|518663|6194|2|34|57175.76|0.05|0.02|N|O|1997-07-11|1997-07-21|1997-08-09|COLLECT COD|SHIP|requests? regular | +64587|159323|46833|3|8|11058.56|0.07|0.08|N|O|1997-07-11|1997-07-10|1997-07-31|DELIVER IN PERSON|REG AIR| unusual deposits wak| +64587|727941|40456|4|7|13782.37|0.06|0.03|N|O|1997-08-14|1997-07-09|1997-08-23|COLLECT COD|REG AIR|ckages nag carefull| +64588|64952|2456|1|29|55591.55|0.09|0.04|R|F|1994-12-31|1994-12-16|1995-01-29|NONE|FOB|ts cajole about t| +64588|633482|8507|2|1|1415.45|0.04|0.07|A|F|1995-02-04|1994-12-23|1995-02-07|DELIVER IN PERSON|SHIP|es. carefully close pinto beans was s| +64588|919220|31739|3|8|9913.44|0.02|0.06|A|F|1994-11-06|1994-12-15|1994-12-05|COLLECT COD|TRUCK|fully silent asymptotes. ironic, s| +64589|178138|40642|1|4|4864.52|0.03|0.00|N|O|1997-08-09|1997-07-28|1997-08-21|DELIVER IN PERSON|REG AIR|unusual pinto be| +64589|961063|11064|2|38|42712.76|0.01|0.07|N|O|1997-06-05|1997-07-29|1997-06-23|NONE|MAIL|ly bold dep| +64590|762801|25317|1|9|16773.93|0.07|0.03|A|F|1993-10-04|1993-10-18|1993-11-03|NONE|FOB|furiously according to | +64590|391153|28675|2|1|1244.14|0.06|0.07|R|F|1993-11-18|1993-09-14|1993-12-12|NONE|TRUCK|xcuses nag carefully according to the | +64590|95973|45974|3|19|37410.43|0.03|0.02|R|F|1993-10-16|1993-10-01|1993-10-30|COLLECT COD|AIR| fluffily fluffily| +64590|9539|47040|4|44|63735.32|0.07|0.01|A|F|1993-08-24|1993-09-16|1993-09-11|NONE|AIR|ndencies. ironic deposits | +64590|321367|33874|5|7|9718.45|0.10|0.02|A|F|1993-10-24|1993-09-12|1993-11-04|NONE|SHIP|. slyly even depende| +64590|204884|29893|6|28|50088.36|0.06|0.07|A|F|1993-10-20|1993-10-04|1993-11-15|COLLECT COD|REG AIR|uests. reg| +64591|4272|4273|1|23|27054.21|0.08|0.04|N|O|1998-01-01|1997-12-16|1998-01-07|NONE|FOB| accounts hag| +64591|789157|39158|2|16|19937.92|0.04|0.02|N|O|1997-10-13|1997-11-03|1997-11-08|NONE|MAIL|nal theodolites serve slyly. blithely fina| +64591|352359|27374|3|24|33872.16|0.00|0.01|N|O|1997-12-19|1997-11-02|1998-01-01|TAKE BACK RETURN|MAIL|ular asymptotes. blithely| +64591|95848|45849|4|46|84816.64|0.03|0.08|N|O|1997-10-25|1997-12-29|1997-10-29|COLLECT COD|REG AIR|sits. slyly bold packages shall h| +64591|907298|19817|5|36|46989.00|0.09|0.05|N|O|1997-10-31|1997-11-03|1997-11-19|COLLECT COD|FOB|d, regular asymptotes wake slyly quic| +64591|956094|31133|6|22|25301.10|0.03|0.02|N|O|1997-12-15|1997-11-17|1998-01-05|COLLECT COD|RAIL|ual ideas. packages| +64616|468400|30910|1|35|47893.30|0.06|0.05|N|O|1996-08-30|1996-07-21|1996-09-06|COLLECT COD|REG AIR| special packages sleep furiously| +64616|396631|21646|2|37|63921.94|0.08|0.01|N|O|1996-07-18|1996-08-02|1996-08-04|DELIVER IN PERSON|FOB|re blithely agains| +64616|162117|49627|3|8|9432.88|0.07|0.06|N|O|1996-09-05|1996-08-07|1996-09-17|TAKE BACK RETURN|REG AIR|d the package| +64616|697998|47999|4|13|25947.48|0.02|0.02|N|O|1996-09-08|1996-07-15|1996-09-29|COLLECT COD|RAIL|y special depo| +64617|566255|3789|1|7|9248.61|0.02|0.01|A|F|1994-11-02|1994-10-21|1994-11-23|TAKE BACK RETURN|SHIP|he ironically unusual packag| +64617|36699|36700|2|12|19628.28|0.08|0.05|R|F|1994-10-02|1994-09-15|1994-10-04|NONE|MAIL|ts. blithely regular dependencies un| +64617|795011|7527|3|41|45345.18|0.06|0.07|R|F|1994-09-07|1994-10-15|1994-09-17|COLLECT COD|TRUCK|uffily regular dependencies. car| +64618|287517|12528|1|43|64693.50|0.01|0.01|N|O|1996-04-20|1996-05-20|1996-05-13|COLLECT COD|REG AIR| fluffily. foxes | +64619|775210|25211|1|30|38555.40|0.05|0.02|N|O|1998-01-26|1997-12-26|1998-02-12|COLLECT COD|MAIL|ual requests. fluffily | +64619|948569|23606|2|20|32350.40|0.04|0.07|N|O|1998-02-20|1997-12-05|1998-03-01|TAKE BACK RETURN|SHIP|ges. regul| +64619|598999|36533|3|29|60841.13|0.03|0.02|N|O|1997-12-01|1997-12-14|1997-12-22|DELIVER IN PERSON|REG AIR|s above the deposits sleep against t| +64619|370816|33324|4|19|35849.20|0.02|0.03|N|O|1997-11-28|1997-12-04|1997-12-07|TAKE BACK RETURN|RAIL|yly ironic packages wake | +64619|300169|170|5|25|29228.75|0.09|0.08|N|O|1997-12-13|1997-12-04|1998-01-07|NONE|MAIL|st slyly. special tit| +64619|923668|48705|6|7|11841.34|0.02|0.08|N|O|1998-01-11|1997-12-20|1998-01-27|COLLECT COD|FOB|s sleep. slyly| +64619|73893|11397|7|49|91477.61|0.08|0.02|N|O|1998-01-31|1997-12-27|1998-02-05|TAKE BACK RETURN|REG AIR|y bold packages wake furiously unu| +64620|913029|38066|1|13|13545.74|0.07|0.08|N|O|1997-01-12|1997-02-16|1997-02-05|DELIVER IN PERSON|SHIP|ructions. regular instructions nag | +64620|276582|14098|2|19|29612.83|0.09|0.07|N|O|1997-02-23|1997-02-07|1997-03-07|DELIVER IN PERSON|SHIP|the blithely| +64620|505542|5543|3|12|18570.24|0.06|0.03|N|O|1997-01-13|1997-02-24|1997-01-15|TAKE BACK RETURN|TRUCK|eodolites hagg| +64620|643981|31518|4|9|17324.55|0.07|0.08|N|O|1997-02-15|1997-03-11|1997-02-24|DELIVER IN PERSON|AIR|uickly unusual foxes. carefu| +64620|375335|37843|5|37|52181.84|0.03|0.07|N|O|1997-01-14|1997-03-06|1997-01-20|COLLECT COD|AIR|y. ironic ideas| +64621|521765|34276|1|38|67896.12|0.10|0.02|N|O|1997-09-02|1997-10-22|1997-09-09|TAKE BACK RETURN|SHIP|lar requests nag against the thin,| +64621|292686|17697|2|41|68825.47|0.01|0.00|N|O|1997-11-29|1997-10-21|1997-12-14|DELIVER IN PERSON|TRUCK|st blithel| +64621|161521|24025|3|47|74378.44|0.01|0.06|N|O|1997-11-18|1997-09-30|1997-11-26|COLLECT COD|AIR|ily slyly stealthy accounts. iron| +64622|348017|48018|1|18|19170.00|0.08|0.04|A|F|1995-04-22|1995-05-03|1995-04-26|NONE|RAIL|gle carefu| +64623|259453|46969|1|22|31073.68|0.07|0.05|A|F|1995-03-25|1995-03-28|1995-04-09|DELIVER IN PERSON|SHIP|ly above the bold, special dependencies| +64623|621644|21645|2|18|28180.98|0.00|0.02|A|F|1995-03-27|1995-04-16|1995-03-31|DELIVER IN PERSON|FOB|he carefully final packages. ca| +64623|954044|29083|3|29|31842.00|0.00|0.06|R|F|1995-05-27|1995-05-07|1995-06-14|NONE|RAIL|ithely final ideas betwee| +64623|611776|24289|4|36|60758.64|0.10|0.00|A|F|1995-04-13|1995-03-28|1995-05-04|DELIVER IN PERSON|SHIP|theodolites wake blithely above the blith| +64623|103097|28102|5|43|47303.87|0.08|0.08|R|F|1995-04-17|1995-04-18|1995-05-03|COLLECT COD|TRUCK|f the regular foxes. quickly special wate| +64623|750359|37905|6|34|47916.88|0.03|0.07|R|F|1995-03-20|1995-04-06|1995-04-01|COLLECT COD|REG AIR|tions against the even accounts run care| +64623|283261|45767|7|33|41060.25|0.08|0.00|A|F|1995-03-02|1995-05-04|1995-03-18|NONE|REG AIR|s. ironic, ironic deposits boost furi| +64648|751080|38626|1|31|35062.55|0.10|0.07|N|O|1996-04-16|1996-03-13|1996-05-13|TAKE BACK RETURN|FOB|kages cajol| +64648|392321|42322|2|49|69252.19|0.00|0.01|N|O|1996-04-30|1996-04-03|1996-05-16|TAKE BACK RETURN|TRUCK|instructions. quick| +64648|726886|39401|3|26|49734.10|0.04|0.05|N|O|1996-04-25|1996-03-30|1996-05-19|NONE|SHIP|nod blithely special ideas. furiously bo| +64648|769690|7236|4|36|63347.76|0.02|0.07|N|O|1996-02-01|1996-03-10|1996-02-25|DELIVER IN PERSON|REG AIR| the quickly regu| +64648|173450|10960|5|27|41133.15|0.08|0.02|N|O|1996-04-07|1996-03-30|1996-04-25|NONE|TRUCK|y special foxe| +64648|165388|40395|6|8|11627.04|0.08|0.03|N|O|1996-01-23|1996-04-09|1996-02-04|TAKE BACK RETURN|FOB|final plate| +64648|673006|23007|7|10|9789.70|0.02|0.06|N|O|1996-04-17|1996-04-13|1996-05-03|DELIVER IN PERSON|SHIP|ally. blithely express in| +64649|207175|32184|1|50|54108.00|0.07|0.05|N|O|1997-10-16|1997-09-21|1997-10-19|COLLECT COD|RAIL|s sleep furiously. ev| +64649|988186|13225|2|11|14015.54|0.00|0.08|N|O|1997-11-30|1997-09-07|1997-12-19|TAKE BACK RETURN|SHIP|counts. care| +64649|437139|49648|3|48|51653.28|0.06|0.02|N|O|1997-08-10|1997-09-27|1997-08-29|DELIVER IN PERSON|REG AIR|e furiously busy courts haggle blithel| +64649|987794|12833|4|23|43280.25|0.05|0.00|N|O|1997-08-17|1997-10-19|1997-09-09|TAKE BACK RETURN|TRUCK|unts play evenly ideas. carefu| +64649|836958|49475|5|35|66321.85|0.10|0.06|N|O|1997-11-22|1997-10-21|1997-12-06|TAKE BACK RETURN|FOB|equests. bold foxes wake sl| +64649|751070|1071|6|30|33631.20|0.08|0.02|N|O|1997-09-04|1997-10-24|1997-10-03|DELIVER IN PERSON|SHIP|use blithely befor| +64649|223013|10526|7|34|31824.00|0.06|0.01|N|O|1997-09-15|1997-10-16|1997-09-25|NONE|FOB|de of the carefully even| +64650|169915|44922|1|20|39698.20|0.01|0.07|A|F|1993-02-06|1992-12-30|1993-02-17|TAKE BACK RETURN|SHIP| pending theodolites haggle bli| +64650|759755|47301|2|5|9073.60|0.03|0.07|A|F|1992-11-20|1993-01-09|1992-11-25|DELIVER IN PERSON|REG AIR|asymptotes. blithely even packages wake flu| +64650|195146|45147|3|18|22340.52|0.08|0.07|R|F|1993-03-04|1993-01-16|1993-03-06|DELIVER IN PERSON|AIR|pending forges sleep after the car| +64650|811741|24258|4|4|6610.80|0.04|0.00|A|F|1992-12-13|1993-01-13|1992-12-29|COLLECT COD|FOB|unts integrate carefully among the de| +64650|928928|3965|5|28|54792.64|0.08|0.00|R|F|1992-11-12|1993-01-20|1992-11-24|TAKE BACK RETURN|SHIP|dolites cajole | +64650|490993|16012|6|42|83326.74|0.04|0.05|A|F|1993-02-06|1992-12-15|1993-02-28|DELIVER IN PERSON|TRUCK|eans cajole furiously about the quic| +64651|217992|30497|1|31|59209.38|0.04|0.00|N|O|1997-04-17|1997-03-14|1997-04-29|TAKE BACK RETURN|SHIP|inly special pac| +64651|776376|1407|2|41|59545.94|0.02|0.06|N|O|1997-05-14|1997-04-30|1997-05-18|TAKE BACK RETURN|MAIL|arefully expre| +64651|536516|11537|3|30|46574.70|0.09|0.00|N|O|1997-04-21|1997-05-13|1997-05-19|DELIVER IN PERSON|SHIP|r the furiously even requests must have| +64651|216693|41702|4|18|28974.24|0.00|0.00|N|O|1997-05-09|1997-04-05|1997-05-26|COLLECT COD|AIR|gular decoys integra| +64651|949680|12199|5|33|57078.12|0.06|0.01|N|O|1997-05-22|1997-04-07|1997-06-16|TAKE BACK RETURN|MAIL|equests hinder blithely blithely qui| +64652|190864|40865|1|25|48871.50|0.00|0.06|N|O|1996-11-20|1996-09-02|1996-11-29|COLLECT COD|AIR|cally. accou| +64653|204801|42314|1|6|10234.74|0.08|0.08|N|O|1995-08-30|1995-11-06|1995-09-20|NONE|REG AIR|usual, regular asymptotes cajole carefully| +64654|537936|447|1|9|17765.19|0.01|0.07|A|F|1993-08-24|1993-06-23|1993-09-07|COLLECT COD|RAIL|rding to the final foxes. quickl| +64654|89694|27198|2|11|18520.59|0.01|0.07|R|F|1993-08-10|1993-08-08|1993-08-25|DELIVER IN PERSON|AIR|s besides the boldly unusual packages x-ray| +64655|951199|1200|1|6|7500.90|0.08|0.06|N|O|1998-04-26|1998-07-10|1998-05-20|DELIVER IN PERSON|SHIP|nstructions affix quickly slyly i| +64680|132671|32672|1|7|11925.69|0.00|0.07|N|O|1997-11-26|1997-12-29|1997-12-02|COLLECT COD|AIR|sts. ironic instructions sleep. sl| +64681|54431|29434|1|40|55417.20|0.10|0.00|N|O|1996-02-16|1996-01-18|1996-02-22|COLLECT COD|AIR|ades. carefully bold theodolites are | +64681|819216|19217|2|6|6811.02|0.08|0.03|N|O|1995-12-11|1996-01-24|1995-12-20|TAKE BACK RETURN|RAIL|ffix. quickly | +64681|556493|6494|3|4|6197.88|0.06|0.04|N|O|1996-02-06|1996-01-25|1996-02-21|TAKE BACK RETURN|MAIL|al, special accounts cajole blithel| +64681|967919|5477|4|13|25829.31|0.04|0.06|N|O|1995-10-30|1995-12-17|1995-11-27|TAKE BACK RETURN|REG AIR|ly bold accounts! pending saut| +64681|797947|35493|5|19|38853.29|0.04|0.04|N|O|1995-12-18|1996-01-02|1995-12-24|NONE|FOB|s are finally according to the slyly expre| +64681|82405|7408|6|18|24973.20|0.10|0.08|N|O|1995-12-08|1996-01-10|1996-01-01|NONE|AIR|n deposits detect. unus| +64681|966420|16421|7|30|44591.40|0.09|0.04|N|O|1995-12-03|1996-01-07|1995-12-11|TAKE BACK RETURN|FOB|s nag bravely regular deposits. slyly sp| +64682|610311|10312|1|47|57400.16|0.09|0.06|N|O|1997-05-14|1997-08-02|1997-05-29|NONE|RAIL| slyly deposits. slyly sp| +64682|492672|17691|2|32|53268.80|0.02|0.08|N|O|1997-07-15|1997-06-16|1997-07-23|NONE|SHIP|ideas sleep ab| +64682|335578|23097|3|5|8067.80|0.07|0.03|N|O|1997-05-24|1997-07-02|1997-05-25|TAKE BACK RETURN|FOB|final pinto bean| +64683|527684|2705|1|48|82159.68|0.03|0.08|N|O|1995-12-15|1996-01-04|1995-12-17|TAKE BACK RETURN|TRUCK| even theodolites; ironic foxes above| +64683|770292|45323|2|13|17709.38|0.10|0.02|N|O|1995-11-21|1995-11-19|1995-11-22|DELIVER IN PERSON|TRUCK|ckages. furiously final gifts nag| +64683|293822|31338|3|7|12710.67|0.07|0.05|N|O|1995-12-27|1995-12-12|1996-01-05|NONE|AIR|onic accounts! blithely bold reques| +64684|188490|13497|1|43|67875.07|0.00|0.04|R|F|1994-12-11|1994-12-10|1994-12-24|TAKE BACK RETURN|AIR|after the furiously f| +64684|945556|20593|2|24|38436.24|0.10|0.06|A|F|1995-01-12|1994-11-03|1995-02-05|DELIVER IN PERSON|FOB|y slyly about the carefully final the| +64684|948717|36272|3|30|52970.10|0.03|0.03|R|F|1994-10-23|1994-11-14|1994-11-09|DELIVER IN PERSON|FOB|ing foxes. deposits hagg| +64685|455788|43316|1|30|52312.80|0.08|0.00|N|O|1997-09-26|1997-09-15|1997-09-29|TAKE BACK RETURN|MAIL|cies. blithely regular requests wake blithe| +64686|35958|48459|1|48|90909.60|0.05|0.07|N|O|1998-11-14|1998-09-07|1998-11-23|DELIVER IN PERSON|RAIL|ce of the c| +64686|340096|40097|2|26|29538.08|0.04|0.06|N|O|1998-08-05|1998-10-18|1998-08-24|COLLECT COD|SHIP|furiously bold theodolites. si| +64686|985306|22864|3|13|18086.38|0.09|0.06|N|O|1998-10-22|1998-10-04|1998-11-02|DELIVER IN PERSON|TRUCK| deposits alongside of th| +64686|36046|36047|4|25|24551.00|0.03|0.08|N|O|1998-08-26|1998-10-01|1998-08-28|NONE|RAIL|the bold, fin| +64687|297883|10389|1|9|16927.83|0.03|0.01|N|O|1998-04-05|1998-04-01|1998-04-13|COLLECT COD|MAIL|riously regular packages integrate fluff| +64687|517396|29907|2|38|53708.06|0.05|0.08|N|O|1998-03-24|1998-04-10|1998-04-21|COLLECT COD|RAIL|ully permanent foxes sleep according to | +64687|869978|32496|3|47|91552.71|0.04|0.01|N|O|1998-05-28|1998-04-30|1998-06-22|TAKE BACK RETURN|TRUCK|usly special | +64687|715870|3413|4|26|49031.84|0.00|0.00|N|O|1998-05-25|1998-03-26|1998-05-26|DELIVER IN PERSON|REG AIR|sts-- carefully regular pinto beans det| +64687|612045|49582|5|21|20097.21|0.08|0.06|N|O|1998-03-12|1998-03-17|1998-03-31|COLLECT COD|REG AIR|ar requests use bl| +64712|753588|28619|1|24|39397.20|0.08|0.01|N|O|1998-05-01|1998-05-24|1998-05-29|COLLECT COD|REG AIR|es. carefully| +64712|539143|1654|2|39|46102.68|0.08|0.01|N|O|1998-05-05|1998-06-19|1998-05-28|TAKE BACK RETURN|MAIL|furiously express packages hagg| +64712|364342|39357|3|36|50627.88|0.10|0.06|N|O|1998-04-11|1998-05-30|1998-04-20|COLLECT COD|MAIL|s boost blithely ironic pinto be| +64713|426886|39395|1|13|23567.18|0.00|0.07|A|F|1994-09-05|1994-08-12|1994-09-09|DELIVER IN PERSON|MAIL|. always regular dep| +64713|664001|26515|2|20|19299.40|0.00|0.08|A|F|1994-07-13|1994-08-24|1994-08-05|DELIVER IN PERSON|TRUCK|ithely express p| +64713|858632|8633|3|42|66804.78|0.08|0.01|A|F|1994-09-03|1994-07-30|1994-09-21|NONE|TRUCK|sleep slyly special exc| +64713|15880|40881|4|42|75426.96|0.04|0.04|A|F|1994-08-10|1994-07-12|1994-08-26|COLLECT COD|SHIP|nal ideas use even accounts. flu| +64713|880225|17777|5|42|50617.56|0.04|0.00|A|F|1994-07-31|1994-07-23|1994-08-02|NONE|MAIL|unts. slyly bold deposits abo| +64714|40408|27909|1|10|13484.00|0.07|0.06|A|F|1993-05-21|1993-04-28|1993-05-22|TAKE BACK RETURN|REG AIR|ully. blithely bold deposits after| +64714|121031|33534|2|44|46289.32|0.00|0.06|A|F|1993-05-15|1993-05-25|1993-05-21|DELIVER IN PERSON|MAIL|l ideas cajole sil| +64714|156401|6402|3|6|8744.40|0.02|0.06|A|F|1993-04-30|1993-05-02|1993-05-26|NONE|MAIL|efully above the | +64714|622804|35317|4|25|43169.25|0.06|0.00|R|F|1993-04-06|1993-04-20|1993-05-01|TAKE BACK RETURN|SHIP|ts. ironic package| +64715|464679|27189|1|44|72320.60|0.02|0.01|N|O|1996-12-26|1997-01-31|1997-01-24|COLLECT COD|SHIP|c packages. furiously| +64715|850479|12997|2|24|34306.32|0.02|0.02|N|O|1997-02-26|1997-01-22|1997-03-22|DELIVER IN PERSON|REG AIR|busy instructions. thin package| +64715|989858|14897|3|50|97390.50|0.10|0.06|N|O|1997-01-25|1997-02-04|1997-01-28|TAKE BACK RETURN|SHIP|ions breach across the slyl| +64715|532506|45017|4|42|64616.16|0.09|0.00|N|O|1997-02-05|1997-01-05|1997-02-20|COLLECT COD|TRUCK|slyly pending excus| +64715|811955|36988|5|11|20536.01|0.05|0.01|N|O|1997-01-01|1997-01-19|1997-01-07|COLLECT COD|SHIP|nusual requests? accounts wake. slyly | +64715|513155|38176|6|49|57238.37|0.10|0.02|N|O|1997-03-20|1997-03-03|1997-04-15|NONE|MAIL|osits will hav| +64715|588753|1265|7|45|82877.85|0.02|0.01|N|O|1996-12-27|1997-01-05|1997-01-08|COLLECT COD|REG AIR| sleep ruthlessly. fluffily final | +64716|165961|15962|1|21|42566.16|0.00|0.01|R|F|1993-10-03|1993-09-07|1993-10-09|DELIVER IN PERSON|RAIL|sly even platelets sleep across the| +64716|301608|39127|2|43|69212.37|0.04|0.00|R|F|1993-06-27|1993-08-30|1993-07-06|NONE|FOB|st across th| +64717|660372|10373|1|40|53293.60|0.05|0.06|N|O|1996-01-10|1996-03-01|1996-01-23|DELIVER IN PERSON|RAIL|ress packages. carefully special d| +64717|870288|20289|2|43|54104.32|0.05|0.05|N|O|1996-03-22|1996-03-19|1996-04-11|COLLECT COD|TRUCK|r the furi| +64717|914199|26718|3|46|55804.90|0.06|0.00|N|O|1996-03-01|1996-03-06|1996-03-08|COLLECT COD|REG AIR|about the even pi| +64717|931694|19249|4|22|37964.30|0.08|0.06|N|O|1996-01-18|1996-02-02|1996-02-15|TAKE BACK RETURN|TRUCK|uriously against the q| +64717|980534|30535|5|27|43591.23|0.00|0.05|N|O|1996-01-29|1996-03-11|1996-02-26|NONE|AIR| carefully. furiously | +64717|827720|40237|6|12|19772.16|0.06|0.06|N|O|1996-03-10|1996-03-13|1996-03-24|TAKE BACK RETURN|AIR| detect furiously special dolphin| +64718|763416|38447|1|38|56216.44|0.00|0.04|N|O|1996-04-21|1996-05-01|1996-04-24|DELIVER IN PERSON|REG AIR|al asymptotes. regular, final foxes sle| +64718|727744|2773|2|30|53151.30|0.03|0.02|N|O|1996-04-24|1996-06-09|1996-05-05|TAKE BACK RETURN|FOB|eodolites. slyly final instructions | +64718|182747|20257|3|6|10978.44|0.00|0.01|N|O|1996-06-14|1996-05-12|1996-07-01|TAKE BACK RETURN|AIR|yly even hockey | +64718|427170|14695|4|12|13165.80|0.07|0.00|N|O|1996-05-18|1996-04-20|1996-05-23|TAKE BACK RETURN|RAIL|requests. slyly ironic dolphins haggle iron| +64718|437953|37954|5|29|54836.97|0.00|0.08|N|O|1996-05-10|1996-05-02|1996-05-13|COLLECT COD|SHIP|ts-- blithely even packages wake| +64718|673257|10797|6|43|52899.46|0.02|0.07|N|O|1996-06-21|1996-04-10|1996-06-23|DELIVER IN PERSON|RAIL|ep. stealthy, final de| +64719|663646|13647|1|29|46678.69|0.08|0.00|A|F|1993-10-28|1993-11-06|1993-10-29|COLLECT COD|RAIL| carefully express ide| +64719|896449|21484|2|22|31798.80|0.02|0.05|R|F|1993-10-10|1993-11-08|1993-11-03|TAKE BACK RETURN|AIR|e always ironic accounts | +64719|608108|8109|3|43|43691.01|0.04|0.00|A|F|1993-11-22|1993-11-12|1993-11-23|DELIVER IN PERSON|AIR| grouches haggl| +64719|456540|19050|4|36|53874.72|0.08|0.05|R|F|1993-11-07|1993-10-31|1993-11-26|DELIVER IN PERSON|AIR|y pending requests are| +64744|203086|3087|1|18|17803.26|0.08|0.01|A|F|1993-12-07|1994-01-25|1993-12-23|TAKE BACK RETURN|REG AIR|totes nag about the slyly e| +64744|263038|25544|2|6|6006.12|0.09|0.06|A|F|1993-11-18|1994-01-02|1993-12-10|DELIVER IN PERSON|REG AIR|lar, final requests so| +64744|865763|3315|3|28|48404.16|0.05|0.05|A|F|1994-03-06|1994-01-25|1994-03-15|DELIVER IN PERSON|MAIL| instructions are unusual | +64744|864375|14376|4|43|57591.19|0.07|0.05|R|F|1993-12-15|1994-01-01|1994-01-07|NONE|TRUCK| alongside of the enticingly| +64744|539008|26539|5|2|2093.96|0.08|0.04|A|F|1994-02-05|1994-01-17|1994-02-22|COLLECT COD|AIR| pinto beans haggle above th| +64744|102889|15392|6|18|34053.84|0.02|0.00|R|F|1993-12-08|1994-02-11|1994-01-02|COLLECT COD|MAIL|ly after the ideas. quickly final deposits | +64744|247253|22262|7|42|50410.08|0.01|0.05|A|F|1994-02-24|1994-01-02|1994-03-10|NONE|TRUCK|unts-- pending, iron| +64745|574674|24675|1|5|8743.25|0.09|0.07|N|O|1997-09-30|1997-07-30|1997-10-08|TAKE BACK RETURN|AIR|ic accounts. fluffily final accounts| +64745|542049|4560|2|32|34912.64|0.00|0.02|N|O|1997-09-02|1997-08-03|1997-09-25|DELIVER IN PERSON|MAIL|al excuses. carefully bold th| +64745|217321|4834|3|36|44579.16|0.06|0.01|N|O|1997-09-07|1997-07-31|1997-09-28|DELIVER IN PERSON|TRUCK|s cajole furiously| +64745|513119|13120|4|38|43019.42|0.09|0.07|N|O|1997-07-10|1997-07-14|1997-07-29|NONE|TRUCK|its. requests sl| +64745|981012|43532|5|40|43718.80|0.01|0.05|N|O|1997-08-07|1997-08-21|1997-08-14|TAKE BACK RETURN|AIR|deas are af| +64745|862099|49651|6|7|7427.35|0.10|0.02|N|O|1997-07-19|1997-07-28|1997-08-10|COLLECT COD|TRUCK|egular accounts nag slyly accor| +64745|281524|19040|7|2|3011.02|0.03|0.08|N|O|1997-07-18|1997-08-29|1997-07-21|DELIVER IN PERSON|REG AIR| impress bold, r| +64746|563865|13866|1|16|30861.44|0.07|0.02|N|O|1996-07-22|1996-06-20|1996-08-08|COLLECT COD|TRUCK|e of the ruthlessly final theodoli| +64746|862874|426|2|14|25715.62|0.02|0.05|N|O|1996-06-24|1996-07-02|1996-07-09|COLLECT COD|RAIL|symptotes x-ray about the busily ir| +64746|307796|45315|3|22|39683.16|0.05|0.02|N|O|1996-07-17|1996-06-29|1996-07-22|COLLECT COD|MAIL|ts haggle. blithel| +64746|110752|35757|4|18|31729.50|0.10|0.04|N|O|1996-05-15|1996-06-11|1996-05-26|TAKE BACK RETURN|TRUCK|nts. ironic requests arou| +64746|405978|43503|5|50|94197.50|0.10|0.08|N|O|1996-05-04|1996-06-06|1996-05-27|TAKE BACK RETURN|FOB|fully ironic packages. slyly slow deposit| +64746|256570|6571|6|6|9159.36|0.01|0.02|N|O|1996-06-07|1996-06-22|1996-06-28|COLLECT COD|AIR|o beans about the carefully pend| +64746|162839|349|7|22|41840.26|0.01|0.05|N|O|1996-05-26|1996-07-02|1996-06-10|DELIVER IN PERSON|SHIP|ress requests engage quickly. regular,| +64747|827376|39893|1|37|48223.21|0.08|0.03|N|O|1997-06-28|1997-05-20|1997-07-22|DELIVER IN PERSON|FOB|ly careful accounts sleep fluf| +64747|692154|29694|2|6|6876.72|0.02|0.04|N|O|1997-04-24|1997-05-25|1997-05-11|NONE|RAIL| after the blithely speci| +64747|28512|16013|3|43|61941.93|0.08|0.02|N|O|1997-05-08|1997-05-13|1997-05-18|DELIVER IN PERSON|TRUCK| across the furiously ironic theodolite| +64747|199621|49622|4|50|86031.00|0.03|0.04|N|O|1997-04-23|1997-05-04|1997-05-22|NONE|FOB|e slyly special pinto beans. even, | +64747|25701|702|5|23|37414.10|0.02|0.05|N|O|1997-03-25|1997-06-07|1997-04-12|DELIVER IN PERSON|SHIP|ar requests boost furiously. unusual, fin| +64747|954303|29342|6|39|52933.14|0.05|0.07|N|O|1997-04-15|1997-05-13|1997-04-30|TAKE BACK RETURN|AIR|regular reque| +64747|964622|27142|7|10|16865.80|0.10|0.01|N|O|1997-06-16|1997-04-21|1997-06-26|COLLECT COD|SHIP| the furiously| +64748|395494|8002|1|21|33379.08|0.04|0.04|N|O|1995-10-30|1996-01-23|1995-11-10|DELIVER IN PERSON|MAIL|e special, ironic requests. theodol| +64748|51642|1643|2|36|57371.04|0.04|0.06|N|O|1995-12-06|1995-12-02|1996-01-05|COLLECT COD|SHIP| ironic sentiments. express d| +64748|937683|37684|3|41|70546.24|0.08|0.04|N|O|1996-02-16|1996-01-18|1996-02-17|NONE|REG AIR|latelets. carefully bol| +64749|210559|35568|1|25|36738.50|0.02|0.07|N|O|1997-02-01|1997-01-11|1997-02-25|COLLECT COD|SHIP|lphins are after the final, express| +64750|901387|13906|1|8|11106.72|0.10|0.00|N|O|1998-05-21|1998-04-07|1998-06-09|TAKE BACK RETURN|RAIL|ost except the daring courts. ironi| +64750|602058|14571|2|40|38400.80|0.05|0.05|N|O|1998-06-12|1998-03-30|1998-06-19|TAKE BACK RETURN|TRUCK|lites boost. final accounts u| +64751|191223|3727|1|10|13142.20|0.00|0.04|N|O|1996-12-07|1996-12-22|1996-12-23|COLLECT COD|TRUCK|nstructions cajole evenly about | +64751|869321|6873|2|5|6451.40|0.06|0.05|N|O|1997-01-14|1996-12-15|1997-01-18|DELIVER IN PERSON|RAIL|cial packages wake theodolite| +64751|670429|45456|3|42|58774.38|0.03|0.06|N|O|1997-01-08|1996-12-14|1997-01-18|DELIVER IN PERSON|REG AIR| express, regular mult| +64751|884723|22275|4|44|75137.92|0.06|0.00|N|O|1997-02-08|1997-01-11|1997-03-03|COLLECT COD|AIR|e slyly pen| +64751|533422|20953|5|14|20375.60|0.05|0.04|N|O|1997-02-10|1996-12-13|1997-02-27|DELIVER IN PERSON|FOB|ole fluffily instructions. carefully close | +64776|30927|5928|1|3|5573.76|0.10|0.08|R|F|1993-03-28|1993-02-18|1993-03-29|NONE|AIR|gular, regular accounts. id| +64777|130414|42917|1|35|50554.35|0.01|0.01|R|F|1993-02-03|1993-03-30|1993-02-16|DELIVER IN PERSON|AIR|ns. final platelets serve fu| +64777|858751|46303|2|34|58130.14|0.05|0.02|A|F|1993-04-16|1993-03-23|1993-05-15|TAKE BACK RETURN|FOB|. slyly regular req| +64778|935956|48475|1|45|89635.95|0.02|0.07|R|F|1993-03-22|1993-04-21|1993-03-24|NONE|FOB|lithely bold requests slee| +64778|608303|20816|2|27|32704.29|0.01|0.02|A|F|1993-03-29|1993-04-15|1993-04-08|TAKE BACK RETURN|MAIL|ions! blithely ironic account| +64778|739350|1865|3|24|33343.68|0.03|0.01|R|F|1993-04-22|1993-03-25|1993-05-03|COLLECT COD|REG AIR|unusual requests nag qu| +64778|240546|40547|4|35|52028.55|0.07|0.01|A|F|1993-03-13|1993-05-03|1993-03-29|DELIVER IN PERSON|MAIL|s affix furiously after t| +64778|846344|46345|5|16|20644.80|0.05|0.06|R|F|1993-02-16|1993-04-06|1993-03-13|COLLECT COD|AIR|d, fluffy pinto be| +64778|490634|15653|6|41|66609.01|0.00|0.06|R|F|1993-05-03|1993-03-19|1993-05-10|COLLECT COD|MAIL|cajole. slyly special dependencies ha| +64779|788539|38540|1|30|48825.00|0.02|0.00|A|F|1994-01-07|1993-12-25|1994-02-04|DELIVER IN PERSON|FOB|itaphs sleep slyly furiously regular excuse| +64779|965257|15258|2|48|63466.08|0.02|0.07|A|F|1993-11-03|1993-12-30|1993-11-15|COLLECT COD|MAIL|uickly regular pinto beans integra| +64779|64189|26691|3|1|1153.18|0.05|0.00|A|F|1993-11-30|1994-01-03|1993-12-01|COLLECT COD|REG AIR|equests cajole quickly foxes. furiously| +64779|812918|25435|4|32|58587.84|0.05|0.04|A|F|1994-02-24|1994-01-14|1994-03-12|DELIVER IN PERSON|SHIP|x slyly outside the bold, even pinto be| +64779|711556|36585|5|7|10972.64|0.06|0.04|A|F|1993-11-15|1994-01-27|1993-12-13|NONE|FOB|refully regular packages integr| +64779|111167|48674|6|28|32988.48|0.10|0.01|A|F|1994-02-04|1993-12-13|1994-02-27|DELIVER IN PERSON|AIR|ng instructions haggle sly| +64780|111303|48810|1|39|51257.70|0.10|0.01|N|O|1998-01-01|1997-12-22|1998-01-13|NONE|AIR|xes use finally fluffily | +64780|661943|24457|2|9|17144.19|0.09|0.03|N|O|1998-02-12|1998-01-03|1998-03-07|DELIVER IN PERSON|AIR|ckages poach furiously a| +64781|173612|23613|1|34|57310.74|0.02|0.08|R|F|1995-03-12|1995-05-03|1995-04-06|NONE|AIR|ites at the idly bold gifts in| +64781|887212|24764|2|1|1199.17|0.09|0.00|A|F|1995-06-09|1995-04-09|1995-06-10|DELIVER IN PERSON|TRUCK|after the blithely s| +64781|358816|21324|3|44|82491.20|0.10|0.04|R|F|1995-05-08|1995-05-07|1995-05-21|DELIVER IN PERSON|REG AIR|hely ironic instructions| +64782|825407|25408|1|43|57291.48|0.04|0.03|R|F|1993-05-09|1993-04-18|1993-05-15|TAKE BACK RETURN|FOB|ainst the quickly regular | +64783|279239|4250|1|12|14618.64|0.00|0.06|N|O|1997-07-01|1997-07-19|1997-07-05|DELIVER IN PERSON|TRUCK|eodolites. dep| +64783|164582|14583|2|18|29638.44|0.06|0.00|N|O|1997-08-07|1997-08-01|1997-09-02|TAKE BACK RETURN|SHIP| slyly regular deposit| +64783|122204|47209|3|12|14714.40|0.07|0.07|N|O|1997-05-27|1997-08-20|1997-06-17|COLLECT COD|TRUCK|ges will are slyly along| +64808|551934|14446|1|50|99295.50|0.01|0.01|R|F|1994-09-21|1994-09-09|1994-09-26|TAKE BACK RETURN|SHIP|inal foxes eat blithely among the carefully| +64808|338262|13275|2|26|33806.50|0.05|0.06|R|F|1994-08-25|1994-09-01|1994-09-09|NONE|SHIP|dolites. furiously even| +64809|430674|43183|1|20|32093.00|0.03|0.00|R|F|1992-04-16|1992-03-18|1992-04-27|DELIVER IN PERSON|FOB|gular, regular instructions. | +64809|336234|36235|2|5|6351.10|0.08|0.03|R|F|1992-03-06|1992-03-26|1992-04-04|DELIVER IN PERSON|TRUCK|r accounts | +64809|82463|19967|3|24|34691.04|0.04|0.00|R|F|1992-05-14|1992-03-12|1992-06-04|COLLECT COD|FOB| ironic packag| +64810|361216|36231|1|16|20435.20|0.10|0.01|A|F|1992-10-25|1992-12-04|1992-11-07|NONE|RAIL|somas haggle carefull| +64810|948179|23216|2|29|35586.77|0.06|0.03|A|F|1992-12-09|1992-10-12|1993-01-05|COLLECT COD|FOB|ly around the ironic, even asymptot| +64810|33615|33616|3|15|23229.15|0.08|0.08|R|F|1992-11-17|1992-12-02|1992-11-21|TAKE BACK RETURN|AIR|. furiousl| +64810|951099|38657|4|10|11500.50|0.05|0.06|A|F|1992-12-18|1992-10-30|1992-12-20|DELIVER IN PERSON|MAIL|posits cajole about | +64810|107486|19989|5|42|62726.16|0.04|0.07|A|F|1992-11-18|1992-10-19|1992-11-24|NONE|AIR|dly regular requests. slyly ironic sh| +64810|501000|38531|6|49|49048.02|0.10|0.01|R|F|1992-11-05|1992-10-20|1992-11-06|DELIVER IN PERSON|AIR|s detect around the carefully regular dep| +64810|293773|31289|7|45|79504.20|0.01|0.07|A|F|1992-12-06|1992-10-17|1992-12-20|NONE|AIR|ngside of the blithely even theo| +64811|430802|5819|1|34|58914.52|0.06|0.02|N|O|1997-07-28|1997-07-25|1997-08-02|DELIVER IN PERSON|SHIP|metimes unusual ideas are permane| +64811|488932|26460|2|29|55706.39|0.05|0.05|N|O|1997-05-11|1997-06-20|1997-05-19|DELIVER IN PERSON|AIR|ackages. carefully reg| +64811|471856|34366|3|12|21933.96|0.09|0.00|N|O|1997-05-17|1997-06-18|1997-06-11|NONE|FOB|sly ironic pinto beans. requests abo| +64811|475052|37562|4|22|22594.66|0.01|0.04|N|O|1997-07-06|1997-07-31|1997-08-02|TAKE BACK RETURN|AIR|posits nag regular, bold | +64811|198789|23796|5|32|60408.96|0.02|0.02|N|O|1997-08-15|1997-07-01|1997-08-17|TAKE BACK RETURN|MAIL|alongside of the slyly regular idea| +64811|31684|44185|6|45|72705.60|0.04|0.03|N|O|1997-08-25|1997-07-08|1997-09-18|NONE|RAIL|ut the accounts. bold, f| +64811|496836|9346|7|19|34823.39|0.10|0.01|N|O|1997-08-08|1997-07-21|1997-08-16|NONE|REG AIR| bold attainments ough| +64812|312218|24725|1|20|24604.00|0.06|0.03|R|F|1993-01-11|1992-11-23|1993-01-12|NONE|RAIL|counts? furiously final forges nag beneath| +64812|440607|15624|2|38|58808.04|0.05|0.07|A|F|1992-11-12|1992-12-15|1992-11-21|DELIVER IN PERSON|FOB|lyly express deposits na| +64812|265115|2631|3|19|20521.90|0.10|0.01|R|F|1992-12-09|1993-01-04|1992-12-24|DELIVER IN PERSON|REG AIR|xpress instructions use r| +64812|774977|8|4|29|59506.26|0.02|0.08|A|F|1992-10-24|1992-12-21|1992-11-01|TAKE BACK RETURN|FOB| across the furiously quick| +64812|38414|13415|5|23|31105.43|0.03|0.03|A|F|1992-11-12|1992-12-28|1992-12-05|NONE|RAIL|ven requests integr| +64812|610052|47589|6|36|34632.72|0.09|0.05|A|F|1992-11-10|1992-12-16|1992-12-08|COLLECT COD|SHIP|kly. deposits| +64812|128978|28979|7|7|14048.79|0.07|0.05|R|F|1993-02-05|1993-01-04|1993-03-02|NONE|TRUCK|gular theodolites | +64813|731808|31809|1|41|75430.57|0.10|0.04|N|O|1996-08-07|1996-07-31|1996-08-23|DELIVER IN PERSON|FOB| regular theodolites| +64813|485882|23410|2|4|7471.44|0.04|0.06|N|O|1996-08-07|1996-07-11|1996-08-10|NONE|RAIL|ckly regular| +64813|217934|5447|3|19|35186.48|0.04|0.01|N|O|1996-08-05|1996-06-26|1996-08-07|COLLECT COD|REG AIR|refully regular request| +64813|811189|48738|4|6|6600.84|0.05|0.01|N|O|1996-05-03|1996-06-01|1996-05-07|TAKE BACK RETURN|SHIP|nic packages are fluffily slyly| +64813|638793|38794|5|18|31171.68|0.07|0.02|N|O|1996-07-14|1996-06-16|1996-07-20|TAKE BACK RETURN|TRUCK|nic ideas. ironic, ironic foxes ha| +64813|190333|40334|6|6|8539.98|0.07|0.05|N|O|1996-05-03|1996-06-16|1996-05-27|NONE|REG AIR|ins cajole slyly. special, unusual | +64813|922161|34680|7|8|9464.96|0.03|0.06|N|O|1996-06-20|1996-07-30|1996-07-15|DELIVER IN PERSON|REG AIR| along the| +64814|751895|39441|1|17|33096.62|0.07|0.00|N|O|1996-11-02|1996-11-26|1996-11-23|TAKE BACK RETURN|RAIL|ages. furiously special platel| +64814|82550|45052|2|22|33716.10|0.07|0.01|N|O|1996-09-22|1996-12-05|1996-10-05|DELIVER IN PERSON|RAIL|e carefully. furiously| +64814|413569|1094|3|22|32615.88|0.03|0.06|N|O|1996-10-19|1996-10-24|1996-11-05|DELIVER IN PERSON|TRUCK|y furious packages? quickl| +64814|845908|45909|4|24|44492.64|0.08|0.00|N|O|1996-11-13|1996-11-28|1996-12-01|DELIVER IN PERSON|TRUCK|pinto beans haggle| +64814|164816|14817|5|9|16927.29|0.10|0.00|N|O|1996-11-22|1996-11-24|1996-11-24|NONE|SHIP|und the ironic deposits. sil| +64814|58828|21330|6|35|62538.70|0.08|0.01|N|O|1996-10-04|1996-12-05|1996-10-08|DELIVER IN PERSON|SHIP| slyly ironic pinto beans| +64815|719821|32336|1|45|82835.55|0.07|0.08|N|O|1997-07-09|1997-06-23|1997-07-28|DELIVER IN PERSON|FOB|ses. accounts snooze slyly careful| +64815|20980|45981|2|43|81742.14|0.08|0.05|N|O|1997-09-02|1997-06-11|1997-09-09|NONE|REG AIR|uffily about the flu| +64815|599270|36804|3|8|10954.00|0.00|0.02|N|O|1997-05-13|1997-06-17|1997-05-14|DELIVER IN PERSON|REG AIR|y fluffily express foxes. sly| +64815|927861|27862|4|31|58553.42|0.05|0.05|N|O|1997-05-25|1997-07-25|1997-06-10|TAKE BACK RETURN|REG AIR|egular deposits boost pinto beans-| +64815|544995|44996|5|3|6119.91|0.03|0.02|N|O|1997-05-15|1997-08-02|1997-05-22|NONE|FOB|ending foxes. regul| +64840|226823|39328|1|19|33246.39|0.05|0.06|N|O|1997-01-10|1996-12-02|1997-01-14|TAKE BACK RETURN|TRUCK|y express | +64841|53896|41400|1|34|62896.26|0.05|0.03|R|F|1993-09-19|1993-07-18|1993-10-04|COLLECT COD|SHIP| the permanent, even deposits.| +64841|822836|35353|2|47|82663.13|0.05|0.06|R|F|1993-07-18|1993-06-26|1993-07-23|NONE|REG AIR| blithely! thin| +64842|12151|49652|1|19|20199.85|0.04|0.08|A|F|1993-08-09|1993-08-20|1993-08-22|TAKE BACK RETURN|AIR|pendencies. even packages abou| +64842|216091|41100|2|8|8056.64|0.07|0.00|A|F|1993-08-29|1993-09-16|1993-09-13|TAKE BACK RETURN|MAIL| quickly reg| +64842|834255|46772|3|36|42811.56|0.09|0.04|A|F|1993-10-27|1993-09-08|1993-11-10|COLLECT COD|RAIL|s wake quickly. b| +64842|311029|23536|4|48|49920.48|0.06|0.06|A|F|1993-08-05|1993-09-10|1993-08-09|COLLECT COD|FOB|s use along | +64843|24921|49922|1|23|42456.16|0.06|0.04|N|O|1995-09-16|1995-09-26|1995-09-23|COLLECT COD|RAIL| final, special packages. b| +64843|834655|47172|2|17|27023.37|0.02|0.07|N|O|1995-11-04|1995-09-21|1995-11-26|COLLECT COD|REG AIR|ial foxes. bold deposits wake| +64843|40384|40385|3|7|9270.66|0.10|0.00|N|O|1995-10-12|1995-09-15|1995-10-13|NONE|AIR|affix blith| +64844|730795|30796|1|27|49295.52|0.04|0.01|N|O|1996-03-31|1996-03-13|1996-04-14|COLLECT COD|RAIL|uses. ironic deposits nag among t| +64844|459788|47316|2|11|19225.36|0.01|0.04|N|O|1996-01-04|1996-02-20|1996-01-27|DELIVER IN PERSON|REG AIR|e ironic deposits. c| +64844|653660|3661|3|43|69386.09|0.02|0.05|N|O|1996-04-06|1996-01-28|1996-04-11|NONE|MAIL| final instructions. silent| +64844|56070|6071|4|22|22573.54|0.03|0.02|N|O|1996-01-04|1996-02-01|1996-01-08|NONE|AIR|final deposits maint| +64844|367097|4619|5|4|4656.32|0.08|0.07|N|O|1996-02-16|1996-02-18|1996-02-27|TAKE BACK RETURN|AIR| blithely final asymptotes. blithely | +64845|224301|36806|1|12|14703.48|0.09|0.06|N|O|1996-05-18|1996-03-14|1996-06-17|COLLECT COD|TRUCK|the furiously regular accounts. furiously r| +64845|826027|1060|2|12|11435.76|0.09|0.03|N|O|1996-02-24|1996-04-04|1996-03-09|COLLECT COD|SHIP|eans maintain blithely. frets about the st| +64845|27192|27193|3|16|17907.04|0.02|0.02|N|O|1996-05-02|1996-03-07|1996-05-24|COLLECT COD|SHIP|equests? quickly final courts haggle. | +64846|853955|41507|1|33|62994.03|0.10|0.03|A|F|1995-04-25|1995-04-02|1995-05-21|COLLECT COD|SHIP|heodolites slee| +64846|410096|22605|2|23|23139.61|0.08|0.01|A|F|1995-05-16|1995-04-09|1995-05-30|DELIVER IN PERSON|FOB|g requests. final, silent excus| +64846|482074|32075|3|48|50690.40|0.05|0.05|R|F|1995-05-11|1995-05-10|1995-05-22|NONE|RAIL|uests. quickly regula| +64847|674081|36595|1|17|17935.85|0.04|0.08|R|F|1993-01-12|1992-12-12|1993-01-21|DELIVER IN PERSON|TRUCK|uests print| +64847|277346|39852|2|20|26466.60|0.00|0.05|A|F|1992-11-13|1993-01-01|1992-12-10|DELIVER IN PERSON|MAIL| pains sleep blithely. car| +64847|351088|38610|3|49|55814.43|0.10|0.06|R|F|1992-11-27|1993-01-16|1992-12-22|COLLECT COD|SHIP|odolites after the specia| +64847|720265|32780|4|11|14137.53|0.03|0.02|R|F|1993-01-06|1992-12-25|1993-01-16|TAKE BACK RETURN|FOB| above the express depos| +64872|737632|12661|1|3|5008.80|0.04|0.01|N|O|1996-06-06|1996-06-24|1996-06-21|COLLECT COD|TRUCK|grate furiousl| +64872|373992|11514|2|46|95035.08|0.09|0.06|N|O|1996-06-25|1996-05-14|1996-06-26|COLLECT COD|MAIL|pecial dependencies. unusual p| +64872|683152|45666|3|45|51080.40|0.00|0.08|N|O|1996-05-03|1996-06-03|1996-05-11|DELIVER IN PERSON|RAIL|excuses are. ideas cajole slyly sp| +64873|66037|16038|1|48|48145.44|0.08|0.08|A|F|1993-03-05|1993-01-13|1993-03-28|DELIVER IN PERSON|MAIL|slyly regular depos| +64874|493368|43369|1|24|32672.16|0.08|0.05|N|O|1997-06-27|1997-07-16|1997-07-19|TAKE BACK RETURN|MAIL|the bravely express deposits. regular req| +64874|31297|18798|2|11|13511.19|0.03|0.04|N|O|1997-07-20|1997-08-04|1997-08-04|DELIVER IN PERSON|AIR|ons are after t| +64874|995205|45206|3|34|44205.44|0.05|0.05|N|O|1997-09-05|1997-07-27|1997-09-15|DELIVER IN PERSON|RAIL|osits sleep carefully. thin reque| +64874|399323|36845|4|47|66848.57|0.00|0.07|N|O|1997-07-17|1997-08-11|1997-08-09|TAKE BACK RETURN|FOB|accounts nag slyly somet| +64874|408878|21387|5|22|39310.70|0.02|0.02|N|O|1997-09-10|1997-07-11|1997-10-10|COLLECT COD|RAIL|pending requests cajole fur| +64874|6421|31422|6|25|33185.50|0.00|0.03|N|O|1997-06-26|1997-07-09|1997-07-20|NONE|SHIP|ages snooze fluffily among the fluff| +64875|197719|35229|1|24|43601.04|0.06|0.02|R|F|1994-05-04|1994-05-21|1994-06-01|COLLECT COD|FOB|r deposits doze against the | +64875|47845|10346|2|23|41235.32|0.03|0.01|R|F|1994-03-27|1994-03-22|1994-04-17|TAKE BACK RETURN|TRUCK|ly above the reg| +64875|127276|27277|3|28|36491.56|0.08|0.08|A|F|1994-05-08|1994-05-02|1994-05-24|TAKE BACK RETURN|MAIL|l theodolites| +64875|111402|23905|4|3|4240.20|0.06|0.08|R|F|1994-06-15|1994-05-02|1994-06-28|COLLECT COD|REG AIR| blithely. slyly stealthy platelet| +64875|317666|5185|5|35|58927.75|0.03|0.01|A|F|1994-03-31|1994-05-15|1994-04-20|DELIVER IN PERSON|FOB|ress instruc| +64875|3093|15594|6|37|36855.33|0.07|0.08|A|F|1994-03-20|1994-05-20|1994-04-01|DELIVER IN PERSON|FOB|out the accounts wake according to the fin| +64875|970755|33275|7|48|87634.08|0.08|0.06|R|F|1994-05-06|1994-04-26|1994-05-21|TAKE BACK RETURN|TRUCK|s. slyly final packages wake doggedly. fin| +64876|472956|22957|1|6|11573.58|0.07|0.00|R|F|1992-05-01|1992-06-24|1992-05-06|NONE|SHIP|ve the care| +64876|962666|37705|2|14|24200.68|0.08|0.00|A|F|1992-07-20|1992-05-31|1992-08-12|DELIVER IN PERSON|MAIL|usual packages. ironic deposits print in| +64877|45474|7975|1|14|19872.58|0.03|0.07|N|O|1996-07-01|1996-08-20|1996-07-20|NONE|SHIP|heaves against the pending foxes | +64877|265323|15324|2|29|37360.99|0.01|0.04|N|O|1996-06-26|1996-08-07|1996-07-25|NONE|FOB|arthogs. ironic, bold escap| +64877|273505|36011|3|17|25134.33|0.09|0.06|N|O|1996-08-15|1996-07-15|1996-08-20|NONE|MAIL|elets sleep carefully except the packages| +64877|797394|47395|4|42|62637.12|0.06|0.00|N|O|1996-10-13|1996-08-19|1996-10-19|NONE|SHIP| fluffily around t| +64877|789969|27515|5|3|6176.79|0.02|0.04|N|O|1996-08-18|1996-07-26|1996-09-16|DELIVER IN PERSON|RAIL|r pinto beans haggle against the fox| +64877|993651|43652|6|14|24424.54|0.06|0.06|N|O|1996-09-27|1996-09-10|1996-10-15|DELIVER IN PERSON|REG AIR|uests. idly ironic as| +64877|276741|1752|7|41|70426.93|0.10|0.02|N|O|1996-07-28|1996-07-27|1996-08-21|NONE|TRUCK| beans around the slyly even excuses h| +64878|183436|20946|1|4|6077.72|0.00|0.07|N|O|1996-06-05|1996-07-26|1996-06-10|DELIVER IN PERSON|MAIL|ans. ironic, regular| +64878|8185|20686|2|44|48099.92|0.06|0.03|N|O|1996-09-08|1996-08-27|1996-09-28|NONE|REG AIR|e carefull| +64878|559194|9195|3|41|51379.97|0.05|0.06|N|O|1996-06-19|1996-08-10|1996-06-23|DELIVER IN PERSON|RAIL| sleep stealthily. pending requests wa| +64878|359538|22046|4|47|75083.44|0.01|0.02|N|O|1996-06-15|1996-07-22|1996-06-22|NONE|TRUCK|tes wake slyly special requests. fluff| +64878|739291|39292|5|38|50549.88|0.05|0.08|N|O|1996-08-15|1996-08-18|1996-08-23|COLLECT COD|SHIP|press instructions according | +64878|253836|16342|6|8|14318.56|0.02|0.03|N|O|1996-07-05|1996-08-19|1996-08-04|NONE|RAIL|ely pending accounts| +64879|549639|49640|1|35|59101.35|0.07|0.08|R|F|1994-03-30|1994-05-27|1994-04-29|COLLECT COD|MAIL|. requests are furiously furiously un| +64879|769273|44304|2|8|10737.92|0.08|0.08|R|F|1994-06-06|1994-04-02|1994-06-16|NONE|SHIP|ng the regular ideas| +64904|704311|16826|1|42|55241.76|0.04|0.00|N|O|1998-08-16|1998-09-05|1998-08-23|DELIVER IN PERSON|SHIP| ideas among the slyly final | +64904|344600|19613|2|43|70717.37|0.06|0.04|N|O|1998-09-04|1998-08-12|1998-09-07|NONE|REG AIR|ld foxes! regular packages affix ironically| +64904|692195|4709|3|1|1187.16|0.06|0.04|N|O|1998-09-04|1998-09-13|1998-09-17|TAKE BACK RETURN|FOB|ructions. furiously even asymptotes c| +64905|165624|40631|1|45|76032.90|0.06|0.03|N|O|1995-09-11|1995-07-12|1995-09-12|COLLECT COD|REG AIR|efully special decoy| +64905|626825|26826|2|21|36787.59|0.09|0.02|N|O|1995-08-17|1995-08-02|1995-09-10|TAKE BACK RETURN|REG AIR| instructions. pending excus| +64905|45443|7944|3|16|22215.04|0.09|0.06|N|O|1995-09-05|1995-06-15|1995-09-09|COLLECT COD|RAIL|iously slyly special reques| +64905|752117|2118|4|46|53777.68|0.04|0.08|A|F|1995-05-20|1995-07-14|1995-06-06|COLLECT COD|FOB|cies wake among the sly| +64906|314825|27332|1|37|68072.97|0.10|0.08|N|O|1997-04-02|1997-03-31|1997-04-08|DELIVER IN PERSON|REG AIR| slyly final pinto bea| +64907|44654|32155|1|19|30374.35|0.00|0.03|N|O|1995-11-20|1995-09-21|1995-12-02|COLLECT COD|RAIL|. somas use slyly regular ideas| +64907|498098|10608|2|45|49323.15|0.07|0.00|N|O|1995-10-23|1995-11-08|1995-11-01|DELIVER IN PERSON|RAIL|y ironic instructions use final platelet| +64907|518063|30574|3|10|10810.40|0.04|0.01|N|O|1995-10-24|1995-09-20|1995-11-06|TAKE BACK RETURN|SHIP|n ideas against the quic| +64907|76016|1019|4|6|5952.06|0.00|0.01|N|O|1995-11-03|1995-09-29|1995-11-11|NONE|REG AIR|bove the quietly spe| +64907|598604|23627|5|36|61292.88|0.10|0.00|N|O|1995-10-05|1995-09-27|1995-11-02|DELIVER IN PERSON|MAIL|ges sleep carefully against the carefull| +64907|736129|36130|6|50|58254.50|0.03|0.05|N|O|1995-11-17|1995-09-27|1995-12-03|COLLECT COD|MAIL|s. regular accoun| +64908|845857|8374|1|46|82929.26|0.02|0.04|A|F|1994-02-16|1994-02-08|1994-02-20|TAKE BACK RETURN|AIR|ronic accoun| +64908|304307|41826|2|13|17046.77|0.04|0.02|A|F|1994-01-21|1994-02-25|1994-02-17|NONE|MAIL|ly. quickly thin deposits hag| +64908|479022|41532|3|7|7007.00|0.07|0.04|A|F|1994-02-15|1994-03-13|1994-02-16|TAKE BACK RETURN|FOB|nusual dinos sublate furiously blithely fi| +64908|910760|23279|4|13|23019.36|0.04|0.03|R|F|1994-01-29|1994-02-02|1994-02-13|NONE|REG AIR| final theodolites| +64908|137816|37817|5|50|92690.50|0.09|0.01|A|F|1994-02-13|1994-02-07|1994-02-25|COLLECT COD|RAIL|y sly pinto beans cajole slyly slyly iro| +64909|372308|22309|1|8|11042.32|0.04|0.00|N|O|1996-07-15|1996-07-04|1996-08-07|TAKE BACK RETURN|SHIP|ts sublate to the quickly pending r| +64910|641390|16415|1|25|33284.00|0.02|0.05|A|F|1994-06-12|1994-04-14|1994-07-01|COLLECT COD|AIR|quests cajole carefully | +64910|828196|15745|2|23|25855.45|0.03|0.08|R|F|1994-05-29|1994-05-26|1994-06-01|TAKE BACK RETURN|SHIP|lar depths wake carefully al| +64910|481325|18853|3|42|54864.60|0.02|0.05|A|F|1994-04-25|1994-05-18|1994-05-01|DELIVER IN PERSON|TRUCK|eep blithely about the requests. d| +64910|615913|15914|4|48|87786.24|0.05|0.04|R|F|1994-06-13|1994-05-24|1994-06-22|DELIVER IN PERSON|AIR|ounts. ironic, bold dep| +64910|638322|835|5|34|42849.86|0.03|0.03|A|F|1994-05-18|1994-04-08|1994-06-01|NONE|FOB|eans about the ironic deposits hagg| +64910|272035|9551|6|32|32224.64|0.01|0.01|A|F|1994-06-16|1994-05-25|1994-07-16|NONE|RAIL| bold platelets-- quick| +64911|89585|2087|1|29|45662.82|0.02|0.04|N|O|1996-01-10|1995-11-03|1996-02-01|COLLECT COD|MAIL|ound the carefully bold instructions | +64911|646177|21202|2|4|4492.56|0.01|0.08|N|O|1996-01-21|1995-11-08|1996-02-09|DELIVER IN PERSON|SHIP|deas wake slyly. flu| +64936|921124|8679|1|9|10305.72|0.00|0.00|N|O|1996-06-06|1996-07-12|1996-06-18|COLLECT COD|AIR| pending pinto beans. car| +64936|328088|15607|2|7|7812.49|0.09|0.08|N|O|1996-05-25|1996-07-24|1996-06-14|NONE|MAIL|s: fluffily bold asymptotes nag| +64937|522080|9611|1|8|8816.48|0.00|0.01|N|O|1997-01-06|1996-12-05|1997-01-08|NONE|MAIL|ully across the final the| +64937|594981|44982|2|45|93418.20|0.02|0.01|N|O|1996-12-15|1996-12-07|1996-12-18|NONE|FOB|express reques| +64937|829148|29149|3|10|10771.00|0.05|0.01|N|O|1997-02-10|1996-11-28|1997-03-04|NONE|TRUCK|y even foxe| +64937|478502|41012|4|28|41453.44|0.04|0.04|N|O|1996-12-12|1996-12-30|1996-12-14|DELIVER IN PERSON|AIR|e around t| +64937|170255|20256|5|29|38432.25|0.05|0.01|N|O|1997-01-14|1996-12-03|1997-01-19|TAKE BACK RETURN|TRUCK|ep stealthily. slyly | +64937|472942|47961|6|8|15319.36|0.07|0.00|N|O|1997-01-29|1996-12-23|1997-02-22|COLLECT COD|FOB|lyly unusual accounts; quickly s| +64938|652101|2102|1|43|45282.01|0.05|0.07|N|O|1997-05-08|1997-04-24|1997-05-09|COLLECT COD|MAIL|ckly carefully | +64938|856031|18549|2|1|986.99|0.00|0.00|N|O|1997-02-05|1997-04-03|1997-02-13|NONE|REG AIR|the slyly even theod| +64938|312166|37179|3|28|32988.20|0.02|0.02|N|O|1997-02-11|1997-05-02|1997-03-11|DELIVER IN PERSON|SHIP|to the blithe| +64938|562112|24624|4|13|15263.17|0.09|0.00|N|O|1997-04-08|1997-04-12|1997-04-25|NONE|SHIP|es. busily final deposits use slyly | +64939|553187|28210|1|34|42165.44|0.01|0.01|A|F|1995-01-29|1995-02-10|1995-02-21|NONE|SHIP|ckly unusual accoun| +64939|398231|10739|2|12|15950.64|0.09|0.01|R|F|1995-02-17|1995-03-04|1995-02-26|TAKE BACK RETURN|REG AIR| the silent deposits: sl| +64939|67727|30229|3|39|66094.08|0.06|0.03|A|F|1995-01-20|1995-02-03|1995-02-04|DELIVER IN PERSON|TRUCK|he final, even somas. carefully bold depos| +64940|741401|3916|1|42|60579.54|0.01|0.00|N|O|1996-01-04|1996-01-14|1996-01-06|COLLECT COD|RAIL|pending deposits boost blithely c| +64940|723991|11534|2|42|84628.32|0.00|0.05|N|O|1996-01-21|1996-02-03|1996-02-11|COLLECT COD|REG AIR|inal requests. expr| +64940|101632|1633|3|6|9801.78|0.05|0.07|N|O|1996-02-23|1996-02-06|1996-03-24|NONE|RAIL|packages could have to cajole fluffil| +64941|418862|43879|1|21|37397.64|0.02|0.04|A|F|1995-05-10|1995-06-17|1995-06-07|TAKE BACK RETURN|TRUCK|oss the carefully special pearls int| +64941|808459|8460|2|44|60166.04|0.03|0.00|N|O|1995-08-29|1995-06-14|1995-09-04|COLLECT COD|REG AIR|sual realms are carefully. e| +64941|754160|29191|3|10|12141.30|0.02|0.00|N|O|1995-06-26|1995-07-06|1995-07-23|TAKE BACK RETURN|RAIL|ts wake blithely. accoun| +64941|157563|45073|4|12|19446.72|0.07|0.01|N|F|1995-06-06|1995-07-04|1995-06-30|NONE|FOB|braids must h| +64942|21985|34486|1|30|57209.40|0.08|0.00|N|O|1998-04-05|1998-04-04|1998-04-22|COLLECT COD|AIR|ily final requ| +64943|193949|43950|1|37|75588.78|0.05|0.02|R|F|1992-03-21|1992-03-02|1992-04-20|DELIVER IN PERSON|FOB|ily furious requests sle| +64943|693957|18984|2|22|42920.24|0.06|0.04|A|F|1992-02-17|1992-03-31|1992-02-24|TAKE BACK RETURN|AIR|ions hinder slyly requests. spec| +64968|738957|1472|1|37|73849.04|0.00|0.06|R|F|1994-09-07|1994-08-27|1994-09-26|DELIVER IN PERSON|REG AIR|ng theodolites. slyly unus| +64968|636742|36743|2|3|5036.13|0.07|0.08|A|F|1994-08-04|1994-07-30|1994-08-15|TAKE BACK RETURN|MAIL| requests. asymptotes promise furiously al| +64968|707624|20139|3|9|14684.31|0.07|0.07|R|F|1994-10-07|1994-07-22|1994-10-14|DELIVER IN PERSON|FOB|ording to the qui| +64968|31425|18926|4|41|55613.22|0.05|0.01|R|F|1994-08-29|1994-08-11|1994-09-19|NONE|TRUCK|unusual, ironic instructi| +64969|334518|34519|1|4|6210.00|0.04|0.01|N|O|1996-10-10|1996-10-28|1996-10-20|COLLECT COD|REG AIR| furiously e| +64970|696677|46678|1|8|13389.12|0.01|0.05|R|F|1992-09-28|1992-12-09|1992-10-14|DELIVER IN PERSON|TRUCK|oxes. furiously bold pinto | +64970|36035|36036|2|41|39812.23|0.05|0.02|R|F|1992-10-26|1992-10-25|1992-10-29|COLLECT COD|REG AIR| pending deposits| +64970|630563|5588|3|34|50780.02|0.06|0.05|A|F|1992-11-13|1992-11-30|1992-11-18|COLLECT COD|SHIP|boost behind the blithely ironic pa| +64971|285914|10925|1|27|51297.30|0.04|0.02|N|O|1995-07-07|1995-07-02|1995-07-31|COLLECT COD|FOB|each slyly quickly regular packages. slyly| +64971|343517|18530|2|43|67101.50|0.03|0.03|N|O|1995-08-03|1995-07-08|1995-08-13|NONE|FOB|ckages across the carefully unusual accou| +64971|483966|46476|3|32|62398.08|0.02|0.03|N|O|1995-07-15|1995-07-20|1995-07-25|TAKE BACK RETURN|SHIP|ole blithely. regular accounts integ| +64971|16447|16448|4|38|51810.72|0.02|0.02|N|O|1995-06-25|1995-08-08|1995-07-25|TAKE BACK RETURN|REG AIR|pending ideas according to the ir| +64971|423403|48420|5|49|64992.62|0.10|0.04|N|O|1995-09-09|1995-07-12|1995-10-04|COLLECT COD|MAIL|ckly bold instructions nag a| +64971|119096|44101|6|37|41258.33|0.10|0.03|N|O|1995-08-26|1995-07-18|1995-08-29|DELIVER IN PERSON|MAIL|? closely final hockey player| +64972|582570|45082|1|45|74364.75|0.06|0.06|N|O|1995-11-16|1995-11-02|1995-12-12|NONE|RAIL|egular theodolites | +64972|245176|20185|2|9|10090.44|0.10|0.05|N|O|1995-11-26|1995-10-29|1995-12-05|DELIVER IN PERSON|TRUCK|onic accounts nag furiously. slyl| +64972|667760|5300|3|8|13821.84|0.07|0.01|N|O|1995-10-11|1995-11-21|1995-11-08|TAKE BACK RETURN|MAIL|s. blithely pending ideas inte| +64972|40120|2621|4|33|34983.96|0.10|0.02|N|O|1995-11-13|1995-12-10|1995-11-28|DELIVER IN PERSON|REG AIR|he furiously express platelets. caref| +64973|324891|37398|1|41|78551.08|0.06|0.01|N|O|1998-05-09|1998-07-05|1998-06-04|NONE|SHIP|es sleep furiously silent pinto beans. | +64973|436756|36757|2|12|20312.76|0.02|0.02|N|O|1998-06-07|1998-06-08|1998-06-23|COLLECT COD|RAIL|o beans. iron| +64973|556224|18736|3|8|10241.60|0.04|0.04|N|O|1998-07-26|1998-06-01|1998-08-20|TAKE BACK RETURN|REG AIR|int blithely. escapades w| +64974|41696|41697|1|38|62232.22|0.09|0.04|R|F|1993-03-12|1993-01-28|1993-03-16|DELIVER IN PERSON|TRUCK|l deposits slee| +64974|776344|26345|2|26|36928.06|0.04|0.00|R|F|1993-03-02|1993-01-18|1993-03-28|COLLECT COD|REG AIR| carefully. t| +64974|6984|19485|3|38|71857.24|0.00|0.04|A|F|1992-12-08|1993-01-14|1992-12-29|DELIVER IN PERSON|RAIL|ove the furiously ironic packages impress| +64974|369947|7469|4|37|74626.41|0.05|0.07|A|F|1992-12-16|1993-02-12|1992-12-20|NONE|MAIL|counts haggle for the | +64974|693581|31121|5|39|61407.45|0.01|0.02|R|F|1993-03-24|1993-02-07|1993-04-06|DELIVER IN PERSON|FOB|gle carefully slow dolphins. | +64975|412317|12318|1|39|47942.31|0.00|0.04|N|O|1998-01-23|1997-11-29|1998-02-14|COLLECT COD|TRUCK|thely ironic packages.| +64975|798383|10899|2|9|13332.15|0.09|0.01|N|O|1997-11-29|1997-12-06|1997-12-13|TAKE BACK RETURN|RAIL|rate slyly pending| +65000|89483|1985|1|22|32394.56|0.01|0.03|N|O|1997-10-15|1997-09-13|1997-10-18|NONE|TRUCK|ingly regular deposits! ironic,| +65001|992146|4666|1|3|3714.30|0.06|0.03|N|O|1996-07-30|1996-08-28|1996-08-10|DELIVER IN PERSON|RAIL|efully pending requests. carefully iron| +65002|606690|6691|1|40|63866.40|0.09|0.02|N|O|1997-12-15|1998-01-21|1997-12-19|TAKE BACK RETURN|AIR|luffily. silent, spec| +65002|636171|48684|2|14|15499.96|0.10|0.00|N|O|1997-12-07|1997-12-19|1998-01-06|COLLECT COD|REG AIR|y ironic foxes. blithely enti| +65002|119477|31980|3|12|17957.64|0.05|0.00|N|O|1998-01-27|1998-02-06|1998-02-22|DELIVER IN PERSON|FOB|yly express theodolites cajole iro| +65002|34868|34869|4|10|18028.60|0.10|0.06|N|O|1998-01-15|1998-01-03|1998-02-06|TAKE BACK RETURN|FOB|cajole slyly | +65003|683674|46188|1|42|69620.88|0.01|0.06|N|O|1997-05-06|1997-04-29|1997-06-04|COLLECT COD|REG AIR| the regular requests cajo| +65004|403432|40957|1|28|37391.48|0.00|0.01|N|O|1997-03-29|1997-04-25|1997-04-12|TAKE BACK RETURN|MAIL|ly carefully busy courts.| +65004|466851|41870|2|1|1817.83|0.04|0.04|N|O|1997-07-01|1997-04-26|1997-07-06|TAKE BACK RETURN|RAIL|ccording to the ironic| +65004|353776|16284|3|27|49403.52|0.09|0.05|N|O|1997-05-05|1997-04-27|1997-05-09|TAKE BACK RETURN|MAIL| carefully re| +65004|912123|49678|4|24|27241.92|0.05|0.02|N|O|1997-07-07|1997-06-07|1997-08-05|TAKE BACK RETURN|REG AIR|across the furiousl| +65005|325992|38499|1|40|80719.20|0.07|0.04|N|O|1996-12-27|1996-12-11|1997-01-14|NONE|FOB|es serve decoys. clo| +65005|936321|11358|2|46|62434.88|0.04|0.07|N|O|1996-12-02|1996-12-06|1996-12-05|NONE|REG AIR|arefully according to | +65005|739872|2387|3|48|91768.32|0.10|0.00|N|O|1996-12-07|1996-11-20|1996-12-26|NONE|RAIL|ic courts affix carefu| +65005|19470|31971|4|37|51410.39|0.01|0.02|N|O|1996-11-01|1996-12-03|1996-11-15|TAKE BACK RETURN|TRUCK|ing theodolites wake. packages affix furiou| +65006|659184|46724|1|19|21719.85|0.04|0.08|N|O|1998-05-26|1998-05-13|1998-06-19|COLLECT COD|SHIP|ow deposits. unusual platel| +65006|893112|43113|2|13|14365.91|0.05|0.03|N|O|1998-05-26|1998-06-14|1998-06-15|TAKE BACK RETURN|MAIL|nusual asymptotes about the quickl| +65007|169432|19433|1|36|54051.48|0.10|0.00|R|F|1992-08-31|1992-07-10|1992-09-29|TAKE BACK RETURN|MAIL|round the careful| +65007|631296|18833|2|24|29454.24|0.00|0.02|R|F|1992-08-12|1992-07-17|1992-08-27|COLLECT COD|REG AIR|the quickly final acc| +65007|179918|17428|3|21|41956.11|0.09|0.03|A|F|1992-07-20|1992-07-17|1992-07-28|DELIVER IN PERSON|REG AIR|s along the furiously special| +65007|879715|42233|4|46|77954.82|0.08|0.06|R|F|1992-07-19|1992-07-30|1992-08-13|COLLECT COD|SHIP|ar accounts across the slyly f| +65007|360563|23071|5|7|11364.85|0.07|0.00|R|F|1992-05-17|1992-07-05|1992-05-28|COLLECT COD|SHIP| believe furiously bold req| +65032|726636|39151|1|16|26601.60|0.10|0.03|N|O|1996-10-17|1996-10-29|1996-11-06|COLLECT COD|SHIP|s haggle alongside of the| +65032|560301|35324|2|30|40838.40|0.08|0.04|N|O|1996-11-27|1996-11-22|1996-12-02|DELIVER IN PERSON|AIR|s sleep above the slyly ironic accounts.| +65032|968711|18712|3|16|28474.72|0.00|0.07|N|O|1996-09-02|1996-10-09|1996-09-18|NONE|FOB|ns after the fluffily regular ide| +65033|631442|6467|1|31|42575.71|0.03|0.07|N|O|1997-03-01|1997-04-10|1997-03-02|TAKE BACK RETURN|RAIL|uickly unusual pinto beans cajole furio| +65033|636420|48933|2|38|51542.82|0.06|0.05|N|O|1997-05-26|1997-04-16|1997-06-24|NONE|MAIL|ss the quickly final excuses. bli| +65033|302968|40487|3|9|17738.55|0.07|0.01|N|O|1997-01-29|1997-04-25|1997-02-25|COLLECT COD|FOB|ual excuses along| +65033|981067|43587|4|27|30996.54|0.06|0.04|N|O|1997-02-12|1997-03-28|1997-03-08|DELIVER IN PERSON|TRUCK|sts. blithely express foxes ought to int| +65033|781141|31142|5|43|52550.73|0.02|0.05|N|O|1997-05-10|1997-03-29|1997-05-29|TAKE BACK RETURN|FOB|s cajole a| +65034|689215|14242|1|39|46963.02|0.08|0.02|R|F|1993-02-05|1992-12-27|1993-03-04|DELIVER IN PERSON|AIR|ess asymptotes.| +65034|631718|31719|2|29|47840.72|0.06|0.01|R|F|1992-12-29|1992-12-15|1993-01-12|TAKE BACK RETURN|AIR|r, bold accou| +65035|957612|45170|1|10|16695.70|0.06|0.08|R|F|1992-07-13|1992-07-09|1992-07-20|DELIVER IN PERSON|AIR|lar theodolites use fin| +65036|41951|29452|1|48|90861.60|0.05|0.03|R|F|1994-01-02|1994-02-10|1994-01-22|DELIVER IN PERSON|FOB|ly among the furiously expre| +65037|387960|468|1|29|59390.55|0.01|0.02|N|O|1997-08-19|1997-07-03|1997-08-23|DELIVER IN PERSON|TRUCK|thes sleep blith| +65037|427381|2398|2|41|53642.76|0.01|0.00|N|O|1997-08-01|1997-06-25|1997-08-29|COLLECT COD|TRUCK|carefully among the furio| +65037|991900|29458|3|4|7967.44|0.06|0.06|N|O|1997-08-13|1997-08-10|1997-08-18|COLLECT COD|RAIL|fully: gifts k| +65037|851315|26350|4|12|15195.24|0.10|0.08|N|O|1997-05-24|1997-06-28|1997-06-01|DELIVER IN PERSON|TRUCK|ake fluffily s| +65038|755660|43206|1|43|73772.09|0.04|0.07|N|O|1997-03-04|1997-02-13|1997-03-08|NONE|REG AIR|yly according to the regular deposits. blit| +65038|369718|7240|2|48|85809.60|0.05|0.06|N|O|1997-03-15|1997-01-26|1997-04-02|COLLECT COD|AIR|ully regular foxes a| +65038|846685|46686|3|41|66897.24|0.00|0.08|N|O|1997-01-01|1997-01-12|1997-01-17|NONE|SHIP|nic deposits. accounts would haggle s| +65038|234516|47021|4|32|46416.00|0.10|0.05|N|O|1997-01-19|1996-12-24|1997-02-17|DELIVER IN PERSON|MAIL|r the bold foxes. slyly regular platelet| +65039|398467|23482|1|39|61052.55|0.07|0.00|N|O|1997-08-02|1997-09-09|1997-08-27|COLLECT COD|TRUCK|furiously ironic theodolites. req| +65064|210536|10537|1|45|65093.40|0.02|0.08|N|O|1996-01-19|1995-12-15|1996-01-25|NONE|RAIL|inal pinto bea| +65064|476634|39144|2|24|38654.64|0.10|0.02|N|O|1996-01-06|1996-01-01|1996-01-31|TAKE BACK RETURN|RAIL|even requests a| +65064|782922|32923|3|40|80195.60|0.05|0.00|N|O|1996-02-07|1995-11-20|1996-02-20|DELIVER IN PERSON|SHIP|ing, pending ideas cajole ironica| +65065|472724|10252|1|39|66171.30|0.06|0.03|A|F|1994-11-26|1994-12-17|1994-12-20|TAKE BACK RETURN|TRUCK|eposits x-ray slyly| +65065|57613|45117|2|24|37694.64|0.06|0.07|R|F|1994-09-26|1994-11-21|1994-10-01|DELIVER IN PERSON|TRUCK|e final requests. ironi| +65065|297924|10430|3|43|82642.13|0.01|0.07|A|F|1995-01-14|1994-11-10|1995-01-28|TAKE BACK RETURN|TRUCK|xpress ideas boost | +65065|204317|29326|4|27|32975.10|0.08|0.07|R|F|1994-10-19|1994-10-28|1994-11-05|DELIVER IN PERSON|RAIL|ckly thin pearls | +65065|941644|29199|5|41|69109.60|0.06|0.02|A|F|1995-01-02|1994-11-17|1995-01-26|TAKE BACK RETURN|TRUCK|s. quickly regular dugouts sl| +65065|194999|7503|6|44|92135.56|0.06|0.05|A|F|1994-12-28|1994-11-26|1995-01-08|COLLECT COD|MAIL|the idly even accounts. r| +65066|616723|4260|1|1|1639.69|0.06|0.03|N|F|1995-05-27|1995-03-19|1995-06-18|TAKE BACK RETURN|TRUCK|hely regular packa| +65066|247330|34843|2|36|45983.52|0.04|0.00|A|F|1995-06-03|1995-04-11|1995-06-13|COLLECT COD|FOB|al requests boost acro| +65067|48596|11097|1|19|29347.21|0.01|0.07|A|F|1994-02-16|1994-01-30|1994-03-11|COLLECT COD|FOB|ites. blithely regul| +65067|737302|12331|2|42|56249.34|0.04|0.04|A|F|1994-01-16|1994-01-25|1994-01-23|TAKE BACK RETURN|TRUCK|eposits. pending pinto b| +65067|821027|8576|3|19|18011.62|0.08|0.05|A|F|1994-01-27|1994-01-05|1994-01-29|DELIVER IN PERSON|MAIL|ss deposits use furiously. slyly express | +65067|991709|16748|4|28|50418.48|0.01|0.06|A|F|1994-02-26|1994-02-09|1994-03-08|TAKE BACK RETURN|SHIP| to the slyl| +65068|330337|30338|1|36|49223.52|0.10|0.04|N|O|1996-08-06|1996-09-13|1996-09-03|DELIVER IN PERSON|SHIP| pinto beans | +65068|969941|19942|2|8|16087.20|0.05|0.04|N|O|1996-10-28|1996-09-01|1996-11-12|COLLECT COD|AIR|slyly regular r| +65069|644963|19988|1|39|74409.27|0.05|0.01|R|F|1993-07-15|1993-05-29|1993-07-28|COLLECT COD|TRUCK|g deposits sleep about the c| +65069|889507|27059|2|19|28432.74|0.03|0.07|A|F|1993-06-28|1993-05-20|1993-07-23|DELIVER IN PERSON|FOB|s haggle. furiously bold reques| +65069|932000|32001|3|48|49534.08|0.08|0.06|R|F|1993-04-19|1993-06-14|1993-05-15|COLLECT COD|REG AIR|final dependencies. carefully fina| +65069|114030|26533|4|34|35497.02|0.03|0.08|R|F|1993-07-05|1993-06-08|1993-07-28|NONE|TRUCK|ily ironic | +65069|488332|842|5|21|27726.51|0.04|0.01|A|F|1993-04-13|1993-05-28|1993-04-24|DELIVER IN PERSON|MAIL|. blithely regular packages use deposits. f| +65070|12409|37410|1|38|50213.20|0.03|0.07|A|F|1992-07-30|1992-09-17|1992-08-12|DELIVER IN PERSON|TRUCK|. bold instructions above the blithel| +65070|549121|11632|2|22|25742.20|0.02|0.08|A|F|1992-09-11|1992-09-09|1992-10-03|NONE|AIR|s integrate. slyly even accounts| +65070|72971|47974|3|30|58319.10|0.05|0.02|A|F|1992-07-28|1992-09-15|1992-07-30|NONE|SHIP|pecial instructions unwind bold pac| +65070|419636|44653|4|16|24889.76|0.09|0.06|R|F|1992-09-11|1992-08-11|1992-09-24|DELIVER IN PERSON|REG AIR| furiously | +65070|809662|34695|5|41|64436.42|0.02|0.05|A|F|1992-08-20|1992-08-09|1992-08-22|DELIVER IN PERSON|FOB|slyly alongsi| +65070|985512|35513|6|2|3194.94|0.03|0.01|A|F|1992-09-07|1992-07-30|1992-09-17|COLLECT COD|FOB|ress sauternes cajole sly| +65070|496820|46821|7|37|67221.60|0.08|0.04|A|F|1992-09-21|1992-08-20|1992-10-03|DELIVER IN PERSON|TRUCK|blithely final dependencies| +65071|41465|3966|1|50|70323.00|0.00|0.00|N|O|1998-04-05|1998-03-15|1998-04-19|COLLECT COD|TRUCK|blate blithely across | +65096|406928|31945|1|4|7339.60|0.02|0.06|N|O|1997-06-10|1997-06-18|1997-06-23|DELIVER IN PERSON|SHIP| across the express pack| +65096|226723|14236|2|36|59389.56|0.04|0.01|N|O|1997-07-07|1997-07-10|1997-08-02|COLLECT COD|SHIP|kly even forges. eve| +65096|517199|29710|3|47|57159.99|0.01|0.01|N|O|1997-08-15|1997-07-07|1997-09-03|TAKE BACK RETURN|FOB|gside of the c| +65097|246630|34143|1|28|44145.36|0.08|0.00|R|F|1992-05-31|1992-04-21|1992-06-03|DELIVER IN PERSON|MAIL|silent fox| +65097|104362|4363|2|1|1366.36|0.03|0.04|R|F|1992-06-08|1992-04-24|1992-07-02|NONE|AIR|ckey players sleep carefully above the c| +65097|627|13128|3|4|6110.48|0.06|0.02|R|F|1992-04-18|1992-04-08|1992-04-28|COLLECT COD|MAIL|ess theodol| +65097|527156|27157|4|50|59156.50|0.08|0.04|A|F|1992-06-03|1992-05-01|1992-06-19|NONE|FOB|egular, fin| +65097|900378|379|5|22|30323.26|0.07|0.06|R|F|1992-05-15|1992-03-31|1992-05-16|NONE|REG AIR|uickly regular deposi| +65098|817837|30354|1|48|84229.92|0.04|0.03|A|F|1994-06-25|1994-05-31|1994-06-29|NONE|MAIL| bold ideas a| +65098|374020|24021|2|32|35008.32|0.03|0.06|R|F|1994-05-23|1994-05-25|1994-06-14|DELIVER IN PERSON|MAIL|furiously unusual th| +65098|148735|11238|3|40|71349.20|0.08|0.06|A|F|1994-05-31|1994-06-02|1994-06-18|COLLECT COD|AIR|lyly ironic packages. f| +65098|784283|34284|4|21|28712.25|0.08|0.05|R|F|1994-07-07|1994-05-23|1994-07-14|NONE|TRUCK|furious accounts s| +65098|443934|43935|5|19|35680.29|0.07|0.04|R|F|1994-06-17|1994-04-22|1994-07-11|DELIVER IN PERSON|AIR|uffily slyly final pinto beans.| +65099|729073|41588|1|22|24244.88|0.10|0.08|N|O|1996-05-09|1996-03-23|1996-06-08|NONE|RAIL|ronic foxes wake furiously above the final| +65099|515472|40493|2|27|40161.15|0.06|0.06|N|O|1996-02-24|1996-04-06|1996-03-23|TAKE BACK RETURN|FOB|osits. fur| +65099|531006|43517|3|35|36294.30|0.01|0.07|N|O|1996-05-09|1996-03-25|1996-05-31|NONE|SHIP| blithely regular deposits. furi| +65100|790843|15874|1|48|92822.88|0.01|0.08|R|F|1992-09-02|1992-09-19|1992-09-21|COLLECT COD|TRUCK|nag sometim| +65100|691580|4094|2|32|50289.60|0.01|0.04|A|F|1992-10-06|1992-09-27|1992-11-01|DELIVER IN PERSON|REG AIR|e along the blithely silent exc| +65100|374412|11934|3|6|8918.40|0.06|0.03|R|F|1992-11-04|1992-11-07|1992-11-10|TAKE BACK RETURN|MAIL|bold deposits-- final, even p| +65100|734124|9153|4|14|16213.26|0.00|0.00|R|F|1992-11-25|1992-09-23|1992-11-26|TAKE BACK RETURN|FOB| wake. sly depen| +65100|414588|2113|5|33|49584.48|0.10|0.00|R|F|1992-08-21|1992-10-23|1992-09-14|TAKE BACK RETURN|TRUCK|quests. carefully r| +65101|575586|38098|1|39|64800.84|0.00|0.05|A|F|1994-09-08|1994-07-24|1994-09-13|DELIVER IN PERSON|AIR| even deposits. fluffily pend| +65101|870980|20981|2|5|9754.70|0.01|0.00|R|F|1994-06-13|1994-08-07|1994-07-07|TAKE BACK RETURN|TRUCK| alongside of the| +65101|549161|49162|3|45|54456.30|0.08|0.01|R|F|1994-06-17|1994-08-22|1994-07-07|DELIVER IN PERSON|FOB|ding packages. blithely regular package| +65101|742908|30451|4|37|72182.19|0.01|0.06|A|F|1994-07-05|1994-08-21|1994-07-23|NONE|FOB|sleep fluffily i| +65101|54301|16803|5|9|11297.70|0.05|0.05|A|F|1994-06-18|1994-07-06|1994-07-01|DELIVER IN PERSON|REG AIR|y final packages wake furiously after| +65101|625242|267|6|30|35016.30|0.10|0.02|A|F|1994-08-03|1994-07-13|1994-09-01|TAKE BACK RETURN|REG AIR|s. blithely express | +65101|436805|36806|7|32|55736.96|0.00|0.07|A|F|1994-06-25|1994-06-28|1994-06-29|TAKE BACK RETURN|REG AIR| the furio| +65102|372342|9864|1|50|70716.50|0.00|0.08|N|O|1995-11-24|1995-12-31|1995-12-07|TAKE BACK RETURN|TRUCK|y across the f| +65102|947815|10334|2|10|18627.70|0.00|0.06|N|O|1995-12-03|1995-11-27|1995-12-06|DELIVER IN PERSON|AIR| bold foxes boost ca| +65103|661929|49469|1|18|34036.02|0.06|0.00|N|O|1996-07-24|1996-09-02|1996-08-13|TAKE BACK RETURN|REG AIR|ns use blithely carefu| +65103|40555|15556|2|36|53839.80|0.08|0.05|N|O|1996-09-03|1996-09-26|1996-09-20|COLLECT COD|REG AIR|ending accounts above the slyly r| +65103|599384|36918|3|40|59334.40|0.08|0.07|N|O|1996-10-27|1996-08-18|1996-10-29|COLLECT COD|AIR|rding to the slyly unusual excus| +65103|833159|8192|4|8|8736.88|0.08|0.08|N|O|1996-09-28|1996-08-15|1996-10-16|DELIVER IN PERSON|TRUCK|asymptotes serve car| +65128|279702|42208|1|4|6726.76|0.02|0.05|R|F|1993-04-27|1993-05-12|1993-05-18|TAKE BACK RETURN|REG AIR|xpress frays. slyly ironic package| +65128|942162|4681|2|28|33715.36|0.09|0.05|R|F|1993-04-19|1993-04-18|1993-04-23|COLLECT COD|SHIP|efully regular pearls. fi| +65128|903775|28812|3|19|33795.87|0.08|0.00|A|F|1993-03-21|1993-05-18|1993-03-29|NONE|MAIL|the furiously regular reque| +65128|744805|7320|4|33|61042.41|0.00|0.08|A|F|1993-05-23|1993-05-06|1993-06-21|TAKE BACK RETURN|REG AIR|ironic packages above the final packages| +65128|927784|2821|5|1|1811.74|0.08|0.08|A|F|1993-04-20|1993-05-01|1993-05-18|NONE|RAIL|refully regular | +65129|892011|17046|1|14|14041.58|0.02|0.08|A|F|1993-03-21|1993-04-01|1993-04-18|COLLECT COD|SHIP|foxes breach furiousl| +65129|12486|37487|2|31|43352.88|0.10|0.06|R|F|1993-02-12|1993-03-30|1993-03-01|TAKE BACK RETURN|TRUCK|ly alongside of the ir| +65129|837193|37194|3|1|1130.15|0.01|0.01|A|F|1993-05-03|1993-04-07|1993-05-29|COLLECT COD|REG AIR| ironic platelets caj| +65129|693682|18709|4|27|45242.55|0.00|0.06|R|F|1993-04-02|1993-04-09|1993-04-28|DELIVER IN PERSON|REG AIR|o beans wa| +65129|699168|49169|5|28|32679.64|0.00|0.00|A|F|1993-05-13|1993-04-08|1993-06-07|COLLECT COD|RAIL| run carefully. ironic, even ac| +65129|907024|19543|6|9|9278.82|0.03|0.06|A|F|1993-03-02|1993-02-26|1993-04-01|DELIVER IN PERSON|SHIP|nts across the even foxes haggle | +65130|18665|31166|1|11|17420.26|0.00|0.07|N|O|1996-06-08|1996-04-10|1996-06-29|COLLECT COD|MAIL|onic, regular ins| +65130|691446|28986|2|37|53184.17|0.06|0.04|N|O|1996-05-06|1996-04-15|1996-06-05|TAKE BACK RETURN|SHIP|hely bold deposits nag.| +65130|124793|37296|3|49|89071.71|0.01|0.07|N|O|1996-03-29|1996-04-24|1996-04-13|TAKE BACK RETURN|REG AIR|ke carefully ironic instructions. | +65130|380762|5777|4|19|35012.25|0.04|0.08|N|O|1996-03-16|1996-05-23|1996-04-08|NONE|AIR|ggle quickly. blithely reg| +65130|465170|27680|5|4|4540.60|0.00|0.05|N|O|1996-06-06|1996-04-30|1996-06-25|COLLECT COD|SHIP|es: carefully silen| +65131|728109|28110|1|39|44345.73|0.07|0.06|N|O|1998-02-24|1997-12-07|1998-03-16|DELIVER IN PERSON|TRUCK|gular deposits across the ruth| +65131|319450|31957|2|11|16163.84|0.04|0.03|N|O|1997-12-20|1997-12-19|1998-01-12|TAKE BACK RETURN|MAIL|. blithely express forg| +65131|996080|33638|3|39|45865.56|0.07|0.05|N|O|1998-01-04|1997-12-26|1998-01-11|NONE|FOB|encies. as| +65131|104718|4719|4|28|48235.88|0.02|0.01|N|O|1997-12-31|1998-01-22|1998-01-14|NONE|REG AIR|y regular warho| +65131|993599|31157|5|35|59239.25|0.04|0.03|N|O|1998-02-14|1998-01-25|1998-03-15|COLLECT COD|SHIP|ing packages haggle across the carefully | +65132|862290|12291|1|50|62612.50|0.00|0.08|A|F|1994-09-11|1994-08-20|1994-09-28|NONE|FOB|eep packages. carefu| +65132|505792|30813|2|31|55730.87|0.02|0.05|R|F|1994-08-07|1994-08-24|1994-08-19|COLLECT COD|SHIP|requests b| +65133|462335|12336|1|43|55784.33|0.01|0.04|R|F|1993-03-29|1993-03-18|1993-04-16|COLLECT COD|FOB|le quickly even frets. fin| +65133|454571|17081|2|25|38138.75|0.06|0.07|R|F|1993-03-15|1993-03-20|1993-04-04|TAKE BACK RETURN|RAIL|ing excuses sl| +65133|964170|26690|3|38|46896.94|0.04|0.03|A|F|1993-03-30|1993-03-26|1993-04-16|DELIVER IN PERSON|FOB|ecial instructions dazz| +65133|797959|22990|4|16|32910.72|0.08|0.04|R|F|1993-04-08|1993-02-21|1993-05-04|TAKE BACK RETURN|REG AIR|ggle across the platelets. expre| +65133|296886|21897|5|10|18828.70|0.10|0.07|R|F|1993-01-18|1993-03-17|1993-02-05|DELIVER IN PERSON|RAIL| nag above the carefully unusual depe| +65134|799538|12054|1|32|52400.00|0.08|0.04|A|F|1995-04-10|1995-04-24|1995-04-25|COLLECT COD|FOB|ns affix sly| +65134|821720|46753|2|43|70592.24|0.07|0.00|R|F|1995-04-04|1995-05-30|1995-04-26|COLLECT COD|RAIL|es. sly, silen| +65134|632643|7668|3|13|20482.93|0.07|0.01|N|F|1995-06-16|1995-05-28|1995-07-08|COLLECT COD|AIR|lyly express ideas nag blithely. instruct| +65134|819147|6696|4|45|47974.50|0.02|0.02|N|O|1995-07-04|1995-05-13|1995-07-29|NONE|FOB|al requests. blith| +65134|397948|22963|5|14|28643.02|0.03|0.05|A|F|1995-03-19|1995-06-07|1995-04-16|TAKE BACK RETURN|MAIL|ss deposits. furiously express deposits| +65134|297602|47603|6|37|59184.83|0.00|0.05|A|F|1995-03-26|1995-05-01|1995-03-30|COLLECT COD|TRUCK|phins integrate blithely. ironic packages| +65135|644726|32263|1|8|13365.52|0.00|0.03|A|F|1993-12-29|1993-12-30|1993-12-30|DELIVER IN PERSON|RAIL|onic pinto beans. quickly bold deposits| +65135|899499|12017|2|26|38959.70|0.08|0.00|R|F|1994-01-24|1994-01-13|1994-02-23|DELIVER IN PERSON|AIR|eposits. even, bold foxes doubt | +65135|863000|25518|3|8|7703.68|0.09|0.02|R|F|1994-02-13|1994-01-30|1994-02-22|NONE|SHIP| requests. foxes are. furiously regular| +65135|431089|6106|4|49|49982.94|0.09|0.04|A|F|1993-12-04|1993-12-13|1993-12-29|COLLECT COD|RAIL|thely regular court| +65135|312676|12677|5|12|20263.92|0.01|0.05|R|F|1994-02-22|1994-01-27|1994-03-21|COLLECT COD|SHIP|nding requests. boldly bold waters after | +65135|129889|29890|6|49|94025.12|0.10|0.08|A|F|1993-12-04|1993-12-14|1993-12-23|NONE|RAIL|s try to are deposits. final, special| +65135|37361|12362|7|34|44144.24|0.01|0.08|A|F|1994-01-19|1994-01-06|1994-02-18|TAKE BACK RETURN|FOB|dolites wake quickly with the re| +65160|914349|26868|1|21|28629.30|0.01|0.06|R|F|1992-10-28|1992-09-19|1992-11-20|TAKE BACK RETURN|REG AIR|wake never aro| +65160|454626|17136|2|21|33192.60|0.07|0.08|A|F|1992-09-15|1992-09-22|1992-10-12|DELIVER IN PERSON|AIR|egular deposits poach slowly ironic t| +65160|896533|46534|3|43|65768.07|0.04|0.07|A|F|1992-09-12|1992-08-25|1992-10-10|NONE|REG AIR|y foxes after the final theodolites a| +65160|26199|13700|4|40|45007.60|0.09|0.01|R|F|1992-09-13|1992-08-01|1992-10-06|NONE|RAIL|e across the fluffily regular c| +65160|314525|27032|5|4|6158.04|0.00|0.00|A|F|1992-07-05|1992-09-13|1992-07-30|NONE|SHIP|fully ironic requests w| +65161|626364|13901|1|39|50322.87|0.08|0.07|R|F|1994-07-15|1994-06-05|1994-07-20|COLLECT COD|SHIP|ter the evenly regular platel| +65161|293894|18905|2|34|64187.92|0.09|0.07|R|F|1994-05-20|1994-05-13|1994-06-15|COLLECT COD|AIR|slyly among the ironic | +65161|465228|2756|3|45|53694.00|0.04|0.02|A|F|1994-07-31|1994-05-17|1994-08-18|NONE|REG AIR|unts sleep blithely carefully final acc| +65162|377374|39882|1|4|5805.44|0.06|0.01|N|O|1995-11-04|1995-09-03|1995-11-10|TAKE BACK RETURN|RAIL|heodolites. braids above | +65163|896947|46948|1|40|77756.00|0.07|0.02|N|O|1995-07-22|1995-07-31|1995-08-17|NONE|SHIP|even, ironic requests sleep fu| +65164|495765|33293|1|49|86276.26|0.03|0.02|N|O|1996-02-06|1996-04-09|1996-02-22|COLLECT COD|FOB|beans wake quick| +65164|313791|13792|2|47|84824.66|0.01|0.03|N|O|1996-03-18|1996-04-15|1996-03-24|TAKE BACK RETURN|RAIL|accounts. regular requests nag stea| +65164|884609|34610|3|35|55774.60|0.00|0.01|N|O|1996-02-18|1996-04-09|1996-03-15|TAKE BACK RETURN|MAIL|otes use carefully? pending, ev| +65164|615978|15979|4|27|51136.38|0.04|0.00|N|O|1996-03-01|1996-04-22|1996-03-17|COLLECT COD|MAIL|blithely final accounts across| +65165|872356|47391|1|6|7969.86|0.02|0.05|N|O|1997-06-29|1997-05-17|1997-07-02|TAKE BACK RETURN|REG AIR| after the slyly ironic deposits nag fu| +65165|680590|18130|2|45|70675.20|0.06|0.08|N|O|1997-05-30|1997-05-28|1997-06-08|DELIVER IN PERSON|TRUCK|ly ironic excuses around t| +65165|672637|22638|3|48|77260.80|0.07|0.00|N|O|1997-07-23|1997-06-10|1997-08-05|TAKE BACK RETURN|AIR|bove the foxes are quickly final deposits| +65166|886427|48945|1|29|40988.02|0.05|0.07|N|O|1996-10-02|1996-07-31|1996-10-17|NONE|TRUCK| blithely final excuses a| +65166|174396|11906|2|10|14703.90|0.04|0.04|N|O|1996-09-28|1996-08-23|1996-10-02|TAKE BACK RETURN|RAIL|ress packages. | +65166|72734|22735|3|25|42668.25|0.04|0.08|N|O|1996-09-15|1996-07-27|1996-09-23|NONE|REG AIR|ording to the wartho| +65166|436616|11633|4|45|69866.55|0.10|0.05|N|O|1996-08-26|1996-08-09|1996-09-10|TAKE BACK RETURN|RAIL|osits boost along the regular| +65166|203907|3908|5|50|90544.50|0.00|0.05|N|O|1996-08-03|1996-07-23|1996-09-02|TAKE BACK RETURN|RAIL|uctions boost carefully bold acc| +65166|58125|8126|6|49|53072.88|0.10|0.08|N|O|1996-07-31|1996-08-10|1996-08-07|COLLECT COD|RAIL|ons are quickly blithely ironic foxes? s| +65167|540699|40700|1|28|48710.76|0.08|0.03|N|O|1997-03-30|1997-01-04|1997-04-03|TAKE BACK RETURN|AIR|le fluffily| +65192|468606|43625|1|47|74005.26|0.03|0.02|A|F|1993-04-30|1993-05-17|1993-05-17|COLLECT COD|TRUCK|uctions. even, re| +65192|849883|24916|2|5|9164.20|0.02|0.07|R|F|1993-03-06|1993-04-30|1993-03-17|TAKE BACK RETURN|RAIL|posits are slyly. blithely regular dep| +65192|974993|37513|3|44|90989.80|0.02|0.06|A|F|1993-06-03|1993-05-12|1993-06-21|TAKE BACK RETURN|TRUCK| bold, regular | +65192|701126|13641|4|25|28177.25|0.07|0.04|A|F|1993-05-20|1993-05-09|1993-06-16|NONE|TRUCK|ending accounts wake slyly iro| +65193|203401|15906|1|33|43044.87|0.08|0.02|R|F|1994-01-20|1994-01-03|1994-02-16|TAKE BACK RETURN|AIR|ding packages haggle slyly qui| +65193|552317|27340|2|22|30124.38|0.08|0.04|R|F|1993-11-13|1994-01-18|1993-11-23|COLLECT COD|RAIL|ions. platelets haggle. blithely unus| +65194|643561|43562|1|45|67703.85|0.02|0.02|N|O|1998-10-09|1998-08-04|1998-10-25|NONE|TRUCK|ar accounts hag| +65194|325921|25922|2|44|85664.04|0.08|0.04|N|O|1998-09-05|1998-09-04|1998-09-26|COLLECT COD|FOB|sts must have t| +65194|748685|11200|3|8|13869.20|0.02|0.00|N|O|1998-07-06|1998-08-05|1998-07-10|NONE|AIR|blithely special depos| +65194|143597|43598|4|9|14765.31|0.02|0.07|N|O|1998-10-02|1998-09-06|1998-10-26|TAKE BACK RETURN|TRUCK|ajole. slyly ironic th| +65194|423038|23039|5|6|5766.06|0.10|0.05|N|O|1998-09-28|1998-08-01|1998-10-24|NONE|AIR|ly along the bli| +65195|364178|26686|1|11|13663.76|0.02|0.02|N|O|1998-01-09|1997-11-05|1998-02-04|NONE|AIR|braids wake slyly special re| +65195|732762|45277|2|18|32305.14|0.03|0.06|N|O|1997-12-11|1997-12-08|1998-01-05|TAKE BACK RETURN|MAIL|t carefully blithely even accounts. carefu| +65196|538521|38522|1|20|31190.00|0.01|0.07|A|F|1993-02-05|1992-12-26|1993-02-21|COLLECT COD|FOB|pades wake carefully slyly| +65196|920803|8358|2|38|69302.88|0.00|0.08|A|F|1992-11-20|1992-12-02|1992-11-26|DELIVER IN PERSON|FOB|ven deposits | +65196|935101|22656|3|24|27265.44|0.07|0.06|A|F|1992-12-31|1992-12-03|1993-01-23|DELIVER IN PERSON|FOB|sh slyly past the slyly unusual foxes. car| +65196|234980|34981|4|21|40214.37|0.08|0.06|R|F|1992-12-07|1992-12-25|1992-12-31|NONE|AIR|nal instructions about the furi| +65196|302980|27993|5|17|33710.49|0.06|0.07|R|F|1992-12-06|1993-01-16|1993-01-04|DELIVER IN PERSON|REG AIR|r the furiously even requests x-ray bli| +65196|176202|1209|6|32|40902.40|0.03|0.06|R|F|1992-12-24|1993-01-02|1992-12-25|NONE|MAIL|ly careful requests haggle furiously. sl| +65196|412813|25322|7|35|60402.65|0.03|0.01|R|F|1992-10-25|1993-01-18|1992-10-29|COLLECT COD|REG AIR|ogged braids shall wake slyl| +65197|139946|14951|1|36|71493.84|0.01|0.02|N|O|1997-08-22|1997-07-01|1997-09-05|COLLECT COD|MAIL|gifts wake furiou| +65197|64984|14985|2|36|70163.28|0.10|0.07|N|O|1997-06-07|1997-08-15|1997-06-12|DELIVER IN PERSON|MAIL|se blithely quickly ironic dol| +65198|958455|20975|1|21|31781.61|0.05|0.05|R|F|1995-05-18|1995-04-14|1995-06-03|NONE|AIR|c depths through the pending grouch| +65198|736751|24294|2|39|69721.08|0.02|0.08|R|F|1995-05-29|1995-04-16|1995-06-14|TAKE BACK RETURN|TRUCK|riously. quick| +65198|566017|3551|3|44|47651.56|0.00|0.07|R|F|1995-03-06|1995-04-28|1995-03-10|NONE|SHIP|riously against the fluffily even re| +65198|32643|7644|4|9|14180.76|0.00|0.05|R|F|1995-05-12|1995-04-13|1995-06-08|NONE|FOB|dencies detect slyly. slyly expr| +65199|896218|21253|1|6|7285.02|0.03|0.04|R|F|1992-09-05|1992-07-01|1992-09-19|TAKE BACK RETURN|MAIL|egrate blithely al| +65199|735393|22936|2|23|32852.28|0.00|0.07|A|F|1992-09-02|1992-06-16|1992-09-27|DELIVER IN PERSON|REG AIR|sual Tiresias nag blithely special reques| +65224|222641|10154|1|7|10945.41|0.01|0.02|N|O|1997-09-12|1997-08-06|1997-09-19|TAKE BACK RETURN|TRUCK|s boost quietly. | +65224|916779|29298|2|3|5387.19|0.01|0.06|N|O|1997-06-24|1997-07-14|1997-07-20|NONE|RAIL|inal excuses. carefully special courts| +65224|303171|3172|3|17|19960.72|0.05|0.02|N|O|1997-08-19|1997-07-04|1997-08-20|COLLECT COD|MAIL|ermanent requests sleep ironic, regu| +65224|388003|511|4|34|37093.66|0.01|0.07|N|O|1997-08-23|1997-08-05|1997-09-05|NONE|TRUCK|pending foxes s| +65224|153387|28394|5|40|57615.20|0.02|0.04|N|O|1997-08-14|1997-07-15|1997-08-20|TAKE BACK RETURN|MAIL|y ironic foxes? fluffily ironic excus| +65224|963279|38318|6|12|16106.76|0.08|0.06|N|O|1997-07-10|1997-07-30|1997-07-28|COLLECT COD|FOB|posits wake | +65224|823423|10972|7|21|28273.98|0.07|0.07|N|O|1997-05-21|1997-07-06|1997-06-19|DELIVER IN PERSON|RAIL|ss the furiously ironic| +65225|259169|34180|1|43|48510.45|0.01|0.02|N|O|1995-10-17|1995-12-06|1995-11-07|DELIVER IN PERSON|FOB|e of the furiously bol| +65225|849914|37463|2|28|52188.36|0.08|0.06|N|O|1995-12-14|1995-12-17|1995-12-17|NONE|AIR| packages sleep slyly unusual| +65226|695619|20646|1|2|3229.16|0.04|0.04|R|F|1994-09-30|1994-11-08|1994-10-10|NONE|SHIP|r, regular deposits are. even, care| +65226|253311|3312|2|30|37929.00|0.03|0.07|R|F|1994-10-03|1994-10-31|1994-11-02|NONE|REG AIR|y ironic account| +65226|387544|12559|3|34|55472.02|0.05|0.06|A|F|1994-08-15|1994-10-03|1994-09-13|NONE|AIR| cajole carefully. blithely pendin| +65227|625959|25960|1|32|60317.44|0.00|0.03|N|O|1996-07-29|1996-07-19|1996-08-12|DELIVER IN PERSON|SHIP|mong the quickly final| +65227|482761|32762|2|23|40106.02|0.10|0.01|N|O|1996-08-05|1996-07-11|1996-08-08|TAKE BACK RETURN|SHIP|packages affix b| +65227|758963|21479|3|26|52570.18|0.03|0.02|N|O|1996-06-25|1996-08-08|1996-06-28|DELIVER IN PERSON|REG AIR|ly final instructions poach always bl| +65227|879471|17023|4|7|10153.01|0.07|0.04|N|O|1996-09-20|1996-08-10|1996-10-15|NONE|TRUCK|ests? pending ideas w| +65228|388774|13789|1|43|80098.68|0.00|0.01|N|O|1995-10-23|1995-08-23|1995-11-21|COLLECT COD|REG AIR|y express | +65228|123802|11309|2|25|45645.00|0.09|0.04|N|O|1995-09-04|1995-10-16|1995-09-11|NONE|TRUCK|e bravely.| +65229|480597|18125|1|31|48904.67|0.08|0.02|N|O|1997-11-10|1997-08-18|1997-12-03|NONE|REG AIR| blithely abou| +65229|384503|22025|2|13|20637.37|0.04|0.05|N|O|1997-08-07|1997-10-11|1997-08-10|COLLECT COD|RAIL|thely along the regul| +65229|332274|7287|3|36|47025.36|0.08|0.05|N|O|1997-10-29|1997-09-22|1997-11-04|DELIVER IN PERSON|SHIP|kages wake after the quickly ironic a| +65230|801914|26947|1|3|5447.61|0.03|0.08|N|O|1997-11-14|1997-11-22|1997-11-30|DELIVER IN PERSON|MAIL|o beans cajole fluf| +65231|277847|27848|1|33|60219.39|0.00|0.03|N|O|1996-10-07|1996-08-25|1996-10-22|COLLECT COD|MAIL|ost after the furiously ironic deposits| +65231|760310|47856|2|48|65773.44|0.05|0.08|N|O|1996-07-31|1996-08-26|1996-08-22|DELIVER IN PERSON|RAIL|cross the | +65231|522104|9635|3|26|29278.08|0.06|0.00|N|O|1996-10-20|1996-09-16|1996-11-18|NONE|TRUCK|the quickly final pinto beans cajole blithe| +65256|543910|18931|1|42|82063.38|0.06|0.04|R|F|1995-06-01|1995-06-06|1995-06-08|DELIVER IN PERSON|AIR|ests about the carefully unusual | +65256|492080|29608|2|44|47170.64|0.10|0.00|R|F|1995-05-09|1995-06-01|1995-05-10|DELIVER IN PERSON|RAIL|r, blithe deposits haggle blithely slyl| +65257|677613|2640|1|30|47717.40|0.05|0.06|R|F|1995-02-18|1994-12-25|1995-02-24|DELIVER IN PERSON|AIR|ly unusual accounts. closely fin| +65257|631255|43768|2|25|29655.50|0.10|0.07|R|F|1994-11-10|1995-02-02|1994-11-26|TAKE BACK RETURN|REG AIR|oxes among the s| +65257|495706|45707|3|10|17016.80|0.03|0.01|A|F|1995-01-26|1994-12-17|1995-02-02|DELIVER IN PERSON|RAIL|long the carefully | +65258|438730|26255|1|16|26699.36|0.00|0.07|A|F|1992-11-12|1992-08-27|1992-12-07|NONE|FOB|ges wake carefully alon| +65258|731773|19316|2|8|14437.92|0.05|0.01|A|F|1992-10-26|1992-10-16|1992-11-18|TAKE BACK RETURN|REG AIR|excuses. fluffily u| +65258|899703|12221|3|35|59593.10|0.05|0.00|A|F|1992-11-09|1992-09-19|1992-11-12|COLLECT COD|TRUCK|regular packag| +65259|317023|29530|1|32|33280.32|0.07|0.00|N|O|1996-05-14|1996-06-20|1996-05-19|TAKE BACK RETURN|SHIP|equests. carefully final packages against| +65259|204229|16734|2|33|37395.93|0.02|0.02|N|O|1996-05-02|1996-05-28|1996-05-10|DELIVER IN PERSON|AIR|nic, ironic platelets a| +65260|73442|23443|1|28|39632.32|0.01|0.02|A|F|1995-03-06|1995-05-03|1995-03-30|TAKE BACK RETURN|RAIL|s are quickl| +65260|337887|25406|2|28|53896.36|0.01|0.01|A|F|1995-04-13|1995-05-14|1995-05-09|COLLECT COD|AIR|leep blithely blithely bold deposits. bl| +65261|19002|6503|1|15|13815.00|0.00|0.07|R|F|1993-06-01|1993-07-02|1993-06-04|COLLECT COD|FOB|refully pending ideas | +65261|362308|12309|2|28|38368.12|0.00|0.02|R|F|1993-06-01|1993-06-18|1993-06-24|COLLECT COD|TRUCK|eas detect quic| +65261|301477|38996|3|23|34004.58|0.00|0.03|R|F|1993-07-08|1993-06-21|1993-07-20|NONE|RAIL|riously along the furiously regular req| +65261|907540|45095|4|7|10832.50|0.03|0.07|R|F|1993-08-01|1993-07-31|1993-08-18|DELIVER IN PERSON|FOB|theodolites wake carefully accord| +65261|12360|24861|5|35|44532.60|0.05|0.07|R|F|1993-09-04|1993-07-04|1993-09-27|DELIVER IN PERSON|REG AIR|ake packages. furiou| +65262|504304|16815|1|46|60180.88|0.09|0.01|R|F|1995-01-22|1995-02-22|1995-01-31|COLLECT COD|SHIP|. final exc| +65262|831458|43975|2|32|44461.12|0.00|0.03|A|F|1995-02-10|1995-01-04|1995-02-13|NONE|FOB|usly quickly bold foxes. carefully even | +65262|303007|40526|3|10|10099.90|0.08|0.07|A|F|1995-03-23|1995-01-19|1995-04-06|COLLECT COD|RAIL|posits promise carefully| +65263|260425|47941|1|44|60958.04|0.02|0.03|N|O|1995-09-20|1995-09-23|1995-09-28|TAKE BACK RETURN|MAIL|luffily fluffily express| +65263|951159|13679|2|16|19361.76|0.02|0.08|N|O|1995-10-19|1995-08-15|1995-11-17|NONE|SHIP|ng platelets? theodolites sleep c| +65288|119651|7158|1|27|45107.55|0.01|0.04|R|F|1993-08-12|1993-08-14|1993-08-16|TAKE BACK RETURN|SHIP|ironic platelets haggle furiously final,| +65288|973584|23585|2|11|18232.94|0.00|0.04|A|F|1993-10-05|1993-08-12|1993-11-04|COLLECT COD|REG AIR|nto beans wake q| +65288|15958|28459|3|18|33731.10|0.02|0.01|R|F|1993-08-13|1993-08-21|1993-08-17|TAKE BACK RETURN|MAIL|aggle. furious| +65288|195055|20062|4|39|44851.95|0.00|0.02|A|F|1993-07-17|1993-09-07|1993-07-20|COLLECT COD|TRUCK| furiously | +65288|287079|12090|5|37|39444.22|0.03|0.03|A|F|1993-10-13|1993-08-03|1993-10-22|DELIVER IN PERSON|SHIP|ly-- final accounts across the bold acc| +65289|16916|16917|1|14|25660.74|0.02|0.07|N|O|1997-12-17|1997-12-03|1998-01-04|NONE|SHIP| regular, pending ideas wake quickly e| +65289|299704|49705|2|48|81777.12|0.10|0.01|N|O|1997-12-05|1997-11-14|1997-12-18|DELIVER IN PERSON|RAIL| express ideas. regular p| +65289|118328|30831|3|31|41735.92|0.07|0.06|N|O|1997-12-26|1997-12-29|1998-01-22|NONE|TRUCK|final, ironic foxes. ironic, expres| +65289|727787|2816|4|12|21777.00|0.03|0.03|N|O|1997-11-07|1998-01-08|1997-12-02|NONE|REG AIR|hely express requests sleep about the bl| +65289|902335|27372|5|1|1337.29|0.03|0.05|N|O|1997-11-28|1997-11-25|1997-12-06|TAKE BACK RETURN|TRUCK|tructions ca| +65290|800986|38535|1|34|64155.96|0.04|0.06|A|F|1995-01-08|1995-02-16|1995-01-13|NONE|RAIL|g the blithely final requests. ideas boost| +65291|130935|18442|1|46|90432.78|0.08|0.05|N|O|1997-12-18|1997-11-27|1998-01-14|DELIVER IN PERSON|MAIL|pending packages sleep. quickly final fo| +65291|618462|30975|2|17|23467.31|0.07|0.02|N|O|1997-12-04|1997-12-15|1997-12-26|COLLECT COD|RAIL|c accounts. slyly regul| +65291|480869|43379|3|29|53645.36|0.05|0.03|N|O|1997-12-09|1997-12-18|1997-12-26|TAKE BACK RETURN|FOB|pinto beans nag bl| +65291|961168|36207|4|17|20895.04|0.10|0.08|N|O|1997-12-18|1997-12-20|1998-01-01|DELIVER IN PERSON|AIR|ts. bold, | +65291|342335|29854|5|29|39942.28|0.05|0.07|N|O|1997-11-21|1997-11-08|1997-12-05|DELIVER IN PERSON|TRUCK|wake furiously | +65292|904922|17441|1|42|80928.96|0.10|0.06|R|F|1995-03-07|1995-04-10|1995-04-03|NONE|AIR|. final foxes about the u| +65292|15846|28347|2|4|7047.36|0.06|0.02|A|F|1995-03-07|1995-03-27|1995-03-12|NONE|TRUCK|usly pending packages s| +65292|317361|42374|3|3|4135.05|0.01|0.00|N|F|1995-06-10|1995-04-24|1995-07-03|COLLECT COD|AIR|c accounts above the quickly special pac| +65292|872485|10037|4|40|58297.60|0.05|0.06|A|F|1995-04-06|1995-04-24|1995-05-04|DELIVER IN PERSON|AIR|into beans wake quickly. s| +65292|847587|10104|5|29|44501.66|0.09|0.08|A|F|1995-04-29|1995-04-30|1995-05-09|NONE|AIR|s. ironic req| +65292|381570|6585|6|18|29728.08|0.10|0.05|R|F|1995-06-06|1995-05-02|1995-06-17|TAKE BACK RETURN|SHIP|even, ironic requests. carefully pending ac| +65292|34083|34084|7|30|30512.40|0.09|0.06|R|F|1995-03-17|1995-04-14|1995-04-06|COLLECT COD|TRUCK|ts. carefully final re| +65293|830679|30680|1|5|8048.15|0.08|0.07|N|O|1996-05-02|1996-03-16|1996-05-18|NONE|FOB|kly pending pinto beans after the special| +65293|221050|21051|2|15|14565.60|0.06|0.04|N|O|1996-02-28|1996-04-09|1996-03-11|NONE|AIR|quickly ironic instru| +65293|183780|8787|3|38|70823.64|0.08|0.03|N|O|1996-03-12|1996-03-18|1996-03-14|TAKE BACK RETURN|AIR|te the even ideas kindle after th| +65293|787943|12974|4|17|34525.47|0.00|0.03|N|O|1996-04-23|1996-04-25|1996-05-15|NONE|REG AIR|arefully regular dinos us| +65293|952662|15182|5|21|36007.02|0.05|0.01|N|O|1996-02-27|1996-03-21|1996-03-16|COLLECT COD|RAIL|ly. pearls doubt | +65294|793131|5647|1|30|36723.00|0.06|0.00|N|O|1997-10-14|1997-08-24|1997-10-27|COLLECT COD|MAIL|uests kindle.| +65294|140889|15894|2|17|32807.96|0.03|0.04|N|O|1997-08-27|1997-09-26|1997-09-19|NONE|MAIL|es wake sly| +65295|895679|33231|1|3|5023.89|0.03|0.00|N|O|1997-11-09|1997-09-12|1997-11-28|NONE|RAIL|egular, fin| +65295|663363|13364|2|24|31831.92|0.03|0.06|N|O|1997-10-31|1997-09-09|1997-11-13|TAKE BACK RETURN|MAIL|lly silent accounts above th| +65295|138791|38792|3|48|87829.92|0.08|0.03|N|O|1997-10-26|1997-08-21|1997-11-05|DELIVER IN PERSON|REG AIR|regular packages. furiously even| +65295|655158|17672|4|24|26714.88|0.00|0.00|N|O|1997-10-01|1997-09-10|1997-10-24|COLLECT COD|RAIL|deposits are among the furiousl| +65320|891220|3738|1|14|16956.52|0.06|0.00|N|O|1996-11-26|1996-12-16|1996-12-03|TAKE BACK RETURN|TRUCK|gular, regular deposits sleep. s| +65320|733845|46360|2|24|45091.44|0.05|0.06|N|O|1996-12-24|1996-12-12|1997-01-14|NONE|AIR|y regular accounts cajole | +65320|722789|22790|3|24|43482.00|0.10|0.08|N|O|1996-11-10|1996-10-28|1996-11-20|TAKE BACK RETURN|MAIL|grow slyly after the slyl| +65321|582386|44898|1|48|70481.28|0.08|0.05|N|O|1996-06-01|1996-05-11|1996-06-29|DELIVER IN PERSON|MAIL|n, unusual pinto be| +65321|154113|29120|2|18|21007.98|0.02|0.03|N|O|1996-07-02|1996-05-06|1996-07-24|COLLECT COD|MAIL|oxes cajole care| +65321|160644|35651|3|45|76708.80|0.09|0.05|N|O|1996-06-07|1996-05-17|1996-06-15|COLLECT COD|MAIL|fluffily bold requests. special asympt| +65321|940093|40094|4|10|11330.50|0.06|0.01|N|O|1996-06-04|1996-05-24|1996-06-09|DELIVER IN PERSON|SHIP|ly silent instructions. fluffily ev| +65321|131389|43892|5|27|38350.26|0.08|0.07|N|O|1996-04-16|1996-04-19|1996-05-16|NONE|RAIL|ust cajole furiously. regular ideas sl| +65321|245916|45917|6|6|11171.40|0.02|0.06|N|O|1996-04-24|1996-04-23|1996-04-25|NONE|MAIL|he blithely express theodolites | +65321|104589|17092|7|2|3187.16|0.03|0.08|N|O|1996-04-25|1996-05-31|1996-05-13|TAKE BACK RETURN|REG AIR|mold blithely blithely f| +65322|818494|31011|1|3|4237.35|0.08|0.01|R|F|1995-04-24|1995-03-29|1995-05-13|TAKE BACK RETURN|RAIL|counts need to sleep quickly b| +65322|422506|35015|2|1|1428.48|0.09|0.06|R|F|1995-03-07|1995-04-08|1995-03-19|COLLECT COD|RAIL|usual asymptote| +65322|44257|44258|3|21|25226.25|0.02|0.07|R|F|1995-03-13|1995-04-24|1995-03-27|COLLECT COD|FOB|layers. regular, pending| +65323|613783|1320|1|19|32238.25|0.01|0.02|N|O|1997-09-09|1997-07-29|1997-09-30|COLLECT COD|TRUCK|ccounts about the regular accoun| +65323|836275|23824|2|5|6056.15|0.00|0.07|N|O|1997-09-16|1997-07-08|1997-09-28|DELIVER IN PERSON|MAIL|ickly regular foxes. ironi| +65324|239275|26788|1|9|10928.34|0.07|0.00|N|O|1995-09-04|1995-09-06|1995-09-24|NONE|RAIL|fluffily slow| +65324|481772|19300|2|26|45597.50|0.07|0.00|N|O|1995-10-11|1995-09-09|1995-10-16|COLLECT COD|TRUCK|. bold, even theodolites | +65324|137343|12348|3|27|37269.18|0.04|0.01|N|O|1995-07-20|1995-10-10|1995-07-27|TAKE BACK RETURN|TRUCK| carefully. slyl| +65324|319626|7145|4|39|64178.79|0.10|0.04|N|O|1995-09-11|1995-09-12|1995-09-17|TAKE BACK RETURN|RAIL|e. quickly ironic requests affix| +65324|944062|44063|5|11|12166.22|0.03|0.07|N|O|1995-08-27|1995-09-11|1995-09-21|NONE|AIR|l deposits. blithely ironic accounts along| +65324|837992|13025|6|12|23159.40|0.09|0.04|N|O|1995-08-19|1995-09-13|1995-09-07|COLLECT COD|TRUCK|s sleep fluffily above the sly| +65325|525728|749|1|6|10522.20|0.01|0.06|A|F|1994-12-29|1994-10-23|1995-01-23|COLLECT COD|FOB|pains. blithely final accou| +65325|909019|34056|2|10|10279.70|0.09|0.01|A|F|1994-11-18|1994-12-13|1994-11-25|TAKE BACK RETURN|REG AIR|hely final escapad| +65326|771420|46451|1|29|43250.31|0.10|0.05|N|O|1996-05-17|1996-06-17|1996-05-19|NONE|FOB|. theodolites across the regular,| +65326|239881|27394|2|17|30954.79|0.06|0.01|N|O|1996-06-14|1996-05-26|1996-07-06|DELIVER IN PERSON|MAIL|s nag carefully final requests. carefully f| +65326|672151|34665|3|46|51663.52|0.09|0.01|N|O|1996-04-28|1996-05-19|1996-05-22|DELIVER IN PERSON|REG AIR|arefully above the slyl| +65327|458399|33418|1|48|65153.76|0.05|0.03|A|F|1994-07-04|1994-08-09|1994-07-24|DELIVER IN PERSON|RAIL|ts wake carefully brave the| +65327|297583|47584|2|28|44255.96|0.10|0.00|A|F|1994-07-08|1994-06-28|1994-07-21|DELIVER IN PERSON|REG AIR|ing, bold ideas a| +65352|518750|43771|1|48|84899.04|0.03|0.00|R|F|1993-06-13|1993-08-13|1993-07-12|TAKE BACK RETURN|REG AIR|s might detect along the fluf| +65352|629937|4962|2|14|26136.60|0.00|0.05|R|F|1993-09-30|1993-08-29|1993-10-15|NONE|AIR|egular deposits are blithely. caref| +65352|336022|11035|3|35|37030.35|0.01|0.07|A|F|1993-09-21|1993-08-25|1993-10-01|DELIVER IN PERSON|REG AIR| along the final, pending courts use s| +65353|552092|39626|1|30|34322.10|0.00|0.05|N|O|1997-09-28|1997-09-14|1997-10-14|TAKE BACK RETURN|AIR|oxes wake carefully. slyly ironi| +65353|993843|18882|2|35|67788.00|0.07|0.01|N|O|1997-09-22|1997-08-30|1997-10-02|TAKE BACK RETURN|FOB| quickly regular i| +65354|233491|21004|1|3|4273.44|0.03|0.07|N|O|1996-11-06|1996-09-19|1996-12-01|DELIVER IN PERSON|FOB|r the blithel| +65354|281044|31045|2|28|28700.84|0.09|0.00|N|O|1996-10-10|1996-10-05|1996-11-07|NONE|MAIL| pinto beans use besides t| +65354|504520|42051|3|41|62504.50|0.06|0.02|N|O|1996-11-07|1996-09-02|1996-11-25|DELIVER IN PERSON|SHIP| ideas. quickly unusual depo| +65354|457853|32872|4|39|70622.37|0.03|0.04|N|O|1996-10-12|1996-10-12|1996-11-05|TAKE BACK RETURN|TRUCK|ckages cajole. carefully unusual platelet| +65355|93183|43184|1|44|51751.92|0.00|0.04|R|F|1993-11-15|1993-12-23|1993-11-27|COLLECT COD|RAIL|s. ideas detect carefully unu| +65355|122489|9996|2|29|43832.92|0.07|0.07|R|F|1993-10-21|1993-10-31|1993-11-09|COLLECT COD|TRUCK|fully regular r| +65355|665615|3155|3|23|36353.34|0.03|0.01|R|F|1994-01-02|1993-11-25|1994-01-24|DELIVER IN PERSON|MAIL|d the furiously| +65355|990909|15948|4|19|37997.34|0.09|0.05|R|F|1993-11-23|1993-12-05|1993-11-27|NONE|AIR|es. deposits boost fluffily | +65355|194445|6949|5|29|44643.76|0.04|0.06|R|F|1993-11-22|1993-11-15|1993-12-06|COLLECT COD|AIR| dependencies sleep slyly fluffily | +65355|32289|32290|6|15|18319.20|0.07|0.01|R|F|1993-12-13|1993-11-06|1994-01-04|DELIVER IN PERSON|TRUCK|theodolites sleep quickly alongside| +65356|431768|19293|1|47|79887.78|0.08|0.08|N|O|1996-09-30|1996-10-18|1996-10-03|COLLECT COD|RAIL|usual accounts: quickly pending packa| +65356|711508|36537|2|27|41025.69|0.04|0.04|N|O|1996-09-10|1996-10-29|1996-09-20|DELIVER IN PERSON|SHIP|ckages? bl| +65356|314497|39510|3|17|25695.16|0.01|0.05|N|O|1996-08-21|1996-10-25|1996-08-29|TAKE BACK RETURN|MAIL|le from the blithely final courts: blithely| +65356|742952|5467|4|16|31918.72|0.00|0.01|N|O|1996-11-26|1996-10-05|1996-11-30|TAKE BACK RETURN|AIR|s. blithely bold excuses sleep. | +65357|863154|25672|1|39|43567.29|0.02|0.08|A|F|1994-08-01|1994-08-01|1994-08-28|COLLECT COD|REG AIR|etly at the silent theodolites. acco| +65357|14378|1879|2|1|1292.37|0.10|0.01|A|F|1994-07-19|1994-07-21|1994-08-07|TAKE BACK RETURN|REG AIR|side of the express foxes are requests. c| +65357|648097|10610|3|22|22991.32|0.03|0.06|R|F|1994-08-13|1994-07-18|1994-08-21|TAKE BACK RETURN|TRUCK|, regular dependencies. bl| +65357|556613|44147|4|18|30052.62|0.04|0.05|R|F|1994-07-01|1994-06-24|1994-07-19|NONE|MAIL|ular grouche| +65357|979655|42175|5|42|72853.62|0.04|0.00|A|F|1994-07-18|1994-06-14|1994-07-21|COLLECT COD|RAIL|es. permanently i| +65357|60238|10239|6|40|47929.20|0.03|0.00|R|F|1994-07-23|1994-07-17|1994-08-11|DELIVER IN PERSON|MAIL|y regular excuses detect f| +65357|408054|20563|7|46|44253.38|0.05|0.07|A|F|1994-05-23|1994-07-23|1994-06-08|NONE|REG AIR| sleep blithely blithely | +65358|148230|35737|1|8|10225.84|0.05|0.04|A|F|1994-11-13|1994-10-31|1994-11-21|DELIVER IN PERSON|REG AIR|ickly; even c| +65358|297619|35135|2|44|71130.40|0.09|0.03|R|F|1994-12-03|1994-10-16|1994-12-31|COLLECT COD|AIR|l instructions-- never final pac| +65358|75681|684|3|48|79520.64|0.10|0.05|R|F|1994-09-27|1994-10-16|1994-09-29|NONE|SHIP|haggle alongside of the final | +65359|854610|42162|1|27|42243.39|0.04|0.03|N|O|1995-07-02|1995-06-02|1995-07-08|TAKE BACK RETURN|REG AIR|ording to the slyly spe| +65359|428458|28459|2|21|29115.03|0.04|0.02|N|O|1995-07-11|1995-05-30|1995-07-22|NONE|TRUCK|tornis. daringly fluffy depo| +65359|88649|26153|3|13|21289.32|0.03|0.02|R|F|1995-04-27|1995-06-05|1995-04-28|DELIVER IN PERSON|AIR| the blithely bold deposits. final request| +65359|916545|16546|4|11|17176.50|0.10|0.08|N|O|1995-07-10|1995-05-15|1995-07-11|COLLECT COD|RAIL|ctions; accounts alo| +65384|484064|34065|1|48|50305.92|0.08|0.08|N|F|1995-05-31|1995-06-05|1995-06-18|DELIVER IN PERSON|AIR|ongside of the theodolites use sly| +65384|647854|47855|2|36|64865.52|0.06|0.06|N|O|1995-06-27|1995-07-12|1995-07-21|COLLECT COD|REG AIR| above the blithely regular pinto b| +65384|475341|12869|3|31|40805.92|0.00|0.08|R|F|1995-05-26|1995-06-11|1995-05-31|COLLECT COD|TRUCK|e slyly regular deposits| +65384|48508|48509|4|11|16021.50|0.10|0.05|N|O|1995-07-10|1995-07-15|1995-07-28|TAKE BACK RETURN|SHIP|oss the slyly special deposits. theo| +65384|263635|1151|5|33|52754.46|0.03|0.08|N|O|1995-07-04|1995-05-20|1995-07-26|NONE|MAIL|ickly special packages | +65384|913209|38246|6|35|42775.60|0.06|0.07|N|F|1995-06-15|1995-05-27|1995-07-10|DELIVER IN PERSON|FOB|he slyly regular theod| +65384|287566|72|7|22|34178.10|0.04|0.04|N|O|1995-08-13|1995-05-22|1995-08-30|COLLECT COD|REG AIR|ic ideas w| +65385|118010|5517|1|5|5140.05|0.02|0.01|N|O|1996-05-20|1996-04-21|1996-06-10|DELIVER IN PERSON|RAIL|ic accounts cajole alongside o| +65385|390352|27874|2|35|50481.90|0.00|0.06|N|O|1996-05-28|1996-05-26|1996-06-13|DELIVER IN PERSON|FOB|y bold packages above the final, unu| +65385|630039|42552|3|19|18411.00|0.04|0.02|N|O|1996-03-27|1996-05-10|1996-04-21|NONE|FOB|y unusual gifts sleep blithely. blithely p| +65385|64327|14328|4|11|14204.52|0.05|0.04|N|O|1996-04-03|1996-04-22|1996-04-12|DELIVER IN PERSON|SHIP|sits sleep slyly across the final not| +65386|112664|25167|1|3|5029.98|0.07|0.01|R|F|1992-10-27|1992-12-22|1992-10-30|DELIVER IN PERSON|FOB|ely after the furiously| +65386|528168|40679|2|15|17942.10|0.06|0.05|R|F|1992-11-17|1993-01-21|1992-11-30|TAKE BACK RETURN|MAIL|excuses are at the final, reg| +65386|903487|16006|3|22|32789.68|0.05|0.07|R|F|1993-01-06|1992-12-22|1993-01-16|TAKE BACK RETURN|AIR|cial dependencies haggle furiousl| +65386|889412|14447|4|28|39238.36|0.07|0.05|R|F|1992-12-13|1992-12-14|1992-12-18|TAKE BACK RETURN|AIR|tions sleep. regular, regu| +65386|330936|43443|5|44|86544.48|0.02|0.03|R|F|1992-12-22|1992-12-01|1993-01-01|NONE|FOB| cajole abou| +65386|34096|9097|6|41|42233.69|0.00|0.06|R|F|1993-01-11|1992-11-28|1993-01-28|NONE|MAIL|r packages sublate along the | +65387|958360|20880|1|3|4254.96|0.02|0.02|A|F|1992-06-25|1992-06-09|1992-07-01|TAKE BACK RETURN|MAIL|quests. furiously specia| +65387|141839|16844|2|2|3761.66|0.04|0.04|R|F|1992-05-27|1992-07-22|1992-06-19|COLLECT COD|REG AIR|ding warthogs| +65387|874784|12336|3|17|29898.58|0.01|0.04|R|F|1992-07-31|1992-07-03|1992-08-19|DELIVER IN PERSON|RAIL|s are care| +65387|490848|3358|4|41|75391.62|0.10|0.07|R|F|1992-07-04|1992-07-05|1992-07-12|DELIVER IN PERSON|TRUCK|s. packages are evenly bold pinto | +65387|681247|6274|5|5|6141.05|0.03|0.06|R|F|1992-06-05|1992-06-21|1992-06-12|TAKE BACK RETURN|AIR|bold pinto beans. fluffily regular pack| +65387|716005|3548|6|21|21440.37|0.05|0.01|A|F|1992-07-17|1992-06-10|1992-08-07|DELIVER IN PERSON|TRUCK|quests. quickly final | +65388|815014|27531|1|18|16721.46|0.01|0.00|N|O|1998-04-08|1998-04-01|1998-05-01|COLLECT COD|FOB|counts. sly| +65388|931337|43856|2|29|39680.41|0.02|0.00|N|O|1998-04-21|1998-03-30|1998-05-21|TAKE BACK RETURN|REG AIR|heodolites along the exp| +65388|967715|30235|3|11|19609.37|0.01|0.08|N|O|1998-02-15|1998-04-04|1998-03-17|COLLECT COD|RAIL|nal deposit| +65388|370459|45474|4|42|64236.48|0.01|0.03|N|O|1998-03-13|1998-03-24|1998-03-30|DELIVER IN PERSON|AIR|oss the ironic packages. sly| +65388|291927|29443|5|13|24945.83|0.06|0.06|N|O|1998-02-20|1998-03-29|1998-03-20|TAKE BACK RETURN|RAIL|usual foxes. carefully final | +65388|416012|28521|6|45|41759.55|0.03|0.01|N|O|1998-04-23|1998-03-25|1998-05-06|DELIVER IN PERSON|REG AIR|equests poach. special theodolites amo| +65388|912887|25406|7|17|32297.28|0.03|0.05|N|O|1998-03-22|1998-03-14|1998-03-28|NONE|RAIL|refully. accounts use carefully. i| +65389|875953|13505|1|26|50151.66|0.04|0.04|N|O|1995-11-08|1995-11-02|1995-11-15|COLLECT COD|RAIL|ggle after the f| +65389|130559|5564|2|44|69940.20|0.04|0.00|N|O|1995-10-30|1995-11-14|1995-11-03|TAKE BACK RETURN|REG AIR|ously express requests. bu| +65389|289872|2378|3|28|52132.08|0.05|0.07|N|O|1995-09-19|1995-10-05|1995-09-26|TAKE BACK RETURN|REG AIR| slyly fluffily| +65389|868470|30988|4|35|50345.05|0.10|0.06|N|O|1995-10-28|1995-09-20|1995-11-13|DELIVER IN PERSON|SHIP|refully furiously special| +65389|363113|635|5|8|9408.80|0.02|0.05|N|O|1995-09-27|1995-10-25|1995-10-17|TAKE BACK RETURN|FOB|y ironic deposits.| +65390|44892|19893|1|46|84496.94|0.08|0.08|N|O|1997-07-27|1997-06-28|1997-08-03|COLLECT COD|FOB|nding pinto beans sleep acco| +65390|499180|11690|2|33|38912.28|0.06|0.03|N|O|1997-05-21|1997-06-19|1997-05-23|DELIVER IN PERSON|SHIP|inal asymptotes sleep carefully a| +65390|713033|576|3|10|10460.00|0.00|0.08|N|O|1997-07-19|1997-06-27|1997-08-15|DELIVER IN PERSON|REG AIR|. bold, final packages along t| +65391|512049|49580|1|50|53051.00|0.08|0.04|N|O|1996-05-31|1996-05-23|1996-06-24|DELIVER IN PERSON|AIR| accounts. blith| +65391|992376|42377|2|40|58733.20|0.07|0.07|N|O|1996-07-21|1996-07-01|1996-08-09|TAKE BACK RETURN|AIR|ironic realms. furiously regular de| +65416|706945|44488|1|7|13663.37|0.03|0.08|N|O|1997-09-08|1997-09-02|1997-09-26|DELIVER IN PERSON|AIR|as. slyly final fo| +65416|614521|2058|2|41|58855.09|0.05|0.06|N|O|1997-06-21|1997-07-29|1997-07-12|NONE|TRUCK|deas. fluffily final a| +65416|243129|30642|3|34|36451.74|0.06|0.08|N|O|1997-07-16|1997-08-28|1997-07-20|TAKE BACK RETURN|REG AIR|of the even, final accounts. blithely | +65417|413598|13599|1|46|69532.22|0.07|0.00|N|O|1998-05-13|1998-03-08|1998-06-04|NONE|TRUCK|ithely. expr| +65417|328709|16228|2|13|22589.97|0.07|0.08|N|O|1998-04-09|1998-04-11|1998-05-07|DELIVER IN PERSON|RAIL|equests sleep carefully. pinto| +65418|734600|22143|1|10|16345.70|0.00|0.08|N|O|1998-09-18|1998-09-03|1998-10-08|COLLECT COD|TRUCK|ar instructions aff| +65418|413380|13381|2|37|47854.32|0.06|0.03|N|O|1998-09-30|1998-07-30|1998-10-21|COLLECT COD|FOB|ns. furiousl| +65419|799063|49064|1|49|56939.47|0.06|0.05|R|F|1992-10-21|1992-12-02|1992-11-20|DELIVER IN PERSON|TRUCK|e quickly along the blithely final acc| +65419|839746|2263|2|27|45513.90|0.10|0.01|R|F|1992-11-05|1992-12-16|1992-11-23|TAKE BACK RETURN|AIR|etect afte| +65419|610196|22709|3|36|39821.76|0.10|0.02|R|F|1992-10-21|1992-11-06|1992-10-29|DELIVER IN PERSON|AIR|uffily bold foxes | +65419|551936|1937|4|21|41746.11|0.00|0.06|R|F|1992-10-16|1992-11-23|1992-11-06|COLLECT COD|TRUCK|y about the dependencies. pending soma| +65419|384101|9116|5|45|53329.05|0.04|0.02|A|F|1992-12-06|1992-11-23|1992-12-10|COLLECT COD|AIR|ructions haggle blithely r| +65419|581975|6998|6|21|43195.95|0.03|0.03|A|F|1992-12-06|1992-12-14|1992-12-29|COLLECT COD|SHIP|y blithely fi| +65420|687452|24992|1|27|38864.34|0.02|0.05|A|F|1995-02-25|1995-03-10|1995-03-24|NONE|TRUCK|its wake at the even| +65421|441120|41121|1|33|35016.30|0.06|0.04|A|F|1993-01-30|1993-03-22|1993-02-13|COLLECT COD|AIR|inal packages use fluffily iron| +65421|895354|20389|2|45|60718.95|0.08|0.01|A|F|1993-01-11|1993-03-29|1993-02-03|TAKE BACK RETURN|RAIL|ymptotes against the bold, pendin| +65421|203954|41467|3|28|52022.32|0.09|0.07|R|F|1993-02-16|1993-03-22|1993-03-17|DELIVER IN PERSON|MAIL|sly final pa| +65421|850067|68|4|1|1017.02|0.04|0.08|A|F|1993-01-16|1993-03-20|1993-02-09|DELIVER IN PERSON|AIR|out the blithely final th| +65421|72975|22976|5|36|70126.92|0.05|0.06|A|F|1993-02-24|1993-02-11|1993-03-11|NONE|FOB|. accounts sleep blithely express| +65422|195762|33272|1|49|91030.24|0.09|0.05|R|F|1993-09-02|1993-08-09|1993-09-10|NONE|REG AIR| final requests. fu| +65422|166466|3976|2|17|26051.82|0.00|0.06|A|F|1993-06-28|1993-08-23|1993-07-14|COLLECT COD|MAIL|lyly regular | +65422|788758|13789|3|31|57248.32|0.03|0.04|A|F|1993-09-20|1993-08-19|1993-10-16|COLLECT COD|TRUCK|mptotes. slyly pen| +65422|646155|8668|4|2|2202.24|0.07|0.07|A|F|1993-09-20|1993-07-07|1993-10-16|NONE|TRUCK|onic instructions dete| +65422|916708|29227|5|34|58638.44|0.04|0.06|A|F|1993-07-24|1993-07-28|1993-07-25|NONE|MAIL| pending sheaves. fluffily regular pinto b| +65423|198266|35776|1|15|20463.90|0.03|0.06|A|F|1994-08-09|1994-06-27|1994-08-19|NONE|FOB|requests n| +65423|253534|41050|2|47|69913.44|0.07|0.04|A|F|1994-07-20|1994-06-27|1994-07-24|NONE|REG AIR|egular deposits nag furiously f| +65423|135201|10206|3|7|8653.40|0.04|0.04|A|F|1994-06-30|1994-06-05|1994-07-12|DELIVER IN PERSON|MAIL|ent tithes. fin| +65423|315580|15581|4|33|52653.81|0.06|0.03|A|F|1994-07-24|1994-07-13|1994-08-14|NONE|SHIP|sts detect furiously above the even, regula| +65423|948840|11359|5|36|67996.80|0.03|0.00|R|F|1994-05-31|1994-06-08|1994-06-29|NONE|RAIL|l requests | +65423|138426|929|6|42|61505.64|0.01|0.06|A|F|1994-07-31|1994-06-17|1994-08-20|DELIVER IN PERSON|REG AIR|re slyly requests? dependencies s| +65423|524082|36593|7|32|35393.92|0.00|0.07|A|F|1994-04-26|1994-06-22|1994-05-09|COLLECT COD|AIR|gular instructions. blithel| +65448|232332|44837|1|46|58158.72|0.09|0.03|R|F|1995-02-02|1995-03-16|1995-02-25|TAKE BACK RETURN|FOB|long the even ideas. quickly final instru| +65448|797235|22266|2|15|19983.00|0.04|0.01|A|F|1995-03-04|1995-01-24|1995-03-28|NONE|AIR|ss the blithe| +65449|144760|7263|1|31|55947.56|0.00|0.06|A|F|1992-07-07|1992-07-15|1992-07-23|COLLECT COD|MAIL|into beans across the requests are qui| +65449|978928|3967|2|21|42144.48|0.06|0.04|R|F|1992-07-27|1992-07-23|1992-08-07|TAKE BACK RETURN|RAIL|express packages affix quickly furi| +65449|828914|3947|3|12|22114.44|0.10|0.06|A|F|1992-08-30|1992-07-06|1992-09-13|COLLECT COD|RAIL|usual, pending courts. courts i| +65449|548921|11432|4|6|11819.40|0.01|0.01|R|F|1992-07-21|1992-07-14|1992-08-09|NONE|SHIP|eath the blithely even courts. qu| +65449|704518|29547|5|41|62421.68|0.06|0.05|R|F|1992-09-15|1992-08-18|1992-10-12|COLLECT COD|FOB|dogged requests sleep.| +65450|886033|48551|1|38|38721.62|0.07|0.08|N|O|1996-03-07|1996-03-04|1996-03-16|NONE|MAIL|tes boost f| +65450|543372|43373|2|4|5661.40|0.03|0.00|N|O|1996-04-01|1996-03-18|1996-05-01|TAKE BACK RETURN|SHIP|sily blithe theodolites: even, | +65450|445588|33113|3|43|65943.08|0.08|0.00|N|O|1996-05-14|1996-04-09|1996-06-02|COLLECT COD|RAIL|ove the special cou| +65450|982096|7135|4|50|58902.50|0.03|0.04|N|O|1996-03-28|1996-02-26|1996-04-15|NONE|AIR|ely ironic ideas. even depths according to | +65450|82583|7586|5|48|75147.84|0.04|0.02|N|O|1996-03-04|1996-02-29|1996-03-05|TAKE BACK RETURN|FOB| ideas wake quickly special requests. flu| +65451|189853|39854|1|12|23314.20|0.06|0.06|A|F|1992-06-19|1992-03-26|1992-07-16|DELIVER IN PERSON|TRUCK|ccounts. carefully quick | +65451|852775|15293|2|9|15549.57|0.09|0.00|R|F|1992-03-01|1992-04-24|1992-03-09|COLLECT COD|SHIP|leep quickly along t| +65451|583892|46404|3|36|71131.32|0.03|0.01|A|F|1992-03-18|1992-04-03|1992-03-27|NONE|SHIP|s promise. slyly iro| +65452|660236|35263|1|4|4784.80|0.00|0.08|N|O|1998-06-18|1998-04-22|1998-06-23|TAKE BACK RETURN|FOB|thely among the dependencies| +65452|570744|8278|2|43|78032.96|0.04|0.05|N|O|1998-04-15|1998-05-30|1998-04-23|COLLECT COD|TRUCK|usual, pending excuses boost blithely| +65452|481287|6306|3|2|2536.52|0.03|0.06|N|O|1998-05-31|1998-05-23|1998-06-29|COLLECT COD|RAIL|as. slowly final platelets cajole afte| +65452|975927|25928|4|48|96138.24|0.02|0.07|N|O|1998-06-01|1998-05-16|1998-06-16|COLLECT COD|AIR|, even accoun| +65452|398772|36294|5|41|76701.16|0.10|0.00|N|O|1998-03-09|1998-05-01|1998-04-07|TAKE BACK RETURN|FOB|s the express the| +65453|114280|39285|1|1|1294.28|0.06|0.01|N|O|1996-05-06|1996-03-12|1996-05-31|COLLECT COD|FOB|gular pearls| +65453|696634|34174|2|24|39134.40|0.06|0.02|N|O|1996-05-03|1996-04-08|1996-05-18|TAKE BACK RETURN|MAIL|y silent pinto beans. furiously regular th| +65453|312784|12785|3|33|59293.41|0.03|0.03|N|O|1996-03-16|1996-03-29|1996-04-09|DELIVER IN PERSON|MAIL| foxes. even request| +65453|960485|10486|4|2|3090.88|0.02|0.01|N|O|1996-05-20|1996-02-28|1996-06-13|TAKE BACK RETURN|RAIL|s the even waters| +65453|857545|45097|5|14|21035.00|0.04|0.07|N|O|1996-02-18|1996-02-26|1996-03-01|TAKE BACK RETURN|SHIP|lly furiously ironic accounts. ev| +65453|754816|29847|6|15|28061.70|0.07|0.06|N|O|1996-02-01|1996-03-12|1996-02-06|COLLECT COD|SHIP| nag blithely at the excuses. eve| +65453|179133|4140|7|37|44848.81|0.08|0.06|N|O|1996-03-20|1996-03-01|1996-04-18|NONE|RAIL|s at the carefull| +65454|686131|48645|1|35|39098.50|0.01|0.05|R|F|1992-06-20|1992-08-19|1992-07-11|NONE|SHIP|sheaves haggl| +65454|798840|48841|2|49|95001.69|0.03|0.00|A|F|1992-10-17|1992-09-06|1992-11-01|DELIVER IN PERSON|REG AIR|symptotes wake a| +65455|474071|49090|1|1|1045.05|0.09|0.08|R|F|1993-10-20|1993-09-18|1993-11-15|TAKE BACK RETURN|REG AIR|usly. even theodolites haggle carefu| +65455|704692|29721|2|29|49203.14|0.10|0.02|R|F|1993-11-06|1993-10-25|1993-12-04|TAKE BACK RETURN|RAIL|ly enticing foxe| +65455|748558|36101|3|48|77112.96|0.02|0.05|R|F|1993-11-17|1993-10-25|1993-12-03|COLLECT COD|TRUCK|requests. regular asymptote| +65480|105172|30177|1|19|22366.23|0.04|0.05|N|O|1998-07-24|1998-06-08|1998-07-30|DELIVER IN PERSON|SHIP|affix carefully ideas. s| +65480|611020|23533|2|19|17688.81|0.05|0.05|N|O|1998-06-07|1998-07-14|1998-06-19|COLLECT COD|TRUCK|cording to | +65480|396862|21877|3|50|97942.50|0.01|0.07|N|O|1998-07-06|1998-06-27|1998-08-02|TAKE BACK RETURN|FOB|es. furiou| +65480|46704|9205|4|33|54473.10|0.09|0.06|N|O|1998-06-02|1998-06-30|1998-06-03|TAKE BACK RETURN|REG AIR|equests again| +65480|952992|15512|5|46|94067.70|0.03|0.00|N|O|1998-05-26|1998-06-13|1998-06-07|COLLECT COD|SHIP|ggle slyly regular, bold deposits. b| +65480|923500|48537|6|41|62461.86|0.05|0.00|N|O|1998-06-23|1998-07-27|1998-07-02|NONE|AIR|thely! carefully ironic| +65480|258106|45622|7|2|2128.18|0.10|0.04|N|O|1998-08-07|1998-07-21|1998-08-10|NONE|TRUCK|affix fluffily after the carefully| +65481|984536|9575|1|19|30789.31|0.09|0.04|N|O|1997-01-01|1996-12-05|1997-01-12|DELIVER IN PERSON|REG AIR|press packages sleep| +65481|82552|7555|2|23|35294.65|0.02|0.06|N|O|1996-10-21|1996-11-24|1996-10-30|TAKE BACK RETURN|AIR|s. slyly enticing deposits grow furiously. | +65481|443779|43780|3|48|82692.00|0.00|0.02|N|O|1997-01-03|1996-12-02|1997-01-15|COLLECT COD|AIR|ove the qui| +65481|581770|31771|4|49|90735.75|0.06|0.04|N|O|1997-01-09|1996-11-15|1997-01-13|NONE|AIR|nts. asymptotes use fluffily. regular i| +65481|801360|26393|5|23|29010.36|0.00|0.05|N|O|1996-12-11|1996-11-11|1996-12-31|NONE|SHIP| express depo| +65481|448337|10846|6|40|51412.40|0.01|0.00|N|O|1996-10-17|1996-12-08|1996-11-03|NONE|REG AIR|ounts. fur| +65481|197472|9976|7|50|78473.50|0.10|0.01|N|O|1996-12-02|1996-12-16|1996-12-31|NONE|MAIL|eful waters. slyly even dep| +65482|902280|2281|1|15|19233.60|0.09|0.03|A|F|1994-10-30|1994-10-25|1994-11-08|COLLECT COD|RAIL|ndencies after | +65482|613198|25711|2|9|10000.44|0.05|0.05|A|F|1994-11-30|1994-10-14|1994-12-11|TAKE BACK RETURN|MAIL|es. furiou| +65482|17077|42078|3|27|26839.89|0.03|0.00|R|F|1994-10-23|1994-11-04|1994-11-16|DELIVER IN PERSON|REG AIR|ironic requests detect slyly. fluffil| +65483|753059|15575|1|5|5560.10|0.08|0.02|N|O|1997-01-07|1997-02-23|1997-01-15|NONE|MAIL|nto beans na| +65483|652434|14948|2|15|20796.00|0.02|0.00|N|O|1997-01-23|1997-02-14|1997-01-28|COLLECT COD|RAIL| furiously unusual accoun| +65483|442048|4557|3|2|1980.04|0.06|0.08|N|O|1997-04-01|1997-02-05|1997-04-03|TAKE BACK RETURN|SHIP|y after the regular packages. blithely | +65484|64933|2437|1|10|18979.30|0.00|0.04|A|F|1995-05-19|1995-07-10|1995-06-14|TAKE BACK RETURN|AIR|hockey players dazz| +65484|318697|18698|2|37|63480.16|0.07|0.01|N|O|1995-07-19|1995-06-30|1995-08-04|COLLECT COD|MAIL|ges cajole. slyly pending ideas | +65484|337843|37844|3|33|62067.39|0.06|0.08|R|F|1995-05-21|1995-06-20|1995-06-11|COLLECT COD|MAIL|permanently| +65484|122318|34821|4|34|45570.54|0.05|0.03|N|O|1995-09-06|1995-08-16|1995-09-24|NONE|MAIL|oss the quickly eve| +65484|790771|28317|5|31|57713.94|0.05|0.08|N|O|1995-07-28|1995-07-19|1995-07-29|DELIVER IN PERSON|TRUCK|thely above | +65484|478266|15794|6|9|11198.16|0.05|0.05|N|O|1995-06-23|1995-07-21|1995-07-15|DELIVER IN PERSON|SHIP|lphins shall sleep.| +65485|996629|9149|1|11|18981.38|0.08|0.00|N|O|1998-09-12|1998-09-01|1998-09-14|NONE|RAIL|quiet theodolites. foxes sleep blithely. f| +65485|343286|43287|2|13|17280.51|0.05|0.00|N|O|1998-11-15|1998-09-14|1998-12-05|COLLECT COD|RAIL|ctions. ironic foxes until the final| +65485|591772|16795|3|7|13046.25|0.05|0.08|N|O|1998-09-05|1998-09-13|1998-09-09|NONE|MAIL|s. ironic plat| +65485|906724|31761|4|43|74419.24|0.02|0.03|N|O|1998-09-28|1998-10-01|1998-10-25|DELIVER IN PERSON|MAIL|ironic requests wake fluf| +65485|295779|45780|5|17|30170.92|0.02|0.07|N|O|1998-10-19|1998-10-09|1998-11-17|NONE|REG AIR|eans against the slyly fi| +65485|152788|15292|6|21|38656.38|0.03|0.06|N|O|1998-08-04|1998-09-27|1998-08-07|NONE|REG AIR|odolites cajole bravely pending theo| +65485|906661|44216|7|11|18343.82|0.09|0.00|N|O|1998-08-04|1998-10-07|1998-08-19|DELIVER IN PERSON|AIR|ts doubt slyly express foxes. de| +65486|237944|449|1|23|43284.39|0.08|0.06|N|O|1995-10-05|1995-11-02|1995-10-09|DELIVER IN PERSON|SHIP|furiously final deposit| +65486|110730|48237|2|31|53962.63|0.01|0.06|N|O|1995-11-22|1995-11-08|1995-12-14|COLLECT COD|RAIL|rthogs detect fluffily abov| +65487|300893|25906|1|24|45453.12|0.10|0.00|N|O|1997-05-24|1997-05-07|1997-06-02|NONE|SHIP|cross the quickly express courts use a| +65487|103893|3894|2|34|64494.26|0.10|0.08|N|O|1997-04-18|1997-04-27|1997-05-02|TAKE BACK RETURN|AIR|ess, stealthy accounts inte| +65487|122807|47812|3|22|40255.60|0.07|0.03|N|O|1997-04-05|1997-06-26|1997-04-08|DELIVER IN PERSON|REG AIR|ial foxes nag across the even, final idea| +65487|9593|22094|4|4|6010.36|0.06|0.08|N|O|1997-04-11|1997-05-16|1997-04-21|NONE|TRUCK|ages along the slyly unusu| +65487|228795|3804|5|6|10342.68|0.08|0.04|N|O|1997-07-06|1997-05-06|1997-08-03|DELIVER IN PERSON|AIR|g the final theodolites. bold packages | +65487|353730|3731|6|5|8918.60|0.04|0.03|N|O|1997-04-30|1997-05-06|1997-05-01|COLLECT COD|REG AIR|. blithely ironic | +65487|139418|14423|7|47|68498.27|0.10|0.04|N|O|1997-07-12|1997-05-01|1997-08-03|COLLECT COD|TRUCK|n ideas cajole. fluffily furi| +65512|193818|43819|1|48|91766.88|0.09|0.01|R|F|1994-11-23|1994-12-10|1994-12-05|COLLECT COD|RAIL|ven requests| +65512|486499|24027|2|33|49020.51|0.03|0.05|R|F|1994-11-08|1994-12-25|1994-11-10|NONE|MAIL| the slyly regular accounts. c| +65513|616775|29288|1|45|76128.30|0.02|0.01|N|O|1996-03-05|1996-02-11|1996-03-13|COLLECT COD|AIR|lar ideas. bold, quiet instructions cajole.| +65514|132455|19962|1|18|26774.10|0.07|0.07|N|O|1998-05-09|1998-06-03|1998-05-24|COLLECT COD|TRUCK|eposits cajole. blithely final theo| +65514|164326|26830|2|41|57003.12|0.06|0.05|N|O|1998-06-10|1998-06-03|1998-06-18|NONE|RAIL| ironicall| +65514|818240|5789|3|41|47486.20|0.04|0.08|N|O|1998-06-13|1998-05-31|1998-07-04|NONE|TRUCK| slyly regular a| +65514|158817|33824|4|35|65653.35|0.03|0.07|N|O|1998-05-10|1998-06-12|1998-06-09|TAKE BACK RETURN|FOB|pearls? quiet asymptotes hag| +65514|230343|5352|5|22|28013.26|0.03|0.03|N|O|1998-04-15|1998-06-08|1998-04-20|COLLECT COD|FOB|gular deposit| +65514|372174|9696|6|14|17446.24|0.05|0.05|N|O|1998-06-10|1998-05-09|1998-06-27|TAKE BACK RETURN|FOB|ly ironic foxes. | +65514|123051|35554|7|36|38665.80|0.05|0.04|N|O|1998-04-09|1998-05-31|1998-05-01|COLLECT COD|TRUCK|nic packages. | +65515|107637|7638|1|17|27958.71|0.07|0.01|R|F|1994-07-30|1994-07-18|1994-08-04|DELIVER IN PERSON|TRUCK|lly at the b| +65515|45423|45424|2|16|21894.72|0.10|0.03|R|F|1994-06-29|1994-07-01|1994-07-17|NONE|TRUCK|the slyly final instructions. ideas bo| +65515|412538|25047|3|13|18856.63|0.05|0.00|R|F|1994-08-11|1994-07-07|1994-08-21|COLLECT COD|TRUCK|pitaphs. deposits use alo| +65516|826921|39438|1|41|75763.08|0.04|0.03|N|O|1997-01-01|1997-03-01|1997-01-02|NONE|AIR|counts-- carefull| +65516|60920|48424|2|23|43261.16|0.05|0.06|N|O|1997-04-11|1997-02-24|1997-05-01|DELIVER IN PERSON|AIR|regular excuses a| +65516|872041|47076|3|42|42546.00|0.04|0.06|N|O|1997-02-15|1997-03-21|1997-02-22|DELIVER IN PERSON|REG AIR|quickly. express deposits are slyly. | +65516|384924|9939|4|1|2008.91|0.03|0.04|N|O|1997-02-16|1997-03-11|1997-02-17|TAKE BACK RETURN|TRUCK| accounts. furiously pendin| +65516|417517|17518|5|49|70290.01|0.05|0.01|N|O|1997-04-18|1997-02-22|1997-05-09|COLLECT COD|REG AIR| ironic instructions. f| +65516|202421|27430|6|30|39702.30|0.04|0.05|N|O|1997-02-18|1997-03-06|1997-03-07|NONE|AIR|s nag fluffily. carefully ironic r| +65517|742695|30238|1|41|71244.06|0.01|0.07|A|F|1992-05-21|1992-05-08|1992-06-20|DELIVER IN PERSON|TRUCK|al ideas boost slyly final, bold reques| +65517|468759|43778|2|43|74292.39|0.04|0.05|A|F|1992-07-26|1992-05-16|1992-08-05|COLLECT COD|REG AIR|endencies haggle ca| +65517|429133|41642|3|46|48857.06|0.00|0.04|A|F|1992-05-04|1992-06-30|1992-05-18|COLLECT COD|AIR| furious foxes haggle | +65518|86463|23967|1|15|21741.90|0.03|0.04|N|O|1996-09-10|1996-09-22|1996-09-13|COLLECT COD|FOB| express, e| +65518|180076|42580|2|3|3468.21|0.06|0.04|N|O|1996-09-08|1996-09-17|1996-09-26|DELIVER IN PERSON|REG AIR|ies. blithely special asympto| +65518|529544|4565|3|43|67661.36|0.04|0.08|N|O|1996-09-21|1996-10-13|1996-09-25|COLLECT COD|MAIL|n instructions dazzle furiously: fu| +65518|30259|5260|4|31|36866.75|0.09|0.08|N|O|1996-11-10|1996-10-15|1996-11-29|DELIVER IN PERSON|MAIL|cies. slyly ironic patterns inte| +65518|554157|41691|5|23|27855.99|0.09|0.03|N|O|1996-08-02|1996-09-11|1996-08-04|COLLECT COD|MAIL|ly bold theodolites alongside o| +65518|701521|1522|6|15|22837.35|0.06|0.00|N|O|1996-09-22|1996-09-15|1996-10-19|COLLECT COD|REG AIR|lites nag. carefully pen| +65518|459577|47105|7|27|41486.85|0.01|0.03|N|O|1996-10-25|1996-10-06|1996-10-31|DELIVER IN PERSON|SHIP|ully after the blithel| +65519|104730|42237|1|20|34694.60|0.10|0.03|R|F|1994-06-15|1994-05-29|1994-06-17|TAKE BACK RETURN|SHIP|rmanently accor| +65519|193735|31245|2|5|9143.65|0.06|0.05|R|F|1994-05-23|1994-04-12|1994-06-12|TAKE BACK RETURN|FOB| deposits. furiously silent p| +65519|88905|1407|3|26|49241.40|0.06|0.00|A|F|1994-06-19|1994-04-19|1994-06-26|DELIVER IN PERSON|SHIP|uriously ironic deposits boost fluf| +65519|214701|27206|4|39|63011.91|0.05|0.03|R|F|1994-05-08|1994-05-05|1994-05-19|NONE|SHIP|ts use fluffily after the stealthily eve| +65544|390411|15426|1|46|69064.40|0.01|0.00|N|O|1997-07-21|1997-05-12|1997-07-31|TAKE BACK RETURN|TRUCK|iously regular id| +65544|624434|11971|2|33|44827.20|0.03|0.07|N|O|1997-07-20|1997-06-06|1997-07-27|NONE|SHIP|requests wake furiously. u| +65545|875970|25971|1|36|70053.48|0.00|0.05|N|O|1995-11-11|1995-12-27|1995-12-02|NONE|REG AIR|uests. final, special packages play| +65545|417818|5343|2|4|6943.16|0.04|0.08|N|O|1996-01-01|1995-12-12|1996-01-09|TAKE BACK RETURN|SHIP|y unusual requests. furiously final in| +65546|770486|20487|1|20|31129.00|0.09|0.00|R|F|1995-06-03|1995-04-21|1995-06-16|TAKE BACK RETURN|FOB|le around the blithely | +65546|549748|12259|2|27|48538.44|0.03|0.00|R|F|1995-03-30|1995-04-28|1995-04-13|DELIVER IN PERSON|REG AIR|re slyly. blithely iron| +65546|608313|45850|3|15|18319.20|0.05|0.02|R|F|1995-03-24|1995-06-11|1995-03-29|TAKE BACK RETURN|AIR|ng the slyly| +65546|908540|46095|4|7|10839.50|0.04|0.01|N|F|1995-06-12|1995-05-07|1995-07-01|DELIVER IN PERSON|SHIP|iously express re| +65547|446793|9302|1|25|43494.25|0.09|0.07|N|O|1996-11-29|1997-01-10|1996-12-07|DELIVER IN PERSON|SHIP|. blithely ironic deposits affix furi| +65548|112151|37156|1|10|11631.50|0.00|0.05|N|O|1995-10-21|1995-09-30|1995-10-27|NONE|REG AIR| dependencies. | +65548|920155|32674|2|17|19976.87|0.03|0.01|N|O|1995-10-20|1995-10-24|1995-10-31|TAKE BACK RETURN|SHIP|refully regular foxes acro| +65548|41828|4329|3|48|84951.36|0.00|0.03|N|O|1995-09-16|1995-10-06|1995-10-03|NONE|AIR|lithely. quickly ironic instr| +65548|996873|46874|4|34|66974.22|0.10|0.05|N|O|1995-11-20|1995-11-08|1995-11-24|TAKE BACK RETURN|SHIP|e deposits.| +65548|434387|21912|5|19|25105.84|0.03|0.04|N|O|1995-09-07|1995-10-07|1995-10-06|DELIVER IN PERSON|FOB|ely idle accounts boost accor| +65548|734382|34383|6|22|31159.70|0.08|0.03|N|O|1995-12-02|1995-10-18|1995-12-19|TAKE BACK RETURN|MAIL|to beans. epitaph| +65548|743611|6126|7|9|14891.22|0.06|0.02|N|O|1995-11-14|1995-09-30|1995-11-23|TAKE BACK RETURN|TRUCK|osits. carefully bold | +65549|855190|30225|1|34|38935.10|0.02|0.00|R|F|1993-12-03|1993-12-30|1993-12-24|TAKE BACK RETURN|TRUCK|o sleep unusual ideas. f| +65549|169103|6613|2|12|14065.20|0.10|0.07|R|F|1993-12-27|1993-12-02|1994-01-23|DELIVER IN PERSON|AIR|ic instructions. carefully special acco| +65549|99008|11510|3|16|16112.00|0.00|0.01|A|F|1993-11-14|1993-12-15|1993-11-20|NONE|FOB|tegrate instructions| +65550|884092|34093|1|31|33357.55|0.05|0.08|R|F|1992-12-30|1993-01-01|1993-01-06|TAKE BACK RETURN|SHIP|uickly bold accounts| +65550|922415|47452|2|2|2874.74|0.04|0.02|A|F|1992-11-04|1992-11-25|1992-11-27|COLLECT COD|AIR|detect blithely a| +65550|26970|39471|3|27|51218.19|0.00|0.04|R|F|1992-12-27|1992-12-18|1993-01-04|DELIVER IN PERSON|REG AIR| beans boost according to the careful| +65550|283946|8957|4|11|21229.23|0.01|0.06|R|F|1993-01-25|1992-12-30|1993-01-30|NONE|MAIL|thely final excuses ca| +65550|264765|39776|5|26|44973.50|0.08|0.06|R|F|1993-01-29|1993-01-04|1993-02-02|NONE|FOB| to the express deposits. carefully bol| +65550|893970|19005|6|19|37314.67|0.09|0.05|A|F|1992-10-11|1992-11-30|1992-10-14|DELIVER IN PERSON|SHIP|ly even dependencies haggle | +65551|324768|37275|1|26|46611.50|0.01|0.05|N|O|1997-04-24|1997-03-11|1997-04-26|DELIVER IN PERSON|FOB|tructions integrate ca| +65551|367097|29605|2|4|4656.32|0.06|0.06|N|O|1997-03-16|1997-04-18|1997-04-03|NONE|TRUCK|gular reque| +65551|782763|20309|3|36|66446.28|0.03|0.06|N|O|1997-04-13|1997-04-13|1997-04-25|TAKE BACK RETURN|AIR|kages wake carefully? acco| +65551|889704|39705|4|28|47422.48|0.01|0.01|N|O|1997-03-01|1997-04-25|1997-03-28|TAKE BACK RETURN|TRUCK|s. blithely blithe r| +65551|246749|34262|5|1|1695.73|0.10|0.06|N|O|1997-05-10|1997-03-18|1997-06-02|TAKE BACK RETURN|SHIP|al foxes. deposits after the permanent| +65551|102669|27674|6|48|80239.68|0.02|0.02|N|O|1997-03-11|1997-04-09|1997-03-19|DELIVER IN PERSON|MAIL|ly ironic instructions cajo| +65551|544073|31604|7|30|33511.50|0.09|0.07|N|O|1997-04-27|1997-03-01|1997-05-16|NONE|MAIL|ic foxes; fluffily final deposits snooz| +65576|234072|9081|1|39|39236.34|0.04|0.05|A|F|1992-11-26|1992-12-13|1992-12-22|TAKE BACK RETURN|REG AIR|luffily unusual ideas detect. iron| +65576|38562|1063|2|40|60022.40|0.05|0.03|A|F|1992-12-22|1993-01-10|1993-01-02|TAKE BACK RETURN|SHIP| after the silent, even | +65576|110350|22853|3|35|47612.25|0.01|0.04|A|F|1992-10-30|1992-12-11|1992-11-21|COLLECT COD|REG AIR|oost across the ironic accounts. final epit| +65576|637694|25231|4|6|9789.96|0.04|0.04|A|F|1992-12-27|1993-01-12|1993-01-20|NONE|RAIL|slyly final excuses. d| +65577|921404|8959|1|8|11402.88|0.02|0.06|N|O|1996-08-12|1996-08-29|1996-09-04|TAKE BACK RETURN|REG AIR|posits. slyly regul| +65577|29380|29381|2|28|36662.64|0.01|0.07|N|O|1996-07-17|1996-08-05|1996-08-05|DELIVER IN PERSON|AIR|nic, regular inst| +65577|780296|17842|3|40|55050.40|0.01|0.03|N|O|1996-10-17|1996-07-25|1996-10-25|TAKE BACK RETURN|MAIL|ual theodolites. ironic, regular foxes s| +65577|424230|36739|4|45|51939.45|0.05|0.00|N|O|1996-10-07|1996-08-19|1996-10-24|TAKE BACK RETURN|FOB|ongside of the busily ironic pinto b| +65577|26054|1055|5|26|25481.30|0.10|0.05|N|O|1996-09-14|1996-08-07|1996-09-24|TAKE BACK RETURN|MAIL| regular pack| +65577|874748|49783|6|1|1722.70|0.07|0.03|N|O|1996-09-29|1996-08-18|1996-10-05|NONE|FOB|eposits. slyly silent packages detect| +65578|175996|13506|1|17|35223.83|0.06|0.06|N|O|1996-09-08|1996-08-21|1996-09-20|NONE|FOB|cording to the ironically regular foxes.| +65578|951539|1540|2|25|39762.25|0.02|0.07|N|O|1996-07-07|1996-08-03|1996-07-10|DELIVER IN PERSON|AIR|cing, regular foxes use sl| +65579|84323|46825|1|22|28761.04|0.02|0.08|N|O|1998-06-15|1998-05-21|1998-07-10|TAKE BACK RETURN|TRUCK|. carefully even pinto beans are caref| +65579|206741|31750|2|22|36250.06|0.05|0.05|N|O|1998-04-24|1998-05-19|1998-05-13|TAKE BACK RETURN|SHIP|ithout the un| +65580|960557|35596|1|42|67935.42|0.05|0.03|A|F|1995-02-22|1995-03-19|1995-03-05|NONE|FOB|ccounts doubt slyly carefully iro| +65580|79774|17278|2|14|24552.78|0.07|0.04|R|F|1995-03-31|1995-04-06|1995-04-30|TAKE BACK RETURN|MAIL|ronic asymptotes. slyly regular pa| +65580|748114|10629|3|19|22079.52|0.01|0.00|A|F|1995-02-09|1995-03-17|1995-02-10|COLLECT COD|SHIP|ackages. theod| +65580|551090|1091|4|33|37655.31|0.03|0.07|R|F|1995-03-23|1995-03-23|1995-04-17|DELIVER IN PERSON|AIR|uests! regular plate| +65580|159933|9934|5|38|75731.34|0.10|0.03|A|F|1995-03-08|1995-03-29|1995-03-10|TAKE BACK RETURN|TRUCK|cording to the silent request| +65580|992772|30330|6|2|3729.46|0.05|0.02|A|F|1995-02-14|1995-02-17|1995-02-28|TAKE BACK RETURN|REG AIR|yly above the blithely even depos| +65581|208135|20640|1|50|52156.00|0.04|0.03|N|O|1997-09-08|1997-11-06|1997-09-12|COLLECT COD|AIR|above the slyly express dolp| +65581|121652|34155|2|14|23431.10|0.09|0.03|N|O|1997-09-19|1997-10-16|1997-10-14|DELIVER IN PERSON|MAIL|ing forges cajole after the even sautern| +65582|70851|33353|1|40|72874.00|0.02|0.00|N|O|1998-07-13|1998-06-09|1998-08-06|TAKE BACK RETURN|TRUCK|hely unusual excuse| +65582|779861|29862|2|19|36875.77|0.01|0.04|N|O|1998-04-25|1998-07-05|1998-05-05|NONE|AIR|lyly ironic packages! foxes sleep along t| +65582|109251|9252|3|47|59231.75|0.01|0.02|N|O|1998-05-25|1998-06-14|1998-06-08|NONE|RAIL|ep final theo| +65582|180063|30064|4|47|53723.82|0.08|0.00|N|O|1998-07-27|1998-05-21|1998-08-14|TAKE BACK RETURN|REG AIR|y express realms sublate careful| +65582|315516|3035|5|37|56665.50|0.09|0.08|N|O|1998-07-15|1998-07-10|1998-08-04|DELIVER IN PERSON|MAIL|express, special excuses cajo| +65582|866367|16368|6|47|62666.04|0.03|0.02|N|O|1998-04-25|1998-06-11|1998-04-28|NONE|AIR|y regular idea| +65582|15411|2912|7|35|46424.35|0.07|0.03|N|O|1998-07-17|1998-06-20|1998-08-05|DELIVER IN PERSON|AIR|warthogs h| +65583|996364|33922|1|5|7301.60|0.01|0.08|N|O|1997-11-13|1997-12-01|1997-11-22|TAKE BACK RETURN|SHIP|the special accounts cajole slyly | +65583|873936|11488|2|8|15279.12|0.10|0.02|N|O|1997-12-14|1997-10-15|1997-12-19|COLLECT COD|MAIL|xpress instruction| +65583|227862|15375|3|11|19688.35|0.08|0.04|N|O|1997-11-24|1997-11-28|1997-12-04|DELIVER IN PERSON|FOB|e furiously pending instructions. carefull| +65583|664615|2155|4|48|75819.84|0.04|0.05|N|O|1997-10-12|1997-11-25|1997-11-01|NONE|FOB|etly special notornis. r| +65583|175493|13003|5|17|26664.33|0.08|0.00|N|O|1997-09-20|1997-10-12|1997-10-15|NONE|REG AIR|l ideas wake slyly? blithely | +65583|495890|33418|6|3|5657.61|0.02|0.05|N|O|1997-12-09|1997-10-27|1998-01-02|COLLECT COD|RAIL| instructions cajole ironic, final| +65583|416839|29348|7|33|57941.73|0.03|0.05|N|O|1997-11-14|1997-11-30|1997-11-25|TAKE BACK RETURN|TRUCK|ss the slyly sil| +65608|798274|23305|1|1|1372.24|0.02|0.06|N|O|1998-07-28|1998-05-28|1998-08-12|DELIVER IN PERSON|RAIL|ar pinto beans nag quickly. e| +65608|588921|13944|2|16|32158.40|0.10|0.01|N|O|1998-05-12|1998-06-20|1998-05-17|COLLECT COD|TRUCK|gle despite the bl| +65608|981091|43611|3|46|53914.30|0.04|0.06|N|O|1998-06-22|1998-05-12|1998-07-21|COLLECT COD|AIR|areful accounts are slyly. slyly b| +65609|447739|35264|1|32|53974.72|0.02|0.06|A|F|1994-11-20|1995-01-08|1994-12-12|DELIVER IN PERSON|MAIL|ly. regular deposits wake | +65609|142200|17205|2|20|24844.00|0.05|0.04|A|F|1994-12-18|1995-01-01|1994-12-31|DELIVER IN PERSON|FOB|; never even r| +65609|941300|28855|3|2|2682.52|0.10|0.05|R|F|1995-01-05|1995-01-14|1995-01-09|DELIVER IN PERSON|MAIL|se asymptotes use quickly across the furio| +65609|428874|3891|4|39|70311.15|0.03|0.05|R|F|1994-12-27|1995-02-02|1995-01-25|DELIVER IN PERSON|SHIP|ven packages sleep. blithel| +65610|400786|25803|1|2|3373.52|0.05|0.00|N|O|1996-02-14|1996-01-21|1996-02-19|TAKE BACK RETURN|MAIL|sleep blithely. slyly ironic accounts cajol| +65610|1060|1061|2|37|35559.22|0.05|0.04|N|O|1996-02-09|1995-12-15|1996-02-29|NONE|MAIL|quests should boost quick| +65610|806618|6619|3|27|41163.39|0.04|0.01|N|O|1996-01-12|1996-01-29|1996-02-06|TAKE BACK RETURN|MAIL|rious foxes. furiously regular ide| +65610|827886|15435|4|44|79808.96|0.06|0.04|N|O|1995-12-30|1995-12-23|1996-01-16|TAKE BACK RETURN|RAIL|ly. furiously unusual waters x-| +65611|692408|4922|1|12|16804.44|0.06|0.05|A|F|1992-06-30|1992-04-21|1992-07-20|NONE|FOB|onic dependencies lose fluffily ato| +65611|287169|24685|2|19|21966.85|0.04|0.07|A|F|1992-04-25|1992-05-22|1992-05-05|DELIVER IN PERSON|REG AIR|fix furiously. regular pinto beans c| +65611|434737|47246|3|45|75226.95|0.02|0.05|A|F|1992-05-03|1992-04-30|1992-05-05|COLLECT COD|SHIP|egrate fluffily across the requests. ac| +65612|3198|3199|1|47|51755.93|0.01|0.04|A|F|1993-06-17|1993-04-18|1993-06-24|DELIVER IN PERSON|FOB| the furiously regular foxe| +65613|993541|6061|1|39|63745.50|0.03|0.04|N|O|1996-11-25|1996-09-26|1996-12-05|NONE|FOB| according to the express, ruthless pains.| +65613|428975|41484|2|6|11423.70|0.09|0.08|N|O|1996-09-28|1996-10-17|1996-10-28|DELIVER IN PERSON|SHIP| sleep alongside of the regula| +65613|769345|6891|3|5|7071.55|0.00|0.07|N|O|1996-10-18|1996-09-18|1996-11-07|NONE|FOB|ithely regular requests sleep. final i| +65613|369642|19643|4|14|23962.82|0.03|0.08|N|O|1996-09-06|1996-10-05|1996-09-12|NONE|FOB|sleep after the final asymptot| +65613|556297|43831|5|20|27065.40|0.08|0.03|N|O|1996-12-09|1996-09-13|1996-12-18|NONE|TRUCK| packages. unusual, special ideas haggle bl| +65613|678621|16161|6|2|3199.18|0.10|0.03|N|O|1996-09-04|1996-09-29|1996-09-05|DELIVER IN PERSON|REG AIR|ct. unusual instructions ha| +65614|255171|17677|1|7|7883.12|0.03|0.06|N|O|1998-08-21|1998-09-27|1998-08-28|COLLECT COD|SHIP|kages; packages affix fluffily in place of | +65615|641304|28841|1|49|61018.23|0.08|0.00|N|O|1998-05-30|1998-06-18|1998-06-22|TAKE BACK RETURN|SHIP|yly express req| +65615|392464|42465|2|22|34241.90|0.09|0.01|N|O|1998-06-19|1998-05-27|1998-07-17|NONE|SHIP|althily. quickly fina| +65615|137165|49668|3|7|8415.12|0.08|0.02|N|O|1998-07-31|1998-06-23|1998-08-02|NONE|TRUCK|uriously throughout the gi| +65615|330767|43274|4|20|35955.00|0.04|0.01|N|O|1998-05-01|1998-05-30|1998-05-25|NONE|REG AIR|yly special packages haggle fluffily am| +65615|188921|26431|5|33|66327.36|0.07|0.05|N|O|1998-04-30|1998-05-21|1998-05-10|COLLECT COD|AIR| deposits cajo| +65615|187867|25377|6|17|33232.62|0.07|0.01|N|O|1998-06-17|1998-05-20|1998-07-11|NONE|RAIL|eposits al| +65640|848830|48831|1|10|17787.90|0.01|0.08|A|F|1993-03-27|1993-03-09|1993-04-12|DELIVER IN PERSON|FOB| regular dugouts. fluffily even ac| +65640|271597|9113|2|23|36077.34|0.01|0.07|R|F|1993-02-03|1993-03-10|1993-02-28|COLLECT COD|FOB|sly bold pinto beans sleep above| +65640|725128|37643|3|20|23061.80|0.06|0.06|R|F|1993-05-10|1993-03-21|1993-05-18|DELIVER IN PERSON|TRUCK|gular packages haggle blithely quickly pe| +65640|222603|22604|4|37|56446.83|0.05|0.02|R|F|1993-03-20|1993-02-15|1993-03-30|NONE|RAIL|e furiously nev| +65640|273428|10944|5|2|2802.82|0.08|0.01|A|F|1993-01-21|1993-04-03|1993-01-26|NONE|AIR|s against the quickly speci| +65641|736592|24135|1|36|58628.16|0.06|0.02|N|O|1997-10-01|1997-09-01|1997-10-15|NONE|AIR|al platelets. bravely final pint| +65642|555038|5039|1|4|4372.04|0.04|0.08|A|F|1993-08-16|1993-08-08|1993-08-22|DELIVER IN PERSON|TRUCK|lar packages. regular accounts arou| +65642|514443|1974|2|1|1457.42|0.06|0.05|A|F|1993-06-05|1993-08-13|1993-06-10|TAKE BACK RETURN|REG AIR|ironic accounts affix quickly reg| +65642|241969|4474|3|8|15287.60|0.10|0.02|A|F|1993-06-11|1993-08-06|1993-06-23|DELIVER IN PERSON|TRUCK|s cajole special reque| +65642|764417|14418|4|42|62217.96|0.06|0.00|R|F|1993-08-01|1993-08-15|1993-08-27|COLLECT COD|SHIP|ckey players: accounts haggle blithe| +65642|546525|34056|5|33|51859.50|0.06|0.07|R|F|1993-09-06|1993-06-25|1993-09-23|TAKE BACK RETURN|REG AIR|nts. blithely even accounts cajole above th| +65642|442551|42552|6|19|28377.07|0.09|0.04|A|F|1993-07-03|1993-07-25|1993-08-02|NONE|AIR|platelets wake fluffily. fin| +65643|526305|13836|1|39|51919.92|0.10|0.00|N|O|1998-11-07|1998-09-28|1998-11-27|COLLECT COD|AIR|iously alongside of the thinly ironic p| +65643|606016|18529|2|26|23971.48|0.07|0.02|N|O|1998-10-17|1998-09-19|1998-11-02|NONE|AIR|the thinly regular de| +65643|299996|49997|3|7|13971.86|0.06|0.02|N|O|1998-08-13|1998-08-31|1998-08-14|NONE|TRUCK| furiously aro| +65643|26401|1402|4|19|25220.60|0.07|0.00|N|O|1998-08-03|1998-09-12|1998-08-14|NONE|TRUCK|he deposits. furiously regular re| +65643|705487|43030|5|45|67160.25|0.04|0.08|N|O|1998-09-21|1998-09-01|1998-10-07|DELIVER IN PERSON|FOB|inal instructions sleep c| +65644|803623|3624|1|12|18318.96|0.01|0.04|A|F|1994-12-21|1994-11-01|1994-12-28|DELIVER IN PERSON|FOB|lly among the carefully express| +65644|485916|48426|2|22|41841.58|0.02|0.01|A|F|1994-09-03|1994-10-08|1994-09-13|DELIVER IN PERSON|AIR|ackages. frays ha| +65644|787725|37726|3|29|52568.01|0.00|0.02|A|F|1994-08-23|1994-10-24|1994-09-06|COLLECT COD|SHIP|usly against the carefully regular requ| +65644|288317|823|4|19|24800.70|0.08|0.05|R|F|1994-11-22|1994-10-24|1994-11-24|TAKE BACK RETURN|FOB|excuses haggle fluffily carefu| +65644|728670|41185|5|36|61151.04|0.07|0.00|R|F|1994-12-20|1994-10-01|1995-01-05|COLLECT COD|FOB|pecial accounts cajole carefully among| +65644|754538|4539|6|15|23887.50|0.04|0.00|R|F|1994-11-26|1994-09-29|1994-12-09|COLLECT COD|SHIP|ccording to the b| +65644|508114|8115|7|42|47127.78|0.02|0.08|R|F|1994-12-21|1994-09-21|1995-01-10|DELIVER IN PERSON|FOB|ly even accounts are quie| +65645|856496|6497|1|43|62455.35|0.09|0.08|N|O|1996-09-17|1996-09-16|1996-09-25|COLLECT COD|TRUCK|lithely specia| +65645|118789|43794|2|24|43386.72|0.01|0.08|N|O|1996-11-01|1996-09-29|1996-11-10|DELIVER IN PERSON|AIR|s. carefully ironic dep| +65645|480416|42926|3|29|40495.31|0.06|0.02|N|O|1996-09-01|1996-09-20|1996-09-27|COLLECT COD|SHIP|ges are slyly even ideas. blithel| +65645|341438|41439|4|10|14794.20|0.03|0.06|N|O|1996-11-09|1996-10-04|1996-11-29|DELIVER IN PERSON|AIR|ts. ironic | +65645|546412|33943|5|30|43751.70|0.08|0.03|N|O|1996-10-20|1996-09-18|1996-11-19|COLLECT COD|TRUCK|leep stealthily about th| +65645|544078|31609|6|20|22441.00|0.05|0.01|N|O|1996-11-01|1996-10-11|1996-11-15|TAKE BACK RETURN|TRUCK|ions haggle furiously regular accounts| +65646|320879|8398|1|42|79794.12|0.00|0.05|N|O|1996-03-23|1996-03-17|1996-03-30|DELIVER IN PERSON|RAIL|ironic dinos. ideas| +65646|8915|46416|2|31|56541.21|0.09|0.03|N|O|1996-04-02|1996-02-28|1996-04-07|COLLECT COD|REG AIR|sleep carefully carefully bol| +65646|820148|45181|3|10|10681.00|0.09|0.04|N|O|1996-02-20|1996-03-24|1996-02-23|NONE|AIR|y final accounts. special requests are sly| +65646|220736|33241|4|4|6626.88|0.04|0.07|N|O|1996-02-12|1996-04-03|1996-03-10|NONE|RAIL|gouts wake carefu| +65646|904753|17272|5|2|3515.42|0.01|0.08|N|O|1996-04-18|1996-03-03|1996-05-11|NONE|SHIP|final dependenc| +65646|182160|32161|6|34|42233.44|0.06|0.00|N|O|1996-04-03|1996-02-25|1996-04-20|DELIVER IN PERSON|AIR|nto beans. platelets sleep: ironic t| +65647|609083|34108|1|48|47618.40|0.10|0.02|N|O|1997-07-17|1997-05-26|1997-08-10|TAKE BACK RETURN|SHIP| pinto beans. slyly reg| +65647|852971|40523|2|27|51946.11|0.00|0.04|N|O|1997-05-26|1997-06-14|1997-05-27|TAKE BACK RETURN|AIR|ng instructions outside the foxes maintai| +65672|465803|3331|1|49|86670.22|0.00|0.03|R|F|1992-10-31|1992-09-23|1992-11-17|COLLECT COD|RAIL|ly careful deposits nag carefully abo| +65672|738967|13996|2|48|96284.64|0.04|0.02|A|F|1992-09-08|1992-09-10|1992-09-17|TAKE BACK RETURN|RAIL|ly? carefully regular requests sle| +65673|618607|31120|1|10|15255.70|0.10|0.02|A|F|1994-08-28|1994-07-18|1994-09-03|NONE|AIR|posits. carefully final packages cajo| +65673|921616|9171|2|4|6550.28|0.09|0.03|R|F|1994-09-06|1994-08-20|1994-09-28|DELIVER IN PERSON|SHIP|egular packages sleep after the carefully r| +65673|598854|36388|3|3|5858.49|0.04|0.04|R|F|1994-08-02|1994-08-15|1994-08-03|COLLECT COD|MAIL|as. furiously even accounts haggle among | +65673|929326|29327|4|15|20329.20|0.07|0.04|A|F|1994-09-09|1994-06-27|1994-10-02|DELIVER IN PERSON|SHIP|instructions | +65673|166393|3903|5|15|21890.85|0.07|0.06|A|F|1994-09-05|1994-07-06|1994-10-05|COLLECT COD|MAIL| beans sleep acro| +65673|554172|4173|6|15|18392.25|0.03|0.08|A|F|1994-06-17|1994-07-03|1994-07-04|COLLECT COD|TRUCK|g. carefully bold deposits wake. ev| +65674|443948|18965|1|31|58649.52|0.01|0.00|N|O|1998-03-03|1998-01-11|1998-03-25|COLLECT COD|RAIL|n ideas wake carefully sentiments. quic| +65674|425693|25694|2|11|17805.37|0.00|0.04|N|O|1997-11-16|1998-01-07|1997-12-03|DELIVER IN PERSON|MAIL|press, pending theodol| +65675|948584|23621|1|46|75096.84|0.05|0.04|N|O|1996-10-22|1996-09-25|1996-11-19|COLLECT COD|TRUCK|mong the pending, special d| +65676|151855|39365|1|50|95342.50|0.09|0.01|N|O|1998-01-03|1997-11-30|1998-01-11|TAKE BACK RETURN|FOB|iously even accounts haggle furi| +65676|216246|3759|2|46|53462.58|0.07|0.01|N|O|1997-12-17|1998-01-13|1998-01-15|DELIVER IN PERSON|MAIL|posits cajole carefully u| +65676|438745|26270|3|13|21888.36|0.04|0.00|N|O|1998-02-03|1998-01-20|1998-02-28|TAKE BACK RETURN|RAIL|sual pinto beans | +65676|982319|19877|4|32|44840.64|0.02|0.00|N|O|1997-11-01|1998-01-29|1997-11-15|COLLECT COD|FOB|side of the| +65676|818915|31432|5|27|49514.49|0.07|0.08|N|O|1998-02-07|1997-12-07|1998-02-11|NONE|RAIL|s. slyly ironic pi| +65676|493857|6367|6|28|51823.24|0.01|0.04|N|O|1997-12-26|1998-01-24|1997-12-30|NONE|RAIL|ultipliers. excuses wake blithe| +65676|250440|37956|7|1|1390.43|0.08|0.08|N|O|1998-01-12|1998-01-18|1998-02-03|NONE|MAIL|ss, ironic ideas are abo| +65677|138784|38785|1|12|21873.36|0.00|0.02|N|O|1998-05-09|1998-03-15|1998-05-16|NONE|REG AIR| even dependencies. fi| +65677|530217|30218|2|8|9977.52|0.09|0.04|N|O|1998-02-04|1998-03-06|1998-03-05|TAKE BACK RETURN|RAIL|. fluffily regu| +65677|356322|18830|3|47|64780.57|0.10|0.01|N|O|1998-04-12|1998-04-22|1998-04-25|COLLECT COD|REG AIR| packages. even accounts about the ca| +65677|700410|411|4|3|4231.14|0.09|0.04|N|O|1998-04-17|1998-04-03|1998-05-15|NONE|MAIL|ely silent deposits. | +65678|702535|2536|1|16|24600.00|0.06|0.05|N|O|1997-01-03|1997-02-19|1997-01-19|DELIVER IN PERSON|TRUCK|ts beneath the bold requests sl| +65678|505018|30039|2|7|7160.93|0.08|0.02|N|O|1997-02-18|1997-01-16|1997-02-21|TAKE BACK RETURN|RAIL| deposits use fluffily. spe| +65678|830417|5450|3|33|44463.21|0.09|0.00|N|O|1997-03-19|1997-01-31|1997-03-30|DELIVER IN PERSON|AIR|furiously. busy foxes about | +65678|805209|30242|4|29|32310.64|0.06|0.02|N|O|1996-12-19|1996-12-28|1997-01-16|COLLECT COD|TRUCK|blithely slyly even ideas. ideas | +65678|143727|43728|5|2|3541.44|0.06|0.02|N|O|1997-02-17|1997-01-27|1997-03-18|TAKE BACK RETURN|MAIL|nag always carefully unusual reques| +65679|251472|1473|1|48|68326.08|0.06|0.06|N|O|1998-07-07|1998-06-26|1998-07-31|DELIVER IN PERSON|RAIL|y furiously regula| +65679|478551|41061|2|11|16824.83|0.01|0.08|N|O|1998-08-16|1998-07-18|1998-08-30|NONE|MAIL|nts sleep quickly. express multipli| +65704|298161|48162|1|42|48684.30|0.10|0.00|A|F|1993-01-17|1993-01-10|1993-01-19|DELIVER IN PERSON|REG AIR|egrate sly| +65704|178046|28047|2|23|25852.92|0.05|0.03|A|F|1992-11-18|1993-01-05|1992-12-17|TAKE BACK RETURN|FOB|uriously! accounts doze sl| +65705|104811|17314|1|29|52658.49|0.10|0.04|A|F|1995-01-25|1995-03-21|1995-02-12|TAKE BACK RETURN|FOB|ial deposits a| +65705|551226|38760|2|19|24266.80|0.02|0.01|A|F|1994-12-31|1995-03-07|1995-01-29|NONE|AIR|theodolites alongside of the even| +65705|449796|24813|3|25|43644.25|0.05|0.06|A|F|1995-04-02|1995-02-14|1995-04-15|COLLECT COD|TRUCK|n theodolites haggle slyly special the| +65706|326138|13657|1|4|4656.48|0.00|0.05|R|F|1994-06-14|1994-04-22|1994-06-25|DELIVER IN PERSON|TRUCK|ffily across the furious| +65706|388440|25962|2|28|42796.04|0.07|0.07|R|F|1994-03-22|1994-04-17|1994-04-21|DELIVER IN PERSON|RAIL|after the fi| +65707|443113|5622|1|33|34850.97|0.04|0.07|N|O|1998-08-08|1998-06-25|1998-09-04|COLLECT COD|RAIL|ual accounts. even dolphins haggle| +65708|130242|17749|1|41|52161.84|0.01|0.05|R|F|1992-08-26|1992-08-06|1992-08-27|TAKE BACK RETURN|AIR| regular requests wake carefully. ir| +65708|963480|13481|2|21|32412.24|0.10|0.04|A|F|1992-08-27|1992-07-29|1992-09-24|TAKE BACK RETURN|FOB|carefully even| +65708|195993|8497|3|9|18800.91|0.09|0.06|A|F|1992-08-09|1992-08-28|1992-08-13|DELIVER IN PERSON|SHIP|ages are furiously after the ironic re| +65708|48987|11488|4|49|94863.02|0.01|0.07|R|F|1992-06-30|1992-08-24|1992-07-13|TAKE BACK RETURN|SHIP|ic asymptotes cajole finally packages? f| +65709|344723|44724|1|35|61869.85|0.08|0.03|N|O|1995-09-15|1995-10-07|1995-09-28|TAKE BACK RETURN|AIR|ect blithely ironic, final dependencies| +65710|251115|13621|1|30|31983.00|0.02|0.08|R|F|1992-09-07|1992-11-13|1992-09-16|NONE|AIR|s after the excuses nag slyly alon| +65710|474912|37422|2|8|15095.12|0.00|0.01|A|F|1992-11-05|1992-10-31|1992-11-30|COLLECT COD|RAIL| quickly pendin| +65710|834067|34068|3|46|46046.92|0.09|0.04|R|F|1992-11-30|1992-11-13|1992-12-05|DELIVER IN PERSON|RAIL|refully express packages nag furiously| +65710|152072|39582|4|23|25853.61|0.00|0.05|A|F|1992-12-30|1992-11-11|1993-01-21|COLLECT COD|AIR| ironic acco| +65711|184884|34885|1|13|25595.44|0.07|0.02|N|O|1996-03-21|1996-02-04|1996-04-13|COLLECT COD|REG AIR|ffily final instructions boost upon the eve| +65711|338278|38279|2|16|21060.16|0.06|0.06|N|O|1996-02-01|1996-01-25|1996-02-27|NONE|AIR|y express,| +65711|421941|21942|3|46|85694.32|0.07|0.04|N|O|1995-12-20|1996-03-08|1996-01-01|COLLECT COD|TRUCK| deposits. quickly even theodolites | +65711|559621|47155|4|22|36973.20|0.01|0.03|N|O|1995-12-14|1996-01-20|1995-12-19|NONE|FOB|thy instructions. accounts a| +65711|539856|27387|5|24|45499.92|0.03|0.02|N|O|1996-03-02|1996-01-17|1996-03-27|TAKE BACK RETURN|TRUCK|inal packages: ironic, ironic ideas u| +65736|700537|25566|1|41|63037.50|0.00|0.00|N|O|1998-07-14|1998-07-24|1998-08-11|COLLECT COD|RAIL|ng, final theodolites cajole deposits. blit| +65736|917137|42174|2|13|15003.17|0.03|0.06|N|O|1998-08-12|1998-06-28|1998-09-05|TAKE BACK RETURN|TRUCK| deposits; requests haggle. slyly special f| +65736|312688|25195|3|32|54421.44|0.03|0.05|N|O|1998-08-09|1998-07-22|1998-09-05|NONE|SHIP|ickly. even ideas across the e| +65736|336317|23836|4|24|32479.20|0.08|0.07|N|O|1998-06-07|1998-08-02|1998-06-16|COLLECT COD|REG AIR|. furiously final pinto beans wake quickly | +65736|478061|28062|5|7|7273.28|0.02|0.05|N|O|1998-08-03|1998-07-25|1998-08-15|TAKE BACK RETURN|RAIL|nic deposits wake around the blit| +65736|760327|22843|6|16|22196.64|0.08|0.01|N|O|1998-05-18|1998-07-18|1998-06-06|COLLECT COD|RAIL|s against the ironically flu| +65737|165187|27691|1|10|12521.80|0.03|0.03|N|O|1998-01-31|1998-02-25|1998-02-10|NONE|FOB|ons detect quickl| +65737|293697|43698|2|50|84534.00|0.08|0.04|N|O|1998-04-10|1998-01-16|1998-05-04|TAKE BACK RETURN|AIR|sleep blithely| +65737|163322|38329|3|20|27706.40|0.10|0.04|N|O|1997-12-22|1998-03-01|1998-01-11|NONE|REG AIR|ar, final instructions unwi| +65737|944142|44143|4|44|52188.40|0.07|0.05|N|O|1998-04-07|1998-01-17|1998-05-02|DELIVER IN PERSON|RAIL| the special acco| +65737|189926|39927|5|32|64509.44|0.01|0.08|N|O|1998-03-16|1998-02-11|1998-04-04|TAKE BACK RETURN|AIR|ress ideas. slyly| +65737|86187|11190|6|16|18770.88|0.09|0.08|N|O|1998-02-11|1998-03-06|1998-02-12|DELIVER IN PERSON|TRUCK|nic accounts unwind caref| +65737|544690|44691|7|10|17346.70|0.00|0.07|N|O|1997-12-29|1998-01-10|1997-12-30|COLLECT COD|SHIP|sts. even theodoli| +65738|591458|28992|1|19|29439.17|0.04|0.08|R|F|1992-11-28|1992-09-21|1992-12-01|TAKE BACK RETURN|SHIP|l requests integrate a| +65738|621240|46265|2|9|10450.89|0.02|0.04|A|F|1992-12-12|1992-10-04|1992-12-23|DELIVER IN PERSON|AIR|ular asymptotes against the foxes sleep| +65738|171321|33825|3|38|52908.16|0.00|0.07|A|F|1992-10-30|1992-09-27|1992-11-22|DELIVER IN PERSON|SHIP|leep furiously slyly pen| +65738|387681|25203|4|12|21224.04|0.03|0.02|R|F|1992-12-17|1992-09-27|1993-01-06|DELIVER IN PERSON|RAIL| slyly pending accounts! fluffily| +65739|772249|9795|1|22|29066.62|0.06|0.00|R|F|1992-08-11|1992-08-07|1992-08-22|TAKE BACK RETURN|REG AIR|iously among the slyly regular p| +65739|175678|13188|2|5|8768.35|0.01|0.08|R|F|1992-07-26|1992-09-10|1992-08-25|COLLECT COD|TRUCK|tions promise. carefully sp| +65739|620012|32525|3|35|32619.30|0.02|0.07|R|F|1992-06-28|1992-08-04|1992-07-25|COLLECT COD|AIR|lites sleep carefully across th| +65739|539572|27103|4|7|11280.85|0.05|0.00|A|F|1992-08-25|1992-07-22|1992-09-01|TAKE BACK RETURN|REG AIR|tes nag blithely| +65739|575183|37695|5|38|47810.08|0.03|0.01|A|F|1992-10-12|1992-07-21|1992-11-09|TAKE BACK RETURN|TRUCK|es haggle above the regular, unusual idea| +65739|89932|27436|6|21|40360.53|0.08|0.06|A|F|1992-08-22|1992-07-21|1992-08-28|COLLECT COD|SHIP|pinto beans. daringly ev| +65740|89967|39968|1|15|29354.40|0.05|0.04|N|O|1998-02-05|1998-04-12|1998-02-27|DELIVER IN PERSON|AIR|ffily regular deposits; car| +65740|68598|31100|2|30|46997.70|0.10|0.08|N|O|1998-02-17|1998-04-08|1998-02-22|TAKE BACK RETURN|REG AIR| wake slyly ironic excuses| +65740|911128|23647|3|47|53536.76|0.01|0.01|N|O|1998-04-28|1998-03-07|1998-05-20|COLLECT COD|TRUCK|gle carefully quickly| +65740|315240|15241|4|28|35146.44|0.04|0.01|N|O|1998-04-07|1998-03-19|1998-05-02|COLLECT COD|TRUCK|ke ironically inside the slyl| +65740|223248|10761|5|4|4684.92|0.00|0.08|N|O|1998-05-10|1998-03-28|1998-05-18|COLLECT COD|SHIP|y near the slyly silent theodolites. ironi| +65741|344770|32289|1|12|21777.12|0.05|0.00|N|O|1998-03-22|1998-04-12|1998-03-26|DELIVER IN PERSON|SHIP|sly after the car| +65741|539991|39992|2|31|62960.07|0.09|0.06|N|O|1998-03-18|1998-04-19|1998-03-24|DELIVER IN PERSON|FOB|tions. fluff| +65741|623979|36492|3|2|3805.88|0.08|0.07|N|O|1998-05-05|1998-05-21|1998-05-29|COLLECT COD|TRUCK|ns. slyly final| +65741|204210|29219|4|42|46796.40|0.04|0.03|N|O|1998-05-14|1998-04-29|1998-05-31|TAKE BACK RETURN|TRUCK|. furiously ironic acco| +65741|140773|40774|5|3|5441.31|0.00|0.03|N|O|1998-03-08|1998-04-24|1998-03-14|NONE|MAIL| slyly. iro| +65741|955334|17854|6|41|56960.89|0.09|0.02|N|O|1998-04-09|1998-03-27|1998-04-18|NONE|AIR|ndencies. final somas mold around t| +65741|282671|20187|7|48|79375.68|0.02|0.04|N|O|1998-02-24|1998-04-30|1998-03-20|NONE|TRUCK|s will have to wake blithely final i| +65742|845417|45418|1|35|47682.95|0.07|0.06|A|F|1993-03-09|1993-03-07|1993-03-14|DELIVER IN PERSON|SHIP|ng to the carefully regular de| +65742|907699|45254|2|19|32426.35|0.04|0.02|R|F|1993-02-20|1993-04-15|1993-03-17|DELIVER IN PERSON|TRUCK|cajole slyly beside th| +65742|693901|6415|3|3|5684.61|0.00|0.00|R|F|1993-03-06|1993-04-18|1993-03-07|NONE|AIR|elets. packages engage| +65742|388018|38019|4|6|6636.00|0.02|0.07|R|F|1993-05-25|1993-04-20|1993-06-24|TAKE BACK RETURN|SHIP|ions would wake. pinto beans affix fluffi| +65742|401937|14446|5|39|71717.49|0.10|0.02|R|F|1993-04-02|1993-04-16|1993-04-24|TAKE BACK RETURN|REG AIR|. regular excuses | +65742|340355|2862|6|4|5581.36|0.08|0.06|R|F|1993-05-24|1993-04-23|1993-06-01|TAKE BACK RETURN|TRUCK|ajole according to the regular,| +65743|70059|32561|1|12|12348.60|0.03|0.08|R|F|1993-02-13|1993-03-05|1993-02-17|DELIVER IN PERSON|AIR|y express foxes cajole carefully at the sp| +65743|471840|46859|2|20|36236.40|0.10|0.05|A|F|1992-12-19|1993-03-12|1992-12-20|DELIVER IN PERSON|AIR|hely express accounts. asymptotes believ| +65743|201990|14495|3|28|52975.44|0.01|0.01|R|F|1993-01-11|1993-01-23|1993-02-10|COLLECT COD|FOB|nstructions cajole quickly depend| +65743|845360|45361|4|36|46991.52|0.05|0.00|R|F|1992-12-19|1993-02-10|1992-12-25|TAKE BACK RETURN|SHIP|tes haggle carefully| +65768|954596|29635|1|25|41263.75|0.02|0.04|A|F|1994-10-09|1994-11-21|1994-10-24|COLLECT COD|SHIP|ckages. final, | +65768|878455|16007|2|29|41568.89|0.04|0.01|A|F|1994-11-20|1994-12-13|1994-11-22|DELIVER IN PERSON|SHIP|ven pinto beans use slyly | +65768|185006|35007|3|30|32730.00|0.04|0.00|A|F|1994-12-10|1994-11-03|1994-12-12|NONE|MAIL|al pinto beans are quietly blit| +65768|386814|11829|4|37|70329.60|0.07|0.05|A|F|1994-12-21|1994-10-30|1995-01-06|DELIVER IN PERSON|AIR|ong the final account| +65769|104957|17460|1|47|92211.65|0.04|0.05|R|F|1992-08-02|1992-09-11|1992-08-20|DELIVER IN PERSON|SHIP|excuses are quickly carefully special ins| +65769|996998|22037|2|15|31424.25|0.07|0.01|R|F|1992-09-13|1992-09-08|1992-10-07|NONE|REG AIR|blate slowly along the| +65769|534742|9763|3|14|24874.08|0.05|0.06|R|F|1992-08-08|1992-09-22|1992-09-07|DELIVER IN PERSON|MAIL|ly. slyly regular instructions are. slyly i| +65769|399048|49049|4|17|19499.51|0.09|0.02|R|F|1992-09-26|1992-10-18|1992-10-20|COLLECT COD|REG AIR|ously even requests. ironic warthogs| +65769|788323|839|5|12|16935.48|0.06|0.03|A|F|1992-11-22|1992-10-03|1992-12-16|NONE|REG AIR|uffily slyly bold| +65769|332444|7457|6|37|54627.91|0.10|0.06|A|F|1992-09-25|1992-09-08|1992-09-27|COLLECT COD|AIR|inal asymptote| +65770|956883|44441|1|25|48496.00|0.04|0.08|A|F|1993-04-27|1993-03-21|1993-04-29|TAKE BACK RETURN|TRUCK|sits; carefully express instructio| +65771|365941|40956|1|12|24083.16|0.00|0.06|R|F|1995-05-07|1995-04-30|1995-05-19|COLLECT COD|FOB|ly final foxes. regul| +65771|366676|29184|2|46|80162.36|0.02|0.05|N|F|1995-05-19|1995-05-05|1995-06-18|TAKE BACK RETURN|AIR| sleep fluf| +65771|710300|47843|3|50|65513.50|0.01|0.06|A|F|1995-04-21|1995-04-27|1995-05-21|TAKE BACK RETURN|AIR| instructions po| +65771|5155|17656|4|37|39225.55|0.06|0.06|N|O|1995-07-08|1995-05-31|1995-07-18|COLLECT COD|TRUCK|usual accounts wake caref| +65772|167204|29708|1|50|63560.00|0.01|0.07|N|O|1997-09-28|1997-08-30|1997-10-12|COLLECT COD|REG AIR|quests. exp| +65772|183183|45687|2|26|32920.68|0.01|0.06|N|O|1997-10-23|1997-08-23|1997-11-02|TAKE BACK RETURN|AIR| evenly bold requests sublate furiously| +65772|752793|2794|3|26|47989.76|0.06|0.05|N|O|1997-08-08|1997-08-17|1997-08-10|DELIVER IN PERSON|FOB|o beans. special, even accounts are fluffil| +65772|175336|25337|4|23|32460.59|0.00|0.08|N|O|1997-08-15|1997-08-25|1997-09-13|NONE|AIR| slyly amo| +65773|636117|36118|1|14|14743.12|0.02|0.00|R|F|1992-09-01|1992-06-23|1992-09-25|COLLECT COD|TRUCK| the silent| +65773|215687|40696|2|20|32053.40|0.09|0.00|A|F|1992-08-29|1992-06-13|1992-09-21|DELIVER IN PERSON|TRUCK|ly ironic excuses nag carefully pe| +65773|51094|38598|3|47|49119.23|0.02|0.03|R|F|1992-06-26|1992-06-08|1992-07-19|COLLECT COD|FOB|. bold, enticing asymptote| +65773|720819|8362|4|29|53353.62|0.05|0.02|A|F|1992-06-17|1992-07-25|1992-06-21|NONE|FOB|ironic accounts. ironic notorni| +65773|790995|3511|5|24|50063.04|0.06|0.07|A|F|1992-05-24|1992-07-30|1992-06-15|DELIVER IN PERSON|REG AIR| carefully ironic pinto beans| +65774|784375|34376|1|9|13134.06|0.04|0.00|R|F|1992-03-14|1992-04-20|1992-03-15|COLLECT COD|AIR|oze regular packages. carefully regular acc| +65774|983514|33515|2|24|38339.28|0.03|0.05|A|F|1992-04-09|1992-03-21|1992-04-22|COLLECT COD|MAIL|ide of the packages. deposi| +65774|917086|42123|3|35|38606.40|0.01|0.06|A|F|1992-03-05|1992-03-10|1992-03-06|DELIVER IN PERSON|SHIP| about the ca| +65774|454573|42101|4|15|22913.25|0.00|0.03|A|F|1992-04-19|1992-04-02|1992-04-23|TAKE BACK RETURN|MAIL|ng to the ruthless pac| +65774|7074|32075|5|35|34337.45|0.10|0.08|R|F|1992-02-12|1992-05-04|1992-02-26|TAKE BACK RETURN|REG AIR| even foxes wake| +65774|888114|632|6|12|13224.84|0.09|0.03|A|F|1992-06-09|1992-03-15|1992-06-23|NONE|AIR|ions. blithely express accounts use furious| +65775|79527|29528|1|1|1506.52|0.08|0.03|A|F|1992-08-05|1992-08-17|1992-08-29|NONE|TRUCK|thely even packages wake quickl| +65775|604161|29186|2|18|19172.34|0.02|0.03|A|F|1992-07-21|1992-08-25|1992-08-20|TAKE BACK RETURN|AIR|to beans. fluffily bold pinto be| +65775|133797|21304|3|25|45769.75|0.01|0.05|R|F|1992-08-30|1992-09-04|1992-09-17|NONE|MAIL|posits haggle bravely blithely eve| +65775|720306|32821|4|44|58355.88|0.09|0.00|A|F|1992-10-23|1992-08-18|1992-11-15|DELIVER IN PERSON|FOB|he fluffily e| +65775|169021|19022|5|22|23980.44|0.10|0.06|R|F|1992-08-24|1992-09-08|1992-09-04|TAKE BACK RETURN|FOB|eposits integrate blithely bold packages. | +65800|655991|31018|1|22|42833.12|0.06|0.06|N|O|1997-09-27|1997-11-02|1997-10-14|DELIVER IN PERSON|TRUCK|ongside of the slyly bo| +65800|227049|39554|2|33|32208.99|0.06|0.02|N|O|1997-11-22|1997-10-09|1997-12-19|TAKE BACK RETURN|REG AIR| final the| +65800|996753|21792|3|40|73988.40|0.03|0.08|N|O|1997-08-21|1997-10-27|1997-08-26|DELIVER IN PERSON|MAIL|e furiously | +65800|423808|48825|4|11|19049.58|0.05|0.03|N|O|1997-08-31|1997-10-22|1997-09-25|TAKE BACK RETURN|FOB|deposits wake fluffil| +65800|939683|27238|5|17|29284.88|0.06|0.01|N|O|1997-10-30|1997-10-31|1997-11-20|NONE|TRUCK|slyly regular asymptotes. furiously | +65800|247549|47550|6|17|25441.01|0.09|0.01|N|O|1997-12-15|1997-10-06|1997-12-30|TAKE BACK RETURN|SHIP|eodolites | +65801|331346|18865|1|10|13773.30|0.09|0.02|N|O|1995-10-13|1995-11-09|1995-11-10|NONE|AIR|sits doubt | +65801|921958|21959|2|25|49497.75|0.06|0.06|N|O|1995-10-12|1995-11-19|1995-10-21|NONE|MAIL|sits sleep. furiously ironic ins| +65802|895264|7782|1|29|36517.38|0.07|0.08|N|O|1998-06-19|1998-07-15|1998-07-10|DELIVER IN PERSON|TRUCK|s excuses | +65802|691485|16512|2|34|50199.30|0.09|0.03|N|O|1998-07-12|1998-07-03|1998-07-15|DELIVER IN PERSON|FOB|. final deposits wake furio| +65802|777895|2926|3|30|59185.80|0.00|0.00|N|O|1998-07-21|1998-07-23|1998-08-14|NONE|FOB|ld requests sleep among t| +65803|653249|28276|1|35|42077.35|0.09|0.00|N|O|1996-01-03|1995-11-17|1996-01-04|COLLECT COD|AIR|ouches. accounts sleep: iron| +65803|145629|8132|2|19|31817.78|0.04|0.01|N|O|1995-10-04|1995-11-19|1995-10-14|COLLECT COD|SHIP|bove the final accounts ha| +65803|577838|15372|3|38|72800.78|0.08|0.07|N|O|1995-10-07|1995-11-02|1995-10-26|TAKE BACK RETURN|RAIL|riously final instructions. bold,| +65803|710489|23004|4|10|14994.50|0.01|0.07|N|O|1995-12-04|1995-12-02|1995-12-20|DELIVER IN PERSON|MAIL|haggle slyly about th| +65804|89458|26962|1|17|24606.65|0.05|0.00|A|F|1993-08-07|1993-09-03|1993-08-25|COLLECT COD|SHIP|express sentiments wake carefu| +65804|513844|38865|2|1|1857.82|0.10|0.06|A|F|1993-11-07|1993-09-22|1993-12-01|DELIVER IN PERSON|MAIL|p carefully regula| +65804|164118|14119|3|7|8274.77|0.01|0.03|A|F|1993-10-07|1993-09-12|1993-11-01|TAKE BACK RETURN|RAIL| furiously special packages sleep s| +65805|380214|17736|1|32|41414.40|0.06|0.01|N|O|1995-11-22|1995-12-19|1995-12-07|COLLECT COD|TRUCK|uriously final requests. special, even| +65806|177707|40211|1|8|14277.60|0.01|0.00|R|F|1994-04-28|1994-03-30|1994-05-27|COLLECT COD|SHIP|ong the quick| +65807|510930|48461|1|3|5822.73|0.02|0.08|N|O|1997-01-04|1997-01-01|1997-01-26|COLLECT COD|MAIL|ideas nag q| +65807|196685|34195|2|31|55232.08|0.01|0.04|N|O|1997-01-17|1996-12-30|1997-02-11|NONE|RAIL|s along the slyly bold deposits haggle fi| +65832|62313|12314|1|12|15303.72|0.03|0.00|R|F|1993-10-25|1993-12-13|1993-11-14|DELIVER IN PERSON|REG AIR|e alongside of the| +65832|293461|30977|2|38|55269.10|0.06|0.08|R|F|1993-11-04|1993-11-14|1993-11-29|COLLECT COD|AIR| quickly against the regular accounts.| +65832|184318|46822|3|4|5609.24|0.08|0.04|A|F|1993-11-22|1993-12-03|1993-11-29|TAKE BACK RETURN|REG AIR|the ironic ideas. furiously | +65833|551537|39071|1|32|50832.32|0.08|0.01|N|O|1996-11-24|1996-10-11|1996-12-05|NONE|FOB|ng the carefully iron| +65834|680632|30633|1|49|79017.40|0.04|0.00|N|O|1997-04-05|1997-04-21|1997-04-28|COLLECT COD|SHIP|eodolites boost across the slyly| +65834|368965|18966|2|44|89493.80|0.04|0.00|N|O|1997-03-02|1997-03-29|1997-03-19|TAKE BACK RETURN|TRUCK|lyly unusual accounts. slyly ironic pinto b| +65834|190139|40140|3|29|35644.77|0.04|0.05|N|O|1997-03-06|1997-03-22|1997-03-26|NONE|FOB| slyly regular packag| +65834|664278|14279|4|7|8695.68|0.00|0.08|N|O|1997-01-27|1997-03-12|1997-02-01|COLLECT COD|RAIL|ously final tithes wake carefully fluf| +65834|516824|16825|5|48|88358.40|0.04|0.04|N|O|1997-01-31|1997-03-15|1997-02-13|COLLECT COD|TRUCK| according to the caref| +65834|255080|30091|6|50|51753.50|0.04|0.06|N|O|1997-05-22|1997-03-17|1997-05-31|TAKE BACK RETURN|TRUCK|osits. furiously unusual packages amo| +65835|827990|40507|1|19|36441.05|0.04|0.01|N|O|1997-06-17|1997-07-11|1997-07-01|DELIVER IN PERSON|TRUCK|inal pinto beans. ironic, id| +65835|24323|49324|2|5|6236.60|0.00|0.00|N|O|1997-08-20|1997-07-28|1997-09-10|COLLECT COD|AIR|. quietly regular pinto beans cajole | +65835|796437|46438|3|37|56735.80|0.03|0.03|N|O|1997-06-18|1997-07-05|1997-07-15|TAKE BACK RETURN|FOB|ounts haggle slyly regular dolphins. pint| +65835|700245|246|4|1|1245.21|0.08|0.03|N|O|1997-07-15|1997-07-20|1997-08-08|COLLECT COD|SHIP|packages. pending pearls alongside of | +65835|4963|29964|5|14|26151.44|0.09|0.06|N|O|1997-09-12|1997-07-15|1997-10-07|COLLECT COD|RAIL|nal accounts sublate. furiously| +65835|409187|34204|6|38|41654.08|0.03|0.02|N|O|1997-08-06|1997-07-21|1997-08-19|TAKE BACK RETURN|FOB|. carefully special orbits haggle fluff| +65836|474660|37170|1|32|52308.48|0.02|0.07|R|F|1994-06-03|1994-06-01|1994-06-11|NONE|REG AIR|ts nag above the carefully pending| +65836|600369|370|2|32|40618.56|0.00|0.00|A|F|1994-04-21|1994-05-20|1994-04-26|TAKE BACK RETURN|SHIP| furiously special inst| +65836|390962|28484|3|28|57482.60|0.07|0.06|R|F|1994-07-22|1994-06-08|1994-08-21|TAKE BACK RETURN|TRUCK| quickly. careful foxes cajole a| +65836|894088|19123|4|42|45445.68|0.06|0.05|A|F|1994-04-18|1994-06-11|1994-05-18|NONE|AIR|. furiously final | +65836|927343|14898|5|32|43849.60|0.09|0.06|R|F|1994-04-13|1994-06-05|1994-05-08|DELIVER IN PERSON|SHIP| about the furious| +65836|849977|12494|6|46|88638.78|0.04|0.00|A|F|1994-05-14|1994-04-26|1994-06-04|COLLECT COD|SHIP| regular packages wi| +65837|412002|12003|1|26|23763.48|0.01|0.08|N|O|1998-04-10|1998-06-21|1998-05-02|DELIVER IN PERSON|REG AIR|counts. darin| +65838|30231|5232|1|23|26708.29|0.09|0.04|N|O|1997-12-06|1997-09-21|1997-12-21|DELIVER IN PERSON|AIR|o beans hinder quic| +65838|80826|18330|2|41|74079.62|0.06|0.02|N|O|1997-11-20|1997-09-16|1997-11-21|TAKE BACK RETURN|RAIL| after the ca| +65838|427632|27633|3|11|17155.71|0.07|0.07|N|O|1997-08-22|1997-10-27|1997-09-08|TAKE BACK RETURN|REG AIR|ts nag quickly carefully sp| +65839|3356|3357|1|27|34002.45|0.04|0.02|A|F|1995-01-30|1994-12-12|1995-02-28|TAKE BACK RETURN|AIR|es. carefully even theodolites | +65839|404252|41777|2|26|30061.98|0.05|0.03|A|F|1994-12-30|1994-12-25|1995-01-24|COLLECT COD|AIR|riously above the slyly unusu| +65839|262259|49775|3|10|12212.40|0.10|0.00|R|F|1995-02-24|1995-01-23|1995-03-13|DELIVER IN PERSON|REG AIR|y accounts about the slyl| +65839|776794|26795|4|6|11224.56|0.00|0.05|R|F|1995-02-01|1994-12-16|1995-02-06|COLLECT COD|TRUCK|totes nod against t| +65839|568266|43289|5|12|16010.88|0.07|0.06|R|F|1994-12-20|1995-01-08|1995-01-14|DELIVER IN PERSON|AIR|slyly special excuses sleep carefully caref| +65839|841668|41669|6|33|53117.46|0.04|0.04|A|F|1994-12-24|1994-12-31|1995-01-01|NONE|RAIL|ending asym| +65839|907908|32945|7|34|65139.24|0.10|0.03|R|F|1995-02-20|1995-01-22|1995-03-15|NONE|REG AIR|tions. furiously slow packages boost | +65864|196827|9331|1|15|28857.30|0.08|0.07|N|O|1996-02-03|1996-04-01|1996-02-09|TAKE BACK RETURN|RAIL|e requests. slyly even idea| +65864|71235|21236|2|16|19299.68|0.03|0.02|N|O|1996-02-13|1996-02-19|1996-02-24|TAKE BACK RETURN|REG AIR|s wake after the slyly unusual reques| +65864|232045|7054|3|4|3908.12|0.00|0.04|N|O|1996-04-22|1996-02-20|1996-04-24|TAKE BACK RETURN|SHIP|the bold, pending acc| +65864|966401|16402|4|18|26412.48|0.07|0.02|N|O|1996-02-02|1996-02-14|1996-02-25|DELIVER IN PERSON|MAIL|ts. unusual, fi| +65864|297366|47367|5|34|46353.90|0.05|0.04|N|O|1996-01-29|1996-03-13|1996-02-12|NONE|AIR|nding foxes. carefully| +65865|471966|21967|1|22|42634.68|0.06|0.02|A|F|1993-02-04|1992-12-02|1993-02-23|DELIVER IN PERSON|SHIP|, unusual asymptotes caj| +65866|543619|43620|1|11|18288.49|0.02|0.01|A|F|1994-04-04|1994-03-24|1994-04-26|NONE|TRUCK|arefully speci| +65866|599347|36881|2|6|8677.92|0.04|0.06|R|F|1994-03-25|1994-04-12|1994-04-05|COLLECT COD|REG AIR|ven, special deposits thrash above the| +65866|216238|16239|3|39|45014.58|0.10|0.05|R|F|1994-03-12|1994-03-15|1994-03-16|DELIVER IN PERSON|REG AIR|l asymptotes. furiously regular| +65866|295679|8185|4|31|51914.46|0.02|0.04|A|F|1994-04-30|1994-03-22|1994-05-10|NONE|SHIP|ven instructions. daring packages haggle c| +65866|471551|9079|5|4|6090.12|0.10|0.06|A|F|1994-04-14|1994-04-09|1994-04-25|DELIVER IN PERSON|RAIL| ideas? quickly fi| +65866|353625|16133|6|38|63787.18|0.08|0.01|R|F|1994-03-15|1994-03-15|1994-04-06|NONE|AIR|ilent accounts. regular packages engage| +65866|369446|19447|7|33|50009.19|0.00|0.06|A|F|1994-04-06|1994-04-10|1994-04-12|COLLECT COD|RAIL| will boost carefully regular depo| +65867|265340|15341|1|40|52213.20|0.04|0.08|A|F|1993-06-18|1993-06-25|1993-07-07|TAKE BACK RETURN|TRUCK|s boost furiously a| +65867|564858|39881|2|20|38456.60|0.05|0.07|A|F|1993-06-03|1993-08-13|1993-06-06|COLLECT COD|MAIL|eposits impress blithely even deposits.| +65867|554633|42167|3|21|35439.81|0.05|0.08|R|F|1993-07-12|1993-08-01|1993-08-02|NONE|MAIL| carefully unusual ideas believe fur| +65868|338113|25632|1|13|14964.30|0.08|0.00|N|O|1995-12-17|1995-10-06|1996-01-16|TAKE BACK RETURN|AIR|ealthy packages. furiously specia| +65869|785231|35232|1|6|7897.20|0.08|0.02|A|F|1993-05-21|1993-05-13|1993-06-11|COLLECT COD|AIR| about the ex| +65870|94972|7474|1|49|96381.53|0.09|0.06|N|O|1997-02-23|1997-02-10|1997-02-27|COLLECT COD|REG AIR|e final, express packages; | +65870|179958|29959|2|1|2037.95|0.01|0.04|N|O|1997-01-06|1996-12-18|1997-02-05|COLLECT COD|FOB|kages after the pending, bold pi| +65870|539415|26946|3|12|17452.68|0.09|0.03|N|O|1996-11-15|1997-02-03|1996-12-01|NONE|MAIL|ously final accou| +65870|943801|18838|4|24|44274.24|0.10|0.02|N|O|1996-12-20|1997-02-07|1996-12-28|DELIVER IN PERSON|TRUCK|must are. bold, final deposit| +65870|454802|29821|5|44|77298.32|0.01|0.03|N|O|1996-12-22|1997-02-10|1997-01-14|NONE|FOB|te furiously.| +65871|68035|30537|1|46|46139.38|0.00|0.08|A|F|1993-01-23|1993-02-03|1993-02-06|COLLECT COD|REG AIR|slyly. regul| +65871|453500|41028|2|16|23255.68|0.02|0.00|A|F|1993-02-23|1993-01-23|1993-03-15|DELIVER IN PERSON|AIR|onic instruction| +65871|974376|11934|3|17|24655.61|0.08|0.04|R|F|1993-01-13|1993-02-04|1993-02-10|NONE|RAIL|. carefully even in| +65871|328142|3155|4|28|32763.64|0.00|0.02|R|F|1993-04-05|1993-02-22|1993-04-29|TAKE BACK RETURN|RAIL|nts wake ca| +65871|80420|5423|5|25|35010.50|0.08|0.01|A|F|1993-01-15|1993-01-13|1993-01-18|TAKE BACK RETURN|AIR|aggle slyly ironic excuses. fluff| +65871|603813|3814|6|49|84122.22|0.09|0.05|A|F|1993-01-01|1993-01-06|1993-01-15|TAKE BACK RETURN|AIR|egular foxes are quickly special, regular| +65871|276276|1287|7|7|8765.82|0.10|0.02|A|F|1993-02-16|1993-01-04|1993-02-22|COLLECT COD|RAIL|st the final, regular accounts. | +65896|367375|17376|1|27|38943.72|0.00|0.06|A|F|1993-05-03|1993-03-07|1993-05-16|DELIVER IN PERSON|SHIP|gle blithe | +65896|455309|17819|2|33|41721.24|0.07|0.08|R|F|1993-04-17|1993-03-12|1993-04-18|DELIVER IN PERSON|MAIL|iously special foxes nag s| +65896|369208|6730|3|23|29375.37|0.03|0.08|R|F|1993-02-05|1993-03-27|1993-03-05|DELIVER IN PERSON|AIR|oss the blithely exp| +65897|897602|47603|1|31|49586.36|0.00|0.04|R|F|1992-06-18|1992-05-12|1992-06-21|TAKE BACK RETURN|SHIP|uests cajole slyly. slyly bol| +65897|996803|46804|2|49|93088.24|0.10|0.08|R|F|1992-05-31|1992-05-15|1992-06-13|TAKE BACK RETURN|MAIL| slyly bold sentiments. slyly bold ideas| +65897|253685|16191|3|20|32773.40|0.05|0.00|A|F|1992-05-21|1992-06-09|1992-06-13|COLLECT COD|RAIL|nst the express grouches haggle | +65897|680587|30588|4|27|42323.85|0.05|0.05|A|F|1992-07-07|1992-05-25|1992-07-30|COLLECT COD|FOB|s. regular, final warthogs | +65897|613494|26007|5|48|67558.08|0.09|0.00|A|F|1992-06-24|1992-06-06|1992-07-18|COLLECT COD|REG AIR|s among the excuses are carefully final| +65897|978988|4027|6|20|41338.80|0.01|0.06|A|F|1992-07-05|1992-06-19|1992-08-03|COLLECT COD|RAIL|lar tithes. final, regular acco| +65898|478240|40750|1|27|32891.94|0.02|0.01|N|O|1998-02-04|1998-03-14|1998-02-24|COLLECT COD|FOB| have to nag quickly ruth| +65898|766420|41451|2|16|23782.24|0.03|0.02|N|O|1998-04-22|1998-03-22|1998-05-08|DELIVER IN PERSON|TRUCK|ges. regular, expre| +65898|211856|49369|3|23|40660.32|0.02|0.07|N|O|1998-01-29|1998-03-16|1998-02-28|NONE|FOB|r, final theodolites ab| +65898|658232|45772|4|27|32135.40|0.02|0.00|N|O|1998-04-02|1998-03-18|1998-04-25|NONE|SHIP|ckly regular theodolites sublate n| +65898|892069|17104|5|28|29708.56|0.03|0.06|N|O|1998-05-15|1998-03-23|1998-05-20|COLLECT COD|TRUCK|lyly after the carefully| +65899|932925|32926|1|16|31326.08|0.00|0.04|A|F|1995-02-11|1995-01-15|1995-03-11|DELIVER IN PERSON|TRUCK|ly regular pack| +65899|666207|16208|2|19|22290.23|0.02|0.00|R|F|1995-03-23|1995-02-16|1995-03-29|NONE|REG AIR|ctions. dependencies against th| +65899|935579|10616|3|36|58123.08|0.01|0.00|R|F|1994-12-16|1995-01-13|1994-12-22|TAKE BACK RETURN|MAIL| notornis are ca| +65899|263403|13404|4|16|21862.24|0.05|0.04|R|F|1995-01-16|1995-01-22|1995-01-31|TAKE BACK RETURN|SHIP|. ideas nag furiously ironic ide| +65899|2200|27201|5|46|50701.20|0.08|0.07|R|F|1994-12-02|1995-02-09|1994-12-23|DELIVER IN PERSON|REG AIR| theodolites wake quickly even accounts. a| +65900|829126|16675|1|9|9495.72|0.04|0.05|R|F|1995-06-04|1995-06-09|1995-06-05|COLLECT COD|REG AIR|low excuses integrate blith| +65900|120625|8132|2|18|29621.16|0.10|0.04|A|F|1995-04-02|1995-06-01|1995-04-04|NONE|AIR|c instructions among the blithel| +65900|341817|4324|3|39|72493.20|0.05|0.05|A|F|1995-06-09|1995-05-23|1995-06-15|DELIVER IN PERSON|MAIL|totes. blith| +65901|103000|15503|1|35|35105.00|0.00|0.02|N|O|1998-03-29|1998-02-23|1998-04-27|COLLECT COD|REG AIR|gular, express accounts c| +65901|115204|40209|2|17|20726.40|0.04|0.04|N|O|1998-04-09|1998-01-18|1998-05-07|COLLECT COD|RAIL|posits. regular p| +65901|224722|49731|3|26|42814.46|0.00|0.04|N|O|1997-12-27|1998-01-29|1998-01-26|COLLECT COD|RAIL|le carefully around| +65902|188829|26339|1|35|67123.70|0.09|0.02|R|F|1994-09-07|1994-07-15|1994-09-27|COLLECT COD|AIR| cajole blithely across the quickly spe| +65903|720478|20479|1|12|17981.28|0.01|0.01|N|O|1996-07-25|1996-08-09|1996-07-28|COLLECT COD|REG AIR|leep about t| +65928|1771|14272|1|20|33455.40|0.01|0.04|N|O|1995-09-21|1995-10-11|1995-10-09|TAKE BACK RETURN|FOB|ely final r| +65928|754972|17488|2|7|14188.58|0.05|0.00|N|O|1995-09-17|1995-10-18|1995-10-14|TAKE BACK RETURN|FOB|oxes. slyly ironic asymptotes sleep | +65929|314806|2325|1|43|78293.97|0.04|0.04|N|O|1995-11-03|1995-12-02|1995-11-16|COLLECT COD|RAIL|the express theo| +65929|941821|41822|2|27|50295.06|0.09|0.05|N|O|1995-12-09|1995-12-07|1995-12-30|DELIVER IN PERSON|REG AIR|ove the slyly even fox| +65930|257577|20083|1|15|23018.40|0.10|0.06|N|O|1996-02-07|1996-02-14|1996-03-07|DELIVER IN PERSON|FOB|t the furiously bold deposits wake ca| +65930|95275|7777|2|41|52081.07|0.04|0.02|N|O|1996-04-28|1996-02-17|1996-05-23|DELIVER IN PERSON|MAIL|ets wake regular packages. regular, | +65930|278939|3950|3|33|63291.36|0.02|0.02|N|O|1996-03-29|1996-03-06|1996-04-13|TAKE BACK RETURN|MAIL|y regular theodol| +65930|118382|43387|4|13|18204.94|0.07|0.04|N|O|1996-02-17|1996-03-10|1996-03-04|COLLECT COD|SHIP|l, final requests. sly| +65930|634080|46593|5|46|46646.30|0.06|0.04|N|O|1996-03-20|1996-03-03|1996-04-06|NONE|RAIL|uests integrate slyly. quick| +65930|978202|15760|6|14|17922.24|0.09|0.06|N|O|1996-01-20|1996-03-21|1996-02-04|DELIVER IN PERSON|SHIP|nts by the bold | +65931|498974|36502|1|50|98647.50|0.02|0.05|N|O|1995-10-02|1995-10-27|1995-10-26|NONE|SHIP|ctions cajole blithely acco| +65931|247079|9584|2|2|2052.12|0.08|0.08|N|O|1995-08-18|1995-09-22|1995-08-27|DELIVER IN PERSON|FOB| are blithely. bold| +65932|1818|39319|1|28|48154.68|0.05|0.07|A|F|1993-06-05|1993-04-04|1993-06-20|TAKE BACK RETURN|RAIL| regular de| +65933|147941|35448|1|44|87513.36|0.09|0.07|A|F|1993-09-02|1993-07-26|1993-09-08|NONE|FOB|requests along | +65933|437279|24804|2|6|7297.50|0.02|0.02|R|F|1993-06-10|1993-07-22|1993-07-03|NONE|REG AIR|ns cajole | +65933|346951|34470|3|46|91905.24|0.06|0.04|R|F|1993-06-13|1993-07-16|1993-07-02|DELIVER IN PERSON|REG AIR|eodolites sleep. carefully re| +65933|193203|43204|4|50|64810.00|0.03|0.03|A|F|1993-08-01|1993-07-29|1993-08-26|NONE|FOB|across the ca| +65934|160004|47514|1|49|52136.00|0.03|0.06|N|O|1996-05-04|1996-06-18|1996-05-20|TAKE BACK RETURN|TRUCK|al requests sleep according to the carefull| +65935|477412|2431|1|43|59743.77|0.08|0.04|N|O|1996-02-10|1996-05-06|1996-02-24|DELIVER IN PERSON|TRUCK|ly regular dep| +65960|560667|23179|1|28|48373.92|0.06|0.07|N|O|1998-09-17|1998-09-17|1998-09-27|TAKE BACK RETURN|RAIL|ic packages around the furiously| +65960|113749|1256|2|12|21152.88|0.05|0.07|N|O|1998-09-16|1998-09-29|1998-09-22|NONE|MAIL|ously bold theodolites boost after the | +65960|766316|41347|3|17|23498.76|0.08|0.02|N|O|1998-10-25|1998-08-10|1998-11-04|TAKE BACK RETURN|REG AIR|eposits hang across the quickly s| +65960|461935|11936|4|31|58804.21|0.05|0.00|N|O|1998-09-20|1998-09-22|1998-10-12|TAKE BACK RETURN|MAIL|e furiously! blit| +65960|729567|17110|5|26|41509.78|0.00|0.05|N|O|1998-08-05|1998-09-19|1998-08-24|COLLECT COD|REG AIR|ly ironic asymptotes nag. furiously b| +65961|704778|17293|1|6|10696.44|0.06|0.05|N|O|1997-05-14|1997-05-15|1997-05-21|TAKE BACK RETURN|MAIL|ests. escapades are. slyly regular f| +65961|191577|29087|2|32|53394.24|0.00|0.04|N|O|1997-06-26|1997-04-15|1997-07-06|TAKE BACK RETURN|TRUCK|efully pinto beans. blithe | +65961|819334|31851|3|8|10026.32|0.08|0.00|N|O|1997-04-29|1997-05-29|1997-05-22|COLLECT COD|SHIP|sly according to the i| +65962|650313|25340|1|29|36635.12|0.03|0.05|N|O|1997-12-28|1998-01-31|1997-12-31|NONE|TRUCK|uriously qu| +65962|794493|32039|2|42|66673.32|0.07|0.01|N|O|1998-03-09|1998-01-19|1998-03-18|TAKE BACK RETURN|MAIL|blithely at the final ideas. fluffily s| +65962|38716|26217|3|32|52950.72|0.06|0.01|N|O|1998-01-20|1998-01-18|1998-01-26|DELIVER IN PERSON|MAIL|sual accounts. slyly fin| +65962|694452|31992|4|34|49178.28|0.05|0.00|N|O|1998-01-21|1997-12-16|1998-02-03|TAKE BACK RETURN|MAIL|encies. furiously express dolphins s| +65963|453719|16229|1|39|65234.91|0.05|0.02|R|F|1992-06-24|1992-07-05|1992-07-09|TAKE BACK RETURN|AIR|eodolites. carefully even ideas wake. furi| +65963|646587|21612|2|37|56741.35|0.04|0.01|R|F|1992-10-01|1992-07-08|1992-10-05|DELIVER IN PERSON|AIR|the courts.| +65963|173717|23718|3|42|75209.82|0.10|0.04|A|F|1992-07-15|1992-07-18|1992-08-13|NONE|AIR|ic accounts aff| +65963|653647|16161|4|1|1600.61|0.00|0.06|R|F|1992-07-04|1992-08-30|1992-07-22|DELIVER IN PERSON|TRUCK|lyly. quickly final cou| +65963|832213|7246|5|49|56113.33|0.04|0.04|A|F|1992-07-12|1992-07-20|1992-08-04|COLLECT COD|REG AIR|y even depo| +65963|991742|41743|6|35|64179.50|0.04|0.00|R|F|1992-06-12|1992-07-10|1992-07-07|COLLECT COD|AIR| furiously quickly final packa| +65964|259683|9684|1|10|16426.70|0.09|0.01|N|O|1996-05-02|1996-06-25|1996-05-18|COLLECT COD|AIR|he furiously final deposits.| +65964|483010|45520|2|38|37733.62|0.00|0.04|N|O|1996-05-06|1996-06-17|1996-05-31|DELIVER IN PERSON|SHIP|ajole furiou| +65965|576783|1806|1|43|79969.68|0.10|0.06|A|F|1994-09-28|1994-12-13|1994-09-29|DELIVER IN PERSON|SHIP|silent packages | +65965|987465|49985|2|28|43467.76|0.09|0.04|A|F|1994-12-03|1994-11-03|1994-12-30|NONE|FOB|endencies past the slyly special re| +65965|308302|8303|3|16|20964.64|0.02|0.06|R|F|1995-01-12|1994-12-01|1995-02-08|TAKE BACK RETURN|TRUCK|out the requests. quickl| +65966|360495|23003|1|44|68441.12|0.08|0.00|N|O|1996-04-08|1996-03-09|1996-04-26|TAKE BACK RETURN|RAIL|ly final packages accord| +65966|836223|11256|2|35|40571.30|0.03|0.08|N|O|1996-04-06|1996-04-06|1996-04-30|TAKE BACK RETURN|FOB|! furiousl| +65966|388827|13842|3|30|57474.30|0.10|0.06|N|O|1996-03-18|1996-02-19|1996-03-26|NONE|SHIP|y ironic asymptotes. carefully ironi| +65966|999760|37318|4|33|61370.76|0.02|0.08|N|O|1996-04-19|1996-03-19|1996-05-02|COLLECT COD|AIR|r requests sublate among the carefully| +65966|960373|22893|5|45|64499.85|0.04|0.04|N|O|1996-01-22|1996-03-10|1996-02-20|NONE|AIR|s above the even somas | +65966|981424|18982|6|41|61720.58|0.08|0.00|N|O|1996-01-14|1996-02-28|1996-02-07|COLLECT COD|FOB|haggle unusual, pending sauternes--| +65967|982507|45027|1|46|73115.16|0.03|0.03|N|O|1998-07-10|1998-07-23|1998-07-28|TAKE BACK RETURN|RAIL|mptotes. blithely ironic patterns cajole| +65967|993807|31365|2|24|45618.24|0.00|0.07|N|O|1998-09-23|1998-07-31|1998-10-18|COLLECT COD|MAIL|l asymptotes wake quickly furio| +65967|902222|27259|3|36|44070.48|0.09|0.07|N|O|1998-08-31|1998-08-28|1998-09-01|COLLECT COD|TRUCK|s. furiously even epitaphs haggle fluff| +65967|639074|1587|4|40|40521.60|0.04|0.02|N|O|1998-07-19|1998-08-09|1998-08-09|TAKE BACK RETURN|REG AIR|ding to the furiou| +65967|903201|15720|5|20|24083.20|0.00|0.08|N|O|1998-06-21|1998-08-09|1998-07-04|DELIVER IN PERSON|AIR|ake fluffily across the packages. fur| +65967|84349|46851|6|41|54666.94|0.00|0.06|N|O|1998-09-06|1998-08-26|1998-09-08|NONE|FOB|above the bold, ex| +65967|653603|28630|7|28|43583.96|0.09|0.07|N|O|1998-08-06|1998-09-05|1998-08-30|COLLECT COD|AIR|y. furiously fur| +65992|101692|26697|1|46|77909.74|0.08|0.01|N|O|1996-07-02|1996-07-12|1996-07-10|TAKE BACK RETURN|MAIL|ly blithe plate| +65992|123059|35562|2|25|27051.25|0.03|0.04|N|O|1996-06-04|1996-08-06|1996-06-13|NONE|AIR|ding to the blithely bold requests c| +65992|250813|814|3|11|19401.80|0.02|0.02|N|O|1996-07-12|1996-07-13|1996-08-08|NONE|MAIL|above the slyly final requests boos| +65992|397719|47720|4|5|9083.50|0.09|0.05|N|O|1996-05-29|1996-06-30|1996-06-18|TAKE BACK RETURN|REG AIR|y bold instructions about the | +65992|456302|31321|5|27|33973.56|0.09|0.00|N|O|1996-05-22|1996-07-19|1996-05-27|DELIVER IN PERSON|TRUCK|t requests sleep care| +65993|534998|10019|1|22|44725.34|0.02|0.04|R|F|1994-02-21|1994-03-18|1994-03-06|NONE|TRUCK|ites was be| +65993|711369|23884|2|36|49691.88|0.09|0.07|A|F|1994-05-01|1994-05-04|1994-05-15|TAKE BACK RETURN|MAIL|riously final ac| +65993|978052|40572|3|32|36160.32|0.04|0.07|R|F|1994-03-22|1994-05-10|1994-04-17|NONE|AIR|rts haggle. fina| +65993|109368|21871|4|26|35811.36|0.01|0.08|R|F|1994-03-05|1994-05-06|1994-04-02|DELIVER IN PERSON|REG AIR|beans. asymptotes sol| +65993|143879|18884|5|27|51917.49|0.00|0.01|A|F|1994-05-26|1994-04-07|1994-06-23|NONE|AIR|, ironic packages haggle quickly r| +65994|882463|32464|1|9|13008.78|0.08|0.05|N|O|1995-11-30|1996-01-13|1995-12-14|TAKE BACK RETURN|RAIL|hockey players| +65994|549877|12388|2|6|11561.10|0.03|0.07|N|O|1995-12-12|1996-01-31|1996-01-05|COLLECT COD|RAIL|final excuses across the silent| +65994|769847|7393|3|28|53670.68|0.10|0.00|N|O|1996-03-11|1995-12-27|1996-03-31|TAKE BACK RETURN|SHIP|ctions lose across the excuses. regul| +65994|804096|16613|4|30|30001.50|0.09|0.05|N|O|1995-11-19|1996-02-05|1995-12-08|COLLECT COD|RAIL|sits haggle silent accounts. ironically | +65994|435966|35967|5|11|20921.34|0.01|0.01|N|O|1995-12-11|1996-02-07|1996-01-03|NONE|TRUCK|s are thinly. quickly pending pac| +65994|267534|30040|6|9|13513.68|0.08|0.05|N|O|1995-12-01|1996-01-05|1995-12-21|TAKE BACK RETURN|SHIP|ly express dependencies| +65995|908629|21148|1|26|42577.08|0.03|0.01|R|F|1993-06-21|1993-04-11|1993-07-20|TAKE BACK RETURN|RAIL|ely along the slyly unusua| +65995|312603|12604|2|46|74317.14|0.07|0.01|A|F|1993-04-07|1993-04-18|1993-04-23|TAKE BACK RETURN|FOB|affix slyly regular requests. | +65995|906463|18982|3|34|49960.28|0.00|0.04|A|F|1993-05-29|1993-04-26|1993-06-09|TAKE BACK RETURN|REG AIR| furiously special acc| +65995|918780|6335|4|10|17987.40|0.07|0.01|R|F|1993-03-25|1993-05-16|1993-04-10|COLLECT COD|MAIL|pecial foxe| +65995|934778|34779|5|24|43505.52|0.05|0.05|R|F|1993-03-18|1993-05-22|1993-04-13|DELIVER IN PERSON|TRUCK|accounts sleep furiously against the expre| +65995|807354|7355|6|14|17658.34|0.01|0.06|R|F|1993-04-17|1993-05-10|1993-05-13|DELIVER IN PERSON|REG AIR|play blithely bl| +65995|189214|1718|7|3|3909.63|0.07|0.00|R|F|1993-04-08|1993-03-29|1993-05-04|NONE|FOB|nding accounts. bold req| +65996|107233|32238|1|24|29765.52|0.08|0.02|N|O|1997-11-24|1997-10-25|1997-12-13|NONE|SHIP|s doubt furio| +65996|253073|28084|2|44|45146.64|0.06|0.00|N|O|1997-11-13|1997-11-06|1997-12-09|NONE|AIR|l courts. final requests alongs| +65996|396965|46966|3|25|51548.75|0.02|0.02|N|O|1997-12-02|1997-12-10|1997-12-28|TAKE BACK RETURN|TRUCK|as are blithely final, even dependenci| +65996|774469|12015|4|16|24694.88|0.00|0.08|N|O|1997-12-28|1997-11-25|1998-01-17|COLLECT COD|SHIP|arls cajole. slowly final d| +65996|498178|48179|5|27|31756.05|0.06|0.08|N|O|1997-11-15|1997-10-18|1997-12-02|DELIVER IN PERSON|MAIL|y ironic deposits. accounts boost fluff| +65996|865639|3191|6|50|80229.50|0.10|0.03|N|O|1997-09-30|1997-10-31|1997-10-24|COLLECT COD|MAIL|kly ironic in| +65997|745401|32944|1|9|13017.33|0.02|0.00|N|O|1996-02-04|1996-02-26|1996-03-02|DELIVER IN PERSON|MAIL|sly ironic pack| +65997|950444|25483|2|8|11955.20|0.04|0.02|N|O|1996-01-05|1996-03-05|1996-01-21|COLLECT COD|TRUCK|s run idly furiously ironic | +65997|107344|7345|3|35|47296.90|0.04|0.05|N|O|1996-04-03|1996-01-31|1996-04-26|DELIVER IN PERSON|MAIL| ironic requests cajole furious| +65998|299411|11917|1|40|56416.00|0.05|0.05|N|O|1997-03-28|1997-03-27|1997-04-18|COLLECT COD|FOB|e furiously silent accounts? slyly sp| +65998|184937|22447|2|20|40438.60|0.00|0.02|N|O|1997-03-18|1997-04-14|1997-04-13|COLLECT COD|SHIP|to the instru| +65998|225342|12855|3|44|55762.52|0.09|0.08|N|O|1997-05-11|1997-02-25|1997-06-09|DELIVER IN PERSON|AIR|efully alongside of the blithely iron| +65999|358951|46473|1|11|22109.34|0.09|0.01|N|O|1996-07-31|1996-07-15|1996-08-29|COLLECT COD|FOB|ndencies are regularly sly| +65999|878473|28474|2|34|49348.62|0.06|0.00|N|O|1996-08-09|1996-07-09|1996-08-23|COLLECT COD|AIR|ously final ideas. slyly bold account| +66024|915730|15731|1|39|68081.91|0.09|0.03|R|F|1992-12-27|1992-10-31|1992-12-29|COLLECT COD|MAIL|rate fluffily. even deposits sl| +66024|671911|9451|2|29|54603.52|0.08|0.06|A|F|1992-09-25|1992-11-21|1992-10-17|TAKE BACK RETURN|SHIP|ounts! the| +66025|644417|19442|1|10|13613.80|0.02|0.01|N|O|1997-04-25|1997-06-02|1997-04-27|TAKE BACK RETURN|RAIL|furiously furiously bold dolph| +66025|704261|4262|2|3|3795.69|0.03|0.06|N|O|1997-06-18|1997-04-13|1997-06-23|NONE|AIR|aggle slyly: blithely pending platelets h| +66025|500777|25798|3|17|30221.75|0.10|0.06|N|O|1997-03-22|1997-05-21|1997-03-31|COLLECT COD|SHIP|the blithely | +66026|133570|46073|1|24|38485.68|0.10|0.06|N|O|1996-09-11|1996-11-17|1996-09-18|COLLECT COD|RAIL|refully even acco| +66026|909193|46748|2|4|4808.60|0.07|0.00|N|O|1996-11-23|1996-11-01|1996-12-06|DELIVER IN PERSON|RAIL|lly blithely special accounts: quickl| +66026|790782|15813|3|47|88019.25|0.04|0.00|N|O|1996-11-19|1996-11-16|1996-12-07|NONE|MAIL|run regular theodolites. slyly unusual pin| +66026|665559|15560|4|3|4573.56|0.00|0.05|N|O|1996-09-17|1996-10-19|1996-10-03|COLLECT COD|REG AIR|ck, dogged dolphins. blithely special pinto| +66026|33462|33463|5|2|2790.92|0.09|0.08|N|O|1996-11-09|1996-10-28|1996-11-12|COLLECT COD|FOB|sly ironic deposit| +66026|387595|25117|6|43|72350.94|0.02|0.08|N|O|1996-12-17|1996-11-23|1997-01-08|TAKE BACK RETURN|AIR| furiously careful platelets. care| +66026|299593|37109|7|13|20703.54|0.04|0.04|N|O|1996-09-24|1996-10-20|1996-09-30|TAKE BACK RETURN|FOB|ld requests. quickly re| +66027|244531|7036|1|20|29510.40|0.02|0.05|A|F|1994-01-21|1994-01-23|1994-01-24|COLLECT COD|REG AIR|nal, regular packages. quickly eve| +66027|819012|6561|2|5|4654.85|0.01|0.06|R|F|1994-02-17|1994-01-03|1994-03-11|NONE|FOB|pending foxes s| +66027|120490|7997|3|5|7552.45|0.08|0.02|A|F|1994-01-17|1994-01-02|1994-02-04|NONE|AIR| pending p| +66027|64328|26830|4|5|6461.60|0.04|0.08|A|F|1994-01-21|1994-01-08|1994-02-18|TAKE BACK RETURN|AIR|fully pending asymptotes. blithe| +66027|148949|36456|5|25|49948.50|0.02|0.00|R|F|1994-01-03|1994-01-23|1994-01-09|TAKE BACK RETURN|TRUCK|y unusual pinto beans run quic| +66027|373636|23637|6|5|8548.10|0.06|0.00|A|F|1994-01-29|1994-01-03|1994-02-23|NONE|FOB|sly. furiously final instructions haggl| +66027|698946|23973|7|35|68071.85|0.00|0.03|A|F|1993-12-03|1994-01-14|1993-12-10|COLLECT COD|MAIL|al requests hag| +66028|177697|27698|1|39|69212.91|0.04|0.03|R|F|1995-03-30|1995-02-20|1995-04-05|DELIVER IN PERSON|RAIL|g the carefully express foxes| +66028|541860|16881|2|36|68466.24|0.00|0.00|R|F|1995-05-05|1995-03-16|1995-05-06|COLLECT COD|AIR|s accordin| +66028|37796|297|3|4|6935.16|0.05|0.04|A|F|1995-03-20|1995-04-02|1995-04-15|DELIVER IN PERSON|AIR|s can haggle according to| +66028|234383|21896|4|16|21077.92|0.01|0.07|R|F|1995-02-10|1995-04-04|1995-02-23|COLLECT COD|TRUCK|s. slyly final pinto beans wake. req| +66028|274028|49039|5|7|7014.07|0.02|0.07|R|F|1995-03-13|1995-02-27|1995-03-27|TAKE BACK RETURN|REG AIR|instructions. quickly even packages doub| +66028|576804|14338|6|5|9403.90|0.10|0.03|A|F|1995-02-28|1995-03-09|1995-03-12|COLLECT COD|AIR|ly bold theodolites haggle across the b| +66029|642745|30282|1|38|64132.98|0.07|0.05|N|O|1995-07-15|1995-08-15|1995-07-30|NONE|FOB|deas believe | +66029|611180|23693|2|27|29461.05|0.09|0.08|N|O|1995-09-24|1995-07-16|1995-10-07|TAKE BACK RETURN|REG AIR| regular, regular instructions cajole slyl| +66029|85650|35651|3|7|11449.55|0.05|0.04|N|O|1995-07-17|1995-07-03|1995-07-21|NONE|MAIL|its are slyly final re| +66029|511510|24021|4|9|13693.41|0.07|0.04|N|O|1995-08-03|1995-07-04|1995-08-15|DELIVER IN PERSON|SHIP|structions. quickly regular d| +66030|507795|32816|1|43|77519.11|0.01|0.07|A|F|1993-05-09|1993-04-12|1993-05-11|TAKE BACK RETURN|AIR|telets print according to the quick| +66030|495676|45677|2|18|30089.70|0.09|0.05|R|F|1993-04-30|1993-05-05|1993-05-20|NONE|RAIL|y regular accou| +66030|811582|24099|3|50|74677.00|0.02|0.05|A|F|1993-06-04|1993-05-11|1993-06-15|DELIVER IN PERSON|FOB|ly regular req| +66031|201764|39277|1|40|66630.00|0.04|0.03|A|F|1993-06-17|1993-05-13|1993-06-23|COLLECT COD|MAIL|ackages. even, regula| +66031|34631|34632|2|13|20353.19|0.08|0.08|R|F|1993-05-29|1993-04-27|1993-06-17|NONE|AIR|foxes nag fluffily carefully ironic theodo| +66031|29105|29106|3|3|3102.30|0.06|0.00|R|F|1993-06-27|1993-05-03|1993-07-13|TAKE BACK RETURN|TRUCK|s. express accounts | +66031|161908|36915|4|17|33488.30|0.10|0.06|R|F|1993-04-10|1993-04-27|1993-04-18|TAKE BACK RETURN|FOB|ffily entici| +66031|186220|48724|5|24|31349.28|0.10|0.03|R|F|1993-06-21|1993-04-24|1993-07-18|NONE|SHIP|fully spec| +66031|791794|4310|6|29|54687.04|0.05|0.03|R|F|1993-06-07|1993-05-15|1993-06-11|DELIVER IN PERSON|AIR|lways final packages cajole | +66031|679999|5026|7|15|29684.40|0.04|0.01|R|F|1993-03-20|1993-05-25|1993-04-15|DELIVER IN PERSON|REG AIR| silent deposits sleep always after t| +66056|737970|485|1|10|20079.40|0.03|0.05|R|F|1993-05-20|1993-04-21|1993-05-30|DELIVER IN PERSON|RAIL|ronic decoys haggle boldly: furiously flu| +66056|46388|8889|2|8|10675.04|0.00|0.03|R|F|1993-05-09|1993-04-08|1993-06-04|TAKE BACK RETURN|REG AIR|fluffily stealthy instructio| +66056|641243|41244|3|22|26052.62|0.04|0.06|A|F|1993-04-07|1993-05-04|1993-05-06|COLLECT COD|REG AIR|detect never. regular deposits unwin| +66056|358225|45747|4|31|39779.51|0.00|0.04|A|F|1993-05-10|1993-04-03|1993-05-13|DELIVER IN PERSON|AIR|ending packages ca| +66057|62977|12978|1|4|7759.88|0.01|0.08|R|F|1993-11-05|1993-10-21|1993-11-21|DELIVER IN PERSON|AIR|lites cajole blithely al| +66057|447790|10299|2|34|59084.18|0.05|0.02|A|F|1993-12-18|1993-10-09|1993-12-21|TAKE BACK RETURN|TRUCK|ve furiously about the even package| +66058|667636|17637|1|9|14432.40|0.02|0.02|R|F|1995-05-04|1995-05-13|1995-05-05|TAKE BACK RETURN|FOB|s integrate qu| +66058|955144|30183|2|31|37172.10|0.07|0.07|R|F|1995-05-03|1995-03-31|1995-06-01|COLLECT COD|SHIP| carefully flu| +66059|682286|32287|1|27|34242.75|0.05|0.04|A|F|1994-11-02|1994-09-18|1994-11-08|COLLECT COD|SHIP|sly final accounts| +66059|174310|49317|2|18|24917.58|0.07|0.01|R|F|1994-10-04|1994-10-07|1994-10-22|TAKE BACK RETURN|RAIL|requests are slyly. ironic dol| +66060|858451|20969|1|27|38054.07|0.10|0.04|R|F|1994-07-13|1994-06-13|1994-07-23|COLLECT COD|RAIL|? blithely permanent packag| +66060|976525|39045|2|14|22420.72|0.05|0.08|A|F|1994-08-13|1994-06-27|1994-08-17|COLLECT COD|RAIL|e carefully furi| +66060|443276|5785|3|8|9754.00|0.06|0.07|R|F|1994-08-01|1994-07-09|1994-08-31|TAKE BACK RETURN|FOB|ages cajole| +66060|123007|23008|4|25|25750.00|0.08|0.06|A|F|1994-08-05|1994-07-23|1994-08-14|NONE|REG AIR|sly silent dependencies| +66060|365321|15322|5|47|65156.57|0.01|0.03|A|F|1994-08-22|1994-07-18|1994-09-07|DELIVER IN PERSON|SHIP|theodolites across the | +66060|949293|24330|6|25|33556.25|0.08|0.06|R|F|1994-05-27|1994-05-27|1994-06-12|DELIVER IN PERSON|REG AIR|ans kindle above the furiously bold de| +66060|758939|8940|7|23|45951.70|0.04|0.04|R|F|1994-05-05|1994-05-27|1994-05-19|COLLECT COD|FOB|ackages grow after the| +66061|473783|48802|1|10|17567.60|0.09|0.08|R|F|1994-03-27|1994-02-24|1994-04-03|DELIVER IN PERSON|REG AIR|lites. instructions was slyly. quickly | +66061|867737|5289|2|40|68187.60|0.01|0.07|R|F|1994-05-12|1994-03-19|1994-05-13|NONE|AIR|al account| +66061|54739|4740|3|37|62668.01|0.09|0.04|A|F|1994-05-20|1994-04-18|1994-06-07|NONE|RAIL| requests boost carefully | +66061|989402|39403|4|42|62637.12|0.08|0.06|A|F|1994-05-19|1994-04-12|1994-05-31|DELIVER IN PERSON|TRUCK|bold dolphins against| +66061|866256|28774|5|36|43999.56|0.02|0.08|R|F|1994-04-04|1994-04-16|1994-04-21|COLLECT COD|RAIL| asymptotes. spec| +66061|155419|42929|6|3|4423.23|0.10|0.05|R|F|1994-04-13|1994-03-14|1994-04-30|COLLECT COD|AIR|packages wake carefully after the unusual, | +66062|979879|4918|1|15|29382.45|0.01|0.01|N|O|1998-04-11|1998-04-24|1998-04-15|DELIVER IN PERSON|RAIL|ronic sentiments? slyly sil| +66063|279350|4361|1|43|57161.62|0.00|0.03|A|F|1993-04-13|1993-02-05|1993-05-12|NONE|REG AIR|among the carefully slow de| +66063|27861|40362|2|14|25044.04|0.06|0.05|A|F|1993-04-08|1993-01-18|1993-04-24|TAKE BACK RETURN|RAIL|g the even p| +66063|244191|44192|3|15|17027.70|0.06|0.08|A|F|1993-04-08|1993-01-19|1993-04-09|COLLECT COD|RAIL| haggle. regular courts sleep q| +66063|114481|26984|4|11|16450.28|0.01|0.05|A|F|1993-03-01|1993-02-23|1993-03-16|TAKE BACK RETURN|FOB|eans according to the even,| +66063|68241|18242|5|9|10883.16|0.08|0.00|R|F|1993-01-04|1993-02-18|1993-01-31|COLLECT COD|RAIL|sly bold foxes. pinto beans| +66063|923454|23455|6|42|62051.22|0.04|0.03|R|F|1993-03-21|1993-03-01|1993-03-30|COLLECT COD|REG AIR|e of the blithely express packages are c| +66088|793028|30574|1|33|36992.67|0.02|0.07|N|O|1998-09-04|1998-09-07|1998-09-05|NONE|TRUCK|. blithely unusual accounts us| +66088|413460|38477|2|39|53564.16|0.02|0.02|N|O|1998-08-03|1998-08-24|1998-08-20|COLLECT COD|AIR|l pinto beans are furiously | +66088|15563|15564|3|20|29571.20|0.09|0.02|N|O|1998-08-31|1998-08-19|1998-09-23|COLLECT COD|AIR| about the fluffily r| +66088|553841|3842|4|4|7579.28|0.08|0.00|N|O|1998-10-07|1998-09-05|1998-10-22|NONE|RAIL|gular sentiments. carefully unusual courts | +66088|397732|22747|5|34|62210.48|0.02|0.06|N|O|1998-10-11|1998-09-13|1998-11-06|DELIVER IN PERSON|REG AIR|nstructions about the| +66088|668233|30747|6|14|16816.80|0.09|0.07|N|O|1998-10-02|1998-10-04|1998-11-01|COLLECT COD|TRUCK|longside of the unu| +66088|978775|3814|7|9|16683.57|0.02|0.03|N|O|1998-09-03|1998-09-02|1998-09-05|DELIVER IN PERSON|SHIP|deposits engage. un| +66089|255032|5033|1|16|15792.32|0.03|0.03|N|O|1997-01-19|1997-02-18|1997-01-24|TAKE BACK RETURN|FOB|ding pinto beans im| +66090|169557|44564|1|49|79700.95|0.09|0.07|R|F|1993-04-03|1993-03-05|1993-04-09|COLLECT COD|MAIL|y regular deposits d| +66091|495590|45591|1|26|41224.82|0.09|0.03|R|F|1992-07-17|1992-07-28|1992-08-11|TAKE BACK RETURN|RAIL|jole special plat| +66091|367813|30321|2|19|35735.20|0.04|0.05|A|F|1992-08-29|1992-07-19|1992-09-13|COLLECT COD|RAIL| silent hockey players. express| +66091|825010|25011|3|2|1869.94|0.00|0.07|A|F|1992-07-02|1992-07-10|1992-07-12|TAKE BACK RETURN|MAIL|ic, special deposits among the b| +66092|479054|29055|1|3|3099.09|0.04|0.07|N|O|1996-01-24|1996-01-17|1996-02-08|TAKE BACK RETURN|REG AIR| ironic decoys| +66092|460461|10462|2|8|11371.52|0.06|0.07|N|O|1995-12-27|1996-02-26|1996-01-24|TAKE BACK RETURN|TRUCK|s. sly ideas a| +66092|957442|19962|3|1|1499.40|0.07|0.00|N|O|1996-01-20|1996-02-02|1996-02-09|COLLECT COD|SHIP|ts are carefully pendin| +66092|714241|14242|4|21|26359.41|0.09|0.07|N|O|1996-01-03|1996-01-26|1996-01-20|DELIVER IN PERSON|SHIP|refully idle accounts. quickly| +66092|246049|8554|5|28|27860.84|0.08|0.03|N|O|1995-12-18|1996-01-29|1996-01-15|TAKE BACK RETURN|FOB|. furiously | +66093|356299|31314|1|7|9486.96|0.05|0.08|R|F|1992-12-16|1993-01-20|1992-12-20|DELIVER IN PERSON|RAIL|er the carefully unusual foxes: ironi| +66093|306118|6119|2|18|20233.80|0.09|0.07|R|F|1993-01-28|1993-01-12|1993-02-04|DELIVER IN PERSON|FOB|ans. carefully busy theodoli| +66093|915060|27579|3|47|50525.94|0.03|0.07|R|F|1993-01-27|1993-03-01|1993-02-11|DELIVER IN PERSON|FOB|ng requests u| +66093|398910|48911|4|14|28124.60|0.08|0.04|R|F|1993-01-25|1993-02-02|1993-02-05|TAKE BACK RETURN|RAIL|ully silen| +66093|475748|13276|5|37|63777.64|0.05|0.04|A|F|1992-12-28|1993-01-03|1993-01-25|DELIVER IN PERSON|REG AIR|ges are blithely above the final senti| +66093|889115|26667|6|38|41954.66|0.01|0.01|R|F|1993-03-16|1993-02-07|1993-04-02|DELIVER IN PERSON|MAIL|blithely ir| +66094|722652|47681|1|31|51913.22|0.00|0.02|N|O|1997-09-02|1997-11-14|1997-10-02|DELIVER IN PERSON|FOB|ost furiously. Tiresias alongside of| +66094|600773|13286|2|29|48538.46|0.05|0.00|N|O|1997-09-03|1997-11-11|1997-10-01|COLLECT COD|RAIL| carefully pending pinto | +66094|190801|40802|3|18|34052.40|0.04|0.04|N|O|1997-09-20|1997-10-04|1997-10-01|COLLECT COD|AIR| alongside of the blithely un| +66094|791325|16356|4|30|42488.70|0.08|0.04|N|O|1997-09-02|1997-10-30|1997-09-21|COLLECT COD|SHIP|lar foxes breach ironic accounts. q| +66094|788663|38664|5|47|82326.61|0.07|0.00|N|O|1997-11-28|1997-10-21|1997-12-26|DELIVER IN PERSON|SHIP|ial theodolites. express, regular requests | +66094|54647|4648|6|10|16016.40|0.05|0.08|N|O|1997-09-02|1997-09-21|1997-09-22|TAKE BACK RETURN|RAIL| final, bold packages| +66095|254574|4575|1|9|13757.04|0.00|0.08|N|O|1997-07-01|1997-07-13|1997-07-03|TAKE BACK RETURN|FOB|packages. packages cajole. | +66095|619975|19976|2|31|58743.14|0.05|0.02|N|O|1997-08-16|1997-08-10|1997-08-22|TAKE BACK RETURN|TRUCK|thely furio| +66095|915004|27523|3|44|44834.24|0.05|0.06|N|O|1997-05-25|1997-06-23|1997-06-11|DELIVER IN PERSON|REG AIR| pinto beans around the even requ| +66095|465076|15077|4|39|40600.95|0.01|0.08|N|O|1997-05-18|1997-06-21|1997-06-10|COLLECT COD|TRUCK|carefully around the furiously ironic de| +66095|518405|18406|5|15|21350.70|0.09|0.04|N|O|1997-06-24|1997-07-02|1997-07-21|TAKE BACK RETURN|SHIP|rash slyly above the ironic, regular de| +66120|468651|43670|1|50|80981.50|0.03|0.07|R|F|1993-10-17|1993-09-06|1993-10-24|DELIVER IN PERSON|SHIP|y carefully final pinto beans| +66120|609620|47157|2|6|9177.54|0.10|0.02|A|F|1993-11-08|1993-10-09|1993-12-07|COLLECT COD|AIR|ully even instructions nag blithely. f| +66120|874239|11791|3|29|35182.51|0.02|0.02|R|F|1993-11-03|1993-09-30|1993-11-21|TAKE BACK RETURN|AIR|r, bold theodolites use acc| +66120|332173|32174|4|45|54232.20|0.05|0.08|R|F|1993-11-02|1993-10-15|1993-12-01|DELIVER IN PERSON|MAIL|structions; special, ironic foxes affix| +66120|820815|8364|5|34|59016.18|0.01|0.00|A|F|1993-08-21|1993-10-16|1993-09-19|COLLECT COD|SHIP|deposits nag slyly slyly unusual requests. | +66120|432996|8013|6|49|94519.53|0.08|0.05|A|F|1993-08-02|1993-09-15|1993-08-22|DELIVER IN PERSON|RAIL|inal requests. s| +66121|12475|24976|1|20|27749.40|0.09|0.00|N|O|1997-03-07|1996-12-23|1997-03-13|NONE|AIR|ecial ideas. final, ev| +66121|665842|40869|2|49|88582.69|0.03|0.02|N|O|1997-01-27|1996-12-31|1997-01-31|TAKE BACK RETURN|FOB|counts haggle slyly even ideas| +66122|696619|9133|1|31|50082.98|0.10|0.01|A|F|1992-11-29|1992-12-15|1992-12-02|NONE|FOB|lose pinto beans | +66122|60681|10682|2|33|54175.44|0.02|0.07|A|F|1993-02-13|1992-12-14|1993-03-10|NONE|FOB|y final deposits hag| +66123|397663|47664|1|35|61622.75|0.01|0.07|N|O|1996-03-09|1996-02-29|1996-04-05|TAKE BACK RETURN|TRUCK|ly ironic accounts. q| +66123|507042|19553|2|46|48254.92|0.10|0.07|N|O|1996-01-26|1996-03-31|1996-02-16|COLLECT COD|TRUCK|ts cajole slyl| +66123|848686|23719|3|18|29423.52|0.06|0.05|N|O|1996-02-18|1996-02-18|1996-02-23|DELIVER IN PERSON|MAIL|sits. always bold asymptotes| +66124|67868|30370|1|5|9179.30|0.07|0.02|R|F|1993-04-24|1993-05-06|1993-05-19|DELIVER IN PERSON|SHIP|ly ironic instruc| +66124|642370|4883|2|10|13123.40|0.09|0.08|R|F|1993-05-16|1993-05-06|1993-06-13|DELIVER IN PERSON|SHIP|e quickly careful dolphins haggle furious| +66124|310866|48385|3|39|73197.15|0.04|0.06|R|F|1993-06-24|1993-05-06|1993-07-08|TAKE BACK RETURN|MAIL|nusual accounts. qui| +66124|719279|31794|4|45|58420.80|0.04|0.02|A|F|1993-05-08|1993-04-30|1993-06-06|DELIVER IN PERSON|FOB|ackages. expr| +66124|915484|28003|5|29|43483.76|0.07|0.05|R|F|1993-05-24|1993-04-10|1993-06-03|NONE|FOB|ly regular deposits haggle s| +66125|552810|2811|1|21|39118.59|0.04|0.08|A|F|1993-05-20|1993-05-10|1993-06-06|TAKE BACK RETURN|RAIL|gular pinto beans wake. blithely | +66125|74251|11755|2|1|1225.25|0.08|0.04|A|F|1993-07-09|1993-05-30|1993-08-02|TAKE BACK RETURN|MAIL|s run. furiously ironic fr| +66125|931085|6122|3|6|6696.24|0.06|0.03|R|F|1993-05-04|1993-05-08|1993-05-08|COLLECT COD|RAIL|ly careful deposits hang along th| +66125|732624|7653|4|14|23192.26|0.06|0.04|A|F|1993-05-16|1993-05-28|1993-05-17|COLLECT COD|SHIP|ng the final ide| +66125|195623|20630|5|7|12030.34|0.10|0.01|A|F|1993-04-13|1993-05-11|1993-05-09|NONE|RAIL|haggle carefu| +66125|828323|3356|6|19|23774.32|0.10|0.02|A|F|1993-04-14|1993-06-05|1993-05-06|DELIVER IN PERSON|REG AIR|excuses against the | +66125|611475|11476|7|21|29115.24|0.00|0.00|R|F|1993-05-31|1993-05-16|1993-06-10|COLLECT COD|AIR|efully regular instructions | +66126|44938|7439|1|28|52722.04|0.04|0.00|N|O|1998-09-25|1998-09-15|1998-10-18|DELIVER IN PERSON|REG AIR|e slyly pending instructions. regularly| +66127|943532|31087|1|22|34660.78|0.04|0.02|A|F|1994-10-23|1994-11-11|1994-11-09|DELIVER IN PERSON|TRUCK|c accounts. express packages o| +66152|742614|17643|1|12|19878.96|0.00|0.00|R|F|1994-09-08|1994-10-31|1994-09-24|DELIVER IN PERSON|MAIL| the regular requests. furiously un| +66152|105218|5219|2|5|6116.05|0.06|0.04|R|F|1994-09-13|1994-10-22|1994-10-05|DELIVER IN PERSON|TRUCK|gular accounts hang quic| +66152|389532|39533|3|40|64860.80|0.09|0.08|A|F|1994-12-25|1994-10-28|1995-01-03|TAKE BACK RETURN|TRUCK|inal pinto beans grow carefully about| +66152|855262|30297|4|16|19475.52|0.05|0.07|A|F|1994-10-19|1994-11-30|1994-11-09|TAKE BACK RETURN|RAIL|uriously ironic theodoli| +66152|374919|12441|5|47|93713.30|0.03|0.07|A|F|1994-11-12|1994-11-01|1994-12-03|COLLECT COD|FOB|ccounts are blithely. | +66152|257565|32576|6|26|39586.30|0.04|0.08|A|F|1994-10-11|1994-11-14|1994-10-31|TAKE BACK RETURN|MAIL|boost across the regular| +66152|878907|3942|7|36|67890.96|0.07|0.08|A|F|1994-10-17|1994-11-06|1994-10-19|DELIVER IN PERSON|SHIP|posits. quickly regular pinto be| +66153|785248|10279|1|14|18664.94|0.08|0.06|R|F|1993-10-16|1993-08-04|1993-10-21|COLLECT COD|TRUCK|kly fluffy accounts are carefull| +66153|653644|28671|2|34|54318.74|0.01|0.01|R|F|1993-08-21|1993-07-27|1993-09-12|TAKE BACK RETURN|REG AIR|refully even requests. slyly regular | +66153|792533|17564|3|16|26008.00|0.01|0.00|R|F|1993-10-18|1993-07-31|1993-11-06|NONE|FOB|accounts. fluffily b| +66153|95157|7659|4|11|12673.65|0.05|0.04|A|F|1993-10-18|1993-07-28|1993-10-22|TAKE BACK RETURN|FOB|onic platelets across the bold, | +66153|288208|13219|5|10|11961.90|0.04|0.05|R|F|1993-07-23|1993-09-23|1993-08-12|NONE|RAIL|ial depend| +66154|813346|25863|1|33|41556.90|0.06|0.04|N|O|1996-01-04|1996-01-15|1996-01-12|DELIVER IN PERSON|AIR|unusual dep| +66154|893831|18866|2|15|27371.85|0.04|0.07|N|O|1996-02-20|1996-02-21|1996-02-21|DELIVER IN PERSON|FOB|s boost across the quickly dogged dep| +66154|602421|2422|3|17|22497.63|0.07|0.00|N|O|1996-03-30|1996-02-15|1996-04-25|TAKE BACK RETURN|RAIL|e slyly slyly even theodolites. regular pac| +66154|884409|34410|4|14|19507.04|0.10|0.01|N|O|1996-04-02|1996-02-10|1996-04-06|DELIVER IN PERSON|RAIL|lar asympto| +66155|313997|26504|1|31|62340.38|0.05|0.00|N|O|1995-11-14|1995-12-23|1995-12-09|NONE|REG AIR|refully bold accounts. slyly specia| +66155|335396|22915|2|5|7156.90|0.03|0.02|N|O|1996-01-29|1996-01-25|1996-02-20|COLLECT COD|MAIL| packages are about t| +66155|994450|32008|3|16|24710.56|0.05|0.02|N|O|1996-03-05|1996-02-08|1996-03-21|DELIVER IN PERSON|AIR|s, express depo| +66155|715643|3186|4|17|28196.37|0.01|0.07|N|O|1996-02-15|1996-01-20|1996-03-15|COLLECT COD|REG AIR|ructions use bold, final theodolites. ironi| +66155|797129|22160|5|30|36782.70|0.08|0.04|N|O|1996-02-15|1996-01-03|1996-03-02|DELIVER IN PERSON|TRUCK|uickly permanent ideas. unusual, express | +66155|330691|43198|6|46|79197.28|0.05|0.06|N|O|1995-12-04|1995-12-18|1996-01-03|COLLECT COD|TRUCK|n packages cajole| +66156|498682|36210|1|25|42016.50|0.03|0.03|N|O|1998-05-25|1998-03-19|1998-06-05|NONE|MAIL|aggle furiously alongside of t| +66156|345870|33389|2|36|68970.96|0.02|0.00|N|O|1998-03-10|1998-03-24|1998-03-12|TAKE BACK RETURN|SHIP| silent asymptotes above the | +66156|22721|35222|3|39|64105.08|0.03|0.01|N|O|1998-04-27|1998-05-09|1998-05-13|NONE|RAIL| requests. blithely unusual accoun| +66156|869844|7396|4|6|10882.80|0.09|0.00|N|O|1998-03-26|1998-04-27|1998-04-15|DELIVER IN PERSON|TRUCK|gged accounts across| +66156|466289|3817|5|13|16318.38|0.10|0.02|N|O|1998-06-08|1998-04-16|1998-07-08|DELIVER IN PERSON|FOB|stealthily | +66156|916373|16374|6|30|41679.90|0.05|0.05|N|O|1998-05-25|1998-05-13|1998-06-07|COLLECT COD|FOB| sleep finally along the slyly ironic t| +66156|464904|14905|7|39|72886.32|0.04|0.01|N|O|1998-04-07|1998-04-06|1998-04-18|TAKE BACK RETURN|MAIL|le furiously ac| +66157|640226|15251|1|47|54810.93|0.04|0.06|N|O|1997-10-19|1997-10-06|1997-10-26|TAKE BACK RETURN|SHIP|ckly-- special, unusual foxes doze furious| +66157|269935|32441|2|35|66672.20|0.01|0.03|N|O|1997-11-02|1997-10-09|1997-11-14|DELIVER IN PERSON|SHIP|pecial deposits. depo| +66158|605728|5729|1|50|81684.50|0.09|0.01|N|O|1996-03-26|1996-04-12|1996-04-02|DELIVER IN PERSON|TRUCK|al excuses solve furiously. expres| +66158|462564|37583|2|25|38163.50|0.06|0.08|N|O|1996-05-10|1996-04-15|1996-05-28|DELIVER IN PERSON|SHIP|quests. carefu| +66158|308776|33789|3|11|19632.36|0.05|0.01|N|O|1996-05-05|1996-05-09|1996-05-17|DELIVER IN PERSON|TRUCK| bold dependencies. final somas mol| +66158|589470|27004|4|28|43664.60|0.03|0.07|N|O|1996-03-22|1996-04-30|1996-03-23|DELIVER IN PERSON|SHIP|lyly. quickly | +66159|490902|28430|1|18|34071.84|0.08|0.02|N|O|1997-11-22|1998-01-16|1997-11-27|TAKE BACK RETURN|TRUCK|usily even instru| +66159|579417|41929|2|3|4489.17|0.04|0.08|N|O|1998-02-26|1998-01-10|1998-03-04|TAKE BACK RETURN|TRUCK|phins. carefully regular requ| +66159|255647|30658|3|20|32052.60|0.10|0.03|N|O|1997-11-28|1998-01-28|1997-12-12|DELIVER IN PERSON|FOB|en deposits | +66159|657847|45387|4|25|45120.25|0.06|0.08|N|O|1998-01-16|1997-12-30|1998-01-24|COLLECT COD|AIR|sits. slyly unusual asy| +66184|304705|42224|1|21|35903.49|0.01|0.07|A|F|1993-01-25|1992-12-28|1993-02-06|COLLECT COD|MAIL|ven requests sleep blithely aft| +66184|164565|14566|2|47|76589.32|0.08|0.04|R|F|1993-01-20|1993-01-18|1993-01-31|COLLECT COD|RAIL|nag. deposits hag| +66184|830139|5172|3|5|5345.45|0.03|0.01|A|F|1993-03-17|1993-02-06|1993-03-27|COLLECT COD|RAIL|e the pending asymptotes. final accounts | +66185|433018|33019|1|14|13313.86|0.10|0.08|N|O|1997-03-13|1997-02-12|1997-04-11|TAKE BACK RETURN|AIR|. quickly special deposits integrate furio| +66185|727274|2303|2|8|10409.92|0.01|0.03|N|O|1997-01-17|1997-02-04|1997-01-19|DELIVER IN PERSON|RAIL|efully ironic instructions. car| +66185|291646|41647|3|49|80243.87|0.09|0.07|N|O|1997-01-10|1997-01-14|1997-01-26|NONE|FOB|packages cajole furiously slyly final| +66186|465888|15889|1|11|20392.46|0.08|0.06|N|O|1998-02-25|1998-04-25|1998-03-09|NONE|TRUCK|arefully stealthy packages of the expr| +66187|942596|42597|1|29|47517.95|0.06|0.05|N|O|1995-11-02|1995-09-30|1995-11-09|TAKE BACK RETURN|REG AIR|y under the blithely ev| +66187|206584|6585|2|1|1490.57|0.08|0.06|N|O|1995-11-08|1995-09-02|1995-11-14|COLLECT COD|REG AIR|sits are enticingly furiously ev| +66187|49535|37036|3|43|63834.79|0.05|0.07|N|O|1995-08-03|1995-08-28|1995-08-31|NONE|MAIL|t platelets. regular requests after the | +66188|485009|10028|1|34|33795.32|0.00|0.04|N|O|1995-11-20|1995-11-22|1995-12-07|NONE|FOB|y regular | +66188|541097|28628|2|12|13656.84|0.09|0.05|N|O|1995-11-12|1996-01-15|1995-11-17|NONE|MAIL|ickly regular packages cajole acro| +66188|207857|32866|3|3|5294.52|0.07|0.02|N|O|1995-12-18|1996-01-08|1996-01-09|NONE|AIR|ironic req| +66188|444449|6958|4|26|36228.92|0.00|0.04|N|O|1995-11-15|1996-01-14|1995-12-09|DELIVER IN PERSON|SHIP|unts across the regular, ironic pains hagg| +66188|846036|46037|5|17|16693.83|0.03|0.03|N|O|1996-02-07|1995-12-23|1996-03-02|NONE|RAIL|uctions hagg| +66188|325239|25240|6|14|17699.08|0.06|0.05|N|O|1995-12-02|1996-01-04|1995-12-29|TAKE BACK RETURN|FOB|es. regular deposi| +66189|31496|31497|1|47|67092.03|0.09|0.02|R|F|1992-08-12|1992-08-08|1992-08-25|TAKE BACK RETURN|REG AIR|ronic requests. furious| +66189|336838|11851|2|4|7499.28|0.05|0.06|A|F|1992-07-08|1992-08-05|1992-07-31|COLLECT COD|REG AIR|l somas impr| +66189|220264|45273|3|4|4737.00|0.05|0.03|A|F|1992-08-19|1992-07-14|1992-08-23|COLLECT COD|SHIP|xcuses. pending| +66189|968901|18902|4|29|57125.94|0.02|0.03|A|F|1992-07-18|1992-07-23|1992-08-04|TAKE BACK RETURN|REG AIR|telets. ironic, | +66189|311899|49418|5|26|49682.88|0.06|0.03|R|F|1992-09-11|1992-07-19|1992-09-22|TAKE BACK RETURN|FOB|xes. closely regular notornis boost f| +66189|76898|14402|6|3|5624.67|0.05|0.03|R|F|1992-08-17|1992-07-15|1992-08-27|COLLECT COD|SHIP| the slyly idle accounts| +66190|734675|47190|1|26|44450.64|0.02|0.07|A|F|1995-05-27|1995-03-25|1995-06-08|NONE|MAIL|rts. carefully enticing requests are | +66190|674302|49329|2|11|14038.97|0.04|0.03|A|F|1995-05-20|1995-03-17|1995-06-03|COLLECT COD|FOB|ilent accounts. blithely fin| +66190|977098|39618|3|31|36426.55|0.00|0.07|N|F|1995-05-23|1995-03-19|1995-06-21|NONE|SHIP|eas. ruthlessly bold dependencies nag fl| +66190|78139|15643|4|21|23459.73|0.10|0.06|R|F|1995-05-15|1995-04-14|1995-06-08|TAKE BACK RETURN|RAIL|final packages. silently i| +66190|268621|6137|5|35|55636.35|0.09|0.00|A|F|1995-02-23|1995-04-21|1995-03-18|NONE|RAIL|dolites cajole furi| +66190|698553|11067|6|23|35684.96|0.00|0.04|R|F|1995-05-27|1995-04-18|1995-06-12|COLLECT COD|REG AIR|regular accounts are carefully | +66190|577751|15285|7|37|67663.01|0.04|0.05|R|F|1995-03-22|1995-04-13|1995-04-19|TAKE BACK RETURN|FOB|packages. | +66191|251270|26281|1|16|19540.16|0.05|0.01|A|F|1995-03-26|1995-04-15|1995-04-14|DELIVER IN PERSON|SHIP| deposits wake | +66191|92011|42012|2|50|50150.50|0.07|0.00|R|F|1995-03-16|1995-02-28|1995-03-23|DELIVER IN PERSON|RAIL|e excuses sublate slyl| +66191|412733|25242|3|43|70765.53|0.06|0.01|R|F|1995-03-04|1995-03-18|1995-03-11|DELIVER IN PERSON|SHIP|quickly bold pa| +66191|793787|18818|4|35|65826.25|0.00|0.00|A|F|1995-03-10|1995-04-08|1995-03-17|DELIVER IN PERSON|REG AIR|ic instructions.| +66191|170810|45817|5|21|39497.01|0.03|0.03|A|F|1995-02-26|1995-03-27|1995-03-25|NONE|SHIP|. furiously unus| +66191|792512|30058|6|40|64179.20|0.07|0.00|R|F|1995-02-12|1995-02-27|1995-03-01|TAKE BACK RETURN|TRUCK|osits. finally ironic ideas b| +66191|742469|42470|7|15|22671.45|0.08|0.03|R|F|1995-03-20|1995-03-11|1995-03-24|NONE|SHIP|ctions. even packages are quickly-- flu| +66216|669323|19324|1|40|51691.60|0.09|0.02|R|F|1993-04-11|1993-05-27|1993-04-16|COLLECT COD|REG AIR|s are. ironic requests wake sl| +66216|305275|5276|2|41|52490.66|0.05|0.07|R|F|1993-04-06|1993-05-09|1993-05-06|TAKE BACK RETURN|AIR|ost. bold, express accounts ac| +66217|441437|16454|1|16|22054.56|0.06|0.04|A|F|1993-02-08|1993-04-09|1993-02-21|TAKE BACK RETURN|RAIL|etect fluffily reg| +66217|220588|45597|2|30|45257.10|0.00|0.03|R|F|1993-01-20|1993-03-21|1993-02-19|DELIVER IN PERSON|TRUCK|ular deposits nag fur| +66217|408838|21347|3|38|66378.78|0.02|0.03|R|F|1993-03-04|1993-03-14|1993-03-27|COLLECT COD|REG AIR|haggle carefully sauternes. fur| +66217|334606|22125|4|24|39374.16|0.07|0.07|R|F|1993-01-25|1993-02-27|1993-01-27|DELIVER IN PERSON|MAIL|uriously regular deposit| +66217|713039|25554|5|30|31560.00|0.02|0.00|A|F|1993-03-05|1993-04-11|1993-03-13|TAKE BACK RETURN|REG AIR|eposits. excuses haggle| +66218|387616|12631|1|48|81772.80|0.02|0.01|A|F|1993-04-29|1993-02-12|1993-05-28|DELIVER IN PERSON|AIR|g packages. pen| +66218|654847|17361|2|1|1801.81|0.09|0.04|A|F|1993-03-04|1993-03-21|1993-03-23|DELIVER IN PERSON|REG AIR|pinto beans. sometimes final re| +66218|7810|20311|3|48|82454.88|0.04|0.05|A|F|1993-01-30|1993-03-30|1993-02-17|DELIVER IN PERSON|RAIL|l deposits use slyly instead of the blit| +66218|255797|43313|4|26|45572.28|0.07|0.01|A|F|1993-02-01|1993-02-26|1993-02-17|DELIVER IN PERSON|SHIP| boost carefully unusual do| +66218|167278|4788|5|26|34977.02|0.04|0.05|A|F|1993-04-08|1993-02-08|1993-05-07|COLLECT COD|MAIL|packages: carefully even grouches beli| +66218|434768|22293|6|11|18730.14|0.04|0.02|A|F|1993-02-06|1993-03-27|1993-02-12|TAKE BACK RETURN|TRUCK|efully across the carefully regular| +66219|822856|47889|1|2|3557.62|0.06|0.00|N|O|1996-07-14|1996-05-18|1996-07-24|DELIVER IN PERSON|TRUCK|ake around t| +66219|726174|26175|2|47|56406.58|0.08|0.03|N|O|1996-07-17|1996-05-21|1996-08-06|DELIVER IN PERSON|TRUCK|hely express foxes against the | +66219|800151|152|3|20|21022.20|0.06|0.07|N|O|1996-06-17|1996-05-10|1996-07-05|DELIVER IN PERSON|MAIL|es haggle carefully to the ironi| +66219|121793|34296|4|4|7259.16|0.02|0.05|N|O|1996-04-10|1996-05-14|1996-04-13|TAKE BACK RETURN|REG AIR|n pinto beans. requests sle| +66219|964098|14099|5|42|48806.10|0.09|0.07|N|O|1996-07-01|1996-05-24|1996-07-11|TAKE BACK RETURN|FOB|he package| +66220|874045|36563|1|32|32608.00|0.04|0.07|A|F|1992-10-21|1992-12-09|1992-11-18|COLLECT COD|AIR|he even pinto | +66220|59725|22227|2|48|80866.56|0.06|0.03|R|F|1992-11-16|1992-12-10|1992-12-09|COLLECT COD|FOB|ular deposits. hockey players| +66220|793921|31467|3|5|10074.45|0.00|0.07|R|F|1993-01-12|1992-12-11|1993-01-31|NONE|MAIL|special pinto beans lose furiousl| +66220|424022|11547|4|22|20812.00|0.06|0.02|A|F|1993-01-09|1992-11-27|1993-01-29|DELIVER IN PERSON|REG AIR|ctions are c| +66221|992926|17965|1|35|70660.80|0.03|0.00|R|F|1994-04-01|1994-06-07|1994-04-17|COLLECT COD|MAIL|gular patterns. blithely regular | +66221|93315|18318|2|6|7849.86|0.06|0.01|R|F|1994-05-21|1994-06-22|1994-05-29|TAKE BACK RETURN|AIR| deposits. reg| +66221|335567|10580|3|11|17628.05|0.03|0.03|R|F|1994-05-29|1994-05-03|1994-06-26|DELIVER IN PERSON|AIR|bravely express accounts. furiously regular| +66221|869044|19045|4|8|8104.00|0.10|0.00|A|F|1994-05-30|1994-06-03|1994-06-25|NONE|MAIL|ending accounts dazzle| +66221|19076|19077|5|1|995.07|0.04|0.08|A|F|1994-04-25|1994-05-27|1994-05-11|NONE|SHIP|y ironic pains. final ideas mo| +66222|194106|19113|1|50|60005.00|0.09|0.02|R|F|1993-09-21|1993-10-15|1993-10-02|COLLECT COD|RAIL| special accounts. slow packages| +66222|331984|6997|2|32|64511.04|0.05|0.07|A|F|1993-10-21|1993-10-30|1993-11-10|COLLECT COD|FOB|s. always pending| +66222|645227|32764|3|20|23443.80|0.09|0.00|R|F|1993-11-13|1993-11-20|1993-11-23|NONE|MAIL|al packages dazzle. busily| +66222|317768|5287|4|21|37500.75|0.00|0.05|A|F|1993-10-04|1993-11-26|1993-10-28|DELIVER IN PERSON|AIR| to the careful| +66222|722523|10066|5|29|44819.21|0.09|0.03|A|F|1994-01-03|1993-10-29|1994-01-20|NONE|AIR|ly pending deposits wake idly abou| +66222|428197|3214|6|45|50632.65|0.02|0.08|R|F|1993-10-16|1993-11-06|1993-10-29|TAKE BACK RETURN|FOB|lly silent depen| +66222|695426|7940|7|40|56855.60|0.01|0.06|R|F|1993-12-17|1993-10-28|1993-12-26|DELIVER IN PERSON|REG AIR|ans haggle blithely above the quickly even| +66223|20699|8200|1|40|64787.60|0.05|0.02|R|F|1995-05-09|1995-06-06|1995-05-25|TAKE BACK RETURN|MAIL|s wake carefully among the closel| +66223|887992|510|2|45|89097.75|0.07|0.00|N|O|1995-07-04|1995-06-01|1995-07-22|COLLECT COD|REG AIR|nts sleep blithely. slyly ironic | +66223|467843|17844|3|7|12675.74|0.03|0.06|R|F|1995-05-26|1995-04-23|1995-06-13|NONE|TRUCK|s nag blithely ironic accounts. unusu| +66223|31167|6168|4|5|5490.80|0.06|0.02|R|F|1995-05-24|1995-06-10|1995-05-25|COLLECT COD|TRUCK|to the enticingl| +66223|810247|22764|5|28|32401.60|0.08|0.04|N|O|1995-07-01|1995-05-20|1995-07-29|DELIVER IN PERSON|TRUCK| slyly ironic foxes. furiously bol| +66223|811167|11168|6|28|30187.36|0.04|0.04|N|O|1995-07-03|1995-05-25|1995-07-09|COLLECT COD|RAIL|eans sleep? unusual, iron| +66223|270633|45644|7|5|8018.10|0.05|0.05|A|F|1995-04-21|1995-05-13|1995-05-21|TAKE BACK RETURN|AIR| final ideas are blithely specia| +66248|521241|33752|1|36|45439.92|0.06|0.02|N|O|1995-08-01|1995-06-05|1995-08-15|COLLECT COD|REG AIR|ounts nod slyly after the blithely regular | +66248|492200|29728|2|4|4768.72|0.05|0.00|A|F|1995-06-01|1995-06-08|1995-06-13|TAKE BACK RETURN|MAIL|quests along the b| +66248|391039|41040|3|48|54240.96|0.08|0.04|N|O|1995-07-16|1995-07-10|1995-08-01|TAKE BACK RETURN|FOB|yly idle deposits sle| +66248|178935|41439|4|6|12083.58|0.03|0.06|N|O|1995-06-20|1995-07-20|1995-07-02|DELIVER IN PERSON|REG AIR|al pearls. fu| +66249|276601|14117|1|17|26819.03|0.02|0.05|N|O|1996-06-17|1996-04-26|1996-07-02|COLLECT COD|FOB|yly. slyly regular pinto| +66249|827418|2451|2|39|52469.43|0.03|0.08|N|O|1996-02-22|1996-03-27|1996-02-23|TAKE BACK RETURN|TRUCK|. blithely special instructions are| +66249|398594|11102|3|44|74473.52|0.02|0.01|N|O|1996-03-01|1996-04-28|1996-03-26|COLLECT COD|FOB|integrate carefully agains| +66249|155421|5422|4|41|60533.22|0.00|0.03|N|O|1996-05-25|1996-04-24|1996-06-06|COLLECT COD|SHIP|efully requests; furiously silent dolph| +66249|158424|45934|5|19|28165.98|0.02|0.00|N|O|1996-04-07|1996-05-04|1996-04-23|NONE|SHIP|ing packages. special, unusu| +66250|96617|21620|1|26|41953.86|0.07|0.05|N|O|1998-06-05|1998-07-26|1998-06-25|TAKE BACK RETURN|FOB|integrate against the blithely r| +66250|830732|43249|2|18|29928.42|0.01|0.04|N|O|1998-08-06|1998-06-21|1998-08-19|COLLECT COD|AIR|. blithely ironic deposits sleep busily | +66250|96445|8947|3|25|36036.00|0.01|0.04|N|O|1998-05-24|1998-07-04|1998-05-25|DELIVER IN PERSON|SHIP|express theodolites| +66251|967325|4883|1|29|40376.12|0.02|0.06|A|F|1993-08-28|1993-09-08|1993-09-08|DELIVER IN PERSON|SHIP|lithely even pinto be| +66251|827544|27545|2|35|51502.50|0.06|0.06|A|F|1993-10-07|1993-09-21|1993-11-02|DELIVER IN PERSON|FOB| fluffily regular| +66251|517200|42221|3|4|4868.72|0.06|0.03|R|F|1993-11-27|1993-09-25|1993-12-04|NONE|REG AIR|ackages; blithe| +66252|567315|42338|1|12|16587.48|0.09|0.03|A|F|1994-09-14|1994-08-12|1994-10-09|COLLECT COD|MAIL|ut the blit| +66252|855385|17903|2|11|14743.74|0.01|0.07|A|F|1994-07-03|1994-08-31|1994-07-20|TAKE BACK RETURN|TRUCK|yly against the Tiresia| +66252|454166|16676|3|43|48166.02|0.08|0.00|A|F|1994-09-04|1994-08-06|1994-10-01|DELIVER IN PERSON|REG AIR|ithely. quickly bold ideas sleep. furiously| +66253|117483|4990|1|47|70522.56|0.07|0.08|N|O|1997-08-19|1997-08-28|1997-09-06|TAKE BACK RETURN|FOB|sts play along the ironic instructi| +66253|532436|7457|2|49|71952.09|0.07|0.01|N|O|1997-07-07|1997-08-12|1997-07-26|NONE|REG AIR| integrate quickly. furiously specia| +66253|635268|22805|3|18|21658.14|0.04|0.06|N|O|1997-06-17|1997-08-11|1997-07-02|DELIVER IN PERSON|RAIL| slyly unusual frets. bold, regular p| +66254|827854|2887|1|18|32072.58|0.02|0.04|N|O|1996-02-29|1996-02-02|1996-03-25|COLLECT COD|SHIP|? blithely special d| +66255|105376|30381|1|43|59398.91|0.06|0.04|R|F|1992-08-14|1992-08-29|1992-09-07|TAKE BACK RETURN|REG AIR| regular fox| +66255|49449|24450|2|23|32164.12|0.01|0.06|R|F|1992-09-04|1992-10-05|1992-09-21|NONE|AIR|tructions. bold, even platelets haggl| +66255|77167|2170|3|1|1144.16|0.01|0.04|R|F|1992-08-06|1992-09-19|1992-09-05|DELIVER IN PERSON|AIR|counts haggle even braids. quickly eve| +66255|933352|20907|4|24|33247.44|0.01|0.00|R|F|1992-08-12|1992-10-13|1992-08-23|DELIVER IN PERSON|REG AIR|ideas across the quickly ruthless deposit| +66280|519179|44200|1|12|14377.80|0.06|0.05|R|F|1992-12-06|1992-12-08|1992-12-19|DELIVER IN PERSON|AIR|ccounts alongside of the fluffily | +66280|828396|40913|2|44|58271.40|0.00|0.00|A|F|1992-12-17|1992-10-19|1992-12-24|NONE|MAIL|ely even deposits cajole about| +66280|847423|22456|3|45|61667.10|0.02|0.03|A|F|1992-10-04|1992-11-28|1992-10-23|NONE|SHIP|ts cajole after the expre| +66280|623980|11517|4|5|9519.75|0.09|0.03|A|F|1992-11-28|1992-11-03|1992-12-17|NONE|SHIP|refully regular requests around the furiou| +66280|220582|20583|5|14|21035.98|0.09|0.03|A|F|1992-11-23|1992-11-10|1992-12-15|DELIVER IN PERSON|TRUCK|gular dolphins play among the ironically br| +66281|778747|3778|1|1|1825.71|0.07|0.07|A|F|1995-06-02|1995-06-15|1995-06-15|TAKE BACK RETURN|REG AIR|lithely even requests. | +66281|394477|6985|2|29|45572.34|0.05|0.04|A|F|1995-04-30|1995-06-17|1995-05-05|TAKE BACK RETURN|AIR|ilently final accounts. furiously pending| +66281|970317|32837|3|4|5549.08|0.05|0.03|A|F|1995-05-16|1995-05-09|1995-05-17|TAKE BACK RETURN|AIR|riously against the accounts. asympto| +66281|111238|36243|4|35|43723.05|0.05|0.02|R|F|1995-04-23|1995-06-03|1995-05-08|NONE|SHIP|jole slyly slyly final instructions. | +66281|573005|10539|5|4|4311.92|0.06|0.05|N|O|1995-07-03|1995-05-21|1995-07-30|NONE|REG AIR|ges nag quickly. slyly daring plat| +66281|490018|2528|6|16|16127.84|0.00|0.07|N|O|1995-07-25|1995-06-05|1995-08-22|TAKE BACK RETURN|MAIL|slyly silent fo| +66282|623591|36104|1|22|33320.32|0.00|0.06|N|O|1997-01-17|1997-03-07|1997-01-28|DELIVER IN PERSON|TRUCK|ess accounts. special | +66282|689109|14136|2|32|35138.24|0.03|0.04|N|O|1997-01-05|1997-03-20|1997-01-14|DELIVER IN PERSON|FOB|ilently spe| +66282|851344|38896|3|30|38859.00|0.06|0.07|N|O|1997-03-08|1997-03-07|1997-03-31|NONE|FOB|iously. blithely s| +66282|526846|1867|4|21|39329.22|0.06|0.05|N|O|1997-01-05|1997-02-16|1997-01-21|COLLECT COD|SHIP|deposits. regularly express deposits ag| +66283|167910|42917|1|6|11867.46|0.07|0.07|R|F|1994-03-09|1994-03-02|1994-03-17|DELIVER IN PERSON|FOB|, even packages nag furiously ironic| +66283|60137|22639|2|33|36205.29|0.01|0.07|A|F|1994-03-16|1994-03-11|1994-04-02|DELIVER IN PERSON|TRUCK|packages integr| +66283|712416|12417|3|27|38566.26|0.00|0.08|R|F|1994-02-13|1994-02-04|1994-03-03|DELIVER IN PERSON|TRUCK|ully across the | +66283|565665|40688|4|44|76148.16|0.04|0.00|A|F|1994-02-07|1994-02-04|1994-03-07|TAKE BACK RETURN|RAIL|avely furiously slow foxes. regular| +66284|475721|38231|1|20|33934.00|0.06|0.02|N|O|1997-06-21|1997-07-28|1997-07-04|TAKE BACK RETURN|REG AIR| about the furiousl| +66284|439959|27484|2|45|85451.85|0.00|0.05|N|O|1997-07-26|1997-08-14|1997-08-10|TAKE BACK RETURN|SHIP|the quickly unusual dependencies. blithely| +66284|387549|57|3|23|37640.19|0.05|0.01|N|O|1997-08-23|1997-08-22|1997-09-04|COLLECT COD|TRUCK|e blithely permanent asympt| +66284|533211|45722|4|15|18662.85|0.01|0.06|N|O|1997-09-22|1997-08-07|1997-10-16|TAKE BACK RETURN|RAIL|uses across the accounts haggle qu| +66285|898139|35691|1|7|7959.63|0.02|0.04|N|O|1996-10-22|1996-08-14|1996-11-19|NONE|REG AIR|ly ironic pinto beans. | +66285|8546|33547|2|13|18909.02|0.03|0.05|N|O|1996-09-24|1996-08-19|1996-10-11|TAKE BACK RETURN|MAIL|. bold pinto beans sublate bl| +66285|623683|23684|3|26|41772.90|0.06|0.04|N|O|1996-09-29|1996-08-12|1996-10-16|COLLECT COD|AIR|s dependencies. dependencies nag by the fur| +66286|424981|49998|1|38|72426.48|0.08|0.03|R|F|1992-02-22|1992-04-11|1992-03-08|NONE|AIR|its. express foxes| +66286|654440|41980|2|18|25099.38|0.01|0.06|A|F|1992-05-27|1992-04-08|1992-06-14|NONE|FOB|riously bold instructi| +66286|172024|22025|3|6|6576.12|0.02|0.05|A|F|1992-05-24|1992-03-22|1992-06-03|DELIVER IN PERSON|REG AIR|c accounts nag even, ironic | +66286|205499|30508|4|37|51965.76|0.04|0.07|R|F|1992-04-21|1992-05-11|1992-05-20|COLLECT COD|TRUCK| regular deposits according to the deposi| +66286|810713|48262|5|30|48710.10|0.01|0.01|A|F|1992-03-25|1992-03-30|1992-04-01|COLLECT COD|RAIL| bold ideas. regular ideas| +66286|650043|37583|6|37|36741.37|0.03|0.05|R|F|1992-02-17|1992-04-07|1992-03-15|COLLECT COD|SHIP|ly special platelets atop the caref| +66286|256162|18668|7|50|55907.50|0.10|0.01|A|F|1992-05-19|1992-04-11|1992-06-04|NONE|RAIL|s try to sleep. regular accounts haggle s| +66287|300741|742|1|28|48768.44|0.08|0.01|N|O|1997-04-19|1997-04-11|1997-05-17|DELIVER IN PERSON|FOB|efully ironic courts cajole. regul| +66287|547034|47035|2|14|15134.14|0.03|0.04|N|O|1997-05-11|1997-03-23|1997-06-08|COLLECT COD|AIR|eposits. even, pending deposits| +66287|990496|28054|3|8|12691.60|0.07|0.05|N|O|1997-03-21|1997-03-27|1997-03-28|DELIVER IN PERSON|SHIP|beside the busy| +66287|262043|24549|4|35|35176.05|0.01|0.02|N|O|1997-03-05|1997-05-07|1997-03-13|COLLECT COD|AIR|s use furiously| +66312|811790|49339|1|3|5105.25|0.00|0.08|N|O|1996-02-17|1996-01-11|1996-03-11|DELIVER IN PERSON|TRUCK|oxes boost unusual requests. hoc| +66312|741227|3742|2|33|41850.27|0.09|0.05|N|O|1996-01-27|1995-12-26|1996-02-19|COLLECT COD|AIR|slyly. furiously even depos| +66312|798024|10540|3|42|47123.58|0.10|0.01|N|O|1996-01-02|1996-01-25|1996-01-20|NONE|SHIP|xcuses. idly unusual fo| +66312|384157|21679|4|27|33510.78|0.03|0.01|N|O|1995-12-29|1996-02-04|1996-01-28|NONE|MAIL|e express deposits cajole b| +66312|515184|2715|5|48|57559.68|0.00|0.07|N|O|1995-12-27|1996-01-04|1996-01-26|COLLECT COD|RAIL|sits. quickly pending theodolites w| +66312|687947|461|6|40|77396.40|0.09|0.04|N|O|1996-01-05|1995-12-20|1996-01-18|DELIVER IN PERSON|AIR|ly regular instructions aga| +66313|977410|14968|1|46|68419.02|0.06|0.04|R|F|1993-06-16|1993-08-03|1993-07-09|COLLECT COD|REG AIR|are blithely around t| +66313|318644|31151|2|46|76480.98|0.06|0.07|A|F|1993-08-23|1993-08-17|1993-09-22|DELIVER IN PERSON|TRUCK| beans sleep| +66313|445410|45411|3|10|13553.90|0.02|0.02|R|F|1993-06-20|1993-08-31|1993-07-15|COLLECT COD|RAIL|equests nag slyly express accounts. ironic | +66313|999874|49875|4|9|17764.47|0.05|0.01|R|F|1993-09-25|1993-08-09|1993-10-01|COLLECT COD|TRUCK|above the blithely bli| +66313|871486|9038|5|35|51010.40|0.04|0.05|A|F|1993-07-02|1993-09-10|1993-07-15|COLLECT COD|REG AIR|s might haggle above the blithely ironi| +66314|299572|24583|1|39|61290.84|0.03|0.04|A|F|1995-06-12|1995-07-20|1995-06-15|NONE|MAIL|t. requests slee| +66314|892743|42744|2|27|46863.90|0.05|0.07|N|O|1995-09-27|1995-07-21|1995-09-29|DELIVER IN PERSON|MAIL|sits. furiously regular attainments | +66314|326972|39479|3|25|49974.00|0.07|0.08|N|O|1995-06-22|1995-08-17|1995-07-15|TAKE BACK RETURN|MAIL|odolites. platelets sleep according to | +66314|416862|29371|4|19|33797.96|0.03|0.01|N|O|1995-10-02|1995-07-07|1995-10-29|DELIVER IN PERSON|TRUCK|oost blithely. furious| +66314|199548|49549|5|38|62606.52|0.00|0.06|N|O|1995-06-24|1995-07-20|1995-07-05|COLLECT COD|AIR|blithely furiously| +66314|794394|31940|6|3|4465.08|0.07|0.03|N|O|1995-08-12|1995-07-09|1995-08-18|DELIVER IN PERSON|RAIL|l platelets. slyly pending dinos across t| +66314|377170|27171|7|26|32426.16|0.05|0.01|N|O|1995-09-03|1995-07-13|1995-09-08|DELIVER IN PERSON|TRUCK|rbits cajole blithely. furiously final the| +66315|90492|15495|1|34|50404.66|0.09|0.08|N|O|1996-01-13|1995-12-30|1996-01-27|NONE|FOB|y even asymptotes cajole s| +66315|887538|56|2|19|28984.31|0.08|0.04|N|O|1996-02-27|1995-12-14|1996-03-17|TAKE BACK RETURN|MAIL|lyly. furiously regular accounts| +66315|847714|47715|3|44|73113.48|0.05|0.08|N|O|1995-11-26|1995-12-12|1995-12-13|TAKE BACK RETURN|MAIL|ons are against| +66315|526817|26818|4|16|29500.64|0.08|0.00|N|O|1996-02-13|1996-01-22|1996-03-05|NONE|RAIL|bold theodolites cajol| +66316|347391|22404|1|42|60411.96|0.03|0.07|A|F|1993-07-15|1993-09-24|1993-07-17|DELIVER IN PERSON|REG AIR|iresias are. furiously regular depos| +66316|595712|33246|2|12|21692.28|0.07|0.07|R|F|1993-07-29|1993-08-29|1993-08-07|TAKE BACK RETURN|SHIP|fily slyly expre| +66316|117189|42194|3|34|41010.12|0.09|0.04|R|F|1993-07-23|1993-08-13|1993-07-31|NONE|MAIL|usual theodolites? furiously regular pac| +66317|529290|29291|1|30|39578.10|0.08|0.01|R|F|1994-09-20|1994-11-26|1994-10-01|COLLECT COD|REG AIR|tions wake | +66317|761147|48693|2|40|48324.40|0.10|0.05|A|F|1994-09-27|1994-11-11|1994-10-07|TAKE BACK RETURN|TRUCK|ffily. final packages| +66317|584556|22090|3|31|50856.43|0.04|0.06|A|F|1994-10-25|1994-11-04|1994-11-22|COLLECT COD|MAIL|counts use furiously at the| +66317|621581|21582|4|1|1502.55|0.07|0.03|R|F|1994-12-22|1994-12-01|1994-12-25|TAKE BACK RETURN|TRUCK|unts. fluffily fina| +66318|285741|10752|1|26|44894.98|0.05|0.04|N|O|1997-10-17|1997-10-01|1997-10-26|NONE|SHIP|uickly: quickly bold pains about th| +66318|446673|34198|2|16|25914.40|0.07|0.00|N|O|1997-10-12|1997-10-24|1997-10-30|COLLECT COD|TRUCK|ding instructi| +66318|218601|31106|3|19|28872.21|0.04|0.06|N|O|1997-09-09|1997-10-28|1997-09-15|TAKE BACK RETURN|SHIP|ng to the re| +66318|18095|30596|4|43|43562.87|0.04|0.02|N|O|1997-09-11|1997-10-18|1997-09-29|NONE|MAIL|se foxes. quickly stealthy requests| +66318|122223|34726|5|15|18678.30|0.10|0.07|N|O|1997-09-04|1997-10-02|1997-09-27|DELIVER IN PERSON|REG AIR|y. requests grow evenly express instru| +66318|186608|49112|6|12|20335.20|0.09|0.06|N|O|1997-09-29|1997-10-04|1997-10-11|TAKE BACK RETURN|SHIP|after the regular foxes. pendin| +66319|535369|22900|1|36|50556.24|0.08|0.04|N|O|1996-07-08|1996-07-09|1996-07-30|COLLECT COD|SHIP|bout the quickly ironic| +66319|937739|25294|2|16|28427.04|0.02|0.06|N|O|1996-07-17|1996-06-08|1996-07-27|COLLECT COD|AIR|posits. theodolites wake across | +66319|575400|423|3|39|57539.82|0.08|0.01|N|O|1996-07-11|1996-07-12|1996-07-20|TAKE BACK RETURN|FOB|t instructions. dolphins n| +66319|746310|46311|4|12|16275.36|0.00|0.08|N|O|1996-05-11|1996-06-08|1996-05-28|COLLECT COD|FOB|bout the furiously | +66344|838473|26022|1|35|49400.05|0.00|0.02|N|O|1997-04-28|1997-04-26|1997-05-11|DELIVER IN PERSON|MAIL|requests wake silently ironic| +66344|200623|38136|2|32|48755.52|0.01|0.07|N|O|1997-04-07|1997-04-16|1997-04-09|TAKE BACK RETURN|AIR|ording to the qu| +66344|856363|31398|3|50|65966.00|0.01|0.02|N|O|1997-04-07|1997-05-05|1997-05-05|DELIVER IN PERSON|REG AIR|are slyly. quickly unusual dependencie| +66344|888470|988|4|42|61254.06|0.06|0.01|N|O|1997-04-05|1997-05-22|1997-04-29|TAKE BACK RETURN|RAIL|the fluffily special dolphi| +66344|499240|24259|5|17|21066.74|0.10|0.02|N|O|1997-06-22|1997-05-06|1997-07-13|TAKE BACK RETURN|TRUCK|usly close accounts are | +66345|200596|38109|1|13|19455.54|0.01|0.03|A|F|1993-04-04|1993-04-01|1993-04-18|COLLECT COD|REG AIR| blithely even escapades are acc| +66345|411364|36381|2|50|63767.00|0.08|0.05|R|F|1993-03-24|1993-02-16|1993-04-08|DELIVER IN PERSON|REG AIR| slyly even depend| +66345|781374|18920|3|26|37838.84|0.03|0.03|R|F|1993-03-24|1993-03-14|1993-04-16|TAKE BACK RETURN|REG AIR|y enticing requests. car| +66345|536225|48736|4|29|36574.80|0.00|0.06|A|F|1993-02-01|1993-02-19|1993-02-16|TAKE BACK RETURN|TRUCK|y unusual theodolites haggle carefull| +66346|501530|1531|1|6|9189.06|0.06|0.05|A|F|1992-06-10|1992-04-16|1992-06-15|COLLECT COD|RAIL|haggle slyly express excuses. slyly special| +66347|476805|39315|1|11|19599.58|0.05|0.06|N|O|1995-12-13|1995-11-05|1995-12-19|COLLECT COD|RAIL|ar deposits. fluffily daring asymptotes a| +66347|646779|46780|2|43|74206.82|0.09|0.01|N|O|1995-10-23|1995-11-12|1995-10-29|DELIVER IN PERSON|FOB|above the pending foxes| +66348|811757|24274|1|21|35042.91|0.02|0.05|A|F|1995-02-03|1995-04-19|1995-02-12|NONE|TRUCK|carefully ironic pinto beans aff| +66349|12302|12303|1|21|25500.30|0.08|0.05|N|O|1996-05-04|1996-03-05|1996-05-07|COLLECT COD|SHIP|t. ironic, final the| +66349|754895|42441|2|31|60445.66|0.03|0.04|N|O|1996-03-17|1996-03-24|1996-04-13|TAKE BACK RETURN|FOB|ess courts. re| +66349|508888|21399|3|42|79668.12|0.09|0.05|N|O|1996-03-25|1996-03-22|1996-03-29|TAKE BACK RETURN|FOB|ins wake furiousl| +66349|877101|14653|4|7|7546.42|0.02|0.04|N|O|1996-04-06|1996-03-05|1996-04-30|NONE|FOB|he even deposits. fluff| +66350|875019|37537|1|39|38764.83|0.08|0.03|R|F|1994-11-28|1994-12-13|1994-12-27|COLLECT COD|TRUCK|e ironic accounts. carefully iro| +66350|439025|26550|2|2|1928.00|0.05|0.06|A|F|1995-01-06|1994-11-28|1995-01-12|NONE|TRUCK|ully silent requests against the closel| +66351|612301|37326|1|25|30331.75|0.06|0.07|N|O|1996-11-13|1996-09-22|1996-12-08|TAKE BACK RETURN|FOB|thely. carefully pending requests do| +66351|933042|8079|2|9|9675.00|0.10|0.01|N|O|1996-11-11|1996-10-15|1996-11-23|DELIVER IN PERSON|TRUCK|he fluffily | +66351|629076|41589|3|33|33166.32|0.02|0.07|N|O|1996-10-27|1996-10-28|1996-11-02|NONE|TRUCK|ithe patterns boos| +66351|875921|13473|4|13|24659.44|0.09|0.07|N|O|1996-12-01|1996-09-29|1996-12-15|TAKE BACK RETURN|REG AIR|ickly. slyly even d| +66351|589420|39421|5|34|51319.60|0.10|0.06|N|O|1996-11-07|1996-09-29|1996-11-16|TAKE BACK RETURN|FOB| silent, express t| +66376|917042|17043|1|4|4236.00|0.00|0.07|N|O|1997-02-05|1997-03-15|1997-02-08|NONE|SHIP|furiously silent decoys. | +66377|280054|30055|1|18|18612.72|0.00|0.00|N|O|1997-07-29|1997-06-10|1997-08-22|NONE|AIR|ithely. slyly dogged accounts along| +66377|857465|19983|2|38|54051.96|0.07|0.02|N|O|1997-07-04|1997-07-28|1997-07-10|NONE|MAIL|nusual, regular depe| +66377|400196|12705|3|24|26308.08|0.03|0.05|N|O|1997-06-19|1997-07-14|1997-07-13|COLLECT COD|SHIP|: special, pending accounts cajo| +66377|92610|5112|4|25|40065.25|0.08|0.04|N|O|1997-07-06|1997-07-01|1997-07-08|COLLECT COD|SHIP|ies cajole furiously from| +66377|494544|32072|5|18|27693.36|0.10|0.06|N|O|1997-05-09|1997-07-08|1997-05-15|NONE|RAIL| unusual asymptotes haggle along the| +66378|12704|12705|1|43|69518.10|0.02|0.01|N|O|1996-01-28|1996-03-20|1996-02-11|COLLECT COD|AIR|structions detect carefull| +66378|506195|43726|2|43|51650.31|0.02|0.04|N|O|1996-02-17|1996-03-18|1996-03-11|TAKE BACK RETURN|SHIP|ages detect fluffily theodo| +66378|608763|8764|3|19|31762.87|0.08|0.04|N|O|1996-01-21|1996-03-06|1996-02-07|NONE|RAIL|nts lose slyly. furiou| +66378|474213|11741|4|36|42738.84|0.04|0.00|N|O|1996-03-12|1996-04-09|1996-03-20|TAKE BACK RETURN|REG AIR|cial courts-- closely regular pinto b| +66378|88870|38871|5|14|26024.18|0.01|0.03|N|O|1996-04-04|1996-02-13|1996-04-23|TAKE BACK RETURN|MAIL|thely. unusual somas sleep| +66379|207527|32536|1|18|25821.18|0.08|0.00|A|F|1994-11-12|1994-11-04|1994-12-11|DELIVER IN PERSON|REG AIR|of the slyly| +66379|904060|29097|2|39|41496.78|0.06|0.03|A|F|1994-11-14|1994-11-26|1994-12-13|DELIVER IN PERSON|FOB|ages. even theodolites wake b| +66379|535819|35820|3|10|18547.90|0.05|0.05|A|F|1994-12-02|1994-12-17|1994-12-24|COLLECT COD|AIR|dly regular packages are fluffi| +66379|494788|19807|4|10|17827.60|0.03|0.07|A|F|1994-11-04|1994-12-10|1994-11-19|NONE|FOB|along the b| +66379|885178|10213|5|10|11631.30|0.08|0.08|A|F|1994-09-21|1994-11-07|1994-09-22|DELIVER IN PERSON|MAIL| ideas past the fina| +66380|724866|49895|1|49|92650.67|0.06|0.07|R|F|1994-10-07|1994-10-17|1994-10-30|TAKE BACK RETURN|AIR|s use slyly foxes. carefully ironic ideas| +66380|810589|10590|2|7|10496.78|0.00|0.02|A|F|1994-10-11|1994-09-09|1994-11-06|COLLECT COD|REG AIR|sts? packages are idea| +66380|555354|5355|3|48|67647.84|0.10|0.00|R|F|1994-10-15|1994-10-21|1994-10-27|DELIVER IN PERSON|TRUCK|inst the carefully regular reque| +66380|824854|12403|4|22|39133.82|0.10|0.03|A|F|1994-10-25|1994-10-29|1994-11-17|DELIVER IN PERSON|AIR|lithely bold theodolites. un| +66381|930618|43137|1|32|52754.24|0.07|0.02|N|O|1996-10-26|1996-11-09|1996-11-16|DELIVER IN PERSON|TRUCK| packages nod | +66381|891689|16724|2|30|50419.20|0.05|0.07|N|O|1996-12-10|1996-12-16|1996-12-21|NONE|MAIL|eans shall have to | +66381|615656|28169|3|5|7858.10|0.05|0.05|N|O|1997-01-26|1996-12-01|1997-02-01|TAKE BACK RETURN|RAIL|ronic deposits above the special requ| +66381|324623|24624|4|20|32952.20|0.03|0.04|N|O|1997-01-15|1996-11-15|1997-01-25|DELIVER IN PERSON|RAIL|ideas cajole furiously slyly spec| +66382|664097|1637|1|14|14854.84|0.02|0.06|A|F|1993-09-25|1993-09-01|1993-10-19|COLLECT COD|RAIL|telets. blithely special ideas about the ca| +66382|462662|190|2|43|69859.52|0.04|0.08|R|F|1993-10-25|1993-09-14|1993-11-19|COLLECT COD|REG AIR|yly unusual accounts are furiously aga| +66382|948635|23672|3|32|53874.88|0.02|0.01|R|F|1993-09-05|1993-10-24|1993-09-23|NONE|FOB| deposits. slyly s| +66382|702220|14735|4|6|7333.14|0.02|0.00|A|F|1993-08-09|1993-08-25|1993-09-02|COLLECT COD|AIR| carefully slyly silent requests: fina| +66383|9213|21714|1|22|24688.62|0.01|0.03|A|F|1994-05-05|1994-02-25|1994-05-09|NONE|FOB|pinto beans boost| +66383|837853|25402|2|40|71632.40|0.02|0.06|R|F|1994-02-06|1994-02-16|1994-02-20|COLLECT COD|FOB|ts. even ideas wake quickly along th| +66408|473676|36186|1|26|42890.90|0.05|0.00|A|F|1993-09-18|1993-11-04|1993-10-07|DELIVER IN PERSON|REG AIR|lets. blith| +66409|887045|24597|1|20|20640.00|0.08|0.02|A|F|1994-09-26|1994-07-07|1994-10-01|COLLECT COD|MAIL|posits sleep furiously by t| +66409|563502|13503|2|30|46964.40|0.01|0.01|A|F|1994-09-06|1994-08-31|1994-09-08|COLLECT COD|MAIL|al pinto beans cajole furiou| +66410|869449|7001|1|24|34041.60|0.07|0.03|N|O|1996-11-22|1996-09-27|1996-12-06|NONE|AIR|packages. regular instructions boos| +66410|814384|14385|2|1|1298.34|0.09|0.03|N|O|1996-11-20|1996-09-17|1996-11-27|NONE|AIR| the careful| +66410|346407|33926|3|7|10173.73|0.07|0.04|N|O|1996-11-02|1996-09-26|1996-11-19|NONE|FOB| after the pending packages. carefully| +66410|55385|30388|4|4|5361.52|0.02|0.08|N|O|1996-08-19|1996-10-27|1996-09-18|NONE|MAIL|y according to t| +66410|840350|27899|5|7|9032.17|0.05|0.05|N|O|1996-09-02|1996-10-12|1996-09-24|NONE|REG AIR|es boost blithely stealthily fin| +66411|182153|32154|1|50|61757.50|0.08|0.05|N|O|1998-06-15|1998-04-08|1998-06-24|TAKE BACK RETURN|MAIL|e unusual | +66411|443861|31386|2|2|3609.68|0.01|0.04|N|O|1998-05-15|1998-04-26|1998-05-17|TAKE BACK RETURN|AIR|ts nag fluffil| +66412|542709|17730|1|36|63060.48|0.03|0.08|N|O|1995-10-20|1995-11-10|1995-11-12|COLLECT COD|FOB|s accounts boost quickly around t| +66412|302567|40086|2|3|4708.65|0.09|0.01|N|O|1995-11-21|1995-11-06|1995-11-28|NONE|FOB|posits above the carefully regular as| +66412|241632|29145|3|1|1573.62|0.04|0.00|N|O|1995-09-14|1995-11-05|1995-10-03|DELIVER IN PERSON|AIR|the slyly enticin| +66412|92553|42554|4|4|6182.20|0.07|0.05|N|O|1995-10-16|1995-11-15|1995-11-04|COLLECT COD|AIR|ly theodolites. ruthlessly sp| +66412|533005|45516|5|8|8303.84|0.03|0.07|N|O|1995-11-23|1995-10-13|1995-12-04|DELIVER IN PERSON|MAIL|ess foxes are carefully s| +66413|716146|28661|1|19|22080.09|0.08|0.01|R|F|1993-08-16|1993-07-28|1993-09-02|DELIVER IN PERSON|MAIL|ly regular Tiresias across | +66413|256174|18680|2|29|32774.64|0.04|0.00|R|F|1993-06-03|1993-08-04|1993-06-22|DELIVER IN PERSON|MAIL|eans. foxes accord| +66414|525789|25790|1|45|81664.20|0.09|0.00|A|F|1994-08-02|1994-09-09|1994-08-10|NONE|SHIP|uriously special | +66414|928005|3042|2|7|7230.72|0.00|0.03|R|F|1994-08-19|1994-08-12|1994-08-28|DELIVER IN PERSON|SHIP|accounts ha| +66414|964361|14362|3|23|32782.36|0.09|0.08|A|F|1994-07-06|1994-07-21|1994-07-07|DELIVER IN PERSON|AIR| express theodolites about the unusual pla| +66414|999860|49861|4|31|60754.42|0.02|0.07|A|F|1994-09-24|1994-09-12|1994-10-18|COLLECT COD|AIR| nag into the furiously even | +66414|642158|4671|5|23|25302.76|0.08|0.02|R|F|1994-07-19|1994-09-11|1994-08-12|NONE|FOB|requests. blithely ironic packages| +66415|933406|45925|1|21|30226.56|0.01|0.03|A|F|1994-01-31|1994-02-06|1994-02-08|NONE|RAIL|fily pending theodolites are slyly sly| +66440|712617|37646|1|28|45628.24|0.10|0.08|N|O|1995-12-23|1995-11-27|1995-12-28|COLLECT COD|FOB|ccounts. bl| +66440|949004|24041|2|47|49489.12|0.04|0.07|N|O|1995-11-23|1995-11-09|1995-12-11|COLLECT COD|FOB|out the fin| +66441|775139|25140|1|29|35208.90|0.08|0.00|R|F|1992-08-18|1992-10-29|1992-09-13|TAKE BACK RETURN|FOB|as. fluffily bold packa| +66441|750313|37859|2|23|31355.44|0.03|0.02|A|F|1992-08-30|1992-09-27|1992-09-21|NONE|AIR|y regular foxes. accounts haggle furiously | +66441|505946|18457|3|27|52701.84|0.01|0.05|A|F|1992-10-24|1992-09-14|1992-11-03|DELIVER IN PERSON|MAIL|sly across | +66441|417962|5487|4|34|63917.96|0.06|0.02|A|F|1992-08-24|1992-09-29|1992-09-14|DELIVER IN PERSON|RAIL|ring excuses haggle caref| +66441|671720|21721|5|36|60900.84|0.07|0.00|A|F|1992-09-03|1992-09-13|1992-10-01|COLLECT COD|RAIL|ly Tiresias use slyly above the blithely| +66441|595784|33318|6|50|93988.00|0.00|0.00|R|F|1992-09-29|1992-11-10|1992-10-07|NONE|MAIL|ong the slyly final accounts wake| +66441|327670|15189|7|29|49232.14|0.06|0.04|R|F|1992-08-24|1992-10-23|1992-08-28|TAKE BACK RETURN|MAIL|ular, unusual excuses? final, silent depen| +66442|147064|34571|1|25|27776.50|0.06|0.04|R|F|1992-07-23|1992-07-08|1992-08-15|COLLECT COD|AIR|lyly. furiously ironic cour| +66443|358782|46304|1|50|92038.50|0.00|0.05|R|F|1994-03-09|1994-02-06|1994-03-24|DELIVER IN PERSON|TRUCK|y regular deposits. fluf| +66444|157898|20402|1|3|5867.67|0.06|0.01|N|O|1998-01-05|1998-02-28|1998-01-14|DELIVER IN PERSON|SHIP|y final packages integrate against| +66444|784010|34011|2|15|16409.70|0.07|0.04|N|O|1998-03-06|1998-01-17|1998-03-16|TAKE BACK RETURN|FOB| quietly. fluffily silent ideas | +66444|841975|29524|3|48|92012.64|0.01|0.01|N|O|1998-01-13|1998-01-23|1998-01-16|TAKE BACK RETURN|MAIL|nto beans use along the r| +66444|57823|20325|4|24|42739.68|0.10|0.06|N|O|1998-01-30|1998-02-28|1998-02-03|TAKE BACK RETURN|MAIL|ckly regular packages. unusual, | +66444|823719|23720|5|17|27925.39|0.01|0.06|N|O|1997-12-27|1998-01-12|1998-01-17|DELIVER IN PERSON|SHIP| regular deposits abo| +66444|240951|3456|6|28|52974.32|0.07|0.03|N|O|1998-02-14|1998-01-12|1998-02-24|COLLECT COD|FOB|along the carefully ironic | +66445|996730|21769|1|13|23746.97|0.03|0.03|N|O|1995-12-17|1995-11-21|1996-01-05|COLLECT COD|REG AIR| slyly silent packages. blithely even pin| +66445|40113|27614|2|29|30540.19|0.07|0.04|N|O|1995-12-28|1995-11-29|1996-01-14|TAKE BACK RETURN|TRUCK|r accounts use furiousl| +66446|934141|34142|1|45|52879.50|0.07|0.06|A|F|1993-05-15|1993-03-05|1993-05-18|NONE|SHIP|ut the furiousl| +66446|91129|3631|2|21|23522.52|0.07|0.02|R|F|1993-03-06|1993-03-11|1993-04-01|TAKE BACK RETURN|RAIL|en deposits. dar| +66446|598950|48951|3|47|96299.71|0.00|0.06|A|F|1993-01-30|1993-04-06|1993-02-19|TAKE BACK RETURN|SHIP|ckages nod carefully fluffi| +66446|542239|4750|4|18|23061.78|0.04|0.06|A|F|1993-03-28|1993-03-21|1993-04-14|COLLECT COD|SHIP|counts! ironic request| +66447|845605|33154|1|3|4651.68|0.10|0.01|N|O|1998-08-17|1998-08-02|1998-08-19|DELIVER IN PERSON|AIR|c, ironic deposits wake| +66472|910454|22973|1|22|32217.02|0.01|0.05|R|F|1994-10-21|1994-12-09|1994-10-27|DELIVER IN PERSON|AIR|lar accounts. even, even packages against| +66472|991493|41494|2|4|6337.80|0.07|0.03|A|F|1994-10-21|1994-12-28|1994-10-24|NONE|TRUCK|gular theodolites sleep sly| +66472|12179|49680|3|6|6547.02|0.04|0.05|R|F|1994-11-18|1994-11-22|1994-12-05|NONE|RAIL| foxes. fluffily even| +66472|689860|14887|4|39|72143.37|0.06|0.03|R|F|1995-01-31|1994-12-21|1995-02-12|TAKE BACK RETURN|REG AIR|usly ironic pin| +66472|474260|24261|5|33|40729.92|0.02|0.04|A|F|1995-01-07|1994-12-31|1995-01-30|COLLECT COD|MAIL|ts. furiously final theodolites cajole fu| +66472|879208|29209|6|28|33240.48|0.08|0.05|A|F|1995-01-22|1994-12-15|1995-02-08|NONE|SHIP| across the instruction| +66472|843110|30659|7|18|18955.26|0.04|0.02|R|F|1995-02-05|1994-11-30|1995-02-11|COLLECT COD|FOB| regular foxes may poach bl| +66473|133072|33073|1|18|19891.26|0.03|0.04|N|O|1996-06-03|1996-07-18|1996-06-26|NONE|AIR|ily silent deposits detect. blithely| +66473|532450|19981|2|11|16306.73|0.08|0.06|N|O|1996-05-04|1996-07-26|1996-05-06|COLLECT COD|FOB|y ironic packag| +66473|870763|45798|3|35|60680.20|0.06|0.04|N|O|1996-08-07|1996-07-23|1996-08-19|TAKE BACK RETURN|TRUCK|luffily aroun| +66473|910291|35328|4|41|53351.25|0.04|0.01|N|O|1996-06-13|1996-06-18|1996-06-22|DELIVER IN PERSON|REG AIR|es nag quickly. bravely pending instruct| +66473|248311|35824|5|12|15111.60|0.05|0.03|N|O|1996-08-04|1996-07-25|1996-08-13|DELIVER IN PERSON|RAIL|sits above the fluffily regular epitaphs h| +66473|359746|34761|6|33|59589.09|0.09|0.07|N|O|1996-07-09|1996-07-03|1996-07-21|NONE|REG AIR|carefully; furiously r| +66474|309770|47289|1|37|65851.12|0.04|0.05|A|F|1993-12-05|1993-11-08|1993-12-20|TAKE BACK RETURN|FOB|yly unusual asymptotes sleep furiou| +66474|298659|23670|2|34|56359.76|0.08|0.01|R|F|1993-12-31|1993-11-26|1994-01-28|TAKE BACK RETURN|MAIL|al requests i| +66474|553506|16018|3|45|70176.60|0.10|0.03|R|F|1994-01-11|1993-12-15|1994-01-30|NONE|AIR|to the foxes. carefully unusual d| +66474|759866|47412|4|34|65478.22|0.10|0.02|R|F|1993-12-11|1993-12-11|1994-01-04|TAKE BACK RETURN|REG AIR|fully according | +66474|54864|29867|5|45|81848.70|0.04|0.02|A|F|1993-12-29|1993-11-09|1994-01-16|NONE|REG AIR|ess deposits. pending, bold the| +66474|84036|21540|6|50|51001.50|0.10|0.08|R|F|1993-10-16|1993-11-26|1993-11-09|DELIVER IN PERSON|MAIL| regular patterns nod furiou| +66474|376799|14321|7|9|16882.02|0.09|0.08|R|F|1993-10-18|1993-11-20|1993-11-12|COLLECT COD|SHIP| the quickly even deposits. a| +66475|852641|2642|1|36|57369.60|0.01|0.06|A|F|1994-04-12|1994-04-02|1994-05-02|DELIVER IN PERSON|RAIL|y regular | +66475|324255|36762|2|12|15350.88|0.01|0.00|A|F|1994-03-09|1994-04-07|1994-03-15|COLLECT COD|FOB|y bold dependen| +66475|737765|37766|3|1|1802.73|0.07|0.05|A|F|1994-05-08|1994-04-18|1994-06-07|TAKE BACK RETURN|MAIL|ironic deposits about the f| +66475|612170|12171|4|28|30299.92|0.03|0.03|R|F|1994-04-23|1994-04-25|1994-05-06|TAKE BACK RETURN|TRUCK|ess, special ideas are against| +66475|728268|15811|5|43|55737.89|0.09|0.08|R|F|1994-05-21|1994-05-12|1994-06-09|COLLECT COD|AIR| furiously. pending pinto beans | +66475|987241|37242|6|30|39846.00|0.05|0.06|A|F|1994-06-13|1994-04-24|1994-06-26|TAKE BACK RETURN|TRUCK|ully silent instructio| +66476|802106|14623|1|11|11088.66|0.02|0.02|A|F|1993-10-04|1993-10-30|1993-10-13|NONE|SHIP|e blithely about the brave ide| +66476|981368|18926|2|44|63770.08|0.09|0.01|R|F|1993-11-09|1993-09-29|1993-11-23|TAKE BACK RETURN|RAIL|. fluffily q| +66476|838338|38339|3|5|6381.45|0.06|0.04|R|F|1993-11-09|1993-11-15|1993-11-28|TAKE BACK RETURN|RAIL|warthogs. special, even waters | +66477|2310|27311|1|21|25458.51|0.03|0.07|A|F|1992-07-12|1992-08-02|1992-07-24|COLLECT COD|RAIL|. quickly even requests thr| +66477|816053|28570|2|10|9690.10|0.00|0.06|A|F|1992-05-24|1992-07-19|1992-06-23|COLLECT COD|SHIP|nusual foxes wake slyly. even, i| +66478|830809|43326|1|48|83508.48|0.08|0.07|R|F|1993-01-06|1993-03-05|1993-01-22|COLLECT COD|MAIL|eposits sleep | +66479|567978|43001|1|12|24551.40|0.00|0.02|A|F|1993-06-25|1993-04-30|1993-07-04|COLLECT COD|AIR|g blithely accounts. ironic pl| +66479|998249|48250|2|27|36374.40|0.03|0.02|R|F|1993-05-23|1993-05-07|1993-06-04|DELIVER IN PERSON|REG AIR|s cajole blithely.| +66479|563875|13876|3|26|50410.10|0.02|0.05|R|F|1993-04-08|1993-06-03|1993-04-25|TAKE BACK RETURN|MAIL|efully even requests. stealthily e| +66479|42739|5240|4|38|63905.74|0.04|0.06|R|F|1993-05-16|1993-05-23|1993-05-31|NONE|RAIL|ss pinto bea| +66504|313220|25727|1|37|45628.77|0.05|0.03|N|O|1997-01-28|1997-01-24|1997-02-25|TAKE BACK RETURN|AIR|ld haggle bli| +66504|282859|7870|2|45|82882.80|0.02|0.05|N|O|1996-11-03|1997-01-16|1996-11-26|DELIVER IN PERSON|TRUCK|packages. carefully p| +66504|6745|44246|3|33|54507.42|0.09|0.05|N|O|1997-02-25|1996-12-14|1997-03-19|NONE|TRUCK|cajole after the fu| +66504|361077|23585|4|19|21623.14|0.06|0.05|N|O|1996-12-15|1996-12-01|1997-01-14|COLLECT COD|RAIL|wake carefully about the sly| +66504|618511|43536|5|9|12865.32|0.06|0.04|N|O|1997-01-17|1996-12-02|1997-02-07|NONE|FOB|le furiously slyly unusual packages. | +66505|181366|43870|1|5|7236.80|0.05|0.01|N|O|1996-04-21|1996-07-04|1996-04-27|NONE|REG AIR| around the even dolphins. bl| +66505|210206|35215|2|23|25672.37|0.10|0.05|N|O|1996-07-22|1996-05-12|1996-07-31|COLLECT COD|REG AIR|up the carefully reg| +66505|931738|19293|3|1|1769.69|0.09|0.06|N|O|1996-04-14|1996-05-20|1996-04-30|NONE|SHIP| furiously among | +66505|706939|31968|4|31|60322.90|0.04|0.05|N|O|1996-04-28|1996-05-19|1996-05-12|DELIVER IN PERSON|AIR|lyly final reques| +66505|507527|45058|5|10|15345.00|0.09|0.04|N|O|1996-06-07|1996-05-25|1996-07-01|DELIVER IN PERSON|MAIL|its doubt carefully. quickly iron| +66506|518884|18885|1|22|41862.92|0.10|0.04|N|O|1998-08-17|1998-08-04|1998-09-13|NONE|AIR|ily blithely p| +66506|879626|17178|2|39|62617.62|0.05|0.08|N|O|1998-07-23|1998-08-03|1998-08-15|NONE|AIR|atelets. specia| +66506|873224|10776|3|37|44295.66|0.10|0.07|N|O|1998-07-20|1998-07-09|1998-08-05|NONE|TRUCK|eve even ideas.| +66506|266649|4165|4|18|29081.34|0.02|0.06|N|O|1998-07-09|1998-08-11|1998-08-05|NONE|FOB|he quickly unusual deposit| +66506|569164|31676|5|10|12331.40|0.01|0.06|N|O|1998-09-12|1998-08-07|1998-09-18|DELIVER IN PERSON|TRUCK|ntegrate carefully.| +66506|938265|38266|6|3|3909.66|0.05|0.08|N|O|1998-09-14|1998-07-12|1998-09-24|DELIVER IN PERSON|TRUCK| final theodolites cajole flu| +66506|408969|21478|7|24|45070.56|0.04|0.00|N|O|1998-07-26|1998-08-03|1998-07-30|TAKE BACK RETURN|FOB|ly final pinto beans. requests use qui| +66507|527022|39533|1|24|25176.00|0.01|0.00|R|F|1994-03-10|1994-03-12|1994-03-15|TAKE BACK RETURN|FOB|s; requests cajole furiously always bold| +66507|656707|6708|2|45|74865.15|0.10|0.05|R|F|1994-04-17|1994-03-22|1994-04-22|TAKE BACK RETURN|SHIP|cross the packages| +66507|266979|16980|3|6|11675.76|0.10|0.00|R|F|1994-02-09|1994-03-05|1994-03-04|NONE|SHIP|nusual instructions: regular, reg| +66507|99277|24280|4|12|15315.24|0.08|0.03|R|F|1994-02-22|1994-02-01|1994-03-10|NONE|RAIL|s according to the furiously even theo| +66507|539367|39368|5|31|43596.54|0.06|0.08|A|F|1994-03-08|1994-02-10|1994-03-17|COLLECT COD|MAIL|ag accordi| +66508|986662|49182|1|20|34972.40|0.03|0.08|A|F|1994-02-13|1994-03-21|1994-02-20|DELIVER IN PERSON|AIR|. slyly ironic packages slee| +66509|436541|36542|1|1|1477.52|0.04|0.03|N|O|1997-04-06|1997-05-18|1997-04-19|NONE|AIR|ly unusual platelets believ| +66509|938657|38658|2|22|37303.42|0.10|0.05|N|O|1997-03-19|1997-06-03|1997-04-05|NONE|RAIL|ely regular dolp| +66509|1605|1606|3|37|55744.20|0.05|0.07|N|O|1997-03-25|1997-06-06|1997-04-11|TAKE BACK RETURN|AIR| wake unusual,| +66510|437481|49990|1|36|51064.56|0.04|0.01|R|F|1995-04-22|1995-06-15|1995-04-25|NONE|REG AIR|es sleep slyly regular requests. fluf| +66510|726635|26636|2|5|8308.00|0.06|0.02|R|F|1995-04-21|1995-07-14|1995-05-02|COLLECT COD|TRUCK|kages. slyly unusual accounts wa| +66511|600878|38415|1|48|85384.32|0.04|0.03|A|F|1992-09-06|1992-09-05|1992-10-01|DELIVER IN PERSON|FOB|ckages. blithely ironic in| +66511|942679|42680|2|42|72308.46|0.08|0.05|A|F|1992-10-10|1992-10-18|1992-10-14|COLLECT COD|AIR|the carefully express ideas. deposits n| +66511|604436|29461|3|27|36190.80|0.08|0.08|R|F|1992-10-05|1992-10-08|1992-10-09|COLLECT COD|MAIL|quickly fluf| +66536|228003|40508|1|40|37239.60|0.05|0.01|N|O|1996-07-04|1996-06-14|1996-07-16|TAKE BACK RETURN|FOB|y special deposits! slyl| +66536|29822|4823|2|45|78831.90|0.08|0.06|N|O|1996-07-19|1996-06-28|1996-08-13|COLLECT COD|TRUCK|. slyly regular waters| +66537|334557|47064|1|8|12732.32|0.05|0.01|R|F|1994-08-07|1994-09-02|1994-08-23|NONE|MAIL|ts. permanently bold foxes | +66537|887013|24565|2|33|32999.01|0.03|0.04|A|F|1994-09-08|1994-08-23|1994-09-23|DELIVER IN PERSON|SHIP|lly. slyly regular deposits nag. f| +66537|12550|37551|3|39|57039.45|0.01|0.05|R|F|1994-08-16|1994-08-06|1994-09-09|DELIVER IN PERSON|RAIL|ites are carefu| +66537|912395|24914|4|44|61923.40|0.06|0.05|R|F|1994-10-05|1994-07-21|1994-10-23|NONE|AIR|into beans. final theodolites about the flu| +66537|618092|5629|5|6|6060.36|0.07|0.07|A|F|1994-06-30|1994-09-01|1994-07-20|DELIVER IN PERSON|TRUCK|fluffily regular requests nag ca| +66538|978823|41343|1|14|26624.92|0.06|0.02|A|F|1993-05-18|1993-04-24|1993-06-04|DELIVER IN PERSON|MAIL|express Tiresias. bold pa| +66538|69601|32103|2|50|78530.00|0.05|0.03|R|F|1993-04-30|1993-04-18|1993-05-06|DELIVER IN PERSON|AIR|g theodolites | +66538|774911|12457|3|15|29788.20|0.05|0.04|R|F|1993-06-18|1993-04-19|1993-07-01|NONE|REG AIR| against the furiously final depen| +66538|917325|4880|4|48|64429.44|0.06|0.03|A|F|1993-04-23|1993-04-13|1993-04-24|COLLECT COD|MAIL|ial ideas.| +66538|479589|17117|5|11|17254.16|0.06|0.01|A|F|1993-03-30|1993-05-25|1993-04-07|TAKE BACK RETURN|AIR|ounts! unusual foxes sleep furious| +66538|444601|44602|6|32|49458.56|0.05|0.03|R|F|1993-04-02|1993-06-04|1993-04-13|DELIVER IN PERSON|RAIL|usly express packa| +66538|393660|31182|7|43|75406.95|0.09|0.05|R|F|1993-04-21|1993-05-21|1993-05-19|NONE|TRUCK|ss dolphins. regular deposits| +66539|242959|42960|1|3|5705.82|0.06|0.01|R|F|1995-04-04|1995-02-12|1995-05-04|TAKE BACK RETURN|TRUCK| detect quickly even foxes; spec| +66539|409289|9290|2|21|25163.46|0.02|0.02|A|F|1995-04-29|1995-02-02|1995-05-16|NONE|MAIL|e ironic packages. blithe| +66539|905139|17658|3|30|34322.70|0.01|0.07|A|F|1995-01-18|1995-02-25|1995-01-20|COLLECT COD|TRUCK|usly bold foxes. blithe| +66539|662425|12426|4|2|2774.78|0.00|0.08|R|F|1995-01-31|1995-03-22|1995-02-18|TAKE BACK RETURN|RAIL| use regular requests. requests cajole re| +66539|376679|14201|5|50|87783.00|0.10|0.04|R|F|1995-02-02|1995-03-27|1995-02-08|COLLECT COD|MAIL|efully even ideas. packages detect | +66539|838282|13315|6|34|41488.16|0.01|0.02|A|F|1995-04-09|1995-03-24|1995-05-08|TAKE BACK RETURN|RAIL|s dependencies. carefully fi| +66539|996804|21843|7|29|55122.04|0.05|0.07|A|F|1995-03-27|1995-02-04|1995-04-04|COLLECT COD|RAIL|eep carefully blithely ironi| +66540|284333|34334|1|45|59279.40|0.09|0.07|N|O|1995-07-14|1995-09-12|1995-07-28|NONE|AIR|t requests are after the| +66540|782565|20111|2|46|75786.38|0.07|0.07|N|O|1995-08-30|1995-08-31|1995-09-07|DELIVER IN PERSON|FOB|foxes about the blithely special| +66540|563935|1469|3|12|23986.92|0.09|0.07|N|O|1995-07-27|1995-08-21|1995-08-01|TAKE BACK RETURN|REG AIR|ular pinto beans are carefully reg| +66541|646087|46088|1|23|23760.15|0.01|0.01|A|F|1993-11-15|1994-01-08|1993-12-10|COLLECT COD|RAIL|gle blithely quickly special deposits. bli| +66541|782957|20503|2|13|26518.96|0.05|0.01|R|F|1993-11-30|1993-12-29|1993-12-05|COLLECT COD|TRUCK|quickly unusual, ironi| +66541|149449|24454|3|35|52445.40|0.03|0.03|A|F|1994-01-22|1994-01-13|1994-01-31|DELIVER IN PERSON|MAIL|furiously regular requests| +66541|787813|12844|4|7|13305.46|0.03|0.03|A|F|1993-12-17|1994-01-08|1994-01-11|TAKE BACK RETURN|TRUCK| accounts across the even | +66541|764205|14206|5|46|58381.82|0.06|0.05|A|F|1994-02-03|1993-12-22|1994-03-02|DELIVER IN PERSON|TRUCK| sleep care| +66541|993221|30779|6|43|56509.74|0.08|0.06|R|F|1993-11-05|1994-01-04|1993-11-16|NONE|AIR|ckey players. carefully final asympt| +66542|291342|28858|1|21|27999.93|0.09|0.05|N|O|1996-11-23|1997-01-25|1996-12-22|DELIVER IN PERSON|FOB|s. ironic, permanent dolphins haggle o| +66542|569360|44383|2|31|44309.54|0.10|0.04|N|O|1996-12-17|1996-12-05|1997-01-15|TAKE BACK RETURN|TRUCK|ep slyly permanently bold packages. regu| +66542|223188|23189|3|47|52224.99|0.03|0.03|N|O|1996-11-06|1996-12-15|1996-11-11|DELIVER IN PERSON|RAIL|l foxes: furious| +66543|743759|18788|1|45|81122.40|0.07|0.04|R|F|1993-09-30|1993-09-26|1993-10-20|COLLECT COD|MAIL|counts wake according to the accoun| +66568|278203|40709|1|9|10630.71|0.10|0.04|N|O|1997-10-07|1997-09-29|1997-10-24|COLLECT COD|TRUCK|equests. furiously ironic pinto beans nag b| +66568|749087|11602|2|43|48850.15|0.02|0.05|N|O|1997-09-08|1997-08-11|1997-09-10|TAKE BACK RETURN|MAIL| cajole carefully slyly p| +66569|319461|6980|1|38|56257.10|0.08|0.07|R|F|1993-02-26|1993-01-23|1993-02-27|DELIVER IN PERSON|RAIL|al deposits haggle blithely along the reque| +66570|429449|16974|1|36|49623.12|0.09|0.07|N|O|1996-08-19|1996-08-12|1996-08-20|DELIVER IN PERSON|RAIL|rets nag slyly express pac| +66570|741699|4214|2|8|13925.28|0.03|0.05|N|O|1996-08-28|1996-09-07|1996-09-16|COLLECT COD|RAIL| pending theodolites. furiously regular d| +66570|732147|32148|3|27|31835.97|0.10|0.06|N|O|1996-09-17|1996-08-09|1996-10-01|COLLECT COD|TRUCK|eposits use against| +66570|184567|34568|4|11|18167.16|0.02|0.06|N|O|1996-09-18|1996-08-16|1996-09-19|DELIVER IN PERSON|MAIL|sts print regular instructions-- carefull| +66571|793815|43816|1|15|28631.70|0.08|0.04|N|O|1995-10-15|1995-10-17|1995-10-27|COLLECT COD|TRUCK|nal theodolites boost furio| +66571|645135|32672|2|31|33483.10|0.01|0.06|N|O|1995-10-22|1995-10-21|1995-11-10|NONE|AIR| slyly ironic ideas. deposits| +66571|771700|21701|3|43|76181.81|0.05|0.05|N|O|1996-01-08|1995-12-10|1996-02-07|TAKE BACK RETURN|TRUCK|sly at the furi| +66571|958626|21146|4|44|74121.52|0.06|0.08|N|O|1995-10-12|1995-11-18|1995-10-30|COLLECT COD|FOB|inal accounts before the slyly| +66571|619218|44243|5|18|20469.24|0.05|0.02|N|O|1995-11-06|1995-12-07|1995-11-14|DELIVER IN PERSON|AIR|ent accounts sleep blithely. bl| +66572|376569|1584|1|32|52657.60|0.04|0.04|A|F|1994-06-03|1994-06-10|1994-06-04|DELIVER IN PERSON|AIR|ep. carefully unusual requests accor| +66572|992088|4608|2|13|15340.52|0.02|0.03|R|F|1994-07-04|1994-05-24|1994-07-31|COLLECT COD|SHIP|carefully regular,| +66572|21808|9309|3|37|64002.60|0.01|0.08|A|F|1994-05-26|1994-05-27|1994-06-15|NONE|TRUCK|inal packages can affix ironically| +66573|611937|11938|1|49|90596.10|0.10|0.03|N|O|1997-12-26|1997-11-17|1998-01-25|DELIVER IN PERSON|RAIL|es! quickly even platelets according to | +66574|410765|23274|1|12|20108.88|0.10|0.07|A|F|1994-11-15|1994-11-28|1994-11-16|COLLECT COD|FOB| carefully | +66574|714283|39312|2|21|27242.25|0.04|0.01|R|F|1994-12-09|1994-11-03|1995-01-06|DELIVER IN PERSON|FOB|onic, final deposits wake| +66574|953185|15705|3|32|39620.48|0.07|0.08|A|F|1994-11-25|1994-11-14|1994-12-01|COLLECT COD|AIR|ions. final instructions u| +66574|178534|3541|4|26|41925.78|0.00|0.02|R|F|1994-12-01|1994-12-02|1994-12-08|NONE|MAIL|s. accounts are ironic packa| +66574|613422|25935|5|36|48074.04|0.07|0.05|R|F|1994-09-08|1994-11-12|1994-09-30|DELIVER IN PERSON|RAIL|le furiously according to| +66574|771669|34185|6|40|69625.20|0.06|0.02|A|F|1994-12-10|1994-10-31|1994-12-11|TAKE BACK RETURN|SHIP|dolites nag idly slyly even accounts| +66575|534422|46933|1|9|13107.60|0.05|0.04|N|O|1996-06-19|1996-07-17|1996-07-09|DELIVER IN PERSON|RAIL|arefully unusual theodolites use blit| +66575|21119|46120|2|11|11441.21|0.02|0.03|N|O|1996-07-27|1996-07-29|1996-08-09|NONE|FOB|carefully regular depende| +66575|939511|39512|3|25|38761.75|0.07|0.08|N|O|1996-06-26|1996-06-28|1996-07-10|DELIVER IN PERSON|MAIL| foxes are unusual courts: instru| +66575|357271|19779|4|1|1328.26|0.10|0.00|N|O|1996-07-15|1996-08-24|1996-07-22|COLLECT COD|MAIL|cial foxes are quickly furiously | +66575|648438|23463|5|50|69320.00|0.02|0.01|N|O|1996-07-20|1996-08-02|1996-07-31|DELIVER IN PERSON|RAIL|tions boost furiously above the furious| +66575|285859|35860|6|44|81172.96|0.07|0.06|N|O|1996-06-21|1996-08-02|1996-06-28|COLLECT COD|REG AIR|ld braids wake accordin| +66575|428239|3256|7|13|15173.73|0.04|0.05|N|O|1996-09-16|1996-07-29|1996-10-03|NONE|RAIL| regular deposits. fluffily stealthy f| +66600|402719|27736|1|19|30812.11|0.09|0.08|A|F|1995-01-31|1995-02-12|1995-02-05|NONE|TRUCK|nag carefully across t| +66600|485227|10246|2|24|29092.80|0.01|0.07|A|F|1995-03-03|1995-04-03|1995-03-28|COLLECT COD|FOB|sleep after the express hoc| +66600|207774|20279|3|44|73997.44|0.07|0.02|R|F|1995-03-14|1995-02-20|1995-03-21|COLLECT COD|SHIP| quickly slyly even request| +66600|56215|18717|4|13|15225.73|0.04|0.02|R|F|1995-02-12|1995-03-09|1995-02-14|TAKE BACK RETURN|REG AIR|ter the quickly unusual dependen| +66600|804713|29746|5|39|63089.13|0.05|0.04|R|F|1995-02-25|1995-02-10|1995-03-13|NONE|SHIP|ending ideas boost. blithely iron| +66600|808793|21310|6|34|57859.50|0.01|0.07|R|F|1995-01-10|1995-02-13|1995-01-19|DELIVER IN PERSON|MAIL| furiously. quickly regular requests bo| +66601|311691|49210|1|4|6810.72|0.10|0.07|R|F|1994-02-03|1994-01-27|1994-02-06|TAKE BACK RETURN|TRUCK|kly regular deposits according to the fin| +66602|178014|3021|1|13|14196.13|0.01|0.05|N|O|1996-07-02|1996-09-02|1996-07-04|DELIVER IN PERSON|RAIL|ic deposits ha| +66602|872173|47208|2|24|27483.12|0.06|0.04|N|O|1996-07-12|1996-08-16|1996-07-13|NONE|MAIL|cross the caref| +66603|366555|41570|1|32|51889.28|0.07|0.08|A|F|1993-12-12|1993-11-23|1994-01-04|NONE|TRUCK|accounts wake final packages. regular| +66603|682762|32763|2|17|29660.41|0.05|0.01|A|F|1993-11-07|1993-12-13|1993-12-06|TAKE BACK RETURN|REG AIR|arthogs after the quickly bold in| +66603|168070|18071|3|33|37556.31|0.04|0.01|A|F|1993-11-18|1993-12-10|1993-11-22|TAKE BACK RETURN|FOB|ins cajole quickly. pending deposi| +66603|736841|11870|4|29|54456.49|0.10|0.07|A|F|1993-12-23|1993-12-02|1994-01-13|DELIVER IN PERSON|AIR|quests wake qu| +66603|82877|32878|5|43|79974.41|0.04|0.08|R|F|1993-12-02|1993-11-29|1993-12-18|TAKE BACK RETURN|AIR|uffily silent asymptotes above the c| +66603|897514|47515|6|19|28717.93|0.08|0.01|R|F|1994-02-07|1993-12-19|1994-02-26|NONE|MAIL|usly regular requests nag quickly. unus| +66604|569684|44707|1|29|50856.14|0.03|0.02|N|O|1995-08-08|1995-09-29|1995-08-21|TAKE BACK RETURN|REG AIR|ct furiously quick accounts. dari| +66604|664917|14918|2|44|82802.72|0.03|0.08|N|O|1995-08-11|1995-09-19|1995-08-28|COLLECT COD|REG AIR|ously ironic deposits: pending, spe| +66604|251957|14463|3|29|55359.26|0.05|0.03|N|O|1995-08-25|1995-10-07|1995-08-29|COLLECT COD|REG AIR|tes. regular| +66604|640640|40641|4|50|79030.50|0.04|0.02|N|O|1995-08-15|1995-10-02|1995-09-13|COLLECT COD|FOB|re blithely across the | +66604|230606|43111|5|12|18439.08|0.02|0.05|N|O|1995-09-04|1995-09-26|1995-09-16|NONE|FOB|e blithely express ideas. quickly fina| +66604|785245|10276|6|22|29264.62|0.07|0.05|N|O|1995-09-24|1995-09-24|1995-10-11|COLLECT COD|FOB|sits nag ab| +66604|598727|36261|7|45|82156.50|0.10|0.08|N|O|1995-08-07|1995-10-13|1995-08-15|NONE|REG AIR|ruthlessly. regular account| +66605|791874|16905|1|16|31453.44|0.08|0.03|R|F|1993-02-20|1993-04-12|1993-03-08|COLLECT COD|AIR|asymptotes sleep even foxes. quickly reg| +66605|12611|37612|2|4|6094.44|0.00|0.07|A|F|1993-02-14|1993-04-26|1993-02-28|TAKE BACK RETURN|SHIP|g accounts. ideas affix carefu| +66605|940232|27787|3|18|22899.42|0.04|0.00|R|F|1993-02-23|1993-04-27|1993-03-04|DELIVER IN PERSON|REG AIR|ggle quickly even requests.| +66605|475809|828|4|42|74960.76|0.08|0.02|A|F|1993-05-13|1993-04-16|1993-05-21|COLLECT COD|MAIL|ven, unusual instructi| +66606|979541|17099|1|9|14584.50|0.09|0.02|R|F|1992-06-19|1992-08-09|1992-07-18|TAKE BACK RETURN|RAIL|uriously qu| +66606|144358|19363|2|47|65910.45|0.05|0.06|A|F|1992-05-21|1992-06-29|1992-06-08|DELIVER IN PERSON|FOB|foxes. furiously regu| +66606|220592|33097|3|25|37814.50|0.07|0.07|R|F|1992-06-23|1992-08-05|1992-07-01|DELIVER IN PERSON|REG AIR|ies nag carefully. slyly quick pack| +66606|476568|14096|4|29|44791.66|0.05|0.04|A|F|1992-05-29|1992-07-20|1992-06-05|TAKE BACK RETURN|TRUCK| packages. orbits hagg| +66606|662624|12625|5|7|11106.13|0.03|0.08|A|F|1992-07-29|1992-07-04|1992-08-11|DELIVER IN PERSON|SHIP|posits run furiously among t| +66606|721497|9040|6|41|62256.86|0.08|0.00|R|F|1992-07-14|1992-07-30|1992-08-06|NONE|REG AIR|inal, even ideas: furiously even cour| +66606|195103|32613|7|10|11981.00|0.03|0.01|A|F|1992-06-09|1992-07-18|1992-06-14|NONE|FOB|iously pending accounts haggle furiously. | +66607|88194|696|1|34|40194.46|0.07|0.07|R|F|1995-02-05|1995-01-14|1995-02-19|NONE|AIR|silent asymptot| +66607|260415|10416|2|17|23381.80|0.05|0.06|R|F|1995-04-09|1995-03-06|1995-05-08|DELIVER IN PERSON|TRUCK|gular excuses. sl| +66607|778956|16502|3|24|48838.08|0.08|0.05|A|F|1994-12-19|1995-03-11|1995-01-07|NONE|MAIL|furiously regular dependencies run above t| +66607|903070|15589|4|47|50432.41|0.00|0.08|R|F|1995-03-03|1995-02-04|1995-03-29|DELIVER IN PERSON|SHIP|wake daringly blithel| +66607|886893|24445|5|32|60155.20|0.08|0.07|R|F|1995-01-11|1995-02-02|1995-02-06|TAKE BACK RETURN|MAIL|heodolites about the ironic, reg| +66607|999600|12120|6|8|13596.48|0.07|0.07|R|F|1995-01-04|1995-02-18|1995-01-19|NONE|RAIL|deposits. regular requests sl| +66632|173618|11128|1|29|49056.69|0.06|0.03|A|F|1992-10-26|1992-11-09|1992-11-02|DELIVER IN PERSON|RAIL|dependencies. | +66632|996961|34519|2|23|47332.16|0.05|0.07|A|F|1992-11-17|1992-09-28|1992-12-14|TAKE BACK RETURN|REG AIR|even packages promise among the slyly pe| +66632|913219|13220|3|35|43125.95|0.04|0.08|A|F|1992-09-03|1992-10-26|1992-09-11|TAKE BACK RETURN|TRUCK|aggle: regular dinos hinde| +66632|457140|19650|4|23|25233.76|0.00|0.04|A|F|1992-12-10|1992-11-04|1992-12-28|COLLECT COD|FOB| foxes cajole. pen| +66632|147266|22271|5|37|48590.62|0.05|0.07|R|F|1992-11-23|1992-11-20|1992-12-06|COLLECT COD|REG AIR|al foxes. even foxes | +66632|90868|15871|6|6|11153.16|0.04|0.06|R|F|1992-11-11|1992-11-09|1992-12-09|TAKE BACK RETURN|RAIL|s breach after the pending| +66632|202448|39961|7|28|37812.04|0.05|0.07|A|F|1992-10-23|1992-11-06|1992-10-25|TAKE BACK RETURN|AIR|leep acros| +66633|532060|44571|1|18|19656.72|0.04|0.06|N|O|1995-09-18|1995-09-04|1995-10-08|COLLECT COD|REG AIR| furiously quickly bold ideas. | +66633|326768|26769|2|45|80763.75|0.07|0.08|N|O|1995-08-04|1995-09-18|1995-09-01|COLLECT COD|TRUCK|slyly unusual requests along| +66634|83945|46447|1|19|36649.86|0.04|0.08|R|F|1992-12-17|1993-01-08|1992-12-26|TAKE BACK RETURN|REG AIR|sts. close ins| +66635|957753|7754|1|7|12674.97|0.02|0.07|R|F|1992-10-08|1992-10-03|1992-11-03|COLLECT COD|RAIL|s use. final, even deposits| +66636|336283|23802|1|46|60686.42|0.10|0.08|N|O|1997-03-11|1997-03-08|1997-04-06|DELIVER IN PERSON|RAIL|iously even deposits. theodolites ca| +66636|895215|45216|2|14|16942.38|0.10|0.04|N|O|1997-02-23|1997-03-12|1997-03-07|COLLECT COD|AIR|ffix quickly about the care| +66636|878169|15721|3|46|52767.52|0.05|0.03|N|O|1997-03-12|1997-02-22|1997-04-06|DELIVER IN PERSON|RAIL|inal deposits sleep care| +66637|437483|25008|1|6|8522.76|0.06|0.05|N|O|1997-08-01|1997-09-28|1997-08-30|COLLECT COD|MAIL|nal packages | +66638|733466|21009|1|41|61476.63|0.00|0.03|N|O|1997-07-06|1997-05-25|1997-07-24|COLLECT COD|TRUCK|cording to the express asymptotes dazzl| +66638|355732|30747|2|5|8938.60|0.09|0.06|N|O|1997-06-05|1997-05-28|1997-07-01|NONE|FOB|ckages are fi| +66638|780730|30731|3|22|39835.40|0.01|0.03|N|O|1997-03-29|1997-05-29|1997-04-21|TAKE BACK RETURN|FOB|ng requests after the asympt| +66638|720026|7569|4|1|1045.99|0.01|0.00|N|O|1997-03-29|1997-06-17|1997-04-10|NONE|AIR|unts. regular pi| +66639|524082|36593|1|2|2212.12|0.05|0.01|N|O|1995-07-04|1995-06-08|1995-08-01|TAKE BACK RETURN|FOB|. thinly ironic requests | +66639|237748|25261|2|4|6742.92|0.02|0.05|N|F|1995-06-04|1995-06-15|1995-07-01|TAKE BACK RETURN|RAIL|l, regular packages. final, | +66639|821385|46418|3|8|10450.72|0.04|0.03|N|O|1995-06-27|1995-07-17|1995-07-10|TAKE BACK RETURN|SHIP| foxes. slyly reg| +66639|7518|32519|4|47|66998.97|0.06|0.06|N|O|1995-08-23|1995-07-09|1995-08-26|COLLECT COD|REG AIR| beans are| +66664|662279|24793|1|19|23583.56|0.01|0.05|N|O|1998-09-26|1998-09-14|1998-10-06|DELIVER IN PERSON|REG AIR|ons. slyly even escapades | +66664|919144|31663|2|11|12794.10|0.02|0.02|N|O|1998-10-06|1998-10-06|1998-10-11|DELIVER IN PERSON|FOB|yly about the careful| +66664|52041|27044|3|17|16881.68|0.10|0.03|N|O|1998-10-23|1998-09-20|1998-11-14|TAKE BACK RETURN|REG AIR|into beans wake among the acco| +66664|636398|23935|4|44|58711.84|0.07|0.02|N|O|1998-09-05|1998-09-12|1998-10-04|DELIVER IN PERSON|FOB|n requests | +66664|932358|19913|5|34|47270.54|0.00|0.05|N|O|1998-08-22|1998-09-12|1998-08-28|TAKE BACK RETURN|SHIP|ckly dolphins. enticing, final theodolites| +66665|714101|26616|1|25|27876.75|0.05|0.06|A|F|1995-03-28|1995-03-09|1995-04-05|DELIVER IN PERSON|TRUCK|ording to the silent courts na| +66665|881484|31485|2|16|23447.04|0.01|0.00|N|F|1995-05-30|1995-04-02|1995-06-18|DELIVER IN PERSON|MAIL|ring packages i| +66665|95906|8408|3|2|3803.80|0.10|0.06|A|F|1995-04-21|1995-03-18|1995-05-03|DELIVER IN PERSON|TRUCK|s affix quickly. slyly dogged packag| +66666|903103|3104|1|1|1106.06|0.05|0.07|R|F|1994-11-10|1994-12-10|1994-11-19|DELIVER IN PERSON|MAIL|etect carefully instru| +66666|436570|36571|2|21|31637.55|0.02|0.03|R|F|1994-12-25|1995-01-09|1994-12-28|TAKE BACK RETURN|SHIP|cuses. silent, even deposits engage idea| +66666|424612|24613|3|7|10756.13|0.01|0.06|R|F|1994-11-25|1995-01-20|1994-11-28|DELIVER IN PERSON|FOB|ut the quickly express | +66666|445946|33471|4|4|7567.68|0.04|0.04|R|F|1995-01-23|1995-01-28|1995-01-25|COLLECT COD|FOB|ackages boost quickly regular deposits.| +66666|6984|31985|5|39|73748.22|0.01|0.00|R|F|1995-02-06|1995-01-28|1995-02-12|TAKE BACK RETURN|RAIL|en instruction| +66667|588715|1227|1|49|88380.81|0.09|0.07|N|O|1998-07-30|1998-08-09|1998-08-27|COLLECT COD|REG AIR|cial depths. carefully final req| +66667|531791|19322|2|34|61974.18|0.05|0.03|N|O|1998-06-27|1998-08-09|1998-07-21|DELIVER IN PERSON|SHIP|eans dazzle carefully abo| +66667|794635|7151|3|32|55347.20|0.00|0.07|N|O|1998-07-03|1998-06-26|1998-07-13|NONE|TRUCK|fully furiously ironic i| +66667|423301|48318|4|41|50195.48|0.08|0.02|N|O|1998-05-20|1998-08-03|1998-06-15|COLLECT COD|FOB|leep. carefully th| +66668|262585|12586|1|39|60355.23|0.03|0.01|A|F|1993-05-16|1993-05-08|1993-05-20|TAKE BACK RETURN|AIR|s after the ironic requests use blithely | +66668|252365|39881|2|18|23712.30|0.00|0.06|A|F|1993-06-19|1993-05-22|1993-06-22|COLLECT COD|FOB|ly final deposits above the pack| +66668|482523|32524|3|28|42154.00|0.01|0.07|A|F|1993-04-09|1993-04-26|1993-05-07|COLLECT COD|TRUCK|ounts affix around the asymptotes. spec| +66668|748841|48842|4|11|20787.91|0.06|0.08|A|F|1993-03-26|1993-04-19|1993-03-31|DELIVER IN PERSON|SHIP|slyly even requests. carefully bold i| +66668|758355|33386|5|2|2826.64|0.08|0.04|A|F|1993-06-23|1993-05-14|1993-07-21|TAKE BACK RETURN|FOB|quests boost | +66668|671905|9445|6|18|33783.66|0.09|0.04|R|F|1993-05-01|1993-04-05|1993-05-05|DELIVER IN PERSON|AIR|lly furiously regular| +66668|705725|18240|7|3|5192.07|0.09|0.04|R|F|1993-05-18|1993-04-16|1993-06-05|DELIVER IN PERSON|AIR|riously final pinto beans. re| +66669|103931|16434|1|32|61917.76|0.10|0.03|N|O|1995-07-27|1995-06-15|1995-08-08|TAKE BACK RETURN|MAIL|s. special foxes above the flu| +66669|767129|4675|2|45|53824.05|0.00|0.03|A|F|1995-05-21|1995-06-03|1995-05-31|COLLECT COD|REG AIR|s notornis. express, bl| +66669|121078|46083|3|31|34071.17|0.00|0.00|N|O|1995-07-31|1995-05-14|1995-08-01|COLLECT COD|TRUCK| foxes. quickly even requests | +66669|948156|23193|4|9|10836.99|0.04|0.07|N|O|1995-06-28|1995-06-06|1995-07-26|TAKE BACK RETURN|REG AIR| excuses. even requests boost blithel| +66669|643141|43142|5|18|19513.98|0.03|0.01|N|F|1995-05-30|1995-06-25|1995-06-19|DELIVER IN PERSON|MAIL|regular accounts wake blithely. furiou| +66670|528618|28619|1|1|1646.59|0.09|0.06|N|O|1997-12-15|1998-02-04|1997-12-23|COLLECT COD|TRUCK| dependencies. final warhorses | +66670|470764|45783|2|38|65920.12|0.01|0.03|N|O|1997-12-16|1998-01-13|1998-01-04|NONE|FOB|ully unusual reques| +66670|119078|44083|3|24|26329.68|0.05|0.01|N|O|1998-02-04|1998-01-27|1998-02-27|DELIVER IN PERSON|MAIL|nts cajole. regular, ironic accounts cajol| +66670|338940|38941|4|23|45515.39|0.06|0.07|N|O|1998-04-04|1998-01-27|1998-04-24|COLLECT COD|REG AIR| blithely final instructions are regular| +66671|346033|21046|1|4|4316.08|0.10|0.06|N|O|1995-06-19|1995-05-19|1995-07-04|DELIVER IN PERSON|MAIL|usly unusual foxes use carefull| +66671|775201|12747|2|25|31904.25|0.06|0.08|N|O|1995-07-28|1995-05-26|1995-08-15|NONE|SHIP|cross the even d| +66696|532145|19676|1|8|9416.96|0.05|0.08|R|F|1994-08-03|1994-09-07|1994-08-07|TAKE BACK RETURN|MAIL|foxes doze regular, final i| +66696|755331|30362|2|44|60997.20|0.02|0.04|A|F|1994-09-17|1994-08-08|1994-09-30|TAKE BACK RETURN|AIR|ses run. careful| +66697|231832|6841|1|46|81135.72|0.09|0.00|N|O|1997-02-07|1997-02-27|1997-03-09|TAKE BACK RETURN|FOB|cial pinto beans. | +66697|391590|4098|2|24|40357.92|0.09|0.05|N|O|1997-03-25|1997-02-08|1997-04-09|DELIVER IN PERSON|RAIL|nusual ins| +66697|439565|39566|3|24|36108.96|0.05|0.01|N|O|1997-03-24|1997-01-05|1997-04-07|DELIVER IN PERSON|FOB| quickly slyly bol| +66697|757683|45229|4|38|66144.70|0.06|0.08|N|O|1996-12-09|1996-12-30|1996-12-19|NONE|RAIL|ckages above the e| +66697|373657|11179|5|49|84801.36|0.02|0.02|N|O|1996-12-25|1997-02-18|1997-01-17|TAKE BACK RETURN|RAIL|players cajole according to the regul| +66697|44770|44771|6|9|15432.93|0.04|0.00|N|O|1997-03-25|1997-02-07|1997-04-24|COLLECT COD|TRUCK|er the silent deposits. ruthless| +66697|437941|450|7|22|41336.24|0.08|0.01|N|O|1997-03-22|1997-01-11|1997-04-10|COLLECT COD|RAIL|slyly regular deposits sleep slowly| +66698|474232|24233|1|31|37392.51|0.10|0.07|N|O|1997-11-30|1997-12-05|1997-12-30|DELIVER IN PERSON|RAIL|onic accounts are furi| +66698|411176|36193|2|22|23917.30|0.07|0.08|N|O|1998-02-19|1997-12-19|1998-03-13|NONE|MAIL|ily unusual packag| +66698|620303|32816|3|46|56270.42|0.05|0.03|N|O|1998-01-03|1998-01-26|1998-01-12|DELIVER IN PERSON|TRUCK|tly final theodolites across the u| +66698|423594|11119|4|5|7587.85|0.04|0.01|N|O|1997-12-19|1997-12-14|1997-12-30|COLLECT COD|AIR|nto beans sleep furiously alongside of th| +66698|337260|24779|5|12|15567.00|0.05|0.00|N|O|1997-11-28|1997-12-04|1997-12-28|COLLECT COD|SHIP|blithely requests. carefully pending ac| +66699|886172|11207|1|44|50957.72|0.05|0.05|R|F|1994-03-12|1994-04-11|1994-03-23|NONE|FOB| pinto beans nag. carefully s| +66699|891948|4466|2|12|23278.80|0.10|0.03|R|F|1994-05-18|1994-04-04|1994-06-14|TAKE BACK RETURN|SHIP|. slyly regular requests mold caref| +66699|962743|301|3|48|86673.60|0.00|0.01|A|F|1994-06-06|1994-03-22|1994-06-23|NONE|AIR|xes alongside of the blithe| +66699|805207|17724|4|21|23355.36|0.02|0.08|A|F|1994-02-16|1994-04-21|1994-02-19|DELIVER IN PERSON|AIR|usual, bold instructions a| +66699|107421|44928|5|39|55708.38|0.03|0.01|A|F|1994-04-01|1994-03-18|1994-04-15|COLLECT COD|TRUCK| packages sleep sometimes furiously sile| +66699|415623|3148|6|13|20001.80|0.00|0.05|R|F|1994-06-01|1994-05-01|1994-06-11|NONE|TRUCK|ular ideas. slyly regular requests sleep f| +66699|370238|45253|7|47|61486.34|0.10|0.08|R|F|1994-02-18|1994-04-28|1994-02-27|DELIVER IN PERSON|FOB|cies wake carefully quick dinos. regular| +66700|573510|48533|1|44|69673.56|0.05|0.00|A|F|1993-01-06|1993-02-04|1993-01-30|COLLECT COD|FOB|ounts sleep blithel| +66700|971337|21338|2|4|5633.16|0.05|0.07|R|F|1993-02-04|1993-01-24|1993-02-23|COLLECT COD|FOB|ial requests. quickly pending acco| +66700|245837|8342|3|23|41004.86|0.04|0.04|R|F|1993-01-24|1993-01-13|1993-02-11|NONE|FOB|deposits haggle carefully carefull| +66700|777174|14720|4|46|57552.44|0.02|0.03|R|F|1992-12-25|1993-01-16|1993-01-16|TAKE BACK RETURN|RAIL|ent packages cajol| +66700|957323|32362|5|16|22084.48|0.06|0.00|R|F|1992-12-10|1993-02-14|1992-12-20|COLLECT COD|AIR|ag. final, special attainme| +66700|715019|40048|6|32|33087.36|0.03|0.00|R|F|1992-12-05|1993-01-24|1992-12-25|TAKE BACK RETURN|SHIP|y regular sautern| +66700|312682|201|7|10|16946.70|0.03|0.02|R|F|1993-04-02|1993-02-09|1993-04-22|TAKE BACK RETURN|TRUCK|s cajole evenly special frays. blithe| +66701|232023|32024|1|2|1910.02|0.00|0.08|R|F|1993-10-18|1993-10-18|1993-10-25|NONE|TRUCK|slyly fina| +66701|605496|30521|2|12|16817.52|0.01|0.02|A|F|1993-08-24|1993-09-23|1993-09-01|NONE|REG AIR|efully ironic foxes| +66701|563804|38827|3|40|74711.20|0.01|0.04|A|F|1993-08-13|1993-09-09|1993-09-10|DELIVER IN PERSON|MAIL|ites cajole furiously about| +66701|838848|26397|4|9|16081.20|0.01|0.06|R|F|1993-11-07|1993-10-19|1993-11-16|DELIVER IN PERSON|TRUCK|riously requests. c| +66702|392925|30447|1|30|60537.30|0.08|0.06|R|F|1993-08-07|1993-08-01|1993-09-06|COLLECT COD|FOB|riously final acc| +66702|886022|11057|2|48|48383.04|0.09|0.02|A|F|1993-07-18|1993-08-20|1993-07-25|NONE|RAIL|es. regular platelets boost| +66702|368656|6178|3|1|1724.64|0.03|0.01|R|F|1993-06-23|1993-07-27|1993-07-03|NONE|MAIL|cajole. carefully express packages are| +66703|957933|45491|1|19|37826.91|0.00|0.07|R|F|1993-09-10|1993-11-06|1993-09-16|TAKE BACK RETURN|REG AIR|tegrate furiously across the| +66703|965841|28361|2|11|20974.80|0.05|0.01|A|F|1993-09-29|1993-10-31|1993-10-03|DELIVER IN PERSON|SHIP|ng, ironic attainments. ste| +66703|876836|1871|3|7|12689.53|0.03|0.03|R|F|1993-12-14|1993-11-29|1994-01-02|DELIVER IN PERSON|FOB|ccounts. always permanent depe| +66703|970928|45967|4|47|93947.36|0.01|0.02|A|F|1993-11-23|1993-12-06|1993-12-09|DELIVER IN PERSON|SHIP|y blithely ironic requests. ir| +66703|375287|12809|5|8|10898.16|0.08|0.04|R|F|1993-09-28|1993-11-19|1993-10-18|DELIVER IN PERSON|RAIL|bove the ironic pinto| +66703|436021|11038|6|26|24882.00|0.10|0.08|A|F|1993-11-26|1993-11-16|1993-12-09|NONE|REG AIR|tes haggle blith| +66703|201917|1918|7|45|81850.50|0.05|0.08|A|F|1993-10-12|1993-10-29|1993-10-23|DELIVER IN PERSON|FOB|ic orbits sleep furiously. carefully b| +66728|606407|6408|1|22|28894.14|0.10|0.06|N|O|1997-02-23|1997-03-17|1997-03-12|NONE|MAIL|ites are slyly final, unusual asymptotes? p| +66728|872440|47475|2|10|14124.00|0.07|0.01|N|O|1997-04-14|1997-02-22|1997-04-15|NONE|MAIL|ackages wake quickly s| +66728|93203|5705|3|35|41867.00|0.05|0.01|N|O|1997-03-06|1997-03-15|1997-03-07|DELIVER IN PERSON|TRUCK|regular, regular asymptot| +66728|454171|29190|4|18|20252.70|0.02|0.02|N|O|1997-03-08|1997-03-01|1997-03-17|NONE|TRUCK|posits. even, final deposits do x-ra| +66728|237077|49582|5|41|41576.46|0.02|0.02|N|O|1997-01-25|1997-03-02|1997-02-12|DELIVER IN PERSON|TRUCK|symptotes wake fluffily fina| +66728|544463|6974|6|12|18089.28|0.03|0.00|N|O|1997-05-03|1997-02-23|1997-05-13|COLLECT COD|RAIL|ully regular accounts| +66729|707810|32839|1|5|9088.90|0.05|0.04|N|O|1998-05-14|1998-04-24|1998-05-15|TAKE BACK RETURN|FOB|ld notornis cajole. slo| +66729|157386|7387|2|24|34641.12|0.09|0.00|N|O|1998-04-16|1998-04-17|1998-04-27|TAKE BACK RETURN|RAIL|cies: carefully final i| +66729|182603|20113|3|20|33712.00|0.06|0.07|N|O|1998-02-19|1998-04-28|1998-03-03|NONE|AIR|ial instructions slee| +66729|998209|23248|4|36|47057.76|0.04|0.02|N|O|1998-03-22|1998-03-22|1998-04-03|COLLECT COD|TRUCK|ecial ideas. requests sleep| +66729|896176|46177|5|24|28131.12|0.01|0.02|N|O|1998-03-26|1998-04-27|1998-04-20|DELIVER IN PERSON|FOB|efully idle accounts. ideas caj| +66729|27882|2883|6|20|36197.60|0.06|0.05|N|O|1998-04-11|1998-04-14|1998-04-27|DELIVER IN PERSON|SHIP|about the blithely specia| +66730|154912|29919|1|23|45238.93|0.01|0.08|A|F|1995-01-12|1994-10-20|1995-01-25|COLLECT COD|AIR|beans. furiously even platelets ha| +66731|215517|28022|1|32|45840.00|0.09|0.06|N|O|1998-01-20|1997-12-15|1998-01-24|DELIVER IN PERSON|AIR| platelets| +66731|182080|19590|2|5|5810.40|0.08|0.06|N|O|1998-01-20|1998-01-17|1998-02-17|COLLECT COD|AIR|ites. regular, quiet foxes wake | +66732|226969|14482|1|34|64462.30|0.03|0.03|A|F|1995-02-18|1995-01-26|1995-02-19|TAKE BACK RETURN|FOB|ven asymptotes according to the ironic | +66732|652582|15096|2|45|69054.75|0.04|0.03|R|F|1994-11-16|1995-01-14|1994-11-26|TAKE BACK RETURN|RAIL|ccounts wake s| +66732|940233|27788|3|45|57293.55|0.05|0.07|A|F|1995-02-24|1995-01-03|1995-03-18|TAKE BACK RETURN|REG AIR|ic deposits affix packages. slyly silent| +66733|56168|18670|1|2|2248.32|0.03|0.01|N|O|1997-02-14|1997-03-13|1997-03-02|DELIVER IN PERSON|MAIL| regular deposits| +66733|7238|32239|2|49|56116.27|0.04|0.04|N|O|1997-03-29|1997-04-10|1997-04-23|COLLECT COD|TRUCK|press ideas.| +66734|966074|41113|1|34|38761.02|0.03|0.08|A|F|1994-12-25|1994-12-19|1995-01-07|DELIVER IN PERSON|TRUCK|blithely after the excuses. regul| +66734|795538|33084|2|1|1633.50|0.05|0.02|R|F|1995-02-09|1995-02-14|1995-02-20|NONE|RAIL|. foxes affix slyly slyly even pack| +66734|599140|11652|3|46|56999.52|0.01|0.04|R|F|1995-03-10|1994-12-24|1995-03-17|TAKE BACK RETURN|MAIL|equests. bo| +66734|738136|651|4|22|25830.20|0.10|0.03|R|F|1995-02-10|1994-12-16|1995-02-27|DELIVER IN PERSON|AIR|nts breach. ironic theo| +66734|850326|37878|5|7|8933.96|0.07|0.03|R|F|1995-01-29|1994-12-22|1995-02-20|COLLECT COD|REG AIR|e blithely express deposits. unusual | +66734|421525|21526|6|31|44841.50|0.08|0.01|A|F|1995-02-26|1994-12-22|1995-03-09|TAKE BACK RETURN|REG AIR| theodolites cajole quickly. fu| +66734|565797|15798|7|29|54020.33|0.00|0.02|A|F|1995-03-17|1995-01-07|1995-04-12|NONE|AIR|ar requests. carefully regul| +66735|347002|34521|1|8|8391.92|0.03|0.02|N|O|1997-09-14|1997-07-05|1997-09-15|NONE|REG AIR|uickly unusual accounts. fluffily b| +66735|51263|1264|2|35|42499.10|0.04|0.02|N|O|1997-08-14|1997-07-16|1997-08-29|COLLECT COD|MAIL|cial theodolites-- slyly enticin| +66735|561055|11056|3|22|24552.66|0.05|0.00|N|O|1997-08-14|1997-08-19|1997-09-05|NONE|FOB|en packages wake| +66735|643539|31076|4|18|26685.00|0.04|0.05|N|O|1997-07-26|1997-07-06|1997-08-15|DELIVER IN PERSON|RAIL| packages. bold packages sleep acro| +66735|952173|27212|5|11|13476.43|0.06|0.02|N|O|1997-08-27|1997-08-10|1997-09-03|TAKE BACK RETURN|TRUCK| final deposits cajole busily at the sp| +66760|585988|11011|1|15|31109.40|0.10|0.02|N|O|1995-12-19|1996-01-20|1996-01-13|DELIVER IN PERSON|TRUCK|ions boost. furiously express deposits m| +66761|914058|26577|1|23|24656.23|0.09|0.03|N|O|1997-04-01|1997-01-20|1997-04-12|DELIVER IN PERSON|RAIL| furiously final Tiresias. never i| +66762|676097|38611|1|50|53653.00|0.02|0.01|N|O|1996-03-19|1996-03-30|1996-04-05|NONE|RAIL|hely. carefully slow de| +66762|161800|49310|2|6|11170.80|0.04|0.04|N|O|1996-01-29|1996-03-05|1996-01-30|COLLECT COD|MAIL|thely pending deposits-- qui| +66763|532603|32604|1|4|6542.32|0.02|0.05|N|O|1997-07-27|1997-08-22|1997-07-29|DELIVER IN PERSON|AIR|fily slyly unusual accounts. fluf| +66763|458427|45955|2|4|5541.60|0.02|0.01|N|O|1997-10-08|1997-08-26|1997-10-15|DELIVER IN PERSON|TRUCK|ep fluffily special dependencies. car| +66763|775336|25337|3|39|55040.70|0.00|0.00|N|O|1997-09-27|1997-08-16|1997-10-25|COLLECT COD|SHIP|uriously. final, regular deposi| +66764|848296|48297|1|44|54747.00|0.05|0.07|R|F|1993-06-09|1993-08-16|1993-07-04|NONE|TRUCK|s use after the f| +66764|310303|47822|2|6|7879.74|0.07|0.03|A|F|1993-09-12|1993-08-19|1993-09-21|TAKE BACK RETURN|REG AIR|uriously bold theodolites: furious| +66764|247713|47714|3|16|26571.20|0.07|0.03|R|F|1993-06-17|1993-07-08|1993-07-10|DELIVER IN PERSON|REG AIR|sly special req| +66764|305820|30833|4|23|41993.63|0.09|0.00|A|F|1993-07-12|1993-07-23|1993-07-25|TAKE BACK RETURN|MAIL|de of the blithely special instructions| +66764|909924|34961|5|39|75421.32|0.06|0.03|A|F|1993-06-06|1993-07-03|1993-06-21|NONE|SHIP|posits. quickly ex| +66764|89561|2063|6|11|17056.16|0.00|0.00|R|F|1993-09-15|1993-08-09|1993-10-05|TAKE BACK RETURN|MAIL|ording to the pinto beans. bold packages| +66765|39447|14448|1|18|24955.92|0.06|0.04|A|F|1995-02-19|1995-03-10|1995-03-03|DELIVER IN PERSON|MAIL|. express,| +66765|972007|34527|2|18|19421.28|0.00|0.01|A|F|1995-03-29|1995-04-06|1995-04-21|DELIVER IN PERSON|SHIP|. final pac| +66765|505893|30914|3|18|34179.66|0.03|0.01|A|F|1995-03-29|1995-03-02|1995-04-14|COLLECT COD|SHIP|atelets wa| +66765|533723|8744|4|15|26350.50|0.03|0.04|R|F|1995-05-19|1995-03-29|1995-05-24|TAKE BACK RETURN|TRUCK| final request| +66765|269340|44351|5|32|41898.56|0.10|0.05|A|F|1995-02-09|1995-03-19|1995-03-09|DELIVER IN PERSON|REG AIR|ending, pending foxes | +66766|39047|14048|1|42|41413.68|0.04|0.06|N|O|1995-10-16|1995-10-27|1995-10-18|DELIVER IN PERSON|MAIL|es. blithely pending pinto beans among| +66766|247316|34829|2|19|24002.70|0.10|0.08|N|O|1995-08-26|1995-10-02|1995-09-23|DELIVER IN PERSON|FOB|onic pinto beans. regular deposits against| +66766|634498|47011|3|5|7162.30|0.05|0.05|N|O|1995-12-06|1995-09-30|1995-12-22|NONE|MAIL|posits. furiously bold frays wake slyly. | +66766|994706|19745|4|21|37813.86|0.09|0.02|N|O|1995-12-01|1995-11-05|1995-12-11|NONE|TRUCK|ent accounts wake after the blithely ironi| +66766|23237|48238|5|27|31326.21|0.07|0.07|N|O|1995-11-23|1995-09-29|1995-12-14|NONE|SHIP|ar requests about the deposits are| +66767|658234|8235|1|33|39342.60|0.08|0.05|N|O|1997-01-19|1997-04-07|1997-01-29|COLLECT COD|REG AIR| blithely. | +66792|90844|40845|1|32|58714.88|0.06|0.07|N|O|1997-04-21|1997-03-25|1997-05-21|NONE|AIR|cies sleep to the dog| +66792|814330|1879|2|17|21152.93|0.09|0.00|N|O|1997-05-25|1997-04-04|1997-06-04|NONE|RAIL|. special instructions wak| +66792|441608|29133|3|49|75929.42|0.08|0.05|N|O|1997-03-23|1997-04-22|1997-04-01|TAKE BACK RETURN|AIR|e fluffily| +66792|103235|3236|4|40|49529.20|0.07|0.00|N|O|1997-03-03|1997-03-12|1997-03-19|TAKE BACK RETURN|RAIL|fully final packages. caref| +66793|529581|42092|1|8|12884.48|0.08|0.02|A|F|1992-10-06|1992-12-09|1992-10-10|COLLECT COD|REG AIR|ependencies. bl| +66793|662825|37852|2|30|53633.70|0.08|0.00|A|F|1992-12-18|1992-12-05|1992-12-30|COLLECT COD|FOB|e quickly ironic instructions haggle wi| +66793|95883|8385|3|23|43214.24|0.06|0.04|A|F|1992-12-17|1992-12-05|1992-12-26|COLLECT COD|MAIL| carefully. | +66793|501688|26709|4|47|79414.02|0.07|0.06|R|F|1992-12-15|1992-10-16|1992-12-28|COLLECT COD|AIR| quickly ironic foxes boost slyly. | +66793|856490|31525|5|49|70876.05|0.06|0.00|R|F|1992-12-14|1992-11-21|1992-12-20|NONE|REG AIR|ar, final requests against the pending acco| +66794|470010|20011|1|7|6859.93|0.05|0.01|N|O|1998-01-18|1998-01-31|1998-02-05|DELIVER IN PERSON|FOB|heodolites are| +66795|151909|26916|1|13|25491.70|0.04|0.06|N|O|1997-02-06|1997-01-01|1997-02-22|DELIVER IN PERSON|MAIL|etect blithely a| +66796|556733|6734|1|35|62639.85|0.00|0.00|N|O|1996-06-26|1996-06-06|1996-07-04|DELIVER IN PERSON|REG AIR|rint carefully | +66796|10692|35693|2|45|72121.05|0.03|0.01|N|O|1996-03-28|1996-05-30|1996-04-10|NONE|RAIL|uriously expre| +66796|694714|19741|3|44|75181.92|0.01|0.06|N|O|1996-04-10|1996-05-01|1996-04-16|COLLECT COD|FOB|slyly regular tithes. ca| +66796|56427|31430|4|25|34585.50|0.04|0.02|N|O|1996-07-10|1996-05-20|1996-07-29|COLLECT COD|SHIP|he sly ideas? ideas wake. quietly special i| +66797|608441|8442|1|12|16192.92|0.01|0.07|R|F|1993-02-27|1993-03-04|1993-03-09|NONE|AIR|etect furiously. | +66797|56558|6559|2|34|51494.70|0.00|0.07|R|F|1993-04-30|1993-04-08|1993-05-12|TAKE BACK RETURN|REG AIR|grate slyly at the even dependencies| +66797|554246|16758|3|48|62410.56|0.05|0.03|R|F|1993-05-25|1993-03-19|1993-06-04|TAKE BACK RETURN|AIR| final, pending theodolites s| +66797|203323|28332|4|37|45373.47|0.04|0.07|A|F|1993-03-23|1993-03-12|1993-04-16|NONE|FOB|nticingly pending instructions grow | +66797|245744|20753|5|29|49002.17|0.03|0.06|A|F|1993-03-07|1993-04-18|1993-03-20|TAKE BACK RETURN|TRUCK|ndencies. slyly unusual| +66798|794092|44093|1|15|17790.90|0.10|0.06|A|F|1995-02-10|1994-12-27|1995-02-16|DELIVER IN PERSON|FOB|ke along the express packages. | +66798|292965|5471|2|46|90065.70|0.01|0.08|A|F|1995-02-24|1995-02-21|1995-03-24|NONE|REG AIR|y after the slyly bol| +66798|854869|29904|3|12|21885.84|0.07|0.02|A|F|1995-02-28|1995-02-10|1995-03-09|NONE|REG AIR|ove the even sheav| +66799|668711|31225|1|2|3359.36|0.10|0.07|N|O|1996-08-16|1996-07-04|1996-09-07|TAKE BACK RETURN|RAIL|ymptotes. special instructions haggle| +66824|882071|7106|1|48|50545.44|0.06|0.01|A|F|1992-07-09|1992-06-09|1992-07-12|NONE|REG AIR|. slyly regular excuses promise slyly | +66824|963173|38212|2|36|44500.68|0.02|0.07|R|F|1992-05-18|1992-05-19|1992-06-08|TAKE BACK RETURN|AIR|, pending dolphins boost ca| +66824|41194|28695|3|35|39731.65|0.07|0.03|R|F|1992-07-03|1992-05-20|1992-07-10|NONE|MAIL|quickly unusual asymptotes haggle ruthles| +66824|342516|17529|4|7|10909.50|0.09|0.03|R|F|1992-05-09|1992-05-13|1992-06-03|DELIVER IN PERSON|SHIP|riously final | +66824|650338|25365|5|9|11594.70|0.04|0.03|A|F|1992-05-25|1992-06-08|1992-06-03|TAKE BACK RETURN|MAIL|fluffily quickly bold requests. final | +66824|229459|29460|6|38|52760.72|0.06|0.04|A|F|1992-04-21|1992-05-15|1992-05-17|DELIVER IN PERSON|SHIP|iously final packages nag always.| +66825|971444|21445|1|10|15154.00|0.05|0.07|R|F|1995-05-01|1995-07-04|1995-05-29|TAKE BACK RETURN|SHIP|grate quickly. furiously expr| +66825|51428|1429|2|2|2758.84|0.05|0.05|R|F|1995-05-13|1995-05-21|1995-05-25|DELIVER IN PERSON|RAIL|nic deposits wake entic| +66826|80724|5727|1|11|18751.92|0.07|0.02|R|F|1994-06-27|1994-07-09|1994-07-04|DELIVER IN PERSON|REG AIR|s wake fluffi| +66826|727173|27174|2|8|9601.12|0.02|0.03|A|F|1994-06-25|1994-06-02|1994-07-23|DELIVER IN PERSON|AIR|le quickly blithely special forges. even| +66826|595453|32987|3|50|77421.50|0.05|0.07|R|F|1994-04-22|1994-05-19|1994-05-15|DELIVER IN PERSON|AIR|ly. carefully ironic pinto beans s| +66826|768232|18233|4|16|20803.20|0.05|0.01|A|F|1994-04-29|1994-05-16|1994-05-12|DELIVER IN PERSON|TRUCK|encies. pinto beans use unusu| +66826|673870|11410|5|9|16594.56|0.10|0.04|R|F|1994-08-07|1994-05-26|1994-08-18|DELIVER IN PERSON|AIR|elets against the foxes doubt quickly amo| +66826|720301|45330|6|30|39638.10|0.05|0.08|A|F|1994-05-04|1994-05-20|1994-05-27|NONE|REG AIR|g requests cajole along| +66826|84065|46567|7|18|18883.08|0.06|0.01|A|F|1994-05-07|1994-07-04|1994-05-11|COLLECT COD|RAIL| furiously regular pa| +66827|879354|41872|1|8|10666.48|0.01|0.03|N|O|1996-10-06|1996-12-20|1996-10-27|COLLECT COD|FOB| bold instructions; carefully p| +66827|288631|38632|2|15|24294.30|0.05|0.06|N|O|1996-11-29|1996-11-11|1996-12-19|TAKE BACK RETURN|SHIP|are furiously bold packages. fluffi| +66827|8809|46310|3|31|53251.80|0.02|0.05|N|O|1996-12-25|1996-11-24|1997-01-09|TAKE BACK RETURN|SHIP| accounts. carefully idle accounts us| +66827|38686|13687|4|9|14622.12|0.08|0.07|N|O|1997-01-15|1996-11-06|1997-02-11|NONE|SHIP| even requests nag furi| +66827|194786|32296|5|45|84635.10|0.03|0.05|N|O|1996-10-11|1996-12-04|1996-11-08|NONE|RAIL|uriously toward the furiou| +66827|754499|4500|6|8|12427.68|0.01|0.06|N|O|1996-10-06|1996-10-27|1996-10-08|TAKE BACK RETURN|FOB|y brave asymptotes. regular ideas are| +66827|863182|13183|7|9|10306.26|0.08|0.04|N|O|1996-12-28|1996-12-12|1997-01-13|TAKE BACK RETURN|TRUCK| above the| +66828|485064|47574|1|4|4196.16|0.06|0.01|R|F|1993-10-04|1993-12-20|1993-11-01|COLLECT COD|TRUCK|usly express accounts boost along the | +66828|462214|24724|2|10|11761.90|0.00|0.02|R|F|1993-09-24|1993-10-28|1993-10-09|TAKE BACK RETURN|FOB|und the express, bold| +66828|416295|28804|3|1|1211.27|0.06|0.06|R|F|1993-11-18|1993-10-28|1993-11-19|TAKE BACK RETURN|MAIL|requests sleep fluffily furio| +66828|657239|19753|4|9|10765.80|0.08|0.04|R|F|1993-10-13|1993-11-14|1993-11-01|NONE|RAIL|c packages wake furiously slyly idl| +66828|214663|14664|5|12|18931.80|0.08|0.03|R|F|1993-09-23|1993-11-24|1993-10-17|NONE|TRUCK|beans sleep | +66829|900556|557|1|1|1556.51|0.09|0.07|R|F|1994-11-13|1994-11-26|1994-11-16|DELIVER IN PERSON|REG AIR|encies are furiousl| +66830|664651|27165|1|23|37159.26|0.05|0.00|N|O|1997-01-07|1996-12-19|1997-01-14|TAKE BACK RETURN|FOB|deposits: fluffily even ideas| +66830|787976|37977|2|19|39214.86|0.00|0.07|N|O|1997-01-11|1997-01-21|1997-01-23|COLLECT COD|FOB|platelets are slyly| +66831|845548|20581|1|26|38831.00|0.00|0.00|A|F|1994-07-20|1994-08-18|1994-08-16|NONE|AIR|uffily pending instructions? carefully| +66831|119619|32122|2|30|49158.30|0.09|0.06|A|F|1994-09-16|1994-08-04|1994-09-19|COLLECT COD|SHIP|ts. furiously slow depen| +66831|429737|17262|3|22|36667.62|0.10|0.04|R|F|1994-05-31|1994-07-29|1994-06-18|COLLECT COD|RAIL|uests slee| +66831|586598|36599|4|3|5053.71|0.10|0.03|R|F|1994-08-11|1994-07-22|1994-08-25|NONE|AIR|riously carefully final frets. expres| +66831|936821|49340|5|33|61306.74|0.06|0.07|R|F|1994-09-16|1994-08-22|1994-10-15|DELIVER IN PERSON|REG AIR|ly special, busy asy| +66831|148061|10564|6|26|28835.56|0.06|0.03|A|F|1994-06-25|1994-08-15|1994-06-30|COLLECT COD|TRUCK|d requests. pending court| +66831|458322|20832|7|48|61454.40|0.02|0.05|R|F|1994-09-14|1994-07-24|1994-10-11|TAKE BACK RETURN|FOB|al instructions. furiously reg| +66856|7672|32673|1|49|77403.83|0.07|0.02|N|O|1997-02-12|1996-12-28|1997-03-06|DELIVER IN PERSON|REG AIR|g the furiously express accou| +66856|933580|21135|2|32|51633.28|0.06|0.01|N|O|1997-03-17|1996-12-29|1997-03-25|COLLECT COD|REG AIR|final requests sleep quickly | +66856|669394|31908|3|11|14996.96|0.00|0.08|N|O|1996-12-11|1997-02-11|1996-12-30|TAKE BACK RETURN|TRUCK|furiously f| +66856|490383|27911|4|31|42574.16|0.03|0.04|N|O|1996-12-01|1997-01-18|1996-12-07|TAKE BACK RETURN|SHIP|s according to the blithely busy hockey pla| +66856|853141|15659|5|10|10941.00|0.01|0.05|N|O|1997-02-14|1997-02-18|1997-03-16|COLLECT COD|MAIL|ing to the quietly si| +66857|862761|37796|1|8|13789.76|0.06|0.00|R|F|1995-04-25|1995-05-18|1995-05-20|TAKE BACK RETURN|FOB| regular deposits. even excuses haggl| +66857|419598|19599|2|8|12140.56|0.00|0.01|A|F|1995-04-20|1995-03-21|1995-04-25|NONE|RAIL|uests against the furious| +66857|172447|34951|3|20|30388.80|0.08|0.01|A|F|1995-04-12|1995-04-06|1995-05-03|COLLECT COD|TRUCK|ironic accounts. furiously bol| +66857|310339|35352|4|36|48575.52|0.07|0.04|A|F|1995-05-02|1995-05-06|1995-05-13|DELIVER IN PERSON|MAIL|ily quickly ironic foxes.| +66857|867092|29610|5|14|14826.70|0.10|0.08|A|F|1995-05-19|1995-05-07|1995-06-01|NONE|REG AIR|ckly final requests might haggle | +66858|661002|23516|1|1|962.97|0.01|0.02|R|F|1994-01-16|1993-12-31|1994-02-14|DELIVER IN PERSON|MAIL|ly. regular, iro| +66858|448056|35581|2|33|33132.99|0.09|0.02|A|F|1994-01-06|1994-02-26|1994-01-10|TAKE BACK RETURN|MAIL|ide of the fluffily special accounts. b| +66858|469453|19454|3|36|51207.48|0.05|0.05|R|F|1994-01-17|1994-01-10|1994-01-18|COLLECT COD|AIR| ironic platelets. ideas ar| +66858|82934|20438|4|14|26837.02|0.09|0.01|A|F|1994-03-10|1994-02-11|1994-04-09|TAKE BACK RETURN|RAIL|as. regular accounts sleep e| +66858|859586|47138|5|2|3091.08|0.08|0.02|A|F|1993-12-22|1994-01-08|1993-12-25|NONE|AIR|ress packages dazzle carefully agains| +66858|51281|13783|6|28|34503.84|0.00|0.01|R|F|1994-01-01|1994-02-16|1994-01-24|TAKE BACK RETURN|TRUCK| against the | +66858|865125|15126|7|2|2180.16|0.07|0.00|A|F|1994-03-04|1994-02-21|1994-04-01|NONE|MAIL|ven instructions around the plat| +66859|149684|24689|1|20|34673.60|0.10|0.00|N|O|1995-10-22|1995-09-25|1995-11-17|TAKE BACK RETURN|FOB|ly. carefully | +66860|772490|35006|1|17|26561.82|0.03|0.05|N|O|1995-12-12|1996-02-06|1996-01-08|NONE|TRUCK|s boost carefu| +66860|236601|49106|2|9|13838.31|0.07|0.01|N|O|1996-02-08|1996-02-25|1996-02-20|TAKE BACK RETURN|TRUCK|s. fluffily final deposit| +66860|552911|40445|3|28|54988.92|0.06|0.07|N|O|1996-03-08|1996-02-23|1996-03-28|COLLECT COD|FOB|late furiously blithely pending pa| +66860|762336|12337|4|2|2796.60|0.07|0.02|N|O|1995-12-18|1996-02-11|1995-12-26|NONE|RAIL|counts haggle regularly pinto beans. unusua| +66861|459295|34314|1|1|1254.27|0.09|0.06|A|F|1995-04-22|1995-04-09|1995-05-14|DELIVER IN PERSON|RAIL|accounts haggle slyly f| +66861|356292|18800|2|3|4044.84|0.08|0.05|R|F|1995-05-13|1995-03-22|1995-05-29|COLLECT COD|FOB|ns. close ideas | +66862|17764|30265|1|39|65588.64|0.08|0.02|N|O|1995-08-30|1995-08-24|1995-09-23|COLLECT COD|FOB|kly regular ide| +66862|552798|15310|2|10|18507.70|0.07|0.00|N|O|1995-07-09|1995-09-07|1995-07-27|NONE|MAIL|furiously pending packages | +66862|871196|21197|3|47|54856.05|0.10|0.07|N|O|1995-10-07|1995-08-15|1995-10-30|COLLECT COD|REG AIR|inal theodolites | +66862|183171|45675|4|21|26337.57|0.06|0.08|N|O|1995-09-15|1995-07-18|1995-10-06|COLLECT COD|SHIP|ording to the accounts. accounts | +66863|715385|15386|1|39|54613.65|0.04|0.05|R|F|1993-12-26|1994-01-16|1993-12-30|DELIVER IN PERSON|RAIL|ayers haggle close accounts. | +66863|472371|47390|2|8|10746.80|0.02|0.06|A|F|1994-01-15|1994-01-10|1994-02-11|TAKE BACK RETURN|REG AIR|yly pending pinto | +66863|127417|39920|3|31|44776.71|0.09|0.06|A|F|1994-01-12|1994-02-18|1994-02-08|TAKE BACK RETURN|TRUCK|ckly regular | +66863|485092|47602|4|47|50622.29|0.09|0.07|R|F|1994-02-05|1994-01-23|1994-03-04|NONE|RAIL|g blithely. slyly silent id| +66863|939583|27138|5|4|6490.16|0.07|0.02|A|F|1994-01-28|1994-02-05|1994-02-04|NONE|FOB|onic packages haggl| +66863|563683|26195|6|9|15719.94|0.07|0.06|A|F|1994-02-03|1994-02-07|1994-02-17|NONE|TRUCK|ts. accounts thr| +66888|579460|29461|1|20|30788.80|0.06|0.01|A|F|1994-02-07|1994-01-16|1994-02-19|TAKE BACK RETURN|REG AIR|lly according to the fluffily si| +66888|970124|32644|2|38|45375.04|0.03|0.03|R|F|1994-02-17|1994-01-13|1994-03-03|COLLECT COD|MAIL| sleep express depende| +66888|874064|24065|3|29|30102.58|0.08|0.07|A|F|1994-03-04|1993-12-18|1994-03-17|COLLECT COD|SHIP| ironic pla| +66888|386922|36923|4|8|16071.28|0.01|0.03|A|F|1994-01-11|1993-12-18|1994-01-15|DELIVER IN PERSON|FOB|nal, thin accou| +66888|994230|44231|5|23|30456.37|0.10|0.02|R|F|1994-01-31|1993-12-30|1994-02-08|TAKE BACK RETURN|AIR|reful requests. deposits cajole quickly aro| +66888|15727|40728|6|13|21355.36|0.05|0.07|A|F|1993-12-03|1993-12-16|1993-12-20|COLLECT COD|TRUCK| boost ironicall| +66888|307784|20291|7|42|75254.34|0.09|0.05|R|F|1994-01-17|1993-12-29|1994-01-19|COLLECT COD|RAIL| bold packages boo| +66889|914624|14625|1|35|57350.30|0.07|0.08|A|F|1992-05-28|1992-06-12|1992-06-09|COLLECT COD|AIR|he quickly bold theodolites snooze c| +66889|69007|19008|2|8|7808.00|0.10|0.08|R|F|1992-07-28|1992-07-28|1992-08-02|NONE|RAIL| regular or| +66889|787196|24742|3|13|16681.08|0.08|0.05|R|F|1992-07-11|1992-07-19|1992-07-21|DELIVER IN PERSON|RAIL|owly alongside of the sl| +66889|390533|3041|4|50|81176.00|0.10|0.07|A|F|1992-06-20|1992-07-18|1992-07-06|TAKE BACK RETURN|TRUCK|de of the furiously pending deposits| +66889|680406|42920|5|43|59613.91|0.05|0.08|A|F|1992-05-23|1992-07-19|1992-06-04|TAKE BACK RETURN|REG AIR|ites. blithely| +66889|574945|12479|6|48|96956.16|0.02|0.08|R|F|1992-06-25|1992-06-19|1992-07-12|TAKE BACK RETURN|REG AIR|ges use slyly. carefully| +66890|849817|24850|1|47|83038.19|0.04|0.08|R|F|1992-12-22|1993-01-01|1993-01-18|NONE|REG AIR|ully ironic pinto beans. blithely iron| +66891|886308|23860|1|41|53064.66|0.09|0.03|N|O|1997-03-19|1997-02-28|1997-03-31|DELIVER IN PERSON|MAIL|pinto beans-- quiet, re| +66891|168850|31354|2|42|80591.70|0.06|0.05|N|O|1997-04-14|1997-03-07|1997-04-26|DELIVER IN PERSON|RAIL|ose quiet Tiresias. quickly regular | +66891|856834|44386|3|24|42978.96|0.02|0.01|N|O|1997-03-12|1997-03-12|1997-03-30|TAKE BACK RETURN|SHIP|cies. enticing pains promise. carefully si| +66891|794777|32323|4|30|56152.20|0.01|0.08|N|O|1997-01-29|1997-03-20|1997-02-05|TAKE BACK RETURN|RAIL|usly pending theodolites. unusual excuse| +66892|122571|35074|1|7|11154.99|0.04|0.04|N|O|1997-04-01|1997-06-06|1997-04-27|TAKE BACK RETURN|RAIL|ss the idly even packa| +66892|46821|34322|2|22|38892.04|0.10|0.00|N|O|1997-05-06|1997-06-02|1997-06-03|DELIVER IN PERSON|RAIL|ag furiously quickly final deposits. ex| +66892|911298|23817|3|43|56297.75|0.06|0.00|N|O|1997-06-01|1997-05-30|1997-06-25|NONE|MAIL|er the excuses: final sen| +66892|177312|27313|4|11|15282.41|0.06|0.01|N|O|1997-07-25|1997-05-09|1997-07-30|NONE|TRUCK|: carefully speci| +66892|66221|28723|5|35|41552.70|0.04|0.04|N|O|1997-06-11|1997-05-08|1997-06-25|TAKE BACK RETURN|REG AIR| eat quickly. slyly final| +66892|961895|36934|6|33|64576.05|0.08|0.05|N|O|1997-07-25|1997-06-12|1997-07-29|NONE|TRUCK|luffy package| +66893|192423|29933|1|8|12123.36|0.03|0.07|N|O|1996-01-31|1995-12-28|1996-02-23|TAKE BACK RETURN|REG AIR|ending asymp| +66894|335016|47523|1|37|38887.00|0.08|0.00|R|F|1993-02-17|1993-01-09|1993-02-18|NONE|RAIL| slyly ironic courts. asymptotes use fur| +66894|610911|48448|2|12|21862.56|0.05|0.03|A|F|1993-02-16|1993-02-03|1993-03-08|NONE|MAIL|ular accounts. blithely regular deposit| +66894|576433|26434|3|20|30188.20|0.03|0.04|A|F|1993-01-04|1993-01-09|1993-02-03|DELIVER IN PERSON|AIR|nag quickly about the fin| +66894|94107|6609|4|21|23123.10|0.07|0.04|A|F|1992-12-05|1993-01-05|1992-12-29|DELIVER IN PERSON|FOB|fully even f| +66894|643839|31376|5|9|16045.20|0.09|0.06|R|F|1992-12-16|1993-01-09|1993-01-03|NONE|REG AIR| furiously even the| +66895|639877|2390|1|39|70856.76|0.02|0.03|R|F|1993-08-24|1993-09-28|1993-09-19|DELIVER IN PERSON|REG AIR|carefully ironic ex| +66895|410731|10732|2|41|67310.11|0.04|0.08|A|F|1993-08-18|1993-10-01|1993-08-19|DELIVER IN PERSON|FOB| requests. furiously even pa| +66895|152906|27913|3|40|78356.00|0.06|0.00|R|F|1993-09-26|1993-10-11|1993-10-06|DELIVER IN PERSON|SHIP|? ironic, even f| +66895|879180|29181|4|12|13909.68|0.09|0.01|R|F|1993-08-11|1993-09-17|1993-08-29|TAKE BACK RETURN|TRUCK|odolites play qu| +66895|364378|1900|5|16|23077.76|0.05|0.05|A|F|1993-10-06|1993-10-27|1993-10-20|NONE|REG AIR|eposits haggle blithely ironic deposit| +66895|98109|35613|6|24|26570.40|0.02|0.01|A|F|1993-09-08|1993-10-02|1993-09-14|DELIVER IN PERSON|MAIL|ly after the blithely carefu| +66920|700844|38387|1|8|14758.48|0.05|0.00|N|O|1995-10-25|1995-12-12|1995-11-23|COLLECT COD|FOB|sts poach quickly along the blithe| +66920|71145|33647|2|46|51342.44|0.10|0.01|N|O|1996-02-06|1996-01-06|1996-03-07|TAKE BACK RETURN|AIR|re carefully special requests.| +66920|733843|46358|3|44|82579.64|0.00|0.03|N|O|1996-02-15|1996-01-20|1996-03-16|COLLECT COD|SHIP|old theodolites. b| +66920|687617|12644|4|27|43323.66|0.02|0.00|N|O|1996-02-20|1995-12-14|1996-03-11|TAKE BACK RETURN|TRUCK|uickly unusual instructions are quickly b| +66920|770538|20539|5|46|73991.00|0.00|0.03|N|O|1995-11-02|1995-12-14|1995-11-21|COLLECT COD|SHIP|sts cajole across the carefu| +66920|427922|27923|6|34|62896.60|0.06|0.04|N|O|1995-10-26|1995-12-15|1995-11-03|DELIVER IN PERSON|TRUCK|into beans ac| +66921|114928|2435|1|4|7771.68|0.03|0.06|N|O|1998-04-26|1998-05-03|1998-05-02|COLLECT COD|MAIL|ymptotes alongside of the blith| +66921|579803|42315|2|26|48952.28|0.09|0.02|N|O|1998-06-01|1998-03-21|1998-06-09|COLLECT COD|AIR|s about the | +66921|735607|35608|3|8|13140.56|0.09|0.06|N|O|1998-05-31|1998-03-31|1998-06-30|TAKE BACK RETURN|FOB|ly. slyly regular | +66921|342607|17620|4|29|47838.11|0.04|0.05|N|O|1998-02-25|1998-04-19|1998-03-19|NONE|TRUCK|ounts among th| +66921|182045|32046|5|27|30430.08|0.03|0.08|N|O|1998-03-08|1998-05-15|1998-03-24|DELIVER IN PERSON|SHIP|he requests snooze slowly a| +66921|621515|34028|6|35|50276.80|0.02|0.03|N|O|1998-06-12|1998-05-11|1998-06-22|TAKE BACK RETURN|REG AIR|t the regular, final dependencies wak| +66921|787580|12611|7|18|30015.90|0.00|0.08|N|O|1998-05-02|1998-05-06|1998-05-08|COLLECT COD|TRUCK|c, regular pearls boost fluffily along | +66922|847413|9930|1|20|27207.40|0.08|0.01|N|O|1996-12-24|1996-12-27|1997-01-02|DELIVER IN PERSON|MAIL|s haggle acr| +66922|460229|22739|2|35|41622.00|0.08|0.04|N|O|1996-10-28|1997-01-13|1996-11-18|NONE|FOB|owly ironic platelets. carefully| +66922|55441|17943|3|14|19550.16|0.02|0.06|N|O|1996-10-20|1997-01-12|1996-11-12|COLLECT COD|MAIL|fy, final packages a| +66923|655812|43352|1|40|70711.20|0.00|0.04|A|F|1993-06-02|1993-06-11|1993-06-12|NONE|SHIP|ke silent accou| +66923|224767|37272|2|2|3383.50|0.08|0.06|A|F|1993-05-08|1993-06-15|1993-05-23|DELIVER IN PERSON|REG AIR|ronic packages. | +66923|654306|16820|3|18|22684.86|0.06|0.06|R|F|1993-06-10|1993-05-08|1993-07-02|TAKE BACK RETURN|SHIP|sits. regular| +66923|910556|48111|4|50|78325.50|0.07|0.02|A|F|1993-04-25|1993-05-27|1993-05-07|NONE|SHIP|blithely special dugouts sleep sly| +66923|703926|28955|5|6|11579.34|0.04|0.07|R|F|1993-07-18|1993-05-13|1993-08-06|COLLECT COD|REG AIR|kly regular packages haggle slyly acco| +66924|499075|49076|1|21|22555.05|0.05|0.06|A|F|1992-05-24|1992-04-07|1992-06-03|COLLECT COD|TRUCK| the quickly quiet accounts. packag| +66925|653372|3373|1|44|58314.96|0.05|0.04|R|F|1992-11-20|1992-09-04|1992-12-09|DELIVER IN PERSON|RAIL|telets are q| +66925|220204|20205|2|36|40470.84|0.07|0.01|A|F|1992-10-25|1992-10-06|1992-11-15|TAKE BACK RETURN|FOB|es. fluffily s| +66925|957030|44588|3|2|2173.98|0.09|0.00|A|F|1992-10-21|1992-10-15|1992-10-23|TAKE BACK RETURN|REG AIR| dependencies use perma| +66925|791270|3786|4|39|53088.36|0.08|0.05|A|F|1992-09-19|1992-09-10|1992-09-20|COLLECT COD|REG AIR|ly regular de| +66925|864792|39827|5|8|14054.00|0.04|0.08|A|F|1992-10-24|1992-09-27|1992-11-12|COLLECT COD|AIR|lar accounts. regular asymptotes wak| +66926|441101|28626|1|10|10420.80|0.10|0.03|A|F|1992-03-05|1992-04-16|1992-04-04|COLLECT COD|RAIL|regular de| +66926|578668|28669|2|31|54145.84|0.07|0.02|R|F|1992-06-07|1992-04-02|1992-07-01|COLLECT COD|TRUCK|the instructions. accounts a| +66926|658895|33922|3|13|24100.18|0.08|0.00|R|F|1992-04-22|1992-05-10|1992-05-18|TAKE BACK RETURN|MAIL|ic accounts wake. carefully regular instruc| +66926|36310|36311|4|39|48606.09|0.06|0.03|A|F|1992-06-10|1992-05-15|1992-06-24|COLLECT COD|FOB|cross the slyly even theodolites. furi| +66926|254037|4038|5|28|27748.56|0.10|0.07|A|F|1992-03-28|1992-05-06|1992-04-17|DELIVER IN PERSON|SHIP|cajole slyly. slyly | +66927|582412|19946|1|9|13449.51|0.07|0.00|A|F|1995-03-08|1995-05-30|1995-03-27|DELIVER IN PERSON|TRUCK|arefully above| +66927|584563|22097|2|9|14827.86|0.07|0.07|A|F|1995-04-20|1995-05-15|1995-04-22|COLLECT COD|FOB|sleep. express, special theodolit| +66952|272386|22387|1|14|19017.18|0.05|0.07|A|F|1994-05-08|1994-04-04|1994-05-14|TAKE BACK RETURN|SHIP|quickly ironic dolphins. carefu| +66952|981933|31934|2|36|72536.04|0.09|0.04|R|F|1994-04-05|1994-05-06|1994-04-17|COLLECT COD|SHIP|accounts integrate carefully| +66952|346578|9085|3|27|43863.12|0.01|0.06|R|F|1994-05-06|1994-04-17|1994-05-25|DELIVER IN PERSON|FOB|nto beans against the ironic pa| +66952|926903|14458|4|38|73334.68|0.03|0.07|A|F|1994-05-15|1994-05-27|1994-05-29|TAKE BACK RETURN|REG AIR|symptotes a| +66953|79862|4865|1|19|34995.34|0.06|0.00|R|F|1993-10-10|1993-11-16|1993-10-28|COLLECT COD|AIR|ites haggle against the carefully final | +66953|226203|13716|2|7|7904.33|0.10|0.05|R|F|1993-10-04|1993-12-17|1993-11-03|TAKE BACK RETURN|RAIL|p quickly above the furi| +66954|967870|30390|1|34|65886.22|0.06|0.06|N|O|1995-09-25|1995-11-01|1995-10-06|NONE|SHIP|l have to sleep furiously according | +66954|980952|18510|2|30|60987.30|0.05|0.05|N|O|1995-11-14|1995-11-20|1995-12-10|TAKE BACK RETURN|REG AIR|nic requests. b| +66955|68655|31157|1|12|19483.80|0.01|0.04|A|F|1993-05-03|1993-05-23|1993-05-31|DELIVER IN PERSON|AIR|nto beans slee| +66956|275072|25073|1|37|38741.22|0.10|0.03|N|O|1996-02-03|1996-01-03|1996-02-04|NONE|REG AIR| sleep ste| +66956|122318|47323|2|49|65675.19|0.09|0.05|N|O|1996-01-07|1996-01-30|1996-01-30|NONE|FOB|inal platelets sleep furiously e| +66956|793385|43386|3|35|51742.25|0.05|0.06|N|O|1996-02-27|1995-12-27|1996-03-24|DELIVER IN PERSON|REG AIR| packages. quick excuses haggle. final | +66956|411887|11888|4|21|37776.06|0.09|0.02|N|O|1996-03-17|1996-02-09|1996-04-16|DELIVER IN PERSON|RAIL| foxes nag above| +66957|724140|24141|1|31|36087.41|0.00|0.00|N|O|1995-07-07|1995-05-16|1995-07-20|TAKE BACK RETURN|RAIL|pending accounts among | +66957|619625|19626|2|40|61783.60|0.00|0.05|A|F|1995-03-30|1995-06-04|1995-04-09|TAKE BACK RETURN|FOB|sleep doggedly. regular theodolit| +66958|566922|29434|1|33|65633.70|0.02|0.05|N|O|1996-01-07|1995-11-23|1996-01-19|COLLECT COD|MAIL|ccounts hinder against the slyly final depe| +66958|257247|32258|2|35|42148.05|0.09|0.01|N|O|1996-01-17|1995-12-24|1996-02-14|NONE|FOB|omise furiously about the quietly| +66958|548805|36336|3|4|7415.12|0.00|0.02|N|O|1995-10-24|1995-11-07|1995-11-16|NONE|REG AIR|yly unusual theodolites af| +66958|763860|13861|4|17|32705.11|0.03|0.05|N|O|1995-11-27|1995-12-03|1995-12-16|NONE|SHIP|gle slyly regular packages. express| +66958|182595|45099|5|21|35229.39|0.01|0.07|N|O|1995-12-11|1995-11-04|1995-12-15|COLLECT COD|FOB|n foxes about the| +66958|872087|34605|6|43|45538.72|0.03|0.05|N|O|1995-12-01|1995-11-19|1995-12-11|DELIVER IN PERSON|REG AIR|y special fre| +66958|164720|14721|7|43|76742.96|0.10|0.02|N|O|1996-02-01|1995-12-23|1996-02-21|COLLECT COD|MAIL| ironic, ironic depos| +66959|448114|35639|1|44|46731.96|0.02|0.04|A|F|1995-01-16|1995-03-04|1995-01-31|COLLECT COD|FOB|ounts among the quick| +66959|449909|24926|2|2|3717.76|0.07|0.03|A|F|1995-03-28|1995-03-04|1995-04-05|TAKE BACK RETURN|SHIP|ckly even deposi| +66959|610881|10882|3|5|8959.25|0.03|0.00|A|F|1995-01-11|1995-03-28|1995-02-09|NONE|AIR|ly regular deposits use | +66959|71929|46932|4|9|17108.28|0.04|0.08|A|F|1995-02-11|1995-03-18|1995-02-21|TAKE BACK RETURN|TRUCK|its atop the bold instr| +66959|905207|42762|5|46|55759.36|0.10|0.04|A|F|1995-03-01|1995-03-17|1995-03-21|COLLECT COD|RAIL|endencies wake carefully ac| +66984|291492|3998|1|35|51921.80|0.02|0.01|A|F|1992-12-06|1993-01-22|1993-01-01|COLLECT COD|FOB|eans. even, regular packages prin| +66984|92808|5310|2|17|30613.60|0.03|0.02|R|F|1993-03-03|1993-01-26|1993-03-07|COLLECT COD|SHIP|e slyly fluffily final theodolit| +66984|820681|33198|3|14|22422.96|0.09|0.03|A|F|1992-11-30|1993-01-10|1992-12-07|NONE|RAIL|equests. a| +66985|292320|42321|1|28|36744.68|0.10|0.07|R|F|1993-04-08|1993-02-25|1993-04-29|DELIVER IN PERSON|AIR|e fluffily final packages. e| +66985|12703|37704|2|7|11309.90|0.06|0.04|R|F|1993-03-10|1993-03-18|1993-03-11|COLLECT COD|RAIL|slyly bold warhorses are c| +66985|483757|21285|3|11|19148.03|0.09|0.01|A|F|1993-01-31|1993-02-22|1993-02-25|NONE|MAIL|. ironic instructions slee| +66985|489925|27453|4|22|42127.80|0.09|0.00|A|F|1993-03-29|1993-02-17|1993-04-24|NONE|RAIL|ly on the carefully final| +66985|153754|28761|5|26|47001.50|0.02|0.01|A|F|1993-01-26|1993-02-24|1993-02-01|DELIVER IN PERSON|FOB|. slyly ironic accounts cajole b| +66985|138942|1445|6|27|53485.38|0.09|0.04|R|F|1993-01-05|1993-02-09|1993-01-28|TAKE BACK RETURN|AIR|ckages are fluf| +66986|329228|4241|1|12|15086.52|0.05|0.02|R|F|1994-04-03|1994-04-11|1994-04-14|COLLECT COD|FOB|regular accounts wake special re| +66986|330613|43120|2|44|72318.40|0.01|0.07|R|F|1994-05-02|1994-05-08|1994-05-16|NONE|MAIL|nst the blithely regular dolphins. blithely| +66986|598917|36451|3|15|30238.35|0.00|0.05|R|F|1994-04-03|1994-05-18|1994-04-09|NONE|MAIL| Tiresias? carefully expres| +66987|904719|29756|1|17|29302.39|0.08|0.03|R|F|1995-02-21|1995-01-09|1995-03-18|TAKE BACK RETURN|SHIP|accounts wake above the quickly regular ti| +66987|606625|31650|2|30|45947.70|0.02|0.00|A|F|1995-02-12|1994-11-26|1995-02-23|COLLECT COD|RAIL| accounts. blithely ironic pi| +66987|536081|23612|3|27|30160.62|0.06|0.03|A|F|1995-01-14|1995-01-14|1995-02-09|COLLECT COD|AIR|xcuses. furiously regular warthogs ca| +66988|866544|4096|1|29|43804.50|0.08|0.06|R|F|1992-07-14|1992-09-01|1992-07-16|DELIVER IN PERSON|TRUCK|lithely regular packa| +66988|998329|35887|2|42|59945.76|0.04|0.06|A|F|1992-07-02|1992-07-31|1992-08-01|NONE|SHIP|long the carefully ironic instructions| +66989|939780|39781|1|14|25476.36|0.05|0.05|N|O|1996-07-17|1996-08-28|1996-07-26|COLLECT COD|TRUCK|deposits can boost about the quickly| +66989|878432|40950|2|11|15514.29|0.09|0.06|N|O|1996-08-11|1996-08-28|1996-08-22|DELIVER IN PERSON|AIR|courts. blithely even | +66989|792506|30052|3|34|54347.98|0.03|0.08|N|O|1996-09-06|1996-09-25|1996-09-22|NONE|TRUCK|silent ideas cajole. perman| +66989|635201|10226|4|29|32948.93|0.01|0.07|N|O|1996-08-31|1996-08-27|1996-09-20|COLLECT COD|REG AIR|blithely final dependencies. furiously slo| +66989|812399|49948|5|47|61633.45|0.07|0.05|N|O|1996-07-23|1996-09-04|1996-08-20|DELIVER IN PERSON|FOB|blithely. pend| +66989|978729|3768|6|42|75922.56|0.03|0.06|N|O|1996-07-28|1996-08-30|1996-08-19|DELIVER IN PERSON|REG AIR|nag blithely slyly even pinto beans. | +66990|82803|7806|1|7|12500.60|0.01|0.07|N|O|1997-05-18|1997-05-03|1997-05-28|COLLECT COD|RAIL| deposits. blithely fl| +66991|213810|13811|1|15|25857.00|0.02|0.06|N|O|1996-01-08|1996-02-27|1996-01-26|DELIVER IN PERSON|RAIL|quests. express, bold de| +66991|502005|14516|2|12|12083.76|0.02|0.03|N|O|1996-02-11|1996-01-21|1996-02-19|COLLECT COD|RAIL|e regular packages haggle blithely a| +66991|191514|29024|3|8|12844.08|0.08|0.04|N|O|1996-01-13|1996-02-13|1996-02-03|NONE|REG AIR|xes haggle carefully regular | +66991|775351|12897|4|5|7131.60|0.02|0.00|N|O|1996-01-23|1996-02-03|1996-01-25|COLLECT COD|MAIL| according| +67016|160887|10888|1|20|38957.60|0.04|0.06|A|F|1993-10-16|1993-09-15|1993-10-29|NONE|MAIL|al packages. ironic| +67016|27571|27572|2|46|68934.22|0.09|0.07|R|F|1993-07-06|1993-08-21|1993-07-20|TAKE BACK RETURN|RAIL|ly ironic acco| +67016|372002|47017|3|28|30071.72|0.09|0.00|R|F|1993-08-16|1993-09-06|1993-09-05|TAKE BACK RETURN|MAIL|ggle carefully quickly sile| +67017|35967|35968|1|27|51379.92|0.00|0.04|R|F|1993-03-02|1993-04-05|1993-03-10|DELIVER IN PERSON|SHIP|ealthy excuses integra| +67017|493305|5815|2|24|31158.72|0.04|0.00|A|F|1993-01-19|1993-04-06|1993-01-26|TAKE BACK RETURN|FOB|according to the slyly eve| +67017|969047|6605|3|6|6696.00|0.09|0.07|A|F|1993-04-06|1993-03-06|1993-05-05|NONE|MAIL|ts sleep re| +67017|765834|15835|4|2|3799.60|0.06|0.07|R|F|1993-03-17|1993-04-12|1993-04-04|TAKE BACK RETURN|REG AIR|to the sly| +67018|243290|5795|1|35|43164.80|0.04|0.05|N|O|1996-05-28|1996-04-22|1996-06-13|TAKE BACK RETURN|FOB|es. express, brave foxes w| +67018|973094|23095|2|31|36178.55|0.10|0.02|N|O|1996-06-17|1996-05-24|1996-07-05|DELIVER IN PERSON|SHIP|g the carefully pending packa| +67018|776419|13965|3|32|47852.16|0.07|0.04|N|O|1996-06-30|1996-05-07|1996-07-15|TAKE BACK RETURN|TRUCK|lites after t| +67018|264001|14002|4|18|17369.82|0.06|0.00|N|O|1996-07-12|1996-04-19|1996-07-18|NONE|TRUCK|slyly regular depo| +67019|537223|37224|1|23|28984.60|0.05|0.08|N|O|1997-06-01|1997-06-28|1997-06-23|NONE|REG AIR| packages sleep blithely express asym| +67019|104110|29115|2|10|11141.10|0.02|0.04|N|O|1997-06-07|1997-08-16|1997-07-01|COLLECT COD|AIR|le furiously slyly ironic d| +67020|132322|7327|1|24|32503.68|0.05|0.02|N|O|1996-06-06|1996-05-03|1996-06-16|COLLECT COD|REG AIR|gular theodolites hang against the| +67020|926618|39137|2|33|54270.81|0.03|0.05|N|O|1996-05-16|1996-05-06|1996-06-04|TAKE BACK RETURN|FOB|yly fluffily unusual acco| +67020|665392|15393|3|39|52937.04|0.10|0.06|N|O|1996-07-18|1996-06-01|1996-07-22|TAKE BACK RETURN|RAIL|e blithely quickly fin| +67021|158013|20517|1|10|10710.10|0.08|0.01|N|O|1998-05-05|1998-03-15|1998-05-15|NONE|RAIL|ly express requests sleep. busily| +67021|724441|49470|2|46|67408.86|0.03|0.00|N|O|1998-03-13|1998-04-23|1998-03-25|NONE|SHIP|s with the special warthogs | +67021|663478|13479|3|28|40360.32|0.10|0.04|N|O|1998-04-26|1998-05-10|1998-05-16|DELIVER IN PERSON|REG AIR|egular, re| +67021|63381|885|4|31|41675.78|0.02|0.00|N|O|1998-03-26|1998-05-11|1998-04-21|NONE|AIR|r requests are quick packa| +67022|3652|3653|1|8|12445.20|0.06|0.04|N|O|1997-04-12|1997-04-15|1997-04-22|TAKE BACK RETURN|MAIL| idle patterns acr| +67022|363690|1212|2|2|3507.36|0.03|0.01|N|O|1997-04-22|1997-03-25|1997-05-02|NONE|FOB| accounts | +67023|570364|20365|1|30|43030.20|0.09|0.08|N|O|1996-05-27|1996-08-17|1996-06-25|NONE|MAIL|ckages. final asymptotes cajole blit| +67023|101614|26619|2|48|77549.28|0.02|0.05|N|O|1996-09-17|1996-08-09|1996-10-09|COLLECT COD|RAIL|ully silent dependencie| +67023|816384|41417|3|38|49412.92|0.03|0.04|N|O|1996-08-11|1996-06-22|1996-09-08|DELIVER IN PERSON|TRUCK|affix furiously. unusual requests daz| +67023|964780|14781|4|1|1844.74|0.08|0.03|N|O|1996-07-14|1996-08-06|1996-08-12|DELIVER IN PERSON|AIR|heodolites grow pack| +67048|230682|43187|1|22|35478.74|0.00|0.06|N|F|1995-06-04|1995-06-28|1995-06-18|COLLECT COD|TRUCK|g the furiously silent p| +67048|59965|34968|2|6|11549.76|0.03|0.04|N|O|1995-07-14|1995-06-20|1995-07-24|DELIVER IN PERSON|AIR| cajole about the fluff| +67048|815971|3520|3|5|9434.65|0.07|0.02|A|F|1995-05-06|1995-07-09|1995-05-09|NONE|REG AIR|lent deposits. carefull| +67048|8726|21227|4|21|34329.12|0.06|0.01|N|F|1995-06-04|1995-06-03|1995-06-25|DELIVER IN PERSON|RAIL|hely among the| +67048|652848|15362|5|26|46821.06|0.04|0.02|R|F|1995-05-21|1995-07-05|1995-06-05|DELIVER IN PERSON|AIR|blithely above the slyly un| +67049|308372|8373|1|46|63496.56|0.01|0.08|R|F|1994-07-20|1994-06-15|1994-08-08|COLLECT COD|SHIP|. silent, express idea| +67049|792034|42035|2|36|40536.00|0.08|0.08|R|F|1994-07-17|1994-06-16|1994-08-10|COLLECT COD|RAIL|bove the s| +67049|702213|14728|3|9|10936.62|0.07|0.03|A|F|1994-03-31|1994-05-26|1994-04-20|DELIVER IN PERSON|MAIL|r requests. quickly f| +67049|84968|34969|4|26|50776.96|0.02|0.03|A|F|1994-07-04|1994-05-15|1994-07-29|TAKE BACK RETURN|RAIL|carefully regular fo| +67049|45229|45230|5|27|31703.94|0.00|0.03|R|F|1994-06-22|1994-06-21|1994-07-16|DELIVER IN PERSON|TRUCK|ter the enticingly express | +67049|162192|12193|6|44|55184.36|0.09|0.06|R|F|1994-04-12|1994-05-08|1994-05-02|DELIVER IN PERSON|TRUCK|ular excuses wake| +67049|957316|19836|7|48|65916.96|0.04|0.04|R|F|1994-04-17|1994-05-12|1994-05-11|NONE|SHIP| across the furiously regu| +67050|595127|45128|1|43|52550.30|0.09|0.03|A|F|1995-03-18|1995-05-16|1995-04-08|TAKE BACK RETURN|REG AIR|y regular warhorses along the | +67050|285305|22821|2|3|3870.87|0.02|0.00|N|F|1995-06-10|1995-04-10|1995-06-19|TAKE BACK RETURN|TRUCK|n requests wa| +67050|114092|26595|3|7|7742.63|0.07|0.01|A|F|1995-03-31|1995-04-11|1995-04-22|TAKE BACK RETURN|TRUCK|onic excuses about the si| +67050|544125|19146|4|28|32734.80|0.05|0.02|A|F|1995-05-15|1995-03-26|1995-06-04|NONE|AIR| ironic decoy| +67050|102494|40001|5|16|23943.84|0.02|0.04|A|F|1995-03-12|1995-03-23|1995-03-14|COLLECT COD|SHIP|ly permanent accounts. fluffily express in| +67050|603073|15586|6|11|10736.44|0.10|0.08|R|F|1995-06-05|1995-04-11|1995-06-11|COLLECT COD|AIR|final dependencie| +67051|914983|27502|1|11|21977.34|0.03|0.03|A|F|1994-04-17|1994-04-19|1994-04-18|COLLECT COD|TRUCK|ggle at the | +67051|105125|17628|2|17|19212.04|0.08|0.06|R|F|1994-03-24|1994-03-20|1994-04-03|COLLECT COD|MAIL|he ironic packages| +67051|832452|20001|3|17|23534.97|0.00|0.08|A|F|1994-04-05|1994-03-22|1994-04-17|COLLECT COD|REG AIR|boost across the blithel| +67051|17697|42698|4|28|45211.32|0.04|0.08|R|F|1994-03-08|1994-05-10|1994-03-25|TAKE BACK RETURN|TRUCK|en pinto be| +67052|198250|35760|1|38|51233.50|0.06|0.03|R|F|1992-02-24|1992-05-02|1992-03-20|TAKE BACK RETURN|AIR|ole furiously. slyl| +67052|986115|36116|2|3|3603.21|0.08|0.07|A|F|1992-03-12|1992-03-06|1992-03-29|TAKE BACK RETURN|SHIP| hang blithely exc| +67052|620518|8055|3|25|35962.00|0.04|0.01|A|F|1992-03-23|1992-03-14|1992-04-03|DELIVER IN PERSON|REG AIR|arefully furiously ironic asymp| +67052|37326|37327|4|16|20213.12|0.05|0.05|R|F|1992-02-19|1992-04-11|1992-03-19|TAKE BACK RETURN|TRUCK|phins affix across the furiously| +67052|332482|7495|5|19|28774.93|0.07|0.03|R|F|1992-04-21|1992-04-12|1992-05-21|NONE|REG AIR|lyly bold d| +67053|764841|2387|1|50|95290.50|0.00|0.00|R|F|1994-08-23|1994-09-16|1994-09-14|COLLECT COD|RAIL| nag quickly along th| +67053|668725|6265|2|13|22017.97|0.00|0.04|A|F|1994-10-13|1994-10-13|1994-10-17|COLLECT COD|REG AIR|eas. blithely even accounts are aro| +67053|249744|49745|3|42|71136.66|0.08|0.03|A|F|1994-08-21|1994-08-31|1994-09-02|NONE|RAIL|round the ironi| +67053|441844|16861|4|35|62503.70|0.00|0.03|A|F|1994-11-09|1994-08-24|1994-12-06|NONE|FOB| regular pains-- | +67053|71259|8763|5|36|44289.00|0.02|0.03|R|F|1994-08-07|1994-09-08|1994-08-30|DELIVER IN PERSON|SHIP| packages. caref| +67054|850316|12834|1|27|34189.29|0.04|0.05|R|F|1993-07-10|1993-09-21|1993-07-12|TAKE BACK RETURN|FOB|sly regular deposits; pendi| +67054|248320|35833|2|41|52000.71|0.09|0.01|R|F|1993-08-02|1993-08-16|1993-08-20|COLLECT COD|TRUCK|longside of t| +67054|503008|15519|3|33|33362.34|0.02|0.04|A|F|1993-07-01|1993-08-25|1993-07-06|NONE|FOB|special instruction| +67054|45616|8117|4|15|23424.15|0.06|0.00|R|F|1993-08-12|1993-08-13|1993-08-24|NONE|TRUCK|es sleep furiously among the blithely qui| +67055|807771|32804|1|8|13429.84|0.09|0.05|N|O|1996-07-15|1996-08-03|1996-07-28|DELIVER IN PERSON|SHIP|iously express foxes: unusual pa| +67055|206563|31572|2|32|47025.60|0.05|0.06|N|O|1996-09-14|1996-06-22|1996-09-30|NONE|RAIL|beans are blit| +67055|702678|27707|3|46|77309.44|0.02|0.01|N|O|1996-09-07|1996-08-01|1996-09-30|DELIVER IN PERSON|RAIL|ress, regular theodolites. regul| +67055|897508|35060|4|28|42152.88|0.02|0.01|N|O|1996-09-04|1996-06-27|1996-09-06|COLLECT COD|SHIP|ronic pinto bea| +67055|406101|31118|5|35|35247.80|0.10|0.04|N|O|1996-09-11|1996-06-30|1996-09-23|NONE|RAIL|ross the ironic, final theo| +67080|432830|7847|1|27|47595.87|0.01|0.02|N|O|1995-09-06|1995-10-03|1995-09-08|DELIVER IN PERSON|REG AIR|sly ironic i| +67080|570751|33263|2|6|10930.38|0.02|0.03|N|O|1995-10-19|1995-08-24|1995-11-09|NONE|AIR|usual deposits. final foxes haggle fur| +67080|602470|14983|3|30|41173.20|0.10|0.00|N|O|1995-09-02|1995-10-09|1995-09-14|NONE|TRUCK|iously alongside of the slyly | +67080|707039|7040|4|35|36610.00|0.01|0.03|N|O|1995-11-03|1995-09-29|1995-11-05|COLLECT COD|RAIL|n notornis. deposits use fluffily| +67080|191581|4085|5|18|30106.44|0.03|0.06|N|O|1995-09-13|1995-09-03|1995-09-23|NONE|TRUCK|ccounts haggle | +67080|896666|21701|6|23|38240.26|0.07|0.04|N|O|1995-08-22|1995-08-27|1995-09-20|NONE|REG AIR|des the slyly bold asy| +67080|261825|11826|7|17|30375.77|0.03|0.05|N|O|1995-09-25|1995-09-04|1995-10-02|DELIVER IN PERSON|SHIP| pending, even | +67081|478321|28322|1|47|61067.10|0.02|0.02|N|O|1995-11-12|1995-11-27|1995-12-02|DELIVER IN PERSON|SHIP| among the| +67081|135471|22978|2|36|54232.92|0.02|0.06|N|O|1995-11-15|1995-12-03|1995-11-17|DELIVER IN PERSON|TRUCK| integrate furiously final accounts.| +67081|854060|16578|3|31|31434.62|0.01|0.04|N|O|1996-02-14|1995-12-26|1996-02-24|COLLECT COD|AIR|ckly ironic platelets against| +67081|186033|11040|4|4|4476.12|0.01|0.08|N|O|1996-01-08|1995-12-25|1996-01-17|DELIVER IN PERSON|MAIL|ular instructions. qui| +67081|642346|4859|5|4|5153.24|0.10|0.06|N|O|1996-02-02|1995-12-02|1996-02-23|COLLECT COD|TRUCK| requests boost furiously | +67081|900984|38539|6|5|9924.70|0.05|0.05|N|O|1995-12-11|1995-11-18|1995-12-28|TAKE BACK RETURN|RAIL|pinto beans | +67081|822238|9787|7|46|53368.74|0.03|0.03|N|O|1996-02-07|1996-01-04|1996-02-14|NONE|FOB|ely. regular packages are. even| +67082|353550|16058|1|11|17638.94|0.09|0.01|A|F|1994-12-08|1995-01-03|1994-12-12|NONE|FOB|xpress deposits should wake acro| +67082|113400|13401|2|25|35335.00|0.05|0.04|A|F|1994-12-24|1994-12-12|1994-12-31|NONE|REG AIR|usly express packages among the fu| +67083|459277|9278|1|14|17307.50|0.10|0.05|A|F|1993-12-23|1994-01-26|1994-01-18|TAKE BACK RETURN|FOB|ronic, final deposits boost bli| +67083|57520|7521|2|50|73876.00|0.08|0.08|R|F|1994-02-23|1993-12-08|1994-03-11|DELIVER IN PERSON|FOB|wake. dolphins hag| +67083|737237|49752|3|38|48419.60|0.07|0.06|R|F|1993-12-31|1993-12-16|1994-01-30|DELIVER IN PERSON|RAIL|se pearls. patterns affix| +67083|727832|27833|4|28|52074.40|0.04|0.07|R|F|1993-11-07|1994-01-12|1993-11-09|COLLECT COD|REG AIR|ffily about | +67083|661923|11924|5|46|86704.94|0.01|0.07|R|F|1993-11-17|1994-01-17|1993-12-17|COLLECT COD|RAIL|e quickly. quickly sp| +67083|937591|12628|6|48|78170.40|0.07|0.00|R|F|1993-11-17|1994-01-18|1993-12-05|DELIVER IN PERSON|REG AIR|boost fluffily | +67084|89540|14543|1|28|42827.12|0.04|0.02|A|F|1992-09-30|1992-11-17|1992-10-25|COLLECT COD|FOB|refully final requests wake for t| +67085|925066|103|1|16|17456.32|0.08|0.05|N|O|1998-03-22|1998-02-12|1998-04-15|NONE|REG AIR|lly. furiously silent Tiresias us| +67085|574453|11987|2|36|54987.48|0.07|0.02|N|O|1998-02-27|1998-03-14|1998-03-16|NONE|REG AIR|kages eat idly care| +67085|822536|10085|3|42|61256.58|0.08|0.00|N|O|1998-02-07|1998-02-14|1998-02-20|COLLECT COD|AIR|ages wake slyly enticingly special inst| +67085|357355|19863|4|35|49431.90|0.09|0.03|N|O|1998-03-24|1998-03-20|1998-03-25|TAKE BACK RETURN|AIR|ress ideas a| +67085|61324|23826|5|44|56554.08|0.02|0.06|N|O|1998-04-29|1998-03-27|1998-05-18|DELIVER IN PERSON|RAIL|uses wake furi| +67085|671215|33729|6|41|48633.38|0.08|0.07|N|O|1998-03-22|1998-04-04|1998-04-08|TAKE BACK RETURN|REG AIR|lly express accounts. even packages boost | +67086|52385|14887|1|40|53495.20|0.01|0.05|N|O|1997-01-08|1996-11-13|1997-01-17|DELIVER IN PERSON|MAIL|foxes cajole slyly according to| +67086|421830|46847|2|42|73576.02|0.08|0.02|N|O|1996-12-20|1996-11-04|1996-12-29|NONE|RAIL|eans. platelets cajole| +67086|690723|15750|3|32|54838.08|0.07|0.00|N|O|1996-12-06|1996-12-28|1996-12-16|NONE|RAIL| carefully fin| +67086|973736|48775|4|8|14477.52|0.01|0.00|N|O|1996-10-11|1996-11-08|1996-10-20|COLLECT COD|FOB| nag busily furiously final | +67086|573185|10719|5|18|22646.88|0.05|0.07|N|O|1997-01-26|1996-12-14|1997-02-25|NONE|AIR|al requests. sl| +67086|509642|9643|6|40|66064.80|0.02|0.07|N|O|1996-11-23|1996-12-28|1996-12-23|DELIVER IN PERSON|RAIL| the carefully final de| +67087|558238|20750|1|29|37590.09|0.00|0.02|A|F|1995-04-27|1995-05-05|1995-05-22|DELIVER IN PERSON|AIR|ffily ironic theodolit| +67087|293559|31075|2|5|7762.70|0.02|0.07|N|O|1995-06-27|1995-06-14|1995-07-23|COLLECT COD|FOB|se along the | +67087|836253|23802|3|16|19027.36|0.02|0.06|R|F|1995-05-20|1995-05-05|1995-06-14|COLLECT COD|TRUCK|e slowly ironic instructions. final| +67112|923872|36391|1|36|68249.88|0.04|0.02|A|F|1993-03-27|1993-03-19|1993-04-12|DELIVER IN PERSON|RAIL|ns. furiously express ideas affix furiously| +67112|516189|16190|2|3|3615.48|0.02|0.02|A|F|1993-02-06|1993-03-14|1993-03-07|COLLECT COD|RAIL|ies? regular foxe| +67112|573002|10536|3|2|2149.96|0.05|0.04|A|F|1992-12-30|1993-03-23|1993-01-09|TAKE BACK RETURN|MAIL| fluffily bold requests. furio| +67112|432259|19784|4|30|35736.90|0.00|0.04|R|F|1993-02-15|1993-03-22|1993-03-01|NONE|AIR|dolites. c| +67112|969017|19018|5|4|4343.88|0.02|0.04|R|F|1993-02-09|1993-02-20|1993-02-10|COLLECT COD|AIR|y. blithely regular courts lose req| +67112|256313|43829|6|38|48233.40|0.04|0.05|A|F|1993-02-04|1993-02-03|1993-02-05|COLLECT COD|TRUCK| wake furiously against the asym| +67112|851136|38688|7|32|34786.88|0.02|0.06|A|F|1993-01-06|1993-03-16|1993-01-21|DELIVER IN PERSON|MAIL|usual courts. ca| +67113|29132|41633|1|30|31833.90|0.01|0.05|R|F|1992-05-28|1992-03-29|1992-06-14|TAKE BACK RETURN|SHIP|eep furious| +67113|608051|33076|2|50|47951.00|0.07|0.08|A|F|1992-05-30|1992-05-09|1992-06-07|DELIVER IN PERSON|SHIP|r requests shall | +67114|419590|7115|1|16|24153.12|0.04|0.04|A|F|1992-04-21|1992-04-19|1992-04-25|DELIVER IN PERSON|SHIP|ages. slyly special ideas along the | +67114|41410|3911|2|17|22973.97|0.00|0.00|R|F|1992-03-08|1992-05-21|1992-03-14|COLLECT COD|REG AIR|. instruct| +67114|973153|10711|3|13|15939.43|0.06|0.08|A|F|1992-06-21|1992-05-21|1992-06-27|COLLECT COD|SHIP| requests. furiously even foxes nag | +67114|767182|4728|4|9|11242.35|0.03|0.08|A|F|1992-06-08|1992-03-24|1992-06-13|COLLECT COD|SHIP| serve about the slowly ironic excuses| +67114|27215|14716|5|41|46830.61|0.06|0.05|R|F|1992-04-08|1992-05-10|1992-04-12|DELIVER IN PERSON|MAIL|pendencies acros| +67115|780047|17593|1|32|36064.32|0.03|0.03|N|O|1995-12-19|1996-01-20|1995-12-20|TAKE BACK RETURN|FOB|to the blithely special pinto beans. furiou| +67115|237498|25011|2|47|67467.56|0.03|0.01|N|O|1996-02-17|1996-01-04|1996-02-26|COLLECT COD|MAIL|quickly regular dependencies sleep f| +67115|623211|48236|3|34|38562.12|0.02|0.04|N|O|1996-02-09|1996-01-10|1996-03-08|COLLECT COD|AIR|eodolites | +67115|296429|33945|4|9|12828.69|0.10|0.04|N|O|1996-02-08|1996-02-01|1996-03-03|TAKE BACK RETURN|SHIP|. theodolites after the unusual, pending d| +67115|75997|13501|5|17|33540.83|0.05|0.01|N|O|1996-02-13|1996-01-09|1996-03-01|COLLECT COD|TRUCK|ts affix quickly even ideas. even ins| +67115|276808|39314|6|45|80315.55|0.10|0.06|N|O|1996-01-15|1996-02-11|1996-01-23|DELIVER IN PERSON|RAIL| are blithely-- ruthless pa| +67115|296894|46895|7|23|43490.24|0.05|0.03|N|O|1996-01-26|1996-01-08|1996-01-30|NONE|SHIP|yly regular hockey p| +67116|889304|26856|1|4|5173.04|0.05|0.06|A|F|1994-04-29|1994-04-23|1994-05-09|TAKE BACK RETURN|TRUCK|sts sleep slyly. ironic packag| +67116|528382|40893|2|31|43721.16|0.01|0.04|A|F|1994-03-23|1994-05-28|1994-04-15|TAKE BACK RETURN|SHIP| are. ironic deposits a| +67117|268931|6447|1|39|74096.88|0.07|0.02|A|F|1993-10-18|1993-09-15|1993-10-28|DELIVER IN PERSON|SHIP| the furiously regular| +67117|917388|4943|2|50|70267.00|0.00|0.02|A|F|1993-09-07|1993-10-02|1993-09-17|COLLECT COD|TRUCK|ts cajole boldly after the| +67117|526405|38916|3|42|60117.96|0.10|0.08|A|F|1993-09-15|1993-09-15|1993-09-22|COLLECT COD|MAIL|und the bravely fi| +67117|281454|31455|4|18|25837.92|0.01|0.00|A|F|1993-09-19|1993-09-26|1993-09-29|TAKE BACK RETURN|MAIL| furiously busily spe| +67117|383531|21053|5|48|77496.96|0.06|0.00|A|F|1993-09-05|1993-10-03|1993-09-26|NONE|FOB|ts near the grouches serve blithely f| +67118|791106|3622|1|41|49079.87|0.05|0.00|R|F|1993-12-16|1993-11-14|1994-01-11|DELIVER IN PERSON|MAIL| regular depend| +67118|115067|2574|2|12|12984.72|0.01|0.06|R|F|1993-11-22|1993-11-29|1993-12-08|COLLECT COD|RAIL|ages are above the blithely re| +67118|926884|26885|3|8|15286.72|0.02|0.04|R|F|1994-01-03|1993-12-04|1994-01-25|NONE|TRUCK|atelets. carefully final ideas sleep| +67118|129045|41548|4|13|13962.52|0.02|0.04|A|F|1994-01-04|1993-11-21|1994-01-09|TAKE BACK RETURN|TRUCK|usual ideas wake fluf| +67118|845101|20134|5|16|16736.96|0.08|0.01|A|F|1993-11-05|1993-12-06|1993-11-10|TAKE BACK RETURN|SHIP|s affix blithely beneath the| +67119|333805|8818|1|13|23904.27|0.09|0.07|N|O|1995-12-10|1995-12-30|1995-12-22|TAKE BACK RETURN|MAIL|eep slyly. fluffily express pinto bea| +67144|632929|20466|1|27|50271.03|0.10|0.04|N|O|1996-01-18|1996-02-01|1996-02-09|TAKE BACK RETURN|MAIL|ckly even packa| +67144|624327|49352|2|14|17518.06|0.01|0.01|N|O|1996-01-05|1996-02-04|1996-02-01|TAKE BACK RETURN|REG AIR|usly regular ideas are furiously ins| +67144|48347|35848|3|42|54404.28|0.07|0.01|N|O|1996-04-03|1996-02-13|1996-04-23|TAKE BACK RETURN|AIR|o cajole blithely requ| +67144|564086|39109|4|30|34501.80|0.00|0.06|N|O|1996-01-05|1996-02-01|1996-01-26|DELIVER IN PERSON|SHIP|carefully final foxes integrate. caref| +67145|987151|12190|1|48|59429.28|0.02|0.07|A|F|1992-05-20|1992-05-14|1992-06-13|NONE|SHIP|refully express pinto | +67145|37899|37900|2|13|23879.57|0.04|0.00|R|F|1992-04-30|1992-05-17|1992-05-02|NONE|FOB|fily accor| +67146|238950|13959|1|23|43445.62|0.05|0.05|N|O|1996-12-15|1996-12-07|1996-12-29|DELIVER IN PERSON|REG AIR|ruthlessly? blithe| +67146|26652|1653|2|41|64724.65|0.10|0.04|N|O|1996-10-28|1996-12-13|1996-11-19|COLLECT COD|REG AIR|ld packages are furiously even account| +67146|931327|6364|3|9|12224.52|0.01|0.04|N|O|1997-01-13|1997-01-06|1997-02-01|NONE|REG AIR|its. ideas integrate furiously | +67147|581424|31425|1|4|6021.60|0.03|0.07|N|O|1996-02-13|1996-04-16|1996-03-12|TAKE BACK RETURN|MAIL|l packages; carefully unusual wart| +67147|981797|19355|2|18|33817.50|0.01|0.00|N|O|1996-02-13|1996-05-03|1996-03-07|COLLECT COD|MAIL|final theodo| +67147|53679|3680|3|24|39184.08|0.06|0.01|N|O|1996-04-20|1996-04-26|1996-05-20|COLLECT COD|RAIL|packages. | +67147|169573|44580|4|9|14783.13|0.00|0.00|N|O|1996-03-22|1996-03-11|1996-04-01|NONE|MAIL|nic pinto beans are furiously. unusual| +67147|2584|15085|5|20|29731.60|0.02|0.02|N|O|1996-03-21|1996-04-08|1996-04-16|NONE|AIR| are slyly. carefully final accounts| +67148|388084|13099|1|28|32817.96|0.03|0.00|N|O|1997-06-03|1997-05-26|1997-07-01|NONE|SHIP|ilent packages. furiously unusual accounts| +67148|517946|17947|2|12|23567.04|0.04|0.00|N|O|1997-03-22|1997-04-19|1997-04-12|DELIVER IN PERSON|TRUCK|ully ironic foxes c| +67148|102793|27798|3|20|35915.80|0.02|0.06|N|O|1997-03-26|1997-05-15|1997-04-09|DELIVER IN PERSON|FOB|ly about th| +67148|633769|46282|4|22|37460.06|0.08|0.05|N|O|1997-06-18|1997-06-10|1997-06-30|DELIVER IN PERSON|TRUCK|pending requests. carefully regular| +67148|744271|44272|5|18|23674.32|0.08|0.00|N|O|1997-06-11|1997-06-18|1997-06-26|NONE|FOB|ar pinto beans; quickly sil| +67148|948826|48827|6|23|43119.94|0.07|0.08|N|O|1997-05-13|1997-05-31|1997-06-06|DELIVER IN PERSON|TRUCK|e furiously even packages. q| +67149|219454|44463|1|18|24721.92|0.02|0.04|N|O|1996-10-17|1996-07-30|1996-11-07|NONE|SHIP|e, permanent pl| +67150|231487|6496|1|49|69505.03|0.07|0.04|N|O|1998-06-04|1998-05-01|1998-06-22|NONE|MAIL|es after the carefully ironic| +67151|229062|4071|1|23|22794.15|0.02|0.00|A|F|1993-09-04|1993-09-17|1993-09-30|DELIVER IN PERSON|TRUCK|y unusual accounts wake slyly. silentl| +67151|830015|30016|2|49|46303.53|0.04|0.05|R|F|1993-07-12|1993-08-08|1993-07-22|NONE|AIR|ial, unusual excuses sle| +67151|45809|8310|3|37|64927.60|0.01|0.03|R|F|1993-08-02|1993-10-05|1993-08-18|COLLECT COD|MAIL|the blithely final| +67151|902242|2243|4|13|16174.60|0.00|0.04|R|F|1993-10-17|1993-09-19|1993-11-08|NONE|REG AIR|al gifts wake fluffily. carefull| +67151|970802|33322|5|42|78655.92|0.02|0.06|A|F|1993-10-29|1993-09-06|1993-11-20|DELIVER IN PERSON|RAIL|slyly unusual deposits-| +67176|998095|35653|1|34|40563.70|0.06|0.06|A|F|1994-02-13|1994-01-12|1994-03-07|COLLECT COD|SHIP|yly slyly regula| +67176|973817|36337|2|27|51050.79|0.03|0.03|R|F|1993-10-31|1993-12-26|1993-11-10|DELIVER IN PERSON|TRUCK|inal dependencies us| +67176|927131|39650|3|50|57904.50|0.07|0.00|R|F|1994-01-10|1994-01-04|1994-01-28|TAKE BACK RETURN|RAIL| according to the thin| +67176|283915|46421|4|35|66461.50|0.07|0.02|A|F|1994-01-08|1994-01-13|1994-01-25|DELIVER IN PERSON|REG AIR|final pinto beans. even, regular r| +67176|757608|7609|5|17|28314.69|0.02|0.06|A|F|1993-12-02|1993-12-15|1994-01-01|TAKE BACK RETURN|REG AIR|s wake inside the blithely regular requ| +67176|113760|38765|6|28|49665.28|0.05|0.08|A|F|1994-01-05|1994-01-10|1994-01-24|NONE|MAIL|ts after the | +67176|960097|22617|7|33|38182.65|0.01|0.01|A|F|1993-12-05|1994-01-08|1993-12-14|NONE|TRUCK|itaphs-- slyly pe| +67177|337569|12582|1|38|61048.90|0.00|0.01|N|O|1996-09-26|1996-09-19|1996-10-06|TAKE BACK RETURN|AIR|pendencies. furiously bold dolphin| +67178|915949|15950|1|39|76631.10|0.06|0.03|A|F|1993-11-04|1993-10-18|1993-11-06|COLLECT COD|RAIL|inal somas sleep furiously within the caref| +67178|338236|25755|2|18|22935.96|0.08|0.05|A|F|1993-09-26|1993-11-25|1993-10-25|DELIVER IN PERSON|MAIL|oost slyly dependencies. f| +67178|724956|37471|3|27|53484.84|0.05|0.01|R|F|1993-10-16|1993-10-28|1993-11-14|DELIVER IN PERSON|TRUCK|e foxes. carefully ironic pinto beans along| +67179|71239|33741|1|45|54460.35|0.03|0.04|N|O|1998-07-24|1998-07-14|1998-07-26|TAKE BACK RETURN|RAIL|ss pinto beans boost bravely against | +67179|311795|11796|2|5|9033.90|0.10|0.04|N|O|1998-06-13|1998-06-17|1998-07-08|NONE|RAIL|ly express dependenci| +67179|336462|23981|3|5|7492.25|0.00|0.01|N|O|1998-08-08|1998-07-08|1998-09-02|COLLECT COD|MAIL|ithely ironic | +67180|715324|15325|1|34|45535.86|0.06|0.08|R|F|1994-08-31|1994-09-01|1994-09-15|TAKE BACK RETURN|MAIL|sleep slyly pains. deposits t| +67180|439822|39823|2|12|21141.60|0.08|0.02|R|F|1994-07-04|1994-09-12|1994-07-25|TAKE BACK RETURN|RAIL|ix blithely regular, special theodol| +67180|83951|8954|3|24|46438.80|0.02|0.05|R|F|1994-08-13|1994-08-27|1994-09-08|NONE|MAIL|cial courts. slyly | +67180|963725|38764|4|15|26830.20|0.07|0.04|A|F|1994-07-25|1994-09-24|1994-07-26|COLLECT COD|MAIL|ly ironic theodolites. careful| +67180|310378|22885|5|19|26378.84|0.08|0.05|A|F|1994-08-31|1994-09-13|1994-09-07|NONE|TRUCK|ffily bold packages. express platelet| +67180|516516|29027|6|45|68962.05|0.02|0.01|A|F|1994-07-12|1994-08-05|1994-07-31|NONE|RAIL|lithely acros| +67181|889153|14188|1|43|49110.73|0.04|0.02|N|O|1996-02-19|1996-01-13|1996-03-15|DELIVER IN PERSON|MAIL|ly ironic reque| +67181|990299|27857|2|31|43066.75|0.00|0.00|N|O|1996-01-21|1996-01-19|1996-02-05|DELIVER IN PERSON|SHIP| foxes. unusual accounts alongside of | +67181|940649|40650|3|36|60825.60|0.04|0.08|N|O|1996-02-25|1996-01-09|1996-03-14|NONE|SHIP|inal pinto| +67182|746937|21966|1|23|45629.70|0.10|0.08|A|F|1992-05-16|1992-04-20|1992-06-08|DELIVER IN PERSON|SHIP|lets eat across the regular, bold req| +67182|768572|43603|2|16|26248.64|0.10|0.07|R|F|1992-03-12|1992-04-27|1992-03-28|NONE|AIR| ironic accounts w| +67182|381289|31290|3|13|17813.51|0.00|0.07|R|F|1992-05-06|1992-05-27|1992-06-05|COLLECT COD|SHIP|ly even accounts. pending, regular deposit| +67182|309993|9994|4|15|30044.70|0.04|0.05|R|F|1992-06-01|1992-04-09|1992-06-07|COLLECT COD|REG AIR|ons cajole acros| +67182|43303|30804|5|48|59822.40|0.03|0.04|A|F|1992-05-03|1992-04-03|1992-05-13|NONE|MAIL|yly ruthlessly permanent dep| +67182|781309|18855|6|13|18073.51|0.07|0.02|R|F|1992-05-06|1992-04-04|1992-05-17|NONE|FOB| after the quickl| +67183|90234|27738|1|5|6121.15|0.07|0.00|A|F|1994-08-14|1994-09-08|1994-08-30|DELIVER IN PERSON|TRUCK|es. bold requ| +67183|560284|47818|2|24|32262.24|0.04|0.07|A|F|1994-09-25|1994-08-24|1994-09-28|COLLECT COD|RAIL|. regular platelets boost. sly| +67208|49774|49775|1|8|13790.16|0.01|0.08|R|F|1994-12-12|1995-01-29|1994-12-24|TAKE BACK RETURN|RAIL|jole furiously. ironi| +67208|541702|41703|2|12|20924.16|0.02|0.05|A|F|1995-01-29|1995-02-01|1995-02-17|COLLECT COD|FOB|asymptotes wake blithely blit| +67208|379327|4342|3|35|49220.85|0.01|0.08|R|F|1995-03-12|1995-02-11|1995-03-31|DELIVER IN PERSON|FOB|ctions are finally after the | +67208|346969|34488|4|26|52414.70|0.07|0.03|R|F|1995-01-29|1995-03-08|1995-02-16|DELIVER IN PERSON|RAIL|ns. accounts cajole. b| +67209|367374|29882|1|35|50447.60|0.09|0.03|N|O|1997-09-07|1997-08-19|1997-10-05|TAKE BACK RETURN|TRUCK|ly express instruction| +67209|448899|23916|2|47|86849.89|0.07|0.03|N|O|1997-07-21|1997-09-26|1997-07-26|NONE|FOB|haggle final, even excuses. ironic, bold| +67209|639759|14784|3|31|52660.32|0.04|0.02|N|O|1997-07-03|1997-09-25|1997-07-09|NONE|RAIL|ages. fluffily regular asymptot| +67209|429079|4096|4|39|39313.95|0.10|0.08|N|O|1997-10-05|1997-08-02|1997-10-06|TAKE BACK RETURN|AIR|boost blithely regular, bold deposits.| +67209|521872|34383|5|32|60603.20|0.10|0.08|N|O|1997-08-03|1997-08-03|1997-08-04|NONE|TRUCK|ic dolphins wake blithely. iro| +67209|100389|390|6|26|36123.88|0.05|0.00|N|O|1997-09-01|1997-08-15|1997-09-13|DELIVER IN PERSON|REG AIR|egrate slyly regular packa| +67210|368062|18063|1|38|42941.90|0.01|0.00|A|F|1993-10-13|1993-10-25|1993-10-16|DELIVER IN PERSON|MAIL|nto beans. furiously final grouches nag ca| +67211|163681|1191|1|7|12212.76|0.00|0.06|N|O|1996-12-30|1996-12-25|1997-01-01|NONE|MAIL|after the furiousl| +67211|981341|43861|2|36|51202.80|0.09|0.02|N|O|1996-10-23|1996-11-04|1996-11-14|DELIVER IN PERSON|RAIL|e of the idl| +67211|387398|37399|3|44|65356.72|0.04|0.06|N|O|1996-10-16|1996-11-11|1996-10-20|COLLECT COD|SHIP|efully special platelets. pinto beans was| +67211|986886|36887|4|48|94696.32|0.06|0.04|N|O|1996-10-30|1996-11-10|1996-11-24|DELIVER IN PERSON|MAIL|onic instructions about the express ac| +67211|587254|24788|5|10|13412.30|0.03|0.02|N|O|1996-10-08|1996-12-11|1996-10-16|DELIVER IN PERSON|MAIL|r accounts sleep doggedly. pending | +67212|11912|24413|1|29|52893.39|0.10|0.08|A|F|1993-07-21|1993-08-30|1993-08-18|TAKE BACK RETURN|RAIL| final packages are blit| +67212|199356|49357|2|22|32017.70|0.10|0.06|A|F|1993-08-05|1993-07-20|1993-08-26|COLLECT COD|AIR|haggle unusual excuses. furiously ironic| +67212|563708|13709|3|19|33661.92|0.09|0.07|A|F|1993-09-20|1993-08-04|1993-09-29|TAKE BACK RETURN|FOB|ke fluffily after the slyly u| +67212|235914|35915|4|30|55497.00|0.07|0.05|A|F|1993-06-20|1993-08-22|1993-06-29|DELIVER IN PERSON|FOB|eodolites. excuses should haggle bli| +67212|991516|4036|5|38|61083.86|0.00|0.05|A|F|1993-06-15|1993-07-19|1993-06-24|TAKE BACK RETURN|RAIL|ts. silent, | +67212|406331|31348|6|4|4949.24|0.06|0.03|A|F|1993-07-13|1993-07-06|1993-07-17|TAKE BACK RETURN|AIR|y ironic asymptotes along the i| +67212|195947|8451|7|13|26558.22|0.06|0.02|A|F|1993-09-24|1993-07-16|1993-10-02|DELIVER IN PERSON|SHIP|gular accounts. slyly f| +67213|269496|32002|1|37|54222.76|0.00|0.06|N|O|1996-01-01|1995-11-25|1996-01-10|DELIVER IN PERSON|SHIP|t asymptotes. carefully final package| +67213|417152|29661|2|43|45972.59|0.06|0.08|N|O|1995-11-10|1995-12-25|1995-12-03|DELIVER IN PERSON|TRUCK|hely even requests. requests boos| +67213|66720|4224|3|22|37107.84|0.05|0.08|N|O|1995-12-24|1995-12-15|1996-01-18|DELIVER IN PERSON|REG AIR|oss the theodolites. i| +67214|251937|1938|1|48|90668.16|0.04|0.04|N|O|1997-04-03|1997-05-05|1997-04-06|DELIVER IN PERSON|RAIL|ld accounts integrate fluffily | +67214|291373|28889|2|36|49116.96|0.01|0.03|N|O|1997-03-21|1997-04-27|1997-04-20|NONE|AIR|ss ideas haggle carefully accord| +67214|93734|31238|3|34|58742.82|0.06|0.05|N|O|1997-05-25|1997-04-19|1997-05-28|NONE|REG AIR|across the platelets. furiously bold id| +67214|386531|49039|4|11|17792.72|0.04|0.01|N|O|1997-04-12|1997-05-22|1997-05-12|TAKE BACK RETURN|MAIL|ggle fluffi| +67214|419289|6814|5|47|56788.22|0.01|0.05|N|O|1997-04-16|1997-05-27|1997-04-27|TAKE BACK RETURN|REG AIR| after the quickly sl| +67215|480144|5163|1|15|16861.80|0.09|0.03|A|F|1994-02-03|1993-11-14|1994-02-08|NONE|MAIL|foxes-- accounts since the regular packages| +67215|780089|42605|2|49|57283.45|0.05|0.03|R|F|1993-11-28|1993-11-25|1993-12-26|TAKE BACK RETURN|MAIL|regular instructions ac| +67215|955802|43360|3|21|39012.96|0.01|0.02|A|F|1993-11-27|1993-12-10|1993-12-05|NONE|FOB|final foxes haggle after the slyly ir| +67240|371015|21016|1|43|46698.00|0.06|0.03|R|F|1994-04-08|1994-04-26|1994-04-16|COLLECT COD|RAIL| special foxes use quickly along the| +67240|644180|6693|2|38|42717.70|0.04|0.00|A|F|1994-04-13|1994-05-30|1994-04-19|DELIVER IN PERSON|RAIL|y final deposits. quickly re| +67240|732097|32098|3|2|2258.12|0.09|0.01|R|F|1994-03-27|1994-04-08|1994-04-19|NONE|SHIP|play blithely against the even packages. fl| +67240|337934|12947|4|13|25634.96|0.03|0.00|R|F|1994-05-17|1994-05-22|1994-05-22|TAKE BACK RETURN|RAIL|egular, final accounts cajole slyly agains| +67241|632374|7399|1|9|11757.06|0.04|0.05|N|O|1995-08-24|1995-09-14|1995-09-05|DELIVER IN PERSON|TRUCK|y unusual th| +67241|297235|34751|2|37|45592.14|0.02|0.03|N|O|1995-10-16|1995-09-11|1995-11-04|NONE|FOB| slowly after the spec| +67242|471688|34198|1|46|76344.36|0.10|0.05|N|O|1998-03-09|1998-03-08|1998-04-02|DELIVER IN PERSON|TRUCK|instructions. carefully | +67243|857085|32120|1|24|25008.96|0.07|0.05|N|O|1997-04-14|1997-04-05|1997-04-19|DELIVER IN PERSON|SHIP|ave excuses. specia| +67243|16164|28665|2|41|44286.56|0.05|0.02|N|O|1997-05-02|1997-04-28|1997-05-30|NONE|SHIP|nic theodolites wake furiously| +67244|836392|11425|1|47|62432.45|0.06|0.05|N|O|1996-06-07|1996-05-05|1996-06-17|TAKE BACK RETURN|RAIL|counts. bl| +67245|156926|19430|1|48|95180.16|0.09|0.04|R|F|1992-04-09|1992-04-19|1992-05-02|TAKE BACK RETURN|SHIP|l ideas. final excuses are slyly | +67245|452420|14930|2|5|6862.00|0.06|0.05|A|F|1992-04-28|1992-03-16|1992-04-29|DELIVER IN PERSON|MAIL|refully sil| +67246|161336|48846|1|18|25151.94|0.05|0.08|R|F|1992-08-17|1992-07-21|1992-09-04|DELIVER IN PERSON|FOB|e furiously blithely regular reques| +67246|559700|22212|2|21|36953.28|0.05|0.04|R|F|1992-09-19|1992-08-25|1992-09-28|TAKE BACK RETURN|SHIP|ajole idly accounts| +67246|865463|40498|3|4|5713.68|0.07|0.06|R|F|1992-09-28|1992-07-21|1992-09-30|NONE|RAIL| with the quickly ironi| +67246|822041|47074|4|38|36594.00|0.07|0.08|R|F|1992-08-06|1992-08-06|1992-08-08|NONE|REG AIR|quickly along the blithely regular asympto| +67246|30552|30553|5|23|34098.65|0.04|0.01|A|F|1992-08-27|1992-08-22|1992-09-20|NONE|AIR|the slyly ironic accounts are blithely | +67247|962791|37830|1|19|35221.25|0.00|0.06|N|O|1997-06-07|1997-06-18|1997-06-21|TAKE BACK RETURN|MAIL|g to the ironic | +67247|612278|24791|2|17|20234.08|0.01|0.01|N|O|1997-04-28|1997-05-07|1997-05-22|DELIVER IN PERSON|REG AIR|y. even, final accounts cajole fu| +67247|547210|47211|3|15|18857.85|0.01|0.03|N|O|1997-07-06|1997-05-14|1997-07-30|COLLECT COD|REG AIR| wake brave| +67247|947659|22696|4|43|73384.23|0.01|0.05|N|O|1997-07-21|1997-05-07|1997-07-25|DELIVER IN PERSON|FOB|t packages haggle furi| +67272|580750|30751|1|6|10984.38|0.03|0.04|N|O|1998-10-20|1998-08-27|1998-11-17|TAKE BACK RETURN|REG AIR|carefully special ide| +67273|708985|46528|1|36|71782.20|0.03|0.04|R|F|1994-11-02|1994-12-17|1994-11-11|TAKE BACK RETURN|RAIL|ke blithely after the carefully regular| +67273|909577|34614|2|33|52355.49|0.02|0.05|A|F|1994-09-26|1994-11-06|1994-10-23|COLLECT COD|SHIP|onic notornis poach carefully with the bli| +67273|252319|2320|3|8|10170.40|0.07|0.00|R|F|1995-01-02|1994-12-10|1995-01-23|DELIVER IN PERSON|REG AIR|s wake above the slyly express dolphin| +67273|710365|10366|4|11|15128.63|0.06|0.07|R|F|1994-09-25|1994-11-07|1994-10-18|COLLECT COD|SHIP|ously special deposits boost blithely| +67273|99125|24128|5|32|35971.84|0.08|0.06|A|F|1995-01-19|1994-11-22|1995-02-05|COLLECT COD|MAIL|luffily? bold, even instructi| +67273|981662|19220|6|39|68001.18|0.02|0.04|R|F|1994-11-17|1994-12-09|1994-12-14|NONE|MAIL|above the silent, even accounts doubt sly| +67273|791240|3756|7|47|62566.87|0.01|0.04|R|F|1995-01-11|1994-11-07|1995-01-27|NONE|AIR|r packages are slyly after the i| +67274|357314|32329|1|31|42510.30|0.06|0.05|N|O|1997-11-08|1997-11-12|1997-11-25|NONE|AIR|players sleep | +67274|371649|21650|2|14|24088.82|0.10|0.03|N|O|1998-01-05|1997-11-21|1998-01-06|COLLECT COD|MAIL|e bravely. s| +67274|298248|10754|3|22|27417.06|0.08|0.01|N|O|1997-11-19|1997-11-04|1997-12-04|COLLECT COD|AIR|arefully. quickly u| +67274|649247|49248|4|33|39474.93|0.03|0.04|N|O|1997-12-21|1997-12-29|1998-01-06|TAKE BACK RETURN|REG AIR|d dolphins. carefu| +67274|885459|35460|5|38|54887.58|0.02|0.01|N|O|1998-01-07|1997-11-18|1998-01-26|NONE|FOB|heodolites. carefully even theodolites na| +67275|308066|33079|1|41|44036.05|0.02|0.00|A|F|1994-04-24|1994-05-04|1994-05-24|DELIVER IN PERSON|REG AIR|y special accounts. furiously even requ| +67275|656605|44145|2|4|6246.28|0.05|0.01|R|F|1994-04-24|1994-05-23|1994-05-14|TAKE BACK RETURN|RAIL|quietly along the quick| +67275|551767|1768|3|7|12731.18|0.06|0.08|A|F|1994-05-18|1994-06-02|1994-05-20|COLLECT COD|MAIL|press foxes. furiously ironic pinto | +67275|540703|15724|4|37|64516.16|0.03|0.08|R|F|1994-05-07|1994-05-14|1994-05-25|COLLECT COD|TRUCK|de of the furiously reg| +67276|329305|16824|1|28|37360.12|0.04|0.01|A|F|1993-05-02|1993-02-28|1993-05-09|COLLECT COD|MAIL| final accounts. carefully final| +67276|624038|36551|2|30|28860.00|0.04|0.06|A|F|1993-03-23|1993-04-18|1993-04-20|DELIVER IN PERSON|FOB|st. fluffily final deposits shall wa| +67277|733218|8247|1|47|58805.46|0.03|0.01|N|O|1996-05-14|1996-08-03|1996-05-22|NONE|FOB| bold packages| +67277|184058|9065|2|32|36545.60|0.01|0.08|N|O|1996-08-16|1996-06-20|1996-08-20|TAKE BACK RETURN|AIR|hely. regular, regular theodolites | +67277|456592|44120|3|38|58845.66|0.10|0.04|N|O|1996-08-13|1996-07-31|1996-09-08|DELIVER IN PERSON|MAIL|sly unusual instructions. qu| +67277|926347|26348|4|26|35705.80|0.00|0.00|N|O|1996-06-01|1996-07-03|1996-06-13|NONE|FOB|its sleep furiously pending foxes| +67277|110406|35411|5|2|2832.80|0.09|0.00|N|O|1996-07-25|1996-07-22|1996-08-21|COLLECT COD|AIR|nal requests cajol| +67277|590312|40313|6|20|28045.80|0.05|0.03|N|O|1996-08-13|1996-06-14|1996-08-26|COLLECT COD|RAIL|final asymptotes behin| +67278|426390|38899|1|42|55287.54|0.00|0.06|N|O|1997-10-08|1997-08-21|1997-11-03|COLLECT COD|TRUCK|e slyly ironic courts wake against the| +67278|335445|35446|2|14|20726.02|0.00|0.07|N|O|1997-09-14|1997-08-14|1997-09-15|NONE|SHIP|regular, regular ideas. blithely regula| +67278|816775|41808|3|6|10150.38|0.00|0.07|N|O|1997-10-19|1997-09-14|1997-11-18|COLLECT COD|SHIP|es. even foxes cajole abou| +67278|522581|10112|4|21|33674.76|0.02|0.02|N|O|1997-07-24|1997-08-15|1997-07-29|DELIVER IN PERSON|SHIP|p furiously final theodoli| +67278|3937|3938|5|8|14727.44|0.07|0.02|N|O|1997-07-04|1997-08-20|1997-07-09|TAKE BACK RETURN|RAIL|aggle quickly according to| +67279|759349|46895|1|22|30982.82|0.06|0.03|R|F|1993-11-08|1993-10-29|1993-12-02|TAKE BACK RETURN|FOB|inal accounts after | +67279|370740|8262|2|1|1810.73|0.05|0.01|R|F|1994-01-23|1993-12-15|1994-01-30|DELIVER IN PERSON|REG AIR|nst the ironic dependenc| +67279|17387|29888|3|4|5217.52|0.02|0.06|A|F|1993-12-09|1993-10-25|1993-12-14|DELIVER IN PERSON|TRUCK|uriously u| +67304|107|37608|1|45|45319.50|0.06|0.08|N|O|1996-04-16|1996-04-11|1996-04-17|TAKE BACK RETURN|FOB| ideas wake? platelet| +67304|796160|8676|2|16|20098.08|0.09|0.08|N|O|1996-05-09|1996-06-06|1996-05-14|DELIVER IN PERSON|AIR|pinto beans affix. unusual theodo| +67305|786466|11497|1|10|15524.30|0.10|0.07|R|F|1992-07-10|1992-06-17|1992-07-13|NONE|FOB| across the special, special d| +67305|131386|18893|2|7|9921.66|0.03|0.02|A|F|1992-04-19|1992-05-12|1992-04-25|TAKE BACK RETURN|TRUCK|ically final platelets doze ideas. slyly un| +67305|204436|41949|3|16|21446.72|0.00|0.04|R|F|1992-07-12|1992-05-30|1992-08-11|TAKE BACK RETURN|TRUCK|deposits wake slyly after the unusual, dari| +67306|333939|21458|1|17|33539.64|0.03|0.04|N|O|1998-10-08|1998-09-04|1998-10-20|TAKE BACK RETURN|MAIL|g to the even requests. bold req| +67306|498705|23724|2|23|39184.64|0.10|0.00|N|O|1998-07-14|1998-08-07|1998-07-15|TAKE BACK RETURN|RAIL|sts wake blithely around th| +67307|448625|36150|1|17|26751.20|0.09|0.04|R|F|1993-08-08|1993-08-10|1993-08-11|COLLECT COD|REG AIR|ccounts unwind. carefully | +67307|24260|11761|2|17|20132.42|0.03|0.06|R|F|1993-10-13|1993-08-26|1993-10-30|DELIVER IN PERSON|AIR|pecial pinto beans haggle. pain| +67308|55767|43271|1|43|74078.68|0.01|0.06|R|F|1994-06-08|1994-03-20|1994-06-27|COLLECT COD|SHIP|nal pinto beans about the final asymptotes| +67308|268397|18398|2|46|62807.48|0.06|0.06|R|F|1994-04-18|1994-03-19|1994-04-22|COLLECT COD|RAIL|ggle fluffily final pinto bea| +67308|942616|30171|3|39|64684.23|0.02|0.02|A|F|1994-05-02|1994-04-28|1994-05-24|DELIVER IN PERSON|TRUCK|gle regularly even requ| +67308|540919|28450|4|39|76435.71|0.08|0.04|R|F|1994-05-29|1994-04-26|1994-06-08|NONE|SHIP|egular instructions. slyly iron| +67308|212306|49819|5|25|30457.25|0.02|0.04|R|F|1994-03-25|1994-03-31|1994-03-29|TAKE BACK RETURN|AIR|riously blithely regular packa| +67309|528595|16126|1|41|66566.37|0.08|0.00|A|F|1993-08-08|1993-09-10|1993-08-18|TAKE BACK RETURN|RAIL|lar deposits. qu| +67309|83132|33133|2|38|42374.94|0.05|0.07|R|F|1993-07-16|1993-08-31|1993-07-21|COLLECT COD|RAIL|sual deposits use slyly. quickly regular| +67309|183969|8976|3|4|8211.84|0.01|0.08|A|F|1993-09-17|1993-09-03|1993-10-05|COLLECT COD|FOB|ly unusual asymptotes. furiously quick | +67310|273237|10753|1|44|53249.68|0.05|0.04|N|O|1998-06-08|1998-05-10|1998-06-15|COLLECT COD|AIR|ackages. slyly sil| +67310|284639|34640|2|42|68192.04|0.08|0.08|N|O|1998-04-02|1998-05-10|1998-04-05|DELIVER IN PERSON|RAIL|fter the blithely regular accounts. regula| +67310|917485|17486|3|11|16526.84|0.02|0.03|N|O|1998-07-17|1998-04-24|1998-08-14|TAKE BACK RETURN|AIR|ons boost | +67310|164425|39432|4|13|19362.46|0.04|0.04|N|O|1998-06-12|1998-05-29|1998-07-08|COLLECT COD|SHIP|nusual instructions nag. fu| +67310|482823|45333|5|12|21669.60|0.04|0.01|N|O|1998-07-15|1998-06-05|1998-08-13|NONE|RAIL|arefully alongside of the doggedly iron| +67310|799439|49440|6|39|59997.60|0.07|0.03|N|O|1998-07-14|1998-04-22|1998-08-06|NONE|RAIL|- carefully final i| +67311|210083|10084|1|19|18868.33|0.08|0.06|N|O|1997-05-17|1997-06-23|1997-05-21|TAKE BACK RETURN|REG AIR|ncies sleep fluffily? final, even depos| +67311|854009|41561|2|38|36592.48|0.04|0.05|N|O|1997-06-18|1997-06-04|1997-07-16|TAKE BACK RETURN|MAIL|ly quickly pending dependencies| +67336|569003|31515|1|50|53599.00|0.09|0.00|R|F|1992-10-05|1992-08-22|1992-10-13|DELIVER IN PERSON|MAIL|about the blithely special deposits. slyl| +67336|225919|13432|2|36|66416.40|0.09|0.04|R|F|1992-09-23|1992-08-30|1992-10-16|NONE|RAIL|sly ironic deposits cajole sl| +67336|15421|40422|3|39|52120.38|0.02|0.03|A|F|1992-06-19|1992-08-05|1992-07-07|NONE|TRUCK|nag quickly acr| +67336|168536|18537|4|23|36904.19|0.00|0.00|R|F|1992-09-19|1992-08-19|1992-10-10|COLLECT COD|REG AIR|uctions sleep slyly along| +67336|573737|23738|5|1|1810.71|0.06|0.05|R|F|1992-06-27|1992-08-23|1992-07-18|COLLECT COD|MAIL|g asymptotes? carefully special accounts a| +67336|789345|14376|6|40|57372.40|0.07|0.05|R|F|1992-09-23|1992-07-09|1992-09-26|TAKE BACK RETURN|RAIL|ole among the quickly ir| +67336|508867|33888|7|38|71281.92|0.01|0.04|A|F|1992-08-14|1992-07-29|1992-08-24|TAKE BACK RETURN|MAIL|carefully special attai| +67337|521948|21949|1|13|25608.96|0.02|0.07|R|F|1994-09-24|1994-08-02|1994-10-20|TAKE BACK RETURN|AIR|e instructions| +67337|379030|4045|2|41|45469.82|0.02|0.00|A|F|1994-07-30|1994-07-29|1994-08-25|COLLECT COD|MAIL|unts nag fur| +67337|351351|1352|3|37|51886.58|0.10|0.06|A|F|1994-07-04|1994-08-12|1994-07-13|DELIVER IN PERSON|TRUCK| slyly regular ideas hang; slyly t| +67337|143181|30688|4|25|30604.50|0.06|0.06|A|F|1994-07-12|1994-09-05|1994-08-03|TAKE BACK RETURN|SHIP|nts wake carefully regular deposits. caref| +67337|430553|18078|5|14|20769.42|0.05|0.00|R|F|1994-10-04|1994-08-20|1994-10-17|COLLECT COD|AIR| quickly above the unusual, | +67338|486511|49021|1|11|16472.39|0.01|0.08|A|F|1994-08-05|1994-07-13|1994-08-31|NONE|TRUCK|the carefully pending packages. fo| +67338|778962|16508|2|7|14286.51|0.06|0.05|R|F|1994-06-21|1994-06-22|1994-06-23|DELIVER IN PERSON|FOB|slyly ironic pinto beans sleep fluffil| +67338|7114|32115|3|19|19401.09|0.05|0.03|A|F|1994-07-19|1994-06-17|1994-08-05|TAKE BACK RETURN|MAIL|usly final instructio| +67338|550248|249|4|2|2596.44|0.07|0.02|A|F|1994-05-10|1994-07-04|1994-05-15|COLLECT COD|RAIL|eposits at the carefully ironic accounts ha| +67339|840384|15417|1|22|29135.48|0.07|0.02|R|F|1994-08-30|1994-09-10|1994-09-16|NONE|TRUCK|unts against the carefully i| +67339|324347|49360|2|17|23312.61|0.05|0.03|R|F|1994-11-09|1994-09-23|1994-12-03|DELIVER IN PERSON|REG AIR|furiously express accounts wake care| +67339|284686|9697|3|19|31742.73|0.09|0.00|R|F|1994-10-02|1994-09-07|1994-10-13|COLLECT COD|TRUCK|cajole even packages. even| +67340|180079|17589|1|15|17386.05|0.02|0.05|N|O|1997-01-17|1997-02-03|1997-02-13|DELIVER IN PERSON|AIR|even package| +67340|584986|47498|2|36|74554.56|0.10|0.08|N|O|1997-03-30|1997-01-25|1997-04-14|DELIVER IN PERSON|TRUCK|cial, iron| +67340|843950|43951|3|34|64392.94|0.08|0.03|N|O|1997-01-06|1997-01-16|1997-01-07|NONE|MAIL|y even foxes sleep | +67340|262259|12260|4|35|42743.40|0.10|0.07|N|O|1997-03-10|1997-01-31|1997-03-25|COLLECT COD|SHIP|ironic pinto beans cajole bli| +67340|779056|29057|5|18|20430.36|0.02|0.06|N|O|1997-02-19|1997-02-09|1997-02-23|DELIVER IN PERSON|MAIL|ests. express attainments are.| +67340|582687|20221|6|38|67247.08|0.09|0.04|N|O|1997-03-16|1997-01-26|1997-03-30|COLLECT COD|REG AIR|slyly ironic platelets. furious| +67340|211606|36615|7|42|63738.78|0.03|0.04|N|O|1997-03-16|1997-03-12|1997-03-30|COLLECT COD|AIR|s. slyly even packag| +67341|457796|7797|1|42|73658.34|0.09|0.01|A|F|1995-05-13|1995-04-01|1995-05-21|NONE|REG AIR|atelets are. entic| +67341|166559|41566|2|13|21132.15|0.06|0.05|A|F|1995-02-18|1995-04-12|1995-02-23|TAKE BACK RETURN|RAIL|ate slyly bold accoun| +67341|350439|440|3|14|20851.88|0.03|0.08|A|F|1995-02-06|1995-03-03|1995-02-07|DELIVER IN PERSON|MAIL|ld ideas are always enticin| +67341|827939|27940|4|1|1866.89|0.10|0.03|A|F|1995-03-19|1995-04-07|1995-04-02|NONE|SHIP|ctions was. | +67341|158304|45814|5|27|36782.10|0.04|0.00|A|F|1995-05-01|1995-04-03|1995-05-19|DELIVER IN PERSON|TRUCK| ironically after the silently even dep| +67342|533265|20796|1|9|11684.16|0.09|0.06|R|F|1993-07-22|1993-07-06|1993-08-07|NONE|AIR| sleep quickly. blithely even theodolites | +67342|583298|33299|2|22|30387.94|0.05|0.02|A|F|1993-08-09|1993-07-21|1993-09-02|TAKE BACK RETURN|TRUCK|nto beans wake regular asymptotes: sl| +67342|479670|4689|3|20|32993.00|0.03|0.07|R|F|1993-05-18|1993-07-13|1993-05-22|TAKE BACK RETURN|RAIL|s nag. slyly pending theodolites th| +67342|799697|12213|4|16|28746.56|0.09|0.02|R|F|1993-06-27|1993-07-17|1993-07-05|COLLECT COD|FOB|. furiously e| +67342|503989|3990|5|3|5978.88|0.07|0.04|R|F|1993-08-06|1993-07-21|1993-09-02|COLLECT COD|FOB|ans cajole furiousl| +67342|526471|26472|6|36|53908.20|0.10|0.02|A|F|1993-07-29|1993-06-17|1993-08-09|DELIVER IN PERSON|AIR|ngly ironic| +67342|386380|48888|7|27|39591.99|0.04|0.07|R|F|1993-07-05|1993-05-25|1993-07-23|COLLECT COD|SHIP|eas. furiously u| +67343|888461|13496|1|4|5797.68|0.08|0.07|N|O|1995-12-14|1996-02-16|1996-01-07|COLLECT COD|SHIP| bold instructions use bol| +67343|350742|38264|2|41|73501.93|0.06|0.07|N|O|1996-01-01|1996-02-09|1996-01-18|TAKE BACK RETURN|RAIL|o the busily idle deposits. fur| +67343|916754|41791|3|10|17707.10|0.05|0.02|N|O|1995-12-18|1996-01-18|1996-01-08|TAKE BACK RETURN|REG AIR|c accounts! expres| +67343|869684|32202|4|11|18190.04|0.01|0.04|N|O|1996-02-22|1996-01-04|1996-03-07|DELIVER IN PERSON|FOB| among the slyly unusual requests. | +67343|772993|48024|5|21|43385.16|0.10|0.01|N|O|1995-12-16|1996-01-27|1995-12-23|COLLECT COD|MAIL|y after the furiou| +67368|911677|11678|1|48|81054.24|0.01|0.08|R|F|1992-05-18|1992-04-12|1992-06-06|TAKE BACK RETURN|REG AIR|y silent pinto beans. quickly express d| +67368|547757|22778|2|38|68579.74|0.05|0.03|R|F|1992-05-03|1992-04-27|1992-05-25|TAKE BACK RETURN|TRUCK|ns across the ironic, final grouches| +67368|142711|17716|3|20|35074.20|0.09|0.05|A|F|1992-02-19|1992-04-24|1992-03-05|TAKE BACK RETURN|TRUCK| requests nag after the express req| +67368|537213|12234|4|2|2500.38|0.08|0.06|A|F|1992-03-26|1992-04-12|1992-04-13|NONE|SHIP|ckly around the th| +67368|933112|8149|5|1|1145.07|0.03|0.01|A|F|1992-02-27|1992-04-08|1992-03-25|NONE|TRUCK|ending packages cajole furiously. qu| +67368|806193|43742|6|6|6594.90|0.00|0.01|A|F|1992-06-09|1992-05-02|1992-06-11|COLLECT COD|AIR|c accounts. carefully silent deposits bo| +67369|652299|39839|1|12|15015.12|0.08|0.00|N|O|1998-08-02|1998-06-15|1998-08-17|TAKE BACK RETURN|REG AIR|ake slyly.| +67369|187028|49532|2|25|27875.50|0.04|0.07|N|O|1998-06-22|1998-08-02|1998-07-12|TAKE BACK RETURN|FOB| detect blithely against the regula| +67369|373253|23254|3|20|26524.80|0.02|0.02|N|O|1998-05-23|1998-08-02|1998-06-03|COLLECT COD|RAIL|uffily final requests ar| +67370|306383|18890|1|49|68079.13|0.05|0.08|R|F|1992-02-24|1992-03-26|1992-03-01|NONE|SHIP|ages. ironic requests boost qu| +67370|368107|18108|2|49|57579.41|0.05|0.05|R|F|1992-05-23|1992-04-28|1992-06-04|COLLECT COD|REG AIR| have to are | +67371|46507|21508|1|19|27616.50|0.10|0.06|R|F|1992-05-09|1992-03-08|1992-05-31|COLLECT COD|SHIP|encies poach s| +67372|459423|46951|1|16|22118.40|0.10|0.02|R|F|1994-12-18|1994-10-23|1995-01-13|NONE|FOB| carefully pe| +67372|516112|16113|2|16|18049.44|0.01|0.00|A|F|1994-11-01|1994-11-08|1994-11-05|TAKE BACK RETURN|AIR|atelets against the f| +67372|281080|43586|3|11|11671.77|0.05|0.01|A|F|1994-09-12|1994-11-24|1994-09-13|DELIVER IN PERSON|AIR|unts cajole| +67372|94957|19960|4|46|89789.70|0.07|0.00|A|F|1994-12-29|1994-10-17|1995-01-20|NONE|AIR|he blithely express deposits. silent id| +67372|931666|44185|5|20|33952.40|0.07|0.03|A|F|1994-09-26|1994-10-15|1994-10-13|COLLECT COD|AIR|arefully pending hockey pl| +67372|503086|28107|6|46|50096.76|0.05|0.02|A|F|1994-12-19|1994-11-28|1995-01-15|TAKE BACK RETURN|MAIL|thely regular p| +67372|364954|14955|7|47|94890.18|0.09|0.06|R|F|1994-09-13|1994-10-16|1994-10-10|NONE|MAIL| accounts use furiously furiously un| +67373|779367|4398|1|35|50621.55|0.04|0.05|A|F|1994-09-14|1994-10-08|1994-09-28|NONE|TRUCK| wake carefully.| +67373|812118|24635|2|18|18541.26|0.02|0.00|R|F|1994-08-21|1994-10-17|1994-09-12|DELIVER IN PERSON|AIR|y accounts. eve| +67373|262426|49942|3|8|11107.28|0.09|0.04|R|F|1994-12-10|1994-10-20|1994-12-29|NONE|RAIL| furiously regular instruct| +67373|577585|15119|4|28|46551.68|0.04|0.06|A|F|1994-10-03|1994-11-08|1994-10-19|NONE|SHIP|onic pinto beans accordi| +67373|470358|32868|5|5|6641.65|0.07|0.07|A|F|1994-12-06|1994-10-31|1994-12-20|COLLECT COD|RAIL|ly. regular, ironic dependencies wak| +67373|295901|8407|6|47|89153.83|0.05|0.05|A|F|1994-08-27|1994-11-03|1994-09-12|TAKE BACK RETURN|RAIL|ndencies are. special ideas unwind abov| +67373|196019|33529|7|47|52405.47|0.03|0.08|R|F|1994-08-25|1994-09-22|1994-09-18|COLLECT COD|AIR|uriously final dependencies. blithely exp| +67374|477011|2030|1|35|34579.65|0.08|0.03|N|O|1998-03-22|1998-06-14|1998-04-05|DELIVER IN PERSON|MAIL|to beans. furiou| +67374|119409|6916|2|22|31424.80|0.02|0.07|N|O|1998-03-24|1998-06-15|1998-04-08|COLLECT COD|MAIL|s wake slyly fluffil| +67374|900671|38226|3|21|35104.23|0.04|0.05|N|O|1998-05-02|1998-06-06|1998-05-09|NONE|TRUCK|ending theodolites cajole slyly| +67375|931373|43892|1|25|35108.25|0.03|0.07|N|O|1997-08-19|1997-08-02|1997-09-10|COLLECT COD|FOB|eside the regular, f| +67375|575236|12770|2|41|53759.61|0.04|0.02|N|O|1997-10-15|1997-08-20|1997-11-06|NONE|TRUCK|ng requests cajole careful| +67375|991263|3783|3|34|46043.48|0.00|0.03|N|O|1997-10-20|1997-07-31|1997-10-22|COLLECT COD|FOB|iously special waters against the careful| +67400|968892|43931|1|4|7843.40|0.02|0.05|N|O|1996-08-24|1996-10-23|1996-09-13|DELIVER IN PERSON|SHIP|uests solve inside the pendin| +67400|163519|38526|2|30|47475.30|0.05|0.07|N|O|1996-10-28|1996-10-09|1996-11-03|NONE|TRUCK|riously perm| +67400|251973|26984|3|43|82773.28|0.02|0.07|N|O|1996-12-01|1996-10-14|1996-12-12|NONE|FOB|re fluffily about the care| +67400|899161|49162|4|4|4640.48|0.05|0.07|N|O|1996-08-26|1996-10-02|1996-09-11|TAKE BACK RETURN|RAIL|unusual, ironic foxes boost even re| +67400|186824|11831|5|2|3821.64|0.05|0.04|N|O|1996-08-21|1996-10-27|1996-09-16|COLLECT COD|RAIL|re always quickly even th| +67401|159260|34267|1|39|51451.14|0.10|0.00|R|F|1993-12-12|1993-12-21|1994-01-09|DELIVER IN PERSON|SHIP|ts. ironic grouches use fluffily. ironic| +67401|672454|34968|2|30|42792.60|0.00|0.08|A|F|1993-11-08|1994-02-03|1993-11-22|TAKE BACK RETURN|FOB|. asymptotes cajole iron| +67401|917995|5550|3|24|48310.80|0.07|0.05|R|F|1993-12-26|1993-12-28|1994-01-24|TAKE BACK RETURN|FOB|ts wake along the blithely r| +67402|341144|41145|1|7|8295.91|0.04|0.05|N|O|1997-04-14|1997-04-05|1997-05-02|NONE|RAIL| at the never quick courts must are carefu| +67402|591671|41672|2|38|66980.70|0.09|0.07|N|O|1997-02-02|1997-03-12|1997-02-18|COLLECT COD|TRUCK|courts print. close, thin instruc| +67403|73969|23970|1|34|66060.64|0.10|0.05|N|O|1996-07-15|1996-08-02|1996-07-27|DELIVER IN PERSON|RAIL|ets thrash blithely aga| +67403|193204|18211|2|49|63562.80|0.01|0.06|N|O|1996-07-22|1996-08-18|1996-08-02|TAKE BACK RETURN|TRUCK| bold ideas after the c| +67403|175664|25665|3|26|45231.16|0.10|0.03|N|O|1996-07-08|1996-07-22|1996-08-05|NONE|AIR|nts haggle carefull| +67403|379305|4320|4|48|66445.92|0.08|0.01|N|O|1996-08-25|1996-07-09|1996-09-19|DELIVER IN PERSON|FOB|e. furiously | +67403|963360|918|5|50|71166.00|0.06|0.01|N|O|1996-09-03|1996-07-10|1996-09-14|NONE|MAIL|nic, ironic packages nag along t| +67403|177893|40397|6|7|13796.23|0.02|0.07|N|O|1996-08-16|1996-07-14|1996-08-31|COLLECT COD|AIR|ions alongside of t| +67403|846474|21507|7|41|58237.63|0.02|0.04|N|O|1996-08-17|1996-08-20|1996-09-03|DELIVER IN PERSON|MAIL| ironic re| +67404|685000|35001|1|4|3939.88|0.02|0.00|R|F|1995-01-30|1995-03-06|1995-02-01|TAKE BACK RETURN|FOB|fully. daringly unusual hockey players wake| +67405|879347|4382|1|9|11936.70|0.06|0.02|R|F|1992-06-02|1992-04-27|1992-06-10|COLLECT COD|MAIL|gular accounts use fluff| +67405|174585|49592|2|14|23234.12|0.02|0.02|R|F|1992-06-06|1992-04-25|1992-06-07|TAKE BACK RETURN|FOB|furiously. quickly regular packag| +67406|950917|918|1|34|66907.58|0.06|0.05|R|F|1993-11-29|1993-12-15|1993-12-17|NONE|FOB|ly alongside of the fur| +67406|45559|45560|2|13|19559.15|0.00|0.04|A|F|1993-12-09|1993-10-22|1993-12-22|DELIVER IN PERSON|RAIL|nts. blithely close packages afte| +67407|115762|28265|1|1|1777.76|0.07|0.06|A|F|1994-12-06|1995-01-22|1994-12-25|TAKE BACK RETURN|FOB|ncies are slyly regular fox| +67432|59032|21534|1|43|42614.29|0.02|0.05|A|F|1993-01-02|1992-11-05|1993-01-08|NONE|AIR|ial packages affix reg| +67432|136012|48515|2|7|7336.07|0.08|0.03|R|F|1992-10-09|1992-12-04|1992-11-03|COLLECT COD|AIR|ounts. final, bold re| +67432|944013|31568|3|8|8455.76|0.08|0.00|R|F|1992-11-07|1992-11-09|1992-11-20|NONE|TRUCK|ncies wake unusua| +67432|13147|648|4|43|45586.02|0.08|0.00|A|F|1993-01-23|1992-12-31|1993-01-26|COLLECT COD|MAIL|ccounts; slyly regular deposits boost ca| +67432|955020|30059|5|17|18274.66|0.06|0.02|R|F|1993-01-05|1992-12-22|1993-01-18|DELIVER IN PERSON|FOB|ts affix. blithely final orbits haggle. r| +67432|14006|1507|6|3|2760.00|0.01|0.00|A|F|1992-11-20|1992-12-24|1992-11-21|TAKE BACK RETURN|RAIL| ideas wake sometimes alongside of th| +67433|938430|25985|1|1|1468.39|0.10|0.06|N|O|1998-02-08|1998-03-05|1998-03-01|DELIVER IN PERSON|RAIL|ss the blith| +67433|176991|14501|2|47|97195.53|0.01|0.02|N|O|1998-03-21|1998-02-12|1998-04-19|DELIVER IN PERSON|RAIL|e. furiously ironic account| +67433|680395|30396|3|35|48137.60|0.02|0.00|N|O|1998-03-24|1998-02-12|1998-04-08|COLLECT COD|TRUCK|ironic attainments cajole. final,| +67433|391456|16471|4|5|7737.20|0.05|0.01|N|O|1998-03-31|1998-02-18|1998-04-17|NONE|AIR|l, final instructions! carefully final saut| +67433|186987|36988|5|40|82959.20|0.10|0.05|N|O|1998-04-01|1998-01-18|1998-04-26|NONE|AIR|ake carefully regular, i| +67434|822450|34967|1|50|68620.50|0.07|0.07|N|O|1996-03-22|1996-03-02|1996-04-06|COLLECT COD|SHIP|sts. even pinto beans | +67434|904437|4438|2|15|21620.85|0.08|0.06|N|O|1996-02-28|1996-02-12|1996-03-22|NONE|TRUCK|ideas. furiously even t| +67434|860182|22700|3|38|43401.32|0.00|0.02|N|O|1996-01-30|1996-04-02|1996-02-29|TAKE BACK RETURN|RAIL|sh carefully bold pinto beans: caref| +67434|76781|14285|4|31|54491.18|0.04|0.05|N|O|1996-01-26|1996-03-06|1996-02-05|DELIVER IN PERSON|SHIP|s. regular, f| +67435|139991|14996|1|33|67022.67|0.04|0.03|R|F|1992-12-20|1993-01-25|1993-01-10|NONE|FOB|, final asymptotes above the ironically | +67435|812238|37271|2|21|24153.99|0.08|0.00|A|F|1993-01-02|1993-03-04|1993-01-15|TAKE BACK RETURN|TRUCK|ld accounts a| +67435|271220|21221|3|46|54795.66|0.05|0.03|A|F|1993-03-06|1993-01-17|1993-03-15|TAKE BACK RETURN|TRUCK|ding to the furiously regular requests wak| +67435|381668|31669|4|4|6998.60|0.00|0.08|A|F|1993-03-08|1993-01-30|1993-03-31|COLLECT COD|REG AIR|ions. carefully regular| +67436|731366|43881|1|22|30741.26|0.03|0.00|R|F|1992-12-21|1992-12-28|1993-01-12|COLLECT COD|TRUCK|ts wake carefully above th| +67436|61053|48557|2|40|40562.00|0.10|0.08|R|F|1993-02-05|1993-02-07|1993-02-24|TAKE BACK RETURN|FOB|ccounts hag| +67437|806760|31793|1|3|5000.16|0.04|0.02|R|F|1993-04-08|1993-01-16|1993-05-07|DELIVER IN PERSON|REG AIR|fluffily accordin| +67438|365996|28504|1|1|2061.98|0.09|0.00|N|O|1997-06-15|1997-04-16|1997-07-14|DELIVER IN PERSON|TRUCK| packages. requests nag carefully quickl| +67438|288583|13594|2|35|55004.95|0.10|0.00|N|O|1997-06-09|1997-04-14|1997-06-11|NONE|SHIP|theodolites are slyly. carefully regu| +67439|787771|287|1|3|5576.22|0.10|0.07|A|F|1992-12-08|1993-02-26|1993-01-04|DELIVER IN PERSON|FOB|s detect furiou| +67439|52507|27510|2|25|36487.50|0.09|0.02|R|F|1992-12-23|1993-01-06|1992-12-25|NONE|TRUCK|ly special instructions d| +67439|472918|35428|3|18|34036.02|0.09|0.03|A|F|1993-03-29|1993-01-18|1993-04-26|DELIVER IN PERSON|TRUCK|e theodolites. carefully pending dolp| +67439|325013|12532|4|44|45672.00|0.07|0.03|A|F|1993-02-14|1993-02-10|1993-03-01|DELIVER IN PERSON|RAIL|are quickly. furiously even de| +67439|482945|32946|5|16|30846.72|0.03|0.04|R|F|1993-03-20|1993-01-11|1993-03-25|NONE|TRUCK|notornis wake blit| +67464|57877|45381|1|10|18348.70|0.01|0.07|R|F|1994-07-08|1994-06-20|1994-07-19|NONE|REG AIR|. carefully silent gifts affix carefully a| +67464|728988|4017|2|49|98830.55|0.02|0.01|A|F|1994-04-25|1994-06-14|1994-05-18|TAKE BACK RETURN|FOB|latelets wake blithely| +67464|85367|47869|3|38|51389.68|0.05|0.00|A|F|1994-05-09|1994-05-20|1994-05-28|NONE|SHIP|quickly. fluff| +67464|762516|62|4|13|20520.24|0.05|0.05|R|F|1994-07-10|1994-06-08|1994-07-11|TAKE BACK RETURN|FOB|permanent gifts along the regular packages| +67464|598840|11352|5|15|29082.30|0.10|0.01|A|F|1994-04-30|1994-05-10|1994-05-26|COLLECT COD|REG AIR|mise about the final dep| +67465|544736|32267|1|1|1780.71|0.07|0.02|N|O|1998-08-17|1998-05-31|1998-09-02|TAKE BACK RETURN|FOB|ckly about the fluffily regular package| +67465|375167|37675|2|23|28569.45|0.03|0.04|N|O|1998-05-22|1998-06-01|1998-06-12|COLLECT COD|REG AIR|cial instructions. r| +67465|420731|20732|3|46|75978.66|0.05|0.07|N|O|1998-06-14|1998-05-28|1998-07-10|NONE|TRUCK|n pinto beans. regular accounts accor| +67465|221470|33975|4|18|25046.28|0.07|0.01|N|O|1998-07-10|1998-07-21|1998-07-12|TAKE BACK RETURN|SHIP|its. furiously ironic dugouts detect furio| +67465|235942|48447|5|3|5633.79|0.05|0.08|N|O|1998-05-14|1998-07-10|1998-06-07|COLLECT COD|AIR|egular Tiresias| +67465|463470|25980|6|25|35836.25|0.03|0.03|N|O|1998-07-20|1998-06-28|1998-08-15|DELIVER IN PERSON|MAIL|as use quickly requests. sly| +67466|463691|38710|1|7|11582.69|0.00|0.04|N|O|1995-10-19|1995-09-02|1995-10-22|COLLECT COD|REG AIR| must wake permanently around th| +67466|248402|10907|2|30|40511.70|0.07|0.00|N|O|1995-08-20|1995-10-01|1995-09-12|DELIVER IN PERSON|SHIP|ests among the furiou| +67466|879870|4905|3|39|72143.37|0.09|0.06|N|O|1995-09-17|1995-08-29|1995-09-24|TAKE BACK RETURN|MAIL|ly ironic sentim| +67466|962533|91|4|4|6381.96|0.07|0.06|N|O|1995-09-28|1995-10-23|1995-10-18|NONE|REG AIR|lly fluffily express asy| +67466|287105|24621|5|3|3276.27|0.06|0.00|N|O|1995-09-06|1995-10-08|1995-09-20|COLLECT COD|MAIL|usly. final i| +67466|372433|47448|6|9|13548.78|0.06|0.05|N|O|1995-10-06|1995-09-21|1995-10-18|DELIVER IN PERSON|SHIP|sleep slyly about the blithely sp| +67467|421585|9110|1|34|51223.04|0.03|0.03|N|O|1997-08-27|1997-10-07|1997-09-21|NONE|TRUCK|lites enga| +67467|577716|40228|2|17|30492.73|0.08|0.04|N|O|1997-09-14|1997-11-21|1997-10-06|TAKE BACK RETURN|TRUCK|lly bold accounts integrate slyly a| +67467|656858|44398|3|49|88926.18|0.00|0.08|N|O|1997-09-29|1997-10-20|1997-10-19|NONE|AIR|nusual packages. quickly e| +67468|842310|4827|1|28|35063.56|0.07|0.03|R|F|1992-07-24|1992-08-18|1992-07-26|COLLECT COD|FOB|inal reque| +67468|703868|41411|2|41|76745.03|0.05|0.02|R|F|1992-09-01|1992-09-14|1992-09-03|NONE|REG AIR| pinto beans above the q| +67469|765799|28315|1|25|46619.00|0.10|0.00|N|O|1997-02-24|1997-01-17|1997-03-14|NONE|AIR|efully ironic packages haggle re| +67470|368922|43937|1|30|59727.30|0.09|0.03|N|O|1997-12-05|1997-11-18|1997-12-11|NONE|TRUCK| carefully| +67470|460761|23271|2|9|15495.66|0.02|0.07|N|O|1997-10-06|1997-11-13|1997-10-28|TAKE BACK RETURN|MAIL|ent, enticing asymptotes affix ironic w| +67470|112|113|3|11|11133.21|0.08|0.06|N|O|1997-12-20|1997-11-08|1998-01-12|COLLECT COD|FOB|. final foxes are quickly. sly| +67470|878822|28823|4|33|59425.74|0.05|0.00|N|O|1997-10-19|1997-12-04|1997-11-02|COLLECT COD|RAIL|ccounts use quickly aft| +67471|701315|26344|1|34|44753.52|0.07|0.07|A|F|1993-09-02|1993-09-14|1993-09-28|NONE|FOB|kages cajole silent packages. silently ev| +67471|999148|49149|2|39|48636.90|0.08|0.02|A|F|1993-10-16|1993-10-14|1993-11-15|DELIVER IN PERSON|REG AIR|press asym| +67471|671703|34217|3|16|26794.72|0.04|0.01|A|F|1993-08-07|1993-08-27|1993-08-13|TAKE BACK RETURN|SHIP|ultipliers affix. even deposits sleep. quic| +67471|300526|527|4|3|4579.53|0.00|0.04|R|F|1993-10-30|1993-09-01|1993-10-31|NONE|MAIL|e excuses int| +67496|652528|40068|1|47|69583.03|0.09|0.03|N|O|1996-11-11|1996-10-28|1996-11-21|COLLECT COD|RAIL|oss the carefully bold foxes run blithely| +67496|33884|46385|2|30|54536.40|0.00|0.04|N|O|1996-10-29|1996-10-30|1996-11-26|NONE|RAIL| carefully quickly iro| +67496|484570|34571|3|24|37309.20|0.07|0.04|N|O|1996-12-12|1996-12-10|1996-12-27|DELIVER IN PERSON|AIR|ietly express packages. unusual acc| +67496|160494|35501|4|9|13990.41|0.07|0.03|N|O|1996-12-24|1996-11-06|1997-01-22|TAKE BACK RETURN|FOB| even deposits. r| +67496|417513|17514|5|3|4291.47|0.06|0.04|N|O|1996-11-18|1996-10-16|1996-11-19|NONE|MAIL|requests hang daringly alongside o| +67496|134590|47093|6|46|74731.14|0.06|0.03|N|O|1996-09-28|1996-12-03|1996-10-17|TAKE BACK RETURN|REG AIR|ending, express asymptote| +67496|49677|12178|7|23|37413.41|0.02|0.08|N|O|1996-11-17|1996-11-15|1996-12-03|DELIVER IN PERSON|AIR| express account| +67497|911368|36405|1|28|38620.96|0.04|0.07|N|O|1998-09-05|1998-08-21|1998-10-01|DELIVER IN PERSON|TRUCK|counts nag slowly silent requests. caref| +67497|348066|48067|2|11|12254.55|0.07|0.07|N|O|1998-06-22|1998-08-13|1998-07-08|DELIVER IN PERSON|FOB|y special requests hagg| +67497|935487|48006|3|33|50240.52|0.08|0.03|N|O|1998-07-10|1998-07-06|1998-07-12|TAKE BACK RETURN|RAIL|iously regular court| +67497|717648|30163|4|37|61627.57|0.04|0.05|N|O|1998-06-09|1998-07-12|1998-07-06|DELIVER IN PERSON|TRUCK|hely ironic packages sleep bl| +67497|499815|37343|5|42|76221.18|0.04|0.01|N|O|1998-07-11|1998-07-31|1998-07-19|DELIVER IN PERSON|SHIP|ay carefully expre| +67497|376234|38742|6|45|58959.90|0.09|0.00|N|O|1998-09-24|1998-07-17|1998-09-27|TAKE BACK RETURN|AIR|re slyly. even requests are. pending pinto| +67497|362237|49759|7|37|48071.14|0.08|0.02|N|O|1998-10-02|1998-07-17|1998-10-12|TAKE BACK RETURN|REG AIR|uests nag blithely even r| +67498|103134|15637|1|20|22742.60|0.02|0.02|A|F|1995-05-21|1995-04-30|1995-06-13|COLLECT COD|REG AIR|f the bold dolp| +67498|367570|42585|2|45|73690.20|0.10|0.01|N|F|1995-05-26|1995-04-11|1995-06-21|COLLECT COD|TRUCK|into beans boost. regular, express packag| +67498|747847|10362|3|45|85266.45|0.00|0.01|R|F|1995-04-15|1995-05-13|1995-04-20|TAKE BACK RETURN|FOB| blithely reg| +67499|253019|28030|1|25|24300.00|0.10|0.08|R|F|1995-06-02|1995-06-26|1995-06-09|NONE|SHIP|side of the pending, ironic platele| +67499|473555|36065|2|40|61141.20|0.03|0.02|N|F|1995-05-31|1995-07-09|1995-06-19|NONE|REG AIR|ccounts beneath the furio| +67499|25460|25461|3|39|54032.94|0.00|0.05|N|O|1995-07-30|1995-06-23|1995-08-23|COLLECT COD|RAIL|even ideas cajole above t| +67499|893028|18063|4|42|42881.16|0.00|0.08|N|O|1995-07-09|1995-06-05|1995-07-17|COLLECT COD|SHIP| requests wake slyly along| +67500|297311|34827|1|7|9158.10|0.05|0.03|R|F|1994-09-22|1994-09-15|1994-09-28|COLLECT COD|MAIL|le. bold courts sleep| +67500|895994|33546|2|31|61688.45|0.09|0.00|R|F|1994-07-29|1994-10-12|1994-08-21|NONE|SHIP| furiously p| +67501|125332|12839|1|6|8143.98|0.08|0.05|N|O|1996-10-05|1996-10-07|1996-10-12|NONE|MAIL|s are carefully around the | +67501|447408|34933|2|36|48793.68|0.02|0.01|N|O|1996-12-26|1996-11-30|1997-01-22|COLLECT COD|REG AIR|s. blithely even pinto beans se| +67501|572752|22753|3|8|14597.84|0.06|0.06|N|O|1996-11-25|1996-11-08|1996-11-27|DELIVER IN PERSON|REG AIR|s wake slyly carefully ironic| +67501|231275|43780|4|34|41012.84|0.06|0.07|N|O|1996-09-17|1996-11-19|1996-10-13|NONE|TRUCK|ts. slyly ironic accounts| +67502|960804|23324|1|38|70860.88|0.02|0.08|N|O|1998-08-04|1998-06-30|1998-08-06|COLLECT COD|TRUCK|beans are carefu| +67502|228728|28729|2|30|49701.30|0.00|0.01|N|O|1998-05-26|1998-06-17|1998-06-10|DELIVER IN PERSON|REG AIR|cajole. ide| +67502|218054|30559|3|27|26245.08|0.04|0.06|N|O|1998-08-13|1998-07-29|1998-08-30|DELIVER IN PERSON|AIR|y bold packages along the quickly bl| +67503|735306|10335|1|36|48285.72|0.07|0.01|N|O|1998-06-25|1998-07-05|1998-07-04|DELIVER IN PERSON|RAIL|g instructions dete| +67503|279681|4692|2|10|16606.70|0.02|0.04|N|O|1998-06-22|1998-06-10|1998-07-03|DELIVER IN PERSON|REG AIR| according to the| +67503|597668|35202|3|37|65328.68|0.03|0.02|N|O|1998-07-17|1998-05-20|1998-07-31|TAKE BACK RETURN|TRUCK| regular dependencies cajole fu| +67503|4955|42456|4|19|35339.05|0.05|0.04|N|O|1998-04-29|1998-06-03|1998-05-03|COLLECT COD|AIR|ackages. unusual pinto beans| +67503|265338|2854|5|34|44312.88|0.04|0.01|N|O|1998-08-14|1998-06-06|1998-09-11|COLLECT COD|FOB|unusual deposits. bold| +67503|524928|49949|6|38|74210.20|0.09|0.00|N|O|1998-04-22|1998-06-04|1998-05-10|NONE|TRUCK| sleep furio| +67528|610944|48481|1|17|31533.47|0.09|0.01|N|O|1997-08-12|1997-06-13|1997-08-19|DELIVER IN PERSON|TRUCK|ses doubt furiou| +67529|748573|11088|1|13|21080.02|0.02|0.08|N|O|1998-08-20|1998-08-31|1998-08-30|DELIVER IN PERSON|TRUCK|c accounts. daring excuses are furiously.| +67529|258076|45592|2|48|49634.88|0.10|0.01|N|O|1998-10-26|1998-09-11|1998-11-09|NONE|AIR|nag quickly up th| +67529|470656|45675|3|25|40665.75|0.10|0.08|N|O|1998-10-12|1998-08-20|1998-10-17|COLLECT COD|RAIL|n accounts. blithe| +67529|311383|23890|4|9|12549.33|0.00|0.04|N|O|1998-10-05|1998-09-27|1998-10-22|DELIVER IN PERSON|REG AIR|ic, regular courts according to| +67529|398323|10831|5|36|51167.16|0.00|0.00|N|O|1998-07-18|1998-09-17|1998-08-03|COLLECT COD|MAIL|ironic ideas. final theodolites hinder sl| +67529|614108|1645|6|16|16353.12|0.06|0.03|N|O|1998-08-27|1998-09-18|1998-09-11|TAKE BACK RETURN|TRUCK| special deposits are furiously be| +67529|304551|42070|7|16|24888.64|0.09|0.05|N|O|1998-08-20|1998-08-16|1998-09-18|TAKE BACK RETURN|SHIP|lly pending req| +67530|588163|13186|1|22|27525.08|0.07|0.02|R|F|1993-09-14|1993-10-08|1993-10-14|TAKE BACK RETURN|SHIP| wake among the regular w| +67530|247971|35484|2|34|65244.64|0.08|0.03|A|F|1993-10-31|1993-09-16|1993-11-22|COLLECT COD|TRUCK|tegrate permanently regular accounts. ca| +67531|856805|44357|1|37|65185.12|0.08|0.01|N|O|1998-04-27|1998-03-23|1998-05-07|COLLECT COD|REG AIR|the blithely even accounts: furiously | +67531|311327|36340|2|38|50855.78|0.07|0.08|N|O|1998-04-24|1998-03-22|1998-05-02|COLLECT COD|SHIP|from the regular platelets. regular i| +67531|462102|49630|3|50|53204.00|0.10|0.01|N|O|1998-03-14|1998-04-02|1998-03-23|COLLECT COD|MAIL|nic pinto b| +67531|537739|25270|4|5|8883.55|0.02|0.06|N|O|1998-04-14|1998-04-21|1998-04-26|TAKE BACK RETURN|AIR|ely even braids-- ideas along the | +67531|773489|48520|5|26|40623.70|0.01|0.02|N|O|1998-02-28|1998-04-08|1998-03-25|COLLECT COD|REG AIR|eposits. carefully unusual instr| +67531|24782|24783|6|50|85339.00|0.00|0.08|N|O|1998-04-25|1998-04-07|1998-05-03|DELIVER IN PERSON|AIR|e carefully | +67531|499963|49964|7|27|52999.38|0.00|0.08|N|O|1998-04-01|1998-04-13|1998-04-27|COLLECT COD|REG AIR|ts wake fluffil| +67532|871265|33783|1|42|51921.24|0.05|0.06|N|O|1996-06-28|1996-08-27|1996-07-16|TAKE BACK RETURN|FOB| boost slyly regular requests| +67532|346021|46022|2|9|9603.09|0.04|0.08|N|O|1996-07-20|1996-07-24|1996-08-11|DELIVER IN PERSON|FOB|usly special account| +67532|568639|31151|3|32|54643.52|0.07|0.04|N|O|1996-09-23|1996-08-13|1996-10-09|COLLECT COD|RAIL|inal excuses. furiously unusua| +67532|112327|24830|4|24|32143.68|0.01|0.03|N|O|1996-08-08|1996-07-30|1996-08-16|TAKE BACK RETURN|REG AIR|boost blithely along the accounts. expr| +67532|877599|15151|5|26|40990.30|0.07|0.08|N|O|1996-07-29|1996-08-06|1996-08-15|TAKE BACK RETURN|SHIP|tions are blithely| +67532|804287|16804|6|30|35737.20|0.03|0.07|N|O|1996-07-08|1996-08-19|1996-07-28|TAKE BACK RETURN|RAIL|special deposits. carefully silent the| +67532|647235|9748|7|40|47288.00|0.07|0.01|N|O|1996-09-02|1996-09-07|1996-09-17|NONE|TRUCK|regularly whithout the pending packages.| +67533|63539|26041|1|10|15025.30|0.06|0.02|R|F|1992-11-21|1992-10-06|1992-11-28|NONE|AIR|ke ironic deposits. fin| +67534|632818|45331|1|38|66529.64|0.02|0.03|N|O|1997-01-10|1996-12-28|1997-01-28|NONE|SHIP|e carefully unusual pinto bean| +67534|770119|45150|2|19|22592.52|0.05|0.07|N|O|1997-03-11|1997-01-21|1997-03-20|TAKE BACK RETURN|TRUCK|otes wake slyly carefully ironic | +67534|378656|16178|3|47|81528.08|0.09|0.03|N|O|1997-01-28|1996-12-30|1997-02-15|COLLECT COD|AIR|beans use regularly quickly ruthle| +67535|270767|20768|1|5|8688.75|0.03|0.01|N|O|1996-01-17|1996-03-25|1996-02-09|COLLECT COD|AIR|cial, permanent grouches | +67535|766908|29424|2|37|73070.19|0.03|0.03|N|O|1996-04-19|1996-03-28|1996-05-04|DELIVER IN PERSON|TRUCK|ccounts haggle. blithely careful | +67535|418978|6503|3|3|5690.85|0.01|0.01|N|O|1996-03-03|1996-03-15|1996-03-31|NONE|RAIL|ndencies w| +67560|483668|8687|1|40|66065.60|0.02|0.01|N|O|1997-08-05|1997-07-31|1997-08-26|NONE|REG AIR|ly special instru| +67560|3000|40501|2|45|40635.00|0.01|0.00|N|O|1997-08-04|1997-07-10|1997-08-26|TAKE BACK RETURN|SHIP|silent depo| +67560|420923|45940|3|13|23970.70|0.08|0.02|N|O|1997-08-03|1997-07-17|1997-08-20|TAKE BACK RETURN|FOB|fily furious depos| +67560|439383|39384|4|43|56861.48|0.09|0.04|N|O|1997-07-25|1997-07-19|1997-08-12|NONE|RAIL|ts. regular, express deposits detect carefu| +67560|707528|7529|5|20|30709.80|0.03|0.01|N|O|1997-07-12|1997-08-06|1997-07-27|NONE|MAIL|thely alongside of the sly| +67560|414560|14561|6|33|48659.82|0.02|0.05|N|O|1997-08-10|1997-07-14|1997-08-18|DELIVER IN PERSON|AIR|lets integrate across the eve| +67561|639327|14352|1|5|6331.45|0.00|0.05|N|O|1996-05-06|1996-03-23|1996-06-01|DELIVER IN PERSON|TRUCK|uriously against the blithely regular | +67561|164330|26834|2|13|18126.29|0.08|0.02|N|O|1996-01-27|1996-04-02|1996-01-31|NONE|TRUCK|ravely quietly | +67561|885406|22958|3|33|45914.88|0.09|0.04|N|O|1996-04-23|1996-04-03|1996-05-11|NONE|REG AIR|s about the | +67561|16115|16116|4|12|12373.32|0.00|0.02|N|O|1996-02-01|1996-02-20|1996-03-02|TAKE BACK RETURN|RAIL|er the quickly bold pinto beans. slyly | +67561|835218|35219|5|12|13838.04|0.10|0.04|N|O|1996-04-29|1996-03-24|1996-05-24|DELIVER IN PERSON|AIR|bold dinos promise fl| +67561|507606|32627|6|43|69383.94|0.07|0.01|N|O|1996-04-23|1996-04-09|1996-04-26|TAKE BACK RETURN|SHIP|ular packages. carefully final excuses bre| +67561|331482|43989|7|17|25728.99|0.03|0.05|N|O|1996-01-30|1996-04-06|1996-02-26|NONE|TRUCK|latelets sleep quickly. express, e| +67562|215374|40383|1|13|16761.68|0.06|0.06|N|O|1995-08-17|1995-08-15|1995-08-21|NONE|SHIP|ess platelets use above the fluffily even| +67562|782319|7350|2|40|56051.20|0.08|0.03|N|O|1995-08-09|1995-08-30|1995-09-01|DELIVER IN PERSON|MAIL|even, regular accounts. furiously even ins| +67562|429538|17063|3|23|33752.73|0.03|0.05|N|O|1995-10-24|1995-09-07|1995-11-07|DELIVER IN PERSON|MAIL|gainst the silent, | +67562|243251|5756|4|32|38215.68|0.08|0.08|N|O|1995-10-14|1995-08-19|1995-10-18|TAKE BACK RETURN|AIR|ions. unusual pinto | +67562|309104|34117|5|4|4452.36|0.00|0.01|N|O|1995-09-04|1995-08-09|1995-09-30|DELIVER IN PERSON|TRUCK|silent pinto bean| +67562|110473|22976|6|35|51921.45|0.01|0.05|N|O|1995-08-06|1995-09-18|1995-08-26|TAKE BACK RETURN|MAIL| furiously after the instructions. p| +67563|171522|9032|1|11|17528.72|0.08|0.02|A|F|1993-04-13|1993-04-01|1993-04-15|DELIVER IN PERSON|SHIP|ironic, ironi| +67563|758772|33803|2|11|20138.14|0.10|0.05|A|F|1993-02-04|1993-04-11|1993-03-02|TAKE BACK RETURN|RAIL|ronic pinto beans haggle carefully. re| +67563|679793|17333|3|9|15954.84|0.10|0.06|R|F|1993-02-01|1993-03-13|1993-02-08|NONE|AIR|atelets cajole fluffily across the | +67564|382778|45286|1|5|9303.80|0.03|0.05|N|O|1996-04-29|1996-04-03|1996-05-08|TAKE BACK RETURN|FOB|fully final packages x-ray ca| +67564|333392|33393|2|6|8552.28|0.10|0.03|N|O|1996-03-06|1996-05-27|1996-03-28|DELIVER IN PERSON|REG AIR|ding accounts. slyly regular deposits| +67564|312551|25058|3|36|56287.44|0.02|0.01|N|O|1996-04-30|1996-04-27|1996-05-20|DELIVER IN PERSON|AIR|ess deposits. eve| +67564|34465|9466|4|50|69973.00|0.02|0.07|N|O|1996-05-10|1996-05-13|1996-05-26|COLLECT COD|MAIL|deas. ideas are quickly about the sp| +67564|241501|4006|5|31|44717.19|0.09|0.03|N|O|1996-05-04|1996-04-03|1996-05-10|TAKE BACK RETURN|AIR|e furiously even req| +67564|900990|26027|6|44|87601.80|0.09|0.07|N|O|1996-04-29|1996-04-03|1996-05-03|DELIVER IN PERSON|REG AIR|arefully unusual frays sleep blithely a| +67565|329156|16675|1|48|56886.72|0.03|0.02|R|F|1993-09-17|1993-11-30|1993-10-11|DELIVER IN PERSON|RAIL|eep idly blithely r| +67565|112610|25113|2|5|8113.05|0.06|0.08|R|F|1993-12-22|1993-11-06|1993-12-24|TAKE BACK RETURN|REG AIR|s. slyly fi| +67565|636024|11049|3|35|33599.65|0.00|0.00|A|F|1993-10-28|1993-11-28|1993-11-14|TAKE BACK RETURN|RAIL|egular accounts wake according to | +67566|445187|45188|1|1|1132.16|0.07|0.05|A|F|1994-11-25|1994-10-21|1994-12-06|TAKE BACK RETURN|RAIL| quickly pending excuses | +67566|248468|35981|2|17|24079.65|0.10|0.04|R|F|1994-08-27|1994-09-18|1994-08-30|NONE|RAIL|ffix quickly carefully re| +67566|995033|32591|3|40|45119.60|0.05|0.02|R|F|1994-08-21|1994-10-02|1994-08-31|TAKE BACK RETURN|SHIP|iously regular instruct| +67566|518890|18891|4|36|68719.32|0.03|0.02|A|F|1994-10-07|1994-09-25|1994-11-01|NONE|FOB|esias. blithely speci| +67567|478127|15655|1|37|40888.70|0.09|0.08|R|F|1992-11-09|1992-09-24|1992-12-06|COLLECT COD|FOB|ckages are slyly t| +67567|870991|33509|2|50|98097.50|0.08|0.04|A|F|1992-11-24|1992-11-14|1992-12-24|DELIVER IN PERSON|MAIL|quests. furiously u| +67567|732635|45150|3|50|83380.00|0.07|0.02|R|F|1992-12-15|1992-10-13|1992-12-21|NONE|MAIL| deposits boost bol| +67592|432547|45056|1|20|29590.40|0.01|0.08|N|O|1998-01-24|1998-01-01|1998-02-02|DELIVER IN PERSON|MAIL|sits are. slyly final requests| +67592|814752|39785|2|2|3333.42|0.07|0.01|N|O|1997-12-02|1998-01-06|1998-01-01|NONE|REG AIR|ng the furiously even requests mus| +67592|535531|10552|3|27|42295.77|0.05|0.01|N|O|1998-02-18|1998-01-15|1998-03-01|NONE|RAIL|ng the regul| +67593|982538|45058|1|1|1620.49|0.04|0.03|N|O|1997-08-14|1997-08-11|1997-08-16|COLLECT COD|REG AIR|onic requests. slyly final platelets | +67593|514542|27053|2|20|31130.40|0.05|0.05|N|O|1997-09-08|1997-08-05|1997-09-23|COLLECT COD|RAIL|xpress pinto beans affix carefully bli| +67594|262276|12277|1|4|4953.04|0.10|0.03|R|F|1994-03-23|1994-02-19|1994-04-01|TAKE BACK RETURN|RAIL|haggle unusual pinto beans. b| +67595|824945|49978|1|25|46747.50|0.06|0.06|R|F|1992-07-24|1992-08-26|1992-08-17|NONE|SHIP|s print quickly| +67595|834719|34720|2|39|64493.13|0.03|0.02|R|F|1992-08-24|1992-08-15|1992-08-29|NONE|MAIL|kages cajo| +67595|110116|35121|3|12|13513.32|0.09|0.08|R|F|1992-08-09|1992-07-28|1992-08-23|TAKE BACK RETURN|AIR|ully furious accounts nag. furious| +67595|704787|42330|4|27|48377.25|0.03|0.07|R|F|1992-09-29|1992-08-22|1992-10-02|DELIVER IN PERSON|RAIL|iously. blithely ironic accoun| +67595|350397|12905|5|6|8684.28|0.06|0.02|R|F|1992-06-27|1992-08-27|1992-07-08|NONE|RAIL|e accounts impress across the ac| +67595|115669|40674|6|13|21900.58|0.05|0.01|R|F|1992-07-30|1992-08-04|1992-08-09|COLLECT COD|FOB|ts. bold, regular packages haggle carefully| +67595|35743|23244|7|45|75543.30|0.01|0.00|A|F|1992-07-22|1992-08-14|1992-08-09|NONE|REG AIR| express sauternes. sl| +67596|729260|16803|1|43|55436.89|0.03|0.06|A|F|1993-10-15|1993-10-02|1993-10-20|NONE|RAIL|ckly ironic deposits. carefull| +67597|60704|35707|1|27|44946.90|0.03|0.00|N|O|1996-12-10|1996-11-08|1996-12-24|TAKE BACK RETURN|REG AIR| boost fluffily. carefully ironic foxes | +67597|245810|8315|2|28|49162.40|0.07|0.03|N|O|1996-11-06|1996-11-17|1996-12-01|COLLECT COD|MAIL|requests boost blithely along the ex| +67597|323855|23856|3|42|78911.28|0.06|0.06|N|O|1996-11-16|1996-11-12|1996-11-25|NONE|SHIP|y furiously e| +67597|25558|25559|4|17|25220.35|0.05|0.05|N|O|1997-02-03|1996-11-27|1997-02-19|NONE|MAIL|es was blithely agai| +67597|543547|31078|5|16|25448.32|0.00|0.02|N|O|1996-11-29|1997-01-06|1996-12-21|TAKE BACK RETURN|RAIL|s. accounts around the furiously regular| +67597|379740|4755|6|28|50952.44|0.01|0.00|N|O|1996-10-17|1996-12-03|1996-10-27|COLLECT COD|SHIP|uests sleep around the pinto beans. exp| +67598|51506|1507|1|13|18947.50|0.10|0.02|N|O|1998-06-30|1998-07-16|1998-07-08|COLLECT COD|MAIL|bout the caref| +67598|645543|20568|2|5|7442.55|0.02|0.03|N|O|1998-09-10|1998-08-02|1998-09-16|COLLECT COD|SHIP|uctions affix stealthily across the even r| +67598|636717|11742|3|20|33073.60|0.05|0.03|N|O|1998-09-12|1998-07-02|1998-10-07|TAKE BACK RETURN|RAIL|lar pinto be| +67598|302563|40082|4|10|15655.50|0.09|0.02|N|O|1998-06-18|1998-07-18|1998-06-19|TAKE BACK RETURN|REG AIR| grouches. furiously final pack| +67598|161662|49172|5|25|43091.50|0.08|0.07|N|O|1998-07-22|1998-07-28|1998-08-04|NONE|AIR|ecoys. blithely pending pinto beans benea| +67599|711245|11246|1|18|22611.78|0.03|0.05|N|O|1995-10-11|1995-09-11|1995-11-02|TAKE BACK RETURN|SHIP| final, special foxes could have to sle| +67599|882870|20422|2|13|24086.79|0.01|0.07|N|O|1995-08-24|1995-09-16|1995-09-04|TAKE BACK RETURN|AIR|ies. slyly ironic pack| +67624|329759|17278|1|36|64394.64|0.06|0.08|N|O|1996-09-29|1996-09-11|1996-10-17|TAKE BACK RETURN|FOB|arefully regular packages boo| +67624|254223|16729|2|3|3531.63|0.03|0.07|N|O|1996-10-21|1996-09-22|1996-10-22|TAKE BACK RETURN|TRUCK|ages use carefully. ironic, f| +67624|721882|34397|3|45|85673.25|0.00|0.03|N|O|1996-08-20|1996-09-13|1996-09-02|COLLECT COD|MAIL|eaves. furiously regular instructions| +67624|670179|45206|4|14|16087.96|0.01|0.02|N|O|1996-11-03|1996-08-09|1996-11-09|TAKE BACK RETURN|FOB|ntegrate fluffily blithely unusua| +67624|693374|5888|5|48|65632.32|0.04|0.00|N|O|1996-08-10|1996-08-26|1996-09-03|COLLECT COD|AIR|nd the furiously final pint| +67625|82038|7041|1|28|28560.84|0.00|0.05|N|O|1998-01-31|1998-02-11|1998-02-19|TAKE BACK RETURN|FOB| beans detect blithely. carefull| +67625|799069|36615|2|1|1168.03|0.02|0.04|N|O|1998-03-19|1998-02-09|1998-03-30|DELIVER IN PERSON|MAIL| accounts. furiously ev| +67625|939423|1942|3|1|1462.38|0.07|0.08|N|O|1998-01-09|1998-01-26|1998-02-06|TAKE BACK RETURN|SHIP|eas wake slyly brave| +67625|875466|13018|4|19|27386.98|0.00|0.08|N|O|1997-11-29|1998-02-16|1997-12-14|NONE|MAIL|re slyly pending decoys. sly| +67625|941320|28875|5|50|68064.00|0.10|0.04|N|O|1998-03-15|1998-02-04|1998-03-22|NONE|AIR|posits haggle slyly. carefully| +67625|752181|39727|6|44|54258.60|0.03|0.06|N|O|1997-12-19|1998-01-21|1998-01-04|TAKE BACK RETURN|REG AIR|ely even pinto beans cajole slyly even acco| +67626|917823|17824|1|31|57064.18|0.03|0.00|N|O|1996-02-24|1996-01-23|1996-02-26|DELIVER IN PERSON|REG AIR| final acco| +67626|847684|35233|2|14|22842.96|0.10|0.07|N|O|1995-12-22|1996-01-11|1996-01-20|COLLECT COD|REG AIR|e carefully quickly | +67626|15363|2864|3|28|35794.08|0.07|0.03|N|O|1996-02-01|1996-02-05|1996-02-25|DELIVER IN PERSON|REG AIR|. carefully | +67627|612885|12886|1|44|79105.40|0.00|0.02|N|O|1996-06-19|1996-06-13|1996-07-19|DELIVER IN PERSON|MAIL|e. always pendi| +67627|751520|39066|2|15|23572.35|0.01|0.08|N|O|1996-05-31|1996-05-01|1996-06-25|NONE|SHIP| requests? furiously bold r| +67627|782738|32739|3|32|58262.40|0.09|0.06|N|O|1996-05-10|1996-06-17|1996-05-15|COLLECT COD|TRUCK|s realms cajole quickly across the in| +67627|465617|28127|4|10|15825.90|0.03|0.02|N|O|1996-07-20|1996-05-07|1996-07-21|TAKE BACK RETURN|FOB|xpress deposits. carefully final asympto| +67628|175778|25779|1|48|88980.96|0.00|0.03|R|F|1995-03-13|1995-03-21|1995-03-25|DELIVER IN PERSON|SHIP|tornis. requests haggle. qui| +67628|297133|47134|2|3|3390.36|0.03|0.05|R|F|1995-04-05|1995-04-23|1995-04-25|NONE|TRUCK|ic deposits haggle according to the c| +67628|903731|3732|3|17|29489.73|0.07|0.00|R|F|1995-03-06|1995-04-21|1995-03-29|NONE|RAIL|gainst the qui| +67628|995281|20320|4|17|23396.08|0.01|0.03|N|F|1995-05-31|1995-03-26|1995-06-30|COLLECT COD|REG AIR|deposits. express platelets wake | +67628|685352|47866|5|38|50818.16|0.06|0.01|R|F|1995-05-22|1995-03-26|1995-06-02|DELIVER IN PERSON|REG AIR|blithely; blithely iro| +67628|698226|23253|6|15|18362.85|0.08|0.06|A|F|1995-06-02|1995-04-23|1995-06-05|COLLECT COD|FOB|eposits ought to ca| +67629|306451|31464|1|24|34978.56|0.01|0.00|N|O|1996-12-22|1996-12-22|1996-12-25|TAKE BACK RETURN|SHIP|uickly express deposits. quickly | +67629|510170|10171|2|5|5900.75|0.09|0.08|N|O|1996-11-14|1996-11-25|1996-12-01|NONE|MAIL|c frays. carefully final grouch| +67629|421343|46360|3|2|2528.64|0.01|0.00|N|O|1996-12-03|1996-12-14|1996-12-09|COLLECT COD|REG AIR|encies among the deposits boo| +67629|498612|48613|4|17|27380.03|0.10|0.00|N|O|1996-11-12|1997-01-10|1996-11-28|DELIVER IN PERSON|SHIP|ggle pinto be| +67629|161677|24181|5|36|62592.12|0.00|0.03|N|O|1996-10-29|1997-01-16|1996-11-07|TAKE BACK RETURN|FOB|es sleep caref| +67629|303073|15580|6|45|48422.70|0.09|0.02|N|O|1996-12-06|1997-01-05|1996-12-24|DELIVER IN PERSON|AIR| blithely alongside of the even packages. | +67630|32128|44629|1|22|23322.64|0.02|0.05|R|F|1994-02-18|1994-03-02|1994-03-12|DELIVER IN PERSON|RAIL|uriously even requests sleep | +67630|971214|8772|2|27|34699.59|0.05|0.07|R|F|1994-03-15|1994-02-01|1994-03-26|DELIVER IN PERSON|RAIL|he regularly bold packages. s| +67630|188339|38340|3|13|18555.29|0.04|0.07|R|F|1994-02-05|1994-02-02|1994-02-08|COLLECT COD|FOB|asymptotes across the bli| +67630|413436|13437|4|42|56675.22|0.03|0.03|R|F|1994-03-30|1994-02-19|1994-04-23|COLLECT COD|TRUCK|ckages sleep furiously regular| +67630|607355|44892|5|43|54279.76|0.08|0.07|A|F|1994-02-16|1994-02-15|1994-02-19|NONE|SHIP|riously close foxe| +67630|805887|30920|6|23|41235.32|0.06|0.02|A|F|1994-03-21|1994-02-18|1994-04-04|DELIVER IN PERSON|AIR|eep. quickly ironic foxes haggl| +67631|394652|44653|1|44|76852.16|0.01|0.02|N|O|1996-11-28|1996-11-08|1996-12-20|TAKE BACK RETURN|SHIP|st blithely along| +67631|905206|17725|2|50|60558.00|0.01|0.08|N|O|1996-11-28|1996-11-08|1996-12-08|NONE|REG AIR|t the regular, express accounts are| +67631|781792|19338|3|7|13116.32|0.08|0.02|N|O|1996-09-07|1996-11-02|1996-09-28|DELIVER IN PERSON|FOB|ly even platelets sleep furiously among| +67631|568828|31340|4|2|3793.60|0.05|0.07|N|O|1996-11-16|1996-11-06|1996-12-15|NONE|SHIP|gular excuses haggle blithely. enticing| +67631|289489|39490|5|1|1478.47|0.06|0.06|N|O|1996-09-18|1996-11-13|1996-10-07|NONE|TRUCK|larly across the| +67656|420190|7715|1|48|53288.16|0.02|0.05|R|F|1992-01-22|1992-02-13|1992-02-15|DELIVER IN PERSON|MAIL| packages alongside of th| +67656|120169|20170|2|40|47566.40|0.07|0.05|A|F|1992-03-06|1992-02-08|1992-03-20|DELIVER IN PERSON|MAIL|cial forges haggle carefully e| +67657|601585|39122|1|30|44596.50|0.05|0.03|R|F|1993-12-26|1993-12-01|1993-12-30|COLLECT COD|SHIP|ding accounts sleep. carefully final acc| +67657|825558|38075|2|23|34120.73|0.09|0.01|A|F|1993-12-30|1993-12-27|1994-01-28|NONE|SHIP|thely ironic theodolites cajole pending, | +67658|680381|42895|1|39|53092.65|0.01|0.05|N|O|1997-04-01|1997-05-07|1997-04-26|TAKE BACK RETURN|MAIL| final ideas. final, ex| +67658|154685|29692|2|36|62628.48|0.10|0.02|N|O|1997-03-19|1997-04-06|1997-04-08|NONE|FOB|s haggle fluffily. blithely even | +67658|774282|24283|3|28|37975.00|0.01|0.05|N|O|1997-04-20|1997-04-08|1997-04-28|NONE|MAIL|g the carefully pending reques| +67659|619408|31921|1|7|9291.59|0.10|0.07|R|F|1993-06-28|1993-05-07|1993-07-25|NONE|REG AIR|unts cajole requests. special, idle pack| +67659|382502|20024|2|28|44365.72|0.00|0.03|A|F|1993-05-21|1993-06-17|1993-06-06|DELIVER IN PERSON|RAIL|ages. never pendin| +67659|702193|14708|3|30|35854.80|0.07|0.07|R|F|1993-04-08|1993-05-25|1993-04-29|NONE|FOB|refully along the bold p| +67659|747182|34725|4|31|38103.65|0.02|0.00|A|F|1993-07-11|1993-06-18|1993-08-03|DELIVER IN PERSON|FOB|foxes. fur| +67660|361160|36175|1|37|45182.55|0.04|0.02|A|F|1993-01-16|1992-11-09|1993-02-11|TAKE BACK RETURN|SHIP|ng to the care| +67661|904364|16883|1|4|5473.28|0.09|0.03|R|F|1994-01-26|1994-02-09|1994-02-21|NONE|TRUCK|re quickly aga| +67661|640787|3300|2|16|27644.00|0.07|0.03|A|F|1993-11-28|1994-01-18|1993-12-18|TAKE BACK RETURN|FOB| carefully ironic requests. ironic, b| +67661|700162|37705|3|12|13945.56|0.06|0.07|A|F|1994-02-27|1994-02-05|1994-03-21|DELIVER IN PERSON|TRUCK|oost pending instructions. | +67661|613529|13530|4|42|60584.58|0.07|0.03|R|F|1994-02-14|1994-01-14|1994-03-01|TAKE BACK RETURN|MAIL|ular accou| +67661|568908|6442|5|39|77098.32|0.08|0.00|A|F|1994-03-13|1994-01-04|1994-04-09|DELIVER IN PERSON|SHIP|lites are slyly at the expre| +67661|630451|5476|6|19|26246.98|0.00|0.07|R|F|1994-02-24|1994-02-10|1994-03-01|COLLECT COD|SHIP|ites. carefully silent acco| +67662|978764|41284|1|7|12899.04|0.02|0.05|A|F|1994-06-06|1994-06-07|1994-06-07|DELIVER IN PERSON|AIR|ide of the furiously even accounts. fur| +67662|75143|12647|2|36|40253.04|0.04|0.03|R|F|1994-06-12|1994-05-11|1994-07-11|DELIVER IN PERSON|TRUCK|usly regular req| +67663|518800|6331|1|33|60019.74|0.00|0.01|A|F|1993-07-03|1993-06-04|1993-07-09|DELIVER IN PERSON|REG AIR|ding to the ironic, bo| +67663|464040|14041|2|34|34136.68|0.08|0.00|A|F|1993-08-16|1993-06-18|1993-09-04|NONE|REG AIR|dencies. pending instructions ha| +67663|107331|32336|3|19|25428.27|0.04|0.00|R|F|1993-05-27|1993-06-27|1993-06-14|COLLECT COD|AIR|r platelets | +67663|909603|47158|4|48|77402.88|0.04|0.02|A|F|1993-05-11|1993-06-27|1993-06-09|DELIVER IN PERSON|MAIL|refully fluffily u| +67688|379109|4124|1|32|38018.88|0.07|0.04|N|O|1995-07-02|1995-06-23|1995-07-25|NONE|MAIL|ers. fluffily bold idea| +67688|679908|17448|2|27|50972.49|0.04|0.08|A|F|1995-05-16|1995-07-27|1995-06-08|COLLECT COD|RAIL|g, regular accounts are aft| +67689|790743|40744|1|48|88018.08|0.02|0.06|A|F|1992-12-10|1993-02-24|1993-01-06|COLLECT COD|FOB|ter the packages. inst| +67689|8261|45762|2|35|40924.10|0.10|0.08|A|F|1993-02-24|1993-01-07|1993-03-25|TAKE BACK RETURN|RAIL|inos. accounts cajole furiously bold idea| +67689|832325|32326|3|25|31432.00|0.01|0.04|R|F|1993-01-24|1993-02-23|1993-02-13|COLLECT COD|MAIL|lithely after | +67689|874610|37128|4|48|76059.36|0.02|0.03|A|F|1993-01-21|1993-01-17|1993-02-11|DELIVER IN PERSON|TRUCK|ely express depend| +67689|568263|18264|5|31|41268.44|0.08|0.08|R|F|1993-01-12|1993-01-16|1993-01-28|DELIVER IN PERSON|TRUCK|believe against the b| +67690|78397|15901|1|1|1375.39|0.02|0.05|N|O|1995-11-06|1996-01-01|1995-11-09|DELIVER IN PERSON|REG AIR|usly. even, | +67690|611082|48619|2|11|10923.55|0.06|0.01|N|O|1996-01-10|1996-01-06|1996-01-31|COLLECT COD|AIR|ending theodolites eat? unusual, ironic ac| +67690|440305|40306|3|10|12452.80|0.04|0.03|N|O|1996-01-15|1995-12-10|1996-01-22|COLLECT COD|REG AIR|ole. special, final foxes cajole a| +67690|190771|28281|4|31|57714.87|0.04|0.01|N|O|1995-10-19|1995-11-18|1995-10-21|COLLECT COD|REG AIR| slyly about the bold| +67690|276968|14484|5|45|87522.75|0.08|0.00|N|O|1995-12-04|1996-01-04|1995-12-31|TAKE BACK RETURN|FOB|rding to th| +67690|993689|31247|6|35|62392.40|0.07|0.00|N|O|1996-01-13|1995-11-27|1996-01-19|NONE|SHIP|e furiously | +67690|917267|4822|7|32|41095.04|0.03|0.03|N|O|1995-11-17|1995-12-30|1995-12-16|NONE|TRUCK|al requests are slyly brave, unusual | +67691|499094|36622|1|1|1093.07|0.10|0.07|R|F|1992-10-06|1992-11-04|1992-10-17|COLLECT COD|AIR|r decoys are slyly fluff| +67691|258964|46480|2|37|71149.15|0.07|0.04|R|F|1992-11-12|1992-10-31|1992-11-22|NONE|AIR|ironic excuses use blithely bold | +67691|403291|40816|3|20|23885.40|0.00|0.06|R|F|1992-11-04|1992-09-22|1992-11-22|COLLECT COD|SHIP| furiously special instructions a| +67692|526085|13616|1|42|46664.52|0.03|0.04|R|F|1994-03-18|1994-02-05|1994-03-22|NONE|SHIP|ccounts. special| +67692|905262|17781|2|18|22809.96|0.02|0.03|A|F|1994-01-06|1994-01-25|1994-01-07|TAKE BACK RETURN|MAIL|cies. furiously expr| +67692|736108|36109|3|34|38898.38|0.03|0.06|R|F|1994-02-09|1994-01-08|1994-03-03|COLLECT COD|FOB|jole thinly. requests | +67692|760563|23079|4|24|38964.72|0.02|0.01|R|F|1994-02-27|1994-01-05|1994-03-09|NONE|AIR|unusual, r| +67692|780056|17602|5|17|19312.34|0.04|0.02|A|F|1994-01-05|1994-02-22|1994-01-13|COLLECT COD|REG AIR|eodolites sleep blithely! carefully sile| +67693|427534|2551|1|16|23384.16|0.09|0.05|R|F|1995-05-20|1995-05-31|1995-06-16|NONE|AIR| according to the carefully ironic pack| +67693|552492|40026|2|6|9266.82|0.10|0.03|R|F|1995-05-01|1995-05-20|1995-05-29|TAKE BACK RETURN|SHIP| regular decoys haggle f| +67693|727150|27151|3|50|58856.00|0.08|0.06|A|F|1995-03-29|1995-05-07|1995-04-25|TAKE BACK RETURN|TRUCK|ent, express packages integrate carefully c| +67694|192028|29538|1|38|42560.76|0.02|0.02|R|F|1993-05-29|1993-06-11|1993-06-06|COLLECT COD|RAIL| according to the slyly e| +67695|155455|17959|1|17|25677.65|0.07|0.05|R|F|1993-01-28|1993-01-23|1993-02-07|NONE|FOB|as impress pending, special accoun| +67695|724466|12009|2|10|14904.30|0.03|0.01|R|F|1993-02-26|1993-02-28|1993-03-05|COLLECT COD|REG AIR|e the doggedly pendi| +67695|91737|29241|3|26|44946.98|0.02|0.07|R|F|1993-01-30|1993-02-03|1993-02-17|COLLECT COD|TRUCK|against the even requests. ironic | +67695|811149|11150|4|20|21202.00|0.06|0.03|R|F|1993-03-28|1993-01-19|1993-04-13|NONE|AIR|regularly pend| +67695|967408|29928|5|47|69341.92|0.00|0.06|A|F|1993-03-29|1993-03-19|1993-04-17|NONE|RAIL|ly. packages w| +67720|450327|328|1|14|17882.20|0.01|0.00|N|O|1998-05-03|1998-03-02|1998-05-23|DELIVER IN PERSON|RAIL| deposits; quickly pen| +67720|645089|32626|2|16|16544.80|0.05|0.07|N|O|1998-01-26|1998-02-21|1998-01-28|NONE|REG AIR|ns haggle after the| +67721|994103|31661|1|25|29926.50|0.05|0.05|N|O|1997-07-24|1997-08-12|1997-08-23|NONE|REG AIR|ously final requests. carefully s| +67721|887502|25054|2|40|59578.40|0.07|0.04|N|O|1997-08-21|1997-07-30|1997-09-20|NONE|MAIL|e slyly regular foxe| +67721|237054|49559|3|5|4955.20|0.09|0.00|N|O|1997-08-11|1997-07-28|1997-08-14|NONE|SHIP|instructions are fluffily i| +67721|159359|21863|4|10|14183.50|0.10|0.05|N|O|1997-08-04|1997-09-03|1997-08-24|NONE|REG AIR|fully. special ideas cajole slyl| +67722|837919|436|1|11|20425.57|0.07|0.03|A|F|1992-08-29|1992-08-16|1992-09-20|COLLECT COD|SHIP|he carefully ev| +67723|627194|39707|1|39|43725.24|0.01|0.01|R|F|1992-11-22|1992-12-26|1992-11-24|NONE|MAIL|instructions. furiou| +67723|237651|12660|2|14|22240.96|0.09|0.05|R|F|1992-11-22|1992-12-22|1992-12-08|COLLECT COD|SHIP| are fluffily over the furiou| +67723|187020|37021|3|31|34317.62|0.00|0.07|A|F|1993-01-06|1992-12-08|1993-01-27|NONE|FOB|y according to the qui| +67723|234296|9305|4|19|23375.32|0.04|0.06|R|F|1992-12-12|1993-01-25|1992-12-15|NONE|RAIL|fily regular instructions n| +67724|853317|40869|1|11|13972.97|0.02|0.08|N|O|1998-07-24|1998-10-04|1998-08-10|DELIVER IN PERSON|REG AIR|gular accounts haggle. special| +67724|686030|11057|2|18|18288.00|0.01|0.05|N|O|1998-08-04|1998-09-19|1998-09-03|NONE|AIR|tegrate against th| +67724|90946|3448|3|7|13558.58|0.08|0.03|N|O|1998-09-25|1998-08-21|1998-10-07|COLLECT COD|REG AIR|yly ironic deposits doubt | +67724|526560|14091|4|33|52355.82|0.05|0.00|N|O|1998-09-24|1998-09-23|1998-10-20|COLLECT COD|RAIL|ely ironic accounts about the stealthy, fi| +67724|884285|21837|5|25|31731.00|0.08|0.04|N|O|1998-09-06|1998-08-14|1998-10-04|COLLECT COD|FOB|packages slee| +67724|168809|31313|6|16|30044.80|0.03|0.01|N|O|1998-09-30|1998-08-18|1998-10-24|DELIVER IN PERSON|REG AIR|ove the special, quick deposits | +67725|882803|32804|1|2|3571.52|0.02|0.04|R|F|1992-11-21|1992-12-26|1992-12-07|COLLECT COD|RAIL|s among the carefully final requests hag| +67725|256787|31798|2|42|73238.34|0.08|0.08|R|F|1992-12-20|1992-12-18|1993-01-18|COLLECT COD|AIR|ar pinto beans are carefully quietly unu| +67725|809583|34616|3|13|19403.02|0.02|0.00|A|F|1992-11-27|1992-12-17|1992-12-04|NONE|SHIP| by the pinto beans. quickly bold accounts| +67725|648988|36525|4|1|1936.95|0.04|0.06|A|F|1993-01-20|1992-11-18|1993-02-11|COLLECT COD|SHIP|. regular, ironic | +67725|525663|684|5|37|62479.68|0.01|0.00|R|F|1992-11-03|1992-12-20|1992-11-25|COLLECT COD|AIR|hins. pendi| +67725|809383|21900|6|9|11631.06|0.10|0.04|A|F|1993-01-27|1992-12-10|1993-02-10|NONE|TRUCK|ainst the express, pending deposits? s| +67726|372326|22327|1|42|58729.02|0.08|0.02|N|O|1998-09-04|1998-07-23|1998-09-28|DELIVER IN PERSON|TRUCK|y pending pinto beans. quick accounts c| +67726|675496|13036|2|45|66215.70|0.02|0.02|N|O|1998-07-02|1998-07-28|1998-07-18|NONE|REG AIR|tions. silent| +67726|52635|27638|3|39|61917.57|0.10|0.02|N|O|1998-09-02|1998-07-19|1998-09-23|DELIVER IN PERSON|SHIP|e carefully about the a| +67726|631572|31573|4|41|61645.14|0.01|0.03|N|O|1998-07-07|1998-08-05|1998-07-30|DELIVER IN PERSON|MAIL|into beans haggle furiously. f| +67726|814663|27180|5|29|45750.98|0.07|0.03|N|O|1998-07-10|1998-08-18|1998-08-09|TAKE BACK RETURN|MAIL|totes solve express i| +67727|744508|32051|1|28|43469.16|0.03|0.00|N|O|1997-04-14|1997-06-06|1997-05-03|COLLECT COD|RAIL| dependencies. carefull| +67727|942732|17769|2|40|70987.60|0.07|0.07|N|O|1997-06-03|1997-07-03|1997-06-07|TAKE BACK RETURN|SHIP|lyly ironic instru| +67727|480943|30944|3|46|88500.32|0.02|0.01|N|O|1997-07-09|1997-05-08|1997-07-22|DELIVER IN PERSON|AIR|ole. carefully even asymptotes along| +67727|193845|31355|4|14|27143.76|0.06|0.00|N|O|1997-07-22|1997-05-30|1997-08-10|TAKE BACK RETURN|MAIL|posits. ironic foxes might hagg| +67752|343116|18129|1|41|47523.10|0.03|0.00|N|O|1996-10-09|1996-10-16|1996-10-20|DELIVER IN PERSON|FOB|s ideas. regular wa| +67752|744570|19599|2|50|80727.00|0.06|0.04|N|O|1996-11-20|1996-09-17|1996-12-14|TAKE BACK RETURN|FOB|odolites. busy, unu| +67753|467529|17530|1|16|23944.00|0.05|0.05|N|O|1998-06-04|1998-03-22|1998-06-17|DELIVER IN PERSON|FOB|unts. even packages nag quickly acco| +67753|755959|5960|2|6|12089.52|0.05|0.07|N|O|1998-02-08|1998-03-19|1998-03-10|NONE|TRUCK|thlessly pending ideas. furiously quie| +67754|908372|20891|1|41|56593.53|0.07|0.00|A|F|1993-12-14|1993-11-28|1994-01-12|COLLECT COD|MAIL|y bold acc| +67754|993824|43825|2|30|57533.40|0.04|0.00|R|F|1993-11-09|1993-11-18|1993-11-28|DELIVER IN PERSON|SHIP|posits thrash slyly even platelets. m| +67754|198059|48060|3|18|20826.90|0.05|0.04|R|F|1993-11-28|1993-12-05|1993-12-06|TAKE BACK RETURN|TRUCK|le above the furiously even requests. slyly| +67754|767466|29982|4|18|27601.74|0.03|0.07|A|F|1993-11-09|1993-12-26|1993-11-22|DELIVER IN PERSON|AIR|. quickly brave accounts | +67754|784380|46896|5|35|51252.25|0.02|0.03|A|F|1993-11-05|1993-11-29|1993-11-23|TAKE BACK RETURN|AIR|ly. bravely even deposits int| +67754|59336|34339|6|26|33678.58|0.02|0.02|A|F|1993-11-22|1993-11-07|1993-12-14|COLLECT COD|SHIP|e ironic theodolites. blithely| +67754|255177|30188|7|29|32832.64|0.10|0.05|R|F|1993-11-13|1993-12-28|1993-12-13|COLLECT COD|REG AIR|usly bold foxes haggle bli| +67755|758935|8936|1|31|61810.90|0.08|0.07|N|O|1998-04-19|1998-05-10|1998-05-09|DELIVER IN PERSON|SHIP|refully even platelets haggle against the | +67755|409552|34569|2|39|56999.67|0.09|0.03|N|O|1998-04-25|1998-06-17|1998-04-27|DELIVER IN PERSON|MAIL|pending deposits after t| +67756|25082|12583|1|4|4028.32|0.01|0.01|R|F|1995-05-09|1995-05-18|1995-05-26|DELIVER IN PERSON|MAIL|s asymptotes. ironic, bold deposi| +67757|519041|44062|1|7|7420.14|0.09|0.08|A|F|1995-03-27|1995-02-28|1995-04-08|COLLECT COD|FOB|across the asymptotes haggle quick| +67757|519711|19712|2|24|41536.56|0.06|0.08|A|F|1995-01-10|1995-01-25|1995-01-16|TAKE BACK RETURN|RAIL|rges. quickly even excuses are| +67757|778374|40890|3|35|50831.90|0.06|0.06|R|F|1995-03-31|1995-03-09|1995-04-06|TAKE BACK RETURN|MAIL| thin pinto beans are furiously against the| +67757|121196|21197|4|15|18257.85|0.08|0.05|A|F|1995-01-11|1995-02-16|1995-01-30|NONE|FOB|rs wake according to the blithely even r| +67758|181499|6506|1|24|37931.76|0.05|0.05|N|O|1997-10-15|1997-11-05|1997-11-06|COLLECT COD|REG AIR|eposits according to the even pinto b| +67758|449378|11887|2|32|42475.20|0.10|0.05|N|O|1997-11-23|1997-12-14|1997-12-06|NONE|REG AIR|special dugouts. packages solv| +67758|682152|7179|3|49|55571.88|0.05|0.01|N|O|1998-01-19|1997-12-13|1998-02-17|COLLECT COD|SHIP|al theodolites against the | +67758|923250|10805|4|16|20371.36|0.01|0.06|N|O|1997-10-12|1997-12-13|1997-10-30|DELIVER IN PERSON|MAIL|the furiously ironic| +67758|62171|12172|5|33|37394.61|0.03|0.06|N|O|1997-10-16|1997-11-13|1997-10-27|COLLECT COD|MAIL|pendencies. special, final dependencies | +67758|893254|30806|6|5|6236.05|0.00|0.01|N|O|1997-09-27|1997-11-22|1997-09-29|TAKE BACK RETURN|TRUCK|en excuses. quickly regular accounts | +67758|912374|49929|7|28|38817.24|0.00|0.08|N|O|1997-10-05|1997-12-16|1997-10-30|NONE|FOB|against the requests| +67759|265851|28357|1|28|50871.52|0.05|0.01|A|F|1993-11-06|1993-10-30|1993-11-14|NONE|FOB| above the dinos| +67759|148311|48312|2|11|14952.41|0.01|0.06|A|F|1993-08-05|1993-09-11|1993-08-17|NONE|SHIP|hins around the carefully special foxe| +67784|815277|15278|1|10|11922.30|0.00|0.08|N|O|1997-05-27|1997-07-05|1997-06-20|NONE|RAIL|. unusual pinto bea| +67784|351263|26278|2|40|52570.00|0.09|0.01|N|O|1997-06-27|1997-07-02|1997-07-12|TAKE BACK RETURN|REG AIR|nusual escapades above t| +67784|670493|45520|3|7|10244.22|0.04|0.07|N|O|1997-07-03|1997-07-09|1997-07-17|DELIVER IN PERSON|REG AIR|into beans affix quickly accordi| +67784|964958|14959|4|28|56641.48|0.01|0.07|N|O|1997-05-10|1997-07-30|1997-06-05|TAKE BACK RETURN|AIR|unts. final gi| +67784|36631|11632|5|48|75246.24|0.01|0.08|N|O|1997-07-13|1997-07-14|1997-07-30|TAKE BACK RETURN|REG AIR|e the blithely stealthy depo| +67784|647807|10320|6|33|57907.41|0.08|0.05|N|O|1997-06-14|1997-07-19|1997-07-01|DELIVER IN PERSON|RAIL|ly about t| +67784|675447|474|7|5|7112.05|0.10|0.03|N|O|1997-07-06|1997-07-19|1997-08-02|DELIVER IN PERSON|FOB|ual accounts cajol| +67785|228871|16384|1|4|7199.44|0.02|0.06|N|O|1998-04-15|1998-06-14|1998-05-12|TAKE BACK RETURN|SHIP|ptotes sleep | +67785|621681|46706|2|43|68913.95|0.03|0.06|N|O|1998-06-24|1998-05-30|1998-07-04|NONE|AIR|excuses. dependencies| +67785|576475|1498|3|29|44992.05|0.00|0.02|N|O|1998-07-25|1998-06-27|1998-08-23|TAKE BACK RETURN|REG AIR|ending ideas doze. slyly special | +67785|812067|37100|4|21|20559.42|0.05|0.03|N|O|1998-06-03|1998-06-22|1998-06-22|TAKE BACK RETURN|RAIL|nstructions sleep| +67785|394372|6880|5|11|16129.96|0.08|0.08|N|O|1998-05-11|1998-06-07|1998-06-02|DELIVER IN PERSON|REG AIR|ing accounts solve quickly; fl| +67785|195351|32861|6|44|63639.40|0.00|0.08|N|O|1998-06-21|1998-07-08|1998-07-13|NONE|RAIL|ss pains boost blithely unusual epita| +67786|575169|192|1|29|36080.06|0.01|0.06|N|O|1997-02-16|1997-04-23|1997-03-04|TAKE BACK RETURN|MAIL| the requests. special pinto beans integ| +67786|850648|649|2|42|67141.20|0.06|0.02|N|O|1997-03-07|1997-04-26|1997-04-05|TAKE BACK RETURN|MAIL| theodolites sn| +67786|837819|37820|3|24|42162.48|0.09|0.07|N|O|1997-05-07|1997-04-24|1997-05-14|DELIVER IN PERSON|AIR|usly express | +67786|212846|37855|4|9|15829.47|0.07|0.08|N|O|1997-05-25|1997-04-05|1997-05-26|COLLECT COD|SHIP|sits about the fluffily special requests| +67786|299464|49465|5|49|71709.05|0.07|0.08|N|O|1997-04-02|1997-03-22|1997-04-03|DELIVER IN PERSON|MAIL|, ironic requests across the quic| +67786|85611|10614|6|10|15966.10|0.08|0.05|N|O|1997-04-22|1997-04-03|1997-05-06|COLLECT COD|REG AIR|lites are fluffily. bl| +67786|857077|19595|7|45|46531.35|0.00|0.08|N|O|1997-05-23|1997-04-12|1997-06-22|COLLECT COD|FOB|ng to the requests! i| +67787|881152|31153|1|26|29460.86|0.05|0.06|N|O|1997-07-07|1997-07-19|1997-07-25|TAKE BACK RETURN|SHIP| try to are quickly final packag| +67787|508136|20647|2|7|8008.77|0.09|0.08|N|O|1997-06-14|1997-08-18|1997-06-17|NONE|REG AIR|e requests print| +67787|240974|3479|3|47|90003.12|0.03|0.03|N|O|1997-07-27|1997-07-14|1997-08-12|NONE|TRUCK|enticingly about| +67787|44169|19170|4|29|32281.64|0.07|0.07|N|O|1997-07-13|1997-08-10|1997-07-27|DELIVER IN PERSON|AIR|ully regular | +67787|347474|22487|5|38|57815.48|0.00|0.05|N|O|1997-07-28|1997-07-23|1997-08-05|TAKE BACK RETURN|REG AIR|iously unusual ac| +67787|987819|339|6|44|83897.88|0.00|0.01|N|O|1997-07-27|1997-07-08|1997-08-08|TAKE BACK RETURN|TRUCK| wake carefully closely iro| +67787|269717|32223|7|50|84335.00|0.09|0.03|N|O|1997-08-16|1997-07-15|1997-08-20|TAKE BACK RETURN|RAIL|ckly regular packages. carefully regular| +67788|133065|20572|1|19|20863.14|0.01|0.03|R|F|1994-10-11|1994-09-15|1994-10-20|TAKE BACK RETURN|RAIL|ly final packages doubt silently eve| +67788|419304|31813|2|13|15902.64|0.05|0.05|A|F|1994-09-09|1994-10-15|1994-09-20|TAKE BACK RETURN|REG AIR| even packages grow | +67788|228960|41465|3|4|7555.80|0.06|0.07|R|F|1994-10-30|1994-10-10|1994-11-28|DELIVER IN PERSON|FOB|gular ideas. care| +67789|185754|23264|1|16|29436.00|0.10|0.06|A|F|1995-03-09|1995-03-25|1995-04-05|DELIVER IN PERSON|AIR|ndencies. | +67789|951447|26486|2|49|73421.60|0.09|0.00|A|F|1995-03-12|1995-04-02|1995-03-18|TAKE BACK RETURN|REG AIR|around the deposits wake fur| +67789|965366|27886|3|22|31489.04|0.03|0.02|A|F|1995-05-07|1995-05-16|1995-05-13|COLLECT COD|SHIP|inal dependencies wake slyly accoun| +67789|904669|29706|4|3|5020.86|0.03|0.03|R|F|1995-03-25|1995-04-16|1995-03-31|TAKE BACK RETURN|MAIL|cording to the blithely bo| +67789|765329|27845|5|2|2788.58|0.09|0.03|R|F|1995-05-09|1995-04-04|1995-05-20|TAKE BACK RETURN|REG AIR|ing platelets.| +67789|881545|31546|6|23|35109.50|0.03|0.07|R|F|1995-03-12|1995-04-02|1995-03-28|DELIVER IN PERSON|RAIL|ng slyly? f| +67789|110790|35795|7|37|66629.23|0.06|0.03|R|F|1995-03-29|1995-04-18|1995-04-26|DELIVER IN PERSON|REG AIR|ns are furiously. even packages are. r| +67790|43639|31140|1|38|60139.94|0.09|0.07|R|F|1993-05-04|1993-05-11|1993-05-27|TAKE BACK RETURN|AIR|y ironic inst| +67790|429397|16922|2|16|21221.92|0.06|0.07|A|F|1993-05-26|1993-06-04|1993-06-20|NONE|FOB|ly silent packages. fluff| +67790|862070|37105|3|18|18576.54|0.01|0.04|A|F|1993-07-25|1993-05-08|1993-07-26|TAKE BACK RETURN|TRUCK| asymptotes. quickly final packages woul| +67790|805524|43073|4|34|48602.32|0.08|0.08|A|F|1993-06-14|1993-05-09|1993-06-18|COLLECT COD|FOB| requests are furiously besides the bl| +67790|435590|10607|5|46|70176.22|0.00|0.04|R|F|1993-05-07|1993-06-21|1993-05-21|NONE|TRUCK|lphins wak| +67790|947178|22215|6|18|22052.34|0.00|0.06|A|F|1993-04-20|1993-05-05|1993-04-24|NONE|TRUCK|ckages hag| +67790|206772|6773|7|26|43647.76|0.05|0.01|A|F|1993-05-17|1993-05-28|1993-05-18|NONE|TRUCK| quiet accounts| +67791|207373|32382|1|40|51214.40|0.03|0.03|A|F|1994-04-26|1994-05-27|1994-05-23|COLLECT COD|AIR|ent requests. carefully final dolphin| +67791|308265|8266|2|15|19098.75|0.09|0.05|A|F|1994-06-28|1994-06-01|1994-07-17|TAKE BACK RETURN|FOB|to the regular | +67791|3012|40513|3|47|43005.47|0.03|0.08|R|F|1994-05-12|1994-05-03|1994-05-25|TAKE BACK RETURN|REG AIR|notornis use c| +67791|610759|23272|4|42|70128.24|0.04|0.00|A|F|1994-06-02|1994-05-21|1994-06-20|TAKE BACK RETURN|REG AIR|uctions play bol| +67791|19973|7474|5|5|9464.85|0.10|0.06|A|F|1994-06-11|1994-05-24|1994-07-01|DELIVER IN PERSON|REG AIR|ages believe furiously. carefully specia| +67816|295872|8378|1|48|89657.28|0.05|0.01|A|F|1993-08-21|1993-09-25|1993-08-25|COLLECT COD|AIR|thely regular i| +67816|713351|13352|2|26|35472.32|0.05|0.04|A|F|1993-09-04|1993-10-08|1993-09-30|COLLECT COD|RAIL|lyly even request| +67816|278541|41047|3|47|71417.91|0.07|0.00|R|F|1993-11-26|1993-09-09|1993-12-14|COLLECT COD|AIR| packages w| +67816|427979|40488|4|46|87719.70|0.01|0.03|R|F|1993-08-22|1993-10-08|1993-09-16|DELIVER IN PERSON|TRUCK|o beans cajole. daringly final reque| +67816|29735|42236|5|17|28300.41|0.00|0.01|A|F|1993-09-11|1993-09-13|1993-09-18|NONE|FOB|ording to t| +67816|746102|46103|6|29|33294.03|0.00|0.06|R|F|1993-09-14|1993-09-22|1993-09-16|DELIVER IN PERSON|SHIP|quests should have to x-ray. | +67816|733998|9027|7|8|16255.68|0.06|0.06|R|F|1993-09-03|1993-10-17|1993-09-28|NONE|REG AIR| furiously silent instructions print about| +67817|295003|7509|1|32|31935.68|0.08|0.00|N|O|1996-03-01|1996-02-28|1996-03-05|DELIVER IN PERSON|RAIL| furiously ironic | +67817|110809|35814|2|20|36396.00|0.00|0.01|N|O|1996-05-06|1996-03-15|1996-06-02|DELIVER IN PERSON|RAIL|quickly even accounts. even pinto beans wa| +67817|363432|38447|3|35|52339.70|0.09|0.08|N|O|1996-01-28|1996-04-16|1996-02-13|DELIVER IN PERSON|AIR|as. regular packages sleep quickly car| +67817|194958|44959|4|43|88276.85|0.08|0.00|N|O|1996-04-24|1996-03-08|1996-05-13|DELIVER IN PERSON|RAIL|s detect. de| +67817|651140|13654|5|47|51282.17|0.07|0.04|N|O|1996-05-23|1996-03-08|1996-06-17|NONE|TRUCK|osits would haggle neve| +67817|708565|21080|6|1|1573.53|0.04|0.02|N|O|1996-02-18|1996-03-19|1996-02-21|COLLECT COD|TRUCK|lar, unusual notornis haggle quickly. re| +67818|838490|1007|1|23|32854.35|0.00|0.02|R|F|1995-02-10|1995-03-03|1995-02-25|TAKE BACK RETURN|FOB|od slyly alongside of the | +67818|496835|9345|2|12|21981.72|0.02|0.00|R|F|1995-02-11|1995-04-04|1995-02-21|NONE|SHIP|lithely around the blithely| +67818|298569|36085|3|15|23513.25|0.06|0.06|A|F|1995-03-22|1995-03-28|1995-04-18|DELIVER IN PERSON|SHIP| carefully against the blithely ironic depo| +67818|38704|13705|4|21|34496.70|0.08|0.08|A|F|1995-02-02|1995-04-12|1995-02-08|DELIVER IN PERSON|MAIL|fily final plat| +67818|489433|39434|5|30|42672.30|0.01|0.06|A|F|1995-05-03|1995-04-15|1995-05-09|TAKE BACK RETURN|SHIP|encies wake accor| +67819|745231|7746|1|26|33181.20|0.05|0.03|N|O|1997-08-07|1997-09-14|1997-08-22|TAKE BACK RETURN|SHIP|ly slyly even sauternes.| +67819|83168|8171|2|22|25325.52|0.08|0.07|N|O|1997-07-08|1997-08-22|1997-07-30|DELIVER IN PERSON|RAIL|s. blithely unusual excuses under the re| +67819|791742|16773|3|34|62346.14|0.07|0.06|N|O|1997-10-06|1997-08-12|1997-10-27|DELIVER IN PERSON|FOB|s according to the requests| +67819|792951|30497|4|25|51098.00|0.10|0.04|N|O|1997-08-15|1997-08-10|1997-08-22|NONE|AIR|s are. fluffily bold pinto beans haggl| +67819|113524|26027|5|24|36900.48|0.05|0.04|N|O|1997-10-21|1997-09-04|1997-11-12|NONE|MAIL|ealthy instruct| +67819|983565|33566|6|34|56049.68|0.00|0.08|N|O|1997-10-03|1997-09-04|1997-10-19|COLLECT COD|REG AIR|ly bold pack| +67819|776640|26641|7|47|80680.67|0.05|0.07|N|O|1997-07-16|1997-08-13|1997-07-21|NONE|TRUCK|ng to the carefully final| +67820|986770|24328|1|47|87266.31|0.06|0.05|A|F|1995-05-21|1995-06-12|1995-05-27|TAKE BACK RETURN|AIR|accounts nag against the slyly| +67820|628400|40913|2|1|1328.37|0.00|0.03|N|O|1995-09-04|1995-07-22|1995-09-27|TAKE BACK RETURN|SHIP|arefully spec| +67820|514803|39824|3|31|56351.18|0.04|0.06|N|F|1995-05-22|1995-06-29|1995-06-20|TAKE BACK RETURN|RAIL|elets. final, bold accounts sleep blith| +67820|285413|35414|4|43|60131.20|0.05|0.05|N|F|1995-06-02|1995-06-30|1995-06-28|DELIVER IN PERSON|REG AIR|egular requests sleep carefully| +67820|929043|41562|5|29|31088.00|0.09|0.05|N|O|1995-07-07|1995-06-17|1995-07-25|DELIVER IN PERSON|FOB|oach accounts. furiously pending accoun| +67820|420271|7796|6|41|48841.25|0.09|0.02|N|O|1995-08-20|1995-07-17|1995-09-05|NONE|REG AIR|unts cajole furiousl| +67821|485966|10985|1|6|11711.64|0.02|0.00|N|O|1995-11-13|1995-10-01|1995-11-30|NONE|MAIL|inal, special accounts among the f| +67821|620396|20397|2|23|30276.28|0.05|0.01|N|O|1995-08-30|1995-09-30|1995-09-29|NONE|TRUCK|ly special as| +67821|988211|38212|3|9|11692.53|0.09|0.05|N|O|1995-10-18|1995-10-24|1995-10-27|DELIVER IN PERSON|RAIL|regular deposits. | +67822|336642|36643|1|28|47001.64|0.00|0.05|A|F|1993-01-16|1992-10-21|1993-01-23|DELIVER IN PERSON|REG AIR|gular theo| +67822|934238|21793|2|20|25443.80|0.06|0.00|A|F|1992-10-27|1992-11-02|1992-11-07|NONE|AIR|. quickly bold requ| +67822|723945|36460|3|40|78756.40|0.06|0.02|A|F|1993-01-17|1992-10-27|1993-01-19|NONE|TRUCK|final ideas; accounts haggle | +67822|327690|40197|4|20|34353.60|0.10|0.04|A|F|1992-10-28|1992-12-01|1992-11-10|DELIVER IN PERSON|SHIP|dogged dependencies sleep carefu| +67822|480608|30609|5|21|33360.18|0.01|0.03|A|F|1992-10-29|1992-11-29|1992-11-03|COLLECT COD|TRUCK|egular ideas thrash | +67823|239470|1975|1|44|62016.24|0.05|0.05|R|F|1994-01-20|1994-03-03|1994-02-13|DELIVER IN PERSON|TRUCK| final deposits. slyly even reques| +67823|763885|38916|2|48|93544.80|0.03|0.05|A|F|1994-02-18|1994-03-17|1994-03-18|COLLECT COD|AIR|eans are finally ir| +67823|613406|38431|3|23|30345.51|0.04|0.03|A|F|1994-02-14|1994-03-22|1994-02-16|TAKE BACK RETURN|TRUCK|e. express packages sle| +67823|501174|13685|4|37|43480.55|0.03|0.05|R|F|1994-02-22|1994-03-04|1994-03-10|DELIVER IN PERSON|FOB|nal orbits affix slyly above the slowly e| +67823|215286|27791|5|40|48050.80|0.09|0.00|A|F|1994-02-06|1994-04-02|1994-02-12|TAKE BACK RETURN|TRUCK|he even deposits. blithely final | +67848|438252|13269|1|27|32136.21|0.01|0.00|A|F|1993-12-28|1993-11-24|1994-01-25|NONE|SHIP|yly ironic excuses hind| +67848|689873|14900|2|19|35393.96|0.03|0.07|A|F|1993-11-15|1993-12-17|1993-12-14|COLLECT COD|REG AIR| accounts. even,| +67848|692412|42413|3|7|9830.66|0.10|0.08|R|F|1993-12-01|1993-11-29|1993-12-30|DELIVER IN PERSON|REG AIR|ccounts wake carefu| +67848|363515|26023|4|25|39462.50|0.07|0.02|A|F|1993-11-24|1993-12-31|1993-12-11|COLLECT COD|AIR| quickly special| +67848|585860|35861|5|41|79779.44|0.07|0.02|R|F|1993-10-21|1994-01-10|1993-10-31|TAKE BACK RETURN|RAIL|iously ironic dugouts. regular, even depo| +67849|139123|14128|1|19|22080.28|0.01|0.03|N|O|1996-02-12|1995-12-14|1996-03-13|TAKE BACK RETURN|MAIL|larly final requests nag. regular pearls| +67849|231923|31924|2|43|79761.13|0.08|0.01|N|O|1996-02-09|1996-01-05|1996-03-01|NONE|AIR|packages affix doggedly. car| +67849|923429|10984|3|10|14523.80|0.09|0.07|N|O|1996-02-08|1996-02-08|1996-02-13|NONE|TRUCK|ar deposit| +67849|67763|5267|4|35|60576.60|0.01|0.00|N|O|1996-01-22|1996-01-16|1996-02-07|NONE|RAIL|y blithely express packages. quickly b| +67850|881563|6598|1|38|58691.76|0.01|0.08|N|O|1996-11-11|1996-09-28|1996-12-04|NONE|RAIL|ges. ironic, even grouches| +67850|422875|22876|2|41|73711.85|0.04|0.06|N|O|1996-10-13|1996-08-14|1996-11-02|NONE|REG AIR|uctions alongside of th| +67850|244479|44480|3|43|61208.78|0.10|0.00|N|O|1996-10-11|1996-09-10|1996-10-23|DELIVER IN PERSON|MAIL|al pinto bean| +67850|947225|47226|4|27|34348.86|0.01|0.07|N|O|1996-09-30|1996-10-09|1996-10-19|TAKE BACK RETURN|SHIP| pinto beans. | +67850|994731|7251|5|47|85807.43|0.07|0.03|N|O|1996-08-07|1996-09-14|1996-08-09|COLLECT COD|SHIP|ly special pi| +67850|431883|31884|6|2|3629.72|0.05|0.04|N|O|1996-10-26|1996-09-08|1996-11-03|TAKE BACK RETURN|RAIL|ounts haggle unusual dolphins.| +67850|652104|39644|7|1|1056.07|0.06|0.07|N|O|1996-09-19|1996-08-19|1996-10-11|TAKE BACK RETURN|RAIL|aintain blithely after the carefull| +67851|898294|35846|1|13|16799.25|0.09|0.07|A|F|1994-08-25|1994-07-02|1994-09-03|COLLECT COD|FOB|ys. slyly final requests us| +67851|616222|3759|2|11|12520.09|0.06|0.04|A|F|1994-05-23|1994-06-07|1994-05-25|DELIVER IN PERSON|TRUCK| ironic dolphins sleep quickly acc| +67851|830852|30853|3|29|51701.49|0.00|0.00|A|F|1994-07-04|1994-07-04|1994-07-26|DELIVER IN PERSON|TRUCK|al requests sleep. quickly final pinto bean| +67851|122184|9691|4|2|2412.36|0.10|0.01|R|F|1994-05-24|1994-07-19|1994-05-30|NONE|REG AIR|ic instructions detec| +67852|267703|30209|1|26|43437.94|0.07|0.00|R|F|1994-04-28|1994-07-09|1994-04-29|TAKE BACK RETURN|SHIP|usly final deposits. accounts are | +67852|268319|5835|2|32|41193.60|0.08|0.01|R|F|1994-04-29|1994-06-07|1994-05-08|DELIVER IN PERSON|SHIP|en deposits. even theodolites kindl| +67852|620781|45806|3|34|57859.50|0.02|0.07|R|F|1994-05-10|1994-06-06|1994-05-21|COLLECT COD|MAIL|ly regular dolp| +67852|466190|41209|4|10|11561.70|0.05|0.04|R|F|1994-07-07|1994-07-01|1994-07-11|NONE|AIR|ns. final accounts cajole. depos| +67852|251414|26425|5|10|13654.00|0.10|0.06|A|F|1994-06-13|1994-05-26|1994-06-16|DELIVER IN PERSON|RAIL|ironic excuses. fluffily express reques| +67852|510468|35489|6|47|69486.68|0.04|0.08|R|F|1994-07-07|1994-06-20|1994-07-18|NONE|RAIL|ly regular epitaphs| +67853|416820|4345|1|2|3473.60|0.09|0.03|A|F|1994-07-22|1994-07-20|1994-08-21|COLLECT COD|RAIL| accounts. slyly unusual instructions cajo| +67853|482676|7695|2|40|66346.00|0.03|0.01|A|F|1994-06-12|1994-07-15|1994-07-12|DELIVER IN PERSON|AIR| blithely above | +67854|381105|43613|1|31|36768.79|0.05|0.07|A|F|1993-10-23|1993-08-06|1993-10-27|TAKE BACK RETURN|REG AIR|ecial requests s| +67854|228031|40536|2|1|959.02|0.07|0.07|R|F|1993-09-27|1993-08-28|1993-10-16|TAKE BACK RETURN|AIR|e against the regu| +67854|514634|39655|3|46|75836.06|0.05|0.02|R|F|1993-07-23|1993-09-21|1993-08-16|DELIVER IN PERSON|MAIL| regular courts! c| +67854|450272|37800|4|40|48890.00|0.06|0.07|A|F|1993-07-07|1993-07-31|1993-07-21|NONE|RAIL|sly final reques| +67855|890377|27929|1|31|42387.23|0.02|0.06|N|O|1996-10-28|1996-10-26|1996-11-06|TAKE BACK RETURN|MAIL|equests wake blithely among the blithel| +67855|560353|22865|2|7|9893.31|0.08|0.06|N|O|1996-10-19|1996-10-21|1996-10-31|COLLECT COD|RAIL|y even accounts. exp| +67855|840764|15797|3|31|52846.32|0.00|0.07|N|O|1996-10-07|1996-11-03|1996-10-21|DELIVER IN PERSON|MAIL|side of the slyly silent accounts. s| +67855|707706|32735|4|40|68546.80|0.00|0.07|N|O|1996-10-09|1996-10-14|1996-11-04|COLLECT COD|RAIL|s are slyly blithely p| +67855|398527|48528|5|49|79649.99|0.08|0.04|N|O|1996-08-17|1996-09-28|1996-08-30|COLLECT COD|TRUCK|ironic requests cajole fina| +67855|37785|25286|6|24|41346.72|0.02|0.08|N|O|1996-12-07|1996-09-11|1996-12-25|DELIVER IN PERSON|SHIP|fully furiously bold re| +67855|36126|48627|7|40|42484.80|0.08|0.07|N|O|1996-09-28|1996-09-23|1996-10-26|COLLECT COD|AIR|theodolites; fluffily ironic gifts | +67880|158779|21283|1|2|3675.54|0.01|0.00|A|F|1992-12-28|1993-01-24|1993-01-21|NONE|AIR|y regular waters. furiously express instru| +67880|582782|20316|2|47|87643.72|0.00|0.05|A|F|1993-02-20|1993-01-09|1993-03-14|NONE|MAIL|ets. special, even | +67880|804045|41594|3|12|11388.00|0.00|0.01|R|F|1992-11-23|1992-12-17|1992-12-09|TAKE BACK RETURN|REG AIR| slyly express pinto beans na| +67880|583087|20621|4|21|24571.26|0.09|0.06|A|F|1992-12-07|1993-01-09|1992-12-17|COLLECT COD|MAIL|ts. slyly ruthless theodolites wake furiou| +67880|937071|24626|5|45|49861.35|0.01|0.00|R|F|1993-02-07|1993-01-14|1993-02-24|TAKE BACK RETURN|SHIP|s nag quickly ironic, express instr| +67880|351432|1433|6|32|47469.44|0.03|0.03|A|F|1993-01-29|1992-12-31|1993-02-11|TAKE BACK RETURN|RAIL|ic deposits. final asymptotes| +67881|2906|15407|1|49|88636.10|0.02|0.06|N|O|1997-07-04|1997-07-18|1997-07-22|TAKE BACK RETURN|AIR|t the regular | +67881|829133|4166|2|48|50980.32|0.07|0.05|N|O|1997-06-21|1997-06-12|1997-06-23|TAKE BACK RETURN|MAIL|ly ironic platelets haggle ar| +67881|231728|31729|3|29|48131.59|0.10|0.05|N|O|1997-08-24|1997-06-13|1997-08-31|NONE|RAIL|e furiously around the blithely regula| +67881|652257|2258|4|16|19347.52|0.05|0.02|N|O|1997-06-18|1997-06-09|1997-07-16|COLLECT COD|FOB|ans. quickly ironic requests ha| +67881|481528|44038|5|34|51323.00|0.08|0.02|N|O|1997-05-05|1997-06-09|1997-06-03|COLLECT COD|REG AIR|aves integrate slyly regular the| +67881|30879|30880|6|16|28957.92|0.05|0.06|N|O|1997-07-05|1997-07-21|1997-08-02|TAKE BACK RETURN|TRUCK|gular ideas integrate acco| +67882|853927|16445|1|22|41379.36|0.07|0.08|R|F|1993-02-01|1993-02-17|1993-02-07|DELIVER IN PERSON|REG AIR|entiments integrate about the foxes. bli| +67882|948372|35927|2|9|12782.97|0.01|0.08|A|F|1993-04-01|1993-01-18|1993-04-02|DELIVER IN PERSON|TRUCK|y regular deposits. slyly special instr| +67882|278725|41231|3|8|13629.68|0.03|0.04|R|F|1992-12-28|1993-02-06|1993-01-09|DELIVER IN PERSON|SHIP|l, final grouches. slyly ironic grouches sl| +67882|516499|41520|4|1|1515.47|0.07|0.08|A|F|1993-03-14|1993-01-26|1993-03-19|NONE|AIR| ideas hinder furiously. blithely regular p| +67882|787070|49586|5|26|30083.04|0.08|0.00|R|F|1992-12-22|1993-01-24|1993-01-08|DELIVER IN PERSON|REG AIR|after the blithely special deposits | +67882|274400|24401|6|7|9620.73|0.07|0.03|A|F|1993-02-25|1993-01-18|1993-03-22|DELIVER IN PERSON|SHIP|ffily final deposits. quickly entici| +67882|835559|23108|7|17|25406.67|0.05|0.01|R|F|1993-04-15|1993-01-24|1993-04-16|DELIVER IN PERSON|SHIP|efully permanent packages detect| +67883|229903|42408|1|42|76981.38|0.08|0.02|R|F|1992-06-24|1992-07-25|1992-07-08|NONE|FOB|n slyly along the| +67883|974510|37030|2|42|66547.74|0.09|0.05|A|F|1992-08-10|1992-08-26|1992-09-08|COLLECT COD|REG AIR|deposits lose fluffily. slyly caref| +67883|580329|5352|3|26|36641.80|0.02|0.05|A|F|1992-07-12|1992-07-09|1992-08-09|TAKE BACK RETURN|AIR|nusual packages around th| +67884|121399|33902|1|13|18465.07|0.06|0.08|R|F|1993-10-13|1993-09-22|1993-10-16|TAKE BACK RETURN|MAIL|its wake slyly. blithely regular acco| +67884|351371|38893|2|14|19913.04|0.02|0.04|A|F|1993-11-05|1993-10-10|1993-12-04|NONE|SHIP|lly final requests. slyly| +67884|490546|40547|3|38|58387.76|0.06|0.05|R|F|1993-10-13|1993-09-02|1993-10-22|COLLECT COD|SHIP|he ironic foxes! blithely even de| +67884|603742|28767|4|2|3291.42|0.07|0.01|A|F|1993-07-30|1993-10-05|1993-08-25|TAKE BACK RETURN|FOB| the ironic, ironic foxes boost slyly fluf| +67884|76729|14233|5|20|34114.40|0.07|0.08|R|F|1993-07-27|1993-10-04|1993-07-31|DELIVER IN PERSON|TRUCK|express accounts except the ideas sleep sly| +67885|63488|992|1|35|50801.80|0.03|0.08|R|F|1994-06-22|1994-07-30|1994-07-04|TAKE BACK RETURN|AIR|egular instructions. furiously regular| +67885|35360|10361|2|25|32384.00|0.03|0.04|R|F|1994-05-29|1994-07-04|1994-06-10|TAKE BACK RETURN|AIR|ess platelets about | +67885|281842|44348|3|11|20062.13|0.02|0.08|R|F|1994-07-26|1994-07-19|1994-08-24|TAKE BACK RETURN|FOB|y ironic ideas. thin, e| +67885|908429|33466|4|1|1437.38|0.05|0.04|A|F|1994-07-09|1994-08-09|1994-08-06|COLLECT COD|TRUCK|old foxes. ca| +67886|890268|15303|1|2|2516.44|0.05|0.03|R|F|1994-11-02|1994-09-23|1994-11-08|TAKE BACK RETURN|RAIL|r instructio| +67887|310856|23363|1|27|50404.68|0.01|0.01|N|O|1998-08-05|1998-07-01|1998-08-11|TAKE BACK RETURN|TRUCK|tes sublate c| +67912|936270|11307|1|8|10449.84|0.04|0.07|N|O|1997-12-20|1997-10-08|1998-01-06|DELIVER IN PERSON|TRUCK| to the carefully unus| +67912|889662|2180|2|43|71019.66|0.10|0.05|N|O|1997-12-20|1997-10-11|1997-12-25|COLLECT COD|TRUCK|fluffily express pinto beans above the pe| +67912|543393|43394|3|40|57454.80|0.01|0.02|N|O|1997-12-21|1997-11-20|1997-12-24|DELIVER IN PERSON|TRUCK|ymptotes haggle fluffily | +67912|801648|1649|4|9|13946.40|0.06|0.05|N|O|1997-10-24|1997-10-10|1997-11-01|DELIVER IN PERSON|RAIL| wake furiously at the carefull| +67912|293768|6274|5|8|14094.00|0.00|0.00|N|O|1997-09-14|1997-11-02|1997-09-16|COLLECT COD|MAIL|l accounts. blithely ironic | +67913|248274|10779|1|29|35445.54|0.05|0.00|N|O|1998-02-24|1998-02-18|1998-03-04|TAKE BACK RETURN|FOB|packages across the blithely special| +67913|738035|13064|2|5|5365.00|0.05|0.02|N|O|1997-12-31|1998-02-14|1998-01-05|COLLECT COD|TRUCK|are. furiously fluf| +67913|147590|47591|3|4|6550.36|0.03|0.01|N|O|1998-03-02|1998-02-08|1998-03-22|DELIVER IN PERSON|SHIP|its. blithely stealthy request| +67913|534186|9207|4|5|6100.80|0.03|0.03|N|O|1998-03-05|1998-03-01|1998-03-21|TAKE BACK RETURN|TRUCK|y regular packages. f| +67914|924641|24642|1|1|1665.60|0.04|0.05|A|F|1994-11-10|1994-11-16|1994-11-20|DELIVER IN PERSON|REG AIR|yly. final, final grouches haggle slyly. ca| +67915|388952|26474|1|9|18368.46|0.04|0.03|A|F|1992-07-11|1992-08-27|1992-07-17|COLLECT COD|RAIL|quests impress furiously ca| +67915|101876|39383|2|41|76992.67|0.09|0.02|R|F|1992-07-31|1992-08-18|1992-08-21|DELIVER IN PERSON|MAIL|lar ideas. bli| +67915|221042|8555|3|18|17334.54|0.05|0.04|A|F|1992-09-12|1992-07-24|1992-09-18|NONE|RAIL|ts integrate carefully | +67915|37333|12334|4|17|21595.61|0.07|0.02|R|F|1992-07-28|1992-09-15|1992-08-02|COLLECT COD|MAIL|old deposits print idly re| +67915|452851|40379|5|50|90191.50|0.01|0.07|A|F|1992-07-01|1992-08-14|1992-07-16|NONE|RAIL|es cajole furiously final| +67916|803870|3871|1|48|85143.84|0.04|0.07|N|O|1995-07-01|1995-07-08|1995-07-22|TAKE BACK RETURN|SHIP|y unusual | +67916|628836|28837|2|2|3529.60|0.01|0.07|N|O|1995-10-03|1995-08-09|1995-11-02|COLLECT COD|TRUCK|onic pinto beans wak| +67916|842030|29579|3|33|32075.67|0.00|0.08|N|O|1995-08-10|1995-08-04|1995-08-25|TAKE BACK RETURN|AIR|ly regular packages cajo| +67916|988042|38043|4|48|54240.00|0.00|0.07|N|F|1995-06-14|1995-08-03|1995-06-28|TAKE BACK RETURN|MAIL|uickly final packages. slyly fina| +67917|112268|37273|1|36|46089.36|0.00|0.01|N|O|1996-09-15|1996-07-06|1996-10-04|TAKE BACK RETURN|SHIP|ns. even platelets snooze regul| +67917|872122|34640|2|48|52515.84|0.06|0.04|N|O|1996-06-27|1996-07-31|1996-07-11|NONE|TRUCK|osits. slyly eve| +67917|750031|25062|3|33|35673.00|0.05|0.07|N|O|1996-07-15|1996-08-13|1996-08-03|COLLECT COD|RAIL|usual instructions across the bl| +67917|764676|14677|4|12|20887.68|0.09|0.08|N|O|1996-09-17|1996-08-16|1996-10-02|DELIVER IN PERSON|MAIL|st the slyly even inst| +67918|205875|43388|1|16|28493.76|0.06|0.05|N|O|1996-02-02|1996-02-24|1996-02-12|DELIVER IN PERSON|AIR| outside the ruthlessly special account| +67918|139272|26779|2|45|59007.15|0.08|0.02|N|O|1996-01-15|1996-02-21|1996-02-08|NONE|TRUCK|ccording to the even, pending ideas nag| +67918|736291|36292|3|28|37163.28|0.00|0.02|N|O|1996-03-04|1996-02-17|1996-03-06|DELIVER IN PERSON|TRUCK|s cajole furiously regular foxes. expres| +67919|479606|17134|1|44|69765.52|0.05|0.08|R|F|1994-07-31|1994-09-07|1994-08-25|TAKE BACK RETURN|TRUCK|l accounts haggle about the deposits. | +67944|84172|21676|1|19|21967.23|0.06|0.06|R|F|1993-09-27|1993-10-15|1993-10-08|TAKE BACK RETURN|SHIP|o beans nag fluffily| +67944|662514|25028|2|23|33959.04|0.07|0.05|A|F|1993-12-18|1993-12-01|1993-12-27|NONE|AIR|final decoys according to the| +67944|858281|45833|3|45|55765.80|0.09|0.01|A|F|1993-10-22|1993-11-05|1993-11-19|NONE|AIR|final packages. b| +67944|125418|12925|4|13|18764.33|0.02|0.00|A|F|1993-11-07|1993-11-11|1993-11-23|TAKE BACK RETURN|TRUCK|the quickly ironic pi| +67945|508540|46071|1|33|51101.16|0.10|0.01|R|F|1994-02-16|1994-02-15|1994-02-19|TAKE BACK RETURN|FOB|ily silent, final packages| +67945|22155|47156|2|49|52780.35|0.07|0.01|A|F|1994-01-11|1994-01-17|1994-01-28|COLLECT COD|SHIP|ites. regular,| +67945|355319|30334|3|49|67340.70|0.05|0.03|R|F|1993-12-20|1993-12-31|1994-01-03|COLLECT COD|REG AIR|ven asympto| +67945|845706|8223|4|5|8258.30|0.09|0.07|A|F|1994-02-21|1994-02-03|1994-02-22|TAKE BACK RETURN|REG AIR|e furiously final deposits. quick| +67945|770575|8121|5|23|37847.42|0.02|0.07|A|F|1994-03-03|1994-01-07|1994-03-19|TAKE BACK RETURN|MAIL|ns. fluffil| +67945|40875|28376|6|10|18158.70|0.00|0.07|R|F|1993-12-26|1994-01-14|1994-01-13|NONE|TRUCK|ly regular pinto beans. fluffily expre| +67945|976937|26938|7|48|96666.72|0.10|0.01|R|F|1994-03-22|1994-02-27|1994-04-03|NONE|FOB| asymptotes boost since the ironic, regular| +67946|368157|43172|1|8|9801.12|0.00|0.04|A|F|1995-04-02|1995-04-16|1995-04-22|DELIVER IN PERSON|AIR|requests are blithely. ex| +67946|599485|37019|2|36|57040.56|0.01|0.01|A|F|1995-05-08|1995-04-22|1995-05-28|TAKE BACK RETURN|SHIP|dolites. quickly fina| +67947|60330|47834|1|47|60645.51|0.03|0.05|A|F|1993-08-10|1993-09-24|1993-08-21|TAKE BACK RETURN|MAIL|ckly. caref| +67947|959436|34475|2|38|56824.82|0.10|0.07|A|F|1993-10-04|1993-10-27|1993-11-03|DELIVER IN PERSON|MAIL|ely pending ac| +67948|404424|41949|1|6|7970.40|0.03|0.00|N|O|1997-12-31|1997-12-02|1998-01-17|TAKE BACK RETURN|MAIL|r the carefully even th| +67948|139013|39014|2|21|22092.21|0.00|0.06|N|O|1997-11-25|1997-12-01|1997-12-07|TAKE BACK RETURN|SHIP|xes sleep slyl| +67948|384657|34658|3|7|12191.48|0.04|0.05|N|O|1997-09-20|1997-11-08|1997-10-08|COLLECT COD|AIR|according to the fluffily regular | +67948|927756|27757|4|11|19620.81|0.00|0.04|N|O|1997-12-07|1997-10-23|1997-12-17|TAKE BACK RETURN|MAIL|carefully even pinto beans boost ca| +67949|354906|17414|1|48|94122.72|0.04|0.06|R|F|1993-08-10|1993-07-11|1993-08-15|COLLECT COD|SHIP|e the ideas. carefully| +67949|893753|43754|2|37|64628.27|0.02|0.02|A|F|1993-08-10|1993-06-05|1993-08-18|NONE|RAIL|ts affix thinly carefully express | +67949|304887|4888|3|1|1891.87|0.00|0.02|A|F|1993-07-24|1993-07-22|1993-07-29|DELIVER IN PERSON|SHIP|ges. fluffily express t| +67949|234513|47018|4|19|27502.50|0.08|0.05|R|F|1993-06-25|1993-05-28|1993-07-07|NONE|TRUCK|instructions wake qui| +67949|448303|23320|5|4|5005.12|0.10|0.05|A|F|1993-07-20|1993-06-10|1993-08-01|NONE|FOB|st the slyly pending excuses. | +67949|615879|3416|6|4|7179.36|0.05|0.01|A|F|1993-07-05|1993-06-23|1993-07-27|DELIVER IN PERSON|TRUCK|yly special foxes. | +67950|70495|45498|1|32|46895.68|0.05|0.08|A|F|1994-03-27|1994-04-25|1994-04-15|DELIVER IN PERSON|MAIL|s are carefully along th| +67950|808474|33507|2|29|40090.47|0.01|0.01|R|F|1994-03-11|1994-05-06|1994-03-12|COLLECT COD|AIR|iet courts. furiously even pinto beans h| +67950|13041|38042|3|26|24805.04|0.00|0.04|A|F|1994-05-11|1994-05-03|1994-05-13|DELIVER IN PERSON|TRUCK|lent packages. dogged, unusual pains aroun| +67950|164519|39526|4|39|61756.89|0.06|0.06|A|F|1994-06-12|1994-04-11|1994-06-14|DELIVER IN PERSON|REG AIR| packages. slyly ironic theodolites x-ray| +67951|753950|3951|1|40|80156.80|0.10|0.04|N|O|1997-06-18|1997-08-28|1997-07-08|COLLECT COD|MAIL|ess accounts against the blithely expres| +67951|635665|48178|2|13|20808.19|0.01|0.02|N|O|1997-06-22|1997-08-08|1997-06-25|NONE|REG AIR|ts eat bold, regular reque| +67951|618247|18248|3|39|45443.19|0.09|0.08|N|O|1997-07-19|1997-08-31|1997-07-20|NONE|TRUCK| careful instruction| +67951|874791|49826|4|30|52972.50|0.04|0.03|N|O|1997-09-22|1997-08-09|1997-10-20|NONE|AIR| pending deposits nag inside the pending | +67976|865668|3220|1|37|60443.94|0.02|0.04|A|F|1992-12-04|1992-10-03|1992-12-10|DELIVER IN PERSON|TRUCK| packages boost blithely even f| +67976|270229|7745|2|41|49167.61|0.07|0.00|A|F|1992-11-02|1992-10-14|1992-11-19|NONE|TRUCK|blithely special, regular accounts. s| +67976|738479|994|3|1|1517.44|0.00|0.06|R|F|1992-12-26|1992-11-04|1993-01-25|TAKE BACK RETURN|RAIL|among the closely final grouches use upo| +67977|746489|21518|1|48|73701.60|0.05|0.03|N|O|1997-12-20|1998-02-04|1998-01-06|TAKE BACK RETURN|RAIL|y ideas? furiously express foxes across th| +67977|237805|37806|2|48|83653.92|0.06|0.07|N|O|1997-12-20|1998-02-12|1998-01-11|COLLECT COD|RAIL|oss the pinto beans cajole fur| +67977|775404|37920|3|23|34025.51|0.02|0.04|N|O|1998-03-14|1997-12-30|1998-04-05|NONE|SHIP|o the express, brave a| +67977|200817|38330|4|39|66994.20|0.04|0.02|N|O|1998-01-04|1998-02-03|1998-01-15|COLLECT COD|TRUCK|onic accounts cajo| +67977|126862|39365|5|35|66110.10|0.02|0.07|N|O|1998-02-05|1998-02-03|1998-02-16|COLLECT COD|SHIP|y unusual accounts across t| +67978|349174|36693|1|12|14677.92|0.10|0.00|N|O|1997-11-12|1997-10-08|1997-12-12|NONE|MAIL|as. instructions boost | +67978|563772|26284|2|27|49565.25|0.03|0.06|N|O|1997-10-08|1997-09-15|1997-10-10|DELIVER IN PERSON|SHIP|fully against the slyly special asymp| +67978|303297|40816|3|18|23405.04|0.07|0.07|N|O|1997-09-18|1997-09-12|1997-10-09|DELIVER IN PERSON|REG AIR|ut the slyly even theodolites nag carefu| +67979|727861|2890|1|30|56664.90|0.03|0.05|N|F|1995-06-11|1995-08-19|1995-07-03|NONE|TRUCK| ironic dolphins nag furiously fu| +67979|152613|2614|2|9|14990.49|0.06|0.08|N|O|1995-06-22|1995-07-03|1995-06-28|DELIVER IN PERSON|TRUCK|usual foxes after the quickly quick p| +67979|962294|49852|3|40|54250.00|0.07|0.02|R|F|1995-06-08|1995-08-02|1995-06-13|TAKE BACK RETURN|MAIL|s foxes. furiously bold wa| +67979|275129|12645|4|1|1104.11|0.08|0.05|N|F|1995-06-07|1995-07-08|1995-06-23|NONE|AIR|nd the furiously unusual asymptotes are a| +67979|76861|26862|5|19|34919.34|0.00|0.04|N|O|1995-09-18|1995-07-14|1995-10-17|DELIVER IN PERSON|TRUCK|e: express deposits sleep b| +67979|799716|49717|6|31|56286.08|0.10|0.08|N|O|1995-08-27|1995-08-23|1995-09-08|DELIVER IN PERSON|FOB|efully slyly even dep| +67980|838172|38173|1|34|37744.42|0.10|0.00|A|F|1994-10-28|1994-12-15|1994-11-27|TAKE BACK RETURN|SHIP|furiously pending deposits af| +67981|924969|37488|1|11|21933.12|0.01|0.08|N|F|1995-05-25|1995-04-11|1995-06-20|DELIVER IN PERSON|SHIP|ily even dependenc| +67981|945457|20494|2|5|7512.05|0.04|0.00|N|F|1995-06-17|1995-04-10|1995-07-06|NONE|AIR| carefully even theodolites boost excep| +67981|284236|34237|3|2|2440.44|0.09|0.02|A|F|1995-04-27|1995-05-15|1995-05-21|DELIVER IN PERSON|MAIL|quickly carefully regul| +67981|154383|41893|4|12|17248.56|0.05|0.04|A|F|1995-03-26|1995-04-25|1995-04-02|TAKE BACK RETURN|SHIP|posits are ideas. even packages c| +67981|705566|30595|5|3|4714.59|0.10|0.05|R|F|1995-02-26|1995-04-08|1995-03-19|DELIVER IN PERSON|FOB|ular pinto beans about the| +67981|432886|7903|6|24|43652.64|0.01|0.06|R|F|1995-05-20|1995-05-04|1995-05-22|TAKE BACK RETURN|RAIL|y even dolphins after t| +67982|91877|4379|1|41|76623.67|0.06|0.00|N|O|1996-11-16|1996-08-25|1996-11-22|DELIVER IN PERSON|SHIP|r accounts sleep fluffily d| +67982|161932|49442|2|9|17945.37|0.02|0.05|N|O|1996-09-27|1996-09-02|1996-10-06|TAKE BACK RETURN|SHIP|sits. final| +67982|578219|40731|3|23|29835.37|0.02|0.05|N|O|1996-10-09|1996-10-13|1996-10-31|NONE|TRUCK|he sometimes regular excuses. quickly regu| +67982|124989|12496|4|37|74517.26|0.09|0.03|N|O|1996-09-20|1996-10-04|1996-09-29|DELIVER IN PERSON|AIR| among the carefully even packages. pendin| +67982|683772|46286|5|35|61450.90|0.09|0.06|N|O|1996-08-24|1996-09-14|1996-09-12|NONE|AIR|the requests. blithely final| +67982|147127|47128|6|43|50487.16|0.02|0.00|N|O|1996-10-03|1996-09-16|1996-10-06|COLLECT COD|AIR|ins kindle furiously along the| +67982|759009|34040|7|44|46990.68|0.01|0.06|N|O|1996-10-16|1996-09-26|1996-10-26|TAKE BACK RETURN|MAIL|fully bold excuses. pending ideas en| +67983|650008|25035|1|48|45982.56|0.07|0.01|N|O|1996-02-18|1996-01-21|1996-03-15|COLLECT COD|TRUCK|g requests. furiously even dolphins acros| +67983|681917|31918|2|36|68359.68|0.09|0.08|N|O|1996-03-01|1996-02-06|1996-03-25|TAKE BACK RETURN|FOB|nding instructions boost slyly. regular, | +67983|978612|41132|3|19|32120.83|0.03|0.00|N|O|1996-02-17|1996-01-16|1996-03-07|TAKE BACK RETURN|SHIP|ly bold pinto beans nag flu| +67983|517728|5259|4|37|64590.90|0.09|0.07|N|O|1996-01-25|1996-01-28|1996-02-12|TAKE BACK RETURN|MAIL|carefully regular accounts are s| +67983|454367|29386|5|3|3964.02|0.05|0.02|N|O|1996-01-15|1996-01-16|1996-02-07|NONE|FOB|lessly bol| +68008|558177|8178|1|48|59287.20|0.07|0.05|N|O|1996-02-21|1996-01-31|1996-02-22|DELIVER IN PERSON|TRUCK|orses. blithely ironic pinto beans ha| +68008|270292|32798|2|16|20196.48|0.01|0.04|N|O|1996-03-10|1996-02-25|1996-03-24|TAKE BACK RETURN|RAIL|its. furiously final dependenc| +68009|28481|15982|1|48|67655.04|0.07|0.08|A|F|1993-01-23|1993-01-30|1993-02-10|NONE|SHIP|od. carefully final requests wake? theodo| +68009|669917|32431|2|46|86796.48|0.10|0.06|A|F|1992-11-26|1993-01-18|1992-12-16|TAKE BACK RETURN|REG AIR|use carefully. unusual, even Ti| +68009|285124|47630|3|25|27727.75|0.02|0.04|R|F|1992-12-11|1993-02-13|1992-12-25|COLLECT COD|MAIL|lly slyly even pinto beans. even dinos ca| +68009|74886|12390|4|34|63269.92|0.06|0.06|R|F|1993-02-21|1993-01-18|1993-02-26|TAKE BACK RETURN|FOB|uriously bold hockey players nag qui| +68010|863969|13970|1|43|83115.56|0.07|0.06|R|F|1994-01-05|1993-12-10|1994-01-06|NONE|REG AIR|ithely alongside of| +68010|713115|38144|2|27|30458.16|0.01|0.08|A|F|1993-12-28|1994-01-18|1993-12-29|NONE|MAIL|riously among | +68010|316355|16356|3|20|27426.80|0.05|0.05|A|F|1993-12-02|1993-12-29|1993-12-31|NONE|AIR|s. daring, special accounts atop| +68010|975816|38336|4|42|79454.34|0.03|0.05|A|F|1993-12-24|1994-01-04|1994-01-15|COLLECT COD|SHIP| final accounts cajole slyly. slowly | +68010|523715|11246|5|15|26080.35|0.08|0.05|R|F|1994-01-16|1993-12-09|1994-02-04|TAKE BACK RETURN|AIR| pending excuses cajole blithely express| +68011|798374|35920|1|44|64782.96|0.07|0.07|N|O|1998-01-22|1998-03-03|1998-02-14|NONE|REG AIR|sual reque| +68011|256360|31371|2|22|28959.70|0.05|0.02|N|O|1998-03-29|1998-03-28|1998-04-25|COLLECT COD|FOB|ages nag blithely p| +68011|633006|8031|3|36|33802.92|0.08|0.06|N|O|1998-01-14|1998-04-11|1998-01-31|COLLECT COD|MAIL|according to the qui| +68012|491402|3912|1|38|52948.44|0.04|0.05|R|F|1993-03-07|1993-04-11|1993-03-25|TAKE BACK RETURN|FOB|kages use slyly even accounts! ex| +68012|985587|10626|2|49|81954.46|0.03|0.01|R|F|1993-04-02|1993-02-26|1993-04-13|TAKE BACK RETURN|REG AIR|ans are quickly after the b| +68012|757750|45296|3|29|52423.88|0.05|0.07|A|F|1993-04-02|1993-03-21|1993-04-28|DELIVER IN PERSON|MAIL|es. fluffily regular deposits us| +68012|489126|1636|4|30|33453.00|0.04|0.04|A|F|1993-05-12|1993-04-03|1993-05-22|NONE|SHIP| final requests. unusual i| +68013|127222|14729|1|21|26233.62|0.01|0.03|R|F|1993-01-23|1993-02-20|1993-02-05|TAKE BACK RETURN|TRUCK|gular waters about the even dependenci| +68013|216253|28758|2|32|37415.68|0.07|0.03|R|F|1993-01-26|1993-02-17|1993-02-02|COLLECT COD|RAIL|elets. fluffily final | +68013|551609|26632|3|37|61441.46|0.08|0.02|A|F|1993-02-01|1993-02-08|1993-02-09|COLLECT COD|REG AIR| the blithely even platelets. enticing depo| +68013|888761|38762|4|35|61240.20|0.02|0.07|A|F|1993-04-01|1993-03-25|1993-04-07|TAKE BACK RETURN|FOB|ly regular deposits. blithely special | +68013|403266|3267|5|25|29231.00|0.07|0.03|A|F|1993-02-17|1993-03-29|1993-03-12|DELIVER IN PERSON|TRUCK|egular, final deposits slee| +68014|749210|11725|1|43|54144.74|0.10|0.02|R|F|1993-07-12|1993-07-17|1993-07-18|TAKE BACK RETURN|RAIL| deposits sleep finally among the expre| +68014|960628|35667|2|30|50657.40|0.08|0.08|A|F|1993-06-03|1993-08-28|1993-06-07|NONE|RAIL|tructions. quickly final | +68014|264404|39415|3|12|16420.68|0.04|0.02|R|F|1993-09-25|1993-08-15|1993-10-15|TAKE BACK RETURN|REG AIR|ideas kindle among| +68014|833879|46396|4|7|12689.81|0.10|0.07|R|F|1993-09-04|1993-07-17|1993-10-02|COLLECT COD|TRUCK|s ideas. blithely stealthy ideas are quic| +68015|53792|3793|1|12|20949.48|0.07|0.06|N|O|1995-06-28|1995-05-20|1995-07-04|COLLECT COD|SHIP|ts. express courts wake carefully | +68040|183379|8386|1|11|16086.07|0.03|0.05|R|F|1992-09-30|1992-09-08|1992-10-02|DELIVER IN PERSON|FOB|ckly final requests. furiously final war| +68040|43789|6290|2|50|86639.00|0.04|0.05|R|F|1992-08-18|1992-09-07|1992-08-30|COLLECT COD|SHIP|nder the blithely regular accounts boo| +68040|946788|21825|3|9|16512.66|0.09|0.05|A|F|1992-09-05|1992-09-04|1992-10-04|COLLECT COD|REG AIR|about the carefully ironic pint| +68040|649315|11828|4|29|36664.12|0.10|0.05|R|F|1992-06-23|1992-07-15|1992-07-22|DELIVER IN PERSON|AIR|d the fluff| +68040|35435|22936|5|25|34260.75|0.09|0.05|R|F|1992-09-15|1992-07-31|1992-10-09|NONE|FOB|ckages cajole? slyly final packages detect | +68040|543774|43775|6|50|90887.50|0.04|0.08|A|F|1992-06-16|1992-09-04|1992-07-13|DELIVER IN PERSON|SHIP|l packages. even, final | +68041|523850|23851|1|31|58088.73|0.08|0.03|N|O|1998-07-16|1998-09-05|1998-07-18|TAKE BACK RETURN|FOB|es. quickly brave packages | +68041|343401|5908|2|29|41887.31|0.08|0.06|N|O|1998-10-24|1998-09-20|1998-11-22|DELIVER IN PERSON|FOB| the packages. furiously final in| +68041|538769|26300|3|48|86771.52|0.09|0.05|N|O|1998-08-26|1998-08-11|1998-09-15|TAKE BACK RETURN|MAIL|s. deposits grow fluffily pending, ironic| +68041|88431|25935|4|31|44002.33|0.04|0.03|N|O|1998-11-06|1998-08-25|1998-11-21|NONE|TRUCK|kages lose furiously car| +68041|254203|29214|5|3|3471.57|0.02|0.06|N|O|1998-09-19|1998-08-16|1998-09-30|COLLECT COD|REG AIR|ages sleep | +68041|380708|30709|6|43|76913.67|0.03|0.00|N|O|1998-09-13|1998-08-19|1998-09-21|TAKE BACK RETURN|SHIP| the slyly even accounts. furiously r| +68042|590563|28097|1|44|72755.76|0.02|0.00|N|O|1998-08-15|1998-08-10|1998-08-23|NONE|RAIL| pending dependencies. slyly f| +68042|588084|25618|2|19|22269.14|0.06|0.06|N|O|1998-07-04|1998-08-25|1998-07-26|TAKE BACK RETURN|REG AIR|he bold packages! carefully| +68043|873907|48942|1|3|5642.58|0.07|0.02|N|O|1998-01-13|1997-10-23|1998-02-05|TAKE BACK RETURN|TRUCK| furiously ab| +68043|746117|33660|2|1|1163.08|0.05|0.04|N|O|1997-11-11|1997-10-31|1997-11-27|COLLECT COD|TRUCK|n asymptotes.| +68043|987604|12643|3|3|5074.68|0.10|0.07|N|O|1997-12-07|1997-12-14|1998-01-05|TAKE BACK RETURN|MAIL| accounts haggl| +68044|804614|4615|1|14|21259.98|0.10|0.05|A|F|1994-07-20|1994-06-28|1994-08-07|COLLECT COD|SHIP|out the furiously | +68044|142308|42309|2|13|17553.90|0.07|0.03|R|F|1994-04-02|1994-06-18|1994-04-20|COLLECT COD|AIR|e ironically iron| +68044|769963|7509|3|30|60987.90|0.02|0.03|R|F|1994-07-21|1994-06-21|1994-08-20|COLLECT COD|SHIP|ular requests must snooze slyly carefully r| +68044|759225|21741|4|26|33388.94|0.01|0.04|A|F|1994-07-02|1994-05-02|1994-07-22|TAKE BACK RETURN|TRUCK|efully ruthless accounts haggle qui| +68044|285435|47941|5|13|18465.46|0.10|0.08|A|F|1994-06-01|1994-05-25|1994-06-02|DELIVER IN PERSON|MAIL|s. slyly final p| +68044|299888|37404|6|16|30205.92|0.02|0.00|R|F|1994-04-11|1994-06-16|1994-04-18|NONE|RAIL| the blithely ironic pinto beans. p| +68044|206824|44337|7|30|51924.30|0.06|0.02|A|F|1994-06-09|1994-05-07|1994-06-10|NONE|REG AIR|l instructions haggle. ironic, unu| +68045|90508|3010|1|18|26973.00|0.06|0.02|A|F|1994-02-13|1994-03-07|1994-03-01|COLLECT COD|REG AIR|its cajole asymptotes. courts are | +68046|69388|44391|1|28|38006.64|0.01|0.04|N|O|1998-06-25|1998-06-18|1998-06-28|NONE|TRUCK|lar requests. slyly eve| +68046|199082|49083|2|36|42518.88|0.04|0.04|N|O|1998-04-23|1998-05-08|1998-05-02|COLLECT COD|RAIL|ully special sauternes wake furiously a| +68046|959612|22132|3|36|60176.52|0.03|0.05|N|O|1998-07-16|1998-05-30|1998-07-24|TAKE BACK RETURN|REG AIR| pending, final asymptot| +68046|185905|10912|4|40|79636.00|0.05|0.04|N|O|1998-05-22|1998-05-04|1998-05-28|NONE|MAIL|y ironic ideas. blithe| +68047|959363|21883|1|33|46936.56|0.08|0.08|R|F|1993-11-03|1993-12-24|1993-11-29|DELIVER IN PERSON|MAIL|according to th| +68047|10325|47826|2|24|29647.68|0.05|0.03|A|F|1994-01-06|1994-01-01|1994-01-13|COLLECT COD|AIR|egular foxes are blithely pen| +68047|531081|43592|3|8|8896.48|0.05|0.02|A|F|1993-11-28|1994-01-18|1993-11-29|DELIVER IN PERSON|AIR| nag against the ideas. regula| +68047|865988|41023|4|1|1953.94|0.00|0.05|A|F|1993-11-27|1993-12-27|1993-12-10|NONE|REG AIR|the pending deposits. slyly reg| +68072|958126|8127|1|3|3552.24|0.03|0.02|N|O|1995-10-20|1995-08-30|1995-11-03|DELIVER IN PERSON|TRUCK|l accounts. furiou| +68072|210192|47705|2|37|40780.66|0.00|0.01|N|O|1995-10-01|1995-09-02|1995-10-19|COLLECT COD|AIR|the quickly bold req| +68072|683070|45584|3|21|22113.84|0.09|0.08|N|O|1995-09-29|1995-09-10|1995-09-30|NONE|MAIL| blithely even packages thrash car| +68072|356796|6797|4|28|51877.84|0.03|0.06|N|O|1995-10-10|1995-09-11|1995-10-28|COLLECT COD|RAIL|re. blithely bold pinto bea| +68072|659624|9625|5|18|28504.62|0.09|0.06|N|O|1995-09-21|1995-09-04|1995-09-27|NONE|RAIL|pinto beans affix f| +68072|299385|36901|6|32|44299.84|0.02|0.03|N|O|1995-10-01|1995-09-10|1995-10-09|NONE|FOB|ix. ruthlessly regular instructions serv| +68072|761976|24492|7|48|97821.12|0.09|0.01|N|O|1995-07-15|1995-09-11|1995-07-20|NONE|RAIL|le slyly regular, regular request| +68073|528657|16188|1|35|58997.05|0.05|0.07|N|O|1995-06-25|1995-06-21|1995-07-17|TAKE BACK RETURN|SHIP|uriously ironic| +68074|265080|27586|1|4|4180.28|0.06|0.07|N|O|1998-04-13|1998-05-10|1998-04-29|DELIVER IN PERSON|REG AIR|s hinder along the pending forges. regular,| +68074|197039|34549|2|27|30672.81|0.08|0.08|N|O|1998-04-07|1998-05-07|1998-05-06|DELIVER IN PERSON|FOB|ly among the slyly fin| +68074|630448|42961|3|43|59271.63|0.04|0.01|N|O|1998-04-01|1998-04-09|1998-04-23|COLLECT COD|REG AIR|inside the carefully careful deposit| +68074|935034|35035|4|1|1068.99|0.10|0.08|N|O|1998-04-24|1998-05-05|1998-05-20|DELIVER IN PERSON|TRUCK|ly even accounts cajol| +68075|208250|8251|1|25|28956.00|0.00|0.05|A|F|1995-01-20|1995-02-19|1995-01-30|NONE|TRUCK|ts. carefully final requests cajole s| +68075|46171|8672|2|28|31280.76|0.03|0.01|R|F|1995-03-25|1995-02-05|1995-04-18|DELIVER IN PERSON|AIR|ngly according to the quickly regu| +68076|436067|23592|1|3|3009.12|0.08|0.05|R|F|1993-08-21|1993-10-14|1993-09-20|DELIVER IN PERSON|REG AIR|gle among the slowly ironic dinos. p| +68076|971468|21469|2|26|40024.92|0.08|0.05|R|F|1993-09-09|1993-09-13|1993-09-22|DELIVER IN PERSON|FOB|above the accounts. ca| +68076|454039|41567|3|40|39720.40|0.09|0.02|R|F|1993-10-25|1993-09-25|1993-10-28|NONE|MAIL| instructions. fluffily quiet instructio| +68076|32561|7562|4|42|62729.52|0.03|0.06|R|F|1993-11-14|1993-09-29|1993-12-12|TAKE BACK RETURN|SHIP|e carefully dogged accounts us| +68076|243375|18384|5|35|46142.60|0.01|0.07|A|F|1993-11-10|1993-10-13|1993-11-28|COLLECT COD|REG AIR|s. carefully ironic requests wake sly| +68077|347486|47487|1|38|58271.86|0.00|0.08|N|O|1997-05-30|1997-05-10|1997-06-23|DELIVER IN PERSON|MAIL|ithely careful requests haggle| +68077|196916|46917|2|3|6038.73|0.02|0.00|N|O|1997-06-17|1997-04-17|1997-07-17|DELIVER IN PERSON|RAIL|pendencies abov| +68077|564803|27315|3|41|76578.98|0.06|0.05|N|O|1997-06-14|1997-05-13|1997-06-23|DELIVER IN PERSON|SHIP|sometimes final packages. | +68077|640458|2971|4|31|43351.02|0.06|0.00|N|O|1997-03-10|1997-04-12|1997-04-05|COLLECT COD|AIR|uffily around the fluffily unusual tith| +68078|434365|46874|1|10|12993.40|0.08|0.00|N|O|1998-03-18|1998-03-02|1998-03-20|DELIVER IN PERSON|REG AIR| deposits are bold,| +68078|372436|34944|2|25|37710.50|0.04|0.00|N|O|1998-02-26|1998-02-10|1998-03-27|NONE|TRUCK|y fluffily regular ideas. furious| +68078|515522|3053|3|11|16912.50|0.06|0.06|N|O|1998-01-18|1998-02-01|1998-01-29|DELIVER IN PERSON|TRUCK|ronic requests engage blith| +68079|428406|3423|1|32|42700.16|0.05|0.05|R|F|1994-03-29|1994-02-18|1994-04-11|NONE|RAIL|oost blithel| +68079|216048|3561|2|37|35669.11|0.02|0.04|A|F|1994-04-09|1994-01-20|1994-05-09|NONE|TRUCK|ions wake carefully. slyly| +68079|110856|23359|3|22|41070.70|0.10|0.04|A|F|1993-12-25|1994-02-15|1994-01-02|DELIVER IN PERSON|FOB|endencies integrate instructions. | +68079|141733|4236|4|1|1774.73|0.02|0.04|A|F|1994-02-10|1994-03-09|1994-03-04|DELIVER IN PERSON|MAIL|s sleep blithely according to the pendin| +68079|101838|1839|5|38|69913.54|0.05|0.00|A|F|1993-12-24|1994-02-12|1994-01-14|DELIVER IN PERSON|SHIP| ruthless theodolites haggle final th| +68079|578011|3034|6|35|38114.65|0.05|0.02|R|F|1994-01-06|1994-03-18|1994-01-19|DELIVER IN PERSON|MAIL|es are carefully eve| +68104|408369|45894|1|28|35765.52|0.06|0.03|A|F|1993-08-08|1993-08-23|1993-08-17|TAKE BACK RETURN|AIR|y bold pinto b| +68104|453734|28753|2|39|65820.69|0.00|0.00|R|F|1993-08-22|1993-09-29|1993-08-27|NONE|AIR|r, silent accounts according to the | +68104|895739|20774|3|28|48571.32|0.03|0.00|R|F|1993-10-08|1993-10-01|1993-11-03|COLLECT COD|SHIP|usly special| +68104|679203|29204|4|44|52015.48|0.01|0.01|A|F|1993-10-14|1993-08-18|1993-10-15|NONE|SHIP|structions. foxes haggle fu| +68105|772888|35404|1|2|3921.70|0.07|0.02|R|F|1992-11-20|1992-11-12|1992-12-13|COLLECT COD|FOB|y fluffily ironi| +68105|925040|37559|2|27|28755.00|0.08|0.05|R|F|1993-01-02|1992-11-23|1993-01-28|COLLECT COD|FOB| accounts!| +68105|141271|16276|3|10|13122.70|0.09|0.00|R|F|1992-10-20|1992-11-26|1992-11-03|NONE|TRUCK|oost carefully furious, r| +68105|337500|37501|4|10|15374.90|0.00|0.02|R|F|1992-12-29|1992-10-24|1993-01-15|TAKE BACK RETURN|TRUCK|packages. blithely ironic theodolites | +68105|358377|20885|5|3|4306.08|0.06|0.01|A|F|1992-10-31|1992-10-29|1992-11-26|DELIVER IN PERSON|MAIL|nal, express warthogs. bold, pending reques| +68105|235173|10182|6|36|39893.76|0.07|0.03|R|F|1992-10-17|1992-10-21|1992-11-08|COLLECT COD|TRUCK|ay wake quickly slyly even accounts. fin| +68106|929445|4482|1|1|1474.40|0.04|0.03|N|O|1998-10-23|1998-09-14|1998-11-07|COLLECT COD|REG AIR| ironic patterns according to| +68106|179922|17432|2|32|64061.44|0.06|0.05|N|O|1998-09-13|1998-08-19|1998-09-23|NONE|FOB| accounts wake| +68106|938616|26171|3|15|24818.55|0.01|0.05|N|O|1998-10-27|1998-09-02|1998-11-22|TAKE BACK RETURN|TRUCK|kly quickly silent platelets. final reque| +68107|447137|47138|1|11|11925.21|0.07|0.06|N|O|1997-05-09|1997-04-04|1997-05-23|DELIVER IN PERSON|SHIP|sts affix fluffily carefully final instruct| +68107|26492|13993|2|49|69506.01|0.09|0.00|N|O|1997-02-06|1997-03-24|1997-03-02|NONE|RAIL|ding to the slyly fi| +68107|245521|45522|3|36|52794.36|0.05|0.08|N|O|1997-02-06|1997-02-23|1997-02-21|TAKE BACK RETURN|RAIL|s are fluffily. unusual, entici| +68107|460252|35271|4|46|55762.58|0.04|0.07|N|O|1997-03-14|1997-02-22|1997-04-05|DELIVER IN PERSON|TRUCK|ter the regula| +68107|445570|8079|5|38|57590.90|0.07|0.01|N|O|1997-04-20|1997-04-22|1997-04-23|NONE|SHIP|s cajole slyly alongside o| +68107|683332|20872|6|15|19729.50|0.02|0.00|N|O|1997-04-18|1997-03-14|1997-04-28|NONE|RAIL|t the carefull| +68107|759058|34089|7|27|30159.54|0.03|0.01|N|O|1997-04-25|1997-02-27|1997-05-10|COLLECT COD|REG AIR|al dependencies are. a| +68108|481615|6634|1|45|71846.55|0.06|0.07|A|F|1992-08-28|1992-11-06|1992-09-01|TAKE BACK RETURN|TRUCK|uffily regular ins| +68108|492672|5182|2|20|33293.00|0.09|0.04|A|F|1992-10-11|1992-10-29|1992-11-10|COLLECT COD|TRUCK|accounts cajole. blithely final accounts bo| +68108|333332|33333|3|31|42324.92|0.02|0.00|R|F|1992-08-25|1992-10-08|1992-09-10|NONE|MAIL|ests cajole quickly among the a| +68108|304796|42315|4|8|14406.24|0.00|0.00|A|F|1992-11-26|1992-09-30|1992-12-01|TAKE BACK RETURN|MAIL|e carefully alongside of the pain| +68108|702712|27741|5|26|44581.68|0.02|0.00|A|F|1992-09-07|1992-10-09|1992-09-19|DELIVER IN PERSON|MAIL|es. slyly ironic accounts| +68109|686397|23937|1|15|20750.40|0.06|0.08|N|O|1998-07-03|1998-07-30|1998-07-13|NONE|REG AIR|uests eat sometimes. final| +68109|268487|18488|2|16|23287.52|0.06|0.01|N|O|1998-05-29|1998-06-21|1998-06-21|COLLECT COD|SHIP|final deposits da| +68109|459648|22158|3|50|80381.00|0.01|0.05|N|O|1998-07-27|1998-07-02|1998-08-02|NONE|SHIP|asymptotes cajole slyly about the fluf| +68109|299621|49622|4|16|25929.76|0.09|0.00|N|O|1998-06-30|1998-06-17|1998-07-22|DELIVER IN PERSON|MAIL|xcuses. packages detect up the slyly regul| +68109|725539|38054|5|21|32854.50|0.01|0.00|N|O|1998-06-27|1998-06-19|1998-07-06|NONE|REG AIR|ticingly regular requests. quickl| +68109|131471|31472|6|27|40566.69|0.03|0.08|N|O|1998-06-13|1998-06-08|1998-06-25|NONE|TRUCK|sts above | +68109|623592|11129|7|10|15155.60|0.00|0.07|N|O|1998-08-18|1998-07-25|1998-09-17|NONE|REG AIR|ake regular requests.| +68110|701436|1437|1|23|33060.20|0.05|0.02|N|O|1995-11-16|1995-09-20|1995-11-18|COLLECT COD|FOB|ly pending pinto beans a| +68110|23360|10861|2|15|19250.40|0.08|0.04|N|O|1995-08-10|1995-10-10|1995-09-03|DELIVER IN PERSON|TRUCK|dolites use. final, pending| +68110|605228|42765|3|36|40794.84|0.03|0.02|N|O|1995-08-14|1995-09-16|1995-09-04|DELIVER IN PERSON|SHIP|sleep above th| +68110|61059|23561|4|38|38761.90|0.00|0.06|N|O|1995-11-07|1995-10-27|1995-11-22|NONE|TRUCK|fter the carefully even requests. | +68110|203196|28205|5|19|20884.42|0.09|0.03|N|O|1995-10-26|1995-10-16|1995-10-31|DELIVER IN PERSON|FOB|to beans al| +68110|98963|36467|6|11|21581.56|0.08|0.05|N|O|1995-11-01|1995-10-28|1995-11-02|NONE|REG AIR|wake quickly!| +68111|272066|47077|1|47|48788.35|0.06|0.08|N|O|1998-07-15|1998-09-17|1998-08-06|NONE|FOB|depths haggle. fluffily ironic de| +68136|642034|17059|1|29|28304.00|0.08|0.08|N|O|1996-04-03|1996-01-17|1996-05-03|COLLECT COD|RAIL|courts are furiously regu| +68136|665354|2894|2|45|59369.40|0.01|0.02|N|O|1996-02-29|1996-02-25|1996-03-05|TAKE BACK RETURN|SHIP|ular accounts. carefully regular acc| +68136|593491|43492|3|9|14260.23|0.06|0.05|N|O|1995-12-11|1996-02-11|1995-12-14|COLLECT COD|REG AIR|heodolites sleep slyly. regular, even| +68136|794346|6862|4|38|54731.78|0.04|0.01|N|O|1996-02-09|1996-03-05|1996-02-27|DELIVER IN PERSON|REG AIR|s. slyly unusual depen| +68136|558696|21208|5|48|84224.16|0.00|0.06|N|O|1996-02-06|1996-01-29|1996-03-03|COLLECT COD|AIR|y ironic pinto beans. bl| +68137|675568|38082|1|16|24696.48|0.00|0.06|A|F|1995-01-16|1994-12-16|1995-02-04|NONE|REG AIR|egular packages boost acco| +68137|261895|36906|2|13|24139.44|0.03|0.04|R|F|1995-02-22|1994-12-31|1995-03-14|TAKE BACK RETURN|AIR|nstructions? blithely regular ideas de| +68137|666755|41782|3|45|77477.40|0.08|0.03|R|F|1995-02-05|1994-12-05|1995-02-08|COLLECT COD|TRUCK|y express requests.| +68137|148601|11104|4|5|8248.00|0.01|0.03|R|F|1995-02-21|1994-12-29|1995-03-13|COLLECT COD|TRUCK|foxes promise carefully blithely pend| +68137|522236|34747|5|29|36488.09|0.07|0.01|R|F|1994-11-07|1995-01-25|1994-11-16|COLLECT COD|AIR|ross the furiously regular requ| +68138|853427|3428|1|16|22086.08|0.08|0.02|N|O|1997-07-27|1997-06-28|1997-08-14|NONE|MAIL|s. frets cajole blithely about | +68139|515940|3471|1|37|72369.04|0.00|0.06|A|F|1992-02-21|1992-03-09|1992-03-04|DELIVER IN PERSON|MAIL|. furiously regular ideas | +68139|396241|8749|2|8|10697.84|0.07|0.02|A|F|1992-02-09|1992-03-13|1992-02-12|TAKE BACK RETURN|FOB|kages sleep ironically. doggedl| +68139|608558|21071|3|36|52794.72|0.06|0.02|A|F|1992-04-21|1992-03-10|1992-05-17|DELIVER IN PERSON|MAIL|structions. theodolites poach! regula| +68139|31878|31879|4|39|70584.93|0.04|0.04|R|F|1992-03-27|1992-05-02|1992-04-21|NONE|RAIL|ly regular requests| +68139|771209|46240|5|22|28163.74|0.10|0.07|R|F|1992-03-30|1992-03-19|1992-03-31|DELIVER IN PERSON|MAIL|lways slyly even foxes. gi| +68140|931358|6395|1|46|63908.26|0.04|0.07|A|F|1992-12-04|1992-09-27|1992-12-21|NONE|TRUCK|blithely upon the | +68140|333464|33465|2|8|11979.60|0.04|0.03|A|F|1992-11-21|1992-11-11|1992-12-02|COLLECT COD|TRUCK|s integrate f| +68140|525912|13443|3|21|40695.69|0.01|0.08|R|F|1992-08-23|1992-09-18|1992-08-29|NONE|MAIL|iously sly instructions integrate slyly s| +68141|666608|16609|1|28|44087.96|0.01|0.02|N|O|1995-11-11|1995-12-27|1995-12-01|TAKE BACK RETURN|TRUCK|eodolites thrash. regul| +68141|674685|24686|2|26|43150.90|0.00|0.08|N|O|1995-12-14|1995-12-05|1996-01-04|TAKE BACK RETURN|MAIL|slyly blith| +68141|427404|2421|3|22|29290.36|0.03|0.06|N|O|1995-12-24|1995-12-24|1996-01-09|DELIVER IN PERSON|AIR|r foxes. ironic pinto | +68141|366219|28727|4|4|5140.80|0.04|0.06|N|O|1996-02-04|1995-12-28|1996-03-02|COLLECT COD|MAIL|s wake blithely. idly regular | +68141|40646|15647|5|50|79332.00|0.10|0.00|N|O|1995-12-28|1995-12-22|1996-01-12|TAKE BACK RETURN|FOB|s are after the bold, express instru| +68141|129681|42184|6|38|65005.84|0.01|0.07|N|O|1995-11-02|1995-12-14|1995-11-29|TAKE BACK RETURN|RAIL|y unusual escapades wake blithely against| +68142|157621|45131|1|11|18464.82|0.06|0.01|N|O|1995-10-21|1995-08-21|1995-11-04|COLLECT COD|TRUCK| unusual deposits. even| +68142|135624|10629|2|21|34852.02|0.08|0.01|N|O|1995-09-18|1995-09-05|1995-09-24|COLLECT COD|FOB|lyly final forg| +68142|419623|19624|3|22|33937.20|0.05|0.07|N|O|1995-08-16|1995-09-10|1995-09-05|COLLECT COD|RAIL|tructions wake. furi| +68142|588364|25898|4|40|58093.60|0.00|0.02|N|O|1995-09-01|1995-09-13|1995-09-13|COLLECT COD|FOB|al depths. blithely special packages boo| +68142|623015|35528|5|39|36581.22|0.00|0.01|N|O|1995-07-29|1995-09-12|1995-08-15|DELIVER IN PERSON|FOB|ess packages| +68142|729|38230|6|32|52151.04|0.05|0.07|N|O|1995-07-01|1995-08-04|1995-07-23|DELIVER IN PERSON|REG AIR|ccounts. ironic, ironic | +68143|364421|1943|1|44|65358.04|0.09|0.08|R|F|1994-11-18|1994-09-19|1994-11-23|DELIVER IN PERSON|RAIL|nto beans ha| +68143|809041|9042|2|10|9500.00|0.01|0.05|A|F|1994-08-25|1994-10-06|1994-09-09|DELIVER IN PERSON|AIR|ruthless ideas sleep blithely regu| +68143|540096|27627|3|10|11360.70|0.06|0.03|R|F|1994-10-31|1994-09-02|1994-11-30|DELIVER IN PERSON|TRUCK| carefully final requests nod abou| +68143|377101|2116|4|2|2356.18|0.01|0.06|A|F|1994-09-14|1994-09-11|1994-10-03|NONE|TRUCK|ully unusual de| +68143|931829|44348|5|14|26050.92|0.03|0.01|R|F|1994-08-31|1994-09-07|1994-09-29|TAKE BACK RETURN|SHIP|nal request| +68143|244155|31668|6|32|35172.48|0.03|0.03|R|F|1994-08-25|1994-10-18|1994-09-13|NONE|FOB|egular ideas haggle re| +68143|502185|14696|7|9|10684.44|0.02|0.05|A|F|1994-10-11|1994-09-03|1994-10-25|DELIVER IN PERSON|TRUCK|ular deposits. accounts| +68168|209386|46899|1|38|49224.06|0.04|0.04|R|F|1995-05-19|1995-07-01|1995-05-26|TAKE BACK RETURN|TRUCK|structions boost furious| +68169|643421|43422|1|8|10915.12|0.00|0.03|N|O|1996-10-31|1996-10-23|1996-11-20|NONE|MAIL|oost never. ruthlessly pending dep| +68170|935905|48424|1|38|73752.68|0.03|0.00|N|O|1997-01-28|1997-01-08|1997-02-22|NONE|MAIL|ages are regularly slyl| +68170|749484|37027|2|25|38336.25|0.00|0.07|N|O|1997-01-29|1996-12-17|1997-02-23|DELIVER IN PERSON|RAIL| final, even asymptotes | +68170|571706|21707|3|15|26665.20|0.10|0.05|N|O|1996-11-20|1997-01-10|1996-11-30|COLLECT COD|SHIP|he regular asymptotes. packages use f| +68170|646120|46121|4|1|1066.09|0.10|0.07|N|O|1996-12-07|1996-12-13|1996-12-08|NONE|SHIP|ing to the f| +68171|394623|7131|1|6|10305.66|0.06|0.03|N|O|1995-07-18|1995-07-09|1995-08-08|COLLECT COD|TRUCK|ly unusual requests. bold excuses integrat| +68171|424416|11941|2|23|30828.97|0.00|0.06|N|O|1995-08-24|1995-07-23|1995-09-11|TAKE BACK RETURN|MAIL|slyly bold deposits wake quickly quic| +68172|375326|25327|1|44|61657.64|0.06|0.06|N|O|1998-06-26|1998-06-05|1998-07-08|NONE|TRUCK|s are stealthily dogged packages. slyly bol| +68172|102883|40390|2|25|47147.00|0.02|0.03|N|O|1998-06-26|1998-05-18|1998-06-28|NONE|REG AIR|c foxes play f| +68172|142231|4734|3|29|36923.67|0.10|0.04|N|O|1998-07-27|1998-06-04|1998-08-11|NONE|FOB|er the unusual requests. final, even at| +68172|469095|31605|4|37|39370.59|0.10|0.08|N|O|1998-04-19|1998-05-11|1998-04-28|TAKE BACK RETURN|MAIL|l, final accounts.| +68172|74231|11735|5|47|56645.81|0.02|0.05|N|O|1998-04-04|1998-06-01|1998-04-05|COLLECT COD|FOB|s detect blithely pinto beans; furiously u| +68172|591201|16224|6|44|56855.92|0.00|0.06|N|O|1998-04-30|1998-05-08|1998-05-12|COLLECT COD|FOB|place of the quickly regular inst| +68173|767691|5237|1|33|58035.78|0.09|0.00|N|O|1998-04-06|1998-04-22|1998-04-12|COLLECT COD|RAIL|ounts boost furiou| +68173|570394|32906|2|26|38073.62|0.06|0.04|N|O|1998-05-19|1998-04-10|1998-06-12|NONE|RAIL|ts. requests are furiously inside the car| +68173|595888|20911|3|37|73402.82|0.06|0.07|N|O|1998-03-10|1998-04-03|1998-03-18|COLLECT COD|REG AIR|te quickly furiously pend| +68173|85395|35396|4|39|53835.21|0.01|0.07|N|O|1998-04-24|1998-03-14|1998-04-30|TAKE BACK RETURN|RAIL|ideas hinder slyly. blit| +68174|681998|31999|1|2|3959.92|0.05|0.03|N|O|1998-05-03|1998-06-02|1998-05-07|NONE|TRUCK|de of the ironic, pending | +68174|333419|33420|2|10|14524.00|0.10|0.08|N|O|1998-08-06|1998-06-07|1998-08-22|TAKE BACK RETURN|AIR|al packages about the furiously ironic plat| +68174|761158|48704|3|17|20725.04|0.02|0.08|N|O|1998-04-24|1998-06-18|1998-05-13|COLLECT COD|SHIP|gular requests | +68174|780481|18027|4|27|42159.15|0.07|0.06|N|O|1998-05-08|1998-06-01|1998-06-04|COLLECT COD|RAIL|y unusual foxes | +68174|538569|1080|5|22|35365.88|0.04|0.04|N|O|1998-06-14|1998-05-26|1998-06-19|COLLECT COD|FOB|nusual instructions| +68175|69716|32218|1|27|45514.17|0.09|0.08|A|F|1995-02-25|1995-02-06|1995-03-12|DELIVER IN PERSON|TRUCK| ironic dinos after the quiet packages | +68175|710012|35041|2|45|45989.10|0.04|0.02|A|F|1994-12-23|1995-02-06|1995-01-04|COLLECT COD|AIR|s use furiously| +68175|161595|49105|3|44|72889.96|0.06|0.04|R|F|1995-03-12|1994-12-28|1995-03-21|COLLECT COD|AIR|cies are furiously about the| +68175|917923|17924|4|9|17467.92|0.05|0.02|R|F|1994-12-27|1995-02-09|1995-01-10|TAKE BACK RETURN|RAIL|. blithely ironic theodolites cajole furio| +68175|524319|36830|5|21|28209.09|0.00|0.04|R|F|1995-02-28|1995-02-07|1995-03-14|TAKE BACK RETURN|SHIP|jole furiously. blithely express foxes| +68175|224180|49189|6|39|43062.63|0.07|0.05|A|F|1995-02-20|1995-01-04|1995-02-24|COLLECT COD|TRUCK|the carefully express attainments. depe| +68175|777616|2647|7|40|67743.20|0.00|0.05|A|F|1994-12-11|1995-02-05|1994-12-26|DELIVER IN PERSON|SHIP|use ironic deposits. blithely reg| +68200|378826|3841|1|22|41905.82|0.04|0.04|N|O|1997-12-03|1997-12-12|1997-12-19|TAKE BACK RETURN|REG AIR|es. instructions cajole against the fl| +68200|921844|21845|2|29|54108.20|0.09|0.06|N|O|1997-11-02|1997-12-13|1997-11-12|TAKE BACK RETURN|RAIL|thogs sleep quickly. blithely ironic plat| +68200|415954|3479|3|17|31788.81|0.08|0.04|N|O|1998-02-01|1997-12-13|1998-02-26|COLLECT COD|FOB| mold. furiousl| +68201|875181|216|1|4|4624.56|0.02|0.07|N|O|1998-03-31|1998-05-26|1998-04-17|TAKE BACK RETURN|TRUCK|al deposits.| +68201|167047|4557|2|24|26736.96|0.06|0.01|N|O|1998-07-22|1998-05-25|1998-08-20|TAKE BACK RETURN|TRUCK| slyly even accounts | +68202|860086|35121|1|25|26151.00|0.07|0.03|N|O|1998-06-12|1998-07-11|1998-07-04|TAKE BACK RETURN|REG AIR|special gifts wake furiously.| +68202|449671|24688|2|12|19447.80|0.08|0.08|N|O|1998-08-17|1998-07-09|1998-08-27|NONE|TRUCK|ackages. carefully ironic pl| +68202|618666|31179|3|32|50708.16|0.08|0.04|N|O|1998-08-12|1998-07-14|1998-08-20|DELIVER IN PERSON|FOB| platelets haggle according to| +68202|909273|34310|4|47|60264.81|0.06|0.05|N|O|1998-07-07|1998-08-07|1998-07-25|NONE|REG AIR|tes are. b| +68202|141566|4069|5|14|22505.84|0.04|0.06|N|O|1998-08-04|1998-08-24|1998-08-12|NONE|AIR|nts. blithe| +68202|298565|36081|6|31|48470.05|0.01|0.06|N|O|1998-07-19|1998-08-01|1998-08-15|TAKE BACK RETURN|MAIL|ilent instructions are after the furiously | +68203|648464|48465|1|45|63559.35|0.00|0.06|R|F|1993-10-24|1994-01-09|1993-11-05|NONE|AIR|to beans are slyly even| +68203|728167|40682|2|3|3585.39|0.01|0.04|A|F|1994-01-18|1993-11-30|1994-02-02|TAKE BACK RETURN|FOB|al accounts. enticingly even | +68204|531199|18730|1|36|44286.12|0.02|0.05|N|O|1995-08-15|1995-11-01|1995-09-08|NONE|REG AIR|ag. carefully ev| +68204|848267|35816|2|1|1215.22|0.05|0.06|N|O|1995-09-11|1995-11-02|1995-10-06|COLLECT COD|REG AIR|waters: fluffily final | +68204|810644|35677|3|34|52856.40|0.04|0.02|N|O|1995-09-14|1995-10-10|1995-09-30|NONE|FOB|n, even ideas cajole| +68204|480705|43215|4|26|43827.68|0.07|0.07|N|O|1995-08-06|1995-10-10|1995-08-26|TAKE BACK RETURN|FOB|y special deposits sleep blithe| +68205|237554|37555|1|19|28339.26|0.04|0.08|R|F|1993-11-07|1994-01-09|1993-11-28|TAKE BACK RETURN|MAIL|final accounts cajole. furio| +68205|570014|7548|2|36|39023.64|0.08|0.03|A|F|1993-12-07|1993-12-17|1993-12-11|DELIVER IN PERSON|MAIL|e packages. ex| +68205|211888|49401|3|29|52196.23|0.04|0.06|R|F|1993-11-19|1993-12-06|1993-11-29|NONE|AIR|latelets. furiously final requests caj| +68205|185455|47959|4|45|69320.25|0.06|0.06|A|F|1994-02-20|1993-12-10|1994-03-11|DELIVER IN PERSON|SHIP|ests are fluffil| +68206|797874|35420|1|5|9859.20|0.00|0.03|N|O|1998-08-22|1998-07-09|1998-09-14|TAKE BACK RETURN|TRUCK|urts haggle. fluffi| +68207|313031|550|1|37|38628.74|0.10|0.03|N|O|1995-06-20|1995-06-07|1995-06-30|DELIVER IN PERSON|MAIL|e furiously furio| +68207|101166|13669|2|26|30346.16|0.06|0.07|N|O|1995-07-26|1995-07-01|1995-08-16|COLLECT COD|MAIL|eodolites. carefull| +68207|292043|29559|3|44|45541.32|0.07|0.06|N|F|1995-06-06|1995-06-22|1995-06-19|TAKE BACK RETURN|TRUCK|ly ironic excuses use care| +68207|351419|26434|4|5|7352.00|0.08|0.06|N|F|1995-06-13|1995-07-26|1995-07-09|TAKE BACK RETURN|RAIL|ven waters.| +68207|287130|12141|5|43|48036.16|0.07|0.05|N|O|1995-07-10|1995-06-14|1995-08-03|NONE|SHIP|ely unusual deposits. s| +68207|782894|32895|6|28|55352.08|0.00|0.06|N|O|1995-06-19|1995-06-09|1995-06-29|TAKE BACK RETURN|AIR|efully above the quickly exp| +68207|97632|10134|7|40|65185.20|0.05|0.05|N|F|1995-05-24|1995-06-25|1995-06-18|COLLECT COD|RAIL|ar accounts sleep. ironic, pend| +68232|898313|48314|1|20|26225.40|0.05|0.02|N|O|1996-07-24|1996-05-28|1996-08-09|COLLECT COD|MAIL|ges cajole above the slyly e| +68233|745931|20960|1|5|9884.50|0.00|0.07|N|O|1995-09-28|1995-12-12|1995-10-06|NONE|SHIP|o beans. furiously unusual orbits caj| +68233|853824|41376|2|14|24888.92|0.01|0.07|N|O|1996-01-25|1995-12-25|1996-02-24|COLLECT COD|SHIP| unusual accounts-- final, unus| +68233|205126|30135|3|38|39182.18|0.05|0.07|N|O|1995-11-21|1995-11-25|1995-12-05|DELIVER IN PERSON|SHIP|ke. furiously unusual cour| +68233|551794|26817|4|25|46144.25|0.00|0.04|N|O|1996-01-16|1995-12-07|1996-01-24|TAKE BACK RETURN|TRUCK| the unusual foxes| +68234|866396|16397|1|24|32696.40|0.01|0.03|R|F|1992-02-08|1992-03-28|1992-03-08|TAKE BACK RETURN|SHIP|ounts. slyly reg| +68234|512088|12089|2|22|24201.32|0.02|0.04|A|F|1992-01-27|1992-04-20|1992-02-05|NONE|REG AIR|atelets. ironic reque| +68234|647475|22500|3|46|65432.24|0.07|0.00|R|F|1992-04-02|1992-04-11|1992-04-04|TAKE BACK RETURN|REG AIR|y among the furiously | +68234|98893|36397|4|42|79459.38|0.02|0.00|A|F|1992-04-04|1992-03-20|1992-04-25|TAKE BACK RETURN|TRUCK|le carefully against the furiously even fr| +68234|82534|45036|5|24|36396.72|0.00|0.05|A|F|1992-05-01|1992-03-03|1992-05-29|NONE|FOB|. foxes use| +68235|41324|16325|1|39|49347.48|0.08|0.03|R|F|1995-01-03|1994-10-30|1995-01-17|NONE|RAIL|ts about th| +68235|529501|17032|2|13|19896.24|0.00|0.06|A|F|1994-11-05|1994-11-27|1994-11-13|NONE|RAIL| regular packages. carefully ironic ideas | +68235|306782|19289|3|30|53663.10|0.00|0.06|R|F|1994-09-27|1994-11-14|1994-10-01|NONE|MAIL|y even, idle ideas.| +68235|69483|31985|4|18|26144.64|0.09|0.00|A|F|1994-12-24|1994-11-16|1995-01-10|TAKE BACK RETURN|FOB|n, ironic accounts. blit| +68236|387591|25113|1|37|62107.46|0.10|0.01|R|F|1992-05-29|1992-06-14|1992-06-03|DELIVER IN PERSON|FOB|ke. even theodolites sle| +68236|237537|25050|2|48|70776.96|0.08|0.04|R|F|1992-08-04|1992-07-12|1992-09-02|COLLECT COD|FOB|pending theod| +68236|281409|18925|3|5|6951.95|0.02|0.05|A|F|1992-04-27|1992-05-25|1992-05-10|TAKE BACK RETURN|AIR|the fluffily silent excuses. carefu| +68236|624412|11949|4|26|34745.88|0.09|0.03|A|F|1992-05-27|1992-06-03|1992-06-18|COLLECT COD|AIR|ronic, pending packages. slyly special re| +68236|483594|46104|5|33|52059.81|0.02|0.06|A|F|1992-06-07|1992-06-13|1992-06-25|DELIVER IN PERSON|FOB|gular deposits: special | +68236|752902|27933|6|17|33232.79|0.02|0.02|A|F|1992-06-02|1992-06-19|1992-06-20|DELIVER IN PERSON|AIR|counts boost carefully even theodolites. | +68237|356874|44396|1|26|50202.36|0.05|0.02|A|F|1992-09-06|1992-08-23|1992-09-21|DELIVER IN PERSON|SHIP|le blithely| +68238|454539|4540|1|39|58246.89|0.02|0.00|N|O|1995-07-08|1995-06-22|1995-07-11|DELIVER IN PERSON|MAIL|regular deposits. even deposit| +68238|431883|31884|2|5|9074.30|0.06|0.02|N|O|1995-07-29|1995-07-21|1995-08-10|DELIVER IN PERSON|MAIL|ns. slyly final asympt| +68239|223282|35787|1|48|57852.96|0.09|0.05|N|O|1997-05-17|1997-06-11|1997-06-03|DELIVER IN PERSON|REG AIR| sometimes even pain| +68239|685519|23059|2|36|54161.28|0.07|0.03|N|O|1997-07-02|1997-05-20|1997-07-08|COLLECT COD|SHIP|n instructions. furiously even a| +68239|511993|49524|3|32|64159.04|0.09|0.05|N|O|1997-07-05|1997-05-14|1997-07-30|COLLECT COD|SHIP|yly. final, quick platele| +68239|64709|39712|4|20|33474.00|0.06|0.06|N|O|1997-05-02|1997-06-13|1997-05-11|TAKE BACK RETURN|RAIL| sleep alongside of the quickly e| +68239|554308|29331|5|31|42230.68|0.06|0.04|N|O|1997-07-16|1997-05-18|1997-07-26|TAKE BACK RETURN|FOB|, pending pinto beans haggle. slyly r| +68264|581117|18651|1|8|9584.72|0.06|0.03|A|F|1994-06-19|1994-07-31|1994-07-09|NONE|TRUCK|rd the quickly even ac| +68264|830277|42794|2|39|47081.97|0.04|0.00|A|F|1994-08-21|1994-08-02|1994-09-13|DELIVER IN PERSON|FOB|final requests around the slyly regular pin| +68264|461540|24050|3|11|16516.72|0.07|0.00|A|F|1994-08-03|1994-07-19|1994-08-26|DELIVER IN PERSON|TRUCK|uests cajole final foxes. | +68264|100766|13269|4|38|67136.88|0.07|0.05|A|F|1994-06-29|1994-06-28|1994-07-24|DELIVER IN PERSON|TRUCK|sts; slyly regular sauternes | +68264|560848|23360|5|34|64899.88|0.10|0.08|A|F|1994-07-13|1994-08-01|1994-08-11|TAKE BACK RETURN|SHIP|lly ironic accounts. even asymptotes | +68264|172122|9632|6|41|48958.92|0.04|0.04|A|F|1994-08-21|1994-06-23|1994-09-06|COLLECT COD|REG AIR|attainments kindle carefully pen| +68265|398532|23547|1|31|50546.12|0.10|0.00|N|O|1998-07-10|1998-05-27|1998-07-23|DELIVER IN PERSON|TRUCK|ly along the dolphins. f| +68266|957430|32469|1|12|17848.68|0.03|0.02|N|O|1998-03-25|1998-02-22|1998-03-28|NONE|TRUCK| the quickly express | +68266|516970|29481|2|4|7947.80|0.02|0.07|N|O|1998-01-12|1998-01-03|1998-01-13|TAKE BACK RETURN|TRUCK|usly regular foxes. carefully ironic pint| +68266|704562|42105|3|21|32897.13|0.00|0.00|N|O|1998-03-21|1998-01-27|1998-03-26|DELIVER IN PERSON|SHIP|arefully silently bold ideas. carefu| +68266|557011|19523|4|26|27767.74|0.02|0.04|N|O|1998-03-04|1998-01-26|1998-03-19|DELIVER IN PERSON|TRUCK|ic accounts. quickly| +68267|108463|20966|1|21|30900.66|0.07|0.08|A|F|1992-11-08|1992-09-13|1992-11-15|DELIVER IN PERSON|FOB|deas. silent requests haggle furio| +68267|934857|34858|2|31|58646.11|0.02|0.06|R|F|1992-11-29|1992-10-20|1992-12-09|COLLECT COD|RAIL| according to the fl| +68267|130543|5548|3|9|14161.86|0.05|0.04|R|F|1992-11-14|1992-10-13|1992-11-30|TAKE BACK RETURN|MAIL|ic, even accounts among | +68267|19980|44981|4|17|32299.66|0.04|0.03|R|F|1992-11-02|1992-10-11|1992-12-01|COLLECT COD|AIR|ly before the ruthlessly express pl| +68267|787846|362|5|6|11602.86|0.00|0.07|A|F|1992-09-25|1992-10-26|1992-09-27|TAKE BACK RETURN|RAIL|es sleep whithout the sp| +68268|766183|3729|1|10|12491.50|0.08|0.06|A|F|1992-06-15|1992-07-05|1992-06-27|COLLECT COD|RAIL|e instructions. regular, special deposits s| +68268|237352|24865|2|24|30944.16|0.08|0.08|A|F|1992-07-23|1992-07-23|1992-08-02|DELIVER IN PERSON|SHIP|ts. regular dolphins use furiously. quick| +68269|763532|26048|1|35|55842.50|0.10|0.01|R|F|1994-06-20|1994-05-31|1994-07-06|NONE|AIR|e of the slyly final deposits. | +68269|672088|22089|2|23|24381.15|0.01|0.05|R|F|1994-07-12|1994-06-13|1994-07-26|COLLECT COD|SHIP| the bravely regular a| +68269|773145|10691|3|28|34107.08|0.05|0.04|A|F|1994-05-26|1994-07-09|1994-06-20|NONE|AIR|ly unusual ideas. daringly pending depos| +68269|235390|35391|4|28|37110.64|0.04|0.01|R|F|1994-05-13|1994-05-24|1994-05-29|NONE|RAIL|uriously regular ideas cajole after the ide| +68269|183478|8485|5|32|49967.04|0.00|0.04|R|F|1994-04-29|1994-06-11|1994-05-22|COLLECT COD|MAIL|ly express dependencies after the sly| +68270|192876|5380|1|20|39377.40|0.01|0.05|N|O|1995-08-21|1995-09-09|1995-08-30|TAKE BACK RETURN|REG AIR|lly regular foxes | +68270|652384|39924|2|20|26727.00|0.02|0.08|N|O|1995-11-06|1995-10-30|1995-12-02|TAKE BACK RETURN|AIR|eposits wake carefully. qu| +68270|610692|10693|3|4|6410.64|0.00|0.05|N|O|1995-09-07|1995-10-09|1995-09-12|COLLECT COD|MAIL|dolphins. | +68270|886143|48661|4|47|53067.70|0.01|0.07|N|O|1995-10-12|1995-09-22|1995-10-27|TAKE BACK RETURN|RAIL|xpress, ironic | +68270|396241|33763|5|47|62849.81|0.03|0.06|N|O|1995-10-21|1995-10-31|1995-11-13|DELIVER IN PERSON|REG AIR|eposits. blithely ironic f| +68270|622317|22318|6|4|4957.12|0.00|0.04|N|O|1995-09-17|1995-10-01|1995-09-24|NONE|SHIP|lyly quickly regu| +68270|275310|37816|7|16|20564.80|0.08|0.03|N|O|1995-10-16|1995-10-15|1995-11-12|COLLECT COD|MAIL|longside of the accounts. blithely iro| +68271|125365|12872|1|36|50052.96|0.02|0.05|R|F|1995-01-02|1995-01-10|1995-01-25|COLLECT COD|TRUCK| bold, even deposits wake carefully-- pe| +68296|702739|2740|1|5|8708.50|0.06|0.03|N|O|1995-09-27|1995-10-24|1995-10-15|DELIVER IN PERSON|REG AIR|quickly even platelets. requests according | +68296|920845|8400|2|35|65303.00|0.03|0.03|N|O|1995-12-18|1995-10-17|1995-12-19|COLLECT COD|FOB|egular platelets haggle carefu| +68296|629590|29591|3|20|30391.20|0.01|0.03|N|O|1995-11-05|1995-10-18|1995-11-15|TAKE BACK RETURN|SHIP|n instructions. final p| +68296|503687|41218|4|22|37194.52|0.06|0.08|N|O|1995-10-18|1995-10-10|1995-10-20|COLLECT COD|MAIL|cajole blith| +68296|452456|2457|5|35|49295.05|0.07|0.08|N|O|1995-08-28|1995-10-18|1995-09-15|TAKE BACK RETURN|MAIL| pending pinto beans. blithely spec| +68297|921263|33782|1|17|21831.74|0.00|0.01|R|F|1994-11-17|1994-08-30|1994-12-15|COLLECT COD|MAIL|t. express, express pac| +68297|663093|13094|2|47|49634.82|0.05|0.07|A|F|1994-11-20|1994-09-12|1994-12-12|DELIVER IN PERSON|FOB|es above the slyly pending so| +68297|593126|18149|3|12|14629.20|0.05|0.04|A|F|1994-09-03|1994-09-12|1994-09-19|NONE|TRUCK|lly final theodolites. furiously final ac| +68298|330372|30373|1|5|7011.80|0.07|0.04|R|F|1993-03-17|1993-02-05|1993-04-03|TAKE BACK RETURN|AIR|ages. slyly reg| +68298|562123|12124|2|38|45033.80|0.03|0.08|R|F|1993-02-27|1993-02-16|1993-03-12|NONE|SHIP|mpress slyly slyly even re| +68298|591126|3638|3|8|9736.80|0.04|0.00|R|F|1992-12-14|1993-01-11|1992-12-25|DELIVER IN PERSON|RAIL|rough the slyly even platelets. furiou| +68298|38699|1200|4|22|36029.18|0.03|0.02|A|F|1993-03-15|1993-02-26|1993-04-05|TAKE BACK RETURN|AIR|tes. deposits wake furiously daring p| +68298|398577|23592|5|9|15080.04|0.04|0.06|A|F|1993-01-10|1993-02-10|1993-01-27|TAKE BACK RETURN|RAIL| even packages| +68299|275849|860|1|16|29197.28|0.10|0.00|R|F|1995-03-04|1995-01-05|1995-03-15|NONE|TRUCK|requests are ironic packages. final | +68299|188309|38310|2|46|64275.80|0.07|0.07|R|F|1995-02-03|1995-01-07|1995-02-22|TAKE BACK RETURN|SHIP|lyly unusual platelets ha| +68299|894548|32100|3|15|23137.50|0.01|0.03|A|F|1995-01-17|1994-12-08|1995-01-29|NONE|SHIP|arefully final packages afte| +68299|652001|27028|4|28|26683.16|0.00|0.01|R|F|1995-03-05|1995-01-25|1995-03-30|DELIVER IN PERSON|REG AIR| are carefully along the regular, b| +68299|173026|23027|5|3|3297.06|0.04|0.04|A|F|1994-11-17|1995-01-21|1994-12-04|COLLECT COD|MAIL|ironic, final dugouts. regular d| +68300|911152|36189|1|36|41871.96|0.00|0.02|N|O|1996-10-07|1996-08-22|1996-11-06|COLLECT COD|MAIL| quickly unusual requests. | +68300|723737|11280|2|47|82752.90|0.04|0.05|N|O|1996-09-16|1996-10-02|1996-10-01|NONE|FOB|lar requests are furiously bold the| +68300|838100|25649|3|15|15570.90|0.06|0.04|N|O|1996-10-05|1996-09-12|1996-10-11|DELIVER IN PERSON|SHIP|ans. instructions | +68300|937782|37783|4|46|83708.04|0.10|0.01|N|O|1996-07-22|1996-09-05|1996-08-01|TAKE BACK RETURN|RAIL|packages use blithely furiously even water| +68300|292922|5428|5|41|78511.31|0.10|0.06|N|O|1996-10-07|1996-09-06|1996-10-15|DELIVER IN PERSON|RAIL|blithely regular accounts are blithely| +68300|130727|18234|6|20|35154.40|0.05|0.02|N|O|1996-10-13|1996-09-21|1996-11-04|COLLECT COD|RAIL| bold ideas. bold fo| +68301|117722|17723|1|38|66109.36|0.04|0.04|N|O|1996-04-07|1996-02-29|1996-04-08|NONE|TRUCK|. dolphins after the | +68301|548106|48107|2|38|43855.04|0.09|0.02|N|O|1996-02-05|1996-02-22|1996-02-09|NONE|SHIP|y special packages. bravely special de| +68301|16675|41676|3|29|46158.43|0.04|0.08|N|O|1996-04-13|1996-02-12|1996-05-03|NONE|REG AIR|unts sleep bold, final ins| +68301|251037|13543|4|16|15808.32|0.05|0.05|N|O|1996-04-22|1996-02-14|1996-04-28|DELIVER IN PERSON|REG AIR|er the even, pending requests. even,| +68301|173606|48613|5|17|28553.20|0.01|0.03|N|O|1996-03-06|1996-02-04|1996-03-14|COLLECT COD|SHIP|posits sublate blithely am| +68302|185210|35211|1|5|6476.05|0.06|0.01|N|O|1997-03-13|1997-01-02|1997-04-01|NONE|FOB|ccording to the regular | +68302|818059|43092|2|2|1954.02|0.05|0.08|N|O|1997-01-26|1997-01-03|1997-02-11|DELIVER IN PERSON|MAIL|gle fluffily. quickly silent instr| +68302|103528|16031|3|34|52071.68|0.06|0.04|N|O|1997-03-18|1996-12-19|1997-03-27|DELIVER IN PERSON|RAIL|lly even instructions| +68302|982457|7496|4|42|64655.22|0.02|0.03|N|O|1996-11-25|1997-02-06|1996-12-17|NONE|MAIL|g the pending requests| +68302|144074|19079|5|11|12298.77|0.00|0.02|N|O|1997-03-14|1997-01-28|1997-04-09|NONE|AIR|te accounts. | +68303|882427|44945|1|15|21140.70|0.10|0.05|N|O|1995-08-03|1995-08-21|1995-08-15|TAKE BACK RETURN|AIR|lyly blithely final pinto beans? quic| +68328|485243|47753|1|11|13510.42|0.02|0.00|N|O|1996-01-15|1995-12-10|1996-02-13|COLLECT COD|TRUCK|ctions. even deposits ought | +68328|473245|23246|2|25|30455.50|0.09|0.07|N|O|1996-02-19|1996-01-21|1996-02-21|DELIVER IN PERSON|AIR|platelets doze regular accounts; carefully| +68328|817989|43022|3|49|93440.06|0.01|0.04|N|O|1996-02-24|1995-12-11|1996-03-24|DELIVER IN PERSON|SHIP|hins doze furi| +68328|937242|12279|4|25|31980.00|0.06|0.06|N|O|1995-12-01|1995-12-12|1995-12-24|COLLECT COD|REG AIR| ironic requests! fluffily final | +68328|221268|8781|5|41|48759.25|0.09|0.02|N|O|1996-01-19|1995-12-18|1996-02-16|TAKE BACK RETURN|FOB| carefully regular asymptotes unwind furiou| +68329|328708|28709|1|30|52100.70|0.06|0.04|A|F|1994-04-04|1994-03-15|1994-04-27|COLLECT COD|TRUCK|uickly silent accounts. sil| +68329|584481|22015|2|47|73576.62|0.10|0.05|A|F|1994-04-28|1994-03-30|1994-05-06|NONE|SHIP|ould have to use slyly final requests.| +68330|558163|33186|1|4|4884.56|0.06|0.03|A|F|1992-07-16|1992-06-21|1992-07-30|COLLECT COD|FOB| requests. ideas acros| +68330|29365|29366|2|5|6471.80|0.09|0.06|A|F|1992-06-10|1992-07-25|1992-07-09|DELIVER IN PERSON|RAIL|ly near the regular Tiresias.| +68330|537334|24865|3|10|13713.10|0.03|0.08|A|F|1992-07-27|1992-07-26|1992-08-25|COLLECT COD|REG AIR|refully regular instructi| +68331|807015|7016|1|22|20283.34|0.03|0.00|R|F|1994-01-13|1993-11-14|1994-02-07|COLLECT COD|TRUCK|ickly regular requests haggle | +68331|498473|36001|2|1|1471.45|0.07|0.03|A|F|1993-12-04|1993-11-20|1993-12-30|DELIVER IN PERSON|RAIL|wake doggedly among th| +68331|824567|12116|3|9|13423.68|0.00|0.08|A|F|1993-10-02|1993-11-15|1993-10-27|TAKE BACK RETURN|TRUCK|urious platelets wake carefully| +68331|488778|1288|4|38|67136.50|0.09|0.02|A|F|1993-11-17|1993-11-05|1993-11-24|COLLECT COD|RAIL|s behind the| +68331|878440|3475|5|30|42552.00|0.07|0.01|A|F|1993-12-07|1993-11-17|1993-12-20|COLLECT COD|FOB|ly! slyly even platelets | +68331|929733|17288|6|47|82846.43|0.02|0.05|R|F|1993-11-04|1993-12-10|1993-11-18|TAKE BACK RETURN|AIR|regular accounts| +68332|596118|21141|1|16|19425.44|0.00|0.06|R|F|1993-08-20|1993-09-10|1993-09-09|TAKE BACK RETURN|FOB|hins wake ideas. furiousl| +68332|950142|37700|2|48|57220.80|0.01|0.05|R|F|1993-08-07|1993-09-11|1993-08-15|NONE|FOB|e. quickly unusual instructions affi| +68332|25604|13105|3|3|4588.80|0.02|0.08|A|F|1993-07-02|1993-09-21|1993-07-16|NONE|FOB|d packages subl| +68332|313176|13177|4|34|40431.44|0.02|0.01|R|F|1993-08-15|1993-08-07|1993-08-17|TAKE BACK RETURN|SHIP|y unusual packages haggle blithely; ironic,| +68333|910136|10137|1|26|29798.34|0.01|0.06|A|F|1995-02-23|1995-03-05|1995-03-18|COLLECT COD|FOB| nag blithely along | +68334|250067|12573|1|42|42716.10|0.06|0.08|R|F|1993-08-09|1993-07-05|1993-08-17|TAKE BACK RETURN|TRUCK|its against the blithely | +68334|861386|11387|2|49|66019.66|0.00|0.01|R|F|1993-07-14|1993-06-20|1993-08-05|TAKE BACK RETURN|AIR| instructions cajole amon| +68334|306490|31503|3|41|61355.68|0.03|0.04|A|F|1993-05-30|1993-06-28|1993-06-13|DELIVER IN PERSON|TRUCK|s! never final ideas are| +68334|172680|10190|4|43|75365.24|0.03|0.04|A|F|1993-05-27|1993-07-31|1993-06-05|COLLECT COD|RAIL|sly regular packages cajole above | +68334|226647|26648|5|1|1573.63|0.06|0.07|R|F|1993-06-23|1993-06-19|1993-07-15|DELIVER IN PERSON|REG AIR|r deposits cajole quickly. expre| +68334|244741|7246|6|24|40457.52|0.07|0.03|R|F|1993-07-17|1993-06-08|1993-08-12|TAKE BACK RETURN|TRUCK|o beans nag. furiously ironic instructions| +68335|582487|7510|1|25|39236.50|0.09|0.01|N|F|1995-06-08|1995-07-03|1995-07-04|COLLECT COD|MAIL|e above the ironi| +68335|853836|16354|2|12|21477.48|0.04|0.01|N|F|1995-06-02|1995-08-09|1995-06-24|COLLECT COD|RAIL|iously special ideas.| +68335|405935|18444|3|19|34977.29|0.09|0.08|N|O|1995-06-24|1995-07-16|1995-07-23|NONE|MAIL|ding to the quickly pending theodolites. re| +68335|548362|23383|4|36|50772.24|0.08|0.00|N|O|1995-06-29|1995-06-23|1995-07-13|COLLECT COD|AIR|ong the furiously ironic i| +68360|921199|33718|1|22|26843.30|0.01|0.08|R|F|1993-07-17|1993-08-07|1993-07-31|DELIVER IN PERSON|AIR|ely ironic packages among the ironic| +68360|582850|45362|2|44|85044.52|0.01|0.07|R|F|1993-06-10|1993-07-24|1993-07-07|NONE|MAIL|pending acc| +68361|950175|25214|1|33|40429.29|0.06|0.01|R|F|1992-08-21|1992-06-10|1992-09-16|DELIVER IN PERSON|TRUCK|gular theodolites. fi| +68361|580712|43224|2|36|64536.84|0.10|0.02|A|F|1992-08-21|1992-07-16|1992-09-01|TAKE BACK RETURN|SHIP|ending ideas| +68361|25414|12915|3|27|36164.07|0.06|0.01|R|F|1992-07-06|1992-08-03|1992-07-28|TAKE BACK RETURN|AIR|y express accounts detect blith| +68361|117043|42048|4|19|20140.76|0.00|0.06|A|F|1992-06-26|1992-07-16|1992-07-01|NONE|SHIP|ld requests serve carefu| +68361|140829|40830|5|19|35526.58|0.01|0.01|R|F|1992-07-11|1992-07-20|1992-07-13|NONE|MAIL|ld sublate slyly. blithely| +68362|425721|25722|1|13|21407.10|0.07|0.00|N|O|1997-08-17|1997-09-29|1997-09-12|COLLECT COD|REG AIR|ctions. slyly bold requests wake furiously| +68362|92670|30174|2|13|21614.71|0.04|0.07|N|O|1997-08-18|1997-10-05|1997-09-15|DELIVER IN PERSON|AIR|ar pinto beans are around the furiousl| +68362|495662|20681|3|17|28179.88|0.04|0.07|N|O|1997-07-27|1997-09-02|1997-08-16|DELIVER IN PERSON|MAIL|tly unusua| +68362|587114|37115|4|16|19217.44|0.01|0.04|N|O|1997-08-14|1997-09-06|1997-08-16|COLLECT COD|AIR| theodolites according to the ironi| +68362|623176|23177|5|13|14288.82|0.02|0.06|N|O|1997-11-07|1997-08-16|1997-11-19|NONE|SHIP|express pinto beans| +68362|702979|15494|6|45|89187.30|0.06|0.03|N|O|1997-09-24|1997-08-12|1997-10-12|NONE|REG AIR| cajole bravely dependencies. bold orbits c| +68363|992042|4562|1|46|52164.00|0.01|0.03|N|O|1995-08-29|1995-08-16|1995-09-09|COLLECT COD|FOB|efully slyly regular orbits: b| +68363|233341|20854|2|48|61167.84|0.03|0.04|N|O|1995-08-12|1995-08-23|1995-08-18|COLLECT COD|RAIL|rding to the even foxes. | +68363|747993|10508|3|18|36737.28|0.08|0.07|N|O|1995-09-30|1995-08-26|1995-10-02|NONE|MAIL|he furiously pending packages.| +68363|510161|10162|4|12|14053.68|0.09|0.02|N|O|1995-09-26|1995-07-13|1995-10-18|COLLECT COD|MAIL|le pinto bean| +68363|261693|49209|5|43|71151.24|0.05|0.07|N|O|1995-06-28|1995-07-25|1995-07-22|NONE|RAIL|le excuses. carefully unusual depen| +68364|299032|11538|1|34|35054.68|0.09|0.04|N|O|1998-01-13|1998-02-07|1998-01-24|COLLECT COD|AIR|eposits acc| +68364|820878|33395|2|22|39574.26|0.04|0.05|N|O|1998-04-01|1998-03-03|1998-05-01|TAKE BACK RETURN|RAIL|y according| +68365|747008|22037|1|42|44308.74|0.10|0.00|R|F|1994-02-24|1994-01-24|1994-03-22|COLLECT COD|RAIL| unusual theodolites. quickly final th| +68365|960763|35802|2|2|3647.44|0.00|0.01|R|F|1994-02-21|1994-02-17|1994-03-04|TAKE BACK RETURN|TRUCK|sts. special, re| +68365|532557|7578|3|8|12716.24|0.00|0.05|R|F|1994-02-10|1994-02-16|1994-03-12|DELIVER IN PERSON|SHIP|ts against the furiously special epitaph| +68365|668723|31237|4|7|11841.83|0.03|0.02|A|F|1994-01-11|1994-01-11|1994-01-24|COLLECT COD|MAIL| the regular, pending| +68365|217899|42908|5|2|3633.76|0.09|0.07|A|F|1994-02-03|1994-01-19|1994-03-05|NONE|REG AIR|its nag according to the deposits. even| +68365|214584|2097|6|46|68934.22|0.08|0.07|A|F|1994-04-03|1994-02-01|1994-04-26|TAKE BACK RETURN|MAIL|ularly ironic excuses wa| +68365|513203|38224|7|20|24323.60|0.00|0.06|R|F|1994-03-26|1994-01-16|1994-04-05|TAKE BACK RETURN|RAIL|sly express somas! slow| +68366|396622|34144|1|1|1718.61|0.06|0.04|R|F|1995-05-01|1995-03-27|1995-05-18|TAKE BACK RETURN|MAIL|uffily final ideas nag fluffily qui| +68366|22604|35105|2|27|41218.20|0.10|0.00|A|F|1995-03-31|1995-05-06|1995-04-09|NONE|REG AIR|uriously blithely final accounts. ideas | +68366|905387|30424|3|41|57085.94|0.09|0.01|A|F|1995-05-24|1995-03-23|1995-06-07|COLLECT COD|FOB|nag careful| +68367|419371|19372|1|20|25807.00|0.01|0.02|N|O|1996-07-01|1996-05-12|1996-07-10|DELIVER IN PERSON|REG AIR|the blithely ironic accounts. blithely iro| +68367|352568|2569|2|8|12964.40|0.08|0.05|N|O|1996-04-11|1996-05-17|1996-05-03|COLLECT COD|TRUCK|al pinto beans. special Tiresias acco| +68367|609778|22291|3|34|57383.16|0.04|0.03|N|O|1996-06-08|1996-06-01|1996-06-28|TAKE BACK RETURN|FOB|ously even foxes are. slyly specia| +68367|532646|45157|4|48|80573.76|0.05|0.02|N|O|1996-05-28|1996-06-20|1996-06-26|TAKE BACK RETURN|AIR|luffily pending accounts. blithel| +68392|5863|5864|1|23|40683.78|0.09|0.00|A|F|1993-05-23|1993-05-10|1993-06-19|DELIVER IN PERSON|SHIP|wake. unusual, ironic deposits wake| +68392|536173|36174|2|16|19346.40|0.04|0.05|R|F|1993-05-18|1993-05-09|1993-05-21|DELIVER IN PERSON|SHIP|ld accounts. furiously bold a| +68392|451766|39294|3|28|48096.72|0.04|0.08|A|F|1993-05-12|1993-06-01|1993-06-07|TAKE BACK RETURN|REG AIR|furiously ironic asympt| +68393|843589|6106|1|45|68964.30|0.08|0.02|A|F|1993-01-23|1993-01-13|1993-02-03|DELIVER IN PERSON|REG AIR|onic packages. unus| +68393|188629|1133|2|30|51528.60|0.04|0.07|R|F|1993-02-16|1993-01-16|1993-03-01|NONE|FOB|ithely pending somas solve fluffily| +68393|273181|35687|3|7|8079.19|0.06|0.06|R|F|1992-12-05|1993-01-15|1992-12-19|NONE|RAIL|y. slyly bold req| +68393|339213|26732|4|36|45079.20|0.03|0.02|A|F|1992-11-18|1992-12-25|1992-11-28|NONE|MAIL|sly special instr| +68393|152677|2678|5|28|48430.76|0.08|0.04|A|F|1993-01-18|1992-12-25|1993-02-15|COLLECT COD|FOB|egular forges. furious| +68393|41504|4005|6|21|30355.50|0.00|0.03|A|F|1993-02-09|1993-01-13|1993-02-28|TAKE BACK RETURN|RAIL|sts. furio| +68393|546887|9398|7|32|61883.52|0.08|0.05|R|F|1993-01-27|1992-12-08|1993-02-13|COLLECT COD|AIR|iously pending accou| +68394|517160|17161|1|15|17657.10|0.02|0.01|N|O|1997-03-21|1997-04-12|1997-03-31|TAKE BACK RETURN|AIR| across the furiously regular instructio| +68394|901007|13526|2|36|36286.56|0.07|0.03|N|O|1997-05-25|1997-04-21|1997-06-03|NONE|REG AIR|uriously. even deposits wake slyly unu| +68395|897011|34563|1|49|49390.53|0.06|0.07|N|O|1997-05-23|1997-02-25|1997-06-08|TAKE BACK RETURN|AIR| ironic package| +68395|58206|8207|2|11|12806.20|0.06|0.00|N|O|1997-05-16|1997-03-13|1997-06-10|NONE|FOB|n theodolites haggle b| +68395|258051|45567|3|42|42379.68|0.00|0.01|N|O|1997-04-28|1997-04-21|1997-05-07|NONE|REG AIR| slyly silent requests. ironic foxes| +68395|60406|10407|4|12|16396.80|0.04|0.05|N|O|1997-02-06|1997-02-28|1997-03-08|DELIVER IN PERSON|TRUCK| carefully. f| +68395|232066|32067|5|23|22955.15|0.09|0.07|N|O|1997-03-30|1997-03-27|1997-04-25|COLLECT COD|RAIL|. slyly special ideas detect slyly| +68396|178734|28735|1|19|34441.87|0.08|0.01|N|O|1998-03-31|1998-03-26|1998-04-28|COLLECT COD|MAIL|ests against t| +68396|966575|29095|2|19|31189.07|0.06|0.07|N|O|1998-03-10|1998-04-12|1998-04-02|TAKE BACK RETURN|RAIL|iously. slyly ex| +68397|293776|31292|1|41|72560.16|0.04|0.04|A|F|1995-02-27|1995-03-23|1995-03-21|DELIVER IN PERSON|TRUCK|lly fluffily unusual platelets. pending| +68397|484327|9346|2|40|52452.00|0.00|0.04|A|F|1995-03-09|1995-03-14|1995-03-29|TAKE BACK RETURN|REG AIR|carefully final accounts: ir| +68398|234966|47471|1|8|15207.60|0.01|0.03|N|O|1996-07-02|1996-04-14|1996-07-14|COLLECT COD|SHIP|ress requests above the expres| +68398|68017|18018|2|24|23640.24|0.08|0.01|N|O|1996-05-18|1996-06-04|1996-06-09|NONE|MAIL| integrate whithout the silent requests. | +68398|148726|48727|3|1|1774.72|0.03|0.06|N|O|1996-06-25|1996-06-07|1996-07-18|NONE|RAIL|carefully carefully | +68398|629830|17367|4|45|79191.00|0.08|0.04|N|O|1996-05-26|1996-04-17|1996-06-12|DELIVER IN PERSON|FOB|s among the bold, enticing accou| +68399|567642|42665|1|31|52998.22|0.03|0.05|N|O|1997-11-22|1998-01-15|1997-12-10|COLLECT COD|TRUCK|play about| +68399|355930|43452|2|23|45676.16|0.07|0.05|N|O|1998-02-16|1997-12-23|1998-03-17|DELIVER IN PERSON|AIR|e quickly about the furiously special pinto| +68424|108740|46247|1|48|83939.52|0.03|0.05|R|F|1993-09-20|1993-08-27|1993-09-25|DELIVER IN PERSON|MAIL|osits nag careful,| +68425|867719|17720|1|21|35420.07|0.10|0.05|R|F|1995-04-26|1995-02-28|1995-05-22|TAKE BACK RETURN|AIR|r the furiously fina| +68425|739422|26965|2|1|1461.39|0.09|0.06|R|F|1995-03-18|1995-02-12|1995-03-29|NONE|AIR|counts across the iro| +68425|463455|25965|3|14|19858.02|0.00|0.01|A|F|1995-03-25|1995-03-13|1995-04-13|COLLECT COD|RAIL|es engage carefully special sheave| +68426|432917|20442|1|34|62896.26|0.09|0.06|R|F|1994-09-10|1994-10-11|1994-09-17|TAKE BACK RETURN|FOB|arefully regular accounts. furiously regul| +68426|20695|33196|2|11|17772.59|0.05|0.03|A|F|1994-10-30|1994-11-18|1994-11-16|TAKE BACK RETURN|FOB|ly final foxes impress fur| +68426|819253|44286|3|39|45716.19|0.00|0.00|R|F|1994-11-09|1994-09-28|1994-12-07|NONE|RAIL|osits. fluffily ironic pinto beans us| +68426|171450|46457|4|23|34993.35|0.10|0.01|R|F|1994-10-11|1994-11-11|1994-11-02|NONE|REG AIR|ly even packages. quickly express sauter| +68426|549622|49623|5|49|81908.40|0.10|0.08|A|F|1994-11-02|1994-11-05|1994-11-05|DELIVER IN PERSON|SHIP|l deposits wake | +68426|486138|11157|6|16|17985.76|0.09|0.05|R|F|1994-11-24|1994-10-03|1994-12-21|DELIVER IN PERSON|TRUCK| even, iro| +68426|516521|4052|7|26|39975.00|0.07|0.04|R|F|1994-12-10|1994-10-21|1994-12-27|DELIVER IN PERSON|MAIL|ly special accounts| +68427|152100|2101|1|50|57605.00|0.04|0.05|N|O|1997-05-16|1997-07-07|1997-06-08|DELIVER IN PERSON|REG AIR|riously final accounts. regular pa| +68427|328377|3390|2|14|19675.04|0.03|0.03|N|O|1997-06-24|1997-06-29|1997-07-18|NONE|REG AIR|ic asymptotes are. slyly final | +68427|23391|23392|3|34|44689.26|0.08|0.05|N|O|1997-08-23|1997-06-29|1997-09-09|TAKE BACK RETURN|REG AIR|unts wake carefully about the theodolit| +68427|130706|18213|4|29|50364.30|0.10|0.02|N|O|1997-07-25|1997-07-11|1997-08-18|NONE|TRUCK|ly above the caref| +68427|771230|21231|5|14|18216.80|0.06|0.08|N|O|1997-07-05|1997-07-21|1997-07-17|NONE|REG AIR|excuses. final accou| +68427|55738|5739|6|38|64361.74|0.04|0.03|N|O|1997-08-08|1997-06-18|1997-08-14|TAKE BACK RETURN|AIR|eodolites nag. even ideas cajole blithely t| +68428|321035|46048|1|40|42240.80|0.08|0.07|A|F|1995-02-08|1994-12-02|1995-02-24|DELIVER IN PERSON|REG AIR|carefully bold id| +68428|629754|29755|2|23|38725.56|0.01|0.07|R|F|1995-01-10|1995-01-10|1995-01-26|COLLECT COD|SHIP| ideas. fluffily final theodolites us| +68429|580849|5872|1|21|40526.22|0.03|0.04|N|O|1996-09-01|1996-09-12|1996-09-09|COLLECT COD|FOB|al pinto beans slee| +68429|317303|42316|2|14|18484.06|0.08|0.07|N|O|1996-10-20|1996-09-24|1996-10-26|COLLECT COD|MAIL|might sleep dependencies. carefully specia| +68429|905999|18518|3|47|94232.65|0.06|0.00|N|O|1996-11-03|1996-08-23|1996-11-26|TAKE BACK RETURN|AIR|ns nag special accounts. final instruct| +68429|114591|27094|4|37|59406.83|0.04|0.07|N|O|1996-11-05|1996-09-01|1996-11-11|COLLECT COD|FOB|he blithely regular dinos. carefully reg| +68430|732171|7200|1|9|10828.26|0.08|0.04|N|O|1996-10-31|1996-10-09|1996-11-17|DELIVER IN PERSON|TRUCK|nic, pending pinto be| +68430|597079|22102|2|36|42337.80|0.09|0.01|N|O|1996-09-12|1996-11-02|1996-09-18|DELIVER IN PERSON|MAIL| even requests. slyly silent | +68430|105192|30197|3|42|50281.98|0.08|0.07|N|O|1996-09-02|1996-11-01|1996-09-27|NONE|RAIL|express foxes. fluffily regular foxes | +68430|960209|10210|4|45|57112.20|0.00|0.02|N|O|1996-10-02|1996-10-24|1996-10-05|NONE|TRUCK|counts sleep. slyly final deposits along | +68431|399332|11840|1|24|34351.68|0.05|0.01|R|F|1994-06-07|1994-06-16|1994-06-27|DELIVER IN PERSON|AIR|yly carefully express deposits. furious| +68431|560123|22635|2|21|24845.10|0.08|0.07|R|F|1994-07-19|1994-06-23|1994-07-30|DELIVER IN PERSON|REG AIR|ve the carefully unusual pac| +68431|974177|24178|3|22|27524.86|0.08|0.04|A|F|1994-05-10|1994-05-22|1994-06-04|DELIVER IN PERSON|REG AIR| the regular instructions| +68431|989625|27183|4|10|17145.80|0.08|0.06|A|F|1994-07-16|1994-06-07|1994-08-11|COLLECT COD|SHIP|ular pinto beans boost slyly along the care| +68456|248610|23619|1|31|48316.60|0.10|0.06|N|O|1997-04-11|1997-05-13|1997-05-07|DELIVER IN PERSON|RAIL|kly after the furious| +68456|378319|28320|2|41|57289.30|0.06|0.02|N|O|1997-06-26|1997-04-13|1997-07-20|TAKE BACK RETURN|FOB|efully final platelets. idly specia| +68456|406136|6137|3|16|16673.76|0.03|0.03|N|O|1997-06-14|1997-05-21|1997-07-13|COLLECT COD|FOB|cajole fluffily carefully | +68456|910969|23488|4|38|75236.96|0.05|0.05|N|O|1997-05-08|1997-04-21|1997-05-18|NONE|MAIL|uests boost slyly across the special requ| +68456|650603|604|5|4|6214.28|0.06|0.00|N|O|1997-03-06|1997-05-30|1997-03-17|COLLECT COD|SHIP|nic package| +68457|897520|47521|1|43|65251.64|0.04|0.08|A|F|1994-11-23|1994-11-14|1994-12-13|NONE|REG AIR|. slyly regular ideas nag s| +68457|616215|28728|2|29|32804.22|0.03|0.06|A|F|1994-12-13|1994-12-08|1995-01-08|TAKE BACK RETURN|RAIL|sly expres| +68458|713850|38879|1|46|85735.72|0.03|0.08|R|F|1993-07-05|1993-07-24|1993-07-20|TAKE BACK RETURN|AIR|sual pinto beans mold about the s| +68458|672635|10175|2|2|3215.20|0.08|0.00|A|F|1993-07-27|1993-08-03|1993-08-08|DELIVER IN PERSON|MAIL| haggle carefully silent| +68459|343484|5991|1|33|50406.51|0.06|0.06|A|F|1995-03-18|1995-03-18|1995-03-28|DELIVER IN PERSON|SHIP|are quickly slyly express dep| +68459|926862|39381|2|24|45331.68|0.05|0.08|A|F|1995-02-23|1995-05-02|1995-03-04|DELIVER IN PERSON|MAIL|hely regular packages cajole bli| +68459|762074|12075|3|45|51121.80|0.07|0.02|A|F|1995-05-08|1995-04-06|1995-06-05|COLLECT COD|TRUCK|ironic deposits. fluffily regular theodol| +68459|169753|32257|4|15|27341.25|0.02|0.02|R|F|1995-05-11|1995-03-20|1995-05-19|TAKE BACK RETURN|REG AIR|olites could have to kindle reg| +68459|26756|14257|5|23|38703.25|0.04|0.03|A|F|1995-03-07|1995-05-04|1995-03-09|NONE|TRUCK|lly furiously specia| +68459|673375|23376|6|14|18876.76|0.01|0.07|A|F|1995-02-14|1995-04-07|1995-03-01|COLLECT COD|SHIP|ffily behind the slyly fina| +68460|468260|43279|1|41|50357.84|0.07|0.00|N|O|1997-05-04|1997-05-23|1997-05-12|NONE|MAIL|sual requests lose | +68460|40620|40621|2|41|63985.42|0.10|0.04|N|O|1997-05-07|1997-05-26|1997-05-11|TAKE BACK RETURN|MAIL|kly bold deposits| +68460|684064|46578|3|9|9432.27|0.08|0.04|N|O|1997-06-29|1997-05-24|1997-07-23|DELIVER IN PERSON|SHIP| carefully final | +68461|490213|2723|1|34|40908.46|0.07|0.06|N|O|1997-10-09|1997-10-15|1997-10-10|NONE|RAIL|unusual in| +68462|872224|9776|1|32|38277.76|0.06|0.07|N|O|1998-06-13|1998-07-19|1998-06-27|NONE|REG AIR|ccounts boost slyly through the slyly| +68462|465000|27510|2|2|1929.96|0.04|0.07|N|O|1998-07-10|1998-07-06|1998-07-31|TAKE BACK RETURN|SHIP|ic pinto beans haggle above | +68462|245579|8084|3|12|18294.72|0.08|0.03|N|O|1998-08-25|1998-06-21|1998-09-18|TAKE BACK RETURN|SHIP|leep among th| +68462|432577|45086|4|8|12076.40|0.06|0.03|N|O|1998-05-11|1998-07-29|1998-05-26|COLLECT COD|AIR|ly special accounts ha| +68463|884889|22441|1|46|86196.64|0.03|0.01|R|F|1994-09-08|1994-07-02|1994-09-20|DELIVER IN PERSON|TRUCK|posits snooze care| +68488|418214|18215|1|48|54345.12|0.05|0.03|N|O|1995-07-10|1995-07-26|1995-08-08|DELIVER IN PERSON|TRUCK|pecial, unusual excuses play | +68489|111639|49146|1|13|21458.19|0.00|0.08|N|O|1997-09-07|1997-08-07|1997-09-21|NONE|TRUCK|fluffily fluffily unusual dependencies. ir| +68490|322607|10126|1|25|40739.75|0.09|0.01|A|F|1993-10-27|1993-10-21|1993-11-20|TAKE BACK RETURN|FOB|l deposits nag quic| +68490|46388|33889|2|41|54709.58|0.08|0.07|A|F|1993-08-26|1993-08-27|1993-09-04|TAKE BACK RETURN|TRUCK|ies-- blithely i| +68490|637095|49608|3|48|49538.88|0.06|0.01|A|F|1993-10-24|1993-10-10|1993-10-26|DELIVER IN PERSON|TRUCK|mong the quickl| +68490|643197|18222|4|16|18242.56|0.03|0.05|R|F|1993-07-30|1993-09-18|1993-08-29|COLLECT COD|RAIL|kly even frays along the caref| +68490|210717|48230|5|26|42320.20|0.05|0.03|A|F|1993-10-07|1993-10-22|1993-10-31|TAKE BACK RETURN|SHIP| carefully. regular | +68490|514079|26590|6|34|37163.70|0.06|0.03|A|F|1993-10-22|1993-08-29|1993-10-27|DELIVER IN PERSON|RAIL|e slyly bold instructions are above t| +68491|14608|27109|1|6|9135.60|0.08|0.04|N|O|1995-07-11|1995-08-10|1995-07-19|NONE|MAIL|thely alongside of the ironi| +68491|514143|1674|2|39|45127.68|0.05|0.05|N|O|1995-07-18|1995-09-18|1995-08-03|COLLECT COD|AIR|counts. ironic sentiments cajole. requests| +68491|198586|36096|3|44|74121.52|0.02|0.08|N|O|1995-08-06|1995-09-03|1995-09-01|NONE|TRUCK|fully final the| +68492|256003|43519|1|1|958.99|0.10|0.03|R|F|1993-08-25|1993-09-01|1993-08-31|COLLECT COD|SHIP|ackages wak| +68492|631926|31927|2|6|11147.34|0.06|0.02|R|F|1993-08-28|1993-07-31|1993-09-17|NONE|TRUCK|uests promise. slyly unusual depo| +68492|766664|41695|3|38|65763.94|0.10|0.03|A|F|1993-08-19|1993-08-30|1993-08-21|COLLECT COD|RAIL| furiously above the | +68493|255900|43416|1|18|33406.02|0.10|0.04|A|F|1992-10-29|1992-11-12|1992-10-30|TAKE BACK RETURN|AIR|blithely final depos| +68493|906743|44298|2|2|3499.40|0.09|0.04|A|F|1992-11-14|1992-12-01|1992-12-12|DELIVER IN PERSON|REG AIR|ts boost carefully furiously regular i| +68494|117059|17060|1|28|30129.40|0.03|0.08|A|F|1992-05-22|1992-04-09|1992-06-16|NONE|AIR|regular instructions.| +68494|399475|24490|2|23|36212.58|0.04|0.08|R|F|1992-05-24|1992-04-23|1992-06-02|COLLECT COD|AIR|tes breach carefully among the acco| +68494|963616|38655|3|18|30232.26|0.07|0.03|A|F|1992-04-09|1992-05-12|1992-05-01|NONE|AIR|equests int| +68494|491992|41993|4|26|51583.22|0.04|0.02|A|F|1992-03-01|1992-03-25|1992-03-27|DELIVER IN PERSON|MAIL| sleep furiously instructi| +68495|317591|30098|1|22|35388.76|0.07|0.00|A|F|1994-05-21|1994-04-11|1994-06-14|TAKE BACK RETURN|FOB| furiously ironic| +68495|744339|19368|2|50|69165.00|0.03|0.00|R|F|1994-04-08|1994-05-08|1994-05-04|NONE|RAIL|y pending ideas. blithely fi| +68495|90599|15602|3|36|57225.24|0.03|0.02|R|F|1994-05-13|1994-03-24|1994-06-10|TAKE BACK RETURN|SHIP| quickly. even platelet| +68495|690961|3475|4|11|21471.23|0.02|0.04|R|F|1994-05-12|1994-04-17|1994-05-18|DELIVER IN PERSON|MAIL|mas wake. doggedly final requests cajo| +68495|968698|43737|5|3|5299.95|0.08|0.07|R|F|1994-02-22|1994-05-04|1994-02-28|COLLECT COD|FOB|y regular requests cajole. furi| +68520|49269|11770|1|39|47512.14|0.02|0.04|N|O|1997-07-28|1997-07-02|1997-08-02|TAKE BACK RETURN|AIR|instructions. final deposits haggle close| +68520|61808|24310|2|32|56633.60|0.00|0.08|N|O|1997-08-31|1997-07-10|1997-09-23|COLLECT COD|FOB|ar, bold theodolites hinder ac| +68520|791261|28807|3|43|58145.89|0.00|0.04|N|O|1997-05-20|1997-07-17|1997-06-03|TAKE BACK RETURN|SHIP|hely. caref| +68520|713555|13556|4|27|42350.04|0.08|0.05|N|O|1997-07-11|1997-07-31|1997-08-10|TAKE BACK RETURN|TRUCK|ffily among the fluff| +68520|708690|8691|5|41|69645.06|0.04|0.07|N|O|1997-06-23|1997-06-20|1997-07-06|DELIVER IN PERSON|SHIP| bold dependencies | +68520|941304|28859|6|17|22869.42|0.07|0.02|N|O|1997-07-23|1997-07-19|1997-07-30|NONE|RAIL|efully regular accounts use furiously. f| +68521|384572|47080|1|20|33131.20|0.02|0.05|A|F|1994-08-03|1994-06-15|1994-08-16|COLLECT COD|SHIP|tions believe. slyly final Tire| +68521|491578|16597|2|42|65921.10|0.00|0.01|A|F|1994-07-04|1994-07-22|1994-07-20|TAKE BACK RETURN|TRUCK|ial, final deposits after the qui| +68521|946146|33701|3|11|13113.10|0.05|0.04|A|F|1994-08-13|1994-07-24|1994-08-16|TAKE BACK RETURN|AIR|ng accounts sleep | +68521|872248|47283|4|23|28064.60|0.03|0.05|A|F|1994-07-11|1994-06-21|1994-08-07|TAKE BACK RETURN|AIR|onic, unusual packages. deposits lose | +68521|870406|7958|5|26|35785.36|0.02|0.06|A|F|1994-07-27|1994-06-18|1994-08-26|COLLECT COD|AIR| deposits. un| +68522|382589|20111|1|33|55161.81|0.08|0.07|N|O|1998-09-20|1998-08-28|1998-09-24|TAKE BACK RETURN|SHIP|the ironic requests haggle slyly even ins| +68522|164644|39651|2|7|11960.48|0.04|0.08|N|O|1998-08-17|1998-10-02|1998-08-21|NONE|MAIL|yly. ironic foxes wake final pac| +68522|161350|23854|3|42|59276.70|0.03|0.05|N|O|1998-09-15|1998-08-29|1998-09-23|TAKE BACK RETURN|AIR|ruthlessly regular warth| +68522|796009|21040|4|35|38673.95|0.09|0.02|N|O|1998-10-08|1998-08-25|1998-10-11|COLLECT COD|REG AIR|quests above the fluffily ironic | +68522|517438|42459|5|20|29108.20|0.07|0.08|N|O|1998-07-28|1998-09-17|1998-07-29|TAKE BACK RETURN|AIR|ch according to the f| +68523|857898|7899|1|48|89080.80|0.03|0.03|R|F|1992-05-21|1992-04-13|1992-05-26|TAKE BACK RETURN|TRUCK|ronic depe| +68523|687180|24720|2|45|52521.75|0.09|0.00|A|F|1992-05-16|1992-04-13|1992-06-04|TAKE BACK RETURN|TRUCK|gular depo| +68523|427933|2950|3|50|93045.50|0.05|0.04|R|F|1992-04-03|1992-04-12|1992-04-22|DELIVER IN PERSON|RAIL|ges wake after th| +68523|253539|3540|4|39|58208.28|0.01|0.02|R|F|1992-04-30|1992-04-07|1992-05-12|TAKE BACK RETURN|RAIL|kages are above the s| +68523|222888|47897|5|45|81489.15|0.01|0.05|R|F|1992-03-18|1992-03-29|1992-03-30|DELIVER IN PERSON|MAIL|ending depend| +68523|64959|14960|6|15|28859.25|0.08|0.01|A|F|1992-02-07|1992-03-06|1992-02-10|DELIVER IN PERSON|REG AIR|gside of the| +68523|750869|870|7|48|92151.84|0.01|0.02|R|F|1992-02-07|1992-03-30|1992-02-21|DELIVER IN PERSON|REG AIR| against the bold accounts. regular instru| +68524|854504|17022|1|14|20418.44|0.05|0.02|N|O|1995-08-29|1995-08-18|1995-08-30|DELIVER IN PERSON|AIR|to beans. slyly ironic foxes across the fur| +68524|648210|48211|2|21|24321.78|0.07|0.01|N|O|1995-07-02|1995-07-03|1995-07-12|COLLECT COD|FOB|lar deposits. quickly final requests n| +68524|451056|1057|3|25|25175.75|0.02|0.03|N|O|1995-08-12|1995-08-19|1995-08-17|COLLECT COD|TRUCK|s haggle slyly above the blithely re| +68524|885116|22668|4|16|17617.12|0.06|0.01|N|F|1995-06-03|1995-07-02|1995-07-03|COLLECT COD|TRUCK|y even theodolites hagg| +68524|128923|3928|5|30|58557.60|0.00|0.03|N|O|1995-07-29|1995-08-13|1995-08-04|NONE|MAIL|thely even warthogs maintain| +68524|800337|37886|6|20|24745.80|0.10|0.01|N|O|1995-09-17|1995-08-11|1995-09-28|TAKE BACK RETURN|FOB|e fluffily even dependencies | +68524|252951|2952|7|20|38078.80|0.01|0.05|N|O|1995-09-02|1995-08-17|1995-09-17|DELIVER IN PERSON|REG AIR|sts. silent packag| +68525|339302|14315|1|21|28167.09|0.06|0.06|N|O|1997-07-26|1997-05-26|1997-07-27|DELIVER IN PERSON|TRUCK|osits integrate ideas. deposits was | +68525|648437|23462|2|46|63728.40|0.03|0.08|N|O|1997-04-07|1997-07-04|1997-04-15|TAKE BACK RETURN|TRUCK|lly dogged, careful courts.| +68525|280498|43004|3|18|26612.64|0.05|0.06|N|O|1997-06-19|1997-05-26|1997-06-24|TAKE BACK RETURN|FOB|ding, final requests are furious| +68525|324854|49867|4|26|48849.84|0.06|0.02|N|O|1997-06-24|1997-05-07|1997-07-07|TAKE BACK RETURN|REG AIR|sits. ironic deposits after the carefully | +68525|813073|38106|5|16|15776.48|0.04|0.05|N|O|1997-04-11|1997-06-11|1997-04-21|DELIVER IN PERSON|MAIL|latelets. carefully unusual | +68526|69173|6677|1|41|46828.97|0.02|0.07|R|F|1993-11-29|1993-11-13|1993-12-19|COLLECT COD|MAIL|efully after the slyly pending platelets. r| +68526|579151|29152|2|45|55355.85|0.03|0.02|A|F|1993-09-16|1993-12-07|1993-10-02|TAKE BACK RETURN|FOB|e fluffily against the pinto beans.| +68526|786462|36463|3|8|12387.44|0.10|0.04|A|F|1993-12-20|1993-11-05|1993-12-29|COLLECT COD|AIR|s. fluffily bold platelet| +68526|56230|31233|4|46|54566.58|0.08|0.02|R|F|1993-11-07|1993-12-14|1993-12-06|NONE|SHIP|carefully even deposits cajole slyly afte| +68526|47057|9558|5|40|40162.00|0.02|0.02|R|F|1994-01-03|1993-11-13|1994-01-08|TAKE BACK RETURN|REG AIR| the always exp| +68526|876403|38921|6|5|6896.80|0.04|0.08|A|F|1993-10-18|1993-12-05|1993-11-09|TAKE BACK RETURN|TRUCK|accounts was above | +68527|413026|13027|1|46|43194.00|0.04|0.07|N|O|1995-07-11|1995-07-27|1995-08-06|NONE|AIR|equests. fluffily express requests de| +68527|712832|375|2|25|46120.00|0.09|0.07|N|O|1995-08-19|1995-07-08|1995-08-23|NONE|RAIL|s. fluffily final asymptotes promise. | +68527|564489|2023|3|2|3106.92|0.00|0.01|N|O|1995-09-07|1995-07-02|1995-09-28|COLLECT COD|TRUCK| haggle slyly| +68527|360829|48351|4|3|5669.43|0.06|0.05|N|O|1995-08-01|1995-08-11|1995-08-12|COLLECT COD|MAIL|y even, special accounts. carefully expre| +68527|440686|40687|5|19|30906.54|0.01|0.08|N|O|1995-09-06|1995-08-09|1995-09-12|TAKE BACK RETURN|RAIL|ely regula| +68527|598916|11428|6|4|8059.56|0.04|0.04|N|O|1995-07-24|1995-07-17|1995-07-26|DELIVER IN PERSON|RAIL|ic packages. fluffily ir| +68552|319843|32350|1|35|65199.05|0.08|0.00|N|O|1996-01-31|1996-01-07|1996-02-11|NONE|FOB|sly regular asymptotes. regular, stealth| +68552|600135|12648|2|21|21737.10|0.00|0.02|N|O|1995-11-07|1995-12-25|1995-11-30|TAKE BACK RETURN|FOB|ts. platelets haggle carefully expres| +68552|452647|2648|3|10|15996.20|0.01|0.08|N|O|1995-12-15|1995-12-28|1996-01-10|COLLECT COD|SHIP|he furiously bold requests. silentl| +68552|632179|19716|4|28|31111.92|0.09|0.04|N|O|1996-01-16|1996-01-22|1996-02-04|TAKE BACK RETURN|REG AIR|even depths are| +68552|17556|42557|5|39|57468.45|0.02|0.00|N|O|1995-11-03|1995-12-11|1995-11-30|TAKE BACK RETURN|TRUCK|uests. fluffily sly accounts haggl| +68552|58442|8443|6|2|2800.88|0.06|0.07|N|O|1995-11-19|1996-01-28|1995-12-13|COLLECT COD|TRUCK|uctions sleep qu| +68552|221857|21858|7|45|80047.80|0.08|0.00|N|O|1996-02-06|1996-01-07|1996-02-07|NONE|MAIL|s; bold deposits haggle carefully. f| +68553|740891|40892|1|28|54092.08|0.09|0.05|R|F|1994-01-22|1993-12-19|1994-01-30|COLLECT COD|TRUCK|ly silent dep| +68553|148387|48388|2|31|44496.78|0.06|0.01|R|F|1993-10-02|1993-10-30|1993-10-20|TAKE BACK RETURN|FOB|nal, pending c| +68553|937954|25509|3|28|55773.48|0.03|0.06|R|F|1993-09-28|1993-12-17|1993-10-20|DELIVER IN PERSON|AIR|ounts play blithely alongside of the blith| +68553|190040|15047|4|22|24860.88|0.07|0.03|A|F|1993-10-25|1993-12-21|1993-11-11|COLLECT COD|MAIL|onic, final re| +68554|127448|2453|1|15|22131.60|0.08|0.00|N|O|1997-03-09|1997-03-29|1997-03-23|DELIVER IN PERSON|SHIP|nag. carefully ironic theodolites nag | +68554|14515|39516|2|27|38596.77|0.03|0.08|N|O|1997-03-29|1997-03-12|1997-04-25|NONE|REG AIR|ole among the ac| +68554|944800|44801|3|25|46119.00|0.07|0.05|N|O|1997-01-25|1997-03-05|1997-02-15|NONE|AIR|unts. slyly final requests sleep regular | +68555|254173|16679|1|27|30433.32|0.02|0.00|R|F|1992-10-17|1992-09-06|1992-11-16|DELIVER IN PERSON|RAIL|s. carefully bold p| +68555|869560|19561|2|34|52003.68|0.08|0.01|R|F|1992-07-04|1992-08-01|1992-07-29|NONE|FOB|ously. ironic, pending deco| +68555|678899|3926|3|5|9389.30|0.10|0.03|R|F|1992-09-23|1992-08-04|1992-09-30|COLLECT COD|RAIL|was ironically reg| +68556|452184|2185|1|19|21587.04|0.03|0.08|N|O|1998-04-19|1998-05-29|1998-05-14|DELIVER IN PERSON|FOB|regular forges are against the carefully un| +68556|856297|43849|2|31|38850.75|0.10|0.04|N|O|1998-04-10|1998-05-28|1998-05-02|DELIVER IN PERSON|AIR|e unusual, express excus| +68556|779684|4715|3|2|3527.30|0.04|0.08|N|O|1998-05-27|1998-05-06|1998-06-15|TAKE BACK RETURN|TRUCK|efully spec| +68556|146180|46181|4|25|30654.50|0.04|0.04|N|O|1998-05-12|1998-06-08|1998-05-24|NONE|RAIL|ses boost carefully. iro| +68556|841935|29484|5|2|3753.78|0.07|0.04|N|O|1998-05-29|1998-04-19|1998-06-01|NONE|SHIP|sual requests sleep after the regular, sil| +68556|384927|9942|6|38|76452.58|0.02|0.01|N|O|1998-06-20|1998-05-05|1998-07-10|TAKE BACK RETURN|MAIL| requests. close requests across the | +68556|467770|5298|7|28|48657.00|0.03|0.03|N|O|1998-05-12|1998-05-23|1998-05-14|TAKE BACK RETURN|SHIP| the packages. regular, ironic depths us| +68557|806559|44108|1|13|19051.63|0.09|0.06|N|O|1995-06-29|1995-06-01|1995-07-15|TAKE BACK RETURN|MAIL|y ironic requests| +68557|829461|4494|2|36|50055.12|0.01|0.03|R|F|1995-05-27|1995-05-16|1995-06-03|COLLECT COD|RAIL|se. blithely regular pack| +68558|858957|46509|1|30|57477.30|0.08|0.00|N|O|1995-12-11|1995-12-10|1995-12-18|COLLECT COD|AIR|sublate above the slyly regular deposi| +68558|487271|49781|2|6|7549.50|0.00|0.07|N|O|1995-11-27|1995-11-13|1995-12-17|DELIVER IN PERSON|TRUCK| carefully regular de| +68558|553303|15815|3|40|54251.20|0.01|0.03|N|O|1995-10-20|1995-11-14|1995-10-27|COLLECT COD|FOB|deposits after the carefully un| +68558|352601|27616|4|41|67797.19|0.02|0.03|N|O|1995-11-16|1995-12-19|1995-12-02|NONE|FOB|ouches. bold accounts grow blithely. final | +68559|906463|6464|1|40|58776.80|0.01|0.03|R|F|1993-08-24|1993-06-26|1993-09-04|DELIVER IN PERSON|SHIP|ickly at the quickly even deposi| +68584|248611|11116|1|35|54586.00|0.00|0.02|N|O|1997-03-27|1997-05-05|1997-04-14|NONE|TRUCK| the carefully bold i| +68584|401180|1181|2|35|37840.60|0.09|0.00|N|O|1997-04-16|1997-05-19|1997-04-21|COLLECT COD|REG AIR|gular, regular| +68584|628015|40528|3|6|5657.88|0.07|0.05|N|O|1997-03-30|1997-04-29|1997-04-04|TAKE BACK RETURN|REG AIR|ic pinto beans haggle slyly special| +68584|34115|46616|4|2|2098.22|0.00|0.01|N|O|1997-03-11|1997-04-15|1997-03-27|DELIVER IN PERSON|AIR|ajole quietly. enticingly re| +68584|367639|17640|5|17|29012.54|0.09|0.02|N|O|1997-04-13|1997-04-17|1997-04-29|TAKE BACK RETURN|RAIL| furiously bold accounts cajole theodol| +68585|314844|27351|1|17|31600.11|0.03|0.03|A|F|1993-12-09|1993-11-22|1994-01-01|TAKE BACK RETURN|TRUCK|leep fluffily blithely final fo| +68585|580053|42565|2|32|36256.96|0.05|0.03|R|F|1993-12-25|1993-12-08|1994-01-23|COLLECT COD|MAIL|ites use blithely car| +68585|949583|12102|3|36|58771.44|0.08|0.07|R|F|1993-10-06|1993-11-17|1993-10-18|DELIVER IN PERSON|AIR|lly regular deposits. pinto| +68585|628490|41003|4|49|69504.54|0.03|0.06|R|F|1993-12-20|1993-11-24|1994-01-14|DELIVER IN PERSON|MAIL|ffily final orbi| +68585|22490|9991|5|34|48024.66|0.09|0.02|R|F|1993-12-09|1993-11-25|1994-01-02|DELIVER IN PERSON|REG AIR|ss instructions. | +68585|987997|517|6|35|72973.25|0.10|0.08|R|F|1993-11-14|1993-11-26|1993-11-30|NONE|REG AIR|regular accounts cajole sl| +68585|249521|37034|7|5|7352.55|0.09|0.00|R|F|1993-12-06|1993-12-20|1994-01-04|COLLECT COD|SHIP|ts. quietly ironic dependencies haggle | +68586|698985|24012|1|40|79358.00|0.06|0.02|A|F|1995-01-25|1995-02-08|1995-02-23|COLLECT COD|MAIL|ar accounts against the silen| +68586|834071|9104|2|47|47236.41|0.09|0.05|R|F|1995-01-17|1995-01-18|1995-02-05|COLLECT COD|RAIL|s. blithely ruthless requests are care| +68586|221539|34044|3|21|30670.92|0.01|0.08|R|F|1995-02-06|1995-03-02|1995-02-14|DELIVER IN PERSON|REG AIR|ial ideas could haggl| +68586|389353|1861|4|10|14423.40|0.02|0.02|A|F|1995-01-18|1995-02-05|1995-02-01|NONE|MAIL|lithely final packages are | +68586|844997|44998|5|36|69910.20|0.05|0.01|R|F|1994-12-29|1995-01-28|1995-01-19|COLLECT COD|RAIL|iously about the slyl| +68586|863928|13929|6|26|49188.88|0.00|0.05|A|F|1995-02-12|1995-01-15|1995-03-04|NONE|RAIL|ar foxes sleep carefully. slyly ironi| +68586|26883|39384|7|35|63345.80|0.09|0.07|R|F|1995-02-02|1995-01-21|1995-02-21|DELIVER IN PERSON|TRUCK|olites. slyly re| +68587|820015|45048|1|46|43008.62|0.08|0.00|N|O|1995-12-09|1996-01-04|1996-01-01|COLLECT COD|AIR|s. requests nod even account| +68587|989955|2475|2|17|34763.47|0.07|0.07|N|O|1996-01-13|1996-01-03|1996-01-23|DELIVER IN PERSON|RAIL|counts-- quickly regular re| +68587|162848|25352|3|44|84076.96|0.06|0.02|N|O|1995-10-18|1995-12-25|1995-10-19|TAKE BACK RETURN|SHIP|y final excuse| +68587|974754|49793|4|36|65833.56|0.04|0.01|N|O|1995-12-10|1995-11-19|1995-12-26|TAKE BACK RETURN|REG AIR|sits nag slyly about th| +68588|565549|28061|1|20|32290.40|0.05|0.05|N|O|1997-09-24|1997-07-17|1997-09-28|COLLECT COD|TRUCK|grouches. slyly ironic | +68588|174741|49748|2|31|56287.94|0.01|0.01|N|O|1997-10-01|1997-08-12|1997-10-18|COLLECT COD|RAIL|aters cajole slyly. car| +68589|585398|35399|1|20|29667.40|0.05|0.01|N|O|1997-07-25|1997-06-14|1997-08-17|TAKE BACK RETURN|REG AIR|cial packages along | +68589|768831|31347|2|34|64593.20|0.02|0.00|N|O|1997-06-25|1997-06-11|1997-07-16|DELIVER IN PERSON|REG AIR|ironic theodolites | +68590|901610|26647|1|46|74132.22|0.01|0.08|N|O|1997-11-22|1998-01-05|1997-11-28|TAKE BACK RETURN|AIR|oost about t| +68590|356031|43553|2|23|25001.46|0.08|0.08|N|O|1997-12-21|1998-02-01|1998-01-14|DELIVER IN PERSON|REG AIR|nal accounts boost beneath the excuses. f| +68590|797973|23004|3|47|97334.18|0.01|0.04|N|O|1997-11-27|1997-12-15|1997-11-29|NONE|REG AIR| beans. accounts integrate fluffily| +68590|518333|18334|4|16|21620.96|0.09|0.03|N|O|1998-02-25|1998-01-04|1998-03-01|NONE|RAIL|p about the fu| +68591|470702|20703|1|45|75270.60|0.01|0.04|N|O|1996-12-20|1996-10-04|1997-01-01|COLLECT COD|AIR|unusual accounts haggle bl| +68591|82820|45322|2|3|5408.46|0.10|0.05|N|O|1996-11-10|1996-10-24|1996-11-27|NONE|TRUCK|ackages. enticingly even theodolite| +68591|946563|46564|3|44|70818.88|0.05|0.06|N|O|1996-11-11|1996-11-01|1996-11-26|NONE|MAIL|onic packag| +68591|875111|37629|4|43|46701.01|0.02|0.06|N|O|1996-09-27|1996-10-27|1996-10-07|NONE|RAIL|furiously regular foxes are quickly alon| +68591|989405|1925|5|47|70234.92|0.04|0.00|N|O|1996-11-14|1996-10-21|1996-11-21|DELIVER IN PERSON|REG AIR| quickly. silent gi| +68591|921988|34507|6|23|46228.62|0.06|0.00|N|O|1996-09-18|1996-10-20|1996-10-16|COLLECT COD|AIR|regular requests. blithely| +68616|785746|23292|1|2|3663.42|0.04|0.02|N|O|1996-09-11|1996-06-23|1996-09-18|NONE|MAIL|eans haggle over the express instru| +68616|27468|27469|2|43|60004.78|0.03|0.00|N|O|1996-05-31|1996-08-19|1996-06-24|TAKE BACK RETURN|FOB|ar packages are fur| +68616|648957|36494|3|36|68613.12|0.02|0.01|N|O|1996-09-12|1996-07-25|1996-09-19|TAKE BACK RETURN|RAIL| fluffily. bold instructions doze blit| +68616|9639|22140|4|13|20132.19|0.03|0.02|N|O|1996-08-13|1996-08-08|1996-08-29|NONE|AIR|the quickly thin depo| +68617|200464|12969|1|19|25924.55|0.02|0.01|A|F|1993-10-05|1993-10-13|1993-10-29|TAKE BACK RETURN|TRUCK|eposits wake carefully above th| +68618|743656|18685|1|21|35692.02|0.00|0.00|N|O|1998-01-03|1997-12-21|1998-01-06|COLLECT COD|AIR|silently furious pinto beans affi| +68618|611812|11813|2|33|56884.74|0.01|0.07|N|O|1998-01-08|1997-12-31|1998-01-31|DELIVER IN PERSON|AIR|ages. slyly special packages nag blithely| +68618|716309|41338|3|36|47709.72|0.05|0.00|N|O|1997-12-14|1997-12-06|1998-01-13|DELIVER IN PERSON|RAIL|thely regula| +68618|999136|49137|4|46|56814.14|0.08|0.08|N|O|1997-11-30|1998-01-10|1997-12-30|NONE|AIR|ding platelets boost carefully. da| +68618|471465|8993|5|2|2872.88|0.07|0.06|N|O|1998-01-29|1997-12-10|1998-02-28|DELIVER IN PERSON|RAIL|usly silent deposits. slyly exp| +68618|906216|18735|6|50|61108.50|0.08|0.06|N|O|1998-02-05|1998-01-04|1998-02-17|NONE|FOB|y regular notornis. deposits above t| +68619|617053|29566|1|24|23280.48|0.02|0.04|N|O|1996-05-11|1996-05-26|1996-06-03|DELIVER IN PERSON|AIR|beside the unusual sheaves. iron| +68619|809460|21977|2|39|53407.38|0.04|0.04|N|O|1996-04-23|1996-07-15|1996-04-27|DELIVER IN PERSON|REG AIR|equests boost. carefully| +68619|581746|44258|3|28|51176.16|0.08|0.06|N|O|1996-07-15|1996-07-14|1996-07-26|TAKE BACK RETURN|TRUCK|ngside of the enticingly express pinto be| +68619|397378|9886|4|8|11802.88|0.06|0.00|N|O|1996-06-20|1996-06-09|1996-06-27|NONE|FOB|ts are slyly regular dugouts. special | +68620|233938|46443|1|49|91724.08|0.09|0.06|R|F|1992-12-31|1992-12-13|1993-01-19|COLLECT COD|AIR|theodolites. express pinto be| +68620|781798|31799|2|38|71430.88|0.07|0.06|A|F|1992-12-08|1992-12-09|1992-12-14|DELIVER IN PERSON|RAIL|uriously ironic theodolites along| +68620|662987|12988|3|25|48748.75|0.03|0.01|R|F|1992-12-04|1992-12-30|1992-12-24|DELIVER IN PERSON|AIR| beans sleep fluffily slyly silent dolphin| +68620|820618|20619|4|31|47695.67|0.04|0.02|R|F|1993-02-10|1993-01-24|1993-02-25|NONE|AIR|en accounts eat carefully abou| +68620|119554|7061|5|23|36191.65|0.07|0.00|A|F|1993-02-17|1992-12-23|1993-03-10|COLLECT COD|SHIP|posits wake blithely by the bo| +68620|338201|25720|6|1|1239.19|0.04|0.06|R|F|1993-01-07|1993-02-06|1993-01-18|DELIVER IN PERSON|MAIL|lar accounts | +68621|418140|30649|1|22|23278.64|0.07|0.03|R|F|1993-08-17|1993-09-04|1993-08-30|NONE|AIR|furiously final packages ab| +68621|672812|10352|2|21|37480.38|0.08|0.01|A|F|1993-08-12|1993-09-06|1993-08-23|COLLECT COD|FOB|e the furiously even instructi| +68621|944487|32042|3|2|3062.88|0.01|0.08|A|F|1993-07-11|1993-07-14|1993-07-18|NONE|RAIL|ly around the | +68621|988914|38915|4|10|20028.70|0.05|0.07|R|F|1993-08-02|1993-09-04|1993-08-12|DELIVER IN PERSON|MAIL|enticingly pending platelets use ca| +68621|668001|18002|5|22|21317.34|0.06|0.03|R|F|1993-06-14|1993-08-29|1993-07-05|TAKE BACK RETURN|REG AIR|. quickly ironic instru| +68622|169637|44644|1|19|32425.97|0.03|0.08|N|O|1995-12-30|1996-01-01|1996-01-23|DELIVER IN PERSON|SHIP|he carefully special dolph| +68622|75227|25228|2|41|49291.02|0.09|0.02|N|O|1996-01-30|1996-01-15|1996-02-25|TAKE BACK RETURN|REG AIR|ld hockey players boost. regular,| +68622|331288|18807|3|23|30343.21|0.01|0.01|N|O|1995-12-06|1996-01-13|1995-12-18|COLLECT COD|AIR|riously regular pains. slyly regu| +68622|956904|6905|4|8|15686.88|0.10|0.05|N|O|1996-02-22|1996-01-05|1996-03-14|NONE|SHIP|. blithely bold asymptotes after the u| +68622|681915|44429|5|11|20865.68|0.01|0.01|N|O|1995-12-25|1996-01-09|1996-01-09|DELIVER IN PERSON|SHIP|rding to the carefull| +68622|931669|6706|6|10|17006.20|0.04|0.05|N|O|1995-12-09|1995-12-21|1995-12-10|COLLECT COD|FOB|ke carefully. grouches cajole blith| +68622|554075|16587|7|35|39516.75|0.07|0.00|N|O|1996-02-03|1996-02-10|1996-03-01|DELIVER IN PERSON|MAIL|e boldly special | +68623|333644|33645|1|4|6710.52|0.06|0.04|A|F|1995-01-27|1995-01-13|1995-02-23|NONE|TRUCK|tes. final| +68623|548041|35572|2|37|40293.74|0.10|0.01|A|F|1994-12-29|1995-03-07|1995-01-24|DELIVER IN PERSON|RAIL|ckly regular accounts. fluf| +68623|917728|17729|3|25|43642.00|0.04|0.07|R|F|1994-12-25|1995-03-02|1994-12-29|DELIVER IN PERSON|RAIL|uests wake instructi| +68623|240977|15986|4|9|17261.64|0.02|0.07|A|F|1995-03-06|1995-02-08|1995-03-09|DELIVER IN PERSON|RAIL|nal deposits. regular, final asympt| +68623|96684|46685|5|20|33613.60|0.07|0.00|A|F|1995-03-18|1995-01-24|1995-04-11|DELIVER IN PERSON|REG AIR|rate. carefully even packages use bold de| +68648|812103|24620|1|42|42632.52|0.10|0.00|R|F|1995-04-24|1995-06-21|1995-05-11|DELIVER IN PERSON|FOB|en accounts| +68649|52388|27391|1|19|25467.22|0.09|0.00|R|F|1995-01-30|1995-02-20|1995-02-25|COLLECT COD|FOB|ular foxes. slyly busy asymptotes are | +68650|765620|15621|1|25|42139.75|0.10|0.03|N|O|1996-12-01|1997-01-02|1996-12-22|COLLECT COD|MAIL|equests haggle carefully| +68650|762655|37686|2|6|10305.72|0.05|0.07|N|O|1997-02-25|1997-02-02|1997-03-01|NONE|FOB| among the theodolites ma| +68650|940810|40811|3|20|37015.40|0.05|0.06|N|O|1996-12-29|1996-12-16|1997-01-17|DELIVER IN PERSON|SHIP|osits. evenly pending accoun| +68650|192959|30469|4|23|47194.85|0.01|0.05|N|O|1997-01-16|1997-01-27|1997-01-26|TAKE BACK RETURN|FOB|essly ironic courts cajole f| +68651|986607|24165|1|50|84678.00|0.00|0.08|N|O|1996-11-26|1997-02-06|1996-12-06|NONE|FOB|quickly bold deposits. f| +68651|899471|37023|2|7|10293.01|0.01|0.01|N|O|1997-03-08|1997-02-11|1997-03-17|TAKE BACK RETURN|RAIL|epths along | +68651|392682|5190|3|35|62113.45|0.09|0.04|N|O|1997-01-12|1996-12-26|1997-01-22|DELIVER IN PERSON|AIR|ular pinto b| +68652|781006|43522|1|6|6521.82|0.02|0.00|N|O|1996-11-13|1997-01-04|1996-12-09|NONE|RAIL|y. accounts nag blithely. permanently b| +68652|355460|17968|2|6|9092.70|0.00|0.06|N|O|1997-01-21|1996-12-12|1997-02-01|TAKE BACK RETURN|MAIL|deposits be| +68653|594855|44856|1|41|79943.03|0.06|0.08|R|F|1993-01-13|1993-01-27|1993-02-06|NONE|TRUCK|y ironic theodolites wake furi| +68653|717484|17485|2|8|12011.60|0.04|0.05|A|F|1993-01-11|1992-12-12|1993-02-06|NONE|FOB|uriously unusual tithes sleep quickly. sl| +68653|741732|4247|3|49|86911.30|0.04|0.03|A|F|1993-01-11|1992-12-29|1993-01-27|COLLECT COD|AIR|al pinto beans. ste| +68653|275853|25854|4|29|53036.36|0.01|0.08|A|F|1992-12-21|1993-01-07|1993-01-12|COLLECT COD|AIR| wake slyly after t| +68653|246247|21256|5|12|14318.76|0.00|0.05|R|F|1993-02-11|1992-12-17|1993-03-09|TAKE BACK RETURN|TRUCK|fully final theodolites are slyly | +68654|559952|34975|1|1|2011.93|0.00|0.06|N|O|1996-06-28|1996-06-07|1996-07-19|COLLECT COD|RAIL|times fluffily ironic p| +68654|107449|32454|2|47|68452.68|0.01|0.07|N|O|1996-07-08|1996-05-14|1996-07-13|DELIVER IN PERSON|SHIP|symptotes det| +68654|881668|6703|3|13|21445.06|0.00|0.05|N|O|1996-04-11|1996-05-02|1996-05-03|COLLECT COD|MAIL|refully even packages. special | +68654|182446|44950|4|20|30568.80|0.02|0.07|N|O|1996-06-02|1996-05-15|1996-06-03|COLLECT COD|REG AIR|olphins affix even theodo| +68654|359236|21744|5|10|12952.20|0.01|0.05|N|O|1996-06-15|1996-06-07|1996-07-03|DELIVER IN PERSON|AIR|es are about t| +68655|358802|21310|1|48|89317.92|0.02|0.03|R|F|1992-12-28|1992-11-07|1992-12-29|COLLECT COD|AIR|deposits haggle slyly furiously express t| +68680|163278|25782|1|38|50968.26|0.10|0.04|R|F|1995-05-26|1995-04-24|1995-06-13|DELIVER IN PERSON|FOB| ruthless ideas would haggle sly| +68680|209019|9020|2|31|28768.00|0.09|0.08|R|F|1995-03-05|1995-03-08|1995-03-07|TAKE BACK RETURN|REG AIR| furiously packages. | +68681|317565|42578|1|23|36398.65|0.05|0.03|R|F|1992-10-08|1992-09-05|1992-10-27|TAKE BACK RETURN|AIR|cial, fina| +68681|303691|3692|2|11|18641.48|0.09|0.03|A|F|1992-09-12|1992-07-17|1992-09-22|DELIVER IN PERSON|RAIL|elieve about the carefully| +68681|118513|6020|3|6|9189.06|0.00|0.02|R|F|1992-08-27|1992-07-17|1992-09-12|TAKE BACK RETURN|MAIL| accounts against the careful| +68681|844505|44506|4|31|44933.26|0.07|0.07|A|F|1992-07-08|1992-07-25|1992-07-19|COLLECT COD|REG AIR|es must ha| +68681|590321|15344|5|33|46572.90|0.07|0.08|A|F|1992-10-02|1992-08-14|1992-10-11|COLLECT COD|REG AIR|jole ironic instr| +68681|511837|11838|6|2|3697.62|0.03|0.01|A|F|1992-07-04|1992-08-03|1992-08-02|DELIVER IN PERSON|FOB|fully final de| +68681|431684|44193|7|24|38775.84|0.00|0.03|A|F|1992-08-15|1992-07-15|1992-08-25|COLLECT COD|TRUCK|er the ironically| +68682|296243|8749|1|40|49569.20|0.10|0.08|N|O|1997-11-08|1997-10-26|1997-11-12|COLLECT COD|REG AIR| haggle according t| +68682|941654|16691|2|31|52563.91|0.09|0.06|N|O|1997-11-15|1997-11-14|1997-11-17|NONE|MAIL|l pinto beans us| +68682|365723|15724|3|48|85858.08|0.04|0.03|N|O|1997-11-03|1997-10-27|1997-11-25|NONE|RAIL|s nag alongside of the furiously final | +68682|699435|49436|4|16|22950.40|0.06|0.05|N|O|1997-11-27|1997-10-20|1997-12-08|NONE|SHIP|the slyly special requests | +68682|391221|41222|5|34|44615.14|0.05|0.00|N|O|1997-12-10|1997-11-25|1997-12-19|DELIVER IN PERSON|MAIL|ic accounts wake blithely s| +68682|241307|41308|6|2|2496.58|0.02|0.05|N|O|1997-10-28|1997-11-23|1997-11-20|DELIVER IN PERSON|REG AIR|luffily dar| +68683|871033|46068|1|5|5019.95|0.07|0.06|A|F|1995-03-25|1995-03-22|1995-04-15|TAKE BACK RETURN|RAIL| the slyly ironic pla| +68683|441140|28665|2|32|34595.84|0.08|0.07|A|F|1995-03-09|1995-04-02|1995-03-15|DELIVER IN PERSON|SHIP|e blithely silent asymptotes sleep | +68683|236161|48666|3|17|18651.55|0.09|0.01|A|F|1995-05-18|1995-05-10|1995-06-05|DELIVER IN PERSON|TRUCK|equests nag carefully-- carefully fina| +68684|669769|32283|1|47|81720.31|0.07|0.01|N|O|1996-11-10|1996-12-08|1996-12-04|COLLECT COD|REG AIR|lly about the escapades. even, silent plat| +68684|800620|13137|2|12|18246.96|0.09|0.05|N|O|1997-01-22|1996-12-22|1997-02-16|DELIVER IN PERSON|AIR|kages about the final, re| +68684|9427|46928|3|16|21382.72|0.07|0.06|N|O|1997-01-23|1996-12-09|1997-02-14|COLLECT COD|FOB| against the final, ironic accounts| +68684|430046|42555|4|21|20496.42|0.08|0.03|N|O|1997-01-27|1997-01-04|1997-01-29|COLLECT COD|RAIL|ckages wake; platelets around the even | +68685|258564|46080|1|50|76127.50|0.04|0.08|A|F|1995-03-12|1995-03-14|1995-03-15|COLLECT COD|FOB|s. fluffily daring accoun| +68685|675391|37905|2|43|58753.48|0.05|0.00|R|F|1995-05-16|1995-04-13|1995-05-30|COLLECT COD|SHIP|g quickly blithely final excuses. fluf| +68685|293894|18905|3|45|84954.60|0.01|0.05|A|F|1995-05-01|1995-03-08|1995-05-23|NONE|SHIP|thely regular requests. final gifts h| +68685|459820|9821|4|7|12458.60|0.09|0.03|R|F|1995-01-26|1995-03-03|1995-01-31|NONE|TRUCK|inal, express asymptotes detect s| +68685|186659|11666|5|30|52369.50|0.08|0.03|R|F|1995-02-18|1995-03-08|1995-03-14|DELIVER IN PERSON|FOB|carefully car| +68685|174056|36560|6|1|1130.05|0.06|0.06|R|F|1995-01-26|1995-02-28|1995-01-28|NONE|SHIP|e carefully. platelets | +68685|356354|6355|7|32|45130.88|0.04|0.08|A|F|1995-04-02|1995-04-02|1995-04-25|TAKE BACK RETURN|TRUCK|wake among the regular accounts. fur| +68686|236157|36158|1|12|13117.68|0.06|0.05|A|F|1994-03-07|1994-03-17|1994-03-30|DELIVER IN PERSON|TRUCK|imes pending instruct| +68686|76576|14080|2|38|58997.66|0.04|0.06|A|F|1994-04-18|1994-02-16|1994-04-20|COLLECT COD|TRUCK|le along the blithely | +68686|1768|26769|3|14|23376.64|0.00|0.08|R|F|1994-01-30|1994-04-03|1994-02-25|NONE|REG AIR|lyly. iron| +68686|705525|30554|4|6|9182.94|0.10|0.03|R|F|1994-04-28|1994-02-24|1994-05-20|TAKE BACK RETURN|FOB|out the accounts sleep carefully ar| +68686|751005|26036|5|43|45406.71|0.08|0.04|R|F|1994-04-15|1994-04-05|1994-05-02|COLLECT COD|AIR|encies are quickly regular pinto bean| +68687|810538|23055|1|48|69527.52|0.00|0.02|N|O|1997-09-14|1997-07-30|1997-10-12|TAKE BACK RETURN|MAIL|c pinto beans x-ray qu| +68687|699893|37433|2|29|54892.94|0.01|0.01|N|O|1997-06-30|1997-08-28|1997-07-02|NONE|AIR| the carefully pe| +68687|86921|24425|3|50|95396.00|0.08|0.00|N|O|1997-07-31|1997-07-30|1997-08-08|DELIVER IN PERSON|REG AIR|xpress, busy| +68687|874540|49575|4|10|15145.00|0.09|0.00|N|O|1997-08-12|1997-08-09|1997-08-19|TAKE BACK RETURN|MAIL|sts across the thinl| +68712|679914|42428|1|2|3787.76|0.00|0.04|A|F|1992-07-20|1992-06-18|1992-08-16|DELIVER IN PERSON|REG AIR|ts are fluffily about the furiously unu| +68713|558121|8122|1|22|25940.20|0.06|0.04|N|O|1998-10-15|1998-10-10|1998-10-28|COLLECT COD|RAIL|ugouts. even, fi| +68713|324617|37124|2|11|18057.60|0.03|0.03|N|O|1998-07-27|1998-09-09|1998-08-07|DELIVER IN PERSON|REG AIR| furiously even requests. special Tiresia| +68713|822587|35104|3|31|46795.74|0.09|0.00|N|O|1998-09-14|1998-10-12|1998-10-14|NONE|MAIL|eposits. bold, unusual excuses sleep q| +68713|217082|29587|4|9|8991.63|0.08|0.05|N|O|1998-08-27|1998-08-21|1998-09-02|TAKE BACK RETURN|SHIP|s cajole quickly-- foxes are blithely.| +68714|533414|45925|1|23|33289.97|0.00|0.00|N|O|1998-07-11|1998-06-04|1998-07-19|COLLECT COD|SHIP|xpress theodolit| +68714|88448|950|2|30|43093.20|0.03|0.08|N|O|1998-04-29|1998-05-28|1998-05-05|DELIVER IN PERSON|RAIL|sts. pinto beans integr| +68715|446709|9218|1|8|13245.44|0.02|0.07|N|O|1998-01-24|1998-04-01|1998-02-19|COLLECT COD|MAIL|s. final, special| +68715|836829|24378|2|15|26486.70|0.03|0.04|N|O|1998-01-21|1998-02-25|1998-02-07|NONE|MAIL| deposits. regular escapades are aft| +68715|582594|32595|3|7|11735.99|0.10|0.07|N|O|1998-04-13|1998-03-23|1998-05-12|NONE|MAIL| about the iron| +68716|133108|20615|1|14|15975.40|0.10|0.00|N|O|1996-08-29|1996-09-09|1996-09-19|DELIVER IN PERSON|FOB|olites engage after the dolphins. regular| +68716|135980|23487|2|42|84671.16|0.10|0.00|N|O|1996-10-03|1996-09-26|1996-10-17|TAKE BACK RETURN|TRUCK|quickly bold platelets. grouches about th| +68716|407296|7297|3|27|32488.29|0.01|0.05|N|O|1996-08-26|1996-08-19|1996-08-28|TAKE BACK RETURN|FOB|hinly express platelets doubt carefully w| +68716|414712|2237|4|42|68320.98|0.07|0.05|N|O|1996-10-23|1996-09-01|1996-11-16|NONE|TRUCK|ly according to| +68716|53235|15737|5|10|11882.30|0.08|0.02|N|O|1996-10-01|1996-10-01|1996-10-25|TAKE BACK RETURN|AIR|ckages. ironic packages sleep| +68717|155350|30357|1|2|2810.70|0.06|0.08|N|O|1998-09-10|1998-09-03|1998-10-04|COLLECT COD|REG AIR|uests play quickly about the carefully reg| +68717|951300|13820|2|7|9458.82|0.08|0.05|N|O|1998-10-08|1998-09-18|1998-11-02|DELIVER IN PERSON|SHIP|e carefully| +68717|495842|33370|3|48|88215.36|0.06|0.03|N|O|1998-10-11|1998-08-27|1998-11-04|DELIVER IN PERSON|TRUCK|boost. ruthless ins| +68718|880944|18496|1|29|55822.10|0.07|0.06|N|O|1997-01-12|1997-01-13|1997-02-06|NONE|TRUCK|uests. spe| +68718|18241|5742|2|22|25503.28|0.10|0.01|N|O|1997-01-29|1997-01-11|1997-02-10|TAKE BACK RETURN|SHIP|es play across the bravely pending in| +68718|568174|18175|3|42|52170.30|0.07|0.02|N|O|1996-11-14|1997-01-27|1996-11-26|DELIVER IN PERSON|AIR|ests. carefully ironic theo| +68719|233026|8035|1|35|33565.35|0.02|0.01|R|F|1995-05-18|1995-05-05|1995-06-10|DELIVER IN PERSON|SHIP|en frets boost c| +68719|459081|34100|2|33|34321.98|0.05|0.03|R|F|1995-04-01|1995-06-17|1995-04-25|TAKE BACK RETURN|FOB|bold packages haggle pending instruct| +68719|772151|22152|3|39|47701.68|0.03|0.08|N|O|1995-06-25|1995-05-18|1995-06-28|NONE|FOB|endencies play furiously| +68744|963088|38127|1|31|35682.24|0.05|0.02|N|O|1997-01-09|1997-03-13|1997-02-05|NONE|SHIP|t about the carefully even instruction| +68744|606456|18969|2|11|14986.62|0.08|0.08|N|O|1997-03-11|1997-02-23|1997-04-04|COLLECT COD|MAIL|ven requests. quickly | +68744|703655|28684|3|21|34831.02|0.02|0.04|N|O|1997-02-13|1997-03-18|1997-03-09|NONE|SHIP|arefully. always ironic packages a| +68744|327068|39575|4|29|31756.45|0.09|0.08|N|O|1997-03-21|1997-02-03|1997-04-08|COLLECT COD|RAIL|s are furiously even accounts. fur| +68744|28625|16126|5|19|29518.78|0.07|0.04|N|O|1997-01-05|1997-03-07|1997-01-16|DELIVER IN PERSON|AIR|ously pending accounts. carefu| +68744|91638|16641|6|2|3259.26|0.04|0.03|N|O|1997-04-05|1997-03-10|1997-04-11|TAKE BACK RETURN|AIR| packages haggle furiously alongside of| +68745|785338|22884|1|32|45545.60|0.01|0.01|N|O|1998-04-20|1998-04-28|1998-05-12|COLLECT COD|MAIL|nding requests sleep careful| +68745|175364|25365|2|10|14393.60|0.10|0.03|N|O|1998-03-25|1998-05-06|1998-04-08|NONE|REG AIR|sts sleep carefully about | +68745|342371|17384|3|13|18373.68|0.04|0.01|N|O|1998-03-21|1998-05-06|1998-04-15|DELIVER IN PERSON|SHIP| attainments wake slyly express packages! | +68745|215978|15979|4|13|24621.48|0.04|0.00|N|O|1998-04-21|1998-06-14|1998-05-16|COLLECT COD|AIR| the carefully special asympto| +68745|926609|26610|5|42|68693.52|0.06|0.05|N|O|1998-06-05|1998-05-07|1998-06-17|DELIVER IN PERSON|AIR|ular instructions. deposits cajole | +68745|501320|1321|6|1|1321.30|0.05|0.04|N|O|1998-06-10|1998-05-25|1998-06-18|TAKE BACK RETURN|REG AIR|uickly ruthless, regula| +68745|682510|45024|7|10|14924.80|0.00|0.02|N|O|1998-06-20|1998-05-19|1998-07-19|DELIVER IN PERSON|MAIL|ously along th| +68746|933299|8336|1|4|5329.00|0.02|0.01|R|F|1992-10-20|1992-12-14|1992-10-23|NONE|FOB|grate. blithely re| +68746|955055|42613|2|26|28860.26|0.00|0.04|R|F|1993-01-09|1992-11-18|1993-01-31|NONE|MAIL|ular deposits haggle slyly blithely unu| +68746|599090|11602|3|50|59453.50|0.10|0.02|R|F|1993-01-27|1993-01-10|1993-02-21|TAKE BACK RETURN|RAIL|uriously at the fluffily pending accounts.| +68746|897631|22666|4|35|57000.65|0.01|0.05|A|F|1993-02-05|1993-01-11|1993-02-14|TAKE BACK RETURN|MAIL|ven deposits nag f| +68747|342307|29826|1|14|18890.06|0.00|0.02|N|O|1997-07-19|1997-05-31|1997-08-16|COLLECT COD|AIR|ending, regular requests are fur| +68747|148406|35913|2|25|36360.00|0.01|0.08|N|O|1997-06-18|1997-06-03|1997-07-14|COLLECT COD|MAIL|ironic theodolites. even, | +68747|251541|26552|3|27|40298.31|0.03|0.05|N|O|1997-06-06|1997-06-17|1997-06-24|COLLECT COD|SHIP|nding, special t| +68747|646136|46137|4|27|29216.70|0.02|0.07|N|O|1997-05-12|1997-07-17|1997-05-17|DELIVER IN PERSON|RAIL|e slyly unusual instruc| +68748|384126|46634|1|13|15731.43|0.05|0.02|A|F|1992-09-05|1992-08-04|1992-09-30|NONE|REG AIR|. somas be| +68748|998197|10717|2|21|27198.15|0.01|0.00|R|F|1992-07-29|1992-07-22|1992-08-27|TAKE BACK RETURN|RAIL|fts nag furiously. spe| +68748|696275|33815|3|15|19068.60|0.06|0.07|A|F|1992-06-29|1992-07-12|1992-07-29|NONE|MAIL|express re| +68748|289697|2203|4|50|84334.00|0.05|0.05|R|F|1992-06-14|1992-06-21|1992-06-17|NONE|RAIL|ly unusual theodolites. carefully eve| +68749|373661|36169|1|47|81528.55|0.07|0.00|A|F|1992-09-29|1992-11-17|1992-10-09|TAKE BACK RETURN|RAIL| doggedly ironic deposits will have to wak| +68749|104884|29889|2|31|58555.28|0.01|0.03|R|F|1992-10-03|1992-11-06|1992-10-09|DELIVER IN PERSON|FOB|fully pending | +68750|686957|11984|1|44|85532.48|0.06|0.08|R|F|1994-06-17|1994-04-06|1994-07-07|DELIVER IN PERSON|AIR|cial ideas| +68750|684322|46836|2|8|10450.32|0.09|0.00|A|F|1994-03-04|1994-04-07|1994-03-22|COLLECT COD|FOB|cross the bli| +68750|388723|38724|3|24|43481.04|0.06|0.07|A|F|1994-05-23|1994-05-07|1994-06-16|NONE|AIR|ate about the quickly bold de| +68751|655802|18316|1|25|43944.25|0.09|0.04|N|O|1995-07-14|1995-07-31|1995-07-24|DELIVER IN PERSON|RAIL|e. regular requests sublate slyl| +68776|667093|17094|1|15|15900.90|0.07|0.00|R|F|1993-05-22|1993-06-20|1993-05-29|TAKE BACK RETURN|RAIL| silent requests cajole furiously fluff| +68776|816222|28739|2|45|51218.10|0.05|0.04|A|F|1993-08-01|1993-08-05|1993-08-07|NONE|REG AIR|cajole. furiously final instruction| +68777|260531|35542|1|11|16406.72|0.05|0.06|A|F|1994-09-08|1994-08-30|1994-09-19|TAKE BACK RETURN|TRUCK|special, final packages integrate | +68777|734640|22183|2|49|82055.89|0.00|0.04|A|F|1994-07-17|1994-08-20|1994-08-01|TAKE BACK RETURN|MAIL|ss requests haggle| +68777|91722|4224|3|5|8568.60|0.03|0.03|A|F|1994-10-01|1994-08-07|1994-10-09|DELIVER IN PERSON|MAIL|ke furiously final requests.| +68777|567224|4758|4|37|47774.40|0.08|0.08|A|F|1994-07-21|1994-07-11|1994-08-03|TAKE BACK RETURN|MAIL|iously final accounts boost blithely. | +68777|329165|4178|5|18|21494.70|0.06|0.03|R|F|1994-08-14|1994-07-26|1994-08-16|NONE|TRUCK|requests are blithely furiously reg| +68777|270101|20102|6|45|48199.05|0.05|0.03|A|F|1994-09-04|1994-08-25|1994-10-04|COLLECT COD|TRUCK| excuses sleep quickly slyly | +68777|570935|33447|7|7|14041.37|0.08|0.08|A|F|1994-06-14|1994-08-12|1994-07-10|TAKE BACK RETURN|FOB|sits sleep from the slyly fina| +68778|693839|18866|1|1|1832.80|0.02|0.00|A|F|1994-10-22|1994-11-21|1994-11-04|NONE|TRUCK|ly even excuses. bold platelets nag sl| +68778|344129|31648|2|28|32847.08|0.04|0.07|A|F|1995-01-13|1994-11-27|1995-01-15|TAKE BACK RETURN|RAIL|blithely unusual p| +68778|760216|35247|3|46|58704.28|0.05|0.01|R|F|1995-01-25|1994-12-31|1995-02-11|NONE|TRUCK|g blithely along the regular fret| +68779|344035|44036|1|14|15106.28|0.05|0.05|A|F|1995-05-10|1995-02-27|1995-05-14|NONE|MAIL|y even accounts. furiously ironic| +68779|190560|40561|2|33|54468.48|0.02|0.00|A|F|1995-05-07|1995-04-03|1995-05-23|DELIVER IN PERSON|RAIL|ular requests haggle. furiously regular pin| +68780|922332|47369|1|16|21668.64|0.03|0.06|R|F|1993-05-04|1993-02-27|1993-05-18|NONE|TRUCK|fully even acc| +68780|620470|8007|2|11|15294.84|0.05|0.04|A|F|1993-02-12|1993-04-04|1993-03-04|COLLECT COD|FOB| silently dependencies. quickly regul| +68780|233425|8434|3|3|4075.23|0.06|0.02|R|F|1993-04-28|1993-03-19|1993-05-25|NONE|AIR|ckages! quickly bold packages haggle over | +68780|165497|15498|4|10|15624.90|0.07|0.04|R|F|1993-05-21|1993-03-23|1993-05-23|COLLECT COD|TRUCK|fully bold accounts: bold, bold accounts wa| +68781|837983|25532|1|2|3841.88|0.10|0.07|R|F|1993-12-18|1994-01-20|1993-12-22|NONE|FOB|e carefully silent| +68782|980863|30864|1|17|33044.94|0.01|0.06|R|F|1994-05-02|1994-04-28|1994-05-12|COLLECT COD|FOB| multipliers hag| +68783|372452|34960|1|43|65550.92|0.03|0.05|R|F|1992-06-27|1992-06-30|1992-07-23|NONE|RAIL|ns. slyly final gifts haggle i| +68783|795839|45840|2|13|25152.40|0.04|0.07|A|F|1992-08-02|1992-05-30|1992-09-01|NONE|MAIL|orbits kindle. furiously even accounts ac| +68783|664812|2352|3|37|65740.86|0.05|0.08|A|F|1992-07-19|1992-05-08|1992-08-13|COLLECT COD|MAIL|ependencies. even pi| +68808|213067|25572|1|19|18620.95|0.03|0.05|A|F|1993-11-15|1993-11-18|1993-12-05|COLLECT COD|SHIP|xes along the slyly fi| +68808|8420|20921|2|30|39852.60|0.01|0.08|A|F|1993-11-13|1993-09-29|1993-12-01|DELIVER IN PERSON|FOB| quickly pending| +68809|723017|35532|1|15|15599.70|0.07|0.05|R|F|1993-04-18|1993-05-29|1993-04-23|TAKE BACK RETURN|MAIL| theodolites against the even fo| +68809|731122|31123|2|29|33439.61|0.01|0.00|R|F|1993-04-24|1993-04-11|1993-05-05|DELIVER IN PERSON|RAIL| ruthless, even pinto beans. regular theo| +68810|20187|7688|1|44|48715.92|0.08|0.07|N|O|1996-06-19|1996-06-04|1996-06-28|COLLECT COD|AIR|s. quickly even deposits ca| +68810|279510|29511|2|23|34258.50|0.02|0.01|N|O|1996-06-17|1996-06-04|1996-07-09|COLLECT COD|AIR|to the furious| +68810|713917|38946|3|36|69511.68|0.07|0.05|N|O|1996-05-26|1996-06-13|1996-05-27|NONE|FOB|ronic, even theodoli| +68810|802309|14826|4|18|21802.68|0.10|0.01|N|O|1996-08-18|1996-06-25|1996-09-15|COLLECT COD|MAIL|ests. bold instructions ar| +68810|394690|44691|5|30|53540.40|0.08|0.00|N|O|1996-06-03|1996-07-06|1996-06-27|TAKE BACK RETURN|FOB|s sleep. furiously| +68811|595395|7907|1|16|23845.92|0.06|0.04|N|O|1998-08-28|1998-07-30|1998-09-25|DELIVER IN PERSON|TRUCK|ly daring ideas. final d| +68811|787581|12612|2|32|53393.60|0.00|0.03|N|O|1998-07-12|1998-07-09|1998-08-09|NONE|RAIL|sual platelets above| +68811|857478|32513|3|49|70336.07|0.07|0.06|N|O|1998-07-20|1998-08-06|1998-07-22|TAKE BACK RETURN|TRUCK|ecial packag| +68811|617824|17825|4|43|74896.97|0.07|0.03|N|O|1998-06-07|1998-07-01|1998-06-09|TAKE BACK RETURN|MAIL|uffy pinto beans are af| +68811|763885|1431|5|20|38977.00|0.00|0.03|N|O|1998-08-08|1998-07-04|1998-08-31|NONE|FOB|accounts haggle slyly packages. do| +68812|271352|46363|1|45|59550.30|0.09|0.08|N|O|1997-03-12|1997-03-11|1997-03-16|COLLECT COD|TRUCK|ts are carefully above the furiousl| +68812|610798|48335|2|40|68350.40|0.09|0.01|N|O|1997-01-23|1997-03-06|1997-02-01|TAKE BACK RETURN|RAIL|lly unusual deposits cajole fur| +68812|675838|38352|3|46|83434.80|0.08|0.07|N|O|1997-01-15|1997-03-15|1997-02-04|COLLECT COD|TRUCK|the furiously even accounts. acc| +68812|799945|49946|4|31|63392.21|0.01|0.06|N|O|1997-04-17|1997-03-20|1997-04-22|DELIVER IN PERSON|RAIL|sias play even, ironic inst| +68813|496274|33802|1|6|7621.50|0.09|0.03|A|F|1994-06-18|1994-05-09|1994-07-18|COLLECT COD|FOB|se fluffily special, special| +68813|860907|23425|2|50|93393.00|0.00|0.08|A|F|1994-04-08|1994-05-18|1994-04-11|TAKE BACK RETURN|RAIL|arefully busy packages. care| +68813|250738|13244|3|10|16887.20|0.01|0.08|A|F|1994-03-20|1994-03-27|1994-04-06|DELIVER IN PERSON|MAIL|ithely regular pinto bean| +68813|143504|43505|4|28|43330.00|0.07|0.04|R|F|1994-05-21|1994-05-18|1994-06-06|NONE|SHIP|gular deposits. bold dug| +68813|868064|30582|5|20|20640.40|0.07|0.01|A|F|1994-03-19|1994-04-18|1994-03-29|COLLECT COD|SHIP|ages haggle agains| +68813|536101|36102|6|6|6822.48|0.08|0.04|A|F|1994-02-22|1994-04-13|1994-03-16|TAKE BACK RETURN|REG AIR|iously regular requests cajole blithely. as| +68814|921367|46404|1|45|62474.40|0.05|0.04|R|F|1995-02-11|1994-11-25|1995-02-17|NONE|REG AIR|ought to are. slyly ironic ideas sl| +68814|406964|6965|2|15|28064.10|0.00|0.00|R|F|1994-10-27|1995-01-05|1994-11-17|COLLECT COD|MAIL|al asymptotes. specia| +68814|843080|18113|3|7|7161.28|0.05|0.00|A|F|1994-12-06|1995-01-04|1994-12-29|NONE|AIR| to wake iron| +68815|811757|11758|1|24|40049.04|0.06|0.02|A|F|1993-02-12|1992-12-25|1993-02-15|DELIVER IN PERSON|AIR| sly deposits sleep bet| +68815|198335|35845|2|28|40133.24|0.09|0.03|R|F|1992-11-01|1993-01-24|1992-11-14|TAKE BACK RETURN|RAIL|posits wake carefully. | +68815|416274|16275|3|23|27375.75|0.01|0.07|R|F|1993-01-20|1993-01-10|1993-02-18|COLLECT COD|AIR|ptotes haggle. furiously express re| +68815|309772|22279|4|3|5345.28|0.03|0.03|A|F|1992-11-17|1992-12-25|1992-12-04|DELIVER IN PERSON|FOB|ind quickly-- express, sile| +68840|633517|46030|1|12|17405.76|0.03|0.05|N|O|1995-08-30|1995-09-02|1995-09-18|TAKE BACK RETURN|MAIL|s the pending, express th| +68840|509829|34850|2|25|45970.00|0.09|0.06|N|O|1995-07-31|1995-10-07|1995-08-04|DELIVER IN PERSON|REG AIR|ly even pearls haggle. slowly ironic pinto| +68840|691626|41627|3|3|4852.77|0.06|0.03|N|O|1995-10-30|1995-10-12|1995-11-23|TAKE BACK RETURN|RAIL|ter the ir| +68840|157761|20265|4|48|87300.48|0.07|0.07|N|O|1995-11-08|1995-10-08|1995-11-15|TAKE BACK RETURN|AIR|the final instructions. blithe, | +68840|482877|20405|5|14|26037.90|0.07|0.04|N|O|1995-09-22|1995-09-26|1995-10-14|NONE|RAIL|ully thin pinto beans lose about the | +68840|706891|6892|6|45|85403.70|0.01|0.05|N|O|1995-10-30|1995-09-20|1995-11-14|NONE|FOB|. carefully regular pinto beans| +68840|714175|14176|7|38|45187.32|0.10|0.00|N|O|1995-09-23|1995-09-15|1995-10-17|NONE|MAIL|mptotes. furiously | +68841|135981|23488|1|17|34288.66|0.01|0.06|N|O|1996-12-07|1996-12-11|1996-12-09|DELIVER IN PERSON|FOB|requests cajole carefully even, regular | +68841|419505|44522|2|37|52705.76|0.00|0.03|N|O|1997-01-06|1996-12-11|1997-02-02|TAKE BACK RETURN|SHIP|otes wake blithely special foxes. ideas oug| +68841|613661|13662|3|15|23619.45|0.08|0.02|N|O|1996-12-20|1996-11-18|1997-01-08|COLLECT COD|SHIP|nal, regular de| +68842|340902|40903|1|43|83544.27|0.08|0.03|R|F|1994-02-06|1994-02-09|1994-02-23|TAKE BACK RETURN|FOB|platelets. quic| +68842|524800|12331|2|4|7299.12|0.05|0.02|R|F|1994-01-09|1994-03-22|1994-01-19|DELIVER IN PERSON|REG AIR|iously blithely express| +68842|304929|29942|3|25|48347.75|0.02|0.07|A|F|1994-04-02|1994-02-27|1994-04-22|DELIVER IN PERSON|FOB|sly around the fluffily unusual inst| +68842|938487|13524|4|9|13728.96|0.06|0.06|A|F|1994-01-13|1994-02-08|1994-02-03|TAKE BACK RETURN|RAIL|. ironic, ironic acco| +68842|140808|40809|5|5|9244.00|0.08|0.08|A|F|1994-04-03|1994-02-22|1994-04-10|TAKE BACK RETURN|AIR|carefully | +68843|950733|25772|1|4|7134.76|0.05|0.03|R|F|1992-09-18|1992-08-08|1992-09-29|DELIVER IN PERSON|TRUCK|uffily ironic asymptote| +68843|968325|5883|2|8|11146.24|0.07|0.03|A|F|1992-08-16|1992-08-02|1992-09-08|NONE|AIR|ously even deposits. specia| +68843|629224|4249|3|26|29982.94|0.10|0.08|A|F|1992-09-06|1992-08-19|1992-10-06|COLLECT COD|SHIP|sts haggle blithely sly| +68843|366937|16938|4|5|10019.60|0.09|0.05|R|F|1992-07-17|1992-08-03|1992-07-31|COLLECT COD|SHIP|thely express theodolites. accounts haggle| +68844|737202|12231|1|47|58240.99|0.09|0.05|N|O|1996-09-23|1996-09-02|1996-09-25|DELIVER IN PERSON|AIR|about the even asympt| +68844|137583|37584|2|22|35652.76|0.05|0.07|N|O|1996-08-31|1996-09-29|1996-09-14|TAKE BACK RETURN|AIR|aggle quickl| +68844|345017|32536|3|34|36108.00|0.01|0.08|N|O|1996-07-28|1996-09-12|1996-08-09|NONE|TRUCK|uffily quickly bold ideas. ir| +68845|720038|45067|1|20|21160.00|0.04|0.05|A|F|1994-06-20|1994-06-09|1994-06-30|COLLECT COD|AIR|ut the quic| +68845|662652|12653|2|50|80731.00|0.04|0.01|A|F|1994-05-05|1994-05-06|1994-06-02|NONE|FOB|eep. blithely silent requests about the| +68845|184396|21906|3|14|20725.46|0.04|0.02|A|F|1994-06-09|1994-05-14|1994-07-01|DELIVER IN PERSON|SHIP|nts: regular, even| +68846|463104|38123|1|31|33079.48|0.09|0.02|A|F|1992-09-02|1992-10-13|1992-09-22|DELIVER IN PERSON|TRUCK|nal requests det| +68846|387763|271|2|6|11104.50|0.02|0.06|R|F|1992-12-27|1992-10-31|1993-01-19|DELIVER IN PERSON|TRUCK| final wart| +68846|132143|44646|3|19|22327.66|0.09|0.05|R|F|1992-12-14|1992-11-09|1993-01-11|NONE|REG AIR|ress accounts grow b| +68846|926967|14522|4|44|87732.48|0.03|0.03|A|F|1992-12-12|1992-10-14|1992-12-28|DELIVER IN PERSON|MAIL|ts kindle furiously ironic requests. ca| +68846|519642|7173|5|31|51510.22|0.05|0.00|R|F|1992-10-15|1992-10-10|1992-10-27|DELIVER IN PERSON|AIR|wake slyly. fur| +68846|610836|48373|6|31|54150.80|0.09|0.07|A|F|1992-12-05|1992-10-15|1992-12-31|COLLECT COD|RAIL|riously bold s| +68846|313961|26468|7|39|77023.05|0.00|0.00|A|F|1992-09-04|1992-10-27|1992-09-25|TAKE BACK RETURN|AIR|ow carefully| +68847|733501|21044|1|37|56775.39|0.04|0.08|N|O|1997-02-08|1997-03-08|1997-03-06|TAKE BACK RETURN|MAIL|ously bold deposits. excuses in| +68847|949315|49316|2|37|50477.99|0.03|0.02|N|O|1997-05-09|1997-03-28|1997-05-22|NONE|TRUCK| special pl| +68847|132734|45237|3|18|31801.14|0.09|0.05|N|O|1997-03-11|1997-04-23|1997-03-19|DELIVER IN PERSON|RAIL|ver final packages cajole boldly-- u| +68847|850083|84|4|44|45453.76|0.03|0.03|N|O|1997-04-23|1997-02-26|1997-04-28|TAKE BACK RETURN|REG AIR|bold dolphins affix. idly final pa| +68872|575954|25955|1|28|56838.04|0.06|0.04|N|O|1998-01-08|1997-12-30|1998-02-03|NONE|AIR|y unusual, even request| +68872|53334|15836|2|29|37332.57|0.01|0.00|N|O|1998-01-13|1998-01-03|1998-01-17|DELIVER IN PERSON|FOB| regular accounts integrate blithely| +68872|377989|3004|3|44|90946.68|0.01|0.01|N|O|1997-11-15|1998-01-02|1997-11-21|NONE|REG AIR| carefully pending foxes run. enticingly | +68872|855518|43070|4|6|8840.82|0.02|0.08|N|O|1997-12-20|1998-01-09|1997-12-21|TAKE BACK RETURN|MAIL|unts. regular account| +68872|680862|5889|5|6|11056.98|0.09|0.01|N|O|1998-01-17|1997-12-25|1998-01-29|COLLECT COD|SHIP|unts cajole across the accounts. express e| +68872|243996|31509|6|7|13579.86|0.02|0.05|N|O|1997-11-06|1997-12-11|1997-12-01|COLLECT COD|RAIL|ounts. blithely final packag| +68872|837494|12527|7|4|5725.80|0.01|0.02|N|O|1998-02-07|1998-01-18|1998-03-05|DELIVER IN PERSON|MAIL|gle. requests are | +68873|749430|36973|1|26|38464.40|0.03|0.02|A|F|1993-10-06|1993-08-13|1993-10-30|COLLECT COD|AIR|tes. quick| +68873|663393|38420|2|50|67818.00|0.00|0.04|A|F|1993-09-24|1993-08-07|1993-10-02|NONE|AIR| cajole! slyly ironic| +68873|633504|8529|3|36|51748.92|0.09|0.06|R|F|1993-08-05|1993-08-20|1993-08-28|DELIVER IN PERSON|SHIP|s wake slyly along the | +68873|290284|15295|4|19|24211.13|0.03|0.02|A|F|1993-10-20|1993-10-02|1993-11-19|DELIVER IN PERSON|MAIL|dencies. packages | +68873|793593|18624|5|16|26984.96|0.09|0.04|A|F|1993-10-13|1993-09-23|1993-11-07|TAKE BACK RETURN|REG AIR|bravely specia| +68873|917263|42300|6|43|55049.46|0.01|0.08|A|F|1993-07-25|1993-08-25|1993-08-13|COLLECT COD|REG AIR|ss deposits| +68874|520347|7878|1|5|6836.60|0.03|0.03|N|O|1995-11-21|1995-11-09|1995-12-14|NONE|FOB|y final frays. s| +68874|471080|21081|2|12|12612.72|0.03|0.08|N|O|1995-10-22|1995-11-04|1995-11-07|DELIVER IN PERSON|RAIL| furiously express foxes. pending packages | +68874|440407|27932|3|16|21558.08|0.05|0.08|N|O|1995-12-05|1995-11-11|1995-12-27|COLLECT COD|FOB|usly final deposits haggle | +68874|906468|6469|4|42|61925.64|0.08|0.03|N|O|1995-11-22|1995-11-23|1995-12-22|NONE|SHIP| blithely special i| +68875|732879|7908|1|33|63090.72|0.03|0.03|N|O|1997-12-27|1997-12-30|1998-01-01|NONE|FOB|xes. instructi| +68875|491791|4301|2|29|51700.33|0.03|0.08|N|O|1998-01-05|1997-12-22|1998-01-29|TAKE BACK RETURN|FOB|across the blithely bold reque| +68875|524057|49078|3|20|21620.60|0.03|0.00|N|O|1998-02-24|1997-12-31|1998-03-10|NONE|FOB|ly regular i| +68875|819014|31531|4|43|40117.71|0.09|0.03|N|O|1998-02-01|1998-01-20|1998-02-13|COLLECT COD|SHIP|deposits boost p| +68876|983170|45690|1|9|11278.17|0.03|0.04|R|F|1994-10-19|1994-11-25|1994-11-07|DELIVER IN PERSON|TRUCK|, ironic packages sleep after the unusual,| +68876|128437|28438|2|42|61548.06|0.07|0.07|A|F|1995-01-21|1994-12-10|1995-02-10|DELIVER IN PERSON|RAIL|ic requests boost outside the s| +68876|634178|9203|3|45|50046.30|0.07|0.05|A|F|1995-01-17|1995-01-12|1995-01-25|NONE|FOB| deposits. theodolites hang against the car| +68876|620198|32711|4|47|52553.52|0.05|0.05|R|F|1994-11-23|1994-11-15|1994-12-22|TAKE BACK RETURN|MAIL|fully final request| +68876|656439|18953|5|32|44652.80|0.07|0.05|A|F|1994-12-17|1995-01-02|1995-01-05|DELIVER IN PERSON|REG AIR|ronic accounts use pinto beans. i| +68877|806492|31525|1|45|62930.25|0.08|0.02|N|O|1998-03-16|1998-01-29|1998-04-14|NONE|RAIL|the even, ironi| +68878|518651|18652|1|4|6678.52|0.00|0.08|N|O|1997-06-07|1997-06-08|1997-06-14|COLLECT COD|FOB|lar requests detect re| +68878|953779|3780|2|49|89803.77|0.00|0.07|N|O|1997-06-29|1997-05-09|1997-07-15|NONE|MAIL|equests cajole final packages| +68878|151011|38521|3|22|23364.22|0.09|0.02|N|O|1997-03-30|1997-05-20|1997-04-29|DELIVER IN PERSON|TRUCK|ly regular reques| +68878|36141|23642|4|8|8617.12|0.10|0.00|N|O|1997-05-04|1997-05-31|1997-05-28|DELIVER IN PERSON|TRUCK| deposits are sly| +68879|100726|13229|1|34|58708.48|0.06|0.01|R|F|1992-04-20|1992-05-07|1992-05-17|NONE|TRUCK|s. slyly idle realm| +68904|993724|6244|1|10|18176.80|0.07|0.00|A|F|1994-08-16|1994-06-20|1994-09-13|NONE|TRUCK|ular depende| +68904|509590|22101|2|50|79978.50|0.01|0.06|A|F|1994-06-01|1994-07-12|1994-07-01|COLLECT COD|AIR|larly regular packages according | +68904|673514|48541|3|21|31237.08|0.09|0.06|A|F|1994-06-01|1994-06-30|1994-06-17|NONE|REG AIR|beans cajole caref| +68904|736564|36565|4|43|68822.79|0.07|0.07|A|F|1994-07-28|1994-06-05|1994-08-13|COLLECT COD|MAIL|s nag fluffily| +68904|421225|46242|5|11|12608.20|0.10|0.07|A|F|1994-05-10|1994-05-29|1994-05-12|NONE|TRUCK|s about the carefully special packag| +68905|957006|32045|1|7|7440.72|0.10|0.07|N|O|1997-03-01|1997-03-11|1997-03-25|COLLECT COD|AIR| ironic accounts| +68905|384228|21750|2|3|3936.63|0.07|0.06|N|O|1997-02-10|1997-05-06|1997-02-14|DELIVER IN PERSON|AIR| blithely bold instructions cajole bene| +68906|915450|15451|1|25|36635.25|0.06|0.00|R|F|1995-01-13|1995-03-31|1995-01-17|NONE|AIR|slyly bold reques| +68907|678096|3123|1|12|12888.72|0.02|0.03|R|F|1992-04-24|1992-04-15|1992-05-05|DELIVER IN PERSON|REG AIR| regular, ironic accoun| +68908|318532|31039|1|46|71323.92|0.10|0.05|R|F|1994-03-17|1994-04-09|1994-03-29|DELIVER IN PERSON|FOB|the quickly unusual forges| +68908|564906|39929|2|1|1970.88|0.01|0.02|A|F|1994-02-18|1994-04-08|1994-03-02|COLLECT COD|REG AIR|ckly bold patterns w| +68908|363214|736|3|31|39593.20|0.05|0.08|R|F|1994-03-23|1994-03-20|1994-03-31|COLLECT COD|RAIL|bold frets along the slyly final pa| +68909|106448|18951|1|14|20362.16|0.09|0.05|A|F|1993-02-25|1993-03-08|1993-03-10|TAKE BACK RETURN|TRUCK|ests? slyly bold| +68909|70533|33035|2|4|6014.12|0.08|0.01|A|F|1993-04-02|1993-02-02|1993-04-25|NONE|SHIP|bove the ironic deposi| +68909|435061|22586|3|23|22908.92|0.08|0.04|R|F|1993-03-20|1993-03-08|1993-03-22|TAKE BACK RETURN|TRUCK|packages detect c| +68909|59897|22399|4|27|50136.03|0.08|0.06|R|F|1993-04-10|1993-03-24|1993-04-18|TAKE BACK RETURN|REG AIR|y above the final packages. quickly | +68910|969965|45004|1|37|75292.04|0.00|0.03|R|F|1994-07-06|1994-07-31|1994-07-21|NONE|FOB|hely final escapades. f| +68910|192969|30479|2|28|57734.88|0.08|0.01|A|F|1994-09-02|1994-08-11|1994-09-25|TAKE BACK RETURN|SHIP|e blithely. furiously regula| +68911|900741|13260|1|4|6966.80|0.08|0.00|N|O|1995-11-26|1995-10-29|1995-12-20|NONE|SHIP|inal foxes. express, | +68911|743409|30952|2|50|72618.50|0.05|0.03|N|O|1995-09-25|1995-10-16|1995-10-13|COLLECT COD|REG AIR|ly express fo| +68911|462193|24703|3|25|28879.25|0.04|0.04|N|O|1995-12-17|1995-11-06|1995-12-23|TAKE BACK RETURN|REG AIR|lly regular requests are a| +68911|65658|3162|4|11|17860.15|0.01|0.07|N|O|1995-11-16|1995-09-27|1995-11-25|NONE|RAIL|to the always ruthless accounts. slyly| +68936|420723|8248|1|47|77253.90|0.09|0.08|N|O|1996-02-03|1996-01-19|1996-02-11|COLLECT COD|AIR|ly unusual theodolites wa| +68936|91090|3592|2|38|41081.42|0.04|0.03|N|O|1996-02-17|1996-01-16|1996-03-15|DELIVER IN PERSON|AIR|ate blithely stealthy p| +68937|163608|26112|1|38|63520.80|0.07|0.02|A|F|1995-05-10|1995-06-14|1995-06-03|COLLECT COD|SHIP|ackages kindle quickly abo| +68937|755215|17731|2|11|13971.98|0.01|0.05|N|O|1995-06-23|1995-05-28|1995-07-10|NONE|FOB| slyly pending deposits. | +68938|720068|20069|1|22|23936.66|0.07|0.01|R|F|1995-01-29|1995-02-15|1995-02-22|COLLECT COD|RAIL|y final deposits wak| +68938|179623|42127|2|40|68104.80|0.05|0.03|R|F|1995-01-11|1995-02-15|1995-01-25|TAKE BACK RETURN|MAIL|ending tithes. slyly even accounts wa| +68938|912991|12992|3|37|74146.15|0.07|0.08|R|F|1995-01-24|1995-01-03|1995-02-15|COLLECT COD|RAIL|cing dolphins run quickly. furiously even | +68939|995228|45229|1|44|58219.92|0.00|0.04|R|F|1992-08-16|1992-09-06|1992-08-28|TAKE BACK RETURN|REG AIR|ual excuses nag furiously above the | +68940|394262|19277|1|26|35262.50|0.02|0.04|R|F|1993-03-09|1993-03-26|1993-04-03|TAKE BACK RETURN|FOB|its around the stealthily fi| +68940|357618|7619|2|15|25134.00|0.04|0.08|A|F|1993-04-17|1993-03-15|1993-05-11|COLLECT COD|RAIL|atelets. silent foxes | +68940|479005|41515|3|31|30503.38|0.05|0.03|R|F|1993-02-14|1993-02-13|1993-03-05|COLLECT COD|AIR| furiously after the fu| +68941|611997|49534|1|37|70631.52|0.08|0.07|N|O|1996-09-10|1996-08-30|1996-09-20|DELIVER IN PERSON|AIR|fily according to the blithely blithe dep| +68941|824849|37366|2|38|67404.40|0.06|0.02|N|O|1996-08-28|1996-10-25|1996-09-17|NONE|SHIP|ironic instru| +68941|230133|42638|3|9|9568.08|0.09|0.04|N|O|1996-11-24|1996-10-23|1996-11-27|DELIVER IN PERSON|REG AIR|-ray doggedly final| +68941|838177|25726|4|16|17842.08|0.06|0.04|N|O|1996-10-11|1996-10-07|1996-10-19|COLLECT COD|FOB|ctions sleep fluffily after the instruct| +68941|234815|9824|5|14|24497.20|0.08|0.00|N|O|1996-08-01|1996-09-28|1996-08-11|DELIVER IN PERSON|REG AIR|deposits. deposits detect| +68942|366485|41500|1|8|12411.76|0.02|0.00|A|F|1993-03-28|1993-04-02|1993-04-05|COLLECT COD|FOB|ven dependencies. fluffily pending | +68942|500910|38441|2|16|30574.24|0.04|0.08|R|F|1993-06-13|1993-05-28|1993-06-27|COLLECT COD|MAIL|eodolites sleep furiously| +68942|778220|15766|3|23|29858.37|0.09|0.00|R|F|1993-06-26|1993-04-06|1993-07-25|NONE|RAIL|ons cajole slyly final deposits. final p| +68942|532742|45253|4|5|8873.60|0.06|0.00|A|F|1993-05-17|1993-04-01|1993-05-19|DELIVER IN PERSON|AIR|efully bold deposit| +68942|785105|47621|5|21|24991.47|0.06|0.06|R|F|1993-05-30|1993-04-25|1993-06-17|TAKE BACK RETURN|AIR| packages cajo| +68942|249759|12264|6|1|1708.74|0.10|0.03|R|F|1993-03-12|1993-04-03|1993-04-07|NONE|AIR|e even excuses. expre| +68942|697829|10343|7|22|40189.38|0.09|0.04|A|F|1993-05-21|1993-05-14|1993-06-18|COLLECT COD|RAIL|ress instructions cajole after the bl| +68943|409234|21743|1|22|25150.62|0.08|0.05|N|O|1997-03-26|1997-02-23|1997-03-29|TAKE BACK RETURN|SHIP|arefully. furiously reg| +68943|982887|20445|2|17|33487.28|0.04|0.00|N|O|1997-02-11|1997-02-20|1997-03-09|DELIVER IN PERSON|RAIL|, final deposits. asymptote| +68943|381008|31009|3|40|43559.60|0.09|0.00|N|O|1997-01-18|1997-01-29|1997-01-28|DELIVER IN PERSON|RAIL|ular packages solve bl| +68943|601117|1118|4|50|50904.00|0.01|0.02|N|O|1997-02-26|1997-02-15|1997-03-24|COLLECT COD|RAIL|s across the dependencie| +68943|965386|15387|5|15|21770.10|0.09|0.03|N|O|1996-12-22|1997-01-31|1997-01-18|TAKE BACK RETURN|RAIL|fter the quickl| +68943|238315|820|6|42|52638.60|0.03|0.05|N|O|1997-02-15|1997-01-21|1997-02-18|TAKE BACK RETURN|MAIL|osits. bold, even orbits nag ca| +68968|92035|17038|1|44|45189.32|0.01|0.03|R|F|1995-04-03|1995-03-27|1995-04-29|DELIVER IN PERSON|TRUCK|lar accounts| +68968|824564|37081|2|39|58052.28|0.02|0.02|A|F|1995-04-22|1995-03-31|1995-05-18|NONE|REG AIR|ing deposits nag furiously carefully fina| +68969|840025|40026|1|23|22194.54|0.04|0.01|N|O|1997-11-18|1997-09-11|1997-12-13|TAKE BACK RETURN|TRUCK|e furiously across t| +68969|283837|8848|2|4|7283.28|0.04|0.00|N|O|1997-11-01|1997-10-28|1997-11-04|NONE|RAIL|slyly even ideas are carefully | +68969|446731|34256|3|26|43620.46|0.02|0.08|N|O|1997-11-16|1997-10-03|1997-12-05|COLLECT COD|RAIL| about the | +68969|191935|16942|4|47|95265.71|0.10|0.02|N|O|1997-09-14|1997-09-07|1997-09-18|COLLECT COD|FOB|arefully bold dolphins. even requests use | +68969|846656|21689|5|20|32052.20|0.01|0.07|N|O|1997-09-02|1997-09-04|1997-09-15|NONE|RAIL|egular accounts. even, ironic instr| +68969|733723|46238|6|45|79051.05|0.01|0.02|N|O|1997-08-15|1997-09-10|1997-08-25|NONE|RAIL|s cajole closely upon t| +68969|668915|31429|7|33|62168.04|0.03|0.00|N|O|1997-08-28|1997-09-25|1997-09-21|COLLECT COD|MAIL|ts boost quietly bold deposits. qui| +68970|439616|27141|1|28|43556.52|0.08|0.03|N|O|1998-02-06|1998-02-05|1998-02-15|COLLECT COD|MAIL| carefully final packages. | +68970|613536|26049|2|44|63778.00|0.07|0.00|N|O|1998-01-01|1998-02-14|1998-01-06|COLLECT COD|TRUCK|s. bravely even platelets befo| +68970|688479|26019|3|10|14674.40|0.09|0.03|N|O|1998-03-15|1997-12-20|1998-04-12|DELIVER IN PERSON|TRUCK|ly even foxes boost permanently. slyly bold| +68971|184309|34310|1|24|33439.20|0.02|0.03|N|O|1997-06-02|1997-07-07|1997-06-05|NONE|REG AIR|onic foxes. even, final acc| +68971|674707|37221|2|22|36996.74|0.08|0.07|N|O|1997-08-03|1997-05-22|1997-08-16|DELIVER IN PERSON|FOB|lithely bold deposits use.| +68971|795721|20752|3|11|19983.59|0.02|0.08|N|O|1997-08-08|1997-06-14|1997-08-18|DELIVER IN PERSON|FOB|riously final requests after the ironic| +68971|666067|16068|4|40|41321.20|0.10|0.08|N|O|1997-05-17|1997-06-03|1997-05-31|DELIVER IN PERSON|AIR|g the fluf| +68971|582714|32715|5|18|32340.42|0.07|0.03|N|O|1997-05-08|1997-07-13|1997-05-16|DELIVER IN PERSON|SHIP| pending, regular theodol| +68971|663540|13541|6|32|48112.32|0.00|0.05|N|O|1997-04-28|1997-05-20|1997-05-18|NONE|FOB|r the blithely regular requests bo| +68972|595889|33423|1|21|41682.06|0.09|0.06|R|F|1993-04-20|1993-04-03|1993-05-05|TAKE BACK RETURN|AIR|its eat blithely according to | +68972|102307|14810|2|2|2618.60|0.08|0.02|R|F|1993-04-07|1993-04-15|1993-04-29|COLLECT COD|REG AIR| carefully. furio| +68972|472063|34573|3|1|1035.04|0.09|0.01|A|F|1993-04-04|1993-05-04|1993-04-24|NONE|AIR|to the blithely| +68972|956519|44077|4|41|64594.27|0.03|0.06|A|F|1993-03-30|1993-05-05|1993-04-10|NONE|AIR|slyly even deposit| +68972|205391|42904|5|43|55744.34|0.03|0.06|A|F|1993-06-04|1993-05-08|1993-06-17|NONE|TRUCK|ets maintain car| +68972|991998|17037|6|1|2089.95|0.05|0.00|A|F|1993-04-09|1993-05-27|1993-04-15|TAKE BACK RETURN|AIR|ake furiously s| +68973|424574|24575|1|48|71930.40|0.10|0.04|N|O|1998-05-11|1998-06-10|1998-06-02|NONE|MAIL|usly pending ideas use slyly against the | +68973|807134|7135|2|13|13534.17|0.02|0.05|N|O|1998-08-19|1998-06-10|1998-09-11|NONE|AIR|ully specia| +68973|498102|23121|3|13|14301.04|0.03|0.01|N|O|1998-06-26|1998-07-10|1998-07-17|NONE|REG AIR|nusual deposits are. car| +68973|597900|22923|4|18|35961.84|0.10|0.07|N|O|1998-04-29|1998-07-18|1998-05-06|NONE|SHIP|phins sleep | +68973|892993|5511|5|1|1985.95|0.06|0.00|N|O|1998-06-27|1998-05-30|1998-07-18|TAKE BACK RETURN|FOB|c theodolites was quickly. pac| +68974|871926|9478|1|8|15183.04|0.08|0.04|R|F|1995-02-23|1995-01-11|1995-03-06|NONE|SHIP|equests thrash acr| +68974|448516|23533|2|44|64437.56|0.03|0.02|A|F|1995-01-01|1995-01-06|1995-01-06|TAKE BACK RETURN|REG AIR|y packages | +68974|206437|18942|3|22|29555.24|0.08|0.07|A|F|1994-11-21|1995-02-02|1994-12-14|TAKE BACK RETURN|RAIL|es affix bl| +68975|603145|3146|1|46|48213.06|0.04|0.00|R|F|1992-09-27|1992-08-19|1992-10-05|COLLECT COD|REG AIR|ts. even requests boost sl| +69000|663385|13386|1|43|57979.05|0.10|0.06|N|O|1997-01-31|1996-12-14|1997-02-15|NONE|TRUCK|tes are af| +69001|291618|41619|1|14|22534.40|0.08|0.05|R|F|1992-05-11|1992-03-10|1992-05-16|NONE|FOB|ackages. pinto beans integrate. ev| +69001|223436|48445|2|38|51657.96|0.02|0.04|A|F|1992-04-08|1992-03-26|1992-05-02|NONE|SHIP|inal warthogs. slyly even excu| +69001|273512|48523|3|42|62391.00|0.06|0.06|R|F|1992-03-14|1992-04-02|1992-04-04|DELIVER IN PERSON|AIR|e according to the ide| +69001|901625|39180|4|14|22772.12|0.02|0.02|R|F|1992-03-16|1992-04-03|1992-03-29|TAKE BACK RETURN|REG AIR|le unusual| +69002|577504|15038|1|7|11070.36|0.04|0.08|A|F|1993-05-18|1993-06-17|1993-06-15|TAKE BACK RETURN|MAIL|en asymptotes before the fluffily spec| +69002|106629|6630|2|18|29441.16|0.06|0.07|R|F|1993-05-30|1993-05-28|1993-06-10|DELIVER IN PERSON|RAIL|s accounts-| +69003|136882|36883|1|24|46053.12|0.00|0.06|N|O|1996-01-26|1996-02-13|1996-02-24|DELIVER IN PERSON|MAIL|ronic dugouts. | +69004|33948|21449|1|34|63985.96|0.03|0.00|N|F|1995-06-14|1995-06-16|1995-06-23|COLLECT COD|FOB|ress requests. fluffily even | +69004|549520|12031|2|39|61210.50|0.10|0.04|N|O|1995-06-26|1995-06-04|1995-07-23|DELIVER IN PERSON|REG AIR|pinto beans dazzle quic| +69005|803083|3084|1|1|986.04|0.00|0.06|N|O|1995-11-20|1996-01-01|1995-11-21|DELIVER IN PERSON|SHIP|hely regular dependencies haggle. slyl| +69005|415240|15241|2|13|15017.86|0.10|0.02|N|O|1996-02-07|1995-11-15|1996-02-14|NONE|MAIL|requests after th| +69005|938183|25738|3|21|25643.94|0.09|0.02|N|O|1995-10-25|1995-12-13|1995-10-29|COLLECT COD|SHIP|cial deposits. slyly | +69005|31551|31552|4|38|56336.90|0.08|0.06|N|O|1995-12-09|1995-12-02|1995-12-16|NONE|REG AIR|usly express pinto be| +69006|663794|1334|1|49|86130.24|0.03|0.00|A|F|1994-03-30|1994-04-09|1994-04-25|COLLECT COD|MAIL|lyly regula| +69006|379451|41959|2|40|61217.60|0.05|0.00|R|F|1994-04-03|1994-03-27|1994-04-12|COLLECT COD|SHIP|he requests | +69006|418312|18313|3|10|12302.90|0.09|0.08|R|F|1994-05-22|1994-04-06|1994-06-06|DELIVER IN PERSON|AIR|hely pending de| +69006|556665|44199|4|15|25824.60|0.09|0.00|A|F|1994-05-02|1994-04-11|1994-05-11|COLLECT COD|RAIL| against the c| +69006|857124|7125|5|14|15135.12|0.09|0.02|R|F|1994-05-24|1994-03-10|1994-05-29|COLLECT COD|FOB| foxes. furiously express | +69007|625071|25072|1|47|46813.88|0.04|0.02|N|O|1997-09-13|1997-07-03|1997-09-30|NONE|FOB|ide of the express| +69032|957032|19552|1|46|50093.54|0.03|0.06|N|O|1995-12-03|1995-10-19|1995-12-12|NONE|FOB|egular requests nag| +69033|581607|44119|1|14|23640.12|0.08|0.02|R|F|1995-03-22|1995-05-04|1995-03-25|COLLECT COD|FOB| silent escapades nag f| +69033|60370|35373|2|24|31928.88|0.00|0.07|A|F|1995-03-08|1995-04-21|1995-03-16|NONE|RAIL|sts. slyly iro| +69033|626485|38998|3|36|50812.20|0.05|0.01|R|F|1995-02-23|1995-05-04|1995-02-28|COLLECT COD|SHIP|ly final requests eat q| +69033|323506|48519|4|29|44355.21|0.05|0.05|A|F|1995-05-19|1995-05-05|1995-05-29|DELIVER IN PERSON|REG AIR|egular accounts c| +69033|159827|22331|5|6|11320.92|0.05|0.06|A|F|1995-04-07|1995-05-10|1995-04-17|TAKE BACK RETURN|FOB|ess requests. unusual instructions wa| +69033|207476|7477|6|26|35969.96|0.00|0.01|A|F|1995-02-22|1995-03-22|1995-03-11|COLLECT COD|TRUCK|thinly ironi| +69033|36046|11047|7|36|35353.44|0.09|0.04|R|F|1995-03-07|1995-03-20|1995-03-29|COLLECT COD|FOB|ajole slyly bold instructions. blithe| +69034|811273|36306|1|30|35526.90|0.06|0.07|R|F|1995-04-20|1995-05-19|1995-05-20|DELIVER IN PERSON|REG AIR|lar instructions cajole a| +69034|64108|14109|2|48|51460.80|0.03|0.07|N|O|1995-06-18|1995-06-25|1995-07-10|NONE|AIR| pending reques| +69034|457696|45224|3|48|79376.16|0.10|0.03|N|F|1995-05-23|1995-06-25|1995-06-20|TAKE BACK RETURN|FOB|unts. quickly regular instru| +69034|496623|46624|4|35|56686.00|0.03|0.06|A|F|1995-05-17|1995-06-21|1995-06-03|TAKE BACK RETURN|RAIL|le blithely about| +69034|737970|37971|5|24|48190.56|0.06|0.01|N|O|1995-08-11|1995-06-15|1995-08-21|NONE|REG AIR|ts haggle blithely pinto bea| +69035|470279|7807|1|4|4997.00|0.09|0.01|N|O|1997-09-04|1997-11-09|1997-09-17|NONE|SHIP|ts sleep carefully even packages. slyl| +69035|970458|45497|2|10|15284.10|0.08|0.00|N|O|1997-11-09|1997-10-25|1997-11-27|COLLECT COD|MAIL|counts? carefully caref| +69035|482370|19898|3|6|8114.10|0.09|0.06|N|O|1997-12-02|1997-11-03|1997-12-10|TAKE BACK RETURN|SHIP|nding excuses sleep | +69035|182066|7073|4|18|20665.08|0.09|0.00|N|O|1997-11-30|1997-09-15|1997-12-21|TAKE BACK RETURN|REG AIR|gular, unusual | +69035|967667|42706|5|45|78057.90|0.08|0.06|N|O|1997-10-14|1997-11-12|1997-11-06|NONE|RAIL|ly pending instructi| +69035|572412|47435|6|35|51953.65|0.02|0.05|N|O|1997-09-04|1997-10-03|1997-09-21|DELIVER IN PERSON|FOB|ously stealthy requests wake c| +69035|515208|27719|7|40|48927.20|0.00|0.07|N|O|1997-11-17|1997-10-26|1997-12-05|TAKE BACK RETURN|REG AIR|instructions. quickly | +69036|96914|46915|1|33|63060.03|0.10|0.04|R|F|1995-03-04|1995-05-03|1995-04-01|NONE|SHIP| carefully. pinto beans sleep. instruct| +69036|817584|42617|2|36|54055.44|0.01|0.05|R|F|1995-05-16|1995-03-30|1995-05-20|COLLECT COD|TRUCK|ake blithely furiously regular pinto be| +69036|133521|46024|3|47|73062.44|0.02|0.03|A|F|1995-05-14|1995-03-31|1995-05-24|COLLECT COD|MAIL|bits. fluffily| +69036|81288|18792|4|13|16500.64|0.00|0.02|R|F|1995-03-01|1995-05-03|1995-03-15|DELIVER IN PERSON|FOB| nag slyly never pending as| +69036|197401|47402|5|34|50945.60|0.03|0.05|A|F|1995-06-03|1995-04-16|1995-06-12|NONE|RAIL|arefully even foxes. regular sentim| +69036|712155|49698|6|22|25676.64|0.08|0.00|R|F|1995-04-24|1995-04-07|1995-04-29|TAKE BACK RETURN|FOB|ideas believe. fluffily ir| +69036|187907|25417|7|20|39898.00|0.09|0.06|A|F|1995-02-27|1995-03-31|1995-03-20|NONE|TRUCK|, final frays affix blithely. sly| +69037|138153|38154|1|13|15484.95|0.00|0.04|R|F|1994-12-03|1994-11-08|1994-12-12|DELIVER IN PERSON|TRUCK|odolites boost carefully above the ac| +69037|921026|8581|2|40|41879.20|0.04|0.07|A|F|1994-10-16|1994-12-02|1994-11-01|TAKE BACK RETURN|SHIP|ong the slyly silent pinto be| +69037|676849|14389|3|11|20083.91|0.03|0.06|A|F|1995-01-15|1994-11-22|1995-01-17|COLLECT COD|REG AIR|ctions. regular dugou| +69038|432134|44643|1|20|21322.20|0.07|0.04|R|F|1994-08-28|1994-09-12|1994-09-04|NONE|TRUCK|epths dazzle carefully| +69039|335604|10617|1|2|3279.18|0.10|0.03|N|O|1998-09-03|1998-07-19|1998-09-15|NONE|FOB|ackages wake above t| +69039|489934|2444|2|20|38478.20|0.02|0.03|N|O|1998-10-01|1998-08-04|1998-10-15|DELIVER IN PERSON|AIR|lyly about the bold depos| +69039|306423|43942|3|32|45741.12|0.01|0.01|N|O|1998-07-13|1998-08-29|1998-07-26|COLLECT COD|FOB| blithely regular requests. regular,| +69064|835765|23314|1|14|23810.08|0.10|0.08|A|F|1993-05-12|1993-05-24|1993-05-28|NONE|SHIP|y. blithely unusual packag| +69064|692352|42353|2|11|14787.52|0.09|0.04|A|F|1993-05-02|1993-05-12|1993-05-03|TAKE BACK RETURN|SHIP|g theodolites h| +69064|344287|6794|3|48|63900.96|0.00|0.08|R|F|1993-06-04|1993-05-02|1993-06-30|NONE|MAIL|ding instructions nag along the final ac| +69064|419710|44727|4|18|29334.42|0.10|0.03|R|F|1993-07-18|1993-06-14|1993-07-30|DELIVER IN PERSON|AIR|eodolites sleep slyly. bli| +69064|65740|3244|5|24|40937.76|0.03|0.01|R|F|1993-07-21|1993-06-18|1993-08-18|TAKE BACK RETURN|AIR|nal instructions. pending, bold | +69065|177088|39592|1|19|22136.52|0.04|0.02|R|F|1993-01-25|1992-12-28|1993-02-18|NONE|RAIL|alongside of the unus| +69065|303060|40579|2|18|19134.90|0.04|0.08|R|F|1992-12-26|1992-12-19|1993-01-21|DELIVER IN PERSON|REG AIR|lyly express | +69065|515685|15686|3|11|18707.26|0.02|0.02|A|F|1993-01-29|1992-11-20|1993-02-16|NONE|TRUCK| the slyly| +69066|805850|43399|1|22|38627.82|0.02|0.04|N|O|1996-06-27|1996-08-10|1996-07-13|TAKE BACK RETURN|RAIL|ly final pinto beans. carefully special req| +69066|918525|43562|2|28|43217.44|0.01|0.07|N|O|1996-07-07|1996-07-31|1996-07-17|COLLECT COD|TRUCK|inal, regular foxes lose slyly | +69066|638493|13518|3|21|30060.66|0.09|0.00|N|O|1996-07-10|1996-06-14|1996-08-09|COLLECT COD|RAIL| final dolphins. furiously even| +69066|138553|1056|4|1|1591.55|0.08|0.00|N|O|1996-05-16|1996-06-12|1996-06-14|NONE|AIR|old packages | +69066|647595|35132|5|33|50904.48|0.02|0.01|N|O|1996-07-16|1996-07-18|1996-08-02|COLLECT COD|TRUCK|express accounts. fluffily final| +69066|117313|29816|6|11|14633.41|0.02|0.03|N|O|1996-05-26|1996-07-11|1996-06-04|TAKE BACK RETURN|TRUCK|ular accounts print fluff| +69067|751630|39176|1|13|21860.80|0.06|0.01|N|O|1997-05-20|1997-06-26|1997-05-23|NONE|RAIL|ely after the| +69067|632398|19935|2|48|63857.28|0.05|0.07|N|O|1997-05-25|1997-07-06|1997-06-13|TAKE BACK RETURN|MAIL|owly ironic instructions. blithely ironic | +69067|711853|49396|3|49|91376.18|0.04|0.03|N|O|1997-06-29|1997-07-31|1997-07-04|TAKE BACK RETURN|SHIP|ccording to the carefully| +69067|103655|41162|4|28|46442.20|0.01|0.05|N|O|1997-07-30|1997-06-15|1997-08-01|NONE|FOB|ges; quickly reg| +69068|680595|43109|1|2|3151.12|0.06|0.00|N|O|1997-12-06|1997-10-25|1997-12-27|NONE|REG AIR|posits haggle blithel| +69068|754321|29352|2|25|34382.25|0.05|0.04|N|O|1997-12-02|1997-11-03|1997-12-18|TAKE BACK RETURN|TRUCK|lar instructions. f| +69068|869948|44983|3|23|44111.70|0.07|0.01|N|O|1997-12-20|1997-11-21|1997-12-21|COLLECT COD|REG AIR|lly alongsid| +69069|179056|16566|1|17|19295.85|0.06|0.04|N|O|1995-07-22|1995-09-01|1995-08-16|DELIVER IN PERSON|SHIP|he carefully unusual ac| +69070|353960|3961|1|36|72502.20|0.07|0.04|N|O|1997-06-13|1997-06-25|1997-06-26|TAKE BACK RETURN|MAIL|ns. stealthy, r| +69070|990861|15900|2|24|46843.68|0.10|0.08|N|O|1997-07-09|1997-05-16|1997-08-01|DELIVER IN PERSON|SHIP|lar accounts eat af| +69070|386279|36280|3|12|16383.12|0.04|0.08|N|O|1997-07-18|1997-06-19|1997-08-04|DELIVER IN PERSON|TRUCK|e ironic instructions | +69070|177209|14719|4|29|37299.80|0.10|0.04|N|O|1997-05-27|1997-06-15|1997-06-11|COLLECT COD|SHIP|es boost careful| +69070|350289|12797|5|13|17410.51|0.05|0.04|N|O|1997-05-12|1997-06-15|1997-05-30|NONE|MAIL|kly final accounts serve about the care| +69070|301845|26858|6|37|68332.71|0.10|0.05|N|O|1997-05-01|1997-05-13|1997-05-18|DELIVER IN PERSON|TRUCK|s to the requests cajole slyly | +69070|101039|26044|7|44|45761.32|0.07|0.04|N|O|1997-06-11|1997-05-23|1997-06-24|TAKE BACK RETURN|MAIL|ial pinto beans play b| +69071|150998|26005|1|50|102449.50|0.09|0.01|R|F|1994-12-26|1995-01-03|1994-12-30|NONE|REG AIR|eep slyly about the f| +69071|821792|9341|2|34|58267.50|0.10|0.06|A|F|1995-02-26|1994-12-20|1995-03-10|NONE|AIR|ecial excuses use. quickly final packages d| +69071|850348|37900|3|41|53230.30|0.05|0.05|A|F|1995-01-08|1995-02-04|1995-01-20|TAKE BACK RETURN|MAIL|deas boost furiously above the| +69071|783604|33605|4|46|77628.22|0.02|0.08|R|F|1994-12-10|1994-12-29|1994-12-21|COLLECT COD|REG AIR|ntegrate furiously pending ide| +69071|30028|30029|5|40|38320.80|0.00|0.06|A|F|1994-12-26|1994-12-26|1995-01-07|NONE|MAIL|ven ideas nag slyly above the furiou| +69096|504527|4528|1|17|26035.50|0.06|0.04|A|F|1994-04-13|1994-04-26|1994-05-02|DELIVER IN PERSON|MAIL|bold packages affix | +69096|571335|33847|2|43|60471.33|0.08|0.05|R|F|1994-06-06|1994-05-12|1994-07-03|COLLECT COD|MAIL|ites integrate fluffil| +69096|424297|24298|3|50|61063.50|0.06|0.01|R|F|1994-05-14|1994-05-18|1994-05-23|TAKE BACK RETURN|FOB|p blithely pinto beans. regula| +69096|158874|46384|4|19|36724.53|0.05|0.04|R|F|1994-04-04|1994-05-31|1994-04-14|NONE|AIR|arefully above the regular, ironic acc| +69096|180355|17865|5|1|1435.35|0.02|0.07|R|F|1994-03-06|1994-04-28|1994-03-27|DELIVER IN PERSON|REG AIR|ily even accounts are across the sl| +69096|218126|5639|6|5|5220.55|0.01|0.01|R|F|1994-07-03|1994-05-01|1994-07-20|DELIVER IN PERSON|MAIL|re furiously. deposits sleep. quic| +69096|30691|5692|7|32|51894.08|0.06|0.04|A|F|1994-05-26|1994-04-06|1994-06-21|COLLECT COD|MAIL|y above the e| +69097|812551|12552|1|44|64394.44|0.02|0.06|A|F|1993-12-11|1993-11-20|1993-12-18|NONE|REG AIR|ts. ironic packages unwind. fi| +69097|529303|29304|2|27|35971.56|0.01|0.06|R|F|1993-11-29|1994-01-14|1993-12-02|DELIVER IN PERSON|AIR|pecial packages. carefully pen| +69097|992330|42331|3|40|56891.60|0.07|0.00|A|F|1993-11-26|1994-01-06|1993-12-26|TAKE BACK RETURN|SHIP|ges affix careful| +69097|79280|16784|4|33|41556.24|0.09|0.05|R|F|1994-01-21|1993-12-23|1994-01-26|DELIVER IN PERSON|MAIL|the slyly unusual foxes. even, express pac| +69097|447193|22210|5|28|31924.76|0.01|0.03|A|F|1993-12-11|1994-01-04|1994-01-09|COLLECT COD|MAIL|ooze carefully| +69097|969163|31683|6|14|17249.68|0.03|0.01|A|F|1994-01-27|1993-12-25|1994-02-14|DELIVER IN PERSON|AIR|s haggle. pending, ironi| +69098|610100|22613|1|16|16161.12|0.01|0.01|R|F|1992-12-12|1992-11-16|1992-12-21|NONE|AIR|onic dependencies mold| +69098|936660|36661|2|13|22056.06|0.07|0.01|R|F|1993-01-14|1992-12-12|1993-01-28|DELIVER IN PERSON|MAIL|unts are alongside of the slyly final| +69098|431544|19069|3|28|41314.56|0.05|0.03|A|F|1992-12-26|1992-12-14|1993-01-10|NONE|MAIL|s foxes against the slyly final deposi| +69098|955133|42691|4|45|53464.05|0.10|0.01|R|F|1993-01-01|1992-11-06|1993-01-20|DELIVER IN PERSON|RAIL|slyly. deposits x-ray furiousl| +69099|194727|7231|1|38|69225.36|0.03|0.07|R|F|1992-04-07|1992-02-04|1992-04-18|DELIVER IN PERSON|REG AIR|ove the special instructions n| +69099|760942|35973|2|46|92133.86|0.00|0.00|R|F|1992-02-12|1992-03-23|1992-03-07|NONE|TRUCK|le about the furiously regular pint| +69099|140977|28484|3|7|14125.79|0.06|0.03|A|F|1992-04-16|1992-03-16|1992-04-28|DELIVER IN PERSON|AIR|blithely pending foxes. furiously unusu| +69099|389411|39412|4|34|51013.60|0.06|0.04|R|F|1992-03-01|1992-03-03|1992-03-19|NONE|SHIP|efully ironic | +69099|827966|27967|5|13|24620.96|0.03|0.02|R|F|1992-01-10|1992-03-01|1992-01-19|COLLECT COD|REG AIR|press excuses. express instruction| +69099|615505|40530|6|18|25568.46|0.08|0.02|R|F|1992-01-07|1992-03-02|1992-01-10|TAKE BACK RETURN|TRUCK|ies nag along the foxes: quickly | +69099|788535|38536|7|45|73057.50|0.03|0.00|A|F|1992-04-03|1992-03-20|1992-04-09|DELIVER IN PERSON|MAIL|ly. furiously pending theodolites | +69100|900635|38190|1|41|67059.19|0.09|0.00|N|O|1996-11-26|1996-10-01|1996-12-18|COLLECT COD|RAIL|us foxes sleep regul| +69100|956672|6673|2|29|50130.27|0.10|0.03|N|O|1996-08-30|1996-09-20|1996-09-10|TAKE BACK RETURN|AIR|ic requests | +69100|779773|17319|3|37|68551.38|0.07|0.08|N|O|1996-11-06|1996-09-20|1996-11-20|DELIVER IN PERSON|MAIL|gular decoys. final sa| +69100|637417|24954|4|20|27087.60|0.05|0.07|N|O|1996-08-25|1996-10-30|1996-09-17|TAKE BACK RETURN|MAIL|beans. waters integrate. blithely bold dep| +69101|275976|987|1|28|54654.88|0.01|0.04|N|O|1996-02-05|1995-11-23|1996-02-06|NONE|MAIL|al accounts| +69101|312824|37837|2|43|78982.83|0.04|0.07|N|O|1996-01-29|1996-01-15|1996-02-03|DELIVER IN PERSON|RAIL|cross the quickly entic| +69101|616366|41391|3|31|39752.23|0.08|0.08|N|O|1995-11-27|1996-01-02|1995-12-05|NONE|SHIP|inal warthogs. ironic dependencies | +69101|250343|25354|4|49|63373.17|0.08|0.08|N|O|1995-10-19|1995-11-17|1995-10-25|COLLECT COD|FOB|n theodolites-- | +69101|503237|40768|5|9|11161.89|0.08|0.06|N|O|1996-01-07|1995-11-22|1996-01-16|TAKE BACK RETURN|TRUCK|regular theodolites.| +69101|894789|44790|6|12|21404.88|0.06|0.00|N|O|1995-12-23|1996-01-16|1996-01-14|NONE|MAIL|theodolites.| +69101|711695|11696|7|42|71679.72|0.04|0.02|N|O|1995-12-25|1995-12-10|1996-01-13|NONE|AIR|cajole. carefully even accounts | +69102|454491|42019|1|22|31800.34|0.08|0.00|N|O|1996-03-23|1996-02-14|1996-04-17|DELIVER IN PERSON|FOB|ackages boost. regular pinto beans wake ac| +69102|624319|24320|2|29|36055.12|0.08|0.05|N|O|1995-12-16|1996-02-18|1996-01-06|NONE|AIR|ly special accounts boost blithely ab| +69102|923243|48280|3|33|41784.60|0.09|0.06|N|O|1996-01-30|1996-01-15|1996-02-15|NONE|REG AIR|endencies. | +69102|932542|32543|4|1|1574.50|0.01|0.01|N|O|1995-12-13|1996-02-02|1995-12-21|DELIVER IN PERSON|AIR| carefully even accou| +69102|232869|20382|5|23|41442.55|0.08|0.08|N|O|1995-12-20|1996-01-23|1995-12-30|COLLECT COD|SHIP|quickly slyl| +69102|821423|33940|6|2|2688.76|0.02|0.03|N|O|1995-12-05|1996-02-05|1995-12-25|NONE|SHIP|s dependencies cajole fluffily abo| +69102|643716|43717|7|33|54769.44|0.08|0.07|N|O|1996-01-20|1996-02-12|1996-02-07|NONE|REG AIR|the slyly even excuses. un| +69103|924558|24559|1|15|23737.65|0.02|0.04|N|O|1996-05-09|1996-04-24|1996-06-08|NONE|REG AIR|l accounts sleep quietly idea| +69103|29709|17210|2|6|9832.20|0.04|0.02|N|O|1996-06-15|1996-05-15|1996-07-11|TAKE BACK RETURN|REG AIR|osits haggle blithely. fluffily fi| +69103|312357|12358|3|5|6846.70|0.04|0.00|N|O|1996-05-27|1996-05-09|1996-06-08|NONE|AIR|ss the furiously regular requests. dar| +69103|778241|28242|4|19|25064.99|0.10|0.01|N|O|1996-03-24|1996-06-05|1996-04-12|COLLECT COD|MAIL|s sleep carefully across the final ideas. d| +69103|892442|4960|5|28|40163.20|0.06|0.08|N|O|1996-06-03|1996-05-25|1996-06-07|DELIVER IN PERSON|AIR|ses affix quickly. quiet| +69103|261848|24354|6|44|79632.52|0.04|0.03|N|O|1996-07-01|1996-05-01|1996-07-09|DELIVER IN PERSON|TRUCK|se. quickly regular requests breach among | +69103|870367|20368|7|8|10698.56|0.09|0.04|N|O|1996-04-20|1996-05-10|1996-05-16|DELIVER IN PERSON|FOB|en, even requests eat quickly r| +69128|257893|45409|1|48|88842.24|0.05|0.06|N|O|1996-07-03|1996-05-14|1996-07-19|TAKE BACK RETURN|REG AIR|tructions serve. bold, | +69128|391465|16480|2|40|62258.00|0.00|0.04|N|O|1996-06-30|1996-06-01|1996-07-01|TAKE BACK RETURN|RAIL|usly fluffily ironic accounts. theodolites| +69128|347091|9598|3|35|39832.80|0.10|0.07|N|O|1996-07-16|1996-06-18|1996-08-02|TAKE BACK RETURN|AIR|y. fluffily fina| +69128|551570|39104|4|32|51889.60|0.10|0.08|N|O|1996-05-18|1996-04-25|1996-06-16|COLLECT COD|MAIL|uffily regular for| +69128|223504|23505|5|24|34259.76|0.07|0.01|N|O|1996-04-24|1996-04-26|1996-05-01|COLLECT COD|RAIL|xes grow ironic requests. fu| +69128|428199|15724|6|1|1127.17|0.08|0.00|N|O|1996-06-04|1996-05-27|1996-06-15|NONE|FOB|uests sleep sl| +69128|723812|23813|7|3|5507.34|0.03|0.03|N|O|1996-06-05|1996-04-22|1996-06-06|NONE|MAIL|mptotes impress quickly deposits. regul| +69129|108257|20760|1|33|41753.25|0.05|0.05|A|F|1994-11-16|1994-10-04|1994-11-27|COLLECT COD|SHIP|y even asymptotes about the ironic, reg| +69129|468495|31005|2|49|71710.03|0.09|0.07|A|F|1994-12-25|1994-11-16|1995-01-17|COLLECT COD|AIR|nt pinto beans sleep blithely alongside| +69130|329305|16824|1|49|65380.21|0.07|0.02|N|O|1997-09-20|1997-08-10|1997-10-12|DELIVER IN PERSON|REG AIR|past the carefully fin| +69130|623333|35846|2|44|55277.20|0.06|0.03|N|O|1997-10-18|1997-09-13|1997-10-25|NONE|FOB|bold ideas. always fina| +69130|353074|15582|3|28|31557.68|0.04|0.05|N|O|1997-10-23|1997-09-05|1997-11-14|NONE|FOB|lphins. closely unusual requests| +69130|102117|14620|4|36|40287.96|0.00|0.05|N|O|1997-07-30|1997-09-17|1997-08-06|DELIVER IN PERSON|MAIL|odolites alongside of| +69130|265795|40806|5|37|65148.86|0.08|0.02|N|O|1997-08-10|1997-09-17|1997-08-22|NONE|SHIP|hely express pa| +69130|213161|25666|6|40|42966.00|0.06|0.04|N|O|1997-07-14|1997-09-22|1997-07-19|DELIVER IN PERSON|MAIL|ests. quickly bold instructions lo| +69131|499202|11712|1|48|57656.64|0.04|0.04|A|F|1993-01-26|1993-01-20|1993-02-02|NONE|REG AIR|are blithe| +69131|86234|11237|2|32|39047.36|0.01|0.02|A|F|1993-02-28|1993-02-15|1993-03-07|TAKE BACK RETURN|TRUCK|ns-- final pinto beans engage slyly ab| +69131|319915|44928|3|17|32893.30|0.00|0.03|A|F|1993-02-10|1993-02-03|1993-02-20|COLLECT COD|TRUCK|nal excuses slee| +69131|803987|16504|4|6|11345.64|0.10|0.05|A|F|1993-01-05|1993-02-05|1993-01-14|COLLECT COD|RAIL|s. final, even | +69131|595219|45220|5|23|30226.37|0.02|0.07|A|F|1993-03-02|1993-01-27|1993-03-25|TAKE BACK RETURN|REG AIR| slyly regular ideas shall have to r| +69131|842839|17872|6|12|21381.48|0.04|0.08|R|F|1993-01-20|1993-02-05|1993-02-06|DELIVER IN PERSON|REG AIR|counts cajole slyly according to the| +69131|580849|18383|7|40|77192.80|0.01|0.07|R|F|1992-12-22|1993-03-02|1992-12-29|TAKE BACK RETURN|SHIP|final, final requests among the blit| +69132|314900|27407|1|16|30638.24|0.07|0.07|N|O|1997-12-31|1997-12-17|1998-01-03|COLLECT COD|RAIL|nic, unusual dependencies. reg| +69132|523898|23899|2|6|11531.22|0.09|0.02|N|O|1998-01-01|1997-11-07|1998-01-09|NONE|SHIP| the slyly final requests use carefully | +69132|143757|18762|3|10|18007.50|0.00|0.05|N|O|1997-11-18|1997-11-07|1997-11-27|NONE|MAIL|oxes boost flu| +69132|119136|31639|4|2|2310.26|0.03|0.02|N|O|1997-10-26|1997-12-18|1997-11-24|TAKE BACK RETURN|RAIL|uriously silent packag| +69132|311100|11101|5|41|45554.69|0.01|0.04|N|O|1997-12-27|1997-11-13|1997-12-30|NONE|TRUCK|dugouts. foxes affix furiously? sly| +69132|651294|38834|6|40|49810.40|0.03|0.07|N|O|1997-10-05|1997-11-02|1997-10-18|COLLECT COD|RAIL|ong the furiously ironic deposits. c| +69132|289474|26990|7|11|16098.06|0.01|0.08|N|O|1997-10-14|1997-11-20|1997-11-12|NONE|AIR| accounts cajole accordin| +69133|185611|10618|1|18|30538.98|0.10|0.03|R|F|1994-11-12|1994-09-15|1994-11-29|COLLECT COD|TRUCK|oxes. ironic packages poach carefully. bl| +69133|561196|48730|2|34|42743.78|0.10|0.03|R|F|1994-08-25|1994-09-26|1994-09-24|TAKE BACK RETURN|TRUCK|y bold idea| +69133|9490|21991|3|44|61577.56|0.10|0.05|A|F|1994-08-20|1994-09-08|1994-08-26|DELIVER IN PERSON|TRUCK| blithely above the deposits. fu| +69133|483218|20746|4|6|7207.14|0.10|0.04|A|F|1994-09-25|1994-08-29|1994-10-19|COLLECT COD|AIR|lithely. blithely final courts integrate ca| +69134|147401|47402|1|4|5793.60|0.06|0.07|N|O|1998-05-31|1998-07-03|1998-06-10|TAKE BACK RETURN|FOB|s breach. carefully regular dolphins use. | +69134|356218|43740|2|49|62435.80|0.06|0.04|N|O|1998-06-23|1998-07-15|1998-07-22|DELIVER IN PERSON|AIR|tions use express,| +69134|946764|34319|3|48|86914.56|0.02|0.07|N|O|1998-07-26|1998-05-25|1998-08-01|COLLECT COD|REG AIR|tect. express accounts promise bold | +69134|248175|23184|4|11|12354.76|0.02|0.01|N|O|1998-05-01|1998-06-17|1998-05-16|NONE|TRUCK|ickly after the idl| +69134|66103|16104|5|2|2138.20|0.01|0.02|N|O|1998-06-24|1998-05-29|1998-07-07|TAKE BACK RETURN|AIR|deposits sleep always | +69134|992984|42985|6|14|29077.16|0.04|0.04|N|O|1998-08-05|1998-07-13|1998-08-22|TAKE BACK RETURN|REG AIR|ly even instructions according to the pendi| +69134|80416|42918|7|19|26531.79|0.04|0.02|N|O|1998-05-16|1998-07-06|1998-05-25|DELIVER IN PERSON|RAIL|ly final instru| +69135|539097|14118|1|17|19313.19|0.09|0.08|R|F|1992-07-20|1992-07-25|1992-07-21|TAKE BACK RETURN|AIR|es affix fluffily. quickly ironic requests | +69135|590306|2818|2|25|34907.00|0.08|0.05|A|F|1992-09-06|1992-08-08|1992-10-05|NONE|MAIL|ully ironically final deposits. fu| +69135|266965|41976|3|4|7727.80|0.03|0.02|A|F|1992-07-15|1992-08-31|1992-08-01|COLLECT COD|TRUCK|cingly ironic excuses. slyly iro| +69160|904413|41968|1|50|70868.50|0.09|0.06|N|O|1997-08-15|1997-08-21|1997-09-08|NONE|SHIP| ironic accounts. regular pac| +69160|459269|34288|2|12|14738.88|0.00|0.01|N|O|1997-07-17|1997-08-13|1997-08-07|TAKE BACK RETURN|AIR|its cajole slyly above the carefully iro| +69160|922046|22047|3|31|33108.00|0.04|0.01|N|O|1997-09-22|1997-09-01|1997-09-26|NONE|MAIL|t requests. blithely express accounts | +69160|818124|5673|4|21|21883.68|0.04|0.05|N|O|1997-07-14|1997-07-29|1997-08-09|COLLECT COD|MAIL| instructions a| +69160|199705|49706|5|9|16242.30|0.08|0.03|N|O|1997-09-14|1997-08-08|1997-09-26|NONE|AIR|ests: slyly special theodolites acco| +69160|428140|40649|6|21|22430.52|0.07|0.06|N|O|1997-09-20|1997-08-11|1997-09-30|TAKE BACK RETURN|RAIL| ironic accounts are quick| +69160|736712|49227|7|40|69947.20|0.05|0.03|N|O|1997-10-01|1997-07-28|1997-10-02|COLLECT COD|TRUCK|deposits. slyly | +69161|904728|29765|1|27|46782.36|0.10|0.01|A|F|1994-08-29|1994-08-17|1994-09-06|NONE|FOB|furiously r| +69161|747233|9748|2|32|40966.40|0.00|0.02|A|F|1994-08-21|1994-08-16|1994-09-10|COLLECT COD|AIR|ording to the carefully final instruct| +69161|743983|6498|3|9|18242.55|0.10|0.08|A|F|1994-07-20|1994-07-10|1994-08-18|NONE|SHIP|eep unusual, final pa| +69161|110118|22621|4|39|43996.29|0.02|0.05|A|F|1994-09-11|1994-08-07|1994-09-22|NONE|SHIP|s. furious| +69162|70119|45122|1|19|20693.09|0.07|0.05|N|O|1998-07-09|1998-05-30|1998-07-16|NONE|FOB|s nag ruthlessly| +69162|481833|44343|2|2|3629.62|0.06|0.07|N|O|1998-07-26|1998-05-16|1998-08-05|COLLECT COD|FOB|e quickly blithely ironic instructio| +69162|153550|3551|3|27|43295.85|0.09|0.07|N|O|1998-04-25|1998-05-23|1998-04-29|NONE|TRUCK|nts. final accounts print| +69163|62318|49822|1|28|35848.68|0.09|0.00|R|F|1993-12-22|1994-01-26|1994-01-08|NONE|FOB|deposits kindle f| +69163|370167|20168|2|5|6185.75|0.07|0.03|A|F|1994-01-30|1994-02-10|1994-02-17|TAKE BACK RETURN|FOB|requests. quickly final hockey players sl| +69163|386179|11194|3|36|45545.76|0.09|0.08|R|F|1994-03-23|1994-02-12|1994-04-01|TAKE BACK RETURN|REG AIR|into the theod| +69163|505035|42566|4|45|46800.45|0.01|0.04|A|F|1993-12-27|1994-01-23|1993-12-31|NONE|FOB|ily ironic foxes. never unusual excuses acr| +69163|118012|30515|5|48|49440.48|0.00|0.08|A|F|1994-02-11|1994-01-10|1994-03-10|COLLECT COD|RAIL|ut the slyly regular requests. fluff| +69164|635820|10845|1|45|79010.55|0.08|0.07|R|F|1993-10-02|1993-08-23|1993-10-13|DELIVER IN PERSON|TRUCK|according to the | +69164|221000|8513|2|9|8288.91|0.06|0.01|R|F|1993-08-21|1993-08-06|1993-08-31|TAKE BACK RETURN|AIR|nal ideas cajole final accounts. sile| +69164|344692|19705|3|40|69467.20|0.04|0.04|R|F|1993-09-29|1993-09-29|1993-10-26|TAKE BACK RETURN|MAIL|regular instructions haggle af| +69164|227063|27064|4|34|33661.70|0.06|0.06|R|F|1993-07-18|1993-10-03|1993-08-04|COLLECT COD|TRUCK| quickly pending instru| +69164|239253|26766|5|15|17883.60|0.08|0.01|A|F|1993-08-29|1993-09-24|1993-09-10|NONE|SHIP|ites haggle furious| +69165|521887|9418|1|34|64901.24|0.03|0.04|N|O|1997-11-21|1997-10-18|1997-12-17|DELIVER IN PERSON|MAIL|ironic excuses| +69165|346450|33969|2|20|29928.80|0.03|0.03|N|O|1997-10-20|1997-10-10|1997-11-13|COLLECT COD|FOB|. blithely pending accounts above t| +69165|781734|44250|3|27|49023.90|0.03|0.06|N|O|1997-11-05|1997-09-30|1997-11-17|COLLECT COD|AIR|bold orbits. furiously quick sheaves c| +69166|608026|33051|1|34|31755.66|0.10|0.04|N|O|1998-04-08|1998-01-31|1998-04-09|NONE|AIR|s after the unusual, | +69166|83677|21181|2|47|78051.49|0.01|0.06|N|O|1998-03-26|1998-02-07|1998-04-13|TAKE BACK RETURN|REG AIR|luffily quickly express | +69166|356513|44035|3|30|47085.00|0.04|0.06|N|O|1998-03-21|1998-03-12|1998-04-04|COLLECT COD|MAIL| play carefully express packages. unu| +69166|908330|45885|4|17|22750.93|0.00|0.01|N|O|1998-03-21|1998-02-09|1998-03-28|TAKE BACK RETURN|FOB| deposits | +69167|534409|34410|1|38|54848.44|0.01|0.07|N|O|1995-12-21|1995-11-27|1996-01-03|COLLECT COD|FOB|lly-- slyly iron| +69167|810065|22582|2|20|19500.40|0.04|0.00|N|O|1995-11-04|1995-12-09|1995-11-14|TAKE BACK RETURN|SHIP|tes affix b| +69167|759978|22494|3|38|77441.72|0.01|0.06|N|O|1996-02-02|1995-11-29|1996-03-03|COLLECT COD|AIR| regular packages nag slyly around the fina| +69192|750553|25584|1|9|14431.68|0.08|0.03|N|O|1996-05-23|1996-07-06|1996-06-12|DELIVER IN PERSON|FOB|ronic packages sleep carefull| +69192|540408|2919|2|24|34761.12|0.07|0.02|N|O|1996-05-21|1996-06-23|1996-06-08|COLLECT COD|MAIL|ross the fluffil| +69192|621598|21599|3|27|41028.12|0.09|0.07|N|O|1996-04-16|1996-06-25|1996-04-20|NONE|AIR|ake blithely across the pe| +69192|192891|30401|4|38|75387.82|0.10|0.03|N|O|1996-04-11|1996-05-22|1996-05-06|TAKE BACK RETURN|RAIL|s are blith| +69192|904190|41745|5|9|10747.35|0.07|0.01|N|O|1996-04-30|1996-06-29|1996-05-03|TAKE BACK RETURN|SHIP|ly even requests around the express| +69193|5586|5587|1|7|10441.06|0.02|0.08|R|F|1993-02-12|1993-02-16|1993-02-22|TAKE BACK RETURN|RAIL|kly against th| +69193|875414|12966|2|18|25008.66|0.00|0.05|R|F|1993-01-22|1993-02-22|1993-02-16|TAKE BACK RETURN|MAIL|encies poach ironically. furiously express| +69193|68171|30673|3|14|15948.38|0.08|0.08|R|F|1993-01-12|1993-03-30|1993-01-15|COLLECT COD|TRUCK|usly. packages cajole furiously along t| +69194|833741|46258|1|41|68662.70|0.09|0.05|R|F|1993-03-24|1993-01-28|1993-04-16|DELIVER IN PERSON|SHIP|nding courts sleep slyly f| +69194|672439|34953|2|43|60690.20|0.10|0.04|A|F|1993-03-18|1993-01-17|1993-04-15|NONE|FOB|e quickly even accounts. quick requests af| +69194|677577|2604|3|30|46636.20|0.00|0.00|R|F|1993-01-09|1993-02-03|1993-02-05|COLLECT COD|RAIL|nal, final instructions promise quickly | +69194|25823|38324|4|43|75199.26|0.04|0.03|R|F|1993-02-21|1993-03-01|1993-03-15|TAKE BACK RETURN|FOB|. special, even r| +69194|995491|33049|5|27|42834.15|0.02|0.01|A|F|1993-01-30|1993-02-03|1993-02-20|TAKE BACK RETURN|FOB| pending deposits are slyly| +69194|203610|16115|6|31|46921.60|0.10|0.05|R|F|1993-01-26|1993-02-25|1993-02-13|DELIVER IN PERSON|FOB|ld packages w| +69194|63970|1474|7|11|21273.67|0.10|0.01|R|F|1993-02-26|1993-02-03|1993-03-11|NONE|SHIP|ely around the carefully daring accounts.| +69195|133899|46402|1|22|42523.58|0.08|0.05|R|F|1994-03-03|1994-05-16|1994-03-10|COLLECT COD|MAIL|fully ironic requests wake fur| +69195|428106|15631|2|12|12408.96|0.08|0.07|A|F|1994-05-08|1994-04-18|1994-05-12|NONE|REG AIR|. regular | +69196|649502|37039|1|49|71122.03|0.02|0.04|R|F|1992-07-21|1992-05-31|1992-07-29|NONE|TRUCK| slyly regul| +69196|172541|47548|2|21|33884.34|0.05|0.08|A|F|1992-04-09|1992-04-30|1992-05-09|COLLECT COD|RAIL| beans cajole. ironic, expre| +69197|358305|8306|1|16|21812.64|0.00|0.01|R|F|1995-02-13|1995-04-22|1995-03-05|COLLECT COD|AIR|lyly final accounts| +69197|29583|4584|2|44|66553.52|0.00|0.07|A|F|1995-02-13|1995-04-06|1995-02-17|COLLECT COD|TRUCK|use. furiously f| +69197|193430|18437|3|27|41132.61|0.07|0.04|A|F|1995-02-04|1995-03-10|1995-02-06|COLLECT COD|FOB| slyly. sauternes in place of the si| +69198|809868|47417|1|15|26667.30|0.03|0.07|N|O|1998-04-04|1998-03-17|1998-04-20|NONE|RAIL|y. blithely ironic dolphi| +69198|437982|25507|2|47|90238.12|0.02|0.02|N|O|1998-05-01|1998-04-04|1998-05-05|TAKE BACK RETURN|FOB|ic pearls nag blithel| +69198|155917|5918|3|44|86808.04|0.01|0.07|N|O|1998-05-21|1998-04-14|1998-05-29|COLLECT COD|REG AIR|ets-- request| +69198|484061|46571|4|41|42846.64|0.06|0.06|N|O|1998-06-04|1998-04-10|1998-07-03|DELIVER IN PERSON|MAIL|even accounts. dep| +69198|599471|11983|5|32|50254.40|0.06|0.02|N|O|1998-02-24|1998-03-29|1998-03-23|NONE|MAIL|accounts. furiously regular Tire| +69199|888520|1038|1|48|72407.04|0.01|0.05|A|F|1994-09-26|1994-08-18|1994-10-07|DELIVER IN PERSON|SHIP|dolites engage quickly alongside of the bol| +69199|346147|8654|2|21|25055.73|0.09|0.02|A|F|1994-08-06|1994-07-16|1994-08-10|DELIVER IN PERSON|FOB|pinto beans. blithely final accounts | +69224|328235|28236|1|17|21474.74|0.09|0.06|N|O|1996-02-28|1996-02-27|1996-03-16|TAKE BACK RETURN|SHIP|ges are carefully about the furiously si| +69224|635637|23174|2|42|66049.20|0.05|0.06|N|O|1996-02-28|1996-01-11|1996-03-07|COLLECT COD|RAIL| nag even asymptotes. regular pack| +69224|135384|47887|3|1|1419.38|0.10|0.03|N|O|1995-12-17|1996-02-27|1996-01-11|TAKE BACK RETURN|AIR|ely regular instructions around the quickly| +69225|740749|28292|1|36|64429.56|0.07|0.07|R|F|1995-04-17|1995-06-11|1995-05-03|DELIVER IN PERSON|MAIL|n sheaves. carefully ironic packages s| +69226|677530|40044|1|30|45225.00|0.02|0.04|R|F|1993-01-11|1993-03-16|1993-01-27|TAKE BACK RETURN|REG AIR|tructions | +69226|242301|4806|2|39|48488.31|0.09|0.05|R|F|1993-04-03|1993-02-08|1993-04-22|NONE|REG AIR|cies about| +69226|352906|2907|3|10|19588.90|0.02|0.06|R|F|1993-03-11|1993-03-29|1993-03-21|DELIVER IN PERSON|TRUCK|ward the regular deposits sleep fi| +69226|287989|25505|4|8|15815.76|0.02|0.07|A|F|1993-01-21|1993-04-02|1993-02-17|NONE|SHIP|uffily final g| +69226|223313|48322|5|9|11126.70|0.09|0.00|A|F|1993-03-14|1993-02-18|1993-03-20|COLLECT COD|FOB|sts. regular, fin| +69226|207460|32469|6|16|21879.20|0.07|0.02|A|F|1993-02-23|1993-02-05|1993-03-04|NONE|REG AIR|silent requests nag across the s| +69227|383646|46154|1|44|76103.72|0.08|0.03|N|O|1998-05-12|1998-06-05|1998-06-09|COLLECT COD|FOB|he ironic accounts. quickly b| +69227|931606|19161|2|7|11462.92|0.02|0.06|N|O|1998-05-14|1998-07-23|1998-06-13|NONE|REG AIR|ironic accounts nag furiously slyly | +69228|769996|45027|1|12|24791.52|0.10|0.01|R|F|1993-12-30|1994-01-27|1994-01-08|COLLECT COD|TRUCK|e. quickly final asymptotes haggle quickl| +69228|314396|14397|2|9|12693.42|0.10|0.04|A|F|1994-02-21|1994-02-13|1994-03-04|TAKE BACK RETURN|SHIP|ckages haggle blithely. b| +69228|49975|37476|3|12|23099.64|0.00|0.08|R|F|1994-02-25|1994-01-06|1994-03-09|NONE|MAIL|ve the ironic, pending requests. slyly | +69228|919023|31542|4|16|16671.68|0.05|0.00|R|F|1994-02-04|1994-01-25|1994-03-03|DELIVER IN PERSON|RAIL|l, final somas | +69228|12583|84|5|17|25424.86|0.02|0.00|A|F|1994-01-27|1994-01-27|1994-02-23|COLLECT COD|SHIP|foxes across the pinto beans boost regu| +69229|420069|7594|1|32|31649.28|0.05|0.01|A|F|1995-01-27|1995-03-22|1995-02-13|COLLECT COD|SHIP|. carefully final waters against th| +69229|97851|22854|2|46|85047.10|0.02|0.01|A|F|1995-05-01|1995-02-25|1995-05-11|NONE|FOB|ts are dogged, bo| +69229|577654|2677|3|48|83118.24|0.07|0.04|A|F|1995-03-11|1995-03-30|1995-04-02|COLLECT COD|RAIL|ic accounts; express instru| +69230|366844|29352|1|28|53503.24|0.01|0.05|N|O|1995-09-17|1995-09-27|1995-10-16|COLLECT COD|TRUCK|the permanently pending packages.| +69230|540448|40449|2|7|10418.94|0.06|0.08|N|O|1995-12-01|1995-10-19|1995-12-20|DELIVER IN PERSON|RAIL| deposits against the fur| +69230|305490|30503|3|20|29909.60|0.00|0.05|N|O|1995-09-09|1995-10-18|1995-09-17|TAKE BACK RETURN|MAIL| express Tiresias mai| +69230|359432|46954|4|28|41759.76|0.07|0.00|N|O|1995-12-03|1995-09-14|1995-12-10|COLLECT COD|MAIL|fily fluffy accounts boost ca| +69230|964059|1617|5|42|47166.42|0.10|0.04|N|O|1995-09-23|1995-11-04|1995-09-28|TAKE BACK RETURN|AIR| haggle furiously al| +69230|931965|31966|6|22|43932.24|0.01|0.08|N|O|1995-10-14|1995-10-06|1995-11-09|TAKE BACK RETURN|RAIL|ronically ironic pinto beans| +69231|316165|41178|1|10|11811.50|0.02|0.03|N|O|1997-06-28|1997-04-11|1997-07-08|COLLECT COD|MAIL|lly ironic depende| +69231|775112|12658|2|41|48670.28|0.04|0.00|N|O|1997-04-21|1997-05-13|1997-05-06|COLLECT COD|RAIL| quickly. | +69231|303725|3726|3|22|38031.62|0.00|0.04|N|O|1997-05-22|1997-04-18|1997-05-25|DELIVER IN PERSON|SHIP|ts. ironic excuses | +69231|696678|21705|4|2|3349.28|0.02|0.05|N|O|1997-04-10|1997-05-28|1997-05-10|COLLECT COD|RAIL| regular pinto beans| +69256|78580|41082|1|22|34288.76|0.07|0.06|N|O|1997-10-21|1997-10-31|1997-11-15|DELIVER IN PERSON|REG AIR|oss the final theodolites. blithely sp| +69256|687173|24713|2|32|37124.48|0.05|0.07|N|O|1997-11-29|1997-10-03|1997-12-22|DELIVER IN PERSON|REG AIR|riously ironic asymptotes. e| +69256|315632|40645|3|24|39542.88|0.09|0.05|N|O|1997-10-28|1997-10-05|1997-11-20|NONE|MAIL|totes. bold, final depende| +69256|817817|42850|4|42|72860.34|0.00|0.00|N|O|1997-11-17|1997-10-18|1997-12-17|NONE|REG AIR|uests. bravely ironic warhor| +69256|42120|17121|5|19|20180.28|0.00|0.00|N|O|1997-09-10|1997-10-19|1997-09-29|TAKE BACK RETURN|REG AIR|ial requests. bli| +69256|894216|19251|6|1|1210.17|0.07|0.06|N|O|1997-09-01|1997-10-25|1997-09-23|NONE|AIR| unusual excus| +69256|73780|11284|7|27|47352.06|0.04|0.04|N|O|1997-09-12|1997-10-11|1997-09-16|DELIVER IN PERSON|SHIP|riously even requests on t| +69257|9140|9141|1|6|6294.84|0.10|0.02|A|F|1994-08-07|1994-06-29|1994-08-11|DELIVER IN PERSON|MAIL|s hang blithe| +69257|605012|42549|2|49|44932.02|0.10|0.06|R|F|1994-05-29|1994-07-20|1994-06-27|NONE|AIR|accounts affix-- furiously final dolphi| +69257|421233|33742|3|50|57710.50|0.06|0.08|R|F|1994-08-04|1994-07-21|1994-08-06|COLLECT COD|SHIP|e blithely spe| +69258|817551|30068|1|27|39649.77|0.10|0.04|R|F|1992-04-07|1992-03-21|1992-05-04|NONE|FOB|ts integrate slyly. accounts x-ray slyl| +69258|573224|48247|2|50|64860.00|0.08|0.01|A|F|1992-01-22|1992-03-02|1992-02-05|NONE|TRUCK|e slyly after the final packages? pend| +69258|159497|47007|3|1|1556.49|0.02|0.08|R|F|1992-01-23|1992-04-02|1992-02-02|DELIVER IN PERSON|SHIP|nusual reque| +69258|656780|31807|4|28|48629.00|0.00|0.03|R|F|1992-04-10|1992-03-26|1992-04-19|TAKE BACK RETURN|FOB|g accounts use according to the eve| +69258|490561|3071|5|46|71370.84|0.06|0.00|R|F|1992-04-24|1992-02-23|1992-05-14|DELIVER IN PERSON|RAIL| the unusual re| +69259|949907|37462|1|27|52835.22|0.06|0.02|R|F|1994-03-21|1994-01-23|1994-03-24|NONE|REG AIR|ndencies. furiously silent platelets use| +69259|72904|35406|2|19|35661.10|0.03|0.08|R|F|1993-12-01|1994-01-17|1993-12-19|COLLECT COD|MAIL| fluffily even ideas integrate around the| +69259|284812|22328|3|30|53904.00|0.04|0.04|A|F|1994-03-01|1994-02-10|1994-03-17|COLLECT COD|AIR|ly toward the unusual, bold frets| +69259|830382|17931|4|41|53805.94|0.10|0.02|A|F|1993-12-25|1994-02-17|1994-01-22|TAKE BACK RETURN|REG AIR|. furiously final requests nag qu| +69259|213794|38803|5|33|56356.74|0.07|0.07|A|F|1993-12-05|1994-02-14|1993-12-22|DELIVER IN PERSON|AIR|ess platelets cajole carefully alongside| +69259|227691|2700|6|23|37229.64|0.03|0.08|R|F|1993-11-29|1994-02-15|1993-12-15|TAKE BACK RETURN|SHIP|ns sleep carefully among the sl| +69260|808808|46357|1|35|60086.60|0.00|0.08|N|O|1998-01-14|1997-11-27|1998-01-24|TAKE BACK RETURN|MAIL| the slyly express pac| +69260|629642|29643|2|1|1571.61|0.08|0.04|N|O|1997-09-21|1997-11-18|1997-10-12|COLLECT COD|FOB|ng to the even theodolites| +69261|251536|39052|1|32|47600.64|0.02|0.02|A|F|1995-03-19|1995-02-28|1995-03-27|DELIVER IN PERSON|SHIP|sly silent accounts. instructions around | +69261|561173|48707|2|5|6170.75|0.10|0.08|R|F|1994-12-21|1995-01-16|1994-12-28|NONE|FOB|to beans are requests. pac| +69261|619736|32249|3|19|31458.30|0.00|0.07|R|F|1995-02-08|1995-02-21|1995-03-06|NONE|SHIP|eas boost. fluffily express pinto| +69261|901368|26405|4|23|31494.36|0.09|0.02|A|F|1995-03-27|1995-02-20|1995-04-21|NONE|FOB|against the blithely special accounts.| +69262|979922|29923|1|12|24022.56|0.10|0.02|A|F|1995-04-23|1995-05-12|1995-04-28|TAKE BACK RETURN|SHIP|ctions in place | +69262|534330|21861|2|42|57301.02|0.01|0.01|N|O|1995-06-18|1995-06-02|1995-07-04|TAKE BACK RETURN|AIR|sits. furiously ironic| +69263|464860|27370|1|24|43796.16|0.02|0.05|N|O|1997-05-13|1997-04-18|1997-06-07|DELIVER IN PERSON|FOB|equests thrash with the pending | +69263|899202|24237|2|15|18017.40|0.02|0.05|N|O|1997-04-15|1997-05-02|1997-04-17|COLLECT COD|MAIL|uickly special packages.| +69263|877540|27541|3|23|34902.50|0.07|0.01|N|O|1997-03-30|1997-04-07|1997-04-16|COLLECT COD|MAIL|the carefully bold accounts; e| +69263|807740|32773|4|16|26363.20|0.06|0.07|N|O|1997-03-09|1997-03-30|1997-03-25|NONE|FOB|ronic, expres| +69263|677595|15135|5|38|59757.28|0.05|0.04|N|O|1997-06-07|1997-03-19|1997-07-04|NONE|SHIP|c asymptotes eat fluffily si| +69263|326653|14172|6|21|35272.44|0.06|0.05|N|O|1997-06-15|1997-04-27|1997-07-06|TAKE BACK RETURN|TRUCK|ding pinto beans| +69263|44991|44992|7|5|9679.95|0.07|0.01|N|O|1997-03-22|1997-03-23|1997-04-07|TAKE BACK RETURN|TRUCK|ges. final escapades haggle | +69288|160984|23488|1|7|14314.86|0.09|0.01|N|O|1997-10-30|1997-12-10|1997-11-05|DELIVER IN PERSON|SHIP|ly bold deposits | +69288|657741|45281|2|36|61153.56|0.01|0.07|N|O|1997-12-31|1997-10-20|1998-01-27|NONE|TRUCK|l accounts c| +69288|640970|28507|3|36|68793.84|0.05|0.01|N|O|1997-11-01|1997-11-02|1997-11-10|TAKE BACK RETURN|SHIP| the carefully | +69288|781310|43826|4|28|38955.84|0.01|0.06|N|O|1997-11-25|1997-10-20|1997-12-07|TAKE BACK RETURN|MAIL|ubt quickly ironic accounts. slyly silent p| +69288|462267|12268|5|12|14750.88|0.05|0.00|N|O|1997-11-13|1997-11-09|1997-12-09|TAKE BACK RETURN|RAIL|l ideas. special theodolites wake. always| +69289|53168|3169|1|25|28029.00|0.06|0.02|N|O|1995-07-17|1995-06-30|1995-07-30|TAKE BACK RETURN|FOB|ckly ironic pinto beans. ironi| +69289|582911|32912|2|41|81749.49|0.10|0.05|N|F|1995-06-17|1995-06-20|1995-07-09|COLLECT COD|RAIL|ependencies are carefully! quickly unusua| +69289|976012|26013|3|35|38078.95|0.01|0.07|R|F|1995-06-12|1995-06-29|1995-06-16|COLLECT COD|AIR|equests wake according| +69289|818515|18516|4|39|55905.33|0.04|0.07|N|F|1995-06-14|1995-08-16|1995-07-06|NONE|MAIL| express d| +69290|337336|49843|1|26|35706.32|0.09|0.00|A|F|1994-01-12|1994-02-26|1994-01-16|COLLECT COD|REG AIR|e across the ironic requests. fina| +69291|525815|38326|1|35|64427.65|0.03|0.08|A|F|1992-09-22|1992-12-12|1992-10-18|DELIVER IN PERSON|FOB|eans-- slyly| +69291|365913|28421|2|42|83113.80|0.03|0.01|A|F|1992-12-07|1992-11-19|1992-12-17|NONE|AIR|ons try to use above t| +69291|898221|23256|3|29|35356.22|0.02|0.02|A|F|1992-10-18|1992-12-03|1992-11-09|TAKE BACK RETURN|FOB|eposits. carefully regular accounts ag| +69291|384453|46961|4|36|55347.84|0.08|0.00|R|F|1992-12-30|1992-11-08|1993-01-16|NONE|MAIL|ss requests was carefully. packages wake c| +69291|492990|5500|5|20|39659.40|0.03|0.05|A|F|1992-12-23|1992-12-03|1993-01-16|DELIVER IN PERSON|REG AIR|dolphins. carefu| +69291|667339|29853|6|6|7837.80|0.02|0.01|A|F|1992-10-13|1992-12-01|1992-10-16|COLLECT COD|TRUCK|he blithely unusual requests. express, sp| +69292|220817|45826|1|24|41707.20|0.03|0.07|N|O|1996-09-18|1996-09-13|1996-10-12|TAKE BACK RETURN|RAIL|final pinto beans shall | +69292|264656|27162|2|33|53481.12|0.08|0.07|N|O|1996-06-25|1996-09-03|1996-07-22|TAKE BACK RETURN|MAIL|ess, silent sentime| +69292|56690|44194|3|25|41167.25|0.07|0.03|N|O|1996-07-29|1996-07-29|1996-08-13|DELIVER IN PERSON|REG AIR|tructions. permanently quick platelets dete| +69292|787125|49641|4|3|3636.27|0.09|0.05|N|O|1996-08-08|1996-08-25|1996-08-24|NONE|AIR|asymptotes affix reg| +69292|197356|22363|5|5|7266.75|0.01|0.04|N|O|1996-10-07|1996-07-30|1996-10-28|NONE|REG AIR|s are quic| +69293|125918|13425|1|20|38878.20|0.03|0.00|A|F|1992-12-18|1993-02-03|1992-12-23|COLLECT COD|AIR|blithely final grouches. s| +69293|287870|25386|2|38|70598.68|0.04|0.03|A|F|1993-03-23|1993-01-02|1993-04-20|TAKE BACK RETURN|TRUCK|e final dep| +69293|216060|28565|3|9|8784.45|0.08|0.01|R|F|1993-01-03|1993-01-30|1993-01-13|DELIVER IN PERSON|TRUCK|n foxes use carefull| +69293|316321|3840|4|44|58841.64|0.08|0.03|R|F|1993-03-13|1993-01-26|1993-03-17|COLLECT COD|MAIL|ally silent accounts. b| +69293|403285|15794|5|28|33271.28|0.03|0.05|R|F|1993-03-01|1993-02-21|1993-03-27|NONE|TRUCK| quickly ironic platele| +69294|367868|42883|1|7|13550.95|0.03|0.00|N|O|1997-09-29|1997-10-09|1997-10-27|TAKE BACK RETURN|SHIP|sly quietly bold deposit| +69294|743888|18917|2|45|86933.25|0.07|0.03|N|O|1997-08-10|1997-10-13|1997-09-06|TAKE BACK RETURN|MAIL|ic packages use fluffily at | +69295|874761|12313|1|14|24300.08|0.04|0.01|N|O|1996-09-30|1996-12-04|1996-10-12|COLLECT COD|FOB|y regular dolphi| +69295|106120|18623|2|38|42792.56|0.01|0.00|N|O|1996-12-29|1996-11-11|1997-01-17|TAKE BACK RETURN|SHIP| packages. special instructions affix.| +69320|348471|35990|1|48|72934.08|0.04|0.01|R|F|1995-02-15|1995-01-23|1995-03-07|TAKE BACK RETURN|TRUCK|hrash according to the quickly | +69320|738707|38708|2|13|22693.71|0.04|0.07|R|F|1995-02-18|1995-02-06|1995-03-14|COLLECT COD|REG AIR|sly. carefully even request| +69320|439209|39210|3|14|16074.52|0.01|0.06|A|F|1994-12-31|1995-01-22|1995-01-21|TAKE BACK RETURN|RAIL|nstructions haggle above the furiou| +69320|782634|20180|4|36|61797.60|0.07|0.02|R|F|1995-04-03|1995-01-20|1995-04-15|DELIVER IN PERSON|REG AIR|lly regular ideas! regular, even theod| +69320|717761|42790|5|11|19566.03|0.06|0.03|A|F|1995-04-11|1995-02-13|1995-04-26|DELIVER IN PERSON|TRUCK|y express requests! blithely regul| +69321|794063|6579|1|16|18512.48|0.06|0.06|R|F|1992-03-31|1992-05-15|1992-04-08|NONE|RAIL|ts haggle carefully. blithely| +69322|937501|37502|1|10|15384.60|0.07|0.00|N|O|1996-09-07|1996-11-02|1996-09-08|TAKE BACK RETURN|AIR|ts. slyly final pinto beans po| +69322|567493|17494|2|24|37451.28|0.10|0.08|N|O|1996-09-05|1996-11-19|1996-10-04|TAKE BACK RETURN|TRUCK|ts. fluffily regu| +69322|850388|25423|3|29|38811.86|0.05|0.06|N|O|1996-11-12|1996-11-16|1996-11-14|COLLECT COD|TRUCK|excuses boost| +69323|511525|36546|1|35|53777.50|0.06|0.08|A|F|1995-01-08|1995-03-27|1995-02-02|TAKE BACK RETURN|FOB|quests. slyly regular pinto beans t| +69323|198261|23268|2|44|59807.44|0.07|0.07|R|F|1995-02-10|1995-02-09|1995-03-05|COLLECT COD|SHIP| regular re| +69324|929846|29847|1|49|91914.20|0.02|0.01|A|F|1992-04-14|1992-04-23|1992-05-04|COLLECT COD|RAIL|packages cajo| +69324|917682|42719|2|1|1699.64|0.00|0.03|R|F|1992-05-05|1992-04-17|1992-05-13|COLLECT COD|AIR|sly regular ideas. regular theodol| +69324|478118|28119|3|37|40555.33|0.08|0.04|A|F|1992-03-31|1992-02-27|1992-04-06|COLLECT COD|REG AIR|the unusual requests. | +69324|713861|38890|4|21|39371.43|0.07|0.00|A|F|1992-02-01|1992-04-07|1992-02-21|COLLECT COD|FOB|ake after the slyly blithe r| +69324|848462|48463|5|14|19745.88|0.07|0.01|A|F|1992-02-04|1992-04-20|1992-02-25|COLLECT COD|SHIP| final, pending| +69324|95222|20225|6|4|4868.88|0.03|0.03|A|F|1992-02-01|1992-03-31|1992-02-08|NONE|AIR|essly unusual ac| +69324|391170|28692|7|20|25223.20|0.01|0.05|R|F|1992-03-28|1992-03-11|1992-04-18|DELIVER IN PERSON|MAIL|le in place of t| +69325|392459|29981|1|5|7757.20|0.05|0.07|A|F|1994-01-18|1993-12-21|1994-01-27|NONE|SHIP|ke furiously bold deposits. furiousl| +69325|55568|30571|2|36|54848.16|0.07|0.04|R|F|1994-02-16|1993-12-14|1994-02-17|NONE|SHIP|regular instructions sleep f| +69326|784429|9460|1|16|24214.24|0.09|0.03|N|O|1996-02-07|1996-03-02|1996-03-04|COLLECT COD|RAIL|e slyly quick| +69326|881590|6625|2|48|75434.40|0.08|0.08|N|O|1996-01-13|1996-02-12|1996-02-01|COLLECT COD|AIR|ly even pinto bea| +69326|878275|3310|3|26|32583.98|0.09|0.00|N|O|1996-03-24|1996-01-31|1996-04-01|COLLECT COD|AIR| deposits. entic| +69326|165295|40302|4|50|68014.50|0.04|0.04|N|O|1996-01-18|1996-01-29|1996-02-16|TAKE BACK RETURN|AIR|final excu| +69327|449238|11747|1|31|36803.51|0.07|0.03|A|F|1992-05-03|1992-07-08|1992-05-28|NONE|REG AIR| notornis against| +69327|330422|17941|2|46|66810.86|0.06|0.05|R|F|1992-07-31|1992-05-31|1992-08-27|COLLECT COD|RAIL|e slyly regular deposits doze c| +69327|396367|46368|3|46|67314.10|0.10|0.02|A|F|1992-07-31|1992-07-06|1992-08-21|NONE|FOB|ffily along| +69327|730115|42630|4|6|6870.48|0.02|0.02|R|F|1992-05-12|1992-05-28|1992-05-27|COLLECT COD|SHIP|oach instructions. pinto | +69327|32413|32414|5|8|10763.28|0.00|0.04|R|F|1992-04-25|1992-05-29|1992-04-26|COLLECT COD|RAIL|ages sleep. bl| +69327|750739|13255|6|17|30424.90|0.07|0.05|A|F|1992-07-28|1992-07-20|1992-08-11|DELIVER IN PERSON|TRUCK|oxes affix| +69327|657870|32897|7|21|38384.64|0.03|0.04|R|F|1992-06-10|1992-07-14|1992-06-24|DELIVER IN PERSON|SHIP|ts. blithely unusual packages are pending| +69352|805674|18191|1|33|52127.79|0.00|0.07|N|O|1996-08-24|1996-10-29|1996-09-06|TAKE BACK RETURN|AIR|uickly along the blithely permanent| +69352|949670|24707|2|19|32672.97|0.03|0.04|N|O|1996-10-23|1996-10-11|1996-11-16|COLLECT COD|REG AIR|ss accounts| +69352|93938|18941|3|47|90800.71|0.06|0.04|N|O|1996-12-01|1996-09-05|1996-12-26|DELIVER IN PERSON|FOB|ly special pinto bea| +69352|815631|15632|4|46|71143.14|0.03|0.02|N|O|1996-10-26|1996-10-08|1996-11-25|NONE|FOB|l theodolites poach quickly furiously b| +69352|306551|6552|5|13|20248.02|0.05|0.08|N|O|1996-11-19|1996-10-11|1996-11-24|TAKE BACK RETURN|AIR|ent asymptotes detect blithely even Ti| +69352|193473|5977|6|15|23497.05|0.02|0.07|N|O|1996-08-22|1996-10-31|1996-09-21|COLLECT COD|REG AIR|eposits sleep furiously. carefully even| +69353|846915|46916|1|36|67027.32|0.03|0.01|A|F|1993-07-08|1993-08-15|1993-07-15|DELIVER IN PERSON|TRUCK|iously stealthy excuses haggle furio| +69353|90702|28206|2|6|10156.20|0.02|0.02|A|F|1993-06-25|1993-08-10|1993-07-07|TAKE BACK RETURN|FOB|al deposits. carefully dogged packages use| +69353|413263|25772|3|25|29406.00|0.08|0.04|R|F|1993-06-05|1993-08-05|1993-06-13|DELIVER IN PERSON|TRUCK|s. thin accounts affi| +69354|96188|33692|1|50|59209.00|0.05|0.01|N|O|1998-05-30|1998-08-04|1998-06-18|DELIVER IN PERSON|AIR| unusual accounts along the regular | +69355|49505|49506|1|25|36362.50|0.08|0.07|N|O|1996-01-18|1995-12-16|1996-01-28|NONE|AIR| silent theodolites sleep furiously| +69356|734801|34802|1|19|34879.63|0.06|0.01|N|O|1996-03-12|1996-03-05|1996-03-30|NONE|SHIP| bold ideas sleep carefully | +69356|794833|7349|2|27|52050.60|0.09|0.06|N|O|1996-02-03|1996-03-18|1996-02-16|COLLECT COD|FOB|ts? furiously even ac| +69356|746182|46183|3|48|58951.20|0.10|0.03|N|O|1996-03-31|1996-03-04|1996-04-07|COLLECT COD|MAIL|ctions boost blithely dolphins. slyly fin| +69356|73371|10875|4|24|32264.88|0.01|0.06|N|O|1996-02-01|1996-03-06|1996-02-06|NONE|AIR|ing to the unusual, ironic instructions.| +69357|848900|48901|1|7|12942.02|0.09|0.05|R|F|1994-10-01|1994-10-26|1994-10-09|DELIVER IN PERSON|RAIL|s. furiously express dino| +69357|450452|453|2|2|2804.86|0.07|0.03|R|F|1994-10-03|1994-10-31|1994-10-25|COLLECT COD|SHIP|sly careful excu| +69357|736005|11034|3|29|30188.13|0.07|0.04|R|F|1994-11-28|1994-09-29|1994-12-19|TAKE BACK RETURN|MAIL|s above the i| +69358|878954|16506|1|47|90846.77|0.02|0.00|N|O|1996-03-30|1996-03-08|1996-04-02|COLLECT COD|FOB|inments use regula| +69358|574905|12439|2|49|97014.12|0.03|0.05|N|O|1995-12-25|1996-02-25|1996-01-12|DELIVER IN PERSON|REG AIR|es are blithely. r| +69358|421855|46872|3|16|28429.28|0.06|0.03|N|O|1996-03-24|1996-01-15|1996-04-04|COLLECT COD|TRUCK| carefully carefully | +69358|102727|2728|4|40|69188.80|0.08|0.03|N|O|1996-03-22|1996-02-10|1996-03-24|TAKE BACK RETURN|MAIL|ly quickly bold pinto | +69358|517517|30028|5|19|29155.31|0.09|0.07|N|O|1996-02-12|1996-02-09|1996-03-07|TAKE BACK RETURN|RAIL|instructions above the ironi| +69359|13758|13759|1|32|53496.00|0.07|0.06|N|O|1997-08-31|1997-08-14|1997-09-08|TAKE BACK RETURN|SHIP|s wake bold instructions. fluffily b| +69359|226684|14197|2|8|12885.36|0.03|0.02|N|O|1997-07-29|1997-08-16|1997-08-24|NONE|MAIL|ons haggle special pint| +69359|863290|25808|3|37|46370.25|0.10|0.03|N|O|1997-07-29|1997-08-14|1997-08-03|DELIVER IN PERSON|RAIL|usly above the quickl| +69359|311543|24050|4|8|12436.24|0.06|0.01|N|O|1997-09-16|1997-08-14|1997-09-19|NONE|REG AIR|uffily even ideas. fluff| +69359|93522|6024|5|28|42434.56|0.04|0.02|N|O|1997-08-23|1997-09-04|1997-09-12|NONE|AIR|ackages. slyly even pinto be| +69359|808362|33395|6|34|43190.88|0.03|0.08|N|O|1997-09-29|1997-09-21|1997-10-16|COLLECT COD|RAIL| quickly even acc| +69384|768694|31210|1|34|59930.44|0.10|0.08|A|F|1994-07-07|1994-06-13|1994-07-20|NONE|AIR|kly special packages. bold| +69385|1238|38739|1|44|50126.12|0.09|0.02|A|F|1992-05-27|1992-04-07|1992-06-22|DELIVER IN PERSON|SHIP|ironic realms| +69385|805041|30074|2|27|25542.00|0.02|0.02|A|F|1992-04-12|1992-04-11|1992-04-22|TAKE BACK RETURN|REG AIR|ckly fluffily expr| +69385|322204|34711|3|29|35559.51|0.00|0.07|R|F|1992-03-08|1992-03-26|1992-04-01|DELIVER IN PERSON|REG AIR|eposits boos| +69385|273730|23731|4|30|51111.60|0.07|0.04|R|F|1992-06-03|1992-04-07|1992-06-11|DELIVER IN PERSON|SHIP|egular instruc| +69385|570596|45619|5|32|53330.24|0.09|0.02|R|F|1992-03-18|1992-05-08|1992-03-30|NONE|MAIL| accounts must have to| +69385|999161|11681|6|31|39063.72|0.03|0.06|A|F|1992-05-14|1992-03-19|1992-05-22|NONE|SHIP|ges sleep quickly blit| +69385|897955|35507|7|19|37105.29|0.06|0.05|R|F|1992-06-16|1992-04-24|1992-07-14|NONE|AIR|boost slyl| +69386|926443|1480|1|12|17632.80|0.06|0.08|N|O|1997-05-12|1997-04-17|1997-06-06|NONE|FOB|yly asymptotes. blithely | +69386|727334|14877|2|10|13613.00|0.02|0.02|N|O|1997-06-04|1997-03-27|1997-06-09|COLLECT COD|SHIP|efully final asymptotes.| +69386|297343|9849|3|1|1340.33|0.09|0.03|N|O|1997-04-14|1997-05-03|1997-04-16|TAKE BACK RETURN|MAIL|slyly regular deposits. furiously pending | +69387|940291|15328|1|34|45262.50|0.07|0.06|A|F|1993-09-20|1993-11-28|1993-10-12|NONE|AIR|ic requests try to sleep ab| +69387|454442|16952|2|45|62838.90|0.04|0.01|A|F|1993-10-21|1993-10-18|1993-11-03|DELIVER IN PERSON|RAIL|g asymptotes haggle furiously a| +69387|796148|8664|3|2|2488.22|0.00|0.07|R|F|1993-09-11|1993-10-26|1993-10-08|NONE|FOB|y about the carefully special decoys| +69387|857577|7578|4|43|65984.79|0.08|0.03|R|F|1993-11-22|1993-11-10|1993-12-22|TAKE BACK RETURN|REG AIR|nt instructi| +69388|820537|33054|1|13|18947.37|0.04|0.07|R|F|1992-06-03|1992-04-27|1992-06-12|NONE|TRUCK|oss the ironic pinto beans. fluffily p| +69388|757359|7360|2|6|8497.92|0.02|0.07|A|F|1992-02-17|1992-04-29|1992-03-08|TAKE BACK RETURN|SHIP|ly even requests; blithely exp| +69388|923100|10655|3|30|33691.80|0.03|0.04|R|F|1992-05-11|1992-03-19|1992-06-08|DELIVER IN PERSON|TRUCK|he final platelet| +69388|525284|305|4|48|62844.48|0.09|0.00|R|F|1992-05-05|1992-05-10|1992-05-29|DELIVER IN PERSON|AIR|ites cajole furiously. fo| +69388|445379|20396|5|41|54298.35|0.05|0.00|R|F|1992-03-30|1992-03-12|1992-04-19|DELIVER IN PERSON|RAIL|ins sleep qu| +69388|469606|44625|6|7|11029.06|0.03|0.08|A|F|1992-02-23|1992-04-29|1992-03-05|DELIVER IN PERSON|FOB| even reques| +69388|660188|22702|7|30|34444.50|0.05|0.07|A|F|1992-04-18|1992-03-31|1992-05-16|TAKE BACK RETURN|REG AIR|uests must use. f| +69389|779373|29374|1|8|11618.72|0.07|0.04|N|O|1997-10-11|1997-12-12|1997-11-09|TAKE BACK RETURN|MAIL|uffily blithely pending deposits| +69389|906301|31338|2|48|62748.48|0.07|0.03|N|O|1997-11-17|1997-12-22|1997-12-05|COLLECT COD|MAIL|encies. qui| +69389|188168|38169|3|40|50246.40|0.01|0.08|N|O|1997-12-14|1997-12-19|1997-12-17|NONE|AIR|unts. dependencies will have to impre| +69389|532033|7054|4|9|9585.09|0.07|0.03|N|O|1997-10-16|1997-12-15|1997-10-27|DELIVER IN PERSON|TRUCK|g dolphins serve furiously against the fluf| +69390|611923|49460|1|28|51376.92|0.08|0.05|N|O|1997-03-02|1997-02-18|1997-03-14|COLLECT COD|TRUCK|efully final deposits | +69390|577412|2435|2|27|40213.53|0.00|0.00|N|O|1997-02-10|1997-01-31|1997-03-04|COLLECT COD|AIR|after the furiously regular pi| +69390|553619|3620|3|31|51850.29|0.08|0.01|N|O|1997-03-06|1996-12-30|1997-03-07|COLLECT COD|REG AIR|ccording to the even accou| +69391|972151|22152|1|25|30577.75|0.06|0.07|A|F|1993-12-09|1993-12-31|1993-12-19|TAKE BACK RETURN|SHIP|ly special deposits| +69416|995109|20148|1|11|13244.66|0.07|0.07|R|F|1992-09-17|1992-09-11|1992-10-06|DELIVER IN PERSON|REG AIR|ual ideas sleep carefully about the idly| +69416|786339|23885|2|25|35632.50|0.04|0.06|R|F|1992-09-27|1992-10-11|1992-10-10|DELIVER IN PERSON|RAIL| deposits. final, bol| +69416|996893|21932|3|36|71634.60|0.04|0.01|A|F|1992-11-21|1992-09-05|1992-12-18|NONE|FOB|usly packages. slyly even packages| +69416|771938|34454|4|2|4019.80|0.06|0.01|R|F|1992-08-22|1992-10-05|1992-08-26|COLLECT COD|MAIL|lyly unusual foxes| +69416|959184|34223|5|27|33564.78|0.00|0.04|R|F|1992-10-07|1992-09-22|1992-10-21|DELIVER IN PERSON|FOB|nic foxes. | +69417|420052|20053|1|10|9720.30|0.04|0.03|A|F|1995-01-22|1994-12-12|1995-02-15|DELIVER IN PERSON|TRUCK|s. final requests wake carefully about th| +69417|808714|8715|2|42|68152.14|0.04|0.02|A|F|1995-02-05|1995-01-23|1995-03-07|NONE|MAIL|uternes. busily pending dependencies| +69417|45609|8110|3|41|63738.60|0.01|0.04|R|F|1995-01-11|1994-12-21|1995-01-30|NONE|REG AIR|ending packages. b| +69417|536011|48522|4|41|42926.59|0.09|0.02|A|F|1995-02-16|1994-12-26|1995-03-14|DELIVER IN PERSON|FOB|slyly. special gro| +69417|726593|26594|5|22|35630.32|0.10|0.08|A|F|1994-11-17|1995-01-23|1994-12-11|NONE|RAIL|even requests maintain slyly according t| +69418|350543|38065|1|6|9561.18|0.02|0.04|R|F|1992-09-28|1992-10-13|1992-10-18|NONE|SHIP| packages poach slyly. reques| +69418|562348|49882|2|31|43719.92|0.08|0.08|A|F|1992-10-29|1992-10-23|1992-11-24|TAKE BACK RETURN|AIR|ly even courts use slyly reg| +69418|379073|41581|3|24|27649.44|0.08|0.05|A|F|1992-11-21|1992-10-26|1992-12-18|DELIVER IN PERSON|TRUCK| the carefully even platelets. special pint| +69418|65084|27586|4|27|28325.16|0.01|0.07|A|F|1992-11-19|1992-10-09|1992-12-17|DELIVER IN PERSON|SHIP|ly final ideas across the theodolites b| +69418|863308|860|5|3|3813.78|0.00|0.00|R|F|1992-08-23|1992-11-07|1992-09-11|COLLECT COD|AIR|accounts. bold, s| +69418|613516|26029|6|20|28589.60|0.01|0.08|A|F|1992-11-13|1992-11-04|1992-12-03|DELIVER IN PERSON|SHIP|quickly final instructi| +69418|347539|10046|7|20|31730.40|0.07|0.06|R|F|1992-12-08|1992-10-17|1992-12-28|COLLECT COD|TRUCK| nag around the special theodolites. de| +69419|84114|21618|1|50|54905.50|0.06|0.08|R|F|1995-03-03|1995-02-14|1995-03-18|COLLECT COD|AIR|en deposits. carefully un| +69419|688467|13494|2|42|61128.06|0.04|0.05|A|F|1994-12-26|1995-03-14|1995-01-23|NONE|AIR|according to the carefully bold requests. | +69419|59782|9783|3|46|80121.88|0.02|0.08|A|F|1995-01-11|1995-03-13|1995-02-01|TAKE BACK RETURN|AIR|ly blithely furious pa| +69420|476740|39250|1|40|68668.80|0.01|0.07|A|F|1995-03-27|1995-03-23|1995-04-07|DELIVER IN PERSON|REG AIR| against the special,| +69421|626997|26998|1|10|19239.60|0.00|0.02|A|F|1994-01-10|1994-01-03|1994-02-09|DELIVER IN PERSON|RAIL|s wake quick| +69421|924772|49809|2|37|66479.01|0.06|0.03|A|F|1994-01-06|1994-02-15|1994-01-10|TAKE BACK RETURN|MAIL|uses. requests x-ray quickly above| +69421|635912|23449|3|4|7391.52|0.08|0.05|R|F|1994-02-26|1993-12-19|1994-03-04|COLLECT COD|MAIL| silent accounts. unusual, final courts| +69422|8407|20908|1|26|34200.40|0.06|0.04|N|O|1995-06-24|1995-06-03|1995-07-11|DELIVER IN PERSON|FOB|even ideas. dependen| +69422|287973|25489|2|1|1960.96|0.02|0.02|A|F|1995-04-21|1995-05-10|1995-05-15|NONE|REG AIR|heodolites sleep quickly courts. | +69422|960245|22765|3|26|33935.20|0.08|0.03|R|F|1995-04-16|1995-05-18|1995-05-01|COLLECT COD|MAIL|haggle furiously | +69422|827787|2820|4|20|34294.80|0.06|0.07|N|O|1995-07-05|1995-05-09|1995-08-01|DELIVER IN PERSON|TRUCK| even accounts. carefully unusual | +69422|605390|5391|5|44|56995.84|0.06|0.07|N|O|1995-07-15|1995-06-01|1995-08-14|COLLECT COD|MAIL|tes boost slyly. slyly final instru| +69422|776762|1793|6|38|69871.74|0.10|0.07|R|F|1995-04-10|1995-06-10|1995-04-17|DELIVER IN PERSON|MAIL|blithely against the furiously sly ideas| +69422|26454|13955|7|41|56598.45|0.00|0.03|A|F|1995-05-07|1995-04-25|1995-05-14|NONE|REG AIR|uctions nag fu| +69423|612133|12134|1|21|21947.10|0.06|0.05|N|O|1998-07-12|1998-09-04|1998-07-15|DELIVER IN PERSON|TRUCK|ns sleep slyly slyly regular pinto| +69423|107057|7058|2|14|14896.70|0.02|0.01|N|O|1998-09-03|1998-08-19|1998-09-06|DELIVER IN PERSON|AIR|lyly pending instructions are a| +69423|306845|6846|3|17|31481.11|0.05|0.06|N|O|1998-07-29|1998-09-11|1998-08-22|TAKE BACK RETURN|TRUCK|ously regular requests.| +69448|811796|36829|1|14|23908.50|0.05|0.04|R|F|1994-11-19|1994-10-20|1994-12-14|NONE|RAIL|arefully regular package| +69449|809524|9525|1|26|37270.48|0.03|0.05|R|F|1993-12-30|1993-12-09|1994-01-08|COLLECT COD|REG AIR|oxes. even, express depe| +69449|662975|38002|2|40|77517.60|0.09|0.07|R|F|1993-12-11|1993-11-13|1993-12-16|COLLECT COD|MAIL|s haggle furiously after the c| +69449|605886|18399|3|40|71674.00|0.00|0.08|R|F|1993-12-01|1993-12-17|1993-12-10|TAKE BACK RETURN|AIR|ely along the i| +69449|117261|42266|4|18|23008.68|0.07|0.05|A|F|1993-12-28|1993-11-07|1994-01-26|TAKE BACK RETURN|RAIL| asymptotes use slyly furiously silent de| +69449|794976|32522|5|23|47631.62|0.09|0.05|A|F|1994-01-15|1993-11-11|1994-01-27|DELIVER IN PERSON|TRUCK|even dugout| +69449|159153|34160|6|20|24243.00|0.02|0.01|R|F|1994-01-13|1993-11-10|1994-01-31|COLLECT COD|RAIL|osits; furiously ironic accounts haggle qu| +69449|883447|33448|7|28|40051.20|0.04|0.05|A|F|1993-11-05|1993-12-04|1993-11-22|NONE|MAIL|s. regular dugo| +69450|89617|14620|1|9|14459.49|0.03|0.02|R|F|1992-05-26|1992-06-16|1992-06-05|NONE|RAIL|iously even accounts according to| +69450|181352|43856|2|46|65934.10|0.00|0.02|R|F|1992-06-10|1992-06-11|1992-06-15|NONE|MAIL|refully regular, bold deposits. instruction| +69450|977677|2716|3|2|3509.26|0.08|0.01|R|F|1992-07-14|1992-06-21|1992-07-16|NONE|SHIP|, final requests. slyly regular | +69450|812514|25031|4|14|19970.58|0.04|0.04|R|F|1992-05-11|1992-06-22|1992-05-29|COLLECT COD|RAIL|ost furiously | +69450|917211|4766|5|11|13509.87|0.01|0.01|A|F|1992-07-22|1992-06-02|1992-07-23|NONE|RAIL|ts boost. regular| +69450|553457|15969|6|40|60417.20|0.06|0.03|R|F|1992-05-23|1992-06-02|1992-06-19|DELIVER IN PERSON|REG AIR|hely ruthlessly express requests. even| +69450|942636|30191|7|34|57072.06|0.05|0.05|A|F|1992-08-05|1992-07-07|1992-08-22|COLLECT COD|MAIL| carefully slyly | +69451|879026|4061|1|1|1004.98|0.00|0.02|R|F|1994-02-21|1994-03-02|1994-03-03|COLLECT COD|FOB|quests. bravely regular dependencies us| +69451|776292|1323|2|36|49257.36|0.10|0.03|R|F|1994-01-02|1994-01-13|1994-01-07|NONE|REG AIR| dogged asy| +69451|130024|5029|3|33|34782.66|0.02|0.03|R|F|1994-04-03|1994-01-14|1994-04-05|COLLECT COD|MAIL|the carefully bold deposi| +69452|597570|10082|1|17|28348.35|0.01|0.01|N|O|1995-10-22|1995-10-30|1995-10-27|NONE|SHIP|inal foxes. permanently ironic| +69452|355046|17554|2|6|6606.18|0.07|0.05|N|O|1995-09-16|1995-10-02|1995-10-04|COLLECT COD|REG AIR|final asymptotes. slyly regu| +69452|258068|33079|3|49|50276.45|0.05|0.01|N|O|1995-10-02|1995-11-03|1995-10-08|COLLECT COD|FOB|r pinto beans| +69453|760521|23037|1|48|75911.52|0.00|0.05|A|F|1994-03-04|1994-04-08|1994-03-18|NONE|SHIP|pending, unusual pains cajole blithe| +69453|60875|23377|2|45|82614.15|0.03|0.06|R|F|1994-02-08|1994-02-21|1994-02-24|TAKE BACK RETURN|MAIL|stealthy foxes mold closely r| +69453|123981|36484|3|28|56139.44|0.02|0.08|A|F|1994-01-24|1994-04-06|1994-02-17|COLLECT COD|TRUCK| regular requests. blithely regul| +69453|740058|2573|4|34|37332.68|0.02|0.08|R|F|1994-01-22|1994-02-19|1994-02-02|COLLECT COD|SHIP|efully ironic accounts haggle e| +69453|149611|12114|5|18|29890.98|0.08|0.08|R|F|1994-02-13|1994-04-08|1994-03-14|TAKE BACK RETURN|RAIL|es nag according t| +69453|505512|43043|6|32|48559.68|0.02|0.04|R|F|1994-02-05|1994-03-04|1994-02-27|TAKE BACK RETURN|FOB|s about the blithely even package| +69454|185748|23258|1|23|42176.02|0.10|0.07|A|F|1993-10-15|1993-11-17|1993-11-09|DELIVER IN PERSON|SHIP| slyly final requests. regul| +69454|850252|12770|2|43|51695.03|0.01|0.01|A|F|1993-11-22|1993-11-15|1993-11-28|DELIVER IN PERSON|MAIL| blithely fluffy requests. accounts s| +69454|181766|6773|3|38|70214.88|0.09|0.03|R|F|1994-02-07|1993-12-03|1994-02-24|TAKE BACK RETURN|REG AIR|ts cajole slyly. carefully expr| +69454|927853|40372|4|20|37616.20|0.02|0.08|A|F|1993-10-24|1994-01-04|1993-10-27|NONE|SHIP|ages. ironi| +69454|419124|44141|5|9|9387.90|0.06|0.08|R|F|1994-01-31|1993-12-09|1994-02-16|NONE|REG AIR|ccounts. carefully unusual accounts i| +69455|756751|6752|1|3|5423.16|0.06|0.07|N|O|1998-06-15|1998-04-12|1998-07-05|TAKE BACK RETURN|REG AIR|egular foxes cajole. requests affix slyly.| +69455|708608|46151|2|20|32331.40|0.10|0.03|N|O|1998-05-15|1998-04-05|1998-05-20|DELIVER IN PERSON|SHIP|, even dependen| +69455|559543|47077|3|39|62498.28|0.01|0.02|N|O|1998-04-26|1998-05-20|1998-05-02|TAKE BACK RETURN|TRUCK|ccounts must haggle. unusual | +69455|226380|38885|4|16|20901.92|0.00|0.03|N|O|1998-06-13|1998-04-07|1998-06-15|TAKE BACK RETURN|RAIL|ticingly throughout the furiously final | +69455|753728|41274|5|40|71267.60|0.04|0.04|N|O|1998-03-11|1998-06-02|1998-04-01|COLLECT COD|REG AIR|ously among the evenly fluffy deposits. | +69480|189984|27494|1|3|6221.94|0.04|0.05|N|O|1998-05-21|1998-04-13|1998-05-26|TAKE BACK RETURN|TRUCK|ithely final excuses use furiously a| +69480|49324|24325|2|46|58572.72|0.04|0.02|N|O|1998-04-18|1998-03-10|1998-05-11|COLLECT COD|TRUCK|onic depend| +69480|979512|42032|3|16|25463.52|0.08|0.05|N|O|1998-03-03|1998-03-25|1998-03-28|DELIVER IN PERSON|TRUCK| ironic deposits mold | +69480|649223|49224|4|49|57437.31|0.06|0.06|N|O|1998-03-11|1998-04-23|1998-04-03|NONE|SHIP|osits. regular, sile| +69480|482425|32426|5|38|53481.20|0.00|0.08|N|O|1998-02-14|1998-04-27|1998-03-01|DELIVER IN PERSON|TRUCK|ess foxes integrate across the p| +69481|202222|27231|1|8|8993.68|0.00|0.00|N|O|1997-08-30|1997-08-02|1997-09-26|DELIVER IN PERSON|MAIL|ar accounts beyond t| +69481|742180|4695|2|27|32998.05|0.01|0.07|N|O|1997-08-05|1997-09-07|1997-08-30|NONE|AIR|olites print furiously special courts| +69481|810549|35582|3|46|67137.00|0.05|0.03|N|O|1997-09-30|1997-08-11|1997-10-30|COLLECT COD|REG AIR|ounts eat-- fluff| +69481|884102|34103|4|45|48872.70|0.04|0.08|N|O|1997-06-13|1997-08-27|1997-06-20|TAKE BACK RETURN|AIR|te blithely even| +69482|122821|22822|1|3|5531.46|0.03|0.00|N|O|1997-12-14|1998-01-21|1997-12-24|COLLECT COD|AIR|ress courts sleep fluffily. silent | +69482|239125|1630|2|2|2128.22|0.02|0.07|N|O|1997-12-02|1998-01-18|1997-12-31|COLLECT COD|AIR|hely even dugouts. furious, spec| +69482|969046|31566|3|43|47945.00|0.08|0.02|N|O|1997-12-14|1997-12-17|1997-12-18|COLLECT COD|TRUCK|y. carefully final dolphins are about th| +69483|299723|37239|1|44|75799.24|0.09|0.03|R|F|1992-10-22|1992-08-11|1992-11-15|NONE|MAIL|ut the carefully brave deposi| +69483|428291|40800|2|11|13411.97|0.03|0.07|R|F|1992-08-16|1992-09-04|1992-09-09|NONE|TRUCK|, even requests wake fluf| +69484|370030|7552|1|3|3300.06|0.04|0.08|N|O|1998-06-27|1998-05-17|1998-07-05|COLLECT COD|SHIP|ngside of the bold accounts. bli| +69484|84186|21690|2|25|29254.50|0.03|0.00|N|O|1998-04-10|1998-04-26|1998-04-22|TAKE BACK RETURN|MAIL|ly against the fluffily ironic packages| +69484|900795|796|3|6|10774.50|0.03|0.03|N|O|1998-05-06|1998-05-22|1998-05-08|COLLECT COD|RAIL|uriously blithely ironic packages. f| +69484|657779|20293|4|8|13893.92|0.06|0.03|N|O|1998-07-13|1998-04-28|1998-08-02|DELIVER IN PERSON|REG AIR|riously ir| +69484|285057|10068|5|47|48975.88|0.02|0.03|N|O|1998-07-01|1998-06-06|1998-07-20|TAKE BACK RETURN|AIR|regular accounts. silently ironic plate| +69485|846899|21932|1|25|46146.25|0.09|0.08|N|O|1996-06-09|1996-05-07|1996-06-10|DELIVER IN PERSON|AIR|fluffily among the accounts.| +69485|828925|3958|2|12|22246.56|0.04|0.03|N|O|1996-05-07|1996-04-09|1996-05-12|DELIVER IN PERSON|SHIP|ffily enticing ideas. unusual requests w| +69485|737325|12354|3|9|12260.61|0.05|0.02|N|O|1996-04-21|1996-04-15|1996-04-23|DELIVER IN PERSON|REG AIR|rets sleep | +69485|213692|13693|4|9|14451.12|0.05|0.04|N|O|1996-04-01|1996-03-30|1996-04-29|COLLECT COD|SHIP|beans. even reque| +69485|505616|43147|5|2|3243.18|0.05|0.03|N|O|1996-04-26|1996-04-18|1996-05-15|NONE|MAIL|ress blithely according to the slyly perm| +69485|874826|12378|6|24|43218.72|0.09|0.08|N|O|1996-06-12|1996-04-02|1996-07-01|NONE|TRUCK|hlessly final depths. carefully bo| +69485|191739|16746|7|4|7322.92|0.05|0.06|N|O|1996-03-21|1996-03-27|1996-04-19|NONE|RAIL|gular excuses wake along the f| +69486|547865|10376|1|47|89903.48|0.05|0.05|A|F|1995-03-03|1995-02-07|1995-04-02|DELIVER IN PERSON|TRUCK|fter the un| +69486|950634|38192|2|29|48853.11|0.00|0.06|R|F|1995-02-27|1995-01-02|1995-03-24|TAKE BACK RETURN|MAIL| haggle furiously. slyl| +69486|292425|17436|3|12|17008.92|0.10|0.03|R|F|1994-12-01|1995-01-20|1994-12-28|DELIVER IN PERSON|MAIL|ccounts. fluffily regular pinto beans ar| +69486|784960|47476|4|38|77707.34|0.02|0.02|A|F|1995-01-10|1995-02-10|1995-02-01|DELIVER IN PERSON|SHIP|riously about the even requests. blithel| +69487|681552|6579|1|21|32203.92|0.02|0.04|N|O|1995-12-20|1995-10-21|1996-01-08|DELIVER IN PERSON|RAIL| final, even theo| +69512|663928|26442|1|43|81351.27|0.00|0.07|A|F|1993-09-27|1993-09-13|1993-10-22|COLLECT COD|RAIL|le furiously during the furiously special | +69512|621150|46175|2|48|51413.76|0.09|0.01|A|F|1993-09-20|1993-09-02|1993-09-27|NONE|SHIP|er the regular, pe| +69513|567449|17450|1|50|75821.00|0.09|0.03|A|F|1993-03-19|1993-03-11|1993-04-08|NONE|TRUCK|unts wake slyly even warthogs. de| +69513|103964|28969|2|28|55102.88|0.07|0.08|A|F|1993-03-03|1993-02-15|1993-03-08|COLLECT COD|MAIL|earls poach after the dependencies. ir| +69514|412079|12080|1|42|41624.10|0.10|0.01|N|O|1998-05-10|1998-04-20|1998-05-31|COLLECT COD|AIR|en accounts up the slyly regu| +69515|671785|9325|1|19|33378.25|0.08|0.08|A|F|1994-07-21|1994-07-18|1994-08-09|COLLECT COD|FOB| regular depths. carefully bold packa| +69515|681598|31599|2|34|53705.04|0.06|0.08|R|F|1994-06-18|1994-09-01|1994-07-13|DELIVER IN PERSON|TRUCK|refully. fl| +69516|165726|15727|1|5|8958.60|0.01|0.08|A|F|1993-11-22|1993-10-10|1993-12-17|DELIVER IN PERSON|MAIL|r, final in| +69516|343892|31411|2|8|15487.04|0.03|0.03|R|F|1993-12-03|1993-09-09|1993-12-17|TAKE BACK RETURN|MAIL|special accounts boost blithely| +69516|778473|3504|3|27|41888.88|0.00|0.01|A|F|1993-11-06|1993-11-07|1993-11-25|TAKE BACK RETURN|SHIP|uests. even packages snooze c| +69516|781780|6811|4|19|35373.25|0.08|0.04|A|F|1993-11-15|1993-09-16|1993-12-12|TAKE BACK RETURN|REG AIR| beans affix across the furiou| +69516|360279|10280|5|3|4017.78|0.04|0.06|A|F|1993-11-27|1993-11-06|1993-12-12|TAKE BACK RETURN|REG AIR|al dependencies. pin| +69516|202048|14553|6|16|15200.48|0.09|0.01|R|F|1993-09-15|1993-11-03|1993-09-28|DELIVER IN PERSON|TRUCK| ideas sleep slyly regular packages.| +69516|816902|41935|7|25|45471.50|0.00|0.08|A|F|1993-08-23|1993-10-24|1993-09-21|TAKE BACK RETURN|SHIP| deposits. slyly bold foxes after the acc| +69517|668399|43426|1|36|49224.96|0.08|0.03|N|O|1996-10-15|1996-09-30|1996-11-07|TAKE BACK RETURN|TRUCK|ly final packages| +69517|771614|9160|2|7|11799.06|0.10|0.07|N|O|1996-08-28|1996-11-06|1996-09-20|NONE|FOB|sublate carefully carefully silent de| +69517|514731|2262|3|13|22694.23|0.06|0.05|N|O|1996-11-24|1996-09-13|1996-11-25|TAKE BACK RETURN|TRUCK|slyly silent packages are express accou| +69517|81146|43648|4|15|16907.10|0.06|0.00|N|O|1996-10-13|1996-11-12|1996-11-01|TAKE BACK RETURN|TRUCK|iously ironic requests a| +69517|814968|14969|5|25|47073.00|0.09|0.00|N|O|1996-11-12|1996-10-25|1996-11-24|COLLECT COD|MAIL|itaphs are. f| +69517|162529|12530|6|27|42971.04|0.01|0.03|N|O|1996-12-08|1996-09-13|1996-12-17|TAKE BACK RETURN|RAIL|cording to the| +69518|992844|30402|1|15|29052.00|0.00|0.01|A|F|1992-06-12|1992-05-10|1992-06-21|TAKE BACK RETURN|FOB|unts. bold requests print regula| +69519|181223|31224|1|18|23475.96|0.08|0.03|A|F|1992-06-27|1992-06-04|1992-07-27|NONE|MAIL|y final theodolites are slyly. exp| +69519|803535|16052|2|24|34523.76|0.02|0.08|A|F|1992-06-23|1992-06-18|1992-07-10|TAKE BACK RETURN|AIR|ld ideas. stealthily bold pea| +69544|923041|48078|1|6|6384.00|0.05|0.00|A|F|1995-04-18|1995-06-19|1995-05-07|DELIVER IN PERSON|MAIL|s boost slyly sly asymptotes-- as| +69544|548272|48273|2|20|26405.00|0.08|0.05|A|F|1995-05-20|1995-05-21|1995-06-11|DELIVER IN PERSON|REG AIR|hely quick dependencies wake furiously| +69545|326458|13977|1|50|74222.00|0.04|0.00|N|O|1998-07-16|1998-08-02|1998-08-14|DELIVER IN PERSON|SHIP|ests integrate qui| +69545|776238|1269|2|46|60453.20|0.02|0.02|N|O|1998-09-21|1998-08-14|1998-10-18|DELIVER IN PERSON|REG AIR| final ideas. ca| +69545|219926|19927|3|48|88603.68|0.01|0.01|N|O|1998-07-25|1998-08-23|1998-08-11|DELIVER IN PERSON|AIR|the deposits. regular pack| +69545|294478|44479|4|17|25031.82|0.04|0.04|N|O|1998-08-04|1998-09-12|1998-08-23|TAKE BACK RETURN|SHIP|egular acc| +69545|285521|35522|5|45|67792.95|0.02|0.05|N|O|1998-09-11|1998-08-22|1998-09-24|DELIVER IN PERSON|TRUCK|olites: furiously final deposits sleep. | +69546|709629|47172|1|11|18024.49|0.01|0.00|A|F|1993-08-16|1993-07-08|1993-08-25|COLLECT COD|TRUCK|ost slyly. quickly ironic ideas aga| +69546|724805|37320|2|40|73190.80|0.02|0.07|R|F|1993-06-21|1993-08-17|1993-07-05|NONE|RAIL|ly against the | +69546|795602|45603|3|29|49229.53|0.08|0.03|R|F|1993-06-30|1993-07-07|1993-07-24|COLLECT COD|FOB|cies across the pending, fina| +69546|682685|32686|4|50|83382.50|0.06|0.08|R|F|1993-09-21|1993-08-12|1993-09-25|DELIVER IN PERSON|RAIL|the slyly final packages. final packages| +69546|881829|6864|5|36|65188.08|0.10|0.01|A|F|1993-08-19|1993-07-14|1993-09-12|NONE|SHIP|es wake bold asymptotes. blithely ironic| +69547|124283|11790|1|43|56213.04|0.01|0.03|R|F|1993-02-05|1993-02-06|1993-02-15|DELIVER IN PERSON|TRUCK|lent instructi| +69547|808431|45980|2|35|46878.65|0.04|0.05|A|F|1993-01-11|1993-02-06|1993-02-04|DELIVER IN PERSON|RAIL| maintain blithely furiously even account| +69547|284288|9299|3|4|5089.08|0.08|0.07|A|F|1993-01-15|1993-03-04|1993-01-31|DELIVER IN PERSON|FOB| carefully idle packages| +69548|369315|31823|1|29|40144.70|0.03|0.07|A|F|1992-06-04|1992-07-22|1992-06-28|COLLECT COD|MAIL|thely silent instr| +69549|527465|2486|1|18|26863.92|0.01|0.02|N|O|1995-09-16|1995-09-07|1995-10-04|DELIVER IN PERSON|FOB|e blithely ironic packages| +69550|731543|6572|1|26|40937.26|0.05|0.08|N|O|1997-03-02|1997-04-03|1997-03-26|COLLECT COD|FOB|s; slyly ir| +69550|31293|43794|2|14|17140.06|0.07|0.07|N|O|1997-01-28|1997-03-06|1997-02-08|NONE|SHIP|idly regular courts. accounts haggle| +69550|934292|46811|3|2|2652.50|0.02|0.00|N|O|1997-02-22|1997-04-15|1997-03-15|DELIVER IN PERSON|TRUCK|. carefully bold ideas cajole blithely? cl| +69550|640718|40719|4|46|76299.28|0.08|0.02|N|O|1997-04-20|1997-04-12|1997-04-27|COLLECT COD|TRUCK|usly regular pinto bean| +69550|532655|7676|5|32|54004.16|0.03|0.02|N|O|1997-03-11|1997-04-11|1997-03-21|NONE|TRUCK| carefully b| +69550|332445|32446|6|19|28071.17|0.08|0.07|N|O|1997-02-15|1997-03-24|1997-02-27|DELIVER IN PERSON|RAIL| deposits. blithely r| +69550|389364|39365|7|20|29067.00|0.04|0.06|N|O|1997-05-04|1997-04-02|1997-05-13|COLLECT COD|FOB|pending foxes p| +69551|38371|25872|1|29|37971.73|0.08|0.00|A|F|1995-02-01|1995-02-24|1995-02-22|TAKE BACK RETURN|SHIP|ing ideas. ca| +69551|899597|12115|2|42|67055.10|0.01|0.00|R|F|1995-05-08|1995-03-28|1995-05-13|TAKE BACK RETURN|FOB|r somas. blithely even foxes h| +69551|523184|23185|3|6|7242.96|0.07|0.05|R|F|1995-05-01|1995-04-07|1995-05-11|COLLECT COD|RAIL|nst the regular foxes| +69551|147475|22480|4|12|18269.64|0.04|0.02|A|F|1995-03-15|1995-03-06|1995-04-05|TAKE BACK RETURN|RAIL|hely blithely final ideas| +69551|602857|15370|5|1|1759.82|0.07|0.03|R|F|1995-04-27|1995-03-17|1995-05-10|COLLECT COD|RAIL| pinto beans use quickly among the furio| +69551|206424|31433|6|46|61198.86|0.02|0.05|A|F|1995-04-29|1995-04-21|1995-05-13|COLLECT COD|SHIP|tes. pending, express pinto be| +69576|69667|44670|1|26|42553.16|0.05|0.04|N|O|1997-03-31|1997-04-11|1997-04-21|NONE|AIR|ges sleep quickly. | +69576|887930|37931|2|35|67126.15|0.02|0.07|N|O|1997-02-17|1997-03-24|1997-03-05|COLLECT COD|REG AIR|gular packages. blithely even ideas | +69576|432328|7345|3|14|17644.20|0.00|0.00|N|O|1997-04-26|1997-04-30|1997-05-18|TAKE BACK RETURN|MAIL| even, even instructions are ne| +69576|134880|9885|4|1|1914.88|0.03|0.07|N|O|1997-04-29|1997-04-23|1997-05-03|NONE|MAIL| ideas. pending, i| +69576|914462|39499|5|46|67915.32|0.03|0.08|N|O|1997-04-24|1997-03-10|1997-05-03|COLLECT COD|REG AIR|sts integrate. slyly even escapades us| +69576|353562|16070|6|26|42004.30|0.03|0.05|N|O|1997-05-26|1997-04-05|1997-06-10|COLLECT COD|AIR| silent foxes c| +69576|304684|17191|7|17|28707.39|0.01|0.04|N|O|1997-03-11|1997-04-20|1997-03-20|COLLECT COD|MAIL|according to the q| +69577|812339|49888|1|6|7507.74|0.03|0.04|N|O|1998-05-22|1998-04-23|1998-06-04|NONE|FOB|to beans sleep blithely slyl| +69577|971984|34504|2|31|63734.14|0.05|0.05|N|O|1998-02-24|1998-05-03|1998-03-08|DELIVER IN PERSON|FOB|ggle furiously special| +69577|121485|21486|3|32|48207.36|0.08|0.06|N|O|1998-04-29|1998-04-21|1998-05-24|DELIVER IN PERSON|MAIL|lently final ideas cajole slyly| +69577|792182|17213|4|18|22934.70|0.10|0.04|N|O|1998-03-23|1998-04-26|1998-04-19|COLLECT COD|AIR|ous packag| +69578|420692|33201|1|8|12901.36|0.07|0.08|A|F|1994-03-05|1994-03-16|1994-03-16|DELIVER IN PERSON|REG AIR|s was fluffily blithely bo| +69578|556902|19414|2|5|9794.40|0.01|0.00|A|F|1994-02-19|1994-03-31|1994-03-01|COLLECT COD|TRUCK|eposits caj| +69578|836199|36200|3|48|54487.20|0.00|0.02|R|F|1994-04-18|1994-04-07|1994-04-23|TAKE BACK RETURN|RAIL|ully even requests boost furiously furiousl| +69579|133329|20836|1|45|61304.40|0.02|0.02|A|F|1995-05-16|1995-03-06|1995-05-26|NONE|MAIL|lly. carefully even requests boost sly| +69579|843965|6482|2|1|1908.92|0.05|0.06|R|F|1995-05-14|1995-04-18|1995-05-30|COLLECT COD|MAIL|e. packages are slyly. b| +69579|512100|12101|3|24|26689.92|0.09|0.03|R|F|1995-03-09|1995-03-08|1995-03-24|NONE|TRUCK|lent deposits across| +69579|859867|9868|4|39|71245.98|0.10|0.08|R|F|1995-02-10|1995-03-15|1995-03-12|COLLECT COD|RAIL|ndencies. ruthless pa| +69579|771387|46418|5|12|17500.20|0.03|0.05|R|F|1995-05-13|1995-04-23|1995-06-02|COLLECT COD|RAIL|ounts after| +69579|699768|24795|6|10|17677.30|0.02|0.03|A|F|1995-05-25|1995-03-23|1995-06-10|COLLECT COD|MAIL|le silent patterns. blithely| +69580|664|25665|1|39|61021.74|0.06|0.01|N|O|1998-05-28|1998-04-01|1998-06-02|NONE|MAIL|ounts promise furiously at the regular asy| +69580|155723|30730|2|30|53361.60|0.06|0.02|N|O|1998-02-04|1998-03-08|1998-02-11|NONE|RAIL| about the carefully ironi| +69580|226295|13808|3|21|25646.88|0.07|0.07|N|O|1998-02-01|1998-04-24|1998-02-08|COLLECT COD|MAIL|carefully p| +69580|337468|37469|4|24|36130.80|0.04|0.05|N|O|1998-04-04|1998-03-08|1998-04-28|DELIVER IN PERSON|REG AIR| blithely regular accounts. deposits around| +69580|815344|27861|5|12|15111.60|0.07|0.00|N|O|1998-04-20|1998-04-01|1998-05-01|TAKE BACK RETURN|FOB|ests wake after the regular packages. ca| +69580|485742|48252|6|2|3455.44|0.03|0.01|N|O|1998-05-15|1998-04-28|1998-05-23|TAKE BACK RETURN|RAIL|use fluffily according to th| +69581|490042|40043|1|26|26832.52|0.09|0.07|N|O|1997-11-10|1997-12-09|1997-11-30|COLLECT COD|FOB|en accounts wak| +69581|125154|25155|2|49|57778.35|0.05|0.07|N|O|1997-09-29|1997-11-13|1997-10-27|DELIVER IN PERSON|REG AIR|lar excuses haggle blithely--| +69582|155491|5492|1|44|68045.56|0.10|0.03|R|F|1994-10-23|1994-11-18|1994-11-14|TAKE BACK RETURN|FOB|to beans. quic| +69582|321516|46529|2|37|56887.50|0.05|0.00|R|F|1994-11-11|1994-11-21|1994-11-17|COLLECT COD|TRUCK|its breach slyly. f| +69582|714981|2524|3|19|37923.05|0.07|0.02|R|F|1994-12-23|1994-11-14|1995-01-11|TAKE BACK RETURN|AIR|e carefully. pinto b| +69582|674363|11903|4|49|65529.17|0.10|0.08|R|F|1994-11-19|1994-10-26|1994-11-30|COLLECT COD|TRUCK| against the even pint| +69582|10022|10023|5|26|24232.52|0.00|0.07|A|F|1994-09-20|1994-10-04|1994-09-26|DELIVER IN PERSON|AIR|arefully final requests against the foxes| +69582|435418|35419|6|16|21654.24|0.03|0.05|A|F|1994-12-15|1994-10-19|1994-12-17|NONE|REG AIR|egular foxes. final ideas above the fluffil| +69582|59044|46548|7|32|32097.28|0.00|0.06|R|F|1994-08-28|1994-09-27|1994-09-24|COLLECT COD|RAIL|ccording to the carefully final asymptote| +69583|342965|42966|1|36|72286.20|0.00|0.00|N|O|1996-04-04|1996-05-22|1996-04-15|DELIVER IN PERSON|MAIL|ully packages. even ideas de| +69583|197745|47746|2|34|62653.16|0.04|0.03|N|O|1996-07-07|1996-06-28|1996-07-11|NONE|RAIL|requests believe furiou| +69583|484682|47192|3|43|71666.38|0.01|0.02|N|O|1996-06-30|1996-05-31|1996-07-22|DELIVER IN PERSON|AIR|r platelets cajole evenly blithely f| +69583|40459|27960|4|26|36385.70|0.06|0.08|N|O|1996-07-19|1996-05-08|1996-07-20|COLLECT COD|RAIL|ect blithely in place of the | +69583|978065|15623|5|27|30861.54|0.00|0.00|N|O|1996-04-24|1996-05-29|1996-05-02|DELIVER IN PERSON|AIR|ep after the closely| +69583|333429|45936|6|37|54109.17|0.01|0.01|N|O|1996-04-26|1996-05-14|1996-05-04|NONE|MAIL|ly regular theodolites haggle| +69608|396699|21714|1|9|16161.12|0.07|0.00|A|F|1993-01-07|1993-01-09|1993-02-03|TAKE BACK RETURN|SHIP|egular packages-- theodolites haggle slyly| +69608|315255|40268|2|9|11432.16|0.04|0.06|R|F|1993-02-23|1993-02-11|1993-03-10|NONE|TRUCK|requests. slyly pending packages bo| +69608|475703|38213|3|47|78897.96|0.00|0.01|R|F|1993-02-17|1993-02-18|1993-02-19|NONE|RAIL|usual asymptotes fo| +69608|132422|19929|4|20|29088.40|0.02|0.03|A|F|1993-01-31|1993-01-23|1993-02-28|COLLECT COD|RAIL|yly regular dep| +69608|610164|47701|5|24|25779.12|0.01|0.05|A|F|1992-12-13|1993-01-12|1993-01-04|COLLECT COD|REG AIR|ctions above t| +69608|22075|47076|6|43|42874.01|0.00|0.03|R|F|1993-03-26|1993-02-19|1993-04-20|DELIVER IN PERSON|FOB|nstructions are about t| +69608|12768|25269|7|30|50422.80|0.00|0.01|R|F|1993-02-20|1993-01-14|1993-03-14|COLLECT COD|RAIL|eodolites. dependencies dazzle even, ex| +69609|590452|40453|1|1|1542.43|0.04|0.04|N|O|1997-02-10|1997-01-08|1997-02-13|COLLECT COD|MAIL| instructions haggle carefully outside| +69609|722395|9938|2|5|7086.80|0.06|0.08|N|O|1996-11-09|1997-01-04|1996-11-16|NONE|TRUCK| the even, ironic requests. un| +69609|279945|4956|3|6|11549.58|0.10|0.05|N|O|1996-12-21|1996-12-08|1997-01-13|DELIVER IN PERSON|SHIP|even packag| +69609|19497|44498|4|47|66575.03|0.04|0.04|N|O|1997-03-07|1997-01-21|1997-03-18|COLLECT COD|SHIP|t blithely pend| +69609|671416|8956|5|5|6936.90|0.02|0.04|N|O|1997-02-19|1996-12-20|1997-03-04|NONE|AIR|sely pending| +69610|143071|43072|1|23|25623.61|0.06|0.01|A|F|1994-08-25|1994-08-26|1994-09-01|NONE|FOB| accounts alongside of| +69610|580587|18121|2|19|31683.64|0.03|0.02|R|F|1994-08-24|1994-10-08|1994-09-08|NONE|SHIP|ag blithely against the carefu| +69610|913898|1453|3|31|59267.35|0.03|0.07|A|F|1994-08-07|1994-09-20|1994-08-29|NONE|MAIL| regular packages. regular ideas wa| +69610|879491|17043|4|5|7352.25|0.00|0.04|A|F|1994-11-02|1994-09-24|1994-11-23|COLLECT COD|MAIL|ven pinto beans. ideas haggle. carefully | +69610|602927|27952|5|10|18298.90|0.05|0.02|R|F|1994-09-08|1994-10-14|1994-09-13|TAKE BACK RETURN|AIR|ial, final instr| +69610|390452|40453|6|3|4627.32|0.08|0.03|R|F|1994-08-04|1994-09-06|1994-09-01|DELIVER IN PERSON|SHIP|he ruthlessly even foxes; fi| +69611|332046|32047|1|4|4312.12|0.00|0.06|N|O|1995-11-10|1995-12-05|1995-11-26|TAKE BACK RETURN|SHIP|s among the carefu| +69612|696487|21514|1|7|10384.15|0.02|0.04|R|F|1994-08-02|1994-07-10|1994-08-25|COLLECT COD|RAIL| wake carefully about the slyly stealthy| +69612|850781|13299|2|2|3463.48|0.04|0.02|A|F|1994-07-17|1994-08-18|1994-08-13|COLLECT COD|FOB|ven foxes. carefully even requests use fu| +69613|597561|47562|1|46|76292.84|0.03|0.02|N|O|1998-09-08|1998-06-26|1998-09-26|NONE|MAIL|lar requests. silent requests hag| +69613|192399|17406|2|26|38776.14|0.06|0.05|N|O|1998-05-30|1998-07-02|1998-06-18|TAKE BACK RETURN|SHIP|press pinto beans thras| +69613|639755|2268|3|11|18641.92|0.03|0.08|N|O|1998-06-29|1998-08-04|1998-07-08|COLLECT COD|AIR|olites. ruthlessly unusual platel| +69613|354728|17236|4|7|12478.97|0.07|0.04|N|O|1998-07-02|1998-08-12|1998-07-31|DELIVER IN PERSON|TRUCK|. furiously final instr| +69614|79306|16810|1|33|42414.90|0.02|0.01|N|O|1997-02-26|1997-03-09|1997-03-05|COLLECT COD|SHIP|st the ruthless, pending dependencie| +69614|894329|44330|2|40|52931.20|0.05|0.08|N|O|1997-03-18|1997-02-19|1997-04-07|COLLECT COD|SHIP|close dolphins. caref| +69614|986075|36076|3|44|51085.32|0.02|0.07|N|O|1997-03-05|1997-02-26|1997-03-30|NONE|AIR|ajole blithely r| +69615|708147|45690|1|37|42739.07|0.08|0.00|R|F|1992-07-22|1992-09-07|1992-08-01|NONE|AIR|lyly even deposits. packages use quickly| +69615|810553|48102|2|30|43905.30|0.00|0.07|R|F|1992-10-15|1992-09-07|1992-11-02|COLLECT COD|MAIL|nding courts. blithely even | +69615|952348|2349|3|22|30806.60|0.01|0.04|R|F|1992-10-22|1992-10-04|1992-11-18|DELIVER IN PERSON|TRUCK|ole blithely. requests cajole carefu| +69640|563230|25742|1|50|64660.50|0.10|0.02|N|O|1996-05-02|1996-06-13|1996-05-10|DELIVER IN PERSON|FOB|ns. furiously express ac| +69640|198099|23106|2|16|19153.44|0.02|0.01|N|O|1996-04-28|1996-06-05|1996-05-15|COLLECT COD|SHIP|ts are alongside| +69640|446951|21968|3|19|36060.67|0.04|0.03|N|O|1996-04-21|1996-05-04|1996-05-08|COLLECT COD|AIR|ts sleep around the furiously pending| +69640|895146|7664|4|34|38797.40|0.07|0.02|N|O|1996-04-07|1996-06-26|1996-05-04|COLLECT COD|SHIP|s sleep after the | +69640|713409|952|5|39|55472.43|0.04|0.00|N|O|1996-06-01|1996-05-06|1996-06-21|NONE|FOB|final theodolites boost car| +69640|259631|9632|6|30|47718.60|0.07|0.01|N|O|1996-07-04|1996-05-26|1996-08-02|NONE|TRUCK|sits. asymptotes cajole silent| +69641|446109|46110|1|5|5275.40|0.08|0.08|N|O|1997-06-03|1997-04-11|1997-06-23|COLLECT COD|AIR| thinly. req| +69641|750690|38236|2|35|60923.10|0.07|0.08|N|O|1997-03-02|1997-05-17|1997-03-29|TAKE BACK RETURN|RAIL|y slyly regular account| +69641|836578|11611|3|3|4543.59|0.07|0.08|N|O|1997-05-19|1997-04-01|1997-05-30|COLLECT COD|TRUCK|old requests along the| +69642|948497|36052|1|24|37090.80|0.10|0.00|N|O|1998-03-28|1998-05-21|1998-04-07|TAKE BACK RETURN|MAIL|eas. slyly express deposits use blithel| +69642|378493|3508|2|49|77002.52|0.00|0.02|N|O|1998-06-17|1998-04-21|1998-07-08|NONE|MAIL|s. even foxes sleep. quickly regular r| +69642|315831|15832|3|38|70179.16|0.05|0.01|N|O|1998-05-31|1998-05-26|1998-06-12|DELIVER IN PERSON|FOB|oss the expr| +69643|762773|37804|1|6|11014.44|0.06|0.01|A|F|1993-06-03|1993-06-04|1993-06-18|COLLECT COD|TRUCK|eaves. slyly regular instructions sublate | +69643|910676|10677|2|23|38792.49|0.10|0.05|A|F|1993-06-27|1993-05-29|1993-07-04|TAKE BACK RETURN|AIR|s. carefully spe| +69643|728083|15626|3|1|1111.05|0.01|0.06|A|F|1993-03-29|1993-05-01|1993-04-08|COLLECT COD|SHIP|sts sleep afte| +69643|887599|25151|4|18|28557.90|0.03|0.05|R|F|1993-05-31|1993-05-28|1993-06-23|DELIVER IN PERSON|TRUCK|cingly ruthless fo| +69643|872468|47503|5|40|57616.80|0.00|0.00|A|F|1993-05-13|1993-04-28|1993-06-02|NONE|TRUCK|cording to the special requests| +69643|558645|46179|6|43|73255.66|0.02|0.00|A|F|1993-07-12|1993-06-10|1993-07-19|DELIVER IN PERSON|RAIL|he ironic, even pinto b| +69644|841193|41194|1|19|21548.85|0.08|0.06|A|F|1993-09-02|1993-08-27|1993-09-17|TAKE BACK RETURN|AIR|ironic requests above th| +69644|926459|38978|2|22|32679.02|0.06|0.03|A|F|1993-09-28|1993-08-20|1993-10-14|COLLECT COD|MAIL|ever express pi| +69645|17391|29892|1|10|13083.90|0.03|0.08|N|O|1997-03-11|1997-03-03|1997-03-26|TAKE BACK RETURN|TRUCK| boost according to the quietly regul| +69645|279932|17448|2|39|74564.88|0.10|0.03|N|O|1997-04-06|1997-04-08|1997-04-29|COLLECT COD|REG AIR|r requests are after the unusual, fi| +69645|807848|32881|3|33|57941.40|0.02|0.04|N|O|1997-04-08|1997-03-14|1997-05-02|DELIVER IN PERSON|SHIP|ep special instructions? | +69645|495011|7521|4|9|9053.91|0.10|0.05|N|O|1997-02-24|1997-04-11|1997-03-18|COLLECT COD|SHIP| engage blithely. req| +69645|637202|37203|5|31|35314.27|0.03|0.03|N|O|1997-03-20|1997-03-12|1997-04-13|NONE|AIR|quests wake quickly furiou| +69646|267311|17312|1|17|21731.10|0.09|0.03|N|O|1998-05-19|1998-04-27|1998-05-28|NONE|REG AIR|r packages are. silent tithes instead of th| +69646|686342|48856|2|22|29222.82|0.00|0.07|N|O|1998-03-25|1998-03-26|1998-03-29|NONE|MAIL|ns haggle carefu| +69646|340953|3460|3|13|25921.22|0.05|0.06|N|O|1998-05-14|1998-03-31|1998-06-07|DELIVER IN PERSON|REG AIR|y bold foxes. ironic instructions| +69646|390224|27746|4|9|11827.89|0.08|0.04|N|O|1998-05-19|1998-03-24|1998-06-16|NONE|TRUCK| final deposits. bravely unusual p| +69646|490467|2977|5|46|67042.24|0.02|0.08|N|O|1998-04-30|1998-03-23|1998-05-23|COLLECT COD|FOB|yly. careful| +69647|894583|7101|1|31|48903.74|0.06|0.03|A|F|1992-02-05|1992-03-07|1992-02-21|DELIVER IN PERSON|REG AIR|otes. enticing, steal| +69647|255790|43306|2|27|47136.06|0.04|0.02|A|F|1992-02-26|1992-03-12|1992-03-08|COLLECT COD|MAIL|its are accounts. bol| +69647|50305|306|3|21|26361.30|0.06|0.04|R|F|1992-02-08|1992-03-23|1992-02-17|COLLECT COD|TRUCK|warhorses! blithely reg| +69647|470987|46006|4|46|90066.16|0.00|0.05|R|F|1992-02-09|1992-03-03|1992-02-22|DELIVER IN PERSON|REG AIR|nusual ideas across th| +69647|867189|4741|5|33|38152.62|0.09|0.07|A|F|1992-05-25|1992-03-04|1992-06-10|TAKE BACK RETURN|AIR|r accounts sle| +69647|837984|501|6|37|71111.78|0.00|0.08|A|F|1992-05-15|1992-04-10|1992-06-12|NONE|FOB|side of the special, ironic ideas wa| +69672|236152|36153|1|29|31556.06|0.06|0.06|R|F|1992-08-12|1992-08-25|1992-09-02|NONE|MAIL|the fluffily pending accounts. | +69672|992959|17998|2|37|75920.67|0.07|0.08|R|F|1992-09-28|1992-09-07|1992-10-18|TAKE BACK RETURN|TRUCK|nstructions. slyly ironi| +69672|652039|27066|3|40|39640.00|0.09|0.08|A|F|1992-07-11|1992-08-31|1992-07-23|TAKE BACK RETURN|REG AIR|blithely ironic accounts--| +69672|818263|43296|4|16|18899.52|0.04|0.05|A|F|1992-07-26|1992-08-12|1992-08-01|DELIVER IN PERSON|REG AIR|y bold courts. regular, regular waters al| +69672|532996|20527|5|48|97390.56|0.02|0.08|R|F|1992-08-29|1992-08-16|1992-09-16|TAKE BACK RETURN|AIR|ular packages. deposits about the ironic| +69672|51994|26997|6|45|87569.55|0.08|0.05|R|F|1992-07-13|1992-08-05|1992-07-30|COLLECT COD|TRUCK|ckages was fluffily f| +69673|185858|23368|1|43|83585.55|0.01|0.02|N|O|1996-04-26|1996-05-09|1996-05-16|COLLECT COD|AIR|structions integrate silent, ironic| +69673|709258|34287|2|16|20275.52|0.02|0.08|N|O|1996-05-09|1996-04-08|1996-05-18|TAKE BACK RETURN|TRUCK|uriously express asymptotes. f| +69673|484121|21649|3|13|14366.30|0.06|0.06|N|O|1996-06-02|1996-04-17|1996-06-14|COLLECT COD|MAIL|side of the furi| +69673|615639|28152|4|38|59074.80|0.07|0.03|N|O|1996-05-21|1996-05-18|1996-05-26|DELIVER IN PERSON|RAIL|p courts. blithely pending requests caj| +69673|43609|18610|5|2|3105.20|0.07|0.03|N|O|1996-05-07|1996-04-13|1996-05-29|DELIVER IN PERSON|REG AIR| sleep slyly among the requests. re| +69673|935835|35836|6|31|57994.49|0.09|0.02|N|O|1996-05-27|1996-04-25|1996-06-18|DELIVER IN PERSON|AIR|kages sleep finally fluffily r| +69673|562999|25511|7|39|80416.83|0.01|0.07|N|O|1996-03-07|1996-03-30|1996-03-12|COLLECT COD|FOB|osits are blithe| +69674|311485|11486|1|41|61355.27|0.05|0.07|R|F|1993-07-19|1993-06-13|1993-08-14|TAKE BACK RETURN|TRUCK|tructions. slyly regular deposi| +69674|123670|36173|2|33|55891.11|0.03|0.06|R|F|1993-07-25|1993-06-24|1993-08-12|DELIVER IN PERSON|AIR| regular foxes. stealthily special packa| +69674|514118|39139|3|5|5660.45|0.03|0.05|A|F|1993-05-15|1993-06-11|1993-06-05|TAKE BACK RETURN|FOB|l forges promi| +69674|764645|2191|4|2|3419.22|0.04|0.01|A|F|1993-05-17|1993-06-11|1993-06-15|TAKE BACK RETURN|TRUCK|efully ironic pint| +69675|137969|25476|1|35|70243.60|0.10|0.08|A|F|1993-04-25|1993-04-17|1993-05-12|NONE|REG AIR|posits alongside of the dependencies de| +69675|844958|7475|2|25|47572.75|0.02|0.02|R|F|1993-04-16|1993-03-28|1993-05-05|DELIVER IN PERSON|REG AIR|solve fluffily pint| +69675|196135|33645|3|49|60325.37|0.02|0.03|A|F|1993-05-25|1993-03-26|1993-05-30|TAKE BACK RETURN|FOB|e bold requests eat furio| +69675|433572|33573|4|7|10538.85|0.03|0.07|R|F|1993-04-19|1993-04-30|1993-04-22|NONE|REG AIR|lyly final asymptotes| +69676|63221|25723|1|15|17763.30|0.05|0.06|R|F|1993-12-06|1993-11-04|1993-12-26|COLLECT COD|AIR|s maintain furiously. blithel| +69676|551320|13832|2|24|32911.20|0.09|0.06|R|F|1993-11-19|1993-10-31|1993-12-09|TAKE BACK RETURN|MAIL|nic foxes wake | +69676|21503|9004|3|44|62678.00|0.00|0.00|A|F|1993-11-04|1993-10-14|1993-11-26|NONE|AIR|ss deposits-- furiously even pinto beans ha| +69676|395131|32653|4|30|36783.60|0.08|0.07|R|F|1993-10-02|1993-10-10|1993-10-23|COLLECT COD|FOB|s boost quickly | +69676|959510|9511|5|16|25111.52|0.03|0.02|R|F|1993-12-29|1993-11-15|1994-01-04|TAKE BACK RETURN|MAIL|ag carefully even asymptotes-- blithely fi| +69676|476477|38987|6|28|40696.60|0.02|0.08|R|F|1993-10-31|1993-11-16|1993-11-30|COLLECT COD|MAIL|uriously unusual instructions. | +69676|140427|27934|7|38|55761.96|0.04|0.07|A|F|1993-10-22|1993-11-19|1993-10-27|TAKE BACK RETURN|MAIL|al theodolites | +69677|147855|35362|1|46|87531.10|0.07|0.02|R|F|1992-09-26|1992-09-11|1992-10-12|COLLECT COD|AIR| pinto beans around the a| +69677|982357|19915|2|42|60451.02|0.02|0.02|A|F|1992-09-22|1992-08-08|1992-10-11|COLLECT COD|REG AIR|. instructions use! ironic deposits are qu| +69677|472135|34645|3|39|43177.29|0.09|0.00|A|F|1992-08-25|1992-08-09|1992-09-05|COLLECT COD|SHIP|ss the even, even| +69677|163807|13808|4|46|86056.80|0.03|0.08|A|F|1992-09-09|1992-08-17|1992-09-21|TAKE BACK RETURN|RAIL|ding deposit| +69678|565850|3384|1|2|3831.66|0.00|0.00|N|O|1997-03-07|1997-03-03|1997-03-28|TAKE BACK RETURN|TRUCK|equests poach carefu| +69679|522065|47086|1|24|26088.96|0.10|0.01|N|O|1997-03-05|1997-01-08|1997-04-01|NONE|FOB|ed deposits. iro| +69679|331842|31843|2|44|82448.52|0.01|0.04|N|O|1997-03-06|1996-12-17|1997-03-31|NONE|AIR|along the pending, regular foxes. b| +69679|265635|15636|3|7|11204.34|0.02|0.06|N|O|1997-01-07|1996-12-20|1997-01-19|COLLECT COD|REG AIR| alongside of t| +69679|516359|28870|4|10|13753.30|0.04|0.04|N|O|1996-11-06|1997-01-25|1996-11-17|DELIVER IN PERSON|TRUCK|kages. final, final| +69704|918015|30534|1|42|43384.74|0.03|0.00|N|O|1995-11-06|1995-08-16|1995-11-28|COLLECT COD|AIR|ent sheaves after the slyly speci| +69704|66521|16522|2|49|72888.48|0.07|0.05|N|O|1995-09-29|1995-09-13|1995-10-18|NONE|REG AIR|ongside of the carefully bold orbits| +69704|8409|45910|3|37|48743.80|0.01|0.00|N|O|1995-08-03|1995-09-09|1995-08-23|DELIVER IN PERSON|FOB|ly express theodolites doubt slyly! c| +69704|317565|17566|4|48|75962.40|0.10|0.00|N|O|1995-11-14|1995-10-13|1995-12-12|DELIVER IN PERSON|RAIL|cial packages affix slyly. slyly ironic req| +69704|304622|4623|5|39|63437.79|0.04|0.01|N|O|1995-08-25|1995-08-29|1995-08-31|COLLECT COD|REG AIR|p blithely careful| +69705|169686|44693|1|37|64960.16|0.04|0.02|R|F|1994-10-22|1994-12-04|1994-10-31|TAKE BACK RETURN|TRUCK|across the carefully express foxes| +69705|911138|11139|2|37|42516.33|0.03|0.08|A|F|1994-12-26|1994-12-22|1995-01-14|COLLECT COD|SHIP|cial ideas haggle accordi| +69705|487827|37828|3|38|68962.40|0.03|0.04|R|F|1994-12-09|1994-12-18|1995-01-06|COLLECT COD|MAIL|eposits affix carefully carefully even | +69705|894552|19587|4|39|60313.89|0.06|0.00|A|F|1995-01-04|1995-01-03|1995-01-07|NONE|REG AIR|ackages haggle des| +69705|726555|39070|5|46|72749.92|0.02|0.00|R|F|1995-01-19|1994-12-26|1995-02-14|TAKE BACK RETURN|RAIL|c dependencies. special accounts | +69705|201995|1996|6|19|36042.62|0.10|0.00|A|F|1994-11-04|1994-11-23|1994-12-03|NONE|SHIP| blithely regular packag| +69706|27968|27969|1|4|7583.84|0.07|0.03|N|O|1997-05-20|1997-04-29|1997-06-08|DELIVER IN PERSON|FOB| pinto beans after the furiously | +69706|51856|39360|2|6|10847.10|0.05|0.03|N|O|1997-02-27|1997-03-18|1997-03-08|COLLECT COD|MAIL|. carefully ironic p| +69706|528946|41457|3|45|88871.40|0.09|0.02|N|O|1997-06-06|1997-04-02|1997-06-28|TAKE BACK RETURN|SHIP| theodolites according to the | +69706|985114|47634|4|30|35972.10|0.05|0.04|N|O|1997-04-28|1997-04-02|1997-05-20|NONE|REG AIR|refully regular ideas. quickly reg| +69706|803075|40624|5|24|23472.72|0.07|0.03|N|O|1997-02-09|1997-03-26|1997-03-11|TAKE BACK RETURN|RAIL| furiously along the furiously ironic| +69706|270484|8000|6|37|53815.39|0.03|0.04|N|O|1997-03-31|1997-03-17|1997-04-01|COLLECT COD|REG AIR|ending packages. packages cajole. re| +69707|355512|18020|1|35|54862.50|0.02|0.00|N|O|1996-10-29|1996-11-24|1996-11-08|NONE|AIR|nd the foxes cajole specia| +69707|78082|15586|2|33|34982.64|0.01|0.06|N|O|1997-02-01|1996-12-25|1997-02-19|NONE|MAIL|d of the unusual deposits. accounts | +69707|323994|49007|3|39|78701.22|0.09|0.05|N|O|1996-12-20|1996-12-25|1997-01-04|NONE|RAIL|lar foxes among the regular| +69707|350600|25615|4|20|33011.80|0.06|0.00|N|O|1997-01-11|1997-01-10|1997-01-20|TAKE BACK RETURN|MAIL|about the furiously expres| +69707|526573|39084|5|13|20794.15|0.05|0.04|N|O|1996-11-18|1997-01-05|1996-11-21|COLLECT COD|REG AIR|ly. bravely even deposits boost furiousl| +69707|97647|47648|6|39|64140.96|0.00|0.07|N|O|1996-10-27|1996-12-12|1996-11-07|COLLECT COD|REG AIR|express deposits? express, re| +69707|151989|1990|7|33|67352.34|0.09|0.02|N|O|1996-11-30|1997-01-03|1996-12-06|DELIVER IN PERSON|FOB|y upon the fluffily special p| +69708|476861|26862|1|10|18378.40|0.06|0.00|N|O|1997-03-04|1997-03-23|1997-03-14|NONE|MAIL| doze bravely after the fluff| +69708|602699|27724|2|9|14414.94|0.00|0.03|N|O|1997-04-18|1997-03-20|1997-05-15|NONE|AIR|al courts doubt carefully acc| +69708|557213|32236|3|28|35565.32|0.06|0.00|N|O|1997-04-09|1997-04-03|1997-05-05|TAKE BACK RETURN|MAIL|er the fur| +69708|74920|37422|4|4|7579.68|0.06|0.02|N|O|1997-01-26|1997-03-07|1997-02-23|TAKE BACK RETURN|FOB| packages nag furiously a| +69708|179315|16825|5|8|11154.48|0.10|0.02|N|O|1997-05-10|1997-03-10|1997-06-09|NONE|REG AIR|y according to| +69708|735574|10603|6|49|78867.46|0.07|0.06|N|O|1997-02-12|1997-03-17|1997-02-15|COLLECT COD|TRUCK|uickly ironic packages above the bl| +69709|888226|25778|1|35|42496.30|0.00|0.06|N|O|1996-01-07|1996-01-14|1996-01-23|DELIVER IN PERSON|MAIL| ideas. never pending instructions ar| +69709|405963|43488|2|6|11213.64|0.08|0.02|N|O|1996-01-27|1996-01-21|1996-02-10|DELIVER IN PERSON|MAIL|eans use furiously: f| +69709|4631|17132|3|49|75245.87|0.06|0.04|N|O|1996-02-10|1995-12-28|1996-02-13|COLLECT COD|MAIL|for the frays are slyly pin| +69709|829901|17450|4|41|75065.26|0.01|0.03|N|O|1995-11-07|1996-01-05|1995-11-21|DELIVER IN PERSON|SHIP|fily pending theodolites. blit| +69710|684454|21994|1|30|43152.60|0.01|0.06|R|F|1994-10-08|1994-12-21|1994-11-05|NONE|SHIP| furiously ironic deposits nag blithel| +69710|612461|12462|2|10|13734.30|0.06|0.07|R|F|1994-09-30|1994-11-03|1994-10-11|DELIVER IN PERSON|SHIP|en instructions cajole acc| +69711|29425|4426|1|26|35214.92|0.01|0.07|A|F|1995-03-19|1995-04-18|1995-03-30|COLLECT COD|FOB|lyly even packages. slyly b| +69711|544885|32416|2|1|1929.86|0.04|0.05|R|F|1995-03-28|1995-05-22|1995-04-12|NONE|AIR| cajole quic| +69736|928275|28276|1|6|7819.38|0.03|0.00|N|O|1998-07-12|1998-04-28|1998-08-11|NONE|AIR|e. even, even dinos hang along the blithely| +69736|510487|35508|2|14|20964.44|0.05|0.00|N|O|1998-05-13|1998-06-03|1998-06-08|COLLECT COD|REG AIR|es are enticingly a| +69736|749472|37015|3|15|22821.60|0.04|0.06|N|O|1998-06-17|1998-05-14|1998-07-04|NONE|SHIP|s. carefully bold ac| +69736|372477|9999|4|17|26340.82|0.07|0.01|N|O|1998-04-08|1998-04-18|1998-04-17|DELIVER IN PERSON|TRUCK| haggle. carefully unusual instructions | +69736|220185|7698|5|49|54153.33|0.04|0.04|N|O|1998-06-22|1998-05-20|1998-07-20|NONE|AIR|press, pending| +69736|643685|6198|6|34|55374.10|0.02|0.02|N|O|1998-03-18|1998-05-01|1998-04-11|TAKE BACK RETURN|SHIP|pinto beans boost| +69737|694507|19534|1|9|13513.23|0.08|0.08|N|O|1995-12-30|1995-11-07|1996-01-06|NONE|FOB|lyly even orbi| +69737|569576|7110|2|24|39493.20|0.03|0.01|N|O|1995-12-23|1995-10-14|1996-01-19|COLLECT COD|TRUCK|ions affix about the furio| +69738|954562|42120|1|10|16165.20|0.01|0.05|N|O|1996-11-04|1996-10-10|1996-12-02|DELIVER IN PERSON|FOB|lthy theodolites cajole stealth| +69738|321476|46489|2|21|31446.66|0.09|0.08|N|O|1996-10-27|1996-10-21|1996-11-18|NONE|TRUCK|usly daring packages? furiously| +69738|35237|47738|3|50|58611.50|0.03|0.08|N|O|1996-10-25|1996-09-27|1996-11-06|DELIVER IN PERSON|RAIL|ests. carefully bold ideas sleep sl| +69738|222849|22850|4|24|42523.92|0.09|0.01|N|O|1996-10-21|1996-10-31|1996-10-22|TAKE BACK RETURN|REG AIR| are carefully fina| +69738|420974|20975|5|47|89062.65|0.06|0.02|N|O|1996-09-23|1996-10-17|1996-10-01|NONE|MAIL|ly pending reque| +69739|80754|43256|1|30|52042.50|0.04|0.00|N|O|1996-01-13|1995-12-09|1996-02-01|NONE|SHIP|lly close accounts| +69739|231692|19205|2|7|11365.76|0.10|0.05|N|O|1995-11-08|1995-10-29|1995-11-09|TAKE BACK RETURN|REG AIR|ts. even, bold foxes | +69739|47428|9929|3|26|35760.92|0.01|0.08|N|O|1996-01-16|1995-11-25|1996-01-26|TAKE BACK RETURN|FOB|ges maintain. quic| +69739|109722|22225|4|12|20780.64|0.10|0.07|N|O|1995-12-20|1995-10-30|1996-01-15|TAKE BACK RETURN|MAIL|theodolites are slyly. express r| +69739|95974|45975|5|11|21669.67|0.10|0.01|N|O|1995-12-25|1995-12-17|1996-01-17|NONE|TRUCK| quickly expre| +69739|27493|2494|6|48|68183.52|0.02|0.08|N|O|1996-01-13|1995-11-15|1996-01-20|DELIVER IN PERSON|RAIL|te. quickly regular instruct| +69740|563493|13494|1|35|54476.45|0.02|0.07|R|F|1992-10-14|1992-10-15|1992-11-03|TAKE BACK RETURN|TRUCK|accounts. even th| +69740|623739|48764|2|45|74821.50|0.00|0.08|R|F|1992-10-12|1992-09-23|1992-11-10|COLLECT COD|MAIL| accounts are enticingly special, ironic | +69740|172315|9825|3|37|51330.47|0.06|0.04|A|F|1992-10-22|1992-09-26|1992-11-14|DELIVER IN PERSON|SHIP| evenly even asym| +69740|81530|44032|4|18|27207.54|0.03|0.04|A|F|1992-11-08|1992-09-02|1992-12-01|COLLECT COD|MAIL|s. slyly regular packages are qui| +69741|141597|29104|1|26|42603.34|0.07|0.07|R|F|1992-09-05|1992-09-26|1992-09-15|COLLECT COD|AIR| blithely bold somas integrate. regular i| +69741|813055|38088|2|34|32912.34|0.02|0.06|R|F|1992-09-03|1992-10-04|1992-09-04|TAKE BACK RETURN|MAIL|s. slyly express accoun| +69741|9558|47059|3|18|26415.90|0.00|0.03|A|F|1992-08-06|1992-09-05|1992-08-22|COLLECT COD|FOB| the blithely stealthy pinto bean| +69741|631135|43648|4|18|19189.80|0.04|0.02|A|F|1992-11-12|1992-09-11|1992-12-12|NONE|RAIL| requests after the furiously | +69741|470539|45558|5|50|75475.50|0.02|0.02|R|F|1992-08-02|1992-10-16|1992-08-13|TAKE BACK RETURN|AIR|late carefully furiously r| +69741|338989|14002|6|7|14195.79|0.02|0.04|A|F|1992-11-23|1992-09-12|1992-11-28|NONE|MAIL|riously ironic foxes eat furio| +69741|376493|14015|7|5|7847.40|0.08|0.01|R|F|1992-08-04|1992-09-05|1992-08-23|COLLECT COD|FOB|he careful| +69742|716414|41443|1|44|62936.72|0.05|0.06|N|O|1997-08-15|1997-07-26|1997-08-17|COLLECT COD|MAIL|d pinto beans. furio| +69742|756954|31985|2|31|62338.52|0.10|0.00|N|O|1997-08-16|1997-08-25|1997-09-10|TAKE BACK RETURN|FOB| packages. furiously unusual p| +69742|121758|46763|3|44|78309.00|0.04|0.01|N|O|1997-08-14|1997-08-13|1997-08-26|NONE|AIR|urious requests| +69742|372792|47807|4|9|16783.02|0.03|0.08|N|O|1997-07-19|1997-08-02|1997-07-25|COLLECT COD|RAIL|heaves cajole evenly iro| +69742|507837|32858|5|20|36896.20|0.10|0.04|N|O|1997-08-20|1997-08-27|1997-09-10|TAKE BACK RETURN|SHIP| carefully even ac| +69742|204111|41624|6|31|31468.10|0.10|0.02|N|O|1997-09-22|1997-08-19|1997-09-25|NONE|REG AIR|o beans grow blit| +69742|480627|18155|7|48|77164.80|0.07|0.06|N|O|1997-09-03|1997-08-14|1997-09-28|COLLECT COD|TRUCK|ed deposits detect blithely bl| +69743|896637|21672|1|31|50641.29|0.07|0.05|R|F|1995-01-18|1994-12-27|1995-02-03|TAKE BACK RETURN|TRUCK| accounts. carefully even a| +69743|770516|8062|2|25|39662.00|0.09|0.07|R|F|1995-02-20|1995-01-04|1995-03-03|DELIVER IN PERSON|RAIL|al requests cajole fluffily blit| +69743|62133|49637|3|44|48185.72|0.10|0.03|A|F|1994-11-28|1995-02-02|1994-12-05|DELIVER IN PERSON|REG AIR|ully. theodolites nag. quic| +69743|255765|5766|4|29|49901.75|0.07|0.03|A|F|1995-02-12|1995-02-08|1995-02-17|NONE|RAIL|le furiously. | +69768|628156|3181|1|13|14093.56|0.04|0.08|N|O|1997-10-11|1997-07-28|1997-11-09|DELIVER IN PERSON|AIR|eodolites after t| +69768|410772|23281|2|43|72358.25|0.02|0.04|N|O|1997-07-06|1997-08-19|1997-07-27|TAKE BACK RETURN|FOB|ts affix care| +69768|842378|4895|3|33|43570.89|0.08|0.08|N|O|1997-07-24|1997-08-21|1997-08-22|NONE|AIR|symptotes affix fluffily qu| +69769|129322|16829|1|36|48647.52|0.01|0.01|N|O|1995-07-14|1995-09-21|1995-07-20|COLLECT COD|FOB|althily careful| +69769|513656|1187|2|13|21705.19|0.00|0.03|N|O|1995-10-03|1995-08-12|1995-10-18|NONE|FOB|requests wake furiously quickly pendin| +69769|999940|12460|3|43|87715.70|0.03|0.00|N|O|1995-06-29|1995-09-15|1995-07-15|NONE|TRUCK|s are. pending pinto beans nag furiously | +69769|983786|21344|4|32|59831.68|0.06|0.08|N|O|1995-07-04|1995-09-04|1995-07-15|TAKE BACK RETURN|REG AIR|fully furiously ironic dolph| +69769|475899|38409|5|29|54371.23|0.07|0.04|N|O|1995-08-30|1995-08-21|1995-09-06|TAKE BACK RETURN|RAIL| foxes haggle blithely final fo| +69769|426940|26941|6|20|37338.40|0.09|0.07|N|O|1995-10-06|1995-08-15|1995-10-28|NONE|FOB|dencies. bu| +69770|838059|25608|1|38|37886.38|0.06|0.05|N|O|1998-03-29|1998-02-12|1998-04-13|COLLECT COD|MAIL|s. dugouts haggle furiously along the un| +69770|244452|44453|2|21|29325.24|0.07|0.06|N|O|1998-02-25|1998-01-30|1998-03-22|TAKE BACK RETURN|TRUCK|ily carefully regular accounts. carefully s| +69770|491808|4318|3|5|8998.90|0.10|0.08|N|O|1998-02-25|1998-01-16|1998-03-14|DELIVER IN PERSON|MAIL|. silent foxes | +69770|810839|10840|4|38|66492.02|0.03|0.00|N|O|1998-01-04|1998-02-04|1998-01-06|NONE|AIR|side of the packages. carefully r| +69770|758185|45731|5|13|16160.95|0.06|0.05|N|O|1998-01-05|1998-01-05|1998-01-13|DELIVER IN PERSON|TRUCK|pinto beans. even packages despite the din| +69770|800927|25960|6|26|47524.88|0.10|0.01|N|O|1998-03-06|1998-01-23|1998-03-08|TAKE BACK RETURN|MAIL|mptotes. slyly even t| +69770|172749|10259|7|31|56473.94|0.02|0.05|N|O|1998-03-13|1998-02-20|1998-03-31|TAKE BACK RETURN|SHIP| instructions will hang slyly slyly regul| +69771|381169|43677|1|16|20002.40|0.02|0.03|A|F|1995-01-07|1994-11-22|1995-01-08|NONE|TRUCK|egular deposits nag alon| +69771|304635|4636|2|46|75422.52|0.09|0.05|R|F|1994-10-23|1994-11-14|1994-11-22|TAKE BACK RETURN|RAIL|s lose quickly | +69771|984309|46829|3|16|22292.16|0.05|0.05|A|F|1995-01-11|1994-12-08|1995-02-04|NONE|AIR|ly final acco| +69771|273998|11514|4|5|9859.90|0.09|0.01|A|F|1995-01-17|1994-11-17|1995-02-07|COLLECT COD|REG AIR|ously final, express pinto beans. careful| +69771|78397|28398|5|30|41261.70|0.06|0.02|R|F|1994-10-17|1994-12-25|1994-10-29|NONE|SHIP|s are fluffily ironic pinto beans. regu| +69771|608225|8226|6|27|30596.13|0.00|0.03|A|F|1994-12-29|1994-11-06|1995-01-05|COLLECT COD|FOB|lar packages along| +69771|429012|29013|7|24|22583.76|0.04|0.07|A|F|1994-10-01|1994-12-24|1994-10-12|COLLECT COD|AIR| the blithel| +69772|394828|7336|1|8|15382.48|0.07|0.02|A|F|1992-04-19|1992-04-06|1992-05-12|TAKE BACK RETURN|AIR|l pinto beans according to | +69772|869670|32188|2|5|8198.15|0.07|0.06|A|F|1992-05-10|1992-03-04|1992-05-20|COLLECT COD|REG AIR|he ideas. carefully | +69772|533647|21178|3|42|70586.04|0.08|0.00|A|F|1992-04-03|1992-02-20|1992-04-09|TAKE BACK RETURN|SHIP|fily according to the brave package| +69773|932875|20430|1|29|55327.07|0.02|0.06|N|O|1995-07-19|1995-05-18|1995-08-18|NONE|AIR|fully at the pending requests. courts cajol| +69773|818760|31277|2|24|40289.28|0.01|0.05|N|O|1995-06-21|1995-05-04|1995-07-03|DELIVER IN PERSON|SHIP|t carefully at t| +69774|791038|3554|1|22|24838.00|0.02|0.01|A|F|1995-01-05|1995-02-20|1995-01-15|DELIVER IN PERSON|MAIL|ts. furiously stealthy instructions for| +69774|970218|20219|2|40|51526.80|0.02|0.04|A|F|1995-02-06|1995-03-27|1995-02-21|NONE|SHIP| requests detect slyly fluffily regular f| +69774|447697|22714|3|4|6578.68|0.04|0.02|R|F|1995-04-24|1995-02-22|1995-05-03|COLLECT COD|TRUCK|sts haggle. furiously express | +69774|426909|1926|4|4|7343.52|0.09|0.05|R|F|1995-02-16|1995-02-14|1995-03-04|TAKE BACK RETURN|REG AIR|ckly bold p| +69774|45153|20154|5|17|18668.55|0.08|0.00|A|F|1995-03-04|1995-03-05|1995-03-27|COLLECT COD|MAIL|eans among the ironic instructions boos| +69775|600300|25325|1|14|16803.78|0.10|0.04|A|F|1992-09-27|1992-09-21|1992-10-11|TAKE BACK RETURN|MAIL|structions cajole. car| +69775|235900|23413|2|20|36717.80|0.10|0.05|R|F|1992-11-12|1992-09-23|1992-11-22|NONE|AIR| regular idea| +69775|758087|20603|3|15|17175.75|0.10|0.05|A|F|1992-11-24|1992-11-06|1992-11-28|NONE|FOB|ckages. requests affix slyl| +69800|390029|2537|1|19|21261.19|0.08|0.05|N|O|1998-02-13|1998-01-30|1998-02-22|COLLECT COD|TRUCK| packages haggle above the blithel| +69801|721321|21322|1|32|42953.28|0.04|0.05|A|F|1994-05-09|1994-04-14|1994-05-23|NONE|AIR|ly pending packages. special, p| +69801|238762|26275|2|41|69730.75|0.10|0.02|A|F|1994-05-30|1994-04-10|1994-06-26|COLLECT COD|FOB|ions engage bli| +69802|319226|6745|1|17|21168.57|0.08|0.07|N|O|1996-06-07|1996-07-15|1996-07-07|DELIVER IN PERSON|AIR|ymptotes. furiously ironic accounts sleep q| +69802|224732|24733|2|38|62955.36|0.05|0.04|N|O|1996-07-13|1996-06-30|1996-07-15|TAKE BACK RETURN|RAIL|across the regular escapades. regular pin| +69802|69981|44984|3|36|70235.28|0.08|0.00|N|O|1996-09-05|1996-06-21|1996-09-28|NONE|AIR|uests haggle carefully accor| +69802|167755|42762|4|32|58328.00|0.04|0.03|N|O|1996-05-21|1996-06-25|1996-05-30|COLLECT COD|REG AIR|ng ideas. carefully silent acco| +69803|787265|49781|1|16|21635.68|0.07|0.04|N|O|1996-09-29|1996-08-16|1996-10-13|TAKE BACK RETURN|FOB|te blithely. blithely idle d| +69803|550964|25987|2|3|6044.82|0.09|0.01|N|O|1996-07-18|1996-09-16|1996-08-17|COLLECT COD|REG AIR|hely unusual ideas caj| +69803|51330|1331|3|7|8969.31|0.04|0.01|N|O|1996-08-25|1996-08-14|1996-09-12|TAKE BACK RETURN|FOB|cording to the sly| +69803|687277|49791|4|30|37927.20|0.08|0.04|N|O|1996-07-15|1996-09-20|1996-07-26|NONE|AIR|beans: busily even requests nag carefully | +69804|949666|24703|1|20|34312.40|0.07|0.02|A|F|1992-10-16|1992-10-11|1992-10-22|TAKE BACK RETURN|SHIP|ickly? slyly unusual deposits t| +69804|31860|31861|2|25|44796.50|0.03|0.04|R|F|1992-12-09|1992-09-22|1992-12-22|NONE|MAIL|ole furiously final packages. care| +69804|457896|20406|3|29|53762.23|0.09|0.02|A|F|1992-09-29|1992-09-30|1992-10-20|DELIVER IN PERSON|FOB|the furiously final packages. slyly| +69804|845135|7652|4|14|15121.26|0.05|0.08|R|F|1992-09-08|1992-10-18|1992-09-29|COLLECT COD|REG AIR|jole fluffily unusual accounts. careful | +69805|932806|45325|1|26|47807.76|0.03|0.07|N|O|1996-04-14|1996-04-04|1996-05-10|COLLECT COD|FOB|r instructions across| +69805|658329|8330|2|22|28320.38|0.02|0.02|N|O|1996-01-09|1996-02-19|1996-02-06|COLLECT COD|RAIL|idly even epitaphs. blit| +69806|391703|4211|1|41|73582.29|0.08|0.08|A|F|1992-05-03|1992-04-26|1992-05-26|COLLECT COD|MAIL|s among the blithely pending foxe| +69806|340919|15932|2|15|29398.50|0.01|0.03|A|F|1992-02-21|1992-05-08|1992-03-10|DELIVER IN PERSON|REG AIR|uests cajole furiously slyly even instructi| +69807|524328|24329|1|12|16227.60|0.09|0.07|N|O|1997-03-24|1997-05-28|1997-03-30|DELIVER IN PERSON|FOB|, final theodolites. carefully bold reque| +69807|372348|47363|2|29|41189.57|0.09|0.02|N|O|1997-07-03|1997-05-24|1997-07-21|DELIVER IN PERSON|AIR|deposits-- ironic platelets along the slowl| +69807|51021|38525|3|29|28188.58|0.06|0.02|N|O|1997-05-16|1997-05-12|1997-06-06|COLLECT COD|REG AIR|nt pinto beans | +69807|498786|48787|4|47|83883.72|0.04|0.06|N|O|1997-04-23|1997-05-10|1997-05-17|DELIVER IN PERSON|RAIL|atelets are. silent, even accounts sleep | +69807|86141|23645|5|41|46212.74|0.10|0.03|N|O|1997-04-10|1997-06-09|1997-04-17|COLLECT COD|AIR|e packages believe furiously | +69832|909624|22143|1|21|34305.18|0.06|0.07|N|O|1998-01-21|1998-01-12|1998-02-01|DELIVER IN PERSON|TRUCK|hless accounts are. even pint| +69832|39284|26785|2|1|1223.28|0.03|0.08|N|O|1998-02-26|1998-01-14|1998-03-28|DELIVER IN PERSON|TRUCK|fluffily regular courts sleep fluff| +69833|848943|36492|1|20|37838.00|0.05|0.07|A|F|1992-05-05|1992-05-30|1992-06-01|DELIVER IN PERSON|REG AIR|ructions. regular| +69833|182123|32124|2|8|9640.96|0.06|0.04|A|F|1992-04-03|1992-06-08|1992-04-20|TAKE BACK RETURN|TRUCK|ost above the pendin| +69833|940743|28298|3|5|8918.50|0.00|0.04|A|F|1992-04-15|1992-06-26|1992-05-03|TAKE BACK RETURN|RAIL|rts. carefully final packages| +69833|60225|22727|4|36|42667.92|0.04|0.02|R|F|1992-07-11|1992-06-04|1992-07-22|COLLECT COD|SHIP|to beans. regular accounts sleep| +69833|191733|16740|5|4|7298.92|0.01|0.04|R|F|1992-07-23|1992-04-28|1992-07-28|NONE|MAIL|the furiously unusual ideas. expre| +69833|443766|6275|6|44|75228.56|0.09|0.08|A|F|1992-06-20|1992-05-06|1992-06-26|TAKE BACK RETURN|RAIL|fluffily even instructions. quickly| +69833|366514|29022|7|4|6322.00|0.08|0.03|R|F|1992-06-01|1992-05-04|1992-06-02|DELIVER IN PERSON|RAIL|nding platelets boost decoys. ironic de| +69834|986035|11074|1|16|17935.84|0.05|0.04|N|O|1995-09-07|1995-10-29|1995-09-26|COLLECT COD|REG AIR| unusual deposits integrate | +69834|279556|4567|2|8|12284.32|0.09|0.01|N|O|1995-12-06|1995-10-09|1995-12-31|NONE|MAIL|its haggle slyly after the slyl| +69834|484244|34245|3|22|27020.84|0.07|0.04|N|O|1995-12-21|1995-11-04|1995-12-31|DELIVER IN PERSON|AIR| unusual dolphins according to the blithe| +69834|672182|9722|4|14|16158.10|0.05|0.02|N|O|1995-10-17|1995-12-04|1995-11-04|COLLECT COD|TRUCK|. quickly express deposits wake carefully. | +69834|359738|9739|5|10|17977.20|0.00|0.08|N|O|1995-11-29|1995-11-12|1995-12-17|DELIVER IN PERSON|AIR|he furiously special platelets. b| +69834|101953|14456|6|21|41053.95|0.04|0.06|N|O|1995-09-20|1995-10-06|1995-09-27|DELIVER IN PERSON|FOB|ests. unusual, fina| +69835|91227|3729|1|36|43855.92|0.09|0.06|N|O|1998-10-23|1998-08-29|1998-11-19|TAKE BACK RETURN|MAIL|y silent courts. ironic, pend| +69835|248021|23030|2|6|5814.06|0.01|0.07|N|O|1998-07-28|1998-08-28|1998-07-30|COLLECT COD|SHIP|ole fluffily brave| +69836|697474|9988|1|48|70629.12|0.02|0.01|N|O|1995-08-27|1995-08-05|1995-09-13|NONE|FOB|daringly final accounts. blithely expres| +69836|439921|39922|2|45|83740.50|0.07|0.04|N|O|1995-07-27|1995-08-30|1995-08-04|NONE|MAIL| carefully final packages. | +69837|577186|27187|1|48|60631.68|0.04|0.07|N|O|1996-08-03|1996-07-18|1996-09-01|DELIVER IN PERSON|FOB|ickly ironic | +69837|752915|2916|2|44|86586.72|0.05|0.00|N|O|1996-08-20|1996-06-23|1996-09-07|NONE|SHIP| wake blithely slyly final | +69837|228497|41002|3|10|14254.80|0.10|0.02|N|O|1996-05-05|1996-07-12|1996-05-07|NONE|AIR| packages use about the blit| +69838|749670|49671|1|7|12037.48|0.07|0.04|N|O|1997-02-09|1997-03-19|1997-03-10|NONE|TRUCK|eas inside| +69838|688667|26207|2|14|23178.82|0.09|0.00|N|O|1997-04-23|1997-04-10|1997-05-08|NONE|MAIL|ounts. regular, ironic acco| +69839|601448|13961|1|32|43181.12|0.00|0.05|N|O|1995-10-11|1995-09-28|1995-11-09|TAKE BACK RETURN|SHIP|ounts. regular depos| +69839|529990|42501|2|35|70698.95|0.00|0.05|N|O|1995-07-19|1995-09-07|1995-07-31|DELIVER IN PERSON|RAIL|beans use slyly. ironic dependencies sleep| +69839|526449|26450|3|25|36885.50|0.10|0.07|N|O|1995-08-10|1995-09-23|1995-08-19|NONE|FOB|? idly ironic platelets ki| +69839|26094|26095|4|50|51004.50|0.10|0.05|N|O|1995-08-12|1995-08-04|1995-09-04|DELIVER IN PERSON|FOB|ly. ideas doze carefully slyly express | +69839|546384|8895|5|22|31467.92|0.07|0.04|N|O|1995-08-04|1995-08-07|1995-08-08|COLLECT COD|MAIL| even theodolites. slyly final deposits c| +69839|59735|22237|6|42|71178.66|0.00|0.00|N|O|1995-08-11|1995-08-10|1995-08-20|DELIVER IN PERSON|MAIL|hely special ideas impress carefull| +69864|929910|42429|1|47|91173.89|0.09|0.06|R|F|1992-09-28|1992-08-10|1992-10-18|NONE|TRUCK|ns sleep furiously caref| +69865|204525|4526|1|41|58609.91|0.02|0.02|A|F|1992-04-19|1992-05-21|1992-05-19|COLLECT COD|AIR| unusual pa| +69865|443404|43405|2|12|16168.56|0.02|0.04|R|F|1992-05-09|1992-05-16|1992-05-15|NONE|RAIL|eas. furiously pending dependencie| +69865|279085|29086|3|38|40434.66|0.05|0.04|A|F|1992-06-04|1992-06-04|1992-07-03|DELIVER IN PERSON|FOB|refully fina| +69866|715020|15021|1|31|32084.69|0.04|0.07|A|F|1994-07-02|1994-06-30|1994-07-27|DELIVER IN PERSON|AIR|requests haggl| +69866|329015|41522|2|38|39672.00|0.03|0.06|A|F|1994-05-23|1994-06-19|1994-05-28|COLLECT COD|AIR|across the furiou| +69866|751387|1388|3|38|54657.30|0.04|0.05|R|F|1994-04-23|1994-06-07|1994-05-08|COLLECT COD|FOB|excuses haggle. quickly | +69866|553803|28826|4|14|25994.92|0.03|0.04|A|F|1994-05-17|1994-05-14|1994-06-12|COLLECT COD|MAIL|leep furiously slyly bold | +69866|766629|16630|5|37|62736.83|0.00|0.04|A|F|1994-05-15|1994-07-02|1994-06-03|COLLECT COD|TRUCK|packages promise slyly. furiously ev| +69866|724072|49101|6|11|12056.44|0.02|0.08|A|F|1994-04-30|1994-05-07|1994-05-20|TAKE BACK RETURN|RAIL| pinto beans are. unusual pinto bean| +69866|476803|1822|7|18|32036.04|0.07|0.06|A|F|1994-07-03|1994-05-06|1994-07-14|NONE|SHIP|symptotes. pending requests are along the | +69867|625694|38207|1|50|80983.00|0.08|0.02|N|O|1996-06-22|1996-06-10|1996-07-09|NONE|AIR|pending, special requests. furious| +69868|329032|4045|1|44|46684.88|0.09|0.00|N|O|1997-01-22|1997-02-12|1997-02-02|DELIVER IN PERSON|TRUCK| ironic accounts. quickly even | +69869|729250|29251|1|8|10233.76|0.05|0.08|R|F|1994-07-05|1994-07-30|1994-08-04|DELIVER IN PERSON|TRUCK|oze slyly after the sp| +69869|496567|9077|2|21|32834.34|0.08|0.01|R|F|1994-05-27|1994-06-17|1994-06-01|NONE|TRUCK|lphins boost ideas. unusual d| +69869|800661|13178|3|35|54656.70|0.03|0.00|R|F|1994-08-22|1994-07-21|1994-09-09|COLLECT COD|RAIL|thout the deposits| +69869|693405|30945|4|15|20975.55|0.06|0.00|R|F|1994-08-26|1994-07-29|1994-09-22|DELIVER IN PERSON|FOB|foxes are bli| +69869|43503|43504|5|20|28930.00|0.08|0.08|A|F|1994-09-02|1994-07-30|1994-09-26|TAKE BACK RETURN|TRUCK|nst the bold| +69869|154529|42039|6|5|7917.60|0.04|0.01|R|F|1994-06-27|1994-08-06|1994-07-01|DELIVER IN PERSON|REG AIR|atelets above | +69869|167804|5314|7|45|84231.00|0.05|0.04|A|F|1994-05-16|1994-06-27|1994-05-30|NONE|RAIL|al ideas are| +69870|273338|35844|1|11|14424.52|0.05|0.01|A|F|1994-03-26|1994-04-05|1994-04-10|COLLECT COD|AIR|s theodolites sleep blithely. regu| +69870|977694|27695|2|33|58464.45|0.06|0.03|R|F|1994-02-06|1994-04-11|1994-02-10|NONE|TRUCK|ts boost s| +69870|92581|30085|3|16|25177.28|0.09|0.01|A|F|1994-01-22|1994-04-16|1994-02-17|DELIVER IN PERSON|FOB|e the fluffily pending requests. slyl| +69870|996959|34517|4|9|18503.19|0.06|0.08|R|F|1994-05-08|1994-03-18|1994-06-03|TAKE BACK RETURN|SHIP|ove the carefully even the| +69870|889912|39913|5|24|45644.88|0.06|0.04|A|F|1994-03-29|1994-02-25|1994-04-08|TAKE BACK RETURN|REG AIR|ts wake after the quick| +69871|230775|5784|1|45|76759.20|0.05|0.00|N|O|1995-09-29|1995-07-28|1995-10-22|TAKE BACK RETURN|AIR| blithely bold ideas.| +69871|621615|9152|2|14|21512.12|0.08|0.04|N|O|1995-07-16|1995-07-26|1995-08-02|NONE|AIR|ag carefully bold| +69871|471603|21604|3|1|1574.58|0.10|0.06|N|O|1995-10-15|1995-07-31|1995-11-09|NONE|AIR|ld blithely alongside of the blithely | +69871|227901|15414|4|21|38406.69|0.06|0.04|N|O|1995-07-11|1995-08-23|1995-08-10|TAKE BACK RETURN|FOB|ccounts use fluffily even, express ins| +69896|449957|49958|1|21|40045.53|0.09|0.01|N|O|1995-06-20|1995-08-20|1995-06-21|TAKE BACK RETURN|RAIL|lites use carefully. stealthy warthog| +69896|421043|33552|2|47|45308.94|0.04|0.06|N|O|1995-06-24|1995-07-23|1995-07-24|NONE|AIR| regular platelets haggle slyly. asymptote| +69896|469144|19145|3|45|50090.40|0.03|0.04|N|O|1995-10-01|1995-08-21|1995-10-30|TAKE BACK RETURN|RAIL|equests. slyly express requests | +69896|901345|1346|4|46|61929.80|0.04|0.04|N|O|1995-07-02|1995-08-15|1995-07-11|DELIVER IN PERSON|FOB| the quickly ironic requests. permanent ac| +69896|899265|49266|5|27|34133.94|0.06|0.05|N|O|1995-08-15|1995-08-11|1995-08-20|COLLECT COD|AIR|ct after the closely busy requests; fluf| +69896|946826|21863|6|11|20600.58|0.00|0.04|N|O|1995-07-15|1995-08-30|1995-07-26|DELIVER IN PERSON|TRUCK| haggle carefully a| +69897|10345|10346|1|46|57745.64|0.02|0.07|A|F|1993-01-27|1992-12-20|1993-02-25|DELIVER IN PERSON|MAIL|ke against the f| +69897|859577|47129|2|27|41486.31|0.02|0.02|R|F|1992-11-11|1993-01-28|1992-11-29|COLLECT COD|RAIL|ual theodolites haggle dep| +69897|901570|14089|3|49|77004.97|0.02|0.03|R|F|1993-01-30|1993-01-15|1993-02-13|COLLECT COD|MAIL|ully about the dependencies. final pin| +69897|678776|41290|4|9|15792.66|0.03|0.01|A|F|1993-02-02|1993-01-01|1993-02-24|TAKE BACK RETURN|SHIP|eposits cajole blithely | +69898|813868|1417|1|14|24945.48|0.06|0.08|N|O|1998-01-18|1997-11-30|1998-02-04|COLLECT COD|FOB|ic ideas cajole caref| +69898|671832|21833|2|7|12626.60|0.02|0.05|N|O|1998-01-09|1997-11-11|1998-02-03|DELIVER IN PERSON|SHIP|indle. special requests sleep idle | +69898|464838|27348|3|14|25239.34|0.03|0.07|N|O|1998-01-13|1998-01-04|1998-02-02|NONE|AIR|y express deposits hang blithe| +69899|226231|26232|1|8|9257.76|0.09|0.04|R|F|1994-08-30|1994-08-11|1994-09-16|TAKE BACK RETURN|FOB|es use furiously quickly bold deposits. r| +69900|335845|35846|1|44|82756.52|0.01|0.04|R|F|1992-10-06|1992-09-27|1992-10-07|TAKE BACK RETURN|REG AIR|ove the carefully final a| +69900|541504|16525|2|49|75728.52|0.06|0.06|A|F|1992-11-03|1992-10-14|1992-11-18|COLLECT COD|RAIL|sly carefully final depos| +69900|51665|1666|3|38|61433.08|0.04|0.07|R|F|1992-07-29|1992-09-03|1992-08-05|TAKE BACK RETURN|FOB|uests. quickly ironic ide| +69901|986776|11815|1|11|20490.03|0.05|0.05|N|O|1996-04-09|1996-02-14|1996-04-18|COLLECT COD|TRUCK|ously pending depos| +69901|736709|36710|2|28|48878.76|0.06|0.02|N|O|1996-01-15|1996-03-17|1996-01-25|TAKE BACK RETURN|REG AIR|ag slyly-- always furious | +69901|866253|41288|3|28|34137.88|0.02|0.07|N|O|1996-02-16|1996-03-13|1996-03-03|TAKE BACK RETURN|AIR|y even asymptotes. pen| +69901|107467|44974|4|29|42759.34|0.07|0.00|N|O|1996-03-02|1996-02-17|1996-03-27|NONE|SHIP|al deposits are c| +69901|188219|25729|5|29|37909.09|0.01|0.07|N|O|1996-02-16|1996-03-09|1996-02-26|DELIVER IN PERSON|AIR|eans wake. final reque| +69901|386070|36071|6|21|24277.26|0.01|0.08|N|O|1996-03-15|1996-02-08|1996-04-09|DELIVER IN PERSON|MAIL|old deposits.| +69901|664101|26615|7|7|7455.49|0.09|0.02|N|O|1996-02-02|1996-03-13|1996-02-20|COLLECT COD|SHIP|y express platelets! closely express reques| +69902|536410|23941|1|33|47730.87|0.03|0.02|A|F|1992-04-04|1992-04-07|1992-04-24|COLLECT COD|MAIL|quests haggle furiously among the reg| +69902|429213|29214|2|18|20559.42|0.02|0.01|A|F|1992-05-11|1992-04-22|1992-06-10|COLLECT COD|SHIP|al, pending requests are carefully.| +69902|771171|46202|3|21|26084.94|0.01|0.00|A|F|1992-03-08|1992-04-06|1992-04-01|NONE|FOB| to the furious| +69902|60702|10703|4|38|63182.60|0.08|0.02|R|F|1992-05-26|1992-04-16|1992-06-23|COLLECT COD|TRUCK| furiously regular excuses-- ideas be| +69902|203274|28283|5|11|12949.86|0.09|0.01|A|F|1992-06-18|1992-04-16|1992-06-26|NONE|SHIP|s haggle a| +69902|415977|28486|6|32|60574.40|0.07|0.05|A|F|1992-04-26|1992-05-01|1992-05-18|DELIVER IN PERSON|MAIL|gular instructions. furio| +69902|310632|23139|7|38|62419.56|0.06|0.02|R|F|1992-06-16|1992-05-19|1992-07-09|DELIVER IN PERSON|MAIL|s doze blithely amo| +69903|780080|5111|1|11|12760.55|0.06|0.06|R|F|1992-12-01|1992-11-23|1992-12-11|COLLECT COD|SHIP|ut the furiou| +69903|789805|14836|2|27|51158.79|0.07|0.08|R|F|1992-12-15|1992-10-13|1993-01-09|DELIVER IN PERSON|FOB|counts detect quickly regular pack| +69928|827871|2904|1|27|48568.41|0.07|0.00|N|O|1996-06-06|1996-07-01|1996-06-13|COLLECT COD|TRUCK|ular pinto beans after the furiousl| +69929|22771|35272|1|19|32181.63|0.09|0.08|N|O|1998-01-08|1997-12-28|1998-01-13|COLLECT COD|AIR|dependencies was| +69929|704973|42516|2|29|57360.26|0.07|0.01|N|O|1998-02-01|1997-12-17|1998-02-14|TAKE BACK RETURN|FOB| fluffily ironi| +69929|469049|6577|3|50|50901.00|0.10|0.00|N|O|1997-12-19|1998-01-13|1997-12-25|DELIVER IN PERSON|AIR|eans. slyly special pinto| +69930|776324|38840|1|27|37807.83|0.01|0.08|N|O|1995-09-18|1995-11-17|1995-10-05|NONE|REG AIR|ully regular ideas. quickly even pinto| +69930|665379|27893|2|6|8066.04|0.06|0.02|N|O|1995-12-07|1995-09-30|1995-12-19|COLLECT COD|MAIL|ans? fluffily bold deposits are quick| +69930|8570|46071|3|26|38442.82|0.00|0.07|N|O|1995-10-01|1995-10-28|1995-10-23|COLLECT COD|RAIL| quickly final acc| +69930|32478|44979|4|7|9873.29|0.03|0.02|N|O|1995-11-30|1995-09-22|1995-12-29|DELIVER IN PERSON|MAIL|regular packages integrate carefully. fu| +69930|842564|17597|5|32|48208.64|0.00|0.04|N|O|1995-10-16|1995-10-22|1995-11-07|COLLECT COD|RAIL|odolites. carefully| +69931|394974|19989|1|48|99310.08|0.07|0.08|N|O|1998-09-22|1998-08-14|1998-09-24|DELIVER IN PERSON|MAIL|ial accounts wake carefully beh| +69931|320161|7680|2|41|48427.15|0.06|0.08|N|O|1998-08-22|1998-07-27|1998-09-02|DELIVER IN PERSON|FOB| packages. fluffily pending requests | +69931|935879|48398|3|3|5744.49|0.09|0.06|N|O|1998-07-02|1998-09-25|1998-07-14|NONE|SHIP|as nag blithely above the furious| +69931|312781|37794|4|23|41256.71|0.03|0.01|N|O|1998-08-20|1998-09-23|1998-08-27|NONE|MAIL|ly ironic hockey | +69931|894665|32217|5|30|49788.60|0.02|0.04|N|O|1998-10-08|1998-08-12|1998-10-22|DELIVER IN PERSON|TRUCK| sleep fluffily silent account| +69931|624747|12284|6|22|36777.62|0.07|0.06|N|O|1998-10-22|1998-08-17|1998-10-25|COLLECT COD|SHIP| pinto beans. even, special pinto | +69931|114056|26559|7|19|20330.95|0.08|0.01|N|O|1998-07-24|1998-08-29|1998-07-26|DELIVER IN PERSON|SHIP|refully special dependencies daz| +69932|931524|44043|1|45|69996.60|0.10|0.05|R|F|1993-12-29|1993-11-10|1994-01-02|TAKE BACK RETURN|MAIL|g quickly carefully bold request| +69933|560849|48383|1|20|38196.40|0.06|0.04|R|F|1994-11-20|1994-10-04|1994-11-25|COLLECT COD|TRUCK|iously regular packages according | +69933|182382|44886|2|38|55646.44|0.06|0.01|A|F|1994-09-07|1994-10-30|1994-09-24|NONE|RAIL|bold packages sleep brave| +69933|286131|36132|3|34|37982.08|0.02|0.03|A|F|1994-11-17|1994-09-21|1994-12-04|DELIVER IN PERSON|REG AIR|d instructions. | +69933|997109|47110|4|17|20503.02|0.00|0.05|R|F|1994-09-22|1994-11-14|1994-10-17|NONE|MAIL|s cajole slyly slyly express acco| +69934|381305|31306|1|20|27725.80|0.00|0.02|N|O|1997-07-13|1997-07-10|1997-08-12|TAKE BACK RETURN|TRUCK|thely carefully ent| +69934|579549|42061|2|20|32570.40|0.03|0.01|N|O|1997-08-22|1997-08-18|1997-08-24|COLLECT COD|TRUCK|ld instruc| +69934|467802|42821|3|43|76100.54|0.00|0.05|N|O|1997-08-25|1997-08-08|1997-09-13|COLLECT COD|FOB|ackages. fluffily eve| +69934|339817|27336|4|18|33422.40|0.07|0.02|N|O|1997-08-23|1997-07-14|1997-08-30|NONE|FOB|wake blithely | +69934|288193|699|5|41|48428.38|0.10|0.06|N|O|1997-09-10|1997-08-04|1997-09-17|COLLECT COD|MAIL|pecial deposits hang blithely qui| +69934|659425|21939|6|20|27687.80|0.00|0.07|N|O|1997-08-04|1997-07-03|1997-08-13|DELIVER IN PERSON|SHIP|ular requests around the slyly | +69935|994557|7077|1|23|37984.73|0.00|0.03|N|O|1996-08-30|1996-11-03|1996-09-22|DELIVER IN PERSON|FOB|uests boost | +69960|111958|24461|1|46|90617.70|0.05|0.05|A|F|1992-07-16|1992-06-26|1992-07-26|COLLECT COD|RAIL| furiously regular pinto beans. spec| +69960|672603|35117|2|32|50418.24|0.02|0.01|R|F|1992-06-07|1992-06-14|1992-06-17|COLLECT COD|SHIP|lites nod fluffily bold reque| +69960|436638|49147|3|13|20469.93|0.08|0.04|R|F|1992-08-03|1992-06-05|1992-08-30|TAKE BACK RETURN|SHIP|. ironic foxes are fluffily special accoun| +69961|691692|29232|1|24|40407.84|0.09|0.00|A|F|1995-01-22|1995-03-23|1995-01-24|COLLECT COD|TRUCK|xcuses. blithely final excuses sleep car| +69961|254838|4839|2|27|48406.14|0.08|0.01|R|F|1995-03-30|1995-03-29|1995-04-09|TAKE BACK RETURN|TRUCK|onic packag| +69961|55406|17908|3|34|46287.60|0.03|0.02|R|F|1995-04-20|1995-02-25|1995-05-16|DELIVER IN PERSON|AIR|side of the| +69961|194141|19148|4|43|53111.02|0.01|0.06|A|F|1995-05-15|1995-03-18|1995-06-04|NONE|FOB|refully regular pac| +69961|913718|38755|5|16|27706.72|0.09|0.05|R|F|1995-03-09|1995-02-23|1995-03-10|COLLECT COD|SHIP|he furiously u| +69961|849019|11536|6|29|28071.13|0.02|0.03|A|F|1995-05-09|1995-03-25|1995-06-02|COLLECT COD|RAIL| haggle furiously. | +69961|461367|48895|7|15|19925.10|0.06|0.04|A|F|1995-05-05|1995-02-28|1995-05-12|NONE|RAIL| the ironic | +69962|186828|49332|1|18|34466.76|0.00|0.04|R|F|1993-04-10|1993-02-02|1993-05-02|DELIVER IN PERSON|AIR| ironic requ| +69962|16954|16955|2|10|18709.50|0.00|0.01|A|F|1993-03-26|1993-02-04|1993-04-22|NONE|SHIP|e along the slyly reg| +69962|931746|44265|3|42|74663.40|0.04|0.03|R|F|1993-01-29|1993-01-15|1993-02-06|COLLECT COD|MAIL|oost doggedly express ideas| +69962|847023|9540|4|29|28129.42|0.09|0.00|R|F|1993-04-07|1993-03-04|1993-05-02|DELIVER IN PERSON|RAIL|deas. even, silent decoys bo| +69962|902397|27434|5|39|54574.65|0.07|0.03|A|F|1993-03-22|1993-01-14|1993-04-09|NONE|SHIP|lly special packages nag slyly atop the q| +69962|569689|19690|6|12|21103.92|0.00|0.01|R|F|1993-02-10|1993-02-05|1993-02-23|TAKE BACK RETURN|TRUCK|fluffily. carefully express | +69963|519667|19668|1|12|20239.68|0.01|0.03|R|F|1995-01-18|1995-02-20|1995-02-14|NONE|MAIL|ic requests after the quickly permanent| +69963|30103|30104|2|16|16529.60|0.05|0.01|A|F|1995-01-14|1995-01-12|1995-01-15|NONE|MAIL| special id| +69963|924810|12365|3|28|51373.56|0.00|0.00|R|F|1995-01-13|1995-02-09|1995-01-19|COLLECT COD|REG AIR|wake; special packages are quickly. blithel| +69963|266217|16218|4|41|48511.20|0.04|0.05|R|F|1995-03-24|1995-02-20|1995-04-22|NONE|TRUCK| final platelets. busily bold a| +69963|295533|8039|5|32|48912.64|0.09|0.05|R|F|1995-02-03|1995-02-25|1995-02-25|COLLECT COD|RAIL|eposits cajole quic| +69964|560666|10667|1|32|55252.48|0.06|0.03|A|F|1992-11-08|1992-10-01|1992-11-23|COLLECT COD|TRUCK|jole furiously among the final | +69964|105437|17940|2|27|38945.61|0.00|0.01|R|F|1992-09-01|1992-09-12|1992-09-29|NONE|RAIL|nic foxes cajole ironically a| +69964|73185|35687|3|35|40536.30|0.04|0.05|A|F|1992-08-12|1992-10-24|1992-09-04|NONE|SHIP|uickly silent instructions| +69965|743395|43396|1|16|23013.76|0.01|0.04|A|F|1993-03-02|1993-04-07|1993-03-30|TAKE BACK RETURN|RAIL|ing to the requests breach slyly regu| +69965|237247|49752|2|49|58027.27|0.02|0.03|A|F|1993-03-27|1993-04-01|1993-04-07|TAKE BACK RETURN|REG AIR|fluffily ideas. final epitaphs wake. ev| +69965|406551|19060|3|33|48098.49|0.02|0.06|A|F|1993-01-25|1993-03-02|1993-01-29|NONE|TRUCK|quickly express ideas. s| +69965|893085|30637|4|20|21560.80|0.05|0.07|R|F|1993-03-11|1993-03-01|1993-03-27|NONE|MAIL|nusual, even dependencies. furiously expres| +69965|62926|12927|5|47|88779.24|0.07|0.00|R|F|1993-03-16|1993-03-22|1993-04-15|TAKE BACK RETURN|SHIP| even ideas cajole about | +69965|593330|30864|6|12|17079.72|0.01|0.01|R|F|1993-01-24|1993-03-15|1993-01-31|TAKE BACK RETURN|RAIL|c packages. furiously ironic do| +69965|95790|45791|7|13|23215.27|0.07|0.02|R|F|1993-04-13|1993-03-05|1993-04-22|COLLECT COD|TRUCK|pending, final deposits acr| +69966|934731|47250|1|44|77690.36|0.02|0.08|N|O|1995-09-29|1995-09-15|1995-10-06|NONE|RAIL|y final pinto beans run slyly carefull| +69967|83614|33615|1|24|38342.64|0.10|0.07|R|F|1992-08-15|1992-07-01|1992-08-22|NONE|TRUCK|ntegrate quickly along the permane| +69967|293966|31482|2|13|25479.35|0.02|0.05|A|F|1992-08-10|1992-06-09|1992-08-15|DELIVER IN PERSON|SHIP|out the furiously pending platelets.| +69967|680522|30523|3|6|9014.94|0.03|0.04|R|F|1992-07-20|1992-06-12|1992-08-01|DELIVER IN PERSON|RAIL|ly even deposits sleep| +69967|530089|17620|4|31|34690.86|0.03|0.04|R|F|1992-08-04|1992-06-24|1992-08-05|DELIVER IN PERSON|RAIL|n pinto beans are sometimes around the s| +69992|797745|35291|1|28|51595.88|0.07|0.07|A|F|1994-12-22|1994-12-07|1995-01-04|NONE|SHIP|r theodolites sleep furiously | +69992|691693|29233|2|27|45485.82|0.10|0.04|A|F|1995-01-08|1995-01-11|1995-01-22|TAKE BACK RETURN|REG AIR|longside of the f| +69992|272009|47020|3|8|7847.92|0.07|0.02|R|F|1995-02-16|1994-12-28|1995-03-17|COLLECT COD|REG AIR|fully unusual pinto beans use. reques| +69992|649313|49314|4|4|5049.12|0.00|0.04|A|F|1995-01-28|1995-02-03|1995-02-25|COLLECT COD|SHIP|ter the Tiresias. furi| +69992|992218|17257|5|29|37994.93|0.09|0.01|R|F|1995-01-08|1995-01-10|1995-01-29|DELIVER IN PERSON|AIR|le. platelets cajole slyly blithely| +69992|192107|17114|6|22|26380.20|0.05|0.02|R|F|1995-02-06|1995-01-06|1995-03-01|NONE|MAIL|s. special pinto bean| +69993|857822|45374|1|41|72970.98|0.07|0.05|A|F|1992-06-18|1992-06-13|1992-06-25|COLLECT COD|RAIL|lar hockey player| +69993|402716|40241|2|49|79315.81|0.06|0.08|A|F|1992-07-19|1992-07-03|1992-07-20|COLLECT COD|RAIL| haggle. quickly regular foxes are slyl| +69994|892091|17126|1|23|24910.15|0.05|0.01|R|F|1993-08-12|1993-08-14|1993-08-26|NONE|REG AIR|encies wake of the furiou| +69994|370877|8399|2|48|93497.28|0.06|0.06|A|F|1993-08-21|1993-08-29|1993-09-14|DELIVER IN PERSON|TRUCK|ial packages sleep blith| +69994|324930|37437|3|40|78196.80|0.02|0.03|R|F|1993-07-25|1993-07-07|1993-08-13|DELIVER IN PERSON|MAIL|eep carefully after the blithely final a| +69994|87034|24538|4|34|34715.02|0.00|0.08|A|F|1993-07-05|1993-07-17|1993-07-13|TAKE BACK RETURN|FOB| foxes. ironic deposits print. | +69994|767965|17966|5|32|65053.76|0.04|0.04|A|F|1993-06-15|1993-07-07|1993-07-12|DELIVER IN PERSON|AIR|st quickly silen| +69995|364523|2045|1|17|26987.67|0.07|0.08|N|O|1997-06-06|1997-04-08|1997-06-19|NONE|MAIL|lly ironic packages. ironic, final | +69995|524894|12425|2|44|84430.28|0.01|0.03|N|O|1997-04-29|1997-05-05|1997-05-01|NONE|REG AIR| among the| +69995|884768|47286|3|49|85883.28|0.08|0.03|N|O|1997-02-25|1997-04-25|1997-03-10|DELIVER IN PERSON|MAIL|ic, special ideas. ironi| +69995|287939|25455|4|26|50099.92|0.10|0.07|N|O|1997-03-21|1997-05-04|1997-03-29|NONE|RAIL|y ironic accounts. slyly bold excuses| +69995|386752|36753|5|9|16548.66|0.09|0.02|N|O|1997-03-17|1997-05-06|1997-04-11|COLLECT COD|RAIL|rs after the regu| +69995|133285|45788|6|36|47458.08|0.04|0.02|N|O|1997-03-24|1997-03-27|1997-03-25|COLLECT COD|AIR|ly ironic requests nag furiously acc| +69996|271045|8561|1|39|39625.17|0.10|0.02|A|F|1994-09-23|1994-09-19|1994-10-06|COLLECT COD|REG AIR| cajole always. blithely bold | +69996|441599|16616|2|13|20027.41|0.06|0.07|R|F|1994-09-07|1994-10-06|1994-09-13|COLLECT COD|AIR|ts wake. carefully special dolphi| +69996|939836|39837|3|12|22509.48|0.05|0.08|A|F|1994-07-26|1994-08-14|1994-08-09|NONE|FOB|fluffy requests. fur| +69996|818715|43748|4|15|24505.05|0.10|0.05|A|F|1994-10-20|1994-08-11|1994-11-04|TAKE BACK RETURN|AIR| deposits are slyly across the regu| +69996|136987|36988|5|1|2023.98|0.01|0.04|A|F|1994-10-19|1994-09-06|1994-10-30|DELIVER IN PERSON|SHIP|tructions: ironic, ironic packages abo| +69997|232933|7942|1|29|54111.68|0.06|0.00|N|O|1996-12-25|1996-12-10|1997-01-18|DELIVER IN PERSON|SHIP|among the blithely final | +69997|898386|48387|2|9|12459.06|0.01|0.00|N|O|1997-01-20|1997-01-06|1997-02-07|DELIVER IN PERSON|MAIL|dependencies. blith| +69998|560945|23457|1|4|8023.68|0.02|0.06|N|O|1997-02-04|1996-11-21|1997-02-25|TAKE BACK RETURN|FOB|bout the quickly express accounts. fur| +69998|798942|36488|2|17|34695.47|0.03|0.00|N|O|1996-11-15|1996-12-20|1996-12-01|TAKE BACK RETURN|RAIL| wake quickly carefully unusual platelets| +69998|810885|23402|3|29|52079.36|0.04|0.05|N|O|1997-01-29|1996-11-23|1997-02-03|NONE|FOB|e final accounts promise q| +69998|543224|43225|4|50|63360.00|0.01|0.04|N|O|1997-02-09|1996-12-04|1997-03-11|COLLECT COD|REG AIR|t requests are slyly s| +69998|961842|36881|5|46|87574.80|0.03|0.06|N|O|1996-12-16|1997-01-02|1997-01-09|DELIVER IN PERSON|RAIL|y even depo| +69998|675802|829|6|8|14222.16|0.01|0.00|N|O|1996-12-20|1996-11-15|1997-01-15|NONE|FOB| slyly slyly regular deposits. fluffily bo| +69999|587918|12941|1|33|66194.37|0.00|0.05|N|O|1998-04-29|1998-03-16|1998-05-12|NONE|SHIP|ngly across| +69999|123412|23413|2|32|45933.12|0.04|0.03|N|O|1998-02-03|1998-02-22|1998-02-22|DELIVER IN PERSON|RAIL|nts integra| +69999|178317|15827|3|13|18139.03|0.10|0.03|N|O|1998-04-29|1998-02-13|1998-04-30|COLLECT COD|TRUCK|ts about the| +69999|961552|36591|4|31|50018.81|0.10|0.08|N|O|1998-02-13|1998-03-22|1998-03-10|TAKE BACK RETURN|SHIP|ickly bold foxes may bo| +70024|967703|42742|1|23|40725.18|0.06|0.03|N|O|1996-03-14|1996-03-06|1996-03-27|DELIVER IN PERSON|RAIL|ggle fluffily final requests. caref| +70024|174620|37124|2|2|3389.24|0.06|0.08|N|O|1996-02-12|1996-01-27|1996-03-02|DELIVER IN PERSON|REG AIR|y ironic ideas use furiously | +70024|821855|9404|3|50|88840.50|0.00|0.05|N|O|1996-03-17|1996-02-10|1996-03-24|TAKE BACK RETURN|SHIP|e to sleep alongside of| +70024|904035|41590|4|11|11428.89|0.02|0.02|N|O|1996-01-01|1996-01-10|1996-01-10|NONE|AIR|latelets-- spec| +70024|110635|23138|5|20|32912.60|0.07|0.01|N|O|1996-03-31|1996-01-22|1996-04-20|DELIVER IN PERSON|FOB|sts. ironic excuses boos| +70024|441371|16388|6|29|38058.15|0.01|0.07|N|O|1996-03-18|1996-02-13|1996-04-08|DELIVER IN PERSON|SHIP|the deposits. furiously final patterns unw| +70024|114839|27342|7|5|9269.15|0.08|0.03|N|O|1996-03-26|1996-03-02|1996-03-29|DELIVER IN PERSON|AIR|ggle. accounts are carefully? slowly | +70025|92440|42441|1|50|71622.00|0.05|0.00|N|O|1997-02-12|1997-01-29|1997-02-19|NONE|TRUCK|e ironic, silent| +70025|636660|36661|2|2|3193.26|0.00|0.08|N|O|1997-03-25|1997-02-13|1997-04-07|NONE|AIR|carefully. even, even requests wake furiou| +70025|329150|41657|3|45|53061.30|0.04|0.04|N|O|1996-12-14|1997-02-10|1997-01-07|NONE|MAIL|egular inst| +70025|17724|17725|4|40|65668.80|0.03|0.03|N|O|1997-03-28|1997-03-02|1997-04-12|DELIVER IN PERSON|MAIL|sly regula| +70025|871881|46916|5|32|59290.88|0.03|0.08|N|O|1997-01-24|1997-02-21|1997-02-19|DELIVER IN PERSON|RAIL|efully bold instructions. slowl| +70025|689014|26554|6|5|5014.90|0.02|0.06|N|O|1997-02-01|1997-01-22|1997-02-15|DELIVER IN PERSON|FOB|e quickly unusual pinto bea| +70025|253324|15830|7|10|12773.10|0.09|0.00|N|O|1997-02-04|1997-01-22|1997-02-09|TAKE BACK RETURN|REG AIR|gle fluffily outside the quick dep| +70026|615111|40136|1|33|33860.64|0.06|0.07|N|O|1997-07-19|1997-08-19|1997-07-30|TAKE BACK RETURN|SHIP|tions boost | +70026|169994|19995|2|4|8255.96|0.01|0.07|N|O|1997-07-03|1997-08-24|1997-07-17|COLLECT COD|AIR|he even, f| +70026|76260|38762|3|9|11126.34|0.07|0.06|N|O|1997-08-18|1997-07-24|1997-08-30|COLLECT COD|SHIP|nto beans nag stealthily bold asymptote| +70026|692641|5155|4|13|21236.93|0.00|0.05|N|O|1997-08-10|1997-07-19|1997-09-08|TAKE BACK RETURN|SHIP|nstructions. furious| +70026|205409|17914|5|9|11829.51|0.02|0.04|N|O|1997-08-04|1997-09-01|1997-09-03|TAKE BACK RETURN|RAIL|ideas. quickly b| +70027|108335|45842|1|34|45673.22|0.04|0.05|N|O|1997-02-12|1996-12-14|1997-03-14|DELIVER IN PERSON|MAIL|tly final accounts. fina| +70027|781064|43580|2|35|40076.05|0.03|0.08|N|O|1997-03-02|1996-12-16|1997-03-27|DELIVER IN PERSON|SHIP|gular accounts affix | +70028|228935|28936|1|8|14911.36|0.09|0.00|N|O|1998-06-11|1998-07-29|1998-06-23|COLLECT COD|FOB| even waters! fluffily express a| +70028|703864|28893|2|39|72845.37|0.05|0.04|N|O|1998-07-28|1998-06-09|1998-08-03|NONE|AIR|ly even accounts haggle slyly carefully | +70028|832593|20142|3|7|10678.85|0.10|0.06|N|O|1998-08-23|1998-06-18|1998-08-26|NONE|REG AIR|ffily final foxes | +70028|382388|32389|4|40|58814.80|0.02|0.04|N|O|1998-07-22|1998-06-03|1998-08-07|DELIVER IN PERSON|MAIL|d, ironic requests. i| +70028|782713|7744|5|24|43096.32|0.01|0.06|N|O|1998-06-27|1998-06-26|1998-07-23|TAKE BACK RETURN|AIR| nag careful| +70029|622431|9968|1|50|67670.00|0.02|0.00|N|O|1997-11-28|1998-01-11|1997-12-24|DELIVER IN PERSON|REG AIR|nal, final dugouts hang slyly a| +70029|190509|3013|2|30|47985.00|0.05|0.03|N|O|1997-12-22|1998-01-06|1998-01-04|DELIVER IN PERSON|MAIL|sits breach furio| +70029|869039|19040|3|39|39311.61|0.10|0.08|N|O|1998-03-26|1998-02-19|1998-04-10|TAKE BACK RETURN|MAIL|ly after the carefully silent accounts.| +70030|305163|5164|1|10|11681.50|0.10|0.05|N|O|1998-10-15|1998-09-12|1998-10-30|TAKE BACK RETURN|SHIP|osits about the slyly special| +70031|588697|13720|1|18|32142.06|0.00|0.00|N|O|1997-01-25|1997-01-28|1997-02-08|DELIVER IN PERSON|REG AIR|requests. ironic| +70031|229333|4342|2|11|13885.52|0.10|0.03|N|O|1997-02-04|1997-02-02|1997-03-06|NONE|TRUCK| foxes. furiously i| +70031|385274|22796|3|42|57088.92|0.05|0.05|N|O|1997-02-01|1997-01-18|1997-02-04|DELIVER IN PERSON|RAIL| accounts. final frets along the iro| +70031|300020|37539|4|36|36720.36|0.01|0.06|N|O|1996-11-13|1997-01-15|1996-11-22|TAKE BACK RETURN|MAIL|tructions. silent ideas boo| +70031|423972|36481|5|50|94797.50|0.01|0.01|N|O|1997-01-25|1997-01-30|1997-02-22|NONE|FOB|egular requests cajole blithely. theo| +70031|693587|6101|6|11|17386.05|0.02|0.00|N|O|1996-11-10|1996-12-10|1996-11-29|COLLECT COD|AIR|ress depths are blith| +70031|106752|19255|7|14|24622.50|0.10|0.03|N|O|1996-12-02|1997-01-31|1996-12-30|NONE|FOB|ainst the carefully unusual platelets cajo| +70056|176346|13856|1|32|45514.88|0.07|0.00|N|O|1997-09-03|1997-06-25|1997-09-20|TAKE BACK RETURN|MAIL|s integrate slyly re| +70056|846516|46517|2|8|11699.76|0.09|0.01|N|O|1997-05-26|1997-07-12|1997-06-05|COLLECT COD|FOB| the special packages! foxes hang blithely| +70056|393623|6131|3|16|27465.76|0.05|0.04|N|O|1997-05-10|1997-07-21|1997-05-11|NONE|FOB| special packages: final dependencies wake | +70056|607184|44721|4|27|29461.05|0.03|0.05|N|O|1997-07-21|1997-06-30|1997-08-19|DELIVER IN PERSON|TRUCK| fluffily. care| +70057|30148|17649|1|25|26953.50|0.04|0.00|N|O|1997-06-06|1997-07-20|1997-07-06|COLLECT COD|REG AIR|es wake above the deposits. pending d| +70057|688781|13808|2|9|15927.75|0.03|0.05|N|O|1997-07-11|1997-06-11|1997-08-03|TAKE BACK RETURN|AIR|ideas promise quickly | +70058|365649|40664|1|9|15431.67|0.01|0.02|N|O|1997-01-12|1997-01-22|1997-01-28|DELIVER IN PERSON|FOB|elets. furiousl| +70058|452522|15032|2|9|13270.50|0.04|0.02|N|O|1996-12-06|1997-02-26|1996-12-15|TAKE BACK RETURN|SHIP|grate furiousl| +70058|527738|15269|3|9|15891.39|0.10|0.03|N|O|1996-12-09|1997-02-03|1996-12-25|DELIVER IN PERSON|SHIP|ng to the slyly regular packages use acro| +70058|690165|40166|4|34|39274.42|0.01|0.01|N|O|1997-03-06|1997-02-14|1997-03-15|TAKE BACK RETURN|MAIL|permanent dolphins are slyly | +70058|587751|25285|5|30|55161.90|0.08|0.06|N|O|1997-02-03|1997-01-23|1997-02-24|TAKE BACK RETURN|REG AIR|can boost f| +70059|993816|18855|1|34|64932.18|0.01|0.05|N|O|1997-04-20|1997-04-23|1997-04-25|TAKE BACK RETURN|AIR|gular ideas. slyly i| +70059|64056|26558|2|19|19380.95|0.08|0.08|N|O|1997-06-05|1997-05-26|1997-06-08|NONE|SHIP|lithely regular deposits. un| +70059|577457|39969|3|48|73652.64|0.07|0.08|N|O|1997-07-03|1997-05-16|1997-07-15|NONE|TRUCK|- fluffily special fox| +70060|911633|36670|1|41|67428.19|0.05|0.08|N|O|1996-08-16|1996-08-03|1996-09-02|NONE|AIR|he slyly final accounts. unusual accounts| +70060|815428|2977|2|10|13433.80|0.01|0.08|N|O|1996-08-10|1996-06-29|1996-08-28|COLLECT COD|RAIL|accounts detect | +70060|888799|1317|3|29|51844.75|0.09|0.07|N|O|1996-06-12|1996-06-16|1996-07-02|DELIVER IN PERSON|REG AIR|ts across the furiously special acc| +70060|36005|11006|4|35|32935.00|0.00|0.05|N|O|1996-09-01|1996-07-30|1996-09-18|COLLECT COD|FOB|gular, quiet account| +70060|122968|47973|5|26|51764.96|0.04|0.03|N|O|1996-07-24|1996-07-01|1996-07-28|NONE|REG AIR| courts. silent, final accounts | +70061|593471|43472|1|44|68835.80|0.02|0.00|A|F|1992-11-08|1992-10-26|1992-11-18|TAKE BACK RETURN|MAIL|cial, bold packages boost. caref| +70061|457741|7742|2|21|35673.12|0.03|0.08|R|F|1992-12-08|1992-12-02|1992-12-31|NONE|REG AIR| excuses. final, | +70061|249966|24975|3|38|72806.10|0.08|0.01|A|F|1992-09-26|1992-10-31|1992-10-19|DELIVER IN PERSON|MAIL|ackages are according to| +70061|170843|8353|4|19|36362.96|0.07|0.00|R|F|1992-09-11|1992-10-31|1992-10-11|NONE|REG AIR|lar courts. regular, even deposits s| +70061|355025|17533|5|37|39960.37|0.00|0.03|A|F|1992-10-16|1992-11-09|1992-11-15|NONE|RAIL|ly about the blithely pending theodolite| +70061|889454|14489|6|50|72170.50|0.09|0.05|R|F|1992-09-12|1992-10-04|1992-10-01|COLLECT COD|AIR|lyly bold pinto beans. express, ex| +70061|46251|33752|7|16|19156.00|0.04|0.01|A|F|1992-09-10|1992-11-06|1992-09-23|TAKE BACK RETURN|TRUCK|nic accounts haggle about | +70062|324857|24858|1|28|52691.52|0.07|0.01|N|O|1996-06-18|1996-05-20|1996-07-05|TAKE BACK RETURN|FOB|quickly final theodolites. express a| +70062|855993|43545|2|50|97447.50|0.07|0.07|N|O|1996-05-22|1996-05-30|1996-06-12|NONE|REG AIR|ronic pinto beans. regular theodoli| +70062|663117|657|3|46|49683.68|0.05|0.06|N|O|1996-07-14|1996-05-31|1996-08-07|COLLECT COD|AIR|s wake carefully according to the expr| +70062|1804|1805|4|12|20469.60|0.09|0.03|N|O|1996-08-11|1996-05-20|1996-09-10|TAKE BACK RETURN|AIR|er the even, special asympt| +70063|48905|23906|1|48|88987.20|0.05|0.00|N|O|1995-10-04|1995-08-25|1995-10-08|NONE|FOB|s sleep. blithely even instru| +70063|941164|41165|2|49|59050.88|0.07|0.04|N|O|1995-08-16|1995-08-08|1995-09-01|NONE|REG AIR|he packages. sly| +70088|954283|16803|1|24|32093.76|0.03|0.05|N|O|1995-12-30|1996-01-08|1996-01-13|DELIVER IN PERSON|TRUCK|al deposits are sly| +70088|624292|36805|2|30|36487.80|0.10|0.08|N|O|1996-01-10|1995-12-11|1996-02-09|NONE|AIR|s thrash aga| +70088|474776|49795|3|38|66528.50|0.09|0.07|N|O|1996-02-24|1995-12-26|1996-03-17|COLLECT COD|RAIL|le fluffily. carefully final packages along| +70088|554206|41740|4|38|47886.84|0.01|0.01|N|O|1995-11-09|1995-11-29|1995-12-01|TAKE BACK RETURN|FOB| slyly unusual packages w| +70088|536697|36698|5|50|86683.50|0.08|0.00|N|O|1995-11-23|1996-01-02|1995-11-25|NONE|MAIL|ithely pending theodoli| +70089|125263|268|1|17|21900.42|0.05|0.06|A|F|1993-06-25|1993-07-06|1993-07-12|TAKE BACK RETURN|RAIL|fully bold packages. blithely regula| +70089|279111|16627|2|15|16351.50|0.04|0.06|A|F|1993-05-23|1993-07-02|1993-06-15|DELIVER IN PERSON|RAIL|s the final| +70089|6351|18852|3|6|7544.10|0.01|0.05|A|F|1993-08-07|1993-07-31|1993-08-20|TAKE BACK RETURN|FOB|ial accounts sleep | +70089|735594|35595|4|20|32591.20|0.01|0.06|A|F|1993-06-30|1993-07-09|1993-07-22|COLLECT COD|TRUCK|pliers use furiously even excuses? p| +70089|120119|45124|5|32|36451.52|0.06|0.07|A|F|1993-05-28|1993-07-19|1993-06-01|NONE|REG AIR|pending packages. | +70089|825804|25805|6|46|79568.96|0.04|0.05|R|F|1993-06-25|1993-07-08|1993-07-06|TAKE BACK RETURN|SHIP|furiously special ide| +70090|281630|31631|1|15|24174.30|0.03|0.04|R|F|1994-05-08|1994-07-24|1994-06-07|TAKE BACK RETURN|TRUCK|ending grouches. express platelet| +70090|340388|2895|2|3|4285.11|0.04|0.03|A|F|1994-08-29|1994-06-10|1994-09-02|TAKE BACK RETURN|TRUCK|sual deposits sleep quickly unus| +70090|888480|998|3|29|42584.76|0.10|0.03|A|F|1994-06-26|1994-05-30|1994-07-21|COLLECT COD|RAIL|ts. pending req| +70090|671091|46118|4|17|18055.02|0.05|0.00|A|F|1994-07-06|1994-07-24|1994-07-12|COLLECT COD|RAIL|e the carefully iron| +70090|21498|33999|5|42|59618.58|0.01|0.02|A|F|1994-06-21|1994-07-02|1994-07-10|NONE|AIR|iously ironic packages thrash f| +70091|914363|26882|1|3|4131.96|0.07|0.02|N|O|1997-12-11|1998-02-05|1997-12-15|COLLECT COD|RAIL|y express packages use al| +70091|687187|49701|2|17|19960.55|0.04|0.06|N|O|1998-01-13|1997-12-26|1998-01-14|TAKE BACK RETURN|TRUCK|its. slyly special instructions | +70092|557135|44669|1|25|29802.75|0.08|0.04|R|F|1993-11-18|1993-12-13|1993-11-22|NONE|SHIP|y final packages are slyly.| +70092|758956|46502|2|42|84626.64|0.04|0.07|A|F|1993-11-19|1993-10-31|1993-11-21|NONE|SHIP|ar platelets.| +70092|757927|7928|3|17|33743.13|0.01|0.02|A|F|1993-10-16|1993-11-30|1993-11-10|COLLECT COD|MAIL|inal, silent ideas integrate blithel| +70092|478674|16202|4|46|76021.90|0.00|0.04|R|F|1993-10-02|1993-12-15|1993-11-01|NONE|REG AIR|ng the platelets. | +70093|687638|37639|1|44|71526.40|0.10|0.00|R|F|1992-08-16|1992-07-24|1992-08-25|COLLECT COD|MAIL|usly pending pinto beans. packages h| +70093|122083|22084|2|8|8840.64|0.03|0.00|A|F|1992-09-13|1992-07-23|1992-09-14|TAKE BACK RETURN|FOB|unusual, bold acco| +70093|842289|29838|3|41|50480.84|0.04|0.03|A|F|1992-07-30|1992-08-04|1992-08-18|COLLECT COD|RAIL|deas. silent plate| +70094|492678|17697|1|30|50119.50|0.03|0.08|A|F|1993-11-05|1993-11-24|1993-11-17|TAKE BACK RETURN|RAIL|ronic account| +70094|427397|2414|2|29|38406.73|0.04|0.03|R|F|1994-01-09|1993-11-22|1994-01-23|NONE|AIR|y quickly above the final theodolites| +70094|257472|19978|3|29|41454.34|0.02|0.05|R|F|1993-12-14|1993-11-02|1993-12-28|DELIVER IN PERSON|RAIL|unts sleep fu| +70094|323080|48093|4|9|9927.63|0.08|0.00|R|F|1993-10-03|1993-12-15|1993-11-01|DELIVER IN PERSON|TRUCK| packages mold blithely. blithely bold| +70094|993730|18769|5|2|3647.38|0.10|0.02|R|F|1993-11-14|1993-11-23|1993-11-19|TAKE BACK RETURN|RAIL|ongside of the exc| +70095|697730|10244|1|9|15549.30|0.06|0.02|N|O|1997-05-24|1997-08-05|1997-06-13|NONE|MAIL|uffily. carefully pending platelets hagg| +70095|734680|22223|2|46|78873.90|0.05|0.05|N|O|1997-06-20|1997-08-09|1997-07-13|DELIVER IN PERSON|SHIP|ounts unwind slyly slyly ironi| +70095|763123|25639|3|14|16605.26|0.07|0.06|N|O|1997-07-25|1997-06-24|1997-08-03|TAKE BACK RETURN|SHIP|y. slyly final accounts sleep after the bol| +70120|545557|45558|1|18|28845.54|0.01|0.03|A|F|1993-04-26|1993-04-30|1993-05-23|COLLECT COD|FOB|onic Tiresia| +70120|160620|23124|2|16|26889.92|0.02|0.00|R|F|1993-06-13|1993-05-03|1993-06-30|COLLECT COD|MAIL|hely final | +70121|368182|18183|1|44|55007.48|0.04|0.03|R|F|1993-12-02|1993-12-13|1993-12-17|TAKE BACK RETURN|MAIL| about the carefully unusual instruct| +70121|28205|3206|2|39|44194.80|0.06|0.06|A|F|1993-11-28|1994-01-22|1993-12-18|COLLECT COD|MAIL|cross the ironic de| +70121|41371|3872|3|18|23622.66|0.02|0.05|R|F|1994-02-03|1993-12-14|1994-02-07|COLLECT COD|FOB|e quickly. slyly unusual| +70122|117362|17363|1|10|13793.60|0.02|0.08|A|F|1994-01-23|1994-02-24|1994-01-26|NONE|MAIL|? blithely final plat| +70122|489761|39762|2|2|3501.48|0.06|0.00|R|F|1994-04-23|1994-03-24|1994-05-16|TAKE BACK RETURN|SHIP|s boost fluf| +70122|404100|29117|3|49|49199.92|0.10|0.00|A|F|1994-02-03|1994-02-11|1994-02-24|DELIVER IN PERSON|RAIL|final packages serve after the furiously | +70123|230066|5075|1|39|38845.95|0.10|0.01|N|O|1997-09-23|1997-10-01|1997-09-25|COLLECT COD|REG AIR|re quickly. quickly even d| +70124|819101|31618|1|1|1020.06|0.08|0.04|N|O|1995-09-06|1995-09-30|1995-09-27|COLLECT COD|REG AIR|sly regular accounts against the | +70124|616164|41189|2|16|17282.08|0.05|0.02|N|O|1995-12-25|1995-10-15|1996-01-21|COLLECT COD|AIR|ecial packages across the furiously exp| +70125|97331|47332|1|37|49148.21|0.04|0.01|R|F|1993-11-26|1994-01-18|1993-12-09|NONE|SHIP|endencies boost blithely accordin| +70125|837243|24792|2|39|46027.80|0.04|0.02|R|F|1994-01-19|1993-12-30|1994-01-24|DELIVER IN PERSON|TRUCK|s. asymptotes above the blithely| +70125|532614|45125|3|50|82329.50|0.07|0.00|A|F|1993-12-22|1994-01-10|1994-01-03|NONE|TRUCK|use furiously according to the f| +70125|629292|16829|4|45|54956.70|0.00|0.07|A|F|1994-01-19|1994-01-14|1994-02-10|TAKE BACK RETURN|RAIL|c, even depen| +70125|508326|8327|5|1|1334.30|0.00|0.08|R|F|1994-02-17|1994-01-04|1994-03-14|TAKE BACK RETURN|MAIL|y above the f| +70126|583506|21040|1|38|60400.24|0.08|0.04|N|O|1997-06-29|1997-09-02|1997-07-10|TAKE BACK RETURN|RAIL|ong the express, final instructions cajole | +70126|978338|3377|2|46|65149.34|0.09|0.04|N|O|1997-10-02|1997-09-11|1997-10-07|NONE|AIR|osits. quickly final requests nag. deposit| +70126|926358|26359|3|50|69215.50|0.07|0.08|N|O|1997-06-29|1997-07-27|1997-07-16|DELIVER IN PERSON|MAIL| accounts cajole sl| +70126|284801|47307|4|37|66074.23|0.05|0.05|N|O|1997-08-03|1997-08-05|1997-08-22|DELIVER IN PERSON|RAIL|kages. quiet, unusual accounts might| +70126|646845|9358|5|35|62713.35|0.10|0.04|N|O|1997-08-04|1997-08-20|1997-08-21|NONE|FOB|nst the regular instructions print furiou| +70127|987796|12835|1|15|28256.25|0.06|0.07|A|F|1994-05-10|1994-06-26|1994-05-21|COLLECT COD|MAIL|eposits boost blithely above the carefully | +70127|884324|34325|2|5|6541.40|0.07|0.07|A|F|1994-08-26|1994-07-18|1994-09-09|NONE|SHIP|ronic pinto beans lose. | +70127|817764|5313|3|23|38679.56|0.04|0.08|A|F|1994-06-08|1994-06-22|1994-06-13|DELIVER IN PERSON|REG AIR|ts haggle bol| +70127|146423|33930|4|37|54368.54|0.10|0.06|R|F|1994-08-04|1994-07-12|1994-08-14|COLLECT COD|TRUCK| final requests | +70127|920514|33033|5|49|75189.03|0.01|0.01|A|F|1994-07-23|1994-06-17|1994-08-04|DELIVER IN PERSON|SHIP|al accounts. f| +70127|67076|29578|6|49|51110.43|0.06|0.00|A|F|1994-07-21|1994-06-24|1994-08-12|NONE|SHIP|nstructions. blithely final court| +70152|525759|38270|1|50|89236.50|0.02|0.06|N|O|1996-10-30|1996-11-12|1996-11-24|COLLECT COD|AIR|ndencies play furiously. blithely regula| +70152|418195|5720|2|50|55658.50|0.00|0.00|N|O|1996-10-12|1996-11-23|1996-11-02|NONE|AIR|tes along the daring| +70152|592841|30375|3|17|32874.94|0.07|0.05|N|O|1996-12-28|1996-10-28|1997-01-04|NONE|AIR| theodolites cajole blithely express fo| +70153|447106|22123|1|1|1053.08|0.03|0.05|R|F|1993-09-29|1993-08-15|1993-10-27|COLLECT COD|REG AIR|kly even accounts. furiously | +70153|499496|24515|2|23|34395.81|0.03|0.08|A|F|1993-10-12|1993-09-23|1993-10-15|TAKE BACK RETURN|SHIP|: silent account| +70153|17018|29519|3|9|8415.09|0.06|0.03|R|F|1993-09-21|1993-08-28|1993-09-26|COLLECT COD|TRUCK|from the furiously r| +70153|20277|7778|4|24|28734.48|0.05|0.01|R|F|1993-10-28|1993-08-23|1993-11-02|COLLECT COD|SHIP|fily silent, unusual | +70154|685337|47851|1|44|58181.20|0.06|0.07|R|F|1994-08-22|1994-10-05|1994-09-02|COLLECT COD|MAIL|accounts promise carefully slyly bold a| +70154|458097|33116|2|14|14770.98|0.10|0.01|R|F|1994-10-26|1994-09-24|1994-10-28|COLLECT COD|TRUCK|r courts promise blithely a| +70154|230549|18062|3|29|42906.37|0.03|0.00|A|F|1994-09-25|1994-09-14|1994-10-20|NONE|RAIL|ic packages. even, unusual deposits sl| +70154|823955|11504|4|11|20668.01|0.04|0.00|R|F|1994-10-17|1994-09-07|1994-10-20|TAKE BACK RETURN|SHIP| ironic platelets are furiously regular the| +70155|738763|26306|1|9|16215.57|0.09|0.06|N|O|1995-08-04|1995-08-09|1995-08-15|NONE|FOB| pinto beans cajole ironically after the s| +70156|865860|28378|1|9|16432.38|0.00|0.07|N|O|1997-11-02|1997-08-24|1997-11-05|NONE|RAIL|accounts cajole among| +70157|984821|22379|1|33|62890.74|0.06|0.05|N|O|1997-10-14|1997-09-21|1997-10-24|NONE|REG AIR|ans. blithely special fox| +70157|871562|9114|2|7|10734.64|0.08|0.00|N|O|1997-11-14|1997-09-06|1997-11-20|NONE|REG AIR|. stealthily regular excuses in| +70157|337108|12121|3|7|8015.63|0.10|0.00|N|O|1997-11-06|1997-10-07|1997-11-17|COLLECT COD|AIR|longside of the ironic deposits boost alway| +70157|767658|42689|4|28|48317.36|0.07|0.01|N|O|1997-08-25|1997-09-14|1997-09-02|NONE|SHIP|r instructions are carefully. carefully iro| +70157|27635|15136|5|40|62505.20|0.07|0.06|N|O|1997-10-03|1997-10-12|1997-10-30|COLLECT COD|TRUCK| foxes toward the| +70158|832254|19803|1|23|27282.83|0.06|0.04|R|F|1992-08-01|1992-09-15|1992-08-03|TAKE BACK RETURN|FOB| eat blithely express deposits. sl| +70158|685503|23043|2|39|58050.33|0.04|0.03|R|F|1992-10-01|1992-09-05|1992-10-16|TAKE BACK RETURN|AIR|ounts alon| +70159|669495|32009|1|11|16109.06|0.03|0.05|N|O|1996-12-05|1996-11-18|1996-12-25|TAKE BACK RETURN|MAIL|symptotes nag c| +70159|201149|1150|2|45|47255.85|0.02|0.06|N|O|1996-10-03|1996-12-14|1996-10-10|TAKE BACK RETURN|TRUCK|blithely even accounts. regu| +70159|698251|10765|3|39|48719.58|0.10|0.01|N|O|1996-10-30|1996-10-27|1996-11-22|DELIVER IN PERSON|RAIL|quests. blithely regular| +70184|655105|17619|1|26|27561.82|0.05|0.03|R|F|1994-11-19|1994-11-02|1994-11-26|DELIVER IN PERSON|SHIP|hely. slyly final packages do| +70184|348800|48801|2|4|7395.16|0.04|0.05|A|F|1994-10-21|1994-10-30|1994-10-29|DELIVER IN PERSON|FOB| blithely regular | +70185|587093|24627|1|15|17701.05|0.07|0.06|R|F|1993-12-29|1993-11-13|1994-01-03|COLLECT COD|RAIL|fily even accounts sleep slyly a| +70185|261738|49254|2|33|56090.76|0.04|0.05|A|F|1993-10-06|1993-11-06|1993-10-13|COLLECT COD|TRUCK|nal requests against the reg| +70186|895695|20730|1|22|37194.30|0.08|0.01|N|O|1998-02-12|1998-02-05|1998-02-18|DELIVER IN PERSON|REG AIR|, express packages. fluffily express plate| +70186|931338|18893|2|47|64356.63|0.02|0.04|N|O|1998-03-24|1998-02-11|1998-04-18|DELIVER IN PERSON|FOB|es. slyly quiet deposit| +70186|992657|5177|3|35|61236.35|0.03|0.02|N|O|1997-12-12|1998-02-24|1997-12-28|NONE|RAIL| accounts use quickly. deposits nag| +70186|581390|18924|4|40|58854.80|0.08|0.05|N|O|1998-02-01|1998-01-06|1998-02-17|DELIVER IN PERSON|TRUCK|ven dolphins. sly| +70186|406089|6090|5|2|1990.12|0.03|0.07|N|O|1998-02-26|1998-03-03|1998-03-14|TAKE BACK RETURN|TRUCK|sly final deposits| +70186|133983|46486|6|18|36305.64|0.00|0.06|N|O|1998-02-13|1998-01-13|1998-03-08|COLLECT COD|TRUCK|o the pending re| +70187|698880|48881|1|10|18788.50|0.02|0.04|N|O|1997-02-27|1997-04-28|1997-03-29|TAKE BACK RETURN|TRUCK|ial attainments ca| +70187|61750|36753|2|16|27388.00|0.01|0.02|N|O|1997-03-05|1997-04-28|1997-03-08|TAKE BACK RETURN|RAIL|g slyly above the Tiresi| +70188|331451|18970|1|9|13341.96|0.00|0.01|A|F|1993-11-28|1994-01-02|1993-12-04|COLLECT COD|RAIL|lites. blithe| +70188|680496|5523|2|32|47246.72|0.03|0.07|A|F|1994-02-13|1993-12-04|1994-02-22|NONE|RAIL|hs cajole blithely. e| +70188|95264|32768|3|23|28962.98|0.03|0.08|A|F|1994-01-05|1993-11-24|1994-01-24|COLLECT COD|REG AIR|sly according to the| +70188|95004|20007|4|23|22977.00|0.10|0.08|R|F|1993-10-20|1994-01-13|1993-11-16|TAKE BACK RETURN|TRUCK|slyly express asymptotes. slyly pen| +70188|717285|29800|5|43|55996.75|0.09|0.02|R|F|1993-11-05|1993-12-18|1993-11-14|DELIVER IN PERSON|SHIP|s. blithely | +70188|397798|10306|6|24|45498.72|0.08|0.05|R|F|1993-12-30|1993-11-20|1994-01-13|DELIVER IN PERSON|AIR|tes cajole slyly express | +70188|782802|32803|7|42|79160.34|0.01|0.05|R|F|1993-11-28|1993-11-18|1993-12-17|TAKE BACK RETURN|FOB|ar excuses wake. orbits integrate silent | +70189|538260|38261|1|31|40245.44|0.10|0.02|A|F|1995-05-03|1995-05-18|1995-05-04|COLLECT COD|MAIL|onic theodolites wake.| +70189|520177|32688|2|2|2394.30|0.03|0.05|N|O|1995-06-19|1995-05-30|1995-07-15|TAKE BACK RETURN|MAIL|silent theodolites wake careful| +70189|604508|4509|3|11|15537.17|0.04|0.07|N|O|1995-07-11|1995-05-11|1995-07-24|DELIVER IN PERSON|AIR|ve the fluffily unusual ideas use blith| +70189|963206|25726|4|35|44420.60|0.01|0.06|N|O|1995-07-26|1995-05-17|1995-08-20|NONE|REG AIR|nts. carefu| +70189|589502|14525|5|46|73208.08|0.01|0.08|A|F|1995-05-24|1995-05-15|1995-06-15|COLLECT COD|REG AIR|press dependencies affix abo| +70189|748415|35958|6|19|27804.22|0.08|0.08|N|O|1995-08-07|1995-05-13|1995-08-10|TAKE BACK RETURN|TRUCK| might detect. busily ex| +70190|799052|11568|1|36|41436.72|0.03|0.04|N|O|1998-03-20|1998-03-15|1998-03-31|TAKE BACK RETURN|MAIL|deposits cajole even courts. bold requests| +70190|654254|16768|2|40|48328.80|0.03|0.00|N|O|1998-04-05|1998-03-28|1998-04-26|DELIVER IN PERSON|SHIP|rate about the blithely ex| +70190|33079|20580|3|10|10120.70|0.03|0.07|N|O|1998-06-09|1998-04-01|1998-06-26|NONE|TRUCK| boost furiously against the | +70190|950195|25234|4|29|36109.35|0.08|0.08|N|O|1998-03-07|1998-04-29|1998-04-05|NONE|REG AIR| are enticingly. slyly final attainm| +70190|917325|17326|5|22|29530.16|0.10|0.07|N|O|1998-04-09|1998-04-26|1998-05-07|TAKE BACK RETURN|REG AIR|to beans cajole furiously. bl| +70190|465682|3210|6|38|62611.08|0.04|0.06|N|O|1998-04-04|1998-05-01|1998-04-05|NONE|SHIP|ding foxes are at the daringly| +70191|683003|45517|1|38|37466.86|0.09|0.03|A|F|1992-06-26|1992-04-09|1992-07-17|TAKE BACK RETURN|MAIL|mise slyly slyly express theodolites| +70191|221675|34180|2|30|47899.80|0.02|0.00|R|F|1992-06-27|1992-04-04|1992-07-26|COLLECT COD|RAIL| dolphins. carefully regular instruction| +70191|681908|44422|3|39|73704.93|0.07|0.04|R|F|1992-06-12|1992-05-27|1992-07-11|TAKE BACK RETURN|FOB|luffily express deposits amo| +70216|47528|10029|1|39|57545.28|0.10|0.01|R|F|1992-03-27|1992-04-02|1992-04-20|TAKE BACK RETURN|AIR|iously. slyly ev| +70216|801142|1143|2|39|40680.90|0.06|0.02|A|F|1992-03-22|1992-02-23|1992-04-01|NONE|REG AIR|he slyly ironic theodol| +70216|779672|29673|3|2|3503.28|0.00|0.07|A|F|1992-02-14|1992-03-29|1992-02-17|TAKE BACK RETURN|MAIL|bove the c| +70216|938515|26070|4|42|65245.74|0.05|0.01|R|F|1992-05-10|1992-03-23|1992-05-23|NONE|FOB|ely. ironic excuses haggle. r| +70217|360682|35697|1|15|26140.05|0.08|0.08|R|F|1994-01-30|1994-02-18|1994-02-09|NONE|RAIL| hinder slyly against the deposi| +70217|966411|41450|2|29|42843.73|0.03|0.04|R|F|1993-12-24|1994-01-19|1994-01-13|NONE|SHIP| cajole carefully final| +70217|453346|3347|3|11|14292.52|0.03|0.01|R|F|1993-12-19|1994-02-06|1994-01-03|DELIVER IN PERSON|FOB|ng to the regular,| +70218|664941|2481|1|39|74330.49|0.09|0.07|N|O|1998-10-21|1998-09-03|1998-11-03|TAKE BACK RETURN|FOB|maintain blithely carefully final| +70218|652777|27804|2|30|51892.20|0.09|0.04|N|O|1998-09-10|1998-09-19|1998-09-30|TAKE BACK RETURN|MAIL|equests. slyl| +70218|216922|41931|3|41|75395.31|0.09|0.07|N|O|1998-10-15|1998-09-01|1998-11-02|NONE|REG AIR|heodolites. fu| +70218|801577|26610|4|46|68012.38|0.00|0.04|N|O|1998-10-06|1998-09-10|1998-10-12|COLLECT COD|RAIL| platelets; bold, final foxes wake quickl| +70219|355586|43108|1|49|80436.93|0.07|0.02|N|O|1997-02-04|1997-01-30|1997-03-01|NONE|MAIL| ironic depths ha| +70219|317842|30349|2|26|48355.58|0.00|0.04|N|O|1997-03-22|1997-02-13|1997-04-03|TAKE BACK RETURN|MAIL|nal deposits wake. even attainments bo| +70219|961938|24458|3|48|95994.72|0.07|0.08|N|O|1997-02-10|1997-01-27|1997-02-18|TAKE BACK RETURN|FOB|its are above the quickly | +70219|278478|15994|4|19|27672.74|0.03|0.04|N|O|1997-03-12|1997-02-22|1997-04-05|TAKE BACK RETURN|MAIL|fully express Tiresias. carefully bold | +70219|376670|26671|5|17|29693.22|0.10|0.06|N|O|1997-03-16|1997-03-07|1997-04-10|TAKE BACK RETURN|REG AIR|ffily unusual pac| +70219|690191|27731|6|31|36615.96|0.09|0.07|N|O|1997-03-20|1997-03-24|1997-04-12|NONE|REG AIR|rate about the i| +70219|38777|13778|7|48|82356.96|0.07|0.00|N|O|1997-04-17|1997-03-04|1997-04-24|NONE|REG AIR|final deposits around the blithely | +70220|720427|7970|1|2|2894.78|0.02|0.08|N|O|1995-11-13|1995-10-25|1995-11-25|COLLECT COD|RAIL|inal foxes sl| +70220|204769|17274|2|47|78666.25|0.05|0.06|N|O|1995-09-27|1995-10-15|1995-10-02|TAKE BACK RETURN|TRUCK|o the ideas. pe| +70221|387110|24632|1|48|57460.80|0.03|0.04|N|O|1995-09-02|1995-08-08|1995-09-08|DELIVER IN PERSON|TRUCK|g accounts according to the furiously ru| +70221|156647|19151|2|24|40887.36|0.03|0.03|N|O|1995-09-16|1995-07-30|1995-09-25|TAKE BACK RETURN|RAIL|y special deposits across| +70221|752857|27888|3|22|42016.04|0.02|0.05|N|O|1995-08-11|1995-08-19|1995-08-23|TAKE BACK RETURN|RAIL|carefully. carefully ironic gifts cajole| +70221|261534|11535|4|25|37388.00|0.10|0.07|R|F|1995-06-05|1995-07-12|1995-06-15|DELIVER IN PERSON|SHIP|ses integrate blithely among the silent r| +70221|590730|40731|5|11|20027.81|0.00|0.07|N|O|1995-09-17|1995-08-24|1995-10-06|DELIVER IN PERSON|AIR|l instructions. carefull| +70222|802696|40245|1|7|11190.55|0.08|0.08|A|F|1994-09-05|1994-08-28|1994-09-30|NONE|RAIL|theodolites. furiously speci| +70223|24405|11906|1|46|61152.40|0.08|0.05|A|F|1993-09-24|1993-09-11|1993-10-12|NONE|SHIP|tect slyly regular requests. carefully reg| +70223|171005|33509|2|7|7532.00|0.02|0.02|R|F|1993-08-29|1993-11-03|1993-08-31|TAKE BACK RETURN|AIR|st the packages. bold foxes cajole q| +70223|76590|1593|3|11|17232.49|0.09|0.02|R|F|1993-10-15|1993-09-30|1993-10-31|COLLECT COD|AIR| dependencies. blithely ironic foxes nag f| +70223|234516|47021|4|8|11604.00|0.00|0.04|R|F|1993-10-04|1993-09-28|1993-10-20|COLLECT COD|FOB|telets nag quickly. blithely bold | +70223|507807|20318|5|15|27221.70|0.06|0.04|A|F|1993-12-06|1993-09-24|1993-12-25|DELIVER IN PERSON|TRUCK|arefully quickly even asymp| +70248|187448|49952|1|21|32244.24|0.05|0.04|A|F|1992-10-31|1992-09-10|1992-11-21|DELIVER IN PERSON|AIR|ithely slyly final pack| +70248|437780|12797|2|20|34355.20|0.05|0.01|A|F|1992-08-31|1992-10-05|1992-09-16|TAKE BACK RETURN|FOB|c accounts w| +70248|759734|22250|3|15|26905.50|0.05|0.07|R|F|1992-11-25|1992-09-24|1992-12-15|DELIVER IN PERSON|SHIP|ke furiously regular instructions| +70248|844736|19769|4|21|35294.49|0.10|0.03|A|F|1992-08-28|1992-10-11|1992-09-12|COLLECT COD|TRUCK|even accounts. blithely brave| +70248|470353|20354|5|11|14556.63|0.10|0.04|R|F|1992-12-02|1992-11-06|1992-12-04|NONE|TRUCK|ly requests! furiously even instructi| +70248|211838|11839|6|29|50744.78|0.01|0.02|A|F|1992-12-07|1992-10-15|1992-12-23|NONE|AIR|ent foxes. fo| +70248|348636|23649|7|28|47169.36|0.03|0.02|A|F|1992-08-15|1992-09-24|1992-08-21|DELIVER IN PERSON|MAIL|ly unusual escapades cajole quickly above| +70249|520246|32757|1|22|27856.84|0.01|0.01|N|O|1997-11-15|1997-10-03|1997-11-26|COLLECT COD|REG AIR|posits alongside of the re| +70249|758342|8343|2|29|40608.99|0.00|0.06|N|O|1997-09-23|1997-09-22|1997-10-08|TAKE BACK RETURN|FOB|hs above the unusual packages integrate | +70250|394978|19993|1|29|60115.84|0.06|0.07|N|O|1998-01-26|1998-03-07|1998-02-16|COLLECT COD|FOB|oss the quickly busy deposits. request| +70250|379422|4437|2|22|33031.02|0.08|0.06|N|O|1998-05-12|1998-04-03|1998-06-10|COLLECT COD|FOB|d the slyly ironic instructions| +70251|153358|15862|1|28|39517.80|0.00|0.01|N|O|1998-05-11|1998-04-06|1998-05-26|DELIVER IN PERSON|AIR|e furiously ironic accounts. accoun| +70251|477301|14829|2|21|26843.88|0.00|0.05|N|O|1998-04-03|1998-03-12|1998-04-29|DELIVER IN PERSON|AIR|arefully slyly | +70251|984468|9507|3|1|1552.42|0.03|0.01|N|O|1998-03-22|1998-03-06|1998-04-16|TAKE BACK RETURN|TRUCK|uctions. theodoli| +70252|340870|15883|1|11|21019.46|0.09|0.04|N|O|1996-11-13|1996-11-01|1996-11-22|NONE|SHIP|egular Tiresias do haggl| +70252|993883|43884|2|47|92911.48|0.08|0.08|N|O|1997-01-12|1996-12-10|1997-02-08|TAKE BACK RETURN|FOB|ructions ca| +70253|585103|10126|1|7|8316.56|0.02|0.00|N|O|1998-05-24|1998-07-12|1998-06-23|DELIVER IN PERSON|MAIL| beans use above the carefully regular inst| +70253|822527|35044|2|28|40585.44|0.10|0.04|N|O|1998-07-22|1998-06-21|1998-07-27|DELIVER IN PERSON|AIR|lly special pac| +70253|198942|36452|3|35|71432.90|0.03|0.04|N|O|1998-09-20|1998-06-30|1998-10-19|COLLECT COD|AIR|instructions nag.| +70253|604955|4956|4|30|55797.60|0.09|0.02|N|O|1998-08-13|1998-08-08|1998-08-18|TAKE BACK RETURN|MAIL|ic platele| +70254|468940|6468|1|15|28633.80|0.03|0.07|N|O|1996-10-01|1996-09-03|1996-10-04|NONE|AIR|eodolites b| +70254|460646|23156|2|12|19279.44|0.07|0.08|N|O|1996-08-13|1996-10-07|1996-08-25|NONE|SHIP|requests. iron| +70254|73002|48005|3|49|47775.00|0.09|0.01|N|O|1996-10-18|1996-09-16|1996-10-23|TAKE BACK RETURN|MAIL|s detect according to the | +70254|934634|47153|4|37|61737.83|0.06|0.07|N|O|1996-10-15|1996-08-27|1996-10-16|COLLECT COD|MAIL|usly furiously final asymp| +70254|390735|40736|5|17|31037.24|0.08|0.02|N|O|1996-10-06|1996-08-30|1996-10-15|DELIVER IN PERSON|AIR|carefully quickly final pac| +70254|82529|45031|6|34|51391.68|0.09|0.00|N|O|1996-10-31|1996-08-28|1996-11-02|NONE|MAIL|ments hagg| +70254|51451|13953|7|13|18231.85|0.04|0.02|N|O|1996-09-01|1996-08-30|1996-09-29|COLLECT COD|RAIL|egularly sly| +70255|723988|11531|1|8|16095.60|0.04|0.05|N|O|1997-09-15|1997-08-19|1997-10-14|DELIVER IN PERSON|FOB|sly ironic packages. blithely i| +70255|62164|12165|2|28|31532.48|0.02|0.01|N|O|1997-08-11|1997-07-17|1997-08-28|COLLECT COD|TRUCK|ithely quickly express | +70255|775874|13420|3|27|52645.68|0.02|0.00|N|O|1997-08-31|1997-08-13|1997-09-13|TAKE BACK RETURN|TRUCK|n deposits sleep caref| +70255|108628|21131|4|23|37642.26|0.01|0.04|N|O|1997-06-22|1997-08-06|1997-07-21|NONE|AIR|re carefully accordi| +70255|697229|22256|5|34|41690.46|0.10|0.08|N|O|1997-08-06|1997-07-21|1997-08-09|TAKE BACK RETURN|MAIL| silent, even accounts. slyly i| +70255|313632|1151|6|4|6582.48|0.05|0.04|N|O|1997-08-31|1997-07-28|1997-09-25|DELIVER IN PERSON|REG AIR|bout the final, express deposits. theodoli| +70280|562459|37482|1|39|59335.77|0.09|0.00|N|O|1996-01-19|1996-03-07|1996-02-07|NONE|FOB|wake blithely about the bold foxes. furio| +70280|239393|1898|2|43|57292.34|0.07|0.00|N|O|1996-03-09|1996-03-13|1996-03-28|DELIVER IN PERSON|FOB|. even accounts haggle after the slyly sil| +70280|465788|15789|3|33|57874.08|0.09|0.03|N|O|1996-03-11|1996-01-31|1996-03-30|TAKE BACK RETURN|SHIP|es play furiou| +70280|492789|42790|4|22|39198.72|0.03|0.00|N|O|1996-01-11|1996-02-24|1996-02-09|COLLECT COD|SHIP|ead of the express| +70281|146697|21702|1|28|48823.32|0.00|0.04|N|O|1997-12-09|1998-02-16|1997-12-21|COLLECT COD|REG AIR|s. express packages ab| +70281|524117|24118|2|2|2282.18|0.08|0.08|N|O|1997-12-31|1998-02-11|1998-01-12|DELIVER IN PERSON|REG AIR|eas integrate slyl| +70281|830204|30205|3|40|45366.40|0.01|0.03|N|O|1998-01-31|1998-01-31|1998-02-11|DELIVER IN PERSON|REG AIR| carefully daring accounts | +70281|231947|31948|4|41|77036.13|0.03|0.01|N|O|1998-01-13|1998-02-10|1998-01-20|TAKE BACK RETURN|AIR|tructions. furiously even | +70282|312188|49707|1|11|13201.87|0.00|0.04|N|O|1995-11-08|1995-12-26|1995-11-14|DELIVER IN PERSON|TRUCK|ctions cajole slyly| +70282|939727|27282|2|46|81267.28|0.10|0.08|N|O|1996-02-12|1996-01-19|1996-03-02|NONE|FOB|e bravely. quickly ironic th| +70282|978211|15769|3|7|9024.19|0.04|0.02|N|O|1995-11-04|1996-01-04|1995-11-08|COLLECT COD|RAIL|express accounts sleep abo| +70283|923415|35934|1|10|14383.70|0.06|0.07|N|O|1997-03-16|1997-05-03|1997-04-09|COLLECT COD|RAIL| the fluffily ironic foxes. furiously f| +70283|822868|10417|2|30|53724.60|0.04|0.01|N|O|1997-03-23|1997-05-29|1997-04-20|COLLECT COD|SHIP|le furiously; even, r| +70283|927257|27258|3|33|42378.93|0.01|0.08|N|O|1997-04-01|1997-04-27|1997-04-22|NONE|REG AIR|s. furiously regular| +70283|400541|13050|4|8|11532.16|0.08|0.02|N|O|1997-06-22|1997-04-16|1997-06-30|NONE|REG AIR|quests. regula| +70284|171393|33897|1|21|30752.19|0.08|0.05|A|F|1992-10-18|1992-10-23|1992-11-05|DELIVER IN PERSON|SHIP|e according to the furi| +70284|591369|41370|2|4|5841.36|0.06|0.06|R|F|1992-10-19|1992-10-27|1992-11-14|TAKE BACK RETURN|FOB|eposits. regular, express foxes sl| +70284|130896|43399|3|49|94417.61|0.01|0.02|R|F|1992-10-15|1992-11-14|1992-10-21|TAKE BACK RETURN|RAIL|quickly even deposits. special p| +70284|956476|18996|4|33|50570.19|0.07|0.05|A|F|1992-11-03|1992-11-27|1992-11-29|NONE|RAIL|thely regu| +70284|488597|13616|5|33|52323.81|0.06|0.04|A|F|1992-12-23|1992-10-31|1993-01-02|NONE|AIR|ans use slyly carefully f| +70284|840595|40596|6|16|24568.80|0.09|0.03|A|F|1992-12-22|1992-10-16|1993-01-18|NONE|SHIP| special, final instruct| +70284|879577|29578|7|14|21791.42|0.04|0.05|A|F|1992-12-23|1992-10-13|1993-01-09|COLLECT COD|MAIL|ckages sleep. final,| +70285|34942|47443|1|18|33784.92|0.09|0.04|A|F|1992-06-16|1992-08-28|1992-07-03|COLLECT COD|FOB|uests haggle. requests | +70285|254161|41677|2|16|17842.40|0.03|0.05|R|F|1992-08-15|1992-08-25|1992-09-05|DELIVER IN PERSON|TRUCK|en accounts sleep c| +70285|683104|20644|3|44|47831.08|0.00|0.08|R|F|1992-06-09|1992-08-25|1992-06-14|DELIVER IN PERSON|MAIL|mise against the furio| +70285|922635|47672|4|32|53042.88|0.04|0.03|A|F|1992-09-06|1992-07-16|1992-09-16|NONE|SHIP|ges nag. ironic courts haggl| +70286|67155|42158|1|22|24687.30|0.07|0.05|A|F|1994-09-26|1994-09-10|1994-10-03|TAKE BACK RETURN|TRUCK| quickly before the regular instruction| +70286|661248|48788|2|31|37485.51|0.03|0.01|R|F|1994-10-09|1994-09-08|1994-10-20|NONE|SHIP|ake blithely across| +70286|583283|45795|3|6|8197.56|0.04|0.00|R|F|1994-10-16|1994-09-19|1994-10-22|COLLECT COD|SHIP|ies. quickly express ideas up the qu| +70287|549364|11875|1|33|46640.22|0.07|0.01|R|F|1994-08-13|1994-09-29|1994-08-24|NONE|TRUCK|lar foxes sleep blithely final accounts. ca| +70287|160598|23102|2|21|34830.39|0.07|0.01|A|F|1994-10-17|1994-09-05|1994-10-25|COLLECT COD|TRUCK|ven requests hagg| +70287|159467|21971|3|33|50373.18|0.10|0.07|R|F|1994-08-09|1994-08-28|1994-08-14|COLLECT COD|FOB|. ironic ideas wake accordin| +70287|157786|32793|4|49|90345.22|0.01|0.08|R|F|1994-08-24|1994-10-16|1994-09-10|DELIVER IN PERSON|RAIL|ding to the packages impress| +70287|904264|16783|5|23|29169.06|0.06|0.00|A|F|1994-10-23|1994-09-09|1994-11-13|NONE|FOB|uses nag furiously against the exp| +70287|964481|2039|6|46|71090.24|0.09|0.04|A|F|1994-10-31|1994-08-31|1994-11-25|TAKE BACK RETURN|AIR|s impress blithely bold package| +70312|776384|38900|1|28|40889.80|0.07|0.05|A|F|1992-12-10|1992-10-24|1992-12-23|COLLECT COD|TRUCK|ke. final excuses poach: quickly iron| +70312|673102|10642|2|8|8600.56|0.01|0.00|A|F|1993-01-02|1992-11-26|1993-02-01|NONE|SHIP|es. furiously ironi| +70313|859758|9759|1|3|5153.13|0.01|0.07|R|F|1993-02-12|1993-01-15|1993-03-04|COLLECT COD|FOB|e carefully a| +70313|941105|16142|2|8|9168.48|0.05|0.04|R|F|1993-02-23|1992-12-23|1993-03-16|TAKE BACK RETURN|MAIL|ously regular requests | +70313|141095|28602|3|11|12496.99|0.09|0.03|R|F|1992-12-06|1992-12-13|1992-12-27|DELIVER IN PERSON|MAIL|ly according to the slyly express requ| +70313|370062|7584|4|40|45282.00|0.07|0.07|A|F|1992-11-25|1993-01-06|1992-11-30|DELIVER IN PERSON|AIR|final reque| +70313|622163|47188|5|21|22787.73|0.06|0.08|R|F|1992-12-02|1993-01-26|1992-12-11|COLLECT COD|RAIL|ily unusua| +70313|676814|1841|6|33|59095.74|0.03|0.02|R|F|1993-02-10|1993-01-06|1993-03-04|DELIVER IN PERSON|RAIL|lly final theo| +70314|436475|48984|1|4|5645.80|0.08|0.03|A|F|1993-10-24|1993-09-01|1993-11-23|NONE|TRUCK|equests. even accounts detect along t| +70314|833793|21342|2|13|22447.75|0.09|0.03|A|F|1993-08-11|1993-09-29|1993-08-15|DELIVER IN PERSON|TRUCK|ously about the idly expr| +70314|548977|36508|3|37|74960.15|0.10|0.00|R|F|1993-10-04|1993-10-23|1993-10-09|TAKE BACK RETURN|MAIL|foxes. accounts | +70314|646773|21798|4|13|22356.62|0.00|0.04|A|F|1993-08-14|1993-10-11|1993-09-12|COLLECT COD|FOB|ts are. idea| +70315|54920|29923|1|41|76871.72|0.04|0.04|A|F|1993-09-18|1993-11-14|1993-09-24|COLLECT COD|RAIL| among the | +70315|36826|11827|2|26|45833.32|0.06|0.08|R|F|1993-09-07|1993-11-08|1993-09-21|NONE|FOB|sual accou| +70315|918665|18666|3|29|48824.98|0.08|0.00|R|F|1993-12-11|1993-10-07|1993-12-29|COLLECT COD|FOB| pinto beans sleep | +70315|170|12671|4|24|25684.08|0.04|0.02|A|F|1993-09-16|1993-11-18|1993-10-14|NONE|SHIP|ounts. accounts co| +70315|849965|49966|5|18|34468.56|0.09|0.03|A|F|1993-11-21|1993-10-11|1993-11-22|COLLECT COD|TRUCK|against the silent foxes. express t| +70315|354015|41537|6|18|19242.00|0.05|0.06|A|F|1993-10-25|1993-11-27|1993-10-30|DELIVER IN PERSON|MAIL|e slyly. regular, regular packages ne| +70315|922472|34991|7|31|46327.33|0.09|0.00|A|F|1993-12-12|1993-10-01|1993-12-14|TAKE BACK RETURN|SHIP|rate-- slyly silent requests use fur| +70316|986890|24448|1|11|21745.35|0.02|0.00|N|F|1995-06-09|1995-06-20|1995-07-09|COLLECT COD|AIR|g to the regular asymptotes. fluffily| +70317|898016|23051|1|1|1013.97|0.02|0.05|A|F|1994-08-14|1994-09-02|1994-08-24|COLLECT COD|AIR|ic platelets wake fina| +70317|952473|14993|2|11|16779.73|0.06|0.01|R|F|1994-10-14|1994-08-29|1994-11-11|TAKE BACK RETURN|SHIP|rate according to the fluffily | +70318|286811|49317|1|24|43147.20|0.01|0.02|N|O|1996-01-06|1996-02-09|1996-01-30|DELIVER IN PERSON|SHIP|ckages. deposits w| +70318|425807|25808|2|35|60647.30|0.10|0.06|N|O|1996-02-25|1996-01-16|1996-03-24|DELIVER IN PERSON|FOB|xpress, ironic grouches boost. pend| +70318|533951|21482|3|40|79397.20|0.04|0.03|N|O|1996-02-01|1996-02-29|1996-02-22|NONE|FOB|ts mold ab| +70318|100113|25118|4|8|8904.88|0.09|0.02|N|O|1996-01-24|1996-01-05|1996-01-25|NONE|FOB|ges. platelets sublate sl| +70318|596434|21457|5|4|6121.64|0.06|0.05|N|O|1996-03-13|1996-01-22|1996-04-12|DELIVER IN PERSON|RAIL|. slyly expres| +70318|255520|5521|6|29|42789.79|0.05|0.00|N|O|1996-03-16|1996-01-09|1996-03-31|TAKE BACK RETURN|REG AIR|ly. carefully fina| +70319|827012|14561|1|8|7511.76|0.05|0.08|R|F|1992-11-14|1992-12-26|1992-12-13|COLLECT COD|TRUCK| among the slyl| +70319|587430|24964|2|9|13656.69|0.09|0.02|A|F|1993-01-06|1992-11-23|1993-01-11|NONE|RAIL|endencies affix carefully blithe| +70344|653954|28981|1|7|13355.44|0.06|0.08|R|F|1994-11-26|1994-11-14|1994-12-24|NONE|SHIP|s. close, special ideas haggle | +70344|995190|32748|2|40|51406.00|0.09|0.00|R|F|1995-01-20|1994-12-12|1995-02-04|TAKE BACK RETURN|FOB|ts sleep. carefully fin| +70344|155203|30210|3|46|57877.20|0.00|0.02|R|F|1994-11-27|1994-11-13|1994-12-09|DELIVER IN PERSON|SHIP|e fluffily according to the regular a| +70344|482190|7209|4|24|28132.08|0.10|0.08|A|F|1994-11-06|1994-11-08|1994-11-10|DELIVER IN PERSON|RAIL|cuses about the bold deposits wake carefull| +70344|165212|40219|5|22|28098.62|0.05|0.03|A|F|1994-12-01|1994-12-23|1994-12-02|DELIVER IN PERSON|REG AIR|g deposits cajole. car| +70344|701858|1859|6|14|26037.48|0.07|0.08|A|F|1994-11-23|1994-12-14|1994-11-26|DELIVER IN PERSON|AIR|ross the even, ironic escapades cajole furi| +70344|122049|34552|7|46|49267.84|0.03|0.02|A|F|1994-10-07|1994-11-27|1994-10-20|NONE|MAIL|counts. final excus| +70345|272905|10421|1|4|7511.56|0.08|0.02|N|O|1995-11-22|1995-10-12|1995-11-29|TAKE BACK RETURN|RAIL|posits cajole slyly a| +70346|491590|4100|1|1|1581.57|0.04|0.00|A|F|1993-01-02|1992-11-19|1993-01-25|COLLECT COD|TRUCK|unts cajole after the regul| +70346|150962|963|2|28|56362.88|0.08|0.02|A|F|1992-11-14|1992-12-11|1992-11-25|TAKE BACK RETURN|TRUCK|ounts boost furiously. de| +70346|216164|41173|3|35|37805.25|0.02|0.00|A|F|1992-10-14|1992-12-14|1992-10-24|NONE|TRUCK|thely ironic ideas. fin| +70346|61688|36691|4|38|62687.84|0.06|0.05|A|F|1993-02-06|1992-12-30|1993-02-22|NONE|AIR|p regular, unusual package| +70346|776957|26958|5|22|44746.24|0.03|0.03|R|F|1992-12-27|1992-11-13|1993-01-21|NONE|RAIL|fully bold, even packag| +70346|306869|19376|6|49|91916.65|0.03|0.02|A|F|1992-12-12|1992-12-12|1992-12-29|COLLECT COD|FOB|carefully regular| +70346|544495|19516|7|48|73894.56|0.03|0.06|R|F|1992-12-22|1992-11-25|1993-01-10|NONE|AIR|y stealthily final deposits. careful| +70347|322250|22251|1|24|30533.76|0.05|0.01|A|F|1994-04-08|1994-04-23|1994-04-11|NONE|RAIL|posits. foxes abo| +70347|50990|13492|2|5|9704.95|0.01|0.06|A|F|1994-03-21|1994-04-11|1994-04-01|NONE|SHIP|lly alongside of the sly| +70347|982950|45470|3|23|46756.93|0.09|0.07|R|F|1994-04-05|1994-05-17|1994-04-07|NONE|MAIL|ly silent ins| +70347|430525|18050|4|31|45120.50|0.00|0.01|A|F|1994-05-03|1994-05-14|1994-05-08|NONE|AIR| doze alongside of the furiously ironic | +70347|818507|6056|5|7|9978.22|0.04|0.05|R|F|1994-05-10|1994-04-20|1994-05-24|COLLECT COD|SHIP|refully regular | +70347|639093|26630|6|29|29929.74|0.04|0.00|A|F|1994-06-15|1994-05-27|1994-07-03|COLLECT COD|MAIL|l asymptotes wake furiou| +70348|439313|39314|1|18|22541.22|0.06|0.00|N|O|1996-09-18|1996-11-14|1996-10-08|DELIVER IN PERSON|AIR|fily unusual accounts integrate slyly even | +70348|518922|18923|2|10|19409.00|0.02|0.08|N|O|1996-09-01|1996-11-07|1996-10-01|TAKE BACK RETURN|SHIP|nic foxes. blith| +70349|256161|31172|1|12|13405.80|0.10|0.04|N|O|1995-07-15|1995-06-09|1995-08-06|NONE|RAIL|after the sl| +70349|292938|17949|2|10|19309.20|0.10|0.05|R|F|1995-06-09|1995-06-24|1995-06-13|TAKE BACK RETURN|REG AIR| after the final accounts boost toward th| +70349|403859|41384|3|32|56410.56|0.06|0.04|A|F|1995-04-25|1995-06-21|1995-05-02|NONE|AIR|eans after the quickly | +70350|707681|32710|1|44|74300.60|0.07|0.04|A|F|1994-03-29|1994-05-08|1994-04-02|NONE|REG AIR|ades along the| +70350|983667|33668|2|6|10503.72|0.01|0.03|A|F|1994-05-31|1994-03-26|1994-06-09|COLLECT COD|FOB|ts. instructions along the furiously| +70351|842071|4588|1|43|43560.29|0.00|0.07|A|F|1995-03-19|1995-04-18|1995-04-04|DELIVER IN PERSON|FOB|old excuses wake. special, express asympto| +70351|676160|38674|2|3|3408.39|0.10|0.04|N|O|1995-06-18|1995-05-15|1995-07-12|NONE|AIR| slyly special pinto beans are blithely acc| +70351|207551|20056|3|40|58341.60|0.02|0.08|A|F|1995-05-06|1995-04-25|1995-05-28|NONE|TRUCK| ironic packages. | +70351|309474|21981|4|31|45987.26|0.02|0.05|A|F|1995-05-02|1995-04-30|1995-05-03|TAKE BACK RETURN|AIR|lar deposits | +70351|324782|37289|5|11|19874.47|0.05|0.06|N|O|1995-06-23|1995-04-17|1995-07-11|DELIVER IN PERSON|REG AIR|bold accounts ab| +70376|53823|28826|1|2|3553.64|0.05|0.06|N|O|1996-02-17|1996-04-10|1996-03-04|COLLECT COD|FOB|uriously regular ideas? slyly final | +70377|419965|19966|1|23|43353.62|0.02|0.04|N|O|1996-05-04|1996-05-30|1996-05-20|TAKE BACK RETURN|TRUCK| express depe| +70377|339133|39134|2|8|9376.96|0.01|0.05|N|O|1996-06-04|1996-05-24|1996-06-20|TAKE BACK RETURN|SHIP|eposits can snooze furiously. slow, unusua| +70377|800516|38065|3|16|22663.52|0.08|0.04|N|O|1996-04-07|1996-05-11|1996-05-01|DELIVER IN PERSON|TRUCK|s wake care| +70377|257846|20352|4|5|9019.15|0.00|0.08|N|O|1996-05-14|1996-06-12|1996-06-04|TAKE BACK RETURN|FOB|usual deposits after the furiously reg| +70377|615371|15372|5|4|5145.36|0.07|0.06|N|O|1996-07-18|1996-04-23|1996-08-08|COLLECT COD|MAIL|ording to the slyly i| +70378|641822|41823|1|26|45858.54|0.07|0.01|R|F|1992-12-28|1992-12-16|1992-12-31|COLLECT COD|RAIL| the regular requests| +70378|97868|22871|2|26|48512.36|0.00|0.02|R|F|1993-02-27|1993-02-02|1993-03-05|NONE|SHIP|usly special requests are fur| +70378|855059|30094|3|34|34476.34|0.07|0.04|R|F|1993-02-27|1992-12-16|1993-03-23|DELIVER IN PERSON|FOB|ly thin packages. quickly pending ac| +70378|975935|38455|4|15|30163.35|0.04|0.02|R|F|1993-03-07|1993-01-07|1993-03-30|COLLECT COD|MAIL|, ironic instructions sleep fi| +70379|375204|25205|1|19|24304.61|0.01|0.00|A|F|1994-07-02|1994-04-11|1994-07-17|COLLECT COD|RAIL|arefully thin notornis are carefully. furio| +70379|36870|49371|2|42|75888.54|0.07|0.05|R|F|1994-04-01|1994-04-29|1994-04-11|TAKE BACK RETURN|AIR|ts. quickly even platelets aga| +70379|665379|40406|3|23|30919.82|0.04|0.07|A|F|1994-03-18|1994-05-18|1994-04-01|TAKE BACK RETURN|FOB|le furiously. even| +70379|20537|20538|4|6|8745.18|0.04|0.05|A|F|1994-06-27|1994-05-23|1994-07-24|COLLECT COD|FOB|ly bold accounts print caref| +70379|153756|41266|5|6|10858.50|0.07|0.01|A|F|1994-05-02|1994-05-08|1994-05-07|TAKE BACK RETURN|FOB|lithely pendi| +70380|882858|7893|1|30|55224.30|0.04|0.07|N|O|1995-08-18|1995-11-07|1995-08-24|COLLECT COD|SHIP|ep quickly. busy, reg| +70381|301689|26702|1|39|65936.13|0.02|0.01|N|O|1995-12-05|1996-01-02|1995-12-07|COLLECT COD|TRUCK|e blithely. final, final requests boost| +70381|477538|2557|2|36|54558.36|0.10|0.02|N|O|1996-02-25|1995-12-23|1996-03-22|TAKE BACK RETURN|FOB|ests. furiously final accounts | +70381|974422|36942|3|13|19452.94|0.07|0.06|N|O|1995-11-29|1996-01-21|1995-12-16|TAKE BACK RETURN|MAIL|lets kindle slyly sile| +70381|94923|32427|4|31|59455.52|0.05|0.06|N|O|1996-02-20|1995-12-27|1996-03-03|NONE|MAIL|pending foxes | +70381|363675|26183|5|16|27818.56|0.09|0.01|N|O|1996-03-01|1995-12-27|1996-03-04|COLLECT COD|AIR|sly unusual packages. furiously final as| +70381|279650|42156|6|13|21185.32|0.05|0.08|N|O|1995-12-09|1996-01-06|1995-12-11|TAKE BACK RETURN|SHIP|ing instructions. final fray| +70382|704693|42236|1|3|5092.98|0.01|0.02|N|O|1996-05-16|1996-05-17|1996-05-20|NONE|FOB|fily regular deposits. furiously regular| +70382|762630|37661|2|14|23696.40|0.01|0.08|N|O|1996-04-15|1996-05-04|1996-04-18|DELIVER IN PERSON|SHIP|c packages. fluffily even packag| +70382|518437|43458|3|2|2910.82|0.09|0.01|N|O|1996-03-25|1996-04-03|1996-04-13|TAKE BACK RETURN|TRUCK|xpress, express request| +70382|361608|11609|4|23|38400.57|0.01|0.01|N|O|1996-05-29|1996-05-15|1996-06-02|TAKE BACK RETURN|RAIL|. fluffily ironic theodo| +70382|542396|29927|5|24|34520.88|0.08|0.08|N|O|1996-04-04|1996-05-19|1996-04-28|NONE|TRUCK|-- final, regular | +70382|38544|1045|6|11|16307.94|0.04|0.07|N|O|1996-03-22|1996-04-28|1996-04-02|DELIVER IN PERSON|MAIL|the foxes. unusual, express courts| +70382|793789|43790|7|21|39537.75|0.02|0.08|N|O|1996-04-04|1996-03-26|1996-04-18|DELIVER IN PERSON|REG AIR|nic ideas. packages hang according t| +70383|197239|34749|1|3|4008.69|0.08|0.05|A|F|1993-10-26|1993-11-18|1993-10-30|NONE|TRUCK|ly even, silent pinto beans.| +70383|995623|8143|2|37|63587.46|0.10|0.03|R|F|1993-11-09|1993-11-09|1993-11-10|NONE|FOB|ccounts. fluffily thin accou| +70383|421642|46659|3|16|25017.92|0.07|0.02|A|F|1993-12-28|1994-01-01|1994-01-27|COLLECT COD|FOB|n ideas haggle furiously among the slyly i| +70383|530819|30820|4|42|77691.18|0.09|0.04|A|F|1994-01-21|1993-12-06|1994-02-09|TAKE BACK RETURN|SHIP|pending decoys. bold deposits use carefu| +70383|460235|10236|5|50|59760.50|0.07|0.08|A|F|1994-01-21|1993-12-05|1994-02-19|TAKE BACK RETURN|RAIL|uests cajole | +70408|243207|18216|1|4|4600.76|0.03|0.04|R|F|1993-10-03|1993-10-28|1993-10-16|COLLECT COD|AIR|y express requests. slyly sile| +70408|567799|17800|2|49|91471.73|0.09|0.03|R|F|1993-09-27|1993-11-06|1993-10-10|TAKE BACK RETURN|AIR|lly even accounts | +70408|982718|32719|3|45|81030.15|0.07|0.04|A|F|1993-11-16|1993-10-22|1993-11-19|DELIVER IN PERSON|RAIL|uickly iro| +70409|252980|27991|1|20|38659.40|0.09|0.06|R|F|1993-04-06|1993-05-17|1993-04-25|NONE|AIR|ent excuses according to the blithely ir| +70409|834414|9447|2|13|17528.81|0.09|0.06|A|F|1993-03-03|1993-04-28|1993-03-23|COLLECT COD|AIR| even theodo| +70409|991991|17030|3|30|62488.50|0.06|0.08|A|F|1993-04-11|1993-04-01|1993-04-22|NONE|FOB|nly furiously ironic asymptotes. slyl| +70410|398728|23743|1|33|60281.43|0.01|0.03|N|O|1995-08-30|1995-06-12|1995-09-12|COLLECT COD|SHIP|ggle blithely depende| +70410|408891|46416|2|11|19798.57|0.07|0.08|N|O|1995-09-04|1995-06-16|1995-09-12|TAKE BACK RETURN|REG AIR|nts use fluffily; carefully even depths al| +70410|228377|28378|3|49|63962.64|0.07|0.00|N|F|1995-06-06|1995-07-25|1995-06-29|TAKE BACK RETURN|TRUCK|ronic packages. slyly speci| +70411|793926|43927|1|15|30298.35|0.07|0.04|R|F|1993-07-16|1993-06-05|1993-07-19|NONE|REG AIR|ly except the fluffi| +70411|502982|28003|2|32|63518.72|0.10|0.03|A|F|1993-08-11|1993-05-16|1993-09-01|DELIVER IN PERSON|FOB| print slyly. ironic, ironic pinto bean| +70411|606463|31488|3|2|2738.86|0.04|0.04|A|F|1993-07-17|1993-06-11|1993-07-25|TAKE BACK RETURN|RAIL|he blithely bold depe| +70411|816825|41858|4|26|45286.28|0.02|0.04|A|F|1993-07-07|1993-05-27|1993-07-28|TAKE BACK RETURN|FOB|. silent acco| +70411|363485|13486|5|13|20130.11|0.03|0.05|R|F|1993-06-27|1993-05-24|1993-07-17|TAKE BACK RETURN|RAIL|ct furiousl| +70411|81584|19088|6|23|36008.34|0.04|0.00|A|F|1993-04-20|1993-06-08|1993-05-15|COLLECT COD|AIR|about the stealthily even | +70411|172546|35050|7|40|64741.60|0.01|0.06|A|F|1993-07-20|1993-06-24|1993-08-16|TAKE BACK RETURN|REG AIR|anently slow patter| +70412|968700|18701|1|22|38910.52|0.10|0.08|N|O|1998-08-23|1998-07-30|1998-09-01|DELIVER IN PERSON|REG AIR|. carefully special platelets nag s| +70412|935173|35174|2|45|54365.85|0.08|0.05|N|O|1998-08-14|1998-07-16|1998-08-31|DELIVER IN PERSON|TRUCK|blithely special ac| +70412|440515|3024|3|32|46575.68|0.02|0.00|N|O|1998-06-06|1998-06-12|1998-06-14|NONE|FOB|deposits. regular, final deposits use blith| +70412|726177|1206|4|49|58953.86|0.10|0.07|N|O|1998-06-03|1998-08-07|1998-06-25|NONE|AIR| carefully alongsid| +70412|842006|4523|5|8|7583.68|0.03|0.06|N|O|1998-05-28|1998-07-05|1998-06-18|COLLECT COD|TRUCK| boost carefully a| +70412|585884|48396|6|46|90613.56|0.01|0.00|N|O|1998-07-23|1998-06-19|1998-07-26|DELIVER IN PERSON|TRUCK| the carefull| +70412|941361|3880|7|2|2804.64|0.00|0.05|N|O|1998-08-26|1998-06-15|1998-09-25|DELIVER IN PERSON|MAIL|ly regular t| +70413|443250|30775|1|7|8352.61|0.04|0.00|R|F|1994-11-16|1994-09-22|1994-11-18|NONE|FOB|y ironic deposits are slyly iron| +70413|692204|4718|2|41|49042.97|0.04|0.04|R|F|1994-08-13|1994-10-07|1994-08-16|TAKE BACK RETURN|TRUCK|ularly about th| +70413|867773|42808|3|3|5222.19|0.07|0.02|R|F|1994-11-11|1994-10-28|1994-11-27|DELIVER IN PERSON|AIR| special, bold pla| +70413|654333|29360|4|50|64365.00|0.01|0.01|A|F|1994-08-28|1994-10-05|1994-09-22|TAKE BACK RETURN|SHIP|le slyly speci| +70413|362427|12428|5|40|59576.40|0.03|0.07|R|F|1994-09-25|1994-10-07|1994-10-18|COLLECT COD|SHIP|rs doubt. fluffily regular deposits alo| +70413|301200|38719|6|10|12011.90|0.03|0.00|R|F|1994-08-14|1994-11-02|1994-09-13|TAKE BACK RETURN|FOB|ests. blithely quick instructions x-r| +70413|259326|46842|7|25|32132.75|0.10|0.05|A|F|1994-09-16|1994-09-23|1994-10-01|DELIVER IN PERSON|REG AIR|efully bravely special packages| +70414|483839|33840|1|27|49215.87|0.01|0.04|R|F|1994-01-21|1994-03-16|1994-01-22|COLLECT COD|TRUCK|ts use blithely above the bold | +70414|881062|6097|2|32|33376.64|0.03|0.00|A|F|1994-04-06|1994-01-21|1994-04-20|TAKE BACK RETURN|REG AIR|nst the furiously regular r| +70414|995597|20636|3|45|76164.75|0.09|0.04|A|F|1994-01-17|1994-02-02|1994-02-05|TAKE BACK RETURN|FOB|s above the carefully ironic dugout| +70415|779449|16995|1|35|53494.35|0.05|0.01|N|O|1997-04-30|1997-06-10|1997-05-26|DELIVER IN PERSON|REG AIR|d, final accounts. q| +70440|728727|41242|1|13|22823.97|0.09|0.07|R|F|1994-08-06|1994-10-18|1994-08-28|NONE|REG AIR|ter the fin| +70440|710529|23044|2|49|75435.01|0.06|0.01|A|F|1994-07-30|1994-10-19|1994-08-19|DELIVER IN PERSON|SHIP|ans. final platelets cajole. furiously | +70440|848935|48936|3|33|62168.37|0.09|0.03|A|F|1994-11-12|1994-09-28|1994-12-03|COLLECT COD|REG AIR|s. carefully pending accounts boost| +70440|46602|34103|4|27|41812.20|0.10|0.07|A|F|1994-09-18|1994-09-15|1994-10-11|DELIVER IN PERSON|SHIP|run slyly asymptotes. ev| +70440|232404|7413|5|33|44100.87|0.10|0.03|R|F|1994-11-12|1994-10-06|1994-11-18|DELIVER IN PERSON|AIR| regular accounts. blithely final foxe| +70440|998466|23505|6|28|43803.76|0.03|0.03|R|F|1994-10-27|1994-10-03|1994-11-20|COLLECT COD|REG AIR|al excuses. quickly even foxes wak| +70441|46283|33784|1|44|54088.32|0.10|0.02|R|F|1992-10-04|1992-09-16|1992-10-29|NONE|RAIL|le blithely a| +70441|869243|31761|2|9|10909.80|0.10|0.05|R|F|1992-07-25|1992-08-20|1992-08-04|TAKE BACK RETURN|RAIL|latelets. blith| +70441|361460|48982|3|20|30429.00|0.06|0.03|R|F|1992-10-17|1992-10-01|1992-10-19|TAKE BACK RETURN|SHIP|c packages sublate carefully| +70442|888054|13089|1|48|50016.48|0.06|0.01|N|O|1998-03-08|1998-03-22|1998-03-16|TAKE BACK RETURN|SHIP|ily pending ideas wake carefully am| +70442|520881|8412|2|23|43742.78|0.04|0.02|N|O|1998-04-13|1998-03-17|1998-05-11|NONE|RAIL|ages. ideas boost furiously | +70442|440561|3070|3|15|22523.10|0.09|0.07|N|O|1998-02-09|1998-01-22|1998-02-28|TAKE BACK RETURN|MAIL|quickly pending accounts.| +70443|345311|32830|1|8|10850.40|0.00|0.03|N|O|1997-11-18|1997-10-29|1997-12-10|NONE|AIR|y along the quickly regular do| +70443|638693|38694|2|42|68529.72|0.05|0.02|N|O|1997-12-06|1997-09-19|1997-12-20|NONE|MAIL|nding packages. eve| +70443|510340|35361|3|16|21605.12|0.03|0.03|N|O|1997-12-03|1997-11-06|1997-12-07|TAKE BACK RETURN|AIR|ly even theodo| +70444|504889|17400|1|47|89011.42|0.08|0.04|R|F|1994-04-29|1994-06-15|1994-05-28|DELIVER IN PERSON|SHIP|al dependencies are carefu| +70445|568595|43618|1|25|41589.25|0.03|0.05|N|O|1995-07-01|1995-06-04|1995-07-17|COLLECT COD|SHIP|deposits. bold excus| +70445|364893|2415|2|7|13705.16|0.10|0.06|N|O|1995-07-02|1995-05-06|1995-07-09|DELIVER IN PERSON|SHIP|es; slyly pending packages are quickly reg| +70445|755756|5757|3|22|39857.84|0.04|0.08|N|O|1995-07-15|1995-05-29|1995-08-13|NONE|MAIL|ggle carefully. blithel| +70445|984807|34808|4|6|11350.56|0.06|0.03|N|O|1995-06-29|1995-05-06|1995-07-09|TAKE BACK RETURN|FOB|iously special account| +70446|623921|48946|1|8|14759.12|0.00|0.04|N|O|1996-07-13|1996-04-13|1996-07-31|COLLECT COD|TRUCK|he quickly regular accounts solve slyly a| +70446|230664|43169|2|10|15946.50|0.10|0.00|N|O|1996-04-19|1996-05-12|1996-05-16|NONE|AIR|dolites sleep accordin| +70446|760692|48238|3|4|7010.64|0.06|0.08|N|O|1996-05-16|1996-05-24|1996-06-04|NONE|MAIL|carefully: slyly final pinto beans ha| +70446|942490|42491|4|34|52103.30|0.09|0.04|N|O|1996-04-17|1996-06-09|1996-05-08|NONE|AIR|into beans. slyly special theodolites wake | +70446|416811|41828|5|15|25916.85|0.02|0.03|N|O|1996-04-19|1996-04-28|1996-05-11|TAKE BACK RETURN|TRUCK|ironic instructions ca| +70447|672956|35470|1|10|19289.20|0.02|0.06|A|F|1994-01-10|1993-12-07|1994-01-29|DELIVER IN PERSON|SHIP|ronic accounts hagg| +70447|369292|6814|2|36|49006.08|0.08|0.07|R|F|1994-01-08|1993-12-12|1994-01-19|NONE|TRUCK|equests sleep caref| +70472|673446|10986|1|36|51098.76|0.06|0.07|N|O|1996-06-22|1996-04-25|1996-07-12|NONE|SHIP| cajole. regular | +70472|592192|4704|2|13|16694.21|0.08|0.04|N|O|1996-03-24|1996-05-14|1996-03-25|DELIVER IN PERSON|FOB|. carefully express theodolites engage | +70472|965843|28363|3|4|7635.20|0.10|0.03|N|O|1996-05-31|1996-04-17|1996-06-19|COLLECT COD|RAIL|ach to the special theodolites. blithely ev| +70472|908400|20919|4|22|30983.92|0.03|0.01|N|O|1996-04-15|1996-06-01|1996-05-07|NONE|REG AIR|eodolites solve ironic package| +70472|462827|25337|5|8|14318.40|0.05|0.00|N|O|1996-04-04|1996-04-21|1996-05-03|COLLECT COD|RAIL|lar packages are carefully. regular ideas | +70472|731551|19094|6|38|60135.76|0.09|0.07|N|O|1996-04-05|1996-06-02|1996-04-24|COLLECT COD|MAIL|ironic, final pinto bea| +70472|172003|47010|7|9|9675.00|0.00|0.03|N|O|1996-05-04|1996-05-20|1996-05-09|DELIVER IN PERSON|TRUCK|r ideas cajole furiously along the expre| +70473|852185|27220|1|43|48897.02|0.08|0.05|N|O|1998-03-11|1998-03-08|1998-03-28|COLLECT COD|AIR|instructions haggle slyly. dogged pinto | +70473|668805|6345|2|47|83367.19|0.09|0.01|N|O|1998-03-05|1998-02-22|1998-03-24|DELIVER IN PERSON|FOB|accounts. carefull| +70473|603377|28402|3|24|30728.16|0.04|0.04|N|O|1998-01-31|1998-04-02|1998-02-24|TAKE BACK RETURN|RAIL|y furiously even| +70474|593265|5777|1|9|12224.16|0.10|0.06|A|F|1993-09-12|1993-10-25|1993-09-19|DELIVER IN PERSON|AIR|s! busy, final depths a| +70474|991051|3571|2|3|3426.03|0.08|0.02|A|F|1993-08-19|1993-09-14|1993-09-04|NONE|TRUCK|se quickly after the foxes. quickly | +70474|586708|49220|3|7|12562.76|0.02|0.00|R|F|1993-10-17|1993-09-02|1993-10-24|COLLECT COD|AIR| blithely unusual Tiresias must are slyly i| +70474|793377|43378|4|45|66165.30|0.02|0.06|R|F|1993-11-04|1993-09-23|1993-11-21|NONE|RAIL| the slyly| +70475|912104|12105|1|17|18973.02|0.05|0.08|R|F|1994-08-28|1994-06-24|1994-08-31|DELIVER IN PERSON|TRUCK|regular pinto| +70475|729656|4685|2|48|80909.76|0.08|0.00|A|F|1994-06-01|1994-08-10|1994-06-25|NONE|FOB|ic ideas sleep furiously. theodolites | +70475|320152|45165|3|22|25787.08|0.10|0.06|A|F|1994-05-21|1994-07-21|1994-06-01|TAKE BACK RETURN|MAIL| instructions hang carefully abov| +70475|783547|8578|4|2|3261.02|0.01|0.06|R|F|1994-07-05|1994-07-01|1994-07-22|NONE|RAIL|efully about | +70475|61272|23774|5|17|20965.59|0.01|0.05|A|F|1994-06-01|1994-07-05|1994-06-17|TAKE BACK RETURN|RAIL|ts. quickl| +70475|792674|42675|6|4|7066.56|0.08|0.00|R|F|1994-07-21|1994-07-01|1994-08-03|DELIVER IN PERSON|SHIP|refully unusual epitaphs. accounts x| +70475|458579|21089|7|39|59964.45|0.07|0.03|A|F|1994-06-25|1994-06-23|1994-07-21|TAKE BACK RETURN|FOB| asymptotes. express ideas| +70476|332547|45054|1|2|3159.06|0.06|0.00|A|F|1994-03-04|1994-02-18|1994-03-14|TAKE BACK RETURN|TRUCK| furiously care| +70476|109921|34926|2|8|15447.36|0.02|0.01|A|F|1994-03-02|1994-03-03|1994-03-19|TAKE BACK RETURN|AIR|tions sleep quic| +70476|437255|37256|3|39|46496.97|0.01|0.06|A|F|1994-01-17|1994-02-15|1994-01-28|DELIVER IN PERSON|FOB|requests nag blithely bra| +70476|929234|41753|4|19|24000.61|0.04|0.05|A|F|1994-01-23|1994-03-22|1994-02-22|DELIVER IN PERSON|SHIP|y regular | +70476|626836|1861|5|16|28204.80|0.06|0.05|A|F|1994-04-18|1994-03-14|1994-05-05|DELIVER IN PERSON|TRUCK|oost busily furiously pending depende| +70476|229715|17228|6|32|52630.40|0.01|0.00|A|F|1994-01-11|1994-02-21|1994-01-15|COLLECT COD|SHIP|jole quickly ironic | +70477|541897|4408|1|41|79493.67|0.07|0.01|N|O|1997-07-11|1997-05-30|1997-08-10|DELIVER IN PERSON|TRUCK|ckages are: final asymptotes| +70477|651352|13866|2|21|27369.72|0.02|0.08|N|O|1997-07-19|1997-06-02|1997-08-01|NONE|TRUCK|hely even ideas detect furiously around th| +70477|270823|8339|3|12|21525.72|0.04|0.06|N|O|1997-07-10|1997-06-17|1997-07-23|DELIVER IN PERSON|AIR|ar platelets boost. slyly express | +70477|708867|21382|4|48|90039.84|0.01|0.07|N|O|1997-05-04|1997-07-01|1997-05-30|DELIVER IN PERSON|RAIL| furiously regular depths nag blithely | +70478|720912|20913|1|30|57986.40|0.08|0.00|N|O|1996-06-22|1996-06-18|1996-07-14|NONE|MAIL|lyly final pinto beans affix acro| +70478|363994|1516|2|33|67913.34|0.04|0.08|N|O|1996-07-19|1996-06-14|1996-08-03|NONE|AIR|the quickly express requests are blithely| +70478|632542|45055|3|20|29490.20|0.05|0.04|N|O|1996-08-19|1996-07-03|1996-08-23|TAKE BACK RETURN|TRUCK|refully. ideas cajole slyly fluffily ev| +70478|123729|36232|4|50|87636.00|0.06|0.04|N|O|1996-06-15|1996-07-24|1996-06-25|DELIVER IN PERSON|FOB|fily ironic accounts| +70478|498440|35968|5|22|31645.24|0.04|0.00|N|O|1996-05-19|1996-06-13|1996-06-05|DELIVER IN PERSON|REG AIR| deposits nag furiously above th| +70478|272260|22261|6|29|35735.25|0.07|0.00|N|O|1996-08-30|1996-07-02|1996-09-08|NONE|TRUCK| requests might cajol| +70478|867068|29586|7|26|26910.52|0.01|0.07|N|O|1996-07-15|1996-08-01|1996-08-12|COLLECT COD|RAIL|refully ironic depend| +70479|810853|35886|1|28|49386.68|0.04|0.02|R|F|1994-06-20|1994-06-09|1994-07-15|TAKE BACK RETURN|MAIL|the ironic, final accounts c| +70504|265084|27590|1|42|44060.94|0.10|0.08|N|O|1998-07-07|1998-05-11|1998-07-26|DELIVER IN PERSON|RAIL|lets nag carefully across the blithe| +70504|262663|12664|2|31|50395.15|0.06|0.04|N|O|1998-03-23|1998-04-19|1998-03-25|TAKE BACK RETURN|AIR|he slyly ironic requests| +70505|677357|2384|1|1|1334.32|0.04|0.03|A|F|1993-06-29|1993-08-08|1993-07-07|DELIVER IN PERSON|SHIP|ly escapades. d| +70505|326822|39329|2|30|55464.30|0.06|0.03|R|F|1993-08-29|1993-07-05|1993-09-20|DELIVER IN PERSON|FOB|onic deposits solve even courts? carefu| +70505|896067|8585|3|31|32953.62|0.04|0.06|A|F|1993-06-01|1993-07-20|1993-06-07|COLLECT COD|SHIP|eas. quickly ironic| +70505|193365|5869|4|36|52500.96|0.02|0.03|A|F|1993-09-06|1993-07-01|1993-09-25|DELIVER IN PERSON|SHIP| regular requests| +70505|876169|38687|5|13|14886.56|0.04|0.02|R|F|1993-06-05|1993-08-11|1993-07-05|DELIVER IN PERSON|FOB|kages haggle furiously. slyly sly pinto b| +70505|756179|6180|6|48|59286.72|0.10|0.08|R|F|1993-09-07|1993-06-22|1993-09-25|DELIVER IN PERSON|AIR|uriously q| +70506|323214|23215|1|7|8660.40|0.05|0.00|A|F|1994-01-17|1994-02-07|1994-02-14|TAKE BACK RETURN|FOB|ong the quickly ironic | +70506|247278|9783|2|8|9802.08|0.04|0.01|R|F|1994-01-26|1994-01-12|1994-02-04|DELIVER IN PERSON|REG AIR|heodolites accor| +70506|990161|27719|3|45|56300.40|0.04|0.08|R|F|1994-02-21|1994-01-11|1994-03-18|TAKE BACK RETURN|TRUCK|bold instruc| +70506|620146|32659|4|42|44776.62|0.04|0.01|R|F|1994-02-11|1993-12-12|1994-02-18|TAKE BACK RETURN|RAIL|platelets eat after the regular depos| +70506|792666|5182|5|27|47483.01|0.05|0.01|A|F|1994-02-08|1993-12-15|1994-02-10|NONE|RAIL|nal ideas. regula| +70506|331322|43829|6|30|40599.30|0.01|0.04|R|F|1994-01-29|1994-01-16|1994-02-27|DELIVER IN PERSON|RAIL|ly silent | +70507|967382|4940|1|16|23189.44|0.08|0.07|R|F|1995-03-03|1995-03-17|1995-03-04|TAKE BACK RETURN|AIR|lar multipliers. regular frays co| +70507|786109|36110|2|30|35852.10|0.04|0.08|R|F|1995-03-06|1995-04-02|1995-03-15|NONE|AIR|. theodolites use-- ironi| +70507|133954|8959|3|2|3975.90|0.01|0.05|R|F|1995-02-05|1995-02-11|1995-02-19|DELIVER IN PERSON|RAIL|its. deposits sleep bold r| +70508|544864|32395|1|23|43903.32|0.05|0.01|N|O|1996-09-28|1996-07-22|1996-10-20|NONE|REG AIR|ously unusual ideas haggle furiously| +70508|527043|27044|2|31|33170.62|0.10|0.04|N|O|1996-09-22|1996-08-12|1996-10-03|DELIVER IN PERSON|FOB|round the special deposits haggle care| +70508|998657|48658|3|1|1755.61|0.04|0.01|N|O|1996-08-09|1996-09-08|1996-08-26|TAKE BACK RETURN|AIR| final courts. furiously unu| +70508|416018|41035|4|2|1867.98|0.00|0.08|N|O|1996-09-02|1996-07-19|1996-09-19|DELIVER IN PERSON|MAIL|iously bold accounts. blithe| +70508|7014|7015|5|15|13815.15|0.06|0.05|N|O|1996-08-29|1996-09-04|1996-09-27|DELIVER IN PERSON|RAIL|es. furiously even platelets sle| +70508|880931|18483|6|2|3823.78|0.04|0.00|N|O|1996-09-08|1996-08-30|1996-09-15|TAKE BACK RETURN|MAIL|ts cajole. deposits use; pendi| +70508|795769|20800|7|13|24241.49|0.10|0.00|N|O|1996-08-06|1996-08-29|1996-08-13|TAKE BACK RETURN|MAIL|ccounts. furiously unusual hockey players | +70509|475009|12537|1|12|11807.76|0.08|0.07|N|F|1995-06-17|1995-06-03|1995-07-06|TAKE BACK RETURN|RAIL|al, express patterns cajole blithely. | +70509|460034|22544|2|31|30814.31|0.01|0.05|N|O|1995-06-24|1995-06-06|1995-07-12|NONE|TRUCK|cross the quickly bold ideas. unusual| +70509|785247|22793|3|10|13322.10|0.06|0.08|N|O|1995-07-13|1995-06-02|1995-08-06|COLLECT COD|REG AIR|t slyly alongsi| +70510|92519|30023|1|18|27207.18|0.02|0.05|N|O|1996-08-22|1996-07-29|1996-09-20|NONE|TRUCK|deposits. regular requests doze sl| +70510|961194|36233|2|17|21337.55|0.10|0.06|N|O|1996-06-27|1996-06-10|1996-07-17|TAKE BACK RETURN|RAIL|sly bold excuses boo| +70510|784415|21961|3|45|67472.10|0.02|0.01|N|O|1996-05-12|1996-07-30|1996-05-30|COLLECT COD|MAIL|arefully express foxes | +70510|662452|49992|4|15|21216.30|0.04|0.03|N|O|1996-07-29|1996-07-30|1996-08-12|COLLECT COD|MAIL|equests nag. deposits | +70510|820207|45240|5|29|32687.64|0.06|0.08|N|O|1996-07-20|1996-07-29|1996-08-01|NONE|REG AIR|ecial excuses use si| +70511|445960|8469|1|28|53366.32|0.05|0.02|R|F|1992-04-19|1992-04-10|1992-05-09|TAKE BACK RETURN|TRUCK|ial foxes. re| +70536|92321|17324|1|32|42026.24|0.03|0.06|R|F|1994-02-23|1994-01-13|1994-02-26|COLLECT COD|RAIL| fluffily pending r| +70536|628178|15715|2|12|13273.68|0.09|0.00|R|F|1994-03-27|1994-01-29|1994-04-24|DELIVER IN PERSON|AIR|es. blithely even a| +70536|786579|24125|3|1|1665.54|0.06|0.01|R|F|1994-02-18|1994-01-27|1994-02-22|DELIVER IN PERSON|MAIL| requests. furiously regular packages in| +70536|23889|48890|4|20|36257.60|0.03|0.03|A|F|1993-12-25|1994-01-02|1994-01-16|TAKE BACK RETURN|TRUCK|furiously bold excuses print furi| +70536|488525|1035|5|46|69621.00|0.04|0.04|R|F|1994-01-29|1994-01-07|1994-02-28|DELIVER IN PERSON|SHIP|quickly ironic accounts are slyly q| +70537|555252|17764|1|15|19608.45|0.05|0.07|R|F|1993-10-24|1993-12-07|1993-11-20|COLLECT COD|RAIL|cording to the slyly ironic| +70537|117704|42709|2|9|15495.30|0.06|0.05|R|F|1993-11-13|1993-11-07|1993-12-13|COLLECT COD|TRUCK|final, final deposits. furiously even court| +70537|239630|2135|3|17|26683.54|0.07|0.08|R|F|1994-01-10|1993-12-10|1994-02-08|COLLECT COD|MAIL|ecial escapades breach ev| +70537|454755|42283|4|36|61550.28|0.06|0.07|A|F|1993-11-20|1993-11-22|1993-12-01|COLLECT COD|REG AIR|nding, even | +70537|67263|42266|5|8|9842.08|0.06|0.00|A|F|1993-10-07|1993-12-15|1993-10-12|NONE|TRUCK|y pending depend| +70537|478656|16184|6|34|55577.42|0.09|0.07|A|F|1993-10-03|1993-12-15|1993-10-17|COLLECT COD|FOB|slyly pendin| +70537|762294|12295|7|16|21700.16|0.07|0.06|A|F|1993-11-25|1993-12-26|1993-11-28|NONE|MAIL|ronic theodolites sleep| +70538|867611|17612|1|45|71035.65|0.07|0.06|N|O|1997-04-07|1997-03-29|1997-04-28|NONE|SHIP|eans. pinto beans maintai| +70538|921662|34181|2|6|10101.72|0.04|0.03|N|O|1997-04-20|1997-03-02|1997-05-02|TAKE BACK RETURN|FOB|y pending packages slee| +70538|365243|2765|3|20|26164.60|0.06|0.05|N|O|1997-03-26|1997-03-13|1997-03-31|COLLECT COD|REG AIR|y deposits. furi| +70538|635692|10717|4|17|27670.22|0.03|0.06|N|O|1997-01-15|1997-03-24|1997-01-19|DELIVER IN PERSON|SHIP|after the furiously furious| +70538|61963|24465|5|18|34649.28|0.09|0.02|N|O|1997-01-20|1997-02-04|1997-02-11|TAKE BACK RETURN|RAIL|n theodoli| +70538|409690|22199|6|18|28794.06|0.03|0.06|N|O|1997-01-28|1997-02-20|1997-02-26|NONE|TRUCK|slyly final instructions| +70539|803310|15827|1|50|60663.50|0.07|0.02|N|O|1997-05-27|1997-06-14|1997-06-21|TAKE BACK RETURN|FOB|ptotes around the carefully express | +70539|222691|35196|2|40|64547.20|0.03|0.08|N|O|1997-08-10|1997-05-17|1997-09-07|TAKE BACK RETURN|SHIP|tes are finally. furiously silent p| +70539|756737|31768|3|29|52017.30|0.10|0.06|N|O|1997-05-25|1997-07-06|1997-05-26|DELIVER IN PERSON|SHIP| courts lose blithely regular accounts. ca| +70539|464746|2274|4|37|63296.64|0.02|0.05|N|O|1997-05-22|1997-05-26|1997-06-18|TAKE BACK RETURN|SHIP|tions haggle| +70539|973602|11160|5|17|28484.52|0.04|0.08|N|O|1997-05-29|1997-05-26|1997-06-08|DELIVER IN PERSON|AIR|unusual packages are regular ideas. final g| +70539|320145|20146|6|29|33788.77|0.07|0.01|N|O|1997-04-16|1997-06-19|1997-04-24|TAKE BACK RETURN|AIR|s use blithely requests. quickly bold c| +70540|399136|49137|1|23|28407.76|0.10|0.08|A|F|1992-06-25|1992-07-21|1992-07-09|COLLECT COD|FOB| requests are furiously alongside of| +70540|275560|38066|2|39|59886.45|0.07|0.03|R|F|1992-08-21|1992-06-03|1992-08-25|DELIVER IN PERSON|FOB|ously special courts dazzle carefully ir| +70540|326787|39294|3|30|54413.10|0.02|0.05|R|F|1992-05-08|1992-07-06|1992-05-15|TAKE BACK RETURN|RAIL|arefully idle | +70540|303611|3612|4|45|72657.00|0.06|0.08|R|F|1992-08-08|1992-06-08|1992-08-30|NONE|AIR|bold foxes detect slowly f| +70540|782803|20349|5|3|5657.31|0.03|0.05|R|F|1992-08-25|1992-06-12|1992-09-19|DELIVER IN PERSON|MAIL|lly final accounts cajo| +70540|553278|40812|6|13|17306.25|0.00|0.08|R|F|1992-05-11|1992-06-19|1992-06-08|TAKE BACK RETURN|SHIP|ding requests. bl| +70541|611122|36147|1|13|13430.17|0.08|0.04|A|F|1994-02-18|1994-02-01|1994-03-12|TAKE BACK RETURN|TRUCK|uests. express theodolites unwind | +70541|112809|316|2|10|18218.00|0.08|0.04|A|F|1994-03-01|1994-01-23|1994-03-07|DELIVER IN PERSON|AIR|s. slyly furious accounts cajole | +70541|969830|19831|3|31|58893.49|0.07|0.06|R|F|1994-01-20|1994-01-18|1994-01-21|COLLECT COD|AIR|nt theodolites integrate carefully reques| +70541|931094|6131|4|49|55127.45|0.01|0.08|R|F|1994-02-05|1994-02-22|1994-03-03|COLLECT COD|SHIP|ss frays. furiously b| +70541|882225|32226|5|31|37422.58|0.00|0.07|A|F|1994-02-02|1994-02-26|1994-02-05|TAKE BACK RETURN|REG AIR|g the blithely dogged| +70541|540443|40444|6|39|57853.38|0.07|0.01|R|F|1993-12-26|1994-02-14|1993-12-29|TAKE BACK RETURN|REG AIR|instructions promi| +70542|708746|21261|1|23|40358.33|0.00|0.00|R|F|1994-07-04|1994-05-19|1994-07-13|NONE|FOB|o the fluffily| +70542|890682|28234|2|29|48506.56|0.09|0.03|A|F|1994-07-18|1994-05-19|1994-08-06|COLLECT COD|REG AIR|uietly. slow depende| +70542|677343|2370|3|24|31687.44|0.06|0.04|A|F|1994-07-10|1994-05-12|1994-07-29|NONE|FOB| frets whitho| +70542|88181|13184|4|36|42090.48|0.00|0.05|R|F|1994-04-05|1994-05-18|1994-04-17|TAKE BACK RETURN|REG AIR| affix furiously above the slyly regular | +70543|617576|5113|1|47|70196.38|0.07|0.03|N|O|1997-10-16|1997-12-01|1997-10-19|DELIVER IN PERSON|TRUCK|efully unusual dep| +70568|287305|49811|1|26|33599.54|0.00|0.07|N|O|1997-02-11|1997-04-03|1997-02-28|TAKE BACK RETURN|SHIP|uring the final depos| +70568|732778|45293|2|50|90537.00|0.01|0.00|N|O|1997-05-26|1997-03-24|1997-06-04|DELIVER IN PERSON|AIR|ep; slyly ev| +70568|794588|19619|3|14|23555.70|0.06|0.07|N|O|1997-04-18|1997-03-30|1997-05-14|COLLECT COD|REG AIR|ously even packages can wake after the d| +70569|359019|9020|1|20|21560.00|0.10|0.04|N|O|1996-05-05|1996-05-15|1996-05-06|TAKE BACK RETURN|REG AIR|ts. dependenci| +70569|28831|41332|2|38|66873.54|0.06|0.04|N|O|1996-07-05|1996-06-01|1996-07-18|TAKE BACK RETURN|SHIP|eposits. pending packages| +70569|562531|37554|3|25|39837.75|0.10|0.07|N|O|1996-05-29|1996-06-04|1996-06-11|DELIVER IN PERSON|FOB|y ironic pains w| +70570|768645|6191|1|32|54835.52|0.00|0.06|N|O|1995-12-04|1996-01-30|1995-12-11|NONE|FOB|carefully ev| +70570|602320|14833|2|48|58669.92|0.06|0.05|N|O|1996-02-24|1996-01-29|1996-03-22|NONE|REG AIR|. quickly final | +70570|178010|15520|3|49|53312.49|0.07|0.05|N|O|1996-01-27|1996-01-31|1996-02-09|NONE|SHIP|riously. quickly regular theodolites w| +70570|807645|32678|4|41|63656.60|0.09|0.05|N|O|1996-02-27|1995-12-19|1996-03-02|TAKE BACK RETURN|SHIP|beans nag furiously along the regula| +70570|81642|31643|5|11|17860.04|0.07|0.06|N|O|1995-12-08|1996-01-06|1995-12-09|COLLECT COD|REG AIR|r courts play furiously above the requests| +70570|140895|28402|6|40|77435.60|0.00|0.07|N|O|1995-12-30|1996-01-04|1996-01-24|NONE|RAIL|ions cajole always behind the regular the| +70571|226083|26084|1|37|37335.59|0.06|0.01|N|O|1997-09-21|1997-11-24|1997-10-07|COLLECT COD|RAIL|riously never bold packages. | +70571|762688|25204|2|4|7002.60|0.02|0.02|N|O|1997-12-14|1997-10-14|1997-12-28|DELIVER IN PERSON|FOB|ns cajole ruthles| +70571|483694|33695|3|6|10066.02|0.06|0.06|N|O|1997-09-06|1997-10-07|1997-09-13|TAKE BACK RETURN|MAIL|ronic requests.| +70571|443171|18188|4|42|46794.30|0.06|0.08|N|O|1997-11-08|1997-11-08|1997-11-30|DELIVER IN PERSON|RAIL|cies haggle quickly carefully expre| +70571|369203|31711|5|46|58520.74|0.03|0.04|N|O|1997-09-08|1997-11-13|1997-10-06|COLLECT COD|AIR|. idle, steal| +70572|309526|47045|1|20|30710.20|0.04|0.07|R|F|1992-12-10|1992-11-16|1993-01-06|NONE|AIR| ironic patterns. regular pac| +70572|196319|46320|2|40|56612.40|0.00|0.01|A|F|1992-10-13|1992-10-11|1992-10-24|DELIVER IN PERSON|REG AIR|und the special packages. carefully iron| +70573|523204|35715|1|47|57677.46|0.01|0.05|N|O|1996-03-15|1996-04-26|1996-03-26|NONE|TRUCK|nder the quickly sp| +70573|484478|9497|2|35|51185.75|0.08|0.00|N|O|1996-06-19|1996-04-17|1996-07-12|NONE|RAIL|xpress, blithe warhorse| +70573|620014|45039|3|1|933.98|0.00|0.07|N|O|1996-03-30|1996-05-27|1996-04-11|NONE|SHIP|of the pinto | +70573|571597|46620|4|27|45051.39|0.08|0.01|N|O|1996-06-26|1996-04-14|1996-07-08|TAKE BACK RETURN|MAIL| packages cajole. unusual, final | +70573|827812|27813|5|45|78289.65|0.04|0.06|N|O|1996-06-13|1996-05-29|1996-07-12|DELIVER IN PERSON|TRUCK|special pinto beans. slyly ironic tithes s| +70574|173503|48510|1|31|48871.50|0.07|0.07|A|F|1992-03-08|1992-04-03|1992-03-28|NONE|REG AIR|g requests impress after the quickl| +70574|49588|12089|2|33|50740.14|0.06|0.05|R|F|1992-04-07|1992-04-08|1992-04-16|NONE|RAIL|dependencies haggle. final, ironic deposits| +70574|417697|30206|3|10|16146.70|0.06|0.01|R|F|1992-03-20|1992-03-15|1992-04-03|COLLECT COD|FOB|thely fina| +70574|229661|4670|4|23|36584.95|0.00|0.02|R|F|1992-03-15|1992-03-16|1992-04-13|NONE|TRUCK|final packages. silent ideas aff| +70575|796564|34110|1|31|51476.43|0.02|0.05|N|O|1995-09-20|1995-09-11|1995-10-03|COLLECT COD|FOB|d fluffily. carefully ruthless acc| +70575|850188|37740|2|34|38696.76|0.05|0.00|N|O|1995-11-16|1995-09-23|1995-11-20|COLLECT COD|SHIP|ily alongside of the furiously regul| +70600|782259|7290|1|35|46942.70|0.07|0.08|A|F|1992-01-16|1992-03-21|1992-02-14|DELIVER IN PERSON|SHIP|posits engage care| +70600|426135|1152|2|7|7427.77|0.00|0.04|A|F|1992-02-07|1992-04-05|1992-03-03|DELIVER IN PERSON|REG AIR|uses nag furiously furiously idle re| +70601|262617|25123|1|1|1579.60|0.03|0.06|R|F|1993-08-25|1993-08-21|1993-09-04|COLLECT COD|FOB|t about the express asymptotes-- furiou| +70601|792173|17204|2|46|58196.44|0.08|0.06|A|F|1993-08-16|1993-08-05|1993-09-09|NONE|MAIL|usly final foxes are furiously ideas. | +70601|38384|885|3|38|50250.44|0.03|0.06|R|F|1993-08-08|1993-08-17|1993-08-23|NONE|REG AIR|lites; special ide| +70601|114729|39734|4|38|66261.36|0.07|0.08|R|F|1993-09-23|1993-08-16|1993-10-11|DELIVER IN PERSON|MAIL|ns nag according to the final accounts| +70601|233905|33906|5|1|1838.89|0.07|0.07|A|F|1993-06-15|1993-08-05|1993-07-14|TAKE BACK RETURN|REG AIR|s engage furiously| +70601|226571|1580|6|24|35941.44|0.07|0.03|R|F|1993-10-07|1993-07-24|1993-10-18|COLLECT COD|RAIL|gle quickly special instru| +70602|912246|49801|1|19|23905.80|0.04|0.05|R|F|1994-08-05|1994-07-18|1994-08-07|TAKE BACK RETURN|RAIL|ven ideas at the slyly regular packa| +70602|103245|40752|2|49|61163.76|0.05|0.07|A|F|1994-06-23|1994-09-04|1994-07-17|COLLECT COD|TRUCK| nag blithely accord| +70602|232078|19591|3|31|31311.86|0.02|0.07|R|F|1994-09-15|1994-07-26|1994-09-20|NONE|MAIL| courts use f| +70602|521267|46288|4|21|27053.04|0.10|0.05|A|F|1994-07-10|1994-08-15|1994-08-09|NONE|REG AIR|slyly alongside of the caref| +70602|931932|31933|5|2|3927.78|0.02|0.06|A|F|1994-06-26|1994-09-08|1994-07-12|NONE|REG AIR|eposits haggle furiously. slyly | +70602|973203|23204|6|36|45941.76|0.10|0.08|A|F|1994-09-21|1994-08-16|1994-10-20|NONE|FOB|usual accounts across the ca| +70602|619568|19569|7|19|28263.07|0.08|0.07|A|F|1994-07-28|1994-08-23|1994-08-15|NONE|AIR|x. packages along th| +70603|70797|33299|1|5|8838.95|0.06|0.04|N|O|1997-04-04|1997-03-13|1997-04-28|DELIVER IN PERSON|MAIL|uses. blithely express foxes about the even| +70603|880118|42636|2|7|7686.49|0.09|0.08|N|O|1997-02-19|1997-02-16|1997-03-10|DELIVER IN PERSON|FOB|y ruthlessly re| +70603|130513|5518|3|39|60196.89|0.00|0.07|N|O|1997-02-23|1997-01-25|1997-03-19|NONE|AIR|usly unusual foxes.| +70604|606150|31175|1|27|28515.24|0.06|0.05|N|O|1996-06-11|1996-04-29|1996-07-11|NONE|MAIL|e slyly. fluffily bold requ| +70604|549490|12001|2|14|21552.58|0.09|0.04|N|O|1996-03-30|1996-04-24|1996-03-31|NONE|REG AIR|ckly bold dependencies e| +70604|275158|169|3|1|1133.14|0.08|0.01|N|O|1996-04-17|1996-04-24|1996-04-24|COLLECT COD|FOB| platelets along the accounts grow express | +70604|565219|40242|4|2|2568.38|0.03|0.04|N|O|1996-06-14|1996-05-09|1996-07-02|DELIVER IN PERSON|SHIP| fluffy packages are blithe| +70604|626158|26159|5|39|42280.68|0.06|0.02|N|O|1996-03-29|1996-04-30|1996-04-10|TAKE BACK RETURN|FOB|equests. ca| +70604|831508|31509|6|14|20152.44|0.09|0.01|N|O|1996-04-08|1996-04-08|1996-04-12|TAKE BACK RETURN|TRUCK|rash blithely about the carefully expr| +70604|147754|10257|7|45|81078.75|0.00|0.00|N|O|1996-03-07|1996-03-23|1996-03-19|DELIVER IN PERSON|AIR|the blithely even deposits play carefu| +70605|284732|34733|1|16|27467.52|0.07|0.06|R|F|1995-03-07|1995-02-08|1995-03-15|DELIVER IN PERSON|RAIL|furiously re| +70605|478971|41481|2|26|50698.70|0.01|0.05|R|F|1995-03-23|1995-01-18|1995-04-17|TAKE BACK RETURN|REG AIR|t the packag| +70605|57764|20266|3|42|72313.92|0.08|0.00|R|F|1994-12-19|1995-01-18|1994-12-23|DELIVER IN PERSON|RAIL|gle thinly sometimes fluffy| +70605|834286|21835|4|24|29285.76|0.01|0.05|R|F|1995-02-10|1995-02-23|1995-02-13|NONE|REG AIR|gainst the furiously | +70605|839160|39161|5|38|41766.56|0.08|0.01|R|F|1995-02-08|1995-01-17|1995-02-28|NONE|AIR| carefully regular i| +70606|7657|20158|1|14|21905.10|0.05|0.04|R|F|1992-10-01|1992-11-03|1992-10-28|DELIVER IN PERSON|TRUCK|symptotes cajole regular instr| +70606|690869|15896|2|1|1859.83|0.01|0.01|A|F|1992-10-16|1992-10-22|1992-10-26|COLLECT COD|RAIL|ffily pendin| +70606|419508|44525|3|4|5709.92|0.06|0.00|A|F|1992-10-26|1992-11-13|1992-10-30|TAKE BACK RETURN|FOB|ding attainments cajole regular, pe| +70607|915123|40160|1|34|38694.72|0.05|0.05|N|O|1997-12-30|1998-02-04|1998-01-22|TAKE BACK RETURN|TRUCK|iously unusual pa| +70607|466998|4526|2|38|74668.86|0.05|0.00|N|O|1998-01-02|1998-01-03|1998-01-17|NONE|MAIL|ternes affix quickly aga| +70607|832309|7342|3|3|3723.78|0.09|0.01|N|O|1997-12-23|1998-01-20|1998-01-16|DELIVER IN PERSON|TRUCK|kly ironic notornis. quickly| +70632|510710|35731|1|5|8603.45|0.05|0.01|N|O|1997-07-01|1997-07-01|1997-07-25|COLLECT COD|RAIL|ttainments d| +70632|495830|45831|2|30|54774.30|0.01|0.03|N|O|1997-07-26|1997-07-25|1997-08-20|TAKE BACK RETURN|REG AIR|alms. express, ironic acc| +70632|407057|19566|3|6|5784.18|0.06|0.01|N|O|1997-08-21|1997-06-28|1997-09-13|COLLECT COD|TRUCK|. carefully final accounts hag| +70632|398235|23250|4|24|31997.28|0.02|0.08|N|O|1997-07-16|1997-07-13|1997-07-19|TAKE BACK RETURN|SHIP|onic dependencies affix bl| +70632|123435|10942|5|19|27710.17|0.03|0.04|N|O|1997-05-24|1997-06-24|1997-06-13|DELIVER IN PERSON|AIR|across the ironic foxe| +70632|565119|15120|6|29|34338.61|0.07|0.04|N|O|1997-09-04|1997-07-01|1997-09-08|TAKE BACK RETURN|SHIP|final dependencies! ironic, ev| +70633|74644|49647|1|17|27516.88|0.06|0.07|N|O|1996-11-20|1996-11-19|1996-12-04|COLLECT COD|FOB|tes. blithely pending requests integrate | +70633|534795|34796|2|14|25616.78|0.10|0.06|N|O|1996-11-14|1996-11-04|1996-11-30|DELIVER IN PERSON|FOB|yly close requests. carefully regula| +70633|292890|42891|3|11|20711.68|0.09|0.04|N|O|1996-12-24|1996-12-07|1996-12-26|DELIVER IN PERSON|RAIL|al deposits. slyly ironic sauternes are| +70633|587569|12592|4|29|48039.66|0.04|0.08|N|O|1997-01-02|1996-12-22|1997-01-19|TAKE BACK RETURN|TRUCK|pending accounts. blithely even| +70633|260687|48203|5|12|19772.04|0.09|0.04|N|O|1996-12-27|1996-11-16|1997-01-19|NONE|SHIP| requests. carefully final ideas about t| +70633|352757|27772|6|24|43433.76|0.09|0.06|N|O|1996-12-22|1996-11-01|1997-01-15|TAKE BACK RETURN|REG AIR|y on the furiously ironic packages| +70634|437632|25157|1|18|28252.98|0.01|0.00|R|F|1994-09-12|1994-07-06|1994-09-17|DELIVER IN PERSON|SHIP| slyly express instructio| +70634|264547|2063|2|43|64995.79|0.01|0.05|A|F|1994-09-21|1994-07-18|1994-10-08|DELIVER IN PERSON|AIR| the regular dependencies. quickly bold | +70634|230196|17709|3|34|38290.12|0.09|0.07|R|F|1994-10-02|1994-08-10|1994-10-28|TAKE BACK RETURN|RAIL|ets. final instruct| +70634|892741|5259|4|34|58945.80|0.05|0.05|R|F|1994-08-26|1994-07-10|1994-09-24|NONE|TRUCK|blithely express deposits haggl| +70635|87890|12893|1|14|26290.46|0.02|0.04|R|F|1992-11-26|1992-11-09|1992-12-24|COLLECT COD|TRUCK|unts above the furiously ir| +70635|156471|18975|2|13|19857.11|0.05|0.05|A|F|1992-12-16|1992-10-16|1993-01-04|DELIVER IN PERSON|AIR|ound the quickly final| +70635|805032|42581|3|25|23424.75|0.02|0.08|R|F|1992-11-11|1992-10-20|1992-11-22|NONE|AIR|e quickly | +70635|159016|21520|4|7|7525.07|0.08|0.03|R|F|1992-09-17|1992-11-03|1992-09-30|COLLECT COD|REG AIR|o beans. thinly unusual packages | +70635|579309|41821|5|37|51366.36|0.10|0.04|A|F|1992-09-03|1992-11-01|1992-09-22|COLLECT COD|FOB|y along the express packa| +70635|444023|6532|6|5|4835.00|0.04|0.02|A|F|1992-11-17|1992-11-16|1992-12-12|NONE|AIR| excuses. carefu| +70636|168288|5798|1|28|37975.84|0.02|0.05|A|F|1992-08-30|1992-07-22|1992-09-25|COLLECT COD|AIR|theodolites. bold sauternes are. quickly fi| +70636|408449|8450|2|7|9501.94|0.02|0.04|A|F|1992-07-01|1992-07-23|1992-07-21|COLLECT COD|MAIL|hes are against the furiously regular th| +70637|433896|21421|1|7|12809.09|0.02|0.01|A|F|1994-02-23|1994-04-01|1994-03-08|TAKE BACK RETURN|FOB|ly quiet pinto beans affix slyly along the | +70637|481859|44369|2|22|40498.26|0.06|0.05|R|F|1994-02-12|1994-03-11|1994-03-10|COLLECT COD|SHIP|he slyly ironic instructions. theodolit| +70637|591365|16388|3|38|55340.92|0.04|0.06|A|F|1994-03-17|1994-03-25|1994-03-30|TAKE BACK RETURN|REG AIR| furiously. carefully ironic requ| +70637|67596|30098|4|6|9381.54|0.06|0.04|A|F|1994-04-01|1994-03-25|1994-04-29|NONE|TRUCK|ns run furiously above the furiously fi| +70637|78846|41348|5|44|80292.96|0.07|0.01|R|F|1994-01-24|1994-02-26|1994-02-01|NONE|SHIP| accounts. carefully final | +70637|152751|27758|6|12|21645.00|0.08|0.06|R|F|1994-02-15|1994-04-12|1994-02-27|TAKE BACK RETURN|SHIP| carefully above the carefu| +70637|278328|28329|7|42|54865.02|0.06|0.00|A|F|1994-04-12|1994-03-02|1994-05-03|COLLECT COD|RAIL|g to the blithely regular requests wake c| +70638|858160|33195|1|47|52551.64|0.10|0.04|N|O|1995-11-16|1995-12-31|1995-11-26|TAKE BACK RETURN|FOB|cross the final, bold instructio| +70638|93043|18046|2|8|8288.32|0.07|0.02|N|O|1996-01-14|1995-12-17|1996-01-24|NONE|SHIP|e final pinto beans wake qui| +70638|757306|19822|3|38|51804.26|0.10|0.06|N|O|1995-11-05|1995-11-23|1995-11-25|NONE|SHIP|. fluffily regular foxes are sl| +70638|25274|25275|4|6|7195.62|0.01|0.05|N|O|1995-12-16|1995-11-06|1995-12-18|DELIVER IN PERSON|FOB|ic instructions boost. blith| +70639|668247|18248|1|8|9721.68|0.03|0.03|A|F|1993-06-07|1993-07-08|1993-06-08|DELIVER IN PERSON|TRUCK|aggle above the slyly special pinto b| +70639|219435|19436|2|34|46050.28|0.04|0.01|R|F|1993-05-26|1993-06-14|1993-06-18|COLLECT COD|REG AIR|ording to the unusual, final instr| +70639|42018|17019|3|18|17280.18|0.03|0.03|A|F|1993-08-06|1993-07-12|1993-08-29|COLLECT COD|FOB|structions. silent | +70664|743496|43497|1|15|23091.90|0.03|0.00|A|F|1992-07-07|1992-06-18|1992-08-01|DELIVER IN PERSON|MAIL|tes engage qui| +70664|929347|4384|2|5|6881.50|0.10|0.02|R|F|1992-06-01|1992-06-29|1992-06-12|DELIVER IN PERSON|RAIL|ts wake stea| +70664|534036|21567|3|44|47080.44|0.04|0.08|A|F|1992-04-19|1992-05-16|1992-04-20|DELIVER IN PERSON|RAIL|areful platelets nag careful| +70665|215980|15981|1|21|39815.37|0.05|0.04|R|F|1994-05-29|1994-05-17|1994-06-18|DELIVER IN PERSON|AIR|against the carefully even platelets sle| +70665|964347|1905|2|31|43750.30|0.00|0.02|A|F|1994-07-28|1994-06-27|1994-08-11|DELIVER IN PERSON|MAIL|ideas are above| +70665|776535|26536|3|31|49956.50|0.06|0.00|A|F|1994-08-08|1994-06-02|1994-08-10|NONE|FOB|ular requests. packages| +70665|211373|36382|4|7|8990.52|0.04|0.02|R|F|1994-04-13|1994-05-30|1994-05-06|TAKE BACK RETURN|RAIL|the pending requests. regularly ex| +70665|544236|31767|5|49|62730.29|0.01|0.00|R|F|1994-06-21|1994-05-17|1994-06-26|NONE|AIR|ic packages. blithely ironic depende| +70665|958674|21194|6|29|50246.27|0.02|0.07|A|F|1994-04-21|1994-05-12|1994-05-10|DELIVER IN PERSON|MAIL|ctions. carefully regular| +70665|420286|32795|7|3|3618.78|0.05|0.06|R|F|1994-06-20|1994-07-06|1994-06-21|NONE|AIR|ructions. slyly careful asympt| +70666|746771|21800|1|42|76345.08|0.08|0.01|N|O|1998-05-18|1998-04-16|1998-05-19|COLLECT COD|RAIL|le slyly. slyly speci| +70666|966771|41810|2|29|53294.17|0.03|0.06|N|O|1998-05-06|1998-03-04|1998-06-04|DELIVER IN PERSON|TRUCK|ts. slyly unu| +70666|510822|10823|3|19|34823.20|0.02|0.01|N|O|1998-03-02|1998-03-23|1998-03-27|DELIVER IN PERSON|TRUCK|regular, regular requ| +70666|382674|7689|4|5|8783.30|0.02|0.01|N|O|1998-02-09|1998-03-15|1998-02-25|NONE|MAIL|ously along the regular req| +70666|589325|39326|5|19|26871.70|0.02|0.00|N|O|1998-04-14|1998-03-10|1998-04-30|NONE|FOB| regular instruction| +70666|774152|24153|6|21|25748.52|0.04|0.05|N|O|1998-03-02|1998-04-21|1998-03-06|NONE|TRUCK|tions sleep quickly a| +70666|166440|28944|7|32|48206.08|0.07|0.01|N|O|1998-02-19|1998-03-15|1998-03-11|COLLECT COD|REG AIR|sual foxes. unusual accounts are s| +70667|352853|27868|1|39|74327.76|0.10|0.01|R|F|1992-09-02|1992-10-26|1992-09-23|COLLECT COD|TRUCK|regular platelets. silent foxes c| +70667|385969|48477|2|47|96582.65|0.10|0.03|R|F|1992-12-05|1992-11-13|1992-12-28|TAKE BACK RETURN|AIR|ual ideas cajole carefu| +70667|967078|4636|3|23|26335.69|0.06|0.06|R|F|1992-08-22|1992-09-22|1992-09-05|DELIVER IN PERSON|TRUCK|kages across the carefully pending| +70667|671655|21656|4|30|48798.60|0.09|0.05|A|F|1992-10-08|1992-10-15|1992-10-25|COLLECT COD|SHIP|y blithely regular packag| +70667|504780|17291|5|1|1784.76|0.09|0.03|A|F|1992-11-21|1992-10-31|1992-12-11|NONE|MAIL|the quickly ironic pinto beans. s| +70667|828465|3498|6|17|23688.14|0.06|0.05|A|F|1992-09-01|1992-10-16|1992-09-18|NONE|RAIL|es. furiously spec| +70668|407066|32083|1|39|37948.56|0.05|0.06|N|O|1998-11-20|1998-10-12|1998-12-18|COLLECT COD|FOB|iously even accounts! slyly express r| +70669|475948|967|1|46|88500.32|0.05|0.02|R|F|1994-11-01|1994-11-02|1994-11-19|TAKE BACK RETURN|MAIL|multipliers. blithely final ideas wake u| +70669|251738|39254|2|27|45622.44|0.06|0.02|R|F|1994-12-16|1994-10-10|1995-01-12|NONE|AIR|ording to the final foxes. pen| +70669|946500|9019|3|14|21650.44|0.00|0.04|R|F|1994-11-18|1994-11-06|1994-11-27|COLLECT COD|RAIL|ly bold ideas. blithely expr| +70669|816149|28666|4|2|2130.20|0.01|0.06|A|F|1994-12-01|1994-10-31|1994-12-13|NONE|AIR|s. furiously bold | +70669|5905|43406|5|44|79679.60|0.05|0.05|A|F|1994-12-04|1994-11-28|1994-12-08|TAKE BACK RETURN|SHIP|above the quickly final packa| +70670|649154|11667|1|26|28681.12|0.09|0.01|N|O|1995-07-07|1995-06-06|1995-07-27|NONE|MAIL|ar dependencie| +70670|316844|16845|2|15|27912.45|0.09|0.03|N|O|1995-07-19|1995-05-12|1995-08-08|TAKE BACK RETURN|REG AIR|ages use carefully. slyly| +70670|183071|33072|3|39|45008.73|0.03|0.04|R|F|1995-04-05|1995-05-04|1995-04-08|COLLECT COD|TRUCK|even patterns wake | +70671|529409|41920|1|19|27329.22|0.09|0.00|N|O|1996-12-09|1997-02-08|1996-12-23|DELIVER IN PERSON|AIR| pinto beans sno| +70696|922199|22200|1|44|53730.60|0.02|0.05|N|O|1998-04-15|1998-04-25|1998-04-19|DELIVER IN PERSON|FOB|fully unusual somas haggle care| +70696|389180|39181|2|7|8884.19|0.00|0.03|N|O|1998-05-10|1998-06-05|1998-05-30|COLLECT COD|REG AIR|are slyly outside the bold, expres| +70697|464945|14946|1|37|70667.04|0.02|0.01|N|O|1996-08-05|1996-07-02|1996-08-16|COLLECT COD|MAIL|furiously re| +70697|315986|28493|2|35|70068.95|0.06|0.02|N|O|1996-04-11|1996-06-20|1996-05-07|TAKE BACK RETURN|RAIL|the ironic instruct| +70697|768714|18715|3|11|19609.48|0.03|0.02|N|O|1996-07-02|1996-05-29|1996-07-06|COLLECT COD|SHIP|y final accounts. bold asym| +70697|772401|34917|4|38|55988.06|0.05|0.03|N|O|1996-04-12|1996-06-16|1996-04-26|NONE|MAIL|ss the slyly special packages. | +70698|506724|6725|1|47|81342.90|0.10|0.06|N|O|1995-07-04|1995-06-15|1995-07-30|TAKE BACK RETURN|TRUCK|y unusual accounts after th| +70698|500841|13352|2|38|69989.16|0.04|0.00|N|O|1995-06-18|1995-05-23|1995-07-16|NONE|REG AIR|thely even a| +70698|631430|6455|3|8|10891.20|0.00|0.00|N|O|1995-06-29|1995-06-21|1995-07-26|TAKE BACK RETURN|REG AIR|lly unusual foxes haggle carefully above | +70698|432183|19708|4|7|7806.12|0.10|0.07|N|O|1995-07-31|1995-06-04|1995-08-21|DELIVER IN PERSON|TRUCK|s detect a| +70699|538620|26151|1|36|59709.60|0.00|0.07|R|F|1995-02-09|1995-01-23|1995-02-18|NONE|REG AIR|endencies. requests haggle. daringly re| +70699|582318|44830|2|20|28005.80|0.05|0.06|R|F|1994-12-28|1994-12-05|1995-01-06|DELIVER IN PERSON|MAIL|quests. carefull| +70699|12910|25411|3|21|38281.11|0.04|0.07|R|F|1994-10-30|1995-01-20|1994-11-25|DELIVER IN PERSON|RAIL|ssly along t| +70699|978066|28067|4|7|8008.14|0.07|0.04|A|F|1995-02-15|1994-12-24|1995-02-23|TAKE BACK RETURN|RAIL|the carefully fin| +70699|350037|12545|5|20|21740.40|0.01|0.08|A|F|1995-02-20|1994-12-02|1995-03-02|COLLECT COD|AIR|ependencies haggle slyly about the fluffi| +70700|570835|33347|1|48|91478.88|0.10|0.07|N|O|1996-05-27|1996-05-13|1996-06-12|DELIVER IN PERSON|RAIL|inments integrat| +70700|7781|32782|2|50|84439.00|0.09|0.04|N|O|1996-05-16|1996-03-30|1996-05-17|COLLECT COD|RAIL|g packages. slowly ironic packages wake| +70700|763816|38847|3|23|43234.94|0.00|0.03|N|O|1996-04-11|1996-05-02|1996-05-07|NONE|MAIL|y near the pending instructions. bli| +70700|438840|1349|4|5|8894.10|0.06|0.01|N|O|1996-06-04|1996-05-11|1996-06-10|DELIVER IN PERSON|SHIP|e final packages.| +70700|573005|23006|5|7|7545.86|0.04|0.06|N|O|1996-05-28|1996-05-10|1996-06-27|DELIVER IN PERSON|REG AIR|efully alongside of the q| +70701|513803|26314|1|39|70854.42|0.05|0.05|N|O|1997-02-22|1997-02-12|1997-03-03|COLLECT COD|MAIL|ggle. furiously regular instructions sle| +70701|481486|19014|2|29|42556.34|0.07|0.08|N|O|1997-03-29|1997-03-04|1997-04-05|COLLECT COD|FOB| slyly even packages about the qu| +70701|327961|40468|3|4|7955.80|0.04|0.05|N|O|1997-04-07|1997-01-31|1997-04-11|COLLECT COD|AIR| nag furiou| +70701|33434|45935|4|40|54697.20|0.05|0.01|N|O|1997-02-13|1997-03-23|1997-03-12|NONE|REG AIR|usual, unusual instructi| +70701|917520|17521|5|50|76874.00|0.08|0.03|N|O|1997-01-30|1997-02-14|1997-02-11|DELIVER IN PERSON|AIR|ang carefully until the furiously reg| +70701|745423|7938|6|36|52862.04|0.04|0.06|N|O|1997-03-09|1997-03-10|1997-03-27|DELIVER IN PERSON|FOB|platelets. never special platelets sleep. | +70701|322064|22065|7|48|52130.40|0.04|0.08|N|O|1997-02-17|1997-03-20|1997-03-01|COLLECT COD|MAIL|ses. carefully permanen| +70702|916138|16139|1|2|2308.18|0.09|0.01|A|F|1992-12-11|1992-11-11|1992-12-23|DELIVER IN PERSON|TRUCK|as cajole slyly | +70703|256580|19086|1|27|41487.39|0.07|0.07|R|F|1994-07-30|1994-07-27|1994-08-20|TAKE BACK RETURN|SHIP|inal requests might boost fu| +70703|332241|44748|2|11|14005.53|0.02|0.03|A|F|1994-09-15|1994-09-02|1994-09-29|DELIVER IN PERSON|RAIL|o the dependencies? furio| +70703|962800|25320|3|3|5588.28|0.07|0.00|A|F|1994-09-11|1994-09-16|1994-10-05|NONE|FOB|ronic pinto beans about t| +70703|769353|44384|4|16|22757.12|0.00|0.02|A|F|1994-09-13|1994-08-14|1994-09-14|NONE|TRUCK|y slyly among the express warth| +70703|510618|23129|5|46|74915.14|0.09|0.04|A|F|1994-07-09|1994-08-29|1994-08-02|NONE|AIR|gular, special theodolites.| +70728|235021|47526|1|46|43976.46|0.10|0.03|N|O|1995-12-27|1996-01-17|1996-01-17|DELIVER IN PERSON|REG AIR| slyly express platelets. | +70728|991419|41420|2|39|58904.43|0.08|0.07|N|O|1996-03-29|1996-02-23|1996-04-05|TAKE BACK RETURN|REG AIR| packages. furiously final | +70728|766198|28714|3|28|35396.48|0.09|0.00|N|O|1996-01-01|1996-01-04|1996-01-13|NONE|SHIP|theodolites| +70728|479375|29376|4|7|9480.45|0.01|0.02|N|O|1996-01-14|1996-01-31|1996-01-15|NONE|FOB|g excuses. carefully final instruc| +70728|840151|40152|5|27|29459.97|0.08|0.08|N|O|1996-03-09|1996-03-01|1996-03-26|NONE|RAIL|fully pending | +70728|402256|14765|6|15|17373.45|0.05|0.04|N|O|1995-12-15|1996-01-23|1996-01-13|DELIVER IN PERSON|RAIL| ironic, unusual| +70728|700612|38155|7|31|49989.98|0.09|0.05|N|O|1996-01-20|1996-02-25|1996-01-28|DELIVER IN PERSON|TRUCK|its breach across the blithe deposits. i| +70729|173731|36235|1|32|57751.36|0.10|0.05|R|F|1992-05-09|1992-06-17|1992-06-04|DELIVER IN PERSON|MAIL|heodolites x-ray acro| +70729|888414|13449|2|27|37863.99|0.07|0.02|A|F|1992-06-14|1992-05-29|1992-07-02|COLLECT COD|MAIL|oxes wake. slyly ironic pinto beans int| +70730|133773|46276|1|19|34328.63|0.01|0.07|N|O|1996-12-05|1996-12-07|1996-12-11|NONE|FOB|ckly unusual packages| +70730|314947|14948|2|33|64743.69|0.03|0.01|N|O|1996-11-06|1996-12-10|1996-12-01|TAKE BACK RETURN|FOB|riously regular packages. pend| +70730|300822|823|3|26|47393.06|0.02|0.04|N|O|1997-01-05|1996-12-10|1997-02-03|TAKE BACK RETURN|MAIL|nooze sometimes. regular, qui| +70730|899986|12504|4|17|33760.98|0.09|0.02|N|O|1997-01-09|1997-01-11|1997-02-03|NONE|AIR| furiously slyly special ac| +70731|367901|30409|1|50|98444.50|0.04|0.01|N|O|1995-11-02|1995-08-29|1995-11-27|COLLECT COD|TRUCK|he furiously ironic deposits. fina| +70731|304663|4664|2|35|58367.75|0.02|0.04|N|O|1995-09-05|1995-10-17|1995-09-14|COLLECT COD|AIR|to beans. carefully special | +70731|461639|11640|3|16|25609.76|0.08|0.00|N|O|1995-11-03|1995-09-20|1995-11-29|DELIVER IN PERSON|REG AIR|e carefully silent, even packages| +70731|763697|38728|4|9|15845.94|0.06|0.02|N|O|1995-10-21|1995-10-10|1995-10-23|TAKE BACK RETURN|TRUCK|after the sly packages-- instr| +70731|446998|46999|5|23|44734.31|0.10|0.02|N|O|1995-08-27|1995-09-01|1995-09-17|DELIVER IN PERSON|MAIL|al requests. asymptotes affix quickly| +70732|715602|28117|1|27|43674.39|0.05|0.01|R|F|1994-09-21|1994-10-18|1994-10-18|TAKE BACK RETURN|FOB|sly over the f| +70732|120813|8320|2|12|22005.72|0.07|0.07|R|F|1994-11-03|1994-09-30|1994-11-04|NONE|REG AIR|ptotes integra| +70732|492729|42730|3|15|25825.50|0.08|0.01|R|F|1994-08-20|1994-10-08|1994-08-24|COLLECT COD|FOB|g excuses. regular r| +70733|509334|46865|1|24|32239.44|0.10|0.03|A|F|1993-04-02|1993-04-15|1993-05-02|DELIVER IN PERSON|TRUCK|sleep slyly above the blithely | +70733|371781|9303|2|36|66699.72|0.02|0.05|A|F|1993-01-31|1993-04-09|1993-02-17|DELIVER IN PERSON|REG AIR|the carefully ironic | +70734|499104|24123|1|40|44123.20|0.10|0.06|N|O|1997-02-25|1997-01-05|1997-03-08|NONE|MAIL|e special, idle deposits. furiously | +70734|439800|39801|2|33|57412.74|0.09|0.08|N|O|1997-01-05|1996-12-06|1997-01-30|NONE|AIR| wake furiously. pending| +70734|715423|27938|3|30|43151.70|0.03|0.05|N|O|1997-02-15|1996-12-07|1997-02-25|NONE|MAIL|fully regula| +70734|112356|49863|4|8|10946.80|0.04|0.03|N|O|1996-12-23|1996-12-15|1997-01-12|COLLECT COD|REG AIR|to beans sleep carefully silent | +70734|366967|41982|5|25|50848.75|0.03|0.08|N|O|1997-02-17|1996-12-24|1997-03-01|DELIVER IN PERSON|MAIL| the even p| +70735|538987|38988|1|37|74960.52|0.04|0.01|R|F|1992-07-09|1992-06-30|1992-07-21|NONE|AIR| carefully pending platelets cajole dur| +70735|753410|3411|2|49|71705.62|0.10|0.02|R|F|1992-09-03|1992-06-10|1992-09-08|NONE|MAIL|olites use ironic pinto be| +70735|558861|8862|3|42|80633.28|0.08|0.05|A|F|1992-07-28|1992-07-25|1992-08-09|NONE|MAIL|ing, bold foxes above the blith| +70735|774617|49648|4|18|30448.44|0.08|0.00|R|F|1992-07-28|1992-07-09|1992-08-16|TAKE BACK RETURN|TRUCK|into beans between the even | +70735|979059|41579|5|21|23898.21|0.06|0.01|R|F|1992-05-26|1992-06-27|1992-06-01|DELIVER IN PERSON|AIR|ding accounts. quickly bold ideas are brave| +70735|29102|41603|6|5|5155.50|0.07|0.02|R|F|1992-08-14|1992-08-05|1992-08-28|TAKE BACK RETURN|REG AIR|into beans sleep furio| +70735|109613|47120|7|50|81130.50|0.07|0.05|R|F|1992-05-10|1992-07-25|1992-05-21|NONE|TRUCK| unusual account| +70760|250720|13226|1|37|61816.27|0.04|0.02|N|O|1995-09-19|1995-09-09|1995-09-27|NONE|FOB|ggle excuses. pinto beans det| +70760|837031|37032|2|50|48399.50|0.04|0.04|N|O|1995-10-23|1995-09-15|1995-10-30|DELIVER IN PERSON|SHIP|carefully ev| +70760|979818|29819|3|27|51239.79|0.04|0.00|N|O|1995-11-19|1995-09-13|1995-12-09|DELIVER IN PERSON|AIR|e carefully unusual deposi| +70760|787289|49805|4|41|56426.25|0.06|0.01|N|O|1995-11-08|1995-10-31|1995-12-05|COLLECT COD|FOB|quests affix carefully about the wa| +70760|961105|48663|5|4|4664.24|0.10|0.08|N|O|1995-08-28|1995-10-24|1995-09-26|TAKE BACK RETURN|REG AIR|cross the quickly reg| +70761|622954|22955|1|5|9384.60|0.04|0.01|N|O|1997-09-08|1997-09-02|1997-09-30|TAKE BACK RETURN|FOB|long the fluffily pendin| +70761|980719|5758|2|32|57589.44|0.02|0.08|N|O|1997-10-14|1997-10-11|1997-10-15|COLLECT COD|REG AIR|requests. furi| +70761|930406|17961|3|9|12927.24|0.07|0.04|N|O|1997-09-28|1997-10-19|1997-10-02|COLLECT COD|REG AIR|cial packages affix blithely above the even| +70762|606998|19511|1|22|41909.12|0.03|0.07|A|F|1994-11-08|1994-12-30|1994-12-07|NONE|RAIL|special, thin ideas according | +70762|805605|18122|2|3|4531.68|0.08|0.01|A|F|1995-02-14|1995-01-31|1995-03-16|TAKE BACK RETURN|FOB|packages. pending a| +70762|801612|39161|3|19|28757.83|0.10|0.07|R|F|1994-11-21|1995-01-31|1994-12-05|NONE|FOB|arls across the express | +70762|684258|46772|4|22|27328.84|0.06|0.08|R|F|1994-11-17|1995-01-15|1994-12-15|DELIVER IN PERSON|AIR|ounts grow quickly into | +70763|358353|33368|1|19|26815.46|0.04|0.02|R|F|1994-05-19|1994-04-27|1994-05-24|DELIVER IN PERSON|REG AIR|eas. accounts nag. p| +70763|825118|25119|2|40|41722.80|0.03|0.01|A|F|1994-02-23|1994-04-19|1994-03-19|COLLECT COD|REG AIR| doubt slyly final asymptot| +70763|746519|21548|3|48|75143.04|0.10|0.05|A|F|1994-04-23|1994-04-14|1994-05-21|COLLECT COD|MAIL|lar, silent requests. final fo| +70763|744194|19223|4|22|27239.52|0.01|0.07|A|F|1994-03-05|1994-04-03|1994-03-14|TAKE BACK RETURN|TRUCK|pinto beans according to th| +70763|664910|39937|5|37|69370.56|0.05|0.05|R|F|1994-05-31|1994-05-15|1994-06-08|COLLECT COD|RAIL|fully final foxe| +70764|801017|1018|1|11|10097.67|0.01|0.02|R|F|1993-12-16|1993-11-19|1994-01-12|NONE|TRUCK| slyly bold requests are fluffily. id| +70764|678722|16262|2|34|57823.46|0.05|0.08|R|F|1993-10-14|1993-11-01|1993-11-01|COLLECT COD|RAIL|detect! ironic, bold excuses wake blith| +70764|276977|39483|3|36|70342.56|0.06|0.04|R|F|1993-09-21|1993-11-18|1993-10-21|DELIVER IN PERSON|RAIL|- final foxes lo| +70764|147547|10050|4|38|60592.52|0.03|0.04|A|F|1993-09-20|1993-11-13|1993-10-01|COLLECT COD|RAIL|across the carefully bold excuses. reg| +70764|818644|43677|5|41|64066.60|0.04|0.01|R|F|1993-09-20|1993-10-28|1993-09-28|DELIVER IN PERSON|REG AIR|nal platelets boost carefully fi| +70765|74411|11915|1|16|22166.56|0.05|0.07|N|O|1995-08-26|1995-07-31|1995-09-25|TAKE BACK RETURN|FOB| quickly ironic packages | +70765|614426|39451|2|31|41552.09|0.00|0.04|N|O|1995-09-03|1995-07-09|1995-09-12|NONE|RAIL|onic, special dependencies wake| +70765|647129|34666|3|45|48424.05|0.05|0.01|N|O|1995-07-12|1995-08-07|1995-08-08|DELIVER IN PERSON|FOB|ent ideas. close, regu| +70765|280786|43292|4|19|33568.63|0.02|0.08|N|O|1995-08-25|1995-08-05|1995-09-12|COLLECT COD|MAIL|ely. slyly regular | +70765|153904|41414|5|4|7831.60|0.02|0.08|N|O|1995-09-23|1995-07-11|1995-10-23|TAKE BACK RETURN|FOB|egular deposits. carefully regular pin| +70765|653726|3727|6|34|57109.46|0.10|0.07|N|O|1995-10-02|1995-07-12|1995-10-26|COLLECT COD|SHIP|y furiously f| +70766|942567|30122|1|22|35409.44|0.08|0.05|N|O|1996-04-26|1996-03-03|1996-05-22|DELIVER IN PERSON|FOB| fluffily. regular, ironic plate| +70766|708303|33332|2|26|34093.02|0.05|0.08|N|O|1996-04-27|1996-03-21|1996-05-24|DELIVER IN PERSON|MAIL|ely ironic asymptotes a| +70766|433177|33178|3|41|45516.15|0.04|0.04|N|O|1996-01-08|1996-02-07|1996-01-20|NONE|AIR|ithely special requests-- furiously unus| +70766|396692|21707|4|22|39350.96|0.06|0.03|N|O|1996-02-04|1996-02-15|1996-02-21|TAKE BACK RETURN|REG AIR|ckages. dolphins wake furiously. unusua| +70766|200426|37939|5|35|46424.35|0.05|0.05|N|O|1996-02-23|1996-02-20|1996-03-20|TAKE BACK RETURN|FOB|quickly bold platel| +70766|553275|28298|6|47|62427.75|0.08|0.03|N|O|1996-01-22|1996-03-10|1996-02-14|NONE|TRUCK|ans cajole slyly slyly express accounts. u| +70766|891135|3653|7|45|50674.05|0.08|0.07|N|O|1996-04-28|1996-03-18|1996-05-03|DELIVER IN PERSON|AIR|yly regular f| +70767|295429|7935|1|50|71220.50|0.00|0.03|R|F|1994-04-11|1994-04-27|1994-04-15|DELIVER IN PERSON|REG AIR| ironic platel| +70792|928935|28936|1|49|96230.61|0.09|0.04|N|O|1997-02-15|1997-02-26|1997-03-09|DELIVER IN PERSON|MAIL|sly final accounts. blithely ironic req| +70792|594919|44920|2|33|66458.37|0.05|0.01|N|O|1997-01-16|1997-03-11|1997-01-30|NONE|RAIL|gular requests may haggle blithely regular| +70792|798055|23086|3|47|54191.94|0.10|0.03|N|O|1997-01-08|1997-01-14|1997-01-19|COLLECT COD|AIR|pinto beans. busily ironic accounts| +70793|655139|42679|1|15|16411.50|0.07|0.04|R|F|1994-06-12|1994-06-15|1994-06-22|DELIVER IN PERSON|AIR|pinto beans. pending, regular p| +70793|916024|16025|2|23|23919.54|0.04|0.07|A|F|1994-07-01|1994-06-18|1994-07-07|DELIVER IN PERSON|RAIL|slow excuses. blith| +70793|601177|1178|3|23|24797.22|0.03|0.05|R|F|1994-04-16|1994-06-09|1994-04-17|NONE|REG AIR|nding instructions about| +70793|977829|40349|4|7|13347.46|0.00|0.04|A|F|1994-04-17|1994-06-17|1994-05-08|NONE|RAIL|cajole entic| +70794|192698|30208|1|20|35813.80|0.10|0.04|N|O|1997-05-30|1997-05-10|1997-05-31|TAKE BACK RETURN|RAIL|gular deposits-- bold requests acro| +70794|660958|10959|2|10|19189.20|0.09|0.06|N|O|1997-05-22|1997-04-08|1997-06-21|NONE|FOB|ns sleep finally bold pack| +70794|711156|11157|3|19|22175.28|0.09|0.06|N|O|1997-04-15|1997-04-12|1997-05-05|NONE|FOB|fluffily f| +70794|397472|34994|4|37|58070.02|0.03|0.02|N|O|1997-06-23|1997-04-14|1997-07-11|NONE|MAIL|l theodolites are fluffily bold packages. | +70794|308217|20724|5|39|47782.80|0.09|0.04|N|O|1997-07-01|1997-04-30|1997-07-21|NONE|RAIL| are blithely quickly ir| +70794|197764|10268|6|13|24202.88|0.10|0.05|N|O|1997-06-23|1997-04-26|1997-07-18|COLLECT COD|RAIL| instructions w| +70795|543977|6488|1|35|70733.25|0.08|0.04|N|O|1997-09-29|1997-09-30|1997-10-07|DELIVER IN PERSON|MAIL|ng to the regular requests. furiously regu| +70795|616800|41825|2|7|12017.39|0.00|0.00|N|O|1997-10-17|1997-08-31|1997-10-31|TAKE BACK RETURN|REG AIR| slyly regular packages| +70795|543869|18890|3|24|45908.16|0.04|0.04|N|O|1997-09-08|1997-10-18|1997-09-18|TAKE BACK RETURN|REG AIR|hely bold foxes. carefully exp| +70795|804150|4151|4|39|41110.29|0.04|0.02|N|O|1997-11-09|1997-09-12|1997-11-15|NONE|REG AIR|e platelets. careful| +70796|412364|12365|1|3|3829.02|0.02|0.08|N|O|1997-07-17|1997-08-03|1997-07-30|NONE|AIR|eas. fluffily | +70796|600852|25877|2|46|80629.72|0.05|0.08|N|O|1997-10-05|1997-09-10|1997-11-02|NONE|RAIL|lithely bold packages. furiously ev| +70797|762162|24678|1|10|12241.30|0.06|0.08|R|F|1995-04-30|1995-05-21|1995-05-29|COLLECT COD|TRUCK| regular grouc| +70797|649884|49885|2|40|73354.00|0.05|0.06|N|F|1995-06-12|1995-05-26|1995-07-05|TAKE BACK RETURN|REG AIR|furiously express accounts a| +70797|584787|9810|3|5|9358.80|0.09|0.07|N|O|1995-08-14|1995-07-06|1995-08-30|TAKE BACK RETURN|FOB| platelets. regular deposits wake | +70797|507514|20025|4|46|69988.54|0.03|0.03|A|F|1995-05-28|1995-05-21|1995-06-06|DELIVER IN PERSON|REG AIR|latelets! blithely special ideas are fur| +70797|782409|32410|5|48|71585.76|0.04|0.06|N|O|1995-08-10|1995-07-06|1995-09-03|COLLECT COD|RAIL|packages detect decoys. qui| +70798|808927|46476|1|27|49568.76|0.09|0.01|N|O|1996-05-27|1996-04-26|1996-06-22|COLLECT COD|TRUCK|slyly across the carefully speci| +70798|623950|11487|2|31|58091.52|0.07|0.08|N|O|1996-05-23|1996-03-26|1996-05-27|DELIVER IN PERSON|MAIL|packages. furiousl| +70799|113595|38600|1|16|25737.44|0.07|0.08|N|O|1998-06-20|1998-06-12|1998-06-23|TAKE BACK RETURN|FOB|ckages. even depo| +70799|189460|14467|2|7|10846.22|0.03|0.01|N|O|1998-07-18|1998-05-30|1998-08-06|TAKE BACK RETURN|AIR|ecial theodolites during | +70824|610554|23067|1|9|13180.68|0.06|0.00|A|F|1994-03-25|1994-03-25|1994-03-31|DELIVER IN PERSON|AIR| requests haggle at the regular, unusual| +70824|574711|12245|2|5|8928.45|0.05|0.03|A|F|1994-04-13|1994-04-09|1994-04-19|COLLECT COD|TRUCK| carefully r| +70825|823386|48419|1|10|13093.40|0.02|0.05|R|F|1992-08-13|1992-08-17|1992-08-19|DELIVER IN PERSON|REG AIR|ar packages kindle f| +70825|634993|34994|2|17|32775.32|0.05|0.01|R|F|1992-07-18|1992-07-24|1992-08-02|NONE|MAIL|s. even, unusual theodolites maintai| +70825|316696|4215|3|18|30828.24|0.01|0.02|A|F|1992-06-09|1992-07-15|1992-06-27|DELIVER IN PERSON|REG AIR|ong the slyly bold foxes sublate carefu| +70825|704890|4891|4|5|9474.30|0.01|0.05|A|F|1992-08-04|1992-08-29|1992-08-13|DELIVER IN PERSON|AIR|ccounts cajole! regular ac| +70825|78467|40969|5|19|27463.74|0.04|0.01|R|F|1992-08-29|1992-07-26|1992-09-11|TAKE BACK RETURN|TRUCK|slyly idle deposits sleep quickly permane| +70825|790829|15860|6|26|49914.54|0.02|0.08|A|F|1992-06-10|1992-08-15|1992-07-04|TAKE BACK RETURN|MAIL|ake furiously f| +70826|137039|37040|1|10|10760.30|0.09|0.05|N|O|1997-08-12|1997-07-29|1997-09-06|DELIVER IN PERSON|SHIP|may wake quickly quietly final p| +70826|197854|22861|2|32|62459.20|0.06|0.07|N|O|1997-08-24|1997-07-21|1997-09-21|TAKE BACK RETURN|FOB|nic requests. bold idea| +70827|702916|40459|1|43|82511.84|0.04|0.01|N|O|1997-04-18|1997-03-21|1997-04-30|DELIVER IN PERSON|SHIP|sual requests integrate. final soma| +70827|900179|37734|2|16|18866.08|0.00|0.04|N|O|1997-02-05|1997-04-10|1997-02-06|NONE|SHIP|ironic instructi| +70827|303242|15749|3|44|54790.12|0.03|0.04|N|O|1997-03-20|1997-02-24|1997-03-25|DELIVER IN PERSON|TRUCK|sly across the unusual, p| +70827|582134|32135|4|13|15809.43|0.00|0.07|N|O|1997-03-23|1997-04-13|1997-04-01|DELIVER IN PERSON|MAIL|mptotes. fluf| +70827|926026|26027|5|30|31559.40|0.00|0.02|N|O|1997-03-31|1997-03-28|1997-04-04|NONE|RAIL|lithely ironic accounts among the| +70827|712129|49672|6|12|13693.08|0.04|0.07|N|O|1997-04-09|1997-03-11|1997-04-24|NONE|MAIL|osits. blithely bold req| +70827|743251|43252|7|44|56945.68|0.06|0.03|N|O|1997-04-25|1997-04-03|1997-05-07|NONE|SHIP|lly final dependencies around the b| +70828|818719|18720|1|32|52405.44|0.05|0.05|R|F|1993-09-01|1993-09-01|1993-09-22|NONE|MAIL| regular accounts. unus| +70828|204646|4647|2|23|35664.49|0.05|0.05|R|F|1993-09-12|1993-09-05|1993-09-20|COLLECT COD|SHIP|sly even requests | +70828|469604|44623|3|44|69237.52|0.04|0.03|A|F|1993-08-05|1993-09-17|1993-08-17|TAKE BACK RETURN|FOB|fully fluffy requests. bold, pen| +70829|206836|44349|1|22|38342.04|0.05|0.07|A|F|1994-04-08|1994-03-06|1994-04-15|COLLECT COD|TRUCK|es. furiously final | +70829|283890|8901|2|29|54342.52|0.08|0.05|R|F|1994-04-05|1994-03-12|1994-04-13|COLLECT COD|MAIL|the carefully ironic pinto beans integra| +70830|419120|44137|1|1|1039.10|0.06|0.08|N|O|1997-01-15|1997-01-12|1997-02-12|TAKE BACK RETURN|SHIP|ffily pending accounts haggle furi| +70830|137677|25184|2|39|66872.13|0.01|0.03|N|O|1997-03-19|1997-02-21|1997-04-16|COLLECT COD|RAIL|ounts boost| +70830|933974|21529|3|22|44174.46|0.04|0.06|N|O|1997-03-18|1997-01-07|1997-04-05|DELIVER IN PERSON|TRUCK| special ideas. slyly special | +70830|286378|48884|4|25|34109.00|0.09|0.03|N|O|1997-01-12|1997-02-02|1997-01-15|TAKE BACK RETURN|MAIL|osits accordin| +70830|138737|26244|5|7|12430.11|0.07|0.05|N|O|1997-01-01|1997-02-02|1997-01-03|NONE|MAIL|he furiously ironic accounts use slyly fi| +70831|127801|2806|1|12|21945.60|0.07|0.05|N|O|1997-10-19|1997-09-24|1997-10-22|DELIVER IN PERSON|FOB|sits. pending instr| +70856|33464|8465|1|41|57295.86|0.00|0.00|A|F|1995-01-31|1995-01-29|1995-02-23|DELIVER IN PERSON|RAIL|al dependencies. blithely fi| +70856|425075|25076|2|14|14000.70|0.04|0.07|R|F|1995-02-21|1995-03-05|1995-03-15|TAKE BACK RETURN|FOB|atelets. furious deposits impress accordin| +70856|234060|34061|3|17|16898.85|0.09|0.01|R|F|1994-12-24|1995-02-28|1995-01-21|NONE|SHIP|ffix-- furiously careful | +70856|838419|38420|4|1|1357.37|0.05|0.07|A|F|1995-03-24|1995-02-10|1995-04-21|COLLECT COD|REG AIR|ter the carefully| +70856|294493|44494|5|41|60986.68|0.05|0.05|R|F|1995-03-20|1995-03-01|1995-04-09|NONE|REG AIR|ular foxes except the regular accoun| +70856|542790|17811|6|3|5498.31|0.05|0.01|R|F|1995-01-17|1995-02-07|1995-01-22|DELIVER IN PERSON|AIR|ly according to the slyly even deposit| +70857|445616|20633|1|32|49970.88|0.00|0.07|R|F|1993-08-11|1993-08-09|1993-09-02|COLLECT COD|FOB|osits sleep according t| +70857|456766|44294|2|34|58573.16|0.02|0.01|R|F|1993-06-05|1993-08-15|1993-06-19|DELIVER IN PERSON|REG AIR|xpress instructions wake at the b| +70857|849434|24467|3|35|48418.65|0.10|0.06|A|F|1993-08-28|1993-07-31|1993-09-23|DELIVER IN PERSON|RAIL| requests detect c| +70857|421975|46992|4|43|81568.85|0.06|0.01|A|F|1993-07-25|1993-07-19|1993-08-06|TAKE BACK RETURN|FOB|kly. ironic courts after the fluffily fi| +70857|133309|20816|5|8|10738.40|0.03|0.05|A|F|1993-07-12|1993-07-07|1993-07-14|NONE|TRUCK|eposits nag blit| +70857|522802|22803|6|27|49269.06|0.03|0.06|R|F|1993-07-21|1993-07-25|1993-08-20|TAKE BACK RETURN|FOB|usly final ins| +70857|727426|14969|7|10|14533.90|0.02|0.07|A|F|1993-08-10|1993-08-25|1993-08-21|TAKE BACK RETURN|AIR|ithely even depths; carefully express wate| +70858|839865|14898|1|47|84826.54|0.09|0.07|N|O|1998-09-02|1998-08-05|1998-09-07|DELIVER IN PERSON|REG AIR|ts. bold, final accounts sleep carefully | +70858|604574|29599|2|34|50270.36|0.09|0.05|N|O|1998-05-21|1998-08-18|1998-05-29|NONE|TRUCK|foxes wake carefully blithely| +70858|63413|917|3|4|5505.64|0.09|0.02|N|O|1998-09-03|1998-07-17|1998-10-01|NONE|FOB|ent accounts. platelets haggle-- requ| +70858|777146|14692|4|30|36693.30|0.02|0.00|N|O|1998-05-25|1998-07-17|1998-05-31|COLLECT COD|TRUCK|posits. quickly regu| +70859|279790|4801|1|22|38935.16|0.08|0.02|A|F|1992-10-26|1993-01-22|1992-11-15|NONE|RAIL|the regular requests. sp| +70860|837135|49652|1|30|32162.70|0.05|0.07|N|O|1996-07-01|1996-06-13|1996-07-15|TAKE BACK RETURN|FOB|fix unusual theodolites. final, ir| +70860|725489|38004|2|2|3028.90|0.09|0.00|N|O|1996-07-11|1996-06-09|1996-07-27|DELIVER IN PERSON|SHIP|es integrate deposits. regular deposits caj| +70860|290935|3441|3|16|30814.72|0.10|0.07|N|O|1996-07-16|1996-05-19|1996-07-22|COLLECT COD|MAIL|arefully. packages are. slyly final pac| +70861|282365|19881|1|49|66020.15|0.02|0.08|N|O|1995-07-06|1995-09-16|1995-08-05|NONE|AIR| special accounts. carefully regula| +70861|705503|43046|2|24|36203.28|0.06|0.04|N|O|1995-08-29|1995-09-26|1995-09-20|NONE|SHIP|s eat slyly. furiously ironic not| +70861|386101|36102|3|18|21367.62|0.03|0.01|N|O|1995-07-09|1995-09-09|1995-07-10|TAKE BACK RETURN|REG AIR|ckly along the carefully bold pinto beans.| +70861|187787|25297|4|12|22497.36|0.06|0.06|N|O|1995-09-24|1995-09-21|1995-10-10|COLLECT COD|MAIL| accounts. carefully silent theodolites| +70861|124428|24429|5|29|42120.18|0.09|0.04|N|O|1995-08-29|1995-09-21|1995-09-20|TAKE BACK RETURN|REG AIR|efully regul| +70861|248137|48138|6|20|21702.40|0.09|0.02|N|O|1995-07-29|1995-08-08|1995-08-25|DELIVER IN PERSON|SHIP| are after th| +70861|427448|2465|7|35|48139.70|0.06|0.08|N|O|1995-10-03|1995-08-17|1995-10-25|COLLECT COD|MAIL|special patterns sleep. fu| +70862|114859|14860|1|4|7495.40|0.01|0.04|N|O|1996-06-10|1996-06-25|1996-06-21|DELIVER IN PERSON|RAIL|ld deposits cajole blithely| +70862|419309|6834|2|24|29478.72|0.09|0.03|N|O|1996-04-01|1996-05-03|1996-04-30|TAKE BACK RETURN|REG AIR| believe furiously carefully u| +70862|312381|37394|3|37|51554.69|0.02|0.04|N|O|1996-05-22|1996-06-17|1996-05-25|TAKE BACK RETURN|RAIL|ending excuse| +70862|185432|47936|4|11|16691.73|0.09|0.02|N|O|1996-06-02|1996-06-15|1996-06-14|COLLECT COD|MAIL|out the slyly unusual inst| +70862|540483|2994|5|7|10664.22|0.05|0.01|N|O|1996-05-03|1996-05-16|1996-05-17|NONE|SHIP|furiously final instructions cajole| +70862|895551|45552|6|26|40209.26|0.06|0.07|N|O|1996-05-19|1996-05-18|1996-05-29|COLLECT COD|AIR|al packages| +70862|519431|31942|7|22|31909.02|0.04|0.00|N|O|1996-05-20|1996-05-09|1996-06-11|TAKE BACK RETURN|MAIL|ideas. fluffily regular| +70863|71721|46724|1|38|64323.36|0.01|0.07|N|O|1996-01-06|1996-03-19|1996-01-11|COLLECT COD|FOB|busy deposits sleep permanently | +70863|400011|12520|2|5|5555.00|0.01|0.02|N|O|1996-04-16|1996-02-20|1996-05-10|DELIVER IN PERSON|SHIP|jole against | +70888|303263|28276|1|44|55715.00|0.03|0.00|N|O|1998-09-18|1998-08-21|1998-10-18|COLLECT COD|REG AIR|ncies affix slyly. even, final| +70888|933523|8560|2|1|1556.48|0.06|0.08|N|O|1998-07-07|1998-07-01|1998-07-11|COLLECT COD|RAIL|uickly unusual packages cajole careful| +70888|709638|47181|3|20|32952.00|0.05|0.02|N|O|1998-06-01|1998-07-28|1998-06-08|COLLECT COD|TRUCK|y close pinto beans. furi| +70888|879885|42403|4|14|26107.76|0.01|0.08|N|O|1998-06-20|1998-07-12|1998-07-07|NONE|TRUCK|ag furiously according to th| +70889|678783|28784|1|45|79278.75|0.00|0.01|N|O|1996-09-23|1996-11-06|1996-10-15|NONE|SHIP|ular, regular| +70889|291267|41268|2|48|60396.00|0.09|0.03|N|O|1996-11-07|1996-10-17|1996-11-09|NONE|TRUCK|ly close foxes. | +70889|313353|872|3|16|21861.44|0.08|0.08|N|O|1996-12-17|1996-11-03|1997-01-06|COLLECT COD|TRUCK|y: furiously final notornis wake furi| +70889|512795|12796|4|10|18077.70|0.03|0.03|N|O|1996-11-23|1996-09-25|1996-12-08|COLLECT COD|MAIL|ffily special dolphins cajole carefully r| +70890|549643|37174|1|29|49085.98|0.06|0.02|N|O|1996-03-03|1996-02-23|1996-03-10|NONE|MAIL|ely even accounts. bold requests mi| +70891|219255|6768|1|17|19962.08|0.07|0.00|A|F|1995-05-12|1995-06-07|1995-06-10|NONE|REG AIR|es. idle accounts shall haggle c| +70891|7617|45118|2|42|64033.62|0.06|0.07|N|F|1995-06-07|1995-07-04|1995-06-20|DELIVER IN PERSON|TRUCK|blithely express pi| +70891|12048|37049|3|41|39361.64|0.04|0.03|N|O|1995-07-08|1995-07-05|1995-07-15|DELIVER IN PERSON|REG AIR|odolites wake quickly aga| +70892|25972|13473|1|3|5693.91|0.10|0.02|R|F|1993-05-15|1993-07-15|1993-05-22|COLLECT COD|TRUCK|quests. slyly unusual packages | +70892|500336|37867|2|5|6681.55|0.05|0.00|A|F|1993-07-23|1993-06-18|1993-08-10|NONE|TRUCK|riously regular foxes across the fina| +70892|135781|23288|3|35|63587.30|0.04|0.01|A|F|1993-08-06|1993-06-17|1993-08-22|DELIVER IN PERSON|MAIL|y final requests. fluffily regular | +70893|838514|38515|1|6|8714.82|0.08|0.03|N|O|1996-06-16|1996-05-19|1996-07-10|NONE|REG AIR| packages. ca| +70893|898703|36255|2|22|37436.52|0.04|0.07|N|O|1996-05-06|1996-06-06|1996-05-27|COLLECT COD|SHIP|ts are blithely pinto beans. furiousl| +70893|500914|38445|3|11|21063.79|0.01|0.06|N|O|1996-03-17|1996-05-18|1996-03-21|TAKE BACK RETURN|SHIP|gainst the caref| +70893|860788|23306|4|16|27979.84|0.09|0.02|N|O|1996-07-08|1996-04-29|1996-07-24|NONE|FOB|ly even requests grow throughout the | +70893|256407|43923|5|24|32721.36|0.06|0.04|N|O|1996-06-15|1996-04-15|1996-07-13|DELIVER IN PERSON|MAIL|refully despite the even| +70893|421254|21255|6|50|58761.50|0.08|0.08|N|O|1996-07-01|1996-04-08|1996-07-19|NONE|REG AIR|e, ironic i| +70893|8651|33652|7|24|37431.60|0.03|0.06|N|O|1996-05-05|1996-06-04|1996-05-10|NONE|MAIL| slyly furiously ironic foxes. fluf| +70894|392184|42185|1|20|25523.40|0.08|0.00|N|O|1996-10-10|1996-08-19|1996-11-05|DELIVER IN PERSON|SHIP|pendencies among t| +70894|428649|41158|2|3|4732.86|0.03|0.08|N|O|1996-11-05|1996-08-31|1996-11-15|DELIVER IN PERSON|AIR|ironic foxes poach slyly ab| +70895|195501|8005|1|23|36719.50|0.00|0.06|N|O|1997-11-01|1997-12-06|1997-11-18|COLLECT COD|RAIL|ependencies. final, regular packages will c| +70895|776437|38953|2|34|51455.60|0.05|0.00|N|O|1997-11-21|1997-11-27|1997-12-10|TAKE BACK RETURN|AIR|sly about the unusual, unusual sentiment| +70920|555782|30805|1|3|5513.28|0.06|0.04|N|O|1996-12-10|1997-02-05|1996-12-14|TAKE BACK RETURN|REG AIR|ffily special ideas cajole flu| +70920|25630|25631|2|45|70003.35|0.03|0.01|N|O|1997-02-18|1997-01-28|1997-03-09|NONE|RAIL|l ideas. accounts are. blith| +70920|760868|35899|3|26|50149.58|0.05|0.07|N|O|1996-12-30|1997-01-29|1997-01-17|TAKE BACK RETURN|REG AIR|inal pinto b| +70920|898846|48847|4|40|73792.00|0.00|0.08|N|O|1997-02-12|1997-02-15|1997-02-24|COLLECT COD|AIR| the fluffily regular pinto| +70920|895517|45518|5|37|55961.39|0.10|0.03|N|O|1996-12-12|1997-01-10|1996-12-18|COLLECT COD|TRUCK|luffily furiously r| +70920|951675|1676|6|30|51798.90|0.02|0.05|N|O|1996-12-13|1997-01-28|1996-12-18|TAKE BACK RETURN|RAIL|e fluffily even platelets. fur| +70920|794418|19449|7|29|43859.02|0.03|0.03|N|O|1997-03-22|1997-02-14|1997-04-12|TAKE BACK RETURN|TRUCK| are furiously| +70921|767518|5064|1|24|38051.52|0.09|0.06|N|O|1996-10-01|1996-08-28|1996-10-30|TAKE BACK RETURN|AIR|out the slyly even requests.| +70921|669213|31727|2|27|31918.86|0.09|0.08|N|O|1996-09-24|1996-09-27|1996-10-13|DELIVER IN PERSON|AIR|l requests are across the even, f| +70921|458588|46116|3|40|61862.40|0.07|0.03|N|O|1996-10-25|1996-09-21|1996-11-23|DELIVER IN PERSON|AIR|ounts solve blithely carefully| +70921|481694|6713|4|33|55297.11|0.05|0.04|N|O|1996-10-04|1996-10-02|1996-10-06|TAKE BACK RETURN|AIR|leep slyly. carefully regular platelets | +70921|825550|38067|5|45|66397.95|0.07|0.02|N|O|1996-11-06|1996-09-11|1996-11-19|DELIVER IN PERSON|RAIL|zzle furiously. furiously final ins| +70921|7880|32881|6|16|28606.08|0.03|0.03|N|O|1996-09-14|1996-10-12|1996-10-07|NONE|AIR| quickly even, regular pinto bean| +70922|572080|47103|1|49|56450.94|0.02|0.03|A|F|1994-01-23|1994-03-23|1994-02-16|DELIVER IN PERSON|REG AIR|unts. furiously si| +70922|934929|47448|2|14|27494.32|0.03|0.05|R|F|1994-02-25|1994-03-04|1994-03-24|NONE|AIR|aggle among the blithely regular pinto bea| +70922|338590|13603|3|31|50485.98|0.06|0.03|A|F|1994-01-26|1994-03-23|1994-02-06|TAKE BACK RETURN|AIR|thinly bold pinto | +70922|666806|29320|4|50|88638.50|0.00|0.00|A|F|1994-04-02|1994-03-15|1994-04-09|COLLECT COD|FOB|pecial pinto beans. pending pint| +70922|2958|2959|5|34|63272.30|0.10|0.03|A|F|1994-01-20|1994-03-01|1994-01-21|COLLECT COD|SHIP|x slyly. carefully special excuses haggle.| +70922|713341|884|6|42|56881.02|0.04|0.00|R|F|1994-04-28|1994-02-22|1994-05-19|NONE|AIR|unusual accounts cajole carefully carefu| +70922|107957|45464|7|31|60913.45|0.08|0.00|R|F|1994-02-18|1994-03-20|1994-03-02|DELIVER IN PERSON|RAIL|ain carefully ca| +70923|430348|42857|1|12|15339.84|0.01|0.02|R|F|1993-11-17|1993-12-16|1993-12-05|NONE|MAIL|ter the carefully sp| +70923|856132|18650|2|1|1088.09|0.06|0.07|R|F|1993-11-27|1993-12-25|1993-12-08|TAKE BACK RETURN|FOB|yly enticing dependencies. final| +70924|250496|38012|1|43|62198.64|0.00|0.06|R|F|1992-10-06|1992-08-23|1992-10-13|TAKE BACK RETURN|REG AIR|efully final f| +70924|84780|9783|2|35|61767.30|0.02|0.06|A|F|1992-08-21|1992-09-06|1992-08-29|DELIVER IN PERSON|MAIL|uests. furiously regular asy| +70924|897284|9802|3|48|61499.52|0.07|0.01|A|F|1992-10-27|1992-09-28|1992-11-12|NONE|MAIL|ole slyly. furiously final instructions ca| +70924|638432|945|4|34|46593.60|0.04|0.04|A|F|1992-11-16|1992-08-31|1992-11-26|TAKE BACK RETURN|REG AIR|es are at the bold account| +70924|117806|17807|5|41|74775.80|0.01|0.05|A|F|1992-09-14|1992-10-09|1992-10-03|NONE|FOB| x-ray; special theodolites are slyly | +70925|693290|43291|1|18|23098.68|0.09|0.06|N|O|1997-07-12|1997-07-19|1997-07-31|COLLECT COD|REG AIR|unts along the quickly final| +70925|117457|29960|2|5|7372.25|0.04|0.06|N|O|1997-08-01|1997-07-01|1997-08-16|COLLECT COD|REG AIR|pinto beans wake fluffily among the| +70925|99481|11983|3|15|22207.20|0.06|0.03|N|O|1997-05-11|1997-07-09|1997-06-01|NONE|AIR|lar packages haggle. blithel| +70925|964828|14829|4|9|17035.02|0.03|0.06|N|O|1997-07-02|1997-07-23|1997-07-27|COLLECT COD|FOB|lithely even request| +70925|851822|26857|5|47|83367.66|0.03|0.01|N|O|1997-07-24|1997-06-26|1997-07-26|TAKE BACK RETURN|AIR|arefully. regular re| +70925|558868|8869|6|29|55878.36|0.00|0.01|N|O|1997-05-24|1997-07-27|1997-05-26|COLLECT COD|TRUCK|bold, final | +70926|458043|20553|1|47|47047.94|0.02|0.07|A|F|1992-09-29|1992-10-17|1992-10-16|COLLECT COD|REG AIR|ly ironic waters integrate after the| +70926|319685|19686|2|10|17046.70|0.04|0.07|R|F|1992-09-01|1992-10-21|1992-09-25|COLLECT COD|TRUCK|he ironic, bold requests wak| +70926|930020|5057|3|40|41999.20|0.07|0.02|A|F|1992-09-27|1992-10-13|1992-10-06|NONE|AIR|anently qui| +70926|837004|24553|4|4|3763.84|0.06|0.04|A|F|1992-10-10|1992-10-06|1992-10-28|COLLECT COD|SHIP|ronic, reg| +70926|520011|45032|5|1|1030.99|0.10|0.04|R|F|1992-09-26|1992-09-10|1992-09-28|DELIVER IN PERSON|TRUCK|l requests. furiously ironic id| +70926|810698|10699|6|42|67563.30|0.08|0.00|R|F|1992-08-10|1992-10-14|1992-08-17|NONE|MAIL|, express req| +70927|135217|22724|1|40|50088.40|0.09|0.06|N|O|1997-08-16|1997-08-10|1997-08-31|COLLECT COD|SHIP|ions haggle quickly a| +70952|855489|5490|1|35|50555.40|0.09|0.04|N|O|1996-02-23|1996-03-20|1996-03-07|COLLECT COD|MAIL|lar packages are against | +70953|183911|8918|1|21|41893.11|0.08|0.03|N|O|1998-02-21|1998-04-02|1998-03-15|COLLECT COD|TRUCK| bold instructions. account| +70953|981753|19311|2|50|91735.50|0.02|0.05|N|O|1998-05-05|1998-04-27|1998-05-28|NONE|AIR|structions us| +70953|310056|10057|3|26|27717.04|0.00|0.08|N|O|1998-03-09|1998-03-19|1998-03-23|DELIVER IN PERSON|RAIL|otornis. dogg| +70953|106632|6633|4|37|60629.31|0.01|0.01|N|O|1998-05-19|1998-05-09|1998-06-07|COLLECT COD|SHIP|ss packages cajole furiously | +70953|162896|12897|5|3|5876.67|0.06|0.04|N|O|1998-03-16|1998-04-28|1998-04-01|DELIVER IN PERSON|REG AIR|ronic pinto beans; ironic requests | +70953|777450|14996|6|16|24438.72|0.09|0.03|N|O|1998-06-05|1998-04-11|1998-06-10|NONE|MAIL|ic deposits use. quickly unusual t| +70953|590408|2920|7|3|4495.14|0.05|0.00|N|O|1998-06-05|1998-03-18|1998-06-14|COLLECT COD|FOB|ular requests| +70954|980995|18553|1|25|51898.75|0.08|0.02|A|F|1994-01-25|1993-11-17|1994-02-24|COLLECT COD|TRUCK|ar requests a| +70955|47093|9594|1|28|29122.52|0.04|0.03|R|F|1994-02-14|1994-03-10|1994-02-17|COLLECT COD|RAIL|the furiously e| +70955|486077|36078|2|34|36143.70|0.04|0.08|R|F|1994-01-29|1994-03-23|1994-02-05|NONE|REG AIR|phs cajole fur| +70956|216289|41298|1|26|31337.02|0.01|0.00|R|F|1994-12-19|1995-01-12|1994-12-25|TAKE BACK RETURN|FOB|slyly even accounts are quickly a| +70956|160360|47870|2|8|11362.88|0.02|0.07|R|F|1994-12-24|1995-01-24|1995-01-11|COLLECT COD|AIR|e furiously even accounts. requests acros| +70956|160999|36006|3|50|102999.50|0.01|0.02|A|F|1995-02-24|1995-01-06|1995-03-02|COLLECT COD|FOB|layers slee| +70956|896437|46438|4|11|15767.29|0.09|0.07|R|F|1995-03-05|1994-12-11|1995-03-16|TAKE BACK RETURN|MAIL| carefully regular accounts are bli| +70956|411971|49496|5|41|77200.95|0.02|0.02|R|F|1994-12-27|1995-01-14|1995-01-07|DELIVER IN PERSON|SHIP|ake along the q| +70956|988031|551|6|43|48116.57|0.03|0.05|A|F|1994-11-23|1994-12-30|1994-12-17|DELIVER IN PERSON|FOB|ularly ironic accounts| +70956|832641|32642|7|3|4720.80|0.01|0.04|A|F|1994-12-09|1995-01-31|1994-12-25|TAKE BACK RETURN|SHIP|ly regular| +70957|184966|9973|1|38|77936.48|0.03|0.07|A|F|1993-02-18|1993-01-17|1993-02-24|TAKE BACK RETURN|RAIL|nic packages integrate blithely regul| +70957|719812|19813|2|1|1831.78|0.04|0.02|R|F|1993-02-05|1993-01-01|1993-02-27|DELIVER IN PERSON|RAIL|pliers detect acc| +70957|866918|41953|3|3|5654.61|0.01|0.07|A|F|1993-01-13|1993-01-12|1993-01-15|DELIVER IN PERSON|AIR| haggle fluffily across the | +70957|277911|40417|4|29|54778.10|0.08|0.06|R|F|1993-01-15|1993-01-23|1993-01-21|NONE|RAIL|furiously even packages sleep blithe| +70957|837093|12126|5|24|24721.20|0.01|0.01|R|F|1993-01-02|1993-01-16|1993-01-29|COLLECT COD|FOB|sts cajole at the packages. regular fo| +70957|17148|4649|6|14|14911.96|0.04|0.03|A|F|1993-01-26|1993-02-11|1993-02-21|NONE|SHIP|usual accounts are furiously fluffily reg| +70958|157325|32332|1|22|30411.04|0.01|0.01|R|F|1994-11-28|1994-12-21|1994-12-04|TAKE BACK RETURN|TRUCK|the carefully even deposits;| +70958|153553|28560|2|44|70688.20|0.04|0.08|A|F|1994-11-23|1994-12-17|1994-12-09|DELIVER IN PERSON|MAIL|ckly brave foxes cajole slyly unusual realm| +70958|752135|2136|3|29|34425.90|0.03|0.04|R|F|1994-12-06|1995-02-09|1994-12-28|NONE|REG AIR|slyly final packages. s| +70958|130388|17895|4|19|26949.22|0.01|0.01|A|F|1995-01-28|1994-12-26|1995-02-05|NONE|FOB|ackages. final ide| +70959|937854|25409|1|5|9459.05|0.05|0.06|R|F|1992-04-16|1992-03-18|1992-04-23|TAKE BACK RETURN|AIR|equests boost slyly. car| +70984|468127|30637|1|43|47089.30|0.10|0.06|A|F|1994-01-03|1994-02-05|1994-01-10|DELIVER IN PERSON|REG AIR|special packages. slyly regular sentim| +70984|800744|13261|2|47|77300.90|0.01|0.03|R|F|1994-01-05|1994-02-22|1994-01-14|NONE|MAIL|ns shall have to print slyly about | +70984|95248|32752|3|40|49729.60|0.08|0.03|R|F|1994-02-24|1994-03-25|1994-02-28|COLLECT COD|SHIP|ly furiously even war| +70984|829040|29041|4|12|11628.00|0.10|0.07|A|F|1994-01-26|1994-03-15|1994-01-29|TAKE BACK RETURN|FOB|althily after the slyly e| +70984|668630|18631|5|7|11190.20|0.05|0.02|A|F|1994-03-17|1994-02-13|1994-04-14|COLLECT COD|REG AIR|eful deposits breach slyl| +70984|662134|49674|6|25|27402.50|0.10|0.05|R|F|1994-02-27|1994-03-22|1994-03-21|DELIVER IN PERSON|REG AIR|kly ironic packages. slyly ste| +70985|509231|46762|1|29|35966.09|0.01|0.02|N|O|1997-09-09|1997-08-14|1997-09-27|DELIVER IN PERSON|REG AIR|lly regula| +70985|630148|30149|2|24|25874.64|0.02|0.05|N|O|1997-06-21|1997-07-14|1997-07-02|TAKE BACK RETURN|REG AIR|eodolites about t| +70985|887316|49834|3|14|18245.78|0.01|0.02|N|O|1997-07-08|1997-06-25|1997-08-04|COLLECT COD|MAIL|iously regular orbits boost sly| +70985|103532|28537|4|35|53743.55|0.02|0.06|N|O|1997-07-01|1997-08-01|1997-07-08|TAKE BACK RETURN|REG AIR|sly according to the ironic pinto beans| +70985|59742|34745|5|45|76578.30|0.09|0.08|N|O|1997-07-16|1997-06-30|1997-08-01|COLLECT COD|TRUCK| special gifts cajole furiously bl| +70985|79732|4735|6|1|1711.73|0.00|0.04|N|O|1997-07-04|1997-07-12|1997-07-26|TAKE BACK RETURN|AIR|s are carefully slyly stealthy packages. | +70986|472480|22481|1|19|27596.74|0.02|0.01|N|O|1997-01-17|1996-12-21|1997-01-18|DELIVER IN PERSON|TRUCK|sits cajole exc| +70986|958897|8898|2|50|97792.50|0.03|0.06|N|O|1996-11-17|1996-11-19|1996-12-04|NONE|FOB|ter the furiously regu| +70986|169047|6557|3|16|17856.64|0.04|0.03|N|O|1996-12-02|1996-11-10|1996-12-14|TAKE BACK RETURN|TRUCK|l deposits according t| +70986|163451|25955|4|22|33317.90|0.03|0.08|N|O|1996-12-27|1997-01-04|1997-01-26|DELIVER IN PERSON|MAIL| ironic packages against the excu| +70986|115654|15655|5|31|51759.15|0.05|0.03|N|O|1997-02-08|1996-11-14|1997-02-10|COLLECT COD|AIR|ests sleep caref| +70986|796162|8678|6|4|5032.52|0.03|0.02|N|O|1996-10-16|1996-11-23|1996-11-05|NONE|MAIL| deposits use quickly around th| +70987|68943|6447|1|7|13383.58|0.08|0.04|R|F|1994-02-21|1994-02-02|1994-03-09|COLLECT COD|RAIL|yers wake ab| +70987|721917|46946|2|12|23266.56|0.03|0.08|R|F|1993-12-27|1994-02-24|1994-01-05|DELIVER IN PERSON|REG AIR| to the carefully regular | +70987|256038|43554|3|15|14910.30|0.07|0.05|R|F|1993-12-19|1994-02-08|1993-12-27|NONE|RAIL|y regular i| +70987|217581|42590|4|21|31469.97|0.00|0.01|R|F|1994-01-30|1994-01-20|1994-02-21|DELIVER IN PERSON|MAIL|uctions nag | +70987|870888|33406|5|40|74353.60|0.04|0.06|R|F|1994-03-20|1994-02-01|1994-04-02|NONE|MAIL|lay carefully acr| +70987|10677|23178|6|11|17464.37|0.02|0.05|R|F|1994-03-20|1994-01-01|1994-03-27|DELIVER IN PERSON|AIR| accounts hang slyly-| +70987|439129|1638|7|11|11749.10|0.05|0.02|A|F|1993-12-07|1994-01-22|1993-12-19|NONE|REG AIR|cies among the caref| +70988|426880|14405|1|29|52398.94|0.08|0.08|N|O|1997-12-31|1998-02-03|1998-01-05|TAKE BACK RETURN|REG AIR| the special, spec| +70988|558259|45793|2|35|46103.05|0.02|0.07|N|O|1998-03-20|1998-01-17|1998-04-08|DELIVER IN PERSON|MAIL|eposits. fluffily even requests are| +70988|651576|26603|3|2|3055.08|0.06|0.06|N|O|1997-12-16|1998-01-02|1998-01-15|NONE|FOB|cross the requests wake| +70988|32371|7372|4|21|27370.77|0.07|0.02|N|O|1997-12-09|1998-02-18|1997-12-28|DELIVER IN PERSON|FOB|to wake about the bold requ| +70989|420598|8123|1|30|45557.10|0.09|0.04|A|F|1992-03-08|1992-04-17|1992-04-05|NONE|SHIP|the slyly regular theo| +70989|979841|17399|2|29|55703.20|0.03|0.00|A|F|1992-05-26|1992-04-23|1992-06-16|COLLECT COD|TRUCK|lets. furiously even dependenc| +70990|360894|10895|1|36|70375.68|0.08|0.03|R|F|1993-06-02|1993-07-30|1993-06-25|TAKE BACK RETURN|TRUCK|press requests are fluffily. fu| +70990|530328|17859|2|9|12224.70|0.01|0.08|R|F|1993-08-01|1993-07-08|1993-08-24|DELIVER IN PERSON|TRUCK|egular ideas integrate furious| +70990|210546|23051|3|29|42239.37|0.04|0.00|A|F|1993-08-03|1993-08-14|1993-08-18|DELIVER IN PERSON|SHIP|ent foxes are carefully! furiousl| +70990|633177|33178|4|49|54396.86|0.07|0.02|R|F|1993-06-21|1993-08-09|1993-07-04|DELIVER IN PERSON|SHIP| haggle after the regular, pending | +70990|801761|1762|5|18|29928.96|0.02|0.03|A|F|1993-06-16|1993-08-14|1993-07-13|NONE|FOB|elets affix daringly inside the silent,| +70991|512960|491|1|40|78917.60|0.05|0.05|N|O|1997-12-20|1998-01-29|1998-01-18|NONE|SHIP|arefully even accounts. fluffily| +70991|315492|27999|2|50|75374.00|0.01|0.06|N|O|1998-02-26|1998-02-26|1998-03-06|COLLECT COD|TRUCK|even ideas. fluffily f| +70991|459137|9138|3|11|12057.21|0.10|0.04|N|O|1997-12-30|1998-03-04|1998-01-19|TAKE BACK RETURN|SHIP|ckages above the slyly| +71016|561273|11274|1|47|62709.75|0.00|0.05|R|F|1992-06-01|1992-06-06|1992-06-19|COLLECT COD|AIR|ve the furiously bold dependencies!| +71017|561074|23586|1|29|32916.45|0.03|0.03|A|F|1994-07-06|1994-05-28|1994-08-03|COLLECT COD|REG AIR|y express platelets. pinto b| +71018|426729|14254|1|33|54638.10|0.07|0.02|R|F|1994-04-11|1994-03-23|1994-05-06|NONE|MAIL|lites are quickly idly pend| +71018|31774|44275|2|34|57996.18|0.10|0.07|R|F|1994-05-19|1994-04-29|1994-05-26|COLLECT COD|RAIL|fully regular deposits above the fu| +71018|17421|17422|3|30|40152.60|0.02|0.02|A|F|1994-03-27|1994-03-17|1994-03-31|TAKE BACK RETURN|SHIP|uts kindle furiously alon| +71018|789076|39077|4|4|4660.16|0.06|0.00|R|F|1994-04-27|1994-04-24|1994-05-06|TAKE BACK RETURN|REG AIR|dolites. bold requests haggle fluffily. pe| +71018|998656|11176|5|23|40356.03|0.04|0.01|A|F|1994-05-01|1994-03-19|1994-05-15|TAKE BACK RETURN|AIR|ngly furiously| +71018|399246|36768|6|25|33630.75|0.04|0.02|R|F|1994-02-13|1994-03-25|1994-02-18|COLLECT COD|SHIP|heodolites sleep about the b| +71019|618725|6262|1|50|82184.50|0.04|0.05|R|F|1993-12-26|1994-03-08|1994-01-21|NONE|REG AIR|ts against the even, express pa| +71019|908536|46091|2|8|12355.92|0.09|0.04|R|F|1993-12-20|1994-01-16|1993-12-22|COLLECT COD|SHIP|gular requests against the blithely | +71019|754819|42365|3|38|71203.64|0.01|0.08|R|F|1994-01-11|1994-03-07|1994-02-08|DELIVER IN PERSON|RAIL|s sleep quickly above the instruc| +71019|230498|43003|4|25|35712.00|0.05|0.00|A|F|1994-01-11|1994-02-22|1994-02-10|TAKE BACK RETURN|REG AIR|along the ir| +71019|968635|6193|5|29|49404.11|0.06|0.00|R|F|1994-02-05|1994-03-02|1994-03-05|DELIVER IN PERSON|TRUCK|ully regular packages t| +71019|836570|11603|6|16|24104.48|0.08|0.07|R|F|1994-02-06|1994-01-25|1994-02-11|TAKE BACK RETURN|RAIL|hely final, regular package| +71019|218118|30623|7|9|9324.90|0.07|0.08|R|F|1994-02-14|1994-02-22|1994-03-02|TAKE BACK RETURN|MAIL| enticingly brave requests. inst| +71020|895889|8407|1|24|45236.16|0.04|0.07|N|O|1998-09-04|1998-08-19|1998-09-11|DELIVER IN PERSON|RAIL|oss the ruthlessly ironic requests are q| +71020|205688|30697|2|44|70121.48|0.05|0.01|N|O|1998-10-20|1998-09-14|1998-11-02|TAKE BACK RETURN|AIR|courts cajole| +71020|983234|33235|3|4|5268.76|0.09|0.04|N|O|1998-10-23|1998-08-09|1998-11-14|NONE|FOB|uickly regular deposits boost q| +71020|202458|27467|4|8|10883.52|0.03|0.01|N|O|1998-09-24|1998-08-21|1998-09-29|DELIVER IN PERSON|REG AIR| accounts. slyly | +71021|943144|18181|1|39|46296.90|0.04|0.08|A|F|1992-11-02|1992-11-08|1992-11-17|TAKE BACK RETURN|AIR|ly packages. ironi| +71021|408806|21315|2|30|51443.40|0.04|0.07|A|F|1992-12-06|1992-12-01|1992-12-13|COLLECT COD|SHIP|s are carefully furi| +71021|786220|23766|3|24|31348.56|0.04|0.00|R|F|1992-12-30|1992-11-30|1993-01-07|TAKE BACK RETURN|MAIL|uriously unu| +71021|991762|29320|4|10|18537.20|0.06|0.05|A|F|1992-11-26|1992-11-24|1992-12-22|COLLECT COD|FOB|y. deposits alongside of the fluffily bo| +71021|527540|15071|5|42|65835.84|0.04|0.01|A|F|1992-11-24|1992-12-13|1992-12-17|TAKE BACK RETURN|TRUCK|uests. slyly ironic forg| +71021|364427|14428|6|43|64130.63|0.05|0.01|R|F|1992-11-18|1992-12-22|1992-12-03|TAKE BACK RETURN|RAIL|ets. packages nag quickly about the| +71021|920058|45095|7|15|16170.15|0.03|0.00|A|F|1992-11-10|1992-12-22|1992-11-29|DELIVER IN PERSON|FOB| quickly alongside of the | +71022|403620|28637|1|28|42660.80|0.04|0.01|A|F|1993-04-01|1993-04-20|1993-04-13|NONE|MAIL|hely regula| +71023|815337|27854|1|37|46334.73|0.06|0.04|N|O|1998-02-24|1998-04-16|1998-03-24|NONE|AIR|xpress deposits. final theodolites haggle.| +71023|366938|41953|2|16|32078.72|0.01|0.06|N|O|1998-05-05|1998-04-21|1998-05-28|NONE|AIR|ng the accounts are f| +71048|490985|3495|1|50|98798.00|0.09|0.04|R|F|1993-02-08|1993-03-10|1993-03-01|DELIVER IN PERSON|AIR|ctions use carefully pinto beans. boldly un| +71049|205384|30393|1|42|54153.54|0.08|0.04|N|O|1998-02-07|1998-02-12|1998-02-14|COLLECT COD|FOB|ests boost carefully ironic ideas| +71050|540973|3484|1|20|40279.00|0.01|0.00|A|F|1993-10-25|1993-10-10|1993-11-19|NONE|RAIL|ernes could cajole carefully alongside| +71050|123656|11163|2|5|8398.25|0.01|0.08|R|F|1993-10-01|1993-10-29|1993-10-14|COLLECT COD|MAIL|ffily regular theodo| +71050|273778|48789|3|48|84084.48|0.05|0.01|A|F|1993-09-11|1993-11-26|1993-10-09|TAKE BACK RETURN|SHIP| packages cajole fluffily. f| +71050|370709|33217|4|32|56950.08|0.07|0.00|A|F|1993-09-10|1993-10-13|1993-09-13|COLLECT COD|SHIP|ly ironic dependencies are alon| +71050|501857|1858|5|10|18588.30|0.02|0.04|R|F|1993-11-01|1993-11-08|1993-11-29|NONE|REG AIR|y even foxes haggle always pending reques| +71051|120317|32820|1|22|29420.82|0.09|0.02|R|F|1992-06-06|1992-07-01|1992-06-29|DELIVER IN PERSON|AIR| haggle furiously fluffily idle d| +71052|948407|48408|1|13|18919.68|0.09|0.03|R|F|1993-10-19|1993-12-20|1993-11-04|NONE|SHIP| accounts are on the regular | +71052|876377|38895|2|27|36539.91|0.08|0.03|A|F|1993-10-28|1993-11-18|1993-11-15|COLLECT COD|MAIL|arefully. c| +71053|489583|27111|1|13|20443.28|0.03|0.08|N|O|1996-04-05|1996-03-16|1996-04-30|NONE|TRUCK| unusual warhorses cajole b| +71054|416020|28529|1|15|14040.00|0.09|0.02|R|F|1994-06-03|1994-08-08|1994-06-16|TAKE BACK RETURN|RAIL| decoys. eve| +71055|934313|9350|1|10|13472.70|0.10|0.07|N|O|1997-10-09|1997-09-08|1997-11-07|DELIVER IN PERSON|RAIL|s. final, close | +71055|993249|30807|2|18|24159.60|0.08|0.08|N|O|1997-07-30|1997-09-14|1997-08-18|NONE|RAIL|y regular i| +71080|600877|878|1|6|10667.04|0.01|0.01|R|F|1993-08-05|1993-09-25|1993-08-19|COLLECT COD|TRUCK|l pinto beans wake furiously bold frets. sl| +71080|929782|17337|2|34|61599.16|0.10|0.01|R|F|1993-09-17|1993-09-25|1993-09-19|NONE|AIR|ely silent ideas mold slyly accordi| +71080|830161|42678|3|35|38189.20|0.03|0.05|A|F|1993-10-27|1993-08-29|1993-11-12|COLLECT COD|AIR|s doubt. furiou| +71080|513228|25739|4|24|29788.80|0.05|0.06|R|F|1993-08-07|1993-08-21|1993-08-24|NONE|REG AIR|ests promise. slyly expr| +71081|698475|23502|1|5|7367.20|0.01|0.02|N|O|1998-01-18|1998-02-24|1998-02-10|COLLECT COD|FOB|e fluffily. sly pinto beans are n| +71081|260769|23275|2|41|70919.75|0.10|0.08|N|O|1998-01-30|1998-03-07|1998-02-04|COLLECT COD|MAIL|ges. dependencies affix. | +71081|729971|42486|3|24|48022.56|0.04|0.05|N|O|1998-02-20|1998-03-20|1998-03-14|COLLECT COD|RAIL|wake blithely furiously ruth| +71081|606418|43955|4|28|37082.64|0.06|0.01|N|O|1998-01-27|1998-03-09|1998-02-23|NONE|MAIL|furiously regul| +71081|61784|36787|5|9|15712.02|0.04|0.03|N|O|1998-02-19|1998-03-24|1998-02-21|TAKE BACK RETURN|RAIL|r theodolite| +71081|386912|36913|6|47|93948.30|0.10|0.05|N|O|1998-04-07|1998-02-10|1998-04-28|COLLECT COD|AIR|ts are quickly carefully express | +71082|359719|22227|1|36|64033.20|0.05|0.07|A|F|1992-10-05|1992-08-25|1992-10-06|NONE|AIR|ns. furiously even p| +71082|782238|19784|2|11|14522.20|0.02|0.08|R|F|1992-08-16|1992-09-17|1992-09-08|NONE|AIR|eaves wake bl| +71082|66631|41634|3|2|3195.26|0.02|0.06|A|F|1992-09-11|1992-09-09|1992-10-11|COLLECT COD|TRUCK|re bravely according to the furio| +71082|858210|45762|4|40|46726.80|0.07|0.00|A|F|1992-07-04|1992-08-27|1992-07-12|COLLECT COD|SHIP|excuses detect fluffily regul| +71082|931481|44000|5|2|3024.88|0.04|0.01|R|F|1992-07-16|1992-09-17|1992-08-12|COLLECT COD|FOB| blithely regular instructions. sile| +71083|961937|49495|1|27|53970.03|0.03|0.03|N|O|1996-10-22|1996-08-12|1996-11-21|DELIVER IN PERSON|FOB|e blithely unusual | +71083|268171|30677|2|9|10252.44|0.10|0.06|N|O|1996-10-17|1996-08-04|1996-10-28|DELIVER IN PERSON|REG AIR|ully regular accounts haggle. f| +71083|141403|28910|3|35|50554.00|0.04|0.00|N|O|1996-08-28|1996-08-05|1996-09-23|TAKE BACK RETURN|FOB|ounts wake. carefully even deposits | +71084|584509|47021|1|4|6373.92|0.00|0.06|R|F|1994-07-27|1994-08-21|1994-08-03|DELIVER IN PERSON|REG AIR|s decoys. re| +71084|842349|4866|2|7|9039.10|0.09|0.01|A|F|1994-10-22|1994-09-23|1994-10-23|DELIVER IN PERSON|RAIL|ins. carefully regul| +71084|343039|18052|3|43|46526.86|0.05|0.00|A|F|1994-09-22|1994-10-10|1994-10-20|COLLECT COD|AIR|sleep fluffi| +71084|453697|41225|4|18|29712.06|0.03|0.06|R|F|1994-11-06|1994-09-04|1994-11-16|DELIVER IN PERSON|SHIP| affix along| +71084|274310|36816|5|24|30823.20|0.09|0.02|R|F|1994-09-11|1994-09-19|1994-10-09|NONE|RAIL|thely across the fluffily| +71085|221388|46397|1|5|6546.85|0.07|0.05|N|O|1998-01-22|1998-02-27|1998-02-11|TAKE BACK RETURN|SHIP|onic braids. bo| +71085|852560|2561|2|49|74113.48|0.04|0.04|N|O|1998-02-18|1998-02-21|1998-03-09|TAKE BACK RETURN|SHIP|ly bold theodolites. slyly express somas | +71085|975575|25576|3|32|52816.96|0.07|0.00|N|O|1998-01-15|1998-01-04|1998-02-10|COLLECT COD|AIR|nstructions eat carefully across the| +71085|488423|13442|4|33|46576.20|0.03|0.03|N|O|1998-03-31|1998-01-06|1998-04-01|DELIVER IN PERSON|RAIL|ongside of the blithely unusual asympto| +71086|403216|40741|1|26|29098.94|0.09|0.01|N|O|1995-07-12|1995-08-12|1995-07-28|NONE|REG AIR|permanent requests boo| +71086|838616|13649|2|43|66846.51|0.08|0.07|N|O|1995-08-01|1995-08-21|1995-08-27|COLLECT COD|MAIL|ar account| +71086|619033|31546|3|17|16184.00|0.05|0.07|N|O|1995-07-19|1995-09-21|1995-08-12|TAKE BACK RETURN|FOB|ly ironic instr| +71086|85202|35203|4|49|58172.80|0.08|0.03|N|O|1995-08-02|1995-08-31|1995-08-20|DELIVER IN PERSON|TRUCK| about the furiou| +71086|977870|40390|5|20|38956.60|0.10|0.00|N|O|1995-10-20|1995-08-30|1995-11-09|TAKE BACK RETURN|TRUCK|t. doggedly even ideas nag quic| +71087|865316|40351|1|13|16656.51|0.00|0.01|N|O|1998-11-11|1998-09-19|1998-11-21|NONE|FOB|ecial accounts. care| +71087|363363|885|2|15|21395.25|0.06|0.01|N|O|1998-07-18|1998-09-05|1998-07-31|COLLECT COD|REG AIR|sily. furiously special requests cajole abo| +71087|39794|2295|3|42|72819.18|0.05|0.07|N|O|1998-10-30|1998-10-09|1998-11-13|COLLECT COD|RAIL|sual deposits wake along| +71087|805148|5149|4|10|10531.00|0.10|0.05|N|O|1998-08-09|1998-08-27|1998-08-15|COLLECT COD|REG AIR| about the carefully iro| +71112|339892|2399|1|9|17386.92|0.02|0.03|R|F|1992-10-11|1992-09-07|1992-10-24|TAKE BACK RETURN|AIR|ing requests eat slyly along t| +71112|560260|22772|2|28|36966.72|0.01|0.02|A|F|1992-07-26|1992-08-06|1992-08-10|COLLECT COD|AIR|ld asymptotes wake expre| +71112|285359|22875|3|15|20165.10|0.00|0.04|A|F|1992-09-03|1992-08-29|1992-09-26|COLLECT COD|AIR|ole regular foxes. regular | +71112|19228|44229|4|19|21797.18|0.08|0.00|A|F|1992-06-27|1992-08-19|1992-07-09|DELIVER IN PERSON|TRUCK|ments haggle quickly f| +71113|429047|4064|1|29|28304.58|0.07|0.08|R|F|1993-06-09|1993-06-02|1993-06-30|NONE|REG AIR| furiously final accounts sleep car| +71114|780985|18531|1|45|92967.75|0.05|0.03|N|O|1995-10-05|1995-07-23|1995-10-12|TAKE BACK RETURN|SHIP|ounts. slyly special packages along | +71114|2459|2460|2|11|14975.95|0.09|0.04|N|O|1995-07-16|1995-08-31|1995-07-21|NONE|TRUCK|nal grouches. furi| +71114|319841|7360|3|10|18608.30|0.07|0.07|N|O|1995-08-10|1995-07-25|1995-08-22|COLLECT COD|REG AIR|lyly even theodolites boost quickly carefu| +71115|694485|44486|1|42|62136.90|0.02|0.08|A|F|1993-03-19|1993-03-02|1993-04-07|TAKE BACK RETURN|SHIP|nst the silent, fina| +71115|203294|40807|2|4|4789.12|0.09|0.04|R|F|1993-03-08|1993-04-01|1993-04-04|DELIVER IN PERSON|TRUCK|its. carefully f| +71115|756643|31674|3|17|28893.37|0.09|0.06|R|F|1993-01-20|1993-02-18|1993-02-02|COLLECT COD|MAIL|ly special packages ought to unwind a| +71116|219479|31984|1|26|36359.96|0.03|0.08|R|F|1992-04-10|1992-05-28|1992-05-05|NONE|SHIP|ly special requests. furio| +71117|71410|8914|1|23|31772.43|0.00|0.00|R|F|1993-12-26|1993-12-16|1994-01-06|TAKE BACK RETURN|SHIP|uickly regular instructions al| +71117|173711|48718|2|14|24985.94|0.04|0.08|A|F|1994-02-26|1994-01-09|1994-03-15|COLLECT COD|AIR|, express dep| +71117|548679|11190|3|20|34553.00|0.00|0.07|R|F|1994-01-31|1993-12-23|1994-02-23|DELIVER IN PERSON|AIR|carefully ironic package| +71117|647398|47399|4|37|49778.32|0.08|0.04|R|F|1993-11-18|1993-12-19|1993-11-26|COLLECT COD|REG AIR|. accounts against the packag| +71118|802403|39952|1|32|41771.52|0.03|0.06|N|O|1996-05-11|1996-05-25|1996-06-10|DELIVER IN PERSON|REG AIR|s. furiously silent theodolit| +71118|974028|36548|2|5|5509.90|0.06|0.06|N|O|1996-04-07|1996-04-09|1996-05-02|TAKE BACK RETURN|REG AIR|otes-- carefully final theodoli| +71119|80242|42744|1|48|58667.52|0.06|0.07|N|O|1997-09-05|1997-09-25|1997-09-10|COLLECT COD|AIR|gedly bold foxes are | +71119|627155|2180|2|22|23806.64|0.03|0.06|N|O|1997-10-02|1997-09-24|1997-10-06|DELIVER IN PERSON|AIR| requests haggle furiously. slyly f| +71144|348133|35652|1|11|12992.32|0.03|0.08|N|O|1998-04-28|1998-04-06|1998-05-27|COLLECT COD|SHIP|r accounts | +71145|560692|10693|1|10|17526.70|0.05|0.07|A|F|1995-04-04|1995-03-26|1995-04-30|COLLECT COD|REG AIR|nding theodolites. slyly special reques| +71145|541100|41101|2|38|43361.04|0.09|0.04|R|F|1995-04-01|1995-04-05|1995-04-14|NONE|MAIL|doze fluffily thro| +71146|529002|29003|1|21|21650.58|0.10|0.07|R|F|1992-06-19|1992-06-08|1992-06-25|COLLECT COD|SHIP|symptotes beyond the blithely regular c| +71146|920576|8131|2|50|79826.50|0.05|0.06|A|F|1992-05-09|1992-04-28|1992-05-15|NONE|TRUCK|lar, even pinto beans a| +71147|425836|853|1|26|45807.06|0.03|0.07|A|F|1993-10-22|1993-10-29|1993-10-28|NONE|RAIL|s alongside of the pend| +71147|13613|13614|2|20|30532.20|0.08|0.07|A|F|1993-10-22|1993-10-23|1993-10-31|NONE|AIR|ccounts. regular, furious inst| +71147|788073|13104|3|45|52246.80|0.00|0.01|R|F|1993-11-05|1993-10-24|1993-12-05|DELIVER IN PERSON|FOB|cross the fu| +71148|857868|20386|1|14|25561.48|0.00|0.00|R|F|1992-05-11|1992-06-10|1992-06-07|TAKE BACK RETURN|SHIP|ounts sleep quickly. ironically| +71148|183772|46276|2|5|9278.85|0.00|0.00|R|F|1992-04-30|1992-05-11|1992-05-06|COLLECT COD|TRUCK|y ironic foxes affi| +71148|654324|16838|3|35|44740.15|0.08|0.07|R|F|1992-06-21|1992-05-30|1992-07-02|DELIVER IN PERSON|REG AIR|ly. special, ironic foxes serve carefull| +71148|208005|8006|4|40|36519.60|0.10|0.00|A|F|1992-05-31|1992-05-13|1992-06-01|TAKE BACK RETURN|TRUCK|ng instructions| +71148|929102|29103|5|45|50897.70|0.03|0.05|A|F|1992-05-27|1992-06-03|1992-06-06|TAKE BACK RETURN|TRUCK|. final cour| +71149|850700|25735|1|36|59423.76|0.02|0.00|N|O|1997-08-22|1997-08-09|1997-09-10|DELIVER IN PERSON|MAIL| the carefully even packages use slyly quic| +71149|711891|11892|2|20|38057.20|0.06|0.06|N|O|1997-08-19|1997-09-19|1997-09-03|DELIVER IN PERSON|TRUCK|le furiously. | +71149|747639|35182|3|45|75897.00|0.03|0.05|N|O|1997-09-06|1997-09-26|1997-10-03|NONE|RAIL|ts sleep blithely. blithely even th| +71149|568663|43686|4|31|53680.84|0.02|0.00|N|O|1997-10-13|1997-09-29|1997-10-24|DELIVER IN PERSON|FOB|ly final ide| +71150|592009|4521|1|14|15413.72|0.09|0.06|N|O|1995-08-15|1995-08-08|1995-08-20|COLLECT COD|AIR| regular platelets. fluffily iro| +71150|889148|26700|2|42|47758.20|0.08|0.06|N|O|1995-07-26|1995-07-02|1995-08-05|TAKE BACK RETURN|REG AIR| quickly fin| +71150|904662|42217|3|48|79997.76|0.06|0.02|N|O|1995-07-21|1995-07-02|1995-08-14|TAKE BACK RETURN|TRUCK| blithely ironic accounts: | +71151|536324|36325|1|42|57132.60|0.04|0.03|R|F|1995-01-22|1994-12-13|1995-02-12|DELIVER IN PERSON|AIR|final packages a| +71151|984747|22305|2|20|36634.00|0.05|0.00|A|F|1995-01-19|1995-01-03|1995-01-24|COLLECT COD|MAIL| packages haggle finall| +71151|630840|18377|3|11|19478.91|0.09|0.01|R|F|1995-01-15|1994-12-13|1995-02-01|TAKE BACK RETURN|RAIL|pendencies; regular, regular requests| +71176|37533|34|1|2|2941.06|0.07|0.07|N|O|1996-01-19|1996-02-01|1996-01-25|TAKE BACK RETURN|REG AIR|the fluffily even packages. regular| +71176|802201|14718|2|33|36404.28|0.02|0.08|N|O|1996-04-17|1996-01-29|1996-05-09|DELIVER IN PERSON|AIR|e furiously regular accoun| +71176|583073|45585|3|33|38149.65|0.01|0.01|N|O|1996-03-21|1996-03-12|1996-04-17|DELIVER IN PERSON|AIR|inal escapades detect carefully final| +71176|704370|16885|4|13|17866.42|0.04|0.03|N|O|1996-04-14|1996-02-02|1996-04-23|DELIVER IN PERSON|MAIL|the pending hockey players. ca| +71176|338377|25896|5|28|39630.08|0.05|0.02|N|O|1996-03-02|1996-02-28|1996-03-26|TAKE BACK RETURN|SHIP|furiously pending requests. deposi| +71176|97457|34961|6|25|36361.25|0.00|0.05|N|O|1996-03-30|1996-02-19|1996-04-14|DELIVER IN PERSON|RAIL|ickly express ideas. blithely regular re| +71176|958533|8534|7|22|35012.78|0.09|0.01|N|O|1996-03-18|1996-03-11|1996-04-16|COLLECT COD|SHIP|around the bold, fi| +71177|60863|10864|1|43|78425.98|0.02|0.01|N|O|1998-08-04|1998-06-08|1998-08-15|COLLECT COD|MAIL|regular id| +71177|918241|43278|2|1|1259.20|0.04|0.06|N|O|1998-08-16|1998-06-02|1998-08-28|DELIVER IN PERSON|FOB|ly ironic foxes| +71177|874683|12235|3|30|49729.20|0.07|0.08|N|O|1998-05-03|1998-07-08|1998-05-26|NONE|RAIL| sleep across the carefu| +71177|796901|34447|4|16|31965.92|0.00|0.02|N|O|1998-06-04|1998-06-23|1998-07-04|DELIVER IN PERSON|REG AIR|carefully close accoun| +71177|510844|10845|5|9|16693.38|0.00|0.03|N|O|1998-05-29|1998-06-16|1998-06-27|TAKE BACK RETURN|MAIL|odolites. even, even pinto beans ha| +71177|744463|44464|6|28|42208.04|0.10|0.07|N|O|1998-05-22|1998-06-02|1998-06-07|COLLECT COD|TRUCK|und the slyly final accounts| +71178|141381|16386|1|27|38404.26|0.07|0.05|N|O|1996-04-26|1996-06-01|1996-05-05|NONE|MAIL|carefully final | +71178|186089|48593|2|10|11750.80|0.02|0.07|N|O|1996-07-03|1996-04-19|1996-07-04|TAKE BACK RETURN|SHIP|ly asymptotes. blithely regular requests | +71179|876966|2001|1|15|29143.80|0.10|0.01|N|O|1996-02-11|1996-02-24|1996-03-03|NONE|MAIL|to beans. bold depos| +71179|160081|22585|2|39|44502.12|0.10|0.07|N|O|1996-03-27|1996-03-25|1996-04-02|TAKE BACK RETURN|FOB|ve the carefully express dependencies. unus| +71179|467697|42716|3|46|76574.82|0.10|0.06|N|O|1996-02-08|1996-03-25|1996-02-25|NONE|AIR|ffily ironic packages. ironic pinto bea| +71179|578719|3742|4|37|66514.53|0.00|0.06|N|O|1996-01-22|1996-02-18|1996-02-06|NONE|SHIP|nic accounts | +71179|523568|48589|5|21|33422.34|0.09|0.08|N|O|1996-02-19|1996-02-25|1996-03-02|COLLECT COD|MAIL|as cajole carefully unusual, idle depos| +71180|178027|40531|1|48|53040.96|0.01|0.04|R|F|1994-08-25|1994-08-05|1994-09-05|NONE|FOB|e quickly against the furious foxes. fur| +71180|98449|10951|2|33|47765.52|0.05|0.08|A|F|1994-08-31|1994-07-26|1994-09-30|DELIVER IN PERSON|REG AIR|refully even as| +71180|631236|6261|3|34|39684.80|0.06|0.08|A|F|1994-06-28|1994-08-19|1994-07-15|COLLECT COD|AIR|y even asymptotes haggle slyly. excuses| +71180|167851|42858|4|27|51808.95|0.03|0.08|R|F|1994-07-09|1994-07-18|1994-07-25|DELIVER IN PERSON|MAIL|foxes. furiously special acco| +71181|520499|45520|1|25|37986.75|0.01|0.01|N|O|1996-09-24|1996-08-27|1996-10-19|NONE|REG AIR|fily silent dinos| +71181|19456|19457|2|34|46765.30|0.00|0.04|N|O|1996-09-10|1996-08-14|1996-10-02|COLLECT COD|SHIP|ckages bre| +71181|985755|10794|3|30|55221.30|0.08|0.01|N|O|1996-07-27|1996-09-03|1996-08-06|TAKE BACK RETURN|AIR| deposits sleep furiously final t| +71181|577849|15383|4|44|84780.08|0.06|0.00|N|O|1996-07-07|1996-08-02|1996-07-13|COLLECT COD|SHIP|press slyly furiou| +71181|894941|32493|5|6|11615.40|0.09|0.05|N|O|1996-08-23|1996-08-19|1996-09-02|DELIVER IN PERSON|TRUCK|excuses caj| +71182|118543|6050|1|38|59338.52|0.09|0.01|N|O|1996-06-30|1996-05-22|1996-07-30|COLLECT COD|AIR|t the slyly stealt| +71182|347709|47710|2|34|59727.46|0.05|0.03|N|O|1996-05-19|1996-04-23|1996-06-14|TAKE BACK RETURN|TRUCK|counts impress fl| +71182|943947|6466|3|28|55745.20|0.02|0.06|N|O|1996-06-28|1996-05-11|1996-06-29|DELIVER IN PERSON|AIR|g, regular theodolites nag. pending,| +71182|911633|11634|4|48|78940.32|0.00|0.02|N|O|1996-05-01|1996-06-11|1996-05-04|NONE|FOB|packages sleep at the regular,| +71182|800566|13083|5|2|2933.04|0.08|0.07|N|O|1996-06-24|1996-06-11|1996-07-04|DELIVER IN PERSON|AIR|lose, ironic e| +71182|98539|23542|6|41|63038.73|0.01|0.04|N|O|1996-06-14|1996-04-29|1996-06-29|NONE|MAIL|g to the accounts. s| +71183|146367|33874|1|26|36747.36|0.09|0.07|A|F|1993-12-06|1993-10-23|1993-12-18|NONE|FOB|e. final deposits run. ironi| +71183|985271|47791|2|3|4068.69|0.09|0.08|R|F|1993-12-05|1993-09-23|1993-12-16|COLLECT COD|SHIP|final theodolites cajole blithely.| +71183|432931|7948|3|37|68964.67|0.01|0.07|R|F|1993-12-07|1993-10-29|1993-12-17|NONE|TRUCK| special excuses | +71208|84579|9582|1|4|6254.28|0.06|0.02|N|O|1998-04-18|1998-04-01|1998-04-20|COLLECT COD|TRUCK|ackages haggle sometimes. enticingly final| +71208|517764|30275|2|32|57015.68|0.04|0.01|N|O|1998-06-04|1998-03-29|1998-06-07|TAKE BACK RETURN|RAIL|he doggedly fina| +71208|43058|18059|3|33|33034.65|0.00|0.04|N|O|1998-06-11|1998-04-14|1998-06-14|DELIVER IN PERSON|TRUCK|sts. regular, regular deposits unwind so| +71208|672419|34933|4|47|65394.86|0.00|0.08|N|O|1998-03-27|1998-04-29|1998-04-19|DELIVER IN PERSON|TRUCK|y ironic excuses besi| +71209|687641|37642|1|44|71658.84|0.10|0.07|N|O|1997-03-11|1997-04-11|1997-04-04|COLLECT COD|REG AIR|ever ironic forges boost slyly| +71209|168360|30864|2|26|37137.36|0.09|0.07|N|O|1997-03-12|1997-03-20|1997-03-29|COLLECT COD|REG AIR|riously final| +71209|625231|12768|3|25|28905.00|0.05|0.05|N|O|1997-03-11|1997-04-08|1997-03-17|COLLECT COD|TRUCK| deposits. slyly special | +71209|243040|5545|4|4|3932.12|0.05|0.05|N|O|1997-04-19|1997-04-16|1997-05-08|COLLECT COD|FOB|arefully. e| +71209|759783|22299|5|45|82923.75|0.04|0.07|N|O|1997-04-28|1997-03-10|1997-05-05|TAKE BACK RETURN|REG AIR|o beans cajole furiously. sl| +71209|671248|8788|6|29|35357.09|0.09|0.01|N|O|1997-03-21|1997-03-19|1997-04-06|NONE|AIR|deposits are. even packages affix a| +71210|667493|5033|1|27|39432.42|0.01|0.08|N|O|1995-09-04|1995-09-27|1995-09-16|TAKE BACK RETURN|FOB|carefully special pinto beans.| +71210|554468|16980|2|25|38061.00|0.10|0.04|N|O|1995-10-30|1995-10-02|1995-11-11|TAKE BACK RETURN|SHIP|uses use fluffily aro| +71211|122619|10126|1|5|8208.05|0.09|0.01|R|F|1993-02-12|1992-12-13|1993-02-23|TAKE BACK RETURN|RAIL| about the final accou| +71211|853328|15846|2|20|25625.60|0.00|0.06|A|F|1992-10-28|1992-12-11|1992-10-30|NONE|AIR|ounts use. | +71211|880366|5401|3|13|17502.16|0.04|0.04|A|F|1992-11-24|1993-01-25|1992-12-18|DELIVER IN PERSON|MAIL|fter the carefully final pinto beans.| +71211|305764|5765|4|19|33625.25|0.08|0.02|A|F|1993-01-16|1993-01-07|1993-01-20|DELIVER IN PERSON|RAIL|urts among the| +71212|140124|15129|1|41|47728.92|0.00|0.07|N|O|1997-08-06|1997-08-04|1997-08-14|TAKE BACK RETURN|REG AIR|nts. slyly bold | +71212|47668|22669|2|31|50085.46|0.01|0.03|N|O|1997-09-27|1997-09-12|1997-10-16|NONE|FOB|c instructions use q| +71212|146571|34078|3|20|32351.40|0.09|0.07|N|O|1997-09-21|1997-08-22|1997-10-14|TAKE BACK RETURN|MAIL|ounts are. evenly final ide| +71213|991006|16045|1|32|35102.72|0.08|0.03|N|O|1998-06-04|1998-07-17|1998-06-05|DELIVER IN PERSON|AIR| sleep. sly| +71213|832403|44920|2|50|66768.00|0.08|0.05|N|O|1998-07-16|1998-07-08|1998-07-24|COLLECT COD|SHIP|packages. regular, r| +71213|181356|18866|3|3|4312.05|0.01|0.03|N|O|1998-09-01|1998-06-26|1998-09-21|NONE|MAIL|against the | +71213|38136|38137|4|48|51558.24|0.06|0.07|N|O|1998-06-02|1998-08-09|1998-06-13|TAKE BACK RETURN|MAIL| quickly regular foxes use boldly afte| +71213|941928|4447|5|19|37427.72|0.03|0.03|N|O|1998-05-23|1998-07-19|1998-06-15|TAKE BACK RETURN|REG AIR|ly even courts use furio| +71213|968325|18326|6|4|5573.12|0.07|0.04|N|O|1998-06-28|1998-07-01|1998-07-08|COLLECT COD|TRUCK|ing, speci| +71214|569545|7079|1|5|8072.60|0.02|0.04|R|F|1992-11-05|1992-10-27|1992-11-08|NONE|MAIL|aphs. slyly even dependencies be| +71214|338740|26259|2|26|46246.98|0.07|0.01|A|F|1992-11-01|1992-10-05|1992-11-29|DELIVER IN PERSON|SHIP|regular deposits sleep. care| +71214|195952|8456|3|17|34815.15|0.08|0.06|R|F|1992-10-15|1992-10-29|1992-11-08|DELIVER IN PERSON|SHIP|onic instructions dazzle. slyly| +71215|49909|12410|1|9|16730.10|0.01|0.07|N|O|1997-03-17|1997-03-12|1997-04-09|COLLECT COD|MAIL|equests serve slyly silent p| +71215|804869|29902|2|30|53214.60|0.01|0.04|N|O|1997-03-22|1997-04-08|1997-04-20|DELIVER IN PERSON|REG AIR|sly ironic platelets run| +71215|424600|12125|3|37|56409.46|0.04|0.00|N|O|1997-02-19|1997-03-22|1997-02-26|COLLECT COD|TRUCK|s cajole blithely quickly final th| +71215|249199|49200|4|42|48223.56|0.01|0.02|N|O|1997-05-02|1997-04-11|1997-05-15|DELIVER IN PERSON|AIR|rding to the regular requests boost fur| +71215|278528|16044|5|35|52727.85|0.10|0.04|N|O|1997-05-30|1997-04-01|1997-06-21|DELIVER IN PERSON|FOB|uriously pending pinto| +71215|208919|8920|6|50|91395.00|0.06|0.01|N|O|1997-03-24|1997-03-08|1997-04-22|DELIVER IN PERSON|MAIL|uffily regular excuses. special dolphi| +71215|287045|12056|7|29|29928.87|0.05|0.00|N|O|1997-03-28|1997-04-08|1997-04-12|DELIVER IN PERSON|TRUCK|nts wake furiously pen| +71240|353134|40656|1|14|16619.68|0.10|0.03|N|O|1995-08-09|1995-07-09|1995-08-13|TAKE BACK RETURN|FOB| nag carefully deposits. ideas b| +71240|116805|41810|2|3|5465.40|0.06|0.01|N|O|1995-07-17|1995-07-21|1995-08-02|NONE|FOB|ounts might| +71240|140028|27535|3|6|6408.12|0.02|0.04|N|O|1995-06-25|1995-07-15|1995-07-12|DELIVER IN PERSON|REG AIR|ins. slyly express ideas al| +71241|654407|16921|1|14|19059.18|0.01|0.07|N|O|1998-05-10|1998-04-15|1998-05-30|TAKE BACK RETURN|TRUCK|ng to the furiously ironic de| +71241|614529|14530|2|12|17321.88|0.01|0.08|N|O|1998-05-15|1998-04-29|1998-06-08|COLLECT COD|REG AIR|luffily even ideas han| +71241|374236|49251|3|5|6551.10|0.03|0.00|N|O|1998-04-28|1998-03-26|1998-05-04|COLLECT COD|REG AIR|, regular packages sleep. f| +71242|417887|30396|1|47|84828.42|0.08|0.01|N|O|1997-07-23|1997-08-18|1997-08-08|DELIVER IN PERSON|RAIL|s along the express, un| +71242|420120|45137|2|14|14561.40|0.06|0.06|N|O|1997-06-19|1997-07-30|1997-07-08|TAKE BACK RETURN|SHIP|y ironic deposits haggle. furiously ironic| +71242|941166|28721|3|5|6035.60|0.03|0.07|N|O|1997-07-11|1997-07-20|1997-08-01|DELIVER IN PERSON|TRUCK|y ironic accounts. carefully bold dependenc| +71243|66078|41081|1|1|1044.07|0.03|0.08|N|O|1996-06-17|1996-06-15|1996-07-09|NONE|REG AIR|riously at the special| +71243|565375|40398|2|20|28807.00|0.08|0.01|N|O|1996-06-30|1996-07-24|1996-07-07|COLLECT COD|AIR| ironic pinto beans cajole slyly a| +71243|250285|37801|3|45|55587.15|0.01|0.04|N|O|1996-07-10|1996-07-01|1996-07-20|TAKE BACK RETURN|REG AIR|ress asymptotes. regul| +71244|540226|27757|1|44|55712.80|0.04|0.01|R|F|1993-12-20|1993-11-09|1994-01-10|TAKE BACK RETURN|MAIL|ng dolphins integ| +71244|564791|39814|2|43|79798.11|0.01|0.02|A|F|1993-12-22|1993-11-07|1994-01-14|TAKE BACK RETURN|SHIP| accounts wake carefully along the special| +71244|426673|14198|3|6|9597.90|0.04|0.01|R|F|1993-09-14|1993-11-01|1993-10-14|DELIVER IN PERSON|SHIP| beans. sometime| +71244|88657|38658|4|2|3291.30|0.10|0.01|R|F|1993-09-13|1993-10-02|1993-10-09|NONE|AIR|he blithely regular gifts. final| +71244|56261|6262|5|29|35300.54|0.08|0.01|A|F|1993-10-15|1993-10-13|1993-10-18|DELIVER IN PERSON|FOB|y final ideas. slyly pendin| +71244|569725|7259|6|10|17947.00|0.07|0.03|A|F|1993-12-14|1993-11-22|1993-12-19|COLLECT COD|TRUCK|althily accounts. ideas a| +71245|283302|45808|1|41|52696.89|0.05|0.08|N|O|1998-01-20|1998-03-07|1998-02-04|DELIVER IN PERSON|RAIL|g, even asymptotes sleep| +71245|444786|44787|2|4|6923.04|0.07|0.07|N|O|1998-01-20|1998-03-30|1998-02-02|NONE|RAIL|ely special requests. fluffily even packa| +71245|507248|19759|3|22|27614.84|0.08|0.07|N|O|1998-01-06|1998-03-01|1998-01-21|DELIVER IN PERSON|AIR|ages wake against the express req| +71245|315830|40843|4|22|40608.04|0.06|0.01|N|O|1998-04-19|1998-03-17|1998-05-10|COLLECT COD|RAIL|fully blithely pending foxes. deposits mai| +71245|141433|41434|5|9|13269.87|0.05|0.07|N|O|1998-02-27|1998-03-13|1998-03-29|DELIVER IN PERSON|AIR|packages. e| +71246|566654|4188|1|22|37853.86|0.01|0.02|N|O|1997-03-04|1997-04-03|1997-03-15|NONE|SHIP| the even requests wake alongsi| +71246|739084|14113|2|46|51660.30|0.05|0.01|N|O|1997-05-22|1997-03-21|1997-06-03|DELIVER IN PERSON|MAIL|es cajole about the | +71246|783710|8741|3|20|35873.60|0.05|0.08|N|O|1997-03-17|1997-03-15|1997-03-26|TAKE BACK RETURN|RAIL| instructions. slyly bold d| +71246|811357|11358|4|23|29171.13|0.01|0.06|N|O|1997-03-12|1997-03-02|1997-03-18|NONE|SHIP|iously bold accounts haggle carefully | +71246|461436|36455|5|19|26550.79|0.10|0.02|N|O|1997-02-20|1997-03-03|1997-03-15|TAKE BACK RETURN|REG AIR| accounts | +71246|345929|33448|6|37|73071.67|0.02|0.04|N|O|1997-03-07|1997-02-25|1997-03-10|COLLECT COD|AIR|t the fluffily| +71247|591174|28708|1|27|34159.05|0.07|0.08|N|O|1995-08-27|1995-08-21|1995-08-31|NONE|SHIP|regular packages are according to the bl| +71247|848861|36410|2|15|27147.30|0.03|0.08|N|O|1995-10-16|1995-08-14|1995-11-08|TAKE BACK RETURN|AIR|cial packages nag furious| +71247|795792|45793|3|45|84949.20|0.04|0.03|N|O|1995-10-21|1995-09-06|1995-10-26|TAKE BACK RETURN|AIR|onic platelets mold blithely above | +71272|812084|49633|1|45|44821.80|0.00|0.00|N|O|1996-10-22|1996-11-10|1996-10-30|TAKE BACK RETURN|FOB|ole. blithely final| +71272|690897|28437|2|41|77402.26|0.03|0.01|N|O|1996-12-24|1996-10-22|1996-12-30|COLLECT COD|REG AIR|xpress ide| +71273|639265|39266|1|22|26493.06|0.07|0.07|R|F|1992-02-16|1992-03-29|1992-03-09|COLLECT COD|RAIL|riously ruthless pinto bean| +71273|125857|862|2|43|80962.55|0.03|0.04|R|F|1992-05-01|1992-03-26|1992-05-11|NONE|MAIL|quests above th| +71273|267835|17836|3|33|59493.06|0.05|0.04|A|F|1992-05-25|1992-03-25|1992-05-27|NONE|AIR|y after the carefully final| +71273|501518|1519|4|5|7597.45|0.05|0.06|R|F|1992-03-18|1992-03-29|1992-04-01|TAKE BACK RETURN|AIR|uriously along th| +71274|912293|24812|1|43|56125.75|0.00|0.05|A|F|1994-02-02|1994-03-09|1994-02-24|TAKE BACK RETURN|REG AIR|ithely ironic ideas alongside of the q| +71274|901903|26940|2|16|30477.76|0.05|0.00|A|F|1994-02-23|1994-04-12|1994-03-17|COLLECT COD|AIR|ar theodolites mold asymptotes. ironic r| +71274|268744|6260|3|15|25690.95|0.05|0.03|R|F|1994-05-10|1994-02-19|1994-05-15|TAKE BACK RETURN|REG AIR| regular deposits boost ironic theodolit| +71274|777581|27582|4|44|72976.20|0.07|0.05|R|F|1994-05-13|1994-04-07|1994-05-22|DELIVER IN PERSON|MAIL|gular deposits. express acco| +71275|832748|20297|1|48|80673.60|0.05|0.00|R|F|1995-04-30|1995-04-09|1995-05-29|COLLECT COD|AIR|nis. thinly ironic ideas c| +71275|987880|12919|2|13|25581.92|0.02|0.06|R|F|1995-03-04|1995-04-27|1995-03-15|NONE|FOB|uests. ironic accounts| +71275|290840|28356|3|9|16477.47|0.00|0.03|R|F|1995-03-13|1995-03-15|1995-03-28|NONE|RAIL|d of the a| +71275|131360|6365|4|33|45914.88|0.09|0.02|R|F|1995-05-10|1995-05-02|1995-06-04|NONE|MAIL| regular asymptotes haggle across the | +71275|756901|44447|5|50|97893.50|0.05|0.03|A|F|1995-06-08|1995-03-12|1995-06-10|TAKE BACK RETURN|RAIL| platelets. furiously pending reques| +71275|228972|28973|6|28|53226.88|0.01|0.08|R|F|1995-03-06|1995-03-15|1995-03-27|TAKE BACK RETURN|RAIL| unusual deposits; slyly | +71275|331147|43654|7|48|56550.24|0.00|0.07|R|F|1995-02-11|1995-03-28|1995-02-17|COLLECT COD|TRUCK|ake slyly. blithely ir| +71276|586313|36314|1|28|39180.12|0.07|0.05|N|O|1997-12-07|1997-10-18|1997-12-16|COLLECT COD|MAIL|fily about the requests. quickly spec| +71276|148962|48963|2|2|4021.92|0.04|0.03|N|O|1997-12-15|1997-10-13|1997-12-27|COLLECT COD|RAIL|es sleep foxes. f| +71276|590787|40788|3|32|60088.32|0.09|0.08|N|O|1997-11-04|1997-10-06|1997-11-22|DELIVER IN PERSON|REG AIR|eposits are carefully. even, b| +71276|346416|46417|4|32|46796.80|0.07|0.04|N|O|1997-11-01|1997-10-17|1997-11-28|TAKE BACK RETURN|MAIL|g deposits haggl| +71277|475967|38477|1|21|40801.74|0.06|0.00|R|F|1992-12-05|1992-11-08|1992-12-13|COLLECT COD|RAIL|s: carefully unusual deposits poac| +71277|573949|11483|2|10|20229.20|0.05|0.08|A|F|1992-09-23|1992-10-28|1992-09-30|NONE|TRUCK|ular platelet| +71277|357238|44760|3|33|42742.26|0.09|0.04|A|F|1992-09-14|1992-09-15|1992-09-15|COLLECT COD|RAIL|lar epitaphs. furiously even deposits a| +71277|87264|49766|4|5|6256.30|0.06|0.03|R|F|1992-10-03|1992-10-03|1992-10-25|COLLECT COD|REG AIR|e blithely; slyly ironic theod| +71277|631836|44349|5|44|77783.20|0.01|0.07|R|F|1992-10-12|1992-10-12|1992-10-18|NONE|RAIL|. furiously ironic packages sleep along t| +71277|259822|34833|6|6|10690.86|0.03|0.08|R|F|1992-11-14|1992-09-30|1992-11-16|DELIVER IN PERSON|MAIL| carefully express | +71278|476003|38513|1|10|9789.80|0.09|0.04|A|F|1995-01-11|1995-01-07|1995-02-01|TAKE BACK RETURN|FOB|ously regular foxes. fluffily regular r| +71278|177237|14747|2|11|14456.53|0.02|0.02|A|F|1994-12-11|1995-01-04|1994-12-12|DELIVER IN PERSON|TRUCK|telets haggle| +71278|816099|28616|3|1|1015.05|0.09|0.06|A|F|1995-02-08|1994-12-14|1995-02-11|DELIVER IN PERSON|AIR|eposits cajole reg| +71278|167920|30424|4|36|71565.12|0.01|0.05|A|F|1994-12-23|1995-01-16|1995-01-19|DELIVER IN PERSON|RAIL|fully silent accou| +71278|218605|31110|5|14|21330.26|0.09|0.08|R|F|1995-01-16|1994-12-23|1995-02-07|COLLECT COD|SHIP|es sleep at the blithely pending platele| +71279|863199|751|1|25|29053.75|0.08|0.06|N|O|1996-04-16|1996-04-01|1996-05-14|COLLECT COD|AIR|es! deposits haggle blithely instead of | +71304|819767|19768|1|32|53975.04|0.00|0.00|A|F|1993-10-26|1993-10-14|1993-11-11|COLLECT COD|TRUCK|sits haggle blithely slyly | +71304|821748|46781|2|39|65118.30|0.07|0.03|A|F|1993-11-24|1993-11-07|1993-12-24|DELIVER IN PERSON|TRUCK|nd the carefully iro| +71305|308622|46141|1|5|8153.05|0.09|0.06|N|O|1997-10-24|1997-12-25|1997-11-17|NONE|AIR| inside the furiously reg| +71305|9508|34509|2|34|48195.00|0.10|0.05|N|O|1997-12-09|1997-12-25|1997-12-24|DELIVER IN PERSON|SHIP|unts. unusual instructi| +71305|785488|10519|3|29|45630.05|0.02|0.05|N|O|1997-12-12|1997-12-16|1997-12-15|NONE|AIR|es wake about the pending, u| +71305|680992|30993|4|11|21702.56|0.10|0.08|N|O|1998-01-24|1997-12-26|1998-02-05|TAKE BACK RETURN|AIR|he carefully regular | +71306|997912|35470|1|2|4019.74|0.10|0.05|R|F|1992-12-06|1992-11-22|1992-12-26|TAKE BACK RETURN|TRUCK|e the carefully special requests use quick| +71306|903931|16450|2|5|9674.45|0.04|0.08|A|F|1992-10-22|1992-12-28|1992-10-27|TAKE BACK RETURN|SHIP|ckly unusual theodolite| +71306|361270|48792|3|7|9318.82|0.08|0.04|A|F|1992-10-05|1992-11-11|1992-10-12|DELIVER IN PERSON|MAIL| accounts. quickly unusual depo| +71306|851890|39442|4|34|62622.90|0.03|0.00|A|F|1992-11-27|1992-11-28|1992-12-18|COLLECT COD|MAIL| permanently. express| +71306|702011|39554|5|20|20259.60|0.08|0.03|R|F|1992-10-24|1992-11-06|1992-11-22|DELIVER IN PERSON|MAIL|n foxes haggle slyly. regular theodolites| +71306|697653|35193|6|11|18156.82|0.10|0.02|R|F|1993-01-03|1992-11-20|1993-01-13|TAKE BACK RETURN|TRUCK|silent deposits; furiously final accounts h| +71307|133904|8909|1|26|50385.40|0.00|0.05|A|F|1993-12-29|1993-11-30|1994-01-22|DELIVER IN PERSON|SHIP|s dazzle blithely about t| +71307|511018|23529|2|28|28811.72|0.08|0.03|A|F|1994-01-05|1993-11-06|1994-01-30|COLLECT COD|REG AIR|to beans above the bold deposits wake furio| +71307|672637|10177|3|8|12876.80|0.10|0.01|A|F|1993-09-13|1993-11-26|1993-09-28|TAKE BACK RETURN|TRUCK|packages. fluffily unusual ac| +71307|997789|47790|4|2|3773.48|0.09|0.01|R|F|1993-10-12|1993-10-24|1993-10-22|COLLECT COD|REG AIR|he ironic, bold pack| +71307|827838|40355|5|5|8828.95|0.02|0.07|R|F|1994-01-03|1993-11-22|1994-01-08|TAKE BACK RETURN|AIR|haggle. furiously regular packa| +71307|463747|38766|6|41|70139.52|0.04|0.00|A|F|1993-12-19|1993-10-15|1993-12-31|NONE|MAIL|ess frets. ironic, final d| +71308|40166|27667|1|5|5530.80|0.01|0.07|N|O|1996-05-05|1996-04-20|1996-05-20|COLLECT COD|AIR|cording to the carefully regu| +71308|65351|2855|2|35|46072.25|0.04|0.05|N|O|1996-04-23|1996-03-28|1996-05-20|TAKE BACK RETURN|AIR|ckages boost slyly furiously bol| +71309|615244|27757|1|2|2318.42|0.01|0.01|A|F|1993-02-11|1993-03-27|1993-03-12|NONE|FOB|fily pending requests nag along the fi| +71309|402145|14654|2|18|18848.16|0.00|0.06|A|F|1993-03-06|1993-03-17|1993-03-29|TAKE BACK RETURN|REG AIR|oxes haggle quick| +71310|656281|18795|1|48|59388.00|0.03|0.03|A|F|1993-09-22|1993-07-22|1993-09-27|DELIVER IN PERSON|AIR|nes after the slyly bold ideas ar| +71310|108097|33102|2|16|17681.44|0.08|0.06|R|F|1993-07-06|1993-08-23|1993-07-25|COLLECT COD|REG AIR| according to the furiously bold th| +71310|774471|49502|3|16|24727.04|0.04|0.03|A|F|1993-09-16|1993-07-09|1993-09-20|COLLECT COD|SHIP|uriously pending courts| +71311|506007|31028|1|15|15194.70|0.07|0.06|A|F|1992-05-31|1992-03-27|1992-06-08|DELIVER IN PERSON|MAIL|fully even instructions r| +71311|443333|30858|2|10|12763.10|0.00|0.01|A|F|1992-02-16|1992-05-06|1992-03-01|TAKE BACK RETURN|MAIL|d notornis. furious| +71311|95034|45035|3|25|25725.75|0.03|0.07|A|F|1992-04-05|1992-04-22|1992-04-15|COLLECT COD|MAIL|nal pearls haggle slyly aga| +71311|227071|39576|4|43|42916.58|0.02|0.05|R|F|1992-05-12|1992-05-05|1992-06-03|COLLECT COD|TRUCK| upon the silent acco| +71311|374704|37212|5|28|49803.32|0.05|0.08|A|F|1992-06-05|1992-05-03|1992-06-23|COLLECT COD|SHIP|uickly final deposi| +71311|646673|21698|6|12|19435.68|0.00|0.05|A|F|1992-05-06|1992-04-19|1992-05-08|DELIVER IN PERSON|MAIL|ial pinto beans lose| +71311|631903|19440|7|13|23853.31|0.06|0.01|A|F|1992-03-22|1992-04-02|1992-04-07|TAKE BACK RETURN|TRUCK|busy deposits cajole. iro| +71336|379720|17242|1|35|62989.85|0.03|0.04|N|O|1997-08-21|1997-08-09|1997-09-15|DELIVER IN PERSON|FOB|ns! ideas might wake.| +71336|949028|11547|2|33|35540.34|0.00|0.00|N|O|1997-09-01|1997-08-13|1997-09-30|DELIVER IN PERSON|REG AIR|xpress theodolites shall have to use.| +71337|878481|16033|1|30|43783.20|0.01|0.00|N|O|1997-03-24|1997-03-14|1997-04-21|NONE|AIR|y final asymptotes according to the blithel| +71337|622829|22830|2|10|17517.90|0.09|0.01|N|O|1997-04-21|1997-03-16|1997-04-23|TAKE BACK RETURN|RAIL| foxes wake| +71337|873758|36276|3|34|58878.14|0.09|0.00|N|O|1997-03-23|1997-03-11|1997-04-19|NONE|SHIP| platelets | +71337|247846|22855|4|1|1793.83|0.09|0.08|N|O|1997-02-27|1997-02-26|1997-03-24|DELIVER IN PERSON|FOB|counts. final, ironic i| +71337|547175|34706|5|6|7332.90|0.02|0.07|N|O|1997-04-20|1997-02-08|1997-04-28|NONE|AIR|lly. deposits are| +71338|766918|16919|1|17|33742.96|0.10|0.08|A|F|1994-03-23|1994-01-01|1994-04-10|COLLECT COD|REG AIR|slyly about t| +71338|584733|22267|2|16|29083.36|0.01|0.03|R|F|1993-12-29|1994-02-14|1994-01-20|COLLECT COD|FOB|ound the regular req| +71338|598583|23606|3|2|3363.12|0.03|0.05|R|F|1993-12-06|1994-02-07|1993-12-23|COLLECT COD|SHIP|tructions. fluffily even requests cajole. u| +71338|378307|40815|4|21|29091.09|0.00|0.08|R|F|1994-02-16|1994-01-03|1994-03-08|DELIVER IN PERSON|REG AIR|ts past the carefully special| +71338|205663|30672|5|41|64314.65|0.00|0.02|A|F|1994-01-26|1994-02-02|1994-02-21|NONE|TRUCK|e according to the final, regul| +71338|570526|45549|6|11|17561.50|0.00|0.07|A|F|1993-11-24|1994-01-10|1993-12-03|NONE|RAIL|ously ironic, unusual accounts.| +71339|360927|35942|1|6|11927.46|0.07|0.07|R|F|1993-04-20|1993-05-16|1993-05-09|TAKE BACK RETURN|FOB|ct carefully blithely unusual multipliers| +71339|96761|34265|2|37|65037.12|0.06|0.03|R|F|1993-04-25|1993-05-21|1993-05-24|NONE|TRUCK|er the fluffily f| +71339|257963|20469|3|6|11525.70|0.06|0.02|R|F|1993-03-07|1993-04-12|1993-04-03|COLLECT COD|FOB|lly regular ideas wake closely | +71340|367059|29567|1|46|51797.84|0.08|0.00|N|O|1996-07-15|1996-06-19|1996-08-14|NONE|AIR| final requests cajole f| +71341|717772|17773|1|10|17897.40|0.06|0.03|N|O|1997-03-08|1997-03-14|1997-04-06|NONE|RAIL|uickly bold requests are according t| +71341|588813|26347|2|18|34232.22|0.04|0.00|N|O|1997-03-29|1997-02-24|1997-03-31|COLLECT COD|FOB|ages. furiously regular in| +71341|179570|29571|3|4|6598.28|0.02|0.07|N|O|1997-03-28|1997-04-13|1997-04-20|TAKE BACK RETURN|FOB|leep careful| +71341|23626|11127|4|4|6198.48|0.09|0.08|N|O|1997-04-01|1997-02-27|1997-05-01|COLLECT COD|SHIP|ilent deposits ab| +71341|79047|41549|5|33|33859.32|0.01|0.08|N|O|1997-04-15|1997-03-05|1997-04-17|TAKE BACK RETURN|MAIL|, special theodolites are blithely| +71341|533046|45557|6|31|33449.62|0.09|0.08|N|O|1997-05-01|1997-04-10|1997-05-04|COLLECT COD|MAIL|s serve blithely slyly fin| +71341|895943|45944|7|21|40716.90|0.06|0.05|N|O|1997-05-14|1997-04-15|1997-05-15|NONE|MAIL|riously special requests | +71342|108475|33480|1|40|59338.80|0.06|0.03|R|F|1994-06-28|1994-04-10|1994-07-01|COLLECT COD|RAIL|r pinto beans haggl| +71343|811626|24143|1|39|59965.62|0.09|0.08|A|F|1993-10-29|1993-10-24|1993-11-24|DELIVER IN PERSON|RAIL|ke silently. p| +71343|985226|22784|2|21|27534.78|0.07|0.03|A|F|1993-09-25|1993-11-01|1993-10-01|DELIVER IN PERSON|TRUCK|s are silently above the fluff| +71343|686694|36695|3|35|58823.10|0.06|0.08|R|F|1993-10-25|1993-11-12|1993-11-23|TAKE BACK RETURN|SHIP|ly. regular, spe| +71343|259183|34194|4|27|30838.59|0.08|0.01|R|F|1993-12-31|1993-12-06|1994-01-27|TAKE BACK RETURN|FOB| the furiously unusual platelets us| +71343|81778|44280|5|7|12318.39|0.05|0.04|R|F|1993-11-26|1993-11-24|1993-12-04|DELIVER IN PERSON|MAIL|aggle carefully against the slyly special| +71343|434663|22188|6|21|33550.44|0.10|0.04|A|F|1993-12-10|1993-12-07|1993-12-25|NONE|REG AIR|- quickly special packages cajole s| +71368|545122|7633|1|27|31511.70|0.05|0.02|R|F|1994-03-23|1994-05-05|1994-04-17|DELIVER IN PERSON|AIR| platelets.| +71368|860652|35687|2|30|48378.30|0.00|0.04|R|F|1994-03-20|1994-04-19|1994-04-08|TAKE BACK RETURN|RAIL| instructions. unusual | +71368|971170|21171|3|3|3723.39|0.10|0.05|R|F|1994-05-17|1994-05-07|1994-06-15|NONE|FOB|e furiously final theodolites| +71368|439419|1928|4|39|52977.21|0.08|0.02|R|F|1994-04-25|1994-04-05|1994-05-06|COLLECT COD|REG AIR|ss warthogs. furi| +71368|299413|49414|5|39|55083.60|0.05|0.01|R|F|1994-03-08|1994-03-12|1994-03-28|COLLECT COD|AIR|l, express theodolites. carefully final id| +71369|972854|10412|1|38|73218.78|0.09|0.01|R|F|1992-04-19|1992-06-01|1992-05-14|TAKE BACK RETURN|AIR|pending depo| +71369|752194|27225|2|27|33646.32|0.06|0.05|A|F|1992-06-22|1992-06-04|1992-06-25|NONE|MAIL|riously regular d| +71369|111791|24294|3|1|1802.79|0.06|0.01|A|F|1992-04-29|1992-04-21|1992-05-24|COLLECT COD|AIR|ely silent deposits. carefully regul| +71369|859305|21823|4|39|49306.14|0.04|0.07|A|F|1992-05-03|1992-05-03|1992-05-15|TAKE BACK RETURN|AIR|oss the carefully final| +71369|337161|49668|5|18|21566.70|0.09|0.07|R|F|1992-07-15|1992-06-17|1992-07-25|NONE|AIR|es. slyly un| +71369|656891|44431|6|43|79457.98|0.05|0.06|A|F|1992-06-24|1992-06-05|1992-07-11|DELIVER IN PERSON|RAIL|he furious| +71370|326988|2001|1|32|64479.04|0.01|0.04|N|O|1998-02-07|1998-02-03|1998-02-25|DELIVER IN PERSON|RAIL|oss the carefully regular packag| +71371|362250|49772|1|40|52489.60|0.06|0.01|N|O|1995-12-05|1995-11-30|1995-12-24|DELIVER IN PERSON|MAIL|y even Tiresias. quickly busy frays above | +71371|334192|46699|2|20|24523.60|0.08|0.04|N|O|1995-12-14|1995-12-19|1996-01-05|COLLECT COD|MAIL|tect-- fluffily even| +71371|757690|32721|3|35|61168.10|0.09|0.01|N|O|1996-01-12|1995-11-26|1996-02-02|TAKE BACK RETURN|AIR|ully special | +71372|446206|46207|1|31|35717.58|0.10|0.00|A|F|1992-05-08|1992-03-23|1992-05-20|DELIVER IN PERSON|FOB|h. slyly regular accounts according to| +71373|80303|30304|1|27|34649.10|0.01|0.05|N|O|1996-06-03|1996-06-03|1996-06-11|TAKE BACK RETURN|SHIP| silent requests are furiously bold accoun| +71373|645162|45163|2|28|30999.64|0.07|0.02|N|O|1996-05-26|1996-06-11|1996-06-23|DELIVER IN PERSON|REG AIR|elets cajole at the u| +71373|234802|9811|3|2|3473.58|0.02|0.02|N|O|1996-05-31|1996-05-18|1996-06-28|NONE|MAIL|g furiously about the unusual ide| +71373|312626|25133|4|22|36049.42|0.07|0.03|N|O|1996-07-31|1996-06-20|1996-08-03|NONE|RAIL|. regular, fi| +71373|297343|22354|5|5|6701.65|0.07|0.02|N|O|1996-05-29|1996-06-10|1996-06-21|DELIVER IN PERSON|MAIL|onic packages. slyly exp| +71373|442071|29596|6|6|6078.30|0.07|0.07|N|O|1996-05-02|1996-06-07|1996-05-08|TAKE BACK RETURN|TRUCK|ic dependencies affix slyly am| +71374|629543|4568|1|5|7362.55|0.03|0.03|A|F|1994-03-29|1994-05-17|1994-04-21|DELIVER IN PERSON|SHIP|nag regular ideas. fluffily final pinto be| +71374|716119|3662|2|37|41997.96|0.07|0.08|A|F|1994-05-19|1994-04-29|1994-06-04|DELIVER IN PERSON|REG AIR| carefully even dependencies after the t| +71375|493397|18416|1|7|9732.59|0.05|0.05|N|O|1997-03-29|1997-02-20|1997-04-14|NONE|REG AIR|ironic asymptote| +71375|509817|9818|2|8|14614.32|0.03|0.03|N|O|1997-03-07|1997-04-06|1997-03-23|TAKE BACK RETURN|TRUCK| after the final deposits. slyly expres| +71375|478647|41157|3|6|9753.72|0.08|0.00|N|O|1997-01-25|1997-02-21|1997-01-29|TAKE BACK RETURN|FOB|unusual fo| +71400|599643|49644|1|31|54021.22|0.00|0.03|N|O|1997-09-25|1997-10-12|1997-10-21|DELIVER IN PERSON|AIR|lyly final foxes. blithely| +71400|194364|44365|2|29|42292.44|0.05|0.06|N|O|1997-11-14|1997-10-28|1997-12-10|DELIVER IN PERSON|AIR|y regular accounts. sheaves hag| +71400|668121|43148|3|29|31583.61|0.10|0.08|N|O|1997-09-28|1997-11-06|1997-10-20|NONE|TRUCK|tegrate furious| +71400|104445|4446|4|24|34786.56|0.05|0.02|N|O|1997-10-21|1997-11-23|1997-11-09|COLLECT COD|MAIL|y regular dolphins haggle car| +71400|401688|1689|5|6|9537.96|0.01|0.00|N|O|1997-11-07|1997-11-26|1997-11-24|COLLECT COD|AIR|kages. slyly fin| +71401|280938|18454|1|14|26864.88|0.08|0.01|N|O|1996-05-22|1996-06-19|1996-05-28|NONE|MAIL|ests cajole even, sp| +71401|713956|1499|2|13|25608.96|0.05|0.01|N|O|1996-07-03|1996-05-26|1996-07-15|NONE|MAIL|ep slyly for the blithe| +71402|972924|10482|1|13|25959.44|0.10|0.04|N|O|1998-08-16|1998-07-21|1998-09-02|COLLECT COD|SHIP|uickly even pac| +71402|922502|10057|2|10|15244.60|0.02|0.06|N|O|1998-09-19|1998-08-02|1998-10-14|DELIVER IN PERSON|FOB|sits haggle evenly above the furio| +71402|483403|33404|3|4|5545.52|0.01|0.02|N|O|1998-06-08|1998-07-26|1998-06-17|DELIVER IN PERSON|SHIP| integrate slyly. blithely regula| +71403|96629|46630|1|2|3251.24|0.03|0.07|A|F|1992-10-30|1992-10-01|1992-11-27|NONE|TRUCK|ing to the furiously final| +71403|40862|40863|2|49|88340.14|0.03|0.03|A|F|1992-09-24|1992-09-27|1992-10-05|COLLECT COD|RAIL|olphins must haggle a| +71403|754519|42065|3|19|29896.12|0.00|0.01|R|F|1992-12-02|1992-09-14|1992-12-12|NONE|SHIP|tions are | +71404|68226|43229|1|41|48963.02|0.09|0.00|N|O|1997-11-13|1998-01-03|1997-12-11|TAKE BACK RETURN|RAIL|sual packa| +71404|666327|16328|2|21|27159.09|0.01|0.07|N|O|1997-11-30|1997-12-11|1997-12-20|COLLECT COD|RAIL| ruthlessly dugouts. final acco| +71404|946400|46401|3|25|36159.00|0.04|0.02|N|O|1998-02-22|1997-12-11|1998-03-23|DELIVER IN PERSON|RAIL|e carefully! specia| +71405|793911|43912|1|26|52126.88|0.02|0.07|R|F|1992-04-16|1992-05-25|1992-04-21|COLLECT COD|AIR|d asymptotes; blithely | +71405|246825|9330|2|33|58469.73|0.06|0.01|R|F|1992-06-12|1992-06-01|1992-06-30|TAKE BACK RETURN|REG AIR|sometimes after the blithely eve| +71405|374657|37165|3|48|83118.72|0.04|0.04|A|F|1992-07-23|1992-05-11|1992-07-31|DELIVER IN PERSON|MAIL|d, daring packages. furi| +71405|854629|4630|4|16|25337.28|0.01|0.04|A|F|1992-05-22|1992-06-13|1992-06-21|COLLECT COD|REG AIR|aggle slyly according to the blithely| +71405|744667|32210|5|42|71888.46|0.05|0.02|R|F|1992-04-29|1992-06-07|1992-05-23|DELIVER IN PERSON|SHIP|to beans agains| +71405|609903|47440|6|30|54386.10|0.08|0.03|A|F|1992-05-16|1992-06-12|1992-05-20|COLLECT COD|TRUCK|rding to the furiously re| +71406|198411|10915|1|13|19622.33|0.10|0.05|N|O|1997-01-01|1996-12-17|1997-01-28|TAKE BACK RETURN|REG AIR|d about the ironic, s| +71406|692990|42991|2|32|63454.72|0.08|0.06|N|O|1996-11-09|1996-11-29|1996-12-05|NONE|SHIP|e quickly | +71406|69152|44155|3|13|14574.95|0.01|0.06|N|O|1996-12-11|1996-12-25|1997-01-03|COLLECT COD|SHIP|posits. bold dolphins sleep blithely silen| +71406|227692|15205|4|39|63167.52|0.08|0.01|N|O|1996-11-01|1996-12-11|1996-11-06|TAKE BACK RETURN|MAIL|hely bold requests. bold theodolites a| +71406|819010|31527|5|11|10218.67|0.03|0.04|N|O|1996-12-16|1996-12-07|1996-12-24|NONE|RAIL|y final foxes | +71406|88026|38027|6|36|36504.72|0.08|0.00|N|O|1997-01-28|1996-12-05|1997-02-13|NONE|TRUCK|even requests| +71407|898072|48073|1|25|26750.75|0.05|0.06|A|F|1992-11-15|1992-09-29|1992-11-22|DELIVER IN PERSON|RAIL|quests. fluffily| +71407|892889|17924|2|33|62100.72|0.08|0.04|R|F|1992-10-03|1992-09-14|1992-10-17|DELIVER IN PERSON|FOB|ges. packages nag even| +71407|780445|17991|3|46|70168.86|0.04|0.02|A|F|1992-11-11|1992-09-06|1992-12-09|COLLECT COD|TRUCK|es. carefully ironic | +71407|934992|34993|4|29|58781.55|0.10|0.01|R|F|1992-09-16|1992-09-23|1992-09-27|NONE|MAIL|otes are slyly| +71407|400792|25809|5|23|38933.71|0.07|0.00|R|F|1992-09-26|1992-09-03|1992-10-12|TAKE BACK RETURN|TRUCK|ts cajole f| +71432|167895|30399|1|6|11777.34|0.00|0.02|R|F|1994-11-01|1994-12-13|1994-12-01|DELIVER IN PERSON|TRUCK|luffily foxes. | +71432|810186|10187|2|32|35076.48|0.08|0.06|A|F|1995-01-10|1994-12-10|1995-01-21|TAKE BACK RETURN|REG AIR|he slyly bold theodolites. furiously | +71432|790076|27622|3|45|52471.80|0.08|0.06|R|F|1995-02-12|1994-12-23|1995-03-07|COLLECT COD|MAIL|ial theodolites. slyly even| +71432|798490|23521|4|45|71480.70|0.06|0.05|A|F|1995-01-27|1995-01-22|1995-02-05|DELIVER IN PERSON|AIR| carefully about | +71432|206065|31074|5|41|39813.05|0.05|0.04|A|F|1995-01-10|1995-01-01|1995-01-11|DELIVER IN PERSON|REG AIR|nding theodolites agains| +71433|11813|49314|1|4|6899.24|0.05|0.06|N|O|1997-01-25|1996-12-13|1997-02-02|COLLECT COD|REG AIR| detect carefully i| +71433|537497|8|2|17|26085.99|0.05|0.06|N|O|1997-02-15|1996-12-24|1997-03-01|DELIVER IN PERSON|FOB| wake. idle pains boost. ideas cajole | +71433|698236|10750|3|38|46899.60|0.04|0.08|N|O|1997-02-25|1996-12-30|1997-03-21|DELIVER IN PERSON|FOB|ent braids-- furiously speci| +71433|246193|33706|4|23|26201.14|0.09|0.03|N|O|1997-01-08|1997-01-18|1997-02-03|NONE|MAIL|out the fluffily regular packages boost| +71433|763854|38885|5|23|44109.86|0.04|0.07|N|O|1996-12-20|1996-12-26|1997-01-02|COLLECT COD|MAIL|carefully final orbits abov| +71433|78372|28373|6|18|24306.66|0.04|0.07|N|O|1996-11-04|1996-12-07|1996-11-23|TAKE BACK RETURN|MAIL|cial requests h| +71433|183363|20873|7|5|7231.80|0.05|0.02|N|O|1997-02-04|1997-01-27|1997-02-08|DELIVER IN PERSON|MAIL|ding accounts boost caref| +71434|768645|31161|1|25|42840.25|0.06|0.06|A|F|1993-06-09|1993-07-05|1993-06-18|DELIVER IN PERSON|MAIL|ans. fluffily ironic asymptotes| +71434|604308|41845|2|4|4849.08|0.08|0.02|A|F|1993-07-25|1993-08-01|1993-08-04|TAKE BACK RETURN|RAIL|sual pinto beans detect fluffily| +71435|175415|25416|1|35|52164.35|0.01|0.03|N|O|1998-08-29|1998-07-24|1998-09-16|DELIVER IN PERSON|RAIL|ven foxes detect above | +71435|194326|44327|2|44|62494.08|0.01|0.01|N|O|1998-07-03|1998-08-02|1998-07-07|COLLECT COD|AIR|ly quiet acco| +71435|24981|24982|3|34|64803.32|0.05|0.00|N|O|1998-06-12|1998-07-31|1998-07-04|NONE|SHIP|ent dolphins use blithely. silent, ironic p| +71435|855167|42719|4|15|16831.80|0.02|0.05|N|O|1998-07-21|1998-07-19|1998-07-26|COLLECT COD|MAIL|ously from the furiously final accounts| +71435|778731|41247|5|9|16287.30|0.10|0.02|N|O|1998-06-07|1998-08-23|1998-07-05|TAKE BACK RETURN|AIR| pinto beans are carefully across| +71435|125673|25674|6|22|37370.74|0.07|0.02|N|O|1998-07-10|1998-07-15|1998-07-22|NONE|AIR|ges promise along the carefully pen| +71435|173446|23447|7|34|51660.96|0.00|0.07|N|O|1998-07-27|1998-07-30|1998-08-03|DELIVER IN PERSON|MAIL|ts. bold braids integrate after the expre| +71436|90842|40843|1|8|14662.72|0.04|0.07|R|F|1992-06-24|1992-07-16|1992-06-27|DELIVER IN PERSON|MAIL| bold theodolites | +71437|564642|14643|1|2|3413.24|0.06|0.08|A|F|1993-12-16|1994-02-09|1994-01-05|DELIVER IN PERSON|REG AIR|among the carefully bold ideas are s| +71437|924747|12302|2|12|21260.40|0.08|0.05|R|F|1994-03-07|1994-01-06|1994-03-18|NONE|REG AIR|etimes. pen| +71438|268919|31425|1|47|88731.30|0.09|0.02|R|F|1992-06-14|1992-08-19|1992-06-16|DELIVER IN PERSON|MAIL|t deposits. | +71438|713425|38454|2|24|34521.36|0.05|0.07|A|F|1992-08-21|1992-09-03|1992-09-10|NONE|RAIL|lithely special tithes s| +71438|520108|45129|3|15|16921.20|0.04|0.00|A|F|1992-09-02|1992-07-24|1992-09-03|NONE|REG AIR|tes impress quickly quickly bol| +71438|451152|26171|4|36|39712.68|0.09|0.07|R|F|1992-09-18|1992-07-21|1992-10-15|NONE|AIR| the slyly | +71439|761363|36394|1|23|32759.59|0.04|0.01|R|F|1994-02-06|1994-03-07|1994-02-12|COLLECT COD|MAIL|its detect final| +71439|221681|9194|2|9|14424.03|0.00|0.01|R|F|1994-03-03|1994-03-21|1994-03-18|NONE|SHIP|ing dependencies. slyly regula| +71439|783251|45767|3|1|1334.22|0.03|0.06|A|F|1994-04-10|1994-03-25|1994-05-05|DELIVER IN PERSON|AIR|gular, bold | +71439|97484|34988|4|30|44444.40|0.05|0.07|R|F|1994-04-28|1994-03-16|1994-05-03|TAKE BACK RETURN|FOB|tructions along the even dept| +71464|350032|37554|1|34|36788.68|0.04|0.02|N|O|1996-12-30|1996-12-14|1997-01-02|COLLECT COD|RAIL|about the final, unusual fr| +71464|981877|44397|2|24|47011.92|0.10|0.08|N|O|1996-10-24|1996-12-09|1996-11-14|COLLECT COD|AIR|y final accounts could do| +71465|530948|5969|1|49|96967.08|0.06|0.02|R|F|1994-03-22|1994-04-15|1994-03-29|TAKE BACK RETURN|REG AIR|s. furiously even de| +71465|640670|40671|2|34|54761.76|0.00|0.07|R|F|1994-03-22|1994-05-25|1994-04-03|DELIVER IN PERSON|SHIP|eep across| +71465|728058|40573|3|3|3258.06|0.06|0.08|R|F|1994-04-10|1994-04-30|1994-04-19|NONE|AIR|accounts upon the blithely regular accounts| +71465|458597|21107|4|40|62222.80|0.09|0.02|R|F|1994-06-07|1994-05-01|1994-06-22|COLLECT COD|FOB| carefully stealthy| +71465|628611|28612|5|27|41568.66|0.09|0.00|R|F|1994-04-21|1994-04-17|1994-05-13|NONE|REG AIR|y. slyly special th| +71466|205074|30083|1|50|48953.00|0.01|0.07|N|O|1997-06-21|1997-08-18|1997-07-06|DELIVER IN PERSON|RAIL|deposits. carefully expre| +71466|678660|41174|2|27|44243.01|0.06|0.06|N|O|1997-08-29|1997-06-27|1997-09-15|DELIVER IN PERSON|SHIP|encies. regular packages nag acros| +71466|236774|36775|3|28|47901.28|0.02|0.07|N|O|1997-08-07|1997-08-14|1997-09-02|TAKE BACK RETURN|REG AIR|ole among the quickly sp| +71466|460125|35144|4|14|15191.40|0.08|0.03|N|O|1997-08-19|1997-08-06|1997-09-08|DELIVER IN PERSON|REG AIR|lithely above the carefully pen| +71466|315271|15272|5|3|3858.78|0.10|0.05|N|O|1997-08-07|1997-08-14|1997-08-10|TAKE BACK RETURN|AIR|ly pending requests caj| +71467|208956|21461|1|38|70867.72|0.05|0.02|A|F|1993-09-15|1993-09-09|1993-09-16|NONE|FOB|to beans c| +71467|914485|2040|2|13|19492.72|0.07|0.08|R|F|1993-10-11|1993-09-18|1993-10-13|TAKE BACK RETURN|SHIP| final instructions are; | +71467|737610|25153|3|50|82379.00|0.00|0.01|R|F|1993-10-07|1993-10-08|1993-10-26|TAKE BACK RETURN|REG AIR|ong the daring pinto beans. fina| +71467|995486|45487|4|29|45861.76|0.08|0.06|A|F|1993-08-06|1993-09-03|1993-08-28|DELIVER IN PERSON|RAIL|ely pending instruc| +71467|121104|21105|5|38|42753.80|0.00|0.08|A|F|1993-09-27|1993-10-02|1993-10-24|NONE|FOB|the never special| +71467|392607|30129|6|48|81580.32|0.07|0.06|A|F|1993-10-14|1993-09-19|1993-10-22|TAKE BACK RETURN|AIR|usual, pending accounts. accounts are | +71467|542592|17613|7|29|47402.53|0.06|0.01|A|F|1993-10-21|1993-09-20|1993-11-12|DELIVER IN PERSON|RAIL|carefully pending packages| +71468|338415|25934|1|18|26161.20|0.04|0.08|R|F|1994-11-10|1994-12-18|1994-11-25|COLLECT COD|AIR|elets cajole slyly afte| +71468|729092|16635|2|46|51568.76|0.04|0.08|A|F|1994-10-26|1994-11-27|1994-11-06|DELIVER IN PERSON|FOB|ven, permanent instruction| +71468|847263|34812|3|29|35096.38|0.05|0.07|R|F|1994-11-11|1994-11-26|1994-12-05|DELIVER IN PERSON|TRUCK|uests. express sheaves print a| +71469|293640|18651|1|42|68612.46|0.03|0.03|A|F|1992-05-11|1992-03-31|1992-05-22|COLLECT COD|RAIL|ular escapades after the ironic pearls bo| +71469|200303|25312|2|21|25269.09|0.08|0.00|A|F|1992-04-02|1992-04-22|1992-04-28|TAKE BACK RETURN|FOB|ly ironic, ironic packages? pa| +71469|482387|7406|3|49|67098.64|0.00|0.06|R|F|1992-04-25|1992-03-07|1992-05-01|NONE|SHIP|dolites must nag against the request| +71469|466241|28751|4|50|60361.00|0.07|0.06|R|F|1992-02-16|1992-03-10|1992-02-23|TAKE BACK RETURN|SHIP|e among the fluffily pending r| +71470|875304|12856|1|3|3837.78|0.01|0.08|A|F|1993-12-19|1993-10-27|1993-12-27|TAKE BACK RETURN|MAIL| the special | +71470|225640|38145|2|6|9393.78|0.08|0.03|R|F|1993-10-19|1993-10-30|1993-11-08|COLLECT COD|RAIL|y ironic instructions wake| +71470|323536|11055|3|24|37428.48|0.05|0.07|R|F|1993-11-14|1993-10-28|1993-11-17|TAKE BACK RETURN|SHIP|ffix carefully quickly silent account| +71470|659157|46697|4|41|45760.92|0.05|0.01|A|F|1993-10-21|1993-11-05|1993-11-04|DELIVER IN PERSON|MAIL|osely unusual deposits. | +71470|449897|12406|5|32|59099.84|0.02|0.08|R|F|1994-01-05|1993-10-26|1994-01-25|DELIVER IN PERSON|TRUCK|sly among the even, expre| +71470|411207|48732|6|39|43609.02|0.05|0.00|A|F|1993-09-29|1993-11-24|1993-10-08|TAKE BACK RETURN|MAIL|te carefully carefully ironic package| +71470|148340|48341|7|12|16660.08|0.10|0.07|A|F|1993-09-09|1993-11-26|1993-09-11|TAKE BACK RETURN|AIR| deposits. spe| +71471|146622|21627|1|36|60070.32|0.10|0.01|R|F|1994-02-03|1994-02-24|1994-02-05|TAKE BACK RETURN|MAIL|ross the carefully ironic instructions | +71471|272743|10259|2|22|37746.06|0.04|0.00|A|F|1994-01-25|1994-04-08|1994-02-02|COLLECT COD|AIR|r requests| +71471|990182|27740|3|17|21626.38|0.10|0.00|A|F|1994-02-01|1994-04-10|1994-03-03|COLLECT COD|AIR| carefully bold deposits are blithely. | +71471|985771|23329|4|39|72412.47|0.05|0.04|A|F|1994-05-01|1994-04-02|1994-05-29|TAKE BACK RETURN|MAIL|atelets. carefully regular| +71496|254412|29423|1|32|43724.80|0.07|0.02|A|F|1993-02-23|1993-03-12|1993-03-09|COLLECT COD|AIR|special, bold pinto beans us| +71496|902417|2418|2|43|61032.91|0.06|0.00|R|F|1993-02-03|1993-04-06|1993-02-16|TAKE BACK RETURN|AIR|ilent requests wake | +71496|917289|17290|3|37|48330.88|0.06|0.06|A|F|1993-04-12|1993-03-24|1993-05-09|COLLECT COD|REG AIR|ly bold pac| +71496|873445|35963|4|26|36878.40|0.04|0.00|A|F|1993-02-13|1993-03-02|1993-03-15|COLLECT COD|FOB|pinto beans haggle special ideas. pac| +71497|119518|44523|1|37|56887.87|0.09|0.08|A|F|1994-10-07|1994-09-09|1994-10-09|COLLECT COD|RAIL|y final, ironic foxes. furiously e| +71498|503965|16476|1|7|13782.58|0.06|0.08|N|O|1997-12-24|1998-02-28|1997-12-31|NONE|SHIP|eodolites sleep. un| +71498|128844|16351|2|25|46821.00|0.03|0.00|N|O|1998-04-20|1998-03-20|1998-05-10|COLLECT COD|TRUCK|counts. regular, even| +71498|477516|15044|3|6|8960.94|0.02|0.06|N|O|1998-02-27|1998-01-28|1998-03-29|COLLECT COD|SHIP|nic packages. idly regular package| +71498|604461|41998|4|42|57348.06|0.05|0.00|N|O|1998-04-04|1998-02-27|1998-04-17|DELIVER IN PERSON|TRUCK|the accounts might| +71498|172140|22141|5|30|36364.20|0.00|0.02|N|O|1998-02-19|1998-01-24|1998-02-20|COLLECT COD|TRUCK|nically reg| +71499|624222|24223|1|23|26362.37|0.09|0.05|R|F|1993-03-30|1993-02-25|1993-04-07|TAKE BACK RETURN|SHIP|lthily carefully pending packages? fi| +71499|284996|47502|2|19|37638.62|0.08|0.07|A|F|1993-02-11|1993-02-11|1993-03-05|TAKE BACK RETURN|AIR|y. slyly regular pinto beans | +71499|916577|16578|3|34|54180.02|0.03|0.00|A|F|1993-04-17|1993-02-14|1993-04-30|TAKE BACK RETURN|AIR|yly after the silent requests. blithely f| +71499|904406|41961|4|8|11282.88|0.04|0.08|R|F|1993-02-04|1993-02-10|1993-02-20|COLLECT COD|REG AIR|bout the bold courts| +71499|341208|3715|5|5|6245.95|0.00|0.06|A|F|1993-05-07|1993-03-22|1993-05-24|DELIVER IN PERSON|AIR|cajole fluffily against the| +71500|462465|49993|1|17|24266.48|0.04|0.06|A|F|1994-04-06|1994-04-09|1994-04-19|NONE|RAIL|e blithely slyly unu| +71500|634363|9388|2|22|28541.26|0.01|0.00|A|F|1994-03-09|1994-04-15|1994-03-16|NONE|TRUCK|sly bold accounts c| +71500|737386|37387|3|40|56934.00|0.01|0.04|R|F|1994-02-16|1994-04-06|1994-02-25|COLLECT COD|SHIP|ackages along the blithely | +71501|619001|44026|1|5|4599.85|0.03|0.04|N|O|1997-04-07|1997-05-10|1997-04-22|NONE|FOB|ins. pending, regular packages ha| +71501|543797|18818|2|2|3681.54|0.02|0.08|N|O|1997-06-29|1997-04-23|1997-07-28|DELIVER IN PERSON|AIR|. blithely final deposits among the slyly| +71501|588300|13323|3|49|68025.72|0.06|0.08|N|O|1997-05-07|1997-05-06|1997-05-24|COLLECT COD|SHIP| unusual accounts print | +71501|549832|37363|4|26|48927.06|0.02|0.06|N|O|1997-04-15|1997-05-14|1997-04-21|COLLECT COD|REG AIR|s excuses. furiously pendi| +71501|13068|13069|5|5|4905.30|0.04|0.06|N|O|1997-06-19|1997-05-17|1997-07-18|NONE|REG AIR|ose. quickly fina| +71501|626134|13671|6|41|43464.10|0.09|0.04|N|O|1997-04-09|1997-05-25|1997-04-18|NONE|MAIL|ans wake final foxes. blithely pen| +71501|423731|48748|7|18|29784.78|0.04|0.06|N|O|1997-06-21|1997-04-30|1997-07-10|DELIVER IN PERSON|AIR|furiously bold pin| +71502|634378|46891|1|7|9186.38|0.08|0.01|A|F|1994-06-10|1994-05-09|1994-06-13|TAKE BACK RETURN|TRUCK| blithely even accounts. fin| +71502|980629|18187|2|44|75221.52|0.08|0.05|R|F|1994-04-20|1994-04-11|1994-05-17|COLLECT COD|TRUCK|furiously about the iro| +71502|431147|18672|3|21|22640.52|0.10|0.04|A|F|1994-05-16|1994-04-10|1994-05-31|NONE|TRUCK| ironic theodolites sleep| +71503|690469|2983|1|25|36485.75|0.03|0.07|N|O|1995-12-01|1995-09-27|1995-12-19|COLLECT COD|FOB|ckly? regular pinto beans along| +71503|703700|28729|2|7|11925.69|0.06|0.02|N|O|1995-10-23|1995-10-21|1995-11-17|TAKE BACK RETURN|REG AIR|foxes. furiously unusual | +71503|82125|44627|3|33|36534.96|0.05|0.06|N|O|1995-11-05|1995-10-19|1995-11-25|COLLECT COD|SHIP|ully final ideas p| +71503|268274|5790|4|37|45963.62|0.10|0.04|N|O|1995-08-27|1995-10-13|1995-09-19|COLLECT COD|MAIL|ly final foxes! carefully exp| +71528|481825|19353|1|18|32522.40|0.08|0.08|N|O|1998-06-07|1998-07-18|1998-07-06|NONE|AIR|al dolphins despite the slyly ironic | +71528|18765|18766|2|5|8418.80|0.05|0.06|N|O|1998-08-23|1998-08-07|1998-09-21|NONE|AIR|ily even courts integrate besides t| +71528|368402|43417|3|11|16174.29|0.00|0.04|N|O|1998-06-04|1998-08-09|1998-06-16|NONE|REG AIR|ole fluffily according to the slyly f| +71529|167786|17787|1|8|14830.24|0.07|0.03|R|F|1994-05-27|1994-03-25|1994-06-07|DELIVER IN PERSON|RAIL|ch pending accounts. un| +71529|978025|15583|2|34|37501.32|0.03|0.03|R|F|1994-04-26|1994-05-01|1994-05-02|COLLECT COD|SHIP|e near the even requests. fo| +71530|820113|20114|1|36|37190.52|0.10|0.04|A|F|1994-11-24|1995-01-06|1994-12-04|NONE|FOB| packages. furiously | +71530|628413|15950|2|36|48289.68|0.07|0.05|R|F|1994-12-03|1995-01-26|1994-12-28|COLLECT COD|MAIL|es are about the quickly even| +71530|730333|5362|3|32|43625.60|0.02|0.01|R|F|1995-02-22|1995-01-07|1995-03-12|COLLECT COD|REG AIR|the final platelets sleep furious| +71530|704561|29590|4|28|43834.84|0.05|0.05|A|F|1995-01-18|1995-01-21|1995-01-29|NONE|MAIL|nal theodolites hang above the pen| +71531|402998|2999|1|8|15207.76|0.07|0.07|N|O|1998-04-21|1998-05-12|1998-05-03|COLLECT COD|AIR|equests was. regular ideas | +71531|182082|7089|2|28|32594.24|0.08|0.01|N|O|1998-06-20|1998-05-16|1998-07-17|DELIVER IN PERSON|FOB| ideas haggle carefu| +71531|243648|18657|3|24|38199.12|0.04|0.04|N|O|1998-06-30|1998-05-15|1998-07-29|COLLECT COD|MAIL|losely bold foxes. ex| +71532|291309|28825|1|17|22104.93|0.07|0.02|A|F|1992-09-10|1992-10-12|1992-09-20|TAKE BACK RETURN|SHIP|ts along th| +71532|15589|15590|2|50|75229.00|0.08|0.06|R|F|1992-11-02|1992-10-11|1992-11-30|COLLECT COD|SHIP|. packages wake sly| +71532|3912|3913|3|38|69004.58|0.05|0.05|A|F|1992-11-17|1992-09-10|1992-12-16|NONE|TRUCK|uests. carefully bold ideas haggle pending | +71532|741314|28857|4|8|10842.24|0.08|0.07|R|F|1992-10-30|1992-09-05|1992-11-04|COLLECT COD|MAIL|s haggle c| +71533|7849|32850|1|24|42164.16|0.07|0.04|N|O|1998-06-14|1998-06-11|1998-06-21|NONE|AIR|ss the deposits detect slyly| +71534|59378|9379|1|26|34771.62|0.06|0.07|A|F|1992-05-05|1992-02-24|1992-05-28|DELIVER IN PERSON|REG AIR|he ironic, even ideas? furiously regula| +71535|264366|14367|1|29|38580.15|0.04|0.00|N|O|1996-12-01|1996-09-28|1996-12-22|DELIVER IN PERSON|REG AIR| ideas: carefully express packages| +71535|190943|3447|2|49|99663.06|0.05|0.03|N|O|1996-08-06|1996-10-25|1996-09-03|TAKE BACK RETURN|RAIL|e ironic packages. deposits eat. al| +71535|165783|3293|3|10|18487.80|0.10|0.02|N|O|1996-10-02|1996-10-17|1996-10-22|DELIVER IN PERSON|FOB|s use. bold, ironic Tiresias| +71535|301284|26297|4|43|55266.61|0.01|0.07|N|O|1996-10-09|1996-09-14|1996-10-21|DELIVER IN PERSON|MAIL|. grouches haggle furiously whitho| +71535|664558|2098|5|7|10657.64|0.10|0.08|N|O|1996-11-01|1996-09-19|1996-11-26|TAKE BACK RETURN|RAIL|s. slyly unusual decoys sleep slyly after t| +71535|225238|37743|6|8|9305.76|0.04|0.04|N|O|1996-09-23|1996-09-04|1996-10-14|DELIVER IN PERSON|SHIP|ironic deposits detect | +71535|572267|22268|7|37|49551.88|0.00|0.00|N|O|1996-08-30|1996-10-13|1996-09-04|TAKE BACK RETURN|REG AIR|usly final accounts | +71560|85434|22938|1|17|24130.31|0.06|0.01|A|F|1994-12-13|1994-12-30|1995-01-08|NONE|RAIL|he carefully express foxes: accounts wake | +71561|847908|22941|1|32|59387.52|0.04|0.02|N|O|1997-01-21|1997-01-25|1997-02-17|NONE|MAIL|sleep. special acc| +71561|775996|1027|2|46|95310.16|0.03|0.06|N|O|1997-01-09|1997-01-26|1997-01-27|NONE|REG AIR|fter the eve| +71561|164552|2062|3|20|32331.00|0.00|0.06|N|O|1997-01-06|1997-01-26|1997-01-28|NONE|SHIP|. slyly final courts a| +71561|621872|34385|4|31|55609.04|0.01|0.06|N|O|1997-02-18|1997-01-24|1997-02-22|COLLECT COD|TRUCK|quickly about the blithely f| +71561|786930|24476|5|10|20169.00|0.04|0.03|N|O|1996-12-29|1997-02-15|1997-01-22|COLLECT COD|AIR|e above the e| +71561|928141|40660|6|41|47933.10|0.04|0.03|N|O|1997-02-27|1997-02-20|1997-03-29|DELIVER IN PERSON|RAIL|ter the furiously | +71562|65968|3472|1|42|81226.32|0.06|0.03|A|F|1994-07-27|1994-05-31|1994-08-22|COLLECT COD|MAIL| the final dependencies. express i| +71562|710111|47654|2|48|53811.84|0.05|0.07|A|F|1994-06-03|1994-07-06|1994-06-05|DELIVER IN PERSON|REG AIR|equests. accounts boost slyl| +71562|822992|48025|3|44|84257.80|0.08|0.02|R|F|1994-07-17|1994-05-20|1994-07-31|COLLECT COD|AIR| after the special, regul| +71562|22666|10167|4|44|69901.04|0.01|0.03|R|F|1994-04-18|1994-06-09|1994-04-29|DELIVER IN PERSON|MAIL|ly pending excuses.| +71563|472818|10346|1|1|1790.79|0.07|0.03|N|O|1995-08-16|1995-09-09|1995-09-03|TAKE BACK RETURN|REG AIR|blithely bold excus| +71563|647063|34600|2|42|42421.26|0.07|0.01|N|O|1995-09-08|1995-10-21|1995-09-19|TAKE BACK RETURN|REG AIR|even packages. requests a| +71563|175780|13290|3|23|42682.94|0.01|0.08|N|O|1995-10-03|1995-10-05|1995-10-04|TAKE BACK RETURN|FOB|. blithely ironic dolphins a| +71563|333596|21115|4|40|65183.20|0.02|0.02|N|O|1995-10-14|1995-10-18|1995-11-06|DELIVER IN PERSON|SHIP|sts. pending theodolites according | +71564|860785|35820|1|45|78558.30|0.00|0.01|N|O|1996-05-22|1996-06-30|1996-06-09|DELIVER IN PERSON|MAIL|lyly furiously even request| +71564|203814|16319|2|46|79018.80|0.07|0.00|N|O|1996-06-17|1996-06-08|1996-06-26|DELIVER IN PERSON|REG AIR|s are blithely furiou| +71564|487318|24846|3|33|43074.57|0.04|0.00|N|O|1996-07-17|1996-06-07|1996-08-12|COLLECT COD|REG AIR|posits boos| +71564|340886|3393|4|12|23122.44|0.09|0.08|N|O|1996-08-08|1996-06-27|1996-08-15|TAKE BACK RETURN|TRUCK|ckages. slyly regular de| +71564|263298|814|5|16|20180.48|0.08|0.05|N|O|1996-08-01|1996-06-03|1996-08-20|TAKE BACK RETURN|AIR|oss the slowly bo| +71564|232814|45319|6|36|62884.80|0.04|0.04|N|O|1996-08-09|1996-06-24|1996-09-05|DELIVER IN PERSON|REG AIR|efully ironic theodolites was blithely. pac| +71565|263950|38961|1|40|76557.60|0.03|0.05|N|O|1996-06-05|1996-06-09|1996-06-19|COLLECT COD|SHIP|equests across the ir| +71565|207301|44814|2|15|18124.35|0.07|0.06|N|O|1996-05-26|1996-05-25|1996-06-06|DELIVER IN PERSON|TRUCK|mong the furiously ironic excuses d| +71565|103591|3592|3|14|22324.26|0.10|0.00|N|O|1996-06-08|1996-05-17|1996-06-21|NONE|RAIL|iously silent packages. final packag| +71566|139404|1907|1|1|1443.40|0.10|0.03|N|O|1997-12-24|1998-02-20|1998-01-17|DELIVER IN PERSON|RAIL|ly regular foxes integra| +71567|393098|30620|1|24|28585.92|0.10|0.00|R|F|1993-10-23|1993-07-30|1993-11-08|NONE|RAIL|foxes about th| +71567|782890|20436|2|31|61158.66|0.01|0.04|A|F|1993-07-19|1993-09-15|1993-07-25|COLLECT COD|FOB|press requests against the pending, | +71567|28635|41136|3|16|25018.08|0.06|0.07|A|F|1993-08-08|1993-08-07|1993-08-11|NONE|FOB|quick platelets n| +71567|261173|11174|4|10|11341.60|0.05|0.07|A|F|1993-07-23|1993-08-29|1993-08-10|TAKE BACK RETURN|MAIL|xcuses haggle fluffily. slyly bold deposits| +71592|146268|21273|1|27|35485.02|0.07|0.06|R|F|1992-11-14|1992-11-04|1992-11-30|COLLECT COD|TRUCK| boost across the careful| +71593|196542|46543|1|7|11469.78|0.09|0.06|A|F|1994-08-27|1994-07-12|1994-09-23|COLLECT COD|TRUCK|old ideas wake fluffily quickly si| +71593|268959|6475|2|44|84829.36|0.03|0.01|R|F|1994-06-29|1994-08-05|1994-07-03|NONE|TRUCK| ironic deposits. carefully ir| +71594|801368|1369|1|28|35540.96|0.09|0.02|A|F|1993-05-16|1993-06-21|1993-05-17|DELIVER IN PERSON|MAIL| the boldly even requests. fox| +71594|582685|32686|2|13|22979.58|0.08|0.08|R|F|1993-05-18|1993-06-05|1993-06-13|NONE|AIR|ly regular platelets are across the pending| +71594|175143|25144|3|5|6090.70|0.03|0.08|A|F|1993-05-30|1993-06-09|1993-06-10|NONE|SHIP|longside of the bravely bold reques| +71594|623241|48266|4|40|46568.40|0.06|0.08|R|F|1993-05-18|1993-06-04|1993-05-26|TAKE BACK RETURN|REG AIR|y brave instruct| +71594|801363|1364|5|50|63216.00|0.08|0.08|A|F|1993-07-15|1993-06-06|1993-08-02|COLLECT COD|FOB|kages sleep furiously above the fur| +71594|499475|37003|6|35|51605.75|0.01|0.00|R|F|1993-07-20|1993-05-12|1993-08-02|COLLECT COD|REG AIR|ual accounts solve. blithely| +71594|665380|2920|7|22|29597.70|0.07|0.07|A|F|1993-04-19|1993-06-19|1993-05-19|DELIVER IN PERSON|REG AIR| after the fluffily | +71595|27455|2456|1|8|11059.60|0.00|0.03|N|O|1997-02-13|1996-12-21|1997-02-20|TAKE BACK RETURN|AIR|ns haggle furiou| +71595|433160|33161|2|48|52470.72|0.02|0.05|N|O|1997-02-16|1997-02-08|1997-03-12|NONE|FOB|ar instructions doubt bli| +71595|118207|5714|3|2|2450.40|0.02|0.03|N|O|1996-12-22|1996-12-29|1997-01-14|COLLECT COD|FOB|lyly special accounts cajole | +71595|691311|16338|4|45|58602.60|0.02|0.01|N|O|1996-12-15|1997-02-07|1996-12-19|TAKE BACK RETURN|AIR|uriously; carefully pending accounts abo| +71595|849096|36645|5|2|2090.10|0.00|0.06|N|O|1996-12-04|1996-12-28|1996-12-17|TAKE BACK RETURN|RAIL|sly regular pa| +71596|36441|36442|1|27|37190.88|0.01|0.05|A|F|1992-10-26|1992-11-06|1992-10-31|NONE|TRUCK| the blithely sp| +71597|355008|42530|1|39|41456.61|0.03|0.04|N|O|1996-03-07|1996-03-24|1996-03-31|COLLECT COD|AIR|ly regular packages sleep slyly unusual p| +71597|618646|6183|2|48|75101.28|0.01|0.08|N|O|1996-05-05|1996-03-30|1996-06-03|TAKE BACK RETURN|FOB|al, final grouches use | +71597|575705|25706|3|45|80130.60|0.04|0.05|N|O|1996-02-07|1996-03-22|1996-03-08|NONE|MAIL|ironic requests cajole between the slyly b| +71598|468686|31196|1|22|36402.52|0.03|0.01|A|F|1995-01-26|1995-03-07|1995-02-06|DELIVER IN PERSON|RAIL|y silent foxes. slyly regular requests affi| +71598|197748|10252|2|38|70138.12|0.06|0.08|A|F|1995-04-05|1995-03-19|1995-04-27|COLLECT COD|REG AIR|ly ironic accounts. depo| +71599|274250|36756|1|2|2448.48|0.05|0.06|R|F|1994-04-03|1994-04-15|1994-04-14|TAKE BACK RETURN|MAIL|asymptotes wake furiousl| +71599|312721|37734|2|41|71082.11|0.02|0.07|R|F|1994-03-17|1994-03-14|1994-04-11|TAKE BACK RETURN|FOB|uffily unusual depos| +71599|892357|17392|3|35|47225.85|0.00|0.08|R|F|1994-04-24|1994-04-26|1994-04-25|TAKE BACK RETURN|FOB|ly special accounts. final, ironic court| +71599|843295|18328|4|43|53244.75|0.07|0.00|A|F|1994-06-02|1994-04-15|1994-06-16|DELIVER IN PERSON|REG AIR| notornis according to the dep| +71624|687008|24548|1|22|21889.34|0.01|0.02|N|O|1998-08-24|1998-09-19|1998-09-21|TAKE BACK RETURN|REG AIR|ach final requests; | +71624|542170|42171|2|38|46061.70|0.00|0.01|N|O|1998-10-17|1998-10-07|1998-11-03|TAKE BACK RETURN|AIR|y express packages snooze blithely sl| +71624|245682|8187|3|36|58596.12|0.04|0.08|N|O|1998-10-29|1998-09-03|1998-11-10|TAKE BACK RETURN|TRUCK|e deposits. foxes use furiousl| +71624|161672|36679|4|24|41608.08|0.05|0.08|N|O|1998-11-12|1998-09-05|1998-11-19|TAKE BACK RETURN|MAIL|. blithely express asymptotes use about the| +71625|216185|16186|1|50|55058.50|0.05|0.06|R|F|1992-07-02|1992-07-12|1992-07-10|NONE|FOB|ts. final dependencie| +71625|416058|16059|2|10|9740.30|0.10|0.07|A|F|1992-06-16|1992-08-31|1992-06-30|DELIVER IN PERSON|AIR|ar pinto beans. bold ideas b| +71625|676466|26467|3|12|17309.16|0.02|0.07|A|F|1992-07-01|1992-08-11|1992-07-08|DELIVER IN PERSON|FOB|structions sleep accounts. slyl| +71625|360253|47775|4|46|60409.04|0.09|0.01|A|F|1992-06-17|1992-07-17|1992-07-17|COLLECT COD|SHIP|according to the carefull| +71626|116127|3634|1|20|22862.40|0.09|0.08|R|F|1993-06-08|1993-06-21|1993-07-08|COLLECT COD|FOB|ounts. quickly unus| +71626|746040|21069|2|31|33666.31|0.07|0.01|R|F|1993-07-14|1993-08-08|1993-07-15|NONE|MAIL|es wake. ironic accounts ar| +71626|680467|30468|3|12|17369.16|0.07|0.05|R|F|1993-07-01|1993-06-26|1993-07-17|TAKE BACK RETURN|MAIL|ns x-ray slyl| +71626|598728|36262|4|23|42014.10|0.08|0.06|R|F|1993-07-20|1993-06-29|1993-07-23|TAKE BACK RETURN|AIR|packages. carefully b| +71626|811573|49122|5|46|68288.38|0.10|0.06|R|F|1993-08-04|1993-06-26|1993-09-02|DELIVER IN PERSON|FOB| fluffily unusual | +71627|898191|23226|1|7|8324.05|0.04|0.06|R|F|1993-08-27|1993-06-23|1993-09-03|DELIVER IN PERSON|TRUCK| engage dolphins. deposits are blith| +71627|891642|29194|2|48|78412.80|0.01|0.07|A|F|1993-05-29|1993-07-01|1993-06-14|COLLECT COD|AIR|ackages cajole according to the depo| +71627|821546|9095|3|16|23480.00|0.05|0.04|A|F|1993-06-03|1993-07-18|1993-06-15|DELIVER IN PERSON|SHIP|ly special ideas detect according to| +71627|711411|48954|4|42|59739.96|0.09|0.05|R|F|1993-07-16|1993-08-07|1993-07-25|TAKE BACK RETURN|SHIP|ly along the brave requests| +71627|682034|32035|5|40|40640.00|0.00|0.02|R|F|1993-08-21|1993-06-23|1993-09-18|TAKE BACK RETURN|REG AIR|hrough the never fina| +71628|751297|13813|1|35|47189.10|0.05|0.07|N|F|1995-05-25|1995-05-16|1995-06-24|COLLECT COD|FOB|e courts. slyly ruthless ins| +71628|33633|8634|2|45|70498.35|0.10|0.06|A|F|1995-03-28|1995-06-02|1995-04-17|TAKE BACK RETURN|FOB|furiously final instruc| +71629|279405|4416|1|13|17997.07|0.07|0.07|R|F|1994-11-28|1994-09-17|1994-12-14|COLLECT COD|RAIL|fully slyly final sh| +71629|944086|19123|2|10|11300.40|0.08|0.06|R|F|1994-12-08|1994-09-24|1994-12-27|NONE|TRUCK|ost slyly across the furiousl| +71629|241511|4016|3|23|33407.50|0.00|0.08|A|F|1994-10-25|1994-10-12|1994-10-26|COLLECT COD|AIR|deposits accor| +71630|259204|34215|1|42|48853.98|0.10|0.05|R|F|1993-08-07|1993-08-19|1993-08-29|COLLECT COD|SHIP|ideas! frays cajo| +71631|577440|14974|1|46|69801.32|0.08|0.05|A|F|1994-01-16|1994-01-17|1994-02-08|DELIVER IN PERSON|FOB|uriously reg| +71631|22074|9575|2|48|47811.36|0.08|0.03|R|F|1993-12-13|1994-02-07|1993-12-22|COLLECT COD|TRUCK|kages haggle qui| +71631|987325|24883|3|7|9885.96|0.02|0.08|A|F|1994-02-21|1994-02-15|1994-03-08|TAKE BACK RETURN|MAIL|inst the furiou| +71631|961103|36142|4|3|3492.18|0.06|0.05|R|F|1994-01-17|1994-02-14|1994-01-31|DELIVER IN PERSON|AIR| about the pending, final theodolites p| +71631|249492|24501|5|30|43244.40|0.10|0.06|R|F|1994-01-12|1994-02-27|1994-01-22|TAKE BACK RETURN|TRUCK|accounts unwind according to the furiou| +71631|208366|20871|6|46|58620.10|0.01|0.01|R|F|1994-02-01|1994-02-10|1994-02-11|TAKE BACK RETURN|REG AIR|gular theodolites| +71656|835101|47618|1|7|7252.42|0.03|0.02|A|F|1994-03-20|1994-05-27|1994-03-29|NONE|SHIP|furious pinto beans cajole carefully. i| +71656|529883|42394|2|41|78427.26|0.01|0.05|R|F|1994-03-12|1994-05-13|1994-03-28|COLLECT COD|TRUCK|tions boost. slyly ironic requests accordi| +71656|732419|19962|3|2|2902.76|0.02|0.04|A|F|1994-04-27|1994-05-27|1994-05-18|TAKE BACK RETURN|FOB|s. foxes alongs| +71657|134587|34588|1|1|1621.58|0.02|0.03|N|O|1998-06-05|1998-04-29|1998-06-13|NONE|TRUCK|ckly slyly special excuses. blithely re| +71658|849201|24234|1|6|6900.96|0.02|0.08|A|F|1993-07-30|1993-10-18|1993-08-02|NONE|REG AIR|. slyly even packages around the | +71658|513080|38101|2|10|10930.60|0.02|0.01|R|F|1993-11-05|1993-10-02|1993-11-16|DELIVER IN PERSON|AIR| ironic accounts. slyly expr| +71659|535756|10777|1|45|80627.85|0.05|0.02|N|O|1996-03-20|1996-01-14|1996-03-22|DELIVER IN PERSON|SHIP|gular pint| +71659|436576|24101|2|17|25713.35|0.03|0.00|N|O|1996-03-10|1995-12-20|1996-03-30|DELIVER IN PERSON|SHIP|ic accounts. furiously regu| +71659|529305|4326|3|33|44031.24|0.00|0.01|N|O|1996-01-13|1996-02-10|1996-01-25|NONE|AIR|l requests. carefully | +71659|26938|26939|4|39|72732.27|0.05|0.04|N|O|1995-12-23|1996-02-07|1995-12-25|TAKE BACK RETURN|REG AIR|quickly re| +71659|739379|39380|5|49|69498.66|0.04|0.07|N|O|1996-02-07|1996-01-22|1996-02-25|TAKE BACK RETURN|FOB|efully regular pinto beans are excuses.| +71660|605751|5752|1|1|1656.72|0.06|0.04|R|F|1994-08-25|1994-06-29|1994-09-15|TAKE BACK RETURN|MAIL|lent dolphins affix sl| +71660|847622|10139|2|15|23543.70|0.07|0.04|R|F|1994-08-26|1994-06-20|1994-09-22|TAKE BACK RETURN|SHIP|ular dolphi| +71661|86020|48522|1|31|31186.62|0.07|0.06|N|O|1997-02-07|1997-01-19|1997-02-17|COLLECT COD|RAIL|unts along the quickly| +71661|723487|48516|2|5|7552.25|0.09|0.06|N|O|1996-11-30|1996-11-28|1996-12-24|NONE|FOB|ithely ironic, silent dolphins. | +71661|638815|26352|3|32|56120.96|0.06|0.03|N|O|1997-01-27|1997-01-18|1997-02-26|TAKE BACK RETURN|AIR|ronic platelets. express, even s| +71661|548327|10838|4|47|64639.10|0.04|0.04|N|O|1997-01-27|1996-12-09|1997-02-18|COLLECT COD|FOB|e carefully express requ| +71661|723666|48695|5|10|16896.30|0.03|0.02|N|O|1996-11-16|1997-01-10|1996-12-16|DELIVER IN PERSON|REG AIR|deas. furiously| +71661|650542|38082|6|13|19402.63|0.03|0.08|N|O|1996-12-15|1997-01-14|1996-12-31|DELIVER IN PERSON|MAIL|ts wake fluffily. furiously regu| +71662|252543|27554|1|42|62812.26|0.03|0.03|R|F|1992-04-24|1992-04-15|1992-05-20|COLLECT COD|MAIL|, final instructions wake carefull| +71662|477009|14537|2|9|8873.82|0.00|0.02|A|F|1992-05-01|1992-04-09|1992-05-08|DELIVER IN PERSON|SHIP|ess packages would sleep quickly after t| +71662|79651|4654|3|3|4891.95|0.00|0.02|R|F|1992-05-06|1992-04-06|1992-05-08|TAKE BACK RETURN|FOB|kly quickly final instructions. fin| +71663|742961|30504|1|42|84165.06|0.04|0.04|A|F|1992-09-02|1992-08-06|1992-09-04|DELIVER IN PERSON|RAIL|epitaphs maintain blithely. expre| +71688|278833|3844|1|30|54354.60|0.06|0.07|R|F|1993-06-28|1993-05-28|1993-07-11|DELIVER IN PERSON|SHIP|e pending, express pinto beans. final| +71688|342571|17584|2|31|50020.36|0.06|0.08|A|F|1993-05-28|1993-04-29|1993-06-09|DELIVER IN PERSON|SHIP|y careful ideas shou| +71688|578413|40925|3|3|4474.17|0.06|0.03|A|F|1993-06-05|1993-04-13|1993-06-24|NONE|TRUCK|fully unusual ideas thrash furiously even| +71688|374991|37499|4|32|66111.36|0.04|0.03|R|F|1993-06-18|1993-04-22|1993-07-14|DELIVER IN PERSON|FOB|ongside of th| +71688|460290|22800|5|15|18754.05|0.06|0.03|R|F|1993-05-07|1993-04-15|1993-05-09|NONE|AIR|e unusual, final asymptotes. ironic, iron| +71688|80038|42540|6|36|36649.08|0.10|0.03|R|F|1993-04-11|1993-04-10|1993-04-19|TAKE BACK RETURN|TRUCK|xpress packages haggle furiously carefully | +71688|188742|1246|7|5|9153.70|0.04|0.02|R|F|1993-03-09|1993-04-19|1993-03-21|TAKE BACK RETURN|TRUCK| the regular requests. furiously regul| +71689|171318|21319|1|2|2778.62|0.09|0.00|N|O|1997-09-27|1997-11-02|1997-10-15|TAKE BACK RETURN|TRUCK|es according to the furi| +71689|330510|18029|2|30|46215.00|0.09|0.03|N|O|1997-11-23|1997-11-18|1997-12-22|COLLECT COD|AIR|fix. furiously even pinto beans cajol| +71689|867075|17076|3|27|28134.81|0.10|0.07|N|O|1998-01-05|1997-11-18|1998-01-13|NONE|TRUCK|sleep furiously regular, expre| +71689|916649|4204|4|44|73286.40|0.03|0.05|N|O|1997-09-08|1997-11-04|1997-09-10|NONE|SHIP| pinto beans integrate fluff| +71690|959091|21611|1|50|57502.50|0.01|0.08|N|O|1996-12-03|1996-11-05|1996-12-17|COLLECT COD|RAIL|quickly regular instructio| +71690|432815|20340|2|48|83893.92|0.02|0.07|N|O|1996-10-10|1996-09-23|1996-10-11|COLLECT COD|AIR|ves across the carefully final theod| +71691|361860|24368|1|4|7687.40|0.08|0.05|N|O|1995-11-05|1996-01-03|1995-12-05|NONE|SHIP|nusual foxes. ironic requests nag| +71691|777996|3027|2|38|78810.48|0.10|0.03|N|O|1995-12-22|1995-12-06|1995-12-28|NONE|TRUCK|ing pinto beans are. sometimes regular requ| +71692|888935|38936|1|30|57716.70|0.10|0.08|R|F|1992-04-16|1992-02-27|1992-04-18|TAKE BACK RETURN|REG AIR|. blithely regular requests affix| +71693|815882|28399|1|32|57530.88|0.02|0.04|N|O|1996-04-16|1996-04-03|1996-05-03|TAKE BACK RETURN|REG AIR|s. furiously pending accou| +71693|512716|12717|2|5|8643.45|0.08|0.02|N|O|1996-02-07|1996-04-13|1996-02-08|TAKE BACK RETURN|REG AIR| accounts mu| +71693|204644|4645|3|3|4645.89|0.09|0.08|N|O|1996-03-23|1996-03-16|1996-03-28|NONE|AIR| final platelets.| +71693|446688|34213|4|19|31058.54|0.09|0.02|N|O|1996-03-09|1996-04-11|1996-04-06|TAKE BACK RETURN|AIR|ctions through th| +71693|480565|30566|5|12|18546.48|0.04|0.04|N|O|1996-02-16|1996-03-04|1996-03-16|DELIVER IN PERSON|AIR|ly about the s| +71693|850940|25975|6|28|52945.20|0.00|0.03|N|O|1996-02-22|1996-04-12|1996-03-21|DELIVER IN PERSON|REG AIR|ideas cajole among | +71693|743567|6082|7|1|1610.53|0.06|0.04|N|O|1996-02-10|1996-04-12|1996-03-07|COLLECT COD|TRUCK|onic theodolites. | +71694|123824|23825|1|8|14782.56|0.09|0.05|R|F|1994-07-04|1994-07-19|1994-07-15|TAKE BACK RETURN|REG AIR|y blithe ac| +71694|94338|44339|2|18|23981.94|0.10|0.05|A|F|1994-06-24|1994-07-07|1994-07-04|NONE|MAIL|l packages. silent depo| +71694|537254|37255|3|5|6456.15|0.10|0.08|R|F|1994-08-20|1994-06-29|1994-09-10|NONE|REG AIR|ons hang slyly| +71694|615133|15134|4|19|19913.90|0.06|0.01|A|F|1994-05-21|1994-07-07|1994-06-07|DELIVER IN PERSON|MAIL|lar excuses shall | +71694|535203|10224|5|9|11143.62|0.01|0.07|R|F|1994-08-10|1994-06-17|1994-08-24|COLLECT COD|MAIL|sleep furiously after the ca| +71694|155606|43116|6|34|56494.40|0.02|0.05|A|F|1994-06-07|1994-07-19|1994-06-16|DELIVER IN PERSON|SHIP|olites. pending, silent plate| +71695|655165|17679|1|44|49285.72|0.10|0.08|N|O|1996-07-17|1996-05-28|1996-08-06|TAKE BACK RETURN|FOB| dolphins boost carefully r| +71695|352586|2587|2|38|62265.66|0.01|0.05|N|O|1996-07-26|1996-06-14|1996-08-15|COLLECT COD|REG AIR|e about the slyly ironic platelets. qu| +71720|388435|25957|1|24|36562.08|0.03|0.04|N|O|1996-04-26|1996-06-01|1996-05-26|TAKE BACK RETURN|AIR|counts-- ironic packages cajole about| +71720|413730|1255|2|24|39449.04|0.03|0.07|N|O|1996-04-30|1996-05-18|1996-05-04|NONE|SHIP| foxes doubt fluffily furiously regular de| +71720|543970|6481|3|19|38265.05|0.06|0.03|N|O|1996-07-16|1996-06-21|1996-08-12|TAKE BACK RETURN|MAIL|ts. quickly ironic fox| +71721|10875|23376|1|19|33931.53|0.09|0.06|R|F|1994-06-23|1994-06-29|1994-07-17|DELIVER IN PERSON|FOB|accounts are around the unusual, pend| +71721|760264|22780|2|43|56941.89|0.10|0.07|A|F|1994-08-17|1994-07-01|1994-09-15|COLLECT COD|TRUCK| around the special i| +71721|750354|355|3|33|46342.56|0.01|0.08|A|F|1994-06-08|1994-07-26|1994-07-01|NONE|FOB|carefully ironic requests nag aga| +71721|187943|447|4|38|77175.72|0.08|0.05|R|F|1994-05-17|1994-08-11|1994-06-10|COLLECT COD|MAIL|al pinto bea| +71721|752358|14874|5|35|49361.20|0.03|0.08|A|F|1994-05-23|1994-08-05|1994-06-06|DELIVER IN PERSON|TRUCK|ously across the blithely| +71721|875102|137|6|1|1077.06|0.08|0.03|A|F|1994-07-02|1994-08-10|1994-07-09|DELIVER IN PERSON|AIR| accounts.| +71722|197506|47507|1|1|1603.50|0.07|0.06|N|O|1996-02-14|1996-02-29|1996-03-07|TAKE BACK RETURN|RAIL|e pinto beans acros| +71722|469520|7048|2|21|31279.50|0.05|0.02|N|O|1996-04-24|1996-03-08|1996-05-14|COLLECT COD|REG AIR|blithely abo| +71722|209007|46520|3|16|14655.84|0.02|0.03|N|O|1996-02-07|1996-02-08|1996-02-29|TAKE BACK RETURN|MAIL|usual packages sleep fluffily. sly| +71723|15798|40799|1|21|35989.59|0.03|0.07|R|F|1993-11-04|1993-10-15|1993-11-06|DELIVER IN PERSON|SHIP|e quickly unusual depos| +71723|510008|47539|2|32|32575.36|0.03|0.01|A|F|1993-10-16|1993-09-28|1993-11-09|COLLECT COD|RAIL|ithely quickly regular ideas. special, bold| +71724|192531|17538|1|32|51952.96|0.01|0.00|R|F|1994-10-14|1994-10-17|1994-11-02|NONE|AIR|nding platelets boost reques| +71724|857318|19836|2|22|28055.94|0.09|0.01|R|F|1994-12-01|1994-10-30|1994-12-28|COLLECT COD|SHIP|sly slyly pending frets. | +71724|929310|16865|3|41|54910.07|0.03|0.00|R|F|1994-11-06|1994-10-10|1994-11-17|TAKE BACK RETURN|FOB|s wake pending packages.| +71725|751111|13627|1|20|23241.60|0.06|0.00|R|F|1994-04-20|1994-03-04|1994-05-11|NONE|TRUCK|as haggle above the furiously reg| +71725|909276|21795|2|1|1285.23|0.04|0.05|R|F|1994-05-22|1994-04-17|1994-06-10|COLLECT COD|AIR|kages. ironic inst| +71725|192407|42408|3|48|71971.20|0.07|0.02|A|F|1994-02-23|1994-03-09|1994-03-07|DELIVER IN PERSON|AIR|ticing ideas. deposits across| +71725|768037|43068|4|22|24310.00|0.00|0.05|A|F|1994-03-09|1994-03-04|1994-04-03|DELIVER IN PERSON|REG AIR|arefully silent deposits snooze sl| +71725|390614|40615|5|4|6818.40|0.10|0.04|R|F|1994-04-17|1994-03-17|1994-04-18|TAKE BACK RETURN|RAIL|ound the even ideas. fu| +71725|39721|39722|6|19|31553.68|0.07|0.03|R|F|1994-03-06|1994-03-06|1994-03-29|COLLECT COD|TRUCK| beans. special, bold requests detect slyl| +71725|584141|9164|7|31|37978.72|0.10|0.06|R|F|1994-04-01|1994-04-08|1994-04-16|NONE|REG AIR|ular requests haggle blithely. deposit| +71726|645210|32747|1|13|15017.34|0.04|0.01|N|O|1997-01-20|1997-02-21|1997-02-11|TAKE BACK RETURN|TRUCK|uests. furiously bold instr| +71726|39330|39331|2|13|16501.29|0.00|0.05|N|O|1997-02-15|1997-02-07|1997-02-26|NONE|RAIL|ding packages hinder blithely regular idea| +71726|2634|15135|3|44|67611.72|0.04|0.07|N|O|1997-02-21|1997-03-01|1997-02-24|NONE|AIR|nusual dolphins? pending| +71726|257649|20155|4|39|62658.57|0.10|0.07|N|O|1997-04-01|1997-02-03|1997-05-01|TAKE BACK RETURN|FOB|after the ironic deposits. ideas | +71727|761532|36563|1|23|36650.50|0.00|0.05|A|F|1992-04-05|1992-02-19|1992-04-06|COLLECT COD|FOB|s. slyly final | +71727|61135|48639|2|30|32883.90|0.04|0.03|A|F|1992-02-01|1992-02-17|1992-02-04|TAKE BACK RETURN|TRUCK|sual theodolites. slyly reg| +71727|482016|44526|3|16|15967.84|0.10|0.07|A|F|1992-02-09|1992-04-13|1992-02-22|COLLECT COD|MAIL|ending pinto beans. excus| +71727|242008|4513|4|32|30399.68|0.03|0.07|A|F|1992-03-22|1992-04-02|1992-04-10|NONE|MAIL|thely regu| +71752|419062|31571|1|8|7848.32|0.08|0.01|N|O|1996-09-28|1996-08-01|1996-10-26|COLLECT COD|REG AIR|posits among the courts nag quickly acros| +71752|174345|11855|2|42|59612.28|0.04|0.08|N|O|1996-08-08|1996-08-06|1996-09-05|DELIVER IN PERSON|SHIP|regular requests. regula| +71752|210707|35716|3|46|74413.74|0.09|0.00|N|O|1996-08-31|1996-08-23|1996-09-14|DELIVER IN PERSON|SHIP|ly regular requests alo| +71752|338479|986|4|15|22761.90|0.05|0.06|N|O|1996-06-19|1996-08-15|1996-07-19|DELIVER IN PERSON|MAIL|cies cajole| +71752|811299|36332|5|48|58092.00|0.02|0.06|N|O|1996-09-24|1996-08-05|1996-10-07|DELIVER IN PERSON|FOB|egrate carefully about the fluffily regu| +71752|497994|10504|6|9|17927.73|0.09|0.02|N|O|1996-07-08|1996-08-23|1996-07-25|DELIVER IN PERSON|FOB|ove the fluffily bold| +71753|500080|81|1|6|6480.36|0.10|0.00|R|F|1993-07-27|1993-05-26|1993-08-05|NONE|TRUCK|ironic ideas c| +71753|842634|30183|2|41|64640.19|0.02|0.00|R|F|1993-05-28|1993-05-21|1993-06-09|TAKE BACK RETURN|SHIP|ctions haggle | +71753|136401|36402|3|37|53183.80|0.09|0.02|R|F|1993-05-07|1993-05-20|1993-05-28|DELIVER IN PERSON|AIR|ly regular theodolite| +71753|482036|32037|4|12|12216.12|0.02|0.02|R|F|1993-06-07|1993-06-12|1993-07-04|DELIVER IN PERSON|REG AIR|o the special inst| +71754|621524|34037|1|50|72274.50|0.05|0.05|A|F|1993-07-08|1993-06-19|1993-07-26|COLLECT COD|TRUCK|cial dependenc| +71754|939341|1860|2|3|4140.90|0.01|0.00|A|F|1993-07-18|1993-06-10|1993-08-10|DELIVER IN PERSON|SHIP|usly regular foxes haggle b| +71754|496663|46664|3|18|29873.52|0.06|0.08|R|F|1993-06-10|1993-06-13|1993-06-22|COLLECT COD|REG AIR|phins accordi| +71754|403031|15540|4|16|14944.16|0.10|0.07|R|F|1993-08-02|1993-06-20|1993-08-04|COLLECT COD|REG AIR|ajole carefully regular packages. carefu| +71755|931992|7029|1|38|76910.10|0.05|0.05|A|F|1994-10-02|1994-11-02|1994-10-24|NONE|TRUCK|. blithely regular e| +71755|977146|39666|2|44|53816.40|0.04|0.05|R|F|1994-09-08|1994-10-05|1994-10-07|DELIVER IN PERSON|AIR|ts are. ideas nag at t| +71755|892418|29970|3|12|16924.44|0.03|0.05|A|F|1994-11-29|1994-09-30|1994-12-24|NONE|MAIL|nal warthogs sleep carefully regular, fi| +71755|854712|29747|4|33|55000.11|0.07|0.05|A|F|1994-11-14|1994-10-09|1994-12-03|NONE|FOB|l deposits. specia| +71755|143090|18095|5|34|38525.06|0.02|0.02|R|F|1994-09-15|1994-09-12|1994-09-16|DELIVER IN PERSON|MAIL|eans-- slyly| +71756|262634|25140|1|35|55881.70|0.02|0.07|N|O|1996-12-12|1996-12-16|1997-01-06|DELIVER IN PERSON|REG AIR|ly ironic accounts. fluffy accounts acr| +71757|432780|20305|1|47|80499.72|0.09|0.06|A|F|1992-11-21|1992-10-03|1992-12-09|COLLECT COD|SHIP|ular deposits. quickly reg| +71758|687506|37507|1|3|4480.41|0.03|0.01|R|F|1993-09-16|1993-09-08|1993-10-02|TAKE BACK RETURN|AIR| pinto beans sleep furiously slyly specia| +71759|957976|7977|1|2|4067.86|0.01|0.07|A|F|1992-06-21|1992-06-06|1992-07-04|DELIVER IN PERSON|FOB| quickly express hockey players boos| +71759|698405|35945|2|1|1403.37|0.05|0.03|R|F|1992-07-17|1992-06-15|1992-07-22|TAKE BACK RETURN|SHIP| quickly pend| +71759|76882|26883|3|22|40895.36|0.04|0.08|A|F|1992-03-30|1992-06-05|1992-04-25|TAKE BACK RETURN|TRUCK|cajole sile| +71759|140296|15301|4|10|13362.90|0.03|0.04|R|F|1992-05-24|1992-04-26|1992-05-27|TAKE BACK RETURN|AIR|slyly final requests. ironic, final foxes s| +71784|76574|14078|1|39|60472.23|0.05|0.00|A|F|1993-05-30|1993-05-26|1993-06-22|TAKE BACK RETURN|RAIL|ctions throughout the regula| +71784|967668|42707|2|32|55539.84|0.09|0.05|R|F|1993-05-30|1993-06-20|1993-06-06|DELIVER IN PERSON|MAIL|ly around the slyly even instructions. qu| +71784|595382|45383|3|41|60571.76|0.10|0.08|A|F|1993-04-27|1993-07-01|1993-05-01|DELIVER IN PERSON|FOB|low foxes aroun| +71784|578616|16150|4|40|67783.60|0.00|0.08|R|F|1993-05-10|1993-06-10|1993-06-02|COLLECT COD|TRUCK| furiously express requests wake fluffi| +71785|726500|14043|1|18|27476.46|0.02|0.03|R|F|1992-06-30|1992-04-18|1992-07-17|TAKE BACK RETURN|MAIL|ounts play furiously quickly ironic instru| +71785|273350|35856|2|8|10586.72|0.10|0.02|A|F|1992-05-19|1992-06-04|1992-05-30|COLLECT COD|REG AIR|e toward the iro| +71785|180099|42603|3|33|38909.97|0.09|0.00|A|F|1992-06-01|1992-05-12|1992-06-18|DELIVER IN PERSON|TRUCK|oxes. express, bold deposits cajole | +71785|922858|35377|4|37|69589.97|0.07|0.08|A|F|1992-06-05|1992-04-22|1992-06-23|NONE|MAIL|ly. blithely unusual ideas | +71786|677093|2120|1|29|31031.74|0.09|0.01|A|F|1993-12-17|1993-12-27|1994-01-09|TAKE BACK RETURN|AIR|cial notornis should have t| +71786|898639|11157|2|15|24563.85|0.07|0.07|A|F|1993-12-25|1993-12-28|1993-12-27|DELIVER IN PERSON|SHIP|. busy instructions sleep blithely; furious| +71787|338226|733|1|38|48039.98|0.01|0.07|N|O|1997-10-16|1997-09-11|1997-10-29|COLLECT COD|AIR| pending deposits are carefully furiousl| +71788|963530|26050|1|49|78081.01|0.06|0.07|N|O|1995-06-22|1995-08-03|1995-06-30|COLLECT COD|REG AIR|nos impress about the q| +71788|32616|20117|2|8|12388.88|0.00|0.00|N|O|1995-09-04|1995-06-27|1995-09-14|COLLECT COD|FOB|tes haggle fluffily. | +71789|728058|40573|1|44|47784.88|0.06|0.06|N|O|1997-04-19|1997-06-20|1997-05-16|COLLECT COD|MAIL|al deposits. slyly| +71789|466071|3599|2|22|22815.10|0.04|0.01|N|O|1997-04-12|1997-05-14|1997-05-01|NONE|REG AIR|erve quickly against t| +71789|247198|34711|3|25|28629.50|0.09|0.02|N|O|1997-06-17|1997-05-04|1997-07-01|NONE|FOB| the silent foxe| +71789|655992|43532|4|30|58438.80|0.03|0.03|N|O|1997-06-18|1997-05-29|1997-07-17|COLLECT COD|TRUCK|eposits sl| +71789|241864|16873|5|28|50563.80|0.07|0.04|N|O|1997-05-18|1997-05-01|1997-06-11|TAKE BACK RETURN|FOB|above the ironically bold ide| +71789|997786|35344|6|23|43326.02|0.03|0.03|N|O|1997-06-24|1997-06-03|1997-06-25|COLLECT COD|TRUCK|haggle slyly above the e| +71789|784683|47199|7|9|15908.85|0.03|0.08|N|O|1997-07-11|1997-05-02|1997-08-07|NONE|REG AIR|ideas. quickly express dependencies detec| +71790|164383|1893|1|20|28947.60|0.02|0.02|N|O|1996-12-06|1996-11-24|1997-01-05|TAKE BACK RETURN|REG AIR| sleep slyly final pearls. ironi| +71790|775930|38446|2|38|76224.20|0.10|0.06|N|O|1996-09-30|1996-11-23|1996-10-11|COLLECT COD|MAIL|. blithely unusual depos| +71790|43339|30840|3|45|57704.85|0.01|0.04|N|O|1996-12-28|1996-10-23|1997-01-07|COLLECT COD|RAIL|uests. unusual, qui| +71790|386804|36805|4|43|81303.97|0.03|0.03|N|O|1996-09-15|1996-10-16|1996-09-16|NONE|MAIL|y express deposits wake. | +71790|12867|12868|5|14|24918.04|0.02|0.02|N|O|1996-11-02|1996-11-30|1996-11-09|DELIVER IN PERSON|FOB|kages. carefully special i| +71790|251591|39107|6|34|52447.72|0.03|0.05|N|O|1996-09-07|1996-11-27|1996-09-12|DELIVER IN PERSON|SHIP|arefully at the blithely bold packages? fur| +71790|486390|23918|7|15|20645.55|0.07|0.01|N|O|1996-10-10|1996-11-11|1996-10-13|COLLECT COD|REG AIR|ts. furiously regular deposits solve idly | +71791|753975|16491|1|28|56810.32|0.09|0.01|N|O|1997-07-06|1997-08-26|1997-08-05|NONE|SHIP| regular accounts. pending,| +71791|51347|1348|2|21|27265.14|0.09|0.05|N|O|1997-07-16|1997-06-29|1997-08-13|DELIVER IN PERSON|FOB|gle quickly q| +71791|984789|9828|3|19|35601.06|0.00|0.07|N|O|1997-08-07|1997-08-08|1997-08-31|TAKE BACK RETURN|AIR| wake carefully according to| +71791|340269|27788|4|2|2618.50|0.05|0.01|N|O|1997-08-26|1997-07-31|1997-09-17|DELIVER IN PERSON|REG AIR|sly unusual ideas wak| +71816|546369|33900|1|14|19814.76|0.10|0.02|R|F|1994-09-18|1994-09-20|1994-09-20|NONE|REG AIR|ully regular pinto b| +71816|811937|36970|2|41|75804.49|0.04|0.04|R|F|1994-09-29|1994-10-19|1994-10-25|COLLECT COD|TRUCK|en, ironic accounts snooze fin| +71816|208482|20987|3|27|37542.69|0.06|0.01|R|F|1994-10-22|1994-09-17|1994-11-05|NONE|TRUCK| slyly bold asymptotes. | +71816|954199|16719|4|32|40100.80|0.03|0.00|A|F|1994-11-15|1994-10-11|1994-12-09|DELIVER IN PERSON|TRUCK|quickly even reque| +71816|206373|6374|5|45|57571.20|0.00|0.00|R|F|1994-08-20|1994-09-28|1994-08-30|DELIVER IN PERSON|RAIL|ans. blithely | +71816|510623|10624|6|36|58809.60|0.09|0.02|R|F|1994-10-07|1994-09-01|1994-10-13|NONE|TRUCK|as. blithely ironic packages sleep | +71816|26774|26775|7|50|85038.50|0.02|0.05|R|F|1994-09-25|1994-10-01|1994-10-04|COLLECT COD|REG AIR|slow ideas after the requests cajole blith| +71817|974996|37516|1|33|68341.35|0.09|0.08|A|F|1992-07-17|1992-05-02|1992-07-23|TAKE BACK RETURN|AIR|ording to the unusual | +71817|745627|45628|2|42|70248.78|0.00|0.03|R|F|1992-07-17|1992-06-19|1992-08-08|DELIVER IN PERSON|AIR|ests. slyly final theodolites after the| +71817|741772|4287|3|13|23578.62|0.07|0.03|A|F|1992-07-24|1992-05-23|1992-08-05|TAKE BACK RETURN|FOB|y even packages. furiously even | +71817|958054|33093|4|28|31136.28|0.08|0.03|A|F|1992-04-16|1992-05-05|1992-04-21|TAKE BACK RETURN|TRUCK|ongside of the accounts. slyly unusual pin| +71818|281736|19252|1|37|63555.64|0.07|0.01|N|O|1997-04-27|1997-02-24|1997-05-19|TAKE BACK RETURN|MAIL|sts. excuses are about the | +71818|122843|47848|2|32|59706.88|0.01|0.03|N|O|1997-01-28|1997-04-08|1997-01-29|DELIVER IN PERSON|FOB|excuses doubt furiously. | +71818|619729|19730|3|38|62650.22|0.10|0.01|N|O|1997-05-06|1997-03-04|1997-06-02|TAKE BACK RETURN|TRUCK|ose across the ironic, even f| +71818|783221|8252|4|10|13041.90|0.00|0.01|N|O|1997-05-02|1997-03-28|1997-05-22|COLLECT COD|RAIL|f the close, unusual courts boost abov| +71818|589043|14066|5|50|56601.00|0.07|0.04|N|O|1997-03-08|1997-04-02|1997-03-17|NONE|SHIP|onic deposits. furiously ironic| +71818|45053|32554|6|22|21957.10|0.06|0.01|N|O|1997-03-19|1997-03-14|1997-04-01|DELIVER IN PERSON|RAIL|ions! special| +71819|325706|13225|1|28|48487.32|0.10|0.01|R|F|1992-12-15|1992-11-29|1993-01-03|TAKE BACK RETURN|SHIP|ccounts. regular packages haggle slyly. b| +71819|126454|13961|2|12|17765.40|0.05|0.00|A|F|1993-01-07|1992-11-22|1993-01-30|TAKE BACK RETURN|AIR|iously iron| +71820|355308|5309|1|34|46351.86|0.08|0.03|N|O|1995-07-27|1995-06-08|1995-07-29|TAKE BACK RETURN|TRUCK|ul deposits are| +71820|646337|21362|2|20|25666.00|0.06|0.05|N|O|1995-07-06|1995-06-25|1995-07-31|TAKE BACK RETURN|MAIL|jole furiously against the pendin| +71821|118321|43326|1|10|13393.20|0.01|0.00|N|O|1997-10-31|1997-12-31|1997-11-19|TAKE BACK RETURN|FOB|special forges | +71821|607323|7324|2|6|7381.74|0.01|0.00|N|O|1997-10-15|1997-12-15|1997-11-02|NONE|REG AIR|ep! requests snooze furi| +71821|272700|35206|3|37|61889.53|0.08|0.06|N|O|1998-02-05|1997-11-25|1998-02-15|NONE|FOB|unts doze blithely after the final, | +71821|260444|47960|4|37|51963.91|0.00|0.03|N|O|1998-01-09|1997-12-17|1998-01-24|NONE|TRUCK|es use deposits. carefully | +71821|270867|33373|5|8|14702.80|0.05|0.03|N|O|1998-01-14|1997-12-03|1998-02-05|DELIVER IN PERSON|TRUCK| blithely pending deposits alongside of t| +71822|536341|48852|1|26|35810.32|0.06|0.06|R|F|1994-09-13|1994-10-15|1994-09-15|TAKE BACK RETURN|RAIL|nal dinos. dolphins | +71822|280920|5931|2|7|13306.37|0.02|0.06|R|F|1994-09-09|1994-10-23|1994-10-02|TAKE BACK RETURN|REG AIR|ns haggle carefully express requests. car| +71822|415357|15358|3|22|27991.26|0.10|0.05|A|F|1994-11-12|1994-10-14|1994-11-27|NONE|SHIP| blithely among| +71822|892224|4742|4|14|17026.52|0.00|0.07|A|F|1994-09-24|1994-11-01|1994-10-14|COLLECT COD|AIR| final deposits. final| +71822|597268|22291|5|31|42322.44|0.01|0.00|R|F|1994-10-30|1994-10-18|1994-11-24|DELIVER IN PERSON|AIR|. ironic packages use furiously specia| +71822|274136|36642|6|8|8880.96|0.04|0.03|R|F|1994-09-26|1994-10-06|1994-10-17|COLLECT COD|AIR|lly along the| +71823|346944|21957|1|16|31854.88|0.07|0.04|N|O|1998-01-25|1998-01-26|1998-02-21|DELIVER IN PERSON|AIR|ully quiet requests. platelets| +71848|373242|35750|1|19|24989.37|0.09|0.04|N|O|1998-04-19|1998-03-17|1998-04-27|TAKE BACK RETURN|REG AIR|kages-- special| +71848|66896|41899|2|26|48435.14|0.09|0.02|N|O|1998-03-21|1998-03-17|1998-04-04|NONE|SHIP|uffily. boldly busy d| +71848|319100|6619|3|4|4476.36|0.00|0.00|N|O|1998-05-13|1998-03-30|1998-06-01|TAKE BACK RETURN|RAIL|ietly silent ideas wake; furi| +71848|103043|15546|4|50|52302.00|0.09|0.00|N|O|1998-04-30|1998-02-28|1998-05-01|COLLECT COD|REG AIR|quests. furious| +71848|833305|33306|5|4|4953.04|0.02|0.01|N|O|1998-03-11|1998-04-21|1998-04-08|NONE|SHIP| sleep. flu| +71849|63113|38116|1|40|43044.40|0.10|0.00|N|O|1997-05-02|1997-06-02|1997-05-13|DELIVER IN PERSON|TRUCK|ong the regularly ironic asympt| +71849|725843|13386|2|17|31769.77|0.04|0.03|N|O|1997-07-17|1997-06-24|1997-08-13|TAKE BACK RETURN|REG AIR|ge furiously. thin cou| +71849|227032|2041|3|27|25893.54|0.10|0.04|N|O|1997-04-30|1997-07-13|1997-05-26|NONE|FOB|atelets cajole carefully above the | +71849|720545|45574|4|19|29744.69|0.10|0.06|N|O|1997-07-18|1997-06-08|1997-08-10|TAKE BACK RETURN|FOB|ing foxes haggle unusual,| +71849|192189|17196|5|49|62777.82|0.03|0.05|N|O|1997-07-10|1997-07-16|1997-07-16|NONE|AIR|ound the blithely enticing ideas? | +71850|132256|7261|1|20|25765.00|0.03|0.02|N|O|1996-01-06|1995-11-28|1996-02-04|TAKE BACK RETURN|AIR|tions. slyly final foxes a| +71850|823742|11291|2|30|49971.00|0.03|0.01|N|O|1996-01-14|1995-11-11|1996-02-02|TAKE BACK RETURN|REG AIR|wake carefull| +71850|623363|48388|3|39|50166.87|0.01|0.08|N|O|1995-10-01|1995-12-17|1995-10-28|DELIVER IN PERSON|SHIP|eposits. tithes haggle | +71851|724786|49815|1|13|23539.75|0.04|0.06|A|F|1992-08-21|1992-09-23|1992-09-04|COLLECT COD|TRUCK|yly unusual packages lose blithely | +71851|466269|3797|2|6|7411.44|0.02|0.04|A|F|1992-09-26|1992-09-15|1992-10-01|NONE|MAIL|ses are against the furi| +71851|572560|10094|3|18|29385.72|0.10|0.05|R|F|1992-07-25|1992-09-14|1992-08-02|TAKE BACK RETURN|AIR|cial asymptotes during the furiously| +71852|170980|33484|1|9|18458.82|0.04|0.01|R|F|1994-10-24|1994-12-24|1994-11-13|DELIVER IN PERSON|RAIL|ts. quickly | +71852|657002|7003|2|10|9589.70|0.08|0.05|R|F|1994-11-28|1995-01-15|1994-12-12|NONE|MAIL|e. ironic requests c| +71852|230618|5627|3|37|57298.20|0.07|0.05|A|F|1995-01-02|1995-01-09|1995-01-10|TAKE BACK RETURN|TRUCK|s. pending, final| +71852|995273|7793|4|9|12314.07|0.03|0.01|A|F|1994-12-16|1995-01-04|1994-12-17|DELIVER IN PERSON|AIR|lly regular requests wake furiously blit| +71852|546809|21830|5|29|53817.62|0.08|0.07|A|F|1994-12-16|1994-12-08|1995-01-09|NONE|SHIP|r, regular excuses must unwind slyly | +71853|281815|44321|1|46|82652.80|0.00|0.07|A|F|1995-04-09|1995-02-20|1995-04-14|DELIVER IN PERSON|MAIL|sits run. fluf| +71853|464533|27043|2|41|61397.91|0.01|0.06|R|F|1994-12-29|1995-03-02|1995-01-11|TAKE BACK RETURN|TRUCK|tornis integrate: doggedly regular ideas us| +71853|405826|18335|3|5|8659.00|0.06|0.08|R|F|1995-02-18|1995-02-10|1995-03-01|COLLECT COD|REG AIR|ent forges play furious| +71854|278353|28354|1|4|5325.36|0.09|0.03|R|F|1992-11-26|1992-10-07|1992-11-30|NONE|RAIL|ly according to the carefully | +71854|262596|25102|2|48|74811.84|0.09|0.08|A|F|1992-10-31|1992-11-26|1992-11-04|NONE|AIR|e even excuse| +71854|439783|39784|3|11|18950.36|0.08|0.08|R|F|1992-09-21|1992-11-29|1992-10-07|COLLECT COD|FOB|odolites. blithel| +71855|121360|33863|1|32|44203.52|0.02|0.01|N|F|1995-05-31|1995-06-08|1995-06-24|NONE|MAIL|the ironic courts| +71855|681356|43870|2|19|25409.08|0.07|0.07|N|O|1995-07-05|1995-05-15|1995-07-09|TAKE BACK RETURN|TRUCK|s sleep furio| +71855|540503|40504|3|37|57108.76|0.02|0.06|R|F|1995-06-10|1995-05-04|1995-06-16|NONE|REG AIR|ages. blithely bold packages doze fina| +71855|232108|32109|4|31|32242.79|0.04|0.01|N|O|1995-06-28|1995-05-25|1995-07-22|COLLECT COD|REG AIR|eodolites. gifts caj| +71880|573894|48917|1|47|92489.89|0.05|0.05|N|O|1996-06-29|1996-07-16|1996-07-22|COLLECT COD|SHIP| are above the asymptotes. ironically| +71881|171886|46893|1|18|35241.84|0.05|0.02|R|F|1993-10-05|1993-09-26|1993-10-26|COLLECT COD|SHIP|ously quickly ir| +71881|882664|7699|2|14|23052.68|0.02|0.00|A|F|1993-10-02|1993-10-26|1993-10-03|DELIVER IN PERSON|AIR|thely special instructions are| +71881|921344|33863|3|4|5461.20|0.05|0.07|R|F|1993-09-28|1993-09-16|1993-09-29|NONE|SHIP|ests wake carefully about the slyly eve| +71881|12836|12837|4|23|40223.09|0.06|0.01|A|F|1993-10-25|1993-09-18|1993-11-04|TAKE BACK RETURN|SHIP|arefully final ideas impress sly| +71882|336582|11595|1|47|76072.79|0.06|0.06|R|F|1992-06-01|1992-05-17|1992-06-06|DELIVER IN PERSON|TRUCK|furiously about the slyly expres| +71882|929535|17090|2|45|70402.05|0.02|0.07|A|F|1992-08-06|1992-05-14|1992-08-23|COLLECT COD|TRUCK|ng asymptotes nag slyly pen| +71883|933908|33909|1|36|69906.96|0.07|0.04|N|O|1995-11-22|1996-01-14|1995-11-25|NONE|REG AIR|kly ironic accounts. furiously fin| +71883|184722|47226|2|43|77688.96|0.01|0.06|N|O|1996-02-08|1995-12-23|1996-03-08|DELIVER IN PERSON|MAIL|fully silent platelets promise furious| +71883|616603|41628|3|29|44067.53|0.03|0.01|N|O|1996-02-04|1996-01-17|1996-02-08|COLLECT COD|MAIL|al accounts snooze sl| +71883|235350|47855|4|26|33418.84|0.10|0.06|N|O|1996-01-25|1996-01-12|1996-02-10|TAKE BACK RETURN|FOB|l packages nag boldly above the slyly reg| +71883|519590|7121|5|48|77259.36|0.06|0.06|N|O|1996-01-10|1996-01-22|1996-01-26|TAKE BACK RETURN|SHIP|y ironic accounts along the silent | +71884|278135|28136|1|41|45637.92|0.01|0.03|R|F|1992-10-11|1992-11-13|1992-10-28|NONE|FOB|usly final packages eat quickl| +71884|605936|5937|2|34|62624.60|0.06|0.00|A|F|1992-12-11|1992-12-12|1992-12-25|NONE|RAIL|al, bold deposits cajole carefu| +71884|959793|22313|3|5|9263.75|0.01|0.06|A|F|1992-11-19|1992-11-13|1992-11-28|TAKE BACK RETURN|RAIL|ns. even deposits boost. fluffily entici| +71884|232483|7492|4|1|1415.47|0.06|0.04|A|F|1992-12-29|1992-11-06|1993-01-11|COLLECT COD|SHIP|sleep carefu| +71884|338904|38905|5|41|79658.49|0.04|0.06|A|F|1992-11-17|1992-12-07|1992-11-29|TAKE BACK RETURN|FOB|e slyly regular, bold foxes. regular, | +71884|946099|8618|6|24|27481.20|0.09|0.03|R|F|1993-01-06|1992-11-23|1993-01-16|COLLECT COD|SHIP|ironic asymptotes. blithely final packages| +71884|81026|18530|7|43|43301.86|0.04|0.05|A|F|1992-11-03|1992-12-04|1992-11-17|DELIVER IN PERSON|TRUCK|ts run carefully above the furiously| +71885|794638|44639|1|36|62373.60|0.06|0.02|N|O|1997-12-13|1997-11-19|1998-01-03|TAKE BACK RETURN|SHIP| special accounts are blithely carefully u| +71885|471747|46766|2|45|77342.40|0.09|0.01|N|O|1997-12-12|1997-11-24|1997-12-30|NONE|MAIL|unts haggle on the furiou| +71885|635879|48392|3|47|85297.48|0.04|0.05|N|O|1997-09-27|1997-12-08|1997-10-16|NONE|SHIP|ve the slyly regu| +71885|213188|13189|4|43|47350.31|0.06|0.07|N|O|1997-11-13|1997-11-20|1997-12-09|NONE|MAIL|tructions. reg| +71885|47784|35285|5|6|10390.68|0.02|0.03|N|O|1997-10-11|1997-11-15|1997-10-31|COLLECT COD|AIR|nding pinto beans dazzle carefully. even| +71885|91784|41785|6|41|72806.98|0.00|0.01|N|O|1997-11-22|1997-10-25|1997-12-19|TAKE BACK RETURN|SHIP|ptotes. furiously final accounts unwind. ex| +71886|688697|26237|1|23|38770.18|0.06|0.02|R|F|1992-05-16|1992-05-30|1992-05-31|DELIVER IN PERSON|REG AIR|ng the slyly regular accounts | +71886|921438|46475|2|9|13134.51|0.01|0.01|A|F|1992-03-24|1992-05-29|1992-04-06|NONE|TRUCK|bove the blithely unusual theodolite| +71886|603108|40645|3|6|6066.42|0.08|0.06|R|F|1992-03-14|1992-06-05|1992-03-20|DELIVER IN PERSON|AIR| according to the idly special theodol| +71886|420931|33440|4|48|88891.68|0.04|0.07|A|F|1992-07-08|1992-05-07|1992-07-24|COLLECT COD|RAIL|arefully regular dependencies integrate ac| +71886|583584|46096|5|40|66702.40|0.06|0.02|A|F|1992-05-03|1992-05-20|1992-06-01|DELIVER IN PERSON|SHIP|packages sleep caref| +71886|291275|41276|6|12|15195.12|0.10|0.07|A|F|1992-06-21|1992-05-06|1992-07-07|TAKE BACK RETURN|TRUCK|re blithely along the| +71887|122442|47447|1|6|8786.64|0.09|0.07|N|O|1997-03-29|1997-03-05|1997-04-11|DELIVER IN PERSON|TRUCK|accounts nag slyly | +71887|875677|712|2|15|24789.45|0.09|0.05|N|O|1997-02-09|1997-01-24|1997-02-10|NONE|REG AIR|cial deposits cajole blithely a| +71887|487338|12357|3|8|10602.48|0.05|0.05|N|O|1997-03-25|1997-02-09|1997-04-18|DELIVER IN PERSON|REG AIR|nts. regular deposits wake furio| +71887|682460|32461|4|20|28848.60|0.08|0.08|N|O|1997-02-13|1997-01-24|1997-03-03|COLLECT COD|REG AIR|counts. fluffily ironic packages | +71887|98523|11025|5|24|36516.48|0.02|0.06|N|O|1997-04-21|1997-02-01|1997-04-27|COLLECT COD|REG AIR|re. instructions wake. | +71887|871496|9048|6|25|36686.25|0.02|0.04|N|O|1997-02-21|1997-02-16|1997-02-25|COLLECT COD|FOB| bold deposits| +71912|357260|7261|1|24|31614.00|0.08|0.04|N|O|1997-03-05|1997-04-06|1997-04-03|DELIVER IN PERSON|REG AIR| above the blithely idle packages sleep| +71913|547546|22567|1|25|39838.00|0.10|0.06|N|O|1998-06-13|1998-07-11|1998-07-12|DELIVER IN PERSON|TRUCK| boost above the unusu| +71913|604887|17400|2|17|30461.45|0.04|0.03|N|O|1998-05-30|1998-07-29|1998-06-06|DELIVER IN PERSON|REG AIR|ons unwind bli| +71913|326999|14518|3|47|95221.06|0.06|0.03|N|O|1998-06-11|1998-08-13|1998-07-08|COLLECT COD|FOB|gular dinos wake blithely above| +71913|858872|33907|4|16|29293.28|0.00|0.04|N|O|1998-07-22|1998-07-20|1998-08-04|COLLECT COD|REG AIR|riously silent waters. final, sil| +71913|59209|21711|5|4|4672.80|0.02|0.00|N|O|1998-06-02|1998-08-16|1998-06-29|NONE|AIR|the carefully bold packages. furi| +71913|116176|3683|6|23|27419.91|0.05|0.00|N|O|1998-06-10|1998-07-14|1998-06-16|DELIVER IN PERSON|AIR|eodolites wake quickly. quickly | +71914|185759|23269|1|45|83013.75|0.07|0.08|N|O|1997-11-12|1997-12-08|1997-12-11|COLLECT COD|FOB|efully ironic pains sleep furiously ove| +71914|45505|20506|2|29|42064.50|0.02|0.01|N|O|1997-11-02|1997-12-01|1997-11-14|NONE|MAIL|ons are after the fluffy packages. pending,| +71914|786504|49020|3|42|66799.74|0.01|0.07|N|O|1998-01-28|1998-01-09|1998-02-05|DELIVER IN PERSON|MAIL|tions affix blithel| +71914|769431|31947|4|12|18004.80|0.07|0.01|N|O|1997-10-29|1997-12-19|1997-11-27|TAKE BACK RETURN|MAIL|ously pinto beans. c| +71914|822615|22616|5|15|23063.55|0.07|0.07|N|O|1997-12-26|1998-01-01|1998-01-12|TAKE BACK RETURN|SHIP|ole ironic foxes. f| +71914|678204|15744|6|32|37829.44|0.02|0.07|N|O|1997-11-07|1998-01-05|1997-11-20|DELIVER IN PERSON|REG AIR|en requests. ironi| +71915|425836|13361|1|31|54616.11|0.06|0.00|R|F|1995-05-09|1995-04-14|1995-05-27|DELIVER IN PERSON|REG AIR|quickly across the car| +71916|694997|20024|1|50|99598.00|0.02|0.08|N|O|1996-08-07|1996-09-13|1996-08-19|NONE|RAIL|uickly. regular theodolites was busily | +71916|810195|35228|2|43|47521.45|0.02|0.06|N|O|1996-06-27|1996-09-23|1996-07-06|TAKE BACK RETURN|AIR|jole. furiously eve| +71917|642313|29850|1|47|58998.16|0.05|0.08|A|F|1994-11-26|1994-12-17|1994-12-20|NONE|REG AIR|blithely silent theodolites use spec| +71917|347808|47809|2|47|87222.13|0.07|0.05|A|F|1995-02-20|1995-01-30|1995-03-22|COLLECT COD|REG AIR|leep carefully a| +71917|599835|24858|3|47|90936.07|0.03|0.03|A|F|1994-11-10|1994-12-29|1994-11-18|COLLECT COD|REG AIR|bout the quickly final theodolites. | +71917|413772|38789|4|31|52258.25|0.10|0.01|R|F|1994-12-31|1995-01-17|1995-01-25|TAKE BACK RETURN|AIR|refully even asy| +71917|263425|13426|5|46|63866.86|0.08|0.03|R|F|1994-11-30|1994-12-13|1994-12-05|TAKE BACK RETURN|SHIP|uickly quickly special r| +71917|376151|1166|6|16|19634.24|0.10|0.04|A|F|1994-12-10|1995-01-02|1994-12-14|NONE|SHIP|s; furiously pending dep| +71918|93092|30596|1|46|49914.14|0.03|0.04|N|O|1996-02-22|1996-02-06|1996-03-03|TAKE BACK RETURN|RAIL|ts among the carefully unusual foxes cajol| +71918|591080|41081|2|22|25763.32|0.05|0.04|N|O|1996-03-27|1996-02-18|1996-04-01|NONE|RAIL|y about the bold deposits: blithely | +71918|271996|47007|3|6|11807.88|0.07|0.00|N|O|1996-04-12|1996-03-05|1996-04-24|COLLECT COD|TRUCK| accounts use| +71918|430699|43208|4|25|40741.75|0.00|0.06|N|O|1996-01-12|1996-02-23|1996-02-02|TAKE BACK RETURN|REG AIR|ecial deposi| +71918|747181|47182|5|35|42985.25|0.02|0.06|N|O|1996-03-27|1996-03-13|1996-03-31|TAKE BACK RETURN|RAIL|s wake carefully b| +71919|70579|8083|1|37|57334.09|0.09|0.01|N|O|1997-10-21|1997-12-08|1997-10-26|TAKE BACK RETURN|RAIL|ular pinto beans sleep carefully| +71919|215765|3278|2|36|60507.00|0.02|0.08|N|O|1997-09-29|1997-11-13|1997-10-10|COLLECT COD|REG AIR|ealthy packages use qui| +71919|348878|23891|3|13|25049.18|0.01|0.05|N|O|1997-10-19|1997-10-21|1997-11-13|DELIVER IN PERSON|SHIP|to the fluffily u| +71919|579924|17458|4|49|98191.10|0.08|0.06|N|O|1997-11-22|1997-11-22|1997-12-13|DELIVER IN PERSON|REG AIR|fter the regular packages. s| +71919|776732|26733|5|47|85008.90|0.05|0.03|N|O|1998-01-01|1997-10-23|1998-01-11|COLLECT COD|FOB|c packages cajole blithely a| +71944|34570|9571|1|41|61687.37|0.05|0.06|R|F|1995-02-16|1995-01-27|1995-03-15|COLLECT COD|AIR|y. blithel| +71944|15864|40865|2|50|88993.00|0.00|0.06|R|F|1995-01-22|1995-02-27|1995-01-30|COLLECT COD|FOB|to beans cajole blithely. packages beli| +71944|622166|47191|3|43|46789.59|0.07|0.06|R|F|1995-01-08|1995-01-31|1995-01-25|TAKE BACK RETURN|RAIL|e slyly ironic instructions. special cou| +71945|415150|2675|1|9|9586.17|0.00|0.06|R|F|1994-04-30|1994-05-29|1994-05-28|NONE|REG AIR|uctions nag carefully stealthy,| +71945|420673|33182|2|19|30279.35|0.10|0.00|A|F|1994-06-22|1994-06-30|1994-06-26|COLLECT COD|REG AIR|ickly final| +71945|249044|24053|3|13|12909.39|0.10|0.04|R|F|1994-06-09|1994-06-14|1994-07-03|DELIVER IN PERSON|MAIL|ar package| +71945|665765|28279|4|17|29422.41|0.04|0.08|R|F|1994-06-05|1994-06-14|1994-06-27|NONE|MAIL|ests among the accoun| +71945|502187|27208|5|38|45188.08|0.09|0.01|R|F|1994-05-14|1994-07-05|1994-05-18|COLLECT COD|SHIP|accounts. silent theodolites are. unusual| +71946|569500|19501|1|14|21972.72|0.10|0.00|N|O|1996-12-07|1996-12-06|1996-12-24|DELIVER IN PERSON|MAIL|ts wake furiously after the | +71946|586305|23839|2|44|61216.32|0.00|0.04|N|O|1996-12-01|1996-11-02|1996-12-14|NONE|AIR|s cajole slyly a| +71947|133461|45964|1|14|20922.44|0.01|0.02|N|O|1996-12-09|1996-12-31|1996-12-13|COLLECT COD|RAIL| along the | +71947|72125|34627|2|16|17553.92|0.03|0.05|N|O|1996-11-18|1996-11-25|1996-12-04|DELIVER IN PERSON|REG AIR| are slyly blithely sly instructions. reg| +71947|188847|1351|3|19|36780.96|0.05|0.04|N|O|1997-01-21|1996-12-19|1997-02-13|DELIVER IN PERSON|REG AIR| after the| +71947|939490|2009|4|9|13765.05|0.08|0.08|N|O|1996-12-23|1996-12-26|1996-12-30|DELIVER IN PERSON|SHIP|ely silent dependencies| +71947|5296|30297|5|9|10811.61|0.09|0.04|N|O|1996-12-14|1996-12-27|1997-01-03|DELIVER IN PERSON|FOB|etly bold theodolites cajole blithely| +71947|999492|24531|6|50|79572.50|0.06|0.04|N|O|1996-12-07|1996-11-23|1996-12-15|NONE|AIR|unusual packa| +71947|447704|47705|7|1|1651.68|0.03|0.08|N|O|1996-10-26|1997-01-02|1996-11-21|DELIVER IN PERSON|AIR| carefully rut| +71948|555856|5857|1|7|13382.81|0.10|0.08|R|F|1992-04-07|1992-03-13|1992-04-10|TAKE BACK RETURN|MAIL|about the quickly pending dolphins-- in| +71948|261751|11752|2|31|53094.94|0.00|0.05|R|F|1992-05-28|1992-04-22|1992-06-26|COLLECT COD|AIR|nal requests. carefully blithe accou| +71948|233741|21254|3|20|33494.60|0.03|0.08|A|F|1992-04-04|1992-03-30|1992-04-09|TAKE BACK RETURN|MAIL|al instructions | +71948|470249|45268|4|44|53645.68|0.01|0.07|R|F|1992-05-06|1992-04-22|1992-06-01|DELIVER IN PERSON|RAIL|r requests are| +71949|135337|10342|1|19|26074.27|0.08|0.07|N|O|1998-11-16|1998-09-23|1998-12-11|TAKE BACK RETURN|MAIL|special, bol| +71950|994933|19972|1|37|75031.93|0.03|0.08|A|F|1993-10-05|1993-11-15|1993-10-10|TAKE BACK RETURN|TRUCK|patterns sleep slyly. slyly ironic accou| +71950|825953|25954|2|26|48851.66|0.07|0.05|R|F|1994-01-11|1993-12-15|1994-02-03|DELIVER IN PERSON|TRUCK|ix. foxes thrash furiously| +71950|776226|13772|3|10|13021.90|0.10|0.02|A|F|1993-10-17|1993-11-17|1993-11-03|TAKE BACK RETURN|SHIP|. final, regular deposits alon| +71950|13975|13976|4|16|30223.52|0.03|0.01|R|F|1994-01-12|1993-10-27|1994-01-26|NONE|FOB|final asymptotes nag. even instructions na| +71950|877583|15135|5|42|65542.68|0.01|0.05|A|F|1994-01-01|1993-11-03|1994-01-09|NONE|AIR| requests nag quickly express| +71950|531468|6489|6|16|23991.04|0.08|0.05|A|F|1993-12-06|1993-12-16|1993-12-18|DELIVER IN PERSON|MAIL| regular packages: quickly unus| +71951|417612|5137|1|24|36710.16|0.10|0.00|N|O|1997-04-04|1997-04-15|1997-04-22|TAKE BACK RETURN|MAIL|ironic pac| +71951|798641|48642|2|44|76542.84|0.02|0.04|N|O|1997-05-02|1997-05-14|1997-05-10|TAKE BACK RETURN|REG AIR|ven instructions detect carefully b| +71951|745730|8245|3|24|42616.80|0.06|0.06|N|O|1997-03-02|1997-04-07|1997-03-25|COLLECT COD|RAIL|ckages. fluffily even grouches | +71951|470578|33088|4|36|55747.80|0.08|0.07|N|O|1997-05-19|1997-05-07|1997-05-22|TAKE BACK RETURN|REG AIR|s until the final pac| +71976|173159|48166|1|1|1232.15|0.04|0.01|R|F|1992-03-06|1992-03-22|1992-03-08|DELIVER IN PERSON|TRUCK|sts wake qu| +71976|271200|33706|2|37|43334.03|0.03|0.04|R|F|1992-04-21|1992-04-26|1992-05-20|COLLECT COD|REG AIR|ounts use. cl| +71976|43342|43343|3|18|23136.12|0.10|0.00|A|F|1992-06-06|1992-04-09|1992-06-16|NONE|MAIL|r deposits nag slyly. e| +71977|674387|49414|1|46|62622.10|0.05|0.03|A|F|1992-11-23|1992-10-18|1992-12-05|TAKE BACK RETURN|TRUCK| final, ironic pinto beans| +71977|415835|40852|2|23|40268.63|0.10|0.05|A|F|1993-01-11|1992-12-17|1993-01-25|NONE|TRUCK| print furiously final courts. ir| +71977|932809|20364|3|7|12892.32|0.03|0.04|A|F|1992-10-29|1992-10-31|1992-11-23|DELIVER IN PERSON|SHIP| final foxes. furiously regular ho| +71977|706210|18725|4|27|32836.86|0.05|0.06|A|F|1992-10-06|1992-10-25|1992-10-10|NONE|AIR|final deposits impress about the slyl| +71977|269605|19606|5|47|74005.73|0.03|0.07|A|F|1992-11-21|1992-12-17|1992-11-28|COLLECT COD|AIR|usily regular packages. furiously| +71977|244539|44540|6|19|28186.88|0.04|0.06|A|F|1992-12-04|1992-11-29|1992-12-23|NONE|MAIL|slyly even packages. regular, ironic reques| +71978|397898|10406|1|15|29938.20|0.10|0.04|N|O|1996-02-19|1996-03-21|1996-02-26|DELIVER IN PERSON|RAIL|pecial deposits af| +71979|765497|40528|1|50|78123.00|0.09|0.00|A|F|1993-03-04|1993-04-18|1993-03-09|DELIVER IN PERSON|MAIL|ven asymptotes. quickly iron| +71979|702865|15380|2|9|16810.47|0.08|0.07|A|F|1993-04-10|1993-03-25|1993-05-02|NONE|TRUCK|g the furiously ironic foxes. | +71979|36500|49001|3|36|51714.00|0.05|0.08|R|F|1993-02-25|1993-04-28|1993-03-03|TAKE BACK RETURN|SHIP|g to the slyly iron| +71979|450632|25651|4|49|77547.89|0.04|0.03|R|F|1993-03-07|1993-04-08|1993-03-27|NONE|AIR|ar accounts. bold,| +71980|502244|39775|1|41|51095.02|0.00|0.02|A|F|1993-05-06|1993-04-08|1993-05-28|TAKE BACK RETURN|SHIP|s sleep after the furiously regular p| +71980|210097|22602|2|14|14099.12|0.07|0.06|A|F|1993-04-13|1993-03-08|1993-05-06|TAKE BACK RETURN|FOB| across the slyly final packages. carefu| +71981|885524|35525|1|30|45284.40|0.02|0.00|A|F|1994-08-18|1994-08-30|1994-08-26|COLLECT COD|TRUCK|yly regular packages along the carefull| +71982|131181|43684|1|17|20607.06|0.01|0.05|N|O|1996-09-26|1996-09-10|1996-10-09|COLLECT COD|SHIP| silent, ironic requests haggle | +71982|754408|41954|2|13|19010.81|0.08|0.08|N|O|1996-08-01|1996-09-07|1996-08-30|DELIVER IN PERSON|SHIP|carefully ironic deposits. carefu| +71982|335005|22524|3|35|36399.65|0.07|0.06|N|O|1996-07-25|1996-08-11|1996-08-10|DELIVER IN PERSON|TRUCK|tes detect blithely car| +71982|416551|16552|4|11|16142.83|0.06|0.04|N|O|1996-10-22|1996-09-21|1996-11-12|COLLECT COD|REG AIR|d packages lose carefully f| +71982|967002|4560|5|5|5344.80|0.09|0.05|N|O|1996-08-08|1996-09-09|1996-08-26|COLLECT COD|FOB|ltipliers. quickly regula| +71983|243941|18950|1|43|81051.99|0.01|0.03|R|F|1992-02-03|1992-03-04|1992-02-18|TAKE BACK RETURN|REG AIR|arefully final courts boost above the | +71983|900717|13236|2|39|66989.13|0.02|0.02|A|F|1992-03-20|1992-02-19|1992-04-13|NONE|FOB| boldly according to t| +71983|333878|46385|3|9|17206.74|0.06|0.08|R|F|1992-01-14|1992-04-01|1992-01-31|COLLECT COD|RAIL|ironic somas. pinto beans affix about the| +71983|484353|21881|4|12|16047.96|0.06|0.04|A|F|1992-03-05|1992-03-02|1992-03-08|NONE|MAIL| regular deposits. pinto beans wake. expr| +71983|505963|18474|5|38|74819.72|0.06|0.08|R|F|1992-03-29|1992-03-02|1992-04-24|DELIVER IN PERSON|AIR|areful asymptotes. bold, s| +72008|911925|49480|1|8|15495.04|0.10|0.06|A|F|1993-10-13|1993-10-17|1993-11-02|DELIVER IN PERSON|MAIL|inal deposits accordin| +72008|717091|42120|2|13|14404.78|0.01|0.06|A|F|1993-12-03|1993-11-11|1993-12-08|DELIVER IN PERSON|RAIL|xpress platelets sleep alongside o| +72008|137051|37052|3|20|21761.00|0.01|0.06|R|F|1993-11-05|1993-11-22|1993-11-24|COLLECT COD|SHIP|the slyly pen| +72008|404901|29918|4|35|63205.80|0.05|0.03|A|F|1993-12-05|1993-11-01|1993-12-13|COLLECT COD|SHIP| sleep blithely| +72008|159242|34249|5|12|15614.88|0.07|0.06|R|F|1993-12-27|1993-10-30|1994-01-20|COLLECT COD|AIR|its wake furiously carefully regular w| +72008|363813|38828|6|15|28152.00|0.02|0.07|A|F|1993-12-15|1993-11-09|1994-01-13|DELIVER IN PERSON|AIR|ckly among the slyly regular deposits.| +72009|683651|8678|1|25|40865.50|0.07|0.08|N|O|1997-06-20|1997-07-21|1997-07-05|TAKE BACK RETURN|REG AIR|ss packages use am| +72009|108781|21284|2|1|1789.78|0.03|0.08|N|O|1997-08-24|1997-09-07|1997-09-21|COLLECT COD|SHIP|ickly regular courts at the quietly | +72009|268238|43249|3|8|9649.76|0.02|0.07|N|O|1997-08-15|1997-08-06|1997-08-30|TAKE BACK RETURN|MAIL| carefully doggedly express accoun| +72009|266264|16265|4|35|43058.75|0.04|0.08|N|O|1997-06-29|1997-08-09|1997-07-13|COLLECT COD|RAIL|sts. furiously pending platelets use car| +72009|89659|27163|5|8|13189.20|0.07|0.02|N|O|1997-06-30|1997-07-24|1997-07-30|NONE|FOB| express asymptotes. theodolites sle| +72010|872252|9804|1|19|23259.99|0.04|0.06|A|F|1994-09-03|1994-07-03|1994-09-07|DELIVER IN PERSON|AIR|out the carefully thi| +72010|931483|6520|2|1|1514.44|0.00|0.00|A|F|1994-05-20|1994-07-25|1994-06-18|DELIVER IN PERSON|AIR|c, unusual| +72010|423903|23904|3|29|52979.52|0.05|0.01|A|F|1994-08-29|1994-07-22|1994-09-13|NONE|MAIL|nstructions slee| +72010|532201|44712|4|24|29596.32|0.02|0.00|A|F|1994-05-17|1994-07-12|1994-05-20|COLLECT COD|FOB|onic reque| +72010|688219|733|5|4|4828.72|0.06|0.06|A|F|1994-08-20|1994-07-03|1994-09-10|TAKE BACK RETURN|RAIL|ests detect quickly furiously final forg| +72010|880165|30166|6|18|20612.16|0.09|0.07|R|F|1994-06-11|1994-07-02|1994-06-12|TAKE BACK RETURN|SHIP|final deposits boost carefully ironic | +72010|918840|18841|7|41|76210.80|0.09|0.02|R|F|1994-06-30|1994-07-09|1994-07-04|COLLECT COD|AIR|latelets. blithe| +72011|932194|32195|1|16|19618.40|0.07|0.06|R|F|1992-11-11|1992-10-22|1992-11-13|DELIVER IN PERSON|RAIL|ly pending depths| +72011|377688|15210|2|3|5297.01|0.07|0.07|A|F|1992-09-15|1992-11-04|1992-09-20|TAKE BACK RETURN|TRUCK|tructions cajole car| +72011|798290|35836|3|19|26376.94|0.03|0.07|R|F|1992-12-26|1992-11-06|1992-12-29|NONE|SHIP|uests sleep s| +72011|855996|18514|4|36|70270.20|0.09|0.04|A|F|1992-10-12|1992-10-23|1992-10-31|TAKE BACK RETURN|AIR|pinto beans. accou| +72011|708111|33140|5|43|48120.44|0.07|0.01|A|F|1992-10-07|1992-11-20|1992-10-25|TAKE BACK RETURN|RAIL|. special packages wake slyly carefull| +72011|212548|25053|6|18|26289.54|0.07|0.01|R|F|1992-10-23|1992-11-02|1992-11-09|NONE|RAIL|leep carefully.| +72012|54290|4291|1|22|27374.38|0.02|0.06|R|F|1992-06-29|1992-06-06|1992-07-25|DELIVER IN PERSON|TRUCK|areful platelets. ironic | +72012|437488|25013|2|32|45614.72|0.01|0.01|R|F|1992-08-12|1992-06-27|1992-08-15|COLLECT COD|MAIL|re above the slyly regular| +72013|945660|8179|1|3|5116.86|0.02|0.03|R|F|1994-07-10|1994-07-23|1994-07-16|DELIVER IN PERSON|AIR| unusual ideas. carefully| +72013|703170|40713|2|13|15250.82|0.03|0.05|A|F|1994-07-15|1994-08-23|1994-07-30|NONE|AIR|inal theodolit| +72013|174058|49065|3|11|12452.55|0.09|0.01|A|F|1994-07-15|1994-07-02|1994-08-11|DELIVER IN PERSON|REG AIR| blithely | +72013|379356|4371|4|13|18659.42|0.07|0.06|R|F|1994-06-17|1994-08-14|1994-06-25|COLLECT COD|FOB|symptotes. slyly regular acc| +72014|508436|20947|1|24|34665.84|0.03|0.03|R|F|1994-04-03|1994-05-28|1994-04-06|DELIVER IN PERSON|REG AIR|inal requests mold blithely about the ironi| +72014|272054|22055|2|26|26677.04|0.06|0.08|R|F|1994-04-30|1994-05-27|1994-05-15|NONE|TRUCK|, express accounts. even requests wa| +72014|401286|13795|3|30|35617.80|0.04|0.08|A|F|1994-07-12|1994-04-30|1994-07-24|COLLECT COD|RAIL|ly across the final requ| +72015|439257|39258|1|46|55026.58|0.05|0.03|N|O|1997-06-18|1997-06-03|1997-07-09|NONE|SHIP|uests haggle. quickly final ideas | +72015|586958|24492|2|10|20449.30|0.05|0.01|N|O|1997-06-11|1997-06-06|1997-07-07|DELIVER IN PERSON|RAIL|less dependencies are furiously a| +72015|987787|37788|3|12|22496.88|0.00|0.00|N|O|1997-06-16|1997-05-07|1997-07-15|NONE|AIR|ke about the quickly regu| +72015|720502|8045|4|16|24359.52|0.07|0.00|N|O|1997-05-02|1997-04-26|1997-05-31|NONE|RAIL| fluffily ironic ideas. | +72015|468782|18783|5|17|29762.92|0.05|0.02|N|O|1997-07-07|1997-06-02|1997-07-15|TAKE BACK RETURN|MAIL|s. even, ironic accounts cajole. silen| +72015|815819|3368|6|30|52043.10|0.04|0.06|N|O|1997-06-23|1997-04-20|1997-07-11|TAKE BACK RETURN|FOB|its wake furiously since the furious| +72015|455952|43480|7|25|47698.25|0.07|0.06|N|O|1997-05-12|1997-05-07|1997-05-18|COLLECT COD|TRUCK|ructions. slyly final pa| +72040|183262|45766|1|21|28250.46|0.03|0.03|N|O|1996-10-03|1996-08-26|1996-11-02|DELIVER IN PERSON|RAIL|quickly even theodolites: packages sleep f| +72041|860759|48311|1|9|15477.39|0.00|0.05|R|F|1993-09-24|1993-08-15|1993-09-26|TAKE BACK RETURN|SHIP|regular sentiments. blithely iron| +72041|772166|22167|2|40|49525.20|0.06|0.06|R|F|1993-10-26|1993-08-14|1993-11-03|TAKE BACK RETURN|TRUCK| furiously. final courts cajole | +72041|783688|46204|3|4|7086.60|0.10|0.03|R|F|1993-09-02|1993-08-18|1993-09-27|TAKE BACK RETURN|FOB|ep quickly special courts.| +72041|440551|40552|4|31|46237.43|0.03|0.08|R|F|1993-08-16|1993-08-26|1993-08-23|DELIVER IN PERSON|MAIL| furiously pending pinto beans use s| +72041|332572|20091|5|33|52950.48|0.06|0.03|A|F|1993-10-13|1993-09-27|1993-10-23|COLLECT COD|RAIL|y express dependencies. fluffily unusu| +72041|521369|21370|6|37|51442.58|0.04|0.02|A|F|1993-07-30|1993-08-30|1993-08-13|DELIVER IN PERSON|MAIL|. carefully| +72041|641853|4366|7|44|78972.08|0.04|0.06|R|F|1993-09-08|1993-10-01|1993-09-30|COLLECT COD|MAIL|lently regular deposits haggle regularly| +72042|612232|12233|1|31|35470.20|0.10|0.00|N|O|1997-07-22|1997-08-14|1997-08-11|NONE|REG AIR|ithely blithely | +72042|781572|31573|2|46|76062.84|0.00|0.04|N|O|1997-08-08|1997-07-18|1997-08-31|TAKE BACK RETURN|SHIP|usly bold request| +72042|868920|43955|3|16|30222.08|0.09|0.00|N|O|1997-09-12|1997-07-02|1997-09-21|DELIVER IN PERSON|RAIL|ithely across the regular d| +72042|931682|44201|4|14|23990.96|0.01|0.07|N|O|1997-07-30|1997-08-01|1997-08-11|DELIVER IN PERSON|TRUCK|ously furiously regular packages.| +72042|771460|9006|5|24|36754.32|0.06|0.05|N|O|1997-08-05|1997-06-30|1997-08-22|COLLECT COD|MAIL|quests. slyly final requ| +72042|927248|14803|6|24|30604.80|0.03|0.04|N|O|1997-07-10|1997-07-22|1997-08-08|DELIVER IN PERSON|SHIP|fter the final platelet| +72043|383792|33793|1|12|22509.36|0.01|0.02|N|O|1995-08-04|1995-08-04|1995-08-16|COLLECT COD|MAIL|symptotes sleep. regular, final accounts | +72043|383764|21286|2|32|59128.00|0.00|0.02|N|O|1995-07-01|1995-07-16|1995-07-17|COLLECT COD|MAIL|c requests among the ironic as| +72043|907044|44599|3|42|44142.00|0.09|0.02|N|F|1995-06-17|1995-07-03|1995-06-29|COLLECT COD|AIR|nal deposits. stealthily bold f| +72043|677292|2319|4|50|63463.00|0.10|0.07|N|O|1995-09-16|1995-07-19|1995-10-06|TAKE BACK RETURN|REG AIR|eodolites sleep ironic ideas. car| +72043|245907|33420|5|17|31499.13|0.10|0.02|N|O|1995-09-01|1995-07-23|1995-09-05|TAKE BACK RETURN|FOB| special accounts. quickly even| +72043|949071|49072|6|30|33600.90|0.08|0.05|N|F|1995-06-04|1995-07-24|1995-06-24|COLLECT COD|FOB|lyly bold depths. even, ironic pack| +72043|31106|43607|7|28|29038.80|0.09|0.02|N|O|1995-07-09|1995-08-16|1995-07-13|NONE|SHIP| beans sleep fluffily blith| +72044|789148|1664|1|26|32164.86|0.03|0.03|N|O|1997-08-24|1997-06-11|1997-09-16|NONE|MAIL| the final| +72044|207485|32494|2|17|23671.99|0.00|0.04|N|O|1997-07-23|1997-06-05|1997-08-01|DELIVER IN PERSON|RAIL|thely unusu| +72044|199852|37362|3|37|72218.45|0.01|0.05|N|O|1997-08-27|1997-06-26|1997-09-18|COLLECT COD|RAIL|eat slyly above the| +72044|897179|9697|4|35|41164.55|0.05|0.03|N|O|1997-05-12|1997-07-04|1997-05-26|TAKE BACK RETURN|RAIL|wake carefully afte| +72044|883502|8537|5|9|13369.14|0.03|0.03|N|O|1997-05-28|1997-06-23|1997-06-23|TAKE BACK RETURN|AIR|ts sublate careful| +72045|553740|3741|1|2|3587.44|0.10|0.04|N|O|1997-05-23|1997-06-10|1997-06-15|DELIVER IN PERSON|REG AIR|y after the packages. blit| +72045|697343|22370|2|49|65675.19|0.07|0.01|N|O|1997-06-05|1997-06-15|1997-06-30|NONE|MAIL|n theodoli| +72046|72361|34863|1|27|36000.72|0.05|0.05|N|O|1996-07-27|1996-10-16|1996-07-28|NONE|AIR|ilent deposits integrate f| +72046|166685|4195|2|45|78825.60|0.06|0.00|N|O|1996-10-31|1996-09-03|1996-11-13|NONE|FOB|fluffily. frets e| +72046|467230|17231|3|30|35916.30|0.00|0.06|N|O|1996-08-19|1996-09-15|1996-08-21|NONE|SHIP|he furiously regular theodolites ha| +72046|721960|9503|4|43|85222.99|0.06|0.07|N|O|1996-08-11|1996-09-05|1996-09-02|NONE|MAIL|e carefully bold theodolites imp| +72046|974193|24194|5|34|43083.10|0.08|0.05|N|O|1996-11-04|1996-09-20|1996-11-15|COLLECT COD|TRUCK|ding accounts nag slyly. final, final d| +72046|256559|19065|6|42|63652.68|0.07|0.01|N|O|1996-10-22|1996-10-03|1996-10-28|TAKE BACK RETURN|MAIL| slyly pending asymptotes hag| +72046|970858|8416|7|13|25074.53|0.07|0.05|N|O|1996-07-24|1996-09-27|1996-08-06|TAKE BACK RETURN|RAIL|ts print carefully r| +72047|205432|42945|1|11|14711.62|0.06|0.02|N|O|1995-10-28|1996-01-18|1995-11-05|DELIVER IN PERSON|TRUCK|g slyly close excus| +72072|254658|29669|1|4|6450.56|0.10|0.03|R|F|1994-10-11|1994-10-02|1994-10-19|NONE|FOB|ly regular| +72072|34905|22406|2|13|23918.70|0.09|0.07|A|F|1994-08-25|1994-10-31|1994-09-24|COLLECT COD|REG AIR| deposits after the final t| +72072|631722|44235|3|46|76069.74|0.05|0.07|A|F|1994-11-19|1994-11-16|1994-12-06|DELIVER IN PERSON|FOB| mold furious| +72072|351275|13783|4|9|11936.34|0.00|0.05|R|F|1994-10-22|1994-10-19|1994-10-23|TAKE BACK RETURN|REG AIR|theodolites integrate carefully | +72072|875755|790|5|41|70959.11|0.01|0.02|A|F|1994-12-20|1994-11-21|1994-12-30|COLLECT COD|TRUCK| haggle busily final request| +72072|806527|19044|6|35|50171.80|0.10|0.00|R|F|1994-10-19|1994-11-03|1994-11-02|DELIVER IN PERSON|REG AIR|es detect carefully fluffily final| +72072|297416|22427|7|33|46642.20|0.08|0.02|R|F|1994-10-14|1994-11-10|1994-11-03|COLLECT COD|REG AIR| against the quickly regular instruction| +72073|664816|27330|1|42|74792.76|0.04|0.08|N|O|1998-02-10|1997-12-30|1998-03-12|TAKE BACK RETURN|SHIP|ly express theodolites x-ray f| +72073|561783|36806|2|29|53498.04|0.09|0.05|N|O|1998-02-11|1997-12-19|1998-03-05|TAKE BACK RETURN|MAIL|pecial dolphins? fluffily final acco| +72073|871451|46486|3|32|45517.12|0.02|0.00|N|O|1998-02-06|1997-12-19|1998-02-23|TAKE BACK RETURN|RAIL|ously slyly sly accounts. regular| +72073|460830|10831|4|9|16117.29|0.05|0.07|N|O|1998-01-20|1998-02-03|1998-01-24|NONE|REG AIR|ideas. regular, fin| +72073|161405|48915|5|23|33727.20|0.01|0.07|N|O|1997-11-07|1997-12-22|1997-11-23|COLLECT COD|TRUCK|p. unusual, even braids| +72073|718902|6445|6|34|65309.58|0.02|0.06|N|O|1998-02-17|1997-12-18|1998-02-22|DELIVER IN PERSON|FOB|ackages. carefully even realms integ| +72073|584953|22487|7|46|93744.78|0.06|0.04|N|O|1997-12-11|1998-02-03|1998-01-04|TAKE BACK RETURN|MAIL|ly regular asymptotes at the furiously f| +72074|304338|16845|1|25|33558.00|0.02|0.04|N|O|1997-08-21|1997-07-21|1997-09-07|COLLECT COD|AIR|s affix. fluffily f| +72074|994842|32400|2|44|85219.20|0.05|0.07|N|O|1997-07-29|1997-06-19|1997-08-06|DELIVER IN PERSON|RAIL|s. slyly busy theodolit| +72074|303301|15808|3|21|27390.09|0.04|0.05|N|O|1997-08-01|1997-06-28|1997-08-05|COLLECT COD|SHIP|otes? blithely pending packag| +72074|573391|10925|4|19|27823.03|0.05|0.06|N|O|1997-08-27|1997-06-08|1997-09-25|DELIVER IN PERSON|TRUCK|riously. furiously speci| +72074|976121|1160|5|2|2394.16|0.08|0.05|N|O|1997-08-14|1997-07-30|1997-08-29|DELIVER IN PERSON|RAIL| against the ironic | +72074|659817|9818|6|7|12437.46|0.02|0.02|N|O|1997-06-08|1997-06-09|1997-06-25|COLLECT COD|REG AIR|ake. quickly blithe foxes nag b| +72075|985941|48461|1|24|48645.60|0.10|0.05|N|O|1995-12-06|1996-01-02|1996-01-04|NONE|RAIL|ructions. ir| +72075|699349|11863|2|4|5393.24|0.07|0.02|N|O|1995-12-25|1996-01-11|1996-01-17|TAKE BACK RETURN|REG AIR|us packages are furiously around th| +72075|952515|2516|3|18|28214.46|0.01|0.04|N|O|1995-12-11|1996-01-08|1996-01-02|DELIVER IN PERSON|TRUCK|eep fluffily. furiously ir| +72075|912789|12790|4|19|34233.06|0.08|0.07|N|O|1996-01-04|1995-12-18|1996-01-21|COLLECT COD|FOB|ly ironic, expr| +72075|228901|16414|5|47|86004.83|0.01|0.03|N|O|1996-02-13|1996-01-08|1996-02-18|COLLECT COD|MAIL|ts use slyly. furio| +72075|134582|47085|6|45|72746.10|0.04|0.05|N|O|1996-02-07|1996-02-03|1996-02-16|COLLECT COD|SHIP| accounts. theodolites haggle s| +72076|406857|6858|1|32|56442.56|0.04|0.00|N|O|1996-01-10|1996-01-06|1996-01-20|TAKE BACK RETURN|SHIP| final dep| +72077|311782|49301|1|37|66369.49|0.10|0.07|N|O|1996-04-29|1996-04-10|1996-05-22|DELIVER IN PERSON|TRUCK|busily alo| +72077|108112|45619|2|34|38083.74|0.03|0.04|N|O|1996-06-14|1996-05-03|1996-06-27|COLLECT COD|RAIL|ckly bold instructions use packages. | +72077|37555|37556|3|36|53731.80|0.02|0.06|N|O|1996-03-01|1996-04-09|1996-03-10|DELIVER IN PERSON|REG AIR|odolites. final t| +72077|171034|46041|4|7|7735.21|0.08|0.06|N|O|1996-03-28|1996-04-29|1996-04-19|DELIVER IN PERSON|RAIL|ven multipliers nag across the depen| +72077|564415|26927|5|21|31067.19|0.09|0.01|N|O|1996-05-18|1996-05-05|1996-06-04|DELIVER IN PERSON|SHIP|es. furiously| +72077|116389|16390|6|13|18269.94|0.06|0.01|N|O|1996-06-19|1996-04-23|1996-07-19|NONE|RAIL| furiously pending packages kindle idly--| +72077|143144|43145|7|41|48672.74|0.05|0.00|N|O|1996-03-02|1996-04-21|1996-03-27|DELIVER IN PERSON|MAIL|kly ironic foxes. slowly special sauterne| +72078|819055|31572|1|22|21428.22|0.09|0.03|N|O|1996-02-23|1996-02-15|1996-03-20|COLLECT COD|MAIL|sly ironic requests. final, ironi| +72078|848107|10624|2|11|11605.66|0.05|0.07|N|O|1996-01-14|1996-03-06|1996-01-23|TAKE BACK RETURN|SHIP|efully ironic dep| +72078|132491|7496|3|24|36563.76|0.07|0.00|N|O|1996-04-11|1996-04-06|1996-04-21|COLLECT COD|SHIP|, final accounts integrate. furiously b| +72079|279830|4841|1|10|18098.20|0.05|0.03|N|O|1996-04-03|1996-04-03|1996-04-27|COLLECT COD|REG AIR|he quickly pen| +72079|90524|15527|2|29|43921.08|0.06|0.04|N|O|1996-05-28|1996-04-21|1996-05-29|NONE|TRUCK| bold asymptotes detect| +72079|421234|46251|3|23|26569.83|0.02|0.02|N|O|1996-02-20|1996-04-13|1996-02-26|DELIVER IN PERSON|FOB|ously final excuse| +72079|672563|47590|4|42|64492.26|0.08|0.00|N|O|1996-05-28|1996-05-12|1996-06-12|NONE|RAIL|ronic accou| +72079|764948|2494|5|11|22142.01|0.06|0.01|N|O|1996-03-17|1996-05-08|1996-04-12|NONE|MAIL|ages; dolphins c| +72079|469298|6826|6|39|49423.53|0.09|0.08|N|O|1996-04-03|1996-04-25|1996-05-03|DELIVER IN PERSON|SHIP|. carefully pending t| +72104|780295|17841|1|23|31630.98|0.05|0.04|N|O|1997-12-27|1997-12-25|1998-01-06|DELIVER IN PERSON|SHIP|haggle slow, express theodolites. bl| +72104|413860|38877|2|36|63858.24|0.10|0.07|N|O|1997-10-07|1997-11-07|1997-10-16|DELIVER IN PERSON|MAIL| blithely fluffily clos| +72105|166721|16722|1|9|16089.48|0.02|0.02|A|F|1994-07-01|1994-08-13|1994-07-20|TAKE BACK RETURN|AIR|ironic, express platelets play | +72105|70651|8155|2|49|79460.85|0.08|0.04|A|F|1994-08-18|1994-08-25|1994-08-26|DELIVER IN PERSON|SHIP|haggle quickly above the| +72105|416964|4489|3|24|45142.56|0.06|0.08|R|F|1994-09-21|1994-08-29|1994-10-04|DELIVER IN PERSON|FOB|requests wake escapades. quickly ironic i| +72105|900140|37695|4|10|11401.00|0.05|0.06|A|F|1994-10-04|1994-09-19|1994-10-16|TAKE BACK RETURN|REG AIR|ts haggle at the| +72105|640380|40381|5|13|17164.55|0.10|0.02|A|F|1994-07-18|1994-07-31|1994-08-04|COLLECT COD|AIR|ns. quickly slow in| +72105|857630|32665|6|29|46040.11|0.03|0.02|R|F|1994-07-28|1994-08-29|1994-08-03|NONE|REG AIR|ven theodoli| +72105|177657|40161|7|28|48570.20|0.01|0.03|R|F|1994-10-18|1994-09-08|1994-10-19|NONE|SHIP|l, even accounts are. s| +72106|880556|43074|1|32|49168.32|0.01|0.06|N|O|1995-07-26|1995-06-19|1995-08-16|COLLECT COD|REG AIR|g the carefully dogged ideas. bold, specia| +72106|489312|39313|2|26|33833.54|0.06|0.01|R|F|1995-05-25|1995-06-04|1995-05-31|TAKE BACK RETURN|RAIL|ptotes wake carefully si| +72106|851474|39026|3|34|48464.62|0.07|0.07|N|O|1995-06-23|1995-06-01|1995-07-22|DELIVER IN PERSON|TRUCK|ously regular acco| +72106|713831|38860|4|26|47964.80|0.09|0.08|R|F|1995-04-17|1995-06-16|1995-05-17|DELIVER IN PERSON|RAIL|rly final, un| +72107|579198|4221|1|3|3831.51|0.10|0.00|N|O|1997-01-16|1997-02-25|1997-01-27|NONE|TRUCK|ithely abou| +72107|577246|2269|2|39|51605.58|0.02|0.02|N|O|1997-05-04|1997-03-12|1997-05-30|TAKE BACK RETURN|FOB|ccording to the fluffily regular | +72108|147899|47900|1|26|50619.14|0.01|0.02|N|O|1998-03-15|1997-12-27|1998-04-07|NONE|REG AIR| above the regular | +72109|800754|25787|1|48|79426.08|0.08|0.06|R|F|1992-12-19|1992-11-06|1993-01-04|TAKE BACK RETURN|MAIL|und the furi| +72109|269714|19715|2|44|74082.80|0.04|0.07|R|F|1992-10-31|1992-12-10|1992-11-13|DELIVER IN PERSON|TRUCK|s wake. carefully fina| +72109|69413|31915|3|34|47001.94|0.07|0.08|R|F|1992-12-17|1992-11-14|1992-12-22|NONE|SHIP|s. slyly regu| +72109|622473|34986|4|38|53026.72|0.03|0.03|A|F|1993-01-03|1992-12-16|1993-01-08|DELIVER IN PERSON|REG AIR|d pinto beans. regular, pendin| +72109|890875|28427|5|38|70901.54|0.06|0.04|R|F|1993-01-25|1992-12-10|1993-02-01|TAKE BACK RETURN|FOB|ing, ironic p| +72109|922625|22626|6|29|47779.82|0.06|0.01|A|F|1992-10-17|1992-12-18|1992-11-16|COLLECT COD|TRUCK| busily. carefully ironic | +72110|348733|23746|1|25|44543.00|0.08|0.00|R|F|1994-03-03|1994-02-06|1994-04-02|NONE|SHIP|ealms according to the regular foxes sleep| +72110|139584|2087|2|48|77931.84|0.06|0.05|A|F|1994-03-31|1994-02-20|1994-04-14|NONE|SHIP|es wake to the fluffily specia| +72110|979011|29012|3|2|2179.94|0.05|0.04|R|F|1994-03-11|1994-02-22|1994-04-06|TAKE BACK RETURN|TRUCK|lar platelets w| +72110|233779|33780|4|14|23978.64|0.03|0.06|A|F|1993-12-29|1994-03-04|1994-01-13|NONE|REG AIR|ts use carefully furiously express theodo| +72110|108044|33049|5|50|52602.00|0.01|0.03|A|F|1993-12-25|1994-03-08|1994-01-02|DELIVER IN PERSON|FOB| blithely | +72110|882273|44791|6|4|5020.92|0.07|0.05|R|F|1994-03-19|1994-03-13|1994-03-24|COLLECT COD|RAIL|ts are slyly specia| +72111|640385|27922|1|16|21205.60|0.10|0.04|A|F|1994-06-02|1994-07-24|1994-06-17|COLLECT COD|REG AIR|quests are careful| +72111|935815|10852|2|36|66627.72|0.10|0.02|R|F|1994-08-06|1994-07-19|1994-09-04|TAKE BACK RETURN|RAIL|ress, bold instructions. r| +72111|240161|15170|3|8|8809.20|0.03|0.01|A|F|1994-09-05|1994-07-15|1994-09-18|DELIVER IN PERSON|SHIP|ses use carefully across| +72111|377724|27725|4|10|18017.10|0.00|0.01|A|F|1994-06-23|1994-07-06|1994-06-25|NONE|AIR| against the pending| +72111|404130|41655|5|24|24818.64|0.10|0.01|A|F|1994-09-08|1994-08-01|1994-10-04|NONE|REG AIR|quests according to the deposits are| +72111|196176|21183|6|9|11449.53|0.05|0.03|A|F|1994-06-22|1994-07-22|1994-06-30|TAKE BACK RETURN|FOB|olites. busy acc| +72136|319260|19261|1|22|28143.50|0.10|0.02|N|O|1997-11-20|1998-01-03|1997-11-22|NONE|FOB|carefully. car| +72136|793342|18373|2|21|30141.51|0.03|0.04|N|O|1998-01-14|1998-02-09|1998-01-20|DELIVER IN PERSON|FOB|blithely silent | +72137|719767|7310|1|20|35734.60|0.10|0.01|N|O|1997-11-24|1997-10-21|1997-11-30|COLLECT COD|SHIP|ests sleep among the | +72137|109239|34244|2|27|33702.21|0.05|0.00|N|O|1997-08-21|1997-10-23|1997-09-03|DELIVER IN PERSON|SHIP|ronic packages breach slyly. fluffily si| +72137|973103|10661|3|50|58803.00|0.06|0.00|N|O|1997-11-24|1997-09-06|1997-12-04|NONE|TRUCK|y bold pinto beans. accounts haggle al| +72137|930246|42765|4|10|12762.00|0.08|0.05|N|O|1997-10-08|1997-09-02|1997-10-31|COLLECT COD|FOB|he final foxes. slyly fluffy ideas b| +72137|639226|1739|5|23|26799.37|0.08|0.07|N|O|1997-08-16|1997-09-27|1997-09-04|DELIVER IN PERSON|SHIP|even, ironic accounts accord| +72137|471322|46341|6|35|45265.50|0.02|0.06|N|O|1997-09-14|1997-08-30|1997-09-28|DELIVER IN PERSON|MAIL|lly under the| +72137|499537|24556|7|32|49168.32|0.01|0.06|N|O|1997-10-14|1997-10-25|1997-11-12|DELIVER IN PERSON|SHIP| the quickl| +72138|717212|17213|1|5|6145.90|0.02|0.02|N|O|1996-06-09|1996-06-11|1996-07-06|NONE|RAIL|mptotes are carefully.| +72138|180031|17541|2|47|52218.41|0.08|0.04|N|O|1996-06-28|1996-06-17|1996-07-27|TAKE BACK RETURN|AIR|quests. fluffily ironic courts wake.| +72138|766042|28558|3|35|38780.35|0.03|0.08|N|O|1996-07-10|1996-05-09|1996-07-22|COLLECT COD|SHIP|inal packages cajole blithe| +72139|541308|41309|1|30|40478.40|0.10|0.03|N|O|1997-05-03|1997-05-10|1997-05-12|DELIVER IN PERSON|FOB|regular excuses. regular a| +72139|756200|31231|2|23|28891.91|0.05|0.08|N|O|1997-05-18|1997-06-26|1997-05-21|NONE|MAIL|the regular reques| +72139|441451|16468|3|35|48735.05|0.05|0.04|N|O|1997-04-11|1997-05-23|1997-04-19|NONE|TRUCK|fily ironic asym| +72139|453829|3830|4|4|7131.20|0.09|0.04|N|O|1997-07-16|1997-06-21|1997-08-05|NONE|MAIL|y final requests cajole furiously quickly| +72139|498000|48001|5|47|46905.06|0.06|0.02|N|O|1997-05-26|1997-05-20|1997-05-29|DELIVER IN PERSON|FOB|ments about the carefully ironic packag| +72139|884418|21970|6|7|9816.59|0.05|0.06|N|O|1997-04-20|1997-05-11|1997-05-16|DELIVER IN PERSON|SHIP|final platelets. final i| +72140|566071|28583|1|22|25015.10|0.09|0.03|N|O|1997-07-29|1997-07-21|1997-08-19|NONE|REG AIR| beans wake q| +72140|942192|4711|2|32|39492.80|0.01|0.01|N|O|1997-08-12|1997-07-19|1997-08-21|NONE|AIR|bout the ironic p| +72141|81489|43991|1|8|11763.84|0.03|0.02|R|F|1993-07-16|1993-06-28|1993-08-15|TAKE BACK RETURN|MAIL| the furiously regular realms. quickly unus| +72141|573579|36091|2|4|6610.20|0.01|0.05|R|F|1993-06-02|1993-07-12|1993-07-02|DELIVER IN PERSON|MAIL|f the slyly express deposits a| +72141|140894|40895|3|39|75460.71|0.10|0.06|R|F|1993-07-13|1993-05-26|1993-07-22|DELIVER IN PERSON|TRUCK| according to the furiously unusual pac| +72141|989822|14861|4|2|3823.56|0.08|0.08|R|F|1993-08-09|1993-07-02|1993-08-27|COLLECT COD|SHIP|counts. quickly u| +72141|925312|12867|5|48|64188.96|0.09|0.03|A|F|1993-07-02|1993-06-12|1993-07-15|TAKE BACK RETURN|MAIL| quickly express theodolite| +72141|715737|40766|6|2|3505.40|0.03|0.08|A|F|1993-05-03|1993-06-17|1993-05-23|TAKE BACK RETURN|MAIL|arefully ironic requests print fluffily un| +72141|385443|22965|7|32|48909.76|0.03|0.05|R|F|1993-05-20|1993-05-27|1993-06-16|DELIVER IN PERSON|FOB|gular asymptotes hinder along the theo| +72142|135568|48071|1|12|19242.72|0.01|0.03|R|F|1993-12-26|1993-10-29|1994-01-14|NONE|RAIL|lithely along | +72142|485381|22909|2|23|31426.28|0.07|0.02|A|F|1993-11-22|1993-11-16|1993-11-25|DELIVER IN PERSON|MAIL|eas. furiously final requ| +72142|791055|41056|3|28|32088.56|0.10|0.05|A|F|1994-01-24|1993-12-05|1994-02-02|TAKE BACK RETURN|MAIL|lar dolphins are furiously express | +72142|260099|22605|4|23|24358.84|0.02|0.03|A|F|1993-11-30|1993-11-12|1993-12-06|DELIVER IN PERSON|TRUCK| slyly even packages. express| +72142|475832|25833|5|35|63273.35|0.07|0.08|A|F|1993-11-24|1993-12-12|1993-12-14|NONE|RAIL|lar pinto b| +72142|292437|17448|6|1|1429.42|0.08|0.08|R|F|1993-12-24|1993-11-21|1994-01-16|NONE|AIR|d sheaves. fluffily unusual acc| +72142|987389|49909|7|44|64958.96|0.01|0.07|R|F|1993-12-18|1993-10-28|1993-12-28|COLLECT COD|REG AIR|ly unusual frets a| +72143|46159|46160|1|21|23208.15|0.01|0.08|N|O|1997-09-05|1997-10-09|1997-09-13|DELIVER IN PERSON|MAIL|its alongside of the slyly iron| +72143|779978|5009|2|46|94665.24|0.09|0.06|N|O|1997-09-30|1997-11-04|1997-10-22|COLLECT COD|MAIL|integrate blithely a| +72143|85840|23344|3|34|62078.56|0.01|0.06|N|O|1997-08-28|1997-11-03|1997-09-02|TAKE BACK RETURN|FOB|s packages. | +72143|706148|6149|4|48|55397.28|0.05|0.06|N|O|1997-10-02|1997-10-15|1997-10-28|COLLECT COD|AIR|ve the ironic packages wake car| +72143|217663|42672|5|2|3161.30|0.03|0.07|N|O|1997-10-16|1997-09-20|1997-10-20|TAKE BACK RETURN|AIR|ing, regular deposits| +72143|250435|25446|6|19|26322.98|0.00|0.05|N|O|1997-10-16|1997-10-30|1997-11-12|COLLECT COD|MAIL|the regular dolphins. slyly pending p| +72143|45055|45056|7|19|19000.95|0.10|0.08|N|O|1997-10-11|1997-11-07|1997-11-01|NONE|SHIP|blithe packages! | +72168|233667|8676|1|21|33613.65|0.10|0.07|R|F|1992-09-03|1992-10-25|1992-09-28|NONE|REG AIR|t, final packages according | +72168|226984|26985|2|13|24842.61|0.01|0.02|R|F|1992-11-10|1992-10-02|1992-11-11|NONE|RAIL| haggle. even, even ideas serve. furio| +72168|906430|31467|3|20|28727.80|0.02|0.05|A|F|1992-10-06|1992-10-09|1992-10-08|COLLECT COD|MAIL|ar dependencies h| +72168|368391|18392|4|18|26268.84|0.05|0.00|R|F|1992-10-30|1992-10-06|1992-11-24|COLLECT COD|RAIL|inst the blithely bold hockey players.| +72169|251262|13768|1|47|57022.75|0.05|0.07|N|O|1996-05-16|1996-05-26|1996-06-05|TAKE BACK RETURN|TRUCK|the pending, regular requests u| +72169|948295|48296|2|14|18805.50|0.09|0.04|N|O|1996-04-16|1996-05-30|1996-04-20|NONE|RAIL|s. closely unusual deposits affix abou| +72169|984329|9368|3|50|70664.00|0.01|0.02|N|O|1996-04-23|1996-05-28|1996-05-06|TAKE BACK RETURN|SHIP|the blithely regular requests. accounts | +72169|613256|13257|4|20|23384.40|0.05|0.06|N|O|1996-05-22|1996-06-11|1996-06-21|COLLECT COD|REG AIR|sual pinto beans. q| +72169|978437|28438|5|6|9092.34|0.06|0.04|N|O|1996-05-24|1996-05-20|1996-06-18|NONE|RAIL|structions. | +72169|587732|244|6|44|80067.24|0.02|0.06|N|O|1996-05-01|1996-06-12|1996-05-17|DELIVER IN PERSON|MAIL|pecial ideas use carefully about t| +72170|789036|39037|1|3|3375.00|0.04|0.01|A|F|1992-09-21|1992-09-09|1992-09-30|COLLECT COD|SHIP|slow deposits along th| +72170|312479|37492|2|12|17897.52|0.03|0.02|A|F|1992-06-27|1992-09-05|1992-07-02|DELIVER IN PERSON|TRUCK|al ideas use accounts.| +72171|593771|31305|1|5|9323.75|0.04|0.01|N|O|1997-01-10|1997-02-04|1997-02-01|TAKE BACK RETURN|AIR|r ideas affix slyly. enticing pinto beans | +72171|504583|17094|2|11|17463.16|0.09|0.00|N|O|1997-01-13|1996-12-25|1997-02-11|COLLECT COD|MAIL|packages after the quickly regular decoys a| +72171|524188|24189|3|18|21818.88|0.05|0.01|N|O|1997-02-14|1997-01-26|1997-02-27|DELIVER IN PERSON|AIR| about the blithely bold| +72172|92667|30171|1|44|73025.04|0.03|0.08|N|O|1996-03-12|1996-04-23|1996-03-16|COLLECT COD|FOB| carefully pending reques| +72172|447530|22547|2|12|17730.12|0.08|0.07|N|O|1996-03-11|1996-03-07|1996-03-15|TAKE BACK RETURN|SHIP|. furiously regul| +72172|629717|29718|3|46|75747.28|0.03|0.02|N|O|1996-04-25|1996-03-05|1996-05-23|COLLECT COD|RAIL|fully special pains after the| +72172|650444|445|4|34|47409.94|0.05|0.00|N|O|1996-03-01|1996-04-08|1996-03-09|DELIVER IN PERSON|SHIP|l requests haggle. carefully fin| +72172|4668|42169|5|28|44034.48|0.05|0.08|N|O|1996-05-23|1996-03-07|1996-06-15|DELIVER IN PERSON|TRUCK|ermanent, regular dolphins promise blith| +72172|441626|16643|6|26|40757.60|0.04|0.05|N|O|1996-04-20|1996-03-11|1996-04-26|COLLECT COD|AIR|he accounts. | +72173|908951|33988|1|3|5879.73|0.04|0.00|N|O|1997-07-24|1997-05-29|1997-08-03|TAKE BACK RETURN|TRUCK|timents haggle slyly. special, | +72173|729984|5013|2|43|86599.85|0.10|0.00|N|O|1997-07-18|1997-05-16|1997-08-13|TAKE BACK RETURN|MAIL|sly slow acc| +72173|837265|12298|3|23|27651.06|0.02|0.05|N|O|1997-07-26|1997-05-13|1997-07-31|NONE|MAIL|requests. quickly special foxes integrate | +72173|900383|25420|4|28|38733.52|0.06|0.04|N|O|1997-08-02|1997-06-18|1997-08-06|TAKE BACK RETURN|REG AIR|phins among th| +72173|721495|46524|5|26|39427.96|0.07|0.03|N|O|1997-06-01|1997-05-30|1997-06-13|TAKE BACK RETURN|AIR|to beans. even, special p| +72173|158022|8023|6|44|47520.88|0.04|0.07|N|O|1997-05-08|1997-06-16|1997-05-20|COLLECT COD|REG AIR|regular asym| +72174|202398|14903|1|19|24707.22|0.00|0.04|A|F|1993-02-28|1993-03-30|1993-03-25|NONE|RAIL|ss accounts. bold | +72174|694631|32171|2|40|65024.00|0.10|0.07|A|F|1993-04-12|1993-03-27|1993-04-20|DELIVER IN PERSON|TRUCK|e quickly regular inst| +72174|651899|26926|3|28|51824.08|0.01|0.02|A|F|1993-01-14|1993-03-17|1993-02-13|COLLECT COD|MAIL|ages boost ruthlessly ironic ideas. ca| +72175|422020|34529|1|48|45216.00|0.01|0.02|N|O|1997-09-15|1997-11-25|1997-09-30|NONE|RAIL|g. requests engage carefully.| +72175|880375|17927|2|44|59634.52|0.09|0.08|N|O|1997-12-10|1997-11-10|1998-01-03|COLLECT COD|SHIP|as are fluffily amon| +72200|420986|8511|1|31|59115.76|0.07|0.04|N|O|1996-05-05|1996-06-13|1996-05-29|DELIVER IN PERSON|SHIP|fluffily special grouches:| +72200|509342|34363|2|42|56755.44|0.04|0.07|N|O|1996-05-16|1996-05-25|1996-05-22|TAKE BACK RETURN|REG AIR|y forges. furiously bold re| +72200|501621|39152|3|24|38942.40|0.03|0.08|N|O|1996-05-11|1996-05-13|1996-05-22|TAKE BACK RETURN|SHIP|ounts. carefully silent requests wake. q| +72200|729367|4396|4|37|51664.21|0.04|0.01|N|O|1996-05-02|1996-04-30|1996-05-21|TAKE BACK RETURN|RAIL|arefully express fo| +72201|448978|11487|1|18|34685.10|0.05|0.02|N|O|1995-12-12|1995-12-24|1995-12-14|TAKE BACK RETURN|REG AIR| unusual packages. requests boost| +72201|969287|6845|2|43|58318.32|0.08|0.06|N|O|1995-10-03|1995-11-10|1995-10-09|COLLECT COD|AIR|theodolites. entici| +72201|805453|17970|3|38|51619.58|0.03|0.00|N|O|1995-12-05|1995-11-21|1996-01-02|TAKE BACK RETURN|FOB| carefully around the fluffily f| +72201|242796|5301|4|18|31298.04|0.07|0.00|N|O|1996-01-01|1995-11-04|1996-01-13|DELIVER IN PERSON|FOB|ounts. express, regular dugouts | +72201|667500|5040|5|12|17609.64|0.08|0.01|N|O|1995-10-26|1995-12-03|1995-11-16|TAKE BACK RETURN|RAIL|ackages sleep furiously blithely iro| +72201|666432|16433|6|46|64326.40|0.04|0.03|N|O|1996-01-21|1995-12-07|1996-02-16|NONE|AIR|ounts sleep. special dependencies must have| +72202|851913|39465|1|38|70865.06|0.04|0.05|N|O|1995-09-06|1995-11-01|1995-09-10|TAKE BACK RETURN|FOB|ross the express, express reques| +72202|90301|2803|2|43|55525.90|0.10|0.03|N|O|1995-09-21|1995-09-13|1995-10-13|NONE|MAIL|ar requests sleep blith| +72203|22333|9834|1|11|13808.63|0.07|0.08|R|F|1993-09-19|1993-10-10|1993-09-26|COLLECT COD|MAIL|to beans sleep bli| +72203|343036|30555|2|34|36686.68|0.07|0.01|R|F|1993-11-10|1993-10-05|1993-11-19|TAKE BACK RETURN|AIR|iously pending courts. | +72203|396330|21345|3|18|25673.76|0.07|0.06|A|F|1993-09-09|1993-10-15|1993-09-20|TAKE BACK RETURN|RAIL|eodolites impress after t| +72203|102323|27328|4|29|38434.28|0.00|0.07|A|F|1993-11-02|1993-09-20|1993-11-03|NONE|SHIP|, final deposi| +72203|728737|28738|5|36|63565.20|0.07|0.08|R|F|1993-12-02|1993-10-01|1993-12-31|TAKE BACK RETURN|MAIL|ess deposits w| +72203|869819|32337|6|46|82283.42|0.04|0.04|A|F|1993-12-13|1993-10-27|1993-12-28|TAKE BACK RETURN|REG AIR|ithely alongside of the| +72204|881725|6760|1|42|71680.56|0.04|0.04|N|O|1998-07-29|1998-07-16|1998-08-08|DELIVER IN PERSON|SHIP|regular requests. daringly fina| +72204|138539|1042|2|48|75721.44|0.09|0.02|N|O|1998-08-06|1998-07-05|1998-08-29|DELIVER IN PERSON|FOB|ges. furiously s| +72205|862629|181|1|28|44564.24|0.10|0.08|N|O|1997-04-19|1997-02-18|1997-04-25|TAKE BACK RETURN|REG AIR| stealthily ironic instructio| +72205|205463|42976|2|47|64317.15|0.07|0.05|N|O|1997-02-22|1997-03-30|1997-03-04|NONE|AIR|furiously. express, final theodoli| +72205|211417|11418|3|29|38523.60|0.05|0.07|N|O|1997-02-10|1997-04-13|1997-03-04|TAKE BACK RETURN|SHIP|ffily special| +72205|275453|37959|4|19|27140.36|0.06|0.02|N|O|1997-02-19|1997-02-23|1997-03-10|NONE|TRUCK|ckly ironic, unusual pac| +72205|534220|9241|5|9|11287.80|0.02|0.00|N|O|1997-04-17|1997-02-27|1997-04-22|NONE|FOB|iously reques| +72206|409762|9763|1|17|28419.58|0.05|0.03|R|F|1993-10-08|1993-11-22|1993-10-19|TAKE BACK RETURN|AIR|fily bold foxes | +72206|867601|5153|2|16|25096.96|0.09|0.01|A|F|1994-01-13|1993-10-22|1994-01-22|TAKE BACK RETURN|RAIL|sual, final pac| +72206|761167|11168|3|25|30703.25|0.01|0.08|A|F|1993-09-23|1993-12-07|1993-09-28|TAKE BACK RETURN|SHIP|bold instruction| +72206|919822|7377|4|46|84721.88|0.10|0.02|A|F|1994-01-14|1993-10-30|1994-02-11|DELIVER IN PERSON|AIR|ow, regular ideas w| +72207|457611|7612|1|49|76860.91|0.03|0.05|N|O|1996-05-11|1996-05-06|1996-06-10|NONE|REG AIR|sly over the bli| +72207|59365|21867|2|32|42379.52|0.10|0.03|N|O|1996-04-15|1996-04-18|1996-04-17|COLLECT COD|RAIL|etimes. regular f| +72207|743942|43943|3|35|69506.85|0.03|0.05|N|O|1996-06-19|1996-04-28|1996-07-08|TAKE BACK RETURN|TRUCK|nt special ideas. thinly b| +72232|67914|5418|1|39|73394.49|0.09|0.05|R|F|1993-05-24|1993-05-19|1993-06-22|TAKE BACK RETURN|FOB| the blithely pending packages unw| +72232|428866|16391|2|29|52050.36|0.04|0.02|A|F|1993-07-08|1993-04-28|1993-07-22|NONE|SHIP|posits sleep carefully | +72232|937810|329|3|5|9238.85|0.04|0.04|A|F|1993-04-25|1993-06-05|1993-05-22|TAKE BACK RETURN|REG AIR|ent deposit| +72232|764922|39953|4|40|79475.60|0.06|0.04|R|F|1993-06-19|1993-05-28|1993-06-25|COLLECT COD|REG AIR|into beans. fina| +72232|43192|18193|5|40|45407.60|0.04|0.00|A|F|1993-07-17|1993-06-05|1993-08-11|COLLECT COD|FOB|epths grow furiously. pending, f| +72233|207428|32437|1|27|36056.07|0.10|0.08|R|F|1993-02-16|1993-03-31|1993-02-28|DELIVER IN PERSON|TRUCK| theodolites kindle da| +72233|226243|38748|2|5|5846.15|0.06|0.06|A|F|1993-03-13|1993-03-03|1993-03-21|COLLECT COD|TRUCK|e slyly furiously ironic platelets. final| +72233|464796|27306|3|30|52823.10|0.03|0.08|A|F|1993-02-26|1993-03-29|1993-03-04|NONE|FOB|le. unusual deposits nag care| +72233|825815|848|4|16|27852.32|0.04|0.05|R|F|1993-02-12|1993-04-17|1993-03-05|COLLECT COD|TRUCK|ites haggle furiously de| +72233|469896|7424|5|26|48512.62|0.03|0.01|R|F|1993-02-19|1993-03-20|1993-02-26|DELIVER IN PERSON|TRUCK|ngly fluffi| +72233|537801|12822|6|43|79067.54|0.05|0.02|R|F|1993-04-30|1993-02-22|1993-05-06|COLLECT COD|TRUCK| packages. slyly bold theodolites use ab| +72233|812001|12002|7|40|36518.40|0.10|0.06|A|F|1993-02-13|1993-04-18|1993-02-21|COLLECT COD|AIR|fully dogged | +72234|300042|43|1|5|5210.15|0.08|0.07|A|F|1995-04-11|1995-02-05|1995-05-07|NONE|RAIL|ld platelets are fluffily bold i| +72234|792586|42587|2|50|83927.50|0.09|0.06|R|F|1995-04-14|1995-02-28|1995-04-29|NONE|TRUCK|y pending ideas. furiousl| +72235|361563|24071|1|9|14620.95|0.04|0.08|R|F|1994-07-28|1994-10-04|1994-07-30|TAKE BACK RETURN|SHIP|ent pinto beans| +72235|786369|23915|2|48|69855.84|0.02|0.06|A|F|1994-07-29|1994-08-29|1994-08-04|COLLECT COD|REG AIR|dolites integr| +72236|20892|45893|1|1|1812.89|0.09|0.03|N|O|1996-09-30|1996-08-14|1996-10-05|NONE|SHIP| slyly alongside of the carefully even ide| +72236|128586|28587|2|34|54895.72|0.08|0.06|N|O|1996-09-09|1996-09-09|1996-09-29|COLLECT COD|TRUCK|e carefully expr| +72236|135939|23446|3|45|88871.85|0.08|0.02|N|O|1996-08-01|1996-08-29|1996-08-19|DELIVER IN PERSON|RAIL| regular, ironic requests maint| +72236|726480|14023|4|43|64777.35|0.04|0.06|N|O|1996-08-11|1996-10-03|1996-09-05|NONE|RAIL|n forges haggle quickly a| +72236|942521|5040|5|10|15634.80|0.01|0.02|N|O|1996-10-22|1996-08-29|1996-10-30|DELIVER IN PERSON|AIR|en packages across the | +72236|946257|8776|6|1|1303.21|0.03|0.03|N|O|1996-11-03|1996-09-11|1996-12-01|TAKE BACK RETURN|AIR| ironic foxes sleep| +72237|862076|49628|1|4|4152.12|0.04|0.04|A|F|1993-01-20|1993-02-10|1993-02-01|TAKE BACK RETURN|SHIP|yly above the unusual re| +72237|895731|45732|2|2|3453.38|0.10|0.07|R|F|1993-04-23|1993-02-20|1993-04-28|DELIVER IN PERSON|FOB| carefully final epitap| +72237|540136|2647|3|30|35283.30|0.10|0.08|R|F|1993-03-01|1993-02-16|1993-03-18|COLLECT COD|AIR|packages. final dep| +72237|54121|16623|4|5|5375.60|0.00|0.06|A|F|1993-01-22|1993-03-13|1993-02-15|DELIVER IN PERSON|SHIP| integrate furiously. carefu| +72237|608192|33217|5|16|17602.56|0.04|0.03|R|F|1993-04-12|1993-03-21|1993-04-13|DELIVER IN PERSON|MAIL| nag according t| +72237|882551|7586|6|31|47538.81|0.02|0.00|A|F|1993-05-02|1993-03-11|1993-05-06|TAKE BACK RETURN|SHIP|cajole. stealthy, s| +72237|31847|19348|7|31|55144.04|0.10|0.06|A|F|1993-02-19|1993-03-15|1993-03-16|DELIVER IN PERSON|RAIL|pecial requests about the ironic | +72238|239258|39259|1|44|52678.56|0.01|0.05|A|F|1992-07-14|1992-08-18|1992-07-21|COLLECT COD|FOB|longside of the | +72239|756687|31718|1|20|34873.00|0.00|0.01|N|O|1998-08-22|1998-06-11|1998-09-14|COLLECT COD|MAIL|even foxes detect | +72239|626784|14321|2|35|59876.25|0.06|0.05|N|O|1998-07-16|1998-06-21|1998-08-11|DELIVER IN PERSON|TRUCK|gle accounts. quickly bold requests | +72264|306774|44293|1|32|56984.32|0.05|0.04|N|O|1997-02-10|1996-11-30|1997-03-09|TAKE BACK RETURN|REG AIR|ular deposits. i| +72264|937241|24796|2|32|40902.40|0.06|0.07|N|O|1996-12-16|1996-11-24|1997-01-04|COLLECT COD|MAIL|ding requests haggle qui| +72264|195926|8430|3|11|22241.12|0.06|0.01|N|O|1996-11-19|1996-12-16|1996-11-24|NONE|FOB|ronic requests| +72264|919603|32122|4|26|42186.56|0.08|0.07|N|O|1997-01-28|1997-01-06|1997-02-24|TAKE BACK RETURN|SHIP| close deposi| +72264|757258|19774|5|1|1315.22|0.02|0.01|N|O|1996-12-25|1996-12-13|1997-01-06|NONE|TRUCK| the furiously pendi| +72264|219581|19582|6|5|7502.85|0.02|0.06|N|O|1996-10-23|1996-12-17|1996-11-18|TAKE BACK RETURN|FOB|kages sleep b| +72265|368528|43543|1|5|7982.55|0.07|0.08|N|O|1998-07-31|1998-07-29|1998-08-30|TAKE BACK RETURN|RAIL| even accounts sleep quickly a| +72265|847291|22324|2|2|2476.50|0.04|0.04|N|O|1998-05-18|1998-07-21|1998-05-19|TAKE BACK RETURN|TRUCK|sts cajole blithely among the | +72265|412224|24733|3|37|42039.40|0.10|0.06|N|O|1998-08-03|1998-06-30|1998-08-24|TAKE BACK RETURN|MAIL|p fluffily boldly ironic | +72266|871543|9095|1|48|72696.00|0.01|0.04|N|O|1997-06-24|1997-05-10|1997-07-01|NONE|MAIL|leep slyly special, s| +72266|20641|45642|2|17|26547.88|0.07|0.03|N|O|1997-06-17|1997-06-05|1997-07-12|DELIVER IN PERSON|SHIP|silently slyly unusua| +72266|905657|30694|3|35|58191.35|0.08|0.02|N|O|1997-05-23|1997-05-25|1997-05-27|TAKE BACK RETURN|REG AIR|ic, fluffy sentiments haggle blith| +72266|370827|33335|4|28|53138.68|0.08|0.07|N|O|1997-05-31|1997-05-18|1997-06-13|TAKE BACK RETURN|MAIL|oss the carefully final requests eat carefu| +72266|473546|11074|5|27|41027.04|0.03|0.01|N|O|1997-05-31|1997-06-08|1997-06-20|DELIVER IN PERSON|RAIL|rs cajole despite the s| +72266|880288|30289|6|20|25364.80|0.04|0.05|N|O|1997-06-27|1997-05-14|1997-07-25|NONE|SHIP|, bold theodolites. thinly e| +72266|998596|11116|7|3|5083.65|0.10|0.06|N|O|1997-06-23|1997-05-10|1997-07-17|COLLECT COD|REG AIR|. carefully unusual depo| +72267|389402|26924|1|49|73078.11|0.06|0.02|A|F|1993-09-04|1993-10-19|1993-09-26|DELIVER IN PERSON|RAIL| cajole slyly furiously b| +72267|669192|44219|2|2|2322.32|0.00|0.04|R|F|1993-08-29|1993-10-11|1993-09-18|DELIVER IN PERSON|TRUCK|ly express theo| +72267|108397|8398|3|18|25297.02|0.08|0.00|R|F|1993-11-25|1993-09-01|1993-12-20|COLLECT COD|AIR|he thin foxes should have to wa| +72268|243287|5792|1|50|61513.50|0.03|0.03|A|F|1994-09-14|1994-08-18|1994-10-07|DELIVER IN PERSON|REG AIR| regular dependencies are. permanent deposi| +72268|923576|48613|2|12|19194.36|0.04|0.06|R|F|1994-07-26|1994-07-21|1994-08-20|DELIVER IN PERSON|RAIL|should have to are agai| +72268|536833|36834|3|23|43005.63|0.05|0.00|A|F|1994-08-05|1994-07-23|1994-08-23|DELIVER IN PERSON|MAIL|xpress packages nag af| +72268|549127|36658|4|30|35283.00|0.09|0.07|R|F|1994-09-08|1994-07-25|1994-09-21|COLLECT COD|MAIL|. quickly even packages nag. | +72269|885937|10972|1|30|57686.70|0.06|0.06|N|O|1998-08-04|1998-05-13|1998-09-01|TAKE BACK RETURN|REG AIR|r packages sl| +72269|927047|27048|2|37|39738.00|0.01|0.08|N|O|1998-05-24|1998-06-18|1998-06-21|DELIVER IN PERSON|MAIL|apades affix f| +72269|866967|42002|3|22|42546.24|0.07|0.07|N|O|1998-05-13|1998-07-11|1998-05-26|NONE|REG AIR|ly ironic packages boost carefull| +72270|394579|32101|1|49|82004.44|0.06|0.05|N|O|1997-09-10|1997-10-07|1997-09-25|TAKE BACK RETURN|AIR|posits. blithely bol| +72270|674853|37367|2|14|25589.48|0.08|0.03|N|O|1997-10-17|1997-10-13|1997-11-16|COLLECT COD|RAIL|t quickly after the accounts. regular excu| +72270|252269|14775|3|40|48850.00|0.03|0.01|N|O|1997-11-07|1997-10-09|1997-11-19|NONE|MAIL| instructions must| +72270|878547|28548|4|8|12204.00|0.08|0.03|N|O|1997-10-22|1997-10-09|1997-11-15|NONE|RAIL|ckages kindle blithely even packages. blith| +72270|736850|49365|5|27|50944.14|0.01|0.02|N|O|1997-12-06|1997-10-12|1997-12-24|COLLECT COD|MAIL|dolites boost bravely! unusual, final r| +72270|225598|607|6|50|76179.00|0.06|0.01|N|O|1997-08-24|1997-11-05|1997-09-21|COLLECT COD|REG AIR|nic deposits nag among the quickl| +72271|724253|36768|1|45|57474.90|0.03|0.02|A|F|1994-02-21|1994-01-16|1994-03-05|COLLECT COD|SHIP|. blithely ironic deposits nod finally sp| +72271|513489|1020|2|11|16527.06|0.03|0.02|R|F|1994-02-27|1993-12-17|1994-03-25|DELIVER IN PERSON|MAIL|ndencies. re| +72271|208258|20763|3|17|19826.08|0.08|0.07|R|F|1994-03-01|1994-01-08|1994-03-27|TAKE BACK RETURN|REG AIR|y express packages. special, ironic foxe| +72271|191679|29189|4|2|3541.34|0.01|0.01|A|F|1993-12-23|1994-01-01|1993-12-25|NONE|REG AIR|slyly silent accou| +72296|658377|8378|1|31|41395.54|0.09|0.02|N|O|1997-02-21|1997-02-16|1997-03-12|COLLECT COD|TRUCK|heodolites kindle furious| +72296|335759|48266|2|43|77173.82|0.10|0.00|N|O|1997-01-22|1997-04-10|1997-02-16|NONE|TRUCK|osits integrate fluffily a| +72296|89572|39573|3|38|59339.66|0.01|0.00|N|O|1997-03-19|1997-03-14|1997-03-25|NONE|MAIL|kages wake. doggedly| +72296|424284|24285|4|30|36247.80|0.07|0.07|N|O|1997-01-19|1997-03-17|1997-02-03|DELIVER IN PERSON|FOB|, regular deposi| +72296|932817|7854|5|34|62892.18|0.04|0.01|N|O|1997-04-22|1997-04-07|1997-05-17|TAKE BACK RETURN|RAIL| around the quickly even deposits-- depen| +72297|380280|30281|1|39|53050.53|0.00|0.01|N|O|1997-06-07|1997-05-12|1997-06-17|TAKE BACK RETURN|REG AIR|osits. enticingly final dolphins nag b| +72298|635021|47534|1|33|31547.67|0.09|0.04|R|F|1994-10-14|1994-10-26|1994-11-12|DELIVER IN PERSON|MAIL| carefully. pending deposits thrash| +72298|787609|125|2|14|23751.98|0.05|0.06|A|F|1994-11-05|1994-10-26|1994-11-07|DELIVER IN PERSON|REG AIR|uests haggle according to t| +72299|872412|22413|1|46|63681.02|0.05|0.05|A|F|1995-04-06|1995-03-03|1995-04-24|TAKE BACK RETURN|MAIL|ckly blithel| +72299|617070|29583|2|50|49352.00|0.09|0.04|R|F|1995-02-28|1995-03-02|1995-03-20|COLLECT COD|AIR|ans. pinto beans| +72300|104070|29075|1|15|16111.05|0.06|0.06|A|F|1992-09-22|1992-08-10|1992-10-20|NONE|FOB|eep quietly regular dep| +72300|89823|14826|2|31|56197.42|0.02|0.02|R|F|1992-07-25|1992-07-21|1992-07-28|TAKE BACK RETURN|RAIL|ly ruthless pinto beans against the regul| +72300|642767|42768|3|44|75228.12|0.01|0.04|R|F|1992-07-06|1992-07-16|1992-07-17|COLLECT COD|TRUCK|y express warhorses detect qui| +72300|984466|22024|4|5|7752.10|0.07|0.08|R|F|1992-06-12|1992-07-29|1992-07-06|DELIVER IN PERSON|REG AIR|olites wake fluffily. u| +72300|911993|37030|5|41|82202.95|0.03|0.01|A|F|1992-08-02|1992-08-05|1992-08-08|COLLECT COD|RAIL|integrate qu| +72300|862957|12958|6|19|36478.29|0.04|0.02|A|F|1992-07-25|1992-07-10|1992-07-28|NONE|REG AIR|press dependenc| +72300|716151|16152|7|26|30345.12|0.01|0.03|R|F|1992-09-04|1992-07-29|1992-09-28|NONE|AIR|al pinto beans believe blithel| +72301|335729|23248|1|12|21176.52|0.01|0.08|N|O|1996-12-14|1997-01-13|1996-12-19|DELIVER IN PERSON|TRUCK|above the ironic ideas! furiousl| +72301|583707|21241|2|18|32232.24|0.10|0.07|N|O|1997-02-04|1996-12-31|1997-02-20|NONE|AIR|ts. even sautern| +72301|347810|10317|3|19|35298.20|0.10|0.04|N|O|1997-01-26|1997-01-10|1997-02-02|NONE|MAIL| boost furiously | +72301|627211|27212|4|45|51218.10|0.01|0.00|N|O|1996-12-24|1997-01-19|1997-01-18|TAKE BACK RETURN|TRUCK|ely daring instructions haggle c| +72302|587852|12875|1|35|67894.05|0.10|0.02|N|O|1997-04-30|1997-03-30|1997-05-19|TAKE BACK RETURN|AIR|efully regu| +72302|12326|49827|2|37|45817.84|0.06|0.03|N|O|1997-02-26|1997-04-19|1997-03-24|COLLECT COD|REG AIR| daring requests. carefully brave dep| +72302|153147|3148|3|40|48005.60|0.09|0.07|N|O|1997-05-11|1997-04-12|1997-06-10|TAKE BACK RETURN|REG AIR|accounts should haggle s| +72302|940776|3295|4|26|47234.98|0.07|0.04|N|O|1997-03-15|1997-02-28|1997-04-08|DELIVER IN PERSON|REG AIR|lithely final excuses are s| +72302|609526|34551|5|26|37322.74|0.04|0.01|N|O|1997-02-03|1997-03-20|1997-02-20|DELIVER IN PERSON|TRUCK|riously along the car| +72302|302931|2932|6|15|29008.80|0.10|0.04|N|O|1997-05-09|1997-04-13|1997-05-25|TAKE BACK RETURN|AIR|luffily special foxes wake slyly unu| +72303|184673|9680|1|35|61518.45|0.02|0.01|A|F|1994-05-16|1994-04-25|1994-05-21|DELIVER IN PERSON|REG AIR|ven theodolites sleep according to| +72303|787360|49876|2|36|52103.88|0.01|0.07|A|F|1994-06-11|1994-04-23|1994-06-21|NONE|RAIL|to beans. bravely unusual inst| +72303|149007|36514|3|29|30624.00|0.02|0.07|A|F|1994-06-11|1994-04-25|1994-07-04|TAKE BACK RETURN|FOB|requests dazzle ruthle| +72303|357677|32692|4|48|83263.68|0.08|0.07|A|F|1994-03-06|1994-05-14|1994-03-19|COLLECT COD|REG AIR|. permanently ironic pa| +72328|993625|6145|1|26|44683.08|0.02|0.04|A|F|1992-10-26|1992-11-30|1992-11-23|NONE|FOB|h carefully alongs| +72328|848717|11234|2|4|6662.68|0.03|0.06|R|F|1992-11-23|1992-10-24|1992-12-16|TAKE BACK RETURN|FOB|idly carefully| +72328|381803|6818|3|39|73506.81|0.08|0.03|A|F|1992-09-30|1992-12-05|1992-10-27|COLLECT COD|REG AIR|inst the regular foxes. care| +72328|953114|15634|4|11|12837.77|0.02|0.03|R|F|1992-12-22|1992-11-08|1992-12-24|DELIVER IN PERSON|RAIL|unusual, special instructions. carefu| +72328|983479|8518|5|37|57809.91|0.06|0.07|R|F|1992-10-29|1992-12-11|1992-11-04|DELIVER IN PERSON|FOB|y regular asymptotes impre| +72329|383776|8791|1|44|81829.44|0.10|0.08|R|F|1993-03-03|1993-03-03|1993-03-11|TAKE BACK RETURN|AIR|ts. quick, even packages after the dar| +72330|195015|45016|1|38|42180.38|0.04|0.00|N|O|1996-12-29|1996-12-02|1996-12-31|COLLECT COD|SHIP|. foxes nag slyl| +72330|600369|12882|2|3|3807.99|0.00|0.03|N|O|1996-10-15|1996-10-31|1996-10-26|COLLECT COD|RAIL|ts sleep blithely regular| +72330|400737|738|3|14|22927.94|0.09|0.02|N|O|1996-12-09|1996-11-24|1997-01-01|DELIVER IN PERSON|RAIL|inst the regular deposits | +72330|184785|22295|4|20|37395.60|0.01|0.04|N|O|1996-10-06|1996-11-16|1996-10-21|NONE|REG AIR|r deposits. slyly regular requests use s| +72330|678391|15931|5|29|39711.44|0.05|0.06|N|O|1996-11-07|1996-11-16|1996-11-25|COLLECT COD|SHIP|es haggle carefully express id| +72330|703992|41535|6|12|23951.52|0.10|0.06|N|O|1996-11-14|1996-10-25|1996-12-04|NONE|TRUCK|ependencies boost. express| +72330|982442|44962|7|16|24390.40|0.00|0.04|N|O|1996-11-15|1996-11-02|1996-12-05|NONE|RAIL|doggedly ironic accounts shall nag| +72331|892026|4544|1|42|42755.16|0.01|0.08|N|O|1997-01-03|1996-12-02|1997-02-02|TAKE BACK RETURN|FOB|s cajole fluffily| +72331|275483|37989|2|45|65631.15|0.00|0.03|N|O|1996-12-12|1996-11-26|1997-01-01|TAKE BACK RETURN|AIR|ld accounts. | +72331|33026|33027|3|39|37401.78|0.10|0.06|N|O|1996-12-20|1996-12-09|1996-12-31|COLLECT COD|SHIP|ly regular ideas sleep always foxes| +72331|54929|17431|4|27|50865.84|0.05|0.04|N|O|1997-02-01|1996-11-20|1997-02-26|NONE|MAIL|ngly ideas. idly final epita| +72331|178201|40705|5|13|16629.60|0.03|0.00|N|O|1996-12-22|1996-12-20|1996-12-31|COLLECT COD|REG AIR|sly even depo| +72331|17270|29771|6|37|43928.99|0.02|0.01|N|O|1996-10-26|1996-11-30|1996-11-13|DELIVER IN PERSON|AIR|ly accordin| +72331|254710|42226|7|48|79905.60|0.06|0.01|N|O|1996-12-21|1996-11-24|1997-01-14|DELIVER IN PERSON|MAIL| nag across the ruthless packages. quickly | +72332|905948|5949|1|12|23446.80|0.06|0.07|N|O|1998-02-21|1998-01-20|1998-03-16|COLLECT COD|MAIL|ains about the blithely final a| +72332|261392|48908|2|30|40601.40|0.09|0.00|N|O|1997-12-09|1998-01-02|1998-01-04|TAKE BACK RETURN|TRUCK|e carefully ab| +72332|201214|26223|3|6|6691.20|0.04|0.05|N|O|1997-11-12|1998-01-22|1997-11-14|COLLECT COD|SHIP|ackages wake slyly | +72332|800838|25871|4|50|86939.50|0.01|0.05|N|O|1998-01-20|1998-01-26|1998-02-12|NONE|SHIP|ven packag| +72333|489311|39312|1|11|14303.19|0.01|0.03|A|F|1993-10-05|1993-11-16|1993-10-29|COLLECT COD|FOB| requests haggle slyl| +72333|844235|31784|2|14|16508.66|0.08|0.06|A|F|1994-01-23|1993-11-13|1994-02-13|TAKE BACK RETURN|FOB|g to the blithely even| +72334|60976|10977|1|48|92974.56|0.01|0.08|N|O|1997-02-23|1997-01-29|1997-03-18|COLLECT COD|REG AIR|y pending deposits wake carefully | +72334|816019|28536|2|34|31788.98|0.09|0.01|N|O|1997-03-04|1997-02-20|1997-04-01|NONE|RAIL| blithely ironic accounts wak| +72334|815241|27758|3|38|43935.60|0.06|0.02|N|O|1997-03-17|1997-02-21|1997-04-03|NONE|AIR| dolphins. blithely unusual requ| +72334|753454|3455|4|46|69341.32|0.08|0.07|N|O|1997-02-01|1997-03-04|1997-02-22|COLLECT COD|REG AIR|jole furiously even theodo| +72334|288083|13094|5|37|39629.59|0.02|0.07|N|O|1997-03-28|1997-01-08|1997-04-19|DELIVER IN PERSON|FOB|odolites breach about t| +72334|808027|33060|6|47|43944.06|0.07|0.03|N|O|1997-03-29|1997-01-20|1997-04-21|DELIVER IN PERSON|TRUCK| beans run furi| +72334|504954|17465|7|21|41137.53|0.06|0.07|N|O|1997-02-20|1997-02-09|1997-03-16|COLLECT COD|TRUCK|he carefully close accounts haggle slyly p| +72335|755144|30175|1|21|25181.31|0.03|0.06|N|O|1997-04-22|1997-02-17|1997-04-25|COLLECT COD|TRUCK|. express, bold requests across th| +72335|696958|46959|2|42|82106.64|0.07|0.02|N|O|1997-04-25|1997-04-14|1997-05-02|COLLECT COD|RAIL|usly pending instruct| +72335|772906|10452|3|33|65302.71|0.05|0.08|N|O|1997-03-20|1997-03-29|1997-04-10|NONE|FOB|endencies.| +72335|219147|44156|4|21|22388.73|0.05|0.02|N|O|1997-04-20|1997-03-12|1997-05-13|NONE|TRUCK|sly pending pac| +72335|199812|24819|5|14|26765.34|0.07|0.05|N|O|1997-05-15|1997-02-21|1997-05-16|NONE|REG AIR|cial requests. furio| +72335|229903|4912|6|44|80647.16|0.03|0.06|N|O|1997-03-25|1997-03-31|1997-03-29|TAKE BACK RETURN|TRUCK|. always final excuses | +72360|95187|7689|1|43|50833.74|0.01|0.00|R|F|1994-09-19|1994-11-07|1994-10-16|TAKE BACK RETURN|MAIL| furiously final asymptotes. i| +72361|264544|2060|1|28|42238.84|0.04|0.07|N|O|1995-06-30|1995-06-25|1995-07-11|TAKE BACK RETURN|RAIL|ly after the accounts. carefully final pack| +72361|179606|4613|2|49|82594.40|0.10|0.05|N|O|1995-08-02|1995-06-17|1995-08-05|COLLECT COD|AIR| sleep slyly. slyly express| +72361|632479|20016|3|18|25405.92|0.08|0.05|N|F|1995-06-06|1995-06-26|1995-07-01|COLLECT COD|MAIL|ests. blithely regular platel| +72361|61276|23778|4|8|9898.16|0.01|0.02|N|F|1995-05-27|1995-05-22|1995-06-21|NONE|FOB|regular platelets. regular, bold accounts a| +72361|849086|24119|5|19|19665.76|0.03|0.03|A|F|1995-04-14|1995-06-13|1995-04-24|TAKE BACK RETURN|MAIL| sleep. blithely un| +72362|60072|10073|1|21|21673.47|0.00|0.04|R|F|1995-03-20|1995-02-05|1995-04-09|DELIVER IN PERSON|SHIP|eposits haggle. slyly even | +72362|623502|23503|2|28|39913.16|0.05|0.01|R|F|1994-12-01|1995-01-20|1994-12-29|NONE|TRUCK|y above the quickly regular packages| +72362|187049|24559|3|41|46577.64|0.02|0.08|R|F|1995-02-09|1995-02-03|1995-02-19|TAKE BACK RETURN|AIR|to the even deposits. furiously| +72362|724430|49459|4|2|2908.80|0.09|0.05|R|F|1995-02-19|1995-01-17|1995-03-05|COLLECT COD|TRUCK|heodolites about the carefully even pac| +72363|934327|9364|1|32|43560.96|0.02|0.08|N|O|1998-04-12|1998-04-28|1998-04-25|TAKE BACK RETURN|SHIP|furiously | +72363|224033|49042|2|12|11484.24|0.03|0.07|N|O|1998-05-27|1998-04-03|1998-05-29|TAKE BACK RETURN|SHIP| final requests. special, silent re| +72363|307081|32094|3|50|54403.50|0.09|0.06|N|O|1998-06-02|1998-05-07|1998-06-30|COLLECT COD|AIR|eposits. quickly| +72363|108319|20822|4|3|3981.93|0.06|0.02|N|O|1998-03-26|1998-05-01|1998-04-24|DELIVER IN PERSON|AIR|theodolites cajole furiously again| +72364|852520|40072|1|43|63316.64|0.08|0.01|N|O|1995-10-17|1995-11-23|1995-10-23|COLLECT COD|TRUCK|s the careful| +72365|160870|35877|1|19|36686.53|0.10|0.04|R|F|1993-08-25|1993-10-06|1993-09-14|COLLECT COD|REG AIR|nic deposits nag against the bold, u| +72365|737463|25006|2|20|30008.60|0.01|0.04|A|F|1993-11-26|1993-09-18|1993-12-14|COLLECT COD|AIR|es sleep alongsid| +72365|529272|41783|3|25|32531.25|0.10|0.04|R|F|1993-08-21|1993-09-12|1993-08-24|NONE|TRUCK|ly alongside of the pending ideas. blithely| +72365|459456|46984|4|2|2830.86|0.03|0.04|A|F|1993-09-09|1993-10-25|1993-09-11|TAKE BACK RETURN|MAIL|cial deposits. even, regular accounts h| +72366|186133|23643|1|6|7314.78|0.02|0.08|N|O|1996-09-22|1996-10-28|1996-10-11|NONE|TRUCK| the express deposi| +72366|335980|23499|2|31|62495.07|0.04|0.02|N|O|1996-10-15|1996-12-08|1996-11-07|COLLECT COD|FOB| unusual requests are blithely | +72366|809876|22393|3|19|33930.77|0.10|0.01|N|O|1996-11-16|1996-11-22|1996-11-25|NONE|FOB|ing packages ha| +72366|569567|44590|4|10|16365.40|0.00|0.02|N|O|1996-12-11|1996-11-01|1997-01-02|TAKE BACK RETURN|REG AIR|ideas. carefully e| +72367|724297|49326|1|34|44922.84|0.06|0.05|R|F|1992-08-04|1992-08-01|1992-08-18|TAKE BACK RETURN|REG AIR|y. slyly regular multipl| +72367|257206|19712|2|34|39548.46|0.05|0.03|R|F|1992-06-08|1992-08-01|1992-06-13|COLLECT COD|AIR|packages sleep blithely. stealthy | +72367|849652|12169|3|48|76877.28|0.03|0.06|A|F|1992-07-07|1992-08-16|1992-07-11|NONE|MAIL|sheaves affix blithely accounts. ideas h| +72367|98632|36136|4|48|78270.24|0.07|0.07|R|F|1992-09-13|1992-07-09|1992-09-19|TAKE BACK RETURN|AIR|ermanently against| +72367|692348|4862|5|16|21444.96|0.09|0.04|A|F|1992-06-04|1992-08-22|1992-06-17|NONE|AIR|ronic ideas along the ironic req| +72367|279852|4863|6|40|73273.60|0.10|0.08|R|F|1992-09-23|1992-07-15|1992-10-14|NONE|MAIL|fully. furiously sp| +72367|469101|19102|7|15|16051.20|0.06|0.04|R|F|1992-07-22|1992-08-09|1992-08-17|COLLECT COD|RAIL|nst the slyly iron| +72392|167122|4632|1|36|42808.32|0.05|0.02|A|F|1995-02-12|1995-01-26|1995-02-27|DELIVER IN PERSON|REG AIR|r theodolites haggle blithely. | +72392|813209|38242|2|46|51619.36|0.06|0.07|R|F|1995-03-21|1995-02-20|1995-04-11|COLLECT COD|MAIL|ainst the final, unusual accoun| +72393|664227|39254|1|21|25014.99|0.00|0.00|R|F|1994-11-07|1994-11-17|1994-11-28|COLLECT COD|FOB|arefully special theodolites could ha| +72393|662459|37486|2|50|71071.00|0.08|0.01|R|F|1995-02-02|1994-11-23|1995-02-11|COLLECT COD|SHIP|y ironic packages integrate blithely| +72393|932437|19992|3|37|54367.43|0.02|0.08|A|F|1994-12-01|1995-01-05|1994-12-21|COLLECT COD|RAIL|intain quickly pa| +72393|468156|30666|4|42|47213.46|0.07|0.08|R|F|1995-01-06|1994-12-02|1995-01-16|DELIVER IN PERSON|RAIL| nag carefully along the ironic, busy | +72393|286339|11350|5|20|26506.40|0.04|0.04|A|F|1995-01-25|1995-01-02|1995-02-02|NONE|RAIL|eas nag furiously after the quietly| +72393|488851|38852|6|21|38636.43|0.00|0.02|R|F|1994-10-23|1994-11-27|1994-11-16|TAKE BACK RETURN|SHIP|jole. slyly ironic instructions hagg| +72394|74716|12220|1|22|37195.62|0.05|0.05|N|O|1997-11-26|1997-12-24|1997-12-18|TAKE BACK RETURN|SHIP|heodolites| +72394|738146|25689|2|1|1184.11|0.01|0.01|N|O|1997-11-16|1997-12-16|1997-11-26|TAKE BACK RETURN|FOB|iously special pinto beans believe sl| +72394|17043|29544|3|24|23040.96|0.08|0.04|N|O|1997-12-21|1997-11-11|1997-12-30|COLLECT COD|RAIL|st the slyly pending ide| +72395|829642|17191|1|50|78580.00|0.03|0.00|A|F|1993-01-17|1992-12-18|1993-02-14|TAKE BACK RETURN|MAIL|y. quickly iron| +72396|757316|19832|1|37|50811.36|0.00|0.01|N|O|1997-03-15|1997-04-16|1997-03-24|NONE|REG AIR| slyly. ir| +72396|203629|3630|2|16|24521.76|0.03|0.07|N|O|1997-05-15|1997-05-04|1997-05-21|DELIVER IN PERSON|REG AIR|unusual requests | +72396|387958|12973|3|45|92067.30|0.01|0.06|N|O|1997-05-08|1997-04-10|1997-05-23|TAKE BACK RETURN|SHIP|e. final theodolites boost blithely. f| +72396|403715|28732|4|18|29136.42|0.05|0.06|N|O|1997-06-24|1997-05-03|1997-07-06|COLLECT COD|TRUCK|ending pac| +72396|221628|9141|5|34|52686.74|0.07|0.08|N|O|1997-05-07|1997-04-16|1997-06-05|DELIVER IN PERSON|SHIP|t theodolites. quickly special in| +72396|900820|25857|6|7|12745.46|0.08|0.00|N|O|1997-05-15|1997-05-09|1997-06-11|TAKE BACK RETURN|RAIL|heodolites use carefully. r| +72396|80333|17837|7|7|9193.31|0.06|0.04|N|O|1997-06-01|1997-04-20|1997-06-14|COLLECT COD|FOB|ts haggle final | +72397|141777|4280|1|15|27281.55|0.01|0.06|A|F|1994-02-07|1994-03-01|1994-03-01|NONE|TRUCK|t the pinto b| +72397|833611|21160|2|37|57149.09|0.10|0.03|R|F|1994-01-15|1994-01-12|1994-02-14|DELIVER IN PERSON|AIR|haggle carefully for the carefully pend| +72397|492741|5251|3|20|34674.40|0.00|0.02|A|F|1994-03-21|1994-02-24|1994-03-24|NONE|TRUCK|the regular, pending ideas| +72397|482814|20342|4|38|68278.02|0.10|0.08|R|F|1994-02-19|1994-02-24|1994-03-13|NONE|REG AIR|r the even reque| +72397|654354|41894|5|27|35324.64|0.08|0.07|A|F|1994-03-08|1994-01-26|1994-04-04|DELIVER IN PERSON|TRUCK|enticing requests. slyly stealthy requests| +72397|723199|10742|6|29|35442.64|0.08|0.02|R|F|1993-12-23|1994-02-23|1994-01-18|TAKE BACK RETURN|MAIL|accounts after the ironic, bold deposits w| +72397|798620|36166|7|41|70462.19|0.07|0.01|A|F|1993-12-12|1994-01-10|1994-01-08|NONE|SHIP|ss the furiously final pi| +72398|397863|35385|1|12|23530.20|0.09|0.00|A|F|1994-03-13|1994-03-20|1994-03-26|COLLECT COD|SHIP|its. blithe| +72398|878971|28972|2|48|93596.64|0.05|0.00|A|F|1994-02-14|1994-03-08|1994-02-15|COLLECT COD|TRUCK|. final, regular deposits wake bl| +72398|852405|2406|3|10|13573.60|0.10|0.04|A|F|1994-02-23|1994-04-05|1994-03-07|DELIVER IN PERSON|AIR|gle enticingly among the fluffi| +72398|357209|44731|4|7|8863.33|0.05|0.03|A|F|1994-03-08|1994-03-19|1994-03-14|DELIVER IN PERSON|REG AIR|atelets. regular theodolites sle| +72399|864407|1959|1|23|31541.28|0.02|0.05|R|F|1992-05-19|1992-03-13|1992-05-31|DELIVER IN PERSON|FOB|le against the sh| +72399|74715|37217|2|17|28725.07|0.00|0.08|A|F|1992-05-26|1992-04-18|1992-06-18|TAKE BACK RETURN|FOB|ymptotes wake furiously. bold braids ca| +72399|732950|32951|3|18|35692.56|0.05|0.00|A|F|1992-04-03|1992-03-12|1992-04-22|TAKE BACK RETURN|MAIL|ackages haggle blithely across the| +72399|675952|979|4|4|7711.68|0.09|0.02|A|F|1992-05-24|1992-04-13|1992-06-12|TAKE BACK RETURN|FOB|into beans sleep among t| +72399|717554|5097|5|11|17286.72|0.09|0.08|A|F|1992-03-22|1992-03-19|1992-04-08|TAKE BACK RETURN|MAIL| furious instructions. blithely sp| +72399|926683|1720|6|15|25644.60|0.06|0.05|A|F|1992-04-15|1992-04-24|1992-04-19|COLLECT COD|SHIP|ly ironic deposits.| +72399|754666|17182|7|49|84310.87|0.02|0.03|A|F|1992-04-06|1992-04-11|1992-04-17|DELIVER IN PERSON|SHIP|y unusual acc| +72424|670054|32568|1|30|30720.60|0.09|0.05|R|F|1993-01-29|1993-01-21|1993-02-02|DELIVER IN PERSON|TRUCK|equests na| +72424|592017|29551|2|6|6653.94|0.08|0.01|R|F|1993-02-10|1993-02-04|1993-02-20|DELIVER IN PERSON|REG AIR| platelets above the| +72424|21782|46783|3|14|23852.92|0.04|0.02|R|F|1993-02-02|1993-01-07|1993-02-25|NONE|SHIP|ual pinto beans integrate| +72424|75558|25559|4|31|47540.05|0.08|0.08|A|F|1993-01-11|1993-02-17|1993-01-25|COLLECT COD|TRUCK| final notornis se| +72424|897567|35119|5|1|1564.52|0.00|0.00|A|F|1993-03-21|1992-12-24|1993-03-24|COLLECT COD|AIR|asymptotes haggl| +72424|394125|31647|6|8|9752.88|0.04|0.00|A|F|1993-01-16|1993-01-04|1993-02-02|TAKE BACK RETURN|REG AIR| to was. f| +72425|537146|49657|1|6|7098.72|0.03|0.07|A|F|1994-05-15|1994-03-24|1994-05-25|COLLECT COD|REG AIR|longside of the s| +72426|697087|34627|1|4|4336.20|0.06|0.03|N|O|1997-02-03|1996-12-30|1997-02-19|TAKE BACK RETURN|AIR| accounts. regular requests sleep b| +72427|733933|46448|1|43|84576.70|0.01|0.04|R|F|1992-07-14|1992-06-06|1992-08-12|TAKE BACK RETURN|RAIL|sts. quickly pending deposits use | +72427|195672|8176|2|10|17676.70|0.03|0.00|A|F|1992-05-28|1992-06-09|1992-06-22|DELIVER IN PERSON|SHIP|ar theodolites must have to haggle f| +72427|655398|5399|3|25|33834.00|0.07|0.04|R|F|1992-06-18|1992-06-13|1992-06-28|NONE|FOB|ly furious packages cajole carefully fl| +72427|261850|36861|4|1|1811.84|0.02|0.00|R|F|1992-05-23|1992-05-21|1992-05-24|TAKE BACK RETURN|AIR|tes haggle quickly quickly regular | +72428|715661|40690|1|44|73771.72|0.00|0.07|A|F|1994-01-06|1994-01-21|1994-01-25|DELIVER IN PERSON|MAIL|lyly regular theodol| +72428|106035|6036|2|32|33312.96|0.07|0.06|A|F|1994-01-19|1994-01-22|1994-02-14|TAKE BACK RETURN|FOB|s cajole carefully blithely express accou| +72428|127189|2194|3|33|40133.94|0.02|0.04|R|F|1993-12-24|1994-01-15|1993-12-25|DELIVER IN PERSON|FOB|st carefully. silently pending dinos a| +72428|660941|10942|4|12|22822.92|0.09|0.04|R|F|1993-11-23|1994-02-10|1993-12-05|TAKE BACK RETURN|FOB|ously furiously regular requests| +72428|419389|19390|5|24|31400.64|0.01|0.03|A|F|1993-12-18|1993-12-19|1993-12-19|DELIVER IN PERSON|FOB|the theodolites | +72428|668730|43757|6|17|28877.90|0.04|0.05|A|F|1993-11-29|1994-01-19|1993-12-23|COLLECT COD|MAIL|ar accounts would de| +72429|720846|45875|1|5|9334.05|0.07|0.08|N|O|1998-07-16|1998-06-22|1998-08-02|DELIVER IN PERSON|AIR| need to are carefully along the carefu| +72429|256664|6665|2|26|42136.90|0.00|0.02|N|O|1998-06-13|1998-07-09|1998-06-16|COLLECT COD|MAIL|ly dogged instr| +72429|745511|20540|3|24|37355.52|0.06|0.08|N|O|1998-04-16|1998-06-11|1998-05-02|COLLECT COD|REG AIR|c ideas. blithely regular ex| +72430|609238|34263|1|36|41299.20|0.07|0.08|A|F|1995-04-24|1995-06-16|1995-05-18|DELIVER IN PERSON|MAIL|xes. furiously ironic pinto bea| +72430|457728|7729|2|40|67428.00|0.07|0.00|N|O|1995-07-27|1995-07-03|1995-08-03|DELIVER IN PERSON|AIR| detect final requests. fluffily iron| +72430|24261|11762|3|45|53336.70|0.06|0.04|R|F|1995-04-23|1995-06-17|1995-04-27|DELIVER IN PERSON|AIR|ial accounts. regular, regul| +72430|752571|15087|4|15|24353.10|0.01|0.03|N|O|1995-07-06|1995-07-15|1995-07-10|TAKE BACK RETURN|TRUCK|blithely b| +72430|453138|28157|5|11|12002.21|0.08|0.01|N|O|1995-07-08|1995-06-13|1995-07-15|COLLECT COD|MAIL|d, ironic pinto beans. careful| +72431|760882|10883|1|39|75771.15|0.08|0.07|R|F|1992-12-16|1992-12-29|1992-12-18|TAKE BACK RETURN|SHIP|counts beside the a| +72431|136306|36307|2|7|9396.10|0.07|0.04|R|F|1992-12-04|1992-12-27|1992-12-20|TAKE BACK RETURN|TRUCK|ggle across the furiously even| +72431|883547|33548|3|18|27549.00|0.03|0.00|A|F|1993-01-30|1993-02-11|1993-02-15|TAKE BACK RETURN|REG AIR|ithely bravely i| +72431|772756|22757|4|26|47546.72|0.01|0.03|R|F|1992-12-30|1993-01-04|1993-01-13|COLLECT COD|MAIL|nag quickly blithely unus| +72431|698070|35610|5|9|9612.36|0.07|0.01|A|F|1993-02-05|1992-12-17|1993-03-01|NONE|SHIP|ly after t| +72431|458268|33287|6|34|41692.16|0.09|0.03|R|F|1993-01-05|1993-01-31|1993-01-23|NONE|SHIP|eed to are af| +72431|109886|34891|7|18|34125.84|0.00|0.00|R|F|1993-03-17|1993-01-26|1993-04-02|DELIVER IN PERSON|MAIL|nto beans? sl| +72456|839289|39290|1|20|24564.80|0.02|0.06|R|F|1994-03-01|1994-03-02|1994-03-30|TAKE BACK RETURN|FOB|ages cajole fluffily! | +72456|916069|28588|2|35|37975.70|0.08|0.05|R|F|1994-04-19|1994-03-08|1994-05-19|TAKE BACK RETURN|SHIP|ckages haggle slyly. deposits sle| +72456|357799|32814|3|21|38992.38|0.02|0.04|R|F|1994-03-28|1994-04-15|1994-04-01|TAKE BACK RETURN|FOB|lithely permanent req| +72456|525035|25036|4|31|32860.31|0.05|0.06|A|F|1994-02-08|1994-04-26|1994-03-03|NONE|TRUCK|kly bold dependencies. | +72456|261331|11332|5|15|19384.80|0.04|0.07|A|F|1994-03-25|1994-03-24|1994-04-19|TAKE BACK RETURN|TRUCK|lly ironic instructions cajole fluffi| +72456|184225|21735|6|34|44513.48|0.02|0.03|R|F|1994-03-29|1994-03-04|1994-04-02|TAKE BACK RETURN|TRUCK|fully final theodolites boost | +72456|254495|42011|7|1|1449.48|0.01|0.05|A|F|1994-05-30|1994-03-28|1994-06-25|TAKE BACK RETURN|TRUCK|unusual accounts should ha| +72457|290995|40996|1|30|59579.40|0.02|0.05|N|O|1997-03-29|1997-03-14|1997-04-07|COLLECT COD|MAIL| carefully even packages. quickly final pac| +72458|949778|12297|1|11|20105.03|0.09|0.07|A|F|1994-01-28|1993-12-25|1994-02-04|DELIVER IN PERSON|TRUCK|ruthless requests unwin| +72459|452519|2520|1|42|61802.58|0.10|0.03|N|O|1998-05-05|1998-04-22|1998-05-21|TAKE BACK RETURN|REG AIR|s cajole regularly across | +72459|474918|12446|2|38|71929.82|0.03|0.04|N|O|1998-06-12|1998-06-01|1998-07-04|DELIVER IN PERSON|SHIP|ges sleep quiet, spe| +72459|941632|41633|3|44|73637.96|0.01|0.03|N|O|1998-06-13|1998-05-28|1998-06-24|NONE|AIR| pending requests. ironic, pendin| +72460|559941|47475|1|29|58026.68|0.06|0.03|N|O|1998-06-29|1998-09-14|1998-07-29|DELIVER IN PERSON|TRUCK|ffix. dinos doze blithely | +72460|919483|44520|2|44|66107.36|0.04|0.07|N|O|1998-07-02|1998-07-25|1998-07-20|NONE|SHIP|ly special p| +72460|738610|26153|3|39|64294.62|0.05|0.03|N|O|1998-07-07|1998-08-26|1998-07-26|TAKE BACK RETURN|SHIP|iously final theodolite| +72460|809423|9424|4|42|55959.96|0.03|0.06|N|O|1998-07-21|1998-08-01|1998-07-22|COLLECT COD|SHIP|o detect furious| +72460|959017|21537|5|16|17215.52|0.02|0.07|N|O|1998-09-19|1998-09-20|1998-09-26|TAKE BACK RETURN|MAIL|n requests. blithely express i| +72461|488254|13273|1|11|13664.53|0.09|0.06|N|O|1996-05-28|1996-04-15|1996-06-15|NONE|RAIL|kages boost at the packages. foxes hinde| +72461|76224|1227|2|5|6001.10|0.01|0.02|N|O|1996-03-28|1996-06-12|1996-04-27|DELIVER IN PERSON|FOB|ress, regular courts. slyly ironic pac| +72461|89400|14403|3|25|34735.00|0.07|0.02|N|O|1996-07-05|1996-04-28|1996-07-22|COLLECT COD|RAIL|deas. closel| +72461|535775|48286|4|45|81483.75|0.00|0.02|N|O|1996-06-25|1996-06-04|1996-07-01|TAKE BACK RETURN|REG AIR|: final packages use quickly-- carefully sp| +72461|755196|17712|5|6|7506.96|0.03|0.02|N|O|1996-04-14|1996-04-23|1996-05-12|DELIVER IN PERSON|MAIL|ular foxes. slyly iron| +72462|844900|44901|1|35|64570.10|0.09|0.08|N|O|1998-08-16|1998-09-29|1998-09-03|DELIVER IN PERSON|FOB|nto beans cajole blithely| +72462|220930|45939|2|47|86993.24|0.09|0.01|N|O|1998-10-08|1998-09-12|1998-10-30|COLLECT COD|TRUCK|sits across the even ideas thrash cl| +72462|167481|4991|3|43|66584.64|0.00|0.02|N|O|1998-09-25|1998-08-26|1998-10-04|DELIVER IN PERSON|RAIL| packages. ironic accounts boost carefull| +72462|839122|26671|4|39|41382.12|0.05|0.01|N|O|1998-09-03|1998-09-05|1998-10-01|COLLECT COD|REG AIR|und the excuses sleep bravely car| +72462|109110|21613|5|8|8952.88|0.10|0.08|N|O|1998-07-26|1998-10-18|1998-08-07|DELIVER IN PERSON|TRUCK|ons. furiously bold theodolites be| +72462|803931|3932|6|11|20183.79|0.10|0.04|N|O|1998-10-22|1998-10-13|1998-11-02|DELIVER IN PERSON|AIR|ake furiously dependencies. ironic ideas m| +72463|556916|6917|1|32|63132.48|0.07|0.08|N|O|1996-03-13|1996-02-24|1996-03-14|NONE|RAIL|s wake careful| +72463|83458|8461|2|8|11531.60|0.05|0.03|N|O|1996-02-19|1996-01-31|1996-02-27|COLLECT COD|MAIL|lyly special packages detect blithely| +72463|666482|28996|3|24|34762.80|0.03|0.06|N|O|1996-02-03|1996-01-21|1996-02-05|NONE|MAIL|riously! even instructions use blithely. f| +72463|551211|1212|4|19|23981.61|0.02|0.01|N|O|1996-02-23|1996-01-23|1996-03-02|TAKE BACK RETURN|MAIL|its affix accordi| +72463|200111|112|5|11|11122.10|0.02|0.05|N|O|1996-01-04|1996-02-03|1996-01-06|DELIVER IN PERSON|SHIP|quickly regular requests wa| +72488|124525|37028|1|20|30990.40|0.00|0.03|A|F|1992-06-18|1992-06-26|1992-07-06|NONE|REG AIR|ages maintain| +72488|885100|22652|2|13|14105.78|0.06|0.07|R|F|1992-07-18|1992-08-11|1992-08-16|NONE|MAIL|es detect quietly carefully ironic| +72488|871216|21217|3|24|28492.08|0.02|0.06|A|F|1992-08-05|1992-06-21|1992-08-22|NONE|FOB|er the ironic, enticing| +72488|524049|11580|4|12|12876.24|0.07|0.08|A|F|1992-07-25|1992-07-09|1992-07-28|NONE|TRUCK|jole at the d| +72488|680902|30903|5|13|24477.31|0.08|0.08|R|F|1992-07-23|1992-06-27|1992-08-21|DELIVER IN PERSON|SHIP|regular platelets wake? blithel| +72488|907759|20278|6|41|72435.11|0.04|0.01|A|F|1992-06-29|1992-08-04|1992-07-11|COLLECT COD|REG AIR|rges use a| +72489|392411|17426|1|47|70659.80|0.09|0.02|N|O|1996-03-15|1996-02-29|1996-04-11|TAKE BACK RETURN|RAIL|s the platelets wake blithely| +72489|239731|27244|2|19|31743.68|0.10|0.06|N|O|1996-03-02|1996-02-21|1996-03-24|DELIVER IN PERSON|TRUCK| fluffily special accounts. carefully| +72489|155676|30683|3|44|76193.48|0.03|0.04|N|O|1996-03-16|1996-03-06|1996-03-18|NONE|RAIL|onic deposits hinder quickly after| +72489|437836|345|4|1|1773.81|0.07|0.07|N|O|1996-04-09|1996-01-30|1996-04-24|NONE|MAIL|ests sleep furiousl| +72490|759545|22061|1|42|67389.42|0.00|0.05|A|F|1993-04-30|1993-03-10|1993-05-10|COLLECT COD|SHIP|e final th| +72490|665774|40801|2|37|64370.38|0.07|0.01|R|F|1993-03-12|1993-04-04|1993-03-19|TAKE BACK RETURN|AIR|refully final pinto beans hagg| +72490|662338|49878|3|45|58513.50|0.01|0.02|R|F|1993-04-02|1993-03-12|1993-04-09|DELIVER IN PERSON|AIR|silent tithes doze furi| +72490|908437|8438|4|17|24571.63|0.02|0.04|A|F|1993-02-23|1993-04-14|1993-03-13|COLLECT COD|TRUCK|sleep quickly according | +72491|583292|20826|1|1|1375.27|0.07|0.06|N|O|1997-04-18|1997-03-27|1997-05-17|TAKE BACK RETURN|REG AIR|aggle above the slyly e| +72492|232724|20237|1|1|1656.71|0.06|0.08|A|F|1992-10-01|1992-08-12|1992-10-13|TAKE BACK RETURN|RAIL|lly special asymptotes wake blithely| +72492|388588|13603|2|7|11735.99|0.00|0.04|A|F|1992-07-26|1992-07-21|1992-08-10|DELIVER IN PERSON|RAIL|e express, | +72492|990734|15773|3|40|72987.60|0.07|0.01|R|F|1992-07-07|1992-08-01|1992-07-28|NONE|FOB| special requests wake furiously slow e| +72492|254548|17054|4|50|75126.50|0.05|0.07|A|F|1992-09-28|1992-08-30|1992-10-26|COLLECT COD|MAIL|in, express packages are quietly | +72492|177551|27552|5|41|66770.55|0.09|0.06|A|F|1992-09-11|1992-07-26|1992-10-10|COLLECT COD|SHIP|ests. carefully ironic packages| +72492|83840|21344|6|37|67482.08|0.03|0.05|A|F|1992-09-10|1992-09-06|1992-10-02|DELIVER IN PERSON|FOB|quests. even g| +72492|96212|33716|7|39|47120.19|0.01|0.07|A|F|1992-07-16|1992-08-31|1992-07-29|NONE|REG AIR|ainst the even foxes. slyly thin platelets| +72493|26447|13948|1|42|57684.48|0.10|0.06|N|O|1998-10-18|1998-09-18|1998-10-31|COLLECT COD|FOB|es! slyly sil| +72493|485745|48255|2|41|70959.52|0.04|0.07|N|O|1998-11-06|1998-09-05|1998-11-13|NONE|AIR|he accounts was furiously pending instr| +72493|903317|40872|3|6|7921.62|0.10|0.02|N|O|1998-08-16|1998-09-04|1998-09-06|DELIVER IN PERSON|TRUCK|waters haggle f| +72494|448375|48376|1|33|43670.55|0.04|0.02|R|F|1995-05-22|1995-04-15|1995-06-03|COLLECT COD|SHIP| are about the blithely regular p| +72494|825483|13032|2|1|1408.44|0.09|0.07|A|F|1995-03-05|1995-04-25|1995-03-30|TAKE BACK RETURN|AIR|s. final requ| +72494|889014|1532|3|9|9026.73|0.03|0.07|A|F|1995-06-07|1995-05-04|1995-06-17|COLLECT COD|RAIL|es: courts | +72494|651067|38607|4|30|30540.90|0.08|0.03|R|F|1995-06-09|1995-04-08|1995-06-16|COLLECT COD|TRUCK|uickly above the regular,| +72495|42570|5071|1|14|21175.98|0.06|0.04|N|O|1997-01-29|1997-02-08|1997-01-31|COLLECT COD|REG AIR|wake fluffily carefully regu| +72495|457580|32599|2|5|7687.80|0.01|0.05|N|O|1997-03-21|1997-02-05|1997-03-22|TAKE BACK RETURN|FOB|unusual, even inst| +72495|534552|22083|3|31|49182.43|0.07|0.00|N|O|1996-12-27|1997-03-06|1996-12-28|NONE|MAIL|boost slyly against the regu| +72495|214483|14484|4|27|37731.69|0.09|0.00|N|O|1997-02-13|1997-02-27|1997-03-10|TAKE BACK RETURN|MAIL|e enticing, even | +72520|902446|2447|1|9|13035.60|0.03|0.08|A|F|1992-05-14|1992-05-20|1992-05-28|NONE|FOB|p slyly even accounts. even | +72520|397085|47086|2|36|42554.52|0.01|0.06|R|F|1992-07-02|1992-05-09|1992-07-30|COLLECT COD|TRUCK|the dogged pearls? fu| +72520|797547|35093|3|27|44401.77|0.05|0.08|R|F|1992-05-03|1992-06-04|1992-05-21|DELIVER IN PERSON|AIR|s. ironic instructions sublate against the| +72520|358724|21232|4|34|60612.14|0.02|0.06|A|F|1992-05-15|1992-06-12|1992-05-19|DELIVER IN PERSON|AIR| fluffily special ideas.| +72520|63399|25901|5|19|25885.41|0.09|0.03|A|F|1992-05-05|1992-04-22|1992-05-28|DELIVER IN PERSON|TRUCK|lithely even instru| +72521|805314|17831|1|42|51209.34|0.06|0.05|N|O|1996-12-03|1997-02-11|1996-12-15|TAKE BACK RETURN|AIR|! silent, special instructions| +72521|905412|30449|2|36|51025.32|0.07|0.02|N|O|1997-01-30|1997-02-24|1997-02-12|NONE|FOB|refully according to the carefully unusu| +72521|249382|11887|3|28|37278.36|0.03|0.02|N|O|1997-02-19|1997-02-20|1997-03-18|TAKE BACK RETURN|MAIL|e sometimes final courts. bravely express p| +72521|358932|33947|4|23|45791.16|0.02|0.03|N|O|1997-02-27|1997-03-02|1997-02-28|COLLECT COD|TRUCK|en packages. doggedly even theod| +72521|561567|49101|5|46|74912.84|0.07|0.01|N|O|1997-02-20|1997-01-19|1997-02-22|NONE|FOB|structions| +72521|252623|15129|6|31|48843.91|0.01|0.06|N|O|1997-03-22|1997-01-13|1997-04-13|COLLECT COD|MAIL|the blithely| +72521|834508|47025|7|42|60583.32|0.06|0.01|N|O|1997-04-02|1997-01-15|1997-04-09|DELIVER IN PERSON|RAIL| forges hag| +72522|572080|22081|1|3|3456.18|0.05|0.07|A|F|1993-04-08|1993-05-03|1993-04-23|DELIVER IN PERSON|RAIL|ic requests de| +72522|943052|5571|2|50|54750.50|0.05|0.04|R|F|1993-03-28|1993-05-20|1993-04-17|TAKE BACK RETURN|AIR|ess requests haggle blithely| +72522|874814|24815|3|44|78705.88|0.07|0.01|A|F|1993-04-18|1993-05-11|1993-05-13|DELIVER IN PERSON|RAIL|ests cajole furiously across the fluffily | +72523|262660|176|1|3|4867.95|0.02|0.03|A|F|1994-09-23|1994-11-22|1994-10-02|NONE|REG AIR|ges hang carefully above the express foxes| +72524|136347|36348|1|45|62250.30|0.01|0.01|R|F|1993-03-14|1993-04-29|1993-04-12|DELIVER IN PERSON|AIR|l requests. carefully even acco| +72524|577958|27959|2|27|54970.11|0.09|0.03|R|F|1993-05-01|1993-04-25|1993-05-24|DELIVER IN PERSON|MAIL|sleep against the regular, regular | +72524|726084|38599|3|20|22201.00|0.01|0.05|R|F|1993-06-01|1993-05-05|1993-06-19|DELIVER IN PERSON|TRUCK|sits are. f| +72524|291493|41494|4|44|65317.12|0.02|0.07|A|F|1993-03-01|1993-04-01|1993-03-08|COLLECT COD|SHIP|ully special theodolites after the quietly | +72524|108524|46031|5|15|22987.80|0.03|0.07|A|F|1993-04-17|1993-03-17|1993-05-16|NONE|REG AIR|pending instructions. regular dolp| +72525|43732|18733|1|46|77083.58|0.07|0.08|A|F|1993-05-29|1993-04-18|1993-06-25|COLLECT COD|MAIL|unusual re| +72526|225926|13439|1|19|35186.29|0.06|0.08|A|F|1995-04-13|1995-03-04|1995-04-17|DELIVER IN PERSON|AIR|s are furiously. regular, final accoun| +72526|127017|2022|2|30|31320.30|0.00|0.08|R|F|1995-03-04|1995-03-22|1995-03-26|NONE|AIR|ld accounts affix across | +72526|765857|3403|3|49|94218.18|0.07|0.04|R|F|1995-03-12|1995-04-11|1995-04-08|NONE|AIR|ly slyly even accounts. regular pinto| +72526|750026|27|4|38|40887.62|0.03|0.07|R|F|1995-05-10|1995-03-11|1995-06-07|DELIVER IN PERSON|TRUCK|sits. express | +72526|681576|31577|5|46|71646.84|0.06|0.05|R|F|1995-01-20|1995-03-13|1995-01-29|NONE|RAIL|tructions must have to haggle sl| +72526|236905|11914|6|34|62624.26|0.08|0.05|R|F|1995-01-18|1995-03-18|1995-02-12|TAKE BACK RETURN|TRUCK|ly around the| +72527|188213|13220|1|14|18216.94|0.00|0.06|R|F|1993-08-16|1993-06-01|1993-08-22|NONE|TRUCK| are. quickly unusual deposit| +72527|283349|33350|2|13|17320.29|0.06|0.04|R|F|1993-04-25|1993-06-08|1993-05-10|DELIVER IN PERSON|AIR|efully. final| +72552|742686|30229|1|28|48402.20|0.07|0.05|N|O|1998-01-21|1998-02-11|1998-01-24|NONE|TRUCK| even pinto bean| +72552|316568|29075|2|29|45951.95|0.07|0.05|N|O|1998-01-24|1998-02-26|1998-02-12|COLLECT COD|MAIL|equests kindle above | +72553|256856|6857|1|38|68887.92|0.08|0.07|A|F|1993-02-09|1993-02-09|1993-02-25|DELIVER IN PERSON|SHIP|t furiously against the b| +72553|976792|14350|2|30|56062.50|0.08|0.02|R|F|1993-04-04|1993-02-23|1993-05-01|DELIVER IN PERSON|SHIP|ld, final packages x-ray accordin| +72553|931636|19191|3|44|73373.96|0.04|0.03|R|F|1993-03-27|1993-03-13|1993-04-17|DELIVER IN PERSON|AIR|quests breach blithely un| +72554|815469|27986|1|19|26303.98|0.00|0.01|N|O|1998-01-25|1998-01-21|1998-02-02|NONE|REG AIR|en accounts. permanently silent id| +72554|578780|16314|2|40|74350.40|0.07|0.08|N|O|1998-01-03|1998-02-15|1998-01-25|DELIVER IN PERSON|REG AIR|ts sleep blithely after the fluffily e| +72554|538945|26476|3|35|69437.20|0.04|0.01|N|O|1998-01-15|1997-12-27|1998-02-12|COLLECT COD|MAIL|among the blithely ironi| +72555|958151|8152|1|37|44737.07|0.06|0.00|N|O|1996-01-17|1995-12-29|1996-02-06|NONE|MAIL|according to the unusual foxes. blit| +72556|767829|30345|1|45|85355.55|0.05|0.04|N|O|1995-11-02|1995-09-06|1995-11-10|NONE|TRUCK|eans are blithely blithe| +72556|894324|31876|2|21|27683.88|0.09|0.06|N|O|1995-08-29|1995-09-30|1995-09-26|COLLECT COD|TRUCK|lyly express deposits wak| +72556|900548|13067|3|23|35615.50|0.01|0.05|N|O|1995-11-12|1995-10-08|1995-11-22|TAKE BACK RETURN|MAIL|luffily special foxes use| +72556|507346|19857|4|3|4059.96|0.08|0.01|N|O|1995-08-12|1995-09-02|1995-08-18|DELIVER IN PERSON|REG AIR|s wake carefully. ironic accounts cajole | +72556|954476|29515|5|41|62747.63|0.09|0.05|N|O|1995-10-18|1995-10-06|1995-11-10|TAKE BACK RETURN|REG AIR|ld foxes? regular, silent deposits| +72556|865826|3378|6|16|28668.48|0.04|0.06|N|O|1995-10-23|1995-09-19|1995-11-13|DELIVER IN PERSON|RAIL|rnis above the blithely stealthy pinto| +72556|927407|2444|7|20|28687.20|0.08|0.08|N|O|1995-09-18|1995-08-18|1995-09-28|DELIVER IN PERSON|FOB|nusual Tiresias. special acco| +72557|922158|34677|1|12|14161.32|0.08|0.07|R|F|1995-02-11|1995-02-01|1995-03-01|NONE|TRUCK|ts. regularly regular dependencies wake bli| +72557|706987|6988|2|27|53836.65|0.02|0.02|R|F|1995-01-29|1995-01-13|1995-02-26|DELIVER IN PERSON|MAIL|y busy deposits wake furiously. | +72557|318722|18723|3|24|41777.04|0.10|0.02|R|F|1995-02-03|1995-01-04|1995-02-09|TAKE BACK RETURN|SHIP|sly. quickly special ins| +72557|750230|231|4|8|10241.60|0.00|0.01|A|F|1994-12-03|1994-12-24|1994-12-08|COLLECT COD|FOB|t across the furiously e| +72557|111451|36456|5|34|49723.30|0.03|0.08|R|F|1994-11-24|1995-01-26|1994-12-11|COLLECT COD|REG AIR|tes use never regular account| +72557|146408|21413|6|29|42177.60|0.09|0.06|R|F|1995-02-13|1994-12-27|1995-03-08|COLLECT COD|TRUCK|side the final, pending foxes. q| +72557|671017|33531|7|34|33591.32|0.01|0.08|R|F|1995-01-02|1994-12-31|1995-01-18|NONE|MAIL|old ideas cajole. carefully sile| +72558|773928|11474|1|13|26024.57|0.06|0.05|A|F|1994-06-15|1994-06-27|1994-06-23|COLLECT COD|MAIL|etect never af| +72558|394075|31597|2|46|53776.76|0.03|0.07|R|F|1994-06-29|1994-06-01|1994-07-17|TAKE BACK RETURN|RAIL|ithely bold accounts haggle carefu| +72558|218203|30708|3|45|50453.55|0.03|0.04|R|F|1994-05-11|1994-06-21|1994-05-19|DELIVER IN PERSON|RAIL|iously unusual courts.| +72558|331433|6446|4|26|38074.92|0.06|0.07|A|F|1994-04-18|1994-06-05|1994-05-14|NONE|SHIP|brave requests. carefully special theodo| +72558|392940|17955|5|11|22362.23|0.06|0.05|A|F|1994-07-10|1994-05-29|1994-07-23|TAKE BACK RETURN|RAIL|phins can sleep a| +72558|133852|46355|6|25|47146.25|0.10|0.01|R|F|1994-07-05|1994-06-10|1994-07-24|TAKE BACK RETURN|MAIL|y final dinos nag furiously. furiously | +72559|994138|6658|1|3|3696.27|0.04|0.06|R|F|1993-09-27|1993-10-25|1993-10-24|COLLECT COD|SHIP|ites nag slyly even| +72559|463961|1489|2|4|7699.76|0.07|0.08|A|F|1993-12-20|1993-10-18|1993-12-30|NONE|REG AIR|ironic foxes detect blithely against t| +72559|784378|9409|3|36|52644.24|0.06|0.00|A|F|1993-12-01|1993-11-16|1993-12-25|NONE|RAIL|instructions. furiously ironic as| +72584|956171|43729|1|6|7362.78|0.08|0.05|R|F|1993-04-25|1993-03-22|1993-05-19|NONE|TRUCK|ages. fluffily special d| +72584|352073|14581|2|30|33751.80|0.02|0.01|A|F|1993-05-06|1993-02-26|1993-06-05|NONE|RAIL|efully. furiously ironic pack| +72584|274859|49870|3|4|7335.36|0.08|0.05|A|F|1993-03-28|1993-02-25|1993-04-10|DELIVER IN PERSON|SHIP|nic foxes cajole. carefully ironic theodo| +72584|550567|38101|4|25|40438.50|0.07|0.01|R|F|1993-02-26|1993-03-09|1993-03-26|TAKE BACK RETURN|AIR|ss the final, bold deposits. final| +72584|366859|4381|5|33|63552.72|0.08|0.06|R|F|1993-02-01|1993-03-04|1993-02-09|COLLECT COD|FOB| the fluffily unusual | +72584|788575|13606|6|45|74859.30|0.04|0.01|A|F|1993-02-26|1993-03-22|1993-03-21|DELIVER IN PERSON|FOB| packages s| +72584|579525|42037|7|19|30485.50|0.06|0.07|A|F|1993-04-13|1993-03-03|1993-04-24|COLLECT COD|REG AIR|. regular packages dazzle fluffily even,| +72585|70567|33069|1|18|27676.08|0.06|0.05|N|O|1996-02-20|1995-12-29|1996-03-04|TAKE BACK RETURN|SHIP|furiously. bold pinto beans above th| +72585|7842|20343|2|36|62994.24|0.00|0.08|N|O|1995-12-09|1996-02-16|1995-12-18|COLLECT COD|MAIL|long the platelets haggle besides the sp| +72585|784460|46976|3|40|61777.20|0.01|0.06|N|O|1996-01-12|1996-01-06|1996-02-02|NONE|AIR|hrash. fluffily reg| +72586|200251|252|1|27|31083.48|0.09|0.01|N|O|1996-09-22|1996-09-07|1996-09-30|DELIVER IN PERSON|MAIL|s cajole furiously | +72587|937890|12927|1|39|75186.15|0.06|0.07|N|O|1996-06-13|1996-06-30|1996-06-28|TAKE BACK RETURN|RAIL|arefully idle| +72587|105415|30420|2|34|48293.94|0.09|0.00|N|O|1996-08-13|1996-07-31|1996-09-10|TAKE BACK RETURN|AIR| instructi| +72587|704007|41550|3|37|37405.89|0.10|0.04|N|O|1996-07-04|1996-07-17|1996-07-23|NONE|RAIL|asymptotes. bold pinto bea| +72588|219617|7130|1|7|10756.20|0.06|0.02|N|O|1995-06-30|1995-07-08|1995-07-12|COLLECT COD|SHIP|ding to the slyly regular requests. regula| +72588|95656|33160|2|18|29729.70|0.00|0.00|N|F|1995-06-08|1995-08-01|1995-06-21|COLLECT COD|RAIL|ets are quickly final courts. final excuses| +72588|678992|41506|3|45|88693.20|0.05|0.08|N|O|1995-08-24|1995-08-01|1995-09-13|TAKE BACK RETURN|AIR|he carefully ironic accounts. instructio| +72588|802325|27358|4|14|17181.92|0.07|0.03|N|F|1995-05-30|1995-07-29|1995-06-19|COLLECT COD|FOB|ully forges. f| +72588|664332|14333|5|41|53148.30|0.04|0.01|R|F|1995-05-19|1995-07-27|1995-06-09|NONE|FOB|ole quickly accounts-- enticingly r| +72589|468390|30900|1|35|47542.95|0.08|0.05|N|O|1998-03-18|1998-03-05|1998-04-03|TAKE BACK RETURN|SHIP|ely even theodolites detect s| +72589|217211|42220|2|31|34974.20|0.00|0.05|N|O|1998-04-22|1998-04-15|1998-04-27|NONE|FOB|lyly unusual in| +72589|658324|45864|3|40|51291.60|0.08|0.01|N|O|1998-05-22|1998-03-16|1998-05-31|NONE|FOB|ckages wake quickly fluf| +72589|445987|45988|4|36|69586.56|0.00|0.01|N|O|1998-04-13|1998-04-23|1998-04-18|TAKE BACK RETURN|AIR|ajole. foxes haggle| +72589|689976|27516|5|29|57012.26|0.03|0.04|N|O|1998-05-23|1998-03-05|1998-06-03|DELIVER IN PERSON|RAIL|riously. carefully regular pack| +72590|68428|43431|1|11|15360.62|0.03|0.07|R|F|1992-04-05|1992-05-06|1992-04-23|TAKE BACK RETURN|TRUCK|se slyly. b| +72590|63065|569|2|30|30841.80|0.07|0.08|A|F|1992-05-13|1992-03-16|1992-05-16|NONE|TRUCK|regular ideas wake slyly ag| +72590|924908|24909|3|50|96643.00|0.04|0.03|R|F|1992-05-11|1992-04-26|1992-05-27|TAKE BACK RETURN|REG AIR| excuses. regular deposits | +72590|912869|25388|4|15|28227.30|0.06|0.00|A|F|1992-02-22|1992-03-17|1992-03-17|NONE|RAIL|s are slyly furiousl| +72590|583082|33083|5|40|46602.40|0.08|0.02|R|F|1992-03-14|1992-04-05|1992-04-04|COLLECT COD|TRUCK|mong the sly| +72590|854988|42540|6|14|27201.16|0.00|0.08|A|F|1992-03-20|1992-03-08|1992-03-28|TAKE BACK RETURN|SHIP|lose packages nag. slyly expres| +72591|721883|46912|1|17|32382.45|0.10|0.04|N|O|1998-05-17|1998-04-28|1998-06-02|TAKE BACK RETURN|FOB|theodolites. quickl| +72591|680322|42836|2|30|39068.70|0.10|0.01|N|O|1998-05-30|1998-04-15|1998-06-07|DELIVER IN PERSON|AIR|slow accounts. blithely regular asympto| +72616|909246|9247|1|39|48952.80|0.04|0.07|N|O|1998-11-04|1998-10-11|1998-12-03|DELIVER IN PERSON|RAIL|ccounts wake| +72616|684139|46653|2|30|33693.00|0.04|0.00|N|O|1998-09-06|1998-09-02|1998-09-24|COLLECT COD|MAIL|sits. furiously pending| +72616|309462|34475|3|20|29429.00|0.07|0.03|N|O|1998-10-26|1998-08-27|1998-10-28|DELIVER IN PERSON|MAIL|ly ironic | +72616|114175|1682|4|38|45188.46|0.03|0.00|N|O|1998-10-15|1998-10-19|1998-10-19|DELIVER IN PERSON|TRUCK|ts along the blithe| +72617|820819|33336|1|40|69590.80|0.06|0.01|N|O|1996-05-05|1996-05-16|1996-05-13|COLLECT COD|SHIP|ons sleep car| +72617|491326|41327|2|1|1317.30|0.04|0.06|N|O|1996-06-25|1996-05-25|1996-07-08|NONE|FOB|ously. slyly ironic packages alongside| +72617|711165|23680|3|26|30579.38|0.03|0.06|N|O|1996-04-26|1996-04-20|1996-05-07|NONE|FOB|usly across| +72617|538942|26473|4|49|97065.08|0.07|0.03|N|O|1996-03-30|1996-05-25|1996-04-04|DELIVER IN PERSON|MAIL|fully blithely ironic requests.| +72617|985276|10315|5|7|9528.61|0.00|0.05|N|O|1996-03-12|1996-05-22|1996-03-19|DELIVER IN PERSON|MAIL|structions past the quickl| +72618|844561|44562|1|29|43660.08|0.08|0.05|N|O|1996-12-01|1996-11-20|1996-12-18|TAKE BACK RETURN|MAIL|posits serve blit| +72619|382706|45214|1|6|10732.14|0.02|0.03|A|F|1992-01-23|1992-03-13|1992-02-11|TAKE BACK RETURN|TRUCK| excuses need to| +72619|130448|5453|2|42|62094.48|0.09|0.07|A|F|1992-04-02|1992-03-10|1992-04-28|NONE|SHIP|olites. car| +72619|428362|28363|3|13|16774.42|0.08|0.07|A|F|1992-02-19|1992-03-12|1992-03-06|COLLECT COD|RAIL|ly final plat| +72619|474022|24023|4|9|8964.00|0.05|0.06|A|F|1992-02-02|1992-02-06|1992-02-14|DELIVER IN PERSON|REG AIR|even instructions are fluffily | +72619|881624|31625|5|10|16055.80|0.01|0.06|A|F|1992-04-05|1992-02-17|1992-04-08|DELIVER IN PERSON|RAIL|sleep even accounts. blithe| +72620|383465|8480|1|15|23226.75|0.10|0.06|N|O|1998-02-27|1997-12-24|1998-03-14|TAKE BACK RETURN|REG AIR|sits wake carefully across the quickly fi| +72620|890169|27721|2|48|55637.76|0.05|0.04|N|O|1997-12-06|1997-12-17|1997-12-18|DELIVER IN PERSON|MAIL|to beans cajole slyly behind the busily| +72620|61261|23763|3|21|25667.46|0.04|0.03|N|O|1998-01-22|1998-01-02|1998-02-20|DELIVER IN PERSON|TRUCK|against the special instructions. iron| +72620|611063|11064|4|4|3896.12|0.09|0.03|N|O|1998-03-07|1997-12-25|1998-03-26|DELIVER IN PERSON|RAIL|ounts against the carefully i| +72620|124205|11712|5|1|1229.20|0.08|0.08|N|O|1998-02-16|1997-12-11|1998-03-18|DELIVER IN PERSON|RAIL|osits wake blithely fox| +72621|573510|36022|1|17|26919.33|0.09|0.06|N|O|1996-04-04|1996-04-12|1996-04-28|COLLECT COD|REG AIR|layers after the blithely sil| +72621|981315|6354|2|27|37699.29|0.08|0.07|N|O|1996-03-26|1996-04-11|1996-04-07|TAKE BACK RETURN|SHIP| slyly ironic instructions use quick| +72622|213909|26414|1|41|74738.49|0.02|0.04|R|F|1994-07-11|1994-06-12|1994-08-05|TAKE BACK RETURN|RAIL|ins haggle iro| +72622|158010|20514|2|12|12816.12|0.06|0.08|A|F|1994-06-02|1994-06-29|1994-06-16|TAKE BACK RETURN|SHIP| blithely pending packages. do| +72622|666721|4261|3|4|6750.76|0.08|0.03|A|F|1994-05-28|1994-07-15|1994-06-15|COLLECT COD|FOB|gainst the doggedly special reque| +72622|572290|34802|4|47|64026.69|0.10|0.01|A|F|1994-07-15|1994-06-04|1994-07-21|COLLECT COD|REG AIR| fluffily between t| +72622|474130|36640|5|13|14353.43|0.08|0.01|A|F|1994-05-15|1994-07-06|1994-06-03|NONE|RAIL|ptotes use quickly regular packages! accoun| +72622|699455|11969|6|24|34906.08|0.06|0.00|A|F|1994-07-08|1994-06-10|1994-07-27|TAKE BACK RETURN|AIR|regular inst| +72622|727583|40098|7|21|33821.55|0.01|0.01|A|F|1994-07-29|1994-07-02|1994-08-13|DELIVER IN PERSON|REG AIR|olites. regularly special accoun| +72623|472366|9894|1|38|50856.92|0.10|0.03|N|O|1997-05-10|1997-04-18|1997-05-17|DELIVER IN PERSON|AIR|es integrate unus| +72623|49607|12108|2|24|37358.40|0.09|0.03|N|O|1997-06-22|1997-04-22|1997-06-27|DELIVER IN PERSON|SHIP|nding theodolites. carefully final pint| +72623|736403|11432|3|5|7196.85|0.03|0.08|N|O|1997-05-25|1997-04-05|1997-06-17|COLLECT COD|REG AIR|ely special accounts are. pending ac| +72623|711470|23985|4|41|60739.04|0.08|0.01|N|O|1997-05-08|1997-05-12|1997-05-11|COLLECT COD|SHIP|uctions. expre| +72623|664071|1611|5|39|40366.56|0.03|0.06|N|O|1997-03-09|1997-03-30|1997-03-28|COLLECT COD|REG AIR| ironic pat| +72623|31992|31993|6|27|51947.73|0.01|0.02|N|O|1997-03-18|1997-04-07|1997-03-19|DELIVER IN PERSON|TRUCK|lyly regular packages. quickly even | +72623|687229|12256|7|2|2432.38|0.07|0.00|N|O|1997-03-17|1997-04-02|1997-03-24|COLLECT COD|TRUCK| after the sly| +72648|252550|15056|1|27|40568.58|0.09|0.04|N|O|1995-07-28|1995-05-27|1995-08-27|DELIVER IN PERSON|TRUCK|symptotes haggle against the bo| +72648|601049|1050|2|22|20900.22|0.03|0.03|A|F|1995-04-25|1995-05-05|1995-04-28|COLLECT COD|TRUCK|regular instructions cajole | +72648|822055|47088|3|25|24425.25|0.09|0.02|N|F|1995-06-03|1995-06-16|1995-06-18|NONE|FOB|dencies integrate. quickly special r| +72648|277459|27460|4|40|57457.60|0.10|0.05|R|F|1995-05-09|1995-05-26|1995-05-10|COLLECT COD|SHIP|ly regular platelets; | +72648|238072|13081|5|11|11110.66|0.00|0.02|N|O|1995-06-29|1995-06-05|1995-07-20|COLLECT COD|TRUCK|the regular deposits. quickly final asympt| +72648|270213|20214|6|39|46144.80|0.04|0.01|N|O|1995-07-22|1995-05-19|1995-08-19|TAKE BACK RETURN|RAIL|ctions wake slyly am| +72648|457152|44680|7|35|38819.55|0.10|0.05|N|O|1995-07-09|1995-05-08|1995-07-15|COLLECT COD|SHIP|ages since| +72649|353084|28099|1|1|1137.07|0.01|0.02|N|O|1997-06-02|1997-05-23|1997-06-06|TAKE BACK RETURN|RAIL|owly unusual foxes. blithely ironic ideas| +72649|271620|46631|2|19|30240.59|0.07|0.06|N|O|1997-03-07|1997-04-05|1997-03-28|DELIVER IN PERSON|FOB|ss warhorses | +72649|111211|36216|3|13|15888.73|0.08|0.08|N|O|1997-04-29|1997-04-06|1997-05-05|DELIVER IN PERSON|FOB|ges. ironic, regular packages unwind iro| +72650|212213|24718|1|24|27004.80|0.10|0.02|N|O|1996-10-04|1996-07-12|1996-10-16|TAKE BACK RETURN|SHIP|lithely even instructi| +72650|656025|6026|2|43|42182.57|0.01|0.07|N|O|1996-09-15|1996-09-09|1996-09-18|COLLECT COD|MAIL|lent depths integrate| +72650|796777|9293|3|43|80570.82|0.02|0.07|N|O|1996-09-25|1996-08-07|1996-10-08|COLLECT COD|TRUCK| pending deposits. fur| +72650|421579|46596|4|47|70525.85|0.09|0.04|N|O|1996-08-25|1996-07-22|1996-09-05|COLLECT COD|SHIP|lly regular deposits. even instructions| +72650|468843|18844|5|42|76096.44|0.05|0.01|N|O|1996-08-22|1996-07-26|1996-09-10|TAKE BACK RETURN|RAIL|furiously regular theodolites nag f| +72650|834687|22236|6|46|74595.44|0.03|0.00|N|O|1996-07-28|1996-08-12|1996-08-18|NONE|FOB|he carefully special request| +72651|906527|31564|1|22|33736.56|0.08|0.02|N|O|1995-12-19|1996-01-29|1995-12-29|TAKE BACK RETURN|MAIL|ve to are alongside of the pending packa| +72651|991228|3748|2|13|17149.34|0.01|0.00|N|O|1995-11-22|1996-01-04|1995-11-30|DELIVER IN PERSON|AIR|luffily. blithely| +72652|920724|20725|1|6|10468.08|0.04|0.01|N|O|1996-05-28|1996-05-12|1996-06-18|DELIVER IN PERSON|REG AIR|always. furiously ironic accounts solve bl| +72652|606622|19135|2|22|33628.98|0.00|0.08|N|O|1996-05-14|1996-04-11|1996-06-01|NONE|TRUCK|y unusual req| +72652|484670|22198|3|26|43020.90|0.05|0.00|N|O|1996-05-06|1996-05-01|1996-05-20|TAKE BACK RETURN|AIR|y even accounts are fluffily afte| +72652|833169|20718|4|42|46289.04|0.02|0.02|N|O|1996-04-15|1996-04-22|1996-04-18|COLLECT COD|TRUCK|blate. bold pack| +72652|68208|30710|5|17|19995.40|0.02|0.07|N|O|1996-05-30|1996-04-08|1996-06-11|TAKE BACK RETURN|SHIP|ounts. fluffily re| +72653|523649|48670|1|45|75267.90|0.00|0.04|N|O|1997-05-06|1997-06-12|1997-05-07|NONE|REG AIR|hely regular asymptotes. quickly| +72653|962246|12247|2|1|1308.20|0.01|0.06|N|O|1997-07-27|1997-07-14|1997-08-25|DELIVER IN PERSON|SHIP|inal pinto beans | +72653|451998|14508|3|33|64349.01|0.10|0.04|N|O|1997-08-04|1997-06-15|1997-08-30|COLLECT COD|MAIL|. regular, special foxes sleep | +72653|721531|34046|4|34|52785.00|0.03|0.04|N|O|1997-07-20|1997-07-04|1997-08-13|COLLECT COD|RAIL|ns nag. permanently sp| +72653|765559|28075|5|12|19494.24|0.04|0.07|N|O|1997-07-05|1997-06-13|1997-07-23|NONE|RAIL| slyly express foxes cajole blithely al| +72653|746034|8549|6|14|15120.00|0.00|0.08|N|O|1997-06-07|1997-06-21|1997-06-22|COLLECT COD|SHIP|. pending requests must sleep. thin plat| +72653|576744|39256|7|7|12745.04|0.06|0.04|N|O|1997-05-20|1997-07-27|1997-06-12|COLLECT COD|AIR| packages. furiously even requests boost| +72654|328422|3435|1|35|50764.35|0.01|0.01|R|F|1994-04-22|1994-05-11|1994-05-09|TAKE BACK RETURN|FOB|ly pending ideas are carefully ironic pa| +72654|774238|24239|2|14|18370.80|0.04|0.01|R|F|1994-03-24|1994-06-02|1994-04-20|COLLECT COD|TRUCK|ully idle | +72654|603025|3026|3|25|23199.75|0.08|0.04|R|F|1994-06-27|1994-05-15|1994-07-09|COLLECT COD|AIR|. requests | +72655|996145|21184|1|20|24822.00|0.01|0.07|N|O|1996-03-25|1996-04-04|1996-04-10|NONE|SHIP|press, regula| +72655|197084|22091|2|35|41337.80|0.07|0.04|N|O|1996-05-19|1996-04-12|1996-05-21|COLLECT COD|FOB|thely even deposits hinder. furi| +72655|380379|42887|3|33|48158.88|0.04|0.05|N|O|1996-04-18|1996-04-10|1996-05-07|NONE|SHIP|players. furiously even pinto be| +72655|17432|29933|4|5|6747.15|0.06|0.04|N|O|1996-05-04|1996-03-27|1996-05-20|DELIVER IN PERSON|SHIP|slyly furiously fina| +72655|967565|5123|5|32|52240.64|0.09|0.07|N|O|1996-05-13|1996-03-30|1996-06-07|TAKE BACK RETURN|RAIL|y final, regular packages. furiously unusua| +72655|849452|24485|6|48|67267.68|0.03|0.02|N|O|1996-03-26|1996-04-02|1996-04-01|DELIVER IN PERSON|REG AIR|r deposits use s| +72655|734224|34225|7|39|49069.41|0.01|0.03|N|O|1996-04-11|1996-04-01|1996-04-24|COLLECT COD|SHIP|ctions; bold, unusual deposi| +72680|96443|21446|1|29|41743.76|0.03|0.06|A|F|1992-08-07|1992-08-22|1992-08-13|TAKE BACK RETURN|MAIL|the special court| +72680|908342|20861|2|26|35107.80|0.01|0.06|R|F|1992-10-21|1992-08-16|1992-11-19|COLLECT COD|MAIL| even forges. express, ir| +72680|491739|29267|3|4|6922.84|0.03|0.00|R|F|1992-07-06|1992-09-12|1992-07-22|COLLECT COD|TRUCK|ogs cajole slyly regular requests-- f| +72680|654336|41876|4|35|45160.50|0.04|0.00|R|F|1992-07-27|1992-07-26|1992-07-29|TAKE BACK RETURN|MAIL|s wake until the final excuses. furiously | +72680|419231|6756|5|42|48308.82|0.01|0.03|R|F|1992-09-09|1992-08-25|1992-09-14|NONE|TRUCK|platelets detec| +72681|366497|16498|1|50|78174.00|0.01|0.07|A|F|1994-04-24|1994-05-05|1994-04-27|COLLECT COD|RAIL|riously even dependencies. | +72682|237528|33|1|39|57154.89|0.10|0.06|N|O|1995-10-01|1995-12-22|1995-10-19|TAKE BACK RETURN|TRUCK|beans. boldly express sheaves sle| +72682|120475|20476|2|26|38882.22|0.02|0.08|N|O|1995-10-02|1995-12-15|1995-10-12|COLLECT COD|RAIL|ously pending packages. quickly silent pack| +72682|812874|423|3|9|16081.47|0.09|0.02|N|O|1995-10-31|1995-11-10|1995-11-17|TAKE BACK RETURN|SHIP|ts sleep blithely. fluffily| +72682|971354|33874|4|42|59863.02|0.04|0.05|N|O|1995-10-11|1995-12-03|1995-10-23|TAKE BACK RETURN|RAIL|ss, ironic deposits haggle | +72682|530240|30241|5|49|62240.78|0.10|0.04|N|O|1995-12-05|1995-11-03|1995-12-14|DELIVER IN PERSON|AIR|as boost furiou| +72682|728857|3886|6|28|52802.96|0.08|0.07|N|O|1995-12-16|1995-12-17|1996-01-07|TAKE BACK RETURN|FOB|ests against the spe| +72682|899126|36678|7|12|13500.96|0.04|0.05|N|O|1995-11-19|1995-10-28|1995-12-04|COLLECT COD|FOB|stealthy instructions n| +72683|602163|14676|1|16|17042.08|0.06|0.08|N|O|1995-07-03|1995-04-08|1995-07-17|COLLECT COD|RAIL|as are carefully excuses. even ins| +72683|541322|3833|2|40|54532.00|0.04|0.08|N|F|1995-06-05|1995-05-10|1995-06-29|COLLECT COD|REG AIR| grouches. slyly bold deposits alon| +72683|989895|14934|3|33|65500.05|0.08|0.08|R|F|1995-03-11|1995-05-23|1995-03-13|NONE|REG AIR|counts. carefully unusual accounts was. car| +72683|159805|9806|4|39|72727.20|0.01|0.00|N|F|1995-05-21|1995-05-04|1995-06-19|TAKE BACK RETURN|SHIP|l requests. furi| +72683|828750|3783|5|34|57076.14|0.01|0.08|R|F|1995-05-07|1995-05-07|1995-06-01|NONE|MAIL|of the express deposits. furiously re| +72683|790940|28486|6|7|14216.37|0.07|0.05|R|F|1995-04-26|1995-04-16|1995-05-07|NONE|REG AIR|ites. regular ac| +72684|525574|13105|1|50|79977.50|0.02|0.04|R|F|1994-11-02|1994-12-23|1994-11-03|DELIVER IN PERSON|SHIP|wake quickly| +72684|318311|43324|2|7|9305.10|0.04|0.08|R|F|1995-03-01|1994-12-18|1995-03-13|NONE|TRUCK|inside the requests. | +72684|842638|5155|3|20|31611.80|0.08|0.04|R|F|1994-12-18|1994-12-25|1994-12-21|NONE|SHIP| accounts sleep blithely final, un| +72684|201947|1948|4|4|7395.72|0.09|0.04|R|F|1994-11-02|1994-12-18|1994-11-17|COLLECT COD|REG AIR|cial, idle deposits. ironic, even plat| +72685|921426|46463|1|23|33289.74|0.07|0.05|N|O|1998-05-03|1998-05-23|1998-05-05|COLLECT COD|AIR|aggle furiously furiously regular court| +72685|404709|42234|2|43|69388.24|0.04|0.07|N|O|1998-04-28|1998-07-12|1998-05-14|COLLECT COD|FOB|ven platelets along the even accounts doz| +72685|938002|38003|3|29|30158.84|0.09|0.00|N|O|1998-05-27|1998-07-17|1998-05-28|DELIVER IN PERSON|SHIP| blithely. pen| +72686|294656|7162|1|40|66025.60|0.09|0.06|N|O|1997-10-29|1997-12-17|1997-11-01|TAKE BACK RETURN|TRUCK|phins detect. braids are above the regul| +72686|266765|41776|2|45|77928.75|0.03|0.02|N|O|1997-12-10|1997-12-01|1997-12-26|COLLECT COD|RAIL|theodolites poach carefully b| +72687|59027|9028|1|13|12818.26|0.10|0.07|R|F|1993-06-02|1993-06-17|1993-06-10|DELIVER IN PERSON|REG AIR| silent packages| +72712|335434|35435|1|30|44082.60|0.01|0.01|N|O|1997-12-18|1997-10-01|1997-12-27|TAKE BACK RETURN|REG AIR|uctions. special, bold accounts cajole| +72712|638740|38741|2|13|21823.23|0.02|0.08|N|O|1997-11-11|1997-11-15|1997-12-06|COLLECT COD|SHIP|nts. regular, special packages | +72712|300976|13483|3|42|83032.32|0.07|0.08|N|O|1997-08-26|1997-10-18|1997-09-19|NONE|MAIL|express excuses. fur| +72712|494068|19087|4|40|42481.60|0.04|0.07|N|O|1997-09-14|1997-09-26|1997-09-23|NONE|SHIP|thy packages believe across the bold r| +72713|199810|49811|1|4|7639.24|0.07|0.06|R|F|1992-07-20|1992-09-06|1992-08-19|TAKE BACK RETURN|FOB|usual requests use after the theodo| +72713|202808|40321|2|20|34215.80|0.04|0.06|R|F|1992-09-04|1992-08-28|1992-09-30|COLLECT COD|REG AIR|y: platelets integrate furiously| +72713|587862|12885|3|19|37046.96|0.07|0.00|A|F|1992-10-20|1992-09-22|1992-11-13|NONE|FOB| packages cajole at the even| +72713|189562|27072|4|20|33031.20|0.00|0.01|R|F|1992-07-13|1992-09-15|1992-07-30|NONE|RAIL|regular packages according| +72713|957898|20418|5|40|78234.00|0.04|0.04|R|F|1992-10-10|1992-09-02|1992-10-28|NONE|AIR|thogs cajole furiously | +72713|378902|28903|6|25|49522.25|0.06|0.08|R|F|1992-08-19|1992-10-01|1992-08-29|COLLECT COD|MAIL|tructions do haggle furiously fluff| +72713|200414|37927|7|26|34174.40|0.06|0.06|A|F|1992-07-13|1992-09-03|1992-07-21|NONE|RAIL|yly pending frays. blithely bold deposits | +72714|349790|49791|1|13|23917.14|0.02|0.07|N|O|1996-01-18|1996-02-24|1996-02-05|COLLECT COD|FOB|ly final pac| +72714|908643|33680|2|16|26425.60|0.10|0.05|N|O|1996-04-19|1996-02-25|1996-05-19|TAKE BACK RETURN|TRUCK|nstructions. | +72714|557052|19564|3|34|37707.02|0.09|0.03|N|O|1996-04-19|1996-03-09|1996-05-05|DELIVER IN PERSON|SHIP| deposits.| +72714|357738|32753|4|15|26935.80|0.01|0.05|N|O|1996-03-11|1996-04-01|1996-03-17|NONE|AIR|ar deposit| +72714|495414|20433|5|39|54966.21|0.07|0.00|N|O|1996-04-10|1996-03-04|1996-04-29|NONE|FOB| cajole carefully quickly stea| +72714|412999|13000|6|1|1911.97|0.09|0.01|N|O|1996-05-13|1996-03-16|1996-05-30|COLLECT COD|AIR|ual accounts-- slyly ironic ideas sleep flu| +72715|160440|35447|1|27|40511.88|0.09|0.07|N|O|1998-05-17|1998-04-16|1998-06-05|NONE|RAIL|d dolphins | +72715|498776|11286|2|47|83413.25|0.09|0.07|N|O|1998-06-25|1998-04-09|1998-07-13|TAKE BACK RETURN|TRUCK|ilent packages are| +72716|150150|37660|1|31|37204.65|0.04|0.08|N|O|1998-02-26|1998-01-07|1998-03-18|TAKE BACK RETURN|TRUCK|s. theodolit| +72716|570701|20702|2|15|26575.20|0.01|0.00|N|O|1998-01-11|1997-12-29|1998-01-14|NONE|RAIL|es. carefully special realms unwind sly| +72716|771153|46184|3|26|31827.12|0.09|0.03|N|O|1997-12-11|1998-01-25|1997-12-15|TAKE BACK RETURN|TRUCK|olphins haggle enticingly according to t| +72716|763182|13183|4|30|37354.50|0.06|0.06|N|O|1997-12-23|1997-12-27|1998-01-14|TAKE BACK RETURN|RAIL|its. fluffily careful deposits hagg| +72716|794258|44259|5|15|20283.30|0.07|0.04|N|O|1998-01-10|1998-01-31|1998-01-30|NONE|FOB|counts. ironic| +72716|79653|29654|6|26|42448.90|0.00|0.04|N|O|1998-01-03|1998-01-16|1998-01-28|TAKE BACK RETURN|SHIP|counts? furiously bold depo| +72716|725867|896|7|43|81391.69|0.06|0.05|N|O|1998-02-15|1997-12-20|1998-03-01|DELIVER IN PERSON|MAIL|ses boost quickly blithely| +72717|633549|33550|1|9|13342.59|0.07|0.05|A|F|1995-01-07|1995-02-12|1995-02-02|NONE|REG AIR|the carefully | +72718|214486|14487|1|46|64421.62|0.03|0.07|N|O|1995-12-13|1996-01-05|1995-12-19|NONE|AIR|ajole furiously among the furiously ironic | +72718|863819|13820|2|11|19610.47|0.06|0.04|N|O|1995-11-24|1996-01-02|1995-12-16|NONE|REG AIR|against the blithely ironic depos| +72718|202384|2385|3|19|24441.03|0.02|0.01|N|O|1996-01-19|1996-01-07|1996-01-23|COLLECT COD|SHIP| asymptotes sle| +72719|476808|39318|1|11|19632.58|0.07|0.03|R|F|1993-06-02|1993-07-02|1993-06-03|DELIVER IN PERSON|FOB|ash carefully abo| +72719|697314|9828|2|46|60318.88|0.06|0.00|A|F|1993-06-18|1993-08-05|1993-07-14|COLLECT COD|TRUCK|er alongside| +72719|739730|27273|3|6|10618.20|0.07|0.04|R|F|1993-06-09|1993-07-07|1993-06-20|TAKE BACK RETURN|RAIL|requests cajole even| +72719|628828|41341|4|35|61487.65|0.09|0.02|A|F|1993-06-23|1993-07-22|1993-07-16|DELIVER IN PERSON|REG AIR|deposits. carefully quiet | +72719|697453|22480|5|38|55115.96|0.08|0.05|R|F|1993-07-16|1993-07-16|1993-07-19|DELIVER IN PERSON|SHIP|refully. slyly fina| +72719|90481|15484|6|19|27958.12|0.09|0.03|R|F|1993-07-02|1993-06-20|1993-07-08|COLLECT COD|SHIP|above the fluffily unusual instructions! | +72744|578844|41356|1|13|24996.66|0.08|0.05|N|O|1998-02-02|1998-02-24|1998-02-27|NONE|MAIL|fter the quickly even dependencies.| +72744|620056|32569|2|16|15616.32|0.02|0.03|N|O|1998-04-25|1998-03-01|1998-05-19|DELIVER IN PERSON|REG AIR|ly even excuses sublate along the| +72744|279219|16735|3|42|50324.40|0.07|0.08|N|O|1998-05-07|1998-03-26|1998-06-04|COLLECT COD|TRUCK|ar instruction| +72744|816927|29444|4|12|22126.56|0.09|0.01|N|O|1998-01-24|1998-03-09|1998-02-01|TAKE BACK RETURN|SHIP|ys. quickly regular war| +72744|82116|44618|5|45|49414.95|0.00|0.08|N|O|1998-05-09|1998-03-22|1998-05-20|DELIVER IN PERSON|REG AIR|s excuses. ir| +72744|122171|47176|6|40|47726.80|0.09|0.06|N|O|1998-03-22|1998-03-02|1998-04-21|COLLECT COD|TRUCK|ly express deposits cajole slyly furious| +72744|323273|48286|7|7|9073.82|0.02|0.03|N|O|1998-04-06|1998-02-18|1998-04-27|TAKE BACK RETURN|RAIL|ost quickly ab| +72745|244420|44421|1|45|61398.45|0.05|0.07|N|O|1998-03-25|1998-02-11|1998-04-22|NONE|FOB|nal foxes wake furiously final exc| +72745|956672|19192|2|6|10371.78|0.04|0.02|N|O|1998-04-13|1998-04-03|1998-05-03|DELIVER IN PERSON|REG AIR|affix quickly Tiresias. slyly regular | +72745|783037|8068|3|45|50400.00|0.04|0.06|N|O|1998-02-09|1998-02-06|1998-03-07|DELIVER IN PERSON|SHIP|tes. carefully iron| +72745|488674|26202|4|46|76481.90|0.00|0.01|N|O|1998-03-20|1998-03-29|1998-04-11|NONE|MAIL|he furiously pend| +72745|139507|39508|5|27|41755.50|0.05|0.03|N|O|1998-04-10|1998-04-01|1998-04-13|NONE|AIR|e. quickly unusual accounts boost b| +72745|680124|17664|6|47|51892.23|0.05|0.03|N|O|1998-03-13|1998-02-28|1998-04-08|COLLECT COD|TRUCK|nic, regular sheaves. quickly fi| +72746|581956|19490|1|5|10189.65|0.02|0.06|A|F|1992-06-07|1992-07-19|1992-06-20|COLLECT COD|TRUCK|ag. blithely even excuses | +72746|930428|30429|2|39|56876.82|0.03|0.06|A|F|1992-06-08|1992-07-17|1992-06-13|TAKE BACK RETURN|REG AIR|tes. regular requests sl| +72746|702953|15468|3|10|19559.20|0.00|0.00|A|F|1992-06-10|1992-08-25|1992-06-19|TAKE BACK RETURN|TRUCK|instruction| +72746|516944|4475|4|10|19609.20|0.02|0.03|R|F|1992-08-09|1992-07-03|1992-09-05|TAKE BACK RETURN|REG AIR|l ideas. blith| +72746|270175|20176|5|12|13741.92|0.07|0.06|R|F|1992-09-09|1992-08-05|1992-09-28|TAKE BACK RETURN|MAIL|gular accounts solve.| +72746|815155|40188|6|23|24612.53|0.09|0.02|R|F|1992-08-02|1992-06-30|1992-08-25|NONE|MAIL|usly alongside of the regu| +72746|308322|20829|7|7|9312.17|0.07|0.00|R|F|1992-08-09|1992-08-25|1992-09-02|DELIVER IN PERSON|SHIP|pending pinto bea| +72747|967040|29560|1|11|12177.00|0.09|0.03|A|F|1994-01-19|1994-01-26|1994-01-31|COLLECT COD|TRUCK|usly pending excuses are accounts. regu| +72747|40889|40890|2|37|67705.56|0.09|0.03|R|F|1994-01-16|1994-01-27|1994-02-07|NONE|MAIL|ong the slyly bold packages| +72747|216745|4258|3|32|53175.36|0.05|0.03|A|F|1993-12-10|1994-01-01|1993-12-25|NONE|FOB|deposits believe blithely across the un| +72747|817523|42556|4|24|34571.52|0.07|0.00|A|F|1994-01-01|1994-02-09|1994-01-31|DELIVER IN PERSON|TRUCK|al platelets. quick| +72748|797771|47772|1|50|93437.00|0.01|0.06|N|O|1996-03-25|1996-04-19|1996-04-02|NONE|REG AIR| even grouches sleep slyly. furiously ironi| +72748|121360|8867|2|46|63542.56|0.08|0.04|N|O|1996-05-16|1996-05-12|1996-06-09|TAKE BACK RETURN|MAIL|al dolphins cajole slyly| +72748|696578|34118|3|38|59832.52|0.09|0.08|N|O|1996-03-24|1996-04-24|1996-04-23|NONE|AIR|uriously. fluffily regular | +72748|381501|31502|4|12|18989.88|0.07|0.08|N|O|1996-03-26|1996-05-25|1996-03-31|TAKE BACK RETURN|REG AIR|y regular p| +72748|884460|22012|5|36|51999.12|0.01|0.08|N|O|1996-05-24|1996-05-19|1996-06-03|COLLECT COD|REG AIR|quests are across the package| +72749|607252|32277|1|3|3477.66|0.08|0.06|R|F|1992-11-05|1992-12-14|1992-11-08|DELIVER IN PERSON|FOB| requests haggle ironically | +72749|75672|675|2|29|47782.43|0.09|0.02|A|F|1993-02-12|1993-01-21|1993-02-23|TAKE BACK RETURN|SHIP|te furiously above the slyly bold depo| +72749|818823|6372|3|7|12192.46|0.09|0.00|A|F|1993-02-22|1993-01-28|1993-03-13|DELIVER IN PERSON|TRUCK|ckly across| +72749|948048|35603|4|18|19728.00|0.09|0.02|A|F|1993-02-08|1993-01-09|1993-02-21|COLLECT COD|TRUCK|ously even escapades affix blithely e| +72749|827291|27292|5|42|51166.50|0.01|0.02|R|F|1992-12-10|1992-12-27|1993-01-04|COLLECT COD|FOB|ly permanent theodolites. blithely ir| +72750|900959|960|1|17|33318.47|0.09|0.05|R|F|1993-07-22|1993-10-03|1993-07-30|DELIVER IN PERSON|TRUCK|fully final pains| +72750|414641|27150|2|30|46668.60|0.03|0.03|A|F|1993-11-05|1993-10-07|1993-11-21|TAKE BACK RETURN|SHIP| furiously unusual foxes above the | +72750|865544|28062|3|41|61889.50|0.04|0.01|R|F|1993-08-08|1993-10-08|1993-08-30|TAKE BACK RETURN|SHIP|instead of the special packag| +72751|344520|32039|1|26|40677.26|0.08|0.06|N|O|1997-04-21|1997-02-10|1997-05-02|TAKE BACK RETURN|RAIL|packages ca| +72751|346803|21816|2|35|64742.65|0.03|0.02|N|O|1996-12-26|1997-03-12|1997-01-16|TAKE BACK RETURN|MAIL|furiously pending pi| +72751|702461|14976|3|13|19024.59|0.04|0.00|N|O|1997-02-19|1997-01-30|1997-03-02|COLLECT COD|FOB|ross the slyly ironic platelet| +72751|251500|1501|4|47|68220.03|0.05|0.02|N|O|1997-01-09|1997-02-10|1997-02-06|NONE|AIR|ts poach quietly past the slyly ironic r| +72751|949041|36596|5|46|50140.00|0.06|0.07|N|O|1997-04-12|1997-02-20|1997-04-28|TAKE BACK RETURN|MAIL|hely final theodolite| +72751|523175|23176|6|16|19170.40|0.06|0.01|N|O|1997-01-03|1997-03-13|1997-01-25|COLLECT COD|MAIL| slyly along| +72751|986698|11737|7|7|12492.55|0.02|0.00|N|O|1997-01-27|1997-02-26|1997-02-01|TAKE BACK RETURN|TRUCK|l instructions| +72776|422075|34584|1|49|48855.45|0.00|0.02|N|O|1997-10-06|1997-09-14|1997-10-22|DELIVER IN PERSON|MAIL|lar accounts. unusual | +72776|806290|31323|2|20|23925.00|0.05|0.01|N|O|1997-10-19|1997-09-06|1997-11-07|NONE|RAIL|ts cajole carefully across the even| +72776|303471|28484|3|23|33912.58|0.03|0.07|N|O|1997-11-02|1997-10-05|1997-11-22|DELIVER IN PERSON|RAIL|ely ironic courts | +72776|432309|7326|4|7|8688.96|0.05|0.04|N|O|1997-08-26|1997-08-15|1997-08-29|TAKE BACK RETURN|SHIP|fts haggle | +72776|809365|21882|5|16|20389.12|0.03|0.07|N|O|1997-08-12|1997-09-28|1997-09-03|TAKE BACK RETURN|MAIL| requests cajole b| +72776|994777|32335|6|47|87971.31|0.07|0.05|N|O|1997-08-26|1997-09-21|1997-09-11|DELIVER IN PERSON|MAIL|t the bold packages. qu| +72776|217001|4514|7|26|23867.74|0.10|0.05|N|O|1997-09-11|1997-08-13|1997-09-19|DELIVER IN PERSON|TRUCK|lly special requests sleep fluffily alo| +72777|128397|40900|1|29|41336.31|0.07|0.03|R|F|1993-06-06|1993-05-12|1993-06-25|DELIVER IN PERSON|FOB|sly final depen| +72777|957400|7401|2|22|32061.92|0.03|0.05|R|F|1993-06-15|1993-05-29|1993-07-07|COLLECT COD|REG AIR|ickly around the final instructi| +72778|571658|46681|1|13|22485.19|0.01|0.04|A|F|1993-01-26|1993-02-25|1993-02-12|NONE|FOB|s snooze carefully quickly unusual| +72778|854945|29980|2|34|64596.60|0.04|0.07|A|F|1993-02-09|1993-02-10|1993-03-11|COLLECT COD|TRUCK|xes are. q| +72778|46226|8727|3|36|42199.92|0.02|0.06|A|F|1993-03-19|1993-03-04|1993-04-12|TAKE BACK RETURN|REG AIR|cial theodolites| +72779|365093|15094|1|6|6948.48|0.01|0.07|R|F|1992-12-29|1993-03-15|1992-12-31|DELIVER IN PERSON|MAIL|nic, bold instructions integ| +72779|109582|9583|2|15|23873.70|0.05|0.02|R|F|1992-12-19|1993-03-10|1993-01-11|TAKE BACK RETURN|RAIL|nts. slyly unusual instructions do| +72779|741622|41623|3|34|56562.06|0.01|0.05|R|F|1993-02-19|1993-02-19|1993-02-22|NONE|AIR|attainments haggle. pending packages would| +72779|435451|35452|4|15|20796.45|0.01|0.07|R|F|1993-01-24|1993-01-21|1993-02-19|DELIVER IN PERSON|REG AIR| packages sleep blithely quickly unusual in| +72779|609214|9215|5|50|56159.00|0.04|0.06|R|F|1993-03-01|1993-03-08|1993-03-05|TAKE BACK RETURN|AIR|ld ideas haggle ir| +72780|213006|519|1|49|45030.51|0.02|0.07|N|O|1996-04-08|1996-02-10|1996-04-14|NONE|MAIL|theodolites. quickly special | +72780|978947|16505|2|43|87113.70|0.01|0.04|N|O|1996-01-20|1996-01-16|1996-01-30|COLLECT COD|REG AIR|nic foxes wake blithely| +72780|151987|1988|3|4|8155.92|0.04|0.01|N|O|1996-03-20|1996-03-02|1996-03-24|NONE|SHIP|s integrate furiously fluffily even ide| +72781|521244|8775|1|35|44282.70|0.00|0.04|A|F|1992-12-06|1992-12-30|1993-01-04|DELIVER IN PERSON|REG AIR|s. express, regular pinto beans use. fi| +72781|545129|32660|2|37|43441.70|0.05|0.05|A|F|1992-11-04|1993-01-07|1992-11-17|TAKE BACK RETURN|MAIL|bove the carefully ironic requests. | +72781|981100|31101|3|49|57871.94|0.05|0.02|A|F|1993-01-18|1993-01-07|1993-01-31|NONE|RAIL|c instructions wake quickly c| +72782|439341|1850|1|6|7681.92|0.01|0.02|A|F|1995-02-04|1995-03-31|1995-02-21|TAKE BACK RETURN|TRUCK|sly unusual deposits are regular| +72782|989498|39499|2|1|1587.45|0.05|0.03|R|F|1995-05-03|1995-02-03|1995-05-06|TAKE BACK RETURN|RAIL| carefully even| +72782|480186|42696|3|23|26821.68|0.01|0.04|A|F|1995-04-03|1995-02-07|1995-04-10|DELIVER IN PERSON|TRUCK|against the slyly even excuses grow | +72782|483477|33478|4|35|51115.75|0.09|0.00|R|F|1995-04-22|1995-02-20|1995-05-07|DELIVER IN PERSON|AIR|dependencies| +72783|907800|45355|1|27|48809.52|0.04|0.05|N|O|1997-02-05|1997-03-03|1997-02-20|COLLECT COD|TRUCK|quietly accounts. final, final deposits us| +72783|391769|4277|2|10|18607.50|0.00|0.06|N|O|1997-01-06|1997-01-12|1997-01-07|COLLECT COD|MAIL|ng to the quickly express grou| +72783|458853|33872|3|44|79720.52|0.06|0.01|N|O|1997-03-24|1997-02-09|1997-03-29|COLLECT COD|AIR| asymptotes hang after the pla| +72783|931744|44263|4|13|23084.10|0.01|0.04|N|O|1997-03-16|1997-01-16|1997-03-27|DELIVER IN PERSON|AIR| the slyly un| +72783|817275|42308|5|8|9537.84|0.05|0.06|N|O|1997-01-05|1997-01-29|1997-01-08|NONE|SHIP| careful foxes| +72783|927264|14819|6|10|12912.20|0.07|0.06|N|O|1997-02-28|1997-03-05|1997-03-19|COLLECT COD|SHIP|odolites according to the slyly pending| +72783|513859|26370|7|18|33710.94|0.07|0.04|N|O|1997-01-04|1997-01-17|1997-01-05|TAKE BACK RETURN|REG AIR|s. quickly final packages affix after | +72808|424971|49988|1|41|77733.95|0.03|0.08|N|O|1997-05-13|1997-05-20|1997-06-10|NONE|MAIL|n instructions according to the ironic de| +72808|471397|33907|2|42|57471.54|0.00|0.04|N|O|1997-04-12|1997-04-28|1997-04-19|COLLECT COD|SHIP|capades boost furiously ironic foxes| +72808|766235|41266|3|25|32530.00|0.01|0.08|N|O|1997-05-15|1997-04-16|1997-05-28|DELIVER IN PERSON|AIR| multipliers about the quickly special| +72808|108223|20726|4|12|14774.64|0.10|0.06|N|O|1997-06-03|1997-05-21|1997-06-04|NONE|AIR|ructions. bold, bold accounts affix quic| +72808|901428|38983|5|5|7146.90|0.07|0.00|N|O|1997-04-27|1997-04-03|1997-05-10|COLLECT COD|FOB|bout the qui| +72808|289894|27410|6|20|37677.60|0.05|0.04|N|O|1997-04-30|1997-04-28|1997-05-09|NONE|AIR|in deposits wake blithe| +72808|238712|26225|7|30|49521.00|0.10|0.00|N|O|1997-03-22|1997-04-05|1997-04-19|TAKE BACK RETURN|AIR|s boost. slyly bold excuses caj| +72809|21257|8758|1|36|42417.00|0.07|0.07|A|F|1992-03-16|1992-04-23|1992-04-07|DELIVER IN PERSON|MAIL|ect furiously a| +72809|259036|34047|2|28|27860.56|0.09|0.08|R|F|1992-04-28|1992-05-07|1992-05-16|DELIVER IN PERSON|AIR|equests wake. carefully pending| +72809|606157|18670|3|46|48903.52|0.02|0.00|A|F|1992-07-01|1992-04-06|1992-07-06|TAKE BACK RETURN|TRUCK|nal excuses according to the| +72809|664593|27107|4|43|66975.08|0.09|0.08|A|F|1992-06-27|1992-05-18|1992-07-04|DELIVER IN PERSON|FOB|iously ironic fox| +72809|801408|1409|5|29|37971.44|0.05|0.08|R|F|1992-05-24|1992-04-09|1992-06-23|DELIVER IN PERSON|RAIL|es solve express, silent | +72809|252692|2693|6|39|64142.52|0.04|0.02|A|F|1992-05-09|1992-05-30|1992-06-07|NONE|TRUCK| ideas. entic| +72810|239269|26782|1|38|45913.50|0.07|0.06|N|O|1997-02-25|1997-02-10|1997-03-13|DELIVER IN PERSON|REG AIR|before the furiously even packages sleep| +72810|380507|30508|2|1|1587.49|0.10|0.01|N|O|1997-03-27|1997-01-20|1997-04-15|NONE|TRUCK|egular platelets use | +72810|169902|7412|3|36|70988.40|0.07|0.03|N|O|1997-02-20|1997-02-02|1997-03-12|NONE|SHIP|ts wake for the fluffily bold ideas? ironi| +72810|542362|17383|4|47|66003.98|0.06|0.08|N|O|1997-01-18|1997-01-30|1997-02-10|NONE|REG AIR|bove the blithely ironic deposits. expre| +72811|815439|27956|1|21|28442.19|0.05|0.07|N|O|1996-06-24|1996-09-16|1996-06-28|DELIVER IN PERSON|REG AIR|nusual platelets. ironic ide| +72811|78448|3451|2|9|12837.96|0.02|0.07|N|O|1996-09-26|1996-09-19|1996-10-01|DELIVER IN PERSON|REG AIR|ing accounts among th| +72811|459687|47215|3|28|46106.48|0.09|0.08|N|O|1996-08-26|1996-09-04|1996-09-11|COLLECT COD|TRUCK|y silent deposits. closely bold deposi| +72811|951135|13655|4|46|54560.14|0.08|0.01|N|O|1996-10-15|1996-09-10|1996-11-09|NONE|SHIP| accounts cajole blithely. ironic accoun| +72812|442881|42882|1|5|9119.30|0.09|0.06|R|F|1992-10-01|1992-11-06|1992-10-20|TAKE BACK RETURN|SHIP|lithely express requests sleep. regular| +72812|499785|37313|2|37|66036.12|0.05|0.07|A|F|1992-11-12|1992-10-28|1992-12-12|TAKE BACK RETURN|RAIL|ully pending platel| +72812|881350|43868|3|46|61240.26|0.03|0.04|R|F|1992-11-30|1992-09-26|1992-12-19|COLLECT COD|REG AIR|ructions. pending | +72812|833279|20828|4|26|31517.98|0.01|0.02|R|F|1992-10-21|1992-10-21|1992-11-03|TAKE BACK RETURN|REG AIR|bove the quickly| +72812|911796|49351|5|3|5423.25|0.10|0.03|R|F|1992-10-16|1992-10-01|1992-10-27|NONE|FOB| furiously bold d| +72813|607375|44912|1|13|16670.42|0.08|0.00|A|F|1995-05-20|1995-07-05|1995-05-29|COLLECT COD|MAIL|eep furiously alongside of the quickly r| +72813|145458|20463|2|37|55627.65|0.06|0.08|R|F|1995-05-18|1995-06-26|1995-06-16|DELIVER IN PERSON|TRUCK|ding ideas haggle slyly blit| +72813|696889|9403|3|41|77319.85|0.05|0.06|N|O|1995-06-25|1995-06-29|1995-07-11|NONE|MAIL|es cajole e| +72813|598371|23394|4|39|57304.65|0.02|0.00|N|O|1995-08-03|1995-07-07|1995-08-25|DELIVER IN PERSON|TRUCK|nusual asymptotes. pending requests are ab| +72813|817129|17130|5|44|46027.52|0.05|0.03|N|O|1995-08-21|1995-08-05|1995-08-23|TAKE BACK RETURN|REG AIR|s. permanently ironic pinto beans cajole s| +72814|461297|36316|1|16|20132.32|0.06|0.04|N|O|1996-02-21|1995-12-30|1996-03-10|NONE|MAIL| slyly ironic packages.| +72814|14258|14259|2|24|28134.00|0.03|0.02|N|O|1996-03-23|1996-01-10|1996-03-24|DELIVER IN PERSON|SHIP|fully even requests wa| +72814|630921|30922|3|30|55556.70|0.03|0.01|N|O|1996-02-18|1996-01-11|1996-03-12|DELIVER IN PERSON|TRUCK|ss requests pr| +72815|388587|38588|1|47|78751.79|0.10|0.00|N|O|1995-12-16|1996-02-25|1995-12-30|NONE|FOB|accounts sleep fluffily| +72815|971191|8749|2|36|45437.40|0.02|0.02|N|O|1996-02-14|1996-02-02|1996-03-12|DELIVER IN PERSON|AIR|ts wake slyly against the deposits.| +72815|804691|4692|3|43|68612.95|0.10|0.07|N|O|1996-02-04|1996-01-16|1996-02-10|COLLECT COD|SHIP| fluffily. bo| +72815|431061|31062|4|21|20832.84|0.08|0.08|N|O|1996-01-02|1996-02-23|1996-01-10|DELIVER IN PERSON|SHIP|oxes. fluff| +72815|834461|46978|5|45|62793.90|0.07|0.03|N|O|1996-03-05|1996-02-20|1996-03-15|NONE|SHIP|lyly bold instructions boost s| +72840|15338|15339|1|13|16293.29|0.01|0.02|N|O|1998-06-21|1998-05-27|1998-07-08|TAKE BACK RETURN|MAIL|eep furiously | +72840|778119|3150|2|36|43094.88|0.00|0.08|N|O|1998-03-07|1998-04-21|1998-03-15|DELIVER IN PERSON|TRUCK| carefully ironic accounts haggle blit| +72841|498923|11433|1|17|32672.30|0.09|0.06|R|F|1993-11-22|1993-11-15|1993-12-17|NONE|REG AIR|dencies. reg| +72841|395311|7819|2|21|29532.30|0.04|0.06|A|F|1993-11-20|1993-11-28|1993-12-06|NONE|SHIP|lar theodolites around the blithely | +72841|989685|27243|3|31|55013.84|0.05|0.00|R|F|1994-01-18|1993-12-05|1994-01-28|COLLECT COD|FOB| boost blithely slyly unusual requests.| +72841|619601|19602|4|43|65384.51|0.02|0.07|R|F|1993-11-15|1993-11-08|1993-12-09|COLLECT COD|MAIL|inal deposits. ins| +72841|631048|31049|5|40|39160.40|0.07|0.06|R|F|1993-10-27|1993-11-06|1993-11-04|TAKE BACK RETURN|TRUCK|arefully special theodolite| +72841|12682|183|6|15|23920.20|0.08|0.02|R|F|1993-12-27|1993-12-01|1994-01-10|COLLECT COD|AIR|s. express platelets are. unusua| +72842|995102|45103|1|46|55064.76|0.06|0.04|A|F|1993-10-11|1993-09-20|1993-11-02|COLLECT COD|AIR|ully special requests use car| +72842|663090|25604|2|4|4212.24|0.07|0.04|A|F|1993-09-13|1993-10-14|1993-09-21|DELIVER IN PERSON|TRUCK|ully bold packages must are! foxes wil| +72842|539805|2316|3|43|79325.54|0.01|0.06|A|F|1993-10-08|1993-10-06|1993-10-09|TAKE BACK RETURN|SHIP|kages cajole furiously final deposits. inst| +72842|499324|11834|4|46|60871.80|0.05|0.03|A|F|1993-08-31|1993-10-01|1993-09-01|DELIVER IN PERSON|SHIP|y blithely unusual dep| +72842|136907|24414|5|15|29158.50|0.02|0.01|A|F|1993-09-24|1993-10-02|1993-09-30|TAKE BACK RETURN|MAIL|elets will have to cajole. quic| +72842|982702|7741|6|37|66032.42|0.00|0.08|R|F|1993-08-20|1993-10-01|1993-08-26|COLLECT COD|RAIL|egular platelets. carefully final packages| +72842|266114|28620|7|34|36723.40|0.10|0.05|R|F|1993-11-12|1993-09-27|1993-12-08|DELIVER IN PERSON|TRUCK|fully silent deposits are blithel| +72843|561436|23948|1|50|74870.50|0.05|0.00|A|F|1992-11-04|1992-12-08|1992-11-20|TAKE BACK RETURN|AIR| beans haggle a| +72843|47153|47154|2|49|53907.35|0.00|0.04|A|F|1992-11-16|1992-12-16|1992-12-16|COLLECT COD|RAIL| final excuses haggle. furious| +72843|485810|10829|3|19|34120.01|0.10|0.03|A|F|1993-01-05|1992-12-04|1993-01-19|TAKE BACK RETURN|TRUCK|r theodolites are | +72843|992286|17325|4|36|49616.64|0.08|0.02|A|F|1993-02-01|1992-11-18|1993-02-15|COLLECT COD|SHIP|slyly final ex| +72844|908946|33983|1|12|23458.80|0.04|0.05|N|O|1998-06-27|1998-07-13|1998-07-10|DELIVER IN PERSON|RAIL|slyly pending accounts. regular, ironic | +72844|648520|36057|2|41|60208.09|0.10|0.06|N|O|1998-04-27|1998-05-19|1998-05-04|NONE|REG AIR|entiments wake blithe| +72845|514988|27499|1|12|24035.52|0.03|0.00|A|F|1995-04-20|1995-05-27|1995-05-20|NONE|MAIL| are furiou| +72846|560921|48455|1|30|59457.00|0.02|0.06|N|O|1998-06-29|1998-07-17|1998-07-26|NONE|FOB|e bold requests| +72846|398216|35738|2|41|53882.20|0.06|0.07|N|O|1998-07-30|1998-06-15|1998-08-22|TAKE BACK RETURN|TRUCK|s wake evenly. pending reque| +72846|813057|13058|3|47|45590.47|0.07|0.00|N|O|1998-05-03|1998-07-01|1998-05-06|NONE|RAIL|carefully ironic foxes affix fluffily acr| +72846|39517|14518|4|45|65542.95|0.04|0.03|N|O|1998-08-24|1998-06-17|1998-09-23|TAKE BACK RETURN|MAIL|. furiously final requests b| +72846|157788|45298|5|18|33224.04|0.01|0.07|N|O|1998-07-02|1998-07-04|1998-07-23|COLLECT COD|TRUCK|onic pinto beans along the| +72846|927712|2749|6|21|36533.07|0.04|0.03|N|O|1998-06-20|1998-06-12|1998-07-14|NONE|AIR|nstructions boost across the slyly express| +72846|51694|14196|7|44|72410.36|0.05|0.03|N|O|1998-08-18|1998-07-08|1998-08-20|TAKE BACK RETURN|TRUCK| regular excuses. final excuses use slow| +72847|809478|21995|1|38|52722.34|0.06|0.05|N|O|1995-11-01|1995-08-30|1995-11-27|NONE|REG AIR|s the final requests. i| +72847|892179|17214|2|31|36305.03|0.06|0.04|N|O|1995-08-02|1995-09-28|1995-08-03|TAKE BACK RETURN|MAIL|ses; slyly even deposits according to| +72847|843745|43746|3|47|79368.90|0.02|0.00|N|O|1995-07-30|1995-09-20|1995-08-24|TAKE BACK RETURN|MAIL|etect quickly regular dep| +72872|806500|31533|1|35|49226.10|0.04|0.02|A|F|1994-05-04|1994-04-04|1994-05-10|NONE|RAIL|sias. ironic plat| +72873|975576|25577|1|13|21469.89|0.06|0.04|N|O|1995-11-01|1995-12-31|1995-11-16|DELIVER IN PERSON|REG AIR|the fluffily ev| +72873|500241|37772|2|7|8688.54|0.09|0.08|N|O|1995-12-05|1995-12-08|1995-12-15|DELIVER IN PERSON|FOB|ly stealthily spec| +72873|547083|47084|3|16|18080.96|0.04|0.00|N|O|1995-12-16|1995-11-13|1995-12-28|DELIVER IN PERSON|TRUCK|grate furiously ironic accounts. r| +72873|808321|20838|4|32|39336.96|0.06|0.00|N|O|1995-11-01|1995-12-17|1995-11-30|TAKE BACK RETURN|TRUCK|ross the quickly f| +72873|434753|34754|5|38|64133.74|0.04|0.08|N|O|1995-12-23|1995-11-05|1996-01-15|TAKE BACK RETURN|TRUCK| regular deposits| +72873|881744|19296|6|29|50045.30|0.05|0.00|N|O|1995-11-23|1995-12-06|1995-11-24|DELIVER IN PERSON|REG AIR|ic packages use furiously. furiou| +72874|656404|18918|1|4|5441.48|0.02|0.07|N|O|1995-12-14|1995-12-06|1995-12-19|NONE|MAIL|eans boost blithely. fluffily s| +72874|170924|45931|2|27|53862.84|0.04|0.00|N|O|1995-10-23|1995-11-15|1995-11-01|TAKE BACK RETURN|REG AIR|l courts must have to wake pla| +72875|243681|43682|1|21|34118.07|0.09|0.07|N|O|1998-08-12|1998-07-24|1998-09-08|TAKE BACK RETURN|FOB|regular ideas grow caref| +72875|532217|32218|2|16|19987.04|0.03|0.00|N|O|1998-08-28|1998-06-18|1998-09-02|COLLECT COD|REG AIR|ully pending platelets. unusual | +72876|689180|14207|1|21|24552.15|0.00|0.02|R|F|1993-10-18|1993-09-13|1993-10-23|NONE|MAIL|ronic dependencies wake quickly. sile| +72876|46023|46024|2|20|19380.40|0.06|0.05|R|F|1993-07-11|1993-08-25|1993-08-02|COLLECT COD|FOB|ts. silently regular decoys | +72876|507130|19641|3|15|17056.65|0.04|0.01|R|F|1993-08-19|1993-08-19|1993-08-31|COLLECT COD|AIR|bove the regular, regular deposits. unu| +72876|328323|3336|4|14|18918.34|0.00|0.05|A|F|1993-09-02|1993-08-25|1993-09-22|NONE|REG AIR|s boost furiously a| +72876|120134|7641|5|15|17311.95|0.04|0.06|A|F|1993-07-21|1993-09-26|1993-07-24|NONE|TRUCK|ly across the carefull| +72876|91501|29005|6|20|29850.00|0.03|0.05|R|F|1993-09-23|1993-09-29|1993-10-03|TAKE BACK RETURN|FOB|ly ironic packages impress sl| +72876|849785|37334|7|9|15612.66|0.05|0.00|R|F|1993-08-03|1993-09-21|1993-08-19|TAKE BACK RETURN|REG AIR|equests. s| +72877|326713|1726|1|25|43492.50|0.07|0.04|N|O|1998-01-24|1998-01-26|1998-02-21|DELIVER IN PERSON|REG AIR| packages are furiously asymptotes| +72877|53716|16218|2|4|6678.84|0.08|0.05|N|O|1998-04-21|1998-01-29|1998-05-08|TAKE BACK RETURN|SHIP|foxes. bold| +72877|803423|15940|3|28|37138.64|0.02|0.04|N|O|1998-01-17|1998-02-18|1998-02-10|TAKE BACK RETURN|FOB|c instructions wake carefully unusual instr| +72877|116508|4015|4|49|74700.50|0.02|0.06|N|O|1998-02-18|1998-03-06|1998-02-20|DELIVER IN PERSON|AIR|ages. iron| +72878|803487|16004|1|1|1390.44|0.06|0.07|N|O|1996-05-10|1996-02-18|1996-06-09|COLLECT COD|SHIP|. blithely slow accounts affix sl| +72878|199216|36726|2|49|64445.29|0.09|0.03|N|O|1996-03-26|1996-03-24|1996-04-21|COLLECT COD|SHIP|s cajole acc| +72878|208323|20828|3|21|25857.51|0.10|0.02|N|O|1996-03-04|1996-02-25|1996-03-13|COLLECT COD|REG AIR|ickly even packages. carefully regular| +72879|407575|20084|1|41|60784.55|0.09|0.02|N|O|1997-11-29|1997-10-23|1997-12-03|DELIVER IN PERSON|REG AIR|lar Tiresias. ironic deposits| +72879|104679|17182|2|19|31989.73|0.03|0.03|N|O|1997-12-12|1997-09-28|1997-12-25|DELIVER IN PERSON|AIR|arefully quick| +72879|335855|23374|3|50|94542.00|0.09|0.01|N|O|1997-09-24|1997-11-05|1997-10-17|COLLECT COD|AIR|sits use furiously across the sly| +72879|705795|18310|4|11|19808.36|0.08|0.08|N|O|1997-08-28|1997-10-15|1997-09-21|COLLECT COD|RAIL|packages should sleep | +72879|292913|17924|5|41|78141.90|0.06|0.01|N|O|1997-09-18|1997-09-27|1997-10-16|DELIVER IN PERSON|SHIP|old pinto beans need to slee| +72904|76197|38699|1|19|22290.61|0.02|0.08|N|O|1997-08-10|1997-06-14|1997-09-08|TAKE BACK RETURN|RAIL|lar requests nod fluffily bold requests?| +72904|641849|4362|2|21|37607.01|0.04|0.04|N|O|1997-05-16|1997-06-12|1997-05-21|COLLECT COD|REG AIR| final accounts. quickly express p| +72904|547360|47361|3|24|33776.16|0.02|0.07|N|O|1997-07-16|1997-06-14|1997-08-04|TAKE BACK RETURN|SHIP|h after the ironic, pending requests. fu| +72904|464846|2374|4|49|88730.18|0.04|0.08|N|O|1997-07-28|1997-07-06|1997-08-06|TAKE BACK RETURN|MAIL| deposits. regular, final requests nag ag| +72904|656404|31431|5|29|39450.73|0.00|0.08|N|O|1997-04-22|1997-06-13|1997-04-24|COLLECT COD|AIR|re fluffily even f| +72905|974552|24553|1|5|8132.55|0.10|0.08|N|O|1998-08-26|1998-09-07|1998-09-10|NONE|TRUCK|heodolites use against the fluffily expre| +72905|288647|1153|2|8|13085.04|0.00|0.02|N|O|1998-06-30|1998-09-07|1998-07-12|NONE|REG AIR|ular accounts nag fu| +72905|274154|24155|3|13|14665.82|0.02|0.00|N|O|1998-10-04|1998-07-27|1998-10-23|COLLECT COD|RAIL|l excuses. even requests after the unusual| +72905|695856|33396|4|33|61110.06|0.09|0.01|N|O|1998-07-26|1998-09-13|1998-08-07|NONE|MAIL|nusual ideas boost quickly theodolit| +72906|77317|27318|1|9|11648.79|0.08|0.03|R|F|1992-04-23|1992-05-26|1992-04-28|COLLECT COD|AIR|egular deposits. slyly final theodolites | +72906|462882|25392|2|9|16603.74|0.03|0.06|A|F|1992-05-22|1992-04-17|1992-06-13|NONE|SHIP|requests. care| +72906|645655|20680|3|9|14405.58|0.08|0.07|R|F|1992-04-26|1992-04-03|1992-05-23|NONE|MAIL|ending asymptotes doze slyly. | +72907|949651|49652|1|21|35712.81|0.02|0.04|N|O|1997-05-16|1997-07-07|1997-06-10|DELIVER IN PERSON|MAIL|lar accounts. bold, final pinto | +72907|773660|48691|2|39|67611.57|0.06|0.02|N|O|1997-08-12|1997-08-13|1997-09-05|TAKE BACK RETURN|AIR|mong the bold| +72907|894727|7245|3|21|36155.28|0.10|0.02|N|O|1997-06-11|1997-07-09|1997-07-11|COLLECT COD|RAIL|e permanently special req| +72907|669951|7491|4|45|86441.40|0.05|0.04|N|O|1997-08-10|1997-08-11|1997-08-31|NONE|SHIP|ully silent i| +72908|883872|33873|1|20|37116.60|0.10|0.01|N|O|1995-09-18|1995-09-21|1995-10-16|NONE|TRUCK|eposits sleep along the slyly exp| +72908|232454|7463|2|15|20796.60|0.04|0.02|N|O|1995-08-23|1995-09-17|1995-09-20|NONE|FOB|regular accounts f| +72908|853692|16210|3|36|59243.40|0.05|0.04|N|O|1995-10-08|1995-11-01|1995-10-14|NONE|MAIL|inal, even asymptotes acco| +72908|997848|22887|4|31|60319.80|0.07|0.03|N|O|1995-12-06|1995-10-10|1995-12-09|TAKE BACK RETURN|MAIL|uctions wake at the quic| +72908|817866|30383|5|21|37460.22|0.05|0.06|N|O|1995-11-21|1995-10-24|1995-11-27|DELIVER IN PERSON|AIR|requests cajole. carefully iron| +72909|823204|48237|1|18|20288.88|0.07|0.01|N|O|1995-12-06|1996-01-01|1995-12-15|COLLECT COD|REG AIR|integrate bold, bold requests. accounts| +72909|588117|38118|2|45|54229.05|0.08|0.06|N|O|1996-02-10|1995-11-16|1996-02-26|DELIVER IN PERSON|AIR|arefully expre| +72909|471932|21933|3|30|57117.30|0.06|0.08|N|O|1995-11-06|1995-12-21|1995-11-21|DELIVER IN PERSON|AIR| even packa| +72910|244545|19554|1|22|32769.66|0.09|0.01|R|F|1992-03-10|1992-03-28|1992-03-31|TAKE BACK RETURN|REG AIR|ccounts after the pending p| +72910|53795|3796|2|18|31478.22|0.05|0.08|R|F|1992-06-02|1992-05-17|1992-06-08|DELIVER IN PERSON|SHIP|ic deposits across the foxes boost blith| +72910|122596|22597|3|18|29134.62|0.09|0.03|A|F|1992-03-06|1992-04-24|1992-04-04|TAKE BACK RETURN|MAIL|y ironic dependencies hinder regular inst| +72910|468388|43407|4|11|14919.96|0.02|0.01|A|F|1992-03-12|1992-04-17|1992-04-03|COLLECT COD|REG AIR|nag slyly after the ironic i| +72910|194256|6760|5|12|16203.00|0.00|0.07|A|F|1992-04-17|1992-04-17|1992-04-19|NONE|SHIP|ronic requests are blithely | +72911|469139|19140|1|22|24378.42|0.00|0.04|R|F|1994-05-18|1994-05-14|1994-05-26|DELIVER IN PERSON|MAIL|uests. regular,| +72936|771489|21490|1|9|14044.05|0.08|0.06|N|O|1998-05-30|1998-04-04|1998-06-21|TAKE BACK RETURN|AIR| asymptotes. slyly| +72936|406769|44294|2|17|28487.58|0.08|0.00|N|O|1998-03-06|1998-04-09|1998-03-20|DELIVER IN PERSON|RAIL|requests was slyly along t| +72936|561750|11751|3|8|14493.84|0.05|0.00|N|O|1998-04-03|1998-03-31|1998-04-04|DELIVER IN PERSON|REG AIR|e furiously special| +72936|321883|46896|4|6|11429.22|0.01|0.00|N|O|1998-02-26|1998-05-05|1998-03-14|TAKE BACK RETURN|FOB|ding requests play always furiously expres| +72936|877347|39865|5|21|27810.30|0.08|0.08|N|O|1998-05-08|1998-05-09|1998-05-24|COLLECT COD|FOB| ironic deposit| +72936|555680|43214|6|46|79840.36|0.10|0.02|N|O|1998-03-11|1998-05-03|1998-04-10|DELIVER IN PERSON|TRUCK|usly careful excuses. fluffily ironic t| +72937|669542|19543|1|22|33253.22|0.04|0.03|R|F|1993-05-11|1993-03-03|1993-05-30|DELIVER IN PERSON|REG AIR|ut the bold | +72937|990274|40275|2|6|8185.38|0.05|0.04|A|F|1993-03-12|1993-03-11|1993-03-13|COLLECT COD|AIR|beans sleep quickly | +72937|521892|9423|3|19|36363.53|0.03|0.06|A|F|1993-04-10|1993-03-28|1993-05-07|NONE|RAIL|s. deposits| +72937|422883|10408|4|33|59593.38|0.03|0.03|A|F|1993-02-25|1993-04-14|1993-02-26|COLLECT COD|RAIL| even requests use slyly daringly express | +72937|379773|29774|5|31|57435.56|0.10|0.03|A|F|1993-03-05|1993-04-12|1993-03-06|COLLECT COD|MAIL|quickly bold forges against th| +72937|840968|3485|6|27|51540.84|0.06|0.01|A|F|1993-01-30|1993-04-18|1993-02-25|DELIVER IN PERSON|FOB|y against the permanently special requests| +72938|116714|29217|1|29|50190.59|0.04|0.02|N|O|1996-04-04|1996-04-26|1996-04-23|TAKE BACK RETURN|FOB|ites? regular pinto beans are furiously. | +72939|458425|8426|1|12|16600.80|0.08|0.05|R|F|1993-11-04|1993-12-20|1993-11-11|COLLECT COD|REG AIR|yly ironic excuses sleep after the iro| +72939|744938|44939|2|14|27760.60|0.01|0.06|R|F|1994-01-16|1993-12-26|1994-02-02|DELIVER IN PERSON|SHIP|, unusual ideas. fluffily ironic re| +72939|165641|28145|3|15|25599.60|0.09|0.01|A|F|1994-01-02|1993-12-20|1994-01-15|NONE|REG AIR|wly final requests detect| +72939|916393|28912|4|4|5637.40|0.04|0.00|A|F|1993-11-08|1993-12-30|1993-11-16|TAKE BACK RETURN|RAIL|ndencies. slyly c| +72939|812067|49616|5|16|15664.32|0.03|0.04|A|F|1993-12-21|1994-01-18|1994-01-19|DELIVER IN PERSON|REG AIR| theodolites wake up the final patterns. n| +72939|393432|30954|6|14|21355.88|0.04|0.07|R|F|1994-01-18|1993-11-24|1994-01-22|NONE|RAIL|. quickly regular gr| +72939|410817|35834|7|50|86389.50|0.06|0.04|A|F|1994-01-18|1994-01-05|1994-01-22|COLLECT COD|SHIP| carefully ironi| +72940|589013|1525|1|40|44079.60|0.06|0.03|N|O|1995-12-13|1995-12-19|1995-12-29|DELIVER IN PERSON|MAIL|sits sleep slyly bold instructions. care| +72940|537153|24684|2|35|41654.55|0.09|0.03|N|O|1995-12-28|1995-12-17|1996-01-26|COLLECT COD|RAIL|uctions sleep along the iron| +72940|918580|6135|3|8|12788.32|0.05|0.01|N|O|1995-12-31|1995-11-19|1996-01-06|DELIVER IN PERSON|TRUCK| accounts across th| +72941|693929|31469|1|2|3845.78|0.02|0.00|A|F|1993-03-08|1993-04-15|1993-04-03|TAKE BACK RETURN|MAIL|packages affix s| +72941|860902|10903|2|21|39120.06|0.10|0.03|A|F|1993-02-12|1993-03-14|1993-02-25|DELIVER IN PERSON|SHIP|final pinto beans eat. blithely| +72941|178172|28173|3|47|58757.99|0.00|0.06|A|F|1993-05-20|1993-04-15|1993-06-17|DELIVER IN PERSON|TRUCK|according to the f| +72941|525133|154|4|11|12739.21|0.09|0.08|A|F|1993-03-17|1993-02-22|1993-03-27|NONE|MAIL|sleep caref| +72941|895516|8034|5|11|16626.17|0.04|0.06|R|F|1993-04-23|1993-04-15|1993-05-16|COLLECT COD|RAIL|tructions. carefully | +72941|932078|7115|6|44|48841.32|0.05|0.04|R|F|1993-02-09|1993-03-25|1993-02-16|NONE|RAIL|l instructions cajole daring foxe| +72941|423796|36305|7|16|27516.32|0.04|0.04|R|F|1993-05-15|1993-04-19|1993-05-29|TAKE BACK RETURN|AIR|lithely regular requests nag according to t| +72942|731791|44306|1|41|74733.16|0.00|0.03|N|O|1998-02-24|1998-04-13|1998-03-13|NONE|AIR|regular sau| +72942|209283|34292|2|47|56036.69|0.07|0.02|N|O|1998-04-26|1998-03-30|1998-05-02|COLLECT COD|MAIL|onic accounts are packages. sly| +72942|409426|34443|3|18|24037.20|0.07|0.06|N|O|1998-05-20|1998-03-18|1998-06-12|COLLECT COD|TRUCK|furiously bold accounts. acc| +72942|207892|32901|4|6|10799.28|0.07|0.02|N|O|1998-05-13|1998-03-22|1998-06-05|TAKE BACK RETURN|RAIL|ests against the furiously f| +72942|25831|13332|5|17|29866.11|0.06|0.05|N|O|1998-02-05|1998-04-13|1998-02-15|NONE|MAIL|lar pinto beans sl| +72942|130629|5634|6|41|68044.42|0.04|0.07|N|O|1998-02-21|1998-03-13|1998-03-14|NONE|MAIL| regular theodolites was. | +72942|466598|41617|7|14|21903.98|0.10|0.08|N|O|1998-05-20|1998-04-12|1998-06-06|NONE|REG AIR| requests run even asymptotes. ironic| +72943|101068|1069|1|32|34209.92|0.09|0.04|N|O|1997-03-22|1997-04-18|1997-04-19|NONE|MAIL|ets cajole again| +72968|872291|34809|1|26|32844.50|0.08|0.01|N|O|1996-08-01|1996-08-12|1996-08-09|TAKE BACK RETURN|REG AIR|nts. regula| +72968|579874|42386|2|10|19538.50|0.03|0.02|N|O|1996-06-04|1996-06-16|1996-06-28|NONE|AIR|pending requests breach slyly final| +72968|935037|35038|3|14|15007.86|0.10|0.00|N|O|1996-09-12|1996-07-12|1996-09-15|TAKE BACK RETURN|FOB|s are according to the| +72968|166329|3839|4|49|68370.68|0.02|0.06|N|O|1996-05-16|1996-06-21|1996-05-19|COLLECT COD|FOB|ainst the carefully final plat| +72968|475698|717|5|44|73641.48|0.03|0.03|N|O|1996-07-31|1996-08-02|1996-08-22|TAKE BACK RETURN|REG AIR|endencies grow blithely among the| +72969|437514|37515|1|29|42093.21|0.05|0.07|A|F|1993-05-25|1993-05-16|1993-05-30|NONE|REG AIR|accounts integrate foxes. close, f| +72969|282887|20403|2|22|41137.14|0.07|0.02|A|F|1993-05-08|1993-04-27|1993-06-02|TAKE BACK RETURN|MAIL|foxes. stealthy accounts use furiousl| +72969|467625|17626|3|25|39815.00|0.08|0.06|A|F|1993-03-09|1993-05-19|1993-03-19|TAKE BACK RETURN|FOB|luffily daring d| +72969|358346|8347|4|25|35108.25|0.09|0.01|A|F|1993-06-19|1993-04-29|1993-07-16|TAKE BACK RETURN|RAIL|en deposits. furiously even instructions w| +72969|704725|4726|5|3|5189.07|0.01|0.06|A|F|1993-06-08|1993-04-09|1993-06-12|DELIVER IN PERSON|TRUCK|hely express packages? carefully final r| +72969|300724|13231|6|41|70713.11|0.07|0.05|A|F|1993-06-11|1993-04-19|1993-07-09|DELIVER IN PERSON|TRUCK|ly, even foxes. theodolites at th| +72969|267523|5039|7|41|61110.91|0.09|0.08|A|F|1993-04-10|1993-04-09|1993-04-25|NONE|MAIL|l pinto beans haggle.| +72970|249931|12436|1|16|30094.72|0.07|0.05|N|O|1998-05-02|1998-06-14|1998-05-19|DELIVER IN PERSON|SHIP|hely blithely final dependenci| +72970|573566|23567|2|49|80337.46|0.08|0.07|N|O|1998-04-15|1998-05-28|1998-05-11|TAKE BACK RETURN|SHIP| carefully silent the| +72970|917185|42222|3|21|25244.94|0.09|0.00|N|O|1998-08-01|1998-06-28|1998-08-25|TAKE BACK RETURN|RAIL|lar requests. express, pending pinto bean| +72970|113685|26188|4|48|81536.64|0.03|0.01|N|O|1998-07-23|1998-06-13|1998-07-27|TAKE BACK RETURN|TRUCK|eposits. packages are requests. | +72970|702783|27812|5|42|75001.50|0.10|0.01|N|O|1998-05-24|1998-06-21|1998-05-26|DELIVER IN PERSON|AIR| quickly unu| +72970|660366|35393|6|21|27852.93|0.03|0.08|N|O|1998-04-16|1998-07-04|1998-04-17|DELIVER IN PERSON|RAIL|arefully. final, regular platel| +72971|406186|31203|1|25|27304.00|0.09|0.03|A|F|1992-03-10|1992-04-21|1992-03-15|NONE|RAIL|refully bold frays wake fluf| +72971|762071|12072|2|28|31725.12|0.05|0.01|R|F|1992-03-21|1992-05-13|1992-03-22|NONE|FOB|otes. pinto beans haggle slyly | +72971|121988|9495|3|40|80399.20|0.02|0.05|A|F|1992-03-20|1992-04-30|1992-03-21|COLLECT COD|REG AIR|usual orbits! bold accounts detect| +72972|732705|45220|1|40|69506.80|0.04|0.03|A|F|1993-08-18|1993-07-23|1993-09-17|NONE|TRUCK|ar, express excuses cajole quickly afte| +72972|570771|45794|2|13|23942.75|0.04|0.01|R|F|1993-08-02|1993-09-17|1993-08-04|DELIVER IN PERSON|SHIP|packages. blithely bold excus| +72972|938464|26019|3|37|55589.54|0.10|0.07|A|F|1993-07-18|1993-08-01|1993-07-27|NONE|AIR|side of the slyly express | +72972|755822|5823|4|34|63844.86|0.07|0.02|A|F|1993-09-01|1993-09-10|1993-09-16|NONE|FOB|g theodolites boost slyly. furio| +72973|615149|2686|1|28|29795.08|0.09|0.06|A|F|1992-10-28|1992-12-04|1992-10-31|COLLECT COD|RAIL|along the special fo| +72973|807890|45439|2|4|7191.40|0.07|0.05|A|F|1992-11-05|1992-12-21|1992-11-15|COLLECT COD|RAIL|ependencies wake slyly bol| +72973|195220|7724|3|43|56554.46|0.03|0.00|A|F|1992-10-19|1992-12-10|1992-11-16|TAKE BACK RETURN|FOB|oss the blithely unu| +72974|526824|14355|1|9|16657.20|0.05|0.03|A|F|1994-05-18|1994-03-28|1994-05-21|DELIVER IN PERSON|MAIL|ges cajole| +72975|63376|25878|1|1|1339.37|0.07|0.06|A|F|1992-05-03|1992-03-06|1992-05-10|DELIVER IN PERSON|FOB| accounts wa| +72975|147890|10393|2|2|3875.78|0.03|0.06|R|F|1992-01-18|1992-04-16|1992-01-26|COLLECT COD|REG AIR|y regular | +73000|234265|21778|1|46|55165.50|0.01|0.05|N|O|1996-07-03|1996-07-09|1996-07-28|NONE|RAIL|symptotes. final reques| +73000|287202|37203|2|27|32108.13|0.09|0.06|N|O|1996-06-13|1996-08-24|1996-07-10|COLLECT COD|MAIL|thless theodolites| +73001|624104|36617|1|16|16449.12|0.06|0.02|N|O|1998-04-27|1998-05-20|1998-05-18|NONE|SHIP|he fluffily speci| +73001|305840|18347|2|40|73833.20|0.00|0.05|N|O|1998-07-10|1998-05-21|1998-07-27|DELIVER IN PERSON|MAIL|n dependencies haggle accordi| +73001|246098|8603|3|26|27146.08|0.10|0.06|N|O|1998-06-21|1998-06-21|1998-06-27|NONE|SHIP|quests after the blithely ironic de| +73002|678782|41296|1|16|28172.00|0.00|0.06|N|O|1998-08-19|1998-08-12|1998-09-04|TAKE BACK RETURN|FOB|ithely acros| +73002|288168|674|2|33|38152.95|0.09|0.04|N|O|1998-09-18|1998-07-29|1998-10-17|NONE|RAIL|equests. ide| +73002|224389|24390|3|6|7880.22|0.01|0.04|N|O|1998-06-15|1998-08-25|1998-06-20|COLLECT COD|AIR|nts integrate carefully. furiously final | +73002|293088|18099|4|17|18378.19|0.08|0.01|N|O|1998-09-28|1998-07-08|1998-10-24|NONE|MAIL| above the blithely unusual req| +73003|919975|7530|1|32|63837.76|0.03|0.07|N|O|1998-11-01|1998-10-19|1998-11-20|NONE|TRUCK| busily regular requests wake furio| +73003|5142|17643|2|5|5235.70|0.04|0.07|N|O|1998-07-26|1998-08-30|1998-07-28|NONE|MAIL|efully express accounts hag| +73003|414309|14310|3|16|19572.48|0.09|0.00|N|O|1998-08-24|1998-09-22|1998-09-17|NONE|REG AIR| quietly according to the quickly b| +73004|528699|41210|1|13|22459.71|0.03|0.03|N|O|1996-05-31|1996-05-14|1996-06-05|TAKE BACK RETURN|AIR|riously special courts wake| +73004|836810|49327|2|18|31441.86|0.08|0.07|N|O|1996-04-30|1996-04-25|1996-05-25|NONE|RAIL|ual instructions hag| +73004|250772|25783|3|31|53405.56|0.05|0.04|N|O|1996-04-02|1996-05-16|1996-04-07|COLLECT COD|MAIL|g ideas boost doggedly even ideas. blithe| +73004|714297|14298|4|35|45894.10|0.09|0.02|N|O|1996-05-12|1996-04-25|1996-05-23|NONE|SHIP| sleep among | +73004|182028|44532|5|33|36630.66|0.03|0.01|N|O|1996-02-26|1996-04-08|1996-03-14|TAKE BACK RETURN|SHIP|y special packages doze slyly even deposi| +73005|701526|14041|1|2|3054.98|0.07|0.04|R|F|1993-06-30|1993-06-13|1993-07-27|DELIVER IN PERSON|MAIL| courts. carefully silent | +73005|538342|13363|2|19|26226.08|0.03|0.04|A|F|1993-05-07|1993-05-28|1993-06-06|DELIVER IN PERSON|AIR|ajole about the even platelets. slyly | +73005|901030|38585|3|8|8247.92|0.10|0.07|A|F|1993-06-19|1993-05-04|1993-06-26|TAKE BACK RETURN|SHIP|o beans nag across the furio| +73005|605697|43234|4|1|1602.66|0.09|0.04|A|F|1993-06-02|1993-05-14|1993-06-17|TAKE BACK RETURN|REG AIR|lent accounts; ironic, reg| +73005|943832|18869|5|22|41267.38|0.01|0.05|A|F|1993-04-09|1993-05-08|1993-05-03|TAKE BACK RETURN|TRUCK| express, final requests. furious| +73005|984178|46698|6|12|15145.56|0.02|0.03|A|F|1993-07-10|1993-04-20|1993-07-22|NONE|AIR|ut the furiously r| +73005|68715|18716|7|22|37041.62|0.01|0.06|R|F|1993-06-17|1993-06-09|1993-07-01|TAKE BACK RETURN|REG AIR|fluffily silent acco| +73006|886605|24157|1|26|41380.56|0.02|0.03|N|O|1998-05-12|1998-05-12|1998-06-04|NONE|SHIP|l platelets in plac| +73006|162958|25462|2|17|34356.15|0.02|0.04|N|O|1998-04-06|1998-05-27|1998-04-30|COLLECT COD|TRUCK|thin asymptotes thrash pending, daring requ| +73006|829439|41956|3|23|31472.97|0.01|0.03|N|O|1998-04-27|1998-04-26|1998-05-17|TAKE BACK RETURN|REG AIR|s. closely permanen| +73006|373739|36247|4|8|14501.76|0.07|0.00|N|O|1998-07-11|1998-06-21|1998-07-20|NONE|RAIL|aggle among the furiously i| +73006|425983|1000|5|26|49632.96|0.09|0.02|N|O|1998-05-08|1998-06-17|1998-06-06|TAKE BACK RETURN|RAIL|kindle carefull| +73007|903758|16277|1|33|58136.43|0.09|0.02|N|O|1998-07-12|1998-08-29|1998-07-13|DELIVER IN PERSON|REG AIR|blithely final dependencies | +73007|447896|10405|2|35|64535.45|0.00|0.07|N|O|1998-07-07|1998-07-26|1998-07-29|DELIVER IN PERSON|RAIL|behind the accounts. carefully pending a| +73032|105588|5589|1|38|60556.04|0.01|0.03|A|F|1994-08-13|1994-06-05|1994-09-09|COLLECT COD|AIR|brave ideas boost. final b| +73032|602918|15431|2|6|10925.28|0.06|0.06|R|F|1994-08-15|1994-07-20|1994-08-18|NONE|RAIL|refully special requests. ironic instru| +73032|231420|6429|3|23|31082.43|0.02|0.07|A|F|1994-07-24|1994-05-26|1994-07-30|NONE|MAIL|ideas cajole bold| +73033|562636|170|1|24|40766.64|0.01|0.03|R|F|1993-12-21|1994-02-01|1993-12-30|NONE|REG AIR|ven courts nag quietly. f| +73033|206714|44227|2|32|51862.40|0.08|0.05|A|F|1994-02-22|1993-12-30|1994-02-24|COLLECT COD|REG AIR|e deposits. requests sleep | +73033|228936|28937|3|4|7459.68|0.09|0.06|A|F|1994-03-14|1993-12-27|1994-04-13|NONE|SHIP|quests. bold | +73033|717067|29582|4|27|29268.81|0.10|0.05|A|F|1994-02-19|1994-01-29|1994-03-13|COLLECT COD|TRUCK|riously bold | +73033|736842|49357|5|30|56364.30|0.09|0.08|R|F|1993-11-15|1993-12-28|1993-11-16|COLLECT COD|FOB| furiously above the regular theodolit| +73033|88566|13569|6|5|7772.80|0.09|0.05|A|F|1994-01-25|1993-12-27|1994-02-02|TAKE BACK RETURN|FOB|packages sleep blithely| +73034|830667|43184|1|7|11183.34|0.01|0.08|N|O|1998-03-27|1998-04-17|1998-03-30|COLLECT COD|FOB|slyly special d| +73034|8330|33331|2|36|44579.88|0.00|0.08|N|O|1998-02-12|1998-04-01|1998-03-09|DELIVER IN PERSON|MAIL|en platelets haggle fluffil| +73034|986699|49219|3|35|62497.75|0.10|0.08|N|O|1998-05-14|1998-03-30|1998-05-18|DELIVER IN PERSON|SHIP|its. pending requests are caref| +73034|435286|10303|4|6|7327.56|0.04|0.06|N|O|1998-04-25|1998-03-22|1998-05-19|TAKE BACK RETURN|SHIP|gle furiously even requests. ev| +73034|842076|17109|5|43|43775.29|0.09|0.03|N|O|1998-04-07|1998-03-26|1998-04-30|TAKE BACK RETURN|SHIP|as-- slyly special p| +73035|120462|20463|1|22|32614.12|0.09|0.01|N|O|1996-08-04|1996-09-08|1996-08-23|TAKE BACK RETURN|AIR|g blithely abo| +73035|597884|47885|2|50|99093.00|0.02|0.02|N|O|1996-09-13|1996-10-04|1996-09-22|DELIVER IN PERSON|REG AIR|final platelets| +73035|628313|40826|3|11|13654.08|0.10|0.03|N|O|1996-10-03|1996-08-30|1996-10-21|DELIVER IN PERSON|AIR|he ironic excuses.| +73036|225715|724|1|34|55783.80|0.05|0.02|N|O|1998-05-07|1998-05-23|1998-05-23|TAKE BACK RETURN|SHIP|s nag slyly according to th| +73036|576123|38635|2|6|7194.60|0.03|0.01|N|O|1998-06-24|1998-06-02|1998-07-06|NONE|TRUCK|ironic courts. pending theodolites are | +73037|622435|9972|1|49|66512.60|0.00|0.07|R|F|1993-04-23|1993-05-10|1993-05-05|NONE|AIR| instructions against the blithel| +73037|251523|39039|2|5|7372.55|0.02|0.01|A|F|1993-04-08|1993-04-21|1993-04-25|DELIVER IN PERSON|AIR|ers detect slyly despite the blithely | +73038|64991|2495|1|40|78239.60|0.07|0.00|N|O|1995-10-18|1995-10-10|1995-11-15|COLLECT COD|RAIL|ter the slyly even requests sleep accordin| +73038|291593|41594|2|16|25353.28|0.06|0.03|N|O|1995-11-01|1995-09-29|1995-11-19|DELIVER IN PERSON|RAIL|kly into the quickly express accounts. flu| +73038|800287|25320|3|16|18995.84|0.09|0.06|N|O|1995-12-01|1995-10-03|1995-12-18|DELIVER IN PERSON|REG AIR|quickly regular accounts. un| +73038|419920|19921|4|14|25758.60|0.09|0.06|N|O|1995-10-20|1995-11-12|1995-10-31|COLLECT COD|SHIP|wake furiously at the regular requ| +73038|588670|13693|5|45|79139.25|0.09|0.08|N|O|1995-10-03|1995-11-11|1995-11-02|NONE|AIR|g excuses alongside of the carefull| +73038|773548|36064|6|9|14593.59|0.01|0.01|N|O|1995-11-18|1995-11-15|1995-12-07|NONE|MAIL| carefully around the slyly unusu| +73038|19106|44107|7|46|47154.60|0.10|0.03|N|O|1995-10-03|1995-10-12|1995-10-06|DELIVER IN PERSON|SHIP|. foxes cajole slyly against the ironic, sp| +73039|112871|37876|1|6|11303.22|0.05|0.06|N|O|1996-07-09|1996-09-23|1996-08-05|TAKE BACK RETURN|AIR| carefully ironic accounts are slyly| +73039|16239|28740|2|38|43898.74|0.10|0.05|N|O|1996-10-31|1996-09-09|1996-11-01|NONE|FOB|efully final pinto beans | +73039|927982|27983|3|44|88437.36|0.03|0.07|N|O|1996-10-31|1996-09-20|1996-11-23|COLLECT COD|REG AIR|totes cajole | +73064|897003|47004|1|40|39998.40|0.00|0.05|A|F|1994-01-20|1994-01-19|1994-01-23|NONE|MAIL|pecial deposits. bravely regular d| +73064|926582|14137|2|4|6434.16|0.03|0.04|A|F|1993-12-23|1994-01-19|1994-01-10|NONE|REG AIR|d furiously unus| +73065|982378|7417|1|19|27746.27|0.02|0.06|A|F|1994-01-11|1993-12-27|1994-02-05|DELIVER IN PERSON|RAIL|ular ideas affix fluffil| +73065|819767|32284|2|39|65782.08|0.10|0.08|A|F|1993-12-19|1993-12-12|1994-01-12|DELIVER IN PERSON|MAIL|fully silent, fin| +73066|860021|22539|1|16|15695.68|0.08|0.02|N|O|1995-10-21|1995-08-11|1995-11-08|COLLECT COD|SHIP| theodolites. furiously enticing excu| +73066|366549|4071|2|20|32310.60|0.01|0.00|N|O|1995-11-09|1995-10-04|1995-12-05|COLLECT COD|SHIP|te fluffily regul| +73066|578014|28015|3|10|10919.90|0.03|0.04|N|O|1995-09-29|1995-09-08|1995-10-16|TAKE BACK RETURN|RAIL| beans. quickly | +73066|666313|3853|4|43|55009.04|0.00|0.01|N|O|1995-07-30|1995-09-10|1995-08-18|TAKE BACK RETURN|SHIP|l accounts al| +73067|955848|18368|1|26|49498.80|0.00|0.04|A|F|1992-04-11|1992-02-14|1992-05-11|TAKE BACK RETURN|SHIP|arefully even account| +73067|924540|49577|2|48|75096.00|0.02|0.00|A|F|1992-04-10|1992-02-14|1992-05-06|COLLECT COD|SHIP|dencies. even, | +73068|958534|46092|1|35|55737.15|0.04|0.05|A|F|1993-12-31|1994-01-27|1994-01-06|DELIVER IN PERSON|AIR|s integrate slyly. ironic, final idea| +73068|78746|28747|2|28|48292.72|0.08|0.00|R|F|1994-02-27|1994-02-04|1994-03-12|COLLECT COD|RAIL|pendencies | +73068|482087|44597|3|42|44900.52|0.00|0.04|R|F|1994-04-02|1994-03-07|1994-04-29|TAKE BACK RETURN|MAIL|s. unusual instructions haggle qui| +73068|432845|32846|4|29|51556.78|0.00|0.06|R|F|1994-01-02|1994-02-14|1994-01-07|NONE|RAIL| slyly ironic depos| +73068|812453|24970|5|22|30039.02|0.03|0.03|R|F|1994-03-12|1994-01-26|1994-03-27|TAKE BACK RETURN|FOB|uctions. unusual, bold ideas according to| +73069|683605|8632|1|32|50834.24|0.06|0.07|A|F|1993-09-24|1993-09-14|1993-10-11|TAKE BACK RETURN|FOB|arefully final deposits haggle quickly flu| +73069|347259|47260|2|31|40493.44|0.05|0.02|R|F|1993-10-17|1993-10-20|1993-11-12|DELIVER IN PERSON|RAIL|ans wake. b| +73069|378376|28377|3|43|62537.48|0.08|0.01|R|F|1993-10-26|1993-10-03|1993-11-21|TAKE BACK RETURN|SHIP|onic excuses above the quickly reg| +73069|357204|44726|4|23|29007.37|0.10|0.07|A|F|1993-10-28|1993-11-04|1993-10-30|COLLECT COD|MAIL|heodolites. r| +73069|514522|27033|5|35|53777.50|0.07|0.05|A|F|1993-10-08|1993-11-01|1993-10-13|COLLECT COD|REG AIR|sleep quickly after the carefull| +73069|564962|2496|6|35|70942.90|0.02|0.08|R|F|1993-09-06|1993-09-30|1993-10-01|COLLECT COD|MAIL|nding, bol| +73070|337005|12018|1|34|35427.66|0.06|0.04|A|F|1994-01-03|1993-11-18|1994-01-19|DELIVER IN PERSON|TRUCK|ular theodolites are. final accou| +73070|36802|11803|2|49|85201.20|0.03|0.03|R|F|1993-12-11|1993-10-24|1993-12-20|COLLECT COD|SHIP|as. blithely even ideas alongside of| +73070|525022|43|3|49|51303.00|0.02|0.03|A|F|1994-01-11|1993-12-14|1994-01-25|NONE|TRUCK|ins. slyly ironic packages| +73070|44040|19041|4|1|984.04|0.01|0.00|A|F|1993-10-11|1993-11-30|1993-11-08|COLLECT COD|AIR|n deposits. ironic deposi| +73070|169075|31579|5|23|26313.61|0.02|0.03|R|F|1993-10-16|1993-11-28|1993-11-04|NONE|SHIP| quietly pending requests cajole bl| +73070|628330|40843|6|32|40265.60|0.02|0.03|A|F|1993-11-19|1993-10-27|1993-12-08|DELIVER IN PERSON|TRUCK| bold sauter| +73070|328732|16251|7|37|65146.64|0.05|0.08|R|F|1994-01-15|1993-11-15|1994-02-14|DELIVER IN PERSON|FOB| dependencies nod special, even foxes.| +73071|996696|21735|1|11|19719.15|0.10|0.06|N|O|1996-03-28|1996-05-15|1996-04-18|NONE|SHIP|ar packages. quic| +73071|453675|3676|2|42|68403.30|0.05|0.00|N|O|1996-03-22|1996-05-07|1996-04-05|DELIVER IN PERSON|FOB|ackages ca| +73096|834003|34004|1|11|10306.56|0.05|0.00|N|O|1998-04-09|1998-05-16|1998-04-22|COLLECT COD|TRUCK|refully ironic| +73096|79029|4032|2|47|47376.94|0.01|0.08|N|O|1998-04-13|1998-06-21|1998-04-28|COLLECT COD|TRUCK|regular, unusu| +73096|239964|14973|3|40|76158.00|0.03|0.07|N|O|1998-05-11|1998-06-29|1998-06-05|DELIVER IN PERSON|AIR|usly close pac| +73097|322791|47804|1|15|27206.70|0.02|0.00|R|F|1992-11-14|1992-12-11|1992-11-28|TAKE BACK RETURN|MAIL|nic excuses. dependencies boos| +73097|133750|21257|2|25|44593.75|0.01|0.01|A|F|1992-12-14|1993-01-11|1992-12-31|DELIVER IN PERSON|SHIP|ckly alongside of the regular asy| +73097|926837|1874|3|41|76415.39|0.06|0.05|A|F|1993-01-12|1993-01-02|1993-02-06|NONE|SHIP|l, unusual the| +73097|341908|41909|4|8|15599.12|0.00|0.04|A|F|1992-12-04|1993-02-04|1992-12-28|TAKE BACK RETURN|SHIP|in alongside of the express decoys. fur| +73097|432059|19584|5|36|35677.08|0.00|0.06|A|F|1993-02-28|1992-12-06|1993-03-07|DELIVER IN PERSON|SHIP|ake pending deposits. even dependen| +73098|268902|6418|1|49|91673.61|0.08|0.06|R|F|1992-11-06|1992-11-19|1992-11-28|TAKE BACK RETURN|REG AIR|kages toward the quickly p| +73098|425383|25384|2|41|53642.76|0.08|0.04|R|F|1992-12-06|1992-10-26|1992-12-21|COLLECT COD|SHIP|wake from the car| +73098|403353|15862|3|19|23870.27|0.08|0.04|A|F|1992-10-31|1992-09-28|1992-11-24|DELIVER IN PERSON|FOB|platelets nag. slyly| +73098|152874|27881|4|44|84782.28|0.04|0.07|R|F|1992-11-10|1992-10-10|1992-12-01|COLLECT COD|MAIL|sleep alway| +73098|342987|5494|5|35|71048.95|0.07|0.05|R|F|1992-09-24|1992-10-28|1992-09-29|COLLECT COD|TRUCK| requests.| +73099|331308|31309|1|50|66964.50|0.08|0.05|A|F|1995-01-05|1995-02-08|1995-01-13|DELIVER IN PERSON|MAIL|pecial realms wake e| +73100|958076|20596|1|3|3402.09|0.02|0.07|R|F|1992-09-12|1992-08-29|1992-09-29|COLLECT COD|AIR|s integrate ruth| +73101|377144|39652|1|29|35412.77|0.00|0.06|N|O|1996-11-11|1996-11-03|1996-12-07|NONE|RAIL|ending asymptotes. regular de| +73101|657764|20278|2|44|75756.12|0.05|0.06|N|O|1996-09-25|1996-10-02|1996-10-16|NONE|TRUCK|tegrate carefully bold | +73101|31694|6695|3|33|53647.77|0.03|0.03|N|O|1996-08-30|1996-10-22|1996-09-03|DELIVER IN PERSON|RAIL|ges. carefully bold asymptotes haggle q| +73101|673845|36359|4|8|14550.48|0.07|0.04|N|O|1996-10-24|1996-10-18|1996-11-17|COLLECT COD|FOB|pecial dependencies. slyly regular | +73102|371586|46601|1|17|28178.69|0.07|0.00|N|O|1997-12-03|1998-01-15|1997-12-19|COLLECT COD|MAIL|ve deposits cajole slyly after the depo| +73102|238331|25844|2|47|59658.04|0.05|0.04|N|O|1998-01-26|1998-01-08|1998-02-10|DELIVER IN PERSON|AIR|. furiousl| +73102|618137|30650|3|35|36928.50|0.09|0.04|N|O|1998-01-31|1998-01-01|1998-02-12|DELIVER IN PERSON|AIR|carefully packages. carefully furious| +73102|12280|37281|4|19|22653.32|0.02|0.06|N|O|1997-12-17|1998-01-02|1998-01-10|DELIVER IN PERSON|RAIL|quickly sil| +73102|378619|16141|5|50|84880.00|0.09|0.01|N|O|1997-11-24|1997-12-25|1997-12-14|NONE|TRUCK|equests wake blithely | +73103|451276|13786|1|9|11045.25|0.02|0.07|R|F|1994-11-20|1994-10-19|1994-11-30|TAKE BACK RETURN|REG AIR|ar foxes haggle along the sl| +73103|582026|7049|2|30|33240.00|0.08|0.01|A|F|1994-12-01|1994-10-31|1994-12-04|DELIVER IN PERSON|MAIL| slyly regu| +73103|107757|32762|3|18|31765.50|0.00|0.07|R|F|1994-12-02|1994-10-21|1994-12-24|DELIVER IN PERSON|AIR|onic deposits use| +73103|63961|26463|4|16|30799.36|0.03|0.04|R|F|1994-11-18|1994-11-30|1994-11-22|NONE|AIR|sly: blithely final instructi| +73103|981167|31168|5|15|18721.80|0.08|0.00|A|F|1994-12-10|1994-10-21|1994-12-15|DELIVER IN PERSON|AIR|nic requests sleep. bold the| +73103|468170|18171|6|16|18210.40|0.05|0.04|R|F|1994-10-07|1994-10-27|1994-10-24|COLLECT COD|SHIP| requests. special, express excuses in| +73128|557681|7682|1|17|29557.22|0.01|0.00|R|F|1993-01-14|1993-01-28|1993-01-30|COLLECT COD|SHIP|haggle. permanen| +73128|935702|48221|2|23|39966.18|0.07|0.03|A|F|1993-01-08|1992-12-29|1993-02-05|DELIVER IN PERSON|FOB|ess packages cajole| +73129|476023|38533|1|18|17982.00|0.05|0.00|R|F|1992-04-26|1992-04-25|1992-05-14|DELIVER IN PERSON|SHIP|furiously according to the blithely ironi| +73130|744300|6815|1|41|55115.07|0.10|0.04|A|F|1994-05-12|1994-07-01|1994-06-04|DELIVER IN PERSON|MAIL|y pending deposits are. pending, even foxes| +73131|537192|24723|1|21|25812.57|0.10|0.00|R|F|1995-04-30|1995-03-18|1995-05-19|COLLECT COD|TRUCK|e fluffily accord| +73131|584377|34378|2|11|16074.85|0.02|0.03|N|F|1995-06-11|1995-04-07|1995-06-28|TAKE BACK RETURN|FOB|furiously express requests. f| +73132|993448|43449|1|14|21579.60|0.04|0.01|N|O|1998-10-26|1998-10-07|1998-11-21|NONE|AIR|quests wake ironic ideas. slyly quiet p| +73133|293298|18309|1|19|24534.32|0.04|0.06|R|F|1994-02-06|1994-03-01|1994-02-28|TAKE BACK RETURN|MAIL|elets. slyly even ideas across the quickl| +73133|444180|44181|2|46|51711.36|0.04|0.00|A|F|1994-03-30|1994-03-28|1994-04-11|NONE|TRUCK|ar requests use according to t| +73133|333039|20558|3|36|38592.72|0.10|0.01|A|F|1994-01-24|1994-01-29|1994-01-26|NONE|REG AIR|arefully ironi| +73133|375084|12606|4|48|55635.36|0.00|0.05|A|F|1994-03-20|1994-02-15|1994-03-27|DELIVER IN PERSON|AIR|accounts play blithely | +73133|23028|35529|5|26|24726.52|0.02|0.06|R|F|1994-03-21|1994-03-28|1994-04-14|DELIVER IN PERSON|SHIP|. blithely even| +73133|19423|19424|6|41|55039.22|0.08|0.02|R|F|1994-02-18|1994-01-31|1994-03-09|TAKE BACK RETURN|MAIL|sleep carefully after th| +73133|437056|12073|7|32|31776.96|0.00|0.03|A|F|1994-01-03|1994-02-20|1994-01-12|NONE|SHIP| express grouches | +73134|595060|7572|1|43|49666.72|0.01|0.06|A|F|1995-01-29|1995-02-16|1995-02-05|COLLECT COD|TRUCK| requests. furiously i| +73134|161407|48917|2|6|8810.40|0.02|0.02|R|F|1995-03-15|1995-04-04|1995-03-30|COLLECT COD|FOB|o the blithely unusual a| +73135|119916|32419|1|38|73564.58|0.05|0.00|N|O|1995-12-21|1995-12-12|1996-01-16|TAKE BACK RETURN|AIR|even pinto beans. special deposi| +73135|416324|16325|2|3|3720.90|0.08|0.04|N|O|1995-12-09|1995-12-23|1995-12-23|DELIVER IN PERSON|FOB|lphins since the ideas lose careful| +73135|151389|1390|3|48|69138.24|0.10|0.03|N|O|1995-10-20|1995-12-24|1995-11-04|NONE|AIR|ose along the furiously special packages| +73135|379069|41577|4|50|57402.50|0.01|0.07|N|O|1995-12-15|1995-12-02|1996-01-04|TAKE BACK RETURN|AIR|kly. carefully si| +73135|996917|21956|5|37|74513.19|0.01|0.04|N|O|1996-02-02|1995-12-24|1996-02-20|NONE|RAIL|ng the quickly bold excuses.| +73160|504890|29911|1|16|30317.92|0.04|0.02|R|F|1995-01-22|1995-02-21|1995-02-19|DELIVER IN PERSON|TRUCK|es. unusual packages grow. unusual deposits| +73161|108965|46472|1|2|3947.92|0.02|0.06|A|F|1992-04-29|1992-05-15|1992-05-03|DELIVER IN PERSON|REG AIR|es cajole blithely even accounts. careful| +73161|360139|22647|2|2|2398.24|0.08|0.08|A|F|1992-04-10|1992-06-22|1992-04-16|NONE|TRUCK| asymptotes. even platelets wake furi| +73161|847923|35472|3|32|59868.16|0.07|0.00|R|F|1992-04-08|1992-06-03|1992-05-07|COLLECT COD|SHIP| busy packages. slyly final depos| +73162|471654|21655|1|38|61773.94|0.02|0.05|N|O|1996-08-04|1996-08-17|1996-08-15|COLLECT COD|REG AIR|tly final foxe| +73162|76679|39181|2|50|82783.50|0.04|0.03|N|O|1996-09-05|1996-08-06|1996-10-02|NONE|TRUCK|ans affix furiously carefully regu| +73162|728883|16426|3|43|82209.55|0.08|0.00|N|O|1996-07-30|1996-08-25|1996-08-26|COLLECT COD|RAIL|detect carefully Ti| +73162|333075|8088|4|23|25485.38|0.01|0.05|N|O|1996-07-23|1996-07-26|1996-07-28|TAKE BACK RETURN|SHIP| dependencies along the even | +73162|977902|40422|5|25|49496.50|0.05|0.03|N|O|1996-09-23|1996-08-31|1996-09-30|COLLECT COD|SHIP|among the furiously ironic asymptot| +73162|589622|2134|6|47|80445.20|0.00|0.01|N|O|1996-07-13|1996-08-08|1996-07-15|NONE|REG AIR|heodolites boost quickly. carefully| +73163|504817|29838|1|30|54653.70|0.07|0.06|N|O|1995-10-20|1995-08-06|1995-10-22|TAKE BACK RETURN|FOB|pinto beans nag regularly abov| +73163|458754|46282|2|17|29116.41|0.05|0.08|N|O|1995-08-10|1995-09-18|1995-09-05|COLLECT COD|REG AIR|gle slyly. slyly un| +73164|281529|44035|1|41|61930.91|0.06|0.03|N|O|1996-09-15|1996-10-12|1996-09-21|NONE|REG AIR|xes wake fluffily slyly express foxes| +73164|646558|34095|2|8|12036.16|0.09|0.06|N|O|1996-09-15|1996-09-24|1996-10-09|TAKE BACK RETURN|FOB|as. accounts against th| +73164|691143|16170|3|46|52169.06|0.08|0.08|N|O|1996-09-10|1996-09-25|1996-10-04|DELIVER IN PERSON|SHIP|gularly. final requests | +73165|236254|23767|1|28|33326.72|0.06|0.03|R|F|1993-03-25|1993-03-13|1993-04-20|COLLECT COD|SHIP| deposits nag carefully express packages. | +73165|711974|24489|2|36|71493.84|0.09|0.01|R|F|1993-04-19|1993-03-07|1993-04-23|COLLECT COD|SHIP|ideas sleep slyly among the | +73165|137978|37979|3|45|90718.65|0.04|0.03|R|F|1993-02-06|1993-03-14|1993-02-07|COLLECT COD|RAIL|gular deposits. fluffily unusual t| +73165|993651|6171|4|20|34892.20|0.08|0.07|R|F|1993-03-24|1993-03-18|1993-03-25|NONE|MAIL|e pending deposits. fluffily specia| +73165|282572|7583|5|40|62182.40|0.03|0.07|A|F|1993-03-17|1993-03-03|1993-04-05|NONE|AIR|symptotes cajole carefull| +73165|179089|41593|6|38|44387.04|0.00|0.07|R|F|1993-01-20|1993-02-24|1993-01-23|TAKE BACK RETURN|MAIL|y. fluffily unu| +73165|934150|9187|7|40|47364.40|0.10|0.06|R|F|1993-04-16|1993-02-12|1993-05-02|TAKE BACK RETURN|RAIL|ke idly. pack| +73166|253542|28553|1|40|59821.20|0.02|0.04|R|F|1992-10-12|1992-09-11|1992-11-10|DELIVER IN PERSON|SHIP| the blithely | +73166|271129|8645|2|12|13201.32|0.01|0.00|R|F|1992-10-13|1992-09-23|1992-10-18|TAKE BACK RETURN|REG AIR|ackages haggle about the do| +73167|868130|18131|1|11|12078.99|0.01|0.07|A|F|1992-09-28|1992-09-15|1992-10-23|NONE|FOB| ideas. carefully express instructio| +73167|651038|1039|2|13|12857.00|0.08|0.05|A|F|1992-11-15|1992-11-06|1992-12-05|NONE|SHIP|ording to the blithely si| +73167|983382|45902|3|47|68870.98|0.07|0.04|A|F|1992-08-24|1992-09-08|1992-09-04|TAKE BACK RETURN|SHIP|uriously silent requests af| +73192|427343|2360|1|31|39379.92|0.05|0.01|R|F|1994-05-09|1994-02-28|1994-05-22|NONE|FOB| around the b| +73192|350591|13099|2|40|65663.20|0.05|0.00|R|F|1994-02-08|1994-03-26|1994-03-10|DELIVER IN PERSON|SHIP|asymptotes cajole fluffily. furi| +73192|381879|44387|3|37|72551.82|0.10|0.02|R|F|1994-04-24|1994-04-06|1994-05-16|NONE|REG AIR|ajole above the furiously| +73192|227020|27021|4|48|45456.48|0.07|0.03|A|F|1994-04-09|1994-04-12|1994-05-06|TAKE BACK RETURN|REG AIR|the slyly special instruct| +73192|520793|33304|5|16|29020.32|0.02|0.04|A|F|1994-04-20|1994-03-25|1994-05-15|COLLECT COD|MAIL|ngly regular packages. ironic,| +73193|439776|27301|1|26|44609.50|0.04|0.03|R|F|1994-09-29|1994-08-07|1994-10-06|TAKE BACK RETURN|TRUCK|ts. quickly pending requests cajole ac| +73193|314056|26563|2|19|20330.76|0.09|0.06|A|F|1994-10-15|1994-09-01|1994-11-05|TAKE BACK RETURN|AIR|nding instructions.| +73193|328429|28430|3|12|17488.92|0.00|0.00|R|F|1994-08-13|1994-09-14|1994-08-16|NONE|AIR|ept the quickly regular notorni| +73194|117312|4819|1|5|6646.55|0.07|0.05|A|F|1993-09-30|1993-09-20|1993-10-02|DELIVER IN PERSON|SHIP|its. furiously even requests use. qu| +73194|660721|23235|2|46|77357.74|0.04|0.01|A|F|1993-09-29|1993-09-25|1993-10-27|DELIVER IN PERSON|AIR|gular accounts boost bold, even | +73195|840915|28464|1|30|55676.10|0.04|0.03|N|O|1997-03-13|1997-02-01|1997-03-21|TAKE BACK RETURN|FOB|ld pinto beans are| +73195|253326|40842|2|22|28144.82|0.08|0.06|N|O|1997-02-06|1997-02-13|1997-02-10|TAKE BACK RETURN|REG AIR|ly unusual theodolites| +73195|642574|17599|3|37|56111.98|0.01|0.00|N|O|1997-01-18|1997-01-14|1997-02-15|DELIVER IN PERSON|SHIP|ithely ironic instructio| +73195|736092|36093|4|5|5640.30|0.05|0.06|N|O|1997-03-17|1996-12-24|1997-03-20|TAKE BACK RETURN|REG AIR|ly. carefully unusua| +73195|495336|32864|5|24|31951.44|0.05|0.05|N|O|1996-12-02|1997-01-27|1996-12-06|DELIVER IN PERSON|FOB|kly express| +73195|95954|8456|6|5|9749.75|0.03|0.08|N|O|1997-02-14|1997-01-15|1997-03-15|DELIVER IN PERSON|MAIL|y after the| +73195|685645|48159|7|35|57071.35|0.02|0.05|N|O|1996-11-25|1996-12-31|1996-12-04|DELIVER IN PERSON|FOB|riously pending foxes| +73196|630005|42518|1|20|18699.40|0.09|0.00|N|O|1997-02-01|1997-01-28|1997-02-24|TAKE BACK RETURN|SHIP|nst the deposits. furiously final req| +73196|478625|3644|2|34|54522.40|0.07|0.05|N|O|1996-12-03|1997-01-29|1996-12-28|NONE|RAIL|ng platelets wake even, unusual in| +73196|244627|44628|3|10|15716.10|0.07|0.05|N|O|1997-03-12|1997-01-27|1997-03-29|NONE|SHIP|the ironic, pending accounts. pend| +73196|432152|32153|4|1|1084.13|0.05|0.03|N|O|1997-01-09|1997-01-30|1997-01-30|COLLECT COD|RAIL|he foxes. f| +73196|163231|25735|5|7|9059.61|0.00|0.02|N|O|1996-12-16|1997-01-01|1997-01-15|NONE|RAIL|onic requests s| +73196|410917|23426|6|42|76771.38|0.09|0.07|N|O|1997-02-15|1997-02-10|1997-03-16|NONE|RAIL|yly ironic deposits. blithely qui| +73197|225543|25544|1|37|54335.61|0.03|0.03|R|F|1992-11-30|1992-12-28|1992-12-29|TAKE BACK RETURN|RAIL| furiously final theodolite| +73197|690595|15622|2|6|9513.36|0.04|0.05|A|F|1993-01-11|1992-12-21|1993-01-18|COLLECT COD|REG AIR|structions| +73197|825812|845|3|6|10426.62|0.01|0.03|A|F|1993-01-28|1992-12-21|1993-02-06|DELIVER IN PERSON|RAIL|endencies about the final requests nag i| +73197|421842|9367|4|8|14110.56|0.05|0.03|R|F|1992-12-12|1992-12-29|1993-01-11|NONE|TRUCK|ronic packages haggle. even, regula| +73198|601749|39286|1|27|44569.17|0.08|0.05|A|F|1994-05-17|1994-06-21|1994-05-27|NONE|RAIL|egular pinto beans cajole busily | +73198|582467|7490|2|7|10846.08|0.09|0.01|A|F|1994-07-26|1994-05-13|1994-08-01|COLLECT COD|REG AIR|ites accor| +73198|507879|7880|3|19|35850.15|0.10|0.08|A|F|1994-08-04|1994-05-20|1994-08-20|DELIVER IN PERSON|TRUCK|beans. regular, pending platelets affix. | +73199|569844|7378|1|7|13396.74|0.00|0.02|A|F|1993-10-05|1993-11-20|1993-10-22|NONE|RAIL|carefully ironic foxes. quickly r| +73199|360984|10985|2|15|30674.55|0.01|0.02|A|F|1993-09-03|1993-11-07|1993-09-25|DELIVER IN PERSON|SHIP|ic sheaves are quickly against th| +73199|46906|46907|3|34|62998.60|0.06|0.03|R|F|1993-11-20|1993-10-07|1993-12-17|TAKE BACK RETURN|FOB|express packages boost carefully. | +73199|340057|27576|4|11|12067.44|0.01|0.07|A|F|1993-11-10|1993-11-22|1993-11-26|COLLECT COD|SHIP|across the quickly pending accounts ar| +73199|321302|21303|5|48|63517.92|0.01|0.00|R|F|1993-11-18|1993-11-17|1993-11-23|DELIVER IN PERSON|SHIP| epitaphs. carefully regular ideas c| +73199|107025|44532|6|27|27864.54|0.09|0.00|R|F|1993-10-10|1993-11-26|1993-11-03|DELIVER IN PERSON|AIR|cajole regular, special inst| +73224|956490|6491|1|3|4639.35|0.09|0.07|R|F|1993-10-23|1993-12-09|1993-11-02|COLLECT COD|FOB|s. boldly special dependencies | +73224|724601|37116|2|17|27634.69|0.03|0.04|R|F|1994-02-02|1993-12-26|1994-02-23|TAKE BACK RETURN|REG AIR|s sleep blithel| +73224|362597|37612|3|1|1659.58|0.05|0.07|R|F|1994-01-28|1993-12-04|1994-02-13|NONE|FOB|ully unusual instructions haggle reques| +73225|553036|40570|1|14|15246.14|0.04|0.00|N|O|1997-05-20|1997-04-28|1997-06-14|NONE|FOB|quickly pending acc| +73225|875707|25708|2|36|60575.76|0.00|0.07|N|O|1997-06-06|1997-04-25|1997-06-15|COLLECT COD|AIR|ependencies. furiously pending depen| +73225|991693|4213|3|14|24985.10|0.07|0.08|N|O|1997-06-10|1997-04-25|1997-06-28|TAKE BACK RETURN|FOB|nt, furious package| +73225|372141|34649|4|30|36393.90|0.05|0.00|N|O|1997-06-06|1997-04-30|1997-06-27|TAKE BACK RETURN|SHIP|l deposits nag furiously slyly f| +73225|572301|47324|5|32|43944.96|0.06|0.03|N|O|1997-04-01|1997-05-16|1997-04-15|DELIVER IN PERSON|MAIL|uctions sleep fluffily. furiously i| +73225|661948|36975|6|11|21009.01|0.07|0.08|N|O|1997-07-11|1997-05-13|1997-07-21|NONE|AIR|press sentiments play fluffily alon| +73225|343295|18308|7|33|44163.24|0.02|0.02|N|O|1997-04-25|1997-05-28|1997-05-15|NONE|TRUCK|nal pains are against the e| +73226|744105|6620|1|8|9192.56|0.02|0.07|N|O|1997-03-21|1996-12-26|1997-04-19|DELIVER IN PERSON|AIR|metimes accounts.| +73226|158232|45742|2|49|63221.27|0.04|0.08|N|O|1997-03-06|1997-01-07|1997-03-24|DELIVER IN PERSON|FOB|xcuses serve slyly. qui| +73226|397770|35292|3|43|80313.68|0.06|0.02|N|O|1996-11-25|1997-02-07|1996-12-24|NONE|MAIL|ly final r| +73226|318956|6475|4|3|5924.82|0.03|0.00|N|O|1997-02-18|1997-02-09|1997-03-01|NONE|AIR| ironic instructions sle| +73226|688170|25710|5|28|32427.92|0.01|0.01|N|O|1997-03-02|1997-02-22|1997-03-10|TAKE BACK RETURN|FOB|tegrate furiously fluffily ironic accounts| +73226|59546|9547|6|10|15055.40|0.05|0.01|N|O|1997-01-30|1997-01-09|1997-02-20|DELIVER IN PERSON|RAIL|nst the special | +73226|787140|24686|7|8|9816.88|0.05|0.00|N|O|1997-01-10|1997-02-19|1997-01-24|NONE|MAIL|s are against the re| +73227|447346|9855|1|50|64666.00|0.10|0.02|R|F|1994-12-31|1995-01-01|1995-01-17|DELIVER IN PERSON|FOB| wake deposits. slyl| +73227|535406|47917|2|34|49006.92|0.08|0.07|R|F|1994-11-24|1995-01-03|1994-12-06|COLLECT COD|AIR|ymptotes sleep slyly ideas. slyly express f| +73227|555146|30169|3|46|55251.52|0.00|0.01|R|F|1994-12-31|1994-12-28|1995-01-02|COLLECT COD|REG AIR| attainments. unusual | +73228|700072|73|1|8|8576.32|0.08|0.08|N|O|1996-07-21|1996-06-18|1996-08-14|DELIVER IN PERSON|FOB| the bold theodolites. ca| +73229|919292|44329|1|49|64251.25|0.02|0.04|N|O|1998-03-01|1998-04-03|1998-03-04|TAKE BACK RETURN|AIR|y final hockey players x-ray quickly regu| +73229|525251|25252|2|11|14038.53|0.03|0.05|N|O|1998-05-07|1998-04-18|1998-06-06|DELIVER IN PERSON|SHIP|c deposits sleep slyly above the pac| +73229|892829|17864|3|31|56475.18|0.07|0.01|N|O|1998-04-24|1998-05-13|1998-05-10|DELIVER IN PERSON|MAIL| final accounts after the a| +73229|770225|7771|4|20|25903.80|0.00|0.05|N|O|1998-03-08|1998-04-04|1998-03-22|DELIVER IN PERSON|RAIL|c requests. unusual requests haggle | +73230|450654|25673|1|6|9627.78|0.10|0.05|N|O|1997-12-29|1998-01-23|1998-01-19|COLLECT COD|AIR|ve the fluffily i| +73230|135083|10088|2|37|41368.96|0.02|0.07|N|O|1998-01-03|1998-03-02|1998-01-15|TAKE BACK RETURN|TRUCK|g accounts boost busily carefully fi| +73230|338170|25689|3|30|36244.80|0.05|0.07|N|O|1998-03-30|1998-01-19|1998-04-09|TAKE BACK RETURN|FOB| ideas are slyly pinto | +73230|611287|36312|4|3|3594.75|0.01|0.07|N|O|1998-02-27|1998-02-28|1998-03-08|COLLECT COD|FOB|uests integrate sly| +73230|897721|47722|5|40|68747.20|0.05|0.01|N|O|1998-03-29|1998-02-23|1998-04-10|COLLECT COD|RAIL| deposits hagg| +73231|569218|31730|1|37|47626.03|0.06|0.07|R|F|1994-07-12|1994-09-18|1994-07-14|TAKE BACK RETURN|REG AIR|riously. express, i| +73231|835902|35903|2|28|51460.08|0.03|0.08|A|F|1994-09-06|1994-08-03|1994-09-26|NONE|SHIP|y. quickly ironic ideas lose carefully abou| +73231|4042|29043|3|20|18920.80|0.08|0.05|R|F|1994-10-12|1994-08-30|1994-10-24|NONE|MAIL|r packages detect slyly fi| +73231|923846|11401|4|9|16828.20|0.06|0.08|R|F|1994-10-22|1994-09-09|1994-10-29|TAKE BACK RETURN|RAIL|ins. silent, special multiplier| +73231|74938|37440|5|22|42084.46|0.05|0.04|A|F|1994-09-29|1994-09-05|1994-10-06|TAKE BACK RETURN|AIR|g up the blithely ironic pinto beans. final| +73256|274579|37085|1|11|17089.16|0.05|0.08|A|F|1994-01-09|1993-12-19|1994-01-25|COLLECT COD|FOB|sly regular, re| +73256|839468|1985|2|42|59111.64|0.07|0.04|R|F|1994-01-11|1993-11-11|1994-01-19|DELIVER IN PERSON|TRUCK|nts sleep always against th| +73256|932211|32212|3|26|32322.42|0.05|0.06|R|F|1993-12-06|1993-12-26|1993-12-13|NONE|SHIP|g packages sleep blith| +73256|653670|41210|4|31|50332.84|0.04|0.05|A|F|1993-12-05|1993-11-11|1993-12-16|DELIVER IN PERSON|FOB|re fluffily furiously final| +73256|215314|2827|5|8|9834.40|0.09|0.05|R|F|1993-12-25|1993-11-11|1994-01-11|COLLECT COD|REG AIR|hely ironic r| +73256|766472|16473|6|2|3076.88|0.00|0.06|R|F|1993-11-26|1993-12-02|1993-12-09|NONE|RAIL|efully ironic packages wake| +73257|183641|46145|1|42|72434.88|0.03|0.08|N|O|1997-07-16|1997-10-04|1997-07-24|TAKE BACK RETURN|TRUCK|in slyly regular, regu| +73257|439281|1790|2|3|3660.78|0.06|0.04|N|O|1997-09-24|1997-09-08|1997-10-19|NONE|RAIL|the blithely pending de| +73257|988591|1111|3|8|13436.40|0.00|0.01|N|O|1997-07-20|1997-10-02|1997-07-30|COLLECT COD|MAIL|r platelets after the quietly unusual accou| +73257|243999|31512|4|35|68004.30|0.04|0.01|N|O|1997-10-14|1997-08-09|1997-11-07|COLLECT COD|FOB| use fluffily. furiously ironic sheaves | +73257|874426|49461|5|15|21005.70|0.03|0.03|N|O|1997-10-09|1997-08-17|1997-11-01|NONE|RAIL|ounts. furiously special i| +73257|476252|26253|6|24|29477.52|0.09|0.02|N|O|1997-08-07|1997-10-01|1997-08-25|NONE|SHIP|n pinto beans wake b| +73258|3476|28477|1|37|51040.39|0.01|0.02|N|O|1997-02-17|1997-01-14|1997-02-20|TAKE BACK RETURN|AIR|s alongside of t| +73259|186710|36711|1|26|46714.46|0.08|0.05|A|F|1993-07-08|1993-05-27|1993-07-18|DELIVER IN PERSON|REG AIR|ounts print furiously alo| +73259|32327|44828|2|42|52891.44|0.07|0.03|A|F|1993-04-01|1993-04-26|1993-04-15|COLLECT COD|AIR|bold dependencies a| +73260|851798|1799|1|17|29745.75|0.08|0.08|R|F|1992-06-05|1992-05-23|1992-06-08|TAKE BACK RETURN|MAIL|its cajole. id| +73260|157470|44980|2|43|65681.21|0.01|0.08|A|F|1992-06-22|1992-06-27|1992-07-07|DELIVER IN PERSON|FOB|y final packages. regular p| +73260|583625|21159|3|29|49549.40|0.07|0.08|A|F|1992-06-11|1992-06-03|1992-07-11|NONE|TRUCK|counts are slowly final deposits; ironic | +73260|972278|9836|4|45|60760.35|0.00|0.05|R|F|1992-05-31|1992-07-04|1992-06-08|COLLECT COD|RAIL|s sleep. tithes haggle| +73260|71718|21719|5|38|64208.98|0.00|0.06|R|F|1992-05-27|1992-06-06|1992-06-21|COLLECT COD|TRUCK|blithely. regular packages cajol| +73261|695734|33274|1|7|12107.90|0.06|0.03|A|F|1993-03-06|1993-02-04|1993-03-28|NONE|SHIP|quests. regular accou| +73261|197099|22106|2|44|52627.96|0.02|0.00|A|F|1993-01-02|1993-02-18|1993-01-09|COLLECT COD|AIR| bold requests nag furio| +73261|638759|26296|3|50|84886.00|0.05|0.03|R|F|1993-02-12|1993-01-13|1993-02-14|DELIVER IN PERSON|MAIL|wake blithely after th| +73261|605970|30995|4|31|58154.14|0.04|0.03|A|F|1993-03-31|1993-02-16|1993-04-04|DELIVER IN PERSON|REG AIR|inal packages use against the final ins| +73261|521672|9203|5|35|59277.75|0.06|0.06|R|F|1992-12-16|1993-02-23|1993-01-04|NONE|FOB|lyly special acc| +73261|724907|37422|6|22|42501.14|0.06|0.00|R|F|1993-03-20|1993-01-14|1993-04-09|DELIVER IN PERSON|MAIL|kages. close deposits after the sly| +73262|815020|15021|1|23|21504.54|0.04|0.07|A|F|1994-08-31|1994-08-09|1994-09-28|TAKE BACK RETURN|REG AIR|lithely even deposits. so| +73262|39301|1802|2|32|39689.60|0.07|0.05|R|F|1994-08-13|1994-08-27|1994-08-26|COLLECT COD|SHIP| theodolites. final hockey players detec| +73262|531502|31503|3|23|35270.04|0.02|0.02|R|F|1994-06-10|1994-08-24|1994-06-16|NONE|MAIL|pinto beans. quickly even| +73263|856433|43985|1|3|4168.17|0.09|0.02|R|F|1993-05-13|1993-04-03|1993-05-25|TAKE BACK RETURN|FOB|orges. regular platelets sleep according| +73263|69328|44331|2|15|19459.80|0.01|0.01|A|F|1993-06-08|1993-03-31|1993-06-25|COLLECT COD|FOB|c instructi| +73263|183790|8797|3|27|50592.33|0.07|0.08|A|F|1993-06-11|1993-05-09|1993-07-04|DELIVER IN PERSON|SHIP|nal dependencies; blith| +73263|956969|6970|4|7|14181.44|0.06|0.05|A|F|1993-06-11|1993-05-22|1993-07-02|TAKE BACK RETURN|FOB|s detect doggedly. silent foxes a| +73263|774272|24273|5|49|65965.76|0.08|0.00|A|F|1993-06-06|1993-04-02|1993-06-17|TAKE BACK RETURN|TRUCK|lites above the slyly regular deposits wak| +73263|186911|11918|6|7|13985.37|0.10|0.07|R|F|1993-04-04|1993-05-16|1993-04-20|DELIVER IN PERSON|FOB| deposits. ironi| +73263|411315|48840|7|34|41693.86|0.07|0.02|A|F|1993-03-05|1993-04-10|1993-03-12|TAKE BACK RETURN|MAIL|al, regular theodolites. bold,| +73288|967157|17158|1|35|42843.85|0.01|0.00|R|F|1992-08-02|1992-08-06|1992-08-19|COLLECT COD|AIR|the fluffily pending ideas nag ca| +73288|2436|2437|2|37|49521.91|0.00|0.01|A|F|1992-08-09|1992-07-12|1992-08-20|COLLECT COD|MAIL|gular pack| +73288|927200|27201|3|26|31906.16|0.06|0.07|A|F|1992-06-18|1992-07-16|1992-07-09|DELIVER IN PERSON|SHIP| waters. regular, unu| +73288|446241|46242|4|18|21369.96|0.01|0.03|R|F|1992-05-24|1992-07-25|1992-06-14|TAKE BACK RETURN|AIR| theodolites use fur| +73289|731066|31067|1|21|23037.63|0.00|0.01|N|O|1997-09-27|1997-09-23|1997-09-30|NONE|SHIP|uctions wake blithely carefully | +73289|21943|46944|2|50|93247.00|0.02|0.03|N|O|1997-11-07|1997-08-23|1997-11-28|NONE|RAIL|regular requests haggle furiously r| +73290|519030|6561|1|29|30421.29|0.05|0.08|A|F|1994-04-25|1994-03-21|1994-05-17|COLLECT COD|TRUCK|y slyly busy packages. fur| +73290|325649|662|2|34|56937.42|0.03|0.03|R|F|1994-03-03|1994-03-07|1994-04-01|DELIVER IN PERSON|SHIP|e. slyly pendi| +73290|167379|4889|3|1|1446.37|0.00|0.06|R|F|1994-03-04|1994-03-13|1994-03-31|TAKE BACK RETURN|AIR| pinto beans about the deposits believe ab| +73290|131627|6632|4|2|3317.24|0.01|0.00|A|F|1994-03-30|1994-03-13|1994-03-31|TAKE BACK RETURN|FOB|ly even escapades wake. final, ironic f| +73290|246795|34308|5|6|10450.68|0.00|0.05|A|F|1994-02-28|1994-03-15|1994-03-25|TAKE BACK RETURN|FOB|ests. bold theodolites among the quickly s| +73290|879577|4612|6|31|48252.43|0.08|0.07|A|F|1994-02-18|1994-03-06|1994-03-06|NONE|REG AIR|uickly blithe deposits | +73290|37227|24728|7|35|40747.70|0.08|0.04|R|F|1994-03-23|1994-03-13|1994-04-14|DELIVER IN PERSON|REG AIR|ely pending | +73291|663196|25710|1|45|52162.20|0.10|0.04|A|F|1994-12-16|1994-10-28|1995-01-15|DELIVER IN PERSON|MAIL|ions? blithely ironic foxes dazzle sly| +73291|319858|19859|2|24|45068.16|0.07|0.06|R|F|1994-11-24|1994-11-02|1994-12-18|COLLECT COD|REG AIR|sly. slyly ironic ideas are above| +73291|848473|36022|3|14|19900.02|0.09|0.02|R|F|1994-11-12|1994-09-26|1994-11-29|TAKE BACK RETURN|MAIL| regular instructions. even ideas haggle. p| +73291|278203|28204|4|30|35435.70|0.04|0.00|A|F|1994-10-09|1994-10-17|1994-11-01|COLLECT COD|TRUCK|efully final dolphins among the fu| +73291|744657|32200|5|45|76572.90|0.05|0.03|R|F|1994-10-27|1994-09-23|1994-11-23|DELIVER IN PERSON|REG AIR|quickly unusual theodolites | +73291|444892|7401|6|45|82659.15|0.10|0.00|A|F|1994-11-04|1994-10-12|1994-11-24|DELIVER IN PERSON|TRUCK|e ideas-- furiously final id| +73292|15798|40799|1|27|46272.33|0.06|0.07|R|F|1992-07-01|1992-07-18|1992-07-29|COLLECT COD|MAIL|g to the final excuses. ironic accoun| +73292|513608|1139|2|46|74592.68|0.01|0.08|A|F|1992-08-18|1992-09-02|1992-09-05|TAKE BACK RETURN|REG AIR|requests. furiously ironic| +73292|204718|42231|3|46|74644.20|0.04|0.06|A|F|1992-10-11|1992-08-12|1992-10-13|DELIVER IN PERSON|AIR|ccounts. packages across the slyly| +73292|692208|17235|4|43|51607.31|0.02|0.06|A|F|1992-08-22|1992-09-05|1992-08-23|COLLECT COD|RAIL|waters! carefully stealt| +73292|930321|42840|5|48|64861.44|0.01|0.07|A|F|1992-08-11|1992-08-29|1992-09-03|TAKE BACK RETURN|FOB|nal deposits print dep| +73292|904336|4337|6|14|18764.06|0.09|0.08|A|F|1992-07-22|1992-07-26|1992-08-19|TAKE BACK RETURN|FOB|the even, even | +73292|160162|47672|7|33|40331.28|0.02|0.08|R|F|1992-10-05|1992-07-29|1992-10-13|COLLECT COD|TRUCK|egrate ideas: fluffily bold foxes ar| +73293|833054|45571|1|28|27636.28|0.05|0.04|N|O|1997-10-09|1997-08-02|1997-10-25|TAKE BACK RETURN|FOB| ironic the| +73293|135087|10092|2|25|28052.00|0.05|0.02|N|O|1997-10-06|1997-09-12|1997-10-10|TAKE BACK RETURN|SHIP|ronic platelets wake| +73293|405657|5658|3|40|62505.20|0.03|0.06|N|O|1997-10-02|1997-07-24|1997-10-07|NONE|MAIL|uffily final packages. | +73293|861634|11635|4|11|17551.49|0.01|0.00|N|O|1997-06-29|1997-08-27|1997-06-30|DELIVER IN PERSON|TRUCK|ake accounts. furiously regular accoun| +73293|482414|32415|5|31|43288.09|0.04|0.07|N|O|1997-08-07|1997-09-03|1997-08-24|NONE|RAIL|uriously ironic packages. bravely ir| +73293|921837|21838|6|3|5576.37|0.03|0.01|N|O|1997-09-03|1997-09-10|1997-09-05|COLLECT COD|TRUCK| slyly regul| +73294|654282|41822|1|30|37087.50|0.05|0.05|R|F|1993-04-12|1993-04-20|1993-05-07|COLLECT COD|AIR|sts eat carefully alongside of the s| +73295|688758|1272|1|48|83842.56|0.08|0.05|N|O|1996-09-17|1996-08-14|1996-09-28|TAKE BACK RETURN|FOB|uriously special ideas.| +73295|954777|42335|2|46|84259.58|0.00|0.03|N|O|1996-09-25|1996-07-07|1996-10-05|DELIVER IN PERSON|FOB|ntegrate bl| +73295|931890|6927|3|43|82639.55|0.00|0.03|N|O|1996-08-07|1996-07-20|1996-08-30|DELIVER IN PERSON|REG AIR|ajole. carefully bold packages sle| +73320|564255|26767|1|32|42215.36|0.10|0.00|N|O|1997-05-03|1997-05-25|1997-05-26|NONE|MAIL|y final warhorses haggle a| +73321|16729|16730|1|36|59245.92|0.10|0.01|N|O|1996-06-17|1996-05-08|1996-06-26|NONE|SHIP|s carefully ironic courts. patterns can use| +73321|162089|24593|2|35|40287.80|0.07|0.05|N|O|1996-06-11|1996-04-21|1996-07-04|TAKE BACK RETURN|AIR| theodolites. unus| +73321|224448|49457|3|6|8234.58|0.01|0.00|N|O|1996-04-29|1996-04-11|1996-05-05|COLLECT COD|MAIL|ts. requests are furiously. | +73321|287303|24819|4|1|1290.29|0.04|0.01|N|O|1996-02-27|1996-05-15|1996-03-12|NONE|MAIL|ding foxes boost final requests. qui| +73321|688497|38498|5|7|10398.22|0.07|0.02|N|O|1996-06-05|1996-03-29|1996-07-03|NONE|REG AIR|furiously. furiously| +73322|473212|23213|1|49|58074.31|0.04|0.00|N|O|1997-04-11|1997-06-22|1997-04-29|COLLECT COD|RAIL|y after the sl| +73322|266418|16419|2|29|40147.60|0.00|0.02|N|O|1997-04-12|1997-05-10|1997-04-14|TAKE BACK RETURN|REG AIR|ccounts cajole careful| +73322|680085|42599|3|37|39406.85|0.02|0.07|N|O|1997-05-19|1997-06-25|1997-06-04|TAKE BACK RETURN|TRUCK| packages. r| +73322|180581|30582|4|20|33231.60|0.10|0.04|N|O|1997-05-18|1997-07-05|1997-05-23|COLLECT COD|TRUCK|al deposits | +73322|12263|49764|5|32|37608.32|0.06|0.01|N|O|1997-05-19|1997-06-29|1997-06-04|COLLECT COD|FOB|s. furiously busy deposits th| +73322|103467|15970|6|7|10293.22|0.01|0.08|N|O|1997-07-04|1997-05-22|1997-07-29|NONE|REG AIR|ly ironic ideas nag. fluffily reg| +73323|68108|5612|1|24|25826.40|0.07|0.04|N|O|1998-05-01|1998-04-25|1998-05-22|COLLECT COD|TRUCK|sublate according t| +73323|688588|26128|2|31|48873.05|0.09|0.05|N|O|1998-05-08|1998-04-22|1998-05-28|COLLECT COD|FOB|the regular d| +73324|525304|325|1|23|30573.44|0.09|0.02|R|F|1993-04-10|1993-03-22|1993-04-23|DELIVER IN PERSON|MAIL|under the furiously | +73324|775143|174|2|44|53596.84|0.09|0.07|R|F|1993-02-16|1993-02-15|1993-03-03|NONE|MAIL|ously ironic deposits sleep carefully. bli| +73324|814309|26826|3|32|39144.32|0.08|0.00|R|F|1993-03-27|1993-03-12|1993-04-26|NONE|AIR|l theodolites; quickly even accounts| +73325|756937|6938|1|35|69786.50|0.03|0.07|N|O|1996-05-27|1996-05-16|1996-06-02|NONE|REG AIR|eposits. blithely regular packages | +73326|357355|32370|1|6|8474.04|0.02|0.03|R|F|1995-02-04|1994-12-20|1995-02-10|DELIVER IN PERSON|REG AIR|ic pinto bean| +73327|538285|25816|1|15|19848.90|0.09|0.02|R|F|1994-02-12|1994-04-15|1994-02-25|COLLECT COD|REG AIR|cording to the ideas. final requests| +73327|940711|28266|2|20|35033.40|0.06|0.06|R|F|1994-02-24|1994-03-17|1994-03-05|COLLECT COD|SHIP|hely pending| +73327|524479|36990|3|27|40593.15|0.08|0.01|A|F|1994-02-11|1994-04-12|1994-02-26|DELIVER IN PERSON|REG AIR|pending ideas-- carefully even accounts a| +73327|903983|29020|4|50|99347.00|0.05|0.04|A|F|1994-03-18|1994-04-15|1994-03-28|TAKE BACK RETURN|AIR|olphins detect blit| +73327|237040|37041|5|16|15632.48|0.10|0.00|A|F|1994-05-31|1994-04-09|1994-06-28|COLLECT COD|SHIP|against the slyly pending deposits. | +73327|930383|42902|6|41|57946.94|0.02|0.08|R|F|1994-05-07|1994-04-22|1994-06-02|COLLECT COD|RAIL|re. instructions hinder past the sl| +73352|647415|47416|1|8|10899.04|0.10|0.06|A|F|1995-01-19|1995-02-03|1995-02-14|TAKE BACK RETURN|AIR|ct carefull| +73353|346218|33737|1|24|30340.80|0.08|0.01|R|F|1992-10-20|1992-10-25|1992-11-01|NONE|REG AIR|special excuses sleep slyly a| +73354|821394|46427|1|35|46037.25|0.03|0.07|N|O|1998-01-12|1997-11-25|1998-01-23|COLLECT COD|SHIP|efully pending | +73354|159295|21799|2|19|25731.51|0.04|0.04|N|O|1998-01-08|1997-11-24|1998-01-12|DELIVER IN PERSON|MAIL|al accounts cajole carefully carefully| +73354|261623|24129|3|2|3169.22|0.06|0.00|N|O|1997-10-01|1997-10-31|1997-10-11|DELIVER IN PERSON|SHIP| cajole after the| +73354|82687|20191|4|28|46751.04|0.07|0.00|N|O|1998-01-16|1997-11-14|1998-01-21|COLLECT COD|MAIL| slyly regular re| +73354|703792|16307|5|21|37710.96|0.07|0.00|N|O|1998-01-01|1997-10-20|1998-01-18|DELIVER IN PERSON|SHIP|e of the bold, daring dependencies: regul| +73355|388283|13298|1|45|61707.15|0.04|0.05|A|F|1992-07-14|1992-05-12|1992-08-05|TAKE BACK RETURN|FOB|y among the r| +73355|859852|47404|2|38|68848.78|0.04|0.04|A|F|1992-03-21|1992-04-29|1992-04-11|TAKE BACK RETURN|AIR|lar packages. special som| +73355|527557|2578|3|4|6338.12|0.01|0.00|A|F|1992-04-08|1992-05-24|1992-04-18|NONE|MAIL|ns. final deposits are. ironic pinto b| +73356|552845|2846|1|21|39854.22|0.04|0.07|A|F|1993-09-20|1993-09-04|1993-10-12|DELIVER IN PERSON|SHIP|kages are carefully silent request| +73356|662450|12451|2|1|1412.42|0.04|0.01|A|F|1993-10-08|1993-09-17|1993-10-12|NONE|SHIP|riously slyly ironic courts. furiously f| +73356|785090|10121|3|13|15275.78|0.01|0.03|R|F|1993-08-20|1993-09-28|1993-09-14|NONE|TRUCK| around the furi| +73357|730115|30116|1|9|10305.72|0.05|0.05|N|O|1998-07-01|1998-08-06|1998-07-17|NONE|AIR|ideas. carefully regular a| +73357|29157|16658|2|18|19550.70|0.02|0.00|N|O|1998-06-27|1998-07-08|1998-07-07|DELIVER IN PERSON|REG AIR|ckages nag above the slyly final i| +73357|31019|6020|3|41|38950.41|0.07|0.02|N|O|1998-09-09|1998-06-10|1998-10-01|NONE|MAIL|uffily regular foxes. i| +73357|326056|38563|4|14|15148.56|0.08|0.05|N|O|1998-06-19|1998-07-21|1998-07-04|NONE|AIR|ly above the ironic asymptot| +73357|7219|32220|5|42|47300.82|0.03|0.02|N|O|1998-08-23|1998-08-04|1998-09-01|NONE|TRUCK|. carefully pending requests wake furiousl| +73357|318499|43512|6|46|69804.08|0.05|0.03|N|O|1998-06-18|1998-08-07|1998-06-21|NONE|AIR|quickly outside t| +73358|245071|20080|1|49|49786.94|0.07|0.03|R|F|1993-11-24|1993-10-07|1993-11-27|COLLECT COD|SHIP|r ideas sleep | +73358|898829|36381|2|35|63972.30|0.08|0.06|R|F|1993-12-27|1993-10-14|1994-01-11|NONE|FOB|anently silent dependencies. quickly bold r| +73358|606169|18682|3|28|30103.64|0.02|0.05|R|F|1993-12-02|1993-10-05|1993-12-06|COLLECT COD|FOB|eodolites cajole slyly. pendi| +73358|868110|5662|4|2|2156.14|0.10|0.06|A|F|1993-11-20|1993-11-13|1993-11-29|NONE|FOB|the pinto bean| +73358|310051|22558|5|10|10610.40|0.03|0.00|R|F|1993-10-23|1993-11-12|1993-10-24|COLLECT COD|TRUCK|side of the careful deposits. foxe| +73358|13491|13492|6|48|67415.52|0.06|0.01|R|F|1993-11-11|1993-11-13|1993-12-06|TAKE BACK RETURN|REG AIR|quests. slyly unusual pinto bean| +73359|318510|18511|1|22|33627.00|0.06|0.01|N|O|1997-03-27|1997-03-26|1997-03-28|NONE|SHIP|o beans. unu| +73359|195188|7692|2|11|14114.98|0.05|0.06|N|O|1997-03-25|1997-03-27|1997-04-22|DELIVER IN PERSON|TRUCK|. carefully b| +73359|518103|43124|3|4|4484.32|0.06|0.03|N|O|1997-01-30|1997-03-03|1997-02-14|NONE|FOB| quickly regular escapades! furiously fina| +73359|740459|2974|4|19|28488.98|0.04|0.00|N|O|1997-05-07|1997-04-02|1997-05-17|NONE|MAIL|en accounts cajole furious| +73359|893742|31294|5|29|50335.30|0.08|0.06|N|O|1997-04-09|1997-03-14|1997-04-13|COLLECT COD|AIR|. carefully regular requests sleep ca| +73359|116773|16774|6|42|75170.34|0.05|0.00|N|O|1997-04-18|1997-03-31|1997-05-10|TAKE BACK RETURN|SHIP|mptotes. furiously ironic asymptotes after| +73384|718778|6321|1|34|61089.16|0.03|0.08|R|F|1994-02-17|1994-05-11|1994-03-15|NONE|MAIL|y regular Tiresias wake about t| +73384|501308|1309|2|27|35350.56|0.10|0.02|A|F|1994-05-07|1994-04-06|1994-05-17|COLLECT COD|REG AIR|ess accounts| +73384|472849|10377|3|2|3643.64|0.00|0.08|R|F|1994-05-29|1994-04-20|1994-06-23|COLLECT COD|FOB|nstructions wake blithely ab| +73384|167493|5003|4|7|10923.43|0.06|0.01|R|F|1994-03-03|1994-04-09|1994-03-21|COLLECT COD|TRUCK| the slyly final requests. ironic | +73384|44079|6580|5|43|43992.01|0.07|0.07|R|F|1994-06-05|1994-04-05|1994-06-15|TAKE BACK RETURN|AIR|nstructions use special deposits. blit| +73384|820706|33223|6|34|55306.44|0.04|0.03|R|F|1994-03-06|1994-04-06|1994-03-26|TAKE BACK RETURN|REG AIR|y express requests. f| +73384|596108|46109|7|41|49367.28|0.08|0.06|R|F|1994-02-27|1994-05-07|1994-03-17|DELIVER IN PERSON|RAIL|ts cajole carefully after the s| +73385|783464|21010|1|24|37138.32|0.05|0.00|N|O|1995-08-13|1995-07-03|1995-08-23|NONE|FOB| furiously final foxes. express, ironic| +73386|863307|25825|1|6|7621.56|0.06|0.07|R|F|1993-10-05|1993-10-04|1993-10-09|COLLECT COD|SHIP|ong the slyly final excuses.| +73386|600477|12990|2|25|34436.00|0.03|0.05|A|F|1993-10-13|1993-09-22|1993-10-27|TAKE BACK RETURN|SHIP|althily. asymptotes among the reg| +73386|205584|5585|3|14|20853.98|0.07|0.04|R|F|1993-10-16|1993-11-03|1993-10-23|DELIVER IN PERSON|TRUCK|ronic requests above the carefully regular | +73386|245647|8152|4|22|35037.86|0.01|0.06|A|F|1993-08-28|1993-11-11|1993-09-25|NONE|FOB|counts! flu| +73386|577347|14881|5|43|61245.76|0.07|0.02|R|F|1993-10-01|1993-10-11|1993-10-08|NONE|SHIP|inly even foxes should mold ne| +73386|469565|32075|6|10|15345.40|0.07|0.04|A|F|1993-11-02|1993-10-30|1993-11-23|TAKE BACK RETURN|FOB|nal packages-- blithely pending | +73386|967829|17830|7|27|51213.06|0.02|0.06|R|F|1993-09-08|1993-09-25|1993-10-06|DELIVER IN PERSON|REG AIR| haggle near the quickly eve| +73387|288944|38945|1|20|38658.60|0.01|0.01|N|O|1998-08-23|1998-09-04|1998-09-13|NONE|MAIL|ously according to the ironic depos| +73387|281473|6484|2|45|65450.70|0.03|0.02|N|O|1998-07-22|1998-09-28|1998-07-30|DELIVER IN PERSON|FOB| regular excuses| +73388|655380|5381|1|20|26707.00|0.08|0.03|N|O|1996-09-19|1996-07-23|1996-09-27|COLLECT COD|RAIL|phs are! slyly unusual courts ca| +73388|970373|7931|2|48|69279.84|0.04|0.06|N|O|1996-08-15|1996-08-01|1996-08-27|DELIVER IN PERSON|AIR|inal requests-- fluffily even foxes sleep f| +73389|44548|32049|1|14|20895.56|0.08|0.08|N|O|1997-08-29|1997-09-22|1997-09-17|TAKE BACK RETURN|FOB|ly after the carefully unusual | +73389|702290|14805|2|22|28429.72|0.07|0.07|N|O|1997-10-04|1997-09-21|1997-11-03|DELIVER IN PERSON|MAIL|lly slyly final accounts. caref| +73389|383347|45855|3|14|20024.62|0.06|0.03|N|O|1997-11-19|1997-10-31|1997-12-01|COLLECT COD|FOB|arefully even pinto be| +73389|901207|26244|4|7|8457.12|0.01|0.04|N|O|1997-09-15|1997-10-15|1997-10-02|DELIVER IN PERSON|SHIP|. finally unusual requests nag. blithely re| +73390|176399|13909|1|37|54589.43|0.02|0.01|R|F|1992-03-18|1992-04-14|1992-03-20|COLLECT COD|MAIL| bold instructions cajole carefully | +73390|721833|21834|2|31|57498.80|0.06|0.07|R|F|1992-02-12|1992-03-02|1992-03-03|TAKE BACK RETURN|SHIP|ts. carefully unusual accounts hang quickl| +73390|842924|42925|3|27|50405.76|0.00|0.05|A|F|1992-04-21|1992-03-28|1992-05-15|NONE|SHIP|uses integrate after the p| +73390|17629|42630|4|1|1546.62|0.04|0.01|A|F|1992-03-03|1992-04-11|1992-03-10|NONE|RAIL| boldly ironic depende| +73390|285123|35124|5|6|6648.66|0.02|0.05|R|F|1992-02-24|1992-03-08|1992-03-19|TAKE BACK RETURN|REG AIR|ily thin sauterne| +73390|60157|22659|6|44|49154.60|0.03|0.01|R|F|1992-05-22|1992-03-10|1992-05-31|TAKE BACK RETURN|MAIL|carefully across the furiously bold| +73391|594115|31649|1|30|36272.70|0.08|0.08|A|F|1994-12-27|1994-12-02|1995-01-19|DELIVER IN PERSON|SHIP| pending r| +73416|979635|17193|1|36|61725.24|0.02|0.04|N|O|1998-07-06|1998-05-30|1998-07-11|TAKE BACK RETURN|FOB|nic packages. even deposits nag carefu| +73416|708709|8710|2|15|25765.05|0.08|0.00|N|O|1998-07-04|1998-05-12|1998-07-24|NONE|REG AIR|ven theodolites. silent, final pinto | +73416|256761|19267|3|41|70427.75|0.06|0.08|N|O|1998-04-12|1998-06-22|1998-04-30|TAKE BACK RETURN|RAIL|lar accounts sleep blithely furiously regu| +73416|379579|29580|4|39|64683.84|0.03|0.00|N|O|1998-07-28|1998-07-07|1998-08-12|NONE|REG AIR|iously. regular, pen| +73416|568294|30806|5|37|50403.99|0.10|0.01|N|O|1998-07-09|1998-07-08|1998-07-24|DELIVER IN PERSON|RAIL|lites. fluffily ironic| +73416|302446|14953|6|31|44901.33|0.08|0.04|N|O|1998-07-21|1998-05-22|1998-08-02|COLLECT COD|SHIP|. carefully bold platelets co| +73417|460172|47700|1|7|7925.05|0.01|0.08|A|F|1994-11-19|1994-10-11|1994-12-19|DELIVER IN PERSON|REG AIR|e furiously regular theodolites. | +73417|97752|22755|2|17|29745.75|0.07|0.08|R|F|1994-09-21|1994-10-09|1994-09-24|DELIVER IN PERSON|TRUCK| requests. furiously regular excuses s| +73417|903147|3148|3|34|39103.40|0.07|0.04|R|F|1994-09-11|1994-10-25|1994-10-06|NONE|MAIL|ep carefully. ironic sauternes cajole| +73418|516215|16216|1|40|49247.60|0.09|0.07|R|F|1995-04-18|1995-04-07|1995-04-22|COLLECT COD|MAIL|cording to the fluffily unusual accoun| +73419|463607|38626|1|48|75387.84|0.08|0.00|N|O|1997-11-14|1997-09-21|1997-11-19|DELIVER IN PERSON|FOB|es wake quickly furiously | +73419|830060|17609|2|34|33660.68|0.10|0.05|N|O|1997-10-01|1997-10-13|1997-10-21|COLLECT COD|REG AIR|ven deposits against t| +73420|713967|13968|1|45|89141.85|0.02|0.07|N|O|1995-09-25|1995-09-11|1995-10-20|COLLECT COD|FOB|e among the silent deposits. blithely | +73420|640536|28073|2|6|8859.00|0.08|0.01|N|O|1995-10-29|1995-09-17|1995-11-22|DELIVER IN PERSON|SHIP|pecial ideas| +73420|486413|23941|3|26|36384.14|0.04|0.01|N|O|1995-08-31|1995-08-27|1995-09-15|TAKE BACK RETURN|MAIL|riously sil| +73420|142241|4744|4|45|57745.80|0.04|0.01|N|O|1995-10-09|1995-09-06|1995-10-27|TAKE BACK RETURN|FOB|ily special pinto beans; final foxes c| +73420|641017|28554|5|5|4789.90|0.05|0.05|N|O|1995-10-03|1995-09-05|1995-10-13|COLLECT COD|REG AIR|ans. slyly bold de| +73420|564823|2357|6|14|26429.20|0.09|0.00|N|O|1995-09-14|1995-09-19|1995-10-07|COLLECT COD|AIR|press, close ideas. blithely| +73421|477008|14536|1|47|46294.06|0.05|0.05|N|O|1996-05-25|1996-05-31|1996-06-14|NONE|SHIP|pendencies integrate quickly u| +73421|65595|3099|2|24|37454.16|0.10|0.05|N|O|1996-07-20|1996-06-20|1996-08-18|NONE|TRUCK| to cajole according to| +73421|446840|21857|3|32|57178.24|0.05|0.02|N|O|1996-07-21|1996-06-01|1996-07-28|NONE|REG AIR|ole along the| +73422|452592|40120|1|36|55604.52|0.04|0.02|N|O|1995-10-03|1995-10-03|1995-10-06|COLLECT COD|TRUCK|ily even foxes. entic| +73423|251060|26071|1|36|36397.80|0.04|0.08|N|O|1996-02-14|1996-03-21|1996-03-01|COLLECT COD|RAIL|ns haggle fluffily. quickly even ideas| +73423|561316|23828|2|4|5509.16|0.08|0.02|N|O|1996-03-08|1996-02-16|1996-03-09|DELIVER IN PERSON|SHIP| bold packages integrate slyly regu| +73423|33443|20944|3|2|2752.88|0.07|0.00|N|O|1996-05-10|1996-03-09|1996-06-06|NONE|SHIP|kly regular foxes. slyly regular packages | +73448|525700|25701|1|1|1725.68|0.03|0.03|R|F|1994-09-14|1994-09-06|1994-10-03|NONE|TRUCK|hins sleep deposits.| +73448|423283|23284|2|50|60313.00|0.06|0.01|R|F|1994-08-24|1994-09-17|1994-08-28|TAKE BACK RETURN|RAIL|ly express requests. carefully even | +73448|114599|2106|3|29|46794.11|0.10|0.00|A|F|1994-09-23|1994-08-25|1994-09-29|NONE|REG AIR|cajole slyly. slyly final instructions bo| +73448|53799|3800|4|4|7011.16|0.06|0.05|A|F|1994-08-26|1994-07-28|1994-08-31|DELIVER IN PERSON|FOB| wake slyl| +73448|191844|29354|5|41|79369.44|0.01|0.04|A|F|1994-09-10|1994-08-03|1994-09-12|COLLECT COD|REG AIR| cajole. finally ironic deposi| +73448|314738|2257|6|46|80625.12|0.03|0.04|A|F|1994-08-30|1994-08-20|1994-09-13|COLLECT COD|MAIL|. fluffily regular deposits detec| +73449|994359|44360|1|31|45052.61|0.03|0.08|N|O|1997-03-11|1997-03-16|1997-03-18|DELIVER IN PERSON|FOB|deposits use bravely fluffily regular the| +73449|180093|17603|2|5|5865.45|0.10|0.03|N|O|1997-03-27|1997-04-24|1997-04-05|COLLECT COD|RAIL| quickly even accounts. accounts use qui| +73449|820019|45052|3|48|45070.56|0.08|0.05|N|O|1997-05-02|1997-03-29|1997-05-11|TAKE BACK RETURN|TRUCK|sias. unusual, pending de| +73449|55266|30269|4|22|26867.72|0.00|0.02|N|O|1997-04-24|1997-04-25|1997-05-01|TAKE BACK RETURN|MAIL|deas wake blithely. furiously even | +73449|845690|20723|5|35|57247.75|0.07|0.05|N|O|1997-02-19|1997-04-24|1997-03-04|NONE|MAIL| through the ironic, ironic fra| +73449|501168|26189|6|24|28059.36|0.01|0.04|N|O|1997-05-14|1997-03-04|1997-05-30|COLLECT COD|RAIL|inal requests are. flu| +73450|774931|12477|1|33|66194.70|0.07|0.05|A|F|1994-12-10|1994-10-24|1994-12-12|NONE|FOB|deas. carefully pend| +73450|254665|17171|2|25|40491.25|0.10|0.02|R|F|1994-09-24|1994-11-09|1994-10-08|NONE|REG AIR|e ironic excuses. blithely regular accoun| +73450|152871|2872|3|45|86574.15|0.02|0.03|R|F|1994-10-12|1994-10-23|1994-10-24|NONE|AIR|. unusual, regular de| +73450|300803|804|4|11|19841.69|0.08|0.00|A|F|1994-09-19|1994-11-09|1994-10-02|NONE|AIR|ully busy, enticing requests| +73450|590297|15320|5|43|59652.61|0.02|0.04|R|F|1994-10-01|1994-09-19|1994-10-16|DELIVER IN PERSON|RAIL|lessly furious packages. busily even pint| +73451|669232|31746|1|46|55255.20|0.02|0.02|N|O|1996-11-21|1997-01-19|1996-12-17|TAKE BACK RETURN|MAIL|arefully fur| +73451|768317|18318|2|8|11082.24|0.08|0.07|N|O|1997-01-05|1997-01-29|1997-02-02|DELIVER IN PERSON|TRUCK| furiously even, enticing sau| +73451|89660|2162|3|1|1649.66|0.08|0.08|N|O|1997-02-05|1997-01-31|1997-02-19|DELIVER IN PERSON|SHIP|lly pending packages. sometimes f| +73451|906176|18695|4|18|21278.34|0.03|0.04|N|O|1996-11-28|1997-02-01|1996-12-05|NONE|RAIL|ing to the final, express | +73451|86851|49353|5|42|77189.70|0.09|0.06|N|O|1996-12-24|1997-01-20|1997-01-02|TAKE BACK RETURN|RAIL| bold, ironic accounts u| +73451|688219|38220|6|17|20522.06|0.06|0.08|N|O|1997-01-19|1996-12-06|1997-02-15|DELIVER IN PERSON|AIR| are carefu| +73452|725615|38130|1|12|19686.96|0.00|0.03|N|O|1997-01-08|1997-01-19|1997-02-03|TAKE BACK RETURN|MAIL| the final, special requests integrate a| +73452|409760|9761|2|50|83487.00|0.01|0.02|N|O|1997-03-06|1997-02-15|1997-03-07|NONE|TRUCK|arefully along the quickly fin| +73452|822067|22068|3|27|26703.54|0.06|0.02|N|O|1997-01-22|1997-02-15|1997-01-25|NONE|AIR|l excuses. silently unusual deposi| +73453|47406|22407|1|17|23007.80|0.10|0.02|N|O|1996-11-16|1996-12-22|1996-12-09|COLLECT COD|SHIP|integrate. slyly expres| +73453|752034|27065|2|1|1086.00|0.08|0.05|N|O|1997-02-05|1996-12-15|1997-02-17|COLLECT COD|REG AIR|accounts. quickl| +73454|92220|4722|1|43|52125.46|0.09|0.03|A|F|1993-06-27|1993-06-02|1993-07-09|DELIVER IN PERSON|SHIP| affix slyly carefully pending | +73454|927375|27376|2|35|49081.55|0.04|0.02|A|F|1993-04-03|1993-04-30|1993-04-09|TAKE BACK RETURN|FOB|nding pinto beans was carefully slyly | +73454|389073|26595|3|19|22079.14|0.05|0.03|R|F|1993-05-25|1993-05-01|1993-06-23|TAKE BACK RETURN|FOB| pinto beans wake blithely. final accou| +73455|960390|35429|1|47|68166.45|0.04|0.03|R|F|1994-07-17|1994-06-29|1994-08-11|DELIVER IN PERSON|RAIL|r the carefully re| +73455|274028|49039|2|40|40080.40|0.02|0.02|R|F|1994-09-16|1994-08-22|1994-10-02|COLLECT COD|FOB|nstructions. slyly final | +73480|760267|22783|1|38|50434.74|0.08|0.05|A|F|1993-06-20|1993-05-07|1993-07-05|COLLECT COD|SHIP|bout the ruthlessly ironic pinto| +73480|799519|49520|2|10|16184.80|0.09|0.08|A|F|1993-03-26|1993-05-22|1993-04-15|NONE|FOB|es sleep never about | +73480|508328|8329|3|12|16035.60|0.08|0.02|A|F|1993-03-22|1993-05-01|1993-03-24|COLLECT COD|REG AIR| the blithely express deposits. blithely bo| +73480|464992|14993|4|28|54795.16|0.09|0.05|A|F|1993-03-04|1993-05-25|1993-03-18|DELIVER IN PERSON|TRUCK| slowly ironic ideas. carefully spe| +73480|115231|27734|5|7|8723.61|0.00|0.08|A|F|1993-04-25|1993-04-01|1993-05-12|NONE|RAIL|bove the furiously regular accounts. | +73480|670715|45742|6|4|6742.72|0.10|0.04|R|F|1993-05-05|1993-05-29|1993-05-09|NONE|RAIL|. unusual accounts r| +73481|3799|16300|1|15|25541.85|0.05|0.02|N|O|1997-08-14|1997-09-04|1997-08-27|DELIVER IN PERSON|MAIL|y silent i| +73481|837159|12192|2|14|15345.54|0.09|0.00|N|O|1997-11-14|1997-09-24|1997-12-04|COLLECT COD|TRUCK|gular requests boost blithely. slyly unusu| +73481|119641|7148|3|49|81371.36|0.10|0.07|N|O|1997-07-27|1997-10-12|1997-07-30|NONE|SHIP|he fluffily silent pearls dazzle furiousl| +73481|797021|34567|4|39|43601.61|0.09|0.07|N|O|1997-07-30|1997-09-01|1997-08-01|NONE|TRUCK| the slyly careful the| +73482|692006|42007|1|20|19959.40|0.05|0.04|A|F|1993-03-07|1993-01-05|1993-03-14|COLLECT COD|MAIL| against the | +73482|543327|18348|2|1|1370.30|0.02|0.00|R|F|1992-12-10|1993-01-10|1992-12-15|TAKE BACK RETURN|AIR|ng patterns. instructions are silently| +73483|504209|4210|1|9|10918.62|0.06|0.05|N|O|1998-08-31|1998-09-20|1998-09-07|DELIVER IN PERSON|MAIL|ic courts haggle pe| +73483|235489|47994|2|17|24215.99|0.05|0.08|N|O|1998-07-21|1998-08-20|1998-08-13|COLLECT COD|FOB|inst the carefully bold request| +73483|854173|41725|3|27|30432.51|0.03|0.00|N|O|1998-07-15|1998-08-11|1998-07-20|TAKE BACK RETURN|REG AIR|oss the ev| +73484|828197|28198|1|7|7876.05|0.01|0.07|N|O|1997-10-22|1997-12-14|1997-11-06|NONE|SHIP|ic instructions | +73484|500366|367|2|49|66950.66|0.09|0.05|N|O|1998-01-05|1998-01-01|1998-01-14|TAKE BACK RETURN|TRUCK| blithely accor| +73484|647351|34888|3|5|6491.60|0.09|0.06|N|O|1998-01-03|1997-12-29|1998-01-15|DELIVER IN PERSON|SHIP| furiously even foxes nag caref| +73484|26071|26072|4|19|18944.33|0.05|0.00|N|O|1998-01-08|1997-11-09|1998-02-02|NONE|AIR|ngage across the carefully e| +73484|167806|5316|5|36|67456.80|0.06|0.04|N|O|1997-12-27|1997-11-05|1998-01-04|NONE|SHIP|ong the quickly even req| +73485|105728|5729|1|32|55479.04|0.03|0.04|A|F|1994-08-17|1994-09-09|1994-09-15|COLLECT COD|REG AIR|g to the silently even plate| +73486|442033|42034|1|35|34125.35|0.04|0.01|A|F|1994-10-03|1994-11-20|1994-10-12|DELIVER IN PERSON|SHIP|maintain careful| +73486|234654|47159|2|27|42893.28|0.03|0.01|A|F|1994-09-27|1994-10-18|1994-09-28|TAKE BACK RETURN|AIR| against the express packages wake qui| +73486|823363|23364|3|25|32158.00|0.03|0.04|R|F|1994-08-30|1994-11-10|1994-09-18|NONE|SHIP|uses. carefully bold dolp| +73487|338356|13369|1|21|29281.14|0.07|0.05|A|F|1994-04-20|1994-06-10|1994-04-22|DELIVER IN PERSON|REG AIR|atelets about the slyly regular pl| +73487|747157|34700|2|40|48164.80|0.07|0.06|A|F|1994-05-11|1994-04-20|1994-05-16|COLLECT COD|TRUCK| express, regular p| +73487|458674|46202|3|40|65306.00|0.10|0.06|A|F|1994-04-29|1994-04-23|1994-05-14|TAKE BACK RETURN|FOB|ole blithely regular | +73487|922247|22248|4|18|22845.60|0.00|0.06|A|F|1994-05-07|1994-04-12|1994-06-03|DELIVER IN PERSON|MAIL|lyly thin patterns. ca| +73512|840867|15900|1|8|14462.56|0.03|0.02|N|O|1995-08-29|1995-08-23|1995-09-27|DELIVER IN PERSON|TRUCK|aggle ironic excuses. regular de| +73512|438601|38602|2|13|20014.54|0.09|0.01|N|O|1995-08-03|1995-07-30|1995-08-18|DELIVER IN PERSON|MAIL| theodolites. instructi| +73512|558828|21340|3|44|83019.20|0.05|0.07|N|O|1995-09-20|1995-07-12|1995-10-18|NONE|SHIP|heodolites cajole above the quickly even pa| +73512|222052|47061|4|20|19480.80|0.01|0.04|N|O|1995-10-03|1995-07-11|1995-11-02|TAKE BACK RETURN|MAIL|tions solve fluffily against th| +73512|16602|41603|5|33|50113.80|0.04|0.07|N|O|1995-09-19|1995-08-18|1995-10-15|COLLECT COD|MAIL|e the foxes us| +73512|26539|14040|6|36|52759.08|0.01|0.05|N|O|1995-09-11|1995-07-10|1995-10-08|COLLECT COD|REG AIR| final, ironic theodolites along | +73513|285457|47963|1|45|64909.80|0.09|0.04|N|O|1997-07-25|1997-08-21|1997-08-17|NONE|TRUCK|ss the furiously regular d| +73513|661599|24113|2|1|1560.56|0.10|0.04|N|O|1997-09-02|1997-09-18|1997-09-29|TAKE BACK RETURN|MAIL|ld theodolites? bold packa| +73514|268837|6353|1|23|41533.86|0.08|0.03|N|O|1997-02-19|1997-02-19|1997-03-12|COLLECT COD|SHIP|lar theodolites are carefully silent| +73514|334387|34388|2|12|17056.44|0.04|0.01|N|O|1996-12-14|1997-01-21|1997-01-02|COLLECT COD|REG AIR|yly bold theodolites. furiously| +73514|35686|10687|3|8|12973.44|0.02|0.04|N|O|1996-12-24|1997-02-17|1997-01-07|COLLECT COD|MAIL|ticing excuses above| +73514|770960|45991|4|35|71082.55|0.07|0.05|N|O|1996-12-29|1997-02-16|1997-01-15|DELIVER IN PERSON|FOB|platelets; regula| +73514|514597|27108|5|24|38677.68|0.05|0.05|N|O|1996-11-29|1997-01-05|1996-12-09|NONE|SHIP|eas haggle. c| +73515|311808|49327|1|40|72791.60|0.01|0.01|N|O|1995-09-16|1995-10-29|1995-09-26|TAKE BACK RETURN|MAIL| cajole idly about the carefully ironic the| +73515|543110|5621|2|4|4612.36|0.08|0.01|N|O|1995-12-06|1995-09-30|1996-01-02|DELIVER IN PERSON|SHIP|p furiously furiously regular ideas. quickl| +73515|39357|14358|3|50|64817.50|0.03|0.05|N|O|1995-12-10|1995-10-18|1995-12-29|NONE|AIR|ending, even packages use ab| +73515|470447|20448|4|25|35435.50|0.07|0.03|N|O|1995-10-02|1995-09-25|1995-10-17|NONE|SHIP| permanently even | +73515|797398|22429|5|40|59814.40|0.07|0.07|N|O|1995-09-02|1995-10-09|1995-09-30|NONE|SHIP|eodolites. qui| +73516|605869|5870|1|28|49695.24|0.01|0.02|N|O|1997-08-19|1997-09-20|1997-08-31|NONE|RAIL|ate fluffily blithely regular asymptotes| +73516|827936|40453|2|15|27958.35|0.06|0.07|N|O|1997-07-08|1997-08-22|1997-07-11|TAKE BACK RETURN|FOB|ncies are furio| +73516|106024|6025|3|48|49440.96|0.10|0.05|N|O|1997-08-12|1997-08-24|1997-08-17|COLLECT COD|AIR|accounts abou| +73516|941603|4122|4|21|34535.76|0.10|0.04|N|O|1997-09-22|1997-08-18|1997-10-04|NONE|SHIP|ven packages. even| +73516|505370|17881|5|26|35759.10|0.06|0.01|N|O|1997-07-08|1997-09-27|1997-07-13|TAKE BACK RETURN|AIR|fily slyly express instructio| +73517|832305|44822|1|31|38355.06|0.05|0.00|N|O|1995-08-31|1995-08-18|1995-09-04|TAKE BACK RETURN|TRUCK|ans. ironic plate| +73517|541661|29192|2|25|42566.00|0.00|0.01|N|O|1995-11-07|1995-10-01|1995-12-01|DELIVER IN PERSON|TRUCK|er the blit| +73517|687680|25220|3|36|60035.40|0.05|0.04|N|O|1995-10-27|1995-09-25|1995-10-29|TAKE BACK RETURN|SHIP|le carefully. slyly pending fox| +73518|68242|5746|1|39|47199.36|0.05|0.06|N|O|1995-12-14|1995-11-08|1995-12-16|DELIVER IN PERSON|AIR|usly perman| +73518|927986|3023|2|33|66460.02|0.07|0.08|N|O|1995-11-13|1995-11-26|1995-12-12|NONE|TRUCK|fily even requests. final account| +73518|649271|49272|3|29|35386.96|0.06|0.04|N|O|1995-12-27|1995-11-09|1996-01-25|COLLECT COD|MAIL| sauternes detect care| +73518|288510|1016|4|25|37462.50|0.02|0.00|N|O|1995-11-03|1995-10-26|1995-11-09|TAKE BACK RETURN|AIR|across the reg| +73518|971886|21887|5|47|92018.48|0.07|0.07|N|O|1995-12-19|1995-12-02|1995-12-24|COLLECT COD|SHIP|as. carefully even f| +73518|487793|12812|6|16|28492.32|0.06|0.02|N|O|1995-12-19|1995-12-01|1996-01-15|COLLECT COD|RAIL|ly about the slyly silent platelets. quic| +73518|331210|18729|7|7|8688.40|0.03|0.01|N|O|1995-11-20|1995-12-08|1995-11-28|COLLECT COD|AIR|. regular pinto beans according to the pe| +73519|636564|24101|1|29|43515.37|0.02|0.02|N|O|1997-01-20|1997-02-24|1997-02-12|COLLECT COD|MAIL|dependencies. furiously bold plate| +73519|730904|5933|2|32|61915.84|0.10|0.02|N|O|1997-03-30|1997-01-14|1997-04-01|COLLECT COD|RAIL|ounts nag.| +73519|291394|28910|3|29|40176.02|0.07|0.06|N|O|1997-01-16|1997-03-01|1997-01-19|COLLECT COD|RAIL|zle finally. instructions| +73519|442219|17236|4|25|29029.75|0.03|0.08|N|O|1996-12-16|1997-02-22|1996-12-19|DELIVER IN PERSON|REG AIR|r, regular deposits hang sl| +73519|369624|44639|5|11|18629.71|0.10|0.06|N|O|1996-12-14|1997-01-05|1997-01-12|TAKE BACK RETURN|TRUCK|equests. fluffily stealthy inst| +73544|47783|10284|1|20|34615.60|0.07|0.06|N|O|1998-06-16|1998-05-23|1998-06-20|COLLECT COD|AIR|slyly ironically bold deposits| +73544|75834|25835|2|31|56104.73|0.05|0.07|N|O|1998-08-18|1998-06-26|1998-08-22|DELIVER IN PERSON|REG AIR|ic foxes. bold requests nod carefu| +73544|535716|48227|3|3|5255.07|0.05|0.05|N|O|1998-06-06|1998-06-16|1998-06-17|NONE|REG AIR| fluffily ev| +73544|765050|27566|4|9|10035.18|0.07|0.05|N|O|1998-04-23|1998-06-08|1998-05-21|TAKE BACK RETURN|FOB|packages wa| +73545|706656|44199|1|8|13300.96|0.05|0.02|A|F|1994-12-05|1994-10-28|1994-12-09|TAKE BACK RETURN|AIR|s sleep slyly sly accou| +73545|764982|40013|2|43|88018.85|0.01|0.07|A|F|1994-12-28|1994-12-11|1995-01-26|NONE|TRUCK|grate carefully regular dependencies.| +73545|36546|49047|3|14|20755.56|0.05|0.02|R|F|1994-11-16|1994-11-18|1994-11-20|NONE|MAIL|y quiet packages doze slyly. furio| +73545|218320|30825|4|24|29719.44|0.07|0.05|A|F|1994-09-19|1994-12-06|1994-10-18|COLLECT COD|SHIP|posits doubt. stealthily final excuses a| +73545|298443|48444|5|45|64864.35|0.06|0.06|R|F|1994-11-24|1994-11-06|1994-11-25|COLLECT COD|SHIP|sits cajole blithely even deco| +73545|916772|41809|6|2|3577.46|0.06|0.02|R|F|1994-11-26|1994-11-05|1994-12-13|TAKE BACK RETURN|MAIL|sly ironic foxes across the| +73545|175085|12595|7|24|27841.92|0.10|0.07|R|F|1994-10-03|1994-11-04|1994-10-26|TAKE BACK RETURN|AIR|s sleep slyly| +73546|640562|28099|1|6|9015.18|0.07|0.07|N|O|1997-03-01|1997-02-10|1997-03-22|TAKE BACK RETURN|TRUCK|sts affix slyly.| +73546|916684|16685|2|37|62923.68|0.04|0.02|N|O|1997-01-29|1997-02-18|1997-01-30|TAKE BACK RETURN|RAIL|s. special ideas wake quic| +73546|695220|32760|3|35|42531.65|0.09|0.04|N|O|1997-04-01|1997-01-11|1997-04-04|TAKE BACK RETURN|REG AIR|rding to the excuses wake carefully after | +73546|554815|4816|4|1|1869.79|0.02|0.01|N|O|1996-12-13|1997-01-12|1996-12-28|NONE|SHIP| requests nag after the stealthy, even i| +73546|773126|48157|5|44|52759.96|0.08|0.05|N|O|1996-12-23|1997-01-24|1996-12-24|TAKE BACK RETURN|SHIP| slyly final theo| +73547|437461|24986|1|35|48945.40|0.06|0.01|N|O|1995-11-17|1995-11-06|1995-12-17|DELIVER IN PERSON|SHIP|ns. furiously express| +73548|372364|47379|1|28|40217.80|0.00|0.06|N|O|1997-02-15|1997-02-13|1997-03-01|TAKE BACK RETURN|AIR|und the even, regular idea| +73549|687734|12761|1|7|12051.90|0.08|0.03|N|O|1998-06-20|1998-08-01|1998-06-27|TAKE BACK RETURN|SHIP| use slyly furious r| +73549|736851|36852|2|49|92503.18|0.00|0.03|N|O|1998-08-12|1998-06-08|1998-09-06|TAKE BACK RETURN|SHIP|express deposits.| +73549|244890|19899|3|6|11009.28|0.07|0.04|N|O|1998-05-15|1998-07-01|1998-05-27|NONE|FOB|uriously ironic accounts could have to sle| +73549|861266|11267|4|44|53997.68|0.09|0.06|N|O|1998-07-10|1998-08-05|1998-07-17|COLLECT COD|SHIP|lly special requests? carefully ironic depe| +73550|926074|13629|1|45|49501.35|0.03|0.08|R|F|1992-04-28|1992-06-01|1992-05-12|DELIVER IN PERSON|AIR|are furiously above| +73550|511240|48771|2|16|20019.52|0.08|0.08|A|F|1992-08-05|1992-06-11|1992-08-28|DELIVER IN PERSON|FOB|es. regular reque| +73550|409110|46635|3|23|23439.07|0.01|0.06|A|F|1992-07-04|1992-06-03|1992-07-27|NONE|REG AIR|side of the| +73551|753862|41408|1|47|90044.01|0.07|0.07|N|O|1996-12-13|1996-11-14|1997-01-10|TAKE BACK RETURN|SHIP|riously. pending, special | +73551|153069|40579|2|40|44882.40|0.07|0.02|N|O|1996-11-04|1996-12-12|1996-11-24|DELIVER IN PERSON|TRUCK|re blithely. final packag| +73551|625813|838|3|11|19126.58|0.10|0.06|N|O|1996-11-06|1996-10-31|1996-11-17|TAKE BACK RETURN|RAIL|ar accounts. carefully | +73576|921751|21752|1|21|37226.91|0.03|0.02|A|F|1993-01-23|1993-03-19|1993-02-21|TAKE BACK RETURN|FOB|unts. slyly final pinto | +73576|853725|41277|2|23|38609.64|0.07|0.03|A|F|1993-01-08|1993-03-16|1993-01-25|COLLECT COD|MAIL| accounts wake. blithely unusu| +73576|544543|44544|3|35|55563.20|0.05|0.07|R|F|1993-04-06|1993-03-16|1993-04-13|TAKE BACK RETURN|MAIL|fily above the final accoun| +73576|126981|26982|4|22|44175.56|0.04|0.00|A|F|1993-03-22|1993-02-07|1993-04-07|NONE|TRUCK|olphins on the quickly u| +73576|160980|48490|5|47|95926.06|0.00|0.01|R|F|1993-03-18|1993-02-28|1993-04-14|DELIVER IN PERSON|FOB|iously. ironic, fluffy ideas after the s| +73576|588994|1506|6|11|22912.67|0.07|0.04|A|F|1993-03-31|1993-02-18|1993-04-16|COLLECT COD|MAIL|y final instructions. carefully | +73576|213039|552|7|1|952.02|0.06|0.05|R|F|1993-03-10|1993-01-31|1993-03-17|TAKE BACK RETURN|RAIL|eans. requests cajo| +73577|544159|19180|1|49|58953.37|0.02|0.01|A|F|1993-09-04|1993-09-03|1993-09-23|COLLECT COD|AIR|ng deposits boost carefully f| +73577|679508|17048|2|9|13387.23|0.00|0.00|R|F|1993-07-23|1993-09-20|1993-07-30|TAKE BACK RETURN|TRUCK|he finally even instructio| +73577|489579|39580|3|47|73721.85|0.02|0.06|R|F|1993-08-01|1993-09-11|1993-08-02|COLLECT COD|AIR|ts. ironic theodolites are furiously abou| +73577|346095|46096|4|50|57054.00|0.07|0.06|R|F|1993-07-08|1993-08-08|1993-07-28|TAKE BACK RETURN|MAIL|ding to the fluffily regular requests s| +73577|813259|13260|5|3|3516.63|0.00|0.03|A|F|1993-10-19|1993-09-11|1993-11-09|NONE|SHIP|he slyly final excuses hang car| +73578|476117|38627|1|23|25141.07|0.03|0.02|N|O|1997-05-26|1997-03-31|1997-06-07|NONE|MAIL|fully furi| +73578|88233|735|2|19|23203.37|0.09|0.04|N|O|1997-06-19|1997-05-25|1997-07-06|TAKE BACK RETURN|TRUCK| regular theodolites a| +73578|923981|36500|3|33|66163.02|0.06|0.01|N|O|1997-06-14|1997-04-05|1997-06-22|NONE|FOB|quests wake furiously along the| +73578|341861|4368|4|28|53279.80|0.09|0.06|N|O|1997-05-18|1997-04-04|1997-06-16|TAKE BACK RETURN|AIR|efully ironic pinto | +73578|655917|5918|5|39|73042.32|0.04|0.00|N|O|1997-05-22|1997-04-30|1997-06-06|NONE|SHIP|y final frays bo| +73579|935319|22874|1|3|4062.81|0.07|0.03|N|O|1996-10-12|1996-11-06|1996-10-15|DELIVER IN PERSON|TRUCK|pitaphs grow around the quickly ruthl| +73580|430283|42792|1|48|58236.48|0.00|0.03|R|F|1992-09-19|1992-08-09|1992-09-22|NONE|SHIP|ss the slyly iron| +73581|528950|3971|1|35|69262.55|0.07|0.01|A|F|1994-10-01|1994-12-12|1994-10-06|COLLECT COD|AIR| carefully pending ideas at the carefu| +73581|49775|49776|2|31|53467.87|0.03|0.08|A|F|1994-10-20|1994-10-29|1994-10-22|DELIVER IN PERSON|MAIL|haggle slyly. carefull| +73581|568280|18281|3|50|67413.00|0.06|0.00|A|F|1994-10-28|1994-11-29|1994-11-19|COLLECT COD|TRUCK|ic foxes grow ca| +73582|6613|31614|1|15|22794.15|0.05|0.06|R|F|1994-03-18|1994-04-22|1994-03-23|DELIVER IN PERSON|FOB|iously final pinto bea| +73582|130891|30892|2|5|9609.45|0.01|0.03|R|F|1994-02-06|1994-04-05|1994-03-05|NONE|TRUCK|ular requests affix fluffily fina| +73582|873478|35996|3|11|15965.73|0.10|0.04|R|F|1994-03-05|1994-03-21|1994-03-10|TAKE BACK RETURN|FOB| regular accounts are furiously. blithely | +73582|530354|5375|4|21|29070.93|0.06|0.02|R|F|1994-02-17|1994-05-01|1994-03-11|COLLECT COD|RAIL|unusual excu| +73582|646154|21179|5|10|11001.20|0.00|0.01|A|F|1994-03-24|1994-05-02|1994-04-20|DELIVER IN PERSON|FOB|xpress warhorses| +73582|894928|7446|6|24|46149.12|0.05|0.07|A|F|1994-04-24|1994-04-17|1994-05-07|TAKE BACK RETURN|AIR|e accounts. fluffy pinto beans cajole | +73582|38389|13390|7|47|62386.86|0.06|0.04|A|F|1994-03-07|1994-04-11|1994-03-20|COLLECT COD|REG AIR|nts. furiously| +73583|191990|41991|1|35|72869.65|0.07|0.03|N|O|1997-02-25|1997-02-16|1997-03-03|TAKE BACK RETURN|AIR|althily even deposits.| +73583|774949|24950|2|39|78932.49|0.02|0.08|N|O|1997-02-13|1997-01-19|1997-02-18|COLLECT COD|FOB|eans. carefully final| +73583|562312|49846|3|12|16491.48|0.02|0.00|N|O|1997-03-24|1997-01-24|1997-04-02|NONE|RAIL|uests to the clo| +73583|771785|46816|4|5|9283.75|0.01|0.08|N|O|1997-01-03|1997-02-09|1997-01-05|COLLECT COD|SHIP|en deposits. silently| +73583|390413|27935|5|8|12027.20|0.03|0.05|N|O|1997-04-02|1997-02-14|1997-04-28|NONE|MAIL|lly express, bold ideas. quickly even reque| +73583|668333|30847|6|8|10410.40|0.04|0.05|N|O|1996-12-22|1997-01-20|1997-01-16|NONE|RAIL|ests sleep theodolites. furiously unusu| +73583|656529|31556|7|43|63876.07|0.00|0.05|N|O|1997-01-23|1997-03-01|1997-02-20|TAKE BACK RETURN|SHIP| cajole quic| +73608|273752|36258|1|39|67303.86|0.08|0.00|N|O|1996-09-13|1996-10-15|1996-10-13|COLLECT COD|MAIL|luffily across the furiously r| +73608|946050|21087|2|47|51512.47|0.02|0.03|N|O|1996-10-01|1996-10-16|1996-10-30|DELIVER IN PERSON|AIR|egular requests haggle after the e| +73609|298669|23680|1|28|46694.20|0.06|0.01|N|O|1996-02-27|1996-02-24|1996-03-20|COLLECT COD|RAIL|ments. furiously final the| +73609|720708|33223|2|23|39759.41|0.10|0.07|N|O|1996-02-09|1996-02-01|1996-02-23|DELIVER IN PERSON|SHIP|refully. carefully regular requests sl| +73609|933172|33173|3|29|34948.77|0.04|0.01|N|O|1996-01-12|1996-02-14|1996-02-07|DELIVER IN PERSON|MAIL|uriously above th| +73610|385435|35436|1|23|34969.66|0.09|0.06|N|O|1996-09-29|1996-09-30|1996-10-14|NONE|MAIL|sly regular r| +73610|3576|28577|2|26|38468.82|0.02|0.05|N|O|1996-08-09|1996-08-28|1996-08-11|NONE|SHIP|uests integrat| +73610|100584|38091|3|5|7922.90|0.01|0.02|N|O|1996-10-18|1996-09-12|1996-11-14|NONE|AIR|r deposits| +73611|579937|4960|1|44|88744.04|0.01|0.02|A|F|1992-07-23|1992-06-25|1992-07-25|COLLECT COD|SHIP|s run furiously against the bold, even| +73611|992709|30267|2|15|27024.90|0.08|0.03|R|F|1992-07-29|1992-08-05|1992-08-16|DELIVER IN PERSON|MAIL|gularly bold | +73611|446094|46095|3|23|23921.61|0.05|0.07|R|F|1992-08-19|1992-08-05|1992-09-18|NONE|SHIP|ly express packages. ca| +73611|490150|40151|4|50|57006.50|0.10|0.03|R|F|1992-09-01|1992-08-01|1992-10-01|TAKE BACK RETURN|AIR|ke blithely alongside of the| +73611|943611|43612|5|10|16545.70|0.09|0.01|A|F|1992-07-17|1992-06-26|1992-08-11|NONE|TRUCK|-- bold theodol| +73612|986411|36412|1|20|29947.40|0.07|0.04|A|F|1992-10-01|1992-10-15|1992-10-28|NONE|TRUCK|ead of the final | +73613|717727|30242|1|1|1744.69|0.09|0.01|A|F|1995-02-12|1995-04-18|1995-02-19|TAKE BACK RETURN|RAIL|equests cajole furiously final| +73613|829468|4501|2|3|4192.26|0.00|0.07|R|F|1995-04-06|1995-04-12|1995-05-04|NONE|MAIL|as. carefully special deposi| +73613|857213|7214|3|7|8191.19|0.08|0.00|A|F|1995-01-25|1995-04-01|1995-02-07|DELIVER IN PERSON|REG AIR|lent theodolites boost furiously. qui| +73614|651631|1632|1|3|4747.80|0.08|0.03|N|O|1997-02-06|1996-12-20|1997-02-11|NONE|RAIL|le. packages sleep bl| +73614|959882|47440|2|17|33011.28|0.01|0.07|N|O|1997-02-22|1997-01-07|1997-03-06|COLLECT COD|TRUCK|ss platelets are carefully. regular, | +73614|733104|45619|3|47|53442.29|0.06|0.01|N|O|1997-01-08|1997-01-10|1997-01-11|COLLECT COD|AIR|ng the pack| +73614|262864|37875|4|25|45671.25|0.04|0.05|N|O|1996-11-17|1997-01-03|1996-11-30|NONE|RAIL|final dependencies. s| +73614|954972|30011|5|35|70942.55|0.02|0.02|N|O|1997-01-27|1997-01-14|1997-02-17|DELIVER IN PERSON|FOB|refully carefully fin| +73614|198671|11175|6|33|58399.11|0.01|0.01|N|O|1996-12-24|1997-01-23|1997-01-07|NONE|TRUCK|eaves against the blithely qu| +73614|51972|14474|7|36|69262.92|0.08|0.00|N|O|1997-02-08|1997-02-02|1997-03-05|DELIVER IN PERSON|FOB|osits promise a| +73615|487174|37175|1|5|5805.75|0.02|0.00|N|O|1996-10-31|1996-11-08|1996-11-26|DELIVER IN PERSON|AIR|, final packages? slyl| +73615|923548|36067|2|42|66003.00|0.09|0.05|N|O|1996-12-13|1996-11-20|1996-12-28|DELIVER IN PERSON|TRUCK|try to sleep ir| +73615|55136|5137|3|25|27278.25|0.06|0.00|N|O|1996-12-08|1996-11-15|1996-12-14|COLLECT COD|MAIL|outs among the fluffily pending| +73615|661342|36369|4|39|50829.09|0.01|0.08|N|O|1996-09-23|1996-11-17|1996-10-23|DELIVER IN PERSON|REG AIR| final, regular dep| +73640|385936|23458|1|10|20219.20|0.10|0.01|N|O|1998-01-14|1998-02-24|1998-02-03|COLLECT COD|FOB|ly quiet asymptot| +73640|425008|25009|2|35|32654.30|0.07|0.05|N|O|1998-03-11|1998-02-15|1998-04-03|NONE|MAIL| fluffily above the | +73640|101373|26378|3|42|57723.54|0.05|0.07|N|O|1998-04-16|1998-03-10|1998-04-26|TAKE BACK RETURN|TRUCK|s alongside of| +73641|139456|26963|1|26|38881.70|0.08|0.06|A|F|1994-03-26|1994-01-06|1994-03-27|COLLECT COD|RAIL|ously unusual deposits| +73641|830595|30596|2|21|32036.55|0.07|0.03|R|F|1993-11-30|1994-01-24|1993-12-27|DELIVER IN PERSON|TRUCK|onic pinto beans wake slyly alon| +73641|795555|45556|3|5|8252.60|0.06|0.04|A|F|1994-02-23|1994-01-04|1994-02-25|TAKE BACK RETURN|RAIL|dependencies. furiousl| +73641|891048|16083|4|28|29092.00|0.07|0.06|R|F|1993-12-14|1994-02-07|1994-01-13|COLLECT COD|MAIL|arefully pending accounts. boldly even| +73642|718218|43247|1|27|33376.86|0.08|0.05|N|O|1996-11-22|1996-10-12|1996-11-25|NONE|AIR|e carefully even | +73642|86733|24237|2|50|85986.50|0.04|0.07|N|O|1996-09-08|1996-10-26|1996-09-09|TAKE BACK RETURN|AIR| sleep carefully special accounts:| +73642|721358|46387|3|4|5517.28|0.05|0.00|N|O|1996-10-03|1996-11-27|1996-10-21|TAKE BACK RETURN|RAIL|excuses engage unusua| +73642|857265|44817|4|42|51333.24|0.09|0.03|N|O|1997-01-02|1996-11-04|1997-01-27|TAKE BACK RETURN|RAIL|longside of the instruc| +73642|40884|3385|5|5|9124.40|0.08|0.01|N|O|1996-10-10|1996-11-21|1996-10-18|NONE|REG AIR|mptotes. idle account| +73642|127806|40309|6|48|88022.40|0.10|0.01|N|O|1996-09-13|1996-10-21|1996-10-05|COLLECT COD|SHIP|to beans according to | +73642|22099|9600|7|17|17358.53|0.01|0.07|N|O|1996-10-13|1996-10-14|1996-10-27|NONE|MAIL|l, pending dependencies about the pac| +73643|403281|3282|1|21|24869.46|0.10|0.05|A|F|1993-04-17|1993-06-12|1993-05-13|NONE|RAIL|pecial packages a| +73643|931467|43986|2|10|14984.20|0.02|0.03|A|F|1993-04-19|1993-06-01|1993-05-11|NONE|MAIL|deas-- furiously regula| +73644|34391|9392|1|21|27833.19|0.08|0.08|N|O|1995-07-14|1995-05-12|1995-07-20|NONE|AIR|ourts impress carefull| +73644|995833|20872|2|2|3857.58|0.08|0.07|A|F|1995-05-17|1995-06-02|1995-05-24|NONE|REG AIR|le slyly. even dependencies after t| +73644|952016|39574|3|43|45922.71|0.02|0.05|N|O|1995-07-24|1995-05-26|1995-08-02|COLLECT COD|SHIP|packages: bravely regula| +73645|885690|48208|1|41|68701.65|0.04|0.00|R|F|1993-10-05|1993-09-30|1993-10-07|NONE|RAIL|timents. ruthlessly | +73645|782593|32594|2|38|63671.28|0.05|0.03|A|F|1993-11-04|1993-09-24|1993-11-10|DELIVER IN PERSON|RAIL|packages cajol| +73645|31256|18757|3|14|16621.50|0.03|0.08|R|F|1993-09-30|1993-08-27|1993-10-16|COLLECT COD|RAIL|ly bold, final de| +73645|305772|5773|4|33|58666.08|0.07|0.02|R|F|1993-08-31|1993-08-21|1993-09-11|COLLECT COD|RAIL|uriously thin instruc| +73646|918062|43099|1|8|8640.16|0.03|0.08|A|F|1995-02-27|1995-02-15|1995-03-28|TAKE BACK RETURN|FOB|idle frets. fluffily eve| +73646|864036|39071|2|33|32999.67|0.02|0.02|A|F|1995-01-13|1995-03-16|1995-02-12|TAKE BACK RETURN|MAIL|he accounts. pending packa| +73646|840558|40559|3|6|8991.06|0.06|0.02|A|F|1995-03-22|1995-03-30|1995-04-07|DELIVER IN PERSON|MAIL|ing dependencies accordi| +73646|255502|30513|4|31|45182.19|0.03|0.06|A|F|1995-04-20|1995-03-27|1995-05-17|DELIVER IN PERSON|AIR|pades haggle| +73647|63123|627|1|31|33669.72|0.05|0.00|R|F|1994-12-09|1994-11-09|1994-12-28|DELIVER IN PERSON|SHIP|tes accordin| +73647|904652|4653|2|13|21535.93|0.10|0.04|R|F|1994-12-11|1994-12-16|1994-12-22|TAKE BACK RETURN|MAIL|al packages. furiously regul| +73647|470878|20879|3|34|62860.90|0.02|0.03|A|F|1994-11-15|1994-11-30|1994-11-25|DELIVER IN PERSON|SHIP|tes! quickly ironic theodolites | +73647|35341|10342|4|34|43395.56|0.08|0.04|R|F|1995-01-23|1994-11-24|1995-02-09|COLLECT COD|AIR|uriously ev| +73672|960603|35642|1|17|28280.52|0.05|0.02|A|F|1992-06-07|1992-05-19|1992-07-03|DELIVER IN PERSON|FOB|sly ironic pinto beans sleep care| +73672|845928|8445|2|19|35603.72|0.02|0.07|R|F|1992-07-08|1992-05-28|1992-07-15|TAKE BACK RETURN|TRUCK|press attainments sleep furiously s| +73672|508347|33368|3|48|65055.36|0.05|0.03|R|F|1992-03-22|1992-04-25|1992-04-20|COLLECT COD|TRUCK|g pinto beans c| +73672|778501|3532|4|39|61599.33|0.00|0.02|A|F|1992-05-11|1992-04-27|1992-05-12|COLLECT COD|MAIL|gular, ironic theodolites engag| +73672|255948|18454|5|4|7615.72|0.09|0.03|R|F|1992-07-07|1992-06-15|1992-07-08|NONE|AIR|hely express instruction| +73672|708712|33741|6|40|68827.20|0.08|0.03|R|F|1992-06-14|1992-05-25|1992-07-04|DELIVER IN PERSON|TRUCK|uffily regular instructions wake ca| +73673|593795|18818|1|30|56663.10|0.07|0.05|A|F|1993-04-17|1993-05-21|1993-05-02|COLLECT COD|AIR|ounts; car| +73673|904245|16764|2|40|49968.00|0.00|0.00|A|F|1993-04-06|1993-04-14|1993-04-20|DELIVER IN PERSON|SHIP|g the express, bold dolphins boost ca| +73673|632877|32878|3|43|77823.12|0.01|0.02|R|F|1993-05-04|1993-04-17|1993-05-19|COLLECT COD|SHIP|ely final foxes | +73673|759849|47395|4|24|45811.44|0.01|0.02|R|F|1993-06-02|1993-04-21|1993-06-21|DELIVER IN PERSON|RAIL|s use furiously furiously express theo| +73673|778882|16428|5|16|31373.60|0.08|0.04|A|F|1993-04-23|1993-05-18|1993-05-05|TAKE BACK RETURN|FOB| have to hi| +73673|667012|42039|6|11|10768.78|0.05|0.01|R|F|1993-05-02|1993-04-07|1993-05-12|TAKE BACK RETURN|RAIL|cingly ironic packages boost | +73673|466322|3850|7|44|56685.20|0.07|0.05|R|F|1993-03-19|1993-04-26|1993-03-20|COLLECT COD|FOB|uriously fin| +73674|473039|48058|1|40|40480.40|0.06|0.07|N|O|1998-06-21|1998-05-21|1998-07-08|TAKE BACK RETURN|SHIP| furiously pending instruction| +73674|353162|15670|2|38|46175.70|0.06|0.03|N|O|1998-05-13|1998-06-03|1998-05-28|TAKE BACK RETURN|FOB|as. slyly even patterns sleep. depos| +73674|579978|5001|3|31|63796.45|0.02|0.06|N|O|1998-03-20|1998-04-16|1998-04-19|COLLECT COD|TRUCK|inst the slyly ironic id| +73675|368347|43362|1|34|48121.22|0.00|0.05|N|O|1996-08-03|1996-08-22|1996-08-27|COLLECT COD|FOB| furiously final| +73675|801839|26872|2|38|66150.02|0.10|0.03|N|O|1996-08-16|1996-07-02|1996-09-13|COLLECT COD|RAIL|ously ironic requests. quickly express e| +73675|507338|19849|3|42|56503.02|0.02|0.06|N|O|1996-09-07|1996-07-23|1996-09-20|DELIVER IN PERSON|AIR|s are slyly. express deposits ca| +73676|541170|41171|1|8|9689.20|0.06|0.01|A|F|1994-01-04|1993-11-28|1994-01-13|TAKE BACK RETURN|TRUCK|ructions. ideas haggle carefully| +73676|429960|42469|2|4|7559.76|0.08|0.05|A|F|1993-12-06|1993-11-23|1993-12-25|TAKE BACK RETURN|REG AIR|egular dept| +73676|333143|33144|3|17|19994.21|0.10|0.07|A|F|1994-01-25|1993-12-27|1994-02-02|TAKE BACK RETURN|MAIL|ar, ironic platelets. blithely regu| +73676|128308|15815|4|41|54788.30|0.09|0.06|A|F|1993-10-16|1993-11-23|1993-11-02|TAKE BACK RETURN|SHIP|gular asymptotes according| +73676|460639|35658|5|8|12796.88|0.03|0.04|R|F|1993-12-28|1993-12-12|1994-01-26|NONE|RAIL|inal pinto beans integrate slyly unusual re| +73676|945675|33230|6|22|37853.86|0.03|0.02|A|F|1993-10-08|1993-12-19|1993-10-29|DELIVER IN PERSON|MAIL|ions according to the slyly fi| +73676|946359|33914|7|36|50591.16|0.09|0.03|R|F|1993-12-10|1993-12-27|1994-01-09|DELIVER IN PERSON|TRUCK|d wake after the carefull| +73677|447749|10258|1|16|27147.52|0.00|0.08|R|F|1994-09-26|1994-09-24|1994-10-08|DELIVER IN PERSON|MAIL|s can integrate blithely. ins| +73677|303532|41051|2|4|6142.08|0.07|0.06|R|F|1994-11-08|1994-09-13|1994-12-01|COLLECT COD|TRUCK|lent theodolites a| +73677|461265|36284|3|9|11036.16|0.10|0.04|A|F|1994-09-16|1994-08-10|1994-09-22|COLLECT COD|SHIP|gular packages| +73677|476986|39496|4|14|27481.44|0.08|0.06|A|F|1994-09-15|1994-09-25|1994-10-10|COLLECT COD|AIR|y. packages are flu| +73678|178505|28506|1|19|30086.50|0.07|0.05|R|F|1994-01-23|1993-12-29|1994-01-27|NONE|AIR| unusual, ironic theodol| +73678|118333|5840|2|50|67566.50|0.01|0.05|A|F|1994-01-03|1994-01-15|1994-01-11|NONE|SHIP|eposits against the blithely | +73678|822728|47761|3|8|13205.44|0.08|0.02|R|F|1993-12-10|1993-12-16|1993-12-26|COLLECT COD|SHIP|ross the ironic packages. | +73678|587243|24777|4|9|11971.98|0.03|0.06|A|F|1994-02-10|1993-12-10|1994-02-23|NONE|REG AIR|he accounts. ironic braids sleep | +73678|785727|23273|5|11|19939.59|0.10|0.06|A|F|1993-12-06|1993-11-30|1993-12-29|DELIVER IN PERSON|SHIP|yly. requests| +73678|698448|23475|6|19|27481.79|0.02|0.02|A|F|1993-11-24|1994-01-10|1993-12-05|DELIVER IN PERSON|FOB| slyly unusual ide| +73678|800343|12860|7|35|43515.50|0.05|0.05|A|F|1993-10-25|1994-01-07|1993-11-21|DELIVER IN PERSON|TRUCK| regular deposits cajole furiously carefull| +73679|361894|11895|1|13|25426.44|0.04|0.07|N|O|1997-11-03|1997-11-27|1997-11-09|COLLECT COD|SHIP|l instructions haggle. regular d| +73679|345313|32832|2|31|42107.30|0.05|0.05|N|O|1997-12-03|1997-11-03|1997-12-30|NONE|MAIL|s mold carefully. furiously ironic packa| +73704|59076|46580|1|35|36227.45|0.03|0.02|N|O|1996-05-14|1996-03-18|1996-06-04|COLLECT COD|SHIP|kages. furiously unusual | +73705|879029|29030|1|11|11087.78|0.08|0.08|N|O|1998-04-26|1998-06-01|1998-05-02|NONE|REG AIR|fily regular depos| +73705|839717|27266|2|28|46386.76|0.07|0.03|N|O|1998-04-29|1998-05-18|1998-05-04|TAKE BACK RETURN|SHIP|nusual pinto beans cajole slyly slyly iro| +73706|847140|47141|1|45|48919.50|0.08|0.00|R|F|1994-12-21|1995-02-15|1994-12-29|DELIVER IN PERSON|AIR|ts wake carefully. qui| +73707|932904|7941|1|50|96843.00|0.04|0.07|N|O|1996-08-26|1996-06-27|1996-08-31|DELIVER IN PERSON|REG AIR|ep furiously along the ironic, un| +73707|313966|38979|2|41|81177.95|0.10|0.04|N|O|1996-08-02|1996-08-18|1996-08-27|COLLECT COD|RAIL|e furiously against the slyly regular de| +73707|814348|26865|3|10|12623.00|0.04|0.04|N|O|1996-06-03|1996-07-22|1996-06-28|COLLECT COD|FOB|. bold deposits solve furiously ac| +73707|734667|34668|4|34|57855.42|0.07|0.06|N|O|1996-07-05|1996-07-25|1996-07-16|TAKE BACK RETURN|TRUCK|nusual patterns. quickly special ac| +73707|535712|10733|5|39|68159.91|0.03|0.01|N|O|1996-06-10|1996-07-21|1996-06-25|NONE|RAIL|e bold, even accounts. unusual pinto bean| +73707|705946|18461|6|2|3903.82|0.03|0.02|N|O|1996-07-13|1996-07-05|1996-08-10|COLLECT COD|FOB|le furiously furiously en| +73708|492085|29613|1|10|10770.60|0.08|0.04|N|O|1996-12-14|1996-09-18|1996-12-25|NONE|RAIL|kages cajole above the packa| +73708|456313|18823|2|17|21577.93|0.04|0.02|N|O|1996-09-01|1996-10-14|1996-09-20|DELIVER IN PERSON|RAIL|l, ironic foxes boost about th| +73708|248479|23488|3|47|67090.62|0.10|0.03|N|O|1996-12-06|1996-09-22|1996-12-16|TAKE BACK RETURN|RAIL|stealthy, ironi| +73708|185206|35207|4|24|30988.80|0.02|0.00|N|O|1996-11-08|1996-10-16|1996-12-01|NONE|MAIL|side of the regular| +73708|755604|43150|5|31|51446.67|0.07|0.02|N|O|1996-10-28|1996-11-11|1996-10-31|NONE|FOB|lar theodolites w| +73708|431978|31979|6|29|55388.55|0.05|0.06|N|O|1996-10-29|1996-10-07|1996-11-20|NONE|TRUCK|ons hang slyly. blithely bold deposits use| +73708|251986|39502|7|28|54263.16|0.03|0.00|N|O|1996-12-01|1996-11-15|1996-12-02|TAKE BACK RETURN|AIR|grouches wake slyly. e| +73709|116022|3529|1|38|39444.76|0.10|0.05|A|F|1995-03-04|1995-04-23|1995-03-12|NONE|MAIL|egular, silent orbits hagg| +73709|967396|42435|2|21|30730.35|0.07|0.06|R|F|1995-05-11|1995-04-28|1995-05-30|TAKE BACK RETURN|TRUCK|y ironic platelets. carefully even i| +73709|8120|20621|3|34|34956.08|0.01|0.08|A|F|1995-06-02|1995-04-28|1995-06-13|NONE|AIR|ites thrash ca| +73709|466390|41409|4|36|48829.32|0.03|0.01|A|F|1995-04-27|1995-03-30|1995-05-16|TAKE BACK RETURN|MAIL|ully even asymptotes wa| +73709|606641|6642|5|5|7738.05|0.08|0.02|N|O|1995-06-20|1995-05-22|1995-07-07|DELIVER IN PERSON|REG AIR|furiously across the furiously final | +73709|812547|12548|6|16|23352.00|0.02|0.03|A|F|1995-05-02|1995-05-10|1995-05-12|NONE|REG AIR|pendencies after the final accounts na| +73710|397576|22591|1|28|46859.68|0.08|0.07|N|O|1997-12-10|1998-02-07|1997-12-22|NONE|TRUCK|y express theodolite| +73710|59493|21995|2|20|29049.80|0.00|0.05|N|O|1998-01-12|1998-01-31|1998-01-19|TAKE BACK RETURN|REG AIR|al frays sleep slyly. quickly ir| +73711|789742|39743|1|49|89753.79|0.09|0.06|N|O|1998-01-24|1997-12-07|1998-02-01|COLLECT COD|RAIL| even theodolites among the quickly blithe| +73711|182068|32069|2|50|57503.00|0.02|0.01|N|O|1998-02-17|1997-12-03|1998-03-03|DELIVER IN PERSON|AIR|kages are furiously blithely regul| +73711|6235|43736|3|19|21683.37|0.01|0.08|N|O|1998-01-22|1998-01-20|1998-01-29|DELIVER IN PERSON|MAIL|t blithely. p| +73736|164391|26895|1|19|27652.41|0.04|0.01|N|O|1997-10-14|1997-11-25|1997-10-20|TAKE BACK RETURN|SHIP|efully unusual requests. express courts p| +73736|917157|29676|2|19|22308.09|0.09|0.06|N|O|1997-12-10|1997-10-28|1997-12-19|TAKE BACK RETURN|SHIP|aggle quickly against the blit| +73736|642726|17751|3|39|65078.91|0.07|0.06|N|O|1998-01-01|1997-11-03|1998-01-09|TAKE BACK RETURN|AIR|ly regular | +73736|284843|34844|4|26|47523.58|0.08|0.07|N|O|1997-10-26|1997-11-27|1997-11-06|DELIVER IN PERSON|AIR|s. bravely pending sentimen| +73736|354498|42020|5|25|38812.00|0.04|0.05|N|O|1997-12-30|1997-11-07|1998-01-29|NONE|SHIP|al packages cajole blit| +73737|674075|11615|1|17|17833.68|0.08|0.01|A|F|1995-05-04|1995-04-16|1995-05-19|DELIVER IN PERSON|MAIL|its. quickly pending braids haggle| +73737|165163|15164|2|25|30704.00|0.08|0.05|N|F|1995-05-25|1995-04-22|1995-06-24|TAKE BACK RETURN|MAIL|eep against the quickly even dependen| +73737|888432|38433|3|14|19885.46|0.10|0.04|N|O|1995-07-06|1995-05-30|1995-07-25|DELIVER IN PERSON|SHIP|ironic pinto beans. iro| +73737|873576|11128|4|33|51134.49|0.10|0.02|A|F|1995-03-22|1995-05-23|1995-04-16|TAKE BACK RETURN|FOB|s. carefully fina| +73737|189348|39349|5|23|33058.82|0.07|0.00|N|O|1995-07-03|1995-04-13|1995-07-27|TAKE BACK RETURN|RAIL|blithely between the pe| +73738|400103|104|1|31|31095.48|0.07|0.07|N|O|1996-07-04|1996-08-14|1996-07-09|TAKE BACK RETURN|REG AIR|olites alongside of the pending asymptotes | +73739|509405|34426|1|48|67890.24|0.02|0.02|R|F|1995-02-07|1995-04-05|1995-02-20|COLLECT COD|MAIL|s haggle caref| +73739|559221|9222|2|7|8961.40|0.02|0.02|R|F|1995-01-18|1995-03-24|1995-01-26|DELIVER IN PERSON|RAIL| final account| +73739|825293|12842|3|4|4873.00|0.03|0.02|R|F|1995-02-25|1995-04-10|1995-03-15|DELIVER IN PERSON|MAIL|s detect quickly. brave packages alongside | +73739|684601|47115|4|33|52323.81|0.03|0.00|R|F|1995-02-18|1995-03-05|1995-02-21|TAKE BACK RETURN|AIR|ongside of the even theodolites.| +73739|82166|7169|5|15|17222.40|0.08|0.01|R|F|1995-03-21|1995-04-12|1995-04-07|COLLECT COD|FOB|gle slyly re| +73740|249410|11915|1|41|55735.40|0.04|0.01|R|F|1992-04-19|1992-06-02|1992-05-09|TAKE BACK RETURN|RAIL|instructions. foxes solve. ironic p| +73741|923313|23314|1|8|10690.16|0.09|0.05|N|O|1997-11-18|1997-10-19|1997-12-01|TAKE BACK RETURN|REG AIR|idly. furiou| +73742|475222|25223|1|14|16760.80|0.08|0.01|A|F|1994-10-08|1994-10-05|1994-10-18|DELIVER IN PERSON|TRUCK| nag furiously multipli| +73742|53269|3270|2|3|3666.78|0.06|0.04|R|F|1994-09-27|1994-09-25|1994-10-06|COLLECT COD|RAIL|c pinto beans. slyly unusual d| +73742|283002|45508|3|15|14774.85|0.08|0.07|A|F|1994-10-25|1994-11-13|1994-10-26|TAKE BACK RETURN|FOB|, bold requests| +73742|403579|28596|4|46|68197.30|0.03|0.00|A|F|1994-09-22|1994-10-22|1994-10-18|COLLECT COD|REG AIR|y bold instructi| +73743|169671|32175|1|36|62664.12|0.03|0.05|A|F|1994-09-20|1994-10-10|1994-10-20|NONE|FOB|s haggle frays. final dependencies alo| +73743|651138|26165|2|44|47920.40|0.08|0.08|R|F|1994-09-24|1994-09-22|1994-09-27|TAKE BACK RETURN|MAIL|egular req| +73743|670967|20968|3|49|94958.57|0.10|0.04|A|F|1994-08-28|1994-10-12|1994-09-01|TAKE BACK RETURN|REG AIR|ar foxes wake special, ironic packa| +73768|158773|33780|1|49|89756.73|0.00|0.03|A|F|1992-05-25|1992-06-21|1992-06-02|NONE|AIR|p carefully regular depo| +73768|487097|49607|2|23|24933.61|0.03|0.07|R|F|1992-08-07|1992-07-07|1992-08-27|DELIVER IN PERSON|TRUCK|he dolphins! | +73768|623048|48073|3|29|28159.29|0.03|0.04|R|F|1992-05-29|1992-07-09|1992-06-01|TAKE BACK RETURN|SHIP|dazzle furiously stealthy tithes| +73768|552418|14930|4|33|48522.87|0.09|0.08|R|F|1992-07-13|1992-07-16|1992-07-31|TAKE BACK RETURN|FOB|odolites sleep| +73768|480559|5578|5|11|16934.83|0.00|0.07|A|F|1992-06-19|1992-08-02|1992-07-13|COLLECT COD|FOB|ic deposits boost. | +73768|739187|39188|6|13|15939.95|0.05|0.02|R|F|1992-05-28|1992-06-22|1992-06-03|NONE|AIR|osits wake iron| +73769|835428|10461|1|7|9543.66|0.01|0.05|N|O|1996-11-01|1996-12-03|1996-11-25|NONE|RAIL|t the slyly unusual orbits. packages | +73770|175304|37808|1|3|4137.90|0.10|0.01|N|O|1996-10-23|1996-10-28|1996-11-07|NONE|AIR|s. slyly regular forges aft| +73771|46379|21380|1|31|41086.47|0.00|0.01|N|O|1997-11-26|1998-01-04|1997-12-13|NONE|TRUCK|ounts. final, regular ideas| +73771|491329|16348|2|7|9242.10|0.05|0.03|N|O|1998-01-04|1997-12-03|1998-01-25|DELIVER IN PERSON|FOB| requests cajole along the fluffily | +73771|751893|26924|3|18|35007.48|0.04|0.06|N|O|1998-01-30|1998-01-01|1998-02-09|TAKE BACK RETURN|TRUCK|n accounts wake pending, fin| +73771|61591|11592|4|28|43472.52|0.08|0.03|N|O|1997-11-18|1997-12-01|1997-12-02|NONE|MAIL|e slyly bold foxes | +73772|308166|8167|1|5|5870.75|0.03|0.01|A|F|1994-07-28|1994-09-10|1994-07-31|TAKE BACK RETURN|REG AIR| fluffy theodolites. blithely spec| +73772|343235|43236|2|22|28120.84|0.06|0.04|R|F|1994-11-03|1994-08-30|1994-11-14|DELIVER IN PERSON|MAIL|telets unwind furiously about the f| +73772|734339|46854|3|19|26092.70|0.03|0.00|R|F|1994-07-20|1994-09-27|1994-08-14|NONE|AIR|uctions. slyly even pinto beans| +73773|726367|26368|1|12|16719.96|0.08|0.01|N|O|1998-05-04|1998-05-27|1998-05-26|NONE|SHIP|nly special accounts. slyly unusua| +73773|43711|18712|2|5|8273.55|0.06|0.08|N|O|1998-07-13|1998-06-17|1998-07-24|DELIVER IN PERSON|AIR| after the slyly reg| +73773|642711|42712|3|39|64493.52|0.01|0.05|N|O|1998-06-14|1998-05-18|1998-07-13|TAKE BACK RETURN|SHIP|ent deposits sleep accou| +73774|230469|17982|1|13|18192.85|0.02|0.01|N|O|1998-06-06|1998-07-02|1998-06-11|TAKE BACK RETURN|AIR|l accounts are slyly above the carefully| +73775|158802|46312|1|5|9304.00|0.01|0.08|A|F|1995-04-11|1995-02-19|1995-04-13|NONE|REG AIR|to the bold instructions. regular pac| +73775|975595|25596|2|43|71833.65|0.05|0.06|R|F|1995-04-01|1995-02-10|1995-04-15|DELIVER IN PERSON|REG AIR|pending deposits. fluffily | +73775|817170|42203|3|1|1087.13|0.04|0.07|R|F|1995-02-02|1995-02-08|1995-03-02|COLLECT COD|RAIL|after the accounts. regular frets are fluf| +73775|169813|7323|4|5|9414.05|0.01|0.07|A|F|1995-02-15|1995-02-03|1995-02-18|TAKE BACK RETURN|REG AIR| final foxes after the fluf| +73775|45843|8344|5|13|23254.92|0.01|0.07|R|F|1995-04-09|1995-02-01|1995-04-28|COLLECT COD|REG AIR|yly. ironic, regular excuses are. expre| +73800|219238|19239|1|2|2314.44|0.08|0.01|R|F|1995-06-04|1995-04-08|1995-06-13|TAKE BACK RETURN|MAIL|ully final foxes are c| +73800|728137|3166|2|44|51264.40|0.06|0.05|A|F|1995-04-26|1995-04-03|1995-05-23|COLLECT COD|AIR|t quickly. carefully bold ideas af| +73800|797634|47635|3|2|3463.20|0.03|0.02|R|F|1995-02-17|1995-05-13|1995-03-02|DELIVER IN PERSON|TRUCK|y. express sentiments cajole!| +73800|823398|10947|4|28|36997.80|0.08|0.02|R|F|1995-02-19|1995-05-11|1995-03-17|NONE|SHIP|cross the unusual p| +73800|834299|9332|5|2|2466.50|0.07|0.07|A|F|1995-03-12|1995-03-26|1995-04-06|NONE|TRUCK|ets haggle around the enticingly ruthle| +73800|58009|33012|6|28|27076.00|0.04|0.05|N|F|1995-06-07|1995-05-01|1995-07-02|TAKE BACK RETURN|MAIL| special theodolites are according to| +73801|62727|231|1|20|33794.40|0.03|0.07|N|O|1998-09-20|1998-10-14|1998-10-12|NONE|RAIL|kages unwind quickly afte| +73801|241296|3801|2|7|8660.96|0.10|0.03|N|O|1998-07-24|1998-09-01|1998-08-11|TAKE BACK RETURN|RAIL|boost carefully final| +73801|461128|48656|3|14|15247.40|0.00|0.01|N|O|1998-09-10|1998-08-17|1998-09-21|DELIVER IN PERSON|REG AIR|ters haggle final, ironi| +73801|175235|12745|4|34|44547.82|0.07|0.08|N|O|1998-09-22|1998-09-08|1998-10-09|TAKE BACK RETURN|TRUCK|r requests. | +73802|268447|5963|1|38|53786.34|0.04|0.04|R|F|1994-07-10|1994-06-07|1994-07-19|DELIVER IN PERSON|SHIP|nments. enticingly regular ins| +73802|783716|33717|2|49|88184.32|0.04|0.07|R|F|1994-06-06|1994-05-14|1994-06-21|NONE|RAIL|ending instructions detect blith| +73802|907010|32047|3|23|23390.31|0.03|0.02|A|F|1994-04-24|1994-05-11|1994-05-04|TAKE BACK RETURN|FOB| dogged ideas. pending instructions de| +73802|116283|28786|4|48|62365.44|0.09|0.00|R|F|1994-07-14|1994-05-17|1994-07-25|NONE|FOB|ly unusual| +73802|354177|16685|5|33|40628.28|0.03|0.02|A|F|1994-07-14|1994-06-20|1994-07-31|COLLECT COD|FOB|ts. ideas ar| +73802|648366|10879|6|11|14457.63|0.10|0.08|A|F|1994-05-29|1994-05-13|1994-06-07|TAKE BACK RETURN|MAIL|le carefully among the expre| +73803|968036|18037|1|33|36431.67|0.09|0.06|N|O|1997-02-01|1997-03-26|1997-02-13|DELIVER IN PERSON|MAIL|arefully express platelets. d| +73803|775091|122|2|36|41978.16|0.03|0.00|N|O|1997-04-14|1997-03-14|1997-05-06|NONE|REG AIR|deas among the car| +73803|947672|10191|3|24|41271.12|0.01|0.03|N|O|1997-04-30|1997-03-27|1997-05-06|COLLECT COD|REG AIR| slyly slyly final instructions. blithel| +73803|516545|29056|4|44|68706.88|0.00|0.00|N|O|1997-02-09|1997-02-21|1997-03-03|NONE|SHIP|d the slowly idle attainments. fluffi| +73804|749357|11872|1|37|52033.84|0.04|0.08|A|F|1992-07-23|1992-08-06|1992-07-24|NONE|MAIL|ly about the furiousl| +73804|439403|39404|2|37|49668.06|0.03|0.05|R|F|1992-08-22|1992-08-03|1992-09-04|COLLECT COD|FOB|ccounts. speci| +73804|44203|44204|3|6|6883.20|0.04|0.02|R|F|1992-06-19|1992-08-21|1992-07-16|DELIVER IN PERSON|AIR|quickly ironic | +73804|907130|32167|4|50|56854.50|0.08|0.01|R|F|1992-08-30|1992-07-16|1992-09-07|NONE|MAIL|furiously. even packages boost blithely| +73804|123512|23513|5|42|64491.42|0.02|0.07|R|F|1992-07-17|1992-07-28|1992-07-18|DELIVER IN PERSON|SHIP|fully ironic requests. slyly f| +73804|850702|38254|6|3|4957.98|0.08|0.02|R|F|1992-07-19|1992-07-15|1992-07-23|DELIVER IN PERSON|REG AIR| cajole fluffily. slyly ironic pinto bean| +73805|71684|9188|1|46|76161.28|0.07|0.03|N|O|1996-05-21|1996-07-08|1996-06-19|NONE|SHIP|egular accounts nag slyly | +73805|781415|31416|2|29|43395.02|0.06|0.02|N|O|1996-08-26|1996-07-02|1996-08-29|TAKE BACK RETURN|MAIL| final pinto bean| +73805|237609|25122|3|21|32478.39|0.05|0.00|N|O|1996-06-29|1996-07-05|1996-07-05|COLLECT COD|SHIP|ons. even deposits are b| +73805|480393|30394|4|44|60428.28|0.08|0.03|N|O|1996-06-10|1996-07-29|1996-07-07|COLLECT COD|REG AIR| among the special requests| +73805|950480|25519|5|1|1530.44|0.09|0.06|N|O|1996-06-28|1996-07-11|1996-07-26|COLLECT COD|REG AIR|xpress requests. slyly daring theodo| +73805|707743|20258|6|26|45518.46|0.00|0.06|N|O|1996-06-28|1996-08-04|1996-07-04|COLLECT COD|SHIP|he even, special plat| +73806|896797|46798|1|47|84306.25|0.01|0.05|R|F|1994-09-11|1994-07-29|1994-09-25|NONE|MAIL|se packages according t| +73806|466302|16303|2|22|27902.16|0.08|0.04|R|F|1994-07-24|1994-08-09|1994-07-31|NONE|AIR| grouches. ironic frays about the express | +73806|121721|46726|3|21|36597.12|0.00|0.05|R|F|1994-06-23|1994-08-23|1994-07-03|COLLECT COD|FOB|ly final request| +73806|753390|28421|4|5|7216.80|0.04|0.03|A|F|1994-09-30|1994-07-16|1994-10-09|TAKE BACK RETURN|AIR|ideas sleep carefully.| +73807|99167|24170|1|1|1166.16|0.10|0.08|R|F|1992-04-30|1992-05-19|1992-05-10|DELIVER IN PERSON|AIR|tly final accounts. furiously spe| +73807|683633|46147|2|36|58197.60|0.00|0.01|A|F|1992-06-03|1992-04-04|1992-06-13|NONE|AIR|nooze accounts. quickly regular platele| +73807|810072|22589|3|48|47137.44|0.03|0.07|R|F|1992-06-25|1992-03-30|1992-07-19|COLLECT COD|TRUCK|ithely special instructions. blit| +73807|865478|40513|4|43|62067.49|0.04|0.06|R|F|1992-04-20|1992-04-17|1992-05-05|COLLECT COD|RAIL|eposits haggle carefully furiously| +73807|77932|27933|5|50|95496.50|0.10|0.01|A|F|1992-04-21|1992-04-22|1992-05-01|COLLECT COD|SHIP|ake careful accounts! entic| +73807|790073|40074|6|50|58152.00|0.04|0.02|A|F|1992-04-24|1992-05-14|1992-05-12|TAKE BACK RETURN|AIR|furiously. ironic dol| +73832|458222|45750|1|41|48388.20|0.00|0.05|N|O|1995-12-02|1996-01-28|1995-12-13|NONE|MAIL|ss attainments. quietly | +73832|320385|45398|2|8|11242.96|0.01|0.06|N|O|1996-02-28|1996-02-19|1996-03-20|COLLECT COD|AIR|xes alongside of the carefully final de| +73832|701834|1835|3|4|7343.20|0.02|0.04|N|O|1996-03-12|1996-01-11|1996-03-30|COLLECT COD|SHIP|hily furiously ironic| +73832|717982|30497|4|25|49998.75|0.00|0.00|N|O|1995-12-10|1995-12-30|1996-01-07|NONE|SHIP|ackages. blithely even requests wake | +73832|108441|8442|5|38|55078.72|0.09|0.03|N|O|1996-03-27|1996-02-08|1996-03-28|TAKE BACK RETURN|AIR|ts? pending, ironic deposits haggle blithel| +73833|464475|14476|1|31|44622.95|0.05|0.04|N|O|1995-07-24|1995-09-29|1995-08-09|COLLECT COD|REG AIR| quickly regular instructions poach.| +73833|418452|30961|2|37|50705.91|0.08|0.04|N|O|1995-08-15|1995-09-12|1995-09-07|NONE|SHIP|blithely unusual theodolite| +73833|907464|32501|3|41|60328.22|0.03|0.07|N|O|1995-08-17|1995-08-19|1995-09-01|DELIVER IN PERSON|AIR|ideas believe slyly busily express pa| +73834|113814|13815|1|20|36556.20|0.10|0.06|R|F|1993-12-11|1994-02-03|1993-12-14|COLLECT COD|FOB| quickly carefully final accounts.| +73834|867103|42138|2|21|22471.26|0.00|0.07|A|F|1993-11-27|1994-01-04|1993-12-10|DELIVER IN PERSON|FOB|ckages cajole quick| +73835|63892|38895|1|31|57532.59|0.04|0.03|N|O|1998-07-07|1998-07-23|1998-07-15|NONE|MAIL|ilent packages ha| +73835|820626|33143|2|1|1546.58|0.05|0.01|N|O|1998-07-16|1998-07-05|1998-07-30|COLLECT COD|FOB|thely. furiously special depe| +73836|396411|33933|1|42|63310.80|0.09|0.00|R|F|1993-08-11|1993-08-01|1993-08-28|COLLECT COD|SHIP|ic asymptotes. deposits are. blithely | +73836|471147|46166|2|6|6708.72|0.03|0.06|R|F|1993-07-09|1993-09-14|1993-07-21|NONE|RAIL|s. slyly final deposits s| +73836|556345|43879|3|20|28026.40|0.10|0.06|A|F|1993-10-20|1993-08-05|1993-10-23|NONE|FOB| bold deposits. fluffi| +73836|485065|47575|4|50|52502.00|0.00|0.04|R|F|1993-09-17|1993-09-13|1993-09-26|NONE|TRUCK|ly ironic theodo| +73836|486961|49471|5|17|33114.98|0.10|0.05|A|F|1993-08-06|1993-08-29|1993-08-30|DELIVER IN PERSON|RAIL|xpress theodolites impress i| +73836|338781|1288|6|30|54593.10|0.05|0.08|A|F|1993-07-17|1993-08-01|1993-08-06|TAKE BACK RETURN|REG AIR|posits print furiously alongside of the ex| +73837|466380|16381|1|5|6731.80|0.10|0.03|N|O|1997-01-04|1997-01-03|1997-01-24|COLLECT COD|TRUCK|regular accounts. carefully expr| +73837|442483|4992|2|11|15680.06|0.06|0.04|N|O|1997-03-11|1997-01-25|1997-04-01|NONE|REG AIR|cajole quickly. quickly bold requests use.| +73837|807441|7442|3|26|35058.40|0.00|0.08|N|O|1996-12-31|1997-02-12|1997-01-08|TAKE BACK RETURN|REG AIR|ding to the furiously even ideas| +73837|655633|18147|4|23|36537.80|0.09|0.01|N|O|1997-02-12|1997-01-17|1997-02-24|DELIVER IN PERSON|SHIP|fully stealthy theodolites. furiously i| +73837|211059|11060|5|33|32011.32|0.08|0.07|N|O|1996-11-28|1997-01-15|1996-12-07|NONE|TRUCK|. final courts above the regular dug| +73837|266688|29194|6|2|3309.34|0.10|0.02|N|O|1996-12-25|1997-02-07|1997-01-19|TAKE BACK RETURN|TRUCK|ly regular acc| +73838|838976|26525|1|35|67022.55|0.08|0.08|N|O|1996-03-21|1996-02-10|1996-03-30|COLLECT COD|SHIP|ely careful theodolites are slyly| +73838|661961|36988|2|16|30766.88|0.05|0.06|N|O|1996-01-09|1996-03-01|1996-01-11|COLLECT COD|MAIL|aggle quickly according to the express, f| +73839|640613|15638|1|49|76125.42|0.01|0.07|N|O|1996-01-01|1995-12-24|1996-01-24|TAKE BACK RETURN|RAIL|ce of the carefully| +73864|516529|16530|1|3|4636.50|0.00|0.07|R|F|1993-08-20|1993-10-27|1993-09-07|TAKE BACK RETURN|RAIL|sy pinto beans around t| +73864|296856|9362|2|26|48173.84|0.00|0.03|R|F|1993-10-19|1993-10-01|1993-11-17|TAKE BACK RETURN|TRUCK| bold pack| +73864|251306|13812|3|11|13830.19|0.04|0.06|R|F|1993-11-22|1993-10-22|1993-12-21|COLLECT COD|MAIL|ges across the blithely sly requests x-ra| +73864|699431|24458|4|37|52924.80|0.04|0.01|A|F|1993-09-13|1993-10-16|1993-09-28|TAKE BACK RETURN|SHIP|ly bold pinto beans boo| +73864|323546|36053|5|24|37668.72|0.04|0.02|R|F|1993-09-06|1993-10-03|1993-10-04|NONE|TRUCK|lets. deposits along the unusual pa| +73865|923342|10897|1|47|64169.10|0.10|0.01|R|F|1992-09-30|1992-08-13|1992-10-14|TAKE BACK RETURN|SHIP|uffily bold requests kindle thin, | +73865|602838|27863|2|41|71372.80|0.02|0.00|R|F|1992-08-27|1992-08-27|1992-09-10|DELIVER IN PERSON|SHIP|gular requests are carefully sly a| +73865|896077|46078|3|49|52578.47|0.01|0.04|A|F|1992-08-13|1992-09-24|1992-09-07|COLLECT COD|RAIL|y idly pendi| +73865|353680|28695|4|36|62412.12|0.01|0.02|R|F|1992-08-08|1992-10-03|1992-08-10|NONE|RAIL|e quickly bol| +73866|527305|39816|1|7|9325.96|0.07|0.02|R|F|1993-01-05|1993-01-06|1993-01-28|NONE|MAIL| slyly along the | +73866|407251|7252|2|49|56753.27|0.06|0.08|R|F|1992-11-04|1992-12-26|1992-11-05|NONE|AIR|lithely alo| +73866|652079|14593|3|13|13403.52|0.00|0.06|A|F|1993-01-29|1992-12-01|1993-02-01|DELIVER IN PERSON|FOB|ions are carefully bo| +73867|692348|17375|1|22|29486.82|0.07|0.00|N|O|1998-05-23|1998-05-24|1998-05-24|COLLECT COD|REG AIR|y final instructions. unusual, bold packa| +73867|280259|5270|2|14|17349.36|0.00|0.07|N|O|1998-05-11|1998-04-27|1998-05-31|NONE|TRUCK|rint blithely final| +73868|431054|18579|1|41|40386.23|0.03|0.05|N|O|1996-08-26|1996-07-26|1996-09-13|TAKE BACK RETURN|MAIL|ns? quickly bus| +73868|723436|35951|2|21|30647.40|0.06|0.05|N|O|1996-08-08|1996-07-03|1996-08-22|NONE|AIR|aters wake quickly acr| +73868|781358|31359|3|38|54694.16|0.07|0.04|N|O|1996-08-18|1996-06-08|1996-09-03|COLLECT COD|MAIL|blithely iro| +73868|268258|30764|4|25|30656.00|0.01|0.02|N|O|1996-05-14|1996-06-11|1996-06-07|DELIVER IN PERSON|TRUCK| slyly silent deposits haggle above the u| +73869|84089|9092|1|9|9657.72|0.04|0.02|N|O|1996-06-08|1996-04-16|1996-06-10|DELIVER IN PERSON|FOB|p after the accounts. fu| +73869|268856|43867|2|34|62044.56|0.07|0.07|N|O|1996-03-07|1996-03-25|1996-03-27|COLLECT COD|TRUCK|final reques| +73869|661271|11272|3|23|28341.52|0.05|0.00|N|O|1996-04-07|1996-04-11|1996-05-01|DELIVER IN PERSON|FOB|tructions. furiously fin| +73869|974484|24485|4|45|70129.80|0.03|0.00|N|O|1996-02-27|1996-03-23|1996-03-15|DELIVER IN PERSON|FOB|even instructions-- theodolites are bli| +73869|138452|38453|5|47|70051.15|0.06|0.06|N|O|1996-06-15|1996-05-12|1996-07-08|TAKE BACK RETURN|MAIL| instructio| +73869|954657|42215|6|23|39367.03|0.07|0.05|N|O|1996-06-05|1996-03-24|1996-06-19|TAKE BACK RETURN|AIR|cording to the carefully regular dep| +73870|179641|17151|1|17|29250.88|0.08|0.08|R|F|1992-11-03|1992-11-30|1992-11-27|DELIVER IN PERSON|FOB|e quickly flu| +73870|224293|36798|2|18|21911.04|0.10|0.06|R|F|1992-10-22|1992-12-15|1992-11-04|NONE|FOB| the quickly final foxes| +73871|43291|18292|1|5|6171.45|0.05|0.07|R|F|1993-05-06|1993-03-17|1993-05-27|TAKE BACK RETURN|TRUCK|esias thrash blithely. bold platelets aff| +73896|497886|47887|1|36|67818.96|0.04|0.01|N|O|1997-02-22|1997-02-14|1997-03-24|TAKE BACK RETURN|RAIL|ts haggle slyly realms. slyly regular | +73896|969000|31520|2|19|20310.24|0.10|0.04|N|O|1997-01-13|1997-02-08|1997-02-09|COLLECT COD|RAIL|nal excuses are furiousl| +73896|977538|2577|3|25|40387.25|0.02|0.05|N|O|1996-12-27|1997-01-06|1997-01-02|DELIVER IN PERSON|AIR|ly final, special packages. slyly regular | +73896|475122|25123|4|13|14262.30|0.05|0.02|N|O|1997-03-20|1997-01-01|1997-04-16|COLLECT COD|AIR|egular dependencies sleep blithely! sly| +73896|367555|17556|5|26|42186.04|0.02|0.03|N|O|1997-01-26|1997-01-17|1997-02-25|DELIVER IN PERSON|MAIL|the slyly regu| +73896|490351|27879|6|44|59018.52|0.01|0.02|N|O|1997-03-13|1997-02-28|1997-03-20|TAKE BACK RETURN|TRUCK|are: carefully regular reque| +73897|746969|21998|1|45|90716.85|0.06|0.00|A|F|1993-11-02|1994-01-03|1993-11-26|DELIVER IN PERSON|TRUCK|y unusual frays. furi| +73897|301540|1541|2|28|43162.84|0.10|0.02|A|F|1994-01-30|1993-11-19|1994-02-06|DELIVER IN PERSON|AIR|ckly pending accounts slee| +73898|781554|44070|1|50|81776.00|0.06|0.05|N|O|1998-02-15|1998-04-30|1998-03-02|NONE|RAIL| ruthless instructions. ironic fo| +73899|375929|38437|1|23|46112.93|0.03|0.03|A|F|1995-05-29|1995-06-26|1995-06-16|NONE|FOB|requests wake along the| +73899|225587|38092|2|35|52939.95|0.02|0.06|N|F|1995-06-14|1995-06-11|1995-06-24|TAKE BACK RETURN|RAIL|y among the unusual pa| +73899|432793|20318|3|46|79385.42|0.06|0.04|A|F|1995-04-04|1995-05-26|1995-05-01|DELIVER IN PERSON|FOB|heodolites are carefully. even sentiments a| +73899|948875|23912|4|35|67334.05|0.02|0.00|R|F|1995-05-12|1995-06-24|1995-05-17|COLLECT COD|TRUCK|structions. idly ironic| +73899|741362|16391|5|1|1403.33|0.09|0.03|A|F|1995-05-29|1995-05-04|1995-06-16|DELIVER IN PERSON|MAIL|nto beans after | +73899|63742|1246|6|15|25586.10|0.09|0.01|R|F|1995-05-15|1995-05-12|1995-06-12|TAKE BACK RETURN|TRUCK|ctions. sl| +73900|744749|44750|1|32|57398.72|0.05|0.03|A|F|1994-06-19|1994-08-02|1994-06-26|DELIVER IN PERSON|AIR| haggle carefully| +73900|983838|21396|2|34|65340.86|0.08|0.07|R|F|1994-08-01|1994-06-20|1994-08-06|DELIVER IN PERSON|RAIL| the slyly express asymptotes.| +73900|360161|10162|3|4|4884.60|0.06|0.02|R|F|1994-06-19|1994-07-11|1994-07-19|NONE|RAIL|symptotes are quickly alongside of the flu| +73901|595475|20498|1|50|78522.50|0.01|0.01|A|F|1992-08-26|1992-07-24|1992-09-06|COLLECT COD|MAIL| carefully. blithely regular pinto| +73902|603940|28965|1|1|1843.91|0.07|0.07|A|F|1994-08-13|1994-09-04|1994-09-12|TAKE BACK RETURN|REG AIR|quests outside the furiously bol| +73902|403906|41431|2|6|10859.28|0.05|0.07|A|F|1994-07-15|1994-08-25|1994-07-23|TAKE BACK RETURN|REG AIR|s sleep fluf| +73902|441232|3741|3|4|4692.84|0.03|0.05|A|F|1994-09-21|1994-09-11|1994-09-26|NONE|RAIL|aggle slyly alongside| +73902|784569|34570|4|43|71101.79|0.04|0.04|A|F|1994-09-24|1994-08-11|1994-10-14|COLLECT COD|SHIP|s the slyly regular packages run care| +73902|242172|42173|5|29|32310.64|0.03|0.05|R|F|1994-08-20|1994-08-03|1994-08-31|COLLECT COD|SHIP|carefully even asymptotes. quic| +73902|174397|36901|6|33|48555.87|0.10|0.08|R|F|1994-09-13|1994-07-31|1994-09-27|DELIVER IN PERSON|MAIL|dependencies. slow requests across the care| +73903|703853|28882|1|21|38993.22|0.00|0.02|N|O|1997-11-08|1997-12-12|1997-11-26|DELIVER IN PERSON|RAIL|quests. blithely bol| +73903|649988|25013|2|30|58138.50|0.05|0.06|N|O|1997-12-16|1998-01-02|1998-01-03|COLLECT COD|TRUCK|he bold deposits. carefully p| +73903|342715|5222|3|2|3515.40|0.05|0.05|N|O|1998-01-07|1997-12-18|1998-01-25|TAKE BACK RETURN|REG AIR|iously regular packages.| +73903|999336|11856|4|49|70329.21|0.06|0.07|N|O|1997-10-24|1997-12-04|1997-11-14|TAKE BACK RETURN|SHIP|ously ironic r| +73903|827459|39976|5|32|44365.12|0.04|0.01|N|O|1997-10-09|1997-11-24|1997-11-08|COLLECT COD|MAIL|detect express pinto beans. carefully | +73903|98999|11501|6|45|89909.55|0.08|0.07|N|O|1997-11-07|1997-12-19|1997-11-16|NONE|AIR| the fluff| +73903|866696|29214|7|35|58192.75|0.00|0.04|N|O|1997-10-22|1997-11-30|1997-11-20|NONE|RAIL|aves x-ray even excuse| +73928|545523|45524|1|38|59603.00|0.03|0.00|N|O|1998-06-17|1998-06-04|1998-07-17|NONE|SHIP|manently pending accounts. acc| +73928|597466|47467|2|34|53156.96|0.02|0.08|N|O|1998-05-30|1998-07-25|1998-06-06|NONE|REG AIR|er the slyly ironic dolphins unwind a| +73928|594599|19622|3|30|50807.10|0.06|0.00|N|O|1998-08-28|1998-06-28|1998-09-12|COLLECT COD|FOB|ly ironic packa| +73928|411079|36096|4|45|44552.25|0.05|0.01|N|O|1998-07-22|1998-06-13|1998-07-25|TAKE BACK RETURN|RAIL|he evenly ironic pinto beans. quickly speci| +73929|225778|25779|1|34|57927.84|0.05|0.04|N|O|1996-03-12|1996-03-05|1996-03-29|TAKE BACK RETURN|TRUCK|counts detect dependencie| +73929|638639|1152|2|48|75724.80|0.09|0.07|N|O|1996-04-11|1996-04-18|1996-05-04|DELIVER IN PERSON|REG AIR|ar, express dolphins nag slyly slyly ironi| +73929|589192|26726|3|43|55090.31|0.06|0.04|N|O|1996-03-22|1996-03-02|1996-04-17|TAKE BACK RETURN|SHIP|kly final ideas. blithely regul| +73929|549045|36576|4|9|9846.18|0.03|0.06|N|O|1996-02-14|1996-03-26|1996-03-09|DELIVER IN PERSON|SHIP|boost quickly. slyly pend| +73929|789431|39432|5|43|65377.20|0.09|0.04|N|O|1996-04-06|1996-03-23|1996-04-24|DELIVER IN PERSON|TRUCK|ns are fluffily after the express| +73929|959305|34344|6|23|31377.98|0.02|0.08|N|O|1996-04-22|1996-04-02|1996-04-27|TAKE BACK RETURN|FOB|heodolites sleep blithely | +73929|25612|38113|7|21|32289.81|0.00|0.05|N|O|1996-01-23|1996-03-06|1996-02-18|TAKE BACK RETURN|REG AIR|sleep fluffily regula| +73930|446577|34102|1|42|63989.10|0.07|0.05|R|F|1992-06-27|1992-08-03|1992-06-28|COLLECT COD|AIR| packages affix qu| +73930|604350|41887|2|15|18814.80|0.01|0.07|A|F|1992-07-03|1992-08-19|1992-07-21|TAKE BACK RETURN|RAIL|ckages. blithely final excu| +73931|609288|21801|1|50|59862.50|0.08|0.03|N|O|1996-03-27|1996-05-04|1996-04-18|DELIVER IN PERSON|AIR| bold theodolites haggle across the bli| +73931|296629|21640|2|39|63398.79|0.08|0.00|N|O|1996-06-13|1996-05-11|1996-07-08|NONE|RAIL|foxes wake fur| +73932|426249|38758|1|36|42307.92|0.04|0.08|R|F|1992-09-10|1992-07-09|1992-09-24|COLLECT COD|REG AIR|ly bold foxes. deposits abo| +73932|966442|4000|2|35|52794.00|0.07|0.08|A|F|1992-08-16|1992-07-12|1992-09-10|NONE|REG AIR|usly. ironic, even instructions| +73932|985993|48513|3|5|10394.75|0.10|0.02|A|F|1992-07-07|1992-08-20|1992-07-14|DELIVER IN PERSON|TRUCK|dencies. quickly unusu| +73932|569579|19580|4|6|9891.30|0.02|0.03|R|F|1992-06-21|1992-08-08|1992-07-09|DELIVER IN PERSON|SHIP|into beans doub| +73932|902254|14773|5|19|23867.99|0.05|0.01|A|F|1992-07-24|1992-07-12|1992-08-18|NONE|REG AIR|bold Tiresias boo| +73932|179774|17284|6|2|3707.54|0.02|0.03|R|F|1992-06-10|1992-08-05|1992-06-29|COLLECT COD|RAIL|riously blithely ironic packages| +73932|454370|16880|7|20|26487.00|0.10|0.03|R|F|1992-06-23|1992-08-16|1992-07-03|DELIVER IN PERSON|FOB|ilent, regular packages. | +73933|589244|14267|1|14|18665.08|0.04|0.04|R|F|1993-03-02|1993-02-07|1993-03-22|COLLECT COD|RAIL|the blithely final deposits: regula| +73933|415267|27776|2|24|28373.76|0.10|0.01|A|F|1993-02-13|1993-03-29|1993-03-12|COLLECT COD|REG AIR|ounts believe slyly| +73933|391823|41824|3|43|82336.83|0.09|0.02|A|F|1993-03-30|1993-02-20|1993-04-13|COLLECT COD|TRUCK|courts. blithely unusual c| +73933|356365|31380|4|19|27005.65|0.02|0.00|A|F|1993-01-24|1993-02-10|1993-02-17|DELIVER IN PERSON|FOB|ven packages doze carefully slyly fin| +73933|422213|47230|5|47|53353.93|0.00|0.01|A|F|1993-04-08|1993-03-25|1993-04-14|TAKE BACK RETURN|FOB|s cajole blithely even accounts. quickly| +73933|124413|36916|6|21|30185.61|0.10|0.07|A|F|1993-03-24|1993-03-07|1993-03-26|COLLECT COD|SHIP|efully pending, pending requests. ironic t| +73933|7092|7093|7|27|26975.43|0.02|0.05|A|F|1993-02-20|1993-02-17|1993-03-05|NONE|REG AIR| deposits. regularly regular packages inte| +73934|195111|7615|1|45|54274.95|0.05|0.01|N|O|1995-07-25|1995-08-08|1995-08-14|NONE|SHIP|posits are regula| +73934|226540|26541|2|25|36663.25|0.03|0.08|N|O|1995-08-20|1995-09-02|1995-09-12|COLLECT COD|SHIP|y express deposits. blithely e| +73935|869428|6980|1|45|62882.10|0.07|0.06|A|F|1995-04-06|1995-01-26|1995-05-02|NONE|RAIL|its. ironic, final accoun| +73935|465219|40238|2|31|36709.89|0.00|0.05|R|F|1995-01-30|1995-02-14|1995-02-21|TAKE BACK RETURN|TRUCK|olites breach furi| +73935|919527|19528|3|39|60312.72|0.01|0.03|R|F|1995-02-01|1995-01-14|1995-02-03|TAKE BACK RETURN|REG AIR|ns! slyly ironic de| +73935|479540|42050|4|45|68378.40|0.00|0.05|R|F|1995-01-24|1995-02-04|1995-01-26|NONE|TRUCK|es detect about the blithely unusual pint| +73935|623364|23365|5|44|56642.52|0.01|0.00|R|F|1995-03-05|1995-01-09|1995-03-15|COLLECT COD|RAIL|refully against the express pearl| +73960|333646|8659|1|47|78942.61|0.07|0.03|N|O|1995-10-28|1995-11-16|1995-10-29|NONE|FOB|y. furiously unusual platelets | +73960|573383|48406|2|17|24758.12|0.02|0.01|N|O|1995-12-15|1995-12-23|1996-01-03|NONE|AIR|lyly. quickly special accounts are c| +73961|142570|42571|1|14|22575.98|0.02|0.08|N|O|1996-05-06|1996-06-09|1996-06-04|DELIVER IN PERSON|FOB|ts across the quickly fi| +73961|165182|27686|2|27|33673.86|0.04|0.07|N|O|1996-07-07|1996-06-28|1996-08-03|NONE|RAIL|ously about the blithe courts. sometimes | +73961|197206|22213|3|47|61250.40|0.09|0.01|N|O|1996-06-14|1996-07-02|1996-07-01|TAKE BACK RETURN|RAIL|te carefully. even| +73961|433932|8949|4|6|11195.46|0.07|0.02|N|O|1996-05-10|1996-07-13|1996-05-17|NONE|FOB|rding to the slyly final| +73961|86125|11128|5|14|15555.68|0.00|0.05|N|O|1996-05-15|1996-06-05|1996-06-11|NONE|SHIP|ckages are slyly. furiou| +73961|492450|29978|6|3|4327.29|0.03|0.03|N|O|1996-05-05|1996-05-21|1996-05-10|TAKE BACK RETURN|FOB|tions nag alongsi| +73962|996881|9401|1|15|29667.60|0.01|0.08|N|O|1998-01-09|1997-11-24|1998-01-17|NONE|TRUCK|sual deposits alongside of the regular| +73963|585205|22739|1|11|14191.98|0.08|0.01|N|O|1996-05-26|1996-07-04|1996-06-03|TAKE BACK RETURN|MAIL|es. quickly bold deposits | +73964|376207|38715|1|22|28230.18|0.09|0.04|R|F|1993-04-18|1993-02-25|1993-05-04|TAKE BACK RETURN|RAIL|y bold ideas above| +73964|905388|30425|2|39|54340.26|0.03|0.06|A|F|1993-01-08|1993-02-28|1993-01-29|COLLECT COD|MAIL| accounts. final pinto beans boost. quickly| +73964|847827|35376|3|17|30171.26|0.06|0.05|A|F|1993-01-12|1993-01-22|1993-02-03|COLLECT COD|SHIP|ctions. even at| +73964|418098|30607|4|8|8128.56|0.05|0.02|R|F|1993-01-02|1993-02-09|1993-01-12|TAKE BACK RETURN|MAIL| are unusu| +73964|963696|38735|5|29|51029.85|0.06|0.02|A|F|1993-02-06|1993-02-11|1993-02-19|DELIVER IN PERSON|RAIL|fily express | +73965|214148|39157|1|14|14869.82|0.07|0.05|N|O|1995-07-03|1995-07-08|1995-07-09|TAKE BACK RETURN|TRUCK|etimes regular requests. | +73965|177884|40388|2|6|11771.28|0.09|0.07|N|O|1995-07-07|1995-07-19|1995-08-05|NONE|FOB|ording to the packages-- en| +73965|683921|21461|3|35|66671.15|0.08|0.03|N|O|1995-06-29|1995-07-26|1995-07-09|TAKE BACK RETURN|AIR|ructions wake blithe| +73966|92682|17685|1|21|35168.28|0.01|0.08|R|F|1992-12-31|1993-01-22|1993-01-03|NONE|TRUCK|ully blithely unusual courts. pendi| +73966|691862|29402|2|18|33368.94|0.07|0.02|A|F|1993-01-06|1992-12-31|1993-01-12|DELIVER IN PERSON|RAIL|bout the quickly ironic courts integrate ac| +73966|107925|32930|3|15|28993.80|0.03|0.03|R|F|1993-02-14|1993-01-06|1993-03-04|NONE|RAIL|uests affix | +73966|892998|5516|4|14|27873.30|0.08|0.04|R|F|1993-03-25|1993-02-18|1993-03-29|DELIVER IN PERSON|RAIL|beans cajole. regular water| +73966|603136|15649|5|37|38446.70|0.03|0.05|A|F|1993-03-19|1993-02-04|1993-04-12|TAKE BACK RETURN|REG AIR|ncies wake| +73966|902010|2011|6|17|17203.49|0.03|0.01|A|F|1992-11-26|1993-01-22|1992-12-04|TAKE BACK RETURN|FOB|lyly ironic tithes af| +73966|79884|4887|7|19|35413.72|0.10|0.03|R|F|1993-03-15|1993-02-03|1993-03-31|NONE|AIR|ts. carefully final asymp| +73967|594825|7337|1|25|47995.00|0.05|0.04|N|O|1998-01-07|1998-02-21|1998-01-15|TAKE BACK RETURN|SHIP|ainst the furiously regular depo| +73967|207580|20085|2|27|40164.39|0.08|0.03|N|O|1998-02-06|1998-02-16|1998-02-21|TAKE BACK RETURN|TRUCK|ns could nag. unusual accounts integrat| +73967|791759|16790|3|34|62924.48|0.06|0.00|N|O|1998-02-01|1998-01-31|1998-02-07|TAKE BACK RETURN|RAIL|theodolites cajole busi| +73967|77901|27902|4|11|20667.90|0.05|0.02|N|O|1998-01-08|1998-02-17|1998-01-09|DELIVER IN PERSON|MAIL|riously fina| +73967|272852|22853|5|11|20073.24|0.10|0.06|N|O|1998-03-20|1998-01-02|1998-04-09|TAKE BACK RETURN|MAIL|s. unusual, pending requests ca| +73967|817741|5290|6|5|8293.50|0.03|0.08|N|O|1998-01-11|1998-01-03|1998-02-08|DELIVER IN PERSON|MAIL|dolites. foxe| +73967|769294|19295|7|15|20448.90|0.09|0.08|N|O|1998-03-14|1998-02-08|1998-03-30|COLLECT COD|REG AIR|e quickly. final | +73992|509117|46648|1|30|33782.70|0.00|0.04|N|O|1995-10-02|1995-10-23|1995-10-19|TAKE BACK RETURN|RAIL| furiously spe| +73992|713415|38444|2|40|57135.20|0.08|0.06|N|O|1995-09-19|1995-10-23|1995-10-12|COLLECT COD|REG AIR|ly ironic pa| +73993|916657|16658|1|47|78659.67|0.03|0.01|R|F|1993-03-20|1993-04-28|1993-04-09|COLLECT COD|TRUCK|oxes above the depend| +73993|237683|12692|2|39|63206.13|0.04|0.02|R|F|1993-04-20|1993-05-18|1993-04-26|DELIVER IN PERSON|MAIL|ly even gifts. furiously sile| +73993|724183|49212|3|30|36214.50|0.01|0.07|A|F|1993-05-03|1993-05-22|1993-05-24|TAKE BACK RETURN|FOB|y ironic foxes detect slyl| +73993|330385|30386|4|14|19815.18|0.04|0.08|R|F|1993-04-17|1993-06-04|1993-05-04|TAKE BACK RETURN|REG AIR|lar warthogs nag. slyly ev| +73994|117070|17071|1|25|27176.75|0.01|0.01|N|O|1997-01-24|1997-01-24|1997-02-12|NONE|RAIL|oxes. sly foxes| +73994|593263|43264|2|7|9493.68|0.07|0.00|N|O|1996-11-22|1996-12-30|1996-12-22|TAKE BACK RETURN|FOB|inal forges are according| +73994|970789|45828|3|26|48353.24|0.08|0.04|N|O|1996-11-15|1997-01-21|1996-12-02|NONE|FOB|r deposits cajole around the| +73994|35375|47876|4|28|36690.36|0.03|0.04|N|O|1997-01-09|1997-01-02|1997-02-04|DELIVER IN PERSON|AIR|ding to the ideas sleep furiously b| +73994|531198|18729|5|39|47937.63|0.02|0.03|N|O|1997-01-15|1997-01-23|1997-02-05|NONE|SHIP| sleep blithely fluf| +73994|833898|33899|6|23|42132.55|0.10|0.00|N|O|1997-01-30|1996-12-03|1997-02-16|TAKE BACK RETURN|RAIL|ajole alongside o| +73994|307265|44784|7|45|57251.25|0.03|0.06|N|O|1997-01-14|1996-12-13|1997-02-07|TAKE BACK RETURN|TRUCK|ang carefully requests. furious| +73995|189333|39334|1|2|2844.66|0.00|0.05|N|O|1996-06-01|1996-05-03|1996-06-07|COLLECT COD|RAIL|es dazzle carefully. furiously unus| +73995|113593|38598|2|40|64263.60|0.08|0.08|N|O|1996-05-27|1996-04-19|1996-06-05|TAKE BACK RETURN|FOB| regular theodolites beneath the accounts a| +73996|89298|14301|1|33|42480.57|0.00|0.08|R|F|1994-01-19|1994-03-31|1994-02-01|DELIVER IN PERSON|REG AIR|s wake fluffily unusual, final instruc| +73996|825353|12902|2|5|6391.55|0.02|0.03|R|F|1994-01-22|1994-02-17|1994-01-31|NONE|SHIP|sits. quickly regular accounts are. pen| +73996|697748|35288|3|11|19202.81|0.02|0.03|R|F|1994-01-14|1994-02-19|1994-01-31|DELIVER IN PERSON|RAIL| eat according to the f| +73997|754785|42331|1|36|66231.00|0.00|0.05|R|F|1993-04-20|1993-02-20|1993-05-11|TAKE BACK RETURN|TRUCK|impress fluffily. carefully ev| +73997|670709|45736|2|45|75585.15|0.07|0.08|R|F|1993-04-04|1993-03-04|1993-04-22|DELIVER IN PERSON|MAIL|ing deposits sl| +73997|596800|21823|3|18|34142.04|0.04|0.04|A|F|1993-03-06|1993-02-23|1993-03-26|COLLECT COD|FOB|ains above the blithely enticing f| +73997|410294|10295|4|18|21676.86|0.07|0.08|R|F|1993-04-02|1993-02-15|1993-04-10|NONE|TRUCK|e fluffily by the unusual,| +73997|808782|8783|5|11|18598.14|0.01|0.08|R|F|1993-01-27|1993-03-19|1993-02-17|COLLECT COD|TRUCK| packages are. e| +73997|186466|23976|6|14|21734.44|0.10|0.06|A|F|1993-01-10|1993-03-24|1993-01-21|NONE|SHIP|to the requ| +73998|70014|45017|1|40|39360.40|0.04|0.06|R|F|1993-12-27|1993-11-08|1994-01-16|DELIVER IN PERSON|SHIP|gular accounts. silent packages kindle c| +73999|981442|31443|1|24|36561.60|0.09|0.00|A|F|1993-02-03|1992-12-25|1993-02-16|TAKE BACK RETURN|AIR|ently bold deposits nod acco| +73999|94853|19856|2|37|68370.45|0.03|0.02|A|F|1992-11-16|1992-11-18|1992-11-27|DELIVER IN PERSON|FOB|ilent pinto beans. ironic requests above th| +73999|191512|4016|3|46|73761.46|0.02|0.07|R|F|1992-12-20|1992-12-04|1992-12-30|TAKE BACK RETURN|SHIP|sleep furiously. ide| +73999|733582|46097|4|23|37157.65|0.03|0.06|R|F|1993-01-25|1992-11-08|1993-01-26|DELIVER IN PERSON|TRUCK|ly among the expre| +73999|299591|24602|5|37|58851.46|0.07|0.07|A|F|1992-11-30|1992-12-16|1992-12-20|COLLECT COD|RAIL| ironic depos| +73999|215784|40793|6|45|76489.65|0.03|0.08|R|F|1992-11-25|1992-11-30|1992-12-19|TAKE BACK RETURN|SHIP|sleep. unusual packages wake carefully | +73999|680716|18256|7|27|45810.36|0.04|0.05|A|F|1992-12-14|1992-11-22|1992-12-17|COLLECT COD|SHIP|uriously iro| +74024|782141|32142|1|32|39139.52|0.01|0.06|A|F|1994-01-10|1993-12-08|1994-02-04|NONE|TRUCK|ay final ideas| +74024|442393|17410|2|5|6676.85|0.09|0.04|A|F|1993-12-18|1993-10-28|1994-01-14|NONE|MAIL|es. fluffily final a| +74024|294886|44887|3|26|48902.62|0.03|0.07|R|F|1993-12-05|1993-12-17|1993-12-16|TAKE BACK RETURN|MAIL|! ironic, blithe theodolites | +74024|136545|36546|4|44|69587.76|0.03|0.03|A|F|1993-09-24|1993-11-07|1993-10-24|COLLECT COD|MAIL|lly above the furiously express | +74024|904071|4072|5|17|18275.51|0.00|0.08|R|F|1993-09-24|1993-10-28|1993-10-13|DELIVER IN PERSON|TRUCK|efully final depo| +74025|910790|10791|1|5|9003.75|0.00|0.01|N|O|1996-02-16|1996-02-24|1996-02-19|NONE|TRUCK|ackages haggle slyly. accoun| +74026|953962|16482|1|10|20159.20|0.05|0.01|N|O|1997-11-18|1997-10-26|1997-12-05|TAKE BACK RETURN|MAIL| slyly express pinto beans. instructio| +74026|236072|48577|2|1|1008.06|0.06|0.08|N|O|1997-10-24|1997-10-21|1997-11-13|NONE|TRUCK|ly before the | +74026|653773|41313|3|19|32808.06|0.04|0.06|N|O|1997-09-18|1997-09-22|1997-10-14|NONE|FOB|ges haggle carefully alongside of the blit| +74027|318337|18338|1|39|52857.48|0.04|0.02|A|F|1992-04-08|1992-04-09|1992-04-25|NONE|AIR| ironic requests. reg| +74027|287488|49994|2|14|20656.58|0.03|0.00|R|F|1992-03-10|1992-04-16|1992-03-30|NONE|FOB|tions. furiously iro| +74027|809825|9826|3|5|8673.90|0.01|0.03|R|F|1992-04-15|1992-04-24|1992-04-29|NONE|SHIP|deposits. ironic, even accounts hag| +74027|717526|17527|4|24|37043.76|0.06|0.05|R|F|1992-05-13|1992-05-02|1992-05-25|COLLECT COD|AIR|y final packages use blithely qu| +74028|420695|20696|1|38|61395.46|0.05|0.01|R|F|1995-02-07|1995-01-06|1995-02-26|NONE|TRUCK|eodolites. stealthily even | +74028|608509|8510|2|24|34019.28|0.03|0.05|R|F|1994-12-29|1995-01-20|1995-01-28|DELIVER IN PERSON|SHIP|ously. notornis boost| +74028|196374|46375|3|17|24996.29|0.00|0.06|R|F|1994-10-30|1995-01-19|1994-10-31|DELIVER IN PERSON|TRUCK|thely special notornis sleep slyly| +74028|454636|17146|4|48|76349.28|0.03|0.02|R|F|1995-02-11|1995-01-02|1995-02-28|TAKE BACK RETURN|RAIL|st daringly slyly| +74028|51237|1238|5|18|21388.14|0.08|0.03|A|F|1995-01-12|1994-12-19|1995-02-10|TAKE BACK RETURN|MAIL|en deposits. enticingly special the| +74028|133657|8662|6|33|55791.45|0.08|0.04|A|F|1994-12-18|1994-12-27|1994-12-21|NONE|TRUCK|against the furiously regular | +74028|364929|14930|7|15|29908.65|0.09|0.07|A|F|1994-12-08|1994-12-02|1994-12-23|NONE|AIR|luffily unusual requests. slyly special pac| +74029|345528|8035|1|36|56646.36|0.01|0.01|N|O|1996-07-18|1996-05-08|1996-07-19|TAKE BACK RETURN|AIR|y ironic ideas boost quickly carefully | +74029|277908|40414|2|20|37717.80|0.09|0.05|N|O|1996-04-27|1996-06-19|1996-05-25|NONE|FOB|tegrate accou| +74030|969161|31681|1|12|14761.44|0.05|0.03|R|F|1994-06-18|1994-07-16|1994-07-01|COLLECT COD|TRUCK|ld ideas across the ironic, | +74030|681744|6771|2|19|32788.49|0.10|0.04|A|F|1994-07-20|1994-07-24|1994-08-06|TAKE BACK RETURN|AIR|excuses kindle fluffily. carefully regula| +74030|69370|31872|3|34|45538.58|0.06|0.01|A|F|1994-08-07|1994-06-18|1994-08-23|NONE|REG AIR| express depe| +74030|896507|46508|4|32|48110.72|0.06|0.05|A|F|1994-05-09|1994-07-29|1994-05-25|NONE|AIR|ans after the stealthy, fi| +74031|392557|5065|1|6|9897.24|0.06|0.05|N|O|1997-02-16|1997-04-18|1997-03-13|TAKE BACK RETURN|FOB|y final dependencies. slyly regu| +74056|97128|22131|1|42|47255.04|0.02|0.04|R|F|1993-02-28|1993-01-03|1993-03-08|COLLECT COD|RAIL|ffily. caref| +74056|421275|21276|2|24|28710.00|0.09|0.03|A|F|1992-12-25|1993-02-21|1992-12-29|COLLECT COD|REG AIR|the blithely unusual pin| +74056|365761|3283|3|49|89510.75|0.09|0.07|A|F|1992-12-03|1993-02-02|1992-12-21|NONE|AIR|ts. fluffily f| +74057|66912|29414|1|19|35699.29|0.05|0.02|N|O|1996-08-27|1996-07-28|1996-08-28|COLLECT COD|SHIP|ld, regular requests; packages accord| +74058|333287|45794|1|27|35647.29|0.05|0.01|N|O|1995-09-22|1995-09-11|1995-10-08|DELIVER IN PERSON|AIR|uriously bold deposits. enticingly| +74058|537937|448|2|18|35548.38|0.07|0.03|N|O|1995-11-07|1995-08-28|1995-11-14|COLLECT COD|FOB|sts. blithely express foxes affi| +74059|839973|27522|1|21|40171.53|0.09|0.06|R|F|1992-08-22|1992-05-25|1992-09-16|NONE|AIR| furiously ev| +74059|419204|31713|2|40|44927.20|0.07|0.06|A|F|1992-06-15|1992-06-06|1992-06-21|COLLECT COD|MAIL|requests wake slyly regul| +74059|546510|34041|3|35|54477.15|0.09|0.03|R|F|1992-06-15|1992-07-02|1992-06-17|DELIVER IN PERSON|RAIL|le blithely slyly pending pac| +74059|182755|32756|4|13|23890.75|0.03|0.08|A|F|1992-06-10|1992-07-02|1992-06-23|NONE|RAIL| requests across the slyly fluf| +74059|556031|31054|5|9|9783.09|0.00|0.06|R|F|1992-08-06|1992-06-29|1992-08-28|NONE|RAIL|te along the c| +74060|91550|16553|1|10|15415.50|0.05|0.06|N|O|1995-06-25|1995-05-01|1995-06-30|COLLECT COD|RAIL| final deposits. final, un| +74060|676210|26211|2|11|13047.98|0.06|0.02|A|F|1995-05-06|1995-05-21|1995-05-22|DELIVER IN PERSON|REG AIR|fluffily bold foxes cajole| +74060|59452|21954|3|40|56458.00|0.07|0.06|A|F|1995-04-28|1995-05-06|1995-05-25|DELIVER IN PERSON|TRUCK|ffix furiously. quickly silent ideas af| +74060|197714|10218|4|47|85150.37|0.00|0.06|A|F|1995-05-31|1995-05-25|1995-06-14|TAKE BACK RETURN|RAIL|elets sublate. regular, brav| +74060|964103|26623|5|22|25675.32|0.04|0.00|N|F|1995-06-14|1995-04-18|1995-07-03|DELIVER IN PERSON|MAIL|. escapades am| +74060|672942|10482|6|41|78511.31|0.00|0.00|A|F|1995-03-20|1995-04-07|1995-04-09|DELIVER IN PERSON|RAIL|st have to cajole| +74061|761254|48800|1|31|40771.82|0.08|0.05|N|O|1997-02-27|1996-11-29|1997-03-12|TAKE BACK RETURN|MAIL|l, regular asymp| +74061|393652|6160|2|48|83790.72|0.06|0.06|N|O|1997-01-02|1996-12-24|1997-01-25|NONE|AIR|uriously according to | +74062|997889|22928|1|11|21855.24|0.03|0.00|R|F|1994-07-09|1994-07-25|1994-07-28|DELIVER IN PERSON|REG AIR|egular deposits boost. furiously regular | +74062|513364|895|2|33|45452.22|0.03|0.02|R|F|1994-07-23|1994-08-01|1994-08-20|NONE|TRUCK|ages affix slyly bol| +74062|99490|24493|3|43|64048.07|0.07|0.06|A|F|1994-10-11|1994-09-03|1994-10-14|TAKE BACK RETURN|REG AIR|. regular theodolites nag carefull| +74062|123891|11398|4|13|24893.57|0.04|0.05|A|F|1994-08-07|1994-08-21|1994-08-22|TAKE BACK RETURN|TRUCK|kly ironic ideas; ironic, regular excuses i| +74062|225828|837|5|27|47352.87|0.08|0.01|A|F|1994-09-10|1994-07-24|1994-09-17|TAKE BACK RETURN|TRUCK|usly bold theodolites nag furiou| +74062|481437|18965|6|21|29786.61|0.04|0.00|A|F|1994-09-26|1994-09-02|1994-10-24|COLLECT COD|SHIP|after the furiously r| +74062|498984|36512|7|48|95182.08|0.03|0.02|A|F|1994-08-11|1994-08-17|1994-08-16|NONE|SHIP|ic packages. slyly | +74063|419376|19377|1|20|25907.00|0.09|0.02|A|F|1995-02-12|1994-12-31|1995-02-23|DELIVER IN PERSON|SHIP|packages c| +74063|446187|21204|2|39|44193.24|0.04|0.04|R|F|1995-02-23|1995-01-18|1995-02-25|COLLECT COD|SHIP|. fluffily speci| +74063|64800|39803|3|10|17648.00|0.08|0.01|R|F|1995-01-03|1995-02-04|1995-01-27|NONE|REG AIR| decoys try to wake. final | +74063|83510|33511|4|8|11948.08|0.09|0.08|A|F|1995-02-15|1995-01-24|1995-03-16|COLLECT COD|REG AIR|ackages use bl| +74088|753562|16078|1|16|25848.48|0.08|0.02|R|F|1993-12-23|1994-01-20|1994-01-21|TAKE BACK RETURN|RAIL|sits use wi| +74089|395175|45176|1|44|55887.04|0.09|0.05|N|O|1997-10-12|1997-09-13|1997-10-28|DELIVER IN PERSON|RAIL|ar platelets do h| +74089|696707|21734|2|41|69850.47|0.01|0.01|N|O|1997-11-29|1997-10-14|1997-12-11|TAKE BACK RETURN|FOB|special forges. slyly final| +74089|546893|21914|3|7|13579.09|0.02|0.01|N|O|1997-10-16|1997-09-08|1997-11-01|DELIVER IN PERSON|AIR| use slyly across | +74089|628146|40659|4|45|48334.95|0.09|0.03|N|O|1997-10-20|1997-10-20|1997-11-05|COLLECT COD|TRUCK|f the carefully express ideas. unusual, iro| +74089|238381|886|5|1|1319.37|0.06|0.02|N|O|1997-11-04|1997-10-28|1997-11-29|TAKE BACK RETURN|SHIP|lly special i| +74089|459518|34537|6|19|28072.31|0.10|0.06|N|O|1997-11-06|1997-10-12|1997-11-19|TAKE BACK RETURN|REG AIR|ccounts among the slyly regular th| +74089|113732|13733|7|32|55863.36|0.07|0.02|N|O|1997-11-24|1997-09-09|1997-12-09|NONE|REG AIR| nag never according to the blithely pendi| +74090|484387|21915|1|9|12342.24|0.04|0.01|A|F|1993-02-04|1992-12-08|1993-02-14|COLLECT COD|AIR| theodolites are blithely sly| +74090|76193|1196|2|47|54951.93|0.09|0.02|R|F|1992-11-07|1992-12-08|1992-11-11|DELIVER IN PERSON|AIR|ld furiously. furiously regular| +74090|559046|21558|3|17|18785.34|0.09|0.04|A|F|1992-12-13|1992-12-09|1993-01-03|DELIVER IN PERSON|SHIP|t requests | +74090|877561|27562|4|32|49232.64|0.00|0.04|A|F|1992-11-17|1992-12-09|1992-11-28|COLLECT COD|REG AIR|al requests. furiously | +74090|160537|10538|5|24|38340.72|0.08|0.05|R|F|1992-11-26|1993-01-23|1992-12-18|COLLECT COD|TRUCK|are to the quickly | +74090|138009|13014|6|20|20940.00|0.07|0.07|A|F|1992-11-12|1993-01-07|1992-11-24|DELIVER IN PERSON|RAIL|blithely silent ideas. sl| +74090|503367|28388|7|2|2740.68|0.01|0.01|A|F|1992-12-07|1992-12-04|1993-01-02|DELIVER IN PERSON|MAIL|inal instructions. busily bold deposits | +74091|75638|13142|1|37|59704.31|0.09|0.02|N|O|1998-06-15|1998-07-14|1998-07-11|COLLECT COD|AIR|ag furiously acco| +74091|242513|30026|2|49|71319.50|0.08|0.07|N|O|1998-07-28|1998-07-17|1998-08-03|DELIVER IN PERSON|REG AIR|uses. regular | +74091|899942|37494|3|2|3883.80|0.00|0.01|N|O|1998-08-28|1998-07-02|1998-09-21|TAKE BACK RETURN|MAIL|platelets cajole ironic packages| +74092|190237|2741|1|35|46453.05|0.03|0.07|R|F|1994-11-14|1994-09-09|1994-12-06|COLLECT COD|RAIL|final accounts wake bli| +74092|304388|41907|2|27|37593.99|0.01|0.02|R|F|1994-09-19|1994-10-21|1994-10-10|DELIVER IN PERSON|TRUCK|rding to the slyly bold pac| +74092|838783|13816|3|1|1721.74|0.04|0.04|R|F|1994-10-22|1994-08-30|1994-10-23|TAKE BACK RETURN|RAIL|about the final requests. slyly re| +74092|417610|17611|4|40|61103.60|0.10|0.07|A|F|1994-09-18|1994-09-10|1994-10-06|COLLECT COD|TRUCK|he fluffily final excuses. regular | +74092|762099|24615|5|20|23221.20|0.05|0.05|R|F|1994-09-11|1994-09-09|1994-10-07|DELIVER IN PERSON|AIR|lar foxes | +74093|560300|47834|1|23|31286.44|0.06|0.02|R|F|1994-05-24|1994-04-01|1994-06-03|DELIVER IN PERSON|FOB|ic deposits. ironically pending p| +74093|948041|10560|2|15|16335.00|0.10|0.01|R|F|1994-03-17|1994-04-09|1994-04-04|NONE|AIR|uests sleep. unusual requests need t| +74093|718363|5906|3|36|49727.88|0.06|0.06|R|F|1994-03-25|1994-04-12|1994-04-12|DELIVER IN PERSON|AIR|he blithely ironic deposits? reg| +74094|391589|41590|1|12|20166.84|0.01|0.00|N|O|1997-01-18|1997-02-15|1997-02-06|DELIVER IN PERSON|TRUCK| furiously ironic reques| +74094|421251|33760|2|9|10550.07|0.02|0.04|N|O|1997-04-05|1997-02-16|1997-04-12|NONE|REG AIR|the pinto beans. carefully iron| +74094|959259|21779|3|4|5272.84|0.10|0.03|N|O|1997-02-11|1997-03-04|1997-02-14|NONE|REG AIR|. quickly final warhorses wake acro| +74095|326774|1787|1|43|77432.68|0.02|0.06|R|F|1992-08-15|1992-10-09|1992-09-03|TAKE BACK RETURN|RAIL|ges cajole. quickly express requests alon| +74120|993209|30767|1|39|50784.24|0.02|0.00|A|F|1994-08-16|1994-10-06|1994-09-13|NONE|AIR|y special packages. deposits with the | +74121|54156|4157|1|32|35524.80|0.04|0.00|N|O|1998-07-23|1998-06-07|1998-07-30|DELIVER IN PERSON|AIR|equests. un| +74121|197690|10194|2|24|42904.56|0.02|0.01|N|O|1998-06-20|1998-07-01|1998-07-07|TAKE BACK RETURN|AIR|ly furious requests; slyly bold accounts bo| +74121|571830|21831|3|18|34232.58|0.00|0.03|N|O|1998-07-24|1998-05-22|1998-08-01|NONE|AIR|n excuses. fluffily silent foxes across the| +74121|735925|23468|4|6|11765.34|0.02|0.01|N|O|1998-07-21|1998-07-06|1998-08-20|COLLECT COD|TRUCK|ily pending Tiresias. quic| +74121|684495|9522|5|10|14794.60|0.00|0.04|N|O|1998-05-18|1998-05-20|1998-05-31|DELIVER IN PERSON|TRUCK|gle. even accou| +74122|435124|10141|1|48|50836.80|0.03|0.07|A|F|1994-11-27|1994-12-21|1994-12-10|COLLECT COD|RAIL|accounts. slyly even depo| +74122|125309|314|2|46|61377.80|0.04|0.08|A|F|1994-12-16|1994-11-30|1995-01-07|NONE|RAIL|rding to the final, r| +74122|52857|40361|3|33|59725.05|0.09|0.07|R|F|1994-11-12|1994-11-24|1994-11-15|TAKE BACK RETURN|RAIL|y. slyly regular requests cajole quickly a| +74122|358238|45760|4|45|58329.90|0.06|0.00|R|F|1994-12-27|1994-12-19|1995-01-06|DELIVER IN PERSON|AIR|efully around the furiously final pack| +74122|900167|12686|5|46|53687.52|0.01|0.04|A|F|1994-11-27|1994-12-10|1994-12-17|DELIVER IN PERSON|RAIL|iously pending ideas haggle slyly a| +74122|106761|19264|6|18|31819.68|0.01|0.02|R|F|1994-10-29|1994-12-22|1994-11-09|NONE|FOB|ests. blithely idle instructions use at| +74122|325963|976|7|36|71602.20|0.09|0.00|R|F|1995-01-27|1995-01-10|1995-01-30|TAKE BACK RETURN|FOB|nal, regular realms. speci| +74123|454412|16922|1|42|57388.38|0.06|0.00|N|O|1998-02-10|1998-03-18|1998-03-11|DELIVER IN PERSON|MAIL|lithely final sauternes. carefull| +74123|300567|38086|2|36|56431.80|0.06|0.02|N|O|1998-01-18|1998-01-26|1998-02-01|COLLECT COD|MAIL|. carefully ironic foxes maintain | +74124|798171|10687|1|19|24113.66|0.10|0.04|R|F|1995-03-05|1995-02-05|1995-03-17|NONE|TRUCK|counts are slyly| +74124|851498|39050|2|27|39135.15|0.09|0.02|A|F|1995-02-02|1995-02-23|1995-02-24|COLLECT COD|MAIL|posits cajole patterns. blithely eve| +74124|118274|5781|3|47|60736.69|0.06|0.06|A|F|1995-04-24|1995-02-24|1995-05-10|COLLECT COD|FOB|packages. bold, unusual asym| +74124|821822|9371|4|14|24412.92|0.02|0.00|A|F|1995-02-26|1995-02-13|1995-03-22|DELIVER IN PERSON|AIR|accounts unwind furiously according to th| +74124|351055|1056|5|21|23226.84|0.06|0.03|R|F|1995-04-24|1995-02-11|1995-05-24|NONE|RAIL|ut the pinto beans. special, regula| +74124|176676|39180|6|40|70106.80|0.04|0.00|A|F|1995-01-23|1995-01-26|1995-01-24|NONE|SHIP|ackages. ironic foxes detect| +74124|391726|16741|7|30|54531.30|0.05|0.06|R|F|1995-03-14|1995-03-06|1995-04-08|DELIVER IN PERSON|RAIL|ss dependencies haggle carefully always | +74125|731118|43633|1|6|6894.48|0.06|0.07|N|O|1996-09-27|1996-07-30|1996-10-13|TAKE BACK RETURN|FOB|sely regular courts cajole | +74126|530537|18068|1|42|65835.42|0.06|0.05|A|F|1995-04-20|1995-04-28|1995-05-09|TAKE BACK RETURN|AIR|ites. carefully bold ac| +74126|731927|6956|2|43|84232.27|0.04|0.03|N|F|1995-05-27|1995-06-03|1995-06-26|DELIVER IN PERSON|FOB|ong the quickly re| +74126|482499|7518|3|8|11851.76|0.09|0.01|N|O|1995-06-18|1995-05-08|1995-07-14|COLLECT COD|MAIL|aring ideas int| +74126|349219|24232|4|25|31705.00|0.09|0.05|N|O|1995-07-11|1995-04-22|1995-07-21|COLLECT COD|SHIP|posits integrate quickly a| +74127|476022|13550|1|49|48902.00|0.01|0.04|R|F|1993-01-05|1992-12-31|1993-02-01|COLLECT COD|REG AIR|eep furiously furiously final ideas? i| +74127|492115|17134|2|49|54247.41|0.05|0.07|A|F|1993-01-03|1993-01-12|1993-01-14|NONE|TRUCK| accounts. bold, final pa| +74127|975929|25930|3|35|70170.80|0.01|0.04|A|F|1993-02-05|1993-01-22|1993-03-05|TAKE BACK RETURN|REG AIR|nal excuses. blithely pending ide| +74127|436848|36849|4|35|62468.70|0.05|0.06|A|F|1993-02-13|1993-01-23|1993-02-27|TAKE BACK RETURN|TRUCK| the regular, un| +74127|89363|1865|5|3|4057.08|0.06|0.06|A|F|1992-11-28|1993-01-30|1992-12-18|NONE|TRUCK|e accounts. unusual, silent theodol| +74127|913813|38850|6|18|32881.86|0.03|0.02|A|F|1993-01-22|1992-12-20|1993-02-10|DELIVER IN PERSON|MAIL|aggle above the fluffily ironic deposi| +74127|447172|34697|7|18|20144.70|0.00|0.06|R|F|1992-12-10|1992-12-29|1993-01-03|NONE|SHIP|about the carefully regular excuses. reque| +74152|609244|34269|1|17|19604.57|0.05|0.01|R|F|1992-03-31|1992-02-12|1992-04-02|DELIVER IN PERSON|MAIL|ect blithely pending | +74152|549226|11737|2|47|59934.40|0.01|0.06|A|F|1992-04-22|1992-02-24|1992-05-14|COLLECT COD|TRUCK| blithely. final, final deposits cajol| +74152|832543|20092|3|9|13279.50|0.02|0.03|R|F|1992-01-29|1992-02-28|1992-02-11|COLLECT COD|SHIP|uiet accounts maintain | +74152|534393|21924|4|34|48530.58|0.01|0.02|R|F|1992-03-29|1992-03-22|1992-04-17|DELIVER IN PERSON|TRUCK|according to the silent packages cajole c| +74153|759490|9491|1|35|54231.10|0.05|0.07|N|O|1997-04-16|1997-04-29|1997-05-15|COLLECT COD|FOB| blithely regular ideas integrate slyly a| +74154|21833|21834|1|49|85986.67|0.06|0.02|N|O|1997-10-19|1997-09-14|1997-10-25|COLLECT COD|TRUCK|the quickly even pinto beans haggle sl| +74154|936044|23599|2|22|23760.00|0.07|0.06|N|O|1997-10-19|1997-08-20|1997-11-02|TAKE BACK RETURN|MAIL|s haggle fluffily above the furiously si| +74154|82760|7763|3|27|47054.52|0.07|0.06|N|O|1997-09-13|1997-09-12|1997-09-30|NONE|AIR| excuses wake blithely f| +74154|932485|7522|4|37|56145.28|0.01|0.04|N|O|1997-07-12|1997-08-08|1997-07-16|DELIVER IN PERSON|SHIP|otes use against the even platelets.| +74154|260826|35837|5|35|62538.35|0.05|0.01|N|O|1997-09-24|1997-08-16|1997-10-19|DELIVER IN PERSON|RAIL|e furiously daring pint| +74155|119522|19523|1|44|67826.88|0.05|0.01|N|O|1995-11-18|1995-11-10|1995-11-25|DELIVER IN PERSON|RAIL|equests. furiously regular ideas cajole a| +74155|806055|6056|2|5|4805.05|0.05|0.03|N|O|1996-01-06|1995-12-15|1996-01-16|DELIVER IN PERSON|TRUCK|along the quickly regular pinto b| +74155|362456|49978|3|45|68329.80|0.10|0.07|N|O|1995-11-07|1995-12-12|1995-11-28|TAKE BACK RETURN|TRUCK|ependencies. furiously even ideas| +74155|789863|14894|4|23|44915.09|0.01|0.07|N|O|1995-10-09|1995-12-24|1995-10-12|TAKE BACK RETURN|TRUCK|. dependencies haggle acr| +74155|215742|15743|5|13|21550.49|0.10|0.08|N|O|1995-11-01|1995-12-01|1995-11-26|COLLECT COD|REG AIR| fluffily ironic requests. sl| +74155|968947|6505|6|37|74588.30|0.08|0.02|N|O|1996-01-06|1995-12-05|1996-01-27|DELIVER IN PERSON|TRUCK|e ideas. iro| +74156|916366|3921|1|27|37322.64|0.06|0.06|N|O|1997-02-28|1997-01-25|1997-03-23|TAKE BACK RETURN|REG AIR|quickly regular deposits? final excuses imp| +74157|985831|10870|1|18|34502.22|0.03|0.05|N|O|1995-09-28|1995-11-03|1995-10-13|NONE|TRUCK|xpress requests sleep ideas. ca| +74157|861256|23774|2|13|15823.73|0.02|0.02|N|O|1995-11-13|1995-10-20|1995-11-20|DELIVER IN PERSON|TRUCK|olphins. furiously | +74157|119130|44135|3|37|42517.81|0.06|0.04|N|O|1995-10-23|1995-12-01|1995-11-21|COLLECT COD|RAIL|ve pains. slyly final accounts impress slyl| +74158|555337|30360|1|20|27846.20|0.03|0.06|N|O|1996-06-08|1996-05-29|1996-06-24|NONE|TRUCK|y unusual theodolites. final, even fo| +74158|542228|17249|2|47|59699.40|0.07|0.01|N|O|1996-07-02|1996-06-12|1996-07-26|COLLECT COD|TRUCK|he accounts. furiously even theodolites s| +74159|740475|28018|1|26|39401.44|0.10|0.04|N|O|1995-09-20|1995-11-29|1995-10-13|COLLECT COD|MAIL|ckly silent asymptotes are carefull| +74159|161968|24472|2|1|2029.96|0.00|0.08|N|O|1995-11-07|1995-10-24|1995-12-04|DELIVER IN PERSON|AIR|lent accounts. quick| +74159|179848|4855|3|4|7711.36|0.00|0.08|N|O|1995-12-20|1995-12-09|1996-01-12|COLLECT COD|MAIL|ully special theodolites are requests. f| +74159|697839|10353|4|38|69798.40|0.10|0.04|N|O|1995-11-26|1995-12-13|1995-12-01|COLLECT COD|AIR|thin packages. slyly even theod| +74159|576100|1123|5|45|52923.60|0.07|0.08|N|O|1995-12-24|1995-10-23|1996-01-09|TAKE BACK RETURN|AIR| boost slyly dependen| +74184|480580|18108|1|3|4681.68|0.07|0.05|N|O|1997-01-12|1997-01-22|1997-01-28|COLLECT COD|REG AIR|eposits. pinto beans| +74184|95655|20658|2|2|3301.30|0.04|0.06|N|O|1997-01-09|1997-02-19|1997-02-01|TAKE BACK RETURN|AIR|nt requests. slyly final sauternes | +74184|667127|4667|3|9|9846.81|0.07|0.04|N|O|1997-04-10|1997-02-15|1997-05-10|TAKE BACK RETURN|TRUCK|ccording to the slyly regular theodo| +74184|391038|28560|4|26|29354.52|0.03|0.04|N|O|1997-04-13|1997-02-11|1997-04-20|COLLECT COD|FOB|g accounts solve blithely alongside of the| +74184|166663|41670|5|46|79564.36|0.03|0.02|N|O|1997-04-03|1997-02-05|1997-04-25|NONE|RAIL|the fluffily final asymptotes. carefull| +74184|103233|15736|6|28|34614.44|0.04|0.01|N|O|1997-02-03|1997-03-13|1997-02-09|COLLECT COD|RAIL|ar foxes wake sl| +74185|526263|13794|1|31|39966.44|0.03|0.01|N|O|1996-12-06|1997-02-02|1996-12-27|COLLECT COD|RAIL| furiously pending accounts. | +74186|324963|12482|1|16|31807.20|0.04|0.05|N|O|1996-02-23|1996-03-09|1996-03-23|TAKE BACK RETURN|FOB|posits accord| +74186|651745|1746|2|42|71261.82|0.05|0.07|N|O|1996-02-21|1996-03-03|1996-03-18|TAKE BACK RETURN|RAIL|against th| +74186|877069|2104|3|37|38702.74|0.10|0.05|N|O|1996-05-27|1996-03-31|1996-06-06|NONE|FOB|larly bold theodolites haggle be| +74186|887376|12411|4|48|65439.84|0.00|0.04|N|O|1996-04-06|1996-04-23|1996-05-06|DELIVER IN PERSON|RAIL|t the pending | +74186|120616|45621|5|31|50734.91|0.10|0.07|N|O|1996-04-23|1996-03-07|1996-05-21|COLLECT COD|AIR| accounts h| +74187|389051|1559|1|7|7980.28|0.06|0.03|N|O|1996-02-11|1995-12-23|1996-03-04|COLLECT COD|REG AIR|affix quickly. | +74187|771585|21586|2|27|44726.85|0.05|0.07|N|O|1995-12-03|1996-01-07|1995-12-07|NONE|REG AIR|ts cajole furiously. quickly special de| +74187|18915|6416|3|35|64186.85|0.06|0.02|N|O|1995-10-30|1995-12-21|1995-11-20|DELIVER IN PERSON|FOB|yly unusual | +74187|899192|11710|4|10|11911.50|0.10|0.04|N|O|1996-01-20|1995-11-20|1996-01-29|DELIVER IN PERSON|REG AIR|efully even theodolites haggle quickly i| +74187|706597|44140|5|45|72160.20|0.10|0.01|N|O|1996-01-02|1996-01-06|1996-01-25|DELIVER IN PERSON|AIR|he theodolites. blithely u| +74187|759371|9372|6|46|65795.64|0.10|0.08|N|O|1995-12-29|1995-11-15|1996-01-13|DELIVER IN PERSON|AIR| furiously accounts. final, iro| +74188|490471|40472|1|1|1461.45|0.07|0.03|A|F|1994-11-26|1995-01-01|1994-11-28|TAKE BACK RETURN|FOB|uctions cajole among the furiously eve| +74188|342992|18005|2|41|83434.18|0.03|0.02|A|F|1995-01-11|1994-12-24|1995-01-16|TAKE BACK RETURN|SHIP|fully unusu| +74188|654437|41977|3|8|11131.20|0.00|0.04|A|F|1994-12-31|1994-12-20|1995-01-05|NONE|FOB|lar deposits detect fu| +74189|864616|27134|1|43|67964.51|0.02|0.06|N|O|1996-03-07|1996-02-02|1996-04-01|COLLECT COD|MAIL|ully ironic deposits. blithely specia| +74189|591189|41190|2|40|51206.40|0.02|0.01|N|O|1995-12-26|1996-01-07|1996-01-11|TAKE BACK RETURN|FOB|usly special| +74189|108078|20581|3|35|38012.45|0.02|0.04|N|O|1996-01-06|1996-02-03|1996-01-15|DELIVER IN PERSON|FOB|e special packages. caref| +74189|458873|46401|4|5|9159.25|0.06|0.07|N|O|1995-12-17|1996-01-12|1996-01-05|COLLECT COD|FOB|t the packages. fluffily regula| +74189|266979|29485|5|4|7783.84|0.01|0.07|N|O|1996-02-15|1995-12-29|1996-02-28|TAKE BACK RETURN|TRUCK|s are carefully. wart| +74190|333610|46117|1|34|55882.40|0.00|0.07|A|F|1995-01-13|1995-03-11|1995-02-01|DELIVER IN PERSON|SHIP|l requests haggle furiously. regular, bold | +74190|976818|26819|2|50|94738.50|0.00|0.04|R|F|1995-04-26|1995-03-19|1995-05-23|NONE|AIR|ously final | +74190|369184|44199|3|18|22557.06|0.09|0.01|A|F|1995-03-16|1995-02-27|1995-03-21|TAKE BACK RETURN|REG AIR|s. instructions nag quickly reg| +74190|875326|361|4|44|57256.32|0.08|0.08|R|F|1995-01-14|1995-03-14|1995-01-20|NONE|AIR|ckages detect carefully. regul| +74190|599506|12018|5|20|32109.60|0.02|0.03|R|F|1995-03-19|1995-02-24|1995-03-21|DELIVER IN PERSON|RAIL|ly even pinto beans serve thi| +74190|883675|46193|6|16|26538.08|0.01|0.01|R|F|1995-03-09|1995-02-20|1995-04-06|DELIVER IN PERSON|MAIL|ly even ideas haggle slyly above t| +74190|925399|12954|7|19|27062.65|0.06|0.03|R|F|1995-03-28|1995-01-27|1995-04-17|COLLECT COD|SHIP| express excuses| +74191|166699|29203|1|41|72393.29|0.08|0.01|N|O|1998-08-08|1998-09-23|1998-08-21|TAKE BACK RETURN|RAIL|latelets in| +74191|702138|39681|2|43|49024.30|0.07|0.01|N|O|1998-10-05|1998-09-01|1998-10-11|DELIVER IN PERSON|REG AIR|al pinto bea| +74191|828671|28672|3|18|28793.34|0.02|0.07|N|O|1998-08-06|1998-09-29|1998-08-22|DELIVER IN PERSON|RAIL|uickly pending excuses sleep. bli| +74191|467939|5467|4|12|22882.92|0.05|0.04|N|O|1998-08-29|1998-08-29|1998-09-04|TAKE BACK RETURN|SHIP|counts are | +74191|640268|15293|5|39|47120.97|0.06|0.00|N|O|1998-07-05|1998-08-05|1998-07-14|COLLECT COD|AIR|nts wake. silently unusual as| +74191|979489|17047|6|26|40779.44|0.10|0.05|N|O|1998-10-24|1998-09-08|1998-10-31|TAKE BACK RETURN|MAIL|tes wake slyly for th| +74216|737757|12786|1|50|89736.00|0.05|0.06|N|O|1996-04-11|1996-03-27|1996-04-25|COLLECT COD|AIR|ly quickly final a| +74216|465253|40272|2|34|41419.82|0.10|0.06|N|O|1996-04-23|1996-02-26|1996-05-16|COLLECT COD|MAIL|uctions ca| +74216|500909|25930|3|30|57296.40|0.07|0.05|N|O|1996-02-21|1996-04-11|1996-03-09|COLLECT COD|FOB|nd about the carefully regular packag| +74217|716802|16803|1|22|40012.94|0.03|0.04|R|F|1995-02-15|1995-02-27|1995-02-24|NONE|RAIL| of the speci| +74218|403306|28323|1|17|20557.76|0.07|0.05|N|O|1996-03-16|1996-04-20|1996-04-03|COLLECT COD|FOB|its haggle despite | +74218|354412|41934|2|45|65988.00|0.06|0.06|N|O|1996-05-15|1996-04-16|1996-06-14|TAKE BACK RETURN|AIR|gle after the quickly regular do| +74218|594765|7277|3|21|39054.54|0.02|0.08|N|O|1996-03-16|1996-05-06|1996-03-31|NONE|SHIP|as haggle. unusual accounts nag flu| +74218|212794|307|4|26|44376.28|0.04|0.06|N|O|1996-02-25|1996-03-19|1996-03-15|TAKE BACK RETURN|TRUCK|ies. ruthlessly even accou| +74219|372496|35004|1|40|62739.20|0.03|0.05|N|O|1995-12-28|1995-12-08|1996-01-08|COLLECT COD|FOB|. slyly pending grouches haggle| +74219|523997|36508|2|11|22230.67|0.02|0.06|N|O|1995-12-13|1995-12-02|1995-12-14|NONE|AIR| silent deposits boost s| +74220|197115|9619|1|41|49696.51|0.02|0.03|N|O|1996-11-01|1996-12-02|1996-11-03|TAKE BACK RETURN|FOB| to the always ironic | +74220|902812|2813|2|42|76220.34|0.02|0.00|N|O|1997-01-14|1996-11-15|1997-02-05|COLLECT COD|FOB|ly even depende| +74221|277608|2619|1|32|50738.88|0.00|0.06|A|F|1993-04-17|1993-06-06|1993-05-04|TAKE BACK RETURN|SHIP|pendencies.| +74221|748184|35727|2|40|49286.00|0.09|0.02|R|F|1993-08-02|1993-05-27|1993-08-29|TAKE BACK RETURN|FOB|ng pinto beans cajole f| +74221|727315|27316|3|21|28187.88|0.00|0.00|A|F|1993-07-30|1993-06-03|1993-08-13|COLLECT COD|MAIL|structions pla| +74221|974113|36633|4|34|40360.38|0.07|0.03|R|F|1993-06-10|1993-05-31|1993-07-04|DELIVER IN PERSON|REG AIR|al instructions wake across the special a| +74221|916645|4200|5|34|56494.40|0.00|0.06|R|F|1993-04-30|1993-07-03|1993-05-15|TAKE BACK RETURN|MAIL|kages. regular, reg| +74221|43839|6340|6|23|41005.09|0.10|0.07|R|F|1993-07-03|1993-06-27|1993-07-15|NONE|MAIL|counts. furiously bold requests| +74221|796246|21277|7|17|22817.57|0.08|0.06|A|F|1993-05-06|1993-06-22|1993-05-17|NONE|TRUCK|ts. slyly blithe pinto beans | +74222|497765|47766|1|1|1762.74|0.07|0.00|N|O|1996-05-03|1996-07-04|1996-05-28|COLLECT COD|MAIL|ons haggle slyly carefully regular accounts| +74222|925895|25896|2|42|80675.70|0.01|0.04|N|O|1996-07-23|1996-06-15|1996-08-18|NONE|REG AIR|ickly ironic instructions us| +74222|511792|49323|3|13|23449.01|0.09|0.01|N|O|1996-07-18|1996-06-01|1996-08-07|TAKE BACK RETURN|SHIP|ke special ideas. quickly expres| +74222|683342|45856|4|35|46385.85|0.00|0.08|N|O|1996-08-24|1996-06-07|1996-09-11|TAKE BACK RETURN|SHIP|s. ironically express dolphins boost.| +74222|916016|16017|5|45|46438.65|0.10|0.03|N|O|1996-08-04|1996-06-18|1996-08-27|DELIVER IN PERSON|MAIL|fully final dependencies. s| +74222|471956|21957|6|14|26991.02|0.02|0.08|N|O|1996-07-25|1996-06-07|1996-08-21|TAKE BACK RETURN|TRUCK| fluffily unusu| +74222|157409|32416|7|16|23462.40|0.02|0.00|N|O|1996-05-11|1996-06-21|1996-05-12|NONE|SHIP|refully. furiously pe| +74223|561728|49262|1|17|30424.90|0.07|0.05|N|O|1997-06-24|1997-07-05|1997-07-05|TAKE BACK RETURN|SHIP|y silently even foxe| +74223|951743|1744|2|5|8973.50|0.06|0.00|N|O|1997-06-05|1997-07-20|1997-06-23|DELIVER IN PERSON|RAIL| waters cajole furiously final accounts. bo| +74223|929194|41713|3|3|3669.45|0.04|0.05|N|O|1997-07-02|1997-07-10|1997-07-09|COLLECT COD|SHIP|ly regular platelets sleep | +74223|957572|7573|4|19|30961.07|0.02|0.01|N|O|1997-08-28|1997-07-04|1997-09-21|COLLECT COD|RAIL|w, final pinto beans. furious| +74223|907300|19819|5|7|9150.82|0.00|0.07|N|O|1997-06-23|1997-07-01|1997-07-08|NONE|MAIL|ent requests | +74248|593812|18835|1|39|74325.81|0.04|0.06|N|O|1997-03-03|1997-04-27|1997-03-24|TAKE BACK RETURN|TRUCK|refully expre| +74248|194963|7467|2|26|53506.96|0.09|0.06|N|O|1997-04-06|1997-03-31|1997-04-14|COLLECT COD|RAIL| slyly alongside of th| +74248|735556|23099|3|8|12732.16|0.10|0.04|N|O|1997-04-16|1997-05-02|1997-05-06|TAKE BACK RETURN|AIR|d have to wake. sl| +74248|475148|12676|4|5|5615.60|0.07|0.06|N|O|1997-04-18|1997-05-10|1997-04-28|COLLECT COD|TRUCK|ly dogged requests. never ex| +74248|796683|46684|5|3|5338.95|0.09|0.07|N|O|1997-05-14|1997-05-10|1997-06-12|NONE|RAIL|ously furious| +74249|992353|4873|1|9|13007.79|0.02|0.05|N|O|1996-03-21|1996-02-15|1996-04-04|COLLECT COD|AIR|re stealthily blithely silent pac| +74249|461934|24444|2|25|47397.75|0.08|0.01|N|O|1996-01-05|1996-03-07|1996-01-15|NONE|TRUCK|ckages. blithely regular deposits alongside| +74249|724269|36784|3|50|64661.50|0.09|0.02|N|O|1996-04-08|1996-03-03|1996-04-20|TAKE BACK RETURN|AIR|haggle carefully above the even, final | +74250|583965|8988|1|43|88104.42|0.08|0.02|N|O|1997-08-20|1997-09-22|1997-08-22|DELIVER IN PERSON|REG AIR|e fluffily regular pinto beans. s| +74250|687735|37736|2|29|49958.30|0.04|0.01|N|O|1997-11-19|1997-09-23|1997-12-08|COLLECT COD|RAIL|use quickly blithely bol| +74250|750719|13235|3|28|49551.04|0.09|0.02|N|O|1997-08-01|1997-09-11|1997-08-13|COLLECT COD|SHIP|ess instructio| +74251|475177|25178|1|6|6912.90|0.04|0.06|A|F|1993-09-13|1993-10-16|1993-09-20|COLLECT COD|AIR|unusual accounts use sl| +74251|289134|1640|2|29|32570.48|0.07|0.01|A|F|1993-08-20|1993-10-01|1993-09-02|DELIVER IN PERSON|REG AIR|e special theo| +74251|459519|34538|3|38|56182.62|0.09|0.04|R|F|1993-08-13|1993-10-22|1993-08-17|TAKE BACK RETURN|MAIL|riously. even accounts alongside | +74251|122341|47346|4|29|39536.86|0.08|0.02|R|F|1993-09-01|1993-10-24|1993-09-16|NONE|TRUCK|ar deposits. blithely regular i| +74251|175953|13463|5|21|42607.95|0.07|0.06|R|F|1993-08-22|1993-10-02|1993-08-23|NONE|RAIL|ely ironic foxes? bold | +74252|921522|34041|1|4|6173.92|0.07|0.00|N|O|1995-08-27|1995-07-31|1995-09-25|COLLECT COD|FOB|nding asymptotes use quickly. final, pe| +74252|15642|15643|2|9|14018.76|0.08|0.05|N|O|1995-06-22|1995-08-29|1995-07-11|DELIVER IN PERSON|MAIL|lyly accor| +74253|676189|13729|1|10|11651.50|0.05|0.00|R|F|1992-11-24|1992-11-29|1992-12-01|COLLECT COD|MAIL|nal deposits. deposits s| +74253|706897|44440|2|12|22846.32|0.00|0.00|A|F|1992-11-09|1992-11-21|1992-11-19|TAKE BACK RETURN|TRUCK|. special, ironic accounts sl| +74253|814971|40004|3|39|73551.27|0.04|0.03|R|F|1993-01-05|1992-12-20|1993-01-22|COLLECT COD|RAIL|final accounts are da| +74253|211154|11155|4|11|11716.54|0.06|0.07|A|F|1992-10-30|1992-12-27|1992-11-24|COLLECT COD|TRUCK|ns wake idly abo| +74253|860450|48002|5|36|50774.76|0.05|0.08|A|F|1992-10-23|1992-11-18|1992-11-01|TAKE BACK RETURN|FOB|g to the quietly bold deposits| +74254|174826|24827|1|49|93140.18|0.03|0.05|R|F|1994-12-28|1995-01-28|1995-01-10|TAKE BACK RETURN|SHIP|uickly acco| +74254|288561|1067|2|5|7747.75|0.04|0.07|A|F|1994-12-04|1995-01-07|1994-12-31|NONE|MAIL|fully bold packages. slyly expres| +74255|143501|6004|1|13|20078.50|0.08|0.08|A|F|1993-08-13|1993-09-23|1993-08-14|TAKE BACK RETURN|REG AIR|t packages. deposits sleep doggedly pending| +74255|813216|13217|2|49|55329.33|0.05|0.08|A|F|1993-11-28|1993-10-05|1993-12-12|TAKE BACK RETURN|RAIL|riously special accounts. furiously final i| +74255|719282|19283|3|13|16916.25|0.07|0.06|A|F|1993-08-11|1993-11-03|1993-08-28|NONE|AIR|inst the slyly un| +74280|955496|5497|1|36|55852.20|0.10|0.05|R|F|1993-03-18|1993-06-09|1993-04-03|NONE|FOB|bove the blithely| +74281|28422|28423|1|50|67521.00|0.08|0.04|N|O|1998-08-06|1998-10-05|1998-08-12|COLLECT COD|FOB|. even, special accounts det| +74281|672344|22345|2|30|39489.30|0.01|0.01|N|O|1998-10-08|1998-08-31|1998-11-04|TAKE BACK RETURN|REG AIR|rs at the slyly bold pac| +74281|84034|9037|3|20|20360.60|0.03|0.04|N|O|1998-09-12|1998-10-03|1998-10-09|TAKE BACK RETURN|MAIL|ully furiously regular requests. theodoli| +74282|416052|41069|1|27|26136.81|0.03|0.05|R|F|1992-02-09|1992-04-17|1992-02-24|DELIVER IN PERSON|REG AIR|regular warthogs use blithely quickly| +74282|579709|29710|2|22|39350.96|0.01|0.04|R|F|1992-02-16|1992-03-27|1992-02-21|NONE|SHIP|express deposits use slyly | +74282|158578|46088|3|6|9819.42|0.06|0.08|A|F|1992-02-05|1992-04-16|1992-02-14|COLLECT COD|SHIP| accounts cajole quickly. carefully even t| +74282|215220|40229|4|43|48814.03|0.01|0.00|R|F|1992-04-20|1992-03-11|1992-05-13|TAKE BACK RETURN|FOB|unusual packages sl| +74282|198412|48413|5|8|12083.28|0.06|0.00|R|F|1992-02-13|1992-02-28|1992-02-23|TAKE BACK RETURN|MAIL|sts detect carefully above the blithely s| +74282|702632|15147|6|1|1634.60|0.09|0.06|R|F|1992-04-27|1992-02-23|1992-05-04|DELIVER IN PERSON|FOB|sauternes al| +74283|133449|20956|1|41|60780.04|0.02|0.01|N|O|1998-04-29|1998-04-19|1998-05-29|COLLECT COD|RAIL|latelets. furiously pending packag| +74284|476640|26641|1|30|48498.60|0.03|0.01|N|O|1996-04-27|1996-05-13|1996-05-10|DELIVER IN PERSON|TRUCK|ckages nag furiously blithely express p| +74284|875352|37870|2|25|33182.75|0.04|0.03|N|O|1996-05-23|1996-06-01|1996-06-16|TAKE BACK RETURN|SHIP|bout the pending pinto beans c| +74284|27921|15422|3|43|79503.56|0.01|0.02|N|O|1996-04-17|1996-05-08|1996-05-05|TAKE BACK RETURN|SHIP|e furiously. slyly ironic theodolites acro| +74285|654531|17045|1|19|28224.50|0.10|0.00|R|F|1993-06-19|1993-08-26|1993-06-21|COLLECT COD|TRUCK|ss. silent deposits wake| +74285|690230|40231|2|25|30505.00|0.00|0.06|A|F|1993-06-27|1993-07-16|1993-07-06|DELIVER IN PERSON|SHIP|s, ironic dinos are unusual deposits. reg| +74285|694870|7384|3|32|59674.88|0.01|0.05|A|F|1993-07-22|1993-08-23|1993-08-02|DELIVER IN PERSON|REG AIR|about the | +74286|543955|18976|1|39|77958.27|0.05|0.03|N|O|1997-12-20|1997-10-29|1998-01-08|COLLECT COD|AIR|ly ironic package| +74287|246660|21669|1|29|46592.85|0.07|0.00|R|F|1992-11-05|1992-10-23|1992-11-25|NONE|FOB|ns haggle regular, | +74287|606760|19273|2|25|41668.25|0.09|0.04|R|F|1992-11-28|1992-10-02|1992-12-01|TAKE BACK RETURN|SHIP|its sleep. bl| +74312|752885|2886|1|27|52321.95|0.04|0.06|R|F|1992-12-02|1992-11-15|1992-12-29|DELIVER IN PERSON|FOB|ly idle accounts. caref| +74312|736790|49305|2|13|23747.88|0.03|0.08|R|F|1992-12-21|1992-12-29|1993-01-19|TAKE BACK RETURN|FOB|tegrate about the furious | +74312|222915|35420|3|7|12865.30|0.09|0.08|A|F|1993-01-15|1992-12-25|1993-01-29|TAKE BACK RETURN|MAIL| ironic platelets| +74312|525353|12884|4|46|63403.18|0.07|0.01|A|F|1992-12-29|1992-11-28|1993-01-11|COLLECT COD|REG AIR| cajole carefully pending inst| +74312|592795|17818|5|5|9438.85|0.02|0.00|R|F|1992-12-01|1992-12-05|1992-12-06|COLLECT COD|REG AIR|pending deposits wake carefully pendin| +74312|93188|5690|6|18|21261.24|0.07|0.07|R|F|1993-01-10|1992-11-26|1993-02-03|TAKE BACK RETURN|FOB|ily silent gr| +74312|200870|38383|7|3|5312.58|0.04|0.07|R|F|1992-10-06|1992-12-02|1992-10-26|DELIVER IN PERSON|REG AIR|ly special packag| +74313|16564|16565|1|23|34052.88|0.02|0.06|A|F|1993-01-13|1992-11-13|1993-01-27|COLLECT COD|MAIL| special dependencies wake blit| +74313|378211|28212|2|27|34808.40|0.10|0.08|R|F|1992-12-24|1992-12-01|1993-01-21|NONE|TRUCK| even deposits. ironic, final req| +74314|468001|18002|1|12|11627.76|0.10|0.04|N|O|1997-06-14|1997-06-26|1997-06-30|TAKE BACK RETURN|TRUCK|efully pending requests sleep. furiously | +74314|692304|17331|2|9|11666.43|0.02|0.08|N|O|1997-07-16|1997-06-16|1997-07-22|DELIVER IN PERSON|SHIP|the decoys-- pendi| +74314|552047|27070|3|35|38465.70|0.10|0.05|N|O|1997-07-24|1997-06-22|1997-08-09|NONE|MAIL|. special accounts around t| +74314|244030|6535|4|27|26298.54|0.00|0.04|N|O|1997-06-20|1997-06-25|1997-07-01|COLLECT COD|MAIL|le stealthily furious| +74314|405790|5791|5|38|64439.26|0.05|0.01|N|O|1997-08-08|1997-07-10|1997-09-01|COLLECT COD|FOB|counts. furiously regular packages play fu| +74315|595533|45534|1|24|39084.24|0.08|0.04|R|F|1995-01-20|1994-12-08|1995-02-10|TAKE BACK RETURN|TRUCK|re about the slyly even requests. furi| +74315|117694|30197|2|19|32522.11|0.06|0.06|A|F|1995-01-06|1994-11-30|1995-01-29|COLLECT COD|TRUCK|inal instructions wake p| +74315|76990|14494|3|5|9834.95|0.05|0.02|A|F|1995-01-04|1995-01-09|1995-01-25|TAKE BACK RETURN|TRUCK|ornis believe quickly express| +74315|967980|17981|4|48|98301.12|0.08|0.05|A|F|1995-02-27|1994-12-17|1995-03-20|COLLECT COD|TRUCK| accounts sleep blithely silent d| +74315|833062|20611|5|7|6965.14|0.06|0.05|A|F|1995-01-07|1995-01-11|1995-01-31|TAKE BACK RETURN|FOB|uickly blithely regular package| +74316|676759|1786|1|48|83314.56|0.03|0.04|R|F|1995-05-11|1995-06-24|1995-05-30|COLLECT COD|RAIL|sy packages am| +74316|287492|37493|2|40|59179.20|0.08|0.06|A|F|1995-05-28|1995-06-07|1995-06-04|NONE|MAIL|slyly alongside of the slyly ironic dolphin| +74316|877562|40080|3|14|21553.28|0.03|0.06|N|O|1995-08-30|1995-07-12|1995-09-19|DELIVER IN PERSON|TRUCK|ong the ironic do| +74316|177082|14592|4|7|8113.56|0.07|0.06|N|O|1995-08-05|1995-07-11|1995-09-03|DELIVER IN PERSON|TRUCK| slyly final requests. | +74317|512452|12453|1|13|19037.59|0.04|0.05|N|O|1995-11-09|1995-10-03|1995-11-12|TAKE BACK RETURN|RAIL|es. slyly final reque| +74317|779662|17208|2|47|81856.61|0.05|0.04|N|O|1995-09-17|1995-11-04|1995-09-19|DELIVER IN PERSON|AIR|nto beans nag ca| +74317|770499|8045|3|17|26680.82|0.03|0.08|N|O|1995-09-15|1995-09-17|1995-10-05|COLLECT COD|AIR|ing, ironic packa| +74318|350598|13106|1|45|74186.10|0.03|0.01|R|F|1995-02-02|1994-12-17|1995-02-11|DELIVER IN PERSON|FOB|ously pending dolphins after the care| +74318|499525|37053|2|2|3049.00|0.10|0.04|A|F|1994-12-15|1994-11-24|1994-12-21|DELIVER IN PERSON|SHIP|s accounts boost. even excuses acros| +74318|503052|28073|3|30|31650.90|0.06|0.06|A|F|1994-12-28|1994-12-12|1994-12-29|TAKE BACK RETURN|RAIL|beans. bold, unusual theodolites are furi| +74319|488727|1237|1|35|60049.50|0.03|0.06|N|O|1996-10-11|1996-08-18|1996-11-07|DELIVER IN PERSON|RAIL| carefully. even de| +74344|348687|36206|1|6|10414.02|0.05|0.07|R|F|1994-04-23|1994-05-11|1994-05-09|DELIVER IN PERSON|TRUCK|into beans! even, final p| +74344|373038|10560|2|7|7777.14|0.07|0.00|A|F|1994-06-06|1994-04-01|1994-06-29|NONE|RAIL|thely pending pin| +74344|641889|29426|3|34|62248.90|0.05|0.03|R|F|1994-04-28|1994-05-06|1994-05-06|NONE|SHIP| accounts wake against the | +74344|226102|13615|4|47|48320.23|0.01|0.04|R|F|1994-04-27|1994-05-07|1994-05-10|TAKE BACK RETURN|MAIL|n requests. instructions detect furio| +74344|79523|17027|5|24|36060.48|0.01|0.02|R|F|1994-06-25|1994-04-19|1994-07-04|COLLECT COD|FOB|luffily busy | +74344|527972|15503|6|36|71998.20|0.07|0.04|R|F|1994-03-15|1994-04-03|1994-03-26|TAKE BACK RETURN|RAIL|structions kindle fluffi| +74345|902494|15013|1|36|53872.20|0.04|0.05|R|F|1992-10-31|1992-08-12|1992-11-24|COLLECT COD|SHIP|y among the carefully dogged| +74345|209986|22491|2|32|60671.04|0.04|0.03|A|F|1992-08-23|1992-08-22|1992-09-07|COLLECT COD|SHIP|eas. carefully ironic requests | +74345|232988|7997|3|37|71075.89|0.03|0.01|A|F|1992-10-29|1992-10-05|1992-11-25|COLLECT COD|FOB|ithely express h| +74345|816724|29241|4|10|16406.80|0.07|0.00|R|F|1992-09-16|1992-09-10|1992-10-10|DELIVER IN PERSON|SHIP|ounts nag carefully. slyly iro| +74345|676652|39166|5|8|13028.96|0.01|0.08|R|F|1992-10-01|1992-10-03|1992-10-30|NONE|MAIL|s? quickly unusual requests sleep quic| +74345|479030|16558|6|40|40360.40|0.04|0.00|A|F|1992-09-22|1992-08-16|1992-10-08|TAKE BACK RETURN|TRUCK|ding sauternes. blithely regular | +74346|188466|25976|1|18|27980.28|0.06|0.03|N|O|1998-05-08|1998-05-16|1998-05-31|NONE|REG AIR|unts lose across the silent asymptote| +74347|473484|11012|1|33|48096.18|0.07|0.00|R|F|1992-12-16|1992-11-17|1993-01-09|NONE|REG AIR|press theodolites are about| +74347|842700|42701|2|16|26282.56|0.01|0.05|R|F|1992-12-15|1992-11-17|1993-01-03|DELIVER IN PERSON|RAIL| silently quiet packa| +74347|244795|32308|3|41|71330.98|0.08|0.02|R|F|1992-10-17|1992-12-23|1992-10-28|DELIVER IN PERSON|AIR|nstructions. carefully express braids ac| +74347|258207|20713|4|15|17477.85|0.02|0.02|A|F|1992-12-02|1992-12-17|1992-12-18|COLLECT COD|AIR|areful excuses. blithely regu| +74348|278369|40875|1|24|32336.40|0.05|0.07|A|F|1993-02-20|1993-02-06|1993-03-11|NONE|SHIP|special re| +74348|539023|26554|2|44|46728.00|0.00|0.02|R|F|1993-04-14|1993-02-02|1993-05-12|COLLECT COD|MAIL|inal ideas sleep slyly requests. o| +74348|354460|41982|3|45|68150.25|0.00|0.04|A|F|1993-04-01|1993-03-22|1993-04-06|COLLECT COD|MAIL|ideas. bold, dogg| +74348|397915|35437|4|36|72464.40|0.00|0.08|A|F|1993-03-25|1993-02-09|1993-04-08|COLLECT COD|FOB|ic, even de| +74349|737204|12233|1|18|22341.06|0.01|0.04|A|F|1992-12-02|1993-01-26|1992-12-04|NONE|REG AIR|ual accounts nag furiously above| +74349|183156|8163|2|4|4956.60|0.02|0.02|A|F|1992-12-21|1993-01-16|1992-12-30|DELIVER IN PERSON|TRUCK|g requests are slyly among th| +74349|289558|27074|3|48|74281.92|0.09|0.04|A|F|1993-01-29|1993-01-31|1993-02-20|NONE|MAIL| the fluffily unusua| +74350|660838|35865|1|19|34177.20|0.02|0.08|R|F|1993-11-07|1993-10-05|1993-11-15|COLLECT COD|SHIP|ounts haggle furiously about the platel| +74350|691898|29438|2|46|86933.56|0.10|0.05|R|F|1993-11-12|1993-09-18|1993-12-11|COLLECT COD|FOB|rouches. carefully si| +74350|727367|27368|3|13|18126.29|0.07|0.04|A|F|1993-09-11|1993-10-15|1993-09-15|NONE|MAIL|uests. special accounts haggle | +74350|845854|33403|4|50|89990.50|0.03|0.03|R|F|1993-08-03|1993-09-25|1993-08-20|COLLECT COD|MAIL|ts cajole carefully regul| +74350|253177|40693|5|36|40685.76|0.02|0.05|R|F|1993-09-12|1993-09-07|1993-10-05|COLLECT COD|TRUCK|r foxes during the slyly regular pinto b| +74351|776504|14050|1|1|1580.47|0.06|0.02|N|O|1996-06-11|1996-04-12|1996-06-28|DELIVER IN PERSON|AIR|refully unusual instructions sleep blithe| +74351|694864|44865|2|23|42753.09|0.07|0.03|N|O|1996-06-18|1996-05-22|1996-06-27|DELIVER IN PERSON|FOB|against the blithely ironic ideas print sl| +74351|576369|1392|3|22|31797.48|0.07|0.01|N|O|1996-03-09|1996-03-31|1996-03-31|NONE|RAIL|arefully pe| +74351|29830|17331|4|16|28157.28|0.07|0.04|N|O|1996-04-15|1996-05-15|1996-04-20|COLLECT COD|MAIL|ress pinto b| +74351|346180|46181|5|24|29428.08|0.10|0.00|N|O|1996-06-22|1996-04-21|1996-07-11|DELIVER IN PERSON|AIR|platelets detect blithely above the | +74351|240170|2675|6|2|2220.32|0.05|0.03|N|O|1996-04-26|1996-05-12|1996-04-30|TAKE BACK RETURN|SHIP|s use. furiously bold packages caj| +74351|536310|23841|7|22|29618.38|0.00|0.01|N|O|1996-05-08|1996-05-13|1996-05-13|DELIVER IN PERSON|RAIL|y express excus| +74376|754331|29362|1|6|8311.80|0.07|0.04|A|F|1994-03-09|1994-04-13|1994-03-10|TAKE BACK RETURN|MAIL|final, special d| +74376|26819|39320|2|35|61103.35|0.06|0.08|R|F|1994-05-08|1994-03-03|1994-05-16|NONE|REG AIR|wake. regular foxes sl| +74376|743725|18754|3|49|86665.81|0.00|0.03|A|F|1994-04-26|1994-03-17|1994-05-14|COLLECT COD|RAIL|ickly blithely | +74376|781792|44308|4|29|54339.04|0.05|0.03|R|F|1994-01-18|1994-03-12|1994-02-13|DELIVER IN PERSON|SHIP|es nag furiously agai| +74376|563334|868|5|7|9781.17|0.02|0.02|R|F|1994-04-22|1994-04-14|1994-05-07|DELIVER IN PERSON|FOB|quests about the quickly ironic foxes unw| +74376|949962|24999|6|1|2011.92|0.08|0.05|A|F|1994-04-26|1994-02-14|1994-05-22|DELIVER IN PERSON|SHIP|owly special pinto beans. eve| +74376|996987|34545|7|14|29175.16|0.05|0.08|A|F|1994-03-02|1994-02-24|1994-03-21|COLLECT COD|FOB| quickly close pa| +74377|346072|21085|1|25|27951.50|0.10|0.03|A|F|1992-12-19|1992-12-20|1993-01-10|TAKE BACK RETURN|MAIL|express asymptotes integrate q| +74377|417589|30098|2|23|34650.88|0.10|0.04|A|F|1992-10-11|1992-11-23|1992-10-26|TAKE BACK RETURN|AIR|osits. packages nag quickly along| +74377|410821|10822|3|44|76199.20|0.03|0.00|A|F|1992-10-25|1993-01-07|1992-11-02|NONE|RAIL|s above the blithe| +74377|653714|41254|4|35|58368.80|0.09|0.04|A|F|1992-12-29|1992-11-23|1993-01-13|DELIVER IN PERSON|MAIL|areful packages wake fluffily blithely sil| +74378|954244|41802|1|28|36349.60|0.03|0.08|N|O|1997-01-09|1997-01-03|1997-02-01|DELIVER IN PERSON|MAIL|usly theodolites. final the| +74378|971292|21293|2|42|57256.50|0.06|0.08|N|O|1997-02-03|1996-12-29|1997-02-10|TAKE BACK RETURN|RAIL|e slyly alongs| +74378|487885|37886|3|41|76787.26|0.09|0.02|N|O|1997-01-30|1996-11-20|1997-02-12|NONE|MAIL|o beans detect along the furiously sp| +74378|868544|6096|4|39|58987.50|0.06|0.07|N|O|1996-10-22|1996-12-22|1996-11-02|NONE|MAIL| ideas. regula| +74378|604289|4290|5|39|46536.75|0.06|0.02|N|O|1996-11-21|1996-11-12|1996-12-09|DELIVER IN PERSON|FOB|ar ideas use fluffily. | +74379|910664|35701|1|9|15071.58|0.00|0.03|A|F|1993-12-22|1993-11-06|1994-01-18|COLLECT COD|MAIL|ironic accounts cajole caref| +74379|522594|10125|2|23|37181.11|0.07|0.08|R|F|1993-11-16|1993-11-24|1993-11-25|DELIVER IN PERSON|SHIP|he regular instructions. furiously spec| +74379|231434|6443|3|38|51885.96|0.09|0.04|A|F|1993-10-17|1993-11-09|1993-11-16|COLLECT COD|TRUCK|alongside of the furiously final requests.| +74379|699128|36668|4|31|34939.79|0.02|0.08|R|F|1993-10-03|1993-12-04|1993-10-28|DELIVER IN PERSON|AIR|r pinto beans. regular foxes use careful| +74379|240781|15790|5|39|67149.03|0.00|0.08|A|F|1993-09-21|1993-11-01|1993-09-22|COLLECT COD|TRUCK|ly pending pinto beans cajole. car| +74380|723016|48045|1|6|6233.88|0.07|0.07|N|O|1996-07-11|1996-07-07|1996-08-03|NONE|RAIL|y. fluffily regular foxes ab| +74380|715406|40435|2|31|44062.47|0.01|0.03|N|O|1996-08-26|1996-08-08|1996-09-11|TAKE BACK RETURN|AIR| slyly. carefully regula| +74380|823149|48182|3|35|37523.50|0.07|0.03|N|O|1996-07-03|1996-08-09|1996-07-26|COLLECT COD|RAIL|usual requests against the blithely| +74381|554598|29621|1|12|19830.84|0.07|0.00|A|F|1993-02-03|1993-02-03|1993-02-18|TAKE BACK RETURN|FOB|intain fluffily a| +74381|119158|19159|2|21|24720.15|0.04|0.06|A|F|1993-01-26|1993-01-07|1993-02-10|COLLECT COD|RAIL| pending exc| +74381|686735|49249|3|37|63702.90|0.10|0.00|R|F|1993-02-16|1993-01-23|1993-03-02|DELIVER IN PERSON|AIR|ely regular ideas abou| +74381|938974|1493|4|8|16103.44|0.05|0.03|A|F|1993-03-06|1993-02-02|1993-03-21|NONE|SHIP|ter the blithely unusual requests| +74381|322518|10037|5|36|55458.00|0.04|0.03|A|F|1993-03-03|1993-02-12|1993-03-29|TAKE BACK RETURN|RAIL|beans. quickly bold foxes run furio| +74381|557343|19855|6|39|54612.48|0.09|0.05|R|F|1993-01-21|1993-01-14|1993-01-31|TAKE BACK RETURN|FOB|y special warhorses! frays sl| +74382|174597|24598|1|41|68535.19|0.09|0.07|A|F|1995-04-04|1995-05-12|1995-04-15|COLLECT COD|MAIL|ily. even theodolites integrate quic| +74382|436617|24142|2|29|45054.11|0.06|0.05|N|O|1995-07-05|1995-05-16|1995-07-09|NONE|MAIL|ironic instructions mo| +74383|959516|9517|1|40|63018.80|0.00|0.03|N|F|1995-06-03|1995-08-04|1995-06-25|COLLECT COD|RAIL|ackages. qui| +74383|571192|21193|2|31|39158.27|0.10|0.03|N|O|1995-08-15|1995-07-06|1995-08-31|NONE|FOB|yly. carefully fluffy decoy| +74408|426997|2014|1|43|82730.71|0.03|0.04|N|O|1997-03-03|1997-03-15|1997-03-17|TAKE BACK RETURN|TRUCK|ts. carefully pending Tiresias aff| +74408|534198|34199|2|19|23411.23|0.07|0.02|N|O|1997-02-26|1997-03-08|1997-03-21|TAKE BACK RETURN|AIR|ar deposits detect carefully even attain| +74408|260024|47540|3|38|37392.38|0.02|0.06|N|O|1997-04-28|1997-03-28|1997-05-15|DELIVER IN PERSON|RAIL|te quickly. final deposits nag slyly| +74408|219277|6790|4|9|10766.34|0.05|0.05|N|O|1997-02-16|1997-03-27|1997-02-24|COLLECT COD|TRUCK| detect accord| +74408|374400|49415|5|10|14743.90|0.08|0.02|N|O|1997-01-09|1997-03-09|1997-01-14|COLLECT COD|SHIP|usual requests. furi| +74409|868943|18944|1|35|66916.50|0.10|0.07|R|F|1995-04-03|1995-04-13|1995-04-09|COLLECT COD|AIR| depths cajole car| +74409|312638|25145|2|42|69326.04|0.07|0.07|R|F|1995-05-05|1995-04-19|1995-05-11|COLLECT COD|AIR|ts run about the furiously even| +74409|504836|17347|3|26|47861.06|0.00|0.03|A|F|1995-04-11|1995-06-01|1995-05-02|DELIVER IN PERSON|SHIP|fily regular requests are above the p| +74410|850783|784|1|9|15603.66|0.04|0.02|A|F|1994-06-12|1994-05-09|1994-06-23|COLLECT COD|AIR|nic accounts| +74410|96251|21254|2|14|17461.50|0.04|0.07|A|F|1994-06-18|1994-05-18|1994-07-16|COLLECT COD|FOB|ly final p| +74410|677757|40271|3|36|62449.92|0.09|0.03|A|F|1994-06-29|1994-05-10|1994-07-16|NONE|MAIL|he furiously pending packages. ironi| +74410|60474|47978|4|18|25820.46|0.06|0.02|R|F|1994-06-24|1994-05-11|1994-07-07|DELIVER IN PERSON|SHIP|r deposits. u| +74410|378230|3245|5|41|53637.02|0.08|0.06|R|F|1994-04-11|1994-04-21|1994-04-27|DELIVER IN PERSON|REG AIR|ts snooze. slyly final pla| +74411|31904|31905|1|41|75271.90|0.00|0.05|R|F|1994-07-02|1994-05-14|1994-07-23|COLLECT COD|MAIL| past the quickly regular requ| +74411|195727|45728|2|20|36454.40|0.04|0.05|R|F|1994-07-24|1994-05-19|1994-07-25|COLLECT COD|RAIL|ding foxes. ideas haggle ironic, fi| +74411|570112|45135|3|6|7092.54|0.08|0.07|A|F|1994-07-16|1994-06-14|1994-08-01|COLLECT COD|AIR|ole slyly according to the bold, un| +74411|872377|22378|4|7|9445.31|0.08|0.06|A|F|1994-04-01|1994-05-06|1994-04-26|TAKE BACK RETURN|FOB| foxes! packa| +74411|31814|6815|5|40|69832.40|0.06|0.02|R|F|1994-05-10|1994-05-29|1994-06-03|DELIVER IN PERSON|REG AIR|as nag slyly fluffily| +74411|693956|18983|6|23|44848.16|0.01|0.00|R|F|1994-06-12|1994-05-02|1994-06-14|NONE|FOB|slyly across the silently ironic | +74412|789522|14553|1|33|53179.17|0.09|0.02|N|O|1996-11-28|1996-12-10|1996-12-07|NONE|AIR| ironic requests hang carefully ca| +74413|626639|26640|1|11|17221.60|0.07|0.07|A|F|1994-02-25|1994-03-12|1994-03-17|COLLECT COD|SHIP|y silent pa| +74414|862590|25108|1|13|20183.15|0.02|0.02|A|F|1993-10-29|1993-10-25|1993-10-31|NONE|RAIL|cial theodolites wake furiously. unu| +74414|548479|23500|2|29|44296.05|0.01|0.08|R|F|1993-11-23|1993-11-27|1993-12-22|COLLECT COD|FOB| regular, bold inst| +74414|271791|9307|3|33|58171.74|0.07|0.03|A|F|1994-01-01|1993-11-15|1994-01-27|COLLECT COD|FOB| theodolites wake. blithel| +74414|986682|49202|4|2|3537.28|0.05|0.01|A|F|1993-10-22|1993-10-05|1993-10-31|DELIVER IN PERSON|TRUCK|eas. quickly regula| +74414|148896|11399|5|24|46677.36|0.08|0.00|A|F|1994-01-02|1993-11-18|1994-01-22|TAKE BACK RETURN|RAIL|eodolites boost against the fur| +74415|249454|49455|1|13|18244.72|0.06|0.05|N|O|1997-02-03|1997-01-20|1997-02-18|TAKE BACK RETURN|MAIL|requests. even, express deposit| +74415|568943|43966|2|45|90536.40|0.08|0.08|N|O|1997-04-08|1997-02-07|1997-04-11|NONE|REG AIR|pending courts are after the iron| +74415|224379|11892|3|26|33887.36|0.06|0.07|N|O|1997-02-11|1997-03-05|1997-03-09|COLLECT COD|AIR|odolites. regular,| +74415|124672|12179|4|37|62776.79|0.04|0.03|N|O|1997-03-06|1997-02-28|1997-04-01|COLLECT COD|RAIL|express foxes. blithely regular pac| +74415|355455|30470|5|22|33229.68|0.03|0.01|N|O|1997-02-01|1997-01-21|1997-02-24|COLLECT COD|REG AIR|ore the furiously regula| +74415|116355|3862|6|24|32912.40|0.01|0.00|N|O|1996-12-22|1997-03-19|1996-12-29|NONE|MAIL|y regular accounts. special, eve| +74415|565973|28485|7|24|48934.80|0.09|0.00|N|O|1997-01-11|1997-01-20|1997-01-14|TAKE BACK RETURN|REG AIR|olites detect sometimes after the bli| +74440|301793|14300|1|19|34100.82|0.02|0.06|R|F|1993-06-01|1993-08-04|1993-06-23|DELIVER IN PERSON|REG AIR|egular, silent deposits.| +74440|222411|47420|2|1|1333.40|0.10|0.00|R|F|1993-08-19|1993-07-11|1993-08-28|DELIVER IN PERSON|SHIP|ular asymptotes. quickly final accounts | +74440|61213|11214|3|8|9393.68|0.10|0.06|R|F|1993-07-03|1993-07-26|1993-07-06|NONE|TRUCK| dependencies wake regular platelets. caref| +74440|790296|40297|4|40|55450.40|0.07|0.05|R|F|1993-06-29|1993-08-02|1993-07-12|TAKE BACK RETURN|MAIL|quickly final requests. slyly | +74441|207789|32798|1|21|35632.17|0.00|0.00|N|O|1995-11-09|1995-12-02|1995-11-17|NONE|TRUCK|s. carefully iron| +74441|293527|18538|2|24|36492.24|0.02|0.05|N|O|1996-01-15|1995-11-28|1996-01-24|TAKE BACK RETURN|AIR|haggle furiously across the carefully unu| +74441|293525|6031|3|5|7592.55|0.09|0.02|N|O|1995-12-22|1995-12-17|1996-01-15|NONE|SHIP|ronic depende| +74441|273373|10889|4|40|53854.40|0.02|0.00|N|O|1995-10-20|1995-11-14|1995-10-21|NONE|REG AIR|slyly ironic packages sublate furiou| +74441|563568|13569|5|22|35893.88|0.10|0.04|N|O|1995-10-19|1995-12-19|1995-11-08|DELIVER IN PERSON|REG AIR|ular theodolites. quickly | +74441|879863|29864|6|40|73712.80|0.05|0.03|N|O|1995-12-10|1996-01-02|1995-12-17|TAKE BACK RETURN|TRUCK| requests cajo| +74441|855774|30809|7|35|60540.55|0.08|0.03|N|O|1996-01-06|1995-12-30|1996-01-25|COLLECT COD|FOB|lay along the blithely special idea| +74442|980137|5176|1|11|13387.99|0.01|0.00|N|O|1997-11-16|1997-11-02|1997-11-20|DELIVER IN PERSON|TRUCK|ow requests wou| +74442|160233|10234|2|20|25864.60|0.06|0.06|N|O|1997-10-08|1997-11-16|1997-10-16|COLLECT COD|TRUCK|deposits boost. carefully ironic theo| +74442|20346|45347|3|43|54452.62|0.07|0.08|N|O|1997-12-19|1997-11-06|1997-12-30|TAKE BACK RETURN|AIR|haggle abov| +74442|943700|18737|4|29|50566.14|0.06|0.05|N|O|1998-01-08|1997-12-04|1998-01-26|COLLECT COD|TRUCK|s cajole carefully after the darin| +74442|755455|43001|5|49|74010.58|0.05|0.00|N|O|1997-09-28|1997-10-16|1997-10-22|NONE|FOB|ding to the express pinto b| +74443|906240|43795|1|4|4984.80|0.05|0.02|R|F|1992-02-23|1992-03-26|1992-02-25|DELIVER IN PERSON|REG AIR|beans. quickly even packages boost blithel| +74443|170474|32978|2|33|50967.51|0.02|0.04|R|F|1992-02-29|1992-03-29|1992-03-15|NONE|MAIL|s boost careful| +74444|177787|2794|1|33|61537.74|0.08|0.06|N|O|1998-08-24|1998-07-26|1998-09-11|COLLECT COD|SHIP|ly along the ca| +74445|382732|20254|1|15|27220.80|0.05|0.01|R|F|1994-10-13|1994-08-18|1994-10-21|TAKE BACK RETURN|TRUCK|ncies. entici| +74445|573139|35651|2|19|23030.09|0.08|0.04|R|F|1994-08-02|1994-10-01|1994-08-30|COLLECT COD|RAIL|deposits. fluffily sile| +74445|731811|19354|3|48|88453.44|0.00|0.07|A|F|1994-10-07|1994-08-16|1994-10-25|DELIVER IN PERSON|RAIL|furiously against | +74445|533467|45978|4|49|73521.56|0.00|0.07|A|F|1994-10-26|1994-09-01|1994-11-11|DELIVER IN PERSON|REG AIR|odolites are fluffily pending p| +74446|415137|15138|1|12|12625.32|0.07|0.06|N|O|1997-07-10|1997-08-19|1997-07-12|TAKE BACK RETURN|TRUCK|ly pending deposits | +74446|194014|44015|2|42|46536.42|0.07|0.06|N|O|1997-05-22|1997-08-16|1997-06-03|NONE|FOB|e of the final foxes sleep regular | +74446|783161|33162|3|13|16173.69|0.09|0.02|N|O|1997-08-25|1997-07-25|1997-09-21|NONE|RAIL|dolites. slyly bold excuses kindle. ironi| +74447|110370|35375|1|22|30368.14|0.05|0.00|N|O|1996-11-12|1996-11-08|1996-11-18|COLLECT COD|FOB|even frets accord| +74447|985240|35241|2|50|66260.00|0.08|0.07|N|O|1996-11-25|1996-10-31|1996-12-01|TAKE BACK RETURN|MAIL|bold requests. | +74447|918253|30772|3|33|41949.93|0.08|0.00|N|O|1996-11-23|1996-11-09|1996-12-13|NONE|REG AIR| haggle slyly regular account| +74447|67721|17722|4|17|28708.24|0.09|0.07|N|O|1996-11-14|1996-11-23|1996-11-25|NONE|TRUCK|endencies. furiously silent | +74447|176446|26447|5|48|73077.12|0.09|0.07|N|O|1996-12-21|1996-11-20|1996-12-31|DELIVER IN PERSON|REG AIR|usly express ideas. ironic acc| +74447|516116|16117|6|32|36226.88|0.00|0.00|N|O|1996-12-09|1996-10-24|1996-12-25|COLLECT COD|TRUCK|carefully r| +74447|349967|49968|7|23|46389.85|0.10|0.03|N|O|1996-11-01|1996-10-26|1996-11-17|TAKE BACK RETURN|REG AIR|s haggle slyly r| +74472|890568|3086|1|45|70133.40|0.01|0.05|N|O|1996-02-20|1996-03-08|1996-03-10|DELIVER IN PERSON|REG AIR|ounts cajol| +74472|769712|32228|2|17|30288.56|0.00|0.01|N|O|1996-02-07|1996-02-09|1996-02-08|TAKE BACK RETURN|MAIL|structions. bo| +74472|541548|4059|3|41|65170.32|0.10|0.03|N|O|1996-03-31|1996-02-17|1996-04-29|NONE|TRUCK|iously regular accounts. | +74472|782178|19724|4|22|27723.08|0.01|0.07|N|O|1996-01-01|1996-03-16|1996-01-02|COLLECT COD|REG AIR|. fluffily special deposi| +74473|744550|44551|1|5|7972.60|0.04|0.05|A|F|1993-10-01|1993-08-31|1993-10-25|TAKE BACK RETURN|TRUCK|uternes. fluffily pending req| +74474|988270|13309|1|2|2716.46|0.01|0.00|A|F|1994-12-09|1994-12-22|1995-01-08|DELIVER IN PERSON|MAIL|e. sly dep| +74474|841816|4333|2|1|1757.77|0.06|0.03|A|F|1995-01-12|1994-12-12|1995-01-16|COLLECT COD|RAIL|ss deposits haggle quickly quick| +74474|390009|40010|3|48|52751.52|0.02|0.03|A|F|1994-10-17|1994-11-03|1994-10-26|TAKE BACK RETURN|TRUCK|the furiously final instructions a| +74474|880186|42704|4|42|48977.88|0.00|0.00|R|F|1994-09-27|1994-12-23|1994-09-30|DELIVER IN PERSON|AIR|; special waters haggle idly in | +74474|276747|1758|5|26|44816.98|0.09|0.05|A|F|1994-11-06|1994-10-28|1994-11-08|TAKE BACK RETURN|TRUCK|inal courts wake fluffily. final, fina| +74475|327473|2486|1|9|13504.14|0.00|0.08|N|O|1996-03-05|1996-03-23|1996-04-03|TAKE BACK RETURN|RAIL|pearls. re| +74475|834530|9563|2|22|32218.78|0.04|0.05|N|O|1996-04-17|1996-04-22|1996-05-01|NONE|AIR|ng instruct| +74476|778773|28774|1|30|55552.20|0.02|0.05|N|O|1996-08-12|1996-07-29|1996-08-19|COLLECT COD|SHIP|s doze sly| +74476|830774|43291|2|8|13637.84|0.01|0.01|N|O|1996-09-23|1996-08-30|1996-10-18|NONE|REG AIR|s boost carefully. bus| +74476|807393|32426|3|48|62416.80|0.08|0.05|N|O|1996-09-23|1996-09-02|1996-10-17|COLLECT COD|TRUCK|luffily final pinto beans haggl| +74477|219811|19812|1|26|45000.80|0.05|0.07|A|F|1994-06-04|1994-04-11|1994-06-06|NONE|REG AIR|he express, final request| +74477|360481|10482|2|28|43161.16|0.05|0.05|R|F|1994-03-24|1994-04-23|1994-04-12|TAKE BACK RETURN|FOB|accounts. slyly express asympt| +74478|459356|34375|1|26|34198.58|0.01|0.03|N|O|1996-08-29|1996-08-25|1996-09-07|NONE|FOB|jole furiously even court| +74479|66339|28841|1|19|24801.27|0.02|0.00|R|F|1992-06-10|1992-08-01|1992-06-15|DELIVER IN PERSON|MAIL|ent deposits| +74479|958355|45913|2|12|16959.72|0.05|0.04|A|F|1992-05-15|1992-07-24|1992-05-25|COLLECT COD|FOB|t the silently ironic sauternes haggle | +74504|918530|6085|1|2|3096.98|0.03|0.02|N|O|1995-07-23|1995-07-04|1995-07-29|TAKE BACK RETURN|RAIL|its. furiously final depo| +74504|724692|37207|2|2|3433.32|0.01|0.02|R|F|1995-06-02|1995-07-13|1995-06-11|NONE|FOB| slyly unusual| +74504|895751|33303|3|34|59388.14|0.04|0.05|N|F|1995-05-31|1995-07-15|1995-06-25|NONE|RAIL|cuses. deposits haggle idly; brav| +74505|781801|19347|1|50|94138.50|0.01|0.05|R|F|1992-11-01|1992-09-18|1992-11-03|DELIVER IN PERSON|RAIL|es use furious| +74505|727845|15388|2|44|82403.64|0.03|0.06|A|F|1992-08-20|1992-09-27|1992-08-27|COLLECT COD|AIR|deposits cajole carefully final de| +74505|874268|49303|3|27|33539.94|0.01|0.07|R|F|1992-08-30|1992-09-19|1992-09-15|NONE|RAIL|press pinto beans sleep reg| +74505|820859|45892|4|14|24917.34|0.10|0.05|A|F|1992-09-26|1992-09-05|1992-10-05|DELIVER IN PERSON|TRUCK| blithely! blithely bold pa| +74505|171845|34349|5|24|46004.16|0.05|0.02|R|F|1992-08-05|1992-08-30|1992-09-01|TAKE BACK RETURN|AIR|ccounts wake blithely. account| +74505|184919|34920|6|28|56109.48|0.00|0.01|A|F|1992-11-07|1992-08-31|1992-12-01|TAKE BACK RETURN|SHIP|counts cajole even, pending acco| +74506|531547|44058|1|48|75768.96|0.00|0.01|N|O|1995-09-11|1995-07-23|1995-10-03|NONE|FOB|eas sleep of the| +74506|696396|8910|2|50|69618.00|0.09|0.04|N|O|1995-06-25|1995-06-27|1995-07-03|NONE|AIR|uffily even,| +74506|318229|30736|3|12|14966.52|0.08|0.04|N|F|1995-05-29|1995-06-23|1995-06-23|COLLECT COD|MAIL|ffily ironic asymptotes. express, final ac| +74506|468030|30540|4|6|5988.06|0.05|0.00|N|O|1995-09-14|1995-06-21|1995-09-23|NONE|AIR|, final asymptote| +74506|167913|30417|5|40|79236.40|0.04|0.06|N|O|1995-08-07|1995-07-10|1995-08-27|TAKE BACK RETURN|TRUCK|. fluffily quick | +74506|103432|28437|6|16|22966.88|0.10|0.05|N|O|1995-09-11|1995-08-17|1995-10-10|NONE|MAIL|ular, even accounts sleep fur| +74506|379460|16982|7|12|18473.40|0.07|0.05|N|F|1995-06-17|1995-08-04|1995-07-13|NONE|TRUCK|olites above the| +74507|574307|24308|1|25|34532.00|0.05|0.01|R|F|1995-02-27|1995-02-28|1995-03-28|COLLECT COD|FOB|fully regular deposits! special dep| +74507|367858|5380|2|38|73181.92|0.06|0.06|R|F|1995-02-07|1995-02-10|1995-03-04|DELIVER IN PERSON|MAIL|l Tiresias. blithely | +74507|582406|44918|3|5|7441.90|0.07|0.08|A|F|1995-01-06|1995-02-17|1995-01-26|COLLECT COD|FOB| furiously across the furiously regula| +74507|496861|34389|4|34|63166.56|0.02|0.01|A|F|1995-03-05|1995-01-11|1995-03-24|COLLECT COD|MAIL|tructions sleep furiously blithely unusu| +74507|726538|39053|5|21|32854.50|0.00|0.00|A|F|1994-12-13|1995-02-22|1995-01-07|TAKE BACK RETURN|RAIL|ts are. packages serve. dependenci| +74508|254311|41827|1|31|39224.30|0.08|0.03|R|F|1993-01-28|1992-12-18|1993-02-04|DELIVER IN PERSON|FOB|xpress, ironic requests across t| +74508|203195|40708|2|47|51614.46|0.02|0.00|R|F|1992-12-09|1992-12-09|1992-12-13|TAKE BACK RETURN|REG AIR|e. deposits integrate| +74508|90417|15420|3|14|19703.74|0.08|0.01|R|F|1993-01-20|1992-12-25|1993-02-15|NONE|REG AIR|onic gifts sleep furiously fi| +74508|623916|11453|4|36|66235.68|0.01|0.01|R|F|1993-03-04|1992-12-26|1993-04-03|TAKE BACK RETURN|AIR|s affix slyly | +74508|151054|1055|5|45|49727.25|0.00|0.08|R|F|1993-02-19|1993-01-18|1993-02-28|TAKE BACK RETURN|FOB|after the re| +74509|27669|27670|1|18|28739.88|0.05|0.02|N|O|1995-08-24|1995-07-27|1995-09-10|TAKE BACK RETURN|SHIP|ding to the fluffily final packages. idea| +74509|22114|47115|2|28|29011.08|0.09|0.03|N|O|1995-08-21|1995-07-28|1995-08-26|NONE|AIR|al foxes sleep carefully ca| +74509|664791|39818|3|28|49161.28|0.06|0.04|N|O|1995-08-01|1995-08-27|1995-08-09|DELIVER IN PERSON|RAIL|the always even theodolite| +74510|380188|5203|1|50|63408.50|0.07|0.08|N|O|1996-05-02|1996-04-17|1996-05-16|COLLECT COD|SHIP|the furiously ironic requ| +74510|805952|5953|2|21|39016.11|0.01|0.07|N|O|1996-04-09|1996-04-06|1996-04-11|DELIVER IN PERSON|RAIL|le blithely reg| +74511|156877|44387|1|3|5801.61|0.10|0.02|N|O|1996-11-01|1996-09-28|1996-11-12|NONE|TRUCK|blithely around the package| +74511|627552|27553|2|29|42906.08|0.09|0.01|N|O|1996-10-01|1996-08-28|1996-10-10|DELIVER IN PERSON|FOB|ously pend| +74511|252763|15269|3|17|29167.75|0.04|0.05|N|O|1996-09-09|1996-10-02|1996-09-20|TAKE BACK RETURN|RAIL| across the regular requests. even, regular| +74511|184853|22363|4|32|62011.20|0.06|0.00|N|O|1996-09-17|1996-09-24|1996-09-21|TAKE BACK RETURN|REG AIR| the blithely regular excuses. slyly fina| +74511|816775|29292|5|35|59210.55|0.02|0.00|N|O|1996-10-19|1996-08-05|1996-11-07|TAKE BACK RETURN|REG AIR|ironic depo| +74511|532966|7987|6|19|37979.86|0.06|0.01|N|O|1996-10-13|1996-09-27|1996-11-08|TAKE BACK RETURN|REG AIR|structions thra| +74511|554582|4583|7|48|78554.88|0.10|0.08|N|O|1996-09-20|1996-09-27|1996-09-29|COLLECT COD|RAIL|deas wake about the sly| +74536|846965|34514|1|6|11471.52|0.08|0.04|A|F|1995-02-25|1995-02-08|1995-03-15|COLLECT COD|REG AIR|lithely furiously even| +74536|934001|21556|2|27|27943.92|0.05|0.02|R|F|1995-03-23|1995-02-08|1995-04-01|NONE|RAIL|st engage permanently. instr| +74536|741473|29016|3|29|43918.76|0.07|0.00|A|F|1995-02-27|1995-02-28|1995-03-06|COLLECT COD|MAIL|e final, ironic asymptotes cajole | +74536|929580|17135|4|34|54724.36|0.08|0.01|A|F|1995-03-02|1995-01-27|1995-03-11|COLLECT COD|REG AIR|ruthless accounts h| +74536|445593|20610|5|43|66158.51|0.02|0.06|A|F|1995-01-04|1995-03-12|1995-01-12|COLLECT COD|SHIP|sits. carefull| +74536|75981|25982|6|17|33268.66|0.01|0.03|R|F|1995-03-25|1995-01-26|1995-04-16|DELIVER IN PERSON|TRUCK|tes. blithely| +74536|9889|9890|7|50|89944.00|0.08|0.07|A|F|1995-01-24|1995-03-14|1995-02-05|NONE|FOB| ironic foxes sleep acr| +74537|200629|38142|1|42|64243.62|0.06|0.08|A|F|1992-07-07|1992-06-11|1992-07-29|NONE|RAIL|y. carefully regular asymptotes p| +74537|969791|44830|2|23|42797.25|0.03|0.00|A|F|1992-04-25|1992-06-02|1992-05-22|NONE|FOB|ages wake across the closely silent grouc| +74537|265633|3149|3|1|1598.62|0.05|0.06|A|F|1992-06-18|1992-05-17|1992-07-15|NONE|REG AIR|er the slyly ironic accounts. blithely iron| +74537|487174|49684|4|36|41801.40|0.09|0.05|A|F|1992-07-01|1992-05-05|1992-07-06|DELIVER IN PERSON|AIR|ickly regular dep| +74537|931108|18663|5|30|34171.80|0.01|0.00|R|F|1992-03-31|1992-05-03|1992-04-20|TAKE BACK RETURN|TRUCK|ow furiously pending packages. slyly fi| +74537|120639|45644|6|32|53108.16|0.08|0.01|A|F|1992-04-21|1992-06-08|1992-04-30|DELIVER IN PERSON|REG AIR|tes haggle blithely s| +74538|228987|41492|1|21|40235.37|0.08|0.00|N|O|1995-10-29|1995-11-02|1995-11-14|DELIVER IN PERSON|AIR|carefully close pinto beans. fluffily| +74538|567715|42738|2|30|53480.70|0.06|0.02|N|O|1995-10-28|1995-10-16|1995-10-31|COLLECT COD|RAIL|cies haggle carefully final platelets. spe| +74538|579035|41547|3|20|22280.20|0.02|0.06|N|O|1995-11-03|1995-10-14|1995-11-13|DELIVER IN PERSON|AIR|ully blithely regular packages| +74538|831036|43553|4|1|966.99|0.10|0.02|N|O|1995-09-11|1995-10-07|1995-09-27|NONE|SHIP|ges. even deposi| +74538|208325|20830|5|15|18499.65|0.00|0.06|N|O|1995-11-07|1995-10-13|1995-11-25|NONE|FOB|requests. slyly exp| +74538|301701|1702|6|50|85134.50|0.04|0.07|N|O|1995-11-14|1995-10-28|1995-12-01|COLLECT COD|FOB| theodolites among the slowly regular| +74538|682292|7319|7|4|5097.04|0.01|0.04|N|O|1995-10-02|1995-11-29|1995-10-11|TAKE BACK RETURN|MAIL|ly even accounts maintain slyly slyly ev| +74539|266035|3551|1|18|18018.36|0.09|0.01|R|F|1995-01-11|1995-02-10|1995-01-19|DELIVER IN PERSON|AIR| dolphins; furiously silent packages| +74539|241362|28875|2|8|10426.80|0.10|0.06|R|F|1994-12-13|1995-01-20|1994-12-25|COLLECT COD|SHIP|eep carefully. even pinto beans nag| +74539|568427|30939|3|47|70283.80|0.09|0.04|R|F|1995-03-12|1995-01-25|1995-04-06|TAKE BACK RETURN|RAIL|lar asymptotes are blithe| +74540|271006|21007|1|46|44941.54|0.04|0.01|N|O|1997-04-11|1997-05-01|1997-04-13|TAKE BACK RETURN|REG AIR|, regular requests afte| +74540|797152|34698|2|41|51213.92|0.01|0.05|N|O|1997-07-06|1997-05-10|1997-07-15|DELIVER IN PERSON|RAIL| packages. fluffil| +74540|723747|11290|3|22|38955.62|0.05|0.08|N|O|1997-07-13|1997-04-30|1997-07-24|NONE|MAIL| instructions. quickly regular pa| +74540|9670|9671|4|41|64766.47|0.02|0.04|N|O|1997-04-09|1997-06-26|1997-04-21|NONE|FOB|are slyly upon the regular, perm| +74540|509174|9175|5|28|33128.20|0.03|0.06|N|O|1997-06-05|1997-05-24|1997-06-19|NONE|AIR| quickly final accounts.| +74540|672795|22796|6|32|56568.32|0.08|0.07|N|O|1997-04-12|1997-06-19|1997-04-15|COLLECT COD|RAIL|sts across the fur| +74541|438100|609|1|11|11418.88|0.09|0.08|R|F|1994-12-04|1995-01-18|1994-12-20|TAKE BACK RETURN|RAIL| even instructions. | +74541|141005|28512|2|17|17782.00|0.08|0.07|R|F|1994-12-17|1995-01-14|1995-01-09|NONE|REG AIR|lly daring pinto beans: foxes | +74541|860183|22701|3|43|49155.02|0.00|0.00|R|F|1995-02-08|1994-12-14|1995-03-08|NONE|FOB|eful dolphins hin| +74541|88998|38999|4|10|19869.90|0.01|0.07|A|F|1994-12-18|1994-11-29|1995-01-13|DELIVER IN PERSON|REG AIR|ajole carefu| +74542|789648|14679|1|15|26064.15|0.10|0.03|N|O|1995-06-26|1995-05-17|1995-07-23|COLLECT COD|TRUCK|y final packages. quickly final| +74542|607528|45065|2|3|4306.47|0.08|0.08|N|O|1995-07-27|1995-04-29|1995-08-23|NONE|AIR| among the slyly regular d| +74542|707866|45409|3|33|61836.39|0.08|0.00|A|F|1995-06-07|1995-06-05|1995-06-10|DELIVER IN PERSON|AIR|ic accounts? slyly ironic ideas after the s| +74543|540323|15344|1|8|10906.40|0.06|0.08|A|F|1992-05-02|1992-03-28|1992-05-09|COLLECT COD|AIR|nal packages are final excuses! ironi| +74543|197958|47959|2|4|8223.80|0.10|0.08|R|F|1992-05-01|1992-03-22|1992-05-25|DELIVER IN PERSON|TRUCK|idly ironic deposits. f| +74543|74614|24615|3|14|22240.54|0.05|0.07|R|F|1992-03-23|1992-04-12|1992-04-03|COLLECT COD|MAIL|efully ironic theodol| +74543|29266|29267|4|50|59763.00|0.09|0.04|R|F|1992-01-29|1992-04-08|1992-02-05|COLLECT COD|MAIL|tes. bold frets haggle after th| +74568|318590|31097|1|36|57908.88|0.09|0.06|A|F|1994-02-15|1994-02-26|1994-02-26|DELIVER IN PERSON|MAIL|fily express instructions integrate | +74568|539578|39579|2|30|48526.50|0.02|0.03|R|F|1994-02-22|1994-02-10|1994-02-28|TAKE BACK RETURN|TRUCK| regular theodo| +74568|684736|34737|3|42|72269.40|0.08|0.07|R|F|1994-02-08|1994-02-20|1994-02-25|DELIVER IN PERSON|MAIL|fully enticing requests.| +74568|355890|18398|4|43|83672.84|0.04|0.02|A|F|1994-03-30|1994-03-02|1994-04-20|TAKE BACK RETURN|RAIL|ns sleep al| +74569|901818|26855|1|7|12738.39|0.00|0.08|R|F|1993-11-07|1993-11-04|1993-11-23|NONE|RAIL|kages wake carefully reg| +74569|845777|20810|2|3|5168.19|0.08|0.05|R|F|1993-11-30|1993-11-01|1993-12-19|DELIVER IN PERSON|AIR|quests wake. blithely special g| +74569|971555|34075|3|37|60180.87|0.08|0.05|R|F|1993-09-29|1993-10-18|1993-10-04|DELIVER IN PERSON|FOB|jole sly asymptotes. fin| +74569|909079|46634|4|35|38081.05|0.01|0.01|A|F|1993-11-04|1993-11-10|1993-11-10|COLLECT COD|TRUCK|ts integrate furiously | +74570|476894|26895|1|30|56126.10|0.10|0.00|R|F|1993-09-16|1993-10-15|1993-10-05|TAKE BACK RETURN|TRUCK|luffily final excuses. foxes are| +74571|351542|14050|1|19|30277.07|0.00|0.01|N|O|1997-05-21|1997-04-17|1997-05-28|NONE|TRUCK| accounts use against the ir| +74571|356688|31703|2|8|13957.36|0.07|0.07|N|O|1997-06-23|1997-05-29|1997-06-30|COLLECT COD|SHIP|posits along the re| +74571|846364|21397|3|40|52412.80|0.00|0.05|N|O|1997-03-21|1997-04-30|1997-04-20|DELIVER IN PERSON|REG AIR|egular packages sleep. asymp| +74571|835402|47919|4|38|50819.68|0.07|0.04|N|O|1997-06-13|1997-04-28|1997-06-27|COLLECT COD|REG AIR|yly regular dependencies engag| +74571|587298|37299|5|27|37402.29|0.03|0.04|N|O|1997-03-19|1997-04-15|1997-04-17|COLLECT COD|TRUCK|blithely regular accounts above the sly | +74571|714192|1735|6|41|49452.56|0.05|0.00|N|O|1997-04-24|1997-04-26|1997-05-12|TAKE BACK RETURN|TRUCK|ecial deposits. carefully regular accounts | +74572|526531|14062|1|18|28035.18|0.08|0.06|R|F|1994-01-10|1994-02-02|1994-01-14|TAKE BACK RETURN|RAIL|le slow deposits; | +74572|402995|2996|2|50|94898.50|0.10|0.03|R|F|1993-12-06|1993-12-28|1993-12-20|NONE|FOB|silent requests dazzle after the | +74572|120989|20990|3|15|30149.70|0.01|0.01|R|F|1994-01-27|1994-01-28|1994-02-10|COLLECT COD|TRUCK|le requests. regular requests use furiousl| +74572|459674|34693|4|5|8168.25|0.03|0.00|A|F|1993-12-16|1994-01-04|1994-01-01|TAKE BACK RETURN|TRUCK| ironic, silent accounts haggle upon | +74572|734290|9319|5|50|66213.00|0.01|0.00|A|F|1994-02-09|1994-02-04|1994-02-26|NONE|FOB|re. fluffily final epi| +74573|593269|5781|1|48|65387.52|0.09|0.07|N|O|1996-08-29|1996-07-29|1996-08-30|COLLECT COD|RAIL|gular requests gr| +74573|61034|23536|2|37|36816.11|0.03|0.00|N|O|1996-09-27|1996-08-21|1996-10-05|TAKE BACK RETURN|REG AIR|tions cajole fl| +74573|797610|10126|3|15|25613.70|0.06|0.00|N|O|1996-10-10|1996-09-09|1996-10-11|COLLECT COD|AIR|he fluffily| +74573|416168|3693|4|42|45533.88|0.04|0.04|N|O|1996-07-06|1996-08-12|1996-07-20|TAKE BACK RETURN|MAIL|ymptotes. quic| +74573|528569|3590|5|19|30353.26|0.04|0.05|N|O|1996-08-05|1996-08-23|1996-08-19|DELIVER IN PERSON|RAIL| ironic accounts haggle. req| +74573|646279|33816|6|30|36757.20|0.10|0.08|N|O|1996-10-01|1996-09-01|1996-10-21|NONE|MAIL|e furiously alongside of the brav| +74574|585063|35064|1|37|42477.48|0.10|0.00|N|O|1995-11-08|1995-09-06|1995-11-22|DELIVER IN PERSON|AIR| slyly express pinto beans. carefu| +74574|137954|12959|2|5|9959.75|0.06|0.03|N|O|1995-09-16|1995-09-17|1995-10-01|DELIVER IN PERSON|FOB|aggle ironic p| +74574|588613|1125|3|27|45942.93|0.06|0.01|N|O|1995-10-18|1995-09-28|1995-11-17|COLLECT COD|REG AIR|detect blithely flu| +74574|807422|44971|4|27|35893.26|0.10|0.04|N|O|1995-09-23|1995-10-12|1995-10-23|TAKE BACK RETURN|AIR|sits. special platelets mold. i| +74574|336849|36850|5|41|77319.03|0.02|0.01|N|O|1995-10-01|1995-09-22|1995-10-24|DELIVER IN PERSON|REG AIR|ests wake slyly among the fur| +74574|413873|13874|6|8|14294.80|0.03|0.00|N|O|1995-09-24|1995-08-31|1995-09-25|TAKE BACK RETURN|AIR|the bold deposits. fluffil| +74574|950704|25743|7|18|31583.88|0.05|0.06|N|O|1995-08-22|1995-09-06|1995-09-05|COLLECT COD|SHIP|ckages nag carefull| +74575|476359|13887|1|43|57419.19|0.09|0.02|R|F|1992-08-16|1992-07-10|1992-09-03|NONE|REG AIR|ounts haggle fluffi| +74600|701480|39023|1|23|34073.35|0.09|0.04|A|F|1995-04-23|1995-02-20|1995-05-01|DELIVER IN PERSON|FOB|mold fluffil| +74600|772946|10492|2|30|60567.30|0.08|0.06|A|F|1995-01-29|1995-03-04|1995-02-15|COLLECT COD|SHIP|the blithely e| +74600|899963|24998|3|6|11777.52|0.02|0.01|R|F|1995-05-13|1995-04-05|1995-06-12|TAKE BACK RETURN|SHIP|aids shall detect. blithely i| +74600|672002|9542|4|46|44802.62|0.02|0.07|R|F|1995-01-23|1995-03-04|1995-02-09|TAKE BACK RETURN|AIR|packages. bold,| +74600|336881|11894|5|3|5753.61|0.08|0.04|R|F|1995-02-28|1995-02-26|1995-03-01|TAKE BACK RETURN|RAIL|s. account| +74600|946661|21698|6|39|66597.18|0.10|0.00|R|F|1995-04-09|1995-03-25|1995-05-07|TAKE BACK RETURN|SHIP|press theodolites snoo| +74601|64273|39276|1|45|55677.15|0.08|0.00|N|O|1998-07-01|1998-05-26|1998-07-29|TAKE BACK RETURN|MAIL|silent requests. carefully perman| +74601|230243|30244|2|44|51622.12|0.00|0.06|N|O|1998-05-16|1998-05-15|1998-06-06|TAKE BACK RETURN|MAIL|packages poach slyly furious| +74601|678837|41351|3|49|88974.20|0.08|0.03|N|O|1998-05-08|1998-06-16|1998-05-15|TAKE BACK RETURN|MAIL|sleep slyly final accounts| +74601|212595|37604|4|2|3015.16|0.10|0.07|N|O|1998-06-24|1998-05-22|1998-06-27|NONE|REG AIR|vely regul| +74601|73311|48314|5|35|44950.85|0.04|0.02|N|O|1998-05-31|1998-05-21|1998-06-22|COLLECT COD|REG AIR|lyly furiously even theodolit| +74601|126929|39432|6|20|39118.40|0.07|0.07|N|O|1998-07-17|1998-06-18|1998-07-29|COLLECT COD|FOB| furiously regula| +74602|855064|42616|1|10|10190.20|0.01|0.06|A|F|1995-02-05|1995-04-06|1995-02-19|COLLECT COD|TRUCK|cies. regular packages befo| +74602|60373|35376|2|32|42667.84|0.02|0.03|R|F|1995-02-09|1995-03-15|1995-03-05|DELIVER IN PERSON|TRUCK|. fluffily ironic courts cajole slyly.| +74602|688908|26448|3|32|60699.84|0.08|0.04|R|F|1995-04-03|1995-04-13|1995-04-24|TAKE BACK RETURN|MAIL|ular accounts wake? even foxes sl| +74602|468904|18905|4|31|58059.28|0.07|0.03|R|F|1995-04-17|1995-04-04|1995-04-18|TAKE BACK RETURN|MAIL|efully regular ideas sleep finally | +74602|867877|30395|5|27|49810.41|0.04|0.01|R|F|1995-02-24|1995-03-13|1995-03-18|DELIVER IN PERSON|SHIP|sits wake blithely around the p| +74603|229744|4753|1|27|45190.71|0.02|0.06|A|F|1993-02-24|1992-12-26|1993-03-21|NONE|SHIP|ully bold packages hagg| +74603|291967|16978|2|27|52891.65|0.09|0.07|A|F|1993-01-16|1993-02-08|1993-01-23|COLLECT COD|FOB|ges cajole| +74604|249880|12385|1|11|20128.57|0.02|0.02|N|O|1997-03-27|1997-04-26|1997-04-05|COLLECT COD|AIR|al theodolites| +74604|717612|42641|2|50|81479.00|0.01|0.04|N|O|1997-03-01|1997-04-22|1997-03-18|NONE|REG AIR|long the blithely | +74604|892371|17406|3|49|66803.17|0.00|0.00|N|O|1997-05-17|1997-04-16|1997-06-11|TAKE BACK RETURN|AIR|e ironic re| +74605|230600|18113|1|47|71937.73|0.06|0.08|A|F|1994-09-09|1994-08-20|1994-09-24|COLLECT COD|REG AIR|regular packages int| +74605|685717|10744|2|4|6810.72|0.08|0.08|A|F|1994-07-21|1994-07-17|1994-07-24|COLLECT COD|AIR|ironic requests;| +74605|832675|7708|3|27|43406.01|0.09|0.02|R|F|1994-08-05|1994-07-13|1994-08-07|TAKE BACK RETURN|REG AIR|fully pending accounts cajole ac| +74606|650121|37661|1|7|7497.63|0.07|0.02|R|F|1994-08-12|1994-10-10|1994-09-07|DELIVER IN PERSON|SHIP|ckages. quickly even requests unwi| +74607|9095|9096|1|43|43175.87|0.05|0.00|R|F|1993-12-08|1993-10-31|1993-12-09|TAKE BACK RETURN|TRUCK|y pending foxes. blithely | +74607|849884|49885|2|27|49513.68|0.04|0.00|R|F|1994-01-10|1993-11-26|1994-01-20|TAKE BACK RETURN|AIR|tect carefully blithely bold deposits. bold| +74632|717756|17757|1|35|62080.20|0.05|0.00|N|O|1996-10-26|1996-09-21|1996-10-31|DELIVER IN PERSON|SHIP|pliers doubt always q| +74632|311016|48535|2|46|47242.00|0.00|0.06|N|O|1996-10-07|1996-09-21|1996-10-22|COLLECT COD|TRUCK|equests: furiously final pac| +74632|245780|45781|3|33|56950.41|0.05|0.08|N|O|1996-10-10|1996-10-03|1996-11-03|NONE|REG AIR|ly special deposits detect specia| +74632|812715|264|4|2|3255.34|0.10|0.00|N|O|1996-11-16|1996-09-25|1996-12-04|DELIVER IN PERSON|FOB|refully quick| +74632|292614|5120|5|27|43378.20|0.02|0.08|N|O|1996-10-07|1996-11-08|1996-10-21|NONE|AIR| haggle slyly even | +74633|259822|47338|1|6|10690.86|0.01|0.00|A|F|1994-04-17|1994-04-13|1994-04-19|NONE|RAIL|ly final dolphins | +74633|827046|14595|2|36|35028.00|0.06|0.08|R|F|1994-05-15|1994-04-02|1994-05-24|TAKE BACK RETURN|MAIL|eodolites are ironic realm| +74633|161658|49168|3|36|61907.40|0.01|0.07|R|F|1994-05-17|1994-04-09|1994-05-31|DELIVER IN PERSON|SHIP|cajole finally bold instructions. f| +74633|982059|32060|4|26|29666.26|0.06|0.04|A|F|1994-06-02|1994-05-06|1994-06-30|COLLECT COD|TRUCK|uriously. theodolites outside t| +74633|454297|4298|5|41|51302.07|0.04|0.02|R|F|1994-04-02|1994-04-18|1994-04-20|NONE|RAIL|wake furiously. quickly even escapades | +74633|368628|18629|6|21|35628.81|0.08|0.08|A|F|1994-04-23|1994-04-01|1994-05-06|NONE|REG AIR|nd the foxes sleep above the deposit| +74634|674563|12103|1|30|46125.90|0.06|0.05|A|F|1995-04-04|1995-03-17|1995-05-03|DELIVER IN PERSON|FOB|ts affix. regular patterns haggle care| +74634|364490|2012|2|5|7772.40|0.09|0.07|N|F|1995-05-27|1995-05-04|1995-06-22|NONE|MAIL|yly ironic deposits unwind perm| +74634|978332|40852|3|8|11282.32|0.04|0.03|A|F|1995-06-07|1995-04-30|1995-06-17|NONE|REG AIR|uriously after the bold, even| +74634|811795|11796|4|12|20481.00|0.10|0.08|A|F|1995-03-13|1995-04-01|1995-04-04|NONE|FOB|ck packages solve across the slyly thin rea| +74634|834658|9691|5|14|22296.54|0.02|0.05|N|F|1995-06-01|1995-04-04|1995-06-18|DELIVER IN PERSON|AIR|c dolphins wa| +74634|96139|33643|6|49|55621.37|0.10|0.00|A|F|1995-05-12|1995-05-07|1995-05-30|NONE|AIR|egrate careful| +74635|880459|42977|1|15|21591.15|0.07|0.03|R|F|1992-01-18|1992-03-14|1992-02-11|COLLECT COD|TRUCK|kly regular wart| +74636|119287|6794|1|50|65314.00|0.03|0.00|N|O|1995-11-06|1995-09-29|1995-11-13|NONE|REG AIR|ss pinto beans are fluffily. fu| +74636|855022|42574|2|10|9769.80|0.05|0.06|N|O|1995-10-28|1995-09-27|1995-11-26|COLLECT COD|AIR|bold, pending deposits. slyly silent fo| +74636|351641|1642|3|8|13541.04|0.05|0.02|N|O|1995-11-25|1995-10-03|1995-12-14|NONE|MAIL|ckages sleep slyly| +74636|21427|33928|4|4|5393.68|0.04|0.05|N|O|1995-08-30|1995-10-31|1995-09-03|COLLECT COD|SHIP|ts; furiously regular pinto beans across th| +74637|100495|38002|1|16|23927.84|0.00|0.04|N|O|1997-07-19|1997-06-21|1997-08-02|NONE|RAIL|counts aroun| +74637|10433|47934|2|32|42989.76|0.06|0.03|N|O|1997-04-30|1997-05-21|1997-05-02|NONE|TRUCK|usly bold pint| +74637|339802|27321|3|27|49728.33|0.01|0.06|N|O|1997-05-18|1997-05-18|1997-06-12|COLLECT COD|REG AIR|ly express | +74637|38055|13056|4|40|39722.00|0.03|0.07|N|O|1997-04-19|1997-05-31|1997-05-04|NONE|SHIP|foxes cajole bold pinto beans. express | +74638|739841|39842|1|23|43258.63|0.07|0.06|N|O|1998-04-10|1998-03-18|1998-04-21|NONE|MAIL|quests. pending, special| +74638|503267|3268|2|32|40647.68|0.10|0.00|N|O|1998-01-06|1998-02-21|1998-01-19|DELIVER IN PERSON|AIR|inal instructions. blithely ironic deposits| +74639|605936|30961|1|13|23944.70|0.01|0.01|R|F|1993-01-07|1993-01-16|1993-01-22|NONE|SHIP| pearls beli| +74639|953211|15731|2|8|10113.36|0.06|0.08|R|F|1992-12-01|1993-02-03|1992-12-12|COLLECT COD|RAIL|gular dugouts are ideas. slyly eve| +74639|609204|21717|3|42|46753.14|0.03|0.08|R|F|1992-12-28|1992-12-28|1993-01-27|NONE|AIR|es. closely ironic| +74639|874828|37346|4|17|30647.26|0.02|0.06|R|F|1992-12-16|1993-01-22|1992-12-19|NONE|FOB|osits among the fluffily ironic requests c| +74639|221338|33843|5|19|23927.08|0.00|0.07|A|F|1993-03-13|1992-12-20|1993-04-07|NONE|MAIL|ounts use quickly. slyly final ideas wake| +74639|23779|48780|6|11|18730.47|0.05|0.03|R|F|1993-02-08|1993-01-31|1993-03-07|DELIVER IN PERSON|REG AIR|furiously regular requ| +74664|907224|7225|1|2|2462.36|0.01|0.03|R|F|1993-03-27|1993-04-17|1993-03-31|NONE|REG AIR|kages. quickly sp| +74664|710652|48195|2|35|58191.70|0.09|0.01|R|F|1993-04-02|1993-04-20|1993-04-29|TAKE BACK RETURN|SHIP|ar deposits sleep quickly pending platelet| +74665|846293|46294|1|41|50809.25|0.08|0.01|A|F|1994-01-12|1994-01-13|1994-02-10|DELIVER IN PERSON|MAIL|quests. furiously| +74665|641873|41874|2|50|90742.00|0.00|0.05|R|F|1994-03-31|1994-02-08|1994-04-24|COLLECT COD|AIR|ular theodolites detect caref| +74665|943069|18106|3|48|53376.96|0.08|0.03|A|F|1993-12-13|1994-02-04|1993-12-27|NONE|SHIP|the slyly ironic pinto beans. furi| +74666|769972|19973|1|22|44922.68|0.08|0.00|N|O|1998-02-20|1998-01-20|1998-03-21|DELIVER IN PERSON|SHIP|sits. ironic instructions use carefully. | +74666|911487|24006|2|9|13485.96|0.10|0.04|N|O|1998-01-16|1998-02-08|1998-02-13|NONE|TRUCK| gifts detect | +74667|516182|41203|1|40|47926.40|0.09|0.01|A|F|1992-08-25|1992-06-24|1992-09-02|TAKE BACK RETURN|RAIL|ep after the sl| +74667|463362|25872|2|42|55664.28|0.03|0.03|A|F|1992-07-28|1992-07-30|1992-08-17|DELIVER IN PERSON|FOB| against the quickly even | +74668|560022|22534|1|25|27050.00|0.04|0.08|N|O|1998-03-11|1998-02-24|1998-04-02|NONE|REG AIR|y ironic acco| +74668|282015|19531|2|16|15952.00|0.10|0.00|N|O|1998-01-22|1998-01-27|1998-01-23|TAKE BACK RETURN|RAIL|ccounts. regular platele| +74668|809837|47386|3|43|75111.97|0.09|0.04|N|O|1998-03-11|1998-02-27|1998-03-19|COLLECT COD|RAIL|es haggle blithely: furiously eve| +74668|917990|17991|4|30|60238.50|0.10|0.04|N|O|1997-12-11|1998-02-07|1998-01-04|NONE|RAIL|permanent pinto beans| +74669|720714|45743|1|13|22550.84|0.01|0.06|R|F|1992-07-12|1992-08-28|1992-08-07|COLLECT COD|REG AIR|e requests hinder until the ironic de| +74669|29107|41608|2|3|3108.30|0.05|0.03|R|F|1992-06-21|1992-07-15|1992-06-30|NONE|MAIL| special foxes are. unusual platelets du| +74669|197174|9678|3|39|49575.63|0.02|0.04|R|F|1992-08-09|1992-08-29|1992-08-29|TAKE BACK RETURN|MAIL|ake quickly express requests. slyly regu| +74669|895493|45494|4|6|8930.70|0.00|0.01|R|F|1992-07-10|1992-07-15|1992-07-18|NONE|FOB|sual deposits. nev| +74669|549376|36907|5|40|57014.00|0.03|0.00|A|F|1992-08-10|1992-08-20|1992-08-30|NONE|AIR|e carefully even depos| +74669|357494|7495|6|39|60507.72|0.09|0.05|A|F|1992-08-30|1992-07-17|1992-09-22|TAKE BACK RETURN|AIR|blithely a| +74670|676482|14022|1|17|24793.65|0.09|0.06|N|O|1997-10-27|1997-10-23|1997-10-28|COLLECT COD|MAIL| the carefully fin| +74670|624283|49308|2|32|38632.00|0.10|0.07|N|O|1997-11-03|1997-11-01|1997-11-17|TAKE BACK RETURN|SHIP|ickly bold acc| +74670|322639|10158|3|4|6646.48|0.02|0.00|N|O|1997-11-17|1997-09-27|1997-11-21|COLLECT COD|AIR|ts against the bold dolphins s| +74671|777640|27641|1|12|20611.32|0.02|0.00|N|O|1995-08-18|1995-09-10|1995-09-01|TAKE BACK RETURN|TRUCK|yly regular packages. packages i| +74671|778816|3847|2|38|72001.64|0.08|0.01|N|O|1995-11-17|1995-09-21|1995-12-08|COLLECT COD|MAIL|usly even frets. final, unusual| +74671|555120|30143|3|37|43478.70|0.03|0.05|N|O|1995-08-28|1995-10-05|1995-09-08|COLLECT COD|RAIL|ding to the blithely ironic reques| +74696|146267|33774|1|23|30204.98|0.08|0.03|N|O|1997-09-29|1997-09-28|1997-10-22|COLLECT COD|TRUCK|g deposits sleep. even multipliers boo| +74696|293131|5637|2|3|3372.36|0.08|0.04|N|O|1997-11-05|1997-10-19|1997-11-28|NONE|RAIL|m the theodolites. special pinto bea| +74696|647756|35293|3|23|39185.56|0.07|0.05|N|O|1997-11-18|1997-09-15|1997-11-29|NONE|AIR|equests affix furiousl| +74696|829033|4066|4|31|29821.69|0.09|0.07|N|O|1997-10-07|1997-11-07|1997-10-21|TAKE BACK RETURN|REG AIR|osits. even theodolites along| +74696|548621|36152|5|37|61775.20|0.08|0.07|N|O|1997-09-26|1997-10-23|1997-09-27|COLLECT COD|AIR|ite the quickly even | +74696|661690|24204|6|6|9909.96|0.08|0.03|N|O|1997-10-29|1997-10-01|1997-11-04|COLLECT COD|FOB|along the courts. furiously final ac| +74696|23358|35859|7|45|57660.75|0.07|0.08|N|O|1997-11-04|1997-10-04|1997-11-25|DELIVER IN PERSON|RAIL| quickly furiously regular deposits| +74697|568108|30620|1|26|30578.08|0.10|0.03|A|F|1992-12-25|1992-12-15|1993-01-03|TAKE BACK RETURN|SHIP|requests. regular depths affix carefully b| +74697|177329|2336|2|21|29532.72|0.02|0.07|A|F|1993-01-10|1993-01-06|1993-01-27|DELIVER IN PERSON|SHIP|e pending asymptotes. fin| +74697|367152|4674|3|6|7314.84|0.00|0.00|R|F|1992-12-21|1992-12-20|1993-01-18|COLLECT COD|TRUCK| final packages wake furiously| +74698|851624|1625|1|11|17331.38|0.08|0.07|N|O|1996-05-03|1996-03-31|1996-05-28|NONE|FOB|kly regular foxes los| +74698|228247|28248|2|4|4700.92|0.02|0.00|N|O|1996-04-22|1996-02-13|1996-05-14|TAKE BACK RETURN|RAIL| haggle final, enticing | +74698|146430|46431|3|24|35434.32|0.05|0.00|N|O|1996-02-13|1996-03-09|1996-02-20|TAKE BACK RETURN|SHIP|usly against| +74698|34708|9709|4|6|9856.20|0.02|0.07|N|O|1996-02-18|1996-03-11|1996-03-16|COLLECT COD|AIR|after the accounts. regular, express | +74698|334943|34944|5|35|69227.55|0.07|0.01|N|O|1996-03-17|1996-03-21|1996-04-09|DELIVER IN PERSON|AIR|onic dolphins nag after the c| +74698|373398|23399|6|43|63269.34|0.00|0.00|N|O|1996-04-28|1996-02-09|1996-05-09|TAKE BACK RETURN|MAIL|inal pinto beans haggle slyly ins| +74698|689834|27374|7|36|65656.80|0.07|0.00|N|O|1996-03-20|1996-03-11|1996-04-03|TAKE BACK RETURN|MAIL|riously regular requests. blithely fi| +74699|24956|24957|1|35|65833.25|0.03|0.06|A|F|1992-11-22|1992-12-07|1992-12-17|NONE|SHIP|riously thinl| +74699|426329|38838|2|31|38914.30|0.04|0.00|R|F|1992-12-03|1993-01-10|1992-12-09|TAKE BACK RETURN|REG AIR| warthogs affix furiously? final f| +74699|297168|47169|3|11|12816.65|0.08|0.01|R|F|1992-12-27|1992-11-23|1993-01-11|NONE|TRUCK|ding to the accounts. c| +74699|487648|25176|4|24|39254.88|0.04|0.06|A|F|1992-11-08|1992-12-12|1992-12-02|TAKE BACK RETURN|REG AIR|gle furiously even pinto beans. th| +74700|303781|16288|1|5|8923.85|0.06|0.01|A|F|1995-01-27|1994-12-20|1995-01-29|DELIVER IN PERSON|REG AIR|ironic packages according t| +74700|632384|7409|2|2|2632.70|0.08|0.00|A|F|1995-01-04|1994-12-19|1995-01-06|COLLECT COD|TRUCK|ly. quickly final pinto b| +74700|461941|11942|3|42|79922.64|0.04|0.07|A|F|1995-01-06|1994-12-25|1995-01-24|DELIVER IN PERSON|MAIL| pending somas sle| +74700|839004|26553|4|50|47148.00|0.01|0.03|A|F|1994-11-11|1994-11-19|1994-11-20|NONE|RAIL|posits. deposits eat furiously. pending, un| +74700|124155|49160|5|4|4716.60|0.04|0.05|A|F|1994-12-28|1994-11-06|1995-01-06|COLLECT COD|RAIL|deas. furiously even deposits boos| +74701|875857|13409|1|11|20160.91|0.07|0.08|N|O|1996-01-08|1995-11-19|1996-01-25|TAKE BACK RETURN|TRUCK|phs above the furiously | +74701|525636|38147|2|9|14954.49|0.08|0.02|N|O|1995-12-09|1995-12-12|1995-12-30|NONE|AIR|cording to the fluffily dog| +74701|361809|36824|3|48|89797.92|0.10|0.06|N|O|1995-12-16|1995-12-01|1996-01-11|TAKE BACK RETURN|AIR|es haggle | +74702|793624|18655|1|20|34351.80|0.04|0.04|A|F|1994-01-30|1994-02-28|1994-02-18|NONE|REG AIR|grate theodolites. entici| +74702|427151|39660|2|37|39890.81|0.00|0.04|A|F|1994-01-31|1994-02-09|1994-02-17|NONE|AIR|structions. even id| +74702|116274|28777|3|19|24515.13|0.04|0.04|A|F|1994-04-03|1994-03-11|1994-04-14|COLLECT COD|RAIL| orbits. quickly ironic accoun| +74702|207088|32097|4|27|26866.89|0.04|0.04|A|F|1994-01-17|1994-01-20|1994-02-11|DELIVER IN PERSON|MAIL|lithely express| +74702|527175|39686|5|30|36064.50|0.04|0.06|A|F|1994-02-25|1994-02-28|1994-03-13|DELIVER IN PERSON|TRUCK| blithely ironic accounts haggle furious| +74703|947631|22668|1|39|65465.01|0.00|0.06|N|O|1995-06-27|1995-04-13|1995-06-29|TAKE BACK RETURN|REG AIR|yly silent | +74703|828724|16273|2|1|1652.68|0.09|0.07|A|F|1995-05-05|1995-04-17|1995-05-10|TAKE BACK RETURN|RAIL|kindle about the fluffi| +74703|360028|47550|3|11|11968.11|0.09|0.07|A|F|1995-03-12|1995-05-21|1995-04-10|TAKE BACK RETURN|MAIL|ckly unusual excuses. ironic, unus| +74728|528107|3128|1|37|41997.96|0.05|0.05|R|F|1993-02-01|1993-01-16|1993-02-17|TAKE BACK RETURN|FOB|ly unusual deposits wa| +74728|881488|6523|2|16|23511.04|0.00|0.02|R|F|1993-03-02|1993-02-05|1993-03-08|COLLECT COD|SHIP|lar, ironic notornis cajole bli| +74728|158885|46395|3|27|52484.76|0.01|0.01|A|F|1993-02-23|1993-02-19|1993-03-17|TAKE BACK RETURN|AIR|ular pinto be| +74728|365543|40558|4|7|11259.71|0.03|0.02|R|F|1993-03-27|1993-02-08|1993-03-30|COLLECT COD|AIR|alongside of the quietly final requests s| +74728|665269|15270|5|1|1234.23|0.03|0.06|A|F|1993-03-22|1993-02-26|1993-04-19|TAKE BACK RETURN|AIR|l ideas. special tithes impress slyly. reg| +74728|163825|13826|6|19|35887.58|0.01|0.01|A|F|1992-12-17|1993-02-04|1993-01-07|TAKE BACK RETURN|RAIL|even requests wake accordin| +74729|867675|42710|1|13|21354.19|0.08|0.07|R|F|1994-12-21|1995-01-10|1995-01-11|TAKE BACK RETURN|MAIL|quests haggle furious| +74729|4597|29598|2|49|73577.91|0.07|0.03|R|F|1995-03-01|1994-12-24|1995-03-12|TAKE BACK RETURN|REG AIR|equests after the idly final requests| +74729|248989|23998|3|23|44573.31|0.08|0.06|R|F|1994-11-04|1994-12-06|1994-11-27|TAKE BACK RETURN|MAIL|haggle slyly against the sl| +74729|744124|31667|4|14|16353.26|0.09|0.04|A|F|1994-12-25|1995-01-28|1995-01-09|NONE|FOB| special deposits| +74729|480718|30719|5|37|62851.53|0.03|0.08|R|F|1995-01-22|1995-01-10|1995-02-06|COLLECT COD|REG AIR|y frays eat blithel| +74729|412331|49856|6|40|49732.40|0.09|0.01|A|F|1994-12-14|1995-01-04|1994-12-19|NONE|TRUCK|iously fluffily unusual accounts. blithe| +74730|366856|41871|1|19|36533.96|0.03|0.05|N|O|1996-10-25|1996-11-30|1996-11-13|NONE|AIR|s. carefully final patterns na| +74730|733564|8593|2|31|49523.43|0.06|0.00|N|O|1996-10-01|1996-11-18|1996-10-17|COLLECT COD|SHIP|ckly ironic pinto beans | +74730|412|12913|3|10|13124.10|0.06|0.01|N|O|1996-09-18|1996-11-13|1996-10-10|DELIVER IN PERSON|TRUCK|lyly special patterns. e| +74730|920757|20758|4|33|58664.43|0.02|0.01|N|O|1996-10-26|1996-11-23|1996-11-24|DELIVER IN PERSON|SHIP|ourts. furiously regular depos| +74730|156064|6065|5|49|54882.94|0.00|0.05|N|O|1996-12-30|1996-10-31|1997-01-28|NONE|REG AIR|platelets m| +74731|142070|42071|1|41|45594.87|0.06|0.06|N|O|1996-04-16|1996-04-13|1996-05-15|NONE|MAIL|e carefully ironic ideas. express reque| +74732|145407|7910|1|13|18881.20|0.08|0.05|R|F|1994-04-15|1994-04-26|1994-05-11|DELIVER IN PERSON|RAIL|ly silent requests use. | +74732|853018|15536|2|3|2912.91|0.05|0.08|R|F|1994-05-09|1994-06-01|1994-05-19|COLLECT COD|REG AIR|pendencies across the ideas are b| +74732|667902|5442|3|27|50486.49|0.10|0.06|A|F|1994-06-27|1994-05-30|1994-07-03|DELIVER IN PERSON|MAIL|le instead of the regular ideas. bol| +74732|428869|16394|4|3|5393.52|0.08|0.04|A|F|1994-05-12|1994-05-18|1994-05-28|NONE|SHIP|ideas. blithely final packages above t| +74732|994864|19903|5|5|9794.10|0.06|0.05|R|F|1994-04-12|1994-04-26|1994-05-01|DELIVER IN PERSON|RAIL|nal requests about the carefully u| +74733|475560|13088|1|33|50672.82|0.07|0.05|A|F|1994-02-16|1994-02-28|1994-03-18|COLLECT COD|MAIL| regular packages above the even, final ac| +74733|721689|46718|2|3|5131.95|0.04|0.06|A|F|1994-03-19|1994-03-24|1994-03-28|COLLECT COD|MAIL|unts. sometimes regular pac| +74733|419896|44913|3|44|79898.28|0.07|0.05|R|F|1994-03-17|1994-04-07|1994-03-28|COLLECT COD|RAIL|nal accounts-- carefully| +74733|181496|31497|4|40|63099.60|0.07|0.04|A|F|1994-04-25|1994-03-15|1994-05-16|TAKE BACK RETURN|AIR|al deposits nod slyly.| +74734|267946|17947|1|45|86126.85|0.06|0.00|R|F|1993-03-20|1993-02-05|1993-04-09|COLLECT COD|AIR| carefully bold deposits cajole.| +74734|357354|44876|2|44|62098.96|0.05|0.06|R|F|1993-02-22|1993-01-04|1993-03-21|DELIVER IN PERSON|TRUCK|sly bold accounts | +74734|37415|37416|3|41|55448.81|0.01|0.02|R|F|1993-01-11|1993-02-11|1993-01-25|NONE|MAIL|beans. pending packa| +74735|770409|20410|1|6|8876.22|0.06|0.00|N|O|1995-12-18|1995-10-02|1995-12-23|COLLECT COD|FOB| sleep blithely requests. blithely even ac| +74735|252434|2435|2|35|48524.70|0.05|0.03|N|O|1995-12-26|1995-10-17|1995-12-31|COLLECT COD|AIR|jole fluffily pin| +74735|641475|16500|3|41|58074.04|0.05|0.05|N|O|1995-11-28|1995-11-08|1995-12-11|TAKE BACK RETURN|MAIL|ular excuses. deposits haggle ruthl| +74735|259122|9123|4|28|30271.08|0.05|0.07|N|O|1995-12-17|1995-11-25|1995-12-19|NONE|MAIL|ely. foxes are furiously about th| +74760|237120|37121|1|49|51798.39|0.01|0.01|N|O|1996-09-14|1996-11-18|1996-09-28|TAKE BACK RETURN|REG AIR|s? slyly regular requests wak| +74760|275031|42|2|28|28168.56|0.02|0.02|N|O|1996-10-01|1996-09-25|1996-10-08|DELIVER IN PERSON|REG AIR|s cajole quickly blithely| +74760|444946|44947|3|3|5672.76|0.00|0.08|N|O|1996-09-29|1996-09-28|1996-10-21|DELIVER IN PERSON|FOB|s wake around the silent, unusual accoun| +74760|197821|35331|4|48|92103.36|0.02|0.05|N|O|1996-09-01|1996-09-25|1996-09-07|DELIVER IN PERSON|FOB|xes print bli| +74760|771251|8797|5|27|35699.94|0.09|0.00|N|O|1996-08-22|1996-10-17|1996-09-12|NONE|RAIL|requests sleep ca| +74760|405914|43439|6|23|41857.47|0.06|0.01|N|O|1996-11-19|1996-10-09|1996-12-15|DELIVER IN PERSON|AIR| regular requests wake about t| +74761|369966|7488|1|43|87545.85|0.10|0.04|R|F|1992-12-17|1993-01-11|1993-01-13|NONE|MAIL|e furiously | +74761|12607|25108|2|1|1519.60|0.02|0.03|R|F|1993-01-21|1993-01-01|1993-02-11|DELIVER IN PERSON|RAIL|ymptotes. b| +74762|545092|20113|1|42|47756.94|0.02|0.00|A|F|1994-10-04|1994-08-08|1994-10-24|DELIVER IN PERSON|SHIP|usual ideas.| +74762|350756|13264|2|18|32521.32|0.03|0.05|R|F|1994-07-08|1994-08-07|1994-08-07|COLLECT COD|AIR| the express deposits. quickly regular ac| +74762|152734|40244|3|38|67895.74|0.06|0.02|R|F|1994-08-01|1994-07-15|1994-08-26|DELIVER IN PERSON|FOB|ven instructions. silent,| +74762|997072|9592|4|43|50268.29|0.04|0.08|R|F|1994-09-01|1994-07-17|1994-09-15|DELIVER IN PERSON|RAIL|n foxes. carefully final accoun| +74763|969063|31583|1|17|19244.34|0.00|0.06|N|O|1997-02-28|1997-02-15|1997-03-23|NONE|FOB|s boost fluffily| +74763|37025|12026|2|20|19240.40|0.08|0.03|N|O|1997-02-20|1997-01-07|1997-02-22|DELIVER IN PERSON|REG AIR| carefully pending frets nag ruth| +74763|271654|34160|3|19|30887.16|0.00|0.04|N|O|1996-12-22|1996-12-31|1996-12-30|TAKE BACK RETURN|MAIL|slyly. pinto b| +74764|919415|44452|1|24|34424.88|0.07|0.04|N|O|1996-03-13|1996-04-07|1996-04-08|TAKE BACK RETURN|FOB|tructions cajole furiously regular t| +74765|733529|33530|1|43|67187.07|0.06|0.03|R|F|1993-08-31|1993-08-09|1993-09-04|COLLECT COD|MAIL|ing instructions. bol| +74765|405209|30226|2|1|1114.18|0.06|0.01|R|F|1993-08-28|1993-09-05|1993-08-29|TAKE BACK RETURN|AIR|nstructions are fur| +74765|340431|27950|3|25|36785.50|0.10|0.06|R|F|1993-10-17|1993-09-04|1993-10-26|NONE|SHIP|riously. special, final packages use s| +74765|615706|40731|4|49|79461.83|0.04|0.05|R|F|1993-08-18|1993-09-13|1993-09-17|DELIVER IN PERSON|AIR| slyly even forges. bold, even | +74766|971893|34413|1|10|19648.50|0.00|0.03|A|F|1992-12-02|1992-10-11|1992-12-23|TAKE BACK RETURN|TRUCK|cial excuses; blithely regul| +74767|609440|46977|1|32|43181.12|0.00|0.03|R|F|1994-06-23|1994-06-20|1994-07-02|NONE|AIR|ffix furiously slyly special accounts. b| +74767|857096|19614|2|41|43175.05|0.00|0.04|A|F|1994-05-27|1994-06-13|1994-06-24|DELIVER IN PERSON|REG AIR|y final packages| +74767|199466|49467|3|35|54791.10|0.10|0.02|A|F|1994-07-21|1994-06-04|1994-08-02|COLLECT COD|TRUCK|s. furiously pendin| +74792|495846|8356|1|27|49729.14|0.09|0.03|N|O|1998-03-20|1998-01-22|1998-03-21|TAKE BACK RETURN|AIR|kages sleep carefu| +74792|668348|30862|2|39|51336.09|0.04|0.08|N|O|1998-03-22|1998-01-18|1998-04-14|TAKE BACK RETURN|SHIP|olphins. slyly expres| +74792|918830|6385|3|41|75800.39|0.02|0.02|N|O|1998-03-21|1998-01-14|1998-03-24|COLLECT COD|TRUCK|ly. carefully unusual deposits| +74792|762722|268|4|8|14277.52|0.06|0.08|N|O|1998-01-03|1998-01-26|1998-01-18|COLLECT COD|TRUCK|ges wake perm| +74793|166352|28856|1|17|24111.95|0.05|0.00|N|O|1998-04-27|1998-05-16|1998-05-26|COLLECT COD|TRUCK|lar accounts han| +74793|870327|20328|2|34|44107.52|0.05|0.00|N|O|1998-04-22|1998-04-14|1998-05-17|COLLECT COD|RAIL|al requests. blit| +74793|577374|2397|3|26|37735.10|0.03|0.01|N|O|1998-06-05|1998-04-20|1998-06-06|DELIVER IN PERSON|MAIL|unts. blithel| +74793|917711|17712|4|37|63960.79|0.03|0.00|N|O|1998-04-29|1998-06-02|1998-05-16|NONE|AIR|carefully unusual sauternes sl| +74793|953116|3117|5|8|9352.56|0.09|0.07|N|O|1998-05-19|1998-04-24|1998-06-10|TAKE BACK RETURN|AIR|lly regular deposit| +74794|489029|1539|1|26|26468.00|0.01|0.05|R|F|1993-03-03|1993-05-11|1993-03-08|NONE|TRUCK|odolites sleep. reg| +74794|100343|37850|2|26|34926.84|0.06|0.00|R|F|1993-03-26|1993-04-26|1993-04-05|TAKE BACK RETURN|REG AIR|ng to the furiously ironic din| +74794|463396|13397|3|11|14953.07|0.04|0.05|A|F|1993-02-22|1993-04-19|1993-03-14|DELIVER IN PERSON|TRUCK|. fluffily ironic packages wake above th| +74794|287415|37416|4|47|65912.80|0.04|0.07|A|F|1993-05-07|1993-04-25|1993-05-29|DELIVER IN PERSON|AIR|s integrate blithely. carefull| +74794|575184|25185|5|8|10073.28|0.00|0.04|R|F|1993-03-28|1993-04-30|1993-03-30|NONE|TRUCK|y regular pinto beans sleep carefully| +74794|105295|30300|6|27|35107.83|0.09|0.06|A|F|1993-06-01|1993-04-04|1993-06-07|TAKE BACK RETURN|MAIL|ould have to hinder final requests. blith| +74795|343215|43216|1|38|47811.60|0.08|0.04|R|F|1995-02-17|1994-12-09|1995-03-19|COLLECT COD|RAIL|de of the regular pinto beans play | +74796|146925|34432|1|36|70989.12|0.09|0.05|N|O|1995-10-02|1995-10-02|1995-10-03|NONE|REG AIR|usly special deposits a| +74796|354569|42091|2|10|16235.50|0.04|0.02|N|O|1995-11-16|1995-10-25|1995-12-04|TAKE BACK RETURN|MAIL|t quickly ironic deposits. slyly d| +74797|311658|24165|1|9|15026.76|0.03|0.05|N|O|1996-08-23|1996-07-29|1996-08-27|NONE|RAIL|ong the instructions. furiously permane| +74797|19239|19240|2|7|8107.61|0.05|0.07|N|O|1996-09-02|1996-06-14|1996-09-12|DELIVER IN PERSON|RAIL| carefully even deposits | +74797|338824|1331|3|40|74512.40|0.04|0.07|N|O|1996-08-10|1996-07-19|1996-08-12|TAKE BACK RETURN|FOB|mong the furiously even packa| +74797|599330|24353|4|12|17151.72|0.07|0.07|N|O|1996-07-08|1996-06-21|1996-07-12|NONE|SHIP|ing accounts. blithely pending p| +74797|926904|1941|5|17|32824.62|0.10|0.04|N|O|1996-08-11|1996-06-29|1996-08-27|DELIVER IN PERSON|TRUCK|eep blithe| +74798|516898|4429|1|45|86169.15|0.05|0.05|A|F|1992-12-13|1992-10-20|1993-01-05|TAKE BACK RETURN|FOB|s above the blithely bold pinto beans inte| +74798|497446|47447|2|28|40415.76|0.05|0.08|A|F|1992-09-11|1992-10-23|1992-09-17|COLLECT COD|REG AIR| even asymptotes. | +74798|563181|38204|3|36|44789.76|0.07|0.03|R|F|1992-12-17|1992-10-23|1993-01-05|COLLECT COD|TRUCK|olites are carefully about the bold acc| +74798|372441|34949|4|49|74158.07|0.10|0.07|R|F|1992-11-12|1992-11-10|1992-11-15|DELIVER IN PERSON|RAIL|ar, regular packages sleep. regular no| +74798|604915|29940|5|31|56416.28|0.06|0.07|R|F|1992-10-20|1992-10-17|1992-11-04|TAKE BACK RETURN|MAIL|iously spe| +74798|800471|12988|6|16|21942.88|0.09|0.02|A|F|1992-11-01|1992-10-31|1992-11-04|COLLECT COD|SHIP|arefully. special, e| +74799|914386|14387|1|2|2800.68|0.00|0.08|A|F|1995-01-18|1995-01-22|1995-01-26|COLLECT COD|TRUCK|ts. carefully express dependencies | +74824|938741|26296|1|37|65848.90|0.04|0.04|A|F|1993-10-04|1993-09-26|1993-10-21|TAKE BACK RETURN|FOB|iously even foxes. blithe| +74824|403386|40911|2|12|15472.32|0.05|0.04|A|F|1993-10-20|1993-09-12|1993-11-18|NONE|FOB|uffily regular requests wake f| +74825|887845|12880|1|12|21993.60|0.08|0.06|N|O|1996-01-25|1996-02-20|1996-02-04|DELIVER IN PERSON|FOB|s thrash. deposits are carefully along | +74825|10308|35309|2|18|21929.40|0.06|0.04|N|O|1996-04-24|1996-03-30|1996-05-11|TAKE BACK RETURN|MAIL|. furiously regular dolphins nag | +74825|244925|19934|3|39|72926.49|0.04|0.03|N|O|1996-03-03|1996-03-04|1996-03-28|COLLECT COD|AIR|ns. furiously final instructions sleep aga| +74825|449840|24857|4|43|76962.26|0.00|0.00|N|O|1996-03-06|1996-03-23|1996-03-24|TAKE BACK RETURN|SHIP|ts around the regular theodolites use| +74825|459192|46720|5|17|19569.89|0.06|0.02|N|O|1996-04-30|1996-02-12|1996-05-27|DELIVER IN PERSON|REG AIR|deas use blithely fi| +74825|628715|41228|6|20|32873.60|0.08|0.02|N|O|1996-03-12|1996-02-06|1996-03-25|TAKE BACK RETURN|AIR|ccounts sleep carefully above t| +74826|153396|15900|1|46|66671.94|0.04|0.07|N|O|1996-08-01|1996-07-11|1996-08-26|COLLECT COD|SHIP|lyly even dependencies. pending requests ha| +74826|117889|30392|2|12|22882.56|0.05|0.03|N|O|1996-08-04|1996-06-11|1996-08-30|DELIVER IN PERSON|TRUCK|tect. quickly unusual accounts affi| +74826|352428|2429|3|5|7402.05|0.00|0.01|N|O|1996-05-17|1996-07-21|1996-06-09|COLLECT COD|MAIL|uests. slyly quiet requests haggle sly| +74826|242309|17318|4|25|31282.25|0.09|0.01|N|O|1996-09-09|1996-08-03|1996-09-25|COLLECT COD|SHIP|nside the regular foxes. | +74826|483270|33271|5|2|2506.50|0.07|0.08|N|O|1996-08-21|1996-07-10|1996-08-22|TAKE BACK RETURN|AIR|g blithely instructions. foxes are never ev| +74827|942707|42708|1|33|57738.78|0.05|0.03|N|O|1998-02-04|1998-01-17|1998-02-19|COLLECT COD|MAIL|y regular pinto beans. sl| +74827|70958|33460|2|19|36650.05|0.09|0.07|N|O|1998-02-10|1998-02-06|1998-02-12|NONE|AIR|regular requests. carefully silent package| +74827|586813|11836|3|5|9498.95|0.04|0.02|N|O|1998-03-05|1998-01-30|1998-03-09|TAKE BACK RETURN|TRUCK|c deposits. bli| +74828|312350|24857|1|15|20435.10|0.05|0.05|N|O|1995-11-08|1995-09-25|1995-12-03|DELIVER IN PERSON|REG AIR|oost slyly. slyly unusual accounts impress | +74828|657355|19869|2|2|2624.64|0.09|0.01|N|O|1995-09-30|1995-09-05|1995-10-29|NONE|MAIL|unts haggle blith| +74829|695949|45950|1|22|42788.02|0.04|0.05|A|F|1994-03-09|1994-03-05|1994-03-26|DELIVER IN PERSON|TRUCK|egular foxes haggle carefully. carefully e| +74830|991052|28610|1|22|25146.22|0.01|0.07|A|F|1992-07-22|1992-06-22|1992-07-29|TAKE BACK RETURN|AIR|ely even pack| +74830|609522|22035|2|38|54396.62|0.02|0.08|R|F|1992-06-26|1992-06-24|1992-07-02|DELIVER IN PERSON|REG AIR|ts sleep blithely quickly pending forge| +74830|226029|1038|3|30|28650.30|0.07|0.00|A|F|1992-05-08|1992-05-04|1992-05-23|DELIVER IN PERSON|AIR|e quickly silent platelets cajol| +74830|868603|18604|4|30|47146.80|0.08|0.00|A|F|1992-07-20|1992-05-17|1992-08-06|COLLECT COD|FOB|re-- pending instructions cajole.| +74831|864712|14713|1|22|36886.74|0.01|0.03|N|O|1998-07-30|1998-07-17|1998-08-14|NONE|FOB|e accounts. carefully even deposits| +74831|210802|23307|2|21|35968.59|0.07|0.08|N|O|1998-08-28|1998-07-19|1998-09-03|COLLECT COD|TRUCK|engage quickly furious| +74856|887623|12658|1|44|70865.52|0.08|0.03|N|O|1995-10-22|1995-08-28|1995-10-29|TAKE BACK RETURN|REG AIR|l deposits nag fluffily regular theodolit| +74856|277921|27922|2|26|49371.66|0.01|0.08|N|O|1995-10-22|1995-09-06|1995-11-01|TAKE BACK RETURN|AIR|s. carefully even courts hang carefull| +74856|5298|5299|3|48|57757.92|0.06|0.01|N|O|1995-08-26|1995-08-07|1995-09-01|NONE|MAIL|ent deposits about the caref| +74856|27291|27292|4|9|10964.61|0.02|0.06|N|O|1995-07-06|1995-09-04|1995-07-13|COLLECT COD|FOB|ously final platelets against th| +74856|669928|32442|5|35|66426.15|0.10|0.05|N|O|1995-09-20|1995-08-23|1995-10-11|DELIVER IN PERSON|RAIL|arefully final| +74857|622968|22969|1|37|69964.41|0.10|0.06|R|F|1993-03-03|1993-01-29|1993-03-06|COLLECT COD|REG AIR|en instructions i| +74857|213279|38288|2|27|32191.02|0.09|0.06|R|F|1993-02-21|1993-01-24|1993-02-26|NONE|RAIL|fily slyly silent accounts. carefull| +74857|575781|25782|3|49|90981.24|0.10|0.06|R|F|1993-01-03|1993-03-10|1993-01-30|NONE|SHIP|ng the carefully | +74857|134928|34929|4|17|33369.64|0.03|0.00|R|F|1993-03-15|1993-03-11|1993-03-21|COLLECT COD|MAIL|egular pinto beans. foxes wak| +74858|537769|280|1|8|14453.92|0.03|0.04|R|F|1993-04-02|1993-03-29|1993-05-01|COLLECT COD|TRUCK| bold packages. carefully final theodo| +74858|270667|45678|2|12|19651.80|0.04|0.01|R|F|1993-05-06|1993-04-10|1993-05-12|DELIVER IN PERSON|TRUCK|he pending packages. blithel| +74858|94311|44312|3|41|53517.71|0.07|0.06|A|F|1993-02-25|1993-03-07|1993-03-18|COLLECT COD|RAIL|egular dolphins cajole. ir| +74858|83661|33662|4|46|75654.36|0.02|0.07|R|F|1993-04-22|1993-04-01|1993-05-14|NONE|FOB|dolites ha| +74858|79546|42048|5|42|64072.68|0.10|0.07|R|F|1993-03-14|1993-04-22|1993-03-22|TAKE BACK RETURN|RAIL|efully along the silent requ| +74858|917545|5100|6|30|46875.00|0.02|0.07|R|F|1993-02-21|1993-03-23|1993-03-20|NONE|TRUCK|. fluffily final deposits use | +74858|169910|44917|7|10|19799.10|0.04|0.01|R|F|1993-04-01|1993-03-14|1993-04-21|DELIVER IN PERSON|AIR|ructions according to the even, re| +74859|668617|43644|1|9|14270.22|0.07|0.01|A|F|1994-08-24|1994-09-09|1994-08-31|DELIVER IN PERSON|RAIL|und the carefully careful de| +74860|396748|21763|1|50|92236.50|0.08|0.07|A|F|1994-05-29|1994-05-11|1994-06-11|COLLECT COD|SHIP|ly final pinto beans | +74860|129870|29871|2|6|11399.22|0.09|0.05|R|F|1994-05-02|1994-05-12|1994-05-30|COLLECT COD|RAIL| bold theodoli| +74860|717920|30435|3|29|56198.81|0.00|0.04|A|F|1994-04-16|1994-04-23|1994-04-19|COLLECT COD|AIR|e blithely. dependencie| +74860|67988|17989|4|30|58679.40|0.01|0.02|A|F|1994-07-08|1994-05-28|1994-07-25|NONE|AIR| instructions are slyl| +74860|667796|17797|5|37|65259.12|0.03|0.05|A|F|1994-06-28|1994-05-17|1994-07-25|COLLECT COD|SHIP|lent, unusual deposits s| +74860|632749|32750|6|31|52133.01|0.03|0.02|R|F|1994-05-13|1994-05-04|1994-05-14|TAKE BACK RETURN|SHIP|pths poach. pl| +74861|276376|38882|1|26|35161.36|0.07|0.08|A|F|1993-06-07|1993-05-23|1993-06-11|DELIVER IN PERSON|MAIL|re regularly. f| +74861|35315|47816|2|31|38759.61|0.03|0.05|R|F|1993-06-01|1993-04-29|1993-06-27|COLLECT COD|FOB|s wake slyly. special deposits de| +74861|525642|13173|3|23|38355.26|0.02|0.06|A|F|1993-06-13|1993-06-18|1993-06-23|DELIVER IN PERSON|REG AIR|y ironic theodolit| +74861|464264|1792|4|19|23336.56|0.04|0.00|R|F|1993-06-03|1993-05-16|1993-06-14|NONE|MAIL|ges! regular, ironic d| +74861|868653|31171|5|35|56756.35|0.00|0.01|R|F|1993-07-03|1993-05-07|1993-07-22|DELIVER IN PERSON|AIR| quiet, express asymptotes | +74862|615767|28280|1|34|57212.82|0.07|0.03|N|O|1996-07-07|1996-05-01|1996-07-27|NONE|TRUCK|ld requests about the furio| +74863|777184|39700|1|15|18917.25|0.10|0.08|R|F|1992-11-29|1992-10-29|1992-12-03|NONE|AIR|ious packages haggle fluffily ironic, f| +74863|114977|27480|2|50|99598.50|0.01|0.02|A|F|1992-12-05|1992-12-01|1992-12-23|COLLECT COD|MAIL| unusual deposit| +74863|412223|37240|3|21|23839.20|0.10|0.07|A|F|1992-10-12|1992-10-28|1992-10-26|DELIVER IN PERSON|REG AIR|boost fluffily. furiousl| +74863|226292|1301|4|23|28020.44|0.09|0.07|A|F|1992-12-17|1992-10-05|1992-12-29|DELIVER IN PERSON|FOB|inal packages after the regular, bold| +74863|280281|17797|5|5|6306.35|0.01|0.00|R|F|1992-10-18|1992-10-25|1992-11-06|TAKE BACK RETURN|FOB|e blithely pending excuses. even | +74863|668726|6266|6|35|59314.15|0.07|0.04|R|F|1992-11-30|1992-10-15|1992-12-12|NONE|REG AIR|quickly near the slyly regular depos| +74888|505597|5598|1|30|48077.10|0.03|0.00|R|F|1993-04-01|1993-04-09|1993-04-23|COLLECT COD|AIR|express, special deposits integrate| +74888|559838|34861|2|24|45547.44|0.01|0.07|A|F|1993-02-12|1993-03-01|1993-02-14|COLLECT COD|FOB|ggle special theodolites. carefully| +74888|190380|27890|3|8|11763.04|0.06|0.08|A|F|1993-02-12|1993-03-11|1993-02-17|TAKE BACK RETURN|TRUCK|carefully ironic tithes are slyly| +74888|700462|463|4|23|33635.89|0.06|0.02|A|F|1993-04-27|1993-04-14|1993-05-27|DELIVER IN PERSON|MAIL|ely about the carefully regular pinto b| +74888|658774|46314|5|13|22525.62|0.04|0.01|A|F|1993-04-12|1993-04-11|1993-05-05|COLLECT COD|FOB|carefully special accoun| +74889|416600|41617|1|6|9099.48|0.03|0.03|R|F|1995-04-26|1995-04-20|1995-05-21|DELIVER IN PERSON|FOB| foxes haggle quickly even, ironic a| +74890|808397|45946|1|38|49603.30|0.10|0.06|A|F|1993-04-01|1993-04-22|1993-04-25|TAKE BACK RETURN|AIR|c foxes. fluffily special requests ca| +74891|997747|10267|1|27|49806.90|0.10|0.04|A|F|1993-05-11|1993-05-09|1993-05-16|DELIVER IN PERSON|REG AIR|regular pinto beans may w| +74891|128121|40624|2|1|1149.12|0.07|0.07|R|F|1993-04-26|1993-04-21|1993-05-25|TAKE BACK RETURN|FOB|iously special pi| +74891|327798|2811|3|16|29212.48|0.09|0.04|A|F|1993-04-20|1993-03-19|1993-05-09|TAKE BACK RETURN|AIR| the furiously even foxes. | +74891|289846|27362|4|25|45895.75|0.02|0.02|A|F|1993-04-21|1993-03-16|1993-04-25|DELIVER IN PERSON|REG AIR|uffily regular courts. pending deposi| +74892|631692|6717|1|30|48709.80|0.08|0.01|N|O|1995-11-11|1995-12-06|1995-12-09|TAKE BACK RETURN|RAIL|e furiously regular instructio| +74892|846428|33977|2|23|31610.74|0.00|0.06|N|O|1995-10-04|1995-12-21|1995-10-11|DELIVER IN PERSON|FOB|ke quickly about t| +74892|899193|24228|3|32|38148.80|0.08|0.03|N|O|1996-01-05|1995-11-01|1996-01-29|DELIVER IN PERSON|FOB|ter the theodolites boost care| +74892|729614|42129|4|14|23010.12|0.10|0.04|N|O|1995-09-25|1995-11-06|1995-10-16|NONE|TRUCK|nstructions haggle slyly ideas| +74892|612006|12007|5|2|1835.94|0.07|0.00|N|O|1996-01-21|1995-12-17|1996-02-19|TAKE BACK RETURN|REG AIR|sias. accounts wa| +74893|211437|48950|1|6|8090.52|0.00|0.07|N|O|1996-09-11|1996-10-31|1996-10-05|DELIVER IN PERSON|TRUCK|lites engage blithely special accounts. | +74893|613404|38429|2|7|9221.59|0.02|0.04|N|O|1996-08-28|1996-10-19|1996-08-29|TAKE BACK RETURN|AIR|lly fluffily final courts. s| +74893|467450|42469|3|4|5669.72|0.06|0.08|N|O|1996-10-31|1996-11-02|1996-11-28|TAKE BACK RETURN|REG AIR|fter the carefully | +74893|418957|18958|4|13|24387.09|0.05|0.04|N|O|1996-11-02|1996-11-15|1996-11-28|TAKE BACK RETURN|RAIL|mptotes are slyly accounts. instructions| +74893|399943|37465|5|30|61287.90|0.09|0.08|N|O|1996-09-07|1996-11-16|1996-09-13|COLLECT COD|REG AIR|c deposits| +74894|194739|32249|1|41|75182.93|0.10|0.04|N|O|1997-09-01|1997-10-05|1997-09-08|COLLECT COD|SHIP|ely. blithely ironic theodolites| +74894|977161|2200|2|45|55715.40|0.08|0.01|N|O|1997-10-25|1997-10-01|1997-11-14|NONE|AIR|ns will boost furiously e| +74894|135450|10455|3|10|14854.50|0.00|0.08|N|O|1997-08-13|1997-09-28|1997-09-03|NONE|FOB|boost. depths after the furio| +74894|497648|22667|4|22|36203.64|0.04|0.03|N|O|1997-07-27|1997-08-16|1997-08-22|TAKE BACK RETURN|FOB|aggle along the special, ironic d| +74894|955161|5162|5|11|13377.32|0.02|0.05|N|O|1997-10-27|1997-09-21|1997-11-02|DELIVER IN PERSON|MAIL|osely fina| +74894|375973|988|6|48|98350.08|0.05|0.03|N|O|1997-08-03|1997-09-19|1997-09-01|DELIVER IN PERSON|SHIP|e deposits. deposits cajole carefull| +74894|973976|36496|7|36|73797.48|0.06|0.01|N|O|1997-09-21|1997-09-08|1997-10-04|COLLECT COD|RAIL|slyly bold accounts use blithely! blithely| +74895|602247|27272|1|45|51714.45|0.04|0.08|R|F|1993-02-19|1993-02-01|1993-03-07|COLLECT COD|MAIL|ages detect quickly. pending, reg| +74895|952205|14725|2|41|51543.56|0.03|0.01|A|F|1993-03-22|1993-02-25|1993-03-28|NONE|MAIL|ove the quickly r| +74895|701577|1578|3|30|47356.20|0.01|0.01|R|F|1993-01-19|1993-02-10|1993-02-12|TAKE BACK RETURN|FOB|eposits grow carefully. silent fo| +74895|398053|23068|4|6|6906.24|0.05|0.00|A|F|1993-01-14|1993-02-22|1993-02-04|NONE|SHIP|th the slyly special requests cajol| +74895|63982|1486|5|6|11675.88|0.10|0.08|R|F|1993-01-09|1993-01-17|1993-01-27|DELIVER IN PERSON|REG AIR|slyly quickly silent pinto beans. blit| +74895|339130|1637|6|31|36242.72|0.10|0.06|A|F|1993-03-26|1993-02-09|1993-03-31|COLLECT COD|FOB|cally pending deposits cajole. foxes cajol| +74895|743524|18553|7|15|23512.35|0.07|0.01|R|F|1993-01-20|1993-01-04|1993-02-15|TAKE BACK RETURN|MAIL|alms haggle.| +74920|399673|37195|1|47|83315.02|0.09|0.02|N|O|1997-03-05|1997-02-23|1997-03-07|NONE|AIR|fter the carefully even foxes. carefull| +74921|339507|14520|1|12|18557.88|0.10|0.00|N|O|1996-02-26|1996-02-12|1996-03-07|DELIVER IN PERSON|RAIL|lithely according to the even | +74921|94044|19047|2|20|20760.80|0.08|0.05|N|O|1996-01-18|1996-02-11|1996-02-13|TAKE BACK RETURN|RAIL|kages run finally. blithely regular she| +74921|580955|43467|3|37|75329.41|0.07|0.06|N|O|1996-03-12|1995-12-26|1996-04-09|COLLECT COD|SHIP|waters sleep blithel| +74921|101582|14085|4|6|9501.48|0.00|0.04|N|O|1996-01-27|1995-12-19|1996-02-02|COLLECT COD|SHIP|s across the even requests m| +74921|285553|10564|5|38|58464.52|0.03|0.07|N|O|1996-01-10|1996-01-23|1996-01-26|TAKE BACK RETURN|FOB|ons sleep along the quickly regular depo| +74922|743729|31272|1|26|46089.94|0.08|0.01|N|O|1998-06-04|1998-05-22|1998-06-12|TAKE BACK RETURN|MAIL|theodolites wake unusual pinto b| +74922|843941|18974|2|19|35813.10|0.07|0.02|N|O|1998-03-24|1998-05-14|1998-04-18|COLLECT COD|MAIL|lithe theodolites. c| +74922|104910|29915|3|31|59362.21|0.10|0.02|N|O|1998-07-03|1998-05-03|1998-07-25|TAKE BACK RETURN|TRUCK| slyly unusual acc| +74922|211825|24330|4|9|15631.29|0.00|0.06|N|O|1998-05-17|1998-05-29|1998-06-06|COLLECT COD|MAIL|as. carefully bold requests haggle| +74922|137684|37685|5|31|53372.08|0.00|0.01|N|O|1998-04-29|1998-06-09|1998-05-17|DELIVER IN PERSON|MAIL|ffily alongside of the car| +74922|50704|13206|6|46|76116.20|0.07|0.07|N|O|1998-06-29|1998-05-27|1998-07-19|NONE|FOB|along the blithely even dep| +74923|992118|42119|1|24|29041.68|0.06|0.03|R|F|1995-02-26|1995-01-26|1995-03-10|COLLECT COD|REG AIR|eep courts. pendin| +74923|518430|43451|2|43|62281.63|0.05|0.06|A|F|1995-01-11|1994-12-09|1995-01-18|NONE|SHIP|ges haggle among the instruct| +74923|252806|15312|3|17|29899.43|0.08|0.07|A|F|1994-12-06|1994-12-24|1994-12-23|COLLECT COD|MAIL|ove the regular theodolites. unusu| +74923|904065|29102|4|28|29932.56|0.03|0.08|A|F|1994-12-05|1994-12-09|1994-12-28|TAKE BACK RETURN|MAIL| quickly furiously bold | +74923|613354|891|5|12|15207.84|0.05|0.04|R|F|1995-01-27|1995-01-15|1995-02-23|NONE|FOB|above the r| +74923|639655|27192|6|25|39865.50|0.04|0.07|A|F|1995-01-08|1995-01-25|1995-01-14|TAKE BACK RETURN|AIR|accounts. quickly re| +74924|25014|12515|1|24|22536.24|0.01|0.05|A|F|1992-02-27|1992-04-22|1992-03-07|COLLECT COD|MAIL|ependencies grow special | +74924|407388|44913|2|39|50519.04|0.09|0.07|R|F|1992-05-01|1992-04-24|1992-05-21|DELIVER IN PERSON|REG AIR|equests sleep silently among the| +74925|487557|67|1|40|61781.20|0.08|0.02|N|O|1998-05-11|1998-03-22|1998-06-07|TAKE BACK RETURN|REG AIR|ic ideas use after the quickly| +74925|361237|11238|2|49|63612.78|0.01|0.06|N|O|1998-04-24|1998-04-30|1998-05-02|DELIVER IN PERSON|FOB|e about the final escapades. furiously exp| +74925|304302|4303|3|45|58783.05|0.05|0.04|N|O|1998-04-05|1998-04-13|1998-04-16|DELIVER IN PERSON|RAIL|ments sleep blithely across th| +74925|397588|22603|4|30|50567.10|0.02|0.04|N|O|1998-03-24|1998-04-08|1998-04-02|NONE|RAIL|daringly silent asympto| +74925|260075|47591|5|8|8280.48|0.07|0.02|N|O|1998-03-10|1998-04-17|1998-03-27|DELIVER IN PERSON|REG AIR|ackages cajole blithely slyly ironic epitap| +74925|64438|26940|6|37|51889.91|0.08|0.00|N|O|1998-02-17|1998-05-01|1998-03-16|COLLECT COD|RAIL|furiously. silent deposits haggle slyly af| +74925|8604|21105|7|1|1512.60|0.09|0.08|N|O|1998-05-27|1998-04-30|1998-06-23|COLLECT COD|SHIP|e near the carefully| +74926|593628|43629|1|46|79193.60|0.03|0.00|N|O|1996-05-29|1996-07-30|1996-06-10|DELIVER IN PERSON|SHIP| haggle. furiously expr| +74926|101974|1975|2|30|59279.10|0.01|0.03|N|O|1996-06-05|1996-07-14|1996-06-08|NONE|FOB|y. blithely ironic pi| +74926|870144|45179|3|2|2228.20|0.01|0.08|N|O|1996-06-14|1996-06-12|1996-06-30|NONE|FOB|onic accounts are furi| +74926|496211|46212|4|21|25350.99|0.00|0.05|N|O|1996-05-24|1996-07-10|1996-06-21|TAKE BACK RETURN|TRUCK|ests. closely| +74927|912980|535|1|24|47830.56|0.00|0.03|N|O|1996-09-17|1996-08-29|1996-10-09|COLLECT COD|TRUCK|lly above the quickly regular pinto | +74927|446963|21980|2|28|53478.32|0.01|0.08|N|O|1996-08-19|1996-07-31|1996-09-05|COLLECT COD|REG AIR|the blithely u| +74927|105386|17889|3|27|37567.26|0.02|0.06|N|O|1996-07-03|1996-08-30|1996-07-04|DELIVER IN PERSON|FOB|mes even platelets haggle among t| +74927|213012|38021|4|44|40700.00|0.10|0.06|N|O|1996-07-25|1996-08-29|1996-08-23|NONE|SHIP|kly sly pin| +74927|85401|22905|5|32|44364.80|0.05|0.01|N|O|1996-06-21|1996-08-21|1996-07-17|TAKE BACK RETURN|REG AIR|ideas across the s| +74952|651312|1313|1|30|37898.40|0.08|0.07|N|O|1996-05-14|1996-06-17|1996-05-28|NONE|FOB|ely regular packages haggl| +74952|596104|8616|2|14|16801.12|0.01|0.04|N|O|1996-05-23|1996-05-27|1996-06-18|TAKE BACK RETURN|AIR| deposits sleep furiously special acc| +74953|600585|586|1|50|74277.50|0.08|0.07|A|F|1993-08-02|1993-07-25|1993-08-17|TAKE BACK RETURN|REG AIR|posits among the carefully enticing| +74953|26436|13937|2|5|6812.15|0.03|0.03|R|F|1993-06-25|1993-08-05|1993-07-11|TAKE BACK RETURN|REG AIR|wake blithely. | +74953|301285|1286|3|26|33443.02|0.08|0.06|A|F|1993-07-20|1993-08-29|1993-08-10|NONE|RAIL|xpress, regular excuses haggle| +74953|689188|39189|4|33|38845.95|0.06|0.02|A|F|1993-09-01|1993-08-29|1993-09-06|NONE|AIR|thely. busy the| +74953|174658|12168|5|24|41583.60|0.02|0.07|R|F|1993-08-04|1993-09-09|1993-08-07|COLLECT COD|AIR|ely unusual realms| +74953|462216|12217|6|48|56553.12|0.09|0.07|R|F|1993-10-04|1993-07-28|1993-10-06|TAKE BACK RETURN|MAIL|refully. quickly ironic package| +74954|493703|31231|1|26|44113.68|0.04|0.02|A|F|1994-01-20|1994-01-21|1994-01-25|COLLECT COD|AIR|s asymptotes. excuses grow along the | +74955|379319|16841|1|36|50338.80|0.08|0.05|R|F|1992-11-19|1992-11-17|1992-12-14|COLLECT COD|RAIL|gular pinto beans| +74955|212497|37506|2|4|5637.92|0.08|0.03|R|F|1993-01-27|1993-01-08|1993-02-15|DELIVER IN PERSON|RAIL|ly bold fox| +74955|420303|32812|3|8|9786.24|0.05|0.03|A|F|1993-01-31|1992-12-04|1993-02-04|COLLECT COD|SHIP|ithely. idea| +74955|30696|43197|4|25|40667.25|0.02|0.03|R|F|1992-12-04|1992-12-08|1992-12-10|COLLECT COD|RAIL|en excuses. unusual deposits engage f| +74955|894649|44650|5|13|21366.80|0.00|0.03|A|F|1993-01-12|1992-11-21|1993-02-11|NONE|AIR|ong the blithely fina| +74955|360701|23209|6|48|84561.12|0.09|0.03|R|F|1992-12-28|1992-12-12|1993-01-02|DELIVER IN PERSON|SHIP|es affix carefully pending, final ideas. | +74955|292160|29676|7|25|28803.75|0.09|0.02|A|F|1992-12-24|1992-12-18|1993-01-23|DELIVER IN PERSON|TRUCK|ans alongside of the requests slee| +74956|319164|19165|1|34|40227.10|0.01|0.02|N|O|1997-01-16|1996-11-18|1997-02-05|COLLECT COD|TRUCK|y ironic inst| +74956|175514|38018|2|9|14305.59|0.10|0.07|N|O|1996-10-25|1996-12-19|1996-11-23|NONE|MAIL|es across the bli| +74956|851027|26062|3|10|9779.80|0.04|0.05|N|O|1996-12-03|1996-12-01|1996-12-11|NONE|FOB|ld accounts. ironic foxes maintai| +74956|207051|32060|4|49|46943.96|0.04|0.05|N|O|1996-12-05|1996-11-05|1996-12-25|TAKE BACK RETURN|MAIL| the final, regular| +74957|891926|29478|1|8|15343.04|0.10|0.00|N|O|1997-02-14|1996-12-13|1997-03-13|TAKE BACK RETURN|TRUCK|ests. furiously bold theodolites haggle | +74958|143385|18390|1|28|39994.64|0.00|0.07|N|O|1995-08-13|1995-10-03|1995-08-14|TAKE BACK RETURN|FOB|nts haggle blithely | +74959|928098|15653|1|7|7882.35|0.10|0.05|N|O|1997-05-16|1997-07-16|1997-05-23|DELIVER IN PERSON|AIR|rts haggle furiously fu| +74959|534964|22495|2|2|3997.88|0.04|0.03|N|O|1997-06-30|1997-07-07|1997-07-12|DELIVER IN PERSON|REG AIR|lets. requests believe quickly. carefully | +74959|134723|9728|3|23|40427.56|0.07|0.05|N|O|1997-07-24|1997-06-21|1997-08-11|TAKE BACK RETURN|SHIP|y slyly regu| +74959|273821|36327|4|32|57433.92|0.03|0.08|N|O|1997-06-15|1997-05-29|1997-06-16|COLLECT COD|SHIP|uests. bold packages detect fu| +74959|109229|9230|5|22|27240.84|0.02|0.08|N|O|1997-06-30|1997-06-16|1997-07-20|NONE|RAIL| accounts haggle fluffily final ideas. | +74959|802159|14676|6|21|22283.31|0.09|0.00|N|O|1997-06-04|1997-07-11|1997-06-20|COLLECT COD|REG AIR|r the furiously| +74959|881878|6913|7|41|76253.03|0.00|0.06|N|O|1997-05-04|1997-07-23|1997-05-25|COLLECT COD|AIR|y silent deposits. carefully bold cour| +74984|707779|20294|1|40|71469.60|0.09|0.05|N|O|1998-07-23|1998-09-03|1998-07-28|TAKE BACK RETURN|AIR| the regular packages| +74984|635140|22677|2|14|15051.54|0.03|0.04|N|O|1998-10-29|1998-09-07|1998-11-22|DELIVER IN PERSON|SHIP|tes. furiously final platelets| +74984|797538|10054|3|18|29439.00|0.07|0.07|N|O|1998-08-08|1998-09-30|1998-08-26|DELIVER IN PERSON|RAIL|l packages are furiously behind the a| +74985|914717|14718|1|16|27706.72|0.06|0.08|R|F|1994-08-12|1994-09-18|1994-08-25|DELIVER IN PERSON|MAIL|ckages detect carefully abov| +74985|635525|48038|2|13|18986.37|0.08|0.04|A|F|1994-09-18|1994-09-14|1994-10-02|COLLECT COD|REG AIR|telets will have| +74985|259333|9334|3|46|59446.72|0.02|0.05|R|F|1994-11-09|1994-09-04|1994-12-03|COLLECT COD|MAIL|sts. quickly silent accounts wake | +74986|253153|28164|1|17|18804.38|0.06|0.03|A|F|1995-03-13|1995-02-27|1995-03-14|TAKE BACK RETURN|SHIP|y final accounts about the furiously unus| +74986|740635|28178|2|21|35187.60|0.04|0.08|R|F|1995-02-08|1995-02-19|1995-03-09|NONE|RAIL|o beans x-ray. regular r| +74986|839627|2144|3|32|50130.56|0.10|0.06|R|F|1995-03-15|1995-02-17|1995-03-18|COLLECT COD|MAIL|hely bold packag| +74986|597919|22942|4|15|30253.35|0.08|0.04|R|F|1995-04-18|1995-04-09|1995-05-10|DELIVER IN PERSON|REG AIR|into beans sleep quickly ironi| +74986|213538|26043|5|46|66769.92|0.07|0.03|A|F|1995-02-02|1995-03-23|1995-02-19|DELIVER IN PERSON|AIR| theodolites. express, pending excuses b| +74986|921685|9240|6|14|23892.96|0.07|0.00|R|F|1995-04-16|1995-03-31|1995-05-16|TAKE BACK RETURN|RAIL|old requests. even, special accounts| +74986|753306|3307|7|50|67963.50|0.00|0.01|R|F|1995-04-28|1995-03-25|1995-05-21|DELIVER IN PERSON|TRUCK|rding to the slyly pending depo| +74987|805379|42928|1|31|39814.23|0.07|0.06|A|F|1993-03-29|1993-02-21|1993-04-28|COLLECT COD|AIR|nic requests haggle above t| +74987|996259|21298|2|10|13552.10|0.01|0.03|A|F|1993-02-04|1993-03-10|1993-02-16|NONE|TRUCK| ironic, regul| +74987|117831|5338|3|24|44371.92|0.09|0.03|A|F|1993-04-04|1993-04-05|1993-04-10|DELIVER IN PERSON|RAIL|cies cajole. furiously ironi| +74987|384345|46853|4|42|60031.86|0.02|0.01|A|F|1993-04-30|1993-03-17|1993-05-19|TAKE BACK RETURN|AIR|es detect furiously about t| +74987|675605|13145|5|24|37933.68|0.03|0.08|R|F|1993-01-23|1993-03-23|1993-02-18|NONE|RAIL|quickly ruthless| +74988|697733|35273|1|14|24229.80|0.00|0.06|N|O|1998-01-19|1998-01-31|1998-01-24|DELIVER IN PERSON|RAIL|ding to the slyly ironic a| +74988|786154|23700|2|46|57045.52|0.06|0.04|N|O|1998-03-03|1998-02-11|1998-03-04|TAKE BACK RETURN|RAIL|ongside of the even epitaphs. slyly fi| +74988|887156|24708|3|19|21719.09|0.07|0.01|N|O|1998-01-04|1998-02-27|1998-01-20|TAKE BACK RETURN|MAIL|engage. quickly regula| +74988|415660|28169|4|18|28361.52|0.05|0.01|N|O|1998-01-31|1998-03-28|1998-02-12|TAKE BACK RETURN|MAIL|ic braids use furiously about | +74988|984858|9897|5|10|19428.10|0.01|0.05|N|O|1998-01-05|1998-03-09|1998-01-09|COLLECT COD|FOB|ounts cajole carefully regular packages.| +74988|499088|24107|6|47|51091.82|0.08|0.04|N|O|1998-04-19|1998-02-23|1998-05-13|COLLECT COD|AIR|ic pinto beans. grouches among | +74988|168499|43506|7|2|3134.98|0.02|0.07|N|O|1998-04-12|1998-02-01|1998-04-18|DELIVER IN PERSON|RAIL|its boost furiously. fluff| +74989|957997|33036|1|10|20549.50|0.06|0.03|N|O|1997-05-31|1997-07-15|1997-06-14|NONE|MAIL| fluffily ev| +74989|53863|41367|2|25|45421.50|0.10|0.07|N|O|1997-07-24|1997-08-09|1997-08-11|DELIVER IN PERSON|MAIL|final deposits; blithely final depths| +74990|748953|11468|1|35|70067.20|0.05|0.06|R|F|1993-03-01|1993-03-05|1993-03-31|DELIVER IN PERSON|RAIL|cajole carefully across the e| +74990|645379|45380|2|8|10594.72|0.02|0.05|A|F|1993-03-29|1993-01-16|1993-04-12|TAKE BACK RETURN|FOB|vely. slyly silent requests are. | +74991|922616|35135|1|15|24578.55|0.06|0.07|N|O|1998-02-17|1998-04-01|1998-03-04|COLLECT COD|SHIP|nding accounts are quickly on the c| +74991|393890|31412|2|46|91258.48|0.02|0.03|N|O|1998-03-04|1998-04-08|1998-03-15|DELIVER IN PERSON|RAIL| grouches: bold | +75016|55081|30084|1|29|30046.32|0.10|0.01|N|O|1996-01-15|1996-02-17|1996-01-21|DELIVER IN PERSON|TRUCK|y ironic platelet| +75016|741689|16718|2|43|74417.95|0.08|0.01|N|O|1996-03-18|1996-03-10|1996-03-23|TAKE BACK RETURN|TRUCK|le blithely about the pending,| +75016|562088|49622|3|15|17250.90|0.04|0.05|N|O|1996-01-15|1996-01-28|1996-01-20|COLLECT COD|RAIL|ke. dependencies| +75017|29656|17157|1|37|58669.05|0.02|0.07|N|O|1997-08-31|1997-08-04|1997-09-07|NONE|SHIP|s cajole. pending, regular tit| +75017|412669|12670|2|24|37959.36|0.03|0.06|N|O|1997-06-20|1997-06-12|1997-07-14|DELIVER IN PERSON|AIR|t the special, final excu| +75017|720267|32782|3|17|21882.91|0.01|0.05|N|O|1997-08-21|1997-07-16|1997-09-04|DELIVER IN PERSON|REG AIR|carefully regular court| +75018|330564|18083|1|12|19134.60|0.04|0.02|N|O|1996-06-16|1996-08-23|1996-06-22|NONE|AIR|l theodolites. blithely unusual deposi| +75018|774699|49730|2|44|78041.04|0.09|0.02|N|O|1996-08-18|1996-07-18|1996-08-20|DELIVER IN PERSON|RAIL|s detect. d| +75018|353940|16448|3|40|79757.20|0.10|0.00|N|O|1996-09-25|1996-08-02|1996-10-12|COLLECT COD|FOB|ons. package| +75018|666959|41986|4|46|88592.32|0.06|0.08|N|O|1996-09-18|1996-07-19|1996-10-10|COLLECT COD|TRUCK|press sentimen| +75019|196957|21964|1|16|32863.20|0.06|0.01|N|O|1995-10-21|1995-10-04|1995-11-19|COLLECT COD|SHIP|l, final theod| +75019|256153|6154|2|28|31055.92|0.06|0.05|N|O|1995-10-17|1995-09-11|1995-10-20|TAKE BACK RETURN|MAIL|l, blithe pac| +75020|105653|30658|1|39|64687.35|0.02|0.02|R|F|1992-08-16|1992-07-17|1992-09-04|DELIVER IN PERSON|FOB|e final deposits boo| +75020|709152|9153|2|42|48767.04|0.09|0.07|A|F|1992-09-04|1992-07-25|1992-09-13|DELIVER IN PERSON|SHIP|dolphins integrate. furiousl| +75020|703160|15675|3|10|11631.30|0.01|0.08|R|F|1992-09-24|1992-08-30|1992-10-22|COLLECT COD|REG AIR|al accounts. q| +75020|8107|20608|4|29|29437.90|0.07|0.07|R|F|1992-07-08|1992-08-13|1992-08-02|COLLECT COD|RAIL| accounts caj| +75020|252096|2097|5|44|46115.52|0.06|0.01|R|F|1992-07-31|1992-08-24|1992-08-10|COLLECT COD|FOB|ithely even deposits. furiously regular| +75020|970464|45503|6|44|67514.48|0.02|0.06|R|F|1992-07-04|1992-08-02|1992-07-27|NONE|SHIP|even deposits. slow accounts boost car| +75021|178004|28005|1|18|19476.00|0.06|0.01|A|F|1994-07-07|1994-08-15|1994-08-05|TAKE BACK RETURN|TRUCK|daring ideas. slyly silent deposits| +75021|697849|22876|2|7|12927.67|0.10|0.08|A|F|1994-09-16|1994-08-23|1994-10-13|DELIVER IN PERSON|REG AIR|nts x-ray fluffily re| +75021|738012|13041|3|15|15749.70|0.04|0.02|A|F|1994-10-06|1994-08-26|1994-11-02|NONE|AIR|ily alongside of the | +75022|494774|7284|1|30|53062.50|0.10|0.01|R|F|1993-07-10|1993-05-21|1993-07-21|DELIVER IN PERSON|REG AIR|ts x-ray quickly. bold excuses wa| +75022|650058|25085|2|42|42336.84|0.02|0.06|A|F|1993-05-13|1993-06-11|1993-05-18|TAKE BACK RETURN|REG AIR| platelets. slyl| +75022|519926|19927|3|50|97295.00|0.09|0.07|A|F|1993-07-27|1993-06-05|1993-08-02|DELIVER IN PERSON|TRUCK|etect across th| +75022|387277|12292|4|44|60027.44|0.08|0.02|R|F|1993-07-22|1993-05-17|1993-08-02|COLLECT COD|TRUCK|aphs. carefully close theodolites sleep rut| +75023|510494|48025|1|39|58674.33|0.10|0.05|A|F|1992-09-11|1992-10-13|1992-10-06|NONE|AIR|y unusual packages are about the slyly iro| +75023|860458|10459|2|46|65246.86|0.00|0.08|A|F|1992-08-15|1992-08-19|1992-09-07|NONE|AIR|al requests. requests above the blithe| +75023|709851|34880|3|32|59546.24|0.06|0.08|A|F|1992-08-16|1992-09-21|1992-09-10|NONE|TRUCK|ress warthogs nag quickly slyly r| +75023|459259|34278|4|25|30455.75|0.07|0.03|R|F|1992-10-01|1992-10-16|1992-10-13|TAKE BACK RETURN|TRUCK|arefully acc| +75023|761206|48752|5|26|32946.42|0.00|0.04|R|F|1992-09-11|1992-10-13|1992-10-05|NONE|RAIL|t, even instructions caj| +75023|585040|47552|6|13|14625.26|0.00|0.03|R|F|1992-11-03|1992-08-26|1992-11-11|COLLECT COD|RAIL| bold requests integrate qu| +75048|709279|21794|1|48|61835.52|0.04|0.05|N|O|1996-02-02|1995-11-12|1996-03-03|COLLECT COD|MAIL| haggle across the silent, unusual| +75048|837216|37217|2|32|36901.44|0.04|0.07|N|O|1996-01-20|1995-11-17|1996-01-31|DELIVER IN PERSON|TRUCK|ickly after the furio| +75049|588575|1087|1|32|53233.60|0.10|0.01|R|F|1994-04-29|1994-05-28|1994-05-16|NONE|MAIL|d theodolites x-r| +75049|174684|37188|2|16|28138.88|0.06|0.02|A|F|1994-07-31|1994-07-02|1994-08-06|COLLECT COD|SHIP|l deposits boost furio| +75049|901291|26328|3|23|29721.75|0.01|0.01|A|F|1994-06-22|1994-06-25|1994-07-18|TAKE BACK RETURN|RAIL|lyly ironic packages. req| +75050|600296|25321|1|17|20336.42|0.05|0.01|R|F|1994-08-05|1994-06-17|1994-08-07|NONE|REG AIR|after the b| +75050|171262|46269|2|25|33331.50|0.08|0.01|A|F|1994-08-08|1994-07-17|1994-08-14|NONE|FOB|oxes haggle blithely after the blithely | +75050|387495|3|3|41|64881.68|0.04|0.08|R|F|1994-06-26|1994-06-30|1994-06-28|DELIVER IN PERSON|FOB|ts wake according t| +75051|848543|23576|1|42|62643.00|0.10|0.01|R|F|1993-07-08|1993-05-31|1993-08-01|TAKE BACK RETURN|RAIL|ar accounts cajole | +75051|459194|9195|2|22|25369.74|0.10|0.04|A|F|1993-05-19|1993-07-25|1993-06-17|DELIVER IN PERSON|SHIP|telets. specia| +75051|665350|40377|3|18|23675.76|0.02|0.08|R|F|1993-06-28|1993-06-15|1993-07-16|DELIVER IN PERSON|FOB| carefully even packages a| +75051|532406|19937|4|16|23014.08|0.10|0.08|R|F|1993-08-05|1993-06-01|1993-08-18|COLLECT COD|SHIP|ly pending instructions wake ac| +75051|141909|29416|5|20|39018.00|0.08|0.05|R|F|1993-07-14|1993-07-25|1993-07-25|COLLECT COD|REG AIR|kly along the foxes. even, regular a| +75051|59157|21659|6|47|52459.05|0.07|0.05|R|F|1993-07-03|1993-07-27|1993-07-09|DELIVER IN PERSON|FOB|ct carefully. unusual deposits ru| +75052|190260|40261|1|4|5401.04|0.08|0.02|A|F|1994-06-22|1994-07-25|1994-07-22|NONE|SHIP| regular foxes| +75052|699119|49120|2|10|11180.80|0.09|0.01|R|F|1994-08-05|1994-07-26|1994-08-14|DELIVER IN PERSON|TRUCK|riously final d| +75052|78666|28667|3|32|52629.12|0.02|0.01|A|F|1994-08-01|1994-06-24|1994-08-21|NONE|REG AIR|eposits sleep closely| +75052|127640|2645|4|12|20011.68|0.02|0.04|R|F|1994-08-17|1994-06-11|1994-09-04|COLLECT COD|SHIP|posits cajole slyly ironic excuses. f| +75052|240153|15162|5|34|37166.76|0.04|0.04|A|F|1994-06-25|1994-06-02|1994-07-23|TAKE BACK RETURN|MAIL|he ironic c| +75052|244183|31696|6|15|16907.55|0.06|0.07|A|F|1994-06-08|1994-06-24|1994-07-07|COLLECT COD|FOB|y unusual multipliers. pending accou| +75053|302563|2564|1|25|39138.75|0.03|0.00|N|O|1996-11-15|1996-11-12|1996-11-29|NONE|MAIL|gular, bold requests ar| +75054|70555|45558|1|11|16781.05|0.06|0.07|R|F|1994-12-15|1995-01-22|1995-01-06|TAKE BACK RETURN|SHIP| foxes above the blit| +75054|812276|24793|2|1|1188.23|0.06|0.07|A|F|1995-01-16|1995-01-01|1995-02-12|TAKE BACK RETURN|TRUCK|tes; bold foxes along t| +75054|918210|43247|3|4|4912.68|0.01|0.03|R|F|1995-01-26|1995-01-03|1995-02-08|NONE|MAIL|dolites. ironic| +75054|347538|22551|4|49|77690.48|0.02|0.05|A|F|1995-02-27|1995-01-26|1995-03-05|TAKE BACK RETURN|REG AIR|ns haggle about the fluf| +75054|69181|44184|5|24|27604.32|0.02|0.07|R|F|1995-02-02|1995-02-09|1995-02-21|COLLECT COD|MAIL|slyly final pl| +75055|649381|11894|1|49|65187.15|0.01|0.00|N|O|1996-11-21|1996-10-08|1996-12-10|TAKE BACK RETURN|SHIP|ously dogged packages haggle about t| +75055|145386|7889|2|5|7156.90|0.01|0.03|N|O|1996-11-18|1996-09-01|1996-12-10|COLLECT COD|SHIP|ourts-- fluffily regular instructions are | +75055|495964|20983|3|9|17639.46|0.01|0.01|N|O|1996-08-11|1996-08-27|1996-09-10|DELIVER IN PERSON|SHIP|ckages. blithely ironic packages wake am| +75080|49992|24993|1|20|38839.80|0.02|0.06|N|O|1996-12-09|1997-02-18|1996-12-10|COLLECT COD|TRUCK|equests at the quickly exp| +75080|206079|6080|2|39|38417.34|0.05|0.04|N|O|1997-01-18|1997-02-05|1997-01-20|DELIVER IN PERSON|MAIL|ts sleep careful| +75080|555576|43110|3|15|24473.25|0.04|0.01|N|O|1997-03-16|1997-01-24|1997-03-24|NONE|AIR|arefully blithely unusual packages.| +75080|559269|34292|4|13|17267.12|0.00|0.02|N|O|1997-02-12|1997-01-23|1997-02-14|NONE|REG AIR|olites. quickly express depos| +75080|622197|47222|5|27|30217.32|0.08|0.05|N|O|1997-03-19|1997-01-23|1997-03-20|TAKE BACK RETURN|SHIP| use carefully br| +75080|256803|6804|6|41|72151.39|0.00|0.04|N|O|1996-12-18|1996-12-30|1996-12-27|COLLECT COD|SHIP| deposits nod carefully.| +75080|82887|20391|7|37|69185.56|0.08|0.04|N|O|1997-01-14|1997-01-28|1997-02-07|COLLECT COD|REG AIR|ring accounts nag blithely expres| +75081|80087|42589|1|22|23475.76|0.08|0.07|A|F|1993-08-02|1993-06-28|1993-08-08|COLLECT COD|AIR|ctions; re| +75081|19119|31620|2|13|13495.43|0.02|0.07|R|F|1993-08-04|1993-06-14|1993-08-06|COLLECT COD|FOB|ecial accounts are. quickly f| +75081|330640|18159|3|12|20047.56|0.09|0.02|R|F|1993-08-27|1993-07-24|1993-09-05|DELIVER IN PERSON|SHIP|oxes haggle regula| +75081|55195|42699|4|47|54058.93|0.07|0.03|R|F|1993-08-10|1993-07-09|1993-08-27|NONE|REG AIR|aphs. furiously pending deposits| +75081|646072|33609|5|29|29523.16|0.04|0.03|A|F|1993-07-07|1993-06-25|1993-08-01|NONE|RAIL|ickly accounts. carefully ruthless a| +75082|341360|28879|1|25|35033.75|0.02|0.00|A|F|1992-07-31|1992-06-12|1992-08-10|DELIVER IN PERSON|AIR|ake quickly alongside of the ideas| +75082|225282|291|2|10|12072.70|0.05|0.01|A|F|1992-08-30|1992-07-02|1992-09-09|TAKE BACK RETURN|MAIL|s haggle furiously regular accounts. fi| +75082|307750|20257|3|11|19335.14|0.07|0.06|R|F|1992-05-15|1992-07-27|1992-05-30|DELIVER IN PERSON|SHIP|ously final waters wake slyly special| +75082|349074|36593|4|24|26953.44|0.04|0.02|R|F|1992-06-29|1992-07-21|1992-07-20|DELIVER IN PERSON|MAIL|ests use. unusual instructi| +75083|854296|16814|1|5|6251.25|0.02|0.08|A|F|1994-05-04|1994-07-08|1994-05-27|TAKE BACK RETURN|SHIP|fix. blithely even deposits c| +75083|146222|33729|2|7|8877.54|0.03|0.04|R|F|1994-08-16|1994-06-26|1994-09-08|DELIVER IN PERSON|RAIL|te blithely among the foxes. furiously fi| +75083|552373|14885|3|9|12828.15|0.07|0.04|A|F|1994-05-19|1994-07-13|1994-05-31|TAKE BACK RETURN|SHIP| the dependenci| +75083|727646|2675|4|37|61923.57|0.03|0.01|A|F|1994-07-12|1994-06-23|1994-08-03|DELIVER IN PERSON|TRUCK|y express pinto beans| +75083|540893|28424|5|10|19338.70|0.03|0.01|R|F|1994-07-19|1994-07-08|1994-07-26|COLLECT COD|MAIL|nding braids wake at | +75083|772284|22285|6|34|46112.50|0.06|0.08|R|F|1994-06-09|1994-06-24|1994-07-09|COLLECT COD|SHIP|yly along the slyly special foxes. sl| +75084|755331|42877|1|50|69315.00|0.08|0.07|A|F|1992-04-17|1992-05-11|1992-05-10|NONE|AIR|to beans are blithely ironic instr| +75084|842228|4745|2|18|21063.24|0.09|0.01|A|F|1992-05-25|1992-06-19|1992-06-19|TAKE BACK RETURN|AIR|accounts. requests da| +75084|310743|35756|3|25|43843.25|0.08|0.05|R|F|1992-07-22|1992-06-05|1992-07-23|TAKE BACK RETURN|AIR|kly regular pinto beans. carefully unusua| +75084|641636|41637|4|38|59948.80|0.06|0.06|R|F|1992-04-06|1992-05-25|1992-04-18|NONE|REG AIR|quickly ironic requests wake | +75084|973479|35999|5|8|12419.44|0.10|0.08|A|F|1992-04-17|1992-05-20|1992-04-25|NONE|REG AIR|er the pending ideas. sly| +75084|260041|47557|6|33|33033.99|0.05|0.01|A|F|1992-07-12|1992-06-06|1992-08-01|COLLECT COD|MAIL|e among the express, pending accounts| +75085|432596|45105|1|20|30571.40|0.02|0.02|A|F|1993-07-24|1993-06-21|1993-07-27|NONE|MAIL|ironic deposits. pinto be| +75085|635934|35935|2|8|14959.20|0.09|0.02|A|F|1993-07-21|1993-07-27|1993-08-17|TAKE BACK RETURN|MAIL|s. furiously ironic pinto beans cajole | +75085|137952|25459|3|17|33829.15|0.09|0.01|A|F|1993-08-10|1993-06-25|1993-08-21|NONE|FOB|ly upon the even packages. bo| +75085|552831|15343|4|19|35792.39|0.08|0.08|R|F|1993-07-04|1993-06-26|1993-07-17|DELIVER IN PERSON|TRUCK|lar ideas cajole carefully. quic| +75085|416655|16656|5|43|67580.09|0.07|0.08|R|F|1993-06-28|1993-07-13|1993-07-15|TAKE BACK RETURN|AIR| the carefully fina| +75085|709316|9317|6|47|62288.16|0.00|0.08|A|F|1993-06-12|1993-06-26|1993-06-21|DELIVER IN PERSON|MAIL|ons wake blithely. ironic, unusual packages| +75086|138895|38896|1|18|34810.02|0.09|0.07|A|F|1995-05-05|1995-02-25|1995-05-18|DELIVER IN PERSON|AIR|riously ironic foxes. pinto b| +75086|394959|32481|2|6|12323.64|0.07|0.08|R|F|1995-05-07|1995-02-19|1995-05-11|DELIVER IN PERSON|AIR|ronic ideas ac| +75086|75876|879|3|47|87037.89|0.00|0.04|R|F|1995-04-28|1995-04-08|1995-05-19|TAKE BACK RETURN|FOB|heodolites along the regular platel| +75086|246898|9403|4|39|71950.32|0.07|0.04|A|F|1995-05-15|1995-04-14|1995-05-16|DELIVER IN PERSON|RAIL|yly along the pending pint| +75086|603859|28884|5|32|56410.24|0.05|0.01|A|F|1995-03-06|1995-02-27|1995-03-15|DELIVER IN PERSON|AIR|olites wake fluffily toward the st| +75087|740973|40974|1|48|96669.12|0.05|0.07|N|O|1997-07-21|1997-08-19|1997-08-19|DELIVER IN PERSON|MAIL| ironic packages. regular deposi| +75087|527918|40429|2|23|44755.47|0.05|0.03|N|O|1997-10-01|1997-07-18|1997-10-19|DELIVER IN PERSON|MAIL|refully. quickl| +75087|709257|34286|3|35|44317.70|0.00|0.00|N|O|1997-07-22|1997-08-29|1997-08-13|NONE|MAIL|ake. quickly enti| +75112|540815|15836|1|47|87222.13|0.08|0.01|A|F|1994-07-16|1994-06-14|1994-08-01|TAKE BACK RETURN|TRUCK| fluffily quick packages haggle alon| +75113|176379|1386|1|47|68402.39|0.05|0.05|A|F|1993-06-28|1993-08-11|1993-07-11|DELIVER IN PERSON|AIR|ly slyly reg| +75113|391584|29106|2|18|30160.26|0.03|0.08|R|F|1993-08-25|1993-08-05|1993-09-12|NONE|AIR|le blithely final courts-- slyly eve| +75114|452444|39972|1|5|6982.10|0.06|0.01|N|O|1997-08-03|1997-07-18|1997-08-26|NONE|RAIL|he even, ironic de| +75114|221987|46996|2|32|61087.04|0.06|0.07|N|O|1997-05-30|1997-07-13|1997-06-09|TAKE BACK RETURN|SHIP|deas sleep blithely platelets. furio| +75114|925591|628|3|16|25864.80|0.02|0.07|N|O|1997-05-30|1997-06-04|1997-06-16|COLLECT COD|MAIL|l, unusual requests above the furiousl| +75114|395796|45797|4|24|45402.72|0.07|0.06|N|O|1997-05-06|1997-07-06|1997-05-10|TAKE BACK RETURN|MAIL|its sleep c| +75114|141224|16229|5|30|37956.60|0.09|0.05|N|O|1997-07-18|1997-07-14|1997-08-10|COLLECT COD|MAIL|hroughout the finally speci| +75114|539766|39767|6|2|3611.48|0.07|0.03|N|O|1997-05-26|1997-05-25|1997-06-18|NONE|AIR|nly ironic pinto beans wake alw| +75114|843169|18202|7|12|13345.44|0.10|0.01|N|O|1997-07-14|1997-06-13|1997-07-15|NONE|TRUCK|al packages. blit| +75115|140287|15292|1|3|3981.84|0.03|0.01|A|F|1995-04-04|1995-05-25|1995-05-01|COLLECT COD|REG AIR|, final requests print blith| +75115|788095|38096|2|31|36674.86|0.03|0.07|N|F|1995-06-10|1995-05-25|1995-06-24|NONE|RAIL|mpress fluffily. brave, even | +75116|804508|42057|1|19|26836.74|0.05|0.05|A|F|1993-11-23|1993-11-05|1993-12-04|TAKE BACK RETURN|SHIP|e quickly silent deposits wake alo| +75116|349608|12115|2|24|39782.16|0.07|0.03|A|F|1993-10-28|1993-10-06|1993-11-01|TAKE BACK RETURN|MAIL|ously pending packages| +75116|855749|5750|3|45|76711.50|0.05|0.08|A|F|1993-11-15|1993-10-19|1993-12-05|DELIVER IN PERSON|REG AIR|beans along the furiously| +75116|559728|22240|4|43|76871.10|0.00|0.01|R|F|1993-10-01|1993-11-09|1993-10-13|COLLECT COD|REG AIR|nding instructions are flu| +75116|344867|32386|5|17|32501.45|0.08|0.03|A|F|1993-10-04|1993-10-06|1993-10-22|NONE|SHIP|ns. bold requests are accounts. silent,| +75116|169253|19254|6|49|64790.25|0.03|0.08|R|F|1993-09-21|1993-10-28|1993-10-20|DELIVER IN PERSON|TRUCK| dependencies are perman| +75117|97763|47764|1|5|8803.80|0.02|0.01|N|O|1997-07-24|1997-06-17|1997-07-28|DELIVER IN PERSON|TRUCK|g quickly carefully regular accounts. th| +75117|90636|3138|2|45|73198.35|0.03|0.05|N|O|1997-06-11|1997-05-07|1997-07-06|NONE|AIR|p regular, | +75117|307749|45268|3|12|21080.76|0.00|0.02|N|O|1997-07-06|1997-05-04|1997-07-14|DELIVER IN PERSON|REG AIR|among the slowly special| +75117|330244|5257|4|23|29307.29|0.06|0.01|N|O|1997-05-06|1997-05-14|1997-05-15|TAKE BACK RETURN|AIR| ideas kindle caref| +75117|405442|30459|5|34|45812.28|0.03|0.08|N|O|1997-04-04|1997-06-07|1997-04-20|COLLECT COD|SHIP|ackages. fluffy account| +75117|248998|36511|6|21|40886.58|0.02|0.01|N|O|1997-06-29|1997-05-17|1997-07-19|DELIVER IN PERSON|REG AIR|special account| +75117|902483|27520|7|34|50504.96|0.01|0.00|N|O|1997-07-03|1997-05-29|1997-07-16|NONE|RAIL|inal frays. dolph| +75118|16323|16324|1|47|58248.04|0.03|0.03|A|F|1992-09-09|1992-10-01|1992-09-24|DELIVER IN PERSON|RAIL|regular, slow| +75119|39540|14541|1|11|16274.94|0.10|0.03|A|F|1994-05-13|1994-04-23|1994-05-19|TAKE BACK RETURN|TRUCK| across the deposi| +75119|539605|14626|2|6|9867.48|0.02|0.05|R|F|1994-06-29|1994-04-07|1994-07-23|DELIVER IN PERSON|RAIL|lites. regular, ironic sheaves of the ex| +75119|130245|17752|3|9|11477.16|0.07|0.05|A|F|1994-04-24|1994-06-03|1994-05-07|COLLECT COD|AIR|ending foxes haggle furious| +75119|12942|443|4|9|16694.46|0.03|0.06|A|F|1994-06-02|1994-05-20|1994-06-19|TAKE BACK RETURN|FOB|ully according to the blithely ironi| +75144|934540|9577|1|11|17319.50|0.02|0.07|A|F|1993-03-31|1993-04-01|1993-04-14|TAKE BACK RETURN|FOB|ickly ironic packa| +75144|813511|1060|2|47|66950.09|0.02|0.04|A|F|1993-03-18|1993-03-15|1993-03-29|NONE|REG AIR|after the even, even excuses use blithe| +75144|666698|29212|3|28|46610.48|0.09|0.04|R|F|1993-02-20|1993-03-29|1993-03-15|DELIVER IN PERSON|SHIP| foxes boost quick| +75144|177685|40189|4|14|24677.52|0.05|0.04|R|F|1993-03-14|1993-02-14|1993-03-22|COLLECT COD|SHIP|! slyly express pinto beans | +75144|338852|38853|5|44|83196.96|0.05|0.03|A|F|1993-02-24|1993-02-25|1993-03-08|DELIVER IN PERSON|SHIP|ironic requests. fluffily even exc| +75144|79110|4113|6|23|25049.53|0.04|0.00|R|F|1993-04-25|1993-03-23|1993-05-16|NONE|AIR|eans. even packages use carefully bol| +75145|348256|10763|1|15|19563.60|0.01|0.01|A|F|1993-11-10|1993-09-15|1993-12-10|DELIVER IN PERSON|TRUCK|kly dolphins. furiously bol| +75145|127432|2437|2|31|45242.33|0.08|0.05|A|F|1993-08-01|1993-10-06|1993-08-14|NONE|RAIL|s. blithely final packages need to use| +75145|746853|21882|3|3|5699.46|0.10|0.01|R|F|1993-09-04|1993-09-23|1993-09-25|COLLECT COD|REG AIR|en ideas a| +75146|279070|4081|1|19|19932.14|0.04|0.02|A|F|1992-07-12|1992-09-07|1992-07-27|NONE|MAIL|usly pending deposits. ideas ca| +75146|328298|3311|2|31|41114.68|0.02|0.05|A|F|1992-09-11|1992-08-13|1992-10-08|NONE|REG AIR|cording to the theodolites integrate| +75146|696243|8757|3|14|17348.94|0.09|0.00|R|F|1992-07-17|1992-08-23|1992-08-01|NONE|AIR|y bold requests nag carefu| +75146|741820|41821|4|18|33512.22|0.09|0.00|R|F|1992-07-01|1992-07-31|1992-07-23|TAKE BACK RETURN|REG AIR| realms sleep slyly platelets. sp| +75147|535973|10994|1|23|46205.85|0.05|0.05|N|O|1997-12-22|1998-02-16|1998-01-07|TAKE BACK RETURN|SHIP|special instructions. carefully regular| +75147|86004|11007|2|31|30690.00|0.04|0.01|N|O|1997-12-12|1998-01-18|1998-01-05|NONE|REG AIR| silent deposits a| +75147|468379|30889|3|15|20210.25|0.03|0.00|N|O|1998-03-18|1998-02-11|1998-04-02|TAKE BACK RETURN|TRUCK|ic, ironic instruct| +75147|33072|33073|4|33|33167.31|0.08|0.07|N|O|1998-03-06|1998-02-17|1998-03-23|NONE|AIR|blithely express deposits integrate blit| +75147|837245|37246|5|48|56745.60|0.06|0.00|N|O|1998-03-25|1998-01-07|1998-04-10|COLLECT COD|FOB|ckages among the slyly | +75147|563966|1500|6|10|20299.40|0.08|0.00|N|O|1998-02-20|1998-02-22|1998-03-16|TAKE BACK RETURN|AIR| foxes cajole| +75147|569672|44695|7|35|60957.75|0.07|0.06|N|O|1998-02-18|1998-02-04|1998-03-03|NONE|TRUCK|blithely special somas. blithely ev| +75148|463247|775|1|4|4840.88|0.05|0.08|R|F|1994-07-28|1994-06-24|1994-08-20|TAKE BACK RETURN|RAIL|e furiously special theodolites. regular, r| +75148|786233|11264|2|32|42214.40|0.10|0.02|R|F|1994-06-25|1994-06-11|1994-07-08|DELIVER IN PERSON|FOB|le quickly exc| +75148|202698|15203|3|20|32013.60|0.00|0.08|A|F|1994-06-07|1994-06-23|1994-07-07|COLLECT COD|MAIL| blithely bold ideas; bold packa| +75148|734007|34008|4|17|17696.49|0.09|0.04|A|F|1994-05-02|1994-06-14|1994-05-03|DELIVER IN PERSON|FOB|s-- blithely unusual ideas boost b| +75148|439071|14088|5|10|10100.50|0.04|0.01|A|F|1994-04-28|1994-05-27|1994-05-01|COLLECT COD|FOB|cajole above the furiously bo| +75148|458413|20923|6|48|65826.72|0.06|0.08|A|F|1994-05-29|1994-07-21|1994-06-07|COLLECT COD|SHIP|sts sleep. pinto beans sleep slyly| +75149|26586|26587|1|12|18150.96|0.00|0.05|A|F|1992-06-16|1992-08-15|1992-07-09|DELIVER IN PERSON|RAIL|y. carefully pending pac| +75149|830447|42964|2|30|41322.00|0.02|0.00|A|F|1992-08-28|1992-08-20|1992-09-20|TAKE BACK RETURN|TRUCK|nag slyly above the f| +75149|309267|21774|3|23|29353.75|0.00|0.03|R|F|1992-06-26|1992-08-27|1992-07-26|TAKE BACK RETURN|REG AIR|thely even accounts. furiousl| +75149|834973|47490|4|32|61053.76|0.04|0.05|A|F|1992-07-18|1992-08-05|1992-08-15|DELIVER IN PERSON|TRUCK|olites wake slowly| +75149|380198|17720|5|26|33232.68|0.07|0.05|R|F|1992-07-12|1992-08-03|1992-07-20|COLLECT COD|RAIL|lithely even packages wa| +75150|544946|7457|1|19|37827.48|0.06|0.05|A|F|1993-05-04|1993-05-29|1993-05-05|TAKE BACK RETURN|MAIL|y ironic accounts. slyly pending idea| +75150|906010|43565|2|24|24383.28|0.00|0.02|R|F|1993-03-31|1993-05-20|1993-04-24|TAKE BACK RETURN|TRUCK|requests. fi| +75150|299239|36755|3|2|2476.44|0.03|0.07|A|F|1993-03-17|1993-04-17|1993-03-24|COLLECT COD|SHIP|ce of the | +75150|295762|33278|4|44|77341.00|0.00|0.08|R|F|1993-03-26|1993-05-16|1993-04-11|TAKE BACK RETURN|TRUCK|cording to the even, silent dep| +75151|501162|38693|1|45|52341.30|0.06|0.00|A|F|1995-04-02|1995-06-12|1995-04-29|COLLECT COD|FOB|slyly special asymptotes wake furiously. ca| +75151|28823|3824|2|32|56058.24|0.03|0.05|R|F|1995-04-20|1995-05-12|1995-05-14|NONE|RAIL|ly final decoys? furiously dogge| +75151|415474|2999|3|43|59746.35|0.07|0.02|R|F|1995-05-17|1995-05-13|1995-06-05|NONE|SHIP|ccounts past the blithely pending | +75151|858458|8459|4|29|41075.89|0.02|0.05|R|F|1995-03-24|1995-04-18|1995-04-11|COLLECT COD|MAIL|ly slow theodolites wake blithely al| +75176|525534|25535|1|37|57701.87|0.04|0.04|N|O|1998-01-15|1998-01-19|1998-02-14|DELIVER IN PERSON|TRUCK|ests. platelets poa| +75177|387229|24751|1|50|65810.50|0.04|0.01|N|O|1997-12-07|1998-01-18|1997-12-26|DELIVER IN PERSON|SHIP|lly furious| +75177|152731|27738|2|4|7134.92|0.04|0.06|N|O|1998-03-03|1998-02-03|1998-03-16|DELIVER IN PERSON|SHIP|. deposits afte| +75178|343883|18896|1|39|75147.93|0.06|0.02|N|O|1997-05-31|1997-04-22|1997-06-28|NONE|AIR|ely regular packages s| +75178|634859|47372|2|34|60989.88|0.08|0.07|N|O|1997-06-12|1997-05-13|1997-06-13|COLLECT COD|MAIL|ronic depos| +75178|63367|38370|3|36|47892.96|0.05|0.04|N|O|1997-06-15|1997-03-23|1997-07-11|TAKE BACK RETURN|REG AIR| quickly carefully ironic epit| +75178|2617|27618|4|39|59264.79|0.01|0.04|N|O|1997-03-29|1997-03-22|1997-04-25|TAKE BACK RETURN|SHIP|y pending ideas. carefully| +75178|972127|22128|5|36|43166.88|0.07|0.01|N|O|1997-05-05|1997-05-14|1997-06-01|DELIVER IN PERSON|RAIL|nts haggle slyly bold forges. re| +75179|502907|27928|1|20|38197.60|0.10|0.00|N|O|1995-09-24|1995-11-25|1995-10-18|TAKE BACK RETURN|AIR|inal instructions are d| +75179|347177|9684|2|42|51414.72|0.09|0.05|N|O|1995-09-15|1995-10-14|1995-09-18|DELIVER IN PERSON|SHIP|packages nag after the unusual, eve| +75180|315290|27797|1|26|33937.28|0.04|0.08|N|F|1995-05-20|1995-06-21|1995-06-18|TAKE BACK RETURN|SHIP| carefully ironic depths. ca| +75180|70977|45980|2|24|46751.28|0.00|0.01|N|F|1995-06-14|1995-06-08|1995-06-24|COLLECT COD|REG AIR| quickly unusual requests. as| +75180|896588|34140|3|35|55458.90|0.08|0.06|N|O|1995-08-18|1995-07-16|1995-09-02|TAKE BACK RETURN|REG AIR| silent asymptotes. slyly ironic | +75180|950970|13490|4|32|64669.76|0.10|0.07|N|O|1995-07-28|1995-07-13|1995-07-29|DELIVER IN PERSON|TRUCK|ole. even instructions across the carefu| +75180|951109|13629|5|18|20881.08|0.00|0.05|N|O|1995-08-13|1995-06-24|1995-09-06|TAKE BACK RETURN|RAIL|requests affix fluffily alongside of the| +75181|935904|23459|1|29|56255.94|0.01|0.02|N|O|1997-04-14|1997-03-11|1997-05-04|COLLECT COD|FOB|es. express packa| +75181|730310|5339|2|50|67014.00|0.02|0.02|N|O|1997-02-08|1997-04-02|1997-02-18|TAKE BACK RETURN|TRUCK|ly final pinto beans haggle accor| +75181|304125|41644|3|45|50809.95|0.06|0.04|N|O|1997-02-12|1997-03-14|1997-03-02|NONE|SHIP|ve the regular| +75181|413081|25590|4|22|21869.32|0.05|0.01|N|O|1997-02-06|1997-02-26|1997-03-01|TAKE BACK RETURN|AIR| bold pinto beans haggle across the ac| +75181|639944|2457|5|16|30142.56|0.00|0.07|N|O|1997-04-15|1997-04-04|1997-05-05|NONE|AIR|ages affix slyly even foxes. carefully unus| +75182|135314|22821|1|27|36431.37|0.10|0.08|R|F|1993-06-28|1993-04-23|1993-07-04|TAKE BACK RETURN|FOB|ely. enticingly unusual requests boo| +75183|673656|23657|1|33|53777.46|0.02|0.06|R|F|1993-06-06|1993-06-27|1993-06-07|COLLECT COD|REG AIR|ncies nag quickly after | +75183|121877|46882|2|43|81651.41|0.03|0.01|A|F|1993-06-12|1993-05-11|1993-06-14|NONE|REG AIR|ove the theodolites are blithely du| +75183|376757|1772|3|44|80684.56|0.00|0.00|R|F|1993-05-23|1993-06-30|1993-06-05|COLLECT COD|REG AIR|nstructions about the carefully iro| +75183|153104|3105|4|12|13885.20|0.10|0.01|A|F|1993-07-06|1993-05-29|1993-07-14|DELIVER IN PERSON|AIR|lar, ironic packages afte| +75183|213675|26180|5|5|7943.30|0.05|0.03|R|F|1993-07-19|1993-06-13|1993-07-28|TAKE BACK RETURN|AIR|earls. regular requests cajole e| +75208|927053|39572|1|33|35640.33|0.10|0.05|R|F|1994-12-11|1995-02-06|1994-12-23|COLLECT COD|AIR|es use against the furi| +75208|977248|27249|2|17|22528.40|0.06|0.06|R|F|1994-12-06|1995-01-09|1995-01-03|COLLECT COD|TRUCK|ronic accounts engage fi| +75208|603113|28138|3|7|7112.56|0.02|0.08|R|F|1995-03-25|1995-02-10|1995-04-03|TAKE BACK RETURN|FOB| deposits might affix | +75208|515983|41004|4|5|9994.80|0.03|0.02|A|F|1995-02-16|1995-02-10|1995-03-01|NONE|SHIP|: dependencies among t| +75208|110021|47528|5|9|9279.18|0.01|0.02|R|F|1994-11-27|1995-02-13|1994-12-01|NONE|TRUCK|ounts. pending packages are carefully aro| +75208|117913|5420|6|20|38618.20|0.09|0.05|A|F|1995-01-03|1994-12-31|1995-01-05|TAKE BACK RETURN|RAIL|es above the regular ideas detect fl| +75208|748473|48474|7|34|51728.96|0.07|0.06|R|F|1995-03-16|1995-02-01|1995-04-15|NONE|REG AIR| carefully u| +75209|580540|43052|1|38|61579.76|0.09|0.01|R|F|1993-01-31|1993-04-20|1993-02-01|COLLECT COD|SHIP|y carefully special pinto beans. slyly pen| +75210|669099|44126|1|47|50198.82|0.10|0.07|A|F|1994-08-05|1994-08-01|1994-09-02|COLLECT COD|MAIL|around the carefully even r| +75210|536158|48669|2|25|29853.25|0.10|0.05|R|F|1994-08-06|1994-07-20|1994-09-02|NONE|TRUCK|furious packages| +75210|197104|9608|3|5|6005.50|0.04|0.07|A|F|1994-10-05|1994-08-31|1994-10-11|COLLECT COD|SHIP| the unusual excuse| +75210|712232|37261|4|34|42302.80|0.04|0.02|R|F|1994-09-12|1994-07-23|1994-09-23|DELIVER IN PERSON|AIR|e finally slyly regular packa| +75210|482725|7744|5|39|66600.30|0.10|0.05|R|F|1994-08-14|1994-08-28|1994-08-17|TAKE BACK RETURN|TRUCK|uickly. slyly regul| +75210|144436|31943|6|37|54775.91|0.07|0.04|R|F|1994-10-11|1994-08-08|1994-11-10|NONE|SHIP| requests serve against the fi| +75211|130625|5630|1|49|81125.38|0.09|0.06|N|O|1998-10-07|1998-07-30|1998-10-26|TAKE BACK RETURN|RAIL|furiously final instructions. slyly bol| +75211|403862|16371|2|20|35316.80|0.02|0.05|N|O|1998-08-26|1998-07-31|1998-09-20|TAKE BACK RETURN|REG AIR|ly across the th| +75211|694158|31698|3|49|56453.88|0.09|0.07|N|O|1998-07-21|1998-07-15|1998-08-11|TAKE BACK RETURN|FOB|equests above the theodolites | +75212|735763|23306|1|17|30578.41|0.07|0.02|R|F|1992-04-22|1992-05-22|1992-04-30|DELIVER IN PERSON|SHIP|old, even hoc| +75213|917445|5000|1|42|61420.80|0.09|0.03|N|O|1998-05-21|1998-06-08|1998-06-19|NONE|MAIL|arefully enticing pinto beans nod silen| +75213|482083|7102|2|27|28756.62|0.07|0.00|N|O|1998-08-10|1998-07-12|1998-08-18|DELIVER IN PERSON|TRUCK|ly unusual accounts impress qui| +75213|360764|23272|3|27|49268.25|0.09|0.06|N|O|1998-06-21|1998-07-14|1998-07-16|COLLECT COD|FOB|aggle furiously carefu| +75213|349424|11931|4|3|4420.23|0.07|0.05|N|O|1998-07-15|1998-07-22|1998-07-30|TAKE BACK RETURN|TRUCK|the bold escapades cajole fluffily slyly ex| +75213|758964|21480|5|17|34389.81|0.08|0.05|N|O|1998-05-05|1998-07-13|1998-05-19|COLLECT COD|TRUCK|usly pending acco| +75213|898489|23524|6|7|10412.08|0.07|0.04|N|O|1998-07-05|1998-06-26|1998-07-28|COLLECT COD|AIR|l packages are ironic acco| +75213|897349|34901|7|23|30964.90|0.06|0.00|N|O|1998-08-14|1998-06-03|1998-09-08|TAKE BACK RETURN|AIR|ckly evenly quic| +75214|733153|20696|1|27|32025.24|0.07|0.06|N|O|1997-05-17|1997-06-16|1997-06-06|NONE|TRUCK| ironic packages sleep carefully ir| +75214|97461|47462|2|25|36461.50|0.10|0.05|N|O|1997-07-09|1997-07-12|1997-07-25|DELIVER IN PERSON|FOB|sits are slyly pe| +75214|13161|38162|3|18|19334.88|0.02|0.02|N|O|1997-08-29|1997-08-06|1997-09-10|DELIVER IN PERSON|SHIP|sits. ideas | +75214|194624|19631|4|14|24060.68|0.01|0.00|N|O|1997-08-10|1997-07-14|1997-08-27|DELIVER IN PERSON|RAIL|ully regular packages above the careful| +75214|43390|5891|5|49|65336.11|0.06|0.06|N|O|1997-07-26|1997-06-23|1997-08-20|TAKE BACK RETURN|TRUCK|sly express patte| +75214|252604|15110|6|48|74716.32|0.01|0.01|N|O|1997-08-25|1997-06-21|1997-09-15|NONE|FOB|e slyly bold depos| +75215|845964|45965|1|26|49657.92|0.10|0.08|N|O|1997-11-24|1997-11-29|1997-12-13|COLLECT COD|MAIL| packages haggle furiously against the| +75215|115884|15885|2|16|30398.08|0.06|0.04|N|O|1997-12-17|1998-01-19|1997-12-22|DELIVER IN PERSON|FOB|the blithely express deposits. f| +75215|662381|24895|3|33|44330.55|0.10|0.02|N|O|1997-11-16|1997-12-27|1997-12-15|TAKE BACK RETURN|TRUCK|ly express requests. s| +75215|630294|42807|4|42|51418.92|0.05|0.03|N|O|1998-01-18|1997-12-04|1998-02-16|DELIVER IN PERSON|REG AIR|ounts haggle carefully above | +75215|342502|5009|5|35|54057.15|0.10|0.07|N|O|1997-12-04|1997-12-19|1998-01-01|TAKE BACK RETURN|FOB|ly-- busy platelets nag. regular plat| +75240|836668|49185|1|50|80231.00|0.03|0.02|N|O|1997-01-20|1997-02-27|1997-01-24|NONE|AIR|lites are enticingly furiously fin| +75240|864254|1806|2|47|57255.87|0.03|0.00|N|O|1997-02-27|1997-01-16|1997-03-05|COLLECT COD|FOB| pinto beans. theodolites agai| +75240|501945|39476|3|30|58407.60|0.02|0.06|N|O|1997-02-16|1997-01-29|1997-02-19|NONE|AIR|r, regular| +75241|82386|7389|1|31|42419.78|0.09|0.06|R|F|1992-09-29|1992-09-26|1992-10-17|NONE|SHIP|ate after the pending foxes. furiously ex| +75241|646321|33858|2|3|3801.87|0.03|0.07|A|F|1992-10-29|1992-10-26|1992-11-28|DELIVER IN PERSON|TRUCK| deposits sleep against the s| +75241|714776|27291|3|40|71629.60|0.03|0.05|A|F|1992-10-13|1992-09-11|1992-10-24|TAKE BACK RETURN|FOB|es breach blithely after the sl| +75241|234995|22508|4|48|92639.04|0.10|0.07|R|F|1992-08-22|1992-09-13|1992-09-08|TAKE BACK RETURN|SHIP|ans according to the fluffily pending pack| +75241|545183|32714|5|31|38072.96|0.04|0.06|R|F|1992-11-09|1992-11-03|1992-11-23|DELIVER IN PERSON|AIR|quickly ironic warthogs. pac| +75241|876131|1166|6|38|42069.42|0.01|0.08|R|F|1992-08-21|1992-09-24|1992-09-10|NONE|AIR|tealthily ironic dolphins cajole f| +75241|130719|30720|7|1|1749.71|0.10|0.04|R|F|1992-09-21|1992-10-19|1992-10-12|DELIVER IN PERSON|SHIP|ly bold patterns mold| +75242|985579|48099|1|37|61587.61|0.05|0.02|N|O|1997-08-26|1997-06-17|1997-09-19|COLLECT COD|RAIL|es integrate blithely bold cou| +75242|612680|217|2|4|6370.60|0.03|0.08|N|O|1997-05-24|1997-06-03|1997-06-08|TAKE BACK RETURN|SHIP|blithely final depe| +75242|304685|42204|3|1|1689.67|0.05|0.01|N|O|1997-06-24|1997-07-22|1997-07-13|TAKE BACK RETURN|AIR|s. quietly unusual requests doz| +75242|830848|5881|4|39|69373.20|0.08|0.03|N|O|1997-05-31|1997-07-10|1997-06-27|COLLECT COD|SHIP|ely of the furi| +75242|58853|46357|5|34|61602.90|0.09|0.00|N|O|1997-08-21|1997-06-17|1997-09-19|DELIVER IN PERSON|SHIP|slyly special pinto b| +75242|128072|15579|6|38|41802.66|0.00|0.03|N|O|1997-08-24|1997-07-01|1997-09-12|NONE|FOB|to cajole bli| +75243|197247|47248|1|47|63179.28|0.02|0.07|N|O|1995-08-30|1995-09-07|1995-09-23|COLLECT COD|REG AIR|d the pinto beans sleep furio| +75243|115217|15218|2|14|17250.94|0.07|0.05|N|O|1995-07-13|1995-08-28|1995-07-21|NONE|MAIL|uffy courts above the requests sleep s| +75243|450583|25602|3|43|65943.08|0.10|0.05|N|O|1995-07-24|1995-09-30|1995-07-31|TAKE BACK RETURN|FOB|ding frays haggle across the slyly unusual | +75243|935747|23302|4|6|10696.20|0.08|0.03|N|O|1995-10-12|1995-08-19|1995-10-14|TAKE BACK RETURN|REG AIR|slyly regular req| +75244|131987|31988|1|19|38360.62|0.10|0.02|R|F|1992-09-19|1992-09-03|1992-09-29|DELIVER IN PERSON|MAIL|s. regular accounts detect fluffily. f| +75244|299537|37053|2|36|55314.72|0.07|0.07|A|F|1992-10-08|1992-10-23|1992-10-24|NONE|FOB|warhorses a| +75244|311095|48614|3|50|55304.00|0.08|0.05|A|F|1992-10-22|1992-10-25|1992-11-13|COLLECT COD|REG AIR|c deposits according to the quick| +75244|570095|45118|4|24|27961.68|0.05|0.05|A|F|1992-11-10|1992-10-18|1992-11-28|TAKE BACK RETURN|FOB|carefully specia| +75245|549401|36932|1|3|4351.14|0.06|0.06|N|O|1996-07-18|1996-07-14|1996-07-27|NONE|AIR|nding dependencies nag across | +75245|781659|31660|2|45|78327.90|0.05|0.06|N|O|1996-09-29|1996-07-21|1996-10-26|TAKE BACK RETURN|RAIL|ng the carefully daring de| +75245|340645|28164|3|31|52254.53|0.00|0.08|N|O|1996-08-13|1996-08-27|1996-09-05|DELIVER IN PERSON|RAIL| slyly silent foxes. furi| +75246|1903|39404|1|22|39707.80|0.07|0.06|R|F|1995-02-24|1995-03-26|1995-02-27|NONE|REG AIR|osits. regular, stealthy accounts | +75246|982709|32710|2|10|17916.60|0.04|0.03|A|F|1995-01-26|1995-02-23|1995-02-10|DELIVER IN PERSON|REG AIR|st cajole slyly accor| +75246|380457|5472|3|47|72259.68|0.09|0.03|R|F|1995-04-04|1995-03-18|1995-04-12|DELIVER IN PERSON|FOB|accounts cajole according| +75246|328521|16040|4|2|3099.02|0.06|0.01|A|F|1995-03-04|1995-02-08|1995-03-22|COLLECT COD|REG AIR|al ideas. ideas haggle | +75247|329589|42096|1|12|19422.84|0.03|0.08|N|O|1996-01-02|1995-12-31|1996-01-24|TAKE BACK RETURN|RAIL|s. final deposit| +75247|389154|1662|2|48|59670.72|0.06|0.01|N|O|1995-12-26|1996-01-25|1995-12-29|DELIVER IN PERSON|REG AIR|es above the regular orbits must haggle | +75247|499937|37465|3|15|29053.65|0.02|0.03|N|O|1995-12-01|1995-12-26|1995-12-16|NONE|AIR|ully final accounts. quickly b| +75272|35979|35980|1|33|63194.01|0.00|0.02|R|F|1992-12-23|1993-03-11|1992-12-25|DELIVER IN PERSON|REG AIR|s. dependencies thra| +75272|682382|44896|2|37|50480.95|0.00|0.02|A|F|1993-01-07|1993-03-05|1993-01-21|COLLECT COD|MAIL|ges. foxes cajole. never pending deposits n| +75273|794174|6690|1|20|25362.80|0.06|0.04|A|F|1994-07-29|1994-09-27|1994-08-14|COLLECT COD|FOB|regular packages integrate s| +75273|665788|15789|2|41|71903.75|0.03|0.02|A|F|1994-11-16|1994-09-09|1994-11-25|COLLECT COD|REG AIR|ns maintain slyly furio| +75273|898288|48289|3|48|61739.52|0.07|0.08|R|F|1994-08-27|1994-09-26|1994-09-10|TAKE BACK RETURN|FOB|c requests. dep| +75273|509674|34695|4|47|79131.55|0.06|0.08|R|F|1994-10-13|1994-10-16|1994-11-04|TAKE BACK RETURN|FOB|ously. slyly special requests | +75273|75404|407|5|8|11035.20|0.03|0.08|R|F|1994-08-26|1994-09-25|1994-08-30|DELIVER IN PERSON|TRUCK|out the quickly final pa| +75273|311327|48846|6|39|52194.09|0.07|0.05|R|F|1994-11-19|1994-09-03|1994-11-22|DELIVER IN PERSON|RAIL|lets. carefull| +75273|468958|31468|7|2|3853.86|0.05|0.03|R|F|1994-08-03|1994-10-17|1994-08-26|TAKE BACK RETURN|MAIL|aring packages use accordi| +75274|764842|39873|1|42|80086.02|0.00|0.01|A|F|1994-08-06|1994-06-16|1994-08-15|NONE|MAIL|nwind slyly among th| +75275|175979|38483|1|10|20549.70|0.01|0.02|A|F|1994-08-30|1994-07-18|1994-09-28|NONE|REG AIR|cial account| +75275|668576|31090|2|45|69504.30|0.09|0.05|R|F|1994-08-24|1994-07-08|1994-09-14|COLLECT COD|REG AIR|yly across the bl| +75275|752107|2108|3|9|10431.63|0.09|0.02|A|F|1994-08-20|1994-07-07|1994-09-13|NONE|AIR|ideas against the furiously unusual dolph| +75275|655977|43517|4|2|3865.88|0.05|0.01|R|F|1994-08-03|1994-06-13|1994-08-17|TAKE BACK RETURN|FOB|e carefully pen| +75275|989182|39183|5|43|54659.02|0.09|0.07|A|F|1994-07-28|1994-07-28|1994-08-22|COLLECT COD|SHIP|pending accounts use doggedl| +75275|168758|43765|6|18|32881.50|0.05|0.04|R|F|1994-08-08|1994-06-30|1994-08-30|COLLECT COD|REG AIR|ickly unusual instructions. dolphin| +75275|311251|36264|7|7|8835.68|0.07|0.03|A|F|1994-08-16|1994-06-19|1994-08-18|COLLECT COD|MAIL| slyly spe| +75276|186224|11231|1|44|57649.68|0.01|0.01|N|O|1998-08-09|1998-07-21|1998-08-24|DELIVER IN PERSON|SHIP|. accounts use b| +75276|852903|2904|2|29|53819.94|0.09|0.00|N|O|1998-08-11|1998-07-26|1998-09-10|DELIVER IN PERSON|TRUCK|slyly. slyly ironic dependencies serve sly| +75276|727049|39564|3|35|37660.35|0.05|0.05|N|O|1998-09-14|1998-08-13|1998-10-06|TAKE BACK RETURN|RAIL|lly across the blithely bold | +75276|504325|41856|4|31|41208.30|0.05|0.03|N|O|1998-06-07|1998-07-10|1998-06-20|DELIVER IN PERSON|AIR| packages wake according to the b| +75277|5901|18402|1|11|19875.90|0.01|0.00|A|F|1992-06-20|1992-04-20|1992-06-25|TAKE BACK RETURN|FOB| pending deposits| +75277|174359|24360|2|8|11466.80|0.08|0.03|A|F|1992-04-29|1992-05-31|1992-05-29|COLLECT COD|REG AIR|bt; even accoun| +75277|437624|37625|3|41|64025.60|0.04|0.01|A|F|1992-06-03|1992-05-31|1992-06-11|NONE|SHIP| packages. even, eve| +75278|2729|2730|1|20|32634.40|0.08|0.04|A|F|1995-03-03|1995-04-15|1995-03-31|TAKE BACK RETURN|RAIL|ose furiously furiously special theodolite| +75278|854236|29271|2|33|39276.27|0.05|0.08|A|F|1995-02-09|1995-04-23|1995-03-10|COLLECT COD|AIR|even ideas cajole b| +75278|140002|15007|3|50|52100.00|0.10|0.01|R|F|1995-04-30|1995-04-19|1995-05-10|DELIVER IN PERSON|MAIL| eat. packages nag. unusual packa| +75278|2027|14528|4|38|35302.76|0.00|0.07|A|F|1995-05-08|1995-03-10|1995-05-10|TAKE BACK RETURN|TRUCK|regular accounts cajole up the furiously s| +75278|62582|25084|5|3|4633.74|0.09|0.05|A|F|1995-05-25|1995-03-10|1995-05-28|DELIVER IN PERSON|FOB| quickly. express instructions across th| +75278|810731|10732|6|42|68950.98|0.10|0.08|R|F|1995-02-12|1995-03-14|1995-02-17|TAKE BACK RETURN|REG AIR|ths breach carefully blithely f| +75279|630769|18306|1|2|3399.46|0.00|0.05|N|O|1997-05-12|1997-06-15|1997-05-27|TAKE BACK RETURN|FOB| deposits. quickly ironic platel| +75279|323114|10633|2|43|48895.30|0.04|0.00|N|O|1997-04-19|1997-05-22|1997-04-21|DELIVER IN PERSON|AIR|y ironic pinto beans. carefully sil| +75279|563309|843|3|6|8233.68|0.07|0.04|N|O|1997-05-19|1997-04-19|1997-06-12|COLLECT COD|FOB|quests. slyly special instructio| +75279|530437|42948|4|49|71903.09|0.09|0.04|N|O|1997-06-17|1997-05-26|1997-07-06|NONE|FOB|gular packages tr| +75304|955826|43384|1|43|80916.54|0.01|0.00|N|O|1995-10-31|1995-09-17|1995-11-13|TAKE BACK RETURN|TRUCK|y regular deposits integrate unusual, | +75304|565490|3024|2|30|46664.10|0.09|0.02|N|O|1995-11-29|1995-10-04|1995-12-10|TAKE BACK RETURN|TRUCK|al asymptotes. final dependen| +75304|180440|5447|3|41|62338.04|0.09|0.05|N|O|1995-08-02|1995-09-17|1995-08-30|TAKE BACK RETURN|FOB|special requests sleep quickly. slyly| +75304|643495|6008|4|16|23015.36|0.10|0.08|N|O|1995-08-20|1995-10-16|1995-08-26|COLLECT COD|MAIL|lar ideas detect f| +75304|218819|43828|5|30|52134.00|0.01|0.02|N|O|1995-09-29|1995-09-28|1995-10-13|NONE|SHIP|uickly against the blithe| +75304|676250|38764|6|34|41691.48|0.10|0.03|N|O|1995-08-11|1995-10-02|1995-09-01|TAKE BACK RETURN|REG AIR|requests. unusual packages boost busily a| +75304|725930|13473|7|21|41073.90|0.06|0.02|N|O|1995-10-20|1995-10-05|1995-11-12|NONE|MAIL|en asymptotes ha| +75305|692676|30216|1|43|71751.52|0.04|0.03|A|F|1994-07-08|1994-06-28|1994-07-12|NONE|TRUCK|d requests. slow packages are above the sl| +75305|802131|2132|2|50|51654.50|0.02|0.06|R|F|1994-08-09|1994-06-16|1994-08-19|TAKE BACK RETURN|TRUCK|t the blithely silent platelets; even| +75305|400877|878|3|8|14222.80|0.00|0.05|R|F|1994-08-11|1994-06-01|1994-08-19|DELIVER IN PERSON|AIR|rding to the slyly bold dugouts. asymp| +75305|526858|1879|4|18|33926.94|0.01|0.03|R|F|1994-04-23|1994-06-08|1994-05-15|TAKE BACK RETURN|MAIL|ts wake except the special deposits.| +75305|887644|37645|5|32|52211.20|0.02|0.01|A|F|1994-06-20|1994-05-19|1994-06-27|DELIVER IN PERSON|SHIP|s. quickly un| +75305|619080|31593|6|41|40961.05|0.01|0.05|A|F|1994-08-14|1994-07-06|1994-08-15|DELIVER IN PERSON|FOB|arefully permanent packages. blithely spe| +75306|618891|18892|1|17|30767.62|0.09|0.01|R|F|1993-06-26|1993-06-26|1993-06-30|DELIVER IN PERSON|SHIP|old requests cajole blith| +75307|332955|20474|1|16|31807.04|0.00|0.05|R|F|1994-12-07|1994-12-14|1995-01-05|TAKE BACK RETURN|RAIL|regular request| +75307|965077|27597|2|43|49107.29|0.03|0.06|R|F|1995-01-05|1994-11-09|1995-01-23|DELIVER IN PERSON|FOB|ons. regular theodolites wake| +75307|43578|18579|3|17|25866.69|0.07|0.00|A|F|1995-01-20|1994-11-05|1995-02-18|NONE|AIR|lets. fluffily regular the| +75307|408971|46496|4|24|45118.80|0.03|0.05|R|F|1994-12-13|1994-10-28|1994-12-26|NONE|FOB|al platelets haggl| +75307|570639|20640|5|25|42740.25|0.03|0.02|R|F|1994-12-07|1994-11-26|1994-12-22|TAKE BACK RETURN|AIR|eposits engage closely pending dependenc| +75307|716800|16801|6|14|25434.78|0.09|0.01|A|F|1994-11-03|1994-12-18|1994-11-08|DELIVER IN PERSON|AIR|ests? fluffily pending instructio| +75307|255439|5440|7|39|54382.38|0.01|0.07|R|F|1994-11-18|1994-11-16|1994-11-27|COLLECT COD|SHIP|lyly accounts. blithely | +75308|156462|43972|1|3|4555.38|0.05|0.02|R|F|1992-08-01|1992-08-24|1992-08-28|COLLECT COD|SHIP|lyly. regular, pending request| +75308|651181|38721|2|41|46418.15|0.05|0.08|A|F|1992-08-13|1992-09-01|1992-09-10|DELIVER IN PERSON|FOB|eans. slyly pending pac| +75308|389177|39178|3|49|62041.84|0.02|0.06|A|F|1992-07-22|1992-08-26|1992-08-02|DELIVER IN PERSON|TRUCK|orges; carefully final excu| +75308|889886|39887|4|7|13130.88|0.03|0.03|A|F|1992-08-26|1992-09-03|1992-08-28|DELIVER IN PERSON|REG AIR|ely special pinto beans| +75308|299730|12236|5|28|48432.16|0.01|0.00|R|F|1992-11-07|1992-10-07|1992-11-11|COLLECT COD|FOB|ly dogged foxes haggle. silent theodoli| +75308|546908|21929|6|48|93834.24|0.02|0.03|R|F|1992-07-28|1992-09-27|1992-08-20|TAKE BACK RETURN|RAIL| carefully ironic requ| +75309|605384|17897|1|32|41259.20|0.03|0.03|R|F|1993-10-28|1993-09-24|1993-11-24|COLLECT COD|FOB|press sentiments. | +75309|677437|27438|2|7|9900.80|0.01|0.05|A|F|1993-09-11|1993-09-06|1993-10-03|DELIVER IN PERSON|TRUCK|ing packages| +75310|863310|38345|1|41|52204.07|0.00|0.06|A|F|1993-03-08|1993-02-17|1993-03-18|COLLECT COD|FOB| above the final, | +75310|642544|30081|2|19|28243.69|0.10|0.02|A|F|1992-12-14|1993-02-25|1992-12-22|DELIVER IN PERSON|AIR|blithely final accounts. thinly pe| +75310|221195|21196|3|27|30136.86|0.03|0.07|A|F|1993-01-28|1993-02-22|1993-02-27|TAKE BACK RETURN|AIR|g to the blithely| +75311|153757|3758|1|22|39836.50|0.08|0.05|N|O|1997-02-24|1997-03-25|1997-03-13|TAKE BACK RETURN|FOB|riously blithely regular reques| +75311|179326|41830|2|45|63239.40|0.10|0.01|N|O|1997-02-06|1997-04-10|1997-02-24|COLLECT COD|TRUCK|ges shall sleep furiously fluffily regula| +75311|922429|47466|3|44|63860.72|0.06|0.04|N|O|1997-05-28|1997-04-17|1997-06-27|DELIVER IN PERSON|TRUCK|uests after the final | +75311|252691|2692|4|7|11505.76|0.00|0.07|N|O|1997-04-21|1997-05-04|1997-05-02|COLLECT COD|TRUCK|quickly regular account| +75336|480475|5494|1|46|66950.70|0.02|0.00|N|O|1996-05-19|1996-05-26|1996-06-06|NONE|MAIL|ven reques| +75336|326661|1674|2|29|48941.85|0.03|0.05|N|O|1996-06-27|1996-04-28|1996-07-12|NONE|SHIP|cuses. express, pending ideas wake s| +75336|180873|43377|3|48|93785.76|0.01|0.07|N|O|1996-03-28|1996-05-28|1996-04-24|DELIVER IN PERSON|TRUCK|s deposits. pinto beans sleep along the i| +75336|920062|7617|4|15|16230.30|0.06|0.01|N|O|1996-05-16|1996-05-30|1996-05-29|DELIVER IN PERSON|FOB|the special instructions haggle | +75336|477345|27346|5|12|15867.84|0.07|0.04|N|O|1996-04-27|1996-04-27|1996-04-29|DELIVER IN PERSON|REG AIR| requests haggle express deposits.| +75337|31660|44161|1|41|65258.06|0.06|0.00|N|O|1998-08-26|1998-08-22|1998-09-15|NONE|REG AIR|es? even, regular warhorses| +75337|105619|30624|2|43|69858.23|0.02|0.04|N|O|1998-09-15|1998-09-25|1998-09-28|DELIVER IN PERSON|REG AIR|quests are furiously packages. blithe| +75337|132802|45305|3|41|75226.80|0.03|0.08|N|O|1998-10-14|1998-10-03|1998-10-19|NONE|AIR|fter the ironic ideas a| +75337|997366|47367|4|40|58532.80|0.10|0.07|N|O|1998-09-17|1998-08-22|1998-09-24|NONE|FOB|s the quiet| +75337|720970|20971|5|7|13936.58|0.03|0.08|N|O|1998-10-31|1998-09-18|1998-11-20|DELIVER IN PERSON|MAIL| serve blithely. bravel| +75337|339081|39082|6|4|4480.28|0.05|0.02|N|O|1998-09-04|1998-08-17|1998-10-03|COLLECT COD|TRUCK|usual accounts about the blithely final p| +75337|925567|25568|7|23|36627.96|0.08|0.01|N|O|1998-08-07|1998-08-21|1998-08-29|NONE|SHIP|endencies. blithely bold platelets affix. f| +75338|990821|15860|1|30|57353.40|0.06|0.06|R|F|1994-07-31|1994-09-02|1994-08-29|DELIVER IN PERSON|TRUCK|ges promise e| +75338|718376|30891|2|22|30675.48|0.02|0.01|A|F|1994-09-27|1994-08-08|1994-10-22|NONE|AIR|ronic deposits. furiously even dependencies| +75338|742369|17398|3|40|56453.20|0.08|0.05|R|F|1994-09-06|1994-08-19|1994-10-06|TAKE BACK RETURN|RAIL|s sleep slyly ironic excuses. ironi| +75338|992093|29651|4|10|11850.50|0.03|0.08|A|F|1994-08-04|1994-08-19|1994-08-10|NONE|SHIP|ly fluffy attainments nag c| +75338|99587|24590|5|20|31731.60|0.06|0.08|R|F|1994-08-22|1994-09-06|1994-09-06|TAKE BACK RETURN|MAIL|carefully unusual packages. b| +75339|34244|21745|1|43|50664.32|0.00|0.05|R|F|1993-08-16|1993-08-04|1993-09-12|COLLECT COD|SHIP|y regular sauternes wake never| +75339|535410|47921|2|4|5781.56|0.09|0.04|A|F|1993-06-16|1993-06-29|1993-07-11|TAKE BACK RETURN|TRUCK|ructions. unusual pack| +75340|187423|12430|1|36|54375.12|0.02|0.08|A|F|1993-08-24|1993-09-18|1993-09-14|DELIVER IN PERSON|TRUCK|sits sleep carefully pending accounts. | +75340|8363|20864|2|50|63568.00|0.00|0.05|A|F|1993-10-16|1993-07-31|1993-11-02|TAKE BACK RETURN|REG AIR|sly even asymptotes: blithely | +75340|544374|6885|3|10|14183.50|0.04|0.00|R|F|1993-08-25|1993-09-19|1993-09-07|TAKE BACK RETURN|RAIL|y special requests. carefull| +75340|291918|41919|4|6|11459.40|0.03|0.03|A|F|1993-08-29|1993-08-09|1993-09-11|TAKE BACK RETURN|AIR|sits. slyly special re| +75341|276243|26244|1|10|12192.30|0.05|0.08|N|O|1997-09-10|1997-10-07|1997-09-30|COLLECT COD|RAIL|lithely regular de| +75341|809057|21574|2|16|15456.16|0.09|0.07|N|O|1997-10-25|1997-10-05|1997-11-01|DELIVER IN PERSON|REG AIR|riously regular excuses against the car| +75341|812578|25095|3|18|26829.54|0.00|0.05|N|O|1997-10-20|1997-10-04|1997-11-16|COLLECT COD|FOB|uickly across the silent packages. unusu| +75341|996733|9253|4|41|75017.29|0.10|0.02|N|O|1997-08-11|1997-09-17|1997-09-01|DELIVER IN PERSON|RAIL|carefully expres| +75342|492417|4927|1|14|19731.46|0.00|0.02|A|F|1993-12-07|1993-11-13|1993-12-09|COLLECT COD|RAIL|yly regular request| +75343|532911|45422|1|36|69980.04|0.10|0.00|N|O|1996-08-17|1996-08-13|1996-08-24|DELIVER IN PERSON|RAIL|t the fluffily regular packages. iron| +75343|632119|7144|2|29|30481.32|0.02|0.03|N|O|1996-09-17|1996-08-08|1996-09-28|NONE|MAIL|. final excuses cajole abou| +75343|14028|1529|3|23|21666.46|0.08|0.06|N|O|1996-06-27|1996-08-18|1996-07-15|TAKE BACK RETURN|REG AIR|ual accounts wake blithe| +75343|757095|32126|4|1|1152.06|0.10|0.07|N|O|1996-10-15|1996-09-04|1996-11-11|TAKE BACK RETURN|RAIL|s. carefully final accounts c| +75343|485024|35025|5|47|47423.00|0.09|0.04|N|O|1996-10-15|1996-09-10|1996-10-31|NONE|REG AIR|bove the final deposits are blithely alon| +75368|115247|2754|1|15|18933.60|0.04|0.03|A|F|1993-11-23|1993-09-17|1993-12-09|NONE|AIR|thely special packages; slyly pending | +75368|941171|28726|2|12|14545.56|0.08|0.04|A|F|1993-10-05|1993-09-25|1993-11-03|COLLECT COD|AIR|wake blithely after the final, pe| +75369|244260|6765|1|28|33719.00|0.02|0.08|A|F|1993-09-22|1993-07-20|1993-10-21|DELIVER IN PERSON|FOB|ironic frays across the carefully un| +75369|267007|29513|2|2|1947.98|0.08|0.01|A|F|1993-08-16|1993-07-06|1993-09-05|TAKE BACK RETURN|SHIP|ost slyly even,| +75369|585999|23533|3|32|66719.04|0.08|0.03|A|F|1993-07-16|1993-07-23|1993-08-04|DELIVER IN PERSON|REG AIR| requests boost blithely. qu| +75369|874411|36929|4|25|34634.25|0.08|0.02|A|F|1993-08-26|1993-07-12|1993-09-16|DELIVER IN PERSON|REG AIR|bout the blithely ironic excuses. | +75369|224619|49628|5|48|74092.80|0.10|0.01|R|F|1993-08-02|1993-08-24|1993-08-16|NONE|TRUCK|s haggle: slyly even acco| +75370|899836|24871|1|10|18357.90|0.08|0.07|N|O|1997-05-27|1997-06-30|1997-06-12|COLLECT COD|TRUCK|ounts haggle s| +75370|529776|29777|2|26|46949.50|0.06|0.01|N|O|1997-07-26|1997-06-25|1997-07-27|DELIVER IN PERSON|RAIL|y carefully ironic platelets. carefully| +75370|945048|20085|3|14|15302.00|0.09|0.01|N|O|1997-08-04|1997-07-09|1997-08-15|TAKE BACK RETURN|RAIL|e. slyly regular a| +75370|413475|38492|4|30|41653.50|0.02|0.05|N|O|1997-04-27|1997-06-27|1997-05-01|DELIVER IN PERSON|FOB|al deposit| +75370|261710|36721|5|21|35105.70|0.05|0.01|N|O|1997-05-14|1997-06-27|1997-05-20|TAKE BACK RETURN|TRUCK|ly idle requests wake slyly against th| +75370|548816|23837|6|5|9323.95|0.01|0.01|N|O|1997-05-03|1997-06-29|1997-05-23|TAKE BACK RETURN|FOB|ounts sleep sometimes. silent, even requ| +75371|673532|36046|1|33|49681.50|0.00|0.06|N|O|1995-11-17|1995-11-20|1995-12-01|DELIVER IN PERSON|AIR| braids cajole quickly bold, even r| +75371|41158|28659|2|28|30776.20|0.02|0.06|N|O|1996-01-22|1995-11-21|1996-02-10|COLLECT COD|AIR|es kindle carefully a| +75371|740402|40403|3|15|21635.55|0.01|0.08|N|O|1996-01-14|1995-11-10|1996-01-30|COLLECT COD|RAIL|ggle blithely about the furiously pe| +75371|922145|47182|4|8|9336.80|0.00|0.04|N|O|1995-11-14|1995-11-14|1995-11-21|DELIVER IN PERSON|FOB|unwind regular, ironic a| +75371|489602|2112|5|38|60480.04|0.04|0.05|N|O|1995-12-21|1995-11-16|1995-12-30|NONE|FOB| special requests wake furiously accor| +75372|645387|32924|1|47|62620.45|0.07|0.04|R|F|1993-09-19|1993-09-28|1993-09-28|DELIVER IN PERSON|FOB|ptotes. packag| +75372|3622|28623|2|6|9153.72|0.00|0.01|R|F|1993-07-25|1993-08-26|1993-08-03|COLLECT COD|REG AIR| carefully slyly final deposits. | +75372|860658|35693|3|11|17804.71|0.10|0.06|A|F|1993-11-07|1993-08-28|1993-12-04|NONE|TRUCK|ular accounts. furiously pending orb| +75372|62668|25170|4|10|16306.60|0.03|0.02|A|F|1993-10-25|1993-09-09|1993-11-08|DELIVER IN PERSON|SHIP|nic requests. special, final epitaphs mi| +75372|247700|10205|5|2|3295.38|0.04|0.01|R|F|1993-10-13|1993-08-30|1993-11-02|NONE|SHIP|cuses cajole carefu| +75373|239236|39237|1|5|5876.10|0.03|0.04|A|F|1994-11-27|1994-11-10|1994-12-20|COLLECT COD|REG AIR|le against the f| +75373|824702|12251|2|2|3253.32|0.04|0.07|A|F|1994-10-05|1994-10-13|1994-10-28|NONE|TRUCK|ular, final ideas. blithely unusual excu| +75374|847930|35479|1|2|3755.78|0.03|0.03|N|O|1995-12-30|1996-02-18|1996-01-07|DELIVER IN PERSON|REG AIR| pinto beans cajole quickly pending| +75374|142850|30357|2|33|62464.05|0.05|0.01|N|O|1996-03-26|1996-01-20|1996-04-22|DELIVER IN PERSON|REG AIR|ss requests mo| +75375|235308|10317|1|25|31082.25|0.08|0.08|R|F|1993-01-18|1993-01-15|1993-02-12|TAKE BACK RETURN|TRUCK| regular, unusual instructions. blithely s| +75375|814849|39882|2|23|40567.40|0.10|0.06|A|F|1992-11-25|1992-12-27|1992-12-15|TAKE BACK RETURN|MAIL|ely about the blithely enticing reque| +75375|162719|25223|3|34|60578.14|0.00|0.01|R|F|1993-01-18|1993-01-30|1993-02-07|DELIVER IN PERSON|RAIL| furiously bold accounts about the care| +75400|5927|43428|1|2|3665.84|0.06|0.03|R|F|1994-03-03|1993-12-24|1994-03-31|COLLECT COD|SHIP|structions. fluffily regular dolp| +75400|607744|7745|2|21|34685.91|0.06|0.00|A|F|1994-03-01|1994-01-07|1994-03-04|COLLECT COD|REG AIR|cross the slyly bold dependencies. in| +75400|342643|5150|3|44|74167.72|0.05|0.07|A|F|1994-03-14|1993-12-25|1994-04-03|NONE|MAIL| final accounts boost furiously ironic | +75401|98352|10854|1|28|37809.80|0.02|0.02|N|O|1995-09-10|1995-09-02|1995-09-30|DELIVER IN PERSON|MAIL|l packages wake. even ideas run| +75402|61389|23891|1|2|2700.76|0.01|0.06|R|F|1992-02-29|1992-05-11|1992-03-28|COLLECT COD|FOB|lyly final accounts. carefully eve| +75402|761154|36185|2|43|52250.16|0.04|0.02|A|F|1992-04-09|1992-05-03|1992-05-05|DELIVER IN PERSON|RAIL|ke furiously according to the pending re| +75402|711515|49058|3|28|42741.44|0.03|0.02|R|F|1992-02-26|1992-05-11|1992-02-29|NONE|REG AIR|odolites h| +75402|427580|15105|4|15|22613.40|0.03|0.00|R|F|1992-05-02|1992-05-07|1992-05-05|COLLECT COD|SHIP|d gifts cajole furiously according to | +75403|241662|4167|1|30|48109.50|0.02|0.01|A|F|1994-08-23|1994-08-22|1994-09-18|TAKE BACK RETURN|AIR|rmanently. regular, even asy| +75403|604437|4438|2|22|29510.80|0.06|0.01|A|F|1994-07-14|1994-09-14|1994-08-04|COLLECT COD|MAIL|ove the fluffily even | +75404|455214|17724|1|19|22214.61|0.07|0.04|A|F|1995-03-13|1995-03-26|1995-04-10|TAKE BACK RETURN|MAIL|he even instructions. even packages | +75404|766516|41547|2|24|37979.52|0.03|0.07|R|F|1995-03-27|1995-03-19|1995-04-12|DELIVER IN PERSON|AIR|l platelets nag against the slyly regular| +75404|830044|30045|3|47|45778.00|0.04|0.03|A|F|1995-04-21|1995-04-30|1995-05-15|DELIVER IN PERSON|RAIL|lites slee| +75404|542846|17867|4|35|66108.70|0.05|0.04|A|F|1995-05-08|1995-04-23|1995-05-31|COLLECT COD|REG AIR|packages nag furiously among t| +75404|604091|4092|5|40|39802.40|0.02|0.04|R|F|1995-05-13|1995-03-23|1995-05-22|TAKE BACK RETURN|FOB|ully ironic r| +75404|953604|3605|6|43|71275.08|0.10|0.03|A|F|1995-02-23|1995-05-12|1995-03-21|COLLECT COD|SHIP|es are above t| +75405|153250|15754|1|19|24761.75|0.03|0.07|R|F|1993-08-10|1993-09-12|1993-09-08|TAKE BACK RETURN|REG AIR| quickly along| +75405|658100|20614|2|31|32800.17|0.04|0.03|R|F|1993-08-21|1993-10-19|1993-09-08|DELIVER IN PERSON|TRUCK|sts mold furiously express asymptotes. sil| +75405|683303|45817|3|12|15435.24|0.01|0.03|R|F|1993-09-05|1993-10-13|1993-09-08|DELIVER IN PERSON|MAIL|r decoys. instructions c| +75405|267570|30076|4|5|7687.80|0.05|0.08|A|F|1993-09-25|1993-09-07|1993-10-20|COLLECT COD|AIR|the special pinto beans sle| +75405|40057|40058|5|24|23929.20|0.05|0.00|A|F|1993-08-14|1993-09-21|1993-09-07|COLLECT COD|SHIP|theodolites wake after the ironic deposi| +75406|55054|17556|1|28|28253.40|0.09|0.01|A|F|1992-12-04|1992-12-21|1992-12-21|COLLECT COD|MAIL|f the special instructi| +75406|284770|9781|2|25|43869.00|0.03|0.06|R|F|1993-01-08|1992-11-01|1993-02-05|COLLECT COD|TRUCK|ns? slyly special foxes a| +75406|122940|35443|3|6|11777.64|0.05|0.08|A|F|1993-01-03|1992-11-23|1993-01-09|TAKE BACK RETURN|TRUCK|n packages nag stealthily after the ironic | +75407|470872|33382|1|6|11057.10|0.10|0.03|R|F|1992-02-12|1992-03-20|1992-03-02|COLLECT COD|MAIL|ess ideas. r| +75407|932769|7806|2|33|59456.76|0.00|0.02|A|F|1992-02-28|1992-02-21|1992-03-02|COLLECT COD|SHIP|blithely bold t| +75407|37502|37503|3|10|14395.00|0.00|0.04|A|F|1992-04-03|1992-03-01|1992-04-09|DELIVER IN PERSON|AIR|xpress excuse| +75407|286373|36374|4|27|36702.72|0.06|0.02|A|F|1992-04-14|1992-03-12|1992-05-07|TAKE BACK RETURN|TRUCK|y silent deposits a| +75407|58995|46499|5|24|46895.76|0.07|0.08|R|F|1992-03-28|1992-03-14|1992-03-29|TAKE BACK RETURN|RAIL|equests. express packages pro| +75407|513189|25700|6|20|24043.20|0.05|0.05|R|F|1992-02-14|1992-04-05|1992-03-13|COLLECT COD|MAIL|al theodolites. express instructi| +75432|941607|4126|1|14|23079.84|0.04|0.03|R|F|1993-07-04|1993-07-05|1993-07-06|NONE|REG AIR|s among the slyly| +75432|577522|15056|2|46|73577.00|0.08|0.00|R|F|1993-08-20|1993-06-06|1993-08-23|COLLECT COD|AIR|ructions. furiously regular ideas | +75433|530797|30798|1|27|49349.79|0.01|0.01|N|O|1995-08-31|1995-10-05|1995-09-22|NONE|RAIL|ts across the accounts sleep blithe| +75433|91660|29164|2|44|72673.04|0.05|0.08|N|O|1995-08-04|1995-09-21|1995-08-05|TAKE BACK RETURN|REG AIR|cajole aro| +75433|528148|15679|3|25|29403.00|0.01|0.01|N|O|1995-11-23|1995-08-31|1995-12-06|COLLECT COD|TRUCK|gular deposi| +75433|583185|20719|4|7|8877.12|0.09|0.05|N|O|1995-10-19|1995-08-29|1995-10-22|DELIVER IN PERSON|TRUCK|r deposits. r| +75433|573894|36406|5|1|1967.87|0.09|0.06|N|O|1995-07-29|1995-09-05|1995-08-13|DELIVER IN PERSON|MAIL| pinto beans are fluffily above the caref| +75433|427520|40029|6|7|10132.50|0.04|0.01|N|O|1995-11-24|1995-09-09|1995-12-06|COLLECT COD|SHIP|eans along th| +75434|8797|21298|1|46|78466.34|0.01|0.01|N|O|1995-08-12|1995-07-18|1995-08-18|TAKE BACK RETURN|REG AIR|are fluffily after the furiousl| +75434|834700|22249|2|27|44135.82|0.05|0.04|N|O|1995-08-06|1995-07-13|1995-09-05|DELIVER IN PERSON|MAIL|l accounts are slyly near the | +75434|793876|31422|3|16|31517.44|0.03|0.05|N|O|1995-08-04|1995-08-10|1995-08-07|COLLECT COD|TRUCK|e express packages. slyly pending foxes ar| +75434|657382|7383|4|6|8036.10|0.00|0.06|N|O|1995-06-24|1995-08-06|1995-06-29|DELIVER IN PERSON|FOB|accounts. instructi| +75435|245418|7923|1|33|44992.20|0.08|0.01|A|F|1994-09-04|1994-10-07|1994-09-09|TAKE BACK RETURN|TRUCK|the regularly silent ideas affix across the| +75435|727259|27260|2|5|6431.10|0.00|0.01|A|F|1994-10-09|1994-11-06|1994-10-23|TAKE BACK RETURN|RAIL|s boost pinto beans. final, silent escap| +75435|33141|33142|3|32|34372.48|0.06|0.08|R|F|1994-09-06|1994-11-02|1994-09-19|TAKE BACK RETURN|AIR| of the blithely pending theodolites. ca| +75435|996839|21878|4|47|90982.13|0.07|0.04|A|F|1994-11-22|1994-10-15|1994-12-19|NONE|RAIL| requests. blithely regular inst| +75435|860346|22864|5|41|53558.30|0.02|0.06|A|F|1994-10-20|1994-09-30|1994-10-26|NONE|TRUCK|eans. regular packa| +75435|832235|19784|6|33|38517.27|0.06|0.00|A|F|1994-12-08|1994-11-02|1995-01-01|DELIVER IN PERSON|MAIL|quickly special reques| +75435|360044|10045|7|36|39745.08|0.06|0.06|R|F|1994-10-25|1994-10-16|1994-10-31|COLLECT COD|MAIL|dolites nag fur| +75436|243964|31477|1|50|95397.50|0.01|0.02|R|F|1994-05-13|1994-07-21|1994-05-22|DELIVER IN PERSON|FOB|al, regular packag| +75436|290540|40541|2|32|48976.96|0.01|0.00|R|F|1994-06-14|1994-07-28|1994-07-04|DELIVER IN PERSON|FOB|tions. enticingly final theodolites afte| +75436|99568|24571|3|49|76810.44|0.10|0.00|R|F|1994-07-01|1994-06-21|1994-07-14|TAKE BACK RETURN|TRUCK|iously pending requests. cour| +75436|429846|4863|4|27|47947.14|0.09|0.05|R|F|1994-07-03|1994-07-27|1994-07-24|DELIVER IN PERSON|SHIP|packages. quickly fina| +75436|410384|35401|5|16|20709.76|0.10|0.03|A|F|1994-05-12|1994-07-31|1994-05-28|COLLECT COD|MAIL|thely regular deposits.| +75436|319130|6649|6|31|35622.72|0.10|0.02|R|F|1994-06-08|1994-06-17|1994-06-30|TAKE BACK RETURN|AIR|blithely about the sil| +75436|611898|11899|7|22|39816.92|0.07|0.05|R|F|1994-08-10|1994-06-19|1994-08-28|DELIVER IN PERSON|SHIP|nts are. quickly express a| +75437|157214|19718|1|15|19068.15|0.09|0.08|A|F|1994-10-07|1994-10-07|1994-10-28|TAKE BACK RETURN|RAIL|e slyly special reques| +75437|289773|27289|2|49|86375.24|0.07|0.05|A|F|1994-09-20|1994-10-24|1994-09-24|NONE|MAIL|ts. requests cajole. boldly| +75437|211729|11730|3|26|42658.46|0.02|0.05|A|F|1994-10-31|1994-09-11|1994-11-21|TAKE BACK RETURN|REG AIR|regular deposits sleep carefu| +75437|523355|23356|4|39|53754.87|0.10|0.00|A|F|1994-10-05|1994-10-17|1994-10-26|DELIVER IN PERSON|TRUCK|bits. carefully regul| +75437|14219|26720|5|25|28330.25|0.09|0.04|R|F|1994-10-07|1994-09-16|1994-11-01|TAKE BACK RETURN|FOB|lent pinto beans haggle accord| +75438|685904|10931|1|22|41577.14|0.04|0.00|R|F|1993-10-15|1993-09-16|1993-10-18|COLLECT COD|AIR|ar requests! slyly q| +75439|431154|43663|1|41|44490.33|0.04|0.03|N|O|1995-07-03|1995-07-27|1995-07-05|COLLECT COD|REG AIR|quickly bold depo| +75439|393513|6021|2|37|59440.50|0.09|0.03|N|O|1995-10-20|1995-08-14|1995-10-27|NONE|RAIL|ilent accounts haggle. carefully expres| +75439|761507|11508|3|43|67444.21|0.09|0.01|N|O|1995-09-29|1995-07-30|1995-10-01|DELIVER IN PERSON|FOB|y regular requests sleep furiously quick| +75439|643567|43568|4|9|13594.77|0.00|0.05|N|O|1995-06-26|1995-09-09|1995-07-07|NONE|RAIL|luffy excuses detect along | +75439|414868|14869|5|47|83793.48|0.02|0.00|N|O|1995-09-16|1995-09-20|1995-09-22|NONE|FOB| wake. furiously | +75439|675647|674|6|16|25961.76|0.02|0.01|N|O|1995-10-07|1995-07-28|1995-11-03|DELIVER IN PERSON|AIR|s platelets are idly. unusual courts above| +75464|981787|19345|1|12|22424.88|0.01|0.08|R|F|1994-06-27|1994-06-29|1994-07-14|TAKE BACK RETURN|RAIL|r, silent packages? furiou| +75464|889654|2172|2|48|78893.28|0.05|0.08|A|F|1994-08-02|1994-07-14|1994-08-18|COLLECT COD|RAIL|inally final ideas use. caref| +75464|400609|13118|3|32|48306.56|0.09|0.05|R|F|1994-05-20|1994-06-18|1994-06-15|COLLECT COD|REG AIR|y enticing requests hagg| +75465|556879|6880|1|48|92920.80|0.07|0.05|A|F|1992-07-09|1992-04-22|1992-07-28|DELIVER IN PERSON|RAIL| bold accounts. bold packages cajole qui| +75466|792866|5382|1|33|64641.39|0.06|0.06|A|F|1993-08-09|1993-08-10|1993-08-25|NONE|FOB| blithely pending c| +75467|919170|31689|1|5|5945.65|0.07|0.07|N|O|1998-01-11|1998-02-02|1998-02-07|NONE|FOB|asymptotes na| +75467|487758|37759|2|10|17457.30|0.10|0.08|N|O|1998-01-04|1998-02-18|1998-01-15|TAKE BACK RETURN|FOB|foxes-- fluffily bold ideas boost car| +75467|739677|39678|3|31|53215.84|0.01|0.07|N|O|1998-04-06|1998-02-14|1998-05-04|DELIVER IN PERSON|AIR|ounts affix. sl| +75467|747461|22490|4|38|57320.34|0.09|0.00|N|O|1998-04-14|1998-03-16|1998-04-18|NONE|FOB|alongside of the quickly even pinto beans| +75467|569442|6976|5|21|31739.82|0.10|0.06|N|O|1998-02-20|1998-02-13|1998-03-04|NONE|MAIL|y bold accounts are after the carefully e| +75467|597122|47123|6|50|60955.00|0.04|0.07|N|O|1998-02-05|1998-03-09|1998-02-11|NONE|AIR|ts are. final | +75468|996403|21442|1|21|31486.56|0.08|0.04|N|O|1997-03-03|1997-04-25|1997-03-14|NONE|RAIL| excuses according to the slyly even | +75468|531288|6309|2|7|9234.82|0.01|0.02|N|O|1997-04-18|1997-04-02|1997-05-13|DELIVER IN PERSON|MAIL|foxes sleep carefully unusual gifts.| +75468|349764|49765|3|44|79805.00|0.07|0.07|N|O|1997-03-25|1997-04-14|1997-04-02|NONE|TRUCK|thely silent requests sleep across t| +75468|466837|4365|4|6|10822.86|0.02|0.07|N|O|1997-04-24|1997-04-04|1997-05-07|TAKE BACK RETURN|RAIL|regular pea| +75469|169679|7189|1|4|6994.68|0.06|0.04|A|F|1993-03-25|1993-06-19|1993-04-09|NONE|FOB|le thinly fl| +75469|794220|44221|2|13|17084.47|0.08|0.00|A|F|1993-04-07|1993-06-10|1993-04-09|TAKE BACK RETURN|AIR|gular packages are furiously fox| +75470|228446|15959|1|37|50853.91|0.10|0.06|N|O|1996-09-28|1996-10-19|1996-10-18|NONE|TRUCK| the regular requests use s| +75470|491850|4360|2|7|12892.81|0.06|0.06|N|O|1996-10-26|1996-11-16|1996-11-25|COLLECT COD|MAIL|y blithely express ideas. furious| +75470|519939|19940|3|43|84233.13|0.07|0.03|N|O|1996-11-15|1996-11-24|1996-12-01|COLLECT COD|MAIL|l ideas around the u| +75470|607942|7943|4|28|51797.48|0.00|0.02|N|O|1996-09-21|1996-10-29|1996-10-17|NONE|FOB|lar instructio| +75470|665539|3079|5|38|57171.00|0.04|0.06|N|O|1996-09-22|1996-11-04|1996-10-07|NONE|MAIL| unusual packages. p| +75471|882753|7788|1|30|52071.30|0.00|0.02|R|F|1994-10-17|1994-09-12|1994-10-28|TAKE BACK RETURN|TRUCK|tegrate carefully. fur| +75471|414717|39734|2|10|16316.90|0.07|0.00|A|F|1994-10-05|1994-09-08|1994-10-26|TAKE BACK RETURN|TRUCK|s. slyly spec| +75471|132805|20312|3|31|56971.80|0.03|0.07|R|F|1994-10-10|1994-08-20|1994-11-02|NONE|AIR|n foxes wake carefully bold instructions.| +75471|49951|12452|4|49|93146.55|0.10|0.00|A|F|1994-07-21|1994-10-11|1994-07-25|NONE|AIR|excuses nag| +75471|523369|48390|5|23|32023.82|0.02|0.07|A|F|1994-09-18|1994-09-09|1994-09-23|TAKE BACK RETURN|MAIL|ly regular waters snooze aga| +75471|251241|1242|6|43|51265.89|0.08|0.07|R|F|1994-11-07|1994-08-21|1994-11-09|TAKE BACK RETURN|SHIP|. fluffily final deposits wake quickly| +75471|595803|33337|7|36|68356.08|0.03|0.04|R|F|1994-11-06|1994-10-11|1994-11-18|COLLECT COD|FOB|es integrate s| +75496|653889|16403|1|49|90299.65|0.03|0.07|R|F|1992-08-12|1992-08-19|1992-08-19|DELIVER IN PERSON|TRUCK|ly. furiously special ideas p| +75496|905149|30186|2|45|51934.50|0.07|0.03|R|F|1992-09-17|1992-08-30|1992-10-08|NONE|FOB|ly bold ideas use carefully bli| +75496|835146|22695|3|30|32433.00|0.00|0.07|R|F|1992-08-21|1992-08-30|1992-08-24|TAKE BACK RETURN|TRUCK|t above the even requests; slyly special so| +75497|992848|5368|1|43|83454.40|0.06|0.05|N|O|1996-11-07|1996-08-27|1996-11-21|DELIVER IN PERSON|MAIL|eposits. bold pinto beans need to hin| +75497|791571|29117|2|16|26600.64|0.01|0.02|N|O|1996-08-27|1996-10-14|1996-09-20|TAKE BACK RETURN|FOB|ependencies poach carefully about th| +75497|918341|30860|3|44|59809.20|0.07|0.00|N|O|1996-08-01|1996-09-14|1996-08-14|DELIVER IN PERSON|FOB|s haggle furiously| +75497|547014|47015|4|38|40317.62|0.02|0.04|N|O|1996-08-22|1996-10-12|1996-09-13|TAKE BACK RETURN|MAIL| silent hockey players across the s| +75497|659934|34961|5|46|87119.40|0.10|0.06|N|O|1996-07-31|1996-09-10|1996-08-29|DELIVER IN PERSON|SHIP|y regular accounts unwind alon| +75497|500485|12996|6|30|44563.80|0.06|0.04|N|O|1996-09-25|1996-09-07|1996-10-21|NONE|MAIL|ong the blithely express asymptotes haggle | +75498|357180|19688|1|29|35877.93|0.06|0.03|N|O|1996-05-27|1996-05-01|1996-06-13|NONE|MAIL|. furiously| +75498|121357|46362|2|47|64782.45|0.02|0.07|N|O|1996-04-14|1996-04-14|1996-05-01|DELIVER IN PERSON|AIR|lyly above the sly packages. ir| +75498|632637|32638|3|10|15696.00|0.06|0.04|N|O|1996-06-25|1996-06-04|1996-07-21|DELIVER IN PERSON|FOB|slowly even theodoli| +75499|710700|35729|1|48|82112.16|0.06|0.02|A|F|1992-10-10|1992-12-28|1992-10-17|NONE|TRUCK|ests. slyly unusual depo| +75500|914082|1637|1|46|50417.84|0.00|0.05|R|F|1995-05-21|1995-07-07|1995-05-29|DELIVER IN PERSON|MAIL|eposits use| +75500|960498|48056|2|35|54545.75|0.06|0.05|N|O|1995-07-18|1995-07-14|1995-07-24|NONE|MAIL|even, bold packages. regular asym| +75500|83986|8989|3|16|31519.68|0.09|0.00|N|O|1995-07-19|1995-07-31|1995-08-08|DELIVER IN PERSON|TRUCK|tly regular deposits integrate above t| +75500|537640|25171|4|43|72137.66|0.06|0.00|N|O|1995-07-06|1995-07-25|1995-07-09|TAKE BACK RETURN|SHIP|regular dependencies sleep sly| +75500|107920|32925|5|46|88684.32|0.04|0.08|R|F|1995-05-15|1995-06-24|1995-06-01|NONE|REG AIR|oxes. slyly ironic requests across t| +75500|810398|47947|6|47|61492.45|0.02|0.08|N|O|1995-06-24|1995-06-15|1995-07-13|NONE|MAIL|ts sleep careful| +75501|243440|18449|1|46|63637.78|0.01|0.08|A|F|1994-04-24|1994-04-25|1994-05-23|NONE|TRUCK|ckages cajole furiously | +75501|486391|23919|2|31|42698.47|0.07|0.06|A|F|1994-05-14|1994-05-25|1994-06-11|COLLECT COD|SHIP|usly dogged packages thrash | +75502|68918|6422|1|18|33964.38|0.08|0.05|N|O|1997-05-24|1997-04-01|1997-06-13|COLLECT COD|RAIL|sts above t| +75503|343320|30839|1|21|28629.51|0.08|0.07|N|O|1996-12-23|1996-11-29|1996-12-24|COLLECT COD|RAIL|efully final pains nag about | +75503|168403|18404|2|32|47084.80|0.10|0.04|N|O|1996-11-18|1996-11-20|1996-12-03|DELIVER IN PERSON|RAIL|e special packages. even excuses wake. re| +75503|347878|22891|3|42|80886.12|0.04|0.03|N|O|1996-10-10|1996-11-22|1996-10-19|TAKE BACK RETURN|MAIL|excuses. furiously regular deposits wake c| +75503|784708|9739|4|25|44816.75|0.06|0.02|N|O|1996-10-07|1996-11-20|1996-10-24|COLLECT COD|AIR| nag. carefully final r| +75503|577208|27209|5|44|56547.92|0.04|0.06|N|O|1996-10-06|1996-12-03|1996-10-16|TAKE BACK RETURN|AIR|ar, bold foxes. regular, express ideas| +75503|131179|6184|6|31|37515.27|0.01|0.00|N|O|1996-12-22|1996-11-02|1996-12-30|DELIVER IN PERSON|TRUCK|ckages. unusual | +75503|712874|417|7|43|81134.12|0.04|0.03|N|O|1996-12-10|1996-11-08|1997-01-03|DELIVER IN PERSON|RAIL|ins are slyly be| +75528|263963|1479|1|26|50100.70|0.00|0.00|N|O|1997-06-09|1997-07-16|1997-06-17|TAKE BACK RETURN|AIR|posits are car| +75528|419106|31615|2|4|4100.32|0.05|0.02|N|O|1997-07-13|1997-06-15|1997-07-29|COLLECT COD|MAIL|g asymptotes are closely after the close | +75528|910752|35789|3|25|44067.75|0.07|0.08|N|O|1997-04-30|1997-07-07|1997-05-12|NONE|RAIL|ld requests. theodolit| +75528|995806|45807|4|46|87480.96|0.03|0.05|N|O|1997-06-03|1997-06-04|1997-06-17|NONE|TRUCK|uts among th| +75528|510060|10061|5|27|28891.08|0.08|0.04|N|O|1997-07-13|1997-07-15|1997-08-07|DELIVER IN PERSON|FOB| daringly final theodolites. the| +75528|578162|40674|6|40|49605.60|0.05|0.04|N|O|1997-05-22|1997-06-20|1997-05-28|DELIVER IN PERSON|AIR|y pending dependencies promise car| +75528|165664|28168|7|26|44971.16|0.00|0.05|N|O|1997-07-14|1997-07-20|1997-07-16|DELIVER IN PERSON|RAIL|quests cajole-- blithely even depos| +75529|307853|20360|1|11|20469.24|0.06|0.08|N|O|1997-12-22|1998-02-26|1998-01-13|TAKE BACK RETURN|REG AIR|heodolites. quickly special deposit| +75529|69154|6658|2|19|21339.85|0.01|0.07|N|O|1998-02-05|1998-01-30|1998-02-18|DELIVER IN PERSON|MAIL|l pinto beans ar| +75529|260438|22944|3|32|44749.44|0.06|0.01|N|O|1998-03-29|1998-01-11|1998-04-13|TAKE BACK RETURN|RAIL| furiously ste| +75529|173115|23116|4|40|47524.40|0.08|0.06|N|O|1997-12-14|1998-01-13|1998-01-11|TAKE BACK RETURN|MAIL|quickly. slyly| +75529|540694|3205|5|22|38162.74|0.05|0.07|N|O|1998-01-25|1998-01-13|1998-02-22|TAKE BACK RETURN|FOB|slyly special instruc| +75529|437735|37736|6|9|15054.39|0.08|0.03|N|O|1998-01-14|1998-01-16|1998-01-20|COLLECT COD|FOB|unts. unusual requests| +75530|18125|43126|1|4|4172.48|0.10|0.06|N|O|1995-10-08|1995-07-22|1995-11-02|DELIVER IN PERSON|RAIL|uickly according to the regular, eve| +75530|615119|40144|2|8|8272.64|0.03|0.06|N|O|1995-09-04|1995-08-25|1995-09-29|TAKE BACK RETURN|SHIP|special platelets. slyly pending accounts| +75530|304967|29980|3|25|49298.75|0.08|0.06|N|O|1995-06-21|1995-08-13|1995-06-25|TAKE BACK RETURN|SHIP|slyly slyly even depths. furiously fina| +75530|576954|39466|4|26|52804.18|0.09|0.01|N|O|1995-07-31|1995-08-31|1995-08-27|NONE|TRUCK|fully alongside of the accounts. | +75531|569194|44217|1|2|2526.34|0.01|0.01|A|F|1994-03-24|1994-03-07|1994-04-17|COLLECT COD|AIR|platelets. sly| +75531|439786|14803|2|30|51772.80|0.07|0.04|R|F|1994-03-08|1994-03-17|1994-04-03|COLLECT COD|SHIP|refully brave deposits; regular a| +75531|481971|19499|3|50|97647.50|0.05|0.06|A|F|1994-04-21|1994-02-17|1994-05-20|DELIVER IN PERSON|SHIP|und the bl| +75531|471674|21675|4|28|46078.20|0.04|0.05|R|F|1994-04-22|1994-02-15|1994-05-10|COLLECT COD|REG AIR|accounts: quickly even deposits ha| +75531|415811|28320|5|15|25901.85|0.08|0.07|R|F|1994-04-02|1994-02-22|1994-04-18|NONE|MAIL|pending theodolites. quickly unusua| +75531|524319|11850|6|6|8059.74|0.02|0.03|A|F|1994-01-23|1994-03-14|1994-02-19|TAKE BACK RETURN|TRUCK|ial, pending platelets mold blit| +75531|222896|10409|7|18|32739.84|0.03|0.01|R|F|1994-04-15|1994-01-26|1994-04-27|NONE|RAIL|the idle, silent theodolites. | +75532|205418|42931|1|12|15880.80|0.08|0.02|R|F|1994-10-12|1994-08-18|1994-10-27|DELIVER IN PERSON|SHIP|ronic decoys detect | +75533|385410|47918|1|20|29908.00|0.03|0.04|N|O|1997-05-14|1997-07-26|1997-05-30|COLLECT COD|REG AIR|uickly bold waters eat excuses| +75533|585547|35548|2|50|81626.00|0.06|0.05|N|O|1997-05-23|1997-07-20|1997-05-31|NONE|MAIL|ully regular instructions boost quic| +75533|272706|35212|3|40|67147.60|0.06|0.06|N|O|1997-08-25|1997-07-18|1997-08-28|DELIVER IN PERSON|FOB| cajole slyly. express, even deposits slee| +75533|360222|22730|4|4|5128.84|0.03|0.03|N|O|1997-07-05|1997-06-16|1997-07-16|DELIVER IN PERSON|FOB|tipliers. instructions affix furio| +75533|246128|33641|5|50|53705.50|0.07|0.00|N|O|1997-05-18|1997-06-23|1997-06-10|COLLECT COD|SHIP|y regular multipliers use bl| +75534|785851|48367|1|19|36799.58|0.06|0.08|R|F|1992-10-21|1992-10-25|1992-10-23|DELIVER IN PERSON|AIR|ithely along | +75534|791587|29133|2|1|1678.55|0.01|0.03|A|F|1992-10-22|1992-11-06|1992-10-31|TAKE BACK RETURN|AIR|ongside of the mul| +75534|187169|37170|3|8|10049.28|0.01|0.02|R|F|1992-12-05|1992-11-03|1992-12-18|NONE|SHIP|ymptotes. even deposit| +75534|738499|13528|4|11|16912.06|0.00|0.08|A|F|1992-09-26|1992-11-14|1992-10-02|NONE|TRUCK|le across the| +75534|947146|22183|5|42|50110.20|0.08|0.07|A|F|1992-11-07|1992-10-09|1992-12-01|TAKE BACK RETURN|FOB|ructions. slyly unusual deposits| +75534|673867|11407|6|13|23930.79|0.06|0.02|R|F|1992-12-09|1992-10-03|1992-12-15|NONE|SHIP|final, idle packages nag carefully slyly | +75535|386272|23794|1|15|20373.90|0.02|0.01|N|O|1997-10-02|1997-11-17|1997-10-03|COLLECT COD|TRUCK|fluffily. slyly special pack| +75535|56879|6880|2|42|77106.54|0.09|0.06|N|O|1997-12-01|1997-12-10|1997-12-21|COLLECT COD|FOB|d the carefully special notornis | +75535|956796|19316|3|12|22233.00|0.10|0.04|N|O|1998-01-22|1997-12-24|1998-01-31|TAKE BACK RETURN|AIR|packages about the special, pend| +75535|870016|7568|4|41|40424.77|0.07|0.05|N|O|1997-11-27|1997-12-07|1997-12-06|TAKE BACK RETURN|RAIL| requests wake alongside of the fu| +75535|355260|17768|5|3|3945.75|0.09|0.00|N|O|1998-01-22|1997-11-08|1998-02-02|NONE|FOB|fily unusual accounts. carefully unu| +75535|854723|29758|6|4|6710.72|0.03|0.03|N|O|1997-12-12|1997-11-07|1998-01-08|NONE|REG AIR|luffily. deposits dazzle across t| +75535|324302|11821|7|29|38462.41|0.10|0.03|N|O|1997-10-26|1997-11-09|1997-11-13|DELIVER IN PERSON|RAIL|ly ironic dinos boost | +75560|539373|14394|1|27|38133.45|0.09|0.05|A|F|1993-03-18|1993-03-31|1993-03-23|TAKE BACK RETURN|MAIL|e requests sleep accord| +75560|238583|13592|2|7|10650.99|0.02|0.03|R|F|1993-02-01|1993-02-09|1993-02-27|NONE|FOB|uriously about the f| +75560|847788|10305|3|18|31243.32|0.03|0.05|A|F|1993-01-17|1993-02-19|1993-02-16|DELIVER IN PERSON|FOB|lar accounts| +75560|768353|18354|4|10|14213.20|0.10|0.06|R|F|1993-01-06|1993-02-28|1993-01-13|COLLECT COD|REG AIR|final accounts. packages wake| +75560|696524|34064|5|9|13684.41|0.06|0.08|R|F|1993-01-12|1993-03-29|1993-02-08|TAKE BACK RETURN|TRUCK| the even patterns cajole slyly alongsid| +75560|477806|15334|6|44|78486.32|0.07|0.08|A|F|1993-01-15|1993-02-27|1993-02-08|NONE|RAIL|uctions sleep slyly among th| +75560|479139|29140|7|33|36897.63|0.01|0.04|A|F|1993-01-27|1993-02-18|1993-02-24|TAKE BACK RETURN|SHIP| regular, e| +75561|878098|3133|1|18|19368.90|0.06|0.08|R|F|1994-09-01|1994-09-29|1994-09-11|COLLECT COD|RAIL|structions try to los| +75561|186235|23745|2|24|31709.52|0.07|0.06|A|F|1994-09-10|1994-09-20|1994-09-25|DELIVER IN PERSON|REG AIR|slyly in place| +75561|39882|2383|3|23|41903.24|0.09|0.08|A|F|1994-10-12|1994-08-13|1994-10-30|NONE|RAIL|ithely regular deposits. fluf| +75561|296346|46347|4|11|14765.63|0.06|0.02|R|F|1994-08-31|1994-09-14|1994-09-28|DELIVER IN PERSON|REG AIR|beans. even theodolit| +75562|145473|32980|1|31|47072.57|0.08|0.04|N|O|1996-02-08|1996-02-26|1996-02-16|TAKE BACK RETURN|MAIL| accounts. sly inst| +75562|948827|11346|2|48|90037.44|0.00|0.04|N|O|1995-12-07|1996-02-09|1995-12-11|NONE|RAIL|ccounts. final accounts haggle regular| +75562|931309|6346|3|20|26805.20|0.02|0.01|N|O|1995-12-09|1996-02-18|1996-01-01|COLLECT COD|TRUCK|ges promise slyly: blithely | +75562|508056|33077|4|40|42561.20|0.05|0.04|N|O|1996-03-22|1996-02-01|1996-03-30|DELIVER IN PERSON|MAIL|ts above the foxes use furiously reg| +75562|893086|30638|5|8|8632.32|0.03|0.01|N|O|1995-12-18|1996-02-13|1996-01-16|DELIVER IN PERSON|TRUCK| express platelets affix regular deposits.| +75563|427499|2516|1|38|54205.86|0.09|0.00|N|O|1997-10-14|1997-11-10|1997-10-21|COLLECT COD|SHIP|r, idle excu| +75564|882001|7036|1|6|5897.76|0.09|0.01|N|O|1998-03-31|1998-01-30|1998-04-22|DELIVER IN PERSON|REG AIR|slyly unusual accounts against the quickly| +75564|788185|38186|2|6|7638.90|0.05|0.00|N|O|1998-03-29|1998-02-21|1998-04-10|NONE|FOB|accounts haggle slyly regula| +75564|9985|34986|3|12|22739.76|0.04|0.06|N|O|1998-02-08|1998-03-01|1998-02-14|COLLECT COD|MAIL|earls haggle bravely regular Tires| +75565|69123|19124|1|45|49145.40|0.02|0.02|N|O|1998-09-12|1998-08-05|1998-09-27|DELIVER IN PERSON|SHIP|lyly ironic theodolites cajole. theod| +75565|733755|33756|2|5|8943.60|0.05|0.00|N|O|1998-08-22|1998-09-18|1998-09-21|TAKE BACK RETURN|RAIL|ely carefully | +75566|700627|628|1|7|11393.13|0.10|0.05|A|F|1992-05-16|1992-06-01|1992-06-08|COLLECT COD|MAIL| foxes. furiously special packages detec| +75566|424981|37490|2|41|78144.36|0.05|0.07|A|F|1992-04-19|1992-05-05|1992-04-27|DELIVER IN PERSON|RAIL|s haggle slyly furiously regular | +75566|646027|21052|3|39|37946.61|0.02|0.07|R|F|1992-07-17|1992-04-28|1992-08-12|DELIVER IN PERSON|MAIL|permanent theodolites sleep blithely a| +75567|875036|12588|1|47|47516.53|0.03|0.00|N|O|1996-11-21|1996-10-30|1996-11-25|DELIVER IN PERSON|MAIL|across the bli| +75567|727779|15322|2|38|68656.12|0.09|0.06|N|O|1996-08-05|1996-09-11|1996-08-28|TAKE BACK RETURN|SHIP|sh requests. express packages cajole| +75567|767463|5009|3|24|36730.32|0.02|0.08|N|O|1996-08-24|1996-09-18|1996-08-26|TAKE BACK RETURN|MAIL|lithely ste| +75592|323416|48429|1|47|67651.80|0.05|0.00|N|O|1998-06-02|1998-05-25|1998-06-28|DELIVER IN PERSON|AIR|lithely bold, | +75592|646771|46772|2|8|13741.92|0.10|0.07|N|O|1998-04-24|1998-04-23|1998-05-15|DELIVER IN PERSON|FOB|e regular, bold deposits. furiousl| +75592|269970|32476|3|46|89238.16|0.03|0.05|N|O|1998-06-25|1998-04-26|1998-07-11|TAKE BACK RETURN|REG AIR|le slyly slyly ironic asym| +75592|370316|7838|4|34|47134.20|0.03|0.05|N|O|1998-06-05|1998-04-23|1998-06-27|DELIVER IN PERSON|REG AIR| packages. silent, special deposits ca| +75592|898569|36121|5|14|21945.28|0.07|0.06|N|O|1998-06-05|1998-04-02|1998-07-04|COLLECT COD|MAIL|press theodolites along | +75592|239634|2139|6|5|7868.10|0.09|0.01|N|O|1998-06-22|1998-04-14|1998-07-14|TAKE BACK RETURN|REG AIR|s after the unusual, f| +75593|455060|5061|1|4|4060.16|0.01|0.04|R|F|1994-12-06|1994-12-06|1994-12-08|COLLECT COD|RAIL|blithely. asymptotes im| +75593|179987|42491|2|20|41339.60|0.02|0.04|R|F|1994-11-17|1994-12-04|1994-12-03|NONE|RAIL|. even, bold packages u| +75594|425082|25083|1|8|8056.48|0.01|0.00|R|F|1992-07-20|1992-07-02|1992-08-14|DELIVER IN PERSON|MAIL| accounts. even, pe| +75595|352818|27833|1|17|31803.60|0.02|0.02|N|O|1997-09-23|1997-10-12|1997-10-18|TAKE BACK RETURN|MAIL|final accounts-- furiously regular | +75595|802466|14983|2|32|43789.44|0.02|0.00|N|O|1997-09-18|1997-09-25|1997-10-01|DELIVER IN PERSON|TRUCK|iously according to the quickly r| +75595|35745|35746|3|37|62187.38|0.08|0.02|N|O|1997-08-10|1997-11-01|1997-09-01|COLLECT COD|SHIP|arefully after the slyly unu| +75596|948659|11178|1|2|3415.22|0.00|0.01|N|F|1995-06-11|1995-07-06|1995-06-24|COLLECT COD|FOB|s. carefully even accounts dete| +75596|105834|5835|2|42|77272.86|0.00|0.03|N|F|1995-06-04|1995-07-21|1995-07-03|COLLECT COD|FOB|ul accounts nag | +75596|735781|48296|3|25|45418.75|0.04|0.01|N|O|1995-08-19|1995-07-01|1995-09-10|NONE|FOB|its. carefully final cou| +75596|259667|9668|4|20|32533.00|0.08|0.06|N|O|1995-09-01|1995-08-01|1995-09-04|DELIVER IN PERSON|REG AIR|carefully final depths wake idly c| +75596|209517|22022|5|14|19971.00|0.02|0.01|N|O|1995-07-27|1995-06-28|1995-08-19|TAKE BACK RETURN|RAIL|xpress accounts boost furi| +75596|348414|10921|6|46|67270.40|0.05|0.03|N|O|1995-07-17|1995-06-27|1995-08-06|NONE|SHIP| regular dependencies. regu| +75596|782051|7082|7|37|41921.74|0.10|0.00|N|F|1995-06-04|1995-06-16|1995-06-19|COLLECT COD|RAIL|s ought to cajole quickly blithely bold | +75597|917676|30195|1|7|11855.41|0.06|0.05|A|F|1995-03-24|1995-05-26|1995-04-10|TAKE BACK RETURN|RAIL|courts. accounts | +75597|366075|16076|2|29|33090.74|0.05|0.03|R|F|1995-04-02|1995-04-19|1995-04-15|DELIVER IN PERSON|AIR|beans. express deposits are slyly asympt| +75597|618886|6423|3|50|90242.50|0.01|0.07|A|F|1995-05-07|1995-06-05|1995-05-17|TAKE BACK RETURN|AIR| sleep. furiously ironic p| +75598|564842|39865|1|14|26695.48|0.08|0.07|R|F|1994-08-04|1994-08-05|1994-08-31|COLLECT COD|FOB|e fluffily furiously regular pinto beans| +75598|290501|15512|2|41|61151.09|0.09|0.00|A|F|1994-06-24|1994-07-17|1994-07-15|TAKE BACK RETURN|REG AIR|ut the blithely silen| +75598|440486|2995|3|13|18543.98|0.08|0.01|A|F|1994-09-02|1994-08-29|1994-09-15|COLLECT COD|REG AIR|y unusual deposits. unusu| +75599|947256|47257|1|23|29973.83|0.05|0.03|N|O|1997-03-28|1997-03-15|1997-04-17|COLLECT COD|RAIL|ular theodolites sleep. bold requests wak| +75599|521508|9039|2|48|73415.04|0.05|0.03|N|O|1997-02-10|1997-02-13|1997-02-19|COLLECT COD|MAIL|ns use carefully against the packages. bl| +75599|977328|2367|3|7|9836.96|0.01|0.01|N|O|1997-01-12|1997-03-09|1997-01-30|NONE|REG AIR|y among the carefully dogg| +75599|935130|35131|4|23|26797.07|0.05|0.08|N|O|1997-03-26|1997-02-03|1997-04-08|DELIVER IN PERSON|RAIL| accounts sleep slyly ex| +75599|721373|33888|5|4|5577.36|0.05|0.00|N|O|1997-03-07|1997-01-21|1997-03-13|DELIVER IN PERSON|MAIL|fily around the quickly even theodo| +75599|113438|13439|6|29|42091.47|0.10|0.02|N|O|1997-01-15|1997-02-12|1997-01-27|COLLECT COD|AIR|usly above the slyly idle pinto beans. sl| +75624|601212|13725|1|3|3339.54|0.05|0.06|N|O|1996-09-24|1996-09-21|1996-09-26|COLLECT COD|RAIL|iously bold accounts. daringly| +75624|558217|33240|2|21|26778.99|0.10|0.03|N|O|1996-08-10|1996-08-31|1996-08-25|DELIVER IN PERSON|SHIP|s sleep quickly above the slyly i| +75624|940496|3015|3|10|15364.50|0.10|0.00|N|O|1996-08-06|1996-09-02|1996-08-31|TAKE BACK RETURN|AIR|lessly. blithely furious packages u| +75624|903554|3555|4|8|12460.08|0.00|0.05|N|O|1996-07-31|1996-08-18|1996-08-02|DELIVER IN PERSON|RAIL|uickly after the express, ironic | +75624|25534|25535|5|23|33569.19|0.02|0.08|N|O|1996-11-02|1996-09-03|1996-11-10|DELIVER IN PERSON|RAIL|out the furiously ironic instructio| +75624|145490|32997|6|24|36851.76|0.06|0.00|N|O|1996-08-21|1996-08-10|1996-09-16|COLLECT COD|TRUCK|ly unusual pinto beans. furiously expres| +75624|236298|11307|7|14|17279.92|0.00|0.01|N|O|1996-08-21|1996-08-08|1996-09-20|DELIVER IN PERSON|MAIL|ckages. pending | +75625|445806|8315|1|10|17517.80|0.04|0.01|N|O|1996-12-27|1996-11-01|1997-01-09|COLLECT COD|SHIP| wake sometimes. car| +75625|647146|22171|2|37|40445.07|0.09|0.02|N|O|1996-12-06|1996-10-29|1996-12-31|NONE|SHIP|alms about the slyly bold theodolites ha| +75625|571081|21082|3|44|50690.64|0.02|0.01|N|O|1996-10-27|1996-12-16|1996-11-25|TAKE BACK RETURN|AIR| requests. ironic| +75625|153542|41052|4|26|41484.04|0.05|0.03|N|O|1996-12-20|1996-12-11|1997-01-10|TAKE BACK RETURN|SHIP|lithely quickly regular warhorses. blithe| +75626|342442|4949|1|22|32657.46|0.01|0.08|N|O|1995-12-04|1995-10-01|1995-12-15|DELIVER IN PERSON|AIR|thely express instructions boos| +75626|412082|12083|2|11|10934.66|0.07|0.00|N|O|1995-11-18|1995-10-12|1995-12-08|COLLECT COD|TRUCK|uses lose iro| +75626|846770|21803|3|29|49785.17|0.02|0.03|N|O|1995-12-15|1995-11-15|1995-12-17|TAKE BACK RETURN|FOB|gular instruction| +75626|662711|25225|4|1|1673.68|0.08|0.08|N|O|1995-08-28|1995-10-27|1995-09-01|COLLECT COD|FOB|kages cajole fluffily after the furiously| +75626|182172|7179|5|17|21320.89|0.03|0.02|N|O|1995-10-01|1995-10-02|1995-10-15|DELIVER IN PERSON|AIR|nag quickly blithely| +75626|750193|25224|6|43|53455.88|0.04|0.05|N|O|1995-11-05|1995-11-08|1995-11-12|COLLECT COD|AIR|ogged pinto beans nod slyly | +75626|487501|11|7|1|1488.48|0.04|0.02|N|O|1995-10-09|1995-10-27|1995-10-26|DELIVER IN PERSON|TRUCK|r, bold epitaphs wake blithel| +75627|427786|2803|1|41|70264.16|0.09|0.01|A|F|1994-12-13|1995-01-07|1994-12-26|NONE|MAIL|boost fluffily above the brave| +75627|792310|42311|2|12|16827.36|0.10|0.03|A|F|1995-01-14|1995-01-19|1995-02-07|DELIVER IN PERSON|REG AIR|s integrate blithely requests. warthog| +75627|350810|811|3|8|14886.40|0.05|0.04|R|F|1995-01-04|1995-02-12|1995-01-19|COLLECT COD|REG AIR| wake furiously. special, sile| +75627|58840|8841|4|22|39574.48|0.06|0.05|R|F|1994-12-29|1995-01-08|1994-12-30|NONE|FOB|ss deposits haggle quickly regular dep| +75628|907193|7194|1|21|25203.15|0.06|0.01|R|F|1995-04-23|1995-05-14|1995-05-20|DELIVER IN PERSON|RAIL|hely blithely dogged theodolites. fluffil| +75628|187820|12827|2|21|40064.22|0.08|0.01|R|F|1995-05-21|1995-04-26|1995-06-07|NONE|AIR|ss deposits ha| +75629|77752|40254|1|35|60541.25|0.03|0.05|N|O|1998-08-22|1998-07-02|1998-09-19|TAKE BACK RETURN|MAIL|structions affix blithely. pendin| +75629|763327|13328|2|36|50050.44|0.05|0.00|N|O|1998-08-21|1998-07-08|1998-08-27|NONE|TRUCK|ly final foxes was. special acco| +75629|225973|25974|3|32|60766.72|0.00|0.07|N|O|1998-05-06|1998-07-16|1998-05-19|DELIVER IN PERSON|RAIL|sts detect slyly. blithel| +75629|922732|22733|4|7|12282.83|0.08|0.07|N|O|1998-08-15|1998-07-03|1998-08-21|NONE|SHIP|ven requests nag. pendin| +75629|344315|44316|5|38|51653.40|0.08|0.05|N|O|1998-08-09|1998-06-19|1998-08-29|DELIVER IN PERSON|FOB|fily around the careful| +75630|214700|2213|1|26|41981.94|0.00|0.00|R|F|1992-09-06|1992-07-07|1992-09-23|TAKE BACK RETURN|RAIL| packages. closely regular ideas| +75630|460419|35438|2|35|48278.65|0.02|0.03|A|F|1992-05-21|1992-07-29|1992-05-31|COLLECT COD|SHIP|thely unusual ide| +75630|261388|36399|3|10|13493.70|0.10|0.02|R|F|1992-06-21|1992-06-29|1992-06-24|TAKE BACK RETURN|MAIL|dle furiously even, pending pinto | +75630|137977|12982|4|13|26194.61|0.09|0.04|A|F|1992-07-22|1992-08-10|1992-08-10|TAKE BACK RETURN|TRUCK|ideas? furiously bold | +75630|975509|25510|5|17|26935.82|0.10|0.02|A|F|1992-07-07|1992-07-04|1992-08-02|TAKE BACK RETURN|AIR|carefully iron| +75631|783144|45660|1|24|29450.64|0.01|0.04|R|F|1994-08-20|1994-10-15|1994-09-16|COLLECT COD|RAIL|inal deposits. carefully regular pi| +75631|299086|49087|2|9|9765.63|0.01|0.07|R|F|1994-08-25|1994-10-10|1994-09-01|NONE|MAIL|c deposits. unusual requests boost blithel| +75631|723736|11279|3|36|63349.20|0.05|0.06|A|F|1994-10-30|1994-08-26|1994-11-06|COLLECT COD|REG AIR| blithely pen| +75631|814464|14465|4|17|23433.14|0.06|0.03|R|F|1994-10-10|1994-09-26|1994-10-27|DELIVER IN PERSON|AIR|lyly regular instructions. carefully bold | +75631|693662|43663|5|29|48013.27|0.10|0.03|A|F|1994-09-29|1994-10-17|1994-09-30|COLLECT COD|AIR|g to the slyly regular dol| +75656|157665|7666|1|3|5167.98|0.04|0.08|N|O|1995-12-08|1995-11-20|1995-12-27|TAKE BACK RETURN|TRUCK|ven requests. sly| +75656|860979|10980|2|16|31038.88|0.03|0.05|N|O|1995-10-23|1995-11-10|1995-11-19|COLLECT COD|RAIL|quickly against the carefully silent r| +75656|473365|10893|3|15|20075.10|0.06|0.01|N|O|1995-10-06|1995-11-16|1995-10-18|DELIVER IN PERSON|AIR|e deposits after the ac| +75656|845230|20263|4|21|24678.99|0.01|0.06|N|O|1995-08-24|1995-11-04|1995-09-01|DELIVER IN PERSON|SHIP|gular, ironic requests nag among the blit| +75657|506496|19007|1|20|30049.40|0.05|0.04|A|F|1992-06-11|1992-05-13|1992-06-27|DELIVER IN PERSON|AIR|as nag slyly. slyly r| +75657|669865|44892|2|25|45870.75|0.04|0.07|A|F|1992-06-25|1992-05-28|1992-07-20|DELIVER IN PERSON|FOB|ly. ironic ideas wake around the careful| +75657|410285|10286|3|44|52591.44|0.06|0.06|R|F|1992-06-15|1992-05-18|1992-07-04|COLLECT COD|SHIP|s bold packages about the always regular id| +75657|649390|11903|4|21|28126.56|0.08|0.04|R|F|1992-05-23|1992-04-22|1992-06-04|NONE|MAIL|ording to the final, even foxes nag silentl| +75657|287873|379|5|1|1860.86|0.08|0.07|R|F|1992-06-10|1992-05-18|1992-06-17|DELIVER IN PERSON|AIR|ly along the slyly | +75658|387162|49670|1|38|47467.70|0.09|0.01|A|F|1995-05-01|1995-05-04|1995-05-27|DELIVER IN PERSON|MAIL|le after the regular,| +75658|18870|6371|2|21|37566.27|0.10|0.04|R|F|1995-04-03|1995-04-12|1995-04-13|COLLECT COD|SHIP|cies. ironic pinto beans haggle r| +75658|139439|39440|3|22|32525.46|0.05|0.04|R|F|1995-03-29|1995-05-12|1995-04-05|COLLECT COD|SHIP|kly regular dependencies are a| +75658|544275|19296|4|8|10554.00|0.10|0.05|A|F|1995-04-14|1995-04-04|1995-04-24|DELIVER IN PERSON|RAIL|requests. carefully fina| +75659|661020|23534|1|28|27467.72|0.01|0.01|R|F|1992-09-28|1992-08-21|1992-10-07|TAKE BACK RETURN|MAIL|de of the blithely bold re| +75659|751273|38819|2|22|29133.28|0.04|0.07|A|F|1992-10-30|1992-09-01|1992-11-22|COLLECT COD|RAIL|uffily around the slyly regular de| +75660|799250|24281|1|25|33730.50|0.04|0.08|R|F|1992-07-28|1992-07-04|1992-08-26|TAKE BACK RETURN|RAIL|y even packages among the dogged idea| +75660|985876|35877|2|12|23541.96|0.07|0.07|R|F|1992-06-11|1992-06-22|1992-06-26|DELIVER IN PERSON|AIR|ully express asymptotes. special, i| +75660|617189|4726|3|14|15486.10|0.01|0.04|R|F|1992-08-06|1992-05-19|1992-08-08|TAKE BACK RETURN|RAIL|he fluffily bold dependencies. account| +75660|91011|41012|4|42|42084.42|0.06|0.00|R|F|1992-04-30|1992-07-12|1992-05-08|DELIVER IN PERSON|MAIL|es grow furiously theodolites.| +75660|609283|9284|5|21|25037.25|0.09|0.03|R|F|1992-06-21|1992-07-14|1992-06-25|COLLECT COD|AIR|s wake. fur| +75661|199768|24775|1|2|3735.52|0.06|0.01|N|O|1995-08-01|1995-07-16|1995-08-16|COLLECT COD|SHIP|ding theodolites unwind carefu| +75661|500728|729|2|11|19015.70|0.01|0.03|N|O|1995-08-06|1995-07-01|1995-08-12|COLLECT COD|FOB|across the slyly special dependencies.| +75661|727501|40016|3|7|10699.29|0.09|0.07|N|O|1995-08-19|1995-08-15|1995-09-05|NONE|TRUCK|ckly. even reque| +75661|102924|27929|4|32|61661.44|0.07|0.06|N|O|1995-06-29|1995-08-05|1995-07-05|NONE|RAIL|thily alongside of the blithely express re| +75661|830513|43030|5|27|38973.69|0.04|0.07|N|O|1995-08-02|1995-07-31|1995-08-07|DELIVER IN PERSON|MAIL|efully regular instructions-- | +75662|118403|43408|1|11|15635.40|0.07|0.01|N|O|1996-03-31|1996-05-09|1996-04-27|TAKE BACK RETURN|MAIL|dly bold deposits sleep bold, silent| +75662|991487|16526|2|33|52088.52|0.08|0.08|N|O|1996-03-30|1996-04-20|1996-04-21|NONE|SHIP|egular theodolites. regular gift| +75662|914373|1928|3|8|11098.64|0.05|0.05|N|O|1996-04-05|1996-05-26|1996-04-25|COLLECT COD|REG AIR|; slyly regular theodolites | +75662|862122|12123|4|44|47699.52|0.02|0.06|N|O|1996-07-05|1996-06-08|1996-07-09|TAKE BACK RETURN|TRUCK| regular sauternes. care| +75662|674549|37063|5|3|4570.53|0.08|0.08|N|O|1996-05-06|1996-04-27|1996-05-23|COLLECT COD|SHIP|nic, regular d| +75663|800120|12637|1|3|3060.24|0.00|0.06|N|O|1998-04-04|1998-03-07|1998-05-01|TAKE BACK RETURN|AIR| pending packages cajole furiou| +75663|615881|40906|2|22|39530.70|0.07|0.04|N|O|1998-04-24|1998-02-23|1998-04-25|NONE|AIR|es haggle blithely according to the quietl| +75663|98397|23400|3|26|36280.14|0.03|0.04|N|O|1998-03-04|1998-02-26|1998-03-28|COLLECT COD|AIR|e blithely blithely| +75663|743107|30650|4|9|10350.63|0.08|0.03|N|O|1998-04-25|1998-03-01|1998-05-01|NONE|MAIL|tain slyly | +75663|391191|3699|5|33|42311.94|0.04|0.03|N|O|1997-12-29|1998-01-31|1998-01-13|NONE|SHIP|ccounts along the blithely regul| +75663|734284|46799|6|12|15819.00|0.09|0.02|N|O|1998-04-23|1998-02-17|1998-04-24|TAKE BACK RETURN|AIR|s across the blithely pending accoun| +75663|100003|12506|7|19|19057.00|0.03|0.03|N|O|1998-04-16|1998-03-10|1998-04-29|NONE|RAIL|ly regular deposit| +75688|735840|10869|1|30|56274.30|0.06|0.06|N|O|1998-04-01|1998-03-07|1998-04-23|NONE|AIR|nto beans use quickly even foxes. slyly| +75688|250994|38510|2|45|87524.10|0.02|0.04|N|O|1998-02-16|1998-02-13|1998-02-26|DELIVER IN PERSON|RAIL|lyly even accounts. permanen| +75688|443452|30977|3|43|60003.49|0.02|0.04|N|O|1998-03-25|1998-03-09|1998-03-27|NONE|AIR|ly ironic f| +75688|96550|21553|4|50|77327.50|0.06|0.08|N|O|1998-01-23|1998-03-14|1998-01-26|TAKE BACK RETURN|SHIP|pecial foxes integrate blithely about the e| +75688|701011|38554|5|40|40479.20|0.07|0.04|N|O|1998-04-27|1998-03-08|1998-05-12|DELIVER IN PERSON|SHIP|s. ideas engage. qui| +75688|879802|17354|6|36|64143.36|0.01|0.04|N|O|1998-04-11|1998-02-22|1998-04-12|NONE|SHIP| requests? slyly bol| +75688|831412|18961|7|25|33584.25|0.06|0.04|N|O|1998-02-12|1998-03-22|1998-02-14|DELIVER IN PERSON|MAIL|instructions across the requests wake again| +75689|525198|12729|1|24|29356.08|0.03|0.07|N|O|1997-04-22|1997-03-27|1997-04-30|COLLECT COD|TRUCK|quests detect r| +75689|2032|39533|2|21|19614.63|0.06|0.05|N|O|1997-04-02|1997-04-04|1997-04-09|TAKE BACK RETURN|REG AIR|furiously i| +75689|139179|1682|3|9|10963.53|0.04|0.04|N|O|1997-03-14|1997-03-10|1997-04-03|COLLECT COD|MAIL|boost carefully. ironic fox| +75689|171064|21065|4|13|14755.78|0.04|0.03|N|O|1997-03-02|1997-02-10|1997-03-09|DELIVER IN PERSON|SHIP|ronic deposits affix caref| +75689|63393|25895|5|13|17633.07|0.10|0.08|N|O|1997-02-13|1997-02-11|1997-03-10|TAKE BACK RETURN|AIR|thless reques| +75690|516866|29377|1|49|92259.16|0.08|0.05|R|F|1993-02-13|1993-01-12|1993-03-10|TAKE BACK RETURN|RAIL|nding accounts. quickly final waters| +75690|956096|18616|2|12|13824.60|0.01|0.07|R|F|1992-10-23|1992-11-23|1992-11-13|COLLECT COD|AIR|ake furiously above | +75690|94375|31879|3|21|28756.77|0.06|0.02|R|F|1992-10-21|1992-12-13|1992-10-22|NONE|RAIL| the furiousl| +75690|152305|39815|4|49|66507.70|0.10|0.04|A|F|1992-11-15|1993-01-14|1992-12-05|DELIVER IN PERSON|REG AIR|s thrash blithely sly| +75690|775290|321|5|15|20478.90|0.09|0.03|R|F|1992-12-19|1992-11-23|1992-12-28|COLLECT COD|RAIL|lithely ironic theodolites. unusual, bol| +75691|838282|13315|1|17|20744.08|0.02|0.03|N|O|1997-10-16|1997-11-14|1997-10-28|TAKE BACK RETURN|SHIP|the regular, spec| +75692|585855|35856|1|49|95100.67|0.00|0.02|N|O|1996-05-05|1996-04-15|1996-05-29|NONE|AIR|l requests hagg| +75692|462090|12091|2|7|7364.49|0.10|0.04|N|O|1996-05-03|1996-04-02|1996-05-30|COLLECT COD|SHIP| carefully express foxe| +75692|332180|32181|3|9|10909.53|0.08|0.08|N|O|1996-02-17|1996-03-23|1996-03-11|DELIVER IN PERSON|MAIL| accounts; packages haggle fluffil| +75692|933484|46003|4|40|60697.60|0.04|0.01|N|O|1996-02-27|1996-04-07|1996-03-02|NONE|AIR|rnis unwind carefully acros| +75692|50994|995|5|32|62239.68|0.10|0.05|N|O|1996-04-02|1996-04-22|1996-04-05|COLLECT COD|RAIL|ial account| +75692|54248|4249|6|2|2404.48|0.04|0.02|N|O|1996-03-30|1996-03-02|1996-04-12|DELIVER IN PERSON|MAIL| requests caj| +75693|382992|20514|1|5|10374.90|0.04|0.08|A|F|1992-04-12|1992-05-23|1992-05-01|DELIVER IN PERSON|AIR|olites. ironic, bold pinto beans must haggl| +75693|941794|41795|2|16|29372.00|0.03|0.01|A|F|1992-05-31|1992-05-05|1992-06-06|NONE|AIR|lyly ironic de| +75693|730539|18082|3|9|14125.50|0.05|0.01|A|F|1992-03-29|1992-05-02|1992-04-10|COLLECT COD|RAIL|y special requests. pe| +75694|578774|3797|1|48|88932.00|0.09|0.06|N|O|1997-04-13|1997-01-26|1997-05-10|COLLECT COD|RAIL|eposits. regula| +75694|442376|4885|2|45|59325.75|0.06|0.05|N|O|1997-04-07|1997-02-01|1997-04-19|COLLECT COD|AIR|ncies along the account| +75694|999010|49011|3|50|55448.50|0.02|0.05|N|O|1997-01-20|1997-02-07|1997-02-03|COLLECT COD|RAIL|riously regular, ir| +75694|350464|37986|4|12|18173.40|0.00|0.07|N|O|1997-03-15|1997-02-26|1997-03-21|NONE|REG AIR|quickly regular excus| +75695|158750|33757|1|33|59688.75|0.08|0.03|R|F|1994-02-01|1993-11-25|1994-02-13|TAKE BACK RETURN|AIR| beans abov| +75695|109537|47044|2|21|32477.13|0.05|0.01|R|F|1993-12-09|1993-12-31|1993-12-31|DELIVER IN PERSON|REG AIR|s. fluffily specia| +75695|977072|14630|3|17|19533.51|0.02|0.00|R|F|1994-01-25|1993-12-22|1994-02-10|TAKE BACK RETURN|SHIP|fully about the quiet depe| +75695|640465|28002|4|47|66055.21|0.03|0.06|A|F|1993-12-06|1993-12-07|1993-12-26|NONE|MAIL| cajole blithely car| +75695|280894|5905|5|3|5624.64|0.07|0.04|R|F|1993-12-03|1993-11-21|1993-12-17|COLLECT COD|REG AIR|final dolphins wake slyly | +75695|982120|32121|6|15|18031.20|0.10|0.01|R|F|1993-11-12|1993-12-12|1993-11-20|TAKE BACK RETURN|SHIP|ve the furiously pending| +75695|486423|11442|7|26|36644.40|0.10|0.00|R|F|1993-11-23|1993-12-18|1993-12-03|TAKE BACK RETURN|SHIP|ironic ideas integrate? quic| +75720|309053|9054|1|36|38233.44|0.00|0.02|A|F|1995-04-07|1995-03-12|1995-05-06|TAKE BACK RETURN|MAIL|cial accounts. carefully bol| +75720|237434|37435|2|11|15085.62|0.04|0.05|A|F|1995-05-18|1995-04-16|1995-06-09|DELIVER IN PERSON|FOB|ages sleep carefully| +75720|536660|36661|3|40|67865.60|0.04|0.00|A|F|1995-04-26|1995-04-01|1995-05-17|DELIVER IN PERSON|REG AIR|bits. asymptotes wake. deposits are slyly.| +75720|642226|42227|4|43|50232.17|0.01|0.02|R|F|1995-04-21|1995-04-21|1995-05-10|TAKE BACK RETURN|MAIL|ackages wake bravely carefully pendin| +75721|347548|10055|1|39|62225.67|0.10|0.06|R|F|1993-07-21|1993-06-22|1993-07-30|TAKE BACK RETURN|TRUCK|ans across the furiously unus| +75721|230224|42729|2|15|17313.15|0.06|0.00|R|F|1993-05-22|1993-08-02|1993-06-20|COLLECT COD|RAIL|lly regular deposits sleep. | +75722|688000|25540|1|36|35566.92|0.08|0.07|R|F|1993-12-16|1994-02-15|1993-12-20|COLLECT COD|AIR|dolites. carefully pending dep| +75722|202139|14644|2|36|37480.32|0.06|0.02|A|F|1993-12-03|1994-02-04|1993-12-17|COLLECT COD|MAIL|sly regular deposits-- furi| +75722|340689|28208|3|45|77835.15|0.09|0.01|A|F|1993-12-20|1994-02-26|1994-01-02|TAKE BACK RETURN|MAIL|ly regular requests haggle slyly slyly| +75722|944213|19250|4|40|50286.80|0.06|0.03|A|F|1994-03-06|1993-12-28|1994-03-16|NONE|TRUCK|t. slyly bold braids after the| +75723|949587|37142|1|21|34367.34|0.08|0.07|N|O|1996-06-18|1996-07-05|1996-06-25|DELIVER IN PERSON|MAIL|its haggle| +75723|702261|2262|2|45|56845.35|0.10|0.00|N|O|1996-08-22|1996-07-13|1996-09-17|COLLECT COD|RAIL|ests nag qui| +75723|897681|22716|3|22|36930.08|0.02|0.02|N|O|1996-08-09|1996-07-26|1996-09-04|COLLECT COD|TRUCK|fully quiet asymptotes affix quickly a| +75724|664091|39118|1|37|39037.22|0.04|0.03|R|F|1994-11-07|1994-11-19|1994-11-10|TAKE BACK RETURN|AIR|requests. regular| +75724|368174|18175|2|33|40991.28|0.03|0.08|R|F|1994-12-08|1994-12-22|1994-12-22|NONE|TRUCK|packages. blithely special asymptotes pri| +75725|39562|2063|1|29|43545.24|0.08|0.01|N|O|1995-09-04|1995-07-04|1995-09-21|TAKE BACK RETURN|AIR|as above the deposits| +75725|904126|16645|2|14|15821.12|0.02|0.08|N|O|1995-08-15|1995-07-19|1995-09-01|TAKE BACK RETURN|FOB|eep. carefully permanent waters nag bl| +75725|634265|46778|3|15|17988.45|0.08|0.07|R|F|1995-05-23|1995-07-26|1995-06-08|DELIVER IN PERSON|RAIL| use above the deposits. requests a| +75725|86429|23933|4|17|24062.14|0.04|0.08|N|F|1995-05-31|1995-06-19|1995-06-29|NONE|RAIL|e slyly regular epitaphs. furiously ironi| +75725|603359|3360|5|21|26508.72|0.03|0.02|N|O|1995-07-02|1995-07-30|1995-07-08|NONE|FOB|g requests. deposits after | +75725|641473|16498|6|36|50919.84|0.00|0.00|N|O|1995-08-12|1995-08-03|1995-08-24|DELIVER IN PERSON|FOB| slyly regular requests a| +75725|229672|42177|7|18|28829.88|0.08|0.08|A|F|1995-06-09|1995-07-20|1995-06-10|NONE|TRUCK|furiously across the regular deposits. fi| +75726|84585|22089|1|47|73770.26|0.02|0.05|A|F|1992-10-31|1992-11-14|1992-11-14|TAKE BACK RETURN|REG AIR| requests. packag| +75726|616564|41589|2|9|13324.77|0.09|0.04|R|F|1992-12-21|1992-12-14|1993-01-11|COLLECT COD|FOB| above the furiously ironic dinos maintain| +75726|576096|1119|3|27|31645.89|0.02|0.05|R|F|1992-10-24|1992-11-10|1992-11-07|COLLECT COD|AIR|regular dependencies| +75726|434006|34007|4|25|23499.50|0.01|0.03|R|F|1992-10-21|1992-12-09|1992-11-13|DELIVER IN PERSON|SHIP|s. regular, regular dependenci| +75727|578876|28877|1|32|62555.20|0.09|0.01|N|O|1998-06-27|1998-06-29|1998-07-07|COLLECT COD|MAIL|ously ironic excu| +75727|156546|44056|2|4|6410.16|0.00|0.03|N|O|1998-07-13|1998-05-27|1998-08-12|COLLECT COD|REG AIR|d asymptote| +75727|63058|13059|3|21|21442.05|0.01|0.04|N|O|1998-05-05|1998-07-10|1998-05-06|NONE|TRUCK| accounts na| +75727|806158|43707|4|45|47884.95|0.04|0.02|N|O|1998-07-19|1998-06-01|1998-07-24|DELIVER IN PERSON|AIR|s are slyly among the furiously | +75727|90010|2512|5|23|23000.23|0.02|0.02|N|O|1998-07-16|1998-06-01|1998-08-03|COLLECT COD|SHIP| requests haggle slyly across the ironic,| +75727|783529|8560|6|34|54824.66|0.08|0.07|N|O|1998-08-02|1998-06-17|1998-08-17|DELIVER IN PERSON|AIR|dencies x-ray furiously. ironic reques| +75752|105817|18320|1|35|63798.35|0.01|0.00|N|O|1997-04-21|1997-07-06|1997-04-25|COLLECT COD|FOB|sts. slyly regular ideas su| +75753|465561|40580|1|49|74800.46|0.07|0.02|R|F|1993-04-12|1993-05-16|1993-04-27|DELIVER IN PERSON|TRUCK| kindle. instructions| +75754|213104|25609|1|31|31529.79|0.09|0.08|N|O|1997-03-02|1997-01-07|1997-03-25|DELIVER IN PERSON|SHIP|y. quickly even realms hag| +75754|623549|23550|2|10|14725.10|0.10|0.06|N|O|1997-03-15|1997-02-17|1997-04-11|TAKE BACK RETURN|AIR|lent excuses. carefully unusual a| +75754|976636|1675|3|7|11988.13|0.09|0.08|N|O|1997-02-25|1997-02-28|1997-03-03|TAKE BACK RETURN|AIR|egular foxes. regular, i| +75754|308800|21307|4|27|48837.33|0.00|0.07|N|O|1996-12-29|1997-01-17|1997-01-04|COLLECT COD|AIR|. patterns around the carefully| +75754|996340|33898|5|3|4308.90|0.10|0.05|N|O|1997-03-22|1997-02-21|1997-04-17|COLLECT COD|MAIL|he deposits. quickly i| +75755|288717|1223|1|16|27291.20|0.00|0.04|N|O|1996-12-27|1997-01-21|1997-01-24|COLLECT COD|REG AIR| notornis according to the bold | +75755|461273|48801|2|15|18513.75|0.10|0.03|N|O|1997-03-05|1996-12-16|1997-03-17|DELIVER IN PERSON|TRUCK|ependencies. never iro| +75755|610637|48174|3|20|30952.00|0.06|0.05|N|O|1996-11-11|1997-01-07|1996-11-16|DELIVER IN PERSON|RAIL|bt quickly slyly final theodolites. | +75755|964111|39150|4|8|9400.56|0.02|0.01|N|O|1997-02-19|1996-12-12|1997-03-13|COLLECT COD|FOB|es was never foxes. slyly pen| +75755|797883|10399|5|7|13865.95|0.02|0.06|N|O|1997-02-02|1996-12-31|1997-02-17|NONE|RAIL|sly ironic Tiresias. slyly even | +75755|3704|41205|6|4|6430.80|0.02|0.08|N|O|1997-02-13|1997-01-02|1997-03-08|DELIVER IN PERSON|REG AIR|efully across the always e| +75755|244618|7123|7|1|1562.60|0.06|0.02|N|O|1997-02-13|1996-12-27|1997-02-16|NONE|SHIP|ly ironic accounts. furiously i| +75756|284358|46864|1|10|13423.40|0.09|0.02|N|O|1997-08-14|1997-09-30|1997-08-22|TAKE BACK RETURN|AIR|ckages are. co| +75756|203639|16144|2|6|9255.72|0.01|0.03|N|O|1997-11-12|1997-10-10|1997-11-13|DELIVER IN PERSON|SHIP|lyly ironic excuses. furiously regular | +75756|560013|10014|3|32|34335.68|0.07|0.08|N|O|1997-08-28|1997-10-01|1997-09-25|TAKE BACK RETURN|RAIL|thely regular packages! carefully | +75757|740529|28072|1|44|69057.56|0.02|0.06|A|F|1993-12-15|1993-12-04|1994-01-13|NONE|SHIP|ending theodolites n| +75757|62454|37457|2|41|58074.45|0.06|0.04|R|F|1993-11-13|1993-12-28|1993-12-11|NONE|SHIP|e slyly. slyly regular acc| +75757|654676|17190|3|35|57072.40|0.09|0.00|R|F|1993-11-24|1993-12-12|1993-12-14|TAKE BACK RETURN|RAIL|unts. bold, ironic f| +75757|135000|35001|4|24|24840.00|0.00|0.00|A|F|1994-02-21|1993-12-25|1994-03-14|NONE|FOB|al deposits wake furiously f| +75757|942979|18016|5|20|40438.60|0.09|0.01|R|F|1994-01-26|1994-01-18|1994-02-13|NONE|AIR|special excuses integr| +75757|632871|20408|6|27|48703.68|0.04|0.04|R|F|1994-01-16|1994-01-29|1994-01-27|COLLECT COD|FOB| ideas. regular package| +75757|648144|10657|7|21|22934.31|0.10|0.01|R|F|1994-02-15|1993-12-14|1994-02-22|NONE|SHIP|ickly pending excuses cajole| +75758|340032|40033|1|29|31088.58|0.05|0.00|A|F|1995-01-24|1994-12-21|1995-01-30|TAKE BACK RETURN|MAIL|structions at the instructions e| +75759|324156|11675|1|7|8260.98|0.06|0.06|R|F|1994-02-10|1993-11-23|1994-03-08|COLLECT COD|REG AIR|g requests cajole furiously after| +75759|86378|36379|2|49|66854.13|0.02|0.01|R|F|1993-12-27|1994-01-11|1994-01-12|DELIVER IN PERSON|REG AIR|pending packages. special asymptotes w| +75759|744258|31801|3|45|58599.90|0.03|0.00|R|F|1993-12-09|1993-12-11|1993-12-21|COLLECT COD|TRUCK|asymptotes. st| +75759|738469|984|4|49|73864.07|0.09|0.05|R|F|1994-02-01|1994-01-03|1994-02-21|COLLECT COD|FOB|ffily bold excu| +75784|426213|13738|1|20|22783.80|0.03|0.05|R|F|1994-05-26|1994-06-14|1994-06-04|DELIVER IN PERSON|TRUCK|ajole blithely across the carefull| +75784|346484|34003|2|1|1530.47|0.09|0.02|A|F|1994-06-09|1994-05-08|1994-06-12|NONE|REG AIR|uctions nag carefully carefu| +75785|997015|47016|1|18|20015.46|0.10|0.07|N|O|1997-11-29|1997-11-13|1997-12-12|NONE|AIR|ts detect. | +75785|825585|13134|2|50|75527.00|0.05|0.05|N|O|1997-10-22|1997-10-24|1997-11-05|TAKE BACK RETURN|REG AIR|. regular accounts doze bli| +75785|606331|43868|3|45|55678.50|0.01|0.04|N|O|1997-11-28|1997-10-16|1997-12-10|COLLECT COD|MAIL|y ironic theo| +75785|593306|5818|4|15|20989.20|0.00|0.06|N|O|1997-10-25|1997-11-03|1997-11-11|COLLECT COD|MAIL|es against th| +75785|688647|26187|5|33|53975.13|0.00|0.01|N|O|1997-11-25|1997-10-21|1997-12-22|COLLECT COD|FOB|fully carefully regu| +75785|75916|25917|6|19|35946.29|0.00|0.06|N|O|1997-09-13|1997-10-24|1997-09-19|NONE|REG AIR|ress Tiresias. accounts affix s| +75786|599948|37482|1|8|16383.36|0.02|0.03|R|F|1992-05-13|1992-06-30|1992-05-29|NONE|FOB|the ironic, special deposits. | +75786|316582|4101|2|4|6394.28|0.04|0.08|R|F|1992-05-05|1992-07-02|1992-05-28|DELIVER IN PERSON|SHIP|eposits cajole| +75786|782781|32782|3|8|14910.00|0.07|0.01|R|F|1992-08-08|1992-05-27|1992-08-13|DELIVER IN PERSON|FOB|al account| +75786|186926|36927|4|24|48310.08|0.06|0.03|A|F|1992-07-08|1992-07-14|1992-07-18|COLLECT COD|TRUCK|ly regular| +75786|657329|32356|5|17|21866.93|0.02|0.05|A|F|1992-07-10|1992-06-20|1992-07-18|TAKE BACK RETURN|REG AIR|the express accounts. ironic, ironic| +75787|135447|47950|1|44|65227.36|0.03|0.06|R|F|1994-05-15|1994-04-17|1994-05-25|DELIVER IN PERSON|TRUCK|ilent decoys affix| +75787|451582|14092|2|10|15335.60|0.09|0.03|R|F|1994-05-28|1994-05-08|1994-05-29|NONE|FOB| after the slyly ironic instructions. fina| +75788|796966|21997|1|32|66013.76|0.05|0.05|R|F|1995-02-11|1995-01-01|1995-03-02|NONE|RAIL|ckages. final pint| +75788|600329|12842|2|25|30732.25|0.02|0.08|A|F|1994-11-29|1994-12-28|1994-12-27|DELIVER IN PERSON|FOB| instructions cajole blithe| +75788|725337|37852|3|37|50405.10|0.05|0.05|R|F|1995-01-01|1995-01-15|1995-01-22|DELIVER IN PERSON|TRUCK| accounts. bl| +75789|152164|27171|1|16|19458.56|0.03|0.01|N|O|1995-07-31|1995-09-13|1995-08-30|NONE|REG AIR|st the express d| +75789|419193|31702|2|13|14458.21|0.03|0.01|N|O|1995-08-29|1995-08-20|1995-09-24|NONE|MAIL|refully slyly final platelets. carefully | +75789|365689|40704|3|26|45621.42|0.04|0.05|N|O|1995-08-06|1995-08-20|1995-09-05|DELIVER IN PERSON|TRUCK|accounts: blithely sil| +75789|133698|46201|4|5|8658.45|0.00|0.00|N|O|1995-08-12|1995-08-26|1995-08-16|TAKE BACK RETURN|SHIP|ly. slyly slow accounts use furious| +75789|50667|25670|5|27|43676.82|0.02|0.04|N|O|1995-10-15|1995-07-30|1995-11-11|COLLECT COD|FOB| fluffily id| +75790|258509|8510|1|1|1467.49|0.02|0.00|N|O|1998-08-05|1998-06-15|1998-09-02|TAKE BACK RETURN|SHIP|en courts grow furiously. regul| +75790|757397|7398|2|16|23269.76|0.00|0.03|N|O|1998-07-10|1998-08-08|1998-07-22|TAKE BACK RETURN|AIR|beans. ironic dolphins haggle bli| +75790|569033|6567|3|10|11020.10|0.02|0.05|N|O|1998-07-22|1998-07-23|1998-08-07|NONE|REG AIR|s. quickly special packag| +75790|733553|46068|4|37|58701.24|0.04|0.02|N|O|1998-05-31|1998-07-29|1998-06-13|COLLECT COD|TRUCK|structions sleep quick| +75790|819435|44468|5|27|36568.53|0.04|0.07|N|O|1998-05-22|1998-07-21|1998-05-24|COLLECT COD|TRUCK|lar excuses acc| +75790|240944|15953|6|9|16964.37|0.05|0.03|N|O|1998-07-04|1998-07-10|1998-07-16|DELIVER IN PERSON|SHIP|ic ideas sublate. foxes around | +75790|538594|1105|7|2|3265.14|0.02|0.05|N|O|1998-08-04|1998-07-18|1998-08-27|COLLECT COD|FOB| slyly ironic theodolites sleep carefu| +75791|137898|401|1|5|9679.45|0.08|0.00|A|F|1993-07-16|1993-09-19|1993-08-12|DELIVER IN PERSON|SHIP| bold requests hag| +75791|639611|14636|2|14|21708.12|0.10|0.06|A|F|1993-08-13|1993-08-21|1993-09-02|NONE|SHIP|packages was. slyly ironi| +75791|929845|29846|3|36|67492.80|0.02|0.03|A|F|1993-09-29|1993-09-12|1993-10-14|DELIVER IN PERSON|MAIL|en accounts. blithely pend| +75791|902296|2297|4|39|50631.75|0.03|0.04|R|F|1993-10-12|1993-08-18|1993-10-14|NONE|RAIL|quests. packages| +75791|874826|49861|5|46|82835.88|0.05|0.03|A|F|1993-09-04|1993-08-29|1993-09-26|DELIVER IN PERSON|TRUCK|s about the furiously brav| +75816|674833|37347|1|35|63273.00|0.05|0.06|N|O|1996-11-22|1996-11-30|1996-12-15|NONE|FOB|al request| +75816|917410|42447|2|49|69941.13|0.09|0.04|N|O|1997-01-14|1997-01-07|1997-01-25|COLLECT COD|SHIP|hely express| +75816|902744|15263|3|23|40174.10|0.06|0.08|N|O|1997-02-03|1996-12-27|1997-02-12|DELIVER IN PERSON|TRUCK|he furiously even ideas. blithely ironic| +75816|407534|32551|4|7|10090.57|0.07|0.01|N|O|1996-12-20|1997-01-03|1997-01-07|COLLECT COD|AIR|ly final packages.| +75816|421054|8579|5|12|11700.36|0.02|0.06|N|O|1996-11-27|1996-11-26|1996-12-01|COLLECT COD|MAIL|usly express deposits. furiously r| +75816|641598|41599|6|36|55424.16|0.01|0.03|N|O|1996-12-21|1996-12-16|1997-01-09|TAKE BACK RETURN|TRUCK|y about the | +75817|662540|12541|1|42|63105.42|0.05|0.02|R|F|1993-07-08|1993-05-20|1993-07-18|COLLECT COD|REG AIR|ironic deposits. finally ev| +75817|302483|14990|2|35|51991.45|0.08|0.05|R|F|1993-06-04|1993-06-13|1993-07-01|TAKE BACK RETURN|TRUCK|he furiously even asymptotes. quick| +75817|815659|28176|3|49|77155.89|0.04|0.01|R|F|1993-07-15|1993-06-04|1993-08-07|TAKE BACK RETURN|FOB|hely expre| +75817|776016|26017|4|46|50231.08|0.09|0.02|R|F|1993-06-02|1993-05-23|1993-06-19|DELIVER IN PERSON|FOB| stealthy p| +75817|487695|37696|5|31|52162.77|0.04|0.00|A|F|1993-04-07|1993-06-09|1993-05-06|DELIVER IN PERSON|SHIP|usly slyly express packages. fur| +75818|133438|20945|1|44|64742.92|0.08|0.00|A|F|1994-02-13|1994-03-15|1994-02-15|TAKE BACK RETURN|AIR| kindle alongside of the final ideas. r| +75818|680055|5082|2|49|50715.98|0.00|0.03|A|F|1994-02-11|1994-02-10|1994-02-16|DELIVER IN PERSON|SHIP|ording to the sl| +75819|808762|8763|1|3|5012.16|0.07|0.05|R|F|1992-02-14|1992-04-19|1992-03-09|DELIVER IN PERSON|TRUCK| bold excuses use blithely. carefully unus| +75819|854894|17412|2|37|68407.45|0.09|0.06|A|F|1992-03-06|1992-03-25|1992-04-03|COLLECT COD|MAIL|al, silent theodolites must hi| +75820|210888|48401|1|12|21586.44|0.10|0.04|R|F|1993-08-31|1993-09-17|1993-09-06|NONE|REG AIR| doggedly carefully fin| +75820|385120|10135|2|26|31332.86|0.07|0.03|A|F|1993-10-30|1993-11-07|1993-11-01|TAKE BACK RETURN|RAIL|ns. accounts | +75820|709930|9931|3|12|23278.80|0.07|0.01|A|F|1993-09-21|1993-10-31|1993-09-25|DELIVER IN PERSON|RAIL|requests wake final| +75820|782213|44729|4|8|10361.44|0.05|0.04|R|F|1993-09-05|1993-11-06|1993-09-10|NONE|TRUCK|he final asymptotes nag a| +75820|645838|20863|5|17|30324.60|0.07|0.08|R|F|1993-10-03|1993-09-30|1993-10-17|COLLECT COD|RAIL|ing accounts haggle quickly aroun| +75820|597493|35027|6|48|76342.56|0.09|0.07|R|F|1993-09-19|1993-10-12|1993-09-24|COLLECT COD|TRUCK|s try to sleep slyly above the blithely exp| +75820|55728|18230|7|20|33674.40|0.10|0.05|A|F|1993-11-21|1993-10-16|1993-12-04|DELIVER IN PERSON|SHIP|furiously regular foxes. quickly bold instr| +75821|617556|5093|1|26|38311.52|0.09|0.05|R|F|1992-12-07|1993-01-09|1993-01-01|NONE|FOB|eep quickly| +75821|260154|47670|2|9|10027.26|0.03|0.05|R|F|1993-02-05|1993-02-27|1993-02-15|DELIVER IN PERSON|MAIL|he furiously slow ideas haggle fu| +75821|402325|14834|3|47|57683.10|0.09|0.01|R|F|1993-02-26|1993-01-31|1993-03-14|TAKE BACK RETURN|FOB|fter the bold platelets. pending pack| +75821|867336|17337|4|38|49525.02|0.05|0.05|R|F|1993-01-05|1993-01-18|1993-01-25|NONE|REG AIR|hely about the blithel| +75821|301036|38555|5|27|27999.54|0.07|0.05|A|F|1992-12-08|1993-02-23|1992-12-27|NONE|REG AIR|uctions. pending foxes cajole bli| +75822|693277|30817|1|48|60971.52|0.01|0.03|N|O|1995-09-12|1995-10-13|1995-09-30|TAKE BACK RETURN|MAIL|counts. furious| +75822|894860|32412|2|46|85321.72|0.02|0.03|N|O|1995-09-30|1995-11-09|1995-10-19|DELIVER IN PERSON|FOB| final deposits are quickly slyl| +75823|415069|2594|1|50|49202.00|0.08|0.07|N|O|1996-12-24|1996-12-24|1996-12-26|TAKE BACK RETURN|TRUCK| patterns. special request| +75823|49407|11908|2|50|67820.00|0.01|0.05|N|O|1997-01-22|1997-01-09|1997-01-23|TAKE BACK RETURN|AIR| express foxes a| +75823|381645|6660|3|34|58705.42|0.08|0.08|N|O|1997-03-13|1997-01-15|1997-03-16|COLLECT COD|FOB|ggle quickl| +75823|301658|14165|4|19|31533.16|0.02|0.03|N|O|1997-01-27|1996-12-22|1997-02-24|TAKE BACK RETURN|REG AIR|g blithely among the slyly fina| +75823|953923|3924|5|50|98844.00|0.03|0.07|N|O|1997-02-01|1997-01-18|1997-02-17|TAKE BACK RETURN|MAIL| ironic waters. bold accounts haggle slyly| +75848|835249|22798|1|22|26052.40|0.09|0.06|N|O|1996-07-02|1996-07-04|1996-07-13|DELIVER IN PERSON|FOB|s. fluffily | +75849|719403|31918|1|22|31292.14|0.02|0.03|N|O|1998-04-03|1998-01-28|1998-04-26|TAKE BACK RETURN|FOB|gular, pending theodolites cajole care| +75850|420785|20786|1|39|66524.64|0.08|0.05|A|F|1994-09-30|1994-08-18|1994-10-20|DELIVER IN PERSON|REG AIR| blithely ironic dolphins. blithely | +75850|128045|15552|2|26|27899.04|0.09|0.00|R|F|1994-07-02|1994-07-20|1994-07-04|TAKE BACK RETURN|AIR|ecial pinto beans are bli| +75850|47169|9670|3|45|50227.20|0.10|0.07|A|F|1994-06-27|1994-08-05|1994-07-18|NONE|TRUCK| special pinto beans wake. quick| +75850|761572|49118|4|23|37571.42|0.09|0.00|A|F|1994-10-03|1994-07-10|1994-10-10|DELIVER IN PERSON|AIR|ully final foxes wake. unusual packa| +75850|726251|1280|5|3|3831.66|0.00|0.02|R|F|1994-07-31|1994-07-25|1994-08-28|NONE|SHIP| asymptotes are quickly. regular pint| +75851|340034|27553|1|9|9666.18|0.06|0.06|R|F|1993-10-11|1993-10-06|1993-10-15|COLLECT COD|REG AIR|ithely bravely regular ideas. slyly | +75851|935876|23431|2|28|53531.24|0.04|0.02|A|F|1993-08-27|1993-09-26|1993-09-13|COLLECT COD|RAIL| beans. blithe| +75851|265572|15573|3|27|41514.12|0.03|0.05|A|F|1993-09-05|1993-10-10|1993-09-30|TAKE BACK RETURN|MAIL|ccounts inte| +75851|458727|8728|4|2|3371.40|0.10|0.07|R|F|1993-11-01|1993-08-26|1993-11-17|TAKE BACK RETURN|FOB|iously express pinto beans. bl| +75851|813443|38476|5|33|44761.20|0.03|0.08|A|F|1993-11-10|1993-10-08|1993-11-23|NONE|REG AIR|c ideas. blithely regular requests| +75851|536460|48971|6|15|22446.60|0.09|0.00|A|F|1993-09-14|1993-08-31|1993-10-03|NONE|SHIP|excuses are even | +75851|279548|4559|7|23|35133.19|0.04|0.07|A|F|1993-09-10|1993-09-14|1993-09-15|DELIVER IN PERSON|MAIL|packages haggle slyly ironically| +75852|351853|39375|1|30|57145.20|0.06|0.08|N|O|1997-11-18|1997-11-14|1997-12-05|NONE|REG AIR|es was blithely along the blithel| +75852|578958|41470|2|5|10184.65|0.10|0.04|N|O|1997-11-10|1997-11-07|1997-11-26|TAKE BACK RETURN|SHIP|kages cajole slyly bold, unusual excuses. | +75852|540107|40108|3|39|44736.12|0.05|0.02|N|O|1997-12-18|1997-10-21|1998-01-15|COLLECT COD|MAIL|nic theodolites. pending requests cajole| +75852|576321|38833|4|31|43316.30|0.06|0.06|N|O|1997-10-28|1997-11-14|1997-11-25|NONE|FOB|packages. reque| +75852|226226|26227|5|15|17283.15|0.04|0.05|N|O|1997-09-15|1997-11-19|1997-10-11|TAKE BACK RETURN|TRUCK|e slyly blithely pending theodo| +75852|177631|40135|6|45|76888.35|0.10|0.00|N|O|1997-12-26|1997-11-09|1998-01-19|TAKE BACK RETURN|MAIL|usly even depo| +75853|799414|36960|1|35|52968.30|0.07|0.04|N|O|1998-07-16|1998-10-09|1998-08-02|COLLECT COD|REG AIR|ies wake according to the slyly e| +75853|747160|47161|2|13|15692.69|0.01|0.06|N|O|1998-09-14|1998-08-25|1998-10-08|DELIVER IN PERSON|MAIL|ngly bold deposits wake sl| +75853|516526|29037|3|1|1542.50|0.06|0.08|N|O|1998-10-03|1998-09-11|1998-10-25|COLLECT COD|FOB|about the even reque| +75853|249577|12082|4|12|18318.72|0.00|0.08|N|O|1998-09-12|1998-08-19|1998-10-12|COLLECT COD|REG AIR|ar, regular packages near the careful| +75853|631528|6553|5|26|37946.74|0.10|0.01|N|O|1998-07-21|1998-09-15|1998-07-24|DELIVER IN PERSON|RAIL|final instructions de| +75853|87679|37680|6|39|65000.13|0.08|0.02|N|O|1998-08-11|1998-09-08|1998-08-25|NONE|TRUCK|s theodolite| +75853|618099|43124|7|49|49835.94|0.10|0.05|N|O|1998-08-09|1998-09-26|1998-08-18|COLLECT COD|SHIP|nding deposits sle| +75854|387172|37173|1|15|18887.40|0.01|0.07|A|F|1992-10-07|1992-11-08|1992-10-29|COLLECT COD|TRUCK|ckages haggle quickly carefully even excuse| +75854|192404|42405|2|47|70330.80|0.01|0.01|R|F|1992-11-26|1992-12-15|1992-12-19|NONE|SHIP| ideas use among the quickly sly in| +75854|726816|1845|3|1|1842.78|0.01|0.00|R|F|1992-11-26|1992-11-02|1992-12-23|DELIVER IN PERSON|FOB|ng to the regular instruc| +75854|581084|18618|4|26|30291.56|0.01|0.06|A|F|1992-12-30|1992-11-19|1993-01-08|NONE|AIR|lyly stealthy acco| +75855|781295|43811|1|30|41287.80|0.00|0.05|N|O|1997-12-12|1997-11-04|1998-01-09|DELIVER IN PERSON|RAIL|usly regular accounts. q| +75855|218640|6153|2|41|63903.83|0.04|0.08|N|O|1997-09-16|1997-11-14|1997-10-01|DELIVER IN PERSON|SHIP| even deposits s| +75855|677185|14725|3|49|56945.35|0.05|0.04|N|O|1997-11-29|1997-11-22|1997-12-09|COLLECT COD|REG AIR|anent deposits| +75855|445513|33038|4|22|32086.78|0.05|0.02|N|O|1997-12-03|1997-11-26|1997-12-04|DELIVER IN PERSON|RAIL| hinder furio| +75855|733211|45726|5|24|29860.32|0.09|0.00|N|O|1997-10-02|1997-11-08|1997-10-20|NONE|AIR|ent attainments cajole furiously final de| +75855|71578|46581|6|25|38739.25|0.01|0.05|N|O|1997-10-02|1997-11-07|1997-10-17|COLLECT COD|AIR|wake after the final packa| +75855|995500|45501|7|24|38291.04|0.00|0.04|N|O|1997-12-13|1997-10-30|1997-12-30|DELIVER IN PERSON|MAIL|old accounts haggle sl| +75880|366657|4179|1|16|27578.24|0.02|0.00|N|O|1995-07-10|1995-08-28|1995-08-04|NONE|FOB|e carefully. blithe| +75880|390710|15725|2|40|72028.00|0.02|0.01|N|O|1995-09-13|1995-07-08|1995-09-19|COLLECT COD|TRUCK|furiously slyly silent hockey| +75880|659576|22090|3|30|46066.20|0.07|0.02|N|O|1995-08-05|1995-07-24|1995-08-07|DELIVER IN PERSON|REG AIR|re fluffily above the permanent reques| +75880|486304|23832|4|5|6451.40|0.05|0.01|N|O|1995-08-27|1995-08-18|1995-09-24|NONE|REG AIR| slyly. doggedly final depo| +75880|301166|13673|5|20|23343.00|0.02|0.00|N|O|1995-08-26|1995-07-26|1995-09-24|DELIVER IN PERSON|SHIP| regular, special fox| +75880|691734|4248|6|26|44868.20|0.03|0.00|N|O|1995-09-05|1995-07-24|1995-09-13|DELIVER IN PERSON|SHIP|unts above the furio| +75880|968830|43869|7|34|64558.86|0.02|0.07|N|O|1995-09-06|1995-07-09|1995-09-07|TAKE BACK RETURN|FOB|stealthily. regular ideas are carefully a| +75881|116280|3787|1|39|50554.92|0.02|0.04|A|F|1993-11-17|1993-09-16|1993-12-11|NONE|SHIP|gouts after the| +75881|312079|49598|2|15|16365.90|0.01|0.03|A|F|1993-10-01|1993-09-10|1993-10-27|DELIVER IN PERSON|AIR| carefully even excuses! quickly | +75881|106603|19106|3|45|72432.00|0.04|0.05|R|F|1993-11-01|1993-08-19|1993-11-21|DELIVER IN PERSON|FOB|ily express deposits. even, f| +75881|671321|21322|4|24|31014.96|0.00|0.05|A|F|1993-07-21|1993-08-24|1993-08-15|DELIVER IN PERSON|MAIL|gouts run furiously after the b| +75881|888977|1495|5|36|70773.48|0.05|0.05|R|F|1993-10-16|1993-09-28|1993-10-30|NONE|REG AIR|ly pending packages across the ex| +75881|20121|7622|6|7|7287.84|0.04|0.06|A|F|1993-09-12|1993-09-20|1993-09-30|TAKE BACK RETURN|REG AIR|he ironic id| +75881|166209|16210|7|29|36980.80|0.05|0.00|R|F|1993-10-26|1993-10-14|1993-11-06|NONE|REG AIR|y final acc| +75882|463554|1082|1|42|63736.26|0.02|0.01|A|F|1994-05-17|1994-06-14|1994-06-04|TAKE BACK RETURN|FOB|pinto beans detect furious| +75882|945227|32782|2|43|54703.74|0.03|0.00|R|F|1994-04-07|1994-05-10|1994-04-26|NONE|REG AIR|gle requests. final requests a| +75883|943747|31302|1|1|1790.70|0.04|0.01|N|O|1997-03-11|1997-05-28|1997-03-23|DELIVER IN PERSON|FOB|fully slyly| +75883|553377|28400|2|7|10012.45|0.02|0.06|N|O|1997-03-23|1997-04-21|1997-03-27|TAKE BACK RETURN|RAIL|ong the pending deposits.| +75883|593362|43363|3|31|45115.54|0.06|0.07|N|O|1997-06-16|1997-05-28|1997-07-09|DELIVER IN PERSON|FOB| accounts nag quickly unusu| +75884|823336|23337|1|2|2518.58|0.03|0.08|A|F|1993-05-31|1993-06-28|1993-06-01|NONE|SHIP|egular packages. packages | +75884|800060|12577|2|12|11520.24|0.09|0.01|R|F|1993-07-04|1993-07-04|1993-08-03|COLLECT COD|FOB|y; slyly even accounts accordi| +75884|602382|39919|3|1|1284.35|0.09|0.03|A|F|1993-08-29|1993-07-08|1993-09-19|COLLECT COD|MAIL|iously unusual requests. final| +75884|217908|5421|4|27|49299.03|0.05|0.05|R|F|1993-06-02|1993-06-30|1993-06-04|COLLECT COD|REG AIR|g to the regula| +75884|365093|15094|5|35|40532.80|0.00|0.07|R|F|1993-09-05|1993-07-17|1993-09-21|DELIVER IN PERSON|REG AIR|platelets sleep. carefully | +75885|323292|10811|1|9|11837.52|0.00|0.00|N|O|1997-06-17|1997-07-05|1997-07-02|NONE|REG AIR|lithely special deposi| +75885|552129|27152|2|32|37795.20|0.09|0.02|N|O|1997-07-16|1997-08-05|1997-08-03|DELIVER IN PERSON|MAIL|doggedly unusual pack| +75885|627889|40402|3|23|41787.55|0.01|0.06|N|O|1997-08-28|1997-08-27|1997-08-30|COLLECT COD|RAIL| final, unusual forges. slyly expr| +75885|917489|30008|4|29|43686.76|0.10|0.02|N|O|1997-09-16|1997-07-04|1997-10-11|COLLECT COD|REG AIR|its use furiously. blithely regular exc| +75886|481021|43531|1|34|34068.00|0.07|0.00|A|F|1994-06-08|1994-05-09|1994-06-23|DELIVER IN PERSON|SHIP|nts engage| +75886|506029|6030|2|33|34155.00|0.06|0.02|A|F|1994-06-15|1994-05-24|1994-07-12|DELIVER IN PERSON|TRUCK|re fluffily slyly | +75886|827217|39734|3|41|46910.97|0.01|0.07|R|F|1994-06-20|1994-04-16|1994-06-28|NONE|RAIL| fluffily?| +75886|23542|36043|4|20|29310.80|0.00|0.00|A|F|1994-05-15|1994-05-24|1994-05-23|TAKE BACK RETURN|TRUCK|s wake slyly packages. blithely unusua| +75886|668125|5665|5|38|41537.42|0.07|0.00|R|F|1994-03-08|1994-04-12|1994-04-07|COLLECT COD|FOB|ccording to the car| +75886|163675|38682|6|30|52160.10|0.01|0.06|A|F|1994-03-28|1994-05-24|1994-04-06|TAKE BACK RETURN|TRUCK|tes cajole blithely. quickly final r| +75886|879668|42186|7|38|62609.56|0.00|0.04|A|F|1994-05-16|1994-04-28|1994-05-22|COLLECT COD|TRUCK|slyly about the busily regular deposits. c| +75887|579992|29993|1|11|22791.67|0.02|0.01|A|F|1993-06-03|1993-05-18|1993-06-17|COLLECT COD|AIR|ches. carefully regular theodolites serve f| +75887|918146|43183|2|49|57040.90|0.03|0.05|A|F|1993-06-16|1993-04-08|1993-07-13|TAKE BACK RETURN|MAIL|e ideas. idly bold pi| +75887|263391|38402|3|3|4063.14|0.05|0.00|R|F|1993-06-01|1993-04-22|1993-06-04|NONE|REG AIR|dencies boost fluff| +75887|797078|47079|4|49|57576.96|0.10|0.02|R|F|1993-05-17|1993-05-13|1993-06-15|NONE|FOB|y unusual requests sleep. regul| +75912|824100|24101|1|19|19457.14|0.05|0.08|N|O|1998-01-07|1997-12-09|1998-01-25|COLLECT COD|REG AIR|nding theodolites. ir| +75912|640502|15527|2|41|59141.27|0.03|0.02|N|O|1997-12-19|1998-01-12|1998-01-12|DELIVER IN PERSON|FOB|y excuses. fluffily| +75913|731508|31509|1|20|30789.40|0.04|0.03|N|O|1996-11-27|1997-02-02|1996-12-05|DELIVER IN PERSON|MAIL|final packages m| +75913|453965|16475|2|22|42216.68|0.03|0.02|N|O|1996-12-01|1997-02-02|1996-12-31|TAKE BACK RETURN|RAIL|haggle carefully quick, daring requests. | +75913|786274|11305|3|34|46248.16|0.01|0.04|N|O|1997-02-26|1996-12-15|1997-03-07|COLLECT COD|RAIL|ully bold requests. final instructions| +75913|902915|40470|4|22|42193.14|0.03|0.07|N|O|1996-11-10|1996-12-22|1996-12-07|NONE|MAIL|ar deposits. regular packages abov| +75914|698167|23194|1|35|40779.55|0.02|0.06|N|O|1998-01-16|1997-12-16|1998-01-22|COLLECT COD|REG AIR|unts. quickly iro| +75914|86028|48530|2|7|7098.14|0.01|0.00|N|O|1997-10-26|1997-11-17|1997-11-01|COLLECT COD|SHIP|arly along the regular requests. | +75914|865215|15216|3|35|41305.95|0.05|0.04|N|O|1997-10-13|1997-11-09|1997-10-27|COLLECT COD|MAIL|lar packag| +75914|656620|44160|4|26|40991.34|0.03|0.03|N|O|1997-10-26|1997-11-30|1997-11-14|NONE|AIR|y ironic c| +75914|805107|17624|5|15|15180.90|0.08|0.00|N|O|1997-11-19|1997-11-14|1997-11-30|NONE|RAIL|lyly blithely silent deposits. reg| +75915|788790|26336|1|16|30060.16|0.10|0.00|A|F|1993-06-29|1993-06-15|1993-07-08|TAKE BACK RETURN|RAIL|uriously alongs| +75915|183498|8505|2|31|49026.19|0.02|0.03|A|F|1993-05-13|1993-06-12|1993-06-01|TAKE BACK RETURN|MAIL|eodolites. unusual dependencies after t| +75915|38167|25668|3|48|53047.68|0.02|0.08|R|F|1993-05-02|1993-06-03|1993-05-14|DELIVER IN PERSON|AIR|pendencies detect blithely above the slyl| +75916|124461|11968|1|46|68331.16|0.00|0.00|N|O|1998-01-07|1998-01-08|1998-02-04|TAKE BACK RETURN|AIR| haggle carefully slyly pending platelet| +75916|809311|21828|2|15|18304.05|0.06|0.08|N|O|1997-11-23|1997-12-15|1997-12-09|DELIVER IN PERSON|RAIL|pending foxes. quickl| +75917|780600|43116|1|20|33611.40|0.01|0.06|R|F|1993-07-10|1993-06-12|1993-07-22|DELIVER IN PERSON|FOB|y even deposits wake car| +75917|532345|44856|2|29|39942.28|0.00|0.06|A|F|1993-05-26|1993-06-16|1993-06-24|NONE|FOB|ar accounts. sl| +75918|580948|18482|1|43|87243.56|0.09|0.04|R|F|1994-05-01|1994-06-10|1994-05-23|NONE|FOB|ess requests must have to solve quickly f| +75919|213701|1214|1|8|12917.52|0.00|0.03|N|O|1996-11-21|1997-01-02|1996-12-17|DELIVER IN PERSON|TRUCK|tions. final ideas | +75919|665939|40966|2|21|40002.90|0.03|0.05|N|O|1997-01-09|1996-11-24|1997-02-03|NONE|AIR|press frays. sly| +75919|426416|38925|3|30|40271.70|0.01|0.03|N|O|1996-12-01|1996-12-13|1996-12-06|DELIVER IN PERSON|MAIL|kages haggle carefully along the thin, fin| +75919|766764|29280|4|33|60414.09|0.09|0.04|N|O|1996-12-18|1996-12-23|1996-12-30|COLLECT COD|AIR| realms. deposits cajole blithely final | +75919|995817|8337|5|1|1912.77|0.07|0.05|N|O|1997-02-01|1996-12-07|1997-02-04|COLLECT COD|FOB|accounts. regular deposits wake blithely f| +75919|687492|6|6|28|41424.88|0.03|0.03|N|O|1997-01-31|1996-11-21|1997-02-24|NONE|TRUCK|deposits integr| +75944|493924|31452|1|6|11507.40|0.01|0.08|N|O|1997-07-25|1997-07-01|1997-07-26|NONE|SHIP|of the furiously exp| +75944|364993|27501|2|41|84377.18|0.03|0.00|N|O|1997-07-10|1997-07-24|1997-08-06|DELIVER IN PERSON|MAIL|he dependencies use fluffily pending pla| +75944|435193|10210|3|32|36101.44|0.08|0.01|N|O|1997-06-20|1997-06-15|1997-07-14|DELIVER IN PERSON|TRUCK|r frays. furiously final deposit| +75945|418838|6363|1|20|35136.20|0.03|0.07|N|O|1997-04-15|1997-03-26|1997-05-04|COLLECT COD|SHIP|ironic packages| +75945|393724|6232|2|1|1817.71|0.09|0.01|N|O|1997-02-13|1997-03-14|1997-03-06|TAKE BACK RETURN|AIR|after the boldly ironic depos| +75945|303691|3692|3|25|42367.00|0.00|0.06|N|O|1997-04-26|1997-04-30|1997-05-24|DELIVER IN PERSON|AIR|c theodolites across | +75946|33683|33684|1|2|3233.36|0.02|0.01|A|F|1993-09-17|1993-09-10|1993-10-11|COLLECT COD|AIR|kages poach fu| +75946|94774|7276|2|24|42450.48|0.05|0.01|R|F|1993-09-26|1993-09-14|1993-10-14|DELIVER IN PERSON|MAIL|ial theodoli| +75947|148668|36175|1|12|20599.92|0.09|0.01|R|F|1993-12-10|1993-10-25|1993-12-30|TAKE BACK RETURN|FOB|c instructions around the ironic pa| +75947|654993|17507|2|22|42855.12|0.00|0.04|A|F|1993-10-31|1993-11-08|1993-11-14|TAKE BACK RETURN|AIR|luffily express forges. slyly regular pa| +75947|461870|11871|3|23|42132.55|0.06|0.02|A|F|1993-09-27|1993-11-14|1993-10-13|NONE|TRUCK|s must have to | +75947|639260|26797|4|44|52766.12|0.07|0.08|R|F|1993-10-18|1993-11-10|1993-11-17|TAKE BACK RETURN|REG AIR|r the unusual dinos. furiously | +75948|322198|34705|1|18|21963.24|0.00|0.06|R|F|1993-02-01|1992-12-13|1993-02-10|COLLECT COD|MAIL|he instructions sleep furiously carefu| +75948|177168|27169|2|9|11206.44|0.08|0.01|A|F|1992-12-16|1993-01-23|1992-12-29|DELIVER IN PERSON|TRUCK|pendencies. blithely final epitaphs | +75949|860868|35903|1|11|20117.02|0.00|0.02|A|F|1992-06-20|1992-08-20|1992-07-12|COLLECT COD|FOB|he requests wake | +75949|594419|6931|2|33|49941.87|0.10|0.08|A|F|1992-09-20|1992-09-12|1992-09-27|TAKE BACK RETURN|SHIP|uests. regular accounts| +75949|384591|9606|3|49|82103.42|0.10|0.05|R|F|1992-09-10|1992-08-23|1992-10-04|NONE|TRUCK|dencies nag slyly final pinto be| +75949|805744|5745|4|27|44541.90|0.07|0.00|A|F|1992-07-14|1992-08-23|1992-07-28|NONE|RAIL|e blithely. bold instruc| +75949|136038|48541|5|24|25776.72|0.09|0.05|A|F|1992-09-26|1992-08-28|1992-10-11|NONE|SHIP|haggle always acros| +75949|381092|31093|6|9|10557.72|0.00|0.02|A|F|1992-08-18|1992-09-06|1992-08-21|COLLECT COD|SHIP|hely regular asymptotes. regular, final p| +75950|245449|45450|1|10|13944.30|0.08|0.06|R|F|1993-05-23|1993-05-07|1993-06-09|TAKE BACK RETURN|REG AIR|special exc| +75950|247924|35437|2|32|59901.12|0.05|0.00|R|F|1993-03-27|1993-05-09|1993-04-14|TAKE BACK RETURN|TRUCK|ven theodolites detec| +75950|847573|47574|3|26|39533.78|0.03|0.06|R|F|1993-07-12|1993-05-29|1993-07-17|COLLECT COD|REG AIR| pending packages boost| +75951|981147|18705|1|8|9824.80|0.10|0.04|N|O|1998-11-11|1998-09-18|1998-12-04|NONE|FOB|was busily instructions.| +75976|136011|23518|1|31|32457.31|0.00|0.01|N|O|1998-03-03|1998-03-26|1998-03-14|COLLECT COD|FOB|daringly ironic pinto bea| +75976|931968|31969|2|42|83996.64|0.05|0.00|N|O|1998-04-29|1998-04-05|1998-05-28|NONE|TRUCK|eposits use fluffily ruthless pl| +75976|576491|14025|3|37|57996.39|0.07|0.02|N|O|1998-05-07|1998-03-21|1998-05-29|DELIVER IN PERSON|FOB|ep blithely theodolites. express a| +75976|78429|3432|4|37|52074.54|0.08|0.00|N|O|1998-05-20|1998-04-19|1998-06-09|TAKE BACK RETURN|REG AIR|lyly quickly final accounts. | +75977|775327|12873|1|10|14022.90|0.08|0.07|A|F|1995-02-05|1995-01-24|1995-02-25|DELIVER IN PERSON|REG AIR| slyly pendi| +75978|697959|35499|1|38|74362.96|0.00|0.06|R|F|1994-03-24|1994-04-24|1994-04-23|DELIVER IN PERSON|TRUCK|ts wake alongside of| +75978|582726|45238|2|47|85008.90|0.08|0.06|A|F|1994-04-23|1994-05-28|1994-05-23|TAKE BACK RETURN|REG AIR|ly furious packages! | +75978|868184|43219|3|37|42629.18|0.08|0.02|A|F|1994-06-04|1994-05-08|1994-06-30|NONE|FOB|ffily. fluffily even theodolites | +75978|557457|7458|4|47|71178.21|0.02|0.08|R|F|1994-04-25|1994-04-29|1994-04-27|NONE|REG AIR| unusual accounts det| +75978|163854|26358|5|23|44110.55|0.08|0.04|A|F|1994-03-18|1994-04-30|1994-03-19|TAKE BACK RETURN|MAIL|nic deposits d| +75978|885957|10992|6|6|11657.46|0.08|0.07|R|F|1994-06-01|1994-05-20|1994-06-12|DELIVER IN PERSON|REG AIR| blithely a| +75978|269787|44798|7|35|61486.95|0.02|0.03|A|F|1994-04-12|1994-04-19|1994-04-15|COLLECT COD|TRUCK| ironic requests a| +75979|301323|1324|1|46|60918.26|0.04|0.01|A|F|1992-02-03|1992-03-20|1992-02-26|DELIVER IN PERSON|FOB|ost carefully packages. carefu| +75980|679770|29771|1|40|69989.60|0.07|0.00|N|O|1996-08-10|1996-05-12|1996-08-22|TAKE BACK RETURN|MAIL|ccounts. c| +75980|884539|9574|2|27|41134.23|0.01|0.04|N|O|1996-05-31|1996-07-10|1996-06-25|NONE|FOB|across the regular instructions. fu| +75980|443329|18346|3|46|58525.80|0.08|0.04|N|O|1996-05-23|1996-06-09|1996-06-08|TAKE BACK RETURN|FOB|xes sleep furi| +75980|26780|1781|4|30|51203.40|0.06|0.08|N|O|1996-07-11|1996-06-10|1996-08-08|NONE|RAIL| accounts cajole s| +75980|86021|48523|5|8|8056.16|0.10|0.06|N|O|1996-07-18|1996-05-24|1996-07-20|TAKE BACK RETURN|SHIP|d accounts sleep quickly abo| +75980|740689|3204|6|11|19026.15|0.03|0.01|N|O|1996-04-30|1996-06-02|1996-05-10|NONE|TRUCK| instructions doubt pa| +75981|368825|31333|1|26|49239.06|0.01|0.07|R|F|1992-05-18|1992-03-13|1992-05-20|COLLECT COD|MAIL|ously final | +75981|836656|49173|2|31|49370.91|0.10|0.01|A|F|1992-04-17|1992-03-28|1992-04-19|COLLECT COD|FOB|al deposits unwind. deposits wake quic| +75981|672930|10470|3|11|20931.90|0.03|0.03|R|F|1992-04-02|1992-03-16|1992-04-16|DELIVER IN PERSON|FOB|special warthogs wake against t| +75981|929176|16731|4|20|24102.60|0.06|0.02|R|F|1992-02-29|1992-04-03|1992-03-15|COLLECT COD|TRUCK|ress deposits are care| +75981|656609|31636|5|23|36008.11|0.10|0.03|R|F|1992-03-14|1992-03-25|1992-03-27|COLLECT COD|FOB|s sleep. even re| +75981|621657|46682|6|16|25257.92|0.05|0.07|A|F|1992-04-04|1992-04-08|1992-04-05|COLLECT COD|MAIL|ruthlessly final accounts. packages| +75981|173151|35655|7|37|45293.55|0.10|0.08|A|F|1992-06-03|1992-03-22|1992-06-28|NONE|MAIL|accounts sleep. caref| +75982|143692|31199|1|29|50335.01|0.04|0.01|N|O|1997-01-06|1997-02-28|1997-01-28|NONE|FOB|nic accounts believe against the fur| +75982|29698|42199|2|48|78129.12|0.04|0.06|N|O|1997-03-21|1997-03-06|1997-04-01|COLLECT COD|MAIL|blithely about th| +75982|119453|44458|3|36|53008.20|0.03|0.06|N|O|1997-02-12|1997-01-12|1997-02-18|NONE|REG AIR|e fluffily carefully | +75982|634839|47352|4|50|88690.00|0.01|0.04|N|O|1997-03-11|1997-01-18|1997-04-08|NONE|SHIP|al theodolite| +75983|351868|14376|1|32|61435.20|0.03|0.02|N|F|1995-06-09|1995-07-02|1995-06-27|NONE|FOB|al theodolites. platelets wake. bol| +76008|474406|36916|1|43|59356.34|0.08|0.04|A|F|1993-05-07|1993-03-13|1993-05-24|DELIVER IN PERSON|MAIL|ly regular deposi| +76008|335115|22634|2|22|25302.20|0.01|0.01|R|F|1993-01-21|1993-02-24|1993-02-13|TAKE BACK RETURN|AIR|lose, silent ideas caj| +76008|269491|44502|3|22|32130.56|0.06|0.00|A|F|1993-01-15|1993-03-15|1993-01-16|NONE|MAIL|sleep carefully among| +76008|327571|27572|4|23|36766.88|0.04|0.00|A|F|1993-03-18|1993-03-03|1993-03-21|TAKE BACK RETURN|REG AIR|lar ideas serve furiously blithel| +76008|485197|10216|5|1|1182.17|0.02|0.01|A|F|1993-02-11|1993-04-01|1993-03-07|COLLECT COD|FOB|phins. thinly special requests | +76008|697096|34636|6|9|9837.54|0.03|0.07|A|F|1993-04-21|1993-03-02|1993-05-09|NONE|REG AIR|accounts. slyly final sheaves wake furious| +76009|801835|14352|1|22|38209.38|0.02|0.05|N|O|1997-10-31|1997-09-03|1997-11-28|NONE|REG AIR| regular foxes hinder blithely| +76009|429035|41544|2|4|3856.04|0.03|0.07|N|O|1997-07-21|1997-09-15|1997-08-12|COLLECT COD|REG AIR|y blithe attainments. bravely final asym| +76009|779259|4290|3|49|65572.78|0.08|0.06|N|O|1997-09-07|1997-10-08|1997-09-27|DELIVER IN PERSON|FOB|ironic deposits wake slyly. regul| +76009|5823|30824|4|5|8644.10|0.04|0.05|N|O|1997-09-27|1997-09-04|1997-10-04|TAKE BACK RETURN|MAIL|yly pending packages among| +76010|748575|48576|1|43|69812.22|0.05|0.05|R|F|1993-12-29|1994-02-25|1994-01-26|TAKE BACK RETURN|RAIL|nal theodolites are. unu| +76010|291651|29167|2|26|42708.64|0.08|0.06|R|F|1994-02-11|1994-02-02|1994-02-17|COLLECT COD|SHIP|old deposi| +76010|767767|30283|3|38|69719.74|0.03|0.06|R|F|1994-04-05|1994-02-21|1994-04-19|NONE|REG AIR|e deposits. carefull| +76010|858215|33250|4|5|5865.85|0.01|0.02|R|F|1994-01-27|1994-01-23|1994-02-14|DELIVER IN PERSON|TRUCK|ual depende| +76010|7389|32390|5|9|11667.42|0.00|0.03|R|F|1994-03-22|1994-01-14|1994-03-29|COLLECT COD|MAIL|sual ideas.| +76010|185556|35557|6|7|11490.85|0.03|0.05|R|F|1994-01-08|1994-02-01|1994-01-22|DELIVER IN PERSON|SHIP|s. quickly re| +76011|409567|34584|1|34|50202.36|0.08|0.04|N|O|1997-06-14|1997-03-27|1997-07-14|TAKE BACK RETURN|FOB|uffily above the slyly even pinto beans? s| +76012|171159|8669|1|38|46745.70|0.05|0.02|R|F|1995-03-15|1995-04-06|1995-03-24|NONE|TRUCK|quests integrate among the regular | +76012|661741|49281|2|20|34054.20|0.10|0.03|A|F|1995-03-09|1995-04-18|1995-03-11|DELIVER IN PERSON|AIR| blithely final | +76012|875931|25932|3|5|9534.45|0.04|0.06|A|F|1995-05-24|1995-04-20|1995-06-13|TAKE BACK RETURN|AIR|fully pending| +76012|768597|43628|4|10|16655.60|0.02|0.01|A|F|1995-05-20|1995-05-22|1995-05-22|NONE|SHIP|le quickly idle, even foxes. express| +76012|798708|36254|5|28|50586.76|0.05|0.03|A|F|1995-05-18|1995-05-07|1995-06-13|DELIVER IN PERSON|SHIP|nic instructions: bold request| +76012|877924|15476|6|19|36135.72|0.02|0.05|N|O|1995-06-23|1995-05-30|1995-07-04|COLLECT COD|RAIL|p carefully according to the ironic | +76013|886096|48614|1|33|35707.65|0.09|0.00|N|O|1996-08-15|1996-08-19|1996-09-10|TAKE BACK RETURN|FOB|ackages grow aroun| +76013|600957|38494|2|49|91038.08|0.04|0.06|N|O|1996-08-16|1996-08-23|1996-08-30|DELIVER IN PERSON|RAIL|fully perma| +76014|375887|902|1|11|21591.57|0.06|0.02|R|F|1994-08-23|1994-08-20|1994-08-30|NONE|REG AIR|y. furiously regular | +76015|424103|36612|1|32|32866.56|0.00|0.05|N|O|1997-02-08|1996-11-24|1997-02-26|NONE|FOB|sly regular theodo| +76015|894949|19984|2|13|25270.70|0.10|0.03|N|O|1996-12-07|1996-12-03|1996-12-10|NONE|AIR|atelets use fluff| +76040|411495|11496|1|48|67510.56|0.09|0.08|N|O|1997-09-25|1997-10-09|1997-10-23|COLLECT COD|RAIL|. final foxes sleep quickly| +76040|980028|42548|2|50|55399.00|0.03|0.01|N|O|1997-09-12|1997-11-13|1997-10-02|COLLECT COD|FOB|the slyly pending accounts!| +76040|315510|3029|3|19|28984.50|0.03|0.00|N|O|1997-11-19|1997-11-22|1997-12-02|TAKE BACK RETURN|TRUCK|sleep blithely b| +76041|409426|46951|1|22|29378.80|0.06|0.04|N|O|1997-04-09|1997-06-19|1997-04-23|DELIVER IN PERSON|MAIL|usly ironic| +76041|207931|20436|2|50|91946.00|0.00|0.08|N|O|1997-04-26|1997-06-18|1997-05-09|TAKE BACK RETURN|MAIL|quests haggl| +76042|955217|17737|1|30|38165.10|0.05|0.02|N|O|1998-08-25|1998-07-08|1998-09-06|DELIVER IN PERSON|RAIL|pths unwind above the quickly express court| +76042|323903|23904|2|46|88636.94|0.07|0.02|N|O|1998-09-07|1998-07-13|1998-09-17|DELIVER IN PERSON|TRUCK| regularly ironic | +76042|830876|43393|3|19|34329.77|0.09|0.07|N|O|1998-07-30|1998-07-16|1998-08-20|DELIVER IN PERSON|REG AIR|egular tithes cajole f| +76042|518871|43892|4|16|30237.60|0.03|0.03|N|O|1998-08-03|1998-08-27|1998-08-11|COLLECT COD|AIR|ar requests. special acco| +76042|656184|6185|5|8|9121.20|0.05|0.03|N|O|1998-06-22|1998-08-28|1998-06-24|TAKE BACK RETURN|REG AIR|gular theodolites solve furiously along the| +76042|469372|31882|6|10|13413.50|0.06|0.08|N|O|1998-07-24|1998-07-24|1998-08-02|DELIVER IN PERSON|FOB|ully regular packages against the furiou| +76042|734701|9730|7|1|1735.67|0.09|0.05|N|O|1998-06-06|1998-07-09|1998-06-15|TAKE BACK RETURN|REG AIR|s wake slyly around the carefully ironic | +76043|107898|32903|1|29|55270.81|0.02|0.07|N|O|1997-04-08|1997-03-29|1997-04-16|TAKE BACK RETURN|RAIL|press requests. quickly i| +76043|433637|46146|2|5|7853.05|0.08|0.04|N|O|1997-04-29|1997-04-23|1997-05-03|DELIVER IN PERSON|SHIP|foxes according to the blithely regular rea| +76043|124199|36702|3|33|40365.27|0.04|0.02|N|O|1997-03-06|1997-05-13|1997-03-14|COLLECT COD|TRUCK|the pending, bold accounts. carefu| +76044|555054|5055|1|6|6654.18|0.03|0.05|N|O|1997-07-01|1997-07-11|1997-07-20|NONE|REG AIR|ts sleep quickly| +76044|792209|29755|2|48|62456.16|0.04|0.05|N|O|1997-09-09|1997-08-09|1997-10-04|TAKE BACK RETURN|REG AIR|ld pinto beans. unusual, final accoun| +76044|649608|24633|3|26|40496.82|0.09|0.01|N|O|1997-09-10|1997-08-07|1997-09-25|NONE|FOB|p furiously r| +76044|952907|15427|4|1|1959.86|0.05|0.00|N|O|1997-06-16|1997-08-03|1997-07-16|DELIVER IN PERSON|FOB| requests hinde| +76044|498357|10867|5|24|32527.92|0.04|0.05|N|O|1997-07-08|1997-08-11|1997-08-02|TAKE BACK RETURN|FOB|posits. furiously regul| +76045|186779|49283|1|23|42912.71|0.03|0.08|R|F|1994-02-12|1994-03-22|1994-02-25|DELIVER IN PERSON|RAIL|sly ironic accounts. slyly un| +76046|802398|27431|1|48|62416.80|0.07|0.03|N|O|1997-07-27|1997-06-26|1997-08-14|TAKE BACK RETURN|SHIP| final requests. fluffily e| +76046|892806|17841|2|33|59359.08|0.00|0.04|N|O|1997-05-21|1997-05-30|1997-06-15|TAKE BACK RETURN|AIR|sly. doggedly regular reque| +76046|377287|39795|3|25|34106.75|0.03|0.02|N|O|1997-07-23|1997-05-28|1997-07-24|TAKE BACK RETURN|REG AIR| carefully. quickl| +76046|51107|26110|4|6|6348.60|0.06|0.00|N|O|1997-05-07|1997-07-12|1997-05-14|DELIVER IN PERSON|REG AIR|ular deposits. regular, fin| +76046|944997|32552|5|21|42880.95|0.09|0.03|N|O|1997-07-25|1997-06-01|1997-08-07|TAKE BACK RETURN|AIR|ously carefully regul| +76046|559399|21911|6|25|36459.25|0.03|0.03|N|O|1997-04-29|1997-06-21|1997-05-29|DELIVER IN PERSON|AIR|lar accounts against the carefully ironic| +76047|851215|26250|1|40|46646.80|0.00|0.04|N|O|1997-03-28|1997-05-26|1997-04-10|DELIVER IN PERSON|RAIL|al deposits haggle final t| +76047|369124|6646|2|26|31020.86|0.08|0.03|N|O|1997-05-02|1997-05-07|1997-05-19|NONE|TRUCK| the always pending deposits shall boost b| +76047|850448|25483|3|48|67123.20|0.00|0.05|N|O|1997-06-04|1997-06-02|1997-06-17|COLLECT COD|RAIL|ly final requests sleep sl| +76047|463073|38092|4|31|32117.55|0.02|0.03|N|O|1997-04-20|1997-05-14|1997-04-24|COLLECT COD|REG AIR|hs sleep finall| +76047|855523|30558|5|35|51746.80|0.07|0.04|N|O|1997-05-20|1997-05-23|1997-06-18|DELIVER IN PERSON|MAIL|ily silent requests are b| +76047|773323|23324|6|16|22340.64|0.03|0.07|N|O|1997-06-29|1997-05-27|1997-07-20|DELIVER IN PERSON|REG AIR|s ought to use blithely. expre| +76047|231425|43930|7|17|23058.97|0.08|0.00|N|O|1997-07-11|1997-04-28|1997-07-23|DELIVER IN PERSON|FOB| quickly regular instruc| +76072|558770|46304|1|28|51205.00|0.07|0.00|N|O|1995-07-11|1995-09-03|1995-08-07|DELIVER IN PERSON|AIR|itaphs haggle furiously unus| +76073|891249|41250|1|18|22323.60|0.05|0.01|A|F|1992-07-15|1992-08-02|1992-07-18|NONE|RAIL|totes cajol| +76073|213891|13892|2|22|39707.36|0.04|0.01|A|F|1992-08-21|1992-09-05|1992-08-24|DELIVER IN PERSON|RAIL|ts. bold, final deposits hag| +76073|856100|43652|3|50|52803.00|0.01|0.06|A|F|1992-07-16|1992-09-03|1992-08-07|COLLECT COD|TRUCK|ously ironic | +76073|465006|27516|4|18|17477.64|0.02|0.08|R|F|1992-09-24|1992-08-28|1992-10-03|COLLECT COD|AIR|sly pending dependencies above the speci| +76074|158011|20515|1|2|2138.02|0.00|0.03|A|F|1992-06-01|1992-08-05|1992-06-29|TAKE BACK RETURN|TRUCK| kindle slyly after the slyly regu| +76074|679251|4278|2|31|38136.82|0.10|0.04|A|F|1992-06-11|1992-07-17|1992-06-21|TAKE BACK RETURN|RAIL|oach carefu| +76074|164289|39296|3|2|2706.56|0.03|0.06|A|F|1992-08-28|1992-06-20|1992-09-20|TAKE BACK RETURN|SHIP|pending exc| +76074|198251|35761|4|32|43176.00|0.00|0.08|R|F|1992-05-22|1992-06-19|1992-05-24|NONE|AIR|ly along the express accounts. carefull| +76074|998316|48317|5|44|62227.88|0.08|0.02|A|F|1992-08-10|1992-06-25|1992-08-29|TAKE BACK RETURN|REG AIR|express instructions. furiously| +76074|687930|12957|6|47|90141.30|0.10|0.08|R|F|1992-07-08|1992-08-06|1992-08-06|NONE|TRUCK|yly final pinto beans integrate careful| +76075|368038|5560|1|9|9954.18|0.07|0.00|N|O|1997-06-22|1997-07-28|1997-07-12|TAKE BACK RETURN|AIR|e blithely regular dependencies. platelet| +76075|598814|36348|2|34|65034.86|0.05|0.01|N|O|1997-08-01|1997-06-28|1997-08-23|TAKE BACK RETURN|MAIL|lar requests. blithely even ac| +76075|265016|15017|3|20|19620.00|0.04|0.01|N|O|1997-08-31|1997-08-10|1997-09-04|NONE|AIR|d ideas above| +76075|107397|19900|4|36|50558.04|0.08|0.08|N|O|1997-08-02|1997-06-27|1997-08-14|TAKE BACK RETURN|TRUCK|ions are. requests use carefully re| +76075|18818|18819|5|18|31262.58|0.04|0.04|N|O|1997-06-09|1997-07-31|1997-06-18|COLLECT COD|TRUCK| furiously | +76076|950998|26037|1|20|40979.00|0.07|0.06|R|F|1992-03-20|1992-04-27|1992-04-17|COLLECT COD|REG AIR|uts. bold requests u| +76076|414133|39150|2|40|41884.40|0.09|0.08|R|F|1992-04-07|1992-04-06|1992-04-20|NONE|SHIP|y regular gifts. | +76077|666665|16666|1|46|75054.98|0.03|0.08|N|O|1996-12-07|1997-02-03|1996-12-29|DELIVER IN PERSON|SHIP|old, regular warthogs cajole depo| +76077|634323|9348|2|36|45262.44|0.03|0.06|N|O|1996-12-31|1997-02-16|1997-01-04|TAKE BACK RETURN|FOB|courts. furiously r| +76077|64835|27337|3|28|50395.24|0.04|0.02|N|O|1997-03-08|1997-02-20|1997-04-06|COLLECT COD|RAIL|are quickly blithely express packag| +76077|668406|18407|4|7|9620.59|0.04|0.02|N|O|1997-03-06|1997-02-04|1997-03-13|COLLECT COD|FOB|thely around the even asymptotes.| +76077|885222|35223|5|10|12071.80|0.05|0.00|N|O|1997-02-18|1997-01-04|1997-03-06|NONE|FOB|detect furiously slyly silent | +76077|917264|42301|6|40|51248.80|0.03|0.00|N|O|1996-12-21|1997-02-13|1996-12-23|DELIVER IN PERSON|SHIP|y. pending| +76078|580283|17817|1|21|28628.46|0.08|0.07|N|O|1996-06-05|1996-04-23|1996-06-22|COLLECT COD|AIR|tealthy grouches hang slyly. | +76078|811747|36780|2|16|26539.20|0.03|0.01|N|O|1996-03-06|1996-03-18|1996-03-23|TAKE BACK RETURN|AIR|ial packages haggle alon| +76078|27721|40222|3|36|59353.92|0.04|0.00|N|O|1996-06-03|1996-03-22|1996-06-11|COLLECT COD|RAIL| slyly regular accounts| +76078|892493|42494|4|36|53476.20|0.02|0.06|N|O|1996-03-25|1996-05-05|1996-04-20|COLLECT COD|SHIP|efully regular courts hag| +76079|458325|33344|1|9|11549.70|0.00|0.06|R|F|1993-06-12|1993-05-26|1993-07-01|COLLECT COD|SHIP|kly pending accounts. idly ironic plate| +76079|60883|35886|2|6|11063.28|0.07|0.04|R|F|1993-07-26|1993-07-01|1993-07-27|COLLECT COD|REG AIR|the pending ideas use according to the s| +76079|259002|9003|3|11|10570.89|0.02|0.07|R|F|1993-06-10|1993-06-27|1993-07-06|TAKE BACK RETURN|TRUCK|quickly pending escap| +76104|669630|44657|1|3|4798.80|0.08|0.02|N|O|1998-01-04|1998-02-25|1998-01-08|TAKE BACK RETURN|SHIP|ial deposits | +76104|463971|38990|2|40|77398.00|0.01|0.03|N|O|1998-02-28|1998-01-13|1998-03-14|DELIVER IN PERSON|RAIL|cajole according to the slyly unusual e| +76104|955861|5862|3|6|11500.92|0.05|0.04|N|O|1997-12-28|1998-02-03|1998-01-26|TAKE BACK RETURN|MAIL|ully ironic deposits-- unusu| +76105|570902|45925|1|5|9864.40|0.09|0.07|N|O|1996-02-20|1996-03-01|1996-03-06|NONE|FOB|usly regular ideas use furiously| +76106|352265|14773|1|45|59276.25|0.04|0.04|N|O|1996-05-17|1996-05-09|1996-06-16|TAKE BACK RETURN|FOB|never unusual warhorses. foxes outsi| +76106|517355|29866|2|43|59010.19|0.02|0.03|N|O|1996-06-24|1996-04-12|1996-07-21|NONE|FOB|special reques| +76106|182346|44850|3|4|5713.36|0.05|0.06|N|O|1996-05-17|1996-04-05|1996-06-09|TAKE BACK RETURN|RAIL|ke express, ir| +76106|674266|11806|4|12|14882.76|0.00|0.03|N|O|1996-03-04|1996-04-02|1996-03-24|DELIVER IN PERSON|FOB|ess requests cajole. blithely regular acc| +76106|372832|22833|5|40|76192.80|0.06|0.07|N|O|1996-06-21|1996-04-22|1996-07-19|COLLECT COD|SHIP|aggle according to the fluffily final p| +76107|780518|43034|1|1|1598.48|0.06|0.06|N|O|1996-07-19|1996-08-29|1996-08-04|DELIVER IN PERSON|TRUCK|furiously ironic| +76107|152118|27125|2|21|24572.31|0.02|0.04|N|O|1996-10-14|1996-09-05|1996-11-13|DELIVER IN PERSON|REG AIR|ve the pending deposits! theodolites | +76107|631453|31454|3|16|22150.72|0.09|0.00|N|O|1996-10-11|1996-08-16|1996-10-20|COLLECT COD|FOB|r requests. | +76107|824237|49270|4|36|41802.84|0.05|0.03|N|O|1996-10-16|1996-09-16|1996-11-04|DELIVER IN PERSON|TRUCK|counts use slyly along the furiously| +76107|946808|46809|5|18|33385.68|0.03|0.04|N|O|1996-10-11|1996-09-04|1996-11-08|TAKE BACK RETURN|SHIP|symptotes. carefully | +76107|997589|10109|6|14|23611.56|0.08|0.02|N|O|1996-08-19|1996-08-04|1996-08-26|DELIVER IN PERSON|MAIL|y accordin| +76108|980611|5650|1|12|20298.84|0.01|0.04|A|F|1993-08-28|1993-07-25|1993-09-17|TAKE BACK RETURN|AIR| ironic requests? special deposits hagg| +76108|123798|36301|2|46|83802.34|0.04|0.00|R|F|1993-07-23|1993-08-07|1993-08-05|NONE|AIR| quickly unu| +76108|665915|15916|3|26|48902.88|0.01|0.03|R|F|1993-10-17|1993-08-26|1993-10-19|COLLECT COD|SHIP|s nag slyly fina| +76108|27193|39694|4|49|54889.31|0.07|0.05|A|F|1993-10-09|1993-08-13|1993-10-25|TAKE BACK RETURN|TRUCK|iously special packages among the furio| +76108|24191|24192|5|2|2230.38|0.06|0.01|A|F|1993-07-20|1993-09-15|1993-07-28|TAKE BACK RETURN|REG AIR|sits. quickl| +76108|568332|5866|6|3|4200.93|0.07|0.07|A|F|1993-07-06|1993-09-14|1993-08-05|NONE|SHIP|oost fluffily bold pack| +76109|214577|14578|1|6|8949.36|0.08|0.03|A|F|1993-07-23|1993-09-10|1993-08-01|TAKE BACK RETURN|MAIL|cial dolphins affix blithel| +76110|337412|37413|1|31|44931.40|0.01|0.03|N|O|1995-08-13|1995-08-10|1995-08-23|DELIVER IN PERSON|TRUCK|sily regular idea| +76110|876532|26533|2|28|42237.72|0.02|0.04|N|O|1995-07-21|1995-07-16|1995-08-05|TAKE BACK RETURN|RAIL|tes wake fluffily regular deposits. blithel| +76110|870366|45401|3|32|42762.24|0.00|0.07|N|O|1995-07-16|1995-06-25|1995-08-02|COLLECT COD|FOB|ajole furiously a| +76110|225687|38192|4|48|77408.16|0.08|0.01|N|O|1995-08-31|1995-06-25|1995-09-17|TAKE BACK RETURN|REG AIR|s integrate at the final, pending accoun| +76110|113467|38472|5|14|20726.44|0.01|0.00|R|F|1995-05-22|1995-07-23|1995-05-24|NONE|TRUCK|at the carefully b| +76110|31190|31191|6|1|1121.19|0.04|0.01|N|O|1995-07-05|1995-08-01|1995-07-22|NONE|FOB|carefully according to the blithel| +76110|206277|6278|7|19|22481.94|0.07|0.04|N|O|1995-09-01|1995-06-23|1995-09-22|COLLECT COD|FOB|uickly even deposits. saute| +76111|886322|36323|1|39|51022.92|0.04|0.04|A|F|1993-05-10|1993-05-01|1993-05-18|TAKE BACK RETURN|AIR|g the boldly special instruc| +76136|576845|1868|1|32|61498.24|0.03|0.04|A|F|1993-04-13|1993-04-24|1993-04-24|COLLECT COD|RAIL|, special theodolites kin| +76137|510392|10393|1|21|29449.77|0.06|0.06|N|O|1997-11-09|1997-10-21|1997-11-25|COLLECT COD|FOB|uriously unusual instruction| +76138|283300|20816|1|33|42348.57|0.01|0.00|N|O|1995-06-21|1995-07-17|1995-06-26|COLLECT COD|REG AIR|ests sleep bl| +76138|407313|7314|2|2|2440.58|0.04|0.02|N|O|1995-07-13|1995-07-07|1995-07-18|DELIVER IN PERSON|FOB|nic deposits u| +76138|704319|41862|3|19|25142.32|0.07|0.00|N|O|1995-09-03|1995-07-02|1995-10-02|NONE|REG AIR|lowly bold requests. bold reque| +76139|317031|29538|1|14|14672.28|0.06|0.03|A|F|1993-09-27|1993-10-12|1993-10-24|COLLECT COD|RAIL|es cajole fluffily a| +76139|334820|9833|2|19|35241.39|0.04|0.08|A|F|1993-10-01|1993-10-28|1993-10-05|NONE|TRUCK|sts play blithely fu| +76139|312519|12520|3|44|67386.00|0.00|0.06|A|F|1993-08-18|1993-10-12|1993-09-02|DELIVER IN PERSON|MAIL| packages wake alon| +76140|59909|22411|1|30|56067.00|0.05|0.02|A|F|1993-08-17|1993-08-23|1993-08-18|DELIVER IN PERSON|SHIP|al requests are. fu| +76140|874552|12104|2|36|54954.36|0.00|0.02|R|F|1993-10-04|1993-09-04|1993-10-07|DELIVER IN PERSON|REG AIR|carefully unus| +76140|591266|16289|3|40|54289.60|0.04|0.01|A|F|1993-11-10|1993-08-23|1993-12-08|DELIVER IN PERSON|TRUCK|ole. quickly final accounts across the ir| +76140|399852|49853|4|20|39036.80|0.05|0.06|R|F|1993-09-06|1993-09-12|1993-09-28|NONE|REG AIR|uriously accord| +76141|889239|39240|1|5|6140.95|0.09|0.08|A|F|1994-06-20|1994-06-08|1994-07-20|NONE|REG AIR|, bold sheaves sleep furiously alongside| +76141|423150|48167|2|41|43998.33|0.03|0.00|A|F|1994-04-12|1994-05-09|1994-04-13|NONE|RAIL|riously along | +76142|675274|301|1|45|56215.80|0.02|0.04|N|O|1996-11-03|1996-11-06|1996-11-11|NONE|RAIL|posits nag| +76142|320936|20937|2|45|88061.40|0.05|0.02|N|O|1996-11-17|1996-12-02|1996-12-09|COLLECT COD|TRUCK|ng deposits among the r| +76142|967269|42308|3|19|25388.18|0.08|0.07|N|O|1996-10-17|1996-10-07|1996-11-13|DELIVER IN PERSON|REG AIR|e the unusual pinto beans.| +76142|885382|10417|4|37|50591.58|0.08|0.06|N|O|1996-09-07|1996-10-04|1996-09-23|DELIVER IN PERSON|TRUCK|its. asymptotes haggle idly regular request| +76142|603650|28675|5|49|76127.38|0.06|0.07|N|O|1996-09-04|1996-11-03|1996-09-11|TAKE BACK RETURN|MAIL|ccounts haggle carefully above the furiou| +76142|530708|30709|6|4|6954.72|0.04|0.08|N|O|1996-09-24|1996-11-16|1996-10-16|TAKE BACK RETURN|REG AIR|beans. quickly ironic pinto beans | +76142|595916|20939|7|14|28166.46|0.08|0.01|N|O|1996-10-26|1996-12-02|1996-11-01|DELIVER IN PERSON|TRUCK|ic, regular theodolites. sl| +76143|552230|27253|1|30|38466.30|0.07|0.06|R|F|1994-02-15|1994-02-14|1994-02-25|DELIVER IN PERSON|AIR| carefully into the carefully final | +76143|316428|16429|2|9|12999.69|0.05|0.03|R|F|1994-04-15|1994-03-17|1994-05-12|TAKE BACK RETURN|AIR|deposits. bold, ruthless ins| +76143|195281|45282|3|32|44040.96|0.06|0.03|R|F|1994-03-18|1994-02-15|1994-04-06|COLLECT COD|SHIP|after the quiet requests. sl| +76143|84175|34176|4|42|48685.14|0.09|0.03|R|F|1994-04-09|1994-01-28|1994-04-15|DELIVER IN PERSON|AIR|efully pending decoys? blithely| +76168|381978|19500|1|14|28839.44|0.09|0.06|R|F|1994-11-25|1995-01-06|1994-12-18|DELIVER IN PERSON|TRUCK|ests sleep slyly along the slyly bold ins| +76168|889881|14916|2|50|93542.00|0.07|0.00|R|F|1994-10-23|1994-12-07|1994-11-09|DELIVER IN PERSON|MAIL|lly regular accounts. platelets h| +76168|223102|23103|3|48|49204.32|0.10|0.07|A|F|1995-01-21|1995-01-16|1995-02-09|DELIVER IN PERSON|FOB|cross the depen| +76168|660424|47964|4|24|33225.36|0.09|0.08|A|F|1994-11-09|1995-01-07|1994-12-04|COLLECT COD|REG AIR|al foxes. unu| +76168|736894|36895|5|26|50202.36|0.06|0.00|A|F|1995-01-25|1995-01-18|1995-02-09|TAKE BACK RETURN|RAIL|bold warhorses.| +76168|961942|24462|6|34|68132.60|0.07|0.05|R|F|1994-12-14|1994-11-20|1994-12-31|DELIVER IN PERSON|REG AIR|s cajole fluffily regular foxes. carefull| +76168|353416|15924|7|5|7347.00|0.00|0.02|R|F|1994-11-27|1995-01-16|1994-12-15|COLLECT COD|MAIL|le carefully among the iro| +76169|850992|993|1|22|42744.90|0.06|0.01|N|O|1997-08-26|1997-08-27|1997-09-16|COLLECT COD|AIR|slyly express deposits detect abo| +76169|611151|36176|2|24|25490.88|0.05|0.05|N|O|1997-07-23|1997-09-24|1997-08-22|NONE|RAIL|equests. blithely even packages doubt | +76169|613790|26303|3|45|76669.20|0.09|0.05|N|O|1997-08-28|1997-08-17|1997-09-07|COLLECT COD|SHIP|. slyly regular pac| +76169|966725|4283|4|3|5375.04|0.03|0.05|N|O|1997-06-29|1997-08-07|1997-07-03|TAKE BACK RETURN|SHIP|ss excuses must integrate beyond the ironi| +76170|239492|27005|1|48|68711.04|0.08|0.00|A|F|1993-03-26|1993-03-02|1993-04-17|DELIVER IN PERSON|AIR|slyly blithely regular theodolites. | +76170|128719|28720|2|4|6990.84|0.09|0.08|A|F|1993-04-19|1993-02-27|1993-05-16|DELIVER IN PERSON|SHIP|aphs wake bold packages. silently ex| +76170|378938|16460|3|11|22186.12|0.02|0.03|R|F|1993-04-11|1993-03-11|1993-05-02|NONE|MAIL| the fluffily ex| +76170|798873|23904|4|24|47324.16|0.04|0.01|A|F|1993-02-07|1993-02-09|1993-02-26|COLLECT COD|SHIP|ly regular deposits. fluffily unus| +76171|470081|7609|1|12|12612.72|0.08|0.07|R|F|1993-05-29|1993-05-01|1993-06-16|NONE|FOB|e slyly. slyly final depend| +76171|647515|35052|2|3|4387.44|0.06|0.02|R|F|1993-03-18|1993-04-29|1993-03-30|COLLECT COD|RAIL|the carefully pending theodolites. | +76171|773667|11213|3|21|36553.23|0.07|0.05|A|F|1993-04-04|1993-05-17|1993-04-15|DELIVER IN PERSON|SHIP|beans. blithe| +76171|7552|20053|4|1|1459.55|0.10|0.00|A|F|1993-03-28|1993-06-02|1993-04-20|NONE|SHIP|ole. slyly ir| +76171|918705|18706|5|44|75841.04|0.01|0.03|R|F|1993-03-28|1993-05-19|1993-04-09|COLLECT COD|TRUCK|ely special plate| +76172|752627|15143|1|9|15116.31|0.03|0.08|R|F|1992-12-20|1992-10-11|1993-01-06|NONE|MAIL|jole with the blithely unusual pac| +76172|399502|24517|2|14|22420.86|0.06|0.08|A|F|1992-09-13|1992-11-10|1992-10-01|NONE|SHIP|es thrash blithely. special | +76172|427642|15167|3|37|58075.94|0.10|0.03|A|F|1992-11-17|1992-10-17|1992-12-11|COLLECT COD|SHIP|ages. final, ironi| +76172|367451|29959|4|47|71366.68|0.01|0.01|R|F|1992-10-17|1992-10-27|1992-11-02|DELIVER IN PERSON|RAIL|nic excuses. furiously final dependencie| +76172|734834|22377|5|14|26163.20|0.06|0.06|A|F|1992-12-14|1992-11-22|1992-12-15|COLLECT COD|RAIL|ests detect carefully final instru| +76172|350654|13162|6|15|25569.60|0.03|0.07|A|F|1992-10-10|1992-10-21|1992-11-01|COLLECT COD|SHIP|around the requests sleep furiously| +76172|428358|40867|7|12|15435.96|0.02|0.00|R|F|1992-11-07|1992-11-06|1992-11-16|TAKE BACK RETURN|REG AIR|uffily final foxes sleep. slyly bold ins| +76173|407748|45273|1|1|1655.72|0.01|0.02|A|F|1994-04-07|1994-05-06|1994-04-28|COLLECT COD|SHIP|egular, unusual platel| +76173|19634|32135|2|23|35733.49|0.01|0.08|A|F|1994-07-05|1994-06-15|1994-07-18|TAKE BACK RETURN|FOB|ages haggle at the regular packages. regula| +76173|979662|17220|3|26|45282.12|0.00|0.04|A|F|1994-04-29|1994-05-27|1994-05-17|DELIVER IN PERSON|RAIL|kages would | +76174|984640|22198|1|7|12072.20|0.06|0.06|N|O|1998-05-18|1998-04-01|1998-05-31|DELIVER IN PERSON|FOB|e dogged i| +76174|842241|29790|2|33|39045.60|0.02|0.06|N|O|1998-04-06|1998-03-02|1998-04-25|DELIVER IN PERSON|REG AIR|ts are fluffily requests. packages wake | +76174|531603|31604|3|27|44133.66|0.03|0.06|N|O|1998-04-09|1998-03-12|1998-05-04|DELIVER IN PERSON|SHIP|detect. eve| +76174|638018|25555|4|6|5735.88|0.06|0.08|N|O|1998-05-26|1998-02-27|1998-06-02|TAKE BACK RETURN|MAIL|ages sleep slyly car| +76174|155672|30679|5|13|22459.71|0.02|0.03|N|O|1998-02-28|1998-03-14|1998-03-04|TAKE BACK RETURN|TRUCK|dolites cajole sl| +76175|460834|10835|1|15|26922.15|0.02|0.02|R|F|1993-01-22|1993-04-13|1993-02-06|COLLECT COD|TRUCK|tegrate. pending fo| +76175|235004|35005|2|7|6572.93|0.02|0.00|R|F|1993-03-19|1993-03-16|1993-04-03|TAKE BACK RETURN|SHIP|nic instructions. regu| +76200|980962|18520|1|36|73545.12|0.10|0.08|A|F|1993-07-10|1993-05-29|1993-07-20|DELIVER IN PERSON|AIR|fluffily unusual requests serve blithe| +76200|19919|44920|2|13|23905.83|0.04|0.07|A|F|1993-07-07|1993-05-01|1993-07-14|TAKE BACK RETURN|SHIP|l accounts. ruthlessly even fo| +76200|763217|13218|3|9|11521.62|0.08|0.07|R|F|1993-05-30|1993-05-01|1993-06-19|COLLECT COD|AIR|p according to the carefully | +76200|386354|48862|4|40|57613.60|0.07|0.02|R|F|1993-05-17|1993-06-04|1993-06-03|COLLECT COD|SHIP| the silent, even ideas; carefully fina| +76201|28916|16417|1|7|12914.37|0.09|0.02|A|F|1994-02-09|1993-12-22|1994-02-17|DELIVER IN PERSON|RAIL|al dinos. carefully ironic ideas after t| +76202|790032|40033|1|35|39270.00|0.00|0.03|R|F|1994-06-29|1994-06-01|1994-07-17|TAKE BACK RETURN|MAIL| deposits cajole furiously above the s| +76202|54679|42183|2|48|78416.16|0.08|0.05|R|F|1994-06-20|1994-06-03|1994-06-28|NONE|SHIP|he warhorses.| +76203|624956|49981|1|33|62070.36|0.06|0.04|N|O|1997-12-07|1997-11-24|1997-12-11|NONE|RAIL|ly regular foxes was furiously. quickly ex| +76204|889796|2314|1|49|87501.75|0.10|0.04|N|O|1998-05-04|1998-04-19|1998-05-24|DELIVER IN PERSON|SHIP|lithely bold a| +76204|791064|28610|2|34|39271.02|0.09|0.06|N|O|1998-05-10|1998-05-26|1998-05-11|TAKE BACK RETURN|REG AIR|uickly express as| +76204|402101|39626|3|8|8024.64|0.09|0.05|N|O|1998-06-21|1998-05-05|1998-07-04|TAKE BACK RETURN|RAIL|ular packages kindle along the care| +76204|97460|22463|4|6|8744.76|0.10|0.07|N|O|1998-06-12|1998-06-09|1998-07-04|DELIVER IN PERSON|REG AIR|egular ide| +76204|995403|32961|5|32|47947.52|0.09|0.06|N|O|1998-05-17|1998-04-21|1998-05-18|DELIVER IN PERSON|AIR|olphins are. instructions are furiously acc| +76204|735383|10412|6|35|49642.25|0.10|0.02|N|O|1998-04-12|1998-04-20|1998-04-26|DELIVER IN PERSON|FOB|elets. ironic, regular packages nag fl| +76205|575455|12989|1|1|1530.43|0.10|0.08|A|F|1994-11-17|1994-11-28|1994-12-01|NONE|REG AIR|y regular requests. instructions haggle. ac| +76205|663357|25871|2|23|30367.36|0.03|0.02|R|F|1994-10-03|1994-11-17|1994-10-12|NONE|FOB|ccounts are a| +76205|27571|27572|3|6|8991.42|0.06|0.03|A|F|1994-11-12|1994-11-08|1994-11-19|DELIVER IN PERSON|REG AIR|pending depos| +76205|371650|21651|4|36|61979.04|0.00|0.03|A|F|1994-09-27|1994-11-16|1994-10-22|TAKE BACK RETURN|REG AIR|ions are. even, unusual | +76205|318338|5857|5|37|50183.84|0.02|0.07|R|F|1994-12-12|1994-11-12|1994-12-25|DELIVER IN PERSON|MAIL|inally after the carefully even co| +76206|262224|37235|1|8|9489.68|0.07|0.08|N|O|1997-01-09|1997-02-15|1997-01-29|COLLECT COD|REG AIR|efully fluffily even| +76207|733852|46367|1|28|52802.96|0.01|0.05|N|O|1996-06-03|1996-06-26|1996-06-22|DELIVER IN PERSON|REG AIR|oubt above the ironic accounts. b| +76207|849850|37399|2|15|26997.15|0.03|0.07|N|O|1996-08-09|1996-06-30|1996-09-07|DELIVER IN PERSON|FOB|cording to | +76207|417349|42366|3|43|54451.76|0.02|0.07|N|O|1996-08-18|1996-08-11|1996-08-24|DELIVER IN PERSON|RAIL|s doubt even deposits. slyly special requ| +76207|370645|8167|4|29|49753.27|0.06|0.06|N|O|1996-07-15|1996-08-08|1996-07-18|NONE|TRUCK|s nag after the c| +76207|427492|2509|5|20|28389.40|0.06|0.08|N|O|1996-06-17|1996-08-05|1996-06-27|TAKE BACK RETURN|SHIP|xes. ironic deposits cajole. eve| +76207|846992|34541|6|15|29084.25|0.03|0.07|N|O|1996-05-25|1996-08-06|1996-06-01|COLLECT COD|AIR|quests. slowly even pinto beans us| +76232|923457|11012|1|24|35529.84|0.07|0.07|R|F|1992-09-12|1992-06-25|1992-10-03|NONE|RAIL|es wake blithely expre| +76232|529323|4344|2|6|8113.80|0.01|0.04|R|F|1992-08-12|1992-06-28|1992-09-01|NONE|TRUCK|refully unusual, ironic depths.| +76232|317242|29749|3|33|41554.59|0.04|0.08|R|F|1992-09-01|1992-07-19|1992-09-07|NONE|MAIL|s. ironic foxes should ha| +76232|870555|45590|4|23|35086.73|0.02|0.02|A|F|1992-06-14|1992-07-14|1992-06-29|TAKE BACK RETURN|SHIP|regular requests above th| +76232|402144|14653|5|40|41844.80|0.04|0.02|A|F|1992-05-24|1992-07-21|1992-05-31|TAKE BACK RETURN|MAIL|furiously regular theodolites among the q| +76232|829389|16938|6|29|38231.86|0.01|0.05|R|F|1992-09-09|1992-07-08|1992-09-28|COLLECT COD|TRUCK| requests ca| +76232|540888|3399|7|33|63652.38|0.08|0.05|A|F|1992-06-13|1992-06-28|1992-07-12|DELIVER IN PERSON|TRUCK|ending pinto beans. carefully regul| +76233|700720|25749|1|18|30972.42|0.10|0.03|N|O|1998-01-04|1997-12-15|1998-01-29|NONE|SHIP|unts across the fluf| +76233|993902|18941|2|44|87817.84|0.05|0.02|N|O|1998-02-09|1997-12-13|1998-03-01|TAKE BACK RETURN|RAIL|ly furiously regular accounts? | +76233|500265|37796|3|13|16448.12|0.03|0.05|N|O|1997-12-01|1997-12-12|1997-12-25|NONE|RAIL| ironic dependencies haggl| +76234|721070|46099|1|15|16365.60|0.01|0.00|A|F|1994-03-01|1994-03-15|1994-03-27|DELIVER IN PERSON|SHIP|ptotes. furiously even co| +76234|22110|22111|2|9|9288.99|0.09|0.07|A|F|1994-02-02|1994-03-10|1994-02-28|TAKE BACK RETURN|REG AIR|y bold dolph| +76234|600756|25781|3|25|41418.00|0.08|0.01|A|F|1994-03-24|1994-04-18|1994-04-04|COLLECT COD|REG AIR|blithely final requests boost | +76234|892938|5456|4|37|71442.93|0.02|0.05|R|F|1994-03-12|1994-02-28|1994-03-14|TAKE BACK RETURN|MAIL| cajole furiously spe| +76234|594646|19669|5|50|87031.00|0.09|0.08|A|F|1994-02-01|1994-04-03|1994-02-21|NONE|AIR| bold foxe| +76235|856125|18643|1|8|8648.64|0.07|0.04|R|F|1993-08-10|1993-07-30|1993-08-13|DELIVER IN PERSON|TRUCK|furiously even instructions| +76235|886902|24454|2|44|83109.84|0.08|0.05|A|F|1993-08-03|1993-08-13|1993-08-26|TAKE BACK RETURN|AIR|furious packages boost carefully blit| +76235|148927|23932|3|19|37542.48|0.00|0.06|R|F|1993-09-30|1993-07-24|1993-10-01|NONE|TRUCK|y regular deposits. ironic packages are. | +76235|2745|15246|4|7|11534.18|0.10|0.06|R|F|1993-08-24|1993-08-30|1993-09-18|DELIVER IN PERSON|FOB|, express requests! sly theodo| +76236|198415|35925|1|23|34808.43|0.03|0.01|R|F|1992-04-13|1992-04-02|1992-05-11|NONE|RAIL|s. blithely unusual dependencies sleep | +76236|758543|33574|2|18|28827.18|0.06|0.02|R|F|1992-05-31|1992-04-13|1992-06-12|COLLECT COD|SHIP|furiously furiously specia| +76236|829665|42182|3|28|44649.36|0.08|0.08|A|F|1992-05-06|1992-03-20|1992-05-31|TAKE BACK RETURN|AIR|dolphins. carefully pending requests hag| +76236|177871|27872|4|46|89648.02|0.01|0.06|A|F|1992-02-23|1992-03-25|1992-03-08|COLLECT COD|SHIP|quests. theodolit| +76236|472515|22516|5|2|2974.98|0.01|0.04|A|F|1992-04-25|1992-03-24|1992-05-07|COLLECT COD|SHIP|final waters. quic| +76236|546407|8918|6|3|4360.14|0.10|0.06|A|F|1992-04-08|1992-04-10|1992-04-28|TAKE BACK RETURN|AIR|carefully ironic packages after the s| +76236|447727|35252|7|4|6698.80|0.05|0.06|A|F|1992-04-11|1992-03-13|1992-04-22|NONE|MAIL|s slyly across the carefully regular | +76237|943778|43779|1|50|91086.50|0.04|0.05|R|F|1995-02-06|1995-02-09|1995-02-24|COLLECT COD|AIR|final ideas; ironic deposits x-| +76237|63758|26260|2|30|51652.50|0.09|0.07|R|F|1995-02-26|1994-12-19|1995-03-28|DELIVER IN PERSON|REG AIR|nal deposits. slyly regu| +76237|567141|4675|3|44|53157.28|0.01|0.08|A|F|1995-01-17|1995-01-13|1995-01-21|NONE|MAIL|efully final ideas. regu| +76237|922688|47725|4|9|15395.76|0.07|0.03|A|F|1995-02-12|1995-01-26|1995-03-04|NONE|AIR| cajole fur| +76238|743893|31436|1|22|42610.92|0.06|0.05|N|O|1996-02-07|1996-01-03|1996-02-15|DELIVER IN PERSON|AIR|inal theodolites| +76238|604841|4842|2|3|5237.43|0.09|0.02|N|O|1995-11-29|1995-12-26|1995-12-10|COLLECT COD|RAIL|uts. special asympt| +76239|874335|11887|1|37|48443.73|0.01|0.02|A|F|1993-08-21|1993-08-26|1993-09-01|COLLECT COD|RAIL|express sheaves. furiously ex| +76239|945735|33290|2|2|3561.38|0.07|0.01|R|F|1993-09-29|1993-08-24|1993-10-09|TAKE BACK RETURN|AIR|hely regular instructions detec| +76264|993873|6393|1|33|64905.39|0.09|0.02|N|O|1996-08-05|1996-08-07|1996-08-17|COLLECT COD|RAIL|efully alongside of the final, special r| +76264|14921|39922|2|39|71600.88|0.03|0.07|N|O|1996-06-05|1996-06-29|1996-06-11|NONE|RAIL|d realms. slyly regular requests ab| +76264|761027|36058|3|25|27199.75|0.06|0.00|N|O|1996-09-11|1996-08-03|1996-10-01|DELIVER IN PERSON|SHIP|thely bold depende| +76264|578673|16207|4|8|14013.20|0.05|0.07|N|O|1996-08-22|1996-07-12|1996-09-15|TAKE BACK RETURN|AIR|above the ironic somas. blith| +76265|597280|47281|1|11|15149.86|0.05|0.07|A|F|1994-05-13|1994-06-28|1994-05-25|NONE|REG AIR| after the blithely ir| +76266|932039|32040|1|32|34271.68|0.00|0.08|N|O|1995-06-28|1995-07-22|1995-07-19|DELIVER IN PERSON|SHIP|ependencies. carefully regul| +76266|779091|41607|2|26|30421.56|0.07|0.04|N|O|1995-08-11|1995-07-30|1995-08-26|COLLECT COD|TRUCK|he ironic theo| +76266|174955|37459|3|25|50748.75|0.05|0.04|N|O|1995-07-17|1995-07-02|1995-07-30|NONE|RAIL|s. even dependencie| +76266|465262|27772|4|6|7363.44|0.09|0.03|A|F|1995-05-30|1995-07-27|1995-06-03|NONE|MAIL|xpress pinto beans boost. depo| +76266|646158|33695|5|36|39748.32|0.02|0.08|N|F|1995-06-16|1995-07-08|1995-07-09|NONE|MAIL|ely thin requests. quickly pendin| +76266|973943|48982|6|16|32270.40|0.00|0.02|A|F|1995-05-18|1995-06-21|1995-06-04|TAKE BACK RETURN|RAIL|ests cajole among the fluffily special th| +76266|43898|31399|7|10|18418.90|0.07|0.07|N|O|1995-09-11|1995-07-07|1995-09-24|COLLECT COD|TRUCK|ns nag under the quickly cl| +76267|783323|8354|1|24|33750.96|0.09|0.07|A|F|1994-06-02|1994-06-06|1994-06-08|COLLECT COD|TRUCK|thely regular foxes are. f| +76267|306681|31694|2|4|6750.68|0.08|0.04|A|F|1994-08-18|1994-07-14|1994-08-27|DELIVER IN PERSON|TRUCK|es. slyly b| +76267|380341|5356|3|40|56853.20|0.02|0.03|A|F|1994-07-08|1994-05-26|1994-07-23|DELIVER IN PERSON|MAIL|as. blithely stealthy accounts a| +76268|933230|20785|1|35|44211.65|0.03|0.04|N|O|1996-03-01|1996-05-07|1996-03-26|TAKE BACK RETURN|FOB|telets wake. slyly ironic account| +76269|222851|47860|1|46|81596.64|0.03|0.04|N|O|1996-07-03|1996-08-26|1996-07-29|NONE|REG AIR| slyly bol| +76270|72286|34788|1|38|47814.64|0.09|0.00|N|O|1997-02-02|1996-11-21|1997-02-25|TAKE BACK RETURN|RAIL|side of the bl| +76270|904503|17022|2|7|10552.22|0.00|0.05|N|O|1997-01-09|1996-12-15|1997-01-13|COLLECT COD|FOB|e furiously final notornis wake slyly | +76270|973523|23524|3|26|41508.48|0.02|0.08|N|O|1996-11-19|1997-01-03|1996-11-20|DELIVER IN PERSON|FOB|ly regular excuses affix busily. fu| +76270|984834|9873|4|30|57563.70|0.02|0.00|N|O|1996-11-02|1997-01-07|1996-11-27|DELIVER IN PERSON|REG AIR|y slyly daring d| +76270|91468|16471|5|24|35027.04|0.00|0.04|N|O|1996-11-19|1996-11-27|1996-12-16|NONE|REG AIR|ages. blithely stealthy packages agains| +76270|285879|48385|6|30|55945.80|0.04|0.07|N|O|1997-01-03|1996-11-22|1997-01-07|NONE|AIR| packages. blithely close pinto beans wak| +76270|766002|16003|7|1|1067.97|0.07|0.08|N|O|1996-11-17|1996-12-30|1996-12-01|COLLECT COD|MAIL|heodolites haggle. regular theodolites ac| +76271|179042|16552|1|45|50446.80|0.09|0.08|N|O|1997-05-08|1997-05-04|1997-06-02|TAKE BACK RETURN|SHIP|l courts. r| +76271|144117|44118|2|6|6966.66|0.08|0.01|N|O|1997-06-09|1997-04-20|1997-06-10|TAKE BACK RETURN|REG AIR|nal ideas. iron| +76271|171518|34022|3|20|31790.20|0.01|0.04|N|O|1997-04-05|1997-04-06|1997-04-07|NONE|FOB|eas about the furiously bold pint| +76271|691880|41881|4|24|44924.40|0.05|0.04|N|O|1997-04-15|1997-05-02|1997-04-30|TAKE BACK RETURN|FOB|s wake across the carefully final dependenc| +76271|426318|13843|5|10|12442.90|0.07|0.01|N|O|1997-03-11|1997-05-01|1997-04-01|NONE|RAIL|ructions according to the slyly | +76296|706677|31706|1|8|13469.12|0.01|0.04|R|F|1995-05-06|1995-06-29|1995-05-20|NONE|TRUCK| around the unusual dep| +76296|116636|4143|2|17|28094.71|0.09|0.00|R|F|1995-04-18|1995-06-19|1995-05-06|DELIVER IN PERSON|REG AIR| silent accounts.| +76296|292443|4949|3|31|44498.33|0.09|0.00|N|O|1995-08-04|1995-06-20|1995-08-18|TAKE BACK RETURN|TRUCK|es boost blithe| +76296|76657|14161|4|15|24504.75|0.10|0.06|N|F|1995-06-02|1995-06-24|1995-06-26|NONE|RAIL|ding frets. blithely even request| +76296|366170|41185|5|11|13597.76|0.05|0.08|N|F|1995-06-10|1995-06-18|1995-07-03|DELIVER IN PERSON|SHIP|ld pinto beans. ironic deposits| +76296|214283|39292|6|48|57468.96|0.10|0.04|N|F|1995-06-10|1995-06-22|1995-06-20|DELIVER IN PERSON|REG AIR|gular, ironic pinto beans cajole. re| +76296|449245|11754|7|30|35826.60|0.09|0.05|R|F|1995-04-29|1995-05-16|1995-05-18|COLLECT COD|MAIL| maintain quickly against the regula| +76297|449258|36783|1|7|8450.61|0.03|0.02|N|O|1997-06-08|1997-04-28|1997-06-17|DELIVER IN PERSON|FOB|according to the slyly even p| +76297|666142|16143|2|47|52081.17|0.05|0.00|N|O|1997-04-28|1997-06-01|1997-05-05|DELIVER IN PERSON|AIR|instructions x-ray. fluffily special| +76297|841327|3844|3|17|21560.76|0.00|0.03|N|O|1997-06-29|1997-05-22|1997-07-19|COLLECT COD|TRUCK|slowly silent excuses slee| +76297|176016|13526|4|29|31668.29|0.10|0.02|N|O|1997-04-24|1997-05-07|1997-05-06|COLLECT COD|FOB|usly around the accounts. slyly pend| +76297|288472|978|5|29|42353.34|0.05|0.06|N|O|1997-06-02|1997-04-28|1997-06-19|COLLECT COD|MAIL|the carefully unusual ideas haggle furiousl| +76297|334155|46662|6|40|47565.60|0.08|0.07|N|O|1997-06-01|1997-06-03|1997-06-20|DELIVER IN PERSON|SHIP|s lose furiously above the| +76297|131126|18633|7|48|55541.76|0.09|0.07|N|O|1997-07-10|1997-06-03|1997-08-05|COLLECT COD|REG AIR|st carefully ironic, ironic pac| +76298|831531|19080|1|2|2924.98|0.01|0.00|A|F|1992-10-20|1992-09-23|1992-10-31|TAKE BACK RETURN|AIR|furiously deposits. bold packages w| +76298|530565|43076|2|11|17550.94|0.07|0.01|A|F|1992-08-10|1992-09-19|1992-08-16|DELIVER IN PERSON|AIR|e of the carefully silent pack| +76299|852168|27203|1|22|24642.64|0.01|0.08|N|O|1996-06-22|1996-05-09|1996-07-04|DELIVER IN PERSON|TRUCK|yers haggle slyly. even pinto bean| +76299|380998|18520|2|26|54053.48|0.07|0.04|N|O|1996-05-27|1996-06-13|1996-06-08|NONE|REG AIR|print slyly pending deposi| +76299|432756|20281|3|1|1688.73|0.10|0.06|N|O|1996-05-17|1996-06-15|1996-06-15|NONE|RAIL|ously among| +76299|324488|12007|4|4|6049.88|0.07|0.01|N|O|1996-05-19|1996-04-29|1996-05-27|NONE|SHIP|y special deposits haggle b| +76299|656624|31651|5|20|31611.80|0.06|0.00|N|O|1996-05-20|1996-05-14|1996-05-30|COLLECT COD|RAIL|ies cajole carefully sly| +76299|871138|46173|6|43|47690.87|0.07|0.04|N|O|1996-07-02|1996-04-21|1996-07-15|TAKE BACK RETURN|MAIL| even patterns above the regular instructi| +76300|574548|24549|1|36|58410.72|0.03|0.03|N|O|1995-07-14|1995-09-08|1995-07-23|COLLECT COD|RAIL| slyly alongside of the furi| +76300|419953|19954|2|21|39331.53|0.03|0.06|N|O|1995-08-29|1995-08-16|1995-09-22|TAKE BACK RETURN|TRUCK| the final excuses. sly| +76300|140680|3183|3|13|22368.84|0.06|0.03|N|O|1995-09-02|1995-09-17|1995-09-25|TAKE BACK RETURN|REG AIR|ccording to the ironically unusual req| +76300|396822|9330|4|41|78671.21|0.09|0.07|N|O|1995-11-06|1995-10-02|1995-11-30|DELIVER IN PERSON|MAIL|the quickly even orbit| +76300|373691|48706|5|17|29999.56|0.09|0.03|N|O|1995-07-30|1995-10-02|1995-08-17|TAKE BACK RETURN|AIR|ts. fluffily pending accounts alongsi| +76301|557312|32335|1|27|36970.83|0.01|0.06|R|F|1993-07-06|1993-07-13|1993-07-21|DELIVER IN PERSON|REG AIR|kages cajole blithely a| +76301|731489|31490|2|2|3040.90|0.09|0.01|R|F|1993-05-12|1993-05-28|1993-06-02|DELIVER IN PERSON|TRUCK|theodolites lose around | +76302|703322|15837|1|17|22529.93|0.02|0.01|A|F|1993-11-21|1993-12-01|1993-12-12|COLLECT COD|TRUCK|s-- furiously f| +76302|730197|42712|2|8|9817.28|0.10|0.05|R|F|1993-11-23|1993-11-25|1993-12-02|NONE|SHIP|furiously bold instructions cajole| +76302|410190|35207|3|5|5500.85|0.03|0.07|R|F|1993-11-02|1993-12-12|1993-11-17|COLLECT COD|MAIL| deposits. thinly ir| +76302|57577|32580|4|49|75193.93|0.10|0.07|A|F|1994-01-13|1993-12-19|1994-02-03|TAKE BACK RETURN|RAIL|lar packages wake quickly. quic| +76303|325977|13496|1|22|44065.12|0.10|0.06|N|O|1997-02-08|1997-02-18|1997-03-08|NONE|RAIL|eep quickly regular i| +76303|691004|3518|2|30|29849.10|0.08|0.04|N|O|1997-01-30|1997-01-11|1997-02-01|DELIVER IN PERSON|MAIL|cajole fur| +76328|45689|8190|1|48|78464.64|0.08|0.02|A|F|1993-12-01|1993-10-22|1993-12-12|NONE|AIR|le around the carefully special req| +76328|878562|3597|2|10|15405.20|0.03|0.04|A|F|1993-09-20|1993-09-15|1993-10-07|DELIVER IN PERSON|TRUCK|fully. carefully regular pains about th| +76328|981846|31847|3|25|48195.00|0.04|0.02|R|F|1993-08-11|1993-11-01|1993-09-02|DELIVER IN PERSON|FOB|deas. ironically regular pac| +76328|884518|34519|4|36|54088.92|0.07|0.08|R|F|1993-08-22|1993-10-18|1993-09-13|COLLECT COD|SHIP|theodolites across the final, r| +76328|89624|14627|5|16|25817.92|0.08|0.00|R|F|1993-09-22|1993-09-04|1993-10-11|TAKE BACK RETURN|MAIL|egular dep| +76328|307983|20490|6|7|13936.79|0.08|0.01|R|F|1993-09-15|1993-10-23|1993-10-05|COLLECT COD|MAIL|ges sleep fluffily ex| +76328|259089|34100|7|34|35634.38|0.06|0.08|R|F|1993-08-14|1993-10-22|1993-08-17|NONE|AIR| furiously even Tiresias. slyly b| +76329|506627|19138|1|49|80046.40|0.10|0.08|R|F|1993-06-25|1993-04-17|1993-07-18|TAKE BACK RETURN|AIR|of the quickly even instructions. slyl| +76329|876345|38863|2|23|30389.90|0.08|0.00|R|F|1993-03-21|1993-04-12|1993-04-12|COLLECT COD|RAIL|o beans are | +76329|727358|27359|3|18|24935.76|0.00|0.08|R|F|1993-06-14|1993-05-26|1993-07-12|NONE|AIR|edly blithe instructions caj| +76329|702271|39814|4|32|40743.68|0.06|0.03|R|F|1993-07-03|1993-04-17|1993-07-29|DELIVER IN PERSON|MAIL| to are carefully. dolphins at the blith| +76329|60916|35919|5|7|13138.37|0.09|0.05|R|F|1993-04-08|1993-04-30|1993-04-26|DELIVER IN PERSON|FOB|integrate blithely slyly unusual deposits. | +76330|628766|41279|1|31|52536.63|0.04|0.03|A|F|1992-09-30|1992-09-19|1992-10-24|TAKE BACK RETURN|SHIP|ithely along the ironic d| +76330|669632|32146|2|1|1601.60|0.08|0.08|A|F|1992-08-13|1992-09-06|1992-09-08|NONE|REG AIR|ial deposit| +76330|495840|33368|3|35|64253.70|0.07|0.07|R|F|1992-08-05|1992-09-17|1992-08-06|DELIVER IN PERSON|FOB|ke fluffily ex| +76330|577734|27735|4|48|86962.08|0.01|0.00|A|F|1992-07-28|1992-08-25|1992-08-19|NONE|REG AIR|ts. carefully r| +76330|974319|24320|5|17|23685.59|0.09|0.00|R|F|1992-07-23|1992-09-11|1992-08-19|COLLECT COD|MAIL|onic requests. pinto beans wak| +76331|541569|29100|1|30|48316.20|0.03|0.05|R|F|1994-03-07|1994-02-24|1994-03-14|TAKE BACK RETURN|MAIL|eans haggle accounts-- slyly e| +76331|136580|49083|2|19|30715.02|0.00|0.02|R|F|1994-04-16|1994-03-17|1994-05-13|COLLECT COD|AIR|final packages ag| +76331|483786|46296|3|20|35395.20|0.08|0.07|R|F|1994-01-26|1994-04-13|1994-02-14|COLLECT COD|AIR|ts detect carefully beyond t| +76331|974635|12193|4|30|51287.70|0.10|0.04|A|F|1994-03-03|1994-03-15|1994-03-14|TAKE BACK RETURN|SHIP| hang around the furiously pend| +76331|683587|21127|5|18|28269.90|0.03|0.04|A|F|1994-03-31|1994-04-05|1994-04-23|TAKE BACK RETURN|SHIP|e even instructions. unusual depo| +76331|43361|30862|6|13|16956.68|0.09|0.03|R|F|1994-02-02|1994-03-26|1994-02-24|DELIVER IN PERSON|FOB|s haggle slyly bold packages. | +76331|766062|16063|7|9|10152.27|0.06|0.06|A|F|1994-04-01|1994-02-25|1994-04-13|COLLECT COD|AIR|sly regular foxes boost entici| +76332|202543|2544|1|46|66494.38|0.05|0.08|N|O|1996-04-18|1996-05-05|1996-04-21|COLLECT COD|SHIP|the carefully special dolphins. carefully i| +76333|918890|18891|1|31|59174.35|0.04|0.05|N|O|1996-03-30|1996-04-01|1996-04-01|COLLECT COD|REG AIR|y final acc| +76333|783406|20952|2|18|26808.66|0.01|0.07|N|O|1996-04-14|1996-03-23|1996-05-13|DELIVER IN PERSON|RAIL| regular instructio| +76333|690602|28142|3|50|79628.50|0.00|0.03|N|O|1996-02-23|1996-02-27|1996-03-19|DELIVER IN PERSON|MAIL|into beans. carefully| +76333|944343|6862|4|37|51330.10|0.03|0.03|N|O|1996-04-15|1996-03-01|1996-04-22|TAKE BACK RETURN|TRUCK|d deposits. ironic, even requests doubt bus| +76333|561644|36667|5|29|49462.98|0.07|0.03|N|O|1996-04-04|1996-03-02|1996-04-11|DELIVER IN PERSON|FOB|luffily pending foxes wake since t| +76334|948042|23079|1|16|17440.00|0.02|0.07|N|O|1997-11-14|1997-10-11|1997-12-09|COLLECT COD|FOB|ng to the idly | +76334|738626|26169|2|13|21639.67|0.06|0.04|N|O|1997-11-05|1997-10-13|1997-11-22|DELIVER IN PERSON|FOB|odolites. ironic, express| +76334|73179|35681|3|22|25347.74|0.04|0.00|N|O|1997-10-29|1997-12-04|1997-11-27|TAKE BACK RETURN|SHIP|ep across the regular, unusual p| +76335|219763|7276|1|36|60579.00|0.09|0.04|N|O|1998-04-11|1998-01-25|1998-04-13|DELIVER IN PERSON|FOB|y bold requests in| +76335|540011|40012|2|25|26274.75|0.10|0.01|N|O|1998-02-04|1998-02-25|1998-02-09|DELIVER IN PERSON|AIR|the final platelets. | +76335|955598|5599|3|41|67795.55|0.02|0.06|N|O|1998-03-14|1998-01-26|1998-04-01|NONE|REG AIR|ly express requ| +76335|723369|48398|4|3|4176.99|0.06|0.04|N|O|1998-03-28|1998-02-11|1998-04-19|DELIVER IN PERSON|FOB|luffily. regular, pending packages bre| +76335|649485|49486|5|11|15778.95|0.05|0.00|N|O|1998-03-09|1998-03-08|1998-04-04|COLLECT COD|SHIP|tes. slyly unusual package| +76360|584060|9083|1|8|9152.32|0.09|0.05|R|F|1992-10-01|1992-07-22|1992-10-02|DELIVER IN PERSON|REG AIR|w foxes. regular, bold requests wake | +76360|282178|44684|2|42|48726.72|0.01|0.01|R|F|1992-09-07|1992-08-23|1992-09-25|TAKE BACK RETURN|TRUCK|y even deposits sublate slyly pend| +76361|733704|33705|1|45|78195.15|0.06|0.06|R|F|1995-03-10|1995-01-25|1995-04-06|DELIVER IN PERSON|MAIL|ts. ironic accounts kindle| +76361|361307|36322|2|40|54731.60|0.05|0.07|A|F|1994-12-19|1995-02-13|1995-01-08|COLLECT COD|TRUCK|e slyly abou| +76361|478391|40901|3|21|28756.77|0.02|0.07|R|F|1994-12-23|1994-12-30|1995-01-13|TAKE BACK RETURN|RAIL|requests unwind blith| +76361|301952|26965|4|12|23447.28|0.04|0.05|R|F|1995-01-06|1995-01-21|1995-01-31|NONE|AIR|ccounts. special, ironi| +76361|903694|16213|5|1|1697.65|0.03|0.05|A|F|1995-02-01|1995-01-16|1995-02-15|NONE|AIR|deposits are above the ide| +76362|193884|18891|1|1|1977.88|0.08|0.02|N|O|1998-06-29|1998-06-14|1998-07-03|TAKE BACK RETURN|MAIL| slyly even packages. slyly bold requests| +76362|594165|31699|2|46|57920.44|0.09|0.02|N|O|1998-06-29|1998-06-06|1998-07-24|TAKE BACK RETURN|MAIL|reach slyly. fluffily quiet accounts mold s| +76362|118374|30877|3|35|48732.95|0.10|0.06|N|O|1998-05-24|1998-06-16|1998-06-11|COLLECT COD|REG AIR|y final accounts use quickly regular depo| +76362|505125|5126|4|24|27122.40|0.06|0.08|N|O|1998-06-07|1998-05-22|1998-06-14|TAKE BACK RETURN|MAIL|xcuses mold about the ac| +76362|630067|30068|5|50|49851.50|0.00|0.01|N|O|1998-08-01|1998-05-28|1998-08-04|COLLECT COD|RAIL|sits detect. packages sleep slyly among| +76362|524979|37490|6|9|18035.55|0.08|0.01|N|O|1998-06-03|1998-05-16|1998-06-25|TAKE BACK RETURN|MAIL|eans: carefully regular theodol| +76362|320750|8269|7|50|88537.00|0.06|0.05|N|O|1998-07-24|1998-06-13|1998-08-22|DELIVER IN PERSON|TRUCK|are fluffily. pinto beans are care| +76363|841308|16341|1|37|46222.62|0.04|0.08|N|O|1998-08-23|1998-07-25|1998-08-30|COLLECT COD|REG AIR|p above the ironic, quiet deposits. flu| +76363|851268|26303|2|29|35357.38|0.09|0.01|N|O|1998-08-31|1998-08-23|1998-09-16|COLLECT COD|RAIL|nusual, bold theodolites. steal| +76363|259490|9491|3|6|8696.88|0.00|0.00|N|O|1998-09-30|1998-08-26|1998-10-22|DELIVER IN PERSON|REG AIR| final deposi| +76363|246916|21925|4|16|29806.40|0.07|0.08|N|O|1998-08-16|1998-09-04|1998-08-31|NONE|MAIL|tions believe fluffily f| +76364|123258|48263|1|23|29468.75|0.07|0.06|N|O|1998-09-19|1998-09-22|1998-09-25|TAKE BACK RETURN|RAIL| deposits wake blithel| +76364|589534|2046|2|16|25976.16|0.06|0.02|N|O|1998-11-09|1998-09-06|1998-12-03|COLLECT COD|TRUCK|ggle blithely. slyly bold depend| +76364|286603|11614|3|20|31791.80|0.10|0.05|N|O|1998-08-24|1998-09-24|1998-09-14|TAKE BACK RETURN|MAIL|ccording to the pending| +76364|931146|43665|4|46|54146.60|0.02|0.06|N|O|1998-10-23|1998-08-27|1998-11-12|COLLECT COD|TRUCK| pending accounts. regular, unus| +76364|754638|17154|5|7|11848.20|0.09|0.06|N|O|1998-08-05|1998-10-09|1998-08-24|NONE|RAIL|h furiously blithely regular package| +76364|189226|1730|6|9|11836.98|0.04|0.06|N|O|1998-08-17|1998-10-14|1998-09-08|NONE|MAIL|ar, regular ideas cajole furiously acr| +76364|304927|29940|7|2|3863.82|0.04|0.07|N|O|1998-11-16|1998-10-25|1998-12-04|COLLECT COD|RAIL|nst the quickly special accounts boost | +76365|897602|35154|1|43|68781.08|0.08|0.01|A|F|1994-11-05|1994-09-01|1994-11-10|TAKE BACK RETURN|TRUCK|ar deposits cajole a| +76366|977656|27657|1|38|65877.18|0.08|0.04|N|O|1997-10-30|1997-10-04|1997-10-31|TAKE BACK RETURN|MAIL|ronic, dogged foxes cajole special ideas. | +76366|449895|24912|2|7|12914.09|0.08|0.01|N|O|1997-12-06|1997-11-08|1997-12-13|COLLECT COD|TRUCK|ideas haggle blithel| +76367|411821|24330|1|45|77976.00|0.09|0.02|A|F|1992-12-25|1992-10-09|1993-01-06|NONE|AIR|kages wake slyly against the quickly | +76367|458783|21293|2|33|57478.08|0.00|0.06|R|F|1992-12-14|1992-11-21|1993-01-04|COLLECT COD|SHIP|l requests along the ideas boos| +76367|765647|15648|3|4|6850.44|0.05|0.04|R|F|1992-11-11|1992-11-08|1992-11-22|COLLECT COD|REG AIR|ithely express deposits wake pa| +76367|212993|38002|4|26|49555.48|0.04|0.04|A|F|1992-10-22|1992-10-06|1992-11-03|NONE|FOB|reach blithely about | +76367|756678|19194|5|20|34692.80|0.00|0.06|A|F|1992-10-14|1992-11-18|1992-10-18|COLLECT COD|AIR|es sleep carefully. | +76367|478803|41313|6|45|80180.10|0.07|0.06|R|F|1992-09-09|1992-10-25|1992-10-06|TAKE BACK RETURN|REG AIR|he carefully silent dependenc| +76367|237665|12674|7|27|43271.55|0.07|0.07|R|F|1992-10-27|1992-10-19|1992-11-21|DELIVER IN PERSON|SHIP|lithely after the regular ideas. ironic| +76392|428471|40980|1|48|67173.60|0.07|0.04|A|F|1992-12-15|1992-11-24|1992-12-19|TAKE BACK RETURN|MAIL|quickly brave, final courts. quickly reg| +76392|306598|6599|2|49|78624.42|0.00|0.02|R|F|1992-11-11|1992-10-27|1992-11-19|TAKE BACK RETURN|AIR|nts. ideas integrat| +76392|980869|18427|3|39|76042.98|0.06|0.06|A|F|1992-10-24|1992-10-11|1992-11-07|TAKE BACK RETURN|TRUCK|. pinto beans boost furiou| +76392|454144|4145|4|37|40630.44|0.09|0.02|R|F|1992-09-30|1992-11-11|1992-10-08|DELIVER IN PERSON|TRUCK|leep. ironic realms nag. bravely dogg| +76392|787170|37171|5|50|62857.00|0.01|0.04|A|F|1992-12-15|1992-11-10|1992-12-29|COLLECT COD|TRUCK|egular accounts. bold pinto beans sleep sly| +76393|746326|33869|1|39|53519.31|0.10|0.08|R|F|1993-02-07|1993-04-04|1993-02-20|DELIVER IN PERSON|SHIP| the quickly unusual ideas nag quickly arou| +76393|499976|37504|2|14|27663.30|0.07|0.03|R|F|1993-04-15|1993-03-06|1993-04-22|COLLECT COD|RAIL|rts. carefully bold dolphins| +76393|94818|19821|3|36|65261.16|0.10|0.08|A|F|1993-05-06|1993-02-27|1993-05-21|NONE|FOB| regular theodolites. furiousl| +76393|591402|16425|4|47|70188.86|0.04|0.06|R|F|1993-02-26|1993-04-18|1993-03-26|COLLECT COD|TRUCK|e requests. bold accounts must cajole | +76393|679062|16602|5|24|24984.72|0.06|0.08|A|F|1993-04-13|1993-04-06|1993-04-30|NONE|SHIP| the furiously final foxes. even deposits | +76393|994696|19735|6|31|55510.15|0.01|0.01|A|F|1993-03-06|1993-03-10|1993-03-15|NONE|RAIL|bove the quickly final | +76393|840969|28518|7|4|7639.68|0.03|0.07|A|F|1993-01-26|1993-04-14|1993-02-13|TAKE BACK RETURN|FOB|lyly express accounts cajole. f| +76394|154486|41996|1|22|33890.56|0.05|0.02|N|O|1996-02-25|1996-04-09|1996-03-25|TAKE BACK RETURN|MAIL|ggle furiously furiously regula| +76394|429652|4669|2|36|56938.68|0.06|0.07|N|O|1996-04-04|1996-03-15|1996-04-11|TAKE BACK RETURN|TRUCK|oss the quickly regular Tiresia| +76394|155311|42821|3|37|50553.47|0.10|0.04|N|O|1996-02-11|1996-02-19|1996-03-10|COLLECT COD|SHIP|blate special,| +76395|677584|2611|1|28|43723.40|0.03|0.05|A|F|1992-11-17|1992-11-27|1992-11-21|TAKE BACK RETURN|MAIL| the furiously| +76396|477101|2120|1|13|14015.04|0.10|0.06|N|O|1997-06-03|1997-08-02|1997-06-12|DELIVER IN PERSON|FOB|ingly special| +76396|624874|12411|2|8|14390.72|0.09|0.00|N|O|1997-05-28|1997-07-04|1997-05-29|NONE|TRUCK|ans across t| +76396|246523|46524|3|40|58780.40|0.01|0.08|N|O|1997-06-25|1997-06-24|1997-07-04|DELIVER IN PERSON|AIR|elets. packages ought to affix up | +76396|295735|45736|4|7|12115.04|0.03|0.00|N|O|1997-07-01|1997-07-16|1997-07-24|TAKE BACK RETURN|REG AIR|ons along the packages sleep | +76396|407014|32031|5|24|22103.76|0.10|0.00|N|O|1997-06-13|1997-06-24|1997-07-07|DELIVER IN PERSON|FOB|arefully final packages. iron| +76396|670829|33343|6|23|41395.17|0.04|0.02|N|O|1997-05-19|1997-07-28|1997-05-23|NONE|FOB|into beans lose ca| +76397|339659|2166|1|15|25479.60|0.05|0.04|A|F|1993-12-16|1993-12-18|1993-12-20|NONE|MAIL| slyly blit| +76397|634444|9469|2|13|17919.33|0.01|0.03|R|F|1993-12-04|1994-01-06|1993-12-10|DELIVER IN PERSON|SHIP|gular courts co| +76397|89297|26801|3|3|3858.87|0.08|0.08|A|F|1994-02-15|1994-02-04|1994-02-19|COLLECT COD|TRUCK| the fluffily regular asymptotes haggle fu| +76397|811140|36173|4|2|2102.20|0.04|0.02|A|F|1994-01-08|1993-12-10|1994-01-26|DELIVER IN PERSON|TRUCK|final ideas. slyly final at| +76398|190929|40930|1|40|80796.80|0.02|0.04|A|F|1992-06-16|1992-07-24|1992-07-07|TAKE BACK RETURN|MAIL|ending platelets cajole| +76399|926335|13890|1|7|9529.03|0.07|0.07|N|O|1997-01-24|1996-12-03|1997-02-06|TAKE BACK RETURN|MAIL|lowly. regular ideas according to the ca| +76399|897858|22893|2|35|64953.35|0.08|0.05|N|O|1996-11-19|1996-12-29|1996-12-01|NONE|FOB|pending deposits. quietly perma| +76399|287062|12073|3|33|34618.65|0.00|0.07|N|O|1997-01-02|1996-12-24|1997-01-08|COLLECT COD|SHIP|times ironic requests hang slyly. deposi| +76399|638390|903|4|30|39850.80|0.00|0.07|N|O|1996-12-29|1996-12-10|1997-01-10|DELIVER IN PERSON|RAIL|d dolphins. si| +76424|884893|47411|1|13|24412.05|0.04|0.05|A|F|1993-06-19|1993-06-16|1993-07-14|DELIVER IN PERSON|SHIP|e to are a| +76424|395956|20971|2|3|6155.82|0.10|0.05|A|F|1993-06-06|1993-06-30|1993-07-05|TAKE BACK RETURN|REG AIR| fluffily even accounts hang accord| +76424|826913|39430|3|22|40477.14|0.02|0.02|A|F|1993-08-26|1993-07-18|1993-09-23|COLLECT COD|RAIL|nstructions. flu| +76424|915608|28127|4|17|27600.52|0.09|0.07|A|F|1993-08-10|1993-08-06|1993-08-29|COLLECT COD|FOB|s alongside of the carefully unusual dep| +76424|609929|22442|5|39|71716.71|0.09|0.04|R|F|1993-08-27|1993-07-31|1993-09-24|TAKE BACK RETURN|SHIP|unts cajole carefu| +76424|60907|23409|6|50|93395.00|0.00|0.01|A|F|1993-08-17|1993-06-14|1993-08-20|NONE|REG AIR|uests unwind furiousl| +76424|660518|48058|7|28|41397.44|0.04|0.08|R|F|1993-06-25|1993-07-19|1993-07-06|NONE|REG AIR|counts. regular, bold theodolit| +76425|313124|13125|1|17|19330.87|0.05|0.04|N|O|1997-06-22|1997-07-24|1997-07-15|TAKE BACK RETURN|TRUCK|ckages wake | +76425|672474|22475|2|40|57857.60|0.09|0.04|N|O|1997-08-17|1997-07-15|1997-09-09|COLLECT COD|MAIL|yly carefully special depo| +76425|265306|27812|3|7|8899.03|0.04|0.01|N|O|1997-08-01|1997-08-05|1997-08-15|COLLECT COD|RAIL|eposits among the pending br| +76425|987561|12600|4|3|4945.56|0.08|0.05|N|O|1997-09-11|1997-07-10|1997-10-01|DELIVER IN PERSON|AIR|the permanently even accounts mold final, | +76425|932766|32767|5|6|10792.32|0.03|0.03|N|O|1997-08-23|1997-06-30|1997-08-28|NONE|SHIP|carefully regular deposits. unusu| +76425|993917|6437|6|33|66358.71|0.04|0.05|N|O|1997-07-10|1997-07-13|1997-08-03|DELIVER IN PERSON|SHIP|s. regular foxes about the carefu| +76425|752431|39977|7|13|19284.20|0.06|0.06|N|O|1997-06-04|1997-08-12|1997-06-22|DELIVER IN PERSON|TRUCK|s. special| +76426|92955|17958|1|35|68178.25|0.05|0.00|R|F|1993-04-16|1993-06-12|1993-05-08|COLLECT COD|MAIL|riously regular platelets. u| +76426|290605|15616|2|44|70205.96|0.09|0.07|A|F|1993-06-29|1993-05-09|1993-07-25|COLLECT COD|FOB| haggle furiously along the ironic d| +76427|823134|35651|1|50|52854.50|0.07|0.06|N|O|1997-10-20|1997-09-21|1997-11-16|TAKE BACK RETURN|SHIP| after the even accounts. unus| +76427|399753|12261|2|15|27791.10|0.01|0.05|N|O|1997-09-14|1997-09-11|1997-10-04|NONE|AIR|nts are since | +76427|642643|5156|3|18|28540.98|0.10|0.01|N|O|1997-08-31|1997-09-20|1997-09-25|COLLECT COD|FOB|symptotes cajole quickly acr| +76427|884784|47302|4|20|35374.80|0.08|0.06|N|O|1997-08-03|1997-10-13|1997-08-20|COLLECT COD|SHIP|side of the regular pack| +76427|559577|9578|5|13|21275.15|0.07|0.07|N|O|1997-09-29|1997-10-12|1997-10-09|NONE|MAIL|lly regular pinto beans. fin| +76427|800303|304|6|13|15642.38|0.08|0.03|N|O|1997-07-28|1997-08-30|1997-08-24|NONE|MAIL|ourts haggle blithely quickly pending cou| +76428|942974|5493|1|22|44372.46|0.00|0.04|N|O|1998-07-11|1998-05-06|1998-07-26|COLLECT COD|SHIP|totes dazzle carefully regular accounts. | +76428|556321|43855|2|34|46828.20|0.01|0.05|N|O|1998-05-05|1998-05-10|1998-05-10|COLLECT COD|RAIL|p requests. furiou| +76428|77038|27039|3|4|4060.12|0.02|0.05|N|O|1998-05-07|1998-05-10|1998-05-20|COLLECT COD|TRUCK|lites wake furiously. ironic | +76428|764376|14377|4|4|5761.36|0.06|0.07|N|O|1998-04-30|1998-04-17|1998-05-20|TAKE BACK RETURN|AIR|ate ironic warhorse| +76429|5304|5305|1|19|22976.70|0.02|0.05|N|O|1996-06-25|1996-08-02|1996-07-19|TAKE BACK RETURN|RAIL|l, ironic dep| +76429|136375|11380|2|40|56454.80|0.05|0.06|N|O|1996-09-27|1996-07-21|1996-09-29|TAKE BACK RETURN|TRUCK|bout the furiously fi| +76429|43619|6120|3|10|15626.10|0.04|0.03|N|O|1996-07-03|1996-08-24|1996-07-15|COLLECT COD|REG AIR|leep. express dolphins wake. | +76429|92941|5443|4|5|9669.70|0.03|0.06|N|O|1996-09-21|1996-08-03|1996-10-17|NONE|FOB|egular packages engage quick| +76430|283641|46147|1|25|40615.75|0.04|0.05|N|O|1996-11-28|1996-11-05|1996-12-17|COLLECT COD|AIR|y final dep| +76430|151352|13856|2|16|22453.60|0.00|0.05|N|O|1996-09-25|1996-11-30|1996-10-10|NONE|SHIP|y. quickly stealth| +76431|960388|22908|1|38|55036.92|0.09|0.07|A|F|1992-09-18|1992-08-27|1992-09-26|DELIVER IN PERSON|TRUCK|s thrash slyly. carefully ironic p| +76431|231930|31931|2|21|39100.32|0.00|0.02|A|F|1992-10-02|1992-09-11|1992-10-27|NONE|AIR|equests are slyly according t| +76431|40840|28341|3|14|24931.76|0.03|0.02|A|F|1992-09-10|1992-08-17|1992-10-01|NONE|MAIL|ven pinto beans detec| +76456|707276|44819|1|36|46196.64|0.10|0.06|R|F|1992-09-27|1992-10-28|1992-10-08|DELIVER IN PERSON|FOB| furiously pinto beans. bold, f| +76456|186207|11214|2|8|10345.60|0.09|0.04|A|F|1992-12-27|1992-12-10|1993-01-22|TAKE BACK RETURN|REG AIR|e quickly final ideas. packages serve | +76457|40416|15417|1|16|21702.56|0.02|0.01|N|O|1996-01-18|1996-02-09|1996-02-04|COLLECT COD|FOB|lithely above the slyly regula| +76457|267024|17025|2|29|28739.29|0.09|0.08|N|O|1996-02-14|1996-01-12|1996-03-07|NONE|SHIP|sts unwind | +76457|862301|12302|3|27|34108.02|0.08|0.04|N|O|1996-01-18|1996-01-19|1996-02-10|TAKE BACK RETURN|MAIL|usly at the ironic| +76457|684484|22024|4|47|69017.15|0.05|0.07|N|O|1996-03-21|1995-12-25|1996-04-17|COLLECT COD|MAIL|y pending requests slee| +76457|114914|2421|5|15|28933.65|0.03|0.01|N|O|1995-12-31|1996-02-16|1996-01-23|NONE|REG AIR|tes sleep. furiously sile| +76457|346201|33720|6|41|51134.79|0.02|0.02|N|O|1996-03-12|1996-02-03|1996-03-13|TAKE BACK RETURN|TRUCK|pinto beans. silent package| +76457|595707|33241|7|13|23434.84|0.09|0.00|N|O|1995-11-28|1995-12-29|1995-12-24|DELIVER IN PERSON|AIR|ress packages | +76458|34950|22451|1|28|52778.60|0.01|0.08|N|O|1995-10-12|1995-09-21|1995-10-23|TAKE BACK RETURN|TRUCK|iously regular inst| +76458|392907|42908|2|12|23998.68|0.02|0.03|N|O|1995-08-02|1995-08-20|1995-08-09|COLLECT COD|REG AIR|ns. express packages nag caref| +76458|585012|22546|3|40|43879.60|0.03|0.04|N|O|1995-09-02|1995-10-06|1995-09-16|DELIVER IN PERSON|RAIL|uffily final accounts slee| +76458|293786|18797|4|5|8898.85|0.10|0.02|N|O|1995-09-01|1995-09-15|1995-09-19|TAKE BACK RETURN|REG AIR|es are packages| +76458|659708|47248|5|35|58368.45|0.03|0.00|N|O|1995-08-01|1995-09-05|1995-08-12|COLLECT COD|REG AIR| slyly pending excuses boost quickly| +76458|706160|43703|6|3|3498.39|0.09|0.06|N|O|1995-10-03|1995-09-16|1995-10-15|TAKE BACK RETURN|REG AIR|s will have to are slyly. qu| +76458|416320|3845|7|33|40797.90|0.09|0.04|N|O|1995-07-14|1995-09-19|1995-08-09|TAKE BACK RETURN|TRUCK|lithely. blithely even forges| +76459|74111|49114|1|14|15191.54|0.02|0.02|R|F|1993-07-26|1993-07-19|1993-08-08|COLLECT COD|TRUCK|c deposits unwind a| +76459|574948|12482|2|11|22252.12|0.06|0.05|R|F|1993-08-22|1993-07-30|1993-08-23|NONE|RAIL|ously even deposits. even, regular dep| +76459|149965|37472|3|2|4029.92|0.01|0.03|A|F|1993-09-02|1993-06-14|1993-09-03|COLLECT COD|MAIL|furiously final epitaphs upon the qui| +76459|457771|20281|4|9|15558.75|0.08|0.02|A|F|1993-05-16|1993-08-06|1993-06-12|TAKE BACK RETURN|RAIL|efully regular pinto beans. spec| +76459|747457|9972|5|23|34601.66|0.05|0.00|R|F|1993-07-25|1993-08-11|1993-08-05|COLLECT COD|AIR|eodolites could have to affix| +76459|501884|39415|6|42|79206.12|0.02|0.07|R|F|1993-07-20|1993-07-07|1993-08-19|TAKE BACK RETURN|RAIL|ully! furiously bold din| +76460|443740|31265|1|48|80818.56|0.04|0.01|N|O|1998-06-23|1998-05-19|1998-07-08|TAKE BACK RETURN|TRUCK|eodolites | +76461|967739|5297|1|19|34327.11|0.04|0.05|R|F|1994-07-30|1994-05-17|1994-08-14|DELIVER IN PERSON|RAIL|to beans cajole furiously under the| +76462|535121|47632|1|13|15029.30|0.10|0.08|A|F|1994-10-30|1994-08-23|1994-11-06|COLLECT COD|SHIP|s wake slyly.| +76462|777703|27704|2|37|65884.79|0.07|0.00|R|F|1994-10-18|1994-08-22|1994-10-22|DELIVER IN PERSON|FOB|al ideas wa| +76462|847953|47954|3|20|38018.20|0.03|0.02|A|F|1994-10-07|1994-08-14|1994-10-26|NONE|TRUCK|lyly ironic requests. even| +76462|537745|37746|4|9|16044.48|0.09|0.07|R|F|1994-07-20|1994-08-16|1994-08-14|DELIVER IN PERSON|RAIL|e slyly ironic packages. eve| +76463|696125|8639|1|11|12331.99|0.01|0.06|N|O|1996-04-02|1996-03-26|1996-04-08|TAKE BACK RETURN|AIR|cording to the ironic accounts.| +76463|770154|7700|2|8|9792.96|0.04|0.03|N|O|1996-05-22|1996-04-22|1996-05-28|TAKE BACK RETURN|FOB|riously even id| +76463|965508|15509|3|27|42483.42|0.00|0.00|N|O|1996-04-29|1996-04-03|1996-05-11|NONE|SHIP| ideas. quietly express deposits | +76488|706394|43937|1|5|7001.80|0.04|0.03|N|O|1996-06-24|1996-06-05|1996-07-20|TAKE BACK RETURN|RAIL|usual platelets. slyly f| +76488|360411|47933|2|20|29428.00|0.07|0.03|N|O|1996-06-18|1996-05-20|1996-07-10|DELIVER IN PERSON|AIR|ptotes wake quickly | +76488|410908|48433|3|6|10913.28|0.07|0.03|N|O|1996-06-29|1996-05-25|1996-07-07|COLLECT COD|REG AIR|d packages boost. quickly unusual| +76489|589181|26715|1|11|13971.76|0.08|0.00|R|F|1992-09-25|1992-10-11|1992-10-18|TAKE BACK RETURN|RAIL|tructions. slyly pending | +76489|358136|33151|2|15|17911.80|0.02|0.02|R|F|1992-10-28|1992-11-20|1992-11-20|NONE|SHIP|ronic requests. slyly fi| +76489|188165|13172|3|24|30075.84|0.01|0.07|A|F|1992-11-15|1992-10-08|1992-11-24|NONE|SHIP|nal deposits wake quickly about| +76489|478680|28681|4|15|24879.90|0.08|0.02|R|F|1992-12-11|1992-11-07|1993-01-08|DELIVER IN PERSON|TRUCK|ole. slyly special foxes among the| +76489|172944|22945|5|34|68575.96|0.04|0.06|A|F|1992-12-03|1992-11-25|1992-12-18|DELIVER IN PERSON|RAIL|the final, final excuses haggle caref| +76489|655354|5355|6|20|26186.40|0.10|0.01|A|F|1992-08-31|1992-11-04|1992-09-09|DELIVER IN PERSON|MAIL|y regular sheaves are blithely | +76489|532918|45429|7|49|95593.61|0.06|0.07|R|F|1992-10-22|1992-10-19|1992-11-12|TAKE BACK RETURN|AIR|ickly after the slyly even asymptotes. regu| +76490|737665|37666|1|46|78320.98|0.09|0.02|N|O|1997-12-27|1997-11-23|1998-01-03|DELIVER IN PERSON|AIR|ely fluffily ste| +76490|932639|45158|2|43|71878.37|0.02|0.02|N|O|1997-11-21|1997-12-02|1997-12-17|COLLECT COD|SHIP|o the regular instructions. express| +76490|850470|38022|3|42|59658.06|0.04|0.01|N|O|1997-12-02|1997-12-08|1997-12-13|COLLECT COD|RAIL|. carefully final pinto beans haggle caref| +76490|840703|28252|4|1|1643.66|0.00|0.00|N|O|1997-12-06|1997-11-12|1997-12-26|TAKE BACK RETURN|REG AIR|deas wake dependencies. regular, | +76490|685339|35340|5|4|5297.20|0.10|0.08|N|O|1997-12-12|1997-11-24|1997-12-25|NONE|RAIL|ar theodolites. s| +76491|110743|10744|1|14|24552.36|0.04|0.08|N|O|1997-12-17|1997-11-18|1997-12-18|COLLECT COD|RAIL|sauternes haggle fluffily final warh| +76492|250618|25629|1|37|58038.20|0.00|0.06|A|F|1992-12-28|1992-12-06|1993-01-11|DELIVER IN PERSON|SHIP|furiously close packages above the care| +76493|346575|34094|1|3|4864.68|0.01|0.03|N|O|1998-03-16|1998-03-12|1998-04-01|DELIVER IN PERSON|AIR|s nag blithely even depos| +76493|884054|34055|2|22|22836.22|0.00|0.05|N|O|1998-03-19|1998-03-29|1998-04-08|DELIVER IN PERSON|AIR|s? express pinto beans h| +76493|280043|30044|3|42|42967.26|0.09|0.03|N|O|1998-05-18|1998-04-06|1998-05-28|NONE|AIR|ng, quiet asymptotes. carefully iro| +76493|668395|43422|4|45|61351.20|0.10|0.04|N|O|1998-03-01|1998-03-06|1998-03-22|DELIVER IN PERSON|FOB|nusual packages boost quickly according| +76493|710310|47853|5|39|51490.92|0.04|0.00|N|O|1998-05-01|1998-03-28|1998-05-20|NONE|REG AIR|y after the furiously dogged requests?| +76494|208485|8486|1|9|12541.23|0.05|0.03|N|O|1996-12-14|1997-02-17|1996-12-15|DELIVER IN PERSON|FOB|refully expr| +76494|996758|21797|2|6|11128.26|0.09|0.02|N|O|1997-03-25|1997-01-05|1997-04-11|NONE|RAIL|p quietly alo| +76494|508865|21376|3|8|14990.72|0.04|0.00|N|O|1997-04-01|1997-01-08|1997-04-18|NONE|SHIP|s theodolites are around| +76494|492365|17384|4|35|47506.90|0.05|0.02|N|O|1996-12-04|1997-02-21|1996-12-17|COLLECT COD|REG AIR|out the blithely ironic packages. th| +76494|166191|16192|5|28|35201.32|0.01|0.02|N|O|1997-03-25|1997-02-01|1997-04-06|COLLECT COD|AIR|ts are quickly silent packages. fl| +76494|163233|25737|6|31|40183.13|0.07|0.00|N|O|1997-01-19|1997-01-06|1997-01-22|NONE|FOB| quickly regularly even the| +76495|570395|7929|1|14|20515.18|0.01|0.08|N|O|1995-09-08|1995-10-16|1995-09-23|NONE|TRUCK|yly blithel| +76495|624384|11921|2|12|15700.20|0.01|0.08|N|O|1995-10-31|1995-09-20|1995-11-07|DELIVER IN PERSON|TRUCK|usily regular | +76495|14481|1982|3|43|60005.64|0.08|0.01|N|O|1995-12-14|1995-10-23|1995-12-15|NONE|MAIL|fully ironic plate| +76495|377881|2896|4|36|70519.32|0.03|0.08|N|O|1995-10-22|1995-09-19|1995-10-29|DELIVER IN PERSON|SHIP|ainst the regula| +76495|38548|38549|5|2|2973.08|0.03|0.04|N|O|1995-08-30|1995-10-25|1995-09-23|TAKE BACK RETURN|FOB|final excuses haggle alongside o| +76495|867967|5519|6|41|79331.72|0.10|0.01|N|O|1995-09-01|1995-10-04|1995-09-15|COLLECT COD|MAIL|ronic packages. final re| +76520|622866|35379|1|28|50087.24|0.04|0.03|N|O|1998-09-02|1998-09-18|1998-10-01|NONE|MAIL|detect furiously. fluffily regular| +76521|587066|49578|1|46|53039.84|0.02|0.01|A|F|1993-05-13|1993-05-23|1993-06-12|DELIVER IN PERSON|TRUCK|to beans wake carefully regular foxes. | +76521|815408|27925|2|50|66168.00|0.04|0.05|A|F|1993-04-10|1993-06-01|1993-05-02|TAKE BACK RETURN|REG AIR|ess furiously| +76521|556327|31350|3|49|67781.70|0.09|0.04|R|F|1993-06-01|1993-05-03|1993-06-09|TAKE BACK RETURN|TRUCK|gainst the blithely final re| +76521|179227|41731|4|39|50942.58|0.05|0.07|A|F|1993-04-11|1993-06-28|1993-04-15|DELIVER IN PERSON|SHIP|oss the slyly even ideas cajole| +76521|253276|15782|5|38|46711.88|0.09|0.01|R|F|1993-05-26|1993-06-25|1993-06-07|TAKE BACK RETURN|REG AIR|s. regular pinto beans cajole. re| +76522|988277|38278|1|29|39591.67|0.03|0.03|R|F|1993-07-02|1993-07-29|1993-07-15|NONE|RAIL| cajole carefully arou| +76522|955400|42958|2|48|69857.28|0.06|0.06|A|F|1993-08-25|1993-07-28|1993-09-15|DELIVER IN PERSON|RAIL|ly regular accounts u| +76522|397929|10437|3|23|46618.93|0.06|0.08|R|F|1993-08-01|1993-08-14|1993-08-21|DELIVER IN PERSON|MAIL|al notornis cajole blithely alongs| +76523|85988|10991|1|29|57245.42|0.04|0.08|N|O|1996-11-16|1996-12-09|1996-11-25|DELIVER IN PERSON|RAIL|r the regula| +76523|198166|10670|2|37|46773.92|0.10|0.01|N|O|1997-01-11|1996-12-21|1997-01-20|COLLECT COD|RAIL|r the ruthlessly e| +76523|559399|46933|3|22|32084.14|0.05|0.00|N|O|1996-10-31|1996-12-09|1996-11-11|TAKE BACK RETURN|RAIL|its? doggedly furious foxes ac| +76523|807891|32924|4|43|77350.55|0.08|0.01|N|O|1996-10-26|1996-11-26|1996-10-27|NONE|AIR|gle blithel| +76523|209511|34520|5|33|46876.50|0.10|0.04|N|O|1997-01-04|1997-01-17|1997-01-31|TAKE BACK RETURN|SHIP|p slyly after the | +76523|248033|10538|6|37|36297.74|0.10|0.02|N|O|1997-01-25|1996-11-28|1997-02-13|TAKE BACK RETURN|AIR|ronic asymptotes. slyly pending depen| +76523|678380|15920|7|34|46183.90|0.05|0.06|N|O|1997-02-07|1996-12-12|1997-02-08|COLLECT COD|MAIL|ructions are slyly. requests a| +76524|523813|48834|1|39|71634.81|0.02|0.05|A|F|1993-02-16|1992-12-11|1993-03-02|COLLECT COD|REG AIR|oxes around| +76524|719483|19484|2|21|31551.45|0.04|0.02|R|F|1993-01-26|1992-12-01|1993-02-21|NONE|TRUCK|yly regular theodolites wake blith| +76524|346299|21312|3|14|18833.92|0.08|0.00|R|F|1992-12-03|1993-01-21|1992-12-09|NONE|AIR|ess epitaphs are slyly finally e| +76524|232146|7155|4|2|2156.26|0.02|0.06|R|F|1992-12-12|1993-01-20|1992-12-13|TAKE BACK RETURN|AIR| across the d| +76524|665686|40713|5|14|23123.10|0.01|0.08|R|F|1992-11-29|1993-01-26|1992-12-26|DELIVER IN PERSON|RAIL|tes use. gifts abov| +76524|176541|26542|6|13|21028.02|0.01|0.01|A|F|1992-12-22|1993-01-24|1992-12-29|DELIVER IN PERSON|FOB|lithely pinto beans. fluffily | +76525|193759|6263|1|2|3705.50|0.02|0.05|N|O|1998-07-26|1998-07-31|1998-07-29|NONE|TRUCK|efully final theodolites sleep closel| +76526|785256|47772|1|24|32189.28|0.03|0.01|N|O|1997-02-22|1997-01-29|1997-03-08|TAKE BACK RETURN|SHIP|c ideas. ironically bold deposits b| +76526|784572|47088|2|24|39756.96|0.05|0.06|N|O|1996-12-01|1996-12-27|1996-12-31|COLLECT COD|FOB|accounts. carefully bold platelets boos| +76526|288191|38192|3|28|33017.04|0.06|0.05|N|O|1996-12-29|1997-01-17|1997-01-22|DELIVER IN PERSON|TRUCK|nts use slyly slyly iron| +76526|616592|41617|4|41|61850.96|0.06|0.02|N|O|1996-11-24|1996-12-03|1996-12-23|COLLECT COD|AIR|long the fluffily p| +76526|46265|21266|5|45|54506.70|0.04|0.01|N|O|1997-01-12|1996-12-30|1997-01-30|NONE|FOB|counts. slyly pending braids | +76526|566629|4163|6|12|20347.20|0.07|0.01|N|O|1997-01-12|1996-12-30|1997-02-09|DELIVER IN PERSON|SHIP|aggle furiously after the unusual ideas. | +76527|822730|47763|1|35|57844.15|0.04|0.01|N|O|1998-07-11|1998-05-30|1998-07-23|TAKE BACK RETURN|FOB|fily furious packages kindle furiously | +76527|621679|34192|2|47|75230.08|0.06|0.00|N|O|1998-05-13|1998-06-11|1998-05-27|TAKE BACK RETURN|SHIP|accounts. slyly special request| +76527|551994|14506|3|9|18413.73|0.02|0.00|N|O|1998-08-20|1998-07-16|1998-09-05|COLLECT COD|RAIL|lly above the quickly ironic excuses. | +76552|670834|33348|1|23|41510.40|0.00|0.08|N|O|1997-09-01|1997-10-14|1997-09-26|COLLECT COD|FOB|egular pack| +76552|695089|7603|2|19|20596.95|0.06|0.06|N|O|1997-08-31|1997-11-04|1997-09-29|TAKE BACK RETURN|REG AIR|ependencies cajole quickly across the fu| +76552|348984|36503|3|7|14230.79|0.04|0.08|N|O|1997-09-22|1997-10-07|1997-09-27|TAKE BACK RETURN|SHIP|ously express request| +76552|373689|36197|4|35|61693.45|0.04|0.08|N|O|1997-12-25|1997-11-26|1998-01-08|COLLECT COD|AIR|ep carefully. brave acco| +76552|580086|30087|5|38|44310.28|0.03|0.02|N|O|1997-10-22|1997-10-02|1997-11-12|TAKE BACK RETURN|RAIL|ss realms. un| +76552|491113|41114|6|33|36434.97|0.06|0.03|N|O|1997-12-07|1997-11-25|1997-12-29|COLLECT COD|RAIL|beans are. brave pinto b| +76553|621549|9086|1|19|27939.69|0.06|0.00|N|O|1997-06-24|1997-06-21|1997-06-25|TAKE BACK RETURN|FOB|ully final ideas wake about the q| +76553|366575|4097|2|49|80436.44|0.02|0.07|N|O|1997-04-23|1997-04-27|1997-04-25|DELIVER IN PERSON|REG AIR|sual accounts sleep slyly w| +76553|12980|25481|3|5|9464.90|0.02|0.07|N|O|1997-03-30|1997-05-20|1997-04-02|COLLECT COD|MAIL|s. requests wake blithely at the bold pi| +76553|141965|16970|4|4|8027.84|0.02|0.00|N|O|1997-05-14|1997-06-04|1997-05-17|COLLECT COD|FOB|ut the car| +76553|992201|17240|5|31|40087.96|0.09|0.02|N|O|1997-05-25|1997-06-03|1997-05-27|DELIVER IN PERSON|REG AIR|ongside of the quickl| +76553|907893|20412|6|46|87439.10|0.03|0.00|N|O|1997-04-06|1997-06-15|1997-04-24|NONE|MAIL| beans boost after the carefully fi| +76553|945562|8081|7|18|28935.36|0.05|0.00|N|O|1997-06-02|1997-05-10|1997-06-12|TAKE BACK RETURN|TRUCK|ular packages. s| +76554|50546|547|1|3|4489.62|0.09|0.06|A|F|1994-03-25|1994-03-09|1994-04-15|NONE|FOB|equests nag furiously f| +76554|523176|23177|2|4|4796.60|0.04|0.05|A|F|1994-03-27|1994-02-10|1994-03-31|COLLECT COD|MAIL|onic accounts. care| +76554|3916|16417|3|1|1819.91|0.04|0.02|R|F|1994-04-21|1994-02-04|1994-04-27|COLLECT COD|TRUCK|. furiously b| +76555|519575|19576|1|36|57403.80|0.04|0.07|R|F|1993-05-14|1993-07-18|1993-05-29|NONE|AIR|ole slyly after the f| +76555|492933|30461|2|27|51999.57|0.09|0.03|A|F|1993-06-25|1993-05-26|1993-07-02|DELIVER IN PERSON|RAIL|ual packages cajole. silent ideas unwind | +76555|719378|6921|3|34|47509.56|0.05|0.08|A|F|1993-04-21|1993-06-28|1993-05-16|COLLECT COD|FOB|ar deposits are closely | +76555|580490|18024|4|11|17275.17|0.05|0.04|A|F|1993-06-13|1993-07-09|1993-06-14|DELIVER IN PERSON|MAIL|wake fluffily | +76556|574640|12174|1|29|49723.98|0.09|0.06|N|O|1996-07-31|1996-09-01|1996-08-04|DELIVER IN PERSON|FOB|furiously slow deposits wake slyly ab| +76556|965262|27782|2|32|42471.04|0.09|0.01|N|O|1996-10-25|1996-10-07|1996-11-17|NONE|FOB|haggle carefully slyly silent foxe| +76556|145411|32918|3|22|32041.02|0.00|0.02|N|O|1996-08-24|1996-09-21|1996-08-25|DELIVER IN PERSON|SHIP|usual requests about th| +76557|469739|44758|1|22|37591.62|0.04|0.02|R|F|1992-12-10|1992-10-23|1992-12-30|TAKE BACK RETURN|FOB|e furiously| +76557|890970|3488|2|17|33335.81|0.03|0.06|R|F|1992-12-22|1992-10-05|1993-01-06|COLLECT COD|REG AIR|courts. bli| +76557|521278|21279|3|16|20788.00|0.01|0.02|R|F|1992-11-23|1992-10-02|1992-12-14|NONE|FOB|edly even asymptotes sle| +76557|113707|13708|4|45|77431.50|0.09|0.01|A|F|1992-10-22|1992-11-11|1992-11-10|NONE|FOB|uickly bold| +76558|931974|31975|1|49|98290.57|0.10|0.04|R|F|1992-10-24|1992-12-22|1992-11-21|DELIVER IN PERSON|TRUCK|thy packages haggle blithely even reques| +76559|514148|26659|1|27|31377.24|0.08|0.05|R|F|1993-11-03|1993-10-06|1993-11-16|DELIVER IN PERSON|FOB|ideas sleep among| +76559|276286|1297|2|40|50490.80|0.09|0.06|R|F|1993-08-03|1993-08-18|1993-08-14|COLLECT COD|RAIL|n, ironic dolphins detec| +76559|537058|49569|3|40|43801.20|0.00|0.02|R|F|1993-08-25|1993-10-03|1993-09-14|DELIVER IN PERSON|RAIL| haggle about the slyly even asympt| +76584|690875|40876|1|18|33585.12|0.03|0.08|A|F|1992-10-25|1992-10-11|1992-10-31|COLLECT COD|AIR|al instructions! quickl| +76584|535573|10594|2|36|57907.80|0.05|0.04|R|F|1992-08-07|1992-09-14|1992-08-11|COLLECT COD|RAIL|mong the silen| +76584|363529|1051|3|30|47775.30|0.02|0.00|A|F|1992-08-05|1992-09-11|1992-08-21|TAKE BACK RETURN|FOB| pinto beans are quickly blithely | +76585|138657|1160|1|6|10173.90|0.02|0.03|N|O|1996-08-02|1996-07-24|1996-08-06|NONE|RAIL|ajole. even, fina| +76585|396060|8568|2|42|48554.10|0.01|0.03|N|O|1996-08-02|1996-09-11|1996-08-03|DELIVER IN PERSON|AIR| wake carefully. always ruthles| +76585|579949|17483|3|16|32462.72|0.08|0.05|N|O|1996-09-28|1996-08-13|1996-10-21|NONE|MAIL|l foxes are slyly above the even| +76586|200229|12734|1|41|46297.61|0.01|0.08|N|O|1997-12-26|1998-01-01|1998-01-25|TAKE BACK RETURN|AIR|gular tithe| +76586|243105|30618|2|49|51356.41|0.02|0.07|N|O|1997-12-16|1997-12-29|1998-01-13|COLLECT COD|RAIL|ts haggle blith| +76586|852102|27137|3|39|41108.34|0.06|0.01|N|O|1998-01-25|1997-12-04|1998-02-08|DELIVER IN PERSON|RAIL|hely sly deposits haggle f| +76586|268801|43812|4|22|38935.38|0.10|0.03|N|O|1997-11-30|1998-01-23|1997-12-29|TAKE BACK RETURN|FOB|above the | +76586|729221|29222|5|17|21253.23|0.10|0.06|N|O|1997-11-22|1997-11-26|1997-12-12|COLLECT COD|MAIL|osits hagg| +76586|7756|32757|6|2|3327.50|0.01|0.02|N|O|1997-11-03|1997-12-26|1997-11-09|NONE|FOB|ns among the | +76586|345026|20039|7|31|33201.31|0.04|0.08|N|O|1998-01-03|1997-12-07|1998-01-10|NONE|FOB| accounts after the pendin| +76587|851796|39348|1|14|24468.50|0.03|0.07|N|O|1996-12-30|1997-01-28|1997-01-20|DELIVER IN PERSON|FOB|sits cajole caref| +76587|132214|32215|2|19|23677.99|0.06|0.04|N|O|1996-12-20|1997-02-10|1997-01-12|TAKE BACK RETURN|TRUCK|yly final accounts boost final ac| +76587|111182|48689|3|49|58465.82|0.01|0.08|N|O|1997-03-02|1997-03-01|1997-03-17|DELIVER IN PERSON|SHIP|s. blithely special theodol| +76587|633904|46417|4|27|49622.49|0.04|0.08|N|O|1997-02-12|1997-01-29|1997-03-14|NONE|MAIL|o beans sleep slyly furiously brave excu| +76587|7743|45244|5|17|28062.58|0.03|0.06|N|O|1997-02-22|1997-02-08|1997-03-03|TAKE BACK RETURN|AIR|s nag blithely alongside of the s| +76587|124072|11579|6|5|5480.35|0.03|0.07|N|O|1996-12-24|1997-02-28|1997-01-14|COLLECT COD|RAIL|s. regular a| +76587|276961|1972|7|36|69766.20|0.08|0.06|N|O|1997-01-29|1997-02-10|1997-02-08|NONE|RAIL|l requests haggle sl| +76588|882758|32759|1|35|60924.85|0.02|0.01|R|F|1993-03-02|1993-03-02|1993-03-04|NONE|SHIP|refully eve| +76588|500658|659|2|23|38148.49|0.07|0.05|R|F|1993-03-27|1993-02-10|1993-04-23|NONE|REG AIR|odolites. blithely express| +76588|549257|36788|3|38|49636.74|0.04|0.05|A|F|1993-02-11|1993-02-07|1993-03-01|NONE|FOB|thely express deposits| +76588|351994|39516|4|34|69563.32|0.03|0.06|A|F|1992-12-29|1993-03-18|1993-01-10|DELIVER IN PERSON|TRUCK|arefully fluffily special ideas. theodolit| +76589|250820|38336|1|1|1770.81|0.02|0.06|R|F|1995-03-22|1995-04-18|1995-04-05|TAKE BACK RETURN|FOB|; pending ex| +76589|518605|18606|2|22|35718.76|0.09|0.04|R|F|1995-05-13|1995-05-23|1995-05-24|NONE|REG AIR|ular deposits are carefully reg| +76589|188978|26488|3|33|68210.01|0.08|0.07|A|F|1995-04-23|1995-03-28|1995-05-11|COLLECT COD|MAIL|slyly bold d| +76589|146816|21821|4|29|54021.49|0.10|0.02|R|F|1995-04-19|1995-04-26|1995-05-19|NONE|MAIL| theodolites-- quickly| +76589|528450|15981|5|17|25133.31|0.02|0.02|A|F|1995-04-21|1995-05-09|1995-05-21|COLLECT COD|TRUCK| beans after the regular | +76590|629194|4219|1|44|49419.04|0.10|0.00|R|F|1994-01-23|1993-12-18|1994-02-18|TAKE BACK RETURN|SHIP|ss the furiously regular accounts. qui| +76590|853785|28820|2|3|5216.22|0.03|0.03|A|F|1994-01-22|1994-01-17|1994-01-27|NONE|TRUCK|fter the unusual excuses. furiously | +76590|556164|31187|3|12|14641.68|0.05|0.07|A|F|1994-02-24|1993-12-13|1994-03-07|COLLECT COD|SHIP| idly pending grouches sleep quickly about| +76590|438401|910|4|33|44199.54|0.01|0.07|R|F|1993-12-26|1993-12-10|1993-12-28|DELIVER IN PERSON|MAIL| packages shall have t| +76591|770666|8212|1|17|29522.71|0.07|0.05|N|O|1998-08-28|1998-07-19|1998-09-09|TAKE BACK RETURN|AIR|g requests sleep | +76591|572511|10045|2|10|15834.90|0.10|0.04|N|O|1998-09-05|1998-07-12|1998-09-13|COLLECT COD|AIR|the depths. special packages wake alongsi| +76591|185152|47656|3|37|45774.55|0.03|0.00|N|O|1998-09-06|1998-07-24|1998-10-04|COLLECT COD|AIR|heaves are | +76591|840921|15954|4|24|44685.12|0.01|0.02|N|O|1998-06-14|1998-08-16|1998-07-09|DELIVER IN PERSON|MAIL|cajole carefully about t| +76591|347602|10109|5|25|41239.75|0.09|0.08|N|O|1998-09-03|1998-08-28|1998-09-27|NONE|AIR|ntegrate. slyly ironic foxes across the car| +76591|146770|46771|6|28|50869.56|0.00|0.04|N|O|1998-09-26|1998-08-21|1998-10-26|TAKE BACK RETURN|FOB|ffily thin deposits. even| +76616|394825|7333|1|41|78712.21|0.03|0.07|R|F|1992-12-25|1993-02-16|1993-01-11|COLLECT COD|SHIP|r packages haggle furiously bl| +76616|810096|47645|2|25|25151.25|0.00|0.07|R|F|1993-02-26|1993-01-17|1993-03-14|DELIVER IN PERSON|FOB|s may detec| +76616|268004|5520|3|26|25271.74|0.00|0.07|A|F|1993-04-05|1993-03-09|1993-04-10|NONE|AIR|thely speci| +76616|329452|4465|4|12|17777.28|0.00|0.06|R|F|1993-02-03|1993-01-22|1993-02-18|COLLECT COD|TRUCK|d the furious| +76616|83005|45507|5|45|44460.00|0.04|0.04|R|F|1992-12-16|1993-01-08|1993-01-02|NONE|SHIP|regular requests| +76617|829256|29257|1|47|55704.87|0.05|0.02|N|O|1998-02-20|1998-02-14|1998-03-20|COLLECT COD|REG AIR|latelets play unusual theodolites| +76617|300535|38054|2|46|70633.92|0.09|0.05|N|O|1998-02-11|1998-03-26|1998-03-01|DELIVER IN PERSON|REG AIR|es cajole slyly final deposits. pending | +76617|88100|38101|3|2|2176.20|0.02|0.04|N|O|1998-04-20|1998-03-09|1998-04-24|NONE|REG AIR|olites wake blithely; slyly regular foxes| +76617|681186|31187|4|4|4668.60|0.01|0.05|N|O|1998-03-16|1998-03-02|1998-03-20|DELIVER IN PERSON|SHIP|cording to the carefully regular | +76617|689451|1965|5|18|25927.56|0.01|0.01|N|O|1998-03-10|1998-02-15|1998-03-31|DELIVER IN PERSON|MAIL| cajole. blithely fina| +76617|594341|19364|6|4|5741.28|0.04|0.08|N|O|1998-02-05|1998-02-26|1998-03-07|COLLECT COD|RAIL|cording to the daringly final deposits. reg| +76618|628133|3158|1|8|8488.80|0.05|0.03|N|O|1998-09-27|1998-08-16|1998-10-26|TAKE BACK RETURN|AIR|ully express dolphi| +76618|20252|20253|2|33|38684.25|0.05|0.06|N|O|1998-09-15|1998-09-06|1998-10-10|DELIVER IN PERSON|MAIL|t slyly after the furiously r| +76618|369825|44840|3|24|45475.44|0.05|0.01|N|O|1998-07-13|1998-08-12|1998-07-16|DELIVER IN PERSON|AIR|as slyly bold requests. furiously i| +76618|637797|12822|4|29|50308.04|0.02|0.08|N|O|1998-07-07|1998-08-27|1998-07-31|COLLECT COD|REG AIR|ly bold accounts po| +76618|446560|34085|5|7|10545.78|0.00|0.08|N|O|1998-07-17|1998-09-10|1998-08-15|TAKE BACK RETURN|AIR|its sleep carefully furiously ironi| +76619|697063|47064|1|30|31800.90|0.05|0.00|N|O|1998-07-15|1998-07-23|1998-07-21|NONE|AIR|even packages. quick| +76619|522013|22014|2|28|28979.72|0.00|0.07|N|O|1998-08-24|1998-06-26|1998-08-25|NONE|REG AIR|hely bold accounts. furiously pending req| +76619|467882|42901|3|40|73994.40|0.07|0.01|N|O|1998-08-09|1998-06-25|1998-08-30|TAKE BACK RETURN|AIR|ly regular accounts. furious| +76619|677664|40178|4|33|54173.79|0.03|0.07|N|O|1998-08-26|1998-06-25|1998-09-01|COLLECT COD|SHIP|ut the unusual Tiresias affix| +76620|758888|21404|1|8|15574.80|0.10|0.00|R|F|1992-08-21|1992-08-09|1992-09-13|COLLECT COD|MAIL|o beans to the quickly| +76620|615786|15787|2|24|40842.00|0.09|0.05|A|F|1992-10-08|1992-09-19|1992-10-20|NONE|MAIL|xcuses wake e| +76620|511561|11562|3|13|20443.02|0.03|0.08|R|F|1992-08-26|1992-09-08|1992-09-07|NONE|RAIL|s. slyly ironic| +76620|798872|36418|4|41|80804.44|0.02|0.07|A|F|1992-11-02|1992-08-30|1992-11-29|TAKE BACK RETURN|FOB|he realms are above the carefull| +76620|634089|46602|5|24|24553.20|0.10|0.05|R|F|1992-07-30|1992-09-09|1992-08-07|TAKE BACK RETURN|RAIL| the pending packages. | +76620|126786|39289|6|47|85200.66|0.10|0.06|A|F|1992-09-18|1992-08-12|1992-10-08|DELIVER IN PERSON|FOB|ep fluffily.| +76621|666016|41043|1|6|5891.88|0.04|0.03|N|O|1996-09-02|1996-09-16|1996-09-13|NONE|SHIP|eas use furiously. regular accounts about t| +76621|719833|44862|2|48|88934.40|0.05|0.08|N|O|1996-09-10|1996-09-23|1996-10-07|DELIVER IN PERSON|MAIL|uickly final requests. qui| +76621|227784|40289|3|16|27388.32|0.01|0.01|N|O|1996-10-31|1996-08-28|1996-11-27|TAKE BACK RETURN|TRUCK|g the even packages. close a| +76621|353784|28799|4|19|34917.63|0.08|0.06|N|O|1996-08-08|1996-09-28|1996-08-28|TAKE BACK RETURN|RAIL|tes sleep blithely accounts| +76621|42894|5395|5|40|73475.60|0.00|0.03|N|O|1996-10-11|1996-09-07|1996-10-30|COLLECT COD|MAIL|s. quickly enticing | +76621|916081|28600|6|29|31814.16|0.08|0.06|N|O|1996-08-26|1996-08-18|1996-09-20|NONE|RAIL|gle carefully regular ideas.| +76622|146447|8950|1|21|31362.24|0.06|0.00|N|O|1996-02-19|1996-04-13|1996-02-28|DELIVER IN PERSON|FOB|. slyly regular| +76622|333762|21281|2|34|61055.50|0.01|0.01|N|O|1996-02-28|1996-03-10|1996-03-04|TAKE BACK RETURN|AIR|s. furiously final packages along | +76622|525365|386|3|35|48661.90|0.02|0.01|N|O|1996-02-07|1996-02-26|1996-02-13|DELIVER IN PERSON|SHIP|slyly acros| +76622|808364|8365|4|50|63616.00|0.05|0.01|N|O|1996-04-07|1996-03-02|1996-04-20|DELIVER IN PERSON|REG AIR|ent accounts. f| +76622|170025|32529|5|7|7665.14|0.00|0.06|N|O|1996-03-03|1996-03-28|1996-03-14|DELIVER IN PERSON|FOB|ly pending ideas haggle iron| +76623|918998|44035|1|22|44372.90|0.07|0.06|N|O|1996-03-12|1996-03-07|1996-04-07|DELIVER IN PERSON|REG AIR|ial requests nag car| +76623|587345|49857|2|46|65886.72|0.01|0.02|N|O|1996-04-13|1996-04-26|1996-05-05|NONE|REG AIR|ake. slyly ironic theodolites impress qu| +76623|493080|30608|3|11|11803.66|0.04|0.00|N|O|1996-05-28|1996-03-30|1996-06-13|NONE|REG AIR|ly ironically final deposits. special, | +76623|193082|43083|4|7|8225.56|0.07|0.06|N|O|1996-03-02|1996-03-07|1996-03-04|NONE|REG AIR|s. foxes nag furiously regular theodolit| +76648|496857|34385|1|16|29661.28|0.06|0.01|R|F|1992-10-31|1992-10-16|1992-11-19|NONE|TRUCK| nod fluffily.| +76648|661540|11541|2|15|22522.65|0.01|0.05|R|F|1992-11-26|1992-09-12|1992-11-30|COLLECT COD|RAIL|ments maintain above the foxes. caref| +76648|498242|48243|3|22|27284.84|0.05|0.08|R|F|1992-09-14|1992-10-12|1992-09-16|NONE|REG AIR|nts haggle furiously deposits. blith| +76648|953066|28105|4|42|46998.84|0.00|0.02|A|F|1992-09-15|1992-09-17|1992-10-09|DELIVER IN PERSON|SHIP|iously regular accounts | +76648|164966|14967|5|16|32495.36|0.07|0.06|A|F|1992-10-04|1992-09-16|1992-10-11|COLLECT COD|RAIL|arefully final platelets. slyly daring| +76648|571288|33800|6|32|43496.32|0.06|0.08|R|F|1992-08-05|1992-09-17|1992-08-16|DELIVER IN PERSON|REG AIR| above the closely bo| +76648|634374|21911|7|29|37941.86|0.09|0.01|A|F|1992-11-22|1992-09-29|1992-11-23|TAKE BACK RETURN|RAIL|quickly regular | +76649|918379|5934|1|10|13973.30|0.00|0.03|N|O|1997-10-30|1997-09-26|1997-11-12|DELIVER IN PERSON|REG AIR|epths boost across the careful| +76649|179581|42085|2|37|61441.46|0.01|0.04|N|O|1997-08-15|1997-10-17|1997-08-29|NONE|MAIL|al, bold wartho| +76649|201661|14166|3|46|71881.90|0.07|0.07|N|O|1997-10-31|1997-10-19|1997-11-06|DELIVER IN PERSON|SHIP|are slyly. quickly even deposits haggle| +76649|300652|38171|4|13|21484.32|0.07|0.02|N|O|1997-11-02|1997-08-23|1997-11-14|NONE|SHIP|ithely. special deposits across the | +76649|42915|42916|5|48|89179.68|0.01|0.03|N|O|1997-10-11|1997-08-25|1997-11-09|DELIVER IN PERSON|SHIP|ual instructions integrate against the ev| +76649|269144|6660|6|24|26715.12|0.00|0.04|N|O|1997-10-30|1997-09-12|1997-11-25|COLLECT COD|SHIP| final instructi| +76650|13742|1243|1|41|67885.34|0.06|0.05|N|O|1995-11-03|1995-10-26|1995-11-10|DELIVER IN PERSON|MAIL|ringly unusual | +76650|958513|46071|2|17|26714.99|0.03|0.03|N|O|1995-12-17|1995-11-16|1995-12-24|DELIVER IN PERSON|REG AIR|ly ironic foxes. | +76650|720980|20981|3|30|60028.50|0.07|0.05|N|O|1995-12-16|1995-10-24|1996-01-04|DELIVER IN PERSON|AIR|es. furiously| +76650|495178|32706|4|12|14077.80|0.07|0.07|N|O|1995-12-28|1995-10-26|1996-01-25|TAKE BACK RETURN|SHIP|iously ironic theod| +76650|446751|34276|5|6|10186.38|0.06|0.06|N|O|1995-11-04|1995-10-29|1995-11-06|COLLECT COD|RAIL| silent dugo| +76651|784919|22465|1|39|78151.32|0.06|0.05|R|F|1994-09-08|1994-10-18|1994-10-07|NONE|FOB|yly above the accounts. daringly bold | +76651|133064|45567|2|38|41688.28|0.02|0.08|A|F|1994-11-04|1994-09-12|1994-11-20|COLLECT COD|RAIL|ss platelets nag blithely against the| +76651|404457|41982|3|42|57180.06|0.09|0.01|A|F|1994-08-11|1994-09-27|1994-08-27|TAKE BACK RETURN|REG AIR|n packages use. furiously expr| +76651|701776|26805|4|17|30221.58|0.08|0.04|A|F|1994-09-21|1994-10-08|1994-09-28|NONE|MAIL|ss, ironic instructions. blithe| +76651|740852|28395|5|16|30285.12|0.06|0.06|R|F|1994-09-17|1994-09-24|1994-10-15|NONE|SHIP|along the slyly regular packages wake | +76651|484054|9073|6|30|31140.90|0.06|0.07|A|F|1994-09-04|1994-09-21|1994-09-27|COLLECT COD|REG AIR|requests nag c| +76651|484346|21874|7|47|62525.04|0.10|0.08|A|F|1994-11-02|1994-10-09|1994-11-17|COLLECT COD|FOB|lar accounts a| +76652|387871|25393|1|6|11753.16|0.10|0.02|R|F|1993-12-16|1993-10-14|1994-01-10|NONE|AIR|tes sublate. furiously pending de| +76653|769529|7075|1|31|49553.19|0.08|0.02|N|O|1997-05-23|1997-03-21|1997-05-24|DELIVER IN PERSON|SHIP|carefully against the requests. | +76653|460345|10346|2|43|56128.76|0.02|0.02|N|O|1997-04-20|1997-02-23|1997-04-26|COLLECT COD|REG AIR|unusual, pending accounts after the care| +76653|12675|37676|3|47|74620.49|0.10|0.01|N|O|1997-04-17|1997-04-06|1997-04-22|TAKE BACK RETURN|FOB|use furiously| +76654|407047|32064|1|6|5724.12|0.03|0.00|A|F|1992-06-24|1992-03-30|1992-07-18|NONE|AIR|al accounts sleep slyly. quickly daring p| +76654|236479|36480|2|28|39632.88|0.01|0.01|A|F|1992-04-27|1992-03-28|1992-05-07|COLLECT COD|REG AIR|lithely fluffily even requests. f| +76654|500430|12941|3|20|28608.20|0.08|0.07|R|F|1992-06-26|1992-04-14|1992-06-29|TAKE BACK RETURN|MAIL|ily express requests b| +76654|714320|1863|4|1|1334.29|0.09|0.06|R|F|1992-05-05|1992-04-05|1992-05-09|NONE|AIR|osits breach furi| +76655|974762|49801|1|45|82652.40|0.02|0.06|A|F|1992-11-16|1992-10-27|1992-11-30|DELIVER IN PERSON|FOB|s wake carefull| +76655|811601|36634|2|35|52939.60|0.02|0.00|R|F|1992-09-15|1992-10-07|1992-10-04|DELIVER IN PERSON|RAIL|ress, regular requests. furi| +76655|562571|105|3|29|47372.95|0.01|0.00|R|F|1992-12-02|1992-11-06|1992-12-30|TAKE BACK RETURN|REG AIR|c instructions after the furiously | +76655|119983|32486|4|7|14020.86|0.06|0.06|R|F|1992-10-06|1992-10-21|1992-10-08|NONE|MAIL|ructions bo| +76655|549363|49364|5|20|28246.80|0.00|0.05|R|F|1992-09-15|1992-10-12|1992-10-13|COLLECT COD|FOB|y brave, furious dugouts. special, f| +76680|693815|31355|1|7|12661.46|0.02|0.00|N|O|1997-11-27|1997-10-05|1997-12-06|NONE|MAIL| pending requests. express instruc| +76680|947668|47669|2|7|12009.34|0.08|0.00|N|O|1997-09-18|1997-11-03|1997-09-22|DELIVER IN PERSON|SHIP|ent packages. blithely ironic frays| +76680|450482|483|3|41|58730.86|0.05|0.03|N|O|1997-09-22|1997-09-17|1997-10-15|COLLECT COD|AIR|along the | +76680|248069|23078|4|29|29494.45|0.10|0.04|N|O|1997-08-21|1997-09-19|1997-09-07|TAKE BACK RETURN|RAIL|tealthy pinto beans boost furiou| +76681|204912|4913|1|15|27253.50|0.00|0.04|N|O|1998-01-05|1997-12-31|1998-01-10|COLLECT COD|AIR|requests are. | +76681|940597|15634|2|31|50764.05|0.01|0.05|N|O|1998-01-03|1998-01-06|1998-01-09|DELIVER IN PERSON|RAIL|elets are blithely slyly pending de| +76681|610055|10056|3|17|16405.34|0.08|0.03|N|O|1997-11-28|1998-01-18|1997-12-05|TAKE BACK RETURN|TRUCK|cial notornis. packages p| +76682|602929|15442|1|49|89762.61|0.01|0.02|N|O|1997-09-05|1997-11-08|1997-10-05|DELIVER IN PERSON|FOB|ns are fluffily | +76682|414424|39441|2|6|8030.40|0.10|0.03|N|O|1997-11-24|1997-10-09|1997-12-22|COLLECT COD|REG AIR|uriously ironic accounts maintain caref| +76682|210731|23236|3|45|73877.40|0.04|0.00|N|O|1997-11-23|1997-11-20|1997-12-03|DELIVER IN PERSON|RAIL|ts affix bol| +76682|751148|1149|4|14|16787.54|0.09|0.06|N|O|1997-10-23|1997-11-06|1997-11-15|DELIVER IN PERSON|FOB|lites. furiously final p| +76682|535792|23323|5|26|47522.02|0.00|0.00|N|O|1997-10-16|1997-10-28|1997-10-19|TAKE BACK RETURN|REG AIR| wake. dependencies cajole qu| +76682|55423|30426|6|42|57893.64|0.02|0.04|N|O|1997-11-06|1997-10-18|1997-11-27|NONE|REG AIR| the slyly even accou| +76682|485289|47799|7|9|11468.34|0.08|0.03|N|O|1997-09-27|1997-11-13|1997-10-16|COLLECT COD|RAIL|encies. furiously even package| +76683|250975|38491|1|24|46223.04|0.05|0.05|R|F|1993-08-22|1993-05-23|1993-09-20|DELIVER IN PERSON|MAIL|dependencies! silent, even fox| +76683|122610|35113|2|37|60406.57|0.04|0.07|A|F|1993-08-18|1993-07-11|1993-09-01|DELIVER IN PERSON|MAIL|lar instruc| +76683|704925|42468|3|18|34738.02|0.02|0.02|R|F|1993-04-28|1993-07-15|1993-05-19|DELIVER IN PERSON|FOB|foxes snooze quickly ironic excus| +76683|660827|48367|4|1|1787.79|0.08|0.00|A|F|1993-06-22|1993-05-31|1993-06-28|NONE|REG AIR| quickly regular instructions! carefull| +76683|517644|42665|5|48|79757.76|0.03|0.08|A|F|1993-06-08|1993-06-21|1993-06-19|NONE|FOB|o beans wake ironically furiously | +76684|407990|7991|1|36|68326.92|0.01|0.03|N|O|1998-01-22|1997-12-28|1998-02-19|COLLECT COD|RAIL|accounts haggle about| +76684|80111|30112|2|10|10911.10|0.02|0.05|N|O|1997-10-14|1997-11-15|1997-10-21|NONE|TRUCK|n, pending accounts are furiously a| +76684|414907|14908|3|24|43725.12|0.06|0.05|N|O|1997-10-15|1997-12-15|1997-10-21|TAKE BACK RETURN|TRUCK|ges. sometimes i| +76684|328124|28125|4|49|56453.39|0.02|0.03|N|O|1997-12-16|1997-12-07|1998-01-08|COLLECT COD|RAIL|f the inst| +76684|771943|9489|5|3|6044.73|0.05|0.07|N|O|1998-01-24|1997-12-05|1998-02-20|DELIVER IN PERSON|SHIP|ound the final, final sentiments.| +76684|41893|4394|6|6|11009.34|0.00|0.04|N|O|1998-01-13|1997-11-21|1998-01-18|COLLECT COD|AIR|ideas breac| +76684|92502|42503|7|48|71736.00|0.00|0.05|N|O|1998-01-06|1997-12-10|1998-01-10|DELIVER IN PERSON|FOB|ial braids. even, ironic requests d| +76685|672425|34939|1|44|61485.16|0.08|0.00|A|F|1993-05-07|1993-04-23|1993-05-26|NONE|FOB|leep slyly regular theodo| +76685|434646|9663|2|25|39515.50|0.08|0.08|R|F|1993-06-02|1993-06-11|1993-06-18|COLLECT COD|REG AIR|ng to the blithely reg| +76685|92879|42880|3|14|26206.18|0.08|0.04|A|F|1993-06-21|1993-05-19|1993-06-29|TAKE BACK RETURN|SHIP| theodolites. furiously regular deposi| +76685|6290|18791|4|3|3588.87|0.05|0.07|R|F|1993-05-08|1993-05-07|1993-05-12|COLLECT COD|FOB|ly regular pinto beans | +76685|703515|41058|5|47|71368.56|0.09|0.07|R|F|1993-06-17|1993-04-21|1993-06-28|COLLECT COD|AIR|ed pinto beans are blithely alongside of| +76685|968921|31441|6|22|43777.36|0.01|0.04|R|F|1993-07-17|1993-05-31|1993-08-13|DELIVER IN PERSON|REG AIR| cajole blithely bravely final ac| +76685|640755|40756|7|6|10174.32|0.01|0.02|A|F|1993-07-05|1993-05-30|1993-07-20|DELIVER IN PERSON|MAIL|blithely regular | +76686|163218|13219|1|38|48685.98|0.03|0.08|R|F|1995-06-05|1995-05-05|1995-06-11|TAKE BACK RETURN|AIR| requests. furiously| +76686|200498|13003|2|18|25172.64|0.09|0.08|A|F|1995-05-23|1995-04-16|1995-05-24|NONE|REG AIR|nusual requests. pending ac| +76686|754568|42114|3|10|16225.30|0.08|0.02|R|F|1995-04-12|1995-03-31|1995-04-30|TAKE BACK RETURN|FOB|among the m| +76687|54230|29233|1|19|22500.37|0.09|0.03|A|F|1994-05-29|1994-06-22|1994-06-03|DELIVER IN PERSON|TRUCK| packages haggle along the dependencie| +76712|264936|27442|1|38|72234.96|0.02|0.01|R|F|1993-12-20|1994-02-04|1994-01-17|DELIVER IN PERSON|MAIL|olphins are quickly according to th| +76712|768439|43470|2|12|18088.80|0.02|0.01|R|F|1994-01-11|1994-03-01|1994-02-03|NONE|RAIL| packages. furio| +76713|793392|18423|1|35|51987.60|0.03|0.06|R|F|1993-03-28|1993-01-31|1993-04-26|NONE|MAIL|regular requests integrate a| +76713|535880|48391|2|22|42148.92|0.09|0.04|A|F|1992-12-09|1993-01-29|1992-12-24|COLLECT COD|TRUCK|final deposits | +76713|528009|28010|3|17|17628.66|0.10|0.01|R|F|1993-03-03|1993-01-02|1993-03-17|DELIVER IN PERSON|AIR|oxes eat slyly quick| +76713|240893|15902|4|35|64185.80|0.00|0.06|R|F|1993-03-06|1993-01-30|1993-03-18|COLLECT COD|RAIL|round the blithel| +76713|681583|6610|5|26|40678.30|0.10|0.03|A|F|1993-03-10|1993-01-29|1993-04-07|COLLECT COD|RAIL|ockey players use. furiously reg| +76713|355483|30498|6|28|43077.16|0.03|0.05|R|F|1993-01-09|1993-01-05|1993-01-14|DELIVER IN PERSON|REG AIR| unusual, unusual deposits| +76713|590014|15037|7|43|47471.57|0.07|0.06|R|F|1993-03-20|1993-02-26|1993-04-17|NONE|AIR|special requests sleep. furiously regu| +76714|364449|14450|1|10|15134.30|0.07|0.00|N|O|1996-05-07|1996-02-27|1996-05-19|COLLECT COD|RAIL| dependencies haggle fluffily above t| +76714|291497|29013|2|25|37212.00|0.10|0.01|N|O|1996-05-22|1996-04-10|1996-06-13|DELIVER IN PERSON|TRUCK|egular dep| +76714|187046|49550|3|27|30592.08|0.10|0.07|N|O|1996-03-21|1996-04-19|1996-03-25|TAKE BACK RETURN|FOB|ironic deposits. slyly pending dolphins g| +76714|667188|4728|4|2|2310.30|0.04|0.07|N|O|1996-02-27|1996-04-04|1996-03-04|NONE|SHIP|le never carefully pending| +76714|419212|44229|5|5|5655.95|0.02|0.08|N|O|1996-04-07|1996-04-14|1996-04-17|NONE|REG AIR|ng the carefully silent excuses. even, q| +76714|680505|43019|6|15|22282.05|0.07|0.05|N|O|1996-03-07|1996-03-20|1996-03-22|NONE|REG AIR|azzle according to the f| +76715|274752|49763|1|40|69069.60|0.06|0.06|N|O|1998-06-05|1998-07-06|1998-07-03|TAKE BACK RETURN|RAIL| snooze. carefully even inst| +76715|756544|44090|2|21|33610.71|0.08|0.01|N|O|1998-06-03|1998-06-22|1998-06-06|COLLECT COD|AIR|are whithout the carefully reg| +76715|222758|22759|3|15|25211.10|0.04|0.08|N|O|1998-05-11|1998-05-21|1998-06-06|COLLECT COD|MAIL| eat about the slyly| +76716|841175|41176|1|28|31251.64|0.08|0.06|A|F|1993-11-04|1994-01-13|1993-12-03|DELIVER IN PERSON|TRUCK|usly final requests alongsid| +76716|612011|12012|2|14|12921.72|0.00|0.06|R|F|1993-11-13|1993-12-18|1993-11-24|NONE|FOB|y regular gi| +76717|858801|33836|1|17|29915.92|0.02|0.04|A|F|1994-01-27|1994-01-18|1994-01-29|TAKE BACK RETURN|MAIL| accounts use blithely after the blithel| +76717|853338|28373|2|38|49069.02|0.07|0.06|R|F|1994-03-07|1994-02-11|1994-04-06|TAKE BACK RETURN|AIR|ely special patterns. slyly final| +76717|36854|11855|3|7|12535.95|0.09|0.02|R|F|1994-01-31|1994-01-02|1994-02-08|TAKE BACK RETURN|FOB|long the slyly sp| +76717|403838|3839|4|41|71414.21|0.02|0.05|R|F|1994-01-15|1994-01-22|1994-01-19|DELIVER IN PERSON|TRUCK|ar requests acro| +76717|290733|15744|5|13|22408.36|0.03|0.02|R|F|1994-03-10|1994-02-19|1994-03-13|TAKE BACK RETURN|MAIL|ously unusual asymptotes w| +76717|335099|10112|6|23|26083.84|0.05|0.01|A|F|1994-02-13|1994-01-08|1994-02-19|NONE|MAIL|kages are careful| +76718|229054|4063|1|33|32440.32|0.08|0.04|A|F|1993-02-07|1993-03-17|1993-02-24|NONE|TRUCK|sy packages. special, express packages | +76719|143102|5605|1|26|29772.60|0.09|0.01|N|O|1996-10-27|1996-10-26|1996-11-06|NONE|SHIP|posits detec| +76719|101753|39260|2|44|77209.00|0.05|0.07|N|O|1996-09-18|1996-09-20|1996-09-28|DELIVER IN PERSON|MAIL|ourts sleep accordin| +76744|80084|5087|1|12|12768.96|0.09|0.08|A|F|1993-05-16|1993-05-25|1993-05-24|DELIVER IN PERSON|RAIL|jole slyly express, final pack| +76744|970799|8357|2|9|16827.75|0.03|0.00|R|F|1993-06-18|1993-07-02|1993-07-18|NONE|SHIP|, special requests among the quickly regu| +76744|216336|16337|3|23|28803.36|0.07|0.01|A|F|1993-07-30|1993-06-07|1993-08-01|NONE|REG AIR| wake across the carefully f| +76744|947935|10454|4|12|23794.68|0.00|0.01|R|F|1993-05-31|1993-06-04|1993-06-25|TAKE BACK RETURN|FOB|. finally bold| +76745|887899|37900|1|30|56605.50|0.10|0.05|N|O|1997-08-06|1997-06-17|1997-08-31|COLLECT COD|MAIL|ke idly about the blithely | +76745|914520|27039|2|21|32224.08|0.00|0.00|N|O|1997-09-06|1997-06-14|1997-09-08|TAKE BACK RETURN|SHIP|gle furiously-- express ideas use| +76745|331741|19260|3|43|76227.39|0.06|0.04|N|O|1997-07-25|1997-06-30|1997-08-03|NONE|MAIL|y regular excuses unwind carefully acc| +76745|555135|17647|4|30|35703.30|0.05|0.05|N|O|1997-08-24|1997-06-28|1997-08-29|TAKE BACK RETURN|TRUCK|instructions wake blithely bold| +76745|143533|6036|5|7|11035.71|0.06|0.06|N|O|1997-06-24|1997-08-01|1997-07-20|TAKE BACK RETURN|TRUCK|sly regular | +76745|358722|8723|6|8|14245.68|0.05|0.08|N|O|1997-08-02|1997-06-20|1997-08-20|DELIVER IN PERSON|SHIP|ackages was care| +76745|34653|9654|7|44|69856.60|0.10|0.06|N|O|1997-06-23|1997-06-14|1997-07-06|DELIVER IN PERSON|RAIL|are carefully brave accounts. furiously spe| +76746|406086|6087|1|19|18849.14|0.08|0.05|R|F|1992-12-08|1992-11-21|1992-12-22|TAKE BACK RETURN|SHIP|requests. slowly fin| +76747|196925|34435|1|8|16175.36|0.00|0.08|N|O|1996-06-30|1996-06-24|1996-07-27|COLLECT COD|REG AIR|ithely ironic accounts sleep furiously r| +76748|136923|36924|1|13|25478.96|0.02|0.04|N|O|1995-11-06|1995-12-02|1995-11-09|DELIVER IN PERSON|TRUCK|final theodolites. regular, express courts| +76748|255905|5906|2|18|33496.02|0.00|0.01|N|O|1996-01-21|1996-01-28|1996-01-28|NONE|FOB|sits. furiously bold| +76748|987222|24780|3|45|58913.10|0.01|0.07|N|O|1995-12-24|1996-01-19|1996-01-11|TAKE BACK RETURN|MAIL|to beans boost carefull| +76748|232023|44528|4|24|22920.24|0.04|0.06|N|O|1995-11-28|1996-01-02|1995-12-05|DELIVER IN PERSON|SHIP|ts are stealthy requests. furiously iro| +76749|569339|31851|1|50|70415.50|0.05|0.03|N|O|1995-09-02|1995-11-01|1995-09-23|DELIVER IN PERSON|FOB|y regular packages m| +76749|876847|39365|2|36|65656.80|0.05|0.01|N|O|1995-12-23|1995-11-15|1995-12-29|TAKE BACK RETURN|MAIL|side of th| +76749|165358|2868|3|17|24196.95|0.01|0.01|N|O|1995-10-14|1995-11-20|1995-10-16|TAKE BACK RETURN|REG AIR|accounts grow quickly carefully | +76750|475506|525|1|43|63703.64|0.00|0.08|N|O|1996-10-10|1996-10-09|1996-10-24|COLLECT COD|REG AIR|ly ironic platelets detect. b| +76750|822604|47637|2|14|21371.84|0.06|0.04|N|O|1996-09-11|1996-10-29|1996-10-09|NONE|FOB|uests grow. e| +76750|490332|40333|3|3|3966.93|0.01|0.06|N|O|1996-09-11|1996-10-04|1996-09-30|NONE|FOB| across the regular, special ac| +76750|997687|10207|4|10|17846.40|0.02|0.00|N|O|1996-09-10|1996-11-25|1996-09-23|NONE|RAIL|tain quickly carefully speci| +76750|120077|32580|5|31|34009.17|0.07|0.06|N|O|1996-12-14|1996-10-30|1996-12-27|NONE|REG AIR|y final pinto beans. regular, | +76750|129147|29148|6|13|15289.82|0.04|0.07|N|O|1996-09-26|1996-11-01|1996-10-14|TAKE BACK RETURN|AIR|cross the blithely regular theod| +76750|568741|18742|7|32|57911.04|0.09|0.07|N|O|1996-09-12|1996-11-04|1996-09-14|NONE|RAIL|c dependencies| +76751|829480|17029|1|17|23960.48|0.04|0.01|R|F|1994-03-25|1994-04-23|1994-04-24|TAKE BACK RETURN|AIR|press deposits| +76751|57545|7546|2|45|67614.30|0.01|0.02|R|F|1994-03-01|1994-03-23|1994-03-13|TAKE BACK RETURN|AIR|ost quickl| +76751|145609|20614|3|8|13236.80|0.05|0.00|R|F|1994-02-21|1994-04-11|1994-03-23|TAKE BACK RETURN|FOB|posits play. fluff| +76751|238079|38080|4|25|25426.50|0.05|0.03|R|F|1994-04-10|1994-04-12|1994-04-28|TAKE BACK RETURN|FOB|furiously along the carefully iron| +76751|392030|29552|5|34|38148.68|0.10|0.07|R|F|1994-02-10|1994-03-17|1994-02-24|DELIVER IN PERSON|REG AIR|d foxes doze blithely| +76751|842825|42826|6|34|60104.52|0.10|0.07|A|F|1994-03-27|1994-04-18|1994-03-28|DELIVER IN PERSON|TRUCK|y regular instructions. quickly even ins| +76751|349924|37443|7|8|15791.28|0.08|0.00|R|F|1994-04-10|1994-03-16|1994-04-30|TAKE BACK RETURN|AIR|! slyly brave accounts kindle carefully fin| +76776|160924|48434|1|39|77411.88|0.08|0.07|A|F|1994-04-01|1994-01-25|1994-04-28|TAKE BACK RETURN|REG AIR|ular deposits haggle furiously ex| +76776|633261|45774|2|45|53740.35|0.07|0.00|R|F|1993-12-30|1994-01-22|1994-01-10|TAKE BACK RETURN|TRUCK|uses! foxes according| +76776|212965|25470|3|37|69484.15|0.06|0.08|A|F|1993-12-30|1994-03-08|1994-01-06|DELIVER IN PERSON|FOB|ular requests at the pending, even depo| +76776|289029|1535|4|32|32576.32|0.03|0.00|A|F|1994-02-10|1994-02-13|1994-02-13|COLLECT COD|MAIL|c packages. regular platelets sleep fur| +76776|701348|26377|5|11|14842.41|0.08|0.05|R|F|1994-02-21|1994-03-03|1994-03-07|TAKE BACK RETURN|MAIL|lithely bold dep| +76776|552848|27871|6|2|3801.64|0.10|0.00|R|F|1994-01-27|1994-01-27|1994-02-10|COLLECT COD|REG AIR|ilent instructions haggle careful| +76776|707138|19653|7|18|20611.80|0.10|0.07|A|F|1994-02-17|1994-01-28|1994-03-03|DELIVER IN PERSON|REG AIR|ecial deposits x-ray furiously. fluffil| +76777|865861|40896|1|39|71245.98|0.06|0.02|R|F|1994-07-16|1994-06-09|1994-07-19|COLLECT COD|TRUCK|uickly regular d| +76777|512608|139|2|49|79408.42|0.09|0.08|R|F|1994-06-23|1994-06-12|1994-06-25|COLLECT COD|MAIL|s are finally a| +76777|397191|9699|3|18|23187.24|0.09|0.03|R|F|1994-07-03|1994-06-07|1994-07-22|DELIVER IN PERSON|RAIL|ly quickly | +76777|583743|8766|4|6|10960.32|0.10|0.04|A|F|1994-07-13|1994-06-27|1994-07-26|TAKE BACK RETURN|AIR|re carefully. pend| +76777|965036|15037|5|18|19817.82|0.04|0.04|R|F|1994-08-15|1994-07-10|1994-08-20|NONE|AIR|pecial deposits b| +76778|813496|26013|1|14|19732.30|0.00|0.00|N|O|1996-07-03|1996-08-16|1996-07-27|TAKE BACK RETURN|SHIP|s sleep furiously fluffily pending | +76778|422491|22492|2|21|29682.87|0.01|0.03|N|O|1996-08-13|1996-06-23|1996-08-24|TAKE BACK RETURN|TRUCK|g asymptotes according to| +76779|194273|6777|1|8|10938.16|0.09|0.01|N|O|1995-06-27|1995-05-20|1995-07-14|TAKE BACK RETURN|FOB|usly final accounts haggl| +76780|574733|12267|1|10|18077.10|0.06|0.01|A|F|1994-11-16|1994-11-28|1994-11-23|TAKE BACK RETURN|AIR|thely regular theodolites haggle about th| +76780|532844|45355|2|33|61935.06|0.02|0.08|A|F|1994-10-11|1994-11-11|1994-10-22|NONE|AIR|deas. fluffily pending requests wak| +76780|506687|19198|3|12|20323.92|0.06|0.06|R|F|1994-12-04|1994-10-12|1994-12-19|DELIVER IN PERSON|SHIP|fluffily regular de| +76780|880093|5128|4|14|15022.70|0.00|0.04|R|F|1994-09-14|1994-11-01|1994-09-28|TAKE BACK RETURN|RAIL|quests nag after the c| +76780|711763|49306|5|41|72763.93|0.08|0.08|A|F|1994-09-16|1994-10-13|1994-10-11|TAKE BACK RETURN|MAIL|long the re| +76780|596053|8565|6|30|34470.90|0.05|0.05|A|F|1994-09-03|1994-10-29|1994-09-11|COLLECT COD|MAIL|ckages boost slyly carefully fi| +76780|857635|7636|7|4|6370.36|0.07|0.04|R|F|1994-11-29|1994-10-20|1994-12-15|COLLECT COD|REG AIR|ic packages haggle quickly even, bold| +76781|271143|33649|1|41|45679.33|0.08|0.06|N|O|1997-01-16|1997-02-03|1997-02-13|NONE|RAIL|unusual accounts| +76781|99435|36939|2|44|63114.92|0.05|0.04|N|O|1997-02-09|1997-02-04|1997-02-15|DELIVER IN PERSON|SHIP|. express, pending theodolites sleep| +76781|194885|44886|3|41|81175.08|0.07|0.07|N|O|1997-02-08|1996-12-29|1997-02-17|DELIVER IN PERSON|REG AIR| blithely blith| +76781|427300|2317|4|39|47863.92|0.09|0.06|N|O|1996-11-16|1997-01-02|1996-12-12|COLLECT COD|AIR|the carefully regular asymptotes. b| +76781|618482|30995|5|36|50416.20|0.10|0.06|N|O|1997-01-04|1996-12-23|1997-01-13|TAKE BACK RETURN|AIR| furiously. pending, bold packag| +76781|811025|23542|6|18|16847.64|0.01|0.04|N|O|1996-12-13|1997-01-21|1997-01-08|TAKE BACK RETURN|SHIP|ainst the carefully ironic | +76781|882761|7796|7|32|55799.04|0.10|0.07|N|O|1997-01-22|1997-02-10|1997-02-13|COLLECT COD|TRUCK|ns. blithely| +76782|552852|2853|1|46|87622.18|0.04|0.04|A|F|1992-10-18|1992-10-06|1992-10-27|NONE|MAIL|around the even platel| +76782|774766|24767|2|15|27610.95|0.08|0.06|A|F|1992-11-02|1992-10-26|1992-11-16|DELIVER IN PERSON|FOB|carefully express packages use | +76782|483888|33889|3|11|20590.46|0.01|0.04|R|F|1992-11-21|1992-10-03|1992-12-11|TAKE BACK RETURN|FOB|ly above the carefully fi| +76782|698197|48198|4|8|9561.28|0.02|0.07|R|F|1992-12-27|1992-11-03|1993-01-25|NONE|FOB|posits. even a| +76782|592981|5493|5|29|60144.84|0.06|0.05|A|F|1992-11-18|1992-11-03|1992-11-29|TAKE BACK RETURN|AIR|le fluffily even requests. fina| +76782|225442|37947|6|5|6837.15|0.07|0.03|R|F|1992-12-02|1992-11-13|1992-12-14|TAKE BACK RETURN|MAIL|lly. express| +76783|867402|4954|1|32|43819.52|0.08|0.07|N|O|1997-12-29|1998-01-30|1997-12-30|TAKE BACK RETURN|AIR|pinto beans are quickly final ideas. id| +76783|416709|16710|2|45|73155.60|0.00|0.02|N|O|1997-12-25|1998-02-05|1997-12-31|DELIVER IN PERSON|REG AIR| even excuses. final, pending | +76783|613739|1276|3|6|9916.20|0.04|0.02|N|O|1998-02-13|1998-03-20|1998-03-01|DELIVER IN PERSON|TRUCK| ironic ideas slee| +76783|103805|41312|4|40|72352.00|0.07|0.04|N|O|1998-04-08|1998-02-10|1998-04-12|TAKE BACK RETURN|RAIL|uriously even dependencies. exp| +76808|389429|26951|1|32|48589.12|0.01|0.07|R|F|1993-11-10|1993-11-06|1993-11-14|COLLECT COD|SHIP|its. regula| +76808|126753|39256|2|4|7119.00|0.00|0.05|A|F|1993-12-19|1993-12-17|1994-01-10|TAKE BACK RETURN|REG AIR|detect blithely at the slyly final depos| +76808|333643|33644|3|41|68741.83|0.02|0.02|A|F|1993-12-16|1993-12-12|1993-12-24|TAKE BACK RETURN|TRUCK|sts sleep enticingly. slyly| +76809|659730|47270|1|30|50691.00|0.04|0.05|N|O|1997-11-30|1997-09-26|1997-12-26|TAKE BACK RETURN|REG AIR|ously even pinto beans are| +76809|70383|45386|2|49|66315.62|0.02|0.06|N|O|1997-10-02|1997-09-04|1997-10-15|DELIVER IN PERSON|RAIL|leep carefully bold, | +76809|921904|34423|3|9|17332.74|0.00|0.07|N|O|1997-08-11|1997-09-06|1997-09-06|COLLECT COD|TRUCK|y ironic theodolites use blit| +76809|434595|9612|4|40|61182.80|0.09|0.04|N|O|1997-10-17|1997-09-15|1997-11-09|TAKE BACK RETURN|REG AIR|ly express foxes nod blit| +76809|234788|34789|5|4|6891.08|0.01|0.02|N|O|1997-09-06|1997-10-07|1997-09-26|COLLECT COD|FOB| dazzle furiously along the care| +76809|71660|34162|6|17|27738.22|0.10|0.08|N|O|1997-08-21|1997-09-23|1997-09-18|TAKE BACK RETURN|SHIP|ts are slyly. pending, b| +76809|380384|5399|7|23|33680.51|0.02|0.03|N|O|1997-09-17|1997-10-08|1997-10-13|TAKE BACK RETURN|MAIL|ss, regular pinto bean| +76810|109806|9807|1|9|16342.20|0.03|0.05|A|F|1992-09-19|1992-10-12|1992-10-13|TAKE BACK RETURN|RAIL|ites. bold, quick deposit| +76810|508078|20589|2|33|35839.65|0.02|0.02|A|F|1992-11-15|1992-10-25|1992-11-16|TAKE BACK RETURN|SHIP|furiously unusual deposits are. depos| +76810|259070|21576|3|17|17494.02|0.01|0.04|R|F|1992-10-22|1992-11-10|1992-10-29|DELIVER IN PERSON|RAIL|es. bravely regula| +76811|294589|19600|1|13|20586.41|0.04|0.07|A|F|1993-01-04|1992-12-24|1993-01-12|NONE|TRUCK|fully along the eve| +76811|154709|29716|2|28|49383.60|0.06|0.08|A|F|1992-12-10|1993-01-20|1992-12-17|DELIVER IN PERSON|REG AIR|onic courts haggle carefully. ca| +76811|182717|7724|3|47|84586.37|0.00|0.04|A|F|1992-12-05|1993-01-10|1992-12-08|TAKE BACK RETURN|TRUCK| cajole blithely | +76811|917775|5330|4|48|86051.04|0.07|0.00|A|F|1993-02-06|1993-01-13|1993-02-14|TAKE BACK RETURN|FOB|encies eat blithely. foxes are. un| +76811|37936|37937|5|14|26235.02|0.09|0.03|R|F|1993-01-17|1992-12-09|1993-02-04|TAKE BACK RETURN|REG AIR|accounts engage slyly alongside of the | +76812|442465|4974|1|26|36593.44|0.05|0.01|N|O|1996-05-16|1996-05-15|1996-06-05|DELIVER IN PERSON|SHIP|counts haggle. final, even packages wa| +76812|499888|49889|2|14|26430.04|0.05|0.00|N|O|1996-05-06|1996-04-10|1996-05-12|TAKE BACK RETURN|TRUCK|sts sleep special accounts. pending theodol| +76812|615172|15173|3|22|23917.08|0.07|0.05|N|O|1996-05-31|1996-05-11|1996-06-08|DELIVER IN PERSON|AIR|uthlessly regular foxes are furious| +76812|188713|38714|4|14|25223.94|0.01|0.00|N|O|1996-06-05|1996-05-13|1996-06-26|TAKE BACK RETURN|AIR| requests dete| +76813|949678|12197|1|16|27642.08|0.08|0.01|R|F|1995-04-05|1995-02-06|1995-04-28|COLLECT COD|REG AIR|slyly. regular, | +76813|221555|46564|2|17|25101.18|0.10|0.03|R|F|1995-03-29|1995-03-05|1995-04-07|NONE|SHIP|to beans. furiously bold requests bo| +76813|670805|20806|3|26|46170.02|0.05|0.05|R|F|1995-03-30|1995-01-28|1995-04-27|DELIVER IN PERSON|REG AIR|fully even requests alo| +76813|206935|31944|4|23|42364.16|0.04|0.01|A|F|1995-01-12|1995-02-15|1995-01-21|NONE|SHIP|posits. deposits wa| +76814|200214|37727|1|11|12256.20|0.05|0.08|N|O|1997-12-25|1997-10-11|1997-12-29|TAKE BACK RETURN|AIR|final warthogs. furiously ironic asymptotes| +76815|350518|13026|1|11|17253.50|0.06|0.01|N|O|1997-06-27|1997-07-17|1997-07-02|TAKE BACK RETURN|SHIP|uests! fluffily even idea| +76840|549377|36908|1|25|35658.75|0.01|0.02|R|F|1994-01-22|1993-12-24|1994-02-21|TAKE BACK RETURN|AIR|l ideas cajole iro| +76840|369351|19352|2|7|9942.38|0.08|0.07|A|F|1994-01-23|1993-12-19|1994-02-13|NONE|FOB|quests wake carefully among the regul| +76840|666890|41917|3|39|72417.54|0.10|0.03|R|F|1994-02-05|1993-12-04|1994-03-04|DELIVER IN PERSON|SHIP|ckages lose slyly busil| +76841|597432|22455|1|41|62705.81|0.06|0.08|A|F|1992-10-29|1992-10-01|1992-11-03|COLLECT COD|MAIL|ns sleep carefully| +76842|1662|26663|1|38|59419.08|0.05|0.08|A|F|1993-02-24|1993-04-08|1993-03-25|NONE|MAIL|ing packages! slyly iron| +76842|923296|48333|2|20|26385.00|0.10|0.08|A|F|1993-04-26|1993-03-25|1993-05-26|COLLECT COD|SHIP|into beans. quickly regular theodolit| +76842|834352|9385|3|6|7717.86|0.05|0.06|R|F|1993-02-11|1993-04-17|1993-03-04|COLLECT COD|TRUCK|uctions. slyly busy foxes was along the bli| +76842|937583|12620|4|37|59959.98|0.03|0.03|A|F|1993-02-15|1993-03-12|1993-02-24|COLLECT COD|REG AIR|accounts cajole furiously. caref| +76843|39872|14873|1|24|43484.88|0.03|0.04|N|O|1996-01-10|1996-01-07|1996-01-31|COLLECT COD|SHIP|ternes should thrash blithely. silently | +76843|122350|22351|2|30|41170.50|0.01|0.03|N|O|1995-12-11|1995-11-25|1995-12-24|TAKE BACK RETURN|SHIP|after the ironic deposits.| +76844|35402|47903|1|18|24073.20|0.07|0.01|R|F|1992-10-09|1992-10-25|1992-10-14|TAKE BACK RETURN|REG AIR|efully final packages! even| +76844|987671|37672|2|39|68586.57|0.01|0.02|R|F|1992-10-23|1992-11-20|1992-11-01|NONE|FOB|s. ironic pinto beans haggle car| +76845|498998|24017|1|35|69893.95|0.10|0.00|R|F|1993-01-24|1993-01-11|1993-02-21|TAKE BACK RETURN|SHIP|bold foxes. furiously final | +76845|648250|10763|2|46|55118.12|0.00|0.06|R|F|1993-01-09|1992-12-13|1993-01-29|COLLECT COD|SHIP|nd the stealthily even requests. express pa| +76845|137264|24771|3|10|13012.60|0.08|0.04|R|F|1993-02-08|1993-01-16|1993-02-19|DELIVER IN PERSON|TRUCK|gular pinto| +76845|986842|36843|4|38|73294.40|0.09|0.05|A|F|1993-02-07|1992-12-31|1993-02-23|DELIVER IN PERSON|AIR|ithely. blithely regular ac| +76845|847968|35517|5|35|67057.20|0.10|0.03|R|F|1993-02-02|1992-12-06|1993-02-07|COLLECT COD|MAIL|the quickly regular| +76845|785254|47770|6|18|24105.96|0.06|0.03|R|F|1993-01-22|1992-12-14|1993-01-30|NONE|RAIL|efully regular excuses sha| +76846|461801|24311|1|22|38781.16|0.01|0.05|N|O|1998-11-17|1998-10-15|1998-12-13|COLLECT COD|TRUCK|ending excuses cajole fluffily pa| +76847|279755|4766|1|36|62450.64|0.03|0.04|N|O|1998-03-11|1998-03-18|1998-03-23|COLLECT COD|SHIP|ole special, bold dependencies. furio| +76872|73569|11073|1|8|12340.48|0.10|0.08|R|F|1993-12-02|1994-01-19|1993-12-13|COLLECT COD|AIR|furiously above the closely ir| +76872|465587|40606|2|47|72970.32|0.06|0.06|R|F|1993-12-06|1994-02-05|1993-12-22|TAKE BACK RETURN|RAIL|r the closely final acc| +76872|109136|9137|3|20|22902.60|0.10|0.02|A|F|1993-12-28|1994-01-04|1993-12-31|TAKE BACK RETURN|AIR| deposits boost blith| +76872|243898|43899|4|21|38679.48|0.03|0.08|R|F|1994-01-28|1994-02-15|1994-02-08|TAKE BACK RETURN|AIR|arefully bold ideas. final dolphins believ| +76872|182107|19617|5|34|40429.40|0.08|0.04|R|F|1994-03-16|1994-01-21|1994-03-27|COLLECT COD|TRUCK|asymptotes subl| +76873|709500|9501|1|48|72454.56|0.00|0.06|N|O|1997-07-25|1997-05-13|1997-08-01|COLLECT COD|AIR|ggedly even deposits.| +76873|560830|23342|2|34|64287.54|0.01|0.04|N|O|1997-07-06|1997-07-02|1997-07-13|DELIVER IN PERSON|AIR|its. ironically si| +76874|381988|31989|1|1|2069.97|0.02|0.04|N|O|1997-12-28|1998-01-16|1998-01-27|NONE|MAIL|al accounts. fluffi| +76874|71946|9450|2|36|69045.84|0.00|0.05|N|O|1997-12-26|1997-12-02|1998-01-16|COLLECT COD|TRUCK|ng, special deposits. fina| +76874|186667|36668|3|31|54363.46|0.02|0.00|N|O|1998-02-07|1997-12-26|1998-03-05|TAKE BACK RETURN|FOB|ests. blithely unusual din| +76874|307034|44553|4|47|48927.94|0.02|0.05|N|O|1997-12-19|1997-11-29|1998-01-06|COLLECT COD|AIR|ns haggle. express asymptotes are| +76875|249899|24908|1|15|27733.20|0.04|0.01|N|O|1996-07-17|1996-09-06|1996-08-01|COLLECT COD|FOB|furiously. blithe, final r| +76875|41060|3561|2|42|42044.52|0.01|0.04|N|O|1996-06-27|1996-08-26|1996-07-04|TAKE BACK RETURN|AIR|kages sleep caref| +76876|490499|3009|1|30|44684.10|0.06|0.03|N|O|1998-05-13|1998-03-01|1998-05-17|DELIVER IN PERSON|AIR|pinto beans sleep carefully: | +76877|446305|21322|1|16|20020.48|0.04|0.00|R|F|1995-01-04|1994-11-19|1995-02-03|NONE|RAIL|accounts along the bold braids are blithel| +76877|41122|16123|2|11|11694.32|0.06|0.04|A|F|1994-12-06|1994-11-12|1994-12-26|TAKE BACK RETURN|TRUCK|alms according t| +76877|137309|49812|3|32|43081.60|0.06|0.06|A|F|1994-10-10|1994-11-23|1994-11-08|DELIVER IN PERSON|MAIL| blithely across the eve| +76877|751729|1730|4|10|17806.90|0.08|0.02|R|F|1994-09-11|1994-10-26|1994-09-26|TAKE BACK RETURN|SHIP|ic platelets-- furiou| +76877|299079|49080|5|37|39888.22|0.00|0.03|A|F|1994-11-13|1994-10-20|1994-11-29|COLLECT COD|TRUCK|ts shall are slyly about the carefully | +76877|604603|4604|6|13|19598.41|0.00|0.06|A|F|1994-12-22|1994-11-22|1994-12-25|TAKE BACK RETURN|MAIL|ithely bold excuse| +76878|869447|6999|1|35|49574.00|0.07|0.03|R|F|1992-08-05|1992-08-19|1992-08-29|COLLECT COD|MAIL|r requests n| +76878|792541|17572|2|41|66973.91|0.08|0.07|R|F|1992-09-24|1992-07-25|1992-10-17|TAKE BACK RETURN|AIR|ckages. slyly expr| +76878|224440|36945|3|19|25924.17|0.07|0.07|R|F|1992-08-26|1992-09-01|1992-08-29|TAKE BACK RETURN|FOB|nal foxes caj| +76878|160930|10931|4|8|15927.44|0.10|0.00|A|F|1992-08-18|1992-08-21|1992-08-20|TAKE BACK RETURN|RAIL|ding to the daring pinto beans. r| +76878|747831|35374|5|1|1878.80|0.04|0.03|A|F|1992-09-12|1992-09-05|1992-10-10|NONE|TRUCK|se blithely | +76878|794645|19676|6|11|19135.71|0.03|0.08|R|F|1992-06-29|1992-08-19|1992-07-14|DELIVER IN PERSON|SHIP|ously. blith| +76878|595341|45342|7|41|58889.12|0.06|0.07|R|F|1992-06-28|1992-08-02|1992-07-24|DELIVER IN PERSON|SHIP|sleep furiou| +76879|880630|30631|1|25|40264.75|0.04|0.08|N|O|1998-10-10|1998-08-28|1998-11-06|TAKE BACK RETURN|RAIL|ly regular packages slee| +76879|732436|44951|2|20|29368.00|0.06|0.08|N|O|1998-08-10|1998-09-02|1998-09-07|TAKE BACK RETURN|RAIL|counts wake| +76904|51949|39453|1|40|76037.60|0.10|0.01|R|F|1995-01-04|1994-12-19|1995-01-13|TAKE BACK RETURN|RAIL|sly final asymptotes. carefully re| +76904|91144|3646|2|14|15891.96|0.03|0.01|R|F|1994-11-10|1994-12-18|1994-11-13|NONE|SHIP|es integrate| +76904|848392|10909|3|30|40210.50|0.09|0.06|R|F|1994-10-05|1994-12-11|1994-10-18|NONE|MAIL|ymptotes ar| +76905|512791|322|1|8|14430.16|0.05|0.02|N|O|1996-01-05|1996-01-02|1996-01-25|COLLECT COD|SHIP|thely regular| +76905|473533|23534|2|38|57247.38|0.01|0.03|N|O|1996-01-16|1996-02-29|1996-01-18|NONE|REG AIR|ke fluffily| +76906|437965|25490|1|26|49476.44|0.06|0.06|N|O|1995-09-25|1995-09-21|1995-10-04|COLLECT COD|MAIL|e carefully final theodolites. slyly e| +76907|528866|3887|1|41|77688.44|0.06|0.08|N|O|1995-07-03|1995-06-26|1995-07-04|TAKE BACK RETURN|AIR| across the | +76908|414768|39785|1|11|18510.14|0.10|0.03|R|F|1994-03-22|1994-05-04|1994-03-28|NONE|MAIL|ely silent depos| +76908|3825|16326|2|24|41491.68|0.03|0.07|A|F|1994-06-04|1994-05-03|1994-06-15|TAKE BACK RETURN|MAIL|atterns eat blithely around the care| +76908|285007|47513|3|30|29759.70|0.09|0.02|A|F|1994-05-04|1994-04-13|1994-05-28|COLLECT COD|FOB|cial deposits acc| +76908|106492|6493|4|50|74924.50|0.08|0.01|R|F|1994-05-16|1994-04-16|1994-06-08|TAKE BACK RETURN|REG AIR|idle instructions cajole ironic i| +76909|641622|16647|1|5|7817.95|0.10|0.08|N|O|1998-10-29|1998-10-09|1998-11-17|NONE|REG AIR|ins wake blithely along the final pa| +76909|726080|38595|2|11|12166.55|0.05|0.08|N|O|1998-11-06|1998-10-06|1998-11-07|COLLECT COD|SHIP|blithely regula| +76909|219020|19021|3|7|6573.07|0.08|0.05|N|O|1998-09-26|1998-09-23|1998-10-08|TAKE BACK RETURN|MAIL|riously regular deposi| +76910|425468|12993|1|50|69672.00|0.04|0.04|A|F|1993-04-20|1993-05-28|1993-04-24|COLLECT COD|SHIP|posits are theodolites. pending| +76910|824090|11639|2|44|44618.20|0.08|0.04|R|F|1993-05-22|1993-06-15|1993-05-31|NONE|FOB|ilent instru| +76910|470631|8159|3|28|44845.08|0.00|0.07|A|F|1993-05-30|1993-05-02|1993-06-29|DELIVER IN PERSON|SHIP| carefully regul| +76910|888336|38337|4|31|41052.99|0.01|0.07|R|F|1993-05-25|1993-04-29|1993-06-19|TAKE BACK RETURN|FOB|wake. ironic packages cajole. ironic deposi| +76910|254723|17229|5|19|31876.49|0.04|0.00|R|F|1993-05-24|1993-06-13|1993-06-22|DELIVER IN PERSON|RAIL|gular accounts according to the carefully | +76910|124022|49027|6|48|50208.96|0.04|0.00|R|F|1993-06-22|1993-04-28|1993-07-12|NONE|TRUCK|l, bold packages are| +76910|430320|5337|7|19|23755.70|0.10|0.06|A|F|1993-05-13|1993-06-12|1993-06-04|COLLECT COD|SHIP|ng deposits? care| +76911|387912|420|1|46|91995.40|0.01|0.03|A|F|1994-09-18|1994-11-04|1994-09-19|TAKE BACK RETURN|REG AIR|ptotes. carefully ironic foxes| +76911|628114|28115|2|13|13547.04|0.10|0.04|R|F|1994-10-30|1994-10-25|1994-10-31|DELIVER IN PERSON|RAIL|nts wake across the carefully final r| +76911|695286|45287|3|9|11531.25|0.05|0.04|R|F|1994-12-22|1994-10-13|1995-01-07|NONE|MAIL| eat furiously along the | +76911|657786|45326|4|29|50568.75|0.09|0.04|A|F|1994-10-01|1994-11-02|1994-10-09|NONE|RAIL|ments; ironic, r| +76911|393609|6117|5|4|6810.36|0.02|0.03|A|F|1994-12-02|1994-10-03|1994-12-26|NONE|AIR|osits are slyly regular Tiresia| +76911|375782|25783|6|3|5573.31|0.08|0.00|A|F|1994-10-17|1994-10-21|1994-11-12|DELIVER IN PERSON|TRUCK| pinto beans. express dependenci| +76911|759287|46833|7|25|33656.25|0.07|0.08|R|F|1994-12-08|1994-10-11|1994-12-28|COLLECT COD|SHIP| furious platelets. pending th| +76936|324229|11748|1|1|1253.21|0.07|0.00|N|O|1998-02-15|1998-01-28|1998-03-09|COLLECT COD|FOB|oys thrash fluffily ab| +76936|310508|48027|2|49|74406.01|0.09|0.07|N|O|1998-02-11|1998-02-09|1998-02-26|TAKE BACK RETURN|RAIL|! carefully fina| +76936|701239|13754|3|39|48367.80|0.02|0.04|N|O|1997-12-14|1998-02-18|1997-12-17|NONE|MAIL|usly regular waters are blit| +76936|722518|47547|4|36|55457.28|0.09|0.08|N|O|1997-12-01|1998-02-14|1997-12-05|TAKE BACK RETURN|SHIP| cajole sometimes among the requests.| +76936|359239|9240|5|14|18175.08|0.08|0.07|N|O|1998-03-21|1998-02-22|1998-03-31|NONE|TRUCK|ully special theodolites are among the | +76936|715975|28490|6|34|67691.96|0.06|0.02|N|O|1998-01-21|1998-02-08|1998-02-04|DELIVER IN PERSON|RAIL|y regular, ironic deposits? blithely unus| +76936|382206|19728|7|34|43798.46|0.09|0.02|N|O|1997-12-20|1998-02-24|1998-01-10|COLLECT COD|MAIL|slyly pending requests. ironic packag| +76937|721679|21680|1|29|49318.56|0.07|0.03|A|F|1993-07-02|1993-07-01|1993-07-12|DELIVER IN PERSON|FOB| regular foxes wo| +76937|255714|18220|2|44|73466.80|0.09|0.07|R|F|1993-06-27|1993-06-30|1993-07-06|COLLECT COD|AIR|al dependencie| +76937|781776|31777|3|47|87313.78|0.01|0.00|R|F|1993-06-14|1993-05-30|1993-07-13|TAKE BACK RETURN|AIR|nal accounts. fluffily express acco| +76938|455395|17905|1|30|40511.10|0.05|0.06|A|F|1992-04-12|1992-04-13|1992-04-27|TAKE BACK RETURN|TRUCK|g dolphins affix | +76938|813384|13385|2|28|36325.52|0.02|0.08|A|F|1992-05-21|1992-03-23|1992-06-14|NONE|TRUCK|ggle. quietly bold foxes wake. re| +76938|543271|5782|3|34|44684.50|0.04|0.06|A|F|1992-05-11|1992-03-29|1992-05-31|COLLECT COD|AIR|ly along the final, final f| +76938|739619|14648|4|7|11610.06|0.03|0.04|R|F|1992-06-04|1992-04-23|1992-06-07|DELIVER IN PERSON|REG AIR|o beans nag slyly until the final, express| +76938|769650|7196|5|1|1719.62|0.03|0.02|R|F|1992-04-02|1992-04-19|1992-04-21|TAKE BACK RETURN|REG AIR|ins nag carefully. ironic, even asy| +76938|501267|26288|6|45|57070.80|0.08|0.03|A|F|1992-04-09|1992-04-08|1992-04-26|DELIVER IN PERSON|MAIL|s. quickly even platelets detect| +76939|998699|36257|1|8|14381.20|0.00|0.04|N|O|1996-05-18|1996-04-27|1996-05-20|NONE|AIR|ing dugouts| +76939|123295|23296|2|43|56686.47|0.10|0.03|N|O|1996-05-05|1996-06-10|1996-06-02|NONE|REG AIR|even grouches. slyly bold ideas i| +76939|208467|45980|3|47|64646.15|0.02|0.02|N|O|1996-05-18|1996-05-01|1996-06-13|NONE|AIR|ajole carefully slyly silent excuses.| +76939|689503|2017|4|5|7462.35|0.10|0.06|N|O|1996-04-21|1996-05-31|1996-04-29|TAKE BACK RETURN|FOB|t finally fi| +76939|466841|4369|5|37|66889.34|0.00|0.03|N|O|1996-06-23|1996-06-12|1996-07-09|TAKE BACK RETURN|RAIL|special excuses solve| +76939|183021|45525|6|48|52992.96|0.04|0.04|N|O|1996-04-17|1996-06-20|1996-05-13|COLLECT COD|MAIL|ets above the theodolites dou| +76939|20662|20663|7|23|36401.18|0.00|0.02|N|O|1996-07-14|1996-06-14|1996-07-15|DELIVER IN PERSON|TRUCK|ly final d| +76940|254259|16765|1|6|7279.44|0.08|0.04|N|O|1997-08-03|1997-07-28|1997-08-05|NONE|FOB|ckages? bli| +76940|326986|39493|2|40|80518.80|0.04|0.02|N|O|1997-06-27|1997-07-08|1997-07-14|DELIVER IN PERSON|MAIL| the ideas. quickly final packages ac| +76940|645807|8320|3|13|22786.01|0.05|0.04|N|O|1997-10-05|1997-08-02|1997-10-28|COLLECT COD|REG AIR|accounts boost alongside of the enticing| +76940|74465|36967|4|16|23031.36|0.07|0.07|N|O|1997-06-19|1997-08-23|1997-07-06|TAKE BACK RETURN|TRUCK|ly ironic a| +76941|100616|38123|1|13|21015.93|0.08|0.05|A|F|1993-10-08|1993-10-29|1993-10-12|DELIVER IN PERSON|FOB|ounts. final accoun| +76941|43872|43873|2|34|61739.58|0.07|0.03|R|F|1993-10-29|1993-10-14|1993-11-14|DELIVER IN PERSON|MAIL|the accounts. blit| +76941|356379|18887|3|21|30142.56|0.06|0.01|R|F|1993-08-09|1993-10-17|1993-09-05|COLLECT COD|TRUCK|al pinto beans doze blithely according | +76942|824981|37498|1|13|24777.22|0.00|0.06|N|O|1998-04-28|1998-06-15|1998-05-26|COLLECT COD|SHIP|regular, ironic packages hagg| +76942|455139|42667|2|28|30635.08|0.04|0.01|N|O|1998-05-21|1998-05-29|1998-06-18|NONE|SHIP|l asymptotes serve slyly.| +76942|505195|30216|3|46|55207.82|0.03|0.02|N|O|1998-06-30|1998-05-19|1998-07-17|NONE|RAIL| carefully r| +76943|97121|22124|1|38|42488.56|0.05|0.00|N|O|1996-08-19|1996-07-25|1996-08-29|COLLECT COD|AIR|uriously even theo| +76943|301767|1768|2|3|5306.25|0.09|0.06|N|O|1996-06-07|1996-06-06|1996-07-05|TAKE BACK RETURN|SHIP|usly after the carefully e| +76943|783736|8767|3|30|54591.00|0.09|0.03|N|O|1996-07-27|1996-07-14|1996-08-18|COLLECT COD|REG AIR| unwind ironically after t| +76968|695622|20649|1|5|8087.95|0.08|0.00|R|F|1993-07-07|1993-07-23|1993-08-01|NONE|TRUCK|ts are blithely. slyly b| +76968|310005|22512|2|19|19284.81|0.08|0.08|A|F|1993-05-24|1993-08-04|1993-05-29|COLLECT COD|FOB|bold attainments. notornis dete| +76968|247281|47282|3|12|14739.24|0.08|0.04|A|F|1993-05-17|1993-06-10|1993-06-01|TAKE BACK RETURN|FOB|uests about the blithely fina| +76968|50682|25685|4|41|66939.88|0.02|0.01|R|F|1993-07-16|1993-06-20|1993-08-14|COLLECT COD|MAIL|pendencies are. blithely| +76968|801862|1863|5|3|5291.46|0.01|0.00|A|F|1993-09-01|1993-06-28|1993-09-04|COLLECT COD|MAIL| bold theodoli| +76968|888623|1141|6|6|9669.48|0.10|0.02|A|F|1993-06-22|1993-07-18|1993-07-18|COLLECT COD|AIR|. slyly quick in| +76968|72793|35295|7|26|45910.54|0.03|0.08|A|F|1993-09-04|1993-07-28|1993-09-15|COLLECT COD|FOB|ckages. regular, pending accounts boost d| +76969|417159|42176|1|17|18294.21|0.09|0.08|A|F|1993-03-27|1993-02-08|1993-04-20|NONE|MAIL|ous excuses nag foxes. blithely silent p| +76969|178770|41274|2|49|90589.73|0.07|0.03|R|F|1993-04-01|1993-02-21|1993-04-11|TAKE BACK RETURN|REG AIR|ckly special frays.| +76969|582127|44639|3|11|13300.10|0.03|0.02|R|F|1993-04-02|1993-02-28|1993-04-16|NONE|SHIP|eodolites cajole blithely beside the qui| +76970|829143|29144|1|9|9648.90|0.03|0.07|A|F|1995-01-22|1994-11-17|1995-01-28|COLLECT COD|AIR|furiously pending foxe| +76970|399886|24901|2|41|81420.67|0.00|0.06|A|F|1995-01-15|1994-11-26|1995-01-19|COLLECT COD|SHIP|efully according to the slyly regular instr| +76970|873173|48208|3|6|6876.78|0.04|0.06|R|F|1994-10-23|1995-01-11|1994-10-24|DELIVER IN PERSON|REG AIR|e ironic deposits boost furiously flu| +76970|417481|17482|4|3|4195.38|0.01|0.05|R|F|1994-10-16|1994-11-15|1994-10-31|COLLECT COD|RAIL|ly dogged packa| +76970|587613|37614|5|17|28910.03|0.09|0.01|A|F|1995-02-10|1994-12-17|1995-02-17|TAKE BACK RETURN|REG AIR|nt dependencies. requests behin| +76971|748996|11511|1|18|36809.28|0.03|0.02|N|F|1995-06-13|1995-07-22|1995-06-30|COLLECT COD|TRUCK|sly across the furiousl| +76971|366031|3553|2|50|54851.00|0.00|0.03|N|O|1995-07-06|1995-07-16|1995-07-19|DELIVER IN PERSON|MAIL|ular foxes cajole spec| +76971|879075|16627|3|21|22134.63|0.03|0.01|N|O|1995-06-20|1995-07-13|1995-06-29|TAKE BACK RETURN|TRUCK|nments nag after the ironic multipli| +76971|598632|11144|4|14|24228.54|0.03|0.05|N|O|1995-09-07|1995-06-21|1995-09-11|DELIVER IN PERSON|SHIP|furiously final| +76971|200037|12542|5|38|35606.76|0.03|0.07|N|O|1995-07-31|1995-07-27|1995-08-20|DELIVER IN PERSON|MAIL|he fluffily furiou| +76971|15729|15730|6|35|57565.20|0.04|0.08|N|O|1995-08-06|1995-07-24|1995-08-31|NONE|TRUCK|sly ironic excuses. accounts affix slyl| +76972|790877|40878|1|46|90520.64|0.03|0.04|A|F|1994-06-01|1994-06-01|1994-06-16|COLLECT COD|FOB|otes cajole never | +76972|257019|7020|2|32|31232.00|0.10|0.05|A|F|1994-05-30|1994-05-24|1994-06-10|COLLECT COD|FOB| express platelets engage bold, da| +76973|455019|42547|1|46|44803.54|0.06|0.08|N|O|1997-11-26|1998-01-25|1997-12-17|TAKE BACK RETURN|TRUCK|er the blithely bold instruc| +76973|489044|14063|2|6|6198.12|0.03|0.03|N|O|1998-03-07|1998-01-22|1998-03-28|TAKE BACK RETURN|MAIL| fluffily unusual requests| +76973|355890|18398|3|15|29188.20|0.08|0.07|N|O|1998-03-03|1998-01-23|1998-03-18|DELIVER IN PERSON|RAIL| unusual, silent requests about the s| +76974|138184|687|1|43|52553.74|0.00|0.02|R|F|1994-05-30|1994-06-14|1994-06-20|DELIVER IN PERSON|SHIP|xes cajole slyly. ironic, regular f| +76974|444023|6532|2|47|45449.00|0.00|0.05|A|F|1994-06-26|1994-06-10|1994-07-01|COLLECT COD|MAIL|about the sly, special accounts cajole | +76975|188612|13619|1|26|44215.86|0.08|0.04|N|O|1998-03-24|1998-05-17|1998-04-14|NONE|REG AIR|ecial courts cajole permanently slyly | +76975|995478|20517|2|10|15734.30|0.09|0.02|N|O|1998-05-26|1998-04-01|1998-06-15|NONE|FOB|ickly quick requests sleep even | +76975|983877|21435|3|25|49020.75|0.01|0.02|N|O|1998-05-17|1998-05-04|1998-06-15|NONE|REG AIR|he packages cajole carefully blithely | +76975|9030|46531|4|5|4695.15|0.10|0.03|N|O|1998-03-03|1998-04-01|1998-03-13|TAKE BACK RETURN|FOB|ding deposits are across the unusu| +76975|758873|8874|5|9|17386.56|0.02|0.00|N|O|1998-04-20|1998-04-11|1998-04-21|TAKE BACK RETURN|AIR|. stealthy ideas sleep acr| +76975|367002|42017|6|13|13896.87|0.06|0.00|N|O|1998-03-03|1998-04-09|1998-04-01|TAKE BACK RETURN|TRUCK|e furiously even dugouts. courts above the| +77000|616890|41915|1|1|1806.86|0.04|0.04|N|O|1995-10-25|1995-11-03|1995-10-27|NONE|SHIP|ly final foxes. caref| +77000|63695|38698|2|19|31515.11|0.07|0.00|N|O|1995-09-16|1995-10-07|1995-09-29|COLLECT COD|TRUCK|he even sentiments. furiously ironic pack| +77000|521843|46864|3|46|85781.72|0.07|0.02|N|O|1995-12-24|1995-10-07|1996-01-17|TAKE BACK RETURN|REG AIR|ar pinto beans after | +77000|604166|41703|4|24|25683.12|0.04|0.07|N|O|1995-09-23|1995-11-13|1995-09-26|TAKE BACK RETURN|RAIL|ourts; slyly fi| +77000|211756|36765|5|39|65041.86|0.00|0.01|N|O|1995-12-14|1995-10-30|1995-12-20|TAKE BACK RETURN|AIR|pecial orbits haggle slyly. slyly even i| +77000|968213|43252|6|2|2562.34|0.03|0.07|N|O|1995-09-06|1995-11-10|1995-10-05|DELIVER IN PERSON|TRUCK|blithely pending | +77001|336008|11021|1|19|19835.81|0.08|0.08|N|O|1997-03-03|1997-03-27|1997-03-19|DELIVER IN PERSON|MAIL| quickly regular hockey players are slyl| +77001|278855|28856|2|40|73353.60|0.03|0.01|N|O|1997-04-14|1997-02-24|1997-04-27|DELIVER IN PERSON|SHIP|ts. regular instructions unwi| +77001|708446|45989|3|28|40723.48|0.10|0.05|N|O|1997-03-20|1997-03-23|1997-04-03|COLLECT COD|REG AIR|regular foxes. b| +77001|838471|13504|4|44|62014.92|0.01|0.07|N|O|1997-04-08|1997-03-24|1997-04-28|DELIVER IN PERSON|AIR|s affix blithely. carefully pen| +77001|168198|43205|5|7|8863.33|0.06|0.02|N|O|1997-02-23|1997-03-08|1997-03-14|TAKE BACK RETURN|FOB|warthogs above the furiously even theodolit| +77001|895307|45308|6|3|3906.78|0.10|0.00|N|O|1997-03-08|1997-03-09|1997-04-07|DELIVER IN PERSON|SHIP|ns. quickly ironic foxes sublate | +77001|415620|3145|7|8|12284.80|0.01|0.08|N|O|1997-03-24|1997-02-26|1997-04-20|TAKE BACK RETURN|TRUCK| unusual deposits haggle. slyly e| +77002|311743|11744|1|1|1754.73|0.07|0.00|R|F|1993-07-24|1993-08-02|1993-07-31|DELIVER IN PERSON|AIR|eodolites use. furiously regular pint| +77002|460081|47609|2|36|37478.16|0.08|0.02|A|F|1993-06-23|1993-08-26|1993-06-29|TAKE BACK RETURN|SHIP|counts. bold ideas sublate eve| +77002|577159|2182|3|37|45736.81|0.05|0.05|R|F|1993-09-23|1993-09-13|1993-10-07|DELIVER IN PERSON|MAIL|y special requests. fluffily express requ| +77002|294751|44752|4|50|87287.00|0.01|0.07|R|F|1993-09-03|1993-07-20|1993-09-13|COLLECT COD|SHIP|ckages cajole blithely a| +77003|477788|40298|1|8|14126.08|0.03|0.04|N|O|1997-03-25|1997-05-12|1997-04-18|COLLECT COD|SHIP|ronic warthogs do haggle. even reques| +77003|170686|8196|2|18|31620.24|0.05|0.01|N|O|1997-04-19|1997-05-25|1997-05-17|DELIVER IN PERSON|FOB|alongside of the furiously ironic instructi| +77003|710792|23307|3|28|50477.28|0.01|0.08|N|O|1997-06-16|1997-05-26|1997-07-06|NONE|TRUCK|boost furiously ironic asymptot| +77003|269276|6792|4|36|44829.36|0.05|0.07|N|O|1997-06-21|1997-04-19|1997-07-18|TAKE BACK RETURN|SHIP|fully atop the express packages. quick| +77003|720883|45912|5|14|26653.90|0.01|0.05|N|O|1997-06-25|1997-04-26|1997-07-11|TAKE BACK RETURN|REG AIR|ep: slyly ironic deposits must boost| +77003|873985|36503|6|49|95988.06|0.01|0.01|N|O|1997-05-01|1997-05-15|1997-05-25|COLLECT COD|SHIP| the even pinto beans. e| +77004|674506|37020|1|46|68101.62|0.03|0.02|R|F|1994-01-13|1993-10-21|1994-01-16|NONE|AIR|s. final dolphins cajole. special, f| +77004|413680|26189|2|16|25498.56|0.05|0.01|R|F|1993-11-24|1993-10-23|1993-12-20|NONE|TRUCK|uses cajole along t| +77004|715526|28041|3|37|57035.13|0.08|0.02|A|F|1993-10-29|1993-11-11|1993-11-15|COLLECT COD|AIR|ly even requests about the ironic, fi| +77004|832412|32413|4|47|63185.39|0.05|0.08|A|F|1993-12-23|1993-11-14|1993-12-30|COLLECT COD|SHIP| boost slyly regular requests. accounts nag| +77004|347431|9938|5|34|50266.28|0.05|0.07|A|F|1993-11-09|1993-10-16|1993-11-20|TAKE BACK RETURN|RAIL|sits about | +77004|270000|45011|6|30|29099.70|0.01|0.02|A|F|1993-10-24|1993-10-30|1993-11-14|COLLECT COD|SHIP|special accounts. quietly sile| +77005|524124|36635|1|45|51664.50|0.06|0.05|R|F|1994-10-01|1994-09-05|1994-10-14|COLLECT COD|FOB|tes. furiously even requests use car| +77006|22724|35225|1|14|23054.08|0.06|0.04|N|O|1997-08-29|1997-08-03|1997-09-06|COLLECT COD|FOB|nt after the quickly| +77006|907904|7905|2|13|24854.18|0.07|0.00|N|O|1997-06-20|1997-07-28|1997-07-10|DELIVER IN PERSON|AIR| blithely final requests boost abo| +77007|564430|14431|1|33|49315.53|0.02|0.00|N|O|1996-01-12|1995-12-04|1996-01-13|DELIVER IN PERSON|SHIP|ts according to the furiously | +77007|367154|42169|2|11|13432.54|0.02|0.01|N|O|1995-12-08|1995-12-27|1995-12-12|TAKE BACK RETURN|MAIL|oost carefully even deposits. ironic pi| +77007|745414|7929|3|5|7296.90|0.09|0.08|N|O|1995-11-21|1995-12-27|1995-12-17|TAKE BACK RETURN|FOB|as integrate permanently acro| +77007|169183|6693|4|35|43826.30|0.07|0.01|N|O|1995-11-14|1996-01-09|1995-11-28|DELIVER IN PERSON|AIR|ncies sleep according to the quic| +77007|456984|44512|5|41|79579.36|0.07|0.08|N|O|1995-11-15|1995-12-23|1995-12-08|DELIVER IN PERSON|MAIL|quickly dogged packages wake| +77007|527545|27546|6|23|36167.96|0.10|0.07|N|O|1996-02-01|1996-01-12|1996-02-15|TAKE BACK RETURN|AIR| final requests cajole. fluffil| +77007|447042|22059|7|47|46483.94|0.08|0.03|N|O|1996-02-04|1996-01-22|1996-02-17|NONE|AIR|deas sleep silently. specia| +77032|432949|20474|1|39|73394.88|0.01|0.04|N|O|1996-05-11|1996-06-23|1996-06-04|DELIVER IN PERSON|MAIL|leep slyly| +77032|573401|10935|2|46|67821.48|0.00|0.07|N|O|1996-05-08|1996-06-13|1996-05-18|TAKE BACK RETURN|MAIL|inal instructions. carefully ironic tithes| +77032|149389|49390|3|41|58973.58|0.08|0.02|N|O|1996-06-06|1996-06-17|1996-06-10|COLLECT COD|RAIL|ckages unwind. furiously final pinto beans | +77032|774909|37425|4|9|17854.83|0.09|0.00|N|O|1996-05-24|1996-05-05|1996-06-22|DELIVER IN PERSON|AIR|slyly thin account| +77032|880588|30589|5|5|7842.70|0.06|0.03|N|O|1996-06-29|1996-04-30|1996-07-10|NONE|RAIL|t across th| +77032|41211|28712|6|32|36870.72|0.09|0.01|N|O|1996-07-14|1996-05-11|1996-08-06|COLLECT COD|TRUCK|s. blithely fin| +77033|489941|14960|1|22|42480.24|0.01|0.05|N|O|1996-12-31|1997-01-20|1997-01-03|DELIVER IN PERSON|SHIP|to the regular, spe| +77033|433547|21072|2|22|32571.44|0.07|0.04|N|O|1997-03-08|1997-01-12|1997-04-05|NONE|RAIL|cial ideas about the st| +77033|614868|39893|3|47|83793.01|0.09|0.03|N|O|1997-02-07|1997-01-14|1997-02-11|COLLECT COD|REG AIR|mold along the regular accounts. even requ| +77033|77710|40212|4|21|35441.91|0.05|0.02|N|O|1997-03-08|1997-01-24|1997-04-04|COLLECT COD|TRUCK|nic frays wake express requests. bold | +77033|71445|46448|5|26|36827.44|0.03|0.08|N|O|1996-12-26|1997-02-18|1997-01-17|COLLECT COD|SHIP|uriously even requests w| +77033|759350|9351|6|41|57782.12|0.01|0.02|N|O|1997-03-27|1997-01-15|1997-04-02|TAKE BACK RETURN|AIR| pending packages sleep blithely about| +77034|838053|13086|1|16|15856.16|0.04|0.08|R|F|1994-02-14|1994-02-01|1994-03-02|DELIVER IN PERSON|MAIL| sleep carefully regular accou| +77034|143883|31390|2|13|25049.44|0.09|0.07|A|F|1994-02-23|1994-02-05|1994-03-03|DELIVER IN PERSON|TRUCK|st across | +77034|231230|31231|3|33|38320.26|0.02|0.06|R|F|1994-04-13|1994-02-18|1994-05-13|NONE|REG AIR|lar forges serve blithely across the cour| +77034|282449|7460|4|13|18608.59|0.00|0.03|A|F|1994-02-02|1994-01-29|1994-02-13|DELIVER IN PERSON|FOB|ross the fluffily even ideas: slyly bold d| +77034|103989|28994|5|17|33880.66|0.04|0.01|A|F|1994-03-28|1994-02-28|1994-04-21|DELIVER IN PERSON|REG AIR|oxes at the furiously ironic packa| +77035|857851|7852|1|31|56073.11|0.02|0.02|A|F|1992-03-06|1992-04-22|1992-03-16|COLLECT COD|MAIL| above the depo| +77035|893023|43024|2|44|44703.12|0.06|0.00|R|F|1992-04-21|1992-04-24|1992-05-05|DELIVER IN PERSON|FOB|nusual accounts are sl| +77035|25494|495|3|17|24131.33|0.01|0.05|R|F|1992-02-29|1992-03-15|1992-03-09|NONE|TRUCK|press requests. slyly spec| +77035|470285|20286|4|15|18828.90|0.04|0.05|R|F|1992-03-22|1992-03-17|1992-03-24|TAKE BACK RETURN|REG AIR|ut the iron| +77035|76701|39203|5|44|73818.80|0.02|0.08|R|F|1992-03-07|1992-04-09|1992-03-20|TAKE BACK RETURN|AIR|against the slyly even accoun| +77035|107844|45351|6|46|85184.64|0.02|0.00|R|F|1992-05-17|1992-04-01|1992-06-02|NONE|SHIP|pending instructions haggle. blithel| +77036|143208|18213|1|16|20019.20|0.06|0.06|N|O|1997-09-03|1997-09-25|1997-09-17|TAKE BACK RETURN|RAIL|final realms haggle blithely| +77036|887660|178|2|31|51076.22|0.01|0.03|N|O|1997-08-15|1997-09-15|1997-08-20|TAKE BACK RETURN|MAIL|slyly about the blithel| +77036|886163|11198|3|29|33324.48|0.10|0.02|N|O|1997-10-17|1997-09-01|1997-10-24|TAKE BACK RETURN|TRUCK| sauternes int| +77036|727579|2608|4|12|19278.48|0.09|0.07|N|O|1997-09-01|1997-08-14|1997-09-10|COLLECT COD|TRUCK|ly. packages haggle. | +77036|406116|6117|5|36|36795.24|0.02|0.07|N|O|1997-07-21|1997-09-25|1997-08-12|COLLECT COD|AIR|nwind slyly around the ironic accou| +77036|582230|19764|6|39|51176.19|0.02|0.04|N|O|1997-10-29|1997-08-04|1997-11-03|TAKE BACK RETURN|MAIL|ve the blithely special foxes. slyly bol| +77037|238103|608|1|32|33314.88|0.03|0.06|N|O|1996-04-23|1996-02-08|1996-05-05|NONE|RAIL|accounts boost. packages wa| +77037|789406|14437|2|46|68787.02|0.03|0.06|N|O|1996-01-24|1996-02-16|1996-02-17|DELIVER IN PERSON|REG AIR|tes are qui| +77037|542480|4991|3|31|47196.26|0.00|0.01|N|O|1996-03-25|1996-02-17|1996-04-18|DELIVER IN PERSON|SHIP|he even, regular| +77037|454553|17063|4|27|40703.31|0.00|0.02|N|O|1996-01-11|1996-02-03|1996-02-07|COLLECT COD|FOB| foxes sleep quickly after the ironica| +77037|662722|25236|5|31|52225.39|0.02|0.03|N|O|1996-02-28|1996-02-06|1996-03-26|NONE|MAIL|efully final theodolites se| +77038|932373|7410|1|30|42159.90|0.10|0.04|N|O|1997-07-23|1997-08-17|1997-08-19|DELIVER IN PERSON|MAIL|ts. even requests use around the blith| +77039|948083|10602|1|12|13572.48|0.00|0.08|N|O|1996-12-01|1997-02-16|1996-12-23|TAKE BACK RETURN|TRUCK|hes along the slyly regular packag| +77039|426094|1111|2|13|13260.91|0.09|0.00|N|O|1996-11-28|1997-01-04|1996-12-08|DELIVER IN PERSON|FOB|fily pending pearls. final ideas| +77039|352490|2491|3|21|32392.08|0.05|0.07|N|O|1997-02-22|1997-01-03|1997-03-20|COLLECT COD|TRUCK|slyly ironic requests; quickly pending the| +77039|285517|48023|4|24|36060.00|0.06|0.08|N|O|1997-01-06|1997-02-10|1997-02-04|DELIVER IN PERSON|MAIL|ial accounts detect busily regular plat| +77039|681203|43717|5|27|31972.59|0.02|0.04|N|O|1996-12-14|1997-02-11|1997-01-03|DELIVER IN PERSON|SHIP|ing requests| +77039|968743|6301|6|16|28987.20|0.08|0.05|N|O|1997-02-21|1997-01-03|1997-03-14|TAKE BACK RETURN|MAIL|even deposits wake. blithely re| +77039|651849|26876|7|25|45020.25|0.02|0.00|N|O|1996-12-20|1997-02-06|1997-01-10|DELIVER IN PERSON|REG AIR|p carefully against the blithely slow acc| +77064|618851|18852|1|5|8849.10|0.09|0.07|N|O|1995-10-13|1995-09-02|1995-10-25|DELIVER IN PERSON|FOB| quickly regular deposits cajole | +77064|16741|16742|2|34|56363.16|0.02|0.01|N|O|1995-08-21|1995-09-14|1995-08-29|DELIVER IN PERSON|SHIP|ully express warhorses cajole carefu| +77064|351886|26901|3|20|38757.40|0.09|0.07|N|O|1995-08-14|1995-09-15|1995-08-18|COLLECT COD|AIR| blithely across the pinto | +77064|147348|47349|4|14|19534.76|0.10|0.02|N|O|1995-08-17|1995-08-13|1995-08-24|DELIVER IN PERSON|SHIP| among the furiously regular ideas.| +77064|471971|9499|5|12|23315.40|0.05|0.03|N|O|1995-08-29|1995-08-01|1995-09-18|NONE|RAIL|ular packages affix slyly. final idea| +77065|398248|48249|1|28|37694.44|0.09|0.03|N|O|1998-04-28|1998-02-19|1998-05-02|NONE|FOB|y. blithely ironic deposits| +77065|352200|27215|2|33|41322.27|0.00|0.03|N|O|1998-03-19|1998-03-17|1998-04-11|COLLECT COD|TRUCK| unusual requests unwind daringly sly| +77065|414667|27176|3|39|61683.96|0.05|0.06|N|O|1998-05-15|1998-03-26|1998-05-28|NONE|TRUCK|lly bold foxes was | +77065|297223|22234|4|22|26844.62|0.00|0.07|N|O|1998-02-27|1998-03-27|1998-03-19|DELIVER IN PERSON|FOB|ng ideas cajole blithely ironic dependenc| +77065|418000|43017|5|17|15605.66|0.07|0.04|N|O|1998-05-15|1998-03-01|1998-06-01|TAKE BACK RETURN|REG AIR|ular accounts sleep finally. furiously expr| +77066|701701|1702|1|19|32350.73|0.04|0.02|N|O|1997-04-14|1997-06-01|1997-05-14|COLLECT COD|TRUCK|structions. deposits across| +77066|476361|38871|2|4|5349.36|0.06|0.02|N|O|1997-03-10|1997-05-08|1997-03-19|COLLECT COD|TRUCK|y. silent pac| +77066|186699|49203|3|44|78570.36|0.08|0.02|N|O|1997-03-09|1997-06-03|1997-04-02|TAKE BACK RETURN|TRUCK|egular sentiments sleep blithely according | +77066|843649|31198|4|35|55741.00|0.02|0.07|N|O|1997-05-27|1997-04-16|1997-06-10|NONE|AIR| carefully pen| +77066|203357|3358|5|41|51673.94|0.03|0.00|N|O|1997-05-15|1997-04-12|1997-05-26|NONE|AIR|he unusual p| +77067|435532|35533|1|37|54297.87|0.05|0.03|A|F|1993-07-21|1993-08-31|1993-07-24|DELIVER IN PERSON|SHIP|ven instructi| +77067|977671|2710|2|47|82185.61|0.00|0.03|A|F|1993-10-24|1993-08-08|1993-10-29|COLLECT COD|SHIP|nding plate| +77067|700190|37733|3|32|38085.12|0.01|0.05|A|F|1993-08-19|1993-08-27|1993-09-05|DELIVER IN PERSON|TRUCK|o beans hinder carefully across the careful| +77068|274050|36556|1|7|7168.28|0.04|0.07|R|F|1994-07-01|1994-07-05|1994-07-28|NONE|FOB|unts. furiously ironic packages wake alon| +77068|945692|33247|2|10|17376.50|0.07|0.03|R|F|1994-05-18|1994-08-11|1994-06-02|COLLECT COD|FOB|lly express reque| +77069|340399|15412|1|47|67650.86|0.01|0.05|N|O|1997-01-17|1996-11-29|1997-01-28|TAKE BACK RETURN|MAIL|ily above the carefully fin| +77069|79138|16642|2|24|26811.12|0.07|0.03|N|O|1996-12-08|1996-11-27|1996-12-23|TAKE BACK RETURN|TRUCK|eep blithel| +77069|63148|652|3|11|12222.54|0.01|0.07|N|O|1997-01-09|1997-01-03|1997-01-29|COLLECT COD|RAIL|-ray carefully slyly unusual| +77069|322752|35259|4|7|12423.18|0.06|0.03|N|O|1996-12-23|1996-11-26|1997-01-15|TAKE BACK RETURN|TRUCK|r platelets sleep. bold packages bel| +77070|741083|16112|1|50|56202.50|0.02|0.03|A|F|1993-07-02|1993-05-22|1993-07-19|DELIVER IN PERSON|REG AIR|e even, regular deposits are blit| +77071|970140|32660|1|10|12101.00|0.10|0.02|A|F|1992-11-05|1992-10-15|1992-11-06|TAKE BACK RETURN|RAIL|o beans. carefully p| +77071|136819|11824|2|13|24125.53|0.04|0.04|A|F|1992-11-13|1992-11-16|1992-12-11|DELIVER IN PERSON|FOB|nic dependencies. careful| +77071|505084|17595|3|23|25048.38|0.03|0.08|A|F|1992-09-30|1992-11-16|1992-10-01|DELIVER IN PERSON|AIR| special, regular platelets sleep q| +77071|931712|19267|4|4|6974.68|0.08|0.07|A|F|1992-11-05|1992-12-05|1992-12-02|TAKE BACK RETURN|TRUCK| regular deposits boost a| +77071|276606|39112|5|21|33234.39|0.02|0.08|A|F|1992-09-15|1992-11-26|1992-09-17|DELIVER IN PERSON|SHIP|ly unusual platelets. silent requests| +77071|902245|39800|6|13|16213.60|0.07|0.02|R|F|1992-09-29|1992-11-20|1992-10-17|COLLECT COD|FOB| detect platelets. pending, even ideas| +77096|497907|22926|1|10|19048.80|0.02|0.07|R|F|1995-01-15|1995-01-10|1995-01-20|NONE|TRUCK|nent, final pinto beans grow quick| +77096|312335|37348|2|39|52545.48|0.04|0.06|A|F|1994-12-15|1995-01-06|1994-12-31|TAKE BACK RETURN|TRUCK|unts boost| +77097|547238|47239|1|5|6426.05|0.05|0.05|A|F|1995-03-20|1995-03-12|1995-03-22|COLLECT COD|FOB|gle blithely final dolphins. fu| +77097|417804|17805|2|5|8608.90|0.07|0.01|R|F|1995-03-07|1995-03-21|1995-03-09|NONE|RAIL|g to the final braids haggle qui| +77097|27151|14652|3|22|23719.30|0.07|0.05|A|F|1995-01-22|1995-02-27|1995-01-28|COLLECT COD|AIR| special fo| +77097|319481|19482|4|2|3000.94|0.04|0.04|R|F|1995-02-10|1995-03-22|1995-02-20|TAKE BACK RETURN|REG AIR|leep. furiously ironic packages h| +77098|425471|488|1|39|54461.55|0.06|0.04|N|O|1995-11-21|1995-12-03|1995-12-03|TAKE BACK RETURN|RAIL|sts cajole. bli| +77098|877106|14658|2|33|35740.98|0.06|0.05|N|O|1995-11-11|1995-11-18|1995-11-22|DELIVER IN PERSON|AIR|ully silent packages. quick| +77099|68142|43145|1|36|39965.04|0.10|0.06|N|O|1996-01-17|1996-02-24|1996-02-10|DELIVER IN PERSON|SHIP|posits. quickly ironic packages nag q| +77100|515706|40727|1|27|46485.36|0.05|0.07|R|F|1994-04-14|1994-06-13|1994-04-29|NONE|FOB|express pearls| +77100|459624|9625|2|3|4750.80|0.04|0.02|R|F|1994-07-13|1994-05-31|1994-07-25|NONE|RAIL|iously dogged accoun| +77101|771670|21671|1|19|33091.16|0.09|0.01|N|O|1998-04-04|1998-04-10|1998-05-01|NONE|TRUCK|ccounts cajole hockey pla| +77101|454068|4069|2|1|1022.04|0.04|0.00|N|O|1998-06-17|1998-03-29|1998-07-12|NONE|MAIL|re carefully final, speci| +77102|102445|27450|1|10|14474.40|0.08|0.01|R|F|1992-08-22|1992-07-15|1992-09-03|DELIVER IN PERSON|SHIP|y stealthy accounts are furi| +77102|793028|18059|2|49|54928.51|0.01|0.01|R|F|1992-07-06|1992-07-08|1992-07-09|COLLECT COD|REG AIR|ly daring ideas. slyly ir| +77103|217385|17386|1|26|33861.62|0.07|0.04|R|F|1994-01-15|1994-02-09|1994-02-08|NONE|MAIL|thely special | +77103|581943|19477|2|22|44548.24|0.09|0.08|R|F|1994-01-31|1994-02-22|1994-02-12|COLLECT COD|AIR|efully carefully pending accounts. furiou| +77103|702125|2126|3|30|33812.70|0.08|0.08|R|F|1994-02-18|1994-01-22|1994-02-23|TAKE BACK RETURN|REG AIR|; pinto beans wake excuses. bold inst| +77103|614135|39160|4|45|47209.50|0.00|0.06|A|F|1994-01-27|1994-01-30|1994-02-14|TAKE BACK RETURN|MAIL|uickly speci| +77128|49898|37399|1|8|14783.12|0.05|0.01|N|O|1998-01-30|1997-12-23|1998-02-27|TAKE BACK RETURN|RAIL|nic packages run. carefully ironi| +77128|628541|16078|2|20|29390.20|0.06|0.05|N|O|1998-01-01|1998-01-06|1998-01-29|NONE|AIR| unusual theodolites. regular, regular pack| +77128|878233|28234|3|28|33913.32|0.06|0.07|N|O|1997-12-26|1998-01-13|1998-01-07|TAKE BACK RETURN|TRUCK|ronic pinto be| +77128|461290|23800|4|35|43794.45|0.01|0.00|N|O|1997-11-22|1998-01-17|1997-12-14|NONE|AIR|luffily final | +77128|891056|28608|5|15|15705.15|0.09|0.08|N|O|1997-12-13|1997-12-21|1997-12-21|DELIVER IN PERSON|RAIL|y ironic packages detect slyly| +77128|963060|25580|6|41|46043.82|0.09|0.06|N|O|1997-12-12|1998-02-03|1997-12-17|TAKE BACK RETURN|SHIP|slyly ironic dinos nag blithely| +77128|136577|11582|7|36|58088.52|0.05|0.03|N|O|1997-12-16|1997-12-16|1998-01-05|NONE|REG AIR|s haggle according to | +77129|437931|440|1|14|26164.74|0.01|0.05|A|F|1993-07-30|1993-05-25|1993-08-15|TAKE BACK RETURN|SHIP| regular, unusual packages| +77129|294734|32250|2|38|65691.36|0.03|0.00|R|F|1993-06-10|1993-06-28|1993-06-20|NONE|SHIP|lly pending asymptotes cajole | +77129|592005|29539|3|46|50461.08|0.10|0.03|A|F|1993-06-09|1993-06-24|1993-06-24|COLLECT COD|TRUCK|y regular foxes u| +77129|812238|49787|4|37|42557.03|0.07|0.07|R|F|1993-04-22|1993-05-29|1993-05-09|COLLECT COD|SHIP|furiously silent asymptotes eng| +77129|282818|20334|5|46|82836.80|0.02|0.07|R|F|1993-05-04|1993-07-04|1993-05-09|TAKE BACK RETURN|RAIL|ilent packages. slyly brave deposits wake.| +77129|320670|8189|6|16|27050.56|0.04|0.08|R|F|1993-07-26|1993-06-05|1993-08-23|COLLECT COD|RAIL|usly ironic packages a| +77129|495493|20512|7|10|14884.70|0.03|0.00|A|F|1993-06-11|1993-06-12|1993-06-14|DELIVER IN PERSON|SHIP|re quickly carefully even depo| +77130|744757|7272|1|49|88284.28|0.10|0.04|N|O|1997-04-27|1997-05-30|1997-05-16|TAKE BACK RETURN|REG AIR|tes haggle. pending foxes do use reque| +77130|123891|36394|2|7|13404.23|0.08|0.08|N|O|1997-07-15|1997-05-17|1997-08-03|DELIVER IN PERSON|AIR|elets despite the fluffily ironi| +77130|228880|28881|3|30|54266.10|0.05|0.01|N|O|1997-04-06|1997-05-13|1997-05-04|TAKE BACK RETURN|RAIL|thely final courts serve quickly. bl| +77130|781174|31175|4|27|33888.78|0.01|0.04|N|O|1997-07-03|1997-05-29|1997-07-07|COLLECT COD|SHIP|quests affix according to the ca| +77130|185060|35061|5|2|2290.12|0.03|0.00|N|O|1997-06-04|1997-04-27|1997-07-01|NONE|FOB|rate furiously. furiously silent packa| +77131|458883|33902|1|41|75516.26|0.01|0.08|N|O|1998-04-10|1998-03-18|1998-05-04|TAKE BACK RETURN|RAIL|aring theodolit| +77131|430910|18435|2|5|9204.45|0.06|0.01|N|O|1998-05-16|1998-04-14|1998-05-21|TAKE BACK RETURN|FOB|sts. carefully fluffy acc| +77131|297402|22413|3|48|67170.72|0.08|0.05|N|O|1998-03-29|1998-03-16|1998-04-19|COLLECT COD|AIR|eep furiously through the furiously regular| +77132|271857|9373|1|7|12801.88|0.02|0.08|A|F|1992-06-16|1992-09-01|1992-06-30|COLLECT COD|MAIL|uriously final c| +77132|99865|24868|2|16|29837.76|0.10|0.03|R|F|1992-08-12|1992-07-15|1992-09-02|NONE|FOB| after the | +77132|426192|26193|3|7|7827.19|0.01|0.04|R|F|1992-10-04|1992-08-30|1992-10-31|COLLECT COD|REG AIR|out the final dolphins. quick| +77132|2797|2798|4|39|66291.81|0.06|0.03|A|F|1992-07-13|1992-07-16|1992-08-01|COLLECT COD|RAIL|sits: quickly iron| +77132|1214|13715|5|48|53530.08|0.06|0.06|A|F|1992-06-13|1992-08-28|1992-06-30|TAKE BACK RETURN|MAIL|ts wake carefully accounts.| +77133|615366|15367|1|11|14094.63|0.03|0.04|R|F|1995-06-04|1995-04-11|1995-06-08|NONE|SHIP|ons cajole about | +77133|447676|10185|2|49|79558.85|0.07|0.06|A|F|1995-06-07|1995-04-13|1995-06-10|NONE|MAIL|ecial packages? slowly ironic deposits | +77133|79739|42241|3|9|15468.57|0.01|0.08|A|F|1995-04-26|1995-05-06|1995-05-01|NONE|TRUCK|ic packages. blithely pending pla| +77133|160409|10410|4|48|70531.20|0.03|0.08|R|F|1995-05-28|1995-05-28|1995-06-17|COLLECT COD|REG AIR| pending p| +77133|983965|33966|5|25|51223.00|0.04|0.04|R|F|1995-04-14|1995-05-02|1995-04-30|TAKE BACK RETURN|REG AIR|requests according| +77133|489474|14493|6|29|42440.05|0.06|0.07|R|F|1995-05-13|1995-05-03|1995-05-14|NONE|REG AIR|yly ironic foxes. special requests haggle| +77134|425353|25354|1|24|30679.92|0.07|0.00|A|F|1994-05-01|1994-02-27|1994-05-14|COLLECT COD|RAIL|ses sleep acro| +77134|905956|5957|2|9|17657.19|0.07|0.03|A|F|1994-04-29|1994-02-20|1994-05-29|DELIVER IN PERSON|FOB|efully bold excuses sleep idly unusual | +77134|400286|287|3|31|36774.06|0.06|0.00|A|F|1994-05-02|1994-03-08|1994-05-10|DELIVER IN PERSON|AIR|the careful| +77134|602341|39878|4|16|19892.96|0.05|0.00|R|F|1994-04-18|1994-02-17|1994-05-01|TAKE BACK RETURN|AIR| instructions sleep blithely enticingly re| +77134|528491|16022|5|14|21272.58|0.05|0.08|R|F|1994-03-14|1994-02-21|1994-03-31|TAKE BACK RETURN|REG AIR|n theodolites cajole blithely among the u| +77134|332874|20393|6|41|78181.26|0.06|0.00|A|F|1994-01-21|1994-04-05|1994-02-05|NONE|SHIP| wake blithely against| +77135|411102|36119|1|26|26340.08|0.07|0.06|A|F|1992-03-08|1992-04-03|1992-03-26|DELIVER IN PERSON|MAIL|lly blithe r| +77135|390115|2623|2|3|3615.30|0.07|0.05|R|F|1992-02-03|1992-03-28|1992-02-11|COLLECT COD|SHIP|structions sl| +77135|656365|43905|3|4|5285.32|0.09|0.08|R|F|1992-04-08|1992-03-08|1992-04-24|COLLECT COD|FOB|ly pending deposits affi| +77135|514691|39712|4|6|10234.02|0.10|0.05|A|F|1992-03-28|1992-03-24|1992-04-27|DELIVER IN PERSON|REG AIR|special ideas w| +77135|403445|3446|5|33|44497.86|0.06|0.06|R|F|1992-04-28|1992-04-06|1992-05-26|NONE|AIR|xes wake blithely express warthogs. | +77135|694817|44818|6|5|9058.90|0.08|0.01|A|F|1992-04-26|1992-03-08|1992-05-19|TAKE BACK RETURN|SHIP|ackages must are regularly along the fu| +77160|183948|46452|1|10|20319.40|0.06|0.04|N|O|1996-08-29|1996-07-07|1996-09-26|TAKE BACK RETURN|FOB|as cajole ironic, regula| +77160|612222|12223|2|30|34025.70|0.06|0.03|N|O|1996-07-07|1996-06-19|1996-08-02|COLLECT COD|AIR|ackages. sl| +77160|599656|37190|3|16|28090.08|0.05|0.01|N|O|1996-05-19|1996-06-11|1996-06-03|COLLECT COD|AIR| furiously alongside of th| +77160|404572|4573|4|48|70874.40|0.05|0.07|N|O|1996-05-18|1996-07-16|1996-05-22|NONE|SHIP|le furiously alongside of the ironic pinto | +77160|641573|16598|5|31|46950.74|0.05|0.05|N|O|1996-06-25|1996-06-13|1996-06-30|DELIVER IN PERSON|AIR| deposits. final, stealthy de| +77161|754143|41689|1|9|10773.99|0.05|0.07|R|F|1993-05-29|1993-07-02|1993-06-10|NONE|SHIP|ruthlessly ironic accounts nag| +77161|878733|28734|2|19|32522.11|0.03|0.07|A|F|1993-07-25|1993-06-09|1993-08-20|TAKE BACK RETURN|REG AIR|st the requests. ironic, final excuses wa| +77161|852285|2286|3|25|30931.00|0.01|0.01|A|F|1993-08-06|1993-05-27|1993-08-19|TAKE BACK RETURN|TRUCK| requests. fluffi| +77161|341387|28906|4|4|5713.48|0.08|0.01|A|F|1993-05-04|1993-06-10|1993-06-03|DELIVER IN PERSON|MAIL|s use furiously. fluffily| +77161|675619|646|5|30|47837.40|0.04|0.07|R|F|1993-06-18|1993-06-26|1993-07-06|TAKE BACK RETURN|FOB| quickly bold de| +77161|123618|48623|6|12|19699.32|0.03|0.06|A|F|1993-04-20|1993-06-19|1993-05-20|COLLECT COD|AIR|ular requests sleep above the carefully fin| +77161|634919|9944|7|45|83424.60|0.09|0.03|A|F|1993-04-13|1993-06-09|1993-04-21|DELIVER IN PERSON|SHIP|cajole carefully alongside of | +77162|72601|10105|1|2|3147.20|0.01|0.01|R|F|1993-11-13|1993-08-23|1993-11-24|NONE|AIR|sly special requests. slyly pending ideas | +77163|633933|33934|1|34|63474.60|0.00|0.06|R|F|1992-08-02|1992-08-14|1992-08-21|DELIVER IN PERSON|RAIL|nts. carefully regu| +77163|509750|47281|2|5|8798.65|0.05|0.03|R|F|1992-09-07|1992-07-29|1992-09-10|COLLECT COD|REG AIR|r the ironic accounts. carefully ironi| +77163|352417|27432|3|29|42612.60|0.07|0.02|R|F|1992-09-01|1992-07-08|1992-09-25|TAKE BACK RETURN|RAIL| deposits. reg| +77163|69143|6647|4|29|32252.06|0.04|0.07|R|F|1992-09-14|1992-08-09|1992-09-26|DELIVER IN PERSON|MAIL|nto beans detect! blit| +77164|934812|22367|1|14|25854.78|0.00|0.02|N|O|1997-03-31|1997-03-23|1997-04-24|COLLECT COD|MAIL|deas detect regular foxes. ir| +77165|705702|5703|1|27|46107.09|0.01|0.00|A|F|1995-03-30|1995-02-18|1995-04-27|COLLECT COD|FOB|ic requests doubt c| +77165|718107|30622|2|7|7875.49|0.00|0.08|R|F|1995-03-22|1995-02-02|1995-04-08|NONE|REG AIR| silent packages-- blithely even instruct| +77165|217249|42258|3|5|5831.15|0.04|0.01|R|F|1995-01-14|1995-02-25|1995-01-28|TAKE BACK RETURN|TRUCK|d, unusual excuses. packages haggle de| +77166|241260|16269|1|38|45647.50|0.05|0.00|N|O|1996-07-13|1996-06-28|1996-07-15|COLLECT COD|MAIL|ffy asymptotes sleep alongside of the final| +77166|855806|5807|2|45|79279.20|0.10|0.01|N|O|1996-07-28|1996-08-07|1996-08-20|DELIVER IN PERSON|TRUCK|express foxes. special, ironic de| +77166|516549|4080|3|12|18786.24|0.01|0.07|N|O|1996-07-05|1996-08-03|1996-07-06|TAKE BACK RETURN|REG AIR|sts integrate after t| +77166|628694|16231|4|40|64906.40|0.03|0.03|N|O|1996-09-02|1996-07-23|1996-09-09|NONE|MAIL|counts are fluffily. fox| +77166|453524|28543|5|44|65010.00|0.08|0.07|N|O|1996-06-21|1996-06-17|1996-06-25|DELIVER IN PERSON|REG AIR|gular accounts| +77166|365092|15093|6|45|52068.60|0.08|0.03|N|O|1996-06-09|1996-07-31|1996-06-10|COLLECT COD|FOB|s wake even| +77167|164920|14921|1|37|73442.04|0.04|0.01|R|F|1995-04-07|1995-04-21|1995-05-02|COLLECT COD|TRUCK|lets sleep deposits: carefully special| +77167|794349|6865|2|24|34639.44|0.05|0.00|R|F|1995-03-31|1995-03-03|1995-04-06|COLLECT COD|AIR|de the ironic p| +77167|615070|15071|3|20|19700.80|0.01|0.04|R|F|1995-04-01|1995-04-29|1995-04-04|TAKE BACK RETURN|MAIL|into beans across the fluf| +77167|466834|29344|4|12|21609.72|0.05|0.05|A|F|1995-05-02|1995-04-20|1995-05-03|DELIVER IN PERSON|AIR|its. fluffily| +77167|63684|13685|5|39|64259.52|0.09|0.08|N|F|1995-05-28|1995-03-09|1995-06-19|COLLECT COD|MAIL|ing to the furiously regular deposi| +77167|332468|7481|6|22|33009.90|0.04|0.06|R|F|1995-05-15|1995-03-12|1995-06-09|NONE|REG AIR|sly regular reque| +77192|829774|42291|1|31|52815.63|0.03|0.05|A|F|1992-08-12|1992-08-03|1992-08-16|NONE|FOB|low courts use. s| +77192|10971|10972|2|41|77160.77|0.00|0.00|A|F|1992-07-21|1992-08-08|1992-07-28|DELIVER IN PERSON|SHIP|n excuses. regul| +77193|404195|4196|1|11|12090.87|0.06|0.00|A|F|1993-11-13|1993-11-17|1993-11-16|NONE|FOB|ven requests w| +77193|295538|20549|2|5|7667.60|0.04|0.06|R|F|1993-11-10|1993-10-19|1993-11-25|TAKE BACK RETURN|RAIL| carefully even theodolites a| +77193|97665|35169|3|41|68169.06|0.05|0.05|R|F|1993-11-15|1993-11-02|1993-12-04|TAKE BACK RETURN|MAIL|ackages. regular, regu| +77193|443263|43264|4|49|59105.76|0.07|0.01|A|F|1993-12-29|1993-10-17|1994-01-24|NONE|AIR|ding pinto| +77193|918723|31242|5|31|53992.08|0.08|0.08|A|F|1993-10-13|1993-11-09|1993-11-02|DELIVER IN PERSON|MAIL| final packages are foxes.| +77193|965975|15976|6|38|77555.34|0.02|0.05|A|F|1993-11-19|1993-10-23|1993-12-07|NONE|REG AIR|furiously silent court| +77193|139173|14178|7|41|49698.97|0.02|0.07|A|F|1993-12-17|1993-11-13|1994-01-04|TAKE BACK RETURN|AIR|y silent accounts| +77194|73195|10699|1|15|17522.85|0.04|0.07|R|F|1993-10-01|1993-11-11|1993-10-16|TAKE BACK RETURN|AIR|xcuses wake furiously final requests| +77194|183352|33353|2|12|17224.20|0.08|0.03|R|F|1993-09-28|1993-10-28|1993-10-24|NONE|REG AIR|uests. unusual, stealthy packages cajo| +77194|595056|20079|3|18|20718.54|0.02|0.06|A|F|1993-11-08|1993-10-31|1993-12-01|NONE|RAIL|ously regular instructions wake packag| +77194|96167|8669|4|20|23263.20|0.09|0.06|R|F|1993-11-16|1993-10-02|1993-11-21|DELIVER IN PERSON|SHIP|aggle alongside of th| +77194|262562|78|5|17|25917.35|0.04|0.07|R|F|1993-09-25|1993-10-09|1993-10-23|DELIVER IN PERSON|AIR|ckages affix. final, pending pin| +77194|871471|46506|6|40|57697.20|0.06|0.03|R|F|1993-09-20|1993-10-26|1993-09-25|DELIVER IN PERSON|TRUCK|y packages. slyly final deposits cajole| +77195|949020|49021|1|35|37414.30|0.01|0.03|N|O|1996-07-02|1996-08-01|1996-07-04|NONE|FOB|rets. regular ideas against the slyly unu| +77195|173735|48742|2|40|72349.20|0.08|0.00|N|O|1996-08-09|1996-09-01|1996-08-29|NONE|SHIP| pending the| +77195|955995|5996|3|12|24611.40|0.01|0.01|N|O|1996-08-11|1996-08-03|1996-08-17|COLLECT COD|REG AIR|t carefully carefully even i| +77195|400044|37569|4|28|26432.56|0.03|0.06|N|O|1996-10-22|1996-09-09|1996-11-21|TAKE BACK RETURN|REG AIR|ong the slow instruc| +77196|314296|26803|1|13|17033.64|0.10|0.07|R|F|1992-06-04|1992-06-19|1992-06-07|TAKE BACK RETURN|SHIP|old packages haggl| +77197|840716|15749|1|11|18223.37|0.03|0.01|N|O|1996-08-07|1996-08-18|1996-08-30|DELIVER IN PERSON|MAIL| cajole about the close accounts: unusua| +77197|898075|35627|2|21|22533.63|0.03|0.01|N|O|1996-08-02|1996-08-19|1996-08-16|TAKE BACK RETURN|AIR| sly requests are| +77197|945882|33437|3|16|30845.44|0.09|0.05|N|O|1996-08-25|1996-07-18|1996-09-04|DELIVER IN PERSON|REG AIR| instructions. | +77197|422809|47826|4|3|5195.34|0.08|0.08|N|O|1996-07-06|1996-08-07|1996-07-22|TAKE BACK RETURN|MAIL|dencies. brave i| +77197|138629|38630|5|24|40022.88|0.01|0.08|N|O|1996-09-30|1996-09-07|1996-10-30|DELIVER IN PERSON|FOB|lar ideas. final, final accoun| +77198|85543|35544|1|32|48913.28|0.01|0.01|R|F|1995-01-22|1995-03-05|1995-01-30|DELIVER IN PERSON|MAIL|ly after the carefully unusual req| +77198|706992|19507|2|46|91952.16|0.00|0.08|R|F|1995-02-12|1995-03-10|1995-03-02|COLLECT COD|REG AIR|ges sleep. carefully regular| +77198|403184|40709|3|48|52183.68|0.05|0.02|R|F|1995-02-25|1995-03-03|1995-03-10|COLLECT COD|SHIP|ncies haggle about the unusual forges| +77198|306040|6041|4|17|17782.51|0.01|0.05|A|F|1995-02-02|1995-03-05|1995-02-23|DELIVER IN PERSON|RAIL|e slyly pending | +77198|604088|4089|5|31|30753.55|0.07|0.01|A|F|1995-01-29|1995-02-25|1995-02-09|NONE|TRUCK|g the reque| +77198|898632|23667|6|23|37503.57|0.06|0.08|R|F|1995-02-15|1995-03-11|1995-02-24|TAKE BACK RETURN|TRUCK|ily idly special instructions. regular, s| +77198|295043|45044|7|45|46711.35|0.06|0.03|R|F|1995-03-26|1995-02-18|1995-04-02|COLLECT COD|SHIP|ts cajole quickly u| +77199|781467|31468|1|50|77421.50|0.02|0.04|A|F|1992-03-05|1992-04-23|1992-03-23|TAKE BACK RETURN|RAIL|sts. furiously ironic req| +77199|99574|49575|2|50|78678.50|0.09|0.03|R|F|1992-02-24|1992-04-04|1992-02-28|DELIVER IN PERSON|MAIL|ideas. even, even pinto b| +77224|772153|22154|1|42|51455.04|0.03|0.07|R|F|1994-12-07|1994-11-08|1994-12-21|COLLECT COD|REG AIR|s cajole blithely ironic r| +77224|566178|28690|2|16|19906.40|0.10|0.05|A|F|1994-09-20|1994-11-16|1994-10-05|DELIVER IN PERSON|SHIP| carefully even request| +77224|742343|42344|3|47|65109.57|0.00|0.00|A|F|1994-12-23|1994-11-14|1995-01-14|COLLECT COD|SHIP|ven instructions use care| +77224|549457|36988|4|14|21090.02|0.07|0.05|R|F|1994-09-14|1994-12-01|1994-09-21|TAKE BACK RETURN|FOB|equests wake blithel| +77224|716903|16904|5|41|78714.67|0.07|0.08|A|F|1994-11-15|1994-10-13|1994-12-12|COLLECT COD|RAIL|ns boost fluff| +77224|974791|37311|6|44|82093.00|0.05|0.01|R|F|1994-09-25|1994-10-21|1994-09-30|DELIVER IN PERSON|FOB|ial, final excuses nag along th| +77224|298526|23537|7|42|64029.42|0.02|0.04|A|F|1994-10-09|1994-11-25|1994-10-30|TAKE BACK RETURN|MAIL|f the braids.| +77225|317598|42611|1|43|69469.94|0.05|0.02|N|O|1997-08-04|1997-07-22|1997-08-31|TAKE BACK RETURN|TRUCK|s sleep carefully even requests; qui| +77225|860709|10710|2|13|21705.58|0.09|0.01|N|O|1997-05-23|1997-08-07|1997-06-02|TAKE BACK RETURN|REG AIR|ts sublate. foxes haggle caref| +77225|925971|13526|3|41|81874.13|0.04|0.02|N|O|1997-08-29|1997-06-14|1997-09-06|COLLECT COD|RAIL|haggle carefully. s| +77225|786496|24042|4|10|15824.60|0.07|0.03|N|O|1997-09-05|1997-07-15|1997-10-03|COLLECT COD|RAIL| express packages affix. bli| +77225|637510|23|5|44|63689.12|0.08|0.02|N|O|1997-07-21|1997-08-05|1997-08-19|TAKE BACK RETURN|FOB|ly. final foxes use furiously. slyly regula| +77225|621658|34171|6|3|4738.86|0.03|0.06|N|O|1997-08-05|1997-08-05|1997-08-14|DELIVER IN PERSON|AIR|e fluffily ironic ideas-- | +77226|555668|30691|1|7|12065.48|0.03|0.08|R|F|1994-03-09|1994-01-01|1994-03-21|COLLECT COD|FOB|l requests eat fluffily requests. flu| +77227|437283|24808|1|10|12202.60|0.01|0.04|R|F|1993-08-19|1993-07-01|1993-08-26|TAKE BACK RETURN|REG AIR|ackages. speci| +77227|412630|37647|2|31|47820.91|0.07|0.02|R|F|1993-06-15|1993-06-10|1993-07-10|TAKE BACK RETURN|REG AIR|ully silent i| +77228|981543|31544|1|13|21118.50|0.05|0.08|A|F|1993-05-26|1993-05-25|1993-05-31|NONE|SHIP| wake carefully. ruthless, regular p| +77229|978949|41469|1|8|16223.20|0.05|0.08|R|F|1992-06-05|1992-04-11|1992-06-09|NONE|AIR|nal packages at the slyly ironic frays| +77229|181617|19127|2|45|76437.45|0.05|0.05|A|F|1992-02-13|1992-03-19|1992-03-12|DELIVER IN PERSON|RAIL|requests. carefully ironic theodol| +77229|430881|18406|3|29|52543.94|0.07|0.03|R|F|1992-05-18|1992-04-22|1992-06-04|COLLECT COD|TRUCK|lyly regular theodolites despite the e| +77230|656046|18560|1|3|3006.03|0.06|0.07|N|O|1995-06-27|1995-05-08|1995-07-15|COLLECT COD|RAIL|c theodolites sleep even, | +77230|162918|12919|2|26|51503.66|0.08|0.04|R|F|1995-04-19|1995-05-16|1995-04-28|TAKE BACK RETURN|TRUCK|dependencies. furiously regular theodol| +77231|879508|4543|1|47|69910.62|0.01|0.08|N|O|1997-12-31|1997-10-19|1998-01-04|COLLECT COD|MAIL|ven ideas run a| +77231|885937|48455|2|3|5768.67|0.02|0.03|N|O|1997-10-07|1997-11-29|1997-11-03|COLLECT COD|FOB|iously about the car| +77231|928409|15964|3|45|64681.20|0.04|0.05|N|O|1997-10-13|1997-11-05|1997-11-11|TAKE BACK RETURN|RAIL|maintain before the slyly bold foxes-- s| +77231|754542|42088|4|8|12772.08|0.07|0.00|N|O|1997-10-01|1997-11-25|1997-10-17|COLLECT COD|SHIP| asymptotes are pending packages. fluf| +77231|579467|41979|5|3|4639.32|0.10|0.06|N|O|1997-11-09|1997-10-26|1997-11-13|COLLECT COD|AIR|according to the quic| +77231|86510|24014|6|39|58363.89|0.07|0.01|N|O|1997-10-29|1997-10-21|1997-11-10|DELIVER IN PERSON|TRUCK|efully quickly regular acco| +77256|993669|43670|1|3|5287.86|0.01|0.06|N|O|1997-08-07|1997-09-08|1997-08-22|DELIVER IN PERSON|AIR|encies poach above the slyly unusu| +77257|208589|46102|1|13|19468.41|0.07|0.02|R|F|1994-12-08|1995-02-06|1994-12-20|TAKE BACK RETURN|REG AIR|ld accounts | +77258|65051|27553|1|34|34545.70|0.08|0.08|R|F|1993-07-05|1993-07-11|1993-08-01|TAKE BACK RETURN|SHIP|ets. fluffy dependencies use fluffily; ir| +77258|300937|25950|2|44|85268.48|0.07|0.05|A|F|1993-05-11|1993-07-30|1993-05-20|DELIVER IN PERSON|RAIL| unusual platelets wake blithel| +77258|834211|9244|3|50|57258.50|0.05|0.06|R|F|1993-08-17|1993-06-28|1993-09-16|DELIVER IN PERSON|REG AIR|uctions thrash f| +77258|571508|9042|4|12|18953.76|0.06|0.01|A|F|1993-05-25|1993-06-09|1993-05-28|COLLECT COD|REG AIR|cording to the do| +77259|315890|3409|1|9|17152.92|0.00|0.06|R|F|1992-08-15|1992-09-02|1992-08-27|DELIVER IN PERSON|MAIL|eep across the i| +77259|162180|37187|2|19|23601.42|0.01|0.03|R|F|1992-07-03|1992-09-17|1992-07-12|DELIVER IN PERSON|TRUCK|ck pinto be| +77260|558382|33405|1|14|20165.04|0.02|0.03|N|O|1995-07-07|1995-07-08|1995-07-22|DELIVER IN PERSON|SHIP|fily express pinto| +77260|713269|812|2|49|62829.27|0.08|0.07|N|O|1995-06-26|1995-08-20|1995-07-20|TAKE BACK RETURN|MAIL|hely ironic pl| +77260|900364|12883|3|45|61394.40|0.01|0.01|N|F|1995-05-29|1995-07-30|1995-06-25|COLLECT COD|REG AIR|le furiously carefully final a| +77260|412713|25222|4|24|39016.56|0.09|0.03|N|F|1995-05-28|1995-07-10|1995-06-19|DELIVER IN PERSON|FOB|oxes. furi| +77260|466128|16129|5|20|21882.00|0.01|0.08|N|O|1995-07-22|1995-07-17|1995-08-15|DELIVER IN PERSON|SHIP|otes. thinly ironic patter| +77260|209771|9772|6|6|10084.56|0.05|0.01|N|O|1995-06-26|1995-07-23|1995-07-16|NONE|FOB|layers cajole | +77261|896046|46047|1|36|37512.00|0.09|0.03|N|O|1995-11-24|1995-12-17|1995-12-13|COLLECT COD|AIR|warthogs cajole abo| +77261|836162|23711|2|36|39532.32|0.00|0.03|N|O|1995-12-02|1995-12-17|1995-12-15|NONE|FOB|press deposits. slyly pending pla| +77261|359980|47502|3|40|81598.80|0.09|0.02|N|O|1996-01-02|1995-10-21|1996-01-13|DELIVER IN PERSON|FOB| final dolphins. furious| +77262|826832|14381|1|1|1758.79|0.01|0.01|A|F|1992-08-06|1992-08-27|1992-08-25|DELIVER IN PERSON|RAIL|arefully unusual requests? bold pa| +77262|555604|43138|2|43|71361.94|0.07|0.07|A|F|1992-10-20|1992-09-22|1992-11-19|COLLECT COD|TRUCK|s according to the carefully final pac| +77262|25407|408|3|38|50631.20|0.07|0.01|A|F|1992-10-14|1992-09-23|1992-10-21|DELIVER IN PERSON|REG AIR|are dogged| +77262|12859|360|4|10|17718.50|0.07|0.03|R|F|1992-08-29|1992-09-10|1992-09-07|COLLECT COD|AIR|xcuses. even accounts integrate slyly acc| +77262|109793|47300|5|36|64900.44|0.08|0.07|R|F|1992-07-26|1992-09-11|1992-08-22|TAKE BACK RETURN|MAIL| theodolites use. final sa| +77262|284745|22261|6|14|24216.22|0.07|0.02|R|F|1992-11-08|1992-10-04|1992-11-25|DELIVER IN PERSON|TRUCK|re careful| +77262|696748|9262|7|50|87235.50|0.03|0.04|A|F|1992-09-24|1992-08-23|1992-10-24|DELIVER IN PERSON|FOB|lites. slyly | +77263|228257|40762|1|2|2370.48|0.00|0.07|N|O|1997-07-23|1997-08-25|1997-08-18|NONE|MAIL|counts thrash fur| +77288|521297|8828|1|47|61958.69|0.00|0.00|R|F|1992-11-12|1992-11-13|1992-11-13|COLLECT COD|RAIL|olites. quickly | +77288|422653|35162|2|40|63025.20|0.02|0.00|R|F|1992-11-17|1992-11-05|1992-12-06|TAKE BACK RETURN|TRUCK| quickly pending depende| +77288|524058|24059|3|31|33542.93|0.09|0.01|A|F|1992-10-01|1992-10-09|1992-10-12|DELIVER IN PERSON|FOB|sly above the pen| +77289|269889|32395|1|9|16729.83|0.05|0.07|R|F|1992-05-12|1992-06-11|1992-05-20|TAKE BACK RETURN|REG AIR|ironic, ironic pinto beans grow | +77289|17012|17013|2|38|35302.38|0.09|0.01|R|F|1992-06-14|1992-06-10|1992-07-14|TAKE BACK RETURN|TRUCK|ts wake around the sly| +77289|910394|10395|3|33|46343.55|0.09|0.08|A|F|1992-07-10|1992-07-02|1992-08-05|NONE|TRUCK|y final foxes. carefully silent courts | +77289|989741|27299|4|39|71397.30|0.05|0.08|A|F|1992-05-23|1992-06-27|1992-06-07|COLLECT COD|FOB|odolites boos| +77289|569910|32422|5|33|65336.37|0.09|0.06|R|F|1992-05-09|1992-05-06|1992-05-11|COLLECT COD|REG AIR|tes nag carefully b| +77289|475435|12963|6|12|16924.92|0.02|0.01|R|F|1992-05-05|1992-06-18|1992-05-17|DELIVER IN PERSON|AIR|gle closely. quickly unusual| +77290|271121|46132|1|49|53513.39|0.04|0.04|A|F|1994-10-17|1994-11-24|1994-11-16|NONE|AIR|al theodolites | +77291|622371|22372|1|22|28453.48|0.01|0.08|R|F|1992-07-21|1992-07-31|1992-08-16|COLLECT COD|REG AIR|uests cajole after the foxes. pendi| +77291|174998|37502|2|47|97430.53|0.09|0.06|A|F|1992-10-11|1992-07-29|1992-10-26|NONE|MAIL| special packages | +77291|183339|45843|3|38|54048.54|0.00|0.01|R|F|1992-10-09|1992-08-05|1992-11-06|COLLECT COD|REG AIR|larly. carefully | +77291|369758|19759|4|49|89559.26|0.01|0.08|R|F|1992-06-29|1992-09-04|1992-07-01|NONE|SHIP|p about the blithely final th| +77291|517859|5390|5|7|13137.81|0.08|0.07|A|F|1992-10-21|1992-07-28|1992-11-02|COLLECT COD|TRUCK|tions. blithely special asymptotes| +77291|652152|2153|6|48|52997.76|0.00|0.07|R|F|1992-08-30|1992-08-27|1992-09-18|COLLECT COD|AIR|inal ideas boost. packages sleep fur| +77292|30986|18487|1|14|26837.72|0.09|0.02|N|O|1997-01-22|1996-11-06|1997-01-25|TAKE BACK RETURN|AIR|ests cajole | +77292|770923|20924|2|24|47853.36|0.04|0.02|N|O|1997-01-12|1996-12-06|1997-01-25|NONE|REG AIR|sual asymptotes | +77292|900368|25405|3|46|62942.72|0.06|0.02|N|O|1997-01-14|1996-11-11|1997-02-13|DELIVER IN PERSON|SHIP|. carefully regular realms accord| +77292|477391|39901|4|13|17788.81|0.04|0.04|N|O|1996-11-20|1996-11-19|1996-12-05|DELIVER IN PERSON|TRUCK| furiously. furiously| +77292|494410|6920|5|47|66006.33|0.00|0.05|N|O|1996-10-11|1996-12-18|1996-11-08|NONE|AIR| quickly even requests nag unus| +77292|532154|44665|6|13|15419.69|0.01|0.03|N|O|1996-11-05|1996-12-25|1996-11-18|DELIVER IN PERSON|SHIP|zle slyly at the| +77292|904783|4784|7|5|8938.70|0.08|0.05|N|O|1997-01-07|1996-11-06|1997-01-26|NONE|AIR| packages-- pending packages wake fu| +77293|684496|34497|1|9|13324.14|0.00|0.04|N|O|1997-02-16|1997-03-14|1997-02-17|NONE|TRUCK|l sleep quickly regular courts. spec| +77294|283731|33732|1|28|48012.16|0.01|0.00|N|O|1996-09-08|1996-10-04|1996-10-06|COLLECT COD|FOB|y regular ac| +77294|653224|28251|2|8|9417.52|0.09|0.03|N|O|1996-08-24|1996-11-02|1996-09-22|COLLECT COD|REG AIR|ress, ironic multipliers wake carefully a| +77294|729329|29330|3|31|42106.99|0.07|0.01|N|O|1996-09-15|1996-10-19|1996-10-10|DELIVER IN PERSON|SHIP|inder. furi| +77294|819811|32328|4|47|81346.19|0.04|0.02|N|O|1996-11-25|1996-11-16|1996-12-24|COLLECT COD|TRUCK|ay fluffily. | +77294|552191|27214|5|5|6215.85|0.04|0.03|N|O|1996-11-21|1996-10-06|1996-11-27|NONE|RAIL|across the blit| +77294|663255|13256|6|9|10963.98|0.06|0.02|N|O|1996-10-22|1996-10-11|1996-10-23|COLLECT COD|REG AIR|carefully unusua| +77294|314558|2077|7|18|28305.72|0.02|0.07|N|O|1996-09-29|1996-11-06|1996-10-19|COLLECT COD|TRUCK| frets boost furiously regular acco| +77295|775195|12741|1|31|39374.96|0.09|0.07|A|F|1994-12-31|1995-01-29|1995-01-25|TAKE BACK RETURN|MAIL|ges according to the pinto bean| +77295|692232|4746|2|40|48968.00|0.07|0.01|A|F|1995-03-11|1995-01-13|1995-03-24|NONE|SHIP|ldly bold foxes wake slyly again| +77295|341824|4331|3|8|14926.48|0.05|0.02|R|F|1995-01-17|1995-01-30|1995-02-08|DELIVER IN PERSON|MAIL|ges are. r| +77295|29698|42199|4|25|40692.25|0.04|0.08|A|F|1994-12-24|1995-02-20|1995-01-17|NONE|AIR|. ironically | +77295|132398|44901|5|6|8582.34|0.05|0.01|A|F|1994-12-06|1995-01-09|1994-12-25|COLLECT COD|TRUCK|carefully express requests use slyly | +77295|198341|10845|6|46|66209.64|0.04|0.07|A|F|1995-01-20|1995-02-16|1995-02-13|TAKE BACK RETURN|SHIP|ve the furiously unusual dependencies.| +77320|60715|23217|1|5|8378.55|0.06|0.03|N|O|1998-08-28|1998-07-11|1998-09-23|TAKE BACK RETURN|SHIP| even requests. furiously bold pinto bean| +77320|420510|33019|2|44|62941.56|0.09|0.05|N|O|1998-09-04|1998-08-17|1998-09-05|DELIVER IN PERSON|FOB|lar accounts sle| +77320|510362|35383|3|38|52148.92|0.05|0.06|N|O|1998-06-10|1998-08-08|1998-07-03|NONE|TRUCK|excuses are slyly. quickl| +77320|647560|10073|4|44|66331.32|0.08|0.07|N|O|1998-07-27|1998-07-02|1998-08-04|COLLECT COD|FOB|kly even fox| +77320|531791|6812|5|15|27341.55|0.08|0.00|N|O|1998-07-16|1998-08-04|1998-08-03|COLLECT COD|RAIL|sly ironic packages wake fluffily sl| +77321|181429|18939|1|15|22656.30|0.05|0.00|R|F|1992-08-25|1992-08-02|1992-09-21|DELIVER IN PERSON|MAIL| the ideas. slyly final packages sleep abou| +77321|263753|13754|2|6|10300.44|0.07|0.03|A|F|1992-08-07|1992-08-27|1992-08-09|TAKE BACK RETURN|MAIL| regular acco| +77321|891089|3607|3|12|12960.48|0.08|0.08|R|F|1992-06-22|1992-09-10|1992-07-21|COLLECT COD|RAIL|osits are against the slyly final packages| +77321|517386|4917|4|2|2806.72|0.10|0.04|R|F|1992-08-17|1992-07-18|1992-08-18|DELIVER IN PERSON|RAIL|p above the fluffily r| +77321|695035|45036|5|1|1030.00|0.08|0.07|A|F|1992-08-19|1992-09-09|1992-08-20|NONE|TRUCK|ckages. unusual platele| +77321|451691|26710|6|6|9856.02|0.06|0.02|A|F|1992-10-09|1992-08-04|1992-11-07|NONE|REG AIR|inal packages use. furiousl| +77322|429896|29897|1|25|45646.75|0.08|0.06|N|O|1997-09-16|1997-10-14|1997-10-04|DELIVER IN PERSON|FOB|o beans. fu| +77322|253488|28499|2|19|27387.93|0.00|0.02|N|O|1997-09-09|1997-09-22|1997-09-14|TAKE BACK RETURN|FOB| use slyly pending accounts. slyly| +77322|358896|46418|3|16|31278.08|0.00|0.08|N|O|1997-10-22|1997-11-13|1997-11-02|TAKE BACK RETURN|RAIL|ly special depende| +77322|950837|13357|4|38|71736.02|0.00|0.02|N|O|1997-11-25|1997-09-19|1997-11-26|DELIVER IN PERSON|MAIL|r requests nag quickly| +77323|451681|14191|1|31|50612.46|0.05|0.08|N|O|1996-06-14|1996-05-08|1996-06-18|DELIVER IN PERSON|AIR|ular tithes| +77323|394709|7217|2|47|84773.43|0.01|0.02|N|O|1996-06-29|1996-05-03|1996-07-10|COLLECT COD|SHIP|ly slyly regular r| +77323|858504|46056|3|42|61423.32|0.04|0.00|N|O|1996-06-30|1996-05-25|1996-07-14|NONE|SHIP|unts nag against the even, bo| +77323|873615|23616|4|28|44479.96|0.02|0.01|N|O|1996-07-02|1996-06-09|1996-07-12|DELIVER IN PERSON|FOB|ress, quick | +77323|830704|5737|5|49|80098.34|0.00|0.06|N|O|1996-06-23|1996-06-18|1996-07-03|NONE|AIR| blithely | +77324|861114|48666|1|27|29026.89|0.04|0.02|R|F|1993-02-27|1993-02-12|1993-03-02|COLLECT COD|FOB|its. regular, ironic requests | +77324|736712|49227|2|14|24481.52|0.09|0.05|R|F|1993-04-15|1993-02-02|1993-04-30|NONE|FOB|es. final accounts slee| +77324|915872|15873|3|40|75513.20|0.02|0.06|R|F|1993-01-25|1993-03-02|1993-02-18|TAKE BACK RETURN|RAIL|use carefully | +77324|57044|7045|4|48|48049.92|0.00|0.04|R|F|1993-01-18|1993-02-07|1993-02-02|DELIVER IN PERSON|SHIP|lly even fo| +77324|725962|25963|5|18|35782.74|0.01|0.01|A|F|1992-12-20|1993-02-25|1993-01-11|DELIVER IN PERSON|SHIP|lly regular dolphins cajol| +77324|227906|40411|6|16|29342.24|0.06|0.08|R|F|1993-01-27|1993-02-25|1993-02-20|NONE|TRUCK|ideas. blithely regular| +77325|737651|25194|1|4|6754.48|0.06|0.08|R|F|1993-04-19|1993-06-11|1993-05-07|NONE|AIR| slyly bold packages integrat| +77326|100374|37881|1|37|50851.69|0.06|0.01|R|F|1994-04-21|1994-04-13|1994-05-04|NONE|FOB|nto beans s| +77326|976986|14544|2|12|24755.28|0.06|0.01|R|F|1994-06-15|1994-03-22|1994-07-11|TAKE BACK RETURN|AIR|lyly regular excuses sleep after | +77326|191686|16693|3|32|56885.76|0.01|0.02|A|F|1994-03-13|1994-03-22|1994-03-30|TAKE BACK RETURN|TRUCK|y bold requests use. blithely special | +77326|663242|25756|4|11|13257.31|0.08|0.08|A|F|1994-06-01|1994-04-17|1994-06-22|NONE|REG AIR|slyly even foxes. slyly | +77326|102902|15405|5|36|68576.40|0.02|0.04|A|F|1994-02-21|1994-03-30|1994-03-04|DELIVER IN PERSON|RAIL|ly. pending pinto beans cajole. fluf| +77326|467252|4780|6|35|42673.05|0.01|0.08|R|F|1994-02-19|1994-03-23|1994-03-19|DELIVER IN PERSON|AIR|ss the furiously even orbits. furious| +77327|607656|32681|1|34|53163.08|0.00|0.07|N|O|1997-03-01|1997-05-05|1997-03-24|DELIVER IN PERSON|TRUCK|p quickly. ideas according to the| +77327|872530|10082|2|36|54089.64|0.09|0.00|N|O|1997-05-18|1997-04-06|1997-06-04|DELIVER IN PERSON|AIR|ons. slyly ruth| +77352|80178|42680|1|45|52117.65|0.02|0.07|A|F|1993-10-24|1993-10-08|1993-10-26|NONE|RAIL|ng accounts detect carefull| +77352|551194|26217|2|12|14942.04|0.08|0.06|A|F|1993-09-27|1993-10-13|1993-10-15|DELIVER IN PERSON|MAIL|instructions. slyly bo| +77352|904971|42526|3|46|90892.78|0.06|0.00|R|F|1993-08-15|1993-10-14|1993-09-08|DELIVER IN PERSON|FOB|ully. unusual packages sleep slyly bra| +77352|841857|29406|4|14|25183.34|0.08|0.02|R|F|1993-12-11|1993-09-12|1993-12-25|DELIVER IN PERSON|MAIL|nusual pinto beans are slyly ironi| +77352|78597|3600|5|26|40965.34|0.02|0.04|R|F|1993-11-16|1993-10-20|1993-11-29|NONE|TRUCK|furiously against the eve| +77352|969400|31920|6|2|2938.72|0.05|0.03|R|F|1993-08-19|1993-10-10|1993-09-03|TAKE BACK RETURN|SHIP|ress pinto beans hinder quickly after | +77352|699810|37350|7|39|70581.42|0.04|0.02|A|F|1993-11-23|1993-10-06|1993-12-07|DELIVER IN PERSON|REG AIR| carefully c| +77353|701341|1342|1|34|45638.54|0.07|0.01|A|F|1992-07-22|1992-10-06|1992-08-21|COLLECT COD|REG AIR|arefully regular courts. ir| +77354|621509|46534|1|13|18596.11|0.01|0.01|A|F|1994-10-07|1994-10-05|1994-10-19|TAKE BACK RETURN|AIR|s. carefully e| +77354|688975|1489|2|10|19639.40|0.08|0.06|A|F|1994-08-18|1994-09-28|1994-09-13|TAKE BACK RETURN|TRUCK|e bravely alongsid| +77354|602820|15333|3|45|77525.55|0.02|0.08|A|F|1994-09-25|1994-09-01|1994-10-03|COLLECT COD|SHIP|iously ironic orbits are blithely accordin| +77354|588774|13797|4|36|67059.00|0.10|0.08|R|F|1994-08-07|1994-09-11|1994-08-11|COLLECT COD|RAIL|ully ironic accou| +77354|522429|47450|5|10|14514.00|0.10|0.05|A|F|1994-07-26|1994-09-14|1994-08-19|NONE|AIR| nag above the regu| +77354|453245|40773|6|43|51523.46|0.06|0.04|A|F|1994-09-12|1994-10-07|1994-10-08|TAKE BACK RETURN|RAIL|its are among th| +77355|974719|37239|1|22|39460.74|0.03|0.05|N|O|1995-09-18|1995-10-18|1995-10-18|DELIVER IN PERSON|AIR|telets haggle carefully silent dependenc| +77355|94854|7356|2|37|68407.45|0.08|0.06|N|O|1995-11-28|1995-11-27|1995-12-26|DELIVER IN PERSON|RAIL|ress packages are carefully alo| +77356|300818|13325|1|21|38194.80|0.01|0.08|A|F|1995-04-26|1995-05-05|1995-05-20|COLLECT COD|REG AIR|s are furiously blithely final asymptot| +77356|838033|38034|2|45|43694.55|0.08|0.04|A|F|1995-03-29|1995-05-10|1995-04-01|NONE|SHIP|ideas cajole ironically final, regu| +77356|806339|43888|3|49|61019.21|0.04|0.04|A|F|1995-04-28|1995-06-17|1995-05-23|NONE|MAIL|thely final instruction| +77357|56457|43961|1|37|52297.65|0.01|0.05|N|O|1996-06-16|1996-07-04|1996-06-28|NONE|FOB|uctions sleep furiously excuses. carefully| +77357|870598|20599|2|14|21959.70|0.01|0.01|N|O|1996-06-10|1996-05-27|1996-07-03|NONE|AIR|gular theodolites detect slyl| +77358|819902|7451|1|9|16396.74|0.00|0.02|R|F|1993-02-13|1993-04-16|1993-02-14|NONE|FOB|ests cajole blithely. fluf| +77358|82653|32654|2|46|75239.90|0.04|0.02|A|F|1993-05-28|1993-04-17|1993-06-08|DELIVER IN PERSON|MAIL|unts sleep slyly across the platel| +77358|140802|28309|3|32|58969.60|0.03|0.07|A|F|1993-02-12|1993-03-21|1993-03-01|TAKE BACK RETURN|MAIL|for the carefully special courts | +77358|446524|34049|4|2|2941.00|0.00|0.01|A|F|1993-05-09|1993-03-11|1993-05-16|NONE|SHIP|final accounts are slyly regular | +77358|725793|822|5|40|72750.40|0.04|0.03|A|F|1993-04-03|1993-05-06|1993-04-04|COLLECT COD|AIR|e carefully ironic accounts could| +77358|391043|3551|6|44|49897.32|0.06|0.04|A|F|1993-02-24|1993-04-02|1993-03-20|DELIVER IN PERSON|TRUCK|ructions. special dugouts haggle quietly. | +77359|698488|36028|1|37|54998.65|0.01|0.07|N|O|1996-06-16|1996-05-17|1996-07-05|NONE|MAIL| silent accounts are | +77359|485511|23039|2|30|44894.70|0.01|0.04|N|O|1996-04-27|1996-06-19|1996-04-28|COLLECT COD|REG AIR|lly. special instructions are some| +77384|292918|5424|1|31|59237.90|0.08|0.04|N|O|1998-01-08|1997-12-01|1998-02-05|NONE|FOB| sleep. slyly iro| +77384|61448|11449|2|21|29598.24|0.08|0.06|N|O|1998-01-15|1997-12-27|1998-02-06|TAKE BACK RETURN|MAIL|ts. furious| +77385|734663|22206|1|45|76393.35|0.06|0.01|R|F|1994-05-30|1994-07-23|1994-06-28|TAKE BACK RETURN|FOB|es of the furiously express ac| +77385|472483|34993|2|15|21831.90|0.07|0.02|R|F|1994-07-06|1994-07-16|1994-07-30|COLLECT COD|SHIP|gular, regular accounts | +77385|12155|12156|3|20|21343.00|0.06|0.07|A|F|1994-08-15|1994-07-13|1994-08-23|DELIVER IN PERSON|REG AIR|posits shall hag| +77385|283695|8706|4|50|83934.00|0.08|0.08|R|F|1994-08-14|1994-07-13|1994-08-22|TAKE BACK RETURN|RAIL|st have to cajole instructions. re| +77385|57669|32672|5|7|11386.62|0.00|0.06|R|F|1994-05-16|1994-07-06|1994-05-28|TAKE BACK RETURN|RAIL| cajole quickly bold requests. blithely eve| +77385|229802|29803|6|37|64076.23|0.01|0.00|A|F|1994-07-03|1994-07-23|1994-07-20|DELIVER IN PERSON|RAIL|. express depths nag slyl| +77385|277213|39719|7|3|3570.60|0.06|0.06|R|F|1994-09-06|1994-07-10|1994-09-13|DELIVER IN PERSON|FOB|p. fluffily r| +77386|111752|24255|1|46|81132.50|0.02|0.08|A|F|1993-02-03|1992-12-10|1993-02-14|TAKE BACK RETURN|FOB|ic packages sleep| +77386|207557|20062|2|47|68833.38|0.09|0.08|A|F|1993-03-05|1993-01-05|1993-03-17|NONE|AIR|hely final foxes.| +77386|396316|46317|3|47|66378.10|0.02|0.05|A|F|1993-01-22|1992-12-11|1993-01-27|COLLECT COD|REG AIR|o beans. furiously pending court| +77386|868079|30597|4|8|8376.24|0.08|0.00|A|F|1992-12-05|1993-01-10|1993-01-03|NONE|MAIL|ial deposits. finally| +77387|158309|45819|1|11|15040.30|0.05|0.05|N|O|1995-08-26|1995-09-18|1995-09-16|COLLECT COD|TRUCK|quickly even sauter| +77387|690092|40093|2|39|42200.34|0.09|0.02|N|O|1995-09-21|1995-09-18|1995-10-06|TAKE BACK RETURN|SHIP|le furiously about the quickly final orbi| +77387|364686|2208|3|27|47268.09|0.07|0.02|N|O|1995-08-02|1995-09-30|1995-09-01|TAKE BACK RETURN|RAIL|hes dazzle furiously. blithely regul| +77387|261392|23898|4|45|60902.10|0.03|0.03|N|O|1995-10-19|1995-08-22|1995-11-01|COLLECT COD|MAIL|slyly final accounts nag quickly over the | +77388|730613|43128|1|16|26297.28|0.09|0.03|N|O|1997-06-08|1997-06-28|1997-06-20|TAKE BACK RETURN|FOB|have to hinder quickly. ironic ideas integ| +77388|412654|37671|2|20|31332.60|0.01|0.03|N|O|1997-05-11|1997-07-05|1997-06-01|COLLECT COD|FOB|usly of the bl| +77389|779335|41851|1|24|33943.20|0.01|0.03|R|F|1994-07-04|1994-07-17|1994-07-23|NONE|REG AIR|es run carefully after the even, regula| +77390|479298|16826|1|41|52368.07|0.04|0.03|A|F|1993-05-15|1993-03-13|1993-06-11|TAKE BACK RETURN|TRUCK|al foxes are even | +77390|550185|37719|2|18|22232.88|0.03|0.08|R|F|1993-05-04|1993-04-26|1993-05-27|NONE|SHIP|to beans affix blithely. idly r| +77390|949400|36955|3|28|40582.08|0.10|0.00|R|F|1993-05-04|1993-03-03|1993-05-21|COLLECT COD|SHIP|ly unusual ideas affix dar| +77390|564592|2126|4|1|1656.57|0.05|0.02|A|F|1993-02-12|1993-03-09|1993-02-15|TAKE BACK RETURN|FOB|jole carefully. pinto beans nag above t| +77390|83037|20541|5|42|42841.26|0.05|0.06|A|F|1993-02-23|1993-03-21|1993-03-15|DELIVER IN PERSON|SHIP|ses. carefully bold theodolites cajole| +77390|594042|31576|6|44|49984.88|0.10|0.06|A|F|1993-04-25|1993-04-22|1993-05-21|NONE|SHIP| deposits. carefully un| +77391|849814|49815|1|11|19401.47|0.08|0.06|N|O|1996-06-05|1996-06-07|1996-06-11|NONE|FOB| furiously ironic packages are | +77391|815970|15971|2|12|22631.16|0.09|0.08|N|O|1996-06-10|1996-06-19|1996-06-26|TAKE BACK RETURN|SHIP|rash. carefully express requests| +77391|7004|19505|3|2|1822.00|0.06|0.05|N|O|1996-05-22|1996-05-31|1996-05-25|COLLECT COD|REG AIR| integrate across the| +77391|714534|2077|4|3|4645.50|0.08|0.01|N|O|1996-06-22|1996-06-23|1996-07-09|NONE|FOB|inal packages boost blithely furiously | +77416|621013|33526|1|39|36425.22|0.01|0.06|N|O|1995-08-19|1995-06-23|1995-09-13|TAKE BACK RETURN|FOB|regular pinto beans wak| +77416|352397|39919|2|11|15943.18|0.01|0.08|N|O|1995-07-12|1995-07-25|1995-08-07|COLLECT COD|FOB|e according to the| +77416|734730|22273|3|5|8823.50|0.06|0.06|N|O|1995-09-17|1995-08-13|1995-10-16|NONE|AIR|ending tithes. unusual, ironic| +77416|600020|21|4|19|21280.00|0.09|0.03|N|O|1995-07-05|1995-07-10|1995-07-06|NONE|FOB|iers boost across the| +77416|529755|17286|5|40|71389.20|0.00|0.08|N|F|1995-06-13|1995-06-22|1995-07-05|NONE|SHIP|e final packages; requests after the iron| +77416|586859|49371|6|5|9729.15|0.10|0.01|N|O|1995-08-15|1995-07-15|1995-08-20|DELIVER IN PERSON|REG AIR|ross the carefully regular packages c| +77416|323525|23526|7|9|13936.59|0.04|0.01|A|F|1995-05-29|1995-07-25|1995-06-16|NONE|FOB|ccounts. carefully even packages haggle bl| +77417|472929|10457|1|44|83683.60|0.06|0.03|N|O|1995-11-20|1995-11-22|1995-12-19|TAKE BACK RETURN|AIR|ly final requests. spe| +77417|508228|8229|2|32|39558.40|0.03|0.07|N|O|1996-01-22|1995-12-20|1996-02-20|NONE|RAIL|requests ought t| +77417|782565|45081|3|15|24712.95|0.08|0.01|N|O|1995-11-28|1995-11-27|1995-12-21|NONE|AIR|never even deposits b| +77418|399833|12341|1|30|57984.60|0.04|0.05|N|O|1996-01-09|1995-12-17|1996-01-18|TAKE BACK RETURN|RAIL|equests are fluffily even braid| +77418|985538|10577|2|11|17858.39|0.04|0.05|N|O|1995-11-30|1995-12-17|1995-12-20|TAKE BACK RETURN|REG AIR|d ideas wake slyl| +77419|753839|3840|1|8|15142.40|0.00|0.04|R|F|1993-04-12|1993-01-25|1993-05-12|DELIVER IN PERSON|MAIL|ges. requests detect fl| +77420|226532|14045|1|20|29170.40|0.09|0.03|N|O|1998-10-12|1998-09-10|1998-11-08|NONE|MAIL| deposits. slyly bold| +77420|311730|49249|2|43|74893.96|0.04|0.03|N|O|1998-07-23|1998-08-31|1998-08-17|NONE|AIR|ess, unusual deposits sleep a| +77420|230315|30316|3|25|31132.50|0.06|0.05|N|O|1998-06-22|1998-07-22|1998-07-13|DELIVER IN PERSON|TRUCK|uses nag quickly. somas haggl| +77421|899765|24800|1|43|75882.96|0.02|0.06|A|F|1992-10-06|1992-07-26|1992-10-11|TAKE BACK RETURN|SHIP|arefully iron| +77421|341945|16958|2|19|37751.67|0.02|0.01|A|F|1992-07-08|1992-07-25|1992-08-01|DELIVER IN PERSON|AIR|nd the even deposits-- bold, silent gift| +77421|60328|22830|3|5|6441.60|0.03|0.00|R|F|1992-06-30|1992-08-06|1992-07-06|NONE|RAIL|long the quickly| +77421|926909|1946|4|19|36781.34|0.09|0.00|R|F|1992-10-01|1992-07-30|1992-10-04|DELIVER IN PERSON|TRUCK|lithely slow ide| +77421|555237|17749|5|18|23259.78|0.04|0.08|R|F|1992-07-12|1992-07-19|1992-07-24|COLLECT COD|REG AIR|lar accounts integrate permanent| +77421|866892|4444|6|48|89224.80|0.08|0.05|A|F|1992-09-10|1992-08-15|1992-09-25|TAKE BACK RETURN|SHIP|onic dependencies sleep. blith| +77421|848133|48134|7|48|51892.32|0.06|0.01|R|F|1992-10-04|1992-08-31|1992-10-23|NONE|REG AIR|counts acco| +77422|570995|20996|1|33|68177.01|0.03|0.05|A|F|1994-10-31|1994-12-25|1994-11-25|DELIVER IN PERSON|TRUCK|c deposits breac| +77422|706485|31514|2|31|46234.95|0.04|0.05|A|F|1994-12-28|1994-12-16|1995-01-03|NONE|REG AIR|nto beans ar| +77423|532455|19986|1|23|34210.89|0.01|0.08|N|O|1996-01-02|1995-12-29|1996-01-24|TAKE BACK RETURN|FOB|riously. packages need to detect sly| +77423|970886|33406|2|26|50877.84|0.09|0.08|N|O|1996-02-04|1995-12-04|1996-02-15|NONE|RAIL|egular deposits haggle along the expr| +77423|673214|48241|3|18|21369.24|0.03|0.04|N|O|1995-11-03|1995-12-17|1995-11-25|DELIVER IN PERSON|REG AIR|as doubt quick| +77423|707198|44741|4|15|18077.40|0.06|0.05|N|O|1995-10-30|1995-12-27|1995-11-12|NONE|SHIP|efully regular ideas are. furiously expre| +77423|870884|8436|5|31|57500.04|0.04|0.07|N|O|1995-12-29|1995-12-29|1996-01-23|NONE|MAIL|unts use carefully alongsi| +77423|937673|25228|6|50|85531.50|0.04|0.01|N|O|1995-12-08|1995-11-21|1995-12-30|DELIVER IN PERSON|REG AIR|express courts. slyly ironic| +77448|140434|27941|1|20|29488.60|0.06|0.02|R|F|1992-03-01|1992-04-13|1992-03-26|DELIVER IN PERSON|RAIL|n deposits wake enticingly furiously unu| +77448|269828|19829|2|16|28764.96|0.10|0.04|R|F|1992-05-08|1992-03-26|1992-05-29|DELIVER IN PERSON|REG AIR|. blithely bold theodolit| +77448|998786|36344|3|8|15077.92|0.07|0.04|R|F|1992-03-09|1992-03-02|1992-03-31|COLLECT COD|AIR| slyly bold instructions haggle. bli| +77448|581081|43593|4|10|11620.60|0.04|0.04|A|F|1992-04-03|1992-04-13|1992-04-11|COLLECT COD|TRUCK| according to the| +77449|605265|30290|1|49|57341.27|0.00|0.00|N|O|1996-09-02|1996-10-04|1996-09-18|DELIVER IN PERSON|MAIL|ing to the pending accou| +77449|672462|10002|2|6|8606.58|0.00|0.04|N|O|1996-11-20|1996-11-23|1996-11-29|NONE|TRUCK|ccounts. blithely ironic acc| +77449|66743|41746|3|50|85487.00|0.05|0.03|N|O|1996-12-04|1996-11-14|1996-12-18|COLLECT COD|MAIL|st against the ironic, exp| +77449|742338|42339|4|17|23465.10|0.02|0.07|N|O|1996-11-10|1996-11-01|1996-12-01|TAKE BACK RETURN|AIR|y carefully regular acco| +77449|470137|20138|5|43|47605.73|0.06|0.04|N|O|1996-12-03|1996-10-12|1996-12-22|TAKE BACK RETURN|TRUCK| the carefully regular fox| +77449|581420|6443|6|47|70565.80|0.02|0.07|N|O|1996-11-07|1996-09-29|1996-11-24|TAKE BACK RETURN|FOB|y final packages. u| +77450|879439|41957|1|19|26949.41|0.00|0.05|A|F|1994-09-02|1994-07-21|1994-10-01|COLLECT COD|SHIP|nto beans. regular Tiresia| +77450|721647|46676|2|19|31703.59|0.03|0.05|A|F|1994-08-23|1994-07-19|1994-09-08|COLLECT COD|MAIL|eans wake furiously ironic pack| +77450|709355|21870|3|44|60030.08|0.01|0.03|R|F|1994-06-07|1994-06-24|1994-06-24|TAKE BACK RETURN|MAIL|ter the furi| +77450|128786|41289|4|31|56258.18|0.05|0.04|R|F|1994-07-09|1994-06-16|1994-08-03|TAKE BACK RETURN|RAIL|efully slow platelets| +77450|492591|5101|5|48|76011.36|0.09|0.00|A|F|1994-08-11|1994-06-10|1994-09-08|TAKE BACK RETURN|RAIL| accounts. furiously r| +77450|968437|18438|6|4|6021.56|0.10|0.04|R|F|1994-06-10|1994-08-06|1994-06-29|DELIVER IN PERSON|RAIL| regular idea| +77450|509157|46688|7|17|19824.21|0.04|0.01|A|F|1994-06-19|1994-06-15|1994-06-22|DELIVER IN PERSON|AIR|l deposits sleep. r| +77451|401337|38862|1|26|32196.06|0.05|0.01|R|F|1993-04-13|1993-03-17|1993-05-08|TAKE BACK RETURN|RAIL|the instructio| +77451|270737|45748|2|1|1707.72|0.04|0.02|R|F|1993-05-19|1993-05-03|1993-06-07|DELIVER IN PERSON|REG AIR|eodolites. special accounts was. bold,| +77451|267500|42511|3|15|22012.35|0.05|0.06|A|F|1993-02-15|1993-03-16|1993-02-18|COLLECT COD|REG AIR|blithely pending theodol| +77452|88566|1068|1|30|46636.80|0.05|0.06|R|F|1992-11-12|1992-11-24|1992-11-17|NONE|RAIL|uests inte| +77452|519663|19664|2|8|13461.12|0.09|0.00|R|F|1992-09-05|1992-10-15|1992-09-23|NONE|MAIL|lthily. furiously pending instructions caj| +77452|966552|29072|3|23|37225.73|0.06|0.08|A|F|1992-12-24|1992-11-14|1993-01-04|DELIVER IN PERSON|SHIP|ully furiously regular ex| +77453|764061|39092|1|18|20250.54|0.03|0.02|N|O|1996-03-21|1996-05-04|1996-03-28|NONE|TRUCK|unts. fluffily regular | +77453|558382|20894|2|5|7201.80|0.07|0.04|N|O|1996-03-29|1996-05-05|1996-04-08|COLLECT COD|RAIL|ial orbits use quietly slyly | +77453|723936|48965|3|20|39198.00|0.10|0.04|N|O|1996-03-22|1996-05-02|1996-04-15|DELIVER IN PERSON|FOB|fully after the fluffily regular ideas.| +77453|186369|36370|4|13|18919.68|0.04|0.05|N|O|1996-07-03|1996-05-05|1996-07-24|NONE|REG AIR|uriously: furiously final ideas | +77453|302768|2769|5|18|31873.50|0.09|0.02|N|O|1996-05-08|1996-04-27|1996-05-27|TAKE BACK RETURN|MAIL| of the slyly even theo| +77453|606258|18771|6|34|39583.48|0.09|0.04|N|O|1996-04-30|1996-04-05|1996-05-25|COLLECT COD|REG AIR|ins haggle carefully | +77454|61464|11465|1|23|32785.58|0.00|0.04|R|F|1992-12-22|1992-11-15|1993-01-21|TAKE BACK RETURN|AIR|iments. fluffily regular | +77454|17858|5359|2|24|42620.40|0.04|0.07|A|F|1992-11-03|1992-10-09|1992-11-07|NONE|AIR|ites above the furiousl| +77454|128771|28772|3|34|61192.18|0.03|0.07|R|F|1992-09-03|1992-11-19|1992-09-26|NONE|FOB|final packages cajole slyly furiously un| +77454|240981|3486|4|27|51893.19|0.06|0.08|A|F|1992-11-28|1992-10-28|1992-12-27|TAKE BACK RETURN|REG AIR|posits are furiously| +77454|160086|47596|5|6|6876.48|0.08|0.00|R|F|1992-09-19|1992-10-02|1992-10-06|NONE|FOB|es wake. furiously ironic accounts nag ca| +77455|336821|11834|1|2|3715.62|0.08|0.01|N|O|1996-07-09|1996-06-05|1996-07-18|DELIVER IN PERSON|MAIL|s. pending excuses breach. sl| +77480|802717|27750|1|19|30773.73|0.00|0.05|A|F|1994-04-22|1994-04-28|1994-04-28|COLLECT COD|MAIL|l ideas above the regular| +77480|261640|24146|2|32|51252.16|0.08|0.01|R|F|1994-05-13|1994-05-12|1994-06-10|DELIVER IN PERSON|MAIL|ng the even dep| +77480|379189|16711|3|2|2536.34|0.07|0.03|A|F|1994-07-10|1994-06-05|1994-07-23|TAKE BACK RETURN|TRUCK|even packages boost furiou| +77480|12895|12896|4|15|27118.35|0.06|0.02|R|F|1994-03-18|1994-05-04|1994-03-30|DELIVER IN PERSON|FOB| silent, unusual theodolites. quickly q| +77480|724946|37461|5|22|43360.02|0.02|0.05|R|F|1994-07-11|1994-05-19|1994-07-23|DELIVER IN PERSON|RAIL|ructions. carefully silent p| +77480|154893|17397|6|20|38957.80|0.00|0.02|R|F|1994-06-03|1994-05-02|1994-06-06|DELIVER IN PERSON|RAIL|y express instructions. ironic pint| +77480|275072|83|7|28|29317.68|0.10|0.04|R|F|1994-06-14|1994-06-10|1994-06-18|NONE|TRUCK| alongside of th| +77481|128626|41129|1|40|66184.80|0.03|0.08|N|O|1996-09-04|1996-09-14|1996-09-08|NONE|FOB|dependencies n| +77481|812842|391|2|17|29831.60|0.03|0.03|N|O|1996-09-27|1996-10-06|1996-10-22|TAKE BACK RETURN|SHIP|kages. ironic,| +77481|429777|4794|3|33|56322.75|0.04|0.00|N|O|1996-08-05|1996-09-16|1996-08-26|TAKE BACK RETURN|SHIP|fully even theodolites along the i| +77481|246838|21847|4|11|19633.02|0.02|0.04|N|O|1996-11-10|1996-10-17|1996-11-25|COLLECT COD|FOB|sits might mold| +77481|596167|8679|5|5|6315.70|0.05|0.06|N|O|1996-11-16|1996-09-01|1996-12-04|TAKE BACK RETURN|REG AIR|ly toward the excuse| +77482|784587|9618|1|33|55161.15|0.08|0.00|N|O|1996-03-22|1996-04-01|1996-04-18|COLLECT COD|TRUCK|uthlessly even requests. in| +77482|549498|49499|2|48|74278.56|0.02|0.00|N|O|1996-04-04|1996-03-26|1996-04-11|COLLECT COD|SHIP|. blithely final accou| +77482|400262|37787|3|11|12784.64|0.06|0.05|N|O|1996-06-05|1996-05-06|1996-06-17|DELIVER IN PERSON|SHIP|hs solve about the express instructions. b| +77482|196762|46763|4|31|57621.56|0.02|0.00|N|O|1996-06-21|1996-04-21|1996-06-23|NONE|FOB|ages haggle ruthlessly according t| +77483|347325|22338|1|50|68615.50|0.07|0.00|N|O|1995-10-11|1995-09-24|1995-10-13|DELIVER IN PERSON|REG AIR|riously final| +77483|487161|24689|2|33|37888.62|0.00|0.03|N|O|1995-08-31|1995-10-15|1995-09-01|TAKE BACK RETURN|FOB| platelets cajole furiously waters. slyly| +77483|710263|22778|3|15|19098.45|0.05|0.05|N|O|1995-08-04|1995-09-29|1995-08-15|DELIVER IN PERSON|FOB|s accounts. car| +77483|387333|24855|4|15|21304.80|0.08|0.07|N|O|1995-09-21|1995-08-21|1995-10-18|DELIVER IN PERSON|MAIL|y even packages nag slyly from the| +77484|988715|26273|1|39|70343.13|0.05|0.03|R|F|1993-09-21|1993-08-05|1993-10-16|TAKE BACK RETURN|MAIL|as. furiously express foxes about t| +77484|326055|1068|2|2|2162.08|0.01|0.02|A|F|1993-08-21|1993-09-11|1993-08-23|DELIVER IN PERSON|REG AIR|kly blithely brave acco| +77484|3744|41245|3|28|46136.72|0.08|0.06|R|F|1993-07-02|1993-08-10|1993-07-08|NONE|MAIL|y furiously regular requests. packa| +77484|915721|40758|4|48|83360.64|0.03|0.01|R|F|1993-07-27|1993-08-27|1993-08-07|COLLECT COD|REG AIR|equests cajol| +77484|518154|18155|5|20|23442.60|0.07|0.05|A|F|1993-08-05|1993-07-19|1993-08-06|DELIVER IN PERSON|AIR|y ironic as| +77485|388290|798|1|5|6891.40|0.04|0.07|R|F|1993-04-12|1993-03-01|1993-04-22|NONE|AIR|s requests. express braids ca| +77485|980300|42820|2|6|8281.56|0.09|0.02|R|F|1993-03-06|1993-03-05|1993-03-21|NONE|REG AIR|ular theodolites. carefully regula| +77485|894116|44117|3|17|18871.19|0.07|0.00|R|F|1993-02-20|1993-03-21|1993-03-17|NONE|AIR|ng the special theodolites. furiously regul| +77485|405887|30904|4|35|62750.10|0.05|0.05|R|F|1993-05-15|1993-03-25|1993-05-17|NONE|RAIL|n pinto beans. special, bold requests dou| +77485|728033|28034|5|21|22281.00|0.02|0.04|A|F|1993-04-19|1993-04-16|1993-04-23|NONE|MAIL| regular pinto b| +77485|43588|43589|6|42|64326.36|0.04|0.00|A|F|1993-03-16|1993-03-19|1993-03-29|TAKE BACK RETURN|SHIP|cial foxes boost doggedly regular dep| +77486|569489|32001|1|34|52987.64|0.00|0.00|N|O|1997-10-23|1997-11-25|1997-11-22|DELIVER IN PERSON|REG AIR|uriously even instruction| +77486|390442|27964|2|48|73556.64|0.09|0.00|N|O|1997-12-06|1997-10-10|1997-12-14|DELIVER IN PERSON|FOB|ven accounts. slyly regular instructio| +77486|156776|31783|3|47|86140.19|0.04|0.02|N|O|1997-12-31|1997-10-16|1998-01-16|NONE|TRUCK|ly ironic deposits are furiousl| +77487|794896|44897|1|37|73661.82|0.04|0.07|N|O|1997-03-26|1997-01-10|1997-04-24|COLLECT COD|TRUCK|kages. slyly pending requests wak| +77487|803720|3721|2|31|50334.08|0.07|0.01|N|O|1997-03-29|1997-01-18|1997-04-07|NONE|MAIL| regular instructions. blithely e| +77512|354218|4219|1|1|1272.20|0.01|0.06|R|F|1992-10-20|1992-09-23|1992-11-09|TAKE BACK RETURN|REG AIR|he furiously ironic | +77512|330872|30873|2|40|76114.40|0.02|0.01|A|F|1992-08-16|1992-10-30|1992-08-22|NONE|AIR|quickly unus| +77512|956702|6703|3|4|7034.64|0.03|0.01|R|F|1992-11-12|1992-10-18|1992-11-26|TAKE BACK RETURN|FOB|ccounts sleep accordin| +77512|285763|10774|4|6|10492.50|0.01|0.03|A|F|1992-12-07|1992-10-21|1992-12-31|DELIVER IN PERSON|REG AIR|ronic requests. pending | +77512|818496|43529|5|43|60821.35|0.08|0.01|A|F|1992-12-11|1992-09-22|1992-12-25|TAKE BACK RETURN|REG AIR|gainst the careful, final e| +77512|447378|34903|6|7|9277.45|0.00|0.01|A|F|1992-12-05|1992-09-27|1992-12-16|NONE|SHIP|c, final packages besides the blithely bol| +77513|131340|6345|1|19|26055.46|0.05|0.00|A|F|1993-10-09|1993-10-02|1993-10-16|DELIVER IN PERSON|TRUCK|sly even deposits | +77513|425290|307|2|29|35242.83|0.10|0.07|A|F|1993-11-22|1993-11-18|1993-12-21|COLLECT COD|SHIP|ccounts boost fluffily| +77514|18982|6483|1|8|15207.84|0.02|0.04|A|F|1993-09-22|1993-10-08|1993-09-29|DELIVER IN PERSON|RAIL|s sleep. f| +77514|26048|13549|2|35|34091.40|0.10|0.03|R|F|1993-11-14|1993-11-10|1993-11-16|COLLECT COD|SHIP|dencies. foxes use. deposits b| +77515|232368|19881|1|28|36409.80|0.05|0.04|R|F|1995-04-18|1995-03-12|1995-05-10|TAKE BACK RETURN|SHIP| finally final accounts. ironic theodolites| +77515|408898|8899|2|1|1806.87|0.06|0.06|A|F|1995-02-10|1995-04-09|1995-03-03|NONE|SHIP| patterns affix. slyly| +77515|332930|45437|3|38|74590.96|0.07|0.06|A|F|1995-03-25|1995-04-01|1995-04-22|COLLECT COD|SHIP|ave accounts across the furiously| +77516|869696|7248|1|36|59963.40|0.06|0.00|A|F|1994-10-20|1994-11-10|1994-11-07|DELIVER IN PERSON|AIR|arefully across the furiously regular i| +77516|972010|9568|2|14|15147.58|0.04|0.06|R|F|1994-12-08|1994-10-13|1994-12-25|COLLECT COD|TRUCK|e furiously about the furiously ironic requ| +77517|834759|9792|1|26|44036.46|0.07|0.06|N|O|1998-03-13|1998-04-16|1998-04-07|NONE|SHIP|theodolites are slyly | +77517|783997|33998|2|7|14566.72|0.02|0.03|N|O|1998-01-28|1998-02-25|1998-02-25|NONE|AIR|iet pearls. requests against the carefu| +77517|634497|47010|3|14|20040.44|0.05|0.05|N|O|1998-03-08|1998-03-21|1998-03-27|NONE|TRUCK| sleep after the fluffily final| +77517|991059|3579|4|45|51750.45|0.08|0.05|N|O|1998-03-28|1998-03-25|1998-04-02|TAKE BACK RETURN|TRUCK| quickly across the carefully special a| +77517|726628|14171|5|11|18200.49|0.01|0.06|N|O|1998-04-13|1998-04-20|1998-04-22|DELIVER IN PERSON|REG AIR|ld deposits. express | +77517|425953|970|6|8|15031.44|0.01|0.06|N|O|1998-03-29|1998-04-26|1998-04-25|DELIVER IN PERSON|REG AIR|es haggle according to the furiousl| +77517|991039|16078|7|11|12429.89|0.06|0.00|N|O|1998-02-04|1998-03-18|1998-02-08|NONE|TRUCK|ve the expr| +77518|388701|1209|1|30|53690.70|0.02|0.04|R|F|1993-01-21|1993-02-11|1993-01-24|TAKE BACK RETURN|TRUCK|ess deposits abo| +77518|887337|37338|2|15|19864.35|0.01|0.06|A|F|1993-01-30|1993-01-16|1993-02-22|COLLECT COD|REG AIR|s. ironic req| +77518|464438|26948|3|41|57498.81|0.07|0.06|R|F|1992-12-30|1993-01-10|1993-01-21|NONE|MAIL|! furiously iro| +77519|42815|30316|1|36|63281.16|0.01|0.06|R|F|1992-09-02|1992-10-09|1992-09-30|COLLECT COD|REG AIR|bout the quickly fina| +77544|857888|20406|1|20|36916.80|0.10|0.02|A|F|1994-12-11|1994-11-22|1994-12-24|COLLECT COD|FOB|. blithely ironic instructio| +77545|921200|46237|1|10|12211.60|0.03|0.06|N|O|1998-09-22|1998-09-15|1998-10-03|COLLECT COD|RAIL|uriously. ironic excuses| +77545|599802|12314|2|1|1901.78|0.01|0.07|N|O|1998-07-11|1998-07-26|1998-07-14|TAKE BACK RETURN|FOB| hinder carefully | +77545|869229|44264|3|26|31152.68|0.10|0.02|N|O|1998-10-01|1998-08-30|1998-10-15|COLLECT COD|MAIL|express asymptotes. silent, regular| +77546|848814|48815|1|13|22916.01|0.08|0.00|N|O|1996-04-26|1996-05-12|1996-05-05|DELIVER IN PERSON|SHIP|resias during the ironic, unusual requests | +77546|1689|1690|2|25|39767.00|0.03|0.05|N|O|1996-07-24|1996-06-10|1996-07-27|DELIVER IN PERSON|SHIP|ven requests! ideas detect blithely| +77546|381429|43937|3|39|58905.99|0.07|0.07|N|O|1996-06-12|1996-06-05|1996-06-23|NONE|MAIL|rnes doze slyly carefu| +77546|661856|49396|4|37|67259.34|0.04|0.06|N|O|1996-04-24|1996-05-18|1996-05-15|COLLECT COD|MAIL|jole across the deposits. slyl| +77546|806329|6330|5|32|39528.96|0.06|0.08|N|O|1996-07-23|1996-05-26|1996-08-18|COLLECT COD|MAIL|ffily regu| +77547|308913|33926|1|43|82641.70|0.02|0.07|R|F|1993-07-22|1993-07-27|1993-07-25|NONE|RAIL|ly accounts. carefully bold sau| +77547|890571|40572|2|4|6246.12|0.09|0.05|A|F|1993-09-02|1993-07-31|1993-09-24|NONE|SHIP|thlessly. never final | +77548|266662|41673|1|6|9771.90|0.03|0.07|A|F|1992-10-21|1992-10-20|1992-10-24|NONE|RAIL|ndencies. carefully i| +77548|783036|8067|2|41|45879.00|0.00|0.01|A|F|1992-10-18|1992-10-16|1992-10-20|COLLECT COD|RAIL|ggle slyly carefully express reque| +77548|471401|46420|3|22|30192.36|0.06|0.06|R|F|1992-10-24|1992-09-23|1992-11-12|DELIVER IN PERSON|RAIL|o beans nag along the| +77548|835608|10641|4|47|72547.32|0.06|0.03|R|F|1992-09-21|1992-08-27|1992-09-28|NONE|TRUCK|instructions. final accounts | +77549|687504|37505|1|19|28337.93|0.06|0.07|N|O|1995-11-16|1995-11-07|1995-11-22|COLLECT COD|TRUCK|heodolites among the ideas haggle among the| +77550|100370|371|1|32|43851.84|0.03|0.00|A|F|1992-10-11|1992-09-26|1992-10-21|TAKE BACK RETURN|AIR|s after the carefully final deposits ca| +77551|600542|543|1|3|4327.53|0.06|0.03|R|F|1993-01-24|1992-12-31|1993-02-06|COLLECT COD|REG AIR|es. slyly even dolph| +77576|109159|21662|1|46|53734.90|0.01|0.05|R|F|1992-04-15|1992-02-18|1992-05-07|TAKE BACK RETURN|AIR|ajole furiousl| +77576|619673|7210|2|4|6370.56|0.00|0.03|A|F|1992-02-28|1992-02-17|1992-03-26|DELIVER IN PERSON|REG AIR| slyly even deposits. pending r| +77576|837467|49984|3|17|23875.14|0.03|0.07|R|F|1992-02-01|1992-03-28|1992-02-09|DELIVER IN PERSON|RAIL|ul asymptotes. slyly bold sa| +77576|299649|49650|4|35|57702.05|0.04|0.06|R|F|1992-04-08|1992-03-07|1992-04-18|TAKE BACK RETURN|AIR|lar packages. forges run. furiously | +77576|186708|24218|5|5|8973.50|0.09|0.01|A|F|1992-04-02|1992-04-03|1992-04-29|COLLECT COD|TRUCK|. carefully silent theodolites| +77576|995637|20676|6|12|20791.08|0.00|0.03|A|F|1992-04-24|1992-04-03|1992-04-30|NONE|RAIL| slyly express package| +77576|667202|4742|7|12|14030.04|0.08|0.06|R|F|1992-02-19|1992-02-26|1992-03-10|COLLECT COD|SHIP| the furiously regular accoun| +77577|660459|22973|1|34|48260.28|0.09|0.00|R|F|1994-09-07|1994-07-25|1994-09-30|COLLECT COD|TRUCK| pending courts sleep quickly ac| +77577|332825|32826|2|25|46445.25|0.00|0.02|R|F|1994-09-18|1994-09-01|1994-09-21|COLLECT COD|FOB|nstructions. reques| +77577|775283|12829|3|16|21732.00|0.09|0.05|R|F|1994-07-28|1994-07-29|1994-07-30|TAKE BACK RETURN|RAIL| of the carefully special ideas. furio| +77578|131982|19489|1|26|52363.48|0.01|0.04|A|F|1993-02-26|1993-01-17|1993-03-05|COLLECT COD|RAIL|gular platelets: bo| +77578|213979|1492|2|41|77611.36|0.00|0.02|A|F|1993-01-24|1993-02-19|1993-01-27|TAKE BACK RETURN|SHIP|ake blithely. slyly | +77579|257657|32668|1|1|1614.64|0.07|0.06|R|F|1993-12-21|1994-02-09|1993-12-31|COLLECT COD|AIR| the sometimes silent ideas; final d| +77579|432575|45084|2|45|67839.75|0.00|0.08|A|F|1994-01-09|1994-01-30|1994-01-30|DELIVER IN PERSON|SHIP|foxes should have to wake around the fur| +77579|272337|22338|3|11|14402.52|0.05|0.02|R|F|1994-01-14|1994-01-05|1994-01-22|COLLECT COD|SHIP|mong the bold platelets boost ac| +77579|155391|42901|4|3|4339.17|0.04|0.04|A|F|1994-02-01|1994-01-26|1994-02-14|NONE|REG AIR| requests against the pending| +77579|640772|40773|5|50|85637.00|0.10|0.05|A|F|1994-02-08|1994-02-02|1994-02-22|NONE|AIR|eposits across the ruth| +77580|59591|22093|1|31|48068.29|0.09|0.00|N|O|1995-07-22|1995-06-22|1995-08-10|NONE|SHIP|long the unusual dolph| +77580|540115|27646|2|31|35807.79|0.03|0.02|A|F|1995-05-21|1995-06-18|1995-06-01|COLLECT COD|AIR|otornis hang against the platelets. evenly | +77581|372916|10438|1|16|31822.40|0.07|0.04|A|F|1993-11-03|1993-10-28|1993-11-13|NONE|AIR|lent requests kindle blithely. regular| +77581|589862|2374|2|12|23422.08|0.01|0.03|R|F|1993-11-22|1993-10-02|1993-11-23|COLLECT COD|REG AIR|al packages above the regular, special fox| +77581|807277|19794|3|41|48553.43|0.06|0.05|R|F|1993-11-08|1993-11-14|1993-11-27|DELIVER IN PERSON|REG AIR|ly carefully unusual deposits. dogged | +77581|897675|10193|4|29|48506.27|0.01|0.05|A|F|1993-10-03|1993-11-05|1993-10-13|DELIVER IN PERSON|AIR|thely frets. bold packages boos| +77581|215282|15283|5|30|35918.10|0.06|0.05|R|F|1993-12-17|1993-11-25|1993-12-27|DELIVER IN PERSON|MAIL|ove the regular pinto be| +77581|240384|15393|6|48|63569.76|0.02|0.03|R|F|1993-12-25|1993-10-25|1994-01-07|NONE|TRUCK|sly unusual packages hang | +77581|117594|42599|7|2|3223.18|0.09|0.08|R|F|1993-11-11|1993-11-14|1993-11-16|TAKE BACK RETURN|REG AIR|ously-- re| +77582|393883|18898|1|13|25699.31|0.03|0.04|R|F|1993-05-25|1993-03-10|1993-06-09|COLLECT COD|RAIL|y about the request| +77582|977413|39933|2|38|56634.06|0.01|0.06|A|F|1993-02-27|1993-03-29|1993-03-27|DELIVER IN PERSON|MAIL|nag slyly ironic theodolites. furiously per| +77583|947011|9530|1|36|38086.92|0.01|0.07|A|F|1992-08-24|1992-07-18|1992-09-15|TAKE BACK RETURN|MAIL|gular idea| +77583|409228|9229|2|25|28430.00|0.00|0.01|A|F|1992-06-17|1992-06-09|1992-07-05|TAKE BACK RETURN|AIR|regular deposits unwind along the care| +77583|893463|43464|3|22|32041.24|0.09|0.05|A|F|1992-07-30|1992-06-03|1992-08-23|TAKE BACK RETURN|SHIP|en requests; final request| +77583|430241|5258|4|35|40992.70|0.00|0.01|R|F|1992-08-23|1992-07-17|1992-09-09|COLLECT COD|MAIL| cajole pe| +77583|54706|29709|5|34|56463.80|0.01|0.07|A|F|1992-05-18|1992-06-18|1992-06-15|NONE|SHIP|ic accounts run about the furiously regu| +77583|428979|16504|6|45|85857.75|0.01|0.02|A|F|1992-08-20|1992-07-06|1992-09-15|TAKE BACK RETURN|TRUCK|dencies nag | +77608|525113|37624|1|26|29590.34|0.08|0.05|A|F|1994-02-25|1994-03-06|1994-03-12|NONE|AIR|ly slyly fluffy deposits. q| +77608|560250|22762|2|46|60270.58|0.09|0.01|R|F|1994-01-07|1994-01-25|1994-01-30|TAKE BACK RETURN|FOB|iously fluffily regular ideas. pain| +77609|910622|23141|1|37|60405.46|0.10|0.06|N|O|1997-05-30|1997-06-11|1997-06-21|TAKE BACK RETURN|RAIL|ets doze. express dependencies a| +77610|929509|29510|1|5|7692.30|0.07|0.08|N|O|1996-03-29|1996-02-20|1996-04-24|NONE|RAIL|beans wake. quickly ironic patterns | +77611|902155|2156|1|1|1157.11|0.00|0.05|N|O|1996-05-27|1996-08-10|1996-06-25|COLLECT COD|AIR|ronic dinos print ins| +77611|506246|31267|2|29|36314.38|0.00|0.00|N|O|1996-08-26|1996-07-22|1996-09-24|COLLECT COD|MAIL|sias. slyly iro| +77611|466056|3584|3|20|20440.60|0.10|0.04|N|O|1996-06-11|1996-07-14|1996-07-02|NONE|FOB|kages sleep alon| +77611|991988|17027|4|42|87357.48|0.08|0.03|N|O|1996-07-31|1996-08-15|1996-08-21|TAKE BACK RETURN|FOB| slyly regu| +77611|340258|2765|5|21|27263.04|0.04|0.08|N|O|1996-06-19|1996-07-04|1996-07-12|DELIVER IN PERSON|TRUCK|asymptotes. deposits are c| +77611|707912|20427|6|28|53756.64|0.06|0.08|N|O|1996-05-28|1996-07-20|1996-06-26|NONE|FOB|ly. blithely special depo| +77612|777839|27840|1|49|93923.20|0.10|0.05|N|O|1998-05-20|1998-03-25|1998-05-23|TAKE BACK RETURN|FOB|ing attainments boost furiou| +77612|124276|36779|2|15|19504.05|0.03|0.04|N|O|1998-04-19|1998-04-02|1998-04-23|DELIVER IN PERSON|MAIL|ironic, regu| +77612|698040|10554|3|28|29064.28|0.01|0.01|N|O|1998-05-15|1998-05-14|1998-05-17|COLLECT COD|AIR|iously brave pinto beans boost about | +77612|943786|6305|4|49|89657.26|0.07|0.06|N|O|1998-04-03|1998-05-03|1998-04-09|NONE|SHIP|along the accounts| +77612|210306|10307|5|44|53516.76|0.06|0.01|N|O|1998-04-23|1998-03-31|1998-05-04|DELIVER IN PERSON|RAIL|azzle quickly; slyly even excuses are abov| +77612|612224|24737|6|21|23859.99|0.01|0.03|N|O|1998-04-25|1998-03-25|1998-04-30|COLLECT COD|RAIL|nts impress on the quickly final dep| +77612|632346|7371|7|28|35792.68|0.02|0.07|N|O|1998-05-06|1998-05-07|1998-05-28|TAKE BACK RETURN|MAIL|ckages. furiously ex| +77613|837914|12947|1|22|40741.14|0.07|0.08|N|O|1998-01-21|1998-02-28|1998-01-30|NONE|MAIL|furiously final accounts sleep | +77613|805004|5005|2|5|4544.80|0.05|0.07|N|O|1998-01-25|1998-02-08|1998-02-19|TAKE BACK RETURN|MAIL|ly even requests. permanently express inst| +77613|689395|26935|3|50|69218.00|0.07|0.05|N|O|1998-03-07|1998-04-01|1998-03-20|TAKE BACK RETURN|RAIL|. express p| +77614|762474|37505|1|38|58384.72|0.09|0.08|N|O|1996-09-30|1996-10-05|1996-10-18|COLLECT COD|MAIL|e quickly after the even, even deposit| +77614|887846|25398|2|29|53180.20|0.00|0.00|N|O|1996-08-10|1996-10-17|1996-08-31|COLLECT COD|REG AIR|furiously special excuses breac| +77614|11795|49296|3|25|42669.75|0.00|0.03|N|O|1996-08-10|1996-10-14|1996-08-18|DELIVER IN PERSON|AIR|uriously even packages. | +77614|237105|37106|4|38|39599.42|0.10|0.05|N|O|1996-10-22|1996-09-14|1996-11-02|COLLECT COD|AIR|ep: blithely ironic platelets ar| +77615|406265|6266|1|26|30452.24|0.01|0.00|A|F|1992-10-26|1992-11-06|1992-11-23|TAKE BACK RETURN|TRUCK|heodolites sleep blit| +77615|91873|29377|2|45|83919.15|0.10|0.00|A|F|1992-10-25|1992-11-07|1992-11-11|TAKE BACK RETURN|MAIL|blithely unusual packages. blithely e| +77640|224580|12093|1|30|45137.10|0.03|0.05|A|F|1994-02-15|1993-12-08|1994-03-02|TAKE BACK RETURN|RAIL|lly bold d| +77641|866165|3717|1|10|11311.20|0.08|0.03|R|F|1994-01-25|1994-03-13|1994-02-14|TAKE BACK RETURN|SHIP|d pinto beans cajole e| +77641|634685|34686|2|36|58307.40|0.09|0.02|A|F|1994-04-13|1994-02-01|1994-05-07|COLLECT COD|RAIL| furiously bold deposits afte| +77641|144171|19176|3|33|40100.61|0.01|0.05|R|F|1994-03-09|1994-03-03|1994-03-16|TAKE BACK RETURN|AIR|xes haggle asymptotes| +77641|65328|27830|4|38|49146.16|0.06|0.03|R|F|1994-04-05|1994-02-03|1994-04-18|COLLECT COD|FOB|ickly regular pinto | +77642|821202|46235|1|44|49419.04|0.08|0.07|N|O|1997-06-17|1997-04-25|1997-07-10|TAKE BACK RETURN|RAIL| theodolit| +77642|940552|3071|2|8|12740.08|0.03|0.06|N|O|1997-03-13|1997-05-13|1997-03-20|NONE|RAIL|sits into the regul| +77642|847031|22064|3|2|1955.98|0.08|0.02|N|O|1997-03-16|1997-04-15|1997-03-17|NONE|REG AIR|s after th| +77642|37433|49934|4|10|13704.30|0.04|0.07|N|O|1997-06-08|1997-05-19|1997-06-12|DELIVER IN PERSON|SHIP|iously regu| +77642|122686|47691|5|36|61512.48|0.10|0.05|N|O|1997-04-26|1997-03-29|1997-05-14|NONE|MAIL|iously ironic deposits | +77642|968351|30871|6|34|48256.54|0.08|0.04|N|O|1997-05-13|1997-04-15|1997-05-15|DELIVER IN PERSON|MAIL|pending instructions. care| +77642|69043|44046|7|30|30361.20|0.05|0.01|N|O|1997-05-10|1997-04-16|1997-05-14|TAKE BACK RETURN|SHIP|y bold requests. deposits wake. ironic | +77643|396017|46018|1|2|2226.00|0.02|0.00|N|O|1996-08-09|1996-07-17|1996-08-16|COLLECT COD|SHIP|inal, final requests| +77643|846610|34159|2|22|34244.54|0.00|0.01|N|O|1996-06-24|1996-07-06|1996-07-07|DELIVER IN PERSON|AIR|atelets. silent, ironic depend| +77643|974025|49064|3|38|41761.24|0.09|0.04|N|O|1996-08-12|1996-07-16|1996-08-23|DELIVER IN PERSON|MAIL|ly final inst| +77644|115521|15522|1|32|49168.64|0.03|0.08|R|F|1992-04-17|1992-04-09|1992-04-20|TAKE BACK RETURN|TRUCK|. regular requests impress sly| +77644|549267|24288|2|13|17111.12|0.03|0.00|R|F|1992-03-23|1992-03-20|1992-04-22|NONE|TRUCK|long the slyly special deposits. finally | +77645|690885|40886|1|43|80661.55|0.03|0.05|R|F|1994-10-27|1994-11-30|1994-11-20|DELIVER IN PERSON|TRUCK|iously unusual| +77645|702517|15032|2|46|69896.08|0.03|0.01|A|F|1994-10-08|1994-11-12|1994-11-03|COLLECT COD|AIR| slow foxes cajole final courts; blithely | +77646|647365|34902|1|16|20997.28|0.01|0.01|N|O|1996-02-13|1996-04-21|1996-02-20|DELIVER IN PERSON|MAIL|ickly even excuses. express| +77646|259336|21842|2|49|63470.68|0.10|0.01|N|O|1996-02-25|1996-04-04|1996-03-16|TAKE BACK RETURN|TRUCK| ironic theodolites. fluffily bold reques| +77646|651582|39122|3|47|72076.85|0.03|0.02|N|O|1996-04-12|1996-04-12|1996-04-19|TAKE BACK RETURN|REG AIR|o the furiously regular de| +77646|130475|5480|4|31|46669.57|0.03|0.05|N|O|1996-02-22|1996-03-22|1996-03-01|NONE|AIR|luffily blithely ironic accounts. careful| +77647|657919|32946|1|20|37537.60|0.02|0.06|A|F|1993-05-23|1993-04-08|1993-06-16|TAKE BACK RETURN|FOB|ng, bold deposits. eve| +77647|633242|20779|2|19|22328.99|0.06|0.04|A|F|1993-03-04|1993-04-24|1993-03-05|COLLECT COD|TRUCK|encies boost slyly. furiously bold id| +77672|245117|45118|1|41|43546.10|0.01|0.01|A|F|1995-01-06|1995-01-22|1995-01-20|TAKE BACK RETURN|AIR| packages by the expr| +77672|680941|18481|2|19|36516.29|0.09|0.07|A|F|1995-01-15|1995-01-01|1995-01-21|COLLECT COD|TRUCK|, silent packages sleep slyly. furiousl| +77672|571951|34463|3|5|10114.65|0.04|0.06|R|F|1995-02-20|1995-01-25|1995-02-23|COLLECT COD|SHIP|s sleep above the f| +77672|774773|24774|4|46|84996.04|0.09|0.01|A|F|1994-11-16|1994-12-05|1994-12-13|COLLECT COD|RAIL|sly express requ| +77672|593684|43685|5|46|81772.36|0.00|0.01|R|F|1995-02-26|1995-01-22|1995-03-26|DELIVER IN PERSON|MAIL|ctions play| +77673|628143|15680|1|34|36417.74|0.02|0.01|N|O|1998-01-15|1998-01-07|1998-01-23|COLLECT COD|TRUCK|ccounts to the final, bold| +77673|182939|7946|2|7|14153.51|0.10|0.02|N|O|1997-12-01|1997-12-20|1997-12-15|TAKE BACK RETURN|AIR|nal theodolites sublate doggedly regular re| +77673|645827|45828|3|16|28364.64|0.00|0.02|N|O|1997-12-15|1997-12-16|1997-12-16|DELIVER IN PERSON|AIR|nic pinto beans maintain ac| +77673|405630|43155|4|20|30712.20|0.07|0.07|N|O|1997-11-23|1997-11-24|1997-11-25|NONE|FOB|platelets along the ca| +77673|406852|31869|5|6|10552.98|0.08|0.03|N|O|1998-01-10|1997-11-16|1998-01-13|TAKE BACK RETURN|FOB|lar foxes haggle ironic| +77673|953083|40641|6|36|40897.44|0.01|0.01|N|O|1997-10-21|1997-12-21|1997-11-16|NONE|REG AIR|s. waters nag quickly around t| +77674|613500|1037|1|45|63606.15|0.08|0.08|A|F|1994-12-13|1994-11-06|1995-01-05|DELIVER IN PERSON|FOB|hely unusual packa| +77674|82883|20387|2|36|67171.68|0.07|0.00|R|F|1994-12-11|1994-10-17|1995-01-04|NONE|REG AIR|ly ironic accounts. blithely even| +77674|2270|27271|3|45|52752.15|0.09|0.02|R|F|1994-10-29|1994-11-26|1994-11-21|NONE|MAIL|ecial, sil| +77674|138892|38893|4|20|38617.80|0.02|0.07|R|F|1994-10-09|1994-11-30|1994-10-30|NONE|TRUCK|o the stealthily final depo| +77674|346921|46922|5|25|49197.75|0.07|0.08|A|F|1994-12-26|1994-11-08|1995-01-06|NONE|RAIL|counts. furiously speci| +77674|696933|34473|6|36|69476.40|0.09|0.02|A|F|1994-09-18|1994-11-18|1994-09-22|COLLECT COD|FOB|nic packages. slyly pen| +77674|341430|3937|7|39|57385.38|0.10|0.06|A|F|1994-11-29|1994-11-09|1994-12-21|COLLECT COD|RAIL| slyly final pinto beans.| +77675|409349|46874|1|10|12583.20|0.04|0.04|N|O|1998-02-18|1998-01-15|1998-03-02|COLLECT COD|SHIP| packages after t| +77675|922794|35313|2|43|78120.25|0.06|0.06|N|O|1998-03-08|1998-02-07|1998-03-09|COLLECT COD|FOB|c deposits nag ca| +77675|389480|1988|3|18|28250.46|0.01|0.06|N|O|1997-11-26|1997-12-27|1997-12-14|COLLECT COD|TRUCK|se alongside of the slyly bol| +77675|981119|18677|4|2|2400.14|0.08|0.08|N|O|1998-02-11|1998-02-02|1998-03-09|TAKE BACK RETURN|MAIL|s haggle blithely reg| +77675|656286|43826|5|4|4969.00|0.04|0.01|N|O|1997-12-02|1997-12-18|1997-12-29|NONE|MAIL|es are carefull| +77675|187918|25428|6|36|72212.76|0.06|0.06|N|O|1998-03-07|1998-01-04|1998-04-05|TAKE BACK RETURN|SHIP|ests? quickly unusua| +77676|946967|9486|1|40|80556.80|0.06|0.07|A|F|1994-06-22|1994-07-21|1994-06-24|TAKE BACK RETURN|TRUCK|mong the c| +77676|664205|39232|2|25|29229.25|0.09|0.06|A|F|1994-08-31|1994-07-16|1994-09-12|NONE|AIR|es haggle slyly among t| +77677|159917|47427|1|22|43492.02|0.07|0.04|N|O|1997-11-10|1997-09-29|1997-11-23|TAKE BACK RETURN|SHIP|se excuses. even accounts b| +77677|712393|24908|2|1|1405.36|0.07|0.04|N|O|1997-10-28|1997-10-03|1997-11-27|NONE|TRUCK|ose accounts. pending requ| +77677|174252|11762|3|50|66312.50|0.06|0.01|N|O|1997-12-05|1997-11-21|1997-12-31|NONE|SHIP|final theodolites. slyly unusual du| +77678|853133|3134|1|14|15205.26|0.01|0.05|N|O|1995-07-25|1995-08-17|1995-07-26|NONE|REG AIR|ely. slyly pending in| +77678|592203|42204|2|18|23313.24|0.06|0.03|N|O|1995-06-29|1995-08-06|1995-07-21|DELIVER IN PERSON|MAIL|s deposits. bravely final depend| +77678|150991|13495|3|17|34713.83|0.06|0.01|N|F|1995-06-13|1995-08-07|1995-06-25|TAKE BACK RETURN|REG AIR|quests-- unusual packages boost bl| +77678|697854|10368|4|15|27777.30|0.02|0.07|N|O|1995-09-22|1995-07-13|1995-09-23|TAKE BACK RETURN|RAIL|uffily unusual asymptotes sleep | +77678|817935|42968|5|28|51880.92|0.08|0.04|N|F|1995-06-05|1995-08-05|1995-06-27|COLLECT COD|FOB|the slyly final acc| +77678|17722|30223|6|47|77066.84|0.03|0.04|N|F|1995-06-17|1995-08-18|1995-06-28|DELIVER IN PERSON|RAIL|s. pinto beans sleep boldly amon| +77678|846539|34088|7|3|4456.47|0.00|0.08|R|F|1995-05-29|1995-08-25|1995-06-02|TAKE BACK RETURN|TRUCK|ward the bold deposits.| +77679|769656|19657|1|17|29335.54|0.05|0.06|R|F|1993-12-24|1993-12-30|1994-01-12|COLLECT COD|RAIL|ly regular deposits across | +77679|603291|3292|2|36|42993.36|0.05|0.08|R|F|1993-12-03|1993-12-02|1993-12-30|DELIVER IN PERSON|REG AIR|y until the| +77679|505984|18495|3|8|15919.68|0.03|0.01|R|F|1994-01-28|1994-01-14|1994-02-11|NONE|AIR|. slyly regular| +77704|740458|40459|1|21|31466.82|0.05|0.01|N|O|1995-07-10|1995-06-01|1995-08-01|TAKE BACK RETURN|SHIP| blithely even packages. blith| +77704|863470|25988|2|3|4300.29|0.00|0.05|A|F|1995-03-20|1995-06-15|1995-04-03|NONE|REG AIR|sts are carefully foxes. furiously express| +77705|198917|23924|1|42|84668.22|0.07|0.01|A|F|1995-03-11|1995-05-14|1995-04-07|TAKE BACK RETURN|SHIP|are furiously ironic packages. exp| +77705|195354|45355|2|20|28987.00|0.10|0.08|R|F|1995-04-17|1995-04-02|1995-05-04|TAKE BACK RETURN|RAIL|deas use. quickly regular| +77705|302208|2209|3|6|7261.14|0.00|0.04|R|F|1995-03-22|1995-05-25|1995-04-06|TAKE BACK RETURN|REG AIR| slyly regular de| +77705|203987|3988|4|41|77529.77|0.08|0.07|A|F|1995-06-13|1995-05-26|1995-06-17|DELIVER IN PERSON|SHIP|ptotes sleep thinly. b| +77706|945968|21005|1|14|28194.88|0.08|0.01|N|O|1996-11-21|1996-11-21|1996-12-05|DELIVER IN PERSON|RAIL|tions integra| +77706|870812|20813|2|14|24958.78|0.02|0.01|N|O|1996-12-12|1996-10-29|1996-12-23|TAKE BACK RETURN|RAIL|osits affix | +77707|409898|22407|1|3|5423.61|0.07|0.05|N|O|1997-09-01|1997-10-08|1997-09-28|DELIVER IN PERSON|TRUCK|tealthily regular packages are agains| +77707|140496|2999|2|9|13828.41|0.07|0.06|N|O|1997-08-21|1997-09-07|1997-08-22|TAKE BACK RETURN|REG AIR|ts. final, silent patt| +77707|307910|7911|3|50|95895.00|0.00|0.08|N|O|1997-09-15|1997-08-30|1997-10-14|DELIVER IN PERSON|REG AIR|ing to the even deposits. | +77707|39467|1968|4|19|26722.74|0.05|0.06|N|O|1997-10-31|1997-08-28|1997-11-18|NONE|SHIP|ess pinto beans wake fluffily iro| +77707|315412|40425|5|6|8564.40|0.05|0.02|N|O|1997-09-30|1997-08-10|1997-10-29|TAKE BACK RETURN|MAIL|silent reque| +77708|919829|44866|1|17|31429.26|0.00|0.00|A|F|1992-02-20|1992-03-14|1992-03-12|NONE|MAIL|ular ideas | +77708|556115|18627|2|19|22250.71|0.02|0.04|R|F|1992-01-22|1992-02-12|1992-02-07|TAKE BACK RETURN|RAIL|haggle doggedly at the slyly regular pa| +77708|609643|22156|3|2|3105.22|0.09|0.06|A|F|1992-02-06|1992-03-12|1992-02-22|NONE|SHIP|y pending d| +77708|262717|233|4|2|3359.40|0.07|0.00|R|F|1992-03-11|1992-04-02|1992-04-08|TAKE BACK RETURN|MAIL| blithely | +77708|473363|23364|5|50|66817.00|0.08|0.07|R|F|1992-04-03|1992-03-18|1992-04-08|TAKE BACK RETURN|REG AIR|s until the sly, final ac| +77709|327393|27394|1|45|63917.10|0.03|0.01|N|O|1996-07-22|1996-05-19|1996-08-08|TAKE BACK RETURN|AIR|e. furiously even f| +77709|489607|39608|2|29|46300.82|0.03|0.07|N|O|1996-06-13|1996-06-05|1996-06-30|DELIVER IN PERSON|TRUCK|al, final requests. furiously ironic p| +77709|819457|19458|3|7|9634.87|0.05|0.00|N|O|1996-07-16|1996-06-24|1996-08-04|COLLECT COD|REG AIR|riously alongside of the blithel| +77709|613299|836|4|9|10910.34|0.09|0.05|N|O|1996-07-18|1996-05-19|1996-08-14|TAKE BACK RETURN|AIR|ests by the quickly even accounts wake fl| +77709|711940|11941|5|43|83932.13|0.10|0.07|N|O|1996-06-08|1996-06-22|1996-06-22|TAKE BACK RETURN|REG AIR|ep slyly. express requests c| +77709|572312|22313|6|3|4152.87|0.09|0.07|N|O|1996-04-21|1996-05-25|1996-05-02|NONE|SHIP|s. unusual, pending requests boost carefu| +77710|396700|21715|1|8|14373.52|0.05|0.01|R|F|1993-10-17|1993-12-13|1993-11-16|NONE|SHIP|fully final theodolites. unus| +77710|323504|11023|2|45|68737.05|0.08|0.06|A|F|1994-01-01|1993-11-07|1994-01-29|TAKE BACK RETURN|TRUCK|lithely pending accounts w| +77710|116532|16533|3|23|35616.19|0.07|0.08|R|F|1993-10-23|1993-12-15|1993-11-20|TAKE BACK RETURN|FOB| final accounts. bold deposits | +77711|175478|12988|1|42|65245.74|0.08|0.05|A|F|1994-11-07|1994-09-01|1994-12-02|COLLECT COD|SHIP|aggle final acc| +77736|582075|44587|1|14|16198.70|0.00|0.00|R|F|1992-08-20|1992-08-22|1992-08-22|COLLECT COD|FOB|. fluffily| +77736|929150|41669|2|30|35373.30|0.01|0.06|R|F|1992-06-16|1992-08-23|1992-06-26|NONE|RAIL|ts affix furiously unusual | +77736|217902|42911|3|27|49137.03|0.03|0.03|R|F|1992-09-12|1992-07-27|1992-10-10|COLLECT COD|FOB| furiously final courts. bold, pending not| +77737|362263|12264|1|40|53010.00|0.03|0.03|R|F|1994-05-25|1994-07-10|1994-05-28|DELIVER IN PERSON|SHIP|sy theodolites acros| +77737|548877|36408|2|48|92440.80|0.08|0.07|A|F|1994-07-23|1994-06-20|1994-08-08|TAKE BACK RETURN|RAIL|nding deposits. furiously regular theodolit| +77737|970756|33276|3|36|65761.56|0.00|0.05|A|F|1994-05-29|1994-07-21|1994-06-03|COLLECT COD|RAIL|ironic waters are ironic inst| +77737|493367|30895|4|39|53053.26|0.05|0.00|R|F|1994-06-09|1994-07-25|1994-06-10|NONE|MAIL| attainments maintain quickly quickl| +77737|13218|719|5|8|9049.68|0.06|0.05|R|F|1994-06-08|1994-08-12|1994-06-14|NONE|AIR|riously even | +77737|142914|30421|6|23|45008.93|0.00|0.08|R|F|1994-07-26|1994-07-09|1994-08-09|COLLECT COD|TRUCK|ial foxes. blithely express requests | +77738|927073|27074|1|37|40701.11|0.05|0.04|N|O|1997-02-07|1997-04-12|1997-02-08|COLLECT COD|SHIP|ular deposits cajole furiously accord| +77738|314103|14104|2|33|36863.97|0.00|0.02|N|O|1997-03-30|1997-04-06|1997-04-03|TAKE BACK RETURN|RAIL|ording to the express theodolites. ironic| +77738|121053|46058|3|43|46184.15|0.06|0.03|N|O|1997-02-06|1997-03-01|1997-02-12|NONE|SHIP|ctions nag furiously carefully iro| +77739|427867|27868|1|6|10769.04|0.05|0.02|R|F|1993-03-02|1993-02-07|1993-03-22|DELIVER IN PERSON|AIR|ly regular packag| +77740|687308|24848|1|27|34972.29|0.06|0.01|N|O|1995-11-16|1995-10-15|1995-12-02|COLLECT COD|TRUCK|across the furious requests. fi| +77740|578392|15926|2|19|27937.03|0.07|0.05|N|O|1995-09-05|1995-10-31|1995-09-09|COLLECT COD|REG AIR|ss, ironic accounts | +77741|144452|19457|1|28|41900.60|0.02|0.01|A|F|1992-10-23|1992-09-13|1992-11-13|TAKE BACK RETURN|AIR|unts unwind furiously carefully specia| +77741|788174|690|2|26|32815.64|0.00|0.06|A|F|1992-11-25|1992-10-28|1992-12-20|DELIVER IN PERSON|RAIL|ent ideas are quickly | +77741|837844|361|3|19|33854.20|0.00|0.08|A|F|1992-10-25|1992-09-27|1992-11-15|TAKE BACK RETURN|MAIL|ully final | +77741|630634|30635|4|4|6258.40|0.09|0.06|R|F|1992-08-22|1992-10-12|1992-08-29|DELIVER IN PERSON|TRUCK| boost blithely. express, final foxes cajo| +77741|49671|37172|5|39|63206.13|0.06|0.06|R|F|1992-08-25|1992-10-11|1992-09-01|NONE|MAIL|even, unusual foxes sleep e| +77741|808920|46469|6|26|47550.88|0.08|0.06|A|F|1992-10-15|1992-10-23|1992-10-17|NONE|REG AIR|thy accounts. s| +77742|61819|49323|1|36|64109.16|0.09|0.01|A|F|1993-12-05|1993-11-07|1993-12-12|DELIVER IN PERSON|REG AIR|l ideas are afte| +77742|987421|12460|2|1|1508.38|0.10|0.03|R|F|1993-12-27|1993-11-29|1994-01-06|TAKE BACK RETURN|RAIL|slyly regular dolphins according t| +77742|576677|39189|3|22|38580.30|0.06|0.04|R|F|1993-12-08|1993-11-22|1993-12-22|COLLECT COD|AIR|ajole carefully unusua| +77742|200485|12990|4|26|36022.22|0.08|0.03|A|F|1993-12-26|1993-12-15|1993-12-28|DELIVER IN PERSON|REG AIR|s above the | +77743|617839|5376|1|19|33379.20|0.10|0.06|R|F|1993-08-19|1993-06-20|1993-08-27|DELIVER IN PERSON|RAIL|ays according to the even instructions| +77743|11410|23911|2|16|21142.56|0.06|0.05|A|F|1993-05-08|1993-07-08|1993-05-28|COLLECT COD|SHIP|to beans. ironic, regular excuses | +77743|757364|7365|3|24|34111.92|0.09|0.04|A|F|1993-04-30|1993-07-01|1993-05-08|DELIVER IN PERSON|SHIP|egular acco| +77743|13150|38151|4|23|24452.45|0.07|0.08|A|F|1993-05-04|1993-06-21|1993-05-15|NONE|TRUCK|k orbits are slyly expre| +77768|680022|5049|1|49|49097.51|0.08|0.00|A|F|1994-05-09|1994-06-22|1994-05-25|NONE|SHIP|press accounts doze bol| +77768|123770|48775|2|29|52019.33|0.06|0.00|A|F|1994-05-06|1994-06-09|1994-06-04|DELIVER IN PERSON|MAIL|its are about the slyly regular deposi| +77769|555644|18156|1|9|15296.58|0.06|0.01|N|O|1996-02-03|1996-02-14|1996-02-22|NONE|REG AIR| carefully regular packages. even packages| +77769|699195|36735|2|8|9553.28|0.04|0.06|N|O|1996-03-05|1996-03-17|1996-04-01|COLLECT COD|RAIL|s sleep furiously along the r| +77769|364116|1638|3|38|44843.80|0.02|0.02|N|O|1996-05-03|1996-04-03|1996-05-11|COLLECT COD|AIR|lphins. deposits cajole b| +77769|683192|20732|4|47|55232.52|0.09|0.02|N|O|1996-01-10|1996-02-11|1996-02-06|TAKE BACK RETURN|TRUCK|hely even accounts after the carefull| +77769|391902|16917|5|18|35890.02|0.02|0.00|N|O|1996-01-19|1996-02-07|1996-02-05|DELIVER IN PERSON|RAIL|nic accounts. careful| +77770|473081|23082|1|17|17919.02|0.04|0.03|A|F|1994-09-02|1994-09-17|1994-10-02|TAKE BACK RETURN|RAIL|sits. slyly bold dependencies a| +77771|804793|42342|1|32|54328.00|0.01|0.01|A|F|1994-05-16|1994-06-20|1994-05-21|COLLECT COD|RAIL|structions. express instruction| +77771|143142|5645|2|30|35554.20|0.06|0.07|A|F|1994-08-09|1994-06-18|1994-09-07|COLLECT COD|FOB|thogs sleep quickly a| +77772|219525|7038|1|9|13000.59|0.08|0.08|R|F|1992-11-30|1992-09-24|1992-12-22|COLLECT COD|FOB|l warthogs haggle blithel| +77772|546747|9258|2|43|77129.96|0.07|0.08|A|F|1992-11-22|1992-10-18|1992-12-12|NONE|RAIL| doubt quickly about the slyly pendin| +77772|166878|4388|3|25|48621.75|0.03|0.08|R|F|1992-11-08|1992-10-22|1992-11-16|DELIVER IN PERSON|SHIP| packages detect slyly final excuses. bo| +77773|915439|2994|1|45|65447.55|0.00|0.05|R|F|1995-03-03|1995-02-22|1995-03-16|DELIVER IN PERSON|MAIL|eodolites. pinto beans caj| +77773|779960|29961|2|13|26519.09|0.09|0.07|R|F|1995-03-22|1995-02-09|1995-03-25|DELIVER IN PERSON|REG AIR|s about the | +77773|785941|48457|3|35|70941.85|0.04|0.01|A|F|1995-01-29|1995-02-01|1995-01-31|DELIVER IN PERSON|MAIL|efully; blithely silent packages are fl| +77774|936606|36607|1|18|29566.08|0.08|0.08|R|F|1992-08-09|1992-05-28|1992-08-15|DELIVER IN PERSON|MAIL|ke around the final deposits. slyly pending| +77774|524335|24336|2|3|4077.93|0.05|0.01|R|F|1992-07-05|1992-06-21|1992-07-17|TAKE BACK RETURN|FOB|se doggedly slyly even in| +77774|489345|26873|3|40|53372.80|0.03|0.04|R|F|1992-05-23|1992-07-02|1992-06-06|DELIVER IN PERSON|TRUCK|lithely expr| +77774|409416|21925|4|46|60967.94|0.03|0.00|A|F|1992-07-04|1992-06-03|1992-07-07|NONE|FOB|are blithely. slyly even ideas integra| +77774|42747|42748|5|3|5069.22|0.08|0.04|R|F|1992-08-01|1992-06-29|1992-08-28|DELIVER IN PERSON|RAIL|ic foxes haggle carefully furiousl| +77774|446963|46964|6|29|55388.26|0.00|0.06|R|F|1992-04-23|1992-06-16|1992-05-04|TAKE BACK RETURN|FOB|foxes across the | +77774|102725|40232|7|11|19004.92|0.09|0.00|A|F|1992-07-07|1992-06-23|1992-08-01|COLLECT COD|FOB|p blithely above t| +77775|490164|15183|1|27|31161.78|0.08|0.01|N|O|1995-12-08|1995-10-30|1995-12-21|DELIVER IN PERSON|REG AIR| quickly final ideas haggle accord| +77775|179592|42096|2|38|63520.42|0.10|0.01|N|O|1995-11-30|1995-09-22|1995-12-30|COLLECT COD|AIR|yly bold accounts sleep | +77775|387936|12951|3|5|10119.60|0.10|0.04|N|O|1995-09-24|1995-09-28|1995-09-26|NONE|FOB|ly. slyly regular packages unwi| +77775|31547|19048|4|18|26613.72|0.04|0.02|N|O|1995-12-10|1995-11-09|1995-12-22|DELIVER IN PERSON|TRUCK|quests nag quick| +77775|205189|42702|5|12|13130.04|0.03|0.06|N|O|1995-09-11|1995-09-27|1995-09-24|COLLECT COD|TRUCK| pinto bean| +77775|600934|13447|6|17|31193.30|0.07|0.00|N|O|1995-09-18|1995-11-05|1995-09-19|COLLECT COD|TRUCK|jole. quickly regular platelets are caref| +77775|890609|15644|7|39|62382.84|0.10|0.04|N|O|1995-09-29|1995-10-25|1995-10-13|COLLECT COD|FOB|slyly pending dep| +77800|461336|36355|1|10|12973.10|0.00|0.05|A|F|1994-09-23|1994-09-26|1994-10-05|DELIVER IN PERSON|RAIL|efully regular instructions. pendin| +77800|667424|42451|2|5|6956.95|0.02|0.00|R|F|1994-09-18|1994-09-26|1994-09-23|COLLECT COD|REG AIR|blithely regular accounts. | +77800|380106|5121|3|43|51001.87|0.01|0.06|A|F|1994-09-09|1994-10-10|1994-09-25|DELIVER IN PERSON|SHIP|gular accounts haggle at| +77801|591122|16145|1|5|6065.50|0.00|0.06|A|F|1993-04-23|1993-06-17|1993-05-09|TAKE BACK RETURN|REG AIR|gular pinto beans integrate quickly. ironi| +77801|983867|46387|2|39|76081.98|0.09|0.05|A|F|1993-05-22|1993-05-24|1993-05-31|NONE|FOB|ades. never r| +77801|844833|19866|3|18|32000.22|0.03|0.00|R|F|1993-06-26|1993-05-27|1993-07-20|TAKE BACK RETURN|TRUCK|bold asympto| +77801|96078|46079|4|15|16111.05|0.08|0.05|R|F|1993-08-20|1993-06-13|1993-09-15|TAKE BACK RETURN|SHIP|jole blithely. regular dep| +77801|767342|29858|5|41|57781.71|0.01|0.06|R|F|1993-07-04|1993-07-15|1993-08-02|NONE|TRUCK|r requests aft| +77801|708584|21099|6|47|74849.85|0.07|0.06|R|F|1993-05-03|1993-06-14|1993-05-14|NONE|MAIL|le carefully s| +77802|299966|49967|1|28|55046.60|0.05|0.01|A|F|1993-02-15|1993-01-05|1993-02-16|DELIVER IN PERSON|TRUCK|fluffily bold accou| +77803|625894|13431|1|48|87353.28|0.00|0.02|N|O|1995-08-11|1995-08-08|1995-08-13|TAKE BACK RETURN|RAIL|c instructions are furiously quick| +77803|385567|10582|2|14|23135.70|0.06|0.00|N|O|1995-08-13|1995-08-07|1995-08-15|TAKE BACK RETURN|FOB| packages. unusual foxes| +77804|109938|34943|1|39|75969.27|0.08|0.07|N|O|1996-07-14|1996-07-15|1996-08-08|NONE|FOB|ackages. courts haggle sly| +77804|721414|46443|2|34|48802.92|0.01|0.05|N|O|1996-07-15|1996-08-10|1996-07-28|COLLECT COD|RAIL|lar excuses cajole carefully bold p| +77804|803246|3247|3|27|31028.40|0.03|0.01|N|O|1996-07-21|1996-06-21|1996-08-02|DELIVER IN PERSON|SHIP|ctions dazzle quickly beneath the blithely | +77804|144875|19880|4|43|82554.41|0.07|0.07|N|O|1996-08-05|1996-06-24|1996-08-17|DELIVER IN PERSON|REG AIR|slyly express excuses integrate. fu| +77805|747278|22307|1|48|63611.52|0.10|0.04|A|F|1994-05-20|1994-07-15|1994-05-21|NONE|RAIL|dolites wake quickly. slyly special p| +77805|490963|15982|2|39|76203.66|0.08|0.07|R|F|1994-06-05|1994-07-14|1994-06-25|COLLECT COD|FOB| after the unusual deposits| +77805|602770|15283|3|47|78618.78|0.02|0.07|R|F|1994-08-14|1994-08-15|1994-09-01|TAKE BACK RETURN|TRUCK|ent sauternes. blithely regular foxes eat| +77805|742212|29755|4|7|8779.26|0.00|0.02|R|F|1994-05-27|1994-08-15|1994-06-21|NONE|MAIL|long the carefull| +77806|608183|45720|1|4|4364.60|0.01|0.05|N|O|1995-12-28|1996-01-27|1996-01-02|NONE|REG AIR| platelets wake b| +77806|717587|17588|2|9|14440.95|0.08|0.07|N|O|1996-02-06|1995-12-30|1996-02-08|DELIVER IN PERSON|AIR|nusual packages across the furio| +77806|478348|40858|3|10|13263.20|0.02|0.06|N|O|1995-12-30|1996-02-04|1996-01-23|NONE|RAIL|ckages are slyly according to the | +77806|590277|27811|4|48|65628.00|0.03|0.02|N|O|1995-12-24|1996-01-06|1995-12-29|TAKE BACK RETURN|TRUCK|ffily. fin| +77806|778005|28006|5|29|31406.13|0.08|0.01|N|O|1995-12-25|1996-02-08|1996-01-15|DELIVER IN PERSON|FOB|tructions nag f| +77806|922516|10071|6|32|49231.04|0.07|0.04|N|O|1995-12-16|1996-01-28|1996-01-01|NONE|SHIP|furiously bold deposits. f| +77806|718812|31327|7|15|27461.70|0.05|0.05|N|O|1996-03-07|1995-12-28|1996-03-12|TAKE BACK RETURN|TRUCK|ect carefully for the deposits| +77807|70684|45687|1|45|74460.60|0.07|0.01|N|O|1996-12-07|1996-12-01|1997-01-06|DELIVER IN PERSON|SHIP|odolites wake around the pack| +77807|978474|3513|2|24|37258.32|0.04|0.05|N|O|1996-11-14|1996-12-22|1996-11-28|DELIVER IN PERSON|TRUCK|furiously iro| +77807|210288|47801|3|44|52723.88|0.03|0.04|N|O|1996-12-04|1996-12-08|1996-12-22|NONE|AIR|ickly? carefully regular theodolit| +77832|752347|14863|1|38|53173.78|0.06|0.03|R|F|1993-07-05|1993-08-01|1993-07-06|DELIVER IN PERSON|REG AIR|y above the quickly special accounts. ir| +77832|679450|16990|2|10|14294.20|0.05|0.07|A|F|1993-10-06|1993-09-04|1993-10-30|DELIVER IN PERSON|RAIL|y regular instructions. blit| +77832|513764|26275|3|34|60443.16|0.06|0.00|R|F|1993-07-04|1993-07-25|1993-07-25|TAKE BACK RETURN|MAIL|lar packages. packages about the | +77833|987888|12927|1|14|27661.76|0.00|0.05|N|O|1997-10-02|1997-12-04|1997-10-16|COLLECT COD|AIR|to beans. furiously bold ex| +77833|424350|11875|2|28|35681.24|0.10|0.04|N|O|1997-11-25|1997-11-01|1997-12-15|COLLECT COD|MAIL|olphins boos| +77833|34488|21989|3|3|4267.44|0.09|0.04|N|O|1997-10-14|1997-11-18|1997-10-27|DELIVER IN PERSON|RAIL|ironic ideas. final theodolites | +77833|628092|40605|4|41|41822.46|0.07|0.06|N|O|1997-10-23|1997-11-13|1997-11-10|NONE|AIR|ideas cajole furiously pi| +77834|683070|8097|1|50|52652.00|0.10|0.06|N|O|1996-03-20|1996-02-27|1996-04-10|NONE|AIR|nd the quickly even in| +77834|343992|31511|2|45|91619.10|0.01|0.01|N|O|1996-02-04|1996-01-13|1996-02-14|DELIVER IN PERSON|SHIP|sleep furi| +77835|339583|39584|1|14|22715.98|0.01|0.06|N|O|1998-06-27|1998-07-14|1998-07-09|DELIVER IN PERSON|FOB|the special pinto be| +77835|359270|21778|2|42|55828.92|0.01|0.05|N|O|1998-05-01|1998-06-27|1998-05-04|DELIVER IN PERSON|AIR|e slyly even dugouts; ironic request| +77835|242862|42863|3|47|84827.95|0.08|0.07|N|O|1998-05-15|1998-06-16|1998-06-12|COLLECT COD|SHIP|icing dependencies. carefully | +77835|769179|44210|4|50|62407.00|0.01|0.07|N|O|1998-06-28|1998-06-16|1998-06-29|DELIVER IN PERSON|TRUCK| slyly even dependen| +77835|583180|8203|5|26|32842.16|0.01|0.07|N|O|1998-06-20|1998-07-02|1998-07-04|DELIVER IN PERSON|MAIL|y regular d| +77836|70475|32977|1|38|54927.86|0.10|0.07|N|O|1998-03-28|1998-05-08|1998-04-21|COLLECT COD|AIR|efully special courts integrate quickly u| +77836|471799|46818|2|44|77913.88|0.00|0.08|N|O|1998-04-30|1998-05-19|1998-05-19|COLLECT COD|TRUCK|re carefully ironic requests. slyly | +77836|520470|20471|3|8|11923.60|0.05|0.08|N|O|1998-05-19|1998-05-28|1998-05-21|COLLECT COD|AIR|ver the bli| +77836|534769|9790|4|33|59523.42|0.05|0.00|N|O|1998-06-08|1998-05-23|1998-06-22|TAKE BACK RETURN|TRUCK|latelets. fluffily final ideas haggl| +77836|850535|25570|5|40|59419.60|0.01|0.07|N|O|1998-06-26|1998-05-05|1998-07-08|NONE|RAIL|ckages cajole furi| +77836|940245|27800|6|28|35985.60|0.04|0.07|N|O|1998-05-01|1998-06-11|1998-05-21|COLLECT COD|REG AIR|lar dependenc| +77836|692271|17298|7|21|26528.04|0.00|0.04|N|O|1998-03-30|1998-06-09|1998-04-22|COLLECT COD|REG AIR|integrate | +77837|988650|38651|1|22|38249.42|0.04|0.04|R|F|1993-06-10|1993-07-04|1993-06-27|COLLECT COD|TRUCK|ic accounts haggl| +77837|233275|8284|2|4|4833.04|0.07|0.06|A|F|1993-07-09|1993-07-13|1993-08-01|COLLECT COD|TRUCK|nic dolphins. regular requests wake fluff| +77837|645461|32998|3|39|54850.77|0.08|0.06|R|F|1993-08-17|1993-05-30|1993-08-23|NONE|RAIL|s haggle slyly even, regular instructions.| +77837|255794|18300|4|46|80489.88|0.09|0.02|R|F|1993-07-12|1993-07-22|1993-08-08|COLLECT COD|MAIL|rthogs lose asymptotes. special excuses bel| +77837|117534|17535|5|13|20169.89|0.01|0.05|R|F|1993-06-23|1993-07-15|1993-06-24|COLLECT COD|TRUCK|ously after the bold, even asymptotes.| +77838|642617|42618|1|47|73300.26|0.01|0.08|A|F|1993-02-06|1993-03-26|1993-02-09|NONE|RAIL|egular requests use blit| +77838|457613|45141|2|25|39264.75|0.08|0.05|R|F|1993-04-27|1993-03-13|1993-04-30|COLLECT COD|AIR|y bold theodolites. furiously| +77838|95562|8064|3|32|49841.92|0.08|0.08|R|F|1993-02-12|1993-02-18|1993-02-22|TAKE BACK RETURN|FOB|ages are slyly even ideas. qui| +77838|106212|31217|4|11|13400.31|0.06|0.08|A|F|1993-03-18|1993-03-15|1993-03-29|NONE|MAIL|y even ideas. quickly| +77838|99957|24960|5|4|7827.80|0.03|0.05|A|F|1993-05-13|1993-03-31|1993-05-30|TAKE BACK RETURN|REG AIR| packages. requests haggle quickly. acc| +77838|974389|11947|6|28|40973.52|0.08|0.00|A|F|1993-04-25|1993-03-27|1993-05-02|TAKE BACK RETURN|SHIP|gular packages | +77838|544972|7483|7|37|74627.15|0.10|0.07|R|F|1993-03-03|1993-03-11|1993-03-21|NONE|RAIL|rts haggle slyly. blithely pending asymptot| +77839|334840|22359|1|40|74993.20|0.10|0.04|R|F|1995-02-13|1995-04-03|1995-02-14|DELIVER IN PERSON|REG AIR|ckages. unusual depende| +77839|649264|36801|2|48|58235.04|0.01|0.07|R|F|1995-04-23|1995-04-01|1995-05-07|DELIVER IN PERSON|MAIL|ckages haggle. regular, ironic account| +77839|178181|15691|3|18|22665.24|0.00|0.02|A|F|1995-01-26|1995-02-06|1995-02-04|NONE|MAIL|y final requests after the silently iro| +77839|683687|8714|4|48|80191.20|0.03|0.05|A|F|1995-01-29|1995-04-07|1995-02-14|NONE|MAIL| furiously even deposits cajole slyly spec| +77839|719566|44595|5|40|63421.20|0.02|0.00|R|F|1995-03-27|1995-02-09|1995-03-29|DELIVER IN PERSON|TRUCK|furiously final dependencies | +77864|63254|38257|1|4|4869.00|0.10|0.01|N|O|1996-04-29|1996-04-07|1996-05-24|DELIVER IN PERSON|SHIP|sts affix quiet| +77864|103439|15942|2|5|7212.15|0.10|0.06|N|O|1996-03-06|1996-03-14|1996-03-26|COLLECT COD|RAIL|daringly sly| +77864|486306|36307|3|38|49106.64|0.04|0.05|N|O|1996-05-14|1996-03-21|1996-06-10|COLLECT COD|RAIL|sleep across the blithely | +77864|328191|40698|4|25|30479.50|0.01|0.00|N|O|1996-04-25|1996-03-31|1996-05-15|COLLECT COD|FOB|aring asymptotes wake a| +77865|957350|44908|1|19|26738.89|0.05|0.05|A|F|1993-09-09|1993-10-01|1993-10-03|COLLECT COD|TRUCK|iously final pinto beans. ruthle| +77866|489959|2469|1|48|93548.64|0.01|0.04|N|O|1996-12-14|1996-12-12|1996-12-26|TAKE BACK RETURN|SHIP|thely pending excuses use blithely fi| +77866|736764|11793|2|11|19808.03|0.01|0.00|N|O|1996-12-02|1996-12-19|1996-12-19|COLLECT COD|REG AIR|ithely express excuses are qu| +77867|487619|25147|1|22|35344.98|0.09|0.07|N|O|1998-01-04|1997-12-25|1998-01-23|NONE|AIR|hely unusual dolphins haggle slyly | +77867|399609|49610|2|26|44423.34|0.00|0.02|N|O|1997-12-25|1998-01-12|1998-01-11|DELIVER IN PERSON|SHIP|ess, ruthless esc| +77867|211882|11883|3|36|64579.32|0.08|0.04|N|O|1998-03-05|1997-12-07|1998-03-09|COLLECT COD|REG AIR|ng blithely at the regular requests| +77867|89316|1818|4|35|45685.85|0.05|0.00|N|O|1998-01-30|1998-01-30|1998-02-06|COLLECT COD|TRUCK|realms are blithely| +77867|124978|24979|5|50|100148.50|0.09|0.05|N|O|1998-01-11|1997-12-07|1998-02-05|COLLECT COD|REG AIR|arefully regular pinto| +77867|490429|15448|6|18|25549.20|0.01|0.00|N|O|1997-11-10|1997-12-31|1997-11-27|NONE|FOB|s maintain quickly packages. ca| +77868|285129|47635|1|16|17825.76|0.04|0.07|N|O|1998-01-19|1997-12-25|1998-02-15|NONE|REG AIR|efully regular accounts sleep ironic foxes.| +77868|157149|7150|2|46|55482.44|0.00|0.02|N|O|1998-01-12|1997-11-23|1998-01-20|TAKE BACK RETURN|AIR|eposits aro| +77869|802316|14833|1|27|32893.29|0.03|0.02|N|O|1997-06-29|1997-07-11|1997-07-18|COLLECT COD|TRUCK|posits wake blithely| +77869|522855|35366|2|10|18778.30|0.02|0.06|N|O|1997-09-18|1997-08-31|1997-09-29|COLLECT COD|FOB| sleep. final foxes cajole ab| +77869|608237|33262|3|27|30920.40|0.02|0.00|N|O|1997-07-21|1997-09-04|1997-07-26|NONE|TRUCK|quests sleep fluffily quickly pend| +77869|628694|16231|4|8|12981.28|0.01|0.00|N|O|1997-09-17|1997-07-22|1997-10-09|TAKE BACK RETURN|FOB|blithely about the sly| +77869|449955|12464|5|5|9524.65|0.05|0.03|N|O|1997-09-16|1997-09-02|1997-09-23|NONE|TRUCK|sly. special, express packages sleep| +77870|20459|32960|1|47|64834.15|0.06|0.01|A|F|1992-09-26|1992-10-21|1992-10-11|COLLECT COD|FOB|silently unusual f| +77870|852489|40041|2|8|11531.52|0.02|0.00|R|F|1993-01-08|1992-12-03|1993-01-16|NONE|FOB| dependencies. e| +77871|952827|40385|1|21|39475.38|0.01|0.05|N|O|1996-10-22|1996-12-01|1996-11-07|DELIVER IN PERSON|RAIL|ing to the| +77871|157106|32113|2|13|15120.30|0.01|0.04|N|O|1996-12-12|1996-12-12|1996-12-21|DELIVER IN PERSON|AIR| beans. busily even frays sle| +77871|464594|27104|3|4|6234.28|0.09|0.05|N|O|1996-12-23|1996-11-28|1996-12-27|DELIVER IN PERSON|RAIL|e the special Tiresias! bold requests ha| +77871|415694|3219|4|38|61167.46|0.00|0.08|N|O|1997-02-11|1996-12-01|1997-03-12|TAKE BACK RETURN|FOB| accounts would use ben| +77871|561771|49305|5|10|18327.50|0.05|0.08|N|O|1996-12-07|1996-12-29|1997-01-01|TAKE BACK RETURN|TRUCK|ions wake. slyly final instructions integra| +77871|675603|13143|6|23|36307.11|0.09|0.02|N|O|1997-01-31|1996-12-26|1997-02-26|TAKE BACK RETURN|REG AIR|ent accounts against | +77896|893822|43823|1|16|29052.48|0.08|0.05|R|F|1994-03-31|1994-04-12|1994-04-18|COLLECT COD|SHIP|gle furiously regular instructions.| +77896|458001|8002|2|46|44113.08|0.01|0.02|R|F|1994-06-27|1994-05-11|1994-06-29|DELIVER IN PERSON|AIR|ackages integrate furi| +77897|221093|33598|1|19|19267.52|0.10|0.03|N|O|1996-10-18|1996-09-20|1996-11-12|TAKE BACK RETURN|SHIP|ular ideas. slyly ironic requests| +77897|903830|16349|2|38|69684.02|0.03|0.00|N|O|1996-11-02|1996-08-28|1996-11-26|TAKE BACK RETURN|FOB|fully even pinto beans impress sly| +77897|659066|34093|3|28|28700.84|0.07|0.04|N|O|1996-11-09|1996-09-27|1996-12-04|DELIVER IN PERSON|AIR|rding to the b| +77897|909120|21639|4|12|13548.96|0.10|0.08|N|O|1996-08-30|1996-09-27|1996-09-10|COLLECT COD|TRUCK|ter the fluffily unusual requests. ex| +77897|566855|29367|5|34|65342.22|0.08|0.07|N|O|1996-11-12|1996-09-24|1996-11-30|TAKE BACK RETURN|FOB|sly even requests main| +77897|128560|16067|6|29|46068.24|0.04|0.01|N|O|1996-08-30|1996-08-31|1996-09-10|NONE|SHIP|osits wake blithely blithel| +77897|695151|32691|7|19|21776.28|0.03|0.06|N|O|1996-09-16|1996-09-05|1996-10-13|COLLECT COD|TRUCK|en theodoli| +77898|386714|36715|1|49|88234.30|0.06|0.07|N|O|1998-03-16|1998-03-28|1998-04-03|COLLECT COD|MAIL|counts cajole furiously furiously ir| +77898|495170|45171|2|12|13981.80|0.00|0.03|N|O|1998-02-18|1998-03-20|1998-03-12|COLLECT COD|TRUCK| about the c| +77898|312177|49696|3|40|47566.40|0.01|0.04|N|O|1998-02-17|1998-03-16|1998-03-07|COLLECT COD|TRUCK|p. special packages haggle furiously patter| +77899|401248|1249|1|26|29879.72|0.06|0.01|N|O|1997-07-29|1997-07-14|1997-08-10|NONE|AIR|slyly special instructions u| +77899|769600|32116|2|20|33391.40|0.10|0.01|N|O|1997-09-25|1997-08-01|1997-10-19|NONE|REG AIR|s requests. | +77899|662045|37072|3|29|29203.29|0.03|0.00|N|O|1997-08-12|1997-08-13|1997-09-11|COLLECT COD|AIR|y. dependencies about the | +77899|982355|44875|4|44|63241.64|0.05|0.00|N|O|1997-08-22|1997-07-02|1997-09-03|COLLECT COD|REG AIR|lly bold requests are about the slo| +77900|695953|20980|1|35|68212.20|0.05|0.08|A|F|1993-11-14|1993-11-30|1993-12-11|TAKE BACK RETURN|SHIP| theodolites. even, regula| +77900|872644|47679|2|40|64664.00|0.04|0.03|R|F|1993-11-02|1993-10-23|1993-11-14|NONE|FOB|ously across the quietly| +77900|519431|31942|3|48|69619.68|0.01|0.07|R|F|1993-09-29|1993-11-11|1993-10-03|COLLECT COD|AIR|ckages across th| +77900|67064|4568|4|47|48459.82|0.07|0.01|R|F|1993-09-17|1993-11-24|1993-10-11|NONE|TRUCK|s are furiously? furiously unusual deposits| +77900|135028|47531|5|38|40394.76|0.08|0.06|A|F|1994-01-05|1993-11-18|1994-01-31|DELIVER IN PERSON|SHIP|. furiously unusual id| +77900|399217|11725|6|9|11845.80|0.01|0.02|R|F|1993-11-30|1993-11-22|1993-12-09|TAKE BACK RETURN|RAIL|ly around the quickly| +77900|628230|15767|7|18|20847.60|0.03|0.04|A|F|1993-11-23|1993-12-02|1993-12-15|TAKE BACK RETURN|FOB|out the furiously ironic dep| +77901|660401|22915|1|47|63984.39|0.10|0.06|R|F|1995-01-20|1994-12-12|1995-01-21|TAKE BACK RETURN|REG AIR| carefully ironic pinto beans are amo| +77901|349473|24486|2|31|47196.26|0.09|0.01|A|F|1994-11-17|1994-12-16|1994-12-09|COLLECT COD|TRUCK|, final accounts sleep furiousl| +77901|578353|40865|3|35|50096.55|0.10|0.01|R|F|1994-11-27|1995-01-11|1994-12-02|COLLECT COD|AIR|osits. fluffily ironic excuses at t| +77901|378757|41265|4|17|31207.58|0.01|0.03|A|F|1995-02-12|1995-01-13|1995-03-12|TAKE BACK RETURN|TRUCK|fully regular ideas. blithely even excuse| +77901|752161|27192|5|45|54590.85|0.02|0.05|R|F|1995-02-17|1995-02-02|1995-03-19|NONE|FOB|egular theodolites. fluffily | +77902|164133|1643|1|44|52673.72|0.00|0.08|R|F|1994-03-02|1994-04-15|1994-03-23|COLLECT COD|TRUCK|efully according to the sometimes eve| +77902|577764|15298|2|33|60777.42|0.06|0.01|A|F|1994-03-31|1994-04-24|1994-04-17|DELIVER IN PERSON|SHIP|n escapades print c| +77902|463788|38807|3|8|14014.08|0.10|0.02|A|F|1994-04-01|1994-04-15|1994-04-07|NONE|REG AIR|ost blithely after the carefu| +77902|869110|6662|4|33|35609.31|0.02|0.04|R|F|1994-02-23|1994-04-28|1994-03-14|COLLECT COD|TRUCK|otes. regular pack| +77903|410258|22767|1|48|56075.04|0.00|0.02|R|F|1995-04-17|1995-05-05|1995-05-07|COLLECT COD|MAIL|s. furiously busy theodolites boost| +77903|191978|4482|2|24|49679.28|0.06|0.04|R|F|1995-05-08|1995-06-24|1995-05-14|COLLECT COD|REG AIR|asymptotes| +77903|561845|49379|3|42|80086.44|0.02|0.03|N|F|1995-06-01|1995-05-21|1995-06-26|COLLECT COD|RAIL|ar, regular account| +77903|919879|44916|4|20|37976.60|0.02|0.07|N|F|1995-06-10|1995-06-28|1995-07-07|DELIVER IN PERSON|RAIL|e above the slyly even requests. bold acco| +77928|616844|16845|1|41|72193.21|0.04|0.07|N|O|1996-04-24|1996-05-17|1996-05-06|NONE|REG AIR|tes. slyly special id| +77928|295897|20908|2|31|58679.28|0.10|0.02|N|O|1996-07-19|1996-07-04|1996-08-15|NONE|SHIP|ges detect blithely about the ironic, ir| +77928|138675|1178|3|3|5141.01|0.03|0.07|N|O|1996-04-14|1996-06-22|1996-04-15|NONE|FOB|ial ideas ar| +77929|70979|45982|1|41|79948.77|0.07|0.08|R|F|1994-08-05|1994-09-23|1994-08-07|TAKE BACK RETURN|REG AIR|inal pains will cajo| +77929|934671|9708|2|48|81870.24|0.02|0.05|R|F|1994-09-16|1994-08-21|1994-10-08|TAKE BACK RETURN|SHIP|ole about the blithely ironi| +77929|13848|38849|3|46|81044.64|0.08|0.01|A|F|1994-09-15|1994-09-30|1994-09-21|DELIVER IN PERSON|FOB|nst the ironic attainm| +77929|726607|26608|4|37|60442.09|0.04|0.08|A|F|1994-08-01|1994-09-01|1994-08-18|TAKE BACK RETURN|SHIP|refully even packages sublate so| +77930|649412|36949|1|7|9529.66|0.06|0.03|N|O|1998-02-22|1998-02-28|1998-03-24|COLLECT COD|FOB|dolites cajole about the slyly even pint| +77930|659837|34864|2|15|26952.00|0.09|0.06|N|O|1998-02-10|1998-02-28|1998-02-17|COLLECT COD|FOB| the asymptotes cajole whithout the notorni| +77930|869392|19393|3|30|40840.50|0.08|0.01|N|O|1997-12-23|1998-02-20|1998-01-01|COLLECT COD|SHIP|use blithely along the bold in| +77930|855576|43128|4|26|39819.78|0.06|0.00|N|O|1998-01-04|1998-02-07|1998-01-09|DELIVER IN PERSON|REG AIR|nally final theo| +77930|651982|1983|5|34|65754.30|0.05|0.04|N|O|1998-01-26|1998-02-04|1998-02-17|COLLECT COD|REG AIR|lly ironic sauternes. blithely express | +77930|847362|22395|6|12|15711.84|0.06|0.03|N|O|1998-02-25|1998-01-19|1998-03-05|DELIVER IN PERSON|MAIL|. regular depen| +77931|433750|46259|1|35|58930.55|0.09|0.03|R|F|1992-10-03|1992-12-18|1992-10-08|TAKE BACK RETURN|MAIL|otes detect carefully slyly ex| +77931|20513|45514|2|15|21502.65|0.01|0.08|R|F|1992-11-18|1992-11-01|1992-11-27|NONE|FOB|s mold furiously across the regular, blit| +77931|746221|21250|3|39|49420.41|0.08|0.06|A|F|1992-12-17|1992-12-13|1992-12-26|COLLECT COD|RAIL|osits cajole quickly by the acc| +77931|727398|2427|4|15|21380.40|0.07|0.02|A|F|1992-10-06|1992-11-26|1992-10-24|COLLECT COD|TRUCK| foxes alongside of the quickly pen| +77932|608629|46166|1|43|66116.37|0.03|0.00|A|F|1992-07-25|1992-08-18|1992-07-27|COLLECT COD|TRUCK|unts use blithely special pinto bean| +77932|212776|289|2|5|8443.80|0.04|0.00|R|F|1992-08-20|1992-09-14|1992-08-28|TAKE BACK RETURN|REG AIR| furiously careful depen| +77932|113448|13449|3|36|52611.84|0.10|0.03|A|F|1992-09-10|1992-08-16|1992-09-15|TAKE BACK RETURN|RAIL|tegrate pending courts. fluffily quiet acco| +77932|717658|17659|4|33|55295.46|0.06|0.05|R|F|1992-08-02|1992-08-02|1992-08-26|TAKE BACK RETURN|TRUCK|gle carefully sly| +77932|670946|45973|5|20|38338.20|0.04|0.08|R|F|1992-08-25|1992-08-05|1992-09-12|TAKE BACK RETURN|MAIL|ven accounts. fluffily ironic deposi| +77932|581510|6533|6|34|54110.66|0.09|0.07|A|F|1992-07-02|1992-09-02|1992-07-10|TAKE BACK RETURN|MAIL|ld theodolites are quickly reg| +77932|428212|40721|7|28|31925.32|0.06|0.01|R|F|1992-10-11|1992-08-17|1992-10-23|NONE|SHIP|the regular sauternes grow bli| +77933|946919|9438|1|29|57010.23|0.02|0.00|N|O|1996-11-13|1996-12-14|1996-11-23|DELIVER IN PERSON|TRUCK|ites. unusual pinto beans sleep d| +77933|855984|31019|2|26|50438.44|0.06|0.05|N|O|1996-12-30|1996-11-29|1997-01-11|TAKE BACK RETURN|AIR|efully even deposits. quickly final | +77933|509415|34436|3|18|25639.02|0.06|0.07|N|O|1996-11-06|1996-12-05|1996-11-12|NONE|FOB|inal packages cajole. ca| +77933|731182|43697|4|19|23049.85|0.02|0.05|N|O|1996-10-13|1996-12-10|1996-11-11|NONE|REG AIR|r deposits boost slyly| +77934|909445|34482|1|41|59630.40|0.07|0.08|A|F|1994-06-18|1994-05-15|1994-06-25|DELIVER IN PERSON|FOB|ckages cajole blithely bol| +77934|31946|19447|2|24|45070.56|0.09|0.00|A|F|1994-06-12|1994-06-12|1994-06-13|NONE|RAIL|nal courts nag quickly: blithely special| +77934|913718|26237|3|46|79656.82|0.09|0.06|A|F|1994-07-01|1994-05-06|1994-07-25|NONE|AIR|ets. blithely even | +77934|846797|46798|4|11|19181.25|0.05|0.08|A|F|1994-05-21|1994-06-12|1994-06-05|TAKE BACK RETURN|TRUCK|o beans x-ray; | +77934|104635|42142|5|43|70504.09|0.08|0.06|A|F|1994-06-11|1994-05-17|1994-07-01|TAKE BACK RETURN|FOB|lly regular dependencies. | +77934|594917|32451|6|25|50297.25|0.04|0.05|R|F|1994-04-01|1994-05-31|1994-04-20|DELIVER IN PERSON|RAIL|. slyly ironic | +77934|760316|47862|7|8|11010.24|0.05|0.06|R|F|1994-07-08|1994-05-18|1994-07-16|COLLECT COD|FOB|usual, ironic foxes about the excuses sleep| +77935|625851|38364|1|37|65742.34|0.03|0.01|N|O|1997-07-09|1997-05-25|1997-08-06|COLLECT COD|AIR|lly. special requests haggle.| +77935|662614|25128|2|18|28378.44|0.01|0.05|N|O|1997-06-19|1997-07-03|1997-07-04|COLLECT COD|TRUCK|n pinto beans. thin pinto beans| +77935|541726|16747|3|42|74243.40|0.01|0.08|N|O|1997-05-26|1997-06-20|1997-06-11|COLLECT COD|MAIL|cross the qui| +77935|772109|9655|4|6|7086.42|0.01|0.06|N|O|1997-04-17|1997-06-16|1997-05-01|COLLECT COD|SHIP| pending realms cajole| +77935|833943|21492|5|13|24399.70|0.02|0.00|N|O|1997-08-03|1997-07-03|1997-08-07|NONE|RAIL|t quickly ac| +77935|66884|16885|6|16|29614.08|0.08|0.02|N|O|1997-07-25|1997-05-20|1997-08-08|COLLECT COD|TRUCK|into beans against the care| +77960|410560|48085|1|11|16175.94|0.09|0.07|A|F|1992-11-18|1992-12-20|1992-11-21|COLLECT COD|AIR|le slyly above the regular instructions. f| +77961|183140|20650|1|20|24462.80|0.08|0.00|N|O|1998-06-17|1998-08-08|1998-06-19|COLLECT COD|REG AIR|ously bold dependencies. re| +77962|758778|8779|1|46|84490.04|0.06|0.03|N|O|1996-10-13|1996-11-24|1996-10-16|COLLECT COD|REG AIR|in place of the furiously expres| +77962|775056|25057|2|23|26013.46|0.07|0.08|N|O|1996-09-12|1996-11-04|1996-10-08|COLLECT COD|RAIL|sts? caref| +77962|349941|49942|3|18|35836.74|0.09|0.01|N|O|1996-12-29|1996-11-19|1997-01-20|DELIVER IN PERSON|MAIL|even decoys. carefully regular ideas cajo| +77963|960461|10462|1|47|71506.74|0.06|0.02|R|F|1994-06-16|1994-04-16|1994-07-14|COLLECT COD|SHIP| beans about the spe| +77963|453885|41413|2|16|29421.76|0.02|0.04|A|F|1994-05-28|1994-05-02|1994-06-23|TAKE BACK RETURN|REG AIR|sly express requests. | +77963|430317|17842|3|40|49891.60|0.02|0.06|A|F|1994-02-21|1994-03-29|1994-02-24|NONE|SHIP|deposits ha| +77963|323431|48444|4|26|37814.92|0.07|0.03|R|F|1994-03-07|1994-05-14|1994-03-22|TAKE BACK RETURN|FOB|ld packages lo| +77964|924340|36859|1|47|64122.10|0.04|0.02|A|F|1993-06-27|1993-06-24|1993-07-18|COLLECT COD|AIR|odolites must wake slyly quickly si| +77964|371046|8568|2|48|53617.44|0.03|0.00|R|F|1993-07-27|1993-07-18|1993-08-06|NONE|REG AIR|nusual ideas. express packages cajole| +77964|158694|46204|3|48|84129.12|0.01|0.08|A|F|1993-08-30|1993-07-07|1993-09-15|NONE|TRUCK|uests haggle careful| +77965|887749|12784|1|5|8683.50|0.07|0.07|N|O|1997-10-06|1997-09-10|1997-10-14|TAKE BACK RETURN|FOB|egrate slyly. furiously ironic deposits s| +77966|372600|35108|1|34|56868.06|0.07|0.05|R|F|1993-08-17|1993-07-21|1993-09-04|NONE|RAIL|al, regular pinto beans are s| +77966|276806|14322|2|12|21393.48|0.01|0.05|A|F|1993-06-26|1993-06-09|1993-07-16|DELIVER IN PERSON|SHIP| bold multipliers cajole across | +77966|275191|37697|3|50|58309.00|0.04|0.06|A|F|1993-07-20|1993-07-19|1993-08-14|COLLECT COD|SHIP| fluffily unusual Tiresi| +77967|403452|3453|1|50|67771.50|0.08|0.02|N|O|1996-11-06|1996-12-06|1996-11-14|NONE|REG AIR|usly ironic asymptotes impress around | +77967|802532|15049|2|8|11475.92|0.10|0.02|N|O|1997-01-06|1996-12-23|1997-01-31|COLLECT COD|SHIP|l packages sleep a| +77967|141048|3551|3|45|49006.80|0.05|0.06|N|O|1996-10-11|1996-12-17|1996-10-13|COLLECT COD|SHIP|boost. fluffily bo| +77967|579998|42510|4|31|64417.07|0.10|0.00|N|O|1996-11-17|1996-12-20|1996-12-10|NONE|FOB|ully final excuses cajole | +77967|13987|38988|5|48|91247.04|0.07|0.08|N|O|1996-10-13|1996-11-16|1996-10-30|COLLECT COD|FOB| sleep slyly. furiously iro| +77967|75144|12648|6|1|1119.14|0.07|0.06|N|O|1997-01-15|1996-12-04|1997-02-08|TAKE BACK RETURN|MAIL|lites cajole fluffily after the express| +77967|939854|2373|7|2|3787.62|0.10|0.07|N|O|1997-01-09|1996-11-15|1997-01-11|TAKE BACK RETURN|TRUCK| bold requests w| +77992|116626|29129|1|9|14783.58|0.04|0.03|R|F|1992-12-06|1993-02-26|1992-12-11|COLLECT COD|REG AIR|y at the carefully| +77992|122892|10399|2|36|68936.04|0.10|0.00|A|F|1993-02-26|1993-01-28|1993-03-17|TAKE BACK RETURN|SHIP| against the careful| +77992|442015|42016|3|35|33494.65|0.01|0.00|R|F|1993-01-10|1993-01-16|1993-02-01|TAKE BACK RETURN|SHIP|atelets cajole ca| +77993|491576|29104|1|40|62702.00|0.10|0.08|N|O|1996-10-04|1996-11-09|1996-10-27|COLLECT COD|AIR|ar dependencies integrate furiously. sly| +77993|916101|41138|2|28|31277.68|0.04|0.07|N|O|1996-09-03|1996-10-04|1996-09-21|COLLECT COD|FOB|blithely regular foxes slee| +77993|898680|48681|3|14|23500.96|0.04|0.00|N|O|1996-11-26|1996-11-14|1996-12-21|COLLECT COD|AIR|lent pinto beans alon| +77993|101574|1575|4|49|77202.93|0.03|0.00|N|O|1996-08-28|1996-10-11|1996-09-14|DELIVER IN PERSON|SHIP|e blithely across the slyly express sent| +77993|145148|20153|5|23|27442.22|0.05|0.00|N|O|1996-12-08|1996-10-09|1996-12-14|TAKE BACK RETURN|RAIL|sts cajole furiou| +77994|560362|22874|1|41|58315.94|0.03|0.02|N|O|1998-09-10|1998-07-10|1998-09-21|TAKE BACK RETURN|MAIL|blithely bold instructi| +77994|999702|49703|2|36|64859.76|0.00|0.03|N|O|1998-06-22|1998-08-10|1998-07-05|COLLECT COD|RAIL|ake blithely even ideas. accounts boo| +77994|977107|39627|3|7|8288.42|0.10|0.08|N|O|1998-06-30|1998-07-21|1998-07-19|NONE|RAIL|sauternes cajole| +77994|231410|43915|4|19|25486.60|0.00|0.05|N|O|1998-09-26|1998-08-15|1998-10-03|NONE|MAIL|st before the express theodolites.| +77994|304664|17171|5|35|58402.75|0.07|0.00|N|O|1998-07-09|1998-08-04|1998-07-11|DELIVER IN PERSON|REG AIR|ross the regular, final ideas are sp| +77994|473183|23184|6|35|40465.60|0.02|0.01|N|O|1998-06-15|1998-07-25|1998-07-04|NONE|TRUCK|lar deposits. blithely spe| +77995|964848|2406|1|17|32517.60|0.09|0.03|N|O|1997-03-22|1997-03-01|1997-03-27|DELIVER IN PERSON|MAIL| bold pinto beans. carefully pend| +77995|188716|1220|2|7|12632.97|0.02|0.03|N|O|1997-03-02|1997-02-18|1997-03-29|NONE|RAIL|ts cajole according | +77995|734497|22040|3|19|29097.74|0.09|0.05|N|O|1997-02-22|1997-02-03|1997-02-23|COLLECT COD|SHIP|lent asymptotes| +77995|680402|17942|4|33|45618.21|0.10|0.03|N|O|1997-03-14|1997-02-08|1997-04-10|NONE|MAIL|olites. daringly even dec| +77995|511622|24133|5|49|80046.40|0.10|0.02|N|O|1996-12-23|1997-03-09|1996-12-25|NONE|REG AIR| doggedly pending, regular theo| +77995|818186|43219|6|24|26499.36|0.06|0.06|N|O|1997-03-11|1997-03-04|1997-03-30|DELIVER IN PERSON|SHIP|ruthless accounts.| +77996|919554|19555|1|21|33043.71|0.06|0.00|R|F|1993-06-16|1993-06-24|1993-07-03|TAKE BACK RETURN|SHIP|s are above the carefull| +77996|930613|43132|2|25|41089.25|0.03|0.08|R|F|1993-05-04|1993-06-16|1993-06-02|DELIVER IN PERSON|SHIP|wake regular, unusual d| +77996|803784|3785|3|18|30379.32|0.10|0.05|R|F|1993-07-04|1993-06-25|1993-08-01|TAKE BACK RETURN|REG AIR|ily blithe deposits. | +77996|183220|33221|4|1|1303.22|0.01|0.08|A|F|1993-06-13|1993-05-12|1993-07-08|DELIVER IN PERSON|SHIP|g to the req| +77996|365644|15645|5|8|13677.04|0.05|0.06|R|F|1993-07-30|1993-06-08|1993-08-27|TAKE BACK RETURN|REG AIR|ideas are carefully a| +77996|373374|23375|6|49|70920.64|0.09|0.02|R|F|1993-06-04|1993-05-23|1993-06-27|TAKE BACK RETURN|FOB|lly ironic foxes wake blithely regula| +77996|286087|36088|7|32|34338.24|0.09|0.01|R|F|1993-05-18|1993-06-18|1993-06-14|TAKE BACK RETURN|AIR|tes along the final, furious theodol| +77997|253541|28552|1|1|1494.53|0.07|0.06|N|O|1998-06-12|1998-07-03|1998-06-24|TAKE BACK RETURN|REG AIR|usual packages| +77997|258967|33978|2|14|26963.30|0.06|0.01|N|O|1998-09-02|1998-07-07|1998-09-24|COLLECT COD|AIR|dolites. express tithes detect slyly accor| +77998|760796|48342|1|25|46419.00|0.08|0.02|R|F|1994-06-20|1994-07-29|1994-07-05|DELIVER IN PERSON|RAIL|s hang slyly ca| +77998|695268|7782|2|10|12632.30|0.02|0.00|A|F|1994-07-25|1994-06-18|1994-08-06|DELIVER IN PERSON|MAIL|ing to the fluff| +77998|356768|44290|3|2|3649.50|0.04|0.03|A|F|1994-06-18|1994-06-30|1994-07-11|NONE|AIR|t accounts h| +77999|702284|39827|1|8|10290.00|0.08|0.00|N|O|1995-07-13|1995-07-16|1995-07-20|DELIVER IN PERSON|REG AIR|lyly expres| +77999|271211|33717|2|31|36648.20|0.06|0.02|N|O|1995-08-16|1995-07-11|1995-09-11|DELIVER IN PERSON|AIR|ic foxes s| +77999|227778|2787|3|27|46055.52|0.10|0.01|N|O|1995-09-12|1995-08-02|1995-10-01|NONE|RAIL|t requests. s| +78024|666572|29086|1|9|13846.86|0.04|0.06|A|F|1993-09-14|1993-09-10|1993-10-06|NONE|SHIP|tes. slyly slow packages after t| +78024|69261|44264|2|14|17223.64|0.03|0.06|R|F|1993-07-16|1993-09-11|1993-08-04|TAKE BACK RETURN|RAIL| express foxes. stealthily| +78024|58726|46230|3|40|67388.80|0.06|0.05|R|F|1993-07-17|1993-08-12|1993-07-23|TAKE BACK RETURN|FOB|al, permanent accounts cajole carefully. | +78024|5310|30311|4|35|42535.85|0.10|0.02|A|F|1993-09-02|1993-09-08|1993-09-20|COLLECT COD|SHIP|lites boost. blithely | +78024|242391|4896|5|30|40001.40|0.02|0.02|A|F|1993-09-04|1993-08-14|1993-09-26|NONE|RAIL|tructions. furiously | +78024|854497|17015|6|27|39189.15|0.01|0.07|R|F|1993-08-16|1993-08-12|1993-08-31|COLLECT COD|MAIL|asymptotes wake furiousl| +78024|522636|47657|7|39|64685.79|0.07|0.01|A|F|1993-07-30|1993-09-25|1993-08-10|COLLECT COD|RAIL|lar packages haggle. carefully | +78025|927245|27246|1|49|62337.80|0.00|0.00|R|F|1993-01-13|1992-12-31|1993-02-09|COLLECT COD|REG AIR|cording to the carefull| +78025|197721|10225|2|15|27280.80|0.06|0.03|R|F|1993-01-31|1992-12-02|1993-02-05|COLLECT COD|REG AIR|t furiously. packages wake quickly regul| +78025|87556|12559|3|31|47850.05|0.01|0.07|R|F|1992-11-23|1993-01-06|1992-12-16|COLLECT COD|REG AIR|hely after the furiously final pint| +78025|550013|37547|4|5|5314.95|0.06|0.04|R|F|1992-12-05|1993-01-10|1992-12-08|COLLECT COD|RAIL|lithely accounts. ca| +78026|969667|7225|1|29|50361.98|0.09|0.00|A|F|1992-12-29|1993-02-11|1993-01-09|TAKE BACK RETURN|TRUCK|ake quickly ironic escapad| +78027|746860|9375|1|3|5720.49|0.09|0.03|R|F|1994-11-08|1994-12-09|1994-12-07|TAKE BACK RETURN|RAIL|the fluffily bold ideas. busy| +78027|464362|14363|2|28|37137.52|0.02|0.03|R|F|1994-12-29|1994-11-27|1995-01-02|DELIVER IN PERSON|AIR|ress deposits nod carefully speci| +78027|529659|29660|3|49|82742.87|0.09|0.06|R|F|1995-01-03|1994-11-09|1995-01-12|DELIVER IN PERSON|TRUCK|ructions. ironic, final hockey players| +78027|972286|34806|4|32|43463.68|0.03|0.08|A|F|1994-10-06|1994-10-26|1994-10-25|DELIVER IN PERSON|RAIL|ructions use fluffily above the regula| +78027|209369|21874|5|13|16618.55|0.09|0.08|R|F|1994-12-11|1994-12-14|1994-12-16|COLLECT COD|AIR|eposits. even deposits believe furi| +78027|850565|566|6|8|12124.16|0.07|0.03|A|F|1995-01-15|1994-12-13|1995-01-26|NONE|AIR|ounts thrash aga| +78027|444663|32188|7|33|53052.12|0.07|0.07|A|F|1994-11-17|1994-12-12|1994-11-26|NONE|AIR| final orbits boost slyly slyly ironic | +78028|434255|46764|1|37|44001.51|0.05|0.05|N|O|1997-05-06|1997-04-11|1997-05-23|TAKE BACK RETURN|TRUCK|onic asymptotes boost q| +78028|507271|7272|2|16|20452.00|0.07|0.00|N|O|1997-05-03|1997-04-26|1997-05-14|DELIVER IN PERSON|MAIL|deposits. unusual reques| +78029|849559|37108|1|1|1508.51|0.02|0.00|N|O|1998-09-15|1998-08-22|1998-09-27|DELIVER IN PERSON|RAIL| instructions nag quickl| +78029|534453|34454|2|42|62472.06|0.10|0.05|N|O|1998-10-07|1998-08-09|1998-10-13|NONE|AIR|ounts. excuses s| +78029|550009|10|3|18|19061.64|0.03|0.02|N|O|1998-08-30|1998-08-01|1998-09-22|TAKE BACK RETURN|MAIL|e the dependencies haggle accounts| +78029|158|12659|4|42|44442.30|0.06|0.04|N|O|1998-09-11|1998-09-17|1998-09-24|DELIVER IN PERSON|MAIL|its use furiously enticing| +78029|653734|41274|5|41|69195.70|0.00|0.05|N|O|1998-10-01|1998-09-10|1998-10-18|DELIVER IN PERSON|MAIL|counts subla| +78029|307053|32066|6|16|16960.64|0.04|0.07|N|O|1998-08-12|1998-07-26|1998-09-04|TAKE BACK RETURN|RAIL|patterns across| +78030|252133|2134|1|3|3255.36|0.05|0.04|A|F|1992-04-12|1992-04-20|1992-04-27|NONE|RAIL|gular patterns h| +78031|350427|37949|1|24|35457.84|0.01|0.08|R|F|1993-08-23|1993-07-15|1993-09-12|COLLECT COD|FOB| cajole fur| +78056|270188|20189|1|50|57908.50|0.04|0.01|N|O|1998-02-08|1997-12-31|1998-03-07|NONE|MAIL|fluffily ironic deposits wak| +78056|45196|20197|2|39|44506.41|0.01|0.02|N|O|1998-02-10|1997-12-16|1998-03-08|TAKE BACK RETURN|SHIP| integrate across the accounts. fina| +78056|598529|23552|3|45|73237.50|0.03|0.04|N|O|1997-11-28|1998-01-04|1997-12-24|COLLECT COD|RAIL|uriously unusual accounts. special, final t| +78056|474276|49295|4|48|60012.00|0.10|0.08|N|O|1997-11-23|1997-12-04|1997-12-21|DELIVER IN PERSON|REG AIR|ly. blithely ironic as| +78057|884567|34568|1|36|55854.72|0.10|0.04|N|O|1995-10-25|1995-09-17|1995-11-09|DELIVER IN PERSON|AIR|ironic deposits. blithely regu| +78057|902189|2190|2|7|8337.98|0.00|0.06|N|O|1995-09-10|1995-08-26|1995-10-03|COLLECT COD|FOB|gs boost blithely according to the pending| +78058|62505|25007|1|9|13207.50|0.02|0.05|R|F|1993-03-26|1993-05-08|1993-04-05|DELIVER IN PERSON|MAIL|ns against t| +78058|511280|11281|2|38|49067.88|0.01|0.03|A|F|1993-05-06|1993-04-20|1993-05-23|COLLECT COD|SHIP|quests nag. accounts use careful| +78058|77450|14954|3|11|15701.95|0.10|0.06|A|F|1993-07-01|1993-05-09|1993-07-12|COLLECT COD|TRUCK|de of the furiously bold instructions. | +78058|701098|13613|4|34|37368.04|0.02|0.08|A|F|1993-03-20|1993-05-12|1993-04-13|DELIVER IN PERSON|REG AIR|oxes should snooze slyly theod| +78059|992538|42539|1|26|42392.74|0.06|0.04|N|O|1995-12-03|1996-01-20|1995-12-31|TAKE BACK RETURN|RAIL|s boost carefully regularly un| +78059|575115|12649|2|31|36892.79|0.05|0.03|N|O|1995-12-17|1996-01-16|1996-01-14|COLLECT COD|AIR|ges use fluffily. blithely p| +78059|957174|32213|3|28|34471.64|0.03|0.03|N|O|1995-12-20|1996-01-29|1996-01-19|DELIVER IN PERSON|SHIP|bove the expr| +78059|220849|8362|4|45|79642.35|0.01|0.00|N|O|1996-01-24|1996-02-29|1996-02-07|NONE|TRUCK|ctions sleep. blithely ironic courts wa| +78059|798054|23085|5|24|27648.48|0.05|0.02|N|O|1995-12-14|1996-02-23|1996-01-05|DELIVER IN PERSON|MAIL|tes. pendin| +78060|38447|38448|1|6|8312.64|0.02|0.05|N|O|1998-07-18|1998-06-16|1998-08-17|COLLECT COD|SHIP|pecial deposits. pending theodolit| +78060|173675|48682|2|41|71695.47|0.00|0.02|N|O|1998-06-26|1998-06-07|1998-06-28|DELIVER IN PERSON|FOB|ously special fo| +78060|954329|41887|3|2|2766.56|0.07|0.02|N|O|1998-07-01|1998-07-10|1998-07-20|NONE|SHIP|ilent deposits boo| +78060|404691|4692|4|14|22339.38|0.09|0.06|N|O|1998-05-07|1998-07-07|1998-06-01|TAKE BACK RETURN|MAIL|leep slyly slyly regular requests. fluff| +78060|633783|46296|5|43|73820.25|0.09|0.07|N|O|1998-05-07|1998-06-08|1998-06-05|DELIVER IN PERSON|REG AIR|equests cajole furiously. busily unu| +78060|983304|20862|6|48|66588.48|0.06|0.00|N|O|1998-05-25|1998-07-09|1998-06-05|TAKE BACK RETURN|AIR|uickly against th| +78060|375951|38459|7|11|22296.34|0.07|0.07|N|O|1998-06-01|1998-06-14|1998-07-01|COLLECT COD|SHIP|. slyly special packages ha| +78061|603875|16388|1|28|49807.52|0.06|0.06|A|F|1994-03-12|1994-05-19|1994-03-17|NONE|REG AIR|lyly bold packages cajole along the ca| +78062|909928|22447|1|12|23254.56|0.01|0.08|N|O|1996-07-13|1996-05-28|1996-08-12|COLLECT COD|FOB|l packages. final r| +78062|151937|39447|2|45|89501.85|0.10|0.03|N|O|1996-08-01|1996-06-21|1996-08-26|NONE|SHIP| the furiously pending platelets are blith| +78062|605059|17572|3|45|43380.90|0.10|0.04|N|O|1996-06-21|1996-05-23|1996-07-13|NONE|MAIL|ly sometimes ir| +78062|213865|13866|4|49|87163.65|0.00|0.04|N|O|1996-05-13|1996-07-11|1996-06-09|COLLECT COD|FOB|regular platelets are. final deposits alo| +78062|413558|1083|5|29|42674.37|0.01|0.01|N|O|1996-07-26|1996-05-25|1996-08-11|DELIVER IN PERSON|AIR|unusual, regular packages. slyly| +78062|660775|10776|6|48|83315.52|0.10|0.07|N|O|1996-07-23|1996-06-11|1996-08-01|NONE|FOB|ultipliers above| +78063|214932|39941|1|11|20316.12|0.10|0.02|A|F|1994-06-22|1994-06-01|1994-07-22|DELIVER IN PERSON|AIR|ally unusual requ| +78063|347065|47066|2|34|37809.70|0.05|0.00|R|F|1994-08-17|1994-06-01|1994-09-15|DELIVER IN PERSON|MAIL|ironic escapades haggle car| +78088|562958|492|1|8|16167.44|0.03|0.01|N|O|1997-10-21|1997-11-12|1997-11-17|NONE|MAIL|excuses aff| +78088|627265|14802|2|11|13114.53|0.00|0.02|N|O|1997-08-29|1997-09-25|1997-08-31|TAKE BACK RETURN|FOB|tes according to the brav| +78088|432542|20067|3|10|14745.20|0.08|0.01|N|O|1997-11-21|1997-10-25|1997-11-28|NONE|MAIL|stealthily. slyly final asymptotes acros| +78088|718825|6368|4|47|86658.13|0.06|0.02|N|O|1997-09-26|1997-09-30|1997-10-06|DELIVER IN PERSON|AIR|gular pinto beans abo| +78088|276862|1873|5|20|36777.00|0.01|0.05|N|O|1997-11-21|1997-10-30|1997-11-30|TAKE BACK RETURN|SHIP|ronic packages: furiously final packag| +78088|209965|9966|6|22|41248.90|0.04|0.03|N|O|1997-10-30|1997-10-25|1997-10-31|NONE|TRUCK|o the quickly even ideas| +78089|978902|16460|1|48|95081.28|0.01|0.04|N|O|1997-12-05|1998-01-19|1997-12-19|TAKE BACK RETURN|REG AIR|ests integrate carefully pending,| +78089|390097|2605|2|4|4748.32|0.10|0.02|N|O|1998-01-17|1997-12-07|1998-02-09|COLLECT COD|TRUCK|ing to the even ideas. carefully pendin| +78089|356677|19185|3|10|17336.60|0.01|0.01|N|O|1997-11-07|1997-12-22|1997-11-12|NONE|AIR|y ideas. furiously ironic a| +78089|669707|19708|4|43|72096.81|0.02|0.08|N|O|1997-12-18|1997-12-17|1997-12-27|TAKE BACK RETURN|SHIP|gainst the express, pending ideas w| +78089|764448|14449|5|46|69570.86|0.00|0.04|N|O|1998-01-20|1997-11-29|1998-02-09|NONE|FOB|after the caref| +78089|63966|38969|6|46|88778.16|0.09|0.04|N|O|1997-12-28|1997-12-31|1998-01-25|COLLECT COD|AIR|ites. regular reques| +78090|798786|11302|1|3|5654.25|0.02|0.01|R|F|1993-07-01|1993-06-23|1993-07-21|NONE|REG AIR|foxes. regular, special patterns | +78090|179777|29778|2|21|38992.17|0.01|0.00|R|F|1993-06-12|1993-06-21|1993-06-14|COLLECT COD|MAIL|. special instruct| +78090|511917|36938|3|1|1928.89|0.10|0.08|A|F|1993-05-28|1993-06-08|1993-05-30|NONE|MAIL|accounts integrate f| +78091|429110|29111|1|22|22859.98|0.01|0.02|R|F|1992-10-12|1992-12-11|1992-10-15|NONE|AIR|ions. care| +78091|43476|30977|2|6|8516.82|0.09|0.07|A|F|1992-11-19|1992-10-26|1992-12-11|COLLECT COD|RAIL|, ironic accounts are against the car| +78091|699356|49357|3|13|17619.16|0.07|0.03|A|F|1992-10-17|1992-11-18|1992-11-07|COLLECT COD|RAIL| along the quickly even asymptotes ha| +78091|61583|24085|4|11|16990.38|0.07|0.08|R|F|1992-10-19|1992-11-27|1992-10-22|TAKE BACK RETURN|REG AIR|lly close,| +78091|23404|35905|5|42|55750.80|0.02|0.05|A|F|1992-11-30|1992-11-07|1992-12-26|COLLECT COD|RAIL|ly ironic asymptotes| +78091|344671|7178|6|35|60048.10|0.05|0.05|R|F|1992-10-20|1992-11-16|1992-11-02|DELIVER IN PERSON|REG AIR|sits could sleep furiously. bl| +78091|882820|32821|7|42|75716.76|0.03|0.06|A|F|1992-10-07|1992-10-29|1992-10-15|TAKE BACK RETURN|SHIP|ithely accordin| +78092|549642|12153|1|40|67664.80|0.06|0.04|R|F|1994-02-15|1994-04-06|1994-02-17|TAKE BACK RETURN|REG AIR|inal instructions. fluffily pendin| +78092|822077|34594|2|41|40960.23|0.06|0.01|A|F|1994-03-09|1994-03-30|1994-03-29|DELIVER IN PERSON|SHIP|y unusual deposits play express, | +78092|644539|19564|3|20|29670.00|0.09|0.03|A|F|1994-02-03|1994-03-30|1994-02-19|NONE|TRUCK|blithely. ironic | +78093|114336|39341|1|32|43210.56|0.01|0.06|N|O|1995-07-23|1995-08-01|1995-07-29|TAKE BACK RETURN|FOB|y regular sentiments. slyly bold pinto | +78094|423653|11178|1|8|12613.04|0.10|0.08|R|F|1995-02-01|1995-02-04|1995-02-25|TAKE BACK RETURN|FOB|he carefully ironic foxes. iron| +78095|92694|17697|1|40|67467.60|0.06|0.07|R|F|1994-09-04|1994-08-19|1994-09-17|COLLECT COD|RAIL|s wake permanently among the | +78120|35893|23394|1|36|65840.04|0.00|0.08|N|O|1998-06-17|1998-06-03|1998-07-05|NONE|SHIP|kages are idly-- unusua| +78120|245758|45759|2|1|1703.74|0.06|0.03|N|O|1998-06-24|1998-05-15|1998-06-26|DELIVER IN PERSON|AIR|ans against t| +78120|451004|26023|3|17|16234.66|0.01|0.04|N|O|1998-05-03|1998-05-01|1998-05-30|COLLECT COD|TRUCK|express accounts boost sl| +78120|10660|23161|4|3|4711.98|0.04|0.02|N|O|1998-05-13|1998-05-05|1998-06-11|COLLECT COD|TRUCK|as nag blithely among the s| +78120|148778|36285|5|5|9133.85|0.03|0.07|N|O|1998-03-22|1998-06-02|1998-04-18|TAKE BACK RETURN|AIR| packages. special deposi| +78120|506477|44008|6|1|1483.45|0.02|0.04|N|O|1998-06-25|1998-05-26|1998-07-25|TAKE BACK RETURN|RAIL|ts use furiously. blithely even requ| +78120|356411|43933|7|45|66033.00|0.04|0.04|N|O|1998-06-04|1998-05-06|1998-06-15|NONE|SHIP|r pinto beans sleep carefully even decoys.| +78121|190332|40333|1|2|2844.66|0.01|0.01|A|F|1993-12-16|1993-11-15|1994-01-05|COLLECT COD|MAIL|ular deposits. quic| +78121|900631|632|2|47|76684.73|0.07|0.01|A|F|1993-09-28|1993-10-28|1993-10-15|NONE|RAIL|ress notornis sleep daringly| +78121|891439|41440|3|11|15734.29|0.04|0.01|R|F|1993-09-30|1993-11-05|1993-10-23|COLLECT COD|TRUCK|ccounts. furiously eve| +78121|412309|12310|4|4|4885.12|0.04|0.05|A|F|1993-09-18|1993-10-13|1993-09-23|TAKE BACK RETURN|MAIL|egular accounts ha| +78121|667056|17057|5|14|14322.28|0.03|0.08|R|F|1993-12-26|1993-10-09|1994-01-24|TAKE BACK RETURN|FOB|s. furiously regular hockey| +78121|203238|28247|6|45|51354.90|0.06|0.07|A|F|1993-12-17|1993-10-29|1994-01-14|COLLECT COD|FOB|deposits sleep packages.| +78122|639089|1602|1|10|10280.50|0.00|0.04|N|O|1998-04-08|1998-02-24|1998-04-21|DELIVER IN PERSON|RAIL|ent instructions slee| +78122|159099|34106|2|2|2316.18|0.00|0.03|N|O|1998-05-10|1998-03-22|1998-05-23|TAKE BACK RETURN|AIR|bove the furiously silent pinto | +78122|975408|12966|3|18|26700.48|0.05|0.08|N|O|1998-02-07|1998-04-04|1998-02-09|TAKE BACK RETURN|SHIP|ously beside the quickly final| +78122|680823|5850|4|21|37879.59|0.08|0.00|N|O|1998-05-11|1998-04-06|1998-05-27|DELIVER IN PERSON|AIR|ely express ideas affix caref| +78123|615535|40560|1|14|20307.00|0.00|0.00|A|F|1995-01-30|1995-02-06|1995-02-25|DELIVER IN PERSON|MAIL|s haggle for t| +78123|295950|33466|2|22|42810.68|0.00|0.06|A|F|1995-03-09|1995-02-07|1995-03-22|TAKE BACK RETURN|AIR|ke blithely a| +78123|21591|34092|3|7|10588.13|0.08|0.05|A|F|1995-02-16|1995-01-07|1995-02-23|TAKE BACK RETURN|REG AIR|quickly final deposits. | +78124|513666|38687|1|37|62146.68|0.08|0.08|N|O|1997-08-04|1997-07-24|1997-09-01|DELIVER IN PERSON|RAIL|ular packages cajole. carefully ironic dep| +78124|178960|3967|2|45|91753.20|0.09|0.08|N|O|1997-06-19|1997-08-22|1997-07-10|DELIVER IN PERSON|MAIL|ar excuses. regular de| +78124|779152|4183|3|11|13542.32|0.06|0.06|N|O|1997-09-24|1997-08-12|1997-10-12|NONE|AIR|outs after the car| +78124|192039|4543|4|21|23751.63|0.02|0.05|N|O|1997-09-23|1997-08-22|1997-09-26|TAKE BACK RETURN|MAIL|uickly unusual accounts. blit| +78124|590058|2570|5|15|17220.45|0.05|0.04|N|O|1997-08-17|1997-07-28|1997-09-04|DELIVER IN PERSON|SHIP|fluffily silent pinto be| +78124|91409|16412|6|43|60217.20|0.10|0.01|N|O|1997-07-08|1997-07-08|1997-07-30|NONE|RAIL|luffily careful platelets| +78124|310487|35500|7|28|41929.16|0.07|0.06|N|O|1997-09-16|1997-08-23|1997-09-22|COLLECT COD|MAIL|l requests are fluffily sly| +78125|343003|43004|1|18|18827.82|0.00|0.04|N|O|1998-09-10|1998-09-06|1998-09-26|COLLECT COD|REG AIR|regular foxes sleep platelets. excuses w| +78125|843342|18375|2|9|11567.70|0.01|0.04|N|O|1998-07-17|1998-09-10|1998-07-27|TAKE BACK RETURN|TRUCK|ckages dazzle around the ideas. slyly fin| +78126|107091|32096|1|26|28550.34|0.05|0.07|A|F|1992-03-27|1992-05-05|1992-03-28|NONE|RAIL|ly. furiously ir| +78127|443850|18867|1|21|37670.43|0.04|0.01|N|O|1996-11-02|1996-10-14|1996-11-20|TAKE BACK RETURN|REG AIR|pending dependencies. slyly expre| +78152|561104|48638|1|24|27961.92|0.03|0.01|N|O|1998-03-22|1998-03-17|1998-04-13|TAKE BACK RETURN|SHIP|nding ideas a| +78152|461629|11630|2|28|44536.80|0.04|0.01|N|O|1998-04-13|1998-02-14|1998-04-20|NONE|SHIP|ost furiously against the quic| +78152|597168|22191|3|41|51870.74|0.09|0.07|N|O|1998-02-02|1998-02-09|1998-03-04|NONE|MAIL|o beans. fluffily express ideas hag| +78152|585941|23475|4|46|93238.32|0.00|0.00|N|O|1998-03-06|1998-02-21|1998-04-05|DELIVER IN PERSON|FOB| dazzle enticingly furiously pending req| +78152|909725|9726|5|39|67652.52|0.07|0.03|N|O|1998-02-08|1998-02-09|1998-02-20|COLLECT COD|SHIP|sts alongside of the pe| +78153|107246|44753|1|8|10025.92|0.06|0.06|A|F|1994-01-11|1993-11-22|1994-02-06|DELIVER IN PERSON|AIR|cross the furiously even deposits. qui| +78153|477385|39895|2|4|5449.44|0.10|0.06|A|F|1993-10-17|1993-10-30|1993-11-03|COLLECT COD|MAIL|enticing, | +78154|91147|41148|1|4|4552.56|0.09|0.05|A|F|1995-01-08|1994-11-09|1995-01-12|TAKE BACK RETURN|RAIL| ironic tithe| +78154|892094|42095|2|37|40183.85|0.08|0.03|R|F|1994-12-30|1994-12-12|1995-01-22|NONE|MAIL|ckages. blithely special theodolites abo| +78154|421631|9156|3|26|40367.86|0.02|0.06|R|F|1994-11-23|1994-12-09|1994-12-20|COLLECT COD|FOB|regular accounts. furiously even accoun| +78155|170670|20671|1|39|67886.13|0.04|0.05|A|F|1992-09-30|1992-09-07|1992-10-29|NONE|SHIP|eep blithely pending foxes. furiously even| +78156|924465|36984|1|14|20851.88|0.01|0.01|R|F|1993-12-16|1994-01-17|1994-01-12|TAKE BACK RETURN|AIR| carefully silent gifts run furi| +78156|471182|8710|2|18|20756.88|0.07|0.01|A|F|1994-02-14|1994-01-11|1994-03-13|NONE|RAIL|to the fluffily unusual foxes. package| +78156|140302|40303|3|22|29530.60|0.01|0.00|R|F|1994-02-01|1994-02-16|1994-02-25|TAKE BACK RETURN|FOB|ronic foxes after th| +78156|45590|33091|4|32|49138.88|0.02|0.06|R|F|1994-01-12|1994-02-06|1994-01-24|NONE|MAIL|y bold requests! | +78156|222471|9984|5|5|6967.30|0.01|0.03|R|F|1994-03-24|1994-02-12|1994-04-03|NONE|RAIL|equests; slyly regular accounts wake quic| +78156|59724|9725|6|21|35358.12|0.02|0.04|R|F|1993-12-17|1994-03-01|1993-12-31|DELIVER IN PERSON|REG AIR|ts. ironic deposits aff| +78157|887109|37110|1|19|20825.14|0.09|0.04|N|O|1996-06-18|1996-08-05|1996-07-16|DELIVER IN PERSON|SHIP|tect carefully among | +78157|629477|17014|2|47|66102.68|0.05|0.07|N|O|1996-08-25|1996-08-08|1996-08-28|NONE|SHIP| haggle quickly requests. pending wa| +78158|487311|37312|1|13|16877.77|0.09|0.07|A|F|1994-07-25|1994-08-27|1994-08-17|NONE|TRUCK|ular packages cajole quickly slyly unusual| +78158|225416|12929|2|3|4024.20|0.02|0.02|R|F|1994-07-03|1994-07-14|1994-07-24|DELIVER IN PERSON|REG AIR|r packages. pinto beans integrate. slyl| +78158|554771|29794|3|2|3651.50|0.09|0.01|A|F|1994-07-02|1994-07-26|1994-07-27|COLLECT COD|SHIP|ickly express accounts. r| +78159|7324|7325|1|45|55409.40|0.04|0.02|R|F|1994-02-01|1994-02-03|1994-02-28|DELIVER IN PERSON|SHIP|cial dolphins a| +78184|384888|47396|1|10|19728.70|0.02|0.08|R|F|1994-02-09|1994-01-04|1994-03-02|NONE|MAIL|riously bold theodolites are| +78184|806309|43858|2|49|59547.74|0.07|0.04|R|F|1993-12-12|1994-01-10|1993-12-16|COLLECT COD|TRUCK|s promise according to the u| +78184|627319|14856|3|19|23679.32|0.05|0.04|R|F|1993-12-26|1994-01-10|1994-01-13|NONE|RAIL|posits affix furiously accordin| +78184|334445|21964|4|40|59177.20|0.08|0.06|R|F|1993-12-18|1993-12-13|1993-12-30|DELIVER IN PERSON|TRUCK|r accounts. ev| +78184|1992|1993|5|21|39773.79|0.08|0.06|R|F|1993-10-23|1993-11-21|1993-11-18|TAKE BACK RETURN|AIR| quickly regular saute| +78184|478586|41096|6|8|12516.48|0.02|0.06|R|F|1994-02-11|1993-11-12|1994-03-06|TAKE BACK RETURN|TRUCK|tes sleep regular accounts-- express packa| +78184|592518|5030|7|6|9662.94|0.04|0.06|A|F|1993-11-16|1993-12-13|1993-12-16|NONE|RAIL|jole toward the ironic excuses. fur| +78185|440568|3077|1|44|66375.76|0.02|0.03|N|O|1996-05-11|1996-06-02|1996-06-02|DELIVER IN PERSON|MAIL|lent pinto beans haggle | +78185|616575|4112|2|4|5966.16|0.09|0.06|N|O|1996-05-22|1996-07-09|1996-06-15|COLLECT COD|SHIP|uses doubt alongside of the | +78185|764625|14626|3|29|48998.11|0.09|0.00|N|O|1996-07-01|1996-06-20|1996-07-19|TAKE BACK RETURN|REG AIR|. regular | +78185|47785|22786|4|6|10396.68|0.05|0.02|N|O|1996-04-20|1996-05-27|1996-04-27|TAKE BACK RETURN|RAIL|al theodolites. f| +78185|108220|33225|5|13|15966.86|0.06|0.07|N|O|1996-06-23|1996-07-12|1996-07-20|COLLECT COD|RAIL|ly regular packages. daringly pending | +78185|839083|14116|6|47|48035.88|0.02|0.08|N|O|1996-04-25|1996-06-28|1996-05-01|DELIVER IN PERSON|MAIL|accounts cajole furio| +78186|86715|49217|1|41|69770.11|0.06|0.00|A|F|1993-08-12|1993-07-01|1993-09-02|NONE|TRUCK|xpress accounts. slyly even pi| +78186|414306|1831|2|40|48811.20|0.06|0.00|A|F|1993-08-29|1993-08-19|1993-09-06|TAKE BACK RETURN|AIR|riously bold de| +78186|235223|22736|3|41|47486.61|0.08|0.05|A|F|1993-08-03|1993-07-17|1993-08-14|NONE|FOB|ully pending theodolites. permanently unu| +78186|377278|27279|4|22|29815.72|0.01|0.04|R|F|1993-07-18|1993-07-31|1993-08-15|DELIVER IN PERSON|TRUCK| ironic ideas. slyly | +78186|907180|32217|5|14|16619.96|0.10|0.06|A|F|1993-08-07|1993-07-24|1993-08-20|NONE|MAIL|etect sile| +78187|230039|5048|1|9|8721.18|0.05|0.06|R|F|1992-05-29|1992-05-09|1992-06-20|TAKE BACK RETURN|TRUCK|ronic pinto beans | +78187|261719|49235|2|32|53782.40|0.10|0.05|R|F|1992-03-10|1992-03-27|1992-04-05|COLLECT COD|REG AIR|haggle carefully ex| +78187|709687|9688|3|35|59382.75|0.10|0.02|R|F|1992-02-12|1992-05-09|1992-03-11|TAKE BACK RETURN|AIR|ickly according to the fin| +78187|699955|24982|4|11|21504.12|0.04|0.07|R|F|1992-03-01|1992-04-29|1992-03-25|COLLECT COD|AIR| pending depos| +78187|140930|3433|5|38|74895.34|0.09|0.08|R|F|1992-05-14|1992-05-03|1992-05-18|COLLECT COD|SHIP|fluffily even orb| +78188|628220|3245|1|15|17222.85|0.09|0.04|R|F|1994-07-11|1994-08-04|1994-07-28|NONE|AIR| deposits eat requests. carefully | +78188|491688|16707|2|5|8398.30|0.09|0.04|A|F|1994-06-19|1994-07-19|1994-06-28|DELIVER IN PERSON|MAIL|courts along the quickly e| +78189|555357|30380|1|8|11298.64|0.01|0.07|N|O|1996-07-27|1996-07-03|1996-08-16|DELIVER IN PERSON|AIR|fily even | +78189|877432|2467|2|13|18322.07|0.01|0.01|N|O|1996-06-09|1996-07-09|1996-07-08|DELIVER IN PERSON|MAIL| packages. furiously final deposits w| +78189|985143|47663|3|49|60176.90|0.03|0.03|N|O|1996-08-27|1996-07-05|1996-09-09|TAKE BACK RETURN|FOB|oost blithely. ideas ca| +78189|289030|39031|4|9|9171.18|0.08|0.04|N|O|1996-05-29|1996-06-23|1996-06-15|NONE|MAIL|ackages. final de| +78189|714825|39854|5|4|7359.16|0.02|0.01|N|O|1996-09-09|1996-06-19|1996-09-25|COLLECT COD|FOB|refully pendin| +78190|661388|36415|1|45|60720.75|0.05|0.08|N|O|1996-01-09|1996-01-17|1996-01-16|COLLECT COD|MAIL| carefully ironic accounts | +78190|937791|12828|2|7|12801.25|0.10|0.01|N|O|1996-02-20|1996-01-09|1996-03-04|COLLECT COD|RAIL|doggedly. furiously special theodolites | +78190|444910|44911|3|18|33388.02|0.08|0.02|N|O|1996-03-10|1995-12-29|1996-04-09|NONE|TRUCK|lent theodolites are doggedly un| +78190|594572|19595|4|41|68328.55|0.00|0.08|N|O|1996-01-23|1996-02-10|1996-01-24|NONE|REG AIR|: bravely ironic dep| +78190|970079|45118|5|13|14937.39|0.01|0.07|N|O|1996-02-07|1996-01-03|1996-02-28|NONE|SHIP|ckly final deposits haggle carefully accou| +78191|204074|16579|1|46|44990.76|0.02|0.06|R|F|1992-09-27|1992-09-08|1992-09-28|NONE|SHIP|he furiously special req| +78191|857484|20002|2|44|63423.36|0.00|0.05|R|F|1992-08-12|1992-09-07|1992-09-11|COLLECT COD|MAIL|regular asymptote| +78216|450549|550|1|50|74976.00|0.02|0.05|N|O|1998-03-13|1998-02-25|1998-03-18|DELIVER IN PERSON|AIR|o the quickly final orbits. flu| +78216|372843|22844|2|23|44064.09|0.01|0.06|N|O|1998-04-24|1998-04-07|1998-04-27|DELIVER IN PERSON|RAIL|ular asymptotes hagg| +78216|369027|19028|3|45|49320.45|0.07|0.05|N|O|1998-04-09|1998-03-12|1998-04-20|DELIVER IN PERSON|AIR|around the fur| +78216|227705|2714|4|27|44082.63|0.00|0.05|N|O|1998-04-28|1998-02-25|1998-05-21|TAKE BACK RETURN|AIR|according to the slyly regular ideas. s| +78217|674119|24120|1|39|42630.12|0.04|0.06|A|F|1994-05-10|1994-06-17|1994-06-08|DELIVER IN PERSON|MAIL|te furiously according to the regu| +78217|904199|16718|2|50|60157.50|0.09|0.00|A|F|1994-04-18|1994-05-13|1994-05-10|COLLECT COD|FOB|le carefully blithely final id| +78217|870229|45264|3|27|32377.86|0.07|0.06|A|F|1994-06-04|1994-05-29|1994-06-13|TAKE BACK RETURN|AIR|ng accounts. quickly fin| +78217|928546|41065|4|46|72427.00|0.08|0.01|A|F|1994-06-01|1994-05-02|1994-06-09|COLLECT COD|RAIL|tes print carefully a| +78218|776168|1199|1|41|51009.33|0.02|0.05|N|O|1997-08-04|1997-06-28|1997-08-30|NONE|SHIP|nt requests s| +78218|43490|43491|2|5|7167.45|0.05|0.01|N|O|1997-07-19|1997-05-27|1997-07-26|DELIVER IN PERSON|RAIL|aggle about the fluffily pending | +78218|928778|16333|3|50|90336.50|0.10|0.05|N|O|1997-07-24|1997-05-19|1997-07-27|NONE|RAIL|nstructions c| +78218|960305|35344|4|37|50514.62|0.00|0.06|N|O|1997-07-08|1997-06-21|1997-07-18|DELIVER IN PERSON|AIR|y final dugouts. ideas sleep carefu| +78218|837819|37820|5|46|80811.42|0.07|0.05|N|O|1997-05-03|1997-05-18|1997-05-28|COLLECT COD|RAIL|egrate carefully a| +78218|214639|14640|6|47|73020.14|0.07|0.03|N|O|1997-04-20|1997-06-26|1997-04-26|NONE|MAIL|ial packages.| +78219|119230|19231|1|27|33729.21|0.08|0.04|A|F|1992-02-15|1992-03-19|1992-03-04|NONE|TRUCK|hily pending excuses | +78219|887957|25509|2|31|60292.21|0.10|0.00|R|F|1992-05-17|1992-04-17|1992-06-08|NONE|REG AIR|d deposits nag p| +78220|32492|7493|1|14|19942.86|0.05|0.05|N|O|1998-06-21|1998-06-07|1998-07-10|TAKE BACK RETURN|REG AIR|oss the slyly regular w| +78220|91693|41694|2|16|26955.04|0.03|0.03|N|O|1998-07-02|1998-07-23|1998-07-10|TAKE BACK RETURN|SHIP|ias alongside of the quickly silent| +78220|79414|29415|3|15|20901.15|0.06|0.06|N|O|1998-08-26|1998-07-26|1998-09-21|NONE|REG AIR|dogged accoun| +78220|710368|35397|4|15|20674.95|0.10|0.05|N|O|1998-06-08|1998-06-06|1998-06-09|DELIVER IN PERSON|SHIP|endencies haggle carefully. furio| +78220|145973|45974|5|16|32303.52|0.00|0.02|N|O|1998-08-11|1998-06-22|1998-08-23|COLLECT COD|REG AIR|its will have to serve furiously| +78220|366862|16863|6|31|59794.35|0.08|0.02|N|O|1998-07-17|1998-07-02|1998-07-18|NONE|MAIL|gainst the quickly even inst| +78220|844698|32247|7|18|29567.70|0.00|0.04|N|O|1998-07-18|1998-07-16|1998-08-06|DELIVER IN PERSON|RAIL|er the carefully special| +78221|837004|12037|1|40|37638.40|0.04|0.08|A|F|1995-03-26|1995-03-19|1995-04-05|COLLECT COD|SHIP| blithely bold packag| +78221|516332|16333|2|50|67415.50|0.03|0.04|A|F|1995-03-19|1995-03-03|1995-04-17|NONE|AIR|xpress reques| +78221|987938|12977|3|23|46595.47|0.03|0.08|R|F|1995-02-21|1995-03-09|1995-03-21|COLLECT COD|RAIL|. slyly fin| +78221|258320|33331|4|30|38349.30|0.06|0.03|A|F|1995-03-24|1995-04-11|1995-04-05|TAKE BACK RETURN|TRUCK|r furiously about the slyly unusual deposit| +78222|951502|26541|1|9|13981.14|0.08|0.04|A|F|1993-06-07|1993-07-01|1993-06-10|TAKE BACK RETURN|MAIL|kages cajole | +78222|883008|33009|2|7|6936.72|0.10|0.03|R|F|1993-08-06|1993-07-14|1993-08-19|DELIVER IN PERSON|AIR|ng accounts nag theodolit| +78222|710329|10330|3|2|2678.58|0.00|0.05|R|F|1993-06-12|1993-07-05|1993-07-06|DELIVER IN PERSON|SHIP|xpress courts. silent, final dolphins wake| +78222|489357|1867|4|27|36350.91|0.01|0.07|R|F|1993-06-11|1993-05-31|1993-06-21|NONE|RAIL|into beans wake thinly carefully pending p| +78223|410648|23157|1|24|37406.88|0.04|0.08|N|O|1997-07-12|1997-08-13|1997-08-01|COLLECT COD|REG AIR|nto beans across the bl| +78223|750123|124|2|18|21115.62|0.00|0.06|N|O|1997-08-24|1997-08-21|1997-09-08|TAKE BACK RETURN|AIR|iously. slyly ironic platelets wake | +78248|888224|13259|1|40|48487.20|0.07|0.07|A|F|1993-01-02|1993-02-27|1993-01-15|TAKE BACK RETURN|REG AIR|es affix above the regular| +78248|379721|29722|2|23|41416.33|0.05|0.07|A|F|1993-01-19|1993-02-03|1993-02-11|DELIVER IN PERSON|RAIL|es about the furiously regular ideas use a| +78248|958428|20948|3|21|31213.98|0.07|0.00|A|F|1993-01-12|1993-02-19|1993-02-02|COLLECT COD|REG AIR|lar accounts engage fur| +78248|285256|22772|4|47|58338.28|0.01|0.01|R|F|1993-02-19|1993-03-01|1993-02-25|COLLECT COD|AIR|riously pending pearls| +78249|943856|43857|1|9|17098.29|0.02|0.03|A|F|1992-08-19|1992-06-15|1992-09-13|TAKE BACK RETURN|MAIL|s use idly. quickly final accoun| +78249|379065|29066|2|19|21736.95|0.06|0.07|A|F|1992-06-02|1992-07-25|1992-06-19|NONE|RAIL|arefully regular packages haggle. slyl| +78249|939354|1873|3|19|26472.89|0.04|0.02|R|F|1992-08-09|1992-06-30|1992-08-21|DELIVER IN PERSON|RAIL|l dugouts.| +78249|708742|46285|4|12|21008.52|0.04|0.07|A|F|1992-05-26|1992-07-06|1992-05-29|NONE|AIR|even packages use along the| +78249|814014|14015|5|5|4639.85|0.02|0.05|A|F|1992-06-04|1992-07-17|1992-06-19|DELIVER IN PERSON|FOB|ions cajole across the unusual packa| +78250|109139|9140|1|28|32147.64|0.09|0.05|N|O|1995-11-20|1996-01-12|1995-12-03|NONE|SHIP|pecial instructio| +78250|288023|38024|2|39|39429.39|0.00|0.01|N|O|1996-01-24|1995-12-24|1996-01-29|TAKE BACK RETURN|RAIL|ep slyly among the blithely final packag| +78250|792157|17188|3|3|3747.36|0.03|0.06|N|O|1995-12-22|1996-01-26|1995-12-29|NONE|SHIP|wake above the furio| +78250|768515|31031|4|34|53838.32|0.10|0.01|N|O|1996-01-26|1995-12-29|1996-02-07|TAKE BACK RETURN|TRUCK|y silent ideas doubt about| +78250|428718|28719|5|11|18113.59|0.02|0.08|N|O|1996-01-27|1996-01-05|1996-02-19|TAKE BACK RETURN|AIR|ven packages| +78250|451185|1186|6|17|19314.72|0.08|0.03|N|O|1995-11-30|1996-01-11|1995-12-13|TAKE BACK RETURN|TRUCK| slyly. slyly even accounts wake blithel| +78250|52722|2723|7|10|16747.20|0.10|0.04|N|O|1995-11-12|1995-12-06|1995-12-11|COLLECT COD|TRUCK| furiously expres| +78251|97803|22806|1|11|19808.80|0.00|0.06|N|O|1998-07-27|1998-09-21|1998-08-19|COLLECT COD|TRUCK| wake about the silent dependencies. caref| +78251|761583|11584|2|18|29601.90|0.03|0.00|N|O|1998-08-07|1998-09-27|1998-08-23|COLLECT COD|AIR|into beans.| +78251|910789|48344|3|5|8998.70|0.05|0.05|N|O|1998-07-14|1998-08-23|1998-08-06|DELIVER IN PERSON|RAIL|yers. express deposit| +78251|618911|6448|4|7|12809.16|0.05|0.01|N|O|1998-08-21|1998-09-22|1998-09-09|NONE|REG AIR|lithely even depos| +78251|22601|35102|5|30|45708.00|0.08|0.04|N|O|1998-08-21|1998-08-13|1998-08-25|DELIVER IN PERSON|REG AIR|requests wa| +78251|851494|14012|6|5|7227.25|0.09|0.05|N|O|1998-10-22|1998-09-30|1998-11-10|DELIVER IN PERSON|REG AIR|posits are around the accounts. blithely| +78252|104226|41733|1|34|41827.48|0.08|0.07|N|O|1997-08-08|1997-08-02|1997-08-11|NONE|MAIL|ions haggle aga| +78252|723733|23734|2|42|73781.40|0.09|0.03|N|O|1997-08-03|1997-08-08|1997-08-20|NONE|RAIL|ly under the sometimes| +78252|764603|39634|3|24|40021.68|0.00|0.04|N|O|1997-10-11|1997-08-07|1997-11-01|DELIVER IN PERSON|AIR| cajole fluffil| +78253|872003|22004|1|19|18524.24|0.07|0.01|A|F|1994-06-09|1994-07-26|1994-07-01|NONE|FOB|refully speci| +78254|589645|2157|1|15|26019.30|0.08|0.02|N|O|1998-09-11|1998-09-24|1998-10-11|TAKE BACK RETURN|RAIL|long the f| +78254|151369|1370|2|24|34088.64|0.04|0.08|N|O|1998-10-13|1998-09-30|1998-10-15|DELIVER IN PERSON|MAIL| pinto beans are furiously ironic| +78254|45313|45314|3|48|60398.88|0.07|0.00|N|O|1998-10-28|1998-10-12|1998-11-14|TAKE BACK RETURN|RAIL|latelets. reques| +78255|166975|16976|1|42|85762.74|0.10|0.07|R|F|1994-05-28|1994-05-04|1994-06-06|NONE|SHIP|around the express,| +78255|336296|36297|2|46|61284.88|0.00|0.06|R|F|1994-05-07|1994-05-23|1994-05-12|TAKE BACK RETURN|RAIL|ckages nag slyly regular, ironic package| +78255|115324|27827|3|19|25447.08|0.03|0.03|R|F|1994-04-05|1994-05-07|1994-04-07|TAKE BACK RETURN|MAIL|l somas maintain fluffily. sly| +78280|842954|17987|1|35|66391.85|0.03|0.05|R|F|1992-09-20|1992-09-27|1992-10-16|TAKE BACK RETURN|REG AIR|es about the regular instructions| +78280|520270|7801|2|6|7741.50|0.04|0.02|A|F|1992-09-09|1992-11-17|1992-09-13|TAKE BACK RETURN|SHIP|s engage carefully. close requests| +78280|168029|18030|3|45|49365.90|0.08|0.06|R|F|1992-10-22|1992-10-18|1992-10-26|TAKE BACK RETURN|MAIL|ly special | +78280|56370|18872|4|18|23874.66|0.01|0.02|A|F|1992-12-06|1992-11-24|1992-12-23|TAKE BACK RETURN|REG AIR|unts. slyly even packages affix quick| +78280|398349|48350|5|45|65129.85|0.05|0.04|R|F|1992-12-14|1992-10-31|1992-12-25|TAKE BACK RETURN|TRUCK| to wake furious| +78281|589460|1972|1|36|55779.84|0.03|0.01|N|O|1997-07-29|1997-09-30|1997-08-11|COLLECT COD|TRUCK|oxes. final| +78281|39503|2004|2|14|20195.00|0.06|0.03|N|O|1997-07-23|1997-08-04|1997-07-27|COLLECT COD|RAIL|ets among the qui| +78281|910756|23275|3|2|3533.42|0.04|0.01|N|O|1997-09-01|1997-09-10|1997-09-25|DELIVER IN PERSON|SHIP|ts boost. fluf| +78282|615988|41013|1|27|51406.65|0.01|0.04|N|O|1996-07-18|1996-05-23|1996-08-06|NONE|TRUCK|furiously among the slyly bold deposits. | +78282|899628|12146|2|26|42317.08|0.06|0.02|N|O|1996-05-20|1996-06-01|1996-06-19|DELIVER IN PERSON|MAIL|ar deposits. instr| +78282|33510|46011|3|49|70731.99|0.01|0.03|N|O|1996-04-19|1996-05-22|1996-04-22|NONE|FOB|rs sleep slyly r| +78282|200489|12994|4|20|27789.40|0.07|0.02|N|O|1996-05-25|1996-06-02|1996-06-11|TAKE BACK RETURN|MAIL|cajole carefully. furiously final request| +78282|603496|3497|5|23|32187.58|0.08|0.06|N|O|1996-04-07|1996-05-26|1996-04-15|NONE|AIR|o wake alongside of the furiously | +78283|522371|34882|1|48|66880.80|0.05|0.02|R|F|1992-11-19|1992-09-04|1992-12-16|TAKE BACK RETURN|SHIP|uests wake. sl| +78283|479175|41685|2|5|5770.75|0.07|0.03|A|F|1992-07-28|1992-09-23|1992-08-06|TAKE BACK RETURN|AIR|gainst the | +78284|738698|1213|1|44|76413.04|0.03|0.00|N|O|1997-09-07|1997-08-11|1997-09-17|COLLECT COD|MAIL| about the furiously e| +78284|281023|18539|2|7|7028.07|0.03|0.03|N|O|1997-08-17|1997-08-22|1997-09-11|COLLECT COD|REG AIR|ntegrate accordi| +78284|140860|15865|3|44|83637.84|0.00|0.06|N|O|1997-08-16|1997-08-10|1997-08-20|TAKE BACK RETURN|MAIL|lar warhorses unwind furiously ab| +78284|422989|10514|4|19|36327.24|0.01|0.08|N|O|1997-07-16|1997-09-12|1997-07-21|TAKE BACK RETURN|REG AIR| to the speci| +78284|169468|31972|5|31|47661.26|0.06|0.03|N|O|1997-10-10|1997-08-06|1997-10-15|DELIVER IN PERSON|MAIL|ns. regular packa| +78284|244672|19681|6|11|17783.26|0.04|0.01|N|O|1997-07-30|1997-09-09|1997-08-07|NONE|REG AIR|eful, pending asymptotes need to| +78285|935631|10668|1|3|4999.77|0.09|0.02|N|O|1996-12-30|1997-01-08|1997-01-13|COLLECT COD|SHIP|s. slyly iron| +78285|147352|47353|2|42|58772.70|0.10|0.02|N|O|1996-12-18|1996-12-06|1996-12-19|TAKE BACK RETURN|MAIL|ounts affix blithely aro| +78285|537681|25212|3|22|37810.52|0.00|0.04|N|O|1996-11-10|1996-11-29|1996-12-04|COLLECT COD|TRUCK|posits. furiously | +78285|804115|29148|4|24|24457.68|0.01|0.04|N|O|1996-12-04|1996-12-02|1996-12-12|NONE|RAIL|uests. pending| +78286|795995|21026|1|35|73183.60|0.02|0.03|N|O|1996-05-27|1996-04-11|1996-06-26|NONE|REG AIR| quickly blithely bold pinto be| +78286|283821|21337|2|47|84826.07|0.03|0.01|N|O|1996-04-12|1996-05-25|1996-04-23|NONE|RAIL|hely furiously ex| +78286|166163|16164|3|25|30729.00|0.01|0.03|N|O|1996-05-15|1996-04-17|1996-06-03|COLLECT COD|RAIL|ckly ironic r| +78286|693768|6282|4|48|84563.04|0.03|0.06|N|O|1996-05-17|1996-04-06|1996-06-06|COLLECT COD|AIR|are carefully across the fu| +78287|971745|46784|1|4|7266.80|0.01|0.04|N|O|1996-03-29|1996-02-22|1996-04-09|TAKE BACK RETURN|RAIL|fluffily unusual t| +78287|111089|36094|2|12|13200.96|0.00|0.08|N|O|1996-01-19|1996-02-16|1996-01-30|NONE|TRUCK|efully final deposi| +78287|67244|4748|3|36|43604.64|0.06|0.05|N|O|1996-03-02|1996-02-09|1996-03-19|DELIVER IN PERSON|FOB|ely past the slyly bold foxes.| +78287|167926|5436|4|19|37884.48|0.04|0.06|N|O|1996-02-27|1996-03-07|1996-02-28|DELIVER IN PERSON|TRUCK|ress accounts use blithely exp| +78287|317491|42504|5|47|70898.56|0.01|0.07|N|O|1996-01-15|1996-02-08|1996-01-26|DELIVER IN PERSON|SHIP|ing to the bold, ironic| +78287|69503|19504|6|50|73625.00|0.01|0.03|N|O|1996-02-29|1996-01-27|1996-03-08|DELIVER IN PERSON|AIR| beans. bold pinto beans above the s| +78287|135474|35475|7|5|7547.35|0.06|0.00|N|O|1996-02-10|1996-02-01|1996-03-01|COLLECT COD|MAIL|uses sleep furiously. slyly pendin| +78312|907616|20135|1|12|19482.84|0.00|0.00|N|O|1997-12-22|1997-12-03|1998-01-14|TAKE BACK RETURN|MAIL|en foxes wake carefully fluffily even pa| +78312|299117|11623|2|18|20089.80|0.04|0.03|N|O|1998-01-11|1997-12-22|1998-01-19|DELIVER IN PERSON|TRUCK|foxes. quickly ironic dependencies wake q| +78312|249566|12071|3|21|31826.55|0.00|0.03|N|O|1998-01-10|1997-12-20|1998-01-15|DELIVER IN PERSON|AIR|boost quickly. unusual packages wak| +78312|443836|31361|4|28|49834.68|0.02|0.04|N|O|1997-12-22|1998-01-08|1997-12-25|NONE|RAIL|s. pending instructions haggl| +78312|548444|35975|5|42|62681.64|0.08|0.08|N|O|1998-01-28|1998-01-19|1998-02-22|COLLECT COD|TRUCK|ently final platelets. blithely unusua| +78312|691262|3776|6|33|41356.59|0.08|0.05|N|O|1998-01-29|1998-01-09|1998-02-26|NONE|AIR|ieve regular| +78313|368516|31024|1|5|7922.50|0.05|0.03|N|O|1997-08-28|1997-11-18|1997-08-31|DELIVER IN PERSON|MAIL|ly final accounts. regular pinto | +78313|647609|35146|2|18|28018.26|0.07|0.02|N|O|1997-09-18|1997-10-11|1997-10-08|COLLECT COD|SHIP|tructions are carefully. iron| +78313|357098|19606|3|39|45048.12|0.01|0.05|N|O|1997-11-12|1997-10-10|1997-11-18|TAKE BACK RETURN|RAIL|slyly ironic platelets integrate slyly| +78314|575205|12739|1|25|32004.50|0.05|0.01|A|F|1994-05-04|1994-05-29|1994-05-12|TAKE BACK RETURN|TRUCK|counts. quickly regular reques| +78314|466255|3783|2|15|18318.45|0.06|0.08|A|F|1994-03-17|1994-05-25|1994-04-10|DELIVER IN PERSON|MAIL|efully. pe| +78314|337159|37160|3|26|31099.64|0.05|0.05|R|F|1994-03-15|1994-05-24|1994-03-19|DELIVER IN PERSON|MAIL| furiously| +78314|616280|41305|4|32|38280.00|0.08|0.05|R|F|1994-06-06|1994-04-21|1994-06-23|DELIVER IN PERSON|RAIL|al accounts after | +78315|316574|29081|1|27|42945.12|0.00|0.00|N|O|1997-05-27|1997-07-02|1997-06-11|TAKE BACK RETURN|MAIL|ar ideas wake never along the s| +78315|649036|11549|2|27|26595.00|0.02|0.02|N|O|1997-06-28|1997-06-22|1997-07-01|COLLECT COD|SHIP|hely even requests. | +78315|337664|12677|3|30|51049.50|0.05|0.02|N|O|1997-06-27|1997-06-27|1997-07-07|NONE|AIR|y ironic orb| +78316|506135|31156|1|12|13693.32|0.02|0.06|N|O|1997-03-27|1997-05-17|1997-04-18|TAKE BACK RETURN|FOB| dependenc| +78316|604593|29618|2|18|26956.08|0.06|0.04|N|O|1997-06-05|1997-05-20|1997-06-17|COLLECT COD|RAIL|e furiously regular | +78316|386767|36768|3|20|37075.00|0.02|0.03|N|O|1997-04-02|1997-06-14|1997-04-28|COLLECT COD|AIR|ependencies poach ab| +78316|392401|42402|4|13|19414.07|0.08|0.04|N|O|1997-04-30|1997-05-06|1997-05-03|DELIVER IN PERSON|REG AIR|riously un| +78316|67285|17286|5|46|57604.88|0.00|0.02|N|O|1997-07-07|1997-06-11|1997-07-30|DELIVER IN PERSON|RAIL|ully final theodolites wake quickly iro| +78316|852052|39604|6|24|24096.24|0.01|0.03|N|O|1997-06-02|1997-05-31|1997-06-04|NONE|TRUCK| deposits. slyly pending accounts hang ca| +78316|430166|5183|7|10|10961.40|0.00|0.03|N|O|1997-05-29|1997-05-15|1997-06-02|NONE|TRUCK|s requests| +78317|797532|47533|1|30|48885.00|0.09|0.06|N|O|1997-06-28|1997-08-06|1997-07-24|NONE|FOB|refully even foxes boost dogged platelets.| +78318|1375|26376|1|50|63818.50|0.03|0.08|R|F|1994-01-26|1994-01-04|1994-02-06|DELIVER IN PERSON|AIR|lyly even r| +78318|106808|6809|2|44|79851.20|0.00|0.06|R|F|1993-12-07|1993-12-11|1993-12-09|TAKE BACK RETURN|SHIP|furiously ironic | +78318|111848|11849|3|46|85552.64|0.02|0.00|R|F|1993-12-02|1994-01-21|1993-12-22|COLLECT COD|RAIL|equests are carefully quickly regular| +78318|821409|33926|4|47|62526.92|0.09|0.01|R|F|1993-11-30|1993-12-29|1993-12-23|COLLECT COD|FOB|requests sleep fluffil| +78318|408995|46520|5|20|38079.40|0.04|0.01|A|F|1993-12-26|1994-02-04|1994-01-24|TAKE BACK RETURN|RAIL|ress, final d| +78319|936251|23806|1|47|60498.87|0.06|0.07|N|O|1997-10-09|1997-10-16|1997-10-15|NONE|RAIL|ss requests use slyly regular dependen| +78319|556024|43558|2|23|24840.00|0.09|0.06|N|O|1997-11-05|1997-11-03|1997-12-05|DELIVER IN PERSON|MAIL|inal, bold asymptotes about the regular | +78319|87485|24989|3|27|39756.96|0.04|0.01|N|O|1997-10-06|1997-10-17|1997-11-02|COLLECT COD|FOB|. slyly bold package| +78319|346763|34282|4|11|19907.25|0.10|0.02|N|O|1997-08-22|1997-09-16|1997-09-14|DELIVER IN PERSON|REG AIR| dolphins. theodolites haggle slyly.| +78344|736285|23828|1|8|10570.00|0.01|0.04|A|F|1992-05-30|1992-06-11|1992-06-05|TAKE BACK RETURN|FOB|ress accounts snooze slyly. acco| +78344|735155|22698|2|9|10711.08|0.09|0.01|R|F|1992-04-26|1992-05-17|1992-05-25|NONE|MAIL|s haggle against the slyly ironic deposi| +78344|741809|4324|3|16|29612.32|0.00|0.07|A|F|1992-05-06|1992-07-05|1992-05-31|COLLECT COD|MAIL|furiously special platelets. slyl| +78344|576032|1055|4|24|26592.24|0.03|0.06|A|F|1992-05-30|1992-06-04|1992-06-05|NONE|TRUCK|blithely unusual epitaphs affix slyly r| +78344|355916|5917|5|22|43381.80|0.05|0.07|R|F|1992-06-17|1992-05-14|1992-07-08|TAKE BACK RETURN|AIR|ages use blithely at the furiousl| +78344|869759|32277|6|44|76063.24|0.02|0.00|A|F|1992-07-28|1992-05-19|1992-08-13|TAKE BACK RETURN|REG AIR|ly unusual asymptotes are furiously reg| +78344|27317|14818|7|10|12443.10|0.05|0.06|A|F|1992-08-08|1992-06-16|1992-08-26|DELIVER IN PERSON|TRUCK|n blithely slyly | +78345|115569|3076|1|20|31691.20|0.00|0.08|N|O|1997-03-09|1997-03-01|1997-04-08|TAKE BACK RETURN|SHIP|f the slyly even tithes poa| +78345|359155|34170|2|50|60707.00|0.03|0.03|N|O|1997-03-23|1997-01-29|1997-04-07|TAKE BACK RETURN|TRUCK|e ironic ideas.| +78345|309670|47189|3|36|60467.76|0.01|0.04|N|O|1997-01-05|1997-03-01|1997-01-09|COLLECT COD|RAIL| against the final t| +78345|620130|7667|4|46|48304.60|0.01|0.06|N|O|1996-12-27|1997-02-07|1997-01-20|NONE|RAIL|s. carefully expre| +78345|512545|25056|5|44|68530.88|0.09|0.01|N|O|1997-02-03|1997-02-02|1997-02-23|DELIVER IN PERSON|TRUCK|theodolites. slyly final | +78346|961861|36900|1|22|42302.04|0.10|0.05|A|F|1993-02-01|1993-01-03|1993-02-10|TAKE BACK RETURN|AIR|ts against the attainments haggl| +78346|981148|6187|2|40|49164.00|0.08|0.01|R|F|1993-01-04|1992-11-26|1993-01-06|DELIVER IN PERSON|FOB|y. silent requests are furiously? | +78347|238507|1012|1|16|23127.84|0.00|0.04|N|O|1997-09-16|1997-09-27|1997-10-07|DELIVER IN PERSON|FOB| the slyly bold attain| +78347|576254|26255|2|4|5320.92|0.05|0.02|N|O|1997-10-16|1997-10-29|1997-10-27|COLLECT COD|SHIP|y furiously ironic accounts. | +78347|86989|24493|3|18|35567.64|0.00|0.06|N|O|1997-08-14|1997-10-06|1997-08-22|DELIVER IN PERSON|AIR|lyly quickly final deposits. fluffily e| +78347|11038|23539|4|3|2847.09|0.10|0.08|N|O|1997-12-01|1997-11-01|1997-12-11|DELIVER IN PERSON|RAIL|he pending, f| +78347|508173|45704|5|44|51970.60|0.06|0.04|N|O|1997-08-12|1997-09-23|1997-09-02|NONE|TRUCK|eodolites poach closely after the| +78347|851611|26646|6|30|46877.10|0.03|0.03|N|O|1997-10-19|1997-11-03|1997-11-12|TAKE BACK RETURN|SHIP|ets above the fluffily brave re| +78348|941528|41529|1|19|29820.12|0.01|0.07|N|O|1998-01-19|1998-03-16|1998-02-13|COLLECT COD|FOB|sh slyly slyly regular theodo| +78348|247062|47063|2|6|6054.30|0.09|0.07|N|O|1998-02-22|1998-03-23|1998-03-01|TAKE BACK RETURN|FOB|ag carefully about the b| +78348|367882|30390|3|36|70195.32|0.03|0.00|N|O|1998-05-14|1998-03-15|1998-05-17|DELIVER IN PERSON|AIR| special accounts sleep care| +78349|87174|49676|1|39|45285.63|0.10|0.03|N|O|1998-09-19|1998-07-25|1998-10-07|DELIVER IN PERSON|TRUCK|ncies promise. packages sleep furiously. fi| +78350|853723|16241|1|47|78803.96|0.05|0.06|A|F|1994-05-13|1994-07-01|1994-06-01|DELIVER IN PERSON|SHIP|e slyly final ideas. slyly unusual | +78350|517127|17128|2|44|50340.40|0.03|0.05|A|F|1994-05-09|1994-07-27|1994-06-08|DELIVER IN PERSON|SHIP|n accounts af| +78350|350109|25124|3|26|30136.34|0.09|0.01|R|F|1994-08-12|1994-07-30|1994-08-17|COLLECT COD|REG AIR|ackages. even somas kindle fl| +78351|882218|7253|1|40|48006.80|0.03|0.03|N|O|1995-09-28|1995-09-27|1995-09-30|COLLECT COD|AIR| ironic requests eat quickly. r| +78351|426476|14001|2|25|35061.25|0.02|0.08|N|O|1995-08-17|1995-08-10|1995-09-09|TAKE BACK RETURN|RAIL|ly regular accounts. silent| +78351|770786|8332|3|29|53845.75|0.01|0.03|N|O|1995-10-29|1995-08-04|1995-11-19|TAKE BACK RETURN|AIR|e carefully requests| +78376|982130|19688|1|11|13332.99|0.06|0.07|N|O|1998-09-02|1998-07-17|1998-10-02|COLLECT COD|AIR|ular platelets. silent pinto beans | +78376|647874|22899|2|42|76517.28|0.04|0.01|N|O|1998-08-05|1998-07-01|1998-08-24|NONE|MAIL|encies. bravely regu| +78376|802084|14601|3|5|4930.20|0.02|0.00|N|O|1998-07-20|1998-08-20|1998-07-26|DELIVER IN PERSON|AIR|beans sleep carefully | +78377|445080|20097|1|6|6150.36|0.10|0.02|R|F|1994-02-05|1993-12-10|1994-02-24|NONE|SHIP|ideas use. | +78377|456034|43562|2|14|13860.14|0.00|0.04|R|F|1993-11-06|1993-12-02|1993-11-19|DELIVER IN PERSON|MAIL|egular ideas. fu| +78377|553104|15616|3|32|37026.56|0.08|0.05|R|F|1994-02-08|1993-12-08|1994-02-16|COLLECT COD|SHIP| express r| +78377|9974|47475|4|43|81010.71|0.06|0.08|R|F|1994-02-15|1993-11-25|1994-02-26|DELIVER IN PERSON|SHIP|onic packages detec| +78377|631791|6816|5|8|13782.08|0.04|0.05|R|F|1994-02-08|1994-01-15|1994-02-25|COLLECT COD|FOB|usly ironic theodolites sl| +78378|84898|34899|1|24|45189.36|0.05|0.05|R|F|1993-03-07|1993-03-01|1993-03-31|COLLECT COD|RAIL|onic instructions dazzle | +78378|879210|29211|2|5|5945.85|0.02|0.05|A|F|1993-03-16|1993-04-07|1993-03-19|TAKE BACK RETURN|REG AIR|s. carefully p| +78378|873288|35806|3|20|25224.80|0.05|0.03|R|F|1993-04-28|1993-02-20|1993-05-01|NONE|AIR|ely unusual reque| +78378|342783|42784|4|40|73030.80|0.02|0.08|R|F|1993-01-21|1993-03-06|1993-02-04|TAKE BACK RETURN|MAIL|s impress. slyly final deposits wake caref| +78378|146572|9075|5|32|51794.24|0.10|0.02|A|F|1993-03-31|1993-04-07|1993-04-12|TAKE BACK RETURN|RAIL| final platelets. special deposits shal| +78378|425672|25673|6|25|39941.25|0.09|0.01|R|F|1993-04-23|1993-03-26|1993-05-08|TAKE BACK RETURN|FOB|latelets. regular, silent requests boost | +78379|554934|42468|1|3|5966.73|0.00|0.03|N|O|1997-11-21|1997-11-28|1997-11-25|TAKE BACK RETURN|MAIL|onic dolphins. carefu| +78379|763786|13787|2|49|90637.75|0.05|0.02|N|O|1997-12-17|1997-12-18|1997-12-26|DELIVER IN PERSON|MAIL|riously after the requests. account| +78379|948753|11272|3|34|61258.14|0.04|0.01|N|O|1998-02-01|1997-11-29|1998-02-07|COLLECT COD|REG AIR|the slyly ironic pinto beans h| +78379|676711|26712|4|26|43879.68|0.07|0.02|N|O|1998-02-03|1998-01-16|1998-03-01|COLLECT COD|MAIL|ngage among t| +78379|474466|49485|5|45|64819.80|0.03|0.07|N|O|1997-12-06|1997-11-23|1998-01-05|NONE|AIR| silent dolphins! blithely special pack| +78379|337516|23|6|42|65247.00|0.10|0.05|N|O|1997-10-28|1997-12-10|1997-11-25|DELIVER IN PERSON|MAIL| regular ideas. regular attainments abou| +78379|629396|29397|7|10|13253.60|0.03|0.05|N|O|1998-01-30|1997-12-14|1998-02-06|NONE|TRUCK|kly regular, iron| +78380|257238|19744|1|28|33466.16|0.04|0.06|N|O|1997-12-15|1997-11-16|1998-01-12|COLLECT COD|TRUCK|serve slyly final asympto| +78380|394094|6602|2|11|13068.88|0.09|0.03|N|O|1997-10-13|1997-12-12|1997-11-12|NONE|TRUCK| about the packages haggle furiousl| +78380|524864|12395|3|23|43443.32|0.09|0.03|N|O|1998-01-12|1997-12-13|1998-01-15|DELIVER IN PERSON|MAIL|ular epitaphs. slyly ironic accoun| +78380|376586|39094|4|37|61515.09|0.01|0.07|N|O|1997-09-29|1997-10-27|1997-10-19|COLLECT COD|MAIL|dencies. regular deposi| +78380|276280|13796|5|33|41456.91|0.08|0.05|N|O|1998-01-01|1997-12-11|1998-01-27|TAKE BACK RETURN|SHIP|bold foxes. ironic account| +78381|471936|21937|1|28|53421.48|0.05|0.08|N|O|1996-08-21|1996-08-09|1996-08-24|DELIVER IN PERSON|MAIL|le after the quickly fi| +78381|813158|13159|2|5|5355.55|0.01|0.07|N|O|1996-07-31|1996-08-27|1996-08-29|DELIVER IN PERSON|AIR|l deposits haggle furiously into the car| +78381|740579|15608|3|41|66401.14|0.00|0.08|N|O|1996-08-19|1996-08-11|1996-09-13|DELIVER IN PERSON|SHIP|oxes ought to wake slyly a| +78382|671327|46354|1|49|63616.21|0.00|0.06|N|O|1996-06-12|1996-05-30|1996-06-19|TAKE BACK RETURN|RAIL|unts x-ray slyly a| +78382|991079|41080|2|14|16380.42|0.01|0.03|N|O|1996-05-27|1996-06-05|1996-05-31|NONE|REG AIR|es sleep carefully special, pending | +78383|149959|24964|1|43|86384.85|0.10|0.01|R|F|1993-05-12|1993-06-01|1993-06-08|COLLECT COD|MAIL|boost: ironic, ev| +78383|360779|23287|2|8|14718.08|0.00|0.01|A|F|1993-04-29|1993-06-27|1993-05-27|COLLECT COD|SHIP|s. blithely daring foxes nod slyl| +78408|660566|23080|1|6|9159.18|0.02|0.08|N|O|1995-10-25|1995-10-13|1995-10-26|COLLECT COD|TRUCK|uriously after the deposits. final platel| +78408|123631|36134|2|34|56257.42|0.06|0.05|N|O|1995-11-14|1995-11-11|1995-12-12|TAKE BACK RETURN|FOB|slyly regular instructions ha| +78409|739930|27473|1|42|82735.80|0.02|0.07|N|O|1998-06-22|1998-07-19|1998-07-04|DELIVER IN PERSON|SHIP|e according to| +78409|1899|14400|2|22|39619.58|0.08|0.00|N|O|1998-05-31|1998-06-06|1998-06-20|COLLECT COD|AIR|fter the somet| +78409|905690|43245|3|43|72912.95|0.10|0.08|N|O|1998-05-30|1998-07-09|1998-06-14|NONE|AIR|ily furious packages sleep among| +78409|917084|42121|4|34|37435.36|0.10|0.00|N|O|1998-06-19|1998-06-23|1998-07-09|COLLECT COD|TRUCK|ly. carefully pending requests a| +78410|944272|31827|1|10|13162.30|0.00|0.08|N|O|1997-03-06|1997-01-19|1997-03-15|COLLECT COD|TRUCK|he requests. blithely ironic deposits slee| +78410|363521|38536|2|50|79225.50|0.07|0.03|N|O|1996-12-30|1997-03-03|1996-12-31|TAKE BACK RETURN|REG AIR| foxes. fluffily final pinto | +78410|681475|31476|3|47|68452.68|0.04|0.01|N|O|1997-01-24|1997-01-27|1997-02-17|COLLECT COD|SHIP|eans. ironic, unusual foxes doze after t| +78410|544007|6518|4|18|18917.64|0.07|0.05|N|O|1997-04-06|1997-03-04|1997-04-18|NONE|TRUCK|ncies. bold deposit| +78410|116646|29149|5|27|44891.28|0.06|0.08|N|O|1997-03-16|1997-02-23|1997-04-08|TAKE BACK RETURN|TRUCK|und the carefully ir| +78410|467785|17786|6|32|56088.32|0.08|0.00|N|O|1996-12-28|1997-02-28|1997-01-13|TAKE BACK RETURN|AIR|etect carefully blithely blithe account| +78410|49263|24264|7|25|30306.50|0.04|0.03|N|O|1997-02-16|1997-02-05|1997-03-10|TAKE BACK RETURN|TRUCK|e blithely. final, sile| +78411|947809|35364|1|42|77983.92|0.01|0.03|N|O|1996-04-07|1996-03-27|1996-04-22|COLLECT COD|SHIP|requests cajole quickly slyl| +78411|811839|11840|2|26|45520.54|0.08|0.02|N|O|1996-03-05|1996-03-21|1996-03-28|TAKE BACK RETURN|TRUCK|cross the | +78411|566432|28944|3|13|19479.33|0.07|0.08|N|O|1996-02-19|1996-02-28|1996-03-16|COLLECT COD|TRUCK| platelets s| +78411|10868|35869|4|35|62260.10|0.05|0.00|N|O|1996-03-22|1996-04-11|1996-03-30|TAKE BACK RETURN|SHIP|run furiously | +78411|653724|28751|5|48|80529.12|0.08|0.05|N|O|1996-02-10|1996-03-02|1996-02-21|NONE|SHIP|xpress cou| +78412|148112|23117|1|48|55685.28|0.04|0.05|N|O|1996-06-12|1996-07-08|1996-07-04|TAKE BACK RETURN|TRUCK|y regular realms. pending packages sle| +78413|442468|4977|1|30|42313.20|0.00|0.05|N|O|1995-11-17|1995-10-30|1995-11-18|NONE|RAIL|requests. furiously even accounts ca| +78413|548334|48335|2|18|24881.58|0.06|0.08|N|O|1995-08-21|1995-10-22|1995-09-19|DELIVER IN PERSON|RAIL|ans wake along the carefully pending asympt| +78413|834081|21630|3|24|24360.96|0.03|0.05|N|O|1995-09-02|1995-09-25|1995-09-30|NONE|RAIL|le deposits| +78413|385657|48165|4|21|36595.44|0.09|0.00|N|O|1995-08-17|1995-10-13|1995-09-01|DELIVER IN PERSON|FOB| above the regular packages | +78413|736770|24313|5|46|83110.04|0.00|0.06|N|O|1995-09-18|1995-09-28|1995-10-02|DELIVER IN PERSON|AIR| regular accounts. blithely final accoun| +78414|155852|5853|1|11|20986.35|0.02|0.04|R|F|1994-02-07|1994-04-09|1994-02-18|DELIVER IN PERSON|TRUCK|liers. waters haggle carefully bold p| +78415|201578|1579|1|36|53264.16|0.03|0.05|R|F|1993-08-03|1993-07-14|1993-08-20|COLLECT COD|REG AIR|ng to the | +78440|588700|26234|1|12|21464.16|0.09|0.04|A|F|1994-10-17|1994-08-17|1994-10-28|TAKE BACK RETURN|TRUCK|ntegrate carefully. packages nag caref| +78440|267118|29624|2|12|13021.20|0.07|0.00|R|F|1994-08-09|1994-08-07|1994-08-23|TAKE BACK RETURN|RAIL| the furiously even theodolites--| +78440|449716|12225|3|26|43307.94|0.04|0.01|A|F|1994-10-13|1994-08-25|1994-10-18|COLLECT COD|MAIL|ecial ideas nag blithely agains| +78441|307754|20261|1|39|68707.86|0.10|0.08|R|F|1993-05-02|1993-04-29|1993-05-23|NONE|FOB|ep quickly above the| +78441|405369|30386|2|8|10194.72|0.06|0.06|A|F|1993-05-05|1993-04-06|1993-05-24|COLLECT COD|TRUCK|fully pendi| +78442|944298|6817|1|45|60401.25|0.10|0.03|N|O|1998-04-05|1998-06-28|1998-04-15|DELIVER IN PERSON|SHIP|c deposits detect| +78442|801555|39104|2|35|50977.85|0.00|0.02|N|O|1998-06-10|1998-05-02|1998-07-03|COLLECT COD|AIR|cuses cajole quickly bold pack| +78442|719940|44969|3|15|29398.65|0.02|0.04|N|O|1998-07-05|1998-05-02|1998-08-02|COLLECT COD|FOB|haggle slyly? blithely bold pinto bean| +78442|18285|30786|4|44|52944.32|0.01|0.06|N|O|1998-07-05|1998-06-19|1998-07-13|TAKE BACK RETURN|RAIL| accounts. fluff| +78442|305880|30893|5|34|64119.58|0.00|0.03|N|O|1998-05-09|1998-06-14|1998-05-11|COLLECT COD|SHIP|packages sleep idl| +78443|987934|454|1|45|90985.05|0.06|0.07|N|O|1995-09-04|1995-10-09|1995-09-07|DELIVER IN PERSON|SHIP|s integrate fluffil| +78444|114566|2073|1|29|45836.24|0.01|0.01|N|O|1996-06-20|1996-06-30|1996-07-15|COLLECT COD|SHIP|ts. slyly permanent plat| +78444|508951|8952|2|19|37238.67|0.10|0.08|N|O|1996-08-24|1996-07-11|1996-09-03|NONE|SHIP|s. blithely final warthogs x-ray blith| +78444|925647|13202|3|26|43487.60|0.05|0.02|N|O|1996-07-29|1996-07-14|1996-08-01|COLLECT COD|TRUCK|re. slyly unu| +78444|339023|26542|4|18|19116.18|0.00|0.07|N|O|1996-06-18|1996-06-28|1996-07-10|DELIVER IN PERSON|MAIL|ular courts about the si| +78445|714972|27487|1|17|33777.98|0.00|0.08|N|O|1997-10-31|1997-10-22|1997-11-13|TAKE BACK RETURN|SHIP|packages. regular deposits a| +78445|530272|17803|2|14|18231.50|0.06|0.07|N|O|1997-09-27|1997-10-01|1997-10-03|DELIVER IN PERSON|FOB|ithely thin| +78445|267805|17806|3|46|81548.34|0.10|0.00|N|O|1997-11-30|1997-10-24|1997-12-05|NONE|RAIL|e fluffily bold,| +78445|985831|48351|4|36|69004.44|0.08|0.08|N|O|1997-09-29|1997-10-07|1997-10-17|DELIVER IN PERSON|MAIL|y regular foxes. carefully regular packages| +78445|851465|1466|5|39|55240.38|0.03|0.00|N|O|1997-12-12|1997-11-08|1998-01-11|NONE|MAIL|ronic platelets should h| +78446|346253|46254|1|7|9094.68|0.09|0.00|N|O|1995-12-31|1995-12-13|1996-01-20|COLLECT COD|TRUCK|nos doubt quietly pending pack| +78446|462156|24666|2|21|23480.73|0.02|0.08|N|O|1995-10-21|1995-11-22|1995-10-25|COLLECT COD|REG AIR|e ideas. slyly express packages unwind s| +78446|451937|39465|3|1|1888.91|0.09|0.05|N|O|1995-12-19|1995-12-15|1995-12-31|DELIVER IN PERSON|SHIP|ve the slyly express packages. furio| +78446|702522|40065|4|31|47259.19|0.05|0.02|N|O|1996-01-23|1995-12-08|1996-02-09|DELIVER IN PERSON|TRUCK|d the quickly| +78446|282467|44973|5|10|14494.50|0.09|0.07|N|O|1995-12-05|1995-11-16|1995-12-25|COLLECT COD|TRUCK|s sleep requ| +78446|421873|21874|6|45|80768.25|0.01|0.06|N|O|1996-01-17|1995-12-26|1996-01-31|NONE|TRUCK|after the silently bold foxes. furiou| +78446|412267|49792|7|9|10613.16|0.05|0.08|N|O|1995-10-11|1995-12-11|1995-10-27|TAKE BACK RETURN|TRUCK|about the final | +78447|968576|43615|1|19|31246.07|0.08|0.03|A|F|1994-07-13|1994-08-30|1994-07-16|NONE|REG AIR|heodolites use bli| +78447|850259|25294|2|43|51996.03|0.05|0.06|A|F|1994-07-07|1994-09-24|1994-08-02|COLLECT COD|SHIP|he blithely unusu| +78447|299905|49906|3|32|60956.48|0.08|0.00|R|F|1994-07-10|1994-08-13|1994-08-09|DELIVER IN PERSON|TRUCK|uriously silent| +78447|490765|28293|4|1|1755.74|0.08|0.00|A|F|1994-10-13|1994-07-29|1994-11-02|NONE|AIR| haggle. special, final | +78447|281462|18978|5|4|5773.80|0.03|0.00|A|F|1994-08-04|1994-08-02|1994-09-02|DELIVER IN PERSON|SHIP|ssly enticing packages. quickly express r| +78447|524906|49927|6|35|67580.80|0.03|0.02|R|F|1994-10-19|1994-09-14|1994-11-04|DELIVER IN PERSON|REG AIR|y even courts use furiously bold acco| +78472|945669|8188|1|26|44580.12|0.06|0.00|A|F|1995-01-23|1994-12-08|1995-02-21|TAKE BACK RETURN|TRUCK| furiously final instructions cajole| +78472|847089|47090|2|36|37297.44|0.01|0.04|A|F|1994-10-18|1994-11-23|1994-11-05|DELIVER IN PERSON|FOB|serve about the regular req| +78472|22444|9945|3|24|32794.56|0.05|0.00|A|F|1994-12-07|1994-12-05|1994-12-14|NONE|AIR|packages are furiously| +78472|205626|5627|4|32|49011.52|0.07|0.01|A|F|1994-11-04|1994-12-25|1994-11-26|COLLECT COD|MAIL|atelets haggle blithely ab| +78472|942992|42993|5|2|4069.90|0.01|0.01|R|F|1994-10-15|1994-12-27|1994-11-12|COLLECT COD|AIR| accounts c| +78473|611883|11884|1|11|19743.35|0.08|0.02|N|O|1996-12-25|1997-01-28|1997-01-14|DELIVER IN PERSON|RAIL|ajole about the final instructions. | +78473|915332|27851|2|19|25598.51|0.04|0.04|N|O|1997-03-14|1997-01-08|1997-03-18|DELIVER IN PERSON|TRUCK| quickly final | +78474|185798|35799|1|27|50862.33|0.06|0.05|R|F|1995-02-09|1995-01-18|1995-03-04|TAKE BACK RETURN|TRUCK| express depos| +78475|332847|20366|1|46|86472.18|0.08|0.08|N|O|1998-04-30|1998-04-04|1998-05-22|COLLECT COD|FOB|y of the bol| +78475|145861|20866|2|15|28602.90|0.10|0.07|N|O|1998-03-09|1998-02-19|1998-04-04|DELIVER IN PERSON|REG AIR|carefully pending packages after the | +78475|479338|41848|3|27|35567.37|0.05|0.02|N|O|1998-02-18|1998-03-03|1998-03-14|TAKE BACK RETURN|REG AIR|lar deposits wake blithely| +78475|218643|43652|4|36|56218.68|0.04|0.07|N|O|1998-03-16|1998-02-25|1998-03-25|COLLECT COD|AIR|egular somas. c| +78475|723424|48453|5|22|31842.58|0.06|0.06|N|O|1998-04-10|1998-02-16|1998-04-17|DELIVER IN PERSON|AIR| brave packages. deposits | +78476|776557|39073|1|20|32670.40|0.09|0.01|N|O|1996-06-28|1996-07-04|1996-06-29|NONE|AIR|ter the blithely even d| +78477|422008|22009|1|45|41849.10|0.02|0.08|R|F|1994-09-03|1994-09-21|1994-09-11|DELIVER IN PERSON|TRUCK|ecial, pending pa| +78478|501005|13516|1|8|8047.84|0.02|0.01|N|O|1998-04-24|1998-06-10|1998-05-06|NONE|FOB|s at the ironic, regular packages engag| +78478|385873|35874|2|43|84230.98|0.09|0.04|N|O|1998-07-06|1998-05-14|1998-07-11|COLLECT COD|FOB|sits nag always about the ironic pearls.| +78478|367493|5015|3|8|12483.84|0.06|0.07|N|O|1998-07-06|1998-05-29|1998-08-02|COLLECT COD|FOB|y ironic ideas after the packages ser| +78478|452364|2365|4|35|46071.90|0.07|0.05|N|O|1998-07-30|1998-06-28|1998-08-20|NONE|REG AIR|efully ironic sentiments breach furio| +78478|866608|41643|5|24|37789.44|0.02|0.01|N|O|1998-07-02|1998-05-06|1998-07-06|COLLECT COD|TRUCK|ly with the dogged| +78479|652727|40267|1|40|67187.60|0.06|0.07|N|O|1997-06-28|1997-08-16|1997-07-24|DELIVER IN PERSON|AIR|ely ironic deposits nod. fluffi| +78479|376824|26825|2|28|53222.68|0.01|0.08|N|O|1997-09-06|1997-08-19|1997-09-15|TAKE BACK RETURN|RAIL|e. requests are carefully ironic reque| +78479|272322|9838|3|12|15531.72|0.08|0.02|N|O|1997-08-20|1997-08-15|1997-09-05|TAKE BACK RETURN|TRUCK|he accounts. fluffily final| +78479|906606|19125|4|43|69340.08|0.01|0.07|N|O|1997-10-04|1997-09-23|1997-11-03|TAKE BACK RETURN|SHIP|ss deposits. final accounts wake qui| +78504|454648|17158|1|30|48078.60|0.07|0.05|N|O|1997-06-02|1997-07-21|1997-06-25|COLLECT COD|AIR|ithely pending warhorses wake quickl| +78505|165281|27785|1|14|18847.92|0.09|0.04|N|O|1996-07-22|1996-07-26|1996-08-20|COLLECT COD|SHIP|the special sauternes. unusual account| +78505|863440|13441|2|19|26664.60|0.09|0.01|N|O|1996-08-04|1996-07-08|1996-08-30|COLLECT COD|SHIP|l dependencies. daring, final sheaves ar| +78505|829028|4061|3|26|24881.48|0.05|0.07|N|O|1996-07-15|1996-06-10|1996-08-14|TAKE BACK RETURN|REG AIR|slyly regular waters i| +78506|377176|27177|1|36|45113.76|0.01|0.07|N|O|1996-04-07|1996-03-07|1996-05-03|DELIVER IN PERSON|SHIP|unusual sentiments. fluf| +78506|196367|33877|2|38|55607.68|0.07|0.05|N|O|1996-01-22|1996-02-11|1996-02-21|NONE|MAIL|ly unusual acc| +78506|330736|5749|3|23|40634.56|0.10|0.08|N|O|1996-03-07|1996-03-08|1996-04-02|COLLECT COD|FOB|sual excuses. excuses cajole slyly | +78506|676513|14053|4|10|14894.80|0.04|0.01|N|O|1996-03-11|1996-02-23|1996-03-22|DELIVER IN PERSON|REG AIR|re fluffily furiously regul| +78506|145801|45802|5|1|1846.80|0.00|0.01|N|O|1996-05-06|1996-02-21|1996-05-11|NONE|REG AIR|leep special, regular packages: reg| +78506|474690|24691|6|33|54934.11|0.03|0.03|N|O|1996-02-14|1996-02-22|1996-02-17|DELIVER IN PERSON|FOB|al requests. ironic th| +78506|107392|44899|7|23|32185.97|0.05|0.03|N|O|1996-03-25|1996-03-24|1996-04-20|DELIVER IN PERSON|MAIL|its. regular instruct| +78507|935029|47548|1|5|5319.90|0.01|0.04|R|F|1994-08-23|1994-08-18|1994-09-17|TAKE BACK RETURN|RAIL|counts sleep. bold| +78507|29281|16782|2|16|19364.48|0.07|0.05|A|F|1994-10-08|1994-08-24|1994-11-06|TAKE BACK RETURN|RAIL|s boost fluffily final dependencies. sly| +78507|117490|17491|3|19|28642.31|0.03|0.00|A|F|1994-10-31|1994-09-20|1994-11-21|DELIVER IN PERSON|RAIL| sleep carefully. regular, un| +78507|642686|30223|4|19|30944.35|0.00|0.06|R|F|1994-09-04|1994-08-26|1994-09-11|TAKE BACK RETURN|AIR|ironic, regular requests are idly! pa| +78508|669350|31864|1|31|40898.92|0.10|0.08|R|F|1995-02-06|1995-01-16|1995-02-27|DELIVER IN PERSON|RAIL|ptotes. regular, ironic ideas use furiously| +78508|758288|33319|2|14|18847.50|0.05|0.07|A|F|1994-10-26|1994-11-28|1994-11-24|COLLECT COD|RAIL|ct. express braids cajole according to| +78508|545362|7873|3|42|59108.28|0.03|0.06|A|F|1994-12-04|1994-12-30|1994-12-21|NONE|MAIL|atelets dazzle qui| +78508|893424|30976|4|33|46773.54|0.01|0.08|A|F|1995-01-04|1995-01-20|1995-01-10|COLLECT COD|RAIL| run blithely bold depo| +78509|524957|12488|1|1|1981.93|0.01|0.03|R|F|1993-07-05|1993-08-11|1993-07-21|NONE|AIR|uffily final deposits. even| +78509|946994|46995|2|48|97965.60|0.06|0.01|A|F|1993-06-25|1993-08-07|1993-07-18|COLLECT COD|AIR|es wake among the even, pending requests. f| +78509|122697|35200|3|6|10318.14|0.04|0.04|R|F|1993-08-24|1993-07-24|1993-09-04|TAKE BACK RETURN|TRUCK| stealthily even deposits wake among the un| +78509|163502|38509|4|26|40703.00|0.02|0.02|A|F|1993-09-23|1993-09-02|1993-10-16|NONE|SHIP|out the final requests. express re| +78509|963790|1348|5|24|44490.00|0.06|0.05|A|F|1993-06-27|1993-09-03|1993-06-30|COLLECT COD|RAIL|ar accounts n| +78509|414726|14727|6|43|70550.10|0.04|0.02|R|F|1993-07-28|1993-07-22|1993-08-11|COLLECT COD|MAIL|ven accounts are. pinto beans cajol| +78509|287650|37651|7|43|70418.52|0.06|0.02|R|F|1993-09-26|1993-08-13|1993-10-25|NONE|MAIL|ic ideas. packages sleep car| +78510|525090|25091|1|6|6690.42|0.04|0.02|N|O|1998-01-23|1998-01-25|1998-02-02|COLLECT COD|FOB|even pinto beans haggle special fo| +78510|174668|49675|2|1|1742.66|0.04|0.07|N|O|1998-03-12|1998-01-04|1998-03-28|NONE|REG AIR|ic accounts are carefully slyly | +78510|644101|6614|3|3|3135.21|0.08|0.08|N|O|1998-02-27|1998-02-16|1998-03-11|NONE|AIR|usly. blithely ironic depend| +78510|395595|8103|4|7|11834.06|0.06|0.05|N|O|1997-12-02|1998-01-21|1997-12-12|DELIVER IN PERSON|RAIL|ons. carefully final accounts | +78510|761391|36422|5|16|23237.76|0.00|0.05|N|O|1998-03-22|1997-12-22|1998-03-26|NONE|AIR|s. regular Tiresias cajol| +78510|682881|45395|6|19|35413.15|0.04|0.05|N|O|1997-12-31|1998-02-18|1998-01-01|TAKE BACK RETURN|MAIL|ully against the silent, fluff| +78511|163515|13516|1|25|39462.75|0.02|0.06|N|O|1995-06-29|1995-06-03|1995-07-02|TAKE BACK RETURN|SHIP|to the carefully quie| +78511|191084|3588|2|18|21151.44|0.07|0.02|R|F|1995-03-25|1995-05-09|1995-04-22|DELIVER IN PERSON|REG AIR|l packages sleep. enticingly| +78511|535169|10190|3|6|7224.84|0.07|0.01|A|F|1995-05-05|1995-05-18|1995-05-25|DELIVER IN PERSON|RAIL|s kindle quickly. careful, even packages a| +78511|577417|39929|4|32|47820.48|0.03|0.01|R|F|1995-03-15|1995-05-26|1995-04-03|TAKE BACK RETURN|REG AIR|s haggle. excuse| +78511|642221|4734|5|10|11631.90|0.01|0.02|A|F|1995-05-12|1995-05-01|1995-05-25|TAKE BACK RETURN|MAIL|kages sleep furiously near | +78511|800777|778|6|16|26843.68|0.01|0.05|A|F|1995-05-09|1995-05-05|1995-05-22|TAKE BACK RETURN|TRUCK|eep slyly according to the always ironic| +78511|656790|31817|7|15|26201.40|0.01|0.03|R|F|1995-05-20|1995-05-12|1995-05-22|COLLECT COD|SHIP| requests. express, regular instr| +78536|665339|40366|1|49|63910.70|0.06|0.04|R|F|1992-05-21|1992-05-18|1992-05-25|NONE|AIR|s. final asymptotes cajole quickly | +78536|350498|499|2|5|7742.40|0.03|0.08|R|F|1992-04-28|1992-06-27|1992-05-25|COLLECT COD|RAIL|regularly express ac| +78537|620651|20652|1|39|61293.18|0.08|0.05|A|F|1995-05-24|1995-05-23|1995-05-30|COLLECT COD|RAIL|grate furiously furiously ironic req| +78537|275026|37|2|6|6006.06|0.10|0.03|N|F|1995-06-08|1995-07-12|1995-07-04|NONE|SHIP|de of the regular dugouts. carefu| +78537|353792|41314|3|20|36915.60|0.07|0.05|N|O|1995-07-10|1995-06-23|1995-07-20|DELIVER IN PERSON|REG AIR|fily agains| +78537|177203|2210|4|19|24323.80|0.03|0.05|N|F|1995-06-16|1995-06-25|1995-06-24|DELIVER IN PERSON|TRUCK| regular ideas alongside of the careful| +78537|236063|23576|5|30|29971.50|0.08|0.04|R|F|1995-04-26|1995-07-10|1995-05-01|NONE|AIR|en pearls among the pinto be| +78538|152323|39833|1|49|67390.68|0.03|0.04|A|F|1994-09-16|1994-10-14|1994-09-21|NONE|FOB|row carefully | +78538|83962|8965|2|5|9729.80|0.02|0.07|A|F|1994-10-16|1994-10-16|1994-11-07|NONE|REG AIR|ully blithely | +78539|291706|29222|1|23|39046.87|0.06|0.08|R|F|1992-07-25|1992-09-16|1992-08-01|DELIVER IN PERSON|AIR|he instructions ha| +78539|689385|1899|2|34|46727.90|0.03|0.01|R|F|1992-07-09|1992-08-30|1992-07-25|NONE|FOB|c deposits. furiously ironic accounts amo| +78539|485071|10090|3|3|3168.15|0.02|0.04|R|F|1992-10-10|1992-08-02|1992-10-27|DELIVER IN PERSON|SHIP|y carefully final acc| +78539|578920|41432|4|28|55969.20|0.07|0.03|A|F|1992-07-19|1992-07-27|1992-07-30|TAKE BACK RETURN|SHIP|iously sil| +78539|907792|32829|5|39|70190.25|0.10|0.05|A|F|1992-08-29|1992-08-21|1992-09-15|COLLECT COD|TRUCK|cajole according to the carefully even in| +78539|243804|31317|6|6|10486.74|0.10|0.04|A|F|1992-08-11|1992-08-08|1992-08-27|NONE|RAIL|t platelets wake furiously| +78539|605430|42967|7|25|33385.00|0.03|0.03|R|F|1992-08-14|1992-08-01|1992-08-29|DELIVER IN PERSON|AIR|egular deposits. fluffily even | +78540|457523|45051|1|42|62181.00|0.06|0.03|N|O|1996-12-01|1996-09-09|1996-12-12|NONE|MAIL|ependencies across | +78541|804333|4334|1|23|28457.67|0.08|0.05|A|F|1992-07-24|1992-08-27|1992-08-01|COLLECT COD|AIR|above the quickly regular deposits. slyly | +78541|411151|23660|2|40|42485.20|0.08|0.03|A|F|1992-09-22|1992-09-04|1992-10-20|NONE|RAIL|al packages. fluffily regular deposits k| +78541|203964|28973|3|15|28019.25|0.03|0.06|R|F|1992-07-06|1992-08-03|1992-07-11|TAKE BACK RETURN|REG AIR|. carefully unusual r| +78541|7878|7879|4|9|16072.83|0.07|0.06|A|F|1992-09-26|1992-09-12|1992-10-16|DELIVER IN PERSON|SHIP|ular requests are near the slyly | +78541|400935|38460|5|41|75272.31|0.05|0.04|R|F|1992-09-23|1992-08-22|1992-10-10|TAKE BACK RETURN|RAIL|ely unusual Tiresias sleep fu| +78542|914337|39374|1|44|59456.76|0.00|0.02|N|O|1998-01-31|1998-01-25|1998-02-01|NONE|SHIP|pains. doggedly r| +78542|259499|34510|2|35|51046.80|0.09|0.01|N|O|1997-12-20|1998-02-20|1998-01-01|TAKE BACK RETURN|AIR|nag carefully furiously pendin| +78542|396399|8907|3|2|2990.76|0.08|0.03|N|O|1997-12-12|1998-03-02|1997-12-31|NONE|SHIP|ongside of the furiously bold pinto be| +78542|274306|49317|4|19|24325.51|0.03|0.05|N|O|1998-01-25|1998-02-27|1998-02-24|TAKE BACK RETURN|REG AIR|slyly. even cou| +78542|249436|36949|5|7|9697.94|0.01|0.01|N|O|1998-01-19|1998-02-09|1998-01-21|NONE|AIR|lyly even deposits. pending,| +78543|709993|9994|1|11|22032.56|0.00|0.05|N|O|1997-05-13|1997-02-20|1997-05-22|NONE|FOB|ests! blithely ironic asymptotes | +78543|838773|38774|2|50|85586.50|0.05|0.04|N|O|1997-04-02|1997-02-13|1997-05-02|DELIVER IN PERSON|TRUCK|iously express accounts| +78568|425514|38023|1|46|66216.54|0.01|0.01|N|O|1997-10-22|1997-11-07|1997-10-24|TAKE BACK RETURN|TRUCK| use quickly f| +78569|136632|36633|1|10|16686.30|0.08|0.07|A|F|1993-11-28|1993-12-29|1993-12-08|TAKE BACK RETURN|SHIP|ounts. theodolite| +78569|358985|34000|2|12|24527.64|0.02|0.05|R|F|1994-01-03|1993-12-13|1994-01-04|TAKE BACK RETURN|TRUCK|ckages sle| +78569|450870|871|3|29|52804.65|0.05|0.05|A|F|1993-11-30|1993-11-25|1993-12-28|NONE|FOB| play slyly slyly unusual fo| +78569|759952|9953|4|43|86512.56|0.07|0.04|R|F|1993-12-27|1994-01-17|1994-01-20|NONE|AIR|t deposits. slyly expre| +78569|511664|11665|5|2|3351.28|0.02|0.03|A|F|1993-11-15|1993-12-04|1993-12-13|NONE|MAIL|al deposits| +78569|527921|15452|6|45|87700.50|0.08|0.03|A|F|1993-12-25|1993-11-21|1994-01-01|TAKE BACK RETURN|SHIP|riously final foxes. daring p| +78570|988197|38198|1|13|16706.95|0.01|0.05|N|O|1996-12-31|1997-01-19|1997-01-06|TAKE BACK RETURN|REG AIR|lyly unusual package| +78570|617826|42851|2|38|66264.02|0.10|0.05|N|O|1997-03-16|1997-01-13|1997-03-24|NONE|REG AIR|ccounts. regu| +78570|800708|25741|3|18|28955.88|0.08|0.08|N|O|1996-12-05|1997-02-07|1996-12-18|COLLECT COD|MAIL|riously ironic| +78570|497032|47033|4|23|23667.23|0.05|0.00|N|O|1997-03-12|1997-01-10|1997-03-24|NONE|REG AIR|even, express dependencies cajole aga| +78570|606666|6667|5|2|3145.26|0.02|0.08|N|O|1997-03-16|1997-02-05|1997-03-24|DELIVER IN PERSON|AIR|foxes promise slyly slyly final| +78570|220223|7736|6|19|21720.99|0.01|0.05|N|O|1997-01-24|1996-12-26|1997-02-04|DELIVER IN PERSON|TRUCK| pending, e| +78570|280650|18166|7|6|9783.84|0.03|0.02|N|O|1997-01-07|1997-02-15|1997-02-01|COLLECT COD|TRUCK|. even depos| +78571|878810|3845|1|49|87649.73|0.04|0.08|N|O|1996-08-17|1996-07-06|1996-08-21|NONE|RAIL|onic theodolites. special theodolites| +78571|144864|19869|2|39|74445.54|0.07|0.08|N|O|1996-06-06|1996-08-03|1996-06-08|COLLECT COD|TRUCK|furiously express packages against | +78571|727863|40378|3|3|5672.49|0.07|0.02|N|O|1996-06-01|1996-06-15|1996-06-21|TAKE BACK RETURN|RAIL|express pains are furi| +78571|183817|21327|4|14|26611.34|0.09|0.06|N|O|1996-07-10|1996-08-01|1996-08-01|NONE|RAIL|y silent accounts| +78572|942691|30246|1|43|74546.95|0.00|0.07|N|O|1995-12-09|1996-02-06|1995-12-25|COLLECT COD|SHIP|ly. quickly final deposits impress | +78572|805284|5285|2|1|1189.24|0.06|0.06|N|O|1996-03-22|1996-01-27|1996-03-30|DELIVER IN PERSON|TRUCK|y pending, ironic foxes. carefully | +78572|405056|30073|3|49|47090.47|0.05|0.01|N|O|1996-01-01|1996-02-03|1996-01-21|NONE|TRUCK|even accounts after the special a| +78572|775511|25512|4|19|30143.12|0.03|0.00|N|O|1996-03-08|1996-01-27|1996-04-02|NONE|RAIL|al deposits. pearls| +78572|999473|37031|5|28|44028.04|0.00|0.08|N|O|1996-02-12|1996-01-08|1996-02-24|COLLECT COD|TRUCK|furiously even accounts: re| +78572|141333|16338|6|16|21989.28|0.06|0.01|N|O|1996-02-02|1996-02-04|1996-02-04|COLLECT COD|SHIP|hely. blithely | +78572|377601|15123|7|25|41964.75|0.09|0.06|N|O|1996-02-11|1996-02-28|1996-02-17|DELIVER IN PERSON|SHIP|e final deposits cajo| +78573|335808|48315|1|17|31344.43|0.00|0.03|A|F|1993-12-10|1994-01-28|1994-01-02|NONE|FOB|ptotes nag furiously bli| +78573|915676|15677|2|22|37215.86|0.10|0.08|R|F|1993-11-28|1994-02-11|1993-12-07|COLLECT COD|TRUCK|s. furiously| +78574|111085|48592|1|22|24113.76|0.05|0.07|R|F|1994-01-22|1994-01-01|1994-02-13|NONE|REG AIR|ffily regular dugouts: ideas are slyly | +78574|998490|36048|2|42|66714.90|0.02|0.08|R|F|1994-01-13|1993-12-30|1994-01-27|TAKE BACK RETURN|SHIP|unts throughout | +78575|12163|24664|1|46|49457.36|0.07|0.06|R|F|1994-05-14|1994-03-11|1994-05-28|COLLECT COD|SHIP|requests nag furiously among | +78575|423028|23029|2|50|47550.00|0.01|0.01|R|F|1994-04-17|1994-03-16|1994-05-04|COLLECT COD|REG AIR|e even pinto beans. carefully regular| +78575|824911|49944|3|11|20194.57|0.06|0.08|A|F|1994-02-18|1994-03-24|1994-03-12|COLLECT COD|SHIP|s boost! slyly regular pearls abo| +78575|271353|46364|4|2|2648.68|0.04|0.04|A|F|1994-05-12|1994-03-20|1994-05-16|DELIVER IN PERSON|MAIL|ar pinto beans affix blithely accounts. f| +78575|625512|537|5|42|60374.16|0.03|0.01|R|F|1994-02-27|1994-04-08|1994-03-20|TAKE BACK RETURN|RAIL| ironic packag| +78600|931618|44137|1|38|62683.66|0.08|0.07|R|F|1994-03-16|1994-04-04|1994-03-28|COLLECT COD|FOB|ly final packages. regular, regular fr| +78600|696634|21661|2|29|47287.40|0.06|0.07|R|F|1994-04-02|1994-03-19|1994-04-29|NONE|AIR|l requests snooze slyly according| +78600|316651|4170|3|33|55032.12|0.02|0.01|A|F|1994-05-28|1994-04-26|1994-06-09|COLLECT COD|AIR|inst the final packages. theodol| +78600|940152|40153|4|39|46492.29|0.10|0.01|R|F|1994-03-19|1994-04-23|1994-03-25|TAKE BACK RETURN|TRUCK|ic pains sleep f| +78600|126574|39077|5|32|51218.24|0.03|0.01|R|F|1994-03-13|1994-04-07|1994-03-17|DELIVER IN PERSON|AIR|packages. quickly silent foxes sn| +78601|851969|1970|1|21|40339.32|0.09|0.08|A|F|1993-11-06|1993-12-05|1993-11-19|DELIVER IN PERSON|TRUCK|accounts br| +78602|970952|45991|1|33|66756.03|0.10|0.03|A|F|1993-01-25|1993-03-18|1993-02-08|NONE|RAIL|egular deposits sleep about the slyly i| +78602|783315|33316|2|3|4194.84|0.05|0.04|A|F|1993-02-23|1993-02-07|1993-03-11|TAKE BACK RETURN|RAIL|en, regular accounts. b| +78602|158606|46116|3|39|64919.40|0.03|0.06|A|F|1993-03-19|1993-02-13|1993-04-05|COLLECT COD|RAIL|es. final courts af| +78602|685389|10416|4|11|15117.85|0.03|0.05|A|F|1993-01-18|1993-03-09|1993-02-14|COLLECT COD|TRUCK| express packages detect| +78602|331035|18554|5|44|46904.88|0.01|0.07|A|F|1993-03-16|1993-03-30|1993-03-31|NONE|TRUCK|e of the fu| +78602|692363|17390|6|1|1355.33|0.07|0.02|A|F|1993-01-26|1993-03-07|1993-02-17|NONE|RAIL|onically ironic sentiments-- bold, ev| +78603|125237|37740|1|5|6311.15|0.09|0.04|N|O|1996-05-01|1996-06-12|1996-05-16|NONE|REG AIR|ld epitaphs haggle carefully | +78604|415192|27701|1|4|4428.68|0.03|0.08|R|F|1992-06-23|1992-06-13|1992-06-27|COLLECT COD|MAIL|bold, regular| +78604|118519|43524|2|47|72262.97|0.07|0.02|R|F|1992-07-07|1992-05-17|1992-08-02|DELIVER IN PERSON|REG AIR|nstructions wake furiously. even| +78604|947461|35016|3|50|75421.00|0.09|0.08|R|F|1992-06-25|1992-05-12|1992-07-13|TAKE BACK RETURN|REG AIR|the bold reques| +78604|969924|32444|4|44|87730.72|0.02|0.08|A|F|1992-06-14|1992-05-28|1992-07-13|COLLECT COD|FOB|ar instructions. bold i| +78604|499850|37378|5|9|16648.47|0.05|0.05|R|F|1992-05-27|1992-05-15|1992-06-25|TAKE BACK RETURN|MAIL|mong the ide| +78605|349750|12257|1|22|39594.28|0.07|0.03|N|O|1997-04-13|1997-04-15|1997-05-11|DELIVER IN PERSON|RAIL|ly regular | +78605|237649|25162|2|31|49185.53|0.06|0.02|N|O|1997-04-23|1997-03-31|1997-05-21|COLLECT COD|REG AIR|ly. slyly spec| +78605|164785|2295|3|35|64742.30|0.06|0.00|N|O|1997-04-09|1997-03-01|1997-05-02|COLLECT COD|REG AIR| are after the slyl| +78605|535440|22971|4|42|61967.64|0.08|0.01|N|O|1997-04-17|1997-04-07|1997-05-16|DELIVER IN PERSON|RAIL|ages haggle somas. regular, express| +78605|126353|38856|5|45|62070.75|0.02|0.01|N|O|1997-05-05|1997-03-06|1997-05-22|NONE|REG AIR|uests. ironic deposits according to th| +78606|790268|15299|1|39|52970.97|0.09|0.01|R|F|1994-05-03|1994-06-15|1994-05-21|COLLECT COD|MAIL|ronic requests. slyly regular requests | +78607|110254|22757|1|14|17699.50|0.09|0.00|N|O|1996-09-20|1996-10-04|1996-09-30|TAKE BACK RETURN|MAIL|ies along the slyly final packa| +78607|37421|24922|2|43|58412.06|0.03|0.00|N|O|1996-09-19|1996-09-06|1996-10-19|TAKE BACK RETURN|MAIL|usual accounts. slyly final a| +78607|925078|37597|3|14|15442.42|0.01|0.04|N|O|1996-07-25|1996-10-07|1996-08-14|COLLECT COD|SHIP|deposits boost above the carefully even a| +78607|770738|8284|4|44|79582.80|0.07|0.02|N|O|1996-09-19|1996-10-09|1996-09-23|NONE|RAIL|ar requests: even packages haggl| +78607|790263|40264|5|49|66308.27|0.01|0.08|N|O|1996-10-24|1996-10-20|1996-11-02|TAKE BACK RETURN|REG AIR|nts. slyly final fox| +78607|938836|1355|6|43|80615.97|0.01|0.06|N|O|1996-11-09|1996-08-23|1996-12-01|NONE|SHIP|structions. | +78607|6633|19134|7|40|61585.20|0.04|0.06|N|O|1996-07-26|1996-09-14|1996-08-01|NONE|FOB|ajole carefully. express pack| +78632|473529|11057|1|8|12020.00|0.07|0.05|A|F|1992-10-24|1992-11-05|1992-11-11|DELIVER IN PERSON|FOB| regular ideas| +78632|597843|47844|2|26|50461.32|0.05|0.08|A|F|1992-11-20|1992-11-08|1992-12-12|DELIVER IN PERSON|TRUCK|ar accounts. slyly unusu| +78632|931359|6396|3|17|23635.27|0.03|0.02|A|F|1992-10-30|1992-10-13|1992-11-02|NONE|TRUCK|otes after the regular, final deposit| +78632|348929|36448|4|7|13845.37|0.10|0.05|A|F|1992-12-11|1992-12-04|1993-01-06|TAKE BACK RETURN|SHIP|long the carefully pending pea| +78632|444581|19598|5|20|30511.20|0.01|0.00|R|F|1992-11-18|1992-11-25|1992-12-11|NONE|REG AIR|ending requests. requests about the care| +78632|71566|46569|6|40|61502.40|0.03|0.08|R|F|1992-10-14|1992-10-13|1992-10-30|TAKE BACK RETURN|REG AIR|iet accounts aff| +78632|805288|17805|7|46|54889.04|0.09|0.00|A|F|1992-12-22|1992-12-01|1993-01-05|DELIVER IN PERSON|MAIL|requests along the carefully si| +78633|472254|9782|1|16|19619.68|0.05|0.00|A|F|1994-11-13|1995-01-01|1994-11-28|NONE|RAIL|odolites integrate. slyly pending | +78633|158960|8961|2|48|96910.08|0.10|0.04|A|F|1994-12-05|1995-01-30|1994-12-25|NONE|AIR|sual platelets. pending, regular accou| +78633|626770|39283|3|11|18664.14|0.07|0.08|R|F|1995-02-14|1995-01-24|1995-02-24|TAKE BACK RETURN|RAIL|l braids wake. slyly ironic foxes slee| +78634|496433|21452|1|25|35735.25|0.05|0.03|R|F|1994-12-17|1995-02-13|1994-12-28|DELIVER IN PERSON|SHIP|s, regular accounts beside the u| +78634|535936|23467|2|40|78876.40|0.00|0.03|R|F|1995-02-12|1995-01-22|1995-03-14|DELIVER IN PERSON|SHIP|ar ideas above the never iron| +78634|472112|34622|3|8|8672.72|0.06|0.07|A|F|1995-01-23|1995-01-09|1995-02-17|NONE|RAIL|blithely b| +78634|775815|38331|4|35|66177.30|0.09|0.02|R|F|1995-02-13|1995-02-16|1995-02-23|DELIVER IN PERSON|RAIL| blithely. ironic excuses wake furiousl| +78634|107205|19708|5|44|53336.80|0.01|0.06|A|F|1994-12-31|1995-02-10|1995-01-01|TAKE BACK RETURN|FOB|usual dinos alo| +78635|630055|42568|1|6|5910.12|0.06|0.03|A|F|1994-09-23|1994-08-14|1994-10-09|TAKE BACK RETURN|FOB|ffily ironic packages. carefully quick de| +78635|330596|30597|2|2|3253.16|0.01|0.02|R|F|1994-06-12|1994-09-03|1994-06-29|DELIVER IN PERSON|FOB|nal packages. carefully ironic instruc| +78636|455419|42947|1|19|26113.41|0.01|0.04|N|O|1998-08-10|1998-09-06|1998-08-24|DELIVER IN PERSON|FOB| deposits above the fluffily unusual requ| +78636|224809|12322|2|1|1733.79|0.08|0.01|N|O|1998-10-22|1998-09-22|1998-11-05|COLLECT COD|FOB| unusual theodolites haggle furiously aft| +78636|353255|15763|3|37|48404.88|0.03|0.07|N|O|1998-08-04|1998-10-08|1998-08-16|TAKE BACK RETURN|SHIP|l frets. special f| +78637|87129|37130|1|40|44644.80|0.01|0.02|N|O|1997-09-19|1997-08-29|1997-10-01|NONE|REG AIR|lly even instructions haggle against the fi| +78637|362596|118|2|45|74636.10|0.04|0.02|N|O|1997-08-25|1997-09-14|1997-09-05|DELIVER IN PERSON|FOB|courts. fluffily even | +78637|141225|41226|3|47|59512.34|0.04|0.00|N|O|1997-07-20|1997-08-16|1997-08-16|TAKE BACK RETURN|TRUCK| quickly after the furiously unusu| +78637|560350|10351|4|47|66285.51|0.10|0.05|N|O|1997-07-18|1997-08-14|1997-08-08|NONE|AIR| express grouches nag alongside of t| +78637|787552|12583|5|24|39348.48|0.01|0.05|N|O|1997-08-22|1997-08-28|1997-08-27|NONE|MAIL|furiously alongside of th| +78637|382284|7299|6|11|15028.97|0.05|0.01|N|O|1997-07-13|1997-08-13|1997-07-22|DELIVER IN PERSON|SHIP|ly even theodolites along the slyly sil| +78638|675538|565|1|15|22702.50|0.06|0.06|N|O|1996-02-02|1996-02-24|1996-02-19|NONE|TRUCK|ly. express pinto beans boost blithely | +78638|751679|39225|2|33|57111.12|0.02|0.02|N|O|1996-02-06|1996-04-07|1996-02-10|DELIVER IN PERSON|MAIL|sauternes.| +78638|455271|5272|3|48|58860.00|0.01|0.01|N|O|1996-05-02|1996-04-13|1996-05-08|NONE|RAIL|c theodolite| +78638|726436|13979|4|8|11699.20|0.05|0.03|N|O|1996-02-22|1996-03-04|1996-03-01|COLLECT COD|RAIL|he carefully ironic| +78638|202835|40348|5|30|52134.60|0.05|0.07|N|O|1996-01-27|1996-02-28|1996-02-24|COLLECT COD|TRUCK|es. regular packages enga| +78639|920807|45844|1|46|84076.96|0.00|0.00|N|O|1995-11-03|1995-09-26|1995-11-26|DELIVER IN PERSON|SHIP|final pinto beans. pinto beans | +78639|998589|11109|2|17|28688.18|0.05|0.03|N|O|1995-11-14|1995-10-10|1995-12-01|NONE|REG AIR|aggle? regular i| +78639|269518|7034|3|29|43137.50|0.00|0.08|N|O|1995-09-25|1995-10-09|1995-10-10|DELIVER IN PERSON|TRUCK|r orbits. pinto beans haggle carefully! r| +78639|773354|23355|4|46|65656.72|0.03|0.02|N|O|1995-11-15|1995-10-02|1995-12-01|DELIVER IN PERSON|TRUCK|ets! quickl| +78664|690911|3425|1|13|24724.44|0.07|0.06|N|F|1995-06-14|1995-06-09|1995-07-08|COLLECT COD|REG AIR|furiously sile| +78664|125329|12836|2|13|17606.16|0.06|0.08|R|F|1995-05-05|1995-06-07|1995-05-27|NONE|FOB|inal, unusual deposits haggle.| +78664|393554|43555|3|43|70844.22|0.06|0.02|A|F|1995-04-27|1995-04-25|1995-05-19|DELIVER IN PERSON|MAIL|nusual pinto beans. ironic, bold| +78664|461232|36251|4|15|17898.15|0.03|0.04|A|F|1995-03-18|1995-05-02|1995-04-17|COLLECT COD|AIR|kages detect carefully am| +78664|911053|36090|5|35|37240.35|0.00|0.01|N|O|1995-07-04|1995-05-30|1995-07-15|NONE|SHIP|ests are. slyl| +78664|64304|1808|6|46|58341.80|0.07|0.04|A|F|1995-05-30|1995-04-29|1995-06-16|TAKE BACK RETURN|FOB|ic realms solve silently final re| +78664|749342|24371|7|26|36174.06|0.03|0.03|N|O|1995-06-26|1995-05-16|1995-07-21|DELIVER IN PERSON|TRUCK| requests. ironic pac| +78665|185712|48216|1|36|64717.56|0.02|0.08|R|F|1994-01-30|1994-03-02|1994-02-07|TAKE BACK RETURN|MAIL|ts haggle alongside of the final accounts| +78665|246800|21809|2|49|85592.71|0.09|0.00|R|F|1994-02-18|1994-02-07|1994-02-20|NONE|TRUCK| asymptotes serve sly| +78665|960611|35650|3|3|5014.71|0.10|0.02|R|F|1994-03-22|1994-01-13|1994-04-21|COLLECT COD|MAIL|its. regular ideas use| +78665|979485|4524|4|1|1564.44|0.04|0.07|R|F|1994-03-06|1994-03-03|1994-03-29|DELIVER IN PERSON|SHIP|ar platelets haggle carefully ironic a| +78665|200702|13207|5|23|36861.87|0.03|0.05|A|F|1994-02-10|1994-01-13|1994-03-07|COLLECT COD|FOB|eans. fluffily regular pinto b| +78665|183324|8331|6|20|28146.40|0.08|0.00|A|F|1994-02-14|1994-01-26|1994-02-28|NONE|TRUCK|ng deposits about the| +78666|381618|31619|1|39|66284.40|0.01|0.02|R|F|1992-04-13|1992-05-03|1992-04-14|DELIVER IN PERSON|REG AIR|nic, regular deposits. | +78666|844613|44614|2|3|4672.71|0.06|0.06|A|F|1992-03-17|1992-03-11|1992-03-18|COLLECT COD|REG AIR|ully special courts affix b| +78666|410171|35188|3|28|30272.20|0.09|0.02|R|F|1992-05-14|1992-04-12|1992-05-20|TAKE BACK RETURN|RAIL|s sublate blithely among| +78666|730638|30639|4|6|10011.60|0.07|0.05|R|F|1992-03-16|1992-04-30|1992-03-29|NONE|AIR|ar, unusual dep| +78666|826043|1076|5|42|40698.00|0.00|0.02|R|F|1992-06-01|1992-03-25|1992-06-20|TAKE BACK RETURN|REG AIR|osits across t| +78666|294119|31635|6|30|33393.00|0.03|0.03|A|F|1992-05-15|1992-03-20|1992-05-25|TAKE BACK RETURN|MAIL|as sublate quickl| +78667|507402|7403|1|41|57784.58|0.04|0.08|A|F|1994-10-31|1994-10-25|1994-11-09|NONE|MAIL|ites cajole quickly. blith| +78667|889954|2472|2|48|93307.68|0.07|0.05|A|F|1994-09-14|1994-10-29|1994-10-04|COLLECT COD|MAIL| the ironic accounts cajole by the sly| +78667|446105|33630|3|2|2102.16|0.10|0.06|A|F|1994-11-24|1994-09-25|1994-12-09|DELIVER IN PERSON|REG AIR|ckages: fluffily silent foxes dou| +78667|675964|991|4|5|9699.65|0.10|0.07|A|F|1994-10-14|1994-11-09|1994-11-07|DELIVER IN PERSON|FOB|he regular accounts dazzle| +78668|946162|8681|1|46|55573.52|0.01|0.00|R|F|1995-02-15|1995-02-25|1995-02-16|TAKE BACK RETURN|RAIL|. carefully iron| +78668|132193|7198|2|35|42881.65|0.07|0.03|A|F|1995-02-10|1995-02-25|1995-02-20|TAKE BACK RETURN|REG AIR|r warthogs haggle blithely un| +78669|701233|13748|1|47|58007.40|0.00|0.03|A|F|1993-08-14|1993-09-03|1993-08-19|NONE|MAIL|y final foxes bo| +78670|706012|6013|1|27|27485.46|0.03|0.05|R|F|1992-05-05|1992-05-20|1992-05-27|NONE|TRUCK| pinto beans. furious, regular| +78670|928285|3322|2|26|34144.24|0.07|0.06|A|F|1992-07-16|1992-05-21|1992-08-15|DELIVER IN PERSON|FOB| even accounts h| +78671|830211|30212|1|19|21682.23|0.05|0.01|R|F|1993-06-27|1993-06-25|1993-07-20|COLLECT COD|MAIL|ithely regular deposits ha| +78696|544912|7423|1|18|35224.02|0.01|0.00|A|F|1994-06-08|1994-08-21|1994-07-08|NONE|SHIP|. furiously unusual pla| +78696|327492|2505|2|36|54701.28|0.10|0.02|R|F|1994-07-05|1994-08-25|1994-07-19|NONE|RAIL|dolphins whithout the ac| +78696|157477|44987|3|15|23017.05|0.06|0.07|A|F|1994-07-01|1994-07-10|1994-07-14|COLLECT COD|FOB|iously fina| +78696|705951|43494|4|41|80233.72|0.08|0.07|A|F|1994-09-26|1994-07-22|1994-10-25|NONE|FOB|he silently regular packages. fu| +78696|907907|45462|5|46|88083.56|0.07|0.04|A|F|1994-07-06|1994-07-22|1994-08-04|DELIVER IN PERSON|REG AIR|ests. even requests| +78696|182904|7911|6|4|7947.60|0.09|0.06|A|F|1994-08-27|1994-08-15|1994-09-11|NONE|SHIP|thely alongside o| +78697|10176|35177|1|2|2172.34|0.06|0.06|N|O|1996-06-28|1996-08-18|1996-07-03|NONE|RAIL|ly final instructions. slyly ironic req| +78697|27817|27818|2|13|22682.53|0.02|0.00|N|O|1996-09-13|1996-07-22|1996-09-30|COLLECT COD|FOB|ckages wake per| +78698|989695|39696|1|31|55324.15|0.08|0.08|N|O|1996-11-16|1996-09-15|1996-12-08|TAKE BACK RETURN|FOB| slyly final accounts doubt blithel| +78698|803380|40929|2|29|37216.86|0.07|0.06|N|O|1996-07-30|1996-10-11|1996-08-23|COLLECT COD|MAIL| accounts across the even pack| +78699|241483|3988|1|34|48431.98|0.02|0.02|R|F|1992-09-29|1992-08-07|1992-10-15|COLLECT COD|MAIL|. pending foxes haggle sl| +78699|600606|25631|2|34|51223.38|0.02|0.01|R|F|1992-07-22|1992-07-30|1992-08-14|COLLECT COD|MAIL|kly express req| +78699|375109|25110|3|46|54468.14|0.03|0.05|A|F|1992-06-28|1992-08-07|1992-06-29|NONE|RAIL|inal, special realms hang carefully. quickl| +78699|441285|41286|4|45|55181.70|0.06|0.00|R|F|1992-09-11|1992-08-10|1992-10-04|DELIVER IN PERSON|REG AIR|counts. slyl| +78699|661897|36924|5|29|53906.94|0.10|0.07|R|F|1992-06-29|1992-09-20|1992-07-18|COLLECT COD|RAIL|ep beside the r| +78699|496685|34213|6|41|68948.06|0.10|0.05|A|F|1992-10-13|1992-08-27|1992-11-11|COLLECT COD|RAIL|ar, regular packages. carefully| +78699|775410|25411|7|22|32678.36|0.00|0.00|A|F|1992-07-11|1992-07-26|1992-08-03|TAKE BACK RETURN|TRUCK|ts use slyly according to the q| +78700|308109|45628|1|32|35746.88|0.07|0.06|A|F|1994-05-20|1994-08-16|1994-05-21|DELIVER IN PERSON|TRUCK|ironic platelets. slyly special foxes| +78700|378400|15922|2|30|44351.70|0.08|0.04|R|F|1994-07-23|1994-08-02|1994-07-29|COLLECT COD|RAIL|ctions boost fluff| +78700|755816|5817|3|43|80486.54|0.03|0.01|A|F|1994-06-28|1994-07-20|1994-07-20|NONE|TRUCK|rses. blithely final| +78700|997148|34706|4|5|6225.50|0.01|0.02|R|F|1994-06-19|1994-08-16|1994-07-08|TAKE BACK RETURN|REG AIR|s; quickly unusual attainments| +78701|66080|16081|1|8|8368.64|0.10|0.05|N|O|1996-01-25|1996-02-24|1996-01-26|DELIVER IN PERSON|MAIL|anent packages wake ca| +78701|601415|38952|2|46|60553.48|0.09|0.01|N|O|1996-01-18|1996-02-21|1996-02-14|NONE|TRUCK|s requests. fluffily final platelets a| +78701|981799|44319|3|4|7523.00|0.10|0.08|N|O|1995-12-21|1996-01-15|1996-01-15|TAKE BACK RETURN|MAIL|ake fluffily quick | +78701|93617|18620|4|25|40265.25|0.01|0.02|N|O|1996-02-08|1996-02-02|1996-02-15|DELIVER IN PERSON|TRUCK|arefully regular pinto bea| +78701|406906|6907|5|9|16315.92|0.05|0.04|N|O|1996-03-22|1996-01-30|1996-03-24|NONE|MAIL|ending accounts are blithely. furiou| +78701|856543|31578|6|41|61479.50|0.05|0.03|N|O|1995-12-13|1996-02-08|1995-12-22|TAKE BACK RETURN|REG AIR|slyly ironic asymptotes among the fu| +78701|911358|11359|7|24|32863.44|0.04|0.08|N|O|1996-01-05|1996-02-29|1996-01-13|DELIVER IN PERSON|TRUCK|uests slee| +78702|180683|43187|1|3|5291.04|0.03|0.08|N|O|1996-03-11|1996-04-17|1996-04-06|NONE|FOB|according to | +78702|736812|24355|2|20|36975.60|0.05|0.05|N|O|1996-06-17|1996-04-18|1996-06-20|NONE|FOB|sly according to the caref| +78702|586622|24156|3|17|29046.20|0.08|0.04|N|O|1996-05-09|1996-04-22|1996-05-18|NONE|RAIL|. deposits are blithely special requests.| +78702|349443|49444|4|20|29848.60|0.08|0.07|N|O|1996-06-29|1996-04-17|1996-07-10|DELIVER IN PERSON|FOB|even requests. even foxes nag. depo| +78703|487871|37872|1|8|14870.80|0.04|0.08|N|O|1995-06-28|1995-06-13|1995-07-03|COLLECT COD|MAIL|ests cajole always according to t| +78703|635615|35616|2|13|20157.54|0.03|0.06|N|F|1995-05-29|1995-06-10|1995-06-26|DELIVER IN PERSON|FOB|eans. express, silent depo| +78703|776639|14185|3|12|20587.20|0.00|0.02|N|F|1995-06-15|1995-07-22|1995-07-09|DELIVER IN PERSON|REG AIR|accounts at the regular pack| +78728|89566|2068|1|3|4666.68|0.03|0.06|A|F|1992-05-13|1992-05-03|1992-06-07|COLLECT COD|MAIL| ironic asymptotes are carefully bl| +78728|327425|27426|2|47|68263.27|0.00|0.02|A|F|1992-05-07|1992-06-02|1992-06-04|DELIVER IN PERSON|AIR| the slyly final requests. regular platele| +78729|887995|37996|1|21|41641.95|0.07|0.04|R|F|1994-03-17|1994-04-05|1994-03-18|COLLECT COD|AIR|sts haggle slyly even requests. | +78729|525899|38410|2|4|7699.48|0.00|0.04|R|F|1994-03-09|1994-05-17|1994-04-01|TAKE BACK RETURN|SHIP|e slyly across the ir| +78729|778479|3510|3|19|29591.36|0.09|0.03|R|F|1994-04-16|1994-04-05|1994-05-07|TAKE BACK RETURN|SHIP|equests. ca| +78729|890527|15562|4|44|66769.12|0.10|0.05|A|F|1994-03-04|1994-05-08|1994-03-14|NONE|TRUCK|ns. dependencies was above the bo| +78729|77845|27846|5|44|80204.96|0.06|0.06|A|F|1994-04-19|1994-05-10|1994-04-20|DELIVER IN PERSON|RAIL|counts across the entic| +78730|469163|44182|1|38|43021.32|0.07|0.07|R|F|1993-12-28|1994-03-07|1994-01-10|COLLECT COD|AIR|ages use-- blithely regular i| +78730|209508|47021|2|19|26932.31|0.01|0.06|A|F|1994-03-26|1994-03-10|1994-04-03|TAKE BACK RETURN|SHIP|final excuses cajole slyly furious| +78730|199674|49675|3|39|69173.13|0.06|0.07|A|F|1993-12-23|1994-03-17|1994-01-19|DELIVER IN PERSON|REG AIR| foxes. quickly regular excuses among the| +78730|906387|43942|4|41|57126.94|0.00|0.05|A|F|1994-02-22|1994-03-05|1994-03-16|COLLECT COD|RAIL|e fluffily pending accounts.| +78730|638527|26064|5|37|54223.13|0.03|0.01|R|F|1994-03-30|1994-03-05|1994-04-19|TAKE BACK RETURN|MAIL|nder according to the final sauter| +78731|283333|45839|1|49|64499.68|0.08|0.02|N|O|1996-05-03|1996-06-04|1996-06-02|NONE|SHIP|ndencies sleep slyly about the caref| +78731|977002|39522|2|19|20500.24|0.06|0.00|N|O|1996-07-16|1996-05-22|1996-07-18|NONE|SHIP|use final theodo| +78731|471456|33966|3|22|31403.46|0.09|0.05|N|O|1996-04-07|1996-05-22|1996-04-10|DELIVER IN PERSON|SHIP|egular pains. express pinto bea| +78732|741690|4205|1|17|29438.22|0.06|0.07|N|O|1996-10-29|1996-10-09|1996-11-25|NONE|MAIL|ions. furiously bold excuses integrat| +78732|576426|38938|2|18|27043.20|0.03|0.08|N|O|1996-08-21|1996-09-29|1996-09-06|DELIVER IN PERSON|FOB| requests. pending packages affix ag| +78732|977196|14754|3|16|20370.40|0.10|0.08|N|O|1996-10-03|1996-10-02|1996-11-01|DELIVER IN PERSON|REG AIR|ges believe; slyly| +78733|598406|48407|1|8|12035.04|0.07|0.04|R|F|1994-08-12|1994-08-29|1994-09-05|TAKE BACK RETURN|RAIL|ate furious| +78733|400429|25446|2|23|30576.20|0.01|0.02|A|F|1994-08-09|1994-08-27|1994-08-22|DELIVER IN PERSON|RAIL| the expres| +78733|998039|48040|3|13|14780.87|0.05|0.03|A|F|1994-08-25|1994-10-08|1994-09-15|TAKE BACK RETURN|MAIL|t the requests? s| +78733|34668|22169|4|38|60901.08|0.08|0.06|R|F|1994-09-15|1994-10-04|1994-09-17|NONE|FOB|ealthy pinto beans cajole al| +78733|655629|18143|5|46|72891.14|0.01|0.07|A|F|1994-09-10|1994-09-23|1994-10-01|NONE|TRUCK|fully regular depe| +78733|156463|43973|6|12|18233.52|0.09|0.08|R|F|1994-09-10|1994-10-07|1994-10-04|DELIVER IN PERSON|FOB|ly ironic excuses. | +78734|110805|48312|1|40|72632.00|0.06|0.05|A|F|1994-02-04|1994-02-27|1994-02-23|COLLECT COD|RAIL|ests. slyly unusual requests integrate fur| +78734|295656|33172|2|32|52852.48|0.03|0.08|R|F|1994-04-07|1994-03-11|1994-04-27|NONE|RAIL|al pinto beans. requests wake carefully | +78734|77713|40215|3|5|8453.55|0.03|0.08|R|F|1994-01-24|1994-01-18|1994-02-23|TAKE BACK RETURN|MAIL|nding deposits. fluffily ironic instruction| +78735|90459|2961|1|39|56528.55|0.08|0.06|R|F|1994-10-24|1994-11-27|1994-11-21|COLLECT COD|SHIP|, final instruct| +78735|330121|5134|2|12|13813.32|0.05|0.00|R|F|1995-01-30|1994-12-01|1995-02-11|DELIVER IN PERSON|REG AIR|t the blithely| +78735|331829|44336|3|20|37216.20|0.01|0.01|R|F|1995-01-18|1994-12-19|1995-02-16|TAKE BACK RETURN|SHIP|lly final foxes. carefully furious| +78735|48954|11455|4|4|7611.80|0.01|0.03|R|F|1994-11-02|1994-11-28|1994-11-16|DELIVER IN PERSON|AIR|ly regular deposits | +78735|761156|23672|5|10|12171.20|0.01|0.01|R|F|1994-11-28|1994-11-28|1994-12-12|DELIVER IN PERSON|AIR|to beans. final packages detect fluffily ou| +78735|746570|9085|6|45|72744.30|0.07|0.02|A|F|1994-10-18|1994-12-17|1994-11-11|NONE|RAIL|luffily pending requests| +78760|688691|13718|1|25|41991.50|0.03|0.02|R|F|1993-06-25|1993-07-02|1993-07-06|NONE|MAIL|ray carefully quickly e| +78760|813982|39015|2|23|43606.62|0.02|0.07|R|F|1993-08-01|1993-07-26|1993-08-14|DELIVER IN PERSON|RAIL|ep furiously furiou| +78760|589276|39277|3|45|61436.25|0.03|0.00|R|F|1993-07-12|1993-07-26|1993-08-07|NONE|REG AIR|into beans.| +78760|959858|9859|4|42|80548.02|0.03|0.00|R|F|1993-06-22|1993-07-28|1993-07-11|COLLECT COD|REG AIR|ependencies accor| +78760|317273|42286|5|32|41288.32|0.10|0.06|R|F|1993-06-05|1993-07-05|1993-06-17|COLLECT COD|TRUCK|rate carefully. blithely even pinto beans s| +78760|397105|34627|6|31|37264.79|0.03|0.07|A|F|1993-07-11|1993-07-07|1993-07-28|TAKE BACK RETURN|AIR|ously even grouche| +78761|199861|49862|1|28|54904.08|0.08|0.08|N|O|1997-04-20|1997-03-10|1997-05-09|NONE|REG AIR|special accounts sleep. regular requests| +78761|63114|38117|2|29|31236.19|0.10|0.00|N|O|1997-03-13|1997-04-04|1997-03-15|COLLECT COD|REG AIR| furiously even requests. regular instructi| +78761|747686|47687|3|27|46808.55|0.05|0.08|N|O|1997-04-06|1997-03-11|1997-04-17|NONE|REG AIR|ress instructions cajole quickly. b| +78761|348999|49000|4|14|28671.72|0.00|0.02|N|O|1997-01-29|1997-02-28|1997-02-08|NONE|FOB|r packages.| +78761|614999|27512|5|14|26795.44|0.01|0.06|N|O|1997-02-09|1997-03-08|1997-03-03|NONE|REG AIR|l instructi| +78762|682183|32184|1|36|41945.40|0.04|0.06|A|F|1992-08-27|1992-07-06|1992-09-14|DELIVER IN PERSON|MAIL|uriously ironic pa| +78762|433780|46289|2|46|78832.96|0.07|0.08|A|F|1992-08-25|1992-06-21|1992-09-05|TAKE BACK RETURN|RAIL|ts. quickly final requests cajo| +78763|465117|40136|1|4|4328.36|0.07|0.02|R|F|1993-09-16|1993-10-03|1993-09-30|TAKE BACK RETURN|MAIL|lent deposits. | +78763|215546|28051|2|9|13153.77|0.09|0.04|R|F|1993-11-22|1993-10-01|1993-12-20|DELIVER IN PERSON|SHIP| after the bold plat| +78764|878407|28408|1|3|4156.08|0.01|0.04|A|F|1992-05-03|1992-05-22|1992-05-12|DELIVER IN PERSON|MAIL|silent depende| +78764|374335|11857|2|21|29595.72|0.07|0.01|R|F|1992-05-06|1992-04-20|1992-05-23|NONE|REG AIR|kly fluffi| +78764|439643|2152|3|50|79131.00|0.01|0.02|A|F|1992-03-18|1992-05-22|1992-03-19|DELIVER IN PERSON|AIR|oxes are carefully u| +78764|64429|26931|4|43|59917.06|0.05|0.07|A|F|1992-05-22|1992-06-10|1992-05-30|TAKE BACK RETURN|TRUCK| unusual courts are carefully across| +78764|843530|18563|5|16|23575.84|0.10|0.00|R|F|1992-03-17|1992-05-14|1992-04-04|DELIVER IN PERSON|TRUCK|s. carefully regular deposits wake d| +78764|198601|11105|6|14|23794.40|0.00|0.00|A|F|1992-03-17|1992-06-01|1992-03-28|COLLECT COD|FOB|ts doze theodolites.| +78764|874518|49553|7|8|11939.76|0.09|0.06|R|F|1992-06-17|1992-06-01|1992-07-05|TAKE BACK RETURN|MAIL|nag blithely furiously bold requests.| +78765|21561|21562|1|36|53372.16|0.04|0.06|A|F|1995-04-29|1995-04-17|1995-05-17|COLLECT COD|AIR| furiously. requests acc| +78765|369639|44654|2|15|25629.30|0.03|0.01|A|F|1995-05-24|1995-05-18|1995-05-28|COLLECT COD|REG AIR|uriously ironic ideas haggle regular, ironi| +78765|518738|18739|3|11|19323.81|0.08|0.01|R|F|1995-03-29|1995-05-01|1995-04-28|NONE|RAIL|s hang by the pending instru| +78765|428775|41284|4|41|69853.75|0.08|0.06|A|F|1995-05-24|1995-05-03|1995-05-28|DELIVER IN PERSON|REG AIR|e pending di| +78765|420254|45271|5|40|46969.20|0.02|0.03|R|F|1995-03-21|1995-05-16|1995-04-05|NONE|FOB|uriously plat| +78765|193188|18195|6|10|12811.80|0.09|0.02|R|F|1995-05-15|1995-04-19|1995-05-30|DELIVER IN PERSON|AIR|kages. quickly regular p| +78766|279568|29569|1|32|49521.60|0.04|0.08|R|F|1993-11-04|1993-12-17|1993-11-05|DELIVER IN PERSON|AIR|blithely e| +78766|682892|20432|2|34|63745.24|0.04|0.07|R|F|1993-12-11|1994-01-04|1993-12-22|DELIVER IN PERSON|TRUCK|wly ironic re| +78766|364321|26829|3|8|11082.48|0.02|0.08|R|F|1994-01-12|1993-12-27|1994-02-08|COLLECT COD|RAIL|regular ideas | +78766|134026|21533|4|29|30740.58|0.05|0.03|A|F|1994-01-31|1993-11-13|1994-02-04|COLLECT COD|SHIP|ove the furiously iron| +78766|559602|9603|5|11|18277.38|0.01|0.02|A|F|1994-01-05|1993-11-25|1994-01-31|TAKE BACK RETURN|RAIL|out the blithely even foxes cajole bli| +78766|214834|27339|6|19|33227.58|0.02|0.07|A|F|1993-12-26|1993-12-17|1994-01-07|TAKE BACK RETURN|REG AIR|lar requests. final packages poach q| +78766|713295|38324|7|31|40556.06|0.04|0.02|A|F|1993-11-01|1994-01-08|1993-11-22|TAKE BACK RETURN|FOB|ual ideas boost reg| +78767|334469|46976|1|31|46606.95|0.06|0.06|N|O|1998-07-23|1998-06-12|1998-07-27|TAKE BACK RETURN|AIR|nd the carefully ev| +78767|419208|31717|2|49|55231.82|0.02|0.06|N|O|1998-07-31|1998-06-01|1998-08-23|COLLECT COD|SHIP|ccounts sleep qu| +78767|626534|1559|3|42|61341.00|0.08|0.07|N|O|1998-05-23|1998-06-19|1998-06-04|COLLECT COD|MAIL|eposits are | +78767|156639|19143|4|28|47477.64|0.02|0.06|N|O|1998-07-14|1998-06-19|1998-08-12|NONE|REG AIR|ily final dependencies. carefull| +78767|620451|32964|5|43|58971.06|0.03|0.04|N|O|1998-06-10|1998-06-19|1998-06-14|COLLECT COD|REG AIR|sleep caref| +78767|905234|30271|6|15|18587.85|0.04|0.00|N|O|1998-07-30|1998-06-21|1998-08-24|TAKE BACK RETURN|AIR|against the quickly even account| +78792|949230|24267|1|32|40934.08|0.04|0.04|A|F|1993-11-13|1993-10-12|1993-11-20|DELIVER IN PERSON|REG AIR|lyly even theodolites. even s| +78793|381918|44426|1|48|95995.20|0.08|0.00|A|F|1992-07-23|1992-07-01|1992-07-29|COLLECT COD|MAIL|lithely. slyl| +78793|893483|18518|2|42|62010.48|0.08|0.02|A|F|1992-05-17|1992-07-15|1992-05-26|TAKE BACK RETURN|AIR|excuses. furiously even r| +78793|752680|40226|3|11|19059.15|0.07|0.01|R|F|1992-06-25|1992-06-29|1992-06-28|TAKE BACK RETURN|MAIL|lly carefu| +78794|459768|9769|1|4|6910.96|0.00|0.02|R|F|1994-10-21|1994-11-06|1994-10-28|NONE|AIR|ly. quickly regular| +78794|307453|7454|2|1|1460.44|0.05|0.08|R|F|1994-09-12|1994-10-10|1994-10-01|TAKE BACK RETURN|SHIP|y regular deposits haggle carefully | +78794|350474|475|3|1|1524.46|0.09|0.05|A|F|1995-01-06|1994-11-11|1995-01-14|DELIVER IN PERSON|TRUCK|l foxes use fur| +78794|410064|10065|4|21|20454.84|0.07|0.03|A|F|1994-10-30|1994-11-09|1994-11-09|NONE|FOB|. blithely unusual deposits believ| +78794|938987|14024|5|26|52674.44|0.03|0.01|R|F|1994-12-08|1994-10-26|1994-12-31|COLLECT COD|AIR|y final instructions mainta| +78795|760384|10385|1|5|7221.75|0.04|0.06|A|F|1994-02-04|1994-01-05|1994-02-22|TAKE BACK RETURN|REG AIR| quickly ironic forges. regular accoun| +78796|78215|40717|1|29|34603.09|0.08|0.05|R|F|1993-01-09|1992-12-31|1993-01-13|COLLECT COD|TRUCK|gly along the slyly sile| +78796|553186|28209|2|25|30979.00|0.07|0.04|A|F|1992-11-13|1993-01-20|1992-12-09|NONE|REG AIR|es snooze at the carefully reg| +78796|390335|15350|3|19|27081.08|0.04|0.06|R|F|1993-01-27|1992-12-27|1993-02-18|NONE|MAIL|s deposits integrate slyly around the pe| +78796|346099|21112|4|48|54963.84|0.01|0.04|R|F|1993-02-19|1993-01-15|1993-02-26|TAKE BACK RETURN|MAIL|beans. unusual, express| +78796|873373|48408|5|25|33658.25|0.09|0.06|A|F|1992-11-06|1992-12-19|1992-12-02|COLLECT COD|REG AIR|y regular instructions wake alongside of | +78797|367780|30288|1|26|48042.02|0.05|0.05|N|O|1996-07-07|1996-05-13|1996-07-27|NONE|SHIP| regular deposits about the slyly ironi| +78797|273384|10900|2|1|1357.37|0.08|0.02|N|O|1996-04-03|1996-04-29|1996-04-12|NONE|RAIL|ick courts. care| +78797|749491|37034|3|38|58537.48|0.03|0.04|N|O|1996-04-14|1996-05-30|1996-05-05|NONE|TRUCK|each: slyly unusual fray| +78797|691559|41560|4|10|15505.20|0.10|0.05|N|O|1996-05-04|1996-05-03|1996-05-23|COLLECT COD|TRUCK|refully ir| +78797|15808|3309|5|4|6895.20|0.07|0.00|N|O|1996-03-24|1996-05-05|1996-04-03|DELIVER IN PERSON|TRUCK| players. express, final packages| +78798|614776|39801|1|35|59175.90|0.05|0.05|N|O|1996-07-24|1996-09-09|1996-08-20|COLLECT COD|FOB|s sleep slyly foxes. slyly unusual f| +78799|560052|10053|1|35|38921.05|0.07|0.08|A|F|1995-04-01|1995-03-26|1995-04-09|NONE|AIR|ch furiously | +78799|778637|3668|2|22|37743.20|0.03|0.07|R|F|1995-02-06|1995-03-10|1995-02-23|COLLECT COD|SHIP| requests. ironic theodolites mold fluffi| +78799|540183|2694|3|29|35471.64|0.01|0.05|R|F|1995-01-26|1995-03-08|1995-02-12|TAKE BACK RETURN|SHIP|refully silent accounts| +78799|853710|16228|4|1|1663.67|0.05|0.05|A|F|1994-12-28|1995-03-24|1995-01-15|TAKE BACK RETURN|RAIL|s haggle blithely dogged realms| +78799|297856|10362|5|43|79715.12|0.08|0.04|A|F|1995-01-18|1995-03-17|1995-01-31|DELIVER IN PERSON|TRUCK|quests: regularly pending requests | +78799|55899|43403|6|17|31533.13|0.06|0.01|A|F|1995-02-27|1995-02-07|1995-03-19|COLLECT COD|MAIL| instructions kindle blithely | +78799|481225|31226|7|29|34979.80|0.10|0.08|A|F|1995-01-12|1995-03-07|1995-01-14|NONE|AIR|ar deposits sleep fluf| +78824|936836|24391|1|49|91766.71|0.09|0.03|N|O|1995-08-28|1995-08-17|1995-08-30|DELIVER IN PERSON|SHIP|longside of the slyly express| +78824|389716|39717|2|29|52365.30|0.03|0.03|N|O|1995-10-05|1995-08-01|1995-10-22|DELIVER IN PERSON|MAIL|nusual deposits. regular accoun| +78824|950606|607|3|49|81171.44|0.00|0.01|N|O|1995-06-26|1995-08-06|1995-07-14|NONE|FOB|unts. regular ideas wake quietly f| +78824|833205|20754|4|39|44388.24|0.10|0.01|N|O|1995-10-01|1995-09-03|1995-10-03|DELIVER IN PERSON|REG AIR|st the sile| +78825|449756|24773|1|35|59700.55|0.02|0.07|A|F|1994-02-05|1994-01-18|1994-03-07|NONE|FOB|ey players are furiously along the regul| +78825|32335|44836|2|49|62099.17|0.04|0.05|A|F|1994-02-10|1994-02-24|1994-02-27|COLLECT COD|RAIL|wake. slyly regular deposits eat. requ| +78825|448407|48408|3|23|31173.74|0.07|0.02|A|F|1994-01-29|1994-02-15|1994-02-06|NONE|SHIP|hely ironic, enticing deposits.| +78825|375309|12831|4|46|63677.34|0.02|0.04|R|F|1994-01-12|1994-01-30|1994-02-10|TAKE BACK RETURN|TRUCK|leep furiously unusual, regular theodolites| +78826|350149|25164|1|46|55159.98|0.04|0.06|A|F|1992-12-30|1992-11-23|1993-01-13|TAKE BACK RETURN|MAIL|ly regular accounts serve blith| +78826|941279|3798|2|43|56769.89|0.02|0.04|R|F|1993-01-07|1992-12-19|1993-01-16|DELIVER IN PERSON|SHIP|egrate. reg| +78826|67992|42995|3|39|76439.61|0.05|0.05|R|F|1992-10-07|1992-12-05|1992-10-27|NONE|TRUCK|uctions. furiously ironic packages acro| +78826|740534|28077|4|12|18894.00|0.09|0.08|R|F|1993-01-12|1992-12-17|1993-01-29|COLLECT COD|AIR|notornis. patterns imp| +78826|144952|7455|5|15|29954.25|0.06|0.07|R|F|1992-10-10|1992-11-29|1992-11-07|DELIVER IN PERSON|SHIP|ss instructions. bli| +78827|574019|24020|1|22|24045.78|0.07|0.00|N|O|1997-08-28|1997-07-08|1997-09-17|COLLECT COD|AIR|l asymptot| +78827|532320|7341|2|37|50035.10|0.01|0.01|N|O|1997-08-26|1997-08-10|1997-08-28|DELIVER IN PERSON|MAIL|ng the accounts| +78827|696927|34467|3|37|71183.93|0.05|0.00|N|O|1997-08-22|1997-07-21|1997-09-01|COLLECT COD|REG AIR|s are slyly final p| +78827|237332|49837|4|36|45695.52|0.03|0.00|N|O|1997-07-18|1997-08-08|1997-08-14|TAKE BACK RETURN|AIR|en deposits around the furiously unusual p| +78827|825229|37746|5|34|39242.12|0.01|0.01|N|O|1997-07-20|1997-07-13|1997-08-07|NONE|FOB| the pending, bold packa| +78827|616403|28916|6|47|62010.39|0.01|0.08|N|O|1997-09-02|1997-08-05|1997-09-24|TAKE BACK RETURN|AIR| instructions cajole about the even dep| +78828|644094|19119|1|25|25951.50|0.07|0.01|A|F|1992-11-05|1992-12-07|1992-11-14|DELIVER IN PERSON|AIR|sts play slyly amon| +78828|280149|5160|2|4|4516.52|0.07|0.08|R|F|1992-11-08|1992-12-23|1992-11-09|TAKE BACK RETURN|AIR|ly ironic pinto| +78828|447478|35003|3|4|5701.80|0.06|0.00|A|F|1992-12-05|1992-12-06|1993-01-04|COLLECT COD|REG AIR|ts impress agai| +78828|748773|11288|4|10|18217.40|0.02|0.04|A|F|1993-01-20|1993-01-09|1993-02-11|DELIVER IN PERSON|REG AIR| instructions. blithely final pinto b| +78829|580035|5058|1|37|41255.37|0.10|0.00|A|F|1992-11-01|1992-12-15|1992-11-10|NONE|AIR|ly final accounts sle| +78829|643979|43980|2|36|69225.84|0.10|0.08|R|F|1992-12-13|1993-01-05|1992-12-17|TAKE BACK RETURN|TRUCK|integrate blithely ironic somas. fluffily| +78829|340939|15952|3|44|87116.48|0.04|0.01|R|F|1992-12-03|1992-12-06|1992-12-28|TAKE BACK RETURN|MAIL|ly by the regular dependencies. special,| +78830|835897|23446|1|44|80645.40|0.03|0.07|N|O|1996-10-20|1996-10-01|1996-10-22|TAKE BACK RETURN|REG AIR|e furiously regular | +78830|912074|12075|2|40|43441.20|0.01|0.04|N|O|1996-09-02|1996-11-12|1996-09-05|COLLECT COD|REG AIR|dogged, silent pa| +78831|18183|30684|1|47|51755.46|0.10|0.08|N|O|1997-07-20|1997-08-31|1997-07-30|DELIVER IN PERSON|AIR|ts. ironic, ir| +78856|182410|44914|1|41|61188.81|0.07|0.03|N|O|1998-06-10|1998-06-12|1998-07-02|COLLECT COD|AIR|pinto beans. slyly reg| +78857|541191|16212|1|31|38197.27|0.09|0.08|N|O|1996-12-13|1997-01-29|1997-01-11|COLLECT COD|SHIP|ise blithely. express requests nag caref| +78857|795851|20882|2|38|73979.16|0.10|0.08|N|O|1996-11-28|1997-01-29|1996-12-03|TAKE BACK RETURN|AIR|al instructions affix doggedly. slyly even | +78857|856277|6278|3|10|12332.30|0.04|0.03|N|O|1996-11-29|1997-01-03|1996-12-20|NONE|TRUCK|c hockey pla| +78858|830601|30602|1|50|76578.00|0.06|0.07|N|O|1996-11-03|1997-01-13|1996-11-07|COLLECT COD|RAIL|ily final packages boost flu| +78858|907911|45466|2|12|23026.44|0.04|0.06|N|O|1997-02-16|1996-12-25|1997-02-17|DELIVER IN PERSON|TRUCK|according | +78858|247535|10040|3|30|44475.60|0.00|0.07|N|O|1997-01-16|1997-01-17|1997-02-12|NONE|RAIL|s. slyly special packages af| +78858|304564|4565|4|44|69016.20|0.01|0.01|N|O|1996-11-21|1997-01-02|1996-12-12|TAKE BACK RETURN|REG AIR|ording to the fur| +78858|798927|23958|5|20|40517.80|0.07|0.04|N|O|1997-01-04|1997-01-11|1997-01-06|TAKE BACK RETURN|TRUCK|lithely regular the| +78858|560606|23118|6|42|69996.36|0.09|0.07|N|O|1996-11-10|1997-01-10|1996-11-19|COLLECT COD|SHIP|old packages wa| +78858|96297|8799|7|35|45265.15|0.00|0.03|N|O|1996-11-10|1996-11-27|1996-11-16|NONE|FOB|es. carefully ironic somas s| +78859|459244|34263|1|22|26470.84|0.10|0.04|R|F|1993-09-24|1993-08-30|1993-10-20|DELIVER IN PERSON|SHIP|. carefully special sentiments among t| +78859|503233|15744|2|33|40794.93|0.00|0.06|R|F|1993-06-23|1993-08-12|1993-07-03|TAKE BACK RETURN|MAIL| dependencies along the | +78860|248686|36199|1|8|13077.36|0.10|0.04|A|F|1993-06-22|1993-07-10|1993-07-21|NONE|TRUCK|ongside of the| +78860|656389|18903|2|39|52468.65|0.06|0.04|A|F|1993-07-09|1993-07-03|1993-08-08|COLLECT COD|AIR|efully silently unusual attainments.| +78860|921553|21554|3|12|18894.12|0.07|0.00|A|F|1993-06-30|1993-07-28|1993-07-03|COLLECT COD|MAIL|hins. blithe| +78860|526900|26901|4|29|55879.52|0.08|0.01|R|F|1993-06-06|1993-08-10|1993-06-14|NONE|MAIL|c requests. quickly pending instru| +78860|593097|30631|5|11|13090.77|0.06|0.06|A|F|1993-07-09|1993-08-09|1993-07-24|DELIVER IN PERSON|RAIL|sleep blithely alongside| +78860|172228|47235|6|40|52008.80|0.00|0.01|R|F|1993-08-01|1993-08-01|1993-08-08|DELIVER IN PERSON|AIR|beans: even instruc| +78860|621553|21554|7|8|11796.16|0.07|0.02|R|F|1993-08-18|1993-08-07|1993-08-19|DELIVER IN PERSON|TRUCK|. dependencies haggle| +78861|424482|24483|1|40|56258.40|0.00|0.02|R|F|1992-12-04|1992-10-17|1992-12-15|NONE|TRUCK|ronic frets according to| +78861|261074|48590|2|4|4140.24|0.05|0.08|A|F|1992-11-13|1992-11-04|1992-12-04|COLLECT COD|TRUCK|endencies since the slyly bol| +78861|865744|40779|3|29|49581.30|0.06|0.06|A|F|1992-10-24|1992-10-01|1992-11-22|DELIVER IN PERSON|FOB|asymptotes are quickly silent deposits.| +78862|443216|43217|1|15|17387.85|0.10|0.00|A|F|1994-02-16|1994-03-21|1994-03-10|TAKE BACK RETURN|REG AIR|sly. furiously special| +78863|55571|18073|1|29|44270.53|0.05|0.07|N|O|1998-08-11|1998-08-29|1998-08-26|DELIVER IN PERSON|AIR|tes sublate carefully ironic pin| +78863|971109|21110|2|18|21241.08|0.01|0.08|N|O|1998-06-25|1998-09-08|1998-07-22|DELIVER IN PERSON|AIR| carefully ironic pinto beans thra| +78863|414782|39799|3|23|39025.48|0.06|0.00|N|O|1998-09-26|1998-08-18|1998-10-03|DELIVER IN PERSON|REG AIR|ously even decoys will h| +78863|240651|28164|4|24|38199.36|0.01|0.00|N|O|1998-10-02|1998-07-28|1998-10-12|TAKE BACK RETURN|RAIL|gle. furiously pend| +78863|618476|43501|5|47|65538.68|0.10|0.02|N|O|1998-09-02|1998-08-13|1998-09-27|COLLECT COD|SHIP|lites. slyly | +78863|723541|23542|6|16|25032.16|0.05|0.07|N|O|1998-09-03|1998-09-05|1998-09-29|TAKE BACK RETURN|RAIL|. unusual pinto beans x-ray quickl| +78863|553365|15877|7|20|28366.80|0.00|0.07|N|O|1998-06-26|1998-09-06|1998-07-23|DELIVER IN PERSON|TRUCK|ar theodol| +78888|396560|21575|1|37|61292.35|0.00|0.03|A|F|1994-07-08|1994-06-28|1994-07-09|NONE|FOB|es across the slyly silent asympto| +78888|983591|8630|2|15|25118.25|0.03|0.07|A|F|1994-05-15|1994-05-22|1994-05-20|NONE|AIR|run blithely across the carefully ironic in| +78888|211708|24213|3|36|58308.84|0.10|0.03|A|F|1994-05-12|1994-05-22|1994-05-18|TAKE BACK RETURN|TRUCK|egular dolphins c| +78888|172412|34916|4|18|26719.38|0.09|0.04|A|F|1994-07-23|1994-06-09|1994-08-07|DELIVER IN PERSON|REG AIR|ly even packages af| +78889|870211|20212|1|1|1181.17|0.03|0.06|N|O|1995-10-08|1995-10-19|1995-10-16|COLLECT COD|AIR|ut the furiously even requests. eve| +78889|630486|5511|2|47|66573.15|0.04|0.01|N|O|1995-09-13|1995-10-10|1995-10-04|COLLECT COD|RAIL|ake around the slyly exp| +78889|577532|15066|3|11|17704.61|0.08|0.00|N|O|1995-08-25|1995-10-10|1995-09-24|TAKE BACK RETURN|RAIL|uld have to nag cl| +78889|573166|10700|4|47|58239.58|0.04|0.02|N|O|1995-09-25|1995-10-29|1995-10-17|TAKE BACK RETURN|REG AIR|refully pending foxes; carefu| +78890|281614|6625|1|38|60632.80|0.09|0.01|N|O|1997-07-30|1997-09-06|1997-08-06|DELIVER IN PERSON|MAIL|final, final ins| +78891|240592|40593|1|3|4597.74|0.05|0.06|N|O|1997-08-28|1997-06-16|1997-09-21|TAKE BACK RETURN|AIR|r excuses cajole near | +78892|543563|6074|1|6|9639.24|0.08|0.05|N|O|1998-05-10|1998-05-05|1998-05-24|DELIVER IN PERSON|MAIL|sts maintain across the | +78892|658390|33417|2|41|55282.76|0.00|0.07|N|O|1998-05-26|1998-04-01|1998-06-09|NONE|RAIL|the permanently unusual accou| +78892|559507|34530|3|5|7832.40|0.05|0.02|N|O|1998-03-12|1998-04-29|1998-04-10|COLLECT COD|SHIP|eaves? furiously bold deposits| +78892|623397|10934|4|45|59416.20|0.10|0.07|N|O|1998-05-16|1998-04-16|1998-06-08|TAKE BACK RETURN|TRUCK|mold. blithely regular ideas run dep| +78892|424840|49857|5|2|3529.64|0.08|0.01|N|O|1998-05-19|1998-03-24|1998-06-17|COLLECT COD|RAIL| have to int| +78892|281438|18954|6|21|29807.82|0.09|0.04|N|O|1998-02-20|1998-04-21|1998-03-03|TAKE BACK RETURN|RAIL|ns. ironic packages sleep alongside of the | +78893|138177|680|1|9|10936.53|0.02|0.05|R|F|1992-08-16|1992-09-07|1992-09-09|COLLECT COD|SHIP|lets cajole alo| +78893|338813|1320|2|35|64813.00|0.06|0.06|A|F|1992-08-07|1992-09-04|1992-08-28|COLLECT COD|MAIL| requests cajole according to the regular d| +78893|427056|39565|3|1|983.03|0.02|0.04|R|F|1992-09-03|1992-09-06|1992-09-10|NONE|REG AIR|ross the requests. express i| +78894|767836|30352|1|46|87574.80|0.10|0.05|N|O|1996-05-09|1996-05-21|1996-05-14|COLLECT COD|AIR|ly bold accounts. ironic,| +78894|17089|4590|2|32|32194.56|0.06|0.07|N|O|1996-06-28|1996-04-21|1996-07-22|COLLECT COD|SHIP|ely even deposits boost blithely ironic pa| +78894|202293|2294|3|18|21515.04|0.02|0.02|N|O|1996-03-22|1996-05-22|1996-04-21|TAKE BACK RETURN|MAIL|even packages toward the | +78894|932430|19985|4|19|27785.41|0.04|0.03|N|O|1996-07-02|1996-05-17|1996-07-21|TAKE BACK RETURN|MAIL|ly final requests| +78895|864008|26526|1|22|21383.12|0.01|0.08|A|F|1993-10-20|1993-11-24|1993-11-11|TAKE BACK RETURN|SHIP|lithely. carefully regula| +78895|378936|41444|2|36|72537.12|0.05|0.01|R|F|1993-12-04|1993-12-04|1993-12-21|COLLECT COD|REG AIR|y express packages| +78895|762144|24660|3|1|1206.11|0.03|0.04|A|F|1994-01-07|1993-12-10|1994-01-28|NONE|FOB|al platelets haggle furiously pending,| +78895|342996|5503|4|19|38740.62|0.02|0.04|A|F|1994-01-20|1994-01-13|1994-02-12|TAKE BACK RETURN|REG AIR|ven ideas. carefu| +78895|725038|25039|5|21|22323.00|0.07|0.08|A|F|1993-11-03|1994-01-04|1993-11-20|DELIVER IN PERSON|SHIP|fully ironic foxes s| +78920|72053|9557|1|37|37926.85|0.09|0.02|R|F|1993-10-20|1993-10-16|1993-11-01|NONE|TRUCK|final dolphins haggle quickly | +78920|993283|43284|2|13|17891.12|0.03|0.08|A|F|1993-08-27|1993-10-10|1993-09-05|COLLECT COD|MAIL|furiously regular depo| +78920|95436|20439|3|26|37217.18|0.07|0.07|A|F|1993-12-07|1993-10-22|1993-12-16|TAKE BACK RETURN|FOB|ependencies. b| +78920|980672|18230|4|10|17526.30|0.08|0.02|A|F|1993-08-20|1993-09-24|1993-08-26|DELIVER IN PERSON|SHIP|brave pains haggle slyly across the expre| +78920|146689|21694|5|36|62484.48|0.09|0.06|A|F|1993-09-17|1993-10-29|1993-10-10|TAKE BACK RETURN|SHIP|ending deposits. slyly permanent packag| +78920|391750|4258|6|16|29467.84|0.04|0.03|A|F|1993-11-02|1993-09-29|1993-11-27|NONE|REG AIR| sleep furiously among the| +78921|679133|4160|1|39|43371.90|0.05|0.01|A|F|1993-06-04|1993-04-24|1993-06-05|TAKE BACK RETURN|REG AIR|ross the express, pendi| +78921|180727|18237|2|31|56039.32|0.06|0.02|A|F|1993-06-22|1993-04-23|1993-07-11|COLLECT COD|FOB|ts. slyly r| +78921|471997|21998|3|33|64976.01|0.04|0.07|A|F|1993-05-14|1993-04-07|1993-06-04|DELIVER IN PERSON|TRUCK|y. slow, express| +78921|851827|1828|4|44|78266.32|0.07|0.06|A|F|1993-02-22|1993-04-07|1993-03-24|COLLECT COD|MAIL|deas sleep fluffil| +78921|646594|21619|5|11|16946.16|0.02|0.07|A|F|1993-04-23|1993-05-14|1993-05-14|COLLECT COD|FOB|oach furiously about| +78921|300770|13277|6|13|23019.88|0.05|0.08|R|F|1993-05-22|1993-04-07|1993-06-17|COLLECT COD|AIR|. quickly regular foxes wake| +78922|329013|41520|1|37|38554.00|0.03|0.05|N|O|1995-11-23|1995-12-03|1995-11-24|DELIVER IN PERSON|RAIL|foxes cajo| +78923|251008|26019|1|22|21097.78|0.06|0.04|A|F|1994-04-01|1994-04-16|1994-04-14|TAKE BACK RETURN|REG AIR|ing accoun| +78923|689913|2427|2|43|81823.84|0.02|0.03|R|F|1994-03-02|1994-03-28|1994-03-23|DELIVER IN PERSON|FOB|rding to the slyly final platelets| +78923|353036|3037|3|32|34848.64|0.08|0.00|R|F|1994-03-28|1994-03-14|1994-04-20|NONE|TRUCK| play even, idle requests: quickly| +78923|468212|5740|4|35|41306.65|0.06|0.08|A|F|1994-02-04|1994-03-17|1994-02-23|COLLECT COD|REG AIR|counts nag. blithel| +78923|231107|31108|5|3|3114.27|0.05|0.07|A|F|1994-04-11|1994-03-22|1994-05-02|NONE|RAIL| even requests. care| +78924|484041|9060|1|41|42025.82|0.10|0.00|N|O|1996-01-13|1995-12-27|1996-01-26|NONE|FOB|jole furiously even requests! pinto beans w| +78924|267978|17979|2|42|81730.32|0.03|0.05|N|O|1995-12-28|1996-01-03|1996-01-19|COLLECT COD|REG AIR|ackages. carefully furious p| +78924|894180|31732|3|37|43443.18|0.05|0.06|N|O|1995-12-13|1996-02-21|1995-12-27|TAKE BACK RETURN|REG AIR| carefully regular packages nag e| +78924|477379|39889|4|3|4069.05|0.08|0.06|N|O|1996-01-24|1996-01-21|1996-02-16|DELIVER IN PERSON|REG AIR|ly above the express pinto be| +78924|303532|3533|5|28|42994.56|0.05|0.04|N|O|1996-03-14|1996-01-25|1996-04-07|TAKE BACK RETURN|TRUCK|. slyly special foxes haggle ca| +78925|666428|28942|1|37|51592.43|0.04|0.07|A|F|1993-05-03|1993-06-10|1993-06-02|NONE|MAIL|uriously even platelets caj| +78926|51563|1564|1|42|63611.52|0.03|0.02|N|O|1996-08-08|1996-09-23|1996-08-13|TAKE BACK RETURN|TRUCK|less dependencies. furiously reg| +78926|607326|19839|2|45|55498.05|0.04|0.04|N|O|1996-08-06|1996-09-18|1996-08-26|DELIVER IN PERSON|RAIL|oxes cajole furiously| +78926|315502|3021|3|41|62217.09|0.08|0.08|N|O|1996-11-06|1996-10-22|1996-11-28|COLLECT COD|RAIL|ven accounts. furiously | +78926|640607|15632|4|23|35594.11|0.10|0.02|N|O|1996-10-24|1996-10-05|1996-11-03|TAKE BACK RETURN|TRUCK|quests. quickly fina| +78927|24131|49132|1|25|26378.25|0.03|0.08|A|F|1994-12-08|1994-11-12|1994-12-15|DELIVER IN PERSON|MAIL|ies integrate furiously ca| +78927|567926|42949|2|9|17945.10|0.10|0.03|R|F|1994-12-16|1994-12-09|1995-01-14|NONE|FOB|final excuses | +78927|126493|38996|3|23|34948.27|0.10|0.05|R|F|1994-10-24|1994-12-25|1994-10-30|NONE|RAIL|accounts according to the| +78927|964267|26787|4|22|29286.84|0.01|0.06|A|F|1994-12-18|1994-11-27|1995-01-13|NONE|TRUCK|carefully excuses!| +78927|432716|32717|5|28|46163.32|0.05|0.01|R|F|1994-11-24|1994-12-11|1994-11-27|TAKE BACK RETURN|REG AIR|uests. fluffily even instructions sleep fu| +78927|646998|34535|6|27|52513.92|0.07|0.05|R|F|1994-10-13|1994-12-20|1994-10-21|DELIVER IN PERSON|REG AIR|unusual packages | +78952|896422|33974|1|1|1418.38|0.09|0.05|N|O|1997-06-26|1997-08-02|1997-07-23|NONE|REG AIR|. blithely even foxes cajole furiously. | +78952|154554|29561|2|27|43430.85|0.02|0.05|N|O|1997-08-30|1997-07-03|1997-09-21|DELIVER IN PERSON|AIR|y unusual instructions| +78952|578641|3664|3|13|22355.06|0.05|0.02|N|O|1997-09-07|1997-07-27|1997-09-20|COLLECT COD|RAIL|as cajole furiously. fluffily pending pack| +78952|217988|5501|4|6|11435.82|0.00|0.05|N|O|1997-07-09|1997-08-08|1997-07-16|NONE|FOB| deposits haggle blithely about th| +78952|723477|48506|5|33|49514.52|0.08|0.05|N|O|1997-07-26|1997-08-08|1997-07-27|COLLECT COD|SHIP|ct against the accounts. flu| +78953|933439|45958|1|22|32392.58|0.10|0.03|N|O|1998-02-11|1998-03-12|1998-03-13|TAKE BACK RETURN|REG AIR|into beans. foxes nag. final,| +78953|297691|35207|2|22|37150.96|0.10|0.06|N|O|1998-02-14|1998-04-19|1998-03-03|TAKE BACK RETURN|RAIL|unusual dependencies| +78953|279064|41570|3|10|10430.50|0.07|0.03|N|O|1998-04-24|1998-03-15|1998-05-19|DELIVER IN PERSON|REG AIR| express deposits haggle furiously careful| +78953|216303|3816|4|35|42675.15|0.02|0.04|N|O|1998-05-06|1998-04-01|1998-05-21|TAKE BACK RETURN|TRUCK|ffily. ins| +78953|390494|40495|5|48|76055.04|0.01|0.06|N|O|1998-04-16|1998-05-02|1998-04-29|DELIVER IN PERSON|REG AIR|ly slyly final Tiresias? furiously pe| +78953|29659|42160|6|47|74666.55|0.04|0.06|N|O|1998-03-31|1998-04-06|1998-04-25|DELIVER IN PERSON|AIR| deposits cajole furiously after the bo| +78954|19100|31601|1|3|3057.30|0.00|0.05|N|O|1995-10-02|1995-10-12|1995-10-28|TAKE BACK RETURN|TRUCK|ily above the express depo| +78954|8647|21148|2|3|4666.92|0.08|0.07|N|O|1995-10-31|1995-11-25|1995-11-12|DELIVER IN PERSON|AIR|g fluffily after the slyly ironic d| +78954|327515|15034|3|50|77125.00|0.01|0.02|N|O|1995-10-04|1995-10-17|1995-10-28|NONE|AIR|al pinto beans haggle fluffil| +78954|531906|6927|4|27|52322.76|0.09|0.02|N|O|1995-09-04|1995-09-29|1995-09-16|COLLECT COD|SHIP| furiously regular i| +78954|736811|36812|5|39|72063.42|0.03|0.08|N|O|1995-11-18|1995-10-01|1995-11-24|NONE|REG AIR|closely across the | +78955|715682|40711|1|26|44138.90|0.10|0.03|A|F|1994-09-17|1994-09-16|1994-09-22|COLLECT COD|AIR| theodolites boost after the inst| +78955|455569|5570|2|32|48785.28|0.02|0.06|R|F|1994-07-10|1994-09-05|1994-07-30|DELIVER IN PERSON|AIR|lly special, express | +78955|736345|36346|3|38|52489.78|0.10|0.04|A|F|1994-07-11|1994-08-11|1994-07-28|DELIVER IN PERSON|AIR|otes use carefully alongside of the b| +78955|750235|236|4|12|15422.40|0.07|0.08|A|F|1994-07-28|1994-09-17|1994-08-20|NONE|TRUCK|deas according| +78955|192931|17938|5|24|48574.32|0.01|0.08|R|F|1994-09-21|1994-08-10|1994-10-11|DELIVER IN PERSON|FOB|riously pinto beans. alway| +78955|586320|11343|6|39|54845.70|0.04|0.06|A|F|1994-10-12|1994-08-08|1994-11-10|NONE|FOB|odolites use slyly about the slyly| +78956|780451|30452|1|8|12251.36|0.02|0.03|N|O|1996-10-19|1996-09-24|1996-11-18|TAKE BACK RETURN|FOB| dugouts ha| +78956|33784|21285|2|37|63557.86|0.05|0.01|N|O|1996-08-24|1996-10-09|1996-08-31|NONE|SHIP|al requests! regular dolphins wa| +78956|802292|2293|3|17|20302.25|0.05|0.01|N|O|1996-07-30|1996-10-07|1996-08-20|NONE|REG AIR|thely bold excuses haggle| +78956|112933|440|4|33|64215.69|0.09|0.00|N|O|1996-10-25|1996-09-20|1996-11-19|DELIVER IN PERSON|AIR|lly ironic accounts| +78957|634266|21803|1|32|38407.36|0.04|0.01|A|F|1993-08-05|1993-06-25|1993-08-12|DELIVER IN PERSON|RAIL|ct fluffily after| +78957|107811|20314|2|22|40013.82|0.02|0.02|R|F|1993-05-22|1993-05-18|1993-06-02|DELIVER IN PERSON|REG AIR| whithout the furiously f| +78958|101987|14490|1|3|5966.94|0.10|0.06|R|F|1994-06-13|1994-06-10|1994-07-10|DELIVER IN PERSON|MAIL|into beans. final exc| +78958|92413|42414|2|25|35135.25|0.01|0.06|R|F|1994-04-12|1994-05-02|1994-05-03|NONE|MAIL| unusual excuses believe blithel| +78958|169394|6904|3|31|45365.09|0.08|0.01|R|F|1994-06-25|1994-06-09|1994-06-29|DELIVER IN PERSON|RAIL|ependencies cajole along the pending i| +78958|997047|9567|4|50|57200.00|0.06|0.02|A|F|1994-04-18|1994-05-04|1994-05-12|COLLECT COD|REG AIR|kages kindle furiously deposits. | +78958|357567|32582|5|2|3249.10|0.09|0.01|A|F|1994-05-05|1994-06-14|1994-05-10|COLLECT COD|REG AIR|the silent pinto beans boost ab| +78958|624404|36917|6|22|29224.14|0.02|0.03|A|F|1994-05-07|1994-04-22|1994-05-26|COLLECT COD|REG AIR|eas; slyly even requests| +78959|514064|14065|1|26|28029.04|0.03|0.00|N|O|1998-04-22|1998-03-15|1998-04-30|COLLECT COD|MAIL| bold requests wake quickly fluffi| +78959|863345|13346|2|14|18316.20|0.07|0.07|N|O|1998-03-18|1998-02-21|1998-04-17|COLLECT COD|SHIP|was carefully along th| +78959|230938|30939|3|37|69150.04|0.08|0.01|N|O|1998-03-17|1998-03-25|1998-04-12|DELIVER IN PERSON|SHIP| pinto beans| +78984|444043|6552|1|23|22701.46|0.08|0.00|N|O|1996-08-15|1996-08-22|1996-08-30|TAKE BACK RETURN|AIR|und the blithely even deposits. furiousl| +78985|628111|3136|1|40|41563.20|0.09|0.07|R|F|1995-05-19|1995-05-12|1995-06-17|TAKE BACK RETURN|MAIL|ep slyly slyly regular accounts. | +78985|646316|46317|2|1|1262.28|0.00|0.06|A|F|1995-03-23|1995-04-10|1995-04-18|DELIVER IN PERSON|REG AIR|nst the carefully regular asymptot| +78985|625845|38358|3|25|44270.25|0.06|0.06|A|F|1995-03-21|1995-03-26|1995-03-30|DELIVER IN PERSON|FOB| carefully bold ac| +78985|571108|46131|4|42|49521.36|0.09|0.05|A|F|1995-05-08|1995-04-04|1995-05-16|DELIVER IN PERSON|AIR|eans nag slyly up the sl| +78985|601907|1908|5|28|50648.36|0.00|0.00|A|F|1995-05-02|1995-05-09|1995-06-01|NONE|SHIP|s. final foxes sleep carefully according | +78985|234682|34683|6|15|24250.05|0.10|0.05|R|F|1995-06-10|1995-04-16|1995-06-14|DELIVER IN PERSON|SHIP| gifts are carefully. quickly regul| +78985|296600|21611|7|32|51090.88|0.10|0.05|R|F|1995-04-26|1995-04-12|1995-05-23|TAKE BACK RETURN|RAIL|fter the furiously | +78986|952344|14864|1|4|5585.20|0.06|0.07|A|F|1994-09-27|1994-08-05|1994-10-10|TAKE BACK RETURN|RAIL|nding deposits above the quickl| +78986|44706|44707|2|5|8253.50|0.09|0.07|R|F|1994-06-30|1994-08-28|1994-07-18|TAKE BACK RETURN|SHIP|s. regular pack| +78986|364907|2429|3|15|29578.35|0.09|0.08|R|F|1994-10-04|1994-08-14|1994-10-08|COLLECT COD|MAIL|ckly final dependen| +78986|985789|10828|4|19|35620.06|0.08|0.05|R|F|1994-07-24|1994-08-23|1994-08-02|TAKE BACK RETURN|SHIP|carefully silent foxes inte| +78987|938019|13056|1|33|34880.01|0.01|0.01|A|F|1994-01-19|1994-01-22|1994-02-07|COLLECT COD|SHIP| slyly permanent instructions. furiously | +78988|603642|16155|1|45|69552.45|0.02|0.02|A|F|1992-06-17|1992-06-24|1992-07-14|NONE|AIR|packages cajo| +78988|406409|31426|2|23|30253.74|0.10|0.00|A|F|1992-05-16|1992-07-14|1992-06-08|DELIVER IN PERSON|FOB|pecial accounts sleep across the ca| +78988|512765|296|3|16|28443.84|0.04|0.01|R|F|1992-06-03|1992-06-26|1992-06-25|DELIVER IN PERSON|SHIP|inal requests; carefull| +78988|28503|41004|4|14|20041.00|0.02|0.03|A|F|1992-05-16|1992-08-02|1992-06-07|TAKE BACK RETURN|SHIP|boost among the i| +78988|35033|22534|5|26|25168.78|0.04|0.07|R|F|1992-08-29|1992-06-28|1992-09-26|COLLECT COD|MAIL| against the furiou| +78989|552348|2349|1|49|68615.68|0.04|0.06|N|O|1996-05-08|1996-03-12|1996-05-18|DELIVER IN PERSON|SHIP| the fluffily thin ideas-- furiously regul| +78989|300491|12998|2|29|43252.92|0.00|0.06|N|O|1996-02-28|1996-03-27|1996-03-21|DELIVER IN PERSON|SHIP| deposits are carefully| +78989|339953|39954|3|32|63774.08|0.04|0.01|N|O|1996-04-26|1996-05-05|1996-05-16|DELIVER IN PERSON|SHIP|tructions haggle slyly | +78989|589404|39405|4|28|41814.64|0.09|0.00|N|O|1996-02-13|1996-04-15|1996-02-17|DELIVER IN PERSON|TRUCK|ts haggle fluffily silent instr| +78989|109886|34891|5|31|58772.28|0.08|0.02|N|O|1996-04-13|1996-05-08|1996-05-13|COLLECT COD|MAIL|xcuses cajole blithely | +78990|662634|37661|1|10|15966.00|0.01|0.01|N|O|1995-10-23|1995-12-05|1995-11-15|TAKE BACK RETURN|RAIL|special ideas sleep sl| +78991|226732|39237|1|47|77959.84|0.03|0.05|A|F|1994-01-13|1993-11-10|1994-01-14|DELIVER IN PERSON|SHIP|es. slyly final pinto beans detect pe| +78991|670252|20253|2|21|25666.62|0.04|0.00|R|F|1994-01-18|1993-12-22|1994-02-06|DELIVER IN PERSON|TRUCK|final theodolit| +78991|909803|22322|3|24|43506.24|0.08|0.03|A|F|1994-01-27|1993-11-18|1994-02-10|COLLECT COD|TRUCK|e regular requ| +79016|108877|46384|1|27|50918.49|0.01|0.03|N|O|1995-10-30|1995-09-19|1995-11-21|NONE|TRUCK|efully acco| +79016|879030|41548|2|37|37332.63|0.07|0.07|N|O|1995-09-28|1995-10-31|1995-10-12|COLLECT COD|TRUCK|ns sleep fluffily to the final, final requ| +79016|847668|10185|3|2|3231.24|0.03|0.00|N|O|1995-09-07|1995-10-06|1995-10-02|COLLECT COD|MAIL|uriously special asymptotes along the ca| +79017|466214|41233|1|21|24783.99|0.09|0.05|N|O|1995-09-17|1995-08-28|1995-10-14|NONE|REG AIR|r the regular, spec| +79017|644470|44471|2|36|50919.84|0.10|0.08|N|O|1995-07-14|1995-07-30|1995-07-28|COLLECT COD|RAIL|s haggle furious| +79017|601264|38801|3|11|12817.53|0.03|0.03|N|O|1995-10-17|1995-09-18|1995-10-28|TAKE BACK RETURN|REG AIR|ets along t| +79017|441289|41290|4|49|60282.74|0.01|0.05|N|O|1995-10-19|1995-09-15|1995-10-27|DELIVER IN PERSON|RAIL|fily across the fluffi| +79017|743745|31288|5|48|85858.08|0.04|0.00|N|O|1995-09-13|1995-09-04|1995-09-14|COLLECT COD|MAIL|l accounts haggle somas. asymptotes boos| +79017|118873|43878|6|38|71891.06|0.06|0.03|N|O|1995-08-15|1995-09-10|1995-08-22|COLLECT COD|RAIL|xpress requests. furiously unusual depos| +79018|871189|8741|1|14|16241.96|0.09|0.04|R|F|1992-03-22|1992-04-27|1992-04-20|COLLECT COD|REG AIR| ideas. slyly final platelets sleep q| +79018|58169|45673|2|5|5635.80|0.03|0.07|R|F|1992-03-15|1992-05-22|1992-03-16|TAKE BACK RETURN|TRUCK|ent requests nag silent pack| +79018|630987|6012|3|6|11507.70|0.04|0.08|A|F|1992-05-15|1992-05-14|1992-06-06|COLLECT COD|RAIL|he carefully exp| +79018|989744|2264|4|12|22004.40|0.10|0.05|A|F|1992-04-13|1992-04-16|1992-05-05|TAKE BACK RETURN|AIR|he regular excuses| +79018|622441|9978|5|11|14997.51|0.07|0.05|R|F|1992-05-04|1992-05-24|1992-05-30|COLLECT COD|REG AIR|instructions detect blithely slyly silent | +79018|357069|19577|6|23|25899.15|0.08|0.01|A|F|1992-04-13|1992-05-02|1992-04-26|DELIVER IN PERSON|FOB|ckages lose into the | +79018|256247|6248|7|19|22861.37|0.08|0.01|R|F|1992-04-20|1992-05-25|1992-04-22|COLLECT COD|FOB|cial theodolites detect excuses. furiously | +79019|730807|18350|1|23|42268.71|0.04|0.02|N|O|1996-09-28|1996-11-06|1996-10-16|DELIVER IN PERSON|RAIL|inal deposits mold furiously. final, re| +79020|688315|13342|1|37|48221.36|0.09|0.02|R|F|1994-03-11|1994-03-19|1994-04-07|COLLECT COD|FOB|nic excuses run carefully alon| +79020|497687|35215|2|50|84233.00|0.06|0.07|R|F|1994-03-19|1994-02-14|1994-04-12|TAKE BACK RETURN|FOB|e blithely special inst| +79020|622742|22743|3|32|53270.72|0.00|0.00|A|F|1994-02-21|1994-03-31|1994-03-23|COLLECT COD|MAIL|lar deposits-- foxes wake; slyly fi| +79020|417764|5289|4|5|8408.70|0.04|0.04|A|F|1994-03-15|1994-03-25|1994-04-06|DELIVER IN PERSON|AIR| pending requests | +79020|352354|2355|5|37|52034.58|0.05|0.00|A|F|1994-05-03|1994-04-09|1994-05-13|TAKE BACK RETURN|MAIL| about the pendi| +79020|999850|37408|6|23|44845.63|0.02|0.01|R|F|1994-01-24|1994-02-20|1994-02-19|TAKE BACK RETURN|FOB|as. always special notornis sleep carefull| +79020|464789|27299|7|22|38582.72|0.03|0.00|R|F|1994-02-04|1994-03-28|1994-02-24|COLLECT COD|TRUCK|uctions; carefully special p| +79021|701212|26241|1|5|6065.90|0.03|0.00|A|F|1994-12-30|1995-02-12|1995-01-07|NONE|SHIP|ly ironic asymptotes. quickly bold accou| +79021|256771|31782|2|47|81204.72|0.05|0.02|R|F|1995-03-11|1995-02-08|1995-03-25|COLLECT COD|SHIP|tegrate slyly. ironic, fina| +79021|545466|45467|3|21|31740.24|0.04|0.06|R|F|1995-04-07|1995-02-09|1995-04-29|TAKE BACK RETURN|RAIL|. regular deposits haggle alongside of th| +79021|643251|5764|4|50|59711.00|0.03|0.06|A|F|1995-01-23|1995-01-14|1995-02-13|TAKE BACK RETURN|FOB|lyly unusual pinto beans. bold theodo| +79021|112855|25358|5|17|31753.45|0.00|0.05|A|F|1995-01-19|1995-01-15|1995-02-15|DELIVER IN PERSON|TRUCK|s. fluffily unusual wa| +79021|743381|30924|6|31|44154.85|0.10|0.06|A|F|1994-12-14|1995-02-06|1994-12-17|TAKE BACK RETURN|FOB|notornis grow final pains| +79021|994536|44537|7|18|29348.82|0.09|0.04|A|F|1994-12-21|1995-01-18|1995-01-03|TAKE BACK RETURN|RAIL|accounts sleep | +79022|156665|31672|1|26|44763.16|0.08|0.06|N|O|1997-11-08|1997-10-31|1997-11-27|NONE|FOB|tect always. blithely final | +79022|60833|10834|2|45|80722.35|0.07|0.01|N|O|1997-12-11|1997-12-03|1998-01-06|NONE|REG AIR|the quickly final foxes. fina| +79022|405035|17544|3|18|16920.18|0.07|0.01|N|O|1998-01-10|1997-11-08|1998-02-08|TAKE BACK RETURN|FOB|eposits use| +79022|415764|3289|4|34|57111.16|0.00|0.02|N|O|1997-10-30|1997-12-09|1997-11-10|NONE|REG AIR|ze alongsid| +79023|156973|31980|1|8|16239.76|0.10|0.05|N|O|1998-06-11|1998-06-29|1998-06-13|TAKE BACK RETURN|SHIP| beans haggle blithely. silent| +79023|237718|37719|2|10|16557.00|0.04|0.01|N|O|1998-04-12|1998-05-15|1998-05-07|TAKE BACK RETURN|REG AIR|ffix quickly according to| +79048|618127|30640|1|26|27172.34|0.04|0.00|N|O|1997-08-12|1997-09-17|1997-08-17|DELIVER IN PERSON|MAIL|ssly express depende| +79049|928361|15916|1|7|9725.24|0.10|0.01|N|O|1998-05-14|1998-04-21|1998-05-16|TAKE BACK RETURN|REG AIR|ymptotes. final requests w| +79049|952738|2739|2|13|23278.97|0.03|0.00|N|O|1998-05-17|1998-05-03|1998-05-21|COLLECT COD|MAIL|onic dependencies. slyly ir| +79049|664609|2149|3|4|6294.28|0.03|0.06|N|O|1998-04-18|1998-04-09|1998-04-30|NONE|SHIP|x slyly fu| +79050|123428|10935|1|20|29028.40|0.05|0.02|N|O|1997-04-20|1997-05-30|1997-05-01|COLLECT COD|AIR|ccounts. f| +79050|438465|13482|2|12|16841.28|0.04|0.06|N|O|1997-04-11|1997-04-28|1997-04-24|COLLECT COD|FOB|ut the furiously brave requests. quickl| +79050|277630|27631|3|34|54659.08|0.02|0.07|N|O|1997-03-14|1997-04-15|1997-04-03|NONE|SHIP|excuses. regular foxes gro| +79050|113715|1222|4|13|22473.23|0.03|0.05|N|O|1997-04-13|1997-04-29|1997-05-09|COLLECT COD|TRUCK|lar patterns lose blithely. quickly regul| +79051|937662|181|1|6|10197.72|0.02|0.04|N|O|1997-02-14|1997-02-14|1997-02-22|TAKE BACK RETURN|MAIL|y. furiously ironic theodoli| +79051|285043|47549|2|43|44205.29|0.00|0.08|N|O|1997-04-15|1997-04-01|1997-05-15|TAKE BACK RETURN|MAIL|beans. blithely regular | +79051|716565|41594|3|35|55353.55|0.10|0.06|N|O|1997-02-20|1997-03-01|1997-03-07|DELIVER IN PERSON|TRUCK| the ironic ideas. Tiresias after| +79052|813614|38647|1|48|73323.36|0.09|0.08|N|O|1998-05-14|1998-02-24|1998-06-11|DELIVER IN PERSON|TRUCK|. instructions are slyly fluffily s| +79053|403785|28802|1|18|30397.68|0.00|0.08|A|F|1993-08-25|1993-10-16|1993-09-23|TAKE BACK RETURN|RAIL|ing accounts wake slyly above| +79053|401219|13728|2|24|26884.56|0.06|0.01|R|F|1993-11-11|1993-09-08|1993-11-26|TAKE BACK RETURN|AIR|: carefully regular f| +79054|47370|22371|1|48|63233.76|0.07|0.07|R|F|1993-03-02|1993-03-10|1993-03-22|TAKE BACK RETURN|RAIL|ests are blithel| +79055|65708|15709|1|34|56905.80|0.10|0.03|R|F|1992-08-14|1992-09-04|1992-09-01|DELIVER IN PERSON|REG AIR|to nag slyly about the regular request| +79055|338270|25789|2|30|39247.80|0.00|0.06|A|F|1992-08-14|1992-09-25|1992-09-05|TAKE BACK RETURN|TRUCK|ithely bold a| +79055|288384|25900|3|14|19213.18|0.05|0.05|R|F|1992-08-19|1992-09-29|1992-09-14|TAKE BACK RETURN|SHIP|y blithely ironic depos| +79055|867266|17267|4|47|57961.34|0.04|0.01|A|F|1992-09-20|1992-08-28|1992-09-29|TAKE BACK RETURN|TRUCK| requests nag qu| +79055|135032|22539|5|43|45882.29|0.07|0.04|A|F|1992-09-22|1992-08-13|1992-10-04|DELIVER IN PERSON|MAIL|ts. express requests hagg| +79080|162022|24526|1|19|20596.38|0.01|0.03|N|O|1998-01-30|1997-12-11|1998-02-12|COLLECT COD|SHIP|ng dolphins affix qu| +79080|100761|25766|2|15|26426.40|0.01|0.00|N|O|1997-11-13|1997-12-04|1997-11-16|COLLECT COD|RAIL|ously regular requests. blithely even acco| +79081|741556|29099|1|6|9585.12|0.04|0.04|R|F|1995-01-03|1995-01-21|1995-01-24|NONE|SHIP|y unusual packages. idly| +79081|320631|8150|2|38|62761.56|0.05|0.05|R|F|1995-04-04|1995-02-08|1995-04-30|DELIVER IN PERSON|REG AIR| across the boldly regular pac| +79081|840520|15553|3|3|4381.44|0.06|0.00|A|F|1994-12-18|1995-02-20|1994-12-28|COLLECT COD|SHIP|lar packages. s| +79081|610343|10344|4|5|6266.55|0.01|0.08|R|F|1995-03-02|1995-02-20|1995-03-19|TAKE BACK RETURN|RAIL|n theodolites. carefully regula| +79081|25687|38188|5|7|11288.76|0.05|0.03|A|F|1995-03-04|1995-02-10|1995-03-14|DELIVER IN PERSON|AIR| special pinto beans wake fluffily about | +79081|716640|16641|6|35|57981.35|0.09|0.07|R|F|1995-01-21|1995-01-29|1995-02-03|COLLECT COD|TRUCK|thely final requests; blithe| +79081|556610|31633|7|9|14999.31|0.04|0.05|R|F|1995-01-14|1995-01-05|1995-01-28|TAKE BACK RETURN|RAIL|al platelets use furiously carefully r| +79082|928674|41193|1|21|35755.23|0.01|0.06|N|O|1996-07-11|1996-06-01|1996-08-05|NONE|RAIL|he quickly bold patterns. slyly regula| +79083|391388|3896|1|32|47339.84|0.05|0.03|N|O|1997-09-19|1997-08-01|1997-09-26|DELIVER IN PERSON|FOB|t, regular deposits promise according to t| +79083|48587|23588|2|47|72172.26|0.04|0.05|N|O|1997-09-10|1997-08-10|1997-09-20|NONE|FOB| blithely. even theodo| +79083|590988|3500|3|39|81079.44|0.03|0.08|N|O|1997-08-29|1997-08-11|1997-09-21|TAKE BACK RETURN|SHIP|ar packages cajole blithe| +79083|722078|9621|4|16|17600.64|0.10|0.08|N|O|1997-10-06|1997-09-03|1997-10-19|TAKE BACK RETURN|RAIL|sly bold, final pinto beans. slyly fin| +79084|108041|20544|1|25|26226.00|0.07|0.01|N|O|1997-10-07|1997-08-25|1997-10-30|DELIVER IN PERSON|SHIP|ns. final courts according to the carefully| +79084|831237|6270|2|3|3504.57|0.01|0.07|N|O|1997-09-01|1997-07-24|1997-09-25|NONE|SHIP|rnis integ| +79084|594059|44060|3|47|54192.41|0.02|0.01|N|O|1997-08-26|1997-08-19|1997-09-14|COLLECT COD|RAIL|lent foxes. regular, final packages bo| +79084|338079|38080|4|24|26809.44|0.10|0.05|N|O|1997-08-15|1997-08-17|1997-08-21|NONE|REG AIR|xes. blithely pending sh| +79084|78305|15809|5|32|41065.60|0.07|0.00|N|O|1997-06-22|1997-08-19|1997-06-24|DELIVER IN PERSON|RAIL|arefully final| +79085|626187|38700|1|32|35620.80|0.04|0.01|A|F|1995-06-13|1995-07-12|1995-06-15|DELIVER IN PERSON|MAIL|refully regular th| +79085|319357|44370|2|30|41290.20|0.04|0.01|N|O|1995-07-10|1995-07-15|1995-07-20|COLLECT COD|RAIL|jole according to t| +79085|424240|49257|3|2|2328.44|0.00|0.06|N|O|1995-08-22|1995-07-25|1995-09-07|TAKE BACK RETURN|REG AIR|nal ideas. | +79085|186886|49390|4|12|23674.56|0.04|0.08|N|O|1995-06-21|1995-08-29|1995-07-19|TAKE BACK RETURN|SHIP|dencies according to the quickly| +79086|318267|5786|1|34|43698.50|0.02|0.00|N|O|1996-11-30|1996-12-21|1996-12-18|COLLECT COD|REG AIR|egular packa| +79087|213187|38196|1|23|25303.91|0.02|0.07|R|F|1992-09-22|1992-10-28|1992-10-18|COLLECT COD|RAIL| special instructions mold| +79087|26465|1466|2|1|1391.46|0.06|0.05|A|F|1992-08-19|1992-10-01|1992-08-23|DELIVER IN PERSON|REG AIR|regular excuses wake b| +79087|782849|45365|3|6|11590.86|0.06|0.01|R|F|1992-11-11|1992-09-10|1992-12-02|TAKE BACK RETURN|RAIL|s after the fluffily reg| +79087|340830|28349|4|10|18708.20|0.02|0.01|R|F|1992-09-07|1992-09-17|1992-10-06|NONE|TRUCK| instructio| +79087|325738|38245|5|28|49384.16|0.01|0.01|R|F|1992-08-05|1992-10-29|1992-08-21|DELIVER IN PERSON|FOB|ong the fu| +79087|663483|25997|6|42|60750.90|0.05|0.04|R|F|1992-09-06|1992-09-17|1992-09-16|DELIVER IN PERSON|AIR|nts nag furiously regular ideas. bravely i| +79087|158284|8285|7|33|44295.24|0.02|0.02|R|F|1992-08-08|1992-10-15|1992-09-05|COLLECT COD|FOB|ites. silent platelets according to the qui| +79112|271397|21398|1|22|30104.36|0.09|0.06|N|O|1995-10-20|1995-11-08|1995-11-08|COLLECT COD|FOB|the pinto beans are quickly to the qu| +79112|356095|43617|2|45|51798.60|0.00|0.00|N|O|1995-09-26|1995-10-19|1995-09-28|COLLECT COD|AIR|hely unusual courts-- carefully | +79112|887865|37866|3|36|66701.52|0.05|0.08|N|O|1995-10-22|1995-11-15|1995-11-21|COLLECT COD|REG AIR|dly around the quickly ex| +79112|339172|1679|4|17|20589.72|0.00|0.07|N|O|1995-11-18|1995-10-02|1995-11-30|DELIVER IN PERSON|RAIL|ccounts haggle blithely among the re| +79113|508031|8032|1|9|9351.09|0.02|0.00|A|F|1994-01-21|1994-04-02|1994-02-02|TAKE BACK RETURN|SHIP|ly against | +79113|469029|31539|2|15|14970.00|0.00|0.05|R|F|1994-02-27|1994-03-11|1994-02-28|DELIVER IN PERSON|REG AIR|s. carefully regular requests acros| +79113|968169|43208|3|23|28453.76|0.05|0.06|A|F|1994-01-07|1994-02-23|1994-02-04|COLLECT COD|RAIL|ounts nag carefu| +79113|13292|38293|4|24|28926.96|0.05|0.04|A|F|1994-02-28|1994-03-15|1994-03-11|NONE|AIR|slow platelets a| +79113|387401|24923|5|25|37209.75|0.03|0.02|R|F|1994-03-07|1994-03-01|1994-03-14|NONE|AIR| requests sleep flu| +79114|188880|38881|1|26|51190.88|0.05|0.06|R|F|1993-02-03|1993-01-08|1993-03-05|TAKE BACK RETURN|MAIL|ls. fluffily daring pinto beans at the bl| +79114|505008|30029|2|46|46597.08|0.05|0.02|R|F|1993-01-14|1992-12-18|1993-01-15|TAKE BACK RETURN|RAIL|c deposits wake blithely even| +79114|662792|332|3|44|77209.44|0.10|0.01|R|F|1992-11-05|1993-01-22|1992-11-08|TAKE BACK RETURN|TRUCK|ep blithely. unusual, furious accounts us| +79114|528863|28864|4|41|77565.44|0.07|0.05|A|F|1993-01-15|1993-01-23|1993-01-26|TAKE BACK RETURN|MAIL|gle regular f| +79114|588937|1449|5|11|22285.01|0.01|0.07|R|F|1993-01-09|1993-01-19|1993-01-10|TAKE BACK RETURN|RAIL|ithely pending foxes. fl| +79115|583619|46131|1|28|47672.52|0.05|0.01|N|O|1995-09-19|1995-10-11|1995-09-30|COLLECT COD|AIR|alongside of the instructi| +79115|876961|14513|2|1|1937.92|0.00|0.00|N|O|1995-09-04|1995-08-31|1995-09-20|NONE|SHIP|ackages. pinto b| +79116|682378|44892|1|8|10882.72|0.10|0.03|R|F|1994-02-25|1994-01-10|1994-03-09|DELIVER IN PERSON|TRUCK| final asymptotes| +79116|712583|25098|2|47|74990.85|0.04|0.07|A|F|1994-01-26|1994-02-03|1994-02-05|TAKE BACK RETURN|TRUCK|fix furiously. even pinto beans cajole abo| +79116|370745|33253|3|26|47208.98|0.05|0.04|R|F|1993-11-28|1994-02-07|1993-12-09|TAKE BACK RETURN|TRUCK|requests doze close idea| +79116|100128|12631|4|9|10153.08|0.07|0.01|R|F|1994-01-04|1994-01-04|1994-01-28|TAKE BACK RETURN|AIR|ely through the blit| +79116|839998|27547|5|25|48448.75|0.06|0.01|A|F|1993-12-02|1994-02-21|1993-12-18|COLLECT COD|AIR|accounts. quick asymptotes doubt. fluffily| +79116|843025|43026|6|22|21295.56|0.03|0.04|A|F|1993-12-26|1994-01-11|1994-01-02|DELIVER IN PERSON|RAIL|ecial deposit| +79116|712351|49894|7|29|39536.28|0.00|0.00|R|F|1993-12-12|1994-01-10|1994-01-04|DELIVER IN PERSON|RAIL| bold requests are! qu| +79117|477768|40278|1|29|50626.46|0.01|0.05|A|F|1995-02-11|1995-01-26|1995-02-16|TAKE BACK RETURN|TRUCK|p silently requests. ironic pin| +79117|836625|49142|2|36|56216.88|0.06|0.06|A|F|1995-03-29|1995-02-02|1995-04-09|DELIVER IN PERSON|FOB|ntegrate blithely regular deposits. even p| +79118|622107|9644|1|26|26755.82|0.06|0.03|N|O|1995-11-24|1995-11-16|1995-12-06|TAKE BACK RETURN|AIR| bold deposits | +79118|752105|14621|2|40|46282.80|0.02|0.02|N|O|1995-12-01|1995-11-14|1995-12-10|NONE|MAIL|ly special packages cajole across the re| +79118|627739|15276|3|45|75001.50|0.02|0.05|N|O|1995-12-12|1995-11-19|1995-12-30|DELIVER IN PERSON|AIR| express accounts.| +79118|400842|843|4|15|26142.30|0.09|0.03|N|O|1995-11-19|1995-10-31|1995-11-20|NONE|AIR| silent, unusual package| +79119|848158|35707|1|39|43138.29|0.03|0.04|R|F|1994-07-04|1994-08-27|1994-08-03|COLLECT COD|REG AIR|nic dependencies. f| +79144|51390|1391|1|4|5365.56|0.01|0.08|R|F|1994-01-08|1993-12-18|1994-01-28|TAKE BACK RETURN|FOB|across the carefully express do| +79144|701450|1451|2|11|15965.62|0.08|0.05|R|F|1993-11-28|1994-01-03|1993-12-12|TAKE BACK RETURN|MAIL|arefully even de| +79145|687443|49957|1|26|37190.66|0.05|0.00|R|F|1994-02-17|1994-03-01|1994-03-08|COLLECT COD|SHIP|ong the fluffily| +79145|850606|38158|2|33|51366.48|0.03|0.07|A|F|1994-03-12|1994-02-13|1994-03-23|DELIVER IN PERSON|SHIP|old dolphins breach q| +79145|126081|26082|3|10|11070.80|0.07|0.07|R|F|1994-03-17|1994-03-16|1994-04-08|NONE|SHIP|usly final theodolites| +79145|34855|22356|4|30|53695.50|0.04|0.05|R|F|1994-03-06|1994-04-04|1994-03-22|NONE|FOB|o beans haggle pending, expre| +79145|795858|8374|5|13|25399.66|0.04|0.00|R|F|1994-01-24|1994-03-16|1994-01-29|COLLECT COD|RAIL|old deposi| +79145|983964|9003|6|49|100348.08|0.08|0.02|R|F|1994-01-21|1994-03-05|1994-02-12|TAKE BACK RETURN|AIR|lar foxes grow slyly even foxes. final, | +79145|471739|46758|7|50|85535.50|0.10|0.02|R|F|1994-04-17|1994-02-06|1994-05-12|NONE|RAIL| to the even| +79146|513788|13789|1|47|84682.72|0.09|0.04|N|O|1998-07-19|1998-06-18|1998-08-05|DELIVER IN PERSON|RAIL|er the carefully silen| +79146|223693|36198|2|16|25866.88|0.00|0.06|N|O|1998-05-27|1998-07-14|1998-06-13|DELIVER IN PERSON|RAIL|lites. regular, regular acc| +79146|604757|17270|3|36|59821.92|0.10|0.03|N|O|1998-06-30|1998-07-25|1998-07-16|NONE|SHIP|gainst the exp| +79146|149726|37233|4|28|49720.16|0.04|0.08|N|O|1998-09-01|1998-07-31|1998-09-13|DELIVER IN PERSON|MAIL| slyly permanent packages. quickly ev| +79146|440824|15841|5|17|30001.60|0.00|0.01|N|O|1998-09-05|1998-08-05|1998-09-17|COLLECT COD|TRUCK|arthogs nag. blithely | +79146|925390|37909|6|34|48121.90|0.08|0.04|N|O|1998-05-25|1998-07-29|1998-06-07|COLLECT COD|MAIL|ions are slyly slyly regular | +79146|25425|37926|7|47|63469.74|0.06|0.02|N|O|1998-06-27|1998-07-14|1998-06-30|COLLECT COD|FOB|ly according to the thinly bold r| +79147|313524|38537|1|45|69187.95|0.02|0.08|N|O|1996-05-22|1996-03-24|1996-06-20|DELIVER IN PERSON|MAIL|hlessly ironic account| +79147|397000|22015|2|46|50461.54|0.03|0.08|N|O|1996-03-10|1996-04-26|1996-03-18|COLLECT COD|MAIL| furiously| +79147|374408|24409|3|3|4447.17|0.03|0.08|N|O|1996-04-06|1996-03-22|1996-05-06|TAKE BACK RETURN|REG AIR|sts sleep furiously unusual account| +79147|658866|46406|4|10|18248.30|0.10|0.07|N|O|1996-04-06|1996-03-18|1996-04-15|NONE|TRUCK|larly ironic instructions use blithe| +79148|485831|10850|1|44|79939.64|0.05|0.07|R|F|1992-10-16|1992-12-17|1992-10-18|TAKE BACK RETURN|FOB|ully pending, final foxes. quickly regula| +79149|664508|2048|1|47|69206.09|0.02|0.02|N|O|1996-12-20|1996-10-12|1997-01-19|COLLECT COD|AIR|ges across the quickl| +79149|385046|10061|2|20|22620.60|0.00|0.07|N|O|1996-10-21|1996-10-20|1996-11-08|NONE|MAIL|ns boost across the deposits. f| +79149|464559|14560|3|44|67035.32|0.02|0.08|N|O|1996-09-16|1996-10-17|1996-10-13|COLLECT COD|RAIL|ajole across the | +79149|831675|44192|4|37|59445.31|0.08|0.00|N|O|1996-09-25|1996-10-28|1996-10-08|NONE|RAIL|s use accordi| +79149|948944|36499|5|22|43843.80|0.06|0.07|N|O|1996-11-02|1996-11-14|1996-11-03|NONE|MAIL|carefully regular| +79149|895251|20286|6|49|61064.29|0.07|0.05|N|O|1996-10-07|1996-10-06|1996-10-31|TAKE BACK RETURN|TRUCK|eas. carefull| +79150|737032|24575|1|6|6414.00|0.08|0.06|N|F|1995-05-30|1995-06-14|1995-06-21|DELIVER IN PERSON|TRUCK|as sleep b| +79150|285599|48105|2|24|38029.92|0.10|0.04|N|O|1995-07-20|1995-07-02|1995-07-23|COLLECT COD|AIR|tect fluffi| +79150|54253|16755|3|15|18108.75|0.01|0.01|N|F|1995-06-15|1995-06-09|1995-06-21|TAKE BACK RETURN|RAIL|ly furious dolphins. furious| +79150|826757|39274|4|24|40409.04|0.05|0.02|R|F|1995-05-09|1995-06-17|1995-05-11|TAKE BACK RETURN|TRUCK| ironicall| +79151|332577|7590|1|11|17705.16|0.01|0.00|N|O|1996-02-04|1996-03-29|1996-02-05|NONE|AIR| final instructions nag slyly among th| +79151|607772|20285|2|4|6718.96|0.07|0.00|N|O|1996-01-26|1996-02-29|1996-02-17|NONE|TRUCK|telets wake care| +79151|819034|31551|3|47|44790.53|0.03|0.01|N|O|1996-03-08|1996-03-20|1996-03-12|TAKE BACK RETURN|FOB|as blithely blithely bold req| +79151|494989|7499|4|35|69438.60|0.10|0.06|N|O|1996-02-21|1996-02-28|1996-02-25|NONE|SHIP|ke fluffily after the slyly regul| +79151|279028|4039|5|10|10070.10|0.02|0.08|N|O|1996-01-18|1996-02-15|1996-01-20|COLLECT COD|AIR| accounts kindle| +79176|144023|19028|1|26|27742.52|0.01|0.01|N|O|1995-11-01|1995-12-09|1995-11-23|DELIVER IN PERSON|TRUCK| carefully fina| +79176|593722|31256|2|33|59918.10|0.10|0.07|N|O|1996-01-16|1995-12-12|1996-02-10|COLLECT COD|TRUCK|ccounts. regular accoun| +79176|673791|48818|3|11|19412.36|0.01|0.02|N|O|1995-12-13|1995-12-08|1995-12-31|COLLECT COD|RAIL|c requests. even ideas use slyly acc| +79176|393363|43364|4|16|23301.60|0.06|0.01|N|O|1996-01-17|1996-01-21|1996-01-29|COLLECT COD|MAIL|n, close instructi| +79176|246699|21708|5|29|47724.72|0.01|0.07|N|O|1995-11-12|1996-01-06|1995-12-07|COLLECT COD|SHIP|usual platelets ar| +79176|263791|38802|6|6|10528.68|0.08|0.01|N|O|1996-02-11|1995-11-23|1996-03-07|COLLECT COD|MAIL|olites cajole| +79177|922007|47044|1|10|10289.60|0.04|0.08|N|O|1996-11-18|1996-10-03|1996-12-10|COLLECT COD|RAIL|ng, bold accounts. fluffily | +79177|165522|15523|2|38|60325.76|0.02|0.01|N|O|1996-09-16|1996-10-29|1996-09-25|COLLECT COD|MAIL|s theodolites. quickly regular re| +79177|921240|33759|3|2|2522.40|0.08|0.04|N|O|1996-11-15|1996-10-18|1996-12-15|TAKE BACK RETURN|TRUCK|arefully. quic| +79177|278349|28350|4|6|7963.98|0.09|0.03|N|O|1996-11-05|1996-11-26|1996-11-24|TAKE BACK RETURN|REG AIR|ll sleep slyly silent requests. blithely| +79177|195461|20468|5|31|48250.26|0.10|0.05|N|O|1996-12-05|1996-10-01|1996-12-09|NONE|SHIP|ckly ironic requests! fluffily | +79178|928660|16215|1|50|84431.00|0.00|0.02|A|F|1993-01-06|1992-12-28|1993-01-28|NONE|FOB|luffily according to | +79178|975702|38222|2|25|44441.50|0.04|0.00|A|F|1993-02-11|1993-02-11|1993-02-14|TAKE BACK RETURN|FOB|cies sleep quickly dep| +79178|617039|42064|3|42|40152.00|0.04|0.00|R|F|1993-01-19|1993-02-14|1993-01-22|TAKE BACK RETURN|REG AIR|quests haggle slyly fina| +79179|358114|20622|1|13|15237.30|0.07|0.06|A|F|1993-11-28|1994-01-09|1993-12-01|TAKE BACK RETURN|TRUCK|refully special ideas.| +79180|318199|30706|1|19|23126.42|0.00|0.06|R|F|1994-01-28|1993-12-30|1994-02-27|NONE|SHIP|inal instructions. | +79180|962415|49973|2|36|53185.32|0.07|0.02|A|F|1994-02-07|1993-12-16|1994-03-08|DELIVER IN PERSON|TRUCK|ffix along the slyly ironic | +79180|300648|38167|3|4|6594.52|0.09|0.01|R|F|1994-03-01|1994-01-08|1994-03-08|COLLECT COD|SHIP|old instructions grow carefully regular| +79180|977197|2236|4|20|25483.00|0.07|0.08|R|F|1993-11-23|1994-01-30|1993-11-26|NONE|FOB|r deposits integrate | +79180|746337|21366|5|42|58098.60|0.05|0.03|R|F|1994-03-02|1994-01-16|1994-03-12|NONE|REG AIR|ideas wake s| +79180|679701|29702|6|1|1680.67|0.10|0.05|R|F|1993-12-19|1993-12-28|1993-12-22|NONE|RAIL|counts. furious| +79181|312021|37034|1|29|29957.29|0.04|0.00|A|F|1993-11-13|1994-01-07|1993-11-23|DELIVER IN PERSON|RAIL|eposits use. blithely even braids among | +79182|593788|31322|1|13|24462.88|0.02|0.04|A|F|1994-12-29|1994-11-27|1995-01-02|DELIVER IN PERSON|REG AIR|d, ironic accounts about the fluffily spec| +79182|788446|25992|2|44|67514.04|0.02|0.05|R|F|1994-12-22|1994-11-24|1994-12-30|COLLECT COD|AIR| regular accounts boost slyl| +79183|400897|25914|1|21|37755.27|0.10|0.02|N|O|1995-08-04|1995-06-22|1995-08-10|NONE|TRUCK|ely ironic requests are| +79183|870811|20812|2|18|32071.86|0.06|0.02|N|O|1995-08-27|1995-06-21|1995-08-29|DELIVER IN PERSON|AIR|cies according to the furio| +79183|710357|22872|3|29|39652.28|0.10|0.08|N|O|1995-08-20|1995-08-03|1995-09-08|TAKE BACK RETURN|SHIP|the pending, specia| +79183|961780|49338|4|37|68144.38|0.06|0.01|N|O|1995-08-05|1995-07-10|1995-08-26|COLLECT COD|REG AIR|equests sle| +79183|625018|37531|5|34|32061.32|0.03|0.01|N|F|1995-05-27|1995-07-02|1995-06-19|TAKE BACK RETURN|REG AIR|al pinto beans a| +79183|673441|23442|6|29|41017.89|0.00|0.06|N|O|1995-08-31|1995-08-04|1995-09-17|NONE|TRUCK|elets nag after the regular, express| +79208|839400|14433|1|37|49556.32|0.07|0.06|A|F|1993-09-02|1993-09-16|1993-09-03|TAKE BACK RETURN|FOB| express accounts boost furiously. sly| +79208|783487|21033|2|36|56536.20|0.08|0.03|R|F|1993-10-02|1993-08-28|1993-10-28|DELIVER IN PERSON|SHIP|pending instructions. carefully eve| +79208|63277|781|3|39|48370.53|0.04|0.03|A|F|1993-08-21|1993-09-18|1993-08-31|TAKE BACK RETURN|TRUCK|lithely above the carefully ironic dinos. c| +79209|418692|31201|1|8|12885.36|0.00|0.00|N|O|1997-09-06|1997-12-04|1997-09-26|NONE|SHIP| regular r| +79209|940908|28463|2|3|5846.58|0.06|0.01|N|O|1997-11-16|1997-10-13|1997-12-12|NONE|SHIP|lithely after the ironic, even d| +79209|834735|9768|3|31|51760.39|0.00|0.02|N|O|1997-12-01|1997-10-24|1997-12-12|NONE|FOB|es. slyly bold deposits | +79209|389932|39933|4|15|30328.80|0.09|0.01|N|O|1997-12-07|1997-11-05|1997-12-18|COLLECT COD|SHIP|after the fluffily even packages. | +79209|575327|350|5|50|70115.00|0.07|0.05|N|O|1997-10-23|1997-11-24|1997-10-26|NONE|TRUCK|e furiously. sheaves sleep. slyly special d| +79209|507482|45013|6|47|70004.62|0.07|0.07|N|O|1997-12-15|1997-11-13|1998-01-03|NONE|TRUCK| packages according to the | +79210|62782|25284|1|39|68046.42|0.05|0.03|N|O|1996-08-30|1996-11-21|1996-09-21|COLLECT COD|FOB| even accounts wak| +79210|177048|39552|2|19|21375.76|0.09|0.06|N|O|1996-12-18|1996-09-28|1996-12-19|TAKE BACK RETURN|SHIP|unts haggle. ironic acco| +79210|645230|7743|3|28|32905.60|0.01|0.00|N|O|1996-09-24|1996-10-01|1996-10-14|DELIVER IN PERSON|MAIL|c deposits. even, even instruc| +79210|369978|19979|4|31|63486.76|0.05|0.01|N|O|1996-11-11|1996-11-17|1996-12-01|NONE|SHIP|e instructio| +79211|110940|23443|1|25|48773.50|0.08|0.00|N|O|1997-12-18|1998-01-01|1998-01-02|TAKE BACK RETURN|RAIL|s the final dependencies. b| +79211|564724|14725|2|19|33985.30|0.06|0.02|N|O|1997-12-11|1998-01-19|1997-12-24|TAKE BACK RETURN|FOB|s since the ca| +79211|302478|2479|3|47|69581.62|0.08|0.08|N|O|1998-01-29|1998-02-01|1998-02-12|NONE|REG AIR|quickly carefully unusual depend| +79211|737693|25236|4|16|27690.56|0.06|0.03|N|O|1998-01-23|1998-01-12|1998-02-06|DELIVER IN PERSON|AIR| even requests. blithely f| +79211|396570|9078|5|37|61662.72|0.09|0.03|N|O|1998-02-11|1997-12-11|1998-02-16|DELIVER IN PERSON|SHIP|ly blithely ironic pa| +79211|147476|34983|6|3|4570.41|0.05|0.01|N|O|1998-02-26|1998-01-16|1998-03-13|NONE|AIR|ithes. furiously regular excuses sle| +79211|612992|38017|7|49|93343.04|0.06|0.08|N|O|1998-02-03|1998-01-13|1998-02-27|NONE|MAIL|ests use. quickly clo| +79212|547859|10370|1|11|20975.13|0.04|0.03|A|F|1992-08-03|1992-06-28|1992-08-26|DELIVER IN PERSON|TRUCK|ideas. iro| +79212|862024|12025|2|31|30565.38|0.08|0.02|A|F|1992-06-22|1992-08-11|1992-07-13|COLLECT COD|REG AIR|gular, ironic accounts. furiously even requ| +79212|21588|34089|3|37|55854.46|0.01|0.00|R|F|1992-06-17|1992-06-25|1992-06-27|COLLECT COD|REG AIR| bold deposits? blithe| +79212|821503|34020|4|37|52705.02|0.00|0.02|R|F|1992-05-21|1992-08-04|1992-06-14|NONE|SHIP| slyly express pinto beans. fi| +79212|984475|22033|5|14|21832.02|0.02|0.03|R|F|1992-08-19|1992-07-04|1992-08-23|DELIVER IN PERSON|REG AIR|eep slyly even dolph| +79212|57658|32661|6|39|63010.35|0.08|0.06|R|F|1992-08-31|1992-06-23|1992-09-03|DELIVER IN PERSON|RAIL|lyly against the always regular accou| +79212|44270|6771|7|7|8499.89|0.01|0.02|R|F|1992-05-28|1992-07-16|1992-05-29|NONE|FOB|ickly regular theodolites alongside of the | +79213|42407|29908|1|22|29686.80|0.06|0.02|A|F|1992-11-17|1992-11-20|1992-12-02|DELIVER IN PERSON|MAIL|ickly special dependencies. slyly e| +79213|731984|7013|2|37|74590.15|0.08|0.08|A|F|1992-10-06|1992-11-01|1992-10-22|NONE|REG AIR|nto beans x-ray busily silent depo| +79214|238492|38493|1|6|8582.88|0.07|0.05|N|O|1997-09-24|1997-09-16|1997-10-05|TAKE BACK RETURN|REG AIR|fter the final excuse| +79214|328518|3531|2|2|3093.00|0.10|0.02|N|O|1997-12-03|1997-10-23|1997-12-25|TAKE BACK RETURN|RAIL|press pinto beans print carefully. fu| +79214|389843|39844|3|8|15462.64|0.00|0.03|N|O|1997-12-09|1997-09-28|1998-01-02|TAKE BACK RETURN|FOB|fily. slyly even packages above t| +79214|80169|42671|4|24|27579.84|0.05|0.01|N|O|1997-12-06|1997-10-19|1998-01-05|NONE|AIR|latelets haggle a| +79214|396897|34419|5|10|19938.80|0.05|0.01|N|O|1997-12-05|1997-10-22|1997-12-21|COLLECT COD|REG AIR|he fluffily even ideas. dog| +79214|637478|49991|6|43|60863.92|0.01|0.04|N|O|1997-12-05|1997-10-17|1997-12-21|TAKE BACK RETURN|MAIL|wake slyly about the | +79214|82930|45432|7|10|19129.30|0.09|0.06|N|O|1997-11-06|1997-09-23|1997-11-16|NONE|REG AIR|onic packages sleep. slyly express depos| +79215|791246|16277|1|50|66860.50|0.03|0.07|N|O|1996-11-11|1996-10-24|1996-12-01|TAKE BACK RETURN|AIR|uriously about the accounts-- ruthl| +79240|741587|29130|1|45|73284.75|0.06|0.04|N|O|1996-09-17|1996-08-23|1996-10-01|NONE|SHIP|. carefully even f| +79240|851791|26826|2|25|43568.75|0.07|0.08|N|O|1996-10-11|1996-09-12|1996-11-08|TAKE BACK RETURN|AIR|olites. fluffily regular d| +79240|47126|9627|3|48|51509.76|0.01|0.03|N|O|1996-09-15|1996-08-28|1996-09-20|COLLECT COD|SHIP|s; final ideas are blithely regu| +79240|32350|44851|4|28|35905.80|0.04|0.07|N|O|1996-09-21|1996-09-11|1996-10-19|TAKE BACK RETURN|REG AIR|e across the fin| +79240|692841|5355|5|23|42177.63|0.01|0.08|N|O|1996-07-17|1996-08-30|1996-08-11|COLLECT COD|SHIP|ites nod alongside o| +79240|563508|26020|6|25|39287.00|0.04|0.04|N|O|1996-09-28|1996-09-12|1996-10-10|NONE|MAIL|fully ironic,| +79241|752688|15204|1|17|29591.05|0.06|0.01|N|O|1997-08-02|1997-06-24|1997-08-11|TAKE BACK RETURN|AIR|structions after the unusual accounts | +79242|731385|18928|1|49|69401.15|0.02|0.06|A|F|1992-07-30|1992-06-25|1992-08-22|NONE|MAIL|the unusual theodoli| +79242|382834|45342|2|43|82423.26|0.01|0.05|R|F|1992-09-05|1992-06-20|1992-09-30|TAKE BACK RETURN|REG AIR|refully ironic deposits are bli| +79242|283709|21225|3|14|23697.66|0.05|0.04|A|F|1992-09-06|1992-06-23|1992-09-28|DELIVER IN PERSON|MAIL|slyly along the packages. quickly pend| +79242|288476|13487|4|8|11715.68|0.01|0.05|R|F|1992-06-17|1992-07-01|1992-06-18|TAKE BACK RETURN|REG AIR|instructions try to | +79242|410712|48237|5|2|3245.38|0.10|0.00|R|F|1992-08-16|1992-07-17|1992-09-01|COLLECT COD|TRUCK|ly unusual requests. even| +79242|833770|21319|6|15|25555.95|0.00|0.03|R|F|1992-05-25|1992-07-24|1992-06-20|NONE|MAIL|fully along the slyly regular| +79243|46155|33656|1|38|41843.70|0.08|0.03|N|O|1996-01-17|1996-02-25|1996-01-26|DELIVER IN PERSON|TRUCK|iers. quickly regular decoys| +79243|721680|34195|2|18|30629.70|0.07|0.08|N|O|1995-12-21|1996-03-02|1996-01-18|COLLECT COD|RAIL|e furiousl| +79243|260856|23362|3|46|83574.64|0.02|0.06|N|O|1995-12-27|1996-01-25|1996-01-23|DELIVER IN PERSON|SHIP| lose slyly und| +79243|202103|27112|4|12|12061.08|0.07|0.03|N|O|1996-02-23|1996-02-11|1996-02-27|TAKE BACK RETURN|AIR|ets. carefully | +79243|732830|32831|5|9|16765.20|0.05|0.06|N|O|1995-12-23|1996-02-22|1996-01-02|NONE|SHIP|ackages are slyly care| +79243|667283|4823|6|15|18753.75|0.03|0.04|N|O|1996-02-13|1996-01-31|1996-03-03|NONE|RAIL|es. careful| +79243|18076|43077|7|48|47715.36|0.07|0.07|N|O|1996-02-07|1996-03-11|1996-03-01|TAKE BACK RETURN|FOB|solve above the furiously pending depende| +79244|798320|10836|1|38|53895.02|0.05|0.08|A|F|1993-05-09|1993-05-28|1993-05-31|COLLECT COD|MAIL|ully silent req| +79244|363708|1230|2|24|42520.56|0.02|0.04|R|F|1993-06-30|1993-07-01|1993-07-18|COLLECT COD|SHIP|ndencies. ironic, special re| +79244|827503|15052|3|39|55787.94|0.05|0.04|A|F|1993-07-25|1993-05-29|1993-08-01|NONE|AIR|g to the requests? sly| +79245|723610|23611|1|2|3267.16|0.09|0.07|A|F|1994-11-06|1995-01-10|1994-11-10|NONE|AIR|le carefully b| +79245|712575|12576|2|2|3175.08|0.06|0.04|A|F|1994-11-11|1995-01-08|1994-11-25|TAKE BACK RETURN|RAIL|ver. ironic the| +79245|247589|10094|3|30|46097.10|0.04|0.01|R|F|1995-01-29|1995-01-04|1995-02-27|TAKE BACK RETURN|AIR|deas cajole blithely along the bl| +79245|221494|33999|4|25|35387.00|0.01|0.05|R|F|1995-02-10|1995-01-29|1995-02-24|DELIVER IN PERSON|AIR|onic foxes. quickly final re| +79245|634648|9673|5|48|75965.28|0.05|0.01|R|F|1995-01-12|1994-12-02|1995-01-19|NONE|MAIL|cording to the regul| +79245|524549|24550|6|4|6294.08|0.05|0.08|R|F|1994-12-03|1995-01-18|1994-12-30|NONE|MAIL|xes thrash | +79246|936012|11049|1|3|3143.91|0.09|0.05|A|F|1994-12-29|1995-01-13|1995-01-18|COLLECT COD|AIR|nent deposits boost slyly final p| +79246|542544|17565|2|26|41249.52|0.09|0.07|A|F|1995-01-07|1994-12-25|1995-02-03|DELIVER IN PERSON|TRUCK|ess excuses nag idly final requests. pen| +79246|536658|36659|3|36|61006.68|0.04|0.07|R|F|1994-12-16|1995-01-18|1994-12-30|DELIVER IN PERSON|AIR| sleep fluffily. fluffily iro| +79246|603462|3463|4|1|1365.43|0.05|0.08|R|F|1994-11-26|1995-01-18|1994-12-23|COLLECT COD|SHIP|refully regu| +79247|551421|38955|1|18|26503.20|0.02|0.06|N|O|1997-04-21|1997-04-16|1997-04-27|DELIVER IN PERSON|AIR| final requests mold deposits. quickly reg| +79247|725374|25375|2|12|16792.08|0.10|0.03|N|O|1997-03-29|1997-04-22|1997-04-17|COLLECT COD|TRUCK|uickly bold dep| +79247|355450|5451|3|18|27097.92|0.06|0.00|N|O|1997-04-11|1997-03-06|1997-04-26|TAKE BACK RETURN|FOB|depths. inst| +79247|38600|13601|4|47|72314.20|0.03|0.08|N|O|1997-05-18|1997-04-01|1997-06-06|COLLECT COD|MAIL|ins. pending acc| +79247|738048|13077|5|37|40182.37|0.07|0.00|N|O|1997-05-18|1997-04-19|1997-05-31|NONE|RAIL|stealthily regul| +79247|362917|37932|6|18|35638.20|0.00|0.01|N|O|1997-05-25|1997-04-11|1997-06-04|NONE|AIR|h slyly express| +79247|533351|8372|7|20|27686.60|0.01|0.04|N|O|1997-06-01|1997-04-01|1997-06-16|NONE|REG AIR| accounts are alongside of the express | +79272|18709|31210|1|6|9766.20|0.06|0.06|N|O|1996-01-23|1996-03-16|1996-01-24|COLLECT COD|RAIL|ng packages. pinto beans int| +79272|430780|18305|2|24|41058.24|0.04|0.02|N|O|1996-01-01|1996-02-13|1996-01-15|COLLECT COD|AIR|ironic theodolites use furiously blithe fo| +79272|105025|30030|3|41|42230.82|0.08|0.08|N|O|1996-02-10|1996-02-11|1996-02-18|NONE|RAIL|ully quick courts. quickly final| +79272|148734|36241|4|14|24958.22|0.07|0.07|N|O|1996-04-10|1996-03-13|1996-04-17|TAKE BACK RETURN|MAIL|onic deposits sleep alongsi| +79272|767183|29699|5|8|10001.20|0.10|0.03|N|O|1996-03-26|1996-02-04|1996-03-31|NONE|RAIL|ect across| +79272|33867|8868|6|6|10805.16|0.01|0.02|N|O|1996-03-19|1996-02-18|1996-04-07|COLLECT COD|AIR|d the pack| +79272|200387|388|7|23|29609.51|0.00|0.05|N|O|1996-03-05|1996-03-05|1996-03-13|NONE|RAIL|express pinto bea| +79273|891869|4387|1|49|91180.18|0.03|0.06|N|O|1997-05-04|1997-06-04|1997-06-01|NONE|MAIL|the carefully final deposits. packages acro| +79273|632659|45172|2|7|11141.34|0.08|0.05|N|O|1997-04-19|1997-04-20|1997-05-11|DELIVER IN PERSON|TRUCK|ts around the fluf| +79273|89650|39651|3|16|26234.40|0.04|0.01|N|O|1997-04-07|1997-05-16|1997-04-08|COLLECT COD|REG AIR|gular hockey players against | +79273|738519|1034|4|4|6229.92|0.10|0.02|N|O|1997-06-02|1997-05-18|1997-06-03|COLLECT COD|RAIL|zzle. request| +79273|284353|34354|5|1|1337.34|0.01|0.01|N|O|1997-04-06|1997-05-10|1997-05-02|NONE|REG AIR|e bold, final accoun| +79273|111007|36012|6|34|34612.00|0.01|0.04|N|O|1997-03-13|1997-05-15|1997-04-03|TAKE BACK RETURN|MAIL|cial pinto beans. carefully | +79273|678753|3780|7|5|8658.60|0.08|0.05|N|O|1997-03-28|1997-05-08|1997-04-18|COLLECT COD|REG AIR|ual deposits cajole slyly. carefully ironi| +79274|785856|23402|1|15|29127.30|0.00|0.00|A|F|1993-01-25|1992-12-04|1993-02-15|DELIVER IN PERSON|RAIL|counts? regularly ironic| +79274|866070|3622|2|1|1036.03|0.04|0.02|R|F|1992-11-14|1992-12-07|1992-12-07|DELIVER IN PERSON|SHIP|usual accounts. carefully regula| +79274|32299|32300|3|18|22163.22|0.04|0.08|A|F|1993-02-25|1993-01-14|1993-03-24|TAKE BACK RETURN|TRUCK|ackages. unusual deposits doubt slyl| +79275|109884|34889|1|30|56816.40|0.07|0.02|R|F|1994-09-22|1994-08-15|1994-10-21|DELIVER IN PERSON|REG AIR|t even, reg| +79276|562149|12150|1|31|37544.72|0.10|0.05|R|F|1992-09-25|1992-08-24|1992-09-28|DELIVER IN PERSON|REG AIR|ies sleep caref| +79276|32963|45464|2|43|81526.28|0.07|0.02|A|F|1992-09-30|1992-08-18|1992-10-26|DELIVER IN PERSON|FOB|counts? express, | +79277|92117|42118|1|44|48800.84|0.04|0.03|R|F|1992-05-03|1992-04-22|1992-05-29|COLLECT COD|MAIL| carefully across the express deposits. c| +79277|202138|2139|2|49|50965.88|0.05|0.01|R|F|1992-05-20|1992-05-07|1992-05-31|NONE|SHIP|carefully against the carefully pen| +79277|330593|43100|3|40|64943.20|0.04|0.01|R|F|1992-05-05|1992-04-05|1992-05-27|DELIVER IN PERSON|TRUCK|sly express requests. ac| +79277|260466|10467|4|29|41367.05|0.07|0.05|A|F|1992-03-06|1992-04-30|1992-03-09|DELIVER IN PERSON|RAIL|, final orbits. slow, even depos| +79277|641375|16400|5|39|51337.26|0.07|0.07|R|F|1992-05-29|1992-03-23|1992-06-26|NONE|MAIL|excuses. express requests| +79278|492237|17256|1|7|8604.47|0.09|0.05|N|O|1997-05-07|1997-03-18|1997-05-12|TAKE BACK RETURN|AIR|the final e| +79278|14706|39707|2|7|11344.90|0.08|0.04|N|O|1997-01-24|1997-04-09|1997-02-01|TAKE BACK RETURN|RAIL|ate carefully along the even,| +79278|162197|24701|3|14|17628.66|0.03|0.03|N|O|1997-04-14|1997-03-23|1997-04-15|NONE|REG AIR|ix slyly slyly even requests. closely unus| +79278|31400|18901|4|43|57250.20|0.05|0.08|N|O|1997-02-12|1997-04-11|1997-02-13|DELIVER IN PERSON|FOB|the carefully| +79278|731829|6858|5|13|24190.27|0.01|0.02|N|O|1997-02-26|1997-03-27|1997-03-07|NONE|TRUCK|ys regular | +79279|718794|6337|1|31|56195.56|0.10|0.03|N|O|1998-11-06|1998-10-07|1998-11-08|NONE|MAIL| above the b| +79279|770151|45182|2|29|35412.48|0.02|0.01|N|O|1998-08-13|1998-10-08|1998-09-05|COLLECT COD|RAIL|ickly even, unusual pinto b| +79304|813075|38108|1|19|18772.57|0.07|0.05|N|O|1997-08-03|1997-08-16|1997-08-20|COLLECT COD|FOB|quickly entic| +79304|347219|34738|2|13|16460.60|0.08|0.04|N|O|1997-08-23|1997-07-26|1997-09-19|NONE|TRUCK| packages are slyly abov| +79304|697466|22493|3|34|49756.62|0.03|0.02|N|O|1997-08-25|1997-07-23|1997-09-21|NONE|FOB|uests? silent excuses aft| +79305|449876|24893|1|47|85814.95|0.00|0.03|N|O|1997-12-05|1998-01-18|1997-12-18|NONE|AIR|st the final accounts. daringly| +79305|61102|48606|2|22|23388.20|0.02|0.02|N|O|1997-12-15|1998-02-05|1997-12-21|DELIVER IN PERSON|AIR|deas after the carefully ironic accounts | +79305|936925|24480|3|49|96132.12|0.09|0.01|N|O|1998-03-04|1998-01-10|1998-04-02|NONE|REG AIR| final, quiet gifts| +79305|898139|10657|4|42|47757.78|0.00|0.05|N|O|1998-01-24|1997-12-22|1998-01-25|NONE|MAIL|ites use unusual | +79305|17742|30243|5|14|23236.36|0.09|0.00|N|O|1997-12-10|1998-01-03|1997-12-20|TAKE BACK RETURN|RAIL|y pending pinto beans. depe| +79305|180584|43088|6|47|78235.26|0.02|0.06|N|O|1998-02-20|1998-01-06|1998-02-27|TAKE BACK RETURN|AIR|affix bold instructions. fluffily| +79306|349653|24666|1|41|69808.24|0.10|0.04|N|O|1995-10-30|1995-10-19|1995-11-27|NONE|REG AIR|s sleep furiousl| +79306|610915|23428|2|11|20084.68|0.05|0.01|N|O|1995-08-29|1995-10-20|1995-09-27|DELIVER IN PERSON|TRUCK|riously unusual requests grow acc| +79306|640906|3419|3|22|40631.14|0.09|0.01|N|O|1995-09-23|1995-10-17|1995-10-17|DELIVER IN PERSON|TRUCK| the final ideas. careful| +79306|702405|2406|4|28|39406.36|0.03|0.03|N|O|1995-11-09|1995-09-22|1995-11-21|TAKE BACK RETURN|REG AIR|ng packages. e| +79307|425654|13179|1|37|58446.31|0.01|0.04|N|O|1995-08-25|1995-05-31|1995-09-22|COLLECT COD|SHIP|ithes about the deposits integrate f| +79307|964280|14281|2|18|24196.32|0.07|0.01|N|O|1995-07-27|1995-06-15|1995-07-31|COLLECT COD|RAIL|uctions are slyly. quickly final de| +79307|640443|15468|3|11|15217.51|0.05|0.01|A|F|1995-04-30|1995-07-16|1995-05-27|TAKE BACK RETURN|REG AIR|even instructions wake furiou| +79307|922971|10526|4|30|59817.90|0.10|0.05|N|O|1995-07-26|1995-06-22|1995-07-29|DELIVER IN PERSON|FOB|ons sleep across the requests. fin| +79307|364455|39470|5|19|28869.36|0.01|0.05|N|F|1995-06-08|1995-07-17|1995-07-08|COLLECT COD|MAIL|ously special deposits n| +79307|388223|25745|6|39|51137.19|0.05|0.02|N|F|1995-06-13|1995-06-10|1995-07-09|DELIVER IN PERSON|REG AIR|deposits ag| +79308|193365|5869|1|28|40834.08|0.06|0.07|N|O|1998-03-20|1998-04-14|1998-04-09|NONE|MAIL|g to the even, pending ideas wake blithe| +79308|876192|13744|2|20|23363.00|0.00|0.02|N|O|1998-04-30|1998-03-09|1998-05-06|DELIVER IN PERSON|SHIP|e deposits boost s| +79309|761280|36311|1|42|56332.50|0.02|0.07|N|O|1998-05-23|1998-05-30|1998-06-05|NONE|MAIL|ickly ironic pinto beans acro| +79310|454183|4184|1|16|18194.56|0.03|0.02|R|F|1994-10-10|1994-10-03|1994-10-23|DELIVER IN PERSON|TRUCK|c packages lose carefully slyly sl| +79310|444640|32165|2|30|47538.60|0.06|0.03|R|F|1994-07-21|1994-10-09|1994-07-24|DELIVER IN PERSON|RAIL|counts nag slyly. regular depos| +79310|58143|8144|3|49|53955.86|0.07|0.01|R|F|1994-07-28|1994-10-11|1994-08-17|NONE|RAIL|he furiously ironic deposits. courts s| +79311|668476|6016|1|50|72222.00|0.08|0.06|N|O|1998-05-05|1998-06-26|1998-06-02|NONE|REG AIR|s are blithely final accounts. blithe| +79311|67332|42335|2|29|37680.57|0.09|0.00|N|O|1998-05-31|1998-04-30|1998-06-03|NONE|AIR| the regular, final accounts are| +79311|647861|22886|3|26|47029.58|0.05|0.00|N|O|1998-07-11|1998-05-18|1998-07-19|DELIVER IN PERSON|REG AIR|e pearls. express requests are carefully bu| +79311|587078|49590|4|9|10485.45|0.08|0.03|N|O|1998-06-27|1998-06-26|1998-07-11|TAKE BACK RETURN|AIR|deas nag blithely around t| +79311|13509|38510|5|2|2845.00|0.00|0.00|N|O|1998-07-25|1998-05-20|1998-08-13|COLLECT COD|RAIL|counts solve slyly according to the slyly u| +79336|605415|30440|1|43|56776.34|0.05|0.03|N|O|1996-01-17|1996-02-05|1996-01-30|COLLECT COD|TRUCK|efully regular excuses. even pac| +79336|198313|48314|2|40|56452.40|0.05|0.01|N|O|1996-01-04|1996-02-01|1996-01-21|COLLECT COD|AIR|eans should have t| +79336|46337|46338|3|9|11549.97|0.07|0.01|N|O|1996-04-10|1996-03-05|1996-04-11|NONE|REG AIR|o the slyly pending theodolites haggle c| +79337|870698|45733|1|50|83432.50|0.00|0.05|A|F|1993-05-05|1993-04-17|1993-05-23|TAKE BACK RETURN|FOB| even foxes x-| +79337|804910|4911|2|45|81669.15|0.08|0.04|A|F|1993-03-13|1993-05-06|1993-04-03|DELIVER IN PERSON|TRUCK|cording to | +79338|66001|16002|1|1|967.00|0.04|0.08|A|F|1995-02-17|1995-02-23|1995-02-25|COLLECT COD|TRUCK|uriously final theodolites cajo| +79339|842019|29568|1|21|20180.37|0.01|0.06|N|O|1997-02-28|1997-02-13|1997-03-15|DELIVER IN PERSON|SHIP|de of the unusual, unusual package| +79339|797759|22790|2|2|3713.44|0.10|0.04|N|O|1997-03-21|1997-01-25|1997-04-15|TAKE BACK RETURN|AIR|ously final theodolites nod pinto beans| +79339|932361|19916|3|20|27866.40|0.00|0.04|N|O|1996-12-31|1997-02-12|1997-01-27|NONE|AIR|ccounts cajole according to the ins| +79339|190532|15539|4|10|16225.30|0.01|0.02|N|O|1996-12-26|1996-12-23|1997-01-18|COLLECT COD|REG AIR|cuses abov| +79340|954277|29316|1|50|66561.50|0.03|0.01|R|F|1993-12-19|1993-11-30|1993-12-29|NONE|RAIL|dependencies p| +79340|526815|39326|2|18|33152.22|0.03|0.05|R|F|1993-10-21|1993-12-07|1993-11-14|TAKE BACK RETURN|RAIL|ns. carefully ex| +79340|171625|46632|3|26|44112.12|0.02|0.00|A|F|1993-11-06|1993-11-16|1993-11-18|DELIVER IN PERSON|AIR|accounts use alongside of the iron| +79340|489918|27446|4|33|62960.37|0.01|0.04|A|F|1993-12-29|1993-10-27|1994-01-23|COLLECT COD|TRUCK| regular accounts. unusual, final| +79340|49304|11805|5|30|37599.00|0.08|0.07|R|F|1993-12-16|1993-11-23|1994-01-01|COLLECT COD|AIR|ely even theodolites | +79341|184568|47072|1|28|46271.68|0.06|0.02|N|O|1996-10-07|1996-11-01|1996-10-18|DELIVER IN PERSON|SHIP|ackages. final, ironic epita| +79341|19062|44063|2|29|28450.74|0.00|0.07|N|O|1996-10-02|1996-10-14|1996-11-01|COLLECT COD|REG AIR|ng requests grow carefully along the| +79341|369616|7138|3|38|64052.80|0.07|0.07|N|O|1996-12-01|1996-11-02|1996-12-21|TAKE BACK RETURN|SHIP|, ironic dep| +79341|135575|10580|4|3|4831.71|0.02|0.04|N|O|1996-12-18|1996-11-27|1996-12-29|NONE|FOB|gular requests d| +79342|685993|35994|1|35|69263.60|0.01|0.02|A|F|1994-12-18|1994-11-25|1995-01-13|COLLECT COD|RAIL| furiously regular forges.| +79342|475723|25724|2|2|3397.40|0.02|0.05|A|F|1994-11-30|1994-11-29|1994-12-10|DELIVER IN PERSON|FOB| instructions-- blithely silent depo| +79343|126551|14058|1|41|64679.55|0.02|0.04|N|O|1996-05-04|1996-06-20|1996-05-15|COLLECT COD|SHIP|ing foxes integrate. quickly regular reque| +79343|933054|45573|2|20|21740.20|0.06|0.00|N|O|1996-05-07|1996-06-04|1996-05-27|NONE|SHIP|st the carefully| +79368|996460|21499|1|12|18677.04|0.06|0.05|A|F|1992-07-19|1992-05-05|1992-08-18|COLLECT COD|MAIL|ans sleep. slyly | +79368|486966|36967|2|42|82023.48|0.09|0.03|R|F|1992-07-17|1992-06-02|1992-08-13|NONE|TRUCK|es use blithely ironic instructions. bold | +79368|429074|41583|3|3|3009.15|0.04|0.04|A|F|1992-04-30|1992-06-05|1992-05-22|COLLECT COD|MAIL| carefully regular instructions shall ha| +79369|787765|37766|1|18|33349.14|0.02|0.04|R|F|1994-12-14|1994-12-01|1995-01-02|COLLECT COD|SHIP|regular theodolites wa| +79369|964797|14798|2|30|55852.50|0.05|0.01|A|F|1995-01-07|1994-12-14|1995-02-02|NONE|RAIL|nic ideas across th| +79370|828863|28864|1|10|17918.20|0.01|0.02|N|O|1996-11-27|1996-10-24|1996-12-26|NONE|TRUCK|bold notornis use furiously | +79370|692106|17133|2|48|52707.36|0.10|0.08|N|O|1997-01-15|1996-11-23|1997-02-14|NONE|SHIP|ons sleep. instructions haggle bl| +79370|210547|48060|3|32|46640.96|0.10|0.00|N|O|1996-11-03|1996-11-15|1996-11-17|TAKE BACK RETURN|SHIP|ts. furiously regular accounts det| +79370|659231|21745|4|33|39276.60|0.06|0.08|N|O|1996-10-04|1996-12-15|1996-10-23|DELIVER IN PERSON|SHIP|onic packages impress fluffily| +79370|691057|3571|5|27|28296.54|0.09|0.08|N|O|1996-10-11|1996-11-12|1996-10-16|TAKE BACK RETURN|RAIL| final deposits haggle c| +79370|594415|44416|6|39|58866.21|0.07|0.05|N|O|1996-10-08|1996-12-15|1996-10-16|DELIVER IN PERSON|AIR|e carefully. carefully silent deposits are| +79370|329571|29572|7|17|27209.52|0.02|0.02|N|O|1996-12-06|1996-11-19|1997-01-01|DELIVER IN PERSON|FOB|riously bold accounts. stealt| +79371|95094|7596|1|16|17425.44|0.02|0.03|N|O|1995-09-25|1995-08-29|1995-10-13|TAKE BACK RETURN|MAIL| bold deposi| +79372|698375|23402|1|16|21973.44|0.09|0.04|R|F|1992-09-10|1992-10-28|1992-10-04|COLLECT COD|FOB|y unusual accounts. expre| +79372|586614|49126|2|20|34011.80|0.09|0.04|R|F|1992-09-29|1992-11-01|1992-10-02|DELIVER IN PERSON|RAIL| about the careful| +79372|218633|31138|3|11|17067.82|0.07|0.00|A|F|1992-10-26|1992-11-02|1992-10-27|TAKE BACK RETURN|SHIP| pinto bea| +79372|560737|10738|4|49|88087.79|0.00|0.01|A|F|1992-08-23|1992-10-03|1992-09-09|COLLECT COD|MAIL|ular account| +79372|294763|7269|5|10|17577.50|0.07|0.02|R|F|1992-08-21|1992-11-02|1992-09-07|TAKE BACK RETURN|AIR|ly about the furiously regular dep| +79373|951775|1776|1|39|71242.47|0.01|0.02|N|O|1996-12-02|1996-11-25|1996-12-18|NONE|SHIP|ely alongside of the carefully pending acc| +79373|472923|10451|2|11|20854.90|0.02|0.06|N|O|1996-12-01|1996-10-06|1996-12-21|COLLECT COD|MAIL|eaves are carefully f| +79373|413866|38883|3|22|39156.48|0.05|0.00|N|O|1996-12-19|1996-10-11|1996-12-27|TAKE BACK RETURN|MAIL|in. requests cajole blithely along the| +79373|831454|31455|4|14|19395.74|0.07|0.06|N|O|1996-12-09|1996-11-19|1996-12-20|TAKE BACK RETURN|TRUCK|ly express packages. pending deposits | +79373|235081|35082|5|1|1016.07|0.03|0.05|N|O|1996-12-03|1996-11-12|1996-12-25|DELIVER IN PERSON|TRUCK|the pending, spe| +79373|5567|18068|6|14|20615.84|0.01|0.07|N|O|1996-10-21|1996-10-15|1996-10-26|COLLECT COD|RAIL|til the car| +79373|564323|1857|7|42|58266.60|0.08|0.05|N|O|1996-10-29|1996-10-05|1996-11-23|COLLECT COD|MAIL|ptotes. blit| +79374|572630|35142|1|9|15323.49|0.06|0.02|A|F|1992-07-24|1992-10-16|1992-08-10|DELIVER IN PERSON|REG AIR|ions. even gifts affix aro| +79374|182895|45399|2|37|73181.93|0.03|0.03|R|F|1992-10-16|1992-09-27|1992-11-10|COLLECT COD|MAIL|es. blithely enticing fo| +79374|913647|13648|3|44|73066.40|0.05|0.00|A|F|1992-10-07|1992-10-04|1992-10-30|NONE|SHIP|e slyly among the final, regular | +79374|650935|936|4|44|82979.60|0.07|0.08|R|F|1992-11-04|1992-10-09|1992-11-13|NONE|SHIP|ng the accounts. packages are slyly across| +79374|262145|12146|5|30|33213.90|0.08|0.06|A|F|1992-09-24|1992-09-06|1992-10-12|DELIVER IN PERSON|MAIL|ptotes. carefully even accou| +79374|857291|7292|6|44|54923.00|0.09|0.04|R|F|1992-09-05|1992-09-29|1992-09-09|DELIVER IN PERSON|MAIL|s wake slyly among th| +79374|478808|28809|7|28|50029.84|0.08|0.05|R|F|1992-08-20|1992-08-31|1992-09-11|TAKE BACK RETURN|TRUCK| ironic deposits dazzle idly regular a| +79375|324741|12260|1|5|8828.65|0.02|0.05|N|O|1996-05-03|1996-06-07|1996-05-29|NONE|MAIL|ecial deposits| +79375|917902|42939|2|18|34557.48|0.01|0.05|N|O|1996-05-19|1996-05-03|1996-06-15|DELIVER IN PERSON|MAIL|nag. fluffily pen| +79400|108324|8325|1|50|66616.00|0.07|0.05|N|O|1998-07-03|1998-08-28|1998-07-19|TAKE BACK RETURN|TRUCK|posits. furiously sp| +79400|598138|23161|2|40|49444.40|0.05|0.05|N|O|1998-09-23|1998-07-24|1998-10-05|COLLECT COD|SHIP|odolites. fluffily pending plate| +79400|893137|30689|3|42|47463.78|0.00|0.03|N|O|1998-08-04|1998-08-29|1998-08-30|DELIVER IN PERSON|FOB|n, silent dep| +79400|938932|38933|4|18|35476.02|0.04|0.03|N|O|1998-07-27|1998-07-25|1998-08-14|DELIVER IN PERSON|SHIP|ounts haggle blit| +79401|655120|5121|1|15|16126.35|0.08|0.07|N|O|1995-11-30|1995-10-08|1995-12-06|DELIVER IN PERSON|MAIL|cajole. idly express dependen| +79401|598837|48838|2|11|21293.91|0.06|0.02|N|O|1995-10-19|1995-11-11|1995-11-03|TAKE BACK RETURN|FOB|dolites nag furiousl| +79401|637699|12724|3|7|11456.62|0.00|0.00|N|O|1995-12-20|1995-10-23|1995-12-29|COLLECT COD|SHIP|ly furiously final theodo| +79402|568492|18493|1|31|48374.57|0.07|0.08|N|O|1997-03-22|1997-04-30|1997-03-24|DELIVER IN PERSON|TRUCK|ep carefully across th| +79402|631713|19250|2|17|27959.56|0.03|0.02|N|O|1997-03-31|1997-05-05|1997-04-13|TAKE BACK RETURN|RAIL|. pending pa| +79402|186421|48925|3|48|72356.16|0.00|0.07|N|O|1997-05-27|1997-05-29|1997-06-01|COLLECT COD|REG AIR|c packages. carefully fin| +79402|163786|26290|4|31|57343.18|0.00|0.01|N|O|1997-03-05|1997-04-14|1997-03-13|NONE|MAIL| pending deposits| +79402|736021|48536|5|13|13740.87|0.06|0.08|N|O|1997-04-05|1997-05-03|1997-04-30|NONE|RAIL| slyly braids. close ideas against t| +79402|291037|28553|6|21|21588.42|0.01|0.07|N|O|1997-06-11|1997-05-15|1997-07-11|COLLECT COD|SHIP|ly special ideas snooze bold p| +79403|405482|30499|1|28|38848.88|0.05|0.06|N|O|1996-06-29|1996-06-29|1996-07-22|TAKE BACK RETURN|FOB|ly express requests. slyly re| +79403|923655|23656|2|20|33572.20|0.03|0.07|N|O|1996-07-30|1996-06-05|1996-08-10|TAKE BACK RETURN|MAIL|al requests. carefully ironic| +79403|854434|41986|3|49|68031.11|0.10|0.04|N|O|1996-05-26|1996-05-13|1996-05-28|TAKE BACK RETURN|AIR|egularly r| +79403|461912|24422|4|35|65586.15|0.01|0.08|N|O|1996-04-26|1996-05-19|1996-05-02|NONE|MAIL| the quickly final pack| +79403|347742|22755|5|20|35794.60|0.00|0.04|N|O|1996-07-26|1996-05-13|1996-08-19|NONE|REG AIR| snooze slyly ag| +79403|497193|34721|6|5|5950.85|0.10|0.06|N|O|1996-05-31|1996-06-16|1996-06-05|COLLECT COD|REG AIR|ar deposits promise boldly around the bli| +79404|540792|3303|1|41|75143.57|0.10|0.08|N|O|1997-02-25|1997-01-29|1997-03-26|TAKE BACK RETURN|RAIL|ily. daringly blithe asymptotes | +79404|76365|26366|2|40|53654.40|0.03|0.02|N|O|1996-12-30|1996-12-11|1997-01-22|COLLECT COD|RAIL|l instructions play fu| +79404|457511|7512|3|19|27901.31|0.10|0.00|N|O|1997-02-25|1997-02-04|1997-03-14|DELIVER IN PERSON|FOB| fluffily. furiousl| +79404|371249|21250|4|6|7921.38|0.05|0.02|N|O|1997-01-22|1997-01-30|1997-02-11|DELIVER IN PERSON|TRUCK|fully regular theod| +79405|734458|22001|1|34|50742.28|0.08|0.04|A|F|1995-03-14|1995-01-29|1995-03-16|COLLECT COD|REG AIR| above the unusual requests | +79405|27949|15450|2|6|11261.64|0.07|0.01|A|F|1995-03-08|1995-02-02|1995-03-14|TAKE BACK RETURN|MAIL| slyly even| +79406|882308|32309|1|9|11612.34|0.01|0.04|N|O|1996-04-10|1996-04-05|1996-05-09|NONE|AIR|t among the requests-- even, | +79406|947233|47234|2|48|61449.12|0.00|0.01|N|O|1996-05-03|1996-04-09|1996-05-24|TAKE BACK RETURN|RAIL|ily even grouches wake fluffil| +79406|141475|41476|3|29|43977.63|0.05|0.08|N|O|1996-03-03|1996-03-04|1996-03-23|TAKE BACK RETURN|TRUCK|kly regular foxes haggle fluffily even dep| +79406|765411|40442|4|48|70866.24|0.02|0.08|N|O|1996-02-13|1996-03-18|1996-03-03|TAKE BACK RETURN|REG AIR|latelets? express foxes around the expr| +79406|251895|39411|5|1|1846.88|0.04|0.02|N|O|1996-03-14|1996-04-05|1996-03-21|TAKE BACK RETURN|MAIL|ndencies doubt| +79406|588267|25801|6|25|33881.00|0.07|0.03|N|O|1996-05-19|1996-03-19|1996-06-09|COLLECT COD|MAIL|tructions sleep for the furiou| +79407|315596|28103|1|33|53182.14|0.05|0.08|N|O|1996-08-26|1996-09-11|1996-09-13|NONE|MAIL|riously alongside of the slyly regula| +79407|208738|21243|2|35|57635.20|0.04|0.08|N|O|1996-11-02|1996-08-11|1996-12-02|TAKE BACK RETURN|FOB|tes. quickly final excuses sle| +79407|245295|20304|3|21|26045.88|0.03|0.07|N|O|1996-10-08|1996-09-03|1996-10-28|COLLECT COD|MAIL|its across the furiously unusua| +79407|665621|40648|4|39|61877.01|0.00|0.03|N|O|1996-09-23|1996-08-09|1996-10-17|TAKE BACK RETURN|FOB|, regular | +79407|85913|10916|5|14|26584.74|0.04|0.00|N|O|1996-10-15|1996-08-18|1996-11-04|DELIVER IN PERSON|TRUCK|sly regular foxes. final, iron| +79407|931655|31656|6|44|74210.84|0.02|0.07|N|O|1996-07-28|1996-09-03|1996-08-07|COLLECT COD|TRUCK|ously spec| +79407|325295|37802|7|34|44889.52|0.01|0.04|N|O|1996-08-31|1996-08-31|1996-09-11|NONE|RAIL|ithely even pinto| +79432|221021|21022|1|42|39564.42|0.09|0.02|R|F|1993-09-27|1993-12-04|1993-10-02|TAKE BACK RETURN|FOB|! instructions are quickly slyly regula| +79432|693263|43264|2|37|46480.51|0.09|0.04|A|F|1993-09-21|1993-10-21|1993-10-18|NONE|AIR|iously ironic foxes along the fur| +79432|657071|7072|3|42|43177.68|0.03|0.01|A|F|1993-09-24|1993-11-12|1993-10-20|NONE|AIR|ly inside the fluffily regular pla| +79432|389093|1601|4|9|10638.72|0.00|0.05|A|F|1993-10-31|1993-11-29|1993-11-07|NONE|AIR|ts sublate quickly special theodolite| +79432|481750|44260|5|28|48488.44|0.05|0.03|A|F|1993-11-26|1993-12-01|1993-12-23|TAKE BACK RETURN|REG AIR|s. quickly even ac| +79432|757811|32842|6|7|13081.46|0.01|0.04|A|F|1993-10-12|1993-11-04|1993-10-21|NONE|SHIP|refully express hockey players. instructio| +79432|526128|26129|7|30|34623.00|0.02|0.00|R|F|1994-01-06|1993-11-21|1994-02-02|COLLECT COD|RAIL| excuses. slyly bold deposits h| +79433|619567|7104|1|24|35676.72|0.01|0.01|R|F|1993-02-28|1993-03-09|1993-03-28|NONE|RAIL|und the car| +79433|58494|33497|2|20|29049.80|0.01|0.07|A|F|1993-04-23|1993-04-13|1993-04-30|NONE|SHIP|tions. carefully regula| +79433|102715|40222|3|25|42942.75|0.01|0.02|A|F|1993-05-20|1993-03-24|1993-05-27|DELIVER IN PERSON|RAIL|refully special ideas impress blithely agai| +79434|856336|18854|1|47|60737.63|0.02|0.06|A|F|1994-02-11|1994-04-23|1994-02-25|DELIVER IN PERSON|MAIL|thely alongside of th| +79434|430815|43324|2|15|26186.85|0.09|0.01|R|F|1994-03-02|1994-03-26|1994-03-30|DELIVER IN PERSON|REG AIR|ickly regular dependencies | +79435|800396|25429|1|46|59632.10|0.00|0.06|R|F|1994-07-12|1994-07-11|1994-08-07|TAKE BACK RETURN|AIR|silent foxes. quickly unusual sen| +79435|243042|43043|2|36|35461.08|0.05|0.00|R|F|1994-08-28|1994-08-10|1994-09-09|TAKE BACK RETURN|MAIL|althy accounts sublate blithe| +79435|790267|40268|3|26|35287.98|0.01|0.06|A|F|1994-08-03|1994-07-13|1994-08-22|DELIVER IN PERSON|FOB|e final, sly deposits serve f| +79435|10932|10933|4|32|58973.76|0.01|0.03|A|F|1994-07-20|1994-07-03|1994-08-06|COLLECT COD|MAIL|t the blithely final pinto beans| +79435|732737|32738|5|10|17697.00|0.00|0.04|R|F|1994-07-21|1994-08-13|1994-08-08|NONE|AIR|uriously pending foxes wake aga| +79435|109757|47264|6|24|42402.00|0.00|0.08|A|F|1994-09-19|1994-07-11|1994-09-23|COLLECT COD|SHIP| final accounts. furiously pending p| +79435|682858|7885|7|15|27612.30|0.07|0.01|A|F|1994-07-03|1994-07-20|1994-07-17|COLLECT COD|TRUCK|iously regular accounts about | +79436|783150|33151|1|23|28361.76|0.06|0.05|A|F|1992-04-06|1992-05-31|1992-04-10|TAKE BACK RETURN|AIR|s run slyly. slyly even deposits boost | +79437|490389|40390|1|37|51036.32|0.06|0.02|A|F|1995-01-06|1994-10-27|1995-01-21|COLLECT COD|AIR|sual, even packages nod | +79437|964134|14135|2|9|10782.81|0.07|0.00|R|F|1994-09-25|1994-11-26|1994-10-24|COLLECT COD|SHIP|ructions. bli| +79437|195384|7888|3|19|28108.22|0.08|0.07|A|F|1994-10-19|1994-12-05|1994-11-03|TAKE BACK RETURN|AIR| sleep acr| +79437|807964|20481|4|13|24334.96|0.08|0.01|R|F|1994-11-22|1994-11-05|1994-12-21|TAKE BACK RETURN|FOB|ly. quickly ironic theodol| +79438|497087|9597|1|10|10840.60|0.00|0.07|A|F|1995-03-01|1995-01-13|1995-03-16|COLLECT COD|MAIL|hely around the | +79439|384605|34606|1|18|30412.62|0.04|0.06|N|O|1997-01-17|1997-01-22|1997-01-31|COLLECT COD|MAIL|hely even | +79439|52494|39998|2|19|27483.31|0.05|0.00|N|O|1997-03-03|1997-01-09|1997-03-06|COLLECT COD|SHIP|al foxes. ironic ac| +79439|259423|9424|3|35|48384.35|0.05|0.04|N|O|1996-11-24|1997-01-14|1996-11-27|DELIVER IN PERSON|RAIL|ets nag slyly against the deposits. slyly| +79464|70233|32735|1|45|54145.35|0.06|0.04|N|O|1998-03-24|1998-05-05|1998-04-19|DELIVER IN PERSON|RAIL|ar requests. quickly pending dep| +79464|398902|11410|2|41|82036.49|0.01|0.05|N|O|1998-04-21|1998-03-19|1998-05-01|NONE|AIR|-ray carefully around the| +79465|641060|28597|1|50|50051.50|0.01|0.06|N|O|1996-10-12|1996-11-07|1996-11-06|TAKE BACK RETURN|TRUCK|luffily caref| +79465|282564|45070|2|40|61862.00|0.09|0.06|N|O|1996-12-22|1996-11-05|1996-12-27|TAKE BACK RETURN|RAIL| unusual pinto beans; blithely silen| +79466|74294|11798|1|30|38048.70|0.02|0.07|N|O|1998-08-17|1998-10-04|1998-08-29|COLLECT COD|FOB|- final, pending ideas aff| +79466|648505|36042|2|15|21802.05|0.03|0.06|N|O|1998-11-02|1998-09-07|1998-11-20|TAKE BACK RETURN|REG AIR|ons haggle caref| +79466|407049|19558|3|12|11472.24|0.10|0.08|N|O|1998-10-18|1998-10-24|1998-10-31|NONE|TRUCK|d accounts integrate car| +79466|268693|31199|4|48|79760.64|0.08|0.08|N|O|1998-09-10|1998-09-18|1998-09-11|COLLECT COD|REG AIR|boost furiously deposits| +79466|909966|47521|5|46|90892.32|0.02|0.01|N|O|1998-09-18|1998-09-18|1998-09-26|COLLECT COD|MAIL|blithely special packages wa| +79466|785826|35827|6|8|15294.32|0.07|0.04|N|O|1998-08-25|1998-10-11|1998-09-22|TAKE BACK RETURN|RAIL|nic foxes use against the pending excuses.| +79467|711330|11331|1|6|8047.80|0.01|0.00|N|O|1998-02-18|1998-04-18|1998-03-06|DELIVER IN PERSON|REG AIR|usly pending asymptotes. e| +79467|322343|34850|2|15|20479.95|0.03|0.01|N|O|1998-04-28|1998-03-25|1998-05-13|TAKE BACK RETURN|SHIP|nts wake carefully across the ca| +79467|610402|22915|3|8|10498.96|0.00|0.06|N|O|1998-04-26|1998-03-17|1998-05-20|DELIVER IN PERSON|SHIP|. express sheaves a| +79468|57841|45345|1|1|1798.84|0.09|0.06|R|F|1994-09-23|1994-10-16|1994-10-20|DELIVER IN PERSON|RAIL|deposits. fluffily reg| +79468|126138|13645|2|46|53549.98|0.02|0.00|A|F|1994-10-15|1994-11-01|1994-11-10|COLLECT COD|SHIP|lets. carefully silent pinto beans use e| +79468|992622|17661|3|14|24004.12|0.09|0.05|R|F|1994-09-10|1994-11-10|1994-09-25|DELIVER IN PERSON|TRUCK|ctions sle| +79468|995758|45759|4|31|57465.01|0.09|0.05|A|F|1994-10-05|1994-10-24|1994-10-24|NONE|TRUCK|otes cajole slyly regula| +79468|696478|21505|5|2|2948.88|0.03|0.04|A|F|1994-10-04|1994-10-14|1994-10-27|DELIVER IN PERSON|RAIL|ackages integrate quickly. regular pa| +79468|698934|36474|6|12|23194.80|0.07|0.05|R|F|1994-10-06|1994-11-01|1994-10-16|COLLECT COD|FOB|tructions cajole quickly. slyly | +79468|970001|7559|7|31|33199.76|0.10|0.06|A|F|1994-11-07|1994-10-24|1994-11-16|DELIVER IN PERSON|MAIL| deposits wake | +79469|792039|4555|1|36|40716.00|0.07|0.00|N|O|1996-07-07|1996-06-19|1996-07-09|COLLECT COD|SHIP|ffily even packages affix carefull| +79469|783756|8787|2|48|88306.56|0.06|0.08|N|O|1996-07-01|1996-06-27|1996-07-19|DELIVER IN PERSON|FOB|es hang after the regular requests. slyly i| +79469|577182|2205|3|42|52884.72|0.05|0.03|N|O|1996-04-08|1996-05-13|1996-05-01|TAKE BACK RETURN|RAIL|s use quickly regular, bold deposits. bold| +79469|697081|9595|4|14|15092.70|0.06|0.07|N|O|1996-07-06|1996-05-20|1996-07-29|NONE|RAIL|ments solve. final ideas snooze. caref| +79469|837917|12950|5|19|35242.53|0.05|0.00|N|O|1996-05-16|1996-05-11|1996-06-15|NONE|RAIL|e carefully ironic p| +79469|859162|21680|6|27|30270.24|0.07|0.03|N|O|1996-06-18|1996-05-05|1996-07-02|DELIVER IN PERSON|RAIL|egular requests haggle furio| +79470|443161|18178|1|10|11041.40|0.06|0.02|A|F|1993-11-08|1993-10-14|1993-12-02|NONE|FOB|ges play furiously| +79470|205578|5579|2|25|37089.00|0.04|0.07|A|F|1993-12-01|1993-10-18|1993-12-22|COLLECT COD|REG AIR|requests. slyl| +79470|133378|45881|3|21|29638.77|0.01|0.01|R|F|1993-11-13|1993-09-19|1993-12-13|TAKE BACK RETURN|AIR|l accounts about the deposits cajole | +79470|667776|30290|4|49|85443.26|0.05|0.01|R|F|1993-12-12|1993-10-05|1994-01-02|DELIVER IN PERSON|REG AIR| blithely ironic deposits. special ideas | +79470|311218|23725|5|27|33188.40|0.05|0.08|R|F|1993-12-02|1993-10-11|1993-12-08|NONE|TRUCK| the pending, express theodolite| +79471|311945|49464|1|16|31310.88|0.03|0.05|R|F|1992-08-25|1992-07-28|1992-09-01|DELIVER IN PERSON|TRUCK|ideas cajole. | +79471|849228|49229|2|32|37669.76|0.05|0.05|R|F|1992-08-09|1992-07-17|1992-08-25|COLLECT COD|FOB|s sleep. carefully | +79471|964012|14013|3|3|3227.91|0.05|0.05|R|F|1992-07-21|1992-07-05|1992-07-25|COLLECT COD|TRUCK|quests. carefully even packages hagg| +79471|134685|47188|4|50|85984.00|0.02|0.00|A|F|1992-09-03|1992-06-30|1992-09-16|DELIVER IN PERSON|RAIL|lets. furiously brave theodolites | +79471|645270|45271|5|39|47394.36|0.02|0.07|R|F|1992-09-12|1992-08-02|1992-10-06|TAKE BACK RETURN|MAIL| haggle bold, clo| +79471|46388|46389|6|24|32025.12|0.02|0.06|R|F|1992-07-13|1992-07-18|1992-08-09|DELIVER IN PERSON|SHIP|blithely s| +79471|627523|15060|7|49|71074.01|0.04|0.00|A|F|1992-06-18|1992-07-03|1992-06-26|NONE|REG AIR|the slyly expre| +79496|772483|10029|1|7|10888.15|0.00|0.04|N|O|1996-03-17|1996-02-20|1996-03-20|TAKE BACK RETURN|TRUCK|ead of the even deposits. furiously ironic| +79497|850393|394|1|50|67167.50|0.00|0.02|N|O|1997-05-13|1997-07-16|1997-05-23|COLLECT COD|FOB| pinto beans affix careful| +79497|547043|9554|2|3|3270.06|0.02|0.03|N|O|1997-07-08|1997-07-04|1997-07-17|COLLECT COD|RAIL|ainst the final excuses. carefully even p| +79497|146648|9151|3|47|79648.08|0.00|0.03|N|O|1997-04-30|1997-06-15|1997-05-10|COLLECT COD|FOB|ctions after the carefully final accounts h| +79497|703992|3993|4|23|45907.08|0.03|0.07|N|O|1997-08-19|1997-06-01|1997-08-21|TAKE BACK RETURN|REG AIR|o boost. ruthless, regular excu| +79497|985385|10424|5|6|8822.04|0.04|0.08|N|O|1997-06-02|1997-06-25|1997-06-07|NONE|RAIL|s. quickly final braids nag car| +79497|350235|236|6|37|47553.14|0.03|0.04|N|O|1997-07-03|1997-05-22|1997-07-10|COLLECT COD|MAIL|ide of the ironic,| +79498|485475|10494|1|33|48194.85|0.05|0.07|A|F|1993-02-05|1993-01-23|1993-02-15|TAKE BACK RETURN|SHIP|deposits affix qu| +79498|375410|25411|2|5|7427.00|0.10|0.08|R|F|1992-11-19|1992-12-25|1992-11-27|DELIVER IN PERSON|MAIL|nic ideas use alongside of the blit| +79499|397995|10503|1|46|96277.08|0.02|0.00|N|O|1997-06-20|1997-07-24|1997-07-17|NONE|MAIL|ts! carefully| +79499|101393|13896|2|38|52986.82|0.05|0.03|N|O|1997-09-04|1997-07-24|1997-10-02|DELIVER IN PERSON|SHIP| regular requests | +79499|111953|11954|3|30|58948.50|0.02|0.05|N|O|1997-06-17|1997-06-14|1997-06-26|TAKE BACK RETURN|FOB|the furious| +79499|578131|3154|4|10|12091.10|0.10|0.07|N|O|1997-05-20|1997-07-02|1997-06-02|DELIVER IN PERSON|TRUCK|ng accounts wake carefully across th| +79499|643997|19022|5|2|3881.92|0.01|0.01|N|O|1997-06-27|1997-08-10|1997-07-13|TAKE BACK RETURN|REG AIR|leep quickly carefu| +79499|656584|31611|6|17|26189.35|0.06|0.05|N|O|1997-06-15|1997-07-20|1997-07-06|TAKE BACK RETURN|REG AIR|ording to the regular packages. deposits | +79500|935895|35896|1|48|92680.80|0.05|0.00|R|F|1994-07-17|1994-07-31|1994-07-20|DELIVER IN PERSON|REG AIR|ly ironic pl| +79500|572906|47929|2|15|29683.20|0.00|0.03|A|F|1994-05-19|1994-07-22|1994-06-01|TAKE BACK RETURN|FOB|y final instructi| +79500|816129|16130|3|31|32397.48|0.00|0.04|A|F|1994-07-23|1994-07-13|1994-08-12|COLLECT COD|RAIL|uses haggle around the carefully bold| +79501|973992|49031|1|6|12395.70|0.02|0.05|N|O|1996-11-22|1996-12-14|1996-12-20|COLLECT COD|SHIP|xes play according to the bl| +79501|878674|41192|2|41|67757.83|0.07|0.02|N|O|1996-10-18|1996-12-24|1996-10-28|NONE|REG AIR|ly despite the depend| +79501|866882|4434|3|25|46221.00|0.07|0.06|N|O|1996-12-14|1997-01-01|1997-01-08|TAKE BACK RETURN|TRUCK| blithely unusual| +79501|681557|31558|4|18|27693.36|0.05|0.07|N|O|1996-10-14|1996-11-24|1996-10-20|NONE|FOB|osits. deposits ben| +79502|359369|46891|1|1|1428.35|0.06|0.03|N|O|1997-06-21|1997-05-23|1997-06-26|TAKE BACK RETURN|REG AIR|dolphins. blithely silen| +79503|449135|49136|1|9|9756.99|0.01|0.08|N|O|1998-01-31|1998-04-10|1998-02-23|NONE|MAIL| requests wake carefully pendin| +79503|604457|16970|2|19|25866.98|0.02|0.02|N|O|1998-02-02|1998-02-19|1998-02-07|COLLECT COD|RAIL|pinto beans. regular idea| +79503|104872|17375|3|44|82582.28|0.00|0.04|N|O|1998-03-28|1998-04-10|1998-04-15|COLLECT COD|AIR| after the furiously pendi| +79503|577201|14735|4|36|46014.48|0.00|0.00|N|O|1998-01-11|1998-04-02|1998-02-08|TAKE BACK RETURN|SHIP|ounts use furious| +79528|962371|37410|1|44|63066.52|0.08|0.06|R|F|1992-08-28|1992-08-28|1992-09-13|NONE|AIR|bold deposits| +79528|555930|30953|2|35|69506.85|0.02|0.03|A|F|1992-08-06|1992-10-02|1992-08-21|TAKE BACK RETURN|REG AIR|osits sleep blithely carefully | +79528|498967|36495|3|38|74705.72|0.08|0.05|A|F|1992-10-19|1992-09-12|1992-11-04|COLLECT COD|REG AIR| haggle quickly. slyly unusual foxes use | +79529|590236|40237|1|24|31829.04|0.07|0.01|N|O|1997-10-14|1997-11-14|1997-10-18|NONE|FOB|xes. slyly even foxes cajole deposits! blit| +79529|89402|14405|2|13|18088.20|0.10|0.03|N|O|1997-12-03|1997-09-19|1997-12-06|NONE|MAIL|s. regular accounts sleep blithely. | +79529|570226|7760|3|20|25924.00|0.02|0.02|N|O|1997-12-03|1997-09-24|1997-12-24|COLLECT COD|SHIP|ccounts play f| +79529|784539|9570|4|6|9741.00|0.05|0.04|N|O|1997-09-06|1997-11-12|1997-09-09|COLLECT COD|AIR|mptotes are after the regular| +79529|738827|13856|5|39|72765.81|0.05|0.01|N|O|1997-09-01|1997-11-14|1997-09-23|COLLECT COD|RAIL|es. carefully| +79529|453091|28110|6|24|25057.68|0.00|0.02|N|O|1997-09-03|1997-10-01|1997-09-30|DELIVER IN PERSON|SHIP| unusual requests. special, even tithes| +79530|79269|41771|1|50|62413.00|0.03|0.07|N|O|1996-07-23|1996-08-28|1996-07-28|DELIVER IN PERSON|MAIL|ithely carefully regular deposit| +79530|257881|45397|2|4|7355.48|0.10|0.03|N|O|1996-07-28|1996-08-21|1996-08-22|NONE|REG AIR|r the quickly final packages. fluffily f| +79530|201605|14110|3|5|7532.95|0.08|0.06|N|O|1996-06-19|1996-07-13|1996-07-13|NONE|SHIP|tions are bli| +79531|992911|30469|1|10|20038.70|0.09|0.08|A|F|1993-10-18|1993-11-08|1993-11-07|TAKE BACK RETURN|AIR|ests boost blithely even foxes. bo| +79531|852912|15430|2|49|91378.63|0.07|0.01|A|F|1993-08-21|1993-09-25|1993-09-10|COLLECT COD|SHIP|ajole. even accounts n| +79531|889329|26881|3|35|46139.80|0.09|0.02|R|F|1993-08-24|1993-10-23|1993-09-05|DELIVER IN PERSON|SHIP|ake enticingly aft| +79532|124630|12137|1|24|39711.12|0.03|0.08|A|F|1993-04-24|1993-07-04|1993-04-27|DELIVER IN PERSON|MAIL|al packages boost af| +79532|644476|6989|2|24|34090.56|0.01|0.07|A|F|1993-04-20|1993-05-18|1993-04-23|COLLECT COD|AIR|he fluffily express packa| +79532|697529|47530|3|21|32056.29|0.06|0.02|A|F|1993-06-13|1993-06-03|1993-06-26|TAKE BACK RETURN|RAIL|carefully unusual packages. e| +79532|356084|18592|4|40|45602.80|0.08|0.00|A|F|1993-04-22|1993-06-14|1993-05-07|DELIVER IN PERSON|RAIL|ng the unusual, re| +79533|69180|6684|1|48|55160.64|0.07|0.01|N|O|1996-10-12|1996-08-31|1996-10-25|TAKE BACK RETURN|FOB|efully ironic p| +79533|706948|6949|2|46|89925.86|0.00|0.05|N|O|1996-09-28|1996-10-17|1996-10-22|COLLECT COD|AIR|ntegrate furiously. even ideas haggle quick| +79533|667004|29518|3|7|6796.79|0.10|0.05|N|O|1996-11-16|1996-09-12|1996-11-20|TAKE BACK RETURN|AIR|y even deposits against the slyly final| +79533|335536|10549|4|40|62860.80|0.03|0.07|N|O|1996-09-22|1996-09-23|1996-10-19|TAKE BACK RETURN|REG AIR|es after the quickly unusual req| +79533|345061|32580|5|42|46454.10|0.06|0.02|N|O|1996-08-02|1996-09-12|1996-08-09|TAKE BACK RETURN|FOB|nments alongside of the blithely regul| +79533|432622|32623|6|26|40419.60|0.10|0.08|N|O|1996-09-16|1996-09-23|1996-09-27|NONE|TRUCK|ronic plate| +79534|604564|42101|1|1|1468.53|0.08|0.05|A|F|1993-09-20|1993-11-09|1993-09-24|NONE|MAIL|g to the busy, regular theodolites. depend| +79534|894794|19829|2|37|66183.75|0.04|0.08|A|F|1993-10-14|1993-11-14|1993-11-11|COLLECT COD|SHIP|r theodolites sleep quickly after the| +79534|795500|45501|3|43|68605.21|0.05|0.08|A|F|1993-10-01|1993-10-23|1993-10-17|TAKE BACK RETURN|TRUCK|ts. slyly unusual requests ca| +79534|961127|36166|4|15|17821.20|0.03|0.08|R|F|1993-11-26|1993-11-06|1993-12-08|COLLECT COD|MAIL|yly even dep| +79534|646109|21134|5|26|27431.82|0.03|0.00|R|F|1993-11-26|1993-12-03|1993-12-21|DELIVER IN PERSON|REG AIR|s wake blithely. blithely bold deposits| +79534|148855|23860|6|16|30461.60|0.05|0.07|A|F|1993-12-31|1993-11-04|1994-01-12|COLLECT COD|FOB|ll serve blithely fi| +79535|847836|22869|1|1|1783.79|0.02|0.08|N|O|1995-11-18|1995-11-22|1995-11-20|NONE|SHIP|ly express dugouts sleep expres| +79535|575173|196|2|7|8737.05|0.05|0.03|N|O|1995-12-20|1995-12-18|1996-01-06|COLLECT COD|REG AIR|. carefully | +79560|869368|6920|1|7|9361.24|0.02|0.00|N|O|1995-10-28|1995-09-21|1995-11-20|NONE|SHIP|lyly about the even, special accounts. un| +79560|460007|47535|2|39|37712.22|0.10|0.03|N|O|1995-11-19|1995-10-12|1995-12-03|NONE|SHIP|haggle quickly after the silent r| +79561|970184|7742|1|39|48911.46|0.07|0.03|N|O|1996-11-23|1996-12-16|1996-12-22|TAKE BACK RETURN|AIR|le silently| +79561|868013|43048|2|26|25505.22|0.02|0.06|N|O|1997-01-17|1996-12-27|1997-01-23|DELIVER IN PERSON|SHIP|inal deposits| +79561|686016|48530|3|50|50099.00|0.10|0.02|N|O|1997-03-01|1997-01-28|1997-03-29|DELIVER IN PERSON|REG AIR|heodolites. blit| +79561|870149|7701|4|5|5595.50|0.04|0.07|N|O|1996-11-23|1997-01-14|1996-12-07|NONE|FOB|wake blithely ironic depo| +79561|582481|7504|5|20|31269.20|0.03|0.07|N|O|1997-02-20|1996-12-19|1997-03-15|DELIVER IN PERSON|RAIL|uests. quickly pendin| +79561|746935|21964|6|5|9909.50|0.04|0.08|N|O|1996-12-09|1997-01-02|1996-12-26|NONE|AIR|nst the bold deposits in| +79562|735266|35267|1|29|37735.67|0.02|0.00|A|F|1993-10-27|1993-09-26|1993-11-14|COLLECT COD|MAIL|uriously final foxes. furiousl| +79562|606238|6239|2|14|16018.80|0.04|0.02|A|F|1993-08-09|1993-09-04|1993-09-02|NONE|AIR|nic, even requests play furiously bold, i| +79562|34074|46575|3|43|43347.01|0.05|0.01|A|F|1993-10-03|1993-10-09|1993-10-30|COLLECT COD|SHIP|the carefully clo| +79563|515808|40829|1|32|58360.96|0.06|0.05|A|F|1993-11-08|1993-11-06|1993-11-14|NONE|REG AIR|l dugouts s| +79563|177982|15492|2|30|61799.40|0.01|0.01|R|F|1993-12-21|1993-10-20|1994-01-06|COLLECT COD|REG AIR|xes. deposits haggle | +79564|887606|25158|1|16|25496.96|0.05|0.07|N|O|1996-05-27|1996-06-07|1996-06-13|TAKE BACK RETURN|SHIP|. regular, regular pinto beans haggle f| +79564|991303|16342|2|2|2788.52|0.08|0.06|N|O|1996-04-13|1996-04-17|1996-04-15|TAKE BACK RETURN|SHIP|the furiously special requests. blithely | +79564|828420|15969|3|44|59328.72|0.08|0.07|N|O|1996-05-01|1996-05-28|1996-05-25|COLLECT COD|FOB| dolphins. ir| +79564|249181|24190|4|43|48597.31|0.00|0.04|N|O|1996-07-02|1996-04-16|1996-07-25|COLLECT COD|AIR|x against the| +79565|755033|30064|1|13|14144.00|0.08|0.03|A|F|1993-04-28|1993-07-06|1993-05-10|DELIVER IN PERSON|FOB|ironic instructions sleep quickly pendi| +79565|829618|29619|2|28|43331.96|0.06|0.06|A|F|1993-07-04|1993-07-14|1993-07-24|NONE|REG AIR|tions about the d| +79565|382806|32807|3|23|43442.17|0.00|0.08|R|F|1993-08-21|1993-06-30|1993-09-08|TAKE BACK RETURN|FOB| regular deposits. carefully| +79565|811693|36726|4|28|44930.20|0.01|0.01|R|F|1993-05-07|1993-07-02|1993-05-17|TAKE BACK RETURN|FOB|against the regular deposits haggle of| +79565|112935|12936|5|36|70125.48|0.03|0.06|A|F|1993-07-23|1993-05-31|1993-08-07|TAKE BACK RETURN|RAIL|pinto beans. carefully regular depths ab| +79566|437937|25462|1|15|28123.65|0.10|0.02|R|F|1993-10-03|1993-11-20|1993-10-09|COLLECT COD|FOB|c platelets among the furiously regular| +79566|398669|36191|2|47|83079.55|0.03|0.08|A|F|1993-12-23|1993-11-16|1994-01-16|COLLECT COD|SHIP|regular packag| +79566|413831|13832|3|4|6979.24|0.03|0.07|R|F|1993-09-28|1993-11-18|1993-10-22|TAKE BACK RETURN|REG AIR|ctions. slyly ir| +79567|497260|47261|1|31|38974.44|0.03|0.06|A|F|1992-12-21|1993-02-02|1992-12-27|COLLECT COD|AIR|ins. slyly ironic packages above t| +79567|447331|47332|2|45|57523.95|0.07|0.01|R|F|1992-12-27|1993-01-01|1992-12-31|DELIVER IN PERSON|MAIL|aggle across the ironic ideas| +79567|285150|10161|3|3|3405.42|0.09|0.00|A|F|1992-11-25|1993-01-12|1992-12-17|NONE|MAIL|deas wake slyly.| +79567|502832|2833|4|33|60548.73|0.04|0.01|R|F|1993-01-22|1992-12-22|1993-02-18|NONE|REG AIR|special pinto beans! regularly final| +79567|92649|5151|5|16|26266.24|0.02|0.04|R|F|1993-02-24|1992-12-31|1993-03-19|COLLECT COD|MAIL|slyly ironic packages wake among t| +79567|142349|17354|6|23|32000.82|0.08|0.05|A|F|1993-03-03|1993-01-17|1993-03-11|COLLECT COD|AIR|ng the dependencies sleep caref| +79592|576510|14044|1|50|79324.50|0.03|0.05|N|O|1997-01-02|1997-02-20|1997-01-11|DELIVER IN PERSON|AIR|us patterns. regular deposits detect| +79593|485598|10617|1|4|6334.28|0.03|0.06|N|O|1998-06-23|1998-07-24|1998-07-21|NONE|SHIP|ss excuses are a| +79594|659185|21699|1|49|56063.35|0.08|0.01|N|O|1998-04-14|1998-03-13|1998-04-26|NONE|REG AIR|regular, re| +79595|592781|30315|1|6|11242.56|0.04|0.08|A|F|1995-05-05|1995-03-07|1995-05-11|COLLECT COD|REG AIR|nst the blithely regular reque| +79595|856479|31514|2|49|70336.07|0.01|0.04|R|F|1995-03-01|1995-05-01|1995-03-23|NONE|SHIP|pending, p| +79595|840468|15501|3|48|67604.16|0.04|0.07|A|F|1995-04-29|1995-04-07|1995-05-23|NONE|AIR|ake above the fur| +79595|733594|8623|4|5|8137.80|0.02|0.05|R|F|1995-05-09|1995-03-22|1995-05-28|NONE|SHIP|ress requests. regular deposits accord| +79595|504970|17481|5|2|3949.90|0.08|0.00|A|F|1995-03-16|1995-03-07|1995-03-31|TAKE BACK RETURN|MAIL| decoys. furiously even asymptotes after| +79595|30421|5422|6|13|17568.46|0.02|0.01|R|F|1995-04-07|1995-03-19|1995-04-25|TAKE BACK RETURN|FOB|ons are furiously. even,| +79596|678903|3930|1|9|16936.83|0.03|0.00|A|F|1993-12-04|1994-01-09|1994-01-01|DELIVER IN PERSON|AIR|inal foxes. blithely regular deposits de| +79596|320237|32744|2|8|10057.76|0.08|0.05|R|F|1994-01-22|1994-02-06|1994-02-12|TAKE BACK RETURN|FOB|eposits are | +79596|221853|21854|3|13|23072.92|0.02|0.05|A|F|1993-12-11|1994-01-18|1994-01-07|TAKE BACK RETURN|FOB|ckages. carefully even pint| +79596|681364|6391|4|10|13453.30|0.05|0.05|A|F|1993-11-12|1994-01-08|1993-12-07|DELIVER IN PERSON|TRUCK|ideas. final sauternes r| +79596|671971|9511|5|20|38858.80|0.07|0.07|A|F|1993-12-07|1994-02-06|1994-01-01|NONE|MAIL| the ironic pinto beans. regu| +79596|803874|16391|6|47|83558.01|0.04|0.03|A|F|1993-11-18|1994-01-30|1993-12-09|TAKE BACK RETURN|REG AIR|nst the carefully even deposits. s| +79596|697137|34677|7|10|11341.00|0.01|0.05|A|F|1993-11-18|1994-01-15|1993-12-11|TAKE BACK RETURN|AIR|are about the carefully expres| +79597|772307|47338|1|23|31723.21|0.01|0.06|N|O|1996-11-28|1996-11-25|1996-12-11|DELIVER IN PERSON|AIR| nag slowly sl| +79597|155689|30696|2|4|6978.72|0.08|0.00|N|O|1996-12-20|1996-12-10|1997-01-08|COLLECT COD|REG AIR|ly silent, special packages| +79597|650306|12820|3|31|38944.37|0.09|0.08|N|O|1996-11-27|1997-01-09|1996-12-18|COLLECT COD|TRUCK|ts hinder qu| +79598|969765|44804|1|1|1834.72|0.00|0.03|N|O|1998-10-16|1998-08-25|1998-11-03|COLLECT COD|SHIP|p fluffily ironic instructi| +79598|829579|17128|2|3|4525.59|0.04|0.01|N|O|1998-10-17|1998-09-09|1998-11-13|NONE|SHIP|ckages print furiously according to the sl| +79598|727770|15313|3|17|30561.58|0.02|0.02|N|O|1998-08-27|1998-09-21|1998-09-26|TAKE BACK RETURN|RAIL|ly. slyly regular | +79599|429878|29879|1|26|47004.10|0.04|0.02|A|F|1992-05-15|1992-07-16|1992-05-29|COLLECT COD|FOB|against the f| +79599|952470|14990|2|42|63942.06|0.06|0.01|A|F|1992-06-23|1992-06-16|1992-07-13|TAKE BACK RETURN|MAIL|wake fluffily special | +79599|152488|2489|3|20|30809.60|0.02|0.08|A|F|1992-05-31|1992-06-19|1992-06-12|COLLECT COD|SHIP|ironic requests h| +79599|858934|33969|4|5|9464.45|0.01|0.00|A|F|1992-05-20|1992-08-08|1992-06-14|TAKE BACK RETURN|AIR|sits. furiously express foxe| +79599|99952|24955|5|4|7807.80|0.08|0.01|R|F|1992-06-15|1992-08-07|1992-06-26|TAKE BACK RETURN|RAIL|posits cajole slyly | +79599|879705|29706|6|1|1684.66|0.06|0.08|A|F|1992-06-04|1992-07-23|1992-06-23|COLLECT COD|REG AIR|unts cajole quickly alo| +79599|200811|25820|7|5|8559.00|0.05|0.05|R|F|1992-06-13|1992-07-19|1992-06-27|TAKE BACK RETURN|RAIL|ess accounts h| +79624|21652|34153|1|23|36193.95|0.08|0.07|A|F|1994-09-14|1994-10-26|1994-10-11|COLLECT COD|FOB|olites. special pinto beans sleep| +79624|899968|12486|2|39|76748.88|0.02|0.04|R|F|1994-11-07|1994-09-15|1994-12-04|TAKE BACK RETURN|RAIL| regular pains sleep idly. bo| +79624|760143|10144|3|20|24062.20|0.04|0.07|A|F|1994-11-22|1994-10-06|1994-12-19|TAKE BACK RETURN|TRUCK|after the | +79624|715451|15452|4|30|43992.60|0.03|0.01|A|F|1994-09-14|1994-11-10|1994-10-08|COLLECT COD|AIR|egular packages acc| +79624|573799|48822|5|48|89892.96|0.02|0.08|R|F|1994-08-29|1994-11-01|1994-09-23|DELIVER IN PERSON|RAIL| slyly regular warhorses| +79624|834956|9989|6|37|69963.67|0.05|0.02|R|F|1994-09-10|1994-10-26|1994-09-30|DELIVER IN PERSON|AIR|gle quickly above the i| +79624|88901|38902|7|4|7559.60|0.02|0.07|A|F|1994-12-10|1994-10-17|1994-12-24|NONE|FOB|y across the furiously u| +79625|148599|11102|1|43|70846.37|0.06|0.00|N|O|1997-01-02|1997-02-28|1997-01-24|COLLECT COD|REG AIR|odolites are alwa| +79625|495305|32833|2|49|63713.72|0.04|0.00|N|O|1997-04-01|1997-02-19|1997-04-11|COLLECT COD|SHIP|heodolites. slyly fina| +79625|587036|49548|3|33|37059.33|0.04|0.06|N|O|1997-02-21|1997-01-28|1997-03-10|DELIVER IN PERSON|RAIL| slyly pending foxes sleep | +79625|309433|34446|4|18|25963.56|0.08|0.06|N|O|1997-03-11|1997-02-12|1997-04-05|TAKE BACK RETURN|FOB|ges use quickly. even exc| +79625|638324|25861|5|26|32819.54|0.06|0.01|N|O|1997-04-17|1997-03-09|1997-04-18|TAKE BACK RETURN|AIR|fily even platelets integrate accordin| +79626|392101|29623|1|35|41758.15|0.08|0.05|R|F|1992-12-27|1993-01-31|1992-12-30|DELIVER IN PERSON|REG AIR| cajole slyly | +79626|40017|27518|2|35|33495.35|0.05|0.01|R|F|1993-01-31|1993-01-16|1993-02-10|COLLECT COD|TRUCK|boost along the carefully ironic platel| +79627|69246|44249|1|50|60762.00|0.07|0.00|A|F|1994-11-13|1994-12-12|1994-11-24|TAKE BACK RETURN|MAIL|s impress slyly among the blithely | +79628|426211|1228|1|48|54585.12|0.08|0.06|N|O|1996-03-22|1995-12-29|1996-03-26|NONE|FOB|thely unusual asymptotes nod blithely| +79628|327724|40231|2|19|33282.49|0.01|0.08|N|O|1996-02-01|1995-12-22|1996-02-10|TAKE BACK RETURN|AIR|rls use blithely| +79628|55564|43068|3|39|59262.84|0.09|0.03|N|O|1996-02-18|1996-01-28|1996-02-28|DELIVER IN PERSON|AIR|ic courts. ironi| +79628|863629|38664|4|26|41407.08|0.06|0.05|N|O|1996-03-17|1996-01-18|1996-04-08|COLLECT COD|SHIP| furiously a| +79628|6338|18839|5|9|11198.97|0.08|0.03|N|O|1996-01-09|1996-01-13|1996-01-16|NONE|MAIL|efully pending instructi| +79628|512762|12763|6|49|86962.26|0.02|0.04|N|O|1996-03-12|1996-01-10|1996-04-11|DELIVER IN PERSON|MAIL|equests believe furi| +79628|976215|13773|7|16|20658.72|0.09|0.05|N|O|1996-02-10|1996-01-18|1996-02-27|TAKE BACK RETURN|MAIL|. pending, regular accounts for th| +79629|231070|31071|1|40|40042.40|0.04|0.07|N|O|1996-11-15|1996-12-13|1996-12-01|TAKE BACK RETURN|MAIL|y pending packages. slyly final| +79629|586859|49371|2|34|66158.22|0.03|0.07|N|O|1996-11-21|1996-12-23|1996-12-13|COLLECT COD|RAIL|y unusual requests nag| +79629|332846|20365|3|9|16909.47|0.01|0.07|N|O|1997-03-02|1997-01-27|1997-03-03|DELIVER IN PERSON|AIR|ely unusual sauterne| +79630|730599|5628|1|30|48886.80|0.03|0.04|R|F|1993-01-10|1993-01-08|1993-01-28|DELIVER IN PERSON|SHIP|blithely ir| +79630|169043|19044|2|36|40033.44|0.08|0.08|A|F|1993-02-07|1993-01-16|1993-03-03|DELIVER IN PERSON|MAIL|usly final ide| +79630|91417|28921|3|33|46477.53|0.05|0.07|A|F|1993-01-10|1993-03-03|1993-01-11|COLLECT COD|RAIL|ular pinto beans; fluffily ironic ac| +79630|441852|16869|4|17|30495.11|0.07|0.04|R|F|1993-03-10|1993-02-22|1993-03-21|COLLECT COD|TRUCK|as cajole blithely. | +79630|204777|17282|5|24|40362.24|0.10|0.07|A|F|1993-01-26|1993-02-22|1993-02-15|NONE|AIR|uctions. ironic dependencies are carefully.| +79630|678675|28676|6|39|64491.96|0.02|0.03|R|F|1993-03-16|1993-02-23|1993-04-13|TAKE BACK RETURN|SHIP|. regular, unusual packages| +79631|421566|34075|1|1|1487.54|0.05|0.03|N|O|1997-01-05|1997-02-17|1997-01-30|NONE|FOB|aggle about the ne| +79631|257390|7391|2|47|63326.86|0.05|0.03|N|O|1997-02-14|1997-01-15|1997-02-24|DELIVER IN PERSON|MAIL|cording to the carefully regular f| +79656|353213|15721|1|42|53180.40|0.08|0.08|N|O|1997-02-12|1997-01-12|1997-02-18|DELIVER IN PERSON|REG AIR|pending foxes. final, express pac| +79656|449871|37396|2|28|50983.80|0.07|0.06|N|O|1996-12-30|1997-01-06|1997-01-13|TAKE BACK RETURN|FOB|. regular deposits hag| +79657|763887|38918|1|49|95591.65|0.10|0.08|N|O|1996-02-03|1996-01-19|1996-02-08|DELIVER IN PERSON|REG AIR| slyly final req| +79657|641753|16778|2|43|72872.96|0.01|0.03|N|O|1996-03-06|1996-03-04|1996-03-10|DELIVER IN PERSON|FOB|onic instructions. regular| +79657|931042|6079|3|26|27898.00|0.10|0.00|N|O|1996-02-04|1996-03-03|1996-02-13|DELIVER IN PERSON|MAIL|g furiously slyly | +79658|85473|47975|1|37|53963.39|0.08|0.05|N|O|1996-09-29|1996-07-14|1996-10-03|DELIVER IN PERSON|TRUCK|integrate. quickly ev| +79658|540417|40418|2|45|65582.55|0.03|0.00|N|O|1996-08-15|1996-09-05|1996-08-17|COLLECT COD|MAIL|regular packages doubt blithely. regula| +79658|775097|12643|3|18|21097.08|0.07|0.02|N|O|1996-06-28|1996-08-27|1996-07-20|DELIVER IN PERSON|REG AIR|ously regular warthogs run according to t| +79658|43529|6030|4|11|16197.72|0.03|0.02|N|O|1996-10-04|1996-07-26|1996-10-14|COLLECT COD|RAIL| the ironic pa| +79658|591374|16397|5|44|64475.40|0.01|0.06|N|O|1996-09-03|1996-08-09|1996-09-30|COLLECT COD|FOB| pending excuses could cajole. ironically| +79659|452107|2108|1|26|27536.08|0.09|0.04|A|F|1993-08-05|1993-08-28|1993-08-14|COLLECT COD|AIR|bove the ironic packages. regular,| +79660|557074|19586|1|34|38455.70|0.07|0.02|R|F|1993-03-11|1993-01-11|1993-03-13|TAKE BACK RETURN|RAIL|lar asymptotes. final requests integrat| +79660|735243|10272|2|36|46015.56|0.08|0.00|A|F|1993-01-06|1993-01-08|1993-01-08|NONE|RAIL|eans wake slyly according to the bol| +79661|110703|35708|1|7|11995.90|0.01|0.07|N|F|1995-06-08|1995-07-19|1995-06-24|DELIVER IN PERSON|REG AIR|ronic waters are carefully f| +79661|580523|30524|2|20|32070.00|0.08|0.00|N|O|1995-08-24|1995-06-14|1995-09-02|TAKE BACK RETURN|MAIL|ove the quickl| +79661|834517|9550|3|38|55155.86|0.05|0.04|N|O|1995-07-21|1995-06-21|1995-07-27|NONE|MAIL|refully ironic depende| +79661|713902|38931|4|8|15326.96|0.08|0.05|N|O|1995-08-22|1995-06-24|1995-09-19|TAKE BACK RETURN|SHIP|he blithely ironic dependencie| +79661|539311|14332|5|3|4050.87|0.09|0.03|N|O|1995-07-01|1995-07-09|1995-07-25|TAKE BACK RETURN|REG AIR|, regular ideas are always a| +79661|198857|48858|6|41|80189.85|0.10|0.04|N|O|1995-06-27|1995-07-15|1995-07-06|COLLECT COD|SHIP|the slyly ironic ideas. quic| +79662|356904|44426|1|38|74513.82|0.06|0.04|A|F|1995-04-30|1995-03-31|1995-05-28|TAKE BACK RETURN|RAIL|ely even foxe| +79662|485149|47659|2|38|43096.56|0.07|0.00|R|F|1995-02-03|1995-03-27|1995-02-13|DELIVER IN PERSON|AIR|s dinos wake quickly: express, special i| +79662|883083|8118|3|4|4264.16|0.01|0.08|A|F|1995-02-18|1995-03-12|1995-03-02|TAKE BACK RETURN|MAIL|nusual foxes along the de| +79662|970194|20195|4|48|60679.20|0.02|0.06|A|F|1995-03-19|1995-03-09|1995-04-18|NONE|RAIL|ely express foxes. quickly unusu| +79662|47879|47880|5|50|91343.50|0.05|0.07|R|F|1995-03-17|1995-04-26|1995-03-23|TAKE BACK RETURN|REG AIR|kages for the final packages nag accor| +79662|687464|12491|6|13|18868.59|0.08|0.05|R|F|1995-05-07|1995-04-18|1995-05-13|DELIVER IN PERSON|SHIP|quests wake toward th| +79662|191663|4167|7|4|7018.64|0.09|0.03|R|F|1995-05-26|1995-04-08|1995-06-12|NONE|FOB|ajole furiously express, ironic pa| +79663|279813|29814|1|16|28684.80|0.01|0.00|A|F|1994-05-02|1994-04-10|1994-05-09|TAKE BACK RETURN|MAIL| regular packages | +79663|803585|41134|2|36|53587.44|0.09|0.00|A|F|1994-03-06|1994-03-11|1994-03-30|NONE|REG AIR| forges. ironic, regular theodolites| +79663|851307|1308|3|37|46555.62|0.00|0.00|A|F|1994-02-27|1994-03-24|1994-02-28|DELIVER IN PERSON|MAIL|telets. enticing, careful req| +79663|914636|39673|4|24|39614.16|0.03|0.01|R|F|1994-05-11|1994-03-09|1994-05-27|DELIVER IN PERSON|AIR|thely about the final packages. f| +79688|983531|46051|1|49|79110.01|0.03|0.02|N|O|1996-12-28|1997-01-22|1997-01-23|NONE|AIR| sleep quickly acros| +79688|196746|34256|2|14|25798.36|0.04|0.04|N|O|1997-01-13|1997-01-03|1997-01-24|TAKE BACK RETURN|TRUCK| requests amon| +79689|649433|11946|1|50|69120.00|0.10|0.00|A|F|1995-03-24|1995-03-09|1995-04-23|NONE|RAIL|eodolites cajole slyly e| +79689|6725|6726|2|36|58741.92|0.07|0.06|R|F|1994-12-31|1995-02-12|1995-01-09|NONE|AIR|egular deposits use slyly alo| +79689|18775|6276|3|20|33875.40|0.01|0.03|A|F|1995-02-14|1995-03-08|1995-03-08|COLLECT COD|MAIL|ong the quickly f| +79690|592274|42275|1|41|56016.25|0.05|0.00|R|F|1993-01-12|1992-12-26|1993-02-08|DELIVER IN PERSON|REG AIR|es was carefully accordi| +79691|948284|23321|1|34|45296.16|0.04|0.04|N|O|1998-09-05|1998-08-03|1998-09-14|DELIVER IN PERSON|MAIL|snooze. express, express packages haggle | +79691|792826|17857|2|33|63320.07|0.08|0.00|N|O|1998-08-05|1998-08-10|1998-09-01|DELIVER IN PERSON|MAIL|ter the special depend| +79691|15118|2619|3|41|42357.51|0.10|0.03|N|O|1998-07-05|1998-08-23|1998-07-19|TAKE BACK RETURN|MAIL|rs boost. carefully final courts| +79691|71809|9313|4|34|60547.20|0.02|0.08|N|O|1998-09-17|1998-09-05|1998-09-30|DELIVER IN PERSON|RAIL|after the packages integrate about the acco| +79691|877653|27654|5|25|40765.25|0.05|0.02|N|O|1998-09-20|1998-09-23|1998-09-25|COLLECT COD|AIR|ular deposits. deposits use above the fi| +79691|713398|13399|6|5|7056.80|0.08|0.01|N|O|1998-10-19|1998-09-18|1998-10-25|COLLECT COD|MAIL|riously final requests sleep quickly fluffi| +79691|76705|39207|7|35|58859.50|0.09|0.07|N|O|1998-09-25|1998-09-01|1998-10-11|COLLECT COD|TRUCK|ng dependencies? quickl| +79692|177765|2772|1|30|55282.80|0.08|0.01|N|O|1995-09-28|1995-10-25|1995-10-10|TAKE BACK RETURN|REG AIR|ilent ideas across the fluffily final | +79693|559611|22123|1|42|70164.78|0.06|0.06|A|F|1993-02-02|1993-03-23|1993-02-28|NONE|FOB|e express deposits. e| +79693|371440|21441|2|44|66502.92|0.10|0.03|R|F|1993-01-30|1993-03-02|1993-02-24|DELIVER IN PERSON|AIR|blithely ironic packages. regular, | +79693|784435|34436|3|15|22791.00|0.10|0.05|A|F|1993-03-02|1993-03-08|1993-03-29|DELIVER IN PERSON|AIR|epitaphs ha| +79693|996967|34525|4|33|68109.36|0.08|0.06|R|F|1993-01-24|1993-02-23|1993-02-05|NONE|SHIP| express patterns. fluffil| +79693|8348|33349|5|30|37690.20|0.01|0.05|R|F|1993-03-26|1993-02-06|1993-04-10|DELIVER IN PERSON|MAIL|ckly regular theodolites use slyly after th| +79693|298955|11461|6|50|97697.00|0.03|0.04|R|F|1993-04-20|1993-03-23|1993-05-17|NONE|AIR| blithely bold foxes. slyly express ac| +79693|529957|4978|7|28|55634.04|0.09|0.07|A|F|1993-02-11|1993-03-11|1993-02-15|COLLECT COD|AIR|sly bold deposits alongside of the| +79694|983221|33222|1|15|19562.70|0.09|0.05|A|F|1992-02-01|1992-03-22|1992-02-18|DELIVER IN PERSON|TRUCK| even theo| +79694|988219|25777|2|47|61436.99|0.08|0.03|R|F|1992-04-04|1992-03-17|1992-05-03|NONE|MAIL| the slyly | +79694|980970|6009|3|50|102546.50|0.10|0.05|R|F|1992-01-16|1992-03-30|1992-02-02|DELIVER IN PERSON|MAIL|ic requests. ironi| +79694|154078|41588|4|36|40754.52|0.09|0.08|A|F|1992-03-19|1992-03-23|1992-04-18|COLLECT COD|FOB|t the caref| +79695|986896|24454|1|18|35691.30|0.00|0.04|N|O|1998-07-16|1998-09-07|1998-07-30|COLLECT COD|MAIL|pinto beans according to the bold | +79695|749002|24031|2|37|38885.89|0.05|0.06|N|O|1998-07-12|1998-07-21|1998-07-22|TAKE BACK RETURN|RAIL|ole slyly across the | +79695|467727|30237|3|4|6778.80|0.05|0.01|N|O|1998-08-23|1998-08-04|1998-08-27|NONE|MAIL|accounts sleep. blithely final theodolit| +79695|81094|31095|4|6|6450.54|0.10|0.06|N|O|1998-08-07|1998-08-20|1998-08-25|TAKE BACK RETURN|TRUCK|ly blithely regular deposits. pendi| +79695|934189|9226|5|32|39140.48|0.04|0.01|N|O|1998-08-15|1998-07-20|1998-08-30|COLLECT COD|TRUCK| alongside of the carefully regular theo| +79720|506997|32018|1|46|92182.62|0.10|0.03|N|O|1997-05-05|1997-02-16|1997-05-29|NONE|MAIL|accounts. | +79721|857422|32457|1|23|31725.74|0.06|0.03|N|O|1997-08-06|1997-08-17|1997-08-31|TAKE BACK RETURN|SHIP| special requests hagg| +79721|685023|22563|2|39|39311.61|0.00|0.06|N|O|1997-10-24|1997-09-13|1997-11-18|NONE|AIR|ets haggle furiously ir| +79721|169530|7040|3|2|3199.06|0.06|0.08|N|O|1997-08-15|1997-09-13|1997-09-11|COLLECT COD|REG AIR|sits are across the unus| +79722|569165|44188|1|6|7404.84|0.07|0.01|R|F|1994-06-15|1994-06-26|1994-07-08|TAKE BACK RETURN|AIR| excuses us| +79722|950936|13456|2|18|35764.02|0.06|0.08|A|F|1994-05-27|1994-07-23|1994-06-03|COLLECT COD|SHIP|furiously pending braids. accounts sle| +79723|704600|42143|1|17|27277.69|0.02|0.03|R|F|1992-05-08|1992-04-29|1992-06-07|NONE|AIR|und the ideas print agai| +79723|211608|24113|2|34|51666.06|0.04|0.08|R|F|1992-03-14|1992-05-01|1992-03-20|NONE|FOB| pending accounts. quickly regular ideas | +79723|491121|3631|3|21|23354.10|0.04|0.01|R|F|1992-02-21|1992-04-15|1992-03-11|COLLECT COD|SHIP|gle blithely brav| +79723|254461|4462|4|1|1415.45|0.10|0.04|A|F|1992-05-25|1992-04-08|1992-06-13|DELIVER IN PERSON|TRUCK|ickly express platelets wa| +79723|717901|42930|5|18|34539.66|0.04|0.01|A|F|1992-03-20|1992-04-27|1992-04-16|COLLECT COD|AIR|he blithely regular package| +79724|942243|42244|1|15|19278.00|0.03|0.03|N|O|1995-10-18|1995-08-29|1995-11-14|TAKE BACK RETURN|RAIL|fully blithely regul| +79724|264898|14899|2|21|39120.48|0.08|0.06|N|O|1995-08-15|1995-09-22|1995-08-24|DELIVER IN PERSON|SHIP|usly silent platelets against the blithel| +79724|139230|14235|3|46|58384.58|0.06|0.07|N|O|1995-09-28|1995-08-27|1995-10-04|NONE|RAIL|he regular warhorses. exp| +79724|27394|2395|4|11|14535.29|0.07|0.03|N|O|1995-09-05|1995-09-09|1995-09-23|NONE|TRUCK|cial, final theodoli| +79724|402021|27038|5|23|21229.00|0.04|0.07|N|O|1995-10-05|1995-10-13|1995-11-04|COLLECT COD|AIR|ts. ironic ideas around the furio| +79725|776915|26916|1|35|69715.80|0.04|0.01|N|O|1996-08-29|1996-07-22|1996-09-20|COLLECT COD|REG AIR| special, final packages. quickly final ins| +79725|594427|6939|2|50|76070.00|0.04|0.08|N|O|1996-08-26|1996-07-08|1996-09-06|NONE|RAIL|riously fluf| +79725|528103|15634|3|48|54291.84|0.07|0.06|N|O|1996-09-07|1996-08-22|1996-10-05|DELIVER IN PERSON|REG AIR|nto beans | +79725|814165|14166|4|49|52876.88|0.09|0.01|N|O|1996-08-12|1996-07-31|1996-09-02|COLLECT COD|RAIL|bold sheaves cajole express, regular req| +79725|670831|45858|5|35|63063.00|0.10|0.07|N|O|1996-09-14|1996-07-11|1996-09-29|COLLECT COD|REG AIR|g to the packages| +79725|648561|11074|6|3|4528.59|0.07|0.04|N|O|1996-09-13|1996-07-19|1996-09-16|NONE|FOB|luffily regular deposits. slyly express | +79725|356834|31849|7|48|90759.36|0.02|0.08|N|O|1996-08-11|1996-08-16|1996-09-04|COLLECT COD|AIR| ironic deposit| +79726|300048|12555|1|16|16768.48|0.07|0.05|N|O|1998-08-17|1998-06-15|1998-09-12|NONE|TRUCK|e of the furiously busy ideas detect| +79726|905051|5052|2|19|20064.19|0.00|0.03|N|O|1998-07-14|1998-07-16|1998-08-04|COLLECT COD|RAIL|ending excuses mold quickly even depo| +79726|189886|14893|3|40|79035.20|0.07|0.02|N|O|1998-06-21|1998-05-25|1998-06-27|DELIVER IN PERSON|TRUCK|otes. quickly special d| +79726|410302|22811|4|28|33943.84|0.05|0.00|N|O|1998-07-13|1998-06-12|1998-08-03|DELIVER IN PERSON|AIR|s. special requests u| +79726|941306|41307|5|22|29639.72|0.03|0.08|N|O|1998-07-16|1998-07-15|1998-08-12|TAKE BACK RETURN|MAIL|pths wake furiously slyly even| +79727|392698|5206|1|31|55511.08|0.07|0.07|N|O|1995-09-19|1995-07-26|1995-10-14|NONE|REG AIR| beans. slyly bold packages integrate b| +79727|72350|34852|2|35|46282.25|0.08|0.07|N|O|1995-07-21|1995-08-25|1995-07-27|DELIVER IN PERSON|MAIL|nically slyly bold| +79727|977561|2600|3|20|32770.40|0.07|0.07|N|O|1995-08-01|1995-08-20|1995-08-26|COLLECT COD|MAIL|ronic tithes haggle slyly. pending in| +79727|856579|31614|4|40|61421.20|0.08|0.00|N|O|1995-07-03|1995-07-31|1995-07-15|NONE|TRUCK|eans. express| +79727|519349|6880|5|28|38312.96|0.09|0.07|N|O|1995-08-31|1995-08-23|1995-09-24|NONE|REG AIR|ully. bold pinto beans sleep. blithely spe| +79727|693755|18782|6|42|73446.24|0.05|0.06|N|O|1995-07-30|1995-07-20|1995-08-04|COLLECT COD|REG AIR|y carefully | +79752|822121|34638|1|2|2086.16|0.10|0.03|N|O|1998-04-08|1998-03-04|1998-04-14|DELIVER IN PERSON|RAIL|oss the regular, regular escapade| +79752|372282|47297|2|26|35211.02|0.08|0.01|N|O|1998-01-09|1998-02-09|1998-02-04|TAKE BACK RETURN|REG AIR|out the carefully even courts. regular | +79752|927718|40237|3|5|8728.35|0.10|0.02|N|O|1998-01-30|1998-02-28|1998-02-10|COLLECT COD|TRUCK|atelets cajole. always final r| +79752|143129|5632|4|1|1172.12|0.09|0.04|N|O|1998-04-11|1998-02-09|1998-05-02|NONE|AIR| slyly bravely pending instructions. blit| +79752|565457|40480|5|45|68509.35|0.04|0.04|N|O|1998-04-14|1998-04-04|1998-04-28|TAKE BACK RETURN|AIR|al warhorses. ironic, ironic re| +79752|629158|29159|6|14|15219.68|0.06|0.03|N|O|1998-01-31|1998-02-12|1998-02-01|DELIVER IN PERSON|REG AIR|bold asymptotes. | +79753|135529|35530|1|19|29725.88|0.04|0.01|N|F|1995-05-27|1995-05-31|1995-06-25|NONE|FOB|l, regular instructio| +79753|819607|19608|2|27|41217.12|0.07|0.00|N|O|1995-07-27|1995-06-16|1995-08-24|COLLECT COD|TRUCK|le slyly express platelets. regular pack| +79753|134494|9499|3|2|3056.98|0.10|0.04|N|F|1995-06-02|1995-06-23|1995-06-26|COLLECT COD|MAIL|onic packages wake. final packages cajo| +79754|54747|29750|1|28|47648.72|0.05|0.06|N|O|1995-11-19|1995-12-20|1995-11-20|TAKE BACK RETURN|FOB|special platelets haggle since| +79754|116244|16245|2|9|11342.16|0.03|0.03|N|O|1995-10-30|1995-11-17|1995-11-17|TAKE BACK RETURN|REG AIR|furiously. slyly ironic account| +79754|699188|11702|3|39|46298.85|0.08|0.05|N|O|1995-12-18|1995-12-15|1995-12-29|TAKE BACK RETURN|MAIL|s. silent, ironic deposits inte| +79754|250876|877|4|15|27402.90|0.02|0.03|N|O|1995-12-18|1995-11-25|1996-01-11|TAKE BACK RETURN|FOB| blithely even ideas. carefully special re| +79754|462935|25445|5|6|11387.46|0.02|0.05|N|O|1995-11-08|1996-01-03|1995-12-05|TAKE BACK RETURN|FOB|ermanent, ev| +79754|538495|13516|6|6|9200.82|0.03|0.02|N|O|1995-10-16|1995-12-08|1995-11-07|DELIVER IN PERSON|SHIP|odolites grow final accounts. slyly si| +79754|484992|22520|7|21|41516.37|0.04|0.04|N|O|1995-10-30|1995-12-15|1995-11-23|DELIVER IN PERSON|RAIL|anently requests. fluffily fin| +79755|253368|15874|1|29|38319.15|0.06|0.02|A|F|1992-05-29|1992-05-26|1992-06-05|COLLECT COD|TRUCK|ccounts doubt quickly bold reque| +79755|352614|15122|2|38|63330.80|0.10|0.04|R|F|1992-05-31|1992-05-27|1992-06-01|NONE|REG AIR|y bold deposits cajole slyly packages. | +79756|554387|4388|1|27|38916.72|0.08|0.00|A|F|1994-07-27|1994-09-03|1994-08-20|DELIVER IN PERSON|TRUCK| along the quickl| +79756|567200|4734|2|1|1267.18|0.00|0.05|A|F|1994-09-23|1994-08-02|1994-10-18|NONE|REG AIR|lithely pendi| +79756|919275|19276|3|16|20707.68|0.08|0.08|A|F|1994-07-13|1994-08-29|1994-07-27|TAKE BACK RETURN|REG AIR|s. carefully ironic asymptotes use f| +79756|241522|4027|4|46|67321.46|0.00|0.04|A|F|1994-08-16|1994-07-29|1994-08-18|DELIVER IN PERSON|RAIL| regular, e| +79756|253396|3397|5|16|21590.08|0.07|0.02|R|F|1994-09-21|1994-09-18|1994-10-16|TAKE BACK RETURN|SHIP|ests. foxes across the express re| +79756|810480|35513|6|21|29199.24|0.06|0.02|R|F|1994-09-06|1994-08-14|1994-09-23|COLLECT COD|SHIP|ily ironic depos| +79756|725604|13147|7|18|29332.26|0.04|0.00|R|F|1994-09-01|1994-08-23|1994-09-03|TAKE BACK RETURN|TRUCK|e idly. quickly id| +79757|210751|23256|1|27|44866.98|0.06|0.08|R|F|1994-08-16|1994-09-25|1994-08-29|TAKE BACK RETURN|MAIL|se. furiously even shea| +79758|580013|17547|1|46|50277.54|0.04|0.02|N|O|1996-04-08|1996-03-03|1996-05-01|DELIVER IN PERSON|TRUCK|eep slyly. regu| +79758|275435|25436|2|5|7052.10|0.02|0.02|N|O|1996-01-11|1996-01-29|1996-01-15|TAKE BACK RETURN|RAIL|ays. furio| +79758|226495|26496|3|35|49751.80|0.01|0.00|N|O|1996-01-26|1996-02-25|1996-01-28|TAKE BACK RETURN|SHIP| platelets wake. special the| +79758|691247|28787|4|5|6191.05|0.02|0.08|N|O|1996-02-06|1996-03-13|1996-02-13|TAKE BACK RETURN|TRUCK|packages haggle across the carefully | +79758|782933|7964|5|35|70556.50|0.03|0.02|N|O|1996-03-08|1996-01-26|1996-04-03|DELIVER IN PERSON|FOB| hang. final deposits was according to| +79759|504919|4920|1|13|25010.57|0.07|0.03|N|O|1998-06-29|1998-08-02|1998-07-16|DELIVER IN PERSON|RAIL|quests cajol| +79759|172557|10067|2|46|74959.30|0.03|0.03|N|O|1998-06-04|1998-07-19|1998-06-09|DELIVER IN PERSON|RAIL|ut the special accounts. furiousl| +79759|155547|18051|3|48|76921.92|0.10|0.03|N|O|1998-08-21|1998-08-23|1998-09-04|DELIVER IN PERSON|REG AIR|s wake quickly above the furiously ironic | +79784|17498|4999|1|44|62281.56|0.05|0.08|N|O|1998-02-28|1998-03-22|1998-03-24|NONE|MAIL|s accounts are | +79784|84528|34529|2|39|58988.28|0.04|0.02|N|O|1998-05-07|1998-04-11|1998-06-01|COLLECT COD|TRUCK|packages. unusual deposi| +79784|659500|47040|3|10|14594.70|0.02|0.07|N|O|1998-05-14|1998-04-06|1998-05-27|DELIVER IN PERSON|REG AIR|roughout the| +79784|214597|2110|4|30|45347.40|0.01|0.05|N|O|1998-04-10|1998-04-06|1998-04-17|DELIVER IN PERSON|REG AIR|theodolites. slyly special deposits sh| +79784|725971|25972|5|11|21966.34|0.10|0.02|N|O|1998-04-10|1998-03-29|1998-04-19|COLLECT COD|RAIL|ecial depen| +79784|382931|20453|6|9|18125.28|0.02|0.07|N|O|1998-02-27|1998-03-30|1998-03-22|NONE|RAIL|reach deposits. carefully pending req| +79784|908894|46449|7|27|51376.95|0.00|0.00|N|O|1998-03-04|1998-03-21|1998-03-09|TAKE BACK RETURN|AIR|nstructions nag furio| +79785|767873|17874|1|16|31053.44|0.06|0.03|A|F|1993-09-21|1993-11-28|1993-10-14|NONE|SHIP|s the furiously even instru| +79785|633893|8918|2|19|34710.34|0.01|0.02|R|F|1993-12-15|1993-10-11|1993-12-24|DELIVER IN PERSON|TRUCK|totes use | +79785|826914|26915|3|40|73634.80|0.10|0.04|A|F|1993-11-26|1993-10-20|1993-12-12|NONE|AIR|counts. pending,| +79785|943477|18514|4|45|68419.35|0.05|0.00|R|F|1993-11-07|1993-11-23|1993-11-13|NONE|FOB| slyly according to the blithely special| +79785|15992|28493|5|30|57239.70|0.08|0.01|R|F|1993-10-25|1993-11-17|1993-11-14|COLLECT COD|SHIP|packages. packages | +79786|497257|9767|1|22|27593.06|0.04|0.00|N|O|1995-09-19|1995-11-07|1995-10-16|COLLECT COD|FOB|riously. pending excuses promise. furiousl| +79786|386137|11152|2|39|47701.68|0.05|0.08|N|O|1995-11-17|1995-09-28|1995-11-23|COLLECT COD|FOB|manently bold account| +79787|734656|9685|1|19|32121.78|0.05|0.00|N|O|1996-11-19|1997-01-09|1996-11-30|TAKE BACK RETURN|FOB|uctions use slyly b| +79787|358202|20710|2|1|1260.19|0.09|0.00|N|O|1997-02-17|1997-01-14|1997-02-24|COLLECT COD|REG AIR|rious deposits haggle slyly.| +79787|297373|9879|3|25|34259.00|0.03|0.06|N|O|1997-01-24|1996-12-01|1997-02-19|DELIVER IN PERSON|FOB| the furiously unusual packages| +79787|934781|9818|4|50|90787.00|0.08|0.07|N|O|1996-12-10|1997-01-22|1997-01-01|DELIVER IN PERSON|REG AIR|eposits. quickly ironic excuses| +79788|166266|3776|1|26|34638.76|0.02|0.01|R|F|1993-06-24|1993-06-20|1993-06-25|COLLECT COD|SHIP|, unusual gif| +79788|424961|49978|2|33|62236.02|0.09|0.04|R|F|1993-07-23|1993-08-09|1993-07-24|COLLECT COD|TRUCK|ter the quickly even theodolites. | +79788|310198|47717|3|25|30204.50|0.10|0.07|A|F|1993-08-26|1993-07-14|1993-09-04|DELIVER IN PERSON|REG AIR|y against the carefully even pinto bea| +79788|482413|44923|4|31|43257.09|0.00|0.08|R|F|1993-07-15|1993-08-07|1993-07-16|TAKE BACK RETURN|AIR|uffily. pending mult| +79788|905402|30439|5|32|45035.52|0.08|0.04|R|F|1993-07-19|1993-08-08|1993-07-21|NONE|AIR|its boost across the sometimes| +79789|336351|23870|1|19|26359.46|0.06|0.00|N|O|1998-06-08|1998-05-26|1998-06-18|NONE|TRUCK|cial accounts haggle| +79789|43297|5798|2|20|24805.80|0.00|0.01|N|O|1998-06-30|1998-06-26|1998-07-27|NONE|MAIL|unts: blithely ruthless reque| +79789|682462|44976|3|23|33221.89|0.09|0.08|N|O|1998-06-01|1998-06-26|1998-06-13|DELIVER IN PERSON|REG AIR|xcuses boost b| +79789|138086|13091|4|25|28102.00|0.02|0.01|N|O|1998-08-09|1998-06-07|1998-08-20|NONE|TRUCK| express depo| +79789|795015|32561|5|37|41069.26|0.01|0.01|N|O|1998-08-04|1998-06-09|1998-08-22|TAKE BACK RETURN|REG AIR|cajole across the perma| +79789|809118|34151|6|43|44164.01|0.07|0.07|N|O|1998-08-12|1998-07-02|1998-08-17|TAKE BACK RETURN|MAIL|ld, regular deposits after the slyly specia| +79789|833677|46194|7|21|33823.23|0.06|0.06|N|O|1998-07-11|1998-05-27|1998-07-13|COLLECT COD|MAIL|ously even | +79790|600414|415|1|1|1314.38|0.04|0.02|A|F|1992-08-29|1992-08-14|1992-09-16|COLLECT COD|RAIL|ual, regular asymptotes. do| +79790|157508|20012|2|19|29744.50|0.06|0.02|A|F|1992-07-13|1992-08-26|1992-08-04|NONE|REG AIR|eas cajole quickly carefu| +79790|231210|31211|3|9|10270.80|0.06|0.06|A|F|1992-08-28|1992-09-26|1992-09-15|COLLECT COD|FOB|against the ca| +79790|935020|35021|4|50|52749.00|0.10|0.08|R|F|1992-10-12|1992-09-29|1992-11-09|DELIVER IN PERSON|RAIL|efully alongside of th| +79790|878498|41016|5|22|32481.90|0.05|0.01|A|F|1992-09-10|1992-09-11|1992-09-30|DELIVER IN PERSON|SHIP|ully ironic packages at the carefully spec| +79790|910463|35500|6|19|27994.98|0.04|0.06|A|F|1992-07-19|1992-08-10|1992-07-27|NONE|SHIP|quests. fi| +79791|254648|17154|1|35|56092.05|0.04|0.06|N|O|1996-03-15|1996-03-17|1996-03-31|NONE|MAIL|lms boost slyly fluffily ironic courts! u| +79791|856823|19341|2|8|14238.24|0.07|0.00|N|O|1996-02-18|1996-01-30|1996-03-02|TAKE BACK RETURN|FOB|se carefully asymptotes| +79791|620891|20892|3|12|21742.32|0.01|0.04|N|O|1996-03-23|1996-02-02|1996-04-20|DELIVER IN PERSON|SHIP|might haggle-- accounts use slyly. q| +79791|307774|20281|4|2|3563.52|0.03|0.06|N|O|1996-04-27|1996-03-15|1996-05-04|COLLECT COD|MAIL|er the fluffily pending dependenci| +79791|750653|38199|5|41|69848.42|0.08|0.00|N|O|1996-03-11|1996-03-27|1996-03-12|COLLECT COD|MAIL|ts. ironic instructions are fluffily.| +79791|220807|20808|6|37|63928.23|0.01|0.03|N|O|1996-04-27|1996-02-06|1996-05-03|NONE|RAIL|oxes alongside of the busily regular dep| +79816|211619|11620|1|44|67346.40|0.10|0.01|N|O|1998-01-01|1998-02-02|1998-01-11|COLLECT COD|REG AIR| carefully unusual, pending deposits. ca| +79817|650535|38075|1|13|19311.50|0.08|0.03|R|F|1994-06-18|1994-06-08|1994-06-25|NONE|REG AIR|s haggle furiously. furiously final orbits | +79817|528798|28799|2|21|38362.17|0.03|0.04|R|F|1994-05-11|1994-05-10|1994-05-22|DELIVER IN PERSON|MAIL| blithely final packag| +79817|505102|5103|3|15|16606.20|0.09|0.03|R|F|1994-05-21|1994-05-10|1994-05-25|DELIVER IN PERSON|MAIL|nst the quickly express request| +79817|240306|2811|4|6|7477.74|0.02|0.00|R|F|1994-05-06|1994-06-04|1994-05-08|DELIVER IN PERSON|MAIL|ven packages | +79817|811592|36625|5|26|39092.30|0.01|0.08|R|F|1994-04-18|1994-06-08|1994-05-05|DELIVER IN PERSON|AIR|ructions use ironic escapades. final, f| +79817|420100|7625|6|20|20401.60|0.03|0.03|A|F|1994-06-24|1994-05-16|1994-07-21|NONE|SHIP|nts use about the regular | +79817|606088|18601|7|39|38767.95|0.00|0.00|R|F|1994-04-11|1994-06-01|1994-04-17|TAKE BACK RETURN|AIR|ctions are quickly slyly bo| +79818|510078|47609|1|46|50050.30|0.01|0.06|R|F|1994-04-19|1994-05-11|1994-05-08|TAKE BACK RETURN|TRUCK|long the blithely ironic packages. furious| +79818|873052|48087|2|6|6150.06|0.09|0.06|R|F|1994-05-24|1994-05-22|1994-05-27|DELIVER IN PERSON|TRUCK|the pending requests wake abou| +79818|377984|2999|3|9|18557.73|0.10|0.06|R|F|1994-03-31|1994-04-20|1994-04-30|DELIVER IN PERSON|SHIP|r pinto beans. even,| +79818|760788|10789|4|16|29580.00|0.07|0.07|R|F|1994-04-13|1994-05-17|1994-04-14|COLLECT COD|RAIL|egular deposits again| +79819|134788|22295|1|36|65620.08|0.09|0.08|A|F|1994-05-19|1994-04-30|1994-06-06|DELIVER IN PERSON|MAIL|long the carefully bold request| +79819|381401|18923|2|38|56330.82|0.00|0.00|R|F|1994-03-06|1994-04-21|1994-03-30|DELIVER IN PERSON|AIR|old sentiments. slyly final re| +79819|205469|17974|3|43|59101.35|0.02|0.03|A|F|1994-03-01|1994-04-21|1994-03-05|COLLECT COD|RAIL|ithely bold| +79819|311751|49270|4|26|45831.24|0.08|0.00|R|F|1994-04-20|1994-03-25|1994-05-03|NONE|AIR|y quickly even| +79819|589897|2409|5|17|33776.79|0.02|0.05|R|F|1994-05-01|1994-04-27|1994-05-25|DELIVER IN PERSON|MAIL|ckages wake quickly f| +79820|504580|29601|1|10|15845.60|0.10|0.01|A|F|1995-04-21|1995-02-01|1995-05-15|NONE|REG AIR|uests are furiously fur| +79820|466531|41550|2|26|38935.26|0.00|0.00|A|F|1995-04-17|1995-03-22|1995-05-01|COLLECT COD|MAIL|about the f| +79820|979581|17139|3|2|3321.08|0.10|0.08|R|F|1995-03-06|1995-03-03|1995-04-05|COLLECT COD|REG AIR| the express re| +79820|806837|19354|4|11|19181.69|0.03|0.08|R|F|1995-02-21|1995-03-03|1995-03-06|TAKE BACK RETURN|RAIL|elets affix furiously ir| +79820|499745|49746|5|21|36639.12|0.03|0.05|A|F|1995-04-02|1995-03-09|1995-04-29|DELIVER IN PERSON|MAIL|foxes haggle fluffily fluffily unusu| +79820|200275|276|6|44|51711.44|0.02|0.07|R|F|1995-01-07|1995-02-07|1995-01-16|TAKE BACK RETURN|FOB|egular foxes are. even a| +79820|20341|45342|7|18|22704.12|0.00|0.00|R|F|1994-12-30|1995-01-27|1995-01-24|NONE|RAIL|ular pinto be| +79821|869842|19843|1|27|48918.60|0.02|0.06|R|F|1992-08-07|1992-05-30|1992-08-23|DELIVER IN PERSON|AIR|ccording to t| +79821|433348|33349|2|2|2562.64|0.10|0.01|A|F|1992-07-26|1992-06-23|1992-08-07|NONE|TRUCK| according to the blithely expr| +79821|273822|36328|3|31|55670.11|0.02|0.05|A|F|1992-05-03|1992-07-23|1992-05-16|COLLECT COD|TRUCK|ironic pinto beans. pending, f| +79821|122103|22104|4|23|25877.30|0.05|0.03|A|F|1992-04-25|1992-06-08|1992-05-11|COLLECT COD|RAIL|g theodolites. silent, i| +79821|181821|44325|5|11|20931.02|0.00|0.03|A|F|1992-05-13|1992-06-13|1992-05-28|COLLECT COD|RAIL| promise against the instructions.| +79821|852633|15151|6|31|49153.29|0.02|0.07|R|F|1992-05-12|1992-07-10|1992-05-15|DELIVER IN PERSON|REG AIR|times ruthles| +79821|187246|24756|7|23|30664.52|0.00|0.04|R|F|1992-06-14|1992-06-05|1992-07-05|TAKE BACK RETURN|MAIL| the requests.| +79822|37246|12247|1|29|34313.96|0.00|0.01|R|F|1992-03-31|1992-05-03|1992-04-02|NONE|TRUCK|y final warthog| +79822|985399|35400|2|9|13359.15|0.10|0.06|A|F|1992-05-07|1992-04-07|1992-05-25|COLLECT COD|SHIP|ve the slyly final pa| +79822|599058|11570|3|41|47438.23|0.00|0.06|R|F|1992-06-03|1992-04-11|1992-06-13|COLLECT COD|SHIP|en deposits. steal| +79822|363983|38998|4|44|90066.68|0.00|0.06|A|F|1992-04-01|1992-05-05|1992-04-04|DELIVER IN PERSON|FOB|ly after the special accounts; slyly entic| +79822|445484|45485|5|39|55748.94|0.06|0.02|A|F|1992-06-16|1992-05-17|1992-06-24|TAKE BACK RETURN|REG AIR|e carefully furiously quick dependencie| +79822|239054|39055|6|16|15888.64|0.08|0.07|A|F|1992-04-25|1992-04-09|1992-05-25|DELIVER IN PERSON|AIR| haggle fluffily blithely thin foxes| +79823|75457|460|1|16|22919.20|0.09|0.04|A|F|1993-03-23|1993-04-15|1993-03-28|DELIVER IN PERSON|TRUCK|ugh the sometimes pending request| +79823|197327|22334|2|21|29910.72|0.04|0.06|R|F|1993-05-06|1993-04-20|1993-06-02|DELIVER IN PERSON|FOB|y regular accounts | +79823|467340|4868|3|33|43141.56|0.02|0.08|A|F|1993-02-22|1993-04-28|1993-03-17|DELIVER IN PERSON|FOB|ounts. even | +79823|576551|39063|4|5|8137.65|0.07|0.00|A|F|1993-03-19|1993-04-26|1993-03-22|NONE|SHIP|press excuses are about the pac| +79823|89236|26740|5|17|20828.91|0.06|0.01|R|F|1993-06-09|1993-03-28|1993-07-05|COLLECT COD|TRUCK|re alongside of the regular accounts.| +79823|782943|45459|6|17|34440.47|0.09|0.08|R|F|1993-03-12|1993-04-04|1993-03-21|TAKE BACK RETURN|SHIP|g requests. express, bold instruct| +79823|916670|4225|7|16|26986.08|0.08|0.04|A|F|1993-06-11|1993-05-18|1993-07-02|COLLECT COD|FOB|ss the ironically regular depen| +79848|459380|46908|1|45|60271.20|0.08|0.02|N|O|1996-11-11|1996-10-22|1996-11-14|DELIVER IN PERSON|RAIL| special deposits alongside of the sly| +79848|795107|32653|2|32|38466.24|0.05|0.05|N|O|1996-11-04|1996-09-20|1996-11-14|DELIVER IN PERSON|FOB|osits alongside of the theodolites are bli| +79848|362347|12348|3|4|5637.32|0.03|0.05|N|O|1996-11-07|1996-09-09|1996-12-04|TAKE BACK RETURN|TRUCK|ages haggl| +79848|954650|42208|4|23|39206.03|0.10|0.05|N|O|1996-11-12|1996-10-08|1996-11-19|COLLECT COD|TRUCK|the final, ironic foxes. fluffi| +79848|788263|38264|5|21|28375.83|0.07|0.03|N|O|1996-12-02|1996-09-22|1996-12-19|DELIVER IN PERSON|AIR|theodolites. ideas nag slyly express ac| +79849|794098|19129|1|4|4768.24|0.07|0.04|N|O|1995-10-16|1995-11-08|1995-10-29|TAKE BACK RETURN|AIR|s are iron| +79849|400077|78|2|8|7816.40|0.10|0.00|N|O|1996-01-09|1995-11-07|1996-02-02|TAKE BACK RETURN|FOB|e blithely pending | +79850|521329|46350|1|30|40509.00|0.03|0.02|R|F|1994-06-09|1994-06-24|1994-06-26|TAKE BACK RETURN|REG AIR|s. final requests cajole blithely carefu| +79850|966281|3839|2|5|6736.20|0.05|0.08|A|F|1994-07-18|1994-08-03|1994-08-05|COLLECT COD|TRUCK|s. pending theodolites boost. final| +79850|270360|7876|3|24|31928.40|0.00|0.01|R|F|1994-09-17|1994-06-26|1994-09-19|NONE|SHIP|l theodolites. blithely express deposits a| +79850|930160|17715|4|41|48794.92|0.02|0.03|R|F|1994-06-26|1994-07-11|1994-07-09|NONE|RAIL| quickly among the furiously even ac| +79850|189532|39533|5|17|27566.01|0.09|0.02|A|F|1994-05-24|1994-06-23|1994-05-28|TAKE BACK RETURN|AIR| nag. ironic packages play qui| +79850|463749|38768|6|1|1712.72|0.02|0.05|A|F|1994-09-05|1994-06-26|1994-09-27|DELIVER IN PERSON|RAIL|en theodolites h| +79850|214497|2010|7|37|52224.76|0.03|0.04|R|F|1994-08-29|1994-06-26|1994-09-12|TAKE BACK RETURN|REG AIR| fluffily bol| +79851|35976|48477|1|42|80302.74|0.07|0.08|R|F|1994-12-29|1995-01-07|1995-01-19|TAKE BACK RETURN|REG AIR|e ironic accounts. furiously reg| +79851|639110|14135|2|10|10490.80|0.09|0.04|R|F|1994-12-30|1994-11-19|1995-01-06|COLLECT COD|MAIL|thely even | +79851|518040|18041|3|8|8464.16|0.00|0.06|A|F|1994-10-28|1994-11-19|1994-11-18|COLLECT COD|FOB|ully regular accounts above th| +79851|692986|42987|4|16|31663.20|0.05|0.08|R|F|1994-12-08|1994-12-31|1994-12-09|NONE|TRUCK|egular accounts boost at th| +79852|684490|47004|1|19|28014.74|0.09|0.03|R|F|1994-05-06|1994-04-08|1994-05-16|DELIVER IN PERSON|MAIL|boost furiously carefully even braids. spe| +79852|222769|35274|2|6|10150.50|0.04|0.00|R|F|1994-03-11|1994-04-13|1994-04-10|TAKE BACK RETURN|REG AIR|dinos haggle. ideas among| +79852|68460|18461|3|42|59995.32|0.07|0.06|R|F|1994-03-18|1994-03-10|1994-03-26|COLLECT COD|MAIL|pecial deposits are furiously; quic| +79852|592652|30186|4|3|5233.89|0.07|0.07|R|F|1994-03-28|1994-04-10|1994-04-10|NONE|RAIL|platelets impress | +79853|615642|40667|1|33|51401.13|0.06|0.07|A|F|1994-07-08|1994-06-05|1994-08-01|DELIVER IN PERSON|AIR|inst the slyly final deposits. care| +79853|94371|44372|2|49|66903.13|0.01|0.06|R|F|1994-05-14|1994-05-18|1994-05-30|COLLECT COD|TRUCK|unts thrash slyly ironic reque| +79853|89928|2430|3|15|28768.80|0.10|0.01|R|F|1994-04-30|1994-07-03|1994-05-16|NONE|FOB|arefully against the regular, final ideas. | +79853|419119|6644|4|18|18685.62|0.05|0.04|A|F|1994-06-17|1994-06-05|1994-07-13|TAKE BACK RETURN|RAIL|ing sentiments sleep slyly af| +79853|116241|41246|5|3|3771.72|0.01|0.07|R|F|1994-06-09|1994-05-12|1994-06-22|DELIVER IN PERSON|RAIL|ns are. sl| +79853|651972|14486|6|25|48098.50|0.09|0.07|A|F|1994-06-14|1994-05-22|1994-06-21|COLLECT COD|MAIL|y final th| +79854|896026|21061|1|44|44967.12|0.07|0.05|A|F|1992-06-18|1992-09-04|1992-06-30|DELIVER IN PERSON|AIR|kages affix evenly. slyly bold fo| +79854|502250|2251|2|10|12522.30|0.09|0.00|R|F|1992-10-12|1992-08-30|1992-11-02|NONE|SHIP|y bold ideas| +79854|300249|37768|3|50|62461.50|0.07|0.03|R|F|1992-08-30|1992-08-03|1992-09-20|COLLECT COD|RAIL|ss theodolite| +79854|272597|35103|4|36|56504.88|0.01|0.03|R|F|1992-06-26|1992-07-16|1992-07-02|TAKE BACK RETURN|REG AIR|ic, bold deposit| +79854|532444|7465|5|42|62009.64|0.02|0.03|R|F|1992-07-12|1992-07-29|1992-08-11|DELIVER IN PERSON|SHIP|s wake. even foxes haggl| +79854|779547|42063|6|2|3253.02|0.00|0.05|R|F|1992-10-11|1992-07-26|1992-10-16|COLLECT COD|RAIL|counts. slyly ironic deposits| +79854|837370|12403|7|5|6536.65|0.08|0.00|R|F|1992-08-17|1992-08-26|1992-09-06|COLLECT COD|AIR|old accounts wake along the furious| +79855|668281|43308|1|30|37477.50|0.05|0.08|A|F|1995-02-20|1995-02-01|1995-02-27|NONE|TRUCK| slyly furiou| +79855|792459|30005|2|27|41888.34|0.02|0.05|R|F|1995-01-03|1995-01-23|1995-01-21|COLLECT COD|REG AIR|aring pinto beans cajole furiou| +79880|209161|21666|1|14|14982.10|0.06|0.02|N|O|1997-01-30|1996-12-19|1997-02-12|COLLECT COD|AIR|furiously close deposits| +79881|482196|44706|1|45|53017.65|0.08|0.06|R|F|1992-06-26|1992-08-18|1992-06-30|NONE|AIR| ideas are across the| +79882|817363|42396|1|12|15363.84|0.00|0.02|A|F|1993-11-12|1994-01-27|1993-12-03|DELIVER IN PERSON|RAIL|ular theodolites was furiously according to| +79882|404452|16961|2|45|61039.35|0.07|0.06|R|F|1994-01-02|1994-01-06|1994-01-22|COLLECT COD|SHIP|ithely ironic requests. slyly fin| +79882|613682|26195|3|5|7978.25|0.10|0.03|A|F|1993-11-08|1993-12-25|1993-11-16|NONE|MAIL|the furiously even packages ca| +79882|151508|1509|4|44|68618.00|0.10|0.00|A|F|1993-12-19|1994-01-14|1994-01-01|DELIVER IN PERSON|MAIL| nag. regul| +79882|390547|28069|5|11|18012.83|0.09|0.03|R|F|1994-01-08|1994-01-12|1994-01-31|COLLECT COD|TRUCK|usly against the | +79882|918461|6016|6|32|47341.44|0.05|0.02|A|F|1994-02-01|1994-01-01|1994-03-03|DELIVER IN PERSON|TRUCK|y. furiously bold theodolites wak| +79882|559847|34870|7|39|74365.98|0.03|0.03|A|F|1993-11-29|1994-01-14|1993-12-02|TAKE BACK RETURN|MAIL| pinto bea| +79883|337515|25034|1|27|41917.50|0.08|0.06|A|F|1992-08-15|1992-10-19|1992-08-23|DELIVER IN PERSON|SHIP|. finally iro| +79883|610879|48416|2|8|14318.72|0.10|0.03|R|F|1992-10-06|1992-09-21|1992-10-07|TAKE BACK RETURN|AIR|longside of the fluffily regular foxes dete| +79883|38831|13832|3|23|40706.09|0.06|0.02|A|F|1992-09-08|1992-09-08|1992-09-12|COLLECT COD|AIR|ar ideas. bl| +79883|631901|31902|4|31|56818.97|0.03|0.04|R|F|1992-11-10|1992-10-15|1992-11-22|DELIVER IN PERSON|TRUCK|ly among the special foxe| +79884|114409|39414|1|19|27044.60|0.06|0.05|N|O|1998-08-10|1998-05-22|1998-08-13|COLLECT COD|AIR|d to cajole furiously. bli| +79884|868999|44034|2|2|3935.90|0.10|0.04|N|O|1998-06-24|1998-06-27|1998-07-03|COLLECT COD|MAIL|n frets caj| +79884|256639|44155|3|40|63824.80|0.09|0.02|N|O|1998-06-12|1998-06-13|1998-06-14|DELIVER IN PERSON|MAIL|lyly express ideas alongside of | +79884|329766|42273|4|15|26936.25|0.08|0.00|N|O|1998-07-01|1998-07-14|1998-07-27|DELIVER IN PERSON|SHIP|ly bold asym| +79884|374663|37171|5|3|5212.95|0.08|0.01|N|O|1998-06-06|1998-07-07|1998-06-09|NONE|RAIL|he never ironic pinto beans. | +79884|956904|19424|6|7|13726.02|0.02|0.03|N|O|1998-08-02|1998-06-27|1998-08-23|COLLECT COD|AIR|e evenly. slyly | +79885|860254|22772|1|17|20641.57|0.02|0.02|R|F|1993-09-14|1993-09-04|1993-10-14|DELIVER IN PERSON|AIR|t the carefully regular instru| +79885|278301|40807|2|37|47333.73|0.01|0.08|R|F|1993-09-14|1993-08-25|1993-09-24|NONE|FOB|fully final deposits-- slyly even deposits | +79885|400670|25687|3|13|20418.45|0.09|0.02|R|F|1993-07-25|1993-08-30|1993-08-19|DELIVER IN PERSON|MAIL| silent excus| +79885|51637|39141|4|41|65133.83|0.04|0.08|R|F|1993-07-27|1993-09-03|1993-08-20|COLLECT COD|AIR|e carefully close tithes. dependenci| +79885|848197|48198|5|47|53822.05|0.01|0.04|R|F|1993-07-28|1993-09-06|1993-08-01|COLLECT COD|AIR| pending accounts.| +79885|631813|6838|6|11|19192.58|0.05|0.06|A|F|1993-10-19|1993-09-25|1993-11-12|NONE|SHIP|e blithely regular packages. sl| +79886|654790|29817|1|31|54087.56|0.05|0.06|R|F|1994-11-20|1995-01-15|1994-12-01|NONE|REG AIR|waters. furi| +79886|50731|25734|2|11|18499.03|0.00|0.02|R|F|1994-12-25|1994-12-09|1995-01-21|NONE|MAIL|xcuses cajole quickly| +79886|631222|31223|3|27|31136.13|0.07|0.02|R|F|1994-11-19|1994-12-27|1994-12-14|DELIVER IN PERSON|MAIL|odolites must have to | +79886|948032|10551|4|15|16199.85|0.08|0.00|A|F|1995-02-03|1995-01-14|1995-02-28|NONE|RAIL| express atta| +79886|568786|18787|5|25|46369.00|0.09|0.03|A|F|1994-11-10|1995-01-19|1994-12-02|NONE|AIR|packages. furiously regular requests alon| +79887|687102|49616|1|34|37028.38|0.06|0.07|N|O|1995-10-17|1995-08-31|1995-11-01|TAKE BACK RETURN|FOB|iresias. car| +79887|112789|296|2|4|7207.12|0.04|0.02|N|O|1995-11-17|1995-10-10|1995-11-29|TAKE BACK RETURN|AIR|e slyly regular de| +79887|643620|43621|3|30|46907.70|0.08|0.06|N|O|1995-08-05|1995-10-15|1995-08-24|TAKE BACK RETURN|RAIL|g, regular excuses was carefully| +79887|304546|17053|4|29|44965.37|0.06|0.00|N|O|1995-09-08|1995-09-11|1995-09-12|NONE|TRUCK|ests dazzle after the| +79887|496790|21809|5|15|26801.55|0.05|0.07|N|O|1995-10-13|1995-09-12|1995-10-18|COLLECT COD|TRUCK|er the slyly ironic reques| +79887|544295|44296|6|34|45535.18|0.06|0.04|N|O|1995-11-23|1995-09-28|1995-12-18|COLLECT COD|REG AIR|re slyly alongside of the slyly b| +79912|270901|33407|1|16|29950.24|0.00|0.05|A|F|1992-12-07|1992-12-29|1992-12-24|DELIVER IN PERSON|MAIL|posits are| +79912|24033|49034|2|50|47851.50|0.10|0.00|R|F|1992-11-29|1992-11-15|1992-12-08|NONE|MAIL|st carefully above the quickly| +79912|917079|29598|3|49|53705.47|0.07|0.03|A|F|1992-11-08|1992-11-23|1992-12-03|COLLECT COD|SHIP|fluffily. ideas s| +79912|334689|22208|4|45|77565.15|0.04|0.01|A|F|1993-01-05|1992-11-17|1993-02-01|TAKE BACK RETURN|FOB|ongside of| +79912|111235|11236|5|29|36140.67|0.03|0.06|R|F|1992-12-25|1992-12-20|1993-01-04|TAKE BACK RETURN|REG AIR|quickly ir| +79912|525789|13320|6|40|72590.40|0.07|0.07|R|F|1993-01-21|1992-11-19|1993-02-13|TAKE BACK RETURN|SHIP| to wake. furiously regul| +79913|150984|13488|1|26|52909.48|0.10|0.06|R|F|1995-01-28|1995-01-28|1995-01-31|COLLECT COD|SHIP|lar instructions haggle sly| +79913|587345|24879|2|26|37240.32|0.07|0.04|R|F|1994-12-21|1995-01-03|1994-12-31|NONE|TRUCK|ts. even, final deposits sleep sl| +79913|504366|29387|3|11|15073.74|0.06|0.03|A|F|1995-02-11|1995-02-12|1995-02-17|TAKE BACK RETURN|MAIL|carefully unusual accoun| +79913|870573|20574|4|37|57110.61|0.01|0.07|A|F|1995-01-22|1995-02-12|1995-02-13|DELIVER IN PERSON|AIR|oubt about t| +79913|706676|44219|5|25|42066.00|0.09|0.04|A|F|1994-12-04|1995-02-06|1994-12-19|NONE|FOB|long the ironic| +79913|96264|33768|6|28|35287.28|0.05|0.06|R|F|1995-01-29|1995-01-21|1995-02-10|DELIVER IN PERSON|MAIL|carefully special instructions. b| +79913|899580|49581|7|41|64761.14|0.03|0.05|R|F|1995-03-09|1995-01-01|1995-03-13|NONE|RAIL| the carefully bold ac| +79914|236003|36004|1|34|31925.66|0.05|0.00|N|O|1997-11-28|1997-11-05|1997-12-12|COLLECT COD|AIR|lyly final gifts mold | +79914|499877|12387|2|2|3753.70|0.07|0.01|N|O|1997-12-01|1997-10-21|1997-12-29|COLLECT COD|FOB| special deposits must have to nod | +79914|421164|21165|3|13|14106.82|0.06|0.03|N|O|1997-10-22|1997-10-15|1997-10-26|NONE|AIR|ts cajole evenly. ironi| +79914|498483|36011|4|35|51851.10|0.09|0.08|N|O|1998-01-09|1997-11-17|1998-02-05|TAKE BACK RETURN|AIR|equests. dependencies are. r| +79914|992122|42123|5|30|36422.40|0.10|0.00|N|O|1998-01-03|1997-12-09|1998-01-19|NONE|FOB|ly. requests are according to the fl| +79914|581284|18818|6|18|24574.68|0.05|0.08|N|O|1997-10-07|1997-11-02|1997-11-03|DELIVER IN PERSON|MAIL|ar ideas: carefully even pack| +79914|632783|45296|7|12|20589.00|0.09|0.04|N|O|1997-12-09|1997-11-09|1998-01-08|COLLECT COD|TRUCK|lthily? carefull| +79915|170408|32912|1|26|38438.40|0.10|0.02|R|F|1994-06-25|1994-06-16|1994-06-29|TAKE BACK RETURN|REG AIR|larly final accounts after the care| +79915|32564|20065|2|37|55372.72|0.02|0.03|R|F|1994-07-10|1994-07-11|1994-07-11|COLLECT COD|MAIL| even foxes. quickly regular asym| +79915|293338|30854|3|21|27957.72|0.02|0.08|R|F|1994-06-08|1994-07-29|1994-07-07|COLLECT COD|FOB|ly bold dependenci| +79915|128330|15837|4|7|9508.31|0.08|0.05|A|F|1994-07-14|1994-07-03|1994-08-01|TAKE BACK RETURN|FOB|ns. slyly final f| +79916|400249|250|1|32|36775.04|0.09|0.07|R|F|1994-01-04|1994-02-19|1994-01-16|TAKE BACK RETURN|REG AIR|y ironic package| +79916|973288|23289|2|24|32669.76|0.07|0.01|R|F|1993-12-15|1994-01-17|1993-12-29|TAKE BACK RETURN|AIR|dolites. even dependencies are bu| +79916|47231|22232|3|16|18851.68|0.03|0.00|R|F|1993-12-03|1994-02-25|1993-12-07|NONE|MAIL|ckly final | +79916|799497|12013|4|32|51086.72|0.02|0.00|R|F|1994-02-24|1994-01-04|1994-03-24|NONE|AIR|requests. furiously silent deposits ca| +79916|136177|36178|5|49|59445.33|0.04|0.04|R|F|1994-04-01|1994-01-12|1994-04-18|DELIVER IN PERSON|AIR|ages along the regular i| +79916|711628|11629|6|7|11477.13|0.04|0.02|A|F|1994-04-02|1994-02-23|1994-04-12|DELIVER IN PERSON|AIR|ptotes haggle blithely after the even | +79917|398292|35814|1|19|26415.32|0.02|0.05|N|O|1998-07-20|1998-07-22|1998-07-30|TAKE BACK RETURN|RAIL|sly ironic theodolites above | +79917|84208|34209|2|44|52456.80|0.01|0.04|N|O|1998-07-24|1998-06-18|1998-08-22|TAKE BACK RETURN|RAIL|uffily even fox| +79917|275530|38036|3|48|72264.96|0.01|0.05|N|O|1998-05-22|1998-07-20|1998-06-06|COLLECT COD|MAIL|ncies. blithely ironic pinto beans s| +79917|818613|18614|4|37|56668.09|0.05|0.02|N|O|1998-05-02|1998-06-20|1998-05-08|NONE|RAIL|affix carefull| +79917|423489|48506|5|2|2824.92|0.10|0.06|N|O|1998-05-13|1998-06-20|1998-05-29|COLLECT COD|FOB|ularly silent packages. fur| +79917|573627|36139|6|15|25509.00|0.07|0.00|N|O|1998-06-21|1998-07-25|1998-07-14|COLLECT COD|SHIP|ainst the slyly even packages. bold account| +79918|831700|19249|1|37|60371.42|0.01|0.04|R|F|1995-05-02|1995-05-01|1995-05-15|COLLECT COD|MAIL|ounts. instructions b| +79918|372194|47209|2|37|46848.66|0.05|0.07|R|F|1995-02-05|1995-03-04|1995-02-28|TAKE BACK RETURN|RAIL|s? express requests sleep quickly packages| +79919|999602|37160|1|43|73167.08|0.04|0.00|R|F|1993-11-05|1993-08-26|1993-12-01|NONE|SHIP|row furiously. fluffy, ironic| +79944|154727|42237|1|15|26725.80|0.07|0.03|R|F|1994-06-05|1994-07-11|1994-06-27|DELIVER IN PERSON|AIR|s are carefully| +79944|484251|34252|2|11|13587.53|0.10|0.00|A|F|1994-06-16|1994-07-28|1994-07-09|TAKE BACK RETURN|AIR|ong the blithely unusual| +79944|805677|43226|3|46|72800.98|0.06|0.06|A|F|1994-09-16|1994-06-27|1994-09-25|NONE|TRUCK|special, even pinto beans | +79945|34862|22363|1|21|37734.06|0.07|0.08|R|F|1992-11-29|1993-01-15|1992-12-25|COLLECT COD|FOB|luffily special | +79945|914984|40021|2|17|33981.98|0.10|0.06|R|F|1992-11-11|1993-01-06|1992-11-29|DELIVER IN PERSON|FOB|integrate blithe| +79945|120637|20638|3|29|48071.27|0.07|0.07|A|F|1993-01-09|1993-01-12|1993-01-15|TAKE BACK RETURN|RAIL|e express accounts are car| +79945|540348|2859|4|20|27766.40|0.10|0.08|A|F|1993-01-29|1993-01-13|1993-02-06|DELIVER IN PERSON|REG AIR|n requests. even foxes wake | +79945|627446|27447|5|42|57683.22|0.04|0.04|A|F|1992-11-16|1992-12-03|1992-11-27|NONE|MAIL|s use about the fluffily| +79945|473814|23815|6|26|46482.54|0.09|0.05|A|F|1993-01-27|1992-12-16|1993-02-11|TAKE BACK RETURN|SHIP|s integrate boldly quickly fin| +79945|382533|20055|7|24|38772.48|0.08|0.04|A|F|1993-01-26|1993-01-17|1993-02-15|NONE|TRUCK|usual, even packages kindl| +79946|215830|15831|1|43|75070.26|0.01|0.02|N|O|1998-07-13|1998-08-13|1998-07-22|COLLECT COD|FOB|ross the quickly i| +79946|440680|3189|2|21|34033.86|0.09|0.03|N|O|1998-07-01|1998-07-15|1998-07-28|COLLECT COD|TRUCK|e the final packages. regular| +79947|880960|18512|1|9|17468.28|0.00|0.02|R|F|1994-09-28|1994-11-08|1994-10-02|DELIVER IN PERSON|REG AIR|nts. ruthless platelets are fluffily agai| +79947|286764|36765|2|6|10504.50|0.09|0.06|A|F|1994-10-24|1994-10-25|1994-11-20|TAKE BACK RETURN|SHIP|theodolites boost caref| +79948|333808|33809|1|30|55253.70|0.05|0.07|A|F|1993-04-03|1993-04-30|1993-04-10|TAKE BACK RETURN|MAIL| alongside of| +79948|307517|20024|2|13|19818.50|0.07|0.07|R|F|1993-03-13|1993-03-13|1993-03-29|TAKE BACK RETURN|SHIP|es wake carefully bold foxes. ironic, | +79948|431836|44345|3|30|53034.30|0.00|0.02|A|F|1993-02-12|1993-03-13|1993-02-26|NONE|TRUCK|the ideas. q| +79948|854714|29749|4|17|28367.39|0.02|0.03|R|F|1993-03-26|1993-03-11|1993-03-27|DELIVER IN PERSON|TRUCK| boost according to the unu| +79948|170749|45756|5|6|10918.44|0.10|0.05|R|F|1993-05-20|1993-03-19|1993-06-15|TAKE BACK RETURN|REG AIR|ithely ironic dependencies. f| +79949|132200|44703|1|7|8625.40|0.00|0.06|N|O|1996-07-13|1996-09-08|1996-07-23|DELIVER IN PERSON|RAIL|mong the packages. regular requests run s| +79949|875155|190|2|9|10170.99|0.08|0.08|N|O|1996-07-19|1996-08-30|1996-08-17|COLLECT COD|SHIP|ut the fluffily final theodolites dazzl| +79949|717289|42318|3|40|52250.00|0.03|0.05|N|O|1996-10-03|1996-08-29|1996-10-24|NONE|MAIL|ly regular ideas| +79949|462436|37455|4|19|26569.79|0.09|0.00|N|O|1996-09-10|1996-09-03|1996-09-27|DELIVER IN PERSON|MAIL|g to the care| +79950|729122|16665|1|41|47194.69|0.09|0.03|N|O|1997-12-26|1998-02-03|1997-12-31|TAKE BACK RETURN|REG AIR|ular foxes sleep against the| +79950|347126|34645|2|36|42231.96|0.08|0.03|N|O|1997-12-12|1998-03-06|1997-12-29|DELIVER IN PERSON|AIR|s quietly ironic accounts. carefully ironi| +79950|130987|43490|3|23|46413.54|0.10|0.03|N|O|1998-01-30|1998-02-13|1998-02-06|COLLECT COD|AIR|osits are furiously around the caref| +79950|492112|42113|4|2|2208.18|0.06|0.05|N|O|1998-03-06|1998-01-23|1998-03-23|NONE|MAIL|onic tithes! carefully silent | +79950|912622|37659|5|23|37595.34|0.07|0.03|N|O|1997-12-23|1998-02-11|1998-01-19|DELIVER IN PERSON|REG AIR|, even packages. carefully | +79950|427679|2696|6|45|72299.25|0.00|0.03|N|O|1998-03-05|1998-01-10|1998-03-25|TAKE BACK RETURN|REG AIR|unts wake furiously so| +79950|997912|47913|7|9|18088.83|0.05|0.06|N|O|1998-01-24|1998-03-05|1998-02-20|TAKE BACK RETURN|RAIL|y even, slow asympt| +79951|892896|42897|1|3|5666.55|0.05|0.08|N|O|1996-09-08|1996-09-15|1996-10-04|TAKE BACK RETURN|REG AIR|. blithely ironic as| +79976|311767|36780|1|4|7115.00|0.08|0.02|R|F|1992-08-30|1992-07-11|1992-09-23|NONE|MAIL|odolites wake regular, special foxes. fluf| +79976|864705|14706|2|37|61777.42|0.10|0.05|R|F|1992-08-09|1992-08-10|1992-08-25|DELIVER IN PERSON|MAIL|posits use among the close, even requ| +79977|684446|34447|1|48|68659.68|0.02|0.00|N|O|1996-02-19|1995-12-23|1996-03-14|TAKE BACK RETURN|TRUCK|lites nag slyly special asymptotes. slyl| +79977|476548|14076|2|42|64029.84|0.06|0.07|N|O|1996-01-31|1996-02-11|1996-02-03|TAKE BACK RETURN|MAIL|ithely blithely silent ideas. t| +79977|334974|34975|3|10|20089.60|0.03|0.00|N|O|1996-01-24|1995-12-17|1996-02-15|DELIVER IN PERSON|FOB| regular dinos above the slyly ironic t| +79977|891997|29549|4|28|55690.60|0.05|0.07|N|O|1995-11-26|1996-01-23|1995-12-19|NONE|REG AIR| cajole after the fu| +79978|52620|2621|1|31|48751.22|0.09|0.07|A|F|1992-12-14|1992-12-02|1992-12-28|COLLECT COD|FOB|sits. even theodolites caj| +79978|380212|17734|2|20|25844.00|0.02|0.05|R|F|1993-01-06|1992-11-06|1993-01-11|DELIVER IN PERSON|AIR|regular theodolites against t| +79978|215521|15522|3|5|7182.55|0.06|0.07|R|F|1993-01-11|1992-10-26|1993-02-03|DELIVER IN PERSON|TRUCK|wind along the slyly | +79978|255569|30580|4|27|41162.85|0.05|0.02|A|F|1992-11-16|1992-12-05|1992-12-06|TAKE BACK RETURN|FOB|e of the careful| +79978|343658|31177|5|14|23822.96|0.07|0.04|R|F|1992-10-09|1992-12-07|1992-10-11|DELIVER IN PERSON|SHIP|usly. furiously regular ac| +79978|859144|21662|6|34|37505.40|0.10|0.01|A|F|1992-10-05|1992-12-11|1992-10-20|TAKE BACK RETURN|SHIP|structions! slyl| +79979|549004|36535|1|32|33695.36|0.03|0.00|A|F|1993-10-12|1993-11-30|1993-10-18|NONE|SHIP|y regular theodolites. blithely speci| +79979|95733|20736|2|38|65691.74|0.10|0.07|R|F|1993-10-10|1993-11-04|1993-11-02|NONE|SHIP|. ironic instruct| +79979|975915|954|3|50|99543.50|0.00|0.03|R|F|1993-10-25|1993-12-27|1993-11-08|NONE|AIR| the furiously final depths wake quick| +79979|192274|17281|4|48|65580.96|0.00|0.02|A|F|1993-10-04|1993-12-04|1993-10-27|DELIVER IN PERSON|TRUCK|ts nod. fluffily final saut| +79979|533483|33484|5|10|15164.60|0.10|0.06|R|F|1993-10-13|1993-11-29|1993-10-25|DELIVER IN PERSON|REG AIR|ial request| +79979|247494|47495|6|19|27388.12|0.03|0.05|A|F|1993-11-07|1993-11-06|1993-11-20|COLLECT COD|REG AIR|ress ideas are car| +79980|633074|8099|1|19|19133.76|0.05|0.06|A|F|1994-08-13|1994-10-22|1994-09-10|TAKE BACK RETURN|AIR|pecial accounts nag ironic requests. | +79980|74653|37155|2|7|11393.55|0.05|0.04|A|F|1994-11-01|1994-08-29|1994-11-19|COLLECT COD|MAIL|cajole quickly| +79980|688286|38287|3|37|47147.25|0.10|0.07|R|F|1994-10-09|1994-08-29|1994-10-21|TAKE BACK RETURN|TRUCK| enticing ideas use quickly blithely pen| +79980|11991|49492|4|33|62798.67|0.08|0.03|A|F|1994-08-01|1994-10-10|1994-08-11|TAKE BACK RETURN|RAIL| furiously special foxes. furi| +79980|519148|19149|5|41|47851.92|0.06|0.02|R|F|1994-08-24|1994-09-07|1994-09-10|TAKE BACK RETURN|TRUCK|e slyly ironic foxes cajole slyly i| +79981|997863|22902|1|14|27451.48|0.03|0.03|A|F|1994-12-18|1994-11-07|1995-01-03|DELIVER IN PERSON|FOB|gular instructions thrash accor| +79981|76645|1648|2|43|69730.52|0.08|0.08|A|F|1994-10-09|1994-11-23|1994-11-04|TAKE BACK RETURN|FOB|ithely express asymptote| +79981|159374|21878|3|7|10033.59|0.10|0.06|R|F|1994-10-27|1994-11-05|1994-11-20|TAKE BACK RETURN|TRUCK| even, unusual | +79982|282747|7758|1|16|27675.68|0.01|0.07|A|F|1994-07-11|1994-09-05|1994-07-13|TAKE BACK RETURN|RAIL|unusual deposit| +79982|116122|28625|2|14|15933.68|0.06|0.05|A|F|1994-10-25|1994-08-12|1994-11-07|TAKE BACK RETURN|FOB|l asymptotes nod furiously! | +79983|595223|7735|1|21|27682.20|0.04|0.02|A|F|1994-03-27|1994-03-23|1994-04-22|NONE|FOB|carefully ironic pac| +79983|903219|28256|2|21|25665.57|0.03|0.02|R|F|1994-04-26|1994-03-16|1994-05-13|TAKE BACK RETURN|AIR|lly express requests haggle blithe| +80008|260314|10315|1|22|28034.60|0.03|0.00|A|F|1992-07-03|1992-08-09|1992-07-05|TAKE BACK RETURN|SHIP|pecial, final courts integrate | +80008|92585|42586|2|24|37861.92|0.10|0.00|A|F|1992-09-06|1992-07-24|1992-09-07|COLLECT COD|AIR|ep fluffily fluffily special pinto be| +80008|61245|36248|3|11|13268.64|0.09|0.06|R|F|1992-07-10|1992-07-21|1992-07-14|TAKE BACK RETURN|SHIP|nding instru| +80008|341304|41305|4|12|16143.48|0.09|0.03|R|F|1992-08-09|1992-06-13|1992-09-02|NONE|TRUCK| pinto beans. ironic,| +80009|152371|39881|1|39|55511.43|0.09|0.06|N|O|1997-08-28|1997-06-29|1997-09-16|COLLECT COD|AIR|r the slyly final dolphins: regular accou| +80010|970396|32916|1|1|1466.35|0.00|0.02|N|F|1995-06-13|1995-05-26|1995-07-09|COLLECT COD|REG AIR|sly among the ironic, careful instru| +80010|444460|19477|2|34|47750.96|0.03|0.03|N|O|1995-07-31|1995-05-09|1995-08-01|NONE|REG AIR|l foxes cajole carefully bold theod| +80010|35215|22716|3|23|26454.83|0.04|0.07|N|O|1995-06-20|1995-05-14|1995-07-05|COLLECT COD|REG AIR|ideas. blithely regula| +80010|856654|31689|4|10|16106.10|0.01|0.01|N|O|1995-08-02|1995-07-03|1995-08-04|COLLECT COD|FOB|ckly. furiously express dinos at| +80010|767866|42897|5|24|46411.92|0.07|0.07|N|O|1995-07-11|1995-06-14|1995-07-26|NONE|MAIL| deposits use carefully. furiously silent| +80010|522484|10015|6|28|42180.88|0.07|0.04|N|O|1995-07-30|1995-05-11|1995-08-19|DELIVER IN PERSON|REG AIR|the silent, bold th| +80010|386500|36501|7|32|50767.68|0.06|0.08|N|F|1995-06-13|1995-05-12|1995-06-26|NONE|REG AIR|es cajole. re| +80011|901716|14235|1|15|25765.05|0.08|0.03|A|F|1994-04-24|1994-05-29|1994-05-12|NONE|REG AIR|express, final accounts | +80011|131364|18871|2|14|19535.04|0.09|0.06|R|F|1994-04-03|1994-05-04|1994-04-15|DELIVER IN PERSON|MAIL|final foxes engage a| +80011|829835|4868|3|42|74121.18|0.03|0.07|R|F|1994-04-12|1994-05-09|1994-05-12|TAKE BACK RETURN|REG AIR|s impress across the theodol| +80012|71444|21445|1|28|39632.32|0.02|0.02|R|F|1993-12-28|1993-12-03|1994-01-22|DELIVER IN PERSON|REG AIR|es engage slyly. blithely pending acc| +80012|755194|42740|2|49|61208.84|0.04|0.03|A|F|1993-10-27|1993-12-15|1993-11-13|DELIVER IN PERSON|TRUCK|ckly furiously ironic| +80013|123298|23299|1|21|27747.09|0.02|0.05|N|O|1997-09-12|1997-08-03|1997-09-17|TAKE BACK RETURN|SHIP|tructions wake slyly ironic| +80013|264762|39773|2|32|55256.00|0.04|0.06|N|O|1997-08-14|1997-08-06|1997-09-07|DELIVER IN PERSON|AIR|s wake slyly along the regular deposi| +80013|840813|3330|3|43|75412.11|0.01|0.06|N|O|1997-07-13|1997-09-06|1997-08-09|DELIVER IN PERSON|RAIL|lar deposits impress carefully. bold, final| +80013|535923|10944|4|29|56808.10|0.01|0.04|N|O|1997-10-14|1997-09-11|1997-10-15|TAKE BACK RETURN|AIR|carefully i| +80013|253420|15926|5|43|59056.63|0.07|0.07|N|O|1997-09-27|1997-07-24|1997-10-05|DELIVER IN PERSON|REG AIR|ress, regular th| +80013|215400|40409|6|33|43407.87|0.05|0.08|N|O|1997-07-19|1997-08-29|1997-08-07|NONE|FOB|gular requests. carefull| +80014|718910|31425|1|26|50150.88|0.07|0.01|A|F|1995-02-02|1995-03-12|1995-02-17|TAKE BACK RETURN|MAIL|n accounts wake boldly| +80014|719716|32231|2|11|19092.48|0.03|0.05|R|F|1995-05-25|1995-03-01|1995-06-17|NONE|FOB|uests are. ideas are; carefully iron| +80014|253512|16018|3|21|30775.50|0.06|0.00|R|F|1995-02-23|1995-03-06|1995-03-03|TAKE BACK RETURN|MAIL|the slyly silent platel| +80014|762885|431|4|50|97392.50|0.04|0.07|A|F|1995-04-08|1995-03-02|1995-04-25|NONE|MAIL|blate quickly abov| +80014|799923|37469|5|47|95075.83|0.02|0.01|R|F|1995-02-12|1995-04-06|1995-02-14|COLLECT COD|REG AIR|its use carefully among the carefully| +80014|292452|17463|6|5|7222.20|0.05|0.04|A|F|1995-05-04|1995-04-08|1995-05-21|TAKE BACK RETURN|TRUCK|ithely even accounts. slyly reg| +80014|234351|34352|7|42|53984.28|0.09|0.05|A|F|1995-04-15|1995-04-11|1995-05-05|NONE|AIR| carefully above the quickly i| +80015|721064|8607|1|4|4340.12|0.04|0.05|A|F|1992-01-17|1992-03-25|1992-02-04|TAKE BACK RETURN|RAIL| express dep| +80015|905920|30957|2|27|51998.76|0.07|0.01|A|F|1992-05-04|1992-02-20|1992-05-09|NONE|TRUCK| to the furi| +80015|790753|3269|3|38|70061.36|0.05|0.08|R|F|1992-01-30|1992-02-12|1992-02-27|NONE|TRUCK|ges wake blithely regular ex| +80015|176324|26325|4|22|30807.04|0.05|0.01|A|F|1992-04-10|1992-03-07|1992-04-13|DELIVER IN PERSON|AIR|ideas integra| +80015|474787|37297|5|6|10570.56|0.04|0.08|A|F|1992-02-17|1992-03-14|1992-02-23|COLLECT COD|SHIP|lly. carefully regu| +80015|743299|43300|6|38|51005.88|0.05|0.00|A|F|1992-01-09|1992-02-19|1992-01-21|COLLECT COD|FOB|ly even accounts | +80040|431753|6770|1|40|67389.20|0.07|0.02|A|F|1993-03-02|1993-05-06|1993-03-13|DELIVER IN PERSON|REG AIR| special accounts promise ironic theodo| +80040|461315|11316|2|46|58709.34|0.05|0.02|R|F|1993-03-23|1993-05-04|1993-04-07|TAKE BACK RETURN|FOB| requests cajole blithe| +80041|940862|28417|1|23|43764.86|0.10|0.01|R|F|1992-04-06|1992-06-16|1992-04-26|COLLECT COD|REG AIR| beans use slyly carefu| +80041|67109|17110|2|6|6456.60|0.08|0.07|A|F|1992-04-06|1992-06-27|1992-05-03|COLLECT COD|TRUCK| requests wake regular sheaves. slyl| +80041|900595|25632|3|39|62226.45|0.09|0.05|R|F|1992-04-06|1992-05-10|1992-04-16|NONE|RAIL|bout the packages. | +80041|294115|44116|4|28|31054.80|0.02|0.08|A|F|1992-07-07|1992-06-01|1992-07-15|DELIVER IN PERSON|REG AIR| multipliers. | +80042|947001|34556|1|41|42966.36|0.06|0.00|N|O|1995-08-24|1995-09-08|1995-08-27|NONE|FOB|nts could have to wake after the | +80042|236070|36071|2|48|48290.88|0.04|0.00|N|O|1995-07-09|1995-07-25|1995-07-16|COLLECT COD|SHIP|eep furiously across the ironica| +80042|619901|7438|3|30|54626.10|0.09|0.07|N|O|1995-09-01|1995-07-26|1995-09-13|COLLECT COD|SHIP|uriously quickly expre| +80043|662979|38006|1|23|44664.62|0.06|0.01|N|O|1995-10-05|1995-08-03|1995-10-08|DELIVER IN PERSON|REG AIR|regular packages are aft| +80043|678389|40903|2|3|4102.05|0.01|0.05|N|O|1995-08-23|1995-09-05|1995-08-26|COLLECT COD|FOB|the ironic, unusual pl| +80043|683330|8357|3|29|38085.70|0.08|0.02|N|O|1995-09-23|1995-09-09|1995-10-07|NONE|SHIP| furiously regular d| +80043|722681|10224|4|46|78367.90|0.01|0.01|N|O|1995-08-04|1995-08-08|1995-08-17|DELIVER IN PERSON|RAIL|ously above the spe| +80043|93976|43977|5|2|3939.94|0.05|0.05|N|O|1995-09-06|1995-09-04|1995-09-20|NONE|TRUCK| accounts. quietly final | +80043|439135|14152|6|12|12889.32|0.07|0.03|N|O|1995-07-29|1995-09-16|1995-08-10|DELIVER IN PERSON|AIR|. furiously furious pac| +80043|527519|15050|7|6|9278.94|0.06|0.07|N|O|1995-08-30|1995-08-02|1995-09-09|NONE|TRUCK|y silent ideas use fluffily pending packag| +80044|2677|2678|1|14|22115.38|0.02|0.00|N|O|1996-01-15|1995-12-24|1996-01-19|NONE|FOB| regular requests solve fluffi| +80044|980414|30415|2|37|55291.69|0.00|0.04|N|O|1995-11-25|1995-12-24|1995-11-27|TAKE BACK RETURN|FOB|ts snooze around the | +80044|814418|39451|3|39|51962.43|0.03|0.03|N|O|1996-02-23|1996-01-22|1996-03-04|COLLECT COD|FOB|sts. quickly even packages detect slyly | +80044|912199|24718|4|49|59346.35|0.04|0.02|N|O|1995-11-26|1996-01-22|1995-12-23|COLLECT COD|REG AIR|le quickly blithel| +80044|316703|16704|5|17|29234.73|0.08|0.04|N|O|1995-12-23|1996-01-01|1996-01-19|TAKE BACK RETURN|REG AIR|he permane| +80044|815907|40940|6|11|20051.46|0.03|0.00|N|O|1996-01-04|1995-11-30|1996-01-17|DELIVER IN PERSON|FOB|y even depe| +80045|52324|14826|1|44|56158.08|0.05|0.07|N|O|1996-05-20|1996-06-28|1996-06-06|NONE|RAIL|ackages at the carefully regul| +80045|398611|48612|2|16|27353.60|0.00|0.08|N|O|1996-04-16|1996-07-04|1996-04-25|DELIVER IN PERSON|RAIL|lyly pending de| +80046|945114|7633|1|42|48680.94|0.10|0.02|N|O|1998-07-28|1998-07-04|1998-08-06|COLLECT COD|AIR|posits could have to use fluffy, fin| +80046|520476|20477|2|1|1496.45|0.03|0.05|N|O|1998-08-05|1998-07-09|1998-08-30|TAKE BACK RETURN|SHIP|ctions above th| +80046|624154|11691|3|34|36656.08|0.06|0.07|N|O|1998-09-07|1998-07-14|1998-10-03|DELIVER IN PERSON|MAIL| carefully regular | +80046|143614|31121|4|42|69619.62|0.05|0.07|N|O|1998-09-05|1998-07-29|1998-09-08|TAKE BACK RETURN|MAIL|y regular theodolites| +80046|708630|21145|5|28|45880.80|0.02|0.01|N|O|1998-06-15|1998-08-18|1998-07-01|TAKE BACK RETURN|AIR|final packages cajole slyly final| +80046|935428|10465|6|34|49754.92|0.03|0.02|N|O|1998-09-11|1998-06-28|1998-10-09|DELIVER IN PERSON|REG AIR|he requests sleep slyly sly| +80046|723269|23270|7|10|12922.30|0.02|0.06|N|O|1998-06-22|1998-08-02|1998-07-21|DELIVER IN PERSON|RAIL|efully regular| +80047|966142|16143|1|7|8456.70|0.07|0.04|N|O|1995-07-05|1995-07-22|1995-07-28|NONE|AIR|arefully f| +80047|942023|17060|2|37|39404.26|0.07|0.05|N|O|1995-06-24|1995-07-19|1995-07-23|NONE|RAIL|. packages across the blit| +80047|569725|32237|3|14|25125.80|0.04|0.07|N|O|1995-07-28|1995-08-06|1995-08-05|NONE|AIR|n packages use carefull| +80047|361785|11786|4|33|60943.41|0.02|0.03|N|O|1995-07-21|1995-08-25|1995-07-22|TAKE BACK RETURN|AIR|refully pe| +80047|508152|45683|5|19|22042.47|0.06|0.02|N|O|1995-07-23|1995-07-13|1995-07-30|TAKE BACK RETURN|FOB|o beans. fo| +80072|912831|37868|1|5|9218.95|0.09|0.04|R|F|1994-05-09|1994-05-02|1994-06-07|DELIVER IN PERSON|FOB|ular packages dazzle slyly accounts. regula| +80072|943637|43638|2|33|55459.47|0.08|0.00|A|F|1994-02-28|1994-05-11|1994-03-08|TAKE BACK RETURN|RAIL|nic packages | +80072|691546|41547|3|25|38437.75|0.01|0.03|R|F|1994-04-30|1994-03-29|1994-05-15|DELIVER IN PERSON|RAIL|g fluffily against the unusual deposits;| +80072|805865|43414|4|22|38958.04|0.09|0.00|A|F|1994-06-16|1994-04-27|1994-07-13|COLLECT COD|MAIL|ckly ironic ideas | +80072|171504|9014|5|25|39387.50|0.06|0.08|R|F|1994-03-28|1994-04-08|1994-03-29|NONE|TRUCK| pending deposits against the ironic,| +80072|465957|3485|6|7|13460.51|0.05|0.06|A|F|1994-03-08|1994-05-04|1994-03-20|COLLECT COD|SHIP|eep slyly furiously pending theodolit| +80072|324987|24988|7|35|70418.95|0.09|0.04|R|F|1994-04-21|1994-05-03|1994-05-17|TAKE BACK RETURN|MAIL|eath the blithely special dependencies. s| +80073|54459|41963|1|25|35336.25|0.04|0.06|R|F|1993-06-16|1993-08-19|1993-06-18|COLLECT COD|TRUCK|packages nag blithely pending theo| +80073|285496|10507|2|18|26666.64|0.04|0.01|R|F|1993-07-29|1993-07-24|1993-08-17|NONE|AIR|nstructions. regular reque| +80073|314835|27342|3|1|1849.82|0.10|0.02|R|F|1993-09-09|1993-06-24|1993-09-27|NONE|RAIL|usly final exc| +80073|421804|9329|4|25|43144.50|0.06|0.03|A|F|1993-09-17|1993-06-28|1993-09-25|DELIVER IN PERSON|FOB|ironic packages. idly pending warhor| +80074|434456|46965|1|17|23637.31|0.02|0.04|N|O|1998-03-18|1998-02-14|1998-03-30|NONE|REG AIR|ding deposits boost slyly? unusual| +80074|894774|32326|2|30|53061.90|0.02|0.00|N|O|1997-11-28|1998-02-01|1997-12-10|COLLECT COD|SHIP|le slyly carefully express accounts. f| +80074|456845|44373|3|20|36036.40|0.01|0.03|N|O|1998-02-14|1998-01-19|1998-02-27|NONE|FOB|nstructions. carefully regul| +80074|189496|27006|4|49|77689.01|0.05|0.03|N|O|1998-01-03|1998-02-16|1998-01-16|COLLECT COD|RAIL|y about the furiously even depo| +80074|848212|23245|5|47|54527.99|0.02|0.07|N|O|1997-12-04|1998-01-10|1997-12-18|TAKE BACK RETURN|SHIP|onic ideas. regular package| +80075|264885|39896|1|2|3699.74|0.01|0.03|A|F|1994-04-16|1994-05-10|1994-05-03|NONE|RAIL|oss the regularly final | +80076|167876|42883|1|13|25270.31|0.05|0.06|N|O|1996-11-24|1996-10-28|1996-12-02|TAKE BACK RETURN|SHIP| the carefully bold| +80076|490213|2723|2|4|4812.76|0.04|0.01|N|O|1996-09-22|1996-10-15|1996-10-16|COLLECT COD|FOB| fluffily ironi| +80076|999146|49147|3|50|62255.00|0.08|0.04|N|O|1996-11-11|1996-10-24|1996-11-12|TAKE BACK RETURN|AIR|odolites integrate slyly reg| +80077|639724|27261|1|18|29946.42|0.06|0.05|N|O|1996-06-16|1996-04-20|1996-06-29|TAKE BACK RETURN|TRUCK|uests cajol| +80077|832412|7445|2|29|38986.73|0.01|0.00|N|O|1996-05-14|1996-04-25|1996-06-07|TAKE BACK RETURN|TRUCK|t the enticingly f| +80077|343980|43981|3|27|54647.19|0.06|0.02|N|O|1996-04-20|1996-05-27|1996-05-03|COLLECT COD|MAIL|ect slyly accordin| +80077|261836|49352|4|35|62923.70|0.04|0.00|N|O|1996-04-05|1996-04-01|1996-04-24|TAKE BACK RETURN|SHIP|kages integrate slyly am| +80077|664917|2457|5|24|45165.12|0.09|0.03|N|O|1996-04-10|1996-05-19|1996-04-24|NONE|REG AIR|, even accounts | +80077|259416|46932|6|23|31634.20|0.03|0.04|N|O|1996-06-11|1996-04-21|1996-07-05|DELIVER IN PERSON|RAIL| special, express requests wake a| +80077|996152|33710|7|47|58661.17|0.05|0.04|N|O|1996-03-23|1996-05-05|1996-04-01|COLLECT COD|AIR| sublate blit| +80078|322478|22479|1|37|55517.02|0.03|0.08|N|O|1996-04-09|1996-05-11|1996-04-16|COLLECT COD|SHIP|slyly. slyly | +80078|878820|28821|2|41|73749.98|0.08|0.00|N|O|1996-05-09|1996-04-29|1996-06-08|TAKE BACK RETURN|MAIL| special excuses. blith| +80078|325904|917|3|21|40527.69|0.09|0.07|N|O|1996-03-30|1996-05-09|1996-04-16|COLLECT COD|SHIP|en ideas wake furiously special accounts| +80078|459978|22488|4|34|65890.30|0.01|0.08|N|O|1996-03-23|1996-04-10|1996-04-20|DELIVER IN PERSON|REG AIR|ts are slyly | +80078|846130|8647|5|46|49500.14|0.06|0.05|N|O|1996-05-04|1996-05-10|1996-05-18|COLLECT COD|TRUCK|arefully about the unusual f| +80079|678835|16375|1|19|34462.20|0.08|0.00|R|F|1994-07-09|1994-07-27|1994-07-13|DELIVER IN PERSON|REG AIR|ches according | +80079|178754|28755|2|38|69644.50|0.10|0.02|R|F|1994-08-12|1994-08-20|1994-08-29|COLLECT COD|TRUCK|ly ironic requests boo| +80079|303915|28928|3|46|88269.40|0.00|0.06|A|F|1994-07-01|1994-07-28|1994-07-07|NONE|FOB|somas integrate blithely after| +80079|889516|2034|4|34|51185.98|0.02|0.08|A|F|1994-07-03|1994-07-16|1994-07-21|NONE|FOB|posits boost slyly. care| +80079|91580|4082|5|39|61291.62|0.04|0.00|A|F|1994-07-01|1994-08-03|1994-07-22|NONE|RAIL|gular excuses above the fluffil| +80079|169530|44537|6|15|23992.95|0.08|0.06|R|F|1994-08-20|1994-09-04|1994-08-21|NONE|REG AIR|ccounts. ir| +80079|280852|5863|7|45|82477.80|0.00|0.05|A|F|1994-07-23|1994-08-15|1994-07-28|DELIVER IN PERSON|MAIL|hely. express accounts | +80104|267988|17989|1|20|39119.40|0.06|0.05|N|O|1997-09-22|1997-12-05|1997-10-04|TAKE BACK RETURN|TRUCK|dependencies sleep carefully. spe| +80104|57869|7870|2|7|12788.02|0.05|0.08|N|O|1997-11-20|1997-11-03|1997-12-07|TAKE BACK RETURN|MAIL|s cajole above the theodolites. blit| +80104|590218|15241|3|46|60176.74|0.07|0.03|N|O|1998-01-02|1997-12-11|1998-01-03|DELIVER IN PERSON|AIR|ven, pending asymptotes. quickly expr| +80104|788846|38847|4|41|79327.21|0.09|0.04|N|O|1998-01-08|1997-10-25|1998-01-28|DELIVER IN PERSON|SHIP| the furiously unusual | +80104|124548|24549|5|20|31450.80|0.02|0.00|N|O|1997-12-21|1997-12-11|1997-12-30|COLLECT COD|REG AIR|ing pinto beans. packages nag along t| +80104|273351|48362|6|42|55622.28|0.03|0.01|N|O|1997-10-17|1997-11-05|1997-10-21|TAKE BACK RETURN|RAIL|encies believe fluffily bold| +80104|197811|35321|7|6|11452.86|0.09|0.05|N|O|1997-12-19|1997-11-27|1998-01-05|DELIVER IN PERSON|SHIP|beans run. stealthy deposits n| +80105|592872|17895|1|11|21613.35|0.10|0.07|R|F|1994-02-23|1994-03-20|1994-03-07|NONE|SHIP|ep blithely. sly| +80106|683017|33018|1|9|8999.82|0.09|0.07|N|O|1998-09-07|1998-10-20|1998-09-08|NONE|MAIL|ccording to the final theodolites cajo| +80106|465599|40618|2|13|20339.41|0.00|0.04|N|O|1998-09-17|1998-08-27|1998-09-19|NONE|FOB|tructions detec| +80106|320151|7670|3|17|19909.38|0.02|0.07|N|O|1998-08-10|1998-10-01|1998-08-26|NONE|MAIL|efully furiously special| +80106|765742|3288|4|4|7230.84|0.04|0.01|N|O|1998-10-10|1998-09-30|1998-11-03|TAKE BACK RETURN|AIR|ideas use blithely.| +80106|812804|353|5|34|58369.84|0.01|0.07|N|O|1998-10-19|1998-10-11|1998-10-23|NONE|AIR| the unusual, regular do| +80106|790566|40567|6|37|61291.61|0.10|0.05|N|O|1998-10-14|1998-10-07|1998-10-20|DELIVER IN PERSON|RAIL|ests nag. final, express ins| +80106|29529|29530|7|45|65633.40|0.05|0.07|N|O|1998-09-26|1998-09-04|1998-10-01|DELIVER IN PERSON|TRUCK|carefully silent th| +80107|287082|37083|1|12|12828.84|0.02|0.00|R|F|1992-11-11|1992-12-08|1992-11-19|TAKE BACK RETURN|REG AIR| asymptotes. regular deposits are| +80107|977772|27773|2|44|81388.12|0.09|0.06|R|F|1992-10-13|1992-11-16|1992-10-25|COLLECT COD|AIR|ide of the requests doze bold asymptotes.| +80108|869650|19651|1|36|58305.96|0.08|0.00|A|F|1994-04-16|1994-05-25|1994-04-25|COLLECT COD|FOB| the blithely regular pinto beans. furiousl| +80108|205190|5191|2|17|18618.06|0.04|0.06|R|F|1994-05-11|1994-06-15|1994-05-20|DELIVER IN PERSON|SHIP|lar, regular instructions cajole blithel| +80109|450307|25326|1|47|59092.16|0.09|0.01|A|F|1994-05-07|1994-07-30|1994-05-31|TAKE BACK RETURN|REG AIR|fily ironic dugouts are| +80109|297903|22914|2|33|62729.37|0.10|0.04|R|F|1994-06-16|1994-06-12|1994-06-24|DELIVER IN PERSON|TRUCK| are furiously regular, bo| +80110|47884|22885|1|19|34805.72|0.07|0.05|A|F|1993-03-16|1993-03-01|1993-04-06|TAKE BACK RETURN|TRUCK|instruction| +80110|769797|44828|2|44|82137.44|0.02|0.00|A|F|1993-03-30|1993-02-28|1993-04-25|COLLECT COD|FOB|rding to the careful| +80110|969195|44234|3|50|63207.50|0.07|0.08|R|F|1993-02-23|1993-01-27|1993-02-24|NONE|FOB| carefully final somas nag aroun| +80110|247802|35315|4|48|83989.92|0.09|0.02|A|F|1993-02-20|1993-01-11|1993-03-14|DELIVER IN PERSON|RAIL|ithely after the fluffily ironic pattern| +80111|184524|9531|1|34|54689.68|0.00|0.00|N|O|1996-09-29|1996-09-17|1996-10-15|NONE|AIR|ly pending requests nag carefully quickly f| +80111|280895|43401|2|33|61904.04|0.03|0.04|N|O|1996-08-06|1996-09-05|1996-08-14|NONE|AIR| the theodolites haggle about the blithely | +80111|988514|13553|3|12|19229.64|0.02|0.01|N|O|1996-08-09|1996-10-14|1996-08-29|NONE|TRUCK|y. accounts al| +80111|952796|2797|4|17|31428.75|0.10|0.06|N|O|1996-08-25|1996-09-21|1996-09-13|NONE|MAIL|e quickly. ironic as| +80111|638601|38602|5|4|6158.28|0.03|0.05|N|O|1996-11-19|1996-09-13|1996-12-09|NONE|TRUCK|lites. fluffily bold | +80136|531881|6902|1|24|45908.64|0.01|0.05|R|F|1992-08-13|1992-08-21|1992-08-31|TAKE BACK RETURN|MAIL|bold packages cajole slyly a| +80136|313358|38371|2|37|50739.58|0.04|0.03|R|F|1992-11-01|1992-09-01|1992-11-16|DELIVER IN PERSON|SHIP|across the fluffily s| +80136|594166|31700|3|38|47885.32|0.07|0.07|R|F|1992-10-08|1992-09-06|1992-10-19|DELIVER IN PERSON|TRUCK|re carefully fi| +80136|140953|15958|4|5|9969.75|0.04|0.07|A|F|1992-09-21|1992-09-05|1992-10-11|DELIVER IN PERSON|AIR|fully fina| +80136|991644|4164|5|36|62481.60|0.10|0.02|R|F|1992-09-17|1992-09-17|1992-10-10|NONE|REG AIR|y express requests do| +80136|551421|26444|6|28|41227.20|0.07|0.02|A|F|1992-08-24|1992-09-05|1992-09-19|DELIVER IN PERSON|MAIL|ously. instruc| +80136|730610|5639|7|39|63982.62|0.10|0.01|R|F|1992-10-06|1992-10-04|1992-10-07|DELIVER IN PERSON|SHIP|ages. carefully re| +80137|354230|41752|1|43|55221.46|0.08|0.03|N|O|1998-04-04|1998-04-04|1998-04-11|COLLECT COD|FOB|olites maintain slyly final plate| +80137|538560|26091|2|29|46357.66|0.08|0.04|N|O|1998-03-04|1998-04-02|1998-03-15|NONE|SHIP| requests wake carefully. blithely unu| +80137|574986|24987|3|4|8243.84|0.02|0.01|N|O|1998-03-07|1998-03-28|1998-03-13|TAKE BACK RETURN|REG AIR|nent deposits above the slyly| +80138|554321|16833|1|33|45384.90|0.02|0.03|R|F|1995-02-08|1995-01-19|1995-03-06|TAKE BACK RETURN|FOB|inst the carefully even theodolites. blit| +80138|458282|8283|2|43|53331.18|0.08|0.07|R|F|1995-03-08|1995-01-17|1995-03-16|NONE|AIR|slyly regular deposits. depths a| +80138|330073|30074|3|10|11030.60|0.02|0.02|R|F|1995-02-18|1995-02-09|1995-03-06|COLLECT COD|MAIL| excuses boos| +80139|459079|9080|1|37|38407.85|0.09|0.00|R|F|1994-07-14|1994-08-02|1994-08-06|COLLECT COD|RAIL| platelets. blithely regular accounts | +80139|737457|12486|2|34|50810.28|0.07|0.08|R|F|1994-09-04|1994-08-04|1994-10-04|DELIVER IN PERSON|REG AIR|quests use carefully.| +80139|434439|21964|3|41|56309.81|0.09|0.01|A|F|1994-07-09|1994-07-16|1994-07-28|TAKE BACK RETURN|RAIL|e carefully. carefully ironic asymp| +80140|57673|45177|1|1|1630.67|0.07|0.05|R|F|1994-12-30|1995-01-19|1995-01-04|DELIVER IN PERSON|SHIP|s. carefully even requests haggle quickl| +80140|296365|21376|2|38|51731.30|0.04|0.04|R|F|1995-01-17|1994-12-29|1995-01-25|NONE|TRUCK|es maintain carefully. slyly specia| +80140|6101|31102|3|19|19134.90|0.00|0.03|R|F|1995-02-08|1994-12-06|1995-03-04|TAKE BACK RETURN|AIR|inal excuses haggle about the quickly ironi| +80140|535017|22548|4|48|50495.52|0.08|0.07|A|F|1995-01-04|1994-12-06|1995-01-07|DELIVER IN PERSON|MAIL|fully even foxes haggle furiously according| +80141|917199|42236|1|1|1216.15|0.03|0.03|N|O|1995-11-10|1995-10-30|1995-11-19|TAKE BACK RETURN|SHIP|express excuses. quickly ironic de| +80141|346943|34462|2|9|17909.37|0.10|0.08|N|O|1995-11-04|1995-12-11|1995-11-11|COLLECT COD|FOB|ly. quickly express packages| +80141|55021|17523|3|2|1952.04|0.02|0.00|N|O|1995-12-02|1995-11-09|1995-12-27|TAKE BACK RETURN|AIR| regular foxes wake. iron| +80141|721389|8932|4|50|70517.50|0.07|0.02|N|O|1995-10-19|1995-11-17|1995-11-02|NONE|RAIL|s are furiously unusual deposits. slyly| +80141|375261|276|5|34|45432.50|0.00|0.01|N|O|1995-10-17|1995-11-30|1995-10-18|NONE|TRUCK|y ironic dependencies haggle slyly | +80141|930|38431|6|31|56758.83|0.09|0.02|N|O|1996-01-14|1995-11-22|1996-01-20|DELIVER IN PERSON|SHIP|lithe foxes detect blithely above the exp| +80141|621661|21662|7|21|33235.23|0.08|0.01|N|O|1995-12-09|1995-10-23|1995-12-23|TAKE BACK RETURN|MAIL|nts haggle. bl| +80142|239730|39731|1|25|41743.00|0.10|0.01|N|O|1996-12-05|1996-09-24|1997-01-04|TAKE BACK RETURN|SHIP|fts. blithely even excuses acco| +80142|135656|23163|2|47|79507.55|0.08|0.07|N|O|1996-09-28|1996-10-10|1996-10-19|DELIVER IN PERSON|RAIL|ke slyly blith| +80143|325646|38153|1|10|16716.30|0.02|0.02|R|F|1992-12-15|1993-01-04|1992-12-30|NONE|TRUCK|about the idly regular | +80143|126392|1397|2|41|58153.99|0.07|0.08|A|F|1992-12-19|1992-12-29|1993-01-14|TAKE BACK RETURN|MAIL|leep about the carefully quick asymptotes| +80143|268231|43242|3|47|56363.34|0.05|0.01|R|F|1992-11-19|1993-01-14|1992-12-10|NONE|REG AIR|ests are slyly fi| +80143|141723|4226|4|24|42353.28|0.04|0.08|A|F|1992-11-18|1992-11-24|1992-12-14|TAKE BACK RETURN|AIR|lly above the pinto beans. | +80143|928836|41355|5|35|65267.65|0.06|0.04|A|F|1993-01-24|1992-11-30|1993-02-20|NONE|FOB|ronic courts nag slyly. express atta| +80143|935205|47724|6|9|11161.44|0.09|0.03|A|F|1992-10-26|1992-12-08|1992-11-03|COLLECT COD|RAIL|y alongside of the regular, ironic | +80168|947203|34758|1|20|25003.20|0.07|0.00|N|O|1996-12-06|1997-01-12|1996-12-12|COLLECT COD|REG AIR|. final instr| +80168|633951|33952|2|40|75396.80|0.04|0.05|N|O|1997-01-19|1996-12-17|1997-01-26|NONE|AIR|odolites serve carefully b| +80168|802925|40474|3|21|38385.48|0.07|0.03|N|O|1996-12-08|1996-12-28|1996-12-12|TAKE BACK RETURN|AIR|eposits hagg| +80168|757961|45507|4|40|80757.20|0.04|0.01|N|O|1997-01-01|1997-01-20|1997-01-30|TAKE BACK RETURN|MAIL|platelets are about the| +80168|44512|7013|5|1|1456.51|0.00|0.01|N|O|1997-03-05|1996-12-25|1997-03-27|COLLECT COD|FOB|uickly final accounts. blithe| +80168|112112|12113|6|35|39343.85|0.09|0.07|N|O|1997-02-21|1997-01-08|1997-03-22|COLLECT COD|AIR|yly pending asympt| +80169|459465|21975|1|12|17093.28|0.02|0.04|N|O|1996-12-20|1996-11-03|1996-12-29|NONE|FOB|is. blithely ironic pinto beans boos| +80169|226136|13649|2|30|31863.60|0.01|0.07|N|O|1996-11-14|1996-10-11|1996-12-07|COLLECT COD|AIR|es sleep sl| +80169|652295|39835|3|18|22450.68|0.06|0.03|N|O|1996-11-09|1996-11-02|1996-12-03|DELIVER IN PERSON|SHIP|e even packages are along| +80169|120997|20998|4|48|96863.52|0.05|0.03|N|O|1996-09-11|1996-10-27|1996-09-29|DELIVER IN PERSON|RAIL|cial requests boost fluffily ev| +80169|588934|38935|5|7|14160.37|0.09|0.02|N|O|1996-10-17|1996-11-30|1996-10-27|NONE|RAIL|y regular foxes cajole slyly across th| +80169|212399|49912|6|45|59012.10|0.02|0.03|N|O|1996-09-29|1996-11-15|1996-10-08|TAKE BACK RETURN|MAIL|ly pending platelet| +80169|780256|17802|7|37|49440.14|0.05|0.05|N|O|1996-11-28|1996-11-30|1996-12-11|TAKE BACK RETURN|AIR|layers. regular dependen| +80170|761039|11040|1|28|30800.00|0.10|0.02|N|O|1998-04-14|1998-03-06|1998-04-23|NONE|REG AIR|onic foxes. q| +80170|776962|1993|2|9|18350.37|0.05|0.02|N|O|1998-01-14|1998-02-22|1998-01-21|COLLECT COD|FOB|uses. carefully special| +80170|390956|40957|3|24|49126.56|0.03|0.05|N|O|1998-01-28|1998-01-30|1998-02-20|DELIVER IN PERSON|REG AIR|ng the final dolphins are| +80170|786491|49007|4|19|29971.74|0.08|0.03|N|O|1998-03-02|1998-01-30|1998-03-28|DELIVER IN PERSON|REG AIR|tructions. furious p| +80171|928023|3060|1|20|21019.60|0.00|0.01|R|F|1993-02-09|1993-01-08|1993-02-22|DELIVER IN PERSON|REG AIR|ake according| +80171|265864|40875|2|11|20128.35|0.02|0.01|R|F|1992-12-26|1992-12-24|1993-01-18|DELIVER IN PERSON|MAIL|er slyly special theodolites. regula| +80172|93948|31452|1|31|60200.14|0.00|0.07|A|F|1995-03-15|1995-05-13|1995-03-27|TAKE BACK RETURN|AIR|lyly regular tithes affix | +80172|969247|44286|2|18|23691.60|0.05|0.05|A|F|1995-04-05|1995-05-18|1995-04-22|COLLECT COD|TRUCK|unts. blithely bold hockey play| +80172|130257|30258|3|48|61788.00|0.10|0.07|A|F|1995-05-16|1995-05-29|1995-06-10|TAKE BACK RETURN|RAIL|ays. ironic packages boost qu| +80172|214738|39747|4|49|80983.28|0.04|0.08|A|F|1995-04-29|1995-05-30|1995-05-01|TAKE BACK RETURN|TRUCK|ecial deposits. blithely| +80172|85144|10147|5|22|24841.08|0.09|0.02|R|F|1995-05-04|1995-05-02|1995-05-23|NONE|REG AIR|ts? slyly | +80173|804990|4991|1|50|94747.50|0.07|0.03|R|F|1994-02-13|1994-02-01|1994-02-14|TAKE BACK RETURN|AIR|ructions was fluffily carefully regu| +80173|457171|19681|2|10|11281.50|0.01|0.07|R|F|1993-11-26|1994-01-04|1993-12-16|COLLECT COD|TRUCK|kly carefully express dependencies. regula| +80173|665082|27596|3|49|51305.45|0.03|0.01|A|F|1993-12-21|1994-02-03|1994-01-15|COLLECT COD|FOB|ly final theodolit| +80173|25544|25545|4|15|22043.10|0.06|0.08|A|F|1993-12-24|1993-12-24|1994-01-23|TAKE BACK RETURN|TRUCK| packages. packages betw| +80174|979993|17551|1|43|89136.85|0.04|0.00|N|O|1998-05-19|1998-03-20|1998-06-06|DELIVER IN PERSON|SHIP|y final foxes affix| +80174|737916|37917|2|41|80109.08|0.09|0.03|N|O|1998-03-28|1998-05-12|1998-04-04|DELIVER IN PERSON|SHIP|requests. regular packa| +80175|268209|43220|1|6|7063.14|0.04|0.07|R|F|1993-09-14|1993-10-05|1993-10-03|COLLECT COD|MAIL|ng deposits are | +80175|788550|13581|2|17|27854.84|0.08|0.05|A|F|1993-09-03|1993-10-31|1993-09-21|NONE|SHIP|ly above the furiously b| +80175|154608|17112|3|16|26601.60|0.09|0.03|A|F|1993-10-07|1993-09-17|1993-10-12|DELIVER IN PERSON|TRUCK|arefully ironic ideas affix. pinto b| +80200|867574|30092|1|22|33913.66|0.04|0.01|A|F|1993-08-29|1993-10-07|1993-09-13|TAKE BACK RETURN|RAIL|lar, final | +80201|551236|26259|1|46|59211.66|0.07|0.00|N|O|1997-06-13|1997-07-24|1997-06-15|COLLECT COD|FOB|ly pending excuses are regular platelets.| +80201|611254|11255|2|9|10486.98|0.09|0.01|N|O|1997-08-12|1997-07-16|1997-08-26|TAKE BACK RETURN|REG AIR|ul, final foxes wake blith| +80201|338010|517|3|46|48208.00|0.06|0.03|N|O|1997-06-13|1997-07-24|1997-06-21|NONE|TRUCK|thely quic| +80201|925293|330|4|30|39547.50|0.01|0.03|N|O|1997-07-05|1997-07-15|1997-07-24|DELIVER IN PERSON|FOB|es sleep quickly pen| +80201|391905|4413|5|43|85866.27|0.10|0.08|N|O|1997-05-15|1997-06-27|1997-05-21|NONE|FOB|y silent reque| +80202|918872|43909|1|44|83196.52|0.02|0.03|R|F|1992-04-27|1992-05-19|1992-04-28|COLLECT COD|FOB|riously unusua| +80202|481073|31074|2|45|47432.25|0.08|0.00|A|F|1992-05-07|1992-05-31|1992-06-01|NONE|SHIP|s lose slyly fu| +80202|385846|10861|3|22|42500.26|0.00|0.01|A|F|1992-07-13|1992-06-03|1992-08-12|NONE|FOB|ans against the regular re| +80202|910746|23265|4|3|5270.10|0.07|0.05|A|F|1992-05-26|1992-05-25|1992-06-17|DELIVER IN PERSON|SHIP|as. fluffi| +80203|614518|39543|1|9|12892.32|0.10|0.06|N|O|1997-01-29|1997-02-18|1997-02-07|COLLECT COD|SHIP|ts. slyly expr| +80204|699133|11647|1|18|20377.80|0.08|0.05|A|F|1992-10-12|1992-11-26|1992-11-03|COLLECT COD|AIR|s cajole according to the quickly bol| +80205|100866|25871|1|24|44804.64|0.07|0.05|A|F|1992-04-03|1992-04-22|1992-04-22|DELIVER IN PERSON|FOB|thely regular depo| +80205|252299|2300|2|37|46297.36|0.01|0.06|A|F|1992-05-27|1992-04-01|1992-06-07|NONE|MAIL|regular requests. unusual pac| +80206|844191|44192|1|31|35189.65|0.06|0.04|A|F|1993-10-24|1993-09-08|1993-11-01|DELIVER IN PERSON|MAIL|foxes. accounts| +80206|306152|18659|2|45|52116.30|0.06|0.06|R|F|1993-10-30|1993-08-25|1993-11-11|NONE|AIR|s. slyly regular pinto beans wa| +80206|485727|35728|3|4|6850.80|0.03|0.03|A|F|1993-11-23|1993-09-12|1993-12-12|DELIVER IN PERSON|SHIP|sits haggle pending, regular deposits. ca| +80206|608270|8271|4|15|17673.60|0.09|0.04|A|F|1993-11-03|1993-08-31|1993-11-08|COLLECT COD|REG AIR|. slyly pending packages haggl| +80206|193421|43422|5|4|6057.68|0.03|0.05|A|F|1993-09-28|1993-09-11|1993-10-21|TAKE BACK RETURN|TRUCK|y furiously bold packages. f| +80206|822134|47167|6|11|11616.99|0.00|0.04|A|F|1993-11-21|1993-09-15|1993-11-25|TAKE BACK RETURN|AIR|gular ideas boost. regular packages ag| +80206|597094|22117|7|34|40496.38|0.10|0.05|R|F|1993-08-04|1993-09-27|1993-08-13|COLLECT COD|REG AIR|tructions cajole. s| +80207|350682|13190|1|19|32920.73|0.09|0.03|N|O|1997-06-10|1997-06-08|1997-07-08|NONE|REG AIR|gside of the accounts. blithely special id| +80207|906009|31046|2|30|30448.80|0.08|0.07|N|O|1997-04-25|1997-04-23|1997-05-05|NONE|AIR|sh. express theodolites boost | +80207|290497|15508|3|37|55036.76|0.01|0.01|N|O|1997-05-23|1997-04-24|1997-06-17|TAKE BACK RETURN|MAIL|nic, even accounts. regular packages sleep| +80207|368053|18054|4|18|20178.72|0.08|0.04|N|O|1997-06-14|1997-04-21|1997-06-21|TAKE BACK RETURN|SHIP|ole carefully reg| +80232|923751|48788|1|37|65664.27|0.04|0.07|N|O|1998-07-14|1998-08-06|1998-07-21|TAKE BACK RETURN|MAIL|packages use slyly alongsi| +80232|479986|42496|2|42|82570.32|0.02|0.03|N|O|1998-08-17|1998-07-19|1998-09-10|COLLECT COD|TRUCK|o the carefully unusual pains. | +80232|123585|48590|3|30|48257.40|0.07|0.04|N|O|1998-07-20|1998-07-05|1998-08-18|TAKE BACK RETURN|AIR|ly after the ruthle| +80232|84373|46875|4|28|38006.36|0.10|0.07|N|O|1998-07-08|1998-06-26|1998-08-07|NONE|TRUCK|tructions sleep blithely against the bli| +80233|337242|37243|1|43|55006.89|0.09|0.07|N|O|1997-03-22|1997-01-03|1997-04-01|DELIVER IN PERSON|RAIL|to beans can| +80233|16934|16935|2|11|20360.23|0.01|0.03|N|O|1996-12-23|1997-02-09|1997-01-17|NONE|SHIP|r packages use. blithely regular pac| +80233|593334|5846|3|50|71365.50|0.05|0.08|N|O|1997-02-18|1997-01-28|1997-03-14|TAKE BACK RETURN|MAIL|tornis haggle| +80234|724450|24451|1|38|56027.96|0.04|0.05|N|O|1996-12-23|1997-01-26|1997-01-11|DELIVER IN PERSON|REG AIR|olites cajole| +80234|820897|20898|2|50|90892.50|0.10|0.08|N|O|1997-02-09|1997-01-24|1997-03-11|NONE|SHIP|ly idle orbits | +80234|814452|39485|3|46|62854.86|0.07|0.08|N|O|1997-01-10|1997-03-01|1997-01-18|COLLECT COD|SHIP|fully express deposits haggle | +80235|619100|19101|1|24|24457.68|0.05|0.01|A|F|1994-08-13|1994-08-03|1994-09-04|COLLECT COD|AIR| are carefully according to the furio| +80235|207378|19883|2|26|33419.36|0.08|0.05|A|F|1994-08-18|1994-07-07|1994-09-11|NONE|SHIP|special pinto beans dazzle blithely furious| +80235|392086|42087|3|3|3534.21|0.07|0.08|A|F|1994-06-16|1994-08-07|1994-07-16|COLLECT COD|AIR|ing ideas cajole careful| +80235|772723|35239|4|41|73623.29|0.08|0.06|A|F|1994-07-10|1994-08-13|1994-07-23|NONE|AIR|es. carefully regular dolphins use q| +80235|143760|6263|5|35|63131.60|0.03|0.08|R|F|1994-06-29|1994-07-13|1994-07-10|COLLECT COD|TRUCK|platelets. quickly reg| +80235|162885|12886|6|21|40905.48|0.06|0.08|A|F|1994-07-31|1994-09-01|1994-08-21|TAKE BACK RETURN|MAIL|ze alongside of the ruthlessly regular p| +80235|607336|44873|7|22|27352.60|0.00|0.08|A|F|1994-06-26|1994-07-29|1994-07-18|NONE|AIR|ly special accounts sleep | +80236|485045|22573|1|17|17510.34|0.08|0.06|N|O|1998-06-15|1998-08-23|1998-07-11|COLLECT COD|MAIL|efully pending packages. furiously i| +80236|143712|31219|2|3|5267.13|0.03|0.08|N|O|1998-06-15|1998-08-30|1998-06-21|NONE|SHIP|nts. platelets about the ironic pint| +80236|354468|4469|3|4|6089.80|0.01|0.07|N|O|1998-06-29|1998-07-07|1998-07-12|COLLECT COD|AIR|ages promise alon| +80236|543047|5558|4|11|11990.22|0.02|0.03|N|O|1998-07-02|1998-08-11|1998-07-23|NONE|SHIP|nic requests. bold, regular deposits wake q| +80236|988894|13933|5|44|87245.40|0.09|0.01|N|O|1998-06-30|1998-07-26|1998-07-15|NONE|FOB|instructions. permanently regular ideas| +80236|336985|11998|6|24|48527.28|0.04|0.05|N|O|1998-09-12|1998-07-03|1998-09-15|COLLECT COD|SHIP|cial asymptotes dazzle unusual, un| +80237|372855|47870|1|13|25061.92|0.10|0.02|N|O|1996-06-03|1996-03-22|1996-06-29|DELIVER IN PERSON|FOB|lar, final platelets. fina| +80237|562307|49841|2|13|17800.64|0.02|0.05|N|O|1996-05-18|1996-04-04|1996-06-05|DELIVER IN PERSON|REG AIR|ts wake aft| +80237|684921|9948|3|33|62894.37|0.05|0.08|N|O|1996-03-22|1996-04-05|1996-04-13|TAKE BACK RETURN|FOB|ly regular packages boost bl| +80237|452503|27522|4|9|13099.32|0.06|0.03|N|O|1996-04-28|1996-03-21|1996-05-23|COLLECT COD|FOB|uickly regular pinto beans haggle. ideas | +80237|204861|17366|5|34|60038.90|0.07|0.01|N|O|1996-03-30|1996-03-26|1996-04-03|TAKE BACK RETURN|SHIP|riously final deposits cajole carefully| +80237|98715|36219|6|48|82258.08|0.03|0.04|N|O|1996-06-06|1996-04-01|1996-06-19|DELIVER IN PERSON|SHIP| boost packages. silent, pending deposits | +80238|718041|30556|1|31|32829.31|0.09|0.06|N|O|1997-07-31|1997-08-28|1997-08-23|COLLECT COD|RAIL|s detect quickly furiously regular| +80238|113277|784|2|30|38708.10|0.03|0.01|N|O|1997-09-10|1997-08-13|1997-09-18|DELIVER IN PERSON|SHIP|platelets wake carefully blithely| +80238|832584|7617|3|19|28814.26|0.01|0.08|N|O|1997-08-23|1997-08-23|1997-09-21|COLLECT COD|AIR|fluffily pen| +80238|238414|38415|4|36|48686.40|0.02|0.02|N|O|1997-09-29|1997-09-18|1997-10-10|NONE|FOB| carefully unusual deposits are ca| +80239|836332|11365|1|49|62146.21|0.03|0.02|A|F|1993-08-26|1993-07-30|1993-09-11|TAKE BACK RETURN|AIR|across the quickly regular s| +80239|217317|4830|2|46|56777.80|0.08|0.03|A|F|1993-07-29|1993-08-17|1993-07-31|NONE|SHIP|efully unusual accou| +80239|436280|23805|3|2|2432.52|0.08|0.08|A|F|1993-10-13|1993-08-26|1993-10-26|TAKE BACK RETURN|SHIP| regular dolphins breach | +80239|543008|18029|4|44|46243.12|0.00|0.01|R|F|1993-07-02|1993-08-29|1993-07-18|DELIVER IN PERSON|FOB|out the regular accounts cajole flu| +80264|121582|34085|1|47|75368.26|0.08|0.06|N|O|1996-08-20|1996-07-21|1996-08-27|NONE|FOB| the unusua| +80265|274386|49397|1|44|59856.28|0.01|0.05|N|O|1998-04-29|1998-05-28|1998-05-10|NONE|MAIL|gular foxes among the ideas wake car| +80265|599531|24554|2|26|42393.26|0.00|0.01|N|O|1998-04-12|1998-05-06|1998-04-28|COLLECT COD|SHIP|slyly regular theodolites w| +80266|794554|19585|1|23|37915.96|0.08|0.01|R|F|1993-10-06|1993-08-19|1993-11-04|TAKE BACK RETURN|FOB|d accounts. furiously express| +80266|60386|47890|2|1|1346.38|0.08|0.00|A|F|1993-10-27|1993-10-07|1993-11-16|COLLECT COD|MAIL|lar pinto be| +80266|900392|37947|3|2|2784.70|0.02|0.06|A|F|1993-07-28|1993-09-01|1993-08-25|NONE|RAIL|riously even | +80267|944877|19914|1|26|49967.58|0.08|0.00|N|O|1997-12-25|1997-12-01|1998-01-05|NONE|TRUCK| furiously exp| +80268|595462|45463|1|39|60740.16|0.06|0.04|N|O|1998-09-09|1998-09-03|1998-09-30|NONE|MAIL|otes. furiously even | +80268|925182|12737|2|15|18107.10|0.02|0.01|N|O|1998-08-15|1998-08-21|1998-09-14|TAKE BACK RETURN|SHIP|oss the carefully express | +80268|532673|32674|3|28|47758.20|0.02|0.06|N|O|1998-11-04|1998-09-11|1998-12-02|COLLECT COD|AIR|uses sleep quickly| +80268|629432|41945|4|3|4084.20|0.07|0.02|N|O|1998-10-05|1998-09-02|1998-11-03|TAKE BACK RETURN|TRUCK|uests use slyly theodolit| +80269|441542|29067|1|3|4450.56|0.05|0.01|N|O|1996-07-15|1996-08-13|1996-08-10|NONE|SHIP|refully final frays n| +80269|991719|4239|2|15|27160.05|0.00|0.02|N|O|1996-11-03|1996-08-19|1996-11-21|TAKE BACK RETURN|SHIP|s integrate special theo| +80269|804908|4909|3|13|23567.18|0.04|0.00|N|O|1996-08-19|1996-10-04|1996-08-22|TAKE BACK RETURN|TRUCK|out the blithely final pinto beans | +80269|85835|10838|4|23|41879.09|0.03|0.04|N|O|1996-07-27|1996-08-08|1996-08-26|TAKE BACK RETURN|AIR|gular platelets after the| +80269|613844|13845|5|13|22851.53|0.08|0.05|N|O|1996-07-20|1996-08-07|1996-07-25|NONE|AIR| furiously according to| +80269|860989|48541|6|8|15599.52|0.01|0.03|N|O|1996-09-17|1996-08-25|1996-10-12|COLLECT COD|AIR|ep. slyly i| +80269|641265|41266|7|9|10856.07|0.05|0.04|N|O|1996-09-18|1996-08-29|1996-09-24|COLLECT COD|SHIP|its sleep qui| +80270|725399|428|1|36|51276.96|0.06|0.01|A|F|1994-08-08|1994-08-18|1994-08-18|NONE|MAIL|sual warthogs. special pinto beans outs| +80271|595184|32718|1|45|57562.20|0.01|0.03|N|O|1996-01-11|1996-01-10|1996-01-28|DELIVER IN PERSON|TRUCK|ngside of the| +80296|202522|27531|1|9|12820.59|0.07|0.01|R|F|1994-12-20|1994-12-30|1995-01-11|NONE|FOB|ove the even deposit| +80296|784851|47367|2|37|71625.34|0.02|0.04|A|F|1995-01-16|1994-12-25|1995-02-13|NONE|REG AIR|ing, pending accounts wa| +80296|975130|169|3|9|10845.81|0.01|0.04|R|F|1995-01-26|1994-12-30|1995-02-23|TAKE BACK RETURN|MAIL|carefully pending instructions | +80296|994088|19127|4|28|33097.12|0.03|0.06|R|F|1995-01-13|1994-11-23|1995-01-24|NONE|TRUCK|ial requests above the furio| +80296|627541|15078|5|41|60208.91|0.06|0.00|R|F|1995-01-04|1994-11-28|1995-01-08|NONE|MAIL|he carefully special pinto beans | +80297|815851|3400|1|23|40636.63|0.02|0.04|A|F|1993-08-20|1993-08-10|1993-08-23|COLLECT COD|MAIL| deposits. furiou| +80297|995768|8288|2|21|39138.12|0.03|0.00|R|F|1993-09-28|1993-07-03|1993-10-18|NONE|RAIL|around the accounts| +80297|870662|20663|3|32|52243.84|0.00|0.02|A|F|1993-09-04|1993-07-02|1993-09-28|TAKE BACK RETURN|SHIP|posits integ| +80297|203947|3948|4|6|11105.58|0.04|0.07|R|F|1993-07-12|1993-08-07|1993-08-02|TAKE BACK RETURN|REG AIR|packages nag slyly si| +80297|722051|47080|5|26|27898.52|0.09|0.03|R|F|1993-08-02|1993-08-27|1993-08-05|COLLECT COD|RAIL|. blithely final deposits are| +80297|509375|21886|6|16|22149.60|0.02|0.06|A|F|1993-06-17|1993-08-27|1993-07-08|COLLECT COD|TRUCK|e along the furio| +80298|732833|20376|1|46|85826.80|0.04|0.08|N|O|1996-05-08|1996-06-19|1996-06-01|COLLECT COD|MAIL|ggle blithely close requests. quietly | +80298|722060|34575|2|17|18394.51|0.06|0.07|N|O|1996-07-29|1996-06-02|1996-08-27|TAKE BACK RETURN|TRUCK|xcuses. slyly bold | +80298|651055|26082|3|34|34204.68|0.06|0.05|N|O|1996-07-12|1996-06-16|1996-08-11|TAKE BACK RETURN|REG AIR|its mold care| +80299|98121|35625|1|34|38050.08|0.06|0.04|A|F|1993-01-24|1993-02-10|1993-02-11|TAKE BACK RETURN|REG AIR| regular account| +80299|104668|42175|2|14|23417.24|0.06|0.06|R|F|1993-02-16|1993-01-30|1993-03-16|DELIVER IN PERSON|FOB|as use furiously carefully u| +80300|604850|17363|1|14|24567.48|0.10|0.08|N|O|1997-10-23|1997-09-06|1997-11-20|DELIVER IN PERSON|RAIL|lets cajole quickly. | +80300|702533|2534|2|28|42994.00|0.02|0.01|N|O|1997-08-15|1997-09-19|1997-09-06|NONE|TRUCK|the dependencie| +80300|458756|21266|3|27|46297.71|0.10|0.01|N|O|1997-07-07|1997-09-16|1997-07-08|TAKE BACK RETURN|REG AIR|e ideas sleep| +80300|310551|35564|4|50|78077.00|0.07|0.08|N|O|1997-08-23|1997-09-08|1997-08-30|NONE|REG AIR|ily along the even instructions. furiousl| +80300|422150|34659|5|49|52534.37|0.03|0.08|N|O|1997-07-21|1997-09-08|1997-07-26|COLLECT COD|RAIL|ve requests nag sly| +80300|62798|37801|6|33|58106.07|0.03|0.04|N|O|1997-09-09|1997-09-01|1997-09-29|COLLECT COD|FOB|ter the pinto beans cajole quick| +80300|432282|32283|7|9|10928.34|0.06|0.04|N|O|1997-09-28|1997-09-12|1997-10-28|NONE|REG AIR|ach quickly ruthlessly spec| +80301|355577|5578|1|39|63669.84|0.05|0.05|N|O|1998-04-11|1998-03-21|1998-04-26|COLLECT COD|SHIP|hely regul| +80301|170745|20746|2|1|1815.74|0.03|0.03|N|O|1998-03-08|1998-04-07|1998-04-05|COLLECT COD|TRUCK| packages must eat quickly according | +80301|709210|9211|3|16|19506.88|0.08|0.06|N|O|1998-05-21|1998-04-12|1998-05-30|DELIVER IN PERSON|TRUCK|inal grouches| +80301|676448|38962|4|25|35610.25|0.04|0.04|N|O|1998-04-13|1998-03-20|1998-04-28|DELIVER IN PERSON|TRUCK|sits print quickly accor| +80301|47441|34942|5|1|1388.44|0.06|0.04|N|O|1998-03-11|1998-04-25|1998-03-22|COLLECT COD|MAIL|ly final theodolites are blithely above| +80302|516865|16866|1|19|35754.96|0.09|0.07|N|O|1996-11-16|1996-10-02|1996-12-03|DELIVER IN PERSON|RAIL|e. blithely ironic requests | +80302|942415|17452|2|32|46635.84|0.06|0.07|N|O|1996-08-25|1996-08-28|1996-09-13|TAKE BACK RETURN|TRUCK|s will kindle sly| +80302|166321|16322|3|1|1387.32|0.10|0.03|N|O|1996-09-03|1996-10-11|1996-09-06|DELIVER IN PERSON|SHIP| accounts haggle bol| +80302|354201|4202|4|17|21338.23|0.01|0.00|N|O|1996-08-18|1996-09-18|1996-08-22|DELIVER IN PERSON|MAIL|ess asymptotes. regular, express t| +80302|54859|4860|5|37|67112.45|0.10|0.00|N|O|1996-07-29|1996-10-03|1996-07-31|TAKE BACK RETURN|FOB|above the blithe| +80302|13528|13529|6|12|17298.24|0.10|0.03|N|O|1996-09-15|1996-08-24|1996-09-20|DELIVER IN PERSON|AIR|efully pending deposits. carefully bold| +80302|352866|40388|7|48|92104.80|0.10|0.01|N|O|1996-09-10|1996-10-16|1996-10-02|COLLECT COD|TRUCK|uctions cajole slyly. silently | +80303|604293|29318|1|33|39509.58|0.02|0.01|N|O|1996-04-05|1996-04-23|1996-04-06|DELIVER IN PERSON|SHIP|jole slyly according to the fluf| +80303|345216|32735|2|38|47925.60|0.09|0.02|N|O|1996-06-05|1996-05-01|1996-06-09|NONE|TRUCK|ular asymptotes. furiou| +80303|37723|12724|3|13|21589.36|0.06|0.07|N|O|1996-03-08|1996-04-12|1996-03-28|COLLECT COD|SHIP|blithely bold pint| +80303|8860|8861|4|33|58372.38|0.07|0.01|N|O|1996-05-13|1996-05-01|1996-05-28|COLLECT COD|AIR|uietly final packages could hagg| +80303|903320|3321|5|23|30435.44|0.05|0.02|N|O|1996-03-24|1996-05-19|1996-04-17|COLLECT COD|FOB|ites. regular| +80303|95006|32510|6|36|36036.00|0.07|0.01|N|O|1996-05-02|1996-04-27|1996-05-17|COLLECT COD|RAIL|cross the slyly ironic theo| +80303|763680|38711|7|41|71489.65|0.07|0.08|N|O|1996-03-02|1996-04-23|1996-03-26|NONE|AIR|ully speci| +80328|153806|41316|1|20|37196.00|0.10|0.05|A|F|1993-05-24|1993-06-17|1993-05-30|NONE|TRUCK|g. express, pending requests use | +80328|11152|11153|2|16|17010.40|0.07|0.08|A|F|1993-06-17|1993-07-05|1993-06-26|NONE|REG AIR| about the fluffily | +80329|617509|5046|1|1|1426.47|0.04|0.02|N|O|1998-03-19|1998-03-27|1998-03-27|NONE|MAIL|thely careful packages cajole slyly| +80329|463093|38112|2|11|11616.77|0.01|0.07|N|O|1998-02-18|1998-04-24|1998-02-28|TAKE BACK RETURN|AIR|ests wake sl| +80330|528428|3449|1|3|4369.20|0.04|0.02|N|O|1997-10-31|1997-09-16|1997-11-04|DELIVER IN PERSON|REG AIR|lyly ironic, even instruction| +80330|275500|25501|2|1|1475.49|0.04|0.01|N|O|1997-10-07|1997-10-18|1997-10-30|COLLECT COD|REG AIR|usual deposits abo| +80330|317851|17852|3|26|48589.84|0.03|0.02|N|O|1997-08-30|1997-11-01|1997-09-14|TAKE BACK RETURN|RAIL|posits can impress final, pe| +80330|109653|9654|4|2|3325.30|0.05|0.06|N|O|1997-10-10|1997-10-04|1997-10-22|DELIVER IN PERSON|RAIL| beans use. car| +80330|922692|35211|5|13|22290.45|0.06|0.03|N|O|1997-09-13|1997-10-07|1997-10-01|TAKE BACK RETURN|AIR| daring requests are sly| +80331|487616|12635|1|34|54522.06|0.07|0.06|A|F|1994-11-06|1994-11-25|1994-11-18|DELIVER IN PERSON|MAIL|tions. instructions impress. ex| +80331|356110|6111|2|6|6996.60|0.01|0.00|R|F|1995-01-29|1995-01-10|1995-02-04|DELIVER IN PERSON|RAIL|eposits sl| +80331|124855|49860|3|29|54515.65|0.10|0.08|A|F|1994-11-25|1994-11-29|1994-12-05|TAKE BACK RETURN|SHIP| affix after the reg| +80331|434935|22460|4|1|1869.91|0.00|0.06|R|F|1994-11-30|1994-12-11|1994-12-28|DELIVER IN PERSON|AIR|xes haggle care| +80331|947544|10063|5|27|42970.50|0.07|0.04|A|F|1995-01-09|1994-11-16|1995-01-14|COLLECT COD|TRUCK|eodolites | +80331|370124|45139|6|37|44182.07|0.02|0.07|R|F|1995-02-11|1994-12-30|1995-03-10|DELIVER IN PERSON|REG AIR|lithely quick depo| +80332|811152|23669|1|15|15946.65|0.00|0.02|N|O|1995-12-05|1995-12-27|1995-12-28|NONE|TRUCK|ages sleep ac| +80332|27053|39554|2|45|44102.25|0.07|0.04|N|O|1995-12-06|1996-01-04|1996-01-05|COLLECT COD|AIR|y along the ironic f| +80333|650526|38066|1|19|28053.31|0.06|0.08|R|F|1994-09-22|1994-08-13|1994-10-18|DELIVER IN PERSON|MAIL|r the furiously expres| +80333|383087|33088|2|11|12870.77|0.05|0.00|R|F|1994-08-27|1994-09-02|1994-08-30|COLLECT COD|TRUCK|ideas affix care| +80333|534562|47073|3|22|35123.88|0.03|0.03|R|F|1994-09-30|1994-08-30|1994-10-28|COLLECT COD|RAIL|e carefully final dependen| +80333|380417|42925|4|21|31445.40|0.03|0.05|A|F|1994-09-26|1994-09-09|1994-10-09|COLLECT COD|RAIL|pades are beyond th| +80333|663436|13437|5|3|4198.20|0.05|0.04|A|F|1994-09-13|1994-08-04|1994-10-04|NONE|SHIP|ltipliers serve furiously agai| +80334|633413|8438|1|12|16156.56|0.08|0.03|N|O|1998-06-09|1998-07-21|1998-06-30|TAKE BACK RETURN|TRUCK|xpress pinto bea| +80334|769753|44784|2|38|69263.36|0.02|0.03|N|O|1998-07-02|1998-07-01|1998-07-09|COLLECT COD|AIR|ctions; pending pac| +80334|237500|37501|3|38|54624.62|0.01|0.07|N|O|1998-06-18|1998-06-11|1998-06-19|NONE|REG AIR|al instructions wake s| +80334|648451|10964|4|20|27988.40|0.00|0.02|N|O|1998-06-27|1998-06-29|1998-07-03|DELIVER IN PERSON|RAIL|y regular excuses among the furiously | +80334|505796|5797|5|37|66665.49|0.06|0.04|N|O|1998-06-03|1998-06-24|1998-06-29|TAKE BACK RETURN|AIR|lyly special accounts cajole| +80334|903161|40716|6|39|45400.68|0.07|0.02|N|O|1998-06-23|1998-06-14|1998-06-29|COLLECT COD|TRUCK|furiously. caref| +80335|471235|33745|1|44|53073.24|0.03|0.02|N|O|1996-09-21|1996-10-13|1996-09-24|COLLECT COD|SHIP|e the slyly bold dugouts. ironic reques| +80335|32680|45181|2|14|22577.52|0.02|0.02|N|O|1996-08-13|1996-08-22|1996-08-29|TAKE BACK RETURN|MAIL|dependencies above the requests haggle abou| +80335|247270|34783|3|2|2434.52|0.10|0.08|N|O|1996-11-02|1996-08-23|1996-11-11|COLLECT COD|RAIL|ove the express theodolites.| +80335|852518|15036|4|39|57348.33|0.05|0.00|N|O|1996-09-24|1996-09-10|1996-10-01|TAKE BACK RETURN|FOB|ual foxes sleep | +80335|265066|15067|5|8|8248.40|0.07|0.00|N|O|1996-10-25|1996-09-03|1996-11-24|COLLECT COD|FOB|onic requests snooze slyly carefully ironi| +80335|961865|24385|6|27|52024.14|0.00|0.04|N|O|1996-09-03|1996-10-20|1996-10-03|NONE|FOB|re. regular, silent foxes in| +80335|51452|38956|7|41|57541.45|0.07|0.02|N|O|1996-08-07|1996-09-03|1996-08-28|DELIVER IN PERSON|MAIL|ts. fluffi| +80360|750707|13223|1|33|58003.11|0.07|0.08|R|F|1994-03-29|1994-02-11|1994-04-04|COLLECT COD|TRUCK|gular decoys. slyly pend| +80360|132172|32173|2|4|4816.68|0.09|0.03|A|F|1994-03-05|1994-02-15|1994-04-03|COLLECT COD|SHIP|ithely unusua| +80360|412444|12445|3|36|48831.12|0.04|0.05|A|F|1994-01-11|1994-02-20|1994-01-27|DELIVER IN PERSON|TRUCK| about the instructions. carefull| +80360|940178|15215|4|50|60906.50|0.08|0.08|R|F|1994-01-15|1994-02-05|1994-02-10|NONE|REG AIR|lites. quickly stealthy theodolites at t| +80361|206602|31611|1|13|19611.67|0.04|0.00|N|O|1996-06-19|1996-05-13|1996-07-01|COLLECT COD|REG AIR|en theodolites wake slyly final e| +80361|357322|44844|2|16|22068.96|0.08|0.04|N|O|1996-06-01|1996-05-25|1996-06-27|DELIVER IN PERSON|SHIP|ntil the quickly ironic sauternes. pendin| +80361|507335|19846|3|39|52350.09|0.02|0.07|N|O|1996-03-29|1996-05-07|1996-04-03|NONE|AIR|posits are notornis. requests solve c| +80361|768881|6427|4|10|19498.50|0.07|0.02|N|O|1996-04-06|1996-05-07|1996-04-18|DELIVER IN PERSON|REG AIR|ross the furiously ironic foxes. fur| +80361|578718|3741|5|29|52104.01|0.07|0.02|N|O|1996-03-28|1996-05-12|1996-04-04|COLLECT COD|TRUCK|s among the fluffily bold pinto| +80361|502797|40328|6|26|46794.02|0.02|0.00|N|O|1996-03-14|1996-04-06|1996-04-12|DELIVER IN PERSON|RAIL|y after the carefully | +80361|492930|17949|7|4|7691.64|0.08|0.06|N|O|1996-04-24|1996-05-20|1996-05-20|DELIVER IN PERSON|REG AIR|arefully ironic| +80362|664719|27233|1|13|21887.84|0.06|0.04|A|F|1994-04-05|1994-06-06|1994-04-19|TAKE BACK RETURN|TRUCK|r epitaphs. | +80362|920577|8132|2|37|59108.61|0.08|0.05|R|F|1994-07-13|1994-05-18|1994-08-11|TAKE BACK RETURN|MAIL|t after the slyly ironic multipliers. slyl| +80362|134201|21708|3|19|23468.80|0.03|0.04|A|F|1994-04-23|1994-04-25|1994-04-26|TAKE BACK RETURN|RAIL|oxes are quickly. unu| +80362|513555|1086|4|19|29802.07|0.01|0.07|R|F|1994-03-15|1994-04-25|1994-03-29|TAKE BACK RETURN|RAIL|ns cajole care| +80362|311440|23947|5|50|72571.50|0.03|0.00|A|F|1994-04-17|1994-05-15|1994-04-27|TAKE BACK RETURN|SHIP|es eat carefully regular requests. quickl| +80363|954228|29267|1|39|50005.02|0.07|0.02|R|F|1994-10-05|1994-09-14|1994-10-27|TAKE BACK RETURN|MAIL|pending theodolites. requests cajole| +80363|705985|18500|2|4|7963.80|0.00|0.01|R|F|1994-09-12|1994-10-28|1994-10-04|NONE|AIR|pending, unusual dependencies| +80363|488404|914|3|21|29239.98|0.00|0.08|A|F|1994-11-10|1994-10-06|1994-12-10|TAKE BACK RETURN|RAIL|express packages wake abov| +80363|603727|41264|4|40|65227.60|0.08|0.05|A|F|1994-10-17|1994-09-10|1994-10-26|DELIVER IN PERSON|AIR|usly regular pinto beans.| +80363|823467|48500|5|49|68130.58|0.03|0.01|R|F|1994-11-27|1994-09-24|1994-12-01|TAKE BACK RETURN|TRUCK| alongside of the accounts ar| +80363|7762|20263|6|31|51762.56|0.05|0.01|R|F|1994-09-06|1994-10-14|1994-09-29|DELIVER IN PERSON|REG AIR| ironic ins| +80363|439350|39351|7|48|61887.84|0.09|0.00|A|F|1994-11-29|1994-10-24|1994-12-07|DELIVER IN PERSON|AIR|ong the furiously unusua| +80364|145219|32726|1|10|12642.10|0.01|0.02|N|O|1996-07-16|1996-07-30|1996-07-17|TAKE BACK RETURN|AIR|uffily final instructions. bol| +80364|687557|25097|2|19|29345.88|0.03|0.02|N|O|1996-09-01|1996-08-07|1996-09-11|DELIVER IN PERSON|REG AIR|ts; requests wake furiously slyly final dep| +80364|762572|25088|3|14|22883.56|0.10|0.04|N|O|1996-06-19|1996-07-18|1996-07-01|NONE|FOB|yly special deposits. sl| +80364|544649|44650|4|39|66051.18|0.09|0.07|N|O|1996-06-03|1996-08-07|1996-06-14|NONE|RAIL|st regularly even instructions. theodo| +80365|763041|587|1|30|33120.30|0.04|0.01|N|O|1997-10-25|1998-01-13|1997-11-12|NONE|FOB|s. ideas integrate f| +80365|419440|6965|2|24|32626.08|0.07|0.06|N|O|1998-01-26|1997-12-08|1998-01-28|NONE|RAIL|onic requests promise close, silent| +80365|516295|16296|3|43|56384.61|0.09|0.08|N|O|1998-01-23|1997-12-07|1998-02-09|DELIVER IN PERSON|MAIL| across the quickly bold accou| +80365|358111|8112|4|28|32734.80|0.08|0.07|N|O|1998-01-18|1997-12-31|1998-02-08|NONE|SHIP|ly slyly ironic dep| +80365|754819|4820|5|4|7495.12|0.08|0.08|N|O|1998-01-09|1997-12-10|1998-02-04|NONE|AIR|s wake slyly alongside of the slyly| +80366|197550|47551|1|46|75787.30|0.09|0.04|N|O|1995-07-30|1995-09-12|1995-08-06|COLLECT COD|REG AIR| deposits. quic| +80366|210982|10983|2|1|1892.97|0.04|0.05|N|O|1995-08-06|1995-10-08|1995-08-28|NONE|TRUCK|tes cajole. blithely | +80366|967518|17519|3|22|34880.34|0.00|0.03|N|O|1995-11-08|1995-10-02|1995-11-25|TAKE BACK RETURN|TRUCK|slyly brave instructions accordi| +80366|72239|47242|4|36|43604.28|0.01|0.08|N|O|1995-10-03|1995-09-27|1995-10-17|COLLECT COD|RAIL|boost carefully according to the s| +80366|111097|48604|5|3|3324.27|0.09|0.07|N|O|1995-09-20|1995-10-06|1995-09-21|DELIVER IN PERSON|TRUCK|gular dependencies cajole always| +80367|975694|25695|1|29|51319.85|0.04|0.07|A|F|1992-05-14|1992-06-14|1992-05-31|NONE|AIR|counts are special requests. bli| +80367|474419|49438|2|28|39014.92|0.08|0.01|R|F|1992-05-12|1992-04-23|1992-05-18|NONE|SHIP|al requests haggle sheav| +80367|559528|34551|3|25|39687.50|0.00|0.00|A|F|1992-05-12|1992-06-03|1992-06-10|DELIVER IN PERSON|RAIL| dependencie| +80392|519710|44731|1|11|19026.59|0.04|0.03|N|O|1996-04-27|1996-02-16|1996-05-08|NONE|RAIL|ets poach. furiously| +80392|759160|34191|2|17|20725.21|0.04|0.05|N|O|1996-04-18|1996-03-19|1996-04-19|NONE|TRUCK|p about the slyly eve| +80392|195926|20933|3|41|82898.72|0.00|0.04|N|O|1996-05-12|1996-02-22|1996-06-07|TAKE BACK RETURN|RAIL| the thinly unusual pinto beans. b| +80392|924400|36919|4|4|5697.44|0.01|0.02|N|O|1996-05-11|1996-03-06|1996-05-23|DELIVER IN PERSON|AIR| final, even p| +80392|389922|2430|5|32|64381.12|0.00|0.06|N|O|1996-02-02|1996-03-04|1996-02-08|DELIVER IN PERSON|REG AIR| epitaphs! iron| +80392|405643|18152|6|36|55750.32|0.07|0.00|N|O|1996-05-05|1996-03-01|1996-05-30|NONE|REG AIR|eep blithely ironic packages? carefully| +80393|954845|4846|1|4|7599.20|0.10|0.06|N|O|1997-08-21|1997-07-25|1997-09-08|NONE|MAIL|ound the carefully pending theodol| +80393|69272|19273|2|2|2482.54|0.04|0.00|N|O|1997-07-17|1997-07-30|1997-07-29|NONE|AIR|uriously? regu| +80393|250574|38090|3|31|47261.36|0.00|0.00|N|O|1997-07-17|1997-07-24|1997-08-11|DELIVER IN PERSON|TRUCK| theodolites. | +80393|391111|3619|4|48|57700.80|0.01|0.03|N|O|1997-07-18|1997-09-15|1997-08-03|NONE|SHIP|ithely final deposits are| +80393|395654|20669|5|24|41991.36|0.05|0.01|N|O|1997-07-15|1997-09-03|1997-07-17|DELIVER IN PERSON|TRUCK|riously thin, silent pa| +80394|273779|11295|1|36|63099.36|0.05|0.00|N|O|1997-05-03|1997-05-31|1997-05-29|COLLECT COD|SHIP|ithely according to the furiously express d| +80394|402398|27415|2|47|61117.39|0.10|0.00|N|O|1997-07-15|1997-05-20|1997-08-11|DELIVER IN PERSON|AIR| blithely even requests. carefully regul| +80394|98361|35865|3|34|46218.24|0.00|0.01|N|O|1997-05-22|1997-04-27|1997-06-15|NONE|MAIL|lar foxes acc| +80394|142809|5312|4|11|20369.80|0.08|0.03|N|O|1997-04-11|1997-06-07|1997-04-19|TAKE BACK RETURN|REG AIR|he carefully express dinos. dependencies| +80394|179765|42269|5|14|25826.64|0.04|0.06|N|O|1997-04-17|1997-05-25|1997-05-15|COLLECT COD|TRUCK|ans. slyly final requests wake. fluffi| +80394|294861|32377|6|49|90936.65|0.03|0.08|N|O|1997-04-04|1997-04-25|1997-04-06|TAKE BACK RETURN|REG AIR|ironically final excuses are. deposi| +80394|717584|30099|7|40|64062.00|0.01|0.06|N|O|1997-05-18|1997-06-08|1997-05-28|DELIVER IN PERSON|TRUCK|s accounts haggle carefully| +80395|423196|23197|1|9|10072.53|0.05|0.07|R|F|1993-01-14|1993-03-01|1993-01-27|DELIVER IN PERSON|MAIL|ages sleep close| +80395|643484|18509|2|24|34258.80|0.09|0.05|A|F|1993-05-03|1993-03-03|1993-05-23|NONE|TRUCK|uffily pending accounts whithout t| +80396|250628|629|1|26|41043.86|0.02|0.05|R|F|1994-04-19|1994-07-01|1994-05-06|NONE|FOB|requests about the slyly | +80396|298054|10560|2|36|37873.44|0.00|0.04|R|F|1994-07-30|1994-06-17|1994-08-24|NONE|FOB|n pinto bea| +80396|389157|14172|3|2|2492.28|0.01|0.08|A|F|1994-07-04|1994-07-05|1994-08-03|DELIVER IN PERSON|TRUCK| even foxes use finally. sl| +80396|556733|6734|4|48|85906.08|0.01|0.06|R|F|1994-06-21|1994-05-28|1994-06-26|DELIVER IN PERSON|MAIL|es are alongside of the slyly e| +80396|999164|11684|5|14|17683.68|0.06|0.06|R|F|1994-06-22|1994-05-14|1994-06-26|NONE|REG AIR| special packages are sometimes q| +80396|939552|27107|6|39|62068.89|0.00|0.06|R|F|1994-07-19|1994-05-18|1994-08-16|DELIVER IN PERSON|AIR|ounts. even pac| +80396|49787|49788|7|28|48629.84|0.10|0.04|A|F|1994-06-29|1994-06-26|1994-07-24|DELIVER IN PERSON|MAIL| carefully regu| +80397|769622|44653|1|3|5074.77|0.03|0.03|R|F|1993-04-02|1993-06-18|1993-04-28|COLLECT COD|SHIP|sly sly deposits boost.| +80397|22794|47795|2|11|18884.69|0.01|0.04|A|F|1993-06-22|1993-06-10|1993-07-19|TAKE BACK RETURN|FOB|der fluffily along the expre| +80397|85162|22666|3|22|25237.52|0.04|0.01|R|F|1993-07-02|1993-05-13|1993-07-22|TAKE BACK RETURN|REG AIR|old foxes are busily bold excuses. regul| +80397|311721|36734|4|25|43317.75|0.03|0.01|R|F|1993-05-17|1993-05-17|1993-05-31|NONE|FOB|ans sleep instructions. never silent| +80397|88830|38831|5|26|47289.58|0.04|0.08|R|F|1993-07-11|1993-06-25|1993-07-30|NONE|TRUCK|olites detect after the deposits. bold ep| +80397|950640|13160|6|7|11834.20|0.02|0.07|A|F|1993-05-12|1993-04-27|1993-06-08|TAKE BACK RETURN|TRUCK|cajole slyly? carefully even courts after | +80398|347184|34703|1|30|36935.10|0.02|0.04|N|O|1996-01-08|1995-11-11|1996-01-09|TAKE BACK RETURN|AIR|the carefully silent foxes wake quickly ev| +80398|109690|34695|2|45|76486.05|0.06|0.01|N|O|1995-10-21|1995-12-05|1995-11-19|NONE|TRUCK|usual, regular ideas| +80398|555595|5596|3|17|28059.69|0.05|0.03|N|O|1996-01-03|1995-11-29|1996-01-25|DELIVER IN PERSON|MAIL|ly after the pending, bold asymptotes. qu| +80398|869373|6925|4|30|40269.90|0.06|0.02|N|O|1995-11-25|1995-12-05|1995-11-28|NONE|REG AIR| instructions boost slyly; slyly| +80398|543977|18998|5|33|66691.35|0.07|0.07|N|O|1995-11-08|1995-11-22|1995-11-29|TAKE BACK RETURN|TRUCK|eaves sleep slyly. bold pinto beans al| +80398|606485|18998|6|28|38960.60|0.07|0.00|N|O|1995-10-17|1995-12-15|1995-10-27|DELIVER IN PERSON|RAIL|tect at the blithely regula| +80398|177065|14575|7|41|46824.46|0.04|0.07|N|O|1995-12-14|1995-11-27|1995-12-18|NONE|MAIL|y final pinto bea| +80399|916335|3890|1|40|54051.60|0.06|0.00|A|F|1992-10-01|1992-10-11|1992-10-03|NONE|REG AIR|y final deposits. even accou| +80399|838959|26508|2|32|60733.12|0.05|0.04|R|F|1992-08-27|1992-09-19|1992-09-02|TAKE BACK RETURN|FOB|te carefully before th| +80399|379468|41976|3|10|15474.50|0.03|0.01|A|F|1992-09-17|1992-10-08|1992-10-02|NONE|SHIP|ly silent pinto beans nag furio| +80399|711871|36900|4|43|80962.12|0.05|0.07|A|F|1992-08-05|1992-10-11|1992-08-14|TAKE BACK RETURN|SHIP|eep. fluff| +80399|407560|32577|5|14|20545.56|0.07|0.07|A|F|1992-07-31|1992-09-16|1992-08-28|TAKE BACK RETURN|TRUCK|es. special packages cajole fur| +80399|857155|7156|6|22|24466.42|0.07|0.02|R|F|1992-09-27|1992-10-07|1992-10-13|TAKE BACK RETURN|REG AIR|bove the blithely r| +80399|190229|2733|7|11|14511.42|0.06|0.06|A|F|1992-10-26|1992-10-17|1992-10-28|DELIVER IN PERSON|FOB|out the pending, express deposits. | +80424|176270|1277|1|9|12116.43|0.00|0.05|N|O|1998-03-29|1998-04-24|1998-04-13|COLLECT COD|FOB|deposits: quickly express depend| +80424|565191|27703|2|20|25123.40|0.01|0.04|N|O|1998-03-03|1998-05-19|1998-03-16|COLLECT COD|AIR|accounts. blithely| +80424|158486|33493|3|44|67957.12|0.01|0.05|N|O|1998-05-23|1998-05-22|1998-05-27|TAKE BACK RETURN|SHIP| breach quickly | +80424|659440|46980|4|28|39183.48|0.05|0.01|N|O|1998-06-17|1998-05-03|1998-06-18|NONE|FOB|furiously regular ideas nag furiously. q| +80424|196120|33630|5|50|60806.00|0.06|0.05|N|O|1998-05-14|1998-05-06|1998-06-01|NONE|SHIP|thin, bold instructions haggle. bold reques| +80425|932626|45145|1|30|49757.40|0.01|0.06|N|O|1996-05-13|1996-07-06|1996-05-23|NONE|FOB|ts sleep qui| +80425|636200|23737|2|6|6817.02|0.04|0.00|N|O|1996-08-06|1996-06-05|1996-08-14|DELIVER IN PERSON|MAIL|among the flu| +80425|599139|24162|3|42|52000.62|0.09|0.03|N|O|1996-06-21|1996-06-04|1996-07-06|DELIVER IN PERSON|AIR|ages wake furiously. sauternes sleep | +80425|722828|22829|4|47|86987.13|0.00|0.05|N|O|1996-07-01|1996-06-26|1996-07-21|NONE|SHIP|st the ironic requests| +80425|562412|49946|5|24|35385.36|0.00|0.02|N|O|1996-04-19|1996-06-16|1996-05-01|NONE|AIR|sleep furiously. carefully even | +80425|457515|45043|6|20|29449.80|0.02|0.06|N|O|1996-07-19|1996-06-15|1996-08-13|TAKE BACK RETURN|FOB|its are. dependencies are until | +80426|254285|41801|1|25|30981.75|0.09|0.06|A|F|1992-05-12|1992-06-28|1992-06-08|NONE|MAIL|he special theodolites. unus| +80426|767094|4640|2|37|42959.22|0.08|0.04|A|F|1992-05-02|1992-06-21|1992-05-24|TAKE BACK RETURN|MAIL|se carefully across the fluffily| +80426|541786|16807|3|39|71282.64|0.02|0.07|R|F|1992-06-08|1992-07-16|1992-06-21|COLLECT COD|FOB|iously special requests| +80426|784153|9184|4|44|54433.28|0.00|0.02|A|F|1992-07-13|1992-06-28|1992-08-12|COLLECT COD|REG AIR| asymptotes. e| +80427|607564|7565|1|13|19129.89|0.08|0.08|N|O|1996-04-30|1996-04-01|1996-05-16|NONE|FOB|deas are carefully. quick| +80428|953045|15565|1|6|6588.00|0.08|0.00|N|O|1996-11-11|1996-11-11|1996-11-16|NONE|SHIP|nstructions sleep slyly! fluffily silent| +80428|816724|29241|2|6|9844.08|0.04|0.04|N|O|1996-11-28|1996-11-09|1996-12-25|COLLECT COD|REG AIR|ites cajole blith| +80428|665867|3407|3|6|10996.98|0.06|0.02|N|O|1996-09-29|1996-10-04|1996-09-30|DELIVER IN PERSON|MAIL|ntegrate at the finally re| +80428|219958|32463|4|10|18779.40|0.01|0.05|N|O|1996-12-05|1996-09-18|1996-12-21|TAKE BACK RETURN|TRUCK|y regular | +80428|822108|47141|5|9|9270.54|0.09|0.00|N|O|1996-09-13|1996-10-21|1996-09-27|DELIVER IN PERSON|SHIP| regular ideas will de| +80429|3409|3410|1|8|10499.20|0.10|0.01|N|O|1995-10-06|1995-12-13|1995-10-08|TAKE BACK RETURN|TRUCK|e furiously final ideas. fur| +80429|278474|15990|2|28|40668.88|0.01|0.04|N|O|1996-01-27|1995-12-10|1996-02-25|DELIVER IN PERSON|TRUCK|ial packages about the special platelets a| +80430|174548|49555|1|22|35695.88|0.09|0.01|N|O|1996-03-08|1996-02-26|1996-03-25|COLLECT COD|TRUCK|nts are. ironic packages | +80430|617838|42863|2|21|36871.80|0.06|0.03|N|O|1996-03-16|1996-02-12|1996-03-26|DELIVER IN PERSON|AIR|bold foxes cajole quickly. ironi| +80430|999169|24208|3|31|39311.72|0.02|0.04|N|O|1996-01-07|1996-03-05|1996-02-04|COLLECT COD|TRUCK|special foxes engage ironic,| +80430|32264|32265|4|48|57420.48|0.09|0.07|N|O|1996-03-12|1996-03-03|1996-03-29|NONE|REG AIR|ly after the carefully pending pinto be| +80430|246426|33939|5|13|17841.33|0.07|0.07|N|O|1996-01-26|1996-01-23|1996-02-01|NONE|MAIL|ully. furiously close requests | +80431|245857|45858|1|20|36056.80|0.02|0.05|N|O|1998-05-06|1998-03-15|1998-06-03|NONE|MAIL| asymptotes. dolphins haggle blith| +80456|561938|36961|1|21|41998.11|0.02|0.00|A|F|1992-07-22|1992-08-18|1992-08-05|DELIVER IN PERSON|REG AIR|ely bold ideas. quick| +80457|321267|33774|1|25|32206.25|0.03|0.07|N|O|1996-10-28|1996-10-24|1996-10-29|NONE|MAIL|rly quickly| +80457|525017|38|2|38|39595.62|0.04|0.07|N|O|1996-11-15|1996-09-20|1996-12-12|DELIVER IN PERSON|REG AIR|y above the quickly regular re| +80457|946414|21451|3|33|48192.21|0.06|0.04|N|O|1996-11-07|1996-10-10|1996-12-02|NONE|AIR| ironic accounts are | +80457|366705|4227|4|46|81497.74|0.06|0.06|N|O|1996-09-07|1996-09-27|1996-09-15|DELIVER IN PERSON|AIR|efully ironic deposits haggle car| +80457|207541|45054|5|35|50698.55|0.05|0.02|N|O|1996-12-04|1996-09-21|1996-12-10|TAKE BACK RETURN|REG AIR|structions. closely re| +80457|126987|14494|6|34|68475.32|0.00|0.04|N|O|1996-10-21|1996-09-21|1996-11-04|COLLECT COD|RAIL|ly against | +80457|258176|8177|7|35|39695.60|0.08|0.06|N|O|1996-11-11|1996-09-13|1996-12-07|COLLECT COD|MAIL| along the pendi| +80458|156785|19289|1|45|82880.10|0.03|0.03|N|O|1996-02-13|1996-03-15|1996-02-18|NONE|REG AIR|ess accounts in| +80459|617302|17303|1|19|23166.13|0.05|0.01|R|F|1995-02-22|1995-01-13|1995-03-20|TAKE BACK RETURN|SHIP|y special deposits haggle finally deposits| +80460|343679|18692|1|2|3445.32|0.02|0.01|N|O|1996-11-26|1996-10-05|1996-12-24|NONE|MAIL|ts haggle slyly final accounts. even | +80460|206792|31801|2|21|35674.38|0.08|0.06|N|O|1996-12-06|1996-10-03|1996-12-17|COLLECT COD|FOB| slyly around the fl| +80460|539094|39095|3|23|26060.61|0.03|0.04|N|O|1996-09-04|1996-11-01|1996-09-11|NONE|RAIL|ular pinto beans. furiously final inst| +80460|537416|12437|4|36|52322.04|0.01|0.06|N|O|1996-10-17|1996-11-04|1996-11-04|TAKE BACK RETURN|REG AIR|nst the slyly blithe asymptotes. blith| +80460|334593|22112|5|7|11393.06|0.10|0.05|N|O|1996-10-27|1996-11-21|1996-11-17|NONE|TRUCK|even instru| +80460|496601|34129|6|7|11183.06|0.06|0.07|N|O|1996-12-08|1996-10-09|1997-01-05|TAKE BACK RETURN|SHIP|carefully. fluffily ex| +80460|359330|34345|7|38|52794.16|0.04|0.05|N|O|1996-09-25|1996-10-17|1996-10-14|COLLECT COD|FOB| silent deposits boos| +80461|255336|30347|1|15|19369.80|0.04|0.02|N|O|1996-01-11|1996-03-28|1996-01-30|COLLECT COD|AIR|press deposits cajole f| +80461|418218|18219|2|47|53400.93|0.02|0.02|N|O|1996-01-18|1996-03-12|1996-02-11|DELIVER IN PERSON|AIR| accounts boost fluffily| +80461|976897|14455|3|10|19738.50|0.03|0.03|N|O|1996-03-05|1996-03-17|1996-03-08|COLLECT COD|REG AIR|deposits a| +80461|691512|29052|4|3|4510.44|0.08|0.01|N|O|1996-03-17|1996-03-11|1996-04-02|TAKE BACK RETURN|TRUCK|ackages above the| +80461|236935|36936|5|22|41182.24|0.06|0.06|N|O|1996-02-05|1996-03-01|1996-03-01|NONE|SHIP|ely regular foxes. quickly | +80462|212297|24802|1|8|9674.24|0.04|0.07|R|F|1994-05-20|1994-04-22|1994-06-18|COLLECT COD|MAIL|s. permanently close orbits above | +80462|72903|22904|2|37|69408.30|0.01|0.03|A|F|1994-03-29|1994-05-24|1994-04-18|NONE|REG AIR|carefully even accounts wake quickly quiet| +80462|266405|41416|3|41|56226.99|0.05|0.07|A|F|1994-03-21|1994-05-23|1994-04-07|NONE|FOB|e carefully ac| +80462|453504|3505|4|47|68501.56|0.08|0.06|A|F|1994-07-02|1994-05-23|1994-07-06|DELIVER IN PERSON|FOB|, final deposi| +80462|30076|17577|5|29|29176.03|0.06|0.01|R|F|1994-04-22|1994-05-11|1994-05-04|NONE|REG AIR|as. accounts| +80462|482581|20109|6|6|9381.36|0.05|0.05|A|F|1994-06-12|1994-05-07|1994-06-19|COLLECT COD|SHIP|l requests. quickly unusual ideas of the| +80462|723498|48527|7|3|4564.38|0.10|0.03|R|F|1994-06-23|1994-06-06|1994-07-07|COLLECT COD|AIR|ss requests. sl| +80463|816802|16803|1|12|20625.12|0.00|0.02|N|O|1997-01-12|1997-01-20|1997-02-05|COLLECT COD|SHIP|ly slyly ironic deposits| +80463|980705|43225|2|22|39284.52|0.01|0.07|N|O|1996-10-31|1996-11-25|1996-11-24|TAKE BACK RETURN|MAIL|inal deposits use about th| +80463|699904|49905|3|38|72347.06|0.01|0.02|N|O|1996-12-04|1996-12-28|1997-01-02|TAKE BACK RETURN|RAIL|es. slyly regular theodolites wa| +80463|271843|9359|4|19|34481.77|0.07|0.03|N|O|1997-01-29|1997-01-07|1997-02-24|COLLECT COD|RAIL|nusual deposits-- b| +80463|849398|36947|5|29|39073.15|0.00|0.07|N|O|1996-11-27|1996-12-19|1996-12-07|DELIVER IN PERSON|MAIL|s. carefully regular theodo| +80488|821042|8591|1|34|32742.00|0.05|0.08|R|F|1993-11-16|1993-10-10|1993-11-19|TAKE BACK RETURN|FOB|out the slyly final packages are among th| +80489|766979|29495|1|12|24551.28|0.10|0.02|N|O|1998-07-21|1998-09-21|1998-08-17|DELIVER IN PERSON|SHIP|nt pinto beans nag furiously blith| +80489|607319|7320|2|26|31883.28|0.01|0.02|N|O|1998-08-31|1998-08-18|1998-09-19|DELIVER IN PERSON|AIR| are slyly furiously i| +80489|194444|19451|3|12|18461.28|0.02|0.07|N|O|1998-09-16|1998-08-19|1998-10-16|DELIVER IN PERSON|REG AIR|nd the perm| +80489|14100|39101|4|50|50705.00|0.06|0.06|N|O|1998-11-08|1998-10-02|1998-11-14|DELIVER IN PERSON|MAIL| slyly regular packages | +80489|973250|48289|5|21|27787.41|0.04|0.07|N|O|1998-08-21|1998-10-10|1998-09-20|COLLECT COD|FOB|ses wake t| +80489|404999|30016|6|43|81870.71|0.07|0.08|N|O|1998-10-26|1998-09-28|1998-11-20|COLLECT COD|MAIL|. furious, express dolphins boost regular, | +80490|163437|947|1|44|66018.92|0.02|0.00|A|F|1993-06-14|1993-04-07|1993-07-06|COLLECT COD|FOB|the blithely unusual pa| +80490|881803|19355|2|46|82098.96|0.05|0.08|R|F|1993-04-05|1993-04-13|1993-04-19|COLLECT COD|FOB|are blithely bold pin| +80490|447053|34578|3|34|34001.02|0.02|0.06|A|F|1993-04-19|1993-05-09|1993-05-09|TAKE BACK RETURN|MAIL|the slyly even deposi| +80490|607462|19975|4|5|6847.15|0.01|0.08|R|F|1993-04-20|1993-04-17|1993-05-04|NONE|TRUCK| silent, final accounts wake slyly above| +80490|603001|28026|5|23|20791.31|0.06|0.08|R|F|1993-05-04|1993-04-05|1993-05-24|COLLECT COD|RAIL|d deposits| +80490|636863|11888|6|11|19798.13|0.01|0.07|R|F|1993-04-05|1993-05-07|1993-04-12|COLLECT COD|RAIL|s? quickly final asymptot| +80491|524448|24449|1|36|53007.12|0.01|0.01|N|O|1997-06-23|1997-05-22|1997-07-13|TAKE BACK RETURN|TRUCK|uriously about the carefull| +80491|393148|18163|2|41|50886.33|0.04|0.05|N|O|1997-06-24|1997-05-01|1997-06-27|NONE|AIR|uests promis| +80491|634071|9096|3|7|7035.28|0.00|0.02|N|O|1997-06-23|1997-05-28|1997-06-29|COLLECT COD|TRUCK|ly final accou| +80491|815398|27915|4|10|13133.50|0.00|0.02|N|O|1997-07-18|1997-06-10|1997-08-14|TAKE BACK RETURN|MAIL|he quickly regular asymptotes kindl| +80491|384804|9819|5|35|66107.65|0.05|0.03|N|O|1997-05-29|1997-05-27|1997-06-12|NONE|SHIP|lyly regular decoys; even, regular frets | +80491|397062|47063|6|11|12749.55|0.10|0.02|N|O|1997-05-31|1997-04-30|1997-06-09|TAKE BACK RETURN|MAIL|ending ideas. deposits are carefully| +80491|407034|7035|7|36|33876.36|0.06|0.04|N|O|1997-06-30|1997-04-29|1997-07-14|TAKE BACK RETURN|AIR|. dependencies nag accor| +80492|17709|17710|1|25|40667.50|0.04|0.07|N|O|1998-03-03|1998-01-14|1998-03-17|TAKE BACK RETURN|AIR|ly even theodolites. blithely special asymp| +80492|624638|12175|2|10|15626.00|0.07|0.04|N|O|1997-11-28|1997-12-15|1997-12-06|TAKE BACK RETURN|AIR|nding pack| +80492|278749|28750|3|44|76020.12|0.10|0.00|N|O|1997-12-06|1998-01-14|1997-12-19|TAKE BACK RETURN|RAIL| final accounts agai| +80492|925591|25592|4|43|69511.65|0.00|0.01|N|O|1998-02-08|1997-12-09|1998-02-18|NONE|FOB|ependencies integrate. regular, re| +80492|398794|48795|5|45|85175.10|0.02|0.03|N|O|1997-11-30|1998-01-31|1997-12-22|TAKE BACK RETURN|REG AIR|kages against the slyl| +80492|520197|45218|6|30|36515.10|0.03|0.00|N|O|1997-11-22|1998-01-07|1997-12-06|TAKE BACK RETURN|SHIP|en pinto beans across the excuses cajole fu| +80493|506170|18681|1|44|51750.60|0.00|0.06|N|O|1997-02-03|1997-01-22|1997-02-04|COLLECT COD|REG AIR|kly even foxes s| +80493|190139|27649|2|21|25811.73|0.07|0.07|N|O|1996-11-19|1997-01-30|1996-11-27|TAKE BACK RETURN|FOB|counts sleep after the ironic, even fox| +80493|649463|37000|3|11|15536.73|0.00|0.06|N|O|1997-01-06|1997-01-24|1997-01-14|COLLECT COD|TRUCK|ly special pinto beans sleep sl| +80493|515791|3322|4|14|25294.78|0.05|0.00|N|O|1997-01-03|1997-01-12|1997-01-19|NONE|MAIL| theodolites was slyly in | +80493|894205|44206|5|2|2398.32|0.06|0.01|N|O|1996-12-16|1997-02-11|1996-12-23|COLLECT COD|REG AIR|usual packages nag bli| +80493|898454|48455|6|13|18881.33|0.03|0.02|N|O|1997-03-11|1997-02-02|1997-03-27|DELIVER IN PERSON|AIR|nusual dep| +80493|299610|49611|7|48|77260.80|0.04|0.05|N|O|1996-11-18|1997-02-07|1996-12-06|COLLECT COD|FOB|ounts cajole fluffily. excuses doze slyly| +80494|534584|34585|1|14|22659.84|0.08|0.06|A|F|1994-11-23|1994-12-23|1994-12-19|TAKE BACK RETURN|FOB|pendencies are blithely across the regu| +80494|740978|28521|2|4|8075.76|0.08|0.02|A|F|1994-12-04|1994-12-19|1994-12-28|TAKE BACK RETURN|TRUCK|the carefully express foxes boost furiousl| +80494|609336|9337|3|13|16188.90|0.01|0.07|R|F|1994-11-12|1994-11-29|1994-12-07|NONE|SHIP|ck deposits. quickly final platelets a| +80494|96867|46868|4|39|72690.54|0.09|0.00|R|F|1994-10-30|1994-12-08|1994-11-06|COLLECT COD|RAIL|furiously ironic instructions promise ar| +80494|35535|10536|5|2|2941.06|0.01|0.00|R|F|1994-11-11|1995-01-11|1994-11-19|NONE|RAIL|e even accounts. ironic, ironic ideas | +80495|582969|7992|1|29|59506.26|0.05|0.08|N|O|1997-09-10|1997-09-21|1997-09-12|COLLECT COD|MAIL|iously express i| +80495|945957|45958|2|5|10014.55|0.09|0.03|N|O|1997-10-01|1997-10-09|1997-10-30|NONE|SHIP|onic requests.| +80495|691213|41214|3|27|32512.86|0.00|0.01|N|O|1997-09-24|1997-09-24|1997-09-29|DELIVER IN PERSON|REG AIR|eas cajole slyly after| +80495|204877|4878|4|2|3563.72|0.06|0.04|N|O|1997-09-26|1997-09-06|1997-10-15|TAKE BACK RETURN|SHIP|affix around the slyly dari| +80495|364193|14194|5|48|60344.64|0.04|0.03|N|O|1997-09-01|1997-09-10|1997-09-30|NONE|AIR|ake blithely of th| +80520|984402|34403|1|28|41618.08|0.06|0.05|N|O|1997-03-02|1997-03-14|1997-03-16|TAKE BACK RETURN|REG AIR|ular foxes poach furiously. regu| +80520|830045|42562|2|7|6825.00|0.07|0.01|N|O|1997-02-01|1997-03-20|1997-02-08|COLLECT COD|REG AIR|ully final pinto beans| +80520|552973|15485|3|14|28363.30|0.05|0.06|N|O|1997-04-09|1997-03-25|1997-04-21|NONE|RAIL|- special, unusual instructions boost ab| +80520|813989|26506|4|4|7611.76|0.10|0.02|N|O|1997-05-01|1997-03-01|1997-05-13|COLLECT COD|RAIL|dolites haggle carefully reg| +80520|706891|31920|5|35|66425.10|0.09|0.08|N|O|1997-03-22|1997-03-08|1997-04-03|NONE|FOB|kages. dolphins cajole regular do| +80520|709738|47281|6|21|36701.70|0.03|0.04|N|O|1997-03-27|1997-02-21|1997-04-23|COLLECT COD|REG AIR|es cajole carefully against the car| +80520|554055|16567|7|22|24398.66|0.10|0.00|N|O|1997-04-17|1997-02-23|1997-04-20|COLLECT COD|FOB|totes against| +80521|991287|41288|1|24|33077.76|0.10|0.08|N|O|1997-09-05|1997-11-01|1997-09-20|TAKE BACK RETURN|RAIL|ic, pending requests? even, silent deposit| +80521|559037|9038|2|1|1096.01|0.03|0.04|N|O|1997-08-20|1997-09-02|1997-09-18|COLLECT COD|TRUCK|tween the blithe| +80521|718514|31029|3|15|22987.20|0.08|0.02|N|O|1997-11-26|1997-10-07|1997-12-01|DELIVER IN PERSON|MAIL| furiously dari| +80522|553928|28951|1|34|67384.60|0.00|0.07|N|O|1997-01-16|1996-12-25|1997-02-09|DELIVER IN PERSON|FOB|he express, ironic deposits. | +80522|859251|46803|2|32|38726.72|0.05|0.00|N|O|1996-11-25|1996-12-25|1996-12-08|NONE|AIR| carefully f| +80522|429404|29405|3|32|42668.16|0.09|0.07|N|O|1996-10-31|1996-11-22|1996-11-03|TAKE BACK RETURN|TRUCK| ideas sleep packages. express | +80522|983457|21015|4|33|50833.53|0.09|0.02|N|O|1997-01-27|1996-12-22|1997-02-09|DELIVER IN PERSON|REG AIR|dencies. bli| +80522|956618|31657|5|41|68657.37|0.09|0.03|N|O|1996-12-26|1996-12-03|1997-01-02|TAKE BACK RETURN|SHIP|eodolites. carefully | +80523|426624|26625|1|34|52720.40|0.00|0.07|N|O|1996-11-09|1996-12-15|1996-12-09|COLLECT COD|REG AIR|the final, bold dependencies-- carefully i| +80523|264353|14354|2|25|32933.50|0.00|0.02|N|O|1996-12-20|1997-01-06|1997-01-10|DELIVER IN PERSON|RAIL|ly unusual requests along the final | +80523|970263|7821|3|27|35996.94|0.04|0.07|N|O|1997-02-04|1996-11-30|1997-03-04|DELIVER IN PERSON|SHIP|s around the bold, bold waters. qu| +80523|194770|44771|4|9|16782.93|0.09|0.00|N|O|1996-12-05|1996-11-30|1996-12-28|TAKE BACK RETURN|SHIP|e furiously caref| +80523|498014|35542|5|22|22263.78|0.06|0.07|N|O|1996-10-19|1996-12-26|1996-10-28|NONE|MAIL|e carefully blit| +80523|106789|6790|6|23|41302.94|0.00|0.05|N|O|1997-01-01|1996-11-13|1997-01-17|DELIVER IN PERSON|TRUCK|unusual asymptotes haggle slyly. s| +80524|580090|5113|1|9|10530.63|0.01|0.02|N|O|1996-03-05|1995-12-24|1996-03-14|NONE|MAIL|s cajole slyly alon| +80524|568390|43413|2|17|24792.29|0.03|0.05|N|O|1995-12-24|1995-12-23|1996-01-17|TAKE BACK RETURN|REG AIR|y fluffily regular requests. slyly| +80525|510741|48272|1|44|77075.68|0.02|0.06|N|O|1998-03-26|1998-04-15|1998-04-25|DELIVER IN PERSON|FOB| carefully along the slyly express | +80525|18107|43108|2|15|15376.50|0.02|0.02|N|O|1998-05-03|1998-03-18|1998-05-13|COLLECT COD|MAIL|lly at the slyly enticing foxes. slyly | +80525|318273|43286|3|11|14203.86|0.03|0.00|N|O|1998-02-25|1998-03-10|1998-03-10|DELIVER IN PERSON|MAIL|egular, regular requests. fur| +80526|503018|15529|1|24|24503.76|0.01|0.02|A|F|1994-01-02|1994-01-30|1994-01-24|DELIVER IN PERSON|RAIL|kly quickly ironic pinto beans. quic| +80526|213946|26451|2|39|72537.27|0.02|0.02|R|F|1994-03-17|1994-01-14|1994-03-28|COLLECT COD|AIR|ithely quickly express accounts. ironi| +80526|779940|29941|3|14|28278.74|0.09|0.05|A|F|1994-03-15|1994-01-28|1994-03-19|DELIVER IN PERSON|REG AIR|leep furiously ironic packages. slyly pen| +80526|448594|11103|4|39|60160.23|0.01|0.08|A|F|1994-02-06|1994-01-25|1994-03-04|TAKE BACK RETURN|AIR|avely slyly final deposits. speci| +80526|504824|4825|5|29|53035.20|0.00|0.00|R|F|1994-03-13|1994-01-16|1994-03-15|COLLECT COD|SHIP|ts cajole at the quic| +80526|565514|15515|6|36|56861.64|0.05|0.03|A|F|1993-12-16|1994-02-24|1994-01-12|NONE|AIR|y bold requests | +80527|538283|13304|1|5|6606.30|0.02|0.06|N|O|1998-10-06|1998-09-01|1998-10-29|DELIVER IN PERSON|FOB|y around the silent instructions? ex| +80552|179423|29424|1|32|48077.44|0.06|0.03|N|O|1996-03-31|1996-03-15|1996-04-24|NONE|SHIP|oost furiously ruth| +80552|559885|22397|2|17|33062.62|0.01|0.05|N|O|1996-03-09|1996-01-25|1996-03-11|DELIVER IN PERSON|FOB| maintain slyly furiously unusual de| +80552|983339|45859|3|45|64003.05|0.02|0.02|N|O|1996-02-05|1996-02-13|1996-02-25|NONE|MAIL|egular dinos cajole b| +80552|977619|27620|4|36|61076.52|0.09|0.06|N|O|1996-04-06|1996-03-18|1996-04-27|DELIVER IN PERSON|RAIL| slyly final dolphin| +80552|834414|34415|5|34|45844.58|0.00|0.06|N|O|1996-02-01|1996-03-16|1996-02-04|DELIVER IN PERSON|TRUCK| according to the expres| +80552|982138|44658|6|6|7320.54|0.05|0.00|N|O|1996-03-02|1996-02-26|1996-03-11|COLLECT COD|RAIL| carefully bravely special | +80552|778316|28317|7|21|29279.88|0.08|0.05|N|O|1996-03-24|1996-03-17|1996-04-12|COLLECT COD|FOB|regular deposits. regular accounts | +80553|142399|4902|1|19|27386.41|0.05|0.07|N|O|1997-03-28|1997-03-25|1997-04-02|COLLECT COD|SHIP| packages use carefully furiously iron| +80553|293530|6036|2|25|38088.00|0.02|0.03|N|O|1997-04-17|1997-02-11|1997-04-18|DELIVER IN PERSON|SHIP|g against the special reque| +80553|351981|1982|3|8|16263.76|0.07|0.05|N|O|1997-04-16|1997-02-26|1997-04-23|NONE|AIR|about the re| +80553|729112|41627|4|44|50207.52|0.06|0.08|N|O|1997-01-11|1997-03-29|1997-01-28|NONE|TRUCK|tes nag furiously. carefully even | +80553|179720|4727|5|22|39593.84|0.08|0.04|N|O|1997-01-27|1997-02-01|1997-02-18|NONE|REG AIR|e furiously. ironic packages according t| +80553|537699|210|6|8|13893.36|0.02|0.05|N|O|1997-01-04|1997-03-15|1997-01-23|NONE|TRUCK|lly regular deposits. packages boost accord| +80554|386300|36301|1|28|38816.12|0.05|0.07|N|O|1996-12-06|1997-02-05|1996-12-13|COLLECT COD|AIR|stealthy, express accounts breach furiousl| +80554|536471|11492|2|3|4522.35|0.03|0.01|N|O|1997-01-18|1997-02-24|1997-02-08|COLLECT COD|FOB| carefully regu| +80554|460916|35935|3|42|78829.38|0.09|0.03|N|O|1996-12-29|1997-01-12|1997-01-08|DELIVER IN PERSON|TRUCK|posits are express,| +80555|386410|11425|1|32|47884.80|0.08|0.04|R|F|1994-07-31|1994-10-05|1994-08-08|DELIVER IN PERSON|TRUCK| excuses. fin| +80555|389567|14582|2|39|64605.45|0.00|0.01|A|F|1994-09-09|1994-09-08|1994-09-28|NONE|TRUCK|usly final| +80555|452241|27260|3|25|29830.50|0.08|0.06|R|F|1994-09-12|1994-10-25|1994-09-16|TAKE BACK RETURN|RAIL|nic deposits grow. blithely regular f| +80555|814323|1872|4|34|42067.52|0.06|0.02|R|F|1994-09-10|1994-10-23|1994-10-04|TAKE BACK RETURN|FOB|cies cajole slyly. ironic acco| +80555|320331|20332|5|46|62160.72|0.04|0.03|A|F|1994-08-15|1994-09-22|1994-08-19|DELIVER IN PERSON|RAIL|even deposits affix fluffily final, regula| +80556|422459|22460|1|27|37298.61|0.08|0.08|A|F|1992-03-17|1992-03-26|1992-04-09|TAKE BACK RETURN|REG AIR|slyly ironic pinto beans a| +80556|261769|49285|2|38|65768.50|0.06|0.01|A|F|1992-05-05|1992-03-17|1992-05-27|NONE|TRUCK|xes sleep eve| +80556|538030|541|3|24|25632.24|0.02|0.01|A|F|1992-05-22|1992-04-11|1992-06-15|TAKE BACK RETURN|SHIP|eodolites. da| +80556|659452|46992|4|18|25405.56|0.10|0.00|A|F|1992-03-22|1992-04-27|1992-03-23|TAKE BACK RETURN|REG AIR|ss the carefully pending deposit| +80556|408231|33248|5|19|21644.99|0.00|0.07|R|F|1992-05-31|1992-03-22|1992-06-07|COLLECT COD|AIR|ious deposits boost. requests wake. ev| +80556|124583|12090|6|5|8037.90|0.06|0.05|R|F|1992-04-06|1992-05-10|1992-04-10|TAKE BACK RETURN|SHIP|odolites. | +80557|268501|6017|1|44|64657.56|0.07|0.07|N|O|1996-01-27|1996-04-05|1996-02-24|TAKE BACK RETURN|TRUCK|quickly final pinto beans among th| +80557|693868|6382|2|14|26065.62|0.07|0.03|N|O|1996-02-22|1996-03-07|1996-02-25|NONE|REG AIR|y special dolphins. express excuses sh| +80557|831007|43524|3|23|21573.08|0.00|0.03|N|O|1996-03-05|1996-02-07|1996-03-27|DELIVER IN PERSON|RAIL|equests wa| +80557|726017|1046|4|6|6257.88|0.00|0.02|N|O|1996-04-18|1996-03-21|1996-04-25|NONE|TRUCK|thely unusua| +80557|153969|3970|5|48|97102.08|0.10|0.03|N|O|1996-02-09|1996-03-29|1996-02-24|COLLECT COD|SHIP|ackages. b| +80558|927590|15145|1|48|77642.40|0.01|0.05|A|F|1993-05-04|1993-06-23|1993-06-03|COLLECT COD|RAIL|sly even deposits. ironic hockey players| +80558|989610|27168|2|11|18695.27|0.00|0.00|A|F|1993-04-21|1993-05-19|1993-05-14|TAKE BACK RETURN|FOB|s. carefully special requests are sp| +80558|364596|27104|3|25|41514.50|0.05|0.08|A|F|1993-06-20|1993-05-18|1993-07-18|COLLECT COD|FOB| bold requ| +80558|757492|45038|4|4|6197.84|0.10|0.02|R|F|1993-08-01|1993-05-16|1993-08-28|DELIVER IN PERSON|SHIP|ending requests wake above the f| +80558|165636|15637|5|41|69766.83|0.05|0.03|A|F|1993-06-23|1993-06-13|1993-07-22|NONE|TRUCK|ly regular deposits. | +80558|836948|36949|6|33|62201.70|0.01|0.06|R|F|1993-06-16|1993-06-29|1993-07-16|TAKE BACK RETURN|AIR|en depths. slyly sly decoys above the care| +80559|243807|6312|1|49|85788.71|0.04|0.04|N|O|1996-08-11|1996-08-01|1996-08-16|TAKE BACK RETURN|FOB|ng to the slyly regular accounts affix qu| +80559|653328|15842|2|19|24344.51|0.03|0.05|N|O|1996-07-07|1996-07-14|1996-07-11|TAKE BACK RETURN|REG AIR|dolites. carefully ironi| +80584|768111|18112|1|11|12969.88|0.01|0.04|A|F|1993-04-19|1993-06-18|1993-05-12|NONE|FOB| integrate sly| +80585|94680|19683|1|19|31818.92|0.01|0.04|N|O|1998-01-26|1998-01-13|1998-02-11|TAKE BACK RETURN|SHIP|ccounts. carefully final hockey pla| +80585|279508|42014|2|1|1487.49|0.05|0.00|N|O|1998-02-02|1998-01-18|1998-02-19|NONE|RAIL| final requests | +80585|679521|4548|3|43|64521.07|0.07|0.08|N|O|1998-02-02|1998-03-05|1998-02-21|DELIVER IN PERSON|AIR|ltipliers are bl| +80585|693730|31270|4|23|39645.10|0.00|0.07|N|O|1998-02-13|1998-02-23|1998-02-21|DELIVER IN PERSON|MAIL| are furiously even deposit| +80585|509299|21810|5|45|58872.15|0.06|0.04|N|O|1998-01-25|1998-02-11|1998-02-23|COLLECT COD|REG AIR| foxes. silent theodo| +80586|269771|7287|1|14|24370.64|0.08|0.05|N|O|1996-03-19|1996-03-20|1996-04-10|DELIVER IN PERSON|RAIL|es eat carefu| +80586|26492|26493|2|21|29788.29|0.00|0.02|N|O|1996-02-28|1996-04-08|1996-03-25|DELIVER IN PERSON|FOB|g accounts. blithely pending ideas detect f| +80586|247047|34560|3|37|36779.11|0.03|0.03|N|O|1996-04-22|1996-03-22|1996-05-17|DELIVER IN PERSON|RAIL|se along the d| +80586|110121|10122|4|49|55424.88|0.02|0.00|N|O|1996-05-03|1996-04-09|1996-05-13|DELIVER IN PERSON|SHIP|ly pending fo| +80586|788608|38609|5|15|25448.55|0.01|0.00|N|O|1996-02-18|1996-03-29|1996-03-03|NONE|FOB|s. slyly reg| +80586|120108|20109|6|50|56405.00|0.00|0.00|N|O|1996-01-25|1996-03-10|1996-02-05|COLLECT COD|TRUCK|nal requests maintain blit| +80586|648669|23694|7|7|11323.41|0.05|0.01|N|O|1996-01-28|1996-02-27|1996-02-01|DELIVER IN PERSON|AIR|ggle blithely | +80587|178656|28657|1|11|19081.15|0.08|0.02|N|O|1996-09-17|1996-09-29|1996-10-06|COLLECT COD|MAIL|nal requests doubt against the evenl| +80587|666372|28886|2|18|24090.12|0.07|0.00|N|O|1996-10-28|1996-10-11|1996-10-31|DELIVER IN PERSON|SHIP|furiously careful fox| +80587|711952|24467|3|38|74628.96|0.08|0.05|N|O|1996-09-21|1996-10-20|1996-10-20|NONE|FOB|arefully pending requests. p| +80587|767595|30111|4|13|21613.28|0.04|0.01|N|O|1996-11-05|1996-10-07|1996-11-20|TAKE BACK RETURN|REG AIR|eposits integrate according to the| +80588|724640|49669|1|18|29962.98|0.05|0.00|N|O|1995-11-26|1995-11-09|1995-11-30|NONE|TRUCK|lar accounts haggle| +80588|10049|47550|2|13|12467.52|0.04|0.08|N|O|1995-10-30|1995-10-20|1995-11-22|DELIVER IN PERSON|REG AIR|ar deposits wake furiously | +80589|735672|23215|1|50|85382.00|0.10|0.08|A|F|1992-05-19|1992-05-15|1992-05-30|COLLECT COD|REG AIR|o beans cajole slyl| +80589|433125|20650|2|16|16929.60|0.07|0.01|R|F|1992-04-12|1992-05-15|1992-04-14|NONE|SHIP|theodolites. permanent foxes along | +80589|525907|13438|3|40|77315.20|0.01|0.01|R|F|1992-07-17|1992-05-29|1992-08-13|NONE|RAIL| furiously special deposi| +80589|911504|11505|4|28|42432.88|0.08|0.02|A|F|1992-04-27|1992-04-27|1992-05-15|DELIVER IN PERSON|TRUCK|inal, bold accounts detec| +80589|638312|38313|5|16|20004.48|0.07|0.00|R|F|1992-05-14|1992-06-20|1992-06-03|NONE|RAIL|efully ironic pinto beans. quickly regula| +80589|101507|1508|6|46|69391.00|0.03|0.04|R|F|1992-06-14|1992-06-03|1992-07-10|TAKE BACK RETURN|SHIP|refully bold packages haggle evenly: pendi| +80589|14292|26793|7|30|36188.70|0.05|0.07|A|F|1992-04-23|1992-06-19|1992-05-06|DELIVER IN PERSON|SHIP|ackages haggle blithely. blithel| +80590|205220|42733|1|25|28130.25|0.06|0.07|R|F|1993-12-02|1993-11-06|1993-12-20|COLLECT COD|TRUCK|ly regular| +80590|118453|18454|2|17|25014.65|0.08|0.08|A|F|1993-11-26|1993-10-26|1993-12-17|DELIVER IN PERSON|AIR|ickly pending| +80590|826850|26851|3|18|31982.58|0.02|0.07|A|F|1993-10-10|1993-11-03|1993-10-22|TAKE BACK RETURN|FOB|refully re| +80590|863266|25784|4|18|22125.96|0.07|0.02|R|F|1993-08-29|1993-09-29|1993-09-07|TAKE BACK RETURN|SHIP|ggedly regular sentiments ac| +80591|897615|47616|1|16|25801.12|0.06|0.02|N|O|1998-07-29|1998-08-23|1998-08-11|TAKE BACK RETURN|RAIL| the foxes. b| +80591|201321|13826|2|4|4889.24|0.05|0.03|N|O|1998-10-16|1998-09-11|1998-11-13|TAKE BACK RETURN|FOB|ackages use. slyly regular exc| +80591|599165|24188|3|2|2528.28|0.06|0.06|N|O|1998-07-28|1998-08-30|1998-07-31|NONE|MAIL|egular instr| +80591|158866|46376|4|7|13474.02|0.04|0.05|N|O|1998-09-20|1998-08-12|1998-09-27|NONE|FOB|ts use carefully| +80591|58741|21243|5|42|71389.08|0.08|0.05|N|O|1998-07-13|1998-07-24|1998-07-17|TAKE BACK RETURN|SHIP| express ideas sl| +80591|252436|14942|6|26|36098.92|0.03|0.07|N|O|1998-07-22|1998-07-28|1998-07-31|TAKE BACK RETURN|AIR|inal accounts are slyly. f| +80591|679589|42103|7|29|45487.95|0.05|0.08|N|O|1998-10-17|1998-08-28|1998-11-02|TAKE BACK RETURN|MAIL|ly ironic dolphins poach furiously betwe| +80616|848151|10668|1|45|49459.95|0.01|0.01|A|F|1992-08-28|1992-08-27|1992-08-31|NONE|RAIL|oost carefully. carefully unusual| +80616|859201|34236|2|8|9281.28|0.06|0.07|A|F|1992-09-25|1992-09-28|1992-10-05|NONE|REG AIR|ideas. fluf| +80616|585533|23067|3|44|71214.44|0.09|0.01|A|F|1992-08-18|1992-09-28|1992-09-14|DELIVER IN PERSON|SHIP|accounts wake furiously fluffily even | +80616|52988|2989|4|22|42701.56|0.06|0.00|R|F|1992-07-26|1992-10-17|1992-08-22|DELIVER IN PERSON|REG AIR| requests among the carefully sile| +80616|568358|30870|5|50|71316.50|0.02|0.05|R|F|1992-08-20|1992-10-19|1992-09-10|NONE|FOB|sits haggle| +80616|382312|19834|6|34|47406.20|0.07|0.08|A|F|1992-11-01|1992-10-08|1992-11-06|TAKE BACK RETURN|RAIL|l instruction| +80617|371318|33826|1|3|4167.90|0.02|0.03|N|O|1997-11-24|1997-10-03|1997-12-24|NONE|TRUCK|usual deposits. regular accoun| +80617|725654|25655|2|34|57107.08|0.05|0.05|N|O|1997-10-28|1997-10-09|1997-11-17|DELIVER IN PERSON|AIR|fully? ironic deposits ha| +80617|61031|23533|3|50|49601.50|0.06|0.02|N|O|1997-10-18|1997-09-25|1997-11-02|COLLECT COD|REG AIR|structions. accounts c| +80617|739107|1622|4|1|1146.07|0.04|0.07|N|O|1997-09-09|1997-09-18|1997-09-16|COLLECT COD|TRUCK|uffily ironic pinto b| +80617|171202|8712|5|33|42015.60|0.02|0.06|N|O|1997-09-04|1997-10-03|1997-09-23|DELIVER IN PERSON|MAIL|sits. fluffily pending platelets cajole bli| +80617|378785|16307|6|30|55913.10|0.01|0.01|N|O|1997-10-11|1997-10-18|1997-10-26|DELIVER IN PERSON|RAIL|al accounts are fluffily ac| +80617|236543|24056|7|16|23672.48|0.01|0.02|N|O|1997-11-12|1997-09-22|1997-12-06|COLLECT COD|SHIP|s, bold deposits cajole furiously| +80618|572611|22612|1|36|60609.24|0.01|0.05|A|F|1992-02-19|1992-02-15|1992-02-20|DELIVER IN PERSON|AIR|iously across the do| +80618|865145|2697|2|27|29972.70|0.07|0.02|R|F|1992-04-12|1992-03-09|1992-04-30|NONE|REG AIR|ly unusual pearls cajole| +80618|479448|4467|3|22|31403.24|0.03|0.06|R|F|1992-03-26|1992-03-15|1992-04-15|COLLECT COD|REG AIR| final accounts along the| +80618|74854|37356|4|24|43892.40|0.10|0.04|A|F|1992-01-12|1992-03-26|1992-02-05|NONE|AIR|y enticing foxe| +80618|66789|29291|5|18|31604.04|0.00|0.04|A|F|1992-01-13|1992-03-22|1992-02-09|TAKE BACK RETURN|TRUCK|inments promise fluffily according to the | +80619|313323|13324|1|16|21380.96|0.09|0.08|R|F|1993-05-11|1993-06-29|1993-05-14|COLLECT COD|RAIL|egular, even accounts af| +80619|10397|10398|2|36|47066.04|0.08|0.03|R|F|1993-08-01|1993-06-15|1993-08-07|TAKE BACK RETURN|FOB|wake blithely regular, | +80619|737336|24879|3|42|57678.60|0.05|0.05|R|F|1993-07-09|1993-08-01|1993-07-30|COLLECT COD|SHIP|ily slyly regular accounts. furiou| +80619|390661|15676|4|5|8758.25|0.08|0.01|R|F|1993-08-08|1993-07-04|1993-09-02|NONE|RAIL|kages wake furious| +80619|838081|38082|5|25|25476.00|0.00|0.02|R|F|1993-07-06|1993-06-05|1993-08-04|COLLECT COD|AIR| packages. quickly iro| +80619|622371|9908|6|34|43973.56|0.03|0.03|R|F|1993-05-13|1993-06-15|1993-05-24|NONE|TRUCK|ong the even, silent deposits| +80619|188522|13529|7|3|4831.56|0.07|0.02|A|F|1993-07-31|1993-06-23|1993-08-28|TAKE BACK RETURN|AIR|ithely ironic accounts cajole| +80620|480637|30638|1|42|67939.62|0.02|0.01|N|O|1998-06-01|1998-05-28|1998-06-19|NONE|SHIP| fluffy foxes print | +80621|724557|12100|1|40|63260.80|0.01|0.04|N|O|1996-09-13|1996-09-24|1996-10-06|TAKE BACK RETURN|FOB|ake blithely express platel| +80621|626715|14252|2|22|36116.96|0.07|0.04|N|O|1996-08-08|1996-08-09|1996-09-06|DELIVER IN PERSON|REG AIR|ly pending platelets. special foxes ha| +80621|185999|23509|3|45|93824.55|0.01|0.05|N|O|1996-09-03|1996-08-18|1996-09-08|TAKE BACK RETURN|RAIL|jole blithely express dolphins. carefully| +80622|458622|8623|1|22|34773.20|0.07|0.05|R|F|1994-12-09|1994-10-26|1994-12-28|DELIVER IN PERSON|MAIL|tions. regular p| +80622|57825|45329|2|10|17828.20|0.02|0.01|R|F|1994-10-31|1994-12-20|1994-11-22|TAKE BACK RETURN|RAIL|ully final accounts de| +80623|480968|30969|1|26|50672.44|0.05|0.07|N|O|1996-09-11|1996-11-10|1996-09-30|DELIVER IN PERSON|MAIL| furiously blithely final asymptotes. ins| +80623|614074|14075|2|2|1976.08|0.03|0.04|N|O|1996-10-23|1996-09-13|1996-11-09|DELIVER IN PERSON|MAIL|final requests | +80648|999171|11691|1|25|31753.25|0.04|0.02|R|F|1993-09-09|1993-07-27|1993-10-08|TAKE BACK RETURN|MAIL|sits. final requests sleep furiousl| +80648|64093|39096|2|50|52854.50|0.00|0.06|A|F|1993-08-20|1993-07-25|1993-09-05|TAKE BACK RETURN|AIR|alongside of the blithel| +80648|210610|35619|3|1|1520.60|0.00|0.03|A|F|1993-09-24|1993-08-10|1993-10-21|COLLECT COD|MAIL| deposits. slyly bold instructions wake| +80648|717114|17115|4|40|45243.20|0.04|0.08|A|F|1993-09-25|1993-07-04|1993-10-20|TAKE BACK RETURN|RAIL|xcuses sleep quickly ironic accounts. caref| +80649|709807|22322|1|34|61770.18|0.02|0.06|A|F|1995-01-11|1994-12-29|1995-02-10|DELIVER IN PERSON|SHIP|ic platelets. care| +80649|724880|12423|2|41|78098.85|0.00|0.05|A|F|1994-11-06|1995-01-28|1994-12-06|TAKE BACK RETURN|MAIL|lites. slyly even accounts | +80649|44394|44395|3|29|38813.31|0.07|0.07|A|F|1995-02-02|1995-01-26|1995-02-04|COLLECT COD|AIR|es cajole upon the slyly ironic excu| +80649|115237|15238|4|14|17531.22|0.02|0.05|A|F|1994-11-29|1994-12-06|1994-12-02|NONE|REG AIR|he ironic, unusual accounts. | +80649|778249|3280|5|27|35834.67|0.07|0.01|R|F|1995-02-24|1994-12-28|1995-03-08|TAKE BACK RETURN|REG AIR|ons hang ironic| +80649|28323|3324|6|21|26277.72|0.00|0.05|R|F|1994-12-30|1994-12-21|1995-01-14|COLLECT COD|AIR|ep slyly along the fluffi| +80649|20926|8427|7|3|5540.76|0.01|0.03|A|F|1995-03-01|1994-12-03|1995-03-16|DELIVER IN PERSON|AIR|nder. ironic dolph| +80650|689971|14998|1|34|66671.96|0.04|0.02|N|O|1997-09-20|1997-08-22|1997-10-20|COLLECT COD|RAIL|dolites boost. final, regu| +80651|861872|11873|1|19|34842.77|0.06|0.06|N|O|1997-12-30|1998-01-30|1998-01-29|TAKE BACK RETURN|SHIP|c deposits cajole | +80651|471326|46345|2|2|2594.60|0.09|0.00|N|O|1998-03-15|1997-12-28|1998-03-20|COLLECT COD|AIR|entiments cajole blith| +80652|8567|8568|1|35|51644.60|0.01|0.02|N|O|1997-03-04|1997-02-10|1997-03-20|DELIVER IN PERSON|RAIL| requests. | +80652|985214|47734|2|31|40274.27|0.00|0.04|N|O|1997-02-20|1997-03-20|1997-03-06|DELIVER IN PERSON|AIR|ngly even accounts haggle slyly| +80652|485862|10881|3|48|88696.32|0.05|0.07|N|O|1997-04-11|1997-02-07|1997-04-19|DELIVER IN PERSON|AIR|ckly pending packages cajole slyly| +80653|833442|33443|1|7|9627.80|0.05|0.03|N|O|1998-06-03|1998-07-05|1998-07-02|TAKE BACK RETURN|AIR|s need to sleep above the furiousl| +80653|648755|48756|2|8|13629.76|0.04|0.05|N|O|1998-06-23|1998-06-27|1998-07-18|COLLECT COD|TRUCK|equests. blith| +80653|623670|23671|3|19|30279.16|0.05|0.00|N|O|1998-07-08|1998-05-26|1998-07-25|COLLECT COD|SHIP| ironic depo| +80653|14348|14349|4|33|41657.22|0.10|0.05|N|O|1998-05-13|1998-06-20|1998-05-20|COLLECT COD|SHIP|le. furiously regular foxes cajole.| +80653|145010|7513|5|50|52750.50|0.08|0.00|N|O|1998-08-10|1998-07-06|1998-09-02|TAKE BACK RETURN|SHIP|. furiously silent asymptotes| +80654|571108|46131|1|30|35372.40|0.01|0.05|N|O|1996-03-02|1996-05-03|1996-03-12|NONE|AIR|eas nag furiously regular do| +80654|597265|9777|2|24|32693.76|0.03|0.00|N|O|1996-04-08|1996-03-23|1996-04-12|COLLECT COD|FOB|e slyly ironic dolphins. care| +80654|232774|20287|3|50|85338.00|0.05|0.00|N|O|1996-03-28|1996-05-06|1996-04-15|DELIVER IN PERSON|SHIP|fter the furiously re| +80654|222644|22645|4|15|23499.45|0.05|0.00|N|O|1996-02-19|1996-05-14|1996-02-27|COLLECT COD|SHIP|uses wake blithely furio| +80654|972816|10374|5|19|35886.63|0.01|0.04|N|O|1996-05-17|1996-03-24|1996-06-07|DELIVER IN PERSON|RAIL|. quickly unusual platelets haggle careful| +80654|113734|26237|6|29|50684.17|0.02|0.04|N|O|1996-03-27|1996-03-26|1996-04-15|TAKE BACK RETURN|TRUCK|ilently ironi| +80655|88331|13334|1|25|32983.25|0.00|0.07|R|F|1993-11-11|1994-01-26|1993-11-26|TAKE BACK RETURN|SHIP|old deposits are fluff| +80655|576699|39211|2|18|31962.06|0.07|0.00|R|F|1993-12-19|1993-12-12|1994-01-14|NONE|SHIP|carefully beyond | +80680|451189|26208|1|48|54727.68|0.00|0.00|A|F|1993-04-04|1993-05-18|1993-04-08|COLLECT COD|AIR|gular foxes. | +80680|119701|44706|2|3|5162.10|0.01|0.02|R|F|1993-06-18|1993-04-20|1993-06-29|COLLECT COD|FOB|nal deposi| +80680|798194|10710|3|19|24551.04|0.05|0.01|A|F|1993-04-30|1993-06-05|1993-05-19|DELIVER IN PERSON|REG AIR|bold pinto beans. regular, | +80680|231930|31931|4|1|1861.92|0.10|0.03|R|F|1993-04-08|1993-06-05|1993-04-26|COLLECT COD|MAIL|r requests| +80680|38618|1119|5|46|71604.06|0.06|0.07|A|F|1993-04-05|1993-05-18|1993-04-17|DELIVER IN PERSON|FOB|ress excuses wake carefully. unusual i| +80681|459320|9321|1|29|37099.70|0.02|0.06|A|F|1994-12-24|1994-12-28|1994-12-30|COLLECT COD|MAIL|ully even instructions. carefully pe| +80681|778814|3845|2|27|51105.06|0.02|0.03|R|F|1995-03-06|1995-01-26|1995-03-17|NONE|AIR|en, ironic pinto beans. furiously fin| +80681|522867|10398|3|24|45356.16|0.03|0.01|R|F|1995-03-02|1995-01-18|1995-04-01|COLLECT COD|REG AIR|kly above t| +80682|815460|27977|1|9|12378.78|0.00|0.06|N|O|1996-03-19|1996-04-21|1996-03-29|COLLECT COD|RAIL|se blithely. slyly special accounts| +80682|422268|34777|2|40|47609.60|0.06|0.01|N|O|1996-04-15|1996-04-26|1996-04-17|TAKE BACK RETURN|MAIL| requests are s| +80683|159916|9917|1|15|29638.65|0.02|0.04|N|O|1996-09-21|1996-10-19|1996-09-22|COLLECT COD|AIR|dolites. fluffily spe| +80683|705662|18177|2|48|80046.24|0.03|0.05|N|O|1996-09-28|1996-10-08|1996-10-04|TAKE BACK RETURN|RAIL| carefully blithely silent i| +80683|51754|14256|3|26|44349.50|0.04|0.05|N|O|1996-09-15|1996-11-22|1996-09-26|NONE|FOB|e slyly along the blith| +80683|826891|26892|4|21|38174.85|0.06|0.04|N|O|1996-12-15|1996-10-25|1996-12-21|NONE|MAIL| requests nag fluffily | +80683|541562|4073|5|23|36881.42|0.00|0.02|N|O|1996-12-10|1996-11-13|1996-12-24|COLLECT COD|RAIL|ss the furiously pending accounts cajole fi| +80683|24420|11921|6|30|40332.60|0.04|0.02|N|O|1996-12-25|1996-11-05|1996-12-30|DELIVER IN PERSON|TRUCK|s? slyly final ideas haggle unusual| +80684|394763|7271|1|21|39012.75|0.03|0.01|A|F|1995-02-25|1995-04-25|1995-03-06|COLLECT COD|RAIL|arefully special instructions| +80684|768547|43578|2|46|74313.46|0.02|0.01|R|F|1995-02-21|1995-03-05|1995-03-19|NONE|SHIP|ns boost carefu| +80684|956082|43640|3|17|19346.68|0.05|0.03|R|F|1995-02-13|1995-04-10|1995-03-08|DELIVER IN PERSON|AIR|times regular excuses| +80685|37641|37642|1|30|47359.20|0.04|0.01|N|O|1997-09-08|1997-10-12|1997-09-13|COLLECT COD|AIR|sly unusua| +80685|626285|1310|2|7|8478.75|0.10|0.02|N|O|1997-09-29|1997-10-24|1997-10-15|TAKE BACK RETURN|FOB|lar packages haggle sly| +80685|963818|38857|3|11|20699.47|0.04|0.04|N|O|1997-11-04|1997-10-04|1997-11-27|TAKE BACK RETURN|TRUCK|ual, final pinto bea| +80685|881209|31210|4|41|48796.56|0.00|0.04|N|O|1997-11-22|1997-09-26|1997-12-15|NONE|REG AIR|ly pending pl| +80685|465974|3502|5|10|19399.50|0.02|0.08|N|O|1997-11-16|1997-10-30|1997-12-05|COLLECT COD|RAIL|venly express accounts nag furiou| +80685|624714|24715|6|22|36050.96|0.00|0.08|N|O|1997-10-09|1997-09-19|1997-11-05|DELIVER IN PERSON|RAIL|r the blithely| +80685|557132|32155|7|42|49942.62|0.04|0.02|N|O|1997-10-21|1997-09-24|1997-11-15|NONE|SHIP|ic dependencies about the furiousl| +80686|702520|27549|1|20|30449.80|0.02|0.04|N|O|1996-07-10|1996-07-31|1996-08-08|TAKE BACK RETURN|SHIP|odolites alongsid| +80686|238937|38938|2|15|28138.80|0.04|0.02|N|O|1996-08-06|1996-07-17|1996-08-17|TAKE BACK RETURN|FOB|ests. slyly bold request| +80686|808695|46244|3|36|57731.40|0.04|0.01|N|O|1996-09-02|1996-07-22|1996-09-26|NONE|REG AIR|pecial dependencies are furiously w| +80686|735465|47980|4|31|46513.33|0.00|0.07|N|O|1996-07-21|1996-08-18|1996-08-19|NONE|FOB|nusual, unusual asymptotes. blithely r| +80686|956542|6543|5|31|49553.50|0.07|0.00|N|O|1996-07-18|1996-08-14|1996-07-21|DELIVER IN PERSON|FOB|nwind regularly regular request| +80687|828610|3643|1|1|1538.57|0.03|0.00|R|F|1992-02-13|1992-04-16|1992-02-21|TAKE BACK RETURN|MAIL|olites. slyly f| +80687|435907|10924|2|2|3685.76|0.07|0.06|R|F|1992-02-20|1992-04-20|1992-02-27|NONE|SHIP|quests shall wake. orbits against the packa| +80712|915547|40584|1|2|3125.00|0.00|0.03|N|O|1995-08-09|1995-08-15|1995-08-22|NONE|AIR|quickly sil| +80712|589378|39379|2|48|70432.80|0.04|0.01|N|O|1995-08-13|1995-06-22|1995-09-08|NONE|SHIP|s affix in | +80712|664871|2411|3|44|80776.96|0.07|0.08|A|F|1995-05-24|1995-07-02|1995-05-28|COLLECT COD|TRUCK|s sleep furiously unusual theodoli| +80713|416651|4176|1|13|20379.19|0.03|0.07|N|O|1996-11-23|1996-11-28|1996-11-24|NONE|MAIL|ffily; carefully regular excuses nag fluff| +80713|652551|2552|2|39|58637.28|0.07|0.08|N|O|1996-11-13|1996-12-08|1996-11-30|TAKE BACK RETURN|RAIL|lent requests use furiously.| +80714|389257|1765|1|46|61927.04|0.02|0.07|R|F|1992-08-07|1992-06-15|1992-08-17|COLLECT COD|FOB|ess instructions cajole carefully. ex| +80714|242306|29819|2|38|47435.02|0.06|0.00|A|F|1992-06-12|1992-07-15|1992-06-22|COLLECT COD|RAIL|dle requests haggl| +80714|424134|11659|3|20|21162.20|0.08|0.02|A|F|1992-07-21|1992-07-25|1992-07-24|COLLECT COD|SHIP| against the pending platelets. slyl| +80714|413399|38416|4|41|53807.17|0.05|0.00|A|F|1992-07-11|1992-06-19|1992-07-30|DELIVER IN PERSON|MAIL|ay quickly i| +80714|987350|12389|5|47|67553.57|0.06|0.02|A|F|1992-06-09|1992-06-07|1992-06-10|NONE|MAIL|the furiously bold account| +80714|382310|32311|6|31|43161.30|0.01|0.06|A|F|1992-05-05|1992-06-20|1992-05-25|DELIVER IN PERSON|RAIL|e fluffily unusual theodo| +80714|481712|44222|7|13|22017.97|0.08|0.06|A|F|1992-06-24|1992-06-24|1992-07-17|NONE|REG AIR|inst the fluffily final requests are c| +80715|131201|6206|1|7|8625.40|0.09|0.01|N|O|1996-12-05|1996-11-02|1996-12-08|TAKE BACK RETURN|RAIL|wake quickly pending reques| +80716|385611|10626|1|18|30538.80|0.03|0.01|N|O|1995-09-27|1995-08-19|1995-10-11|NONE|TRUCK| special, pending request| +80716|955174|17694|2|48|58998.24|0.05|0.01|N|O|1995-09-23|1995-07-21|1995-10-21|NONE|AIR|its use furiousl| +80716|604315|16828|3|1|1219.28|0.04|0.06|N|O|1995-07-06|1995-08-11|1995-07-25|DELIVER IN PERSON|REG AIR|carefully iro| +80716|720483|45512|4|4|6013.80|0.10|0.04|N|O|1995-08-20|1995-07-23|1995-08-26|DELIVER IN PERSON|TRUCK|furiously express, unusual s| +80716|143127|5630|5|45|52655.40|0.06|0.04|N|O|1995-07-17|1995-07-22|1995-08-08|COLLECT COD|MAIL|l accounts. pinto beans us| +80716|528454|28455|6|17|25201.31|0.03|0.04|N|O|1995-09-14|1995-08-02|1995-10-14|DELIVER IN PERSON|SHIP|to the even package| +80717|751273|1274|1|41|54293.84|0.10|0.00|N|O|1997-08-12|1997-07-19|1997-09-08|COLLECT COD|RAIL|packages. enticingly ironic ideas| +80717|637705|218|2|47|77205.49|0.07|0.00|N|O|1997-07-24|1997-07-27|1997-08-05|DELIVER IN PERSON|REG AIR|accounts. requests cajol| +80718|339315|14328|1|13|17605.90|0.03|0.01|A|F|1993-08-19|1993-08-29|1993-08-23|NONE|RAIL|encies are. | +80719|290704|15715|1|4|6778.76|0.00|0.03|R|F|1994-10-31|1994-09-24|1994-11-04|COLLECT COD|TRUCK|bold ideas. furiously express th| +80719|856344|43896|2|15|19504.50|0.09|0.04|A|F|1994-11-03|1994-10-23|1994-11-11|DELIVER IN PERSON|FOB|heodolites. quickly bold de| +80719|563417|951|3|12|17764.68|0.10|0.03|A|F|1994-11-15|1994-11-14|1994-11-28|COLLECT COD|FOB| furiously final acco| +80719|340285|40286|4|14|18553.78|0.01|0.06|A|F|1994-12-10|1994-11-06|1994-12-26|TAKE BACK RETURN|FOB|ic deposits s| +80719|158899|33906|5|2|3915.78|0.00|0.05|A|F|1994-08-26|1994-10-01|1994-09-21|DELIVER IN PERSON|TRUCK|furiously above th| +80744|379478|41986|1|17|26476.82|0.00|0.03|N|O|1998-01-07|1997-12-04|1998-01-29|DELIVER IN PERSON|FOB|egular foxes. even warhor| +80744|877328|14880|2|46|60042.88|0.08|0.05|N|O|1997-12-24|1997-11-29|1998-01-04|DELIVER IN PERSON|AIR|he quickly even theodolit| +80744|247939|47940|3|34|64155.28|0.00|0.05|N|O|1998-01-06|1997-12-05|1998-01-19|NONE|TRUCK|ly. platelets | +80744|109271|9272|4|32|40968.64|0.02|0.04|N|O|1997-11-26|1997-11-29|1997-11-29|NONE|TRUCK|ses boost slyly regular, regular accou| +80744|512668|37689|5|46|77309.44|0.09|0.08|N|O|1997-12-26|1997-11-13|1998-01-07|COLLECT COD|TRUCK|according to the regularly fi| +80744|408436|45961|6|47|63187.27|0.03|0.05|N|O|1997-11-30|1997-10-12|1997-12-22|TAKE BACK RETURN|SHIP|arefully unusual requests | +80745|728717|3746|1|6|10474.08|0.06|0.01|A|F|1992-12-03|1992-11-15|1992-12-18|NONE|MAIL|s the furiously regular accounts | +80745|538419|38420|2|31|45179.09|0.08|0.06|R|F|1993-01-02|1992-10-28|1993-01-05|COLLECT COD|AIR|iously above the slyly ironi| +80745|201436|13941|3|46|61521.32|0.10|0.00|A|F|1992-12-13|1992-10-15|1993-01-08|DELIVER IN PERSON|FOB|s haggle slyly across| +80745|529962|42473|4|34|67725.96|0.10|0.04|R|F|1992-10-02|1992-11-14|1992-10-18|NONE|REG AIR|ing to the furiously eve| +80745|57352|44856|5|22|28805.70|0.03|0.08|R|F|1992-12-05|1992-11-02|1992-12-10|TAKE BACK RETURN|FOB|ffily ironic pa| +80745|914148|14149|6|21|24404.10|0.09|0.02|A|F|1992-12-21|1992-11-19|1993-01-15|NONE|MAIL|re blithely! even deposits | +80745|74582|24583|7|2|3113.16|0.10|0.01|R|F|1992-12-11|1992-11-04|1992-12-28|TAKE BACK RETURN|RAIL|ccording to the slyly even accounts int| +80746|488128|13147|1|39|43527.90|0.04|0.01|N|O|1996-01-17|1996-02-04|1996-01-29|COLLECT COD|RAIL|he daring deposits wake accordi| +80746|955255|30294|2|40|52408.40|0.00|0.06|N|O|1996-03-31|1996-02-10|1996-04-04|NONE|MAIL|eodolites. s| +80746|954200|41758|3|14|17558.24|0.05|0.08|N|O|1996-04-27|1996-03-18|1996-05-08|TAKE BACK RETURN|AIR|rmanently furi| +80747|612772|37797|1|45|75813.30|0.06|0.03|R|F|1992-06-16|1992-06-07|1992-06-22|COLLECT COD|SHIP|ly according to the regular deposits| +80747|846065|33614|2|13|13143.26|0.00|0.01|R|F|1992-04-06|1992-04-27|1992-04-11|TAKE BACK RETURN|TRUCK|onic deposits wake furiously. regular | +80747|803610|16127|3|5|7567.85|0.08|0.02|R|F|1992-05-18|1992-06-02|1992-05-20|DELIVER IN PERSON|SHIP|s sleep carefully platelets! slyly even| +80747|260243|47759|4|5|6016.15|0.07|0.07|R|F|1992-05-27|1992-06-14|1992-06-14|NONE|REG AIR|ously even foxes haggle. slyly r| +80748|411247|23756|1|13|15056.86|0.05|0.00|R|F|1994-11-25|1994-10-21|1994-12-18|COLLECT COD|FOB|dencies? blithely | +80749|172989|22990|1|49|101037.02|0.01|0.02|R|F|1992-04-13|1992-05-03|1992-04-16|DELIVER IN PERSON|FOB|c ideas sleep carefully above the ironic, s| +80749|419732|7257|2|25|41292.75|0.03|0.05|R|F|1992-06-13|1992-04-17|1992-07-07|TAKE BACK RETURN|FOB|ent dolphi| +80749|434072|21597|3|50|50302.50|0.00|0.00|A|F|1992-06-20|1992-05-04|1992-06-26|COLLECT COD|FOB|egular pac| +80749|442668|17685|4|33|53151.12|0.01|0.02|R|F|1992-03-21|1992-05-04|1992-04-18|COLLECT COD|FOB|nusual requests? slyly final exc| +80749|915073|40110|5|6|6528.18|0.03|0.03|R|F|1992-04-01|1992-05-20|1992-04-09|DELIVER IN PERSON|AIR|refully under the special, final acc| +80749|628246|28247|6|45|52839.45|0.03|0.01|A|F|1992-03-17|1992-04-30|1992-04-08|DELIVER IN PERSON|MAIL|le slyly express, express deposits. | +80749|927554|27555|7|4|6326.04|0.08|0.02|A|F|1992-04-27|1992-05-19|1992-05-21|DELIVER IN PERSON|RAIL|posits are carefully caref| +80750|391871|4379|1|36|70662.96|0.09|0.04|N|O|1996-02-19|1996-04-19|1996-03-06|DELIVER IN PERSON|RAIL|tes against | +80751|360577|35592|1|2|3275.12|0.06|0.00|N|O|1996-02-07|1996-03-15|1996-03-07|COLLECT COD|TRUCK|equests. final requests run slyl| +80751|205790|18295|2|41|69526.98|0.08|0.06|N|O|1996-01-25|1996-02-28|1996-02-09|NONE|RAIL|quickly final requests. slyly | +80751|712525|25040|3|39|59962.11|0.10|0.01|N|O|1996-01-21|1996-03-20|1996-02-11|DELIVER IN PERSON|MAIL|nal instructions cajole flu| +80751|397512|47513|4|43|69208.50|0.05|0.02|N|O|1996-02-22|1996-01-27|1996-03-20|NONE|RAIL|arefully fi| +80751|981559|19117|5|42|68901.42|0.01|0.04|N|O|1996-03-17|1996-03-08|1996-04-09|DELIVER IN PERSON|TRUCK| the boldly unusual package| +80776|508077|20588|1|40|43402.00|0.08|0.07|A|F|1995-01-13|1995-02-17|1995-01-20|COLLECT COD|MAIL|quickly even deposi| +80776|246070|46071|2|16|16256.96|0.07|0.06|R|F|1995-02-28|1995-02-18|1995-03-21|NONE|MAIL|ts after the slyly regu| +80776|697465|47466|3|42|61422.06|0.03|0.03|A|F|1995-03-30|1995-01-09|1995-04-18|NONE|AIR|ar deposits. unusual, regular accounts lose| +80776|287706|212|4|24|40648.56|0.02|0.03|A|F|1994-12-13|1995-02-26|1994-12-24|NONE|SHIP|ies. express, special courts across th| +80776|465749|28259|5|9|15432.48|0.00|0.06|R|F|1994-12-13|1995-02-21|1994-12-28|NONE|RAIL|carefully unusual | +80776|832963|45480|6|6|11375.52|0.10|0.02|A|F|1995-01-19|1995-01-24|1995-02-06|NONE|AIR|fy, regular requests. special, | +80776|603381|3382|7|6|7706.10|0.06|0.06|A|F|1995-01-21|1995-03-05|1995-02-17|NONE|FOB|out the unu| +80777|13601|1102|1|43|65127.80|0.08|0.07|A|F|1995-04-04|1995-05-21|1995-04-26|COLLECT COD|TRUCK| unusual deposits. ironic| +80777|588422|38423|2|36|54374.40|0.09|0.01|A|F|1995-04-10|1995-05-11|1995-04-26|NONE|TRUCK|. blithely regul| +80778|75613|616|1|32|50835.52|0.05|0.02|A|F|1992-09-11|1992-10-31|1992-09-27|TAKE BACK RETURN|TRUCK|alongside of the silent theodolites. ex| +80779|777352|2383|1|20|28586.40|0.10|0.07|R|F|1993-06-27|1993-07-12|1993-07-21|NONE|AIR|boost blithely across| +80779|941330|3849|2|25|34282.25|0.06|0.05|A|F|1993-04-15|1993-06-10|1993-04-20|TAKE BACK RETURN|MAIL|kages. quic| +80780|821940|9489|1|19|35376.10|0.04|0.03|N|O|1998-07-08|1998-06-20|1998-07-12|DELIVER IN PERSON|MAIL|ests boost according to the b| +80781|512019|24530|1|22|22681.78|0.08|0.08|A|F|1992-10-13|1992-12-18|1992-11-11|TAKE BACK RETURN|TRUCK| requests are slyly. furiou| +80782|353325|15833|1|31|42727.61|0.05|0.02|N|O|1997-06-14|1997-04-22|1997-06-27|COLLECT COD|MAIL|al, ironic dolphins haggle fl| +80782|327965|2978|2|19|37866.05|0.08|0.04|N|O|1997-04-22|1997-05-14|1997-04-23|NONE|SHIP|ackages are blithely along| +80782|94503|19506|3|46|68885.00|0.05|0.02|N|O|1997-06-22|1997-04-24|1997-06-26|NONE|REG AIR|yly sly requests. slyly | +80782|306881|31894|4|16|30205.92|0.04|0.07|N|O|1997-06-29|1997-05-03|1997-07-04|TAKE BACK RETURN|REG AIR|l instructions. slyly unusual reques| +80783|60440|22942|1|15|21006.60|0.07|0.06|R|F|1994-03-01|1994-05-04|1994-03-04|COLLECT COD|REG AIR|nto beans nag quickly across the idea| +80808|354837|42359|1|6|11350.92|0.06|0.02|N|F|1995-06-03|1995-05-25|1995-07-03|COLLECT COD|AIR|ickly quiet account| +80808|728978|16521|2|42|84291.48|0.03|0.02|A|F|1995-03-03|1995-05-08|1995-03-22|NONE|FOB|s courts among the deposits cajole fu| +80808|930491|18046|3|1|1521.45|0.06|0.02|A|F|1995-05-02|1995-04-14|1995-05-18|NONE|AIR|ular asymptote| +80808|761226|23742|4|2|2574.38|0.02|0.03|N|F|1995-05-23|1995-05-19|1995-06-22|COLLECT COD|FOB|onic foxes are regula| +80808|925119|37638|5|44|50339.08|0.07|0.01|R|F|1995-04-08|1995-05-02|1995-04-15|TAKE BACK RETURN|AIR|bold requests. fluffily regula| +80808|466236|41255|6|5|6011.05|0.05|0.07|A|F|1995-03-01|1995-04-28|1995-03-26|TAKE BACK RETURN|MAIL|tealthily alongside of th| +80808|27344|27345|7|2|2542.68|0.08|0.06|A|F|1995-04-24|1995-05-19|1995-04-27|COLLECT COD|FOB| regular theodolites across the blithel| +80809|561398|11399|1|5|7296.85|0.03|0.01|R|F|1992-05-07|1992-06-05|1992-05-31|NONE|FOB| pending, fin| +80809|409257|21766|2|49|57145.27|0.05|0.06|R|F|1992-04-25|1992-05-30|1992-04-29|COLLECT COD|AIR|eposits. fluffily regular deposits over t| +80809|366849|41864|3|35|67054.05|0.03|0.08|R|F|1992-04-17|1992-04-29|1992-05-16|COLLECT COD|TRUCK|y regular braids. gifts boos| +80810|490457|15476|1|36|52107.48|0.03|0.06|R|F|1993-09-07|1993-09-15|1993-09-17|COLLECT COD|RAIL|hinly ironic accounts. special c| +80811|680547|30548|1|18|27495.18|0.05|0.03|N|O|1997-09-07|1997-07-30|1997-09-11|DELIVER IN PERSON|MAIL|ly ironic accounts sleep. slyly blithe r| +80811|947767|35322|2|14|25406.08|0.00|0.07|N|O|1997-08-27|1997-09-06|1997-09-26|NONE|AIR| affix carefully unusual pinto bean| +80811|111653|49160|3|49|81567.85|0.00|0.06|N|O|1997-07-13|1997-07-24|1997-08-05|DELIVER IN PERSON|FOB|cies. furiously iron| +80811|538216|13237|4|41|51421.79|0.09|0.06|N|O|1997-10-16|1997-08-13|1997-10-24|DELIVER IN PERSON|RAIL|dogged dolphins | +80812|949087|24124|1|34|38625.36|0.02|0.01|R|F|1995-04-14|1995-04-09|1995-05-12|COLLECT COD|TRUCK|unts. regular, | +80812|301523|1524|2|43|65553.93|0.02|0.05|N|O|1995-06-28|1995-05-18|1995-07-07|COLLECT COD|TRUCK|gular packages. deposits sleep sl| +80812|682804|32805|3|7|12507.39|0.08|0.00|R|F|1995-05-10|1995-06-01|1995-05-26|DELIVER IN PERSON|TRUCK|ress, pending depo| +80812|882578|32579|4|26|40573.78|0.03|0.04|R|F|1995-05-18|1995-05-28|1995-05-19|NONE|FOB|ckly furiously bold pains. q| +80812|479210|41720|5|35|41621.65|0.10|0.06|A|F|1995-05-20|1995-04-23|1995-06-11|NONE|AIR|. furiously pending patterns detect fluff| +80812|70766|45769|6|47|81627.72|0.08|0.01|A|F|1995-05-27|1995-05-05|1995-06-17|DELIVER IN PERSON|REG AIR|fluffily. quickly express excuses| +80812|361308|23816|7|17|23277.93|0.04|0.02|R|F|1995-03-21|1995-04-13|1995-04-06|NONE|SHIP|cial deposits. qui| +80813|490537|28065|1|32|48880.32|0.10|0.00|N|O|1998-08-15|1998-08-16|1998-09-04|TAKE BACK RETURN|REG AIR|uffily pending| +80814|716415|41444|1|37|52961.06|0.04|0.04|R|F|1993-05-21|1993-05-02|1993-05-24|COLLECT COD|FOB|nic accounts. slyly final | +80814|773147|10693|2|22|26842.42|0.00|0.05|R|F|1993-05-23|1993-04-08|1993-05-30|COLLECT COD|RAIL|ans. furio| +80814|273441|10957|3|16|22630.88|0.02|0.07|A|F|1993-03-29|1993-03-24|1993-04-23|NONE|REG AIR|es. ideas lose slyly brave dependencies. un| +80815|231948|44453|1|13|24439.09|0.10|0.06|A|F|1995-01-02|1995-01-05|1995-01-15|NONE|AIR|ar foxes will have to nag among t| +80815|341616|29135|2|11|18233.60|0.02|0.02|R|F|1995-02-03|1994-12-19|1995-02-20|NONE|SHIP|y even somas cajole blithely idl| +80815|526396|26397|3|15|21335.55|0.00|0.05|R|F|1994-12-31|1995-01-10|1995-01-18|DELIVER IN PERSON|RAIL|uickly furiously regular ac| +80815|135367|22874|4|8|11218.88|0.08|0.08|A|F|1995-02-06|1995-01-17|1995-02-07|TAKE BACK RETURN|MAIL|y even packages. enticingly busy accounts a| +80815|99177|36681|5|18|21171.06|0.03|0.03|R|F|1995-01-29|1995-01-26|1995-02-06|COLLECT COD|FOB|al package| +80840|157853|32860|1|16|30573.60|0.03|0.04|A|F|1993-11-27|1994-01-21|1993-12-27|TAKE BACK RETURN|MAIL|ins. blithely f| +80840|22895|10396|2|18|32722.02|0.10|0.07|A|F|1993-12-13|1993-12-11|1993-12-20|COLLECT COD|SHIP|eas. quickly ironic dependencies ca| +80840|792078|17109|3|24|28080.96|0.01|0.02|A|F|1993-11-26|1994-01-25|1993-12-12|DELIVER IN PERSON|REG AIR|y silent requests. qu| +80841|907804|7805|1|27|48917.52|0.03|0.05|R|F|1994-07-02|1994-07-11|1994-07-18|TAKE BACK RETURN|FOB|mptotes. quickly | +80841|446397|33922|2|6|8060.22|0.04|0.08|A|F|1994-08-04|1994-07-25|1994-08-18|DELIVER IN PERSON|MAIL|osits. even, regular waters u| +80841|592614|42615|3|15|25598.85|0.05|0.00|A|F|1994-09-03|1994-08-22|1994-09-14|DELIVER IN PERSON|SHIP|usly. packages after the furiously| +80842|796392|21423|1|29|43162.44|0.10|0.04|A|F|1994-08-17|1994-07-16|1994-09-02|TAKE BACK RETURN|SHIP|fully according to the warh| +80842|947121|34676|2|22|25697.76|0.01|0.00|R|F|1994-07-30|1994-07-14|1994-07-31|NONE|AIR|s. accounts cajole. furiou| +80843|334589|22108|1|33|53577.81|0.03|0.01|N|O|1996-05-07|1996-03-11|1996-05-20|NONE|REG AIR|efully even instructions? f| +80844|291370|3876|1|7|9529.52|0.07|0.04|N|O|1997-02-11|1997-01-17|1997-02-24|TAKE BACK RETURN|RAIL| packages na| +80844|54039|29042|2|14|13902.42|0.05|0.05|N|O|1997-01-27|1997-02-13|1997-02-12|COLLECT COD|MAIL|lar requests cajole-- bli| +80844|226870|1879|3|36|64686.96|0.05|0.05|N|O|1997-03-15|1997-02-07|1997-04-11|NONE|REG AIR|ets grow above the| +80844|989095|39096|4|45|53282.25|0.05|0.06|N|O|1996-12-24|1997-02-03|1996-12-31|NONE|AIR|ross the express, ironic asymptotes| +80844|714901|39930|5|1|1915.87|0.00|0.07|N|O|1996-12-18|1997-02-04|1997-01-13|COLLECT COD|MAIL|about the regular, final depend| +80844|325574|38081|6|7|11196.92|0.10|0.03|N|O|1997-01-09|1997-01-17|1997-02-03|COLLECT COD|REG AIR|ckly ironic requests wake car| +80845|169796|44803|1|44|82094.76|0.04|0.00|R|F|1995-03-22|1995-06-03|1995-04-04|NONE|FOB|phins wake carefully | +80845|753958|28989|2|37|74441.04|0.02|0.05|A|F|1995-05-06|1995-04-22|1995-05-08|COLLECT COD|AIR|lyly. carefully p| +80845|770036|45067|3|42|46452.00|0.05|0.01|R|F|1995-03-20|1995-06-03|1995-04-06|NONE|RAIL|ages was. silent| +80846|294436|19447|1|10|14304.20|0.05|0.00|N|O|1995-12-16|1995-12-20|1996-01-14|NONE|RAIL|carefully regular theodolites wake fur| +80846|574684|24685|2|34|59794.44|0.00|0.00|N|O|1996-01-15|1996-02-15|1996-02-10|DELIVER IN PERSON|MAIL|ckages sleep atop the | +80846|698553|11067|3|14|21721.28|0.03|0.05|N|O|1996-02-23|1996-02-04|1996-03-15|TAKE BACK RETURN|SHIP|posits. carefully bold| +80847|808373|8374|1|7|8969.31|0.03|0.02|R|F|1994-09-29|1994-07-16|1994-10-09|COLLECT COD|FOB|al, furious pinto beans above the blithely | +80847|315055|2574|2|39|41731.56|0.08|0.08|R|F|1994-07-05|1994-07-24|1994-07-08|TAKE BACK RETURN|AIR|unusual warth| +80847|120617|33120|3|39|63866.79|0.02|0.04|R|F|1994-07-05|1994-07-31|1994-07-27|TAKE BACK RETURN|TRUCK|instructions play| +80872|976865|26866|1|42|81556.44|0.08|0.07|N|O|1997-09-15|1997-08-12|1997-09-21|COLLECT COD|MAIL|ing pinto beans| +80872|165870|3380|2|17|32909.79|0.05|0.03|N|O|1997-07-25|1997-08-22|1997-07-29|DELIVER IN PERSON|FOB|permanently even frays. final, specia| +80872|764470|2016|3|30|46033.20|0.02|0.04|N|O|1997-10-21|1997-08-20|1997-11-03|COLLECT COD|FOB|iously across the | +80872|443279|43280|4|42|51334.50|0.02|0.00|N|O|1997-08-12|1997-09-03|1997-08-24|DELIVER IN PERSON|AIR|osits wake carefully: fluffily regul| +80872|173855|36359|5|27|52078.95|0.00|0.05|N|O|1997-08-25|1997-08-27|1997-08-29|COLLECT COD|REG AIR|ending forges above the sly| +80873|608846|33871|1|38|66682.78|0.06|0.01|N|O|1998-01-08|1997-12-31|1998-01-21|NONE|SHIP|osits. final requests are blithely.| +80874|733244|20787|1|32|40870.72|0.10|0.03|N|O|1995-09-19|1995-11-24|1995-09-23|DELIVER IN PERSON|TRUCK|ructions. blithely pendin| +80874|628048|28049|2|16|15616.16|0.01|0.06|N|O|1996-01-10|1995-10-21|1996-01-22|TAKE BACK RETURN|SHIP|foxes haggle depo| +80874|595313|7825|3|3|4224.87|0.04|0.07|N|O|1995-12-22|1995-12-12|1996-01-01|NONE|FOB|urts nod. blithely e| +80875|267468|4984|1|37|53111.65|0.10|0.07|R|F|1993-04-18|1993-03-24|1993-05-05|COLLECT COD|FOB|fter the final pinto beans. si| +80875|330833|5846|2|49|91327.18|0.02|0.08|A|F|1993-03-02|1993-03-10|1993-03-19|NONE|RAIL|s serve-- final accounts w| +80875|301878|39397|3|3|5639.58|0.04|0.02|R|F|1993-02-22|1993-03-04|1993-03-12|NONE|SHIP|ar requests. qui| +80876|35179|10180|1|26|28968.42|0.08|0.04|A|F|1994-05-30|1994-07-26|1994-06-26|NONE|REG AIR|regularly. slyl| +80876|249296|11801|2|23|28641.44|0.05|0.05|R|F|1994-06-17|1994-07-15|1994-07-07|NONE|MAIL|e pinto beans try to| +80876|909355|21874|3|48|65486.88|0.07|0.06|A|F|1994-05-24|1994-07-26|1994-06-08|TAKE BACK RETURN|MAIL|final ideas are carefully gifts. carefull| +80876|527061|39572|4|24|26112.96|0.08|0.08|A|F|1994-09-04|1994-07-21|1994-09-20|COLLECT COD|MAIL| of the special, final packages. fu| +80876|301662|39181|5|35|58227.75|0.00|0.08|R|F|1994-08-29|1994-07-22|1994-09-13|DELIVER IN PERSON|TRUCK|ts unwind blithe| +80877|979438|29439|1|32|48556.48|0.00|0.06|R|F|1994-08-09|1994-09-07|1994-09-04|TAKE BACK RETURN|FOB|- fluffily unusu| +80877|412132|37149|2|41|42808.51|0.10|0.08|A|F|1994-10-07|1994-08-21|1994-11-02|NONE|SHIP| escapades wake carefully. regular | +80877|698866|23893|3|47|87647.01|0.09|0.02|R|F|1994-08-04|1994-08-30|1994-08-19|NONE|REG AIR|uffily pending accounts.| +80878|609198|9199|1|2|2214.32|0.06|0.07|N|O|1997-04-10|1997-05-07|1997-05-05|DELIVER IN PERSON|SHIP| pinto beans. unusual instructions sleep s| +80878|774901|12447|2|44|86938.28|0.00|0.04|N|O|1997-05-24|1997-05-24|1997-06-04|TAKE BACK RETURN|RAIL| regular deposi| +80878|746859|9374|3|12|22869.84|0.09|0.02|N|O|1997-05-06|1997-06-24|1997-05-29|DELIVER IN PERSON|MAIL|e packages boost carefully accord| +80879|259251|46767|1|15|18153.60|0.05|0.02|N|O|1997-10-01|1997-09-24|1997-10-17|TAKE BACK RETURN|FOB|rate accord| +80879|226353|13866|2|23|29424.82|0.05|0.03|N|O|1997-09-21|1997-10-04|1997-10-13|COLLECT COD|SHIP|lly slyly dogged pac| +80879|310027|35040|3|48|49776.48|0.02|0.08|N|O|1997-07-20|1997-08-19|1997-08-03|TAKE BACK RETURN|RAIL|deposits boost carefully. regular requests | +80904|526361|13892|1|38|52718.92|0.04|0.00|N|O|1996-05-20|1996-05-26|1996-06-17|DELIVER IN PERSON|AIR|n foxes. slyly dogged packages | +80904|548796|11307|2|3|5534.31|0.06|0.08|N|O|1996-07-21|1996-05-25|1996-08-06|DELIVER IN PERSON|SHIP| ironic accounts. ironic theodo| +80904|605031|5032|3|24|22464.00|0.08|0.04|N|O|1996-05-07|1996-06-09|1996-06-03|TAKE BACK RETURN|REG AIR|n foxes affix blithe, express asympt| +80905|892182|4700|1|40|46965.60|0.04|0.06|R|F|1994-11-05|1994-10-04|1994-11-27|TAKE BACK RETURN|SHIP|ns boost. caref| +80905|887440|37441|2|35|49959.00|0.02|0.04|R|F|1994-11-24|1994-10-01|1994-12-08|TAKE BACK RETURN|TRUCK|ut the unusual requests. furiously| +80906|482074|44584|1|44|46466.20|0.10|0.00|A|F|1994-05-17|1994-07-15|1994-05-18|COLLECT COD|RAIL|fully. fluffily ironi| +80906|214270|14271|2|44|52107.44|0.04|0.05|A|F|1994-04-30|1994-07-01|1994-05-17|DELIVER IN PERSON|SHIP|ully busy accounts. regular deposits caj| +80907|516334|3865|1|42|56713.02|0.00|0.07|N|O|1997-01-11|1997-03-27|1997-02-06|DELIVER IN PERSON|FOB|ter the pending, unusual requests. f| +80907|23391|10892|2|45|59147.55|0.10|0.05|N|O|1997-04-13|1997-03-19|1997-05-09|COLLECT COD|TRUCK|uests haggle according t| +80907|124500|12007|3|31|47259.50|0.00|0.01|N|O|1997-02-09|1997-03-08|1997-03-08|NONE|AIR|d about the carefully final p| +80907|461764|24274|4|42|72481.08|0.09|0.01|N|O|1997-01-23|1997-02-13|1997-01-30|DELIVER IN PERSON|RAIL|efully pending acc| +80907|860718|35753|5|27|45324.09|0.02|0.06|N|O|1997-01-15|1997-01-29|1997-01-18|TAKE BACK RETURN|MAIL| regular, regular ac| +80907|76566|14070|6|35|53989.60|0.03|0.08|N|O|1997-03-22|1997-03-04|1997-03-23|NONE|TRUCK| theodolites. carefully even d| +80907|836616|11649|7|42|65207.94|0.03|0.07|N|O|1997-02-03|1997-02-03|1997-02-11|COLLECT COD|REG AIR|egular packages use quickl| +80908|995120|7640|1|16|19441.28|0.10|0.04|N|O|1995-07-26|1995-07-28|1995-08-12|COLLECT COD|FOB|haggle above the stealthy| +80908|967496|42535|2|39|60974.55|0.10|0.04|N|O|1995-07-16|1995-09-20|1995-08-11|DELIVER IN PERSON|MAIL|c ideas are carefully against the c| +80908|702075|14590|3|28|30157.12|0.10|0.07|N|O|1995-10-13|1995-09-11|1995-10-24|NONE|FOB|ithely express accounts cajole| +80908|768331|30847|4|32|44777.60|0.01|0.04|N|O|1995-07-16|1995-07-29|1995-07-19|TAKE BACK RETURN|RAIL|ess platelets. ironic deposits alon| +80909|361784|24292|1|5|9228.85|0.04|0.08|A|F|1993-04-12|1993-06-15|1993-05-07|NONE|AIR|lly after the carefully ironic requests. bl| +80909|490315|27843|2|46|60043.34|0.03|0.04|A|F|1993-04-11|1993-07-03|1993-04-28|TAKE BACK RETURN|RAIL|s nag against the regular accounts. quic| +80909|719515|32030|3|39|59844.72|0.03|0.01|A|F|1993-07-21|1993-05-20|1993-08-14|NONE|RAIL|sly unusual exc| +80909|872473|10025|4|23|33244.89|0.03|0.08|A|F|1993-06-12|1993-05-25|1993-06-19|NONE|MAIL|ites nod fluffily| +80909|649180|36717|5|47|53070.05|0.06|0.06|R|F|1993-07-07|1993-06-07|1993-08-05|DELIVER IN PERSON|FOB| against the| +80909|767103|4649|6|48|56163.36|0.09|0.07|R|F|1993-06-18|1993-05-21|1993-07-08|TAKE BACK RETURN|MAIL|pecial accounts sleep| +80910|591185|41186|1|43|54874.88|0.06|0.01|R|F|1995-05-04|1995-06-18|1995-05-31|TAKE BACK RETURN|TRUCK|uriously special pinto beans cajole fu| +80910|38815|1316|2|24|42091.44|0.02|0.05|R|F|1995-05-24|1995-06-06|1995-06-15|COLLECT COD|AIR|d of the carefully| +80910|349448|24461|3|18|26953.74|0.06|0.04|N|O|1995-07-20|1995-07-05|1995-08-03|TAKE BACK RETURN|REG AIR|st slowly pending, even reque| +80910|159878|9879|4|42|81390.54|0.08|0.06|R|F|1995-05-09|1995-06-22|1995-05-31|COLLECT COD|MAIL|thely among the epitaphs. even foxes int| +80910|53224|28227|5|8|9417.76|0.08|0.00|N|O|1995-08-28|1995-06-21|1995-09-26|TAKE BACK RETURN|TRUCK|s affix quickly regular ideas. q| +80911|631964|6989|1|29|54981.97|0.10|0.08|A|F|1994-04-14|1994-05-14|1994-05-06|DELIVER IN PERSON|MAIL|e of the furiously ironic deposits| +80936|738960|13989|1|14|27985.02|0.08|0.03|N|O|1996-10-06|1996-12-18|1996-11-03|DELIVER IN PERSON|FOB|e furiously deposits. carefully special p| +80936|693201|30741|2|30|35825.10|0.05|0.02|N|O|1996-10-27|1996-11-15|1996-11-15|NONE|MAIL|pending packages sleep blithely. re| +80936|621228|46253|3|14|16088.66|0.08|0.06|N|O|1996-12-02|1996-11-28|1996-12-13|NONE|REG AIR|ar accounts solve even instruction| +80936|968219|43258|4|21|27030.57|0.10|0.02|N|O|1996-10-30|1996-11-10|1996-11-10|TAKE BACK RETURN|SHIP|dly quick realm| +80936|850541|542|5|22|32813.00|0.05|0.08|N|O|1996-11-29|1996-10-21|1996-12-28|DELIVER IN PERSON|TRUCK| furiously even accounts b| +80937|714379|39408|1|40|55733.60|0.03|0.03|N|O|1998-05-09|1998-04-12|1998-05-28|COLLECT COD|TRUCK|ructions. slyly even courts are a| +80937|562404|12405|2|47|68919.86|0.10|0.04|N|O|1998-05-11|1998-05-25|1998-05-23|COLLECT COD|FOB|nal deposits impress flu| +80937|320843|8362|3|36|67097.88|0.03|0.02|N|O|1998-05-05|1998-04-12|1998-05-27|NONE|SHIP|ithely after the du| +80937|401745|39270|4|43|70808.96|0.05|0.05|N|O|1998-04-09|1998-05-20|1998-04-18|NONE|RAIL|the even, silent reque| +80937|118544|6051|5|4|6250.16|0.01|0.02|N|O|1998-03-04|1998-05-12|1998-03-10|DELIVER IN PERSON|AIR|ainments sleep quickly.| +80938|99882|24885|1|32|60220.16|0.06|0.00|A|F|1992-11-02|1992-10-31|1992-11-28|DELIVER IN PERSON|FOB| regular, r| +80938|708270|45813|2|22|28121.28|0.03|0.08|R|F|1992-09-21|1992-11-01|1992-10-14|NONE|SHIP|olites. slyly regular instructions afte| +80938|887757|25309|3|38|66298.98|0.01|0.00|A|F|1992-09-29|1992-12-05|1992-10-07|COLLECT COD|RAIL|furiously express pinto beans. bold| +80938|528237|40748|4|49|61995.29|0.05|0.03|R|F|1992-09-22|1992-10-24|1992-09-23|NONE|FOB|ix around the bold, | +80938|65522|3026|5|12|17850.24|0.01|0.08|R|F|1992-12-30|1992-10-26|1993-01-13|NONE|RAIL|counts boost requests. finally final packa| +80938|225582|38087|6|4|6030.28|0.02|0.00|R|F|1992-11-21|1992-11-16|1992-11-25|COLLECT COD|AIR|he fluffily express | +80939|29733|17234|1|28|46556.44|0.07|0.05|R|F|1992-07-01|1992-07-01|1992-07-27|TAKE BACK RETURN|MAIL|ously bold requests. ironic, regu| +80939|721864|21865|2|40|75433.20|0.08|0.05|A|F|1992-06-03|1992-07-17|1992-06-10|NONE|FOB|. platelets are alongside | +80939|361468|23976|3|30|45883.50|0.03|0.01|A|F|1992-07-29|1992-06-25|1992-08-01|DELIVER IN PERSON|SHIP|wake carefully above the| +80939|185320|47824|4|32|44970.24|0.04|0.00|R|F|1992-06-27|1992-06-23|1992-06-30|NONE|FOB|egular ideas | +80939|671351|33865|5|5|6611.60|0.04|0.01|R|F|1992-09-01|1992-08-09|1992-09-23|NONE|FOB|regular foxes across the even instruction| +80940|953964|29003|1|24|48430.08|0.10|0.00|R|F|1993-11-12|1993-10-14|1993-12-09|TAKE BACK RETURN|SHIP|ily even theodolites h| +80940|264537|27043|2|2|3003.04|0.06|0.07|A|F|1993-10-02|1993-09-01|1993-10-23|TAKE BACK RETURN|MAIL|equests. ide| +80940|56709|31712|3|20|33314.00|0.01|0.00|R|F|1993-08-23|1993-10-25|1993-09-17|COLLECT COD|FOB|y. carefully sil| +80940|94591|19594|4|10|15855.90|0.07|0.08|R|F|1993-09-12|1993-10-21|1993-09-29|DELIVER IN PERSON|AIR|quests above the special excuses | +80940|790901|28447|5|47|93617.89|0.02|0.01|R|F|1993-10-27|1993-10-22|1993-11-11|DELIVER IN PERSON|SHIP|ic grouches. slyly regular pac| +80940|666065|28579|6|12|12372.36|0.10|0.07|A|F|1993-09-14|1993-10-20|1993-09-18|DELIVER IN PERSON|REG AIR|fily unusual foxes integrat| +80941|419607|7132|1|7|10686.06|0.09|0.01|N|O|1997-09-10|1997-06-29|1997-10-02|TAKE BACK RETURN|FOB|ets according to the final att| +80942|159461|46971|1|17|25847.82|0.05|0.06|N|O|1998-06-19|1998-06-19|1998-07-10|COLLECT COD|RAIL|into beans. bold, iro| +80943|742017|17046|1|21|22238.58|0.00|0.04|N|O|1996-12-03|1997-01-20|1996-12-12|TAKE BACK RETURN|RAIL| haggle among the p| +80943|70263|45266|2|33|40697.58|0.03|0.07|N|O|1996-12-05|1996-12-29|1996-12-14|COLLECT COD|TRUCK|gainst the final, permanent patterns. spec| +80943|900650|651|3|12|19807.32|0.01|0.06|N|O|1996-12-28|1997-02-06|1996-12-29|COLLECT COD|AIR|s detect blithel| +80968|272427|34933|1|16|22390.56|0.03|0.03|R|F|1994-09-07|1994-08-04|1994-10-02|DELIVER IN PERSON|SHIP| packages. pending accounts impress alo| +80968|671405|46432|2|30|41291.10|0.00|0.03|R|F|1994-07-15|1994-08-29|1994-08-14|DELIVER IN PERSON|AIR|ructions above the ca| +80969|522372|9903|1|36|50196.60|0.06|0.02|R|F|1994-07-23|1994-10-08|1994-07-27|TAKE BACK RETURN|FOB| unusual requests affix carefully bold excu| +80969|492300|42301|2|6|7753.68|0.02|0.02|A|F|1994-08-03|1994-09-28|1994-08-19|DELIVER IN PERSON|SHIP|usual accounts nag carefully. pending| +80970|632519|45032|1|29|42092.92|0.04|0.01|N|O|1997-08-28|1997-07-22|1997-09-25|NONE|AIR|ide of the final packages use| +80970|737153|37154|2|27|32133.24|0.06|0.07|N|O|1997-06-19|1997-07-17|1997-07-02|DELIVER IN PERSON|SHIP|y bold pinto beans lose acr| +80970|320932|20933|3|7|13670.44|0.06|0.02|N|O|1997-08-20|1997-07-21|1997-08-27|COLLECT COD|SHIP|g requests. warthogs cajole| +80970|902976|15495|4|49|96967.57|0.06|0.05|N|O|1997-08-28|1997-07-25|1997-09-24|DELIVER IN PERSON|REG AIR|are furiously against the quickly ironic | +80970|302452|2453|5|49|71267.56|0.10|0.07|N|O|1997-06-08|1997-06-17|1997-07-03|NONE|SHIP|e. accounts are alongside | +80970|305928|43447|6|29|56083.39|0.02|0.01|N|O|1997-07-31|1997-07-05|1997-08-14|COLLECT COD|MAIL|al platelets detect deposits? | +80971|913061|13062|1|24|25776.48|0.02|0.05|A|F|1994-04-18|1994-03-15|1994-04-25|NONE|FOB|ly express| +80971|802514|2515|2|48|67990.56|0.10|0.06|A|F|1994-05-23|1994-03-20|1994-06-17|NONE|FOB|ymptotes after the theodolites | +80971|844906|19939|3|32|59227.52|0.03|0.03|A|F|1994-03-17|1994-04-16|1994-03-28|DELIVER IN PERSON|MAIL| slyly regular accounts. carefully final | +80971|321632|9151|4|23|38033.26|0.07|0.05|A|F|1994-02-15|1994-03-06|1994-03-09|TAKE BACK RETURN|TRUCK|h above the carefully r| +80971|664201|39228|5|28|32624.76|0.08|0.03|A|F|1994-03-22|1994-03-14|1994-04-06|NONE|AIR|xpress theodoli| +80971|212802|12803|6|9|15433.11|0.10|0.07|A|F|1994-03-12|1994-04-23|1994-03-28|TAKE BACK RETURN|FOB|ss packages. carefully| +80971|560357|10358|7|5|7086.65|0.06|0.04|A|F|1994-05-20|1994-03-06|1994-06-10|TAKE BACK RETURN|SHIP|ts. ironically final packages use fin| +80972|919974|19975|1|40|79757.20|0.08|0.03|N|O|1996-12-13|1997-01-28|1997-01-08|DELIVER IN PERSON|REG AIR|ts are furiously al| +80972|1659|39160|2|23|35894.95|0.10|0.08|N|O|1997-01-06|1997-01-19|1997-01-13|TAKE BACK RETURN|FOB|ully. slyly | +80972|879993|5028|3|18|35513.10|0.02|0.07|N|O|1997-02-04|1997-01-02|1997-03-02|COLLECT COD|FOB|y special deposits cajole carefully | +80972|35770|48271|4|20|34115.40|0.04|0.00|N|O|1997-02-15|1997-01-10|1997-02-21|TAKE BACK RETURN|RAIL|s play against t| +80972|173336|23337|5|33|46507.89|0.00|0.00|N|O|1997-02-18|1996-12-31|1997-03-03|TAKE BACK RETURN|FOB|e furiously pending theodolites | +80972|244703|19712|6|19|31306.11|0.07|0.01|N|O|1997-01-07|1997-01-31|1997-01-11|NONE|MAIL|ely final depths| +80972|721342|46371|7|7|9543.17|0.01|0.01|N|O|1997-02-06|1996-12-22|1997-02-13|DELIVER IN PERSON|AIR|slyly quickly even asym| +80973|593845|31379|1|17|32959.94|0.10|0.00|N|O|1997-06-22|1997-07-18|1997-07-01|TAKE BACK RETURN|FOB|ly. slyly fina| +80973|742011|4526|2|24|25271.52|0.06|0.07|N|O|1997-07-22|1997-07-21|1997-07-29|COLLECT COD|SHIP|cies wake careful| +80973|963871|1429|3|44|85132.52|0.10|0.06|N|O|1997-07-16|1997-07-21|1997-08-03|DELIVER IN PERSON|REG AIR|y pending | +80973|775958|989|4|7|14237.44|0.08|0.04|N|O|1997-09-14|1997-08-09|1997-10-05|NONE|FOB|g platelets! caref| +80973|523604|48625|5|18|29296.44|0.08|0.08|N|O|1997-08-31|1997-07-02|1997-09-05|TAKE BACK RETURN|REG AIR|are after the packages. speci| +80973|203174|15679|6|41|44163.56|0.08|0.08|N|O|1997-06-06|1997-07-04|1997-06-18|TAKE BACK RETURN|MAIL|haggle pen| +80973|733464|8493|7|13|19466.59|0.09|0.04|N|O|1997-09-15|1997-07-12|1997-10-15|NONE|FOB|d the carefully even r| +80974|316937|29444|1|38|74248.96|0.07|0.00|R|F|1993-01-31|1993-02-23|1993-02-06|TAKE BACK RETURN|FOB|ronic package| +80974|747914|10429|2|37|72589.56|0.04|0.03|A|F|1993-01-02|1993-02-12|1993-01-07|COLLECT COD|AIR|sits wake careful| +80974|184444|34445|3|19|29040.36|0.02|0.02|A|F|1993-01-02|1993-01-23|1993-01-10|DELIVER IN PERSON|REG AIR|ke quickly along t| +80974|944221|44222|4|26|32894.68|0.06|0.07|R|F|1993-01-17|1993-02-19|1993-02-10|NONE|RAIL|regular packages. | +80975|105346|30351|1|33|44594.22|0.05|0.07|A|F|1993-08-13|1993-06-15|1993-08-14|DELIVER IN PERSON|TRUCK|odolites. deposits above the quic| +80975|549101|49102|2|4|4600.32|0.09|0.00|A|F|1993-04-21|1993-06-21|1993-05-08|NONE|AIR|ular asymptotes-- accounts n| +80975|734833|22376|3|42|78447.60|0.07|0.02|A|F|1993-08-08|1993-05-24|1993-08-13|COLLECT COD|SHIP|packages. carefull| +80975|329499|29500|4|3|4585.44|0.02|0.08|A|F|1993-05-09|1993-06-12|1993-05-25|DELIVER IN PERSON|SHIP|furiously unusual| +80975|881717|19269|5|44|74741.48|0.06|0.08|R|F|1993-06-25|1993-05-19|1993-07-14|NONE|REG AIR|ns. quickly spe| +80975|6563|44064|6|48|70538.88|0.08|0.00|A|F|1993-07-17|1993-06-15|1993-08-06|DELIVER IN PERSON|MAIL|lent requests. requests use busily int| +81000|909820|34857|1|30|54893.40|0.03|0.04|R|F|1992-12-17|1992-10-30|1992-12-25|COLLECT COD|REG AIR|into beans use quickly pac| +81000|328182|40689|2|7|8471.19|0.05|0.06|A|F|1992-09-27|1992-12-02|1992-10-18|COLLECT COD|MAIL|packages. fluffily final packag| +81001|549149|49150|1|33|39537.96|0.00|0.06|R|F|1994-02-16|1994-04-16|1994-02-22|DELIVER IN PERSON|REG AIR|iously acc| +81001|538687|1198|2|43|74203.38|0.02|0.05|A|F|1994-05-22|1994-04-03|1994-06-16|DELIVER IN PERSON|FOB|fully even platelets shall have to inte| +81002|327758|27759|1|43|76786.82|0.00|0.01|N|O|1996-04-26|1996-04-09|1996-05-09|COLLECT COD|FOB|s haggle furiously bold asym| +81002|622835|10372|2|20|35156.00|0.01|0.05|N|O|1996-03-29|1996-04-20|1996-04-17|NONE|REG AIR|pendencies unwind blithely across the pac| +81003|474732|49751|1|40|68268.40|0.01|0.08|N|O|1995-10-11|1995-10-22|1995-11-09|COLLECT COD|FOB|ly final accou| +81003|805254|5255|2|39|45209.19|0.10|0.02|N|O|1995-10-22|1995-10-03|1995-10-24|TAKE BACK RETURN|SHIP|ress courts-- special requ| +81004|24758|24759|1|7|11779.25|0.05|0.03|N|O|1996-08-29|1996-10-05|1996-09-18|TAKE BACK RETURN|SHIP| even ideas sle| +81005|475791|810|1|37|65370.49|0.10|0.02|A|F|1992-09-05|1992-07-06|1992-09-19|DELIVER IN PERSON|REG AIR|lites sleep at the idly final excuses. p| +81005|606464|18977|2|27|37001.61|0.09|0.05|R|F|1992-07-05|1992-07-23|1992-07-19|COLLECT COD|SHIP|y final deposits wake blithely| +81005|831796|44313|3|46|79476.50|0.00|0.02|A|F|1992-07-01|1992-08-10|1992-07-07|NONE|FOB|fily bold ideas. quickly bold de| +81005|995274|45275|4|12|16430.76|0.07|0.08|R|F|1992-07-06|1992-07-21|1992-07-30|COLLECT COD|FOB| cajole-- deposits grow always de| +81006|804096|41645|1|32|32001.60|0.01|0.05|A|F|1992-06-15|1992-06-12|1992-07-03|NONE|TRUCK|s wake furiously acco| +81007|328911|28912|1|9|17459.10|0.02|0.07|N|O|1998-06-05|1998-07-10|1998-06-12|COLLECT COD|FOB|nag carefully against the carefully even| +81007|4221|16722|2|37|41633.14|0.07|0.03|N|O|1998-08-16|1998-07-08|1998-08-22|DELIVER IN PERSON|RAIL|le between the carefully regular| +81007|926441|1478|3|39|57228.60|0.10|0.05|N|O|1998-05-21|1998-07-03|1998-06-15|DELIVER IN PERSON|TRUCK|quests. exc| +81032|750262|12778|1|19|24932.37|0.00|0.02|N|O|1995-08-10|1995-10-20|1995-08-16|COLLECT COD|REG AIR|ing foxes sleep | +81032|646266|21291|2|15|18183.45|0.05|0.02|N|O|1995-09-04|1995-09-30|1995-09-20|DELIVER IN PERSON|AIR| foxes use slyly fu| +81032|781161|18707|3|39|48443.07|0.04|0.01|N|O|1995-08-23|1995-09-25|1995-08-29|COLLECT COD|TRUCK|ld requests. ruthless requests cajole ca| +81033|125282|12789|1|18|23531.04|0.03|0.07|N|O|1997-04-08|1997-04-23|1997-04-29|COLLECT COD|TRUCK|le ironicall| +81033|613367|38392|2|15|19204.95|0.06|0.02|N|O|1997-02-08|1997-03-27|1997-02-26|COLLECT COD|MAIL|ronic, even theodolites n| +81033|853745|41297|3|31|52659.70|0.00|0.03|N|O|1997-03-24|1997-04-21|1997-04-09|NONE|MAIL|ies. furiously sile| +81033|883300|20852|4|2|2566.52|0.03|0.05|N|O|1997-05-20|1997-03-17|1997-06-13|COLLECT COD|AIR|es. furiously even| +81033|608603|33628|5|47|71043.79|0.03|0.04|N|O|1997-03-17|1997-04-16|1997-03-25|TAKE BACK RETURN|FOB|. ironic instruct| +81034|510144|22655|1|36|41548.32|0.07|0.01|A|F|1994-07-26|1994-06-13|1994-08-06|DELIVER IN PERSON|REG AIR|ithely ironic fo| +81035|454631|17141|1|36|57081.96|0.05|0.08|N|O|1997-04-11|1997-04-04|1997-04-20|COLLECT COD|RAIL|out the furiously regular accounts. blith| +81035|980158|30159|2|13|16095.43|0.01|0.08|N|O|1997-04-07|1997-03-02|1997-04-08|COLLECT COD|REG AIR|olites. ironic packages are| +81035|507465|19976|3|15|22086.60|0.05|0.00|N|O|1997-03-11|1997-03-23|1997-03-24|NONE|RAIL|heodolites are against th| +81035|957392|32431|4|17|24638.95|0.09|0.00|N|O|1997-05-09|1997-03-10|1997-05-15|COLLECT COD|RAIL| silent frets| +81035|885030|22582|5|3|3044.97|0.02|0.07|N|O|1997-02-08|1997-04-24|1997-02-28|TAKE BACK RETURN|SHIP|jole alongside of the fluf| +81036|965618|15619|1|39|65659.23|0.10|0.06|N|O|1996-06-03|1996-04-20|1996-06-09|NONE|RAIL|ending pinto beans befo| +81036|134728|9733|2|9|15864.48|0.10|0.04|N|O|1996-03-29|1996-04-18|1996-04-21|NONE|REG AIR|ideas. furiously even sentiments affix flu| +81036|361367|48889|3|33|47135.55|0.00|0.01|N|O|1996-03-06|1996-05-10|1996-04-02|COLLECT COD|SHIP|ar deposits. pending foxes breach| +81036|490927|40928|4|39|74798.10|0.10|0.07|N|O|1996-03-11|1996-04-16|1996-03-18|TAKE BACK RETURN|REG AIR|ully ironic pinto bea| +81036|3293|40794|5|16|19140.64|0.02|0.00|N|O|1996-06-19|1996-04-22|1996-06-29|TAKE BACK RETURN|MAIL|dencies serve quickl| +81036|342253|4760|6|21|27200.04|0.05|0.00|N|O|1996-04-08|1996-04-20|1996-04-28|DELIVER IN PERSON|RAIL|hall cajole furiously ironic| +81036|242097|42098|7|4|4156.32|0.01|0.01|N|O|1996-04-08|1996-04-30|1996-04-29|TAKE BACK RETURN|AIR|gular deposits sleep carefully requ| +81037|912599|37636|1|12|19338.60|0.09|0.04|N|O|1998-08-29|1998-08-10|1998-09-26|NONE|RAIL|ly express deposit| +81037|38615|1116|2|19|29518.59|0.01|0.01|N|O|1998-10-17|1998-09-07|1998-11-04|TAKE BACK RETURN|TRUCK|ly even instructions. ironic pack| +81037|991387|41388|3|45|66525.30|0.09|0.01|N|O|1998-10-18|1998-08-30|1998-11-09|COLLECT COD|REG AIR|o the bold, final pack| +81037|241119|41120|4|40|42404.00|0.04|0.05|N|O|1998-08-18|1998-09-13|1998-09-03|COLLECT COD|RAIL|ckages wake quickly slyly final| +81037|477630|27631|5|21|33759.81|0.07|0.06|N|O|1998-10-02|1998-08-11|1998-11-01|DELIVER IN PERSON|AIR|s. blithely express requests | +81037|523479|48500|6|43|64605.35|0.08|0.08|N|O|1998-09-18|1998-09-10|1998-09-24|DELIVER IN PERSON|FOB|es. regular, ironic accounts sleep sly| +81037|106255|43762|7|16|20180.00|0.08|0.06|N|O|1998-08-17|1998-09-19|1998-09-12|NONE|RAIL|y about the furiously express| +81038|813887|1436|1|11|19809.24|0.06|0.07|R|F|1994-09-30|1994-07-06|1994-10-13|TAKE BACK RETURN|REG AIR|y even ideas nag slowly. sometimes regula| +81038|982961|20519|2|27|55185.84|0.10|0.02|A|F|1994-09-15|1994-08-27|1994-09-30|TAKE BACK RETURN|AIR|nal pinto beans unwind ca| +81038|618068|43093|3|23|22678.69|0.09|0.05|A|F|1994-06-13|1994-08-31|1994-06-22|NONE|REG AIR|es haggle around the fina| +81039|437904|25429|1|4|7367.52|0.02|0.08|A|F|1993-08-26|1993-07-10|1993-09-11|COLLECT COD|MAIL|s use fluffily final deposits. pe| +81039|837737|25286|2|33|55264.77|0.00|0.03|A|F|1993-08-23|1993-08-15|1993-09-16|TAKE BACK RETURN|RAIL|r the final, express sen| +81039|837479|37480|3|28|39660.04|0.04|0.07|R|F|1993-08-16|1993-08-30|1993-08-28|DELIVER IN PERSON|FOB| slyly silent | +81039|506265|18776|4|9|11441.16|0.05|0.04|A|F|1993-06-29|1993-07-30|1993-07-14|COLLECT COD|AIR|doubt quickly regul| +81039|784315|34316|5|47|65766.16|0.02|0.06|R|F|1993-07-13|1993-07-23|1993-07-25|TAKE BACK RETURN|SHIP|refully furiously expre| +81039|976143|26144|6|15|18286.50|0.06|0.03|A|F|1993-08-31|1993-08-12|1993-09-21|NONE|FOB| ironic warhorses | +81064|715527|15528|1|18|27764.82|0.10|0.02|N|O|1997-05-22|1997-03-15|1997-06-01|TAKE BACK RETURN|RAIL|ns should have to sleep| +81064|855344|42896|2|10|12993.00|0.08|0.06|N|O|1997-03-01|1997-03-14|1997-03-06|DELIVER IN PERSON|MAIL|nal foxes. bold packages wake blithely ac| +81064|753151|28182|3|31|37327.72|0.00|0.00|N|O|1997-04-15|1997-04-10|1997-04-30|COLLECT COD|RAIL|quickly expr| +81064|193594|18601|4|3|5062.77|0.10|0.08|N|O|1997-05-12|1997-04-19|1997-05-20|COLLECT COD|REG AIR|y final foxes hang quickly s| +81064|731751|6780|5|46|82005.12|0.03|0.08|N|O|1997-05-16|1997-03-01|1997-05-23|DELIVER IN PERSON|MAIL|ounts are caref| +81065|724205|24206|1|12|14750.04|0.05|0.05|R|F|1992-03-08|1992-04-26|1992-03-19|TAKE BACK RETURN|SHIP|instructions mold slyly even accounts. | +81065|699117|24144|2|45|50223.60|0.03|0.04|A|F|1992-06-19|1992-04-28|1992-06-21|TAKE BACK RETURN|MAIL|icing deposits haggle. furiously special de| +81066|430837|30838|1|7|12374.67|0.08|0.00|A|F|1994-09-19|1994-09-28|1994-10-09|DELIVER IN PERSON|RAIL|st after the r| +81066|67645|17646|2|35|56442.40|0.08|0.07|R|F|1994-08-27|1994-09-11|1994-09-21|NONE|FOB|s integrate blithely since the quickly even| +81066|902062|27099|3|19|20216.38|0.04|0.08|R|F|1994-08-01|1994-09-12|1994-08-30|COLLECT COD|REG AIR|al accounts haggle furiously fluffil| +81067|979319|41839|1|13|18177.51|0.02|0.04|R|F|1994-10-17|1994-12-05|1994-10-30|COLLECT COD|AIR| requests af| +81068|131949|6954|1|23|45561.62|0.00|0.05|N|O|1996-11-18|1996-12-04|1996-12-04|COLLECT COD|MAIL|requests are agains| +81068|653024|15538|2|20|19539.80|0.01|0.05|N|O|1996-11-08|1996-10-31|1996-12-05|NONE|REG AIR|. requests across the ironic, ir| +81068|369030|31538|3|3|3297.06|0.04|0.06|N|O|1996-10-15|1996-11-09|1996-10-24|COLLECT COD|SHIP|deposits. blithely express | +81068|281245|43751|4|20|24524.60|0.02|0.04|N|O|1996-11-28|1996-11-16|1996-12-20|DELIVER IN PERSON|TRUCK|o beans. quickly s| +81068|873474|23475|5|29|41975.47|0.02|0.07|N|O|1996-11-10|1996-11-25|1996-11-25|NONE|MAIL|ackages kindle along the requests. | +81068|477213|39723|6|32|38086.08|0.07|0.08|N|O|1996-09-23|1996-11-20|1996-10-23|COLLECT COD|REG AIR|ogged packages against the fluffily regular| +81069|334790|9803|1|38|69341.64|0.06|0.05|R|F|1994-03-28|1994-01-19|1994-04-05|COLLECT COD|REG AIR|leep slyly final requests! final, ironic | +81069|803993|3994|2|8|15175.60|0.04|0.07|A|F|1994-02-09|1994-02-24|1994-02-28|COLLECT COD|REG AIR|carefully about the carefull| +81069|702448|27477|3|16|23206.56|0.04|0.06|R|F|1993-12-24|1994-02-01|1994-01-11|COLLECT COD|TRUCK|odolites. care| +81069|42074|4575|4|1|1016.07|0.01|0.06|R|F|1993-12-12|1994-01-27|1994-01-02|COLLECT COD|REG AIR| haggle bli| +81069|129368|41871|5|22|30741.92|0.01|0.06|R|F|1994-01-23|1994-02-07|1994-02-05|COLLECT COD|FOB|ily ironic pinto beans ac| +81070|103569|41076|1|14|22015.84|0.08|0.08|N|O|1997-08-01|1997-05-06|1997-08-25|TAKE BACK RETURN|AIR|s the ironic, express ideas. furiou| +81070|677423|14963|2|30|42011.70|0.08|0.07|N|O|1997-06-25|1997-05-19|1997-07-19|TAKE BACK RETURN|AIR| quickly pending ideas af| +81070|436586|49095|3|11|16748.16|0.06|0.02|N|O|1997-06-09|1997-06-27|1997-06-13|TAKE BACK RETURN|MAIL|to the regular instructions. fluffily re| +81070|691350|3864|4|21|28167.72|0.09|0.00|N|O|1997-06-24|1997-06-04|1997-06-29|COLLECT COD|REG AIR|r deposits. idle accounts alongsi| +81070|516842|16843|5|17|31599.94|0.04|0.00|N|O|1997-05-24|1997-05-15|1997-06-09|NONE|TRUCK|hely regular dependencies. ironic, iro| +81071|65697|28199|1|20|33253.80|0.04|0.00|R|F|1993-02-26|1993-04-24|1993-03-18|COLLECT COD|RAIL|usly final platelets doze accordi| +81071|155704|5705|2|46|80946.20|0.00|0.03|A|F|1993-04-03|1993-03-21|1993-04-29|DELIVER IN PERSON|REG AIR|er the packages. slyly regula| +81071|906400|18919|3|31|43597.16|0.01|0.05|R|F|1993-05-04|1993-04-16|1993-06-02|DELIVER IN PERSON|FOB|iously. regular, unusual orbits against th| +81071|861915|49467|4|38|71321.06|0.01|0.03|R|F|1993-05-26|1993-04-09|1993-06-02|DELIVER IN PERSON|TRUCK|ven accounts impress slyly carefully | +81096|752260|14776|1|26|34117.98|0.03|0.03|N|O|1997-11-16|1997-10-20|1997-11-26|TAKE BACK RETURN|SHIP|xcuses doze furiously. ev| +81096|223511|11024|2|12|17214.00|0.02|0.04|N|O|1998-01-11|1997-11-26|1998-02-03|COLLECT COD|REG AIR|nd the fin| +81096|539036|39037|3|25|26875.25|0.06|0.00|N|O|1997-09-24|1997-11-20|1997-10-15|NONE|REG AIR|quickly busy packages use across the dep| +81096|561968|36991|4|3|6089.82|0.02|0.03|N|O|1997-10-29|1997-11-09|1997-11-14|DELIVER IN PERSON|REG AIR|ans sleep furiously ag| +81096|990830|15869|5|18|34574.22|0.00|0.00|N|O|1997-10-21|1997-11-29|1997-10-30|DELIVER IN PERSON|RAIL|yly ironic asymptotes; express, unusual a| +81096|871664|9216|6|8|13084.96|0.01|0.07|N|O|1997-12-02|1997-11-14|1997-12-24|DELIVER IN PERSON|MAIL|s. furiously final e| +81096|41488|28989|7|41|58608.68|0.05|0.05|N|O|1998-01-13|1997-10-22|1998-02-04|DELIVER IN PERSON|AIR|odolites. carefully express theodolites wa| +81097|277934|40440|1|18|34414.56|0.00|0.01|R|F|1993-04-06|1993-04-02|1993-05-03|COLLECT COD|REG AIR|ts alongside of the c| +81097|221071|33576|2|30|29761.80|0.09|0.06|A|F|1993-05-07|1993-03-07|1993-05-21|TAKE BACK RETURN|REG AIR|lar accounts cajole slyly| +81097|524110|49131|3|18|20413.62|0.09|0.04|R|F|1993-03-11|1993-02-19|1993-03-22|NONE|FOB|lar somas. busy, bold request| +81098|233348|8357|1|32|41002.56|0.03|0.07|R|F|1995-04-11|1995-04-09|1995-04-15|NONE|RAIL|gular deposits nag blithely al| +81098|876025|13577|2|30|30029.40|0.01|0.00|A|F|1995-04-18|1995-06-01|1995-04-25|TAKE BACK RETURN|MAIL| fluffily agains| +81098|336837|11850|3|34|63709.88|0.00|0.02|A|F|1995-05-09|1995-04-26|1995-06-07|NONE|SHIP|epths haggle furiously | +81099|423754|36263|1|26|43620.98|0.08|0.04|N|O|1998-05-20|1998-06-03|1998-05-29|DELIVER IN PERSON|REG AIR|usly ironic courts. furiou| +81099|31590|31591|2|26|39561.34|0.05|0.01|N|O|1998-05-25|1998-05-28|1998-05-28|COLLECT COD|RAIL| wake along the pending packages.| +81099|917991|17992|3|23|46205.85|0.10|0.08|N|O|1998-05-15|1998-07-10|1998-05-21|DELIVER IN PERSON|RAIL|g packages sleep blithely. even deposits u| +81099|668065|30579|4|3|3099.09|0.00|0.07|N|O|1998-08-05|1998-06-28|1998-08-22|TAKE BACK RETURN|RAIL|thely furiou| +81100|525919|25920|1|10|19448.90|0.02|0.02|N|O|1998-10-28|1998-09-30|1998-11-27|COLLECT COD|TRUCK|lithely again| +81100|111444|11445|2|30|43663.20|0.08|0.02|N|O|1998-10-05|1998-10-09|1998-10-07|TAKE BACK RETURN|SHIP|ss deposits. | +81100|34186|21687|3|40|44807.20|0.01|0.00|N|O|1998-10-24|1998-08-31|1998-10-30|DELIVER IN PERSON|AIR|ly ironic courts s| +81100|550673|13185|4|45|77564.25|0.08|0.06|N|O|1998-11-07|1998-09-06|1998-11-15|NONE|AIR|nusual, ironic cour| +81100|149213|49214|5|18|22719.78|0.10|0.03|N|O|1998-09-23|1998-08-24|1998-10-14|NONE|RAIL|ing to the express requ| +81100|809834|34867|6|44|76726.76|0.02|0.08|N|O|1998-08-24|1998-09-27|1998-08-25|TAKE BACK RETURN|FOB| slyly. fluffily express | +81101|675661|688|1|41|67101.83|0.06|0.00|N|O|1997-02-23|1997-03-24|1997-03-12|NONE|AIR|ole after the final ideas. pending foxes b| +81101|820188|7737|2|38|42109.32|0.05|0.08|N|O|1997-02-20|1997-02-10|1997-03-14|COLLECT COD|AIR|onic accounts detect around the fur| +81101|892677|5195|3|5|8348.15|0.00|0.05|N|O|1997-03-20|1997-03-22|1997-03-29|TAKE BACK RETURN|TRUCK|affix across the | +81101|213092|38101|4|45|45228.60|0.04|0.07|N|O|1997-02-17|1997-03-15|1997-02-28|NONE|RAIL|uriously regular foxes. | +81102|812873|37906|1|46|82148.18|0.03|0.02|A|F|1993-08-26|1993-08-12|1993-08-31|DELIVER IN PERSON|TRUCK|r requests.| +81102|943257|43258|2|21|27304.41|0.01|0.08|R|F|1993-07-28|1993-08-30|1993-08-18|DELIVER IN PERSON|FOB| regular requests haggle brave| +81102|309580|9581|3|35|55634.95|0.04|0.08|R|F|1993-07-13|1993-07-10|1993-07-24|COLLECT COD|SHIP|structions after the f| +81102|105751|18254|4|33|57972.75|0.08|0.07|R|F|1993-09-11|1993-07-05|1993-10-05|DELIVER IN PERSON|FOB|efully furious requests; reque| +81102|345152|20165|5|32|38308.48|0.05|0.02|R|F|1993-09-06|1993-07-17|1993-09-23|COLLECT COD|FOB|pending foxes| +81102|967780|17781|6|2|3695.48|0.08|0.00|A|F|1993-09-27|1993-07-30|1993-10-13|TAKE BACK RETURN|RAIL|l ideas. slyly final id| +81103|99723|37227|1|15|25840.80|0.08|0.01|N|O|1997-05-22|1997-05-16|1997-05-24|NONE|RAIL|endencies about the deposits haggle quick| +81128|728761|28762|1|15|26845.95|0.04|0.01|N|O|1996-09-28|1996-12-12|1996-10-18|TAKE BACK RETURN|FOB|he blithely| +81128|274677|24678|2|9|14864.94|0.01|0.05|N|O|1996-11-08|1996-12-09|1996-11-29|DELIVER IN PERSON|TRUCK|he slyly regular instructions. de| +81128|487318|12337|3|31|40463.99|0.04|0.07|N|O|1996-09-23|1996-11-02|1996-10-17|COLLECT COD|SHIP|slyly final theodolites| +81128|345042|20055|4|5|5435.15|0.05|0.07|N|O|1996-11-18|1996-12-08|1996-12-14|NONE|AIR|s requests. bold ideas eng| +81128|109863|34868|5|32|59931.52|0.10|0.04|N|O|1996-10-10|1996-10-30|1996-11-06|COLLECT COD|AIR|ke carefully against | +81128|459240|34259|6|14|16789.08|0.05|0.04|N|O|1996-10-17|1996-11-04|1996-11-12|NONE|TRUCK| accounts. permanently regul| +81129|163354|864|1|3|4252.05|0.06|0.03|A|F|1992-11-17|1992-09-27|1992-11-26|COLLECT COD|RAIL|yly ironic ins| +81129|474629|37139|2|20|32072.00|0.07|0.08|A|F|1992-11-22|1992-10-21|1992-11-25|COLLECT COD|MAIL|nding deposits. unusual packages ag| +81129|84282|21786|3|9|11396.52|0.01|0.05|A|F|1992-10-21|1992-10-13|1992-10-24|COLLECT COD|TRUCK|te sometimes against the foxes. pe| +81129|526137|1158|4|43|50013.73|0.07|0.04|A|F|1992-10-22|1992-10-02|1992-10-25|DELIVER IN PERSON|SHIP| the blithely express | +81129|767932|5478|5|32|63996.80|0.05|0.00|A|F|1992-11-21|1992-11-14|1992-12-11|TAKE BACK RETURN|TRUCK|es. ideas sleep enticingly al| +81130|949497|24534|1|35|54125.75|0.07|0.00|N|O|1997-12-09|1998-01-11|1997-12-23|COLLECT COD|REG AIR|ngage. blithely bold packages are| +81130|195920|20927|2|12|24191.04|0.10|0.03|N|O|1998-01-18|1998-02-17|1998-02-04|COLLECT COD|AIR| unusual foxes. carefully ironi| +81130|819598|44631|3|16|24280.80|0.08|0.02|N|O|1997-12-09|1998-01-12|1998-01-05|COLLECT COD|SHIP| run across the fluffily ironic excuses;| +81130|967401|17402|4|36|52860.96|0.04|0.06|N|O|1998-01-17|1998-01-08|1998-01-22|COLLECT COD|MAIL|ackages. s| +81130|94774|7276|5|1|1768.77|0.09|0.00|N|O|1998-01-11|1998-02-11|1998-02-10|COLLECT COD|FOB|tions haggle doggedly regular accounts. eve| +81130|852780|40332|6|15|25991.10|0.03|0.05|N|O|1997-12-19|1997-12-28|1998-01-14|NONE|RAIL|s according to the furiously reg| +81131|986808|11847|1|48|90948.48|0.04|0.07|N|O|1996-05-27|1996-08-13|1996-06-02|NONE|TRUCK| cajole. slyly special| +81131|276118|38624|2|50|54705.00|0.01|0.06|N|O|1996-05-26|1996-07-09|1996-06-19|NONE|REG AIR| pinto bean| +81132|945448|33003|1|20|29868.00|0.02|0.07|R|F|1995-05-13|1995-06-14|1995-06-09|DELIVER IN PERSON|MAIL|oxes nag boldly above the car| +81132|143229|30736|2|44|55977.68|0.08|0.03|R|F|1995-03-29|1995-05-01|1995-04-06|NONE|REG AIR|metimes regu| +81132|238054|13063|3|41|40673.64|0.01|0.01|R|F|1995-05-12|1995-05-31|1995-05-20|COLLECT COD|AIR|cial excuses haggle furi| +81132|964476|14477|4|20|30808.60|0.05|0.06|N|O|1995-07-17|1995-05-03|1995-07-24|DELIVER IN PERSON|MAIL|lyly regular| +81132|933459|8496|5|16|23878.56|0.10|0.01|R|F|1995-05-05|1995-05-26|1995-05-22|COLLECT COD|MAIL|ithely regular asymptotes na| +81132|631172|18709|6|19|20959.66|0.03|0.01|A|F|1995-05-09|1995-05-11|1995-05-12|TAKE BACK RETURN|REG AIR|the carefully special braids. regula| +81132|104217|41724|7|8|9769.68|0.10|0.05|R|F|1995-04-12|1995-05-05|1995-05-05|COLLECT COD|REG AIR| final packages around the slyly bold de| +81133|559081|21593|1|19|21661.14|0.09|0.00|A|F|1992-09-13|1992-07-22|1992-10-03|TAKE BACK RETURN|SHIP|rts after the quickly| +81133|472616|10144|2|34|54012.06|0.02|0.03|R|F|1992-09-09|1992-08-16|1992-09-15|NONE|RAIL|lar requests. care| +81134|796202|33748|1|26|33752.42|0.00|0.00|N|O|1998-01-09|1998-03-21|1998-01-20|TAKE BACK RETURN|AIR|gular instructions eat be| +81134|760333|47879|2|14|19506.20|0.04|0.02|N|O|1998-01-09|1998-02-22|1998-01-31|COLLECT COD|REG AIR|about the carefully u| +81134|909345|21864|3|40|54172.00|0.10|0.03|N|O|1998-01-04|1998-02-28|1998-02-01|DELIVER IN PERSON|REG AIR|ts. bold deposits lose past the fur| +81134|355914|30929|4|9|17729.10|0.10|0.04|N|O|1998-04-17|1998-03-01|1998-05-10|NONE|FOB|ests haggle among the unusual platelet| +81134|833311|20860|5|45|55992.15|0.01|0.01|N|O|1998-02-18|1998-02-04|1998-03-17|DELIVER IN PERSON|SHIP|the bold, express packages | +81134|455838|18348|6|10|17938.10|0.02|0.04|N|O|1998-03-21|1998-02-19|1998-03-22|NONE|FOB| even, regular p| +81135|425491|508|1|4|5665.88|0.02|0.05|N|O|1998-03-23|1998-05-29|1998-03-25|TAKE BACK RETURN|FOB|nic accounts wake blithely| +81135|212646|12647|2|4|6234.52|0.01|0.05|N|O|1998-03-19|1998-05-04|1998-04-15|TAKE BACK RETURN|FOB| accounts. even dependencies cajole slyly| +81160|11973|36974|1|5|9424.85|0.10|0.07|A|F|1995-04-03|1995-05-07|1995-04-09|TAKE BACK RETURN|FOB|rthogs nod slyly. pending a| +81160|224712|12225|2|10|16367.00|0.07|0.08|N|O|1995-06-24|1995-06-10|1995-07-24|NONE|TRUCK|he deposits | +81160|723946|23947|3|6|11819.46|0.05|0.05|N|O|1995-07-18|1995-05-13|1995-07-26|TAKE BACK RETURN|SHIP|gular ideas. slyly pending theodolites use | +81161|725800|829|1|22|40166.94|0.08|0.06|R|F|1994-11-15|1994-10-04|1994-11-20|DELIVER IN PERSON|SHIP|uses boost acros| +81161|520303|7834|2|46|60870.88|0.01|0.07|A|F|1994-08-26|1994-10-27|1994-09-13|DELIVER IN PERSON|RAIL| special packages. pending accounts in| +81161|726738|14281|3|41|72352.70|0.02|0.07|R|F|1994-09-21|1994-10-26|1994-10-16|TAKE BACK RETURN|RAIL| the fluffily unusual asymptotes; fluffily | +81161|275990|38496|4|22|43251.56|0.02|0.04|A|F|1994-09-12|1994-09-17|1994-09-24|TAKE BACK RETURN|SHIP|iously blithely reg| +81161|551089|13601|5|38|43322.28|0.03|0.08|R|F|1994-10-31|1994-10-08|1994-11-14|COLLECT COD|RAIL|into beans.| +81161|152788|15292|6|42|77312.76|0.06|0.01|A|F|1994-11-01|1994-10-12|1994-11-18|DELIVER IN PERSON|TRUCK| ironic requests | +81161|898772|23807|7|36|63746.28|0.03|0.08|R|F|1994-09-03|1994-10-11|1994-09-23|TAKE BACK RETURN|FOB|solve blithe, sil| +81162|647853|47854|1|33|59427.06|0.08|0.07|N|O|1996-10-31|1996-11-22|1996-11-02|NONE|AIR|is hinder ruthlessly regular ideas. careful| +81163|570116|7650|1|2|2372.18|0.09|0.08|A|F|1994-10-30|1994-12-15|1994-11-22|NONE|AIR|l instructions. fu| +81163|933454|21009|2|33|49084.53|0.06|0.01|A|F|1994-11-12|1994-12-01|1994-12-06|COLLECT COD|SHIP|ess accounts. unus| +81163|552713|27736|3|7|12359.83|0.07|0.07|A|F|1994-12-12|1994-12-01|1995-01-05|NONE|SHIP|its boost slyly final, bold| +81163|437890|399|4|50|91393.50|0.03|0.00|A|F|1994-11-25|1994-11-04|1994-12-22|DELIVER IN PERSON|RAIL|s. quickly unus| +81163|615726|28239|5|28|45967.32|0.03|0.03|R|F|1994-11-03|1994-12-26|1994-11-24|TAKE BACK RETURN|RAIL|s haggle alongside of t| +81164|256023|6024|1|8|7832.08|0.00|0.00|N|O|1996-07-29|1996-09-15|1996-08-15|TAKE BACK RETURN|MAIL|kly ironic accounts. | +81164|967920|42959|2|13|25842.44|0.05|0.01|N|O|1996-09-02|1996-09-12|1996-09-18|TAKE BACK RETURN|AIR|r, fluffy pla| +81164|815446|27963|3|37|50371.80|0.05|0.03|N|O|1996-08-07|1996-10-01|1996-08-22|NONE|FOB|across the carefully final| +81165|928319|15874|1|36|48501.72|0.04|0.03|R|F|1993-08-30|1993-10-12|1993-09-08|NONE|REG AIR| regular instruc| +81165|247903|22912|2|14|25912.46|0.00|0.00|A|F|1993-09-28|1993-09-27|1993-10-14|COLLECT COD|MAIL| final requests. carefully iron| +81165|502947|27968|3|16|31198.72|0.06|0.07|A|F|1993-07-30|1993-08-28|1993-08-01|TAKE BACK RETURN|FOB|ng to the final, | +81165|17145|4646|4|24|25491.36|0.00|0.02|R|F|1993-10-10|1993-09-29|1993-10-26|DELIVER IN PERSON|REG AIR|blithely furiously fin| +81165|152915|2916|5|7|13775.37|0.03|0.01|A|F|1993-10-26|1993-08-19|1993-11-09|TAKE BACK RETURN|RAIL|dugouts are furiously deposits. furiousl| +81166|332336|44843|1|21|28734.72|0.03|0.05|N|O|1998-02-16|1998-02-13|1998-02-18|NONE|TRUCK|unusual excuses. slyly eve| +81166|560929|23441|2|35|69646.50|0.09|0.03|N|O|1998-02-15|1998-02-22|1998-03-05|COLLECT COD|AIR|onic hockey players. slyly pending accoun| +81166|522616|22617|3|15|24578.85|0.06|0.00|N|O|1998-03-10|1998-02-16|1998-03-16|DELIVER IN PERSON|MAIL|y ironic requests. final deposits around t| +81166|606199|31224|4|6|6630.96|0.02|0.08|N|O|1998-03-31|1998-02-26|1998-04-10|TAKE BACK RETURN|SHIP|lyly final packages. furiously ironic | +81167|407960|32977|1|24|44830.56|0.03|0.07|N|O|1995-11-04|1995-09-09|1995-11-20|TAKE BACK RETURN|REG AIR|ts. closely flu| +81167|583653|46165|2|47|81621.61|0.05|0.05|N|O|1995-11-09|1995-09-29|1995-12-09|DELIVER IN PERSON|REG AIR|x. requests boost carefully about t| +81167|446854|34379|3|5|9004.15|0.03|0.03|N|O|1995-08-16|1995-10-21|1995-08-28|TAKE BACK RETURN|TRUCK|ove the even, pending deposits u| +81167|260116|35127|4|16|17217.60|0.10|0.01|N|O|1995-11-23|1995-10-07|1995-11-26|COLLECT COD|REG AIR|. furiously unusual instructions nag da| +81167|759475|9476|5|44|67515.36|0.02|0.03|N|O|1995-10-30|1995-09-29|1995-11-15|NONE|RAIL|special pinto b| +81192|444240|19257|1|8|9473.76|0.07|0.07|R|F|1994-08-05|1994-07-07|1994-08-30|TAKE BACK RETURN|TRUCK|lly even escapades. carefully special pinto| +81192|330197|42704|2|11|13498.98|0.09|0.04|A|F|1994-05-29|1994-08-17|1994-06-02|NONE|REG AIR|its wake along the even packages. slyly ev| +81193|115959|40964|1|23|45423.85|0.06|0.00|N|O|1997-01-21|1997-03-29|1997-02-04|TAKE BACK RETURN|TRUCK|sts are. bold | +81193|915140|15141|2|27|31187.70|0.02|0.06|N|O|1997-04-23|1997-03-04|1997-05-03|NONE|AIR|final accounts-- ironic, regular grouche| +81194|248926|23935|1|24|44997.84|0.08|0.00|A|F|1994-05-31|1994-05-04|1994-06-24|TAKE BACK RETURN|REG AIR|ironic deposits. sp| +81195|569481|44504|1|48|74422.08|0.06|0.03|N|O|1997-02-05|1997-02-15|1997-02-16|NONE|RAIL|cies haggle quickly against the asymptote| +81195|265236|2752|2|45|54054.90|0.06|0.03|N|O|1997-04-08|1997-02-16|1997-04-27|DELIVER IN PERSON|SHIP| affix beside the | +81195|815242|27759|3|8|9257.60|0.03|0.06|N|O|1997-03-10|1997-03-03|1997-03-19|COLLECT COD|MAIL|ages sleep; car| +81195|755942|5943|4|1|1997.91|0.06|0.02|N|O|1997-02-11|1997-02-18|1997-03-09|DELIVER IN PERSON|SHIP|ngly final accounts. quietly | +81195|117100|4607|5|37|41332.70|0.00|0.05|N|O|1997-01-24|1997-02-07|1997-02-10|COLLECT COD|SHIP|ggle carefully pending sau| +81195|90520|40521|6|30|45315.60|0.08|0.02|N|O|1997-03-27|1997-03-28|1997-04-16|TAKE BACK RETURN|FOB|f the final packages! quickly expr| +81195|355696|5697|7|25|43792.00|0.01|0.03|N|O|1997-01-18|1997-03-01|1997-01-22|TAKE BACK RETURN|SHIP|y even pains sleep after the furiously fin| +81196|175126|133|1|29|34832.48|0.00|0.06|N|O|1997-05-21|1997-03-31|1997-06-17|TAKE BACK RETURN|AIR|requests. furiously final foxes cajole | +81196|325980|25981|2|1|2005.97|0.07|0.00|N|O|1997-04-04|1997-04-27|1997-04-09|NONE|SHIP|ly furiously| +81196|733094|45609|3|30|33811.80|0.00|0.01|N|O|1997-05-07|1997-03-24|1997-05-08|COLLECT COD|AIR|y regular e| +81196|98127|10629|4|46|51755.52|0.07|0.06|N|O|1997-04-18|1997-04-19|1997-05-04|TAKE BACK RETURN|AIR|final deposits sleep slyly after the furi| +81196|216069|3582|5|37|36446.85|0.02|0.01|N|O|1997-03-13|1997-04-20|1997-04-07|DELIVER IN PERSON|REG AIR|ounts. express patterns boost slyly | +81197|269594|44605|1|40|62543.20|0.02|0.02|N|O|1997-06-26|1997-06-07|1997-07-18|DELIVER IN PERSON|FOB|metimes across the furiousl| +81198|190721|28231|1|41|74280.52|0.04|0.02|N|O|1996-04-01|1996-02-21|1996-04-09|COLLECT COD|REG AIR|ding theodolites haggle fluffily| +81198|435438|10455|2|5|6867.05|0.09|0.05|N|O|1996-02-23|1996-04-15|1996-03-24|NONE|SHIP|s integrate furiously abo| +81198|393019|30541|3|8|8896.00|0.03|0.05|N|O|1996-04-24|1996-03-07|1996-05-07|TAKE BACK RETURN|FOB|ns nag blithely along th| +81198|454998|30017|4|32|62495.04|0.00|0.00|N|O|1996-03-10|1996-02-22|1996-04-02|COLLECT COD|MAIL|er the furious| +81198|143659|6162|5|30|51079.50|0.07|0.08|N|O|1996-02-09|1996-04-12|1996-03-03|TAKE BACK RETURN|FOB|uses. furiously final requests | +81198|461761|49289|6|25|43068.50|0.08|0.07|N|O|1996-05-08|1996-02-23|1996-05-09|DELIVER IN PERSON|SHIP|s hang blithely. bold account| +81198|816781|29298|7|9|15279.66|0.07|0.02|N|O|1996-03-18|1996-04-05|1996-04-12|TAKE BACK RETURN|SHIP|le furiously above the carefully silent dep| +81199|623423|48448|1|35|47123.65|0.01|0.05|N|O|1998-07-02|1998-05-22|1998-07-10|TAKE BACK RETURN|SHIP|r accounts are | +81199|868337|18338|2|7|9137.03|0.10|0.03|N|O|1998-06-05|1998-06-03|1998-06-11|NONE|MAIL|unusual theodolites. even packag| +81224|394379|6887|1|11|16206.96|0.03|0.02|N|O|1996-03-17|1996-03-23|1996-04-07|DELIVER IN PERSON|AIR|blithely regular requ| +81225|30217|30218|1|10|11472.10|0.06|0.08|N|O|1998-04-24|1998-05-01|1998-05-24|COLLECT COD|AIR|ayers wake| +81225|850918|25953|2|43|80361.41|0.04|0.08|N|O|1998-05-16|1998-05-27|1998-05-27|NONE|REG AIR|haggle furiously about the special, spec| +81225|373568|23569|3|37|60737.35|0.00|0.02|N|O|1998-04-14|1998-04-04|1998-04-17|NONE|REG AIR|the blithely even requests. ironi| +81225|543351|43352|4|4|5577.32|0.00|0.01|N|O|1998-06-20|1998-05-01|1998-07-17|DELIVER IN PERSON|MAIL|aggle across the fluffily even requests. c| +81226|20711|20712|1|38|62004.98|0.06|0.01|N|O|1996-07-28|1996-05-28|1996-08-19|DELIVER IN PERSON|AIR|ly regular packages. foxes haggle. | +81226|74330|11834|2|4|5217.32|0.00|0.03|N|O|1996-06-06|1996-07-05|1996-06-15|DELIVER IN PERSON|TRUCK|capades play around t| +81226|251041|26052|3|18|17856.54|0.09|0.06|N|O|1996-07-15|1996-07-03|1996-07-24|TAKE BACK RETURN|FOB|al theodolites. final, even sauterne| +81226|238283|788|4|5|6106.35|0.08|0.04|N|O|1996-08-03|1996-05-21|1996-08-04|TAKE BACK RETURN|MAIL|ns. even theodolites affix never. slyl| +81227|606509|19022|1|24|33971.28|0.06|0.00|N|O|1996-04-26|1996-04-06|1996-05-24|TAKE BACK RETURN|SHIP|al pinto beans haggle furiously acro| +81227|582244|19778|2|21|27850.62|0.05|0.02|N|O|1996-05-30|1996-04-08|1996-06-08|COLLECT COD|RAIL|the carefully bold requests sleep carefully| +81227|759165|34196|3|18|22034.34|0.04|0.02|N|O|1996-04-21|1996-05-18|1996-05-07|COLLECT COD|TRUCK|ckly fluffily final reques| +81227|282095|44601|4|47|50622.76|0.08|0.03|N|O|1996-03-03|1996-05-27|1996-03-10|DELIVER IN PERSON|TRUCK|c, regular th| +81227|155448|17952|5|34|51116.96|0.10|0.08|N|O|1996-04-23|1996-05-15|1996-05-05|COLLECT COD|REG AIR| express packa| +81227|604519|29544|6|40|56939.20|0.07|0.02|N|O|1996-04-27|1996-04-13|1996-05-01|COLLECT COD|MAIL| unusual foxes sleep furiou| +81228|403981|41506|1|12|22619.52|0.05|0.08|A|F|1992-08-22|1992-08-10|1992-08-31|COLLECT COD|AIR|uietly final dolphins cajole c| +81228|695486|33026|2|24|35554.80|0.09|0.02|R|F|1992-08-07|1992-08-17|1992-09-05|TAKE BACK RETURN|FOB|uickly enticing deposits. regu| +81228|30497|17998|3|4|5709.96|0.10|0.02|A|F|1992-09-08|1992-07-27|1992-09-25|NONE|SHIP|s sleep de| +81228|551107|13619|4|24|27793.92|0.07|0.07|A|F|1992-08-01|1992-07-27|1992-08-13|NONE|FOB|blithely pen| +81228|444539|7048|5|50|74175.50|0.05|0.08|R|F|1992-09-20|1992-07-18|1992-10-12|NONE|TRUCK|ven deposit| +81228|364438|14439|6|5|7512.10|0.02|0.05|R|F|1992-08-20|1992-07-02|1992-08-21|NONE|MAIL|ithely regular| +81228|103054|40561|7|29|30654.45|0.01|0.03|A|F|1992-07-20|1992-08-22|1992-08-08|TAKE BACK RETURN|AIR|de of the slyly ironic packages| +81229|20183|45184|1|5|5515.90|0.07|0.07|N|O|1998-10-30|1998-09-28|1998-10-31|NONE|REG AIR| excuses. clo| +81229|202240|2241|2|7|7995.61|0.04|0.02|N|O|1998-10-30|1998-10-27|1998-11-11|DELIVER IN PERSON|TRUCK|sts. warthogs cajo| +81229|41335|3836|3|48|61263.84|0.06|0.03|N|O|1998-08-10|1998-10-01|1998-08-28|DELIVER IN PERSON|SHIP| excuses a| +81230|123899|36402|1|4|7691.56|0.04|0.08|R|F|1994-06-06|1994-07-18|1994-06-09|DELIVER IN PERSON|TRUCK|al accounts.| +81230|356231|18739|2|13|16733.86|0.07|0.08|R|F|1994-08-05|1994-08-01|1994-08-23|COLLECT COD|TRUCK|e slyly unusual | +81230|164063|1573|3|31|34938.86|0.03|0.07|A|F|1994-09-27|1994-08-27|1994-10-21|TAKE BACK RETURN|RAIL|ess, even packages wake slyly. | +81230|394863|19878|4|23|45030.55|0.08|0.01|A|F|1994-10-02|1994-08-25|1994-10-09|TAKE BACK RETURN|SHIP|eans nag furiously. slyly regular| +81230|447874|35399|5|44|80161.40|0.03|0.06|R|F|1994-06-21|1994-08-26|1994-07-05|DELIVER IN PERSON|REG AIR|across the slyly silent packages. furi| +81230|413897|13898|6|48|86921.76|0.06|0.01|R|F|1994-08-21|1994-08-29|1994-09-04|NONE|SHIP|ggle quickl| +81230|362762|284|7|7|12773.25|0.08|0.02|A|F|1994-09-01|1994-08-11|1994-09-10|COLLECT COD|MAIL|ts: enticingly| +81231|940905|15942|1|10|19458.60|0.09|0.08|N|O|1998-04-07|1998-03-30|1998-04-25|TAKE BACK RETURN|REG AIR|iers doze. accounts unwind above t| +81231|784075|21621|2|29|33612.16|0.00|0.02|N|O|1998-04-03|1998-02-24|1998-04-04|COLLECT COD|REG AIR|p according to the doggedly pending deposit| +81256|657248|19762|1|27|32540.67|0.00|0.06|A|F|1994-07-22|1994-06-28|1994-08-05|COLLECT COD|SHIP|lithely daring in| +81257|779452|29453|1|6|9188.52|0.04|0.05|N|O|1998-10-14|1998-10-01|1998-10-30|COLLECT COD|SHIP| finally final accounts. | +81257|245314|32827|2|3|3777.90|0.05|0.03|N|O|1998-11-01|1998-08-07|1998-11-12|DELIVER IN PERSON|REG AIR|uests. express pinto beans use across t| +81257|988341|13380|3|39|55742.70|0.06|0.01|N|O|1998-08-18|1998-09-07|1998-09-05|DELIVER IN PERSON|FOB|ly ironic packages cajole? furi| +81257|46607|46608|4|34|52822.40|0.09|0.07|N|O|1998-09-20|1998-08-24|1998-09-28|COLLECT COD|MAIL|kly special pinto beans are| +81257|317116|17117|5|5|5665.50|0.08|0.06|N|O|1998-08-21|1998-08-21|1998-09-14|DELIVER IN PERSON|SHIP|c requests after the | +81257|763485|1031|6|12|18581.40|0.04|0.06|N|O|1998-09-23|1998-08-26|1998-09-27|COLLECT COD|REG AIR|tions detect slyly. ironic i| +81258|475311|25312|1|7|9004.03|0.08|0.04|N|O|1995-08-15|1995-08-28|1995-09-12|DELIVER IN PERSON|TRUCK|r dependencies eat. b| +81259|914541|14542|1|44|68442.00|0.06|0.05|A|F|1994-02-02|1994-04-07|1994-02-11|NONE|SHIP|riously special accounts nag slyly after t| +81259|683692|33693|2|29|48594.14|0.00|0.01|A|F|1994-05-06|1994-03-04|1994-05-27|DELIVER IN PERSON|RAIL|r deposits cajole always bold accounts. sl| +81260|670479|20480|1|21|30438.24|0.09|0.02|N|O|1998-07-01|1998-08-04|1998-07-07|NONE|RAIL|sily regular deposits. ironic, un| +81260|729697|17240|2|23|39713.18|0.06|0.06|N|O|1998-06-01|1998-07-22|1998-06-27|COLLECT COD|MAIL|ic pinto beans. | +81260|10719|10720|3|37|60299.27|0.03|0.01|N|O|1998-06-11|1998-07-11|1998-06-17|NONE|FOB|fully final accounts sleep quickly abo| +81260|151821|1822|4|10|18728.20|0.08|0.00|N|O|1998-07-13|1998-06-18|1998-08-10|TAKE BACK RETURN|AIR|special foxes. final accoun| +81260|652481|27508|5|3|4300.35|0.06|0.07|N|O|1998-08-23|1998-07-03|1998-09-13|COLLECT COD|FOB|ions sleep furiousl| +81260|245714|8219|6|3|4979.10|0.09|0.04|N|O|1998-06-27|1998-07-13|1998-07-03|COLLECT COD|TRUCK|nts haggle fluffily| +81261|415312|27821|1|46|56455.34|0.02|0.06|N|O|1996-02-06|1995-12-27|1996-03-02|COLLECT COD|MAIL|gside of the de| +81261|138678|38679|2|24|41200.08|0.05|0.08|N|O|1995-10-28|1995-12-07|1995-11-12|TAKE BACK RETURN|TRUCK|y final deposits; carefu| +81261|744412|6927|3|15|21845.70|0.08|0.02|N|O|1996-01-03|1995-12-03|1996-01-21|DELIVER IN PERSON|REG AIR|e slyly idle pinto beans bo| +81262|600176|12689|1|26|27979.64|0.06|0.06|A|F|1994-02-22|1994-02-19|1994-03-10|NONE|RAIL|nts. regularly bli| +81262|156097|18601|2|45|51889.05|0.05|0.02|A|F|1994-04-05|1994-02-04|1994-04-14|NONE|REG AIR|busy pinto beans. car| +81262|511652|49183|3|27|44918.01|0.01|0.00|R|F|1994-01-07|1994-01-29|1994-01-13|DELIVER IN PERSON|AIR|impress furiously. pearls a| +81262|335126|22645|4|39|45283.29|0.01|0.05|A|F|1994-04-03|1994-02-06|1994-04-11|NONE|TRUCK|es? special req| +81262|449599|12108|5|26|40262.82|0.03|0.01|A|F|1994-02-22|1994-02-01|1994-03-14|COLLECT COD|TRUCK|t furiously furiously express| +81262|406690|19199|6|11|17563.37|0.08|0.02|R|F|1994-02-12|1994-02-15|1994-03-14|NONE|AIR|usly express | +81263|612582|12583|1|32|47825.60|0.07|0.08|R|F|1993-03-01|1993-01-25|1993-03-02|COLLECT COD|MAIL|y slyly pend| +81263|656436|18950|2|8|11139.20|0.06|0.02|R|F|1993-01-24|1993-02-06|1993-02-20|DELIVER IN PERSON|SHIP| the regular packa| +81263|709590|22105|3|21|33590.76|0.08|0.04|A|F|1992-12-11|1993-01-01|1992-12-24|TAKE BACK RETURN|MAIL|ithely? quickl| +81263|66788|16789|4|50|87739.00|0.07|0.01|R|F|1993-01-02|1993-02-25|1993-01-25|NONE|MAIL|ily. furio| +81288|424953|37462|1|37|69483.41|0.08|0.08|A|F|1992-09-02|1992-06-13|1992-09-03|NONE|FOB|quests can integra| +81288|183481|33482|2|9|14080.32|0.05|0.02|A|F|1992-05-09|1992-07-01|1992-06-01|NONE|TRUCK|slyly pending asy| +81288|754085|29116|3|40|45562.00|0.00|0.02|R|F|1992-08-28|1992-06-30|1992-09-16|NONE|AIR|he ironic a| +81288|899630|37182|4|42|68442.78|0.05|0.04|R|F|1992-07-08|1992-07-17|1992-08-04|NONE|REG AIR|s accounts. even, regular instructions caj| +81288|80375|17879|5|20|27107.40|0.01|0.05|A|F|1992-08-25|1992-07-18|1992-09-05|NONE|RAIL|s detect carefully final, fin| +81288|848764|23797|6|14|23978.08|0.01|0.01|A|F|1992-05-10|1992-07-06|1992-05-14|TAKE BACK RETURN|FOB|ar requests ought to are carefully even pac| +81288|168165|18166|7|40|49326.40|0.01|0.01|A|F|1992-05-21|1992-08-03|1992-06-20|DELIVER IN PERSON|AIR|hockey players nag sly, pending| +81289|343916|6423|1|14|27438.60|0.03|0.02|R|F|1992-05-13|1992-06-21|1992-06-09|TAKE BACK RETURN|TRUCK|thely whithout the even the| +81289|183832|8839|2|37|70885.71|0.05|0.00|A|F|1992-07-07|1992-07-30|1992-07-24|DELIVER IN PERSON|FOB|the slyly unusual | +81289|649979|25004|3|14|27005.16|0.05|0.06|A|F|1992-07-18|1992-06-28|1992-07-26|TAKE BACK RETURN|RAIL|ts. unusual, unusual deposits| +81289|182337|19847|4|2|2838.66|0.05|0.00|A|F|1992-06-14|1992-06-06|1992-06-23|NONE|REG AIR|ully by the slyl| +81289|526981|14512|5|37|74294.52|0.00|0.03|R|F|1992-05-22|1992-06-11|1992-06-12|TAKE BACK RETURN|RAIL|theodolites accor| +81290|400467|468|1|46|62902.24|0.09|0.06|N|O|1997-07-23|1997-08-12|1997-07-25|TAKE BACK RETURN|SHIP|uctions wake furiously even ideas; f| +81290|633877|8902|2|39|70622.76|0.09|0.04|N|O|1997-08-27|1997-08-26|1997-09-14|DELIVER IN PERSON|REG AIR|re carefully of t| +81290|559190|9191|3|16|19986.72|0.05|0.01|N|O|1997-07-17|1997-07-31|1997-07-31|COLLECT COD|SHIP|usual theodolites. ca| +81291|341411|3918|1|10|14524.00|0.05|0.06|R|F|1992-10-10|1992-12-10|1992-10-13|NONE|MAIL|he furiously silent accounts. fluffily ex| +81291|83905|33906|2|44|83111.60|0.04|0.04|R|F|1992-11-20|1992-12-15|1992-12-07|DELIVER IN PERSON|TRUCK|o the carefully final packages.| +81291|186950|11957|3|1|2036.95|0.02|0.03|A|F|1992-11-29|1992-12-05|1992-12-05|NONE|REG AIR|ly. dependencies | +81292|72096|22097|1|29|30974.61|0.02|0.06|A|F|1992-09-08|1992-08-23|1992-09-18|COLLECT COD|MAIL|cies wake fluffily above the fin| +81292|715445|2988|2|18|26287.38|0.02|0.04|R|F|1992-08-24|1992-09-30|1992-08-29|DELIVER IN PERSON|RAIL|. busily final packages play above the| +81292|481761|44271|3|49|85394.26|0.06|0.07|A|F|1992-08-02|1992-09-23|1992-08-31|TAKE BACK RETURN|RAIL|arefully. carefully silent packages | +81292|950567|568|4|20|32350.40|0.04|0.06|R|F|1992-08-10|1992-08-11|1992-08-29|TAKE BACK RETURN|REG AIR|deposits above the blithely bold depo| +81292|170312|45319|5|34|46998.54|0.01|0.06|R|F|1992-10-27|1992-08-13|1992-11-13|COLLECT COD|MAIL|. dinos nag against the blithel| +81293|627005|27006|1|18|16775.46|0.06|0.06|N|O|1998-06-04|1998-04-23|1998-07-03|NONE|SHIP|heodolites. sl| +81293|64747|2251|2|23|39370.02|0.07|0.03|N|O|1998-05-21|1998-05-16|1998-05-30|TAKE BACK RETURN|SHIP|s. carefully ironic deposi| +81293|189253|14260|3|22|29529.50|0.10|0.04|N|O|1998-03-12|1998-05-12|1998-04-11|TAKE BACK RETURN|FOB| courts. carefully regula| +81293|769414|44445|4|26|38567.88|0.10|0.00|N|O|1998-07-01|1998-04-25|1998-07-23|DELIVER IN PERSON|RAIL|usly in place of| +81293|533790|8811|5|10|18237.70|0.03|0.07|N|O|1998-04-14|1998-05-28|1998-04-27|NONE|SHIP|he carefully ironic | +81294|401368|26385|1|16|20309.44|0.10|0.04|R|F|1993-07-18|1993-05-26|1993-07-27|DELIVER IN PERSON|REG AIR|al asymptotes boost carefully | +81294|783435|20981|2|17|25812.80|0.05|0.06|A|F|1993-06-08|1993-06-15|1993-06-26|COLLECT COD|RAIL|o the ironic, silent instructions. c| +81295|934330|46849|1|47|64121.63|0.06|0.03|A|F|1993-01-18|1992-11-24|1993-01-26|NONE|FOB|as. slyly regular hockey playe| +81295|268400|43411|2|11|15052.29|0.05|0.01|A|F|1992-12-30|1992-12-30|1993-01-13|NONE|MAIL| blithely pending requests ar| +81320|548449|35980|1|43|64389.06|0.07|0.07|R|F|1993-11-17|1993-09-21|1993-12-11|NONE|RAIL|refully along the blithely even excus| +81320|776632|14178|2|29|49549.40|0.01|0.03|R|F|1993-09-19|1993-10-04|1993-10-14|NONE|FOB|ntegrate careful| +81320|853901|28936|3|13|24113.18|0.04|0.02|A|F|1993-08-11|1993-10-14|1993-09-07|DELIVER IN PERSON|MAIL|ickly final depend| +81320|511371|36392|4|45|62205.75|0.08|0.08|A|F|1993-10-01|1993-09-30|1993-10-22|NONE|MAIL|he blithely sp| +81321|150165|37675|1|7|8506.12|0.08|0.07|N|O|1997-03-18|1997-02-11|1997-04-01|NONE|MAIL|ular accounts wake amo| +81321|811472|49021|2|2|2766.86|0.07|0.03|N|O|1997-04-23|1997-02-18|1997-05-23|DELIVER IN PERSON|AIR|s sleep ideas: quickly ironic packages w| +81321|399668|12176|3|38|67170.70|0.05|0.03|N|O|1997-01-13|1997-03-02|1997-02-03|DELIVER IN PERSON|TRUCK|ar pinto beans boost theodolites. | +81321|205314|5315|4|47|57307.10|0.07|0.08|N|O|1997-02-28|1997-02-10|1997-03-22|DELIVER IN PERSON|RAIL|bold deposits wake busily even, ev| +81321|706916|19431|5|25|48072.00|0.02|0.02|N|O|1997-02-07|1997-03-30|1997-03-07|COLLECT COD|MAIL|s. accounts wake. bold requests aft| +81321|130945|5950|6|49|96821.06|0.09|0.04|N|O|1997-02-13|1997-03-30|1997-02-16|COLLECT COD|REG AIR|e across the regular ideas. fur| +81322|914123|26642|1|35|39797.80|0.07|0.08|R|F|1992-10-01|1992-08-17|1992-10-09|TAKE BACK RETURN|MAIL|lyly even forges. unusual courts | +81322|650487|488|2|15|21561.75|0.03|0.08|R|F|1992-09-10|1992-09-05|1992-10-10|TAKE BACK RETURN|MAIL|wake. fluffily special dolphins| +81323|790895|15926|1|12|23830.32|0.07|0.08|R|F|1993-01-22|1993-02-02|1993-02-19|NONE|SHIP| blithely express foxes alo| +81323|557560|20072|2|17|27498.18|0.03|0.07|A|F|1993-02-23|1993-01-07|1993-03-05|DELIVER IN PERSON|TRUCK|above the even, pending deposits. regular| +81323|899132|11650|3|32|36194.88|0.00|0.01|A|F|1993-02-04|1993-01-09|1993-02-18|NONE|AIR|arefully idle pinto beans alongside of| +81323|707420|19935|4|40|57095.60|0.04|0.07|A|F|1993-02-07|1993-02-02|1993-02-17|COLLECT COD|FOB|ke carefull| +81323|593035|5547|5|31|34968.31|0.04|0.06|R|F|1992-11-14|1992-12-16|1992-11-20|COLLECT COD|SHIP| above the | +81324|15326|2827|1|5|6206.60|0.00|0.06|A|F|1993-08-19|1993-08-20|1993-09-14|NONE|FOB|players. packages alo| +81324|573037|48060|2|32|35520.32|0.07|0.00|R|F|1993-06-27|1993-07-12|1993-07-03|NONE|TRUCK|nal, express pinto bean| +81324|17171|4672|3|15|16322.55|0.03|0.04|R|F|1993-07-07|1993-07-16|1993-07-13|NONE|REG AIR|es after the regular accounts | +81325|741800|4315|1|50|92088.50|0.08|0.06|N|O|1996-07-08|1996-06-24|1996-07-25|NONE|AIR|ual, final requests are stealthi| +81325|424271|11796|2|40|47810.00|0.03|0.05|N|O|1996-06-11|1996-07-27|1996-06-30|NONE|SHIP|egular packages. carefully pend| +81325|706666|6667|3|24|40143.12|0.07|0.08|N|O|1996-08-01|1996-06-27|1996-08-18|DELIVER IN PERSON|FOB|hes haggle thinly carefully specia| +81325|926956|1993|4|13|25777.83|0.00|0.07|N|O|1996-05-24|1996-07-13|1996-05-29|DELIVER IN PERSON|SHIP|unts detect | +81325|342609|5116|5|35|57805.65|0.01|0.07|N|O|1996-08-29|1996-08-11|1996-09-18|TAKE BACK RETURN|RAIL|ts. furiously fi| +81325|226068|26069|6|2|1988.10|0.06|0.00|N|O|1996-08-14|1996-08-04|1996-09-08|COLLECT COD|AIR|sits detect among th| +81326|67517|5021|1|8|11876.08|0.02|0.08|N|O|1997-08-07|1997-08-15|1997-08-15|TAKE BACK RETURN|AIR|y regular deposits. deposits are bli| +81326|754405|16921|2|3|4378.11|0.05|0.02|N|O|1997-07-01|1997-07-20|1997-07-25|DELIVER IN PERSON|RAIL|oxes haggle fluffily across the theodo| +81326|275939|38445|3|22|42128.24|0.07|0.00|N|O|1997-06-03|1997-08-10|1997-06-08|NONE|FOB|thin the ironic the| +81326|700864|865|4|46|85782.18|0.05|0.08|N|O|1997-07-07|1997-07-11|1997-07-23|NONE|RAIL| pinto beans after the ironic, sly| +81326|413635|26144|5|44|68138.84|0.07|0.01|N|O|1997-06-14|1997-06-25|1997-07-08|NONE|RAIL| pending courts. sly| +81326|958990|34029|6|44|90153.80|0.07|0.08|N|O|1997-09-14|1997-06-20|1997-09-30|TAKE BACK RETURN|REG AIR|e carefully final asymptotes. slyly bo| +81327|758961|21477|1|10|20199.30|0.05|0.06|N|O|1997-08-26|1997-07-24|1997-09-12|TAKE BACK RETURN|REG AIR|bove the pending, final deposits| +81327|854998|4999|2|6|11717.70|0.08|0.05|N|O|1997-10-03|1997-09-07|1997-10-06|COLLECT COD|FOB|s unwind blithely un| +81327|941860|29415|3|17|32330.94|0.01|0.04|N|O|1997-09-30|1997-08-03|1997-10-07|TAKE BACK RETURN|AIR|final pinto bean| +81327|834378|9411|4|15|19684.95|0.05|0.06|N|O|1997-09-23|1997-07-15|1997-09-29|TAKE BACK RETURN|SHIP|s. unusual, bold Ti| +81327|378678|16200|5|44|77293.04|0.03|0.05|N|O|1997-09-29|1997-08-31|1997-10-12|DELIVER IN PERSON|AIR|arefully bold packages wake evenly iro| +81327|425623|640|6|36|55749.60|0.04|0.04|N|O|1997-10-07|1997-08-16|1997-11-02|COLLECT COD|RAIL|sly. bold din| +81327|438426|935|7|26|35474.40|0.05|0.04|N|O|1997-07-03|1997-08-05|1997-08-02|TAKE BACK RETURN|REG AIR|unts. accounts are above the fin| +81352|616458|28971|1|48|65972.16|0.04|0.00|N|O|1995-11-10|1995-12-16|1995-12-02|NONE|MAIL| quickly ironic account| +81352|801373|13890|2|48|61167.84|0.04|0.02|N|O|1995-10-30|1995-11-20|1995-11-24|TAKE BACK RETURN|REG AIR|sual packages nag carefully at the| +81352|662091|37118|3|41|43175.46|0.07|0.05|N|O|1995-12-20|1996-01-03|1996-01-04|NONE|REG AIR| bold, final foxes boost--| +81352|757542|20058|4|7|11196.57|0.00|0.00|N|O|1996-01-02|1996-01-08|1996-01-03|COLLECT COD|RAIL|c, express packages sleep| +81352|994840|32398|5|40|77392.00|0.03|0.01|N|O|1996-02-01|1996-01-09|1996-02-05|DELIVER IN PERSON|TRUCK|ly regular dolphins. regular, pending req| +81352|265601|28107|6|26|40731.34|0.04|0.05|N|O|1996-02-12|1995-12-26|1996-03-04|TAKE BACK RETURN|FOB|ronic packages. i| +81353|225284|37789|1|20|24185.40|0.07|0.07|N|O|1996-01-09|1996-01-30|1996-02-02|DELIVER IN PERSON|SHIP|as cajole regularl| +81353|342131|42132|2|18|21116.16|0.09|0.06|N|O|1995-12-22|1996-03-11|1996-01-03|NONE|RAIL|le package| +81353|194578|7082|3|17|28433.69|0.03|0.05|N|O|1996-02-16|1996-02-11|1996-03-16|TAKE BACK RETURN|TRUCK|uriously theodolites. ironic pack| +81353|259540|34551|4|7|10496.71|0.08|0.02|N|O|1995-12-29|1996-02-26|1995-12-31|TAKE BACK RETURN|TRUCK|d packages grow quickly; deposits caj| +81353|85433|10436|5|47|66666.21|0.04|0.00|N|O|1996-03-13|1996-01-28|1996-03-24|TAKE BACK RETURN|REG AIR|lithely among the bold| +81354|813221|25738|1|18|20415.24|0.08|0.06|N|O|1996-09-04|1996-08-17|1996-09-25|TAKE BACK RETURN|TRUCK|counts. quietly ironic accoun| +81354|805074|30107|2|20|19580.60|0.10|0.00|N|O|1996-07-27|1996-08-29|1996-08-22|DELIVER IN PERSON|MAIL|ng, regular packages affix | +81354|876757|14309|3|33|57212.43|0.09|0.01|N|O|1996-08-31|1996-08-26|1996-09-25|TAKE BACK RETURN|AIR|y. quickly bold hockey players ha| +81354|646784|9297|4|17|29422.75|0.06|0.07|N|O|1996-11-03|1996-09-07|1996-11-26|COLLECT COD|MAIL| the bold hockey players. | +81354|496911|21930|5|48|91578.72|0.05|0.06|N|O|1996-09-30|1996-10-09|1996-10-16|DELIVER IN PERSON|AIR|mong the regula| +81354|571559|34071|6|12|19566.36|0.03|0.05|N|O|1996-10-06|1996-09-09|1996-10-16|COLLECT COD|AIR|lites are | +81354|186097|11104|7|8|9464.72|0.03|0.00|N|O|1996-10-13|1996-09-22|1996-11-08|NONE|AIR|y even deposits. carefully unusu| +81355|717509|17510|1|5|7632.35|0.00|0.04|R|F|1992-07-10|1992-08-06|1992-08-02|DELIVER IN PERSON|RAIL|ckly final p| +81355|167705|5215|2|30|53181.00|0.09|0.06|R|F|1992-08-11|1992-06-10|1992-08-20|NONE|RAIL|. fluffily regular instructions wake qu| +81355|614586|2123|3|40|60022.00|0.10|0.04|R|F|1992-07-09|1992-08-02|1992-07-12|DELIVER IN PERSON|SHIP|sleep. slyly ironic| +81355|332724|45231|4|12|21080.52|0.02|0.08|A|F|1992-07-30|1992-07-13|1992-08-09|DELIVER IN PERSON|SHIP|usly regula| +81355|78173|40675|5|26|29930.42|0.08|0.03|A|F|1992-06-16|1992-06-20|1992-07-13|COLLECT COD|RAIL|nding dependencies h| +81355|853399|40951|6|2|2704.70|0.01|0.04|R|F|1992-08-01|1992-07-10|1992-08-04|TAKE BACK RETURN|AIR|age blithely according | +81355|70546|33048|7|37|56111.98|0.07|0.01|R|F|1992-07-23|1992-06-30|1992-07-24|DELIVER IN PERSON|TRUCK|y. carefully| +81356|651820|39360|1|13|23033.27|0.07|0.00|R|F|1994-08-01|1994-09-01|1994-08-10|TAKE BACK RETURN|SHIP|ly thin accounts cajole careful| +81356|130478|5483|2|35|52796.45|0.09|0.00|R|F|1994-07-30|1994-10-08|1994-08-08|COLLECT COD|AIR|requests are blit| +81356|927223|27224|3|25|31254.50|0.06|0.07|A|F|1994-09-29|1994-10-23|1994-10-25|NONE|FOB| packages boost regu| +81357|60961|35964|1|3|5765.88|0.00|0.04|N|O|1996-09-11|1996-10-21|1996-09-21|COLLECT COD|FOB|ts nag quickly regular asymptotes. cour| +81357|561051|23563|2|31|34472.93|0.03|0.03|N|O|1996-09-26|1996-10-23|1996-10-20|TAKE BACK RETURN|REG AIR|ent packages against the| +81357|577179|2202|3|4|5024.60|0.02|0.05|N|O|1996-10-06|1996-10-23|1996-11-04|COLLECT COD|MAIL|es promise blithely alongside of t| +81357|643267|43268|4|16|19363.68|0.04|0.04|N|O|1996-10-29|1996-09-19|1996-11-05|COLLECT COD|REG AIR|nent ideas solve after the even, pending r| +81357|384086|34087|5|29|33932.03|0.06|0.07|N|O|1996-11-29|1996-10-30|1996-12-29|NONE|SHIP|arefully ironic packages | +81358|135637|23144|1|10|16726.30|0.08|0.02|R|F|1995-04-16|1995-05-19|1995-05-13|COLLECT COD|REG AIR|ing to the ironic f| +81358|642212|29749|2|13|15004.34|0.09|0.08|A|F|1995-03-12|1995-05-06|1995-04-04|TAKE BACK RETURN|TRUCK|carefully. regular w| +81358|654596|42136|3|32|49617.92|0.01|0.05|N|F|1995-06-15|1995-05-07|1995-06-26|TAKE BACK RETURN|SHIP|nal theodolites mold slyly. quickly regular| +81358|793983|43984|4|25|51923.75|0.03|0.06|R|F|1995-02-28|1995-04-18|1995-03-02|COLLECT COD|SHIP|riously above the silent, ev| +81358|469131|44150|5|21|23102.31|0.08|0.00|N|O|1995-06-18|1995-05-03|1995-07-03|COLLECT COD|RAIL|its. regular de| +81359|804971|30004|1|7|13131.51|0.02|0.06|N|O|1997-06-16|1997-07-22|1997-07-15|NONE|REG AIR|ven gifts across the caref| +81359|131508|19015|2|19|29250.50|0.03|0.06|N|O|1997-08-14|1997-08-13|1997-08-26|DELIVER IN PERSON|TRUCK|to the carefully special packages boost ir| +81359|246180|8685|3|35|39415.95|0.07|0.07|N|O|1997-08-21|1997-07-12|1997-09-20|TAKE BACK RETURN|SHIP|accounts nag slyly sly| +81359|532483|32484|4|24|36371.04|0.04|0.04|N|O|1997-08-23|1997-08-17|1997-08-31|COLLECT COD|FOB|along the even ideas sleep blith| +81359|426741|39250|5|47|78382.84|0.07|0.00|N|O|1997-06-01|1997-08-07|1997-06-10|TAKE BACK RETURN|FOB|onic requests haggle. deposits along t| +81359|223223|10736|6|20|22924.20|0.01|0.06|N|O|1997-07-16|1997-06-30|1997-08-05|TAKE BACK RETURN|AIR|ely regular ideas. car| +81359|694795|7309|7|3|5369.28|0.04|0.05|N|O|1997-06-19|1997-07-12|1997-06-24|NONE|SHIP|with the furiously even Ti| +81384|406468|31485|1|13|17867.72|0.01|0.08|N|F|1995-06-07|1995-05-25|1995-07-06|NONE|AIR|riously pending ideas sleep blithely. sl| +81384|498183|48184|2|3|3543.48|0.06|0.02|R|F|1995-05-21|1995-04-27|1995-06-14|DELIVER IN PERSON|REG AIR| furiously even warthogs cajole| +81385|688118|25658|1|9|9954.72|0.04|0.01|N|O|1997-07-19|1997-05-28|1997-08-18|DELIVER IN PERSON|RAIL|refully even accounts integrate f| +81385|196454|21461|2|34|52715.30|0.04|0.08|N|O|1997-07-01|1997-05-30|1997-07-20|DELIVER IN PERSON|TRUCK|, unusual p| +81385|799863|49864|3|21|41219.43|0.09|0.06|N|O|1997-07-04|1997-07-04|1997-08-02|TAKE BACK RETURN|AIR|ly final requests. foxes n| +81385|292414|29930|4|40|56256.00|0.04|0.03|N|O|1997-05-21|1997-06-21|1997-06-16|TAKE BACK RETURN|SHIP|uriously unusual pinto beans. notornis n| +81386|858691|33726|1|6|9897.90|0.05|0.03|R|F|1994-06-18|1994-06-08|1994-06-23|TAKE BACK RETURN|AIR|st the carefully si| +81386|9414|34415|2|47|62200.27|0.09|0.01|R|F|1994-06-30|1994-07-10|1994-07-19|DELIVER IN PERSON|REG AIR|re. fluffily quick a| +81386|207817|20322|3|42|72441.60|0.02|0.02|A|F|1994-06-07|1994-06-05|1994-06-23|COLLECT COD|FOB|nts boost slyly slyly| +81386|767507|5053|4|10|15744.70|0.00|0.06|A|F|1994-06-11|1994-07-15|1994-07-09|NONE|REG AIR|riously care| +81386|485051|35052|5|23|23828.69|0.10|0.00|A|F|1994-08-03|1994-05-25|1994-08-29|DELIVER IN PERSON|RAIL|long the flu| +81386|242895|30408|6|47|86380.36|0.02|0.02|R|F|1994-07-22|1994-05-31|1994-08-08|NONE|SHIP|ve to cajole slyly final packages. final | +81386|332858|20377|7|37|69961.08|0.05|0.06|R|F|1994-05-19|1994-06-06|1994-05-27|NONE|MAIL|oost blithely regula| +81387|329296|41803|1|28|37107.84|0.04|0.03|N|O|1997-04-13|1997-04-04|1997-05-06|NONE|MAIL| are doggedly carefull| +81387|462016|12017|2|47|45965.53|0.02|0.07|N|O|1997-05-06|1997-03-23|1997-05-17|NONE|REG AIR|after the carefully regu| +81387|96185|21188|3|23|27167.14|0.03|0.06|N|O|1997-01-21|1997-02-12|1997-01-24|TAKE BACK RETURN|MAIL|ly braids. quic| +81388|815573|3122|1|31|46144.43|0.08|0.06|N|O|1996-03-24|1996-05-02|1996-04-05|NONE|REG AIR|de of the carefully pendin| +81388|326690|39197|2|20|34333.60|0.07|0.00|N|O|1996-06-05|1996-05-26|1996-06-17|TAKE BACK RETURN|FOB|e alongside of the f| +81388|662398|49938|3|34|46252.24|0.06|0.06|N|O|1996-04-09|1996-05-16|1996-04-17|TAKE BACK RETURN|AIR|use fluffily. furiously pending pi| +81388|914016|39053|4|39|40168.83|0.09|0.00|N|O|1996-07-09|1996-05-04|1996-07-14|DELIVER IN PERSON|MAIL|ar ideas. foxes affix furiousl| +81388|850398|12916|5|49|66069.15|0.04|0.05|N|O|1996-05-06|1996-05-01|1996-05-18|COLLECT COD|RAIL|ly final accou| +81388|632578|7603|6|42|63442.68|0.02|0.08|N|O|1996-04-09|1996-05-22|1996-04-25|TAKE BACK RETURN|REG AIR|ely regular ideas sle| +81389|714558|27073|1|1|1572.52|0.07|0.02|N|O|1996-10-16|1996-08-26|1996-11-10|DELIVER IN PERSON|MAIL|rate blithely according to th| +81389|572676|22677|2|46|80437.90|0.09|0.04|N|O|1996-09-07|1996-08-23|1996-09-11|TAKE BACK RETURN|FOB|ial packages. fl| +81389|963372|25892|3|8|11482.64|0.00|0.03|N|O|1996-07-11|1996-08-17|1996-08-09|COLLECT COD|MAIL|es affix quickly furi| +81389|388031|539|4|7|7833.14|0.02|0.08|N|O|1996-07-21|1996-08-26|1996-07-26|DELIVER IN PERSON|TRUCK| thin deposits sleep. theodolites d| +81389|636086|48599|5|35|35771.75|0.06|0.01|N|O|1996-07-13|1996-08-30|1996-07-15|TAKE BACK RETURN|FOB|quickly according to the busy a| +81389|687901|25441|6|3|5666.61|0.08|0.00|N|O|1996-07-10|1996-08-31|1996-07-20|NONE|TRUCK|ses cajole carefully bold requests. bl| +81389|537275|37276|7|40|52490.00|0.07|0.02|N|O|1996-08-12|1996-08-17|1996-09-08|DELIVER IN PERSON|FOB|ts affix carefu| +81390|964706|39745|1|12|21247.92|0.05|0.07|R|F|1992-11-29|1992-12-22|1992-12-29|TAKE BACK RETURN|AIR|ld, final theo| +81390|802049|27082|2|18|17118.00|0.02|0.06|A|F|1993-02-16|1992-12-07|1993-02-18|NONE|RAIL|riously bold asymptotes boost | +81390|22927|22928|3|49|90646.08|0.02|0.01|R|F|1992-11-12|1993-01-20|1992-12-04|NONE|FOB|e carefully | +81390|326188|38695|4|20|24283.40|0.05|0.02|A|F|1993-02-06|1992-12-29|1993-03-03|TAKE BACK RETURN|AIR|lar accounts a| +81390|236591|11600|5|8|12220.64|0.06|0.05|R|F|1992-11-14|1992-12-24|1992-11-28|DELIVER IN PERSON|TRUCK|usly about the furiously special packag| +81390|383603|8618|6|13|21925.67|0.01|0.07|R|F|1992-12-10|1993-01-22|1992-12-24|COLLECT COD|REG AIR|y; quickly special packages haggle. fluf| +81390|205366|17871|7|46|58482.10|0.05|0.04|A|F|1992-11-16|1992-12-29|1992-12-11|TAKE BACK RETURN|RAIL|s cajole bold, even pa| +81391|569750|44773|1|33|60051.09|0.00|0.06|N|O|1996-07-27|1996-07-06|1996-08-24|COLLECT COD|MAIL|ckly. pinto beans wake | +81391|777475|39991|2|10|15524.40|0.09|0.00|N|O|1996-07-31|1996-07-24|1996-08-17|NONE|SHIP|e the slyly final in| +81391|6231|31232|3|49|55724.27|0.02|0.01|N|O|1996-06-28|1996-08-20|1996-07-06|TAKE BACK RETURN|TRUCK| are furiously final foxes. asy| +81391|715217|15218|4|19|23411.42|0.05|0.00|N|O|1996-09-06|1996-07-07|1996-09-25|TAKE BACK RETURN|TRUCK|en foxes nag quickly acro| +81391|640109|15134|5|46|48257.22|0.05|0.05|N|O|1996-09-05|1996-08-18|1996-09-10|COLLECT COD|FOB|lithely regular dolphins n| +81391|311879|11880|6|37|69961.82|0.02|0.07|N|O|1996-09-11|1996-07-12|1996-09-22|NONE|SHIP|gainst the pending, even dependencies. acc| +81391|741859|29402|7|31|58925.42|0.07|0.02|N|O|1996-06-05|1996-07-28|1996-06-20|NONE|REG AIR| ironic packages. close| +81416|419292|19293|1|2|2422.54|0.02|0.00|R|F|1994-07-22|1994-07-15|1994-08-04|DELIVER IN PERSON|MAIL|cajole slyly. special, regular | +81416|26437|26438|2|23|31358.89|0.00|0.03|R|F|1994-09-02|1994-08-27|1994-09-20|NONE|SHIP|he carefully special | +81416|320804|33311|3|25|45619.75|0.06|0.04|R|F|1994-06-26|1994-07-11|1994-07-06|TAKE BACK RETURN|MAIL|tructions sleep busily along the| +81416|744432|31975|4|38|56103.20|0.07|0.02|A|F|1994-06-09|1994-07-19|1994-06-17|DELIVER IN PERSON|MAIL|sly regular instructions. pending, fi| +81416|654331|41871|5|25|32132.50|0.05|0.08|R|F|1994-08-09|1994-07-04|1994-08-19|DELIVER IN PERSON|FOB|al foxes eat.| +81417|577913|15447|1|30|59726.70|0.08|0.01|N|O|1997-10-09|1997-09-21|1997-11-04|COLLECT COD|RAIL|the furiously regula| +81417|983088|20646|2|20|23420.80|0.06|0.04|N|O|1997-07-16|1997-09-25|1997-07-30|DELIVER IN PERSON|REG AIR| beans. sly| +81417|751575|39121|3|35|56928.90|0.00|0.05|N|O|1997-08-18|1997-09-19|1997-09-05|COLLECT COD|MAIL| haggle quickly at the iron| +81417|717261|17262|4|5|6391.15|0.06|0.08|N|O|1997-09-15|1997-08-17|1997-10-15|NONE|AIR|pearls nag furiously deposits? even | +81418|806893|19410|1|11|19798.35|0.09|0.01|R|F|1993-02-09|1992-12-30|1993-02-27|NONE|AIR|e regular deposits. quickly unus| +81418|435340|10357|2|9|11477.88|0.04|0.03|R|F|1993-02-04|1993-01-19|1993-02-27|NONE|REG AIR|furiously unusual deposits. pen| +81418|753621|28652|3|41|68658.19|0.09|0.07|R|F|1993-02-21|1992-12-09|1993-03-03|DELIVER IN PERSON|MAIL| packages de| +81418|102978|2979|4|50|99048.50|0.09|0.05|R|F|1993-02-09|1992-12-18|1993-02-27|COLLECT COD|SHIP|he furious packages. regular ideas nag bl| +81418|741213|41214|5|3|3762.54|0.08|0.02|R|F|1992-12-04|1993-01-16|1992-12-30|TAKE BACK RETURN|AIR|ic, daring packages boost even p| +81418|559977|9978|6|21|42775.95|0.09|0.01|R|F|1993-01-21|1993-01-31|1993-02-12|TAKE BACK RETURN|TRUCK|hely ironic accounts boost abo| +81418|530793|5814|7|37|67479.49|0.07|0.07|R|F|1992-11-23|1992-12-22|1992-12-13|NONE|AIR|xes haggle above the packages. slyly| +81419|23704|36205|1|10|16277.00|0.05|0.04|R|F|1995-05-17|1995-05-22|1995-05-29|COLLECT COD|FOB|r attainments. instructions af| +81420|252363|39879|1|11|14468.85|0.04|0.04|N|O|1997-08-22|1997-08-02|1997-09-16|DELIVER IN PERSON|AIR|ly bold pinto beans. blithely pending packa| +81420|463184|712|2|10|11471.60|0.07|0.04|N|O|1997-08-30|1997-06-07|1997-09-01|TAKE BACK RETURN|TRUCK|sleep quickly about| +81420|718966|43995|3|25|49623.25|0.03|0.07|N|O|1997-07-24|1997-07-29|1997-08-22|DELIVER IN PERSON|AIR|ular packages haggle slyly aga| +81420|657604|45144|4|36|56216.52|0.01|0.07|N|O|1997-06-22|1997-08-04|1997-07-07|COLLECT COD|TRUCK|he carefully s| +81421|519882|44903|1|17|32331.62|0.08|0.05|A|F|1992-03-15|1992-04-14|1992-03-28|COLLECT COD|FOB|thely ironic p| +81421|646363|46364|2|25|32733.25|0.10|0.06|R|F|1992-04-01|1992-04-16|1992-04-13|DELIVER IN PERSON|SHIP| the bold pinto be| +81421|406737|44262|3|38|62460.98|0.04|0.00|R|F|1992-03-13|1992-03-31|1992-03-17|DELIVER IN PERSON|FOB|nto beans wake furiously abo| +81421|16995|29496|4|47|89863.53|0.05|0.02|R|F|1992-05-07|1992-04-27|1992-06-04|NONE|SHIP|sely regular requests sl| +81421|634139|21676|5|50|53655.00|0.01|0.06|R|F|1992-02-25|1992-04-27|1992-02-29|COLLECT COD|AIR| slow dependencies. even accounts according| +81421|968895|18896|6|22|43204.70|0.05|0.01|A|F|1992-06-17|1992-03-21|1992-07-05|NONE|FOB|thless foxes ar| +81422|43079|5580|1|24|24529.68|0.01|0.02|N|O|1996-02-10|1996-01-26|1996-02-11|TAKE BACK RETURN|SHIP|structions would nag.| +81422|15378|40379|2|18|23280.66|0.10|0.04|N|O|1995-12-26|1995-12-21|1996-01-06|COLLECT COD|SHIP| ideas nag slyly closely pe| +81422|449762|37287|3|25|42793.50|0.10|0.03|N|O|1995-12-23|1995-12-13|1996-01-20|TAKE BACK RETURN|MAIL|arefully regular| +81422|143274|5777|4|17|22393.59|0.08|0.07|N|O|1996-01-27|1996-01-15|1996-02-08|COLLECT COD|RAIL|ly regular patterns. furiously ex| +81422|996554|9074|5|33|54466.83|0.08|0.01|N|O|1996-01-24|1995-12-22|1996-02-09|NONE|RAIL|usual, ironic accounts thrash ironic f| +81422|80751|30752|6|33|57147.75|0.01|0.08|N|O|1996-01-02|1996-01-02|1996-01-18|NONE|SHIP|. slyly pending accounts of the sentimen| +81422|178865|41369|7|17|33045.62|0.05|0.03|N|O|1995-11-28|1995-12-21|1995-12-13|TAKE BACK RETURN|SHIP|iously steal| +81423|167358|4868|1|36|51312.60|0.07|0.01|N|O|1996-07-23|1996-08-21|1996-07-29|NONE|AIR|o beans haggle furiously. slyly ironic | +81423|773798|23799|2|4|7487.04|0.10|0.08|N|O|1996-09-12|1996-08-12|1996-09-24|COLLECT COD|AIR|ular instruction| +81423|207584|45097|3|20|29831.40|0.09|0.08|N|O|1996-07-20|1996-09-16|1996-07-24|DELIVER IN PERSON|TRUCK|en orbits. never express packages ar| +81448|921575|21576|1|21|33527.13|0.03|0.04|N|O|1995-12-20|1996-01-22|1996-01-19|COLLECT COD|RAIL|quests. fluffy accounts nag about| +81449|533253|45764|1|50|64311.50|0.05|0.05|R|F|1992-12-26|1993-02-08|1993-01-25|NONE|MAIL|o beans are slyly regular, regul| +81449|372792|35300|2|43|80185.54|0.08|0.06|R|F|1993-01-11|1993-01-31|1993-02-04|TAKE BACK RETURN|MAIL|thely furious theodolites! foxes | +81449|507782|45313|3|39|69800.64|0.08|0.02|R|F|1993-01-11|1993-02-22|1993-01-28|TAKE BACK RETURN|MAIL|e slyly reg| +81449|283346|8357|4|25|33233.25|0.07|0.02|R|F|1993-01-11|1993-02-07|1993-01-29|DELIVER IN PERSON|TRUCK|cies boost| +81450|529418|4439|1|43|62237.77|0.03|0.05|A|F|1992-03-26|1992-02-29|1992-03-27|DELIVER IN PERSON|REG AIR|c dependencies. packages boost ruthles| +81450|926453|1490|2|29|42902.89|0.08|0.02|A|F|1992-04-26|1992-03-17|1992-05-17|NONE|REG AIR|thely silent requests sublate furi| +81450|881326|43844|3|32|41832.96|0.10|0.01|R|F|1992-02-25|1992-03-20|1992-03-19|NONE|AIR|y. carefully regular requests doubt| +81450|434862|22387|4|23|41327.32|0.10|0.00|A|F|1992-02-07|1992-02-28|1992-03-08|COLLECT COD|MAIL|ithely ironic instructio| +81450|717615|42644|5|2|3265.16|0.01|0.05|R|F|1992-04-30|1992-02-29|1992-05-07|NONE|FOB|structions. finally even theodolite| +81451|25620|621|1|16|24729.92|0.06|0.00|N|O|1996-02-08|1996-01-14|1996-02-09|TAKE BACK RETURN|MAIL|r instructions boost blith| +81451|590159|27693|2|9|11242.17|0.04|0.05|N|O|1996-01-05|1995-12-20|1996-01-26|COLLECT COD|RAIL|ns boost blithely about the car| +81451|796611|34157|3|44|75133.52|0.05|0.08|N|O|1996-01-15|1996-02-05|1996-02-07|NONE|REG AIR|, final forges use| +81451|632230|32231|4|50|58110.00|0.06|0.02|N|O|1996-01-07|1996-01-06|1996-01-15|TAKE BACK RETURN|REG AIR|e regular packages. ironic pa| +81451|874998|24999|5|45|88782.75|0.03|0.01|N|O|1995-12-03|1996-01-30|1995-12-30|NONE|SHIP|refully. final deposits engage blithely | +81451|75435|37937|6|23|32439.89|0.10|0.00|N|O|1996-01-23|1995-12-21|1996-02-01|TAKE BACK RETURN|FOB|rate alongside of the | +81451|829746|17295|7|43|72055.10|0.08|0.00|N|O|1996-01-22|1996-01-26|1996-02-12|COLLECT COD|TRUCK| regular instructions | +81452|532044|19575|1|21|22596.42|0.10|0.02|N|O|1995-11-02|1995-09-10|1995-11-09|COLLECT COD|FOB|aggle blithely final requests. qui| +81452|61384|11385|2|19|25562.22|0.03|0.07|N|O|1995-10-16|1995-09-24|1995-10-21|TAKE BACK RETURN|FOB|r dolphins haggle| +81452|668490|43517|3|46|67089.16|0.10|0.01|N|O|1995-11-13|1995-10-21|1995-12-01|TAKE BACK RETURN|FOB|e requests cajole quickl| +81452|304104|29117|4|48|53188.32|0.05|0.00|N|O|1995-08-31|1995-10-01|1995-09-30|NONE|TRUCK| deposits. blithely unu| +81452|60565|35568|5|38|57971.28|0.03|0.00|N|O|1995-09-09|1995-09-17|1995-10-04|DELIVER IN PERSON|MAIL|cajole quickly-- carefully regular accounts| +81452|914890|39927|6|12|22858.20|0.08|0.03|N|O|1995-11-11|1995-09-26|1995-12-06|COLLECT COD|MAIL|gular packag| +81453|848054|48055|1|20|20040.20|0.08|0.00|N|O|1995-09-21|1995-10-30|1995-10-13|NONE|AIR|al packages. furiously regular d| +81453|233406|20919|2|35|46878.65|0.09|0.07|N|O|1995-10-18|1995-09-26|1995-11-16|NONE|REG AIR|he blithely regular dependencies i| +81453|846189|33738|3|24|27243.36|0.07|0.06|N|O|1995-11-28|1995-10-11|1995-12-14|COLLECT COD|SHIP| quickly ironic pinto beans mold about the | +81454|652057|14571|1|50|50451.00|0.04|0.06|A|F|1992-03-26|1992-04-30|1992-04-06|COLLECT COD|TRUCK|cajole fluffily after the regular, even gro| +81455|804375|16892|1|18|23027.94|0.01|0.04|R|F|1992-08-10|1992-09-21|1992-08-11|COLLECT COD|REG AIR|iously regular deposits. r| +81455|119312|6819|2|47|62571.57|0.08|0.05|A|F|1992-10-11|1992-10-10|1992-11-05|DELIVER IN PERSON|REG AIR|sly ironic deposits; slyly pendi| +81455|269186|44197|3|36|41586.12|0.02|0.08|R|F|1992-08-19|1992-09-24|1992-08-23|DELIVER IN PERSON|SHIP|r accounts. blithely quick excuses nag care| +81480|699391|11905|1|39|54224.04|0.03|0.06|R|F|1993-06-06|1993-05-04|1993-07-03|NONE|RAIL|are fluffi| +81480|654540|4541|2|45|67252.95|0.02|0.05|A|F|1993-06-02|1993-05-04|1993-06-11|DELIVER IN PERSON|RAIL|press instructions cajole. blithely final| +81480|852385|2386|3|26|34770.84|0.03|0.01|A|F|1993-02-25|1993-05-17|1993-03-06|COLLECT COD|MAIL|es are pending| +81480|26302|1303|4|22|27022.60|0.07|0.01|R|F|1993-05-16|1993-04-20|1993-06-10|DELIVER IN PERSON|MAIL|posits. blithe, ironic id| +81480|51415|38919|5|20|27328.20|0.10|0.07|R|F|1993-03-09|1993-05-10|1993-03-28|TAKE BACK RETURN|SHIP|ng requests nag qui| +81480|126617|1622|6|13|21366.93|0.09|0.03|R|F|1993-03-08|1993-03-26|1993-03-10|DELIVER IN PERSON|REG AIR|beans wake along the furiously | +81480|45870|33371|7|3|5447.61|0.04|0.08|A|F|1993-04-11|1993-04-16|1993-05-05|COLLECT COD|MAIL| requests wake slyly according t| +81481|932842|7879|1|46|86240.80|0.07|0.07|N|O|1996-11-24|1996-12-23|1996-11-28|COLLECT COD|FOB|sly at the furiously even ideas. carefully| +81481|261358|36369|2|4|5277.36|0.07|0.07|N|O|1996-12-29|1997-01-06|1997-01-17|TAKE BACK RETURN|TRUCK|ar pinto beans are bus| +81481|639531|2044|3|44|64702.00|0.00|0.07|N|O|1997-02-17|1997-01-22|1997-03-19|COLLECT COD|SHIP|s use along the | +81481|596858|34392|4|49|95786.67|0.10|0.00|N|O|1997-02-11|1996-12-19|1997-03-09|COLLECT COD|REG AIR|equests. quickly regular requests sleep| +81481|386219|36220|5|43|56123.60|0.07|0.01|N|O|1996-12-26|1997-01-19|1997-01-21|COLLECT COD|FOB|y regular accou| +81481|176350|26351|6|48|68464.80|0.08|0.01|N|O|1997-02-28|1997-01-02|1997-03-04|COLLECT COD|TRUCK|e ideas. furiously even the| +81482|226427|1436|1|6|8120.46|0.09|0.02|R|F|1993-02-02|1992-12-31|1993-02-25|DELIVER IN PERSON|MAIL| cajole blithely slyl| +81482|546218|46219|2|2|2528.38|0.09|0.02|R|F|1992-12-24|1993-01-14|1993-01-05|COLLECT COD|FOB|ow dolphins cajole car| +81482|278376|28377|3|13|17606.68|0.08|0.01|R|F|1993-01-22|1992-12-17|1993-02-07|DELIVER IN PERSON|SHIP|. furiously fluffy foxes sl| +81482|664167|1707|4|47|53163.11|0.03|0.03|R|F|1993-01-20|1993-01-18|1993-02-11|DELIVER IN PERSON|REG AIR|odolites nag ironically bold foxes.| +81482|643692|6205|5|28|45798.48|0.04|0.00|A|F|1992-10-29|1992-12-29|1992-11-18|DELIVER IN PERSON|FOB|endencies. pending, final ideas cajole. e| +81482|527017|39528|6|10|10439.90|0.03|0.06|R|F|1993-01-02|1992-12-15|1993-01-13|NONE|SHIP|yly pending theodo| +81482|567760|17761|7|43|78592.82|0.05|0.00|A|F|1993-02-14|1993-01-15|1993-03-05|COLLECT COD|SHIP|st slyly blithely express theodolites| +81483|340016|27535|1|49|51744.00|0.09|0.08|A|F|1992-06-19|1992-06-23|1992-07-19|COLLECT COD|REG AIR|nic deposits among the slyly express idea| +81484|621442|46467|1|11|14997.51|0.05|0.00|A|F|1994-04-16|1994-03-19|1994-05-01|COLLECT COD|REG AIR|xes use quickly around the accounts. bl| +81484|563544|13545|2|43|69123.36|0.00|0.00|R|F|1994-03-19|1994-04-17|1994-04-17|NONE|FOB|lar deposit| +81485|958907|21427|1|1|1965.86|0.03|0.06|N|O|1996-02-28|1996-01-29|1996-03-19|COLLECT COD|SHIP|atelets. blithel| +81485|348568|23581|2|16|25864.80|0.07|0.00|N|O|1996-02-26|1996-01-25|1996-03-06|NONE|REG AIR|ingly regular excuses. slyly bold theod| +81485|377236|39744|3|1|1313.22|0.05|0.04|N|O|1996-03-15|1996-01-13|1996-04-11|TAKE BACK RETURN|SHIP|inal multipliers wake s| +81485|190535|40536|4|9|14629.77|0.10|0.05|N|O|1996-02-16|1996-02-09|1996-02-22|NONE|RAIL|uctions nag. un| +81485|312889|12890|5|36|68467.32|0.00|0.07|N|O|1995-11-16|1996-01-05|1995-12-04|COLLECT COD|RAIL|e. unusual excuses unwind slyly fluffily r| +81485|709381|21896|6|41|57004.35|0.09|0.02|N|O|1995-12-02|1995-12-15|1995-12-15|TAKE BACK RETURN|AIR| slyly regular accoun| +81486|831324|31325|1|8|10042.24|0.07|0.05|A|F|1993-09-16|1993-07-22|1993-09-24|TAKE BACK RETURN|REG AIR|yly silent dependencies impr| +81486|54913|42417|2|4|7471.64|0.02|0.07|R|F|1993-06-15|1993-07-19|1993-06-19|NONE|FOB|y regular deposits. dogg| +81486|918538|18539|3|25|38912.25|0.09|0.00|A|F|1993-09-20|1993-07-11|1993-09-25|TAKE BACK RETURN|RAIL|furiously final i| +81486|856535|19053|4|33|49219.17|0.02|0.08|A|F|1993-08-30|1993-08-19|1993-09-28|NONE|REG AIR|xes haggle above the furiously e| +81487|573330|35842|1|21|29469.51|0.04|0.08|R|F|1992-07-18|1992-08-13|1992-07-19|TAKE BACK RETURN|TRUCK|uriously regula| +81487|954561|4562|2|45|72698.40|0.10|0.02|A|F|1992-06-30|1992-08-22|1992-07-08|NONE|AIR|onic somas eat| +81487|295406|7912|3|50|70069.50|0.01|0.05|R|F|1992-09-29|1992-07-20|1992-10-01|NONE|RAIL|xes. excuses are furious| +81487|882865|32866|4|39|72064.98|0.09|0.03|A|F|1992-07-14|1992-08-18|1992-08-05|COLLECT COD|MAIL|sts. bold asymptotes sleep across| +81487|301521|14028|5|42|63945.42|0.03|0.01|R|F|1992-08-24|1992-07-17|1992-09-16|TAKE BACK RETURN|SHIP|ronic deposits detect slyly unusual account| +81487|657384|19898|6|40|53654.00|0.06|0.07|R|F|1992-07-04|1992-08-28|1992-07-18|TAKE BACK RETURN|REG AIR|ns should sleep carefully final id| +81487|647842|35379|7|30|53694.30|0.10|0.04|A|F|1992-06-28|1992-07-16|1992-06-30|TAKE BACK RETURN|MAIL| cajole fluffily among| +81512|273123|23124|1|30|32883.30|0.00|0.02|N|O|1995-07-14|1995-09-09|1995-07-22|COLLECT COD|FOB|sly ironic foxes. slyl| +81512|375138|25139|2|10|12131.20|0.04|0.07|N|O|1995-08-18|1995-09-04|1995-09-17|COLLECT COD|SHIP| of the blithely ev| +81513|123485|10992|1|38|57322.24|0.07|0.00|N|O|1996-09-03|1996-08-28|1996-09-27|DELIVER IN PERSON|AIR|enly fluffy acco| +81513|403793|28810|2|34|57690.18|0.01|0.01|N|O|1996-07-19|1996-09-04|1996-08-06|COLLECT COD|TRUCK|equests. carefully pending requests haggl| +81513|543033|5544|3|10|10760.10|0.10|0.05|N|O|1996-09-21|1996-08-02|1996-09-28|DELIVER IN PERSON|MAIL|oost pending requests. careful| +81513|740971|16000|4|43|86513.42|0.01|0.03|N|O|1996-07-11|1996-09-26|1996-07-22|DELIVER IN PERSON|FOB|ter the blithely bold ide| +81513|482932|32933|5|45|86170.95|0.01|0.02|N|O|1996-07-25|1996-09-03|1996-08-10|NONE|TRUCK|s. accounts haggle furiously furi| +81513|630051|17588|6|30|29430.60|0.07|0.01|N|O|1996-08-26|1996-08-13|1996-09-07|TAKE BACK RETURN|TRUCK|ronic, ironic ideas. slyly special pin| +81513|253976|16482|7|40|77198.40|0.09|0.03|N|O|1996-10-04|1996-08-13|1996-10-28|NONE|FOB|out the even instructions: ironic| +81514|561760|49294|1|9|16395.66|0.08|0.01|A|F|1993-05-08|1993-03-27|1993-05-14|DELIVER IN PERSON|MAIL|nic ideas. pending foxes after t| +81514|495816|8326|2|37|67036.23|0.05|0.03|A|F|1993-06-13|1993-04-05|1993-06-18|DELIVER IN PERSON|MAIL|t quickly quickly final| +81514|173150|48157|3|40|48926.00|0.04|0.03|R|F|1993-06-16|1993-05-01|1993-06-18|COLLECT COD|MAIL|en accounts within the express package| +81514|128361|28362|4|48|66689.28|0.09|0.03|A|F|1993-04-14|1993-03-26|1993-05-03|TAKE BACK RETURN|RAIL|ions affix upon th| +81514|347171|34690|5|13|15836.08|0.03|0.05|R|F|1993-03-28|1993-04-08|1993-04-10|NONE|TRUCK|. slyly ironic realms cajole. | +81514|888627|13662|6|6|9693.48|0.00|0.05|R|F|1993-03-05|1993-04-02|1993-03-11|COLLECT COD|AIR|gle across the unusual packa| +81515|41442|16443|1|21|29052.24|0.08|0.06|N|O|1998-03-23|1998-05-06|1998-04-20|TAKE BACK RETURN|FOB|ct alongside of the silent, pen| +81515|512350|12351|2|30|40869.90|0.02|0.05|N|O|1998-05-27|1998-05-19|1998-06-26|TAKE BACK RETURN|RAIL|ick package| +81515|63097|38100|3|8|8480.72|0.08|0.01|N|O|1998-04-20|1998-04-21|1998-04-23|COLLECT COD|AIR|dependencies haggle blithely. | +81515|455888|5889|4|6|11063.16|0.02|0.02|N|O|1998-02-25|1998-05-12|1998-03-21|DELIVER IN PERSON|FOB|ts. stealthily even packages wake| +81515|94106|44107|5|41|45104.10|0.03|0.04|N|O|1998-05-21|1998-04-30|1998-06-11|TAKE BACK RETURN|TRUCK|s cajole carefully s| +81516|376332|13854|1|34|47882.88|0.10|0.00|N|O|1996-09-24|1996-09-07|1996-10-16|TAKE BACK RETURN|FOB| silent instructions haggle slyly after | +81516|7879|45380|2|46|82196.02|0.06|0.07|N|O|1996-09-13|1996-07-25|1996-10-13|COLLECT COD|FOB|e ironic, express foxes. qu| +81516|422309|9834|3|27|33244.56|0.03|0.04|N|O|1996-10-13|1996-07-28|1996-10-19|NONE|SHIP|le fluffily ironic forges. fluffily b| +81516|743063|5578|4|49|54195.47|0.04|0.06|N|O|1996-10-16|1996-09-12|1996-11-14|NONE|FOB|equests lose a| +81516|652436|39976|5|32|44428.80|0.02|0.06|N|O|1996-09-17|1996-09-17|1996-09-18|COLLECT COD|FOB|ironic packages. carefully bold ideas h| +81516|487848|25376|6|27|49567.14|0.00|0.07|N|O|1996-09-19|1996-07-24|1996-09-21|DELIVER IN PERSON|SHIP| special accounts eat blithe| +81516|246825|9330|7|42|74416.02|0.04|0.08|N|O|1996-09-07|1996-08-08|1996-09-19|COLLECT COD|REG AIR|ar packages are slyly fluffily ironic de| +81517|373937|36445|1|26|52283.92|0.09|0.05|A|F|1995-01-01|1995-01-07|1995-01-04|NONE|TRUCK|gular frays haggle at the quickly cl| +81517|753153|3154|2|44|53069.28|0.08|0.07|R|F|1995-01-29|1995-01-19|1995-02-09|DELIVER IN PERSON|FOB|xes. even, even accounts according to| +81518|613598|13599|1|12|18138.72|0.10|0.02|N|O|1997-03-25|1997-03-14|1997-03-29|COLLECT COD|FOB|s above the even foxes. thinly regular pint| +81518|732423|19966|2|19|27652.41|0.10|0.05|N|O|1997-03-06|1997-03-18|1997-04-05|NONE|TRUCK|y regular deposits are furi| +81519|861975|11976|1|36|69729.48|0.02|0.05|A|F|1995-01-23|1995-03-12|1995-02-14|COLLECT COD|REG AIR|fily. slyly pe| +81519|202574|15079|2|18|26578.08|0.05|0.00|A|F|1995-02-06|1995-04-12|1995-02-26|COLLECT COD|SHIP|fluffily against the blithely ev| +81544|606986|32011|1|18|34073.10|0.10|0.08|A|F|1993-10-09|1993-11-02|1993-11-01|TAKE BACK RETURN|REG AIR|fully express deposits about t| +81544|612638|37663|2|35|54271.00|0.07|0.01|A|F|1993-11-21|1993-11-09|1993-12-20|TAKE BACK RETURN|AIR|ic accounts wake about | +81545|426295|1312|1|38|46408.26|0.00|0.05|R|F|1993-01-07|1993-02-02|1993-01-31|DELIVER IN PERSON|AIR|iously regular| +81545|736659|49174|2|8|13564.96|0.04|0.01|R|F|1993-03-16|1993-02-15|1993-04-12|COLLECT COD|SHIP|n pinto be| +81545|14337|1838|3|41|51304.53|0.10|0.04|R|F|1993-03-03|1993-01-27|1993-03-30|COLLECT COD|AIR|ly silent, careful theodolites. c| +81546|391060|16075|1|39|44890.95|0.08|0.07|N|O|1996-10-07|1996-10-06|1996-11-01|DELIVER IN PERSON|MAIL|o beans sl| +81546|528649|28650|2|36|60394.32|0.02|0.01|N|O|1996-10-06|1996-10-25|1996-11-04|TAKE BACK RETURN|MAIL|st the car| +81547|540225|15246|1|46|58199.20|0.09|0.05|N|O|1997-05-08|1997-06-07|1997-06-01|NONE|TRUCK|ns. pending, pending r| +81548|916632|4187|1|12|19783.08|0.05|0.04|R|F|1993-08-23|1993-07-22|1993-09-22|COLLECT COD|TRUCK|hs haggle quickly beyond the q| +81549|460482|10483|1|40|57698.40|0.07|0.07|N|O|1997-09-19|1997-10-04|1997-10-07|TAKE BACK RETURN|RAIL|ecial realms was blithely. carefully eve| +81549|318089|43102|2|40|44282.80|0.09|0.02|N|O|1997-12-17|1997-11-18|1997-12-19|NONE|FOB|. slyly final the| +81549|107057|44564|3|39|41497.95|0.07|0.00|N|O|1997-12-25|1997-11-03|1997-12-27|NONE|FOB|uriously express requests nag blithel| +81549|294902|7408|4|44|83463.16|0.08|0.00|N|O|1997-10-18|1997-10-04|1997-11-11|COLLECT COD|AIR|cies. carefully silent theodolites boost s| +81549|401491|39016|5|20|27849.40|0.01|0.01|N|O|1997-10-23|1997-11-24|1997-11-19|NONE|REG AIR|. quickly regular accounts cajole a| +81549|852813|40365|6|1|1765.77|0.02|0.04|N|O|1997-10-05|1997-10-16|1997-10-13|NONE|REG AIR|ever final courts. quickly final acco| +81549|214564|14565|7|4|5914.20|0.07|0.04|N|O|1997-10-17|1997-10-20|1997-10-28|TAKE BACK RETURN|RAIL|t instructi| +81550|169078|44085|1|9|10323.63|0.01|0.05|N|O|1995-11-25|1995-12-02|1995-12-24|DELIVER IN PERSON|TRUCK|ng to the express accounts doze accordin| +81550|680078|17618|2|37|39147.48|0.04|0.06|N|O|1995-10-26|1995-11-26|1995-11-08|TAKE BACK RETURN|SHIP|sly quickly final decoys. quic| +81550|56588|44092|3|20|30891.60|0.00|0.02|N|O|1995-11-01|1995-11-21|1995-11-21|DELIVER IN PERSON|AIR| accounts. even asymptotes must have to | +81550|59086|21588|4|15|15676.20|0.06|0.00|N|O|1995-12-01|1995-12-15|1995-12-12|DELIVER IN PERSON|RAIL|usly ironic packages boost. furiously | +81550|48347|48348|5|46|59585.64|0.04|0.06|N|O|1996-01-24|1996-01-07|1996-01-27|DELIVER IN PERSON|TRUCK|. carefully regular epitaphs wake| +81551|718199|30714|1|28|34080.48|0.02|0.04|N|O|1998-07-03|1998-05-14|1998-07-05|DELIVER IN PERSON|TRUCK|posits. regular, silent requests sleep sly| +81551|756406|18922|2|49|71656.13|0.02|0.06|N|O|1998-06-04|1998-05-17|1998-06-24|NONE|SHIP|l, ironic ideas wake carefull| +81576|791164|3680|1|46|57735.98|0.01|0.01|N|O|1998-06-25|1998-05-16|1998-07-01|COLLECT COD|RAIL|y pending somas are. silent deposits | +81576|88362|13365|2|46|62116.56|0.03|0.05|N|O|1998-04-09|1998-05-07|1998-05-04|DELIVER IN PERSON|SHIP| ironic dependencies| +81576|97755|47756|3|31|54335.25|0.05|0.00|N|O|1998-06-05|1998-04-27|1998-06-19|DELIVER IN PERSON|SHIP|arefully. carefully per| +81577|849322|11839|1|7|8898.96|0.01|0.01|N|O|1995-12-18|1996-01-30|1996-01-06|TAKE BACK RETURN|RAIL|ow ideas a| +81577|540602|3113|2|6|9855.48|0.01|0.00|N|O|1995-11-22|1995-12-08|1995-12-20|COLLECT COD|AIR|st furiously with the carefully regular| +81577|895955|20990|3|42|81938.22|0.00|0.07|N|O|1996-02-27|1996-02-02|1996-03-11|DELIVER IN PERSON|MAIL|s ideas wak| +81577|315005|2524|4|8|8159.92|0.00|0.04|N|O|1996-01-07|1996-01-04|1996-01-14|NONE|FOB|kages. regular, bold requests cajole fl| +81577|280863|18379|5|50|92192.50|0.05|0.08|N|O|1996-01-03|1996-01-04|1996-01-19|TAKE BACK RETURN|RAIL|the accounts. ironic accou| +81577|456431|6432|6|16|22198.56|0.04|0.03|N|O|1996-01-12|1996-01-11|1996-01-26|NONE|SHIP|yly bold requests. deposits integ| +81577|224732|12245|7|30|49701.60|0.08|0.07|N|O|1995-11-29|1996-01-11|1995-12-19|COLLECT COD|AIR|ites sleep fluffily. slyly| +81578|55166|17668|1|41|45967.56|0.08|0.08|N|O|1998-03-22|1998-04-09|1998-04-17|NONE|TRUCK|ect bravely-- carefully sly requests| +81578|166722|41729|2|48|85858.56|0.04|0.08|N|O|1998-03-28|1998-03-29|1998-04-09|NONE|REG AIR|st waters. express accounts wake slyly | +81578|94091|19094|3|29|31467.61|0.07|0.03|N|O|1998-02-26|1998-03-21|1998-03-17|DELIVER IN PERSON|AIR|nto beans. d| +81578|372639|22640|4|22|37655.64|0.08|0.07|N|O|1998-02-20|1998-05-06|1998-03-05|DELIVER IN PERSON|SHIP| to the special, ironic | +81578|938080|38081|5|42|46957.68|0.05|0.06|N|O|1998-05-30|1998-04-08|1998-06-02|DELIVER IN PERSON|SHIP|r, bold accounts thrash furiously pa| +81578|297525|35041|6|25|38062.75|0.04|0.00|N|O|1998-03-09|1998-03-19|1998-03-28|NONE|TRUCK|lites are furiously alon| +81578|495506|20525|7|20|30029.60|0.03|0.00|N|O|1998-03-11|1998-05-07|1998-04-07|TAKE BACK RETURN|MAIL|w, regular plate| +81579|960421|10422|1|18|26664.84|0.08|0.04|N|O|1995-11-19|1996-01-20|1995-12-09|COLLECT COD|MAIL| beans. furiously regular pinto | +81579|779181|4212|2|5|6300.75|0.08|0.08|N|O|1995-11-27|1996-01-09|1995-12-20|DELIVER IN PERSON|AIR|e furiously bold packages detect about th| +81579|689139|39140|3|20|22562.00|0.07|0.02|N|O|1995-12-29|1995-12-25|1996-01-03|TAKE BACK RETURN|TRUCK|inments. carefully silent accou| +81580|255021|42537|1|14|13664.14|0.03|0.07|N|O|1996-10-28|1996-09-05|1996-11-23|COLLECT COD|MAIL|nts. express dependencies | +81580|122669|47674|2|34|57516.44|0.02|0.06|N|O|1996-10-14|1996-09-11|1996-10-28|TAKE BACK RETURN|REG AIR|as nag fina| +81580|694843|19870|3|23|42269.63|0.01|0.04|N|O|1996-09-12|1996-10-23|1996-09-28|TAKE BACK RETURN|REG AIR|ts snooze blithely after the ins| +81580|217961|42970|4|39|73279.05|0.10|0.00|N|O|1996-11-17|1996-10-25|1996-11-20|COLLECT COD|MAIL|ding accounts. unusual depe| +81580|256822|6823|5|23|40912.63|0.06|0.01|N|O|1996-09-06|1996-10-04|1996-09-27|NONE|RAIL|ial platelets. slyly silent accounts around| +81581|460673|35692|1|25|40841.25|0.09|0.05|N|O|1998-09-14|1998-07-22|1998-10-12|TAKE BACK RETURN|RAIL|p final requests. slyly fi| +81581|518393|30904|2|35|49397.95|0.06|0.01|N|O|1998-07-19|1998-09-04|1998-07-21|NONE|TRUCK|thy deposits. carefully regular deposits al| +81581|618620|18621|3|42|64620.78|0.04|0.03|N|O|1998-10-01|1998-07-16|1998-10-22|TAKE BACK RETURN|SHIP| slyly among the regular ideas. b| +81581|134016|34017|4|16|16800.16|0.00|0.05|N|O|1998-07-13|1998-08-10|1998-07-24|NONE|AIR|s print furiously slyly special re| +81581|402886|40411|5|24|42932.64|0.10|0.00|N|O|1998-08-06|1998-07-27|1998-08-12|DELIVER IN PERSON|TRUCK|gle quickly according to | +81581|302165|14672|6|24|28011.60|0.01|0.04|N|O|1998-06-26|1998-08-19|1998-07-03|TAKE BACK RETURN|TRUCK|ular, ironic packag| +81582|324228|24229|1|22|27548.62|0.07|0.08|A|F|1994-01-10|1994-02-07|1994-01-19|DELIVER IN PERSON|RAIL| stealthy theodolites use accor| +81582|288046|552|2|10|10340.30|0.08|0.05|R|F|1994-02-25|1993-12-14|1994-03-09|NONE|REG AIR|y. tithes n| +81582|187787|25297|3|40|74991.20|0.10|0.00|R|F|1994-02-19|1994-01-22|1994-03-14|DELIVER IN PERSON|RAIL|lar deposits. fluffily | +81582|135244|10249|4|6|7675.44|0.10|0.03|A|F|1993-12-27|1994-02-08|1994-01-14|COLLECT COD|AIR|re furiously| +81582|33360|45861|5|3|3880.08|0.00|0.06|R|F|1994-01-12|1993-12-24|1994-02-03|DELIVER IN PERSON|RAIL|fily pending foxes. regu| +81583|703631|28660|1|5|8173.00|0.03|0.04|R|F|1992-10-23|1992-08-28|1992-11-11|TAKE BACK RETURN|REG AIR|st furiously unusual, regular excuses:| +81583|913977|26496|2|19|37827.67|0.06|0.03|R|F|1992-10-10|1992-09-01|1992-10-22|DELIVER IN PERSON|AIR|ic warhorses nag above t| +81608|233438|33439|1|32|43885.44|0.07|0.08|N|O|1996-12-24|1997-02-01|1996-12-30|COLLECT COD|RAIL|ly final decoys wake| +81609|813952|13953|1|19|35452.29|0.00|0.00|N|O|1996-07-07|1996-05-25|1996-08-06|DELIVER IN PERSON|RAIL|fully even deposits. quick| +81609|85610|48112|2|37|59037.57|0.02|0.02|N|O|1996-05-11|1996-06-16|1996-05-21|TAKE BACK RETURN|AIR|s. fluffily| +81609|845502|45503|3|1|1447.46|0.00|0.04|N|O|1996-04-15|1996-05-20|1996-04-25|COLLECT COD|AIR|eep. furiously b| +81609|336763|24282|4|17|30595.75|0.06|0.06|N|O|1996-04-20|1996-05-24|1996-04-22|TAKE BACK RETURN|SHIP|, final excuses. blithely final packag| +81609|967865|42904|5|21|40589.22|0.10|0.07|N|O|1996-05-01|1996-06-16|1996-05-12|DELIVER IN PERSON|FOB|e carefully unusual | +81610|506837|31858|1|2|3687.62|0.09|0.00|A|F|1993-05-26|1993-05-30|1993-06-08|COLLECT COD|SHIP|try to haggle slyly about the regular re| +81610|408832|33849|2|7|12185.67|0.07|0.02|A|F|1993-04-15|1993-05-09|1993-04-19|DELIVER IN PERSON|MAIL|ccounts nag daringly along the always ironi| +81610|228801|28802|3|39|67461.81|0.09|0.01|R|F|1993-06-13|1993-06-17|1993-06-17|DELIVER IN PERSON|RAIL|fily express acc| +81611|545607|20628|1|18|29746.44|0.08|0.05|A|F|1993-10-16|1993-12-01|1993-11-06|NONE|REG AIR|bold deposits wake. furiou| +81611|11643|49144|2|18|27983.52|0.04|0.02|R|F|1993-12-06|1993-12-08|1994-01-04|COLLECT COD|AIR| ideas cajole ironic requests. blithely r| +81611|683689|21229|3|6|10035.90|0.04|0.04|A|F|1993-11-21|1993-11-24|1993-11-22|TAKE BACK RETURN|FOB|inal accounts haggle blithel| +81612|905660|5661|1|27|44971.74|0.01|0.06|R|F|1995-04-26|1995-05-09|1995-05-22|COLLECT COD|TRUCK|bove the fluffily final accounts-- furiousl| +81612|419788|7313|2|18|30739.68|0.04|0.02|R|F|1995-04-19|1995-04-18|1995-04-29|COLLECT COD|AIR|s. theodolit| +81612|373949|23950|3|30|60687.90|0.00|0.08|N|O|1995-06-28|1995-04-20|1995-07-10|NONE|FOB|after the i| +81612|947184|34739|4|9|11080.26|0.05|0.01|N|F|1995-06-13|1995-05-24|1995-07-03|TAKE BACK RETURN|REG AIR|as cajole slyly. furiously bold packa| +81613|419516|44533|1|12|17225.88|0.09|0.01|N|O|1997-08-06|1997-08-10|1997-08-31|DELIVER IN PERSON|TRUCK|slyly pending dependenci| +81613|801032|13549|2|45|41984.55|0.01|0.04|N|O|1997-08-08|1997-08-08|1997-08-29|COLLECT COD|MAIL|bold deposits do| +81613|943723|43724|3|42|74200.56|0.05|0.08|N|O|1997-09-23|1997-08-24|1997-10-11|NONE|RAIL|al pinto beans nag carefully fi| +81613|146484|46485|4|26|39792.48|0.10|0.08|N|O|1997-09-14|1997-08-20|1997-09-17|TAKE BACK RETURN|TRUCK|es affix along the thin, ironic inst| +81613|943757|43758|5|31|55822.01|0.05|0.04|N|O|1997-10-03|1997-08-26|1997-10-20|DELIVER IN PERSON|REG AIR|quickly express accounts accor| +81614|819957|32474|1|41|76953.31|0.07|0.03|A|F|1994-07-09|1994-06-28|1994-07-29|COLLECT COD|MAIL|yly express accounts; furiously bold epita| +81614|5116|30117|2|15|15316.65|0.00|0.07|R|F|1994-08-27|1994-07-04|1994-09-04|TAKE BACK RETURN|RAIL| blithely unusual dependencies against | +81614|973739|11297|3|14|25377.66|0.03|0.05|A|F|1994-07-29|1994-06-29|1994-08-15|COLLECT COD|FOB|unts. accounts according to the silent as| +81614|623430|10967|4|29|39248.60|0.05|0.06|R|F|1994-08-01|1994-08-02|1994-08-20|DELIVER IN PERSON|SHIP|. orbits affix furi| +81615|659223|9224|1|38|44923.22|0.09|0.08|R|F|1993-02-25|1993-02-05|1993-03-22|COLLECT COD|SHIP| regular packages-- furiously| +81615|554229|41763|2|18|23097.60|0.01|0.08|A|F|1992-12-26|1993-02-14|1993-01-09|TAKE BACK RETURN|TRUCK|ly! furiously final request| +81615|919265|6820|3|36|46231.92|0.10|0.01|R|F|1993-03-09|1993-01-30|1993-03-16|TAKE BACK RETURN|FOB|otes. requests ac| +81615|81723|44225|4|31|52846.32|0.06|0.00|R|F|1993-01-26|1993-02-20|1993-02-19|COLLECT COD|TRUCK|oost blithely| +81640|169297|44304|1|35|47820.15|0.03|0.05|A|F|1994-08-12|1994-06-25|1994-08-20|NONE|REG AIR|egular platelets. regular pinto beans| +81640|370524|20525|2|35|55807.85|0.04|0.08|R|F|1994-07-28|1994-05-17|1994-08-13|COLLECT COD|SHIP|s are. fin| +81640|385209|47717|3|10|12941.90|0.08|0.00|R|F|1994-07-01|1994-06-28|1994-07-30|COLLECT COD|TRUCK|kages-- furiou| +81640|192714|30224|4|34|61428.14|0.04|0.08|A|F|1994-06-26|1994-07-01|1994-06-29|NONE|RAIL|ven pinto beans-- slyly bold | +81641|136528|49031|1|35|54758.20|0.02|0.00|A|F|1992-07-18|1992-07-20|1992-08-16|COLLECT COD|REG AIR| the blithely ironic fox| +81641|624998|24999|2|43|82687.28|0.02|0.05|R|F|1992-09-09|1992-08-20|1992-09-11|NONE|REG AIR|ckages haggle slyly. iron| +81641|333142|45649|3|24|28203.12|0.06|0.07|A|F|1992-07-15|1992-08-05|1992-07-20|TAKE BACK RETURN|REG AIR|ronic packages are fluffil| +81642|924162|49199|1|34|40328.08|0.02|0.07|R|F|1994-10-07|1994-11-11|1994-10-21|COLLECT COD|AIR|blithely unusual| +81642|387751|12766|2|42|77227.08|0.10|0.01|A|F|1994-11-02|1994-11-23|1994-11-30|NONE|MAIL|r the fluffily special deposits. furiously | +81642|926920|26921|3|28|54512.64|0.06|0.07|A|F|1995-01-18|1995-01-01|1995-02-09|NONE|SHIP|iously regular dolphins. dependencies in| +81643|185717|35718|1|45|81121.95|0.07|0.07|N|O|1998-06-03|1998-04-24|1998-06-19|TAKE BACK RETURN|REG AIR|sly. bold, even accou| +81643|345389|32908|2|20|28687.40|0.04|0.05|N|O|1998-02-21|1998-03-24|1998-03-22|TAKE BACK RETURN|RAIL| blithely furiously regular foxes. b| +81643|942128|17165|3|27|31592.16|0.05|0.04|N|O|1998-04-11|1998-04-05|1998-04-29|COLLECT COD|REG AIR|ording to the slyly pending dependen| +81643|339729|27248|4|3|5306.13|0.08|0.08|N|O|1998-03-26|1998-04-11|1998-04-17|NONE|FOB| excuses. carefully ironic accounts | +81643|816413|3962|5|45|59821.65|0.06|0.05|N|O|1998-06-01|1998-03-07|1998-06-20|DELIVER IN PERSON|RAIL| blithely pending excuses alongside of th| +81643|452214|39742|6|24|27988.56|0.04|0.00|N|O|1998-05-18|1998-03-30|1998-06-01|NONE|AIR| final packages. slyly ironic | +81643|349319|24332|7|24|32839.20|0.05|0.05|N|O|1998-02-22|1998-04-05|1998-03-09|TAKE BACK RETURN|REG AIR|s are slyly. caref| +81644|2648|2649|1|27|41867.28|0.09|0.08|R|F|1994-03-05|1994-02-23|1994-03-28|NONE|MAIL|es nod. even, regular deposits will sle| +81644|503452|40983|2|16|23286.88|0.05|0.03|R|F|1994-01-10|1994-03-01|1994-01-19|TAKE BACK RETURN|MAIL|uriously bold frets pr| +81645|12278|12279|1|36|42849.72|0.00|0.07|N|O|1996-09-26|1996-08-29|1996-10-26|DELIVER IN PERSON|AIR|rave accounts nag blithely. carefully pend| +81645|346171|46172|2|19|23126.04|0.06|0.05|N|O|1996-07-27|1996-08-30|1996-07-29|NONE|FOB|nding requests use. express deposits un| +81645|79440|4443|3|9|12774.96|0.06|0.01|N|O|1996-09-08|1996-07-06|1996-10-08|TAKE BACK RETURN|TRUCK|encies believe. quickly final request| +81645|144755|19760|4|25|44993.75|0.02|0.08|N|O|1996-07-28|1996-07-07|1996-08-14|TAKE BACK RETURN|AIR|r foxes sleep | +81645|887829|25381|5|19|34518.82|0.04|0.04|N|O|1996-06-22|1996-08-28|1996-06-25|TAKE BACK RETURN|SHIP| final platelets cajole across th| +81646|16982|29483|1|3|5696.94|0.05|0.03|A|F|1992-08-21|1992-07-14|1992-09-14|TAKE BACK RETURN|SHIP|old instructions wake| +81646|408051|33068|2|40|38361.20|0.05|0.01|A|F|1992-06-04|1992-07-03|1992-06-25|DELIVER IN PERSON|AIR|ly dogged excuses. reques| +81647|118401|18402|1|24|34065.60|0.07|0.06|R|F|1992-07-11|1992-07-03|1992-08-08|COLLECT COD|TRUCK|packages. quickly unusual | +81647|952613|2614|2|29|48301.53|0.09|0.01|A|F|1992-04-22|1992-05-17|1992-05-16|TAKE BACK RETURN|RAIL|gle carefully final p| +81647|566180|3714|3|15|18692.40|0.01|0.05|A|F|1992-08-02|1992-06-27|1992-08-30|TAKE BACK RETURN|FOB|around the furiously b| +81647|770487|8033|4|30|46723.50|0.07|0.05|R|F|1992-08-12|1992-05-29|1992-09-06|NONE|SHIP|sly final account| +81647|559343|34366|5|33|46276.56|0.01|0.01|R|F|1992-05-17|1992-05-19|1992-05-30|COLLECT COD|TRUCK|lyly special foxes. furiously| +81672|129512|29513|1|48|73992.48|0.09|0.02|N|O|1997-03-02|1996-12-20|1997-03-15|TAKE BACK RETURN|AIR|mong the express packages aff| +81672|694832|19859|2|46|84032.80|0.02|0.07|N|O|1996-11-18|1997-01-20|1996-11-29|COLLECT COD|SHIP|s nag fluffily pending, reg| +81672|33149|33150|3|31|33546.34|0.04|0.02|N|O|1997-03-05|1996-12-22|1997-03-27|DELIVER IN PERSON|AIR|y ironic excuses are furiously. slyly | +81672|123493|23494|4|14|21230.86|0.10|0.03|N|O|1997-01-10|1997-01-12|1997-01-27|DELIVER IN PERSON|TRUCK|fluffily fu| +81672|536372|11393|5|25|35208.75|0.05|0.03|N|O|1997-03-05|1997-01-24|1997-04-01|TAKE BACK RETURN|SHIP|ly. blithely silent deposits | +81672|793164|18195|6|37|46513.81|0.09|0.02|N|O|1996-11-19|1997-01-26|1996-12-01|NONE|REG AIR|jole slyly. silent package| +81673|16167|28668|1|24|25995.84|0.00|0.07|N|O|1997-11-06|1997-08-31|1997-11-28|NONE|AIR|l gifts affix furiously foxes. furiousl| +81673|707052|44595|2|2|2118.04|0.02|0.02|N|O|1997-08-10|1997-09-13|1997-08-20|DELIVER IN PERSON|TRUCK|yly fluffily fina| +81673|422592|10117|3|6|9087.42|0.05|0.00|N|O|1997-10-28|1997-09-08|1997-11-25|NONE|FOB| can wake blithely bold theodolite| +81673|497559|35087|4|9|14008.77|0.07|0.04|N|O|1997-08-26|1997-08-13|1997-09-10|DELIVER IN PERSON|RAIL|y final deposits. slyly sil| +81673|464120|26630|5|34|36859.40|0.02|0.03|N|O|1997-09-19|1997-08-12|1997-09-22|COLLECT COD|MAIL| slyly regular packages use | +81674|872363|9915|1|41|54748.12|0.07|0.04|N|O|1998-03-26|1998-03-06|1998-03-27|COLLECT COD|TRUCK|es along the | +81674|801969|27002|2|42|78578.64|0.05|0.03|N|O|1998-03-19|1998-04-07|1998-04-17|TAKE BACK RETURN|REG AIR|. accounts use carefully regular, fin| +81674|692194|4708|3|4|4744.64|0.03|0.04|N|O|1998-02-19|1998-04-08|1998-03-01|DELIVER IN PERSON|RAIL|y ironic dolphins after the fluffily iro| +81674|692995|5509|4|50|99398.00|0.06|0.07|N|O|1998-02-22|1998-04-12|1998-02-23|COLLECT COD|TRUCK|structions wake quickly. regular, even | +81674|152448|27455|5|47|70520.68|0.06|0.01|N|O|1998-05-11|1998-04-09|1998-05-18|NONE|MAIL|y ironic accounts nag c| +81674|184372|21882|6|31|45147.47|0.06|0.02|N|O|1998-04-20|1998-03-30|1998-05-16|NONE|RAIL| pending decoys use. deposi| +81674|726454|13997|7|48|71060.16|0.06|0.06|N|O|1998-03-29|1998-04-01|1998-04-07|TAKE BACK RETURN|RAIL|f the blithely regular theodolites.| +81675|501380|38911|1|41|56635.76|0.08|0.01|N|O|1997-07-14|1997-05-12|1997-08-05|COLLECT COD|FOB|ly. ironic deposits are furiously after th| +81675|687290|49804|2|22|28099.72|0.03|0.06|N|O|1997-04-15|1997-07-08|1997-04-18|TAKE BACK RETURN|REG AIR|into beans. ironic, | +81675|280692|30693|3|31|51853.08|0.01|0.04|N|O|1997-04-11|1997-05-25|1997-04-16|TAKE BACK RETURN|MAIL|ly carefully silent deposits. blithely| +81675|588740|38741|4|38|69491.36|0.08|0.06|N|O|1997-04-17|1997-05-15|1997-05-17|TAKE BACK RETURN|FOB|ans. furiously ir| +81675|937627|25182|5|37|61589.46|0.00|0.01|N|O|1997-07-15|1997-05-21|1997-07-23|NONE|AIR|ly regular deposits promise car| +81675|686639|49153|6|26|42265.60|0.05|0.06|N|O|1997-07-12|1997-05-13|1997-08-03|DELIVER IN PERSON|TRUCK| are furiou| +81676|719561|32076|1|30|47415.90|0.05|0.04|R|F|1993-12-19|1993-11-12|1994-01-06|DELIVER IN PERSON|AIR| beans. blithely f| +81677|258584|21090|1|22|33936.54|0.07|0.05|N|O|1998-01-26|1997-12-06|1998-02-14|NONE|RAIL| blithely regular| +81677|7879|45380|2|12|21442.44|0.03|0.00|N|O|1997-12-20|1997-11-30|1997-12-30|DELIVER IN PERSON|MAIL|poach caref| +81677|413747|38764|3|43|71410.96|0.06|0.03|N|O|1998-02-16|1997-11-28|1998-03-05|DELIVER IN PERSON|SHIP|pending requests cajo| +81677|840723|28272|4|42|69874.56|0.10|0.01|N|O|1997-12-11|1997-12-16|1997-12-27|DELIVER IN PERSON|AIR|ccounts. carefully even requests are fl| +81677|20214|20215|5|33|37428.93|0.01|0.02|N|O|1997-11-23|1997-11-26|1997-12-21|COLLECT COD|AIR| hinder fluffily furiously | +81678|832587|32588|1|34|51664.36|0.08|0.04|R|F|1992-08-21|1992-11-05|1992-09-19|DELIVER IN PERSON|FOB|. special packages serve. | +81679|537509|37510|1|48|74231.04|0.07|0.05|N|O|1996-12-02|1996-11-10|1996-12-20|COLLECT COD|MAIL|dolphins solve car| +81679|910534|35571|2|6|9266.94|0.01|0.00|N|O|1996-11-15|1996-10-05|1996-12-13|TAKE BACK RETURN|TRUCK|s, special packages. d| +81704|736567|36568|1|13|20845.89|0.01|0.08|N|F|1995-06-04|1995-05-14|1995-06-19|TAKE BACK RETURN|MAIL|s. even, final| +81704|472918|22919|2|35|66181.15|0.10|0.08|A|F|1995-04-10|1995-03-30|1995-05-02|TAKE BACK RETURN|MAIL|cial packages print ca| +81704|325702|13221|3|42|72562.98|0.07|0.00|R|F|1995-04-11|1995-04-27|1995-05-03|COLLECT COD|AIR|deas during the fluffily final accounts u| +81704|58270|8271|4|35|42989.45|0.08|0.01|N|F|1995-06-14|1995-03-19|1995-07-13|DELIVER IN PERSON|TRUCK| theodolites must are | +81704|341127|3634|5|22|25698.42|0.03|0.00|N|F|1995-06-15|1995-04-03|1995-06-26|DELIVER IN PERSON|TRUCK|always regular requests: slyly final excu| +81704|311831|49350|6|29|53441.78|0.01|0.05|A|F|1995-02-28|1995-04-27|1995-03-13|TAKE BACK RETURN|MAIL|t the quic| +81705|997396|9916|1|37|55253.95|0.00|0.03|N|O|1998-07-02|1998-06-19|1998-07-07|COLLECT COD|SHIP|ed somas caj| +81706|500117|37648|1|37|41332.33|0.08|0.04|N|O|1997-09-10|1997-10-26|1997-09-23|DELIVER IN PERSON|AIR|slyly express req| +81706|463077|13078|2|36|37441.80|0.00|0.08|N|O|1997-11-16|1997-09-29|1997-11-27|TAKE BACK RETURN|RAIL| boost at the sl| +81706|926094|1131|3|23|25761.15|0.08|0.06|N|O|1997-09-22|1997-09-13|1997-10-05|COLLECT COD|TRUCK|uriously. final the| +81707|130519|43022|1|45|69727.95|0.05|0.04|A|F|1994-05-18|1994-04-24|1994-06-16|COLLECT COD|MAIL|its about th| +81707|618636|31149|2|12|18655.20|0.07|0.03|R|F|1994-04-24|1994-04-29|1994-05-10|DELIVER IN PERSON|SHIP| about the even requests boost car| +81707|398532|48533|3|12|19566.24|0.01|0.04|R|F|1994-04-09|1994-04-27|1994-04-13|DELIVER IN PERSON|FOB|nts are around the evenly regular acco| +81708|670626|33140|1|45|71846.55|0.03|0.05|R|F|1992-07-09|1992-07-21|1992-08-07|NONE|RAIL|bove the final pinto beans. permane| +81708|201726|14231|2|39|63480.69|0.00|0.06|R|F|1992-08-27|1992-08-29|1992-09-23|COLLECT COD|REG AIR|aters. slyly express deposits lose| +81708|404944|4945|3|5|9244.60|0.01|0.05|R|F|1992-07-22|1992-07-29|1992-08-07|COLLECT COD|MAIL|c deposits sleep slyly blithely bold w| +81708|893285|30837|4|41|52407.84|0.02|0.04|R|F|1992-09-16|1992-07-24|1992-10-10|COLLECT COD|MAIL|s wake quickly furiously| +81708|424501|24502|5|27|38487.96|0.04|0.05|R|F|1992-08-04|1992-06-30|1992-08-19|NONE|SHIP|eposits. special requ| +81708|572556|22557|6|16|26056.48|0.01|0.02|A|F|1992-06-05|1992-08-05|1992-06-12|NONE|AIR|s across the furiously regular| +81709|880745|30746|1|38|65576.60|0.10|0.02|N|O|1996-06-03|1996-05-10|1996-06-26|DELIVER IN PERSON|RAIL|pending foxes. regular accounts| +81709|669283|44310|2|26|32558.50|0.02|0.03|N|O|1996-06-13|1996-06-11|1996-07-03|NONE|SHIP|al requests. special accounts wake a| +81710|512435|12436|1|40|57896.40|0.04|0.05|N|O|1997-11-30|1997-10-08|1997-12-07|COLLECT COD|SHIP|ans wake blithely s| +81710|494680|19699|2|36|60287.76|0.04|0.03|N|O|1997-12-21|1997-12-02|1998-01-01|TAKE BACK RETURN|MAIL|silent ideas boost according to the even| +81710|85019|47521|3|26|26104.26|0.10|0.06|N|O|1997-12-14|1997-11-25|1998-01-08|TAKE BACK RETURN|SHIP|. furiously special pains use according to| +81710|908431|8432|4|15|21590.85|0.05|0.01|N|O|1997-09-24|1997-11-23|1997-09-27|DELIVER IN PERSON|REG AIR|lyly along the slyly final pinto| +81711|314988|27495|1|19|38056.43|0.07|0.06|R|F|1995-04-03|1995-05-04|1995-04-22|COLLECT COD|AIR|kages. blithely expre| +81736|614466|39491|1|42|57978.06|0.02|0.00|R|F|1994-06-07|1994-04-09|1994-07-07|DELIVER IN PERSON|TRUCK|c multipliers. quickly ex| +81736|324336|24337|2|47|63935.04|0.07|0.08|R|F|1994-04-15|1994-03-19|1994-05-03|TAKE BACK RETURN|MAIL|s. special ideas haggle above | +81736|114056|14057|3|40|42802.00|0.06|0.00|R|F|1994-05-09|1994-03-28|1994-06-01|DELIVER IN PERSON|RAIL|nusual requests abou| +81736|926828|26829|4|11|20402.58|0.00|0.02|A|F|1994-03-30|1994-04-24|1994-04-03|NONE|REG AIR|ironic accounts are according to| +81736|190992|28502|5|45|93734.55|0.08|0.04|A|F|1994-05-16|1994-05-12|1994-05-19|DELIVER IN PERSON|TRUCK|ckages boost car| +81736|988890|26448|6|22|43534.70|0.01|0.04|A|F|1994-02-18|1994-03-24|1994-02-22|TAKE BACK RETURN|REG AIR| pending deposits. blithely final | +81737|431899|19424|1|6|10985.22|0.07|0.02|R|F|1993-08-29|1993-09-02|1993-09-04|NONE|AIR|yly final packages sleep fluffily-- r| +81737|918263|43300|2|30|38436.60|0.08|0.00|R|F|1993-09-28|1993-09-11|1993-10-21|TAKE BACK RETURN|TRUCK|nstructions. even deposits o| +81737|235393|47898|3|18|23910.84|0.00|0.06|R|F|1993-09-25|1993-08-05|1993-10-25|DELIVER IN PERSON|MAIL|according to the slow, final accoun| +81737|242019|42020|4|40|38440.00|0.06|0.03|A|F|1993-07-26|1993-09-12|1993-08-01|TAKE BACK RETURN|TRUCK|ons. blithely bold foxes mold blithely. ev| +81738|751320|38866|1|31|42509.99|0.00|0.07|A|F|1994-08-01|1994-05-19|1994-08-07|COLLECT COD|RAIL|as are quickly quickly blithe pinto beans.| +81738|425405|37914|2|50|66519.00|0.06|0.04|A|F|1994-07-22|1994-05-29|1994-08-01|COLLECT COD|MAIL|deposits. carefully final dep| +81738|779872|4903|3|30|58555.20|0.08|0.07|R|F|1994-06-14|1994-05-28|1994-07-04|NONE|FOB|lets. slyly ironic packages shal| +81738|304324|16831|4|2|2656.62|0.08|0.07|R|F|1994-06-11|1994-06-11|1994-07-07|COLLECT COD|REG AIR|ies are car| +81738|759433|34464|5|33|49249.20|0.01|0.04|A|F|1994-07-16|1994-06-03|1994-07-28|TAKE BACK RETURN|MAIL|rts cajole slyly packages. carefully ironic| +81738|778172|3203|6|46|57506.44|0.06|0.07|R|F|1994-04-19|1994-05-12|1994-05-10|DELIVER IN PERSON|REG AIR|ntegrate furiously | +81738|720905|20906|7|6|11555.22|0.08|0.06|A|F|1994-07-30|1994-06-14|1994-08-23|TAKE BACK RETURN|RAIL|r, even accounts affix along the furiously | +81739|238803|26316|1|18|31352.22|0.09|0.08|N|O|1998-02-11|1998-02-25|1998-02-20|DELIVER IN PERSON|RAIL|its. fluffily even accounts use caref| +81739|554083|4084|2|33|37522.98|0.04|0.08|N|O|1998-03-21|1998-03-09|1998-04-01|DELIVER IN PERSON|SHIP|ncies cajole above the | +81739|460995|10996|3|37|72370.89|0.09|0.02|N|O|1998-03-31|1998-02-04|1998-04-17|COLLECT COD|MAIL|ilent instructions according to the c| +81740|869912|44947|1|13|24464.31|0.03|0.08|R|F|1993-07-20|1993-07-26|1993-07-31|COLLECT COD|FOB|yly pending| +81740|609526|9527|2|28|40193.72|0.03|0.03|R|F|1993-08-24|1993-07-21|1993-09-12|NONE|TRUCK| slyly. carefully bold dolphin| +81740|298776|36292|3|23|40819.48|0.02|0.06|A|F|1993-06-26|1993-07-29|1993-07-23|DELIVER IN PERSON|MAIL|ng deposits. ironic accounts sleep. blith| +81740|512344|49875|4|16|21701.12|0.05|0.04|A|F|1993-06-21|1993-07-30|1993-07-11|TAKE BACK RETURN|FOB|ronic requests sleep quickly around the | +81740|958247|33286|5|8|10441.60|0.01|0.01|R|F|1993-07-09|1993-08-15|1993-07-15|COLLECT COD|MAIL|the quickly regula| +81740|244140|44141|6|6|6504.78|0.08|0.02|A|F|1993-07-30|1993-08-18|1993-08-15|TAKE BACK RETURN|SHIP|to beans alongside of the even theodol| +81740|249604|37117|7|17|26411.03|0.10|0.01|A|F|1993-08-09|1993-08-18|1993-09-07|NONE|AIR|ironic deposits. blithely silen| +81741|90349|2851|1|43|57591.62|0.08|0.06|R|F|1994-07-07|1994-06-16|1994-07-28|NONE|SHIP|ng the special, final requests ar| +81741|490509|3019|2|39|58479.72|0.01|0.07|R|F|1994-05-23|1994-06-20|1994-05-31|DELIVER IN PERSON|MAIL|ven courts affix carefully special courts| +81741|980113|5152|3|37|44143.59|0.01|0.07|A|F|1994-04-28|1994-05-28|1994-05-21|TAKE BACK RETURN|TRUCK|instruction| +81741|751156|38702|4|15|18106.80|0.00|0.01|A|F|1994-08-10|1994-07-15|1994-08-27|COLLECT COD|SHIP|dependencies. slyly special re| +81741|671697|9237|5|25|41716.50|0.01|0.06|R|F|1994-08-10|1994-06-25|1994-08-30|DELIVER IN PERSON|RAIL|furiously regular asymp| +81741|209114|34123|6|3|3069.30|0.04|0.04|R|F|1994-07-05|1994-05-29|1994-07-22|TAKE BACK RETURN|REG AIR|nic, final foxes wake blithely alongside o| +81742|710516|23031|1|15|22897.20|0.06|0.01|A|F|1993-06-20|1993-06-19|1993-07-06|NONE|MAIL| express requests around the furi| +81743|921566|9121|1|13|20637.76|0.05|0.00|A|F|1992-04-07|1992-04-26|1992-04-15|TAKE BACK RETURN|AIR|y ironic requests. slyl| +81743|745412|45413|2|14|20403.32|0.03|0.05|A|F|1992-03-25|1992-05-25|1992-03-27|TAKE BACK RETURN|MAIL|fily even courts| +81743|128142|3147|3|45|52656.30|0.01|0.01|A|F|1992-06-19|1992-05-20|1992-06-29|DELIVER IN PERSON|AIR|yly pending ideas sleep according to the b| +81743|672823|47850|4|31|55669.49|0.08|0.00|R|F|1992-03-23|1992-05-13|1992-04-20|TAKE BACK RETURN|TRUCK|inal instructions haggle | +81743|133236|20743|5|28|35538.44|0.06|0.04|R|F|1992-06-05|1992-04-20|1992-06-29|COLLECT COD|FOB| pinto beans beyond t| +81743|285751|35752|6|13|22577.62|0.01|0.05|R|F|1992-04-29|1992-05-17|1992-05-22|TAKE BACK RETURN|AIR|uffily spec| +81768|351428|13936|1|31|45861.71|0.01|0.08|N|O|1998-10-21|1998-08-24|1998-11-03|TAKE BACK RETURN|SHIP|, regular packages. carefully ironic depo| +81769|851272|26307|1|38|46482.74|0.06|0.02|A|F|1993-06-25|1993-06-13|1993-07-19|NONE|MAIL|ng accounts. even, sp| +81769|318720|43733|2|12|20864.52|0.07|0.04|A|F|1993-07-23|1993-07-11|1993-08-04|COLLECT COD|SHIP|s unwind slyly. express deposits wake| +81769|724896|24897|3|48|92201.28|0.07|0.03|A|F|1993-07-09|1993-06-21|1993-07-14|TAKE BACK RETURN|SHIP|s. carefully bold requests h| +81769|323631|36138|4|47|77767.14|0.01|0.08|A|F|1993-07-19|1993-05-21|1993-08-16|NONE|FOB|e regular foxes are slyly furiously| +81769|251980|39496|5|28|54095.16|0.07|0.06|R|F|1993-07-12|1993-06-17|1993-07-21|NONE|AIR|re quickly | +81769|20540|8041|6|50|73027.00|0.03|0.02|R|F|1993-04-29|1993-06-27|1993-05-05|DELIVER IN PERSON|SHIP|inal deposits use quickly. carefull| +81770|623189|10726|1|49|54495.35|0.06|0.02|A|F|1994-10-17|1994-07-28|1994-11-12|COLLECT COD|AIR|sly even pinto beans affix | +81770|934780|22335|2|24|43553.76|0.03|0.05|R|F|1994-08-24|1994-07-22|1994-09-21|DELIVER IN PERSON|SHIP|e the blithely unusual deposi| +81770|846345|8862|3|49|63273.70|0.04|0.04|R|F|1994-06-22|1994-09-19|1994-07-15|TAKE BACK RETURN|TRUCK|ts dazzle blithely. special | +81770|510474|10475|4|8|11875.60|0.01|0.08|R|F|1994-08-12|1994-08-10|1994-09-05|COLLECT COD|RAIL|dolphins. regular pinto beans sle| +81770|532948|7969|5|37|73294.04|0.00|0.08|R|F|1994-07-31|1994-08-03|1994-08-06|NONE|REG AIR|ke quickly| +81771|629136|16673|1|30|31953.00|0.08|0.05|A|F|1994-03-23|1994-04-23|1994-04-01|TAKE BACK RETURN|MAIL|lly ironic platelets. bravely exp| +81771|874456|36974|2|33|47203.53|0.08|0.04|A|F|1994-03-22|1994-03-12|1994-03-23|DELIVER IN PERSON|FOB|of the carefully pending requests.| +81771|969658|32178|3|35|60466.35|0.09|0.02|A|F|1994-02-17|1994-03-31|1994-02-21|TAKE BACK RETURN|TRUCK|sly regular accounts haggle beneath th| +81771|33224|45725|4|20|23144.40|0.03|0.00|R|F|1994-06-02|1994-03-20|1994-06-17|TAKE BACK RETURN|RAIL|luffily final instructions amo| +81771|385409|22931|5|16|23910.24|0.04|0.06|R|F|1994-03-04|1994-04-20|1994-03-05|COLLECT COD|MAIL|pades detect among the fluffily| +81772|983750|46270|1|30|55011.30|0.03|0.06|N|O|1996-02-16|1996-01-23|1996-02-27|NONE|FOB|s alongside of the final | +81772|872760|35278|2|34|58912.48|0.08|0.03|N|O|1996-01-28|1996-01-03|1996-02-07|COLLECT COD|TRUCK|ggle fluffily| +81773|317490|5009|1|23|34672.04|0.04|0.03|N|O|1997-03-18|1997-03-02|1997-03-22|COLLECT COD|SHIP|hily blithely pendi| +81773|48779|23780|2|18|31099.86|0.09|0.03|N|O|1997-04-19|1997-04-07|1997-04-26|DELIVER IN PERSON|RAIL|ding packages sublate at the even foxes--| +81773|823411|10960|3|30|40031.10|0.10|0.06|N|O|1997-02-06|1997-03-04|1997-02-28|NONE|REG AIR|ns cajole bold packag| +81773|64723|27225|4|36|60757.92|0.04|0.06|N|O|1997-03-24|1997-03-07|1997-04-14|TAKE BACK RETURN|TRUCK|egular platelets wake slyly asy| +81773|793568|18599|5|5|8307.65|0.00|0.08|N|O|1997-03-15|1997-02-22|1997-03-26|COLLECT COD|SHIP|gular ideas. slyly regu| +81773|481921|31922|6|49|93242.10|0.07|0.08|N|O|1997-04-30|1997-04-15|1997-05-02|TAKE BACK RETURN|REG AIR|nding, regu| +81774|974300|24301|1|16|21988.16|0.04|0.02|N|O|1998-01-11|1998-02-04|1998-01-13|TAKE BACK RETURN|AIR|t requests cajole carefully i| +81774|57492|7493|2|30|43484.70|0.03|0.06|N|O|1998-02-25|1998-02-20|1998-03-16|COLLECT COD|SHIP|ly bold theodolites: fluffily even| +81775|440542|3051|1|17|25202.84|0.08|0.08|R|F|1994-06-21|1994-07-25|1994-07-17|DELIVER IN PERSON|MAIL| final requests | +81775|188731|13738|2|48|87347.04|0.06|0.05|R|F|1994-05-17|1994-07-29|1994-06-03|DELIVER IN PERSON|TRUCK|to beans. stealthily ironi| +81775|988361|881|3|32|46378.24|0.04|0.03|A|F|1994-07-16|1994-06-12|1994-07-23|DELIVER IN PERSON|RAIL|es wake dari| +81775|371636|21637|4|7|11953.34|0.09|0.05|A|F|1994-07-21|1994-08-09|1994-08-03|COLLECT COD|REG AIR|ffily furiously fi| +81775|81458|43960|5|6|8636.70|0.02|0.02|R|F|1994-07-12|1994-06-21|1994-07-22|COLLECT COD|TRUCK|ackages. silent, regular| +81800|298681|48682|1|27|45351.09|0.04|0.06|N|O|1997-07-08|1997-05-15|1997-07-23|COLLECT COD|TRUCK|ffily ironic pinto beans bo| +81800|916829|29348|2|37|68293.86|0.04|0.08|N|O|1997-05-31|1997-05-15|1997-06-21|DELIVER IN PERSON|REG AIR|refully busily r| +81800|138605|1108|3|20|32872.00|0.10|0.01|N|O|1997-03-22|1997-04-15|1997-03-30|NONE|SHIP|ges. fluffily ironic packages dazzle blith| +81800|520736|8267|4|1|1756.71|0.05|0.03|N|O|1997-05-12|1997-04-28|1997-06-10|NONE|REG AIR|y unusual platelets are | +81800|999110|24149|5|4|4836.28|0.08|0.05|N|O|1997-05-13|1997-05-21|1997-06-05|NONE|TRUCK|above the furiously express deposits. | +81800|30261|30262|6|34|40502.84|0.03|0.08|N|O|1997-05-04|1997-05-21|1997-05-23|DELIVER IN PERSON|TRUCK|ep slyly after the fur| +81801|276473|13989|1|50|72473.00|0.04|0.08|N|O|1997-04-07|1997-03-30|1997-05-04|NONE|FOB|ly special braids. blithely ironic p| +81801|674516|49543|2|29|43223.92|0.06|0.02|N|O|1997-01-20|1997-04-06|1997-02-11|TAKE BACK RETURN|TRUCK|furiously bo| +81801|589218|39219|3|36|47058.84|0.05|0.02|N|O|1997-01-20|1997-03-14|1997-01-25|NONE|FOB| furiously even ideas. fina| +81802|922455|22456|1|22|32503.02|0.01|0.06|R|F|1992-05-28|1992-07-06|1992-06-07|COLLECT COD|TRUCK| hinder caref| +81802|687821|12848|2|45|81395.55|0.05|0.00|A|F|1992-08-12|1992-07-22|1992-08-20|DELIVER IN PERSON|REG AIR|gainst the special accounts. final, final| +81802|203239|3240|3|44|50257.68|0.08|0.02|R|F|1992-07-09|1992-07-26|1992-07-22|DELIVER IN PERSON|FOB|. fluffily| +81802|822566|35083|4|12|17862.24|0.08|0.00|A|F|1992-08-26|1992-07-10|1992-09-01|DELIVER IN PERSON|REG AIR|s. sometimes bold dolph| +81803|767445|29961|1|3|4537.23|0.10|0.05|R|F|1994-11-25|1994-11-24|1994-12-13|NONE|FOB|ously across the qu| +81803|440591|28116|2|29|44415.53|0.04|0.02|R|F|1994-10-18|1994-11-16|1994-11-06|DELIVER IN PERSON|FOB|le furiously| +81803|998916|23955|3|46|92684.02|0.03|0.03|A|F|1994-12-14|1994-11-14|1995-01-07|DELIVER IN PERSON|MAIL|y ironic pinto beans | +81803|780189|30190|4|20|25383.00|0.08|0.00|A|F|1994-09-23|1994-12-13|1994-10-08|DELIVER IN PERSON|TRUCK|its play quickly along th| +81803|634590|34591|5|27|41163.12|0.00|0.03|A|F|1994-11-27|1994-12-17|1994-12-12|NONE|REG AIR|s: furiously ironic packages use. carefull| +81803|543114|5625|6|48|55540.32|0.04|0.04|R|F|1995-01-15|1994-11-13|1995-01-27|COLLECT COD|SHIP|ly even instructions against th| +81803|116932|4439|7|46|89650.78|0.08|0.01|R|F|1994-11-16|1994-12-11|1994-11-30|TAKE BACK RETURN|REG AIR|unts print quickly unusual requests. bli| +81804|273003|48014|1|44|42943.56|0.01|0.04|N|O|1996-07-03|1996-05-10|1996-07-11|COLLECT COD|FOB| ruthlessly. final theodol| +81804|357351|7352|2|7|9858.38|0.01|0.07|N|O|1996-06-09|1996-06-22|1996-06-25|COLLECT COD|TRUCK|ests. furiously special pa| +81804|992319|17358|3|2|2822.54|0.04|0.05|N|O|1996-04-26|1996-05-31|1996-05-01|TAKE BACK RETURN|MAIL|ross the regular, fluffy | +81804|902537|27574|4|31|47724.19|0.02|0.03|N|O|1996-05-16|1996-05-19|1996-05-29|TAKE BACK RETURN|SHIP|ecial packages serve someti| +81805|127577|40080|1|31|49741.67|0.02|0.07|R|F|1995-03-15|1994-12-15|1995-03-30|COLLECT COD|TRUCK|ffily after the bli| +81805|181355|6362|2|36|51708.60|0.09|0.03|R|F|1995-02-25|1994-12-17|1995-03-07|NONE|MAIL|thless, regula| +81805|22976|47977|3|29|55070.13|0.05|0.02|A|F|1994-12-01|1995-01-01|1994-12-11|COLLECT COD|RAIL|ly pending platelet| +81805|153232|40742|4|1|1285.23|0.07|0.01|R|F|1995-02-27|1994-12-30|1995-03-14|COLLECT COD|MAIL|kly special foxes sublate blith| +81806|214796|27301|1|15|25661.70|0.05|0.01|A|F|1994-01-07|1994-01-05|1994-02-03|TAKE BACK RETURN|REG AIR|inal instructions above the unusual reque| +81806|70531|8035|2|35|52553.55|0.05|0.00|R|F|1993-11-19|1994-01-08|1993-12-12|NONE|SHIP|ngly unusual ideas. furio| +81806|399005|11513|3|9|9935.91|0.09|0.07|R|F|1993-11-16|1994-01-12|1993-12-14|COLLECT COD|REG AIR| pinto beans above the carefully| +81807|224994|37499|1|45|86354.10|0.09|0.08|N|F|1995-05-21|1995-08-02|1995-06-20|COLLECT COD|FOB|deposits sleep flu| +81807|458422|8423|2|19|26227.60|0.03|0.06|R|F|1995-05-19|1995-06-25|1995-06-02|DELIVER IN PERSON|RAIL|y fluffily unusual acco| +81807|694012|19039|3|24|24143.52|0.00|0.05|N|F|1995-06-05|1995-08-01|1995-06-18|TAKE BACK RETURN|RAIL|lly unusual ideas affix. b| +81807|249253|36766|4|15|18033.60|0.09|0.04|N|O|1995-07-18|1995-08-02|1995-07-23|NONE|FOB|ounts. furiously regul| +81807|192562|30072|5|38|62873.28|0.09|0.04|N|F|1995-06-08|1995-07-15|1995-06-20|TAKE BACK RETURN|AIR|int. quickly express deposits use pe| +81807|375658|25659|6|39|67611.96|0.01|0.02|N|O|1995-07-15|1995-08-05|1995-07-21|TAKE BACK RETURN|TRUCK|urious packages. blithely regular de| +81832|643391|18416|1|17|22684.12|0.05|0.07|N|O|1995-09-19|1995-09-16|1995-10-06|DELIVER IN PERSON|RAIL|liers. slyly bol| +81832|469696|19697|2|48|79952.16|0.08|0.06|N|O|1995-08-05|1995-08-30|1995-08-25|NONE|TRUCK|ts. slyly even dolphins| +81832|164440|26944|3|13|19557.72|0.08|0.04|N|O|1995-10-02|1995-09-02|1995-10-11|NONE|AIR|cial accounts| +81832|736867|11896|4|6|11422.98|0.03|0.04|N|O|1995-08-28|1995-08-29|1995-09-26|NONE|REG AIR|posits inte| +81832|516043|28554|5|31|32829.62|0.04|0.04|N|O|1995-09-19|1995-09-13|1995-09-25|TAKE BACK RETURN|MAIL|uriously expre| +81832|119474|44479|6|50|74673.50|0.06|0.00|N|O|1995-06-25|1995-08-23|1995-06-26|NONE|RAIL|edly final d| +81833|478535|28536|1|6|9081.06|0.09|0.04|N|O|1995-07-26|1995-09-07|1995-07-31|TAKE BACK RETURN|REG AIR|eposits haggle blithely along th| +81833|733206|20749|2|25|30979.25|0.04|0.06|N|O|1995-07-05|1995-08-19|1995-07-20|DELIVER IN PERSON|TRUCK| stealthy instruc| +81833|986043|36044|3|36|40644.00|0.02|0.00|N|O|1995-09-27|1995-09-15|1995-10-05|DELIVER IN PERSON|TRUCK|t deposits are across the speci| +81833|419014|31523|4|7|6530.93|0.04|0.05|N|O|1995-10-14|1995-09-16|1995-11-08|COLLECT COD|AIR| haggle furious| +81833|356090|31105|5|38|43551.04|0.08|0.05|N|O|1995-08-06|1995-08-27|1995-08-08|COLLECT COD|AIR|ent deposits. u| +81833|803419|3420|6|50|66118.50|0.08|0.05|N|O|1995-09-01|1995-08-02|1995-09-08|TAKE BACK RETURN|AIR|kages haggle fu| +81834|481357|6376|1|23|30781.59|0.09|0.01|A|F|1992-06-23|1992-06-05|1992-07-15|TAKE BACK RETURN|FOB| fluffily bold acco| +81834|150556|13060|2|17|27311.35|0.01|0.05|A|F|1992-06-04|1992-07-03|1992-06-10|NONE|AIR|avely special deposits across the| +81834|379244|16766|3|28|37050.44|0.06|0.08|R|F|1992-07-29|1992-05-31|1992-08-05|COLLECT COD|REG AIR|y ironic hockey players haggle fluffily| +81834|938411|38412|4|36|52177.32|0.10|0.07|A|F|1992-05-30|1992-05-29|1992-05-31|COLLECT COD|RAIL|uickly special pl| +81834|857620|20138|5|11|17353.38|0.00|0.07|A|F|1992-06-21|1992-06-10|1992-07-10|NONE|AIR|egular requests nag final pearls. furiou| +81834|17874|42875|6|1|1791.87|0.05|0.05|A|F|1992-07-06|1992-06-20|1992-07-13|COLLECT COD|AIR|e slyly. instruction| +81835|51054|26057|1|48|48242.40|0.04|0.05|N|O|1996-02-29|1996-04-17|1996-03-05|DELIVER IN PERSON|TRUCK| accounts cajole daringly platelets| +81835|50381|382|2|23|30621.74|0.01|0.00|N|O|1996-06-23|1996-04-01|1996-07-20|TAKE BACK RETURN|RAIL|the regular, quick i| +81835|737912|427|3|32|62396.16|0.08|0.02|N|O|1996-03-12|1996-04-24|1996-03-15|DELIVER IN PERSON|SHIP|ainst the brave theodolites. accounts sl| +81835|72796|10300|4|13|22994.27|0.02|0.01|N|O|1996-02-29|1996-05-02|1996-03-25|NONE|TRUCK|posits. final theodolites cajole furiousl| +81836|887083|12118|1|47|50291.88|0.10|0.01|R|F|1995-02-04|1995-03-16|1995-02-28|COLLECT COD|FOB|riously about the accounts. slyly ex| +81836|187468|49972|2|50|77773.00|0.08|0.04|R|F|1995-02-12|1995-03-03|1995-02-28|NONE|RAIL|ven requests. furiously final decoy| +81836|759765|34796|3|10|18247.30|0.07|0.03|A|F|1995-04-02|1995-02-17|1995-04-24|TAKE BACK RETURN|TRUCK|ss the unusual deposits. packages cajole | +81836|355876|5877|4|11|21250.46|0.07|0.00|A|F|1995-04-07|1995-03-09|1995-04-13|DELIVER IN PERSON|MAIL|silent requests. quickly unusual acco| +81837|548521|23542|1|15|23542.50|0.03|0.00|N|O|1996-12-17|1996-12-25|1996-12-19|COLLECT COD|TRUCK| carefully unusual p| +81837|982801|45321|2|7|13186.32|0.04|0.00|N|O|1997-01-13|1996-11-12|1997-01-27|COLLECT COD|SHIP|hely around the evenly expr| +81837|931659|19214|3|8|13524.88|0.10|0.08|N|O|1996-12-01|1996-12-11|1996-12-29|TAKE BACK RETURN|AIR|theodolites. blithely regular ideas| +81837|381206|43714|4|1|1287.19|0.09|0.08|N|O|1996-12-09|1996-12-24|1996-12-25|DELIVER IN PERSON|TRUCK|y above the slyly close packages? even| +81837|926980|39499|5|41|82284.54|0.00|0.04|N|O|1996-11-02|1996-11-30|1996-11-13|COLLECT COD|TRUCK|. pinto beans sleep unusual, f| +81838|478237|40747|1|37|44962.77|0.08|0.07|N|O|1995-10-18|1995-10-03|1995-10-30|COLLECT COD|SHIP|eposits boost accord| +81838|726177|13720|2|35|42109.90|0.02|0.04|N|O|1995-11-23|1995-10-08|1995-12-19|COLLECT COD|AIR| alongside of the careful instructions. | +81839|29509|4510|1|12|17262.00|0.03|0.08|A|F|1995-04-26|1995-02-15|1995-05-17|NONE|FOB|ounts use furiously silent r| +81839|943833|18870|2|47|88209.13|0.06|0.04|R|F|1995-02-04|1995-02-23|1995-02-23|DELIVER IN PERSON|MAIL|s. special packages across t| +81864|59334|9335|1|17|21986.61|0.02|0.06|N|O|1996-09-11|1996-10-02|1996-10-01|COLLECT COD|TRUCK| slyly final p| +81864|220898|45907|2|16|29102.08|0.03|0.08|N|O|1996-12-03|1996-10-10|1996-12-20|TAKE BACK RETURN|RAIL|to beans are slyly sl| +81864|623423|35936|3|48|64626.72|0.10|0.04|N|O|1996-10-05|1996-10-10|1996-10-11|DELIVER IN PERSON|AIR|totes. special, regular instructio| +81865|390119|2627|1|24|29018.40|0.07|0.00|N|O|1998-04-15|1998-04-12|1998-05-03|DELIVER IN PERSON|SHIP|ously final accounts. quickly regular de| +81866|737525|12554|1|47|73437.03|0.04|0.03|N|O|1998-03-26|1998-01-30|1998-04-20|TAKE BACK RETURN|MAIL|ven instructions. pinto b| +81866|570265|32777|2|24|32045.76|0.08|0.00|N|O|1998-03-31|1998-02-01|1998-04-29|NONE|RAIL|e the blithely even packages. regu| +81866|432195|7212|3|5|5635.85|0.04|0.01|N|O|1997-12-11|1998-01-29|1997-12-20|TAKE BACK RETURN|SHIP|nal excuses haggle furiously against the de| +81866|885409|22961|4|50|69718.00|0.07|0.04|N|O|1998-01-03|1998-02-23|1998-01-13|NONE|REG AIR|rts. carefully regular excuses s| +81867|787427|24973|1|48|72690.72|0.06|0.01|N|O|1998-09-28|1998-09-20|1998-10-21|NONE|SHIP|ggle quietly against the regula| +81867|284731|22247|2|19|32598.68|0.06|0.05|N|O|1998-09-30|1998-09-10|1998-10-18|DELIVER IN PERSON|REG AIR|haggle even warthogs. fluffily eve| +81867|463804|38823|3|38|67175.64|0.01|0.06|N|O|1998-10-16|1998-08-16|1998-10-19|COLLECT COD|FOB| special theodolites snooze blithely bol| +81868|728199|3228|1|14|17180.24|0.00|0.08|A|F|1992-12-01|1993-01-23|1992-12-13|NONE|MAIL| enticingly even warthogs. final sent| +81868|835191|22740|2|32|36036.80|0.00|0.00|A|F|1993-02-03|1993-01-20|1993-02-27|NONE|FOB| beans. ideas unwind. regular| +81869|40157|2658|1|28|30720.20|0.04|0.01|N|O|1996-04-01|1996-03-07|1996-04-05|TAKE BACK RETURN|MAIL|odolites above the packag| +81869|914373|26892|2|23|31908.59|0.10|0.08|N|O|1996-05-08|1996-04-21|1996-05-19|NONE|RAIL|y ironic theodolites according to t| +81869|858350|20868|3|19|24857.89|0.10|0.07|N|O|1996-02-19|1996-03-16|1996-02-27|COLLECT COD|TRUCK|l instructions nag along| +81869|273335|35841|4|25|32708.00|0.07|0.07|N|O|1996-05-07|1996-04-06|1996-05-29|DELIVER IN PERSON|FOB|g deposits nod blithely. al| +81870|77553|40055|1|23|35202.65|0.09|0.00|N|O|1998-04-18|1998-02-22|1998-05-12|COLLECT COD|MAIL|ronic theodolites.| +81870|422892|35401|2|31|56260.97|0.01|0.07|N|O|1998-02-19|1998-02-12|1998-03-04|NONE|RAIL| the furiously | +81870|530313|42824|3|45|60448.05|0.07|0.06|N|O|1998-04-24|1998-03-06|1998-05-15|NONE|RAIL| furiously even instructi| +81870|970323|20324|4|3|4179.84|0.09|0.05|N|O|1998-04-25|1998-03-05|1998-05-16|DELIVER IN PERSON|SHIP|es sleep. expr| +81870|212308|24813|5|42|51252.18|0.00|0.00|N|O|1998-04-14|1998-03-23|1998-05-08|TAKE BACK RETURN|TRUCK|ld dolphins thrash bravely care| +81870|252001|27012|6|26|24777.74|0.05|0.05|N|O|1998-01-28|1998-04-07|1998-02-01|DELIVER IN PERSON|MAIL|nal requests| +81871|725697|726|1|22|37898.52|0.09|0.02|N|O|1998-01-14|1997-12-31|1998-01-19|DELIVER IN PERSON|TRUCK|are fluffily express packag| +81871|779695|42211|2|36|63887.76|0.02|0.03|N|O|1998-02-03|1997-12-31|1998-02-04|DELIVER IN PERSON|FOB|s. finally express idea| +81871|328042|15561|3|23|24610.69|0.07|0.05|N|O|1998-02-22|1998-01-11|1998-03-11|NONE|MAIL|nto beans around the quickly final pa| +81871|385518|10533|4|15|24052.50|0.07|0.07|N|O|1998-03-14|1998-01-26|1998-04-06|DELIVER IN PERSON|SHIP|regular requests cajole caref| +81896|784073|9104|1|11|12727.44|0.09|0.07|A|F|1993-08-23|1993-07-18|1993-09-08|NONE|SHIP|ts: slyly regular pinto beans use furiousl| +81896|910939|10940|2|18|35098.02|0.01|0.01|A|F|1993-08-10|1993-07-19|1993-09-08|DELIVER IN PERSON|AIR|thely bold packages use caref| +81896|146617|34124|3|28|46581.08|0.01|0.08|A|F|1993-06-23|1993-07-31|1993-07-20|DELIVER IN PERSON|SHIP|e furiously pending forges. carefull| +81896|176651|26652|4|24|41463.60|0.07|0.02|R|F|1993-07-05|1993-08-02|1993-07-13|COLLECT COD|AIR|ess foxes. quickly dogged instruc| +81896|969219|31739|5|44|56679.48|0.08|0.05|R|F|1993-07-13|1993-08-04|1993-07-27|NONE|REG AIR|ckages detect quickly. special accounts al| +81897|629018|29019|1|15|14204.70|0.05|0.01|R|F|1993-09-11|1993-11-03|1993-09-26|NONE|TRUCK| furiously. slyly reg| +81898|122846|47851|1|17|31770.28|0.03|0.06|N|O|1997-07-09|1997-08-03|1997-07-22|NONE|SHIP|sual instruct| +81898|656372|31399|2|6|7970.04|0.03|0.01|N|O|1997-09-18|1997-08-29|1997-10-11|DELIVER IN PERSON|REG AIR|ing account| +81898|643145|5658|3|29|31555.19|0.01|0.02|N|O|1997-08-04|1997-07-25|1997-08-22|DELIVER IN PERSON|REG AIR|sits lose furiously a| +81898|333162|45669|4|47|56172.05|0.02|0.05|N|O|1997-08-17|1997-08-25|1997-09-07|TAKE BACK RETURN|SHIP|ts: carefully final sentiments| +81898|444971|19988|5|49|93881.55|0.03|0.04|N|O|1997-08-31|1997-08-28|1997-09-11|NONE|MAIL|lly ironic, regular deposits. final accoun| +81899|389347|26869|1|20|28726.60|0.09|0.01|N|O|1996-04-16|1996-02-23|1996-04-19|DELIVER IN PERSON|RAIL|ounts affix slyly-- re| +81899|742942|17971|2|20|39698.20|0.03|0.03|N|O|1996-04-05|1996-02-12|1996-04-18|TAKE BACK RETURN|FOB| across the b| +81900|512958|489|1|2|3941.86|0.09|0.08|N|O|1997-06-21|1997-07-29|1997-06-23|NONE|TRUCK|s need to doubt ca| +81900|284335|9346|2|9|11873.88|0.02|0.07|N|O|1997-08-28|1997-08-22|1997-09-01|TAKE BACK RETURN|REG AIR| accounts | +81900|807203|32236|3|41|45516.56|0.01|0.04|N|O|1997-07-09|1997-07-09|1997-07-19|TAKE BACK RETURN|FOB|s. ironic deposits boost after the | +81901|276656|1667|1|32|52244.48|0.01|0.06|A|F|1993-11-20|1993-10-24|1993-11-30|NONE|REG AIR|ully permanent packages arou| +81901|742539|5054|2|45|71167.50|0.05|0.02|R|F|1993-10-24|1993-08-27|1993-10-29|TAKE BACK RETURN|FOB|counts are. quickly even platelets sno| +81901|849086|49087|3|41|42436.64|0.02|0.06|R|F|1993-09-01|1993-10-08|1993-09-23|TAKE BACK RETURN|MAIL|equests sleep. furiously express accounts a| +81901|574535|24536|4|41|65989.91|0.02|0.00|A|F|1993-08-26|1993-08-28|1993-09-01|COLLECT COD|TRUCK|e quickly about the f| +81901|201049|1050|5|49|46551.47|0.05|0.00|A|F|1993-10-11|1993-09-19|1993-10-27|TAKE BACK RETURN|MAIL|ain across the si| +81901|28745|3746|6|41|68623.34|0.04|0.01|R|F|1993-10-06|1993-09-13|1993-10-15|DELIVER IN PERSON|RAIL|ess packages cajole furiously even ide| +81902|929502|42021|1|36|55132.56|0.09|0.00|A|F|1993-11-20|1993-10-28|1993-12-16|NONE|FOB|uriously furiously final pack| +81902|124346|36849|2|42|57554.28|0.07|0.05|A|F|1994-01-04|1993-12-03|1994-01-23|TAKE BACK RETURN|AIR| silently regular deposits according to th| +81902|866587|16588|3|47|73016.38|0.02|0.00|A|F|1993-10-21|1993-12-16|1993-11-07|NONE|FOB| regular packages int| +81902|719396|31911|4|26|36799.36|0.02|0.06|R|F|1993-10-05|1993-12-11|1993-10-25|COLLECT COD|FOB| express accounts use among the un| +81902|885358|35359|5|1|1343.31|0.00|0.06|A|F|1994-01-16|1993-12-07|1994-02-06|COLLECT COD|AIR| cajole about the furiously regular platele| +81903|415065|15066|1|38|37241.52|0.07|0.05|R|F|1994-11-30|1994-11-13|1994-12-01|COLLECT COD|TRUCK|ously unusual instructi| +81903|989606|27164|2|27|45780.12|0.09|0.02|A|F|1994-09-27|1994-10-12|1994-09-28|DELIVER IN PERSON|RAIL|ts. unusual theodolites c| +81928|367336|17337|1|40|56132.80|0.04|0.08|N|O|1996-04-12|1996-04-23|1996-04-23|DELIVER IN PERSON|AIR|yly unusual deposits.| +81928|815096|2645|2|40|40442.00|0.07|0.07|N|O|1996-05-27|1996-04-24|1996-05-29|DELIVER IN PERSON|SHIP|ests. expr| +81929|553907|3908|1|9|17647.92|0.01|0.06|N|O|1996-01-02|1996-01-20|1996-01-06|NONE|FOB|nal, regular theodolites. spec| +81929|505233|42764|2|3|3714.63|0.00|0.05|N|O|1996-02-16|1996-02-23|1996-02-26|NONE|FOB|its haggle careful| +81929|449095|49096|3|28|29233.96|0.01|0.02|N|O|1996-03-13|1996-01-12|1996-03-22|DELIVER IN PERSON|FOB|furiously along the silent, r| +81929|932313|7350|4|31|41703.37|0.06|0.00|N|O|1996-02-09|1996-02-17|1996-03-04|TAKE BACK RETURN|MAIL| across the reg| +81930|410454|47979|1|37|50483.91|0.00|0.01|N|O|1998-02-25|1998-04-14|1998-02-28|DELIVER IN PERSON|AIR|egular deposits. reg| +81930|497750|10260|2|49|85638.77|0.10|0.00|N|O|1998-04-30|1998-04-10|1998-05-23|TAKE BACK RETURN|FOB|unts. quickly pending accoun| +81930|676641|39155|3|8|12940.88|0.07|0.03|N|O|1998-03-12|1998-04-19|1998-03-31|TAKE BACK RETURN|MAIL|s haggle across the quickly sil| +81930|296315|46316|4|50|65565.00|0.05|0.04|N|O|1998-05-11|1998-05-08|1998-06-04|DELIVER IN PERSON|REG AIR|hely final accounts after the| +81930|165040|2550|5|2|2210.08|0.03|0.04|N|O|1998-04-13|1998-04-11|1998-05-04|DELIVER IN PERSON|MAIL|tes haggle. furiously pending req| +81931|745243|7758|1|35|45087.35|0.05|0.08|A|F|1993-09-09|1993-08-20|1993-09-22|TAKE BACK RETURN|AIR|ual frets. quickly regular | +81931|284791|9802|2|50|88789.00|0.03|0.07|A|F|1993-07-02|1993-08-26|1993-07-07|DELIVER IN PERSON|FOB| regular pinto beans solve fluffily across| +81931|468240|5768|3|26|31413.72|0.04|0.07|A|F|1993-09-16|1993-09-01|1993-09-19|NONE|MAIL|nding platelets x-ray blithely along t| +81932|950173|25212|1|18|22016.34|0.01|0.08|N|O|1995-09-17|1995-10-06|1995-10-11|DELIVER IN PERSON|SHIP|lthily special accounts wake against| +81932|541236|28767|2|40|51088.40|0.07|0.03|N|O|1995-11-04|1995-11-01|1995-11-10|DELIVER IN PERSON|REG AIR|e quickly final,| +81933|132677|45180|1|8|13677.36|0.10|0.02|R|F|1994-07-05|1994-07-28|1994-07-12|NONE|SHIP|ts alongside of the| +81933|899038|36590|2|44|45627.56|0.03|0.08|R|F|1994-08-16|1994-07-23|1994-08-25|TAKE BACK RETURN|RAIL|ully ironic asymptotes. slyly brav| +81934|610316|22829|1|24|29430.72|0.00|0.00|R|F|1993-11-30|1993-10-18|1993-12-24|DELIVER IN PERSON|AIR| the slyly | +81934|572853|10387|2|14|26961.62|0.09|0.07|A|F|1993-10-26|1993-11-30|1993-10-31|DELIVER IN PERSON|RAIL| furiously slyly r| +81934|940218|2737|3|35|44035.95|0.10|0.01|R|F|1993-11-07|1993-11-13|1993-12-02|DELIVER IN PERSON|SHIP|ess, regular requests. care| +81934|232667|7676|4|31|49589.15|0.06|0.03|A|F|1993-12-26|1993-10-25|1993-12-31|COLLECT COD|SHIP|nal dinos. carefully expre| +81934|432041|44550|5|44|42812.88|0.10|0.02|R|F|1993-11-08|1993-11-16|1993-11-21|DELIVER IN PERSON|RAIL|orbits haggle blithely. even, silent rea| +81934|310729|10730|6|44|76547.24|0.07|0.08|A|F|1993-10-05|1993-10-10|1993-10-21|TAKE BACK RETURN|FOB|es sleep carefully. ex| +81935|499777|49778|1|7|12437.25|0.04|0.08|N|O|1997-01-11|1996-11-29|1997-02-06|NONE|SHIP|the excuses. forges along the express| +81935|739317|26860|2|36|48826.08|0.01|0.08|N|O|1997-02-03|1996-12-06|1997-02-17|NONE|REG AIR|eodolites use. theodolites after th| +81960|379763|17285|1|48|88452.00|0.04|0.07|N|O|1998-03-20|1997-12-20|1998-04-06|COLLECT COD|TRUCK|ts. furiously special| +81960|660007|35034|2|31|29976.07|0.02|0.04|N|O|1998-03-01|1998-01-02|1998-03-21|DELIVER IN PERSON|FOB|ackages sleep slyly according to the | +81960|727198|2227|3|9|11026.44|0.08|0.06|N|O|1997-12-18|1997-12-29|1998-01-10|COLLECT COD|TRUCK|tegrate around the fin| +81960|10454|22955|4|29|39569.05|0.01|0.06|N|O|1998-01-11|1998-02-06|1998-01-13|NONE|REG AIR|s. regular Tiresias nag alongside of the fi| +81960|690986|28526|5|28|55354.60|0.07|0.03|N|O|1998-03-16|1997-12-22|1998-04-05|TAKE BACK RETURN|AIR| regular theodolites was furiously ab| +81960|401684|39209|6|11|17442.26|0.04|0.07|N|O|1998-02-22|1998-01-03|1998-02-24|COLLECT COD|REG AIR|riously among the ironic, pending re| +81961|599596|49597|1|22|37302.54|0.01|0.04|R|F|1994-09-18|1994-09-23|1994-10-17|NONE|AIR|ular accou| +81961|409168|21677|2|18|19388.52|0.02|0.03|R|F|1994-11-25|1994-09-23|1994-12-12|TAKE BACK RETURN|TRUCK|y against t| +81961|876450|14002|3|44|62762.04|0.00|0.04|A|F|1994-09-26|1994-10-23|1994-10-17|NONE|AIR| maintain | +81961|489285|26813|4|33|42050.58|0.06|0.00|A|F|1994-09-12|1994-09-18|1994-09-13|DELIVER IN PERSON|SHIP| slow packages wake furiously. carefully | +81961|409902|34919|5|36|65227.68|0.07|0.06|R|F|1994-08-27|1994-09-29|1994-09-05|DELIVER IN PERSON|SHIP|y regular d| +81962|435727|35728|1|6|9976.20|0.04|0.03|R|F|1993-05-28|1993-08-12|1993-06-12|COLLECT COD|TRUCK|kly ironic p| +81963|456791|19301|1|35|61171.95|0.00|0.05|N|O|1995-09-23|1995-11-09|1995-09-28|DELIVER IN PERSON|AIR|cajole. busy, bold instructions| +81963|277043|39549|2|29|29580.87|0.06|0.00|N|O|1995-09-16|1995-11-01|1995-09-22|COLLECT COD|REG AIR|en deposits. express, pending somas los| +81963|252106|2107|3|17|17987.53|0.09|0.08|N|O|1995-09-11|1995-11-05|1995-09-21|DELIVER IN PERSON|REG AIR| sentiment| +81963|141298|16303|4|10|13392.90|0.05|0.01|N|O|1995-10-11|1995-11-25|1995-10-21|DELIVER IN PERSON|TRUCK|ounts. requests | +81963|790060|2576|5|47|54051.41|0.07|0.03|N|O|1995-12-17|1995-10-12|1995-12-22|COLLECT COD|RAIL|ironic warthogs sleep. even| +81963|530976|5997|6|26|52180.70|0.00|0.00|N|O|1995-11-12|1995-11-16|1995-12-11|TAKE BACK RETURN|RAIL|xcuses. furiously | +81963|112929|37934|7|1|1941.92|0.09|0.02|N|O|1995-11-22|1995-10-26|1995-12-05|COLLECT COD|TRUCK|lithely slyly| +81964|981270|6309|1|49|66210.27|0.10|0.06|R|F|1992-12-30|1992-12-01|1993-01-12|NONE|RAIL| ideas are special hockey player| +81964|194949|32459|2|40|81757.60|0.00|0.06|R|F|1993-01-18|1992-11-12|1993-01-24|NONE|FOB|kages about the unusual foxes wake sl| +81965|340495|28014|1|27|41457.96|0.02|0.03|N|O|1998-05-23|1998-04-21|1998-06-06|NONE|FOB|s promise slyly furiously| +81965|698852|36392|2|48|88839.36|0.07|0.03|N|O|1998-05-24|1998-04-19|1998-06-13|COLLECT COD|REG AIR|ses are across the slyly regul| +81966|906676|44231|1|10|16826.30|0.04|0.02|N|O|1997-04-19|1997-03-08|1997-04-20|DELIVER IN PERSON|FOB|s. carefully bold ideas boost quickly after| +81967|875846|881|1|15|27327.00|0.01|0.02|N|O|1997-08-26|1997-08-25|1997-09-22|DELIVER IN PERSON|MAIL|lyly above the ironic excuses. blithe| +81967|342961|5468|2|13|26051.35|0.03|0.02|N|O|1997-06-28|1997-09-16|1997-07-17|COLLECT COD|SHIP|re carefully about| +81967|138295|25802|3|4|5333.16|0.10|0.07|N|O|1997-09-24|1997-09-12|1997-10-24|TAKE BACK RETURN|SHIP|wake along the slyly | +81992|725237|266|1|28|35341.60|0.08|0.02|N|O|1995-09-23|1995-11-03|1995-10-11|COLLECT COD|FOB| the even, even accounts. fluffily pendin| +81992|45794|45795|2|27|46974.33|0.01|0.04|N|O|1995-12-10|1995-10-05|1996-01-06|DELIVER IN PERSON|MAIL|ial pinto beans.| +81992|658865|21379|3|40|72953.20|0.02|0.07|N|O|1995-09-08|1995-10-15|1995-09-30|NONE|TRUCK|l, regular pinto beans wake blithely. fluf| +81993|999999|50000|1|48|100749.60|0.02|0.05|A|F|1993-10-27|1993-12-14|1993-11-10|NONE|TRUCK|quickly even pinto be| +81993|980701|43221|2|26|46323.16|0.00|0.02|R|F|1993-10-07|1993-11-09|1993-11-01|COLLECT COD|AIR|r, careful acc| +81994|987977|37978|1|22|45428.46|0.00|0.05|N|O|1997-03-06|1997-04-12|1997-03-20|TAKE BACK RETURN|RAIL|ate. pending accounts | +81994|919609|7164|2|47|76542.32|0.07|0.01|N|O|1997-05-16|1997-04-10|1997-05-24|TAKE BACK RETURN|MAIL|ackages sleep-- blithely| +81994|855064|17582|3|50|50951.00|0.01|0.01|N|O|1997-05-04|1997-05-06|1997-05-13|DELIVER IN PERSON|FOB|uickly even theodolites. blith| +81994|47319|22320|4|50|63315.50|0.07|0.03|N|O|1997-06-14|1997-03-25|1997-06-18|TAKE BACK RETURN|RAIL|osits promise| +81994|283877|8888|5|25|46521.50|0.08|0.02|N|O|1997-05-15|1997-05-09|1997-06-09|COLLECT COD|TRUCK|nic pains lose carefully final acc| +81995|745176|45177|1|1|1221.14|0.03|0.04|A|F|1995-01-18|1995-02-26|1995-02-04|NONE|MAIL|eposits. quickly unu| +81995|163608|1118|2|50|83580.00|0.10|0.00|R|F|1995-03-03|1995-02-21|1995-03-23|NONE|TRUCK|n theodolites. depende| +81995|759324|21840|3|42|58098.18|0.05|0.04|A|F|1995-04-21|1995-03-23|1995-05-16|DELIVER IN PERSON|REG AIR|cording to the special, | +81995|945619|8138|4|11|18310.27|0.07|0.02|A|F|1995-02-23|1995-02-07|1995-02-24|TAKE BACK RETURN|REG AIR|ts sleep above | +81995|16273|3774|5|30|35678.10|0.08|0.06|A|F|1995-01-27|1995-03-16|1995-01-29|DELIVER IN PERSON|RAIL|packages boost slyly slyly e| +81995|497006|47007|6|20|20059.60|0.01|0.00|R|F|1995-02-18|1995-03-03|1995-03-07|DELIVER IN PERSON|RAIL|nusual excuses. blithely final reques| +81995|167043|4553|7|15|16650.60|0.09|0.08|R|F|1995-03-11|1995-03-15|1995-03-22|NONE|MAIL| even requests cajole regu| +81996|479587|29588|1|42|65795.52|0.06|0.01|N|O|1997-05-08|1997-05-08|1997-06-04|COLLECT COD|MAIL| dependencies above the s| +81996|418492|31001|2|17|23977.99|0.03|0.03|N|O|1997-03-25|1997-06-09|1997-03-27|DELIVER IN PERSON|SHIP|ar dependencies haggle blithely abo| +81996|583599|46111|3|28|47111.96|0.00|0.00|N|O|1997-06-28|1997-04-26|1997-07-04|DELIVER IN PERSON|RAIL|heodolites. caref| +81997|435839|48348|1|29|51469.49|0.06|0.08|N|O|1996-06-24|1996-06-17|1996-07-01|DELIVER IN PERSON|REG AIR|ously special theodolites wake carefully. r| +81997|145587|8090|2|3|4897.74|0.09|0.03|N|O|1996-07-25|1996-06-20|1996-08-11|DELIVER IN PERSON|SHIP|carefully express notornis cajole bol| +81997|863995|26513|3|37|72481.15|0.02|0.02|N|O|1996-04-30|1996-06-26|1996-05-23|TAKE BACK RETURN|REG AIR|te carefully unusual packages. furio| +81997|148833|11336|4|20|37636.60|0.01|0.05|N|O|1996-07-28|1996-07-06|1996-08-17|TAKE BACK RETURN|RAIL| the theodolites. accounts among the fluff| +81997|419635|32144|5|6|9327.66|0.09|0.00|N|O|1996-07-21|1996-06-19|1996-08-18|NONE|MAIL|nusual packages about the silent pa| +81998|822073|22074|1|35|34826.05|0.00|0.06|R|F|1993-05-02|1993-02-16|1993-05-04|COLLECT COD|AIR|r, final theodo| +81998|574399|36911|2|12|17680.44|0.06|0.01|R|F|1993-03-05|1993-03-08|1993-03-11|NONE|FOB|ul decoys across the carefully idle reques| +81998|913292|13293|3|49|63957.25|0.03|0.02|A|F|1993-02-05|1993-03-06|1993-02-20|TAKE BACK RETURN|SHIP|riously pendi| +81998|691742|29282|4|27|46810.17|0.07|0.06|A|F|1993-03-06|1993-03-23|1993-03-17|TAKE BACK RETURN|FOB|ains lose blithely along the | +81998|101808|1809|5|30|54294.00|0.09|0.06|A|F|1993-02-08|1993-02-17|1993-02-25|DELIVER IN PERSON|AIR|sly fluffily express depo| +81998|74838|12342|6|6|10876.98|0.02|0.08|R|F|1993-03-04|1993-03-19|1993-03-30|DELIVER IN PERSON|RAIL|sual asymptotes. c| +81998|802109|27142|7|28|28309.68|0.03|0.06|R|F|1993-01-24|1993-03-29|1993-02-18|DELIVER IN PERSON|SHIP| express epitaphs alongsid| +81999|30995|5996|1|25|48149.75|0.09|0.02|A|F|1993-10-04|1993-09-23|1993-10-17|TAKE BACK RETURN|MAIL| ironic requests. accounts accor| +81999|919452|19453|2|26|38256.66|0.04|0.08|A|F|1993-08-12|1993-09-03|1993-08-27|NONE|RAIL|furiously. fluffily regula| +81999|224511|24512|3|21|30145.50|0.08|0.06|A|F|1993-11-21|1993-09-06|1993-12-21|NONE|MAIL| blithely | +82024|497222|22241|1|40|48768.00|0.00|0.06|N|O|1998-03-16|1998-01-03|1998-03-20|COLLECT COD|SHIP|endencies cajole furiously about the furio| +82024|809474|47023|2|39|53953.77|0.05|0.00|N|O|1998-03-21|1998-01-13|1998-04-17|DELIVER IN PERSON|SHIP| stealthily about the unusua| +82024|823878|23879|3|23|41442.09|0.06|0.05|N|O|1998-03-23|1998-01-27|1998-04-01|COLLECT COD|REG AIR|ely across the quick| +82024|913468|25987|4|7|10369.94|0.01|0.02|N|O|1997-12-18|1998-02-05|1998-01-15|NONE|TRUCK|efully regular | +82024|648247|35784|5|39|46613.19|0.08|0.03|N|O|1998-02-26|1997-12-27|1998-03-26|COLLECT COD|REG AIR|nst the pa| +82025|393244|43245|1|25|33430.75|0.05|0.00|N|O|1996-07-25|1996-08-26|1996-08-10|NONE|SHIP| x-ray? sly| +82025|248134|35647|2|13|14067.56|0.00|0.02|N|O|1996-06-26|1996-07-15|1996-07-04|DELIVER IN PERSON|FOB| deposits. i| +82025|379598|42106|3|4|6710.32|0.09|0.06|N|O|1996-07-06|1996-09-03|1996-07-20|NONE|REG AIR|eposits lose| +82025|892822|42823|4|12|21777.36|0.03|0.01|N|O|1996-07-27|1996-09-06|1996-08-24|DELIVER IN PERSON|AIR|ct carefully slyly express accounts| +82025|648369|10882|5|32|42154.56|0.00|0.02|N|O|1996-08-06|1996-08-12|1996-08-14|COLLECT COD|RAIL|e silent tithes; care| +82025|125475|12982|6|4|6001.88|0.01|0.03|N|O|1996-09-26|1996-08-11|1996-09-30|NONE|FOB| ironic, silent excuses. furiously| +82025|846542|9059|7|3|4465.50|0.03|0.03|N|O|1996-08-19|1996-07-25|1996-09-07|TAKE BACK RETURN|REG AIR|s. account| +82026|824018|11567|1|26|24491.22|0.08|0.07|R|F|1994-01-19|1994-01-26|1994-01-27|DELIVER IN PERSON|TRUCK|ng excuses hinder| +82026|264768|39779|2|31|53715.25|0.03|0.08|R|F|1993-12-31|1994-03-18|1994-01-26|NONE|REG AIR| brave, bold requests dazzle ruthlessly bli| +82026|940552|3071|3|16|25480.16|0.00|0.01|A|F|1994-02-12|1994-02-28|1994-02-15|DELIVER IN PERSON|TRUCK|accounts haggle around the bold d| +82026|853495|41047|4|18|26072.10|0.10|0.01|R|F|1993-12-22|1994-03-03|1994-01-21|NONE|AIR|ar platelets are. slyly ironic d| +82026|687646|37647|5|7|11435.27|0.06|0.04|A|F|1994-02-22|1994-02-28|1994-03-05|NONE|RAIL|sly final foxe| +82026|252682|40198|6|12|19616.04|0.04|0.08|R|F|1994-04-11|1994-03-12|1994-05-01|COLLECT COD|REG AIR| the final deposits! final, i| +82026|813360|909|7|20|25466.40|0.01|0.01|R|F|1994-03-13|1994-02-28|1994-04-07|NONE|MAIL| final deposits | +82027|134781|47284|1|33|59920.74|0.04|0.05|A|F|1992-05-25|1992-05-30|1992-06-16|TAKE BACK RETURN|SHIP|y express packages.| +82028|543434|5945|1|2|2954.82|0.03|0.02|A|F|1993-05-30|1993-04-16|1993-06-19|NONE|REG AIR|es sleep slyly about the| +82029|269228|44239|1|19|22746.99|0.07|0.00|A|F|1994-12-05|1994-11-10|1994-12-18|NONE|TRUCK|asymptotes.| +82030|941430|16467|1|27|39727.53|0.07|0.05|N|O|1996-09-14|1996-10-30|1996-09-29|DELIVER IN PERSON|TRUCK|l requests detect. quickly ironic d| +82030|610365|10366|2|50|63766.50|0.03|0.03|N|O|1996-09-24|1996-09-22|1996-10-23|NONE|REG AIR|yly carefully expre| +82031|834764|9797|1|49|83237.28|0.06|0.00|N|O|1998-05-06|1998-05-16|1998-05-19|COLLECT COD|AIR| boldly bold sauternes cajole ruth| +82056|926537|1574|1|39|60976.11|0.09|0.05|N|O|1996-05-19|1996-06-01|1996-06-18|NONE|SHIP| regular deposits cajole furiousl| +82056|299237|49238|2|48|59338.56|0.10|0.07|N|O|1996-06-19|1996-04-15|1996-07-10|TAKE BACK RETURN|REG AIR|c dependencies sleep blithely. bold d| +82056|267478|4994|3|24|34691.04|0.05|0.05|N|O|1996-06-29|1996-05-14|1996-07-08|NONE|TRUCK|y ironic accounts detect slyl| +82057|710323|35352|1|48|63997.92|0.09|0.00|N|O|1995-10-25|1995-11-08|1995-10-26|DELIVER IN PERSON|TRUCK| careful platelets cajole slyly a| +82057|396231|21246|2|26|34507.72|0.03|0.04|N|O|1996-01-11|1995-10-25|1996-02-10|DELIVER IN PERSON|TRUCK|to beans haggle carefully. slyly | +82057|441371|16388|3|46|60368.10|0.04|0.05|N|O|1995-12-31|1995-12-12|1996-01-15|DELIVER IN PERSON|REG AIR|y unusual packages. quickly bold package| +82057|121648|46653|4|45|75133.80|0.10|0.05|N|O|1995-10-06|1995-11-03|1995-10-12|COLLECT COD|FOB|ckages breach furi| +82057|530316|30317|5|32|43081.28|0.04|0.05|N|O|1995-12-21|1995-11-24|1996-01-16|COLLECT COD|TRUCK|ven accounts. carefully even plate| +82057|13290|38291|6|50|60164.50|0.05|0.06|N|O|1995-11-07|1995-11-28|1995-11-20|NONE|MAIL|l accounts. accounts thras| +82058|525220|25221|1|32|39846.40|0.01|0.07|N|O|1998-04-05|1998-03-07|1998-05-01|DELIVER IN PERSON|SHIP|fully ironic accounts among th| +82058|366373|28881|2|48|69089.28|0.02|0.04|N|O|1998-05-22|1998-03-24|1998-05-28|DELIVER IN PERSON|AIR|he slyly pending requests. bold, f| +82058|617830|42855|3|47|82146.60|0.07|0.07|N|O|1998-03-08|1998-03-05|1998-04-03|TAKE BACK RETURN|SHIP|usly bold dependencies.| +82059|584884|34885|1|35|68910.10|0.06|0.02|N|O|1996-08-21|1996-08-30|1996-08-30|NONE|MAIL|ular, regular instructions cajole quickl| +82059|145260|7763|2|12|15663.12|0.07|0.04|N|O|1996-07-12|1996-08-17|1996-07-24|DELIVER IN PERSON|RAIL|es use. quickl| +82060|273744|11260|1|44|75580.12|0.03|0.03|N|O|1998-05-08|1998-05-15|1998-05-15|DELIVER IN PERSON|AIR|are carefully against the deposits: unus| +82060|800237|37786|2|43|48899.17|0.09|0.05|N|O|1998-08-07|1998-05-31|1998-08-14|COLLECT COD|AIR|ructions. platelets wake slyly. | +82060|580941|30942|3|29|58635.68|0.09|0.03|N|O|1998-05-27|1998-06-02|1998-06-09|TAKE BACK RETURN|AIR|refully unusual pinto beans about the ruth| +82060|869319|19320|4|23|29630.21|0.00|0.01|N|O|1998-07-21|1998-05-13|1998-08-14|NONE|FOB|ruthless requests slee| +82061|810424|35457|1|43|57378.34|0.09|0.05|R|F|1992-06-15|1992-05-11|1992-07-12|NONE|SHIP|ns nag regular, daring| +82061|792168|4684|2|47|59226.11|0.10|0.00|A|F|1992-05-30|1992-03-22|1992-06-20|TAKE BACK RETURN|TRUCK|ar deposits.| +82061|961834|24354|3|45|85310.55|0.00|0.07|A|F|1992-03-26|1992-03-26|1992-04-04|TAKE BACK RETURN|MAIL|s accounts. ir| +82062|272444|22445|1|20|28328.60|0.03|0.04|N|F|1995-05-27|1995-05-31|1995-06-20|DELIVER IN PERSON|AIR|express dependencie| +82062|959854|9855|2|36|68897.16|0.09|0.06|R|F|1995-05-09|1995-06-12|1995-05-13|TAKE BACK RETURN|TRUCK|uickly bold instructions. | +82062|256282|31293|3|13|16097.51|0.10|0.08|N|F|1995-06-14|1995-05-19|1995-06-28|COLLECT COD|REG AIR|alongside of the slowly unusual packages. u| +82062|323122|48135|4|23|26337.53|0.03|0.02|R|F|1995-05-04|1995-05-19|1995-05-31|TAKE BACK RETURN|REG AIR|tructions. packages grow blithely. f| +82062|700717|38260|5|1|1717.68|0.00|0.05|N|O|1995-07-19|1995-05-03|1995-08-04|COLLECT COD|FOB|oxes. daringly| +82063|398747|48748|1|8|14765.84|0.01|0.03|N|O|1998-03-08|1998-02-06|1998-03-24|DELIVER IN PERSON|RAIL|nic theodoli| +82063|730305|5334|2|34|45399.18|0.01|0.03|N|O|1997-11-27|1998-02-08|1997-12-01|TAKE BACK RETURN|MAIL|aggle fluf| +82063|222261|34766|3|37|43780.25|0.04|0.04|N|O|1998-02-12|1998-01-03|1998-03-06|NONE|RAIL| excuses serve furiously ir| +82063|527817|2838|4|23|42430.17|0.09|0.02|N|O|1997-12-21|1998-02-02|1997-12-24|TAKE BACK RETURN|REG AIR|es sleep entic| +82063|8274|45775|5|27|31921.29|0.02|0.06|N|O|1998-03-01|1998-01-04|1998-03-07|COLLECT COD|SHIP|otornis boost enticingly. qui| +82088|822225|9774|1|50|57359.00|0.06|0.04|N|O|1998-07-21|1998-07-13|1998-07-29|DELIVER IN PERSON|FOB|l, regular foxes mo| +82088|119174|19175|2|22|26249.74|0.05|0.07|N|O|1998-07-31|1998-05-23|1998-08-19|NONE|TRUCK| wake careful| +82088|951258|38816|3|2|2618.42|0.09|0.02|N|O|1998-06-30|1998-06-17|1998-07-29|TAKE BACK RETURN|FOB| carefully regular ideas. sly| +82088|784675|22221|4|50|87982.00|0.01|0.00|N|O|1998-08-12|1998-05-21|1998-08-30|DELIVER IN PERSON|AIR|st the tithes sle| +82088|26803|39304|5|14|24217.20|0.04|0.00|N|O|1998-07-01|1998-07-01|1998-07-07|TAKE BACK RETURN|FOB|ly ironic pinto beans maintain furiously | +82088|473152|48171|6|9|10126.17|0.10|0.05|N|O|1998-06-08|1998-05-23|1998-07-03|NONE|MAIL|s cajole above the car| +82088|257380|44896|7|32|42795.84|0.06|0.06|N|O|1998-06-16|1998-06-19|1998-07-11|TAKE BACK RETURN|RAIL| regular waters was carefully enticin| +82089|776135|1166|1|34|41177.40|0.10|0.06|A|F|1994-09-16|1994-10-01|1994-09-28|COLLECT COD|TRUCK| theodolites. furiously exp| +82089|497601|10111|2|29|46358.82|0.10|0.01|R|F|1994-07-24|1994-09-25|1994-08-02|COLLECT COD|REG AIR|ing pinto beans. regular dependen| +82089|168055|5565|3|30|33691.50|0.06|0.07|R|F|1994-10-03|1994-09-05|1994-10-26|NONE|AIR| above the final theodolites. final a| +82089|489082|14101|4|21|22492.26|0.08|0.08|A|F|1994-08-04|1994-09-18|1994-08-31|TAKE BACK RETURN|RAIL|ld excuses. final| +82090|757249|32280|1|47|61391.87|0.07|0.04|N|O|1997-05-14|1997-06-17|1997-06-06|TAKE BACK RETURN|TRUCK|e carefully. regular, final deposits integ| +82090|73955|48958|2|50|96447.50|0.01|0.07|N|O|1997-05-14|1997-07-02|1997-06-02|NONE|REG AIR|the carefully final waters. furiously pen| +82091|627783|15320|1|49|83826.75|0.10|0.06|A|F|1994-10-31|1994-11-04|1994-11-30|COLLECT COD|SHIP|aggle unusual packages? slyly regular wart| +82091|142649|42650|2|18|30449.52|0.07|0.00|R|F|1994-10-27|1994-12-07|1994-11-03|TAKE BACK RETURN|REG AIR|ironic depo| +82092|190285|27795|1|8|11002.24|0.08|0.01|N|O|1997-05-30|1997-04-28|1997-06-01|TAKE BACK RETURN|REG AIR|elets upon the foxes haggle furio| +82093|103881|41388|1|47|88589.36|0.07|0.03|A|F|1992-10-23|1992-12-16|1992-11-19|DELIVER IN PERSON|TRUCK| accounts.| +82093|927868|40387|2|35|66353.70|0.01|0.03|R|F|1992-10-01|1992-11-02|1992-10-05|TAKE BACK RETURN|RAIL|ove the fluffily final theodolite| +82094|699198|24225|1|5|5985.80|0.10|0.03|N|O|1995-12-02|1995-12-03|1995-12-26|DELIVER IN PERSON|AIR|t dependencies are. sl| +82094|412850|12851|2|35|61699.05|0.00|0.02|N|O|1996-01-02|1995-12-15|1996-02-01|NONE|AIR|dolites cajol| +82094|768998|31514|3|28|57874.88|0.10|0.01|N|O|1995-12-09|1995-11-15|1995-12-22|COLLECT COD|MAIL|ts according to the bl| +82094|546244|21265|4|34|43867.48|0.01|0.06|N|O|1995-12-31|1995-11-25|1996-01-18|NONE|AIR|, unusual accounts. fu| +82094|708122|20637|5|19|21471.71|0.04|0.03|N|O|1995-12-20|1995-12-04|1995-12-25|DELIVER IN PERSON|SHIP|e final package| +82095|5761|5762|1|29|48336.04|0.06|0.01|R|F|1995-01-19|1995-04-01|1995-02-11|DELIVER IN PERSON|AIR|st blithely e| +82095|816767|16768|2|30|50511.60|0.10|0.00|A|F|1995-02-17|1995-02-15|1995-02-21|COLLECT COD|MAIL|pinto beans sleep furiously among | +82095|388938|26460|3|34|68915.28|0.03|0.06|R|F|1995-03-19|1995-03-16|1995-04-05|COLLECT COD|FOB| packages use carefu| +82095|864667|39702|4|24|39158.88|0.07|0.01|A|F|1995-03-02|1995-02-28|1995-03-31|DELIVER IN PERSON|AIR|p furiously furiousl| +82120|423674|23675|1|49|78284.85|0.04|0.02|A|F|1992-12-27|1992-12-26|1993-01-17|DELIVER IN PERSON|RAIL|bold theodolites int| +82120|683521|8548|2|6|9026.94|0.01|0.04|R|F|1992-12-29|1993-01-14|1993-01-20|TAKE BACK RETURN|AIR|ly unusual ideas. final th| +82121|231910|31911|1|41|75517.90|0.05|0.00|N|O|1997-01-04|1997-01-28|1997-01-28|DELIVER IN PERSON|FOB|ts wake flu| +82121|700558|559|2|46|71691.92|0.06|0.08|N|O|1997-03-21|1997-01-26|1997-04-13|TAKE BACK RETURN|RAIL|y regular id| +82121|266170|16171|3|15|17042.40|0.01|0.07|N|O|1997-04-04|1997-02-08|1997-05-01|NONE|RAIL|olites. ironic, blithe deposits detect abou| +82121|503426|28447|4|36|51458.40|0.09|0.07|N|O|1997-04-06|1997-02-21|1997-04-30|TAKE BACK RETURN|RAIL|rts might haggle carefully. daringly fi| +82121|66871|16872|5|37|68001.19|0.07|0.01|N|O|1997-04-04|1997-01-21|1997-04-14|DELIVER IN PERSON|SHIP|uffily. furious| +82121|897994|47995|6|19|37847.05|0.00|0.01|N|O|1997-03-26|1997-02-22|1997-04-23|TAKE BACK RETURN|SHIP|ions detect slyly furio| +82121|580814|43326|7|27|51159.33|0.01|0.08|N|O|1996-12-23|1997-02-22|1997-01-04|TAKE BACK RETURN|TRUCK| platelets nag quickly carefull| +82122|733339|20882|1|44|60381.20|0.07|0.01|A|F|1994-07-24|1994-07-07|1994-08-17|TAKE BACK RETURN|TRUCK|ans detect carefully fluffily special instr| +82122|213937|26442|2|14|25912.88|0.09|0.07|A|F|1994-08-23|1994-08-01|1994-09-06|TAKE BACK RETURN|SHIP|r pinto beans integrate along the r| +82122|623476|48501|3|26|36385.44|0.00|0.07|R|F|1994-07-08|1994-08-24|1994-08-02|TAKE BACK RETURN|REG AIR|ithely according to the| +82122|745133|32676|4|19|22383.90|0.01|0.05|A|F|1994-09-10|1994-08-20|1994-09-26|TAKE BACK RETURN|AIR|refully theodolites. carefully quick r| +82123|106230|18733|1|36|44504.28|0.04|0.05|R|F|1992-09-01|1992-11-24|1992-09-27|TAKE BACK RETURN|SHIP|y pending theodoli| +82123|403871|41396|2|9|15973.65|0.07|0.01|A|F|1992-09-27|1992-10-06|1992-10-02|COLLECT COD|FOB|ly regular w| +82124|520224|7755|1|3|3732.60|0.04|0.03|N|O|1997-09-15|1997-09-29|1997-10-03|TAKE BACK RETURN|REG AIR|h the hockey players nag quickl| +82125|832387|32388|1|43|56731.62|0.03|0.00|A|F|1992-12-31|1992-10-24|1993-01-12|DELIVER IN PERSON|AIR|k deposits nag. blithely regul| +82125|913929|38966|2|41|79658.08|0.03|0.03|A|F|1992-11-19|1992-11-10|1992-11-29|COLLECT COD|TRUCK|fluffily even packages haggle | +82125|391915|29437|3|16|32110.40|0.00|0.05|R|F|1992-10-20|1992-11-30|1992-10-23|TAKE BACK RETURN|SHIP|nst the expre| +82126|824204|24205|1|30|33844.80|0.07|0.00|N|O|1997-02-02|1997-03-28|1997-02-28|TAKE BACK RETURN|SHIP| of the even accounts.| +82126|388577|38578|2|14|23317.84|0.09|0.01|N|O|1997-03-26|1997-03-13|1997-04-18|NONE|MAIL|iously stealthily regular pinto | +82126|801774|14291|3|9|15081.57|0.03|0.07|N|O|1997-03-18|1997-03-14|1997-03-31|DELIVER IN PERSON|FOB|fily ironic package| +82126|406191|6192|4|26|28526.42|0.01|0.01|N|O|1997-03-01|1997-04-01|1997-03-24|TAKE BACK RETURN|FOB|uctions cajole slyly | +82126|842651|30200|5|14|22310.54|0.04|0.06|N|O|1997-03-28|1997-02-26|1997-04-02|COLLECT COD|REG AIR|s the furiously ironic asy| +82126|435055|10072|6|10|9900.30|0.06|0.01|N|O|1997-03-18|1997-02-14|1997-04-09|DELIVER IN PERSON|RAIL|p the carefully ironic pinto bea| +82127|475852|25853|1|34|62146.22|0.00|0.00|N|O|1996-04-30|1996-03-24|1996-05-25|NONE|REG AIR|requests sleep ironic, regular ac| +82127|640531|3044|2|6|8829.00|0.02|0.00|N|O|1996-03-06|1996-03-02|1996-03-14|NONE|RAIL|careful pinto beans wake | +82127|393593|6101|3|5|8432.90|0.01|0.04|N|O|1996-01-24|1996-04-09|1996-02-12|NONE|SHIP| ideas snooze regular depo| +82127|104074|16577|4|49|52825.43|0.01|0.08|N|O|1996-01-24|1996-02-22|1996-01-31|DELIVER IN PERSON|MAIL| furiously silen| +82127|161896|11897|5|14|27410.46|0.05|0.08|N|O|1996-02-11|1996-04-06|1996-03-04|DELIVER IN PERSON|SHIP|dependencies integrate fur| +82127|974258|49297|6|12|15986.52|0.03|0.02|N|O|1996-04-07|1996-03-14|1996-04-11|COLLECT COD|MAIL|c requests. express dependencies nag bl| +82127|353878|3879|7|1|1931.86|0.03|0.05|N|O|1996-02-12|1996-04-06|1996-03-10|TAKE BACK RETURN|MAIL| slyly blithely | +82152|621058|33571|1|7|6853.14|0.10|0.02|N|O|1998-03-31|1998-04-13|1998-04-06|NONE|TRUCK|unusual depth| +82152|116447|3954|2|29|42439.76|0.03|0.06|N|O|1998-05-14|1998-04-27|1998-06-05|TAKE BACK RETURN|TRUCK|p about the qui| +82152|111298|36303|3|23|30113.67|0.02|0.00|N|O|1998-03-23|1998-05-07|1998-04-08|DELIVER IN PERSON|TRUCK|ronic hockey | +82152|569599|7133|4|30|50057.10|0.07|0.05|N|O|1998-03-01|1998-04-12|1998-03-14|TAKE BACK RETURN|SHIP|ly slyly even accounts. accou| +82153|203587|41100|1|26|38754.82|0.03|0.02|N|O|1997-09-27|1997-07-13|1997-10-04|NONE|REG AIR|e furiously| +82153|676212|13752|2|11|13069.98|0.00|0.03|N|O|1997-07-22|1997-08-16|1997-07-30|COLLECT COD|MAIL|above the slyly unusual platelets. iro| +82153|94185|19188|3|39|45988.02|0.08|0.03|N|O|1997-09-08|1997-08-23|1997-09-28|NONE|RAIL|eep furiously furiously| +82153|962417|49975|4|25|36984.25|0.01|0.07|N|O|1997-06-08|1997-07-08|1997-06-17|TAKE BACK RETURN|FOB| packages. fluffily pending package| +82153|340523|40524|5|5|7817.55|0.02|0.06|N|O|1997-09-05|1997-07-16|1997-09-23|NONE|TRUCK|sual packages. car| +82153|162228|37235|6|13|16772.86|0.03|0.03|N|O|1997-08-05|1997-07-21|1997-08-09|NONE|AIR|ts detect blithely final ideas. fina| +82154|502123|27144|1|46|51754.60|0.09|0.02|A|F|1992-09-09|1992-11-26|1992-09-21|COLLECT COD|MAIL| bold, ironic deposits. pe| +82154|177659|15169|2|9|15629.85|0.00|0.03|R|F|1992-12-21|1992-10-29|1993-01-12|NONE|MAIL|es cajole furio| +82154|909075|46630|3|13|14092.39|0.03|0.07|A|F|1992-12-25|1992-11-14|1993-01-19|DELIVER IN PERSON|MAIL|. carefully | +82154|813012|13013|4|32|29599.04|0.06|0.04|R|F|1992-11-22|1992-11-29|1992-12-12|NONE|SHIP|ess deposits after the furiously fi| +82154|277268|14784|5|33|41093.25|0.01|0.04|R|F|1992-11-27|1992-11-05|1992-11-28|DELIVER IN PERSON|FOB|efully across the express, final packages. | +82154|34911|34912|6|31|57223.21|0.09|0.04|A|F|1992-10-21|1992-11-23|1992-10-28|COLLECT COD|TRUCK| regular platelets. even waters detec| +82155|822095|9644|1|39|39664.95|0.09|0.00|N|O|1997-07-23|1997-06-27|1997-08-01|COLLECT COD|SHIP|ickly express pinto beans. bli| +82155|944390|44391|2|7|10040.45|0.02|0.00|N|O|1997-06-11|1997-06-04|1997-06-19|COLLECT COD|AIR|tes are slyly express pinto be| +82155|362227|49749|3|3|3867.63|0.08|0.06|N|O|1997-05-21|1997-07-11|1997-06-12|NONE|AIR|use furiously against the r| +82155|933349|45868|4|13|17969.90|0.07|0.04|N|O|1997-07-11|1997-06-16|1997-08-10|DELIVER IN PERSON|SHIP|y. pinto beans | +82156|65226|40229|1|5|5956.10|0.07|0.05|A|F|1992-03-28|1992-05-06|1992-04-08|TAKE BACK RETURN|RAIL|carefully special frets could nag slyly e| +82156|248942|23951|2|21|39709.53|0.00|0.06|A|F|1992-05-17|1992-05-01|1992-05-20|DELIVER IN PERSON|FOB|. pending platelets x| +82157|893748|31300|1|10|17417.00|0.07|0.08|A|F|1994-06-13|1994-06-07|1994-06-25|COLLECT COD|RAIL|es. regular p| +82157|208271|20776|2|48|56604.48|0.09|0.06|A|F|1994-08-10|1994-06-18|1994-08-17|NONE|AIR|yly ironic decoys above | +82157|400518|13027|3|43|60995.07|0.10|0.03|R|F|1994-05-21|1994-07-25|1994-06-07|COLLECT COD|SHIP|atelets br| +82157|500600|13111|4|2|3201.16|0.03|0.07|A|F|1994-05-09|1994-07-14|1994-05-21|COLLECT COD|FOB| excuses. account| +82158|42687|5188|1|39|63557.52|0.04|0.08|N|O|1998-06-18|1998-04-19|1998-06-25|DELIVER IN PERSON|REG AIR|ding packages haggle bra| +82158|428111|28112|2|50|51954.50|0.10|0.00|N|O|1998-03-31|1998-04-17|1998-04-21|COLLECT COD|SHIP|s carefully express packag| +82158|250389|25400|3|25|33484.25|0.08|0.08|N|O|1998-05-18|1998-05-22|1998-05-23|DELIVER IN PERSON|TRUCK|pending platelets sleep. even | +82159|842961|5478|1|20|38078.40|0.06|0.07|N|O|1998-05-23|1998-05-21|1998-06-03|COLLECT COD|TRUCK|furiously pending deposits. carefu| +82159|634363|9388|2|20|25946.60|0.00|0.06|N|O|1998-03-29|1998-05-04|1998-04-03|TAKE BACK RETURN|RAIL|n deposits. carefully regular somas use| +82159|725905|25906|3|21|40548.27|0.07|0.08|N|O|1998-07-06|1998-05-18|1998-07-18|COLLECT COD|SHIP| are slyly final accounts. theodolites| +82184|405875|43400|1|6|10685.10|0.00|0.08|R|F|1994-09-13|1994-09-30|1994-09-18|TAKE BACK RETURN|MAIL|ns might haggle even, sly| +82184|529345|4366|2|15|20614.80|0.00|0.04|A|F|1994-11-03|1994-11-06|1994-11-17|NONE|AIR|y around the blit| +82184|693760|18787|3|44|77164.12|0.03|0.03|A|F|1994-11-20|1994-10-24|1994-11-22|TAKE BACK RETURN|MAIL|its. even accounts boost thinly | +82184|22004|22005|4|30|27780.00|0.06|0.02|A|F|1994-08-22|1994-10-21|1994-09-11|TAKE BACK RETURN|TRUCK|ly. pending, silent warhorses sl| +82184|818590|43623|5|38|57324.90|0.09|0.02|R|F|1994-10-21|1994-10-02|1994-11-04|DELIVER IN PERSON|FOB|ickly pending depo| +82184|28586|16087|6|7|10602.06|0.07|0.06|R|F|1994-08-13|1994-09-26|1994-09-09|COLLECT COD|TRUCK|pending foxes sle| +82185|608215|33240|1|36|40434.48|0.01|0.06|R|F|1992-01-27|1992-04-18|1992-02-22|NONE|MAIL| quickly un| +82185|263343|859|2|16|20901.28|0.01|0.02|A|F|1992-01-26|1992-03-02|1992-02-12|TAKE BACK RETURN|TRUCK|r accounts haggle regular deposits. quic| +82185|2929|2930|3|16|29310.72|0.06|0.05|R|F|1992-03-07|1992-02-28|1992-03-22|COLLECT COD|REG AIR| furiously ironic requests. care| +82185|216210|16211|4|18|20271.60|0.04|0.01|A|F|1992-04-22|1992-02-27|1992-05-14|NONE|REG AIR|st slyly final requests. furio| +82185|827654|40171|5|44|69590.84|0.10|0.01|R|F|1992-04-20|1992-03-09|1992-04-27|NONE|MAIL|bold, regular deposits us| +82185|380283|17805|6|32|43624.64|0.05|0.07|R|F|1992-05-04|1992-03-13|1992-05-24|TAKE BACK RETURN|REG AIR|ronic theodolites are fluffily bold orbits.| +82186|632907|20444|1|25|45996.75|0.02|0.01|A|F|1994-06-15|1994-03-20|1994-07-06|DELIVER IN PERSON|RAIL|f the slyly quiet requests. | +82187|569330|31842|1|22|30784.82|0.03|0.03|A|F|1993-10-25|1993-12-02|1993-11-22|DELIVER IN PERSON|REG AIR|nstructions wake fluffily abou| +82188|537345|12366|1|21|29028.72|0.02|0.03|A|F|1993-05-05|1993-05-11|1993-06-02|DELIVER IN PERSON|RAIL|y silent foxes. final| +82188|145901|45902|2|40|77876.00|0.01|0.06|R|F|1993-03-22|1993-04-10|1993-03-28|COLLECT COD|REG AIR|s haggle quickly regular pinto b| +82189|414068|39085|1|4|3928.16|0.07|0.06|N|O|1996-05-23|1996-05-17|1996-06-08|TAKE BACK RETURN|AIR|lites haggle fina| +82189|227143|14656|2|14|14981.82|0.04|0.02|N|O|1996-05-20|1996-06-11|1996-06-18|TAKE BACK RETURN|REG AIR|uests. fluffily ironic grouch| +82189|587525|25059|3|21|33862.50|0.02|0.02|N|O|1996-07-04|1996-05-13|1996-07-26|NONE|TRUCK|s. express requests wake c| +82189|531551|31552|4|23|36398.19|0.01|0.07|N|O|1996-05-17|1996-06-08|1996-05-31|TAKE BACK RETURN|TRUCK|s boost. pendin| +82189|766262|28778|5|3|3984.69|0.01|0.03|N|O|1996-06-14|1996-06-03|1996-06-15|TAKE BACK RETURN|SHIP| regular requests. | +82189|556064|31087|6|8|8960.32|0.00|0.04|N|O|1996-06-26|1996-06-23|1996-07-09|NONE|TRUCK|lyly express foxes caj| +82189|756741|31772|7|5|8988.55|0.10|0.02|N|O|1996-06-20|1996-06-29|1996-07-17|COLLECT COD|FOB|osits. carefully unusual requests integrate| +82190|537641|25172|1|36|60430.32|0.06|0.04|N|O|1997-08-17|1997-08-31|1997-08-22|TAKE BACK RETURN|RAIL|deas sleep about the ironic foxes. p| +82190|116561|4068|2|17|26818.52|0.00|0.03|N|O|1997-11-13|1997-09-24|1997-11-28|NONE|FOB|ronic, pending ac| +82190|28116|3117|3|13|13573.43|0.04|0.04|N|O|1997-09-05|1997-09-26|1997-09-10|COLLECT COD|REG AIR|usual theodolites nag furiously: boldly| +82191|249584|49585|1|6|9201.42|0.02|0.04|R|F|1993-10-30|1993-08-23|1993-11-16|DELIVER IN PERSON|REG AIR|counts. final excuses| +82191|749526|24555|2|33|51991.17|0.09|0.08|A|F|1993-08-01|1993-08-23|1993-08-13|COLLECT COD|FOB|structions hag| +82191|282911|7922|3|6|11363.40|0.09|0.04|A|F|1993-09-04|1993-09-16|1993-09-09|COLLECT COD|RAIL| even accounts cajole sly| +82191|879542|17094|4|27|41080.50|0.01|0.03|R|F|1993-09-26|1993-10-19|1993-09-27|COLLECT COD|TRUCK|unts. furiously pending | +82191|455211|5212|5|27|31487.13|0.04|0.00|R|F|1993-08-22|1993-10-10|1993-08-25|DELIVER IN PERSON|SHIP| furiously final requests. caref| +82191|724043|11586|6|7|7469.07|0.06|0.02|R|F|1993-08-09|1993-09-02|1993-09-02|TAKE BACK RETURN|REG AIR|furiously idle deposi| +82191|974468|12026|7|43|66324.06|0.02|0.02|R|F|1993-11-03|1993-09-03|1993-12-01|DELIVER IN PERSON|MAIL|s are furiou| +82216|872762|10314|1|42|72858.24|0.06|0.00|N|O|1995-10-15|1995-10-08|1995-10-31|NONE|FOB|ng to the rut| +82216|509825|9826|2|15|27522.00|0.08|0.04|N|O|1995-08-21|1995-09-19|1995-09-07|NONE|REG AIR|e slyly ironic requests haggle | +82216|625807|13344|3|31|53715.87|0.06|0.07|N|O|1995-11-05|1995-11-12|1995-11-18|DELIVER IN PERSON|TRUCK|kages. furiously regular instructi| +82216|924963|37482|4|7|13915.44|0.00|0.06|N|O|1995-10-30|1995-09-15|1995-11-27|COLLECT COD|AIR|h. theodolites use besides t| +82216|842117|4634|5|18|19063.26|0.08|0.08|N|O|1995-10-31|1995-10-30|1995-11-19|TAKE BACK RETURN|TRUCK|y even deposits boost sil| +82216|459282|46810|6|2|2482.52|0.03|0.04|N|O|1995-08-30|1995-10-22|1995-09-19|TAKE BACK RETURN|AIR|ironic deposits integrate alongside of | +82216|141709|16714|7|18|31512.60|0.02|0.04|N|O|1995-09-30|1995-10-15|1995-10-07|NONE|FOB|, ironic instructions dazzle ca| +82217|689224|26764|1|20|24263.80|0.02|0.03|N|O|1998-02-11|1997-12-11|1998-02-12|NONE|REG AIR| accounts. theodolites dazzle after the sly| +82218|922341|34860|1|48|65438.40|0.10|0.05|R|F|1994-11-06|1994-11-26|1994-11-12|DELIVER IN PERSON|TRUCK|t dependencies. blithe| +82218|773350|23351|2|23|32736.36|0.03|0.01|R|F|1994-12-02|1994-12-29|1994-12-21|TAKE BACK RETURN|AIR|lyly about the carefully ironic foxes| +82218|692579|30119|3|14|22001.56|0.08|0.04|A|F|1994-12-01|1994-12-15|1994-12-17|NONE|REG AIR|ong the fluffily stealthy request| +82219|807516|45065|1|29|41280.63|0.10|0.04|R|F|1995-05-11|1995-06-06|1995-05-29|DELIVER IN PERSON|FOB|osits haggle furiously final dolphins. fluf| +82219|911280|48835|2|26|33572.24|0.03|0.07|N|O|1995-07-07|1995-05-22|1995-07-10|COLLECT COD|RAIL|y regular packages. fl| +82219|870713|45748|3|33|55561.11|0.01|0.08|A|F|1995-05-20|1995-04-28|1995-05-25|NONE|MAIL|y unusual requests. care| +82219|73370|23371|4|29|38957.73|0.06|0.03|N|O|1995-06-29|1995-05-27|1995-07-10|NONE|REG AIR|lets nag fur| +82219|123398|23399|5|47|66805.33|0.06|0.04|N|O|1995-06-30|1995-05-25|1995-07-07|DELIVER IN PERSON|FOB| the slyly pending deposits. q| +82220|312470|49989|1|8|11859.68|0.06|0.01|N|O|1996-02-07|1996-02-20|1996-02-26|NONE|TRUCK|ncies. sly pinto beans use blith| +82220|679110|29111|2|48|52275.84|0.06|0.01|N|O|1996-04-09|1996-03-04|1996-04-25|DELIVER IN PERSON|RAIL|gular requests nag furiously about the | +82220|790426|2942|3|46|69753.94|0.06|0.05|N|O|1996-04-01|1996-03-18|1996-04-08|DELIVER IN PERSON|RAIL|ar packages alongside o| +82221|543477|18498|1|25|38011.25|0.07|0.03|N|O|1996-03-24|1996-02-29|1996-04-19|COLLECT COD|TRUCK|sts. special, ironic asymptotes affix fur| +82221|214003|26508|2|31|28426.69|0.02|0.00|N|O|1995-12-16|1996-01-20|1996-01-12|NONE|TRUCK|ake carefully. special fo| +82221|734554|47069|3|2|3177.04|0.10|0.03|N|O|1996-02-02|1996-01-27|1996-02-29|TAKE BACK RETURN|AIR|nto beans are| +82222|866077|41112|1|50|52151.50|0.09|0.04|N|O|1998-06-12|1998-07-08|1998-06-22|NONE|RAIL|osits. ironic pinto beans use at the s| +82222|139856|27363|2|47|89104.95|0.09|0.04|N|O|1998-04-25|1998-06-24|1998-05-06|COLLECT COD|TRUCK|al ideas nag quickly | +82222|558173|20685|3|29|35703.35|0.08|0.06|N|O|1998-08-09|1998-05-17|1998-08-12|DELIVER IN PERSON|AIR|nto beans kindle fluffil| +82222|204394|41907|4|7|9088.66|0.03|0.05|N|O|1998-06-26|1998-06-10|1998-07-21|NONE|SHIP|s integrate by the fluffily pending patte| +82222|248428|48429|5|39|53679.99|0.10|0.07|N|O|1998-07-22|1998-05-18|1998-08-03|COLLECT COD|SHIP|ironic wat| +82223|346550|46551|1|43|68651.22|0.01|0.01|N|O|1997-05-14|1997-02-15|1997-06-01|COLLECT COD|MAIL|ending asymptotes sle| +82223|458495|21005|2|33|47964.51|0.06|0.04|N|O|1997-04-19|1997-03-04|1997-05-06|TAKE BACK RETURN|REG AIR|sly ironic platelets engage deposits| +82223|912812|367|3|23|41969.71|0.00|0.05|N|O|1997-02-16|1997-04-14|1997-02-25|COLLECT COD|MAIL|he slyly final req| +82223|629001|41514|4|25|23249.25|0.10|0.05|N|O|1997-03-31|1997-04-09|1997-04-17|DELIVER IN PERSON|REG AIR|ts sleep slyly. blithely ironic fre| +82223|609387|9388|5|14|18148.90|0.05|0.04|N|O|1997-04-08|1997-03-31|1997-04-17|TAKE BACK RETURN|SHIP|nic foxes are among the furiously bold | +82223|960703|10704|6|43|75837.38|0.01|0.01|N|O|1997-01-27|1997-03-02|1997-02-16|NONE|TRUCK|uffily slyly even requests. f| +82223|518901|31412|7|13|24958.44|0.05|0.00|N|O|1997-03-20|1997-04-10|1997-03-22|COLLECT COD|AIR|ual theodolites doze across| +82248|157478|32485|1|42|64489.74|0.00|0.04|R|F|1993-01-08|1992-11-28|1993-01-21|NONE|SHIP|heodolites. doggedly ironic requests caj| +82248|727779|27780|2|13|23487.62|0.00|0.06|R|F|1992-10-05|1992-12-15|1992-11-03|DELIVER IN PERSON|MAIL|ly carefully special deposit| +82248|766798|29314|3|32|59672.32|0.09|0.02|R|F|1992-09-24|1992-11-30|1992-09-25|COLLECT COD|SHIP|y furiously regular deposits| +82248|566148|41171|4|4|4856.48|0.06|0.01|R|F|1993-01-14|1992-12-18|1993-02-08|COLLECT COD|MAIL| even excuses cajole across the regular | +82248|240727|3232|5|45|75046.95|0.01|0.04|R|F|1992-11-11|1992-11-12|1992-11-25|NONE|FOB|lithely regular account| +82249|711885|36914|1|30|56905.50|0.06|0.01|R|F|1993-12-18|1994-01-20|1994-01-12|DELIVER IN PERSON|FOB| the slyly sp| +82249|647979|47980|2|9|17342.46|0.03|0.03|A|F|1993-12-09|1994-01-02|1994-01-08|NONE|SHIP|tructions haggl| +82249|566469|4003|3|50|76772.00|0.01|0.03|A|F|1993-12-12|1993-12-22|1993-12-28|COLLECT COD|TRUCK|es. blithely ironic grouche| +82249|630122|5147|4|33|34718.97|0.05|0.03|A|F|1994-02-11|1993-12-29|1994-02-20|COLLECT COD|SHIP|y unusual accoun| +82249|449673|12182|5|15|24339.75|0.00|0.05|A|F|1994-02-05|1994-01-19|1994-02-26|TAKE BACK RETURN|AIR|blithely special req| +82249|641957|4470|6|6|11393.52|0.09|0.01|A|F|1993-12-18|1994-01-01|1994-01-10|DELIVER IN PERSON|REG AIR|ts; stealthily final pinto bean| +82250|823005|23006|1|5|4639.80|0.06|0.01|R|F|1993-08-12|1993-08-26|1993-08-25|DELIVER IN PERSON|REG AIR|ly alongside of the ironic, unusual theo| +82250|241358|16367|2|10|12993.40|0.00|0.03|A|F|1993-09-08|1993-08-21|1993-10-06|NONE|SHIP| silent dependencies use blithely bl| +82251|743491|43492|1|25|38361.50|0.08|0.03|N|O|1998-03-29|1998-05-28|1998-03-30|DELIVER IN PERSON|REG AIR|ar gifts wake slyly regu| +82251|850379|12897|2|26|34562.58|0.08|0.06|N|O|1998-05-20|1998-05-09|1998-06-07|DELIVER IN PERSON|MAIL| haggle quickly. final, daring a| +82252|535802|23333|1|11|20215.58|0.06|0.01|A|F|1994-12-23|1994-11-17|1994-12-30|TAKE BACK RETURN|MAIL|ndencies nag slyly furiously express requ| +82253|914175|1730|1|11|13080.43|0.08|0.07|R|F|1994-04-07|1994-05-08|1994-04-26|TAKE BACK RETURN|REG AIR|es haggle furi| +82253|538873|38874|2|7|13382.95|0.04|0.02|A|F|1994-04-23|1994-04-25|1994-05-07|COLLECT COD|REG AIR|g to the packages? regular r| +82253|835872|35873|3|37|66889.71|0.01|0.08|A|F|1994-05-03|1994-05-19|1994-05-13|DELIVER IN PERSON|FOB|en ideas. quickly ironic requ| +82253|485388|35389|4|5|6866.80|0.00|0.04|A|F|1994-04-17|1994-05-25|1994-05-14|TAKE BACK RETURN|SHIP| bold accounts about the furiously exp| +82253|914626|14627|5|17|27889.86|0.00|0.01|A|F|1994-06-06|1994-04-07|1994-06-17|NONE|FOB|lithe instructions? ac| +82253|110236|47743|6|48|59819.04|0.08|0.06|A|F|1994-04-25|1994-04-04|1994-05-20|NONE|FOB|ts. carefully final asymptotes are slyly | +82253|728264|3293|7|42|54273.66|0.00|0.03|R|F|1994-03-15|1994-05-15|1994-03-23|DELIVER IN PERSON|TRUCK|otes integrate. express foxes | +82254|919370|19371|1|2|2778.66|0.02|0.07|R|F|1994-11-26|1994-12-12|1994-12-21|TAKE BACK RETURN|REG AIR| sauternes? courts wake quickl| +82254|849301|49302|2|16|20004.16|0.01|0.01|A|F|1995-01-12|1994-12-24|1995-02-10|TAKE BACK RETURN|MAIL|s about the regular co| +82254|192752|17759|3|32|59032.00|0.02|0.00|A|F|1994-12-04|1995-01-02|1994-12-07|COLLECT COD|FOB|, pending instructions n| +82254|567424|29936|4|6|8948.40|0.06|0.00|R|F|1995-01-26|1994-12-31|1995-02-18|NONE|AIR|inst the fluffily un| +82254|680855|30856|5|50|91791.00|0.07|0.06|R|F|1994-12-06|1995-01-18|1994-12-24|TAKE BACK RETURN|SHIP|bold, unusual theodo| +82255|364736|14737|1|1|1800.72|0.03|0.07|R|F|1994-03-09|1994-04-23|1994-04-04|NONE|FOB| cajole even deposits. final deposi| +82255|110154|47661|2|36|41909.40|0.03|0.05|R|F|1994-05-23|1994-06-02|1994-06-18|COLLECT COD|REG AIR|uffily even requests run slyly. slyly| +82255|345516|33035|3|5|7807.50|0.08|0.03|R|F|1994-03-17|1994-05-19|1994-03-25|COLLECT COD|FOB|e packages serve furiously unu| +82280|409733|9734|1|15|24640.65|0.10|0.07|A|F|1993-09-02|1993-11-14|1993-09-03|TAKE BACK RETURN|REG AIR|ccording to the carefully| +82280|368396|5918|2|31|45395.78|0.00|0.08|A|F|1993-10-03|1993-10-30|1993-10-28|NONE|RAIL|regular multi| +82280|623350|23351|3|30|38199.60|0.04|0.00|R|F|1993-10-18|1993-11-04|1993-11-02|COLLECT COD|AIR| furiously; deposits hang across the| +82280|634346|46859|4|14|17924.34|0.03|0.04|A|F|1993-11-26|1993-09-24|1993-12-08|DELIVER IN PERSON|FOB|ss requests. fluffily pending dependencies| +82280|438685|13702|5|5|8118.30|0.00|0.06|A|F|1993-09-29|1993-10-28|1993-10-26|DELIVER IN PERSON|TRUCK|e slyly final accounts. s| +82280|965470|27990|6|47|72165.21|0.00|0.05|R|F|1993-10-20|1993-10-24|1993-11-09|TAKE BACK RETURN|RAIL|use fluffily? bold, express ti| +82281|716766|29281|1|17|30306.41|0.09|0.02|R|F|1992-10-23|1992-09-12|1992-11-12|NONE|SHIP|the quickly final deposi| +82281|673400|10940|2|25|34334.25|0.01|0.03|R|F|1992-08-17|1992-08-10|1992-09-01|COLLECT COD|MAIL|thely regular pinto beans. carefull| +82282|885844|10879|1|9|16468.20|0.05|0.04|N|O|1996-11-18|1996-12-20|1996-12-13|COLLECT COD|FOB|ainst the furiously ironic packages. ca| +82282|378474|40982|2|18|27944.28|0.10|0.07|N|O|1996-12-06|1996-11-22|1996-12-22|TAKE BACK RETURN|REG AIR|leep until the express, final excuses. i| +82282|10978|10979|3|36|68002.92|0.07|0.05|N|O|1996-10-11|1996-11-21|1996-10-17|NONE|RAIL|counts against the carefully express reques| +82282|501459|38990|4|7|10223.01|0.03|0.05|N|O|1996-12-08|1996-11-16|1996-12-16|TAKE BACK RETURN|AIR|ctions wake quickly express i| +82282|14384|39385|5|10|12983.80|0.00|0.08|N|O|1996-12-01|1996-12-30|1996-12-02|COLLECT COD|TRUCK|ly regular platelets. qu| +82283|864547|27065|1|8|12092.00|0.04|0.02|R|F|1993-10-09|1993-09-07|1993-10-19|COLLECT COD|FOB|ependencies| +82283|428786|41295|2|20|34295.20|0.10|0.06|R|F|1993-11-03|1993-08-24|1993-11-06|COLLECT COD|REG AIR| foxes. fluffi| +82283|589632|14655|3|23|39597.03|0.06|0.02|R|F|1993-10-15|1993-08-19|1993-10-24|NONE|REG AIR| pinto beans. silent, pending accounts are | +82283|933999|9036|4|23|46757.85|0.03|0.00|A|F|1993-09-15|1993-09-26|1993-10-11|NONE|SHIP|quests about the carefully final| +82284|79031|41533|1|5|5050.15|0.05|0.01|N|O|1996-06-21|1996-05-20|1996-06-25|NONE|RAIL|bout the quickly regular| +82285|378555|3570|1|37|60440.98|0.07|0.01|N|O|1997-08-27|1997-09-02|1997-09-02|DELIVER IN PERSON|RAIL|thely among the slyly pending ac| +82285|366255|28763|2|50|66062.00|0.05|0.00|N|O|1997-11-22|1997-09-15|1997-12-19|DELIVER IN PERSON|SHIP|long the ironic idea| +82286|50886|25889|1|30|55106.40|0.07|0.06|N|O|1996-10-22|1996-08-24|1996-10-26|COLLECT COD|TRUCK|ending packages boost carefully according | +82286|234922|34923|2|12|22282.92|0.07|0.07|N|O|1996-09-24|1996-08-17|1996-10-08|DELIVER IN PERSON|REG AIR| wake furiously carefully final foxes. ir| +82286|334005|34006|3|20|20779.80|0.08|0.06|N|O|1996-07-26|1996-08-30|1996-08-14|NONE|RAIL|s cajole pending, pe| +82286|614189|26702|4|41|45229.15|0.00|0.07|N|O|1996-10-03|1996-09-05|1996-10-05|NONE|REG AIR| slowly unusual somas are fur| +82286|673477|48504|5|36|52215.84|0.06|0.06|N|O|1996-08-31|1996-09-14|1996-09-24|TAKE BACK RETURN|SHIP|y ironic instructions. furious| +82286|125763|25764|6|17|30408.92|0.00|0.00|N|O|1996-10-28|1996-09-23|1996-11-25|COLLECT COD|REG AIR|int along the| +82286|686087|23627|7|40|42922.00|0.06|0.04|N|O|1996-11-07|1996-09-29|1996-11-12|DELIVER IN PERSON|FOB|ess packages b| +82287|56846|19348|1|46|82930.64|0.01|0.05|N|O|1996-05-05|1996-03-09|1996-05-30|TAKE BACK RETURN|SHIP|structions use about the furious| +82287|394221|19236|2|15|19728.15|0.06|0.04|N|O|1996-03-31|1996-03-08|1996-04-30|DELIVER IN PERSON|SHIP|fully pending deposits. special requests | +82287|670729|45756|3|50|84984.50|0.08|0.03|N|O|1996-04-11|1996-04-09|1996-04-14|TAKE BACK RETURN|TRUCK|ending ideas integrate aft| +82287|933490|8527|4|41|62461.45|0.02|0.02|N|O|1996-02-01|1996-04-10|1996-02-17|COLLECT COD|TRUCK|xpress warhors| +82312|577480|15014|1|47|73200.62|0.00|0.01|N|O|1996-10-19|1996-09-08|1996-11-15|NONE|TRUCK|yly. accounts boo| +82312|694210|31750|2|17|20471.06|0.05|0.02|N|O|1996-10-15|1996-09-30|1996-11-12|DELIVER IN PERSON|REG AIR|e furiously alongside | +82312|584108|46620|3|20|23841.60|0.03|0.06|N|O|1996-08-28|1996-08-21|1996-09-10|NONE|REG AIR| even theodolites.| +82313|73786|48789|1|43|75670.54|0.02|0.06|N|O|1998-01-29|1997-12-07|1998-02-01|NONE|FOB|carefully unusual deposit| +82313|110632|10633|2|24|39423.12|0.03|0.05|N|O|1997-12-19|1997-12-14|1998-01-14|NONE|AIR|tes. slyly ironic requests sleep for the sl| +82313|387048|49556|3|13|14755.39|0.03|0.03|N|O|1997-12-01|1997-12-11|1997-12-23|COLLECT COD|REG AIR| regular package| +82313|111052|23555|4|15|15945.75|0.02|0.03|N|O|1997-11-09|1997-11-02|1997-11-15|DELIVER IN PERSON|MAIL|thely about the carefully| +82313|435899|35900|5|8|14678.96|0.00|0.02|N|O|1997-11-24|1997-12-06|1997-12-15|COLLECT COD|TRUCK|nstructions agains| +82314|222011|9524|1|6|5598.00|0.00|0.02|N|O|1997-10-30|1998-01-10|1997-11-20|COLLECT COD|RAIL|ar theodolites across the packages are acc| +82315|962173|12174|1|16|19762.08|0.06|0.06|R|F|1993-07-21|1993-08-25|1993-07-28|COLLECT COD|TRUCK|onic, even dependencies cajole within the | +82316|750157|12673|1|41|49491.92|0.06|0.01|A|F|1992-06-12|1992-07-25|1992-06-21|TAKE BACK RETURN|FOB|ronic pinto beans. carefully pe| +82316|877342|27343|2|10|13193.00|0.05|0.01|R|F|1992-09-29|1992-07-23|1992-10-24|COLLECT COD|TRUCK|sentiments wake carefully packages. f| +82316|478747|41257|3|35|60400.20|0.01|0.04|A|F|1992-06-22|1992-08-13|1992-06-23|TAKE BACK RETURN|AIR|eposits nag according to the| +82316|290181|27697|4|47|55044.99|0.00|0.04|R|F|1992-09-22|1992-08-06|1992-09-24|DELIVER IN PERSON|MAIL|ites are carefully slyly e| +82316|69225|6729|5|9|10747.98|0.03|0.05|R|F|1992-09-24|1992-08-10|1992-09-25|DELIVER IN PERSON|RAIL|ctions haggle closely along the fur| +82316|459477|21987|6|2|2872.90|0.03|0.02|R|F|1992-07-09|1992-08-06|1992-07-12|TAKE BACK RETURN|MAIL|regular packages | +82316|419948|7473|7|21|39226.32|0.00|0.08|R|F|1992-08-12|1992-07-20|1992-08-31|TAKE BACK RETURN|SHIP| quickly. carefull| +82317|54081|4082|1|28|28982.24|0.00|0.04|R|F|1992-04-28|1992-06-02|1992-05-06|DELIVER IN PERSON|SHIP|inder carefully. regularly even excuses s| +82318|487150|12169|1|37|42073.81|0.00|0.03|N|O|1997-08-13|1997-09-03|1997-08-14|DELIVER IN PERSON|SHIP|special requests. ironic, express acco| +82318|521366|21367|2|33|45782.22|0.02|0.07|N|O|1997-09-03|1997-09-15|1997-10-01|TAKE BACK RETURN|AIR|al packages.| +82318|591279|41280|3|47|64401.75|0.02|0.01|N|O|1997-07-15|1997-07-26|1997-07-28|DELIVER IN PERSON|TRUCK|rding to the furious| +82318|615045|40070|4|16|15360.16|0.01|0.01|N|O|1997-08-28|1997-08-21|1997-09-26|COLLECT COD|RAIL|tructions are packages. iro| +82318|59980|22482|5|24|46559.52|0.07|0.04|N|O|1997-09-30|1997-09-08|1997-10-20|NONE|MAIL|slyly bold depos| +82319|857198|19716|1|17|19637.55|0.00|0.04|R|F|1994-12-20|1995-01-06|1995-01-08|DELIVER IN PERSON|AIR|y regular requests. regular| +82319|924938|12493|2|32|62812.48|0.05|0.00|R|F|1995-03-23|1995-02-04|1995-03-27|COLLECT COD|REG AIR| special depths | +82319|417670|5195|3|38|60330.70|0.02|0.00|R|F|1994-12-15|1995-02-14|1994-12-21|COLLECT COD|AIR|above the blithely regular courts| +82319|770417|45448|4|45|66932.10|0.04|0.01|R|F|1995-01-30|1995-01-10|1995-02-27|NONE|FOB|eposits about| +82319|398270|23285|5|45|61571.70|0.05|0.00|A|F|1994-12-10|1995-02-24|1994-12-13|COLLECT COD|RAIL|fully even requests. f| +82319|716619|41648|6|47|76872.26|0.06|0.04|A|F|1995-02-23|1995-01-17|1995-02-24|NONE|REG AIR|o the special foxes. p| +82319|208696|46209|7|35|56163.80|0.04|0.08|R|F|1994-12-28|1995-01-16|1995-01-20|NONE|TRUCK|unts use fluffily slyly unusual | +82344|547840|10351|1|28|52858.96|0.10|0.08|N|O|1995-08-30|1995-10-07|1995-09-12|NONE|RAIL|final packages. sile| +82344|544093|19114|2|41|46619.87|0.07|0.06|N|O|1995-10-31|1995-10-12|1995-11-20|TAKE BACK RETURN|AIR|ggle slyly outside the stealthily pending| +82344|562020|37043|3|47|50854.00|0.01|0.07|N|O|1995-09-11|1995-10-18|1995-09-20|TAKE BACK RETURN|RAIL|c warthogs cajole. slyly pending reque| +82344|866499|29017|4|33|48359.85|0.07|0.03|N|O|1995-10-04|1995-09-16|1995-10-19|COLLECT COD|SHIP| use blithely furiously final asymptotes. | +82344|240166|15175|5|5|5530.75|0.10|0.06|N|O|1995-09-26|1995-10-06|1995-09-30|NONE|AIR|r gifts. slyly regular requests sl| +82345|948963|11482|1|33|66393.36|0.01|0.05|R|F|1993-04-04|1993-05-21|1993-04-10|NONE|RAIL|d theodolite| +82345|210591|10592|2|42|63066.36|0.03|0.03|R|F|1993-05-08|1993-05-11|1993-05-14|TAKE BACK RETURN|FOB|accounts integrate blithely accor| +82345|389635|14650|3|5|8623.10|0.10|0.02|R|F|1993-06-11|1993-06-11|1993-06-16|NONE|TRUCK|oost furiously above the quickly e| +82346|815646|40679|1|7|10931.20|0.06|0.02|A|F|1994-08-09|1994-09-12|1994-09-06|DELIVER IN PERSON|TRUCK|s. unusual, | +82346|556517|19029|2|1|1573.49|0.07|0.06|A|F|1994-11-07|1994-10-07|1994-12-02|DELIVER IN PERSON|FOB|e furiously after the| +82346|378889|3904|3|49|96425.63|0.05|0.00|A|F|1994-08-08|1994-10-24|1994-08-16|DELIVER IN PERSON|REG AIR| platelets haggle acc| +82346|978740|28741|4|27|49104.90|0.10|0.06|R|F|1994-08-29|1994-10-10|1994-09-15|NONE|FOB|enly. quickl| +82346|673478|23479|5|13|18868.72|0.03|0.00|A|F|1994-10-15|1994-10-04|1994-11-02|TAKE BACK RETURN|SHIP|egular platelets. slyly re| +82347|258506|21012|1|3|4393.47|0.08|0.08|A|F|1992-04-08|1992-02-21|1992-04-30|TAKE BACK RETURN|FOB| along the quickl| +82347|695420|7934|2|38|53784.82|0.03|0.04|R|F|1992-01-27|1992-04-04|1992-02-11|COLLECT COD|MAIL|iously. regular som| +82347|921289|8844|3|3|3930.72|0.09|0.04|A|F|1992-04-10|1992-03-15|1992-05-10|TAKE BACK RETURN|SHIP|s should slee| +82348|591582|29116|1|26|43512.56|0.03|0.00|N|O|1997-10-10|1997-12-08|1997-10-17|COLLECT COD|TRUCK|riously. fluffily i| +82348|709918|9919|2|18|34701.84|0.08|0.00|N|O|1997-12-05|1997-11-27|1997-12-12|DELIVER IN PERSON|FOB|y final accounts hagg| +82348|581608|31609|3|14|23654.12|0.01|0.06|N|O|1997-12-22|1997-12-03|1998-01-11|COLLECT COD|AIR|sly ironic reques| +82348|69253|31755|4|27|33000.75|0.01|0.02|N|O|1998-01-18|1997-11-13|1998-02-12|NONE|FOB|y bold accounts. | +82348|921874|9429|5|26|49291.58|0.02|0.05|N|O|1997-10-29|1997-12-11|1997-11-08|NONE|FOB|ep furiously slyly final requests. regul| +82348|935547|35548|6|29|45892.50|0.08|0.06|N|O|1998-01-30|1997-12-12|1998-02-27|DELIVER IN PERSON|AIR|s. special, regular excuses do wake furi| +82349|898290|23325|1|49|63124.25|0.03|0.07|N|O|1997-08-08|1997-09-03|1997-08-31|COLLECT COD|RAIL| haggle acros| +82349|554722|42256|2|24|42640.80|0.10|0.05|N|O|1997-08-29|1997-08-23|1997-09-18|NONE|RAIL| packages use slyly a| +82349|206913|6914|3|20|36398.00|0.05|0.06|N|O|1997-08-02|1997-08-03|1997-08-08|DELIVER IN PERSON|RAIL|al requests engage fluf| +82349|575562|585|4|21|34388.34|0.04|0.04|N|O|1997-07-14|1997-08-28|1997-07-20|DELIVER IN PERSON|AIR|o beans. deposi| +82349|459117|9118|5|34|36587.06|0.10|0.05|N|O|1997-10-27|1997-09-05|1997-11-03|NONE|REG AIR|uickly final accounts. care| +82349|373060|35568|6|47|53253.35|0.05|0.02|N|O|1997-08-20|1997-09-15|1997-09-18|COLLECT COD|FOB|sly idle deposits| +82349|12828|37829|7|46|80077.72|0.04|0.06|N|O|1997-10-12|1997-09-22|1997-10-31|NONE|AIR|e express | +82350|591108|41109|1|45|53958.60|0.05|0.03|R|F|1995-02-07|1995-03-23|1995-02-21|COLLECT COD|MAIL|carefully furiously ironic asy| +82350|749373|11888|2|19|27024.46|0.02|0.03|R|F|1995-02-28|1995-03-19|1995-03-25|TAKE BACK RETURN|MAIL|ent foxes detect carefully carefully| +82350|709624|47167|3|34|55542.06|0.06|0.07|R|F|1995-05-14|1995-05-01|1995-05-24|NONE|REG AIR| express ideas among the | +82350|649414|24439|4|18|24540.84|0.01|0.00|A|F|1995-04-10|1995-03-29|1995-04-20|DELIVER IN PERSON|AIR|ent foxes. iron| +82350|692089|4603|5|28|30269.40|0.09|0.01|R|F|1995-05-11|1995-04-20|1995-05-29|COLLECT COD|REG AIR|y regular packages. furio| +82351|749175|36718|1|44|53862.16|0.09|0.03|N|O|1998-06-01|1998-07-02|1998-06-15|TAKE BACK RETURN|TRUCK| frets. excuses again| +82351|381148|31149|2|39|47936.07|0.07|0.07|N|O|1998-07-30|1998-06-02|1998-07-31|NONE|AIR| ironic requests. furiously express do| +82376|776318|26319|1|21|29279.88|0.10|0.07|N|O|1996-10-19|1996-11-08|1996-10-25|NONE|MAIL|ntil the even pinto beans. express pac| +82376|568058|43081|2|18|20268.54|0.06|0.03|N|O|1996-10-01|1996-10-02|1996-10-24|DELIVER IN PERSON|FOB|ts. slyly final warthogs| +82376|336175|11188|3|30|36334.80|0.09|0.00|N|O|1996-11-02|1996-10-23|1996-11-22|COLLECT COD|FOB|pending instructions. ironic patterns | +82376|80296|30297|4|16|20420.64|0.02|0.03|N|O|1996-11-20|1996-09-30|1996-12-03|NONE|REG AIR|le blithely. slyly express a| +82376|528174|40685|5|36|43277.40|0.00|0.03|N|O|1996-12-09|1996-10-27|1997-01-02|DELIVER IN PERSON|FOB|lets integrate bl| +82377|395171|32693|1|8|10129.28|0.00|0.00|N|O|1997-08-09|1997-06-11|1997-08-15|NONE|SHIP| ironic foxes sleep carefully eve| +82377|637407|12432|2|17|22854.29|0.05|0.06|N|O|1997-08-19|1997-06-03|1997-08-23|COLLECT COD|RAIL|instructions sleep quickly| +82378|27329|2330|1|26|32664.32|0.10|0.02|R|F|1992-07-21|1992-07-18|1992-08-09|DELIVER IN PERSON|REG AIR|y regular theodolites. slyly bra| +82378|318233|30740|2|38|47546.36|0.05|0.02|R|F|1992-10-03|1992-07-25|1992-10-18|NONE|FOB|ly unusual grouches. pending dugouts wa| +82378|530179|5200|3|47|56830.05|0.08|0.08|A|F|1992-06-17|1992-07-20|1992-06-25|DELIVER IN PERSON|SHIP|osely unusual accounts | +82378|709489|9490|4|14|20978.30|0.01|0.06|A|F|1992-09-15|1992-08-25|1992-10-12|DELIVER IN PERSON|AIR|ns. furiousl| +82379|122757|35260|1|30|53392.50|0.02|0.04|A|F|1993-10-20|1993-12-21|1993-11-07|NONE|AIR|nal foxes integrate evenly ac| +82379|163704|26208|2|34|60101.80|0.10|0.02|R|F|1993-10-30|1993-12-27|1993-11-24|NONE|TRUCK| furiously at| +82379|361577|36592|3|42|68819.52|0.09|0.02|A|F|1994-01-06|1994-01-17|1994-01-16|DELIVER IN PERSON|SHIP|ts. carefully unusual a| +82379|19297|44298|4|24|29190.96|0.06|0.07|R|F|1993-10-29|1994-01-16|1993-11-17|NONE|SHIP|equests use quickly. even deposit| +82379|315860|40873|5|24|45020.40|0.02|0.02|A|F|1994-01-12|1993-12-26|1994-01-21|NONE|REG AIR| against the blithely spe| +82380|899009|36561|1|16|16127.36|0.06|0.00|A|F|1992-11-14|1992-11-17|1992-11-28|COLLECT COD|SHIP|ans wake blithely among the| +82380|627546|40059|2|47|69254.97|0.00|0.04|A|F|1993-01-30|1993-01-09|1993-02-21|COLLECT COD|REG AIR|ar platelets are. blithely regular depo| +82380|162760|270|3|36|65619.36|0.03|0.01|R|F|1992-12-25|1992-12-11|1993-01-03|NONE|FOB| final requests serve| +82380|500289|37820|4|18|23206.68|0.10|0.03|R|F|1992-11-26|1993-01-02|1992-12-13|COLLECT COD|TRUCK| the blithely bold dolphins| +82381|816322|3871|1|28|34671.84|0.09|0.08|N|O|1995-07-03|1995-06-01|1995-07-13|NONE|TRUCK| are. carefully ironic accou| +82381|920914|33433|2|29|56111.23|0.06|0.02|N|O|1995-06-21|1995-05-05|1995-06-27|COLLECT COD|SHIP|y along the regular instructions. theodoli| +82381|797229|9745|3|18|23871.42|0.04|0.04|R|F|1995-04-07|1995-05-17|1995-04-11|TAKE BACK RETURN|REG AIR|are. doggedly regular requests| +82381|20913|33414|4|9|16505.19|0.04|0.03|N|O|1995-07-05|1995-04-28|1995-07-28|COLLECT COD|RAIL|bold ideas cajole carefully above t| +82381|477290|2309|5|49|62096.23|0.03|0.02|A|F|1995-03-18|1995-04-09|1995-03-21|TAKE BACK RETURN|SHIP|ts. furiously special ideas poach? request| +82381|802090|14607|6|17|16864.85|0.05|0.05|A|F|1995-03-30|1995-06-05|1995-04-14|DELIVER IN PERSON|RAIL|ccounts nag packages. pendi| +82382|99149|36653|1|41|47073.74|0.09|0.02|A|F|1993-09-29|1993-09-15|1993-10-12|NONE|AIR|ccording to the carefully regular foxes| +82382|390520|3028|2|20|32210.20|0.10|0.07|A|F|1993-10-26|1993-10-14|1993-10-31|TAKE BACK RETURN|TRUCK| around the blithely express fo| +82382|456830|31849|3|43|76832.83|0.04|0.07|R|F|1993-10-23|1993-10-25|1993-11-01|DELIVER IN PERSON|SHIP|riously pending pinto beans haggle accordi| +82382|934951|34952|4|8|15887.28|0.08|0.01|R|F|1993-09-25|1993-09-24|1993-10-16|COLLECT COD|REG AIR|efully special packages can boost sl| +82382|713191|734|5|5|6020.80|0.03|0.08|A|F|1993-11-10|1993-10-26|1993-11-22|TAKE BACK RETURN|TRUCK|ress multipliers. th| +82383|543255|5766|1|24|31157.52|0.00|0.01|N|O|1995-10-23|1995-11-14|1995-11-20|NONE|SHIP|eodolites. spe| +82383|479009|29010|2|4|3951.92|0.06|0.00|N|O|1996-01-18|1995-12-16|1996-02-06|DELIVER IN PERSON|TRUCK| even platelets. carefully regular | +82383|692843|42844|3|1|1835.81|0.02|0.05|N|O|1995-12-10|1995-12-30|1995-12-16|COLLECT COD|AIR|e blithely even accounts cajole after| +82383|599643|49644|4|26|45308.12|0.01|0.04|N|O|1995-11-28|1995-11-30|1995-12-23|DELIVER IN PERSON|MAIL|he quickly special | +82383|188635|26145|5|23|39643.49|0.07|0.03|N|O|1996-01-23|1995-12-20|1996-02-08|DELIVER IN PERSON|AIR|s. slyly express deposits wake after the | +82383|382460|19982|6|6|9254.70|0.00|0.07|N|O|1995-11-30|1995-12-11|1995-12-17|DELIVER IN PERSON|TRUCK|ly after the blithely regular fo| +82383|1349|1350|7|30|37510.20|0.05|0.08|N|O|1996-01-09|1995-12-26|1996-01-21|COLLECT COD|RAIL|pendencies haggle amo| +82408|669791|7331|1|43|75712.68|0.09|0.00|A|F|1995-05-05|1995-06-08|1995-05-13|COLLECT COD|SHIP|y across the furio| +82408|173296|23297|2|29|39709.41|0.05|0.01|A|F|1995-04-15|1995-05-17|1995-04-23|COLLECT COD|FOB|s haggle quickly. express courts run al| +82408|575823|846|3|39|74053.20|0.07|0.06|A|F|1995-05-19|1995-05-17|1995-05-24|COLLECT COD|RAIL|s sleep. furiously final deposits boos| +82408|844279|31828|4|21|25687.83|0.01|0.06|N|O|1995-07-07|1995-06-12|1995-07-08|DELIVER IN PERSON|FOB|endencies wake | +82408|784983|47499|5|12|24815.40|0.07|0.01|N|O|1995-07-12|1995-05-29|1995-08-03|COLLECT COD|SHIP|s; carefully | +82408|208486|20991|6|6|8366.82|0.06|0.04|R|F|1995-04-17|1995-06-15|1995-05-07|DELIVER IN PERSON|REG AIR|cies are quickly against t| +82409|429099|41608|1|27|27757.89|0.05|0.02|N|O|1996-01-04|1995-11-20|1996-01-05|NONE|TRUCK|integrate furiously bravely bold pac| +82409|855479|30514|2|27|38729.61|0.06|0.04|N|O|1996-01-16|1995-12-18|1996-01-24|DELIVER IN PERSON|AIR|ously special packages. car| +82409|30147|5148|3|36|38777.04|0.03|0.01|N|O|1995-11-16|1995-11-25|1995-12-09|NONE|RAIL|ckages wake. furiously regular requests| +82409|666139|16140|4|39|43098.90|0.08|0.07|N|O|1995-10-26|1995-11-19|1995-11-21|NONE|MAIL|ular, regular dependencies| +82410|490916|40917|1|3|5720.67|0.01|0.03|A|F|1992-06-13|1992-05-13|1992-06-24|COLLECT COD|AIR|ously permanent| +82410|812713|25230|2|8|13005.36|0.05|0.02|A|F|1992-06-14|1992-04-27|1992-07-12|COLLECT COD|REG AIR| instructions. furiou| +82410|265574|28080|3|34|52345.04|0.06|0.02|R|F|1992-05-15|1992-04-28|1992-05-24|TAKE BACK RETURN|AIR|ccounts. quickly even depths play ev| +82410|496896|21915|4|21|39750.27|0.01|0.03|R|F|1992-04-07|1992-05-26|1992-04-30|TAKE BACK RETURN|RAIL| quickly ironic requests haggle slyly ac| +82410|323236|10755|5|6|7555.32|0.03|0.02|R|F|1992-06-10|1992-03-29|1992-07-09|TAKE BACK RETURN|RAIL|sly unusual packages; slyly regular theo| +82410|623617|48642|6|39|60082.62|0.10|0.00|R|F|1992-03-01|1992-05-09|1992-03-13|TAKE BACK RETURN|FOB|ng requests cajole slyly-- final | +82410|116241|41246|7|34|42746.16|0.09|0.00|A|F|1992-06-07|1992-05-03|1992-06-11|COLLECT COD|REG AIR|ld dugouts eat furiousl| +82411|657670|20184|1|6|9765.84|0.01|0.06|N|O|1996-02-10|1996-01-12|1996-03-02|COLLECT COD|AIR|ecial foxes | +82412|993061|43062|1|2|2308.04|0.06|0.00|N|O|1996-03-31|1996-02-29|1996-04-10|NONE|REG AIR|od carefully carefully even request| +82412|365153|40168|2|21|25580.94|0.07|0.07|N|O|1996-05-15|1996-04-22|1996-05-29|COLLECT COD|RAIL| express instructions cajole.| +82412|124709|49714|3|31|53744.70|0.07|0.00|N|O|1996-03-23|1996-03-17|1996-04-20|TAKE BACK RETURN|MAIL|nag furiously pen| +82412|981971|44491|4|47|96487.71|0.10|0.05|N|O|1996-05-11|1996-04-17|1996-05-18|TAKE BACK RETURN|SHIP|. final, pending pin| +82412|979371|4410|5|18|26105.94|0.07|0.02|N|O|1996-03-19|1996-03-12|1996-04-04|TAKE BACK RETURN|TRUCK|deposits. in| +82412|283225|45731|6|11|13290.31|0.07|0.07|N|O|1996-02-15|1996-04-15|1996-03-12|NONE|TRUCK|ilent packa| +82412|162153|12154|7|39|47390.85|0.09|0.07|N|O|1996-03-15|1996-03-19|1996-04-04|COLLECT COD|RAIL|fter the even deposits. furiously| +82413|305301|42820|1|19|24819.51|0.07|0.04|N|O|1998-05-21|1998-07-04|1998-06-19|NONE|REG AIR|s nag carefully furiously special deposits.| +82413|181996|7003|2|46|95587.54|0.02|0.03|N|O|1998-07-18|1998-06-21|1998-07-27|DELIVER IN PERSON|AIR|equests are ac| +82413|805913|5914|3|29|52747.23|0.00|0.03|N|O|1998-05-29|1998-05-11|1998-06-26|NONE|RAIL|uriously pen| +82413|971602|9160|4|38|63595.28|0.07|0.00|N|O|1998-05-16|1998-05-28|1998-05-25|COLLECT COD|MAIL|kages boos| +82414|612943|37968|1|32|59389.12|0.08|0.04|N|O|1996-11-23|1996-10-13|1996-12-22|NONE|RAIL| special packages. final acc| +82414|731412|6441|2|33|47631.54|0.05|0.02|N|O|1996-10-04|1996-10-29|1996-10-20|NONE|MAIL|ged pinto beans c| +82414|839964|2481|3|16|30462.72|0.04|0.07|N|O|1996-12-13|1996-10-15|1997-01-05|NONE|MAIL|ffily ironic | +82414|274377|36883|4|45|60811.20|0.00|0.08|N|O|1996-11-25|1996-09-20|1996-12-09|NONE|MAIL|, regular accounts. blit| +82414|439740|39741|5|31|52071.32|0.05|0.00|N|O|1996-08-28|1996-09-25|1996-09-26|NONE|REG AIR| regular, regula| +82414|706268|18783|6|1|1274.23|0.05|0.01|N|O|1996-12-06|1996-10-22|1996-12-11|NONE|REG AIR|accounts x-ray carefully above the ironi| +82414|235340|47845|7|43|54839.19|0.00|0.02|N|O|1996-12-13|1996-10-03|1996-12-24|TAKE BACK RETURN|FOB|ly final request| +82415|349907|24920|1|35|68491.15|0.06|0.01|A|F|1992-08-23|1992-05-30|1992-08-31|TAKE BACK RETURN|MAIL|al pinto beans cajole| +82415|875144|25145|2|18|20143.80|0.02|0.04|R|F|1992-04-26|1992-06-02|1992-05-18|DELIVER IN PERSON|FOB|thely among the furiously ir| +82415|530927|5948|3|25|48947.50|0.03|0.02|R|F|1992-06-13|1992-07-06|1992-07-07|DELIVER IN PERSON|REG AIR|s. accounts use slyly. sautern| +82440|872977|35495|1|42|81897.06|0.02|0.01|N|O|1995-07-24|1995-05-30|1995-08-22|NONE|SHIP|s. furiously sly platelets wake against t| +82441|946074|8593|1|17|19040.51|0.07|0.08|N|O|1997-06-16|1997-06-12|1997-07-03|DELIVER IN PERSON|RAIL|bold requests. carefully regular| +82441|661893|36920|2|28|51936.08|0.08|0.07|N|O|1997-04-27|1997-05-31|1997-05-19|NONE|AIR|ole slyly along the quickly| +82442|664408|1948|1|18|24702.66|0.00|0.05|N|O|1998-02-26|1998-04-10|1998-03-10|DELIVER IN PERSON|SHIP| carefully. carefully regular requests sl| +82442|688681|26221|2|9|15026.85|0.02|0.05|N|O|1998-03-22|1998-03-08|1998-04-14|NONE|SHIP|bove the accounts. slyly r| +82442|648979|24004|3|7|13495.58|0.03|0.07|N|O|1998-04-24|1998-03-21|1998-05-16|TAKE BACK RETURN|RAIL|s? stealthy, regular r| +82442|378089|40597|4|20|23341.40|0.03|0.00|N|O|1998-02-06|1998-03-30|1998-03-01|NONE|MAIL|the idle theodolites haggle accordin| +82442|532850|20381|5|29|54602.07|0.02|0.04|N|O|1998-05-06|1998-03-26|1998-05-20|DELIVER IN PERSON|TRUCK| requests. silent asymptotes| +82442|596542|34076|6|37|60625.24|0.09|0.00|N|O|1998-04-15|1998-02-25|1998-05-06|NONE|TRUCK|y along the slyly special excuses: | +82442|65439|27941|7|12|16853.16|0.08|0.01|N|O|1998-01-25|1998-03-13|1998-02-23|COLLECT COD|TRUCK|slyly regular packages. carefully stealt| +82443|816467|28984|1|34|47036.28|0.05|0.02|N|O|1996-04-12|1996-01-30|1996-05-04|TAKE BACK RETURN|AIR|ake. instructions maintain caref| +82443|358218|20726|2|16|20419.20|0.09|0.00|N|O|1995-12-29|1996-03-08|1996-01-04|TAKE BACK RETURN|RAIL|leep blithel| +82444|827620|27621|1|22|34046.76|0.03|0.00|N|O|1997-03-20|1997-01-30|1997-04-03|DELIVER IN PERSON|AIR| around the carefully iron| +82444|798376|10892|2|37|54550.58|0.06|0.07|N|O|1996-11-30|1997-01-24|1996-12-08|NONE|MAIL|iously unusual excuses. carefully| +82444|302129|39648|3|22|24884.42|0.04|0.07|N|O|1997-03-12|1997-02-13|1997-04-10|DELIVER IN PERSON|TRUCK|carefully final depos| +82445|59060|21562|1|6|6114.36|0.04|0.04|A|F|1994-04-20|1994-06-06|1994-05-19|NONE|FOB|about the furiously even dependenc| +82445|608318|45855|2|36|44146.08|0.10|0.06|A|F|1994-07-03|1994-06-04|1994-07-10|NONE|REG AIR|ironic depe| +82445|986452|11491|3|9|13845.69|0.10|0.06|A|F|1994-06-06|1994-05-08|1994-07-01|NONE|REG AIR|ding deposits alongside of the perman| +82445|283131|20647|4|32|35651.84|0.05|0.08|A|F|1994-06-21|1994-05-04|1994-07-12|DELIVER IN PERSON|FOB|fully bold foxes? carefull| +82446|986929|24487|1|14|28222.32|0.02|0.01|N|O|1996-09-16|1996-06-19|1996-09-25|TAKE BACK RETURN|REG AIR|ent packages snooze above the requests| +82446|304925|29938|2|17|32808.47|0.04|0.08|N|O|1996-06-15|1996-06-20|1996-06-18|TAKE BACK RETURN|AIR|haggle quickly fluffily even deposits. | +82446|859894|22412|3|29|53761.65|0.09|0.07|N|O|1996-06-03|1996-06-25|1996-07-03|TAKE BACK RETURN|AIR| unusual sauternes. furiously final | +82447|180176|30177|1|15|18842.55|0.01|0.08|N|O|1997-08-23|1997-08-13|1997-09-13|NONE|MAIL|until the quickly fluffy instruct| +82447|207188|19693|2|15|16427.55|0.09|0.04|N|O|1997-09-01|1997-07-11|1997-09-25|NONE|FOB|lar packages. carefully regular requests a| +82472|583577|8600|1|49|81366.95|0.06|0.02|N|O|1996-11-17|1996-12-12|1996-11-20|TAKE BACK RETURN|AIR|gular foxes use after the fluffily| +82472|171883|21884|2|21|41052.48|0.03|0.00|N|O|1996-11-06|1996-12-04|1996-11-14|NONE|AIR|arefully ironic packages sl| +82472|833663|46180|3|30|47898.60|0.02|0.00|N|O|1996-10-26|1996-11-24|1996-11-09|COLLECT COD|TRUCK|tructions. regular deposits cajole. reques| +82472|363252|774|4|46|60501.04|0.04|0.00|N|O|1997-01-10|1996-12-11|1997-01-17|COLLECT COD|AIR|ut the slyly final accoun| +82473|432903|7920|1|9|16522.92|0.05|0.05|N|O|1996-10-14|1996-10-16|1996-11-13|NONE|FOB|nusual epitaphs alongside | +82473|790240|27786|2|3|3990.63|0.02|0.01|N|O|1996-10-20|1996-09-15|1996-11-13|NONE|TRUCK|le along the fluffily regular pint| +82473|557543|32566|3|9|14404.68|0.05|0.06|N|O|1996-10-04|1996-10-15|1996-10-21|COLLECT COD|FOB|tes? blithe| +82474|876330|38848|1|12|15675.48|0.10|0.02|A|F|1994-11-01|1994-08-14|1994-11-27|DELIVER IN PERSON|AIR| pinto bea| +82474|477924|40434|2|3|5705.70|0.02|0.03|R|F|1994-10-03|1994-08-03|1994-10-30|TAKE BACK RETURN|RAIL|the sometimes ironic depen| +82474|461425|48953|3|2|2772.80|0.04|0.08|R|F|1994-07-19|1994-09-21|1994-07-22|COLLECT COD|SHIP|al pinto beans affix above the | +82474|163692|1202|4|40|70227.60|0.04|0.06|R|F|1994-07-21|1994-08-14|1994-08-18|NONE|AIR|es sleep never. quickly dar| +82474|169056|44063|5|41|46127.05|0.02|0.07|R|F|1994-08-24|1994-08-17|1994-09-21|DELIVER IN PERSON|TRUCK|sts. unusual, final instruc| +82475|310669|35682|1|35|58787.75|0.03|0.00|R|F|1993-03-16|1993-04-20|1993-03-20|COLLECT COD|SHIP|e bold accounts. bl| +82475|398449|35971|2|44|68086.92|0.05|0.03|R|F|1993-06-19|1993-06-11|1993-07-15|NONE|MAIL|lar theodolite| +82475|721984|34499|3|5|10029.75|0.07|0.03|A|F|1993-03-31|1993-05-20|1993-04-01|COLLECT COD|REG AIR|iously regular plate| +82476|288845|38846|1|29|53181.07|0.08|0.00|R|F|1994-02-24|1994-01-06|1994-03-23|DELIVER IN PERSON|SHIP| deposits integrate carefu| +82476|608015|8016|2|40|36919.20|0.00|0.08|R|F|1993-11-18|1994-01-02|1993-11-23|DELIVER IN PERSON|TRUCK|g slyly. slyly ironic accounts nag furious| +82476|899773|37325|3|11|19500.03|0.04|0.06|R|F|1994-02-05|1993-12-30|1994-03-05|NONE|REG AIR|ully idle requests. bold foxes sleep furio| +82476|481567|6586|4|12|18582.48|0.04|0.03|R|F|1993-11-30|1994-02-01|1993-12-03|NONE|REG AIR|tithes cajole. carefully final a| +82477|434408|34409|1|21|28189.98|0.00|0.06|N|O|1996-05-19|1996-06-29|1996-06-11|COLLECT COD|SHIP|lly final theodolites across the| +82477|80018|30019|2|47|46906.47|0.08|0.02|N|O|1996-05-21|1996-06-21|1996-06-15|NONE|AIR|uests cajole. regular packages will | +82477|846948|34497|3|24|45477.60|0.07|0.01|N|O|1996-06-11|1996-05-21|1996-06-28|TAKE BACK RETURN|RAIL|slyly. furiously regul| +82478|732158|32159|1|28|33323.36|0.00|0.02|R|F|1994-09-04|1994-07-31|1994-09-13|NONE|REG AIR|ravely bold deposits use carefu| +82479|72882|35384|1|26|48226.88|0.01|0.02|N|O|1996-09-06|1996-11-17|1996-09-20|NONE|REG AIR|outs solve bl| +82479|920158|20159|2|5|5890.55|0.03|0.05|N|O|1996-11-24|1996-11-19|1996-12-05|TAKE BACK RETURN|SHIP| the unusual deposits haggle among th| +82479|90219|27723|3|21|25393.41|0.10|0.01|N|O|1996-11-01|1996-11-24|1996-11-07|COLLECT COD|MAIL|yly. ironic, regular foxes about | +82479|295017|32533|4|30|30360.00|0.03|0.06|N|O|1996-11-20|1996-10-22|1996-11-28|TAKE BACK RETURN|TRUCK| blithely at | +82479|342094|17107|5|13|14769.04|0.02|0.07|N|O|1996-11-14|1996-10-17|1996-11-15|COLLECT COD|TRUCK|excuses haggle.| +82479|568147|43170|6|48|58325.76|0.04|0.06|N|O|1996-12-08|1996-10-04|1996-12-24|COLLECT COD|AIR|posits. carefully express accounts nag a| +82504|679839|42353|1|15|27282.00|0.03|0.07|A|F|1994-09-11|1994-12-06|1994-09-28|DELIVER IN PERSON|SHIP|ns nag fur| +82505|742827|5342|1|6|11218.74|0.04|0.02|R|F|1994-02-18|1994-02-16|1994-02-23|COLLECT COD|TRUCK|fully regular p| +82505|681775|44289|2|26|45675.24|0.00|0.06|R|F|1993-12-21|1994-01-18|1994-01-13|NONE|RAIL|ts. deposits wake quickly across| +82505|580260|30261|3|24|32165.76|0.09|0.03|R|F|1994-03-16|1994-03-12|1994-04-12|TAKE BACK RETURN|TRUCK|ly. boldly silen| +82505|420241|45258|4|47|54577.34|0.08|0.03|R|F|1994-04-03|1994-01-26|1994-04-26|TAKE BACK RETURN|REG AIR|he accounts.| +82506|610323|47860|1|1|1233.29|0.10|0.02|A|F|1993-07-15|1993-09-19|1993-07-18|COLLECT COD|RAIL| permanently. ironic in| +82506|682877|32878|2|41|76253.44|0.05|0.08|A|F|1993-09-13|1993-09-02|1993-10-01|NONE|FOB|ly even deposits. fluffily unusu| +82506|98444|23447|3|3|4327.32|0.10|0.03|A|F|1993-09-25|1993-09-20|1993-09-29|TAKE BACK RETURN|AIR|nic theodo| +82506|532287|44798|4|2|2638.52|0.03|0.03|R|F|1993-08-21|1993-09-09|1993-08-24|TAKE BACK RETURN|FOB| slyly ironic ideas. ins| +82506|135596|35597|5|17|27737.03|0.00|0.07|R|F|1993-09-29|1993-08-22|1993-10-02|COLLECT COD|TRUCK|ly even pl| +82507|852991|40543|1|32|62206.40|0.08|0.07|A|F|1992-10-02|1992-08-27|1992-10-23|NONE|REG AIR|packages. dolphins hagg| +82507|219506|44515|2|1|1425.49|0.09|0.07|A|F|1992-09-02|1992-08-25|1992-10-01|NONE|RAIL|inal ideas integrate slyly| +82508|394492|44493|1|13|20624.24|0.09|0.00|N|O|1996-01-29|1995-11-04|1996-02-22|NONE|TRUCK|xpress theod| +82508|223672|11185|2|50|79783.00|0.05|0.00|N|O|1995-10-26|1995-11-10|1995-11-19|DELIVER IN PERSON|REG AIR|uses detect carefully after | +82508|252516|40032|3|8|11748.00|0.08|0.06|N|O|1996-01-25|1995-12-11|1996-01-29|TAKE BACK RETURN|AIR|gular theodolites. slyly fluffy id| +82509|617425|17426|1|44|59065.16|0.00|0.06|A|F|1994-09-08|1994-09-14|1994-09-28|COLLECT COD|FOB|s. regular, express packages| +82509|59958|34961|2|47|90143.65|0.08|0.07|R|F|1994-09-17|1994-08-03|1994-10-06|NONE|SHIP|es hang carefully.| +82509|710095|35124|3|2|2210.12|0.09|0.06|R|F|1994-09-02|1994-08-02|1994-09-19|TAKE BACK RETURN|AIR|ticing, regular packages. deposits | +82509|565528|15529|4|18|28683.00|0.04|0.06|A|F|1994-10-01|1994-09-15|1994-10-15|COLLECT COD|AIR|boost fluffily. busily special ideas aft| +82509|824049|36566|5|10|9730.00|0.05|0.00|R|F|1994-10-11|1994-08-28|1994-11-01|TAKE BACK RETURN|FOB| ironic, reg| +82509|785041|35042|6|22|24772.22|0.05|0.03|A|F|1994-07-04|1994-09-19|1994-07-18|TAKE BACK RETURN|RAIL|o beans; express| +82510|228499|3508|1|48|68519.04|0.02|0.05|N|O|1997-04-27|1997-06-25|1997-05-14|COLLECT COD|FOB| quickly furiously express accounts.| +82510|372466|9988|2|6|9230.70|0.04|0.06|N|O|1997-07-10|1997-05-24|1997-07-27|TAKE BACK RETURN|MAIL|s play carefully even pack| +82510|20323|32824|3|34|42272.88|0.02|0.06|N|O|1997-05-14|1997-05-05|1997-06-06|TAKE BACK RETURN|RAIL| about the even grouches poach furiou| +82510|563190|13191|4|18|22557.06|0.05|0.02|N|O|1997-04-09|1997-05-01|1997-04-22|DELIVER IN PERSON|SHIP|sly quickly ironic accounts. fluf| +82510|519733|7264|5|42|73613.82|0.09|0.01|N|O|1997-05-18|1997-06-17|1997-06-12|COLLECT COD|SHIP|ccounts again| +82511|295924|33440|1|29|55677.39|0.04|0.03|N|O|1996-06-22|1996-08-05|1996-07-10|COLLECT COD|TRUCK|rbits wake against the slyly s| +82511|593794|43795|2|14|26428.78|0.09|0.03|N|O|1996-09-11|1996-07-03|1996-09-22|COLLECT COD|SHIP|yly. regular d| +82511|885094|10129|3|22|23739.10|0.09|0.04|N|O|1996-07-09|1996-06-24|1996-07-13|COLLECT COD|AIR|ly after the furiously exp| +82511|759910|22426|4|25|49247.00|0.02|0.01|N|O|1996-07-22|1996-08-21|1996-08-03|TAKE BACK RETURN|REG AIR|ular theodolites haggle| +82511|793626|18657|5|14|24074.26|0.05|0.02|N|O|1996-09-14|1996-07-21|1996-10-08|COLLECT COD|RAIL| express courts nag silently pending accou| +82511|462010|12011|6|35|34019.65|0.02|0.03|N|O|1996-05-26|1996-08-11|1996-06-25|TAKE BACK RETURN|REG AIR|deas haggle furiously express,| +82536|673194|10734|1|31|36181.96|0.03|0.08|R|F|1994-02-20|1994-04-27|1994-03-19|COLLECT COD|SHIP|even pinto beans. furious| +82536|354863|4864|2|11|21096.35|0.08|0.00|R|F|1994-06-19|1994-03-30|1994-06-28|COLLECT COD|TRUCK| furiously furio| +82536|171200|33704|3|45|57204.00|0.10|0.03|A|F|1994-05-22|1994-05-10|1994-06-18|NONE|SHIP|ng the quickly express depos| +82536|341673|41674|4|39|66871.74|0.06|0.04|R|F|1994-06-19|1994-04-04|1994-07-13|TAKE BACK RETURN|TRUCK|lyly even ac| +82537|97208|34712|1|8|9641.60|0.09|0.07|A|F|1994-10-13|1994-10-10|1994-10-21|COLLECT COD|TRUCK|es. regularly special request| +82537|770393|32909|2|3|4390.08|0.00|0.05|R|F|1994-08-26|1994-10-21|1994-09-04|TAKE BACK RETURN|FOB|wake unusual accounts. unu| +82538|664899|2439|1|36|67098.96|0.09|0.06|A|F|1995-04-02|1995-02-25|1995-04-09|TAKE BACK RETURN|FOB|es use. ironic deposits nag. regular pi| +82538|952990|40548|2|7|14300.65|0.04|0.04|A|F|1995-02-01|1995-03-13|1995-02-27|COLLECT COD|FOB|ly pending, bold ideas. iron| +82538|897133|22168|3|9|10170.81|0.00|0.02|R|F|1995-04-14|1995-03-08|1995-05-11|NONE|SHIP|fully. slyly ev| +82538|107298|44805|4|11|14358.19|0.06|0.00|A|F|1995-05-03|1995-04-13|1995-05-12|COLLECT COD|MAIL|egular foxes. requests sleep according to | +82538|350205|37727|5|4|5020.76|0.10|0.04|R|F|1995-03-21|1995-03-09|1995-03-23|NONE|SHIP|eas use slyly final foxes. car| +82538|890258|15293|6|50|62410.50|0.01|0.00|R|F|1995-03-20|1995-03-30|1995-04-03|TAKE BACK RETURN|FOB|und the ironic accounts. carefu| +82539|908271|8272|1|44|56286.12|0.01|0.08|A|F|1992-10-31|1992-12-17|1992-11-25|NONE|RAIL| the carefully regu| +82539|308048|45567|2|3|3168.09|0.10|0.02|R|F|1992-11-08|1992-11-24|1992-11-23|NONE|FOB|ic platelets. accounts wake! ironi| +82539|353106|3107|3|41|47522.69|0.01|0.08|R|F|1992-12-11|1992-12-04|1993-01-03|NONE|MAIL|he furiously fluffy p| +82539|647881|22906|4|12|21946.20|0.04|0.03|A|F|1992-12-11|1993-01-03|1992-12-25|TAKE BACK RETURN|SHIP|ess warthogs use slyly fluffily express | +82540|489736|2246|1|47|81108.37|0.04|0.01|R|F|1995-02-02|1995-02-27|1995-02-17|NONE|RAIL| furiously. carefully unusual pi| +82540|986133|36134|2|23|28039.07|0.04|0.06|R|F|1995-02-20|1995-03-25|1995-03-13|DELIVER IN PERSON|TRUCK|ajole: final requests| +82540|929182|29183|3|47|56923.58|0.09|0.03|A|F|1995-02-23|1995-02-18|1995-02-25|TAKE BACK RETURN|MAIL|deposits about the furiously express pea| +82540|756153|31184|4|28|33855.36|0.07|0.05|A|F|1995-01-26|1995-03-23|1995-02-06|COLLECT COD|TRUCK|after the | +82540|650784|38324|5|35|60716.25|0.06|0.05|R|F|1995-02-14|1995-02-13|1995-03-06|COLLECT COD|FOB|ly pending deposits sleep quickly. | +82541|296190|8696|1|33|39143.94|0.04|0.04|A|F|1994-08-18|1994-06-14|1994-08-31|TAKE BACK RETURN|MAIL|o the carefully express pin| +82541|61344|23846|2|12|15664.08|0.06|0.03|A|F|1994-05-08|1994-06-10|1994-06-06|NONE|SHIP|ending gifts.| +82541|995313|45314|3|37|52105.99|0.03|0.08|R|F|1994-08-26|1994-06-24|1994-09-20|COLLECT COD|FOB|s dolphins. requests was blithely a| +82541|212794|25299|4|31|52910.18|0.08|0.07|A|F|1994-05-25|1994-07-12|1994-06-14|TAKE BACK RETURN|MAIL|ets. furiously ironi| +82541|424382|49399|5|38|49641.68|0.05|0.08|R|F|1994-06-15|1994-07-23|1994-07-03|DELIVER IN PERSON|AIR|oost alongside of the bold, expr| +82541|582443|32444|6|23|35084.66|0.04|0.03|A|F|1994-06-20|1994-07-30|1994-06-22|TAKE BACK RETURN|RAIL| accounts! carefully even requests cajo| +82541|114792|39797|7|18|32522.22|0.04|0.04|R|F|1994-07-22|1994-07-11|1994-07-30|TAKE BACK RETURN|REG AIR|e unusual, bold ideas | +82542|292601|5107|1|5|7967.95|0.07|0.06|N|O|1997-11-05|1998-01-13|1997-11-07|TAKE BACK RETURN|RAIL| above the fluffily e| +82543|998777|11297|1|44|82532.12|0.07|0.03|N|F|1995-06-01|1995-04-25|1995-06-24|TAKE BACK RETURN|RAIL|y silent pinto beans ca| +82543|435910|48419|2|42|77527.38|0.08|0.03|A|F|1995-05-24|1995-05-27|1995-06-05|TAKE BACK RETURN|REG AIR|al ideas wake along the slyly ironic accoun| +82543|331681|6694|3|3|5138.01|0.04|0.00|N|F|1995-05-28|1995-06-03|1995-06-19|TAKE BACK RETURN|MAIL|ely packages| +82543|547325|47326|4|22|30190.60|0.01|0.02|N|O|1995-07-04|1995-04-19|1995-07-21|NONE|TRUCK|r requests engage slyl| +82543|891016|3534|5|27|27188.19|0.03|0.08|A|F|1995-05-01|1995-05-08|1995-05-08|COLLECT COD|SHIP|riously frets.| +82543|305778|18285|6|11|19621.36|0.06|0.05|A|F|1995-05-27|1995-06-10|1995-05-29|DELIVER IN PERSON|TRUCK|s. pending, final deposits boost carefully | +82543|198515|23522|7|11|17748.61|0.07|0.00|R|F|1995-05-08|1995-05-16|1995-05-29|TAKE BACK RETURN|REG AIR|osits according to the quickly u| +82568|436157|48666|1|15|16396.95|0.05|0.04|A|F|1992-10-30|1992-10-06|1992-11-03|NONE|FOB|zzle slyly. ideas doubt. | +82569|431277|43786|1|23|27789.75|0.03|0.02|N|O|1998-08-29|1998-06-29|1998-09-15|NONE|RAIL|the asymptotes wake quickly against | +82569|468917|31427|2|39|73549.71|0.00|0.07|N|O|1998-06-28|1998-07-20|1998-07-28|COLLECT COD|REG AIR|uctions are fluffil| +82569|83705|33706|3|40|67548.00|0.09|0.08|N|O|1998-09-03|1998-07-05|1998-09-07|NONE|FOB|r, regular deposits. th| +82569|818512|6061|4|49|70093.03|0.00|0.03|N|O|1998-09-01|1998-08-02|1998-09-15|DELIVER IN PERSON|SHIP|sts. regular theodolites hinder| +82569|715501|28016|5|35|53076.45|0.07|0.01|N|O|1998-09-12|1998-06-19|1998-10-02|COLLECT COD|REG AIR| ironic foxes.| +82569|424432|24433|6|14|18989.74|0.00|0.08|N|O|1998-09-08|1998-08-12|1998-10-01|NONE|AIR| carefully even accounts was. quic| +82569|414073|1598|7|26|25663.30|0.10|0.00|N|O|1998-07-03|1998-07-20|1998-07-19|NONE|TRUCK|y silent theodolites| +82570|320160|32667|1|4|4720.60|0.09|0.00|N|O|1996-05-09|1996-06-18|1996-05-12|COLLECT COD|AIR|nding requests grow. pending req| +82571|423721|23722|1|40|65788.00|0.05|0.06|R|F|1992-03-24|1992-05-01|1992-04-11|COLLECT COD|RAIL| boost blithely. fluffily | +82571|465900|28410|2|27|50378.76|0.03|0.06|R|F|1992-04-09|1992-04-07|1992-04-17|DELIVER IN PERSON|FOB|ly final deposits wake. bold deposits alo| +82571|366664|16665|3|21|36343.65|0.06|0.03|R|F|1992-03-22|1992-04-02|1992-03-24|DELIVER IN PERSON|SHIP|al packages. deposits was along the pl| +82571|515377|40398|4|1|1392.35|0.04|0.03|A|F|1992-02-22|1992-04-22|1992-03-07|DELIVER IN PERSON|MAIL| haggle fluffily after the ruthle| +82571|925003|25004|5|16|16447.36|0.02|0.00|A|F|1992-03-15|1992-04-14|1992-04-01|NONE|RAIL|odolites sle| +82571|523481|23482|6|13|19557.98|0.06|0.05|A|F|1992-04-18|1992-04-26|1992-05-17|TAKE BACK RETURN|SHIP|c accounts wake c| +82572|141059|41060|1|3|3300.15|0.01|0.07|R|F|1993-09-19|1993-11-13|1993-09-28|NONE|TRUCK|even deposits maintain blithe| +82572|769709|44740|2|11|19565.37|0.04|0.05|R|F|1993-09-04|1993-11-11|1993-09-08|NONE|REG AIR|arefully even exc| +82572|489972|2482|3|47|92211.65|0.03|0.02|A|F|1993-12-11|1993-10-09|1993-12-18|DELIVER IN PERSON|AIR|riously final de| +82572|948154|10673|4|7|8414.77|0.00|0.03|A|F|1993-09-10|1993-10-15|1993-09-11|TAKE BACK RETURN|AIR|kages haggle f| +82573|803512|41061|1|19|26893.93|0.08|0.07|R|F|1995-01-17|1994-11-04|1995-01-21|COLLECT COD|SHIP|al theodolites haggle even i| +82573|613207|13208|2|13|14562.21|0.00|0.02|A|F|1994-11-10|1994-12-09|1994-12-10|NONE|TRUCK|hely. blith| +82573|162703|213|3|31|54736.70|0.04|0.00|A|F|1994-12-01|1994-12-19|1994-12-31|NONE|MAIL|r courts alongside of the carefully ironic| +82573|535611|23142|4|50|82329.50|0.09|0.08|R|F|1994-12-30|1994-12-14|1995-01-29|TAKE BACK RETURN|RAIL|lithely final | +82573|7803|7804|5|41|70142.80|0.02|0.01|A|F|1994-10-06|1994-11-01|1994-10-18|NONE|RAIL| packages. fi| +82574|926639|26640|1|21|34977.39|0.02|0.00|A|F|1993-06-27|1993-05-10|1993-07-12|NONE|FOB|e carefully ironic requests. fluffily| +82574|11607|36608|2|50|75930.00|0.06|0.06|A|F|1993-05-16|1993-05-14|1993-05-28|DELIVER IN PERSON|REG AIR|gular requests according to the| +82575|837128|37129|1|3|3195.24|0.00|0.04|N|O|1995-07-07|1995-07-19|1995-07-18|NONE|MAIL|e accounts. slowly final| +82575|601958|1959|2|6|11159.52|0.02|0.00|N|O|1995-08-24|1995-07-15|1995-08-27|NONE|REG AIR|t the dependencies. special theodolites are| +82575|98486|48487|3|44|65317.12|0.07|0.04|N|O|1995-07-18|1995-08-25|1995-08-06|COLLECT COD|FOB|l deposits | +82575|253815|28826|4|40|70752.00|0.04|0.05|N|O|1995-07-11|1995-07-27|1995-08-05|COLLECT COD|REG AIR|ng requests. ideas integrate final| +82575|867360|17361|5|27|35837.64|0.08|0.01|N|O|1995-08-19|1995-09-05|1995-09-04|NONE|MAIL|-ray quickly accounts. speci| +82575|718416|18417|6|49|70284.62|0.08|0.04|N|O|1995-09-01|1995-09-03|1995-09-27|TAKE BACK RETURN|FOB| furiously. blithely regular| +82600|730143|5172|1|39|45751.29|0.08|0.00|N|O|1995-12-31|1996-03-04|1996-01-10|DELIVER IN PERSON|AIR|timents boost fluffily regular instr| +82600|504812|42343|2|12|21801.48|0.08|0.07|N|O|1996-03-15|1996-02-01|1996-03-21|NONE|SHIP|ic requests sl| +82600|371631|34139|3|27|45970.74|0.06|0.02|N|O|1995-12-28|1996-02-19|1996-01-10|TAKE BACK RETURN|REG AIR|al packages wak| +82600|995117|7637|4|39|47270.73|0.10|0.01|N|O|1996-03-20|1996-02-10|1996-04-16|TAKE BACK RETURN|REG AIR|ts. blithely careful id| +82601|428666|16191|1|9|14351.76|0.08|0.02|R|F|1992-07-03|1992-07-19|1992-07-16|NONE|RAIL|ajole slyly even accounts. blithely f| +82601|580861|30862|2|40|77673.60|0.06|0.03|A|F|1992-08-14|1992-08-17|1992-09-08|DELIVER IN PERSON|SHIP|re carefully. carefully final | +82601|524530|49551|3|49|76170.99|0.00|0.07|A|F|1992-06-06|1992-07-07|1992-06-15|DELIVER IN PERSON|REG AIR| final acco| +82602|473100|35610|1|19|20388.52|0.02|0.07|N|O|1998-06-15|1998-08-13|1998-06-21|NONE|MAIL|to beans. bol| +82602|379520|29521|2|23|36788.73|0.08|0.02|N|O|1998-06-29|1998-07-29|1998-07-06|COLLECT COD|REG AIR|ng requests around the ca| +82602|577053|2076|3|18|20340.54|0.02|0.08|N|O|1998-05-28|1998-06-16|1998-06-06|COLLECT COD|MAIL|ial pinto beans. | +82602|515426|2957|4|10|14414.00|0.00|0.00|N|O|1998-08-30|1998-08-08|1998-09-12|NONE|SHIP|pecial instruct| +82602|758707|46253|5|31|54735.77|0.07|0.08|N|O|1998-07-24|1998-06-23|1998-08-07|NONE|RAIL| regular foxes: even p| +82602|586363|48875|6|7|10145.38|0.09|0.00|N|O|1998-08-29|1998-06-15|1998-09-08|DELIVER IN PERSON|SHIP|are slyly alongside of the furiously even | +82602|996064|33622|7|23|26680.46|0.05|0.05|N|O|1998-08-23|1998-06-23|1998-08-26|NONE|REG AIR| deposits. ironic, ex| +82603|846362|46363|1|18|23549.76|0.08|0.04|A|F|1992-06-01|1992-07-18|1992-06-08|TAKE BACK RETURN|MAIL|kages until the furiously iro| +82603|799674|37220|2|11|19510.04|0.00|0.04|R|F|1992-07-18|1992-07-11|1992-08-16|DELIVER IN PERSON|SHIP|. accounts sleep around the| +82603|117295|29798|3|49|64302.21|0.03|0.08|R|F|1992-06-14|1992-07-07|1992-07-14|DELIVER IN PERSON|REG AIR|ever furio| +82603|375896|911|4|10|19718.80|0.00|0.04|R|F|1992-07-28|1992-07-11|1992-08-22|NONE|FOB|. regular deposits wake furiously across th| +82603|683016|33017|5|48|47951.04|0.06|0.07|A|F|1992-07-30|1992-05-30|1992-08-27|DELIVER IN PERSON|FOB| ironic packages. fluffily pending id| +82603|444093|31618|6|8|8296.56|0.00|0.00|A|F|1992-08-18|1992-07-20|1992-08-19|COLLECT COD|AIR|aggle furio| +82604|362316|24824|1|6|8269.80|0.10|0.03|N|O|1998-05-26|1998-06-30|1998-06-24|NONE|REG AIR|s! final Tiresias haggle af| +82604|442242|29767|2|50|59211.00|0.07|0.01|N|O|1998-06-05|1998-07-22|1998-06-13|DELIVER IN PERSON|RAIL|kages about the expres| +82604|746197|8712|3|4|4972.64|0.01|0.03|N|O|1998-07-02|1998-07-06|1998-07-30|DELIVER IN PERSON|SHIP|, final platelets nod furiously among the s| +82604|329685|4698|4|48|82304.16|0.02|0.03|N|O|1998-07-06|1998-07-19|1998-08-01|COLLECT COD|REG AIR|gainst the ironic, even pinto beans affix| +82604|8477|20978|5|36|49876.92|0.03|0.08|N|O|1998-08-20|1998-08-11|1998-09-12|NONE|FOB|iously regular pinto beans s| +82605|975925|964|1|22|44019.36|0.02|0.06|R|F|1995-02-14|1995-03-07|1995-03-04|DELIVER IN PERSON|FOB|oxes unwind final| +82605|363804|13805|2|31|57901.49|0.03|0.05|A|F|1995-05-10|1995-03-06|1995-05-19|TAKE BACK RETURN|REG AIR|re furiously| +82605|447186|34711|3|38|43060.08|0.10|0.03|A|F|1995-02-25|1995-03-14|1995-03-11|TAKE BACK RETURN|TRUCK| carefully r| +82605|849341|24374|4|44|56773.20|0.09|0.04|A|F|1995-01-31|1995-03-15|1995-02-06|DELIVER IN PERSON|FOB|ironic Tiresias. c| +82605|865491|3043|5|42|61170.90|0.02|0.08|A|F|1995-05-16|1995-03-06|1995-06-14|COLLECT COD|MAIL|. furiously pending escapade| +82605|292617|30133|6|29|46678.40|0.10|0.03|R|F|1995-03-08|1995-04-02|1995-03-12|NONE|MAIL|ts. fluffily regular sauternes hang c| +82605|3140|40641|7|50|52157.00|0.05|0.06|A|F|1995-04-18|1995-04-16|1995-04-20|COLLECT COD|AIR|olites wake agains| +82606|765139|15140|1|42|50572.20|0.08|0.02|R|F|1993-03-17|1993-01-30|1993-04-11|DELIVER IN PERSON|FOB|slyly quickly pending packages. carefully | +82606|689990|27530|2|11|21779.56|0.07|0.07|A|F|1993-01-04|1993-01-31|1993-01-24|DELIVER IN PERSON|REG AIR|sly pending theodolit| +82606|658474|20988|3|10|14324.40|0.07|0.05|A|F|1993-02-04|1993-02-14|1993-02-28|DELIVER IN PERSON|RAIL| blithely above the carefully special requ| +82606|971274|46313|4|22|29595.06|0.07|0.03|R|F|1993-02-25|1993-02-11|1993-03-23|NONE|SHIP|even requests. furi| +82606|198849|11353|5|31|60383.04|0.06|0.04|A|F|1993-02-02|1993-02-11|1993-02-19|NONE|REG AIR|es cajole carefully against t| +82607|876320|38838|1|22|28518.16|0.09|0.01|A|F|1992-10-02|1992-11-09|1992-10-08|COLLECT COD|RAIL|kly blithely regular dolph| +82607|309962|47481|2|9|17747.55|0.02|0.03|A|F|1992-11-06|1992-11-20|1992-11-13|DELIVER IN PERSON|AIR|busily regular| +82632|686160|23700|1|26|29799.38|0.08|0.04|N|O|1995-08-02|1995-10-03|1995-08-11|COLLECT COD|RAIL|unusual packages sleep finally. furi| +82632|282760|45266|2|15|26141.25|0.10|0.04|N|O|1995-07-28|1995-08-20|1995-08-05|TAKE BACK RETURN|SHIP|sleep blit| +82632|341818|4325|3|38|70672.40|0.09|0.08|N|O|1995-07-30|1995-08-05|1995-08-09|NONE|REG AIR|uses can affix around the b| +82632|932792|45311|4|30|54742.50|0.05|0.03|N|O|1995-08-01|1995-08-22|1995-08-27|TAKE BACK RETURN|RAIL|symptotes sleep across the bold theodolite| +82632|431505|6522|5|1|1436.48|0.03|0.00|N|O|1995-10-08|1995-09-21|1995-11-04|NONE|REG AIR|ronic attainment| +82632|293241|5747|6|36|44432.28|0.06|0.03|N|O|1995-09-11|1995-08-08|1995-09-28|TAKE BACK RETURN|SHIP|lets. furiously express accounts haggl| +82633|336781|24300|1|2|3635.54|0.08|0.06|N|O|1998-10-11|1998-07-27|1998-10-14|COLLECT COD|RAIL|into beans boost platelets. fina| +82634|767910|17911|1|43|85048.84|0.03|0.08|A|F|1994-02-22|1994-05-05|1994-03-08|TAKE BACK RETURN|FOB|ecial foxes haggle car| +82634|250838|25849|2|44|78708.08|0.07|0.05|R|F|1994-05-16|1994-03-28|1994-06-14|DELIVER IN PERSON|SHIP|ing ideas after the| +82634|819216|19217|3|25|28379.25|0.02|0.06|R|F|1994-05-23|1994-04-28|1994-06-19|TAKE BACK RETURN|AIR|r the even | +82634|555421|30444|4|39|57579.60|0.01|0.08|R|F|1994-02-21|1994-03-28|1994-03-07|COLLECT COD|REG AIR| carefully even gif| +82634|947242|47243|5|5|6446.00|0.09|0.02|A|F|1994-02-26|1994-03-10|1994-03-19|NONE|AIR|ular asymptot| +82634|280018|17534|6|38|37924.00|0.04|0.02|A|F|1994-04-19|1994-05-01|1994-04-26|NONE|MAIL| blithely afte| +82635|977308|14866|1|21|29090.46|0.05|0.08|A|F|1993-12-03|1994-01-15|1993-12-11|DELIVER IN PERSON|SHIP|p quickly alongside of the regular | +82635|612903|12904|2|3|5447.61|0.08|0.05|A|F|1994-02-03|1994-01-21|1994-02-21|NONE|SHIP|lyly ironic d| +82635|47560|47561|3|34|51257.04|0.08|0.00|A|F|1994-02-24|1994-02-02|1994-02-26|DELIVER IN PERSON|TRUCK|uriously regular pinto beans. qui| +82635|331112|18631|4|30|34293.00|0.00|0.01|R|F|1994-01-06|1994-02-11|1994-01-19|NONE|MAIL|unts above the ideas b| +82635|992534|17573|5|28|45541.72|0.00|0.07|A|F|1993-12-29|1994-01-04|1994-01-12|COLLECT COD|MAIL|uctions! unusual, unusual| +82635|508513|33534|6|36|54773.64|0.09|0.02|R|F|1994-01-18|1994-02-14|1994-02-04|COLLECT COD|FOB|about the fluffily ironic asymptotes s| +82635|570597|33109|7|8|13340.56|0.05|0.06|R|F|1993-12-04|1994-02-14|1993-12-16|NONE|REG AIR|se slyly special theodolites. un| +82636|19557|19558|1|27|39866.85|0.04|0.08|R|F|1994-10-31|1995-01-15|1994-11-20|NONE|TRUCK|ng accounts-- quickly bold requests wake pe| +82636|685431|35432|2|12|16996.80|0.05|0.00|R|F|1994-11-11|1994-12-18|1994-12-09|TAKE BACK RETURN|TRUCK|e express instructions. blithely even a| +82637|168147|43154|1|3|3645.42|0.03|0.07|N|O|1998-05-18|1998-05-26|1998-05-26|COLLECT COD|SHIP|lithely ironic grouches | +82637|31104|43605|2|19|19666.90|0.10|0.05|N|O|1998-04-23|1998-04-16|1998-05-01|TAKE BACK RETURN|AIR|fily special deposits | +82637|749977|49978|3|10|20269.40|0.06|0.01|N|O|1998-06-13|1998-05-29|1998-06-16|TAKE BACK RETURN|SHIP|. stealthily bold deposits among the slyl| +82637|860856|35891|4|44|79939.64|0.08|0.06|N|O|1998-06-03|1998-05-15|1998-06-17|DELIVER IN PERSON|REG AIR|even foxes wake blithely. p| +82637|395214|20229|5|41|53677.20|0.02|0.04|N|O|1998-05-19|1998-06-02|1998-05-31|TAKE BACK RETURN|FOB|ts. furiously final epitaphs amo| +82637|353269|28284|6|49|64790.25|0.08|0.02|N|O|1998-04-09|1998-04-18|1998-04-19|DELIVER IN PERSON|REG AIR|nag against the finally| +82637|383478|21000|7|10|15614.60|0.06|0.08|N|O|1998-06-15|1998-05-29|1998-07-12|NONE|REG AIR|carefully regular accou| +82638|114230|1737|1|8|9953.84|0.06|0.07|N|O|1998-04-09|1998-05-07|1998-05-01|TAKE BACK RETURN|AIR|wake fluffily furiously even forges. qu| +82638|856598|31633|2|10|15545.50|0.10|0.00|N|O|1998-06-16|1998-06-02|1998-06-17|TAKE BACK RETURN|TRUCK|ts. regular, pending requests haggl| +82638|835832|10865|3|5|8838.95|0.10|0.01|N|O|1998-04-24|1998-05-10|1998-05-18|DELIVER IN PERSON|TRUCK|quickly bl| +82639|199294|49295|1|40|55731.60|0.10|0.05|R|F|1994-12-21|1995-01-14|1995-01-08|TAKE BACK RETURN|RAIL|regular, regular excuses after the p| +82639|533320|8341|2|41|55485.30|0.01|0.02|R|F|1995-01-23|1994-12-28|1995-02-10|COLLECT COD|MAIL| quickly bold in| +82639|496878|34406|3|39|73119.15|0.00|0.03|R|F|1994-11-08|1994-11-24|1994-11-12|NONE|FOB| the furiously bold deposits. car| +82664|711160|23675|1|13|15224.69|0.09|0.04|A|F|1994-06-14|1994-06-15|1994-07-06|COLLECT COD|TRUCK|ly to the regular, even ideas. bl| +82664|453556|16066|2|16|24152.48|0.06|0.08|A|F|1994-07-08|1994-06-18|1994-08-01|NONE|REG AIR| sublate abov| +82664|908007|20526|3|6|6089.76|0.04|0.05|R|F|1994-06-02|1994-05-31|1994-06-19|NONE|FOB|oost carefully among the al| +82664|865503|3055|4|29|42585.34|0.04|0.03|R|F|1994-04-10|1994-05-26|1994-04-18|NONE|TRUCK|accounts. ironic pinto beans use quickl| +82664|506120|18631|5|30|33783.00|0.01|0.05|A|F|1994-04-19|1994-06-04|1994-05-10|NONE|SHIP| are blithely carefu| +82664|354001|29016|6|32|33759.68|0.05|0.06|R|F|1994-04-17|1994-06-19|1994-04-27|NONE|RAIL|impress qui| +82664|678329|3356|7|24|31374.96|0.02|0.04|R|F|1994-05-19|1994-05-26|1994-06-04|DELIVER IN PERSON|SHIP|inal packages haggle carefully. qui| +82665|665589|40616|1|10|15545.50|0.05|0.07|R|F|1993-01-27|1993-04-03|1993-02-10|NONE|REG AIR|poach quic| +82665|548711|23732|2|22|38713.18|0.09|0.04|A|F|1993-02-27|1993-03-31|1993-03-01|TAKE BACK RETURN|RAIL|nic pinto beans sleep f| +82665|177877|2884|3|44|86014.28|0.09|0.04|R|F|1993-04-30|1993-02-27|1993-05-25|TAKE BACK RETURN|AIR|old gifts affix across the quickly regular| +82665|575979|1002|4|38|78088.10|0.09|0.07|A|F|1993-02-05|1993-03-31|1993-02-07|NONE|TRUCK|requests cajol| +82666|246636|9141|1|19|30069.78|0.01|0.06|R|F|1992-07-29|1992-09-12|1992-08-26|COLLECT COD|SHIP|ong the fluffily ironic deposits: ironic f| +82666|207584|32593|2|7|10440.99|0.07|0.06|R|F|1992-10-18|1992-10-18|1992-11-13|COLLECT COD|AIR|instructions boost furi| +82666|852515|2516|3|41|60166.27|0.00|0.00|A|F|1992-08-04|1992-09-09|1992-08-11|COLLECT COD|REG AIR| are across the quickly even asymptotes. fi| +82667|289280|14291|1|31|39347.37|0.07|0.00|R|F|1992-06-24|1992-08-20|1992-07-13|COLLECT COD|TRUCK|pending, regular theodoli| +82667|920771|20772|2|21|37626.33|0.07|0.02|R|F|1992-06-26|1992-08-09|1992-07-24|DELIVER IN PERSON|REG AIR|iously unusual theodolites haggle | +82667|389032|1540|3|18|20178.36|0.08|0.03|R|F|1992-07-14|1992-08-15|1992-07-15|COLLECT COD|RAIL|ly furiously pending ideas. careful| +82667|448888|36413|4|33|60616.38|0.06|0.00|A|F|1992-07-18|1992-08-19|1992-08-03|TAKE BACK RETURN|AIR|se alongside of the ev| +82667|452834|40362|5|18|32162.58|0.06|0.05|A|F|1992-07-03|1992-08-02|1992-07-25|DELIVER IN PERSON|SHIP|y bold packages:| +82668|700638|639|1|12|19663.20|0.02|0.04|N|O|1997-12-08|1998-02-07|1997-12-11|NONE|REG AIR| platelets? carefully regular acc| +82668|620977|8514|2|6|11387.64|0.07|0.06|N|O|1997-12-09|1998-01-15|1998-01-02|DELIVER IN PERSON|MAIL|r packages sleep around the carefully | +82668|746856|21885|3|17|32347.94|0.02|0.07|N|O|1998-01-20|1998-01-27|1998-02-14|COLLECT COD|MAIL|the blithely ironic hockey players. quic| +82668|392986|5494|4|11|22868.67|0.09|0.05|N|O|1998-02-11|1997-12-22|1998-02-25|TAKE BACK RETURN|MAIL| ironic depos| +82668|905031|42586|5|1|1035.99|0.07|0.04|N|O|1997-12-03|1998-02-06|1997-12-18|COLLECT COD|RAIL|he quickly ironic instructions. | +82668|851748|1749|6|2|3399.40|0.09|0.01|N|O|1997-12-13|1998-01-13|1997-12-21|COLLECT COD|TRUCK| the quickly reg| +82669|13360|38361|1|24|30560.64|0.07|0.02|R|F|1993-11-11|1993-10-14|1993-11-25|COLLECT COD|REG AIR|ly slyly express instructions. quickly regu| +82669|536883|24414|2|32|61435.52|0.00|0.02|R|F|1993-08-07|1993-10-22|1993-08-19|TAKE BACK RETURN|MAIL|r, pending deposits cajole slyly. quickl| +82669|387355|12370|3|18|25962.12|0.07|0.07|A|F|1993-11-20|1993-10-18|1993-11-28|DELIVER IN PERSON|REG AIR|slyly. blithely regular sheaves ar| +82669|261053|36064|4|11|11154.44|0.00|0.02|A|F|1993-11-07|1993-10-17|1993-11-25|NONE|MAIL|yly bold accounts haggle quickly. furious| +82669|509706|47237|5|19|32597.92|0.05|0.01|R|F|1993-10-11|1993-08-31|1993-10-27|TAKE BACK RETURN|SHIP|the blithely pending foxes serve careful| +82669|627469|39982|6|8|11171.44|0.02|0.06|R|F|1993-10-16|1993-09-16|1993-10-17|NONE|FOB|above the final ideas haggle quick| +82669|855365|5366|7|27|35648.64|0.08|0.02|A|F|1993-10-30|1993-09-12|1993-11-22|DELIVER IN PERSON|SHIP|y according to the special asympt| +82670|112780|12781|1|35|62747.30|0.00|0.08|N|O|1995-09-17|1995-08-12|1995-10-17|COLLECT COD|FOB|ilently re| +82670|486497|24025|2|19|28185.93|0.05|0.05|N|O|1995-07-26|1995-09-10|1995-07-27|DELIVER IN PERSON|MAIL|tegrate across | +82670|551911|14423|3|44|86367.16|0.10|0.08|N|O|1995-07-12|1995-09-14|1995-08-07|COLLECT COD|FOB| accounts cajole among the qui| +82670|964342|39381|4|31|43595.30|0.09|0.03|N|O|1995-09-07|1995-07-24|1995-10-07|NONE|TRUCK|closely final pinto beans. req| +82670|684246|34247|5|33|40596.93|0.06|0.05|N|O|1995-08-17|1995-07-27|1995-09-11|COLLECT COD|SHIP|ular ideas: ruth| +82670|117776|5283|6|15|26906.55|0.02|0.07|N|O|1995-08-05|1995-08-20|1995-09-02|COLLECT COD|TRUCK|ounts alongside of the unusual ex| +82670|446276|33801|7|36|44001.00|0.00|0.04|N|O|1995-10-07|1995-08-22|1995-10-10|NONE|AIR| pending sauternes | +82671|556318|6319|1|28|38480.12|0.09|0.01|A|F|1993-02-13|1993-03-21|1993-02-26|NONE|RAIL|n instructions. furio| +82671|29023|4024|2|30|28560.60|0.09|0.04|R|F|1993-01-15|1993-02-18|1993-02-10|NONE|MAIL| ideas. blithely r| +82671|780046|5077|3|45|50670.45|0.09|0.04|R|F|1993-03-11|1993-03-27|1993-04-02|DELIVER IN PERSON|RAIL| are finally | +82671|216657|29162|4|34|53503.76|0.07|0.02|A|F|1993-02-16|1993-03-15|1993-02-25|DELIVER IN PERSON|SHIP|ages-- foxes maintai| +82671|338081|25600|5|47|52596.29|0.05|0.01|R|F|1993-03-13|1993-02-05|1993-04-05|COLLECT COD|RAIL|ndencies wake among the final packages.| +82696|517654|42675|1|44|73551.72|0.06|0.04|N|O|1997-09-30|1997-12-22|1997-10-05|TAKE BACK RETURN|FOB|ar accounts nag slyly about the f| +82696|208581|46094|2|42|62561.94|0.00|0.07|N|O|1998-01-19|1997-12-27|1998-02-14|NONE|FOB|ake fluffily after the | +82697|51454|26457|1|10|14054.50|0.06|0.06|N|O|1995-08-19|1995-09-26|1995-09-12|DELIVER IN PERSON|FOB|cross the express i| +82697|772191|47222|2|32|40421.12|0.00|0.04|N|O|1995-11-05|1995-09-25|1995-11-07|TAKE BACK RETURN|SHIP| pinto beans. quickly ironic asymptotes int| +82697|203401|3402|3|6|7826.34|0.02|0.03|N|O|1995-08-08|1995-10-21|1995-08-26|DELIVER IN PERSON|AIR|pon the carefully| +82697|549054|36585|4|14|15442.42|0.01|0.06|N|O|1995-10-09|1995-10-31|1995-11-05|COLLECT COD|REG AIR|ess accounts sleep fluffily carefully regu| +82697|934790|9827|5|11|20072.25|0.08|0.03|N|O|1995-08-24|1995-11-01|1995-09-23|NONE|AIR|y even instructions grow pending,| +82697|10644|23145|6|30|46639.20|0.06|0.00|N|O|1995-08-31|1995-10-27|1995-09-23|TAKE BACK RETURN|RAIL|ss the slyl| +82698|955477|43035|1|10|15324.30|0.07|0.02|R|F|1994-04-11|1994-04-03|1994-05-05|COLLECT COD|REG AIR| final requests. depth| +82698|690250|15277|2|19|23564.18|0.08|0.08|R|F|1994-03-23|1994-05-21|1994-03-29|NONE|FOB|ly final package| +82699|393373|5881|1|18|26394.48|0.10|0.06|A|F|1993-06-09|1993-04-30|1993-06-18|COLLECT COD|FOB|furiously ironic o| +82699|416907|4432|2|47|85722.36|0.05|0.01|R|F|1993-05-25|1993-04-30|1993-06-24|TAKE BACK RETURN|REG AIR|e silent, un| +82699|947608|10127|3|2|3311.12|0.01|0.04|A|F|1993-05-06|1993-04-24|1993-05-31|NONE|FOB|r instructions haggle across the caref| +82699|439261|39262|4|19|22804.56|0.07|0.00|R|F|1993-06-27|1993-05-19|1993-07-23|TAKE BACK RETURN|SHIP|gular foxes according to the fluffy instr| +82699|645076|45077|5|7|7147.28|0.02|0.04|A|F|1993-04-28|1993-05-20|1993-05-25|NONE|AIR|even instructions. blithel| +82699|787401|49917|6|33|49116.21|0.00|0.01|R|F|1993-06-15|1993-05-21|1993-06-24|DELIVER IN PERSON|RAIL|ily final deposits haggle quick| +82700|404662|4663|1|12|18799.68|0.07|0.08|R|F|1994-12-22|1994-11-21|1995-01-13|TAKE BACK RETURN|REG AIR| after the regularly final pack| +82700|145324|45325|2|16|21909.12|0.00|0.04|R|F|1994-12-08|1995-01-12|1995-01-02|DELIVER IN PERSON|SHIP|ges hinder blithely carefully final pinto | +82700|446870|46871|3|30|54505.50|0.09|0.05|R|F|1994-11-16|1995-01-08|1994-12-04|TAKE BACK RETURN|AIR|ag slyly. silent, express| +82700|536582|24113|4|5|8092.80|0.06|0.01|A|F|1995-02-03|1994-12-27|1995-02-20|NONE|FOB|ven asympto| +82700|331841|19360|5|32|59930.56|0.10|0.08|A|F|1995-01-09|1994-12-25|1995-01-16|TAKE BACK RETURN|TRUCK| closely regular pin| +82701|446901|9410|1|46|85002.48|0.06|0.01|R|F|1994-02-03|1994-01-09|1994-02-23|NONE|RAIL|inal deposits. slyly silent acc| +82701|63454|38457|2|31|43940.95|0.00|0.00|R|F|1994-02-25|1993-12-22|1994-03-15|DELIVER IN PERSON|AIR| regular requests hinder fluffily bli| +82701|455739|30758|3|47|79651.37|0.03|0.04|R|F|1994-02-15|1993-12-18|1994-02-19|COLLECT COD|AIR|use furiously above the f| +82701|593252|18275|4|13|17487.99|0.00|0.05|R|F|1993-12-07|1993-12-12|1993-12-10|NONE|RAIL|packages. fluffily silent requests against| +82702|499302|36830|1|48|62461.44|0.00|0.05|N|O|1996-05-07|1996-06-07|1996-05-31|TAKE BACK RETURN|AIR|al deposits sleep slyly. furiously| +82702|765992|28508|2|10|20579.60|0.10|0.07|N|O|1996-07-13|1996-06-21|1996-08-12|NONE|MAIL|inal ideas across the f| +82702|12309|37310|3|41|50073.30|0.00|0.00|N|O|1996-06-21|1996-05-09|1996-07-14|TAKE BACK RETURN|TRUCK|ckly express dependencies haggle daringl| +82702|863079|25597|4|8|8336.24|0.06|0.01|N|O|1996-04-11|1996-05-03|1996-05-05|COLLECT COD|REG AIR|refully pending ideas. bl| +82702|755734|18250|5|26|46532.20|0.01|0.07|N|O|1996-04-30|1996-05-21|1996-05-09|DELIVER IN PERSON|RAIL|n foxes wake. blithely pending asym| +82702|609470|47007|6|22|30347.68|0.05|0.01|N|O|1996-07-18|1996-05-10|1996-08-08|DELIVER IN PERSON|AIR|ests wake slyly abo| +82703|406789|19298|1|7|11870.32|0.05|0.06|R|F|1993-08-31|1993-09-06|1993-09-19|DELIVER IN PERSON|FOB|lar accounts. asymptot| +82703|900350|25387|2|49|66165.19|0.06|0.02|R|F|1993-09-25|1993-08-16|1993-10-25|NONE|RAIL|posits. deposits ca| +82703|172749|35253|3|16|29147.84|0.06|0.05|A|F|1993-10-24|1993-08-29|1993-11-23|DELIVER IN PERSON|MAIL| packages cajole carefull| +82703|386006|23528|4|38|41495.62|0.00|0.04|A|F|1993-09-02|1993-09-17|1993-09-07|COLLECT COD|REG AIR| instructions. carefully unusual acc| +82703|594988|7500|5|31|64571.76|0.00|0.00|R|F|1993-11-15|1993-08-24|1993-12-11|NONE|RAIL| platelets cajole b| +82703|948398|35953|6|13|18802.55|0.02|0.00|A|F|1993-08-20|1993-09-11|1993-09-15|TAKE BACK RETURN|FOB|tside the even, ironic id| +82703|719780|7323|7|21|37794.75|0.09|0.00|R|F|1993-08-27|1993-08-28|1993-09-23|NONE|MAIL|sits. express foxes alongside of the acc| +82728|328550|3563|1|21|33149.34|0.05|0.06|R|F|1994-10-13|1994-10-20|1994-11-02|DELIVER IN PERSON|MAIL|ns must have to wake alo| +82728|925002|12557|2|13|13350.48|0.02|0.00|A|F|1994-10-14|1994-11-05|1994-11-10|TAKE BACK RETURN|RAIL| beans cajole blithely final, ironic accoun| +82728|502585|2586|3|19|30163.64|0.09|0.04|R|F|1994-11-23|1994-09-17|1994-12-18|COLLECT COD|MAIL|ackages. fluffily final deposits are| +82728|933223|8260|4|47|59040.46|0.09|0.02|A|F|1994-12-02|1994-09-12|1994-12-17|COLLECT COD|TRUCK|arefully express requests beside the| +82728|674849|12389|5|16|29180.96|0.00|0.03|R|F|1994-10-30|1994-10-26|1994-11-06|DELIVER IN PERSON|SHIP| the quickly bold packages wake slyl| +82728|173857|23858|6|41|79164.85|0.00|0.06|R|F|1994-09-13|1994-10-05|1994-09-27|DELIVER IN PERSON|FOB| final grouches doze careful| +82728|1448|1449|7|5|6747.20|0.10|0.07|A|F|1994-11-09|1994-09-29|1994-11-16|TAKE BACK RETURN|REG AIR|le packages. iron| +82729|327127|14646|1|26|30006.86|0.00|0.08|N|O|1998-02-18|1998-04-16|1998-03-07|NONE|REG AIR|the fluffily fi| +82729|9926|34927|2|8|14687.36|0.06|0.03|N|O|1998-02-18|1998-04-16|1998-03-03|TAKE BACK RETURN|REG AIR|iously unusual asympto| +82729|825667|13216|3|27|43000.74|0.08|0.07|N|O|1998-02-16|1998-05-01|1998-02-22|TAKE BACK RETURN|MAIL|inal instructions after the blithely expre| +82729|972165|47204|4|19|23505.28|0.08|0.00|N|O|1998-02-18|1998-03-16|1998-03-17|COLLECT COD|MAIL|pending requests. blithely expre| +82729|173480|48487|5|50|77674.00|0.03|0.00|N|O|1998-05-19|1998-05-06|1998-05-26|COLLECT COD|TRUCK|the final, ironic| +82729|662660|37687|6|18|29207.34|0.07|0.02|N|O|1998-03-18|1998-04-07|1998-04-03|TAKE BACK RETURN|SHIP|nusual dependencies use caref| +82729|320989|46002|7|10|20099.70|0.05|0.04|N|O|1998-02-11|1998-04-08|1998-02-26|NONE|REG AIR|e furiously| +82730|858137|20655|1|48|52564.32|0.09|0.02|N|O|1996-04-28|1996-05-11|1996-05-21|TAKE BACK RETURN|REG AIR|lly about the slyly ironic requests.| +82730|700268|37811|2|6|7609.38|0.06|0.07|N|O|1996-05-23|1996-06-16|1996-05-31|TAKE BACK RETURN|FOB|g multipliers. carefully express pinto | +82730|401870|39395|3|2|3543.70|0.10|0.00|N|O|1996-05-15|1996-05-24|1996-05-26|NONE|REG AIR|beans around the express | +82730|216574|29079|4|38|56641.28|0.01|0.06|N|O|1996-08-04|1996-06-06|1996-08-16|COLLECT COD|TRUCK|ending, iron| +82730|957783|20303|5|20|36814.80|0.07|0.00|N|O|1996-07-29|1996-06-17|1996-08-05|TAKE BACK RETURN|REG AIR|inal requests. bold, final accounts s| +82730|457450|44978|6|1|1407.43|0.06|0.06|N|O|1996-04-11|1996-06-13|1996-04-26|TAKE BACK RETURN|SHIP|s! final, even foxes wake slyly. iro| +82731|687138|12165|1|4|4500.40|0.01|0.02|R|F|1995-02-14|1995-03-20|1995-03-07|NONE|FOB|s haggle f| +82732|707557|7558|1|32|50064.64|0.10|0.08|N|O|1995-09-08|1995-12-02|1995-09-21|COLLECT COD|SHIP|et dependencies solve quickly slyly| +82733|264866|2382|1|6|10985.10|0.04|0.02|A|F|1993-03-23|1993-03-15|1993-03-27|DELIVER IN PERSON|RAIL| even packages. quick, final req| +82733|589005|14028|2|47|51417.06|0.00|0.04|A|F|1993-03-12|1993-02-06|1993-04-06|TAKE BACK RETURN|REG AIR|o beans detect throughout the carefully un| +82733|394736|19751|3|7|12815.04|0.03|0.07|A|F|1992-12-17|1993-02-16|1992-12-18|TAKE BACK RETURN|MAIL|accounts nag blithely about the speci| +82734|169729|32233|1|25|44968.00|0.10|0.03|R|F|1993-01-12|1992-12-09|1993-01-23|COLLECT COD|RAIL|fully ironic packages| +82734|623048|48073|2|13|12623.13|0.10|0.01|A|F|1992-12-23|1993-01-11|1992-12-28|NONE|RAIL|y ironic foxes. special accounts are brave| +82734|559650|47184|3|34|58127.42|0.10|0.06|A|F|1992-11-11|1992-12-12|1992-11-15|DELIVER IN PERSON|RAIL|eans are quickly unusual depo| +82734|21475|46476|4|35|48876.45|0.04|0.00|A|F|1992-12-29|1992-12-28|1993-01-26|COLLECT COD|SHIP|ffily along the spec| +82734|918505|31024|5|14|21328.44|0.03|0.06|A|F|1993-02-08|1992-12-28|1993-02-18|COLLECT COD|REG AIR| theodolites affix da| +82734|308212|20719|6|33|40266.60|0.00|0.07|A|F|1992-12-27|1992-11-29|1993-01-26|COLLECT COD|RAIL|furiously | +82735|347393|34912|1|45|64817.10|0.03|0.07|A|F|1992-08-29|1992-09-04|1992-09-17|COLLECT COD|FOB| are furiously express accounts. thin, ev| +82735|623096|10633|2|29|29552.74|0.03|0.07|A|F|1992-07-26|1992-08-24|1992-08-13|DELIVER IN PERSON|TRUCK|are carefully final, final id| +82735|367910|17911|3|26|51425.40|0.06|0.03|R|F|1992-07-30|1992-07-30|1992-08-23|COLLECT COD|FOB|kly pending requests. | +82735|455007|17517|4|31|29821.38|0.08|0.05|A|F|1992-08-03|1992-07-11|1992-08-24|NONE|TRUCK|s. unusual patterns sleep f| +82735|302550|27563|5|23|35708.42|0.02|0.05|R|F|1992-07-28|1992-08-18|1992-08-08|NONE|AIR|arefully close foxes| +82735|941936|41937|6|38|75159.82|0.09|0.08|R|F|1992-08-30|1992-08-15|1992-09-14|TAKE BACK RETURN|TRUCK|thely. final packages w| +82760|138402|38403|1|48|69139.20|0.05|0.03|N|O|1997-07-19|1997-06-27|1997-07-27|DELIVER IN PERSON|RAIL|nto beans s| +82760|108791|21294|2|10|17997.90|0.06|0.07|N|O|1997-07-28|1997-08-09|1997-08-01|COLLECT COD|RAIL|ites. express reques| +82760|442680|5189|3|6|9735.96|0.02|0.02|N|O|1997-07-28|1997-07-27|1997-08-16|COLLECT COD|REG AIR|quickly. even, ironic orbits| +82761|253556|3557|1|12|18114.48|0.10|0.06|N|O|1995-12-29|1996-01-09|1996-01-08|NONE|FOB|en packages detect | +82761|508934|46465|2|3|5828.73|0.08|0.08|N|O|1996-01-25|1995-12-06|1996-02-06|NONE|FOB|lyly regular accounts. ironic platelet| +82761|639577|27114|3|12|18198.48|0.01|0.07|N|O|1996-02-06|1996-01-19|1996-03-05|TAKE BACK RETURN|AIR|aggle fluffily. ca| +82761|369790|44805|4|19|35335.82|0.02|0.02|N|O|1996-02-02|1996-01-21|1996-02-10|TAKE BACK RETURN|AIR|counts wake s| +82761|58176|33179|5|1|1134.17|0.01|0.08|N|O|1996-02-10|1995-12-29|1996-02-27|DELIVER IN PERSON|SHIP|ld ideas. idly even accounts sle| +82761|757970|7971|6|10|20279.40|0.10|0.04|N|O|1996-02-13|1995-12-21|1996-02-16|NONE|SHIP|ar accounts. furio| +82762|318794|31301|1|41|74323.98|0.04|0.05|A|F|1994-08-16|1994-07-29|1994-09-09|NONE|FOB|y bold deposits. escapades believe. reg| +82762|955460|5461|2|39|59101.38|0.10|0.06|R|F|1994-07-01|1994-08-14|1994-07-07|COLLECT COD|AIR|tes kindle furiously with the slyly unu| +82762|404674|29691|3|35|55252.75|0.03|0.00|R|F|1994-09-06|1994-08-16|1994-10-06|COLLECT COD|REG AIR|n requests. sl| +82762|343605|6112|4|49|80780.91|0.01|0.04|R|F|1994-10-09|1994-09-12|1994-10-25|NONE|TRUCK|tructions haggle slyly carefully final | +82763|900922|13441|1|25|48072.00|0.04|0.04|N|O|1998-11-19|1998-10-15|1998-11-23|NONE|FOB| special attainments cajole | +82763|782372|32373|2|43|62536.62|0.01|0.06|N|O|1998-08-06|1998-08-30|1998-08-22|COLLECT COD|SHIP|to beans integr| +82763|322253|47266|3|20|25504.80|0.06|0.08|N|O|1998-08-12|1998-10-08|1998-08-30|COLLECT COD|SHIP|ages affix at the slyly | +82763|101055|13558|4|35|36961.75|0.08|0.00|N|O|1998-08-26|1998-09-03|1998-09-01|DELIVER IN PERSON|RAIL|nts. ironic deposits haggle carefully agai| +82763|430181|30182|5|37|41112.92|0.00|0.00|N|O|1998-08-07|1998-09-28|1998-09-03|DELIVER IN PERSON|AIR|ies cajole furious| +82763|37771|272|6|43|73477.11|0.01|0.08|N|O|1998-11-03|1998-09-25|1998-11-07|DELIVER IN PERSON|FOB|kindle furiously furiously | +82763|803401|15918|7|1|1304.36|0.04|0.01|N|O|1998-11-01|1998-09-08|1998-11-15|NONE|MAIL|longside of the packages. furiously exp| +82764|751110|26141|1|45|52248.60|0.09|0.08|R|F|1992-10-30|1992-12-14|1992-11-16|DELIVER IN PERSON|MAIL|accounts; silent pl| +82764|902921|15440|2|47|90422.36|0.06|0.03|R|F|1992-11-30|1992-11-03|1992-12-26|DELIVER IN PERSON|FOB|ges. requests haggle carefully aga| +82765|444982|7491|1|20|38539.20|0.04|0.07|R|F|1994-08-04|1994-07-31|1994-08-10|NONE|RAIL|eas. carefully unusual reque| +82766|688978|14005|1|4|7867.76|0.01|0.05|N|O|1996-01-23|1996-02-12|1996-02-18|DELIVER IN PERSON|MAIL|packages cajole blithely sl| +82766|650287|288|2|8|9898.00|0.06|0.01|N|O|1996-01-10|1996-03-10|1996-02-01|TAKE BACK RETURN|SHIP|gle across the blithely ironic i| +82766|365459|15460|3|40|60977.60|0.07|0.04|N|O|1996-02-27|1996-03-12|1996-03-01|NONE|MAIL|e slyly along the ex| +82766|268708|43719|4|15|25150.35|0.06|0.01|N|O|1996-04-09|1996-02-28|1996-04-22|DELIVER IN PERSON|SHIP| accounts boost slyly foxes. fur| +82766|166295|41302|5|7|9529.03|0.00|0.05|N|O|1996-02-27|1996-01-18|1996-03-11|DELIVER IN PERSON|TRUCK|courts cajole furiously un| +82766|911464|11465|6|28|41311.76|0.10|0.04|N|O|1996-02-05|1996-02-09|1996-02-25|TAKE BACK RETURN|FOB| the bold pinto bea| +82767|420451|32960|1|33|45257.19|0.10|0.07|N|O|1995-07-27|1995-08-27|1995-07-31|TAKE BACK RETURN|AIR|ending pinto beans are slyly. furiously | +82767|514903|27414|2|27|51782.76|0.10|0.08|N|O|1995-10-06|1995-09-09|1995-10-09|TAKE BACK RETURN|MAIL|he carefully regu| +82767|961673|24193|3|1|1734.63|0.00|0.05|N|O|1995-07-14|1995-09-28|1995-07-23|COLLECT COD|AIR|ickly ironic requests. carefully bold| +82767|824045|11594|4|3|2907.00|0.03|0.00|N|O|1995-10-13|1995-09-22|1995-11-02|NONE|TRUCK| final instr| +82767|723784|36299|5|16|28924.00|0.03|0.05|N|O|1995-07-22|1995-08-28|1995-08-13|NONE|REG AIR|. furiously ironic idea| +82767|631827|19364|6|36|63316.44|0.01|0.05|N|O|1995-10-05|1995-10-11|1995-10-12|TAKE BACK RETURN|TRUCK|s wake across the even instructions:| +82792|517883|42904|1|37|70331.82|0.00|0.04|R|F|1993-05-29|1993-04-07|1993-06-18|TAKE BACK RETURN|TRUCK|refully ir| +82792|51156|13658|2|5|5535.75|0.08|0.04|A|F|1993-06-28|1993-05-25|1993-07-23|TAKE BACK RETURN|FOB|ul foxes among the slyly re| +82792|769638|19639|3|3|5122.80|0.09|0.03|A|F|1993-06-22|1993-04-21|1993-07-22|COLLECT COD|TRUCK|uffily pen| +82792|301522|39041|4|11|16758.61|0.10|0.04|R|F|1993-04-28|1993-04-01|1993-05-08|NONE|MAIL|wake carefully across the blithely si| +82792|671949|9489|5|36|69152.76|0.02|0.05|A|F|1993-03-15|1993-04-04|1993-04-14|TAKE BACK RETURN|REG AIR|gular packages. blithely ex| +82792|439666|14683|6|39|62619.96|0.08|0.00|R|F|1993-03-06|1993-05-10|1993-03-10|DELIVER IN PERSON|SHIP|ans. furiously regular excuse| +82792|454628|4629|7|35|55391.00|0.10|0.02|A|F|1993-04-07|1993-04-10|1993-04-13|NONE|AIR| quickly regula| +82793|923033|23034|1|44|46463.56|0.10|0.00|N|O|1997-02-10|1997-01-24|1997-03-04|NONE|RAIL|s attainments nag furiou| +82793|413149|25658|2|44|46733.28|0.02|0.04|N|O|1997-02-13|1997-01-10|1997-02-18|NONE|TRUCK|eposits cajole. fluffily ironic pac| +82794|101159|26164|1|4|4640.60|0.00|0.04|N|O|1996-09-02|1996-09-08|1996-09-27|TAKE BACK RETURN|MAIL|lyly across the furiously | +82794|176901|26902|2|20|39558.00|0.03|0.05|N|O|1996-08-12|1996-09-19|1996-08-30|COLLECT COD|TRUCK|bold dependencies. quickly | +82794|167480|17481|3|24|37139.52|0.07|0.00|N|O|1996-11-09|1996-09-08|1996-12-09|DELIVER IN PERSON|RAIL| dugouts after the deposits solve bli| +82794|821630|9179|4|40|62063.60|0.02|0.05|N|O|1996-09-07|1996-08-20|1996-09-18|COLLECT COD|AIR|about the quickly even excuses. iron| +82794|122154|34657|5|6|7056.90|0.09|0.00|N|O|1996-09-25|1996-10-05|1996-10-11|DELIVER IN PERSON|TRUCK|cording to the regular in| +82795|822141|34658|1|36|38271.60|0.07|0.06|N|O|1998-05-08|1998-04-10|1998-05-14|NONE|FOB|accounts ca| +82796|228934|16447|1|35|65202.20|0.04|0.06|A|F|1995-03-28|1995-05-29|1995-04-05|NONE|AIR| final, regular requests detect agains| +82797|458431|20941|1|30|41682.30|0.10|0.06|N|O|1996-09-10|1996-09-15|1996-09-15|NONE|AIR|thely ironic instructions are slyly acco| +82797|847330|47331|2|35|44705.15|0.05|0.04|N|O|1996-09-30|1996-09-20|1996-10-08|DELIVER IN PERSON|SHIP| Tiresias! regular, regular p| +82798|73727|23728|1|24|40817.28|0.06|0.02|R|F|1995-02-23|1995-04-30|1995-03-22|NONE|REG AIR|s. idle excuses wake| +82798|124244|11751|2|15|19023.60|0.02|0.01|R|F|1995-03-21|1995-03-19|1995-03-29|TAKE BACK RETURN|AIR| regular, bold requests | +82798|153457|40967|3|29|43803.05|0.07|0.05|R|F|1995-04-24|1995-03-22|1995-04-26|DELIVER IN PERSON|RAIL| the carefully regular deposits | +82798|149874|12377|4|10|19238.70|0.00|0.02|A|F|1995-04-15|1995-04-19|1995-04-29|NONE|REG AIR|lar requests. blithely ironic | +82799|851|25852|1|27|47299.95|0.07|0.03|N|O|1996-11-16|1996-10-13|1996-11-20|DELIVER IN PERSON|AIR|y along the blithely unusual accoun| +82824|700795|13310|1|4|7183.04|0.03|0.03|N|O|1997-03-09|1997-05-15|1997-04-03|NONE|REG AIR|he furiously express accounts.| +82824|256679|44195|2|6|9813.96|0.04|0.03|N|O|1997-04-02|1997-05-14|1997-04-15|DELIVER IN PERSON|TRUCK|ly ironic deposits de| +82824|990844|15883|3|27|52239.60|0.10|0.00|N|O|1997-05-28|1997-05-29|1997-05-29|DELIVER IN PERSON|TRUCK|inal ideas are slyly ironic platelets. fl| +82824|108552|46059|4|8|12484.40|0.00|0.05|N|O|1997-06-08|1997-06-01|1997-06-25|DELIVER IN PERSON|FOB|its print according to the bo| +82825|322852|22853|1|30|56245.20|0.01|0.08|R|F|1995-01-18|1995-01-10|1995-01-31|NONE|FOB|ly pending theo| +82826|31587|44088|1|27|41001.66|0.04|0.03|A|F|1993-08-13|1993-07-22|1993-09-07|TAKE BACK RETURN|AIR|d accounts cajole sly| +82826|868255|5807|2|30|36696.30|0.07|0.02|R|F|1993-09-13|1993-08-20|1993-10-13|DELIVER IN PERSON|AIR|ieve finally slyl| +82826|745421|7936|3|22|32260.58|0.06|0.03|R|F|1993-07-23|1993-07-30|1993-08-13|NONE|AIR|unts boost careful| +82827|142908|5411|1|36|70232.40|0.04|0.04|N|O|1996-11-26|1997-01-15|1996-12-08|NONE|RAIL|quests unwind above the carefully iron| +82827|848910|48911|2|2|3717.74|0.01|0.06|N|O|1997-02-02|1996-12-09|1997-02-26|DELIVER IN PERSON|FOB|regular, express| +82827|622014|9551|3|10|9359.80|0.04|0.00|N|O|1997-02-07|1997-01-24|1997-02-13|DELIVER IN PERSON|FOB|. regular, ironic foxes haggle. regular | +82828|114426|1933|1|7|10082.94|0.07|0.05|N|O|1997-07-02|1997-06-09|1997-07-10|NONE|SHIP|ing excuses.| +82829|819889|44922|1|4|7235.36|0.02|0.05|R|F|1992-11-09|1992-09-26|1992-12-07|NONE|TRUCK|ate never qu| +82829|868993|18994|2|20|39239.00|0.04|0.05|R|F|1992-09-02|1992-09-08|1992-09-08|DELIVER IN PERSON|RAIL|leep across the slyly final instruc| +82829|159185|9186|3|34|42302.12|0.09|0.08|A|F|1992-10-25|1992-09-13|1992-10-26|NONE|SHIP|al accounts. furiously silent forges a| +82829|421228|8753|4|6|6895.20|0.05|0.02|A|F|1992-11-16|1992-10-17|1992-11-22|NONE|SHIP|the ideas sleep quick| +82830|380466|30467|1|29|44847.05|0.05|0.00|A|F|1993-07-22|1993-06-12|1993-08-15|NONE|RAIL| carefully even requests. furiously even| +82830|478740|3759|2|48|82498.56|0.10|0.01|A|F|1993-06-08|1993-08-09|1993-06-19|TAKE BACK RETURN|TRUCK|ckages across the slyly pending foxes boos| +82831|474300|11828|1|44|56068.32|0.07|0.05|N|O|1995-07-24|1995-07-24|1995-07-28|TAKE BACK RETURN|TRUCK| deposits wake. silent excuses use slyly ca| +82831|558811|8812|2|10|18697.90|0.02|0.00|N|O|1995-06-30|1995-08-29|1995-07-19|DELIVER IN PERSON|FOB|s are according to the bold tithes| +82831|926943|1980|3|29|57127.10|0.10|0.01|N|O|1995-08-08|1995-09-07|1995-08-28|NONE|FOB|ealthily ironic requests. slyly regular i| +82831|121225|8732|4|28|34894.16|0.03|0.07|N|O|1995-07-02|1995-07-20|1995-07-31|NONE|FOB|lar packages-- busy, pending deposits slee| +82856|367560|42575|1|40|65102.00|0.01|0.03|R|F|1993-01-19|1993-01-27|1993-01-24|DELIVER IN PERSON|RAIL|hely ironic instruction| +82857|124081|49086|1|34|37572.72|0.06|0.07|R|F|1993-04-25|1993-04-15|1993-05-18|TAKE BACK RETURN|FOB|furious packa| +82858|122860|47865|1|23|43305.78|0.08|0.05|N|O|1997-11-15|1997-10-27|1997-12-02|TAKE BACK RETURN|MAIL|lyly ironic i| +82858|895718|8236|2|35|59978.45|0.05|0.01|N|O|1997-08-24|1997-10-29|1997-09-18|NONE|FOB|y final packages. regular p| +82859|107800|20303|1|48|86774.40|0.05|0.03|N|O|1998-01-12|1998-01-25|1998-01-21|NONE|AIR|nding reque| +82859|783713|33714|2|5|8983.40|0.01|0.07|N|O|1998-03-07|1997-12-31|1998-03-12|DELIVER IN PERSON|FOB|g careful requests. blithely | +82860|797243|9759|1|30|40206.30|0.05|0.06|N|O|1997-12-06|1998-01-11|1998-01-05|DELIVER IN PERSON|FOB|uests against the even requests cajole abo| +82860|248058|48059|2|47|47283.88|0.07|0.08|N|O|1998-03-29|1998-01-25|1998-04-20|NONE|SHIP|nusual theodolites| +82860|98515|36019|3|47|71134.97|0.06|0.02|N|O|1998-03-15|1998-01-22|1998-03-22|NONE|REG AIR|onic theodolites integr| +82860|735356|47871|4|15|20869.80|0.06|0.01|N|O|1997-12-21|1998-01-23|1998-01-10|NONE|FOB|wake carefully. special depo| +82860|124389|49394|5|2|2826.76|0.00|0.00|N|O|1998-01-12|1998-02-03|1998-02-01|NONE|MAIL|ckly furiously| +82860|602681|40218|6|32|50676.80|0.00|0.00|N|O|1998-04-02|1998-02-19|1998-04-27|TAKE BACK RETURN|SHIP|ents above the slyl| +82860|242985|42986|7|44|84830.68|0.09|0.04|N|O|1998-03-15|1998-03-02|1998-03-18|COLLECT COD|AIR|s wake express ideas. blithely ir| +82861|832726|7759|1|35|58053.80|0.04|0.00|R|F|1995-01-13|1994-11-19|1995-02-07|TAKE BACK RETURN|MAIL|as affix furiously packa| +82862|79207|29208|1|40|47448.00|0.09|0.04|A|F|1993-05-02|1993-06-12|1993-05-26|TAKE BACK RETURN|REG AIR| accounts | +82862|216677|4190|2|49|78089.34|0.01|0.00|A|F|1993-05-22|1993-06-17|1993-05-30|NONE|FOB|s try to play blithely? package| +82863|271259|8775|1|43|52900.32|0.05|0.04|N|F|1995-06-03|1995-04-25|1995-06-29|NONE|SHIP|ests. ironic | +82863|48710|11211|2|34|56396.14|0.08|0.07|R|F|1995-03-25|1995-03-14|1995-03-30|TAKE BACK RETURN|AIR|rges cajole carefully acc| +82863|654089|29116|3|7|7301.35|0.00|0.05|A|F|1995-05-19|1995-04-11|1995-06-17|DELIVER IN PERSON|SHIP|hins. fluffily ironic pin| +82863|266872|29378|4|31|57004.66|0.02|0.01|A|F|1995-04-05|1995-03-10|1995-04-08|DELIVER IN PERSON|FOB|cies. regular, ironic| +82863|313589|38602|5|49|78525.93|0.10|0.08|A|F|1995-04-06|1995-03-27|1995-04-10|COLLECT COD|FOB|fluffily expr| +82863|483011|33012|6|49|48705.51|0.00|0.08|A|F|1995-03-22|1995-03-17|1995-03-26|TAKE BACK RETURN|SHIP|cuses; slyly even pinto beans sleep. qu| +82888|720189|7732|1|31|37483.65|0.03|0.01|A|F|1993-07-18|1993-09-15|1993-08-13|COLLECT COD|FOB|nal deposits cajole careful| +82888|215473|40482|2|9|12496.14|0.07|0.05|R|F|1993-09-10|1993-07-20|1993-10-04|TAKE BACK RETURN|REG AIR|ly express ideas. blithely final accoun| +82888|443208|18225|3|23|26477.14|0.03|0.00|R|F|1993-09-29|1993-08-12|1993-10-14|NONE|AIR|iresias cajole blithely sometimes ironi| +82889|570111|32623|1|31|36613.79|0.04|0.00|R|F|1993-05-19|1993-05-14|1993-06-07|TAKE BACK RETURN|RAIL|p furiously above the even, idle pint| +82889|838841|26390|2|23|40935.40|0.03|0.08|R|F|1993-07-20|1993-07-02|1993-08-11|DELIVER IN PERSON|RAIL|above the final, unus| +82889|392392|42393|3|31|46015.78|0.05|0.04|A|F|1993-05-24|1993-07-06|1993-06-11|TAKE BACK RETURN|MAIL|al pinto beans must integrate | +82889|925150|12705|4|42|49354.62|0.03|0.04|A|F|1993-06-06|1993-06-17|1993-06-10|COLLECT COD|MAIL|odolites sleep alongs| +82890|533657|21188|1|15|25359.45|0.05|0.07|N|O|1996-02-12|1996-04-10|1996-03-11|TAKE BACK RETURN|REG AIR|tions. final theodolites a| +82890|172357|22358|2|28|40021.80|0.05|0.01|N|O|1996-03-03|1996-03-18|1996-03-21|DELIVER IN PERSON|RAIL|. express pinto beans boost carefully c| +82890|801196|13713|3|50|54857.50|0.04|0.02|N|O|1996-04-07|1996-03-27|1996-04-29|COLLECT COD|TRUCK|tions affix careful| +82891|986075|48595|1|17|19737.51|0.08|0.05|N|O|1996-11-07|1996-10-14|1996-11-08|NONE|AIR| packages cajole against the quiet pac| +82891|950197|37755|2|50|62357.50|0.03|0.07|N|O|1996-10-02|1996-10-02|1996-10-04|DELIVER IN PERSON|TRUCK|posits. unusua| +82891|957309|44867|3|35|47819.10|0.08|0.08|N|O|1996-11-14|1996-09-23|1996-11-30|COLLECT COD|TRUCK|e. slyly unusual gifts cajole | +82891|492241|42242|4|43|53028.46|0.07|0.01|N|O|1996-11-21|1996-09-25|1996-11-23|COLLECT COD|TRUCK|old, regular accounts. pint| +82891|89542|39543|5|49|75045.46|0.10|0.00|N|O|1996-08-23|1996-10-16|1996-09-09|COLLECT COD|MAIL| above the depths. express deposits cajole| +82891|926527|1564|6|9|13981.32|0.08|0.07|N|O|1996-08-27|1996-09-28|1996-08-30|NONE|AIR| carefully final Tiresias. furiou| +82892|344391|44392|1|24|34449.12|0.09|0.00|A|F|1992-10-20|1992-10-30|1992-11-16|TAKE BACK RETURN|REG AIR|nticing excuses| +82892|165609|3119|2|35|58611.00|0.00|0.06|R|F|1992-11-29|1992-09-30|1992-12-13|NONE|MAIL|, bold requests. express, final dependenc| +82892|383981|21503|3|22|45429.34|0.03|0.06|R|F|1992-11-28|1992-10-15|1992-12-11|TAKE BACK RETURN|RAIL|y above the slyly final sauternes. express| +82893|181625|44129|1|27|46078.74|0.10|0.05|A|F|1993-10-18|1993-10-09|1993-11-02|NONE|AIR|y express packages boost quickly about| +82893|567428|29940|2|13|19440.20|0.04|0.06|A|F|1993-10-15|1993-10-07|1993-11-14|DELIVER IN PERSON|AIR| wake slyly afte| +82893|753757|41303|3|17|30782.24|0.10|0.08|R|F|1993-07-18|1993-09-29|1993-08-05|TAKE BACK RETURN|RAIL|losely even packages. slyly unusual re| +82894|950337|338|1|21|29133.09|0.05|0.03|N|O|1997-12-11|1997-12-25|1997-12-30|COLLECT COD|TRUCK|uses sleep | +82894|306637|19144|2|40|65744.80|0.05|0.04|N|O|1998-01-24|1997-11-09|1998-02-08|TAKE BACK RETURN|SHIP|ide of the slyly pending courts n| +82894|637024|12049|3|23|22102.77|0.02|0.07|N|O|1997-10-11|1997-11-28|1997-10-25|NONE|SHIP|blithely above the pending accounts-- ev| +82894|450764|13274|4|50|85737.00|0.07|0.01|N|O|1997-12-20|1997-12-20|1998-01-05|TAKE BACK RETURN|AIR|ronic ideas are blithely acros| +82894|981778|44298|5|6|11158.38|0.09|0.06|N|O|1997-11-24|1997-12-19|1997-11-30|DELIVER IN PERSON|RAIL|ilent theodolites wake i| +82894|731584|19127|6|22|35542.10|0.10|0.03|N|O|1997-12-07|1997-11-12|1997-12-25|DELIVER IN PERSON|FOB|ffily above the| +82894|731902|19445|7|2|3867.74|0.03|0.08|N|O|1997-11-24|1997-12-12|1997-12-18|COLLECT COD|FOB|eep blithely reg| +82895|65549|15550|1|16|24232.64|0.05|0.01|A|F|1993-11-05|1993-12-07|1993-11-29|NONE|SHIP|platelets haggle about the | +82895|673555|48582|2|19|29041.88|0.04|0.03|A|F|1993-12-08|1993-12-06|1994-01-06|TAKE BACK RETURN|RAIL| express deposits play fl| +82895|433815|21340|3|49|85690.71|0.00|0.03|A|F|1994-01-09|1993-11-06|1994-02-01|TAKE BACK RETURN|TRUCK|ding packages. slyly regular tith| +82895|122771|10278|4|39|69957.03|0.00|0.05|A|F|1993-09-25|1993-10-18|1993-10-14|TAKE BACK RETURN|REG AIR|e never express| +82920|458138|45666|1|46|50421.06|0.07|0.05|N|O|1998-06-09|1998-08-12|1998-06-27|NONE|SHIP|s. final, regular foxe| +82920|920827|20828|2|1|1847.78|0.09|0.04|N|O|1998-08-09|1998-07-12|1998-08-28|NONE|RAIL|ld theodolites ca| +82921|663936|38963|1|21|39897.90|0.09|0.05|N|O|1995-09-28|1995-10-31|1995-10-17|COLLECT COD|SHIP|eep regularly| +82921|756593|31624|2|42|69281.52|0.07|0.05|N|O|1995-08-29|1995-09-22|1995-09-19|DELIVER IN PERSON|FOB|hind the furiously| +82922|721577|34092|1|46|73532.84|0.01|0.07|N|O|1995-08-02|1995-08-19|1995-08-18|COLLECT COD|REG AIR|rate carefully.| +82922|536754|36755|2|26|46558.98|0.09|0.07|N|O|1995-09-22|1995-09-10|1995-10-20|TAKE BACK RETURN|REG AIR| the blithely even somas wake according| +82922|216602|29107|3|47|71373.73|0.10|0.05|N|O|1995-10-04|1995-08-02|1995-10-29|NONE|TRUCK|excuses haggle after the fina| +82922|413982|26491|4|15|28439.40|0.06|0.04|N|O|1995-08-25|1995-09-30|1995-09-02|TAKE BACK RETURN|SHIP|carefully silent acco| +82923|717023|17024|1|33|34319.67|0.03|0.05|N|O|1996-10-06|1996-10-26|1996-10-25|COLLECT COD|SHIP|ckages. quic| +82923|3566|28567|2|36|52904.16|0.02|0.00|N|O|1996-12-25|1996-11-20|1997-01-11|NONE|MAIL|fully pending, ironic account| +82924|684059|46573|1|39|40677.78|0.06|0.07|N|O|1995-09-17|1995-07-22|1995-10-02|NONE|SHIP|ly above the bold idea| +82925|887287|12322|1|23|29307.52|0.06|0.03|A|F|1992-06-24|1992-05-14|1992-07-06|NONE|RAIL|y slow accounts nag abo| +82925|628761|16298|2|7|11828.11|0.09|0.07|R|F|1992-05-08|1992-05-29|1992-06-03|COLLECT COD|TRUCK|inly busy platelets. depo| +82925|582900|32901|3|48|95178.24|0.02|0.04|A|F|1992-07-02|1992-06-23|1992-07-30|DELIVER IN PERSON|SHIP|tes-- furiously bold package| +82925|794072|44073|4|49|57135.96|0.00|0.04|A|F|1992-08-08|1992-06-06|1992-08-28|DELIVER IN PERSON|RAIL|ions: fluffily bold| +82925|959554|47112|5|18|29043.18|0.07|0.05|R|F|1992-06-03|1992-06-06|1992-07-01|NONE|FOB|ages doubt furiously| +82926|301494|26507|1|5|7477.40|0.04|0.02|N|O|1998-02-13|1998-03-18|1998-03-05|NONE|MAIL|d accounts. furiously express re| +82926|193132|43133|2|28|34303.64|0.06|0.03|N|O|1998-04-22|1998-02-19|1998-04-29|NONE|MAIL|, regular requests affix car| +82927|8097|8098|1|35|35178.15|0.02|0.05|R|F|1994-12-17|1995-01-25|1994-12-28|TAKE BACK RETURN|FOB|ounts. carefully ironic theodolites | +82927|74414|36916|2|44|61090.04|0.07|0.08|R|F|1995-01-24|1995-02-27|1995-02-23|TAKE BACK RETURN|AIR|tect slyly. quiet| +82927|668060|5600|3|49|50373.47|0.09|0.02|A|F|1994-12-23|1995-02-25|1994-12-24|DELIVER IN PERSON|AIR|. slyly silent deposi| +82927|75591|13095|4|16|25065.44|0.06|0.04|R|F|1995-03-02|1995-01-28|1995-04-01|TAKE BACK RETURN|TRUCK|egular instruction| +82952|699908|49909|1|45|85854.15|0.07|0.04|A|F|1994-07-19|1994-08-01|1994-07-30|TAKE BACK RETURN|MAIL|ide of the accounts. slyly enticing pinto | +82953|496652|34180|1|29|47810.27|0.08|0.06|N|O|1997-04-24|1997-04-11|1997-04-29|TAKE BACK RETURN|MAIL|le fluffily along the even deposit| +82953|218102|5615|2|27|27542.43|0.02|0.01|N|O|1997-05-18|1997-04-05|1997-06-09|DELIVER IN PERSON|FOB|nder slyly even pinto beans. instructions| +82954|275181|192|1|22|25435.74|0.01|0.03|N|O|1997-01-09|1997-01-24|1997-01-22|COLLECT COD|REG AIR|fluffily. furiously pending courts alongsid| +82954|960318|22838|2|15|20674.05|0.07|0.06|N|O|1997-01-21|1997-01-15|1997-02-05|DELIVER IN PERSON|MAIL|xpress courts use. furious| +82954|48317|10818|3|7|8857.17|0.05|0.07|N|O|1997-03-15|1997-01-29|1997-03-17|COLLECT COD|AIR|ar instruct| +82954|54988|29991|4|28|54403.44|0.08|0.08|N|O|1997-01-08|1997-02-14|1997-01-24|NONE|RAIL|es use fluffily. fluffily final p| +82954|182363|44867|5|46|66486.56|0.06|0.07|N|O|1996-12-17|1997-01-26|1997-01-08|TAKE BACK RETURN|REG AIR|nts about the ironic, final accou| +82954|973178|48217|6|2|2502.26|0.10|0.08|N|O|1997-03-16|1997-01-21|1997-04-09|DELIVER IN PERSON|FOB|regular, special reques| +82955|11125|48626|1|43|44553.16|0.00|0.08|A|F|1995-02-11|1995-01-28|1995-02-23|TAKE BACK RETURN|SHIP|efully alongside of the carefully| +82955|961788|49346|2|31|57341.94|0.06|0.00|A|F|1995-02-17|1995-01-22|1995-03-17|TAKE BACK RETURN|REG AIR|s solve quickl| +82955|759616|47162|3|6|10053.48|0.04|0.04|A|F|1994-11-01|1995-01-04|1994-11-14|TAKE BACK RETURN|SHIP|beans breach across the e| +82955|860321|47873|4|9|11531.52|0.06|0.03|A|F|1995-01-13|1994-11-30|1995-02-06|NONE|RAIL| silent accounts cajole car| +82955|406480|6481|5|26|36047.96|0.10|0.07|R|F|1995-02-08|1994-12-01|1995-02-22|TAKE BACK RETURN|REG AIR|lyly slyly regul| +82956|723363|35878|1|27|37430.91|0.07|0.08|R|F|1993-10-03|1993-08-11|1993-10-29|DELIVER IN PERSON|REG AIR|e even, final instructions. furio| +82957|776758|39274|1|19|34859.68|0.05|0.01|N|O|1995-07-22|1995-05-30|1995-08-01|DELIVER IN PERSON|FOB|serve silently.| +82957|961089|11090|2|5|5750.20|0.05|0.05|R|F|1995-05-01|1995-05-13|1995-05-07|TAKE BACK RETURN|RAIL| bold excuses. bl| +82957|8526|46027|3|25|35863.00|0.02|0.02|R|F|1995-06-10|1995-06-09|1995-06-15|DELIVER IN PERSON|AIR|lithely bold accounts alo| +82957|291407|3913|4|14|19577.46|0.08|0.02|A|F|1995-05-31|1995-06-17|1995-06-12|NONE|REG AIR|ss foxes solve slyly. excuses ar| +82957|660943|35970|5|15|28558.65|0.08|0.02|R|F|1995-05-14|1995-06-04|1995-05-31|NONE|TRUCK|to sleep carefully beyond the| +82957|456189|18699|6|16|18322.56|0.02|0.08|R|F|1995-04-14|1995-05-20|1995-04-30|TAKE BACK RETURN|TRUCK|sts believe furiously ev| +82958|198031|10535|1|8|9032.24|0.06|0.02|N|O|1996-07-03|1996-08-20|1996-07-09|DELIVER IN PERSON|RAIL|re furiously | +82958|293767|31283|2|5|8803.75|0.04|0.04|N|O|1996-09-30|1996-07-23|1996-10-02|DELIVER IN PERSON|RAIL|e-- quickly even pains| +82958|328214|3227|3|45|55899.00|0.01|0.03|N|O|1996-07-24|1996-07-31|1996-07-31|DELIVER IN PERSON|TRUCK|slyly express ideas boost according| +82959|914669|27188|1|45|75762.90|0.05|0.07|N|O|1998-08-11|1998-08-28|1998-08-26|COLLECT COD|SHIP| ironic deposits at the sly| +82959|836007|36008|2|36|33946.56|0.03|0.03|N|O|1998-10-20|1998-09-15|1998-10-27|DELIVER IN PERSON|AIR|. furiously even depos| +82984|316295|28802|1|25|32782.00|0.04|0.05|A|F|1994-03-27|1994-01-19|1994-04-11|NONE|REG AIR|r the platelets. special accou| +82985|22284|34785|1|43|51870.04|0.10|0.01|N|O|1995-11-20|1995-10-30|1995-11-29|NONE|TRUCK|unts use fluffily final platel| +82985|516008|28519|2|41|41983.18|0.03|0.08|N|O|1995-09-19|1995-10-14|1995-09-22|NONE|FOB| even packages se| +82985|535181|22712|3|43|52294.88|0.03|0.06|N|O|1995-08-04|1995-09-11|1995-09-02|DELIVER IN PERSON|SHIP|usly along the warhorse| +82985|776716|1747|4|49|87841.32|0.07|0.04|N|O|1995-11-24|1995-09-22|1995-12-01|TAKE BACK RETURN|SHIP|inal, final packages wake;| +82985|251996|27007|5|19|37011.62|0.10|0.05|N|O|1995-10-26|1995-10-21|1995-11-09|DELIVER IN PERSON|REG AIR|ld requests sleep.| +82986|583040|33041|1|31|34813.62|0.03|0.05|N|O|1998-01-11|1998-02-07|1998-02-04|TAKE BACK RETURN|FOB| unusual r| +82987|558566|46100|1|14|22743.56|0.04|0.05|N|O|1995-08-15|1995-08-31|1995-08-27|TAKE BACK RETURN|MAIL|oxes integrate acco| +82987|807565|32598|2|23|33867.96|0.05|0.04|N|O|1995-10-15|1995-07-29|1995-11-10|COLLECT COD|TRUCK|uriously unusual| +82987|732587|20130|3|32|51825.60|0.07|0.00|N|O|1995-08-16|1995-09-02|1995-09-06|DELIVER IN PERSON|FOB| the even | +82987|577739|27740|4|35|63584.85|0.00|0.07|N|O|1995-09-05|1995-08-26|1995-09-23|TAKE BACK RETURN|AIR|ly ironic packages. even re| +82987|51487|13989|5|39|56100.72|0.02|0.05|N|O|1995-07-01|1995-09-10|1995-07-24|NONE|MAIL|are about the fluffily sly a| +82987|326893|26894|6|42|80634.96|0.07|0.08|N|O|1995-10-24|1995-09-24|1995-11-23|COLLECT COD|REG AIR| dolphins use furiously-- busy accounts | +82987|75673|13177|7|8|13189.36|0.01|0.05|N|O|1995-08-10|1995-07-26|1995-08-16|TAKE BACK RETURN|TRUCK|zle carefully across the quickly pending in| +82988|831869|44386|1|21|37817.22|0.05|0.06|N|O|1995-07-08|1995-09-15|1995-07-25|TAKE BACK RETURN|MAIL|ial packages cajole evenly beyond the| +82988|221540|46549|2|24|35076.72|0.03|0.04|N|O|1995-10-14|1995-08-18|1995-10-17|TAKE BACK RETURN|TRUCK|pending requests are against the re| +82988|421363|8888|3|43|55226.62|0.08|0.05|N|O|1995-10-16|1995-08-14|1995-10-22|NONE|AIR|l dugouts. carefully fina| +82988|834551|34552|4|42|62391.42|0.07|0.05|N|O|1995-09-25|1995-08-06|1995-10-05|DELIVER IN PERSON|AIR|cording to the slyly| +82988|289696|2202|5|30|50570.40|0.03|0.03|N|O|1995-07-22|1995-07-25|1995-07-29|COLLECT COD|MAIL|the pending, specia| +82989|533027|20558|1|6|6360.00|0.00|0.06|R|F|1995-05-11|1995-06-15|1995-05-27|COLLECT COD|TRUCK|ial foxes sleep quietly | +82989|575328|37840|2|8|11226.40|0.06|0.03|R|F|1995-04-26|1995-05-05|1995-05-14|COLLECT COD|FOB|jole carefully about the car| +82989|531446|6467|3|31|45800.02|0.10|0.05|N|F|1995-06-08|1995-05-28|1995-07-05|DELIVER IN PERSON|TRUCK|requests. slyly even accoun| +82989|2543|2544|4|50|72277.00|0.06|0.06|N|O|1995-07-15|1995-06-13|1995-08-07|TAKE BACK RETURN|RAIL|ithely ironic pinto beans. car| +82990|823006|10555|1|8|7431.68|0.01|0.00|N|O|1998-06-07|1998-04-20|1998-06-09|COLLECT COD|TRUCK|ven deposits are about the fluffily regular| +82990|261722|24228|2|30|50511.30|0.06|0.03|N|O|1998-04-16|1998-05-18|1998-04-28|NONE|RAIL|iously even ideas against the furiou| +82991|153583|28590|1|2|3273.16|0.10|0.06|N|O|1998-02-26|1998-03-21|1998-03-20|NONE|RAIL|s cajole blithely ca| +82991|256373|43889|2|4|5317.44|0.01|0.08|N|O|1998-03-24|1998-03-16|1998-04-10|DELIVER IN PERSON|SHIP|kly pending d| +82991|847002|47003|3|17|16132.32|0.08|0.03|N|O|1998-01-15|1998-02-13|1998-01-19|TAKE BACK RETURN|RAIL|lly? pinto bean| +82991|554984|17496|4|14|28545.44|0.04|0.05|N|O|1998-01-02|1998-03-28|1998-01-21|DELIVER IN PERSON|MAIL|yly pending accounts. fi| +82991|607273|32298|5|20|23604.80|0.00|0.01|N|O|1998-02-27|1998-02-16|1998-03-20|COLLECT COD|TRUCK|blithely alongside of the quickly u| +82991|433870|46379|6|7|12626.95|0.07|0.05|N|O|1998-04-18|1998-02-20|1998-04-26|DELIVER IN PERSON|REG AIR|usly. slyly unusual pinto beans alo| +82991|40311|27812|7|30|37539.30|0.01|0.04|N|O|1998-03-08|1998-01-29|1998-03-19|COLLECT COD|TRUCK|packages. furiously| +83016|492434|29962|1|17|24248.97|0.10|0.01|R|F|1994-08-02|1994-06-25|1994-08-17|COLLECT COD|MAIL|ld, even foxes after the fu| +83016|326528|39035|2|6|9327.06|0.04|0.06|A|F|1994-08-04|1994-07-08|1994-08-08|NONE|AIR|lyly about the bold requests: blithely idle| +83016|955703|43261|3|36|63311.76|0.10|0.02|A|F|1994-08-02|1994-06-10|1994-08-24|COLLECT COD|TRUCK|ckly. accounts subl| +83016|490751|40752|4|19|33092.87|0.10|0.04|R|F|1994-07-22|1994-07-16|1994-08-11|COLLECT COD|TRUCK|ut the regular deposits. carefully e| +83016|38954|38955|5|10|18929.50|0.10|0.04|R|F|1994-04-23|1994-07-13|1994-05-23|DELIVER IN PERSON|TRUCK|thely express foxes since the | +83016|695003|7517|6|49|48900.53|0.00|0.01|R|F|1994-05-03|1994-07-16|1994-05-20|COLLECT COD|TRUCK|ly pending theodolites. blithely| +83016|903446|41001|7|44|63773.60|0.02|0.02|R|F|1994-07-17|1994-05-22|1994-07-26|TAKE BACK RETURN|SHIP|kages. slyly ironic requests acros| +83017|212681|194|1|18|28686.06|0.06|0.06|N|O|1998-04-20|1998-02-12|1998-05-20|DELIVER IN PERSON|SHIP|express requests breach blithely ac| +83018|416510|4035|1|35|49927.15|0.01|0.02|N|O|1996-11-11|1996-10-26|1996-12-07|NONE|REG AIR|arefully regular foxes-- express| +83018|279627|29628|2|30|48198.30|0.02|0.08|N|O|1996-10-16|1996-09-26|1996-11-03|COLLECT COD|TRUCK|usly slyly even foxe| +83018|690678|15705|3|36|60071.04|0.01|0.01|N|O|1996-11-01|1996-10-12|1996-11-25|TAKE BACK RETURN|AIR|pinto beans. furiously ironic pinto beans | +83018|222225|22226|4|36|41299.56|0.00|0.07|N|O|1996-11-04|1996-09-11|1996-12-01|TAKE BACK RETURN|MAIL|the blithely bold deposits. special deposi| +83018|920154|7709|5|6|7044.66|0.07|0.00|N|O|1996-10-19|1996-11-02|1996-10-26|NONE|FOB| furiously final asymptotes. ca| +83018|19789|19790|6|20|34175.60|0.09|0.07|N|O|1996-11-12|1996-10-30|1996-12-08|COLLECT COD|SHIP|thely. express dependencies about t| +83019|649800|24825|1|42|73490.34|0.09|0.06|R|F|1994-07-25|1994-07-16|1994-08-11|COLLECT COD|TRUCK|ainst the deposits. blithely pending id| +83019|175610|617|2|36|60681.96|0.01|0.04|A|F|1994-05-09|1994-06-06|1994-05-18|NONE|RAIL|slyly even dependencies sleep | +83019|471070|46089|3|20|20821.00|0.07|0.03|A|F|1994-06-10|1994-06-12|1994-06-13|TAKE BACK RETURN|MAIL|eposits sleep. c| +83019|266121|41132|4|43|46745.73|0.02|0.00|R|F|1994-06-16|1994-07-08|1994-06-22|NONE|TRUCK|iously pending ac| +83019|691463|41464|5|37|53813.91|0.10|0.01|A|F|1994-08-25|1994-06-11|1994-09-20|DELIVER IN PERSON|TRUCK|luffily? instructions nag fluffily unusu| +83020|5577|5578|1|32|47442.24|0.00|0.06|A|F|1993-02-09|1993-04-13|1993-03-03|NONE|MAIL|eodolites-- careful| +83020|730759|43274|2|35|62640.20|0.09|0.00|A|F|1993-02-18|1993-02-28|1993-02-22|COLLECT COD|SHIP|ly pending requests| +83020|855233|17751|3|27|32081.13|0.09|0.04|R|F|1993-05-19|1993-03-27|1993-06-09|COLLECT COD|SHIP|ronic accounts. permanently final deposit| +83020|885677|10712|4|49|81468.87|0.10|0.00|R|F|1993-02-18|1993-03-14|1993-03-06|DELIVER IN PERSON|REG AIR|furiously express | +83020|567352|29864|5|30|42579.90|0.05|0.08|R|F|1993-03-05|1993-04-02|1993-03-22|TAKE BACK RETURN|FOB|old requests eat slyly. fluff| +83020|479006|4025|6|8|7879.84|0.08|0.07|R|F|1993-02-26|1993-03-12|1993-03-26|NONE|MAIL|unusual packages across the regular depos| +83020|648201|35738|7|47|54010.99|0.10|0.07|R|F|1993-02-12|1993-03-07|1993-02-19|NONE|MAIL|s sleep sometimes acro| +83021|308099|45618|1|5|5535.40|0.05|0.04|N|O|1997-02-24|1997-03-29|1997-03-22|TAKE BACK RETURN|SHIP| bold, even| +83021|215877|28382|2|49|87850.14|0.09|0.07|N|O|1997-05-08|1997-05-04|1997-06-04|NONE|REG AIR|ress, ironic platelets wake blit| +83021|242108|29621|3|17|17851.53|0.06|0.07|N|O|1997-05-02|1997-04-21|1997-05-09|COLLECT COD|REG AIR|uffily silent p| +83021|97027|22030|4|2|2048.04|0.10|0.03|N|O|1997-04-16|1997-03-25|1997-05-02|NONE|SHIP| pinto beans are. quickly quiet foxes| +83021|726592|1621|5|39|63123.84|0.07|0.01|N|O|1997-05-30|1997-03-22|1997-06-06|NONE|RAIL|thely ironic packages| +83022|137580|12585|1|43|69555.94|0.03|0.00|N|O|1998-01-25|1998-01-28|1998-02-20|COLLECT COD|TRUCK| packages. carefully final pinto beans ha| +83022|296705|21716|2|49|83382.81|0.01|0.04|N|O|1998-01-25|1997-12-06|1998-01-27|COLLECT COD|MAIL|he furiousl| +83023|256236|18742|1|5|5961.10|0.05|0.05|A|F|1992-11-09|1992-10-03|1992-11-24|COLLECT COD|SHIP|dolites haggle around the special fret| +83023|552498|2499|2|26|40312.22|0.06|0.00|R|F|1992-10-29|1992-11-13|1992-11-24|DELIVER IN PERSON|RAIL| deposits unwind except the ent| +83023|832407|32408|3|24|32144.64|0.05|0.05|R|F|1992-11-29|1992-09-29|1992-12-22|TAKE BACK RETURN|SHIP|arefully pend| +83023|261333|23839|4|47|60833.04|0.07|0.07|R|F|1992-10-10|1992-10-10|1992-10-27|DELIVER IN PERSON|MAIL|sly final theodolites solve. slyly silent| +83023|222793|10306|5|8|13726.24|0.06|0.05|A|F|1992-11-04|1992-11-09|1992-11-23|NONE|FOB|fully silent ide| +83048|974125|11683|1|13|15588.04|0.02|0.06|N|O|1998-05-26|1998-07-05|1998-05-28|TAKE BACK RETURN|MAIL|e carefully alongsid| +83048|113470|13471|2|33|48954.51|0.02|0.02|N|O|1998-05-19|1998-07-14|1998-05-31|NONE|FOB|y final packages. quickly final th| +83048|87673|175|3|35|58123.45|0.09|0.04|N|O|1998-09-08|1998-07-02|1998-10-08|DELIVER IN PERSON|REG AIR|s. quickly ironic d| +83048|514494|39515|4|26|39220.22|0.02|0.03|N|O|1998-07-11|1998-07-21|1998-07-25|NONE|AIR|- quickly fin| +83049|808395|20912|1|12|15640.20|0.05|0.08|A|F|1992-05-18|1992-05-18|1992-05-19|TAKE BACK RETURN|FOB|uffily express accounts sleep b| +83049|684780|22320|2|47|82943.25|0.02|0.07|A|F|1992-06-02|1992-04-28|1992-06-12|DELIVER IN PERSON|FOB|excuses mold slyly fluffily r| +83049|97266|34770|3|16|20212.16|0.06|0.00|A|F|1992-03-30|1992-05-03|1992-04-21|DELIVER IN PERSON|AIR|instructions. slyly regular asy| +83049|749049|24078|4|12|13176.12|0.04|0.04|R|F|1992-05-07|1992-05-29|1992-05-27|DELIVER IN PERSON|MAIL|lyly regular asymptotes. regul| +83050|411580|36597|1|22|32814.32|0.07|0.03|N|O|1997-01-17|1997-02-25|1997-02-11|DELIVER IN PERSON|AIR|inal asymptotes are | +83050|413959|13960|2|45|84281.85|0.09|0.00|N|O|1996-12-27|1997-03-02|1997-01-24|TAKE BACK RETURN|SHIP|nic, even requ| +83050|405978|18487|3|24|45214.80|0.03|0.02|N|O|1997-04-01|1997-02-12|1997-04-15|NONE|RAIL|nts sleep quickly. enticingly ironic r| +83050|270376|32882|4|36|48468.96|0.08|0.04|N|O|1997-02-17|1997-03-03|1997-03-02|DELIVER IN PERSON|FOB| quickly around | +83050|195497|20504|5|4|6369.96|0.03|0.04|N|O|1997-01-30|1997-02-16|1997-02-24|TAKE BACK RETURN|MAIL|ronic deposits believe slyly car| +83051|829919|4952|1|43|79501.41|0.05|0.07|A|F|1993-04-16|1993-06-10|1993-04-23|TAKE BACK RETURN|AIR|ng the ironic accounts. bli| +83051|443626|31151|2|5|7848.00|0.08|0.04|A|F|1993-05-31|1993-04-29|1993-06-18|TAKE BACK RETURN|AIR|ns affix slyly fu| +83051|12404|37405|3|8|10531.20|0.04|0.08|R|F|1993-04-01|1993-06-22|1993-04-02|COLLECT COD|SHIP|gular courts. theodolites nag furiously th| +83052|188164|38165|1|47|58851.52|0.00|0.01|R|F|1993-03-19|1993-03-10|1993-03-27|NONE|REG AIR|inal packages above the carefully even| +83052|457753|7754|2|46|78693.58|0.04|0.07|R|F|1993-04-01|1993-03-21|1993-04-27|NONE|REG AIR|deas across the slyly even packages boos| +83052|440898|15915|3|38|69877.06|0.05|0.04|R|F|1993-03-22|1993-03-18|1993-04-21|COLLECT COD|MAIL|unusual deposits use qu| +83053|53166|15668|1|16|17906.56|0.01|0.06|N|O|1995-09-27|1995-11-26|1995-10-22|TAKE BACK RETURN|SHIP|ounts thrash quick| +83053|556450|31473|2|34|51218.62|0.09|0.00|N|O|1995-12-15|1995-11-30|1996-01-01|COLLECT COD|TRUCK|ions. daringly bold dependen| +83053|246750|21759|3|35|59385.90|0.01|0.04|N|O|1995-11-10|1995-10-22|1995-12-03|DELIVER IN PERSON|TRUCK|usy theodolites. thinly enti| +83053|116920|41925|4|46|89098.32|0.04|0.00|N|O|1995-11-14|1995-11-21|1995-12-02|DELIVER IN PERSON|RAIL|s. ironic theo| +83054|279489|4500|1|6|8810.82|0.05|0.01|N|O|1996-12-17|1996-10-19|1996-12-21|NONE|REG AIR|iously final ideas sleep fluffily a| +83054|362373|24881|2|24|34448.64|0.03|0.08|N|O|1996-11-09|1996-10-29|1996-11-27|TAKE BACK RETURN|SHIP|its promise slyly across the | +83054|387941|12956|3|11|22318.23|0.01|0.02|N|O|1996-11-09|1996-11-01|1996-11-26|COLLECT COD|SHIP| are about the carefully ironic foxes.| +83054|114828|2335|4|14|25799.48|0.00|0.01|N|O|1996-11-03|1996-11-04|1996-11-15|TAKE BACK RETURN|REG AIR|ss the slyly ironic accounts. foxes amon| +83054|898793|36345|5|3|5375.25|0.02|0.06|N|O|1996-10-22|1996-10-12|1996-11-12|TAKE BACK RETURN|REG AIR|nic accounts about| +83055|637509|25046|1|31|44840.57|0.01|0.00|N|O|1998-01-31|1998-03-03|1998-02-08|DELIVER IN PERSON|TRUCK|. carefully even requests haggle again| +83055|612125|24638|2|47|48743.23|0.06|0.02|N|O|1998-04-16|1998-02-26|1998-04-21|NONE|REG AIR| the blithely regular excuses. pinto | +83080|700737|38280|1|26|45180.20|0.07|0.00|N|O|1996-10-12|1996-11-14|1996-11-04|COLLECT COD|FOB| furiously final pinto beans nag slyly amon| +83081|225906|25907|1|33|60452.37|0.06|0.08|N|O|1995-08-24|1995-10-30|1995-09-11|COLLECT COD|TRUCK| furiously. car| +83081|794044|19075|2|1|1138.01|0.03|0.06|N|O|1995-09-10|1995-10-23|1995-09-29|DELIVER IN PERSON|REG AIR|unts haggle slyly even asymptotes. car| +83081|490660|40661|3|3|4951.92|0.00|0.00|N|O|1995-08-16|1995-09-30|1995-09-09|TAKE BACK RETURN|RAIL|ar pinto beans| +83082|675016|25017|1|43|42612.14|0.03|0.04|R|F|1993-07-29|1993-09-06|1993-08-23|COLLECT COD|TRUCK|y final pinto beans are quickly.| +83082|983969|9008|2|13|26687.96|0.00|0.05|R|F|1993-10-24|1993-09-06|1993-11-02|NONE|SHIP|efully fluffily even dolphins. even a| +83082|565045|27557|3|32|35520.64|0.01|0.00|A|F|1993-10-17|1993-08-11|1993-11-15|TAKE BACK RETURN|TRUCK|rts wake slyly slowly ironic| +83082|707298|32327|4|41|53515.66|0.03|0.03|R|F|1993-09-10|1993-08-18|1993-09-14|TAKE BACK RETURN|RAIL|de of the i| +83083|872244|22245|1|8|9729.60|0.04|0.00|R|F|1994-10-22|1994-12-04|1994-11-01|DELIVER IN PERSON|FOB|yly express accounts a| +83083|791305|16336|2|28|39095.56|0.10|0.06|A|F|1994-11-16|1994-11-09|1994-12-11|COLLECT COD|TRUCK|ully express deposits along the | +83083|450580|581|3|41|62752.96|0.00|0.03|R|F|1994-12-18|1994-12-01|1994-12-22|TAKE BACK RETURN|RAIL|instructions nag| +83084|316073|16074|1|25|27226.50|0.04|0.08|N|O|1998-02-25|1998-01-29|1998-03-14|DELIVER IN PERSON|FOB|slyly ironic instructions | +83084|231744|31745|2|23|38541.79|0.07|0.04|N|O|1998-01-05|1998-03-03|1998-01-22|TAKE BACK RETURN|SHIP|the express, pending package| +83084|920365|45402|3|7|9697.24|0.04|0.05|N|O|1998-03-07|1998-03-01|1998-03-30|DELIVER IN PERSON|SHIP|ourts nag am| +83084|571536|34048|4|35|56262.85|0.03|0.01|N|O|1998-01-21|1998-01-21|1998-02-14|TAKE BACK RETURN|MAIL|y even courts| +83084|802401|27434|5|26|33887.36|0.05|0.01|N|O|1998-01-29|1998-02-16|1998-02-15|TAKE BACK RETURN|SHIP|fully regular packages affix fu| +83084|945908|8427|6|28|54708.08|0.06|0.01|N|O|1998-04-03|1998-03-14|1998-05-01|NONE|RAIL|furiously | +83085|833218|20767|1|26|29930.42|0.03|0.00|N|O|1996-06-23|1996-07-03|1996-07-02|TAKE BACK RETURN|SHIP|te carefully ove| +83085|886142|48660|2|3|3384.30|0.05|0.07|N|O|1996-06-17|1996-07-26|1996-06-27|DELIVER IN PERSON|RAIL|n instructions use blithely| +83085|385105|22627|3|2|2380.18|0.10|0.04|N|O|1996-09-15|1996-06-28|1996-10-14|COLLECT COD|TRUCK|c ideas use amo| +83085|444045|19062|4|38|37582.76|0.05|0.02|N|O|1996-07-12|1996-08-12|1996-07-31|DELIVER IN PERSON|AIR| silent theodolites nag daringly c| +83085|48936|23937|5|30|56547.90|0.09|0.03|N|O|1996-06-03|1996-07-28|1996-07-02|DELIVER IN PERSON|RAIL|the packages sleep about the carefull| +83086|354372|29387|1|5|7131.80|0.04|0.07|N|O|1997-11-19|1997-10-21|1997-11-29|NONE|AIR|ey players wake fluffily.| +83086|917119|42156|2|20|22721.40|0.04|0.07|N|O|1998-01-03|1997-11-28|1998-01-31|DELIVER IN PERSON|REG AIR| fluffily ironic accoun| +83087|165902|15903|1|31|61004.90|0.01|0.03|N|O|1998-05-02|1998-05-23|1998-05-31|DELIVER IN PERSON|AIR|at the final deposits | +83087|307573|32586|2|40|63222.40|0.02|0.05|N|O|1998-06-24|1998-05-16|1998-07-08|NONE|REG AIR|olites detect! carefully even accou| +83087|376549|26550|3|33|53642.49|0.09|0.02|N|O|1998-06-08|1998-06-17|1998-07-02|NONE|REG AIR|ptotes. even excu| +83087|649583|12096|4|28|42911.40|0.08|0.05|N|O|1998-07-05|1998-07-02|1998-07-24|COLLECT COD|FOB|nal dugouts boos| +83087|533586|8607|5|36|58304.16|0.06|0.03|N|O|1998-05-03|1998-06-07|1998-05-25|NONE|REG AIR|es was bold packages. | +83087|966744|41783|6|30|54321.00|0.01|0.05|N|O|1998-05-23|1998-05-23|1998-06-17|DELIVER IN PERSON|AIR|he ironic de| +83112|476622|39132|1|19|30373.40|0.03|0.00|R|F|1993-07-01|1993-09-15|1993-07-09|COLLECT COD|SHIP|p furiously f| +83112|583733|46245|2|36|65401.56|0.07|0.02|R|F|1993-08-25|1993-08-09|1993-08-26|NONE|SHIP|s use. regular, even pearls by th| +83112|798397|48398|3|38|56823.68|0.02|0.05|R|F|1993-09-27|1993-07-21|1993-10-23|NONE|TRUCK|ts! even packages| +83112|652288|27315|4|20|24805.00|0.08|0.08|R|F|1993-06-24|1993-08-25|1993-06-30|NONE|RAIL|usual, express pinto beans: slyly regular r| +83113|725086|37601|1|1|1111.05|0.08|0.05|A|F|1992-12-23|1993-01-21|1993-01-06|COLLECT COD|AIR|unusual packages nag quickly! furious, | +83113|512015|49546|2|25|25674.75|0.07|0.01|A|F|1993-03-21|1993-02-09|1993-03-26|NONE|RAIL|ully special frets. furiously | +83113|431492|44001|3|38|54091.86|0.08|0.01|A|F|1993-03-15|1993-01-26|1993-03-16|NONE|SHIP|ironic, silent excuses play entici| +83113|72749|35251|4|14|24104.36|0.08|0.04|R|F|1993-03-18|1993-02-05|1993-03-21|COLLECT COD|FOB|t quickly. furiously final excu| +83113|683624|8651|5|5|8037.95|0.00|0.03|R|F|1993-03-12|1993-02-14|1993-03-19|NONE|FOB|atelets nod. instruc| +83114|352545|2546|1|27|43133.31|0.09|0.03|N|O|1998-03-25|1998-04-04|1998-04-19|TAKE BACK RETURN|FOB|. furiously special requests across the th| +83114|207479|19984|2|44|61004.24|0.06|0.06|N|O|1998-06-20|1998-05-09|1998-06-25|DELIVER IN PERSON|FOB|was slyly.| +83114|95722|33226|3|9|15459.48|0.00|0.04|N|O|1998-03-22|1998-04-06|1998-03-23|TAKE BACK RETURN|SHIP| are slyly regular e| +83114|786908|36909|4|7|13964.09|0.04|0.00|N|O|1998-03-20|1998-04-19|1998-04-13|COLLECT COD|FOB|ckly regular packages hagg| +83114|554690|42224|5|20|34893.40|0.10|0.05|N|O|1998-05-18|1998-05-01|1998-05-27|COLLECT COD|AIR|al foxes! fina| +83115|301766|14273|1|23|40658.25|0.05|0.07|N|O|1996-07-13|1996-07-07|1996-07-15|NONE|AIR|t fluffily final a| +83115|768725|18726|2|17|30492.73|0.07|0.00|N|O|1996-08-04|1996-07-18|1996-08-21|DELIVER IN PERSON|SHIP|o beans toward the furiousl| +83116|78431|40933|1|36|50739.48|0.06|0.08|R|F|1994-05-13|1994-05-04|1994-05-25|COLLECT COD|SHIP|to the dependencies.| +83116|184754|22264|2|9|16548.75|0.10|0.06|R|F|1994-03-01|1994-04-04|1994-03-05|TAKE BACK RETURN|FOB|nusual requests sublate blithely about t| +83116|160175|35182|3|12|14822.04|0.05|0.07|A|F|1994-02-26|1994-04-14|1994-03-27|DELIVER IN PERSON|AIR|ans. bold, regular requests nag slyly f| +83116|60888|10889|4|14|25884.32|0.08|0.05|R|F|1994-05-02|1994-03-21|1994-05-24|TAKE BACK RETURN|RAIL|quests haggle carefully across the furiousl| +83116|331638|19157|5|42|70124.04|0.03|0.08|A|F|1994-05-03|1994-03-07|1994-05-05|COLLECT COD|REG AIR|ully about the ironi| +83116|832191|7224|6|31|34817.65|0.03|0.08|A|F|1994-06-05|1994-04-28|1994-06-12|COLLECT COD|SHIP|thely unusual requests. even dolphins haggl| +83116|625625|13162|7|8|12404.72|0.05|0.02|R|F|1994-04-07|1994-04-22|1994-04-11|DELIVER IN PERSON|TRUCK| nag quickly boldly pending deposits. slyly| +83117|869462|19463|1|50|71571.00|0.03|0.05|N|O|1996-12-11|1997-02-05|1996-12-27|TAKE BACK RETURN|RAIL| ironic deposits. pending instructions ou| +83118|661787|36814|1|40|69950.00|0.09|0.00|A|F|1994-08-10|1994-08-11|1994-09-08|COLLECT COD|REG AIR|ending accounts affix furiou| +83118|643111|43112|2|13|13703.04|0.01|0.06|A|F|1994-06-20|1994-08-08|1994-07-05|NONE|AIR|pecial packages promise quickly thin | +83118|760280|10281|3|41|54950.25|0.04|0.08|A|F|1994-07-03|1994-07-22|1994-08-01|NONE|SHIP|hely special gifts b| +83118|10416|10417|4|26|34486.66|0.09|0.05|A|F|1994-07-30|1994-07-01|1994-08-04|NONE|TRUCK|lites boost blithely carefully final i| +83118|57105|44609|5|33|35049.30|0.09|0.05|A|F|1994-07-20|1994-06-20|1994-07-29|NONE|FOB|unusual dinos. regular, unusual deposi| +83119|149462|11965|1|28|42320.88|0.05|0.05|A|F|1995-05-13|1995-04-05|1995-05-31|DELIVER IN PERSON|RAIL|uickly regular, express pains. furiously | +83144|451965|39493|1|14|26837.16|0.05|0.06|R|F|1995-05-12|1995-05-06|1995-05-24|DELIVER IN PERSON|MAIL|y special accou| +83144|163284|25788|2|42|56585.76|0.01|0.05|N|F|1995-06-15|1995-05-11|1995-06-21|TAKE BACK RETURN|SHIP|zle quickly according | +83144|306669|31682|3|5|8378.25|0.00|0.04|R|F|1995-05-14|1995-06-06|1995-05-25|DELIVER IN PERSON|AIR|ual accounts. even, bold pi| +83145|957595|32634|1|9|14872.95|0.07|0.01|N|O|1997-06-12|1997-06-03|1997-06-29|COLLECT COD|RAIL|he bold mul| +83145|293241|43242|2|12|14810.76|0.02|0.01|N|O|1997-07-31|1997-06-23|1997-08-09|NONE|SHIP|ests cajole carefully accord| +83145|498763|11273|3|9|15855.66|0.08|0.06|N|O|1997-07-17|1997-06-04|1997-07-29|TAKE BACK RETURN|SHIP|requests. permanently final request| +83146|386307|48815|1|17|23685.93|0.07|0.00|N|O|1997-08-02|1997-06-08|1997-08-04|NONE|SHIP|furiously even ideas after the| +83146|652466|2467|2|17|24113.31|0.03|0.05|N|O|1997-05-06|1997-06-25|1997-05-10|NONE|SHIP| the carefully unusual requests. fluffi| +83146|982474|44994|3|8|12451.44|0.03|0.05|N|O|1997-06-02|1997-07-09|1997-06-15|COLLECT COD|REG AIR|lithely unusual waters. instructions boost| +83147|634667|9692|1|1|1601.63|0.00|0.08|R|F|1994-01-10|1993-12-15|1994-01-19|NONE|TRUCK|furiously. blithely re| +83147|843536|43537|2|23|34028.27|0.01|0.03|R|F|1994-01-05|1993-12-03|1994-01-20|NONE|SHIP|pades serve fluffily deposits. blithely | +83147|304272|16779|3|31|39564.06|0.09|0.01|A|F|1993-11-13|1994-01-04|1993-12-11|TAKE BACK RETURN|AIR|are final pack| +83148|815709|40742|1|50|81233.00|0.07|0.03|N|O|1995-10-19|1995-09-19|1995-10-27|DELIVER IN PERSON|AIR|nts could have to are fluffily unusual| +83148|616662|16663|2|20|31572.60|0.07|0.07|N|O|1995-10-23|1995-09-24|1995-11-22|TAKE BACK RETURN|RAIL| bold deposits haggle fluffily according t| +83148|224595|24596|3|20|30391.60|0.06|0.08|N|O|1995-11-28|1995-11-01|1995-12-16|NONE|AIR|carefully final theodolites are among | +83148|764474|26990|4|19|29230.36|0.02|0.00|N|O|1995-08-26|1995-10-20|1995-08-29|TAKE BACK RETURN|FOB|s? ironically special theodolites wake. sp| +83148|503049|28070|5|40|42080.80|0.00|0.00|N|O|1995-08-29|1995-10-01|1995-09-12|TAKE BACK RETURN|SHIP|ly ideas. final theodolit| +83148|727943|40458|6|13|25621.83|0.05|0.07|N|O|1995-10-07|1995-11-11|1995-10-22|DELIVER IN PERSON|FOB|out the carefully express deposits haggle p| +83148|524177|11708|7|40|48046.00|0.00|0.07|N|O|1995-09-05|1995-10-13|1995-09-07|DELIVER IN PERSON|TRUCK| quickly even reque| +83149|828129|15678|1|49|51796.92|0.09|0.05|R|F|1995-03-25|1995-05-25|1995-04-24|COLLECT COD|TRUCK|l theodolites nag idly accord| +83150|660530|23044|1|37|55148.50|0.10|0.05|N|O|1996-04-10|1996-05-01|1996-05-08|TAKE BACK RETURN|SHIP|e even deposits. decoys | +83151|713418|38447|1|32|45804.16|0.03|0.07|N|O|1996-10-27|1996-09-10|1996-11-14|DELIVER IN PERSON|REG AIR|kages nag | +83151|412793|12794|2|17|28998.09|0.04|0.04|N|O|1996-08-30|1996-09-21|1996-09-05|COLLECT COD|SHIP|egrate bold| +83151|805001|42550|3|39|35332.44|0.10|0.00|N|O|1996-11-12|1996-08-26|1996-11-24|NONE|TRUCK|xpress multipliers. care| +83151|642265|17290|4|42|50703.66|0.05|0.03|N|O|1996-08-30|1996-08-22|1996-09-09|TAKE BACK RETURN|SHIP|onic asymptotes? furiously bol| +83151|533772|46283|5|36|65007.00|0.09|0.06|N|O|1996-09-17|1996-09-05|1996-10-05|DELIVER IN PERSON|TRUCK|ckly ironic deposits use car| +83176|145903|20908|1|31|60415.90|0.08|0.08|N|O|1997-10-17|1997-11-28|1997-11-13|TAKE BACK RETURN|SHIP| silent de| +83176|190254|15261|2|25|33606.25|0.06|0.01|N|O|1997-11-22|1997-11-11|1997-12-11|TAKE BACK RETURN|TRUCK|blithely special | +83176|585167|22701|3|33|41320.62|0.02|0.05|N|O|1998-01-11|1997-12-16|1998-01-23|DELIVER IN PERSON|REG AIR|st. ironic, ironic pinto beans integrate| +83176|888470|26022|4|20|29168.60|0.08|0.07|N|O|1998-01-18|1997-11-15|1998-01-26|TAKE BACK RETURN|AIR|s. carefully regular requests boost al| +83176|514149|26660|5|37|43035.44|0.06|0.03|N|O|1997-11-04|1997-10-24|1997-11-15|TAKE BACK RETURN|SHIP|uests doze furiously| +83176|294232|31748|6|25|30655.50|0.04|0.00|N|O|1997-10-11|1997-11-14|1997-10-19|TAKE BACK RETURN|RAIL|ffily. doggedly regular requests haggle | +83177|929097|41616|1|10|11260.50|0.08|0.02|N|O|1998-09-17|1998-07-10|1998-10-08|DELIVER IN PERSON|SHIP|; quietly final ex| +83177|332951|7964|2|4|7935.76|0.04|0.08|N|O|1998-06-11|1998-07-05|1998-07-09|NONE|SHIP|. regular requests mold| +83177|898623|36175|3|4|6486.32|0.05|0.07|N|O|1998-06-15|1998-07-17|1998-06-19|COLLECT COD|RAIL|ake pinto b| +83177|156219|31226|4|12|15302.52|0.08|0.02|N|O|1998-06-17|1998-08-05|1998-06-29|DELIVER IN PERSON|FOB|t the ironic p| +83178|72988|35490|1|4|7843.92|0.00|0.00|N|O|1997-11-04|1997-09-30|1997-11-08|COLLECT COD|RAIL| ironic pinto beans haggle carefully bes| +83178|700626|25655|2|28|45544.52|0.09|0.07|N|O|1997-08-10|1997-09-29|1997-09-04|COLLECT COD|REG AIR|according to the furiousl| +83179|141849|29356|1|42|79415.28|0.10|0.04|A|F|1995-03-22|1995-03-17|1995-03-23|TAKE BACK RETURN|TRUCK|e slyly about the special excuses. final| +83179|53593|3594|2|13|20105.67|0.08|0.05|A|F|1995-03-12|1995-03-13|1995-03-15|COLLECT COD|SHIP|ly ruthless packages. carefully e| +83179|734694|22237|3|48|82975.68|0.02|0.06|A|F|1995-04-07|1995-02-09|1995-04-29|COLLECT COD|MAIL|lly unusual reques| +83179|996044|8564|4|20|22800.00|0.01|0.04|A|F|1995-02-27|1995-02-23|1995-03-29|COLLECT COD|FOB|lar accounts wake sl| +83179|495569|8079|5|3|4693.62|0.06|0.00|A|F|1995-03-01|1995-01-23|1995-03-28|TAKE BACK RETURN|AIR|riously even pinto beans. ironi| +83179|12934|435|6|30|55407.90|0.05|0.02|R|F|1995-02-24|1995-02-25|1995-02-27|DELIVER IN PERSON|FOB|xpress theodolites. s| +83180|759683|22199|1|26|45308.90|0.04|0.01|N|O|1995-09-24|1995-09-21|1995-10-20|DELIVER IN PERSON|FOB|ests. care| +83180|989901|39902|2|50|99543.00|0.00|0.05|N|O|1995-08-13|1995-08-23|1995-08-31|DELIVER IN PERSON|MAIL|ncies use carefully. quick| +83180|255443|30454|3|1|1398.43|0.05|0.08|N|O|1995-09-05|1995-08-05|1995-09-24|COLLECT COD|MAIL|its doubt along the | +83180|220521|33026|4|12|17298.12|0.00|0.06|N|O|1995-10-02|1995-08-28|1995-11-01|COLLECT COD|RAIL|out the express accounts. even, speci| +83181|999568|24607|1|10|16675.20|0.06|0.00|A|F|1993-07-25|1993-06-10|1993-07-29|TAKE BACK RETURN|MAIL|ular pinto beans. unusual| +83181|727848|15391|2|12|22509.72|0.02|0.03|R|F|1993-08-27|1993-08-02|1993-09-12|NONE|RAIL|ly unusual pinto beans boost carefully exc| +83181|928787|3824|3|11|19973.14|0.01|0.03|A|F|1993-09-05|1993-07-21|1993-09-28|TAKE BACK RETURN|MAIL|l ideas. evenly final pa| +83182|801239|38788|1|13|14822.47|0.08|0.00|A|F|1994-08-18|1994-06-16|1994-09-16|TAKE BACK RETURN|TRUCK|regular dep| +83182|409192|21701|2|39|42945.63|0.08|0.07|R|F|1994-08-03|1994-06-15|1994-08-31|NONE|REG AIR|ffily express requests. final, regula| +83182|289847|2353|3|35|64289.05|0.10|0.06|A|F|1994-05-22|1994-07-07|1994-06-02|DELIVER IN PERSON|TRUCK|r the special, i| +83182|446793|9302|4|34|59152.18|0.02|0.01|A|F|1994-05-25|1994-06-18|1994-06-10|NONE|TRUCK| the slyly e| +83183|78908|3911|1|27|50946.30|0.07|0.05|A|F|1994-01-24|1994-01-10|1994-02-01|DELIVER IN PERSON|AIR|hily above the ironic, e| +83183|197180|34690|2|32|40869.76|0.08|0.01|A|F|1993-12-31|1993-12-23|1994-01-22|NONE|RAIL|ithely regular requests. quick| +83183|996156|21195|3|39|48832.29|0.05|0.00|R|F|1993-12-15|1993-12-22|1994-01-02|DELIVER IN PERSON|RAIL|phins. regu| +83183|388407|13422|4|21|31403.19|0.07|0.01|R|F|1993-12-02|1994-01-29|1993-12-26|NONE|MAIL|old requests. blit| +83208|877338|14890|1|46|60503.34|0.01|0.04|N|O|1998-02-09|1998-04-01|1998-03-07|COLLECT COD|MAIL|l theodolites. | +83209|655098|42638|1|46|48440.76|0.05|0.06|N|O|1996-05-04|1996-04-25|1996-05-21|TAKE BACK RETURN|AIR|yly quickly regular requests. dep| +83209|221606|46615|2|45|68741.55|0.10|0.02|N|O|1996-05-28|1996-03-11|1996-06-04|TAKE BACK RETURN|MAIL|uriously along th| +83209|516311|28822|3|28|37164.12|0.08|0.03|N|O|1996-06-09|1996-03-24|1996-06-30|DELIVER IN PERSON|AIR|nag carefully.| +83209|628801|16338|4|49|84758.73|0.02|0.04|N|O|1996-04-24|1996-03-23|1996-05-07|TAKE BACK RETURN|TRUCK|o the furiously bold theodolites ser| +83209|252297|14803|5|13|16240.64|0.07|0.04|N|O|1996-06-04|1996-04-06|1996-06-06|NONE|SHIP| asymptotes haggle across the blithely| +83209|352630|2631|6|38|63939.56|0.01|0.06|N|O|1996-05-16|1996-04-23|1996-06-13|DELIVER IN PERSON|SHIP|egular packages | +83209|638367|25904|7|5|6526.65|0.03|0.08|N|O|1996-04-21|1996-05-08|1996-05-04|COLLECT COD|AIR|iously bold| +83210|17990|42991|1|9|17171.91|0.08|0.03|A|F|1995-01-05|1995-01-22|1995-01-07|NONE|SHIP|platelets. quickly brave deposits about t| +83210|352360|14868|2|13|18360.55|0.05|0.05|A|F|1995-01-11|1995-02-13|1995-01-25|NONE|TRUCK| above the carefully final| +83210|99659|24662|3|15|24879.75|0.00|0.04|R|F|1995-01-28|1995-01-23|1995-02-16|TAKE BACK RETURN|AIR|y carefully silent deposits. slyly regular| +83210|966201|41240|4|18|22808.88|0.03|0.05|R|F|1994-12-19|1995-02-17|1995-01-05|COLLECT COD|RAIL|elets believe carefully. car| +83210|935886|48405|5|28|53811.52|0.04|0.08|R|F|1995-03-27|1995-02-27|1995-04-17|TAKE BACK RETURN|FOB| multipliers. in| +83211|29754|17255|1|22|37042.50|0.09|0.06|R|F|1993-07-23|1993-08-06|1993-07-25|TAKE BACK RETURN|RAIL|s requests. furiously cl| +83211|72845|47848|2|4|7271.36|0.02|0.07|R|F|1993-08-11|1993-09-03|1993-08-14|NONE|TRUCK|ctions integrat| +83211|305115|5116|3|30|33603.00|0.02|0.03|R|F|1993-08-05|1993-08-29|1993-08-08|COLLECT COD|SHIP|arefully above the blithely bold d| +83212|716823|29338|1|26|47834.54|0.07|0.02|N|O|1997-11-15|1997-11-28|1997-12-08|TAKE BACK RETURN|RAIL| deposits.| +83212|631629|44142|2|14|21848.26|0.09|0.05|N|O|1998-01-14|1998-01-01|1998-01-30|DELIVER IN PERSON|MAIL|s deposits hinder fluffily e| +83212|783325|20871|3|27|38023.83|0.00|0.04|N|O|1998-01-11|1997-11-09|1998-01-15|TAKE BACK RETURN|REG AIR|even pinto beans against the slyly | +83212|332203|44710|4|14|17292.66|0.05|0.00|N|O|1998-01-30|1997-12-22|1998-02-24|NONE|FOB|ajole carefully packages. silent accoun| +83212|325068|81|5|46|50280.30|0.07|0.01|N|O|1997-12-09|1998-01-03|1997-12-17|NONE|SHIP|y deposits subl| +83212|412686|12687|6|48|76735.68|0.03|0.07|N|O|1998-01-20|1997-12-02|1998-02-19|TAKE BACK RETURN|AIR|ounts are. even instructions boost furiou| +83212|10939|23440|7|41|75847.13|0.07|0.03|N|O|1997-12-09|1997-12-16|1998-01-05|COLLECT COD|AIR|y even pla| +83213|840475|28024|1|20|28308.60|0.08|0.05|A|F|1995-02-15|1995-04-15|1995-03-13|TAKE BACK RETURN|RAIL|ounts. blithely regular requests sleep.| +83213|858949|33984|2|14|26710.60|0.04|0.04|A|F|1995-05-07|1995-04-16|1995-05-11|TAKE BACK RETURN|SHIP|ly ironically regular deposits.| +83213|345723|45724|3|6|10612.26|0.08|0.04|A|F|1995-02-11|1995-02-26|1995-03-06|TAKE BACK RETURN|SHIP| sleep permanently against the special| +83213|560866|35889|4|14|26975.76|0.02|0.02|R|F|1995-03-29|1995-04-02|1995-04-14|COLLECT COD|MAIL| use furiously ac| +83213|474744|24745|5|7|12031.04|0.06|0.02|A|F|1995-03-01|1995-03-03|1995-03-21|NONE|MAIL|te fluffily doggedly final ideas. | +83214|735471|23014|1|21|31635.24|0.06|0.03|N|O|1996-05-28|1996-06-16|1996-06-04|TAKE BACK RETURN|AIR|s across the unusual, even as| +83214|57534|45038|2|1|1491.53|0.03|0.05|N|O|1996-08-20|1996-06-17|1996-08-23|TAKE BACK RETURN|FOB|uests. fluffily final ideas impress al| +83215|391800|4308|1|11|20809.69|0.06|0.00|N|O|1998-06-25|1998-04-27|1998-07-14|COLLECT COD|AIR|e regularly final instructions. | +83215|977420|2459|2|3|4492.14|0.05|0.06|N|O|1998-05-13|1998-05-24|1998-06-01|TAKE BACK RETURN|RAIL|se across the dogged, even deposits. ca| +83215|494049|6559|3|47|49021.94|0.06|0.03|N|O|1998-06-23|1998-05-20|1998-07-20|DELIVER IN PERSON|FOB|yly pending notornis detect betwe| +83215|470318|45337|4|26|33495.54|0.04|0.08|N|O|1998-04-15|1998-05-05|1998-04-30|NONE|REG AIR| foxes wake quickly along the silent, f| +83215|626355|26356|5|26|33314.32|0.01|0.04|N|O|1998-06-22|1998-05-17|1998-07-07|TAKE BACK RETURN|RAIL|s boost furiously. quickly specia| +83215|138243|746|6|43|55093.32|0.02|0.07|N|O|1998-07-09|1998-05-26|1998-07-24|DELIVER IN PERSON|REG AIR|oxes are carefully express deposi| +83240|600623|13136|1|2|3047.18|0.05|0.02|R|F|1995-03-12|1995-04-23|1995-04-01|TAKE BACK RETURN|TRUCK| blithely even requests maintain furiousl| +83240|663510|38537|2|39|57465.72|0.08|0.08|N|O|1995-06-25|1995-05-20|1995-07-18|COLLECT COD|AIR|ut the pending fox| +83240|608778|21291|3|28|47228.72|0.09|0.04|R|F|1995-05-13|1995-05-21|1995-06-07|COLLECT COD|SHIP|ckages cajole. pinto beans doze qui| +83240|718020|30535|4|38|39443.62|0.09|0.05|A|F|1995-05-04|1995-05-24|1995-05-17|DELIVER IN PERSON|MAIL|e carefully| +83240|754046|4047|5|31|34100.31|0.05|0.07|A|F|1995-03-29|1995-05-06|1995-04-27|COLLECT COD|RAIL|the blithely| +83241|972507|47546|1|2|3158.92|0.07|0.03|N|O|1996-09-12|1996-07-23|1996-09-19|COLLECT COD|TRUCK|haggle blithely slyly regular asy| +83241|920633|45670|2|17|28111.03|0.08|0.08|N|O|1996-06-11|1996-08-21|1996-06-14|DELIVER IN PERSON|FOB|s. carefully sly | +83241|69703|19704|3|33|55199.10|0.08|0.04|N|O|1996-08-10|1996-08-12|1996-08-16|COLLECT COD|REG AIR|e silently furiously special idea| +83241|488447|38448|4|7|10047.94|0.01|0.07|N|O|1996-06-09|1996-09-02|1996-07-06|TAKE BACK RETURN|RAIL|all wake ironic dependencies-- fluffil| +83242|583688|8711|1|8|14173.28|0.02|0.03|A|F|1994-07-17|1994-07-30|1994-07-31|COLLECT COD|RAIL|packages boost across the quickly ironic id| +83242|43051|18052|2|41|40756.05|0.09|0.06|A|F|1994-07-23|1994-07-02|1994-08-16|TAKE BACK RETURN|SHIP|unts. stealthily brave pack| +83242|545741|45742|3|24|42881.28|0.00|0.00|A|F|1994-09-01|1994-06-24|1994-09-28|NONE|REG AIR|ctions wake slyly a| +83242|261709|11710|4|42|70168.98|0.04|0.02|A|F|1994-05-20|1994-08-07|1994-05-29|TAKE BACK RETURN|REG AIR|yly ironic requests. quickly id| +83242|534705|47216|5|45|78285.60|0.09|0.02|R|F|1994-05-28|1994-06-28|1994-06-11|TAKE BACK RETURN|REG AIR| affix slyly up the even foxes! | +83242|778088|28089|6|37|43143.85|0.06|0.08|R|F|1994-09-07|1994-07-26|1994-09-26|DELIVER IN PERSON|FOB|ounts haggle slowly across the fo| +83242|317136|4655|7|25|28828.00|0.06|0.02|R|F|1994-05-17|1994-06-17|1994-06-15|TAKE BACK RETURN|TRUCK|ully carefully bold pinto beans. regular, | +83243|94971|32475|1|33|64877.01|0.08|0.01|N|O|1995-07-30|1995-07-08|1995-08-15|TAKE BACK RETURN|MAIL|l, final deposits. special acc| +83243|161073|11074|2|19|21547.33|0.01|0.08|A|F|1995-05-26|1995-07-27|1995-06-10|NONE|REG AIR|y unusual forges. blithely regul| +83243|138732|26239|3|20|35414.60|0.10|0.00|N|F|1995-05-31|1995-08-19|1995-06-21|COLLECT COD|MAIL|e excuses | +83243|668159|30673|4|4|4508.48|0.08|0.02|N|O|1995-07-16|1995-07-03|1995-07-23|NONE|SHIP|ly. regular accounts wake. fin| +83243|732034|44549|5|14|14924.00|0.06|0.02|N|O|1995-07-28|1995-06-30|1995-07-31|NONE|AIR|nusual pack| +83243|285381|47887|6|8|10930.96|0.01|0.06|N|O|1995-08-18|1995-07-10|1995-08-21|NONE|SHIP|nal deposits sleep across the requests.| +83243|394095|19110|7|30|35672.40|0.07|0.07|R|F|1995-06-01|1995-06-27|1995-06-08|DELIVER IN PERSON|MAIL|uctions! ironic depo| +83244|549376|11887|1|17|24230.95|0.02|0.07|A|F|1992-04-28|1992-04-27|1992-05-12|COLLECT COD|MAIL|sly bold a| +83244|352939|15447|2|42|83660.64|0.10|0.01|R|F|1992-04-20|1992-06-01|1992-05-17|DELIVER IN PERSON|MAIL|uthless deposits hag| +83244|832149|32150|3|46|49730.60|0.09|0.07|A|F|1992-06-16|1992-04-21|1992-07-01|DELIVER IN PERSON|FOB|y? enticingly s| +83245|944872|32427|1|10|19168.30|0.08|0.03|N|O|1998-04-04|1998-05-17|1998-04-16|TAKE BACK RETURN|AIR| blithely dogge| +83245|452384|27403|2|46|61472.56|0.08|0.01|N|O|1998-05-31|1998-04-20|1998-06-23|NONE|FOB|unusual foxes cajole blithely about the bli| +83245|202641|40154|3|24|37047.12|0.06|0.05|N|O|1998-02-26|1998-03-22|1998-03-18|DELIVER IN PERSON|TRUCK|ites nag along the carefully ruthles| +83245|786374|48890|4|31|45270.54|0.04|0.08|N|O|1998-04-10|1998-05-10|1998-04-23|DELIVER IN PERSON|RAIL| against the unusual accou| +83245|580607|5630|5|7|11813.06|0.00|0.03|N|O|1998-05-16|1998-04-20|1998-06-13|COLLECT COD|REG AIR|ithely according to the quickly regu| +83245|254791|4792|6|9|15712.02|0.02|0.03|N|O|1998-05-20|1998-03-26|1998-06-07|COLLECT COD|RAIL|st the furiously special deposits boost s| +83246|503946|28967|1|29|56547.68|0.07|0.07|A|F|1992-11-12|1992-10-05|1992-11-20|NONE|FOB|final depo| +83247|571784|21785|1|30|55672.80|0.07|0.05|A|F|1993-06-28|1993-05-22|1993-07-15|DELIVER IN PERSON|REG AIR|latelets wake furiously alongsid| +83247|959972|47530|2|8|16255.44|0.08|0.02|A|F|1993-03-25|1993-05-27|1993-04-19|NONE|FOB|ress, special packages. bold idea| +83247|238952|26465|3|50|94547.00|0.07|0.02|A|F|1993-05-17|1993-05-27|1993-05-28|COLLECT COD|FOB| packages could have| +83247|54068|29071|4|33|33727.98|0.02|0.07|R|F|1993-06-30|1993-05-07|1993-07-29|NONE|FOB|ent theodolites impres| +83247|708199|8200|5|5|6035.80|0.08|0.03|R|F|1993-05-28|1993-04-21|1993-06-27|COLLECT COD|RAIL| fluffily ironic platel| +83247|694604|19631|6|49|78329.93|0.00|0.06|R|F|1993-05-11|1993-06-13|1993-05-30|TAKE BACK RETURN|AIR|he final deposits-- carefully final d| +83272|767338|4884|1|15|21079.50|0.06|0.02|N|O|1996-10-12|1996-11-17|1996-11-02|TAKE BACK RETURN|RAIL|ts haggle ideas. si| +83272|637020|24557|2|31|29666.69|0.00|0.01|N|O|1996-11-21|1996-11-28|1996-11-26|COLLECT COD|MAIL|s the furiously regular ideas. t| +83272|378714|3729|3|23|41232.10|0.01|0.04|N|O|1996-11-29|1996-12-01|1996-12-02|DELIVER IN PERSON|SHIP|al warhorses kind| +83272|44900|7401|4|40|73796.00|0.01|0.07|N|O|1997-01-19|1996-11-26|1997-01-21|NONE|TRUCK|odolites. deposits haggle | +83272|628988|41501|5|45|86262.75|0.01|0.04|N|O|1996-12-20|1996-12-22|1997-01-18|COLLECT COD|MAIL|onic requests wake blithely idle theodol| +83273|935286|22841|1|44|58134.56|0.02|0.01|N|O|1997-06-29|1997-05-16|1997-07-17|COLLECT COD|SHIP|posits wake carefully fluffily final esca| +83273|341078|41079|2|31|34690.86|0.03|0.02|N|O|1997-06-27|1997-04-18|1997-07-18|TAKE BACK RETURN|RAIL|ven deposits sleep according to | +83273|494187|6697|3|36|42521.76|0.06|0.06|N|O|1997-06-21|1997-05-05|1997-07-06|DELIVER IN PERSON|AIR|express fr| +83273|794053|31599|4|3|3441.06|0.05|0.00|N|O|1997-05-02|1997-04-25|1997-05-12|DELIVER IN PERSON|FOB|c deposits. unusual theodolites according | +83274|53850|41354|1|32|57723.20|0.08|0.00|N|O|1998-05-29|1998-04-29|1998-06-22|TAKE BACK RETURN|SHIP|special platelets are fluffil| +83274|54482|4483|2|30|43094.40|0.09|0.07|N|O|1998-05-05|1998-04-09|1998-05-29|DELIVER IN PERSON|MAIL|ven requests sleep b| +83275|406954|44479|1|42|78159.06|0.04|0.07|N|O|1997-09-19|1997-10-03|1997-09-26|TAKE BACK RETURN|REG AIR|special accounts | +83275|672513|35027|2|27|40107.96|0.03|0.06|N|O|1997-10-09|1997-10-05|1997-10-10|TAKE BACK RETURN|TRUCK|-- fluffily final excuses poach | +83275|909612|47167|3|42|68105.94|0.10|0.04|N|O|1997-07-22|1997-10-05|1997-07-28|TAKE BACK RETURN|REG AIR|arefully final asymptotes c| +83275|835970|35971|4|29|55271.97|0.02|0.05|N|O|1997-09-04|1997-08-15|1997-10-01|TAKE BACK RETURN|SHIP|tructions. accounts play p| +83275|140916|3419|5|12|23482.92|0.04|0.01|N|O|1997-08-27|1997-09-20|1997-09-13|TAKE BACK RETURN|REG AIR|ding, regular instructions. regul| +83275|366027|3549|6|14|15302.14|0.02|0.02|N|O|1997-07-19|1997-09-09|1997-07-27|DELIVER IN PERSON|MAIL| courts are. re| +83275|815251|2800|7|24|27989.04|0.03|0.04|N|O|1997-09-15|1997-08-26|1997-09-18|NONE|SHIP| carefully fluffy deposits. bl| +83276|907970|33007|1|22|43514.46|0.08|0.04|R|F|1993-01-05|1993-03-16|1993-01-12|DELIVER IN PERSON|AIR|ct blithely along the ironi| +83276|238635|26148|2|12|18883.44|0.09|0.02|R|F|1993-01-26|1993-02-23|1993-02-24|TAKE BACK RETURN|REG AIR|fter the blithely quick foxes. u| +83276|723903|11446|3|1|1926.87|0.05|0.04|R|F|1993-03-03|1993-03-18|1993-03-27|TAKE BACK RETURN|TRUCK|nts sleep furiously betw| +83276|634509|34510|4|1|1443.47|0.05|0.03|A|F|1993-04-21|1993-02-17|1993-05-14|DELIVER IN PERSON|AIR| slyly ironic dolphins abov| +83276|178712|41216|5|50|89535.50|0.00|0.04|R|F|1993-03-15|1993-03-08|1993-03-30|NONE|REG AIR|nusual warhorses. | +83276|608174|45711|6|4|4328.56|0.08|0.00|R|F|1993-04-13|1993-02-20|1993-05-08|DELIVER IN PERSON|MAIL|ual attainments. blit| +83276|574764|49787|7|7|12871.18|0.00|0.03|A|F|1993-02-14|1993-03-26|1993-02-19|COLLECT COD|TRUCK|ly even packag| +83277|45252|7753|1|7|8380.75|0.05|0.03|A|F|1994-10-16|1994-12-24|1994-10-26|NONE|RAIL|onic, express instructions cajole. ev| +83277|548752|48753|2|29|52221.17|0.01|0.06|A|F|1994-12-01|1994-11-25|1994-12-05|DELIVER IN PERSON|AIR|es. daringly final account| +83277|871748|46783|3|11|18916.70|0.03|0.03|A|F|1994-11-07|1995-01-01|1994-11-28|NONE|SHIP|ost? regular theodolites integrate ironic | +83278|730178|17721|1|27|32619.78|0.02|0.08|R|F|1994-06-20|1994-07-06|1994-06-24|COLLECT COD|SHIP|es nag pinto be| +83278|89168|26672|2|18|20828.88|0.01|0.06|A|F|1994-09-01|1994-07-25|1994-09-04|TAKE BACK RETURN|FOB|e carefully silent instructions. foxes a| +83278|640583|15608|3|49|74653.95|0.08|0.01|R|F|1994-08-16|1994-07-27|1994-08-29|NONE|RAIL|ests sleep slyly quickly ir| +83278|266499|41510|4|11|16120.28|0.09|0.08|R|F|1994-06-08|1994-07-17|1994-06-12|DELIVER IN PERSON|FOB|nto beans.| +83279|14936|14937|1|45|83291.85|0.02|0.01|N|O|1996-09-15|1996-08-27|1996-09-22|NONE|REG AIR|ts. ironic request| +83279|14946|39947|2|19|35357.86|0.04|0.01|N|O|1996-08-03|1996-09-03|1996-09-02|NONE|MAIL|lyly even foxes are ca| +83279|190672|40673|3|37|65218.79|0.07|0.00|N|O|1996-07-31|1996-08-11|1996-08-25|DELIVER IN PERSON|AIR|. blithely regu| +83279|608629|46166|4|36|55353.24|0.03|0.04|N|O|1996-07-08|1996-08-09|1996-07-15|DELIVER IN PERSON|AIR|nic, express requests. slyly pe| +83279|214928|27433|5|4|7371.64|0.01|0.05|N|O|1996-10-03|1996-08-15|1996-10-04|COLLECT COD|TRUCK|nal ideas. bold theo| +83279|286340|36341|6|2|2652.66|0.06|0.03|N|O|1996-10-26|1996-09-27|1996-11-20|COLLECT COD|REG AIR|nto beans integrate quickly furiou| +83304|799732|12248|1|1|1831.70|0.04|0.07|A|F|1993-04-01|1993-05-22|1993-05-01|NONE|RAIL|he furiously ironic excuses wake slyly exc| +83304|92500|5002|2|2|2985.00|0.08|0.02|R|F|1993-06-12|1993-06-02|1993-06-25|TAKE BACK RETURN|RAIL| packages slee| +83304|641988|29525|3|24|46318.80|0.04|0.01|A|F|1993-07-04|1993-05-28|1993-07-23|TAKE BACK RETURN|TRUCK|gular packages? fluffily | +83304|884188|21740|4|27|31647.78|0.03|0.05|R|F|1993-05-09|1993-06-18|1993-06-02|TAKE BACK RETURN|REG AIR|ly unusual foxes. deposits sleep bli| +83305|436645|24170|1|42|66428.04|0.09|0.08|R|F|1992-12-19|1993-02-05|1993-01-16|TAKE BACK RETURN|TRUCK|along the furio| +83305|684243|46757|2|41|50315.61|0.07|0.08|A|F|1993-01-24|1993-01-26|1993-02-05|TAKE BACK RETURN|TRUCK| haggle closely. s| +83305|58334|20836|3|3|3876.99|0.07|0.04|R|F|1993-01-12|1993-02-14|1993-01-28|NONE|AIR|iously regular sentimen| +83305|416775|29284|4|34|57519.50|0.04|0.00|A|F|1993-01-04|1993-02-10|1993-01-25|NONE|FOB|ld, pending deposits--| +83306|221636|46645|1|2|3115.24|0.05|0.05|A|F|1992-05-09|1992-05-12|1992-05-20|DELIVER IN PERSON|REG AIR|lly bold grouches. unusual instructi| +83306|34221|46722|2|14|16173.08|0.02|0.05|R|F|1992-04-28|1992-06-06|1992-05-24|DELIVER IN PERSON|FOB|its affix carefully regular pa| +83306|141932|16937|3|16|31582.88|0.00|0.06|R|F|1992-04-01|1992-06-03|1992-04-02|DELIVER IN PERSON|RAIL|ccounts. slyly ironic accounts sleep eve| +83307|529838|42349|1|25|46695.25|0.07|0.08|N|O|1998-09-10|1998-06-28|1998-09-18|DELIVER IN PERSON|SHIP|ses atop the carefully regular deposits caj| +83307|972298|9856|2|33|45218.25|0.00|0.01|N|O|1998-08-25|1998-06-26|1998-09-04|NONE|REG AIR|hely even requests sleep. c| +83308|882260|7295|1|11|13664.42|0.03|0.03|N|O|1997-09-02|1997-08-19|1997-09-24|TAKE BACK RETURN|TRUCK| requests: even, even accounts wake iro| +83308|128814|16321|2|1|1842.81|0.08|0.08|N|O|1997-10-03|1997-09-17|1997-10-18|NONE|TRUCK|ronic asymptotes against the asymptotes| +83308|971894|46933|3|16|31453.60|0.05|0.04|N|O|1997-08-29|1997-08-11|1997-09-27|TAKE BACK RETURN|AIR|t carefully silently unusual requests. f| +83308|605658|43195|4|5|7818.10|0.05|0.05|N|O|1997-09-03|1997-09-21|1997-09-27|NONE|FOB|y express theodolites ca| +83308|290299|27815|5|11|14182.08|0.04|0.04|N|O|1997-09-12|1997-09-08|1997-09-23|COLLECT COD|FOB|c, silent ideas. regular, pending packa| +83308|52717|40221|6|12|20036.52|0.01|0.01|N|O|1997-10-02|1997-08-04|1997-10-20|DELIVER IN PERSON|REG AIR|ely regular depth| +83308|1891|1892|7|44|78887.16|0.07|0.03|N|O|1997-10-15|1997-08-22|1997-10-31|TAKE BACK RETURN|FOB|ic instructions. | +83309|765989|3535|1|13|26714.35|0.10|0.03|N|O|1995-10-30|1995-11-27|1995-11-26|DELIVER IN PERSON|FOB|fter the requests. carefully unusual | +83309|967565|30085|2|43|70198.36|0.02|0.00|N|O|1996-01-01|1995-12-24|1996-01-11|COLLECT COD|REG AIR|equests wake according to | +83309|861544|24062|3|28|42154.00|0.09|0.01|N|O|1995-11-14|1995-12-21|1995-11-15|COLLECT COD|TRUCK|y blithely regular | +83310|946279|8798|1|50|66261.50|0.10|0.06|N|O|1995-09-30|1995-10-04|1995-10-05|TAKE BACK RETURN|REG AIR|nusual warhorses ha| +83311|276246|1257|1|8|9777.84|0.02|0.02|N|O|1995-11-27|1995-11-27|1995-12-22|COLLECT COD|FOB|cording to the quickly | +83311|862417|24935|2|29|40001.73|0.07|0.01|N|O|1996-02-21|1995-11-26|1996-03-05|COLLECT COD|SHIP| boost. blithely ironic depos| +83311|637218|37219|3|12|13862.16|0.06|0.01|N|O|1996-01-05|1995-12-25|1996-01-21|DELIVER IN PERSON|MAIL| furiously fina| +83311|713820|38849|4|27|49512.33|0.09|0.01|N|O|1995-11-10|1995-12-23|1995-12-02|COLLECT COD|SHIP|pendencies nag c| +83311|163326|836|5|44|61130.08|0.05|0.05|N|O|1995-12-22|1995-12-20|1996-01-06|DELIVER IN PERSON|TRUCK|leep blithely slyly special foxes. slyly | +83311|14173|26674|6|39|42399.63|0.06|0.03|N|O|1995-10-28|1995-12-09|1995-11-24|NONE|RAIL|e pains. carefully even p| +83336|242610|17619|1|3|4657.80|0.06|0.00|N|O|1996-12-21|1996-12-07|1997-01-14|COLLECT COD|MAIL|shall use blithe| +83336|546070|46071|2|21|23437.05|0.08|0.07|N|O|1996-10-17|1996-12-09|1996-11-07|COLLECT COD|MAIL| unusual deposits.| +83336|792698|30244|3|42|75207.72|0.03|0.03|N|O|1996-10-16|1996-12-25|1996-10-28|COLLECT COD|REG AIR|es detect along the reg| +83336|868039|18040|4|12|12083.88|0.07|0.08|N|O|1996-12-13|1996-12-08|1996-12-22|TAKE BACK RETURN|REG AIR|y regular accounts cajol| +83336|126547|14054|5|8|12588.32|0.01|0.00|N|O|1996-10-30|1996-12-13|1996-11-14|TAKE BACK RETURN|AIR|e alongside of the blithely s| +83336|869168|19169|6|23|26153.76|0.06|0.07|N|O|1996-12-09|1996-12-09|1996-12-28|DELIVER IN PERSON|FOB|ly regular accounts. quickly u| +83337|245561|45562|1|7|10545.85|0.10|0.08|R|F|1992-03-16|1992-03-14|1992-04-08|DELIVER IN PERSON|FOB|egular accounts cajol| +83337|133547|21054|2|36|56899.44|0.03|0.08|A|F|1992-04-09|1992-03-10|1992-04-22|DELIVER IN PERSON|RAIL|ole slyly spec| +83337|509946|22457|3|17|33250.64|0.05|0.02|A|F|1992-03-09|1992-04-06|1992-03-28|TAKE BACK RETURN|REG AIR|eodolites use. unusual dependencies boost| +83337|653596|16110|4|14|21693.84|0.07|0.06|R|F|1992-02-26|1992-04-07|1992-03-22|COLLECT COD|RAIL|efully against the furiously| +83337|971257|46296|5|35|46487.35|0.03|0.00|R|F|1992-01-09|1992-03-12|1992-02-07|DELIVER IN PERSON|TRUCK|ackages-- carefull| +83338|534620|22151|1|16|26473.60|0.05|0.08|R|F|1993-02-03|1993-01-15|1993-02-11|NONE|REG AIR|xcuses wake carefully: bli| +83338|357524|20032|2|23|36374.73|0.01|0.00|A|F|1993-02-18|1993-02-13|1993-02-25|TAKE BACK RETURN|REG AIR|s. quickly even| +83338|893210|5728|3|8|9625.36|0.03|0.01|R|F|1993-01-05|1993-01-13|1993-01-15|COLLECT COD|FOB|ong the final pac| +83338|172939|22940|4|48|96572.64|0.08|0.08|R|F|1993-03-03|1993-02-10|1993-03-28|DELIVER IN PERSON|FOB|ash slyly ironic| +83338|575627|25628|5|25|42565.00|0.07|0.00|A|F|1992-12-01|1993-02-01|1992-12-23|NONE|TRUCK|up the ironic packages. carefull| +83339|663745|26259|1|28|47843.88|0.10|0.01|R|F|1995-04-04|1995-02-11|1995-05-04|NONE|AIR| blithely. special, unusual forg| +83339|550622|25645|2|40|66904.00|0.02|0.08|A|F|1995-01-10|1995-02-17|1995-01-15|DELIVER IN PERSON|MAIL|ffily-- regular, express theodolites ki| +83339|303472|3473|3|5|7377.30|0.01|0.08|R|F|1995-02-27|1995-01-23|1995-02-28|TAKE BACK RETURN|TRUCK|es cajole carefully final| +83339|441834|29359|4|45|79911.45|0.03|0.05|A|F|1995-02-15|1995-03-04|1995-03-02|NONE|SHIP|s along the| +83339|890854|3372|5|20|36896.20|0.08|0.08|A|F|1995-02-22|1995-02-07|1995-03-05|TAKE BACK RETURN|REG AIR|e blithely bold deposits. blithely pendin| +83339|566455|41478|6|1|1521.43|0.04|0.00|A|F|1995-04-20|1995-02-10|1995-04-24|TAKE BACK RETURN|FOB|eas: slyly unusual| +83340|506125|18636|1|39|44112.90|0.00|0.00|N|O|1997-08-18|1997-08-21|1997-09-05|COLLECT COD|RAIL| detect carefully. quickly even | +83340|430730|5747|2|6|9964.26|0.02|0.00|N|O|1997-09-27|1997-08-03|1997-10-06|DELIVER IN PERSON|AIR| the blithely express instructions use | +83340|274804|24805|3|8|14230.32|0.08|0.08|N|O|1997-09-04|1997-07-30|1997-09-11|DELIVER IN PERSON|AIR|uests run ca| +83340|620168|20169|4|20|21762.60|0.01|0.04|N|O|1997-07-02|1997-08-28|1997-07-26|TAKE BACK RETURN|FOB|nal packag| +83340|154604|42114|5|5|8293.00|0.00|0.00|N|O|1997-10-10|1997-08-27|1997-11-06|TAKE BACK RETURN|RAIL|es. slyly unusual deposits engage | +83340|427873|40382|6|28|50423.80|0.07|0.08|N|O|1997-07-22|1997-07-28|1997-08-11|TAKE BACK RETURN|AIR|ts haggle carefully carefully bold pa| +83341|701383|1384|1|27|37377.45|0.08|0.05|A|F|1992-09-25|1992-07-29|1992-10-07|COLLECT COD|SHIP|y regular re| +83342|981940|6979|1|1|2021.90|0.01|0.03|N|O|1995-07-26|1995-09-03|1995-08-25|TAKE BACK RETURN|MAIL|final pinto beans sleep blithely; unusual, | +83343|485328|10347|1|32|42025.60|0.08|0.06|A|F|1993-04-25|1993-03-31|1993-05-15|TAKE BACK RETURN|SHIP|hless accounts sle| +83368|926538|26539|1|8|12515.92|0.00|0.00|N|O|1996-09-08|1996-07-23|1996-10-03|NONE|FOB|ents across the quickly id| +83368|309443|9444|2|14|20334.02|0.09|0.02|N|O|1996-09-14|1996-08-07|1996-10-03|DELIVER IN PERSON|SHIP|heodolites:| +83368|792753|5269|3|46|84903.12|0.09|0.02|N|O|1996-08-14|1996-06-26|1996-08-29|COLLECT COD|FOB|e fluffily regular requests. blithe as| +83368|798782|36328|4|41|77110.75|0.02|0.08|N|O|1996-06-06|1996-06-27|1996-06-23|TAKE BACK RETURN|SHIP|telets grow carefully against the| +83368|126464|38967|5|20|29809.20|0.07|0.05|N|O|1996-09-03|1996-07-24|1996-09-11|DELIVER IN PERSON|REG AIR|yly regular accounts boost | +83369|56503|6504|1|37|54001.50|0.07|0.08|A|F|1995-02-16|1995-01-20|1995-03-06|TAKE BACK RETURN|FOB|en accounts sleep furiously fluffi| +83369|635822|48335|2|41|72069.39|0.02|0.07|A|F|1994-11-30|1995-01-28|1994-12-03|TAKE BACK RETURN|RAIL|ons sleep furiously carefully express theo| +83369|243885|18894|3|9|16459.83|0.06|0.08|A|F|1995-01-06|1994-12-10|1995-02-01|COLLECT COD|MAIL|ites detect. furi| +83369|961184|11185|4|32|39844.48|0.02|0.06|R|F|1994-11-11|1995-01-12|1994-12-03|TAKE BACK RETURN|AIR|ke after the b| +83370|607252|32277|1|39|45209.58|0.07|0.03|N|O|1995-08-30|1995-07-26|1995-09-10|COLLECT COD|FOB|gular sauternes are | +83370|80345|42847|2|8|10602.72|0.01|0.05|N|O|1995-07-14|1995-06-08|1995-07-19|DELIVER IN PERSON|AIR|ges may boost carefully even ex| +83370|346882|34401|3|25|48221.75|0.01|0.05|A|F|1995-05-16|1995-07-09|1995-05-17|NONE|FOB| deposits use about the quickly special fo| +83370|44425|6926|4|28|38343.76|0.03|0.06|N|O|1995-08-08|1995-07-16|1995-08-18|COLLECT COD|RAIL|ly blithely final accounts.| +83370|641419|28956|5|42|57135.96|0.06|0.08|N|O|1995-06-23|1995-07-15|1995-07-19|TAKE BACK RETURN|TRUCK| engage bold accounts. bli| +83370|326822|39329|6|23|42522.63|0.06|0.00|A|F|1995-05-06|1995-06-12|1995-05-22|DELIVER IN PERSON|FOB|s. ruthlessly final theodolites boost| +83370|885345|35346|7|28|37248.40|0.00|0.07|N|O|1995-08-29|1995-06-07|1995-09-01|TAKE BACK RETURN|RAIL|s promise. requests haggle. r| +83371|986595|49115|1|12|20178.60|0.07|0.08|A|F|1994-03-31|1994-03-26|1994-04-10|TAKE BACK RETURN|RAIL|ep fluffily according to the blithel| +83372|984070|34071|1|36|41545.08|0.08|0.01|A|F|1995-01-24|1995-01-15|1995-02-21|COLLECT COD|SHIP|ate. slyly even requests cajole r| +83372|263399|38410|2|49|66756.62|0.01|0.08|A|F|1995-01-18|1995-02-26|1995-01-25|COLLECT COD|TRUCK|he quickly regular ideas. slyly express| +83372|933476|21031|3|27|40754.61|0.10|0.04|R|F|1995-02-28|1995-02-08|1995-03-15|TAKE BACK RETURN|TRUCK|lar deposits. slyly s| +83373|661202|11203|1|49|56995.33|0.08|0.02|N|O|1998-02-24|1998-04-05|1998-03-23|TAKE BACK RETURN|FOB|ackages. blithely unusual | +83373|809599|34632|2|38|57324.90|0.00|0.04|N|O|1998-04-10|1998-03-27|1998-05-01|NONE|TRUCK|dolites according to | +83373|922527|10082|3|37|57330.76|0.06|0.07|N|O|1998-04-11|1998-02-21|1998-04-16|NONE|FOB|es-- unusual pin| +83373|902896|15415|4|32|60763.20|0.06|0.00|N|O|1998-03-17|1998-02-21|1998-04-05|COLLECT COD|FOB| furiously slyly regula| +83373|970999|21000|5|31|64168.45|0.05|0.02|N|O|1998-05-02|1998-03-07|1998-05-10|TAKE BACK RETURN|RAIL| pinto beans sleep around the | +83373|571258|21259|6|37|49181.51|0.10|0.00|N|O|1998-03-01|1998-03-31|1998-03-03|NONE|MAIL|counts. regular| +83373|120041|45046|7|49|51990.96|0.05|0.06|N|O|1998-05-06|1998-02-16|1998-05-21|NONE|TRUCK|y even deposits sleep furiousl| +83374|518017|18018|1|50|51749.50|0.05|0.03|R|F|1993-03-19|1993-02-11|1993-03-29|TAKE BACK RETURN|AIR|ructions are carefully regular packag| +83374|309017|46536|2|28|28728.00|0.07|0.06|R|F|1993-03-20|1993-03-19|1993-03-26|TAKE BACK RETURN|AIR|usual, regular fo| +83374|632291|7316|3|23|28134.98|0.06|0.01|R|F|1993-03-13|1993-03-10|1993-04-10|COLLECT COD|TRUCK|dependencies haggle express dep| +83374|903343|15862|4|36|48466.80|0.07|0.06|A|F|1993-02-23|1993-02-02|1993-02-25|COLLECT COD|TRUCK|beans sleep qu| +83374|483108|20636|5|9|9819.72|0.06|0.02|R|F|1993-01-31|1993-02-17|1993-02-23|NONE|REG AIR| silent deposits. pack| +83374|591056|41057|6|8|9176.24|0.04|0.00|R|F|1993-04-08|1993-03-21|1993-04-30|NONE|FOB|ithely silent accoun| +83374|866128|28646|7|28|30634.24|0.05|0.00|A|F|1993-04-04|1993-03-12|1993-05-04|TAKE BACK RETURN|SHIP|ecial requests above the idea| +83375|12544|37545|1|29|42239.66|0.07|0.07|A|F|1993-09-01|1993-10-15|1993-09-14|TAKE BACK RETURN|FOB| courts nag. sly| +83375|810778|10779|2|27|45595.71|0.00|0.00|R|F|1993-11-17|1993-10-28|1993-11-23|DELIVER IN PERSON|MAIL|olites along the fluffily express reque| +83375|731451|31452|3|29|42990.18|0.08|0.01|R|F|1993-10-15|1993-11-03|1993-10-30|DELIVER IN PERSON|RAIL|ss packages. packages eat blithely.| +83375|490038|15057|4|1|1028.01|0.03|0.00|A|F|1993-11-07|1993-09-21|1993-11-23|DELIVER IN PERSON|MAIL|n accounts among the regular| +83400|947614|47615|1|31|51508.67|0.08|0.01|N|O|1996-09-03|1996-10-20|1996-09-25|DELIVER IN PERSON|SHIP|ic, bold e| +83400|537842|25373|2|22|41356.04|0.03|0.02|N|O|1996-10-20|1996-10-02|1996-11-19|COLLECT COD|FOB|s. furiously pending foxes acro| +83401|20856|33357|1|18|31983.30|0.03|0.04|R|F|1992-11-11|1993-01-11|1992-11-19|DELIVER IN PERSON|REG AIR|s-- slyly special accoun| +83401|516556|16557|2|18|28305.54|0.10|0.07|R|F|1992-10-20|1993-01-01|1992-11-03|DELIVER IN PERSON|REG AIR|oss the even, special deposi| +83401|749369|24398|3|1|1418.33|0.04|0.05|R|F|1992-11-18|1992-12-27|1992-11-24|DELIVER IN PERSON|REG AIR|sly even accounts.| +83401|634679|22216|4|29|46795.56|0.10|0.05|A|F|1992-11-14|1992-12-03|1992-12-08|DELIVER IN PERSON|SHIP|longside of the regular foxes use qui| +83401|43555|43556|5|12|17982.60|0.00|0.06|A|F|1992-10-23|1992-12-19|1992-10-31|COLLECT COD|SHIP|counts. carefully regular asymptotes a| +83401|15524|28025|6|12|17274.24|0.10|0.01|A|F|1992-11-05|1992-12-04|1992-11-22|COLLECT COD|SHIP|egularly expr| +83402|926043|26044|1|49|52381.00|0.04|0.00|N|O|1997-06-20|1997-06-01|1997-06-26|DELIVER IN PERSON|MAIL|uests. requests use blithely i| +83402|996007|8527|2|33|36397.68|0.05|0.00|N|O|1997-06-28|1997-05-01|1997-07-07|NONE|RAIL| the furiously even depths. fluffily fina| +83403|665643|15644|1|32|51475.52|0.05|0.06|N|O|1998-10-01|1998-10-19|1998-10-03|DELIVER IN PERSON|FOB|ter the foxes affix q| +83403|452164|39692|2|9|10045.26|0.04|0.03|N|O|1998-10-08|1998-10-16|1998-10-31|COLLECT COD|AIR|equests integrate slyly dogg| +83403|505527|30548|3|23|35247.50|0.03|0.00|N|O|1998-08-17|1998-09-13|1998-09-04|DELIVER IN PERSON|SHIP|quickly special deposits cajol| +83403|387558|25080|4|23|37847.42|0.02|0.05|N|O|1998-09-14|1998-09-09|1998-09-25|TAKE BACK RETURN|MAIL|r asymptotes! carefully regula| +83404|935998|48517|1|43|87459.85|0.08|0.06|N|O|1998-01-14|1997-12-31|1998-01-16|TAKE BACK RETURN|REG AIR|areful foxes sleep carefully silent accoun| +83404|313905|13906|2|11|21107.79|0.03|0.00|N|O|1997-11-24|1997-11-15|1997-12-09|NONE|AIR|lently bold packages haggle sl| +83404|791715|4231|3|38|68653.84|0.01|0.05|N|O|1997-12-23|1997-12-06|1998-01-10|TAKE BACK RETURN|SHIP|inal platel| +83404|349579|24592|4|19|30942.64|0.10|0.04|N|O|1997-10-15|1997-11-16|1997-11-04|DELIVER IN PERSON|SHIP|nal, ironic pac| +83404|366288|16289|5|21|28439.67|0.02|0.08|N|O|1997-11-01|1997-11-30|1997-11-03|TAKE BACK RETURN|FOB|ests across the pending ideas boos| +83404|186458|11465|6|25|38611.25|0.10|0.02|N|O|1997-10-24|1997-11-29|1997-11-03|COLLECT COD|SHIP| always pending hockey playe| +83405|190003|15010|1|28|30604.00|0.05|0.03|A|F|1992-02-21|1992-02-15|1992-03-17|COLLECT COD|REG AIR|le carefully spe| +83405|371536|46551|2|29|46618.08|0.03|0.07|R|F|1992-01-21|1992-03-24|1992-01-25|TAKE BACK RETURN|SHIP|ts x-ray. pending multipliers dete| +83405|390250|27772|3|35|46908.40|0.06|0.05|A|F|1992-04-25|1992-03-31|1992-05-12|DELIVER IN PERSON|TRUCK| final excuses sleep among the regular re| +83405|920338|20339|4|1|1358.29|0.00|0.03|R|F|1992-05-09|1992-03-22|1992-05-11|COLLECT COD|FOB|press fluffily against the furiously final| +83405|108356|33361|5|38|51845.30|0.07|0.02|R|F|1992-04-20|1992-03-08|1992-05-07|COLLECT COD|SHIP|y unusual requests. furi| +83406|29072|4073|1|42|42044.94|0.00|0.03|N|O|1998-08-10|1998-08-08|1998-09-08|TAKE BACK RETURN|SHIP| requests eat bli| +83407|456611|31630|1|8|12540.72|0.03|0.06|N|O|1995-12-27|1996-01-20|1996-01-20|TAKE BACK RETURN|AIR|pecial decoys. | +83407|254640|42156|2|8|12757.04|0.08|0.04|N|O|1996-01-07|1996-01-08|1996-02-05|DELIVER IN PERSON|TRUCK| cajole blithely above the carefully perman| +83407|726006|26007|3|30|30959.10|0.08|0.08|N|O|1995-11-12|1995-12-24|1995-11-24|NONE|FOB|ideas wake fluffily. i| +83432|197291|22298|1|33|45813.57|0.08|0.07|R|F|1994-01-19|1994-02-14|1994-01-26|DELIVER IN PERSON|RAIL|s accounts. special| +83433|213708|26213|1|21|34055.49|0.00|0.04|A|F|1994-01-11|1994-03-07|1994-02-02|NONE|RAIL|ourts cajole carefully final request| +83433|777707|27708|2|24|42832.08|0.07|0.03|R|F|1994-04-06|1994-02-25|1994-04-07|NONE|AIR| special requests. blithely silent pinto| +83434|338088|13101|1|29|32656.03|0.08|0.08|A|F|1992-08-03|1992-07-05|1992-08-28|DELIVER IN PERSON|AIR|he slyly silent pl| +83434|232015|7024|2|29|27463.00|0.05|0.02|R|F|1992-06-01|1992-06-06|1992-06-13|NONE|FOB|d, pending packages across the theodolit| +83434|467165|4693|3|8|9057.12|0.02|0.06|A|F|1992-04-19|1992-05-27|1992-05-01|TAKE BACK RETURN|TRUCK|ely regular instructi| +83434|633398|33399|4|36|47928.96|0.09|0.06|R|F|1992-04-19|1992-06-13|1992-05-16|TAKE BACK RETURN|REG AIR|thely doggedly pending accou| +83434|514778|14779|5|17|30476.75|0.08|0.03|A|F|1992-05-14|1992-05-31|1992-05-25|DELIVER IN PERSON|SHIP|express deposits. silent accounts aff| +83434|867900|5452|6|3|5603.58|0.03|0.01|R|F|1992-05-26|1992-05-17|1992-06-02|COLLECT COD|RAIL|ly even ideas. quickly unusual f| +83434|782659|32660|7|16|27865.92|0.05|0.06|A|F|1992-06-15|1992-05-27|1992-07-12|COLLECT COD|MAIL|lites integrate about the ir| +83435|143148|30655|1|38|45263.32|0.05|0.03|N|O|1996-05-04|1996-03-29|1996-05-20|TAKE BACK RETURN|TRUCK|he furiously special request| +83435|879334|4369|2|37|48591.73|0.03|0.04|N|O|1996-02-19|1996-03-18|1996-03-01|NONE|SHIP|ross the special plate| +83435|952152|2153|3|48|57797.28|0.06|0.06|N|O|1996-01-28|1996-03-11|1996-02-13|COLLECT COD|FOB|ns hang slyly. express theodo| +83435|804683|17200|4|33|52392.12|0.05|0.08|N|O|1996-04-19|1996-03-26|1996-05-14|DELIVER IN PERSON|MAIL|unts hinder after the fluffily | +83435|299069|11575|5|34|36313.70|0.09|0.00|N|O|1996-03-21|1996-03-30|1996-04-11|NONE|TRUCK| asymptotes wake slyly fluffily regu| +83435|449664|12173|6|27|43568.28|0.01|0.03|N|O|1996-05-08|1996-03-24|1996-05-13|TAKE BACK RETURN|TRUCK|mong the furiously eve| +83435|492661|42662|7|19|31419.16|0.00|0.05|N|O|1996-02-01|1996-03-01|1996-02-06|DELIVER IN PERSON|AIR|ly special requests. special pack| +83436|150884|885|1|28|54176.64|0.04|0.04|R|F|1992-07-28|1992-07-28|1992-08-16|COLLECT COD|AIR|ndencies cajole according t| +83436|895879|33431|2|37|69368.71|0.08|0.00|R|F|1992-08-31|1992-06-17|1992-09-15|COLLECT COD|MAIL|fluffily silent requests. express accounts| +83436|31441|31442|3|15|20586.60|0.07|0.07|A|F|1992-06-03|1992-07-25|1992-06-20|DELIVER IN PERSON|AIR|regular ideas | +83436|425919|38428|4|4|7379.56|0.03|0.02|R|F|1992-07-30|1992-08-03|1992-08-18|DELIVER IN PERSON|FOB|ts; slyly regular instructions after | +83436|405564|5565|5|27|39677.58|0.05|0.05|A|F|1992-08-13|1992-07-02|1992-09-07|NONE|MAIL|elets wake. slyly fina| +83436|309845|47364|6|46|85322.18|0.06|0.00|R|F|1992-05-17|1992-06-28|1992-06-04|TAKE BACK RETURN|SHIP|oost against the blithely pending pi| +83437|765369|15370|1|5|7171.65|0.07|0.03|N|O|1998-03-14|1998-04-24|1998-03-29|NONE|RAIL|deposits unwind slyly accor| +83437|541808|41809|2|37|68441.86|0.03|0.08|N|O|1998-02-23|1998-03-14|1998-03-18|NONE|AIR| furiously ironic th| +83437|164749|39756|3|11|19951.14|0.09|0.02|N|O|1998-03-14|1998-04-20|1998-03-20|TAKE BACK RETURN|AIR|oss the permanent pac| +83437|931040|18595|4|32|34272.00|0.02|0.05|N|O|1998-04-19|1998-04-22|1998-05-05|TAKE BACK RETURN|TRUCK|ages sleep fluffily| +83438|307592|20099|1|46|73580.68|0.04|0.06|A|F|1993-10-26|1993-09-16|1993-11-08|TAKE BACK RETURN|AIR|s sleep blithely above the boldly regular| +83438|690152|27692|2|19|21700.28|0.07|0.07|R|F|1993-10-12|1993-09-24|1993-10-16|DELIVER IN PERSON|SHIP|tions. theodolites detect bli| +83438|368754|43769|3|34|61973.16|0.02|0.00|A|F|1993-07-19|1993-08-19|1993-08-08|NONE|MAIL|e. blithel| +83438|638846|1359|4|50|89240.50|0.04|0.00|A|F|1993-10-25|1993-08-28|1993-10-27|NONE|RAIL|gular accounts wake after the unusua| +83438|77530|15034|5|3|4522.59|0.00|0.04|R|F|1993-10-14|1993-09-11|1993-10-22|DELIVER IN PERSON|SHIP|nal accounts haggle. blit| +83439|661505|24019|1|30|43994.10|0.00|0.01|N|O|1997-02-01|1997-03-12|1997-02-08|NONE|FOB|onic asymptotes are? ironic, pendin| +83464|816484|29001|1|8|11203.52|0.00|0.00|A|F|1994-06-19|1994-05-14|1994-07-12|DELIVER IN PERSON|TRUCK|ironic dolphins | +83464|639208|1721|2|27|30973.59|0.09|0.01|R|F|1994-06-25|1994-05-25|1994-07-13|TAKE BACK RETURN|RAIL|egular accounts.| +83464|159496|22000|3|49|76219.01|0.06|0.00|R|F|1994-06-11|1994-05-08|1994-07-06|TAKE BACK RETURN|TRUCK|lly even somas. final requests integrate | +83464|639444|39445|4|4|5533.64|0.06|0.03|R|F|1994-06-19|1994-05-09|1994-06-29|NONE|SHIP|s. carefully | +83464|134360|9365|5|10|13943.60|0.09|0.08|R|F|1994-05-07|1994-05-10|1994-05-09|COLLECT COD|SHIP|y even deposits are sly| +83465|870476|45511|1|3|4339.29|0.03|0.03|N|O|1997-10-09|1997-11-07|1997-11-05|NONE|AIR|lyly bold ideas. enticingly bold | +83465|78306|40808|2|41|52656.30|0.04|0.03|N|O|1997-10-12|1997-10-27|1997-11-10|DELIVER IN PERSON|RAIL|le carefully express deposi| +83465|80987|5990|3|50|98399.00|0.02|0.05|N|O|1997-12-04|1997-12-06|1997-12-29|COLLECT COD|TRUCK|yly quickly ironic deposits.| +83465|145034|7537|4|25|26975.75|0.09|0.05|N|O|1997-12-10|1997-10-15|1998-01-01|TAKE BACK RETURN|RAIL|accounts. final, ironic dugouts ca| +83465|572255|9789|5|39|51761.97|0.04|0.07|N|O|1997-09-17|1997-10-29|1997-10-14|DELIVER IN PERSON|AIR|efully against the qu| +83465|882926|7961|6|23|43904.24|0.08|0.03|N|O|1997-09-30|1997-12-11|1997-10-29|TAKE BACK RETURN|MAIL|hs cajole furiously even requests.| +83465|334938|22457|7|16|31566.72|0.01|0.05|N|O|1997-10-27|1997-11-21|1997-11-25|NONE|MAIL|its. furiously express packages n| +83466|301544|14051|1|35|54093.55|0.06|0.03|R|F|1994-11-09|1994-12-01|1994-11-14|DELIVER IN PERSON|FOB|boost arou| +83466|41401|16402|2|40|53696.00|0.08|0.00|R|F|1994-11-26|1994-12-18|1994-12-16|NONE|MAIL|y alongside of the | +83466|812493|37526|3|39|54812.55|0.07|0.06|A|F|1994-12-01|1994-12-17|1994-12-20|COLLECT COD|SHIP|an wake. bold foxes boost carefu| +83466|559467|21979|4|19|29002.36|0.08|0.06|A|F|1994-12-27|1994-12-12|1995-01-10|TAKE BACK RETURN|RAIL| along the furiou| +83466|961161|11162|5|13|15887.56|0.06|0.06|R|F|1994-11-08|1994-12-19|1994-11-25|DELIVER IN PERSON|MAIL|sly even foxes. doggedly even instru| +83466|223359|48368|6|31|39752.54|0.08|0.03|A|F|1994-12-15|1994-12-31|1995-01-11|COLLECT COD|REG AIR|s. requests believe fluffily| +83467|985870|35871|1|21|41072.43|0.02|0.08|N|O|1996-10-13|1996-12-09|1996-10-16|NONE|REG AIR|furiously even accounts hagg| +83467|505617|18128|2|29|47055.11|0.10|0.07|N|O|1996-10-27|1996-11-09|1996-10-30|COLLECT COD|FOB| beans. carefully silent packages agai| +83467|888303|38304|3|18|23242.68|0.03|0.04|N|O|1996-11-12|1996-12-03|1996-12-03|TAKE BACK RETURN|FOB|deposits. quickly even account| +83467|699810|37350|4|3|5429.34|0.09|0.06|N|O|1996-10-01|1996-11-22|1996-10-12|COLLECT COD|FOB|nal asymptotes sleep slyly along the never| +83467|700229|37772|5|25|30729.75|0.09|0.08|N|O|1997-01-06|1996-11-26|1997-01-16|NONE|AIR|. slyly unusual | +83467|746161|33704|6|36|43456.68|0.09|0.03|N|O|1996-12-17|1996-12-04|1997-01-16|NONE|FOB|e slyly ironic escapa| +83468|832679|45196|1|38|61241.94|0.01|0.02|N|O|1997-05-18|1997-03-04|1997-05-21|DELIVER IN PERSON|REG AIR|ep slyly according to the fluf| +83468|832097|7130|2|33|33958.65|0.09|0.06|N|O|1997-04-05|1997-04-10|1997-04-20|NONE|RAIL|unts boost. quickly expre| +83468|53362|28365|3|10|13153.60|0.00|0.07|N|O|1997-02-26|1997-03-18|1997-02-27|TAKE BACK RETURN|FOB|al dolphins nag carefully. blithely unus| +83469|131479|31480|1|42|63439.74|0.01|0.00|N|O|1996-01-12|1996-03-07|1996-01-30|NONE|TRUCK|ests may affix among the fin| +83469|765304|2850|2|2|2738.54|0.09|0.00|N|O|1996-05-04|1996-03-27|1996-05-11|COLLECT COD|FOB|, even depos| +83469|456166|6167|3|15|16832.10|0.02|0.02|N|O|1996-01-23|1996-02-13|1996-01-30|NONE|TRUCK| slyly final | +83469|768929|31445|4|37|73921.93|0.06|0.04|N|O|1996-03-18|1996-04-08|1996-04-11|NONE|AIR| regular excuses| +83470|935829|10866|1|50|93239.00|0.01|0.07|N|O|1998-06-11|1998-07-31|1998-07-01|TAKE BACK RETURN|FOB|ash blithe| +83470|466609|4137|2|29|45691.82|0.07|0.06|N|O|1998-06-18|1998-07-20|1998-06-30|TAKE BACK RETURN|MAIL|he furiously pending packag| +83471|982267|32268|1|13|17539.86|0.06|0.07|N|O|1995-08-02|1995-06-30|1995-08-24|TAKE BACK RETURN|MAIL| dependencies sleep fluffily | +83471|956621|6622|2|11|18453.38|0.10|0.08|N|O|1995-07-09|1995-07-06|1995-07-25|DELIVER IN PERSON|AIR|ly ironic foxes. furiou| +83471|923435|10990|3|21|30626.19|0.07|0.06|N|O|1995-09-22|1995-08-22|1995-10-03|COLLECT COD|REG AIR| around the dependencies. slyly| +83471|167251|29755|4|9|11864.25|0.06|0.00|N|O|1995-06-24|1995-07-07|1995-07-05|NONE|TRUCK| furious requests.| +83471|984549|22107|5|22|35937.00|0.09|0.04|N|F|1995-06-17|1995-08-08|1995-07-13|TAKE BACK RETURN|RAIL|ly special instructions. brave | +83496|418685|18686|1|33|52920.78|0.01|0.04|A|F|1992-11-27|1992-11-21|1992-12-23|DELIVER IN PERSON|FOB|al ideas w| +83496|832051|44568|2|16|15728.16|0.00|0.05|A|F|1993-01-25|1992-12-29|1993-01-31|NONE|FOB|ly alongside of the carefully regul| +83496|275640|38146|3|30|48468.90|0.03|0.03|R|F|1992-11-01|1992-12-13|1992-11-26|NONE|RAIL|sits. slyly ironic theodolites affix slyly| +83496|675505|25506|4|4|5921.88|0.02|0.02|A|F|1992-12-10|1993-01-01|1992-12-16|NONE|AIR|ches. carefully regular id| +83496|210642|48155|5|16|24842.08|0.03|0.01|A|F|1993-01-28|1993-01-04|1993-02-21|COLLECT COD|REG AIR| accounts among the fur| +83497|719216|19217|1|12|14822.16|0.08|0.08|A|F|1995-01-11|1995-02-16|1995-02-07|COLLECT COD|SHIP| quickly a| +83497|847702|47703|2|36|59387.76|0.05|0.06|R|F|1995-03-23|1995-03-13|1995-04-12|NONE|MAIL|quests wake fluffily against the q| +83498|247455|34968|1|27|37865.88|0.10|0.08|A|F|1992-09-24|1992-09-20|1992-10-01|COLLECT COD|FOB|n accounts. | +83498|966842|16843|2|28|53446.40|0.07|0.07|A|F|1992-09-23|1992-10-28|1992-10-05|DELIVER IN PERSON|FOB|gle furiously carefully| +83498|702489|2490|3|50|74572.50|0.10|0.06|A|F|1992-11-14|1992-10-09|1992-12-07|COLLECT COD|REG AIR|cording to the quickly| +83498|720910|33425|4|48|92682.24|0.07|0.01|A|F|1992-10-25|1992-10-01|1992-11-01|COLLECT COD|RAIL|ckages. ironic requests | +83498|322498|47511|5|6|9122.88|0.05|0.00|R|F|1992-09-28|1992-09-30|1992-10-28|NONE|SHIP| beans. pending, fluffy foxe| +83498|219189|44198|6|15|16622.55|0.02|0.07|A|F|1992-09-11|1992-09-18|1992-10-10|NONE|MAIL|s. packages will have to are above| +83499|735441|22984|1|48|70867.68|0.07|0.06|A|F|1995-01-09|1995-02-28|1995-01-18|DELIVER IN PERSON|RAIL|al excuses print across t| +83499|540367|2878|2|43|60515.62|0.00|0.02|A|F|1995-03-12|1995-02-26|1995-03-21|NONE|MAIL|s according to the accounts sleep ca| +83499|945463|7982|3|39|58828.38|0.01|0.05|A|F|1995-03-06|1995-03-20|1995-03-19|TAKE BACK RETURN|REG AIR|ngside of the furiously bold depo| +83499|380297|17819|4|25|34432.00|0.01|0.06|R|F|1995-04-05|1995-03-16|1995-05-02|NONE|TRUCK|instructions. blithely ev| +83499|649195|24220|5|32|36613.12|0.09|0.00|A|F|1995-03-02|1995-03-26|1995-03-30|COLLECT COD|FOB|he carefully bold deposits-- | +83499|5290|17791|6|6|7171.74|0.10|0.06|A|F|1995-02-21|1995-02-18|1995-03-13|NONE|REG AIR|nts nag slyly regularly final ac| +83499|904605|4606|7|35|56334.60|0.03|0.07|A|F|1995-02-22|1995-02-28|1995-03-14|COLLECT COD|SHIP|carefully slyly express requ| +83500|683561|21101|1|48|74137.44|0.07|0.07|N|O|1997-05-22|1997-07-26|1997-05-28|NONE|REG AIR|ounts. fluffily fluffy pinto beans caj| +83501|75559|13063|1|37|56778.35|0.02|0.02|N|O|1998-01-22|1998-02-27|1998-02-20|TAKE BACK RETURN|RAIL|gular, pending accounts. unus| +83501|918667|43704|2|32|53939.84|0.09|0.05|N|O|1998-03-25|1998-01-09|1998-03-31|COLLECT COD|FOB|equests thras| +83501|20002|32503|3|21|19362.00|0.07|0.01|N|O|1998-03-31|1998-02-23|1998-04-23|TAKE BACK RETURN|TRUCK|instructions affix| +83501|166720|41727|4|4|7146.88|0.09|0.01|N|O|1997-12-19|1998-01-20|1998-01-08|COLLECT COD|AIR|ar deposits! regular instructions above the| +83501|57901|20403|5|47|87368.30|0.08|0.02|N|O|1998-01-12|1998-02-22|1998-01-14|NONE|SHIP|ular foxes boost | +83502|499315|24334|1|39|51257.31|0.09|0.03|N|O|1996-09-16|1996-08-01|1996-09-26|NONE|SHIP|uthless courts. furi| +83502|979800|4839|2|42|78949.92|0.07|0.05|N|O|1996-08-11|1996-07-06|1996-08-12|DELIVER IN PERSON|REG AIR|s. final waters cajole always. blithel| +83502|493143|18162|3|3|3408.36|0.04|0.07|N|O|1996-07-20|1996-07-28|1996-07-30|NONE|FOB|inder slyly| +83502|244876|32389|4|46|83759.56|0.09|0.04|N|O|1996-06-28|1996-07-20|1996-07-08|TAKE BACK RETURN|REG AIR|ly ironic ideas use furiously after the| +83502|618688|6225|5|32|51412.80|0.05|0.02|N|O|1996-06-23|1996-08-02|1996-07-14|TAKE BACK RETURN|REG AIR|about the unusual, regular id| +83503|618660|31173|1|15|23679.45|0.01|0.02|R|F|1995-05-10|1995-05-29|1995-06-02|NONE|REG AIR|uthlessly to the carefully even excus| +83503|805550|43099|2|43|62586.93|0.05|0.04|R|F|1995-03-29|1995-05-12|1995-04-23|COLLECT COD|TRUCK|deposits sleep above the quickly ironi| +83503|871260|21261|3|27|33242.94|0.08|0.01|R|F|1995-04-28|1995-04-27|1995-05-19|NONE|FOB|ithely even requests affix furiously blit| +83503|261230|23736|4|49|58369.78|0.07|0.02|N|O|1995-06-28|1995-04-29|1995-07-23|DELIVER IN PERSON|RAIL| unusual, regular de| +83503|488243|13262|5|40|49248.80|0.09|0.01|R|F|1995-05-11|1995-05-27|1995-05-14|NONE|RAIL|tegrate slyly. carefully r| +83503|884267|34268|6|2|2502.44|0.03|0.02|R|F|1995-05-07|1995-04-22|1995-05-11|COLLECT COD|RAIL|ronic instructions u| +83528|804037|41586|1|27|25406.73|0.03|0.00|N|O|1998-06-27|1998-06-23|1998-07-10|NONE|AIR|ic deposits. regular pinto beans sn| +83528|443410|5919|2|47|63609.33|0.05|0.02|N|O|1998-05-16|1998-06-08|1998-06-13|TAKE BACK RETURN|TRUCK|ly even multipliers | +83528|382166|32167|3|7|8737.05|0.09|0.08|N|O|1998-05-31|1998-07-02|1998-06-26|COLLECT COD|FOB|sits! quickly even account| +83528|63247|13248|4|47|56881.28|0.01|0.04|N|O|1998-06-11|1998-07-22|1998-07-08|DELIVER IN PERSON|REG AIR|! slyly silent pac| +83528|981598|19156|5|3|5038.65|0.09|0.00|N|O|1998-06-25|1998-07-22|1998-07-23|TAKE BACK RETURN|TRUCK|thely even| +83528|706020|31049|6|36|36935.64|0.10|0.03|N|O|1998-06-04|1998-07-10|1998-06-17|NONE|MAIL|out the sometimes pen| +83529|626463|1488|1|38|52798.34|0.08|0.07|N|O|1995-12-27|1995-11-25|1995-12-28|TAKE BACK RETURN|AIR|iresias wake. furiously regular instructio| +83529|953655|16175|2|21|35880.81|0.08|0.04|N|O|1996-01-28|1995-12-05|1996-02-10|TAKE BACK RETURN|MAIL|nding foxes. slyly special foxes sleep al| +83529|78573|16077|3|17|26376.69|0.06|0.02|N|O|1995-10-15|1995-12-15|1995-11-12|TAKE BACK RETURN|SHIP|beans nag depths. carefully regul| +83529|566765|4299|4|7|12822.18|0.05|0.06|N|O|1996-01-27|1995-12-26|1996-02-15|NONE|TRUCK|s deposits. regular, bold accounts detect| +83529|606761|19274|5|15|25015.95|0.07|0.05|N|O|1995-12-30|1995-11-28|1996-01-09|TAKE BACK RETURN|RAIL|refully above the ironic, regular acco| +83529|829935|42452|6|14|26108.46|0.02|0.06|N|O|1996-01-14|1995-12-24|1996-01-31|TAKE BACK RETURN|MAIL|ms. even deposits nag blithely expre| +83530|270268|20269|1|18|22288.50|0.09|0.06|A|F|1992-09-01|1992-09-25|1992-09-07|NONE|RAIL|over the i| +83531|708143|45686|1|12|13813.32|0.05|0.05|N|O|1997-10-31|1997-10-26|1997-11-11|COLLECT COD|FOB|ans are within the carefully even depend| +83531|745578|45579|2|30|48706.20|0.08|0.02|N|O|1997-09-25|1997-09-24|1997-09-28|DELIVER IN PERSON|FOB|ns doze thinl| +83531|925631|25632|3|15|24848.85|0.04|0.08|N|O|1997-10-23|1997-09-18|1997-11-11|TAKE BACK RETURN|REG AIR|ronic packages about| +83531|65968|15969|4|43|83160.28|0.10|0.07|N|O|1997-08-20|1997-11-07|1997-09-06|NONE|AIR|ckages sleep above the furiously expr| +83531|722022|47051|5|46|48023.54|0.07|0.02|N|O|1997-11-09|1997-09-16|1997-11-13|COLLECT COD|REG AIR|de of the bold accounts. quic| +83532|998826|23865|1|24|46194.72|0.07|0.01|A|F|1993-01-06|1992-11-28|1993-02-02|NONE|FOB| beans cajole. slyly f| +83532|263220|38231|2|9|10648.89|0.00|0.03|R|F|1992-10-08|1992-11-04|1992-11-03|COLLECT COD|TRUCK|sly ironic multi| +83532|928190|40709|3|6|7308.90|0.07|0.07|A|F|1992-10-09|1992-11-20|1992-11-02|DELIVER IN PERSON|REG AIR|s boost slyly always even accounts. careful| +83532|74724|49727|4|38|64551.36|0.05|0.08|R|F|1992-12-24|1992-12-03|1993-01-17|COLLECT COD|FOB|press pains-- carefully regula| +83532|879162|4197|5|27|30810.24|0.00|0.03|R|F|1992-12-13|1992-11-18|1992-12-31|TAKE BACK RETURN|TRUCK|pinto beans along the quickl| +83532|64910|14911|6|46|86245.86|0.06|0.08|A|F|1992-10-02|1992-12-16|1992-10-17|COLLECT COD|REG AIR| slyly even| +83532|936184|23739|7|33|40264.62|0.08|0.03|A|F|1992-11-04|1992-11-28|1992-11-18|TAKE BACK RETURN|FOB|pecial foxes. carefully spec| +83533|428448|40957|1|25|34410.50|0.02|0.08|N|O|1995-08-30|1995-09-18|1995-09-02|TAKE BACK RETURN|MAIL|y silent ideas. final, express | +83533|912196|49751|2|3|3624.45|0.06|0.00|N|O|1995-10-28|1995-08-24|1995-11-07|NONE|TRUCK|ross the slyly fin| +83533|265573|15574|3|40|61542.40|0.06|0.07|N|O|1995-10-01|1995-08-30|1995-10-24|DELIVER IN PERSON|REG AIR| regular packages cajole fluffily. unus| +83534|979937|4976|1|37|74624.93|0.05|0.08|R|F|1994-05-09|1994-04-21|1994-05-12|COLLECT COD|AIR| across the packages are ac| +83534|791435|3951|2|7|10684.80|0.07|0.06|R|F|1994-04-18|1994-04-30|1994-05-17|TAKE BACK RETURN|FOB|ve the packages | +83535|927548|2585|1|32|50416.00|0.04|0.07|N|O|1996-11-11|1996-10-04|1996-11-22|TAKE BACK RETURN|RAIL| quickly reg| +83535|284016|21532|2|45|45000.00|0.08|0.05|N|O|1996-09-01|1996-11-14|1996-09-11|COLLECT COD|RAIL|n accounts around the blithely eve| +83535|443768|43769|3|12|20540.88|0.01|0.04|N|O|1996-09-26|1996-11-26|1996-10-23|DELIVER IN PERSON|SHIP|ites wake blithely specia| +83560|889387|26939|1|50|68817.00|0.05|0.08|N|O|1997-03-05|1997-05-11|1997-03-15|COLLECT COD|AIR|oss the foxes. ca| +83560|925914|951|2|39|75654.93|0.09|0.03|N|O|1997-03-09|1997-03-16|1997-04-02|TAKE BACK RETURN|AIR|gular deposits detect blithe| +83560|822022|47055|3|29|27375.42|0.06|0.03|N|O|1997-05-12|1997-03-26|1997-05-23|NONE|FOB|gular gifts wa| +83561|884915|22467|1|1|1899.87|0.05|0.05|N|O|1998-02-09|1998-01-30|1998-03-06|TAKE BACK RETURN|AIR|longside of the blithely | +83561|753285|28316|2|2|2676.50|0.04|0.07|N|O|1998-03-10|1998-02-12|1998-04-05|NONE|REG AIR|final pinto beans nag furiously blith| +83561|447706|47707|3|8|13229.44|0.02|0.02|N|O|1998-01-31|1998-02-04|1998-03-02|DELIVER IN PERSON|MAIL|final, special re| +83562|229167|41672|1|11|12057.65|0.00|0.02|A|F|1993-09-28|1993-10-25|1993-09-29|DELIVER IN PERSON|RAIL|counts are blithely ironic pinto beans. | +83563|551806|1807|1|24|44586.72|0.10|0.02|A|F|1994-05-19|1994-05-22|1994-06-01|COLLECT COD|RAIL|ress theodolites are carefully special | +83563|188476|38477|2|17|26595.99|0.05|0.04|R|F|1994-06-23|1994-04-23|1994-07-16|NONE|AIR|lly unusual requests along the regula| +83564|980270|17828|1|13|17552.99|0.06|0.02|N|O|1997-08-02|1997-06-12|1997-08-24|DELIVER IN PERSON|REG AIR|al theodolites. fluffily| +83564|381481|31482|2|1|1562.47|0.07|0.02|N|O|1997-07-10|1997-07-02|1997-07-31|TAKE BACK RETURN|TRUCK|ructions beli| +83564|549225|49226|3|46|58613.20|0.02|0.05|N|O|1997-07-02|1997-06-15|1997-07-10|TAKE BACK RETURN|FOB|ackages boost blithely even pac| +83564|823824|36341|4|50|87389.00|0.08|0.06|N|O|1997-06-05|1997-07-08|1997-06-11|TAKE BACK RETURN|FOB|its. silent, regular requests caj| +83564|1297|26298|5|10|11982.90|0.02|0.06|N|O|1997-05-19|1997-06-04|1997-06-17|DELIVER IN PERSON|RAIL|gged dolphins cajol| +83565|921036|46073|1|30|31709.70|0.10|0.03|A|F|1994-01-17|1994-01-25|1994-02-08|NONE|RAIL| packages cajole slyly. final accou| +83565|838957|13990|2|49|92899.59|0.02|0.01|R|F|1993-12-06|1993-12-10|1993-12-26|TAKE BACK RETURN|RAIL| pending d| +83565|336008|23527|3|33|34451.67|0.09|0.04|A|F|1993-12-23|1994-01-18|1994-01-15|DELIVER IN PERSON|MAIL|nusual pinto beans. carefully unusual re| +83566|295909|33425|1|50|95244.50|0.00|0.03|R|F|1993-04-20|1993-05-06|1993-05-14|NONE|FOB|ts: final platelets wake along t| +83566|326437|1450|2|20|29268.40|0.00|0.03|A|F|1993-05-23|1993-05-16|1993-06-11|DELIVER IN PERSON|AIR|. regular, special deposits haggle s| +83566|422713|47730|3|47|76877.43|0.07|0.02|R|F|1993-04-23|1993-04-05|1993-05-17|COLLECT COD|AIR|s. furiously unusual| +83566|526498|26499|4|44|67076.68|0.01|0.02|A|F|1993-06-07|1993-04-07|1993-06-13|NONE|RAIL|ts. blithely ironic asymptotes sleep slyl| +83566|846469|34018|5|28|39631.76|0.08|0.00|R|F|1993-04-08|1993-06-01|1993-04-22|TAKE BACK RETURN|MAIL| packages. carefully fina| +83566|600412|37949|6|31|40683.78|0.05|0.07|R|F|1993-03-28|1993-04-26|1993-04-02|NONE|SHIP|the slyly spec| +83566|120818|45823|7|39|71713.59|0.10|0.02|R|F|1993-06-11|1993-04-08|1993-06-25|COLLECT COD|AIR|sly. carefully ironic requests slee| +83567|582059|7082|1|35|39936.05|0.07|0.05|A|F|1992-02-16|1992-04-02|1992-02-29|NONE|TRUCK|oxes? blithely unus| +83567|657270|7271|2|13|15954.12|0.10|0.04|A|F|1992-02-16|1992-04-14|1992-03-06|DELIVER IN PERSON|RAIL|nst the fu| +83567|726680|14223|3|49|83625.85|0.08|0.04|R|F|1992-06-02|1992-04-28|1992-06-10|NONE|SHIP|. blithely final courts | +83592|79341|16845|1|49|64696.66|0.10|0.03|R|F|1994-09-10|1994-08-28|1994-10-05|TAKE BACK RETURN|MAIL|c deposits cajole furiously-- quickly id| +83592|467478|29988|2|33|47699.85|0.05|0.05|R|F|1994-07-08|1994-09-12|1994-07-14|COLLECT COD|FOB|regular deposits among the| +83592|892914|30466|3|43|81995.41|0.07|0.05|A|F|1994-08-23|1994-07-25|1994-09-01|NONE|REG AIR|odolites ab| +83592|196855|9359|4|45|87833.25|0.05|0.07|A|F|1994-08-13|1994-08-09|1994-09-01|NONE|RAIL|ages according to the furiously unus| +83592|534548|9569|5|31|49058.12|0.10|0.05|A|F|1994-10-15|1994-07-26|1994-11-14|NONE|MAIL|s. carefully final ideas wake slyly accordi| +83592|137565|12570|6|3|4807.68|0.10|0.07|R|F|1994-07-02|1994-08-25|1994-07-12|COLLECT COD|TRUCK|lar, unusual packages around the fur| +83593|926526|39045|1|36|55889.28|0.03|0.01|R|F|1994-09-19|1994-10-09|1994-10-19|DELIVER IN PERSON|MAIL|ial platelets are slyly special packages| +83594|382600|45108|1|13|21873.67|0.06|0.08|A|F|1994-02-24|1994-01-13|1994-03-21|TAKE BACK RETURN|FOB|gular requests. furiously s| +83595|196477|21484|1|33|51924.51|0.06|0.04|N|O|1995-12-04|1995-12-08|1995-12-25|NONE|TRUCK|s. fluffily pending ac| +83595|176734|14244|2|25|45268.25|0.08|0.06|N|O|1995-10-30|1995-12-17|1995-11-19|COLLECT COD|FOB|deposits. slyly express deposi| +83595|363065|38080|3|33|37225.65|0.10|0.01|N|O|1995-12-20|1995-12-24|1996-01-08|COLLECT COD|REG AIR| packages. furiously regular excuses| +83595|17542|42543|4|34|49624.36|0.01|0.03|N|O|1995-12-27|1995-12-13|1996-01-24|COLLECT COD|RAIL| pearls across the instructions haggle acro| +83595|822657|10206|5|42|66343.62|0.07|0.08|N|O|1995-11-30|1996-01-02|1995-12-27|TAKE BACK RETURN|AIR| final requests cajole carefully a| +83595|382914|20436|6|32|63900.80|0.03|0.04|N|O|1995-11-02|1996-01-16|1995-11-13|DELIVER IN PERSON|REG AIR|lithely about the carefully even id| +83595|619349|19350|7|50|63415.50|0.01|0.01|N|O|1995-12-20|1996-01-02|1996-01-15|TAKE BACK RETURN|REG AIR| blithely final instructions sleep fluf| +83596|395863|33385|1|19|37218.15|0.05|0.04|A|F|1993-03-30|1993-04-26|1993-04-16|NONE|TRUCK| beans are quickl| +83596|259393|34404|2|21|28399.98|0.10|0.01|R|F|1993-03-28|1993-04-15|1993-04-03|TAKE BACK RETURN|TRUCK|quests. account| +83596|606634|31659|3|34|52380.40|0.01|0.03|A|F|1993-03-21|1993-03-17|1993-04-17|DELIVER IN PERSON|RAIL| slyly even deposits sleep. un| +83597|247426|34939|1|21|28841.61|0.07|0.00|N|O|1997-03-03|1997-03-23|1997-03-04|COLLECT COD|SHIP|ng, regular de| +83597|487758|268|2|34|59354.82|0.09|0.04|N|O|1997-05-17|1997-04-17|1997-06-10|COLLECT COD|TRUCK|unusual instructions. slyly| +83597|748325|48326|3|21|28839.09|0.07|0.04|N|O|1997-05-11|1997-05-12|1997-05-29|NONE|SHIP|ests wake express foxes. | +83598|946304|21341|1|42|56710.92|0.01|0.05|A|F|1993-08-28|1993-07-04|1993-09-13|TAKE BACK RETURN|TRUCK|ts. fluffily regular deposit| +83598|515589|15590|2|47|75414.32|0.01|0.08|A|F|1993-09-19|1993-07-29|1993-09-20|COLLECT COD|MAIL|ously after th| +83598|495276|45277|3|50|63562.50|0.09|0.08|R|F|1993-09-18|1993-08-22|1993-10-01|COLLECT COD|RAIL|ts cajole slyl| +83599|386387|36388|1|39|57461.43|0.04|0.00|A|F|1992-08-06|1992-05-10|1992-08-29|TAKE BACK RETURN|TRUCK|vely along the blithely unusual | +83599|996402|33960|2|1|1498.36|0.07|0.03|A|F|1992-04-23|1992-05-31|1992-04-25|COLLECT COD|TRUCK|cial asymptotes snooze. slyly regular | +83624|89119|39120|1|24|26594.64|0.03|0.01|A|F|1992-03-24|1992-04-30|1992-03-26|DELIVER IN PERSON|AIR|press deposits do haggle requests-| +83624|813852|1401|2|17|30018.77|0.01|0.03|R|F|1992-05-08|1992-04-25|1992-06-05|COLLECT COD|REG AIR|lyly pending accounts d| +83624|403786|41311|3|16|27036.16|0.04|0.07|R|F|1992-05-29|1992-05-14|1992-06-23|TAKE BACK RETURN|RAIL|otes use fluffily regular foxes. quickly | +83624|427132|27133|4|20|21182.20|0.06|0.08|R|F|1992-06-06|1992-04-13|1992-06-23|COLLECT COD|AIR|should have to| +83624|797866|47867|5|36|70697.88|0.03|0.00|A|F|1992-06-12|1992-05-09|1992-07-06|COLLECT COD|REG AIR| packages are quickly upon the e| +83624|723716|48745|6|39|67847.52|0.07|0.04|A|F|1992-06-21|1992-04-26|1992-07-15|COLLECT COD|AIR|iously regular foxes. final pac| +83625|503957|41488|1|8|15687.44|0.03|0.04|N|O|1996-09-08|1996-11-25|1996-10-08|DELIVER IN PERSON|FOB|. fluffily| +83625|995170|32728|2|12|15181.56|0.08|0.01|N|O|1996-12-13|1996-11-23|1996-12-18|TAKE BACK RETURN|REG AIR|althily at the special instruct| +83625|812095|24612|3|18|18126.90|0.03|0.04|N|O|1996-10-24|1996-10-14|1996-11-21|NONE|TRUCK|ual requests promise alongside of| +83625|865558|28076|4|13|19805.63|0.01|0.06|N|O|1996-09-13|1996-10-28|1996-10-05|DELIVER IN PERSON|SHIP|es might snooze carefully. pen| +83625|427887|40396|5|33|59890.38|0.10|0.02|N|O|1996-10-11|1996-12-02|1996-10-30|NONE|MAIL|ove the furious| +83626|102177|2178|1|25|29479.25|0.07|0.08|N|O|1997-02-17|1997-02-17|1997-03-06|COLLECT COD|TRUCK| nag carefully slyly even accounts. fox| +83626|275632|25633|2|45|72342.90|0.07|0.08|N|O|1997-02-08|1997-02-20|1997-02-11|DELIVER IN PERSON|RAIL|lar excuses print after the blithely bold| +83626|533965|46476|3|23|45975.62|0.09|0.02|N|O|1997-01-12|1997-03-24|1997-01-13|COLLECT COD|FOB|s mold stealthily blithely | +83626|349743|24756|4|41|73501.93|0.10|0.00|N|O|1997-04-24|1997-02-22|1997-05-03|DELIVER IN PERSON|SHIP|lyly ironi| +83627|970817|20818|1|9|16989.93|0.02|0.05|R|F|1995-06-12|1995-08-09|1995-06-13|COLLECT COD|RAIL|he even pinto be| +83627|509637|22148|2|38|62571.18|0.01|0.03|N|O|1995-07-20|1995-08-28|1995-08-13|DELIVER IN PERSON|REG AIR|usly furiously blithe theodolites. pendin| +83627|458084|33103|3|35|36472.10|0.02|0.00|N|O|1995-06-25|1995-08-06|1995-07-08|DELIVER IN PERSON|RAIL| requests caj| +83628|958557|33596|1|38|61389.38|0.05|0.05|A|F|1994-12-10|1995-02-16|1994-12-14|TAKE BACK RETURN|TRUCK|nts. dugou| +83629|698502|36042|1|42|63019.74|0.08|0.01|N|F|1995-06-13|1995-07-23|1995-06-27|COLLECT COD|REG AIR|usual deposits. carefully final theodol| +83629|711614|11615|2|28|45516.24|0.05|0.06|A|F|1995-05-09|1995-07-16|1995-06-05|TAKE BACK RETURN|RAIL|kages. regular, bold pa| +83629|95794|20797|3|25|44744.75|0.06|0.03|N|O|1995-07-10|1995-06-12|1995-07-13|TAKE BACK RETURN|FOB| wake furiously about the pending pinto b| +83630|411880|49405|1|24|43004.64|0.04|0.03|R|F|1995-03-13|1995-05-16|1995-03-29|COLLECT COD|REG AIR| furiously pendin| +83630|463118|646|2|27|29189.43|0.09|0.05|A|F|1995-03-01|1995-04-24|1995-03-07|NONE|REG AIR|efully regular a| +83630|615386|15387|3|36|46848.60|0.06|0.00|R|F|1995-04-30|1995-05-10|1995-05-08|NONE|TRUCK|ithely. quickly ex| +83630|777174|2205|4|14|17515.96|0.10|0.03|R|F|1995-03-12|1995-04-20|1995-03-15|COLLECT COD|REG AIR|hely fluffily pen| +83630|952157|39715|5|7|8463.77|0.06|0.01|N|F|1995-06-02|1995-05-10|1995-06-18|TAKE BACK RETURN|AIR|ans integrate alon| +83631|522936|35447|1|6|11753.46|0.10|0.04|R|F|1994-05-29|1994-05-29|1994-06-18|DELIVER IN PERSON|AIR| silent packages about the carefully en| +83631|979119|29120|2|29|34744.03|0.06|0.05|A|F|1994-05-09|1994-05-21|1994-05-24|COLLECT COD|TRUCK|. final deposits wake. | +83631|50741|13243|3|49|82895.26|0.03|0.07|A|F|1994-05-18|1994-05-28|1994-06-17|NONE|FOB|ly silent accounts. blith| +83631|789401|26947|4|15|22355.55|0.06|0.02|R|F|1994-07-11|1994-06-14|1994-08-10|DELIVER IN PERSON|SHIP|accounts haggle furiously| +83631|458268|20778|5|6|7357.44|0.09|0.05|R|F|1994-05-30|1994-05-20|1994-06-27|DELIVER IN PERSON|MAIL|as. slyly special excuses wake. blit| +83631|107953|32958|6|43|84320.85|0.00|0.06|A|F|1994-06-18|1994-04-21|1994-06-25|TAKE BACK RETURN|FOB|refully. blithely bold foxes w| +83631|349455|24468|7|27|40619.88|0.09|0.06|R|F|1994-03-26|1994-05-29|1994-04-03|DELIVER IN PERSON|AIR|ual epitap| +83656|281554|6565|1|50|76777.00|0.04|0.04|A|F|1993-06-22|1993-09-01|1993-06-27|NONE|RAIL|final pinto beans behind the slyly unu| +83656|71217|46220|2|44|52281.24|0.03|0.02|A|F|1993-10-02|1993-08-29|1993-10-30|NONE|TRUCK|lites integrate.| +83656|931528|19083|3|25|38987.00|0.04|0.02|A|F|1993-07-21|1993-08-31|1993-07-30|NONE|TRUCK|ithely about the final, final foxes. | +83656|178412|3419|4|22|32789.02|0.00|0.00|R|F|1993-07-16|1993-08-30|1993-07-30|NONE|AIR|gular accounts| +83657|877130|27131|1|45|49819.05|0.05|0.06|A|F|1995-04-01|1995-03-22|1995-04-23|COLLECT COD|FOB|n, even depo| +83657|911511|49066|2|16|24359.52|0.05|0.08|R|F|1995-04-22|1995-01-24|1995-05-05|DELIVER IN PERSON|SHIP|ons integrate | +83657|760959|23475|3|46|92916.32|0.01|0.02|R|F|1995-02-23|1995-02-10|1995-03-13|NONE|SHIP|kindle during the daring | +83657|430185|42694|4|29|32339.64|0.03|0.02|A|F|1994-12-28|1995-02-10|1995-01-07|DELIVER IN PERSON|SHIP|ructions. quickly final acc| +83657|105297|17800|5|47|61207.63|0.04|0.04|A|F|1995-01-19|1995-01-23|1995-02-06|DELIVER IN PERSON|SHIP|kly furiously express packages. blithely| +83657|711437|11438|6|14|20277.60|0.09|0.03|A|F|1995-02-15|1995-01-23|1995-02-23|TAKE BACK RETURN|SHIP|r packages. ironic, regular requests n| +83658|136259|48762|1|22|28495.50|0.08|0.06|R|F|1993-07-29|1993-07-20|1993-07-31|DELIVER IN PERSON|RAIL|cajole blithely. slyly ironic pinto b| +83658|99447|11949|2|28|40500.32|0.00|0.02|A|F|1993-07-25|1993-07-05|1993-08-06|TAKE BACK RETURN|AIR|nto beans. quickly ir| +83659|657104|32131|1|25|26526.75|0.06|0.03|A|F|1992-06-16|1992-04-22|1992-07-08|COLLECT COD|TRUCK|y pending instructions upon th| +83659|938410|13447|2|36|52141.32|0.08|0.01|R|F|1992-03-29|1992-04-30|1992-04-25|TAKE BACK RETURN|SHIP|e of the express accounts. p| +83659|856024|43576|3|41|40179.18|0.01|0.03|R|F|1992-05-16|1992-04-16|1992-06-06|COLLECT COD|SHIP|regular dolph| +83659|184166|34167|4|41|51256.56|0.04|0.04|A|F|1992-03-23|1992-04-16|1992-04-13|COLLECT COD|REG AIR|manently blithe deposits boost along th| +83659|261587|49103|5|44|68137.08|0.06|0.08|A|F|1992-04-24|1992-04-17|1992-04-29|DELIVER IN PERSON|SHIP| of the slyly special r| +83660|70238|32740|1|1|1208.23|0.07|0.03|N|O|1998-04-19|1998-04-03|1998-05-03|COLLECT COD|MAIL| even excuses nag careful| +83661|242834|17843|1|13|23098.66|0.00|0.08|N|O|1996-01-06|1996-02-11|1996-01-24|COLLECT COD|RAIL|even packages must impress. furiousl| +83661|303166|40685|2|26|30397.90|0.07|0.01|N|O|1996-04-07|1996-02-26|1996-04-23|NONE|TRUCK|heodolites h| +83661|297123|9629|3|6|6720.66|0.07|0.07|N|O|1996-02-25|1996-01-25|1996-03-14|NONE|MAIL|e the regula| +83661|736591|11620|4|39|63474.84|0.08|0.02|N|O|1996-04-01|1996-02-12|1996-04-24|NONE|AIR|s boost slyly ironic depo| +83661|874278|49313|5|28|35062.44|0.05|0.04|N|O|1996-02-27|1996-03-01|1996-03-18|TAKE BACK RETURN|SHIP|carefully into the slyly ironic ep| +83661|978091|28092|6|37|43254.85|0.06|0.02|N|O|1996-04-07|1996-01-31|1996-04-10|NONE|SHIP|inal, even requests. slyly even| +83661|766008|41039|7|21|22553.37|0.07|0.02|N|O|1996-02-07|1996-03-02|1996-02-12|TAKE BACK RETURN|SHIP|t deposits. bol| +83662|295842|8348|1|38|69837.54|0.01|0.08|A|F|1994-03-16|1994-02-23|1994-03-29|TAKE BACK RETURN|FOB| pending pinto beans haggle furio| +83663|83712|33713|1|49|83089.79|0.07|0.08|A|F|1993-01-12|1992-10-22|1993-01-16|NONE|FOB|azzle blithely whithout the slyly | +83663|936197|36198|2|8|9865.20|0.05|0.01|R|F|1992-10-01|1992-12-11|1992-10-18|COLLECT COD|AIR|s above the furiously unusual pinto beans w| +83663|649222|49223|3|21|24594.99|0.10|0.04|R|F|1992-10-10|1992-12-01|1992-11-04|DELIVER IN PERSON|FOB| according to the special excuses. slyly ir| +83663|461661|49189|4|13|21094.32|0.03|0.03|R|F|1992-12-09|1992-11-27|1993-01-02|NONE|AIR|ts wake blithely final foxes. furiousl| +83663|136107|11112|5|40|45724.00|0.02|0.06|A|F|1992-11-18|1992-11-26|1992-12-08|DELIVER IN PERSON|AIR|ructions h| +83663|541109|28640|6|19|21851.52|0.10|0.03|R|F|1992-12-15|1992-11-19|1993-01-10|DELIVER IN PERSON|MAIL| special packages. blithely bold foxes | +83663|403422|28439|7|38|50365.20|0.01|0.02|R|F|1992-10-08|1992-11-20|1992-10-11|TAKE BACK RETURN|RAIL| regular asymptotes. carefu| +83688|310699|10700|1|12|20516.16|0.01|0.06|R|F|1993-03-11|1993-05-26|1993-03-13|COLLECT COD|MAIL|regular forges nag carefull| +83689|227490|27491|1|46|65204.08|0.09|0.07|N|O|1998-04-15|1998-03-10|1998-05-10|NONE|MAIL|s pinto beans above the instru| +83689|417983|30492|2|41|77939.36|0.00|0.00|N|O|1998-01-18|1998-03-26|1998-02-11|DELIVER IN PERSON|TRUCK|sily among the regu| +83689|26811|14312|3|31|53872.11|0.05|0.01|N|O|1998-03-22|1998-03-08|1998-03-23|NONE|RAIL|ily regular ideas | +83690|226570|14083|1|43|64352.08|0.05|0.00|N|O|1996-05-09|1996-06-11|1996-05-14|COLLECT COD|RAIL|pending hockey players. bold deposits cajo| +83690|949430|24467|2|25|36984.75|0.09|0.00|N|O|1996-07-17|1996-05-14|1996-07-31|NONE|SHIP|final depend| +83690|60830|48334|3|40|71633.20|0.04|0.01|N|O|1996-05-06|1996-07-04|1996-06-01|COLLECT COD|TRUCK|furiously regular deposits. bli| +83690|368032|43047|4|39|42900.78|0.06|0.00|N|O|1996-08-01|1996-06-26|1996-08-16|NONE|MAIL|ully packages. fur| +83690|505101|42632|5|28|30970.24|0.02|0.03|N|O|1996-04-16|1996-05-14|1996-05-05|TAKE BACK RETURN|MAIL|usual packag| +83690|231540|6549|6|35|51503.55|0.04|0.03|N|O|1996-04-30|1996-05-27|1996-05-13|DELIVER IN PERSON|REG AIR|n dugouts cajole carefully regula| +83690|489269|14288|7|48|60395.52|0.04|0.04|N|O|1996-07-24|1996-05-22|1996-08-11|DELIVER IN PERSON|TRUCK|ly express packages integrate clo| +83691|142139|42140|1|18|21260.34|0.07|0.06|N|O|1998-06-16|1998-07-26|1998-07-04|TAKE BACK RETURN|RAIL|telets. unusual | +83691|917940|17941|2|38|74400.20|0.02|0.03|N|O|1998-07-26|1998-07-26|1998-08-25|COLLECT COD|MAIL| are furiously at the slow ideas. furiously| +83691|810772|48321|3|2|3365.46|0.08|0.06|N|O|1998-08-04|1998-07-10|1998-08-16|TAKE BACK RETURN|SHIP|y above the sometimes ironic accounts.| +83691|638763|13788|4|27|45946.71|0.07|0.00|N|O|1998-06-06|1998-07-07|1998-06-07|COLLECT COD|MAIL|final instru| +83691|688013|38014|5|19|19018.62|0.00|0.07|N|O|1998-08-26|1998-07-19|1998-09-19|DELIVER IN PERSON|FOB|ending, final instructions in| +83691|432305|7322|6|1|1237.28|0.00|0.04|N|O|1998-08-06|1998-06-16|1998-08-12|NONE|SHIP|ffily ironic instructions. carefully expre| +83692|541133|28664|1|49|57531.39|0.06|0.06|N|O|1996-02-02|1996-01-25|1996-03-01|DELIVER IN PERSON|RAIL| sleep fluffily. requests wake s| +83692|813970|13971|2|14|26375.02|0.04|0.00|N|O|1996-03-26|1996-03-01|1996-03-27|DELIVER IN PERSON|RAIL|al packages sleep slyly furious| +83693|707140|32169|1|15|17206.65|0.04|0.06|A|F|1992-08-15|1992-07-07|1992-08-22|DELIVER IN PERSON|MAIL|s cajole among the fluffily bold | +83693|898262|48263|2|8|10081.76|0.05|0.08|R|F|1992-09-10|1992-07-30|1992-09-19|COLLECT COD|SHIP|y even asymptotes. fluffily final deposit| +83693|79051|16555|3|44|45322.20|0.06|0.02|A|F|1992-07-05|1992-07-12|1992-07-15|COLLECT COD|TRUCK|ent reques| +83693|603225|15738|4|33|37230.27|0.07|0.07|A|F|1992-09-06|1992-07-22|1992-09-08|COLLECT COD|MAIL|to beans are furiously specia| +83693|395289|45290|5|49|67829.23|0.08|0.04|R|F|1992-07-14|1992-06-16|1992-07-19|COLLECT COD|MAIL|s among the slyly regular foxes haggle slyl| +83693|621399|21400|6|18|23766.48|0.00|0.00|R|F|1992-06-05|1992-07-09|1992-06-18|TAKE BACK RETURN|TRUCK|ily express | +83693|845905|8422|7|10|18508.60|0.06|0.05|A|F|1992-08-07|1992-07-27|1992-08-09|COLLECT COD|TRUCK|hin requests. tithes | +83694|111401|36406|1|15|21186.00|0.10|0.03|A|F|1993-10-22|1993-12-05|1993-11-15|TAKE BACK RETURN|MAIL|ons use furiously across the blithely| +83694|313424|943|2|36|51746.76|0.09|0.06|R|F|1994-01-12|1993-11-08|1994-02-11|TAKE BACK RETURN|TRUCK|carefully final accounts are fluf| +83694|709612|47155|3|12|19458.96|0.02|0.00|A|F|1993-12-29|1993-12-22|1994-01-21|TAKE BACK RETURN|SHIP|e slyly bold foxes. ideas n| +83694|432670|7687|4|15|24039.75|0.10|0.01|R|F|1994-01-30|1993-11-17|1994-02-15|DELIVER IN PERSON|FOB| instruction| +83694|884584|22136|5|22|34507.88|0.08|0.07|R|F|1994-01-24|1993-11-03|1994-02-23|TAKE BACK RETURN|REG AIR|uriously final accounts wake carefull| +83694|202824|40337|6|16|27628.96|0.00|0.07|A|F|1993-11-11|1993-11-23|1993-11-26|DELIVER IN PERSON|REG AIR| express instructions. iron| +83695|293302|30818|1|7|9067.03|0.00|0.08|R|F|1993-06-14|1993-07-04|1993-07-08|NONE|SHIP|quests. fluffily regular gi| +83720|59310|34313|1|1|1269.31|0.10|0.03|N|O|1996-08-16|1996-07-18|1996-08-26|COLLECT COD|REG AIR| pinto beans sleep carefully furiously sp| +83720|813762|1311|2|5|8378.60|0.06|0.00|N|O|1996-09-26|1996-08-28|1996-10-24|TAKE BACK RETURN|FOB|s. carefully ironic reque| +83721|82139|19643|1|36|40360.68|0.04|0.05|N|O|1996-01-03|1995-12-02|1996-01-05|NONE|MAIL|ular ideas after the bol| +83721|508481|8482|2|25|37236.50|0.07|0.02|N|O|1995-10-17|1995-12-24|1995-10-20|COLLECT COD|TRUCK|xpress excuses. blithely reg| +83721|28496|40997|3|45|64102.05|0.00|0.03|N|O|1996-01-21|1995-11-17|1996-02-13|TAKE BACK RETURN|SHIP|tructions. blithely | +83721|923123|10678|4|36|41258.88|0.01|0.02|N|O|1996-01-07|1995-12-18|1996-01-24|DELIVER IN PERSON|FOB|ss the carefully ev| +83722|261763|49279|1|38|65540.50|0.10|0.07|N|O|1998-07-20|1998-07-23|1998-08-19|NONE|TRUCK| deposits solve fluffily special i| +83722|442548|5057|2|37|55149.24|0.06|0.07|N|O|1998-08-25|1998-07-24|1998-09-16|DELIVER IN PERSON|RAIL|ctions sleep above the| +83722|898437|48438|3|6|8612.34|0.04|0.02|N|O|1998-05-23|1998-08-16|1998-05-27|TAKE BACK RETURN|REG AIR| requests. ideas are furiously. sly| +83722|23300|35801|4|33|40368.90|0.04|0.01|N|O|1998-05-21|1998-07-27|1998-06-12|NONE|AIR|slyly about the slyly ironic pac| +83722|592973|42974|5|43|88835.85|0.05|0.00|N|O|1998-07-08|1998-08-06|1998-07-22|DELIVER IN PERSON|AIR|kly final ideas. carefully ironic requests| +83722|95078|7580|6|13|13949.91|0.01|0.01|N|O|1998-07-19|1998-06-29|1998-08-08|NONE|REG AIR|ly even packages. quickly final t| +83723|749550|49551|1|23|36788.96|0.06|0.00|N|O|1997-07-18|1997-09-28|1997-07-19|COLLECT COD|RAIL|y about the slyly expr| +83723|681461|6488|2|27|38945.61|0.01|0.01|N|O|1997-10-17|1997-09-29|1997-11-16|TAKE BACK RETURN|MAIL|nstructions| +83723|309865|34878|3|41|76868.85|0.09|0.00|N|O|1997-07-18|1997-08-02|1997-08-11|NONE|SHIP| above the ironic, regular the| +83723|900639|25676|4|29|47548.11|0.00|0.05|N|O|1997-07-21|1997-09-21|1997-08-17|COLLECT COD|MAIL|ts. regular| +83724|209861|47374|1|12|21250.20|0.03|0.01|R|F|1993-12-29|1994-01-31|1994-01-12|NONE|AIR| ought to cajole furiously. enticing requ| +83724|132649|32650|2|29|48767.56|0.10|0.05|A|F|1994-02-06|1994-02-09|1994-02-16|COLLECT COD|SHIP|onic requests. ironic, regular account| +83724|415134|27643|3|15|15736.65|0.05|0.01|A|F|1993-12-02|1993-12-16|1994-01-01|DELIVER IN PERSON|MAIL|c foxes nag blithely above the ev| +83725|324439|24440|1|28|40975.76|0.02|0.06|N|O|1997-05-02|1997-03-26|1997-05-07|DELIVER IN PERSON|FOB|e blithely busy acco| +83725|841695|4212|2|24|39279.60|0.07|0.00|N|O|1997-01-13|1997-02-28|1997-02-03|NONE|RAIL|lar packages. regula| +83725|367410|4932|3|30|44322.00|0.09|0.02|N|O|1997-02-21|1997-03-07|1997-03-19|DELIVER IN PERSON|MAIL|express pinto beans. regul| +83726|829114|41631|1|17|17732.19|0.10|0.03|A|F|1995-04-10|1995-02-25|1995-04-12|COLLECT COD|SHIP|ng the fluffily ironic exc| +83726|906183|31220|2|20|23782.80|0.04|0.02|R|F|1995-05-10|1995-03-28|1995-06-06|TAKE BACK RETURN|AIR|posits. blithely final theodolites mai| +83726|206422|18927|3|13|17269.33|0.10|0.00|A|F|1995-03-21|1995-03-31|1995-03-31|COLLECT COD|REG AIR|uffily regular ac| +83726|322546|10065|4|42|65878.26|0.04|0.02|A|F|1995-02-05|1995-04-20|1995-02-20|TAKE BACK RETURN|REG AIR|cuses haggle furiously| +83726|19991|44992|5|13|24842.87|0.01|0.02|R|F|1995-05-19|1995-03-29|1995-06-15|TAKE BACK RETURN|FOB|egrate quickly carefully regular p| +83726|982331|44851|6|7|9893.03|0.02|0.08|A|F|1995-03-26|1995-04-16|1995-04-16|DELIVER IN PERSON|FOB|ts? brave instructions | +83727|80516|5519|1|28|41902.28|0.09|0.08|R|F|1994-03-25|1994-04-02|1994-04-06|NONE|SHIP|ly regular platelets sleep clo| +83727|221962|46971|2|29|54634.55|0.06|0.05|R|F|1994-02-03|1994-03-21|1994-02-22|NONE|MAIL|imes slyly sile| +83727|503202|15713|3|11|13256.98|0.09|0.05|A|F|1994-03-03|1994-02-16|1994-03-07|NONE|REG AIR| haggle. s| +83727|301370|26383|4|23|31541.28|0.07|0.02|A|F|1994-01-23|1994-04-05|1994-02-07|NONE|REG AIR|thely final packag| +83727|121985|21986|5|13|26090.74|0.06|0.00|R|F|1994-04-24|1994-02-23|1994-05-12|NONE|AIR|ly ironic packages. blithely f| +83727|192146|29656|6|16|19810.24|0.09|0.06|A|F|1994-04-04|1994-03-01|1994-04-10|DELIVER IN PERSON|TRUCK|nto beans are. fluf| +83752|913000|25519|1|41|41531.36|0.08|0.01|N|O|1997-12-27|1998-02-02|1998-01-20|DELIVER IN PERSON|MAIL| slyly blithely s| +83752|790158|2674|2|11|13729.32|0.06|0.01|N|O|1998-01-15|1997-12-09|1998-01-17|NONE|AIR|as. furiously quiet theodolites | +83752|168934|43941|3|47|94137.71|0.03|0.08|N|O|1998-01-21|1998-01-26|1998-02-13|TAKE BACK RETURN|REG AIR|refully. furiously| +83753|604778|17291|1|40|67309.60|0.09|0.05|A|F|1993-01-03|1993-02-16|1993-01-18|DELIVER IN PERSON|MAIL|ideas. blithely f| +83753|492803|42804|2|31|55669.18|0.06|0.03|A|F|1993-02-13|1993-02-14|1993-03-13|COLLECT COD|SHIP|uffily silent platelets use bli| +83753|531305|43816|3|26|34743.28|0.00|0.03|R|F|1993-03-07|1993-03-03|1993-04-03|DELIVER IN PERSON|TRUCK|eep. furiously ruthless theodolites nag| +83753|640294|15319|4|31|38262.06|0.03|0.06|R|F|1993-04-07|1993-01-27|1993-04-23|DELIVER IN PERSON|MAIL|. carefully ironic pinto b| +83753|412608|12609|5|2|3041.16|0.07|0.01|R|F|1993-04-12|1993-02-17|1993-04-27|NONE|FOB|ickly ruthless deposits wake| +83753|698144|10658|6|12|13705.32|0.05|0.07|A|F|1993-03-10|1993-02-21|1993-03-30|TAKE BACK RETURN|FOB|ing somas against the even, | +83754|622204|34717|1|13|14640.21|0.05|0.04|N|O|1996-12-09|1996-12-31|1996-12-10|NONE|SHIP| pending pearls b| +83754|372594|22595|2|18|29998.44|0.10|0.04|N|O|1996-12-31|1996-11-27|1997-01-22|NONE|MAIL|ts among the daringly bold a| +83754|184463|34464|3|33|51066.18|0.10|0.07|N|O|1997-01-04|1997-01-09|1997-01-14|COLLECT COD|MAIL|express pinto| +83754|260829|23335|4|2|3579.62|0.09|0.03|N|O|1996-12-12|1997-01-08|1996-12-26|DELIVER IN PERSON|MAIL|its. quickly ironic foxes toward t| +83754|747821|22850|5|5|9343.95|0.00|0.05|N|O|1996-12-25|1996-12-23|1997-01-22|COLLECT COD|SHIP|cies cajole furiously quickly express ideas| +83754|621917|21918|6|14|25744.32|0.05|0.06|N|O|1996-11-15|1996-11-26|1996-11-23|NONE|FOB|ong the blithely sile| +83754|556356|18868|7|42|59317.86|0.05|0.06|N|O|1997-01-13|1996-11-18|1997-01-18|COLLECT COD|RAIL|after the fin| +83755|671169|21170|1|48|54726.24|0.08|0.00|N|O|1995-12-17|1996-01-25|1995-12-21|COLLECT COD|REG AIR|ake blithely unusual deposits. re| +83755|324025|49038|2|5|5245.05|0.03|0.06|N|O|1995-11-12|1995-12-04|1995-11-15|DELIVER IN PERSON|RAIL|hless pinto beans | +83755|877737|27738|3|33|56584.77|0.02|0.00|N|O|1995-11-13|1995-11-29|1995-11-17|NONE|REG AIR|ial platelets. final deposits across t| +83755|122755|35258|4|5|8888.75|0.09|0.08|N|O|1995-12-17|1996-01-03|1995-12-24|DELIVER IN PERSON|RAIL|tions are furiously after the regular, reg| +83755|138519|38520|5|29|45167.79|0.03|0.06|N|O|1996-01-11|1996-01-01|1996-01-31|DELIVER IN PERSON|FOB|refully express ideas after the fluffil| +83755|72975|47978|6|20|38959.40|0.06|0.02|N|O|1996-01-14|1995-12-27|1996-02-06|NONE|REG AIR|furiously alongside of t| +83756|379735|29736|1|23|41738.56|0.10|0.07|A|F|1994-07-09|1994-07-20|1994-08-08|COLLECT COD|RAIL|t excuses shall cajole ca| +83756|200294|12799|2|30|35828.40|0.03|0.07|A|F|1994-07-06|1994-09-06|1994-07-31|NONE|FOB| dolphins until the slyly regular | +83757|245885|8390|1|45|82389.15|0.10|0.06|R|F|1993-09-15|1993-10-18|1993-09-27|TAKE BACK RETURN|MAIL| fluffily bold asymptotes. quickl| +83758|704527|29556|1|34|52070.66|0.10|0.02|N|O|1996-06-30|1996-07-18|1996-07-06|TAKE BACK RETURN|AIR|ding to the carefully ironic packages. c| +83758|970526|45565|2|26|41508.48|0.08|0.01|N|O|1996-08-29|1996-08-01|1996-08-30|TAKE BACK RETURN|TRUCK|ccounts wake carefully | +83759|748137|10652|1|25|29627.50|0.08|0.05|A|F|1994-12-08|1994-12-11|1994-12-22|COLLECT COD|MAIL|blithely regular accounts. carefully| +83784|435343|35344|1|43|54967.76|0.03|0.04|N|O|1998-03-22|1998-03-05|1998-04-05|DELIVER IN PERSON|RAIL|kages wake after the ideas; unusual inst| +83784|808727|46276|2|30|49070.40|0.03|0.07|N|O|1998-03-21|1998-02-21|1998-03-30|DELIVER IN PERSON|REG AIR|ly special packages cajole ca| +83784|260544|35555|3|19|28586.07|0.05|0.01|N|O|1998-01-11|1998-01-15|1998-02-04|COLLECT COD|TRUCK|ronic accounts use blithely| +83784|958287|20807|4|17|22869.08|0.01|0.05|N|O|1998-04-06|1998-03-11|1998-04-11|NONE|RAIL|requests sleep quickly pen| +83784|915556|15557|5|2|3143.02|0.10|0.01|N|O|1998-03-26|1998-02-19|1998-03-27|DELIVER IN PERSON|RAIL| fluffily silen| +83784|744911|7426|6|8|15647.04|0.07|0.02|N|O|1998-03-08|1998-02-11|1998-03-16|NONE|RAIL|olites. furiously even exc| +83785|626677|14214|1|7|11225.48|0.07|0.00|A|F|1992-06-16|1992-06-12|1992-07-04|COLLECT COD|RAIL|y after the even instructions. eve| +83785|548643|48644|2|37|62589.94|0.08|0.03|A|F|1992-05-06|1992-06-12|1992-05-26|NONE|REG AIR|y unusual pinto beans are bravely specia| +83785|40792|28293|3|47|81441.13|0.02|0.01|R|F|1992-04-18|1992-05-22|1992-05-17|NONE|RAIL|s boost carefully un| +83785|582278|7301|4|12|16323.00|0.05|0.06|R|F|1992-06-03|1992-06-08|1992-06-12|DELIVER IN PERSON|REG AIR|y quickly final account| +83785|334309|21828|5|36|48358.44|0.04|0.00|A|F|1992-04-30|1992-04-21|1992-05-07|DELIVER IN PERSON|MAIL|gage regular, special deposits. sl| +83785|731070|31071|6|46|50647.84|0.04|0.01|A|F|1992-05-06|1992-04-18|1992-05-09|COLLECT COD|MAIL|eas. carefully r| +83785|79365|41867|7|30|40330.80|0.00|0.06|A|F|1992-07-05|1992-06-06|1992-07-27|COLLECT COD|RAIL|ithely final packages. even r| +83786|885414|10449|1|34|47578.58|0.05|0.06|N|O|1997-03-29|1997-04-18|1997-04-06|DELIVER IN PERSON|TRUCK|ages affix; carefully final theodolites sle| +83786|142339|29846|2|48|66303.84|0.06|0.02|N|O|1997-04-17|1997-04-17|1997-05-03|NONE|TRUCK| foxes sleep| +83786|276666|26667|3|3|4927.95|0.02|0.03|N|O|1997-04-21|1997-04-13|1997-05-15|TAKE BACK RETURN|RAIL|s. furiously even fr| +83786|910243|35280|4|21|26317.20|0.02|0.04|N|O|1997-04-19|1997-03-16|1997-05-12|NONE|REG AIR|ow instructions. furiously | +83786|440810|28335|5|36|63028.44|0.09|0.02|N|O|1997-03-21|1997-05-06|1997-04-04|DELIVER IN PERSON|RAIL|lent requests. de| +83786|685379|35380|6|13|17736.42|0.01|0.07|N|O|1997-04-10|1997-05-02|1997-04-20|COLLECT COD|REG AIR| final requests use| +83787|165109|27613|1|30|35223.00|0.03|0.04|R|F|1993-06-07|1993-04-15|1993-06-14|TAKE BACK RETURN|AIR|. furiously bol| +83787|973405|48444|2|33|48785.88|0.04|0.01|R|F|1993-06-15|1993-04-18|1993-06-22|COLLECT COD|RAIL| blithely bold sheave| +83787|1538|26539|3|45|64778.85|0.06|0.06|R|F|1993-05-06|1993-05-02|1993-05-21|DELIVER IN PERSON|SHIP| cajole carefully across the | +83787|837499|37500|4|2|2872.90|0.05|0.01|R|F|1993-06-01|1993-04-19|1993-06-25|DELIVER IN PERSON|SHIP|uriously spec| +83787|829971|29972|5|18|34216.74|0.08|0.02|R|F|1993-05-22|1993-03-24|1993-05-31|NONE|AIR|yly final deposits. carefully permanent d| +83787|318771|31278|6|16|28636.16|0.00|0.00|R|F|1993-05-30|1993-04-26|1993-06-26|NONE|REG AIR|ructions. blithel| +83788|258792|21298|1|19|33264.82|0.07|0.06|A|F|1993-01-17|1993-01-07|1993-01-22|COLLECT COD|MAIL|dolites. slyly pending accounts hagg| +83788|501234|13745|2|23|28409.83|0.00|0.06|A|F|1993-02-15|1993-01-09|1993-03-07|COLLECT COD|TRUCK|uickly slyly pending account| +83788|226249|13762|3|44|51710.12|0.04|0.05|A|F|1992-11-11|1993-01-17|1992-12-11|COLLECT COD|REG AIR|ular courts. carefully ex| +83789|526347|13878|1|15|20599.80|0.02|0.03|N|O|1996-07-26|1996-06-07|1996-07-31|COLLECT COD|RAIL|nic forges hi| +83790|41048|16049|1|18|17802.72|0.07|0.03|A|F|1993-12-02|1993-12-20|1993-12-14|COLLECT COD|RAIL|nic ideas haggle-- final, regular req| +83791|523668|36179|1|13|21991.32|0.10|0.04|A|F|1994-11-07|1994-09-09|1994-12-04|DELIVER IN PERSON|AIR|sleep furio| +83791|280489|5500|2|40|58778.80|0.06|0.02|R|F|1994-08-20|1994-10-02|1994-08-27|DELIVER IN PERSON|SHIP|al packages slee| +83791|173077|10587|3|4|4600.28|0.08|0.04|R|F|1994-10-26|1994-11-07|1994-11-08|NONE|TRUCK|ecial packages are furiously. ironic, spe| +83816|303651|41170|1|24|39711.36|0.02|0.08|A|F|1993-10-03|1993-10-31|1993-10-20|TAKE BACK RETURN|MAIL|y regular de| +83817|801875|1876|1|40|71073.20|0.06|0.07|N|O|1996-12-27|1997-01-17|1997-01-02|COLLECT COD|RAIL|even instructions. r| +83817|107550|7551|2|34|52956.70|0.05|0.00|N|O|1997-03-01|1997-02-06|1997-03-11|COLLECT COD|AIR|s boost. regular deposit| +83817|579340|4363|3|1|1419.32|0.09|0.01|N|O|1997-02-23|1996-12-31|1997-03-09|TAKE BACK RETURN|FOB|e quickly alongside of the packages: reque| +83818|328622|28623|1|22|36313.42|0.01|0.00|N|O|1998-06-16|1998-05-25|1998-06-30|TAKE BACK RETURN|TRUCK|usly regular accounts. slyly regular e| +83818|147144|47145|2|7|8337.98|0.08|0.00|N|O|1998-05-05|1998-06-07|1998-05-19|COLLECT COD|TRUCK|hin deposits haggle carefully a| +83818|48968|36469|3|14|26837.44|0.00|0.07|N|O|1998-08-08|1998-06-08|1998-08-18|TAKE BACK RETURN|FOB|into the regular, pending req| +83818|993521|6041|4|37|59735.76|0.07|0.07|N|O|1998-07-25|1998-05-24|1998-08-05|TAKE BACK RETURN|AIR| furiously ironic deposits sleep af| +83819|673261|10801|1|37|45666.51|0.09|0.04|A|F|1992-04-08|1992-02-25|1992-04-23|DELIVER IN PERSON|AIR|ecial theodolites above the | +83819|487518|28|2|11|16560.39|0.06|0.01|A|F|1992-04-12|1992-04-12|1992-05-11|TAKE BACK RETURN|FOB|cial requests according to the furiously r| +83820|535201|47712|1|21|25959.78|0.04|0.01|A|F|1992-04-30|1992-04-13|1992-05-18|DELIVER IN PERSON|REG AIR|decoys. enticing bra| +83820|108812|8813|2|30|54624.30|0.01|0.02|R|F|1992-05-21|1992-05-18|1992-06-08|COLLECT COD|FOB|uriously special| +83820|794960|19991|3|28|57538.04|0.09|0.05|R|F|1992-04-17|1992-04-09|1992-05-07|NONE|REG AIR|areful accounts-- s| +83821|44451|31952|1|49|68377.05|0.04|0.00|N|O|1996-05-29|1996-06-10|1996-06-25|TAKE BACK RETURN|MAIL|inal accounts. silent platelets nag fl| +83821|81199|43701|2|2|2360.38|0.07|0.04|N|O|1996-06-27|1996-05-30|1996-07-08|DELIVER IN PERSON|AIR|ions. furiously pending foxes are si| +83821|698213|48214|3|16|19378.88|0.06|0.04|N|O|1996-04-24|1996-05-17|1996-05-01|COLLECT COD|AIR|luffily. deposits wake| +83821|859610|22128|4|32|50226.24|0.10|0.03|N|O|1996-06-25|1996-06-04|1996-07-01|NONE|MAIL|y pending accounts are ca| +83822|730953|43468|1|29|57533.68|0.03|0.02|A|F|1992-10-04|1992-12-10|1992-10-28|NONE|MAIL|ss the bravely final id| +83823|603717|16230|1|45|72930.60|0.05|0.05|R|F|1993-11-22|1993-10-08|1993-12-18|DELIVER IN PERSON|FOB|ly pending accounts haggle. fur| +83823|661055|23569|2|30|30480.60|0.09|0.08|R|F|1993-11-16|1993-10-19|1993-11-18|DELIVER IN PERSON|SHIP|ke slyly fin| +83823|335582|10595|3|16|25881.12|0.04|0.07|A|F|1993-11-19|1993-11-22|1993-11-27|DELIVER IN PERSON|SHIP|sly. quickly bold theodolites mai| +83848|274773|12289|1|23|40198.48|0.10|0.05|R|F|1992-05-21|1992-07-10|1992-05-25|TAKE BACK RETURN|MAIL|, even deposits. slyly expre| +83848|103252|15755|2|11|13807.75|0.02|0.05|A|F|1992-07-23|1992-07-09|1992-08-03|NONE|TRUCK|ts. unusual packages are sl| +83848|346773|21786|3|37|67331.12|0.00|0.03|A|F|1992-08-24|1992-07-04|1992-09-05|DELIVER IN PERSON|TRUCK|wake slyly bold deposits. unusua| +83848|207553|45066|4|8|11684.32|0.01|0.04|A|F|1992-08-09|1992-07-22|1992-08-30|COLLECT COD|TRUCK|nts. fluffily b| +83848|327929|2942|5|33|64578.03|0.05|0.01|R|F|1992-08-09|1992-07-20|1992-08-20|NONE|SHIP| packages. care| +83848|490887|15906|6|9|16900.74|0.06|0.02|R|F|1992-06-16|1992-07-29|1992-07-07|COLLECT COD|FOB|ffily since the stealth| +83849|917673|17674|1|34|57481.42|0.03|0.02|R|F|1992-12-28|1993-01-01|1993-01-01|NONE|FOB|ithely even platelets sl| +83849|318968|43981|2|27|53647.65|0.10|0.00|A|F|1993-01-28|1993-01-15|1993-02-13|NONE|SHIP|y silent deposits cajole fluffil| +83849|892939|30491|3|32|61820.48|0.00|0.00|R|F|1993-02-13|1993-01-18|1993-02-17|TAKE BACK RETURN|MAIL|furiously careful packa| +83849|614235|39260|4|17|19536.40|0.06|0.06|A|F|1992-11-14|1992-12-26|1992-12-10|TAKE BACK RETURN|REG AIR|ic accounts against the quickly pen| +83850|403297|40822|1|17|20404.59|0.07|0.00|N|O|1998-03-12|1998-04-15|1998-04-05|TAKE BACK RETURN|SHIP|itaphs haggle furiously furiously silen| +83850|203770|41283|2|38|63602.88|0.03|0.01|N|O|1998-05-16|1998-04-15|1998-06-10|DELIVER IN PERSON|FOB|final accounts are bli| +83851|857723|32758|1|12|20168.16|0.05|0.01|R|F|1992-05-20|1992-05-21|1992-05-23|DELIVER IN PERSON|TRUCK|nts sleep furiously furiously even| +83851|735927|35928|2|47|92255.83|0.07|0.07|R|F|1992-06-18|1992-06-18|1992-07-15|TAKE BACK RETURN|FOB|es about the quickly| +83851|711864|36893|3|39|73157.37|0.10|0.08|R|F|1992-06-19|1992-05-08|1992-06-27|TAKE BACK RETURN|SHIP|s engage fluffily ironic depos| +83851|286987|24503|4|46|90802.62|0.01|0.07|R|F|1992-05-14|1992-05-09|1992-05-28|COLLECT COD|MAIL|? excuses shall have to use about the bl| +83852|753132|3133|1|17|20146.70|0.05|0.07|R|F|1993-07-19|1993-09-23|1993-07-24|COLLECT COD|RAIL|ut the carefully ironic e| +83852|873261|10813|2|14|17279.08|0.08|0.03|A|F|1993-09-01|1993-10-10|1993-09-04|NONE|REG AIR|inal instructio| +83853|507572|7573|1|23|36329.65|0.02|0.00|A|F|1994-11-11|1994-10-30|1994-11-27|COLLECT COD|REG AIR|furiously against the regular the| +83853|747017|47018|2|48|51071.04|0.05|0.01|R|F|1994-10-16|1994-10-28|1994-11-08|DELIVER IN PERSON|FOB|uickly: carefully ex| +83853|104893|4894|3|30|56936.70|0.08|0.07|R|F|1994-11-06|1994-11-18|1994-11-11|NONE|TRUCK|ully regular platelets thrash carefull| +83853|932463|20018|4|42|62807.64|0.04|0.03|R|F|1994-09-24|1994-10-25|1994-09-27|NONE|AIR| instructions| +83854|865579|28097|1|49|75681.97|0.10|0.03|N|O|1997-01-16|1997-01-23|1997-02-12|NONE|MAIL|ding packa| +83854|770275|45306|2|37|49773.88|0.01|0.00|N|O|1997-04-10|1997-02-13|1997-05-09|NONE|REG AIR|y unusual asymptotes sleep sometimes abo| +83854|995230|20269|3|34|45056.46|0.01|0.04|N|O|1997-02-10|1997-02-25|1997-02-13|NONE|TRUCK|e bravely above| +83854|827996|3029|4|37|71186.15|0.03|0.04|N|O|1997-02-12|1997-01-14|1997-02-24|DELIVER IN PERSON|AIR|ely even instructions pro| +83855|457613|20123|1|2|3141.18|0.07|0.06|N|O|1998-01-11|1998-01-05|1998-01-24|NONE|MAIL|he blithely thin | +83855|99358|24361|2|14|19002.90|0.07|0.07|N|O|1997-12-30|1997-11-16|1998-01-11|NONE|SHIP|ts are carefully a| +83855|902039|39594|3|41|42680.59|0.00|0.00|N|O|1997-10-18|1997-11-15|1997-11-13|DELIVER IN PERSON|REG AIR|cies cajole express requests. ironic, pen| +83880|465903|15904|1|44|82230.72|0.01|0.01|N|O|1997-03-31|1997-01-15|1997-04-01|DELIVER IN PERSON|FOB|aphs thrash carefully. carefu| +83880|427569|40078|2|34|50882.36|0.09|0.05|N|O|1997-03-30|1997-02-18|1997-04-28|NONE|FOB|egrate around the accounts. unusu| +83880|142444|42445|3|50|74322.00|0.01|0.00|N|O|1996-12-14|1997-02-03|1997-01-06|COLLECT COD|FOB|nstructions are ironically about the a| +83880|45621|20622|4|32|50131.84|0.09|0.07|N|O|1997-02-13|1997-01-31|1997-02-26|COLLECT COD|RAIL|ly regular fo| +83880|738808|26351|5|28|51709.56|0.04|0.01|N|O|1997-01-09|1997-03-10|1997-02-01|COLLECT COD|TRUCK|ffily among| +83880|133759|8764|6|31|55575.25|0.03|0.03|N|O|1997-01-15|1997-02-21|1997-01-21|NONE|AIR|kages. regular foxes sleep blithely dolp| +83881|870912|45947|1|41|77197.67|0.04|0.07|A|F|1994-10-05|1994-10-25|1994-10-23|NONE|AIR| ideas. furiously fin| +83881|415198|40215|2|18|20037.06|0.09|0.06|R|F|1994-12-17|1994-10-29|1994-12-19|COLLECT COD|AIR|nic accounts sleep blithely | +83882|653371|3372|1|49|64892.66|0.01|0.02|A|F|1993-11-07|1993-09-13|1993-11-24|DELIVER IN PERSON|SHIP|egular pinto beans| +83882|201147|26156|2|42|44021.46|0.01|0.04|A|F|1993-10-14|1993-09-10|1993-10-18|DELIVER IN PERSON|FOB| among the slyly unusual depo| +83883|887461|37462|1|32|46349.44|0.02|0.00|N|O|1997-12-18|1998-01-07|1998-01-03|TAKE BACK RETURN|MAIL|gular depende| +83883|543082|5593|2|45|50627.70|0.09|0.08|N|O|1998-01-03|1998-01-25|1998-01-25|TAKE BACK RETURN|TRUCK|riously throughout the silent, sile| +83883|572147|9681|3|10|12191.20|0.02|0.01|N|O|1997-11-14|1998-01-09|1997-11-28|COLLECT COD|FOB|eposits boost instructions. acc| +83883|59108|9109|4|35|37348.50|0.02|0.01|N|O|1997-11-11|1998-01-21|1997-12-11|DELIVER IN PERSON|SHIP|. pearls across the| +83883|426478|14003|5|15|21066.75|0.10|0.01|N|O|1997-12-16|1997-12-16|1997-12-26|COLLECT COD|REG AIR|ording to the silent pack| +83883|815286|40319|6|46|55257.04|0.05|0.02|N|O|1997-11-12|1997-12-01|1997-11-27|NONE|SHIP|iously. final packages will h| +83884|399323|11831|1|44|62581.64|0.02|0.01|N|O|1997-08-11|1997-09-19|1997-09-01|TAKE BACK RETURN|SHIP|ct furiously bold packages. quick| +83884|405481|30498|2|46|63777.16|0.06|0.08|N|O|1997-07-28|1997-10-22|1997-08-03|COLLECT COD|REG AIR|dolites alo| +83884|919021|19022|3|35|36399.30|0.06|0.01|N|O|1997-10-15|1997-10-17|1997-10-21|DELIVER IN PERSON|TRUCK|te furiously against the slyly | +83884|984063|34064|4|35|40145.70|0.10|0.07|N|O|1997-09-20|1997-09-24|1997-10-13|TAKE BACK RETURN|RAIL|luffily ab| +83884|143561|31068|5|41|65786.96|0.09|0.05|N|O|1997-10-24|1997-09-05|1997-11-04|COLLECT COD|SHIP|the attainments. requests | +83884|826864|14413|6|26|46561.32|0.00|0.01|N|O|1997-08-03|1997-09-03|1997-08-23|DELIVER IN PERSON|REG AIR|ions. carefully unusual fre| +83884|98989|11491|7|27|53675.46|0.05|0.05|N|O|1997-10-28|1997-09-18|1997-11-07|DELIVER IN PERSON|FOB|s sleep carefully caref| +83885|694038|19065|1|7|7224.00|0.02|0.02|A|F|1994-08-29|1994-09-03|1994-09-07|NONE|FOB|ould are regular| +83885|690379|2893|2|46|62989.64|0.04|0.08|R|F|1994-11-02|1994-10-15|1994-11-09|TAKE BACK RETURN|REG AIR|instructions | +83885|188453|25963|3|15|23121.75|0.09|0.01|R|F|1994-11-04|1994-08-29|1994-11-29|TAKE BACK RETURN|RAIL|. furiously even accounts a| +83885|314038|26545|4|35|36820.70|0.09|0.02|A|F|1994-07-29|1994-09-16|1994-08-25|DELIVER IN PERSON|RAIL|slow epitaphs. special deposits | +83885|33054|8055|5|34|33559.70|0.08|0.06|R|F|1994-09-14|1994-08-26|1994-10-12|NONE|RAIL|c pinto beans eat quickly. i| +83885|535961|35962|6|34|67895.96|0.00|0.07|R|F|1994-10-12|1994-09-22|1994-10-18|COLLECT COD|FOB|iously even waters boos| +83886|787188|24734|1|12|15301.80|0.03|0.04|N|O|1996-05-19|1996-03-18|1996-06-01|TAKE BACK RETURN|TRUCK|its! ironic deposits haggle. u| +83886|267769|30275|2|40|69470.00|0.01|0.06|N|O|1996-05-05|1996-03-12|1996-05-25|TAKE BACK RETURN|SHIP|the quickly| +83886|378661|3676|3|48|83503.20|0.05|0.01|N|O|1996-01-28|1996-04-20|1996-02-19|TAKE BACK RETURN|SHIP|quickly ironic foxes use carefu| +83886|149861|12364|4|32|61147.52|0.06|0.07|N|O|1996-04-17|1996-04-19|1996-04-20|NONE|TRUCK|blithely ironic accounts are furiousl| +83886|704461|16976|5|9|13188.87|0.01|0.05|N|O|1996-04-14|1996-03-08|1996-04-30|DELIVER IN PERSON|REG AIR|y among the carefully even pinto bea| +83886|862930|12931|6|32|60572.48|0.02|0.03|N|O|1996-03-09|1996-02-27|1996-04-03|NONE|REG AIR|. blithely pending requ| +83887|608481|20994|1|28|38904.60|0.08|0.07|N|O|1996-08-09|1996-06-28|1996-08-24|DELIVER IN PERSON|MAIL|bove the s| +83887|730611|30612|2|41|67304.78|0.10|0.03|N|O|1996-08-23|1996-06-17|1996-09-19|NONE|RAIL|ndencies sleep carefully special| +83912|558708|46242|1|49|86567.32|0.00|0.04|N|O|1996-01-25|1996-02-10|1996-02-08|NONE|REG AIR|ily carefully u| +83912|195570|8074|2|14|23317.98|0.01|0.07|N|O|1996-02-20|1996-01-29|1996-03-07|NONE|REG AIR|asymptotes would are after the pend| +83912|937118|12155|3|35|40427.45|0.08|0.07|N|O|1996-02-15|1996-01-25|1996-02-29|COLLECT COD|MAIL|blithe patte| +83913|226303|13816|1|7|8605.03|0.05|0.05|R|F|1992-12-13|1992-10-20|1993-01-03|NONE|TRUCK|ructions boost| +83913|460545|10546|2|34|51187.68|0.07|0.06|A|F|1992-12-11|1992-11-23|1993-01-06|DELIVER IN PERSON|FOB|hould wake quickly among the request| +83913|378601|16123|3|38|63824.42|0.06|0.06|A|F|1992-11-19|1992-11-05|1992-12-06|COLLECT COD|SHIP|after the furiou| +83913|135039|47542|4|47|50479.41|0.10|0.06|R|F|1992-09-19|1992-11-13|1992-10-01|DELIVER IN PERSON|TRUCK|lyly. iron| +83913|594086|31620|5|27|31861.62|0.07|0.03|R|F|1992-11-11|1992-10-16|1992-12-03|COLLECT COD|MAIL|equests boo| +83913|787617|25163|6|34|57955.72|0.04|0.00|R|F|1992-11-28|1992-09-29|1992-12-28|TAKE BACK RETURN|TRUCK|posits wake along the accoun| +83913|477318|14846|7|2|2590.58|0.02|0.04|A|F|1992-12-19|1992-10-24|1993-01-13|COLLECT COD|MAIL| pending attainments boost. regular | +83914|279107|41613|1|18|19549.62|0.03|0.00|R|F|1992-05-11|1992-05-22|1992-05-23|COLLECT COD|SHIP|regular depths | +83914|949798|12317|2|4|7391.00|0.07|0.03|R|F|1992-04-06|1992-06-28|1992-04-18|COLLECT COD|REG AIR|al requests integrate blithel| +83914|243537|18546|3|6|8883.12|0.03|0.07|R|F|1992-07-22|1992-06-17|1992-07-23|DELIVER IN PERSON|RAIL|furiously unusual platel| +83914|116060|16061|4|23|24749.38|0.02|0.08|A|F|1992-04-01|1992-06-12|1992-04-21|COLLECT COD|TRUCK|se quickly bold excuses. re| +83914|619950|32463|5|41|76666.72|0.05|0.01|A|F|1992-05-04|1992-05-20|1992-05-29|NONE|AIR|ironic requ| +83915|395991|45992|1|17|35478.66|0.04|0.05|N|O|1996-11-16|1996-11-15|1996-12-16|DELIVER IN PERSON|REG AIR| against the special deposits are slyly | +83915|412036|24545|2|13|12324.13|0.05|0.00|N|O|1997-01-03|1996-11-17|1997-01-15|COLLECT COD|MAIL|ay detect fluffily regular instructions| +83916|869116|19117|1|26|28211.82|0.04|0.01|R|F|1992-12-20|1993-01-06|1992-12-25|COLLECT COD|FOB|ven packages. | +83916|228133|3142|2|39|41383.68|0.08|0.06|R|F|1992-10-22|1992-11-17|1992-11-07|DELIVER IN PERSON|MAIL|evenly bold warhorses sleep blit| +83916|224751|12264|3|6|10054.44|0.08|0.03|A|F|1993-02-03|1992-11-19|1993-02-10|NONE|MAIL| along the theodolites | +83916|377745|15267|4|4|7290.92|0.03|0.07|A|F|1993-02-01|1992-12-13|1993-02-17|DELIVER IN PERSON|TRUCK|ronic platelets haggle a| +83916|759736|47282|5|4|7182.80|0.04|0.07|R|F|1992-12-13|1992-11-25|1992-12-18|COLLECT COD|FOB| packages; ironic accou| +83916|878656|3691|6|23|37596.03|0.09|0.01|A|F|1992-11-13|1992-12-13|1992-11-24|NONE|MAIL|cies. express, bold deposits| +83917|5304|30305|1|47|56837.10|0.02|0.03|N|O|1996-08-26|1996-07-10|1996-09-10|COLLECT COD|MAIL|ithely even instructions haggle across th| +83917|138308|13313|2|14|18848.20|0.04|0.01|N|O|1996-05-22|1996-07-22|1996-06-02|DELIVER IN PERSON|RAIL|even pinto beans. fina| +83917|533452|20983|3|3|4456.29|0.08|0.03|N|O|1996-06-19|1996-08-08|1996-06-22|NONE|MAIL|es use quickly slyly silent at| +83917|727456|27457|4|39|57853.38|0.08|0.07|N|O|1996-06-21|1996-07-11|1996-07-13|COLLECT COD|TRUCK|ackages. s| +83917|339141|1648|5|1|1180.13|0.07|0.00|N|O|1996-07-14|1996-07-03|1996-07-20|NONE|TRUCK| sly reques| +83918|903662|41217|1|23|38309.26|0.01|0.05|N|O|1996-12-26|1997-01-17|1997-01-02|COLLECT COD|REG AIR|he slyly unusual deposits integrate| +83918|830937|30938|2|2|3735.78|0.00|0.02|N|O|1997-01-02|1997-01-04|1997-01-18|DELIVER IN PERSON|TRUCK|kages. regular a| +83918|545534|20555|3|31|48964.81|0.01|0.08|N|O|1996-12-29|1996-12-28|1997-01-12|COLLECT COD|FOB|he quickly regular r| +83919|499699|49700|1|25|42466.75|0.06|0.03|R|F|1993-05-01|1993-04-08|1993-05-03|NONE|REG AIR|lites. ironic, final packages cajole sl| +83919|436954|11971|2|17|32145.81|0.06|0.02|A|F|1993-01-21|1993-03-26|1993-01-31|TAKE BACK RETURN|AIR| special instructions. busily even | +83919|876788|26789|3|23|40589.02|0.01|0.03|R|F|1993-01-13|1993-04-07|1993-01-17|NONE|RAIL| blithely ev| +83919|171558|34062|4|25|40738.75|0.05|0.04|A|F|1993-04-22|1993-03-08|1993-04-27|NONE|REG AIR| deposits integrate blithely regular| +83919|368681|31189|5|2|3499.34|0.06|0.03|R|F|1993-05-03|1993-04-03|1993-05-10|DELIVER IN PERSON|MAIL|iously final foxes sle| +83919|419623|7148|6|40|61704.00|0.06|0.04|R|F|1993-02-21|1993-03-18|1993-03-17|DELIVER IN PERSON|SHIP|fluffily ironic instructio| +83944|826312|26313|1|28|34671.56|0.00|0.08|R|F|1994-07-17|1994-06-07|1994-07-31|COLLECT COD|AIR| express frets. furiously pending a| +83944|819067|31584|2|3|2958.06|0.02|0.06|R|F|1994-05-04|1994-06-05|1994-05-28|TAKE BACK RETURN|AIR|ealthily across the regular, | +83944|50192|12694|3|43|49114.17|0.03|0.00|R|F|1994-07-18|1994-06-08|1994-08-10|NONE|MAIL| furiously regular packages sleep furi| +83944|569719|7253|4|12|21464.28|0.02|0.08|A|F|1994-07-20|1994-06-26|1994-07-29|DELIVER IN PERSON|TRUCK|s fluffily ruth| +83944|260778|23284|5|26|45207.76|0.08|0.02|A|F|1994-04-07|1994-06-30|1994-04-24|DELIVER IN PERSON|REG AIR|ely according to the carefully r| +83945|558400|8401|1|28|40834.64|0.10|0.04|A|F|1994-12-23|1995-01-01|1995-01-17|TAKE BACK RETURN|AIR|urts cajole carefully| +83945|18865|43866|2|30|53515.80|0.08|0.02|A|F|1994-12-06|1995-01-28|1994-12-16|DELIVER IN PERSON|RAIL|ress, unusual | +83945|56378|31381|3|50|66718.50|0.06|0.06|A|F|1995-03-02|1995-02-20|1995-03-22|NONE|SHIP|into beans. furiously sly requests use| +83945|533729|21260|4|39|68745.30|0.02|0.03|A|F|1995-01-09|1995-01-22|1995-01-10|NONE|SHIP|r hockey players.| +83945|377830|40338|5|39|74404.98|0.09|0.08|A|F|1995-03-08|1995-01-25|1995-03-16|COLLECT COD|TRUCK|eposits are carefully| +83946|847175|22208|1|39|43763.07|0.01|0.02|R|F|1995-04-14|1995-05-05|1995-04-18|DELIVER IN PERSON|FOB|onic pinto beans. furi| +83946|466761|29271|2|16|27643.84|0.04|0.08|R|F|1995-04-16|1995-05-09|1995-04-23|TAKE BACK RETURN|TRUCK| unusual instructions. bold accounts wake. | +83946|846739|9256|3|28|47199.32|0.10|0.00|R|F|1995-04-07|1995-04-28|1995-05-04|COLLECT COD|TRUCK|ld deposits w| +83946|127176|39679|4|48|57752.16|0.00|0.05|A|F|1995-05-14|1995-05-06|1995-06-13|COLLECT COD|TRUCK|ronic ideas. unusual theodol| +83946|445942|20959|5|34|64189.28|0.04|0.01|A|F|1995-04-19|1995-04-27|1995-05-01|DELIVER IN PERSON|SHIP|express dependencies. blithely i| +83946|944811|19848|6|42|77942.34|0.02|0.01|A|F|1995-03-24|1995-05-16|1995-03-25|COLLECT COD|TRUCK|inal gifts are fluffily bold| +83947|764032|26548|1|28|30688.00|0.03|0.07|A|F|1993-01-21|1993-02-21|1993-02-19|TAKE BACK RETURN|RAIL|al asymptotes are r| +83947|72067|34569|2|9|9351.54|0.08|0.03|A|F|1993-03-11|1993-01-15|1993-03-17|DELIVER IN PERSON|RAIL|c theodolites| +83947|228857|41362|3|17|30359.28|0.03|0.00|A|F|1993-02-25|1992-12-27|1993-03-11|NONE|TRUCK|excuses. final, ironic| +83947|382859|7874|4|18|34953.12|0.04|0.04|A|F|1992-12-15|1992-12-31|1992-12-21|COLLECT COD|AIR|ts: quickly regular packages cajole ironic| +83947|700870|13385|5|12|22450.08|0.07|0.02|R|F|1993-01-17|1993-01-09|1993-02-02|TAKE BACK RETURN|FOB|beans promise acc| +83947|515660|3191|6|35|58647.40|0.04|0.06|A|F|1992-11-27|1993-02-07|1992-12-01|TAKE BACK RETURN|FOB|ar frets about the requests haggle slyly ag| +83947|685596|48110|7|11|17397.16|0.00|0.03|A|F|1993-01-12|1993-02-02|1993-02-04|COLLECT COD|RAIL| among the pending theod| +83948|803102|3103|1|26|26131.56|0.07|0.00|A|F|1992-04-06|1992-03-05|1992-04-13|NONE|TRUCK|slyly final | +83949|95017|32521|1|50|50600.50|0.10|0.00|R|F|1994-06-28|1994-05-10|1994-06-29|TAKE BACK RETURN|SHIP|quests integ| +83949|949540|49541|2|8|12716.00|0.10|0.03|R|F|1994-04-02|1994-05-24|1994-05-01|COLLECT COD|REG AIR|nto beans according to the| +83949|913199|25718|3|34|41213.10|0.07|0.08|A|F|1994-07-10|1994-05-29|1994-08-06|TAKE BACK RETURN|REG AIR|indle quickly above| +83949|126343|1348|4|50|68467.00|0.07|0.07|A|F|1994-06-28|1994-06-06|1994-07-11|COLLECT COD|REG AIR|es. carefully even excuses poach a| +83949|439575|2084|5|9|13630.95|0.08|0.02|R|F|1994-06-12|1994-04-27|1994-07-01|TAKE BACK RETURN|AIR|theodolites acr| +83949|920714|33233|6|36|62448.12|0.00|0.07|A|F|1994-04-16|1994-06-14|1994-04-19|COLLECT COD|RAIL|s about the slyly bold instructions w| +83950|59236|34239|1|21|25099.83|0.08|0.02|N|O|1998-02-02|1998-02-28|1998-02-08|TAKE BACK RETURN|RAIL|slyly bold pearls. dependencies nag slyl| +83950|578840|28841|2|33|63321.06|0.06|0.04|N|O|1998-03-14|1998-02-12|1998-03-22|COLLECT COD|RAIL|breach. carefully bold excuses promis| +83950|548555|48556|3|50|80176.50|0.06|0.03|N|O|1998-02-22|1998-03-10|1998-03-08|TAKE BACK RETURN|TRUCK|ns. regular ideas detect slyly a| +83950|549986|37517|4|32|65150.72|0.09|0.06|N|O|1998-04-15|1998-02-06|1998-05-07|COLLECT COD|REG AIR|es. ideas along the carefu| +83950|606703|19216|5|11|17706.37|0.04|0.06|N|O|1998-02-13|1998-02-10|1998-03-10|TAKE BACK RETURN|MAIL|ve the ironic requests. bravely expres| +83950|854511|42063|6|37|54222.39|0.00|0.03|N|O|1998-03-06|1998-02-06|1998-03-27|DELIVER IN PERSON|FOB|ithely express | +83950|760690|23206|7|28|49018.48|0.07|0.04|N|O|1998-04-11|1998-03-11|1998-05-10|NONE|SHIP|ogged, express pinto bean| +83951|912147|49702|1|39|45204.90|0.01|0.03|R|F|1992-10-07|1992-09-14|1992-10-21|COLLECT COD|TRUCK|s haggle af| +83951|444806|7315|2|26|45520.28|0.04|0.00|A|F|1992-11-22|1992-10-05|1992-12-09|COLLECT COD|TRUCK|sual theodolites boost furi| +83951|848619|36168|3|42|65837.94|0.07|0.02|R|F|1992-09-07|1992-09-25|1992-10-04|NONE|AIR|into beans unwind furiously. even, b| +83951|731073|43588|4|9|9936.36|0.09|0.02|R|F|1992-08-25|1992-09-30|1992-09-16|NONE|AIR|ending dependencies nag f| +83951|134377|46880|5|44|62100.28|0.09|0.06|R|F|1992-08-11|1992-10-19|1992-09-09|DELIVER IN PERSON|REG AIR|o beans ar| +83951|464527|39546|6|43|64134.50|0.04|0.03|A|F|1992-08-13|1992-09-25|1992-09-10|COLLECT COD|REG AIR|e to haggle ironic dolphins. packages| +83951|292148|4654|7|34|38764.42|0.10|0.06|A|F|1992-11-19|1992-10-29|1992-12-19|COLLECT COD|TRUCK|even theodolites; iron| +83976|128443|40946|1|39|57386.16|0.03|0.06|A|F|1993-07-17|1993-07-16|1993-07-21|DELIVER IN PERSON|SHIP|ly regular requests. busily regu| +83976|731154|43669|2|8|9480.96|0.06|0.00|R|F|1993-07-29|1993-07-05|1993-08-22|NONE|REG AIR|es sleep. final, express sentiments pri| +83977|637640|12665|1|34|53638.74|0.07|0.01|R|F|1994-09-19|1994-09-02|1994-09-22|TAKE BACK RETURN|MAIL|ress pearls about the blithely ironic th| +83977|815178|27695|2|44|48097.72|0.08|0.08|R|F|1994-09-16|1994-09-21|1994-09-25|DELIVER IN PERSON|AIR|ts cajole fluffily about the furiously p| +83977|685389|35390|3|29|39856.15|0.07|0.01|A|F|1994-08-12|1994-09-22|1994-09-04|DELIVER IN PERSON|SHIP|al packages; reg| +83977|326135|26136|4|23|26705.76|0.02|0.00|A|F|1994-10-19|1994-09-18|1994-11-03|DELIVER IN PERSON|TRUCK|y against the carefully p| +83977|349707|37226|5|11|19323.59|0.07|0.07|R|F|1994-07-31|1994-09-11|1994-08-06|NONE|FOB| dependencies| +83977|521451|21452|6|44|64786.92|0.02|0.06|R|F|1994-07-13|1994-10-05|1994-07-23|COLLECT COD|SHIP|slyly pending ac| +83978|336800|24319|1|23|42246.17|0.08|0.01|A|F|1994-10-25|1994-10-04|1994-11-03|NONE|SHIP|l accounts haggle slyly unus| +83978|594131|19154|2|46|56355.06|0.02|0.07|A|F|1994-08-31|1994-10-01|1994-09-14|COLLECT COD|FOB|uctions about the final, bold | +83979|963871|13872|1|22|42566.26|0.01|0.03|N|O|1996-01-04|1996-01-05|1996-01-12|DELIVER IN PERSON|TRUCK|aggle. always ironic packages along| +83979|763154|25670|2|24|29210.88|0.06|0.08|N|O|1996-01-08|1995-12-10|1996-01-20|COLLECT COD|TRUCK|. special, enticing dependencies| +83979|327783|2796|3|35|63376.95|0.09|0.05|N|O|1996-02-11|1996-01-14|1996-02-14|COLLECT COD|TRUCK|ackages about the furiously iron| +83979|32867|20368|4|10|17998.60|0.09|0.07|N|O|1995-11-12|1995-12-11|1995-11-24|DELIVER IN PERSON|RAIL|se among the doggedly| +83979|381848|19370|5|50|96491.50|0.02|0.01|N|O|1996-02-17|1996-01-25|1996-03-09|DELIVER IN PERSON|FOB|nal foxes cajole along the regula| +83979|709736|47279|6|10|17457.00|0.01|0.01|N|O|1996-03-03|1995-12-15|1996-03-07|NONE|REG AIR|le carefully alongside of the regu| +83980|219452|19453|1|33|45257.52|0.00|0.00|N|O|1997-10-22|1997-10-06|1997-11-04|TAKE BACK RETURN|SHIP|te busily among the flu| +83980|321544|21545|2|28|43834.84|0.06|0.05|N|O|1997-08-05|1997-09-03|1997-08-25|NONE|RAIL|ths dazzle ironically about the slyly perma| +83980|189220|1724|3|24|31421.28|0.09|0.00|N|O|1997-08-15|1997-10-20|1997-08-26|TAKE BACK RETURN|SHIP|sits. carefully speci| +83980|206636|19141|4|43|66332.66|0.05|0.06|N|O|1997-09-09|1997-09-11|1997-09-23|NONE|MAIL|iously fluffy accounts. quietly express dep| +83981|174860|12370|1|37|71589.82|0.02|0.08|N|F|1995-06-11|1995-04-29|1995-06-18|COLLECT COD|REG AIR|lly bold deposits cajole agains| +83982|741847|41848|1|7|13221.67|0.01|0.01|N|O|1998-03-11|1998-02-03|1998-04-03|COLLECT COD|TRUCK|ithely regula| +83982|212292|12293|2|11|13247.08|0.06|0.03|N|O|1997-12-31|1998-02-27|1998-01-15|COLLECT COD|FOB|ructions against the slyly express p| +83982|983479|33480|3|42|65622.06|0.06|0.00|N|O|1998-02-04|1998-01-24|1998-02-23|COLLECT COD|MAIL|s nag quickly slyly regular requests. d| +83982|315637|28144|4|35|57841.70|0.08|0.08|N|O|1998-03-16|1998-01-30|1998-04-09|COLLECT COD|REG AIR|quickly regular foxes across the even re| +83982|907092|32129|5|31|34070.55|0.07|0.02|N|O|1998-02-11|1998-02-14|1998-02-17|COLLECT COD|TRUCK|e carefully. blithely regula| +83983|895835|45836|1|13|23800.27|0.07|0.04|N|O|1997-03-11|1997-04-06|1997-03-16|NONE|MAIL| bold pinto be| +83983|285017|22533|2|14|14028.00|0.09|0.00|N|O|1997-01-19|1997-02-21|1997-02-09|NONE|AIR|ding packages detect alongside of th| +83983|272450|9966|3|1|1422.44|0.08|0.06|N|O|1997-04-24|1997-02-25|1997-05-11|COLLECT COD|FOB|ckly regular instruc| +84008|755626|30657|1|35|58855.65|0.06|0.02|R|F|1994-07-22|1994-07-22|1994-08-12|DELIVER IN PERSON|TRUCK| furiously express deposits mold. sl| +84008|800107|25140|2|18|18127.08|0.02|0.01|R|F|1994-07-28|1994-08-24|1994-07-29|TAKE BACK RETURN|MAIL|tions cajole furiously | +84008|394927|32449|3|45|90985.95|0.06|0.03|R|F|1994-08-18|1994-07-21|1994-09-02|DELIVER IN PERSON|FOB|fluffily even pinto beans integrate blithel| +84008|523562|36073|4|48|76105.92|0.08|0.02|A|F|1994-09-18|1994-08-27|1994-10-01|NONE|MAIL|furiously final asymptotes dazzle| +84009|444254|44255|1|37|44334.51|0.03|0.03|N|O|1996-01-19|1996-01-16|1996-02-04|DELIVER IN PERSON|MAIL|s are above the final, regula| +84009|572235|9769|2|31|40523.51|0.00|0.04|N|O|1996-02-25|1996-03-14|1996-03-05|TAKE BACK RETURN|SHIP|its haggle ironic, ir| +84009|542307|17328|3|50|67464.00|0.10|0.01|N|O|1996-03-30|1996-01-21|1996-04-18|DELIVER IN PERSON|FOB|ding to the eve| +84009|547323|22344|4|4|5481.20|0.01|0.00|N|O|1996-01-24|1996-03-04|1996-02-06|COLLECT COD|TRUCK|ke furiously across t| +84009|846711|21744|5|28|46414.76|0.01|0.01|N|O|1996-03-02|1996-03-02|1996-03-22|COLLECT COD|MAIL|unts wake. final, regular requests above| +84009|670359|32873|6|24|31903.68|0.02|0.04|N|O|1996-01-09|1996-02-01|1996-01-17|DELIVER IN PERSON|AIR|e furiously even sauternes are| +84009|716786|4329|7|35|63096.25|0.06|0.04|N|O|1996-01-17|1996-02-15|1996-01-23|DELIVER IN PERSON|REG AIR|ckages. furiously even waters use pending | +84010|17760|42761|1|48|80532.48|0.07|0.01|R|F|1994-04-04|1994-01-31|1994-04-27|DELIVER IN PERSON|REG AIR|s. blithely express epitaphs grow along| +84011|426017|38526|1|16|15087.84|0.09|0.05|R|F|1994-12-25|1994-10-10|1995-01-16|NONE|MAIL|hely bold pinto beans.| +84011|52835|27838|2|30|53634.90|0.07|0.07|R|F|1994-12-12|1994-11-10|1994-12-22|NONE|SHIP|s alongside of t| +84011|988880|13919|3|16|31501.44|0.08|0.04|R|F|1994-09-22|1994-11-19|1994-10-05|NONE|RAIL|kly according to the regular accounts. u| +84011|105794|43301|4|6|10798.74|0.09|0.06|R|F|1994-12-12|1994-11-15|1995-01-03|COLLECT COD|RAIL| regular requests | +84012|740727|15756|1|11|19444.59|0.10|0.08|N|O|1998-01-23|1997-11-06|1998-02-04|COLLECT COD|FOB| furiously fluffily even instructio| +84012|398139|10647|2|31|38350.72|0.09|0.02|N|O|1998-01-27|1997-11-23|1998-02-14|COLLECT COD|AIR| around the blithely pending theodolites. r| +84012|506899|44430|3|47|89575.89|0.02|0.04|N|O|1997-12-25|1997-12-16|1998-01-21|COLLECT COD|RAIL|fluffily pending deposits. fluff| +84012|434978|34979|4|36|68866.20|0.10|0.03|N|O|1998-01-03|1997-11-18|1998-01-07|NONE|TRUCK|ending, ironic instructions shall| +84012|674356|24357|5|5|6651.60|0.01|0.04|N|O|1997-10-14|1997-11-27|1997-11-02|NONE|RAIL|n, unusual instructions. bl| +84013|272954|22955|1|39|75150.66|0.02|0.07|N|O|1995-08-26|1995-09-07|1995-09-21|COLLECT COD|AIR| the idly pending platelets. even ide| +84014|337956|37957|1|30|59818.20|0.03|0.04|A|F|1995-04-12|1995-05-11|1995-04-23|DELIVER IN PERSON|MAIL|ar excuses wake carefully express depo| +84014|23312|48313|2|13|16059.03|0.03|0.05|N|O|1995-06-19|1995-05-11|1995-06-24|TAKE BACK RETURN|RAIL|refully special depend| +84014|793360|30906|3|12|17439.96|0.00|0.05|N|O|1995-06-25|1995-05-06|1995-07-11|TAKE BACK RETURN|SHIP|lyly even requests. carefully| +84014|988606|38607|4|31|52531.36|0.04|0.08|N|O|1995-06-28|1995-04-14|1995-07-09|COLLECT COD|RAIL|ithely unusual pac| +84014|485098|10117|5|8|8664.56|0.02|0.00|N|O|1995-06-27|1995-05-30|1995-07-08|TAKE BACK RETURN|REG AIR|ending requests against the furious| +84015|540872|28403|1|47|89903.95|0.05|0.05|N|O|1997-12-18|1997-12-26|1998-01-02|COLLECT COD|FOB|e slyly bold accounts wake slyly agai| +84015|430992|30993|2|1|1922.97|0.06|0.06|N|O|1997-10-25|1998-01-10|1997-11-21|TAKE BACK RETURN|RAIL|lms. slyly regular| +84015|675571|13111|3|32|49489.28|0.04|0.01|N|O|1997-12-21|1997-12-29|1998-01-11|TAKE BACK RETURN|RAIL| blithely regular packages hinder carefull| +84015|318441|5960|4|47|68593.21|0.09|0.03|N|O|1998-01-13|1997-12-01|1998-02-11|NONE|FOB|xpress deposit| +84040|451856|14366|1|45|81352.35|0.04|0.06|N|O|1997-10-13|1997-09-21|1997-10-29|DELIVER IN PERSON|REG AIR|se fluffily final | +84040|327468|39975|2|50|74772.50|0.07|0.02|N|O|1997-08-27|1997-08-30|1997-08-31|NONE|MAIL|g to the slyly regular p| +84040|750780|13296|3|2|3661.50|0.05|0.02|N|O|1997-07-27|1997-09-18|1997-08-16|COLLECT COD|RAIL|. quickly r| +84040|344790|32309|4|11|20182.58|0.05|0.02|N|O|1997-07-25|1997-08-20|1997-07-28|DELIVER IN PERSON|REG AIR|ly regular re| +84040|877339|14891|5|27|35539.83|0.01|0.08|N|O|1997-07-06|1997-08-22|1997-07-18|COLLECT COD|AIR|. ideas are carefully. i| +84040|428799|28800|6|36|62199.72|0.09|0.00|N|O|1997-09-03|1997-09-17|1997-09-07|TAKE BACK RETURN|MAIL|s the slyly pending a| +84040|816017|3566|7|44|41050.68|0.09|0.02|N|O|1997-10-14|1997-09-27|1997-10-28|DELIVER IN PERSON|RAIL| bold reque| +84041|796059|21090|1|45|51975.90|0.10|0.03|N|O|1996-09-26|1996-09-17|1996-10-05|DELIVER IN PERSON|RAIL| carefully special excuses| +84041|354335|16843|2|25|34733.00|0.09|0.05|N|O|1996-11-26|1996-10-23|1996-12-20|NONE|REG AIR|lar deposits nag blithely above the ac| +84041|299439|24450|3|35|50344.70|0.06|0.08|N|O|1996-11-01|1996-10-17|1996-11-20|NONE|RAIL|es use alongside of the fi| +84041|656554|19068|4|2|3021.04|0.01|0.08|N|O|1996-10-16|1996-09-28|1996-10-18|TAKE BACK RETURN|SHIP|odolites wake blithely! quickly iro| +84041|692455|17482|5|25|36185.50|0.06|0.00|N|O|1996-09-15|1996-10-17|1996-10-03|TAKE BACK RETURN|FOB|fully silent dug| +84041|86178|36179|6|29|33760.93|0.03|0.05|N|O|1996-12-08|1996-09-11|1996-12-12|COLLECT COD|RAIL| across the furiously ev| +84042|875485|25486|1|38|55496.72|0.07|0.03|R|F|1993-01-15|1993-02-01|1993-02-02|DELIVER IN PERSON|SHIP|. carefully bold dependencies| +84042|263657|26163|2|33|53481.12|0.00|0.02|A|F|1993-03-18|1993-02-18|1993-03-26|DELIVER IN PERSON|RAIL| breach quickly about the final a| +84042|267524|30030|3|25|37287.75|0.07|0.06|A|F|1993-01-16|1993-01-25|1993-02-05|DELIVER IN PERSON|RAIL|etimes even, fina| +84042|266311|28817|4|6|7663.80|0.00|0.08|R|F|1993-04-06|1993-02-10|1993-04-20|NONE|SHIP|are furiously alongside of th| +84042|882157|19709|5|39|44425.29|0.00|0.03|R|F|1993-02-03|1993-01-19|1993-02-15|NONE|MAIL|es impress fluffily! | +84042|399124|36646|6|12|14677.32|0.05|0.06|R|F|1993-03-18|1993-01-15|1993-03-27|COLLECT COD|SHIP|ly special platelets ab| +84042|68412|43415|7|42|57977.22|0.03|0.05|A|F|1993-02-25|1993-03-11|1993-03-07|COLLECT COD|SHIP|ding to the bold packages.| +84043|784611|34612|1|35|59345.30|0.09|0.02|R|F|1993-11-18|1993-12-11|1993-11-25|TAKE BACK RETURN|TRUCK|lets wake above the | +84043|941943|16980|2|14|27788.60|0.00|0.07|R|F|1993-10-23|1993-11-23|1993-11-12|TAKE BACK RETURN|FOB|mong the furiously ironic t| +84043|231111|6120|3|13|13547.30|0.08|0.04|A|F|1993-12-09|1993-11-22|1993-12-31|DELIVER IN PERSON|TRUCK|y ironic requests cajole fluffily agains| +84043|270039|20040|4|23|23207.46|0.08|0.00|A|F|1993-12-30|1993-12-09|1994-01-12|DELIVER IN PERSON|MAIL|tructions. ruthless, express acc| +84043|529449|41960|5|28|41395.76|0.00|0.07|R|F|1994-01-08|1993-12-15|1994-01-09|TAKE BACK RETURN|RAIL|sual requests use. silent,| +84044|352561|2562|1|4|6454.20|0.07|0.03|N|O|1997-11-19|1997-09-25|1997-12-07|COLLECT COD|FOB|carefully even accounts must | +84044|479524|4543|2|4|6014.00|0.03|0.06|N|O|1997-11-17|1997-10-31|1997-11-22|DELIVER IN PERSON|SHIP|uriously slyl| +84044|349238|36757|3|4|5148.88|0.05|0.03|N|O|1997-11-06|1997-11-08|1997-11-11|TAKE BACK RETURN|RAIL|elets. slyly regular packages amo| +84044|627908|40421|4|44|80778.28|0.04|0.08|N|O|1997-09-02|1997-09-30|1997-09-18|NONE|REG AIR|ep blithely above the ca| +84044|233276|20789|5|39|47161.14|0.00|0.05|N|O|1997-12-11|1997-11-11|1998-01-05|COLLECT COD|MAIL|y regular platelets cajole slyly| +84044|654125|41665|6|16|17265.44|0.01|0.00|N|O|1997-10-22|1997-11-05|1997-10-31|NONE|AIR|r the final, regular requests. e| +84045|572625|10159|1|14|23766.40|0.05|0.02|R|F|1993-05-25|1993-05-06|1993-06-16|DELIVER IN PERSON|REG AIR| orbits. requests according to the bold | +84045|106283|6284|2|44|56728.32|0.09|0.07|A|F|1993-05-15|1993-07-02|1993-06-08|COLLECT COD|MAIL|xpress accounts sleep carefully slyl| +84045|290239|40240|3|21|25813.62|0.00|0.04|R|F|1993-04-05|1993-06-26|1993-04-13|COLLECT COD|FOB|cingly regular foxes. regul| +84045|30436|42937|4|32|43725.76|0.08|0.07|R|F|1993-06-18|1993-05-17|1993-06-24|TAKE BACK RETURN|FOB|lithely after the regular foxes. furio| +84045|536003|48514|5|15|15584.70|0.02|0.00|R|F|1993-07-07|1993-05-31|1993-07-20|NONE|FOB|s cajole alo| +84045|598804|23827|6|40|76111.20|0.00|0.07|A|F|1993-06-11|1993-05-10|1993-06-19|DELIVER IN PERSON|REG AIR|ld have to integrate| +84045|87333|49835|7|21|27726.93|0.05|0.07|R|F|1993-07-25|1993-05-14|1993-08-18|DELIVER IN PERSON|FOB| accounts. | +84046|804993|30026|1|42|79713.90|0.04|0.04|A|F|1994-07-23|1994-07-20|1994-08-12|DELIVER IN PERSON|FOB|along the regular pinto beans cajole| +84046|511189|11190|2|46|55207.36|0.03|0.05|A|F|1994-07-09|1994-06-09|1994-07-14|NONE|REG AIR|ully express| +84046|538896|1407|3|9|17413.83|0.04|0.02|A|F|1994-07-21|1994-06-30|1994-08-01|COLLECT COD|RAIL|r dependencie| +84047|681934|44448|1|32|61308.80|0.03|0.03|N|O|1998-09-27|1998-10-22|1998-10-27|DELIVER IN PERSON|TRUCK|the slyly spec| +84047|262192|12193|2|29|33471.22|0.08|0.08|N|O|1998-11-19|1998-09-15|1998-12-09|COLLECT COD|RAIL|instructions haggle furio| +84047|657944|7945|3|36|68468.76|0.09|0.06|N|O|1998-08-03|1998-09-26|1998-08-09|NONE|FOB|fully about the carefully even re| +84047|57611|20113|4|11|17254.71|0.02|0.01|N|O|1998-11-05|1998-09-29|1998-11-09|TAKE BACK RETURN|AIR|dependencies cajo| +84047|260412|47928|5|47|64502.80|0.04|0.05|N|O|1998-10-23|1998-10-21|1998-11-08|NONE|MAIL| deposits cajole quickly| +84047|743698|31241|6|20|34833.20|0.03|0.00|N|O|1998-10-31|1998-10-10|1998-11-29|NONE|SHIP|nts. furiously ironic | +84047|325334|25335|7|16|21749.12|0.04|0.00|N|O|1998-11-25|1998-10-10|1998-12-16|DELIVER IN PERSON|AIR|ully final platelets a| +84072|884916|47434|1|44|83638.28|0.01|0.04|A|F|1994-03-19|1994-03-19|1994-03-23|TAKE BACK RETURN|TRUCK|final, ruthless platelets according to t| +84073|355770|18278|1|30|54772.80|0.07|0.00|N|O|1996-08-08|1996-08-11|1996-08-29|COLLECT COD|FOB|eep special, ironic ideas! | +84073|414008|1533|2|25|23049.50|0.06|0.00|N|O|1996-08-21|1996-07-26|1996-09-18|DELIVER IN PERSON|SHIP| unusual deposits wake. slyly ironic pack| +84073|231692|31693|3|22|35720.96|0.08|0.07|N|O|1996-09-29|1996-08-16|1996-09-30|DELIVER IN PERSON|RAIL|fully ironic waters | +84073|33176|45677|4|29|32165.93|0.10|0.01|N|O|1996-10-04|1996-09-04|1996-11-03|NONE|REG AIR|ily silent i| +84073|579410|41922|5|35|52128.65|0.10|0.01|N|O|1996-09-23|1996-09-17|1996-10-04|NONE|TRUCK|se carefully about the special, regular in| +84074|899914|49915|1|34|65071.58|0.05|0.02|N|O|1998-08-22|1998-07-04|1998-09-03|TAKE BACK RETURN|MAIL| are. blithely unusual request| +84075|356040|43562|1|46|50417.38|0.03|0.08|R|F|1994-08-03|1994-06-05|1994-08-29|TAKE BACK RETURN|SHIP|gle furiously before the theod| +84075|953702|3703|2|24|42135.84|0.06|0.05|A|F|1994-06-13|1994-07-05|1994-07-05|DELIVER IN PERSON|FOB|ptotes. carefully final| +84075|857242|7243|3|12|14390.40|0.06|0.00|A|F|1994-07-01|1994-05-21|1994-07-14|NONE|SHIP|fully after the f| +84076|176593|26594|1|26|43409.34|0.08|0.05|N|O|1995-09-02|1995-06-21|1995-09-16|COLLECT COD|REG AIR|ross the sly, ironic asymptotes| +84076|996699|9219|2|14|25139.10|0.04|0.08|N|F|1995-06-07|1995-06-15|1995-06-20|COLLECT COD|SHIP|eposits. blithely even f| +84076|514995|2526|3|48|96478.56|0.08|0.04|N|O|1995-06-22|1995-07-02|1995-06-24|DELIVER IN PERSON|TRUCK|ithely ironic acc| +84077|943323|43324|1|9|12296.52|0.04|0.01|N|O|1998-10-08|1998-08-23|1998-10-29|DELIVER IN PERSON|TRUCK|. quickly | +84077|428571|3588|2|42|62981.10|0.06|0.06|N|O|1998-07-11|1998-08-11|1998-07-25|NONE|MAIL|nic ideas. furiously final waters are o| +84078|333564|8577|1|47|75084.85|0.10|0.00|N|O|1998-08-14|1998-06-29|1998-09-13|TAKE BACK RETURN|AIR|the carefully regular ideas ar| +84078|195277|45278|2|33|45284.91|0.07|0.01|N|O|1998-07-24|1998-06-28|1998-08-08|TAKE BACK RETURN|MAIL|ove the slyly brave foxes. blithely s| +84078|5661|5662|3|49|76766.34|0.00|0.06|N|O|1998-08-08|1998-06-20|1998-08-31|COLLECT COD|FOB|sly fluffily ironic accounts. silent a| +84078|127852|40355|4|44|82713.40|0.10|0.06|N|O|1998-05-13|1998-07-06|1998-05-21|NONE|REG AIR|ironic accounts. blithely final ac| +84078|797332|34878|5|43|61459.90|0.00|0.06|N|O|1998-07-12|1998-07-15|1998-07-27|NONE|AIR|elets. busy instructions detect bli| +84078|747348|47349|6|9|12557.79|0.10|0.02|N|O|1998-06-11|1998-06-27|1998-06-20|TAKE BACK RETURN|FOB|pending dinos above the quietly quic| +84079|291324|28840|1|29|38143.99|0.06|0.08|A|F|1992-04-25|1992-04-24|1992-04-28|DELIVER IN PERSON|SHIP|ss quickly final deposits. qu| +84079|271512|9028|2|37|54889.50|0.05|0.02|R|F|1992-04-30|1992-05-02|1992-05-04|NONE|REG AIR|s. special instructi| +84104|366799|16800|1|34|63436.52|0.07|0.06|A|F|1994-11-27|1995-01-05|1994-12-16|NONE|REG AIR|ns on the slyly quick| +84104|786378|23924|2|12|17572.08|0.06|0.01|R|F|1995-02-11|1994-12-26|1995-02-27|COLLECT COD|FOB|s. express dol| +84105|567393|4927|1|17|24826.29|0.07|0.08|R|F|1992-05-07|1992-06-09|1992-05-27|NONE|MAIL|ic theodolites haggle slyly across t| +84106|55731|43235|1|15|25300.95|0.04|0.05|A|F|1992-03-20|1992-06-01|1992-04-18|DELIVER IN PERSON|AIR| express packages affix after the | +84106|658637|21151|2|10|15956.00|0.09|0.01|R|F|1992-06-07|1992-05-17|1992-06-26|NONE|REG AIR|he even pac| +84106|702004|2005|3|23|23137.31|0.06|0.04|A|F|1992-06-06|1992-05-19|1992-06-13|TAKE BACK RETURN|AIR|deposits about the blith| +84106|574661|49684|4|7|12149.48|0.05|0.06|A|F|1992-04-10|1992-06-05|1992-04-19|COLLECT COD|RAIL|s. courts boost. blithely final packa| +84107|235501|23014|1|34|48840.66|0.09|0.03|N|O|1997-08-30|1997-08-04|1997-09-17|COLLECT COD|FOB|luffily enticing| +84107|54176|41680|2|29|32774.93|0.04|0.06|N|O|1997-07-29|1997-08-13|1997-08-12|DELIVER IN PERSON|SHIP|c deposits. fluf| +84107|521694|21695|3|45|77205.15|0.01|0.02|N|O|1997-05-29|1997-07-15|1997-06-01|COLLECT COD|RAIL|yly regular depo| +84107|104721|17224|4|17|29337.24|0.07|0.04|N|O|1997-09-06|1997-07-27|1997-10-02|DELIVER IN PERSON|RAIL|ccounts are abov| +84107|40659|3160|5|25|39991.25|0.06|0.06|N|O|1997-09-03|1997-07-11|1997-09-18|COLLECT COD|SHIP| according to the carefully bold| +84107|341307|28826|6|45|60673.05|0.06|0.08|N|O|1997-09-06|1997-07-26|1997-09-14|NONE|AIR|ake furiously according to the foxes| +84107|330204|30205|7|8|9873.52|0.05|0.04|N|O|1997-06-13|1997-06-25|1997-07-04|TAKE BACK RETURN|TRUCK|lar requests must have to nag | +84108|725534|25535|1|21|32749.50|0.04|0.07|A|F|1994-01-20|1993-11-20|1994-02-19|NONE|SHIP|. furiously pending accounts haggle care| +84108|35191|22692|2|30|33785.70|0.02|0.03|A|F|1994-02-07|1993-12-02|1994-03-05|NONE|REG AIR| ruthless excuses cajole daringly ironic d| +84109|460327|22837|1|29|37331.70|0.06|0.07|N|O|1998-06-22|1998-06-16|1998-06-29|DELIVER IN PERSON|MAIL|ounts. slyly| +84109|705216|42759|2|9|10990.62|0.00|0.01|N|O|1998-06-13|1998-06-03|1998-07-09|COLLECT COD|FOB|y ironic packag| +84109|558796|21308|3|16|29676.32|0.04|0.01|N|O|1998-06-01|1998-06-19|1998-06-08|COLLECT COD|FOB|r requests sleep carefu| +84109|680060|30061|4|18|18720.54|0.01|0.05|N|O|1998-05-10|1998-05-20|1998-05-29|COLLECT COD|AIR|ntegrate about the blithely special | +84109|761698|36729|5|4|7038.64|0.07|0.00|N|O|1998-06-18|1998-06-10|1998-07-11|DELIVER IN PERSON|SHIP|deas wake quickly. bl| +84110|88731|26235|1|27|46432.71|0.06|0.08|N|O|1995-09-14|1995-09-23|1995-10-10|TAKE BACK RETURN|RAIL|ts cajole quickly about the express| +84110|300028|29|2|9|9252.09|0.06|0.05|N|O|1995-11-03|1995-09-30|1995-11-23|COLLECT COD|RAIL|the slyly final warthogs| +84110|555017|42551|3|21|22511.79|0.08|0.05|N|O|1995-10-29|1995-09-03|1995-11-03|TAKE BACK RETURN|RAIL| silent, special accounts boost carefull| +84110|162312|37319|4|34|46726.54|0.09|0.05|N|O|1995-08-18|1995-10-06|1995-09-17|DELIVER IN PERSON|REG AIR|yly ironic platelets| +84111|646239|21264|1|9|10666.80|0.04|0.08|N|O|1995-11-21|1996-01-19|1995-11-26|DELIVER IN PERSON|SHIP|ronic requests! slyly bold packages ab| +84111|322238|22239|2|29|36546.38|0.01|0.03|N|O|1996-03-07|1996-01-27|1996-03-10|TAKE BACK RETURN|REG AIR|ake about the ironic hockey player| +84136|11162|48663|1|36|38633.76|0.02|0.07|A|F|1994-05-07|1994-06-22|1994-05-31|COLLECT COD|SHIP|c braids among the blithe| +84136|584477|34478|2|49|76511.05|0.08|0.03|R|F|1994-05-13|1994-05-01|1994-05-25|TAKE BACK RETURN|MAIL|ding dolphins de| +84136|300654|25667|3|17|28128.88|0.05|0.06|A|F|1994-04-28|1994-05-08|1994-05-10|DELIVER IN PERSON|REG AIR|ress foxes are slyly express account| +84136|86571|11574|4|43|66975.51|0.07|0.00|A|F|1994-04-04|1994-05-20|1994-05-02|DELIVER IN PERSON|MAIL| sleep quickly above the even fox| +84136|986926|36927|5|46|92592.48|0.03|0.00|R|F|1994-05-15|1994-05-11|1994-06-12|NONE|MAIL|oss the quickly regular theo| +84137|734163|21706|1|20|23942.60|0.10|0.08|N|O|1998-03-13|1997-12-20|1998-03-28|DELIVER IN PERSON|MAIL|nd furiously bold pi| +84137|75321|25322|2|20|25926.40|0.01|0.05|N|O|1998-02-20|1998-02-01|1998-03-17|TAKE BACK RETURN|MAIL|e furiously ironic courts. pinto b| +84137|910047|35084|3|13|13741.00|0.04|0.07|N|O|1998-03-01|1998-02-06|1998-03-13|DELIVER IN PERSON|RAIL|as until the unusual, sly packages affix fu| +84137|154142|16646|4|17|20334.38|0.02|0.02|N|O|1998-01-12|1998-01-23|1998-02-06|COLLECT COD|REG AIR|nding foxes detect | +84137|654324|4325|5|11|14061.19|0.09|0.00|N|O|1998-02-27|1998-01-28|1998-03-09|DELIVER IN PERSON|REG AIR|ording to the slyly final pinto| +84138|437588|25113|1|36|54920.16|0.04|0.04|R|F|1994-03-31|1994-03-09|1994-04-18|DELIVER IN PERSON|SHIP|slyly regular frets| +84138|529158|16689|2|43|51046.59|0.01|0.07|R|F|1994-04-27|1994-04-01|1994-05-27|TAKE BACK RETURN|REG AIR|gular packages sleep furiously| +84138|545009|32540|3|36|37943.28|0.07|0.06|A|F|1994-04-10|1994-03-16|1994-04-28|DELIVER IN PERSON|SHIP| furiously final packages according to the | +84138|949852|49853|4|40|76072.40|0.06|0.03|R|F|1994-02-05|1994-04-02|1994-02-16|COLLECT COD|FOB|efully even dependencies: special | +84139|634616|34617|1|50|77529.00|0.06|0.03|R|F|1994-08-24|1994-10-28|1994-09-08|NONE|TRUCK|boost alongside of the ev| +84139|991080|41081|2|44|51525.76|0.08|0.05|A|F|1994-08-19|1994-09-28|1994-09-03|TAKE BACK RETURN|REG AIR|es. slyly regular foxes boost carefull| +84139|76850|1853|3|9|16441.65|0.06|0.03|R|F|1994-11-25|1994-10-16|1994-12-05|NONE|RAIL|refully after the expr| +84139|610435|22948|4|31|41707.40|0.02|0.02|A|F|1994-09-07|1994-09-26|1994-09-13|COLLECT COD|TRUCK|s. excuses are| +84139|573602|36114|5|4|6702.32|0.03|0.01|R|F|1994-09-14|1994-10-03|1994-09-26|DELIVER IN PERSON|AIR| bold requests. | +84140|669067|6607|1|19|19684.57|0.03|0.00|A|F|1995-04-08|1995-05-08|1995-04-27|DELIVER IN PERSON|FOB|sly special es| +84141|199278|11782|1|16|22036.32|0.10|0.06|N|O|1998-08-19|1998-07-31|1998-09-13|COLLECT COD|REG AIR|blithely ironic excuses.| +84141|257487|32498|2|19|27444.93|0.02|0.06|N|O|1998-06-23|1998-07-14|1998-07-01|DELIVER IN PERSON|RAIL|d foxes nag blithely furiously regular | +84142|670706|45733|1|27|45270.09|0.01|0.06|N|F|1995-06-12|1995-05-11|1995-06-28|COLLECT COD|RAIL|ithely ironic pint| +84142|545475|7986|2|23|34970.35|0.01|0.06|R|F|1995-03-26|1995-04-27|1995-04-04|NONE|RAIL|o beans. slyly specia| +84143|206126|43639|1|11|11353.21|0.08|0.04|A|F|1994-12-02|1994-11-16|1994-12-29|COLLECT COD|RAIL|fluffily even exc| +84143|346846|34365|2|6|11356.98|0.06|0.00|A|F|1994-11-26|1994-10-19|1994-11-28|COLLECT COD|RAIL|kly even foxes. carefully unusual | +84168|370952|20953|1|14|28321.16|0.00|0.04|N|O|1997-12-18|1998-01-23|1998-01-12|DELIVER IN PERSON|TRUCK| ironic dolph| +84168|590109|27643|2|50|59954.00|0.03|0.04|N|O|1998-02-03|1997-12-15|1998-02-18|TAKE BACK RETURN|REG AIR|silent instructions cajole carefu| +84168|959714|47272|3|39|69173.13|0.04|0.01|N|O|1998-02-02|1998-01-17|1998-03-04|TAKE BACK RETURN|RAIL|iously final acc| +84168|901930|39485|4|37|71479.93|0.00|0.03|N|O|1998-01-06|1997-12-18|1998-01-31|TAKE BACK RETURN|FOB|accounts should have to sleep. b| +84169|569373|19374|1|7|10096.45|0.08|0.07|N|O|1995-10-15|1995-09-29|1995-10-21|NONE|AIR|c escapades: excuses a| +84169|439438|39439|2|20|27548.20|0.07|0.06|N|O|1995-09-10|1995-11-07|1995-10-09|DELIVER IN PERSON|AIR|ts wake: b| +84169|627721|15258|3|9|14838.21|0.10|0.03|N|O|1995-10-25|1995-11-09|1995-11-15|TAKE BACK RETURN|REG AIR|hins. pend| +84169|101538|14041|4|38|58502.14|0.06|0.04|N|O|1995-09-01|1995-10-21|1995-09-14|TAKE BACK RETURN|RAIL|al accounts integ| +84169|545124|7635|5|30|35073.00|0.05|0.04|N|O|1995-10-21|1995-10-15|1995-11-15|TAKE BACK RETURN|MAIL|final accounts sleep about the| +84169|887238|49756|6|37|45332.03|0.03|0.02|N|O|1995-09-13|1995-10-01|1995-09-27|NONE|AIR| even packages alongside of | +84169|805036|30069|7|15|14114.85|0.06|0.08|N|O|1995-12-16|1995-10-05|1996-01-07|TAKE BACK RETURN|FOB|ckly bold instructions | +84170|230698|5707|1|3|4886.04|0.08|0.07|N|O|1997-09-19|1997-10-22|1997-10-06|NONE|FOB|s. slyly silent requests against the | +84170|333911|8924|2|16|31118.40|0.06|0.05|N|O|1997-09-04|1997-10-20|1997-09-26|TAKE BACK RETURN|REG AIR|the slyly regular requests. careful| +84170|33169|20670|3|40|44086.40|0.06|0.01|N|O|1997-09-06|1997-11-01|1997-09-08|COLLECT COD|FOB|across the packages do are across the | +84170|461819|24329|4|1|1780.79|0.01|0.02|N|O|1997-09-30|1997-10-22|1997-10-01|TAKE BACK RETURN|SHIP| deposits. fur| +84170|783415|20961|5|8|11987.04|0.04|0.01|N|O|1997-12-17|1997-11-07|1998-01-13|DELIVER IN PERSON|SHIP|unts sleep about the slyly express theodo| +84170|855637|5638|6|41|65296.19|0.05|0.05|N|O|1997-11-17|1997-11-14|1997-12-01|TAKE BACK RETURN|SHIP|regular, silent dependencies after th| +84170|681681|19221|7|14|23277.10|0.02|0.03|N|O|1997-11-08|1997-10-07|1997-11-14|COLLECT COD|AIR|y regular, re| +84171|11073|48574|1|34|33458.38|0.08|0.07|A|F|1994-10-21|1994-11-18|1994-11-10|DELIVER IN PERSON|MAIL|s boost carefull| +84171|93718|43719|2|46|78738.66|0.07|0.07|R|F|1994-10-05|1994-10-16|1994-10-22|NONE|FOB|final foxes solve carefu| +84171|114306|14307|3|21|27726.30|0.02|0.06|R|F|1994-12-05|1994-10-25|1994-12-11|TAKE BACK RETURN|AIR|l ideas nag furiously against t| +84171|140404|27911|4|34|49109.60|0.08|0.07|A|F|1994-12-13|1994-11-14|1994-12-22|COLLECT COD|FOB|bold foxes nod| +84171|768448|5994|5|25|37910.25|0.06|0.06|A|F|1994-10-01|1994-10-18|1994-10-10|NONE|TRUCK|ffily even acc| +84171|293464|5970|6|45|65585.25|0.00|0.07|A|F|1994-11-03|1994-10-28|1994-11-25|TAKE BACK RETURN|RAIL|structions: ca| +84172|722711|22712|1|14|24271.52|0.06|0.01|N|O|1998-04-15|1998-04-25|1998-04-23|NONE|SHIP|. fluffily regular a| +84172|602917|27942|2|30|54596.40|0.00|0.06|N|O|1998-05-23|1998-05-17|1998-05-24|NONE|SHIP|t the special, | +84173|176547|26548|1|21|34094.34|0.08|0.08|A|F|1992-10-25|1992-09-28|1992-11-17|DELIVER IN PERSON|AIR|sly among the slyly f| +84173|210376|22881|2|6|7718.16|0.04|0.06|R|F|1992-10-17|1992-10-01|1992-11-16|COLLECT COD|AIR|lar foxes are furiou| +84173|781882|31883|3|49|96228.65|0.01|0.05|R|F|1992-08-31|1992-09-22|1992-09-10|COLLECT COD|FOB| the slyly ironic packages. fluffily| +84173|86322|11325|4|17|22241.44|0.07|0.02|A|F|1992-09-24|1992-09-12|1992-10-09|TAKE BACK RETURN|MAIL| platelets wake c| +84173|808921|33954|5|25|45747.00|0.05|0.08|A|F|1992-11-21|1992-10-10|1992-12-10|COLLECT COD|FOB| requests | +84174|323688|23689|1|3|5135.01|0.07|0.03|R|F|1993-06-06|1993-05-09|1993-06-17|COLLECT COD|MAIL|y permanent deposits. qui| +84174|211603|24108|2|1|1514.59|0.02|0.08|R|F|1993-05-12|1993-05-01|1993-05-20|NONE|AIR|inst the carefull| +84174|394895|19910|3|4|7959.52|0.05|0.08|A|F|1993-06-24|1993-05-12|1993-07-01|COLLECT COD|SHIP|eposits. blithely pending accounts wak| +84175|839047|39048|1|17|16762.00|0.08|0.07|N|O|1996-06-25|1996-05-28|1996-07-18|DELIVER IN PERSON|MAIL|lly silent pac| +84175|851342|13860|2|30|38799.00|0.04|0.01|N|O|1996-03-22|1996-06-09|1996-04-16|DELIVER IN PERSON|SHIP|ag; even depos| +84175|497536|10046|3|48|73608.48|0.09|0.04|N|O|1996-05-20|1996-05-17|1996-06-09|COLLECT COD|MAIL|ely slyly ironic accounts.| +84175|78084|40586|4|3|3186.24|0.04|0.01|N|O|1996-04-25|1996-04-24|1996-05-11|COLLECT COD|MAIL|structions wake slyly. dependenc| +84175|352865|40387|5|13|24932.05|0.10|0.03|N|O|1996-06-24|1996-05-27|1996-07-09|TAKE BACK RETURN|TRUCK|ithely regular fre| +84200|57984|7985|1|48|93215.04|0.06|0.01|R|F|1994-11-28|1994-11-01|1994-12-19|TAKE BACK RETURN|MAIL|blithely un| +84200|530328|5349|2|10|13583.00|0.10|0.04|R|F|1994-11-11|1994-11-09|1994-11-16|COLLECT COD|REG AIR|ng the furiously special t| +84200|217300|4813|3|38|46257.02|0.04|0.00|R|F|1994-11-08|1994-10-16|1994-11-23|TAKE BACK RETURN|REG AIR|tain slyly pinto beans. regular| +84200|150288|289|4|26|34795.28|0.03|0.07|A|F|1994-12-16|1994-11-23|1995-01-02|NONE|AIR|ccounts doubt bravely al| +84200|889154|26706|5|3|3429.33|0.09|0.04|A|F|1994-12-15|1994-09-27|1994-12-21|COLLECT COD|RAIL|ccording to the slyly bold de| +84200|999362|24401|6|13|18997.16|0.06|0.00|R|F|1994-12-13|1994-10-18|1995-01-08|DELIVER IN PERSON|MAIL|gular deposits. furiously final pearls | +84201|474738|37248|1|4|6850.84|0.07|0.02|R|F|1995-05-27|1995-07-09|1995-05-29|NONE|MAIL|olphins haggle sl| +84201|914995|27514|2|43|86427.85|0.07|0.06|N|O|1995-07-27|1995-06-27|1995-08-02|DELIVER IN PERSON|RAIL| regular pinto beans. regular i| +84201|319388|44401|3|35|49257.95|0.10|0.03|N|O|1995-08-15|1995-07-29|1995-09-05|TAKE BACK RETURN|RAIL|fluffy accounts nag slow, dogged pin| +84202|684366|46880|1|32|43210.56|0.03|0.06|N|O|1996-10-29|1996-09-20|1996-10-31|COLLECT COD|TRUCK|bout the bold requests. foxes wake a| +84202|138709|26216|2|45|78646.50|0.08|0.05|N|O|1996-09-26|1996-09-18|1996-10-21|DELIVER IN PERSON|TRUCK|al instructions. packages about the | +84202|265468|27974|3|28|40136.60|0.06|0.02|N|O|1996-08-22|1996-10-20|1996-08-29|COLLECT COD|REG AIR|eas play quickly above the furiously| +84202|718221|43250|4|36|44610.84|0.06|0.06|N|O|1996-11-27|1996-09-15|1996-12-11|TAKE BACK RETURN|SHIP|lent, regular reque| +84203|245925|33438|1|1|1870.91|0.08|0.01|A|F|1992-08-16|1992-08-21|1992-08-17|DELIVER IN PERSON|MAIL|uffily. final foxes | +84203|245511|33024|2|3|4369.50|0.07|0.02|A|F|1992-10-20|1992-09-23|1992-10-23|TAKE BACK RETURN|REG AIR|otes sleep above| +84203|287907|12918|3|16|30318.24|0.10|0.05|R|F|1992-08-15|1992-08-10|1992-08-23|DELIVER IN PERSON|REG AIR|ests. slyly| +84203|851937|14455|4|28|52888.92|0.07|0.08|R|F|1992-07-09|1992-08-04|1992-08-04|TAKE BACK RETURN|AIR|e the fluffily final requests. fluffil| +84203|498532|48533|5|25|38262.75|0.08|0.06|A|F|1992-10-17|1992-07-31|1992-11-04|TAKE BACK RETURN|AIR|ly carefull| +84204|792430|4946|1|22|33492.80|0.04|0.06|A|F|1993-07-26|1993-07-17|1993-08-20|COLLECT COD|TRUCK| unusual foxes sublate furiously | +84204|363838|1360|2|27|51349.14|0.08|0.05|R|F|1993-08-15|1993-08-26|1993-08-18|TAKE BACK RETURN|TRUCK|pinto beans sleep furiously ironic pack| +84204|24866|37367|3|23|41189.78|0.02|0.04|A|F|1993-07-22|1993-08-15|1993-08-11|DELIVER IN PERSON|MAIL|aringly regular foxes. final, bold accou| +84204|916559|16560|4|47|74048.97|0.01|0.07|R|F|1993-08-11|1993-07-31|1993-08-16|TAKE BACK RETURN|TRUCK|c, express platelets wake furiously alon| +84204|605532|43069|5|11|15812.50|0.09|0.08|R|F|1993-09-10|1993-07-23|1993-09-12|DELIVER IN PERSON|RAIL|s are quickly at the slyly i| +84204|176154|26155|6|24|29523.60|0.03|0.06|R|F|1993-07-09|1993-08-02|1993-07-11|COLLECT COD|RAIL| packages. final, dogg| +84205|580601|18135|1|34|57173.72|0.05|0.04|A|F|1992-12-09|1992-10-18|1992-12-10|NONE|FOB|s the instruc| +84205|147202|9705|2|5|6246.00|0.02|0.04|R|F|1992-08-24|1992-10-27|1992-08-30|TAKE BACK RETURN|AIR| furiously reg| +84205|20956|33457|3|20|37539.00|0.01|0.03|R|F|1992-08-20|1992-10-06|1992-09-11|NONE|REG AIR|excuses are according t| +84205|197582|10086|4|29|48707.82|0.03|0.00|A|F|1992-09-24|1992-09-16|1992-10-08|NONE|RAIL|final requests. slyly bo| +84206|90448|27952|1|47|67606.68|0.08|0.08|R|F|1994-07-29|1994-07-24|1994-08-28|DELIVER IN PERSON|SHIP|lithely even, final frets. slyly unusual th| +84207|445396|32921|1|34|45606.58|0.05|0.06|N|O|1998-08-04|1998-09-01|1998-08-31|DELIVER IN PERSON|FOB|al ideas nag fur| +84207|757507|32538|2|2|3128.94|0.00|0.04|N|O|1998-09-12|1998-08-30|1998-09-23|TAKE BACK RETURN|AIR|ecial notornis. bl| +84207|409263|34280|3|12|14066.88|0.07|0.04|N|O|1998-10-19|1998-08-05|1998-10-29|DELIVER IN PERSON|SHIP|tructions are ruthlessly even platel| +84207|476755|14283|4|32|55415.36|0.07|0.02|N|O|1998-07-07|1998-07-24|1998-07-20|NONE|REG AIR|layers cajole carefully. sile| +84207|810054|35087|5|50|48200.50|0.01|0.05|N|O|1998-08-16|1998-09-03|1998-08-31|DELIVER IN PERSON|AIR|deas cajole | +84207|563763|13764|6|49|89510.26|0.01|0.05|N|O|1998-10-07|1998-08-05|1998-10-08|DELIVER IN PERSON|RAIL| special deposits. sly| +84232|449297|24314|1|50|62313.50|0.04|0.00|N|O|1998-03-16|1998-04-14|1998-04-05|DELIVER IN PERSON|SHIP|s might wake. quickly | +84232|334311|46818|2|23|30941.90|0.08|0.08|N|O|1998-05-21|1998-02-27|1998-06-13|TAKE BACK RETURN|RAIL|s nag furiously regular instructions| +84232|748452|35995|3|33|49513.86|0.01|0.01|N|O|1998-05-04|1998-03-16|1998-05-17|COLLECT COD|FOB| theodolites! furiously ironic foxes shoul| +84232|224793|24794|4|21|36073.38|0.06|0.06|N|O|1998-03-02|1998-04-17|1998-03-20|NONE|AIR|ar accounts. caref| +84232|84834|22338|5|47|85485.01|0.10|0.04|N|O|1998-02-02|1998-04-18|1998-02-14|NONE|TRUCK|s sleep alon| +84232|804282|4283|6|17|20166.08|0.08|0.04|N|O|1998-04-22|1998-03-08|1998-05-20|DELIVER IN PERSON|FOB|t blithely across the slyly ir| +84233|218596|18597|1|43|65126.94|0.01|0.08|N|O|1997-10-20|1997-09-05|1997-10-24|COLLECT COD|MAIL|lly even ideas. carefully ironic sautern| +84233|926903|39422|2|17|32807.62|0.06|0.03|N|O|1997-07-03|1997-08-10|1997-07-20|NONE|MAIL|lyly even requests boost blithely bl| +84234|411532|24041|1|42|60627.42|0.04|0.02|N|O|1996-04-19|1996-03-19|1996-04-20|TAKE BACK RETURN|SHIP|s theodolites haggle blithely about | +84234|614629|27142|2|17|26241.03|0.07|0.07|N|O|1996-04-21|1996-02-10|1996-04-28|COLLECT COD|RAIL|inal ideas cajole slyly. pending, regular h| +84234|57062|44566|3|23|23438.38|0.06|0.00|N|O|1996-01-04|1996-03-29|1996-01-08|NONE|AIR| packages wake fluffily darin| +84234|32004|7005|4|17|15912.00|0.07|0.02|N|O|1996-04-22|1996-02-04|1996-05-19|NONE|SHIP|es. furious| +84234|881574|31575|5|16|24888.48|0.09|0.02|N|O|1996-01-12|1996-03-06|1996-02-03|TAKE BACK RETURN|SHIP|ly unusual dependencies. fluffily final | +84235|22131|22132|1|1|1053.13|0.08|0.00|N|O|1998-03-23|1998-01-18|1998-04-01|NONE|REG AIR|are packages. regular dependencies alon| +84235|953498|16018|2|2|3102.90|0.07|0.05|N|O|1998-01-08|1998-02-14|1998-01-22|NONE|TRUCK| according to the| +84235|432587|20112|3|13|19754.28|0.01|0.07|N|O|1997-12-12|1998-02-13|1997-12-14|NONE|TRUCK| the regular, bold multipliers. blithely q| +84235|482123|7142|4|18|19891.80|0.06|0.07|N|O|1998-02-17|1998-01-17|1998-02-20|DELIVER IN PERSON|MAIL| requests nag slyly according to the acco| +84235|25802|13303|5|13|22461.40|0.06|0.03|N|O|1998-03-14|1998-02-17|1998-03-25|TAKE BACK RETURN|MAIL|refully furious platelets. packa| +84236|234799|9808|1|43|74552.54|0.04|0.06|N|O|1996-09-19|1996-08-16|1996-10-10|NONE|RAIL| carefully even| +84236|260581|10582|2|5|7707.85|0.09|0.05|N|O|1996-07-31|1996-08-19|1996-08-17|DELIVER IN PERSON|FOB|lar deposits print carefully furiously| +84236|571052|46075|3|43|48290.29|0.02|0.00|N|O|1996-09-04|1996-08-22|1996-10-04|COLLECT COD|REG AIR| fluffily blithely ironic accoun| +84237|958137|8138|1|21|25096.89|0.02|0.07|N|O|1996-01-23|1996-03-23|1996-02-06|DELIVER IN PERSON|RAIL| slyly pending excuses after the quickly f| +84238|574112|49135|1|21|24907.89|0.01|0.06|A|F|1993-04-26|1993-04-04|1993-05-13|COLLECT COD|REG AIR|ve the blithely speci| +84238|100059|60|2|13|13767.65|0.02|0.04|R|F|1993-03-25|1993-04-22|1993-04-02|DELIVER IN PERSON|REG AIR|e thinly regular a| +84238|688959|38960|3|42|81812.64|0.04|0.03|A|F|1993-03-22|1993-04-16|1993-03-24|NONE|MAIL|ackages wake fluffily. furiou| +84239|386391|23913|1|44|65004.72|0.03|0.01|N|O|1997-05-12|1997-03-16|1997-06-08|NONE|MAIL|l warhorses. depend| +84239|65908|3412|2|42|78703.80|0.01|0.03|N|O|1997-02-09|1997-03-14|1997-02-16|DELIVER IN PERSON|FOB| tithes are. regular packages cajole blithe| +84239|707013|7014|3|11|11219.78|0.08|0.04|N|O|1997-04-22|1997-04-05|1997-05-20|DELIVER IN PERSON|MAIL|y regular dependencie| +84239|756224|31255|4|36|46086.84|0.01|0.00|N|O|1997-02-25|1997-03-21|1997-03-05|DELIVER IN PERSON|RAIL|uests should have to wake carefull| +84239|844125|19158|5|23|24588.84|0.10|0.06|N|O|1997-04-01|1997-03-21|1997-04-25|COLLECT COD|RAIL|fully pending attainments | +84264|892356|29908|1|45|60673.95|0.06|0.07|N|O|1995-11-25|1996-01-24|1995-12-04|COLLECT COD|SHIP|symptotes are around t| +84264|811403|11404|2|41|53888.76|0.04|0.05|N|O|1996-02-20|1996-02-03|1996-03-12|DELIVER IN PERSON|RAIL|ses. furiously unusual packages w| +84264|235166|10175|3|49|53956.35|0.07|0.06|N|O|1996-01-21|1996-01-23|1996-02-09|DELIVER IN PERSON|SHIP|n packages at| +84264|434741|9758|4|25|41893.00|0.08|0.07|N|O|1996-03-06|1996-01-28|1996-03-23|NONE|TRUCK|ix slyly against the unusual| +84265|538870|13891|1|22|41994.70|0.05|0.07|N|O|1996-06-20|1996-05-29|1996-07-14|TAKE BACK RETURN|FOB|ding to the| +84266|795116|32662|1|20|24221.60|0.05|0.03|N|O|1995-10-08|1995-09-15|1995-11-04|DELIVER IN PERSON|FOB| ideas alongside of the carefull| +84266|504090|16601|2|21|22975.47|0.07|0.00|N|O|1995-08-17|1995-08-29|1995-08-19|NONE|RAIL|nding instructions above the furiousl| +84266|235531|23044|3|18|26397.36|0.06|0.04|N|O|1995-09-07|1995-08-11|1995-09-15|TAKE BACK RETURN|MAIL|its boost | +84266|556253|31276|4|35|45823.05|0.06|0.03|N|O|1995-10-12|1995-08-08|1995-11-06|TAKE BACK RETURN|TRUCK|tions eat slyly slyly unusual packages. fi| +84267|425121|37630|1|47|49166.70|0.04|0.06|R|F|1993-06-12|1993-07-03|1993-07-04|NONE|RAIL|cial excuses dou| +84267|999925|49926|2|29|58721.52|0.07|0.04|A|F|1993-06-18|1993-07-21|1993-06-23|TAKE BACK RETURN|MAIL|ithely unusual sauternes. quickly exp| +84267|731753|19296|3|1|1784.72|0.05|0.02|A|F|1993-08-07|1993-08-02|1993-09-05|COLLECT COD|MAIL|ess deposits. blithely r| +84267|564507|2041|4|38|59716.24|0.00|0.03|R|F|1993-07-08|1993-08-18|1993-07-28|NONE|TRUCK|al packages us| +84268|101774|14277|1|14|24860.78|0.06|0.00|R|F|1992-06-21|1992-06-23|1992-07-01|TAKE BACK RETURN|MAIL| sleep across the final reques| +84268|514032|14033|2|41|42886.41|0.01|0.05|A|F|1992-07-04|1992-07-19|1992-07-21|COLLECT COD|MAIL|cajole. even platelets above| +84269|727594|40109|1|41|66483.96|0.01|0.05|R|F|1995-02-22|1995-01-26|1995-03-15|NONE|TRUCK|packages sleep | +84269|658634|33661|2|29|46185.40|0.03|0.06|R|F|1995-01-11|1995-02-14|1995-01-22|NONE|SHIP|furiously final ideas across the pe| +84269|648965|23990|3|28|53590.04|0.01|0.03|A|F|1995-02-06|1995-02-02|1995-03-07|COLLECT COD|TRUCK|blithely final | +84269|143071|5574|4|46|51247.22|0.02|0.00|R|F|1995-01-07|1995-03-10|1995-01-19|TAKE BACK RETURN|FOB|ly unusual dependencies wake. depo| +84270|349095|49096|1|40|45763.20|0.03|0.07|N|O|1996-12-23|1996-11-25|1996-12-26|COLLECT COD|MAIL|hely-- instructions haggle against the | +84270|232812|45317|2|39|68047.20|0.08|0.06|N|O|1997-01-11|1996-11-29|1997-01-26|DELIVER IN PERSON|SHIP|riously quick deposits use fluffily against| +84270|855508|5509|3|25|36586.50|0.00|0.04|N|O|1996-10-22|1996-12-03|1996-11-14|TAKE BACK RETURN|REG AIR|quests are furiously acc| +84270|512979|25490|4|49|97605.55|0.08|0.03|N|O|1996-11-09|1996-11-28|1996-11-10|NONE|RAIL|otes. quickly even theodolite| +84270|626903|14440|5|44|80514.28|0.08|0.01|N|O|1996-10-27|1996-12-30|1996-11-03|NONE|FOB|regular packa| +84270|347727|47728|6|48|85186.08|0.05|0.00|N|O|1997-02-02|1996-12-12|1997-03-03|TAKE BACK RETURN|MAIL|gle slyly | +84271|273383|35889|1|43|58323.91|0.01|0.08|N|O|1996-04-08|1996-02-01|1996-04-17|DELIVER IN PERSON|AIR|ts. slyly bold accounts are blithely r| +84296|470483|8011|1|29|42150.34|0.09|0.06|R|F|1993-05-11|1993-06-30|1993-05-13|NONE|REG AIR|thely regular dependencies sleep quickly. r| +84296|402767|15276|2|21|35064.54|0.02|0.06|A|F|1993-06-10|1993-06-18|1993-07-07|NONE|FOB|ions cajole carefu| +84297|842667|17700|1|33|53117.46|0.07|0.04|N|O|1997-01-22|1997-03-26|1997-02-05|NONE|AIR|integrate carefully. r| +84297|691220|16247|2|28|33913.32|0.09|0.06|N|O|1997-04-18|1997-03-22|1997-05-05|NONE|AIR|ges. requests across th| +84297|327376|39883|3|26|36487.36|0.02|0.04|N|O|1997-03-09|1997-03-27|1997-03-29|COLLECT COD|TRUCK|l accounts x-ray blithely according t| +84297|193653|31163|4|16|27946.40|0.04|0.02|N|O|1997-02-09|1997-03-12|1997-02-20|NONE|MAIL| packages abo| +84297|717999|30514|5|18|36305.28|0.05|0.04|N|O|1997-01-13|1997-02-13|1997-02-03|COLLECT COD|FOB| haggle. qui| +84297|398040|10548|6|46|52349.38|0.10|0.05|N|O|1997-04-21|1997-02-01|1997-05-05|TAKE BACK RETURN|MAIL|requests. ironic, ironic foxes about| +84297|857202|32237|7|39|45207.24|0.02|0.03|N|O|1997-01-03|1997-02-24|1997-01-06|COLLECT COD|FOB|hely ironic asymptotes cajole blithely furi| +84298|979229|16787|1|23|30088.14|0.08|0.01|N|O|1996-01-19|1995-11-27|1996-01-25|NONE|MAIL|de of the unusual theodolites. | +84298|895306|45307|2|25|32531.50|0.09|0.00|N|O|1995-11-11|1996-01-03|1995-11-18|TAKE BACK RETURN|TRUCK|iously brave ex| +84298|404538|17047|3|44|63470.44|0.09|0.00|N|O|1995-11-19|1995-12-21|1995-11-26|NONE|TRUCK|se carefully bold, express deposits. speci| +84299|828634|16183|1|48|75004.32|0.04|0.01|N|O|1996-03-22|1996-03-03|1996-03-30|TAKE BACK RETURN|AIR|telets. requests nag slyly furiously even| +84299|841188|16221|2|25|28228.50|0.03|0.03|N|O|1996-01-05|1996-02-28|1996-01-31|COLLECT COD|RAIL|gle blithely slyl| +84299|831118|6151|3|22|23079.54|0.10|0.08|N|O|1996-01-13|1996-02-24|1996-01-31|TAKE BACK RETURN|REG AIR|ly unusual deposits| +84299|594077|31611|4|42|49184.10|0.07|0.06|N|O|1996-02-24|1996-02-18|1996-03-23|TAKE BACK RETURN|REG AIR|uickly special deposits according| +84300|73953|36455|1|42|80931.90|0.03|0.04|N|O|1996-05-23|1996-06-25|1996-05-25|COLLECT COD|SHIP|ul, even packages. furiously bold sheaves s| +84300|919876|44913|2|18|34124.94|0.10|0.02|N|O|1996-07-26|1996-06-26|1996-08-14|COLLECT COD|REG AIR|ronic requests are slyly slyly silent co| +84300|349951|12458|3|3|6002.82|0.02|0.01|N|O|1996-06-28|1996-06-06|1996-07-22|NONE|FOB|lly ironic dependencies after the fi| +84300|619032|19033|4|3|2853.00|0.10|0.06|N|O|1996-08-07|1996-06-25|1996-08-10|COLLECT COD|MAIL|leep blithely above th| +84300|66152|28654|5|23|25717.45|0.02|0.00|N|O|1996-04-30|1996-06-03|1996-05-23|TAKE BACK RETURN|TRUCK|pecial orbits. exp| +84301|698823|36363|1|14|25505.06|0.06|0.01|N|O|1996-12-17|1996-12-10|1996-12-28|TAKE BACK RETURN|TRUCK|iously ironic| +84301|109860|9861|2|43|80403.98|0.04|0.06|N|O|1996-12-08|1996-12-19|1996-12-19|DELIVER IN PERSON|MAIL| foxes wake after the sl| +84301|416704|4229|3|47|76171.96|0.07|0.02|N|O|1997-02-10|1996-12-15|1997-02-19|DELIVER IN PERSON|FOB|nal instru| +84301|533198|8219|4|14|17236.38|0.00|0.03|N|O|1996-12-06|1997-01-16|1996-12-07|TAKE BACK RETURN|TRUCK|fully silent accounts cajole boldly blithe| +84301|448427|48428|5|24|33009.60|0.07|0.00|N|O|1997-01-10|1996-12-31|1997-01-25|TAKE BACK RETURN|TRUCK|yly final patt| +84301|711162|11163|6|16|18770.08|0.02|0.04|N|O|1996-11-04|1996-12-17|1996-11-25|COLLECT COD|AIR|refully ruthless asymptotes sub| +84302|482959|32960|1|41|79619.13|0.02|0.05|N|O|1996-03-23|1996-03-20|1996-04-09|COLLECT COD|TRUCK|en ideas. furiousl| +84302|80443|42945|2|31|44126.64|0.08|0.01|N|O|1996-02-10|1996-03-01|1996-03-05|TAKE BACK RETURN|SHIP|thely even ideas. furiousl| +84302|990608|28166|3|46|78133.76|0.08|0.03|N|O|1996-02-10|1996-02-04|1996-03-06|NONE|MAIL|efully unusual excuses | +84302|136842|36843|4|43|80790.12|0.00|0.08|N|O|1996-01-07|1996-03-18|1996-01-22|COLLECT COD|FOB|ly theodolites; furiously regular | +84302|893608|6126|5|7|11210.92|0.01|0.06|N|O|1996-01-30|1996-03-16|1996-02-21|DELIVER IN PERSON|SHIP|ggle slyly carefully busy ins| +84302|862129|24647|6|14|15275.12|0.09|0.05|N|O|1996-01-31|1996-03-20|1996-02-11|NONE|TRUCK| regular pinto | +84303|670745|33259|1|1|1715.71|0.08|0.04|N|O|1996-02-06|1996-02-28|1996-02-07|COLLECT COD|RAIL|c foxes after the ironic deposits slee| +84303|195353|20360|2|40|57934.00|0.08|0.07|N|O|1996-02-07|1996-02-15|1996-03-02|NONE|REG AIR|as. fluffily final deposits run carefully f| +84303|288794|1300|3|12|21393.36|0.06|0.05|N|O|1996-03-18|1996-02-05|1996-03-26|DELIVER IN PERSON|RAIL|totes cajole inside the qui| +84303|748218|10733|4|47|59510.46|0.01|0.06|N|O|1996-01-03|1996-02-11|1996-01-16|DELIVER IN PERSON|AIR|unts boost slyly regular asymptotes. bold| +84303|289906|39907|5|5|9479.45|0.02|0.05|N|O|1995-12-05|1996-01-13|1995-12-11|TAKE BACK RETURN|REG AIR|dly unusual dependencies. ironic account| +84303|436476|48985|6|26|36723.70|0.06|0.05|N|O|1996-02-08|1996-01-07|1996-02-22|DELIVER IN PERSON|REG AIR|. carefully ironic accounts use| +84328|649922|24947|1|23|43053.47|0.02|0.07|N|F|1995-06-12|1995-05-12|1995-07-05|DELIVER IN PERSON|FOB|s. carefully even theodolites a| +84328|236340|11349|2|29|37013.57|0.02|0.05|N|O|1995-07-25|1995-05-06|1995-08-02|COLLECT COD|RAIL|ep blithely ca| +84328|159915|34922|3|48|94795.68|0.01|0.06|R|F|1995-05-23|1995-06-10|1995-05-26|COLLECT COD|AIR|ach furiousl| +84329|135294|10299|1|41|54500.89|0.10|0.03|N|O|1996-07-26|1996-06-13|1996-08-07|NONE|TRUCK| above the | +84329|883899|46417|2|45|84728.25|0.02|0.07|N|O|1996-06-30|1996-07-02|1996-07-27|NONE|TRUCK|ructions. regular theodolites wake| +84329|674668|49695|3|49|80488.87|0.01|0.01|N|O|1996-08-02|1996-05-20|1996-08-16|DELIVER IN PERSON|FOB|arefully pending foxes wake carefu| +84329|133336|33337|4|22|30125.26|0.00|0.05|N|O|1996-05-17|1996-06-30|1996-05-25|TAKE BACK RETURN|FOB|c instructions after the ironic packag| +84330|352234|14742|1|49|63024.78|0.08|0.04|N|O|1996-12-05|1997-01-22|1996-12-10|NONE|MAIL|y furious requests. quickl| +84330|985154|22712|2|16|19825.76|0.01|0.06|N|O|1997-03-10|1997-02-10|1997-04-02|NONE|RAIL|lar foxes. slyl| +84330|481214|43724|3|5|5975.95|0.03|0.08|N|O|1997-02-25|1996-12-20|1997-03-15|TAKE BACK RETURN|FOB| instructions. bl| +84331|699570|37110|1|6|9417.24|0.07|0.08|A|F|1993-06-19|1993-07-05|1993-06-23|COLLECT COD|AIR| carefully regular ideas haggle among th| +84331|672506|35020|2|50|73923.50|0.05|0.04|A|F|1993-07-08|1993-06-29|1993-07-26|NONE|RAIL|l, unusual de| +84331|796560|21591|3|18|29817.54|0.03|0.03|R|F|1993-06-12|1993-07-19|1993-06-20|NONE|REG AIR|s detect enticingly. foxes affix furio| +84331|772620|10166|4|7|11848.13|0.10|0.07|R|F|1993-06-16|1993-06-26|1993-06-17|NONE|REG AIR|are daringly across the silent | +84331|422037|22038|5|7|6713.07|0.05|0.00|A|F|1993-06-02|1993-08-22|1993-06-12|NONE|FOB|kages cajole even, ironic ideas. regular| +84331|164872|2382|6|44|85222.28|0.00|0.08|R|F|1993-08-29|1993-07-16|1993-09-06|TAKE BACK RETURN|REG AIR|after the quickly unusual theodolites. fu| +84332|42523|5024|1|17|24913.84|0.00|0.05|N|O|1995-12-14|1995-12-13|1995-12-22|DELIVER IN PERSON|SHIP|counts against the qui| +84333|750828|38374|1|43|80787.97|0.10|0.08|R|F|1993-09-10|1993-07-20|1993-10-05|TAKE BACK RETURN|SHIP|nts. blithely | +84333|154616|42126|2|48|80189.28|0.05|0.00|R|F|1993-09-10|1993-09-01|1993-10-03|NONE|TRUCK|se slyly furiously even| +84333|618429|30942|3|29|39074.31|0.09|0.06|A|F|1993-09-14|1993-09-08|1993-10-09|NONE|MAIL|al requests against the bl| +84333|933908|46427|4|38|73790.68|0.06|0.08|R|F|1993-07-16|1993-09-05|1993-08-04|TAKE BACK RETURN|SHIP|ronic, final platelets detect above the | +84333|179768|17278|5|40|73910.40|0.00|0.06|A|F|1993-09-12|1993-09-15|1993-10-09|COLLECT COD|RAIL|gular platelets impress sl| +84333|353183|28198|6|33|40793.61|0.01|0.06|A|F|1993-07-06|1993-08-21|1993-07-08|TAKE BACK RETURN|TRUCK|ly final deposi| +84333|937181|49700|7|30|36544.20|0.05|0.06|A|F|1993-08-11|1993-08-16|1993-08-18|COLLECT COD|MAIL|encies sleep slyly about the ca| +84334|194057|6561|1|15|17265.75|0.00|0.07|N|O|1997-02-18|1997-04-04|1997-03-08|COLLECT COD|AIR|e blithely asympt| +84334|504267|4268|2|41|52120.84|0.01|0.08|N|O|1997-02-12|1997-04-04|1997-02-18|COLLECT COD|TRUCK|ckly special packages. quickly | +84334|208753|8754|3|26|43205.24|0.00|0.04|N|O|1997-02-20|1997-03-21|1997-02-24|NONE|REG AIR|uests affix silent excuses. sil| +84334|498893|48894|4|47|88917.89|0.08|0.05|N|O|1997-02-28|1997-03-27|1997-03-02|NONE|AIR|posits shall cajole slyly. carefull| +84334|884570|9605|5|36|55963.08|0.10|0.06|N|O|1997-03-19|1997-03-14|1997-03-21|COLLECT COD|TRUCK|ard the idly bold pint| +84335|582089|32090|1|30|35131.80|0.10|0.02|R|F|1993-01-08|1993-02-04|1993-01-10|TAKE BACK RETURN|TRUCK|rmanent req| +84335|155536|18040|2|1|1591.53|0.04|0.05|A|F|1993-01-04|1993-02-20|1993-01-18|COLLECT COD|MAIL|egular accou| +84335|79962|4965|3|49|95156.04|0.10|0.06|A|F|1993-03-05|1993-02-26|1993-03-16|TAKE BACK RETURN|AIR|riously even foxes wake some| +84335|910492|10493|4|26|39063.70|0.00|0.04|R|F|1993-04-16|1993-01-22|1993-04-29|TAKE BACK RETURN|FOB| ironic hockey players are. final| +84335|630532|30533|5|38|55575.00|0.07|0.05|A|F|1993-03-19|1993-02-08|1993-04-05|COLLECT COD|FOB|bout the ruthless| +84360|174832|12342|1|33|62925.39|0.05|0.07|A|F|1995-06-01|1995-03-21|1995-06-05|NONE|FOB|ely pending ideas| +84360|389677|2185|2|24|42399.84|0.02|0.04|A|F|1995-02-17|1995-03-23|1995-03-07|COLLECT COD|TRUCK|ate after the dependencies. special pinto b| +84361|959943|22463|1|48|96139.20|0.04|0.01|N|O|1995-07-05|1995-05-14|1995-07-18|COLLECT COD|FOB|eodolites.| +84361|745358|45359|2|40|56132.80|0.04|0.04|A|F|1995-04-08|1995-06-13|1995-04-19|TAKE BACK RETURN|SHIP| carefully| +84361|228845|16358|3|50|88691.50|0.03|0.00|R|F|1995-04-29|1995-04-25|1995-05-06|TAKE BACK RETURN|SHIP|ly regular dept| +84361|191739|4243|4|18|32953.14|0.05|0.03|A|F|1995-04-25|1995-06-03|1995-05-08|NONE|FOB|cross the doggedly | +84361|548084|35615|5|21|23773.26|0.03|0.06|N|O|1995-07-15|1995-05-30|1995-07-29|COLLECT COD|REG AIR|o the quie| +84361|633692|33693|6|1|1625.66|0.02|0.05|N|O|1995-07-20|1995-05-22|1995-08-13|NONE|FOB|y alongside of the requests. slyly| +84362|627164|27165|1|42|45827.46|0.03|0.00|N|O|1998-06-23|1998-06-11|1998-07-22|TAKE BACK RETURN|RAIL|ding to the re| +84362|738751|38752|2|9|16107.48|0.06|0.00|N|O|1998-06-16|1998-06-01|1998-07-03|NONE|AIR|. regular requests wake. furi| +84363|947212|47213|1|28|35256.76|0.01|0.06|N|O|1996-03-08|1996-03-12|1996-04-02|NONE|FOB|sleep fluffil| +84363|775788|819|2|32|59640.00|0.04|0.00|N|O|1996-04-21|1996-02-05|1996-04-25|COLLECT COD|FOB|requests. furiously f| +84364|49045|11546|1|1|994.04|0.08|0.06|N|O|1996-06-02|1996-06-06|1996-06-03|TAKE BACK RETURN|AIR|ges snooze furiously at the carefully| +84364|291399|3905|2|27|37540.26|0.03|0.08|N|O|1996-06-06|1996-07-03|1996-06-12|COLLECT COD|REG AIR|y special dugouts cajole qui| +84364|541058|16079|3|45|49456.35|0.02|0.08|N|O|1996-06-02|1996-05-23|1996-06-12|NONE|MAIL| regular pinto beans. u| +84364|560350|47884|4|10|14103.30|0.06|0.06|N|O|1996-06-28|1996-07-08|1996-07-10|COLLECT COD|TRUCK|ave to wake. carefully specia| +84364|797085|22116|5|30|35461.50|0.09|0.00|N|O|1996-06-03|1996-05-28|1996-06-12|DELIVER IN PERSON|FOB|s are fluffily regu| +84364|595310|45311|6|15|21079.35|0.04|0.02|N|O|1996-08-13|1996-06-27|1996-08-18|DELIVER IN PERSON|RAIL| quickly according to the ca| +84365|311398|36411|1|4|5637.52|0.06|0.04|N|O|1997-09-22|1997-11-08|1997-10-10|COLLECT COD|MAIL|ely express gifts. special, fina| +84366|26338|38839|1|46|58159.18|0.02|0.03|N|O|1995-12-07|1995-12-11|1995-12-18|NONE|RAIL|final dependencies; carefully fi| +84366|647730|10243|2|37|62074.90|0.08|0.00|N|O|1996-03-09|1995-12-24|1996-04-08|TAKE BACK RETURN|AIR|ackages x-r| +84366|385309|22831|3|33|46011.57|0.00|0.01|N|O|1996-02-13|1996-01-22|1996-02-14|NONE|AIR|to beans are blithely slyly | +84367|67301|29803|1|21|26634.30|0.09|0.06|N|O|1995-12-15|1995-12-15|1995-12-23|DELIVER IN PERSON|SHIP|ges along the silently even reque| +84392|816984|29501|1|33|62731.02|0.02|0.05|A|F|1995-03-01|1995-01-21|1995-03-12|TAKE BACK RETURN|RAIL|uffily bol| +84392|46051|21052|2|34|33899.70|0.10|0.04|R|F|1995-01-30|1995-02-20|1995-02-16|TAKE BACK RETURN|FOB| players. ca| +84392|973848|23849|3|26|49966.80|0.07|0.01|A|F|1995-03-16|1995-02-14|1995-04-02|NONE|AIR|fluffily regular requests. fluffily unusual| +84392|452781|27800|4|4|6935.04|0.08|0.01|R|F|1995-04-03|1995-01-14|1995-04-25|COLLECT COD|REG AIR|o beans at the closely | +84392|887918|25470|5|27|51458.49|0.05|0.04|A|F|1995-02-22|1995-03-08|1995-02-28|TAKE BACK RETURN|RAIL|l deposits sleep quickly among the pinto b| +84393|738830|26373|1|1|1868.80|0.02|0.01|N|O|1997-05-19|1997-06-09|1997-06-09|TAKE BACK RETURN|FOB|hins are carefully| +84393|512360|37381|2|24|32936.16|0.00|0.03|N|O|1997-06-10|1997-05-15|1997-06-17|COLLECT COD|REG AIR|hely ironic| +84393|221948|21949|3|7|13089.51|0.10|0.02|N|O|1997-05-06|1997-06-11|1997-05-07|TAKE BACK RETURN|RAIL|ages. carefully ironic t| +84393|278374|28375|4|15|20285.40|0.10|0.03|N|O|1997-06-15|1997-05-26|1997-06-22|NONE|SHIP|the furiously | +84393|615330|40355|5|7|8717.10|0.09|0.00|N|O|1997-05-12|1997-05-29|1997-05-27|COLLECT COD|RAIL|nto beans. bold c| +84394|590937|28471|1|18|36502.38|0.02|0.01|N|O|1997-02-21|1997-03-22|1997-03-12|TAKE BACK RETURN|TRUCK|latelets. slyly | +84395|477567|15095|1|13|20079.02|0.01|0.04|N|O|1995-07-01|1995-07-20|1995-07-09|COLLECT COD|REG AIR|accounts wake carefully after the express,| +84395|463280|13281|2|44|54703.44|0.06|0.05|N|O|1995-08-11|1995-07-05|1995-09-08|NONE|FOB|lithely special requests. bli| +84395|339784|2291|3|39|71127.03|0.03|0.07|A|F|1995-06-01|1995-08-17|1995-06-03|COLLECT COD|MAIL|s haggle alongside of the ironic requests.| +84395|738915|26458|4|7|13677.16|0.07|0.07|N|O|1995-07-07|1995-07-12|1995-07-13|TAKE BACK RETURN|AIR|ts. silent ideas a| +84395|942840|42841|5|11|20710.80|0.07|0.07|N|O|1995-08-10|1995-07-18|1995-08-27|COLLECT COD|MAIL|nal, bold deposi| +84395|304252|41771|6|17|21356.08|0.02|0.02|N|O|1995-08-03|1995-07-09|1995-09-01|COLLECT COD|AIR|according to| +84395|552348|39882|7|15|21004.80|0.01|0.07|N|O|1995-08-16|1995-07-01|1995-08-27|NONE|REG AIR| bold packages are according to th| +84396|310493|35506|1|9|13531.32|0.09|0.06|R|F|1993-06-30|1993-04-27|1993-07-21|COLLECT COD|RAIL| slyly pending Tiresias affix| +84396|445247|45248|2|33|39343.26|0.06|0.00|R|F|1993-05-09|1993-04-13|1993-05-19|COLLECT COD|REG AIR|quickly permanent packages sublate special | +84396|253006|40522|3|48|46031.52|0.08|0.07|A|F|1993-06-08|1993-05-14|1993-06-25|COLLECT COD|SHIP|le according to the rea| +84396|264755|39766|4|42|72229.08|0.09|0.06|R|F|1993-03-13|1993-06-08|1993-04-06|TAKE BACK RETURN|TRUCK| carefully ironic dependencies sleep| +84396|728810|28811|5|28|51485.84|0.02|0.01|R|F|1993-04-18|1993-05-16|1993-05-11|TAKE BACK RETURN|FOB|y outside the slowly final instructio| +84396|98637|36141|6|12|19627.56|0.00|0.01|R|F|1993-05-25|1993-04-19|1993-06-17|TAKE BACK RETURN|SHIP|unts sleep after the bl| +84396|785654|48170|7|49|85241.38|0.00|0.02|R|F|1993-03-13|1993-06-03|1993-03-30|NONE|RAIL|pecial notornis use fina| +84397|473363|23364|1|35|46771.90|0.04|0.07|R|F|1992-09-30|1992-07-31|1992-10-09|DELIVER IN PERSON|MAIL| quick ideas doubt fluffily slyly final| +84397|795752|20783|2|46|84995.12|0.00|0.06|A|F|1992-06-30|1992-07-15|1992-07-05|DELIVER IN PERSON|MAIL|pending, final accounts.| +84398|994221|31779|1|50|65759.00|0.00|0.07|N|O|1997-10-18|1997-11-21|1997-10-24|TAKE BACK RETURN|FOB|ackages play furiously| +84398|866650|16651|2|1|1616.61|0.05|0.03|N|O|1997-11-11|1997-11-18|1997-11-23|COLLECT COD|AIR|ns sleep af| +84398|775995|1026|3|12|24851.52|0.07|0.03|N|O|1997-10-25|1997-12-26|1997-10-29|TAKE BACK RETURN|REG AIR|o the regular, final reques| +84398|144446|19451|4|17|25337.48|0.08|0.03|N|O|1998-02-08|1997-12-03|1998-02-19|NONE|RAIL|gular, even foxes across the furiou| +84398|701294|1295|5|17|22019.42|0.07|0.00|N|O|1997-11-27|1997-12-24|1997-11-28|COLLECT COD|REG AIR|furiously unusual| +84398|636858|36859|6|18|32306.76|0.04|0.05|N|O|1997-11-04|1997-11-20|1997-11-12|DELIVER IN PERSON|MAIL|sly furiously qu| +84398|655952|30979|7|33|62961.36|0.07|0.06|N|O|1997-11-18|1997-11-16|1997-12-15|DELIVER IN PERSON|RAIL|ly regular deposits| +84399|574556|12090|1|12|19566.36|0.09|0.04|N|O|1997-09-25|1997-10-29|1997-10-12|TAKE BACK RETURN|FOB|ular accounts cajole along | +84399|559818|9819|2|44|82622.76|0.10|0.01|N|O|1997-08-27|1997-11-09|1997-09-18|COLLECT COD|REG AIR|cial platelets. regular, regular deposits| +84399|852492|40044|3|20|28889.00|0.01|0.03|N|O|1997-10-26|1997-09-20|1997-11-13|DELIVER IN PERSON|AIR|ending deposits haggle blith| +84399|819535|7084|4|34|49452.66|0.00|0.02|N|O|1997-09-04|1997-10-13|1997-10-02|DELIVER IN PERSON|SHIP| ironic ideas wake. foxes cajol| +84399|910199|35236|5|8|9673.20|0.07|0.08|N|O|1997-10-22|1997-09-15|1997-11-06|NONE|REG AIR|as at the b| +84399|707276|32305|6|24|30797.76|0.10|0.06|N|O|1997-10-16|1997-10-22|1997-11-12|COLLECT COD|TRUCK|counts detect blit| +84399|174647|49654|7|2|3443.28|0.06|0.06|N|O|1997-11-29|1997-11-08|1997-12-18|TAKE BACK RETURN|TRUCK| special sentiments acc| +84424|291648|16659|1|19|31152.97|0.07|0.04|N|O|1998-05-13|1998-06-03|1998-05-22|COLLECT COD|SHIP| blithely quiet ideas. instr| +84424|722844|35359|2|10|18668.10|0.01|0.01|N|O|1998-06-14|1998-06-10|1998-06-21|TAKE BACK RETURN|RAIL|fully unusual| +84424|831311|43828|3|6|7453.62|0.05|0.03|N|O|1998-07-22|1998-07-10|1998-08-20|TAKE BACK RETURN|SHIP|e slyly final requests. slyly| +84424|832840|7873|4|50|88640.00|0.03|0.02|N|O|1998-06-25|1998-06-14|1998-07-01|NONE|RAIL|ic requests. final instructions nag fur| +84424|533799|8820|5|35|64146.95|0.10|0.03|N|O|1998-06-05|1998-07-16|1998-06-13|COLLECT COD|TRUCK|egrate slyly ca| +84424|555518|43052|6|29|45631.21|0.03|0.00|N|O|1998-07-05|1998-06-23|1998-07-17|NONE|RAIL|ular, even packages use furiously. thinly| +84425|541510|4021|1|40|62059.60|0.08|0.00|A|F|1993-03-27|1993-05-11|1993-03-28|TAKE BACK RETURN|SHIP|iments. deposits boost al| +84425|143077|18082|2|39|43682.73|0.01|0.08|R|F|1993-04-17|1993-05-02|1993-05-09|NONE|RAIL|g to the courts-- instructions detec| +84425|682345|7372|3|23|30528.13|0.09|0.05|R|F|1993-06-12|1993-06-13|1993-06-13|NONE|RAIL|ly regular packa| +84425|168220|43227|4|22|28340.84|0.08|0.03|R|F|1993-05-30|1993-06-13|1993-06-21|COLLECT COD|AIR|ickly even request| +84425|259891|47407|5|10|18508.80|0.00|0.08|R|F|1993-05-12|1993-04-24|1993-05-31|NONE|FOB|lar excuses cajole. even foxes | +84425|971943|9501|6|20|40298.00|0.09|0.01|A|F|1993-05-13|1993-04-23|1993-06-04|DELIVER IN PERSON|AIR|ly dogged pinto beans| +84425|430072|17597|7|45|45092.25|0.08|0.00|R|F|1993-06-10|1993-06-20|1993-06-15|TAKE BACK RETURN|TRUCK|e finally s| +84426|217827|30332|1|24|41875.44|0.04|0.06|A|F|1993-06-18|1993-08-14|1993-07-03|NONE|FOB|even depend| +84426|6146|43647|2|38|39981.32|0.05|0.06|R|F|1993-09-10|1993-07-31|1993-09-23|COLLECT COD|RAIL|refully regular dependencies sleep above| +84427|231464|6473|1|23|32095.35|0.05|0.08|N|O|1996-02-05|1996-02-29|1996-02-14|COLLECT COD|TRUCK|pendencies nag daringly silent fo| +84428|25987|25988|1|13|24868.74|0.00|0.00|A|F|1995-05-20|1995-05-15|1995-06-11|NONE|RAIL|carefully furious| +84428|750200|12716|2|50|62508.50|0.01|0.05|R|F|1995-04-05|1995-06-07|1995-04-29|COLLECT COD|RAIL|ily along the unusual| +84429|784931|22477|1|22|44349.80|0.10|0.03|A|F|1992-09-14|1992-08-31|1992-09-20|NONE|SHIP|nal accounts cajole fluffily | +84429|333654|8667|2|44|74256.16|0.08|0.00|A|F|1992-09-28|1992-09-16|1992-10-16|NONE|TRUCK|ecial pinto beans wake carefu| +84430|141385|41386|1|28|39938.64|0.04|0.00|N|O|1998-01-01|1997-12-25|1998-01-17|COLLECT COD|REG AIR|cajole carefu| +84430|244810|32323|2|49|85985.20|0.02|0.01|N|O|1998-01-08|1997-12-24|1998-01-16|TAKE BACK RETURN|AIR|regular depo| +84431|852722|27757|1|48|80384.64|0.08|0.02|N|O|1997-12-29|1997-12-17|1998-01-11|DELIVER IN PERSON|REG AIR|usly. furiously final foxes use along| +84431|682051|7078|2|6|6198.12|0.04|0.02|N|O|1998-01-22|1998-01-02|1998-02-20|TAKE BACK RETURN|RAIL| asymptotes nag regular, even deposits| +84431|228630|3639|3|31|48317.22|0.00|0.01|N|O|1998-03-10|1997-12-20|1998-03-26|NONE|RAIL|ckly special accounts are after th| +84431|579517|4540|4|21|33526.29|0.05|0.06|N|O|1998-01-07|1998-01-20|1998-01-30|DELIVER IN PERSON|AIR|ully unusual | +84431|939655|27210|5|15|25419.15|0.00|0.05|N|O|1998-02-09|1998-02-08|1998-02-28|NONE|RAIL|ely final r| +84431|775259|290|6|25|33355.50|0.05|0.03|N|O|1998-02-27|1997-12-25|1998-03-15|DELIVER IN PERSON|AIR|thely permanent deposits. regula| +84431|774236|36752|7|6|7861.20|0.05|0.03|N|O|1997-12-29|1997-12-14|1998-01-13|NONE|TRUCK| requests. slyly final request| +84456|572573|35085|1|18|29619.90|0.06|0.08|N|O|1998-09-11|1998-09-24|1998-10-10|NONE|FOB|ter the regular excuses| +84456|221097|46106|2|10|10180.80|0.04|0.06|N|O|1998-10-09|1998-09-17|1998-11-06|TAKE BACK RETURN|REG AIR|even requests promise against the slyly unu| +84456|971786|9344|3|22|40870.28|0.03|0.04|N|O|1998-08-30|1998-08-06|1998-09-13|NONE|SHIP|eposits cajole| +84457|917765|17766|1|48|85570.56|0.07|0.03|R|F|1992-07-08|1992-08-23|1992-07-15|DELIVER IN PERSON|TRUCK|s accounts sleep blith| +84457|875117|12669|2|22|24025.54|0.02|0.02|A|F|1992-09-02|1992-09-05|1992-09-19|NONE|MAIL|n requests toward the carefull| +84458|472517|22518|1|49|72985.01|0.04|0.02|R|F|1993-01-02|1993-03-07|1993-01-31|COLLECT COD|SHIP|onic foxes. close, bold de| +84458|590884|15907|2|13|25673.18|0.06|0.05|A|F|1993-04-16|1993-01-29|1993-04-25|NONE|FOB|sly regular excuses use regular grouches.| +84459|968747|31267|1|39|70812.30|0.00|0.07|N|O|1995-07-01|1995-05-26|1995-07-29|TAKE BACK RETURN|TRUCK|. quickly final ideas lose carefully amo| +84459|726669|26670|2|30|50868.90|0.06|0.08|A|F|1995-05-04|1995-04-18|1995-05-21|TAKE BACK RETURN|AIR|sauternes. quickly expre| +84459|120105|45110|3|48|54004.80|0.04|0.02|N|O|1995-07-08|1995-04-26|1995-07-10|TAKE BACK RETURN|FOB|st across the| +84459|603621|16134|4|29|44213.11|0.01|0.03|A|F|1995-04-06|1995-05-15|1995-04-12|NONE|MAIL|ose at the fluffily| +84459|47148|34649|5|49|53661.86|0.06|0.03|R|F|1995-04-01|1995-05-11|1995-04-18|COLLECT COD|SHIP|d theodolites cajole blithely. fin| +84459|402138|27155|6|37|38484.07|0.10|0.02|A|F|1995-04-24|1995-06-06|1995-05-24|DELIVER IN PERSON|REG AIR|en ideas alongsid| +84459|721793|46822|7|7|12703.32|0.02|0.03|R|F|1995-04-17|1995-05-21|1995-05-03|TAKE BACK RETURN|RAIL|y slyly pending| +84460|159377|34384|1|8|11490.96|0.10|0.00|N|O|1997-03-19|1997-02-04|1997-04-12|DELIVER IN PERSON|SHIP|ly regular dependen| +84460|638751|1264|2|45|76037.40|0.04|0.02|N|O|1997-03-16|1997-01-14|1997-03-23|NONE|MAIL|posits integrate among the bli| +84461|830521|30522|1|23|33384.04|0.08|0.00|N|O|1998-07-19|1998-09-05|1998-07-25|NONE|MAIL|ges. even packag| +84461|563137|25649|2|26|31202.86|0.02|0.00|N|O|1998-07-09|1998-08-06|1998-08-08|COLLECT COD|FOB|ealms detect. s| +84462|971018|46057|1|50|54448.50|0.02|0.05|R|F|1992-03-10|1992-02-27|1992-04-07|DELIVER IN PERSON|SHIP|e regular, bold id| +84462|894393|31945|2|30|41620.50|0.05|0.00|R|F|1992-03-12|1992-03-03|1992-03-29|COLLECT COD|MAIL| doubt acro| +84462|52238|14740|3|11|13092.53|0.09|0.02|A|F|1992-01-16|1992-03-15|1992-01-28|COLLECT COD|FOB| ironic packa| +84463|861222|23740|1|42|49693.56|0.10|0.07|N|O|1998-03-21|1998-02-22|1998-04-12|NONE|MAIL|leep furiously. packag| +84488|479435|41945|1|35|49504.35|0.01|0.01|N|O|1995-10-06|1995-10-10|1995-10-31|NONE|RAIL|thely pending re| +84488|853000|28035|2|44|41930.24|0.10|0.00|N|O|1995-10-05|1995-10-13|1995-10-14|DELIVER IN PERSON|RAIL|dencies. even, p| +84489|163600|1110|1|44|73198.40|0.04|0.06|R|F|1993-04-17|1993-05-09|1993-05-04|DELIVER IN PERSON|MAIL|nic foxes at the ironic reques| +84489|612532|25045|2|47|67891.50|0.04|0.00|R|F|1993-05-16|1993-05-20|1993-06-10|DELIVER IN PERSON|REG AIR|ons haggle. sly| +84489|822865|22866|3|11|19666.02|0.01|0.08|A|F|1993-04-26|1993-05-02|1993-05-08|DELIVER IN PERSON|SHIP|refully at the expr| +84489|882850|7885|4|40|73312.40|0.05|0.08|R|F|1993-06-16|1993-06-06|1993-07-06|TAKE BACK RETURN|SHIP|even instructions sleep blithely. sile| +84489|55131|30134|5|10|10861.30|0.03|0.01|A|F|1993-07-15|1993-05-02|1993-08-05|COLLECT COD|FOB|nto beans haggle. slyly bold account| +84490|49670|24671|1|34|55068.78|0.03|0.03|N|O|1995-07-01|1995-05-21|1995-07-26|TAKE BACK RETURN|SHIP|mong the bold, even instructions boost qu| +84490|796970|22001|2|34|70275.96|0.02|0.06|N|O|1995-07-14|1995-07-05|1995-07-25|NONE|FOB|ages sleep carefully special deposits| +84491|711081|36110|1|17|18564.85|0.08|0.03|A|F|1992-04-12|1992-04-12|1992-05-12|TAKE BACK RETURN|AIR|st carefully | +84492|207462|19967|1|5|6847.25|0.01|0.06|A|F|1992-04-02|1992-06-21|1992-04-15|TAKE BACK RETURN|SHIP|y furious acc| +84493|15395|15396|1|48|62898.72|0.01|0.04|A|F|1994-12-01|1994-12-23|1994-12-20|COLLECT COD|REG AIR|dependencies w| +84493|740574|40575|2|36|58123.44|0.05|0.00|R|F|1994-11-07|1994-12-22|1994-11-22|DELIVER IN PERSON|FOB|ilent packages play furiously. fluffil| +84493|824406|49439|3|42|55875.12|0.01|0.00|A|F|1994-11-29|1994-11-22|1994-12-04|COLLECT COD|MAIL|ent ideas according to t| +84493|779116|41632|4|43|51388.44|0.03|0.04|R|F|1995-01-11|1994-12-24|1995-01-12|NONE|TRUCK|nag furiously along | +84493|602353|2354|5|14|17574.48|0.02|0.00|R|F|1995-01-12|1994-12-23|1995-01-14|NONE|MAIL| the ironic accounts. blithely | +84493|743872|43873|6|9|17242.56|0.04|0.02|R|F|1994-11-15|1994-12-29|1994-11-25|COLLECT COD|FOB|lithely ironic deposits are slyl| +84494|857647|45199|1|24|38510.40|0.08|0.02|A|F|1994-10-25|1994-10-17|1994-10-28|TAKE BACK RETURN|RAIL| packages are furiously amo| +84495|534966|47477|1|14|28013.16|0.05|0.05|R|F|1993-04-05|1993-06-12|1993-04-13|DELIVER IN PERSON|AIR|e pending accou| +84495|161121|48631|2|31|36645.72|0.06|0.05|A|F|1993-04-04|1993-06-03|1993-05-01|TAKE BACK RETURN|RAIL|nt excuses ar| +84520|316631|16632|1|34|56019.08|0.05|0.03|N|O|1997-07-11|1997-09-02|1997-07-19|TAKE BACK RETURN|REG AIR|r foxes wake| +84520|608228|8229|2|19|21587.61|0.10|0.05|N|O|1997-07-13|1997-07-23|1997-08-10|DELIVER IN PERSON|FOB|s. foxes integr| +84520|477441|27442|3|41|58155.22|0.08|0.01|N|O|1997-09-17|1997-07-27|1997-10-06|NONE|SHIP|hinly pending packag| +84520|350661|13169|4|8|13693.20|0.04|0.02|N|O|1997-06-12|1997-08-16|1997-07-12|TAKE BACK RETURN|AIR| the accounts. final theodolites lose ab| +84520|555404|5405|5|15|21890.70|0.09|0.01|N|O|1997-06-20|1997-08-11|1997-07-05|DELIVER IN PERSON|REG AIR|e quickly unusual pinto beans; pending| +84520|660663|23177|6|24|38967.12|0.10|0.07|N|O|1997-10-04|1997-07-20|1997-10-06|NONE|RAIL| detect enticingly across the | +84520|760829|48375|7|38|71812.02|0.09|0.07|N|O|1997-09-10|1997-08-12|1997-10-07|COLLECT COD|AIR|ously regular ideas nod alongside | +84521|247254|22263|1|23|27628.52|0.02|0.04|R|F|1994-09-04|1994-11-02|1994-10-04|TAKE BACK RETURN|RAIL|he fluffy asymptot| +84521|585428|10451|2|32|48428.80|0.08|0.00|R|F|1994-11-14|1994-10-17|1994-11-23|DELIVER IN PERSON|REG AIR|un. special deposits cajole fur| +84522|920827|33346|1|39|72063.42|0.08|0.00|A|F|1994-06-23|1994-08-22|1994-07-04|NONE|AIR|ts integrate fu| +84522|323986|23987|2|20|40199.40|0.02|0.04|R|F|1994-09-10|1994-08-04|1994-09-11|DELIVER IN PERSON|AIR|lar courts:| +84522|216135|3648|3|17|17869.04|0.06|0.03|A|F|1994-05-29|1994-08-21|1994-05-31|NONE|FOB|tructions. unusual, bold multiplier| +84522|575835|38347|4|47|89808.07|0.00|0.06|R|F|1994-08-03|1994-08-14|1994-08-17|NONE|MAIL|ual accounts. ex| +84523|664919|27433|1|44|82890.72|0.10|0.00|N|O|1997-04-16|1997-05-17|1997-04-21|DELIVER IN PERSON|TRUCK|aves after the slyly unusual | +84523|283662|46168|2|31|51015.15|0.05|0.00|N|O|1997-07-22|1997-05-17|1997-08-02|COLLECT COD|TRUCK|. regular packages are along t| +84523|500220|25241|3|25|30505.00|0.02|0.08|N|O|1997-05-28|1997-05-09|1997-06-05|DELIVER IN PERSON|TRUCK|. accounts | +84523|187766|270|4|10|18537.60|0.09|0.01|N|O|1997-06-02|1997-05-18|1997-06-05|COLLECT COD|RAIL|s sleep regular dolphins. f| +84523|776929|14475|5|47|94276.83|0.09|0.01|N|O|1997-07-20|1997-05-26|1997-08-11|NONE|AIR|e blithely daring deposits nag abo| +84523|838805|26354|6|19|33131.44|0.07|0.02|N|O|1997-04-21|1997-07-04|1997-05-16|COLLECT COD|REG AIR|quickly bold packages above the furi| +84524|590351|27885|1|18|25943.94|0.06|0.08|N|O|1997-11-13|1997-12-26|1997-11-26|TAKE BACK RETURN|SHIP|y across the | +84524|21200|8701|2|41|45969.20|0.08|0.08|N|O|1997-12-28|1997-12-31|1998-01-26|DELIVER IN PERSON|AIR|y. unusual theodolites | +84524|305549|18056|3|36|55963.08|0.03|0.00|N|O|1998-02-19|1997-12-28|1998-03-19|COLLECT COD|REG AIR|ffily final ins| +84524|357427|19935|4|6|8906.46|0.04|0.02|N|O|1998-01-21|1998-01-08|1998-02-03|TAKE BACK RETURN|MAIL|its. accounts are blithely. ca| +84524|268190|30696|5|39|45169.02|0.03|0.03|N|O|1997-11-11|1998-01-01|1997-11-18|NONE|TRUCK|the fluffily even deposi| +84525|195978|33488|1|6|12443.82|0.02|0.08|A|F|1994-03-08|1994-04-02|1994-04-01|TAKE BACK RETURN|MAIL|refully unusual deposits haggle decoys. qui| +84525|793675|6191|2|22|38910.08|0.06|0.06|R|F|1994-03-14|1994-04-06|1994-03-20|COLLECT COD|AIR| pending packag| +84525|292051|17062|3|38|39635.52|0.09|0.08|R|F|1994-02-08|1994-04-07|1994-02-16|COLLECT COD|SHIP|ing to the blithely regular foxes. | +84525|488779|13798|4|37|65406.75|0.08|0.08|A|F|1994-03-08|1994-02-26|1994-03-14|TAKE BACK RETURN|SHIP|otes. sentiments wake. special sentiments h| +84525|906850|44405|5|50|92840.50|0.05|0.07|A|F|1994-02-09|1994-03-28|1994-02-19|DELIVER IN PERSON|MAIL|xcuses. regular, regular dependencies| +84526|496097|46098|1|44|48095.08|0.00|0.04|A|F|1994-07-01|1994-07-16|1994-07-25|DELIVER IN PERSON|FOB| idly unusual foxes hagg| +84526|895214|7732|2|6|7255.02|0.03|0.01|A|F|1994-07-31|1994-08-19|1994-08-14|NONE|TRUCK|ch slyly after the even, ironic instruc| +84526|847450|22483|3|2|2794.82|0.02|0.06|A|F|1994-09-02|1994-08-28|1994-09-19|TAKE BACK RETURN|REG AIR|xcuses use quic| +84526|85133|47635|4|2|2236.26|0.08|0.08|R|F|1994-06-16|1994-08-17|1994-07-09|COLLECT COD|AIR|final packages sublate| +84527|22677|35178|1|15|23995.05|0.07|0.00|N|O|1998-04-04|1998-05-21|1998-04-18|DELIVER IN PERSON|AIR| serve; blithely even theodolites doubt ca| +84527|126613|14120|2|44|72142.84|0.07|0.00|N|O|1998-06-19|1998-06-08|1998-07-08|NONE|TRUCK|ges run-- slyly express accounts wake s| +84527|980238|42758|3|30|39545.70|0.07|0.01|N|O|1998-06-27|1998-06-13|1998-07-26|DELIVER IN PERSON|REG AIR|ular requests a| +84527|856950|19468|4|23|43858.93|0.03|0.05|N|O|1998-05-23|1998-06-14|1998-06-20|COLLECT COD|MAIL|uffily bold p| +84527|755126|42672|5|15|17716.35|0.08|0.07|N|O|1998-05-10|1998-06-07|1998-05-15|NONE|FOB|inal requests ag| +84527|399525|49526|6|41|66604.91|0.02|0.02|N|O|1998-04-28|1998-05-18|1998-04-30|TAKE BACK RETURN|SHIP|ges about t| +84527|810805|23322|7|46|78924.96|0.05|0.01|N|O|1998-04-20|1998-05-13|1998-05-03|COLLECT COD|TRUCK|n foxes are furiously final| +84552|194483|31993|1|20|31549.60|0.05|0.07|N|O|1997-08-17|1997-07-16|1997-09-12|COLLECT COD|REG AIR| accounts boost across the quickly final | +84552|660198|35225|2|23|26637.68|0.01|0.05|N|O|1997-07-05|1997-06-06|1997-07-08|NONE|RAIL| requests. s| +84552|943812|18849|3|26|48250.02|0.08|0.08|N|O|1997-06-07|1997-07-19|1997-06-10|NONE|MAIL|slyly. eve| +84552|646767|9280|4|16|27419.68|0.08|0.05|N|O|1997-08-17|1997-05-28|1997-08-28|COLLECT COD|RAIL|quickly unusual | +84553|168300|30804|1|50|68415.00|0.01|0.04|N|O|1998-01-21|1997-11-03|1998-01-25|TAKE BACK RETURN|TRUCK| quickly silent, bold excuses. bol| +84554|700083|84|1|33|35740.65|0.06|0.07|N|O|1995-12-23|1995-10-23|1995-12-25|NONE|SHIP|ickly slow platele| +84554|287217|49723|2|26|31309.20|0.06|0.05|N|O|1995-12-26|1995-10-19|1996-01-11|DELIVER IN PERSON|FOB|t fluffily blithely ironic depos| +84554|254565|29576|3|12|18234.60|0.00|0.03|N|O|1995-12-11|1995-12-01|1995-12-31|TAKE BACK RETURN|FOB|ounts dazzle carefully| +84555|415884|3409|1|29|52195.94|0.08|0.06|N|O|1995-09-15|1995-07-28|1995-09-22|COLLECT COD|SHIP|ests cajole again| +84555|760087|10088|2|50|57352.50|0.00|0.01|N|O|1995-07-23|1995-07-26|1995-08-04|DELIVER IN PERSON|SHIP|ate quickly furiously | +84555|776568|39084|3|28|46046.84|0.09|0.05|N|O|1995-06-26|1995-08-29|1995-07-06|COLLECT COD|AIR|inst the deposits. slyly re| +84555|774582|12128|4|21|34787.55|0.07|0.05|N|O|1995-10-06|1995-09-11|1995-10-12|DELIVER IN PERSON|AIR|egular theodoli| +84555|398084|35606|5|4|4728.28|0.02|0.08|N|O|1995-10-05|1995-08-26|1995-10-25|TAKE BACK RETURN|TRUCK|ly behind the e| +84555|584475|34476|6|22|34307.90|0.10|0.05|N|O|1995-07-20|1995-09-07|1995-08-09|DELIVER IN PERSON|SHIP|lent theodolites about the carefully bo| +84555|259730|22236|7|7|11828.04|0.03|0.04|N|O|1995-08-15|1995-08-10|1995-08-21|DELIVER IN PERSON|SHIP|cajole quickly after the special d| +84556|275477|25478|1|45|65360.70|0.09|0.01|N|O|1996-04-17|1996-03-27|1996-04-27|DELIVER IN PERSON|TRUCK|ealthily dari| +84556|926697|39216|2|50|86182.50|0.07|0.01|N|O|1996-01-24|1996-02-08|1996-02-09|DELIVER IN PERSON|FOB| ideas use quickly slyly pendin| +84556|982539|7578|3|29|47023.21|0.10|0.02|N|O|1996-04-16|1996-02-29|1996-04-23|DELIVER IN PERSON|FOB| deposits are w| +84556|524294|11825|4|1|1318.27|0.10|0.01|N|O|1996-03-20|1996-03-14|1996-03-23|NONE|SHIP|ecial orbits. theodolit| +84556|796578|9094|5|13|21769.02|0.10|0.04|N|O|1996-02-18|1996-03-09|1996-03-04|DELIVER IN PERSON|FOB|xpress decoys: quic| +84556|79023|41525|6|17|17034.34|0.02|0.08|N|O|1996-02-08|1996-03-18|1996-03-02|TAKE BACK RETURN|MAIL|rts play stealthy, unusual req| +84556|126443|26444|7|43|63185.92|0.04|0.01|N|O|1996-03-25|1996-02-23|1996-03-27|COLLECT COD|FOB| fluffily ironic theo| +84557|113236|25739|1|50|62461.50|0.00|0.01|A|F|1993-02-09|1993-03-16|1993-03-03|NONE|FOB|ts. final pinto beans| +84557|145171|7674|2|49|59592.33|0.00|0.05|R|F|1993-02-16|1993-03-14|1993-02-26|COLLECT COD|MAIL| the furiously even packages. blithely| +84557|879868|4903|3|43|79456.26|0.04|0.03|A|F|1993-05-24|1993-04-09|1993-06-22|NONE|FOB|ruthlessly unusual deposits haggle. blithe| +84557|931298|31299|4|25|33231.25|0.10|0.05|A|F|1993-04-18|1993-04-10|1993-04-24|DELIVER IN PERSON|REG AIR|ular deposits af| +84557|319793|7312|5|25|45319.50|0.01|0.01|R|F|1993-05-31|1993-04-23|1993-06-30|NONE|MAIL|us, regular| +84557|751592|14108|6|4|6574.24|0.09|0.01|A|F|1993-03-17|1993-04-07|1993-04-09|TAKE BACK RETURN|FOB| express deposits. | +84557|994119|19158|7|30|36392.10|0.05|0.01|R|F|1993-03-14|1993-03-08|1993-04-12|COLLECT COD|FOB|ep against the slyly specia| +84558|147541|47542|1|27|42890.58|0.07|0.01|A|F|1992-05-11|1992-05-31|1992-05-17|TAKE BACK RETURN|REG AIR|s. carefully even courts are c| +84558|711603|36632|2|47|75884.79|0.05|0.00|R|F|1992-04-13|1992-05-26|1992-05-12|COLLECT COD|SHIP|daring asym| +84558|901794|39349|3|35|62851.25|0.04|0.03|A|F|1992-04-14|1992-06-20|1992-05-06|COLLECT COD|FOB|sleep blithely accounts| +84558|447916|22933|4|30|55916.70|0.05|0.04|R|F|1992-04-24|1992-05-15|1992-04-25|DELIVER IN PERSON|FOB|equests nag furiously. furiously| +84559|851570|26605|1|41|62382.73|0.02|0.03|N|O|1995-08-19|1995-08-23|1995-08-30|TAKE BACK RETURN|MAIL|al pinto beans w| +84559|321171|33678|2|48|57223.68|0.03|0.03|N|O|1995-10-09|1995-07-21|1995-11-08|TAKE BACK RETURN|TRUCK|uests cajol| +84584|553937|16449|1|15|29863.65|0.06|0.06|N|F|1995-06-07|1995-06-23|1995-06-26|COLLECT COD|REG AIR| promise fluffily furiously brave package| +84584|5644|18145|2|22|34092.08|0.04|0.08|A|F|1995-05-13|1995-06-05|1995-05-19|NONE|RAIL|the courts sleep across the unusual accou| +84585|396170|8678|1|18|22790.88|0.05|0.02|N|O|1997-05-09|1997-06-14|1997-06-02|NONE|RAIL|egularly ruthless accounts. carefully pen| +84585|428882|28883|2|41|74245.26|0.10|0.04|N|O|1997-05-25|1997-06-10|1997-06-04|NONE|MAIL|lly around the special courts. carefully r| +84585|209534|9535|3|47|67845.44|0.09|0.01|N|O|1997-06-05|1997-06-01|1997-07-04|TAKE BACK RETURN|SHIP|structions according to th| +84585|625389|37902|4|2|2628.70|0.08|0.04|N|O|1997-07-03|1997-07-16|1997-07-21|TAKE BACK RETURN|RAIL|even courts wake c| +84585|904373|4374|5|26|35810.58|0.02|0.02|N|O|1997-05-11|1997-06-28|1997-05-12|DELIVER IN PERSON|MAIL|g, even packages. fin| +84586|251418|26429|1|48|65731.20|0.08|0.07|N|O|1998-02-09|1998-03-22|1998-03-02|NONE|REG AIR|s. fluffily final dinos are a| +84586|568274|18275|2|46|61743.50|0.07|0.01|N|O|1998-03-08|1998-01-30|1998-03-14|TAKE BACK RETURN|REG AIR|xpress requests are fluffily blithely regu| +84586|968901|31421|3|35|68945.10|0.03|0.04|N|O|1998-02-10|1998-02-26|1998-03-12|COLLECT COD|MAIL| blithely final accounts. blithely expres| +84586|317730|5249|4|26|45440.72|0.00|0.07|N|O|1998-01-30|1998-03-24|1998-02-06|TAKE BACK RETURN|RAIL|ies. slyly careful instructions w| +84586|72550|35052|5|37|56334.35|0.05|0.03|N|O|1998-04-16|1998-02-27|1998-04-24|TAKE BACK RETURN|SHIP| unusual, | +84587|585893|35894|1|26|51450.62|0.04|0.01|A|F|1995-05-31|1995-05-31|1995-06-12|DELIVER IN PERSON|RAIL|y pending platelets use slyly aga| +84587|101692|39199|2|39|66053.91|0.08|0.02|N|O|1995-08-01|1995-07-04|1995-08-28|DELIVER IN PERSON|AIR|even, ironic a| +84588|57208|19710|1|28|32625.60|0.05|0.05|N|F|1995-06-08|1995-05-25|1995-06-19|COLLECT COD|MAIL|eans sleep | +84588|481916|6935|2|18|34162.02|0.00|0.03|A|F|1995-04-26|1995-06-18|1995-05-23|COLLECT COD|RAIL| finally regu| +84588|550009|37543|3|19|20120.62|0.01|0.01|A|F|1995-06-06|1995-06-24|1995-06-10|COLLECT COD|REG AIR|gle furiously. regular ideas aff| +84588|999728|37286|4|12|21932.16|0.09|0.05|A|F|1995-06-06|1995-06-14|1995-06-14|DELIVER IN PERSON|MAIL|ully regular requests sleep care| +84589|949935|49936|1|30|59546.70|0.01|0.00|A|F|1995-03-02|1995-02-16|1995-03-10|TAKE BACK RETURN|AIR|e blithely. ironic p| +84589|541038|16059|2|19|20501.19|0.00|0.07|R|F|1995-03-07|1995-02-14|1995-04-04|TAKE BACK RETURN|MAIL|asymptotes. | +84589|217610|17611|3|13|19858.80|0.05|0.02|A|F|1995-03-11|1995-02-06|1995-03-18|COLLECT COD|MAIL|ily even dolphins x-ray quickly. special| +84589|362729|12730|4|5|8958.55|0.01|0.05|R|F|1995-03-14|1995-03-19|1995-04-12|NONE|REG AIR|al ideas sleep. furiously ironic | +84589|371435|8957|5|17|25609.14|0.05|0.01|A|F|1995-01-19|1995-02-07|1995-01-24|DELIVER IN PERSON|TRUCK|ep slyly. unusual dino| +84590|782527|32528|1|3|4828.47|0.05|0.00|N|O|1995-11-20|1995-10-12|1995-11-25|COLLECT COD|FOB|. stealthily ironic ideas sleep| +84590|922682|35201|2|29|49434.56|0.00|0.04|N|O|1995-08-09|1995-09-16|1995-08-12|COLLECT COD|REG AIR|aggle slyly across the | +84590|504233|29254|3|12|14846.52|0.09|0.03|N|O|1995-09-16|1995-10-03|1995-10-10|NONE|RAIL|ymptotes wake final,| +84591|182327|44831|1|42|59191.44|0.02|0.08|N|O|1997-11-17|1998-01-18|1997-11-25|COLLECT COD|SHIP|es haggle carefully carefully| +84591|368873|6395|2|17|33011.62|0.00|0.02|N|O|1998-01-08|1998-02-06|1998-01-11|TAKE BACK RETURN|TRUCK|yly ironic packages sleep | +84591|636801|49314|3|6|10426.62|0.04|0.01|N|O|1998-03-13|1997-12-27|1998-04-03|NONE|AIR|deposits lose. plate| +84591|701777|14292|4|43|76485.82|0.01|0.01|N|O|1998-02-22|1998-01-30|1998-03-24|DELIVER IN PERSON|RAIL|ites hinder along | +84591|750501|25532|5|3|4654.41|0.06|0.00|N|O|1998-02-27|1998-01-03|1998-02-28|DELIVER IN PERSON|FOB|regular instructions? even packag| +84591|670147|45174|6|47|52504.17|0.06|0.07|N|O|1998-03-12|1997-12-21|1998-04-06|NONE|MAIL|ged deposits. fl| +84616|903484|16003|1|13|19336.72|0.05|0.07|N|O|1997-05-25|1997-03-10|1997-06-10|NONE|TRUCK| final packages. unus| +84616|844120|31669|2|20|21281.60|0.09|0.07|N|O|1997-05-04|1997-04-01|1997-05-23|DELIVER IN PERSON|SHIP|ckly pending foxes. grouches | +84616|121756|21757|3|8|14222.00|0.04|0.06|N|O|1997-03-13|1997-03-15|1997-04-02|NONE|TRUCK|ly blithe accounts. unus| +84616|346096|21109|4|40|45683.20|0.06|0.05|N|O|1997-05-18|1997-04-23|1997-05-22|COLLECT COD|MAIL|press, bold requests. furiously pending w| +84616|832441|19990|5|46|63176.40|0.08|0.02|N|O|1997-03-10|1997-03-18|1997-04-07|COLLECT COD|SHIP|unts. epitaphs are carefully. slyly regula| +84616|834357|46874|6|41|52943.71|0.05|0.03|N|O|1997-04-13|1997-04-14|1997-04-26|DELIVER IN PERSON|MAIL| wake furiously around the special pin| +84617|627590|2615|1|19|28833.64|0.09|0.05|R|F|1992-01-19|1992-02-04|1992-01-22|COLLECT COD|AIR|lets. fluffily even accounts can use fin| +84617|900732|733|2|15|25990.35|0.09|0.03|A|F|1992-02-07|1992-03-31|1992-03-01|COLLECT COD|RAIL|lar pinto beans. blithely bold | +84617|592947|30481|3|24|48958.08|0.07|0.02|R|F|1992-03-28|1992-02-11|1992-04-04|NONE|SHIP|usly bold d| +84618|898911|48912|1|41|78304.67|0.10|0.01|N|O|1996-07-24|1996-06-19|1996-08-17|NONE|REG AIR|ic requests sleep fluffily across | +84618|987977|13016|2|18|37168.74|0.01|0.05|N|O|1996-05-16|1996-06-24|1996-06-02|NONE|SHIP|detect slyly deposits. furious| +84618|916909|4464|3|37|71256.82|0.09|0.07|N|O|1996-07-04|1996-06-04|1996-07-17|TAKE BACK RETURN|RAIL|al requests. slyl| +84618|474527|37037|4|30|45045.00|0.06|0.05|N|O|1996-07-26|1996-06-11|1996-08-15|TAKE BACK RETURN|TRUCK|s. quickly ironic exc| +84618|363483|1005|5|40|61858.80|0.09|0.01|N|O|1996-04-23|1996-05-30|1996-04-29|NONE|AIR|latelets cajole. or| +84618|49582|37083|6|9|13784.22|0.08|0.00|N|O|1996-05-29|1996-06-28|1996-06-23|COLLECT COD|FOB|e the slyly ironic requests. carefu| +84619|298538|36054|1|41|62997.32|0.09|0.04|R|F|1992-07-09|1992-07-25|1992-07-25|TAKE BACK RETURN|MAIL|dolites will haggle furiously c| +84620|483998|33999|1|29|57477.13|0.02|0.04|N|O|1998-04-09|1998-05-16|1998-04-19|NONE|FOB|ing instructions poach furiously b| +84620|552209|2210|2|35|44141.30|0.07|0.08|N|O|1998-07-08|1998-06-27|1998-07-17|NONE|REG AIR|onic foxes are at the sentim| +84620|974228|36748|3|4|5208.72|0.06|0.03|N|O|1998-07-01|1998-06-05|1998-07-04|TAKE BACK RETURN|AIR| carefully expres| +84620|837033|37034|4|12|11639.88|0.04|0.05|N|O|1998-06-23|1998-06-13|1998-06-24|DELIVER IN PERSON|FOB|egular instructions? carefully| +84620|997067|34625|5|46|53544.92|0.01|0.04|N|O|1998-04-08|1998-05-10|1998-04-26|DELIVER IN PERSON|RAIL|dolites. pending ins| +84620|696574|9088|6|18|28269.72|0.00|0.02|N|O|1998-04-21|1998-06-19|1998-04-25|COLLECT COD|AIR|wake furiously bold as| +84621|154008|29015|1|50|53100.00|0.06|0.00|A|F|1993-01-08|1993-01-13|1993-02-04|NONE|MAIL|he quickly ironic| +84621|403178|28195|2|3|3243.45|0.06|0.00|A|F|1993-02-23|1993-02-04|1993-03-03|COLLECT COD|MAIL|ans around the ironic accou| +84621|209001|21506|3|3|2729.97|0.01|0.04|R|F|1992-12-09|1993-02-11|1992-12-19|DELIVER IN PERSON|MAIL|even, regular ideas slee| +84621|667053|4593|4|13|13260.26|0.04|0.01|R|F|1993-03-25|1993-02-23|1993-04-24|NONE|MAIL|ideas. carefully silent deposits nag| +84621|148242|23247|5|18|23224.32|0.05|0.03|R|F|1993-02-07|1993-02-23|1993-02-12|TAKE BACK RETURN|AIR|e final, ironic asympt| +84622|224622|37127|1|47|72690.67|0.00|0.02|A|F|1993-11-07|1993-12-13|1993-11-15|NONE|TRUCK|st the quickly pending accounts a| +84623|426851|14376|1|5|8889.15|0.07|0.03|N|F|1995-06-06|1995-08-20|1995-06-21|NONE|REG AIR| grouches are fluffil| +84623|82745|45247|2|29|50104.46|0.07|0.00|N|O|1995-08-28|1995-07-04|1995-09-25|COLLECT COD|FOB|ckly ironic courts cajole carefu| +84623|678644|16184|3|30|48678.30|0.02|0.05|N|O|1995-09-01|1995-08-16|1995-09-05|COLLECT COD|MAIL|c instructions| +84623|964206|1764|4|14|17782.24|0.00|0.08|N|O|1995-08-31|1995-08-08|1995-09-28|COLLECT COD|REG AIR|quickly according to the furious| +84648|83806|21310|1|20|35796.00|0.06|0.02|A|F|1995-05-10|1995-05-27|1995-06-03|TAKE BACK RETURN|FOB|furiously special platelets. pinto be| +84648|517374|17375|2|33|45914.55|0.07|0.03|N|O|1995-07-06|1995-06-15|1995-07-11|DELIVER IN PERSON|TRUCK|excuses across the accounts cajole bl| +84648|491636|4146|3|23|37435.03|0.10|0.08|N|F|1995-05-26|1995-07-23|1995-06-22|COLLECT COD|RAIL|ly furiously express dependencies.| +84648|916115|41152|4|36|40718.52|0.09|0.00|N|O|1995-08-14|1995-07-17|1995-08-19|COLLECT COD|REG AIR|affix carefully regular| +84649|828602|16151|1|15|22958.40|0.05|0.07|N|O|1998-04-20|1998-03-18|1998-05-19|COLLECT COD|REG AIR|ng the notor| +84649|308306|33319|2|19|24971.51|0.00|0.03|N|O|1998-02-20|1998-03-30|1998-02-26|DELIVER IN PERSON|SHIP|deposits across the regular sentiments nag| +84649|686199|36200|3|5|5925.80|0.07|0.03|N|O|1998-05-25|1998-04-14|1998-06-20|DELIVER IN PERSON|MAIL|y. special| +84649|938899|1418|4|12|23254.20|0.08|0.00|N|O|1998-02-13|1998-03-26|1998-03-08|DELIVER IN PERSON|AIR|lyly specia| +84649|75363|12867|5|49|65579.64|0.09|0.08|N|O|1998-03-20|1998-03-18|1998-03-26|COLLECT COD|MAIL|ular requests. furiously regular a| +84649|616189|16190|6|39|43100.85|0.07|0.00|N|O|1998-04-17|1998-04-16|1998-05-15|COLLECT COD|MAIL|nto beans sleep furiously across the| +84650|900124|25161|1|47|52831.76|0.03|0.05|N|O|1998-02-16|1998-02-05|1998-03-13|DELIVER IN PERSON|RAIL|its. regular| +84650|379034|4049|2|50|55651.00|0.10|0.02|N|O|1998-03-23|1998-01-19|1998-04-06|DELIVER IN PERSON|RAIL|l deposits. slyly pen| +84650|416270|16271|3|6|7117.50|0.10|0.08|N|O|1998-01-23|1998-03-01|1998-02-13|COLLECT COD|SHIP|ding theodolites. accoun| +84650|249133|36646|4|26|28135.12|0.01|0.02|N|O|1998-04-08|1998-02-19|1998-04-22|COLLECT COD|FOB|sts. ironic packages sleep furi| +84650|176700|39204|5|41|72844.70|0.07|0.05|N|O|1998-02-18|1998-03-09|1998-03-06|COLLECT COD|TRUCK| above the pint| +84650|792953|42954|6|4|8183.68|0.10|0.06|N|O|1998-02-10|1998-02-25|1998-02-20|COLLECT COD|FOB|gainst the ironic, special depos| +84650|147365|47366|7|38|53669.68|0.05|0.00|N|O|1997-12-30|1998-01-31|1998-01-07|TAKE BACK RETURN|AIR|ts haggle blithely furiously express pl| +84651|752961|2962|1|23|46320.39|0.05|0.04|R|F|1994-06-16|1994-08-10|1994-06-19|NONE|TRUCK|e the blithely f| +84651|14054|14055|2|33|31945.65|0.00|0.05|A|F|1994-09-12|1994-06-28|1994-10-11|COLLECT COD|TRUCK|gh the carefully express accounts. | +84651|189940|14947|3|22|44658.68|0.07|0.08|A|F|1994-08-06|1994-08-13|1994-08-24|TAKE BACK RETURN|TRUCK|ajole fluffily even plate| +84651|313935|38948|4|46|89650.32|0.04|0.04|R|F|1994-07-21|1994-07-22|1994-07-27|NONE|TRUCK|leep slyly | +84651|294325|6831|5|18|23747.58|0.06|0.04|R|F|1994-09-07|1994-06-28|1994-09-25|COLLECT COD|AIR|olites haggle about the dependencies. b| +84652|697930|22957|1|22|42413.80|0.05|0.00|N|O|1998-03-21|1998-05-26|1998-03-29|NONE|FOB|n, bold ideas? unusual i| +84652|100003|37510|2|45|45135.00|0.08|0.00|N|O|1998-04-04|1998-04-19|1998-05-03|TAKE BACK RETURN|FOB|theodolites. fina| +84652|748949|48950|3|43|85910.13|0.04|0.08|N|O|1998-03-12|1998-05-06|1998-03-27|COLLECT COD|FOB|y even deposits. slyl| +84652|576789|26790|4|8|14926.08|0.04|0.07|N|O|1998-05-23|1998-04-05|1998-06-13|DELIVER IN PERSON|REG AIR|s packages. blithely special| +84652|82367|7370|5|30|40480.80|0.09|0.06|N|O|1998-03-31|1998-05-22|1998-04-29|COLLECT COD|RAIL|ts. busily ironic accounts cajole| +84652|335521|35522|6|20|31130.20|0.09|0.07|N|O|1998-03-19|1998-05-05|1998-04-18|NONE|MAIL|y regular, even epitaphs. accounts use car| +84653|636440|23977|1|45|61938.45|0.01|0.02|A|F|1992-09-18|1992-08-09|1992-10-12|NONE|FOB|always unusual pint| +84653|631144|18681|2|10|10751.10|0.01|0.07|R|F|1992-06-08|1992-07-21|1992-06-23|TAKE BACK RETURN|MAIL|ly pending packages sleep. carefully| +84654|306565|19072|1|6|9429.30|0.02|0.00|R|F|1994-12-29|1994-11-11|1995-01-18|TAKE BACK RETURN|TRUCK|ntegrate quickly iron| +84654|424351|24352|2|35|44636.55|0.03|0.06|R|F|1994-11-20|1994-12-30|1994-11-26|COLLECT COD|RAIL| even dolphins cajole slyly. asymptotes| +84654|65105|27607|3|3|3210.30|0.06|0.08|A|F|1994-11-24|1994-11-17|1994-11-30|TAKE BACK RETURN|SHIP|. ironic, r| +84654|203920|16425|4|8|14591.28|0.10|0.08|R|F|1994-12-01|1994-12-16|1994-12-08|NONE|SHIP|packages. blithely| +84654|269593|19594|5|32|50002.56|0.07|0.04|A|F|1994-10-26|1994-12-19|1994-11-25|TAKE BACK RETURN|REG AIR|ously. carefully bold pinto beans cajole| +84655|251407|1408|1|47|63844.33|0.03|0.03|N|O|1997-02-28|1997-04-30|1997-03-07|COLLECT COD|SHIP|y special fox| +84655|382531|45039|2|10|16135.20|0.07|0.05|N|O|1997-03-01|1997-04-03|1997-03-30|DELIVER IN PERSON|SHIP|accounts. | +84655|182575|7582|3|33|54699.81|0.06|0.01|N|O|1997-04-13|1997-04-17|1997-04-28|DELIVER IN PERSON|RAIL|ns cajole quick| +84680|76017|38519|1|37|36741.37|0.06|0.08|R|F|1994-03-08|1994-02-13|1994-03-09|NONE|FOB|ronically regular foxes. slyly regula| +84680|605366|42903|2|14|17798.62|0.08|0.02|A|F|1994-02-06|1994-03-17|1994-02-25|COLLECT COD|SHIP| carefully regu| +84680|384778|9793|3|27|50294.52|0.04|0.01|A|F|1994-01-10|1994-02-20|1994-02-05|DELIVER IN PERSON|REG AIR|carefully about the courts. accoun| +84681|557309|32332|1|5|6831.40|0.02|0.01|A|F|1992-12-19|1992-12-16|1993-01-03|TAKE BACK RETURN|MAIL|althily unusual dependencies am| +84681|676931|39445|2|24|45789.60|0.04|0.08|A|F|1992-10-03|1992-11-11|1992-10-27|COLLECT COD|SHIP|eep quickly carefully| +84681|175321|37825|3|46|64230.72|0.02|0.08|R|F|1992-11-22|1992-12-23|1992-12-22|DELIVER IN PERSON|TRUCK|usual theodolites h| +84682|755303|5304|1|29|39389.83|0.00|0.04|N|O|1996-05-07|1996-05-17|1996-05-28|TAKE BACK RETURN|FOB|usual excuses. fina| +84682|364256|1778|2|32|42247.68|0.09|0.00|N|O|1996-06-20|1996-05-08|1996-07-17|COLLECT COD|SHIP|excuses. slyly bold| +84682|34945|47446|3|7|13159.58|0.04|0.07|N|O|1996-06-09|1996-04-08|1996-06-14|NONE|AIR|to beans are about the furiousl| +84682|313399|918|4|41|57907.58|0.09|0.04|N|O|1996-04-11|1996-04-04|1996-04-14|COLLECT COD|RAIL|ackages across the| +84682|292623|30139|5|27|43621.47|0.05|0.03|N|O|1996-06-06|1996-04-28|1996-06-07|DELIVER IN PERSON|SHIP|the even dolphins are idly f| +84682|99318|11820|6|4|5269.24|0.00|0.00|N|O|1996-04-16|1996-05-16|1996-04-19|COLLECT COD|SHIP| the slyly quick instructions. deposits us| +84682|233018|8027|7|24|22824.00|0.01|0.06|N|O|1996-05-27|1996-05-17|1996-06-18|COLLECT COD|FOB|furiously above t| +84683|323795|23796|1|13|23644.14|0.04|0.04|R|F|1992-06-27|1992-07-25|1992-07-24|COLLECT COD|SHIP|bold accounts doubt accor| +84683|9946|22447|2|40|74237.60|0.04|0.05|A|F|1992-09-12|1992-07-10|1992-09-15|TAKE BACK RETURN|SHIP|oost. slyly ironic packages s| +84684|750961|13477|1|24|48286.32|0.10|0.06|N|O|1998-03-24|1998-02-09|1998-04-10|NONE|REG AIR| unusual, stealth| +84684|385984|23506|2|40|82798.80|0.08|0.03|N|O|1998-01-23|1998-03-07|1998-01-26|NONE|FOB|deas wake. fluffily e| +84684|225669|678|3|46|73353.90|0.06|0.01|N|O|1997-12-25|1998-01-20|1998-01-12|TAKE BACK RETURN|MAIL|according to the s| +84684|811713|24230|4|27|43866.09|0.03|0.03|N|O|1997-12-20|1998-03-08|1998-01-18|TAKE BACK RETURN|AIR|ly special deposits use furiously care| +84684|460231|35250|5|31|36927.51|0.03|0.05|N|O|1997-12-25|1998-01-21|1998-01-10|COLLECT COD|FOB|uickly express | +84685|37541|25042|1|30|44356.20|0.04|0.02|N|O|1998-06-02|1998-07-06|1998-06-04|DELIVER IN PERSON|FOB|iously bold, ironic| +84685|944829|19866|2|16|29980.48|0.09|0.01|N|O|1998-08-14|1998-08-02|1998-08-25|NONE|RAIL|oggedly special accounts use fluf| +84685|727724|40239|3|17|29778.73|0.01|0.06|N|O|1998-08-10|1998-07-11|1998-08-11|DELIVER IN PERSON|RAIL|ffy deposits are carefully according to | +84685|855762|18280|4|1|1717.72|0.04|0.08|N|O|1998-08-23|1998-07-26|1998-09-20|NONE|FOB|ial accoun| +84685|778381|3412|5|15|21890.25|0.05|0.04|N|O|1998-06-12|1998-07-28|1998-06-21|DELIVER IN PERSON|REG AIR|nding requests. even, even theodolites| +84685|247592|10097|6|14|21554.12|0.09|0.06|N|O|1998-06-13|1998-06-05|1998-06-20|DELIVER IN PERSON|AIR|y unusual foxes. packag| +84686|401949|14458|1|31|57378.52|0.07|0.07|N|O|1997-04-24|1997-03-20|1997-05-20|COLLECT COD|SHIP|r accounts print f| +84686|548842|11353|2|3|5672.46|0.08|0.01|N|O|1997-03-07|1997-03-02|1997-04-03|NONE|SHIP| slyly unusual waters.| +84686|372383|34891|3|44|64036.28|0.00|0.06|N|O|1997-03-28|1997-02-26|1997-04-21|NONE|RAIL|ffily unusual deposits cajole furious| +84686|640237|27774|4|13|15303.60|0.04|0.02|N|O|1997-05-03|1997-03-08|1997-05-31|NONE|TRUCK|egular theodolites n| +84686|452704|27723|5|6|9940.08|0.02|0.02|N|O|1997-04-11|1997-03-10|1997-04-18|TAKE BACK RETURN|FOB|l, final foxes cajole carefully fluffily| +84686|588428|940|6|30|45492.00|0.03|0.03|N|O|1997-02-28|1997-02-14|1997-03-29|COLLECT COD|SHIP|ithely special foxes cajole c| +84687|183523|8530|1|2|3213.04|0.09|0.04|N|O|1995-11-21|1995-09-29|1995-11-30|TAKE BACK RETURN|MAIL| detect carefully above | +84712|141365|41366|1|23|32346.28|0.08|0.06|R|F|1994-05-18|1994-05-05|1994-06-13|NONE|AIR|t the furiously regu| +84713|197196|34706|1|33|42675.27|0.03|0.04|A|F|1993-07-12|1993-05-28|1993-08-09|NONE|SHIP|final foxes cajole carefully af| +84713|270729|45740|2|47|79886.37|0.07|0.01|R|F|1993-05-09|1993-04-29|1993-05-21|DELIVER IN PERSON|MAIL|xes dazzle blithely regular, slow requests.| +84713|128629|16136|3|19|31494.78|0.04|0.06|R|F|1993-04-02|1993-05-22|1993-04-28|NONE|MAIL|n requests. ironic pac| +84714|876764|39282|1|28|48740.16|0.04|0.05|N|O|1995-07-19|1995-05-08|1995-07-20|NONE|SHIP| gifts. bold theodolites sleep carefully r| +84714|759993|9994|2|16|32847.36|0.00|0.03|N|O|1995-07-02|1995-06-06|1995-07-12|DELIVER IN PERSON|FOB|ns. carefully enticing theo| +84714|191016|3520|3|35|38745.35|0.02|0.03|N|O|1995-07-15|1995-05-09|1995-08-04|DELIVER IN PERSON|MAIL|ests along the un| +84714|402545|15054|4|31|44873.12|0.03|0.04|A|F|1995-05-08|1995-05-24|1995-06-04|DELIVER IN PERSON|AIR|ss accounts| +84715|114959|39964|1|11|21713.45|0.05|0.03|N|O|1998-08-07|1998-05-17|1998-08-14|NONE|RAIL| ironic asymptotes. final| +84715|110853|48360|2|1|1863.85|0.06|0.00|N|O|1998-05-03|1998-05-29|1998-05-06|NONE|TRUCK|ke boldly. regu| +84715|100684|38191|3|41|69071.88|0.09|0.00|N|O|1998-05-18|1998-06-28|1998-06-12|DELIVER IN PERSON|MAIL|bold ideas.| +84715|186139|11146|4|27|33078.51|0.01|0.02|N|O|1998-06-01|1998-06-21|1998-06-21|TAKE BACK RETURN|TRUCK| foxes. regular pinto| +84715|428097|40606|5|17|17426.19|0.09|0.05|N|O|1998-04-14|1998-05-18|1998-05-12|NONE|RAIL| are blithely r| +84715|9642|22143|6|44|68272.16|0.09|0.05|N|O|1998-07-24|1998-05-22|1998-08-06|NONE|FOB|wind furiously across the carefully f| +84715|44209|6710|7|12|13838.40|0.06|0.06|N|O|1998-07-22|1998-06-22|1998-08-15|NONE|MAIL|deas. slyly regular requests integrate neve| +84716|12802|25303|1|16|27436.80|0.05|0.02|R|F|1992-12-25|1992-10-17|1993-01-19|DELIVER IN PERSON|REG AIR|ornis haggle quickly. | +84716|146727|21732|2|25|44343.00|0.02|0.03|A|F|1992-09-03|1992-10-28|1992-09-25|COLLECT COD|REG AIR|press platelets cajole sly| +84716|33763|21264|3|15|25451.40|0.01|0.03|R|F|1992-11-23|1992-11-02|1992-12-13|COLLECT COD|MAIL|posits. slyly| +84717|511800|24311|1|4|7247.12|0.04|0.01|N|O|1995-07-17|1995-09-02|1995-08-16|DELIVER IN PERSON|REG AIR| foxes. ironic, even dependencies affix c| +84717|810552|48101|2|32|46800.32|0.03|0.08|N|O|1995-07-10|1995-08-30|1995-07-13|DELIVER IN PERSON|REG AIR|p blithely. final requests boost. sly| +84717|931224|18779|3|35|43931.30|0.07|0.08|N|O|1995-07-10|1995-08-06|1995-07-28|NONE|MAIL|t the special, ironic requests | +84718|592386|29920|1|8|11826.88|0.09|0.06|R|F|1995-01-09|1994-12-29|1995-01-23|COLLECT COD|FOB|. unusual accounts wake quickly | +84718|224680|24681|2|40|64186.80|0.03|0.07|R|F|1994-12-31|1995-01-15|1995-01-11|TAKE BACK RETURN|SHIP| excuses run furiously regular, express in| +84718|191080|3584|3|38|44501.04|0.00|0.03|R|F|1995-02-21|1995-01-12|1995-02-23|COLLECT COD|MAIL|fluffily reg| +84718|474147|49166|4|12|13453.44|0.00|0.01|A|F|1995-01-06|1994-12-30|1995-01-30|COLLECT COD|MAIL|ct quickly acr| +84718|977283|2322|5|21|28565.04|0.05|0.05|A|F|1994-12-28|1995-02-06|1994-12-31|TAKE BACK RETURN|MAIL|ogged asymptotes. ironically bo| +84718|187524|37525|6|45|72518.40|0.08|0.00|A|F|1995-01-15|1995-01-03|1995-01-25|TAKE BACK RETURN|SHIP|e ironic account| +84719|670640|8180|1|44|70866.84|0.08|0.06|N|O|1998-08-10|1998-10-01|1998-08-12|TAKE BACK RETURN|AIR|onic, regular foxes. flu| +84719|440564|40565|2|1|1504.54|0.07|0.05|N|O|1998-10-29|1998-08-31|1998-11-13|DELIVER IN PERSON|AIR|ing theodolites n| +84719|543625|43626|3|24|40046.40|0.03|0.05|N|O|1998-07-22|1998-10-02|1998-08-03|COLLECT COD|AIR|uffily ironic excuses. fluffily even dugo| +84719|700902|38445|4|23|43766.01|0.09|0.05|N|O|1998-09-07|1998-08-14|1998-10-05|DELIVER IN PERSON|REG AIR|slyly regular theodolites cajole s| +84744|541298|28829|1|16|21428.32|0.02|0.05|N|O|1995-12-23|1996-01-25|1996-01-09|DELIVER IN PERSON|AIR|sits across the fl| +84744|583847|46359|2|24|46339.68|0.02|0.03|N|O|1996-01-21|1996-02-22|1996-02-17|NONE|AIR|ously special instructions nag s| +84744|716280|16281|3|24|31110.00|0.10|0.02|N|O|1996-03-01|1996-01-23|1996-03-25|COLLECT COD|FOB|he quickly final pac| +84744|513424|13425|4|42|60370.80|0.02|0.07|N|O|1996-03-21|1996-03-02|1996-03-24|TAKE BACK RETURN|MAIL|aggle slyly according to the | +84744|104795|29800|5|9|16198.11|0.03|0.08|N|O|1996-01-07|1996-01-30|1996-01-10|COLLECT COD|AIR| detect ca| +84744|284316|34317|6|42|54612.60|0.10|0.06|N|O|1996-03-18|1996-01-04|1996-04-12|TAKE BACK RETURN|MAIL|fully bold packages slee| +84745|549532|37063|1|18|28467.18|0.01|0.00|R|F|1994-04-26|1994-04-23|1994-05-02|TAKE BACK RETURN|REG AIR|atelets lose furiously| +84746|734471|22014|1|21|31614.24|0.10|0.07|N|O|1995-06-27|1995-05-10|1995-07-08|NONE|SHIP|al forges detect furiously carefully final | +84747|259439|21945|1|17|23773.14|0.04|0.07|R|F|1994-07-25|1994-09-02|1994-08-08|NONE|MAIL|thely. fluffily bold pinto beans sleep car| +84748|442771|30296|1|9|15423.75|0.03|0.00|N|O|1997-12-18|1998-02-28|1998-01-10|DELIVER IN PERSON|RAIL|slyly. quickly e| +84748|642142|17167|2|23|24934.53|0.07|0.05|N|O|1998-01-10|1998-01-17|1998-02-06|TAKE BACK RETURN|AIR|c requests-- even deposits about | +84748|466569|29079|3|7|10748.78|0.07|0.04|N|O|1998-03-21|1998-02-22|1998-04-17|COLLECT COD|RAIL|nt deposits cajole quickly final request| +84748|620819|45844|4|47|81769.66|0.00|0.06|N|O|1998-04-09|1998-02-10|1998-04-26|TAKE BACK RETURN|SHIP|e instructions. fluffily bold accounts| +84749|238404|909|1|23|30874.97|0.02|0.02|A|F|1992-09-19|1992-09-15|1992-10-13|COLLECT COD|REG AIR|ajole along the regular acco| +84749|852856|40408|2|19|34367.39|0.09|0.06|R|F|1992-09-26|1992-08-29|1992-09-29|DELIVER IN PERSON|AIR|fily alongside | +84749|939888|14925|3|24|46268.16|0.07|0.05|A|F|1992-09-07|1992-09-18|1992-09-12|TAKE BACK RETURN|MAIL| deposits use furiously among| +84749|696669|21696|4|48|79950.24|0.04|0.08|A|F|1992-09-21|1992-08-24|1992-10-17|TAKE BACK RETURN|REG AIR|o beans sleep daringly | +84749|914523|39560|5|26|39974.48|0.05|0.02|R|F|1992-07-09|1992-08-26|1992-07-10|NONE|MAIL|quickly. furiousl| +84749|374864|12386|6|15|29082.75|0.10|0.01|R|F|1992-07-14|1992-08-23|1992-08-02|TAKE BACK RETURN|TRUCK|ns are fluffily along| +84750|528859|3880|1|27|50971.41|0.01|0.06|N|O|1997-11-06|1997-12-17|1997-12-04|TAKE BACK RETURN|TRUCK|hely regular theodolites are | +84750|520949|45970|2|3|5909.76|0.06|0.00|N|O|1997-12-05|1997-12-11|1997-12-19|COLLECT COD|REG AIR|counts. always ironic deposits sleep agains| +84751|170147|7657|1|2|2434.28|0.03|0.05|A|F|1994-04-12|1994-03-20|1994-04-23|COLLECT COD|REG AIR|posits haggle fluffily bold, re| +84751|660504|23018|2|45|65901.15|0.00|0.00|A|F|1994-02-11|1994-03-15|1994-02-18|NONE|RAIL| sleep slyly carefully unusual ideas. iro| +84776|772204|9750|1|49|62532.33|0.09|0.02|N|O|1997-11-05|1997-09-14|1997-11-16|DELIVER IN PERSON|AIR|ts. fluffy requ| +84776|418775|43792|2|32|54200.00|0.03|0.02|N|O|1997-11-10|1997-09-07|1997-11-30|TAKE BACK RETURN|FOB|l pinto beans. quickly final pat| +84776|337445|12458|3|33|48920.19|0.08|0.07|N|O|1997-11-19|1997-11-01|1997-11-24|COLLECT COD|AIR| final deposits. pending, silent fox| +84776|437652|25177|4|42|66764.46|0.08|0.07|N|O|1997-09-11|1997-10-24|1997-10-11|COLLECT COD|RAIL|r excuses. ironic courts across the f| +84777|311044|48563|1|24|25320.72|0.07|0.03|A|F|1993-08-25|1993-07-24|1993-09-17|NONE|AIR|usly quick pinto beans. accounts use. din| +84777|704100|16615|2|2|2208.14|0.05|0.05|R|F|1993-09-05|1993-08-10|1993-09-26|TAKE BACK RETURN|AIR|special packages? slyly bold r| +84777|797126|22157|3|2|2446.18|0.01|0.08|A|F|1993-07-16|1993-08-19|1993-08-07|DELIVER IN PERSON|SHIP|ual excuses haggle.| +84777|295887|20898|4|29|54603.23|0.04|0.01|R|F|1993-09-26|1993-08-28|1993-10-16|TAKE BACK RETURN|SHIP| are quickly even reques| +84777|970330|20331|5|41|57411.89|0.10|0.08|A|F|1993-09-11|1993-08-11|1993-09-30|COLLECT COD|SHIP|y even accounts| +84777|321815|21816|6|33|60614.40|0.01|0.06|R|F|1993-10-03|1993-08-11|1993-10-04|NONE|AIR|egular inst| +84778|806817|6818|1|15|25856.55|0.05|0.00|N|O|1995-12-11|1996-01-23|1996-01-08|DELIVER IN PERSON|RAIL|press theodolites haggle fi| +84778|158343|33350|2|26|36434.84|0.09|0.07|N|O|1996-03-02|1995-12-22|1996-03-19|COLLECT COD|RAIL|c dependencies cajo| +84779|941855|41856|1|11|20864.91|0.02|0.00|R|F|1994-01-25|1994-03-04|1994-02-20|NONE|SHIP|among the busily special frays | +84779|745142|7657|2|20|23742.20|0.02|0.01|R|F|1994-04-04|1994-04-07|1994-04-24|DELIVER IN PERSON|SHIP|ets. quickly final instructions sleep ex| +84779|584817|34818|3|7|13312.53|0.09|0.05|A|F|1994-02-06|1994-03-27|1994-03-02|NONE|RAIL| blithely blithe ac| +84779|13739|1240|4|27|44623.71|0.03|0.05|A|F|1994-02-24|1994-03-10|1994-03-13|DELIVER IN PERSON|REG AIR|un quickly fluffy realms. special pains| +84779|909622|9623|5|46|75052.68|0.07|0.07|R|F|1994-02-03|1994-02-27|1994-03-01|COLLECT COD|REG AIR| packages play blithel| +84779|4417|41918|6|34|44927.94|0.02|0.06|R|F|1994-02-26|1994-02-15|1994-03-23|DELIVER IN PERSON|TRUCK|gular deposits haggle caref| +84780|259377|9378|1|42|56127.12|0.08|0.03|A|F|1994-07-31|1994-09-02|1994-08-30|COLLECT COD|AIR|egular, final depende| +84780|342040|4547|2|50|54101.50|0.02|0.02|R|F|1994-08-03|1994-09-12|1994-08-28|TAKE BACK RETURN|RAIL|regular, bold pinto| +84780|657221|44761|3|29|34167.51|0.04|0.08|R|F|1994-07-26|1994-08-06|1994-08-15|NONE|SHIP|es are carefully. slyly unusual package| +84780|897202|34754|4|45|53962.20|0.10|0.02|A|F|1994-07-25|1994-08-27|1994-08-11|DELIVER IN PERSON|REG AIR|intain carefully at the ironic accoun| +84781|3373|3374|1|34|43396.58|0.01|0.08|N|O|1997-09-14|1997-10-01|1997-10-14|NONE|RAIL|es haggle brave| +84782|701676|39219|1|40|67105.60|0.08|0.03|R|F|1994-03-13|1994-01-08|1994-03-20|NONE|RAIL|s about the even, special acco| +84782|64318|26820|2|3|3846.93|0.00|0.02|A|F|1994-01-01|1994-01-18|1994-01-29|TAKE BACK RETURN|FOB| final instructi| +84782|985229|10268|3|29|38111.22|0.07|0.04|R|F|1994-01-11|1994-02-03|1994-01-17|TAKE BACK RETURN|MAIL|l foxes. slyly express instructions use fu| +84782|734646|34647|4|9|15125.49|0.08|0.03|R|F|1994-02-04|1994-02-05|1994-02-26|DELIVER IN PERSON|RAIL|ously! slyly regular deposits at the| +84782|191211|16218|5|29|37764.09|0.08|0.03|A|F|1994-02-06|1994-01-01|1994-02-09|DELIVER IN PERSON|SHIP|es affix quic| +84782|675587|25588|6|1|1562.55|0.06|0.06|A|F|1994-02-20|1994-02-06|1994-03-09|NONE|RAIL|ly even theodolites| +84783|630578|43091|1|6|9051.24|0.04|0.03|N|O|1998-06-09|1998-06-29|1998-06-23|NONE|TRUCK|express package| +84783|108057|45564|2|2|2130.10|0.08|0.04|N|O|1998-06-14|1998-07-21|1998-07-14|NONE|AIR|ccounts cajole among the furious| +84783|103016|3017|3|26|26494.26|0.09|0.07|N|O|1998-05-04|1998-07-06|1998-06-03|TAKE BACK RETURN|AIR|oss the pending ideas wake slyly furiou| +84783|375290|25291|4|15|20479.20|0.07|0.01|N|O|1998-05-05|1998-05-31|1998-05-20|COLLECT COD|REG AIR|regularly ironic pla| +84783|488497|1007|5|23|34165.81|0.05|0.04|N|O|1998-07-05|1998-06-23|1998-07-09|NONE|FOB|l instructions around the flu| +84808|121575|46580|1|46|73442.22|0.02|0.05|R|F|1994-04-30|1994-02-19|1994-05-17|TAKE BACK RETURN|AIR|s. ironic requests ar| +84809|538816|38817|1|38|70482.02|0.02|0.07|N|O|1997-11-10|1997-12-15|1997-11-27|COLLECT COD|REG AIR|c accounts. express pinto beans | +84809|869378|19379|2|25|33683.25|0.04|0.08|N|O|1997-10-06|1997-11-01|1997-10-19|NONE|FOB|ar, ironic id| +84809|620855|45880|3|13|23085.66|0.02|0.03|N|O|1997-09-28|1997-11-18|1997-10-15|NONE|RAIL|uickly furiously express | +84809|702177|14692|4|27|31836.78|0.01|0.03|N|O|1997-12-18|1997-12-06|1997-12-21|COLLECT COD|AIR|. slyly even asymptote| +84810|215555|3068|1|14|20587.56|0.10|0.01|N|O|1996-09-06|1996-11-08|1996-09-08|COLLECT COD|RAIL|ep. ironic packages nag fluffily. sly| +84810|831136|31137|2|6|6402.54|0.03|0.05|N|O|1996-11-23|1996-10-14|1996-12-17|COLLECT COD|SHIP| regular instru| +84811|731080|31081|1|47|52219.35|0.08|0.07|A|F|1992-03-27|1992-04-18|1992-04-22|TAKE BACK RETURN|RAIL|deposits. furiously iron| +84812|190438|40439|1|7|10699.01|0.10|0.02|N|O|1998-02-20|1998-02-28|1998-03-18|DELIVER IN PERSON|MAIL|r pinto beans detect deposits. slyly| +84812|687555|69|2|18|27765.36|0.06|0.08|N|O|1998-04-20|1998-04-06|1998-04-29|TAKE BACK RETURN|MAIL|l requests doubt regula| +84812|730766|43281|3|18|32341.14|0.04|0.05|N|O|1998-05-14|1998-03-02|1998-06-03|NONE|FOB|quests. fluf| +84812|975078|12636|4|3|3459.09|0.10|0.01|N|O|1998-03-09|1998-03-03|1998-03-18|COLLECT COD|MAIL| the dolphi| +84813|912908|25427|1|29|55704.94|0.01|0.08|N|O|1995-08-04|1995-08-15|1995-08-13|TAKE BACK RETURN|FOB|al pinto be| +84814|154383|4384|1|13|18685.94|0.10|0.04|R|F|1992-09-12|1992-06-22|1992-10-11|NONE|MAIL|ing to the slyly special excuses. bli| +84815|328840|41347|1|32|59802.56|0.00|0.06|N|O|1998-08-06|1998-08-12|1998-08-27|TAKE BACK RETURN|MAIL|nal accounts. deposits around| +84815|811419|23936|2|41|54545.17|0.05|0.06|N|O|1998-08-18|1998-09-05|1998-08-30|DELIVER IN PERSON|MAIL|uests. slyly even foxes boost re| +84815|515225|27736|3|33|40926.60|0.01|0.01|N|O|1998-09-01|1998-07-24|1998-09-06|NONE|RAIL|the pending, regular foxes. slyly regula| +84815|382952|20474|4|22|44768.68|0.08|0.05|N|O|1998-08-19|1998-07-28|1998-08-25|TAKE BACK RETURN|REG AIR|slyly regular | +84840|774394|24395|1|24|35240.64|0.04|0.05|R|F|1993-11-17|1993-11-29|1993-12-15|COLLECT COD|RAIL|r accounts play slyly slyly regular r| +84840|232497|45002|2|19|27160.12|0.09|0.00|A|F|1994-01-27|1993-11-27|1994-02-25|COLLECT COD|MAIL|efully final pinto beans integrat| +84840|574540|37052|3|45|72653.40|0.05|0.03|A|F|1993-11-02|1993-11-24|1993-11-15|COLLECT COD|REG AIR|s sleep. special pinto beans dete| +84840|285825|23341|4|22|39837.82|0.04|0.00|A|F|1993-10-31|1993-10-31|1993-11-28|TAKE BACK RETURN|SHIP|ts are furiously carefu| +84841|59061|34064|1|47|47942.82|0.04|0.06|A|F|1992-09-24|1992-09-29|1992-10-12|COLLECT COD|AIR|ronic requests wake fluffily about t| +84841|632493|20030|2|26|37061.96|0.01|0.02|R|F|1992-12-01|1992-10-11|1992-12-08|DELIVER IN PERSON|MAIL|the bold do| +84841|306679|19186|3|30|50569.80|0.05|0.02|A|F|1992-08-27|1992-11-01|1992-09-23|NONE|FOB|sual asymptotes. slyly pending instructions| +84841|347971|47972|4|46|92872.16|0.09|0.08|R|F|1992-11-23|1992-11-10|1992-11-29|NONE|TRUCK|s epitaphs can are furiously even, bold| +84841|343439|43440|5|49|72638.58|0.04|0.08|R|F|1992-10-29|1992-10-12|1992-11-13|DELIVER IN PERSON|RAIL|hes. platelets e| +84841|169246|44253|6|47|61816.28|0.00|0.06|A|F|1992-08-31|1992-10-26|1992-09-15|DELIVER IN PERSON|FOB| carefully regular pinto beans ha| +84842|307748|45267|1|37|64962.01|0.09|0.05|N|O|1996-06-27|1996-08-13|1996-07-17|NONE|FOB|arefully blithely regular packages. iron| +84842|318035|18036|2|13|13689.26|0.08|0.02|N|O|1996-10-18|1996-09-15|1996-11-02|COLLECT COD|REG AIR|to the carefully unusual instruction| +84842|206492|18997|3|11|15383.28|0.03|0.02|N|O|1996-07-31|1996-09-13|1996-08-21|NONE|RAIL|aggle at the expre| +84842|504695|4696|4|4|6798.68|0.01|0.08|N|O|1996-08-21|1996-08-31|1996-09-12|TAKE BACK RETURN|MAIL| special a| +84842|408277|45802|5|2|2370.50|0.06|0.02|N|O|1996-10-14|1996-08-09|1996-10-19|COLLECT COD|AIR|c, special requests. carefully p| +84843|973425|23426|1|44|65928.72|0.08|0.07|R|F|1993-06-07|1993-06-04|1993-06-11|DELIVER IN PERSON|SHIP|gly expres| +84844|197752|47753|1|27|49943.25|0.02|0.03|N|O|1996-12-15|1997-02-16|1996-12-28|NONE|FOB|y pending | +84844|612792|12793|2|43|73304.68|0.03|0.06|N|O|1996-12-12|1997-02-26|1996-12-18|NONE|FOB|he regular deposit| +84844|182513|20023|3|6|9573.06|0.04|0.08|N|O|1997-03-30|1997-01-26|1997-04-11|TAKE BACK RETURN|TRUCK|y alongside of the furiously silent | +84844|481584|31585|4|49|76712.44|0.06|0.08|N|O|1997-03-14|1997-01-30|1997-04-09|NONE|SHIP|elets nag c| +84844|977439|27440|5|37|56106.43|0.06|0.05|N|O|1997-01-27|1997-02-11|1997-02-11|DELIVER IN PERSON|AIR|et realms. regular deposits across the| +84844|806125|18642|6|32|32994.56|0.06|0.03|N|O|1997-01-16|1997-03-05|1997-02-12|NONE|FOB|aggle blithely across the s| +84844|539620|2131|7|30|49788.00|0.00|0.01|N|O|1996-12-12|1997-02-09|1997-01-09|DELIVER IN PERSON|TRUCK|regular packages. instructi| +84845|388577|1085|1|14|23317.84|0.05|0.03|R|F|1993-07-24|1993-06-07|1993-08-07|TAKE BACK RETURN|TRUCK|s cajole requests. even pinto | +84845|812253|24770|2|31|36121.51|0.03|0.06|R|F|1993-07-31|1993-06-27|1993-08-28|NONE|TRUCK| blithely daring accounts. s| +84846|633272|45785|1|44|53030.56|0.04|0.04|N|O|1996-10-02|1996-12-16|1996-10-07|TAKE BACK RETURN|MAIL| hinder ironic requests. slyly regular ac| +84846|393449|5957|2|40|61697.20|0.09|0.07|N|O|1996-12-08|1996-10-29|1997-01-04|NONE|AIR|l accounts. even, specia| +84846|681961|19501|3|7|13600.51|0.04|0.00|N|O|1996-11-24|1996-10-27|1996-11-30|DELIVER IN PERSON|MAIL|luffily. bravely fina| +84847|408503|46028|1|44|62105.12|0.10|0.01|N|O|1997-05-11|1997-06-17|1997-05-21|TAKE BACK RETURN|FOB|nding ideas: carefully furious | +84847|696427|46428|2|25|35584.75|0.00|0.03|N|O|1997-04-26|1997-07-08|1997-05-20|TAKE BACK RETURN|RAIL|ar requests sleep. pending realms are bl| +84847|838158|25707|3|29|31787.19|0.10|0.06|N|O|1997-06-17|1997-07-03|1997-06-27|DELIVER IN PERSON|TRUCK|furiously ironic deposits | +84847|917909|42946|4|26|50098.36|0.09|0.01|N|O|1997-07-20|1997-05-19|1997-08-17|TAKE BACK RETURN|MAIL|vely ironic requests. flu| +84847|296282|46283|5|48|61356.96|0.07|0.07|N|O|1997-07-15|1997-06-02|1997-07-23|TAKE BACK RETURN|SHIP|affix after | +84847|607646|45183|6|2|3107.22|0.07|0.00|N|O|1997-04-26|1997-05-10|1997-05-16|COLLECT COD|RAIL|lar instruc| +84872|689932|2446|1|4|7687.60|0.10|0.05|N|O|1995-11-05|1995-11-11|1995-11-16|NONE|TRUCK|carefully pending in| +84872|682847|32848|2|47|86001.07|0.04|0.06|N|O|1995-12-13|1995-10-20|1996-01-11|TAKE BACK RETURN|REG AIR|ix quickly boldly regular| +84872|602142|14655|3|15|15661.65|0.10|0.08|N|O|1995-11-08|1995-10-15|1995-11-24|NONE|SHIP|ptotes use fluffily-| +84872|194989|32499|4|48|100031.04|0.04|0.00|N|O|1995-11-15|1995-10-25|1995-12-02|DELIVER IN PERSON|TRUCK|ruthlessly across the final depende| +84872|179694|42198|5|48|85137.12|0.08|0.03|N|O|1995-11-12|1995-10-06|1995-12-06|TAKE BACK RETURN|REG AIR|lly around the carefully even r| +84873|775150|25151|1|17|20827.04|0.06|0.03|A|F|1993-06-30|1993-07-10|1993-07-29|NONE|REG AIR|ies. theodolites nod fluffily. special | +84873|932214|32215|2|15|18692.55|0.01|0.08|A|F|1993-09-06|1993-07-11|1993-09-22|DELIVER IN PERSON|SHIP|s mold slyly pending requests. sl| +84873|707218|7219|3|44|53907.92|0.04|0.07|A|F|1993-06-07|1993-07-23|1993-06-09|COLLECT COD|REG AIR|against the| +84874|558034|45568|1|18|19656.18|0.09|0.00|R|F|1993-10-11|1993-11-27|1993-10-16|NONE|AIR|ajole. theodolites haggle carefu| +84874|867855|42890|2|47|85672.07|0.10|0.08|R|F|1993-10-14|1994-01-02|1993-11-03|DELIVER IN PERSON|FOB|ns sleep slyly. carefully regular acc| +84874|36391|11392|3|40|53095.60|0.03|0.04|R|F|1993-11-12|1993-11-27|1993-11-30|DELIVER IN PERSON|FOB|s nag furiously bold theod| +84874|620435|32948|4|50|67770.00|0.04|0.07|A|F|1993-10-23|1993-11-29|1993-11-13|DELIVER IN PERSON|REG AIR|final pearls serve sometim| +84874|645046|7559|5|22|21802.22|0.06|0.01|A|F|1993-10-23|1993-12-29|1993-11-16|NONE|MAIL|ronic instructions are. carefully expr| +84874|286122|23638|6|36|39891.96|0.03|0.05|A|F|1994-01-20|1993-11-24|1994-02-02|TAKE BACK RETURN|TRUCK|s sleep furiously. unusual theodol| +84874|850294|25329|7|16|19908.00|0.02|0.02|A|F|1993-10-22|1993-11-14|1993-11-11|TAKE BACK RETURN|RAIL| somas after the final| +84875|883775|8810|1|28|49244.44|0.02|0.06|R|F|1995-04-12|1995-02-27|1995-05-01|TAKE BACK RETURN|SHIP|ffix. furiously even accounts boo| +84875|604374|29399|2|25|31958.50|0.08|0.02|R|F|1995-02-25|1995-03-20|1995-03-09|COLLECT COD|TRUCK|ns mold qui| +84875|705314|42857|3|37|48813.36|0.07|0.01|R|F|1995-03-23|1995-03-19|1995-04-08|NONE|TRUCK|deposits about the carefully final package| +84875|200698|13203|4|24|38368.32|0.04|0.00|A|F|1995-01-20|1995-03-22|1995-02-17|TAKE BACK RETURN|FOB|fily between the fluff| +84875|124172|36675|5|1|1196.17|0.10|0.06|R|F|1995-03-15|1995-02-27|1995-03-18|TAKE BACK RETURN|AIR|sual dependencies. dino| +84876|366916|4438|1|18|35692.20|0.01|0.08|A|F|1993-10-12|1993-11-08|1993-10-14|COLLECT COD|SHIP|eposits use bli| +84876|755390|5391|2|25|36134.00|0.05|0.04|R|F|1993-10-29|1993-11-21|1993-11-16|TAKE BACK RETURN|REG AIR|ly slyly even accounts. carefu| +84876|837108|37109|3|43|44937.58|0.08|0.06|A|F|1993-11-20|1993-10-11|1993-12-04|NONE|SHIP|nts cajole slyl| +84876|262834|37845|4|10|17968.20|0.07|0.00|R|F|1993-11-03|1993-10-25|1993-11-09|NONE|SHIP|nag against the furiously regular asympt| +84876|434588|9605|5|32|48721.92|0.07|0.01|R|F|1993-09-29|1993-11-26|1993-10-25|DELIVER IN PERSON|MAIL|ng to the fluffily regular | +84876|119599|32102|6|18|29134.62|0.04|0.02|A|F|1993-12-20|1993-12-08|1994-01-02|NONE|TRUCK|ect. deposits boost. unusual| +84877|381252|6267|1|30|39997.20|0.04|0.00|N|O|1995-12-20|1996-01-12|1996-01-05|NONE|FOB|uests wake against the furiously | +84877|697165|22192|2|39|45323.07|0.01|0.04|N|O|1996-01-28|1995-12-08|1996-02-13|NONE|SHIP|ackages use quietly. bol| +84877|239878|2383|3|25|45446.50|0.10|0.02|N|O|1995-12-02|1995-12-03|1995-12-08|DELIVER IN PERSON|AIR|iously final requests boost caref| +84878|949302|11821|1|25|33781.50|0.05|0.04|A|F|1992-10-13|1992-10-03|1992-10-24|TAKE BACK RETURN|MAIL|ns against the slyly bold frays boost| +84878|911013|36050|2|6|6143.82|0.09|0.06|A|F|1992-09-15|1992-10-13|1992-09-21|COLLECT COD|TRUCK| the packages. slyly regular requests boost| +84878|384545|47053|3|40|65181.20|0.06|0.05|R|F|1992-10-17|1992-10-17|1992-11-13|DELIVER IN PERSON|FOB|grate furiously outside the regular request| +84879|279357|4368|1|31|41426.54|0.05|0.00|R|F|1992-12-19|1992-10-28|1992-12-23|NONE|REG AIR|otes sleep slyly furiously bold idea| +84879|140560|28067|2|45|72025.20|0.04|0.00|R|F|1992-11-25|1992-11-13|1992-12-14|DELIVER IN PERSON|SHIP| across the carefully final| +84904|235502|23015|1|5|7187.45|0.06|0.08|A|F|1993-01-17|1992-11-28|1993-02-10|TAKE BACK RETURN|SHIP|lly final pinto bea| +84904|65383|40386|2|42|56631.96|0.08|0.07|R|F|1992-11-07|1992-12-26|1992-12-02|NONE|SHIP|fter the slyly regular r| +84904|883807|8842|3|17|30442.92|0.09|0.04|A|F|1993-01-09|1992-11-05|1993-01-28|NONE|FOB|use slyly above the regu| +84904|131543|31544|4|12|18894.48|0.09|0.05|A|F|1992-11-21|1992-11-23|1992-11-26|COLLECT COD|REG AIR|ng excuses are bl| +84905|93424|18427|1|9|12756.78|0.03|0.06|N|O|1996-12-17|1996-10-08|1996-12-21|NONE|SHIP|t. special pinto beans are quickly a| +84905|169465|6975|2|16|24551.36|0.07|0.08|N|O|1996-10-02|1996-11-01|1996-10-07|NONE|FOB|lent, ironic instructions wak| +84905|198175|23182|3|19|24190.23|0.00|0.02|N|O|1996-12-09|1996-10-12|1996-12-18|DELIVER IN PERSON|AIR|es thrash slyly above the ironic theodo| +84905|724989|24990|4|43|86599.85|0.10|0.03|N|O|1996-09-15|1996-11-13|1996-10-10|COLLECT COD|TRUCK|the even, special fo| +84905|884412|9447|5|27|37701.99|0.01|0.08|N|O|1997-01-01|1996-11-22|1997-01-06|COLLECT COD|TRUCK|ross the even, dari| +84905|306918|31931|6|37|71221.30|0.08|0.06|N|O|1996-11-27|1996-10-09|1996-12-08|DELIVER IN PERSON|TRUCK|posits haggle b| +84906|967589|17590|1|49|81170.46|0.00|0.01|A|F|1994-12-08|1995-02-17|1994-12-22|NONE|RAIL|yers against the slyly regular platelets wa| +84906|262277|12278|2|22|27263.72|0.04|0.06|A|F|1995-03-06|1995-01-21|1995-03-23|COLLECT COD|RAIL|xes play carefully across th| +84906|89473|1975|3|33|48261.51|0.03|0.06|R|F|1994-12-13|1995-02-19|1994-12-24|DELIVER IN PERSON|FOB|thely ironic requests are quickly carefu| +84906|765978|41009|4|26|53142.44|0.06|0.05|A|F|1994-11-30|1995-01-19|1994-12-21|DELIVER IN PERSON|FOB|pendencies believ| +84906|785500|35501|5|8|12683.76|0.09|0.04|A|F|1994-12-30|1994-12-31|1995-01-05|DELIVER IN PERSON|RAIL|even instructions cajole. quickly | +84906|897978|10496|6|44|86940.92|0.06|0.08|R|F|1994-12-30|1995-01-13|1995-01-24|NONE|RAIL|eposits haggle| +84906|313497|38510|7|27|40782.96|0.08|0.04|A|F|1995-01-03|1995-02-19|1995-01-12|DELIVER IN PERSON|REG AIR|press foxes. unusual, even requests wa| +84907|928647|16202|1|23|38538.80|0.09|0.08|A|F|1993-01-28|1992-12-13|1993-02-13|COLLECT COD|SHIP|lyly final ex| +84907|758552|21068|2|48|77304.96|0.00|0.01|A|F|1993-01-10|1993-01-13|1993-01-20|COLLECT COD|TRUCK|carefully regular fo| +84907|969570|19571|3|45|73778.85|0.09|0.08|R|F|1993-02-23|1993-01-17|1993-03-07|COLLECT COD|REG AIR|y unusual accounts wake blithely| +84907|547372|34903|4|7|9935.45|0.01|0.05|A|F|1993-01-08|1993-01-23|1993-01-19|TAKE BACK RETURN|TRUCK|. blithely bold a| +84907|673254|48281|5|11|13499.42|0.05|0.01|R|F|1992-12-26|1993-02-01|1993-01-14|NONE|TRUCK|ly according to the carefully final| +84908|58193|45697|1|10|11511.90|0.04|0.05|N|O|1996-05-12|1996-07-04|1996-05-21|DELIVER IN PERSON|REG AIR|jole. express deposits along the in| +84908|33317|20818|2|21|26256.51|0.08|0.08|N|O|1996-06-30|1996-06-27|1996-07-05|NONE|MAIL|-- furiously r| +84908|952819|27858|3|5|9358.85|0.03|0.03|N|O|1996-04-20|1996-06-20|1996-05-07|COLLECT COD|FOB|ly express packages across t| +84908|25239|37740|4|26|30269.98|0.04|0.07|N|O|1996-04-27|1996-06-15|1996-05-09|DELIVER IN PERSON|FOB|ideas are special, unusua| +84908|184401|9408|5|47|69813.80|0.09|0.05|N|O|1996-04-28|1996-05-27|1996-05-09|COLLECT COD|REG AIR|refully regular theodolites cajole.| +84908|221620|34125|6|22|33915.42|0.00|0.08|N|O|1996-07-17|1996-06-10|1996-07-19|NONE|TRUCK|ep fluffil| +84908|765698|15699|7|31|54673.46|0.03|0.00|N|O|1996-06-26|1996-05-17|1996-07-06|COLLECT COD|MAIL|ake furiously regular deposi| +84909|80420|42922|1|24|33610.08|0.06|0.00|N|O|1996-04-01|1996-03-23|1996-04-28|COLLECT COD|MAIL| platelets. ironic acc| +84910|746173|33716|1|16|19506.24|0.02|0.00|R|F|1994-01-09|1994-01-08|1994-01-19|TAKE BACK RETURN|AIR|quickly slyly regular asymptotes. ent| +84910|925015|37534|2|35|36398.95|0.07|0.01|A|F|1993-12-04|1993-12-15|1993-12-09|DELIVER IN PERSON|REG AIR|slyly even deposits. quickly regul| +84910|715603|28118|3|9|14567.13|0.00|0.04|A|F|1993-10-18|1993-12-10|1993-10-22|DELIVER IN PERSON|TRUCK| theodolites are r| +84910|128741|3746|4|30|53092.20|0.06|0.04|R|F|1993-10-22|1993-11-26|1993-11-07|TAKE BACK RETURN|MAIL| express ac| +84910|740508|15537|5|9|13936.23|0.01|0.00|R|F|1993-10-19|1993-11-16|1993-10-27|TAKE BACK RETURN|REG AIR| final deposits| +84910|713147|690|6|35|40603.85|0.08|0.08|R|F|1993-12-21|1993-12-13|1993-12-30|COLLECT COD|AIR|thely even requests. regula| +84911|958260|33299|1|48|63274.56|0.05|0.04|N|O|1996-03-25|1996-05-12|1996-03-27|TAKE BACK RETURN|TRUCK|ular packages nod carefully stealthi| +84911|470291|45310|2|16|20180.32|0.05|0.04|N|O|1996-05-27|1996-05-05|1996-06-20|NONE|TRUCK|ackages wake c| +84911|165530|40537|3|15|23932.95|0.04|0.05|N|O|1996-06-29|1996-05-25|1996-07-29|DELIVER IN PERSON|RAIL|ly special inst| +84911|61739|36742|4|42|71430.66|0.02|0.02|N|O|1996-06-25|1996-04-19|1996-06-27|TAKE BACK RETURN|MAIL|ainst the carefully even pa| +84911|644721|7234|5|26|43307.94|0.06|0.08|N|O|1996-04-08|1996-04-21|1996-04-30|TAKE BACK RETURN|TRUCK|ly about the regular| +84936|72927|47930|1|18|34198.56|0.03|0.07|A|F|1993-10-12|1993-08-21|1993-11-01|DELIVER IN PERSON|REG AIR|y pending deposits| +84937|999158|11678|1|48|60341.28|0.00|0.04|N|O|1997-11-15|1997-09-14|1997-12-10|NONE|MAIL|eep quickly above the ironic packages. furi| +84937|848007|23040|2|20|19099.20|0.03|0.00|N|O|1997-09-25|1997-10-25|1997-09-26|NONE|MAIL|ously final accounts unwind after| +84937|452280|27299|3|10|12322.60|0.05|0.06|N|O|1997-10-23|1997-10-28|1997-10-30|NONE|TRUCK|e regular requ| +84937|454168|29187|4|46|51618.44|0.09|0.00|N|O|1997-09-15|1997-10-12|1997-09-29|COLLECT COD|FOB|ly express p| +84937|192201|4705|5|25|32330.00|0.04|0.06|N|O|1997-08-12|1997-10-29|1997-09-04|NONE|REG AIR|ronic packages eat carefully bol| +84937|306786|44305|6|18|32269.86|0.05|0.01|N|O|1997-09-05|1997-11-05|1997-10-04|NONE|RAIL|lent deposits haggle. instr| +84937|146119|46120|7|18|20971.98|0.09|0.05|N|O|1997-11-19|1997-10-07|1997-12-12|TAKE BACK RETURN|SHIP|ongside of the fluffily regular foxes. fl| +84938|807954|32987|1|30|55857.30|0.00|0.05|N|O|1995-09-25|1995-10-25|1995-10-05|COLLECT COD|AIR|ole furiously agains| +84938|270047|45058|2|38|38647.14|0.03|0.08|N|O|1995-08-29|1995-09-28|1995-09-16|DELIVER IN PERSON|AIR| gifts boost slyly above the express reque| +84938|670628|20629|3|47|75133.73|0.06|0.08|N|O|1995-12-12|1995-10-09|1995-12-30|NONE|RAIL| final, unusual pinto beans agains| +84939|154000|29007|1|47|49538.00|0.06|0.01|N|O|1996-06-26|1996-04-26|1996-07-17|COLLECT COD|SHIP|osits. ironic somas against | +84939|265739|28245|2|34|57960.48|0.07|0.05|N|O|1996-06-06|1996-06-12|1996-06-25|COLLECT COD|RAIL|hely ironic excuses | +84939|273903|48914|3|39|73198.71|0.06|0.02|N|O|1996-07-10|1996-04-24|1996-07-30|DELIVER IN PERSON|REG AIR|lyly thin ideas. blithely ironi| +84939|481990|19518|4|17|33523.49|0.04|0.05|N|O|1996-05-25|1996-05-21|1996-06-01|DELIVER IN PERSON|FOB| pinto beans wake ca| +84939|793275|5791|5|50|68412.00|0.01|0.07|N|O|1996-05-30|1996-05-13|1996-06-29|COLLECT COD|REG AIR|ackages cajole fluffily regular in| +84940|74117|36619|1|4|4364.44|0.09|0.06|N|O|1996-10-06|1996-09-04|1996-10-14|DELIVER IN PERSON|REG AIR| wake carefully. | +84940|676738|1765|2|40|68588.00|0.07|0.02|N|O|1996-09-17|1996-08-03|1996-10-02|NONE|SHIP| according t| +84940|930438|42957|3|46|67545.94|0.04|0.08|N|O|1996-10-02|1996-08-06|1996-10-29|NONE|TRUCK|o beans across the blithely unusual sentime| +84940|860591|10592|4|6|9309.30|0.09|0.06|N|O|1996-06-16|1996-09-10|1996-06-19|COLLECT COD|SHIP|ions sleep above the unusual ins| +84941|306018|6019|1|32|32768.00|0.09|0.05|N|O|1998-05-25|1998-03-15|1998-06-15|DELIVER IN PERSON|FOB|kly even deposi| +84941|242971|5476|2|19|36365.24|0.02|0.03|N|O|1998-02-09|1998-03-10|1998-02-14|COLLECT COD|RAIL|ing, regular theod| +84941|613549|26062|3|8|11700.08|0.05|0.08|N|O|1998-05-13|1998-03-06|1998-06-12|NONE|SHIP|unts haggle above the c| +84942|612608|145|1|28|42575.96|0.04|0.04|R|F|1995-02-25|1995-04-12|1995-03-03|TAKE BACK RETURN|TRUCK|l theodolites use furiously pending pac| +84942|101772|26777|2|13|23059.01|0.00|0.08|R|F|1995-04-18|1995-04-24|1995-05-09|COLLECT COD|RAIL|olites. carefully quick excuses| +84942|472811|22812|3|20|35675.80|0.02|0.00|R|F|1995-04-18|1995-04-12|1995-05-06|COLLECT COD|RAIL| ideas. furiously blithe pinto beans | +84942|520831|33342|4|36|66665.16|0.02|0.07|R|F|1995-01-26|1995-03-08|1995-01-29|COLLECT COD|FOB|gular deposits. blithely ironic idea| +84942|602795|15308|5|31|52630.56|0.03|0.08|R|F|1995-02-13|1995-04-05|1995-03-11|DELIVER IN PERSON|MAIL|oost. silent, regula| +84942|175354|361|6|39|55744.65|0.04|0.06|A|F|1995-04-25|1995-03-09|1995-05-03|NONE|SHIP|are bold, iro| +84943|357705|7706|1|31|54643.39|0.03|0.05|N|O|1996-02-09|1995-12-07|1996-02-17|NONE|RAIL| regular deposits. quic| +84943|943600|31155|2|38|62455.28|0.01|0.06|N|O|1995-10-14|1996-01-07|1995-10-16|DELIVER IN PERSON|RAIL|outs. foxes above the ironic dep| +84943|78170|28171|3|38|43630.46|0.09|0.04|N|O|1996-02-05|1995-12-30|1996-02-27|COLLECT COD|AIR|en instructions. regular | +84968|566149|16150|1|24|29162.88|0.07|0.02|A|F|1993-08-03|1993-07-24|1993-08-17|DELIVER IN PERSON|SHIP|lithely slow idea| +84968|257789|32800|2|14|24454.78|0.06|0.01|A|F|1993-06-29|1993-07-21|1993-07-25|TAKE BACK RETURN|MAIL|ly. fluffily bold instructions boost| +84969|187385|37386|1|14|20613.32|0.04|0.05|R|F|1993-11-15|1993-11-10|1993-12-04|DELIVER IN PERSON|FOB|ts. furiously final foxes are caref| +84969|374756|12278|2|11|20138.14|0.03|0.02|R|F|1993-12-05|1993-11-16|1993-12-27|DELIVER IN PERSON|TRUCK|ches? blithely | +84970|638204|25741|1|30|34265.10|0.01|0.04|N|O|1996-05-01|1996-06-21|1996-05-12|DELIVER IN PERSON|SHIP|lithely. slyly express dolphins against| +84970|279309|4320|2|34|43801.86|0.03|0.04|N|O|1996-05-05|1996-07-15|1996-06-04|TAKE BACK RETURN|SHIP| ironic depo| +84970|334155|34156|3|41|48754.74|0.09|0.05|N|O|1996-07-01|1996-06-30|1996-07-30|COLLECT COD|FOB|fully. multipliers breach about| +84970|129264|4269|4|42|54316.92|0.10|0.02|N|O|1996-07-30|1996-06-20|1996-08-02|NONE|FOB| final dependencies around the bold, reg| +84970|525537|25538|5|15|23437.65|0.10|0.00|N|O|1996-07-04|1996-07-05|1996-07-22|NONE|RAIL| quickly ir| +84971|603493|28518|1|20|27929.20|0.06|0.01|N|O|1996-01-14|1995-12-30|1996-02-09|NONE|SHIP|s the blithely final requests | +84971|899381|49382|2|22|30367.48|0.03|0.02|N|O|1996-02-22|1996-01-21|1996-02-27|DELIVER IN PERSON|TRUCK|finally about the furiously regular in| +84972|703391|15906|1|47|65534.92|0.02|0.06|R|F|1994-01-11|1993-11-04|1994-01-17|DELIVER IN PERSON|MAIL|usly permanent requests. | +84972|886872|36873|2|23|42753.09|0.03|0.06|R|F|1993-10-13|1993-12-20|1993-10-24|COLLECT COD|FOB| among the quickly regular accounts. fluff| +84972|642975|5488|3|43|82471.42|0.01|0.08|R|F|1993-10-16|1993-11-21|1993-10-25|NONE|RAIL|, sly pint| +84973|143897|31404|1|8|15527.12|0.08|0.08|N|O|1998-05-20|1998-07-04|1998-05-29|COLLECT COD|SHIP|according to t| +84973|465239|2767|2|43|51781.03|0.09|0.06|N|O|1998-05-31|1998-06-28|1998-06-05|NONE|FOB|onic courts. q| +84974|527048|39559|1|28|30100.56|0.09|0.05|R|F|1992-04-01|1992-03-22|1992-04-27|DELIVER IN PERSON|FOB| quickly qui| +84974|80528|30529|2|27|40730.04|0.05|0.04|A|F|1992-04-10|1992-02-08|1992-04-15|TAKE BACK RETURN|FOB|express requests. carefu| +84974|432820|20345|3|1|1752.80|0.01|0.06|R|F|1992-01-20|1992-02-25|1992-02-02|NONE|SHIP| alongside of the slyly final cou| +84974|394290|31812|4|28|38759.84|0.06|0.08|R|F|1992-03-11|1992-03-13|1992-03-19|TAKE BACK RETURN|TRUCK|ng the requests sleep about| +84975|593764|31298|1|38|70594.12|0.07|0.05|R|F|1992-11-13|1992-11-06|1992-12-11|COLLECT COD|FOB|. bold deposits dazzle. f| +85000|620043|20044|1|25|24075.25|0.08|0.01|R|F|1995-04-01|1995-06-08|1995-04-03|TAKE BACK RETURN|TRUCK|sits nag stealthily special deposits. | +85000|46580|21581|2|10|15265.80|0.01|0.07|A|F|1995-04-12|1995-04-28|1995-04-27|NONE|MAIL|aids sleep slyly blithely un| +85000|856174|43726|3|14|15821.82|0.08|0.08|A|F|1995-03-30|1995-05-21|1995-04-09|TAKE BACK RETURN|AIR|. slyly ironic pac| +85000|713914|26429|4|50|96394.00|0.04|0.02|N|O|1995-07-06|1995-06-04|1995-07-21|COLLECT COD|TRUCK| even excuses. carefully regular account| +85000|747000|9515|5|42|43972.74|0.04|0.06|N|O|1995-06-18|1995-05-13|1995-07-18|TAKE BACK RETURN|FOB| according to the carefully pending | +85001|555455|30478|1|21|31719.03|0.08|0.07|N|O|1995-08-06|1995-08-08|1995-08-07|COLLECT COD|MAIL| serve furiously. fluff| +85001|529328|4349|2|32|43433.60|0.01|0.07|N|O|1995-08-01|1995-06-21|1995-08-28|NONE|SHIP|fter the pearls. bravely unusual accoun| +85002|274443|36949|1|18|25513.74|0.03|0.03|N|O|1995-11-21|1995-10-08|1995-12-14|NONE|TRUCK|packages. carefully unusual theodolites | +85002|555851|30874|2|47|89621.01|0.05|0.08|N|O|1995-10-03|1995-10-13|1995-10-16|COLLECT COD|AIR| final ideas after the pack| +85002|178697|28698|3|27|47943.63|0.00|0.02|N|O|1995-10-29|1995-10-21|1995-11-03|DELIVER IN PERSON|RAIL|eposits boost carefully acro| +85003|270298|45309|1|37|46926.36|0.01|0.08|R|F|1994-06-14|1994-06-17|1994-07-02|COLLECT COD|MAIL|regular instructions: quickly final pa| +85003|897870|10388|2|13|24281.79|0.00|0.06|R|F|1994-06-06|1994-05-27|1994-06-17|NONE|TRUCK|eodolites haggle quickly | +85003|486814|24342|3|36|64828.44|0.08|0.00|R|F|1994-05-28|1994-05-05|1994-06-01|TAKE BACK RETURN|SHIP|taphs wake blithely acro| +85003|877356|39874|4|35|46665.85|0.02|0.08|A|F|1994-05-18|1994-05-23|1994-06-11|DELIVER IN PERSON|RAIL|l, ironic forges cajole across the r| +85003|720746|20747|5|12|21200.52|0.10|0.07|R|F|1994-04-30|1994-05-07|1994-05-17|COLLECT COD|SHIP|ticing request| +85003|570129|32641|6|32|38371.20|0.06|0.07|R|F|1994-06-15|1994-06-22|1994-06-20|NONE|REG AIR|t the regul| +85004|380206|17728|1|31|39871.89|0.07|0.05|R|F|1994-07-26|1994-06-18|1994-08-06|NONE|FOB|quickly pending | +85005|41653|41654|1|1|1594.65|0.02|0.08|N|O|1997-12-08|1997-12-22|1997-12-21|DELIVER IN PERSON|TRUCK|efully ironic packages are carefully abou| +85005|56451|6452|2|50|70372.50|0.06|0.07|N|O|1997-10-28|1997-11-19|1997-11-18|COLLECT COD|TRUCK| pinto beans mig| +85005|766617|16618|3|42|70710.36|0.09|0.03|N|O|1998-01-14|1997-12-21|1998-02-10|COLLECT COD|FOB|s. carefully special deposits| +85005|525596|38107|4|10|16215.70|0.00|0.06|N|O|1997-11-19|1997-12-21|1997-12-10|NONE|RAIL|pths. regula| +85005|678496|28497|5|41|60452.86|0.03|0.08|N|O|1997-12-23|1997-12-09|1998-01-15|DELIVER IN PERSON|SHIP| accounts across the quickly fi| +85005|474724|24725|6|42|71345.40|0.08|0.08|N|O|1998-01-15|1998-01-05|1998-01-16|COLLECT COD|REG AIR| blithely against the regular deposits. | +85005|670085|32599|7|50|52752.50|0.02|0.02|N|O|1997-12-01|1997-12-03|1997-12-05|COLLECT COD|SHIP|ependencies. regular instructions sleep | +85006|107383|7384|1|7|9732.66|0.01|0.05|A|F|1992-11-29|1992-09-17|1992-12-07|COLLECT COD|TRUCK|ges. regular theodolites s| +85006|785131|22677|2|27|32834.70|0.00|0.07|A|F|1992-09-20|1992-10-29|1992-09-21|COLLECT COD|AIR|ntly final foxes up the f| +85006|686025|48539|3|4|4043.96|0.00|0.07|R|F|1992-08-30|1992-10-17|1992-09-17|DELIVER IN PERSON|FOB|hs. unusual, regular ideas integrate quickl| +85007|43041|18042|1|32|31489.28|0.01|0.07|R|F|1992-05-09|1992-03-27|1992-06-01|COLLECT COD|TRUCK|s sleep. fluffi| +85007|373428|35936|2|19|28526.79|0.02|0.00|R|F|1992-03-27|1992-04-25|1992-04-06|NONE|SHIP|round the furious| +85007|194227|44228|3|35|46242.70|0.03|0.00|R|F|1992-01-31|1992-03-04|1992-02-27|DELIVER IN PERSON|MAIL|en dependencies. quickly even courts han| +85007|372326|47341|4|49|68517.19|0.04|0.08|R|F|1992-05-04|1992-04-06|1992-06-03|NONE|AIR|y even dinos at the fluff| +85007|678133|15673|5|5|5555.50|0.10|0.08|R|F|1992-02-14|1992-03-20|1992-03-02|NONE|SHIP|e slyly unusual requests; reg| +85032|379757|29758|1|15|27551.10|0.08|0.00|A|F|1993-03-19|1993-03-17|1993-03-29|DELIVER IN PERSON|FOB|nal accounts sublate. regular, | +85032|574261|36773|2|37|49403.88|0.03|0.01|A|F|1993-01-18|1993-03-16|1993-02-08|NONE|MAIL|s cajole final, final depths| +85032|599191|36725|3|22|28383.74|0.05|0.07|A|F|1993-04-03|1993-02-14|1993-04-12|COLLECT COD|SHIP| wake quickly according to the regular depo| +85032|598544|23567|4|25|41063.00|0.10|0.08|A|F|1993-02-10|1993-02-12|1993-02-18|DELIVER IN PERSON|FOB|t ideas. quickly final dependencies sl| +85032|720141|32656|5|25|29027.75|0.06|0.00|R|F|1993-04-11|1993-03-24|1993-04-13|DELIVER IN PERSON|RAIL|nal, special requests. slyly eve| +85033|178781|41285|1|20|37195.60|0.10|0.04|N|O|1995-12-27|1995-10-30|1996-01-08|COLLECT COD|TRUCK|into beans. d| +85033|767330|17331|2|5|6986.50|0.01|0.03|N|O|1995-11-06|1995-10-07|1995-11-16|COLLECT COD|AIR|e the slyly express package| +85034|663684|26198|1|31|51077.15|0.06|0.04|A|F|1992-04-11|1992-04-07|1992-05-08|DELIVER IN PERSON|RAIL| accounts. slyly fluffy req| +85034|527833|27834|2|44|81875.64|0.02|0.04|A|F|1992-05-14|1992-04-23|1992-05-24|COLLECT COD|FOB|quick accounts. carefully pend| +85034|287628|12639|3|25|40390.25|0.00|0.07|R|F|1992-03-15|1992-04-08|1992-03-16|NONE|RAIL| requests cajole furiously ac| +85035|480455|30456|1|1|1435.43|0.06|0.01|A|F|1992-06-18|1992-08-15|1992-07-11|COLLECT COD|REG AIR|ly express dependencies detect q| +85035|995206|32764|2|33|42938.28|0.06|0.05|A|F|1992-07-13|1992-07-30|1992-08-12|TAKE BACK RETURN|TRUCK|nag slyly above the slyly ex| +85035|424007|49024|3|3|2792.94|0.09|0.04|A|F|1992-07-15|1992-08-12|1992-07-21|DELIVER IN PERSON|REG AIR|slow requests. blithely final dependencie| +85036|645119|7632|1|17|18089.36|0.05|0.05|A|F|1992-12-02|1992-11-25|1992-12-12|NONE|TRUCK|lyly ironic instructions snooze care| +85037|827368|27369|1|15|19429.80|0.08|0.05|N|O|1996-10-17|1996-11-09|1996-11-03|TAKE BACK RETURN|FOB|s might cajole slowly| +85037|564671|2205|2|4|6942.60|0.09|0.00|N|O|1996-12-14|1996-11-04|1996-12-29|COLLECT COD|AIR|ickly regular packages print. | +85037|409481|34498|3|26|36151.96|0.06|0.08|N|O|1996-10-28|1996-12-22|1996-10-29|TAKE BACK RETURN|FOB|se. pinto beans cajole ironic deposits| +85037|144528|19533|4|35|55038.20|0.07|0.03|N|O|1997-01-14|1996-11-21|1997-02-04|NONE|AIR|ons? carefully ironic deposits hag| +85037|73702|36204|5|19|31838.30|0.09|0.01|N|O|1996-10-06|1996-12-12|1996-10-28|TAKE BACK RETURN|REG AIR|run packages. furi| +85037|708773|8774|6|12|21380.88|0.04|0.05|N|O|1996-10-30|1996-11-17|1996-11-04|TAKE BACK RETURN|REG AIR| furiously even deposi| +85037|338436|13449|7|20|29488.40|0.02|0.05|N|O|1997-01-16|1996-12-10|1997-02-15|TAKE BACK RETURN|FOB|blithely even requests nag quickly furious| +85038|85740|48242|1|16|27611.84|0.07|0.07|N|O|1996-10-12|1996-09-25|1996-11-04|DELIVER IN PERSON|SHIP|ts wake along the instructions. | +85039|65451|27953|1|31|43909.95|0.03|0.05|A|F|1995-01-05|1994-11-08|1995-01-15|TAKE BACK RETURN|MAIL|the theodolites.| +85039|19601|19602|2|25|38015.00|0.02|0.01|A|F|1994-12-21|1994-11-19|1994-12-22|DELIVER IN PERSON|TRUCK|iously among the slyl| +85039|421509|21510|3|9|12874.32|0.05|0.03|A|F|1994-09-28|1994-12-16|1994-10-21|COLLECT COD|TRUCK|xpress deposits. reg| +85039|294426|31942|4|30|42612.30|0.05|0.01|A|F|1994-10-19|1994-10-26|1994-11-07|DELIVER IN PERSON|SHIP|ss the carefully unusual deposits affix bli| +85039|405736|43261|5|31|50893.01|0.04|0.00|R|F|1994-10-16|1994-11-05|1994-10-23|COLLECT COD|TRUCK|thely ironic deposits. slyly ironic ac| +85039|192321|29831|6|44|62186.08|0.08|0.06|R|F|1994-12-07|1994-10-23|1994-12-09|DELIVER IN PERSON|MAIL|ts detect. blithely regular foxes hagg| +85039|326381|1394|7|46|64739.02|0.05|0.03|R|F|1994-10-07|1994-11-18|1994-10-09|DELIVER IN PERSON|MAIL|riously ironic deposit| +85064|472349|47368|1|25|33033.00|0.09|0.01|N|O|1997-12-08|1997-12-20|1997-12-20|COLLECT COD|RAIL|refully iron| +85064|761346|11347|2|17|23924.27|0.03|0.07|N|O|1997-12-05|1998-01-01|1997-12-23|TAKE BACK RETURN|REG AIR| fluffily deposits. quickly special instruc| +85064|936590|36591|3|36|58555.80|0.06|0.04|N|O|1998-01-09|1998-01-30|1998-01-26|COLLECT COD|MAIL| ideas. idly pending de| +85064|256243|31254|4|49|58762.27|0.03|0.05|N|O|1997-12-07|1998-01-01|1997-12-08|NONE|FOB|ding to the slyly s| +85065|505246|42777|1|4|5004.88|0.07|0.03|R|F|1992-06-05|1992-07-15|1992-06-11|COLLECT COD|FOB|ly. furiously express excuses sleep si| +85065|655797|5798|2|8|14022.08|0.00|0.04|A|F|1992-04-28|1992-06-17|1992-05-13|NONE|TRUCK|l requests wake furiousl| +85065|976836|14394|3|32|61209.28|0.01|0.05|R|F|1992-05-19|1992-05-27|1992-06-07|COLLECT COD|REG AIR|sts nag bold, bold foxes| +85065|668715|43742|4|38|63979.84|0.09|0.03|A|F|1992-05-23|1992-06-26|1992-06-20|DELIVER IN PERSON|TRUCK|the carefully si| +85066|993109|43110|1|14|16828.84|0.00|0.01|N|O|1996-09-17|1996-08-27|1996-10-14|NONE|FOB|ully. depo| +85066|172678|22679|2|3|5252.01|0.00|0.07|N|O|1996-06-07|1996-07-19|1996-06-22|COLLECT COD|TRUCK|regular ideas. sl| +85066|193690|18697|3|3|5351.07|0.08|0.00|N|O|1996-07-30|1996-07-03|1996-08-19|NONE|FOB|iously express theodol| +85066|339115|14128|4|23|26544.30|0.05|0.03|N|O|1996-08-13|1996-07-11|1996-08-26|TAKE BACK RETURN|REG AIR|nusual package| +85067|368802|43817|1|2|3741.58|0.10|0.02|A|F|1995-06-10|1995-05-13|1995-06-16|NONE|RAIL| wake. carefully special accounts| +85067|443483|43484|2|24|34235.04|0.07|0.00|R|F|1995-04-12|1995-04-09|1995-05-04|NONE|FOB|the carefully ironic ideas bo| +85067|609067|46604|3|35|34161.05|0.03|0.08|A|F|1995-04-11|1995-04-27|1995-04-19|NONE|SHIP|rmanently ev| +85067|584605|22139|4|18|30412.44|0.09|0.04|A|F|1995-05-11|1995-05-06|1995-05-15|NONE|RAIL|ans along the express, ironic accounts sl| +85068|763308|854|1|26|35653.02|0.06|0.04|N|O|1995-07-07|1995-05-05|1995-08-04|DELIVER IN PERSON|AIR|nstructions wake blithely. | +85068|902916|27953|2|27|51809.49|0.03|0.00|N|O|1995-07-04|1995-05-21|1995-07-11|NONE|SHIP|refully ironic instructions | +85069|552751|40285|1|2|3607.46|0.05|0.06|N|O|1998-07-31|1998-09-03|1998-08-01|TAKE BACK RETURN|FOB| pending, pendi| +85070|231507|44012|1|3|4315.47|0.04|0.01|N|O|1998-10-19|1998-08-24|1998-11-08|NONE|RAIL| regular ideas wi| +85071|874926|37444|1|32|60828.16|0.05|0.05|R|F|1992-06-10|1992-08-29|1992-06-11|NONE|REG AIR|into beans af| +85071|869345|6897|2|32|42057.60|0.05|0.05|R|F|1992-06-22|1992-09-01|1992-07-21|COLLECT COD|AIR|ar deposits cajole care| +85071|67366|17367|3|6|8000.16|0.10|0.03|A|F|1992-08-27|1992-09-02|1992-09-20|TAKE BACK RETURN|FOB| regular, ironic ac| +85071|218262|30767|4|47|55471.75|0.03|0.04|A|F|1992-09-26|1992-07-07|1992-10-13|DELIVER IN PERSON|AIR|s wake furiously above the fluffily| +85071|324154|36661|5|33|38878.62|0.09|0.05|R|F|1992-06-13|1992-07-19|1992-06-14|COLLECT COD|AIR|ts. permane| +85096|202939|40452|1|8|14735.36|0.10|0.08|N|O|1997-06-28|1997-05-30|1997-07-15|NONE|FOB|le. even ideas x-ray c| +85097|30838|5839|1|16|28301.28|0.01|0.00|A|F|1992-05-09|1992-04-04|1992-05-30|NONE|MAIL|eposits. express theodolites affix | +85097|287053|12064|2|28|29121.12|0.08|0.05|R|F|1992-03-09|1992-04-23|1992-04-06|NONE|REG AIR|pecial instructions. waters nag sl| +85097|489469|1979|3|42|61254.48|0.09|0.08|R|F|1992-04-27|1992-05-26|1992-05-23|COLLECT COD|AIR|lly regular, reg| +85097|505075|42606|4|6|6480.30|0.07|0.08|A|F|1992-03-27|1992-05-24|1992-03-31|DELIVER IN PERSON|REG AIR|ly unusual deposits| +85097|784741|9772|5|29|52945.59|0.02|0.07|R|F|1992-04-26|1992-05-03|1992-04-30|COLLECT COD|RAIL|ully pending instructions. a| +85097|128482|15989|6|2|3020.96|0.08|0.06|R|F|1992-07-04|1992-05-15|1992-07-20|DELIVER IN PERSON|SHIP|ounts. quickly p| +85098|40559|40560|1|31|46486.05|0.09|0.02|N|O|1997-07-25|1997-08-06|1997-08-10|DELIVER IN PERSON|MAIL|egular platelets. slyly ironi| +85098|661956|24470|2|41|78634.72|0.09|0.03|N|O|1997-06-22|1997-07-16|1997-07-06|TAKE BACK RETURN|SHIP|ully. accounts sleep slyly blithely| +85098|477775|40285|3|24|42066.00|0.10|0.06|N|O|1997-08-18|1997-08-09|1997-08-29|NONE|TRUCK|nal packages haggle-- blithe| +85099|63868|26370|1|7|12823.02|0.05|0.01|A|F|1993-01-02|1993-01-21|1993-01-29|COLLECT COD|MAIL| to the carefully ironic packages run ent| +85100|416509|29018|1|39|55593.72|0.01|0.05|R|F|1993-05-28|1993-08-15|1993-06-12|TAKE BACK RETURN|AIR|even deposits are. slyly regul| +85100|262965|37976|2|16|30847.20|0.00|0.08|R|F|1993-07-26|1993-07-20|1993-08-08|TAKE BACK RETURN|TRUCK|ickly even deposits a| +85100|646727|34264|3|17|28452.73|0.10|0.07|A|F|1993-09-13|1993-07-14|1993-09-30|COLLECT COD|MAIL|nal platelets. blithely unusua| +85100|538494|1005|4|9|13792.23|0.05|0.05|R|F|1993-08-13|1993-08-14|1993-09-11|COLLECT COD|SHIP|ites. furiously i| +85100|454023|41551|5|28|27356.00|0.07|0.03|A|F|1993-08-16|1993-08-12|1993-08-21|COLLECT COD|RAIL|al deposits cajole c| +85100|758341|20857|6|27|37781.37|0.01|0.02|A|F|1993-05-21|1993-07-22|1993-06-20|NONE|AIR|ggle. furiou| +85101|491812|16831|1|11|19841.69|0.05|0.00|A|F|1992-05-02|1992-07-09|1992-05-21|TAKE BACK RETURN|RAIL|uests sleep quickly regular| +85101|872628|22629|2|17|27209.86|0.08|0.00|A|F|1992-05-06|1992-06-11|1992-05-20|DELIVER IN PERSON|RAIL|oldly final deposits haggle sentiments| +85101|249022|11527|3|1|971.01|0.06|0.07|A|F|1992-06-28|1992-07-19|1992-07-19|NONE|MAIL|ecial reques| +85102|401554|1555|1|46|66954.38|0.05|0.06|N|O|1998-08-04|1998-07-12|1998-08-29|TAKE BACK RETURN|SHIP|c gifts. deposits| +85102|910938|48493|2|38|74057.82|0.05|0.05|N|O|1998-09-07|1998-07-28|1998-09-10|COLLECT COD|RAIL|ts sleep slyly bold pearls. furious| +85102|123521|23522|3|23|35523.96|0.02|0.03|N|O|1998-08-29|1998-08-02|1998-09-18|DELIVER IN PERSON|REG AIR| deposits: blithely final depo| +85102|8638|33639|4|11|17012.93|0.02|0.02|N|O|1998-07-07|1998-07-19|1998-07-26|DELIVER IN PERSON|MAIL|r instructions: furiously iro| +85103|480460|42970|1|44|63379.36|0.08|0.06|N|O|1998-04-14|1998-03-25|1998-04-16|COLLECT COD|AIR| wake fluffily regular asymptotes. fi| +85128|944109|6628|1|25|28826.50|0.07|0.03|N|O|1998-06-14|1998-03-20|1998-06-15|TAKE BACK RETURN|SHIP|egular dolphin| +85129|137904|37905|1|43|83501.70|0.06|0.05|N|O|1996-11-03|1996-10-27|1996-11-14|DELIVER IN PERSON|SHIP|urts wake among the regular forges. pendi| +85129|741831|41832|2|23|43074.40|0.09|0.03|N|O|1996-10-27|1996-10-12|1996-11-04|NONE|MAIL|gular theodolites. pint| +85130|124566|37069|1|19|30220.64|0.06|0.02|N|O|1996-01-19|1995-11-18|1996-02-08|NONE|FOB|requests doubt quickly. carefully iro| +85130|569477|44500|2|17|26289.65|0.07|0.07|N|O|1995-10-16|1995-10-31|1995-10-27|NONE|TRUCK|beans. blithel| +85130|193100|5604|3|12|14317.20|0.02|0.00|N|O|1995-12-24|1995-11-19|1995-12-29|TAKE BACK RETURN|SHIP|es use sometimes| +85130|431448|31449|4|34|46900.28|0.04|0.08|N|O|1996-01-07|1995-10-24|1996-02-01|TAKE BACK RETURN|FOB|es nag slyly accor| +85130|341688|41689|5|19|32863.73|0.00|0.07|N|O|1995-10-13|1995-11-16|1995-10-20|COLLECT COD|TRUCK| ideas sle| +85130|738834|38835|6|41|76784.80|0.04|0.08|N|O|1995-10-16|1995-12-14|1995-11-14|TAKE BACK RETURN|AIR|ackages cajole; theodolites cajo| +85131|208876|46389|1|20|35697.20|0.08|0.00|N|O|1998-07-06|1998-08-12|1998-07-27|TAKE BACK RETURN|SHIP|ag carefully| +85131|564898|14899|2|11|21591.57|0.03|0.01|N|O|1998-10-09|1998-08-08|1998-10-12|COLLECT COD|SHIP| blithely slyly i| +85131|229884|17397|3|42|76182.54|0.00|0.03|N|O|1998-09-11|1998-08-01|1998-10-08|TAKE BACK RETURN|TRUCK|lly special requests hinder quickly acros| +85131|658121|33148|4|40|43163.60|0.05|0.02|N|O|1998-08-16|1998-08-16|1998-09-07|COLLECT COD|RAIL|grate accord| +85132|917750|17751|1|2|3535.42|0.01|0.00|N|O|1997-06-14|1997-05-11|1997-06-22|TAKE BACK RETURN|SHIP|al ideas w| +85132|618451|43476|2|5|6847.10|0.03|0.08|N|O|1997-07-11|1997-05-05|1997-08-10|DELIVER IN PERSON|AIR| dependencies. furiou| +85132|295744|33260|3|23|40013.79|0.06|0.05|N|O|1997-06-23|1997-05-26|1997-07-23|COLLECT COD|AIR| wake. even requests sleep. regular| +85132|566327|16328|4|27|37619.10|0.04|0.02|N|O|1997-07-07|1997-05-13|1997-08-01|COLLECT COD|AIR|ular frets cajol| +85132|254044|16550|5|28|27944.84|0.09|0.01|N|O|1997-07-05|1997-06-12|1997-07-10|NONE|MAIL| ironic dinos boost fluffily across the | +85132|708730|8731|6|6|10432.20|0.10|0.05|N|O|1997-06-08|1997-06-09|1997-06-10|DELIVER IN PERSON|REG AIR|olites are blithely. qui| +85133|644329|19354|1|41|52204.89|0.01|0.00|R|F|1994-06-17|1994-04-22|1994-06-23|NONE|FOB| of the slowly even requests. furiously | +85134|176383|26384|1|8|11675.04|0.02|0.01|R|F|1993-04-10|1993-05-04|1993-04-13|NONE|REG AIR| fluffily exp| +85134|452348|27367|2|44|57214.08|0.07|0.02|A|F|1993-04-02|1993-05-09|1993-04-13|TAKE BACK RETURN|REG AIR|packages haggle regular deposits. regular i| +85134|602265|2266|3|39|45521.97|0.07|0.03|A|F|1993-04-12|1993-05-30|1993-04-25|NONE|RAIL|ts. slyly pending dependencies ha| +85134|259570|47086|4|4|6118.24|0.07|0.02|A|F|1993-03-23|1993-04-19|1993-04-14|NONE|REG AIR|-ray carefull| +85134|585131|10154|5|11|13377.21|0.00|0.06|A|F|1993-06-01|1993-04-11|1993-06-25|COLLECT COD|TRUCK| along the fluffily even de| +85134|285871|35872|6|17|31566.62|0.00|0.01|A|F|1993-06-10|1993-05-07|1993-07-01|TAKE BACK RETURN|REG AIR|deposits. asymptotes wake quickly foxes: fu| +85135|706845|19360|1|36|66665.16|0.08|0.05|R|F|1993-02-23|1993-03-10|1993-02-24|TAKE BACK RETURN|REG AIR| carefully unusual| +85135|927649|40168|2|43|72093.80|0.10|0.03|A|F|1993-04-07|1993-03-07|1993-04-18|DELIVER IN PERSON|TRUCK|inal theodolites hang care| +85135|982886|7925|3|48|94504.32|0.02|0.08|A|F|1993-03-30|1993-03-14|1993-04-22|DELIVER IN PERSON|REG AIR|ackages. special platelets ac| +85135|351440|26455|4|50|74571.50|0.09|0.02|A|F|1993-02-02|1993-04-08|1993-02-13|NONE|RAIL|lly alongside of the furiously ironic | +85135|651353|26380|5|39|50868.48|0.00|0.05|R|F|1993-02-28|1993-03-24|1993-03-25|COLLECT COD|AIR| silent deposits boost regular a| +85135|288479|13490|6|4|5869.84|0.02|0.01|R|F|1993-03-08|1993-03-18|1993-03-18|COLLECT COD|RAIL|t, special pinto beans cajole quickly. i| +85135|458117|20627|7|16|17201.44|0.01|0.06|A|F|1993-02-09|1993-02-16|1993-02-15|TAKE BACK RETURN|SHIP|t never. regular, even packages acros| +85160|558153|33176|1|13|15744.69|0.00|0.08|N|O|1996-02-25|1996-02-23|1996-02-29|NONE|AIR|oys boost slyly even foxes. bold instr| +85160|864229|14230|2|20|23863.60|0.09|0.02|N|O|1996-02-28|1996-03-23|1996-03-24|TAKE BACK RETURN|TRUCK|uts solve above the reques| +85160|90004|15007|3|22|21868.00|0.02|0.00|N|O|1996-03-13|1996-04-12|1996-03-20|DELIVER IN PERSON|AIR|requests detect. slyly | +85160|692837|42838|4|6|10978.80|0.06|0.06|N|O|1996-02-02|1996-04-21|1996-02-08|DELIVER IN PERSON|MAIL|c dependencies above th| +85160|496648|34176|5|13|21380.06|0.05|0.05|N|O|1996-03-21|1996-04-09|1996-04-18|NONE|AIR|refully unusual epitaphs affix carefully | +85160|151343|1344|6|8|11154.72|0.09|0.04|N|O|1996-05-20|1996-04-11|1996-06-13|COLLECT COD|AIR|sual packages was| +85160|616420|3957|7|33|44100.87|0.07|0.02|N|O|1996-04-04|1996-04-02|1996-04-19|NONE|RAIL|nts across the requests ar| +85161|165613|15614|1|10|16786.10|0.09|0.03|N|O|1996-09-01|1996-08-03|1996-09-08|DELIVER IN PERSON|AIR|bove the clo| +85162|124586|24587|1|35|56370.30|0.04|0.00|R|F|1993-10-10|1993-09-16|1993-10-28|DELIVER IN PERSON|FOB|nal ideas among the pending, even| +85162|909642|22161|2|4|6606.40|0.01|0.01|R|F|1993-09-19|1993-08-24|1993-09-30|DELIVER IN PERSON|REG AIR|ests sleep quickly carefully | +85162|351524|39046|3|29|45689.79|0.09|0.07|A|F|1993-08-10|1993-10-02|1993-08-20|NONE|MAIL|er the requests; slyly | +85162|61172|23674|4|44|49859.48|0.04|0.04|R|F|1993-10-10|1993-09-12|1993-11-07|COLLECT COD|AIR|y regular packages across the final| +85162|111022|48529|5|45|46485.90|0.05|0.07|R|F|1993-09-27|1993-08-23|1993-09-28|COLLECT COD|AIR|ts are. ideas run carefully pe| +85162|934041|34042|6|25|26875.00|0.07|0.06|R|F|1993-08-14|1993-08-23|1993-09-06|TAKE BACK RETURN|MAIL|ngside of the carefully bold a| +85163|956075|31114|1|33|37323.99|0.10|0.01|R|F|1993-05-12|1993-05-15|1993-06-04|NONE|TRUCK|quests haggle above the qui| +85163|740952|15981|2|15|29893.80|0.06|0.04|A|F|1993-04-04|1993-05-16|1993-04-16|DELIVER IN PERSON|AIR|ilent instructions wake among the unusual| +85164|559962|22474|1|49|99075.06|0.06|0.02|N|F|1995-06-11|1995-08-07|1995-07-02|NONE|SHIP|regular, p| +85164|274956|49967|2|5|9654.70|0.08|0.08|N|O|1995-07-20|1995-07-12|1995-08-04|COLLECT COD|FOB|o the ironic| +85164|184947|47451|3|39|79245.66|0.09|0.02|R|F|1995-06-07|1995-07-19|1995-06-11|COLLECT COD|RAIL|nal requests. ironic instructions | +85165|254722|42238|1|7|11736.97|0.03|0.01|N|O|1995-12-10|1995-12-21|1996-01-08|COLLECT COD|FOB|dolites cajole blithely. blithely final | +85165|111664|11665|2|33|55296.78|0.08|0.00|N|O|1995-12-05|1995-11-27|1996-01-04|TAKE BACK RETURN|RAIL|blithely ironic dependencies integrate| +85165|732153|19696|3|32|37923.84|0.10|0.00|N|O|1995-12-02|1996-01-10|1995-12-27|COLLECT COD|SHIP| asymptotes affix after the| +85165|287108|37109|4|38|41613.42|0.04|0.06|N|O|1996-01-07|1995-11-19|1996-01-24|DELIVER IN PERSON|MAIL|bold, final not| +85165|419555|32064|5|49|72251.97|0.09|0.05|N|O|1996-01-25|1995-11-23|1996-02-17|COLLECT COD|AIR|iously final dependencies. | +85166|110160|35165|1|19|22233.04|0.02|0.08|N|O|1998-04-25|1998-05-30|1998-05-19|DELIVER IN PERSON|AIR|final ideas. quick| +85167|769876|7422|1|14|27241.76|0.05|0.00|N|O|1996-09-24|1996-10-22|1996-10-05|DELIVER IN PERSON|MAIL| foxes sleep slyly against the regula| +85167|300053|37572|2|45|47386.80|0.08|0.06|N|O|1996-12-25|1996-11-21|1996-12-29|NONE|REG AIR|ate. blithely pending acco| +85192|123793|36296|1|21|38152.59|0.01|0.07|N|O|1996-07-24|1996-05-20|1996-08-18|DELIVER IN PERSON|SHIP|ar requests. slyly ironic dol| +85192|575888|25889|2|39|76590.54|0.03|0.08|N|O|1996-05-22|1996-06-22|1996-06-15|TAKE BACK RETURN|AIR|uriously quiet ideas| +85192|948016|35571|3|33|35111.01|0.06|0.00|N|O|1996-07-05|1996-05-30|1996-07-16|COLLECT COD|MAIL| ironic deposits. deposits use slyly f| +85192|296170|21181|4|48|55975.68|0.03|0.05|N|O|1996-08-04|1996-07-10|1996-08-16|NONE|REG AIR|onic asympt| +85192|715864|3407|5|11|20678.13|0.02|0.08|N|O|1996-06-19|1996-06-30|1996-06-28|TAKE BACK RETURN|RAIL|. idly unusual packages grow f| +85192|522731|35242|6|38|66640.98|0.07|0.08|N|O|1996-05-06|1996-06-25|1996-05-30|NONE|TRUCK|sly final accounts. requests alo| +85192|527057|39568|7|7|7588.21|0.08|0.03|N|O|1996-08-05|1996-05-31|1996-08-25|COLLECT COD|TRUCK| carefully furiously regu| +85193|231609|44114|1|33|50839.47|0.05|0.02|A|F|1993-04-20|1993-05-08|1993-04-26|DELIVER IN PERSON|RAIL|sts are even, regular | +85193|638282|38283|2|31|37827.75|0.10|0.08|R|F|1993-06-27|1993-06-04|1993-07-27|NONE|TRUCK| silent asympt| +85193|599429|11941|3|39|59607.60|0.01|0.07|R|F|1993-05-21|1993-05-31|1993-06-06|NONE|TRUCK|wake furiously at the carefully r| +85194|193545|6049|1|46|75372.84|0.05|0.02|N|O|1997-06-01|1997-08-10|1997-06-26|COLLECT COD|MAIL|ajole fluffily across the slyly unu| +85194|901178|26215|2|20|23582.60|0.04|0.02|N|O|1997-09-04|1997-08-13|1997-09-14|COLLECT COD|REG AIR|s nag quickly. spec| +85194|84363|34364|3|45|60631.20|0.00|0.05|N|O|1997-08-22|1997-07-02|1997-09-08|DELIVER IN PERSON|SHIP|ly even accounts wake slow, eve| +85195|69983|19984|1|5|9764.90|0.02|0.02|N|O|1996-05-11|1996-04-27|1996-06-04|NONE|FOB|ounts. quickly express| +85195|188706|1210|2|7|12562.90|0.04|0.06|N|O|1996-06-20|1996-05-05|1996-07-06|COLLECT COD|MAIL|r excuses along the slyly final | +85195|581624|31625|3|25|42640.00|0.09|0.01|N|O|1996-03-02|1996-03-28|1996-03-27|DELIVER IN PERSON|MAIL|slyly regular ideas according to t| +85195|352786|40308|4|24|44130.48|0.03|0.01|N|O|1996-05-07|1996-03-23|1996-05-22|NONE|SHIP|y express excuses| +85195|272863|35369|5|21|38552.85|0.04|0.04|N|O|1996-05-20|1996-04-05|1996-06-09|DELIVER IN PERSON|TRUCK|ress theodolites. slyly idle packages impr| +85195|5159|17660|6|48|51079.20|0.10|0.01|N|O|1996-04-28|1996-03-27|1996-05-10|COLLECT COD|MAIL|ending pinto beans. slyly | +85196|989767|27325|1|33|61271.76|0.05|0.01|R|F|1993-11-25|1993-11-28|1993-12-05|NONE|TRUCK|s use slyly| +85196|8124|20625|2|49|50573.88|0.07|0.01|A|F|1993-11-08|1993-11-20|1993-11-25|DELIVER IN PERSON|MAIL|final pinto beans nag doggedly accordin| +85196|539269|14290|3|48|62795.52|0.10|0.03|R|F|1993-12-11|1993-12-12|1993-12-24|COLLECT COD|SHIP|-- slyly ironic ideas boos| +85196|486525|49035|4|4|6046.00|0.05|0.06|R|F|1993-10-24|1993-11-12|1993-11-03|NONE|RAIL|es. carefully special theodo| +85196|9308|9309|5|3|3651.90|0.05|0.02|A|F|1993-12-18|1993-12-22|1994-01-05|NONE|AIR|usly even a| +85196|427294|27295|6|38|46408.26|0.04|0.06|R|F|1993-12-07|1993-11-14|1994-01-05|TAKE BACK RETURN|AIR|y. accounts | +85196|526091|1112|7|45|50268.15|0.05|0.08|A|F|1993-10-25|1993-10-30|1993-11-11|DELIVER IN PERSON|MAIL|ong the quickly final theod| +85197|7436|44937|1|15|20151.45|0.08|0.00|N|O|1995-08-15|1995-10-06|1995-08-22|TAKE BACK RETURN|REG AIR|ccounts nag; quickly regul| +85198|131371|6376|1|21|29449.77|0.04|0.03|N|O|1996-03-23|1996-02-03|1996-04-12|DELIVER IN PERSON|REG AIR|tes nag quickly among the blithely even p| +85198|941729|16766|2|45|79680.60|0.08|0.07|N|O|1996-03-22|1996-03-25|1996-04-17|NONE|SHIP|ts affix across th| +85198|625377|12914|3|38|49488.92|0.07|0.06|N|O|1996-01-29|1996-01-30|1996-02-05|COLLECT COD|RAIL|nt deposits sleep| +85198|706436|43979|4|17|24520.80|0.02|0.05|N|O|1996-01-12|1996-03-11|1996-01-26|COLLECT COD|TRUCK|re slyly with | +85198|67828|5332|5|48|86199.36|0.05|0.06|N|O|1996-02-22|1996-02-24|1996-03-01|NONE|MAIL|ests. regular, final requests af| +85198|980040|5079|6|2|2240.00|0.09|0.08|N|O|1996-01-25|1996-03-19|1996-02-24|TAKE BACK RETURN|RAIL|y about the daring| +85199|352072|27087|1|22|24729.32|0.04|0.03|A|F|1992-07-24|1992-07-05|1992-08-06|COLLECT COD|MAIL|fily careful| +85199|272120|9636|2|1|1092.11|0.05|0.05|A|F|1992-05-01|1992-06-22|1992-05-29|COLLECT COD|RAIL|s. fluffily pending | +85199|512341|37362|3|1|1353.32|0.08|0.05|A|F|1992-06-03|1992-05-25|1992-06-11|COLLECT COD|TRUCK|al foxes against the slyly silent multiplie| +85199|904996|42551|4|7|14006.65|0.08|0.03|R|F|1992-07-14|1992-06-16|1992-07-21|COLLECT COD|TRUCK|luffily according to the excuse| +85199|261029|36040|5|23|22770.23|0.08|0.06|R|F|1992-07-21|1992-06-03|1992-08-16|TAKE BACK RETURN|AIR|ly after the deposits. theodolites are| +85199|110992|48499|6|5|10014.95|0.06|0.05|A|F|1992-05-23|1992-06-28|1992-06-03|DELIVER IN PERSON|TRUCK|escapades between the ironic asym| +85199|434852|34853|7|28|50031.24|0.06|0.01|R|F|1992-06-12|1992-05-23|1992-07-06|DELIVER IN PERSON|FOB|lar deposits. even, final dolphins sleep | +85224|542226|17247|1|39|49459.80|0.10|0.06|N|O|1998-01-05|1998-01-14|1998-01-29|NONE|MAIL|ly silent requests. express| +85224|181809|6816|2|47|88867.60|0.09|0.07|N|O|1998-02-13|1998-01-22|1998-03-12|TAKE BACK RETURN|FOB|kages serve against the ironic | +85224|659587|22101|3|25|38663.75|0.02|0.05|N|O|1998-03-03|1998-02-06|1998-03-26|DELIVER IN PERSON|SHIP|ggle unusual pint| +85224|676164|26165|4|40|45605.20|0.08|0.08|N|O|1997-12-30|1997-12-29|1998-01-03|TAKE BACK RETURN|TRUCK|press, even requests cajole about the ca| +85224|276369|1380|5|34|45741.90|0.08|0.02|N|O|1998-02-16|1998-01-11|1998-03-08|COLLECT COD|FOB| deposits. instructions along| +85225|516693|16694|1|46|78644.82|0.00|0.03|N|O|1996-01-20|1996-03-14|1996-02-16|COLLECT COD|REG AIR|c packages. court| +85225|42980|42981|2|8|15383.84|0.06|0.07|N|O|1996-03-11|1996-02-15|1996-03-19|COLLECT COD|FOB|its. slyly special pinto be| +85225|361948|24456|3|29|58287.97|0.01|0.00|N|O|1996-02-14|1996-03-17|1996-02-24|DELIVER IN PERSON|MAIL|final accounts. | +85226|985324|22882|1|27|38050.56|0.03|0.02|R|F|1994-05-24|1994-04-30|1994-06-13|TAKE BACK RETURN|TRUCK|s haggle. unusual ideas | +85227|224019|49028|1|9|8487.00|0.10|0.03|N|O|1995-11-29|1996-01-20|1995-12-29|DELIVER IN PERSON|RAIL|ges. regula| +85227|79217|16721|2|40|47848.40|0.00|0.02|N|O|1996-01-09|1995-12-26|1996-02-02|TAKE BACK RETURN|RAIL|uffy packages integrate througho| +85228|588551|1063|1|27|44267.31|0.04|0.05|R|F|1992-05-08|1992-05-29|1992-05-10|DELIVER IN PERSON|REG AIR| furiously bold foxes believe packages.| +85228|776345|38861|2|1|1421.31|0.02|0.02|A|F|1992-06-16|1992-07-07|1992-06-18|DELIVER IN PERSON|REG AIR|ges affix car| +85228|22488|47489|3|31|43724.88|0.01|0.02|A|F|1992-06-10|1992-07-04|1992-07-06|COLLECT COD|REG AIR| regular accounts cajole a| +85228|946305|46306|4|40|54050.40|0.09|0.08|A|F|1992-07-27|1992-06-08|1992-08-20|TAKE BACK RETURN|TRUCK|ar pinto beans impress sly| +85228|547724|35255|5|30|53151.00|0.09|0.04|R|F|1992-07-22|1992-06-11|1992-08-04|COLLECT COD|REG AIR|egular packages after the slyly regul| +85228|589434|39435|6|19|28944.79|0.06|0.03|R|F|1992-07-26|1992-07-03|1992-08-08|COLLECT COD|TRUCK|pending accounts haggle| +85228|604818|29843|7|43|74079.54|0.06|0.07|R|F|1992-04-18|1992-07-13|1992-05-14|TAKE BACK RETURN|REG AIR|xpress ideas along the| +85229|170465|45472|1|19|29173.74|0.01|0.00|N|O|1998-06-30|1998-07-09|1998-07-29|DELIVER IN PERSON|SHIP| blithely bold dependen| +85229|993767|31325|2|42|78150.24|0.08|0.02|N|O|1998-05-23|1998-07-15|1998-06-06|DELIVER IN PERSON|FOB| wake slyly ironic theodolite| +85229|238327|832|3|34|43020.54|0.06|0.06|N|O|1998-04-25|1998-06-28|1998-04-27|TAKE BACK RETURN|FOB|ongside of the slyly final requests.| +85229|551581|14093|4|3|4897.68|0.05|0.02|N|O|1998-06-04|1998-07-05|1998-06-17|COLLECT COD|REG AIR|hinder according to th| +85229|414929|2454|5|4|7375.60|0.02|0.08|N|O|1998-05-03|1998-07-08|1998-05-16|NONE|SHIP|e carefully. requests slee| +85229|710959|35988|6|21|41368.32|0.06|0.04|N|O|1998-06-09|1998-06-26|1998-07-01|DELIVER IN PERSON|TRUCK| accounts. furiously dogged asymptotes nag| +85230|231834|44339|1|39|68866.98|0.02|0.04|A|F|1992-05-04|1992-03-26|1992-06-01|DELIVER IN PERSON|SHIP|ackages haggle carefully. expr| +85230|422355|47372|2|29|37042.57|0.05|0.02|A|F|1992-03-02|1992-05-09|1992-03-07|TAKE BACK RETURN|SHIP| instructions run carefully acc| +85230|514610|39631|3|6|9747.54|0.08|0.02|R|F|1992-04-06|1992-04-13|1992-04-11|TAKE BACK RETURN|REG AIR|ly among the dolphins. | +85230|42205|29706|4|50|57360.00|0.03|0.02|R|F|1992-04-02|1992-03-21|1992-05-01|COLLECT COD|REG AIR|thely ironic pinto beans need to | +85230|327326|39833|5|29|39245.99|0.01|0.04|A|F|1992-03-15|1992-04-30|1992-03-26|NONE|TRUCK|egular, final deposits | +85230|352780|27795|6|49|89805.73|0.10|0.02|A|F|1992-04-18|1992-04-07|1992-05-11|TAKE BACK RETURN|RAIL|equests play alongside of the fluffily ste| +85231|406618|44143|1|46|70131.14|0.05|0.08|N|O|1995-11-17|1995-09-21|1995-12-15|TAKE BACK RETURN|TRUCK|express packages cajo| +85231|28378|28379|2|29|37884.73|0.01|0.05|N|O|1995-08-23|1995-09-11|1995-08-30|DELIVER IN PERSON|FOB|ding packages. quickl| +85231|934474|9511|3|44|66370.92|0.01|0.02|N|O|1995-10-31|1995-10-17|1995-11-28|COLLECT COD|RAIL|thely ironic accounts cajole furiously | +85256|789139|14170|1|35|42983.50|0.10|0.06|R|F|1994-01-31|1993-11-10|1994-02-27|TAKE BACK RETURN|SHIP|of the even dependencies. eve| +85256|49635|24636|2|15|23769.45|0.03|0.01|R|F|1993-12-14|1993-11-28|1994-01-07|DELIVER IN PERSON|TRUCK|across the n| +85256|214203|39212|3|29|32398.51|0.08|0.07|R|F|1993-11-29|1993-11-12|1993-12-18|TAKE BACK RETURN|AIR|lyly among the| +85256|93436|18439|4|42|60036.06|0.08|0.08|R|F|1993-11-14|1993-12-23|1993-11-22|NONE|REG AIR|ily about the furiously fluff| +85256|368991|6513|5|25|51499.50|0.07|0.06|A|F|1993-10-24|1993-11-09|1993-11-22|DELIVER IN PERSON|RAIL|ss, special theodolit| +85257|710875|48418|1|31|58461.04|0.00|0.02|N|O|1996-08-15|1996-07-21|1996-09-04|NONE|SHIP| ironic deposi| +85258|787464|49980|1|40|62057.20|0.06|0.06|N|O|1997-12-09|1998-02-15|1997-12-16|DELIVER IN PERSON|REG AIR|inal packag| +85258|898968|48969|2|15|29503.80|0.04|0.02|N|O|1998-03-15|1998-02-23|1998-04-05|DELIVER IN PERSON|AIR|efully. ironic, ironic packages nag fluffil| +85258|944030|44031|3|2|2147.98|0.04|0.02|N|O|1998-02-27|1998-02-09|1998-03-19|TAKE BACK RETURN|RAIL|se across the qu| +85259|930814|43333|1|16|29516.32|0.01|0.01|N|O|1996-07-21|1996-08-07|1996-08-06|TAKE BACK RETURN|MAIL|press accounts detect | +85259|174765|37269|2|5|9198.80|0.02|0.04|N|O|1996-07-22|1996-08-19|1996-08-18|DELIVER IN PERSON|RAIL|iously blithely re| +85259|270867|8383|3|48|88216.80|0.05|0.02|N|O|1996-10-06|1996-08-03|1996-10-15|NONE|REG AIR|arefully even theodolites snooze blithe| +85259|445625|20642|4|24|37694.40|0.02|0.05|N|O|1996-10-03|1996-07-12|1996-10-08|DELIVER IN PERSON|AIR| pending asymp| +85260|363108|38123|1|34|39817.06|0.10|0.06|N|O|1996-08-29|1996-08-19|1996-09-03|NONE|TRUCK|e packages. | +85261|629286|16823|1|9|10937.25|0.00|0.02|N|O|1998-07-26|1998-05-19|1998-08-14|DELIVER IN PERSON|FOB|ilent requests eat| +85261|405676|43201|2|12|18979.80|0.04|0.04|N|O|1998-05-18|1998-06-29|1998-05-20|COLLECT COD|FOB| after the carefully regular theodolite| +85261|184175|34176|3|31|39034.27|0.03|0.02|N|O|1998-04-29|1998-05-07|1998-04-30|COLLECT COD|AIR|ys final asymptotes sleep. reques| +85261|417739|30248|4|33|54671.43|0.10|0.06|N|O|1998-05-12|1998-06-14|1998-05-20|COLLECT COD|FOB|st blithely. carefully regular foxes | +85261|928376|15931|5|30|42129.90|0.01|0.06|N|O|1998-04-27|1998-05-15|1998-05-19|TAKE BACK RETURN|FOB|nusual, special accounts. slyly pendin| +85261|203253|3254|6|12|13874.88|0.06|0.04|N|O|1998-05-26|1998-05-27|1998-06-22|NONE|REG AIR| courts sleep bravely furiously permanent| +85262|247615|10120|1|4|6250.40|0.07|0.07|N|O|1996-06-27|1996-08-14|1996-06-28|COLLECT COD|TRUCK|le quickly. quietly bold d| +85262|657219|19733|2|36|42342.48|0.00|0.04|N|O|1996-06-19|1996-07-16|1996-07-14|NONE|SHIP|ickly express ideas. carefully fina| +85262|869465|31983|3|35|50204.70|0.04|0.06|N|O|1996-09-08|1996-07-14|1996-09-21|TAKE BACK RETURN|REG AIR|o beans use against | +85262|95257|45258|4|32|40072.00|0.06|0.05|N|O|1996-06-18|1996-08-24|1996-07-08|DELIVER IN PERSON|RAIL|riously among the ironic | +85262|974548|49587|5|35|56787.50|0.07|0.07|N|O|1996-09-07|1996-08-22|1996-09-18|COLLECT COD|TRUCK|quickly regular | +85263|698621|23648|1|41|66403.19|0.04|0.01|R|F|1994-02-27|1994-02-12|1994-03-07|DELIVER IN PERSON|FOB| bold foxes. slyly e| +85263|717709|17710|2|7|12086.69|0.04|0.03|A|F|1994-03-15|1994-01-30|1994-04-06|COLLECT COD|AIR| wake blithely above the | +85263|519340|44361|3|31|42138.92|0.08|0.07|A|F|1993-12-29|1994-02-02|1994-01-20|NONE|TRUCK|ermanent requests cajole ironic pint| +85263|540820|15841|4|48|89318.40|0.05|0.06|A|F|1994-03-11|1994-02-28|1994-03-15|DELIVER IN PERSON|RAIL|ainst the final instructions| +85263|556348|43882|5|38|53364.16|0.00|0.08|A|F|1993-12-16|1994-03-10|1993-12-26|TAKE BACK RETURN|REG AIR|ly final packages cajole| +85263|538520|1031|6|38|59223.00|0.04|0.07|A|F|1994-02-16|1994-02-15|1994-02-24|DELIVER IN PERSON|REG AIR|ckages: final do| +85263|890054|2572|7|20|20880.20|0.01|0.00|A|F|1994-03-30|1994-01-30|1994-04-29|TAKE BACK RETURN|AIR|out the slyly even accounts. a| +85288|123131|35634|1|45|51935.85|0.04|0.05|N|O|1996-12-19|1997-01-21|1997-01-03|TAKE BACK RETURN|FOB|theodolites sleep. sly| +85288|461669|24179|2|5|8153.20|0.05|0.07|N|O|1996-12-06|1996-12-19|1996-12-30|NONE|AIR|ions-- fluffily sp| +85288|266612|16613|3|19|29993.40|0.07|0.06|N|O|1997-02-09|1997-01-02|1997-02-25|TAKE BACK RETURN|SHIP|refully regular asym| +85288|933726|46245|4|39|68627.52|0.10|0.01|N|O|1996-11-19|1997-01-02|1996-12-05|NONE|SHIP|s! carefully bold deposits print. furi| +85289|219167|19168|1|11|11947.65|0.02|0.08|A|F|1993-12-22|1993-12-12|1994-01-09|NONE|RAIL|sits wake furiously. quickly even inst| +85289|532722|45233|2|43|75452.10|0.03|0.01|R|F|1994-02-11|1994-01-10|1994-02-20|NONE|FOB|across the ir| +85289|452797|27816|3|34|59492.18|0.02|0.01|R|F|1994-01-22|1993-11-30|1994-02-07|DELIVER IN PERSON|FOB|ic requests. slyly entic| +85289|155275|17779|4|21|27935.67|0.03|0.05|R|F|1994-01-29|1993-12-11|1994-02-26|DELIVER IN PERSON|REG AIR|l ideas. ruthless, regular packag| +85289|695849|33389|5|21|38741.01|0.06|0.01|A|F|1994-02-08|1994-01-16|1994-02-19|NONE|SHIP|kages are slyly. carefully re| +85290|373957|11479|1|28|56866.32|0.08|0.08|R|F|1992-03-29|1992-04-20|1992-03-31|DELIVER IN PERSON|RAIL|odolites according to the slyly unusua| +85290|86713|49215|2|28|47591.88|0.00|0.04|R|F|1992-06-12|1992-04-29|1992-06-19|DELIVER IN PERSON|AIR|ckages according to the express accounts | +85290|369508|19509|3|11|17352.39|0.06|0.06|R|F|1992-04-22|1992-04-22|1992-05-13|COLLECT COD|RAIL|tegrate care| +85290|312923|442|4|5|9679.55|0.07|0.06|R|F|1992-03-17|1992-03-17|1992-03-21|NONE|TRUCK|ithely bold foxes cajole toward the slyly r| +85290|292414|29930|5|33|46411.20|0.04|0.01|A|F|1992-06-06|1992-04-10|1992-07-06|NONE|MAIL|sly special deposit| +85290|593825|43826|6|1|1918.80|0.05|0.04|R|F|1992-05-14|1992-03-27|1992-05-30|NONE|RAIL|sy packages above the special id| +85291|655141|5142|1|33|36171.63|0.07|0.00|N|O|1995-07-15|1995-08-31|1995-07-31|NONE|RAIL| excuses. fluffil| +85292|325326|37833|1|35|47295.85|0.00|0.07|N|O|1996-01-24|1995-12-13|1996-02-17|DELIVER IN PERSON|SHIP|le carefully above the express platele| +85292|737460|37461|2|8|11979.44|0.07|0.03|N|O|1995-10-26|1996-01-09|1995-10-29|COLLECT COD|FOB|ckly. ironic| +85292|477289|39799|3|7|8863.82|0.01|0.03|N|O|1996-01-04|1996-01-13|1996-01-16|DELIVER IN PERSON|RAIL|nstructions wake fluffily agains| +85293|859218|9219|1|43|50618.31|0.04|0.08|R|F|1993-11-01|1993-12-11|1993-11-03|TAKE BACK RETURN|MAIL|ly despite t| +85293|865639|3191|2|40|64183.60|0.07|0.03|A|F|1993-12-04|1993-12-09|1993-12-29|NONE|MAIL|eposits. deposits use about the fu| +85293|790426|40427|3|24|36393.36|0.03|0.06|A|F|1993-11-16|1993-11-11|1993-12-10|TAKE BACK RETURN|REG AIR|foxes. dependenc| +85293|682839|45353|4|50|91090.00|0.04|0.08|A|F|1993-10-12|1993-10-24|1993-10-18|NONE|SHIP|permanently; slyly ironic packages wake qu| +85293|470534|20535|5|46|69207.46|0.05|0.00|A|F|1993-12-26|1993-12-14|1994-01-18|NONE|RAIL|n deposits. furiously special accounts pr| +85294|452468|27487|1|15|21306.60|0.04|0.00|N|O|1997-08-29|1997-08-29|1997-09-14|COLLECT COD|TRUCK|lyly special packag| +85294|629248|4273|2|43|50620.03|0.05|0.07|N|O|1997-10-19|1997-10-09|1997-11-07|NONE|TRUCK|ackages boost blithely slyly express ac| +85294|757472|19988|3|2|3058.88|0.04|0.00|N|O|1997-10-12|1997-10-04|1997-11-04|NONE|REG AIR|e blithely p| +85295|200981|13486|1|40|75278.80|0.09|0.05|R|F|1992-10-01|1992-08-17|1992-10-17|COLLECT COD|REG AIR|ithely at the furiously quiet | +85295|871366|8918|2|41|54830.12|0.02|0.07|A|F|1992-07-06|1992-08-06|1992-07-22|TAKE BACK RETURN|TRUCK|nic, even requests mainta| +85295|44774|44775|3|31|53281.87|0.06|0.03|R|F|1992-07-22|1992-08-15|1992-07-28|NONE|TRUCK|onic pinto beans. final pinto beans acr| +85295|503245|3246|4|8|9985.76|0.03|0.03|A|F|1992-09-30|1992-07-14|1992-10-24|TAKE BACK RETURN|TRUCK|ter the carefully unusual | +85295|25536|13037|5|21|30692.13|0.05|0.01|A|F|1992-09-03|1992-07-22|1992-09-10|COLLECT COD|REG AIR|are blithely a| +85320|833423|8456|1|16|21702.08|0.03|0.06|N|O|1996-03-11|1996-01-29|1996-03-20|DELIVER IN PERSON|SHIP|p carefully. ideas use furious| +85320|332711|45218|2|30|52311.00|0.00|0.04|N|O|1996-04-08|1996-02-06|1996-04-29|COLLECT COD|AIR|ns. packages after the sl| +85320|864709|27227|3|18|30125.88|0.00|0.08|N|O|1995-12-31|1996-01-27|1996-01-29|COLLECT COD|RAIL|unusual pinto beans| +85320|160228|22732|4|24|30917.28|0.05|0.04|N|O|1996-02-29|1996-03-08|1996-03-27|DELIVER IN PERSON|TRUCK|l accounts integrate finally according to t| +85321|815416|27933|1|39|51923.43|0.08|0.07|R|F|1993-05-12|1993-03-27|1993-05-18|DELIVER IN PERSON|RAIL|ckages sleep idly special deposits. | +85321|682269|19809|2|11|13763.53|0.05|0.06|A|F|1993-04-27|1993-04-17|1993-05-13|TAKE BACK RETURN|MAIL|lyly at the regular theodolites. accoun| +85321|885313|47831|3|2|2596.54|0.09|0.00|A|F|1993-04-02|1993-04-09|1993-04-14|NONE|AIR|olites cajole slowly carefully ironic| +85321|454120|29139|4|30|32223.00|0.06|0.08|R|F|1993-02-11|1993-03-19|1993-03-02|TAKE BACK RETURN|SHIP|es; furiously silent requests cajole as| +85321|391923|16938|5|31|62462.21|0.09|0.01|A|F|1993-03-17|1993-04-08|1993-04-07|COLLECT COD|MAIL|ing accounts. fluffily ironic senti| +85321|41797|29298|6|22|38253.38|0.07|0.04|R|F|1993-05-08|1993-03-09|1993-06-01|COLLECT COD|TRUCK|ges cajole blithely about the busy accoun| +85321|479503|29504|7|39|57816.72|0.07|0.07|R|F|1993-02-21|1993-04-02|1993-03-03|NONE|AIR| nag quickly even depos| +85322|997364|34922|1|5|7306.60|0.10|0.00|N|O|1997-10-15|1997-10-19|1997-10-17|COLLECT COD|AIR|regular, bold attainments wake c| +85322|688953|38954|2|5|9709.60|0.09|0.01|N|O|1997-11-02|1997-11-20|1997-11-08|DELIVER IN PERSON|REG AIR|fy requests engage inside the unusual, | +85322|217990|42999|3|48|91583.04|0.09|0.07|N|O|1997-10-07|1997-10-26|1997-10-11|TAKE BACK RETURN|MAIL|press, bold excuses. furiously pending | +85323|532568|20099|1|46|73624.84|0.01|0.08|R|F|1994-11-12|1994-11-04|1994-11-28|DELIVER IN PERSON|RAIL|al ideas use quick| +85323|864030|14031|2|24|23855.76|0.05|0.05|R|F|1994-09-28|1994-09-28|1994-10-20|DELIVER IN PERSON|SHIP|t about the blithely expr| +85323|743402|18431|3|12|17344.44|0.03|0.02|R|F|1994-12-03|1994-11-04|1994-12-10|DELIVER IN PERSON|REG AIR|c, regular re| +85323|345400|20413|4|1|1445.39|0.00|0.07|R|F|1994-11-17|1994-09-14|1994-11-27|TAKE BACK RETURN|AIR| furiously ex| +85323|127245|2250|5|15|19083.60|0.06|0.08|R|F|1994-09-26|1994-10-05|1994-10-09|TAKE BACK RETURN|FOB|kly ironic accounts. | +85324|903784|3785|1|19|33967.06|0.08|0.03|N|O|1997-04-22|1997-03-05|1997-05-18|NONE|REG AIR|ording to the caref| +85324|892786|30338|2|23|40911.02|0.10|0.08|N|O|1997-02-21|1997-03-27|1997-03-21|DELIVER IN PERSON|TRUCK| pinto beans sl| +85324|44283|44284|3|21|25772.88|0.10|0.06|N|O|1997-02-02|1997-04-10|1997-03-04|NONE|MAIL|quests cajole slyly. ironic, r| +85324|249759|49760|4|6|10252.44|0.00|0.05|N|O|1997-02-11|1997-03-13|1997-02-20|DELIVER IN PERSON|SHIP|uthlessly ironic packages. f| +85325|356796|44318|1|32|59288.96|0.06|0.01|A|F|1993-12-24|1994-02-20|1994-01-02|COLLECT COD|MAIL| print quickly after the blithely b| +85325|667748|5288|2|4|6862.84|0.10|0.05|R|F|1994-02-20|1994-03-21|1994-03-21|TAKE BACK RETURN|RAIL|even requests serve along the | +85325|835609|10642|3|46|71049.76|0.03|0.01|A|F|1994-04-21|1994-02-27|1994-05-13|DELIVER IN PERSON|REG AIR|s. doggedly regular accounts | +85325|80301|30302|4|46|58939.80|0.00|0.04|R|F|1994-01-04|1994-02-13|1994-01-18|TAKE BACK RETURN|SHIP|silent deposits. theodolites affix regularl| +85325|607494|7495|5|7|9810.22|0.02|0.05|R|F|1994-01-23|1994-02-17|1994-02-05|DELIVER IN PERSON|REG AIR|ke along the slyl| +85325|143428|30935|6|30|44142.60|0.04|0.06|R|F|1993-12-27|1994-02-27|1993-12-29|DELIVER IN PERSON|TRUCK|final, special a| +85326|814258|14259|1|31|36338.51|0.02|0.08|N|O|1997-08-19|1997-09-19|1997-09-16|DELIVER IN PERSON|MAIL|hely along the foxes. carefull| +85326|233358|45863|2|41|52944.94|0.07|0.03|N|O|1997-10-31|1997-09-06|1997-11-15|COLLECT COD|AIR|g to the pen| +85326|36426|36427|3|37|50409.54|0.08|0.04|N|O|1997-09-16|1997-10-19|1997-10-08|COLLECT COD|FOB|rs. requests are among | +85326|203805|16310|4|48|82021.92|0.00|0.06|N|O|1997-09-16|1997-10-03|1997-10-05|TAKE BACK RETURN|FOB|e carefully unusual ideas| +85326|340237|15250|5|46|58752.12|0.04|0.05|N|O|1997-08-06|1997-10-14|1997-09-01|DELIVER IN PERSON|SHIP|press, bold foxes aff| +85327|820885|33402|1|3|5417.52|0.00|0.03|A|F|1993-10-12|1993-11-21|1993-10-30|NONE|MAIL|ickly bold theo| +85327|603164|28189|2|44|46953.72|0.04|0.08|R|F|1993-10-01|1993-12-01|1993-10-09|DELIVER IN PERSON|TRUCK|lly express asymptotes are sl| +85327|363962|1484|3|24|48622.80|0.07|0.08|R|F|1994-01-13|1993-12-16|1994-02-08|TAKE BACK RETURN|FOB|hins. slyly iron| +85327|97829|10331|4|33|60285.06|0.09|0.03|A|F|1993-11-10|1993-11-29|1993-11-30|NONE|REG AIR|ely. ironic instructions boost quic| +85327|198967|36477|5|49|101232.04|0.01|0.08|A|F|1993-11-13|1993-12-16|1993-12-03|NONE|FOB|ular, silent depos| +85327|31617|6618|6|8|12388.88|0.03|0.02|R|F|1993-12-20|1993-11-16|1993-12-26|TAKE BACK RETURN|MAIL|scapades. regular t| +85352|143874|43875|1|16|30685.92|0.07|0.07|A|F|1994-11-07|1994-08-19|1994-11-16|COLLECT COD|REG AIR|theodolites are furiously accordi| +85352|81324|43826|2|36|46991.52|0.02|0.06|A|F|1994-11-11|1994-10-10|1994-11-25|TAKE BACK RETURN|SHIP|ackages: unusual, ironic theodolites pl| +85352|807654|45203|3|50|78080.50|0.10|0.05|A|F|1994-07-26|1994-09-11|1994-08-19|COLLECT COD|REG AIR|ly slyly final requests.| +85352|239648|2153|4|37|58742.31|0.01|0.05|R|F|1994-08-22|1994-10-12|1994-08-26|COLLECT COD|REG AIR| final dependencies are | +85352|757299|44845|5|14|18987.64|0.09|0.03|A|F|1994-11-08|1994-10-14|1994-11-15|NONE|SHIP|ole blithely abov| +85353|800444|445|1|14|18821.60|0.08|0.07|R|F|1994-01-15|1994-02-01|1994-01-30|DELIVER IN PERSON|REG AIR|among the carefully even packages. fu| +85353|50707|708|2|5|8288.50|0.09|0.08|R|F|1993-12-30|1994-03-01|1994-01-16|NONE|FOB|quickly regular deposi| +85353|226928|26929|3|12|22258.92|0.07|0.05|A|F|1994-01-25|1994-02-02|1994-01-30|NONE|RAIL|y regular foxes boost c| +85353|968972|6530|4|26|53064.18|0.01|0.03|A|F|1994-01-25|1994-03-20|1994-02-08|NONE|FOB|y regular pearls. even asymptotes doubt car| +85353|509052|46583|5|33|35013.99|0.07|0.00|R|F|1994-02-16|1994-02-03|1994-02-17|NONE|TRUCK|f the fluffily even requests. | +85354|693455|5969|1|5|7242.10|0.07|0.00|N|O|1996-04-26|1996-05-21|1996-05-13|NONE|FOB|c dugouts. blithely busy notornis prin| +85354|882005|32006|2|14|13817.44|0.07|0.03|N|O|1996-04-23|1996-06-05|1996-04-29|COLLECT COD|FOB|ons. slyly regular ti| +85354|850076|77|3|29|29754.87|0.05|0.01|N|O|1996-04-16|1996-04-14|1996-04-25|NONE|MAIL|s the care| +85354|210813|48326|4|10|17238.00|0.05|0.07|N|O|1996-03-24|1996-05-21|1996-04-05|NONE|FOB|encies wake quickly. carefully special ide| +85354|131172|43675|5|36|43314.12|0.07|0.04|N|O|1996-06-13|1996-04-28|1996-07-06|NONE|REG AIR| haggle fluffily a| +85354|593976|31510|6|32|66238.40|0.05|0.01|N|O|1996-05-22|1996-04-15|1996-06-08|COLLECT COD|TRUCK|ut the blithely final excuses. fur| +85355|263051|25557|1|6|6084.24|0.07|0.03|N|O|1997-08-31|1997-10-28|1997-09-25|DELIVER IN PERSON|RAIL|timents. courts use slyl| +85355|97948|35452|2|24|46702.56|0.07|0.06|N|O|1997-11-22|1997-10-15|1997-12-04|TAKE BACK RETURN|RAIL|to beans. express, final asymptotes| +85355|195936|45937|3|45|91436.85|0.04|0.00|N|O|1997-11-13|1997-11-03|1997-11-22|TAKE BACK RETURN|MAIL|l courts impress. slyly unusual account| +85355|82102|44604|4|50|54205.00|0.00|0.04|N|O|1997-08-31|1997-10-20|1997-09-01|DELIVER IN PERSON|REG AIR|hely blithely final i| +85355|876353|26354|5|25|33232.75|0.05|0.04|N|O|1997-10-06|1997-10-19|1997-10-13|COLLECT COD|MAIL|c instructions affix fur| +85355|852885|27920|6|38|69837.92|0.08|0.08|N|O|1997-10-23|1997-10-04|1997-11-07|TAKE BACK RETURN|RAIL|osits wake blithely regu| +85355|436855|49364|7|4|7167.32|0.10|0.06|N|O|1997-12-18|1997-10-06|1998-01-12|COLLECT COD|MAIL|ges. slyly pending requests boost fluffily| +85356|214679|2192|1|18|28685.88|0.03|0.08|N|O|1997-05-04|1997-04-19|1997-05-20|TAKE BACK RETURN|AIR|regular foxes sleep | +85356|96877|46878|2|18|33729.66|0.10|0.06|N|O|1997-02-25|1997-03-15|1997-03-22|DELIVER IN PERSON|MAIL|lyly unusual packages integrate bli| +85357|513677|38698|1|37|62554.05|0.04|0.00|N|O|1996-01-04|1996-01-12|1996-01-13|COLLECT COD|MAIL|rts are. slyly | +85357|354122|16630|2|16|18817.76|0.03|0.03|N|O|1996-01-29|1996-01-23|1996-02-27|DELIVER IN PERSON|REG AIR| the quickly final ideas doubt busily abo| +85357|726388|26389|3|3|4243.05|0.02|0.04|N|O|1995-11-21|1996-02-10|1995-12-10|COLLECT COD|TRUCK|he regular pinto bea| +85358|248559|36072|1|19|28643.26|0.02|0.07|N|O|1996-03-08|1996-03-19|1996-03-12|DELIVER IN PERSON|FOB|ffily carefully special | +85358|514570|39591|2|42|66551.10|0.00|0.06|N|O|1996-05-11|1996-04-20|1996-05-24|DELIVER IN PERSON|RAIL| slyly according to the ac| +85358|369685|19686|3|14|24565.38|0.01|0.03|N|O|1996-04-23|1996-04-30|1996-05-09|TAKE BACK RETURN|FOB|. realms a| +85358|285190|47696|4|28|32905.04|0.00|0.08|N|O|1996-04-16|1996-04-07|1996-05-15|DELIVER IN PERSON|AIR|ies against the carefully unusua| +85359|865496|3048|1|24|35074.80|0.01|0.01|N|O|1996-08-01|1996-07-27|1996-08-04|TAKE BACK RETURN|TRUCK|usly blithely final deposits. quietl| +85359|390603|28125|2|8|13548.72|0.02|0.08|N|O|1996-05-30|1996-07-03|1996-06-24|COLLECT COD|AIR|usly ironic requests. reg| +85359|856248|31283|3|13|15654.60|0.08|0.02|N|O|1996-08-01|1996-08-08|1996-08-08|TAKE BACK RETURN|MAIL|al packages haggle furiously unusual, r| +85359|943773|18810|4|6|10900.38|0.09|0.02|N|O|1996-08-13|1996-07-13|1996-09-08|NONE|FOB|ep. regular, regular deposits solv| +85359|989642|27200|5|10|17316.00|0.03|0.01|N|O|1996-06-22|1996-08-17|1996-07-18|NONE|SHIP|n escapades cajole. unusual ideas nag caref| +85359|904287|29324|6|22|28407.28|0.10|0.01|N|O|1996-08-29|1996-08-04|1996-09-19|NONE|FOB|g the quickly final| +85359|340287|2794|7|3|3981.81|0.01|0.02|N|O|1996-07-09|1996-07-03|1996-07-17|DELIVER IN PERSON|AIR|sly final ideas boost slyly som| +85384|197444|47445|1|19|29287.36|0.09|0.07|A|F|1994-12-19|1994-12-22|1994-12-23|COLLECT COD|MAIL|kages. ideas | +85384|432745|45254|2|14|23488.08|0.05|0.01|R|F|1995-01-25|1994-12-16|1995-02-03|NONE|AIR| even, even requests boost careful| +85384|135137|10142|3|36|42196.68|0.00|0.04|A|F|1994-10-21|1994-12-17|1994-11-05|DELIVER IN PERSON|REG AIR|e carefully| +85385|921399|8954|1|49|69597.15|0.06|0.04|N|O|1996-02-10|1996-02-02|1996-02-17|DELIVER IN PERSON|MAIL|ideas! furiously even excuses solve. slyly| +85385|943235|30790|2|28|35789.32|0.00|0.07|N|O|1996-04-10|1996-03-20|1996-04-24|TAKE BACK RETURN|AIR|odolites across the regular de| +85385|943862|6381|3|13|24775.66|0.08|0.07|N|O|1996-02-20|1996-03-11|1996-03-18|COLLECT COD|REG AIR| sleep furiously. unusual, unusual foxes | +85385|476449|13977|4|7|9977.94|0.07|0.02|N|O|1996-04-18|1996-03-18|1996-04-19|DELIVER IN PERSON|MAIL| packages sleep blithely express senti| +85386|355905|18413|1|14|27452.46|0.08|0.00|A|F|1995-04-11|1995-01-24|1995-04-23|DELIVER IN PERSON|RAIL|y according to | +85386|687600|25140|2|34|53977.38|0.03|0.05|R|F|1995-02-24|1995-02-16|1995-03-16|COLLECT COD|MAIL|ges detect about t| +85386|485298|47808|3|17|21815.59|0.07|0.04|R|F|1994-12-19|1995-03-01|1995-01-13|NONE|TRUCK| maintain around the ideas| +85386|401695|39220|4|18|28740.06|0.07|0.04|R|F|1994-12-25|1995-02-22|1995-01-06|TAKE BACK RETURN|MAIL|c hockey players | +85386|277334|27335|5|32|41962.24|0.06|0.01|R|F|1995-03-04|1995-02-09|1995-03-10|TAKE BACK RETURN|MAIL| final dugouts sleep aft| +85387|549102|49103|1|1|1151.08|0.09|0.05|A|F|1994-10-02|1994-09-15|1994-10-04|TAKE BACK RETURN|REG AIR|to the final platelets. bold, unusual reque| +85388|692437|29977|1|34|48599.60|0.08|0.08|R|F|1995-04-13|1995-01-13|1995-05-01|NONE|AIR|s sleep along the un| +85388|772529|35045|2|31|49646.19|0.01|0.01|R|F|1995-02-06|1995-02-01|1995-02-18|DELIVER IN PERSON|AIR|deposits are bli| +85388|882207|44725|3|3|3567.48|0.04|0.04|A|F|1995-03-13|1995-02-22|1995-03-23|COLLECT COD|TRUCK|e bold, final requests. car| +85388|236592|24105|4|34|51971.72|0.03|0.01|R|F|1995-04-11|1995-01-24|1995-04-21|NONE|FOB|wake blith| +85388|400970|13479|5|12|22451.40|0.02|0.01|R|F|1995-04-04|1995-03-06|1995-04-14|COLLECT COD|REG AIR|e blithely fina| +85388|87717|37718|6|35|59664.85|0.00|0.05|R|F|1995-01-08|1995-02-08|1995-01-16|DELIVER IN PERSON|REG AIR|lyly final accounts wake quic| +85389|522117|34628|1|46|52398.14|0.00|0.01|N|O|1997-09-30|1997-11-06|1997-10-25|DELIVER IN PERSON|RAIL|y whithout the slyly si| +85389|216731|41740|2|17|28011.24|0.00|0.02|N|O|1997-10-29|1997-10-14|1997-11-27|COLLECT COD|MAIL|furiously furiously expres| +85389|585651|10674|3|27|46889.01|0.00|0.07|N|O|1997-10-18|1997-11-11|1997-10-22|NONE|REG AIR| dependencies ag| +85389|32113|19614|4|26|27172.86|0.08|0.08|N|O|1997-09-06|1997-10-27|1997-09-10|TAKE BACK RETURN|TRUCK| silent deposits| +85389|712686|25201|5|5|8493.25|0.06|0.00|N|O|1997-12-23|1997-10-30|1997-12-25|TAKE BACK RETURN|MAIL|counts. regular, final | +85390|17547|17548|1|37|54187.98|0.10|0.07|N|O|1997-10-21|1997-10-04|1997-11-09|TAKE BACK RETURN|TRUCK|in. slyly pending pat| +85391|65363|2867|1|33|43835.88|0.09|0.03|R|F|1992-08-17|1992-08-25|1992-08-27|NONE|RAIL| slyly. final, special foxes cajole | +85391|550904|905|2|7|13684.16|0.00|0.02|A|F|1992-09-26|1992-08-23|1992-09-28|NONE|REG AIR|blithely iro| +85391|40186|15187|3|22|24775.96|0.05|0.00|A|F|1992-10-08|1992-09-20|1992-11-07|DELIVER IN PERSON|SHIP|aves wake furio| +85391|399663|49664|4|16|28202.40|0.08|0.03|A|F|1992-10-03|1992-08-09|1992-10-28|NONE|SHIP|iously express t| +85416|79670|17174|1|44|72585.48|0.03|0.05|R|F|1994-07-07|1994-06-20|1994-07-20|TAKE BACK RETURN|RAIL| excuses sleep slyly quickl| +85416|8579|33580|2|24|35701.68|0.07|0.02|R|F|1994-05-27|1994-06-10|1994-06-10|TAKE BACK RETURN|SHIP|g packages. slyly | +85416|173070|23071|3|22|25147.54|0.04|0.08|R|F|1994-07-17|1994-06-07|1994-08-10|COLLECT COD|TRUCK| ironic accounts. fluffily ironic accoun| +85416|787390|37391|4|12|17728.32|0.04|0.00|A|F|1994-07-29|1994-06-29|1994-08-10|DELIVER IN PERSON|FOB|regular, final theodolites| +85416|662550|37577|5|17|25712.84|0.00|0.04|R|F|1994-05-29|1994-05-18|1994-06-16|COLLECT COD|REG AIR|ithely quick hockey play| +85416|472722|10250|6|28|47451.60|0.07|0.02|R|F|1994-07-03|1994-05-16|1994-08-02|NONE|FOB|pendencies. even d| +85416|25627|13128|7|48|74525.76|0.07|0.04|R|F|1994-04-27|1994-05-15|1994-05-16|DELIVER IN PERSON|AIR|sly after the slowly| +85417|702984|40527|1|40|79478.00|0.04|0.02|N|O|1998-01-27|1998-02-19|1998-02-10|NONE|FOB|ts are slyly. busy, express instructions bo| +85417|45365|45366|2|43|56345.48|0.01|0.06|N|O|1998-04-08|1998-02-17|1998-04-22|COLLECT COD|MAIL|eans at the quickly final acco| +85417|438554|26079|3|32|47760.96|0.03|0.04|N|O|1998-01-29|1998-01-14|1998-02-22|COLLECT COD|REG AIR|uickly unusual gro| +85417|775299|12845|4|21|28859.46|0.00|0.07|N|O|1997-12-20|1998-01-19|1997-12-23|NONE|AIR|nal instructions. fluffily unusual packag| +85417|447930|10439|5|1|1877.91|0.07|0.00|N|O|1998-02-01|1998-02-10|1998-02-14|DELIVER IN PERSON|AIR|efully furiously even platelets. carefully| +85418|575142|25143|1|31|37730.72|0.09|0.05|N|O|1996-11-18|1996-10-12|1996-12-03|NONE|TRUCK| express pinto beans cajole caref| +85418|405477|43002|2|30|41473.50|0.08|0.04|N|O|1996-12-16|1996-10-27|1996-12-31|COLLECT COD|TRUCK|nding accounts. regular, regular | +85418|836891|24440|3|41|74941.85|0.02|0.01|N|O|1996-12-11|1996-10-21|1996-12-27|NONE|AIR|ng to the finally regular packages cajo| +85419|936337|36338|1|32|43945.28|0.05|0.04|N|O|1997-05-02|1997-04-15|1997-05-25|DELIVER IN PERSON|SHIP|ages. foxes cajole quickly. | +85419|4176|4177|2|40|43206.80|0.01|0.01|N|O|1997-03-08|1997-03-23|1997-03-29|COLLECT COD|RAIL|ep furiously across the carefull| +85420|636846|11871|1|13|23176.53|0.04|0.04|A|F|1994-11-06|1994-12-23|1994-12-05|NONE|RAIL|nd the blithely ironic accounts. fox| +85420|468041|18042|2|11|11099.22|0.01|0.00|R|F|1994-12-16|1994-11-25|1994-12-29|NONE|SHIP|s. silent deposits| +85420|352263|2264|3|43|56555.75|0.06|0.02|R|F|1994-12-28|1994-10-30|1995-01-26|TAKE BACK RETURN|TRUCK|arefully even deposits| +85420|476032|38542|4|28|28224.28|0.08|0.05|A|F|1994-11-23|1994-11-22|1994-12-07|TAKE BACK RETURN|FOB|le theodolites. carefully bold reque| +85420|662824|25338|5|15|26801.85|0.07|0.00|A|F|1994-11-05|1994-12-28|1994-11-13|DELIVER IN PERSON|AIR|rate furious| +85420|78164|40666|6|31|35406.96|0.07|0.04|R|F|1995-01-09|1994-12-09|1995-01-26|COLLECT COD|AIR|l dependencies. blithely spec| +85420|700135|37678|7|23|26107.30|0.09|0.07|A|F|1994-11-25|1994-12-04|1994-12-07|COLLECT COD|REG AIR|pths after the fin| +85421|166040|28544|1|38|42029.52|0.04|0.01|A|F|1994-03-01|1994-04-21|1994-03-29|TAKE BACK RETURN|SHIP|nt accounts sleep carefully above| +85421|632795|32796|2|24|41466.24|0.07|0.05|A|F|1994-06-12|1994-05-07|1994-06-13|NONE|RAIL|es. doggedly u| +85421|384944|34945|3|48|97388.64|0.01|0.03|A|F|1994-03-17|1994-04-29|1994-03-19|DELIVER IN PERSON|MAIL|al dependencies alon| +85421|746412|46413|4|23|33542.74|0.04|0.07|R|F|1994-04-02|1994-04-10|1994-04-16|NONE|AIR| blithely expre| +85422|479144|29145|1|27|30324.24|0.05|0.07|N|O|1997-05-13|1997-03-05|1997-06-07|COLLECT COD|AIR| pending warthogs. blithely unusual fox| +85422|969980|45019|2|43|88147.42|0.04|0.05|N|O|1997-03-11|1997-02-25|1997-03-29|NONE|RAIL|nstructions against the fluffily bold r| +85422|439868|2377|3|26|47003.84|0.04|0.03|N|O|1997-03-18|1997-02-25|1997-03-26|DELIVER IN PERSON|MAIL|s! slyly even deposits haggle. quick| +85422|846365|8882|4|29|38028.28|0.00|0.03|N|O|1997-03-22|1997-03-03|1997-03-26|COLLECT COD|MAIL|ealthy asymptotes nag? fi| +85422|848894|23927|5|19|35014.15|0.09|0.06|N|O|1997-05-24|1997-04-21|1997-06-23|NONE|RAIL|e even, regular requests. final, even acc| +85422|358445|8446|6|29|43599.47|0.06|0.05|N|O|1997-02-08|1997-03-18|1997-03-04|NONE|REG AIR|integrate blithely asymptot| +85422|377768|15290|7|15|27686.25|0.04|0.07|N|O|1997-04-02|1997-04-09|1997-04-18|DELIVER IN PERSON|FOB|ideas wake al| +85423|133696|46199|1|42|72646.98|0.05|0.06|N|O|1998-06-10|1998-04-27|1998-06-20|COLLECT COD|MAIL|sleep blithely accounts. spec| +85423|17249|17250|2|24|27989.76|0.01|0.04|N|O|1998-04-09|1998-06-10|1998-05-02|NONE|AIR|iously along the even foxes. fluffily spec| +85423|888632|38633|3|14|22688.26|0.01|0.00|N|O|1998-05-31|1998-06-02|1998-06-23|NONE|REG AIR|ns haggle blithely among the slyl| +85423|225908|25909|4|50|91694.50|0.08|0.03|N|O|1998-04-17|1998-05-05|1998-04-23|TAKE BACK RETURN|FOB|x across the dar| +85423|822446|34963|5|1|1368.40|0.02|0.00|N|O|1998-07-12|1998-06-11|1998-08-06|NONE|FOB| accounts are slyly deposits. slowl| +85423|841294|16327|6|47|58056.75|0.10|0.03|N|O|1998-06-11|1998-06-12|1998-06-13|COLLECT COD|MAIL|ly-- quickly quiet plate| +85448|853042|28077|1|25|24875.00|0.06|0.05|R|F|1994-08-27|1994-07-04|1994-09-18|NONE|RAIL| even accounts above the quick, ruthl| +85449|279384|29385|1|50|68168.50|0.08|0.01|A|F|1993-07-25|1993-08-29|1993-08-16|COLLECT COD|RAIL|se carefully regular epitaphs| +85449|593644|43645|2|38|66029.56|0.04|0.08|R|F|1993-09-03|1993-08-28|1993-09-07|NONE|MAIL|uick accounts. unusual requ| +85449|373972|23973|3|27|55240.92|0.07|0.04|A|F|1993-09-15|1993-09-14|1993-10-07|NONE|MAIL|s the carefully even theodolites. spec| +85449|334433|21952|4|42|61631.64|0.08|0.07|A|F|1993-10-10|1993-09-08|1993-10-21|NONE|MAIL|refully daring deposits. quickly e| +85450|742423|29966|1|41|60080.99|0.05|0.06|R|F|1993-09-14|1993-09-21|1993-09-29|NONE|RAIL|thely until the iro| +85450|901572|1573|2|15|23602.95|0.04|0.05|A|F|1993-09-06|1993-09-20|1993-10-06|NONE|SHIP|ways against the furiously bold pa| +85450|711333|23848|3|2|2688.60|0.10|0.03|A|F|1993-08-21|1993-11-05|1993-09-06|TAKE BACK RETURN|RAIL|slyly ironic requests. fluffy, special pi| +85450|372674|22675|4|32|55893.12|0.00|0.05|A|F|1993-09-05|1993-11-02|1993-09-10|NONE|AIR|efully across the final| +85450|529918|29919|5|49|95446.61|0.03|0.06|R|F|1993-10-12|1993-09-26|1993-11-07|COLLECT COD|REG AIR|nic accounts acr| +85450|316602|16603|6|46|74455.14|0.01|0.01|A|F|1993-12-14|1993-10-15|1993-12-31|COLLECT COD|RAIL|fter the neve| +85451|542047|17068|1|4|4356.08|0.06|0.06|A|F|1995-04-04|1995-01-27|1995-04-09|COLLECT COD|MAIL|nt, pending deposits. blithely ir| +85451|170441|32945|2|27|40808.88|0.09|0.02|R|F|1995-01-12|1995-03-04|1995-02-10|DELIVER IN PERSON|SHIP|accounts. bold packages wa| +85451|601768|39305|3|43|71798.39|0.04|0.08|A|F|1995-02-03|1995-01-24|1995-02-23|DELIVER IN PERSON|AIR|ly regular reque| +85451|905132|42687|4|26|29564.34|0.02|0.05|R|F|1995-01-11|1995-02-07|1995-02-06|TAKE BACK RETURN|FOB|nside the accounts. carefully regular | +85452|65622|15623|1|18|28577.16|0.09|0.01|R|F|1994-03-21|1994-02-16|1994-03-31|NONE|SHIP|ess pinto beans. regular accounts sleep | +85452|908141|8142|2|35|40218.50|0.03|0.00|R|F|1994-02-04|1994-02-13|1994-02-11|TAKE BACK RETURN|RAIL| pending, final excuses engage a| +85453|605212|42749|1|44|49155.92|0.05|0.01|A|F|1994-09-18|1994-11-13|1994-09-27|DELIVER IN PERSON|AIR|und the carefully even re| +85454|310655|35668|1|18|29981.52|0.07|0.08|A|F|1993-10-24|1993-10-13|1993-11-04|COLLECT COD|AIR|re blithely above | +85454|169136|31640|2|19|22897.47|0.07|0.05|R|F|1993-10-25|1993-09-12|1993-11-14|TAKE BACK RETURN|TRUCK|hely toward the regularly pe| +85454|664791|14792|3|40|70230.40|0.09|0.04|R|F|1993-10-27|1993-10-10|1993-11-20|COLLECT COD|REG AIR|s. even, ironic deposits| +85455|881590|6625|1|40|62862.00|0.01|0.04|N|O|1996-04-19|1996-03-04|1996-05-12|DELIVER IN PERSON|REG AIR| final requests are bold, bold inst| +85480|471569|21570|1|3|4621.62|0.09|0.08|N|O|1996-10-09|1996-10-23|1996-10-22|DELIVER IN PERSON|SHIP|ptotes sleep slyly-- regu| +85481|393107|18122|1|47|56404.23|0.10|0.06|N|O|1997-02-09|1997-02-26|1997-03-05|TAKE BACK RETURN|AIR|quickly even ac| +85482|247287|47288|1|5|6171.35|0.08|0.06|A|F|1994-05-02|1994-03-31|1994-05-08|NONE|TRUCK|ly ironic de| +85482|139002|26509|2|45|46845.00|0.08|0.06|A|F|1994-06-19|1994-04-24|1994-06-22|COLLECT COD|REG AIR|press, even asymptotes. | +85482|205801|43314|3|48|81925.92|0.05|0.04|R|F|1994-05-31|1994-04-17|1994-06-23|COLLECT COD|AIR|ously. regular theodolite| +85482|894684|44685|4|49|82253.36|0.10|0.05|R|F|1994-04-23|1994-04-20|1994-05-10|COLLECT COD|REG AIR|ang blithely silent depo| +85482|939531|2050|5|35|54967.15|0.04|0.04|A|F|1994-04-11|1994-05-12|1994-05-02|DELIVER IN PERSON|RAIL| after the accounts | +85483|480621|5640|1|11|17617.60|0.01|0.01|A|F|1992-05-08|1992-04-18|1992-05-11|COLLECT COD|AIR|inal account| +85484|19441|19442|1|50|68022.00|0.08|0.02|N|O|1997-06-21|1997-07-08|1997-06-26|TAKE BACK RETURN|SHIP|ully. ideas haggle blithely about t| +85484|732032|7061|2|4|4256.00|0.01|0.01|N|O|1997-05-23|1997-05-26|1997-05-30|NONE|FOB|accounts. slyly regu| +85484|254295|29306|3|34|42475.52|0.02|0.06|N|O|1997-07-23|1997-06-15|1997-08-07|DELIVER IN PERSON|SHIP|ross the slyly regular dolphin| +85484|926001|26002|4|17|17458.32|0.01|0.07|N|O|1997-04-17|1997-06-05|1997-05-11|NONE|AIR|s. even, final theodolites| +85484|285036|10047|5|3|3063.06|0.02|0.08|N|O|1997-05-29|1997-05-31|1997-06-08|NONE|TRUCK|refully unusual | +85485|208296|20801|1|23|27698.44|0.02|0.00|N|O|1997-07-03|1997-05-18|1997-07-13|TAKE BACK RETURN|FOB| foxes wake slyly furiously even| +85485|828691|3724|2|36|58307.40|0.05|0.01|N|O|1997-04-12|1997-06-18|1997-04-26|TAKE BACK RETURN|FOB|lent foxes run blithely a| +85485|801452|39001|3|33|44662.53|0.05|0.01|N|O|1997-05-24|1997-06-15|1997-06-14|TAKE BACK RETURN|SHIP|packages wake q| +85485|991572|41573|4|40|66541.20|0.08|0.01|N|O|1997-04-24|1997-05-20|1997-04-27|COLLECT COD|TRUCK|sits boost.| +85485|344689|7196|5|2|3467.34|0.06|0.01|N|O|1997-06-04|1997-05-14|1997-06-24|COLLECT COD|TRUCK|onic attainments sleep regularly regular | +85485|182132|44636|6|37|44922.81|0.05|0.07|N|O|1997-06-26|1997-06-01|1997-07-14|NONE|FOB|y-- fluffily pending instructions| +85485|80812|43314|7|15|26892.15|0.07|0.02|N|O|1997-04-24|1997-05-28|1997-05-10|TAKE BACK RETURN|RAIL|final requests haggle against th| +85486|192019|4523|1|14|15554.14|0.02|0.01|R|F|1992-12-28|1992-11-03|1993-01-19|DELIVER IN PERSON|REG AIR|c, regular instructions integrate furi| +85487|39958|2459|1|38|72122.10|0.04|0.07|N|O|1997-05-27|1997-06-08|1997-06-11|TAKE BACK RETURN|AIR|furiously dog| +85487|558496|33519|2|24|37307.28|0.06|0.03|N|O|1997-07-26|1997-06-15|1997-08-04|TAKE BACK RETURN|SHIP|sual packag| +85487|638634|38635|3|35|55041.00|0.10|0.06|N|O|1997-05-22|1997-05-15|1997-06-09|NONE|AIR|unusual accounts. ironic, regular pi| +85487|511625|11626|4|16|26185.60|0.00|0.02|N|O|1997-07-10|1997-06-25|1997-08-02|DELIVER IN PERSON|REG AIR| dependencies use. busily regular real| +85487|878027|15579|5|41|41204.18|0.03|0.06|N|O|1997-05-22|1997-06-01|1997-05-30|TAKE BACK RETURN|AIR|ly even exc| +85487|985083|22641|6|49|57233.96|0.06|0.05|N|O|1997-05-02|1997-05-24|1997-05-26|COLLECT COD|MAIL|f the special, even deposits. slyl| +85512|769522|32038|1|36|57293.64|0.09|0.00|A|F|1995-01-05|1995-01-11|1995-02-02|COLLECT COD|REG AIR|ackages mold packages| +85512|342081|4588|2|49|55030.43|0.01|0.02|R|F|1994-12-03|1995-01-28|1994-12-05|DELIVER IN PERSON|FOB|accounts. furiously ironic| +85512|345158|45159|3|3|3609.42|0.09|0.00|R|F|1995-01-05|1994-12-27|1995-01-11|DELIVER IN PERSON|RAIL|osits sleep slyly speci| +85512|68780|18781|4|40|69951.20|0.03|0.08|A|F|1994-12-28|1994-12-19|1995-01-05|DELIVER IN PERSON|RAIL|kages haggle slyly carefully final dependen| +85512|972999|48038|5|45|93237.75|0.03|0.03|R|F|1994-12-25|1994-12-27|1995-01-06|DELIVER IN PERSON|SHIP|cross the furiously ironic d| +85512|186406|48910|6|17|25370.80|0.08|0.07|R|F|1994-11-16|1994-12-16|1994-12-07|DELIVER IN PERSON|REG AIR| final acc| +85512|915424|2979|7|32|46060.16|0.07|0.01|R|F|1995-01-27|1994-12-10|1995-02-04|DELIVER IN PERSON|TRUCK| instructions. express, silent | +85513|515852|28363|1|40|74713.20|0.09|0.08|N|O|1997-12-01|1997-12-25|1997-12-10|NONE|MAIL|foxes. ironic instructions thrash care| +85513|911743|24262|2|35|61414.50|0.08|0.01|N|O|1998-01-02|1997-12-12|1998-01-10|DELIVER IN PERSON|TRUCK| blithely carefully quick somas. fluffil| +85513|652441|39981|3|17|23687.97|0.02|0.00|N|O|1997-10-29|1998-01-22|1997-11-09|COLLECT COD|AIR|g instructions alongside| +85513|569970|44993|4|2|4079.90|0.05|0.04|N|O|1998-01-19|1997-12-25|1998-02-18|COLLECT COD|AIR|thely bold platelets are bli| +85513|472836|47855|5|16|28940.96|0.06|0.05|N|O|1998-02-04|1998-01-13|1998-02-08|DELIVER IN PERSON|SHIP|regular packages pl| +85513|940583|28138|6|31|50329.74|0.09|0.03|N|O|1997-11-02|1997-12-25|1997-11-18|NONE|TRUCK|ithely even depo| +85514|555600|30623|1|33|54634.14|0.09|0.08|A|F|1995-01-29|1995-01-02|1995-01-30|NONE|SHIP| even instru| +85514|952833|40391|2|7|13200.53|0.07|0.05|R|F|1995-01-14|1994-12-22|1995-02-09|COLLECT COD|SHIP|ackages. furiously final deposits hag| +85514|262949|465|3|42|80301.06|0.04|0.07|R|F|1994-12-22|1995-01-03|1995-01-18|COLLECT COD|SHIP|egular accounts haggle | +85514|381640|19162|4|4|6886.52|0.02|0.01|A|F|1995-01-01|1994-12-31|1995-01-17|TAKE BACK RETURN|AIR| regular instructions. slyly ironic acco| +85514|222071|9584|5|11|10923.66|0.10|0.01|A|F|1995-02-12|1995-01-15|1995-02-27|COLLECT COD|FOB|s grow furiou| +85514|346155|21168|6|29|34833.06|0.08|0.07|A|F|1995-01-09|1995-02-05|1995-02-07|NONE|RAIL|he packages. blithely unusua| +85514|819722|44755|7|40|65667.20|0.10|0.07|R|F|1995-02-05|1994-12-31|1995-02-28|NONE|RAIL| carefully even pla| +85515|63255|25757|1|15|18273.75|0.09|0.06|N|O|1998-01-23|1998-01-18|1998-02-05|NONE|TRUCK|reach fluffily final accounts. blithe| +85515|125212|25213|2|46|56911.66|0.00|0.02|N|O|1997-12-28|1998-02-25|1998-01-14|NONE|FOB| packages. special packages wake. s| +85515|424432|49449|3|18|24415.38|0.03|0.03|N|O|1997-12-14|1998-02-12|1997-12-28|NONE|MAIL|pecial instructio| +85515|422197|9722|4|12|13430.04|0.01|0.08|N|O|1997-12-23|1998-02-25|1997-12-31|TAKE BACK RETURN|TRUCK|ainst the carefully ironic excuses. special| +85516|835472|35473|1|44|61926.92|0.05|0.04|A|F|1995-05-24|1995-02-28|1995-06-11|DELIVER IN PERSON|REG AIR|s believe slyly among the sile| +85516|774316|24317|2|36|50050.08|0.04|0.06|R|F|1995-04-02|1995-03-21|1995-04-10|DELIVER IN PERSON|SHIP|counts nag quickly. carefully unusual | +85517|669571|44598|1|7|10783.78|0.04|0.01|N|O|1996-11-23|1996-11-12|1996-11-29|NONE|AIR|s. closely regular foxes along th| +85517|467033|42052|2|40|40000.40|0.00|0.00|N|O|1997-01-28|1996-11-08|1997-02-21|COLLECT COD|SHIP|ess deposits? final, regular accou| +85517|409332|21841|3|15|18619.65|0.07|0.00|N|O|1996-10-14|1996-11-20|1996-11-04|COLLECT COD|SHIP|efully blithe deposits cajole| +85517|632295|19832|4|31|38045.06|0.06|0.01|N|O|1997-01-24|1996-12-19|1997-02-13|NONE|FOB|ly furiously even | +85517|969860|19861|5|25|48245.50|0.06|0.03|N|O|1996-11-10|1996-11-05|1996-11-22|DELIVER IN PERSON|RAIL|o beans cajole carefully ac| +85518|933600|21155|1|38|62075.28|0.10|0.04|A|F|1994-11-17|1995-01-04|1994-11-30|DELIVER IN PERSON|MAIL|ole furiously. iro| +85518|1294|38795|2|25|29882.25|0.03|0.05|A|F|1995-01-16|1995-02-10|1995-02-07|DELIVER IN PERSON|SHIP|ake slyly. quickly| +85518|744902|19931|3|20|38937.40|0.04|0.05|A|F|1995-01-23|1995-01-20|1995-01-25|DELIVER IN PERSON|SHIP| even packages haggle b| +85519|487682|37683|1|31|51759.46|0.03|0.05|A|F|1992-12-08|1992-11-23|1992-12-18|NONE|REG AIR|s ideas hinder doggedly reg| +85544|582119|19653|1|3|3603.27|0.00|0.08|A|F|1992-05-24|1992-04-16|1992-06-07|COLLECT COD|RAIL|accounts are furi| +85544|670472|20473|2|22|31733.68|0.00|0.01|A|F|1992-02-24|1992-04-09|1992-03-02|COLLECT COD|SHIP|tes. carefully regular theodolites | +85544|608733|33758|3|19|31192.30|0.07|0.04|A|F|1992-05-05|1992-04-21|1992-06-01|NONE|REG AIR|de of the regular pinto be| +85545|475356|25357|1|47|62572.51|0.06|0.06|N|O|1998-06-22|1998-08-17|1998-07-05|NONE|SHIP|regular deposits. quickly express reques| +85545|293724|6230|2|34|58402.14|0.00|0.07|N|O|1998-09-19|1998-07-20|1998-09-24|COLLECT COD|TRUCK|silent theodolite| +85545|605614|43151|3|41|62302.78|0.06|0.05|N|O|1998-09-16|1998-07-14|1998-10-01|DELIVER IN PERSON|MAIL|blithely. slyly ironic depo| +85545|539164|1675|4|38|45719.32|0.10|0.07|N|O|1998-07-04|1998-07-12|1998-08-03|COLLECT COD|AIR| final excuses| +85545|713500|26015|5|37|55998.39|0.10|0.00|N|O|1998-08-08|1998-08-18|1998-08-10|NONE|RAIL|s sleep. pending theodolite| +85545|781093|31094|6|39|45788.34|0.03|0.06|N|O|1998-09-08|1998-07-14|1998-09-27|DELIVER IN PERSON|TRUCK|g, ironic deposit| +85545|819578|7127|7|21|31448.13|0.06|0.01|N|O|1998-08-12|1998-07-27|1998-08-20|DELIVER IN PERSON|AIR|efully regul| +85546|631955|31956|1|40|75476.80|0.05|0.05|N|O|1996-04-16|1996-05-07|1996-04-28|TAKE BACK RETURN|FOB|y brave accounts. even requests use | +85547|116854|41859|1|49|91671.65|0.06|0.04|R|F|1992-05-14|1992-04-07|1992-05-25|DELIVER IN PERSON|REG AIR|final ideas wake against the c| +85547|949361|36916|2|14|19744.48|0.03|0.06|A|F|1992-03-06|1992-03-08|1992-03-13|NONE|REG AIR|ely final theodolites w| +85547|897394|47395|3|47|65393.45|0.01|0.07|A|F|1992-03-27|1992-04-02|1992-03-29|TAKE BACK RETURN|TRUCK| alongside of | +85547|486598|49108|4|23|36445.11|0.08|0.04|R|F|1992-04-07|1992-04-05|1992-04-18|TAKE BACK RETURN|TRUCK| packages? instructio| +85548|545336|7847|1|42|58015.02|0.10|0.07|R|F|1993-03-01|1993-01-21|1993-03-17|COLLECT COD|RAIL|ic foxes cajole across | +85548|453472|41000|2|10|14254.50|0.06|0.01|R|F|1993-02-04|1993-01-05|1993-02-23|NONE|RAIL|lithely slyly sp| +85548|497421|47422|3|16|22694.40|0.01|0.06|A|F|1992-12-26|1992-12-28|1993-01-22|TAKE BACK RETURN|RAIL|e fluffily e| +85548|152257|2258|4|12|15711.00|0.09|0.00|A|F|1992-12-22|1993-02-01|1993-01-11|NONE|FOB|. blithely unusual depo| +85548|980874|18432|5|46|89922.18|0.03|0.04|R|F|1993-02-15|1993-02-02|1993-02-16|TAKE BACK RETURN|SHIP| final ideas. silent depe| +85549|556641|31664|1|6|10185.72|0.08|0.07|N|O|1997-06-27|1997-06-13|1997-07-06|DELIVER IN PERSON|AIR| nag slyly after the regular instruct| +85549|462308|12309|2|25|31757.00|0.04|0.07|N|O|1997-06-18|1997-05-30|1997-07-05|COLLECT COD|REG AIR|nal, ironic d| +85549|995633|20672|3|27|46671.93|0.04|0.03|N|O|1997-05-25|1997-06-04|1997-05-28|TAKE BACK RETURN|SHIP|carefully regular packages cajole c| +85549|588273|785|4|27|36753.75|0.00|0.07|N|O|1997-07-09|1997-05-23|1997-07-26|COLLECT COD|RAIL|final requests sleep| +85549|101866|1867|5|30|56035.80|0.10|0.06|N|O|1997-04-11|1997-05-29|1997-04-14|DELIVER IN PERSON|SHIP| requests. expr| +85550|207480|19985|1|21|29136.87|0.03|0.04|A|F|1992-09-21|1992-11-22|1992-10-14|COLLECT COD|TRUCK|. requests ab| +85550|103243|28248|2|3|3738.72|0.09|0.03|A|F|1993-01-14|1992-12-14|1993-01-31|COLLECT COD|MAIL| between the furiously even | +85550|194722|19729|3|10|18167.20|0.02|0.01|A|F|1992-11-07|1992-11-13|1992-12-02|DELIVER IN PERSON|SHIP|, special ideas sleep| +85550|691405|16432|4|30|41891.10|0.10|0.07|A|F|1992-12-12|1992-11-03|1993-01-02|DELIVER IN PERSON|REG AIR|he furiousl| +85550|427729|27730|5|43|71238.10|0.00|0.01|R|F|1992-11-20|1992-11-13|1992-12-13|COLLECT COD|MAIL| blithely pendi| +85550|836124|23673|6|10|10600.80|0.06|0.00|A|F|1992-12-11|1992-10-21|1992-12-20|COLLECT COD|MAIL|ter the carefully eve| +85550|721544|21545|7|48|75144.48|0.02|0.01|A|F|1992-10-03|1992-12-08|1992-10-07|NONE|FOB|ng asymptotes against the carefully regular| +85551|978601|41121|1|8|13436.48|0.03|0.07|N|O|1995-12-05|1996-01-13|1995-12-08|NONE|RAIL|eep slyly bold courts; fluffily pending b| +85551|336165|36166|2|49|58856.35|0.02|0.01|N|O|1995-12-04|1995-12-20|1995-12-09|TAKE BACK RETURN|RAIL|luffily regular depths. bold, | +85551|909219|46774|3|20|24563.40|0.05|0.07|N|O|1996-02-02|1995-12-16|1996-02-08|COLLECT COD|FOB|olites. slyly pending notorni| +85551|243663|6168|4|3|4819.95|0.04|0.05|N|O|1995-12-03|1995-12-08|1995-12-07|NONE|SHIP|deas above the blithely regu| +85551|231207|6216|5|8|9105.52|0.08|0.02|N|O|1996-02-08|1995-11-30|1996-02-20|TAKE BACK RETURN|REG AIR|l dependencies are above the fluf| +85576|408553|33570|1|45|65768.85|0.06|0.07|A|F|1992-05-20|1992-06-03|1992-05-29|DELIVER IN PERSON|RAIL|theodolites are alongside of| +85576|536807|49318|2|12|22125.36|0.07|0.00|R|F|1992-05-15|1992-05-27|1992-05-27|NONE|REG AIR|es across | +85576|102774|40281|3|41|72847.57|0.01|0.07|R|F|1992-03-27|1992-04-30|1992-04-17|NONE|REG AIR|es? deposits nod sly| +85576|306196|31209|4|13|15628.34|0.07|0.00|R|F|1992-05-29|1992-06-04|1992-06-28|DELIVER IN PERSON|SHIP|ously requests.| +85576|230148|5157|5|12|12937.56|0.02|0.07|R|F|1992-06-12|1992-06-06|1992-07-01|TAKE BACK RETURN|TRUCK|ully silent frays wake caref| +85577|246732|34245|1|49|82257.28|0.09|0.00|A|F|1994-04-14|1994-04-17|1994-04-27|TAKE BACK RETURN|MAIL|to beans are between the | +85577|818415|5964|2|29|38667.73|0.05|0.03|R|F|1994-03-05|1994-03-30|1994-03-18|NONE|AIR|y idle foxes. furio| +85577|91608|16611|3|12|19195.20|0.04|0.02|R|F|1994-04-17|1994-04-14|1994-05-07|COLLECT COD|FOB|ts integrate ruthlessly bold, | +85578|59234|9235|1|50|59661.50|0.09|0.08|N|O|1998-06-25|1998-07-18|1998-07-22|TAKE BACK RETURN|REG AIR|even dolphins are carefully f| +85578|535662|48173|2|31|52626.84|0.00|0.05|N|O|1998-09-15|1998-07-17|1998-10-09|TAKE BACK RETURN|REG AIR|ly ironic accounts. carefully bol| +85578|854577|42129|3|26|39819.78|0.00|0.05|N|O|1998-07-26|1998-07-26|1998-08-07|COLLECT COD|MAIL|ronic requests. slyly even depo| +85578|875423|12975|4|49|68520.62|0.06|0.01|N|O|1998-07-15|1998-08-17|1998-08-12|NONE|AIR|out the furiously silen| +85578|233926|8935|5|27|50217.57|0.08|0.01|N|O|1998-09-27|1998-07-19|1998-10-24|NONE|SHIP|nst the forges: fluf| +85578|577662|40174|6|50|86982.00|0.06|0.01|N|O|1998-09-10|1998-07-26|1998-09-23|COLLECT COD|SHIP|bold theodolites are caref| +85578|762859|37890|7|31|59576.42|0.03|0.02|N|O|1998-07-04|1998-09-09|1998-07-28|COLLECT COD|FOB|ounts along the slyly final accounts a| +85579|366999|42014|1|38|78507.24|0.07|0.07|A|F|1993-03-26|1993-03-04|1993-03-28|COLLECT COD|RAIL|eodolites sleep blithely a| +85579|148163|35670|2|48|58135.68|0.03|0.04|A|F|1993-04-28|1993-02-17|1993-05-21|TAKE BACK RETURN|RAIL|ng to the slyly spec| +85579|170348|7858|3|27|38295.18|0.09|0.02|R|F|1993-02-12|1993-04-15|1993-02-27|DELIVER IN PERSON|RAIL|unts sleep carefully express court| +85579|30366|30367|4|5|6481.80|0.05|0.03|R|F|1993-04-20|1993-04-11|1993-05-15|NONE|MAIL|es sleep furiously. unusua| +85579|353415|40937|5|4|5873.60|0.08|0.01|R|F|1993-02-17|1993-02-24|1993-02-26|COLLECT COD|SHIP| boost across the furiously idle | +85579|844402|19435|6|6|8078.16|0.02|0.00|A|F|1993-02-21|1993-04-11|1993-02-22|DELIVER IN PERSON|AIR|ave, enticing deposits-- idly bold foxes | +85579|856334|6335|7|14|18064.06|0.08|0.08|A|F|1993-02-03|1993-04-17|1993-02-13|TAKE BACK RETURN|FOB|. final accounts serve blithely carefully| +85580|394109|19124|1|47|56545.23|0.05|0.04|N|O|1996-06-25|1996-08-21|1996-07-02|TAKE BACK RETURN|REG AIR| across the express accou| +85580|783314|45830|2|8|11178.24|0.10|0.08|N|O|1996-09-16|1996-08-02|1996-09-18|COLLECT COD|FOB|ress packages sleep. bold plat| +85580|148964|23969|3|20|40259.20|0.02|0.05|N|O|1996-06-07|1996-07-26|1996-06-13|DELIVER IN PERSON|TRUCK|are furiously above the quickly even excu| +85580|630834|18371|4|45|79416.00|0.08|0.05|N|O|1996-06-12|1996-08-22|1996-06-13|NONE|SHIP|y silent dependencies wake fluff| +85580|425278|12803|5|42|50536.50|0.07|0.07|N|O|1996-06-25|1996-08-28|1996-07-14|NONE|FOB|s cajole i| +85581|367519|42534|1|12|19038.00|0.00|0.04|A|F|1992-07-31|1992-10-06|1992-08-02|COLLECT COD|AIR|e packages haggle carefully alongsi| +85581|890124|40125|2|15|16711.20|0.00|0.01|R|F|1992-07-26|1992-09-07|1992-08-21|COLLECT COD|RAIL|oss the pendi| +85581|301250|26263|3|14|17517.36|0.06|0.05|A|F|1992-09-14|1992-09-15|1992-10-08|COLLECT COD|MAIL| ironic pinto beans. special as| +85581|107994|7995|4|41|82081.59|0.03|0.08|A|F|1992-08-20|1992-08-26|1992-08-26|DELIVER IN PERSON|SHIP|deposits. quickl| +85581|46972|34473|5|19|36460.43|0.03|0.02|R|F|1992-10-06|1992-09-12|1992-10-16|TAKE BACK RETURN|SHIP|efully careful dolphins sle| +85582|665885|3425|1|15|27762.75|0.10|0.00|N|O|1996-11-22|1996-09-03|1996-12-15|DELIVER IN PERSON|TRUCK| carefully | +85582|525679|38190|2|41|69890.65|0.03|0.03|N|O|1996-08-08|1996-10-20|1996-08-31|DELIVER IN PERSON|REG AIR| blithely fluffily eve| +85582|82727|32728|3|27|46162.44|0.09|0.04|N|O|1996-09-14|1996-09-03|1996-10-03|DELIVER IN PERSON|REG AIR|s. fluffily silent ideas sleep af| +85582|379286|41794|4|23|31401.21|0.07|0.05|N|O|1996-11-14|1996-10-13|1996-11-25|DELIVER IN PERSON|TRUCK|ironic excuses boost slyly. final | +85582|643809|43810|5|34|59594.18|0.01|0.01|N|O|1996-11-18|1996-10-25|1996-11-24|TAKE BACK RETURN|RAIL|its dazzle regu| +85582|490004|15023|6|5|4969.90|0.06|0.03|N|O|1996-10-06|1996-09-04|1996-10-15|NONE|AIR|lithely final requ| +85583|113|114|1|14|14183.54|0.00|0.05|A|F|1992-08-06|1992-08-10|1992-08-08|NONE|RAIL|to the fluffily| +85583|894929|19964|2|18|34629.84|0.08|0.08|R|F|1992-08-14|1992-08-19|1992-09-08|NONE|RAIL|posits. carefully close pinto beans lose | +85583|60804|10805|3|23|40590.40|0.04|0.07|A|F|1992-08-09|1992-07-22|1992-08-14|DELIVER IN PERSON|REG AIR|, final packages bre| +85583|916216|16217|4|30|36965.10|0.01|0.07|A|F|1992-05-25|1992-08-03|1992-06-02|COLLECT COD|REG AIR|fully along the careful| +85583|828592|3625|5|29|44095.95|0.06|0.01|R|F|1992-07-17|1992-07-20|1992-08-10|DELIVER IN PERSON|RAIL|ully silent depen| +85583|136290|23797|6|26|34483.54|0.10|0.07|A|F|1992-08-20|1992-07-10|1992-09-01|COLLECT COD|SHIP|ke deposits. regular, bold platele| +85583|617153|4690|7|28|29963.36|0.05|0.00|R|F|1992-07-24|1992-07-02|1992-08-10|TAKE BACK RETURN|AIR|ve the carefully regular tithes| +85608|489523|2033|1|48|72600.00|0.08|0.05|A|F|1994-06-05|1994-07-15|1994-06-16|COLLECT COD|TRUCK|affix slyly around the foxes. slyly fin| +85608|404113|16622|2|33|33563.97|0.02|0.02|A|F|1994-06-07|1994-08-17|1994-06-11|TAKE BACK RETURN|MAIL| dependencies nag-- even, regula| +85608|925078|115|3|15|16545.45|0.10|0.06|A|F|1994-09-02|1994-06-21|1994-09-19|NONE|RAIL|s courts affix? asymp| +85608|778659|41175|4|43|74717.66|0.08|0.06|A|F|1994-09-14|1994-07-23|1994-10-11|TAKE BACK RETURN|SHIP|quickly. fluffily special packages a| +85609|633974|46487|1|3|5723.82|0.05|0.02|R|F|1994-02-21|1994-01-17|1994-03-12|TAKE BACK RETURN|AIR|aggle carefully. carefully express| +85609|184539|22049|2|22|35717.66|0.07|0.05|A|F|1993-12-22|1993-12-21|1993-12-29|DELIVER IN PERSON|MAIL|ickly ruthless epitaphs. quickly even | +85609|540511|3022|3|8|12411.92|0.05|0.05|A|F|1994-01-12|1993-12-18|1994-01-13|TAKE BACK RETURN|MAIL|totes lose finally. fina| +85609|360023|47545|4|12|12996.12|0.04|0.03|A|F|1994-02-08|1994-01-12|1994-03-10|DELIVER IN PERSON|AIR|y ironic theodolites maintain | +85609|892544|42545|5|38|58387.00|0.10|0.07|A|F|1994-02-06|1993-12-18|1994-02-23|NONE|SHIP| special depo| +85610|121622|21623|1|47|77250.14|0.00|0.02|R|F|1995-04-10|1995-05-27|1995-04-21|TAKE BACK RETURN|RAIL|y. bold pinto beans| +85610|95890|20893|2|29|54690.81|0.07|0.06|A|F|1995-04-25|1995-05-03|1995-05-16|NONE|SHIP| ironic, final requests. blit| +85610|613746|38771|3|43|71367.53|0.08|0.04|N|O|1995-07-19|1995-05-10|1995-08-08|NONE|RAIL|oss the sl| +85610|214540|27045|4|21|30545.13|0.00|0.02|N|F|1995-06-14|1995-05-24|1995-07-14|COLLECT COD|SHIP|ithely express | +85611|513071|602|1|31|33605.55|0.00|0.00|N|O|1997-01-10|1997-02-08|1997-01-15|NONE|TRUCK|arefully alongside of the carefully | +85611|180281|30282|2|10|13612.80|0.02|0.01|N|O|1997-03-22|1997-02-08|1997-04-16|NONE|MAIL|ans. carefully quick packages af| +85612|881978|44496|1|28|54878.04|0.05|0.00|N|O|1998-06-15|1998-08-15|1998-06-27|DELIVER IN PERSON|FOB|refully silent packages!| +85612|399065|11573|2|48|55874.40|0.04|0.04|N|O|1998-08-18|1998-07-01|1998-08-25|NONE|FOB|fluffily special requests lose accordi| +85612|82696|45198|3|43|72183.67|0.04|0.01|N|O|1998-07-09|1998-07-03|1998-07-24|COLLECT COD|MAIL|ccording to the even asymptotes. e| +85613|57849|45353|1|37|66853.08|0.02|0.07|A|F|1993-05-30|1993-03-22|1993-06-14|COLLECT COD|SHIP|special, e| +85613|258897|33908|2|18|33405.84|0.10|0.07|R|F|1993-05-17|1993-05-04|1993-06-14|NONE|FOB|e blithely among the boldly| +85613|268123|18124|3|10|10911.10|0.06|0.01|A|F|1993-04-01|1993-04-21|1993-04-19|COLLECT COD|FOB| regular pinto beans. car| +85613|328838|28839|4|44|82140.08|0.02|0.03|R|F|1993-04-25|1993-03-31|1993-05-16|NONE|MAIL|ccording to the requests h| +85613|778666|41182|5|29|50594.27|0.07|0.03|R|F|1993-05-31|1993-03-25|1993-06-10|DELIVER IN PERSON|FOB|. furiously bold pinto beans wake| +85614|809863|9864|1|35|62048.70|0.07|0.03|A|F|1993-06-27|1993-06-09|1993-07-25|COLLECT COD|MAIL|sleep carefully around the dugouts. furiou| +85614|365948|28456|2|8|16111.44|0.04|0.02|A|F|1993-05-31|1993-06-19|1993-06-05|NONE|TRUCK|ng pinto beans. qu| +85614|482115|19643|3|30|32912.70|0.03|0.08|A|F|1993-07-08|1993-06-08|1993-07-25|DELIVER IN PERSON|RAIL|ing depths above | +85614|892675|5193|4|11|18343.93|0.02|0.02|R|F|1993-06-02|1993-05-26|1993-07-01|DELIVER IN PERSON|AIR|egular pinto beans believe qu| +85614|183657|21167|5|23|40034.95|0.05|0.04|R|F|1993-06-18|1993-06-28|1993-07-12|NONE|AIR|across the| +85615|889872|14907|1|30|55854.90|0.10|0.02|N|O|1998-02-04|1998-02-04|1998-02-17|COLLECT COD|AIR|unusual instructions! blithely regular | +85615|75293|25294|2|19|24097.51|0.06|0.01|N|O|1998-04-19|1998-03-29|1998-05-11|TAKE BACK RETURN|TRUCK|affix. permanently blith| +85615|437757|37758|3|21|35589.33|0.00|0.00|N|O|1998-03-30|1998-03-14|1998-04-13|TAKE BACK RETURN|TRUCK|nding frets; fluffily special acc| +85615|374779|37287|4|18|33367.68|0.10|0.05|N|O|1998-02-07|1998-02-15|1998-03-05|TAKE BACK RETURN|MAIL|ronic instruct| +85615|895551|20586|5|19|29383.69|0.07|0.06|N|O|1998-01-17|1998-02-02|1998-01-27|DELIVER IN PERSON|MAIL|fily. slyly final depos| +85615|511370|36391|6|36|49728.60|0.04|0.07|N|O|1998-04-09|1998-03-30|1998-05-04|NONE|REG AIR|de of the final do| +85615|587799|12822|7|31|58489.87|0.08|0.00|N|O|1998-01-06|1998-02-01|1998-01-18|NONE|AIR|wake alongside of the | +85640|126530|1535|1|42|65374.26|0.10|0.07|N|O|1997-11-20|1997-09-10|1997-11-21|TAKE BACK RETURN|REG AIR|ss the deposits. unus| +85640|574748|24749|2|30|54681.60|0.04|0.01|N|O|1997-11-07|1997-09-21|1997-11-23|COLLECT COD|SHIP|across the furious| +85640|774804|49835|3|17|31939.09|0.06|0.06|N|O|1997-11-30|1997-10-03|1997-12-07|COLLECT COD|MAIL|t across the sl| +85640|128945|3950|4|44|86853.36|0.08|0.00|N|O|1997-09-07|1997-10-05|1997-09-22|DELIVER IN PERSON|REG AIR| sleep quickly acco| +85640|174234|24235|5|9|11774.07|0.10|0.04|N|O|1997-11-18|1997-10-02|1997-12-09|COLLECT COD|AIR|y even deposits d| +85640|339242|39243|6|15|19218.45|0.06|0.08|N|O|1997-10-01|1997-11-04|1997-10-07|COLLECT COD|REG AIR|riously regular p| +85640|627965|2990|7|42|79503.06|0.07|0.07|N|O|1997-11-14|1997-10-14|1997-11-29|NONE|REG AIR|t the silent packag| +85641|199840|12344|1|20|38796.80|0.09|0.04|A|F|1992-04-08|1992-05-05|1992-04-18|NONE|REG AIR|es. even, reg| +85641|702498|15013|2|16|24007.36|0.02|0.01|A|F|1992-05-14|1992-04-10|1992-05-31|DELIVER IN PERSON|TRUCK|ts cajole furiously across the instructi| +85641|881022|31023|3|12|12035.76|0.06|0.06|A|F|1992-05-14|1992-04-24|1992-06-04|DELIVER IN PERSON|TRUCK| requests among the furi| +85641|322568|10087|4|41|65212.55|0.00|0.04|R|F|1992-04-14|1992-04-24|1992-05-07|TAKE BACK RETURN|FOB| regular accounts nod| +85641|392871|30393|5|17|33385.62|0.09|0.02|A|F|1992-04-23|1992-05-03|1992-05-03|DELIVER IN PERSON|FOB|odolites sleep quickly even th| +85641|968709|43748|6|50|88883.00|0.05|0.07|A|F|1992-06-11|1992-05-16|1992-07-02|COLLECT COD|TRUCK|d accounts ca| +85642|7401|7402|1|45|58878.00|0.01|0.04|R|F|1992-10-04|1992-12-18|1992-10-07|TAKE BACK RETURN|FOB|uests inte| +85642|384221|21743|2|7|9136.47|0.09|0.05|R|F|1992-12-21|1992-11-07|1993-01-18|NONE|AIR| ironic excuses. inst| +85643|485980|23508|1|27|53080.92|0.08|0.02|A|F|1992-06-16|1992-04-23|1992-07-12|DELIVER IN PERSON|REG AIR|grate slyly abo| +85643|863788|1340|2|33|57807.42|0.00|0.04|A|F|1992-05-30|1992-06-06|1992-06-13|DELIVER IN PERSON|AIR|sly above the permanently regular packa| +85643|681884|44398|3|35|65304.75|0.03|0.02|A|F|1992-06-01|1992-05-21|1992-06-11|COLLECT COD|SHIP|ng the carefully regular waters. dolphi| +85643|415630|28139|4|49|75734.89|0.09|0.01|A|F|1992-06-24|1992-06-04|1992-07-05|DELIVER IN PERSON|MAIL|ross the express deposits! furiously reg| +85643|478476|3495|5|5|7272.25|0.04|0.08|A|F|1992-03-22|1992-05-10|1992-03-31|DELIVER IN PERSON|MAIL|y pending pearls sleep furiously. caref| +85643|741120|16149|6|34|39477.06|0.10|0.03|R|F|1992-06-02|1992-05-25|1992-06-16|NONE|FOB|cajole quickly pending foxes. blithely even| +85643|992943|17982|7|31|63112.90|0.05|0.01|R|F|1992-06-11|1992-05-10|1992-06-18|NONE|REG AIR|careful packages. blithely final accou| +85644|377162|39670|1|2|2478.30|0.02|0.00|R|F|1993-09-06|1993-10-16|1993-09-10|TAKE BACK RETURN|MAIL|nt requests. blithely un| +85645|397535|35057|1|37|60403.24|0.02|0.04|N|O|1997-02-25|1997-04-24|1997-03-22|NONE|MAIL|ccording to the final requests. fluff| +85645|367274|29782|2|4|5365.04|0.07|0.03|N|O|1997-03-03|1997-05-09|1997-03-14|NONE|AIR|ogs sleep caref| +85645|759718|9719|3|25|44442.00|0.06|0.08|N|O|1997-04-13|1997-05-02|1997-04-27|COLLECT COD|RAIL|final requests| +85645|575869|38381|4|13|25282.92|0.00|0.04|N|O|1997-02-12|1997-04-29|1997-03-11|COLLECT COD|REG AIR| fluffily unusual theodolites cajole| +85645|621179|21180|5|34|37404.76|0.08|0.00|N|O|1997-05-17|1997-03-20|1997-06-03|TAKE BACK RETURN|AIR| affix. slyly unusual deposits sha| +85646|834571|9604|1|36|54199.08|0.05|0.03|R|F|1992-06-16|1992-04-29|1992-06-21|TAKE BACK RETURN|SHIP|ilent ideas. furiously final noto| +85646|634455|9480|2|8|11115.36|0.01|0.07|R|F|1992-04-16|1992-05-28|1992-05-08|DELIVER IN PERSON|SHIP|hely special realms. quickly pending | +85646|277028|39534|3|45|45225.45|0.09|0.01|A|F|1992-06-17|1992-04-28|1992-07-10|TAKE BACK RETURN|FOB|regular foxes. fluffi| +85646|8064|8065|4|3|2916.18|0.08|0.05|A|F|1992-03-27|1992-05-07|1992-04-04|TAKE BACK RETURN|FOB|refully enti| +85646|529988|42499|5|20|40359.20|0.10|0.07|A|F|1992-04-13|1992-04-08|1992-05-01|COLLECT COD|TRUCK| will have to are qu| +85646|504903|42434|6|26|49604.88|0.06|0.06|A|F|1992-04-20|1992-04-13|1992-05-07|TAKE BACK RETURN|SHIP|nts. fluffil| +85647|364932|39947|1|8|15975.36|0.10|0.04|A|F|1995-02-05|1995-04-01|1995-02-12|DELIVER IN PERSON|RAIL|lose slyly ca| +85647|395922|8430|2|2|4035.82|0.10|0.01|R|F|1995-03-23|1995-03-29|1995-04-08|NONE|SHIP|furiously final requests. sly foxes mu| +85647|249726|37239|3|17|28487.07|0.09|0.05|R|F|1995-02-11|1995-04-11|1995-03-05|DELIVER IN PERSON|MAIL|y. furiously regular deposit| +85647|135270|10275|4|13|16968.51|0.03|0.01|A|F|1995-02-03|1995-03-16|1995-02-06|DELIVER IN PERSON|REG AIR|rs. furiously final deposits wake. carefu| +85647|473022|23023|5|33|32835.00|0.09|0.03|R|F|1995-02-24|1995-04-07|1995-03-05|COLLECT COD|AIR|ns haggle. furiously regular | +85672|292092|42093|1|32|34690.56|0.02|0.06|N|O|1995-09-09|1995-09-21|1995-09-23|NONE|SHIP|st the carefu| +85672|179073|16583|2|46|52995.22|0.00|0.08|N|O|1995-09-17|1995-10-02|1995-10-01|TAKE BACK RETURN|AIR|ily pending ac| +85672|671302|8842|3|31|39471.37|0.07|0.01|N|O|1995-10-25|1995-09-26|1995-11-02|NONE|FOB|s cajole slyly waters. regular, pe| +85673|229645|42150|1|18|28343.34|0.02|0.07|A|F|1993-07-22|1993-08-24|1993-07-27|COLLECT COD|RAIL|to affix. quickly bold instructions nag | +85673|632025|19562|2|9|8612.91|0.06|0.04|R|F|1993-07-30|1993-08-13|1993-08-24|NONE|REG AIR| pinto beans| +85673|443964|6473|3|36|68685.84|0.04|0.06|A|F|1993-08-26|1993-08-13|1993-09-13|NONE|SHIP|ar multipliers use| +85674|274959|12475|1|47|90895.18|0.09|0.04|A|F|1995-04-04|1995-03-08|1995-04-27|DELIVER IN PERSON|RAIL|its. furiously sly decoys above | +85674|226623|1632|2|46|71282.06|0.01|0.06|R|F|1995-04-01|1995-01-31|1995-04-13|TAKE BACK RETURN|SHIP|s cajole slyly across the bold | +85674|841879|16912|3|36|65549.88|0.10|0.02|A|F|1995-02-23|1995-02-19|1995-03-19|NONE|RAIL| the regul| +85674|446350|46351|4|16|20741.28|0.04|0.03|R|F|1995-02-23|1995-02-12|1995-03-15|TAKE BACK RETURN|SHIP|r dependencies sno| +85674|798527|48528|5|32|52015.68|0.01|0.08|A|F|1995-02-25|1995-01-25|1995-03-19|TAKE BACK RETURN|FOB|thely ironic requests above the fluff| +85674|838295|812|6|35|43163.75|0.02|0.05|R|F|1995-04-17|1995-03-01|1995-04-29|DELIVER IN PERSON|FOB|en excuses nod quickly| +85674|212390|12391|7|11|14326.18|0.05|0.04|A|F|1995-03-11|1995-01-20|1995-03-12|DELIVER IN PERSON|TRUCK|unusual, ir| +85675|624246|11783|1|35|40957.35|0.01|0.06|N|O|1995-08-29|1995-10-02|1995-09-13|DELIVER IN PERSON|RAIL|uickly final foxes. somas ca| +85676|544883|32414|1|10|19278.60|0.05|0.07|A|F|1992-09-21|1992-09-28|1992-10-21|DELIVER IN PERSON|RAIL| sleep of the regular, special dep| +85677|412867|12868|1|14|24917.76|0.02|0.04|A|F|1994-09-04|1994-07-11|1994-09-12|COLLECT COD|RAIL|ronic packages haggle do| +85677|50294|25297|2|19|23641.51|0.06|0.00|R|F|1994-05-31|1994-06-23|1994-06-10|TAKE BACK RETURN|SHIP|y regular | +85677|277425|27426|3|5|7012.05|0.05|0.07|R|F|1994-08-18|1994-07-02|1994-09-15|NONE|AIR|, bold asympto| +85678|694363|19390|1|10|13573.30|0.03|0.04|N|O|1995-08-16|1995-08-01|1995-08-22|NONE|TRUCK|ages. furi| +85678|144591|32098|2|10|16355.90|0.03|0.06|N|O|1995-07-23|1995-06-19|1995-08-21|COLLECT COD|SHIP|inos. slyly pending deposits | +85678|136085|48588|3|43|48206.44|0.04|0.03|N|O|1995-09-06|1995-06-22|1995-09-26|NONE|MAIL|s courts. care| +85679|274318|24319|1|15|19384.50|0.03|0.07|R|F|1994-09-21|1994-11-06|1994-10-08|COLLECT COD|SHIP|lly slyly silent dep| +85679|446684|46685|2|18|29351.88|0.01|0.01|R|F|1994-10-26|1994-10-17|1994-11-08|COLLECT COD|RAIL|al deposits. blithely even| +85679|402482|40007|3|49|67838.54|0.04|0.07|A|F|1994-10-09|1994-09-15|1994-10-30|COLLECT COD|MAIL|across the even, fi| +85679|498428|10938|4|8|11411.20|0.00|0.05|A|F|1994-11-11|1994-09-28|1994-11-21|COLLECT COD|REG AIR|tes kindle bli| +85704|981452|31453|1|33|50602.53|0.00|0.06|R|F|1992-06-05|1992-08-19|1992-06-18|TAKE BACK RETURN|AIR|ently unusual theodolit| +85704|250997|26008|2|7|13635.86|0.08|0.05|R|F|1992-06-24|1992-07-14|1992-07-16|TAKE BACK RETURN|MAIL| alongside of the ruthless accounts! blit| +85705|369280|44295|1|5|6746.35|0.10|0.01|N|O|1997-04-13|1997-04-25|1997-04-22|TAKE BACK RETURN|AIR|hely final foxes c| +85705|472359|34869|2|5|6656.65|0.08|0.06|N|O|1997-05-04|1997-04-18|1997-05-28|NONE|FOB|cial ideas | +85705|937479|12516|3|9|13647.87|0.08|0.06|N|O|1997-06-09|1997-06-12|1997-06-20|NONE|TRUCK|ts wake across the busily fina| +85706|658967|46507|1|4|7703.72|0.05|0.03|N|O|1997-12-30|1998-02-02|1998-01-12|DELIVER IN PERSON|MAIL|fully blithely regular package| +85706|244334|19343|2|4|5113.28|0.10|0.02|N|O|1998-01-20|1998-01-18|1998-01-23|COLLECT COD|AIR|inal requests a| +85706|506250|18761|3|9|11306.07|0.01|0.04|N|O|1997-12-22|1998-01-27|1997-12-31|DELIVER IN PERSON|AIR|riously regular deposi| +85706|542449|4960|4|39|58165.38|0.06|0.08|N|O|1998-01-02|1997-12-20|1998-01-11|NONE|AIR|press, even packages sl| +85707|216639|41648|1|31|48224.22|0.02|0.01|N|O|1997-09-22|1997-08-28|1997-10-07|NONE|RAIL|e slyly about the blithe| +85707|38456|13457|2|2|2788.90|0.09|0.00|N|O|1997-07-09|1997-08-03|1997-07-15|DELIVER IN PERSON|AIR|ag fluffily bl| +85707|326775|39282|3|28|50449.28|0.07|0.00|N|O|1997-10-10|1997-08-07|1997-10-24|COLLECT COD|FOB|thely special instructions use carefully| +85707|96541|21544|4|35|53813.90|0.00|0.03|N|O|1997-08-10|1997-08-08|1997-08-17|DELIVER IN PERSON|SHIP| foxes wake! slyly r| +85707|556004|43538|5|15|15899.70|0.07|0.02|N|O|1997-09-16|1997-08-04|1997-10-15|TAKE BACK RETURN|MAIL|l pinto beans are carefully. slyly| +85707|747664|35207|6|14|23962.82|0.00|0.01|N|O|1997-08-25|1997-08-26|1997-08-26|COLLECT COD|FOB|ites. ironic packages use carefully r| +85708|655554|5555|1|10|15095.20|0.09|0.07|R|F|1993-03-07|1993-04-07|1993-03-24|COLLECT COD|AIR|. ironic ideas ha| +85708|890657|3175|2|4|6590.44|0.10|0.07|A|F|1993-04-16|1993-05-10|1993-05-01|COLLECT COD|FOB| slyly along the blith| +85709|990374|15413|1|46|67359.18|0.03|0.03|R|F|1992-03-09|1992-04-08|1992-04-03|NONE|RAIL| busy pint| +85709|209554|9555|2|8|11708.32|0.04|0.08|A|F|1992-03-19|1992-03-03|1992-04-17|NONE|SHIP|ons wake i| +85709|968442|6000|3|48|72499.20|0.02|0.08|A|F|1992-03-12|1992-02-24|1992-04-10|NONE|TRUCK|the unusual, sile| +85709|600241|12754|4|32|36518.72|0.08|0.05|R|F|1992-05-06|1992-03-12|1992-06-03|DELIVER IN PERSON|TRUCK|cuses. blithely regu| +85709|238116|621|5|48|50596.80|0.01|0.02|A|F|1992-02-17|1992-03-12|1992-03-13|TAKE BACK RETURN|FOB|ons cajole. special att| +85709|5477|30478|6|39|53916.33|0.02|0.06|R|F|1992-04-09|1992-03-27|1992-05-04|NONE|MAIL|y express a| +85709|37735|12736|7|20|33454.60|0.06|0.07|A|F|1992-04-18|1992-02-25|1992-04-19|COLLECT COD|REG AIR|nstructions integrate ca| +85710|206288|18793|1|24|28662.48|0.01|0.06|R|F|1992-10-28|1992-11-10|1992-11-16|NONE|FOB| requests nag aroun| +85711|805708|18225|1|14|22591.24|0.08|0.07|A|F|1995-01-07|1994-11-07|1995-01-29|NONE|MAIL| ironic theodolite| +85711|525699|13230|2|2|3449.34|0.05|0.00|R|F|1994-12-20|1994-10-31|1995-01-18|COLLECT COD|TRUCK|ckly after th| +85711|406684|31701|3|35|55673.10|0.05|0.06|R|F|1994-12-01|1994-10-24|1994-12-25|NONE|FOB|ly above the blithely regular dependencie| +85711|122950|10457|4|16|31567.20|0.06|0.05|A|F|1994-10-07|1994-11-08|1994-10-28|COLLECT COD|REG AIR|telets are carefully silently p| +85711|414911|14912|5|13|23736.57|0.00|0.03|R|F|1994-11-03|1994-10-26|1994-11-26|COLLECT COD|MAIL|nal ideas believe furiousl| +85736|377713|2728|1|31|55511.70|0.08|0.02|N|O|1997-12-15|1997-10-07|1998-01-02|NONE|RAIL|ts. accounts sublate slyly. blithel| +85737|638095|608|1|11|11363.66|0.06|0.07|R|F|1992-05-15|1992-03-30|1992-05-24|NONE|TRUCK|against the | +85738|434711|22236|1|1|1645.69|0.05|0.05|N|O|1997-08-28|1997-11-06|1997-09-23|TAKE BACK RETURN|TRUCK|regular excuses are furiously alongs| +85739|824345|49378|1|32|40617.60|0.01|0.06|N|O|1998-07-27|1998-06-30|1998-08-08|DELIVER IN PERSON|TRUCK|osits according to| +85739|763496|13497|2|48|74854.08|0.03|0.01|N|O|1998-09-01|1998-07-28|1998-09-27|TAKE BACK RETURN|FOB|above the ruthless excuses. slow, final m| +85739|75124|25125|3|2|2198.24|0.07|0.02|N|O|1998-07-25|1998-08-05|1998-08-09|COLLECT COD|REG AIR|ress packages. blithely p| +85740|211687|49200|1|35|55953.45|0.03|0.02|R|F|1992-07-08|1992-05-31|1992-07-30|NONE|AIR|o beans across the furious| +85740|817729|5278|2|48|79040.64|0.01|0.02|A|F|1992-07-25|1992-07-01|1992-08-04|NONE|SHIP|ggle quickly even foxes. bold, ironic| +85741|562570|37593|1|14|22855.70|0.01|0.08|N|O|1998-09-06|1998-07-31|1998-09-18|COLLECT COD|MAIL|carefully iron| +85741|103063|28068|2|25|26651.50|0.00|0.08|N|O|1998-09-03|1998-07-09|1998-09-27|DELIVER IN PERSON|SHIP|uctions impress bl| +85741|164665|39672|3|26|44971.16|0.04|0.02|N|O|1998-10-03|1998-08-19|1998-10-23|DELIVER IN PERSON|MAIL|l packages are blithely. slyly unusual ac| +85742|740022|27565|1|11|11681.89|0.04|0.08|N|O|1997-08-24|1997-10-21|1997-09-11|TAKE BACK RETURN|FOB|ending instructions; pending, enticing r| +85742|542551|17572|2|42|66928.26|0.09|0.06|N|O|1997-10-14|1997-10-11|1997-10-23|DELIVER IN PERSON|RAIL|efully brave foxes wake furiously fin| +85743|865152|40187|1|10|11171.10|0.00|0.08|N|O|1995-07-26|1995-10-16|1995-08-11|TAKE BACK RETURN|MAIL|lyly furiously even ideas. silent, | +85743|598495|23518|2|38|60551.86|0.00|0.01|N|O|1995-10-15|1995-09-12|1995-11-08|DELIVER IN PERSON|SHIP| slyly final requests against the careful| +85743|896150|8668|3|47|53867.17|0.02|0.01|N|O|1995-07-31|1995-08-26|1995-08-03|COLLECT COD|MAIL|es. carefully bold requests thr| +85768|606054|31079|1|50|48001.00|0.08|0.08|N|O|1995-12-23|1995-11-25|1996-01-05|NONE|TRUCK|ly ironic sentiments use: furiously regu| +85768|948544|11063|2|40|63700.00|0.06|0.00|N|O|1995-11-07|1995-11-26|1995-11-20|TAKE BACK RETURN|TRUCK|efully ironic theodolites across the c| +85768|168291|30795|3|20|27185.80|0.06|0.08|N|O|1995-11-04|1995-12-04|1995-11-12|NONE|AIR|uriously. pending, regular instruction| +85769|932128|32129|1|35|40602.80|0.04|0.06|N|O|1996-08-14|1996-08-26|1996-09-07|DELIVER IN PERSON|FOB|sts. slyly regular deposi| +85769|270218|7734|2|9|10693.80|0.04|0.02|N|O|1996-09-25|1996-09-02|1996-10-14|DELIVER IN PERSON|SHIP|e slyly regular ideas. furiously| +85769|543579|31110|3|8|12980.40|0.10|0.02|N|O|1996-08-02|1996-08-06|1996-08-21|NONE|SHIP|packages instead of the furiously iro| +85769|924878|24879|4|7|13319.81|0.05|0.06|N|O|1996-09-06|1996-08-24|1996-09-11|NONE|FOB| deposits. furiously | +85770|5872|43373|1|30|53336.10|0.08|0.06|N|O|1996-08-29|1996-08-28|1996-09-16|DELIVER IN PERSON|AIR|e the pending, even | +85770|685727|48241|2|20|34253.80|0.05|0.08|N|O|1996-11-11|1996-09-10|1996-12-05|COLLECT COD|MAIL|al packages haggle slyly alongside of the| +85770|7359|32360|3|6|7598.10|0.03|0.07|N|O|1996-08-29|1996-09-24|1996-09-22|COLLECT COD|AIR| the quickly regular foxe| +85770|682423|19963|4|23|32323.97|0.05|0.00|N|O|1996-07-20|1996-10-02|1996-08-05|DELIVER IN PERSON|SHIP|carefully | +85771|819160|19161|1|25|26978.00|0.07|0.00|N|O|1997-12-03|1997-11-25|1997-12-12|TAKE BACK RETURN|TRUCK| use carefully against the furiously fi| +85771|614503|14504|2|18|25514.46|0.02|0.06|N|O|1997-10-22|1997-12-27|1997-10-28|TAKE BACK RETURN|MAIL|ests are s| +85772|155620|30627|1|3|5026.86|0.09|0.00|A|F|1995-03-30|1995-05-13|1995-04-15|TAKE BACK RETURN|TRUCK|thinly carefully ironic pin| +85772|499391|36919|2|48|66737.76|0.09|0.04|N|O|1995-06-20|1995-05-07|1995-07-18|DELIVER IN PERSON|FOB|counts. bold pack| +85772|261439|11440|3|29|40612.18|0.10|0.02|A|F|1995-05-05|1995-04-17|1995-05-09|DELIVER IN PERSON|REG AIR|ctions. quickly final w| +85772|989791|27349|4|6|11284.50|0.06|0.05|A|F|1995-05-20|1995-05-10|1995-06-12|NONE|FOB|uthlessly final foxes wake quickly | +85772|416833|16834|5|24|41995.44|0.05|0.03|R|F|1995-05-07|1995-05-11|1995-06-04|NONE|TRUCK|resias. permanently express accounts do wak| +85773|636497|24034|1|11|15768.06|0.03|0.06|R|F|1993-12-23|1993-10-29|1994-01-20|NONE|AIR| beans haggle slyly silent foxes. regular| +85773|597966|22989|2|8|16511.52|0.01|0.04|R|F|1994-01-08|1993-11-10|1994-01-11|DELIVER IN PERSON|REG AIR|press instructions use daringly express fo| +85773|12720|12721|3|18|29388.96|0.00|0.03|R|F|1993-11-05|1993-12-04|1993-11-17|COLLECT COD|FOB|ly sly packages? fina| +85773|771384|46415|4|1|1455.35|0.06|0.03|R|F|1993-11-02|1993-11-01|1993-11-11|COLLECT COD|AIR|nis. blithely ironic depe| +85774|916184|28703|1|7|8400.98|0.06|0.07|N|O|1996-10-29|1996-11-26|1996-11-10|COLLECT COD|SHIP|heodolites cajole quickly r| +85774|298285|23296|2|34|43631.18|0.00|0.02|N|O|1996-11-17|1996-11-27|1996-11-26|NONE|RAIL|he carefull| +85774|267303|29809|3|17|21594.93|0.07|0.00|N|O|1997-02-05|1996-12-26|1997-03-02|NONE|TRUCK|instructions? blithely ir| +85774|556127|6128|4|35|41408.50|0.04|0.07|N|O|1996-11-06|1996-12-08|1996-11-15|COLLECT COD|REG AIR|ages haggle quickly pend| +85774|815234|15235|5|23|26431.37|0.09|0.06|N|O|1996-11-27|1996-12-25|1996-11-28|DELIVER IN PERSON|MAIL|g the always final instructions. regular, f| +85774|628874|16411|6|41|73916.44|0.03|0.01|N|O|1996-11-06|1996-11-18|1996-11-20|TAKE BACK RETURN|MAIL|s: unusual asymptotes impress quickly| +85775|82509|20013|1|45|67117.50|0.03|0.05|R|F|1993-05-05|1993-06-10|1993-05-27|DELIVER IN PERSON|FOB|ccounts poac| +85775|712154|24669|2|5|5830.60|0.04|0.00|A|F|1993-05-21|1993-05-14|1993-06-19|COLLECT COD|SHIP|about the furiously silent theodo| +85800|788385|38386|1|40|58934.00|0.09|0.03|A|F|1992-03-21|1992-04-04|1992-03-28|COLLECT COD|FOB|ackages are quickly across the| +85800|385615|35616|2|21|35712.60|0.01|0.07|A|F|1992-02-24|1992-04-05|1992-03-19|TAKE BACK RETURN|REG AIR|ockey players. carefully bold reque| +85800|25377|12878|3|5|6511.85|0.09|0.00|R|F|1992-04-22|1992-03-26|1992-04-25|NONE|RAIL|atelets. furiously final requests unwind | +85800|498275|35803|4|31|39470.75|0.10|0.05|A|F|1992-04-27|1992-04-13|1992-05-09|COLLECT COD|RAIL|lithely even packages. regular, final fo| +85800|500223|37754|5|1|1223.20|0.01|0.08|A|F|1992-02-28|1992-04-26|1992-03-28|DELIVER IN PERSON|AIR|ests. slyly fluffy depos| +85801|782397|32398|1|20|29587.20|0.08|0.01|A|F|1993-07-06|1993-06-26|1993-07-16|DELIVER IN PERSON|RAIL| along the slyly final r| +85801|741480|41481|2|11|16735.95|0.09|0.05|R|F|1993-04-24|1993-06-27|1993-04-27|TAKE BACK RETURN|SHIP|l pinto bea| +85801|54215|41719|3|20|23384.20|0.04|0.00|R|F|1993-05-07|1993-05-16|1993-05-27|DELIVER IN PERSON|SHIP|gular epita| +85802|894833|7351|1|20|36555.80|0.09|0.04|N|O|1996-08-08|1996-05-30|1996-08-13|DELIVER IN PERSON|FOB|yly blithely unusual dependencies. regu| +85803|690852|15879|1|12|22113.84|0.09|0.04|N|O|1997-08-03|1997-08-29|1997-08-31|TAKE BACK RETURN|REG AIR|ly ironic requests wake. slyly| +85803|139895|2398|2|38|73525.82|0.06|0.02|N|O|1997-07-21|1997-08-28|1997-07-27|DELIVER IN PERSON|TRUCK|. fluffily regular ideas poach| +85803|207574|32583|3|4|5926.24|0.04|0.08|N|O|1997-08-14|1997-08-25|1997-08-16|DELIVER IN PERSON|TRUCK|lly even accounts believe carefully furiou| +85804|703995|29024|1|5|9994.80|0.03|0.06|R|F|1993-12-16|1994-02-21|1994-01-11|COLLECT COD|SHIP|deposits wake carefully alongsid| +85804|32570|7571|2|45|67615.65|0.08|0.04|R|F|1994-02-23|1994-01-14|1994-03-06|NONE|RAIL|efully unusual packages. carefully ev| +85804|391559|16574|3|13|21457.02|0.01|0.01|R|F|1994-02-16|1994-01-07|1994-03-04|NONE|SHIP|ily quiet pinto beans against the | +85804|927572|15127|4|44|70379.32|0.02|0.00|R|F|1994-02-22|1994-01-14|1994-02-28|DELIVER IN PERSON|MAIL|pendencies nag blithely. furiously s| +85804|687121|12148|5|13|14405.17|0.10|0.06|R|F|1994-03-06|1994-01-24|1994-03-07|DELIVER IN PERSON|AIR|lar theodolites boost| +85805|338037|544|1|31|33325.62|0.10|0.06|R|F|1994-08-17|1994-07-11|1994-09-04|NONE|FOB| carefully even packages according to | +85805|383222|20744|2|13|16967.73|0.09|0.07|A|F|1994-05-30|1994-07-05|1994-05-31|TAKE BACK RETURN|REG AIR| slyly silent, pending deposits. eve| +85805|799427|49428|3|4|6105.56|0.06|0.00|R|F|1994-06-24|1994-07-26|1994-07-14|TAKE BACK RETURN|FOB|t, ironic | +85805|969390|6948|4|42|61292.70|0.08|0.07|A|F|1994-09-20|1994-08-09|1994-09-30|DELIVER IN PERSON|AIR|ronic asymptotes cajole furiously slyly s| +85806|13386|13387|1|2|2598.76|0.06|0.03|N|O|1996-06-12|1996-06-24|1996-06-20|COLLECT COD|TRUCK| about the| +85806|964195|39234|2|15|18887.25|0.00|0.02|N|O|1996-06-12|1996-07-06|1996-06-13|NONE|AIR| haggle about the carefully reg| +85807|701781|14296|1|50|89137.50|0.01|0.07|N|O|1997-06-07|1997-06-30|1997-06-26|NONE|TRUCK|pades among the slyly ironic a| +85807|821174|46207|2|35|38329.55|0.02|0.04|N|O|1997-05-19|1997-06-11|1997-06-18|DELIVER IN PERSON|RAIL|ckly after the | +85807|456374|43902|3|24|31928.40|0.04|0.03|N|O|1997-05-16|1997-06-20|1997-05-28|COLLECT COD|MAIL|cajole blithely i| +85807|261767|24273|4|12|20745.00|0.08|0.06|N|O|1997-07-13|1997-06-02|1997-08-11|DELIVER IN PERSON|RAIL|. furiously furious accounts will nag| +85807|514175|1706|5|2|2378.30|0.03|0.08|N|O|1997-06-13|1997-06-01|1997-07-05|TAKE BACK RETURN|MAIL|busily about t| +85832|158981|46491|1|10|20399.80|0.06|0.05|R|F|1994-06-05|1994-04-24|1994-06-16|NONE|MAIL|uests. blithely pending reques| +85832|980835|5874|2|2|3831.58|0.04|0.03|A|F|1994-06-08|1994-04-14|1994-07-02|TAKE BACK RETURN|AIR|ckly. slyly regular | +85832|880901|5936|3|19|35755.34|0.02|0.05|R|F|1994-06-12|1994-04-14|1994-07-11|COLLECT COD|REG AIR| packages are according to th| +85833|834374|9407|1|38|49716.54|0.07|0.03|N|O|1997-02-18|1997-03-31|1997-02-27|DELIVER IN PERSON|AIR|ructions. blithely special ex| +85833|311903|11904|2|37|70850.93|0.02|0.02|N|O|1997-03-23|1997-03-14|1997-03-24|COLLECT COD|TRUCK|thely final courts x-ray qu| +85833|145215|20220|3|49|61750.29|0.02|0.07|N|O|1997-04-03|1997-04-04|1997-04-20|TAKE BACK RETURN|MAIL|fter the furiously special accounts prom| +85833|613817|26330|4|47|81346.66|0.02|0.02|N|O|1997-02-17|1997-02-27|1997-02-23|NONE|MAIL|ly pending | +85833|413532|13533|5|29|41919.79|0.04|0.04|N|O|1997-04-08|1997-02-26|1997-04-14|COLLECT COD|FOB|e special dependencies. furiously pe| +85834|372876|35384|1|33|64312.38|0.05|0.06|R|F|1993-07-14|1993-10-03|1993-07-21|DELIVER IN PERSON|REG AIR|fily even pinto beans unwind among the pin| +85834|921076|46113|2|7|7679.21|0.08|0.06|R|F|1993-08-13|1993-10-04|1993-09-07|NONE|RAIL| carefully even requests ab| +85834|508667|46198|3|13|21783.32|0.01|0.01|A|F|1993-08-21|1993-08-22|1993-08-22|TAKE BACK RETURN|MAIL|fily bold requests. sheaves cajol| +85835|290293|15304|1|23|29515.44|0.03|0.04|R|F|1994-04-19|1994-05-31|1994-05-01|DELIVER IN PERSON|TRUCK|ide of the stealthily regular dependen| +85835|950763|764|2|39|70735.08|0.04|0.05|A|F|1994-07-18|1994-05-28|1994-08-11|COLLECT COD|AIR|nic ideas. pending platelets | +85835|459124|9125|3|33|35742.30|0.05|0.08|R|F|1994-04-20|1994-06-06|1994-04-26|NONE|AIR|sts snooze carefully a| +85835|495457|32985|4|28|40668.04|0.06|0.00|A|F|1994-07-01|1994-06-05|1994-07-17|COLLECT COD|MAIL|ly. fluffily pending acco| +85835|132297|7302|5|3|3987.87|0.03|0.06|A|F|1994-05-16|1994-05-02|1994-05-24|DELIVER IN PERSON|TRUCK|posits against the sly| +85835|502742|40273|6|20|34894.40|0.05|0.04|R|F|1994-04-22|1994-04-23|1994-05-07|NONE|MAIL|lar request| +85835|578787|41299|7|39|72764.64|0.04|0.00|R|F|1994-06-06|1994-06-07|1994-07-04|TAKE BACK RETURN|FOB|telets. waters ha| +85836|656450|6451|1|13|18283.46|0.05|0.04|N|O|1998-03-16|1998-04-11|1998-03-24|TAKE BACK RETURN|MAIL|xcuses cajole throughout the carefully| +85837|96137|8639|1|33|37393.29|0.07|0.04|A|F|1993-11-02|1993-10-02|1993-11-12|DELIVER IN PERSON|RAIL|s. regular, ironic foxes should have| +85837|771661|46692|2|48|83166.24|0.01|0.08|A|F|1993-09-06|1993-10-21|1993-09-07|COLLECT COD|MAIL|ses. dolphins haggle after the carefully re| +85838|573537|48560|1|36|57978.36|0.00|0.05|N|O|1997-11-10|1997-12-25|1997-12-06|TAKE BACK RETURN|TRUCK|sly pending, ironi| +85838|426049|13574|2|40|39000.80|0.10|0.04|N|O|1998-02-05|1998-01-12|1998-03-07|TAKE BACK RETURN|REG AIR|kly pending instructions. | +85838|591328|16351|3|12|17031.60|0.04|0.01|N|O|1998-02-20|1997-12-12|1998-03-04|DELIVER IN PERSON|RAIL| depths detect| +85838|446394|8903|4|45|60316.65|0.08|0.00|N|O|1997-12-07|1997-12-15|1997-12-11|TAKE BACK RETURN|TRUCK|ts. carefully pen| +85839|524225|49246|1|36|44971.20|0.03|0.06|A|F|1992-08-21|1992-09-02|1992-09-17|COLLECT COD|SHIP|nding deposits. unusual foxes t| +85839|645546|45547|2|49|73083.99|0.07|0.01|R|F|1992-08-25|1992-08-09|1992-09-17|TAKE BACK RETURN|AIR|nticingly even dependencies| +85839|684983|10010|3|43|84621.85|0.02|0.08|A|F|1992-10-24|1992-09-14|1992-11-17|DELIVER IN PERSON|SHIP| bold deposits. regula| +85839|496102|21121|4|44|48315.52|0.06|0.03|A|F|1992-10-08|1992-09-27|1992-11-01|DELIVER IN PERSON|RAIL|e even requests. fluffily| +85864|32547|32548|1|33|48824.82|0.09|0.00|N|O|1996-03-27|1996-03-29|1996-04-04|COLLECT COD|AIR|g silent requests| +85864|7018|19519|2|8|7400.08|0.05|0.01|N|O|1996-03-06|1996-02-22|1996-03-18|COLLECT COD|MAIL|cajole carefully alongside of the caref| +85864|949889|12408|3|33|63981.72|0.09|0.01|N|O|1996-01-08|1996-02-16|1996-01-18|DELIVER IN PERSON|SHIP|osits. furiously ironic instr| +85865|893049|43050|1|50|52100.00|0.05|0.00|N|O|1996-10-15|1996-11-05|1996-10-24|NONE|REG AIR|special packag| +85865|460429|10430|2|38|52797.20|0.05|0.06|N|O|1996-08-22|1996-10-26|1996-09-19|TAKE BACK RETURN|TRUCK|final reques| +85865|419786|7311|3|23|39232.48|0.07|0.04|N|O|1996-08-28|1996-10-10|1996-09-18|TAKE BACK RETURN|TRUCK|foxes sleep quickly along the | +85865|331271|18790|4|26|33858.76|0.02|0.07|N|O|1996-10-11|1996-11-06|1996-10-31|DELIVER IN PERSON|REG AIR| regular warthogs. exp| +85865|671625|21626|5|35|55880.65|0.01|0.01|N|O|1996-09-18|1996-09-17|1996-09-26|COLLECT COD|AIR|ns. blithely regular courts affix:| +85865|997999|35557|6|41|85974.95|0.09|0.00|N|O|1996-09-01|1996-10-21|1996-09-18|TAKE BACK RETURN|MAIL|d packages lose. furiously spec| +85866|298116|35632|1|37|41221.70|0.02|0.02|R|F|1994-04-06|1994-04-18|1994-04-11|COLLECT COD|RAIL|above the iro| +85866|435073|35074|2|29|29233.45|0.06|0.02|R|F|1994-06-23|1994-05-23|1994-06-24|TAKE BACK RETURN|TRUCK|e platelets cajole quickly above the e| +85866|266740|4256|3|44|75096.12|0.07|0.08|R|F|1994-04-04|1994-05-20|1994-04-22|DELIVER IN PERSON|FOB| regular theodolites| +85866|94422|19425|4|49|69404.58|0.07|0.00|R|F|1994-04-07|1994-04-25|1994-05-04|TAKE BACK RETURN|MAIL|nding instructions are carefully| +85867|65305|27807|1|23|29216.90|0.06|0.06|R|F|1994-04-07|1994-03-01|1994-04-11|COLLECT COD|TRUCK|ng, ironic frays. special, final accounts| +85868|326541|26542|1|13|20377.89|0.09|0.01|N|O|1997-01-01|1996-12-22|1997-01-29|DELIVER IN PERSON|TRUCK|regular instructions | +85868|168502|43509|2|2|3141.00|0.04|0.00|N|O|1997-01-24|1996-12-22|1997-02-11|DELIVER IN PERSON|FOB|ully fluffily pending dep| +85868|3210|40711|3|31|34509.51|0.06|0.07|N|O|1996-12-30|1996-12-22|1997-01-20|COLLECT COD|TRUCK| slyly across the furi| +85868|947665|10184|4|3|5137.86|0.00|0.04|N|O|1996-10-22|1996-12-06|1996-10-26|COLLECT COD|REG AIR|lly daring dependencies after the blithe| +85868|392090|4598|5|39|46101.12|0.08|0.05|N|O|1996-11-08|1996-12-02|1996-11-14|COLLECT COD|RAIL|ickly against| +85869|664586|27100|1|29|44965.95|0.10|0.05|A|F|1992-04-06|1992-05-23|1992-04-25|COLLECT COD|MAIL|ts are along the fluffily even pin| +85869|684748|34749|2|23|39852.33|0.01|0.06|A|F|1992-06-11|1992-05-28|1992-06-27|DELIVER IN PERSON|TRUCK| final deposits| +85869|550422|25445|3|6|8834.40|0.10|0.03|A|F|1992-04-12|1992-05-08|1992-05-04|DELIVER IN PERSON|AIR|foxes. blithely silent requests haggle; | +85869|940716|3235|4|47|82563.49|0.06|0.01|A|F|1992-04-14|1992-04-18|1992-04-23|NONE|SHIP| final dependencies nod qui| +85869|600402|25427|5|22|28652.14|0.01|0.00|A|F|1992-05-21|1992-04-24|1992-05-30|DELIVER IN PERSON|REG AIR| above the dependencies. ideas wake. fu| +85869|952066|27105|6|4|4472.08|0.05|0.03|A|F|1992-06-26|1992-05-20|1992-06-28|TAKE BACK RETURN|RAIL| warthogs are blithely carefully bold atta| +85869|364271|26779|7|35|46734.10|0.10|0.04|A|F|1992-03-13|1992-05-23|1992-03-16|TAKE BACK RETURN|AIR| ironic packages. fluffily even instructio| +85870|295313|20324|1|30|39249.00|0.07|0.01|N|O|1996-02-28|1996-03-08|1996-02-29|NONE|REG AIR|longside of the bold asymp| +85870|312535|54|2|16|24760.32|0.03|0.03|N|O|1996-02-25|1996-04-11|1996-03-24|TAKE BACK RETURN|MAIL|. instructions hag| +85870|770481|20482|3|27|41889.15|0.04|0.01|N|O|1996-03-14|1996-04-22|1996-03-27|DELIVER IN PERSON|SHIP|egrate fluffily abo| +85870|471907|34417|4|44|82670.72|0.08|0.03|N|O|1996-02-05|1996-03-06|1996-03-01|COLLECT COD|RAIL|ccounts unwind care| +85871|619256|19257|1|13|15277.86|0.08|0.05|A|F|1993-09-06|1993-10-05|1993-09-27|COLLECT COD|RAIL|ending packages b| +85871|821119|21120|2|35|36402.45|0.00|0.07|R|F|1993-09-17|1993-10-03|1993-09-18|COLLECT COD|REG AIR|s. furiously pending asymptotes past th| +85871|541041|41042|3|13|14066.26|0.03|0.03|R|F|1993-10-12|1993-09-28|1993-10-28|COLLECT COD|SHIP|jole across the regular platelets. quickly| +85871|259755|47271|4|44|75448.56|0.00|0.02|R|F|1993-08-31|1993-09-27|1993-09-09|TAKE BACK RETURN|TRUCK|he blithely spe| +85896|787344|49860|1|47|67271.57|0.09|0.03|A|F|1992-11-30|1992-12-20|1992-12-13|DELIVER IN PERSON|REG AIR|carefully | +85896|877745|15297|2|42|72353.40|0.00|0.03|A|F|1993-02-05|1992-12-24|1993-02-28|DELIVER IN PERSON|AIR|posits detect quick| +85896|257940|7941|3|31|58835.83|0.04|0.05|R|F|1993-01-15|1992-12-23|1993-02-03|COLLECT COD|TRUCK|express, even ins| +85897|282319|19835|1|12|15615.60|0.10|0.07|N|O|1995-10-30|1995-10-21|1995-11-22|TAKE BACK RETURN|SHIP|dly ironic braid| +85897|930716|43235|2|16|27946.72|0.02|0.00|N|O|1995-08-16|1995-10-21|1995-08-26|DELIVER IN PERSON|TRUCK|en, regular requests | +85897|539688|14709|3|25|43191.50|0.01|0.03|N|O|1995-11-10|1995-09-28|1995-12-03|DELIVER IN PERSON|AIR|ously regula| +85897|527705|40216|4|48|83168.64|0.05|0.05|N|O|1995-09-05|1995-10-10|1995-10-01|DELIVER IN PERSON|REG AIR|gular depos| +85897|137318|49821|5|12|16263.72|0.06|0.07|N|O|1995-10-31|1995-09-11|1995-11-12|TAKE BACK RETURN|FOB| sleep about the quickly final requests.| +85898|838987|26536|1|35|67407.90|0.05|0.02|A|F|1994-05-29|1994-05-28|1994-06-27|COLLECT COD|FOB|posits must have to hinder care| +85898|848933|11450|2|42|79039.38|0.07|0.03|A|F|1994-04-13|1994-06-01|1994-05-10|COLLECT COD|TRUCK|nto beans use foxes. fluffily un| +85899|536495|11516|1|37|56664.39|0.08|0.03|A|F|1993-08-17|1993-07-21|1993-09-06|NONE|REG AIR|structions are a| +85900|444250|31775|1|37|44186.51|0.07|0.08|R|F|1993-03-21|1993-04-19|1993-04-05|COLLECT COD|MAIL|ironic ideas. furiously regular deposits| +85900|495317|7827|2|8|10498.32|0.00|0.02|R|F|1993-03-26|1993-03-24|1993-04-19|COLLECT COD|FOB| pending ideas are fu| +85900|788925|1441|3|47|94652.83|0.01|0.07|A|F|1993-06-15|1993-05-14|1993-07-09|DELIVER IN PERSON|MAIL|nt accounts sleep carefu| +85900|458216|45744|4|37|43445.03|0.05|0.06|A|F|1993-04-30|1993-03-26|1993-05-14|DELIVER IN PERSON|TRUCK| final foxes. deposits | +85900|233215|33216|5|6|6889.20|0.10|0.00|A|F|1993-02-22|1993-04-24|1993-03-21|COLLECT COD|SHIP|egular instructions cajole along the blit| +85900|633950|8975|6|24|45214.08|0.01|0.03|A|F|1993-03-31|1993-04-22|1993-04-08|DELIVER IN PERSON|SHIP|nts. accounts are furiously bold deposit| +85901|663272|38299|1|36|44468.64|0.05|0.08|A|F|1994-11-15|1994-11-07|1994-12-13|TAKE BACK RETURN|RAIL|ions wake furi| +85901|602937|40474|2|6|11039.40|0.00|0.02|A|F|1994-10-18|1994-11-07|1994-10-24|NONE|AIR|ily pending dependencies. excuses | +85901|548075|35606|3|12|13476.60|0.08|0.02|R|F|1994-09-15|1994-09-15|1994-09-22|DELIVER IN PERSON|RAIL|es wake according to the asymptote| +85901|481539|44049|4|30|45615.30|0.09|0.02|A|F|1994-12-10|1994-11-08|1995-01-02|NONE|MAIL|carefully unusual, bold deposits:| +85901|223235|10748|5|24|27797.28|0.06|0.02|R|F|1994-12-07|1994-10-28|1995-01-06|COLLECT COD|FOB|ogged deposits sleep furiously| +85901|904095|29132|6|50|54952.50|0.06|0.08|A|F|1994-11-29|1994-11-07|1994-12-21|COLLECT COD|REG AIR|l pinto be| +85902|651314|38854|1|19|24040.32|0.05|0.00|A|F|1994-09-05|1994-07-27|1994-09-23|DELIVER IN PERSON|FOB|s are carefully furiously | +85903|688570|1084|1|9|14026.86|0.10|0.06|N|O|1997-11-12|1997-09-06|1997-11-26|NONE|MAIL|eas after the ironic| +85903|795922|8438|2|15|30268.35|0.10|0.03|N|O|1997-09-12|1997-10-28|1997-09-25|DELIVER IN PERSON|SHIP|out the regular packages. | +85903|44453|6954|3|41|57295.45|0.08|0.06|N|O|1997-09-04|1997-10-31|1997-09-05|DELIVER IN PERSON|AIR|mong the quickly unus| +85928|557392|19904|1|21|30436.77|0.01|0.00|N|O|1998-04-14|1998-06-11|1998-04-15|NONE|TRUCK| the pending decoys. carefu| +85928|80411|42913|2|12|16696.92|0.09|0.02|N|O|1998-07-11|1998-06-18|1998-07-30|DELIVER IN PERSON|FOB|ld, even pl| +85929|125195|25196|1|34|41486.46|0.10|0.06|N|O|1997-09-26|1997-09-13|1997-10-03|TAKE BACK RETURN|FOB|nic, expres| +85930|36659|36660|1|13|20743.45|0.10|0.08|N|O|1996-05-21|1996-03-11|1996-06-04|TAKE BACK RETURN|TRUCK|osits use f| +85931|258302|45818|1|19|23945.51|0.06|0.00|N|O|1997-09-13|1997-11-29|1997-10-01|NONE|FOB|nal deposits cajole sly| +85931|276174|13690|2|28|32204.48|0.03|0.02|N|O|1997-11-03|1997-11-02|1997-11-20|COLLECT COD|SHIP|ly pending reque| +85931|640103|2616|3|23|23990.61|0.07|0.08|N|O|1997-12-01|1997-11-18|1997-12-25|TAKE BACK RETURN|MAIL|ackages. quickly regular deposits sle| +85931|197004|9508|4|50|55050.00|0.00|0.07|N|O|1997-10-13|1997-10-16|1997-10-23|COLLECT COD|FOB|inal attainments are| +85931|30205|42706|5|27|30650.40|0.06|0.04|N|O|1997-12-06|1997-10-30|1998-01-02|DELIVER IN PERSON|FOB|al foxes do are slyly ironic depen| +85932|363293|38308|1|11|14919.08|0.06|0.02|R|F|1993-02-19|1993-04-07|1993-03-14|DELIVER IN PERSON|FOB|luffily ironic| +85932|861495|49047|2|42|61170.90|0.09|0.02|A|F|1993-03-04|1993-03-20|1993-03-15|COLLECT COD|AIR|silently even requests haggle. deposits are| +85932|133454|33455|3|6|8924.70|0.03|0.05|A|F|1993-03-18|1993-03-20|1993-04-14|TAKE BACK RETURN|MAIL|packages against the quickly| +85933|758066|20582|1|16|17984.48|0.03|0.06|N|O|1997-06-17|1997-05-11|1997-07-06|COLLECT COD|AIR|ackages use. blithel| +85933|807911|7912|2|36|65479.32|0.03|0.04|N|O|1997-06-01|1997-04-07|1997-06-03|DELIVER IN PERSON|REG AIR|p furiously. permanent requests use abo| +85933|548847|48848|3|35|66353.70|0.04|0.02|N|O|1997-06-19|1997-04-21|1997-07-05|TAKE BACK RETURN|TRUCK|ut the regu| +85933|463451|979|4|21|29703.03|0.07|0.03|N|O|1997-04-17|1997-04-15|1997-04-22|DELIVER IN PERSON|TRUCK| furiously ironic deposits hinder. re| +85933|213940|26445|5|33|61179.69|0.01|0.03|N|O|1997-04-16|1997-05-14|1997-05-01|NONE|SHIP|pecial pinto beans are: slyly regular depo| +85934|978699|16257|1|44|78216.60|0.00|0.00|N|O|1998-02-06|1998-02-21|1998-02-25|TAKE BACK RETURN|RAIL| carefully along the special requests. sl| +85934|992616|30174|2|16|27337.12|0.02|0.02|N|O|1997-12-16|1998-01-27|1998-01-14|NONE|REG AIR|stead of the fl| +85934|882080|32081|3|10|10620.40|0.03|0.04|N|O|1998-02-25|1998-01-03|1998-03-06|DELIVER IN PERSON|SHIP|quickly bol| +85935|401574|14083|1|13|19182.15|0.02|0.03|R|F|1995-04-08|1995-05-10|1995-05-05|DELIVER IN PERSON|REG AIR|al accounts. pending deposits | +85935|254132|29143|2|21|22808.52|0.10|0.08|N|O|1995-06-28|1995-05-01|1995-07-16|NONE|TRUCK|ts. furiously final | +85935|187069|49573|3|43|49710.58|0.02|0.05|A|F|1995-04-13|1995-05-23|1995-04-24|TAKE BACK RETURN|RAIL| packages nag slyly silent ins| +85935|57622|20124|4|5|7898.10|0.05|0.08|N|O|1995-07-04|1995-06-15|1995-07-05|COLLECT COD|AIR|ans believe furio| +85935|444849|7358|5|6|10762.92|0.03|0.06|N|F|1995-06-01|1995-04-16|1995-06-27|NONE|RAIL|ecial, enticing requests across the fl| +85935|563213|25725|6|41|52323.79|0.03|0.00|R|F|1995-05-04|1995-04-28|1995-05-29|DELIVER IN PERSON|SHIP|nto beans. careful packages de| +85935|920357|20358|7|24|33055.44|0.00|0.00|A|F|1995-04-23|1995-05-12|1995-04-26|COLLECT COD|REG AIR|ld patterns are f| +85960|433925|8942|1|4|7435.60|0.10|0.04|N|O|1996-01-26|1996-01-17|1996-01-29|TAKE BACK RETURN|AIR| bold requests about | +85961|965728|40767|1|38|68159.84|0.03|0.01|A|F|1992-03-21|1992-05-25|1992-04-07|TAKE BACK RETURN|FOB|y express foxes detect above the | +85961|980233|30234|2|32|42022.08|0.09|0.06|A|F|1992-05-07|1992-05-31|1992-05-25|NONE|TRUCK| special pinto beans wake carefully caref| +85961|761038|36069|3|6|6594.00|0.10|0.03|R|F|1992-04-09|1992-05-12|1992-05-01|TAKE BACK RETURN|SHIP|according to the even, final| +85962|315370|15371|1|15|20780.40|0.10|0.02|N|O|1996-06-16|1996-05-17|1996-06-26|COLLECT COD|FOB|ronic deposits across the blithe| +85963|124982|37485|1|5|10034.90|0.08|0.04|R|F|1994-03-23|1994-01-31|1994-04-16|TAKE BACK RETURN|FOB|s sleep blithely. slyly express theo| +85963|557274|7275|2|43|57243.75|0.02|0.02|A|F|1994-02-04|1994-01-10|1994-02-20|NONE|REG AIR|y players. platelets haggle agains| +85963|101857|26862|3|25|46471.25|0.04|0.01|R|F|1993-12-26|1994-01-14|1994-01-16|NONE|RAIL| packages. slyly pending deposit| +85963|910186|22705|4|4|4784.56|0.09|0.02|R|F|1994-03-25|1994-03-01|1994-03-27|TAKE BACK RETURN|AIR| packages. blithel| +85964|135597|23104|1|30|48977.70|0.06|0.03|R|F|1992-08-23|1992-09-01|1992-09-06|NONE|REG AIR|ctions. excuses above the express pack| +85964|963948|13949|2|32|64380.80|0.00|0.01|R|F|1992-10-31|1992-09-14|1992-11-15|TAKE BACK RETURN|AIR|requests along the express ideas wa| +85964|63725|13726|3|5|8443.60|0.01|0.00|A|F|1992-08-09|1992-09-12|1992-08-20|DELIVER IN PERSON|TRUCK|hy foxes. furiously even deposits wake| +85964|14341|26842|4|34|42681.56|0.09|0.04|A|F|1992-10-25|1992-09-26|1992-11-13|NONE|REG AIR|e carefully after the| +85965|730351|17894|1|27|37295.64|0.01|0.02|N|O|1997-11-20|1998-01-07|1997-12-07|TAKE BACK RETURN|MAIL| bold, regular accounts. carefully express| +85965|999685|24724|2|6|10707.84|0.04|0.05|N|O|1998-01-29|1997-11-21|1998-02-03|TAKE BACK RETURN|MAIL|s use. final packages cajole special, s| +85965|702464|40007|3|31|45459.33|0.09|0.07|N|O|1998-02-13|1998-01-15|1998-02-21|NONE|MAIL|. fluffily final | +85965|307349|7350|4|14|18988.62|0.01|0.01|N|O|1997-11-01|1998-01-02|1997-11-09|DELIVER IN PERSON|SHIP|arly. reque| +85966|249081|11586|1|38|39142.66|0.08|0.08|R|F|1994-10-04|1994-10-21|1994-10-23|TAKE BACK RETURN|MAIL|ke furiously. regular, pending requests| +85966|299043|49044|2|19|19798.57|0.10|0.05|A|F|1994-12-20|1994-12-03|1995-01-17|COLLECT COD|FOB|arefully in place of the b| +85966|13853|38854|3|9|15901.65|0.05|0.08|A|F|1995-01-06|1994-10-27|1995-01-29|TAKE BACK RETURN|REG AIR|riously ironic Tiresias: carefully regula| +85966|810929|23446|4|24|44157.12|0.10|0.01|R|F|1995-01-08|1994-11-02|1995-01-27|COLLECT COD|SHIP|requests besides the flu| +85966|268517|43528|5|45|66847.50|0.06|0.02|R|F|1994-12-01|1994-11-08|1994-12-27|COLLECT COD|REG AIR|fter the quickly final orbits. | +85966|963283|13284|6|33|44425.92|0.07|0.00|R|F|1994-10-19|1994-12-09|1994-11-13|DELIVER IN PERSON|TRUCK|ly. quickly express dinos are quickly acco| +85967|683628|46142|1|43|69298.37|0.05|0.00|N|O|1996-11-21|1996-09-28|1996-12-02|NONE|RAIL|t. requests sleep furiously | +85967|726110|13653|2|22|24993.76|0.06|0.06|N|O|1996-09-28|1996-09-30|1996-10-06|TAKE BACK RETURN|REG AIR|eans sleep above the careful| +85992|625742|13279|1|4|6670.84|0.06|0.01|A|F|1995-05-30|1995-06-29|1995-06-13|COLLECT COD|AIR|e quickly carefully i| +85992|841152|28701|2|16|17489.76|0.04|0.02|N|O|1995-06-24|1995-08-21|1995-07-01|NONE|MAIL| foxes are fluffily unusual dolphins. fina| +85992|226140|26141|3|26|27719.38|0.08|0.02|N|O|1995-08-19|1995-07-15|1995-08-23|NONE|SHIP|ress carefu| +85992|723054|35569|4|5|5385.10|0.09|0.03|N|O|1995-09-10|1995-07-09|1995-10-03|COLLECT COD|REG AIR|he pinto bean| +85993|528850|16381|1|30|56364.90|0.10|0.05|N|O|1996-03-05|1996-02-13|1996-04-03|NONE|REG AIR|ly express account| +85993|371043|8565|2|6|6684.18|0.06|0.00|N|O|1996-02-18|1996-03-18|1996-03-17|DELIVER IN PERSON|FOB|c packages. quickly final excuses haggle c| +85993|107337|32342|3|29|38985.57|0.03|0.08|N|O|1996-01-15|1996-02-10|1996-01-22|COLLECT COD|SHIP|ckages. furiously ironic instruct| +85993|6861|19362|4|36|63642.96|0.02|0.04|N|O|1996-02-28|1996-02-21|1996-03-22|COLLECT COD|SHIP|und the furiously bold packages.| +85993|305296|17803|5|12|15615.36|0.02|0.06|N|O|1996-02-23|1996-02-26|1996-03-06|DELIVER IN PERSON|MAIL|ake slyly. even d| +85993|104304|16807|6|19|24857.70|0.05|0.08|N|O|1996-04-14|1996-02-20|1996-04-30|TAKE BACK RETURN|TRUCK|nos: carefully pending foxes wake flu| +85994|77569|15073|1|23|35570.88|0.05|0.03|N|O|1998-04-28|1998-06-20|1998-05-11|COLLECT COD|RAIL| among the| +85994|685717|10744|2|33|56188.44|0.07|0.03|N|O|1998-08-03|1998-06-20|1998-08-18|TAKE BACK RETURN|FOB|uriously across the frets. furiou| +85994|832315|7348|3|16|19956.32|0.01|0.02|N|O|1998-05-19|1998-07-04|1998-06-03|TAKE BACK RETURN|TRUCK|y ironic foxes affix busily fluffily u| +85995|577999|3022|1|23|47770.31|0.05|0.00|N|O|1996-10-11|1996-08-15|1996-11-03|DELIVER IN PERSON|AIR|es nag slyly after the furiously| +85995|414617|14618|2|17|26037.03|0.10|0.04|N|O|1996-08-12|1996-09-06|1996-08-31|TAKE BACK RETURN|REG AIR|nstructions serve blithely blit| +85995|459942|9943|3|49|93194.08|0.04|0.01|N|O|1996-09-29|1996-09-27|1996-10-04|NONE|AIR|lyly unusual a| +85995|242349|4854|4|16|20661.28|0.00|0.07|N|O|1996-08-10|1996-09-14|1996-08-30|NONE|SHIP|ly regular sheaves. quickly ir| +85996|784689|9720|1|35|62077.75|0.01|0.08|N|O|1995-08-26|1995-08-29|1995-09-18|DELIVER IN PERSON|TRUCK| ideas nag. furiously ironic| +85996|259567|9568|2|46|70221.30|0.02|0.02|N|O|1995-09-28|1995-09-01|1995-10-08|DELIVER IN PERSON|TRUCK|uests nag carefully about | +85997|643013|5526|1|7|6691.86|0.07|0.02|R|F|1992-12-26|1992-11-25|1993-01-14|DELIVER IN PERSON|MAIL|ly even foxes serve since the| +85997|106662|6663|2|3|5005.98|0.03|0.06|A|F|1993-02-08|1992-11-17|1993-02-21|TAKE BACK RETURN|RAIL|y bold theodolites. final packa| +85997|654235|16749|3|20|23784.00|0.06|0.04|R|F|1992-12-26|1992-11-26|1993-01-04|DELIVER IN PERSON|SHIP| carefully express asymptote| +85997|719789|7332|4|22|39792.50|0.10|0.02|R|F|1993-01-01|1993-01-06|1993-01-14|NONE|FOB| instructions. regular, ironic requests w| +85997|492536|30064|5|4|6114.04|0.01|0.02|A|F|1993-02-01|1992-11-20|1993-02-15|DELIVER IN PERSON|RAIL|iously bold courts. fluffily pen| +85997|36277|23778|6|36|43677.72|0.00|0.04|A|F|1992-12-18|1992-12-25|1992-12-26|COLLECT COD|TRUCK|rhorses engage slyly among the regular dep| +85997|700901|902|7|14|26626.18|0.06|0.03|R|F|1992-11-13|1992-12-08|1992-12-06|NONE|REG AIR|arefully pending accounts aga| +85998|29437|29438|1|35|47825.05|0.08|0.00|N|O|1998-01-17|1998-01-25|1998-02-12|COLLECT COD|MAIL|ding packages. unusual theo| +85998|746774|21803|2|15|27311.10|0.01|0.06|N|O|1998-01-25|1998-01-11|1998-02-16|NONE|TRUCK|e quickly bo| +85998|25688|25689|3|36|58092.48|0.04|0.01|N|O|1998-03-08|1998-02-10|1998-03-22|COLLECT COD|REG AIR|foxes. foxes cajole blithe| +85998|727291|2320|4|19|25046.94|0.03|0.07|N|O|1998-01-20|1998-02-03|1998-02-18|DELIVER IN PERSON|MAIL|lar deposits are carefully| +85999|491195|41196|1|27|32026.59|0.09|0.00|A|F|1993-04-21|1993-05-12|1993-05-17|COLLECT COD|REG AIR| blithely pending deposi| +85999|504724|17235|2|22|38031.40|0.04|0.01|R|F|1993-07-04|1993-06-21|1993-07-08|COLLECT COD|TRUCK|e carefully final packages| +86024|516670|29181|1|25|42166.25|0.02|0.06|R|F|1992-07-03|1992-07-18|1992-07-14|COLLECT COD|RAIL|ckly final accounts unwind furiously| +86024|665914|28428|2|36|67675.68|0.06|0.05|R|F|1992-10-04|1992-08-16|1992-10-13|COLLECT COD|FOB|ilent deposits sleep b| +86024|2853|27854|3|17|29849.45|0.08|0.02|A|F|1992-06-27|1992-09-05|1992-07-04|DELIVER IN PERSON|FOB|. fluffily unu| +86024|941670|41671|4|14|23962.82|0.01|0.06|A|F|1992-07-08|1992-08-02|1992-07-31|DELIVER IN PERSON|FOB|ffily even requests. carefully bol| +86025|422759|47776|1|5|8408.65|0.10|0.00|R|F|1993-08-21|1993-08-22|1993-08-23|NONE|TRUCK|e. ironic, pend| +86025|310364|10365|2|22|30235.70|0.08|0.02|R|F|1993-07-20|1993-09-29|1993-08-02|NONE|MAIL|asymptotes solve finally according t| +86025|276716|39222|3|30|50781.00|0.05|0.02|A|F|1993-10-04|1993-10-04|1993-10-11|NONE|RAIL|ecial decoys impress across | +86026|574306|36818|1|8|11042.24|0.10|0.04|A|F|1994-09-16|1994-08-16|1994-10-02|TAKE BACK RETURN|RAIL|blithely even accounts. carefully unusual f| +86026|351102|38624|2|49|56501.41|0.07|0.06|R|F|1994-09-25|1994-08-04|1994-10-22|TAKE BACK RETURN|REG AIR|kindle after the fluffily| +86026|960002|22522|3|27|28672.92|0.09|0.05|A|F|1994-09-22|1994-08-20|1994-10-19|TAKE BACK RETURN|RAIL| pending deposits ar| +86026|745866|8381|4|28|53531.24|0.07|0.01|A|F|1994-08-04|1994-07-24|1994-08-30|TAKE BACK RETURN|FOB|y. regularly ironic dep| +86026|756606|44152|5|49|81465.93|0.00|0.06|A|F|1994-07-14|1994-08-30|1994-08-07|DELIVER IN PERSON|MAIL|tly. furiously ironic requests hang acr| +86027|531788|31789|1|50|90988.00|0.03|0.02|N|O|1995-09-10|1995-07-21|1995-09-24|DELIVER IN PERSON|FOB|slyly ironic asympto| +86028|8780|8781|1|15|25331.70|0.04|0.00|A|F|1994-08-05|1994-07-02|1994-08-08|DELIVER IN PERSON|MAIL| pinto beans are slyly fur| +86028|560754|35777|2|17|30850.41|0.02|0.03|R|F|1994-09-24|1994-08-22|1994-10-12|COLLECT COD|SHIP|oss the bold, special deposits. foxe| +86028|576677|14211|3|31|54363.15|0.03|0.07|A|F|1994-07-13|1994-07-26|1994-07-17|NONE|SHIP|arefully f| +86029|542716|5227|1|44|77382.36|0.01|0.01|R|F|1994-10-22|1994-09-23|1994-10-27|NONE|MAIL|f the fluffily even orbits use fl| +86029|425574|25575|2|44|65980.20|0.00|0.02|R|F|1994-12-09|1994-09-26|1994-12-31|NONE|SHIP|s solve furiously. bold instruction| +86029|621048|46073|3|20|19380.20|0.01|0.06|A|F|1994-09-20|1994-10-22|1994-10-17|DELIVER IN PERSON|MAIL|oys. ironic requests a| +86030|116379|3886|1|30|41861.10|0.04|0.04|N|O|1996-07-30|1996-09-25|1996-08-22|NONE|SHIP|en, even request| +86030|972929|22930|2|5|10009.40|0.02|0.03|N|O|1996-10-16|1996-10-04|1996-11-13|NONE|TRUCK|es sleep quickly across the cl| +86030|3701|41202|3|25|40117.50|0.00|0.00|N|O|1996-08-09|1996-10-12|1996-08-28|NONE|TRUCK|e furiously across the blithely| +86030|187955|37956|4|36|73546.20|0.07|0.04|N|O|1996-10-14|1996-10-06|1996-11-08|TAKE BACK RETURN|RAIL|ly unusual, pending pinto beans. blithely f| +86030|950772|25811|5|35|63795.55|0.05|0.04|N|O|1996-10-24|1996-08-28|1996-11-11|NONE|SHIP|after the ironic instru| +86031|895650|20685|1|5|8228.05|0.04|0.03|R|F|1995-03-03|1995-04-02|1995-04-01|DELIVER IN PERSON|MAIL|about the ca| +86031|184523|22033|2|10|16075.20|0.00|0.04|A|F|1995-05-30|1995-03-16|1995-06-13|NONE|REG AIR| blithely against the sauternes. pinto | +86056|560467|22979|1|8|12219.52|0.03|0.00|R|F|1995-04-19|1995-04-25|1995-05-06|TAKE BACK RETURN|FOB|requests. furiously fi| +86056|753873|3874|2|45|86707.80|0.01|0.08|N|O|1995-07-09|1995-04-20|1995-07-12|DELIVER IN PERSON|FOB|e along the deposits. regular packages| +86056|330790|5803|3|33|60085.74|0.00|0.01|N|F|1995-06-09|1995-04-20|1995-06-28|NONE|RAIL|ironic theodolites | +86056|585906|48418|4|9|17926.92|0.07|0.01|A|F|1995-05-18|1995-05-13|1995-05-23|DELIVER IN PERSON|RAIL|ttainments nag according to the blit| +86056|310632|10633|5|24|39422.88|0.01|0.05|R|F|1995-05-06|1995-05-02|1995-06-02|COLLECT COD|SHIP|final foxes wake s| +86056|790708|28254|6|39|70148.13|0.04|0.07|A|F|1995-04-01|1995-05-26|1995-04-22|DELIVER IN PERSON|FOB|p carefully regular theodolit| +86057|356948|6949|1|24|48118.32|0.08|0.05|N|O|1997-10-04|1997-10-19|1997-10-05|COLLECT COD|FOB|y silent foxes. packages | +86058|774119|24120|1|41|48916.28|0.00|0.03|N|O|1997-08-28|1997-08-10|1997-09-25|TAKE BACK RETURN|TRUCK|ites wake blithely furiously final req| +86058|607645|45182|2|30|46578.30|0.05|0.04|N|O|1997-07-15|1997-07-13|1997-08-13|DELIVER IN PERSON|FOB|carefully final packa| +86058|686317|11344|3|27|35188.56|0.07|0.08|N|O|1997-08-01|1997-07-19|1997-08-17|TAKE BACK RETURN|FOB|layers above the re| +86058|921569|46606|4|48|76344.96|0.05|0.03|N|O|1997-09-07|1997-07-25|1997-09-28|NONE|REG AIR|lar instructions. blithely final pint| +86058|806309|43858|5|9|10937.34|0.07|0.04|N|O|1997-09-07|1997-06-26|1997-09-14|COLLECT COD|TRUCK| according to the carefully ironic | +86059|889912|39913|1|2|3803.74|0.09|0.08|N|O|1997-12-20|1998-01-08|1997-12-21|COLLECT COD|TRUCK|ven, express package| +86059|747625|10140|2|6|10035.54|0.05|0.01|N|O|1997-11-28|1998-02-01|1997-12-18|COLLECT COD|TRUCK| instructions; foxes nag| +86059|322985|35492|3|3|6023.91|0.09|0.06|N|O|1998-02-18|1998-01-21|1998-03-12|DELIVER IN PERSON|SHIP|ch. carefully regular accounts print | +86059|405587|43112|4|12|17910.72|0.09|0.02|N|O|1998-02-24|1998-02-18|1998-03-21|TAKE BACK RETURN|AIR|s. platelets nag. furiously regular idea| +86059|693784|31324|5|8|14222.00|0.10|0.00|N|O|1997-12-19|1998-02-01|1998-01-04|NONE|SHIP|ongside of t| +86059|413667|38684|6|23|36354.72|0.08|0.04|N|O|1998-01-02|1998-01-14|1998-01-05|TAKE BACK RETURN|MAIL|al dolphins. ca| +86060|541330|16351|1|28|38396.68|0.04|0.01|N|O|1996-10-17|1996-10-24|1996-11-02|TAKE BACK RETURN|RAIL|ts affix slyly alongside o| +86060|127115|27116|2|27|30836.97|0.08|0.02|N|O|1997-01-17|1996-11-26|1997-01-25|TAKE BACK RETURN|FOB| slyly final accounts. ironic requ| +86060|411844|36861|3|31|54430.42|0.05|0.03|N|O|1996-11-29|1996-12-06|1996-12-19|TAKE BACK RETURN|AIR|nstructions wake e| +86060|856864|6865|4|30|54624.60|0.01|0.08|N|O|1996-12-09|1996-11-04|1996-12-31|TAKE BACK RETURN|SHIP| instructions. furiously s| +86060|303703|16210|5|21|35840.49|0.10|0.03|N|O|1996-10-24|1996-10-29|1996-11-03|TAKE BACK RETURN|FOB|s sleep quickly among the boldly | +86061|151567|26574|1|1|1618.56|0.00|0.08|N|O|1998-07-24|1998-08-24|1998-08-09|DELIVER IN PERSON|REG AIR|ng the ironic foxes. packa| +86061|377718|27719|2|43|77215.10|0.06|0.03|N|O|1998-09-13|1998-10-13|1998-09-23|NONE|AIR|efully regular instructions| +86062|557523|32546|1|10|15805.00|0.02|0.08|A|F|1993-11-15|1993-12-11|1993-12-05|COLLECT COD|MAIL| accounts. furiously even instructions alo| +86062|280849|18365|2|5|9149.15|0.09|0.02|R|F|1993-12-25|1994-01-17|1994-01-23|TAKE BACK RETURN|AIR|fluffily silent de| +86062|222156|47165|3|20|21562.80|0.06|0.03|R|F|1994-01-04|1993-12-29|1994-01-18|NONE|RAIL|es are carefully | +86062|772581|35097|4|18|29763.90|0.02|0.04|R|F|1994-01-08|1994-01-06|1994-01-13|TAKE BACK RETURN|SHIP| ideas cajole fluffily blith| +86062|765451|27967|5|44|66722.48|0.00|0.08|R|F|1993-11-10|1993-12-02|1993-11-16|COLLECT COD|AIR|its sleep. furiously bold account| +86063|48356|10857|1|34|44347.90|0.01|0.05|N|O|1996-10-04|1996-09-24|1996-10-14|COLLECT COD|MAIL| accounts. carefully ironic requests about | +86063|704538|29567|2|8|12340.00|0.02|0.03|N|O|1996-08-05|1996-09-18|1996-08-17|DELIVER IN PERSON|MAIL|re among the fur| +86088|227539|2548|1|18|26397.36|0.06|0.00|A|F|1993-07-16|1993-05-30|1993-07-30|DELIVER IN PERSON|AIR|quickly specia| +86088|237497|12506|2|9|12910.32|0.04|0.07|R|F|1993-05-25|1993-06-06|1993-05-31|COLLECT COD|AIR|y pending excuses after the regular| +86088|611683|36708|3|3|4783.95|0.05|0.08|R|F|1993-04-17|1993-06-06|1993-05-06|TAKE BACK RETURN|SHIP|kly. furiously | +86088|541267|3778|4|4|5232.96|0.10|0.03|R|F|1993-04-29|1993-05-31|1993-05-15|TAKE BACK RETURN|AIR|ously bold pac| +86089|362423|24931|1|12|17824.92|0.02|0.01|R|F|1992-05-08|1992-07-28|1992-05-16|COLLECT COD|FOB| express requests. final deposits wake quic| +86089|231663|19176|2|44|70164.60|0.03|0.07|R|F|1992-06-24|1992-06-25|1992-07-20|NONE|RAIL|blithely at the blithel| +86089|546078|46079|3|11|12364.55|0.04|0.04|R|F|1992-09-01|1992-08-02|1992-09-27|COLLECT COD|TRUCK|pinto beans. quickly final packag| +86089|930552|18107|4|3|4747.53|0.01|0.00|A|F|1992-07-10|1992-07-10|1992-08-01|TAKE BACK RETURN|AIR|ptotes nag slyly th| +86089|774640|37156|5|17|29148.37|0.02|0.07|R|F|1992-09-03|1992-07-06|1992-09-12|NONE|FOB|ly. final, special requests | +86090|256976|6977|1|39|75385.44|0.01|0.02|N|O|1998-03-16|1998-02-27|1998-04-12|COLLECT COD|AIR|he blithely ironic requests| +86090|992669|17708|2|14|24662.68|0.07|0.07|N|O|1998-01-26|1998-02-14|1998-02-02|DELIVER IN PERSON|MAIL|ptotes sleep| +86090|777417|14963|3|30|44831.40|0.05|0.07|N|O|1998-05-04|1998-03-22|1998-06-03|DELIVER IN PERSON|REG AIR|l, regular pin| +86090|33069|20570|4|34|34070.04|0.01|0.07|N|O|1998-04-12|1998-03-06|1998-04-23|NONE|SHIP| quickly regular theodolites.| +86091|332490|7503|1|29|44151.92|0.05|0.08|R|F|1994-04-10|1994-05-22|1994-04-15|NONE|AIR|l packages. special requests at the blithel| +86091|158227|8228|2|4|5140.88|0.07|0.06|A|F|1994-07-18|1994-05-14|1994-07-21|DELIVER IN PERSON|SHIP|ress dependencies haggle slo| +86092|869521|32039|1|23|34281.04|0.05|0.04|N|O|1996-03-21|1996-03-19|1996-03-22|COLLECT COD|REG AIR|fily even acco| +86092|22916|35417|2|33|60684.03|0.09|0.02|N|O|1996-04-17|1996-04-02|1996-04-26|DELIVER IN PERSON|AIR|cajole blithely across the blithely fi| +86092|148577|48578|3|39|63397.23|0.06|0.08|N|O|1996-05-08|1996-04-15|1996-05-10|NONE|AIR|xpress packages: ruthlessly special depos| +86092|118027|5534|4|21|21945.42|0.05|0.01|N|O|1996-05-14|1996-02-20|1996-06-03|COLLECT COD|TRUCK|the slyly even accounts. sly| +86092|676421|1448|5|49|68472.11|0.03|0.00|N|O|1996-04-14|1996-04-15|1996-05-05|DELIVER IN PERSON|AIR|lites cajole. blithely e| +86093|717700|5243|1|27|46377.09|0.00|0.07|N|O|1996-03-06|1996-01-27|1996-03-21|TAKE BACK RETURN|RAIL|furiously. packages x-ray r| +86093|375711|726|2|1|1786.70|0.08|0.08|N|O|1996-01-21|1995-12-14|1996-02-09|TAKE BACK RETURN|REG AIR|the deposits cajole furiously acc| +86093|559332|46866|3|14|19478.34|0.02|0.06|N|O|1996-01-25|1996-01-24|1996-02-14|DELIVER IN PERSON|REG AIR|es cajole. carefully fin| +86093|687475|25015|4|28|40948.32|0.03|0.02|N|O|1995-12-11|1995-12-25|1995-12-14|NONE|AIR|t the quickly ironic deposits. b| +86093|391299|28821|5|26|36147.28|0.02|0.06|N|O|1995-12-28|1995-12-16|1996-01-14|DELIVER IN PERSON|REG AIR| fluffily slyly fin| +86093|545713|20734|6|9|15828.21|0.01|0.02|N|O|1995-11-14|1996-02-03|1995-11-27|NONE|TRUCK|le quickly ironic requests. slyly final | +86093|784144|21690|7|30|36843.30|0.06|0.01|N|O|1995-12-05|1995-12-11|1995-12-14|COLLECT COD|TRUCK|are above the furiously express pinto| +86094|98872|48873|1|18|33675.66|0.10|0.02|R|F|1994-05-05|1994-03-25|1994-05-26|COLLECT COD|AIR|asymptotes shall have to haggle blith| +86094|741328|41329|2|47|64356.63|0.08|0.08|A|F|1994-03-09|1994-02-28|1994-04-03|DELIVER IN PERSON|SHIP|to beans are | +86094|486086|36087|3|37|39666.22|0.02|0.08|A|F|1994-05-19|1994-03-13|1994-06-15|DELIVER IN PERSON|RAIL|across the f| +86094|638144|13169|4|32|34627.52|0.03|0.04|A|F|1994-04-08|1994-03-31|1994-05-02|NONE|FOB|e blithely! ruthlessly special Tiresias | +86094|271523|9039|5|32|47824.32|0.06|0.01|R|F|1994-05-02|1994-02-24|1994-05-19|DELIVER IN PERSON|REG AIR|nusual accounts. express, fin| +86094|476251|38761|6|13|15953.99|0.10|0.06|R|F|1994-03-29|1994-03-05|1994-04-28|DELIVER IN PERSON|TRUCK| hinder careful| +86095|65350|15351|1|6|7892.10|0.02|0.04|A|F|1992-10-17|1992-11-19|1992-11-03|DELIVER IN PERSON|SHIP|n instructions| +86095|324871|49884|2|28|53084.08|0.07|0.08|R|F|1992-12-22|1992-11-10|1993-01-14|TAKE BACK RETURN|RAIL|deposits eat carefully p| +86095|97327|9829|3|36|47675.52|0.01|0.04|R|F|1992-09-18|1992-09-23|1992-09-23|COLLECT COD|REG AIR|he furiousl| +86120|384109|34110|1|1|1193.09|0.01|0.05|A|F|1994-03-15|1994-02-06|1994-03-28|COLLECT COD|FOB|deposits. deposits hag| +86120|716691|4234|2|23|39276.18|0.07|0.04|A|F|1994-04-16|1994-01-31|1994-04-27|COLLECT COD|MAIL|uickly regular accounts are blithely p| +86120|413574|26083|3|23|34213.65|0.04|0.08|A|F|1994-04-09|1994-02-18|1994-05-07|TAKE BACK RETURN|RAIL|ole. careful, final deposit| +86120|921863|34382|4|44|82932.08|0.07|0.01|R|F|1994-03-13|1994-03-25|1994-03-22|DELIVER IN PERSON|FOB|wake carefully pearls. bl| +86120|739050|26593|5|16|17424.32|0.08|0.08|R|F|1994-03-24|1994-03-12|1994-04-13|NONE|TRUCK|fily-- furious| +86120|208480|33489|6|46|63869.62|0.08|0.05|A|F|1994-03-23|1994-03-08|1994-04-10|NONE|MAIL|y special deposits wake. hoc| +86121|225860|13373|1|16|28573.60|0.01|0.08|N|O|1996-02-10|1996-02-11|1996-02-24|TAKE BACK RETURN|TRUCK|wake quickly. even packages was blithely| +86121|19883|7384|2|40|72115.20|0.09|0.03|N|O|1996-02-26|1996-02-20|1996-03-15|COLLECT COD|REG AIR|aggle carefully. car| +86121|167271|4781|3|22|29441.94|0.06|0.08|N|O|1996-03-15|1996-01-14|1996-04-02|TAKE BACK RETURN|MAIL|unusual deposits. carefully express Tiresi| +86121|309938|47457|4|7|13635.44|0.07|0.02|N|O|1996-01-11|1996-02-08|1996-01-29|NONE|RAIL|efully final| +86121|116614|29117|5|18|29350.98|0.00|0.01|N|O|1996-03-22|1996-02-27|1996-03-29|DELIVER IN PERSON|FOB|nts are carefully. final req| +86121|917967|30486|6|7|13894.44|0.02|0.06|N|O|1996-03-07|1996-03-03|1996-03-11|TAKE BACK RETURN|SHIP|ges according to| +86122|162714|25218|1|22|39087.62|0.10|0.03|N|O|1997-02-24|1997-05-01|1997-03-20|DELIVER IN PERSON|REG AIR|g quickly. blit| +86122|722771|22772|2|25|44843.50|0.02|0.03|N|O|1997-04-09|1997-04-05|1997-04-20|TAKE BACK RETURN|MAIL|eep alongside | +86123|102787|15290|1|1|1789.78|0.10|0.08|R|F|1992-08-24|1992-06-11|1992-09-02|COLLECT COD|REG AIR|quickly. blithely regular requests | +86123|526751|1772|2|35|62220.55|0.05|0.04|A|F|1992-07-03|1992-07-02|1992-07-12|TAKE BACK RETURN|TRUCK|final requests us| +86123|96556|46557|3|50|77627.50|0.08|0.01|A|F|1992-07-07|1992-06-27|1992-07-11|TAKE BACK RETURN|SHIP|ounts sleep across the blithely final pl| +86123|801650|1651|4|17|26377.37|0.05|0.02|A|F|1992-06-10|1992-06-19|1992-06-30|TAKE BACK RETURN|RAIL|ccounts wake. foxes cajo| +86123|324220|24221|5|15|18663.15|0.01|0.05|R|F|1992-07-09|1992-07-01|1992-07-25|NONE|REG AIR|key player| +86123|160250|35257|6|9|11792.25|0.00|0.02|A|F|1992-06-24|1992-06-14|1992-06-28|DELIVER IN PERSON|MAIL| dolphins sleep furiously at the pendin| +86123|307245|44764|7|41|51341.43|0.10|0.07|R|F|1992-08-03|1992-07-26|1992-08-31|TAKE BACK RETURN|RAIL|iously even ideas breach carefully ac| +86124|855938|43490|1|12|22726.68|0.03|0.07|R|F|1992-10-22|1992-11-09|1992-11-11|TAKE BACK RETURN|AIR|the carefully ironic packa| +86124|735356|22899|2|1|1391.32|0.07|0.06|R|F|1992-10-26|1992-11-04|1992-11-16|DELIVER IN PERSON|MAIL|fully unusual asymptotes unwind f| +86124|117784|5291|3|49|88287.22|0.09|0.03|R|F|1992-10-19|1992-11-17|1992-11-05|TAKE BACK RETURN|TRUCK|silent dolphins use daringly regular pa| +86124|584787|47299|4|21|39306.96|0.03|0.04|R|F|1992-11-24|1992-11-27|1992-12-17|DELIVER IN PERSON|REG AIR|packages wake furiously after the never f| +86124|512093|49624|5|50|55253.50|0.09|0.07|A|F|1992-10-18|1992-11-18|1992-10-29|TAKE BACK RETURN|FOB|ites wake quickly. special ins| +86124|732015|7044|6|7|7328.86|0.00|0.02|R|F|1992-10-18|1992-10-29|1992-11-05|TAKE BACK RETURN|MAIL|r deposits. regular requests snoo| +86124|970080|32600|7|8|9200.32|0.10|0.04|R|F|1992-10-02|1992-12-03|1992-10-12|DELIVER IN PERSON|SHIP|ong the blithely | +86125|131224|31225|1|3|3765.66|0.10|0.02|N|O|1996-08-12|1996-08-29|1996-09-08|COLLECT COD|MAIL|, express ideas. express| +86125|477761|15289|2|15|26081.10|0.04|0.00|N|O|1996-11-01|1996-10-24|1996-11-24|TAKE BACK RETURN|REG AIR| haggle blithely after the regular, | +86125|715074|15075|3|27|29404.08|0.02|0.00|N|O|1996-08-13|1996-10-23|1996-09-01|COLLECT COD|REG AIR|le. excuses along the furiously pe| +86126|342594|30113|1|21|34368.18|0.07|0.08|N|O|1996-02-05|1995-12-02|1996-02-25|TAKE BACK RETURN|RAIL|ideas. regular, stealthy accounts subla| +86126|972173|9731|2|14|17431.82|0.04|0.07|N|O|1995-10-27|1995-12-08|1995-11-17|COLLECT COD|MAIL|ions. blithe| +86126|304188|29201|3|16|19074.72|0.08|0.04|N|O|1995-12-21|1995-12-18|1995-12-23|DELIVER IN PERSON|MAIL|ly fluffily| +86126|475260|12788|4|8|9881.92|0.10|0.08|N|O|1996-01-09|1996-01-09|1996-01-31|TAKE BACK RETURN|RAIL|press, special packages. carefull| +86127|239241|39242|1|33|38947.59|0.06|0.05|N|F|1995-06-02|1995-05-14|1995-06-25|DELIVER IN PERSON|AIR|ts. furiously fi| +86127|908710|21229|2|39|67028.13|0.05|0.08|R|F|1995-03-24|1995-05-07|1995-04-13|COLLECT COD|AIR|lithely even foxes about| +86127|677420|14960|3|36|50306.04|0.00|0.03|A|F|1995-04-06|1995-05-09|1995-04-10|DELIVER IN PERSON|TRUCK|old foxes. blithely bold pinto beans integr| +86127|386724|24246|4|17|30782.07|0.00|0.03|N|F|1995-06-17|1995-05-16|1995-06-25|COLLECT COD|MAIL|egular inst| +86152|824840|12389|1|7|12353.60|0.05|0.01|N|O|1996-06-16|1996-07-11|1996-07-13|TAKE BACK RETURN|TRUCK|lly ironic pinto beans sleep | +86152|76721|1724|2|24|40745.28|0.08|0.05|N|O|1996-07-17|1996-06-12|1996-08-02|NONE|FOB|he express, unusual theodolites are quick| +86152|434454|46963|3|3|4165.29|0.03|0.05|N|O|1996-07-25|1996-07-02|1996-07-29|COLLECT COD|MAIL|even tithes ca| +86152|859289|34324|4|34|42440.16|0.00|0.01|N|O|1996-07-20|1996-06-13|1996-08-05|DELIVER IN PERSON|TRUCK|gside of the blithely ev| +86153|332343|19862|1|40|55013.20|0.03|0.07|A|F|1994-04-23|1994-01-27|1994-05-06|DELIVER IN PERSON|AIR|riously ironic deposits| +86154|300377|12884|1|47|64735.92|0.06|0.02|R|F|1992-07-25|1992-09-12|1992-08-14|NONE|REG AIR|ain carefully. fluffily ironic packag| +86154|426038|1055|2|39|37596.39|0.00|0.04|R|F|1992-10-26|1992-09-20|1992-11-21|NONE|SHIP|fluffily after the blithely ruthle| +86154|417927|30436|3|4|7379.60|0.04|0.00|R|F|1992-07-13|1992-08-14|1992-07-24|NONE|TRUCK|luffily special t| +86154|95160|7662|4|29|33499.64|0.01|0.03|A|F|1992-07-29|1992-08-19|1992-08-01|COLLECT COD|AIR|al requests. furiously| +86154|338469|13482|5|8|12059.60|0.01|0.00|A|F|1992-09-27|1992-08-24|1992-10-20|DELIVER IN PERSON|AIR|wake fluffily even asymptotes. furious| +86155|264493|39504|1|8|11659.84|0.01|0.04|N|O|1996-06-17|1996-05-26|1996-07-10|COLLECT COD|MAIL|ag furiously| +86155|325029|37536|2|46|48484.46|0.03|0.05|N|O|1996-06-07|1996-06-11|1996-06-15|DELIVER IN PERSON|REG AIR|bove the foxes. blithely dogg| +86155|758316|8317|3|34|46725.52|0.09|0.08|N|O|1996-05-11|1996-04-26|1996-05-24|DELIVER IN PERSON|TRUCK|uffily final deposits serve careful| +86155|4934|17435|4|7|12872.51|0.01|0.04|N|O|1996-07-11|1996-05-27|1996-07-19|DELIVER IN PERSON|TRUCK|y about the even theodolit| +86156|164338|1848|1|42|58897.86|0.06|0.00|N|O|1997-03-05|1997-02-10|1997-03-29|DELIVER IN PERSON|SHIP|es are. furiously silent accounts sleep| +86156|27338|2339|2|50|63266.50|0.05|0.07|N|O|1997-03-26|1997-01-31|1997-04-03|COLLECT COD|RAIL|ing to the iro| +86156|453903|28922|3|26|48278.88|0.00|0.01|N|O|1997-01-28|1996-12-31|1997-02-02|DELIVER IN PERSON|RAIL|e furiously special, final pinto b| +86156|737736|251|4|34|60305.80|0.08|0.00|N|O|1997-02-04|1997-01-27|1997-02-26|DELIVER IN PERSON|MAIL|uctions are fluffily regular, silent r| +86156|127749|40252|5|13|23097.62|0.10|0.00|N|O|1996-12-02|1997-01-26|1997-01-01|DELIVER IN PERSON|REG AIR|according to th| +86156|65333|2837|6|29|37651.57|0.02|0.04|N|O|1997-01-12|1997-02-17|1997-02-10|TAKE BACK RETURN|REG AIR| dolphins engage slyly regular | +86157|936434|48953|1|28|41170.92|0.05|0.01|A|F|1994-11-09|1994-08-20|1994-11-19|COLLECT COD|REG AIR|gular courts? even reques| +86157|641179|16204|2|26|29123.64|0.02|0.02|R|F|1994-08-08|1994-08-20|1994-08-21|NONE|AIR|arefully. doggedly| +86157|283571|33572|3|48|74618.88|0.06|0.07|A|F|1994-09-01|1994-09-22|1994-09-16|NONE|REG AIR|nt, final asymptotes boost a| +86158|723997|23998|1|3|6062.88|0.00|0.08|R|F|1995-03-11|1995-05-20|1995-04-02|DELIVER IN PERSON|TRUCK|ole slyly reg| +86158|206544|19049|2|6|8703.18|0.03|0.03|A|F|1995-03-26|1995-05-19|1995-04-17|TAKE BACK RETURN|RAIL|into beans haggle behind the b| +86158|384990|47498|3|36|74699.28|0.07|0.05|A|F|1995-03-25|1995-05-19|1995-04-05|TAKE BACK RETURN|RAIL| special ideas wake carefully| +86159|441539|16556|1|25|37012.75|0.10|0.05|N|O|1997-08-17|1997-07-07|1997-08-22|DELIVER IN PERSON|FOB|y ironic accounts: carefully unusual ideas| +86159|935690|48209|2|17|29336.05|0.00|0.07|N|O|1997-06-25|1997-07-14|1997-07-09|TAKE BACK RETURN|SHIP|arefully alongside of| +86159|125883|25884|3|2|3817.76|0.01|0.07|N|O|1997-06-26|1997-06-10|1997-07-17|COLLECT COD|MAIL| quickly ironic pinto | +86159|707333|44876|4|19|25465.70|0.06|0.03|N|O|1997-08-18|1997-08-05|1997-08-26|DELIVER IN PERSON|SHIP|fluffily regular courts. carefully pend| +86159|137549|25056|5|19|30144.26|0.05|0.02|N|O|1997-05-14|1997-08-01|1997-05-28|NONE|SHIP|onic packages are slyl| +86184|932992|20547|1|50|101247.50|0.03|0.00|N|O|1995-10-05|1995-10-24|1995-10-26|COLLECT COD|FOB|ely even deposits haggle| +86184|784361|21907|2|23|33242.59|0.05|0.08|N|O|1995-12-20|1995-10-26|1995-12-26|DELIVER IN PERSON|SHIP|pecial ins| +86184|739371|1886|3|17|23975.78|0.07|0.00|N|O|1995-12-29|1995-10-30|1996-01-25|NONE|MAIL| regular accounts. blit| +86184|595785|20808|4|35|65826.60|0.04|0.04|N|O|1995-12-08|1995-10-08|1995-12-23|TAKE BACK RETURN|FOB|kages believe blithely ag| +86185|93445|43446|1|39|56099.16|0.00|0.07|N|O|1998-04-13|1998-05-22|1998-05-11|DELIVER IN PERSON|SHIP|counts nag quick| +86185|522724|22725|2|29|50654.30|0.01|0.08|N|O|1998-03-28|1998-04-24|1998-04-11|NONE|FOB|even hockey players| +86185|419319|44336|3|47|58199.63|0.00|0.02|N|O|1998-04-11|1998-04-29|1998-04-23|COLLECT COD|AIR|riously regular requests. s| +86185|482417|7436|4|43|60173.77|0.01|0.06|N|O|1998-04-10|1998-05-12|1998-04-16|NONE|AIR|ernes hang | +86186|420431|45448|1|47|63516.27|0.02|0.00|N|O|1996-09-02|1996-06-29|1996-09-28|DELIVER IN PERSON|RAIL|riously; furiously fina| +86186|179003|29004|2|45|48690.00|0.07|0.00|N|O|1996-08-07|1996-08-10|1996-09-05|NONE|MAIL|ckages cajole according | +86186|491343|28871|3|11|14677.52|0.01|0.06|N|O|1996-06-05|1996-08-08|1996-06-18|COLLECT COD|FOB| blithely after the furiously ironic w| +86186|999222|36780|4|46|60774.28|0.09|0.06|N|O|1996-09-21|1996-08-21|1996-10-20|COLLECT COD|AIR|ke quickly| +86187|410000|35017|1|19|17289.62|0.09|0.00|A|F|1992-08-20|1992-06-29|1992-08-26|TAKE BACK RETURN|TRUCK|bold pinto beans detect| +86187|856373|43925|2|50|66466.50|0.04|0.04|R|F|1992-06-10|1992-07-24|1992-07-03|DELIVER IN PERSON|REG AIR|ites nag blithely regular ex| +86187|47196|34697|3|41|46870.79|0.06|0.00|A|F|1992-07-27|1992-07-17|1992-07-28|NONE|MAIL| packages print furiou| +86187|217121|42130|4|13|13495.43|0.01|0.04|R|F|1992-05-12|1992-05-28|1992-06-03|NONE|TRUCK|ages cajole thinly a| +86188|122622|10129|1|17|27958.54|0.05|0.03|N|O|1997-08-26|1997-08-09|1997-08-28|DELIVER IN PERSON|TRUCK|pending co| +86188|893235|30787|2|46|56496.74|0.10|0.05|N|O|1997-08-03|1997-08-13|1997-08-14|TAKE BACK RETURN|AIR|s. carefully ironic instruct| +86189|20622|20623|1|46|70960.52|0.03|0.07|A|F|1994-08-13|1994-07-28|1994-08-31|NONE|FOB|usly according to the i| +86190|274198|11714|1|23|26960.14|0.01|0.05|N|O|1997-06-22|1997-07-30|1997-06-30|COLLECT COD|TRUCK|requests use. quickly regular e| +86190|433280|45789|2|1|1213.26|0.03|0.04|N|O|1997-07-16|1997-09-01|1997-08-08|NONE|AIR|ly unusual | +86190|122642|22643|3|11|18311.04|0.01|0.00|N|O|1997-07-01|1997-07-13|1997-07-26|TAKE BACK RETURN|SHIP|uriously pending depos| +86190|228845|16358|4|35|62084.05|0.05|0.04|N|O|1997-07-26|1997-07-19|1997-08-10|COLLECT COD|AIR|slyly speci| +86190|194979|7483|5|20|41479.40|0.05|0.00|N|O|1997-06-28|1997-07-18|1997-07-18|DELIVER IN PERSON|SHIP|unusual deposits. ironic e| +86190|4728|29729|6|46|75105.12|0.04|0.00|N|O|1997-08-08|1997-08-18|1997-08-31|TAKE BACK RETURN|SHIP|ic tithes h| +86191|330529|43036|1|21|32749.71|0.06|0.03|N|O|1998-04-20|1998-06-09|1998-05-13|NONE|REG AIR| slyly express theodolit| +86191|192800|17807|2|17|32177.60|0.09|0.05|N|O|1998-06-22|1998-05-31|1998-07-04|DELIVER IN PERSON|SHIP|carefully slyly spec| +86216|382697|7712|1|28|49831.04|0.06|0.08|N|O|1995-10-13|1995-10-09|1995-10-20|COLLECT COD|SHIP|ounts snooze blithe| +86216|985590|10629|2|23|38537.65|0.07|0.06|N|O|1995-09-23|1995-10-10|1995-09-29|COLLECT COD|FOB|s. deposits sleep blithely ironic deposits.| +86216|795441|20472|3|6|9218.46|0.06|0.04|N|O|1995-09-10|1995-08-22|1995-09-28|DELIVER IN PERSON|FOB|ing pinto beans sleep furiously bl| +86216|975114|153|4|4|4756.28|0.07|0.00|N|O|1995-08-24|1995-09-08|1995-09-19|COLLECT COD|RAIL|against the slyl| +86217|634664|34665|1|29|46360.27|0.07|0.07|N|O|1995-10-28|1995-12-11|1995-11-23|DELIVER IN PERSON|FOB|its alongside of the carefully | +86217|783124|20670|2|40|48283.60|0.07|0.06|N|O|1995-11-24|1995-11-24|1995-12-11|COLLECT COD|MAIL|foxes. dolphi| +86217|964086|1644|3|30|34501.20|0.08|0.03|N|O|1995-10-10|1995-12-03|1995-10-11|COLLECT COD|SHIP|es whithout the slyly special | +86217|380252|42760|4|36|47960.64|0.08|0.03|N|O|1995-11-14|1995-10-26|1995-12-11|DELIVER IN PERSON|FOB|usly. asymptote| +86217|884253|34254|5|29|35879.09|0.07|0.01|N|O|1995-10-07|1995-11-13|1995-11-02|NONE|MAIL|kages boost slyly blithely ironic pinto| +86217|633415|20952|6|49|66070.62|0.06|0.07|N|O|1995-10-18|1995-11-12|1995-11-11|DELIVER IN PERSON|FOB| furiously regular accounts| +86217|796019|33565|7|27|30104.46|0.01|0.07|N|O|1995-11-27|1995-11-07|1995-12-01|COLLECT COD|FOB|ost furiously alongsid| +86218|678317|40831|1|19|24610.32|0.04|0.02|A|F|1993-06-03|1993-05-15|1993-06-04|TAKE BACK RETURN|FOB|tructions about the carefully qui| +86218|459912|9913|2|33|61772.37|0.08|0.01|R|F|1993-03-20|1993-04-13|1993-04-16|TAKE BACK RETURN|MAIL|lites sleep carefully pending, ironic | +86218|735639|10668|3|24|40190.40|0.01|0.03|R|F|1993-05-11|1993-05-02|1993-05-15|NONE|RAIL|d dolphins. slyly even pinto b| +86219|966008|28528|1|27|28996.92|0.09|0.02|A|F|1993-08-26|1993-08-02|1993-08-31|TAKE BACK RETURN|SHIP| silent requests. accounts nag above the| +86219|681877|19417|2|46|85506.64|0.10|0.02|A|F|1993-08-26|1993-07-11|1993-09-07|DELIVER IN PERSON|MAIL|s instructi| +86220|86293|48795|1|23|29423.67|0.04|0.02|R|F|1993-02-27|1993-01-23|1993-03-19|NONE|AIR|ests shall have to bel| +86220|317511|42524|2|39|59611.50|0.05|0.08|A|F|1993-02-23|1993-01-18|1993-03-04|COLLECT COD|TRUCK|e furiously bold requests. regular, expre| +86220|399690|12198|3|13|23265.84|0.03|0.05|A|F|1993-04-01|1993-02-21|1993-04-16|DELIVER IN PERSON|TRUCK|sits wake above the ca| +86221|112948|12949|1|22|43140.68|0.01|0.00|R|F|1994-07-07|1994-08-17|1994-08-05|DELIVER IN PERSON|AIR| final dependen| +86221|313758|26265|2|17|30119.58|0.08|0.06|R|F|1994-08-17|1994-08-01|1994-08-26|TAKE BACK RETURN|REG AIR|l, regular| +86221|314802|2321|3|38|69038.02|0.05|0.03|A|F|1994-07-19|1994-08-16|1994-07-21|NONE|MAIL|bold packages affix courts. blithely| +86221|875774|13326|4|12|20996.76|0.01|0.04|R|F|1994-07-26|1994-08-18|1994-07-31|TAKE BACK RETURN|MAIL|riously final accounts. sl| +86221|127103|39606|5|4|4520.40|0.06|0.05|R|F|1994-09-28|1994-09-22|1994-10-05|TAKE BACK RETURN|MAIL|ajole after the slyly final | +86221|216756|29261|6|38|63564.12|0.00|0.01|R|F|1994-09-02|1994-08-18|1994-09-27|NONE|TRUCK|fully pending theodolites after the fur| +86221|14419|39420|7|42|56003.22|0.09|0.03|A|F|1994-08-09|1994-09-16|1994-08-24|TAKE BACK RETURN|REG AIR|ring the slyly regular instructions. bold | +86222|329836|29837|1|16|29853.12|0.08|0.00|A|F|1993-11-28|1993-10-14|1993-12-18|TAKE BACK RETURN|MAIL|theodolites acros| +86222|550262|25285|2|43|56426.32|0.06|0.03|A|F|1994-01-10|1993-11-10|1994-01-19|NONE|AIR|sits boost carefully regular pa| +86222|248061|48062|3|40|40362.00|0.02|0.06|A|F|1994-01-07|1993-11-01|1994-01-19|COLLECT COD|TRUCK|t the blithely bold pinto bean| +86222|155929|18433|4|9|17864.28|0.05|0.02|A|F|1994-01-06|1993-10-12|1994-01-22|TAKE BACK RETURN|REG AIR|le. slyly even dolphins slee| +86222|696570|21597|5|15|23498.10|0.02|0.05|A|F|1993-12-27|1993-12-07|1994-01-20|NONE|FOB|ckages are quickly fluffily fin| +86222|245033|32546|6|15|14670.30|0.08|0.07|A|F|1993-09-22|1993-12-01|1993-09-23|DELIVER IN PERSON|FOB|regular, bold| +86223|623438|35951|1|6|8168.40|0.04|0.06|R|F|1993-03-23|1993-06-07|1993-04-07|COLLECT COD|SHIP|ckly unusual deposi| +86223|117317|42322|2|36|48035.16|0.04|0.00|A|F|1993-05-24|1993-05-03|1993-06-20|DELIVER IN PERSON|REG AIR|uriously final requests. express | +86223|744933|19962|3|21|41535.90|0.06|0.06|R|F|1993-05-05|1993-06-04|1993-05-29|NONE|TRUCK|ccounts wake furiously abov| +86223|84340|9343|4|6|7946.04|0.05|0.06|R|F|1993-06-03|1993-04-30|1993-06-07|DELIVER IN PERSON|MAIL|equests. unusual requests haggle a| +86223|501850|26871|5|12|22221.96|0.07|0.08|A|F|1993-03-17|1993-04-18|1993-04-15|TAKE BACK RETURN|FOB|solve after the blit| +86248|24755|24756|1|28|47033.00|0.04|0.03|N|O|1995-11-14|1995-12-06|1995-11-30|COLLECT COD|RAIL|kly dolphins. final pac| +86248|40986|15987|2|35|67444.30|0.06|0.08|N|O|1995-09-17|1995-10-22|1995-10-07|COLLECT COD|RAIL|yly final asymptotes w| +86248|837680|37681|3|27|43676.28|0.08|0.02|N|O|1995-09-16|1995-10-30|1995-10-02|NONE|REG AIR|cuses nag. bold requests cajole| +86248|871901|34419|4|7|13110.02|0.03|0.08|N|O|1995-09-20|1995-11-02|1995-10-17|NONE|RAIL|uctions unwind furiously alongside of the | +86248|31653|19154|5|8|12677.20|0.08|0.08|N|O|1995-12-19|1995-10-24|1995-12-23|DELIVER IN PERSON|SHIP|ackages affix c| +86248|977689|15247|6|24|42399.36|0.04|0.04|N|O|1995-12-22|1995-11-11|1996-01-14|COLLECT COD|FOB|s. furiously fin| +86249|872769|35287|1|1|1741.72|0.01|0.02|R|F|1994-05-08|1994-05-13|1994-05-20|NONE|RAIL|accounts cajole bravely slyly pen| +86249|625914|13451|2|4|7359.52|0.04|0.07|R|F|1994-04-29|1994-04-19|1994-05-22|TAKE BACK RETURN|FOB|unts. pending deposits about the furiousl| +86249|725818|25819|3|7|12906.46|0.08|0.08|A|F|1994-05-05|1994-05-07|1994-05-08|NONE|SHIP|nts sleep | +86250|502016|27037|1|38|38683.62|0.08|0.02|N|O|1998-08-01|1998-07-27|1998-08-28|DELIVER IN PERSON|SHIP|foxes according to the packages use | +86250|374628|24629|2|3|5107.83|0.10|0.05|N|O|1998-08-18|1998-07-21|1998-09-06|COLLECT COD|RAIL|pecial packages. slyly bold e| +86250|364980|27488|3|44|89978.68|0.06|0.06|N|O|1998-06-27|1998-06-28|1998-07-23|NONE|RAIL| special grouches among| +86250|214490|39499|4|5|7022.40|0.00|0.04|N|O|1998-07-03|1998-06-02|1998-07-21|TAKE BACK RETURN|SHIP| accounts. slyly final requests haggle a| +86250|918526|6081|5|45|69501.60|0.09|0.08|N|O|1998-06-02|1998-07-22|1998-06-17|COLLECT COD|MAIL|fully even dinos are quickly according | +86250|651524|1525|6|47|69348.03|0.08|0.00|N|O|1998-08-14|1998-07-11|1998-08-28|NONE|RAIL|lyly final asymptot| +86250|148970|48971|7|6|12113.82|0.03|0.03|N|O|1998-08-10|1998-07-16|1998-08-16|DELIVER IN PERSON|REG AIR|, regular ideas haggle. ev| +86251|730456|30457|1|38|56483.96|0.03|0.01|R|F|1993-11-22|1993-10-14|1993-11-30|NONE|AIR|lithely ironic platelets. even dolphins aff| +86251|769783|32299|2|19|35202.25|0.05|0.04|A|F|1993-10-06|1993-10-13|1993-10-18|NONE|FOB|ecial accounts use fluffily among | +86251|735546|23089|3|2|3163.02|0.08|0.08|R|F|1993-09-09|1993-09-13|1993-09-22|DELIVER IN PERSON|MAIL|ests sleep. blithely ironic pinto| +86251|318675|6194|4|49|82989.34|0.10|0.06|R|F|1993-11-22|1993-10-27|1993-12-01|NONE|RAIL|ly special acco| +86251|961684|49242|5|33|57606.12|0.04|0.04|A|F|1993-08-28|1993-09-01|1993-09-09|NONE|AIR|uriously quickly ironi| +86251|21607|9108|6|13|19871.80|0.09|0.01|R|F|1993-11-11|1993-09-07|1993-11-18|COLLECT COD|SHIP|ages nag slyly. quickly express instru| +86252|376975|14497|1|27|55402.92|0.00|0.03|N|O|1996-11-14|1996-10-25|1996-11-19|DELIVER IN PERSON|RAIL|st blithely final packages. pe| +86252|810922|35955|2|48|87978.24|0.03|0.02|N|O|1996-08-21|1996-10-08|1996-09-19|TAKE BACK RETURN|AIR|bove the slyly even ideas. bli| +86252|161257|48767|3|28|36911.00|0.09|0.00|N|O|1996-10-06|1996-10-09|1996-10-10|NONE|RAIL|g to the daring, final packages bo| +86252|237896|401|4|41|75189.08|0.00|0.03|N|O|1996-11-23|1996-10-23|1996-12-18|NONE|RAIL|sleep carefully above the deposits. slyl| +86252|316885|16886|5|29|55154.23|0.03|0.05|N|O|1996-09-05|1996-09-14|1996-09-27|NONE|SHIP|ake blithely.| +86253|892438|4956|1|1|1430.39|0.02|0.02|N|O|1998-05-14|1998-05-02|1998-05-24|NONE|REG AIR|e slyly alongside of the blithely | +86253|197570|47571|2|11|18343.27|0.00|0.08|N|O|1998-03-30|1998-04-17|1998-04-21|DELIVER IN PERSON|MAIL|efully regular r| +86253|550513|25536|3|21|32833.29|0.00|0.05|N|O|1998-06-08|1998-05-06|1998-06-26|NONE|TRUCK|press requests. ironic accounts| +86253|471381|46400|4|26|35161.36|0.06|0.04|N|O|1998-05-27|1998-04-04|1998-06-09|COLLECT COD|MAIL|d theodolites. blithely regul| +86253|497932|35460|5|15|28948.65|0.00|0.04|N|O|1998-06-27|1998-04-20|1998-07-08|TAKE BACK RETURN|MAIL|riously final f| +86254|846071|33620|1|47|47800.41|0.00|0.07|N|O|1998-07-30|1998-09-12|1998-08-24|NONE|AIR|r final asymptotes. quickly final pinto | +86254|912279|12280|2|43|55522.89|0.00|0.01|N|O|1998-10-01|1998-09-23|1998-10-07|DELIVER IN PERSON|FOB|e slyly ironic asymptotes. q| +86254|662431|24945|3|38|52949.20|0.00|0.07|N|O|1998-09-11|1998-09-02|1998-10-11|TAKE BACK RETURN|MAIL|uctions. regular, regular gifts snooze. | +86254|475503|13031|4|33|48789.84|0.00|0.07|N|O|1998-10-01|1998-09-25|1998-10-31|DELIVER IN PERSON|AIR|ecial requests. slyly regular acc| +86254|765933|3479|5|31|61965.90|0.09|0.03|N|O|1998-07-05|1998-09-09|1998-08-03|TAKE BACK RETURN|AIR|egrate among t| +86255|34472|34473|1|9|12658.23|0.03|0.03|N|O|1998-04-14|1998-06-08|1998-04-20|COLLECT COD|RAIL|e ideas. deposi| +86255|361581|24089|2|20|32851.40|0.06|0.07|N|O|1998-07-20|1998-06-28|1998-08-10|TAKE BACK RETURN|TRUCK|al, silent asymptotes. final a| +86255|85273|35274|3|20|25165.40|0.03|0.08|N|O|1998-04-28|1998-06-16|1998-05-16|TAKE BACK RETURN|REG AIR|phs detect fluf| +86255|179414|41918|4|31|46295.71|0.03|0.02|N|O|1998-08-03|1998-06-15|1998-08-29|COLLECT COD|MAIL|e dolphins. carefully even deposits| +86255|398130|35652|5|21|25790.52|0.00|0.06|N|O|1998-06-20|1998-06-10|1998-06-29|TAKE BACK RETURN|SHIP|arhorses. foxes cajol| +86255|360334|47856|6|45|62744.40|0.08|0.05|N|O|1998-05-11|1998-06-04|1998-05-13|COLLECT COD|REG AIR|ven requests x-ray according t| +86280|453487|28506|1|39|56177.94|0.00|0.04|A|F|1994-06-27|1994-04-30|1994-07-25|COLLECT COD|RAIL| foxes. regular accounts nag c| +86280|748875|23904|2|11|21162.24|0.07|0.02|R|F|1994-04-24|1994-04-03|1994-05-02|TAKE BACK RETURN|TRUCK|cajole along the silent, ex| +86281|958782|21302|1|39|71788.86|0.06|0.04|N|O|1996-11-30|1996-12-18|1996-12-19|DELIVER IN PERSON|AIR|uickly regul| +86281|240121|40122|2|10|10611.10|0.09|0.02|N|O|1996-12-23|1996-12-13|1997-01-05|DELIVER IN PERSON|RAIL|ven requests detect quickly regular foxes. | +86281|702496|27525|3|44|65932.24|0.01|0.05|N|O|1996-12-29|1996-11-14|1996-12-31|DELIVER IN PERSON|MAIL|lar decoys | +86281|849920|49921|4|1|1869.88|0.09|0.00|N|O|1997-01-29|1996-11-28|1997-02-18|TAKE BACK RETURN|TRUCK|lyly regular | +86282|870582|33100|1|3|4657.62|0.00|0.08|N|O|1995-08-04|1995-08-31|1995-08-13|DELIVER IN PERSON|FOB|blithely ironic pi| +86283|743038|5553|1|6|6486.00|0.01|0.00|A|F|1992-07-25|1992-09-02|1992-08-24|COLLECT COD|RAIL|ly according to the blit| +86283|229695|29696|2|34|55239.12|0.10|0.07|A|F|1992-08-27|1992-09-05|1992-09-18|NONE|FOB|bold dinos. blithely final dolph| +86283|474221|36731|3|40|47808.00|0.09|0.05|R|F|1992-08-29|1992-09-08|1992-09-22|NONE|FOB|luffily bold pinto bean| +86283|225346|25347|4|30|38139.90|0.10|0.07|A|F|1992-09-02|1992-09-24|1992-09-16|COLLECT COD|SHIP|s across the| +86283|387061|24583|5|36|41329.80|0.06|0.00|A|F|1992-08-22|1992-09-12|1992-09-04|DELIVER IN PERSON|RAIL|cording to the idea| +86283|330824|30825|6|14|25967.34|0.05|0.02|R|F|1992-08-28|1992-09-16|1992-09-12|COLLECT COD|MAIL|to the theodolites wake slyly sly| +86283|148528|11031|7|18|28377.36|0.04|0.00|A|F|1992-07-31|1992-09-23|1992-08-25|COLLECT COD|REG AIR|furiously above the carefully unus| +86284|299146|36662|1|20|22902.60|0.09|0.06|A|F|1994-11-07|1994-12-02|1994-11-18|COLLECT COD|RAIL|ithely beneath the blithely iron| +86284|746110|33653|2|40|46243.20|0.05|0.08|A|F|1995-01-13|1994-12-23|1995-01-25|NONE|REG AIR|odolites. furiously bold| +86284|858805|46357|3|5|8818.80|0.08|0.06|R|F|1994-12-23|1994-12-25|1994-12-31|TAKE BACK RETURN|REG AIR|kages. quickly pending packages sleep | +86285|393285|18300|1|4|5513.08|0.07|0.01|A|F|1994-10-04|1994-07-18|1994-10-09|NONE|RAIL| blithely ac| +86286|893807|18842|1|3|5402.28|0.03|0.06|N|O|1998-04-24|1998-05-06|1998-05-08|TAKE BACK RETURN|MAIL| ideas boost blithely blithely express | +86286|210594|35603|2|31|46641.98|0.09|0.08|N|O|1998-07-13|1998-05-02|1998-07-17|TAKE BACK RETURN|SHIP|ckly regular packages. final accounts | +86286|445046|7555|3|24|23784.48|0.10|0.08|N|O|1998-05-28|1998-06-09|1998-06-16|TAKE BACK RETURN|REG AIR|ding pinto beans use. ironic deposits wake| +86287|46685|34186|1|50|81584.00|0.03|0.00|N|O|1998-04-27|1998-06-21|1998-05-12|TAKE BACK RETURN|TRUCK|ncies cajole slyly final, regu| +86287|632400|44913|2|39|51962.43|0.09|0.07|N|O|1998-04-05|1998-06-04|1998-04-10|NONE|REG AIR|al theodolites use unusual, pending e| +86287|741084|28627|3|35|39376.75|0.02|0.01|N|O|1998-03-25|1998-05-14|1998-04-16|TAKE BACK RETURN|MAIL|quests doubt fluffily| +86287|397293|9801|4|5|6951.40|0.00|0.04|N|O|1998-03-24|1998-05-27|1998-04-21|DELIVER IN PERSON|TRUCK|al dependencies detect furiously | +86287|299182|36698|5|49|57877.33|0.00|0.08|N|O|1998-05-17|1998-05-10|1998-05-26|DELIVER IN PERSON|AIR| even accounts use always among the furiou| +86287|338206|38207|6|15|18662.85|0.06|0.06|N|O|1998-06-23|1998-05-30|1998-07-02|COLLECT COD|AIR|ts haggle. slyly regular pin| +86287|218629|18630|7|2|3095.22|0.10|0.06|N|O|1998-06-07|1998-04-30|1998-06-14|NONE|MAIL|tions are carefully.| +86312|493156|18175|1|13|14938.69|0.06|0.02|N|O|1995-09-25|1995-10-27|1995-10-24|COLLECT COD|AIR|ic depths. regular, regular packages u| +86312|465963|28473|2|41|79086.54|0.10|0.00|N|O|1995-11-21|1995-11-03|1995-11-29|DELIVER IN PERSON|TRUCK| special, even theodolites. furiously | +86312|429665|4682|3|23|36676.72|0.01|0.03|N|O|1995-11-30|1995-10-03|1995-12-21|COLLECT COD|SHIP|theodolites. accounts cajole| +86312|372376|22377|4|8|11586.88|0.05|0.06|N|O|1995-10-11|1995-10-29|1995-10-31|TAKE BACK RETURN|TRUCK|side of the foxes sleep slyly among the ent| +86312|506680|31701|5|31|52286.46|0.02|0.03|N|O|1995-09-04|1995-09-30|1995-09-16|DELIVER IN PERSON|REG AIR|tes. furious| +86313|834624|34625|1|25|38964.50|0.08|0.02|N|O|1995-11-16|1995-10-22|1995-11-24|COLLECT COD|MAIL|iously blithely regul| +86314|9717|22218|1|13|21147.23|0.10|0.07|A|F|1995-05-01|1995-04-23|1995-05-08|DELIVER IN PERSON|REG AIR|egrate upon the regular, pending req| +86314|300975|25988|2|43|84966.28|0.08|0.07|A|F|1995-03-08|1995-04-05|1995-04-04|TAKE BACK RETURN|REG AIR|iously about the packages. even, bold accou| +86315|639865|2378|1|10|18048.30|0.00|0.08|A|F|1992-12-17|1992-11-08|1992-12-24|DELIVER IN PERSON|REG AIR|indle pinto beans. sly| +86315|209116|34125|2|32|32803.20|0.07|0.02|R|F|1992-09-23|1992-11-18|1992-10-04|DELIVER IN PERSON|RAIL|ince the carefully express fo| +86315|607945|7946|3|49|90792.59|0.03|0.08|A|F|1992-10-17|1992-11-04|1992-10-22|COLLECT COD|REG AIR| the furiously even request| +86315|730475|18018|4|44|66239.36|0.02|0.04|R|F|1992-09-25|1992-10-17|1992-10-05|DELIVER IN PERSON|AIR| blithely unusual pint| +86315|78330|15834|5|10|13083.30|0.07|0.07|A|F|1992-09-21|1992-11-22|1992-09-26|COLLECT COD|TRUCK|es. slyly regul| +86315|481306|6325|6|2|2574.56|0.09|0.08|R|F|1992-11-24|1992-10-21|1992-12-13|DELIVER IN PERSON|TRUCK|uiet deposits cajole quickly. f| +86316|784485|47001|1|37|58069.65|0.02|0.05|R|F|1994-08-15|1994-10-27|1994-08-28|DELIVER IN PERSON|SHIP| courts ought to cajole carefully. unusu| +86316|837174|12207|2|8|8889.04|0.09|0.00|R|F|1994-12-06|1994-09-30|1995-01-03|DELIVER IN PERSON|RAIL|gular, ironic theodolites. care| +86316|379132|4147|3|25|30278.00|0.10|0.06|A|F|1994-08-20|1994-10-10|1994-08-26|COLLECT COD|TRUCK| bold accounts | +86316|63925|13926|4|27|51000.84|0.06|0.01|R|F|1994-09-10|1994-10-19|1994-10-09|TAKE BACK RETURN|SHIP|equests. spe| +86316|373520|36028|5|35|55772.85|0.03|0.04|A|F|1994-11-17|1994-10-10|1994-12-09|COLLECT COD|REG AIR|ackages cajole quickly final th| +86316|742761|42762|6|11|19841.03|0.00|0.05|A|F|1994-09-29|1994-10-27|1994-10-18|COLLECT COD|SHIP| carefully even deposits integra| +86317|502788|27809|1|45|80584.20|0.00|0.07|A|F|1995-02-06|1995-02-06|1995-02-11|DELIVER IN PERSON|RAIL|al accounts after the| +86317|354622|29637|2|6|10059.66|0.05|0.00|A|F|1995-04-14|1995-03-20|1995-04-20|NONE|MAIL|nstructions nag fluffily a| +86317|128927|28928|3|11|21515.12|0.08|0.07|A|F|1994-12-31|1995-02-06|1995-01-03|NONE|AIR|ins cajole carefully fluffily regula| +86317|863323|875|4|14|18007.92|0.00|0.08|A|F|1995-03-27|1995-02-08|1995-04-10|DELIVER IN PERSON|TRUCK|erns eat. packages maint| +86317|869070|31588|5|28|29092.84|0.02|0.01|A|F|1995-01-25|1995-01-28|1995-02-11|COLLECT COD|RAIL|des sleep acros| +86317|450936|13446|6|13|24529.83|0.04|0.00|A|F|1995-04-18|1995-02-11|1995-04-26|COLLECT COD|REG AIR|ages. careful accounts sleep agai| +86317|864699|27217|7|22|36600.30|0.05|0.07|R|F|1995-01-01|1995-02-07|1995-01-09|TAKE BACK RETURN|AIR|ss instructions. sly| +86318|991225|3745|1|40|52647.20|0.06|0.02|A|F|1994-02-23|1994-03-26|1994-02-28|COLLECT COD|SHIP|pending requests must have to boost ironi| +86318|508386|45917|2|45|62746.20|0.06|0.01|R|F|1994-06-12|1994-04-27|1994-06-21|DELIVER IN PERSON|MAIL|the final, regular dependencies wake| +86318|428144|28145|3|44|47173.28|0.01|0.05|A|F|1994-06-03|1994-04-04|1994-06-23|COLLECT COD|MAIL|jole. final, regular requ| +86319|49424|36925|1|28|38455.76|0.07|0.03|R|F|1994-02-22|1994-03-16|1994-03-23|NONE|REG AIR|ithely along | +86344|293646|6152|1|12|19675.56|0.01|0.06|N|O|1996-06-22|1996-04-05|1996-07-04|TAKE BACK RETURN|AIR|ructions. furiously unusual id| +86345|175449|12959|1|32|48782.08|0.08|0.04|N|O|1998-07-10|1998-06-28|1998-08-05|TAKE BACK RETURN|REG AIR|sly across the ironic packages. pin| +86345|765619|28135|2|49|82544.42|0.00|0.06|N|O|1998-06-13|1998-07-04|1998-07-02|TAKE BACK RETURN|FOB|hely regular req| +86345|757365|32396|3|48|68271.84|0.02|0.07|N|O|1998-06-01|1998-07-09|1998-06-20|DELIVER IN PERSON|REG AIR|bravely ironic frays. carefully final f| +86345|21266|21267|4|40|47490.40|0.10|0.04|N|O|1998-08-16|1998-06-29|1998-08-28|TAKE BACK RETURN|RAIL|ise even ideas. qu| +86345|403761|41286|5|29|48277.46|0.00|0.04|N|O|1998-06-10|1998-07-17|1998-07-06|TAKE BACK RETURN|TRUCK|ously final theodolites wak| +86345|2935|2936|6|40|73517.20|0.04|0.04|N|O|1998-08-07|1998-06-16|1998-08-22|COLLECT COD|FOB|ickly. slyly express theod| +86346|159647|47157|1|9|15359.76|0.10|0.05|N|O|1998-06-05|1998-07-31|1998-07-01|COLLECT COD|MAIL| outside the slyly final deposits sl| +86346|184447|21957|2|6|9188.64|0.02|0.05|N|O|1998-09-02|1998-07-11|1998-09-30|NONE|RAIL|ajole. furiously special ideas sleep| +86346|986922|24480|3|36|72319.68|0.00|0.07|N|O|1998-06-28|1998-06-29|1998-07-19|TAKE BACK RETURN|AIR|ithely. waters could have t| +86346|188312|25822|4|24|33607.44|0.04|0.06|N|O|1998-08-02|1998-07-12|1998-08-03|TAKE BACK RETURN|MAIL|. express requests nag. ir| +86346|946851|9370|5|50|94890.50|0.02|0.07|N|O|1998-08-07|1998-07-21|1998-08-08|NONE|RAIL| accounts. quickly ironic fo| +86347|190422|15429|1|8|12099.36|0.01|0.03|N|O|1997-05-21|1997-06-05|1997-06-12|COLLECT COD|FOB|jole alongside of the carefully bol| +86348|75111|25112|1|45|48874.95|0.07|0.04|R|F|1995-05-31|1995-04-12|1995-06-17|DELIVER IN PERSON|REG AIR|w furiously ideas. ironic platelets wa| +86348|374336|24337|2|15|21154.80|0.03|0.04|A|F|1995-05-16|1995-04-21|1995-05-24|COLLECT COD|REG AIR|ven deposits after the expr| +86348|459130|21640|3|24|26138.64|0.03|0.06|R|F|1995-04-06|1995-04-23|1995-04-28|NONE|RAIL|ans are slyly accounts. pending depe| +86348|593521|6033|4|45|72652.50|0.08|0.07|A|F|1995-04-11|1995-04-20|1995-04-27|NONE|MAIL|n requests affix furi| +86349|229935|4944|1|11|20514.12|0.01|0.01|N|O|1998-06-19|1998-07-27|1998-07-03|COLLECT COD|REG AIR|ets cajole. blithely bold| +86349|510734|10735|2|43|75022.53|0.06|0.05|N|O|1998-08-24|1998-06-05|1998-09-03|NONE|RAIL|dle excuses along the carefully regular ac| +86349|891883|16918|3|28|52495.52|0.07|0.02|N|O|1998-06-23|1998-07-26|1998-07-16|DELIVER IN PERSON|TRUCK|fully regular frays grow blit| +86349|876826|14378|4|20|36055.60|0.00|0.00|N|O|1998-07-09|1998-06-23|1998-07-23|TAKE BACK RETURN|MAIL|ely regular deposits c| +86349|805564|30597|5|19|27920.88|0.05|0.03|N|O|1998-07-14|1998-07-06|1998-07-21|TAKE BACK RETURN|RAIL|onic accounts. slyly final pinto beans bel| +86349|113361|38366|6|47|64594.92|0.00|0.06|N|O|1998-05-06|1998-06-18|1998-05-28|TAKE BACK RETURN|AIR|s sleep pending accounts. excuses agai| +86350|383279|45787|1|4|5449.04|0.02|0.04|N|O|1995-12-09|1996-02-05|1996-01-08|NONE|RAIL|eep fluffily slyly bold foxes. care| +86350|767448|4994|2|17|25761.97|0.02|0.04|N|O|1995-12-12|1996-01-15|1996-01-09|TAKE BACK RETURN|FOB|tterns cajole. req| +86350|483792|21320|3|37|65703.49|0.05|0.01|N|O|1996-02-05|1996-02-06|1996-02-13|NONE|AIR|lar orbits boo| +86350|87507|37508|4|23|34373.50|0.03|0.00|N|O|1996-02-03|1996-01-28|1996-02-18|COLLECT COD|MAIL|refully ironic accounts. slyly speci| +86350|721568|46597|5|22|34969.66|0.08|0.03|N|O|1996-03-04|1996-01-17|1996-03-27|DELIVER IN PERSON|SHIP|d the ironic, silent| +86350|383318|20840|6|34|47644.20|0.01|0.00|N|O|1996-02-13|1996-01-28|1996-02-18|DELIVER IN PERSON|MAIL| pending forges haggle | +86350|418265|43282|7|31|36680.44|0.03|0.05|N|O|1995-11-16|1995-12-17|1995-11-18|DELIVER IN PERSON|REG AIR|ly silent f| +86351|771641|46672|1|15|25689.15|0.00|0.08|R|F|1993-01-13|1992-12-11|1993-01-14|NONE|SHIP|uses according to the asymptot| +86351|959285|9286|2|45|60490.80|0.04|0.06|R|F|1992-11-29|1992-12-14|1992-12-24|TAKE BACK RETURN|RAIL|ly silent foxes. expre| +86351|690588|15615|3|36|56827.80|0.00|0.00|R|F|1992-10-28|1992-12-17|1992-11-11|DELIVER IN PERSON|AIR|s cajole blithely unusual theodolite| +86351|708480|46023|4|40|59538.00|0.06|0.01|R|F|1993-01-20|1992-12-03|1993-01-21|DELIVER IN PERSON|MAIL|posits! blithely ironic instructions amo| +86376|941808|41809|1|22|40694.72|0.06|0.00|N|O|1998-05-09|1998-02-14|1998-06-08|NONE|REG AIR|he slyly quiet deposits. silent pack| +86376|965627|40666|2|2|3385.16|0.05|0.01|N|O|1998-03-02|1998-04-01|1998-03-12|TAKE BACK RETURN|FOB|lly final p| +86376|289580|14591|3|40|62782.80|0.01|0.01|N|O|1998-02-25|1998-02-12|1998-03-17|NONE|TRUCK|ideas. special, | +86376|968043|18044|4|41|45551.00|0.00|0.03|N|O|1998-02-12|1998-03-13|1998-02-21|TAKE BACK RETURN|MAIL|ckly unusual de| +86376|897832|10350|5|41|75021.39|0.05|0.01|N|O|1998-04-04|1998-03-24|1998-04-17|NONE|RAIL|among the deposits. carefull| +86376|854804|29839|6|17|29898.92|0.08|0.01|N|O|1998-01-27|1998-03-22|1998-02-03|TAKE BACK RETURN|SHIP| ironic dependencies. blith| +86376|674813|24814|7|40|71511.20|0.10|0.04|N|O|1998-04-03|1998-03-06|1998-04-25|NONE|SHIP|t the slyly| +86377|568557|18558|1|28|45514.84|0.05|0.07|A|F|1994-04-01|1994-05-30|1994-04-03|DELIVER IN PERSON|TRUCK|sometimes quiet foxes use quickly after th| +86377|737375|49890|2|36|50844.24|0.09|0.05|A|F|1994-05-24|1994-06-04|1994-06-03|TAKE BACK RETURN|SHIP|riously silent deposits. reque| +86377|55903|30906|3|28|52049.20|0.06|0.02|A|F|1994-05-07|1994-06-12|1994-05-17|DELIVER IN PERSON|FOB|lly unusual requests sleep sly| +86378|586593|11616|1|21|35270.97|0.06|0.06|N|O|1997-08-22|1997-10-11|1997-09-07|COLLECT COD|AIR|jole regularly after the foxes. even requ| +86378|857665|32700|2|5|8113.10|0.01|0.04|N|O|1997-09-05|1997-08-16|1997-09-26|DELIVER IN PERSON|SHIP|gle through the | +86379|681134|6161|1|21|23417.10|0.00|0.01|R|F|1993-07-08|1993-08-06|1993-07-13|COLLECT COD|TRUCK| boldly final foxes boo| +86379|815394|15395|2|9|11784.15|0.01|0.07|R|F|1993-09-14|1993-08-20|1993-10-11|COLLECT COD|MAIL|endencies use carefully fluffily express | +86380|648014|48015|1|22|21163.56|0.07|0.08|R|F|1994-04-08|1994-05-26|1994-05-04|DELIVER IN PERSON|TRUCK|. theodolites| +86381|629788|4813|1|40|68710.00|0.03|0.06|N|O|1995-08-22|1995-07-04|1995-08-26|DELIVER IN PERSON|SHIP|according to the quickly regular requests. | +86381|840373|2890|2|9|11819.97|0.04|0.02|N|O|1995-08-26|1995-07-08|1995-08-30|DELIVER IN PERSON|REG AIR|osits among the ironic | +86381|141515|41516|3|47|73155.97|0.03|0.08|N|O|1995-07-06|1995-06-12|1995-07-10|TAKE BACK RETURN|FOB|te furiously. regu| +86381|430417|30418|4|9|12126.51|0.04|0.02|N|O|1995-08-11|1995-07-05|1995-08-18|NONE|FOB|t deposits. furiously regular b| +86381|17753|5254|5|50|83537.50|0.02|0.05|N|F|1995-06-07|1995-06-30|1995-07-01|NONE|SHIP|nis cajole about the furiously fina| +86381|372494|47509|6|38|59526.24|0.08|0.07|A|F|1995-05-25|1995-07-06|1995-06-16|COLLECT COD|RAIL|ely unusual deposits. r| +86381|503633|41164|7|40|65464.40|0.08|0.06|N|O|1995-07-27|1995-07-29|1995-08-13|NONE|FOB|ickly final requests haggle finall| +86382|547759|35290|1|21|37941.33|0.02|0.02|R|F|1994-05-20|1994-06-17|1994-06-13|COLLECT COD|FOB|ructions sleep carefully accor| +86382|170800|45807|2|22|41157.60|0.03|0.08|R|F|1994-07-11|1994-05-15|1994-07-26|DELIVER IN PERSON|SHIP|y express asymptotes. | +86382|626335|38848|3|15|18919.50|0.09|0.02|A|F|1994-07-26|1994-05-31|1994-08-05|TAKE BACK RETURN|REG AIR|gainst the sometimes eve| +86382|800613|38162|4|23|34812.11|0.00|0.08|A|F|1994-07-13|1994-06-20|1994-07-14|TAKE BACK RETURN|MAIL| even deposits. quickly even deposits are| +86383|30156|17657|1|44|47790.60|0.01|0.06|N|O|1997-02-10|1997-03-20|1997-02-28|COLLECT COD|MAIL|y bold excuses wake slyly | +86383|818722|43755|2|40|65627.20|0.10|0.01|N|O|1997-03-13|1997-03-08|1997-03-15|DELIVER IN PERSON|SHIP|y regular theodolites nag blithel| +86408|447412|34937|1|11|14953.29|0.04|0.05|N|O|1998-08-16|1998-07-16|1998-08-22|DELIVER IN PERSON|REG AIR|its are. slyly pending patter| +86408|643416|5929|2|21|28546.98|0.03|0.07|N|O|1998-06-18|1998-07-28|1998-06-27|COLLECT COD|MAIL|eans cajole furiously q| +86408|885964|35965|3|11|21449.12|0.10|0.03|N|O|1998-08-23|1998-07-07|1998-08-30|DELIVER IN PERSON|RAIL| boost carefully q| +86408|396316|46317|4|2|2824.60|0.03|0.00|N|O|1998-08-10|1998-06-26|1998-08-13|TAKE BACK RETURN|FOB|requests are among the blithely | +86408|872744|35262|5|18|30900.60|0.01|0.00|N|O|1998-05-25|1998-07-25|1998-05-26|COLLECT COD|SHIP|ly stealthily final deposits. even, reg| +86408|199259|36769|6|44|59763.00|0.09|0.01|N|O|1998-07-05|1998-06-14|1998-07-19|TAKE BACK RETURN|FOB|eodolites according to the doggedly fin| +86408|943298|18335|7|28|37555.00|0.10|0.07|N|O|1998-05-23|1998-07-20|1998-05-28|NONE|AIR| dinos hag| +86409|994568|7088|1|49|81463.48|0.07|0.03|N|O|1997-09-04|1997-06-17|1997-09-25|COLLECT COD|AIR|e the carefully regular accounts. | +86409|687582|96|2|33|51795.15|0.05|0.08|N|O|1997-07-22|1997-06-29|1997-07-24|COLLECT COD|AIR|accounts wake quickly furiously| +86409|189767|2271|3|16|29708.16|0.06|0.05|N|O|1997-06-03|1997-06-30|1997-06-05|NONE|MAIL|cross the furiously | +86409|403277|3278|4|21|24785.25|0.01|0.06|N|O|1997-06-29|1997-07-18|1997-07-29|NONE|TRUCK|ly pending instructions cajole b| +86410|431267|43776|1|48|57515.52|0.05|0.04|N|O|1997-03-28|1997-01-22|1997-04-13|COLLECT COD|RAIL| packages. quickly regular theodolites grow| +86410|302771|2772|2|39|69176.64|0.08|0.03|N|O|1997-03-14|1997-02-15|1997-04-04|COLLECT COD|SHIP|onic packages. thin packages wake.| +86411|610002|10003|1|42|38302.74|0.00|0.04|N|O|1996-06-15|1996-06-30|1996-07-10|COLLECT COD|RAIL|c pinto beans promise special multi| +86411|295063|45064|2|36|38089.80|0.02|0.08|N|O|1996-07-06|1996-07-17|1996-07-13|NONE|SHIP|ending packages haggl| +86411|117406|4913|3|26|37008.40|0.10|0.00|N|O|1996-09-13|1996-07-16|1996-09-24|COLLECT COD|MAIL| dolphins maintain | +86411|227592|15105|4|44|66861.52|0.01|0.02|N|O|1996-07-16|1996-08-09|1996-07-19|NONE|TRUCK|. slyly bold packages hang slyly q| +86411|129077|16584|5|41|45348.87|0.01|0.08|N|O|1996-09-09|1996-07-07|1996-09-24|DELIVER IN PERSON|TRUCK|. brave dependencies are quickly p| +86411|396508|9016|6|43|68993.07|0.02|0.05|N|O|1996-08-07|1996-07-13|1996-08-29|DELIVER IN PERSON|TRUCK|gular requests. furiously special accounts | +86411|99572|37076|7|20|31431.40|0.10|0.01|N|O|1996-06-15|1996-07-04|1996-06-16|TAKE BACK RETURN|REG AIR|rve furiously according to the fluffi| +86412|492386|42387|1|4|5513.44|0.04|0.07|N|O|1997-09-27|1997-10-31|1997-10-02|TAKE BACK RETURN|TRUCK|kly express packages wake | +86413|331307|31308|1|24|32118.96|0.10|0.04|N|O|1997-06-19|1997-05-07|1997-06-26|DELIVER IN PERSON|SHIP|lithely. special foxes wake furiously be| +86413|271798|21799|2|34|60172.52|0.00|0.07|N|O|1997-06-14|1997-05-23|1997-06-29|TAKE BACK RETURN|REG AIR|ct special, iron| +86413|104821|42328|3|47|85813.54|0.04|0.08|N|O|1997-05-21|1997-06-13|1997-06-12|TAKE BACK RETURN|SHIP|s. fluffily unusu| +86413|711808|49351|4|6|10918.62|0.03|0.01|N|O|1997-06-20|1997-06-10|1997-06-27|TAKE BACK RETURN|MAIL|equests integrat| +86413|342133|17146|5|7|8225.84|0.03|0.08|N|O|1997-06-09|1997-04-14|1997-07-09|COLLECT COD|REG AIR|ans engage furiously about the caref| +86413|223441|23442|6|22|30017.46|0.05|0.01|N|O|1997-07-13|1997-05-15|1997-07-19|COLLECT COD|TRUCK|st the furiously even courts dazzle carefu| +86413|370903|20904|7|48|94746.72|0.05|0.04|N|O|1997-07-07|1997-05-24|1997-08-03|TAKE BACK RETURN|TRUCK|furiously regular deposits. | +86414|757861|7862|1|17|32620.11|0.07|0.01|R|F|1992-11-16|1992-10-05|1992-11-28|DELIVER IN PERSON|TRUCK|cording to the blithely brave pinto be| +86414|362860|12861|2|41|78836.85|0.08|0.08|R|F|1992-11-15|1992-10-23|1992-11-24|COLLECT COD|REG AIR|nto beans nag fluffily. fl| +86414|587573|25107|3|21|34871.55|0.08|0.01|A|F|1992-10-17|1992-09-15|1992-11-13|TAKE BACK RETURN|SHIP|alongside of | +86414|334701|9714|4|39|67691.91|0.10|0.08|R|F|1992-10-24|1992-10-11|1992-11-06|DELIVER IN PERSON|RAIL|eas. regular | +86414|305619|5620|5|37|60110.20|0.09|0.05|R|F|1992-07-28|1992-10-13|1992-08-11|DELIVER IN PERSON|SHIP|ss the furiously final idea| +86414|529833|42344|6|7|13039.67|0.06|0.05|R|F|1992-10-27|1992-10-06|1992-11-20|COLLECT COD|MAIL| ironic, regular accounts integrat| +86415|644311|31848|1|8|10042.24|0.03|0.07|N|O|1997-06-01|1997-07-04|1997-06-25|NONE|FOB| the regular| +86415|927221|27222|2|31|38693.58|0.00|0.00|N|O|1997-08-05|1997-08-02|1997-08-18|COLLECT COD|TRUCK|are. slyly final requests breach sly| +86415|793677|31223|3|50|88532.00|0.00|0.01|N|O|1997-07-22|1997-06-24|1997-08-17|COLLECT COD|MAIL|yly after the depo| +86440|277102|14618|1|43|46400.87|0.08|0.01|R|F|1994-05-19|1994-08-05|1994-05-24|COLLECT COD|REG AIR|ctions boost. idle, specia| +86440|244310|6815|2|38|47663.40|0.07|0.02|R|F|1994-08-20|1994-06-17|1994-08-30|DELIVER IN PERSON|MAIL|lly unusual deposits are express d| +86441|370259|7781|1|13|17280.12|0.00|0.06|N|O|1998-08-07|1998-07-12|1998-08-27|DELIVER IN PERSON|SHIP|hely regular dolphi| +86441|927082|14637|2|6|6654.24|0.03|0.00|N|O|1998-09-07|1998-07-22|1998-09-16|COLLECT COD|SHIP|le. bold excuses hag| +86441|453992|29011|3|13|25297.61|0.03|0.05|N|O|1998-08-27|1998-08-02|1998-09-04|COLLECT COD|REG AIR| furiously blithely regular ideas. qu| +86441|227478|27479|4|2|2810.92|0.06|0.02|N|O|1998-06-02|1998-07-13|1998-06-22|COLLECT COD|AIR|etect slyly! s| +86441|214184|14185|5|8|8785.36|0.00|0.04|N|O|1998-05-30|1998-08-06|1998-06-12|TAKE BACK RETURN|MAIL|es. silently unusual| +86441|782807|45323|6|21|39685.17|0.08|0.01|N|O|1998-07-13|1998-07-16|1998-07-23|TAKE BACK RETURN|TRUCK|alongside of the quic| +86442|647308|34845|1|8|10042.16|0.01|0.01|N|O|1997-06-22|1997-08-08|1997-07-14|NONE|REG AIR|yly regular requests haggle | +86442|303337|28350|2|47|62995.04|0.10|0.06|N|O|1997-06-14|1997-08-12|1997-07-05|NONE|RAIL|accounts sleep s| +86442|179223|4230|3|6|7813.32|0.03|0.07|N|O|1997-06-10|1997-07-12|1997-07-10|DELIVER IN PERSON|MAIL|ake blithely. blithely pe| +86442|184764|9771|4|24|44370.24|0.10|0.04|N|O|1997-06-24|1997-07-14|1997-07-22|DELIVER IN PERSON|SHIP| ironic foxes sleep-- evenly fina| +86442|312203|12204|5|34|41316.46|0.07|0.08|N|O|1997-09-15|1997-07-05|1997-09-25|DELIVER IN PERSON|MAIL|old platelets are against the foxes.| +86442|182422|32423|6|39|58672.38|0.06|0.02|N|O|1997-08-29|1997-08-01|1997-09-01|NONE|TRUCK|except the furiously regular packages b| +86442|965022|40061|7|12|13043.76|0.10|0.02|N|O|1997-08-04|1997-08-23|1997-08-10|COLLECT COD|FOB|hins maintai| +86443|111004|36009|1|7|7105.00|0.07|0.08|N|F|1995-06-08|1995-05-19|1995-07-05|NONE|AIR| sleep. final foxes serve. slyly| +86443|629212|4237|2|29|33094.22|0.05|0.00|A|F|1995-03-30|1995-05-28|1995-04-22|TAKE BACK RETURN|RAIL|structions serve slyly about the ev| +86443|151657|39167|3|3|5125.95|0.04|0.05|R|F|1995-05-01|1995-04-13|1995-05-07|TAKE BACK RETURN|REG AIR|ously carefully r| +86443|884381|21933|4|43|58709.62|0.10|0.02|R|F|1995-05-25|1995-04-22|1995-06-11|NONE|MAIL|ding instruct| +86444|227244|39749|1|2|2342.46|0.01|0.05|N|O|1996-09-17|1996-10-07|1996-09-27|DELIVER IN PERSON|REG AIR|ly furiously busy| +86444|288759|1265|2|29|50684.46|0.04|0.08|N|O|1996-11-08|1996-10-23|1996-11-27|COLLECT COD|REG AIR|layers. regular accounts solve | +86445|298877|23888|1|34|63779.24|0.08|0.07|N|O|1996-07-19|1996-08-27|1996-07-27|NONE|TRUCK|e, bold deposit| +86445|209351|21856|2|12|15124.08|0.10|0.04|N|O|1996-09-06|1996-09-13|1996-09-17|NONE|REG AIR|tes nag express packages. slyly ex| +86445|559925|22437|3|9|17864.10|0.07|0.08|N|O|1996-10-13|1996-08-21|1996-11-08|TAKE BACK RETURN|AIR|inst the blithely pend| +86445|657362|19876|4|26|34302.58|0.06|0.05|N|O|1996-07-06|1996-09-05|1996-07-13|COLLECT COD|MAIL|y after the| +86446|758336|8337|1|9|12548.70|0.01|0.08|N|O|1998-07-03|1998-05-27|1998-07-12|NONE|TRUCK|its. carefully final packages use accordi| +86446|345444|45445|2|18|26809.74|0.06|0.01|N|O|1998-06-09|1998-05-24|1998-06-20|COLLECT COD|TRUCK| ironic packages cajole furiously a| +86447|271065|33571|1|39|40405.95|0.09|0.07|N|O|1997-04-27|1997-05-16|1997-05-02|TAKE BACK RETURN|RAIL|ses sleep slyly about the regul| +86447|783838|21384|2|12|23061.60|0.10|0.03|N|O|1997-03-10|1997-05-18|1997-03-29|COLLECT COD|TRUCK|he regularly ironic asymptotes cajol| +86447|955774|18294|3|37|67700.01|0.00|0.05|N|O|1997-04-08|1997-05-11|1997-04-13|DELIVER IN PERSON|RAIL|ding to the silent, | +86447|683849|21389|4|27|49485.87|0.09|0.05|N|O|1997-03-21|1997-03-24|1997-03-26|DELIVER IN PERSON|RAIL|egular requests. blith| +86472|446956|9465|1|40|76117.20|0.03|0.01|R|F|1994-12-01|1995-01-06|1994-12-21|COLLECT COD|TRUCK|ular requests| +86472|973590|11148|2|8|13308.40|0.05|0.00|A|F|1994-10-13|1994-12-04|1994-11-04|DELIVER IN PERSON|SHIP| against the quickly spe| +86472|116660|41665|3|45|75449.70|0.01|0.05|R|F|1995-01-26|1994-11-19|1995-01-29|DELIVER IN PERSON|TRUCK|kly bold foxes. request| +86473|364767|27275|1|14|25644.50|0.08|0.06|N|O|1996-06-21|1996-06-05|1996-06-29|TAKE BACK RETURN|MAIL|ress foxes. blithely even s| +86473|622781|35294|2|34|57927.50|0.05|0.00|N|O|1996-05-10|1996-06-06|1996-05-18|TAKE BACK RETURN|FOB|ding dependencies. even, ironic th| +86473|70640|8144|3|43|69257.52|0.06|0.02|N|O|1996-07-05|1996-04-20|1996-07-31|COLLECT COD|AIR|enticingly final ideas. quickly fina| +86474|832095|44612|1|33|33892.65|0.06|0.04|N|O|1997-01-28|1997-03-15|1997-02-13|TAKE BACK RETURN|FOB|of the slyly pending foxes. i| +86474|7351|7352|2|29|36492.15|0.06|0.01|N|O|1997-02-22|1997-04-27|1997-03-03|NONE|AIR|ly ironic gifts| +86474|537932|443|3|33|65007.03|0.10|0.02|N|O|1997-05-21|1997-03-27|1997-05-26|TAKE BACK RETURN|RAIL|y final instructi| +86474|19030|31531|4|49|46502.47|0.04|0.06|N|O|1997-02-04|1997-04-07|1997-02-12|NONE|MAIL|e ironic, final foxes.| +86475|190005|40006|1|4|4380.00|0.01|0.06|N|O|1997-03-01|1997-04-26|1997-03-17|COLLECT COD|MAIL|tions wake slyly. | +86475|410495|48020|2|39|54813.33|0.00|0.02|N|O|1997-02-08|1997-03-26|1997-02-11|NONE|REG AIR|ithely express p| +86475|185359|22869|3|36|51996.60|0.01|0.04|N|O|1997-03-12|1997-05-04|1997-03-31|TAKE BACK RETURN|FOB|efully regular | +86475|323632|11151|4|21|34768.02|0.02|0.01|N|O|1997-03-02|1997-05-04|1997-03-13|NONE|TRUCK| along the even platelets. fluf| +86476|217171|42180|1|48|52231.68|0.01|0.04|A|F|1993-05-06|1993-06-23|1993-05-11|DELIVER IN PERSON|REG AIR|lithely. final instr| +86476|991134|28692|2|4|4900.36|0.02|0.08|A|F|1993-05-22|1993-07-17|1993-06-21|TAKE BACK RETURN|TRUCK|regular packages | +86476|981085|31086|3|19|22154.76|0.08|0.07|R|F|1993-07-14|1993-06-08|1993-07-16|DELIVER IN PERSON|SHIP|carefully above the slyly even | +86476|91864|29368|4|39|72378.54|0.09|0.03|R|F|1993-06-05|1993-06-07|1993-06-15|NONE|REG AIR|fter the pending pin| +86476|945713|45714|5|10|17586.70|0.05|0.04|R|F|1993-04-28|1993-06-06|1993-05-10|TAKE BACK RETURN|RAIL|ts alongside of the | +86477|556577|19089|1|38|62074.90|0.10|0.03|A|F|1994-01-31|1994-01-18|1994-02-22|COLLECT COD|MAIL|elets. even, special acc| +86477|386659|36660|2|13|22693.32|0.04|0.07|R|F|1994-02-01|1994-01-23|1994-02-08|TAKE BACK RETURN|FOB|ironic packages sleep f| +86478|442472|4981|1|43|60821.35|0.03|0.05|N|O|1995-07-14|1995-06-14|1995-07-29|COLLECT COD|RAIL|ess asymptotes. carefully even p| +86478|615421|40446|2|23|30736.97|0.01|0.03|R|F|1995-05-25|1995-06-21|1995-06-11|DELIVER IN PERSON|AIR|gular requests doubt slyly after t| +86478|376001|13523|3|42|45233.58|0.03|0.00|N|F|1995-06-16|1995-06-16|1995-07-09|DELIVER IN PERSON|AIR|iously ironic packages. | +86479|422302|9827|1|35|42849.80|0.04|0.08|N|O|1995-12-09|1996-01-16|1996-01-04|NONE|RAIL|dolites use s| +86479|622506|47531|2|19|27140.93|0.06|0.03|N|O|1995-11-20|1996-02-06|1995-12-18|TAKE BACK RETURN|AIR| bold pinto beans. slyly iro| +86479|444348|6857|3|8|10338.56|0.00|0.07|N|O|1996-01-19|1996-02-06|1996-02-04|NONE|REG AIR|ions. carefully un| +86479|143465|43466|4|8|12067.68|0.05|0.00|N|O|1996-01-31|1996-01-13|1996-02-02|TAKE BACK RETURN|RAIL|ctions. packag| +86504|553709|3710|1|43|75795.24|0.02|0.01|R|F|1993-11-04|1993-12-23|1993-11-17|NONE|REG AIR|equests. quickly final deposits use q| +86504|181993|44497|2|35|72624.65|0.01|0.03|A|F|1994-02-07|1993-12-05|1994-02-18|TAKE BACK RETURN|RAIL| final deposits ar| +86504|741956|4471|3|13|25972.96|0.00|0.02|A|F|1993-12-15|1993-12-23|1993-12-24|NONE|MAIL|e carefully upon the perman| +86504|44797|7298|4|33|57479.07|0.01|0.00|A|F|1993-12-07|1994-01-08|1993-12-31|NONE|TRUCK|carefully. blithely regul| +86504|898883|36435|5|14|26345.76|0.09|0.08|A|F|1993-11-17|1994-01-16|1993-11-19|NONE|REG AIR|thin requests along | +86505|278473|40979|1|12|17417.52|0.03|0.03|N|O|1998-03-25|1997-12-27|1998-03-31|TAKE BACK RETURN|FOB|ly regular idea| +86505|282809|45315|2|6|10750.74|0.09|0.07|N|O|1997-12-06|1997-12-26|1998-01-02|TAKE BACK RETURN|SHIP| unusual de| +86506|701098|38641|1|37|40665.22|0.00|0.05|N|O|1998-04-09|1998-05-19|1998-05-05|DELIVER IN PERSON|SHIP| after the furiously final escapades. | +86507|638212|13237|1|41|47157.38|0.06|0.07|R|F|1993-03-18|1993-05-05|1993-04-05|TAKE BACK RETURN|FOB|ost quickly about the carefully special| +86507|425341|25342|2|13|16462.16|0.04|0.03|R|F|1993-05-18|1993-05-30|1993-05-24|TAKE BACK RETURN|TRUCK|tes wake across the special, expre| +86507|697744|10258|3|15|26125.65|0.07|0.02|A|F|1993-06-04|1993-05-06|1993-07-02|NONE|AIR|pecial dependencies haggle busily. furio| +86507|968970|31490|4|29|59128.97|0.00|0.02|R|F|1993-03-10|1993-04-15|1993-03-17|DELIVER IN PERSON|TRUCK|lithely final pa| +86507|478349|3368|5|27|35837.64|0.01|0.00|A|F|1993-04-26|1993-04-06|1993-05-03|COLLECT COD|RAIL| accounts nag. final, silent ideas hang b| +86507|600381|37918|6|21|26908.35|0.08|0.04|A|F|1993-05-26|1993-04-06|1993-06-13|DELIVER IN PERSON|MAIL|slyly final requests lose q| +86508|408987|34004|1|4|7583.84|0.08|0.03|A|F|1993-05-15|1993-06-25|1993-06-02|TAKE BACK RETURN|AIR|en deposits sleep slyly according to the sl| +86508|836133|48650|2|12|12829.08|0.01|0.07|R|F|1993-06-15|1993-05-31|1993-06-30|COLLECT COD|MAIL|g the ruthl| +86509|784401|46917|1|6|8912.22|0.07|0.04|N|O|1998-02-22|1997-12-26|1998-03-11|TAKE BACK RETURN|RAIL|ffily regular packages. sly| +86509|427520|2537|2|46|66585.00|0.00|0.08|N|O|1997-12-17|1997-12-15|1997-12-21|DELIVER IN PERSON|TRUCK|n platelets. express| +86509|318883|6402|3|2|3803.74|0.05|0.08|N|O|1997-12-28|1997-11-30|1998-01-26|NONE|AIR|ic requests-- special| +86510|14694|39695|1|47|75608.43|0.02|0.03|N|O|1998-10-05|1998-08-25|1998-10-24|COLLECT COD|RAIL|yly. furiously final| +86510|957279|19799|2|4|5344.92|0.05|0.03|N|O|1998-09-23|1998-08-17|1998-10-01|TAKE BACK RETURN|REG AIR|es integrate blithely. busy deposit| +86510|977493|27494|3|21|32979.45|0.03|0.04|N|O|1998-08-16|1998-09-08|1998-09-10|COLLECT COD|TRUCK|ole deposit| +86510|717678|5221|4|48|81390.72|0.05|0.02|N|O|1998-09-13|1998-09-20|1998-09-18|COLLECT COD|MAIL|up the fur| +86510|8881|46382|5|20|35797.60|0.02|0.04|N|O|1998-09-03|1998-08-21|1998-09-19|DELIVER IN PERSON|AIR|e slyly exp| +86510|251664|26675|6|27|43622.55|0.02|0.06|N|O|1998-09-16|1998-08-13|1998-10-05|TAKE BACK RETURN|MAIL|thely. regular deposits from the s| +86511|965|966|1|12|22391.52|0.07|0.05|N|O|1997-08-18|1997-07-26|1997-09-15|TAKE BACK RETURN|REG AIR|beans before the furiously final packages h| +86536|145649|45650|1|30|50839.20|0.01|0.01|N|O|1998-06-29|1998-05-25|1998-07-19|TAKE BACK RETURN|REG AIR|ithely even accou| +86536|911476|11477|2|9|13386.87|0.10|0.06|N|O|1998-06-03|1998-06-23|1998-06-27|NONE|RAIL|eodolites l| +86536|166398|3908|3|23|33680.97|0.09|0.08|N|O|1998-05-03|1998-05-19|1998-05-26|TAKE BACK RETURN|AIR|mptotes. care| +86536|635957|48470|4|35|66252.20|0.07|0.05|N|O|1998-06-15|1998-06-14|1998-06-19|DELIVER IN PERSON|RAIL|ly even accounts-- regular dolphi| +86537|25833|25834|1|22|38694.26|0.02|0.02|N|O|1998-04-01|1998-05-27|1998-04-27|NONE|FOB|inal accounts snooze express dependenci| +86537|166998|4508|2|4|8259.96|0.08|0.04|N|O|1998-06-09|1998-06-07|1998-06-10|DELIVER IN PERSON|AIR|y regular ideas. furi| +86537|722699|10242|3|7|12051.62|0.05|0.01|N|O|1998-06-13|1998-06-05|1998-06-14|TAKE BACK RETURN|SHIP|above the brav| +86537|399000|24015|4|16|17583.84|0.08|0.03|N|O|1998-04-07|1998-05-24|1998-04-29|DELIVER IN PERSON|REG AIR|epths. slyly pending | +86538|50725|38229|1|7|11730.04|0.08|0.03|R|F|1995-01-28|1995-01-14|1995-02-15|NONE|AIR|elets around the bold, regular theodolites| +86539|132296|7301|1|20|26565.80|0.05|0.06|A|F|1992-06-05|1992-07-26|1992-07-01|DELIVER IN PERSON|TRUCK|en packages alongsid| +86539|483701|46211|2|14|23585.52|0.08|0.04|R|F|1992-09-22|1992-08-21|1992-10-04|COLLECT COD|MAIL|r deposits. fluffily busy platel| +86539|547348|22369|3|32|44650.24|0.00|0.08|A|F|1992-08-27|1992-08-14|1992-09-22|TAKE BACK RETURN|REG AIR|s boost carefully about the regular d| +86539|268701|18702|4|29|48421.01|0.03|0.07|R|F|1992-09-13|1992-06-30|1992-10-09|TAKE BACK RETURN|AIR|ely. quickly final req| +86539|56358|6359|5|35|46002.25|0.01|0.00|R|F|1992-06-19|1992-08-12|1992-06-20|COLLECT COD|MAIL|y slyly even platelets. special, fi| +86540|762048|37079|1|13|14430.13|0.04|0.07|A|F|1994-09-06|1994-08-16|1994-10-01|COLLECT COD|TRUCK|ls. final, regular ideas after the q| +86540|733519|46034|2|36|55889.28|0.07|0.01|R|F|1994-08-02|1994-08-08|1994-08-16|COLLECT COD|MAIL|cingly pending pinto beans. pinto be| +86540|241982|41983|3|36|69262.92|0.09|0.00|R|F|1994-10-16|1994-08-10|1994-10-17|NONE|SHIP| requests. pending dependencies| +86540|988322|25880|4|28|39487.84|0.09|0.07|A|F|1994-09-24|1994-09-02|1994-10-12|NONE|TRUCK|e above the slo| +86540|711106|23621|5|7|7819.49|0.08|0.04|R|F|1994-07-16|1994-08-24|1994-07-27|TAKE BACK RETURN|TRUCK|ests haggle blithely ironic ideas| +86541|464200|26710|1|4|4656.72|0.05|0.02|A|F|1993-10-23|1993-10-27|1993-11-11|COLLECT COD|RAIL|ged Tiresias. even foxes pr| +86541|809378|34411|2|45|57929.85|0.04|0.01|A|F|1993-11-17|1993-12-04|1993-12-01|DELIVER IN PERSON|FOB|gle. slyly express foxes above the iro| +86541|199421|24428|3|2|3040.84|0.04|0.02|A|F|1993-09-23|1993-10-30|1993-10-15|DELIVER IN PERSON|MAIL|lithely pending pa| +86541|667085|17086|4|21|22093.05|0.06|0.01|R|F|1993-12-03|1993-10-14|1993-12-04|NONE|REG AIR|riously. carefull| +86541|696362|46363|5|31|42108.23|0.07|0.01|A|F|1993-11-10|1993-10-15|1993-11-15|NONE|RAIL|otes cajol| +86541|741050|41051|6|25|27275.50|0.03|0.01|R|F|1993-10-18|1993-11-10|1993-10-28|DELIVER IN PERSON|SHIP|ake after the fluffily even deposits. alw| +86542|786612|49128|1|7|11890.06|0.07|0.06|R|F|1994-09-16|1994-11-06|1994-10-12|COLLECT COD|MAIL|blithely furi| +86542|573503|48526|2|9|14188.32|0.08|0.02|R|F|1994-09-20|1994-10-06|1994-09-24|COLLECT COD|RAIL|ckly ironic fo| +86542|861235|36270|3|39|46651.41|0.00|0.03|R|F|1994-09-29|1994-10-07|1994-10-26|TAKE BACK RETURN|MAIL|fully final deposits cajole blith| +86542|772234|47265|4|47|61391.40|0.08|0.01|R|F|1994-11-14|1994-11-08|1994-11-19|TAKE BACK RETURN|FOB|uriously between the foxes. careful| +86542|921501|46538|5|43|65465.78|0.00|0.00|R|F|1994-10-17|1994-10-31|1994-11-04|TAKE BACK RETURN|SHIP|s the regular, final asy| +86543|994848|19887|1|42|81597.60|0.04|0.02|N|O|1997-01-15|1997-01-31|1997-02-06|COLLECT COD|REG AIR|ial theodolites haggle final requests. u| +86543|408362|33379|2|27|34299.18|0.00|0.03|N|O|1996-11-28|1997-02-07|1996-12-20|COLLECT COD|SHIP| haggle slyly regular requests; ev| +86543|336659|24178|3|41|69521.24|0.08|0.05|N|O|1996-11-19|1997-01-09|1996-12-19|NONE|TRUCK| the furiously ironic i| +86543|221966|34471|4|3|5663.85|0.09|0.03|N|O|1996-12-03|1996-12-15|1996-12-13|COLLECT COD|RAIL| lose carefull| +86543|579188|4211|5|6|7602.96|0.03|0.00|N|O|1996-11-28|1997-01-31|1996-12-20|NONE|MAIL|ly final dolphins detect a| +86568|226277|26278|1|35|42114.10|0.04|0.04|N|O|1996-02-07|1996-04-03|1996-03-08|TAKE BACK RETURN|SHIP|hely daring packages-- furious| +86569|126779|26780|1|5|9028.85|0.05|0.02|N|O|1998-02-11|1998-04-25|1998-02-18|DELIVER IN PERSON|TRUCK|ickly. carefully final fo| +86569|765244|2790|2|35|45822.35|0.00|0.06|N|O|1998-05-05|1998-03-01|1998-06-02|DELIVER IN PERSON|FOB| patterns. ironic requests cajole idle, reg| +86569|447323|47324|3|35|44460.50|0.10|0.07|N|O|1998-05-25|1998-04-29|1998-06-02|NONE|AIR|ly regular ideas use quickly. ir| +86569|153424|28431|4|3|4432.26|0.01|0.02|N|O|1998-02-01|1998-03-22|1998-03-03|NONE|AIR|ven multipliers. boldly even reques| +86569|590320|40321|5|41|57822.30|0.09|0.08|N|O|1998-05-27|1998-04-08|1998-06-25|TAKE BACK RETURN|RAIL|requests wake slyly above t| +86570|439834|27359|1|8|14190.48|0.10|0.00|N|O|1997-05-03|1997-03-04|1997-05-29|DELIVER IN PERSON|FOB| requests poach busily even deposits. quick| +86570|274445|24446|2|26|36905.18|0.02|0.06|N|O|1997-03-30|1997-04-16|1997-04-05|NONE|MAIL|ly ironic theodolites across the sp| +86570|593488|18511|3|42|66421.32|0.04|0.03|N|O|1997-04-26|1997-04-05|1997-04-27|DELIVER IN PERSON|SHIP|s use furiously f| +86570|743920|43921|4|47|92302.83|0.00|0.07|N|O|1997-02-22|1997-04-09|1997-02-27|NONE|REG AIR|out the unusual reque| +86571|56257|31260|1|14|16985.50|0.04|0.02|N|O|1996-08-15|1996-08-02|1996-09-03|NONE|FOB|al pinto beans. blithely unusual id| +86571|507858|20369|2|44|82096.52|0.03|0.01|N|O|1996-07-04|1996-09-09|1996-07-18|COLLECT COD|FOB|cajole blit| +86571|558293|45827|3|3|4053.81|0.00|0.05|N|O|1996-08-06|1996-08-09|1996-08-22|DELIVER IN PERSON|MAIL|accounts h| +86571|223230|23231|4|19|21911.18|0.02|0.02|N|O|1996-09-03|1996-09-02|1996-09-06|DELIVER IN PERSON|SHIP|ess packages: regular deposits a| +86571|815493|40526|5|21|29577.45|0.02|0.07|N|O|1996-07-23|1996-09-06|1996-08-02|DELIVER IN PERSON|TRUCK|. carefully unusual hockey play| +86571|982237|32238|6|1|1319.19|0.08|0.06|N|O|1996-08-19|1996-09-06|1996-08-28|NONE|RAIL| regularly ironic acc| +86572|253742|28753|1|29|49176.17|0.08|0.00|N|O|1996-04-08|1996-06-27|1996-04-16|COLLECT COD|REG AIR|yly regular requests sleep bli| +86572|637486|25023|2|33|46973.85|0.05|0.04|N|O|1996-04-02|1996-05-06|1996-04-23|COLLECT COD|RAIL|egular accounts | +86572|212699|212|3|29|46738.72|0.00|0.01|N|O|1996-07-18|1996-05-24|1996-08-04|COLLECT COD|TRUCK| final requests. final i| +86572|819311|44344|4|47|57822.69|0.01|0.08|N|O|1996-04-20|1996-06-13|1996-04-28|COLLECT COD|AIR|ithely silent pac| +86572|155162|5163|5|28|34080.48|0.09|0.02|N|O|1996-05-07|1996-06-13|1996-05-26|DELIVER IN PERSON|SHIP|counts-- carefully| +86572|797289|34835|6|16|22180.00|0.05|0.01|N|O|1996-06-12|1996-06-18|1996-07-07|NONE|FOB|ly bold foxes boost. fluffily even ideas| +86572|30296|5297|7|30|36788.70|0.10|0.01|N|O|1996-07-25|1996-06-22|1996-07-29|COLLECT COD|TRUCK|rts. carefully unusual pinto beans cajol| +86573|168902|18903|1|36|70952.40|0.03|0.02|A|F|1993-06-04|1993-06-08|1993-06-22|TAKE BACK RETURN|TRUCK|nstructions ac| +86573|731704|44219|2|30|52070.10|0.04|0.02|R|F|1993-06-14|1993-06-08|1993-06-24|TAKE BACK RETURN|FOB|ole boldly. blithely fina| +86574|929244|29245|1|28|35649.60|0.00|0.00|A|F|1993-09-21|1993-09-29|1993-10-18|DELIVER IN PERSON|SHIP|furiously even requests| +86575|681970|44484|1|47|91741.18|0.03|0.04|A|F|1994-04-30|1994-04-11|1994-05-25|DELIVER IN PERSON|TRUCK|dolites are slyly carefully regula| +86575|860823|23341|2|38|67783.64|0.00|0.04|R|F|1994-05-08|1994-02-16|1994-05-11|DELIVER IN PERSON|AIR|ntegrate. fl| +86575|851821|26856|3|38|67365.64|0.05|0.03|R|F|1994-04-07|1994-04-12|1994-04-17|NONE|RAIL|ecial accou| +86575|553100|3101|4|29|33439.32|0.08|0.02|R|F|1994-01-19|1994-03-22|1994-01-20|COLLECT COD|AIR|ly ironic packages abo| +86575|950353|12873|5|50|70165.50|0.07|0.01|R|F|1994-02-09|1994-04-13|1994-02-14|TAKE BACK RETURN|RAIL|escapades haggl| +86600|280566|18082|1|14|21651.70|0.08|0.01|A|F|1994-05-14|1994-05-04|1994-05-26|COLLECT COD|RAIL| ironic, e| +86600|464084|26594|2|4|4192.24|0.01|0.07|R|F|1994-06-04|1994-04-07|1994-06-14|DELIVER IN PERSON|RAIL|al packages boost bl| +86600|848129|10646|3|7|7539.56|0.09|0.06|R|F|1994-04-13|1994-04-14|1994-05-01|TAKE BACK RETURN|SHIP|y final deposits sleep. careful| +86600|487402|37403|4|37|51407.06|0.02|0.06|A|F|1994-05-17|1994-04-22|1994-06-06|TAKE BACK RETURN|MAIL|x furiously pending accounts. unusual, | +86600|751370|26401|5|9|12792.06|0.06|0.05|R|F|1994-04-13|1994-03-29|1994-04-25|NONE|AIR|otes-- furiously ironic accounts wa| +86601|741932|41933|1|14|27634.60|0.09|0.06|R|F|1992-10-31|1992-11-01|1992-11-30|NONE|MAIL| special packages mol| +86601|641011|41012|2|35|33319.30|0.09|0.04|R|F|1992-10-21|1992-09-18|1992-11-07|NONE|FOB|y silent pint| +86602|984614|22172|1|40|67942.80|0.05|0.01|N|O|1996-09-02|1996-10-21|1996-09-09|COLLECT COD|REG AIR|nal dolphins are blithe| +86602|396811|9319|2|3|5723.40|0.01|0.01|N|O|1996-10-29|1996-09-23|1996-10-31|NONE|REG AIR|sts nag slyly ironic dependencies.| +86602|189928|39929|3|18|36322.56|0.01|0.01|N|O|1996-09-15|1996-10-11|1996-09-17|NONE|RAIL|gle. ideas use blithely by the fur| +86602|116710|4217|4|41|70795.11|0.00|0.03|N|O|1996-12-02|1996-11-05|1996-12-04|TAKE BACK RETURN|RAIL|pending instructions. furiously e| +86603|963547|1105|1|21|33820.50|0.04|0.01|N|O|1996-12-08|1996-11-14|1996-12-22|NONE|SHIP|ing, even requests cajo| +86603|328508|28509|2|21|32266.29|0.08|0.08|N|O|1996-09-05|1996-10-02|1996-09-26|COLLECT COD|AIR|re carefully along the finally| +86603|224620|37125|3|18|27802.98|0.03|0.03|N|O|1996-08-30|1996-10-10|1996-09-18|DELIVER IN PERSON|AIR|ays bold d| +86603|185924|35925|4|27|54267.84|0.02|0.02|N|O|1996-10-20|1996-10-13|1996-11-17|NONE|TRUCK|ironic deposits. blithely r| +86603|812940|489|5|47|87086.30|0.05|0.08|N|O|1996-09-27|1996-11-20|1996-10-12|DELIVER IN PERSON|SHIP|ncies. quickly re| +86604|343863|31382|1|8|15254.80|0.00|0.07|R|F|1992-06-02|1992-06-29|1992-06-07|TAKE BACK RETURN|AIR|kly whithout the bold, ironic | +86604|304422|29435|2|22|31381.02|0.02|0.01|A|F|1992-05-27|1992-06-30|1992-06-09|COLLECT COD|TRUCK|ccounts do nag slyly re| +86604|406414|43939|3|43|56776.77|0.05|0.06|A|F|1992-08-15|1992-07-27|1992-09-11|TAKE BACK RETURN|FOB|ing, special gifts promise across | +86604|590308|40309|4|37|51736.36|0.02|0.03|A|F|1992-06-12|1992-06-29|1992-07-01|TAKE BACK RETURN|TRUCK|ructions. pending ideas print. carefull| +86604|304908|4909|5|29|55473.81|0.08|0.03|A|F|1992-09-03|1992-08-14|1992-09-22|COLLECT COD|TRUCK|e. fluffily even deposits i| +86605|232166|32167|1|45|49416.75|0.04|0.02|R|F|1994-07-19|1994-08-02|1994-07-25|COLLECT COD|SHIP| ironic dependenc| +86605|999966|37524|2|20|41318.40|0.10|0.04|A|F|1994-10-23|1994-08-30|1994-11-20|COLLECT COD|FOB|usly! carefully iro| +86605|418548|6073|3|41|60127.32|0.05|0.08|R|F|1994-07-16|1994-08-01|1994-08-13|DELIVER IN PERSON|SHIP| ideas cajole furiousl| +86605|531568|44079|4|19|30391.26|0.06|0.04|A|F|1994-10-19|1994-08-18|1994-10-25|COLLECT COD|REG AIR|ously even foxe| +86605|58193|20695|5|41|47198.79|0.04|0.04|A|F|1994-08-21|1994-08-22|1994-09-20|TAKE BACK RETURN|REG AIR|accounts haggle ac| +86606|646211|46212|1|9|10414.62|0.04|0.03|N|O|1998-03-02|1998-02-09|1998-03-20|NONE|AIR|nding dinos solve slyly along t| +86606|867283|17284|2|11|13752.64|0.02|0.05|N|O|1998-03-30|1998-01-20|1998-04-03|NONE|REG AIR|ets. furiously even requests use darin| +86607|260576|10577|1|3|4609.68|0.07|0.08|A|F|1992-04-28|1992-05-01|1992-04-30|DELIVER IN PERSON|TRUCK|unusual account| +86607|499621|49622|2|45|72927.00|0.07|0.00|A|F|1992-04-03|1992-04-07|1992-04-10|DELIVER IN PERSON|REG AIR|o beans. slyly bold deposits amon| +86607|121287|8794|3|16|20932.48|0.00|0.02|A|F|1992-05-01|1992-05-12|1992-05-07|NONE|RAIL|deas haggle fu| +86607|453837|16347|4|12|21489.72|0.02|0.01|R|F|1992-06-19|1992-05-02|1992-06-21|DELIVER IN PERSON|REG AIR|ments. pending packages according to the | +86632|22806|22807|1|32|55321.60|0.06|0.00|A|F|1993-07-22|1993-06-15|1993-08-12|COLLECT COD|TRUCK| pending pa| +86632|297014|22025|2|23|23253.00|0.05|0.06|R|F|1993-06-13|1993-05-31|1993-06-19|NONE|TRUCK|op the carefu| +86632|908108|45663|3|41|45758.46|0.10|0.00|A|F|1993-08-02|1993-05-19|1993-08-23|TAKE BACK RETURN|AIR|; slyly ironic packag| +86632|569296|19297|4|9|12287.43|0.04|0.04|R|F|1993-04-16|1993-06-19|1993-05-12|COLLECT COD|AIR|sits. regular instructions al| +86633|560407|10408|1|4|5869.52|0.08|0.08|N|O|1995-11-23|1995-11-30|1995-12-02|DELIVER IN PERSON|MAIL|. regular, ev| +86633|744615|7130|2|23|38170.34|0.08|0.02|N|O|1995-10-12|1995-11-19|1995-10-24|DELIVER IN PERSON|RAIL|y during the regular, express deposits. f| +86633|743783|6298|3|8|14614.00|0.06|0.01|N|O|1995-12-08|1995-11-30|1995-12-24|COLLECT COD|REG AIR| regular packag| +86633|745977|8492|4|17|34389.98|0.08|0.02|N|O|1995-09-15|1995-11-17|1995-09-28|NONE|TRUCK|ely carefully special requests. fi| +86633|624220|36733|5|18|20595.42|0.01|0.05|N|O|1995-11-30|1995-10-31|1995-12-27|TAKE BACK RETURN|SHIP| the requests. pending accou| +86633|258840|21346|6|42|75550.86|0.03|0.08|N|O|1995-11-30|1995-10-10|1995-12-01|NONE|TRUCK|kages across | +86633|317289|4808|7|15|19594.05|0.06|0.05|N|O|1995-10-18|1995-10-28|1995-10-31|COLLECT COD|TRUCK|riously regular| +86634|671419|46446|1|20|27807.60|0.01|0.02|A|F|1995-05-24|1995-08-10|1995-06-01|COLLECT COD|TRUCK|ons at the slyly even accounts| +86634|532467|7488|2|45|67474.80|0.05|0.06|R|F|1995-05-31|1995-06-23|1995-06-12|NONE|RAIL|inal accounts kindle blithely a| +86635|493034|43035|1|42|43134.42|0.10|0.03|N|O|1996-09-04|1996-09-25|1996-09-18|DELIVER IN PERSON|TRUCK|uffily about the quickl| +86635|409037|9038|2|48|45408.48|0.07|0.01|N|O|1996-09-09|1996-09-07|1996-09-11|NONE|MAIL|ackages wake slyly special p| +86635|668185|18186|3|27|31135.05|0.06|0.00|N|O|1996-08-05|1996-10-05|1996-08-16|NONE|SHIP|braids? carefully ironic depos| +86636|568590|18591|1|12|19902.84|0.01|0.06|A|F|1993-08-23|1993-08-14|1993-08-31|DELIVER IN PERSON|MAIL|accounts boost furiou| +86636|285730|48236|2|10|17157.20|0.06|0.00|R|F|1993-07-27|1993-07-16|1993-08-02|DELIVER IN PERSON|FOB|e quickly | +86636|251029|26040|3|44|43120.44|0.03|0.07|A|F|1993-09-19|1993-08-12|1993-10-16|TAKE BACK RETURN|FOB| quickly dogged reque| +86636|36973|49474|4|26|49659.22|0.06|0.04|A|F|1993-09-19|1993-08-15|1993-10-13|TAKE BACK RETURN|TRUCK|uriously idle theodolites. regular packag| +86637|767628|30144|1|48|81388.32|0.05|0.01|A|F|1992-09-16|1992-09-04|1992-10-01|NONE|RAIL|lar requests. acco| +86637|514053|39074|2|8|8536.24|0.04|0.04|R|F|1992-08-02|1992-07-22|1992-08-15|NONE|SHIP| final excuses boost quic| +86637|677547|15087|3|47|71651.97|0.05|0.08|A|F|1992-08-30|1992-07-22|1992-09-18|NONE|TRUCK| silent ideas sleep furiously. unusua| +86637|523847|36358|4|30|56124.60|0.08|0.07|A|F|1992-10-05|1992-08-02|1992-10-31|DELIVER IN PERSON|REG AIR|al, pending plate| +86637|293297|30813|5|6|7741.68|0.07|0.06|R|F|1992-07-21|1992-07-16|1992-08-04|DELIVER IN PERSON|REG AIR|y. fluffily | +86637|433850|33851|6|30|53514.90|0.03|0.03|A|F|1992-07-25|1992-07-26|1992-08-18|COLLECT COD|FOB|ld requests haggle| +86637|703158|3159|7|2|2322.24|0.00|0.04|R|F|1992-06-25|1992-08-09|1992-07-08|DELIVER IN PERSON|TRUCK|ackages. final deposits since the| +86638|976058|26059|1|2|2268.02|0.07|0.07|N|O|1996-07-31|1996-10-13|1996-08-14|COLLECT COD|TRUCK|ding theodolites maintain whitho| +86638|604854|4855|2|34|59799.88|0.01|0.06|N|O|1996-09-23|1996-10-01|1996-10-13|NONE|TRUCK|ding packa| +86638|766670|16671|3|24|41679.36|0.06|0.07|N|O|1996-11-03|1996-09-07|1996-11-07|NONE|RAIL|ounts sleep according to the close depend| +86638|410930|48455|4|50|92045.50|0.04|0.01|N|O|1996-10-28|1996-09-12|1996-11-11|COLLECT COD|SHIP|fily final platelets are c| +86638|496166|33694|5|5|5810.70|0.00|0.07|N|O|1996-09-08|1996-09-11|1996-09-27|DELIVER IN PERSON|RAIL|encies print platelets. slyl| +86638|59981|47485|6|32|62111.36|0.03|0.07|N|O|1996-09-04|1996-08-22|1996-09-15|DELIVER IN PERSON|REG AIR|t blithely along the| +86638|90308|40309|7|1|1298.30|0.02|0.06|N|O|1996-08-21|1996-09-17|1996-09-20|TAKE BACK RETURN|MAIL|ironic accounts. carefully silent warthogs| +86639|802814|15331|1|46|78971.42|0.01|0.07|N|O|1996-02-02|1996-01-01|1996-02-12|DELIVER IN PERSON|REG AIR|hely above the daringly fluffy realms--| +86639|886207|36208|2|16|19090.56|0.03|0.00|N|O|1996-02-24|1996-01-11|1996-03-16|TAKE BACK RETURN|FOB|close depths. eve| +86664|461882|24392|1|45|82973.70|0.03|0.02|A|F|1994-02-24|1994-01-20|1994-03-03|COLLECT COD|TRUCK|nder along the unusual, express idea| +86664|835311|35312|2|40|49850.80|0.01|0.01|A|F|1994-01-16|1994-01-24|1994-02-05|TAKE BACK RETURN|MAIL|packages eat slyly. inst| +86665|125002|7|1|39|40053.00|0.05|0.03|A|F|1993-01-27|1993-03-20|1993-02-21|DELIVER IN PERSON|RAIL|ironic instruct| +86665|901854|14373|2|40|74232.40|0.06|0.02|A|F|1992-12-30|1993-03-19|1993-01-07|TAKE BACK RETURN|REG AIR|otornis haggle furiously alongside | +86665|447594|10103|3|34|52413.38|0.09|0.05|R|F|1993-02-11|1993-03-16|1993-02-16|NONE|MAIL|ess furiously expres| +86665|701312|26341|4|7|9192.96|0.02|0.05|R|F|1993-04-14|1993-03-12|1993-04-17|TAKE BACK RETURN|MAIL|regular foxes w| +86665|935934|23489|5|2|3939.78|0.10|0.00|A|F|1993-04-10|1993-02-16|1993-05-02|COLLECT COD|FOB|ess patterns wake carefully slyly expr| +86666|415959|40976|1|39|73122.27|0.08|0.00|N|O|1998-02-25|1998-02-28|1998-03-08|TAKE BACK RETURN|REG AIR|egular deposits. slyly| +86666|19702|32203|2|46|74598.20|0.09|0.07|N|O|1998-02-28|1998-01-27|1998-03-07|TAKE BACK RETURN|MAIL|uriously regular theodolites boost c| +86666|125881|13388|3|25|47672.00|0.01|0.05|N|O|1998-01-20|1998-01-25|1998-01-31|NONE|TRUCK|urious attainme| +86666|673163|23164|4|19|21586.47|0.04|0.01|N|O|1997-12-18|1998-02-16|1997-12-20|TAKE BACK RETURN|SHIP|carefully furiously re| +86666|843566|6083|5|47|70947.44|0.03|0.08|N|O|1998-02-09|1998-02-09|1998-03-10|TAKE BACK RETURN|AIR|xes. regular, dogged deposits acros| +86667|871233|8785|1|13|15654.47|0.03|0.05|N|O|1997-10-02|1997-10-17|1997-10-24|NONE|RAIL|luffily after the slyly special theo| +86667|808553|8554|2|30|43845.30|0.08|0.02|N|O|1997-09-27|1997-09-17|1997-10-06|COLLECT COD|MAIL|luffily after the even, unusual dependen| +86668|321565|21566|1|21|33317.55|0.07|0.05|N|O|1996-11-29|1996-11-22|1996-12-18|COLLECT COD|FOB|cording to the fl| +86668|528023|40534|2|2|2102.00|0.10|0.07|N|O|1996-12-05|1996-11-01|1996-12-15|COLLECT COD|FOB|the furiously special platelets. fi| +86669|427700|15225|1|10|16276.80|0.02|0.08|R|F|1993-08-17|1993-07-17|1993-09-06|COLLECT COD|MAIL|ding grouches. car| +86669|345794|33313|2|8|14718.24|0.10|0.00|A|F|1993-08-09|1993-05-29|1993-08-30|TAKE BACK RETURN|REG AIR|y express platelets sleep. carefully specia| +86669|747579|47580|3|43|69941.22|0.09|0.06|A|F|1993-04-30|1993-06-28|1993-05-11|DELIVER IN PERSON|FOB| theodolites use carefully around| +86670|838957|1474|1|15|28438.65|0.10|0.00|A|F|1994-03-28|1994-04-21|1994-04-02|COLLECT COD|TRUCK|: furiously unusual requests about t| +86670|337660|37661|2|34|57720.10|0.10|0.02|R|F|1994-04-20|1994-04-30|1994-05-14|TAKE BACK RETURN|RAIL|counts. regular requests wake after the bli| +86670|37007|37008|3|6|5664.00|0.04|0.02|R|F|1994-05-06|1994-04-06|1994-05-23|NONE|SHIP|ss packages wake quic| +86671|252851|27862|1|18|32469.12|0.01|0.08|R|F|1994-03-02|1994-01-17|1994-03-26|TAKE BACK RETURN|TRUCK|s wake carefully over the s| +86671|663168|38195|2|12|13573.56|0.02|0.00|A|F|1994-01-05|1993-12-20|1994-01-13|DELIVER IN PERSON|REG AIR|sits. even, | +86671|858040|20558|3|35|34930.00|0.04|0.04|R|F|1993-11-27|1994-01-20|1993-12-15|COLLECT COD|REG AIR|packages? blithely stealthy packages| +86671|66670|41673|4|14|22913.38|0.00|0.02|R|F|1993-12-12|1994-01-03|1993-12-14|DELIVER IN PERSON|AIR|rbits haggle at the unusual deposits. iron| +86696|951985|39543|1|50|101847.00|0.01|0.06|R|F|1994-10-23|1994-08-21|1994-11-14|COLLECT COD|RAIL|rding to the furiously | +86697|557019|32042|1|43|46267.57|0.09|0.06|A|F|1994-11-13|1994-11-01|1994-12-07|COLLECT COD|MAIL|sits. ironic accounts are s| +86697|801956|1957|2|21|39016.11|0.02|0.01|A|F|1994-11-26|1994-11-02|1994-12-13|NONE|RAIL| boost above the furiously | +86697|470927|45946|3|28|53141.20|0.08|0.03|R|F|1994-12-25|1994-11-27|1995-01-12|COLLECT COD|MAIL|en theodolites? platelets| +86697|856648|19166|4|40|64184.00|0.01|0.07|A|F|1994-11-06|1994-11-09|1994-11-10|DELIVER IN PERSON|FOB| boost above the final, pending accounts| +86697|678779|41293|5|34|59763.16|0.03|0.04|R|F|1994-11-27|1994-10-14|1994-12-22|COLLECT COD|TRUCK|the multipliers| +86697|227842|2851|6|6|10618.98|0.01|0.03|A|F|1994-11-19|1994-10-20|1994-11-21|COLLECT COD|FOB| affix carefully along the blithel| +86697|331118|6131|7|15|17236.50|0.02|0.05|R|F|1994-09-27|1994-11-29|1994-10-17|TAKE BACK RETURN|FOB| after the careful| +86698|87264|49766|1|18|22522.68|0.05|0.07|N|O|1996-12-06|1997-01-28|1996-12-20|NONE|SHIP|ending excuses at the | +86698|641901|29438|2|23|42386.01|0.01|0.04|N|O|1996-12-27|1997-01-10|1997-01-26|COLLECT COD|AIR|ular forges integrate across the ironic re| +86699|667296|29810|1|25|31581.50|0.01|0.06|N|O|1997-10-09|1997-12-09|1997-10-16|COLLECT COD|RAIL|fluffily pending theodolites haggle| +86700|494845|7355|1|22|40476.04|0.07|0.08|N|O|1996-07-11|1996-07-16|1996-08-09|NONE|RAIL|inal ideas atop the| +86700|844409|31958|2|46|62254.56|0.10|0.07|N|O|1996-05-22|1996-07-07|1996-06-06|DELIVER IN PERSON|SHIP|ng the furiously quick deposits; unusu| +86700|975623|38143|3|11|18684.38|0.10|0.05|N|O|1996-09-01|1996-08-03|1996-09-04|COLLECT COD|RAIL|ites. never ironic d| +86700|293076|5582|4|44|47038.64|0.03|0.08|N|O|1996-06-20|1996-07-03|1996-06-24|DELIVER IN PERSON|SHIP|ly across the even requests. quickly i| +86701|801196|1197|1|32|35108.80|0.03|0.04|R|F|1994-08-18|1994-06-21|1994-08-30|NONE|TRUCK|platelets. furiously pending | +86701|689440|14467|2|50|71470.50|0.10|0.03|R|F|1994-05-27|1994-06-25|1994-06-24|TAKE BACK RETURN|MAIL|y silent requests was careful| +86701|417160|17161|3|3|3231.42|0.02|0.04|A|F|1994-07-01|1994-06-05|1994-07-13|NONE|RAIL|equests affix furiou| +86701|203337|3338|4|25|31008.00|0.02|0.02|A|F|1994-06-19|1994-07-04|1994-07-13|NONE|RAIL|es. deposits among the regular, ironic| +86701|479244|41754|5|21|25687.62|0.04|0.05|A|F|1994-06-28|1994-06-07|1994-07-03|TAKE BACK RETURN|TRUCK|oxes haggle furiously regular packages. bli| +86702|620778|8315|1|45|76443.30|0.06|0.04|A|F|1994-03-21|1994-04-01|1994-04-19|DELIVER IN PERSON|TRUCK|across the slyly even asymptotes. ironi| +86702|403493|28510|2|9|12568.23|0.02|0.07|A|F|1994-05-31|1994-03-21|1994-06-02|COLLECT COD|MAIL|-- furiously final packages| +86702|502193|27214|3|31|37050.27|0.03|0.00|R|F|1994-06-06|1994-03-21|1994-07-04|TAKE BACK RETURN|SHIP|eposits use blithely. blithely e| +86702|356232|31247|4|14|18035.08|0.08|0.02|R|F|1994-05-29|1994-05-03|1994-06-09|NONE|FOB|ic pinto beans sleep. enticing | +86702|184591|47095|5|45|75401.55|0.05|0.06|A|F|1994-04-10|1994-05-12|1994-04-28|TAKE BACK RETURN|SHIP|de of the slyly ironi| +86703|453193|3194|1|31|35531.27|0.04|0.01|N|O|1997-04-26|1997-05-05|1997-05-23|NONE|FOB|, regular pinto beans. ironic, slow packag| +86703|811226|11227|2|14|15920.52|0.08|0.06|N|O|1997-06-18|1997-03-23|1997-06-22|TAKE BACK RETURN|TRUCK|carefully quick | +86703|270851|33357|3|50|91092.00|0.10|0.02|N|O|1997-03-26|1997-04-16|1997-04-10|TAKE BACK RETURN|SHIP|posits was quickly bold sheaves. ironic| +86728|557457|44991|1|49|74207.07|0.10|0.08|N|O|1996-05-24|1996-05-17|1996-06-16|TAKE BACK RETURN|REG AIR|the accounts nag furi| +86728|169113|31617|2|6|7092.66|0.05|0.02|N|O|1996-03-05|1996-05-24|1996-03-23|COLLECT COD|AIR|dolites nag quickly among the furiousl| +86728|279351|16867|3|33|43901.22|0.04|0.00|N|O|1996-05-06|1996-04-07|1996-05-28|TAKE BACK RETURN|AIR|ward the carefully even theodolites hinder| +86728|36563|24064|4|36|53984.16|0.03|0.04|N|O|1996-02-25|1996-04-23|1996-03-05|TAKE BACK RETURN|TRUCK|ts sleep fu| +86728|514212|26723|5|37|45369.03|0.05|0.04|N|O|1996-03-11|1996-05-04|1996-03-20|TAKE BACK RETURN|RAIL|ions cajole carefully against th| +86728|347599|10106|6|28|46104.24|0.08|0.02|N|O|1996-03-13|1996-05-21|1996-03-21|TAKE BACK RETURN|MAIL|ter the sly| +86728|87188|37189|7|30|35255.40|0.06|0.03|N|O|1996-05-11|1996-04-12|1996-05-25|COLLECT COD|TRUCK|he instructions wake about the slyly| +86729|360622|23130|1|47|79082.67|0.07|0.07|N|O|1995-09-24|1995-09-12|1995-10-09|COLLECT COD|SHIP| nag. idly final excuses ca| +86729|971507|34027|2|47|74187.62|0.07|0.07|N|O|1995-08-19|1995-09-17|1995-09-13|TAKE BACK RETURN|REG AIR|e slyly regular requests. iron| +86729|106641|44148|3|24|39543.36|0.00|0.06|N|O|1995-09-28|1995-10-01|1995-10-18|NONE|FOB|s-- furiously even accoun| +86729|311025|23532|4|49|50764.49|0.03|0.05|N|O|1995-10-19|1995-08-25|1995-10-30|NONE|MAIL|ng the sil| +86729|393166|30688|5|1|1259.15|0.10|0.00|N|O|1995-10-30|1995-10-03|1995-11-07|COLLECT COD|RAIL|across the fi| +86729|932341|7378|6|13|17852.90|0.03|0.00|N|O|1995-07-27|1995-09-21|1995-08-10|COLLECT COD|SHIP|even accounts wake fluffily fin| +86729|852042|27077|7|31|30814.00|0.04|0.05|N|O|1995-09-27|1995-08-21|1995-10-27|TAKE BACK RETURN|TRUCK|ages across the waters haggle bli| +86730|259238|21744|1|20|23944.40|0.01|0.00|N|O|1997-01-06|1996-11-30|1997-01-30|COLLECT COD|AIR|e ironic, ironic packages | +86730|12239|24740|2|12|13814.76|0.01|0.07|N|O|1996-10-12|1996-12-11|1996-10-19|DELIVER IN PERSON|RAIL|y slyly ironic req| +86730|699219|11733|3|5|6090.90|0.05|0.01|N|O|1996-10-27|1996-12-18|1996-11-13|TAKE BACK RETURN|REG AIR|thily pending| +86731|479751|29752|1|31|53652.63|0.03|0.03|N|O|1996-01-29|1996-02-23|1996-02-03|NONE|REG AIR|thely regular pinto | +86732|68382|5886|1|6|8102.28|0.06|0.08|N|O|1997-08-15|1997-08-02|1997-08-26|TAKE BACK RETURN|MAIL|pinto beans. furiously even epitaphs| +86733|900785|25822|1|2|3571.48|0.09|0.02|N|O|1997-09-25|1997-09-10|1997-10-16|TAKE BACK RETURN|AIR|de of the expres| +86733|486405|48915|2|50|69569.00|0.01|0.04|N|O|1997-07-21|1997-09-02|1997-08-12|COLLECT COD|TRUCK|cial pinto beans cajole against the furi| +86734|601364|1365|1|3|3795.99|0.00|0.03|N|O|1998-08-14|1998-07-09|1998-09-12|DELIVER IN PERSON|MAIL| regular dependencies wake s| +86735|266921|41932|1|7|13215.37|0.02|0.06|A|F|1993-09-01|1993-10-19|1993-09-05|DELIVER IN PERSON|AIR|al requests. bold, ironic accounts solve| +86735|135538|48041|2|41|64514.73|0.00|0.08|A|F|1993-09-22|1993-10-01|1993-10-09|COLLECT COD|SHIP| quickly express hockey | +86735|976135|13693|3|15|18166.35|0.06|0.04|R|F|1993-10-13|1993-09-15|1993-10-15|NONE|SHIP| regular platelets cajole ca| +86735|890257|15292|4|28|34921.88|0.08|0.08|R|F|1993-09-10|1993-09-23|1993-10-06|COLLECT COD|AIR|unts! quickly qui| +86760|751053|13569|1|24|26496.48|0.09|0.00|N|O|1997-06-25|1997-05-17|1997-07-09|COLLECT COD|RAIL|ut the quickly regular packages haggl| +86760|947071|22108|2|50|55901.50|0.04|0.00|N|O|1997-06-02|1997-06-30|1997-06-25|COLLECT COD|FOB|es. carefully | +86761|791914|16945|1|6|12035.28|0.10|0.05|A|F|1993-03-27|1993-04-21|1993-04-14|TAKE BACK RETURN|SHIP| regular dependencie| +86761|695579|8093|2|38|59832.52|0.07|0.02|A|F|1993-04-03|1993-04-01|1993-04-17|DELIVER IN PERSON|FOB|ly ironic ideas haggle fluffily ideas. sl| +86761|585315|47827|3|16|22404.64|0.06|0.01|A|F|1993-03-31|1993-03-30|1993-04-15|TAKE BACK RETURN|REG AIR|d packages cajole car| +86761|374251|11773|4|36|47708.64|0.07|0.07|R|F|1993-03-08|1993-04-18|1993-04-04|COLLECT COD|FOB|ccording to the s| +86761|20268|7769|5|32|38024.32|0.03|0.06|R|F|1993-05-29|1993-04-05|1993-06-15|NONE|SHIP| requests. quickly even pinto beans s| +86761|634247|46760|6|46|54335.66|0.09|0.00|R|F|1993-04-04|1993-04-16|1993-04-06|TAKE BACK RETURN|SHIP| ironic accounts. s| +86761|773507|36023|7|10|15804.70|0.08|0.06|A|F|1993-05-18|1993-03-03|1993-05-22|NONE|RAIL|, express packages across the fo| +86762|327975|40482|1|33|66097.68|0.09|0.04|N|O|1998-01-23|1998-01-14|1998-02-13|NONE|FOB|ithely even instructi| +86762|273876|23877|2|41|75844.26|0.09|0.07|N|O|1997-12-10|1997-12-28|1997-12-15|DELIVER IN PERSON|MAIL| accounts are fluffily| +86763|23419|10920|1|41|55038.81|0.08|0.05|A|F|1993-06-28|1993-07-01|1993-07-24|COLLECT COD|REG AIR|ly even requests na| +86763|589997|39998|2|20|41739.40|0.10|0.03|R|F|1993-09-05|1993-07-17|1993-09-11|NONE|TRUCK|inal realms. blith| +86763|66327|16328|3|10|12933.20|0.02|0.03|A|F|1993-06-30|1993-07-03|1993-07-30|COLLECT COD|SHIP|ong the carefully express packages are| +86763|754071|4072|4|18|20250.72|0.05|0.07|A|F|1993-07-14|1993-07-04|1993-08-04|COLLECT COD|RAIL|apades! even requests | +86763|669113|19114|5|33|35708.64|0.01|0.05|R|F|1993-07-04|1993-08-04|1993-07-13|DELIVER IN PERSON|RAIL|ly pending accounts haggle. fluffily reg| +86763|766363|28879|6|34|48597.22|0.08|0.03|A|F|1993-07-22|1993-06-25|1993-07-31|TAKE BACK RETURN|REG AIR|ckages cajole furiously| +86764|87180|24684|1|10|11671.80|0.08|0.07|N|O|1997-08-17|1997-06-22|1997-08-19|NONE|RAIL|ions serve slyly expre| +86764|217705|42714|2|21|34076.49|0.03|0.04|N|O|1997-07-17|1997-07-14|1997-08-11|TAKE BACK RETURN|TRUCK|accounts. blithely even requests haggle q| +86764|959958|9959|3|34|68608.94|0.03|0.04|N|O|1997-06-05|1997-07-03|1997-06-29|NONE|REG AIR|ts haggle furiously regular pac| +86764|997853|47854|4|26|50721.06|0.09|0.03|N|O|1997-06-23|1997-07-26|1997-07-17|NONE|TRUCK|e after the furiously| +86765|770305|45336|1|43|59136.61|0.01|0.06|N|O|1997-06-13|1997-05-01|1997-07-13|DELIVER IN PERSON|FOB|egular packages. slyly | +86765|510644|48175|2|48|79421.76|0.08|0.07|N|O|1997-03-01|1997-03-14|1997-03-13|DELIVER IN PERSON|AIR|o sleep slyly ironic accounts. furious| +86765|380572|5587|3|5|8262.80|0.08|0.08|N|O|1997-03-05|1997-04-25|1997-04-02|COLLECT COD|SHIP|ular packages ab| +86765|272247|9763|4|16|19507.68|0.04|0.06|N|O|1997-02-18|1997-04-30|1997-02-19|NONE|FOB| pinto bean| +86765|639822|27359|5|44|77518.76|0.03|0.00|N|O|1997-06-10|1997-03-23|1997-06-25|TAKE BACK RETURN|REG AIR|yly ironic accounts. boldly thin excuses u| +86765|479636|17164|6|19|30696.59|0.00|0.03|N|O|1997-03-15|1997-05-01|1997-04-12|TAKE BACK RETURN|RAIL|latelets. slyly even asymptotes snooze | +86765|233788|46293|7|43|74036.11|0.09|0.06|N|O|1997-04-26|1997-04-01|1997-05-26|NONE|TRUCK|ular somas. accounts nag furiou| +86766|269603|19604|1|28|44032.52|0.00|0.00|N|O|1996-02-27|1995-12-31|1996-03-22|COLLECT COD|AIR|e slyly bold ideas solv| +86766|216834|4347|2|34|59527.88|0.04|0.03|N|O|1996-02-19|1996-02-08|1996-03-02|COLLECT COD|SHIP|ithely even courts sleep blithely. in| +86767|208480|33489|1|3|4165.41|0.00|0.08|N|O|1998-02-22|1997-12-12|1998-03-06|TAKE BACK RETURN|RAIL| requests. ironic accounts wake sly| +86767|911881|11882|2|40|75713.60|0.03|0.08|N|O|1998-01-21|1998-01-12|1998-02-09|NONE|RAIL|he furiously ironi| +86792|371532|9054|1|11|17638.72|0.04|0.08|N|O|1998-03-28|1998-03-17|1998-04-09|NONE|SHIP|oss the even requests. fl| +86792|336530|24049|2|10|15665.20|0.00|0.02|N|O|1998-02-18|1998-02-08|1998-03-14|TAKE BACK RETURN|REG AIR|against the final escapades.| +86792|44960|44961|3|21|40004.16|0.08|0.00|N|O|1998-01-29|1998-02-19|1998-02-17|DELIVER IN PERSON|AIR|furiously fluffily ruthless dependen| +86792|633425|8450|4|33|44826.87|0.04|0.05|N|O|1998-02-28|1998-02-15|1998-03-28|NONE|MAIL|uickly silent ideas. | +86793|688328|842|1|33|43437.57|0.08|0.04|R|F|1992-08-14|1992-10-01|1992-08-25|NONE|AIR|, bold accounts. specia| +86794|951673|1674|1|7|12072.41|0.05|0.08|N|O|1995-08-08|1995-08-25|1995-08-21|TAKE BACK RETURN|RAIL|to the ironic, | +86794|765343|2889|2|18|25349.58|0.01|0.00|N|O|1995-08-04|1995-10-02|1995-08-26|TAKE BACK RETURN|SHIP|ites. furi| +86795|237130|49635|1|49|52288.88|0.01|0.01|R|F|1992-07-05|1992-06-18|1992-07-15|TAKE BACK RETURN|SHIP| blithely idle id| +86796|277950|15466|1|3|5783.82|0.04|0.07|R|F|1993-06-09|1993-05-18|1993-06-22|TAKE BACK RETURN|FOB|dencies haggle final| +86796|497983|10493|2|36|71314.56|0.00|0.02|A|F|1993-07-12|1993-04-29|1993-07-28|DELIVER IN PERSON|SHIP| slyly against| +86796|594130|19153|3|50|61205.50|0.04|0.07|A|F|1993-05-04|1993-06-06|1993-05-10|NONE|TRUCK|eep fluffily after the furi| +86796|536170|36171|4|28|33772.20|0.04|0.03|R|F|1993-05-31|1993-06-04|1993-06-13|COLLECT COD|TRUCK|ges use across the final, even platelets. | +86796|409065|9066|5|18|17532.72|0.10|0.07|R|F|1993-04-15|1993-06-06|1993-05-13|NONE|AIR|final foxes sleep blithely | +86796|150149|37659|6|12|14389.68|0.06|0.01|A|F|1993-05-02|1993-06-26|1993-05-20|TAKE BACK RETURN|MAIL| sleep! slyl| +86796|541666|29197|7|48|81966.72|0.04|0.03|R|F|1993-04-27|1993-05-03|1993-05-20|NONE|REG AIR|ic, ironic excuses. slyly bold | +86797|765959|15960|1|18|36448.56|0.08|0.03|N|O|1995-08-06|1995-09-21|1995-08-24|TAKE BACK RETURN|FOB|lly regular packages haggle afte| +86797|467437|4965|2|49|68816.09|0.08|0.03|N|O|1995-10-01|1995-10-02|1995-10-23|COLLECT COD|TRUCK|dencies sleep carefully. s| +86798|654169|16683|1|19|21339.47|0.01|0.00|N|O|1996-07-23|1996-07-01|1996-08-19|TAKE BACK RETURN|MAIL|ronic, regular pinto be| +86798|611161|36186|2|7|7504.91|0.05|0.05|N|O|1996-08-18|1996-06-10|1996-09-13|NONE|REG AIR|kly express braids cajole carefully. accou| +86799|14667|27168|1|46|72756.36|0.06|0.06|N|O|1995-12-22|1995-10-21|1995-12-30|COLLECT COD|AIR|atelets use furi| +86799|503553|28574|2|26|40469.78|0.08|0.06|N|O|1995-09-21|1995-11-22|1995-10-18|TAKE BACK RETURN|FOB|usly enticing pinto| +86799|205763|30772|3|31|51731.25|0.08|0.01|N|O|1995-10-29|1995-11-06|1995-11-25|COLLECT COD|SHIP|ost blithely bold deposits.| +86824|636385|11410|1|27|35676.45|0.10|0.00|A|F|1994-03-19|1994-01-31|1994-04-09|TAKE BACK RETURN|FOB|ily bold platelets are. q| +86824|709432|21947|2|39|56214.60|0.06|0.04|A|F|1993-12-20|1994-02-20|1994-01-10|COLLECT COD|RAIL|azzle slyly final foxes. ironic package| +86825|862113|49665|1|3|3225.21|0.00|0.00|N|O|1995-11-13|1995-08-27|1995-12-10|DELIVER IN PERSON|AIR|lly even foxes. even pinto beans haggle sl| +86825|526646|26647|2|50|83631.00|0.08|0.02|N|O|1995-11-02|1995-09-30|1995-11-29|NONE|REG AIR|heodolites snooze blithely| +86825|327389|2402|3|15|21245.55|0.02|0.08|N|O|1995-09-07|1995-10-14|1995-09-30|NONE|TRUCK|against the spe| +86825|421565|9090|4|39|57975.06|0.06|0.06|N|O|1995-08-04|1995-08-26|1995-08-30|NONE|FOB|r requests according to the dependencie| +86825|229927|29928|5|43|79847.13|0.10|0.00|N|O|1995-09-14|1995-09-20|1995-10-06|NONE|MAIL|across the requests ca| +86825|380628|30629|6|19|32463.59|0.04|0.01|N|O|1995-08-18|1995-10-21|1995-09-08|COLLECT COD|TRUCK|packages. quickly regular id| +86825|207693|32702|7|48|76832.64|0.06|0.03|N|O|1995-11-21|1995-09-06|1995-12-21|TAKE BACK RETURN|AIR|yly ironic grouc| +86826|693950|31490|1|27|52485.84|0.00|0.01|N|O|1996-08-04|1996-08-30|1996-08-18|NONE|TRUCK|egular theodolit| +86826|205771|43284|2|11|18444.36|0.01|0.03|N|O|1996-09-17|1996-07-17|1996-09-22|DELIVER IN PERSON|REG AIR| fluffily final requests are across th| +86826|390806|40807|3|35|66387.65|0.10|0.00|N|O|1996-07-01|1996-08-31|1996-07-11|DELIVER IN PERSON|FOB|ic instructions haggle fluffily dolphin| +86826|273655|36161|4|23|37458.72|0.04|0.00|N|O|1996-09-02|1996-07-19|1996-09-21|NONE|RAIL|equests. regular requ| +86827|752805|40351|1|49|91030.73|0.00|0.03|R|F|1992-07-27|1992-08-22|1992-08-25|NONE|MAIL|onic theodolites are carefully even, unus| +86827|383032|45540|2|31|34565.62|0.05|0.05|A|F|1992-09-10|1992-08-28|1992-10-06|NONE|REG AIR|ic pinto beans affix blithely. eve| +86828|521119|46140|1|11|12540.99|0.01|0.05|N|O|1995-07-14|1995-05-05|1995-07-28|DELIVER IN PERSON|FOB|deposits i| +86828|432675|32676|2|44|70736.60|0.09|0.01|R|F|1995-05-01|1995-04-29|1995-05-26|COLLECT COD|AIR|r theodolites | +86828|959013|21533|3|41|43950.77|0.09|0.04|R|F|1995-05-11|1995-06-02|1995-05-22|NONE|TRUCK|ests use final, regular accoun| +86828|127189|14696|4|20|24323.60|0.10|0.04|N|O|1995-07-23|1995-05-27|1995-08-07|DELIVER IN PERSON|REG AIR|ccounts haggle slyly along the fluffil| +86829|391755|41756|1|7|12927.18|0.02|0.05|A|F|1992-07-05|1992-07-11|1992-07-11|NONE|REG AIR|es. slyly even requests| +86829|219444|44453|2|15|20451.45|0.02|0.04|A|F|1992-05-17|1992-05-25|1992-05-25|COLLECT COD|REG AIR|ckly ironic reque| +86829|190805|28315|3|37|70144.60|0.05|0.07|R|F|1992-07-17|1992-05-13|1992-08-13|COLLECT COD|SHIP|ites. quickly regul| +86829|850469|12987|4|30|42582.60|0.06|0.04|A|F|1992-05-06|1992-06-08|1992-05-15|TAKE BACK RETURN|AIR| accounts | +86829|819728|44761|5|20|32953.60|0.04|0.05|A|F|1992-07-30|1992-05-25|1992-08-06|COLLECT COD|RAIL|s. unusual, regular pinto beans cajol| +86830|376587|39095|1|14|23289.98|0.02|0.03|R|F|1995-04-09|1995-02-20|1995-04-24|TAKE BACK RETURN|REG AIR|fluffily sly accounts! furi| +86830|294546|19557|2|36|55459.08|0.08|0.03|A|F|1995-03-28|1995-04-02|1995-04-18|NONE|AIR|y final requests use furiously c| +86830|431169|31170|3|27|29703.78|0.07|0.00|R|F|1995-02-25|1995-03-06|1995-03-24|TAKE BACK RETURN|TRUCK|s: carefully ironic packages around t| +86830|645741|20766|4|37|62408.27|0.02|0.02|R|F|1995-04-25|1995-04-02|1995-05-21|NONE|REG AIR|xcuses. slyly unus| +86830|961344|23864|5|3|4215.90|0.03|0.01|A|F|1995-02-06|1995-04-08|1995-03-08|DELIVER IN PERSON|MAIL| final requests wake furiously. | +86831|698175|48176|1|5|5865.70|0.06|0.04|N|O|1995-10-06|1995-10-31|1995-10-24|COLLECT COD|SHIP| blithely f| +86831|214741|27246|2|48|79475.04|0.06|0.05|N|O|1995-11-11|1995-10-21|1995-12-08|COLLECT COD|FOB|s cajole furiously bold accounts: blithely | +86831|135679|35680|3|25|42866.75|0.07|0.01|N|O|1995-09-23|1995-10-20|1995-10-01|DELIVER IN PERSON|FOB|tect blith| +86831|341749|29268|4|36|64466.28|0.00|0.04|N|O|1995-12-11|1995-11-02|1995-12-16|TAKE BACK RETURN|MAIL|riously. regular pinto beans nag final | +86831|765176|2722|5|39|48404.46|0.08|0.01|N|O|1995-09-28|1995-10-24|1995-10-05|COLLECT COD|TRUCK|y against | +86831|308892|21399|6|17|32314.96|0.09|0.05|N|O|1995-09-20|1995-11-12|1995-10-15|TAKE BACK RETURN|MAIL|thely even instructions haggle. qui| +86831|535223|47734|7|42|52844.40|0.07|0.06|N|O|1995-12-09|1995-11-07|1995-12-25|COLLECT COD|REG AIR|s cajole blithely furiously iron| +86856|484548|34549|1|20|30650.40|0.05|0.01|R|F|1992-07-29|1992-09-14|1992-08-11|TAKE BACK RETURN|RAIL|ously regular asy| +86856|792631|30177|2|7|12065.20|0.01|0.08|A|F|1992-09-10|1992-09-17|1992-09-25|NONE|TRUCK|e the furiously regular grouche| +86856|746857|9372|3|12|22845.84|0.03|0.00|R|F|1992-10-28|1992-08-21|1992-11-22|DELIVER IN PERSON|MAIL|ke slyly about the blithely ironic de| +86857|697391|34931|1|1|1388.36|0.03|0.08|R|F|1993-08-18|1993-06-27|1993-08-31|TAKE BACK RETURN|SHIP|earls. slyly regular pinto beans doze caref| +86857|39361|26862|2|41|53314.76|0.09|0.04|A|F|1993-07-04|1993-07-12|1993-07-26|DELIVER IN PERSON|MAIL|eposits sleep carefully dependencies. blith| +86857|530851|18382|3|40|75273.20|0.03|0.07|R|F|1993-07-20|1993-07-19|1993-08-10|COLLECT COD|AIR|xpress dep| +86857|6046|31047|4|39|37129.56|0.03|0.05|A|F|1993-07-12|1993-07-04|1993-07-30|DELIVER IN PERSON|REG AIR|pecial, special accounts nag furiously| +86858|754936|29967|1|39|77645.10|0.07|0.08|A|F|1992-10-11|1992-09-19|1992-10-26|TAKE BACK RETURN|SHIP|y special accounts. carefully expr| +86858|196372|8876|2|30|44051.10|0.10|0.07|A|F|1992-11-04|1992-10-13|1992-11-14|TAKE BACK RETURN|SHIP|elets. blithely | +86858|419487|44504|3|7|9845.22|0.03|0.02|A|F|1992-08-21|1992-09-18|1992-08-25|TAKE BACK RETURN|RAIL|ites. furiously regular dolphins use | +86858|315031|15032|4|48|50208.96|0.07|0.04|R|F|1992-08-07|1992-10-22|1992-08-31|COLLECT COD|SHIP|counts. special pinto beans g| +86859|932202|44721|1|21|25917.36|0.10|0.06|N|O|1998-06-07|1998-07-17|1998-06-27|DELIVER IN PERSON|REG AIR|bold, final ideas wake. final platele| +86859|515229|2760|2|16|19907.20|0.00|0.04|N|O|1998-08-14|1998-08-08|1998-08-23|TAKE BACK RETURN|RAIL| blithely furious deposits. blithely final | +86859|443379|5888|3|43|56861.05|0.10|0.08|N|O|1998-07-10|1998-06-26|1998-07-27|COLLECT COD|TRUCK|y. slyly even requests | +86859|863928|26446|4|34|64323.92|0.01|0.00|N|O|1998-06-07|1998-06-14|1998-06-08|DELIVER IN PERSON|SHIP|xcuses. furiously ironic accounts | +86859|25529|13030|5|46|66907.92|0.05|0.04|N|O|1998-07-14|1998-07-25|1998-07-24|TAKE BACK RETURN|FOB|eans are slyly about the blithely | +86859|63978|1482|6|10|19419.70|0.03|0.07|N|O|1998-06-10|1998-06-21|1998-07-06|TAKE BACK RETURN|MAIL|egular acco| +86860|816375|16376|1|15|19369.95|0.09|0.05|A|F|1993-03-17|1993-04-20|1993-04-08|DELIVER IN PERSON|TRUCK|ptotes daz| +86861|515931|40952|1|36|70088.76|0.10|0.05|N|O|1998-03-06|1998-03-21|1998-03-12|TAKE BACK RETURN|REG AIR| warhorses| +86861|237945|25458|2|38|71551.34|0.04|0.03|N|O|1998-05-17|1998-04-13|1998-06-16|TAKE BACK RETURN|MAIL|to beans al| +86862|406951|31968|1|26|48306.18|0.04|0.07|N|O|1997-05-27|1997-05-27|1997-06-16|NONE|AIR|final packages after the blithely regular| +86862|615701|15702|2|7|11316.69|0.06|0.06|N|O|1997-05-26|1997-05-28|1997-06-22|COLLECT COD|SHIP|eposits caj| +86862|76808|1811|3|2|3569.60|0.06|0.07|N|O|1997-04-20|1997-04-18|1997-05-05|COLLECT COD|RAIL|. foxes haggle| +86863|411101|48626|1|36|36434.88|0.10|0.07|N|O|1997-04-17|1997-02-26|1997-05-13|TAKE BACK RETURN|RAIL|doggedly. accounts sleep | +86863|359655|9656|2|28|48009.92|0.07|0.06|N|O|1997-04-30|1997-03-29|1997-05-03|DELIVER IN PERSON|RAIL|tect slyly acro| +86863|711293|36322|3|4|5217.04|0.10|0.05|N|O|1997-03-13|1997-03-04|1997-03-18|TAKE BACK RETURN|TRUCK|riously-- slyly u| +86863|698777|23804|4|49|87011.26|0.09|0.04|N|O|1997-04-17|1997-03-23|1997-04-24|TAKE BACK RETURN|AIR|foxes. carefully exp| +86863|337132|37133|5|9|10522.08|0.02|0.08|N|O|1997-04-04|1997-03-02|1997-05-02|NONE|SHIP|lar deposits use| +86863|164729|2239|6|10|17937.20|0.04|0.03|N|O|1997-02-20|1997-04-04|1997-02-24|TAKE BACK RETURN|MAIL|carefully along| +86888|86302|48804|1|44|56685.20|0.04|0.04|N|O|1997-10-13|1997-09-22|1997-11-01|NONE|TRUCK|he carefully silen| +86888|470744|33254|2|44|75447.68|0.02|0.02|N|O|1997-08-22|1997-09-22|1997-08-24|NONE|TRUCK|ing accounts. blithely regular platele| +86889|199489|11993|1|48|76247.04|0.00|0.00|R|F|1994-10-16|1994-09-02|1994-10-30|TAKE BACK RETURN|TRUCK|y ironic realms cajole c| +86889|806049|18566|2|12|11460.00|0.10|0.05|R|F|1994-08-07|1994-08-25|1994-08-10|COLLECT COD|RAIL|f the even, final| +86889|259132|34143|3|45|49100.40|0.01|0.03|R|F|1994-09-24|1994-08-17|1994-09-29|COLLECT COD|FOB|the pinto beans eat quickly blithely even a| +86889|227984|27985|4|26|49711.22|0.06|0.00|A|F|1994-10-16|1994-08-31|1994-10-29|DELIVER IN PERSON|AIR|slyly according to | +86889|714278|26793|5|16|20675.84|0.01|0.03|R|F|1994-09-02|1994-08-09|1994-09-15|COLLECT COD|FOB|ular theodolites. ca| +86890|217188|29693|1|45|49732.65|0.09|0.07|N|O|1996-06-15|1996-07-01|1996-06-25|DELIVER IN PERSON|SHIP|quests about the blithely final dep| +86891|581332|6355|1|15|21199.65|0.06|0.08|R|F|1993-05-04|1993-04-17|1993-05-07|COLLECT COD|FOB| furiously along the requests. furious| +86891|440253|40254|2|13|15511.99|0.10|0.01|A|F|1993-05-09|1993-05-21|1993-06-06|COLLECT COD|AIR|furiously silent pi| +86891|318624|18625|3|42|68989.62|0.08|0.02|R|F|1993-06-02|1993-05-05|1993-06-13|DELIVER IN PERSON|MAIL|ntegrate across the fina| +86891|100471|25476|4|1|1471.47|0.00|0.03|R|F|1993-04-10|1993-05-17|1993-04-26|COLLECT COD|FOB|ake. permanently express requests sle| +86891|603399|40936|5|14|18233.04|0.03|0.07|R|F|1993-06-07|1993-04-21|1993-07-04|TAKE BACK RETURN|TRUCK|l dolphins. ins| +86891|322516|10035|6|13|20000.50|0.06|0.03|A|F|1993-06-12|1993-04-05|1993-07-06|DELIVER IN PERSON|SHIP|xes. furiously ev| +86891|516458|41479|7|23|33911.89|0.00|0.00|R|F|1993-03-06|1993-05-28|1993-03-29|TAKE BACK RETURN|SHIP|nusual requests. furiously silent requ| +86892|104117|41624|1|29|32512.19|0.10|0.03|N|O|1998-05-25|1998-06-19|1998-05-26|NONE|RAIL|ole fluffily about | +86892|892393|17428|2|11|15238.85|0.04|0.02|N|O|1998-06-10|1998-06-01|1998-06-11|NONE|REG AIR|ld requests. slyly ex| +86893|619988|7525|1|50|95397.50|0.00|0.07|N|O|1996-02-24|1996-01-07|1996-03-21|DELIVER IN PERSON|AIR|s along the bl| +86893|123827|11334|2|49|90690.18|0.07|0.01|N|O|1995-11-10|1995-12-23|1995-11-27|COLLECT COD|SHIP|ronic sauternes use carefully | +86893|156339|18843|3|2|2790.66|0.03|0.03|N|O|1995-12-29|1995-12-06|1996-01-11|DELIVER IN PERSON|AIR|ual theodolites serve abou| +86893|579611|4634|4|14|23668.26|0.07|0.00|N|O|1996-01-25|1996-01-08|1996-02-20|NONE|RAIL|to the final,| +86893|520496|33007|5|36|54592.92|0.01|0.08|N|O|1996-01-20|1995-12-30|1996-02-14|COLLECT COD|AIR|gular pinto beans integrate quick| +86893|961549|49107|6|43|69251.50|0.02|0.08|N|O|1995-11-04|1995-11-29|1995-11-17|TAKE BACK RETURN|TRUCK|ickly. furiously ironic requests aff| +86894|854070|41622|1|19|19456.57|0.02|0.03|N|O|1997-04-25|1997-07-03|1997-05-05|TAKE BACK RETURN|SHIP|nto beans haggle stealthily carefully spe| +86894|342615|30134|2|23|38124.80|0.02|0.05|N|O|1997-07-11|1997-06-04|1997-07-27|TAKE BACK RETURN|TRUCK|riously special pinto be| +86894|318873|43886|3|36|68106.96|0.00|0.00|N|O|1997-05-31|1997-07-19|1997-06-07|DELIVER IN PERSON|FOB|counts snooze. idly regular | +86894|296665|21676|4|38|63142.70|0.10|0.08|N|O|1997-06-18|1997-07-03|1997-06-29|NONE|TRUCK|cies may cajol| +86894|35428|47929|5|4|5453.68|0.08|0.00|N|O|1997-08-18|1997-07-11|1997-08-26|NONE|FOB|lyly even dolphins. even| +86895|118896|31399|1|21|40212.69|0.08|0.04|R|F|1994-02-26|1994-01-26|1994-03-01|NONE|MAIL|y beyond the carefully i| +86895|268694|18695|2|39|64844.52|0.09|0.03|R|F|1994-03-26|1994-02-06|1994-04-22|NONE|FOB|lar platelets about the blithely| +86920|421452|21453|1|49|67298.07|0.10|0.01|N|O|1996-08-11|1996-07-17|1996-08-31|NONE|TRUCK| serve carefully. instruction| +86920|334764|9777|2|14|25182.50|0.06|0.03|N|O|1996-08-27|1996-07-07|1996-09-26|NONE|MAIL|ely ironic accounts sleep slyl| +86921|372794|10316|1|27|50403.06|0.06|0.01|N|O|1997-02-23|1997-02-19|1997-03-03|NONE|MAIL| theodolite| +86921|543525|6036|2|3|4705.50|0.01|0.08|N|O|1996-12-11|1997-01-26|1996-12-26|NONE|FOB| ironic requests| +86922|779215|4246|1|38|49178.84|0.06|0.06|A|F|1993-03-16|1993-02-14|1993-03-25|TAKE BACK RETURN|REG AIR| special packages. fluffily | +86922|256488|18994|2|38|54889.86|0.08|0.07|R|F|1992-12-18|1992-12-23|1993-01-10|COLLECT COD|SHIP| packages. regular, regular ideas sle| +86922|781547|19093|3|17|27684.67|0.08|0.00|A|F|1992-11-23|1993-01-08|1992-11-30|DELIVER IN PERSON|MAIL|nding, regular accounts. ac| +86923|480988|6007|1|39|76789.44|0.08|0.05|R|F|1992-06-16|1992-06-05|1992-06-28|NONE|SHIP|s above the| +86923|955898|30937|2|8|15630.80|0.07|0.07|A|F|1992-06-22|1992-06-06|1992-07-02|DELIVER IN PERSON|REG AIR|refully sly | +86923|773013|10559|3|47|51041.06|0.05|0.02|A|F|1992-04-30|1992-05-26|1992-05-09|COLLECT COD|RAIL|packages are theodol| +86923|14235|26736|4|21|24133.83|0.09|0.05|R|F|1992-05-26|1992-06-02|1992-06-22|TAKE BACK RETURN|REG AIR|ding to the final d| +86923|233052|8061|5|38|37431.52|0.01|0.07|A|F|1992-04-05|1992-05-26|1992-04-18|NONE|SHIP| unusual accounts. fu| +86923|889023|26575|6|7|7083.86|0.03|0.06|A|F|1992-05-03|1992-05-15|1992-05-23|TAKE BACK RETURN|AIR|lar dependencies cajole. q| +86924|719829|19830|1|37|68405.23|0.10|0.00|N|O|1998-04-25|1998-03-23|1998-05-02|COLLECT COD|SHIP|ts! even req| +86924|159467|34474|2|21|32055.66|0.04|0.06|N|O|1998-01-08|1998-04-03|1998-01-28|COLLECT COD|FOB|thily warhorses. slyly regular orbits nag.| +86925|681307|18847|1|11|14170.97|0.03|0.04|N|O|1997-11-11|1997-11-26|1997-11-15|COLLECT COD|REG AIR|blithely car| +86925|715252|15253|2|44|55757.68|0.00|0.03|N|O|1998-01-13|1997-12-23|1998-02-03|TAKE BACK RETURN|RAIL|riously final deposit| +86925|230038|30039|3|34|32912.68|0.00|0.02|N|O|1998-02-02|1997-12-15|1998-02-27|NONE|TRUCK|yly express deposits haggle idly. carefully| +86925|235736|48241|4|17|28419.24|0.10|0.07|N|O|1997-12-12|1997-12-12|1997-12-19|TAKE BACK RETURN|TRUCK|sits? final requests about t| +86925|4230|41731|5|33|37429.59|0.06|0.05|N|O|1998-02-04|1997-12-23|1998-02-22|COLLECT COD|RAIL|al foxes. blithe| +86925|90286|2788|6|34|43393.52|0.06|0.03|N|O|1997-12-25|1998-01-04|1998-01-09|DELIVER IN PERSON|AIR|usly even accounts. slyly regula| +86925|422492|35001|7|34|48091.98|0.04|0.02|N|O|1997-12-17|1997-11-28|1998-01-07|DELIVER IN PERSON|FOB|l, ironic instructions cajole against| +86926|807392|44941|1|27|35082.45|0.10|0.00|R|F|1994-10-02|1994-09-05|1994-10-27|COLLECT COD|FOB|the bold gifts. special, regular t| +86926|826468|38985|2|17|23705.14|0.06|0.00|R|F|1994-10-01|1994-08-31|1994-10-28|TAKE BACK RETURN|RAIL| regularly silent | +86927|426469|26470|1|26|36281.44|0.02|0.04|N|O|1998-08-12|1998-08-24|1998-08-24|DELIVER IN PERSON|SHIP| fluffily pen| +86927|659236|46776|2|50|59760.00|0.07|0.06|N|O|1998-05-28|1998-08-05|1998-06-25|COLLECT COD|FOB|ithely according to the s| +86927|775950|13496|3|30|60777.60|0.00|0.07|N|O|1998-06-26|1998-06-30|1998-07-12|TAKE BACK RETURN|TRUCK|ngly bold pinto beans. fluffily even dep| +86927|384803|9818|4|41|77399.39|0.07|0.08|N|O|1998-09-18|1998-08-16|1998-10-03|DELIVER IN PERSON|REG AIR|ss attainments subla| +86927|380501|30502|5|40|63259.60|0.02|0.04|N|O|1998-06-15|1998-06-26|1998-07-03|DELIVER IN PERSON|RAIL|tes are at the slyly pending | +86927|73075|23076|6|28|29345.96|0.06|0.00|N|O|1998-07-22|1998-06-25|1998-07-23|NONE|MAIL|cording to the careful| +86927|156847|19351|7|50|95192.00|0.00|0.07|N|O|1998-07-17|1998-08-15|1998-07-22|DELIVER IN PERSON|RAIL|, regular ideas wake regu| +86952|120959|20960|1|18|35639.10|0.02|0.06|R|F|1993-01-14|1993-01-08|1993-02-05|DELIVER IN PERSON|REG AIR|ously silent frets acco| +86952|943275|5794|2|33|43501.59|0.10|0.05|A|F|1993-02-10|1992-12-06|1993-02-18|DELIVER IN PERSON|FOB|have to wake busily furiously ironic foxes| +86952|607953|32978|3|33|61410.36|0.02|0.00|R|F|1992-12-22|1992-12-11|1992-12-26|COLLECT COD|REG AIR|lar packages above the final deposits han| +86953|699743|37283|1|2|3485.42|0.08|0.05|A|F|1994-06-08|1994-04-04|1994-06-14|NONE|MAIL|e ironically iron| +86954|451616|1617|1|32|50162.88|0.04|0.06|A|F|1993-05-23|1993-07-09|1993-05-26|DELIVER IN PERSON|SHIP|eodolites-- slyly ironic ideas agains| +86955|456817|31836|1|19|33702.01|0.04|0.01|N|O|1996-08-26|1996-08-28|1996-09-22|TAKE BACK RETURN|MAIL|en ideas alongside of the courts pro| +86956|18993|31494|1|7|13383.93|0.01|0.04|A|F|1994-02-21|1994-01-24|1994-03-17|TAKE BACK RETURN|RAIL|ns among the quickly bold packa| +86956|202439|27448|2|45|60363.90|0.07|0.08|R|F|1994-02-23|1993-12-18|1994-03-23|TAKE BACK RETURN|AIR|kages. quickly careful multipliers w| +86956|379078|41586|3|12|13884.72|0.01|0.06|R|F|1994-01-14|1993-12-25|1994-01-21|DELIVER IN PERSON|SHIP|ing theodolites are slyly| +86957|523929|11460|1|28|54681.20|0.04|0.02|N|O|1997-11-18|1997-11-16|1997-12-14|TAKE BACK RETURN|FOB|ely express deposits. regular, | +86957|661886|11887|2|21|38804.85|0.04|0.07|N|O|1998-01-19|1997-12-13|1998-02-15|NONE|FOB| final accounts boost slyly. carefull| +86957|315324|27831|3|41|54911.71|0.04|0.03|N|O|1998-01-25|1997-12-20|1998-02-10|COLLECT COD|TRUCK|lyly. special instructions across the r| +86957|650245|246|4|9|10756.89|0.02|0.04|N|O|1997-11-10|1997-11-08|1997-12-02|COLLECT COD|MAIL|cajole after the furiously regul| +86957|665978|41005|5|48|93309.12|0.07|0.02|N|O|1997-10-08|1997-12-19|1997-11-01|TAKE BACK RETURN|SHIP| accounts use slyly pendin| +86957|78893|3896|6|14|26206.46|0.01|0.05|N|O|1997-10-10|1997-12-23|1997-10-11|DELIVER IN PERSON|FOB|symptotes. sly dolph| +86958|55923|43427|1|45|84551.40|0.05|0.01|N|O|1995-10-10|1995-10-20|1995-10-31|DELIVER IN PERSON|MAIL|foxes engage. unusual packages | +86958|890340|40341|2|28|37248.40|0.09|0.00|N|O|1995-12-27|1995-12-07|1996-01-09|NONE|REG AIR|lar instructions wake slyly quic| +86959|133651|21158|1|12|20215.80|0.06|0.06|N|O|1995-11-12|1995-11-09|1995-11-20|NONE|MAIL|onically p| +86959|267388|4904|2|3|4066.11|0.01|0.08|N|O|1995-11-17|1995-10-11|1995-11-30|TAKE BACK RETURN|FOB|er carefully. ironic,| +86959|990074|27632|3|18|20952.54|0.08|0.03|N|O|1995-08-18|1995-11-04|1995-08-19|TAKE BACK RETURN|RAIL|le blithely busy deposits. bold foxes after| +86959|168778|43785|4|29|53556.33|0.09|0.00|N|O|1995-12-06|1995-10-09|1995-12-21|COLLECT COD|MAIL|uriously bo| +86984|414273|14274|1|27|32055.75|0.02|0.07|N|O|1997-09-21|1997-07-08|1997-09-26|TAKE BACK RETURN|MAIL|poach according to the s| +86985|856330|18848|1|12|15435.48|0.02|0.03|R|F|1994-02-05|1994-04-26|1994-02-11|COLLECT COD|FOB|unts x-ray blithely. pending, unusual requ| +86985|327468|2481|2|9|13459.05|0.04|0.05|R|F|1994-01-28|1994-04-08|1994-02-03|NONE|RAIL|nic excuses. furi| +86985|739048|14077|3|34|36958.34|0.08|0.02|R|F|1994-04-01|1994-04-14|1994-04-13|COLLECT COD|TRUCK|the slyly even ideas. fur| +86985|169646|7156|4|36|61763.04|0.02|0.03|A|F|1994-02-02|1994-03-07|1994-02-11|TAKE BACK RETURN|RAIL|es. carefully pending| +86986|576239|38751|1|14|18412.94|0.06|0.00|N|O|1996-12-21|1996-12-02|1996-12-30|NONE|MAIL|atelets after the fluffily | +86986|834455|34456|2|38|52797.58|0.01|0.02|N|O|1996-10-10|1996-11-23|1996-10-14|NONE|RAIL|usual theodolites wake alon| +86986|681228|6255|3|12|14510.28|0.01|0.00|N|O|1996-10-11|1996-11-24|1996-10-14|COLLECT COD|RAIL|stealthy som| +86986|391242|16257|4|33|43996.59|0.06|0.03|N|O|1996-09-26|1996-10-17|1996-10-07|DELIVER IN PERSON|SHIP|y after the furiously even packages; instr| +86986|587804|316|5|37|69995.86|0.08|0.03|N|O|1996-10-13|1996-11-18|1996-10-23|TAKE BACK RETURN|FOB| silent package| +86987|258431|20937|1|43|59745.06|0.00|0.04|N|O|1998-07-08|1998-08-13|1998-08-04|DELIVER IN PERSON|TRUCK|ests engage caref| +86987|440063|40064|2|27|27082.08|0.07|0.08|N|O|1998-06-03|1998-08-14|1998-06-26|DELIVER IN PERSON|RAIL|y special pinto beans ab| +86987|128533|3538|3|32|49968.96|0.09|0.01|N|O|1998-07-01|1998-07-06|1998-07-31|TAKE BACK RETURN|FOB|cross the slyly| +86987|245721|20730|4|21|35000.91|0.02|0.07|N|O|1998-08-23|1998-08-04|1998-09-01|NONE|SHIP| across the bold foxes. pendin| +86988|588097|13120|1|2|2370.14|0.06|0.04|R|F|1995-01-01|1994-11-26|1995-01-12|NONE|RAIL|c instructions. slyly ir| +86988|130467|42970|2|35|52411.10|0.00|0.05|A|F|1994-10-03|1994-10-14|1994-10-13|COLLECT COD|RAIL|ic requests are regular asymptotes. | +86989|497189|22208|1|6|7116.96|0.02|0.04|A|F|1992-12-25|1992-12-04|1993-01-24|TAKE BACK RETURN|MAIL|ess asymptotes are da| +86989|254999|30010|2|22|42987.56|0.06|0.00|R|F|1992-12-06|1992-11-18|1992-12-10|TAKE BACK RETURN|RAIL|ing accounts nag deco| +86989|766202|16203|3|44|55799.48|0.04|0.02|R|F|1992-11-04|1992-11-16|1992-12-01|NONE|AIR|at carefully special deposi| +86989|543206|18227|4|23|28731.14|0.10|0.01|R|F|1993-01-07|1992-11-28|1993-02-05|TAKE BACK RETURN|TRUCK|es boost. furiously express | +86989|662351|24865|5|20|26266.40|0.08|0.00|A|F|1992-10-22|1992-10-31|1992-11-11|NONE|AIR|ound the thinly special pinto b| +86990|423319|10844|1|5|6211.45|0.06|0.03|N|O|1997-02-01|1997-04-10|1997-02-03|COLLECT COD|SHIP|onic excuses sleep fluffily even request| +86990|719538|19539|2|30|46725.00|0.07|0.00|N|O|1997-04-22|1997-04-26|1997-04-23|TAKE BACK RETURN|SHIP| forges! ironic pinto beans slee| +86990|267134|29640|3|38|41842.56|0.00|0.08|N|O|1997-05-12|1997-03-06|1997-05-20|TAKE BACK RETURN|AIR|ts. regular, unusual courts | +86990|705223|5224|4|21|25791.99|0.02|0.03|N|O|1997-05-26|1997-04-16|1997-06-15|TAKE BACK RETURN|FOB|s-- fluffily | +86990|676685|26686|5|11|18278.15|0.09|0.04|N|O|1997-02-01|1997-03-29|1997-02-10|TAKE BACK RETURN|TRUCK|ed, express | +86990|33763|46264|6|25|42419.00|0.06|0.07|N|O|1997-03-20|1997-03-17|1997-03-31|COLLECT COD|SHIP|ily even packages for the furiously | +86990|444666|7175|7|6|9663.84|0.04|0.05|N|O|1997-03-19|1997-03-11|1997-03-21|TAKE BACK RETURN|FOB|accounts. blithely unusual instructions aft| +86991|493704|6214|1|18|30558.24|0.10|0.02|A|F|1994-06-11|1994-05-19|1994-07-02|NONE|SHIP|ions haggle ironic deposits.| +86991|668310|18311|2|20|25565.60|0.09|0.03|R|F|1994-07-19|1994-06-02|1994-08-18|DELIVER IN PERSON|AIR|symptotes. silent, | +86991|270955|33461|3|18|34666.92|0.05|0.04|R|F|1994-08-02|1994-07-05|1994-08-16|NONE|AIR|kly ironic platelets. finally even | +87016|505949|18460|1|20|39098.40|0.04|0.08|A|F|1993-06-22|1993-08-10|1993-06-28|COLLECT COD|RAIL|. final accoun| +87016|469952|32462|2|20|38438.60|0.02|0.06|R|F|1993-07-10|1993-07-21|1993-07-14|NONE|TRUCK|theodolites a| +87016|477247|27248|3|43|52641.46|0.08|0.02|R|F|1993-07-10|1993-06-15|1993-07-17|COLLECT COD|RAIL|luffily across the silent d| +87016|81939|31940|4|24|46102.32|0.04|0.06|A|F|1993-05-22|1993-07-10|1993-05-30|DELIVER IN PERSON|REG AIR| packages dazzl| +87016|140497|15502|5|10|15374.90|0.00|0.01|A|F|1993-07-18|1993-06-19|1993-08-09|DELIVER IN PERSON|MAIL|s. instructi| +87016|319822|44835|6|49|90248.69|0.02|0.03|R|F|1993-08-25|1993-07-15|1993-08-26|DELIVER IN PERSON|AIR| packages. blithely regular foxes| +87017|346712|9219|1|41|72106.70|0.00|0.04|N|F|1995-05-27|1995-06-16|1995-06-21|TAKE BACK RETURN|REG AIR|usual packages. furiously fina| +87017|186462|11469|2|24|37163.04|0.06|0.06|N|F|1995-06-11|1995-05-13|1995-06-19|DELIVER IN PERSON|MAIL|ely regular requests x| +87017|855785|18303|3|23|40037.02|0.06|0.02|R|F|1995-04-08|1995-04-22|1995-04-29|TAKE BACK RETURN|SHIP|es. blithely ironic ex| +87018|75951|25952|1|43|82858.85|0.03|0.08|N|O|1998-01-19|1998-01-23|1998-02-14|DELIVER IN PERSON|SHIP|elets cajole blithely even | +87018|492355|42356|2|13|17515.29|0.09|0.02|N|O|1998-03-25|1998-02-18|1998-04-02|NONE|SHIP|erve quickly about the| +87018|1313|26314|3|12|14571.72|0.04|0.05|N|O|1998-01-24|1998-02-04|1998-02-04|NONE|AIR|s. regular ideas are quickly r| +87018|56650|31653|4|19|30526.35|0.02|0.08|N|O|1998-01-27|1998-01-16|1998-02-08|TAKE BACK RETURN|MAIL| excuses are fina| +87018|108359|45866|5|25|34183.75|0.03|0.00|N|O|1998-03-28|1998-03-01|1998-04-14|NONE|RAIL| instruction| +87018|188066|570|6|28|32313.68|0.00|0.01|N|O|1998-03-09|1998-02-06|1998-03-11|DELIVER IN PERSON|MAIL|y unusual a| +87018|816993|16994|7|22|42018.90|0.08|0.04|N|O|1998-03-21|1998-02-14|1998-04-12|NONE|RAIL|r foxes haggle fur| +87019|201303|1304|1|20|24085.80|0.03|0.07|N|O|1995-09-11|1995-10-04|1995-10-02|NONE|AIR|ular instructi| +87019|288951|26467|2|24|46558.56|0.06|0.01|N|O|1995-12-24|1995-11-07|1996-01-19|TAKE BACK RETURN|SHIP| nag carefully. ironic requests | +87019|395558|33080|3|40|66141.60|0.10|0.03|N|O|1995-10-05|1995-10-19|1995-10-22|DELIVER IN PERSON|AIR|ackages wake silently eve| +87019|130585|18092|4|30|48467.40|0.07|0.06|N|O|1995-11-12|1995-11-03|1995-12-02|DELIVER IN PERSON|MAIL|ing, ironic accounts cajole never after th| +87019|737157|12186|5|45|53735.40|0.07|0.05|N|O|1995-10-30|1995-10-28|1995-11-23|TAKE BACK RETURN|RAIL|quests engage | +87019|384600|9615|6|30|50537.70|0.08|0.02|N|O|1995-11-15|1995-10-04|1995-12-10|DELIVER IN PERSON|RAIL|sly ironic deposits. | +87019|962882|25402|7|25|48621.00|0.07|0.07|N|O|1995-12-05|1995-11-21|1995-12-21|TAKE BACK RETURN|AIR|al ideas caj| +87020|151748|1749|1|11|19797.14|0.04|0.06|N|O|1997-06-05|1997-06-02|1997-06-11|COLLECT COD|MAIL|furiously permanent accounts| +87020|424751|49768|2|40|67029.20|0.01|0.02|N|O|1997-07-27|1997-07-21|1997-08-23|TAKE BACK RETURN|MAIL|iously even dependencies. blithely i| +87020|781350|6381|3|49|70134.68|0.02|0.08|N|O|1997-06-05|1997-07-07|1997-06-16|NONE|FOB|, silent req| +87020|146041|21046|4|25|27176.00|0.04|0.08|N|O|1997-05-28|1997-06-11|1997-05-29|COLLECT COD|SHIP|ording to the carefull| +87021|390909|15924|1|48|95994.72|0.06|0.08|R|F|1994-12-22|1995-03-12|1994-12-27|COLLECT COD|RAIL|accounts about the final, bold f| +87021|2203|2204|2|29|32050.80|0.03|0.07|R|F|1995-04-03|1995-01-14|1995-04-10|NONE|FOB| to wake slyly| +87021|12544|45|3|12|17478.48|0.08|0.01|R|F|1995-02-09|1995-02-28|1995-02-21|TAKE BACK RETURN|AIR|ily at the carefully special instruct| +87021|823065|10614|4|24|23712.48|0.08|0.01|R|F|1994-12-20|1995-02-06|1994-12-29|COLLECT COD|RAIL|ular, brave instructions use bli| +87022|973575|11133|1|17|28025.01|0.08|0.01|A|F|1994-08-04|1994-07-27|1994-08-07|TAKE BACK RETURN|RAIL| quickly! regular requests hinder-- bu| +87022|869448|19449|2|47|66617.80|0.00|0.04|R|F|1994-07-06|1994-07-11|1994-07-18|TAKE BACK RETURN|MAIL|fluffily according to the fin| +87022|807661|32694|3|17|26666.54|0.04|0.06|A|F|1994-07-28|1994-07-20|1994-08-01|TAKE BACK RETURN|AIR|lly ironic ideas. slyly unusual deposits a| +87022|355447|30462|4|33|49580.19|0.10|0.00|A|F|1994-08-20|1994-07-17|1994-08-29|NONE|FOB|ays final pl| +87023|624489|49514|1|15|21201.75|0.05|0.05|N|O|1995-07-19|1995-07-25|1995-08-06|NONE|SHIP|fully even instructions boost| +87023|770828|20829|2|7|13291.53|0.02|0.01|N|O|1995-08-25|1995-06-15|1995-09-13|COLLECT COD|MAIL|he accounts boost blithely careful| +87023|299069|49070|3|31|33109.55|0.04|0.01|N|O|1995-06-29|1995-07-20|1995-07-15|TAKE BACK RETURN|FOB|nic decoys haggle pac| +87023|451323|1324|4|46|58617.80|0.00|0.03|N|O|1995-08-27|1995-07-17|1995-09-24|DELIVER IN PERSON|RAIL|sits? regular packa| +87023|378672|28673|5|35|61273.10|0.10|0.06|N|O|1995-08-03|1995-07-04|1995-08-15|TAKE BACK RETURN|REG AIR|fully. unusual, | +87048|978096|15654|1|20|23481.00|0.01|0.01|R|F|1994-03-09|1994-04-19|1994-03-23|NONE|SHIP|latelets. blithely bold accounts| +87048|845266|45267|2|43|52082.46|0.07|0.07|R|F|1994-04-01|1994-03-18|1994-04-29|NONE|FOB| pending pains. special, permanent| +87048|379023|29024|3|25|27550.25|0.09|0.00|A|F|1994-03-12|1994-03-15|1994-03-14|TAKE BACK RETURN|MAIL|leep blithely | +87048|229165|4174|4|12|13129.80|0.08|0.06|A|F|1994-05-31|1994-03-20|1994-06-13|COLLECT COD|AIR|ts use against the car| +87048|575232|12766|5|38|49673.98|0.04|0.06|A|F|1994-02-24|1994-04-28|1994-03-22|COLLECT COD|FOB|es. quickly final deposits ag| +87048|920263|45300|6|16|20531.52|0.02|0.02|R|F|1994-05-13|1994-03-07|1994-05-27|DELIVER IN PERSON|SHIP|oxes. even, bold accounts us| +87049|281020|18536|1|42|42042.42|0.10|0.00|N|O|1997-07-17|1997-06-19|1997-07-30|DELIVER IN PERSON|SHIP|osits wake pending i| +87049|95694|8196|2|35|59139.15|0.04|0.01|N|O|1997-06-03|1997-07-26|1997-06-11|DELIVER IN PERSON|AIR| haggle quickl| +87049|318414|5933|3|46|65890.40|0.10|0.01|N|O|1997-07-07|1997-06-21|1997-08-03|DELIVER IN PERSON|REG AIR|unusual excuses| +87050|652872|2873|1|43|78468.12|0.10|0.03|A|F|1993-01-01|1992-11-30|1993-01-19|NONE|RAIL|pinto beans af| +87050|809400|34433|2|4|5237.44|0.00|0.00|R|F|1992-12-02|1992-10-30|1992-12-12|COLLECT COD|AIR|inal asymptotes. final| +87050|584557|9580|3|29|47604.37|0.04|0.00|A|F|1992-10-10|1992-11-01|1992-10-21|TAKE BACK RETURN|AIR|ackages dazzle along the| +87050|641640|4153|4|41|64846.01|0.07|0.06|A|F|1992-11-20|1992-11-21|1992-11-23|COLLECT COD|MAIL|al, regular f| +87051|768171|5717|1|16|19826.24|0.05|0.08|R|F|1992-11-21|1992-11-14|1992-11-28|DELIVER IN PERSON|AIR|ate alongside of the regular| +87051|639067|26604|2|21|21126.63|0.03|0.03|A|F|1992-12-13|1992-11-29|1993-01-11|COLLECT COD|TRUCK|ld, even r| +87051|793952|43953|3|47|96158.24|0.01|0.00|R|F|1992-11-15|1992-10-27|1992-11-23|NONE|RAIL| furiously spe| +87051|948365|48366|4|50|70666.00|0.08|0.00|A|F|1992-12-05|1992-11-06|1992-12-31|COLLECT COD|TRUCK|ly ironic deposits. furiously unu| +87051|158911|8912|5|6|11819.46|0.08|0.00|A|F|1992-10-26|1992-11-10|1992-11-18|DELIVER IN PERSON|TRUCK| foxes are furiously regular| +87052|799531|24562|1|35|57067.50|0.10|0.08|R|F|1994-11-07|1994-10-16|1994-12-07|COLLECT COD|RAIL|ncies. furiously unusual ac| +87053|532785|45296|1|44|79981.44|0.05|0.07|R|F|1993-11-14|1993-11-16|1993-11-25|DELIVER IN PERSON|TRUCK|pendencies integrate according to t| +87053|517277|42298|2|25|32356.25|0.02|0.05|A|F|1993-12-16|1993-10-24|1993-12-20|NONE|RAIL|l foxes abo| +87053|872916|10468|3|26|49110.62|0.05|0.01|A|F|1994-01-06|1993-11-14|1994-01-19|NONE|SHIP|al requests sublate carefully furiousl| +87053|86931|24435|4|25|47948.25|0.06|0.08|R|F|1993-12-19|1993-10-25|1994-01-07|NONE|MAIL|r packages sleep blith| +87053|46375|21376|5|22|29070.14|0.06|0.01|R|F|1993-10-15|1993-11-03|1993-10-22|COLLECT COD|TRUCK|posits are | +87053|423482|35991|6|35|49191.10|0.10|0.04|A|F|1993-11-21|1993-10-28|1993-11-29|DELIVER IN PERSON|RAIL| ironic accounts: | +87054|719053|31568|1|18|19296.36|0.05|0.07|N|O|1996-01-19|1996-01-08|1996-02-09|DELIVER IN PERSON|REG AIR|otes. slyly| +87054|117379|42384|2|8|11170.96|0.08|0.05|N|O|1995-12-21|1996-02-08|1995-12-29|COLLECT COD|AIR| after the furiously bold accoun| +87055|168553|18554|1|30|48646.50|0.07|0.01|N|O|1998-03-24|1998-04-17|1998-04-10|TAKE BACK RETURN|FOB|y above the packages| +87055|863986|1538|2|14|27299.16|0.02|0.06|N|O|1998-05-10|1998-05-11|1998-05-31|TAKE BACK RETURN|FOB|iously unusual requests. packages ar| +87055|999756|24795|3|8|14845.68|0.01|0.00|N|O|1998-06-29|1998-06-01|1998-07-14|NONE|SHIP|uriously final packag| +87055|887846|12881|4|27|49512.60|0.07|0.07|N|O|1998-04-20|1998-06-09|1998-05-20|DELIVER IN PERSON|RAIL|carefully even packages. expre| +87055|20741|45742|5|27|44866.98|0.02|0.04|N|O|1998-07-07|1998-05-09|1998-07-27|DELIVER IN PERSON|REG AIR|ts. quickly final excuses cajole a| +87080|839818|2335|1|45|79099.65|0.03|0.00|N|O|1995-12-26|1996-01-29|1996-01-12|COLLECT COD|FOB|xcuses sleep furiously pending deco| +87081|691539|29079|1|27|41323.50|0.08|0.02|R|F|1994-03-04|1994-04-25|1994-03-22|COLLECT COD|AIR|ly bold requests haggle blithel| +87081|694950|44951|2|10|19449.20|0.01|0.06|R|F|1994-04-03|1994-03-12|1994-04-11|COLLECT COD|FOB|press reques| +87081|17971|5472|3|17|32112.49|0.10|0.00|R|F|1994-02-04|1994-04-16|1994-02-16|NONE|RAIL|y express packages cajo| +87081|27331|27332|4|40|50333.20|0.04|0.07|R|F|1994-03-10|1994-04-27|1994-03-19|NONE|REG AIR|past the blithely pendi| +87082|598534|23557|1|27|44077.77|0.03|0.06|N|O|1996-12-07|1996-12-23|1996-12-11|NONE|FOB|wake after the car| +87082|551037|26060|2|47|51136.47|0.02|0.05|N|O|1997-02-01|1997-01-08|1997-02-26|COLLECT COD|REG AIR|ully bold instructi| +87082|266843|16844|3|42|76012.86|0.01|0.04|N|O|1996-12-17|1996-12-21|1997-01-12|DELIVER IN PERSON|MAIL|eodolites haggle around th| +87082|821154|33671|4|11|11826.21|0.09|0.02|N|O|1997-02-14|1997-02-01|1997-02-19|NONE|AIR| slyly unusual asymptotes alon| +87082|125381|12888|5|32|45004.16|0.09|0.05|N|O|1997-02-28|1997-01-09|1997-03-29|DELIVER IN PERSON|MAIL|gular accounts. theodoli| +87082|265631|15632|6|14|22352.68|0.03|0.01|N|O|1997-01-18|1997-01-07|1997-02-13|DELIVER IN PERSON|MAIL|ic ideas wake despite the express sheave| +87083|500895|25916|1|46|87210.02|0.02|0.02|N|O|1997-07-18|1997-07-03|1997-07-27|DELIVER IN PERSON|FOB| slow dependencies cajole qui| +87083|531204|43715|2|44|54347.92|0.09|0.00|N|O|1997-07-12|1997-06-11|1997-07-27|COLLECT COD|FOB|equests. even, slow requests sleep. regula| +87083|937073|49592|3|17|18870.51|0.10|0.03|N|O|1997-05-12|1997-06-24|1997-05-19|NONE|REG AIR|ending accounts. idly| +87083|369926|7448|4|28|55885.48|0.00|0.05|N|O|1997-05-31|1997-05-27|1997-06-13|NONE|RAIL|ular courts! foxes grow slyly acr| +87084|160710|10711|1|47|83223.37|0.00|0.04|R|F|1995-03-08|1995-05-14|1995-04-03|COLLECT COD|SHIP|the furiously regular ac| +87084|52815|27818|2|18|31820.58|0.07|0.00|N|F|1995-06-11|1995-04-29|1995-06-26|TAKE BACK RETURN|FOB|tructions. carefully final courts haggle| +87084|647956|47957|3|13|24750.96|0.03|0.04|N|F|1995-06-12|1995-04-24|1995-07-01|COLLECT COD|RAIL|s print carefully after the ironic, | +87084|188205|38206|4|13|16811.60|0.05|0.03|A|F|1995-04-17|1995-04-19|1995-05-13|DELIVER IN PERSON|REG AIR|lyly even somas. | +87084|145745|33252|5|1|1790.74|0.01|0.02|R|F|1995-03-15|1995-05-09|1995-03-31|DELIVER IN PERSON|SHIP|ts haggle requests. bli| +87085|659612|47152|1|7|11001.06|0.02|0.08|N|O|1996-07-31|1996-09-01|1996-08-23|NONE|SHIP|in, brave waters. fluffily expre| +87085|87612|12615|2|19|30392.59|0.10|0.01|N|O|1996-07-15|1996-08-13|1996-07-16|COLLECT COD|SHIP|e carefully. furiously pending accounts| +87085|480967|5986|3|39|75969.66|0.00|0.02|N|O|1996-07-26|1996-08-14|1996-07-28|TAKE BACK RETURN|MAIL|ress, express accounts. blithely ex| +87085|604244|4245|4|34|39039.14|0.10|0.06|N|O|1996-09-10|1996-08-07|1996-09-30|NONE|TRUCK|heodolites affix carefully sp| +87086|591512|29046|1|11|17638.39|0.00|0.04|A|F|1992-03-31|1992-03-10|1992-04-27|COLLECT COD|FOB|cuses are. deposits use among the acco| +87086|526383|38894|2|41|57783.76|0.01|0.06|R|F|1992-04-22|1992-04-16|1992-05-15|TAKE BACK RETURN|RAIL|r accounts. carefully final r| +87086|911133|23652|3|36|41187.24|0.03|0.04|R|F|1992-05-28|1992-03-17|1992-06-16|DELIVER IN PERSON|FOB|during the| +87087|623248|23249|1|44|51533.24|0.06|0.08|R|F|1993-01-07|1992-11-18|1993-02-06|COLLECT COD|REG AIR|xpress deposits above the furiou| +87087|916778|16779|2|29|52047.17|0.01|0.03|A|F|1992-11-16|1992-11-20|1992-12-16|NONE|MAIL|s. pending dependencies are special, | +87087|287237|24753|3|44|53865.68|0.08|0.05|A|F|1992-10-14|1992-11-14|1992-11-06|NONE|FOB|rays after the furiously special | +87087|577066|14600|4|38|43435.52|0.08|0.00|R|F|1992-11-21|1992-12-07|1992-11-22|NONE|AIR| foxes cajo| +87087|740951|3466|5|22|43822.24|0.08|0.02|R|F|1992-12-01|1992-12-24|1992-12-10|DELIVER IN PERSON|REG AIR|. regular dolphins haggle of the slyly unus| +87087|151611|14115|6|17|28264.37|0.04|0.07|A|F|1992-10-19|1992-12-06|1992-11-01|COLLECT COD|REG AIR|ully blithely final accounts. | +87112|458266|20776|1|14|17139.36|0.09|0.07|N|O|1997-06-18|1997-06-11|1997-06-24|TAKE BACK RETURN|RAIL|ix slyly abou| +87112|67075|29577|2|46|47935.22|0.01|0.04|N|O|1997-05-15|1997-05-08|1997-05-27|TAKE BACK RETURN|SHIP|final pains bo| +87112|327588|15107|3|33|53313.81|0.09|0.07|N|O|1997-07-01|1997-05-15|1997-07-29|DELIVER IN PERSON|MAIL|furiously careful epit| +87112|754956|17472|4|43|86469.56|0.02|0.00|N|O|1997-06-10|1997-05-15|1997-06-29|TAKE BACK RETURN|MAIL| the regular foxes. s| +87112|541578|4089|5|25|40488.75|0.02|0.07|N|O|1997-07-28|1997-05-25|1997-08-10|TAKE BACK RETURN|RAIL|final excuses. regular, final acc| +87113|850174|37726|1|33|37096.29|0.02|0.08|N|O|1996-12-21|1996-10-24|1997-01-17|COLLECT COD|SHIP|gular requests. careful| +87113|864494|2046|2|49|71464.05|0.07|0.05|N|O|1996-12-05|1996-10-28|1996-12-28|COLLECT COD|FOB|r dolphins cajole blithely. un| +87113|539655|14676|3|48|81342.24|0.07|0.04|N|O|1997-01-08|1996-11-06|1997-01-17|COLLECT COD|RAIL|usly final requests| +87113|976134|1173|4|28|33882.52|0.04|0.03|N|O|1996-10-30|1996-11-16|1996-11-28|TAKE BACK RETURN|AIR|slowly special| +87113|880161|30162|5|23|26245.76|0.02|0.08|N|O|1996-12-26|1996-12-02|1996-12-31|NONE|AIR|ests. blithely bold requests use furiou| +87113|849248|11765|6|44|52676.80|0.06|0.07|N|O|1996-11-11|1996-12-08|1996-12-09|TAKE BACK RETURN|RAIL| to the slyly pe| +87114|535163|22694|1|17|20368.38|0.10|0.07|R|F|1994-07-17|1994-06-27|1994-07-21|TAKE BACK RETURN|RAIL|ies. express, final deposits sl| +87115|148257|35764|1|12|15663.00|0.08|0.07|R|F|1995-02-25|1995-02-04|1995-02-26|DELIVER IN PERSON|TRUCK|requests. quickl| +87115|744794|32337|2|49|90099.24|0.06|0.04|A|F|1995-02-09|1995-02-15|1995-02-18|COLLECT COD|MAIL|xpress packages. fluffily unusual dolphins | +87115|750282|25313|3|32|42632.00|0.02|0.02|A|F|1995-01-06|1995-03-25|1995-01-18|DELIVER IN PERSON|AIR|usly bold instructions. blithely final | +87116|842847|42848|1|19|34006.20|0.05|0.05|A|F|1995-05-05|1995-07-08|1995-05-12|DELIVER IN PERSON|MAIL|es. furiously final sheaves wake b| +87117|830743|5776|1|29|48537.30|0.04|0.04|N|O|1997-01-02|1996-12-08|1997-01-15|COLLECT COD|FOB|uriously pending requests h| +87117|285296|47802|2|45|57657.60|0.00|0.02|N|O|1996-12-04|1996-12-24|1996-12-07|NONE|AIR|ctions wake fluffily furiously r| +87118|14133|14134|1|21|21989.73|0.00|0.02|N|O|1998-07-26|1998-08-29|1998-08-22|COLLECT COD|AIR|e around the regul| +87118|522818|47839|2|47|86517.13|0.05|0.06|N|O|1998-10-07|1998-08-01|1998-10-08|COLLECT COD|AIR|es use bli| +87118|988482|38483|3|31|48683.64|0.05|0.07|N|O|1998-09-15|1998-08-31|1998-09-28|NONE|SHIP|y furiously final ideas| +87118|414326|39343|4|41|50852.30|0.08|0.03|N|O|1998-09-17|1998-07-25|1998-10-10|TAKE BACK RETURN|RAIL|. slyly final foxes c| +87118|575701|724|5|27|47970.36|0.07|0.08|N|O|1998-09-08|1998-08-30|1998-09-25|DELIVER IN PERSON|TRUCK|arefully regular packages.| +87118|797214|9730|6|20|26223.60|0.07|0.00|N|O|1998-09-18|1998-07-28|1998-10-07|DELIVER IN PERSON|RAIL|even pinto beans ar| +87118|761117|11118|7|3|3534.24|0.10|0.07|N|O|1998-06-17|1998-08-08|1998-06-23|TAKE BACK RETURN|MAIL|ans? blithely even p| +87119|80412|30413|1|31|43164.71|0.02|0.00|N|O|1997-07-21|1997-06-21|1997-08-16|DELIVER IN PERSON|TRUCK|posits ove| +87119|483420|33421|2|12|16840.80|0.07|0.01|N|O|1997-05-23|1997-08-02|1997-06-15|TAKE BACK RETURN|FOB|ironic ideas agai| +87119|830481|42998|3|50|70572.00|0.07|0.02|N|O|1997-05-12|1997-06-15|1997-05-18|DELIVER IN PERSON|RAIL|fully regular orbits integrate quickl| +87119|890703|3221|4|45|76214.70|0.08|0.07|N|O|1997-06-07|1997-07-11|1997-06-25|COLLECT COD|REG AIR|al patterns are quickly sp| +87119|40330|27831|5|11|13973.63|0.09|0.00|N|O|1997-05-25|1997-06-17|1997-06-04|NONE|AIR|luffily express | +87119|810795|48344|6|38|64818.50|0.08|0.05|N|O|1997-07-25|1997-06-24|1997-08-14|DELIVER IN PERSON|TRUCK| ironic courts. dogged, pending request| +87119|20675|33176|7|39|62231.13|0.03|0.06|N|O|1997-07-01|1997-07-17|1997-07-27|NONE|AIR|arefully pending requests c| +87144|468999|44018|1|16|31487.52|0.00|0.00|N|O|1996-12-13|1996-11-26|1997-01-11|COLLECT COD|FOB|ges cajole slyly. fin| +87144|460817|10818|2|45|80000.55|0.09|0.05|N|O|1997-01-16|1996-11-05|1997-02-01|NONE|RAIL| final accounts sle| +87144|944638|19675|3|14|23556.26|0.03|0.08|N|O|1996-12-25|1996-12-06|1997-01-11|COLLECT COD|SHIP| warhorses. fluffily even theodolites run s| +87144|516784|16785|4|25|45019.00|0.08|0.04|N|O|1996-09-29|1996-11-20|1996-10-27|COLLECT COD|MAIL|luffy reque| +87144|584345|34346|5|32|45738.24|0.04|0.01|N|O|1996-11-28|1996-11-16|1996-12-08|COLLECT COD|SHIP|olites sleep furiously regular, thin| +87144|71634|21635|6|43|69042.09|0.01|0.08|N|O|1996-11-07|1996-12-19|1996-11-09|NONE|TRUCK| furiously slyly special requests. foxes | +87145|790717|40718|1|22|39768.96|0.01|0.01|R|F|1995-01-27|1995-02-16|1995-02-20|COLLECT COD|TRUCK|ut the platelets haggle carefully amo| +87145|578656|28657|2|16|27754.08|0.03|0.04|R|F|1995-04-16|1995-02-20|1995-04-30|TAKE BACK RETURN|RAIL|l, unusual theodolites| +87146|705324|42867|1|40|53171.60|0.02|0.03|N|O|1996-06-21|1996-07-01|1996-07-15|DELIVER IN PERSON|TRUCK|ly unusual foxes wa| +87146|369043|44058|2|35|38921.05|0.09|0.00|N|O|1996-05-30|1996-07-10|1996-06-10|DELIVER IN PERSON|MAIL|ans along the fluffi| +87147|766803|29319|1|2|3739.54|0.03|0.01|N|O|1997-06-07|1997-06-12|1997-06-25|NONE|FOB| nag slyly alongside of the theodol| +87147|642893|17918|2|15|27537.90|0.00|0.01|N|O|1997-07-20|1997-08-07|1997-07-28|TAKE BACK RETURN|TRUCK|ve. slyly | +87147|100278|37785|3|31|39626.37|0.07|0.00|N|O|1997-05-23|1997-07-07|1997-06-10|TAKE BACK RETURN|RAIL|ooze pendin| +87147|363791|1313|4|35|64917.30|0.10|0.01|N|O|1997-05-14|1997-07-20|1997-06-07|DELIVER IN PERSON|AIR|sly. carefully ironic hockey players nag a| +87147|228181|28182|5|24|26620.08|0.06|0.03|N|O|1997-08-30|1997-08-09|1997-09-20|NONE|SHIP| the furiously unusual foxes x-ra| +87148|885975|35976|1|13|25492.09|0.05|0.02|A|F|1994-04-28|1994-05-03|1994-05-24|DELIVER IN PERSON|SHIP| regular excuse| +87148|577535|15069|2|15|24187.65|0.10|0.03|A|F|1994-05-02|1994-04-25|1994-05-14|COLLECT COD|MAIL|out the slyly unusual de| +87148|630228|5253|3|17|19689.23|0.05|0.06|A|F|1994-03-22|1994-04-20|1994-03-29|DELIVER IN PERSON|TRUCK|eas sleep slyly deposits. braids cajole | +87149|507855|7856|1|10|18628.30|0.07|0.01|N|O|1997-01-07|1997-01-17|1997-01-26|NONE|RAIL|structions wak| +87149|515796|40817|2|29|52541.33|0.06|0.00|N|O|1996-12-30|1996-12-02|1997-01-17|TAKE BACK RETURN|RAIL|ges. sometimes fi| +87149|973040|35560|3|13|14469.00|0.07|0.01|N|O|1997-02-26|1996-12-09|1997-03-16|COLLECT COD|SHIP|pending requests. furiously | +87149|878593|28594|4|8|12572.40|0.06|0.05|N|O|1997-01-27|1996-12-16|1997-02-15|TAKE BACK RETURN|FOB|y ironic packag| +87149|512020|12021|5|3|3096.00|0.09|0.05|N|O|1996-11-05|1997-01-26|1996-11-29|COLLECT COD|FOB|quests caj| +87150|185220|22730|1|31|40461.82|0.01|0.08|N|O|1997-03-28|1997-01-20|1997-04-01|DELIVER IN PERSON|TRUCK|its. bold de| +87150|977286|39806|2|49|66798.76|0.02|0.05|N|O|1997-01-22|1997-03-08|1997-02-07|TAKE BACK RETURN|TRUCK|r pinto beans-- quickly pend| +87150|239828|14837|3|30|53034.30|0.09|0.04|N|O|1997-03-03|1997-03-13|1997-03-31|COLLECT COD|RAIL|uests wake thinly furio| +87150|772737|47768|4|21|38003.70|0.08|0.02|N|O|1997-01-02|1997-02-08|1997-01-24|NONE|SHIP|l deposits. final i| +87150|381008|43516|5|47|51182.53|0.00|0.06|N|O|1997-02-22|1997-03-11|1997-03-18|TAKE BACK RETURN|RAIL|hely special theodolites. iro| +87151|5144|5145|1|34|35670.76|0.07|0.07|N|O|1996-12-22|1997-03-15|1996-12-31|COLLECT COD|MAIL|e even requests sleep from the car| +87151|449747|49748|2|50|84836.00|0.07|0.08|N|O|1997-01-06|1997-03-14|1997-01-14|DELIVER IN PERSON|REG AIR|old deposits| +87151|883243|8278|3|50|61310.00|0.06|0.04|N|O|1997-03-24|1997-02-19|1997-04-21|COLLECT COD|SHIP|. carefully final asymptotes was blithe| +87151|653543|28570|4|42|62853.42|0.06|0.01|N|O|1997-03-11|1997-01-21|1997-04-07|DELIVER IN PERSON|TRUCK|. theodolites solve pendin| +87151|93921|31425|5|31|59362.52|0.09|0.03|N|O|1997-04-05|1997-03-11|1997-04-13|DELIVER IN PERSON|SHIP|ual ideas. quickly thin foxes according to | +87151|528231|3252|6|49|61701.29|0.03|0.05|N|O|1997-02-06|1997-02-11|1997-02-28|TAKE BACK RETURN|REG AIR|arefully regul| +87176|854832|17350|1|28|50030.12|0.01|0.01|N|O|1996-07-28|1996-07-04|1996-08-22|TAKE BACK RETURN|RAIL|t platelets grow quickly bold | +87176|150210|37720|2|16|20163.36|0.02|0.04|N|O|1996-07-21|1996-08-05|1996-08-05|COLLECT COD|SHIP|dolites. ironic packages promise. | +87176|568423|30935|3|38|56673.20|0.09|0.08|N|O|1996-09-01|1996-08-22|1996-09-23|NONE|RAIL|unusual accounts are fu| +87176|471461|46480|4|45|64459.80|0.08|0.03|N|O|1996-06-19|1996-08-17|1996-07-12|NONE|REG AIR| ironic dependencies. ironic ideas wit| +87176|840866|15899|5|1|1806.82|0.10|0.05|N|O|1996-07-17|1996-08-19|1996-08-12|TAKE BACK RETURN|AIR| final, even instructions | +87176|430375|42884|6|33|43076.55|0.02|0.00|N|O|1996-06-06|1996-07-17|1996-06-14|COLLECT COD|SHIP|usly pending ide| +87176|312613|12614|7|20|32512.00|0.03|0.00|N|O|1996-06-28|1996-07-06|1996-07-19|TAKE BACK RETURN|FOB|r packages. blithely unusual grouche| +87177|80858|18362|1|20|36777.00|0.07|0.00|R|F|1994-08-09|1994-07-11|1994-08-11|DELIVER IN PERSON|REG AIR|yly above the packages. regular | +87178|539451|14472|1|4|5961.72|0.06|0.05|A|F|1992-08-08|1992-08-06|1992-08-09|COLLECT COD|FOB|about the furiously even deposits. f| +87178|536281|48792|2|17|22393.42|0.05|0.08|R|F|1992-07-27|1992-09-05|1992-08-24|TAKE BACK RETURN|RAIL|thely along the c| +87179|392957|5465|1|44|90197.36|0.04|0.04|N|O|1996-10-05|1996-10-22|1996-10-18|NONE|RAIL|pecial theodolites cajole against the care| +87179|423803|23804|2|26|44896.28|0.10|0.08|N|O|1996-08-15|1996-09-19|1996-09-11|NONE|MAIL|egular pinto| +87179|856231|18749|3|8|9497.52|0.05|0.01|N|O|1996-09-26|1996-09-20|1996-10-16|COLLECT COD|MAIL| theodolites boost slyly around the ev| +87179|660114|22628|4|9|9666.72|0.06|0.01|N|O|1996-10-17|1996-09-23|1996-11-01|NONE|MAIL|re pending| +87179|534049|34050|5|2|2166.04|0.06|0.02|N|O|1996-09-17|1996-09-14|1996-09-20|NONE|REG AIR| quickly carefully unusual packages. ironi| +87179|744989|7504|6|31|63052.45|0.08|0.08|N|O|1996-09-21|1996-10-14|1996-09-26|DELIVER IN PERSON|SHIP| instructions above| +87180|581691|19225|1|8|14181.36|0.05|0.03|R|F|1993-06-13|1993-04-23|1993-06-27|NONE|REG AIR|xpress, special instructions. furiously | +87180|475996|25997|2|23|45355.31|0.02|0.02|R|F|1993-04-15|1993-05-21|1993-04-17|NONE|FOB|nusual deposits. depo| +87181|194410|19417|1|22|33097.02|0.03|0.07|R|F|1994-08-24|1994-09-25|1994-09-15|TAKE BACK RETURN|SHIP|inal, pending theodolites. ironic, bold| +87181|435231|22756|2|19|22157.99|0.07|0.08|A|F|1994-09-19|1994-09-14|1994-10-19|DELIVER IN PERSON|REG AIR|ounts. sly| +87181|912288|24807|3|48|62411.52|0.05|0.00|A|F|1994-07-27|1994-08-21|1994-08-14|TAKE BACK RETURN|SHIP|ey players engage| +87181|812948|12949|4|45|83740.50|0.02|0.01|A|F|1994-08-18|1994-09-10|1994-09-01|DELIVER IN PERSON|AIR|wake blithely across the | +87181|210244|10245|5|6|6925.38|0.10|0.02|A|F|1994-09-10|1994-08-19|1994-09-16|COLLECT COD|REG AIR|ven packages. expr| +87181|567489|42512|6|21|32685.66|0.05|0.02|A|F|1994-09-01|1994-09-06|1994-09-12|COLLECT COD|FOB|sual instructions sle| +87182|839059|14092|1|42|41916.42|0.02|0.00|N|O|1998-10-02|1998-08-20|1998-10-30|TAKE BACK RETURN|SHIP|rges wake. regula| +87182|57543|45047|2|12|18006.48|0.05|0.05|N|O|1998-07-03|1998-09-06|1998-07-12|TAKE BACK RETURN|REG AIR|ideas. slyly express | +87182|123640|23641|3|49|81518.36|0.02|0.02|N|O|1998-10-02|1998-08-24|1998-10-28|DELIVER IN PERSON|SHIP| should are slyly-- blithely exp| +87183|542488|42489|1|14|21426.44|0.08|0.02|A|F|1994-04-21|1994-06-06|1994-05-08|DELIVER IN PERSON|RAIL|es cajole blithely alongside of the slyly| +87183|579024|41536|2|20|22060.00|0.00|0.03|A|F|1994-07-10|1994-05-02|1994-08-07|NONE|TRUCK|e quickly about the quickly ironic pinto b| +87183|639704|27241|3|46|75608.82|0.00|0.02|R|F|1994-07-19|1994-06-21|1994-07-21|COLLECT COD|SHIP|equests integrate carefully acco| +87183|504018|41549|4|3|3065.97|0.10|0.02|R|F|1994-05-25|1994-05-08|1994-06-17|COLLECT COD|REG AIR|lithely even instru| +87183|18389|18390|5|39|50987.82|0.06|0.04|A|F|1994-05-15|1994-04-22|1994-05-20|COLLECT COD|AIR| cajole slyly among the ironic, even| +87183|62516|25018|6|42|62097.42|0.04|0.03|R|F|1994-05-01|1994-05-04|1994-05-21|DELIVER IN PERSON|SHIP|lithely? fluffily | +87208|346134|8641|1|50|59006.00|0.09|0.06|A|F|1994-09-16|1994-09-27|1994-10-08|DELIVER IN PERSON|RAIL|iously regular reque| +87208|468694|18695|2|14|23277.38|0.01|0.05|A|F|1994-07-31|1994-09-10|1994-08-16|NONE|AIR|s haggle even, special platel| +87209|187336|49840|1|34|48393.22|0.01|0.01|N|O|1997-03-07|1997-02-18|1997-03-22|TAKE BACK RETURN|AIR|efully ironic theodolites| +87209|539361|39362|2|1|1400.34|0.03|0.00|N|O|1997-04-25|1997-03-11|1997-04-29|COLLECT COD|TRUCK|osits. blithely express orbits might ar| +87209|33078|45579|3|42|42464.94|0.10|0.08|N|O|1997-04-25|1997-02-25|1997-05-06|TAKE BACK RETURN|MAIL|es detect fluffily. blithel| +87209|928547|41066|4|37|58293.50|0.09|0.04|N|O|1997-03-08|1997-02-08|1997-04-01|TAKE BACK RETURN|TRUCK|bold courts sleep carefully. | +87209|83803|21307|5|4|7147.20|0.06|0.00|N|O|1997-03-09|1997-02-24|1997-04-02|NONE|REG AIR|t the furiously express packages. pinto| +87209|461360|11361|6|23|30390.82|0.04|0.06|N|O|1997-04-01|1997-01-25|1997-04-16|NONE|MAIL|the slyly regular foxes. blit| +87209|75686|38188|7|13|21601.84|0.07|0.07|N|O|1997-03-08|1997-01-28|1997-04-05|DELIVER IN PERSON|MAIL|le according to the care| +87210|48824|11325|1|29|51411.78|0.07|0.03|A|F|1993-03-19|1993-02-15|1993-03-21|TAKE BACK RETURN|TRUCK|ackages sleep after the regu| +87210|580566|18100|2|2|3293.08|0.01|0.06|A|F|1993-01-10|1993-01-28|1993-01-23|TAKE BACK RETURN|TRUCK|egular deposits cajole. blithely | +87210|556499|6500|3|13|20221.11|0.10|0.05|R|F|1993-01-31|1993-02-26|1993-02-08|TAKE BACK RETURN|REG AIR|y final ideas sleep blithely! even ideas wa| +87210|74858|37360|4|13|23827.05|0.08|0.06|A|F|1993-01-21|1993-02-05|1993-02-12|DELIVER IN PERSON|MAIL|ly even accounts. | +87210|130284|5289|5|29|38114.12|0.08|0.03|A|F|1992-12-27|1993-01-19|1993-01-10|COLLECT COD|FOB|structions affix furio| +87210|673527|36041|6|41|61520.09|0.07|0.01|A|F|1993-01-23|1993-01-15|1993-02-14|COLLECT COD|SHIP|onic foxes. fluffily regular foxes against | +87210|961822|11823|7|19|35791.82|0.03|0.08|R|F|1993-03-22|1993-01-29|1993-04-08|COLLECT COD|SHIP|cajole special, expr| +87211|341843|29362|1|20|37696.60|0.07|0.07|R|F|1993-04-21|1993-03-16|1993-05-14|TAKE BACK RETURN|MAIL| fluffily requests. carefully | +87211|350994|13502|2|18|36809.64|0.06|0.04|R|F|1993-06-03|1993-04-22|1993-06-25|TAKE BACK RETURN|REG AIR|lyly bold reques| +87211|153214|40724|3|33|41817.93|0.02|0.05|R|F|1993-05-26|1993-04-21|1993-06-07|NONE|AIR|ully final fox| +87211|63633|1137|4|33|52688.79|0.08|0.08|R|F|1993-04-29|1993-04-03|1993-05-14|DELIVER IN PERSON|TRUCK|uctions boo| +87211|467529|5057|5|28|41902.00|0.01|0.06|A|F|1993-04-27|1993-03-23|1993-05-11|DELIVER IN PERSON|REG AIR| furiously slyly final pint| +87212|832992|8025|1|23|44273.85|0.03|0.05|A|F|1992-07-11|1992-09-08|1992-08-08|COLLECT COD|REG AIR|telets sleep above the dugo| +87212|80782|5785|2|25|44069.50|0.09|0.00|R|F|1992-08-02|1992-09-12|1992-08-19|DELIVER IN PERSON|REG AIR| the furiously regu| +87212|687140|12167|3|4|4508.44|0.07|0.07|R|F|1992-10-03|1992-08-04|1992-10-04|COLLECT COD|MAIL|press requests use. quick| +87212|757471|19987|4|38|58080.72|0.05|0.02|A|F|1992-08-10|1992-08-17|1992-08-15|NONE|FOB|blithely regular asympto| +87212|805842|30875|5|43|75155.40|0.09|0.05|R|F|1992-09-16|1992-07-23|1992-09-20|NONE|SHIP|fix. bold asymptotes wak| +87212|781751|19297|6|50|91636.00|0.07|0.01|A|F|1992-08-22|1992-08-28|1992-09-13|TAKE BACK RETURN|SHIP|ly unusual frays are care| +87213|179942|42446|1|28|56614.32|0.09|0.04|R|F|1993-10-03|1993-10-29|1993-10-22|COLLECT COD|FOB|the blithely even packages nag furiousl| +87214|410605|35622|1|13|19702.54|0.08|0.05|N|O|1995-09-28|1995-09-19|1995-10-04|DELIVER IN PERSON|RAIL|nal asymptotes across the bl| +87214|30997|30998|2|28|53983.72|0.01|0.03|N|O|1995-09-10|1995-08-29|1995-10-06|TAKE BACK RETURN|AIR|sits are always. fl| +87214|959445|9446|3|7|10530.80|0.01|0.03|N|O|1995-08-03|1995-09-08|1995-08-28|COLLECT COD|SHIP|kages lose fluffi| +87214|382609|20131|4|26|43981.34|0.05|0.01|N|O|1995-06-27|1995-08-30|1995-07-04|COLLECT COD|AIR|gular attainments | +87215|193664|18671|1|7|12303.62|0.08|0.06|N|O|1997-03-25|1997-01-26|1997-04-10|COLLECT COD|TRUCK|ccounts. furiously unusual deposits| +87215|895211|32763|2|45|54277.65|0.03|0.02|N|O|1997-01-09|1997-02-18|1997-01-16|NONE|SHIP|lithely bold deposits. brave idea| +87215|808177|20694|3|43|46660.59|0.00|0.02|N|O|1997-03-31|1997-02-22|1997-04-12|DELIVER IN PERSON|MAIL|pending packages a| +87215|28512|3513|4|19|27369.69|0.04|0.01|N|O|1997-03-01|1997-01-14|1997-03-06|DELIVER IN PERSON|FOB|sly final asymptotes. fluffily expre| +87240|285480|47986|1|40|58618.80|0.03|0.03|N|O|1995-11-14|1995-11-11|1995-11-24|NONE|FOB|riously express deposits believe | +87240|56729|6730|2|39|65743.08|0.09|0.00|N|O|1995-11-25|1995-12-05|1995-12-17|TAKE BACK RETURN|MAIL|ts above th| +87240|437089|37090|3|26|26677.56|0.03|0.02|N|O|1995-12-15|1995-11-25|1995-12-18|DELIVER IN PERSON|TRUCK|ove the carefully | +87241|410376|35393|1|24|30872.40|0.10|0.07|N|O|1996-03-22|1996-03-06|1996-03-30|COLLECT COD|TRUCK|refully pending,| +87242|753952|41498|1|36|72213.12|0.00|0.03|A|F|1994-03-30|1994-02-24|1994-04-16|TAKE BACK RETURN|TRUCK|s haggle at the furiously exp| +87242|660678|48218|2|6|9831.84|0.02|0.06|R|F|1994-04-08|1994-02-25|1994-04-14|COLLECT COD|MAIL|ar pinto beans wake car| +87242|13018|25519|3|44|40964.44|0.08|0.00|A|F|1994-01-01|1994-02-01|1994-01-28|TAKE BACK RETURN|MAIL|ructions. bold dolphins haggle c| +87242|789401|26947|4|29|43220.73|0.03|0.05|A|F|1994-01-15|1994-02-08|1994-02-10|NONE|SHIP|r, express| +87242|455725|30744|5|21|35294.70|0.08|0.06|R|F|1994-02-14|1994-02-03|1994-03-06|COLLECT COD|TRUCK|cross the furiously reg| +87242|358171|20679|6|39|47937.24|0.10|0.08|R|F|1994-04-15|1994-03-17|1994-05-12|COLLECT COD|REG AIR|gside of t| +87243|220261|32766|1|8|9450.00|0.03|0.05|N|O|1998-05-13|1998-03-12|1998-06-05|DELIVER IN PERSON|TRUCK|g the slyly b| +87243|921865|21866|2|45|84906.90|0.07|0.00|N|O|1998-02-11|1998-03-24|1998-02-18|TAKE BACK RETURN|AIR|s was quickly express requests-| +87244|238955|1460|1|35|66287.90|0.04|0.08|R|F|1995-02-22|1995-02-12|1995-03-08|DELIVER IN PERSON|FOB|quests boost carefully final ac| +87244|101190|13693|2|22|26206.18|0.05|0.06|R|F|1994-11-25|1995-02-12|1994-12-05|NONE|AIR|special, regular multipliers wake. care| +87244|697222|47223|3|24|29260.56|0.08|0.01|R|F|1995-01-12|1994-12-24|1995-01-30|COLLECT COD|AIR| express packages impress idly | +87245|634349|46862|1|19|24382.89|0.07|0.00|N|O|1998-05-15|1998-05-28|1998-05-25|DELIVER IN PERSON|AIR|y sly platelets nag| +87245|489360|1870|2|45|60720.30|0.08|0.04|N|O|1998-04-15|1998-04-25|1998-05-06|COLLECT COD|AIR|ccounts. carefully ironic instructions sl| +87245|672648|10188|3|22|35653.42|0.00|0.04|N|O|1998-06-29|1998-04-18|1998-07-03|NONE|REG AIR|s. furiously fina| +87245|184714|9721|4|15|26980.65|0.07|0.08|N|O|1998-03-26|1998-05-30|1998-04-19|COLLECT COD|MAIL|e against the blithel| +87245|476370|26371|5|25|33658.75|0.00|0.05|N|O|1998-06-29|1998-05-05|1998-07-25|COLLECT COD|RAIL|slyly ironi| +87245|341262|41263|6|32|41704.00|0.01|0.08|N|O|1998-07-09|1998-05-18|1998-07-30|TAKE BACK RETURN|SHIP|ns haggle furiously car| +87245|583427|8450|7|14|21145.60|0.08|0.01|N|O|1998-06-25|1998-05-19|1998-07-24|COLLECT COD|REG AIR|thely unusual accounts. e| +87246|652865|27892|1|33|59988.39|0.06|0.05|A|F|1993-08-03|1993-05-30|1993-08-12|TAKE BACK RETURN|RAIL|equests alon| +87246|686558|49072|2|6|9267.12|0.04|0.06|R|F|1993-05-26|1993-07-04|1993-05-31|COLLECT COD|AIR|thely ironic dependenci| +87247|355875|43397|1|6|11585.16|0.04|0.00|A|F|1993-08-18|1993-07-15|1993-08-31|DELIVER IN PERSON|RAIL|ns. unusual,| +87247|178471|3478|2|7|10846.29|0.04|0.05|R|F|1993-07-07|1993-08-17|1993-07-24|COLLECT COD|FOB|slyly above the quic| +87247|557566|32589|3|29|47082.66|0.05|0.07|R|F|1993-06-30|1993-08-24|1993-07-18|DELIVER IN PERSON|RAIL|ts! ironic, final| +87272|155684|30691|1|29|50450.72|0.01|0.08|N|O|1997-01-15|1996-11-26|1997-02-01|NONE|AIR|c warthogs. ca| +87272|568098|5632|2|50|58303.50|0.07|0.06|N|O|1996-12-13|1997-01-05|1997-01-04|COLLECT COD|MAIL|eep bold, | +87272|9485|9486|3|7|9761.36|0.06|0.06|N|O|1997-01-11|1996-12-02|1997-02-05|TAKE BACK RETURN|MAIL|y along the quickly unusual requests. per| +87272|407748|45273|4|47|77818.84|0.10|0.04|N|O|1997-01-22|1996-11-23|1997-02-02|TAKE BACK RETURN|RAIL|ggedly brave excuses wake. unusual, ironi| +87273|672930|22931|1|47|89436.30|0.04|0.04|A|F|1994-12-08|1994-10-21|1994-12-28|DELIVER IN PERSON|FOB|l packages. busily ironic packages| +87273|932784|45303|2|2|3633.48|0.02|0.03|R|F|1994-09-18|1994-10-15|1994-09-19|TAKE BACK RETURN|AIR|long the ironic, express ideas use slyl| +87273|295529|45530|3|34|51833.34|0.02|0.04|A|F|1994-10-08|1994-11-12|1994-10-31|COLLECT COD|AIR|requests cajole carefully final, dog| +87273|955710|18230|4|18|31782.06|0.02|0.03|A|F|1994-12-03|1994-10-23|1994-12-26|DELIVER IN PERSON|AIR|egular deposi| +87273|610862|23375|5|32|56730.56|0.02|0.02|A|F|1994-11-22|1994-10-17|1994-11-24|COLLECT COD|SHIP|onic packages. re| +87273|749389|24418|6|39|56095.65|0.02|0.05|A|F|1994-10-08|1994-11-02|1994-10-18|COLLECT COD|FOB|y ironic asymptot| +87274|807021|19538|1|32|29695.36|0.10|0.00|N|O|1997-05-19|1997-07-02|1997-05-24|NONE|RAIL|counts among th| +87275|627293|27294|1|10|12202.60|0.09|0.07|N|O|1998-08-21|1998-08-01|1998-09-04|TAKE BACK RETURN|FOB|en courts maintain enticingly abo| +87275|899572|24607|2|19|29859.07|0.05|0.01|N|O|1998-09-22|1998-07-14|1998-10-11|COLLECT COD|FOB|ial accounts| +87275|104794|29799|3|19|34177.01|0.02|0.06|N|O|1998-08-15|1998-07-08|1998-09-12|COLLECT COD|TRUCK| quiet instructions use evenly quickly| +87276|730525|43040|1|23|35776.27|0.09|0.00|N|O|1997-04-18|1997-02-23|1997-04-21|DELIVER IN PERSON|RAIL|e even, pen| +87276|929792|4829|2|11|20039.25|0.05|0.02|N|O|1997-05-02|1997-03-04|1997-05-16|COLLECT COD|RAIL|heodolites will have to are quickly; expre| +87276|3429|40930|3|24|31978.08|0.03|0.02|N|O|1997-03-23|1997-02-19|1997-03-27|TAKE BACK RETURN|AIR|gle carefully regular requests. inst| +87276|628320|3345|4|27|33703.83|0.01|0.04|N|O|1997-02-25|1997-02-18|1997-03-27|TAKE BACK RETURN|REG AIR|furiously final request| +87276|166938|4448|5|48|96236.64|0.00|0.04|N|O|1997-03-10|1997-02-27|1997-03-27|NONE|MAIL|ainst the furiously ironic packages. | +87277|235901|35902|1|9|16532.01|0.01|0.03|R|F|1993-09-22|1993-10-21|1993-09-25|DELIVER IN PERSON|AIR|aggle slyly final packages. bold senti| +87277|781527|31528|2|44|70773.56|0.09|0.05|R|F|1993-11-16|1993-11-14|1993-12-02|NONE|REG AIR|haggle furious| +87278|101516|26521|1|28|42490.28|0.05|0.03|N|O|1996-06-22|1996-07-02|1996-07-08|DELIVER IN PERSON|AIR|nstructions use furiously. furi| +87278|174193|24194|2|38|48153.22|0.04|0.04|N|O|1996-05-17|1996-06-29|1996-05-23|TAKE BACK RETURN|TRUCK|final requests. carefully silent | +87278|653769|16283|3|39|67186.47|0.04|0.03|N|O|1996-06-20|1996-07-18|1996-07-09|DELIVER IN PERSON|RAIL|ers doubt furiously ac| +87279|782234|19780|1|22|28956.40|0.03|0.08|R|F|1995-05-10|1995-07-08|1995-05-11|DELIVER IN PERSON|RAIL|ic pinto beans. slyly unusual| +87279|990160|27718|2|46|57505.52|0.08|0.01|R|F|1995-05-25|1995-06-12|1995-05-28|DELIVER IN PERSON|TRUCK| ironic deposits. fu| +87304|595226|7738|1|46|60775.20|0.09|0.03|N|O|1997-02-01|1996-11-24|1997-02-12|TAKE BACK RETURN|MAIL|ccording t| +87304|954255|29294|2|23|30111.83|0.09|0.00|N|O|1996-11-01|1996-12-23|1996-11-29|DELIVER IN PERSON|TRUCK|quickly unusual foxes | +87304|152801|15305|3|48|88982.40|0.10|0.03|N|O|1997-02-01|1996-11-19|1997-02-17|TAKE BACK RETURN|AIR|l deposits. fluf| +87304|112267|49774|4|19|24305.94|0.07|0.06|N|O|1997-02-16|1996-11-25|1997-03-03|TAKE BACK RETURN|REG AIR|x quickly ironic theodolites. e| +87304|867176|29694|5|14|16003.82|0.03|0.07|N|O|1996-11-12|1996-12-26|1996-11-15|COLLECT COD|AIR|e fluffily furiously unusual packages. spe| +87305|38257|13258|1|14|16733.50|0.09|0.00|R|F|1992-06-25|1992-07-25|1992-07-21|TAKE BACK RETURN|TRUCK|e carefully courts. iro| +87305|969403|6961|2|3|4417.08|0.10|0.02|A|F|1992-09-14|1992-06-27|1992-10-13|TAKE BACK RETURN|MAIL|into beans are| +87306|597104|34638|1|19|22820.52|0.01|0.07|R|F|1994-04-04|1994-05-04|1994-04-29|DELIVER IN PERSON|SHIP|lyly express packages cajole| +87306|519403|31914|2|30|42671.40|0.08|0.08|R|F|1994-07-09|1994-05-19|1994-07-21|COLLECT COD|MAIL|ely special foxes. furiously quick hockey | +87307|396436|46437|1|1|1532.42|0.06|0.01|A|F|1994-06-11|1994-07-29|1994-06-30|DELIVER IN PERSON|TRUCK|. furiousl| +87307|889318|14353|2|18|23530.86|0.10|0.04|A|F|1994-05-31|1994-07-11|1994-06-10|NONE|FOB|silent deposits hag| +87307|751903|14419|3|49|95788.63|0.10|0.02|A|F|1994-06-26|1994-08-01|1994-07-19|DELIVER IN PERSON|MAIL|e carefully | +87307|233036|20549|4|4|3876.08|0.02|0.01|A|F|1994-06-08|1994-06-30|1994-07-08|COLLECT COD|MAIL| dependencies wak| +87307|622159|34672|5|43|46488.16|0.03|0.02|A|F|1994-07-08|1994-07-06|1994-08-05|COLLECT COD|REG AIR|uickly bold excuses. furiously expr| +87307|625043|12580|6|21|20328.21|0.05|0.08|A|F|1994-07-07|1994-06-06|1994-07-29|COLLECT COD|MAIL|according to the unusual packages-- pend| +87308|107269|32274|1|30|38287.80|0.03|0.03|N|O|1996-03-13|1996-03-21|1996-04-08|NONE|TRUCK| about the furiously regul| +87308|863170|722|2|35|39659.55|0.05|0.04|N|O|1996-05-10|1996-04-14|1996-06-02|COLLECT COD|SHIP|t the furiously | +87308|293701|18712|3|24|40672.56|0.01|0.08|N|O|1996-03-30|1996-03-28|1996-04-15|DELIVER IN PERSON|AIR|ly express deposits bo| +87308|231756|31757|4|46|77636.04|0.00|0.07|N|O|1996-03-27|1996-03-18|1996-04-21|COLLECT COD|MAIL|the fluffily unusual packages. final d| +87309|61414|11415|1|16|22006.56|0.06|0.03|R|F|1993-03-29|1993-06-16|1993-04-14|TAKE BACK RETURN|REG AIR|unts cajole blithely. pi| +87309|170583|33087|2|41|67796.78|0.09|0.04|A|F|1993-07-13|1993-05-11|1993-07-25|DELIVER IN PERSON|RAIL|lways regular foxes.| +87310|333715|8728|1|14|24481.80|0.05|0.08|N|O|1995-12-02|1995-10-19|1995-12-04|TAKE BACK RETURN|RAIL|ar pinto beans above the daringly express r| +87310|733235|33236|2|33|41850.60|0.05|0.03|N|O|1995-12-19|1995-10-29|1995-12-21|COLLECT COD|FOB|egular accounts a| +87310|474213|24214|3|20|23743.80|0.01|0.02|N|O|1995-10-07|1995-10-08|1995-10-19|NONE|MAIL| to the blithely bold instr| +87310|88549|26053|4|47|72264.38|0.08|0.00|N|O|1995-12-22|1995-10-24|1996-01-12|TAKE BACK RETURN|RAIL|ial accounts. carefully ironic requ| +87311|60604|48108|1|46|71971.60|0.00|0.03|R|F|1992-11-05|1993-01-01|1992-11-22|NONE|SHIP|ions. idle re| +87336|514517|39538|1|30|45944.70|0.01|0.02|N|O|1997-01-31|1996-12-11|1997-02-26|COLLECT COD|AIR|eas are across t| +87336|485775|23303|2|31|54583.25|0.01|0.02|N|O|1996-11-18|1997-01-25|1996-12-07|COLLECT COD|AIR|re quickly after the fluffily even dol| +87336|407398|19907|3|6|7832.22|0.00|0.02|N|O|1997-02-04|1996-12-20|1997-03-04|TAKE BACK RETURN|AIR|sly. pending| +87336|122355|9862|4|35|48207.25|0.09|0.07|N|O|1997-01-12|1997-01-13|1997-01-29|TAKE BACK RETURN|MAIL| according to the carefully unusual | +87336|414767|27276|5|27|45406.98|0.07|0.05|N|O|1997-01-19|1996-12-29|1997-02-01|COLLECT COD|RAIL|p. furiously ironic somas boost| +87337|171648|9158|1|13|22355.32|0.09|0.04|A|F|1992-10-08|1992-12-02|1992-10-18|DELIVER IN PERSON|MAIL|efully ironic e| +87337|875124|159|2|29|31873.32|0.00|0.01|A|F|1992-09-14|1992-11-02|1992-09-15|DELIVER IN PERSON|TRUCK|tes. furiously special fra| +87337|207698|32707|3|7|11239.76|0.01|0.03|A|F|1992-11-03|1992-10-27|1992-11-20|TAKE BACK RETURN|TRUCK|ggle. blithely unusual dependencies above| +87338|858582|33617|1|1|1540.54|0.07|0.08|A|F|1994-05-20|1994-06-10|1994-05-23|TAKE BACK RETURN|SHIP|s cajole carefully| +87338|178075|28076|2|15|17296.05|0.04|0.00|A|F|1994-06-23|1994-06-19|1994-06-27|DELIVER IN PERSON|MAIL|tipliers impr| +87338|891542|29094|3|38|58273.00|0.02|0.06|R|F|1994-04-15|1994-06-11|1994-05-12|COLLECT COD|REG AIR|es. pending packages hang | +87338|144535|7038|4|11|17374.83|0.09|0.02|R|F|1994-05-04|1994-04-26|1994-05-30|NONE|RAIL|latelets haggle quickly fluf| +87338|188781|26291|5|43|80400.54|0.02|0.04|A|F|1994-07-18|1994-05-19|1994-08-09|NONE|MAIL|eans. ruthless packages affix slyly reg| +87338|840410|40411|6|37|49963.69|0.08|0.03|R|F|1994-05-20|1994-06-09|1994-05-29|COLLECT COD|RAIL|efully according to the fluffily reg| +87338|759094|34125|7|38|43816.28|0.06|0.06|R|F|1994-04-07|1994-05-25|1994-05-04|TAKE BACK RETURN|FOB|quests wake carefully. q| +87339|77280|27281|1|8|10058.24|0.09|0.00|N|O|1996-08-22|1996-07-09|1996-09-18|DELIVER IN PERSON|REG AIR|f the acco| +87339|833728|21277|2|24|39880.32|0.10|0.05|N|O|1996-07-15|1996-08-14|1996-07-23|NONE|AIR|ccounts along the final, | +87339|454404|16914|3|50|67919.00|0.05|0.08|N|O|1996-08-07|1996-08-14|1996-08-28|COLLECT COD|AIR|lar deposits. carefully unusual pinto bea| +87339|166337|3847|4|44|61746.52|0.02|0.03|N|O|1996-07-28|1996-07-20|1996-08-01|TAKE BACK RETURN|RAIL|ual pinto beans are above t| +87339|617152|42177|5|19|20313.28|0.09|0.07|N|O|1996-06-29|1996-07-25|1996-07-25|NONE|SHIP|ronically behind the ironi| +87340|79998|42500|1|36|71207.64|0.02|0.07|A|F|1993-01-03|1992-12-09|1993-01-25|NONE|MAIL|packages! ironic somas a| +87340|517936|17937|2|19|37124.29|0.04|0.06|A|F|1992-12-31|1992-11-28|1993-01-25|DELIVER IN PERSON|TRUCK|es. never special accounts serv| +87340|935958|48477|3|22|43866.02|0.09|0.06|A|F|1993-01-09|1992-12-22|1993-02-06|DELIVER IN PERSON|MAIL| are slyly about the iro| +87340|642739|30276|4|14|23543.80|0.05|0.05|A|F|1993-01-16|1993-01-04|1993-01-27|COLLECT COD|TRUCK|e final requests; quickly| +87340|505617|43148|5|22|35696.98|0.05|0.03|A|F|1992-11-24|1992-11-28|1992-11-27|TAKE BACK RETURN|RAIL|ove the blithely | +87341|666479|41506|1|30|43363.20|0.05|0.08|N|O|1997-02-17|1997-04-21|1997-03-08|DELIVER IN PERSON|RAIL|y even requests. fluffily ironi| +87342|543204|43205|1|26|32426.68|0.01|0.03|N|O|1997-10-27|1997-10-20|1997-11-20|NONE|MAIL|le. special foxes are quickly-- furiously| +87342|616543|29056|2|26|37947.26|0.04|0.07|N|O|1997-10-13|1997-10-04|1997-11-10|DELIVER IN PERSON|AIR|ctions haggle quickly blithel| +87342|228589|28590|3|27|40974.39|0.04|0.08|N|O|1997-10-23|1997-10-03|1997-11-14|COLLECT COD|AIR|ions. slyly pen| +87342|893137|5655|4|23|25992.07|0.04|0.03|N|O|1997-09-22|1997-09-30|1997-10-07|COLLECT COD|REG AIR|ckly ironic courts sleep | +87342|944097|31652|5|26|29667.30|0.05|0.02|N|O|1997-10-09|1997-09-05|1997-10-21|NONE|FOB|s above the final deposits wake quickl| +87342|432897|45406|6|9|16468.83|0.01|0.01|N|O|1997-11-24|1997-10-02|1997-12-12|TAKE BACK RETURN|MAIL|. furiously r| +87343|353084|3085|1|23|26152.61|0.03|0.06|A|F|1993-07-16|1993-08-17|1993-08-07|NONE|FOB|ithely unusual accounts | +87343|281497|6508|2|49|72445.52|0.04|0.04|A|F|1993-09-10|1993-10-07|1993-10-09|COLLECT COD|AIR|ding accounts sleep fluffily slyly special| +87343|111900|36905|3|2|3823.80|0.04|0.07|A|F|1993-11-07|1993-08-18|1993-11-20|NONE|FOB| after the doggedly silent escapades. | +87343|687146|49660|4|1|1133.11|0.06|0.03|A|F|1993-10-12|1993-08-23|1993-10-30|COLLECT COD|TRUCK|e instructions cajole ironic asymptotes. s| +87343|856044|31079|5|22|22000.00|0.02|0.01|A|F|1993-08-11|1993-08-17|1993-08-29|TAKE BACK RETURN|TRUCK|xes dazzle according to the blithely ironi| +87343|524284|11815|6|15|19623.90|0.05|0.07|R|F|1993-08-03|1993-09-13|1993-08-12|TAKE BACK RETURN|AIR|fily ironic | +87343|630784|5809|7|6|10288.50|0.05|0.06|A|F|1993-07-17|1993-09-18|1993-07-19|TAKE BACK RETURN|REG AIR|p blithely ironic ideas. quickly expre| +87368|582519|20053|1|13|20819.37|0.06|0.03|N|O|1998-02-23|1998-03-14|1998-02-26|NONE|AIR|ackages among the bold warthogs| +87368|383297|33298|2|35|48309.80|0.02|0.07|N|O|1998-03-09|1998-02-22|1998-03-20|COLLECT COD|RAIL|dly unusual requests affix carefully acro| +87369|536531|36532|1|20|31350.20|0.10|0.04|A|F|1994-09-29|1994-09-15|1994-10-10|TAKE BACK RETURN|RAIL|kages. fluffily | +87369|459811|9812|2|23|40728.17|0.05|0.00|A|F|1994-11-03|1994-09-02|1994-11-18|TAKE BACK RETURN|SHIP|g the regular a| +87369|39531|39532|3|31|45586.43|0.05|0.08|R|F|1994-08-20|1994-08-21|1994-09-01|NONE|TRUCK|ymptotes. final, iro| +87370|788024|540|1|4|4447.96|0.04|0.01|R|F|1994-01-18|1994-04-02|1994-02-02|DELIVER IN PERSON|TRUCK|ct furiously| +87370|313785|38798|2|23|41371.71|0.05|0.07|A|F|1994-02-17|1994-02-20|1994-03-07|TAKE BACK RETURN|FOB| special deposits. carefully even requ| +87370|773193|23194|3|25|31654.00|0.06|0.00|R|F|1994-03-10|1994-03-25|1994-03-25|TAKE BACK RETURN|AIR|ges nag furiously | +87370|44026|19027|4|19|18430.38|0.06|0.03|A|F|1994-03-23|1994-04-06|1994-03-30|COLLECT COD|RAIL|ronic dolphins| +87370|930824|5861|5|15|27821.70|0.00|0.08|A|F|1994-02-09|1994-03-15|1994-03-04|COLLECT COD|REG AIR|n theodolites boost slowly slyly bold | +87371|769380|44411|1|19|27537.65|0.09|0.06|N|O|1996-10-29|1996-09-11|1996-10-31|COLLECT COD|REG AIR|, ironic the| +87371|953434|15954|2|22|32722.58|0.09|0.03|N|O|1996-10-15|1996-07-31|1996-10-31|COLLECT COD|MAIL|ng the regular, final ideas sleep slyl| +87372|263760|1276|1|4|6895.00|0.01|0.01|N|O|1997-11-30|1998-01-27|1997-12-20|NONE|SHIP|. ironic, silent dependencies w| +87373|974606|24607|1|39|65541.84|0.08|0.05|A|F|1994-06-23|1994-09-09|1994-07-07|NONE|RAIL|uickly fina| +87373|194510|7014|2|13|20858.63|0.05|0.04|A|F|1994-07-05|1994-08-28|1994-08-03|TAKE BACK RETURN|RAIL|unts. blit| +87374|256421|43937|1|30|41322.30|0.03|0.07|N|O|1997-08-27|1997-06-25|1997-09-25|DELIVER IN PERSON|RAIL|sleep quickly| +87374|659536|47076|2|33|49351.50|0.05|0.06|N|O|1997-07-18|1997-07-27|1997-07-29|COLLECT COD|AIR|gular asymptotes sleep| +87374|808149|8150|3|37|39112.70|0.01|0.00|N|O|1997-05-26|1997-07-26|1997-06-22|NONE|TRUCK|sts-- slyly special packa| +87374|551824|39358|4|4|7503.20|0.09|0.04|N|O|1997-06-02|1997-07-12|1997-07-01|DELIVER IN PERSON|MAIL|ltipliers across th| +87374|490566|28094|5|10|15565.40|0.04|0.01|N|O|1997-06-20|1997-07-24|1997-06-28|DELIVER IN PERSON|FOB|ckly special pinto beans. idly final accou| +87375|498584|23603|1|33|52224.48|0.10|0.03|A|F|1993-07-07|1993-09-09|1993-07-16|TAKE BACK RETURN|AIR|foxes. carefully pending platelets| +87375|690608|3122|2|15|23978.55|0.10|0.04|A|F|1993-09-19|1993-09-30|1993-09-25|TAKE BACK RETURN|MAIL|r requests maintain permanently regular,| +87375|43605|6106|3|18|27874.80|0.01|0.08|A|F|1993-08-15|1993-09-20|1993-09-11|TAKE BACK RETURN|AIR|sly final pains. | +87375|855411|42963|4|20|27327.40|0.08|0.02|A|F|1993-07-21|1993-09-03|1993-07-26|TAKE BACK RETURN|REG AIR|en request| +87375|880688|43206|5|35|58402.40|0.02|0.02|A|F|1993-09-14|1993-09-04|1993-10-07|NONE|REG AIR|luffily afte| +87400|797986|10502|1|27|56266.65|0.01|0.01|A|F|1995-05-08|1995-05-03|1995-06-02|DELIVER IN PERSON|FOB|lithely. furi| +87400|740047|15076|2|9|9783.09|0.10|0.08|R|F|1995-03-02|1995-05-04|1995-03-17|TAKE BACK RETURN|AIR| final dependencies a| +87400|955220|30259|3|42|53557.56|0.03|0.06|A|F|1995-06-04|1995-04-17|1995-06-06|DELIVER IN PERSON|TRUCK|ckages. furiously special deposits | +87400|369930|7452|4|14|27998.88|0.09|0.05|R|F|1995-04-24|1995-04-26|1995-05-09|NONE|REG AIR|oze slyly even pla| +87401|673496|48523|1|42|61717.32|0.09|0.06|N|O|1998-03-19|1998-05-28|1998-04-01|DELIVER IN PERSON|MAIL|egular, pendi| +87401|433676|33677|2|41|65995.65|0.04|0.08|N|O|1998-06-15|1998-05-11|1998-07-02|TAKE BACK RETURN|RAIL| of the finally final pains| +87402|42276|42277|1|37|45075.99|0.02|0.03|N|O|1995-08-09|1995-08-25|1995-08-12|DELIVER IN PERSON|MAIL|ding to the blithely ironic requests. pend| +87402|524298|49319|2|6|7933.62|0.09|0.05|N|O|1995-07-03|1995-08-02|1995-07-10|DELIVER IN PERSON|SHIP|the slyly regular reque| +87402|873636|36154|3|24|38630.16|0.09|0.05|N|O|1995-09-25|1995-09-17|1995-09-29|TAKE BACK RETURN|SHIP|ironic instruc| +87403|752016|14532|1|14|14951.72|0.01|0.05|N|O|1997-12-08|1997-10-02|1997-12-10|COLLECT COD|MAIL|ages need to was furiously aga| +87403|132589|32590|2|38|61620.04|0.09|0.04|N|O|1997-10-06|1997-11-14|1997-10-13|NONE|REG AIR|y carefully silent foxes. req| +87403|421795|46812|3|29|49786.33|0.02|0.05|N|O|1997-10-20|1997-11-01|1997-10-25|TAKE BACK RETURN|SHIP|posits. regular packages against the bli| +87403|104004|4005|4|21|21168.00|0.06|0.08|N|O|1997-12-03|1997-10-14|1998-01-01|COLLECT COD|TRUCK|st have to print fluffily ironic accounts| +87403|980372|5411|5|49|71164.17|0.06|0.03|N|O|1997-10-25|1997-09-26|1997-11-20|DELIVER IN PERSON|MAIL|posits. fina| +87403|108996|46503|6|35|70174.65|0.06|0.00|N|O|1997-11-06|1997-10-26|1997-12-04|DELIVER IN PERSON|MAIL|x carefully carefully final | +87404|586592|36593|1|16|26857.12|0.02|0.05|R|F|1992-07-20|1992-08-28|1992-08-06|DELIVER IN PERSON|AIR|es. slyly busy instructions was | +87404|844916|44917|2|3|5582.61|0.01|0.02|R|F|1992-07-09|1992-07-23|1992-07-24|TAKE BACK RETURN|SHIP|t blithely ironic ideas. quickly ironi| +87404|499815|12325|3|22|39925.38|0.04|0.06|A|F|1992-07-18|1992-07-31|1992-08-10|TAKE BACK RETURN|MAIL| across the fluffy, final deposit| +87404|385023|10038|4|23|25484.23|0.03|0.05|R|F|1992-09-17|1992-07-12|1992-10-14|TAKE BACK RETURN|SHIP|terns haggle. accounts after the furiousl| +87404|79173|41675|5|17|19586.89|0.10|0.06|R|F|1992-07-14|1992-08-28|1992-08-11|TAKE BACK RETURN|REG AIR|ans nag carefull| +87404|647911|35448|6|41|76214.08|0.06|0.05|R|F|1992-08-12|1992-08-06|1992-08-28|COLLECT COD|AIR|ously pending instructions na| +87405|45454|45455|1|35|48980.75|0.08|0.08|R|F|1994-05-18|1994-06-16|1994-06-11|TAKE BACK RETURN|MAIL|bold foxes. quickly regular packages| +87405|944770|32325|2|15|27220.95|0.01|0.08|A|F|1994-05-22|1994-05-27|1994-06-03|DELIVER IN PERSON|AIR|gle slyly silent pac| +87405|748779|36322|3|15|27416.10|0.10|0.07|R|F|1994-05-03|1994-05-22|1994-05-23|COLLECT COD|RAIL|n deposits. stealthily express accounts| +87405|714607|2150|4|12|19458.84|0.09|0.02|A|F|1994-06-27|1994-05-17|1994-07-01|TAKE BACK RETURN|AIR|e quickly alongsi| +87406|330046|5059|1|18|19368.54|0.04|0.00|R|F|1992-11-06|1992-09-15|1992-11-16|COLLECT COD|RAIL|ust have to boost. even theodolites along| +87406|67112|42115|2|15|16186.65|0.04|0.02|A|F|1992-09-10|1992-10-03|1992-09-14|DELIVER IN PERSON|FOB|gular pinto beans integrate c| +87407|545136|32667|1|10|11811.10|0.03|0.08|A|F|1992-05-09|1992-05-18|1992-05-17|COLLECT COD|SHIP|lites haggle. quickly final fox| +87432|313769|13770|1|30|53482.50|0.10|0.02|R|F|1992-11-18|1992-10-26|1992-12-15|COLLECT COD|MAIL|y bold inst| +87432|507848|45379|2|43|79800.26|0.06|0.06|A|F|1992-09-30|1992-09-22|1992-10-12|NONE|SHIP|ests according to the quick| +87433|952766|27805|1|24|43649.28|0.06|0.07|N|O|1995-09-22|1995-11-15|1995-10-02|DELIVER IN PERSON|TRUCK|. slyly bold ideas nag b| +87433|125167|172|2|28|33380.48|0.09|0.04|N|O|1995-12-22|1995-10-29|1995-12-24|COLLECT COD|SHIP|nic pearls. furiously si| +87433|681076|31077|3|7|7399.28|0.09|0.02|N|O|1995-09-12|1995-10-28|1995-10-04|TAKE BACK RETURN|MAIL|lyly pending| +87433|831541|31542|4|16|23560.00|0.02|0.07|N|O|1995-11-10|1995-09-28|1995-12-05|NONE|MAIL|ct quickly unusual ideas. silently iro| +87433|707276|32305|5|39|50046.36|0.08|0.00|N|O|1995-09-18|1995-11-02|1995-10-18|COLLECT COD|FOB| against the special | +87433|184282|46786|6|1|1366.28|0.09|0.03|N|O|1995-10-31|1995-10-27|1995-11-08|NONE|RAIL|sits haggle slyly alo| +87433|214665|2178|7|33|52128.45|0.07|0.04|N|O|1995-11-05|1995-11-24|1995-12-03|NONE|RAIL|the regular platelets.| +87434|872996|22997|1|39|76789.05|0.03|0.08|N|O|1996-01-11|1996-01-07|1996-01-19|TAKE BACK RETURN|AIR|gular requests are| +87434|429623|42132|2|31|48130.60|0.00|0.08|N|O|1995-11-29|1995-12-03|1995-12-14|NONE|RAIL| quickly regular foxes. unusual dependencie| +87434|669309|44336|3|40|51130.80|0.05|0.03|N|O|1996-01-20|1995-12-14|1996-01-21|COLLECT COD|AIR|ake furiously carefully pending co| +87434|72558|47561|4|21|32141.55|0.00|0.04|N|O|1995-11-29|1995-12-03|1995-12-07|NONE|FOB|ly final, ironic requests. final, ironic pl| +87435|750032|37578|1|16|17312.00|0.01|0.00|R|F|1992-07-28|1992-07-06|1992-08-10|DELIVER IN PERSON|AIR|mptotes cajole. fu| +87435|773403|35919|2|39|57578.43|0.02|0.08|R|F|1992-08-09|1992-07-26|1992-08-23|DELIVER IN PERSON|SHIP|l theodolites cajole furiously slyly | +87435|569774|32286|3|31|57156.25|0.02|0.03|A|F|1992-07-03|1992-08-02|1992-07-06|NONE|TRUCK|during the even, regular deposi| +87435|178232|3239|4|11|14412.53|0.01|0.05|R|F|1992-08-04|1992-07-09|1992-08-12|NONE|SHIP|to beans. slyly unusual dol| +87435|530211|5232|5|34|42200.46|0.09|0.06|A|F|1992-08-14|1992-07-24|1992-08-20|COLLECT COD|AIR|ffy ideas. furiously final de| +87436|191038|41039|1|18|20322.54|0.06|0.06|N|O|1997-07-21|1997-07-12|1997-08-18|TAKE BACK RETURN|SHIP|beans are. blithely| +87436|765954|15955|2|29|58577.68|0.04|0.05|N|O|1997-09-15|1997-07-30|1997-10-15|COLLECT COD|FOB|egular pinto beans affix furiou| +87436|385910|23432|3|47|93807.30|0.07|0.04|N|O|1997-08-11|1997-07-22|1997-08-19|COLLECT COD|TRUCK| ideas across the ruthlessly special t| +87437|570393|20394|1|29|42437.73|0.00|0.06|A|F|1993-06-29|1993-05-09|1993-07-08|NONE|FOB|uctions sleep blithely into the f| +87437|590402|15425|2|11|16416.18|0.02|0.05|R|F|1993-05-17|1993-07-05|1993-06-02|TAKE BACK RETURN|SHIP|ly across the blithely regular asym| +87437|877405|27406|3|39|53912.04|0.09|0.05|R|F|1993-08-05|1993-06-02|1993-08-24|NONE|SHIP|ly carefully pen| +87437|539572|2083|4|33|53181.15|0.03|0.08|R|F|1993-07-10|1993-07-03|1993-08-01|COLLECT COD|FOB|equests. blithely pending packages integr| +87438|355143|30158|1|17|20368.21|0.05|0.06|N|O|1996-06-03|1996-07-13|1996-06-17|TAKE BACK RETURN|AIR|yly. carefully even pinto | +87438|876992|14544|2|33|64975.35|0.10|0.03|N|O|1996-04-17|1996-07-06|1996-05-06|TAKE BACK RETURN|MAIL|structions sleep fu| +87438|593701|31235|3|13|23330.84|0.04|0.01|N|O|1996-08-08|1996-06-02|1996-08-13|NONE|TRUCK|its nag express, enticing theod| +87439|474962|37472|1|6|11621.64|0.05|0.02|R|F|1994-04-28|1994-02-07|1994-05-05|COLLECT COD|MAIL|deposits; furiously final pinto b| +87439|684989|10016|2|5|9869.75|0.05|0.04|A|F|1994-03-26|1994-03-24|1994-03-29|DELIVER IN PERSON|AIR|st the final, fin| +87439|598088|10600|3|41|48628.46|0.09|0.01|R|F|1994-01-18|1994-03-25|1994-02-02|NONE|TRUCK|s boost quickly deposits. final| +87439|48601|11102|4|12|18595.20|0.08|0.08|A|F|1994-02-14|1994-03-11|1994-03-05|COLLECT COD|RAIL|t the blithely ironi| +87439|827751|15300|5|40|67148.40|0.00|0.04|A|F|1994-02-18|1994-03-14|1994-03-18|TAKE BACK RETURN|AIR|e according to the caref| +87464|264175|14176|1|49|55818.84|0.09|0.05|N|O|1996-02-15|1996-02-20|1996-02-26|DELIVER IN PERSON|TRUCK| regular foxes. pen| +87464|988283|803|2|17|23311.08|0.00|0.04|N|O|1996-05-15|1996-04-05|1996-05-21|TAKE BACK RETURN|FOB|nding courts. enti| +87464|61345|11346|3|20|26126.80|0.04|0.02|N|O|1996-02-25|1996-03-09|1996-03-20|COLLECT COD|MAIL|ily even accounts. spec| +87464|24967|49968|4|34|64326.64|0.00|0.02|N|O|1996-05-05|1996-02-28|1996-05-30|TAKE BACK RETURN|TRUCK|regular, bold packag| +87464|609474|34499|5|50|69172.00|0.00|0.04|N|O|1996-03-22|1996-03-24|1996-03-24|COLLECT COD|MAIL| slyly pending accounts haggle| +87464|412948|37965|6|3|5582.76|0.00|0.07|N|O|1996-02-13|1996-02-21|1996-02-18|COLLECT COD|TRUCK| wake slyly carefully final war| +87464|407793|7794|7|2|3401.54|0.01|0.08|N|O|1996-03-13|1996-04-11|1996-03-24|TAKE BACK RETURN|RAIL|nto beans. quickly unusual deposits caj| +87465|769854|7400|1|5|9619.10|0.10|0.04|R|F|1993-06-30|1993-07-09|1993-07-11|DELIVER IN PERSON|FOB|ggle quickl| +87465|928958|3995|2|9|17882.19|0.01|0.08|A|F|1993-07-30|1993-07-30|1993-08-04|DELIVER IN PERSON|FOB|ly bold platelets. furiously eve| +87465|989838|14877|3|16|30844.64|0.05|0.07|A|F|1993-05-30|1993-06-27|1993-06-17|NONE|FOB|y brave packages. excus| +87465|194845|19852|4|47|91172.48|0.01|0.08|A|F|1993-08-22|1993-07-19|1993-08-26|NONE|FOB|tructions detect by the iro| +87465|745623|45624|5|45|75086.55|0.06|0.00|A|F|1993-06-23|1993-06-13|1993-07-03|COLLECT COD|MAIL|luffily even requests among the ironic, | +87465|677134|27135|6|18|19999.80|0.05|0.08|R|F|1993-05-19|1993-06-13|1993-05-28|COLLECT COD|AIR|ites sleep slyly. even pack| +87465|587461|12484|7|5|7742.20|0.03|0.06|A|F|1993-08-15|1993-07-26|1993-08-18|TAKE BACK RETURN|TRUCK|efully pen| +87466|456270|18780|1|42|51502.50|0.08|0.01|R|F|1994-06-30|1994-08-13|1994-07-14|DELIVER IN PERSON|FOB|zzle furiously across the regular, even as| +87466|526473|1494|2|16|23991.20|0.08|0.02|A|F|1994-07-29|1994-07-15|1994-08-01|NONE|FOB|nal foxes. blithely unusual frays hinder| +87466|429637|29638|3|17|26632.37|0.08|0.08|R|F|1994-07-10|1994-07-26|1994-07-20|DELIVER IN PERSON|FOB|d pinto beans. | +87466|897816|10334|4|36|65295.72|0.00|0.05|R|F|1994-08-13|1994-07-11|1994-09-12|COLLECT COD|TRUCK|al asymptotes. ideas after | +87467|960416|22936|1|41|60531.17|0.09|0.06|N|O|1997-03-13|1997-01-27|1997-03-14|NONE|TRUCK|r theodolites are. car| +87467|701395|1396|2|3|4189.08|0.04|0.05|N|O|1997-01-19|1997-01-27|1997-01-26|COLLECT COD|SHIP|regular requests detect carefully about| +87467|335062|10075|3|30|32911.50|0.05|0.03|N|O|1997-01-30|1996-12-29|1997-02-19|NONE|TRUCK| pinto beans. fluffily i| +87467|382912|32913|4|5|9974.50|0.03|0.08|N|O|1996-11-26|1996-12-24|1996-12-02|TAKE BACK RETURN|REG AIR|equests. regular dolphin| +87468|678580|28581|1|2|3117.10|0.06|0.05|N|O|1996-08-30|1996-08-18|1996-09-17|COLLECT COD|FOB|o the furiously special packages sleep quic| +87468|886248|23800|2|29|35791.80|0.05|0.08|N|O|1996-08-06|1996-08-13|1996-08-14|NONE|RAIL|tions use slyly alongside of the blithe| +87468|167865|30369|3|11|21261.46|0.02|0.00|N|O|1996-10-13|1996-07-21|1996-10-23|NONE|REG AIR|y unusual, final pinto be| +87468|305268|42787|4|28|35651.00|0.09|0.07|N|O|1996-07-03|1996-08-15|1996-08-02|DELIVER IN PERSON|RAIL|. regular theodolites sublate thinly. | +87469|848466|23499|1|47|66477.74|0.05|0.00|R|F|1994-06-06|1994-05-29|1994-06-30|COLLECT COD|FOB|xpress pinto beans sleep car| +87469|163202|712|2|44|55668.80|0.10|0.07|A|F|1994-04-24|1994-04-06|1994-04-26|DELIVER IN PERSON|TRUCK|final instructions. ironic reques| +87469|928398|40917|3|28|39937.80|0.09|0.05|R|F|1994-06-07|1994-05-12|1994-07-04|NONE|TRUCK|olites boost furiou| +87470|931128|18683|1|27|31295.16|0.10|0.04|R|F|1993-04-22|1993-04-03|1993-05-08|TAKE BACK RETURN|AIR|es haggle furiously. furiously silent| +87471|403064|3065|1|36|34813.44|0.10|0.07|A|F|1994-05-18|1994-07-10|1994-06-10|COLLECT COD|REG AIR|theodolites cajole sl| +87471|296369|21380|2|31|42325.85|0.01|0.02|A|F|1994-05-09|1994-06-29|1994-05-16|DELIVER IN PERSON|SHIP|counts. fin| +87496|315587|3106|1|1|1602.57|0.09|0.03|N|O|1998-04-24|1998-04-02|1998-04-26|COLLECT COD|REG AIR|grate carefu| +87496|58518|33521|2|39|57583.89|0.10|0.08|N|O|1998-03-14|1998-03-27|1998-03-22|COLLECT COD|RAIL|r, regular ho| +87497|246657|9162|1|12|19243.68|0.04|0.01|N|O|1998-03-30|1998-04-29|1998-04-15|NONE|TRUCK|e above the slyly unusua| +87497|563887|13888|2|3|5852.58|0.10|0.03|N|O|1998-04-01|1998-06-02|1998-04-04|DELIVER IN PERSON|SHIP|posits. quickly unusua| +87497|241858|16867|3|24|43196.16|0.04|0.04|N|O|1998-07-05|1998-05-03|1998-07-15|NONE|SHIP|eposits. carefully ironic req| +87497|893649|6167|4|27|44350.20|0.02|0.08|N|O|1998-04-02|1998-05-09|1998-04-19|NONE|REG AIR|structions integrate furiously after th| +87497|542874|17895|5|30|57505.50|0.07|0.05|N|O|1998-05-04|1998-06-18|1998-05-05|TAKE BACK RETURN|TRUCK|accounts detect along the slyly | +87498|42478|17479|1|26|36932.22|0.03|0.01|A|F|1993-08-17|1993-06-29|1993-08-20|NONE|TRUCK|e. silent frets| +87498|915871|3426|2|7|13207.81|0.03|0.08|R|F|1993-07-07|1993-07-01|1993-08-01|TAKE BACK RETURN|AIR|heodolites print blithely alongside of the | +87499|630542|18079|1|10|14725.10|0.03|0.07|N|O|1998-06-04|1998-05-26|1998-06-08|DELIVER IN PERSON|MAIL|ckages cajole fluffily regular packages. | +87499|515374|27885|2|23|31955.05|0.02|0.02|N|O|1998-03-27|1998-05-15|1998-04-07|COLLECT COD|SHIP|even pinto beans after th| +87500|479833|29834|1|20|36256.20|0.07|0.07|N|O|1996-12-22|1997-03-09|1997-01-01|COLLECT COD|REG AIR|ideas about the regular, even reque| +87500|551386|13898|2|11|15810.96|0.07|0.01|N|O|1997-02-08|1997-02-25|1997-02-26|DELIVER IN PERSON|MAIL|usly final, final in| +87500|137997|25504|3|28|56979.72|0.04|0.08|N|O|1997-02-19|1997-03-07|1997-03-20|COLLECT COD|REG AIR|s above the carefully even | +87500|312912|37925|4|44|84695.60|0.05|0.06|N|O|1997-02-20|1997-01-29|1997-02-25|DELIVER IN PERSON|SHIP| special requests wake furiously. reg| +87500|103564|41071|5|14|21945.84|0.05|0.03|N|O|1997-03-27|1997-02-19|1997-04-24|COLLECT COD|RAIL|ven foxes. foxes haggle | +87500|586997|36998|6|38|79190.86|0.08|0.07|N|O|1997-01-29|1997-02-08|1997-02-08|TAKE BACK RETURN|MAIL|ggle carefully| +87500|648982|48983|7|5|9654.75|0.05|0.07|N|O|1997-01-17|1997-02-06|1997-01-19|NONE|MAIL|ross the slyly even pinto beans. | +87501|427458|14983|1|34|47104.62|0.10|0.03|N|O|1997-04-01|1997-03-30|1997-04-20|NONE|REG AIR|quests. blithely pending gro| +87501|273217|23218|2|24|28564.80|0.04|0.00|N|O|1997-05-25|1997-04-01|1997-06-03|COLLECT COD|SHIP| pearls. theodolites abov| +87501|954914|42472|3|34|66941.58|0.09|0.07|N|O|1997-04-27|1997-05-02|1997-05-25|COLLECT COD|RAIL| cajole about the slyly| +87501|230471|5480|4|39|54656.94|0.01|0.02|N|O|1997-04-30|1997-04-01|1997-05-12|NONE|AIR|arefully. qui| +87501|512201|12202|5|23|27903.14|0.01|0.07|N|O|1997-02-08|1997-03-28|1997-03-09|DELIVER IN PERSON|SHIP|n, regular depos| +87501|552765|27788|6|5|9088.70|0.01|0.00|N|O|1997-02-28|1997-03-04|1997-03-13|DELIVER IN PERSON|RAIL|cuses. bravely expre| +87502|420196|20197|1|42|46879.14|0.06|0.01|N|O|1996-11-02|1996-10-14|1996-11-08|NONE|SHIP|busily across the pending,| +87502|220402|7915|2|43|56862.77|0.04|0.05|N|O|1996-08-19|1996-09-26|1996-09-08|COLLECT COD|AIR|ironic orbits nag quickly bold packag| +87502|283487|21003|3|16|23527.52|0.00|0.00|N|O|1996-09-17|1996-09-01|1996-09-18|NONE|RAIL|tions. blithely express excu| +87502|560440|35463|4|27|40511.34|0.05|0.08|N|O|1996-08-25|1996-09-26|1996-09-15|DELIVER IN PERSON|FOB|ully special requests after the | +87502|306095|6096|5|48|52851.84|0.00|0.06|N|O|1996-08-28|1996-09-13|1996-09-12|DELIVER IN PERSON|SHIP|ss requests boost furiousl| +87502|527780|40291|6|39|70502.64|0.05|0.08|N|O|1996-10-30|1996-09-20|1996-11-26|TAKE BACK RETURN|SHIP|ole. bold packages was even p| +87503|101985|39492|1|16|31791.68|0.01|0.07|A|F|1993-09-04|1993-07-10|1993-10-03|TAKE BACK RETURN|SHIP|ideas wake patterns. s| +87503|45987|33488|2|2|3865.96|0.08|0.06|A|F|1993-09-02|1993-08-22|1993-09-11|NONE|REG AIR|inal ideas affix quickly. blit| +87503|887235|12270|3|32|39110.08|0.07|0.00|A|F|1993-08-27|1993-08-16|1993-09-12|COLLECT COD|MAIL|ly express packages. slyly fina| +87503|746276|8791|4|33|43633.92|0.01|0.08|R|F|1993-09-08|1993-07-15|1993-10-03|TAKE BACK RETURN|AIR|ithely even packag| +87503|644985|32522|5|19|36669.05|0.00|0.01|A|F|1993-09-29|1993-07-24|1993-10-20|DELIVER IN PERSON|RAIL|ar deposits. blithely ironic foxes m| +87528|445401|20418|1|28|37698.64|0.05|0.03|A|F|1992-12-17|1993-01-01|1993-01-16|NONE|AIR| instructions must have to haggle | +87528|837845|362|2|8|14262.40|0.04|0.08|A|F|1993-01-20|1993-01-03|1993-02-16|NONE|MAIL|ular requests. brave packages haggle accord| +87528|644658|19683|3|8|12820.96|0.04|0.00|A|F|1993-01-07|1993-02-06|1993-01-19|NONE|MAIL|boost brave, final ideas. thin de| +87528|765387|15388|4|44|63903.40|0.10|0.03|A|F|1993-01-15|1993-02-07|1993-01-31|COLLECT COD|TRUCK|g deposits. careful| +87529|362283|24791|1|9|12107.43|0.08|0.05|N|O|1998-10-07|1998-07-31|1998-11-01|TAKE BACK RETURN|REG AIR|ackages among the| +87529|880629|43147|2|7|11267.06|0.03|0.02|N|O|1998-10-14|1998-09-01|1998-11-06|DELIVER IN PERSON|FOB|after the furiously| +87529|726058|13601|3|10|10840.20|0.01|0.06|N|O|1998-07-31|1998-08-30|1998-08-29|COLLECT COD|FOB|. blithely thin requests affix| +87530|101310|26315|1|10|13113.10|0.07|0.01|A|F|1993-01-27|1993-04-12|1993-02-23|NONE|TRUCK|slyly unusual deposits are alongside of the| +87530|710586|10587|2|48|76634.40|0.01|0.01|R|F|1993-03-04|1993-03-06|1993-03-22|TAKE BACK RETURN|REG AIR|hogs. accounts wake. regular theodol| +87530|816400|3949|3|17|22378.12|0.05|0.06|A|F|1993-03-01|1993-04-21|1993-03-05|DELIVER IN PERSON|REG AIR|ick accounts nag carefu| +87530|221821|34326|4|16|27884.96|0.02|0.03|R|F|1993-02-09|1993-04-15|1993-02-26|DELIVER IN PERSON|RAIL| excuses haggle quickly. | +87531|905060|30097|1|7|7455.14|0.10|0.03|R|F|1994-08-30|1994-08-12|1994-08-31|TAKE BACK RETURN|MAIL| quickly final requests. carefully blit| +87531|336521|49028|2|10|15575.10|0.01|0.01|A|F|1994-05-27|1994-08-04|1994-06-14|DELIVER IN PERSON|RAIL|ly ironic deposits use around the ste| +87532|500279|37810|1|18|23026.50|0.04|0.02|N|O|1998-03-21|1998-03-25|1998-03-24|COLLECT COD|SHIP|ep final idea| +87532|186896|11903|2|3|5948.67|0.01|0.05|N|O|1998-06-07|1998-03-28|1998-06-11|NONE|RAIL|etect fluffily across t| +87533|115344|15345|1|50|67967.00|0.08|0.02|A|F|1993-03-10|1993-04-10|1993-04-04|DELIVER IN PERSON|RAIL|ular sheaves. unusua| +87533|584912|22446|2|21|41934.69|0.02|0.08|R|F|1993-03-28|1993-03-01|1993-04-04|COLLECT COD|RAIL|ly even excuses hagg| +87533|605952|43489|3|4|7431.68|0.03|0.07|R|F|1993-05-05|1993-04-17|1993-05-19|TAKE BACK RETURN|AIR|cial dolphins haggle sly| +87534|836825|36826|1|11|19379.58|0.10|0.06|N|O|1996-04-02|1996-06-08|1996-04-18|DELIVER IN PERSON|AIR|ckly silent deposits. f| +87534|508032|33053|2|20|20800.20|0.08|0.05|N|O|1996-03-22|1996-05-25|1996-03-28|COLLECT COD|RAIL|as. slyly special packages dete| +87534|492931|30459|3|49|94271.59|0.03|0.06|N|O|1996-03-12|1996-04-29|1996-03-26|COLLECT COD|FOB|riously ironic| +87534|684574|22114|4|16|24936.64|0.05|0.03|N|O|1996-05-30|1996-04-26|1996-06-14|COLLECT COD|AIR|the pending deposits sn| +87534|631946|6971|5|26|48825.66|0.01|0.03|N|O|1996-04-24|1996-05-19|1996-05-01|COLLECT COD|TRUCK|lar account| +87534|104904|42411|6|18|34360.20|0.03|0.06|N|O|1996-05-12|1996-04-25|1996-05-26|DELIVER IN PERSON|REG AIR|al forges haggle. slyly final deposits | +87534|108940|21443|7|9|17540.46|0.09|0.04|N|O|1996-03-30|1996-04-16|1996-04-29|COLLECT COD|REG AIR|fily furiously ironi| +87535|941921|4440|1|27|52997.76|0.09|0.01|N|O|1995-11-18|1995-10-22|1995-12-14|NONE|MAIL|permanently. special theodolites solve | +87535|863138|38173|2|49|53953.41|0.09|0.04|N|O|1995-12-01|1995-11-20|1995-12-02|COLLECT COD|TRUCK|-- fluffily bold asymptotes sleep caref| +87535|757853|7854|3|22|42038.04|0.10|0.05|N|O|1995-09-12|1995-11-17|1995-09-19|NONE|MAIL|s the carefully even pinto be| +87535|234015|46520|4|32|30368.00|0.02|0.08|N|O|1995-10-28|1995-11-25|1995-11-04|COLLECT COD|AIR| are carefully blithely regular dolphi| +87535|80967|30968|5|18|35063.28|0.06|0.04|N|O|1995-11-28|1995-10-20|1995-12-12|COLLECT COD|RAIL|nic, regular platelets. blithely silent re| +87535|804281|16798|6|34|40298.16|0.10|0.07|N|O|1995-10-07|1995-12-01|1995-11-06|DELIVER IN PERSON|MAIL|nic requests gro| +87535|548497|48498|7|13|20091.11|0.03|0.03|N|O|1996-01-05|1995-10-26|1996-01-28|DELIVER IN PERSON|MAIL|out the quickly express i| +87560|582803|20337|1|22|41487.16|0.01|0.01|N|O|1997-02-28|1997-02-11|1997-03-17|TAKE BACK RETURN|AIR| use after the theodo| +87561|629362|41875|1|35|45196.55|0.00|0.08|N|O|1997-08-04|1997-08-27|1997-08-13|NONE|REG AIR|t packages poach blithely f| +87561|684544|9571|2|21|32098.71|0.09|0.08|N|O|1997-07-15|1997-09-12|1997-08-06|TAKE BACK RETURN|SHIP|tes. express, final foxes nag. care| +87561|116446|28949|3|6|8774.64|0.07|0.04|N|O|1997-10-02|1997-09-11|1997-10-30|DELIVER IN PERSON|AIR| accounts.| +87561|105412|42919|4|42|59531.22|0.06|0.02|N|O|1997-09-14|1997-08-18|1997-10-01|DELIVER IN PERSON|TRUCK|uctions are above the final packages.| +87561|653183|3184|5|41|46582.15|0.03|0.05|N|O|1997-08-09|1997-08-08|1997-09-07|COLLECT COD|TRUCK|ag. fluffily regular instruc| +87561|33682|8683|6|14|22619.52|0.00|0.04|N|O|1997-09-06|1997-07-31|1997-09-13|COLLECT COD|TRUCK|into beans. quickly regular reques| +87562|573128|35640|1|1|1201.10|0.05|0.04|A|F|1992-10-27|1992-12-28|1992-11-15|TAKE BACK RETURN|RAIL| carefully fluffy instructions are| +87563|954342|4343|1|2|2792.60|0.00|0.01|A|F|1995-03-22|1995-03-26|1995-04-17|DELIVER IN PERSON|AIR|ly unusual theodolites sleep blithely | +87563|616183|41208|2|3|3297.45|0.02|0.02|R|F|1995-05-07|1995-04-23|1995-05-31|DELIVER IN PERSON|MAIL|gular accounts haggle fina| +87563|179432|29433|3|23|34762.89|0.08|0.07|R|F|1995-05-27|1995-04-28|1995-06-08|COLLECT COD|SHIP|ully even packages hinder. f| +87563|705925|5926|4|14|27032.46|0.01|0.06|R|F|1995-03-06|1995-04-14|1995-04-05|NONE|RAIL| the express | +87563|478466|28467|5|20|28888.80|0.06|0.08|R|F|1995-03-24|1995-04-16|1995-04-17|COLLECT COD|AIR|r packages impress| +87563|572931|22932|6|47|94183.77|0.03|0.08|R|F|1995-03-27|1995-04-03|1995-04-15|COLLECT COD|REG AIR|ect evenly final accounts. regular, regula| +87564|418788|43805|1|40|68270.40|0.09|0.06|N|O|1997-10-21|1997-10-21|1997-11-01|DELIVER IN PERSON|SHIP|frays. accounts detect across t| +87565|847202|47203|1|3|3447.48|0.04|0.04|N|O|1997-07-03|1997-08-17|1997-07-28|DELIVER IN PERSON|MAIL|te. slyly even packag| +87566|834308|9341|1|27|33541.02|0.00|0.08|N|O|1997-08-14|1997-05-28|1997-09-10|COLLECT COD|AIR|luffily express t| +87566|200433|12938|2|25|33335.50|0.09|0.03|N|O|1997-06-25|1997-05-27|1997-07-09|COLLECT COD|RAIL|st across the permanently ironic i| +87566|674694|12234|3|37|61740.42|0.00|0.04|N|O|1997-07-09|1997-07-01|1997-07-11|COLLECT COD|RAIL|r ideas wak| +87567|284660|22176|1|46|75653.90|0.01|0.05|A|F|1993-02-11|1993-04-08|1993-03-03|DELIVER IN PERSON|TRUCK|ideas haggle against the fluffily final | +87567|269445|6961|2|15|21216.45|0.05|0.02|R|F|1993-02-16|1993-03-09|1993-02-17|DELIVER IN PERSON|SHIP|hely ideas. deposits among the sly| +87592|497445|9955|1|39|56254.38|0.04|0.01|A|F|1995-05-16|1995-03-09|1995-05-21|NONE|MAIL| accounts cajole fluffily deposits. iro| +87592|543200|18221|2|33|41024.94|0.06|0.03|A|F|1995-02-22|1995-05-04|1995-03-22|TAKE BACK RETURN|FOB|ctions. fluffil| +87592|556468|18980|3|48|73173.12|0.00|0.01|A|F|1995-05-28|1995-04-12|1995-06-09|TAKE BACK RETURN|AIR|ges after the| +87592|544528|19549|4|11|17297.50|0.05|0.07|R|F|1995-03-31|1995-04-21|1995-04-02|NONE|RAIL|egular deposits. slyly bold r| +87593|968302|30822|1|32|43848.32|0.04|0.07|N|O|1995-06-25|1995-07-08|1995-07-17|TAKE BACK RETURN|TRUCK|lithely final accounts. packages| +87593|238610|26123|2|42|65041.20|0.06|0.02|N|O|1995-08-15|1995-07-27|1995-08-26|NONE|AIR| quickly stealthy ide| +87593|315930|15931|3|36|70053.12|0.09|0.07|N|O|1995-07-29|1995-07-15|1995-07-30|DELIVER IN PERSON|SHIP| express accounts snooze| +87593|832688|20237|4|43|69687.52|0.05|0.04|N|O|1995-07-24|1995-08-15|1995-07-28|COLLECT COD|TRUCK|ffily pending packages. foxes wake a| +87594|140787|3290|1|16|29244.48|0.07|0.01|N|O|1995-09-14|1995-09-15|1995-10-03|TAKE BACK RETURN|MAIL|c platelets snooze| +87594|206998|44511|2|42|80009.16|0.04|0.06|N|O|1995-09-26|1995-09-07|1995-10-08|NONE|SHIP|es. foxes sleep. p| +87594|11787|24288|3|2|3397.56|0.08|0.07|N|O|1995-09-23|1995-09-09|1995-10-04|DELIVER IN PERSON|FOB|ht to snooze slyly about the| +87594|90157|15160|4|18|20648.70|0.00|0.06|N|O|1995-08-13|1995-08-14|1995-09-05|DELIVER IN PERSON|AIR|de of the quickly bold package| +87595|168616|31120|1|3|5053.83|0.02|0.04|N|O|1995-09-18|1995-09-11|1995-10-06|TAKE BACK RETURN|AIR|s use slyly after the re| +87596|662778|318|1|2|3481.48|0.05|0.06|A|F|1993-11-20|1993-12-30|1993-12-08|TAKE BACK RETURN|RAIL|thely bold packages lose ca| +87596|306070|31083|2|14|15064.84|0.03|0.01|A|F|1994-02-02|1994-01-13|1994-02-10|COLLECT COD|SHIP|eep carefu| +87596|102722|40229|3|49|84511.28|0.09|0.05|R|F|1993-12-30|1994-01-28|1994-01-15|COLLECT COD|RAIL|ironic, pending dolphins| +87596|434190|46699|4|10|11241.70|0.09|0.00|A|F|1994-01-15|1993-12-06|1994-01-28|DELIVER IN PERSON|RAIL|kages detect furiousl| +87596|421331|46348|5|33|41326.23|0.00|0.00|A|F|1993-12-27|1993-12-17|1993-12-30|NONE|SHIP|s accounts. regula| +87596|298672|11178|6|15|25059.90|0.10|0.00|A|F|1994-02-07|1994-02-03|1994-02-09|NONE|TRUCK|nusual requests | +87597|853907|3908|1|46|85599.56|0.04|0.08|R|F|1994-09-14|1994-10-06|1994-09-20|NONE|SHIP|s packages cajole. packages s| +87597|604833|42370|2|2|3475.60|0.07|0.02|A|F|1994-11-04|1994-10-30|1994-11-17|NONE|FOB|ecial dependencies. | +87598|206474|6475|1|32|44174.72|0.10|0.00|R|F|1994-10-31|1994-09-01|1994-11-14|COLLECT COD|AIR|regular asymptotes wake accord| +87598|207763|32772|2|1|1670.75|0.05|0.06|R|F|1994-08-29|1994-10-13|1994-09-07|DELIVER IN PERSON|FOB|eposits along| +87598|864595|39630|3|15|23393.25|0.08|0.02|A|F|1994-08-12|1994-09-26|1994-08-30|DELIVER IN PERSON|SHIP|blithely regular deposits try to sleep. c| +87598|233508|21021|4|49|70633.01|0.10|0.02|A|F|1994-09-21|1994-10-23|1994-10-15|COLLECT COD|AIR|eposits wake quickl| +87598|568084|43107|5|14|16128.84|0.00|0.06|R|F|1994-10-15|1994-09-27|1994-11-04|NONE|SHIP|nusual requests use blithely| +87598|784438|34439|6|38|57851.20|0.09|0.03|R|F|1994-11-17|1994-10-25|1994-12-02|TAKE BACK RETURN|REG AIR|totes cajole quickly. blithely bo| +87599|578608|28609|1|5|8432.90|0.07|0.01|N|O|1996-06-25|1996-05-21|1996-07-20|DELIVER IN PERSON|RAIL|ounts along the final pin| +87599|652901|27928|2|49|90839.63|0.00|0.01|N|O|1996-04-29|1996-04-26|1996-05-17|TAKE BACK RETURN|TRUCK|riously alongside of the regular pi| +87599|300560|38079|3|41|63982.55|0.06|0.06|N|O|1996-05-05|1996-05-24|1996-05-15|DELIVER IN PERSON|MAIL|riously final packages engage carefully | +87599|501528|26549|4|18|27531.00|0.07|0.00|N|O|1996-03-19|1996-05-19|1996-04-10|COLLECT COD|MAIL|heodolites cajole. special, regular| +87624|516639|4170|1|2|3311.22|0.00|0.03|N|O|1996-01-10|1996-01-28|1996-01-19|DELIVER IN PERSON|AIR|round the furiously even dependenci| +87624|147151|9654|2|8|9585.20|0.05|0.08|N|O|1996-04-16|1996-01-28|1996-05-03|DELIVER IN PERSON|AIR|y final deposits. ironic p| +87625|117418|4925|1|45|64593.45|0.09|0.03|R|F|1992-04-21|1992-05-09|1992-05-19|COLLECT COD|RAIL|t platelets nag careful| +87625|441471|16488|2|44|62147.80|0.09|0.00|R|F|1992-04-20|1992-05-07|1992-05-11|NONE|TRUCK|r requests cajole regular cou| +87625|793752|31298|3|11|20302.92|0.08|0.06|R|F|1992-05-17|1992-05-31|1992-06-16|DELIVER IN PERSON|RAIL|totes along the carefully iron| +87625|578753|16287|4|40|73269.20|0.07|0.01|R|F|1992-06-28|1992-05-13|1992-07-18|COLLECT COD|REG AIR|nic, ironic| +87626|996532|34090|1|7|11399.43|0.07|0.04|A|F|1993-11-14|1994-01-26|1993-11-18|COLLECT COD|SHIP| asymptotes haggle qu| +87626|700085|12600|2|47|50997.35|0.03|0.00|R|F|1994-01-26|1993-11-30|1994-02-18|TAKE BACK RETURN|AIR|riously ironic asy| +87626|312387|24894|3|44|61572.28|0.04|0.04|A|F|1994-01-04|1994-01-23|1994-01-11|NONE|TRUCK| foxes. blithel| +87626|280092|5103|4|33|35378.64|0.04|0.03|R|F|1993-12-25|1993-12-18|1994-01-18|NONE|TRUCK| the slyly ironic fray| +87626|490031|15050|5|37|37777.37|0.05|0.03|R|F|1993-12-23|1994-01-29|1994-01-21|DELIVER IN PERSON|MAIL|ctions wake fluffily. express instruc| +87626|941923|29478|6|24|47157.12|0.00|0.06|A|F|1993-11-16|1993-12-19|1993-11-17|COLLECT COD|REG AIR|ronic foxes-- pending, quick | +87627|891457|16492|1|40|57936.40|0.04|0.03|R|F|1992-05-20|1992-07-14|1992-05-26|TAKE BACK RETURN|MAIL|ests. blithely silent | +87627|711370|48913|2|1|1381.34|0.02|0.02|R|F|1992-05-16|1992-06-21|1992-05-21|NONE|FOB|le furiousl| +87627|989017|26575|3|15|16589.55|0.03|0.07|A|F|1992-06-05|1992-07-16|1992-06-23|TAKE BACK RETURN|TRUCK|inal instruc| +87627|393809|31331|4|24|45666.96|0.02|0.02|R|F|1992-08-10|1992-06-15|1992-09-04|TAKE BACK RETURN|REG AIR|ar ideas haggle about the unusual pack| +87627|746936|46937|5|2|3965.80|0.05|0.08|R|F|1992-08-06|1992-06-22|1992-09-02|TAKE BACK RETURN|SHIP| packages wake slyly slyl| +87627|740765|3280|6|38|68617.74|0.04|0.02|A|F|1992-07-12|1992-07-24|1992-08-06|COLLECT COD|MAIL|oss the carefully even ideas solve furiou| +87628|644283|6796|1|29|35590.25|0.07|0.02|N|O|1998-07-25|1998-09-09|1998-08-09|NONE|AIR|quests cajole furiously furiously ironic pi| +87628|459384|46912|2|43|57764.48|0.00|0.04|N|O|1998-07-30|1998-08-08|1998-08-25|COLLECT COD|TRUCK|cies. slyl| +87628|859315|21833|3|47|59890.69|0.09|0.01|N|O|1998-08-22|1998-08-13|1998-08-31|DELIVER IN PERSON|AIR|gainst the| +87628|498361|23380|4|34|46217.56|0.10|0.04|N|O|1998-08-31|1998-10-01|1998-09-08|DELIVER IN PERSON|REG AIR|s. slyly re| +87628|940713|40714|5|37|64885.79|0.06|0.05|N|O|1998-10-24|1998-08-14|1998-11-23|TAKE BACK RETURN|AIR|ng carefully | +87628|553945|16457|6|24|47974.08|0.02|0.07|N|O|1998-09-11|1998-08-20|1998-10-11|DELIVER IN PERSON|RAIL|rate slyly unusual platelets. | +87629|91079|16082|1|25|26751.75|0.04|0.02|N|O|1997-04-06|1997-06-22|1997-05-03|DELIVER IN PERSON|REG AIR|press packages cajole quickly to th| +87629|748130|10645|2|31|36521.10|0.10|0.08|N|O|1997-06-29|1997-05-19|1997-07-06|NONE|MAIL|h among the bold warthogs. carefully regu| +87629|806214|31247|3|10|11201.70|0.07|0.00|N|O|1997-07-06|1997-05-22|1997-07-23|COLLECT COD|MAIL|e furiously. special dep| +87629|28751|3752|4|38|63830.50|0.07|0.08|N|O|1997-06-30|1997-06-25|1997-07-28|COLLECT COD|FOB|cross the final pinto| +87629|215065|27570|5|47|46062.35|0.08|0.01|N|O|1997-05-14|1997-05-06|1997-05-23|TAKE BACK RETURN|SHIP| daring packages. | +87629|592513|17536|6|11|17660.39|0.05|0.00|N|O|1997-04-02|1997-05-11|1997-04-19|NONE|TRUCK|etly express ideas wake around the slyly f| +87629|354540|4541|7|26|41457.78|0.04|0.02|N|O|1997-04-26|1997-06-17|1997-05-11|TAKE BACK RETURN|TRUCK|uickly within the blithe, express | +87630|753208|3209|1|38|47924.46|0.06|0.00|R|F|1994-10-31|1994-11-10|1994-11-19|TAKE BACK RETURN|MAIL|cajole. blithely final theodol| +87630|150924|925|2|39|77021.88|0.08|0.06|R|F|1994-10-17|1994-10-08|1994-10-27|TAKE BACK RETURN|MAIL|ding accounts haggle slyly. caref| +87630|565535|28047|3|20|32010.20|0.05|0.06|A|F|1994-12-08|1994-10-27|1994-12-30|COLLECT COD|TRUCK|aggle furiously| +87630|930746|5783|4|29|51524.30|0.04|0.07|R|F|1994-10-25|1994-10-27|1994-11-21|DELIVER IN PERSON|TRUCK|inal deposits sleep furiously regu| +87631|588213|725|1|22|28626.18|0.00|0.08|R|F|1993-05-28|1993-07-19|1993-06-20|DELIVER IN PERSON|SHIP|ironic pain| +87631|90910|28414|2|44|83640.04|0.02|0.03|R|F|1993-05-23|1993-07-19|1993-05-24|COLLECT COD|TRUCK|carefully even packages along the fina| +87631|922442|47479|3|47|68826.80|0.09|0.02|A|F|1993-08-03|1993-07-11|1993-08-24|TAKE BACK RETURN|RAIL|eans detect blithely. ironic packages acros| +87631|482418|44928|4|24|33609.36|0.08|0.06|R|F|1993-06-03|1993-08-05|1993-06-10|NONE|MAIL|und the slyly regular ideas. care| +87631|993989|19028|5|23|47907.62|0.04|0.00|A|F|1993-07-01|1993-08-03|1993-07-31|DELIVER IN PERSON|MAIL|bold frets are furiously. furious| +87656|797194|22225|1|29|37443.64|0.07|0.06|N|O|1995-06-27|1995-06-15|1995-07-08|TAKE BACK RETURN|AIR|os along the slyly reg| +87656|435657|48166|2|49|78038.87|0.01|0.00|N|O|1995-08-10|1995-06-19|1995-09-06|COLLECT COD|REG AIR|s. slyly bold platelets boost carefully. pi| +87656|81493|6496|3|37|54556.13|0.09|0.06|N|O|1995-08-11|1995-07-21|1995-08-29|TAKE BACK RETURN|MAIL|slyly even r| +87656|636096|36097|4|25|25801.50|0.00|0.07|N|O|1995-06-30|1995-06-18|1995-07-09|COLLECT COD|SHIP|s accounts. blithely| +87656|864745|2297|5|50|85485.00|0.09|0.04|N|F|1995-06-03|1995-07-22|1995-06-20|DELIVER IN PERSON|SHIP|tes nag. blithely ironic theo| +87656|765135|27651|6|1|1200.10|0.07|0.01|N|O|1995-09-02|1995-07-22|1995-09-27|NONE|REG AIR|es. final, bold packages promise slyly si| +87656|622566|10103|7|1|1488.53|0.10|0.04|N|O|1995-06-28|1995-07-10|1995-07-18|DELIVER IN PERSON|FOB|ave to boost above the doggedl| +87657|460430|22940|1|8|11123.28|0.04|0.02|A|F|1993-09-03|1993-10-28|1993-09-26|DELIVER IN PERSON|REG AIR| the silent packages cajole fluffily exp| +87657|431424|43933|2|16|21686.40|0.09|0.04|R|F|1993-08-13|1993-10-27|1993-08-20|TAKE BACK RETURN|MAIL|quickly. finally fin| +87657|927962|15517|3|41|81586.72|0.10|0.07|A|F|1993-11-17|1993-11-02|1993-12-14|NONE|FOB|l requests haggle. fluffily final| +87657|256739|31750|4|8|13565.76|0.10|0.01|A|F|1993-08-20|1993-10-05|1993-09-04|DELIVER IN PERSON|RAIL|ckages. requests detect even ac| +87657|10745|35746|5|14|23180.36|0.09|0.02|R|F|1993-10-07|1993-09-26|1993-10-22|NONE|FOB|ccording to the even platelets. even idea| +87658|390418|15433|1|16|24134.40|0.00|0.01|N|O|1995-11-26|1995-11-10|1995-12-22|DELIVER IN PERSON|RAIL|s. silent, ironic | +87658|738574|13603|2|10|16125.40|0.02|0.01|N|O|1995-11-09|1995-12-28|1995-11-28|NONE|FOB|ajole fluffily blithely expre| +87658|208178|20683|3|28|30412.48|0.10|0.03|N|O|1995-10-07|1995-12-26|1995-10-30|NONE|TRUCK|permanent deposits| +87658|831519|6552|4|3|4351.41|0.01|0.05|N|O|1995-11-27|1995-11-19|1995-12-22|NONE|TRUCK|sits mold furiously bo| +87658|330984|5997|5|20|40299.40|0.05|0.00|N|O|1995-10-21|1995-11-18|1995-10-30|NONE|RAIL|ly special patterns! | +87659|974653|37173|1|6|10365.66|0.03|0.05|R|F|1994-07-17|1994-05-30|1994-08-11|NONE|MAIL|reful accounts according | +87659|980848|43368|2|8|15430.40|0.02|0.03|R|F|1994-05-20|1994-05-19|1994-06-15|COLLECT COD|AIR|ns. carefully busy p| +87659|111631|36636|3|33|54206.79|0.05|0.02|R|F|1994-04-17|1994-06-15|1994-04-26|DELIVER IN PERSON|AIR|ackages. ironically pending theodo| +87659|167410|42417|4|48|70915.68|0.00|0.08|A|F|1994-07-09|1994-05-26|1994-07-19|COLLECT COD|REG AIR|usly ironic foxes.| +87659|651854|1855|5|30|54174.60|0.10|0.05|R|F|1994-04-18|1994-05-28|1994-04-26|TAKE BACK RETURN|FOB|requests according t| +87660|970146|7704|1|37|44995.70|0.05|0.03|N|O|1996-08-21|1996-09-14|1996-09-04|DELIVER IN PERSON|MAIL|cial requests sleep ironic accounts. carefu| +87660|234234|46739|2|25|29205.50|0.10|0.02|N|O|1996-10-01|1996-08-03|1996-10-10|COLLECT COD|AIR|ructions ca| +87660|755933|43479|3|28|55689.20|0.02|0.07|N|O|1996-09-13|1996-09-08|1996-10-02|TAKE BACK RETURN|FOB|ly silent ideas solve q| +87660|951157|1158|4|23|27786.53|0.08|0.05|N|O|1996-10-12|1996-09-06|1996-10-20|TAKE BACK RETURN|AIR|arefully special, final pack| +87660|94798|44799|5|11|19720.69|0.02|0.06|N|O|1996-09-06|1996-09-15|1996-10-04|COLLECT COD|FOB|mptotes haggle quick| +87660|256050|31061|6|26|26157.04|0.01|0.05|N|O|1996-10-12|1996-09-11|1996-11-08|TAKE BACK RETURN|RAIL|bold asymptotes wake | +87660|416378|28887|7|39|50479.65|0.07|0.06|N|O|1996-07-14|1996-08-17|1996-08-02|DELIVER IN PERSON|SHIP| slyly ironic theodolites wake f| +87661|62245|12246|1|49|59154.76|0.00|0.02|N|O|1995-08-11|1995-07-25|1995-09-04|COLLECT COD|REG AIR|ions haggle quick| +87661|141466|3969|2|20|30149.20|0.03|0.04|N|O|1995-07-03|1995-07-13|1995-07-12|COLLECT COD|FOB|ges. furiously | +87661|611130|48667|3|34|35397.40|0.08|0.08|N|O|1995-07-18|1995-08-03|1995-08-17|NONE|MAIL|e quickly blithel| +87661|247477|47478|4|50|71223.00|0.09|0.06|N|O|1995-08-01|1995-07-31|1995-08-13|DELIVER IN PERSON|MAIL|y besides the regular packages| +87662|866298|16299|1|41|51834.25|0.00|0.00|A|F|1995-01-12|1994-12-28|1995-01-16|DELIVER IN PERSON|SHIP|al request| +87662|854776|42328|2|46|79613.58|0.08|0.05|A|F|1995-01-27|1994-11-30|1995-02-02|COLLECT COD|REG AIR| busy accounts| +87662|205458|30467|3|20|27268.80|0.10|0.07|A|F|1994-12-14|1994-12-07|1994-12-30|COLLECT COD|REG AIR|lithely bold pint| +87662|115865|40870|4|23|43259.78|0.10|0.05|R|F|1994-11-10|1995-01-13|1994-11-13|NONE|MAIL|ully unusual theodolites bo| +87662|330598|5611|5|50|81429.00|0.09|0.04|R|F|1994-11-13|1994-12-11|1994-12-07|COLLECT COD|FOB| above the regular| +87662|348841|48842|6|15|28347.45|0.04|0.02|A|F|1995-02-02|1995-01-21|1995-02-12|COLLECT COD|AIR|eposits use across the | +87662|966079|41118|7|39|44656.17|0.03|0.02|A|F|1994-11-23|1994-12-07|1994-11-27|COLLECT COD|FOB|yly final requests use slyly slyly unusual| +87663|873395|10947|1|22|30103.70|0.09|0.05|N|O|1997-09-28|1997-09-13|1997-10-12|COLLECT COD|AIR|ays sleep quickly. furiously| +87663|137056|24563|2|43|47001.15|0.05|0.03|N|O|1997-10-20|1997-09-28|1997-11-09|DELIVER IN PERSON|RAIL|ar foxes. blithely bold pinto beans | +87663|499882|49883|3|24|45164.64|0.04|0.08|N|O|1997-09-07|1997-09-22|1997-09-25|NONE|REG AIR|r, ironic theodolites. carefully| +87663|501838|1839|4|24|44155.44|0.00|0.07|N|O|1997-10-10|1997-09-18|1997-10-12|COLLECT COD|AIR|t the platelets. carefully even| +87688|397466|47467|1|45|70355.25|0.03|0.00|A|F|1994-08-03|1994-07-09|1994-08-06|DELIVER IN PERSON|TRUCK|quickly according t| +87688|201700|1701|2|50|80084.50|0.04|0.01|A|F|1994-09-19|1994-07-29|1994-09-28|COLLECT COD|SHIP|nic frets. fluffily ironic platelets h| +87688|968468|6026|3|46|70675.32|0.00|0.04|A|F|1994-06-14|1994-07-07|1994-06-17|COLLECT COD|MAIL|quickly about the slyly final theod| +87688|30840|43341|4|29|51354.36|0.01|0.02|A|F|1994-07-18|1994-07-17|1994-07-22|COLLECT COD|MAIL|cing platelets. furiously express requ| +87688|315682|40695|5|22|37348.74|0.04|0.03|R|F|1994-08-07|1994-07-09|1994-08-15|TAKE BACK RETURN|TRUCK|oost quickly. blithely silent deposits doz| +87688|654699|29726|6|10|16536.60|0.04|0.01|R|F|1994-08-29|1994-07-25|1994-09-07|DELIVER IN PERSON|FOB|l, ironic excuses are finally after the sl| +87688|509343|9344|7|30|40569.60|0.06|0.08|A|F|1994-09-09|1994-08-11|1994-09-28|NONE|AIR|ironic dependencies. fi| +87689|526923|26924|1|10|19499.00|0.02|0.03|N|O|1995-07-31|1995-08-20|1995-08-14|DELIVER IN PERSON|MAIL|haggle. quiet deposits run blithely regula| +87689|991037|41038|2|21|23687.79|0.07|0.00|N|O|1995-07-02|1995-09-08|1995-07-14|DELIVER IN PERSON|RAIL|its are qu| +87689|342604|42605|3|43|70803.37|0.00|0.01|N|O|1995-09-05|1995-07-25|1995-09-16|NONE|TRUCK|carefully at the carefully re| +87690|575083|12617|1|12|13896.72|0.02|0.07|N|O|1997-06-28|1997-08-14|1997-07-14|DELIVER IN PERSON|RAIL| the furiously express requests haggle blit| +87690|408076|8077|2|25|24601.25|0.04|0.00|N|O|1997-07-06|1997-07-22|1997-07-30|COLLECT COD|FOB|. slyly unusual requests a| +87691|523402|10933|1|15|21380.70|0.09|0.05|N|O|1997-03-10|1997-04-05|1997-04-01|DELIVER IN PERSON|AIR|ackages sleep pending, bold p| +87691|805794|30827|2|47|79888.25|0.06|0.01|N|O|1997-03-09|1997-03-29|1997-03-13|DELIVER IN PERSON|SHIP|y regular Ti| +87691|968858|18859|3|23|44316.63|0.02|0.06|N|O|1997-06-14|1997-05-19|1997-07-12|TAKE BACK RETURN|TRUCK|ns above the pending, even plate| +87692|732509|7538|1|8|12331.76|0.00|0.03|N|O|1995-07-15|1995-08-04|1995-07-17|TAKE BACK RETURN|RAIL|slyly regular excuses| +87693|335970|35971|1|36|72214.56|0.03|0.05|N|O|1997-10-21|1997-10-13|1997-11-15|COLLECT COD|FOB|ions. ironic, even r| +87693|631560|31561|2|2|2983.06|0.02|0.04|N|O|1997-07-27|1997-10-17|1997-08-21|NONE|FOB|ng excuses gro| +87693|612602|139|3|2|3029.14|0.05|0.01|N|O|1997-08-20|1997-08-31|1997-09-10|COLLECT COD|REG AIR|arefully special instructions wa| +87693|989088|26646|4|19|22363.76|0.10|0.01|N|O|1997-11-08|1997-10-20|1997-11-10|NONE|SHIP|ccounts according to the blithely | +87694|392670|30192|1|36|63455.76|0.00|0.03|N|O|1998-01-21|1997-11-19|1998-02-05|TAKE BACK RETURN|REG AIR| accounts.| +87694|595943|45944|2|44|89712.48|0.01|0.07|N|O|1998-02-13|1998-01-07|1998-02-21|COLLECT COD|TRUCK|tes. even packages sleep furiously? furiou| +87695|122242|22243|1|43|54362.32|0.03|0.04|N|O|1996-10-26|1996-08-08|1996-11-08|DELIVER IN PERSON|FOB|ess requests about the spe| +87695|519236|31747|2|18|22593.78|0.06|0.04|N|O|1996-07-02|1996-08-03|1996-07-14|COLLECT COD|MAIL|onic requests | +87695|796902|21933|3|18|35979.66|0.06|0.06|N|O|1996-08-05|1996-09-01|1996-08-28|NONE|REG AIR|en instructions. quickly bold packa| +87695|517168|17169|4|39|46220.46|0.02|0.03|N|O|1996-07-12|1996-08-28|1996-08-05|TAKE BACK RETURN|FOB|ithely unusual excuses. fluffily unu| +87695|26996|1997|5|11|21152.89|0.06|0.05|N|O|1996-08-07|1996-09-24|1996-09-04|NONE|TRUCK|tions at the fluffi| +87695|715758|40787|6|10|17737.20|0.08|0.08|N|O|1996-08-06|1996-09-28|1996-08-21|COLLECT COD|RAIL|iously along the carefully | +87695|730688|5717|7|21|36091.65|0.00|0.02|N|O|1996-10-10|1996-08-18|1996-10-30|DELIVER IN PERSON|MAIL|ickly regul| +87720|662017|49557|1|38|37201.24|0.07|0.05|A|F|1992-12-31|1993-02-18|1993-01-07|COLLECT COD|RAIL|s. blithely ironic theo| +87720|502959|40490|2|1|1961.93|0.02|0.06|A|F|1993-01-22|1993-02-10|1993-02-09|COLLECT COD|MAIL|ckages. pending, regular accoun| +87720|224325|49334|3|46|57468.26|0.10|0.03|R|F|1993-03-11|1993-02-19|1993-03-19|DELIVER IN PERSON|REG AIR|nstructions along the ironic, final s| +87721|848509|11026|1|42|61213.32|0.09|0.06|N|O|1997-11-15|1997-11-23|1997-12-06|NONE|FOB|ests sleep carefully regular re| +87721|887697|37698|2|30|50539.50|0.00|0.04|N|O|1997-12-26|1997-11-13|1998-01-09|NONE|SHIP|sly quickly ironi| +87721|512984|25495|3|34|67896.64|0.01|0.03|N|O|1997-11-18|1997-12-16|1997-11-23|NONE|MAIL|nts above | +87722|898295|23330|1|3|3879.75|0.03|0.06|N|O|1997-10-25|1997-11-15|1997-11-09|COLLECT COD|MAIL|uests. regular, express theodolites cajole.| +87722|639763|2276|2|34|57892.82|0.00|0.06|N|O|1997-11-03|1997-11-03|1997-11-30|DELIVER IN PERSON|TRUCK|doubt slyly furiously eve| +87722|496519|34047|3|37|56073.13|0.04|0.08|N|O|1997-10-10|1997-10-03|1997-10-25|TAKE BACK RETURN|MAIL|ily express pinto beans. careful| +87722|982993|32994|4|36|74734.20|0.02|0.01|N|O|1997-12-03|1997-11-14|1997-12-18|NONE|FOB|s. furiously ironic accounts caj| +87722|151451|38961|5|28|42068.60|0.09|0.03|N|O|1997-10-05|1997-11-11|1997-10-25|COLLECT COD|REG AIR|gle carefully above the packages. quickly | +87722|421862|46879|6|6|10703.04|0.09|0.02|N|O|1997-10-16|1997-09-29|1997-10-29|DELIVER IN PERSON|SHIP|final deposits haggle quick | +87723|777908|2939|1|49|97307.63|0.08|0.06|N|O|1998-07-18|1998-06-08|1998-08-17|NONE|MAIL| dolphins nag around the patterns| +87724|409728|22237|1|43|70421.10|0.02|0.03|R|F|1993-11-17|1993-10-11|1993-11-27|DELIVER IN PERSON|TRUCK|. carefully bold a| +87725|178916|16426|1|50|99745.50|0.07|0.03|N|O|1996-12-04|1996-10-26|1996-12-16|COLLECT COD|RAIL|fily unusual Tiresias. express deposits bel| +87725|40350|27851|2|47|60646.45|0.01|0.01|N|O|1996-09-11|1996-10-20|1996-10-03|COLLECT COD|FOB|ts wake slyly. r| +87725|156376|6377|3|32|45835.84|0.06|0.02|N|O|1996-11-15|1996-10-05|1996-12-10|COLLECT COD|FOB|odolites use express ideas. final, ironic| +87725|203248|3249|4|48|55259.04|0.01|0.05|N|O|1996-10-28|1996-10-08|1996-11-17|DELIVER IN PERSON|MAIL|old fluffily regular packages. close deposi| +87726|878616|41134|1|48|76539.36|0.06|0.08|N|O|1998-06-17|1998-07-07|1998-07-06|DELIVER IN PERSON|FOB|inst the unusual pinto bean| +87727|293087|5593|1|46|49683.22|0.04|0.01|N|O|1996-09-09|1996-10-11|1996-09-23|DELIVER IN PERSON|RAIL| ironic instruct| +87727|911334|11335|2|1|1345.29|0.07|0.08|N|O|1996-10-05|1996-10-11|1996-10-18|DELIVER IN PERSON|MAIL|uld wake slyly. reques| +87727|780858|43374|3|30|58164.60|0.05|0.01|N|O|1996-10-12|1996-10-07|1996-10-14|DELIVER IN PERSON|RAIL|furiously. furio| +87727|865829|40864|4|28|50253.84|0.10|0.04|N|O|1996-10-17|1996-10-17|1996-11-03|COLLECT COD|TRUCK|le alongside of the| +87752|514167|1698|1|7|8267.98|0.05|0.01|R|F|1994-10-02|1994-08-19|1994-10-10|COLLECT COD|RAIL|vely carefully unusual platelets.| +87752|591619|16642|2|14|23948.26|0.06|0.01|R|F|1994-08-27|1994-08-25|1994-08-29|COLLECT COD|TRUCK|fully regular instructions print s| +87752|326080|13599|3|20|22121.40|0.07|0.07|A|F|1994-11-10|1994-08-21|1994-12-06|NONE|FOB|above the quickly | +87752|420130|7655|4|22|23102.42|0.03|0.03|R|F|1994-07-21|1994-08-28|1994-08-11|DELIVER IN PERSON|RAIL|es boost regular, unusual instructions. | +87752|120664|8171|5|49|82548.34|0.09|0.05|A|F|1994-11-10|1994-09-07|1994-11-21|COLLECT COD|SHIP|rthogs use blithely above the deposits. | +87752|988111|631|6|30|35972.10|0.02|0.05|A|F|1994-10-08|1994-09-05|1994-10-19|DELIVER IN PERSON|FOB|odolites according to the | +87752|167381|29885|7|35|50693.30|0.10|0.07|R|F|1994-10-23|1994-10-04|1994-11-13|DELIVER IN PERSON|SHIP|ideas. ironic packages detect bli| +87753|165507|3017|1|10|15725.00|0.05|0.01|A|F|1992-02-10|1992-03-26|1992-02-17|COLLECT COD|MAIL|es wake doggedly of the final, silent pinto| +87753|673880|11420|2|49|90838.65|0.09|0.01|R|F|1992-04-30|1992-03-13|1992-05-13|DELIVER IN PERSON|MAIL|uickly final requests hang furiously fin| +87753|895016|20051|3|33|33362.01|0.05|0.07|R|F|1992-03-16|1992-02-12|1992-03-28|TAKE BACK RETURN|RAIL|l, special requests. special foxes | +87753|533648|8669|4|16|26905.92|0.04|0.01|A|F|1992-02-14|1992-03-09|1992-02-15|TAKE BACK RETURN|REG AIR|eep above the regular| +87753|12566|67|5|32|47313.92|0.10|0.00|R|F|1992-04-23|1992-03-13|1992-04-25|TAKE BACK RETURN|MAIL|xcuses-- final pinto | +87754|83562|46064|1|6|9273.36|0.03|0.08|N|O|1996-05-18|1996-04-24|1996-05-23|COLLECT COD|FOB|haggle furiously among the busily final r| +87754|418798|6323|2|46|78971.42|0.04|0.00|N|O|1996-06-04|1996-04-04|1996-06-25|NONE|SHIP|ts. requests alongside of the regular, pen| +87754|730439|17982|3|10|14694.00|0.07|0.03|N|O|1996-03-27|1996-04-26|1996-04-17|NONE|FOB|express ideas haggle. furiously pendin| +87754|476146|1165|4|49|54983.88|0.10|0.03|N|O|1996-03-27|1996-03-14|1996-04-05|COLLECT COD|TRUCK| dependencies detect de| +87755|127626|40129|1|22|36379.64|0.04|0.05|N|O|1998-03-15|1998-05-12|1998-04-13|COLLECT COD|RAIL|he blithely final asymptotes. regu| +87755|2458|39959|2|5|6802.25|0.01|0.01|N|O|1998-03-01|1998-04-26|1998-03-29|COLLECT COD|MAIL|uctions. carefully silent packages | +87755|310019|35032|3|11|11319.00|0.01|0.02|N|O|1998-04-04|1998-04-16|1998-04-11|NONE|SHIP|uickly slyly final the| +87755|485610|35611|4|7|11169.13|0.08|0.02|N|O|1998-02-28|1998-04-30|1998-03-19|DELIVER IN PERSON|RAIL|ter the daringly un| +87755|639406|26943|5|9|12108.33|0.09|0.03|N|O|1998-03-06|1998-03-27|1998-04-05|DELIVER IN PERSON|SHIP|ent packages sleep blithely alongside of | +87755|495134|45135|6|27|30485.97|0.07|0.07|N|O|1998-03-01|1998-04-02|1998-03-04|NONE|RAIL|ial deposits wake carefully | +87756|900706|707|1|32|54613.12|0.03|0.07|N|O|1998-03-13|1998-03-22|1998-03-31|DELIVER IN PERSON|FOB|y silent pinto beans. requests above| +87756|162301|49811|2|15|20449.50|0.00|0.05|N|O|1998-04-25|1998-03-13|1998-05-14|TAKE BACK RETURN|TRUCK|ts sleep silent foxes. final, silent pack| +87756|781423|43939|3|28|42122.92|0.08|0.07|N|O|1998-03-06|1998-03-16|1998-03-30|TAKE BACK RETURN|MAIL|ual excuses against the f| +87756|370485|45500|4|24|37331.28|0.05|0.06|N|O|1998-02-10|1998-03-28|1998-02-17|NONE|TRUCK| packages. bold packages aroun| +87756|728960|28961|5|1|1988.93|0.06|0.08|N|O|1998-02-15|1998-04-05|1998-02-22|DELIVER IN PERSON|TRUCK|ts. quickly even ac| +87757|357970|7971|1|8|16223.68|0.08|0.00|N|O|1997-08-25|1997-07-25|1997-09-04|NONE|FOB|iet, even pinto beans. bravely even instruc| +87757|385863|35864|2|38|74056.30|0.08|0.08|N|O|1997-05-14|1997-06-13|1997-05-15|NONE|MAIL|fix furiously: care| +87757|189796|27306|3|21|39601.59|0.09|0.08|N|O|1997-05-19|1997-07-10|1997-05-22|TAKE BACK RETURN|REG AIR|heaves wake furiously fluffily silent packa| +87757|886884|11919|4|39|72962.76|0.03|0.01|N|O|1997-08-07|1997-07-13|1997-08-23|DELIVER IN PERSON|AIR|es: carefully final platelets mig| +87757|847768|35317|5|5|8578.60|0.07|0.07|N|O|1997-08-28|1997-07-18|1997-09-08|DELIVER IN PERSON|RAIL|ackages. quietly regular excus| +87757|428657|3674|6|46|72938.98|0.07|0.07|N|O|1997-07-09|1997-07-23|1997-07-10|COLLECT COD|SHIP|asymptotes maintain even reque| +87757|430368|30369|7|39|50635.26|0.01|0.08|N|O|1997-07-23|1997-06-26|1997-08-08|TAKE BACK RETURN|MAIL|. furiously final foxes | +87758|184402|9409|1|27|40132.80|0.06|0.03|N|O|1996-05-09|1996-07-03|1996-05-31|NONE|RAIL|bold packages wake. final platelets k| +87758|228813|41318|2|29|50512.20|0.07|0.01|N|O|1996-04-09|1996-06-16|1996-05-07|COLLECT COD|SHIP|furiously special| +87758|648925|36462|3|1|1873.89|0.03|0.02|N|O|1996-06-28|1996-06-29|1996-07-10|COLLECT COD|TRUCK|s are slyly according to the carefull| +87758|481711|31712|4|10|16926.90|0.01|0.03|N|O|1996-07-07|1996-06-27|1996-08-05|COLLECT COD|AIR|ckly furiously ironic requests. spe| +87758|115360|2867|5|9|12378.24|0.07|0.02|N|O|1996-08-02|1996-05-25|1996-08-19|DELIVER IN PERSON|RAIL|ly according to the f| +87758|852175|2176|6|40|45085.20|0.04|0.00|N|O|1996-04-14|1996-07-06|1996-04-20|TAKE BACK RETURN|RAIL|uests nag quickly. furiously final ac| +87759|386465|11480|1|5|7757.25|0.01|0.06|R|F|1994-04-21|1994-07-08|1994-04-25|NONE|SHIP|sits sleep above the platelet| +87759|305730|30743|2|34|59014.48|0.01|0.06|R|F|1994-05-09|1994-05-28|1994-06-05|DELIVER IN PERSON|REG AIR|s use slyly| +87759|397259|9767|3|27|36618.48|0.04|0.06|A|F|1994-07-26|1994-06-02|1994-08-07|NONE|MAIL|nts nag along the ironic deposits. slyly b| +87759|728945|16488|4|21|41452.11|0.09|0.02|A|F|1994-05-07|1994-06-10|1994-05-16|DELIVER IN PERSON|REG AIR|oost doggedly fina| +87784|512278|12279|1|36|46449.00|0.03|0.06|N|O|1996-11-24|1996-12-14|1996-12-22|DELIVER IN PERSON|RAIL| dependencies ha| +87784|844390|6907|2|34|45367.90|0.04|0.00|N|O|1996-11-01|1997-01-10|1996-12-01|TAKE BACK RETURN|MAIL|ven deposits. blithely | +87784|654593|4594|3|6|9285.36|0.09|0.00|N|O|1997-01-11|1997-01-05|1997-02-09|TAKE BACK RETURN|TRUCK|ackages wake blithely slow| +87784|744544|32087|4|43|68305.93|0.07|0.03|N|O|1996-12-31|1996-12-06|1997-01-19|COLLECT COD|SHIP|eposits detect| +87784|544924|7435|5|19|37409.10|0.02|0.04|N|O|1996-10-21|1996-12-25|1996-11-12|TAKE BACK RETURN|AIR|l excuses w| +87784|524513|49534|6|4|6149.96|0.03|0.08|N|O|1996-12-16|1997-01-05|1997-01-04|DELIVER IN PERSON|SHIP| across the f| +87784|489756|27284|7|46|80303.58|0.03|0.02|N|O|1997-01-08|1997-01-04|1997-01-19|NONE|AIR|ackages. slyly i| +87785|314332|39345|1|30|40389.60|0.04|0.02|R|F|1992-12-21|1993-02-12|1993-01-06|COLLECT COD|TRUCK| the slyly final packag| +87786|253246|3247|1|27|32379.21|0.04|0.02|N|O|1995-06-19|1995-08-09|1995-07-02|TAKE BACK RETURN|SHIP|arefully re| +87787|651453|13967|1|20|28088.40|0.10|0.00|N|O|1997-07-26|1997-06-16|1997-08-18|DELIVER IN PERSON|AIR|lites. bli| +87787|954040|16560|2|16|17504.00|0.10|0.01|N|O|1997-08-05|1997-07-24|1997-08-31|TAKE BACK RETURN|REG AIR|kly after the unusual, special deposit| +87787|540963|40964|3|18|36070.92|0.04|0.06|N|O|1997-08-24|1997-07-09|1997-09-11|NONE|RAIL|above the carefully e| +87787|949190|11709|4|1|1239.15|0.05|0.04|N|O|1997-07-08|1997-07-25|1997-07-12|TAKE BACK RETURN|REG AIR|gside of the quickly special reques| +87787|33404|45905|5|26|34772.40|0.08|0.00|N|O|1997-08-01|1997-07-09|1997-08-28|COLLECT COD|FOB|zzle blithely according to the | +87788|249603|12108|1|21|32604.39|0.09|0.04|N|O|1998-01-19|1997-11-15|1998-02-09|COLLECT COD|FOB|arefully final packages boost carefully sl| +87788|67199|4703|2|6|6997.14|0.07|0.07|N|O|1997-10-05|1997-12-14|1997-10-16|DELIVER IN PERSON|MAIL|e the furio| +87789|413735|1260|1|31|51110.01|0.03|0.07|A|F|1994-06-19|1994-06-14|1994-07-08|NONE|MAIL|usly about the regu| +87789|628683|16220|2|42|67689.30|0.05|0.07|A|F|1994-06-12|1994-06-24|1994-06-27|TAKE BACK RETURN|RAIL|ly quickly express warhorses. accou| +87789|266920|29426|3|48|90571.68|0.02|0.04|A|F|1994-06-11|1994-06-22|1994-06-28|DELIVER IN PERSON|FOB|lyly final ideas cajole carefully ab| +87789|109609|34614|4|7|11330.20|0.02|0.04|A|F|1994-08-30|1994-07-18|1994-09-01|COLLECT COD|FOB|osits boost. furiously even deposits aft| +87789|191443|16450|5|18|27619.92|0.05|0.07|R|F|1994-05-16|1994-08-07|1994-05-22|TAKE BACK RETURN|MAIL|sual packag| +87789|569824|19825|6|13|24619.40|0.07|0.00|A|F|1994-07-16|1994-06-28|1994-07-25|COLLECT COD|AIR|unusual request| +87790|971190|8748|1|47|59274.05|0.01|0.03|N|O|1997-02-06|1996-12-22|1997-02-26|TAKE BACK RETURN|TRUCK|ding to the| +87790|782049|7080|2|24|27144.24|0.04|0.01|N|O|1996-12-03|1997-01-07|1996-12-12|TAKE BACK RETURN|AIR|deposits. regular, regular p| +87790|892240|4758|3|3|3696.60|0.06|0.05|N|O|1997-03-15|1997-01-08|1997-03-16|DELIVER IN PERSON|FOB|ests are furiously unusual requests. | +87790|868264|18265|4|31|38198.82|0.01|0.04|N|O|1997-01-07|1997-01-08|1997-01-08|NONE|SHIP|. furiously| +87790|901589|39144|5|48|76345.92|0.08|0.07|N|O|1997-03-07|1997-02-04|1997-03-14|COLLECT COD|REG AIR|sleep platelets. enticingly bold deposits| +87790|989741|39742|6|35|64074.50|0.04|0.00|N|O|1996-11-27|1997-01-19|1996-11-29|NONE|REG AIR|uctions. furiously re| +87790|566412|3946|7|13|19219.07|0.06|0.01|N|O|1997-03-06|1996-12-29|1997-03-29|DELIVER IN PERSON|REG AIR|ctions. ironic, e| +87791|678044|40558|1|11|11242.11|0.06|0.08|R|F|1994-09-11|1994-09-29|1994-09-12|NONE|SHIP| boost furiousl| +87816|378196|3211|1|33|42047.94|0.00|0.00|N|O|1997-04-21|1997-05-17|1997-05-13|DELIVER IN PERSON|FOB|ages cajole fluffily furious| +87816|325174|37681|2|20|23983.20|0.07|0.08|N|O|1997-05-16|1997-06-11|1997-06-12|NONE|RAIL|ckages are along the f| +87816|196942|9446|3|34|69323.96|0.10|0.05|N|O|1997-07-10|1997-05-07|1997-08-03|TAKE BACK RETURN|RAIL|. slyly ironi| +87816|995880|8400|4|30|59275.20|0.10|0.01|N|O|1997-03-28|1997-04-19|1997-03-29|TAKE BACK RETURN|TRUCK|posits. blithely | +87816|741829|16858|5|2|3741.58|0.06|0.08|N|O|1997-03-21|1997-05-29|1997-03-31|COLLECT COD|MAIL|onic instructions haggle slyly pinto bea| +87816|916025|3580|6|49|51008.02|0.02|0.07|N|O|1997-07-17|1997-05-07|1997-07-21|DELIVER IN PERSON|FOB| deposits wake abo| +87817|876166|38684|1|43|49111.16|0.09|0.04|R|F|1994-07-25|1994-08-31|1994-08-14|TAKE BACK RETURN|SHIP| nag slyly among the blit| +87818|259595|47111|1|34|52855.72|0.10|0.07|N|O|1996-07-14|1996-08-07|1996-08-01|TAKE BACK RETURN|SHIP|unusual accou| +87818|999670|12190|2|36|63706.68|0.04|0.04|N|O|1996-07-19|1996-09-06|1996-07-20|DELIVER IN PERSON|REG AIR| pinto beans doubt f| +87818|447896|22913|3|33|60847.71|0.05|0.05|N|O|1996-08-04|1996-09-18|1996-08-15|NONE|AIR|l deposits u| +87818|777714|15260|4|20|35833.60|0.09|0.02|N|O|1996-10-04|1996-08-07|1996-10-20|DELIVER IN PERSON|AIR|ic accounts wake blithely acros| +87818|28382|40883|5|42|55035.96|0.04|0.07|N|O|1996-06-29|1996-08-24|1996-07-05|TAKE BACK RETURN|MAIL|fully careful deposits. regular| +87818|9913|22414|6|29|52864.39|0.06|0.08|N|O|1996-09-12|1996-09-09|1996-09-26|DELIVER IN PERSON|SHIP|ges. finally busy ide| +87819|163627|13628|1|29|49027.98|0.08|0.03|A|F|1992-11-02|1992-10-26|1992-11-15|DELIVER IN PERSON|SHIP|ts. daring| +87819|78812|16316|2|9|16117.29|0.10|0.07|A|F|1992-11-19|1992-10-05|1992-11-23|COLLECT COD|SHIP|enticingly special accou| +87819|581207|43719|3|7|9017.26|0.05|0.06|A|F|1992-10-16|1992-10-17|1992-10-31|COLLECT COD|TRUCK| slyly iron| +87819|336736|11749|4|3|5318.16|0.07|0.04|R|F|1992-11-21|1992-11-03|1992-12-21|DELIVER IN PERSON|FOB| regular, even asymptotes al| +87819|512691|12692|5|29|49406.43|0.02|0.08|R|F|1992-09-05|1992-10-14|1992-10-03|TAKE BACK RETURN|AIR|dependencies. furiously| +87820|873815|11367|1|4|7155.08|0.08|0.02|N|O|1998-09-15|1998-08-12|1998-10-07|TAKE BACK RETURN|TRUCK|he express pinto beans. slyly final r| +87820|199071|24078|2|32|37442.24|0.02|0.07|N|O|1998-08-07|1998-08-31|1998-08-22|COLLECT COD|FOB|eep alongsid| +87820|781484|6515|3|19|29743.55|0.09|0.07|N|O|1998-10-23|1998-08-08|1998-11-02|NONE|RAIL|ts haggle above the carefully even excu| +87820|385847|10862|4|1|1932.83|0.02|0.02|N|O|1998-09-05|1998-08-15|1998-09-14|DELIVER IN PERSON|RAIL|iously against the final, express deposits| +87821|448282|10791|1|21|25835.46|0.06|0.07|A|F|1995-02-19|1995-02-24|1995-03-06|NONE|SHIP|ng to the | +87822|186848|49352|1|25|48371.00|0.07|0.08|R|F|1994-10-29|1994-12-22|1994-11-06|COLLECT COD|MAIL|alongside of t| +87822|348956|11463|2|17|34083.98|0.09|0.08|R|F|1995-01-17|1994-11-19|1995-01-31|COLLECT COD|AIR|blithely regular requests cajole sly| +87822|896257|33809|3|42|52634.82|0.07|0.03|R|F|1994-11-13|1994-11-24|1994-12-10|DELIVER IN PERSON|FOB| furiously. | +87822|380396|5411|4|25|36909.50|0.04|0.01|A|F|1994-10-25|1994-11-30|1994-11-11|TAKE BACK RETURN|FOB|taphs before the c| +87822|299643|37159|5|37|60777.31|0.10|0.03|R|F|1994-10-26|1994-11-24|1994-11-19|TAKE BACK RETURN|MAIL|nding courts are always. q| +87822|88667|1169|6|45|74504.70|0.04|0.03|A|F|1995-01-09|1994-12-06|1995-01-12|NONE|MAIL|ly special packag| +87823|199331|49332|1|35|50061.55|0.09|0.00|N|O|1998-07-04|1998-06-11|1998-08-01|COLLECT COD|SHIP|c requests cajole careful| +87848|144167|19172|1|12|14533.92|0.07|0.04|R|F|1993-11-16|1993-12-19|1993-11-17|NONE|SHIP| regular accounts detect re| +87849|915918|3473|1|24|46412.88|0.00|0.04|N|O|1997-08-30|1997-08-01|1997-09-03|TAKE BACK RETURN|TRUCK|ests. carefully regular | +87849|822478|47511|2|31|43413.33|0.00|0.08|N|O|1997-06-16|1997-08-06|1997-07-02|NONE|TRUCK| dependencies use fur| +87849|384718|9733|3|25|45067.50|0.02|0.07|N|O|1997-06-18|1997-07-20|1997-06-19|DELIVER IN PERSON|AIR| ironic requests in| +87849|939627|2146|4|37|61663.46|0.04|0.07|N|O|1997-08-07|1997-07-04|1997-09-01|COLLECT COD|MAIL|after the fluffily regular deposits nag acc| +87850|831031|6064|1|31|29821.69|0.03|0.07|A|F|1994-10-24|1994-12-07|1994-11-14|NONE|TRUCK|ages sleep.| +87850|126954|14461|2|37|73295.15|0.07|0.02|A|F|1994-12-20|1994-12-30|1995-01-10|DELIVER IN PERSON|SHIP|intain alongside of | +87850|703318|15833|3|1|1321.28|0.04|0.07|A|F|1995-01-02|1994-12-31|1995-01-12|TAKE BACK RETURN|TRUCK|s. even, pending deposits| +87851|413240|765|1|20|23064.40|0.01|0.04|N|O|1996-08-13|1996-08-01|1996-08-22|COLLECT COD|MAIL|ke. regular packages wake carefully i| +87851|318073|5592|2|20|21821.20|0.01|0.00|N|O|1996-07-13|1996-07-31|1996-08-02|COLLECT COD|REG AIR|uickly ironic mu| +87851|841211|41212|3|9|10369.53|0.10|0.07|N|O|1996-07-18|1996-06-30|1996-07-24|NONE|FOB|ly bold foxes| +87852|563436|38459|1|39|58476.99|0.09|0.00|R|F|1994-01-22|1993-11-26|1994-02-02|DELIVER IN PERSON|MAIL|packages dete| +87853|487322|37323|1|11|14402.30|0.09|0.08|R|F|1994-11-08|1994-12-01|1994-11-21|COLLECT COD|MAIL|e fluffily| +87853|410956|10957|2|2|3733.86|0.01|0.03|A|F|1994-11-14|1994-11-17|1994-12-13|TAKE BACK RETURN|FOB|es wake carefully ca| +87853|921115|8670|3|33|37490.31|0.03|0.05|A|F|1994-10-25|1994-10-30|1994-11-17|COLLECT COD|REG AIR|eep carefully against| +87853|167264|42271|4|39|51919.14|0.03|0.08|A|F|1994-11-26|1994-10-30|1994-12-19|NONE|TRUCK|cies sleep. | +87853|192488|4992|5|10|15804.80|0.08|0.02|A|F|1995-01-19|1994-11-28|1995-01-31|NONE|FOB|times blithe requests| +87853|129027|16534|6|6|6336.12|0.10|0.05|R|F|1994-10-11|1994-11-24|1994-10-25|COLLECT COD|TRUCK|ct carefully ironic instr| +87853|548896|23917|7|4|7779.48|0.05|0.02|R|F|1994-11-25|1994-12-04|1994-12-14|COLLECT COD|AIR|lyly along the ironically regular| +87854|294040|31556|1|34|35157.02|0.04|0.07|R|F|1992-03-29|1992-05-14|1992-04-14|DELIVER IN PERSON|RAIL|as above the quickly unu| +87854|924782|24783|2|15|27101.10|0.09|0.04|A|F|1992-05-14|1992-04-17|1992-06-13|TAKE BACK RETURN|TRUCK|ding to the furious| +87854|802262|39811|3|41|47733.02|0.01|0.04|A|F|1992-05-16|1992-04-24|1992-05-30|COLLECT COD|AIR|haggle along the slyly regular packa| +87854|603914|3915|4|18|32721.84|0.04|0.05|R|F|1992-02-21|1992-04-23|1992-03-21|DELIVER IN PERSON|AIR|ously regular pinto beans. care| +87855|985912|48432|1|13|25972.31|0.06|0.03|A|F|1993-07-17|1993-09-14|1993-07-22|DELIVER IN PERSON|RAIL| express packages nag carefully furiously r| +87855|221291|21292|2|12|14547.36|0.10|0.05|R|F|1993-06-21|1993-09-13|1993-07-15|DELIVER IN PERSON|AIR|regular excuses a| +87855|229802|17315|3|41|71003.39|0.06|0.07|A|F|1993-06-25|1993-07-18|1993-07-11|NONE|MAIL|riously after the express, pending deposit| +87855|272893|35399|4|17|31719.96|0.02|0.00|A|F|1993-08-20|1993-08-07|1993-08-28|TAKE BACK RETURN|SHIP| blithely regular foxe| +87880|780564|30565|1|25|41113.25|0.07|0.05|N|O|1997-04-28|1997-04-18|1997-05-10|NONE|REG AIR|old epitaphs. final deposits sleep flu| +87880|937267|49786|2|20|26084.40|0.02|0.08|N|O|1997-02-06|1997-04-12|1997-03-07|TAKE BACK RETURN|RAIL|iously final tithes. final de| +87880|633897|33898|3|47|86050.42|0.09|0.05|N|O|1997-04-16|1997-04-17|1997-04-17|TAKE BACK RETURN|MAIL|al platelets sle| +87880|905765|30802|4|38|67287.36|0.09|0.01|N|O|1997-02-20|1997-04-12|1997-03-02|NONE|AIR|ect. carefully regul| +87881|543554|31085|1|20|31950.60|0.10|0.08|N|O|1998-07-13|1998-08-08|1998-08-11|COLLECT COD|REG AIR| final accounts use quickly| +87881|511059|36080|2|5|5350.15|0.08|0.08|N|O|1998-08-22|1998-08-12|1998-08-25|COLLECT COD|TRUCK|inal packa| +87882|523277|48298|1|26|33806.50|0.09|0.02|A|F|1993-11-12|1993-12-29|1993-12-10|COLLECT COD|FOB|ar notornis! final, ironic platelets| +87882|710518|48061|2|4|6113.92|0.07|0.02|R|F|1994-01-06|1993-12-23|1994-02-01|NONE|RAIL|ic requests-- slyly final theodolites among| +87882|672216|34730|3|36|42774.48|0.09|0.01|R|F|1993-11-29|1994-01-17|1993-12-04|DELIVER IN PERSON|TRUCK|he unusual requ| +87882|923346|10901|4|28|38340.40|0.05|0.07|A|F|1993-12-12|1993-12-19|1993-12-20|NONE|REG AIR|ng, final packages haggl| +87882|664228|14229|5|15|17882.85|0.05|0.03|R|F|1994-01-10|1993-12-11|1994-01-29|DELIVER IN PERSON|REG AIR|ording to th| +87882|678487|16027|6|47|68876.15|0.01|0.07|R|F|1993-12-31|1993-12-12|1994-01-11|NONE|RAIL|olites are carefully | +87883|947856|47857|1|38|72344.78|0.00|0.00|R|F|1993-04-02|1993-03-17|1993-04-04|TAKE BACK RETURN|SHIP|sts; requests wake along| +87883|601809|14322|2|10|17107.70|0.08|0.01|A|F|1993-03-17|1993-04-03|1993-03-29|TAKE BACK RETURN|RAIL|ithely unusual pinto bean| +87883|596154|33688|3|27|33753.51|0.10|0.00|R|F|1993-04-10|1993-04-05|1993-04-11|NONE|REG AIR|ptotes cajole carefully across the slyly fi| +87883|545275|20296|4|37|48849.25|0.01|0.06|A|F|1993-06-04|1993-04-20|1993-06-16|COLLECT COD|TRUCK|c accounts. quickly regular foxes | +87883|422090|9615|5|4|4048.28|0.02|0.02|A|F|1993-05-15|1993-03-20|1993-05-22|COLLECT COD|REG AIR|ounts sleep. blithely| +87883|53086|15588|6|25|25977.00|0.06|0.00|R|F|1993-06-07|1993-03-27|1993-06-27|COLLECT COD|AIR|ending decoys are across the slyly expre| +87883|216083|16084|7|39|38963.73|0.08|0.06|A|F|1993-03-03|1993-05-10|1993-03-19|DELIVER IN PERSON|RAIL|yly furiously bold i| +87884|690539|3053|1|50|76475.00|0.01|0.00|R|F|1992-05-20|1992-05-31|1992-05-31|DELIVER IN PERSON|AIR|bout the express, regular excuses are ca| +87884|882625|7660|2|5|8037.90|0.01|0.07|R|F|1992-07-16|1992-05-12|1992-07-26|TAKE BACK RETURN|MAIL|thely final accou| +87884|276842|14358|3|50|90941.50|0.09|0.03|R|F|1992-05-22|1992-05-21|1992-05-23|TAKE BACK RETURN|FOB|hely final instructi| +87885|47588|22589|1|29|44531.82|0.09|0.04|A|F|1993-08-28|1993-09-07|1993-09-03|TAKE BACK RETURN|TRUCK|warthogs detect thin, e| +87885|805390|42939|2|28|36269.80|0.06|0.05|A|F|1993-10-31|1993-09-02|1993-11-24|DELIVER IN PERSON|MAIL|onic deposi| +87885|182495|32496|3|26|41014.74|0.10|0.04|A|F|1993-07-24|1993-09-29|1993-08-12|TAKE BACK RETURN|REG AIR|unusual packages alongside| +87886|937656|12693|1|24|40646.64|0.01|0.02|N|O|1996-01-28|1996-03-02|1996-02-01|DELIVER IN PERSON|FOB|ously above t| +87886|171420|21421|2|2|2982.84|0.06|0.00|N|O|1996-02-15|1996-02-13|1996-03-09|TAKE BACK RETURN|TRUCK|al packages. accounts| +87886|50957|958|3|6|11447.70|0.02|0.01|N|O|1996-03-18|1996-02-26|1996-03-19|TAKE BACK RETURN|SHIP|ironic somas| +87886|424429|24430|4|26|35188.40|0.07|0.04|N|O|1996-04-09|1996-02-29|1996-05-07|NONE|AIR| packages. fluffily re| +87886|367812|30320|5|46|86470.80|0.02|0.08|N|O|1996-03-09|1996-03-09|1996-03-23|DELIVER IN PERSON|RAIL|fluffily final deposits unwind carefully | +87886|800294|12811|6|21|25079.25|0.06|0.07|N|O|1996-03-01|1996-02-12|1996-03-30|DELIVER IN PERSON|AIR|y final platelet| +87886|531078|18609|7|7|7763.35|0.00|0.00|N|O|1996-02-27|1996-02-02|1996-03-18|COLLECT COD|TRUCK|ly regular packages | +87887|819875|19876|1|27|48460.41|0.01|0.05|R|F|1992-06-29|1992-06-14|1992-07-06|DELIVER IN PERSON|FOB|s haggle blithely alongside of| +87887|635940|35941|2|46|86291.86|0.09|0.02|R|F|1992-04-18|1992-06-04|1992-04-20|COLLECT COD|TRUCK|y unusual packages. silently bold frays a| +87912|485884|23412|1|44|82273.84|0.07|0.02|R|F|1993-06-25|1993-06-17|1993-07-12|TAKE BACK RETURN|MAIL|olites sleep slyly among th| +87912|245201|45202|2|5|5730.95|0.08|0.02|R|F|1993-06-27|1993-07-06|1993-07-10|NONE|FOB|ites haggle about the blithely unu| +87912|88843|38844|3|37|67778.08|0.00|0.00|R|F|1993-06-29|1993-05-27|1993-07-13|TAKE BACK RETURN|FOB|its cajole regular packages. ironic depen| +87912|167736|5246|4|3|5411.19|0.03|0.03|A|F|1993-05-21|1993-06-08|1993-06-06|NONE|RAIL|across the reques| +87912|127393|2398|5|18|25567.02|0.04|0.03|R|F|1993-08-06|1993-07-13|1993-08-14|TAKE BACK RETURN|REG AIR|le around the pending requests. furiou| +87913|985993|48513|1|41|85236.95|0.04|0.01|R|F|1994-03-03|1994-03-14|1994-03-13|DELIVER IN PERSON|TRUCK|ter the furiously express depth| +87914|470213|45232|1|33|39045.27|0.03|0.06|N|O|1996-08-19|1996-07-21|1996-09-12|NONE|REG AIR|attainments n| +87914|859607|47159|2|27|42297.12|0.05|0.08|N|O|1996-08-03|1996-07-13|1996-08-24|TAKE BACK RETURN|REG AIR|e carefully even foxes. de| +87914|403334|15843|3|7|8661.17|0.10|0.00|N|O|1996-06-27|1996-08-04|1996-07-16|NONE|FOB| quickly unusua| +87914|829449|4482|4|9|12405.60|0.00|0.06|N|O|1996-07-13|1996-08-06|1996-07-19|NONE|MAIL|e. blithely even requests boost | +87914|543892|43893|5|45|87114.15|0.09|0.01|N|O|1996-06-16|1996-08-11|1996-06-27|NONE|AIR|refully final account| +87914|189035|1539|6|17|19108.51|0.10|0.05|N|O|1996-07-23|1996-07-09|1996-08-06|TAKE BACK RETURN|SHIP|fluffily pending theodolites. ironic| +87914|105178|42685|7|36|42594.12|0.07|0.00|N|O|1996-06-12|1996-08-04|1996-06-25|COLLECT COD|TRUCK|heodolites. slyly silent ideas arou| +87915|725222|25223|1|45|56123.55|0.05|0.05|R|F|1994-01-24|1993-11-19|1994-02-13|TAKE BACK RETURN|FOB| blithely thin a| +87916|76501|1504|1|31|45802.50|0.06|0.02|R|F|1993-01-31|1993-01-03|1993-02-28|DELIVER IN PERSON|TRUCK|symptotes a| +87916|736933|36934|2|28|55157.20|0.00|0.01|A|F|1992-11-23|1993-01-06|1992-11-26|COLLECT COD|REG AIR|sly final pinto beans sleep fluffily am| +87916|620508|8045|3|36|51424.92|0.03|0.00|A|F|1992-10-17|1992-12-02|1992-10-29|DELIVER IN PERSON|MAIL|s are quickly. quickly ru| +87916|863675|13676|4|9|14747.67|0.00|0.00|R|F|1992-12-17|1992-11-19|1993-01-03|COLLECT COD|FOB|ven instru| +87916|772039|47070|5|28|31108.00|0.10|0.07|A|F|1993-01-08|1992-11-25|1993-01-12|TAKE BACK RETURN|REG AIR|riously special deposi| +87916|643802|18827|6|32|55864.64|0.03|0.00|A|F|1992-10-24|1992-12-01|1992-11-10|NONE|MAIL|grate carefully according to the | +87916|378517|16039|7|26|41483.00|0.02|0.03|A|F|1993-01-19|1993-01-06|1993-01-30|NONE|AIR|eposits ar| +87917|725377|12920|1|16|22437.44|0.02|0.02|N|O|1997-04-19|1997-03-29|1997-05-16|DELIVER IN PERSON|MAIL|lphins along the slyly| +87917|402299|14808|2|3|3603.81|0.09|0.05|N|O|1997-03-10|1997-04-13|1997-03-19|TAKE BACK RETURN|AIR|gged pinto beans use according to the caref| +87917|423800|11325|3|39|67227.42|0.09|0.07|N|O|1997-01-24|1997-03-01|1997-02-16|COLLECT COD|MAIL|y express foxes. even theodol| +87918|39852|2353|1|20|35837.00|0.06|0.02|R|F|1993-11-22|1993-09-16|1993-12-03|DELIVER IN PERSON|MAIL|lar frays. iron| +87918|789220|14251|2|27|35348.13|0.07|0.05|R|F|1993-09-18|1993-10-03|1993-10-10|TAKE BACK RETURN|MAIL|instructions print daringly final package| +87918|417020|42037|3|46|43102.00|0.05|0.01|A|F|1993-09-02|1993-09-10|1993-09-27|TAKE BACK RETURN|TRUCK|regular packages wake final frets. ex| +87918|838858|26407|4|19|34139.39|0.03|0.03|R|F|1993-08-28|1993-09-21|1993-09-13|TAKE BACK RETURN|FOB|r the furi| +87918|677303|2330|5|24|30726.48|0.07|0.06|A|F|1993-11-05|1993-10-20|1993-11-27|NONE|FOB|aggle furiously across the slyly eve| +87918|426790|39299|6|25|42919.25|0.04|0.06|R|F|1993-08-22|1993-10-29|1993-08-23|COLLECT COD|AIR|s. quickly pending d| +87918|50431|12933|7|45|62164.35|0.09|0.03|A|F|1993-09-14|1993-10-24|1993-10-04|TAKE BACK RETURN|FOB|ic, express requests. qu| +87919|581313|43825|1|46|64137.34|0.06|0.04|N|O|1997-09-08|1997-10-22|1997-09-22|TAKE BACK RETURN|AIR|dazzle across the thin requests. fur| +87919|110997|10998|2|28|56223.72|0.03|0.05|N|O|1997-11-26|1997-10-16|1997-12-13|NONE|MAIL|ily final packages. packages do | +87919|523877|36388|3|18|34215.30|0.09|0.08|N|O|1997-09-27|1997-10-08|1997-10-15|TAKE BACK RETURN|RAIL|hely accordi| +87919|784566|47082|4|4|6602.12|0.07|0.07|N|O|1997-10-21|1997-09-28|1997-11-10|NONE|RAIL|ously silent i| +87919|192349|42350|5|29|41798.86|0.02|0.02|N|O|1997-09-06|1997-10-13|1997-09-10|COLLECT COD|AIR|iously final dependencies haggle carefully | +87919|804838|17355|6|43|74939.97|0.04|0.05|N|O|1997-08-14|1997-10-25|1997-08-22|NONE|TRUCK|ironic courts was silently ev| +87944|937113|24668|1|4|4600.28|0.06|0.06|N|O|1996-08-10|1996-05-24|1996-08-27|NONE|FOB| the regular warthogs sl| +87944|53755|41259|2|22|37592.50|0.01|0.07|N|O|1996-06-04|1996-07-15|1996-06-26|TAKE BACK RETURN|RAIL|ke against the slyly reg| +87944|448535|23552|3|42|62307.42|0.01|0.03|N|O|1996-04-20|1996-07-03|1996-05-12|DELIVER IN PERSON|RAIL|l ideas haggle blithely after the r| +87944|513309|13310|4|5|6611.40|0.02|0.03|N|O|1996-07-30|1996-06-21|1996-08-08|COLLECT COD|AIR| express ideas. carefully un| +87944|174672|24673|5|38|66373.46|0.02|0.01|N|O|1996-06-13|1996-06-04|1996-06-27|COLLECT COD|TRUCK| even requests wake carefully against the| +87944|698079|10593|6|45|48466.80|0.06|0.00|N|O|1996-07-13|1996-07-09|1996-07-20|DELIVER IN PERSON|TRUCK|elets. ironic platelets cajole careful| +87945|171298|33802|1|36|49294.44|0.06|0.00|N|O|1997-07-30|1997-10-02|1997-08-21|NONE|AIR|ounts play car| +87945|992841|5361|2|16|30940.80|0.02|0.07|N|O|1997-08-03|1997-09-04|1997-08-29|DELIVER IN PERSON|TRUCK|efully alongside of the ironic ins| +87946|219124|31629|1|34|35465.74|0.09|0.07|R|F|1993-05-22|1993-04-28|1993-06-16|NONE|SHIP| the slyly bold de| +87946|814606|2155|2|18|27370.08|0.08|0.07|A|F|1993-05-04|1993-04-20|1993-05-30|COLLECT COD|REG AIR|es. regular, regular deposits cajole s| +87946|71508|21509|3|16|23672.00|0.09|0.01|R|F|1993-05-10|1993-05-01|1993-05-14|COLLECT COD|AIR| among the ironic platelets. the| +87946|833332|33333|4|14|17714.06|0.04|0.08|A|F|1993-03-16|1993-03-31|1993-03-17|NONE|MAIL|osits against the furiously ex| +87946|794344|19375|5|27|38834.37|0.07|0.07|A|F|1993-02-17|1993-04-05|1993-02-24|TAKE BACK RETURN|TRUCK|d of the pending, ironic excus| +87946|533996|46507|6|4|8119.88|0.05|0.03|A|F|1993-04-14|1993-04-22|1993-05-13|NONE|FOB| dependencies grow according to th| +87946|866886|29404|7|42|77819.28|0.05|0.03|A|F|1993-04-03|1993-04-11|1993-05-01|DELIVER IN PERSON|SHIP|gged ideas. c| +87947|748152|35695|1|44|52805.28|0.02|0.05|N|O|1996-09-29|1996-08-24|1996-10-23|TAKE BACK RETURN|AIR|ffily pending tithes wake quickly regular| +87947|175752|25753|2|20|36555.00|0.09|0.00|N|O|1996-09-27|1996-08-03|1996-10-05|TAKE BACK RETURN|SHIP|lly ironic ideas kindle.| +87947|848494|23527|3|46|66352.70|0.08|0.05|N|O|1996-07-10|1996-09-06|1996-08-03|COLLECT COD|MAIL| quickly final instructions po| +87948|456567|6568|1|19|28947.26|0.02|0.02|A|F|1993-06-06|1993-04-15|1993-06-17|TAKE BACK RETURN|RAIL|gular ideas. blith| +87948|520871|20872|2|34|64322.90|0.02|0.01|A|F|1993-06-24|1993-04-24|1993-07-09|COLLECT COD|SHIP|ld theodolites use blith| +87948|269140|19141|3|44|48801.72|0.01|0.08|A|F|1993-03-12|1993-04-18|1993-03-21|NONE|FOB|instructio| +87948|434175|9192|4|22|24401.30|0.08|0.04|R|F|1993-05-15|1993-05-18|1993-05-25|NONE|MAIL|deas haggle fur| +87948|163045|13046|5|40|44321.60|0.06|0.02|A|F|1993-04-09|1993-04-30|1993-04-22|TAKE BACK RETURN|SHIP|s sleep furiously after the dolphins. | +87948|288587|1093|6|48|75627.36|0.09|0.00|A|F|1993-04-25|1993-05-28|1993-05-25|COLLECT COD|AIR|d packages. unusual requests agains| +87948|278961|3972|7|38|73718.10|0.09|0.03|R|F|1993-06-13|1993-04-22|1993-07-06|DELIVER IN PERSON|RAIL|thely careful| +87949|482253|32254|1|16|19763.68|0.01|0.07|N|O|1995-08-22|1995-08-02|1995-09-12|TAKE BACK RETURN|MAIL|gular excuses sleep fur| +87949|220464|20465|2|37|51224.65|0.05|0.00|N|O|1995-07-08|1995-07-07|1995-08-06|NONE|FOB|about the furiously even acc| +87949|336447|48954|3|45|66754.35|0.03|0.03|N|O|1995-09-03|1995-07-28|1995-09-05|NONE|FOB|hely regular packages. furiou| +87949|654457|29484|4|28|39519.76|0.01|0.04|N|O|1995-08-08|1995-07-28|1995-08-13|TAKE BACK RETURN|REG AIR|ronic, express accounts nag at the furiou| +87949|446143|21160|5|28|30495.36|0.10|0.08|A|F|1995-05-22|1995-07-03|1995-06-15|TAKE BACK RETURN|REG AIR|never. foxes use quickly ideas. final, fi| +87950|870913|20914|1|26|48980.62|0.04|0.07|N|O|1997-08-10|1997-08-20|1997-08-11|COLLECT COD|MAIL|lly final pac| +87950|428652|28653|2|5|7903.15|0.07|0.02|N|O|1997-09-09|1997-08-19|1997-10-07|DELIVER IN PERSON|AIR|fully regular pinto beans. packages a| +87950|346242|21255|3|21|27052.83|0.08|0.08|N|O|1997-08-01|1997-09-18|1997-08-22|NONE|SHIP|blithely unusual theodolites| +87950|284717|9728|4|2|3403.40|0.08|0.06|N|O|1997-06-27|1997-09-20|1997-07-10|NONE|AIR|ole blithely. express instructions eat depo| +87950|227205|27206|5|31|35097.89|0.00|0.00|N|O|1997-10-02|1997-09-05|1997-10-10|TAKE BACK RETURN|MAIL|long the carefully express deposits. eve| +87951|523066|10597|1|33|35938.32|0.03|0.01|A|F|1993-03-09|1993-02-08|1993-04-08|NONE|TRUCK|y. furiously bold requests nag. even, p| +87951|169595|7105|2|35|58260.65|0.02|0.00|R|F|1993-02-16|1992-12-30|1993-03-04|COLLECT COD|FOB|bold packa| +87951|373037|10559|3|20|22200.40|0.01|0.03|A|F|1992-12-03|1992-12-31|1993-01-01|TAKE BACK RETURN|REG AIR|ular, special dependencies haggle| +87951|629398|41911|4|50|66368.00|0.08|0.08|R|F|1993-03-02|1993-01-04|1993-03-07|TAKE BACK RETURN|FOB|t the slyl| +87976|316919|41932|1|11|21294.90|0.10|0.06|N|O|1996-01-14|1995-12-11|1996-02-07|DELIVER IN PERSON|FOB|s. pending,| +87976|443633|18650|2|1|1576.61|0.03|0.04|N|O|1996-02-10|1996-01-17|1996-02-18|COLLECT COD|SHIP| special deposits haggle am| +87976|126779|26780|3|46|83065.42|0.09|0.00|N|O|1995-12-14|1995-12-28|1995-12-24|COLLECT COD|RAIL|le furiously carefully sly | +87976|764900|2446|4|11|21613.57|0.00|0.03|N|O|1995-12-15|1995-12-01|1996-01-08|DELIVER IN PERSON|RAIL|according to the even, unusual pearls affi| +87977|57713|45217|1|29|48450.59|0.09|0.07|N|O|1998-06-20|1998-07-18|1998-07-14|TAKE BACK RETURN|RAIL|theodolites n| +87978|780734|30735|1|38|68958.60|0.05|0.03|R|F|1993-09-21|1993-08-08|1993-10-18|TAKE BACK RETURN|SHIP|theodolites | +87978|793273|18304|2|42|57382.08|0.04|0.05|A|F|1993-07-05|1993-09-04|1993-07-21|NONE|REG AIR|ely ironic ideas use slyly deposits. qui| +87978|535084|10105|3|19|21262.14|0.01|0.02|A|F|1993-09-06|1993-07-09|1993-10-02|COLLECT COD|RAIL|blithely silent reque| +87978|155546|18050|4|41|65663.14|0.08|0.08|A|F|1993-07-05|1993-07-21|1993-07-14|COLLECT COD|REG AIR|ly. pinto beans wake regularly. | +87979|111948|11949|1|25|48998.50|0.09|0.01|R|F|1993-02-17|1993-03-04|1993-03-12|COLLECT COD|TRUCK|blithely pend| +87979|502403|27424|2|33|46377.54|0.07|0.00|R|F|1993-03-26|1993-01-11|1993-04-21|DELIVER IN PERSON|FOB|ully regularly regular a| +87979|884359|21911|3|18|24179.58|0.09|0.01|A|F|1992-12-10|1993-01-17|1992-12-14|NONE|SHIP|nts alongside of the blithely regul| +87980|612423|12424|1|17|22701.63|0.03|0.02|A|F|1993-02-13|1993-02-25|1993-02-14|COLLECT COD|AIR|riously. pending, bold packages | +87981|347141|22154|1|24|28515.12|0.04|0.02|A|F|1995-03-18|1995-04-21|1995-04-04|NONE|AIR|y silent accounts use permanently alo| +87981|386776|36777|2|42|78235.92|0.06|0.03|R|F|1995-04-30|1995-04-17|1995-05-01|NONE|RAIL|s the regular ideas. ironic, bold plat| +87981|541642|16663|3|18|30305.16|0.04|0.07|R|F|1995-02-12|1995-03-09|1995-03-01|DELIVER IN PERSON|TRUCK|jole carefully against | +87981|361367|11368|4|42|59990.70|0.01|0.03|A|F|1995-01-28|1995-04-10|1995-02-03|DELIVER IN PERSON|AIR|ecial courts| +87981|489941|2451|5|30|57927.60|0.03|0.07|A|F|1995-02-26|1995-03-07|1995-03-06|COLLECT COD|REG AIR|xcuses-- carefully final ide| +87981|429532|17057|6|17|24845.67|0.09|0.04|A|F|1995-02-22|1995-03-11|1995-03-07|COLLECT COD|MAIL|ns after the stealthy, busy packages po| +87982|452180|27199|1|12|13585.92|0.10|0.04|R|F|1994-09-05|1994-08-07|1994-09-25|NONE|AIR|ly. express, pending| +87982|783927|21473|2|37|74402.93|0.10|0.04|R|F|1994-08-16|1994-09-29|1994-08-27|COLLECT COD|TRUCK|ly. fluffily pe| +87982|449757|12266|3|4|6826.92|0.03|0.01|A|F|1994-09-05|1994-09-15|1994-09-28|NONE|RAIL|oxes cajole. quickly regular pa| +87983|784993|47509|1|45|93508.20|0.02|0.07|R|F|1993-09-15|1993-07-30|1993-10-06|TAKE BACK RETURN|AIR|es over the fl| +87983|367424|4946|2|11|16405.51|0.05|0.01|A|F|1993-08-13|1993-07-03|1993-09-01|COLLECT COD|FOB|nal depths. fluffily sil| +87983|281327|43833|3|11|14391.41|0.07|0.02|A|F|1993-07-30|1993-07-25|1993-08-01|COLLECT COD|FOB|carefully bold deposits s| +87983|261982|24488|4|47|91366.59|0.09|0.03|A|F|1993-08-19|1993-08-12|1993-09-12|COLLECT COD|TRUCK|s wake quickly quickly reg| +87983|122358|22359|5|38|52453.30|0.10|0.05|A|F|1993-06-23|1993-07-16|1993-07-15|DELIVER IN PERSON|RAIL|d requests use ag| +87983|467204|42223|6|30|35135.40|0.09|0.04|R|F|1993-06-09|1993-08-01|1993-06-23|COLLECT COD|MAIL|ironic, unusual pinto beans. final pi| +88008|170651|8161|1|3|5164.95|0.00|0.04|N|O|1995-07-21|1995-07-24|1995-08-07|TAKE BACK RETURN|SHIP| special dependencies | +88008|127532|2537|2|43|67059.79|0.09|0.05|N|O|1995-07-02|1995-08-20|1995-07-31|COLLECT COD|TRUCK|efully regular warthogs | +88008|415615|3140|3|23|35203.57|0.02|0.02|N|O|1995-06-23|1995-08-16|1995-07-17|NONE|FOB|regular accounts. r| +88009|413657|13658|1|29|45548.27|0.02|0.06|A|F|1995-02-06|1994-12-11|1995-02-20|TAKE BACK RETURN|MAIL|ic accounts ha| +88009|322501|10020|2|35|53322.15|0.03|0.03|A|F|1994-11-11|1994-11-13|1994-11-14|NONE|AIR|ic pinto beans! s| +88009|267767|42778|3|37|64185.75|0.04|0.03|A|F|1994-10-26|1994-11-21|1994-10-29|TAKE BACK RETURN|TRUCK|arefully about the furious| +88009|359361|46883|4|24|34088.40|0.05|0.04|A|F|1994-10-30|1994-11-25|1994-11-15|DELIVER IN PERSON|AIR| cajole slyly express asymptotes: unusual i| +88010|459967|22477|1|31|59735.14|0.10|0.04|A|F|1993-03-25|1993-03-14|1993-04-17|TAKE BACK RETURN|SHIP|its. unusual accounts wake after the pinto | +88010|655127|30154|2|27|29216.43|0.09|0.02|R|F|1993-01-20|1993-03-02|1993-02-09|DELIVER IN PERSON|FOB|er requests. special accounts| +88011|765658|15659|1|1|1723.62|0.06|0.07|R|F|1994-01-09|1994-01-25|1994-01-12|COLLECT COD|MAIL|al asymptotes wake slyly daring, ironic acc| +88011|398164|48165|2|45|56796.75|0.07|0.02|R|F|1994-02-09|1994-01-04|1994-02-19|DELIVER IN PERSON|FOB| slyly final | +88011|940745|15782|3|14|24999.80|0.04|0.03|R|F|1994-03-30|1994-01-15|1994-04-01|NONE|FOB|sly slyly final reques| +88011|100726|13229|4|35|60435.20|0.08|0.07|R|F|1994-01-06|1994-01-06|1994-01-10|DELIVER IN PERSON|REG AIR| carefully! blithely pending | +88011|899786|49787|5|10|17857.40|0.05|0.06|A|F|1993-12-24|1994-01-05|1994-01-01|TAKE BACK RETURN|TRUCK|ld foxes cajole slyly abo| +88011|701308|13823|6|37|48442.99|0.01|0.00|A|F|1994-02-26|1994-01-01|1994-03-13|NONE|FOB|old foxes. unus| +88011|880946|43464|7|45|86710.50|0.08|0.08|R|F|1994-01-19|1994-02-21|1994-02-09|TAKE BACK RETURN|AIR|st the furiously reg| +88012|56488|18990|1|28|40445.44|0.00|0.00|A|F|1993-11-23|1994-01-26|1993-12-21|NONE|REG AIR|even packages. slyly ironi| +88012|393345|30867|2|22|31643.26|0.04|0.05|R|F|1994-01-04|1993-12-17|1994-01-06|TAKE BACK RETURN|AIR| regular requests by the ironic foxes wake | +88012|940132|40133|3|26|30474.34|0.02|0.08|R|F|1993-12-07|1993-12-19|1993-12-30|TAKE BACK RETURN|RAIL|al theodolites. regular theodoli| +88012|797092|47093|4|4|4756.24|0.09|0.00|A|F|1994-01-30|1994-01-03|1994-02-17|TAKE BACK RETURN|SHIP|ide of the theodolites sleep unde| +88012|718638|6181|5|24|39758.40|0.10|0.07|R|F|1994-03-06|1994-01-27|1994-03-24|DELIVER IN PERSON|SHIP| ironic deposits. carefully brave pi| +88012|137690|37691|6|31|53558.39|0.05|0.02|A|F|1994-02-24|1994-01-28|1994-03-07|COLLECT COD|MAIL|oxes cajole across the ironic,| +88013|70953|8457|1|15|28859.25|0.06|0.02|A|F|1993-03-05|1993-02-20|1993-03-15|NONE|FOB|t regular, bold foxes| +88013|493687|18706|2|4|6722.64|0.06|0.08|A|F|1993-02-14|1993-03-05|1993-03-10|NONE|MAIL| of the regular deposits. furi| +88014|873467|48502|1|8|11523.36|0.09|0.01|N|O|1997-07-31|1997-08-20|1997-08-03|NONE|FOB|ys silent requests| +88014|348500|11007|2|41|63488.09|0.02|0.04|N|O|1997-10-16|1997-09-26|1997-10-26|COLLECT COD|REG AIR|al accounts x-ray quickly. fluffily u| +88014|234108|46613|3|48|50020.32|0.05|0.07|N|O|1997-10-17|1997-09-16|1997-10-31|TAKE BACK RETURN|SHIP|structions eat fluffily along t| +88014|649661|12174|4|28|45097.64|0.09|0.04|N|O|1997-09-08|1997-09-14|1997-09-30|TAKE BACK RETURN|MAIL|e above the bold, spec| +88015|433610|46119|1|19|29328.21|0.06|0.06|N|O|1995-07-03|1995-07-17|1995-07-12|COLLECT COD|FOB|uriously regular requests detect sp| +88015|671224|46251|2|3|3585.57|0.08|0.08|N|O|1995-09-09|1995-08-30|1995-10-08|TAKE BACK RETURN|MAIL|ly after the ironic pinto beans-- fluffily| +88015|259127|9128|3|13|14119.43|0.06|0.00|N|O|1995-08-31|1995-08-18|1995-09-29|NONE|AIR|arefully. express accounts| +88015|144202|31709|4|31|38632.20|0.01|0.03|N|O|1995-06-22|1995-07-31|1995-07-13|TAKE BACK RETURN|REG AIR| accounts cajole furiously before| +88015|602256|2257|5|25|28955.50|0.00|0.05|N|O|1995-09-29|1995-08-26|1995-10-14|DELIVER IN PERSON|REG AIR|cial foxes lose furio| +88015|114931|27434|6|9|17513.37|0.03|0.03|N|O|1995-06-20|1995-08-05|1995-07-05|COLLECT COD|RAIL|ing, even f| +88015|635268|10293|7|26|31283.98|0.00|0.02|N|O|1995-10-07|1995-09-03|1995-11-01|COLLECT COD|AIR|he always special plat| +88040|943912|43913|1|13|25426.31|0.02|0.01|A|F|1994-02-08|1994-03-23|1994-02-09|DELIVER IN PERSON|SHIP| x-ray fluffily ironic inst| +88040|317525|42538|2|11|16967.61|0.02|0.07|R|F|1994-02-03|1994-04-13|1994-02-22|TAKE BACK RETURN|AIR|ans sleep blithely.| +88040|635530|35531|3|4|5862.00|0.05|0.07|R|F|1994-05-26|1994-04-17|1994-06-10|TAKE BACK RETURN|AIR|onic requests along the fu| +88040|342926|30445|4|42|82694.22|0.03|0.04|R|F|1994-02-27|1994-03-13|1994-03-28|NONE|TRUCK|ess, final requests. carefully final reques| +88040|551333|1334|5|12|16611.72|0.04|0.04|A|F|1994-03-04|1994-02-27|1994-04-03|NONE|TRUCK|tions along the regula| +88041|229069|41574|1|12|11976.60|0.02|0.07|N|O|1997-09-20|1997-10-01|1997-10-16|COLLECT COD|TRUCK|ges solve. fluffily final dependencies | +88041|956223|43781|2|49|62679.82|0.02|0.08|N|O|1997-10-27|1997-09-23|1997-11-08|NONE|RAIL|ely regular theodolit| +88041|224181|36686|3|26|28734.42|0.05|0.03|N|O|1997-10-24|1997-10-30|1997-10-26|DELIVER IN PERSON|TRUCK| carefully. qu| +88041|793668|6184|4|44|77511.72|0.01|0.02|N|O|1997-09-21|1997-09-10|1997-10-13|TAKE BACK RETURN|TRUCK|print furiously special| +88041|162830|37837|5|30|56784.90|0.08|0.02|N|O|1997-10-24|1997-09-09|1997-10-28|COLLECT COD|RAIL|y bold foxes. carefully special pinto | +88041|668359|43386|6|45|59729.40|0.00|0.04|N|O|1997-09-05|1997-10-07|1997-09-21|NONE|MAIL|outs integrate furi| +88041|107375|32380|7|31|42853.47|0.06|0.03|N|O|1997-08-21|1997-10-28|1997-09-10|NONE|TRUCK| haggle according to the furiously regular | +88042|639576|2089|1|41|62137.14|0.10|0.07|A|F|1994-06-10|1994-07-18|1994-06-21|TAKE BACK RETURN|REG AIR| blithely final epitaphs. ide| +88042|346241|8748|2|27|34755.21|0.10|0.06|A|F|1994-06-19|1994-06-02|1994-07-09|TAKE BACK RETURN|REG AIR|lly regular packages beside the instruc| +88042|260972|23478|3|42|81184.32|0.03|0.01|R|F|1994-06-03|1994-07-15|1994-06-20|TAKE BACK RETURN|FOB|ar instructions. blithely pending | +88042|141555|16560|4|3|4789.65|0.05|0.02|R|F|1994-05-07|1994-07-16|1994-06-05|NONE|RAIL|s affix blithely | +88043|847424|9941|1|12|16456.56|0.10|0.05|R|F|1993-10-27|1993-11-03|1993-11-26|NONE|TRUCK|en platelets integrate furiousl| +88043|639672|27209|2|47|75747.08|0.01|0.00|R|F|1993-10-28|1993-10-06|1993-11-05|DELIVER IN PERSON|SHIP|oss the carefully regular accounts. fluf| +88043|953847|28886|3|35|66528.00|0.06|0.02|A|F|1993-12-09|1993-10-17|1993-12-24|DELIVER IN PERSON|AIR| special braids integ| +88043|306496|19003|4|41|61601.68|0.05|0.08|A|F|1993-10-31|1993-10-04|1993-11-04|DELIVER IN PERSON|FOB|ve the furiousl| +88043|275182|25183|5|27|31243.59|0.00|0.06|R|F|1993-11-08|1993-11-14|1993-11-14|COLLECT COD|AIR|kly even requests a| +88043|977058|27059|6|16|18160.16|0.08|0.08|A|F|1993-10-11|1993-10-20|1993-11-10|NONE|AIR|orges haggle blithely. slyly| +88043|407646|32663|7|34|52823.08|0.04|0.01|A|F|1993-09-06|1993-11-08|1993-09-19|COLLECT COD|TRUCK|lly along the blithely regular acc| +88044|294773|19784|1|37|65407.12|0.08|0.04|R|F|1993-02-09|1993-01-12|1993-02-28|DELIVER IN PERSON|MAIL|iously carefully regular dolphins. ironic,| +88044|234996|10005|2|35|67584.30|0.06|0.00|A|F|1993-02-14|1993-01-17|1993-03-04|DELIVER IN PERSON|SHIP|ts. brave reques| +88044|562299|49833|3|31|42199.37|0.00|0.05|R|F|1993-03-05|1993-02-13|1993-04-04|NONE|TRUCK|ely about the final c| +88044|549274|49275|4|2|2646.50|0.06|0.00|R|F|1993-02-01|1993-01-06|1993-02-09|COLLECT COD|RAIL|xes cajole fluffily: furiously spe| +88044|639559|2072|5|24|35964.48|0.10|0.02|R|F|1992-12-17|1993-02-26|1992-12-18|COLLECT COD|TRUCK|ounts against the furiously final| +88044|53417|40921|6|4|5481.64|0.06|0.04|R|F|1993-02-07|1993-02-21|1993-02-22|TAKE BACK RETURN|MAIL|y frays sleep. blithely even | +88044|774628|37144|7|17|28944.03|0.09|0.08|R|F|1992-12-09|1993-01-09|1993-01-08|COLLECT COD|REG AIR|ingly during the unusu| +88045|168425|43432|1|26|38828.92|0.00|0.03|A|F|1994-09-22|1994-09-18|1994-10-05|NONE|AIR|beans. even instructions are evenly. furiou| +88045|717424|42453|2|20|28827.80|0.05|0.06|R|F|1994-08-09|1994-10-02|1994-08-31|NONE|SHIP|ong the quickly f| +88045|735988|35989|3|35|70838.25|0.01|0.08|R|F|1994-08-24|1994-09-22|1994-09-12|COLLECT COD|REG AIR|eas sleep slyly| +88045|749312|49313|4|6|8167.68|0.02|0.00|R|F|1994-10-30|1994-10-21|1994-11-12|COLLECT COD|TRUCK| slyly final realms about the quickly | +88045|673108|35622|5|44|47567.08|0.08|0.03|R|F|1994-09-13|1994-09-29|1994-09-15|COLLECT COD|REG AIR|c packages against | +88046|771795|34311|1|34|63469.84|0.02|0.06|N|O|1995-08-05|1995-08-18|1995-08-24|COLLECT COD|AIR|lyly even requests snooze slyly final a| +88046|544953|32484|2|40|79917.20|0.00|0.03|N|O|1995-07-02|1995-08-25|1995-07-19|TAKE BACK RETURN|REG AIR| integrate. regular| +88047|495069|7579|1|34|36177.36|0.05|0.05|N|O|1997-05-07|1997-04-13|1997-05-29|DELIVER IN PERSON|REG AIR|ial theodolites. slyly even accounts in| +88047|611922|36947|2|23|42179.47|0.08|0.04|N|O|1997-04-01|1997-05-29|1997-04-30|DELIVER IN PERSON|REG AIR|uses wake. regular packages among the s| +88047|556844|19356|3|19|36115.58|0.05|0.05|N|O|1997-05-30|1997-06-04|1997-06-07|COLLECT COD|RAIL|ly. unusual, pending| +88047|872311|22312|4|21|26948.67|0.04|0.06|N|O|1997-05-08|1997-04-23|1997-05-19|DELIVER IN PERSON|SHIP|ymptotes. slyly express foxes are blithe| +88047|930691|18246|5|31|53371.15|0.01|0.06|N|O|1997-05-21|1997-04-27|1997-05-30|NONE|FOB|nding foxes wake. quickly | +88047|116391|41396|6|47|66147.33|0.10|0.03|N|O|1997-03-22|1997-05-20|1997-04-10|COLLECT COD|REG AIR|aggle quickly ironic requests. carefully| +88072|467861|42880|1|2|3657.68|0.05|0.08|N|O|1995-08-05|1995-08-08|1995-08-18|DELIVER IN PERSON|SHIP|lar requests boost express pains. iron| +88072|338900|26419|2|48|93066.72|0.06|0.06|N|O|1995-09-18|1995-08-09|1995-10-14|COLLECT COD|TRUCK|fluffily ir| +88072|876077|13629|3|46|48439.38|0.09|0.00|N|O|1995-08-22|1995-07-28|1995-09-20|COLLECT COD|SHIP|s. blithely final foxes serve expr| +88073|185348|35349|1|48|68800.32|0.07|0.02|N|O|1996-06-01|1996-04-18|1996-06-12|COLLECT COD|TRUCK| the quickly even requests doze fluf| +88073|139602|14607|2|35|57456.00|0.04|0.08|N|O|1996-06-10|1996-05-21|1996-07-10|NONE|FOB| ideas cajole a| +88073|289162|14173|3|31|35685.65|0.04|0.04|N|O|1996-06-12|1996-04-29|1996-06-21|TAKE BACK RETURN|FOB|ut the regular requests are daringly final| +88073|944785|32340|4|25|45743.50|0.10|0.08|N|O|1996-04-10|1996-05-10|1996-04-23|TAKE BACK RETURN|REG AIR|egular, pending dolphins against the | +88073|991357|3877|5|27|39104.37|0.03|0.02|N|O|1996-05-22|1996-05-26|1996-05-28|COLLECT COD|AIR|ns. furiously even deposits wake slyly unu| +88073|728351|28352|6|5|6896.60|0.03|0.02|N|O|1996-04-25|1996-04-22|1996-05-25|DELIVER IN PERSON|TRUCK|quickly even in| +88073|384827|22349|7|19|36324.39|0.04|0.08|N|O|1996-04-01|1996-05-08|1996-04-18|TAKE BACK RETURN|AIR|even packages. deposits wake quickly s| +88074|773980|11526|1|28|57510.60|0.01|0.02|A|F|1992-03-29|1992-04-20|1992-04-10|TAKE BACK RETURN|TRUCK|oost slyly against the qui| +88074|266911|29417|2|34|63848.60|0.00|0.02|R|F|1992-06-04|1992-05-24|1992-06-20|NONE|MAIL|ly even pinto beans. excuses across th| +88074|970026|32546|3|7|7671.86|0.05|0.07|A|F|1992-04-24|1992-05-09|1992-05-06|TAKE BACK RETURN|RAIL|l sheaves. slyly even| +88074|214991|27496|4|39|74333.22|0.09|0.06|R|F|1992-03-26|1992-05-17|1992-03-28|DELIVER IN PERSON|RAIL|impress closely. bold somas sleep bli| +88074|348903|48904|5|6|11711.34|0.05|0.00|A|F|1992-04-28|1992-05-02|1992-05-16|TAKE BACK RETURN|REG AIR|osits. requests slee| +88074|5|6|6|31|28055.00|0.07|0.08|R|F|1992-04-02|1992-05-13|1992-04-25|NONE|AIR|ly according to the re| +88074|67511|5015|7|17|25134.67|0.05|0.08|A|F|1992-05-17|1992-04-18|1992-05-18|DELIVER IN PERSON|SHIP|ly even ideas. | +88075|644961|32498|1|12|22871.16|0.05|0.01|A|F|1994-06-03|1994-07-08|1994-06-15|TAKE BACK RETURN|REG AIR|s sleep slyly across the final f| +88075|851510|39062|2|12|17537.64|0.06|0.03|R|F|1994-07-31|1994-06-02|1994-08-19|DELIVER IN PERSON|TRUCK|carefully special platel| +88075|316038|41051|3|43|45322.86|0.02|0.02|R|F|1994-06-04|1994-06-20|1994-06-06|NONE|MAIL|thely sauterne| +88076|610797|23310|1|31|52940.56|0.09|0.02|N|O|1997-01-29|1997-01-10|1997-02-13|TAKE BACK RETURN|RAIL|posits. re| +88076|660921|23435|2|8|15055.12|0.02|0.03|N|O|1997-02-17|1996-12-21|1997-02-25|COLLECT COD|SHIP|ckages. accounts wake; | +88076|88921|1423|3|37|70667.04|0.00|0.03|N|O|1997-02-06|1997-01-19|1997-02-22|DELIVER IN PERSON|TRUCK|ven instruct| +88076|485626|23154|4|21|33843.60|0.06|0.07|N|O|1996-12-03|1996-12-06|1997-01-02|TAKE BACK RETURN|REG AIR|ic ideas. carefully ev| +88076|907076|19595|5|1|1083.03|0.01|0.04|N|O|1996-11-28|1996-12-04|1996-12-26|TAKE BACK RETURN|FOB|s. blithely ir| +88076|219026|6539|6|33|31185.33|0.08|0.08|N|O|1997-03-04|1997-01-07|1997-04-02|NONE|TRUCK|cial pinto beans.| +88077|193868|43869|1|17|33351.62|0.00|0.04|N|O|1998-05-17|1998-07-03|1998-05-21|DELIVER IN PERSON|AIR|lently regular sentiments| +88077|334588|47095|2|14|22715.98|0.01|0.06|N|O|1998-07-25|1998-06-09|1998-08-16|NONE|RAIL|ely final accounts. furiously regular pac| +88077|404555|4556|3|39|56921.67|0.01|0.03|N|O|1998-04-28|1998-05-26|1998-05-08|DELIVER IN PERSON|FOB|c requests. quickly ironic asymptote| +88077|343404|5911|4|20|28947.80|0.08|0.00|N|O|1998-07-09|1998-07-04|1998-07-21|DELIVER IN PERSON|TRUCK|its. fluffily u| +88077|581141|18675|5|22|26886.64|0.00|0.08|N|O|1998-08-07|1998-05-23|1998-09-04|DELIVER IN PERSON|AIR|s. quickly final theodolites are. blithely| +88077|234016|46521|6|24|22800.00|0.04|0.05|N|O|1998-05-14|1998-06-26|1998-05-31|DELIVER IN PERSON|AIR| warthogs wake | +88077|101417|26422|7|44|62410.04|0.09|0.00|N|O|1998-05-18|1998-07-15|1998-06-17|COLLECT COD|RAIL|ts shall are| +88078|512522|53|1|32|49104.00|0.02|0.02|N|O|1998-06-21|1998-05-14|1998-07-05|TAKE BACK RETURN|TRUCK| slyly. quickl| +88078|945204|45205|2|26|32478.16|0.03|0.04|N|O|1998-06-28|1998-05-22|1998-07-05|TAKE BACK RETURN|AIR|ely regular excuse| +88078|35598|48099|3|43|65944.37|0.09|0.04|N|O|1998-03-14|1998-05-19|1998-03-20|TAKE BACK RETURN|MAIL|ut the quickl| +88078|287636|25152|4|20|32472.40|0.07|0.02|N|O|1998-03-30|1998-05-06|1998-04-05|DELIVER IN PERSON|REG AIR| ironic asymptotes haggle carefully. epitap| +88078|289148|1654|5|22|25016.86|0.08|0.07|N|O|1998-06-04|1998-05-08|1998-06-29|TAKE BACK RETURN|RAIL|ing to the | +88078|704969|29998|6|22|43426.46|0.05|0.03|N|O|1998-03-30|1998-04-23|1998-04-17|TAKE BACK RETURN|SHIP|e. carefully silent pains sle| +88078|410453|35470|7|10|13634.30|0.01|0.07|N|O|1998-06-30|1998-04-27|1998-07-20|DELIVER IN PERSON|FOB|es. furiously si| +88079|470068|45087|1|21|21798.84|0.06|0.06|R|F|1992-10-12|1992-11-18|1992-11-03|DELIVER IN PERSON|REG AIR|final deposits. ironic de| +88079|427484|2501|2|36|50812.56|0.00|0.05|A|F|1992-10-01|1992-09-25|1992-10-31|DELIVER IN PERSON|MAIL| boost across the ca| +88079|720291|20292|3|35|45894.10|0.07|0.08|A|F|1992-12-20|1992-09-20|1992-12-25|DELIVER IN PERSON|MAIL|ithely blithely ironic instruction| +88104|140287|40288|1|9|11945.52|0.01|0.08|R|F|1994-10-28|1994-09-20|1994-10-30|NONE|FOB|r the ironic, un| +88104|796852|9368|2|34|66259.88|0.02|0.00|A|F|1994-12-02|1994-10-27|1994-12-12|TAKE BACK RETURN|SHIP|heodolites cajole carefully. ironic| +88104|688488|1002|3|44|64963.80|0.09|0.04|A|F|1994-11-08|1994-09-13|1994-11-25|COLLECT COD|MAIL|uick dependencies nag eve| +88104|411374|23883|4|21|26992.35|0.09|0.04|A|F|1994-09-08|1994-10-10|1994-09-23|NONE|RAIL|regular orbits after the| +88104|957428|7429|5|31|46046.78|0.10|0.08|R|F|1994-08-31|1994-10-30|1994-09-08|NONE|SHIP|ns cajole. instructi| +88105|447433|9942|1|9|12423.69|0.01|0.05|R|F|1993-12-19|1993-11-06|1994-01-02|TAKE BACK RETURN|AIR| special platelets. finally even theo| +88105|999226|49227|2|38|50356.84|0.07|0.08|A|F|1993-10-14|1993-12-11|1993-10-31|NONE|FOB|e quickly fluffily special platelet| +88105|988427|13466|3|44|66676.72|0.06|0.00|A|F|1993-12-15|1993-11-29|1994-01-11|TAKE BACK RETURN|RAIL|final asymptotes should hinder. f| +88105|481079|6098|4|20|21201.00|0.06|0.01|A|F|1993-11-26|1993-12-20|1993-12-23|TAKE BACK RETURN|MAIL|to beans are slyly? furiousl| +88106|783954|21500|1|45|91706.40|0.06|0.03|N|O|1997-10-01|1997-07-06|1997-10-30|COLLECT COD|TRUCK|atelets; carefully reg| +88106|914205|39242|2|34|41451.44|0.04|0.07|N|O|1997-06-18|1997-07-31|1997-06-25|TAKE BACK RETURN|REG AIR|c packages sleep slyly against the fl| +88106|42265|17266|3|10|12072.60|0.05|0.05|N|O|1997-07-01|1997-08-07|1997-07-15|TAKE BACK RETURN|FOB|posits haggle careful| +88106|346405|21418|4|1|1451.39|0.10|0.05|N|O|1997-10-03|1997-08-26|1997-10-09|COLLECT COD|SHIP|ckages are quickly around | +88107|183128|8135|1|33|39966.96|0.06|0.02|N|O|1996-06-26|1996-07-30|1996-07-21|NONE|AIR|sits. carefully ironic asymp| +88108|774859|24860|1|19|36742.58|0.10|0.08|R|F|1992-11-02|1992-12-04|1992-11-28|TAKE BACK RETURN|RAIL|s haggle above the furiously eve| +88108|42885|5386|2|22|40213.36|0.01|0.01|A|F|1992-12-05|1992-11-30|1992-12-18|TAKE BACK RETURN|FOB|uickly bold packages. | +88108|762520|37551|3|38|60134.62|0.09|0.06|R|F|1992-09-26|1992-10-13|1992-10-07|COLLECT COD|REG AIR| silent deposits. fur| +88108|661952|36979|4|9|17225.28|0.02|0.01|R|F|1992-11-04|1992-12-05|1992-11-23|DELIVER IN PERSON|MAIL|foxes against the pending | +88109|610169|10170|1|23|24819.99|0.06|0.08|A|F|1992-08-27|1992-09-18|1992-09-20|DELIVER IN PERSON|MAIL|re furiously blithely| +88109|107610|7611|2|31|50145.91|0.10|0.00|R|F|1992-09-16|1992-09-28|1992-09-18|COLLECT COD|RAIL|ironic dependencies-- furiousl| +88109|589255|39256|3|46|61834.58|0.07|0.01|R|F|1992-10-06|1992-10-14|1992-10-20|NONE|FOB|jole about| +88109|601019|26044|4|29|26679.42|0.09|0.00|R|F|1992-10-19|1992-10-14|1992-11-13|NONE|AIR|ithely final de| +88109|309687|22194|5|45|76350.15|0.00|0.05|R|F|1992-08-26|1992-09-13|1992-09-01|TAKE BACK RETURN|SHIP|es. boldly ironic re| +88109|893082|30634|6|27|29026.08|0.08|0.05|R|F|1992-11-09|1992-09-14|1992-11-24|DELIVER IN PERSON|SHIP|ss requests wake blithely acc| +88109|24444|11945|7|29|39684.76|0.00|0.04|R|F|1992-08-15|1992-09-08|1992-09-01|COLLECT COD|AIR|ites boost furiously ca| +88110|822026|9575|1|8|7583.84|0.03|0.08|N|O|1995-09-29|1995-11-29|1995-10-04|DELIVER IN PERSON|SHIP|s. slyly special courts a| +88110|784421|9452|2|10|15053.90|0.07|0.08|N|O|1995-11-08|1995-10-21|1995-12-04|TAKE BACK RETURN|SHIP|en ideas cajole blithely. foxes must have| +88110|752032|2033|3|34|36856.00|0.06|0.02|N|O|1995-10-02|1995-10-02|1995-10-06|DELIVER IN PERSON|AIR|s. express, final fo| +88110|401730|39255|4|1|1631.71|0.09|0.07|N|O|1995-12-12|1995-10-23|1995-12-25|NONE|TRUCK|detect flu| +88111|441523|29048|1|23|33683.50|0.09|0.08|A|F|1993-01-04|1993-02-15|1993-01-26|DELIVER IN PERSON|REG AIR|eposits. slyly regular instructions pri| +88111|672661|47688|2|28|45741.64|0.04|0.07|R|F|1993-02-08|1993-02-06|1993-02-21|TAKE BACK RETURN|REG AIR|ag slyly. quickly express requests| +88136|857530|45082|1|49|72887.01|0.08|0.04|A|F|1995-02-13|1995-03-08|1995-02-23|DELIVER IN PERSON|FOB| instructions nag carefully o| +88136|498956|48957|2|28|54738.04|0.00|0.08|A|F|1995-04-21|1995-04-22|1995-05-15|NONE|AIR|nic deposits about the blithely even | +88136|945763|8282|3|14|25322.08|0.07|0.04|A|F|1995-02-26|1995-03-07|1995-02-28|DELIVER IN PERSON|MAIL|ans should have t| +88136|436938|24463|4|8|14999.28|0.05|0.04|A|F|1995-02-05|1995-04-05|1995-02-06|TAKE BACK RETURN|REG AIR|olites wake slyly quickly bold packages. e| +88136|608727|33752|5|44|71970.36|0.06|0.08|R|F|1995-02-18|1995-03-15|1995-03-11|COLLECT COD|MAIL|arefully pending depe| +88137|193954|43955|1|45|92157.75|0.08|0.06|N|O|1996-09-03|1996-06-21|1996-09-12|COLLECT COD|AIR|slyly ironic requests are quickl| +88137|784094|34095|2|20|23561.20|0.08|0.04|N|O|1996-07-03|1996-07-13|1996-07-24|COLLECT COD|FOB|quests. unusual, even e| +88138|551802|39336|1|35|64882.30|0.05|0.05|N|O|1998-03-17|1998-05-29|1998-04-11|TAKE BACK RETURN|AIR|ithely final packages-- flu| +88138|121686|34189|2|23|39276.64|0.06|0.04|N|O|1998-05-09|1998-04-18|1998-06-04|DELIVER IN PERSON|RAIL|usly even accounts affix fluffily bli| +88138|164330|1840|3|45|62744.85|0.03|0.07|N|O|1998-04-25|1998-05-27|1998-05-15|DELIVER IN PERSON|FOB|arhorses. furiously even exc| +88139|501515|39046|1|39|59143.11|0.07|0.01|N|O|1996-02-13|1996-01-23|1996-03-08|NONE|RAIL|fily special requests| +88139|949988|25025|2|17|34644.98|0.00|0.01|N|O|1995-12-27|1995-12-23|1996-01-15|DELIVER IN PERSON|SHIP|lites. carefully final foxes ac| +88139|433698|8715|3|35|57108.45|0.01|0.07|N|O|1996-01-20|1996-01-18|1996-02-18|TAKE BACK RETURN|MAIL|according to the asymptotes ar| +88140|882644|20196|1|10|16266.00|0.06|0.08|N|O|1998-06-06|1998-08-01|1998-06-30|DELIVER IN PERSON|AIR|carefully among th| +88140|597363|47364|2|39|56953.26|0.03|0.05|N|O|1998-07-14|1998-07-28|1998-08-04|DELIVER IN PERSON|REG AIR|ickly final pinto beans. dep| +88140|874558|37076|3|27|41377.77|0.03|0.00|N|O|1998-07-06|1998-07-17|1998-07-17|COLLECT COD|REG AIR|ing to the regular, silent requests hag| +88141|470603|45622|1|13|20456.54|0.00|0.08|N|O|1997-09-06|1997-11-20|1997-09-17|COLLECT COD|SHIP| ideas sleep about the care| +88141|408110|20619|2|2|2036.18|0.10|0.00|N|O|1997-09-07|1997-11-19|1997-09-27|COLLECT COD|RAIL|carefully unusual requests. pin| +88141|96043|8545|3|25|25976.00|0.04|0.03|N|O|1997-11-20|1997-11-15|1997-12-10|DELIVER IN PERSON|MAIL|the carefully ir| +88141|181452|31453|4|15|23001.75|0.00|0.00|N|O|1997-12-07|1997-11-08|1998-01-06|TAKE BACK RETURN|FOB|y special req| +88142|37635|136|1|5|7863.15|0.01|0.06|N|O|1998-06-12|1998-06-05|1998-07-11|TAKE BACK RETURN|FOB| special requests beli| +88142|518759|18760|2|3|5333.19|0.01|0.00|N|O|1998-08-20|1998-06-28|1998-09-18|NONE|REG AIR|usly among the quickly even | +88142|766147|3693|3|43|52163.73|0.08|0.07|N|O|1998-06-14|1998-06-10|1998-06-29|COLLECT COD|MAIL|yly express gi| +88143|356537|31552|1|43|68521.36|0.08|0.06|N|O|1998-01-25|1997-11-07|1998-02-11|DELIVER IN PERSON|SHIP|efully pending asymptotes | +88168|842383|42384|1|24|31808.16|0.08|0.01|A|F|1993-03-11|1993-05-04|1993-03-18|DELIVER IN PERSON|REG AIR|ly quick deposits cajole accordin| +88168|926503|26504|2|14|21412.44|0.08|0.07|R|F|1993-04-26|1993-05-02|1993-05-15|NONE|MAIL|ing to the quickly regu| +88168|727341|2370|3|50|68415.50|0.08|0.01|A|F|1993-05-04|1993-04-06|1993-06-02|DELIVER IN PERSON|AIR|enly unusual, final requests. b| +88168|406685|6686|4|50|79583.00|0.04|0.01|A|F|1993-05-09|1993-04-13|1993-06-08|DELIVER IN PERSON|RAIL|ctions. final f| +88169|75744|25745|1|36|61910.64|0.06|0.06|R|F|1994-06-26|1994-09-02|1994-07-20|NONE|REG AIR|ular dolphins wake quickly quickly | +88169|19083|31584|2|48|48099.84|0.09|0.08|A|F|1994-06-22|1994-08-28|1994-06-26|COLLECT COD|RAIL|cording to | +88169|714775|2318|3|21|37584.54|0.06|0.08|A|F|1994-08-19|1994-08-04|1994-08-31|TAKE BACK RETURN|AIR|ular accounts after the blithely final| +88169|215108|15109|4|20|20461.80|0.05|0.05|A|F|1994-06-25|1994-07-30|1994-07-14|NONE|REG AIR| slyly specia| +88170|224028|36533|1|16|15232.16|0.05|0.07|N|O|1995-10-22|1995-11-17|1995-11-14|DELIVER IN PERSON|AIR|olites. pending ideas sle| +88170|237388|37389|2|9|11928.33|0.01|0.00|N|O|1995-10-25|1995-11-17|1995-11-01|TAKE BACK RETURN|MAIL|s affix furiously beside the furiousl| +88170|764315|1861|3|24|33102.72|0.06|0.01|N|O|1996-01-14|1995-10-29|1996-01-15|NONE|REG AIR|y bold request| +88170|835603|23152|4|45|69235.20|0.10|0.01|N|O|1996-01-10|1995-12-12|1996-02-07|TAKE BACK RETURN|RAIL|uests under the expre| +88170|966685|29205|5|24|42039.36|0.06|0.08|N|O|1995-12-18|1995-10-31|1996-01-16|TAKE BACK RETURN|FOB|oxes. carefully bold accounts b| +88170|73424|23425|6|29|40525.18|0.10|0.00|N|O|1995-11-01|1995-12-08|1995-11-06|TAKE BACK RETURN|MAIL|ss requests dazzle. furiously final ideas| +88171|360245|22753|1|47|61345.81|0.02|0.05|N|O|1996-12-06|1996-12-24|1997-01-03|COLLECT COD|MAIL|late fluffily bold excuses. ca| +88172|872819|22820|1|22|39418.94|0.10|0.00|A|F|1993-06-06|1993-06-19|1993-06-26|TAKE BACK RETURN|AIR|structions against the slyly | +88172|453412|40940|2|21|28673.19|0.10|0.05|R|F|1993-06-26|1993-05-26|1993-07-19|COLLECT COD|TRUCK|s sleep fu| +88172|479234|4253|3|29|35183.09|0.03|0.06|A|F|1993-07-06|1993-06-20|1993-07-15|TAKE BACK RETURN|AIR|ic pinto beans| +88172|480633|5652|4|43|69385.23|0.09|0.05|R|F|1993-06-04|1993-07-06|1993-06-08|DELIVER IN PERSON|AIR| carefully. instructions | +88173|623378|35891|1|47|61162.98|0.09|0.06|R|F|1995-04-23|1995-03-26|1995-05-06|DELIVER IN PERSON|TRUCK|ublate. furiously iron| +88173|98872|36376|2|31|57996.97|0.03|0.02|A|F|1995-03-15|1995-03-12|1995-03-21|NONE|AIR| packages haggle slyly. express deposits| +88173|732562|45077|3|26|41457.78|0.10|0.03|R|F|1995-02-14|1995-04-06|1995-02-21|DELIVER IN PERSON|RAIL|. ironic gifts use furiously alway| +88173|163763|13764|4|9|16440.84|0.05|0.04|A|F|1995-04-09|1995-04-10|1995-05-07|DELIVER IN PERSON|FOB|usly. regular packag| +88173|360183|35198|5|30|37295.10|0.08|0.08|R|F|1995-02-20|1995-03-02|1995-03-06|COLLECT COD|AIR|. carefully pending deposits was| +88173|583375|20909|6|32|46667.20|0.08|0.03|R|F|1995-03-09|1995-03-12|1995-03-20|NONE|TRUCK|, regular instru| +88173|776945|39461|7|19|38416.29|0.07|0.07|A|F|1995-05-11|1995-03-02|1995-06-03|DELIVER IN PERSON|SHIP|es. requests sleep quickly. regular ac| +88174|108847|21350|1|35|64954.40|0.05|0.00|N|O|1996-07-05|1996-05-29|1996-08-03|TAKE BACK RETURN|SHIP| carefully express requests. furiously ca| +88174|375380|395|2|16|23285.92|0.03|0.06|N|O|1996-05-06|1996-06-10|1996-05-17|DELIVER IN PERSON|FOB|regular excuses breach about the furio| +88174|996388|8908|3|13|19296.42|0.00|0.05|N|O|1996-06-09|1996-06-01|1996-07-08|COLLECT COD|SHIP|ular accounts maintain f| +88174|285352|47858|4|12|16048.08|0.06|0.01|N|O|1996-08-07|1996-06-15|1996-08-11|DELIVER IN PERSON|FOB|onic sauternes. theodolites hagg| +88174|906309|18828|5|14|18413.64|0.01|0.04|N|O|1996-06-10|1996-06-17|1996-07-06|COLLECT COD|AIR|express in| +88175|4026|41527|1|43|39990.86|0.04|0.02|N|O|1998-05-06|1998-05-13|1998-05-18|DELIVER IN PERSON|TRUCK|special requests pr| +88175|663346|38373|2|18|23567.58|0.03|0.00|N|O|1998-05-23|1998-06-07|1998-06-21|COLLECT COD|TRUCK|egrate furiously ironic packages| +88175|839660|27209|3|34|54387.08|0.00|0.06|N|O|1998-07-28|1998-07-05|1998-08-20|NONE|TRUCK|e blithely alongside of the caref| +88175|149357|24362|4|17|23907.95|0.08|0.01|N|O|1998-06-17|1998-07-05|1998-06-24|TAKE BACK RETURN|SHIP|ly bold dependencies boos| +88175|234553|22066|5|21|31238.34|0.01|0.02|N|O|1998-04-27|1998-05-13|1998-05-02|TAKE BACK RETURN|RAIL|ave to promise carefully carefully fina| +88200|52160|39664|1|22|24467.52|0.09|0.07|N|O|1997-11-05|1997-09-28|1997-11-22|NONE|REG AIR|ully bold requests are quick| +88200|641569|41570|2|14|21147.42|0.10|0.04|N|O|1997-09-09|1997-08-16|1997-09-28|TAKE BACK RETURN|AIR|te slyly final asymptote| +88201|255892|18398|1|24|44349.12|0.05|0.06|N|F|1995-06-17|1995-08-24|1995-06-30|DELIVER IN PERSON|SHIP|even theodolites. bold, fi| +88201|773476|23477|2|13|20142.72|0.05|0.05|N|O|1995-10-08|1995-09-02|1995-10-20|COLLECT COD|MAIL|eas. slowly | +88201|803491|41040|3|18|25100.10|0.08|0.07|N|O|1995-09-16|1995-08-12|1995-09-26|TAKE BACK RETURN|RAIL|y special | +88202|41334|28835|1|29|36984.57|0.10|0.06|R|F|1993-02-12|1993-04-22|1993-03-03|DELIVER IN PERSON|RAIL|poach slyly quickly final foxes. furiousl| +88202|691076|41077|2|28|29877.12|0.08|0.00|A|F|1993-05-22|1993-03-15|1993-05-30|DELIVER IN PERSON|FOB|ccounts sleep even accounts. | +88202|904418|29455|3|12|17068.44|0.08|0.03|R|F|1993-03-14|1993-03-22|1993-04-07|DELIVER IN PERSON|RAIL|silent requests. spec| +88203|623693|48718|1|3|4849.98|0.04|0.07|A|F|1992-11-25|1992-11-11|1992-12-01|DELIVER IN PERSON|AIR|aintain about the s| +88203|399617|37139|2|28|48064.80|0.10|0.08|R|F|1992-12-20|1992-11-03|1992-12-28|DELIVER IN PERSON|TRUCK|fluffily. ironic ex| +88203|355707|5708|3|34|59931.46|0.10|0.05|A|F|1993-01-22|1992-12-16|1993-02-05|TAKE BACK RETURN|SHIP|quests. special instructions nag careful| +88204|98096|10598|1|12|13129.08|0.06|0.01|R|F|1993-09-16|1993-10-12|1993-10-03|DELIVER IN PERSON|FOB|fluffily ironic depths. blithely bold ex| +88204|696061|46062|2|32|33824.96|0.02|0.06|R|F|1993-12-05|1993-10-26|1993-12-06|COLLECT COD|MAIL|lyly furious accounts cajole boldly. bl| +88204|696986|9500|3|32|63454.40|0.04|0.04|R|F|1993-10-16|1993-10-12|1993-10-25|TAKE BACK RETURN|AIR|ronic pinto beans cajole slyly acros| +88204|240923|3428|4|1|1863.91|0.09|0.08|A|F|1993-10-26|1993-10-18|1993-10-28|NONE|REG AIR|r theodolites| +88204|178878|41382|5|42|82188.54|0.05|0.01|A|F|1993-11-27|1993-10-23|1993-12-04|COLLECT COD|MAIL|ffily final ideas. carefully ir| +88204|398079|10587|6|31|36488.86|0.00|0.03|R|F|1993-10-29|1993-11-03|1993-11-22|NONE|TRUCK|its wake. carefully even packag| +88205|452482|14992|1|28|40164.88|0.06|0.00|N|O|1996-09-29|1996-11-23|1996-10-22|NONE|REG AIR|egular pin| +88206|380258|30259|1|34|45500.16|0.05|0.05|R|F|1993-08-30|1993-06-27|1993-09-02|DELIVER IN PERSON|MAIL|ironic pack| +88206|992241|4761|2|39|51994.80|0.09|0.05|A|F|1993-07-06|1993-07-20|1993-07-20|TAKE BACK RETURN|MAIL|out the care| +88206|591816|29350|3|14|26709.06|0.10|0.01|A|F|1993-08-17|1993-06-18|1993-09-05|TAKE BACK RETURN|RAIL| pending ideas. blithely bold sauternes| +88206|638254|38255|4|12|14306.64|0.01|0.06|R|F|1993-05-15|1993-06-13|1993-06-02|DELIVER IN PERSON|AIR| quickly carefully iro| +88207|991625|4145|1|5|8582.90|0.03|0.01|N|O|1998-07-22|1998-06-16|1998-08-14|NONE|TRUCK|y alongside of | +88232|149190|49191|1|46|57002.74|0.06|0.05|N|O|1998-05-04|1998-04-07|1998-05-31|NONE|MAIL|carefully abo| +88232|434794|34795|2|21|36304.17|0.08|0.00|N|O|1998-05-02|1998-03-28|1998-05-06|COLLECT COD|RAIL|. even the| +88233|54694|17196|1|42|69244.98|0.06|0.03|N|F|1995-06-17|1995-05-26|1995-07-01|DELIVER IN PERSON|TRUCK| furiously slo| +88233|230440|42945|2|45|61669.35|0.08|0.04|N|O|1995-07-04|1995-04-28|1995-07-06|TAKE BACK RETURN|AIR|quests wake furiously final a| +88233|989251|26809|3|28|37525.88|0.08|0.08|N|O|1995-06-26|1995-04-22|1995-07-17|COLLECT COD|TRUCK| the even, regular deposi| +88233|329299|29300|4|32|42504.96|0.09|0.03|R|F|1995-03-21|1995-05-03|1995-04-03|DELIVER IN PERSON|RAIL|uriously along the ironic| +88233|523704|48725|5|33|57013.44|0.01|0.04|R|F|1995-04-09|1995-06-01|1995-04-17|NONE|TRUCK|express dependencies are about the pending | +88233|877031|39549|6|1|1007.99|0.02|0.08|N|O|1995-07-12|1995-06-08|1995-08-03|NONE|FOB|r packages haggle. ideas detect furiousl| +88234|649616|49617|1|35|54795.30|0.09|0.01|N|O|1996-05-08|1996-06-03|1996-05-23|DELIVER IN PERSON|FOB|ost final ideas. final, final requests| +88234|86229|23733|2|21|25519.62|0.00|0.02|N|O|1996-08-07|1996-06-13|1996-08-27|TAKE BACK RETURN|TRUCK|ularly ironic| +88234|244578|19587|3|26|39586.56|0.01|0.08|N|O|1996-05-13|1996-05-23|1996-05-22|TAKE BACK RETURN|MAIL|e furiously. final, express request| +88234|621238|46263|4|11|12751.20|0.03|0.03|N|O|1996-06-02|1996-06-03|1996-06-19|DELIVER IN PERSON|REG AIR|ckages: qu| +88234|138388|891|5|46|65613.48|0.09|0.00|N|O|1996-05-28|1996-06-05|1996-06-24|NONE|FOB|odolites over| +88234|876669|1704|6|14|23038.68|0.06|0.02|N|O|1996-08-06|1996-06-01|1996-09-01|DELIVER IN PERSON|AIR|thily even pinto beans. blithel| +88234|163421|931|7|9|13359.78|0.03|0.07|N|O|1996-05-29|1996-06-06|1996-06-22|COLLECT COD|TRUCK|onic deposits wake furiously perman| +88235|613773|26286|1|42|70843.08|0.04|0.07|N|O|1996-12-17|1997-01-18|1997-01-15|NONE|AIR|efully regular d| +88235|672422|47449|2|42|58564.38|0.04|0.07|N|O|1997-03-06|1997-01-06|1997-04-05|DELIVER IN PERSON|FOB|yly final foxes. regular reques| +88235|391993|41994|3|27|56294.46|0.07|0.07|N|O|1997-03-19|1997-03-04|1997-04-18|TAKE BACK RETURN|TRUCK|e quickly across the regula| +88236|313190|25697|1|45|54143.10|0.09|0.08|N|O|1997-12-11|1998-01-07|1997-12-13|COLLECT COD|RAIL|s affix across the unusual, pendin| +88237|724022|36537|1|37|38701.63|0.00|0.01|R|F|1993-02-02|1993-03-04|1993-02-08|DELIVER IN PERSON|REG AIR|uests. bold pinto beans use slyly| +88237|636228|48741|2|12|13970.28|0.09|0.00|R|F|1993-04-02|1993-02-28|1993-04-18|TAKE BACK RETURN|SHIP|sly express packages cajole final ideas. sp| +88237|72634|47637|3|18|28919.34|0.08|0.02|A|F|1993-02-28|1993-02-10|1993-03-26|DELIVER IN PERSON|MAIL|ts across the slyly even requests hag| +88237|759011|21527|4|16|17119.68|0.10|0.06|R|F|1993-03-06|1993-02-14|1993-03-21|NONE|TRUCK|pendencies caj| +88237|684405|46919|5|42|58353.54|0.06|0.07|A|F|1993-02-18|1993-03-10|1993-02-25|DELIVER IN PERSON|REG AIR|ily about the thin acco| +88237|790496|3012|6|31|49180.26|0.08|0.01|R|F|1993-01-13|1993-02-16|1993-01-28|NONE|FOB|nic packag| +88238|285058|47564|1|37|38592.48|0.06|0.04|R|F|1995-03-10|1995-04-27|1995-03-14|COLLECT COD|FOB|xcuses lose decoys. quickly expre| +88238|966375|28895|2|49|70625.17|0.04|0.08|A|F|1995-04-20|1995-05-13|1995-05-07|TAKE BACK RETURN|SHIP|efully bold deposits kindle regular acco| +88238|857156|44708|3|43|47863.73|0.07|0.00|A|F|1995-05-19|1995-04-25|1995-06-12|COLLECT COD|RAIL|s. permanent, ironi| +88239|11004|23505|1|30|27450.00|0.06|0.01|R|F|1995-01-31|1995-02-26|1995-02-23|NONE|TRUCK|lites cajole. blithely special deposits | +88264|908415|45970|1|30|42701.10|0.10|0.07|A|F|1992-05-04|1992-04-27|1992-05-27|TAKE BACK RETURN|TRUCK|ans above the requests are furiously | +88264|718178|5721|2|28|33491.92|0.05|0.06|A|F|1992-04-01|1992-05-03|1992-04-28|NONE|RAIL|regular pack| +88264|414965|27474|3|10|18799.40|0.03|0.02|R|F|1992-03-22|1992-04-03|1992-04-12|DELIVER IN PERSON|AIR|even theodolit| +88265|879299|41817|1|8|10226.00|0.03|0.03|N|O|1998-07-26|1998-08-15|1998-08-08|COLLECT COD|REG AIR|yly express deposits haggle caref| +88265|375693|25694|2|34|60135.12|0.06|0.02|N|O|1998-09-08|1998-08-01|1998-09-14|COLLECT COD|RAIL| slyly regular deposits unwind | +88265|257360|7361|3|2|2634.70|0.07|0.08|N|O|1998-08-09|1998-07-15|1998-08-13|NONE|AIR|inal requests: special,| +88265|433458|33459|4|37|51482.91|0.10|0.07|N|O|1998-09-05|1998-07-24|1998-09-08|DELIVER IN PERSON|REG AIR| above the ironic| +88265|115547|40552|5|10|15625.40|0.00|0.06|N|O|1998-08-12|1998-08-08|1998-09-01|NONE|REG AIR|ly regular| +88265|989023|14062|6|18|20015.64|0.08|0.05|N|O|1998-09-17|1998-07-24|1998-09-27|DELIVER IN PERSON|REG AIR|g the ironic instruct| +88265|493056|43057|7|18|18882.54|0.02|0.01|N|O|1998-08-18|1998-08-01|1998-08-19|TAKE BACK RETURN|TRUCK|c ideas boost carefully caref| +88266|777627|40143|1|42|71592.78|0.07|0.07|N|O|1998-04-26|1998-03-03|1998-05-09|NONE|REG AIR|ns above the d| +88266|571856|34368|2|40|77113.20|0.07|0.01|N|O|1998-04-29|1998-02-18|1998-05-11|TAKE BACK RETURN|REG AIR|y accounts. quickly bold platelets h| +88266|169850|7360|3|11|21118.35|0.02|0.02|N|O|1998-05-03|1998-03-11|1998-05-17|TAKE BACK RETURN|RAIL|ithe, express packages. permanently re| +88266|665621|28135|4|16|25385.44|0.06|0.00|N|O|1998-01-30|1998-03-28|1998-02-16|DELIVER IN PERSON|FOB|outs according| +88266|80826|43328|5|43|77693.26|0.02|0.04|N|O|1998-03-15|1998-03-16|1998-03-20|COLLECT COD|AIR| furiously furi| +88266|432093|7110|6|34|34852.38|0.10|0.03|N|O|1998-03-18|1998-02-19|1998-04-07|DELIVER IN PERSON|SHIP|the blithely unusual| +88267|98435|35939|1|8|11467.44|0.08|0.04|R|F|1995-05-15|1995-04-29|1995-05-27|DELIVER IN PERSON|SHIP|he even requests. | +88267|394558|32080|2|40|66101.60|0.07|0.08|R|F|1995-04-16|1995-04-14|1995-04-30|TAKE BACK RETURN|TRUCK|tegrate final, iro| +88267|333600|21119|3|24|39206.16|0.01|0.07|R|F|1995-06-01|1995-05-13|1995-06-17|TAKE BACK RETURN|REG AIR|ng packages. regular deposits boost | +88267|810093|10094|4|15|15045.75|0.01|0.08|R|F|1995-03-23|1995-05-27|1995-04-10|NONE|SHIP|oubt blithely amo| +88267|219684|32189|5|21|33677.07|0.01|0.00|R|F|1995-05-31|1995-05-08|1995-06-03|COLLECT COD|AIR| thrash. slyly unusual requests above | +88268|343217|30736|1|3|3780.60|0.00|0.05|N|O|1996-10-11|1996-10-18|1996-10-24|DELIVER IN PERSON|RAIL|press accounts wake about t| +88268|437852|12869|2|33|59064.39|0.01|0.04|N|O|1996-12-24|1996-11-15|1997-01-23|COLLECT COD|TRUCK|ts. slyly ironic foxes nag furiously. pinto| +88268|975240|12798|3|31|40771.20|0.03|0.08|N|O|1996-12-22|1996-10-15|1996-12-28|TAKE BACK RETURN|FOB|ate carefully blithel| +88269|852515|27550|1|42|61633.74|0.10|0.02|A|F|1993-09-24|1993-11-17|1993-10-24|TAKE BACK RETURN|RAIL|al asymptotes. bold, bold| +88269|210642|10643|2|48|74526.24|0.03|0.04|A|F|1993-12-20|1993-11-13|1994-01-05|NONE|AIR|ly among the un| +88269|248086|23095|3|27|27919.89|0.03|0.04|A|F|1993-10-25|1993-10-12|1993-11-05|DELIVER IN PERSON|REG AIR|tside the furiously fi| +88269|572042|9576|4|47|52358.94|0.00|0.03|A|F|1993-11-12|1993-10-12|1993-11-27|NONE|FOB|totes promise slyly carefully exp| +88270|791917|16948|1|12|24106.56|0.00|0.01|N|O|1998-07-02|1998-08-11|1998-08-01|COLLECT COD|REG AIR|ithely regular requests. dep| +88270|739336|14365|2|26|35757.80|0.08|0.02|N|O|1998-09-05|1998-09-04|1998-10-03|DELIVER IN PERSON|AIR|ts. carefully regular foxes | +88271|354425|41947|1|33|48820.53|0.00|0.07|N|O|1997-05-29|1997-04-19|1997-05-31|NONE|FOB|nic requests pla| +88296|316089|3608|1|20|22101.40|0.08|0.02|A|F|1992-06-19|1992-06-19|1992-07-02|COLLECT COD|REG AIR| express deposi| +88296|493998|6508|2|9|17927.73|0.06|0.02|R|F|1992-06-29|1992-07-09|1992-07-09|COLLECT COD|AIR|among the | +88297|251263|38779|1|28|33999.00|0.05|0.00|R|F|1993-08-17|1993-09-06|1993-09-16|NONE|FOB|s after the| +88297|963940|1498|2|44|88171.60|0.09|0.01|R|F|1993-08-27|1993-08-09|1993-09-09|COLLECT COD|REG AIR|quickly ironic| +88298|831223|18772|1|35|40396.30|0.00|0.08|A|F|1994-07-27|1994-08-09|1994-08-12|DELIVER IN PERSON|FOB|old deposits. final theodolites | +88298|363048|25556|2|10|11110.30|0.00|0.07|A|F|1994-07-13|1994-08-14|1994-07-14|COLLECT COD|REG AIR|ncies x-ra| +88298|737186|24729|3|39|47702.85|0.09|0.05|A|F|1994-08-10|1994-08-31|1994-08-30|COLLECT COD|FOB|bove the ironi| +88298|876010|1045|4|15|14789.55|0.08|0.02|R|F|1994-06-28|1994-09-10|1994-07-04|DELIVER IN PERSON|MAIL| blithely pending packages integrat| +88298|89062|1564|5|38|39940.28|0.01|0.06|R|F|1994-08-06|1994-08-17|1994-08-27|DELIVER IN PERSON|REG AIR|l asymptotes. final ideas along | +88299|703420|28449|1|43|61205.77|0.01|0.06|N|O|1997-08-12|1997-07-15|1997-08-31|NONE|FOB|ly carefully special dependencies. p| +88299|374392|49407|2|2|2932.76|0.07|0.08|N|O|1997-07-18|1997-08-31|1997-08-14|DELIVER IN PERSON|RAIL|ts will have | +88299|394874|32396|3|18|35439.48|0.03|0.07|N|O|1997-07-21|1997-07-18|1997-08-04|TAKE BACK RETURN|FOB|e final instructi| +88299|646085|8598|4|7|7217.35|0.04|0.06|N|O|1997-08-12|1997-08-10|1997-08-30|NONE|AIR| pending packages cajole busily ironi| +88300|647130|22155|1|4|4308.40|0.00|0.01|N|O|1996-09-25|1996-11-16|1996-10-07|NONE|FOB|ing pinto b| +88301|92957|5459|1|12|23399.40|0.06|0.03|A|F|1994-07-16|1994-04-28|1994-07-24|NONE|TRUCK|es wake carefully blithely unusual accounts| +88301|312699|37712|2|3|5135.04|0.03|0.07|A|F|1994-05-06|1994-05-13|1994-05-27|NONE|TRUCK|ent requests. even theod| +88301|517263|42284|3|31|39687.44|0.04|0.07|R|F|1994-06-08|1994-05-08|1994-06-09|COLLECT COD|SHIP|ost sometimes. finally regul| +88301|631723|19260|4|28|46331.32|0.00|0.03|A|F|1994-03-31|1994-04-22|1994-04-03|TAKE BACK RETURN|REG AIR| courts. quickly regular requests alon| +88301|355376|5377|5|20|28627.20|0.06|0.01|A|F|1994-07-03|1994-06-07|1994-07-19|DELIVER IN PERSON|RAIL|furiously regular orbits aro| +88302|630085|42598|1|25|25376.25|0.06|0.04|R|F|1994-11-07|1995-01-06|1994-11-19|COLLECT COD|FOB|usly express pinto b| +88302|834849|22398|2|14|24973.20|0.08|0.04|A|F|1994-12-16|1994-12-07|1995-01-11|TAKE BACK RETURN|FOB|oost! carefully silent| +88302|296396|21407|3|32|44556.16|0.03|0.08|R|F|1995-02-02|1994-12-09|1995-02-09|DELIVER IN PERSON|MAIL|tes use across the slyly ironic pinto bea| +88303|540042|40043|1|46|49772.92|0.02|0.01|N|O|1996-09-12|1996-08-19|1996-09-16|COLLECT COD|RAIL| carefully among the furi| +88303|478517|28518|2|11|16450.39|0.00|0.02|N|O|1996-07-20|1996-07-04|1996-08-18|TAKE BACK RETURN|RAIL|s. quickly even packages cajole qui| +88303|420683|33192|3|22|35280.52|0.10|0.01|N|O|1996-07-30|1996-07-15|1996-08-26|DELIVER IN PERSON|RAIL|nto beans. fur| +88303|419087|19088|4|38|38230.28|0.08|0.00|N|O|1996-06-01|1996-07-03|1996-06-21|COLLECT COD|TRUCK|gle carefully final, even accoun| +88303|587288|24822|5|46|63261.96|0.10|0.02|N|O|1996-07-02|1996-07-20|1996-07-10|DELIVER IN PERSON|REG AIR|tions. slyly regular co| +88303|539022|14043|6|2|2122.00|0.01|0.02|N|O|1996-09-21|1996-07-12|1996-10-09|TAKE BACK RETURN|SHIP|ng, even epitaphs wake carefully.| +88328|568210|43233|1|48|61353.12|0.05|0.03|N|O|1995-11-23|1996-01-04|1995-12-04|COLLECT COD|FOB|e slyly express packages. carefully | +88328|895742|8260|2|28|48655.60|0.02|0.00|N|O|1995-11-23|1996-01-26|1995-12-17|COLLECT COD|REG AIR| unusual foxes. regular instruction| +88328|724682|37197|3|1|1706.65|0.03|0.06|N|O|1996-03-15|1996-01-08|1996-03-18|COLLECT COD|MAIL|ing accounts; blithely ironic excuses| +88328|715166|27681|4|37|43701.81|0.06|0.05|N|O|1996-03-07|1996-01-09|1996-03-27|DELIVER IN PERSON|REG AIR|iously pending accounts aroun| +88329|296872|9378|1|9|16819.74|0.03|0.05|A|F|1992-07-31|1992-10-07|1992-08-29|COLLECT COD|RAIL|oost carefully. | +88329|517536|42557|2|8|12428.08|0.06|0.08|R|F|1992-08-21|1992-10-10|1992-09-08|COLLECT COD|RAIL|t the furious| +88329|220370|7883|3|49|63227.64|0.08|0.00|R|F|1992-11-19|1992-09-20|1992-11-22|COLLECT COD|TRUCK|ding asymptotes. carefull| +88329|749791|37334|4|13|23929.88|0.07|0.02|A|F|1992-09-10|1992-10-19|1992-09-24|TAKE BACK RETURN|AIR|ilent foxes use slyly fluffily regular ins| +88329|735591|23134|5|28|45543.68|0.03|0.07|R|F|1992-10-08|1992-10-11|1992-10-31|NONE|REG AIR|cording to the permanent | +88330|919548|44585|1|39|61132.50|0.06|0.03|A|F|1994-10-01|1994-09-20|1994-10-09|DELIVER IN PERSON|MAIL|d packages cajole| +88330|837150|37151|2|19|20655.09|0.04|0.05|A|F|1994-08-20|1994-10-06|1994-08-27|DELIVER IN PERSON|MAIL|deposits are carefull| +88330|979518|4557|3|8|12779.76|0.00|0.06|A|F|1994-10-13|1994-09-11|1994-10-15|NONE|TRUCK|the bold a| +88330|744462|32005|4|6|9038.58|0.08|0.08|A|F|1994-09-10|1994-09-02|1994-09-16|COLLECT COD|FOB|ngside of the slyly | +88330|165769|15770|5|26|47703.76|0.10|0.08|R|F|1994-08-08|1994-08-26|1994-09-01|DELIVER IN PERSON|REG AIR|pinto beans after the fi| +88330|67025|17026|6|35|34720.70|0.01|0.03|R|F|1994-08-26|1994-09-07|1994-09-21|NONE|AIR|pending accounts haggle around t| +88331|446734|34259|1|7|11764.97|0.02|0.00|N|O|1998-09-13|1998-09-20|1998-10-03|COLLECT COD|RAIL|ly enticing asympto| +88332|900652|653|1|37|61146.57|0.09|0.06|N|O|1997-05-30|1997-06-22|1997-06-28|DELIVER IN PERSON|TRUCK|pecial, regular packages use| +88332|256422|43938|2|23|31703.43|0.08|0.06|N|O|1997-08-24|1997-06-15|1997-09-11|DELIVER IN PERSON|AIR|uriously. silent pac| +88333|84777|34778|1|37|65185.49|0.07|0.07|N|O|1996-08-30|1996-07-20|1996-09-11|NONE|AIR| regular packages are blithely. slyly| +88333|831480|43997|2|13|18348.72|0.05|0.01|N|O|1996-07-01|1996-06-07|1996-07-20|COLLECT COD|FOB|oldly iron| +88333|668709|31223|3|44|73817.48|0.07|0.03|N|O|1996-09-05|1996-07-02|1996-09-19|COLLECT COD|AIR|ly bold requests wa| +88333|988257|38258|4|41|55153.61|0.08|0.04|N|O|1996-08-13|1996-07-27|1996-08-18|COLLECT COD|TRUCK|al packages wake sil| +88334|566324|16325|1|29|40318.70|0.10|0.07|N|O|1997-10-28|1997-10-14|1997-11-27|DELIVER IN PERSON|TRUCK|fully regular plat| +88334|204941|29950|2|1|1845.93|0.03|0.07|N|O|1997-08-18|1997-11-01|1997-08-21|DELIVER IN PERSON|REG AIR| instructions. boldly unusual accounts eat | +88334|440647|28172|3|38|60329.56|0.08|0.08|N|O|1997-11-05|1997-10-04|1997-11-19|NONE|RAIL|packages haggle slyly ironic| +88334|953953|3954|4|46|92317.86|0.04|0.06|N|O|1997-10-31|1997-10-16|1997-11-30|TAKE BACK RETURN|FOB| requests cajole slyly according | +88334|73401|10905|5|15|20616.00|0.09|0.00|N|O|1997-11-17|1997-09-29|1997-12-02|DELIVER IN PERSON|REG AIR|ely final requests. pending| +88334|640847|3360|6|28|50058.68|0.08|0.04|N|O|1997-09-25|1997-09-24|1997-10-05|NONE|SHIP| ironic accounts. silent, regular pla| +88334|701413|26442|7|29|41017.02|0.00|0.04|N|O|1997-08-20|1997-10-26|1997-09-07|COLLECT COD|FOB|osits wake across the final accounts. blith| +88335|637379|49892|1|15|19745.10|0.00|0.04|A|F|1993-11-10|1994-01-11|1993-11-20|DELIVER IN PERSON|FOB|h the instructions;| +88360|354149|29164|1|12|14437.56|0.02|0.06|A|F|1994-02-20|1994-04-17|1994-03-02|NONE|MAIL|rthogs cajole blithely qu| +88360|166833|16834|2|5|9499.15|0.07|0.06|A|F|1994-03-27|1994-03-15|1994-04-02|NONE|SHIP|arefully special ideas. quickly | +88360|946858|21895|3|28|53334.68|0.02|0.07|A|F|1994-04-11|1994-04-29|1994-05-08|TAKE BACK RETURN|MAIL|ar theodolites h| +88360|839377|14410|4|22|28959.26|0.10|0.03|A|F|1994-02-13|1994-04-01|1994-02-20|NONE|RAIL| final accounts sleep according to | +88361|44437|31938|1|42|58020.06|0.04|0.04|N|O|1995-08-10|1995-09-27|1995-08-31|COLLECT COD|AIR|ly silent accounts wake. carefu| +88361|839356|39357|2|50|64765.50|0.07|0.05|N|O|1995-09-19|1995-09-29|1995-10-03|COLLECT COD|MAIL|. special accounts wake requests. ru| +88361|49022|24023|3|46|44666.92|0.04|0.00|N|O|1995-09-07|1995-08-22|1995-09-20|DELIVER IN PERSON|RAIL| furiously pending requests boost quickl| +88361|899549|12067|4|34|52649.00|0.08|0.07|N|O|1995-10-08|1995-10-07|1995-10-16|COLLECT COD|TRUCK|usly unusual instructions. careful| +88361|707082|32111|5|2|2178.10|0.08|0.07|N|O|1995-11-14|1995-08-31|1995-11-20|COLLECT COD|REG AIR|fully bold packages sleep ideas. furio| +88362|5267|17768|1|3|3516.78|0.08|0.08|A|F|1994-08-07|1994-05-11|1994-08-12|COLLECT COD|MAIL|the regular, special pinto beans. daringly| +88363|290929|40930|1|29|55677.39|0.10|0.05|A|F|1992-09-03|1992-07-27|1992-09-25|DELIVER IN PERSON|AIR|aggle among the carefully bold theodolite| +88363|643070|5583|2|10|10130.40|0.10|0.02|R|F|1992-08-20|1992-06-30|1992-09-16|NONE|REG AIR|nstructions. ca| +88363|69908|32410|3|44|82627.60|0.02|0.05|A|F|1992-08-07|1992-07-05|1992-08-19|NONE|AIR|ly quickly ironic asymptotes? bold packages| +88363|930586|18141|4|37|59811.98|0.10|0.02|A|F|1992-08-26|1992-08-05|1992-08-29|COLLECT COD|MAIL|efully regular foxes cajole | +88364|540676|28207|1|15|25749.75|0.03|0.06|N|O|1996-08-28|1996-09-10|1996-09-14|COLLECT COD|MAIL|kly special dependencies nag carefully car| +88364|139667|27174|2|41|69973.06|0.06|0.08|N|O|1996-07-20|1996-08-28|1996-08-16|COLLECT COD|FOB|usly bold fo| +88364|379532|17054|3|13|20949.76|0.09|0.07|N|O|1996-10-21|1996-09-15|1996-11-12|COLLECT COD|AIR|ts haggle. final, eve| +88364|789429|39430|4|23|34922.97|0.08|0.01|N|O|1996-10-07|1996-08-09|1996-10-29|NONE|SHIP|arefully pending frets. quickly| +88364|924845|49882|5|29|54224.20|0.01|0.06|N|O|1996-10-09|1996-08-17|1996-11-07|NONE|MAIL|nic, even platele| +88364|864730|39765|6|20|33893.80|0.04|0.02|N|O|1996-08-26|1996-08-29|1996-09-09|TAKE BACK RETURN|TRUCK|es beside the blithely bold foxes wa| +88364|516343|28854|7|22|29905.04|0.05|0.02|N|O|1996-08-18|1996-08-11|1996-09-07|NONE|FOB|usly regular requests sleep alongside of | +88365|167819|17820|1|35|66038.35|0.04|0.06|R|F|1993-12-09|1993-10-06|1993-12-21|NONE|MAIL|the furiously even de| +88365|522842|10373|2|45|83916.90|0.03|0.06|R|F|1993-11-18|1993-11-15|1993-11-21|TAKE BACK RETURN|TRUCK|the quickly permanent| +88365|402380|2381|3|20|25647.20|0.00|0.08|A|F|1993-12-08|1993-10-16|1994-01-01|COLLECT COD|FOB|ndencies cajole after the car| +88365|790252|15283|4|42|56373.24|0.05|0.01|A|F|1993-09-20|1993-11-18|1993-10-17|TAKE BACK RETURN|REG AIR|regular ideas cajol| +88365|763165|38196|5|5|6140.65|0.00|0.01|A|F|1993-09-27|1993-10-25|1993-09-28|TAKE BACK RETURN|FOB|e blithely regula| +88365|509440|34461|6|47|68122.74|0.01|0.01|A|F|1993-12-05|1993-11-02|1993-12-14|TAKE BACK RETURN|RAIL|nic packages sleep blithely iron| +88365|156467|43977|7|2|3046.92|0.06|0.02|R|F|1993-10-30|1993-10-19|1993-11-14|COLLECT COD|RAIL|luffy platelets. blithely bo| +88366|736981|24524|1|17|34305.15|0.06|0.05|N|O|1996-01-29|1996-03-18|1996-02-27|TAKE BACK RETURN|RAIL|al deposits hagg| +88366|437948|25473|2|42|79208.64|0.09|0.04|N|O|1996-01-13|1996-02-14|1996-01-23|TAKE BACK RETURN|MAIL|bout the cl| +88366|591033|3545|3|24|26976.24|0.02|0.08|N|O|1996-02-04|1996-03-24|1996-02-23|DELIVER IN PERSON|AIR|larly express a| +88366|481126|31127|4|19|21034.90|0.07|0.06|N|O|1996-04-16|1996-03-31|1996-05-10|DELIVER IN PERSON|RAIL|lites haggle. carefully ironic t| +88366|274131|11647|5|21|23207.52|0.06|0.01|N|O|1996-01-30|1996-03-30|1996-02-28|TAKE BACK RETURN|TRUCK|ironic pinto beans sleep slyly pearls. bold| +88367|71328|21329|1|24|31183.68|0.01|0.07|R|F|1993-04-07|1993-02-01|1993-04-25|COLLECT COD|TRUCK| mold. slyly unusual instructions haggle | +88367|806882|44431|2|12|21466.08|0.02|0.00|A|F|1993-04-02|1993-02-18|1993-04-13|DELIVER IN PERSON|REG AIR|ending theodolites poach slyly. ironically| +88367|263207|723|3|35|40956.65|0.10|0.08|R|F|1993-04-20|1993-03-07|1993-05-20|DELIVER IN PERSON|AIR|ss foxes nag s| +88367|711509|36538|4|3|4561.41|0.06|0.04|A|F|1993-04-02|1993-02-26|1993-04-28|DELIVER IN PERSON|REG AIR| special depende| +88367|319522|7041|5|38|58577.38|0.02|0.05|A|F|1993-01-13|1993-02-03|1993-02-09|COLLECT COD|TRUCK|ven requests are furiously. car| +88367|190212|2716|6|19|24741.99|0.06|0.05|A|F|1993-01-26|1993-02-25|1993-01-29|DELIVER IN PERSON|REG AIR|uests. blithely even deposits are a| +88367|877358|14910|7|18|24035.58|0.00|0.00|R|F|1993-02-09|1993-01-28|1993-02-21|DELIVER IN PERSON|FOB|uickly final multipliers? final acc| +88392|742449|29992|1|35|52199.35|0.00|0.04|R|F|1993-03-13|1993-05-04|1993-04-08|NONE|SHIP|hely carefully ironic packages. even, | +88392|324415|11934|2|6|8636.40|0.02|0.06|A|F|1993-03-04|1993-04-07|1993-03-28|COLLECT COD|MAIL|ously pending theodolites above| +88392|434951|22476|3|49|92410.57|0.02|0.04|R|F|1993-05-22|1993-04-16|1993-06-08|TAKE BACK RETURN|TRUCK|lithely express foxes| +88392|217022|29527|4|45|42255.45|0.08|0.07|R|F|1993-05-30|1993-04-28|1993-06-21|COLLECT COD|RAIL|requests among the enticing, ironic th| +88392|479245|29246|5|25|30605.50|0.01|0.00|A|F|1993-05-31|1993-04-24|1993-06-02|NONE|TRUCK|ecial deposits boost| +88392|664905|14906|6|9|16828.83|0.01|0.08|R|F|1993-05-03|1993-04-06|1993-05-06|DELIVER IN PERSON|FOB|l deposits boost. bold, unusual dol| +88392|52495|14997|7|19|27502.31|0.06|0.01|R|F|1993-04-29|1993-04-09|1993-05-04|COLLECT COD|REG AIR|uickly regular, | +88393|268572|31078|1|24|36973.44|0.08|0.00|R|F|1994-05-02|1994-06-17|1994-05-16|COLLECT COD|MAIL|nag carefully against the iro| +88393|873364|35882|2|29|38782.28|0.10|0.06|A|F|1994-04-07|1994-04-29|1994-05-03|DELIVER IN PERSON|FOB|y dolphins| +88393|627982|40495|3|46|87857.70|0.09|0.06|R|F|1994-06-05|1994-05-26|1994-06-26|DELIVER IN PERSON|SHIP|gly regular ideas. pending,| +88393|492914|17933|4|42|80089.38|0.05|0.01|A|F|1994-07-25|1994-05-22|1994-08-20|NONE|TRUCK|integrate thinly unusual, final asymp| +88394|927610|2647|1|8|13100.56|0.06|0.00|N|O|1996-03-30|1996-02-23|1996-04-03|NONE|FOB|ve the blithely final package| +88395|537440|12461|1|8|11819.36|0.04|0.03|N|O|1998-07-05|1998-07-27|1998-08-03|COLLECT COD|RAIL| regular requests. regular instr| +88395|749422|36965|2|24|35313.36|0.01|0.03|N|O|1998-07-01|1998-08-19|1998-07-30|TAKE BACK RETURN|REG AIR|ounts haggle carefully abo| +88396|244350|31863|1|32|41418.88|0.05|0.05|N|O|1997-03-22|1997-02-18|1997-03-24|COLLECT COD|RAIL|c accounts sleep careful| +88396|782388|19934|2|12|17644.20|0.06|0.06|N|O|1997-03-23|1997-02-05|1997-03-26|TAKE BACK RETURN|MAIL|unusual pearls. carefully pending asym| +88396|590228|2740|3|44|58000.80|0.05|0.06|N|O|1997-01-16|1997-03-26|1997-02-15|DELIVER IN PERSON|REG AIR|ong the furiously | +88396|954921|29960|4|22|43469.36|0.02|0.00|N|O|1997-02-22|1997-03-23|1997-03-06|NONE|MAIL|g deposits| +88397|913650|26169|1|39|64880.79|0.10|0.08|A|F|1993-09-30|1993-10-26|1993-10-30|TAKE BACK RETURN|RAIL| accounts after the regular pi| +88397|710580|10581|2|42|66803.10|0.02|0.06|R|F|1993-10-28|1993-11-10|1993-11-17|DELIVER IN PERSON|FOB|use along th| +88397|711628|11629|3|3|4918.77|0.07|0.00|R|F|1993-10-06|1993-11-27|1993-10-23|COLLECT COD|REG AIR|ickly slow requests cajole qu| +88398|698433|35973|1|33|47236.20|0.06|0.04|N|O|1997-09-29|1997-11-07|1997-10-19|COLLECT COD|AIR|ly until the furiously ruthless asymptote| +88398|550244|245|2|29|37532.38|0.02|0.03|N|O|1997-12-05|1997-10-20|1997-12-30|TAKE BACK RETURN|SHIP|imes even escapades| +88398|940336|2855|3|16|22020.64|0.01|0.05|N|O|1997-10-21|1997-11-01|1997-10-30|DELIVER IN PERSON|TRUCK|ke quickly blithely bold acc| +88398|221637|21638|4|41|63903.42|0.10|0.06|N|O|1997-11-25|1997-09-25|1997-12-17|COLLECT COD|MAIL|ss dependencies: quickly reg| +88398|50907|25910|5|35|65026.50|0.01|0.05|N|O|1997-09-03|1997-09-30|1997-09-10|NONE|SHIP|y special asym| +88398|580496|5519|6|37|58329.39|0.06|0.01|N|O|1997-12-04|1997-09-27|1997-12-31|COLLECT COD|AIR|regular dependencies; furiously regul| +88399|367191|17192|1|44|55359.92|0.10|0.01|R|F|1992-08-22|1992-09-27|1992-09-18|DELIVER IN PERSON|AIR|y final, express excuses. bl| +88399|370052|45067|2|36|40393.44|0.08|0.01|R|F|1992-10-06|1992-09-16|1992-10-10|DELIVER IN PERSON|AIR|sily express accounts wake careful| +88399|463131|659|3|42|45952.62|0.00|0.03|R|F|1992-10-26|1992-09-20|1992-11-12|DELIVER IN PERSON|SHIP| bold asymptotes cajole regular, express| +88424|298311|35827|1|37|48444.10|0.06|0.06|A|F|1992-12-01|1992-11-06|1992-12-22|TAKE BACK RETURN|MAIL|counts-- slyly ironic somas wake fluffily.| +88424|700172|37715|2|44|51574.16|0.00|0.01|R|F|1992-10-09|1992-10-19|1992-10-31|NONE|FOB|sleep after the carefully pending pla| +88424|779651|17197|3|36|62302.32|0.03|0.07|R|F|1992-11-24|1992-12-10|1992-12-12|COLLECT COD|MAIL|y special requests. blithely reg| +88424|589999|27533|4|26|54313.22|0.02|0.04|A|F|1993-01-06|1992-11-14|1993-01-22|TAKE BACK RETURN|MAIL|ests are carefully. special accounts sleep| +88425|702832|2833|1|13|23852.40|0.03|0.00|N|O|1997-08-24|1997-09-25|1997-09-01|NONE|RAIL|ld packages. care| +88425|494884|32412|2|34|63881.24|0.00|0.06|N|O|1997-09-14|1997-09-22|1997-10-10|COLLECT COD|AIR|usly ironic theodolites. bl| +88425|509541|34562|3|7|10853.64|0.03|0.03|N|O|1997-08-04|1997-08-10|1997-08-28|COLLECT COD|RAIL| final requests wake according to the s| +88425|846086|8603|4|23|23736.92|0.03|0.08|N|O|1997-08-17|1997-08-12|1997-08-19|NONE|SHIP|ffily requests. quickl| +88425|166988|4498|5|28|57539.44|0.03|0.01|N|O|1997-09-12|1997-09-02|1997-09-19|COLLECT COD|AIR| accounts above the quickly regula| +88425|559746|34769|6|46|83063.12|0.09|0.05|N|O|1997-09-13|1997-08-24|1997-09-30|NONE|MAIL|he account| +88425|650714|715|7|47|78239.96|0.01|0.02|N|O|1997-10-07|1997-08-10|1997-10-22|COLLECT COD|TRUCK| to the special | +88426|534476|9497|1|29|43803.05|0.09|0.03|N|O|1997-02-08|1996-12-21|1997-02-25|NONE|SHIP|s haggle across the furiou| +88426|934949|34950|2|27|53565.30|0.01|0.08|N|O|1997-01-09|1997-02-17|1997-01-13|COLLECT COD|FOB|inst the final req| +88426|686268|11295|3|43|53931.89|0.10|0.01|N|O|1997-01-12|1997-01-20|1997-01-17|COLLECT COD|RAIL|y even accounts.| +88426|101507|39014|4|20|30170.00|0.01|0.08|N|O|1997-02-23|1996-12-26|1997-03-01|COLLECT COD|RAIL|uffy courts use slyly across the ironic, | +88426|13792|1293|5|31|52879.49|0.08|0.08|N|O|1997-03-10|1997-01-01|1997-03-31|NONE|RAIL|ts. slyly even requests are fluffily| +88426|786801|11832|6|25|47194.25|0.04|0.00|N|O|1997-01-03|1997-01-01|1997-02-01|COLLECT COD|TRUCK|uriously slow or| +88427|473242|48261|1|31|37671.82|0.01|0.08|A|F|1993-01-25|1993-03-09|1993-02-03|COLLECT COD|RAIL|carefully. carefully express requests wi| +88427|766163|16164|2|6|7374.78|0.01|0.08|A|F|1993-02-17|1993-03-15|1993-03-15|COLLECT COD|SHIP|ual instructions wake| +88427|894009|31561|3|35|35103.60|0.04|0.03|A|F|1993-03-12|1993-02-24|1993-04-10|NONE|MAIL|e carefully final asym| +88428|55032|17534|1|6|5922.18|0.05|0.02|A|F|1992-12-11|1992-12-18|1993-01-01|TAKE BACK RETURN|FOB| across the special requests. bli| +88428|916219|3774|2|25|30879.25|0.08|0.06|A|F|1993-01-02|1992-11-30|1993-01-09|COLLECT COD|AIR|en packages. ironic | +88428|876959|39477|3|46|89051.86|0.09|0.07|R|F|1992-10-23|1992-12-24|1992-10-30|NONE|MAIL| cajole blithely regular p| +88429|92850|5352|1|25|46071.25|0.00|0.00|N|O|1997-08-06|1997-06-14|1997-08-08|TAKE BACK RETURN|REG AIR|theodolites wake carefully ironic packag| +88429|514387|39408|2|38|53251.68|0.07|0.03|N|O|1997-07-03|1997-07-26|1997-07-27|DELIVER IN PERSON|SHIP|requests wake fu| +88430|906350|18869|1|19|25769.89|0.05|0.00|N|O|1997-12-06|1998-01-18|1998-01-01|DELIVER IN PERSON|RAIL|ctions are about the ir| +88431|698774|11288|1|37|65591.38|0.02|0.04|N|O|1997-07-28|1997-06-25|1997-08-06|DELIVER IN PERSON|FOB|xpress ideas use furiously blithel| +88431|277863|15379|2|10|18408.50|0.01|0.07|N|O|1997-06-26|1997-07-16|1997-07-14|TAKE BACK RETURN|FOB|ang slyly quickly unu| +88431|29060|29061|3|24|23737.44|0.01|0.08|N|O|1997-09-09|1997-06-25|1997-09-21|DELIVER IN PERSON|REG AIR|e slyly special accoun| +88456|310943|35956|1|36|70341.48|0.01|0.01|N|O|1996-04-17|1996-06-04|1996-04-29|NONE|RAIL|cording to the ironic idea| +88456|8986|21487|2|37|70114.26|0.06|0.04|N|O|1996-04-05|1996-05-05|1996-04-25|DELIVER IN PERSON|RAIL|press packa| +88456|27593|27594|3|40|60823.60|0.07|0.01|N|O|1996-06-15|1996-05-13|1996-07-06|TAKE BACK RETURN|TRUCK|ts. even cou| +88456|739153|26696|4|27|32187.24|0.08|0.06|N|O|1996-04-28|1996-05-02|1996-05-20|DELIVER IN PERSON|FOB|wake blithely ironic deposits. | +88456|938256|775|5|42|54356.82|0.08|0.04|N|O|1996-06-04|1996-06-24|1996-06-29|COLLECT COD|SHIP|l foxes affix blithely after | +88457|413391|916|1|41|53479.17|0.08|0.05|R|F|1994-06-24|1994-06-05|1994-07-14|DELIVER IN PERSON|TRUCK|accounts. special theodolites haggle | +88458|968436|43475|1|13|19557.07|0.01|0.07|N|O|1998-08-01|1998-08-22|1998-08-08|NONE|MAIL|ost. blithely final id| +88458|489607|14626|2|44|70249.52|0.00|0.00|N|O|1998-10-24|1998-08-22|1998-11-10|COLLECT COD|MAIL|le furiously fu| +88458|819943|32460|3|18|33532.20|0.04|0.02|N|O|1998-09-10|1998-09-10|1998-10-06|TAKE BACK RETURN|TRUCK|ns sleep slyly? slyly pending| +88458|768642|31158|4|7|11974.27|0.01|0.02|N|O|1998-08-03|1998-10-14|1998-08-07|TAKE BACK RETURN|REG AIR|eodolites cajole regularly among the ironi| +88458|559470|34493|5|32|48942.40|0.03|0.03|N|O|1998-10-18|1998-09-21|1998-10-22|DELIVER IN PERSON|AIR|arefully regu| +88458|8620|21121|6|7|10700.34|0.10|0.05|N|O|1998-11-03|1998-10-17|1998-11-12|COLLECT COD|TRUCK|ts haggle carefully express theodolit| +88459|972169|47208|1|8|9928.96|0.02|0.06|A|F|1994-08-28|1994-09-15|1994-09-11|NONE|SHIP|e throughout the silent dependen| +88459|240270|2775|2|44|53251.44|0.02|0.00|R|F|1994-07-11|1994-09-17|1994-07-14|COLLECT COD|RAIL|ructions poach blithely bold, bol| +88459|206144|31153|3|7|7350.91|0.08|0.07|R|F|1994-07-07|1994-08-29|1994-07-16|DELIVER IN PERSON|FOB|s. requests sleep flu| +88459|656809|44349|4|36|63567.72|0.02|0.02|R|F|1994-08-03|1994-09-12|1994-09-01|COLLECT COD|AIR|ding multiplie| +88460|695329|7843|1|12|15891.48|0.00|0.07|N|O|1997-11-12|1997-12-13|1997-11-22|TAKE BACK RETURN|AIR|ake furiously slyly regula| +88460|389277|26799|2|4|5465.04|0.04|0.01|N|O|1997-12-01|1997-12-15|1997-12-09|NONE|MAIL|ic requests. final instructions across t| +88460|572978|35490|3|12|24611.40|0.08|0.04|N|O|1997-11-11|1997-12-29|1997-12-05|TAKE BACK RETURN|REG AIR|gular courts wake quickly fluffily pen| +88460|27221|27222|4|36|41335.92|0.09|0.08|N|O|1997-12-14|1998-01-05|1997-12-28|TAKE BACK RETURN|MAIL|lly even accounts around the | +88460|493867|6377|5|40|74433.60|0.09|0.01|N|O|1997-11-20|1998-01-03|1997-12-02|DELIVER IN PERSON|AIR|l requests haggle quickly si| +88461|726294|1323|1|8|10562.08|0.04|0.07|N|O|1995-12-03|1996-01-19|1995-12-06|NONE|SHIP|slyly. deposits use quickly. sl| +88462|64086|39089|1|11|11550.88|0.07|0.00|N|O|1997-05-05|1997-06-21|1997-05-08|NONE|REG AIR|s. furiously special grouches nag blith| +88462|91853|29357|2|27|49810.95|0.01|0.08|N|O|1997-04-22|1997-05-14|1997-05-16|TAKE BACK RETURN|SHIP|lly final accounts alongsid| +88462|762716|37747|3|46|81819.28|0.06|0.01|N|O|1997-08-06|1997-05-24|1997-08-18|DELIVER IN PERSON|FOB| instructions sleep along the | +88462|967184|4742|4|42|52547.88|0.04|0.02|N|O|1997-08-12|1997-05-20|1997-09-06|NONE|TRUCK| the furio| +88462|453109|28128|5|12|12744.96|0.01|0.07|N|O|1997-07-22|1997-06-20|1997-07-23|COLLECT COD|REG AIR|usly. special,| +88462|399193|11701|6|10|12921.80|0.05|0.05|N|O|1997-05-03|1997-06-25|1997-05-15|NONE|MAIL|s are regular| +88462|223114|48123|7|38|39409.80|0.03|0.05|N|O|1997-06-25|1997-05-24|1997-07-08|DELIVER IN PERSON|MAIL|dependencies. fluffy, regular reque| +88463|869873|19874|1|26|47913.58|0.09|0.03|A|F|1992-11-18|1992-09-05|1992-11-26|NONE|RAIL| about the quic| +88463|951180|38738|2|1|1231.14|0.05|0.00|A|F|1992-08-28|1992-10-23|1992-09-05|NONE|TRUCK|he carefully express package| +88463|471575|34085|3|41|63408.55|0.04|0.07|R|F|1992-08-20|1992-10-07|1992-09-16|DELIVER IN PERSON|FOB|al deposits | +88463|748246|48247|4|9|11647.89|0.00|0.04|A|F|1992-08-26|1992-09-24|1992-08-30|TAKE BACK RETURN|TRUCK|lyly against the gifts. slyly ex| +88463|767799|30315|5|3|5600.28|0.03|0.04|A|F|1992-10-05|1992-10-25|1992-10-30|NONE|SHIP|final requests sleep b| +88463|396896|46897|6|36|71743.68|0.02|0.03|A|F|1992-08-16|1992-09-20|1992-08-22|COLLECT COD|AIR|refully after the ironic ac| +88463|621810|9347|7|7|12122.46|0.04|0.07|R|F|1992-10-23|1992-09-03|1992-10-25|COLLECT COD|FOB|nusual epita| +88488|744278|44279|1|41|54211.84|0.06|0.06|N|O|1998-06-15|1998-06-18|1998-06-21|NONE|TRUCK| blithely about the quickly ironi| +88488|69391|44394|2|22|29928.58|0.03|0.05|N|O|1998-06-12|1998-07-31|1998-06-28|COLLECT COD|AIR|y even dependencies integrate pending reque| +88488|245750|20759|3|40|67829.60|0.03|0.05|N|O|1998-07-02|1998-07-30|1998-07-11|DELIVER IN PERSON|TRUCK|deposits. carefully ironic requests cajole | +88488|319442|44455|4|10|14614.30|0.00|0.04|N|O|1998-05-26|1998-06-09|1998-06-10|COLLECT COD|AIR|nto beans | +88489|539150|14171|1|42|49943.46|0.03|0.06|A|F|1994-11-18|1994-11-22|1994-12-03|NONE|REG AIR| packages wake busily above th| +88489|486410|36411|2|30|41891.70|0.09|0.07|A|F|1994-12-31|1994-11-29|1995-01-07|DELIVER IN PERSON|REG AIR|final instructions. packages acc| +88490|418880|31389|1|32|57563.52|0.07|0.02|A|F|1994-09-05|1994-09-29|1994-10-02|DELIVER IN PERSON|SHIP|counts cajo| +88490|111621|24124|2|2|3265.24|0.06|0.02|A|F|1994-09-06|1994-10-07|1994-09-27|NONE|TRUCK|eposits; blithely regular decoys after the| +88490|1921|1922|3|21|38281.32|0.01|0.07|A|F|1994-10-11|1994-11-05|1994-10-21|TAKE BACK RETURN|MAIL|bold gifts dazzle slyly. carefully pen| +88490|285323|22839|4|7|9158.17|0.07|0.07|R|F|1994-10-31|1994-09-08|1994-11-28|TAKE BACK RETURN|TRUCK|odolites. quickl| +88490|420573|8098|5|4|5974.20|0.09|0.04|A|F|1994-09-24|1994-09-30|1994-10-17|COLLECT COD|TRUCK|, express packages. fluffy pinto b| +88490|563909|26421|6|21|41430.48|0.02|0.03|A|F|1994-11-09|1994-10-08|1994-11-25|DELIVER IN PERSON|REG AIR|ely special forges are furious| +88491|342239|29758|1|36|46123.92|0.03|0.08|N|O|1997-08-19|1997-07-16|1997-08-25|COLLECT COD|TRUCK|kly express deposi| +88491|997523|22562|2|17|27548.16|0.08|0.06|N|O|1997-07-20|1997-07-03|1997-08-19|NONE|AIR|nic, ironic packages. f| +88491|356719|6720|3|18|31962.60|0.02|0.04|N|O|1997-06-23|1997-07-20|1997-07-13|DELIVER IN PERSON|FOB|ts. final dugouts sleep furiously agains| +88491|372296|9818|4|19|25997.32|0.01|0.04|N|O|1997-07-13|1997-07-05|1997-07-25|NONE|SHIP|e. unusual packages maintain fluf| +88491|174765|24766|5|9|16557.84|0.05|0.05|N|O|1997-05-11|1997-07-13|1997-06-02|NONE|AIR|e carefully after the carefully regular dep| +88491|264950|14951|6|42|80427.48|0.03|0.01|N|O|1997-08-12|1997-07-05|1997-08-24|NONE|FOB|r pinto beans sleep fluffil| +88492|379222|16744|1|21|27325.41|0.05|0.03|R|F|1992-08-22|1992-10-03|1992-08-27|COLLECT COD|RAIL| slow theodolites. courts wake fluffily. bl| +88492|583853|21387|2|15|29052.45|0.04|0.07|R|F|1992-11-11|1992-10-31|1992-11-28|DELIVER IN PERSON|REG AIR|s. furiously ironic request| +88492|801204|38753|3|2|2210.32|0.08|0.04|A|F|1992-10-01|1992-10-18|1992-10-04|TAKE BACK RETURN|REG AIR|. bold asymptot| +88492|829963|42480|4|47|88967.24|0.00|0.01|A|F|1992-09-19|1992-11-10|1992-09-25|TAKE BACK RETURN|FOB|onic packages cajole quickly clos| +88492|178146|15656|5|26|31827.64|0.04|0.00|R|F|1992-09-16|1992-10-22|1992-09-20|NONE|REG AIR|thely final pi| +88492|96897|9399|6|18|34090.02|0.03|0.04|R|F|1992-10-07|1992-09-27|1992-10-25|COLLECT COD|RAIL|lithely above the pending, special package| +88492|542362|4873|7|24|33704.16|0.04|0.03|R|F|1992-09-17|1992-11-10|1992-10-09|COLLECT COD|MAIL| special platelets! carefu| +88493|475663|38173|1|34|55713.76|0.05|0.01|R|F|1994-08-30|1994-07-17|1994-09-16|NONE|REG AIR|lent asymptotes. care| +88493|464528|39547|2|50|74625.00|0.10|0.08|A|F|1994-06-07|1994-07-30|1994-07-05|DELIVER IN PERSON|REG AIR|, express deposits integra| +88493|306862|6863|3|36|67278.60|0.05|0.06|A|F|1994-08-18|1994-07-26|1994-08-31|COLLECT COD|TRUCK|s. furiously pendi| +88493|419485|44502|4|13|18257.98|0.01|0.01|A|F|1994-05-10|1994-07-27|1994-05-17|DELIVER IN PERSON|FOB|ounts. dependencies sublate qui| +88494|539441|26972|1|15|22206.30|0.03|0.03|N|O|1995-06-24|1995-06-29|1995-07-04|NONE|RAIL|ithely unusual pinto be| +88495|564558|39581|1|18|29205.54|0.02|0.04|N|O|1995-12-30|1996-01-30|1996-01-04|DELIVER IN PERSON|MAIL|ing to the idly silent ideas. blithely unus| +88495|517018|29529|2|7|7244.93|0.00|0.04|N|O|1996-03-08|1996-03-02|1996-03-13|TAKE BACK RETURN|SHIP| the ideas. carefully final instructions d| +88495|518128|30639|3|9|10314.90|0.07|0.03|N|O|1996-02-16|1996-03-05|1996-03-10|DELIVER IN PERSON|REG AIR| instructions cajole carefully according | +88495|173164|10674|4|3|3711.48|0.01|0.03|N|O|1996-02-04|1996-02-06|1996-03-03|NONE|FOB|e even ideas. b| +88520|353801|41323|1|46|85320.34|0.05|0.00|A|F|1994-02-02|1993-11-21|1994-02-04|DELIVER IN PERSON|MAIL|ckly ironic ideas abo| +88520|316802|4321|2|6|10912.74|0.09|0.07|R|F|1994-01-19|1994-01-11|1994-01-31|NONE|AIR| wake patterns. foxes are slyly at the iron| +88520|475590|25591|3|11|17221.27|0.04|0.05|A|F|1993-11-12|1993-11-24|1993-12-04|COLLECT COD|MAIL|sly even requests wak| +88520|239959|14968|4|1|1898.94|0.07|0.08|R|F|1994-02-20|1993-12-12|1994-02-21|TAKE BACK RETURN|MAIL|s. special accounts are. f| +88520|983764|8803|5|48|88690.56|0.01|0.05|A|F|1994-01-23|1994-01-04|1994-02-16|TAKE BACK RETURN|SHIP|haggle slyly. regular accounts | +88520|121537|34040|6|26|40521.78|0.02|0.06|A|F|1993-12-04|1993-12-23|1993-12-05|COLLECT COD|TRUCK|ests. bold foxes hagg| +88520|658969|33996|7|31|59765.83|0.05|0.03|R|F|1994-02-15|1994-01-12|1994-03-04|TAKE BACK RETURN|TRUCK| cajole outside the | +88521|275843|854|1|39|70934.37|0.08|0.07|A|F|1994-07-05|1994-06-10|1994-07-08|DELIVER IN PERSON|AIR|kages. fin| +88521|77385|27386|2|15|20435.70|0.01|0.02|A|F|1994-05-15|1994-04-26|1994-05-22|NONE|REG AIR|ng courts wake ruthlessly blith| +88521|609476|34501|3|7|9698.08|0.10|0.05|R|F|1994-06-20|1994-05-27|1994-07-07|NONE|FOB|lly quickly final dependencies.| +88521|457770|45298|4|38|65654.50|0.07|0.00|A|F|1994-04-04|1994-06-04|1994-05-01|TAKE BACK RETURN|TRUCK|yly special requests nag. blithe p| +88521|724706|49735|5|41|70957.47|0.06|0.07|A|F|1994-06-13|1994-05-05|1994-06-20|COLLECT COD|SHIP|l requests wake about the slyly | +88521|121534|9041|6|13|20221.89|0.05|0.04|R|F|1994-04-19|1994-06-10|1994-05-12|DELIVER IN PERSON|AIR|ths. even dinos according to the | +88522|147806|22811|1|12|22245.60|0.01|0.06|N|O|1995-12-06|1995-11-01|1995-12-20|DELIVER IN PERSON|RAIL|st the quickly special dependencies. | +88522|174105|11615|2|18|21223.80|0.05|0.00|N|O|1995-10-22|1995-10-29|1995-11-12|DELIVER IN PERSON|FOB|y even instructions. blithely iro| +88522|170140|20141|3|44|53246.16|0.09|0.03|N|O|1995-10-08|1995-11-27|1995-11-01|NONE|RAIL|instructions wa| +88522|535368|22899|4|11|15436.74|0.07|0.03|N|O|1995-10-07|1995-11-21|1995-10-12|DELIVER IN PERSON|REG AIR| after the special, silent excuse| +88522|917978|30497|5|37|73849.41|0.10|0.06|N|O|1995-12-26|1995-11-01|1995-12-28|TAKE BACK RETURN|REG AIR|. fluffily bold deposits| +88522|442485|42486|6|10|14274.60|0.00|0.03|N|O|1995-09-09|1995-11-22|1995-09-27|TAKE BACK RETURN|SHIP|. carefully regular pinto beans cajole| +88523|127200|39703|1|21|25771.20|0.10|0.08|A|F|1993-09-27|1993-09-01|1993-10-04|COLLECT COD|RAIL|are blithely afte| +88523|836353|11386|2|32|41257.92|0.08|0.03|R|F|1993-08-04|1993-08-15|1993-08-05|TAKE BACK RETURN|AIR| express acco| +88524|156494|31501|1|24|37211.76|0.03|0.03|N|O|1997-11-29|1998-02-02|1997-12-07|DELIVER IN PERSON|RAIL|counts. regular foxes wake slyly abo| +88524|188406|910|2|39|58281.60|0.08|0.04|N|O|1997-12-16|1998-02-05|1998-01-07|NONE|AIR|ove the quickly pe| +88524|537569|25100|3|1|1606.54|0.10|0.08|N|O|1997-12-05|1997-12-25|1997-12-20|TAKE BACK RETURN|SHIP|n orbits sleep furiousl| +88525|888975|1493|1|22|43206.46|0.10|0.07|A|F|1993-01-04|1992-11-22|1993-01-16|DELIVER IN PERSON|RAIL|ely quickl| +88526|996693|21732|1|34|60848.10|0.08|0.04|N|O|1997-05-31|1997-07-23|1997-06-21|TAKE BACK RETURN|RAIL|s. pending instructions | +88526|409558|47083|2|43|63103.79|0.06|0.00|N|O|1997-04-25|1997-06-19|1997-05-08|NONE|FOB|leep after the fluffily regu| +88526|431567|44076|3|42|62938.68|0.06|0.05|N|O|1997-08-14|1997-06-27|1997-08-29|NONE|MAIL|ans sleep acros| +88526|331425|18944|4|13|18933.33|0.02|0.00|N|O|1997-08-04|1997-06-27|1997-08-14|TAKE BACK RETURN|FOB|rious pinto beans are theodolites. b| +88526|248403|35916|5|9|12162.51|0.08|0.08|N|O|1997-06-06|1997-06-12|1997-06-26|COLLECT COD|TRUCK|ges wake blithely a| +88526|893981|43982|6|50|98747.00|0.01|0.05|N|O|1997-06-15|1997-06-22|1997-06-28|COLLECT COD|RAIL|ly ironic accounts among the fi| +88526|125165|25166|7|18|21422.88|0.02|0.04|N|O|1997-08-03|1997-05-25|1997-08-13|DELIVER IN PERSON|FOB|ckly express asymptotes-- quickly pe| +88527|643501|6014|1|11|15889.17|0.00|0.04|N|O|1996-01-06|1996-01-10|1996-02-04|NONE|RAIL|y foxes. regular, unusual pinto beans ab| +88527|318620|43633|2|3|4915.83|0.00|0.02|N|O|1996-02-06|1995-12-13|1996-02-22|NONE|TRUCK|p requests. slyly regular foxes sleep fina| +88527|46124|46125|3|29|31033.48|0.06|0.08|N|O|1995-11-27|1995-12-15|1995-12-08|NONE|FOB|ages. quickly final ide| +88527|204998|17503|4|22|41865.56|0.04|0.07|N|O|1995-11-24|1995-12-17|1995-12-06|NONE|MAIL|dolites boost. carefully | +88527|399159|11667|5|1|1258.14|0.04|0.08|N|O|1995-12-04|1995-11-18|1995-12-28|TAKE BACK RETURN|RAIL|osits. packages unwind fluffily fluf| +88552|439804|14821|1|5|8718.90|0.01|0.06|R|F|1993-04-01|1993-01-20|1993-04-27|DELIVER IN PERSON|REG AIR|es. special fox| +88552|770513|45544|2|31|49087.88|0.10|0.08|R|F|1993-04-15|1993-02-08|1993-05-10|TAKE BACK RETURN|SHIP| boost quickly. fluffily furious requ| +88553|900464|12983|1|37|54183.54|0.02|0.04|N|O|1995-10-17|1995-10-09|1995-11-08|TAKE BACK RETURN|TRUCK|le according to the blithely ironic p| +88553|87603|105|2|6|9543.60|0.03|0.03|N|O|1995-08-21|1995-11-01|1995-09-03|TAKE BACK RETURN|AIR|sts cajole furious| +88553|342018|29537|3|7|7420.00|0.01|0.00|N|O|1995-09-11|1995-09-24|1995-09-27|DELIVER IN PERSON|MAIL|ly final deposits wake furiously. unusua| +88554|190117|15124|1|37|44663.07|0.03|0.00|N|O|1997-07-20|1997-07-27|1997-07-25|COLLECT COD|MAIL|e pending platelets. fluffi| +88554|296267|21278|2|49|61899.25|0.07|0.03|N|O|1997-08-15|1997-06-21|1997-09-08|TAKE BACK RETURN|REG AIR|ages sublate| +88554|346950|21963|3|42|83871.48|0.02|0.00|N|O|1997-06-08|1997-07-13|1997-06-13|COLLECT COD|REG AIR|fully blithely ironic ins| +88554|181620|44124|4|38|64661.56|0.04|0.05|N|O|1997-05-25|1997-07-16|1997-06-06|DELIVER IN PERSON|REG AIR|furiously final request| +88554|476650|26651|5|29|47172.27|0.06|0.00|N|O|1997-06-04|1997-08-12|1997-06-23|NONE|AIR|ounts-- deposits unwind| +88554|46953|21954|6|26|49398.70|0.06|0.06|N|O|1997-07-26|1997-08-05|1997-08-23|COLLECT COD|SHIP|ideas are | +88555|664493|14494|1|5|7287.30|0.07|0.04|A|F|1993-03-18|1993-02-12|1993-04-16|COLLECT COD|RAIL| theodolites sleep | +88555|123528|48533|2|45|69818.40|0.05|0.05|R|F|1993-01-29|1993-02-07|1993-02-12|COLLECT COD|MAIL|integrate furiously according | +88555|129368|16875|3|3|4192.08|0.05|0.06|R|F|1992-12-09|1993-02-03|1992-12-31|COLLECT COD|TRUCK|lent pinto beans nod slyly | +88555|279834|17350|4|24|43531.68|0.03|0.06|A|F|1993-03-08|1993-01-30|1993-04-05|TAKE BACK RETURN|FOB|sits are sometimes. quickly iron| +88555|154786|42296|5|25|46019.50|0.01|0.03|R|F|1993-03-07|1993-01-29|1993-03-10|NONE|RAIL|eas. furiously e| +88555|478013|28014|6|9|8918.91|0.01|0.01|R|F|1993-01-06|1993-01-26|1993-01-07|COLLECT COD|SHIP|against the fluffily regular pa| +88556|741181|16210|1|4|4888.60|0.06|0.00|A|F|1993-10-12|1993-10-12|1993-10-22|COLLECT COD|RAIL|ven ideas are across the | +88556|21085|33586|2|35|35212.80|0.09|0.02|A|F|1993-11-09|1993-09-22|1993-11-22|COLLECT COD|AIR|ys. slyly specia| +88556|364852|27360|3|18|34503.12|0.06|0.03|A|F|1993-11-17|1993-09-16|1993-11-19|NONE|SHIP|osits are fluffily. f| +88556|63639|13640|4|50|80131.50|0.05|0.00|R|F|1993-09-03|1993-10-03|1993-09-21|COLLECT COD|TRUCK|uests. even, fi| +88556|572050|9584|5|42|47125.26|0.06|0.08|R|F|1993-08-25|1993-09-16|1993-09-15|NONE|AIR|nusual accounts. c| +88557|105503|30508|1|28|42238.00|0.08|0.00|N|O|1995-07-24|1995-06-24|1995-07-28|NONE|RAIL|: bold excuses | +88558|850187|12705|1|33|37525.62|0.05|0.01|N|O|1997-05-29|1997-08-01|1997-06-01|TAKE BACK RETURN|REG AIR|ar deposits sleep ironic, | +88558|83538|33539|2|7|10650.71|0.05|0.02|N|O|1997-08-04|1997-07-19|1997-08-09|DELIVER IN PERSON|MAIL| slyly slow deposits use against | +88558|19270|44271|3|35|41624.45|0.03|0.06|N|O|1997-07-24|1997-08-17|1997-08-12|DELIVER IN PERSON|TRUCK|nic dependencies| +88558|857892|32927|4|48|88792.80|0.00|0.02|N|O|1997-08-25|1997-07-29|1997-09-02|DELIVER IN PERSON|MAIL|ackages sublate carefully.| +88558|580053|17587|5|46|52119.38|0.02|0.03|N|O|1997-06-01|1997-07-15|1997-06-11|NONE|MAIL|eas haggle blithely against | +88559|219882|32387|1|18|32433.66|0.06|0.05|N|O|1997-01-03|1996-11-24|1997-01-09|COLLECT COD|SHIP|ronic requests use fur| +88559|547013|22034|2|26|27559.74|0.07|0.04|N|O|1996-10-12|1996-11-10|1996-11-01|DELIVER IN PERSON|MAIL| blithely quickl| +88559|637527|12552|3|38|55650.62|0.00|0.06|N|O|1996-12-12|1996-12-06|1997-01-10|COLLECT COD|REG AIR|ctions. packages wake fu| +88559|907798|45353|4|36|65007.00|0.06|0.00|N|O|1996-12-31|1996-11-09|1997-01-02|NONE|SHIP| slyly furi| +88559|347965|35484|5|9|18116.55|0.06|0.07|N|O|1997-01-05|1996-11-07|1997-01-11|COLLECT COD|SHIP| slyly regular foxes sleep carefully a| +88559|241853|29366|6|7|12563.88|0.03|0.06|N|O|1997-01-24|1996-11-27|1997-01-25|TAKE BACK RETURN|REG AIR|lar requests. foxes acco| +88559|808756|33789|7|23|38288.33|0.10|0.00|N|O|1996-10-01|1996-12-05|1996-10-07|NONE|REG AIR| affix aft| +88584|752486|15002|1|28|43076.60|0.08|0.02|N|O|1996-07-15|1996-06-09|1996-08-08|COLLECT COD|MAIL|ss the care| +88584|29036|4037|2|34|32811.02|0.05|0.01|N|O|1996-07-20|1996-06-15|1996-08-15|COLLECT COD|MAIL|ular packages haggle slyly sly| +88584|999293|24332|3|40|55690.00|0.07|0.05|N|O|1996-08-05|1996-07-11|1996-08-09|DELIVER IN PERSON|MAIL|ess accounts. ironic, final foxes c| +88584|116254|3761|4|41|52080.25|0.05|0.02|N|O|1996-08-06|1996-07-01|1996-08-11|DELIVER IN PERSON|REG AIR|ons wake fluffily? even requests pr| +88584|865577|3129|5|20|30850.60|0.06|0.01|N|O|1996-08-29|1996-07-26|1996-09-07|COLLECT COD|TRUCK|sly blithe the| +88584|744252|6767|6|28|36294.16|0.07|0.06|N|O|1996-07-27|1996-08-02|1996-08-16|DELIVER IN PERSON|AIR|arefully regular courts-- furiously pendi| +88584|632085|32086|7|28|28477.40|0.04|0.07|N|O|1996-05-19|1996-06-20|1996-06-09|NONE|AIR|y across the blithely regular | +88585|440300|40301|1|44|54572.32|0.02|0.07|N|O|1996-01-30|1996-03-19|1996-01-31|COLLECT COD|REG AIR|nag among the| +88585|116459|16460|2|43|63444.35|0.07|0.03|N|O|1996-04-25|1996-02-21|1996-05-14|NONE|MAIL| the furiou| +88586|714660|39689|1|4|6698.52|0.04|0.08|N|O|1996-10-09|1996-10-02|1996-10-13|COLLECT COD|FOB|ely silently pending packages! ironic de| +88586|275295|25296|2|18|22865.04|0.10|0.07|N|O|1996-08-09|1996-08-30|1996-08-16|TAKE BACK RETURN|AIR| blithely ironic | +88587|473919|11447|1|28|53000.92|0.03|0.01|A|F|1992-08-15|1992-07-21|1992-09-04|DELIVER IN PERSON|REG AIR|st the carefull| +88587|142339|42340|2|15|20719.95|0.01|0.03|A|F|1992-07-23|1992-07-16|1992-08-19|TAKE BACK RETURN|REG AIR|special frets haggle around the| +88588|697823|22850|1|31|56444.49|0.09|0.02|N|O|1997-11-02|1997-12-10|1997-11-16|TAKE BACK RETURN|AIR| accounts poach above the furiously unu| +88588|302717|2718|2|33|56750.10|0.03|0.02|N|O|1997-12-24|1997-12-02|1998-01-14|DELIVER IN PERSON|TRUCK| slyly regular account| +88588|753591|16107|3|49|80583.44|0.05|0.08|N|O|1997-12-13|1997-11-12|1997-12-17|NONE|MAIL|y ironic realms. ideas sleep. slyly | +88589|75549|25550|1|37|56407.98|0.09|0.04|R|F|1995-01-17|1995-03-01|1995-01-19|TAKE BACK RETURN|RAIL|eposits. special request| +88589|743238|30781|2|25|32030.00|0.02|0.01|A|F|1995-04-03|1995-02-13|1995-04-06|TAKE BACK RETURN|RAIL|efully carefully bold requ| +88590|994243|6763|1|38|50813.60|0.06|0.02|N|O|1995-10-02|1995-10-24|1995-10-15|NONE|REG AIR|de of the slyly regular sentiments.| +88590|227172|27173|2|40|43966.40|0.06|0.03|N|O|1995-10-17|1995-10-12|1995-10-21|TAKE BACK RETURN|REG AIR|are carefully final sheaves. plate| +88591|684802|22342|1|2|3573.54|0.09|0.01|N|O|1995-09-29|1995-11-29|1995-10-06|TAKE BACK RETURN|FOB|ly express excuses. permanently regul| +88591|463001|38020|2|26|25063.48|0.10|0.07|N|O|1996-01-08|1995-11-02|1996-01-27|DELIVER IN PERSON|RAIL|ole. furiously s| +88591|641427|28964|3|40|54735.60|0.05|0.00|N|O|1995-12-20|1995-11-01|1996-01-14|DELIVER IN PERSON|SHIP|g pinto beans. blithely express request| +88591|447786|10295|4|27|46811.52|0.05|0.02|N|O|1995-11-23|1995-11-04|1995-12-08|COLLECT COD|RAIL|lithely ironic theodoli| +88591|933399|20954|5|43|61591.05|0.07|0.04|N|O|1996-01-07|1995-11-29|1996-01-27|TAKE BACK RETURN|AIR|ts doze across the slyly pe| +88616|855920|18438|1|29|54400.52|0.00|0.03|N|O|1998-01-23|1998-01-14|1998-02-02|COLLECT COD|REG AIR| wake carefully around | +88616|433062|8079|2|21|20895.84|0.08|0.04|N|O|1998-02-15|1998-01-24|1998-02-21|NONE|TRUCK|lar instructions. br| +88616|470717|45736|3|25|42192.25|0.02|0.00|N|O|1998-01-08|1998-01-26|1998-02-01|DELIVER IN PERSON|REG AIR|after the unusual, fin| +88616|329218|4231|4|3|3741.60|0.10|0.07|N|O|1997-12-15|1998-01-25|1997-12-25|DELIVER IN PERSON|MAIL|arefully. carefully special foxes might wak| +88616|150747|38257|5|20|35954.80|0.09|0.06|N|O|1998-03-11|1998-01-15|1998-03-25|COLLECT COD|MAIL|to beans. fluffily regular asympt| +88616|597470|9982|6|2|3134.90|0.01|0.02|N|O|1998-02-01|1998-03-06|1998-03-01|TAKE BACK RETURN|FOB| the slyly even f| +88616|671508|46535|7|34|50301.98|0.07|0.08|N|O|1998-01-29|1998-01-27|1998-02-06|TAKE BACK RETURN|SHIP|, quick requests. f| +88617|32923|45424|1|47|87228.24|0.09|0.04|R|F|1993-07-19|1993-05-22|1993-08-09|NONE|TRUCK|its. slyly p| +88617|328072|3085|2|16|17600.96|0.01|0.00|A|F|1993-04-23|1993-06-10|1993-05-20|COLLECT COD|AIR|kly after the qu| +88617|891398|41399|3|22|30565.70|0.07|0.06|R|F|1993-05-27|1993-06-20|1993-06-23|DELIVER IN PERSON|TRUCK|ackages. regu| +88617|725349|25350|4|21|28860.51|0.07|0.01|A|F|1993-07-05|1993-04-26|1993-07-31|TAKE BACK RETURN|RAIL|s sleep furiously along the carefully bold | +88617|937702|221|5|17|29574.22|0.09|0.07|A|F|1993-07-03|1993-05-31|1993-07-31|NONE|RAIL|leep blithely aga| +88617|946082|46083|6|11|12408.44|0.08|0.01|R|F|1993-05-16|1993-05-06|1993-05-31|TAKE BACK RETURN|SHIP|es unwind slyly. daringly even pin| +88618|994825|32383|1|18|34556.04|0.08|0.07|N|O|1998-07-07|1998-06-22|1998-07-22|TAKE BACK RETURN|TRUCK|ole alongsid| +88619|843477|43478|1|30|42612.90|0.09|0.04|N|O|1998-01-05|1998-01-14|1998-01-24|TAKE BACK RETURN|AIR|ular instructions against the blithely fi| +88619|312695|214|2|7|11953.76|0.10|0.08|N|O|1997-12-12|1998-01-04|1997-12-22|TAKE BACK RETURN|REG AIR|nts are furiously. | +88619|454589|17099|3|36|55568.16|0.08|0.00|N|O|1998-02-11|1998-01-08|1998-02-15|NONE|TRUCK|ly. fluffily bold deposits cajole quickl| +88619|277115|27116|4|2|2184.20|0.08|0.05|N|O|1998-02-03|1998-01-05|1998-02-21|DELIVER IN PERSON|SHIP| packages. regu| +88619|467956|42975|5|6|11543.58|0.07|0.02|N|O|1998-01-23|1998-01-21|1998-02-21|TAKE BACK RETURN|RAIL|ests boost sl| +88619|931300|6337|6|24|31950.24|0.09|0.06|N|O|1998-03-17|1998-01-20|1998-03-26|NONE|SHIP|mptotes. furiously express requ| +88620|204921|29930|1|46|83991.86|0.10|0.08|N|O|1997-02-04|1997-01-09|1997-03-03|NONE|TRUCK| ironic ho| +88620|101562|1563|2|35|54724.60|0.07|0.04|N|O|1996-11-13|1996-12-25|1996-11-20|DELIVER IN PERSON|TRUCK|eas wake quickly furious| +88620|947744|35299|3|37|66292.90|0.07|0.04|N|O|1997-02-10|1997-01-18|1997-02-18|DELIVER IN PERSON|REG AIR| deposits sleep within the even acc| +88620|717211|4754|4|8|9825.44|0.01|0.08|N|O|1997-03-07|1996-12-14|1997-03-12|COLLECT COD|FOB|instructions thrash bli| +88620|165231|40238|5|39|50552.97|0.05|0.08|N|O|1997-02-28|1997-01-03|1997-03-16|TAKE BACK RETURN|TRUCK|integrate? ironic | +88620|28085|28086|6|3|3039.24|0.03|0.05|N|O|1997-01-03|1996-12-25|1997-01-31|NONE|AIR|iously ironic deposits engage slyly ac| +88620|11672|36673|7|17|26922.39|0.09|0.01|N|O|1996-12-30|1997-01-30|1997-01-17|COLLECT COD|AIR| above the quickly ev| +88621|169550|44557|1|16|25912.80|0.09|0.06|N|O|1995-12-01|1995-11-07|1995-12-25|TAKE BACK RETURN|TRUCK|gainst the sil| +88622|295572|45573|1|1|1567.56|0.08|0.07|R|F|1994-03-16|1994-02-07|1994-04-10|COLLECT COD|FOB|y carefully final deposits. unus| +88622|668058|18059|2|43|44118.86|0.05|0.07|A|F|1994-03-04|1994-01-03|1994-03-10|TAKE BACK RETURN|FOB|ilent dependenci| +88623|842027|17060|1|14|13565.72|0.07|0.05|A|F|1992-05-26|1992-06-16|1992-06-22|COLLECT COD|SHIP|lent sentiments wake along the fi| +88648|823722|36239|1|44|72409.92|0.03|0.01|N|O|1998-04-29|1998-06-28|1998-05-05|COLLECT COD|TRUCK|pecial, ironic requests. fur| +88649|159339|34346|1|31|43348.23|0.04|0.07|R|F|1993-03-04|1993-03-29|1993-03-27|COLLECT COD|SHIP|s haggle carefully after the ir| +88649|993826|18865|2|30|57593.40|0.08|0.02|R|F|1993-05-03|1993-04-07|1993-05-27|COLLECT COD|RAIL|g according to the | +88649|231994|31995|3|7|13481.86|0.01|0.08|R|F|1993-03-30|1993-05-03|1993-04-16|DELIVER IN PERSON|FOB|osits. reg| +88649|115315|40320|4|16|21284.96|0.04|0.03|R|F|1993-04-01|1993-05-15|1993-04-17|COLLECT COD|MAIL|ly accounts cajole. reques| +88649|89057|39058|5|49|51256.45|0.08|0.08|R|F|1993-03-27|1993-03-19|1993-04-03|NONE|AIR|usly. quickly silent d| +88650|165967|28471|1|6|12197.76|0.08|0.05|R|F|1994-10-28|1994-09-06|1994-11-21|NONE|FOB|counts was fluffily ac| +88650|395008|45009|2|50|55149.50|0.02|0.07|A|F|1994-10-12|1994-08-28|1994-10-18|TAKE BACK RETURN|TRUCK|e slyly. express, even deposits wak| +88650|894522|44523|3|37|56109.76|0.10|0.00|R|F|1994-10-08|1994-09-10|1994-10-10|TAKE BACK RETURN|AIR|lly: express the| +88650|231075|18588|4|24|24145.44|0.03|0.06|A|F|1994-09-09|1994-08-07|1994-10-07|DELIVER IN PERSON|REG AIR|s are quickly slyly regular packages. furio| +88651|90822|3324|1|34|61635.88|0.09|0.03|R|F|1994-12-17|1994-10-23|1995-01-06|COLLECT COD|REG AIR|lar theodolites cajol| +88651|441819|41820|2|43|75713.97|0.08|0.03|A|F|1994-11-29|1994-10-20|1994-12-06|TAKE BACK RETURN|SHIP|nal packag| +88652|346983|9490|1|31|62929.07|0.02|0.02|R|F|1994-01-08|1994-02-17|1994-01-26|COLLECT COD|SHIP|y carefully special deposits| +88652|738896|26439|2|8|15478.88|0.07|0.01|R|F|1994-04-10|1994-03-06|1994-04-25|TAKE BACK RETURN|TRUCK| to cajole across the final instructions| +88652|624855|12392|3|39|69412.98|0.05|0.08|A|F|1994-03-26|1994-01-27|1994-04-08|TAKE BACK RETURN|TRUCK|platelets above the fluffily regul| +88652|923920|11475|4|21|40821.48|0.09|0.00|A|F|1993-12-31|1994-03-06|1994-01-14|NONE|REG AIR|l platelet| +88652|308108|20615|5|49|54688.41|0.10|0.02|R|F|1994-01-30|1994-02-25|1994-02-10|DELIVER IN PERSON|REG AIR|es. slyly ironic | +88653|941266|16303|1|20|26144.40|0.06|0.05|N|O|1997-01-03|1997-03-23|1997-01-10|COLLECT COD|MAIL|osits wake b| +88653|841998|17031|2|4|7759.80|0.05|0.07|N|O|1997-03-22|1997-02-23|1997-04-21|TAKE BACK RETURN|REG AIR|sits. quiet| +88653|455363|42891|3|29|38231.86|0.09|0.03|N|O|1997-02-11|1997-03-15|1997-03-07|COLLECT COD|FOB|counts wake carefully about t| +88653|285668|23184|4|30|49609.50|0.00|0.08|N|O|1997-01-03|1997-03-19|1997-01-31|COLLECT COD|REG AIR|refully pending in| +88653|213292|38301|5|34|40979.52|0.02|0.05|N|O|1997-03-02|1997-03-08|1997-03-24|NONE|REG AIR|ide of the idly bold p| +88653|783954|33955|6|49|99858.08|0.05|0.01|N|O|1997-04-01|1997-03-15|1997-04-11|NONE|AIR|hely final in| +88653|908555|33592|7|15|23452.65|0.04|0.07|N|O|1997-02-07|1997-01-29|1997-02-12|TAKE BACK RETURN|FOB|integrate quickly furiously r| +88654|71982|21983|1|44|85975.12|0.03|0.04|N|O|1998-07-02|1998-05-19|1998-07-15|COLLECT COD|MAIL| express accounts sleep silently furiou| +88654|799362|24393|2|39|56991.87|0.04|0.05|N|O|1998-05-14|1998-04-08|1998-05-18|DELIVER IN PERSON|SHIP|even accounts. p| +88654|874317|11869|3|7|9038.89|0.06|0.08|N|O|1998-05-17|1998-05-20|1998-05-21|TAKE BACK RETURN|AIR|atelets are.| +88654|633166|20703|4|37|40667.81|0.09|0.05|N|O|1998-06-28|1998-05-19|1998-07-09|NONE|FOB|y special asymptotes are| +88654|610414|35439|5|25|33109.50|0.06|0.06|N|O|1998-04-17|1998-05-09|1998-05-17|COLLECT COD|FOB|, special ideas. sl| +88654|216915|29420|6|40|73276.00|0.06|0.05|N|O|1998-03-28|1998-04-22|1998-04-08|COLLECT COD|MAIL|packages cajole blithely fluff| +88654|688760|38761|7|34|59456.82|0.10|0.01|N|O|1998-05-28|1998-04-15|1998-06-02|NONE|SHIP|eas are slyly after the b| +88655|975885|25886|1|45|88237.80|0.08|0.02|N|O|1995-11-26|1995-10-10|1995-12-01|COLLECT COD|TRUCK|s packages boost slyl| +88680|318980|31487|1|8|15991.76|0.05|0.05|N|O|1996-06-04|1996-04-09|1996-06-27|COLLECT COD|RAIL|ockey players about the slyly special ac| +88680|92096|17099|2|12|13057.08|0.04|0.04|N|O|1996-05-10|1996-03-20|1996-05-28|NONE|TRUCK|ing to the blithely silent p| +88680|856330|43882|3|12|15435.48|0.10|0.01|N|O|1996-05-09|1996-05-06|1996-05-10|TAKE BACK RETURN|REG AIR|ly ironic braids! regula| +88681|348119|48120|1|12|14005.20|0.00|0.07|N|O|1997-11-06|1997-12-03|1997-11-15|DELIVER IN PERSON|AIR|furiously regular depe| +88681|825869|902|2|50|89741.00|0.10|0.05|N|O|1997-11-29|1997-11-27|1997-12-20|NONE|SHIP|ding to the carefully regular p| +88682|492423|42424|1|34|48123.60|0.04|0.01|A|F|1992-12-02|1993-02-04|1992-12-29|NONE|RAIL|ep. requests engage according to the | +88682|150091|12595|2|33|37655.97|0.04|0.01|R|F|1992-12-27|1993-01-27|1993-01-22|TAKE BACK RETURN|TRUCK|ackages ca| +88683|638853|1366|1|18|32252.76|0.00|0.06|N|O|1997-03-15|1997-03-21|1997-03-29|TAKE BACK RETURN|MAIL|lites boost slyly carefully final f| +88683|195294|7798|2|48|66685.92|0.03|0.04|N|O|1997-05-09|1997-04-13|1997-05-30|TAKE BACK RETURN|MAIL|nding instruc| +88683|294923|32439|3|2|3835.82|0.00|0.08|N|O|1997-02-24|1997-04-17|1997-03-20|COLLECT COD|SHIP|. unusual accounts nag blithely ab| +88683|764502|39533|4|14|21930.58|0.00|0.06|N|O|1997-03-10|1997-03-05|1997-04-03|NONE|FOB|ently slyly re| +88683|970040|45079|5|6|6660.00|0.03|0.04|N|O|1997-04-28|1997-03-05|1997-05-04|DELIVER IN PERSON|SHIP| accounts. slyly i| +88684|22851|10352|1|17|30155.45|0.05|0.00|N|O|1995-11-01|1995-11-06|1995-11-30|COLLECT COD|FOB|nts wake furiously along| +88684|40527|3028|2|8|11740.16|0.07|0.02|N|O|1995-11-21|1995-11-15|1995-12-07|DELIVER IN PERSON|MAIL|ously final accounts against the| +88685|845992|33541|1|10|19379.50|0.05|0.01|N|O|1997-05-09|1997-07-25|1997-05-21|TAKE BACK RETURN|REG AIR|ckly special platelets cajole. | +88685|571583|46606|2|12|19854.72|0.07|0.01|N|O|1997-07-06|1997-06-21|1997-07-21|NONE|AIR|ccording to the b| +88686|56491|43995|1|32|46319.68|0.01|0.02|R|F|1994-08-25|1994-10-01|1994-09-02|TAKE BACK RETURN|REG AIR| carefully bold re| +88686|441258|3767|2|3|3597.69|0.02|0.03|R|F|1994-09-07|1994-10-20|1994-09-12|DELIVER IN PERSON|AIR|side the re| +88687|78093|15597|1|10|10710.90|0.00|0.01|R|F|1993-08-15|1993-07-15|1993-08-25|COLLECT COD|SHIP|unusual, special frets. even theodolit| +88687|503483|15994|2|14|20810.44|0.06|0.00|R|F|1993-05-28|1993-06-29|1993-06-11|DELIVER IN PERSON|FOB|sits hinder. finally f| +88687|38233|25734|3|46|53876.58|0.09|0.05|R|F|1993-06-10|1993-06-10|1993-06-20|COLLECT COD|MAIL|after the instructions cajole care| +88687|579032|4055|4|49|54439.49|0.00|0.06|A|F|1993-06-23|1993-07-15|1993-07-22|DELIVER IN PERSON|FOB|ajole carefully alongside of the instructio| +88687|779773|42289|5|7|12969.18|0.07|0.01|R|F|1993-08-16|1993-06-12|1993-09-15|DELIVER IN PERSON|SHIP|ackages until the quickly bold depend| +88687|635812|23349|6|31|54181.18|0.08|0.01|R|F|1993-06-25|1993-05-21|1993-06-29|DELIVER IN PERSON|AIR|ges-- fluffily even pinto be| +88687|86841|11844|7|36|65802.24|0.01|0.01|R|F|1993-07-08|1993-06-14|1993-07-25|NONE|RAIL|deas. fluffily express packages play; furio| +88712|523927|48948|1|5|9754.50|0.03|0.05|N|O|1995-10-20|1995-10-30|1995-11-07|NONE|RAIL|ter the furiously ironic deposits haggle ac| +88713|282745|45251|1|20|34554.60|0.01|0.00|N|O|1995-08-25|1995-07-23|1995-09-05|DELIVER IN PERSON|REG AIR|e the blithely spec| +88713|93769|43770|2|37|65222.12|0.10|0.08|N|O|1995-08-04|1995-06-30|1995-08-20|NONE|AIR|are carefully above t| +88713|974135|11693|3|39|47154.51|0.07|0.01|N|F|1995-06-01|1995-07-19|1995-06-27|COLLECT COD|FOB|ng the pending re| +88713|276423|38929|4|44|61574.04|0.09|0.07|N|F|1995-05-27|1995-08-03|1995-06-22|TAKE BACK RETURN|AIR|ts use blithely according t| +88713|835960|23509|5|4|7583.68|0.05|0.04|N|F|1995-06-17|1995-07-23|1995-06-24|DELIVER IN PERSON|FOB|ss the qui| +88713|972907|10465|6|6|11879.16|0.01|0.02|N|O|1995-07-17|1995-06-21|1995-08-01|DELIVER IN PERSON|MAIL|s. regular excuse| +88713|644329|31866|7|39|49658.31|0.03|0.07|N|O|1995-08-01|1995-07-28|1995-08-08|NONE|FOB| above the furiously regular | +88714|235799|10808|1|46|79799.88|0.08|0.05|N|O|1997-03-12|1997-01-23|1997-03-15|NONE|TRUCK|final platelets. furiously final reque| +88714|65588|28090|2|3|4660.74|0.00|0.02|N|O|1997-01-28|1997-01-14|1997-02-25|COLLECT COD|MAIL|ernes boost about th| +88715|522367|9898|1|27|37512.18|0.10|0.00|N|O|1996-02-09|1996-03-31|1996-02-27|NONE|TRUCK| deposits. slyly final packages toward t| +88715|406155|43680|2|7|7427.91|0.01|0.02|N|O|1996-05-16|1996-04-01|1996-05-26|TAKE BACK RETURN|SHIP| deposits after the| +88715|237493|49998|3|38|54358.24|0.09|0.05|N|O|1996-04-16|1996-05-05|1996-05-13|TAKE BACK RETURN|FOB|e from the carefully special f| +88715|538663|38664|4|5|8508.20|0.10|0.07|N|O|1996-06-08|1996-04-17|1996-06-28|TAKE BACK RETURN|MAIL|regular, final | +88716|812428|49977|1|27|36190.26|0.06|0.04|A|F|1993-02-14|1993-03-10|1993-03-15|COLLECT COD|MAIL|s. pinto beans boost final| +88716|473214|10742|2|36|42738.84|0.07|0.05|R|F|1993-04-22|1993-04-16|1993-05-22|COLLECT COD|RAIL|instructions. packages use permanently even| +88716|305393|17900|3|27|37756.26|0.06|0.02|A|F|1993-05-12|1993-03-05|1993-05-27|NONE|RAIL|ackages use blithely furiously iro| +88716|738270|38271|4|40|52329.60|0.08|0.06|R|F|1993-02-16|1993-03-07|1993-02-17|DELIVER IN PERSON|FOB|l instructions. flu| +88717|377840|15362|1|2|3835.66|0.10|0.02|R|F|1993-07-05|1993-08-09|1993-07-19|NONE|RAIL|y final ideas| +88717|350297|37819|2|30|40418.40|0.03|0.03|R|F|1993-05-29|1993-06-25|1993-05-30|COLLECT COD|AIR|hely regular requests wake abo| +88717|434878|22403|3|14|25379.90|0.08|0.06|A|F|1993-09-22|1993-07-08|1993-09-29|TAKE BACK RETURN|AIR|ructions af| +88717|980362|5401|4|17|24519.44|0.09|0.08|A|F|1993-08-03|1993-07-31|1993-09-02|TAKE BACK RETURN|TRUCK| affix carefully ironic excuses. slyly | +88717|930265|17820|5|26|33675.72|0.09|0.01|A|F|1993-08-15|1993-08-03|1993-09-08|DELIVER IN PERSON|MAIL|ve the slyly final deposits | +88717|956734|31773|6|3|5372.07|0.10|0.06|A|F|1993-07-02|1993-07-15|1993-07-10|TAKE BACK RETURN|MAIL|ctions cajole. | +88717|827849|2882|7|32|56857.60|0.08|0.01|R|F|1993-06-27|1993-08-15|1993-07-26|COLLECT COD|REG AIR|ironic accounts eat| +88718|651854|1855|1|32|57786.24|0.00|0.08|N|O|1998-05-05|1998-02-24|1998-05-08|DELIVER IN PERSON|MAIL|. requests according to the quickly| +88718|694414|6928|2|39|54926.82|0.05|0.06|N|O|1998-02-15|1998-04-18|1998-03-05|DELIVER IN PERSON|AIR|eneath the even, special package| +88718|14085|39086|3|2|1998.16|0.05|0.02|N|O|1998-02-07|1998-03-12|1998-02-13|TAKE BACK RETURN|TRUCK|ly special accounts ha| +88718|721272|21273|4|21|27158.04|0.04|0.03|N|O|1998-02-05|1998-04-15|1998-02-27|COLLECT COD|FOB|sly regular waters; slyly iron| +88719|907827|45382|1|12|22017.36|0.05|0.07|N|O|1997-04-23|1997-04-28|1997-05-22|TAKE BACK RETURN|SHIP|r requests | +88719|837090|12123|2|27|27730.35|0.08|0.07|N|O|1997-06-10|1997-04-28|1997-06-21|TAKE BACK RETURN|SHIP|regular escapades. reque| +88719|958998|21518|3|42|86391.90|0.01|0.06|N|O|1997-04-09|1997-05-05|1997-05-07|NONE|FOB|ly pending accounts. s| +88744|263633|13634|1|35|55881.70|0.04|0.07|N|O|1996-04-24|1996-06-02|1996-04-25|TAKE BACK RETURN|FOB| sheaves. fluffily regular foxes | +88744|873787|48822|2|20|35214.80|0.05|0.01|N|O|1996-06-25|1996-06-02|1996-07-19|TAKE BACK RETURN|RAIL|ual deposits. regular packages grow fu| +88744|731727|44242|3|24|42208.56|0.00|0.07|N|O|1996-05-06|1996-05-25|1996-06-02|TAKE BACK RETURN|AIR|nic asymptotes are according to | +88744|134002|34003|4|16|16576.00|0.03|0.04|N|O|1996-06-20|1996-06-16|1996-06-26|TAKE BACK RETURN|SHIP|ns. even deposits wake furiously | +88744|169637|7147|5|31|52905.53|0.02|0.05|N|O|1996-07-16|1996-05-11|1996-08-10|COLLECT COD|RAIL|ymptotes sl| +88744|81465|31466|6|15|21696.90|0.03|0.06|N|O|1996-06-08|1996-07-06|1996-06-28|NONE|MAIL| dependencies. quickly specia| +88744|166906|29410|7|48|94699.20|0.07|0.08|N|O|1996-04-13|1996-07-07|1996-04-26|DELIVER IN PERSON|RAIL|usly regular accounts; regul| +88745|174346|49353|1|11|15623.74|0.01|0.01|R|F|1994-09-19|1994-07-13|1994-09-21|COLLECT COD|SHIP|nding accounts may haggle | +88745|226070|38575|2|2|1992.12|0.10|0.00|A|F|1994-06-08|1994-07-04|1994-06-22|COLLECT COD|MAIL|ts after the enticingly silent| +88745|547157|9668|3|3|3612.39|0.04|0.07|A|F|1994-06-27|1994-07-20|1994-07-22|COLLECT COD|REG AIR| asymptotes! bli| +88745|64547|27049|4|21|31742.34|0.05|0.06|R|F|1994-09-03|1994-08-30|1994-09-24|DELIVER IN PERSON|REG AIR|kages from the ironic deposits nag| +88745|828203|3236|5|46|52033.36|0.06|0.06|R|F|1994-06-18|1994-08-05|1994-06-30|TAKE BACK RETURN|TRUCK|nal, express pinto beans sleep carefull| +88746|191215|28725|1|24|31349.04|0.04|0.03|R|F|1994-06-15|1994-06-12|1994-06-21|NONE|REG AIR|blithely ironic a| +88746|747840|10355|2|15|28317.15|0.02|0.08|A|F|1994-05-01|1994-06-12|1994-05-31|TAKE BACK RETURN|REG AIR|al packages affix according to the bra| +88746|940881|15918|3|26|49967.84|0.05|0.02|R|F|1994-08-11|1994-06-01|1994-08-31|DELIVER IN PERSON|SHIP|nal asymptotes. unusual packag| +88747|804394|4395|1|41|53232.35|0.02|0.02|A|F|1994-08-21|1994-07-24|1994-09-18|NONE|AIR|its. furiously ironic requests detect abo| +88747|441852|29377|2|17|30495.11|0.10|0.08|A|F|1994-09-07|1994-09-15|1994-10-02|COLLECT COD|FOB|y bold excuses sleep ag| +88747|204511|29520|3|37|52373.50|0.08|0.06|R|F|1994-10-18|1994-08-01|1994-11-12|NONE|RAIL|s haggle quickly around the bli| +88747|206390|43903|4|13|16852.94|0.02|0.04|R|F|1994-09-25|1994-08-21|1994-10-15|NONE|AIR| express accounts against the unu| +88747|788709|1225|5|1|1797.67|0.00|0.05|R|F|1994-10-11|1994-08-06|1994-11-03|DELIVER IN PERSON|FOB|ily unusual re| +88747|827462|15011|6|50|69471.00|0.04|0.02|R|F|1994-09-08|1994-08-30|1994-09-12|NONE|MAIL|ickly bold packages wake reg| +88747|143304|43305|7|44|59281.20|0.10|0.04|A|F|1994-06-27|1994-08-15|1994-07-23|DELIVER IN PERSON|TRUCK|sual excuses along the blithely r| +88748|502114|27135|1|23|25670.07|0.04|0.06|A|F|1994-10-03|1994-09-03|1994-10-25|TAKE BACK RETURN|MAIL| the even, bold requests| +88748|27252|2253|2|13|15330.25|0.04|0.04|A|F|1994-10-08|1994-09-04|1994-10-22|COLLECT COD|SHIP|ironic dependencies sleep. regular de| +88748|15862|3363|3|50|88893.00|0.00|0.03|R|F|1994-08-14|1994-09-17|1994-09-02|TAKE BACK RETURN|SHIP|s boost blithely unusual, regular theo| +88748|589930|27464|4|17|34338.47|0.04|0.08|A|F|1994-10-27|1994-10-10|1994-11-16|TAKE BACK RETURN|AIR|ges are furiously according to the quickly| +88749|718661|31176|1|10|16796.30|0.10|0.07|R|F|1992-03-06|1992-03-09|1992-03-08|TAKE BACK RETURN|SHIP|ess deposits. requests| +88749|522262|34773|2|10|12842.40|0.07|0.06|R|F|1992-03-28|1992-02-26|1992-04-09|NONE|REG AIR|pendencies wake slyl| +88749|643899|6412|3|5|9214.30|0.03|0.04|R|F|1992-04-01|1992-02-21|1992-04-19|COLLECT COD|FOB|slyly besides t| +88749|5275|42776|4|2|2360.54|0.00|0.04|R|F|1992-01-21|1992-02-25|1992-02-06|NONE|REG AIR|al dinos sleep carefu| +88749|643869|6382|5|33|59823.39|0.04|0.01|A|F|1992-05-12|1992-02-25|1992-05-27|DELIVER IN PERSON|RAIL|y final packages. regular deposits| +88749|502149|2150|6|36|41440.32|0.00|0.01|A|F|1992-04-11|1992-03-25|1992-04-21|NONE|REG AIR|intain ruthlessly. furiously special w| +88750|658406|20920|1|23|31380.51|0.08|0.03|R|F|1994-03-20|1994-02-10|1994-04-01|DELIVER IN PERSON|TRUCK|cajole carefully | +88751|648291|23316|1|36|44613.36|0.00|0.08|R|F|1994-10-02|1994-11-20|1994-10-05|TAKE BACK RETURN|AIR|regular accounts haggle unusual, even e| +88751|810285|10286|2|45|53785.80|0.07|0.02|A|F|1995-01-08|1994-12-01|1995-01-23|DELIVER IN PERSON|RAIL|final asymptotes. bold packages ha| +88751|447396|22413|3|40|53734.80|0.01|0.08|A|F|1995-01-18|1994-11-10|1995-02-05|NONE|MAIL|t accounts caj| +88776|28069|15570|1|2|1994.12|0.03|0.06|N|O|1998-04-03|1998-04-15|1998-04-09|NONE|FOB|inal, bold ideas. quickly u| +88776|752471|2472|2|34|51796.96|0.07|0.03|N|O|1998-05-17|1998-04-27|1998-06-02|NONE|FOB| ironic notornis. | +88776|769545|7091|3|8|12916.08|0.06|0.01|N|O|1998-05-20|1998-05-11|1998-06-12|NONE|REG AIR|onic platelets integrate| +88776|732390|44905|4|3|4267.08|0.00|0.02|N|O|1998-05-18|1998-04-17|1998-05-24|COLLECT COD|AIR|eodolites. blithel| +88776|266191|41202|5|41|47444.38|0.04|0.08|N|O|1998-04-03|1998-05-09|1998-04-12|TAKE BACK RETURN|AIR|refully regular Tiresias believe carefully| +88776|861803|24321|6|45|79414.20|0.00|0.05|N|O|1998-06-01|1998-05-09|1998-06-16|DELIVER IN PERSON|SHIP|sits wake evenly special ideas. b| +88777|821303|33820|1|3|3672.78|0.09|0.04|R|F|1994-07-05|1994-06-07|1994-07-29|DELIVER IN PERSON|TRUCK|ross the accou| +88778|754474|42020|1|34|51966.96|0.05|0.08|A|F|1993-06-17|1993-07-22|1993-06-29|DELIVER IN PERSON|MAIL|re after the ironic| +88778|441763|4272|2|26|44323.24|0.03|0.05|R|F|1993-09-03|1993-07-12|1993-09-21|COLLECT COD|SHIP| cajole blithely across the instructions. | +88778|701324|26353|3|50|66264.50|0.00|0.02|A|F|1993-07-06|1993-06-23|1993-07-28|NONE|MAIL|xes. slyly ironic ideas are. dependencies a| +88778|138035|25542|4|22|23606.66|0.06|0.08|A|F|1993-07-04|1993-07-22|1993-07-24|TAKE BACK RETURN|MAIL|al foxes. silent | +88778|941291|3810|5|25|33306.25|0.00|0.05|R|F|1993-06-07|1993-07-03|1993-06-18|NONE|REG AIR|, busy requests. slyly regul| +88778|272574|22575|6|44|68048.64|0.01|0.05|R|F|1993-07-20|1993-06-13|1993-07-21|TAKE BACK RETURN|SHIP|ing packages cajole furiously pending pa| +88778|138316|13321|7|50|67715.50|0.08|0.05|A|F|1993-08-17|1993-07-19|1993-09-04|COLLECT COD|REG AIR|ng to the theodolites use according to th| +88779|668074|18075|1|31|32303.24|0.05|0.06|R|F|1994-05-17|1994-04-07|1994-06-14|NONE|FOB|encies. furiously unusual foxes nag-- bu| +88779|308950|21457|2|21|41137.74|0.07|0.04|A|F|1994-05-27|1994-04-09|1994-06-14|COLLECT COD|TRUCK|lar, unusual packages use regular, special| +88780|697529|47530|1|22|33582.78|0.08|0.08|R|F|1995-03-05|1995-04-09|1995-03-26|NONE|SHIP|uests maintain slyly regular requests.| +88780|360709|48231|2|6|10618.14|0.07|0.03|A|F|1995-03-21|1995-04-25|1995-04-18|TAKE BACK RETURN|RAIL|ounts. special packages wake slyly pe| +88780|428041|28042|3|18|17442.36|0.03|0.08|R|F|1995-03-10|1995-03-04|1995-03-21|TAKE BACK RETURN|MAIL|sits. final ideas are caref| +88780|78241|15745|4|42|51208.08|0.09|0.02|A|F|1995-01-29|1995-03-05|1995-02-24|COLLECT COD|RAIL|al dependencies. ironi| +88780|995118|20157|5|35|42457.45|0.05|0.04|A|F|1995-04-18|1995-04-23|1995-04-22|DELIVER IN PERSON|AIR|ly final dep| +88780|934618|34619|6|27|44619.39|0.10|0.00|R|F|1995-02-18|1995-02-27|1995-02-21|NONE|SHIP| accounts haggle along the acco| +88780|111827|11828|7|36|66197.52|0.05|0.07|A|F|1995-03-11|1995-04-24|1995-03-13|TAKE BACK RETURN|REG AIR|regular instruct| +88781|470373|20374|1|2|2686.70|0.01|0.06|A|F|1993-03-25|1993-02-17|1993-04-18|COLLECT COD|MAIL|riously about the slyly silent accounts. pi| +88781|544584|44585|2|15|24428.40|0.02|0.00|A|F|1993-01-18|1993-03-02|1993-02-01|TAKE BACK RETURN|FOB|s sleep even theo| +88781|809237|21754|3|2|2292.38|0.03|0.07|R|F|1993-03-19|1993-03-04|1993-03-21|DELIVER IN PERSON|AIR|ake above the blithely unusual | +88781|836124|36125|4|24|25441.92|0.04|0.06|A|F|1993-01-02|1993-02-20|1993-01-23|DELIVER IN PERSON|TRUCK|gular accounts. pending multipliers us| +88782|227617|27618|1|45|69507.00|0.07|0.03|N|O|1997-11-13|1997-10-18|1997-11-22|TAKE BACK RETURN|TRUCK|quests. fluff| +88782|556953|6954|2|22|44218.46|0.10|0.03|N|O|1997-11-12|1997-11-06|1997-12-02|COLLECT COD|AIR| pending packages after the slyly fin| +88782|698923|48924|3|44|84563.16|0.05|0.01|N|O|1997-09-21|1997-11-09|1997-10-19|TAKE BACK RETURN|MAIL| haggle. regul| +88782|798141|10657|4|12|14869.32|0.06|0.06|N|O|1997-08-27|1997-11-17|1997-08-30|COLLECT COD|MAIL|ly. regula| +88782|353749|41271|5|25|45068.25|0.09|0.05|N|O|1997-10-02|1997-10-19|1997-10-04|COLLECT COD|REG AIR|le carefully. blithely regular | +88783|661315|23829|1|13|16591.64|0.05|0.06|N|O|1998-05-12|1998-06-19|1998-06-11|COLLECT COD|SHIP|ven deposits. darin| +88783|713144|25659|2|21|24299.31|0.09|0.08|N|O|1998-07-09|1998-06-29|1998-07-17|TAKE BACK RETURN|RAIL|ackages nod| +88783|806435|18952|3|23|30851.97|0.08|0.02|N|O|1998-06-15|1998-05-31|1998-06-21|COLLECT COD|REG AIR|gularly express deposits. slyly final e| +88783|740571|28114|4|22|35453.88|0.06|0.01|N|O|1998-07-28|1998-06-28|1998-08-17|DELIVER IN PERSON|RAIL|ts boost a| +88783|773386|10932|5|27|39402.45|0.04|0.08|N|O|1998-04-30|1998-07-02|1998-05-07|NONE|TRUCK|posits. unus| +88783|284276|9287|6|34|42848.84|0.06|0.06|N|O|1998-08-04|1998-07-11|1998-08-10|DELIVER IN PERSON|RAIL| theodolites alon| +88808|803662|28695|1|38|59493.56|0.02|0.02|R|F|1992-06-04|1992-07-04|1992-06-22|NONE|FOB| carefully along the carefully i| +88808|143183|18188|2|15|18392.70|0.08|0.04|R|F|1992-09-09|1992-08-12|1992-10-08|TAKE BACK RETURN|MAIL|n packages are abo| +88808|462711|25221|3|3|5021.07|0.09|0.05|R|F|1992-07-21|1992-06-19|1992-08-20|COLLECT COD|SHIP|s about the iron| +88809|710410|47953|1|46|65337.48|0.03|0.01|N|O|1997-03-01|1997-01-19|1997-03-16|NONE|FOB|ges integrate. carefully express acco| +88809|856576|19094|2|15|22987.95|0.07|0.00|N|O|1996-12-25|1997-02-22|1996-12-26|COLLECT COD|AIR|lyly ironic requests wake slyly. stealthy| +88810|721293|33808|1|23|30227.98|0.08|0.07|N|O|1997-12-09|1997-11-22|1997-12-15|TAKE BACK RETURN|SHIP|ely even asymptotes. blithely ironic dolph| +88810|770487|33003|2|5|7787.25|0.03|0.04|N|O|1997-10-13|1997-12-18|1997-10-27|DELIVER IN PERSON|MAIL|p carefully? enticing| +88810|572085|47108|3|16|18512.96|0.02|0.00|N|O|1997-12-05|1997-12-15|1998-01-01|TAKE BACK RETURN|TRUCK| requests are. blithely ironic| +88811|498704|11214|1|49|83431.32|0.05|0.08|R|F|1994-07-25|1994-07-12|1994-08-23|COLLECT COD|FOB|ptotes haggle| +88811|712128|37157|2|50|57004.50|0.00|0.06|A|F|1994-08-30|1994-08-10|1994-09-25|NONE|FOB|uickly stealthy foxes i| +88811|728131|40646|3|19|22022.90|0.10|0.04|A|F|1994-06-14|1994-07-30|1994-06-15|NONE|REG AIR|deposits. slyly bold patterns according| +88811|687712|25252|4|18|30594.24|0.02|0.03|A|F|1994-07-02|1994-08-11|1994-07-17|TAKE BACK RETURN|MAIL|ickly even asymptotes. ironic d| +88811|375163|37671|5|20|24763.00|0.10|0.08|R|F|1994-06-09|1994-07-27|1994-06-19|DELIVER IN PERSON|FOB|inal packages. busily ironic pinto be| +88812|234176|21689|1|31|34414.96|0.04|0.06|N|O|1996-02-17|1996-03-15|1996-02-20|TAKE BACK RETURN|TRUCK|e deposits bo| +88812|780955|18501|2|19|38682.48|0.05|0.08|N|O|1996-02-27|1996-03-26|1996-03-09|COLLECT COD|AIR|es are fluffily. special, special instructi| +88812|499662|24681|3|32|53172.48|0.01|0.07|N|O|1996-03-30|1996-02-21|1996-04-18|DELIVER IN PERSON|FOB|ironic depths about the carefully c| +88812|806180|6181|4|6|6516.84|0.07|0.07|N|O|1996-02-24|1996-04-12|1996-03-18|NONE|SHIP| deposits before the bli| +88812|457215|7216|5|2|2344.38|0.03|0.02|N|O|1996-04-26|1996-03-20|1996-05-19|NONE|TRUCK|ular request| +88813|511356|23867|1|28|38285.24|0.08|0.01|R|F|1993-12-10|1994-02-04|1993-12-28|COLLECT COD|REG AIR|oys affix slyly unusual requests| +88813|360161|47683|2|13|15874.95|0.07|0.08|A|F|1994-02-22|1994-02-01|1994-03-08|NONE|REG AIR|egular pinto beans among the even, | +88813|218424|30929|3|45|60408.45|0.10|0.01|R|F|1994-01-04|1994-01-15|1994-01-18|DELIVER IN PERSON|SHIP|ular instruction| +88813|38346|13347|4|20|25686.80|0.07|0.07|R|F|1994-02-06|1994-02-22|1994-03-05|COLLECT COD|TRUCK|odolites haggle regular, regular| +88813|477067|2086|5|50|52202.00|0.08|0.08|A|F|1994-03-18|1994-03-06|1994-04-05|DELIVER IN PERSON|AIR|s. final deposits p| +88814|999535|37093|1|23|37593.27|0.10|0.05|N|O|1997-10-04|1997-10-10|1997-10-18|COLLECT COD|MAIL|he furiously pend| +88814|168810|18811|2|29|54485.49|0.05|0.05|N|O|1997-09-12|1997-10-11|1997-09-18|TAKE BACK RETURN|RAIL|furiously acco| +88814|184580|34581|3|24|39949.92|0.02|0.03|N|O|1997-08-31|1997-09-02|1997-09-30|NONE|TRUCK|age. bold pack| +88814|224927|12440|4|6|11111.46|0.00|0.02|N|O|1997-10-11|1997-10-21|1997-10-14|TAKE BACK RETURN|FOB|posits are slyly quickly final i| +88814|339596|14609|5|5|8177.90|0.08|0.07|N|O|1997-07-31|1997-10-17|1997-08-21|TAKE BACK RETURN|FOB| ironic depen| +88814|577970|2993|6|26|53246.70|0.10|0.08|N|O|1997-10-03|1997-10-11|1997-10-15|NONE|TRUCK| carefully fin| +88814|934814|9851|7|49|90589.73|0.06|0.01|N|O|1997-08-18|1997-09-25|1997-09-13|COLLECT COD|MAIL|e slyly blithely special deposits. furio| +88815|404302|4303|1|48|57901.44|0.09|0.03|N|O|1996-08-21|1996-06-23|1996-09-01|COLLECT COD|FOB| sleep care| +88815|102467|27472|2|36|52900.56|0.00|0.04|N|O|1996-07-16|1996-07-08|1996-07-20|COLLECT COD|TRUCK|erns. fluffily even orbits wa| +88815|147578|10081|3|1|1625.57|0.09|0.06|N|O|1996-09-04|1996-06-26|1996-09-29|TAKE BACK RETURN|RAIL|al, final | +88815|333236|45743|4|38|48230.36|0.00|0.03|N|O|1996-07-19|1996-06-14|1996-08-15|NONE|SHIP|al platelets. final, special platelets| +88815|685231|10258|5|40|48648.00|0.10|0.01|N|O|1996-08-07|1996-06-08|1996-09-03|NONE|REG AIR|ent courts cajol| +88840|593053|43054|1|12|13752.36|0.04|0.03|N|O|1998-02-08|1998-02-01|1998-03-09|TAKE BACK RETURN|FOB| quickly regular accounts. regular, regul| +88840|432589|45098|2|23|34995.88|0.08|0.06|N|O|1997-12-23|1998-01-21|1997-12-31|DELIVER IN PERSON|FOB|old theodolites are furiously iro| +88840|511346|23857|3|35|47506.20|0.06|0.02|N|O|1998-01-08|1998-02-04|1998-02-05|DELIVER IN PERSON|AIR|d accounts. furiously brave accounts ar| +88840|187903|12910|4|40|79636.00|0.00|0.02|N|O|1998-01-31|1998-01-10|1998-02-01|DELIVER IN PERSON|AIR|osits. special requests | +88840|71707|34209|5|43|72184.10|0.01|0.07|N|O|1998-03-04|1998-01-27|1998-03-21|COLLECT COD|REG AIR| believe carefully across the f| +88840|165205|27709|6|36|45727.20|0.00|0.00|N|O|1998-04-03|1998-01-06|1998-04-08|NONE|MAIL|slyly unusual packages use re| +88841|854182|29217|1|10|11361.40|0.02|0.00|A|F|1994-07-29|1994-08-17|1994-08-10|TAKE BACK RETURN|AIR| special packages nod across | +88841|235649|48154|2|9|14261.67|0.05|0.07|R|F|1994-09-22|1994-08-28|1994-10-12|NONE|RAIL|fix ironic deposits. | +88842|223621|48630|1|21|32436.81|0.02|0.03|N|O|1996-11-16|1996-11-03|1996-11-22|NONE|SHIP|aggle final fo| +88842|387546|37547|2|38|62074.14|0.10|0.03|N|O|1996-10-10|1996-11-01|1996-11-05|NONE|SHIP|ix along the carefully even pinto beans.| +88842|472150|47169|3|27|30297.51|0.00|0.00|N|O|1996-11-20|1996-12-01|1996-11-29|TAKE BACK RETURN|TRUCK|nag above the bold deposits. packages abo| +88843|688974|38975|1|29|56925.26|0.00|0.04|N|O|1997-07-01|1997-05-26|1997-07-19|TAKE BACK RETURN|FOB|nding accounts sleep furiously enticingly| +88843|581587|19121|2|46|76753.76|0.03|0.07|N|O|1997-05-28|1997-07-01|1997-06-20|DELIVER IN PERSON|RAIL|l excuses after the pendi| +88843|726755|14298|3|10|17817.20|0.06|0.08|N|O|1997-06-25|1997-06-17|1997-07-04|NONE|TRUCK|packages. carefully bold requests wake qui| +88843|565190|15191|4|25|31379.25|0.01|0.00|N|O|1997-06-11|1997-06-10|1997-06-28|TAKE BACK RETURN|TRUCK|theodolites. slyly regular foxes use c| +88843|135437|35438|5|1|1472.43|0.06|0.08|N|O|1997-07-07|1997-07-05|1997-07-15|NONE|RAIL|e furiously. ideas sleep furio| +88843|280654|30655|6|20|32692.80|0.09|0.00|N|O|1997-07-29|1997-06-15|1997-08-19|COLLECT COD|TRUCK|wind sometimes regular| +88843|938447|966|7|29|43076.60|0.00|0.03|N|O|1997-05-14|1997-06-20|1997-06-07|DELIVER IN PERSON|AIR|telets snooze furiously abov| +88844|462810|12811|1|11|19500.69|0.01|0.01|N|O|1996-10-14|1996-11-06|1996-11-07|TAKE BACK RETURN|SHIP|efully above the blit| +88844|440418|40419|2|9|12225.51|0.00|0.07|N|O|1996-12-27|1996-12-23|1996-12-31|TAKE BACK RETURN|AIR|al accounts. furiously ironic ins| +88845|43897|18898|1|8|14727.12|0.03|0.03|R|F|1993-01-25|1992-11-18|1993-02-19|NONE|REG AIR|ld packages ar| +88845|764924|14925|2|3|5966.67|0.09|0.04|A|F|1992-12-02|1992-11-18|1992-12-31|NONE|AIR|al accounts. blithely regular accounts | +88845|61341|23843|3|11|14325.74|0.00|0.08|R|F|1992-11-06|1992-12-11|1992-11-27|TAKE BACK RETURN|RAIL|ending theodolites. furiously | +88845|952229|39787|4|9|11530.62|0.04|0.08|R|F|1993-01-30|1993-01-07|1993-02-04|TAKE BACK RETURN|AIR|s. express packages at the blithely final| +88845|97271|9773|5|16|20292.32|0.09|0.00|A|F|1993-02-02|1992-12-07|1993-02-07|NONE|MAIL|gular requ| +88845|817083|42116|6|34|34001.36|0.02|0.01|A|F|1992-11-02|1992-12-02|1992-11-20|COLLECT COD|RAIL|onic accounts unwin| +88846|231150|31151|1|14|15135.96|0.06|0.00|R|F|1993-01-10|1993-02-06|1993-01-27|DELIVER IN PERSON|RAIL|oggedly after the qu| +88847|508|38009|1|13|18310.50|0.02|0.08|N|O|1996-02-19|1996-02-16|1996-02-28|DELIVER IN PERSON|AIR|carefully. pin| +88847|534547|22078|2|33|52190.16|0.02|0.07|N|O|1996-01-20|1996-01-29|1996-02-04|NONE|REG AIR|usly ironic asymptotes boost blithely blith| +88847|116442|28945|3|16|23335.04|0.04|0.02|N|O|1996-01-29|1996-01-08|1996-01-30|DELIVER IN PERSON|FOB|ular foxes integrate. blithely thi| +88847|25380|381|4|17|22191.46|0.09|0.04|N|O|1996-03-16|1996-01-18|1996-04-01|TAKE BACK RETURN|REG AIR|lly alongside of the blithely bold instr| +88847|547761|10272|5|26|47027.24|0.10|0.07|N|O|1996-01-12|1996-01-16|1996-01-19|COLLECT COD|MAIL|posits use even, bold deposits. quickly| +88847|213657|38666|6|7|10994.48|0.05|0.03|N|O|1996-03-15|1996-02-10|1996-04-14|NONE|SHIP| instructions detect furiously fin| +88872|495358|45359|1|4|5413.32|0.00|0.08|N|O|1995-10-26|1995-09-23|1995-11-04|DELIVER IN PERSON|REG AIR|lphins cajole daringly about th| +88873|402521|40046|1|32|45552.00|0.05|0.04|A|F|1995-02-28|1995-03-24|1995-03-18|DELIVER IN PERSON|TRUCK|ly unusual p| +88873|164554|27058|2|47|76071.85|0.10|0.04|A|F|1995-03-23|1995-02-14|1995-04-02|DELIVER IN PERSON|MAIL|ously ironic pinto beans. final excuses bo| +88873|645030|45031|3|36|35100.00|0.01|0.08|A|F|1995-05-04|1995-03-31|1995-05-11|DELIVER IN PERSON|FOB| tithes na| +88874|610343|35368|1|27|33839.37|0.04|0.08|N|O|1998-06-12|1998-07-10|1998-06-18|TAKE BACK RETURN|SHIP|kly special | +88874|28012|3013|2|18|16920.18|0.08|0.00|N|O|1998-07-25|1998-05-26|1998-07-29|NONE|FOB|. instructions are. slyly ex| +88875|473522|48541|1|40|59820.00|0.08|0.05|R|F|1993-10-16|1993-09-26|1993-10-28|DELIVER IN PERSON|MAIL|ng the express instru| +88875|474655|49674|2|4|6518.52|0.09|0.02|A|F|1993-11-10|1993-11-01|1993-11-23|DELIVER IN PERSON|SHIP|ronic packages haggl| +88875|526574|14105|3|30|48016.50|0.08|0.06|R|F|1993-09-24|1993-11-04|1993-10-22|COLLECT COD|REG AIR|de of the multipliers sle| +88875|121158|46163|4|37|43628.55|0.09|0.06|R|F|1993-11-26|1993-10-03|1993-12-05|COLLECT COD|SHIP|efully even excu| +88876|989994|15033|1|6|12503.70|0.08|0.06|A|F|1993-10-01|1993-10-02|1993-10-24|COLLECT COD|SHIP|in pinto beans boost carefully about t| +88876|828316|3349|2|10|12442.70|0.01|0.06|R|F|1993-10-01|1993-08-19|1993-10-22|DELIVER IN PERSON|FOB|l pinto beans. furiously ironic requests ca| +88876|501342|38873|3|32|42986.24|0.00|0.03|R|F|1993-10-10|1993-09-20|1993-10-31|NONE|SHIP| furiously pending packages | +88876|45184|32685|4|48|54200.64|0.09|0.07|R|F|1993-08-11|1993-10-14|1993-08-25|DELIVER IN PERSON|SHIP|uriously theodolites! asymptotes h| +88876|394402|6910|5|25|37409.75|0.00|0.03|A|F|1993-10-08|1993-08-19|1993-11-03|TAKE BACK RETURN|REG AIR|ully enticing packages wake slyly expr| +88876|705685|30714|6|5|8453.25|0.05|0.00|A|F|1993-10-31|1993-10-04|1993-11-08|DELIVER IN PERSON|FOB|ending warhorses sleep carefully after| +88876|446203|21220|7|35|40221.30|0.01|0.07|R|F|1993-08-14|1993-10-14|1993-09-04|NONE|SHIP|lthy dolphin| +88877|331413|6426|1|25|36110.00|0.04|0.02|N|O|1997-11-21|1997-11-06|1997-11-26|DELIVER IN PERSON|TRUCK|ar ideas. carefully express packages| +88877|49801|49802|2|9|15757.20|0.03|0.05|N|O|1997-09-30|1997-11-29|1997-10-01|COLLECT COD|MAIL|s haggle carefully| +88877|991069|41070|3|10|11600.20|0.02|0.08|N|O|1998-01-02|1997-11-30|1998-01-14|DELIVER IN PERSON|SHIP| blithely acros| +88877|884509|22061|4|38|56751.48|0.03|0.03|N|O|1997-10-23|1997-10-20|1997-11-13|DELIVER IN PERSON|AIR|s. pending, special th| +88877|937754|12791|5|19|34042.49|0.03|0.03|N|O|1997-11-29|1997-11-02|1997-12-25|TAKE BACK RETURN|TRUCK|e of the express instructio| +88877|817204|29721|6|47|52694.52|0.03|0.03|N|O|1997-10-20|1997-11-28|1997-11-06|COLLECT COD|REG AIR|ideas. car| +88877|737812|12841|7|28|51793.84|0.09|0.03|N|O|1997-11-24|1997-10-28|1997-12-03|NONE|AIR|snooze according to the slyl| +88878|400817|818|1|47|80736.13|0.06|0.02|N|O|1998-06-08|1998-07-26|1998-06-29|COLLECT COD|FOB|. furiously even requests about the d| +88878|528103|40614|2|24|27145.92|0.04|0.05|N|O|1998-07-17|1998-07-30|1998-08-08|DELIVER IN PERSON|RAIL|equests around the d| +88878|824348|49381|3|9|11450.70|0.01|0.05|N|O|1998-09-10|1998-07-25|1998-09-23|NONE|REG AIR|re carefully above the| +88879|770953|20954|1|13|26310.96|0.01|0.07|N|O|1996-03-23|1996-04-23|1996-04-17|NONE|AIR|he carefully pending requests. quickly regu| +88904|158265|45775|1|11|14555.86|0.07|0.06|N|O|1995-11-08|1995-09-21|1995-12-07|NONE|FOB| blithely according to the furiously f| +88904|955877|30916|2|48|92775.84|0.09|0.03|N|O|1995-11-19|1995-10-08|1995-12-02|TAKE BACK RETURN|AIR|eans use. quickly pending attain| +88904|410166|47691|3|47|50578.58|0.01|0.04|N|O|1995-08-25|1995-09-10|1995-09-16|COLLECT COD|SHIP|ges mold slyly. pending excus| +88904|659301|9302|4|33|41588.91|0.07|0.04|N|O|1995-10-21|1995-10-30|1995-11-03|COLLECT COD|SHIP|osits. quickly e| +88905|334033|9046|1|50|53351.00|0.01|0.04|N|O|1998-05-08|1998-06-01|1998-05-09|COLLECT COD|SHIP|sly. furiously ironic packages wake| +88905|76970|39472|2|33|64250.01|0.04|0.01|N|O|1998-06-27|1998-06-06|1998-06-29|DELIVER IN PERSON|SHIP|. ironic excuses | +88905|634428|9453|3|33|44958.87|0.04|0.03|N|O|1998-07-09|1998-06-21|1998-07-26|COLLECT COD|AIR|requests sle| +88905|824069|36586|4|2|1986.04|0.00|0.03|N|O|1998-05-21|1998-06-26|1998-06-18|NONE|REG AIR|pecial pinto beans affix slyly alo| +88906|465930|28440|1|24|45501.84|0.02|0.01|N|O|1996-06-04|1996-06-08|1996-07-04|COLLECT COD|AIR|oxes detect slyly regular package| +88907|867576|17577|1|24|37044.72|0.02|0.00|R|F|1992-10-11|1992-11-21|1992-11-10|COLLECT COD|MAIL| accounts h| +88907|341720|41721|2|10|17617.10|0.10|0.00|A|F|1992-12-29|1992-11-29|1993-01-05|DELIVER IN PERSON|TRUCK|onic orbits wake eve| +88908|750204|12720|1|9|11287.53|0.03|0.07|N|O|1997-09-17|1997-08-10|1997-10-14|NONE|MAIL|sts integrate| +88908|668306|43333|2|22|28033.94|0.00|0.03|N|O|1997-09-04|1997-08-15|1997-09-09|NONE|RAIL|e dependen| +88909|571174|8708|1|29|36109.35|0.05|0.00|R|F|1992-04-28|1992-05-29|1992-05-11|NONE|MAIL|refully ironic packages. blithely pendi| +88909|714941|27456|2|35|68456.85|0.06|0.00|A|F|1992-06-01|1992-04-24|1992-06-18|COLLECT COD|REG AIR|s cajole silent, regular requests. exp| +88910|482928|45438|1|5|9554.50|0.04|0.06|A|F|1994-01-21|1993-12-03|1994-01-30|NONE|MAIL|dogged foxes| +88910|568050|43073|2|45|50311.35|0.03|0.03|A|F|1993-12-24|1994-01-18|1994-01-01|COLLECT COD|SHIP|ove the unusual deposits. f| +88910|211618|49131|3|31|47417.60|0.01|0.03|A|F|1993-11-02|1993-12-06|1993-11-21|NONE|TRUCK|the final | +88911|659721|22235|1|33|55462.77|0.01|0.08|A|F|1994-12-23|1994-12-21|1995-01-09|NONE|FOB|ions. final accounts haggle ca| +88911|922340|22341|2|8|10898.40|0.02|0.02|A|F|1995-01-20|1995-01-17|1995-02-08|TAKE BACK RETURN|TRUCK|y. theodolites | +88911|753104|15620|3|33|38183.31|0.00|0.00|A|F|1994-11-13|1994-12-31|1994-11-16|TAKE BACK RETURN|MAIL|posits. bold deposits must nag above the| +88911|404321|41846|4|36|44110.80|0.08|0.08|R|F|1995-01-09|1994-11-25|1995-01-27|TAKE BACK RETURN|AIR|ithely regular acc| +88911|408892|33909|5|2|3601.74|0.00|0.04|A|F|1994-12-05|1994-12-28|1994-12-07|DELIVER IN PERSON|AIR| cajole carefully. quickly u| +88911|246597|21606|6|39|60199.62|0.03|0.08|A|F|1994-12-24|1995-01-03|1994-12-31|NONE|MAIL|to beans cajole fu| +88911|548416|23437|7|14|20501.46|0.08|0.02|A|F|1994-11-16|1994-12-04|1994-12-10|NONE|AIR|ain carefully ab| +88936|213846|1359|1|27|47515.41|0.08|0.06|R|F|1994-05-06|1994-03-08|1994-05-31|TAKE BACK RETURN|SHIP|ding sentiments sleep b| +88936|103094|28099|2|2|2194.18|0.08|0.01|A|F|1994-04-24|1994-04-02|1994-05-22|NONE|MAIL|ven packag| +88936|688257|13284|3|6|7471.32|0.04|0.07|R|F|1994-03-28|1994-02-20|1994-04-21|DELIVER IN PERSON|MAIL|lithely slyly fina| +88936|530912|30913|4|13|25257.57|0.09|0.00|A|F|1994-05-05|1994-03-18|1994-05-23|DELIVER IN PERSON|FOB|ecial deposits. carefully ev| +88937|328547|3560|1|37|58294.61|0.06|0.00|N|O|1996-01-13|1996-03-11|1996-02-06|TAKE BACK RETURN|SHIP|y final platelets wak| +88937|874420|36938|2|47|65535.86|0.01|0.01|N|O|1996-02-10|1996-01-30|1996-03-07|COLLECT COD|AIR|ckly carefully reg| +88937|373860|23861|3|3|5801.55|0.05|0.04|N|O|1996-02-01|1996-03-15|1996-02-29|NONE|SHIP|l, furious pinto beans shall have to wake| +88937|456026|18536|4|2|1964.00|0.02|0.00|N|O|1996-01-01|1996-01-29|1996-01-19|TAKE BACK RETURN|RAIL|detect ruthless| +88937|419046|6571|5|2|1930.04|0.09|0.07|N|O|1996-03-30|1996-02-16|1996-04-29|TAKE BACK RETURN|SHIP|ess dolphins. somas cajole blith| +88937|899201|36753|6|17|20402.72|0.06|0.08|N|O|1996-04-21|1996-02-25|1996-05-16|NONE|MAIL|d are blithely regular accounts.| +88937|868227|5779|7|41|49002.38|0.08|0.06|N|O|1996-02-12|1996-02-11|1996-03-08|COLLECT COD|REG AIR|. blithely bold asymptotes caj| +88938|277772|2783|1|33|57742.08|0.09|0.06|A|F|1994-02-15|1994-03-24|1994-03-06|DELIVER IN PERSON|TRUCK|x about the blithely final dep| +88939|418587|31096|1|16|24088.96|0.03|0.00|A|F|1993-04-15|1993-04-20|1993-04-20|COLLECT COD|TRUCK|ts solve fluffily final accounts.| +88939|177721|27722|2|24|43169.28|0.03|0.06|A|F|1993-05-17|1993-04-18|1993-05-24|DELIVER IN PERSON|AIR| beans haggle. quickly special fox| +88939|949520|12039|3|2|3138.96|0.01|0.06|A|F|1993-02-10|1993-04-03|1993-02-28|NONE|MAIL| slyly express pinto beans. unusual, final| +88939|578105|15639|4|30|35492.40|0.07|0.04|R|F|1993-06-05|1993-04-25|1993-07-04|DELIVER IN PERSON|MAIL|ending courts haggle express, regul| +88939|204406|29415|5|41|53725.99|0.03|0.03|R|F|1993-04-19|1993-04-09|1993-05-05|COLLECT COD|FOB|y unusual a| +88939|442099|17116|6|43|44766.01|0.09|0.01|A|F|1993-05-03|1993-04-27|1993-05-07|TAKE BACK RETURN|TRUCK|regular instructions! blithely ironic ac| +88940|475285|37795|1|42|52930.92|0.02|0.03|R|F|1994-12-01|1994-11-26|1994-12-16|DELIVER IN PERSON|SHIP|special acc| +88940|102715|2716|2|25|42942.75|0.08|0.06|A|F|1994-11-29|1994-11-21|1994-12-16|DELIVER IN PERSON|MAIL|of the carefully final excuses haggle acc| +88941|429304|16829|1|43|53031.04|0.08|0.02|R|F|1992-07-28|1992-06-23|1992-08-12|TAKE BACK RETURN|TRUCK|final, pending deposi| +88941|299888|37404|2|37|69851.19|0.04|0.02|A|F|1992-07-10|1992-06-22|1992-07-15|TAKE BACK RETURN|MAIL|se finally silent deposits| +88941|205322|30331|3|35|42955.85|0.04|0.06|R|F|1992-07-28|1992-08-14|1992-08-24|COLLECT COD|RAIL|lyly accordi| +88941|835253|35254|4|18|21387.78|0.01|0.00|R|F|1992-07-23|1992-06-28|1992-08-09|DELIVER IN PERSON|SHIP|ests cajole slyly foxes: brave packages | +88941|87595|37596|5|1|1582.59|0.04|0.03|A|F|1992-06-07|1992-07-10|1992-06-27|NONE|MAIL|riously even | +88942|967646|17647|1|40|68544.00|0.00|0.07|R|F|1993-05-27|1993-05-09|1993-06-17|DELIVER IN PERSON|REG AIR|uests. furiously final| +88942|211201|48714|2|48|53385.12|0.01|0.08|R|F|1993-03-12|1993-04-02|1993-03-30|NONE|SHIP|eodolites wake slyly quickly final ideas. | +88942|651672|26699|3|16|25978.24|0.04|0.08|A|F|1993-04-05|1993-05-11|1993-04-27|DELIVER IN PERSON|TRUCK|taphs wake furiously. furiously bol| +88942|644478|44479|4|45|64009.80|0.00|0.08|R|F|1993-04-26|1993-04-11|1993-05-03|COLLECT COD|REG AIR| ironic deposits detect quickl| +88943|947229|34784|1|45|57428.10|0.09|0.07|N|O|1996-07-06|1996-09-10|1996-07-27|DELIVER IN PERSON|AIR| accounts. even platelets promis| +88943|68878|6382|2|42|77568.54|0.09|0.03|N|O|1996-08-12|1996-08-09|1996-08-16|TAKE BACK RETURN|AIR|carefully pending fo| +88943|620888|33401|3|27|48838.95|0.05|0.02|N|O|1996-07-16|1996-08-10|1996-08-02|TAKE BACK RETURN|MAIL| even request| +88943|256926|6927|4|49|92262.59|0.01|0.07|N|O|1996-08-10|1996-08-12|1996-08-22|DELIVER IN PERSON|MAIL| furiously according to the ironic th| +88943|149644|37151|5|48|81294.72|0.04|0.01|N|O|1996-10-23|1996-08-14|1996-11-19|NONE|AIR|uriously. caref| +88943|53029|40533|6|3|2946.06|0.01|0.01|N|O|1996-07-17|1996-07-30|1996-08-01|NONE|MAIL| final, special req| +88943|250183|37699|7|50|56658.50|0.03|0.04|N|O|1996-10-13|1996-09-12|1996-10-16|NONE|TRUCK|. furiously re| +88968|822878|47911|1|18|32414.94|0.00|0.05|N|O|1998-07-07|1998-06-09|1998-07-14|COLLECT COD|FOB|dolites. slyly ironic | +88968|96181|33685|2|30|35315.40|0.02|0.08|N|O|1998-08-04|1998-07-10|1998-08-09|TAKE BACK RETURN|REG AIR|o the dolphins detect blithely slyly| +88969|2365|14866|1|12|15208.32|0.08|0.07|N|O|1996-04-01|1996-04-24|1996-04-30|TAKE BACK RETURN|TRUCK|quickly ironic excuses n| +88969|746945|46946|2|45|89635.95|0.04|0.08|N|O|1996-05-05|1996-04-29|1996-05-09|TAKE BACK RETURN|FOB|lyly according to the carefully even req| +88969|890100|40101|3|18|19621.08|0.07|0.04|N|O|1996-02-19|1996-03-30|1996-02-21|TAKE BACK RETURN|FOB|t about the ironic requests. | +88969|900063|37618|4|34|36142.68|0.06|0.01|N|O|1996-02-29|1996-03-22|1996-03-28|DELIVER IN PERSON|TRUCK|hes kindle carefully. expres| +88970|458595|46123|1|41|63696.37|0.10|0.00|R|F|1992-04-26|1992-07-02|1992-04-27|COLLECT COD|AIR|lar excuses kindle | +88970|599035|36569|2|17|19278.17|0.10|0.08|A|F|1992-06-02|1992-07-01|1992-06-03|NONE|SHIP|de of the unusual requests. fu| +88971|678520|3547|1|47|70429.03|0.06|0.01|R|F|1993-06-11|1993-04-29|1993-07-10|COLLECT COD|TRUCK|the stealthy instructions boost slyly a| +88971|885506|35507|2|29|43252.34|0.06|0.04|A|F|1993-03-23|1993-03-26|1993-04-18|NONE|FOB|are fluffily.| +88971|693971|31511|3|39|76632.66|0.04|0.05|R|F|1993-05-02|1993-03-26|1993-05-13|COLLECT COD|REG AIR| waters dazzle bl| +88971|563929|13930|4|45|89680.50|0.05|0.00|R|F|1993-04-03|1993-03-15|1993-04-16|TAKE BACK RETURN|REG AIR|symptotes affix quickly. t| +88971|954605|42163|5|4|6638.24|0.09|0.04|R|F|1993-04-24|1993-05-07|1993-05-23|TAKE BACK RETURN|TRUCK|final platelets boost carefully abou| +88971|40015|2516|6|7|6685.07|0.03|0.07|R|F|1993-03-03|1993-03-15|1993-03-21|COLLECT COD|RAIL|ithely express instruction| +88972|347480|47481|1|35|53461.45|0.03|0.05|A|F|1994-05-23|1994-05-22|1994-05-26|TAKE BACK RETURN|SHIP|equests according to | +88972|89586|14589|2|17|26784.86|0.05|0.08|A|F|1994-07-22|1994-06-10|1994-08-12|COLLECT COD|REG AIR|kages haggle furi| +88972|655577|30604|3|42|64366.68|0.08|0.08|R|F|1994-07-16|1994-06-28|1994-07-27|DELIVER IN PERSON|REG AIR|ffily ironic requests. car| +88972|269070|19071|4|47|48835.82|0.04|0.00|A|F|1994-05-22|1994-05-27|1994-05-23|NONE|RAIL|ckages unwind fluffily quickly| +88972|246969|46970|5|14|26823.30|0.03|0.04|R|F|1994-07-02|1994-05-28|1994-07-17|NONE|SHIP|onic deposits. slyly e| +88972|801348|13865|6|44|54969.20|0.07|0.07|A|F|1994-06-07|1994-06-29|1994-06-17|TAKE BACK RETURN|RAIL|ter the carefully fina| +88972|250448|449|7|44|61530.92|0.03|0.02|A|F|1994-06-16|1994-06-22|1994-06-27|DELIVER IN PERSON|AIR|ly. express requests nag q| +88973|264499|14500|1|32|46831.36|0.10|0.01|R|F|1992-09-25|1992-10-18|1992-10-05|NONE|TRUCK|refully ironic deposits. finally | +88974|306483|44002|1|32|47663.04|0.04|0.02|A|F|1993-06-17|1993-07-17|1993-06-22|COLLECT COD|SHIP|onic instructions wake slyly | +88974|43185|18186|2|30|33845.40|0.01|0.03|R|F|1993-07-09|1993-07-28|1993-07-28|DELIVER IN PERSON|SHIP|besides the accounts; slyly final deposits | +88974|802404|39953|3|32|41803.52|0.03|0.04|A|F|1993-08-08|1993-07-20|1993-08-26|COLLECT COD|SHIP|. furiously regular pinto beans believe.| +88974|999080|24119|4|42|49519.68|0.01|0.06|R|F|1993-08-02|1993-08-20|1993-08-20|DELIVER IN PERSON|SHIP|integrate along the bold| +88974|528912|28913|5|18|34936.02|0.06|0.04|R|F|1993-07-23|1993-07-02|1993-07-28|NONE|AIR| accounts sleep above the b| +88974|415777|28286|6|6|10156.50|0.02|0.02|R|F|1993-07-20|1993-07-12|1993-08-11|COLLECT COD|TRUCK|fully regular accounts. special frays inte| +88974|955139|17659|7|6|7164.54|0.07|0.06|R|F|1993-09-16|1993-07-19|1993-09-30|NONE|REG AIR|nto beans wake blithely among the express| +88975|5716|5717|1|16|25947.36|0.08|0.03|N|O|1998-04-06|1998-02-18|1998-04-09|TAKE BACK RETURN|MAIL|uses kindle furiously. carefu| +88975|52756|40260|2|5|8543.75|0.02|0.08|N|O|1998-03-06|1998-03-19|1998-04-03|DELIVER IN PERSON|AIR| detect carefully. quickly even pa| +88975|670059|32573|3|20|20580.40|0.00|0.02|N|O|1998-03-07|1998-03-18|1998-03-10|DELIVER IN PERSON|SHIP|ly express asymp| +88975|673114|23115|4|29|31525.32|0.00|0.01|N|O|1998-02-06|1998-02-22|1998-02-26|NONE|REG AIR|s. carefully ironic accounts use clo| +88975|16342|41343|5|36|45300.24|0.08|0.04|N|O|1998-04-12|1998-03-06|1998-04-28|NONE|TRUCK|about the furiously ironic deposit| +88975|657907|45447|6|45|83919.15|0.02|0.08|N|O|1998-04-17|1998-03-14|1998-05-13|NONE|RAIL|lyly special foxes. boldly | +89000|928239|40758|1|17|21542.23|0.00|0.07|N|O|1996-08-21|1996-07-01|1996-09-13|TAKE BACK RETURN|REG AIR|ound the carefully regular i| +89000|909860|9861|2|30|56094.60|0.02|0.03|N|O|1996-05-08|1996-06-20|1996-05-17|NONE|REG AIR|c, unusual packages. regular instruction| +89001|302480|2481|1|41|60781.27|0.03|0.01|N|F|1995-05-29|1995-07-03|1995-06-24|COLLECT COD|AIR|unts sleep blithely quickly special accoun| +89001|775745|38261|2|4|7282.84|0.05|0.00|N|O|1995-08-10|1995-07-14|1995-09-01|DELIVER IN PERSON|FOB|ans. furiously ironic packages cajole | +89001|933296|20851|3|48|63804.00|0.08|0.07|R|F|1995-05-19|1995-06-27|1995-06-03|DELIVER IN PERSON|SHIP|y ironic multipliers| +89001|900552|25589|4|30|46575.30|0.09|0.05|N|O|1995-08-18|1995-06-14|1995-09-16|DELIVER IN PERSON|TRUCK|daring sheaves.| +89001|569933|7467|5|42|84122.22|0.06|0.02|N|O|1995-06-30|1995-08-05|1995-07-02|COLLECT COD|SHIP|he carefull| +89001|862168|24686|6|9|10171.08|0.10|0.03|N|F|1995-06-03|1995-07-21|1995-07-01|COLLECT COD|AIR|thely ironic ex| +89001|441587|16604|7|24|36685.44|0.05|0.00|N|O|1995-09-04|1995-07-06|1995-09-12|TAKE BACK RETURN|REG AIR|ending waters. blithely regular ins| +89002|752512|2513|1|44|68837.12|0.04|0.05|N|O|1996-03-21|1996-03-13|1996-04-13|NONE|TRUCK|le. express tithes integrate furiously abov| +89002|461756|11757|2|5|8588.65|0.00|0.00|N|O|1996-04-17|1996-03-31|1996-05-14|COLLECT COD|SHIP|jole fluffily carefully special asymptotes| +89002|723600|23601|3|26|42212.82|0.07|0.06|N|O|1996-04-12|1996-03-30|1996-04-24|NONE|MAIL|lithely atop the foxes. fluffily final | +89002|534518|34519|4|3|4657.47|0.01|0.05|N|O|1996-01-21|1996-02-25|1996-01-24|TAKE BACK RETURN|REG AIR|lar instructions wake slyly. express, ironi| +89003|537131|49642|1|3|3504.33|0.00|0.02|N|O|1996-01-26|1996-02-18|1996-01-27|TAKE BACK RETURN|AIR|arefully pending accounts cajole furiou| +89003|546655|46656|2|38|64661.94|0.09|0.07|N|O|1996-03-22|1996-04-11|1996-04-17|NONE|AIR|ide of the even | +89004|206651|31660|1|43|66978.52|0.04|0.08|R|F|1994-03-11|1994-01-06|1994-04-08|COLLECT COD|RAIL|hely furiously dogge| +89005|273446|48457|1|40|56777.20|0.03|0.03|N|O|1995-06-29|1995-05-30|1995-07-04|COLLECT COD|FOB| packages: blithely regular | +89005|805605|30638|2|13|19637.28|0.08|0.08|N|F|1995-05-24|1995-04-12|1995-06-20|NONE|RAIL|tipliers cajole blithely be| +89005|795304|45305|3|28|39179.56|0.04|0.04|A|F|1995-03-27|1995-04-18|1995-03-29|TAKE BACK RETURN|FOB|ake slyly express pinto| +89006|877249|14801|1|18|22071.60|0.06|0.01|R|F|1994-10-19|1994-12-10|1994-10-25|DELIVER IN PERSON|TRUCK|ial patterns.| +89006|907157|44712|2|47|54713.17|0.10|0.08|A|F|1995-01-03|1994-12-08|1995-01-24|COLLECT COD|RAIL|arefully special re| +89007|42948|42949|1|4|7563.76|0.07|0.00|A|F|1992-11-23|1992-12-26|1992-12-06|DELIVER IN PERSON|FOB| packages detect slyly speci| +89007|813601|1150|2|23|34834.88|0.03|0.07|R|F|1993-01-20|1993-02-03|1993-01-26|TAKE BACK RETURN|SHIP|uriously fluffily unusual packages. quick| +89007|186899|49403|3|22|43689.58|0.08|0.05|R|F|1992-12-06|1993-01-26|1993-01-01|NONE|SHIP| ironic theodolites wake against the| +89007|209191|21696|4|8|8801.44|0.04|0.03|A|F|1993-02-19|1993-01-13|1993-02-22|COLLECT COD|MAIL|onic requests det| +89007|872241|47276|5|42|50954.40|0.02|0.01|R|F|1992-12-21|1993-02-08|1993-01-06|TAKE BACK RETURN|AIR|pending, special deposits are. pending, iro| +89007|739385|26928|6|11|15667.85|0.02|0.01|A|F|1992-12-09|1993-01-02|1993-01-07|TAKE BACK RETURN|FOB|al theodolites promise after the quickly re| +89007|828893|28894|7|41|74695.85|0.01|0.00|R|F|1992-12-24|1993-02-05|1993-01-15|COLLECT COD|REG AIR|cuses. carefully dogge| +89032|199567|24574|1|37|61662.72|0.00|0.05|A|F|1993-12-13|1993-12-08|1993-12-31|COLLECT COD|FOB|ole ironic deposits. closely | +89032|120730|20731|2|4|7002.92|0.08|0.05|A|F|1993-10-19|1993-12-04|1993-10-27|NONE|AIR|ly about the ironic accounts? u| +89032|108322|33327|3|8|10642.56|0.07|0.00|R|F|1993-10-28|1993-12-15|1993-11-07|DELIVER IN PERSON|AIR|bove the quick accounts. blithely unusual i| +89032|565611|40634|4|22|36884.98|0.04|0.06|R|F|1993-10-26|1993-11-30|1993-11-10|COLLECT COD|FOB|the slyly s| +89032|222089|47098|5|34|34376.38|0.09|0.01|A|F|1993-10-15|1993-11-27|1993-10-20|TAKE BACK RETURN|MAIL| mold fluffily unusual dolphins. pe| +89032|643213|5726|6|32|36997.76|0.07|0.01|R|F|1993-10-18|1993-11-10|1993-10-20|COLLECT COD|REG AIR|ideas above the| +89033|818865|6414|1|1|1783.82|0.09|0.07|R|F|1992-11-09|1992-11-10|1992-11-13|COLLECT COD|TRUCK| slyly even requests slee| +89033|649619|24644|2|9|14117.22|0.05|0.03|A|F|1992-10-08|1992-11-12|1992-10-27|DELIVER IN PERSON|REG AIR| the furiously express as| +89034|39031|1532|1|44|42681.32|0.07|0.08|R|F|1992-09-23|1992-11-12|1992-09-24|TAKE BACK RETURN|REG AIR|hely across the sometimes pending dolp| +89034|979169|4208|2|34|42436.08|0.06|0.00|A|F|1992-11-02|1992-10-22|1992-11-15|COLLECT COD|TRUCK| the quickly ironic requests nag carefully | +89034|886800|49318|3|1|1786.76|0.07|0.06|A|F|1992-11-12|1992-11-05|1992-12-01|NONE|MAIL|haggle furiously final| +89034|445157|32682|4|45|49595.85|0.07|0.05|R|F|1992-11-18|1992-10-26|1992-12-06|COLLECT COD|FOB|yly final deposits. final| +89035|815593|3142|1|37|55816.35|0.02|0.07|N|O|1995-08-06|1995-07-05|1995-08-09|TAKE BACK RETURN|FOB| requests serve sly| +89035|659388|9389|2|44|59283.40|0.04|0.07|N|O|1995-07-12|1995-08-04|1995-08-10|COLLECT COD|SHIP|e slyly! c| +89035|333772|33773|3|3|5417.28|0.08|0.02|N|O|1995-09-06|1995-08-01|1995-10-02|DELIVER IN PERSON|RAIL|inal pearls haggle furiously pendin| +89035|696262|33802|4|1|1258.23|0.07|0.01|N|O|1995-07-20|1995-08-08|1995-08-07|TAKE BACK RETURN|REG AIR|tructions may affix carefully| +89035|67506|17507|5|15|22102.50|0.03|0.01|N|O|1995-06-30|1995-07-13|1995-07-06|NONE|AIR|packages. slyly pending pea| +89035|567840|5374|6|1|1907.82|0.04|0.05|N|O|1995-08-27|1995-07-15|1995-09-23|COLLECT COD|TRUCK|carefully final de| +89035|678145|28146|7|38|42678.18|0.05|0.01|R|F|1995-06-02|1995-08-09|1995-06-10|NONE|AIR|sly regular theodolites haggl| +89036|581194|6217|1|23|29328.91|0.01|0.07|A|F|1993-04-25|1993-03-11|1993-05-20|COLLECT COD|FOB|haggle fur| +89037|625124|12661|1|25|26227.25|0.07|0.03|R|F|1995-01-22|1995-03-26|1995-02-11|COLLECT COD|MAIL|. express, bold | +89037|456154|31173|2|27|29973.51|0.00|0.03|R|F|1995-03-10|1995-04-03|1995-03-27|COLLECT COD|FOB|its mold fluffily furi| +89038|898524|11042|1|30|45674.40|0.07|0.08|R|F|1992-11-18|1993-01-28|1992-12-14|COLLECT COD|MAIL|r tithes. carefully final deposits sl| +89038|485477|47987|2|5|7312.25|0.02|0.07|R|F|1993-02-13|1992-12-16|1993-03-03|NONE|SHIP|sly unusual excuses. regular, spec| +89038|403319|3320|3|26|31779.54|0.00|0.06|R|F|1992-12-16|1993-01-25|1992-12-30|TAKE BACK RETURN|SHIP|yly special courts boost blit| +89038|570608|20609|4|37|62107.46|0.07|0.07|A|F|1993-01-20|1992-12-16|1993-02-10|COLLECT COD|MAIL|regular requests. deposits sleep carefu| +89038|194625|19632|5|22|37831.64|0.03|0.04|A|F|1993-02-02|1993-02-01|1993-02-07|TAKE BACK RETURN|RAIL|ter the blithely spec| +89039|514379|39400|1|29|40407.15|0.09|0.07|N|O|1996-05-07|1996-05-29|1996-06-02|COLLECT COD|REG AIR| even instructions haggle furiously. | +89039|159097|21601|2|14|16185.26|0.08|0.07|N|O|1996-04-23|1996-04-21|1996-05-02|NONE|MAIL|ly about the regular packages. cou| +89039|932974|20529|3|45|90311.85|0.01|0.08|N|O|1996-05-19|1996-05-28|1996-06-17|DELIVER IN PERSON|SHIP|counts mold slyly against the blithely fin| +89039|482936|7955|4|22|42216.02|0.10|0.08|N|O|1996-05-22|1996-05-12|1996-06-13|DELIVER IN PERSON|SHIP|n packages subl| +89039|692998|5512|5|30|59728.80|0.04|0.02|N|O|1996-07-06|1996-05-01|1996-07-31|DELIVER IN PERSON|SHIP| requests-- bold p| +89039|212406|37415|6|44|58009.16|0.06|0.00|N|O|1996-03-28|1996-05-22|1996-04-21|COLLECT COD|MAIL|tes cajole furiously. carefully c| +89039|895367|7885|7|35|47681.20|0.04|0.03|N|O|1996-04-09|1996-04-27|1996-04-20|NONE|REG AIR|boost slyly. theodolites sl| +89064|418827|6352|1|6|10474.80|0.02|0.08|N|O|1997-12-14|1997-10-28|1997-12-23|TAKE BACK RETURN|MAIL| final packages sleep fu| +89064|220041|32546|2|20|19220.60|0.09|0.01|N|O|1997-12-29|1997-10-16|1998-01-10|DELIVER IN PERSON|AIR|y even foxes. carefully e| +89064|217096|17097|3|32|32418.56|0.05|0.01|N|O|1997-09-29|1997-11-07|1997-10-05|DELIVER IN PERSON|REG AIR|yly among the final, ironic asy| +89064|727019|39534|4|41|42885.18|0.08|0.01|N|O|1997-12-24|1997-11-13|1998-01-05|TAKE BACK RETURN|MAIL|ular ideas use furi| +89064|997544|10064|5|20|32830.00|0.05|0.00|N|O|1997-11-13|1997-10-29|1997-11-23|NONE|AIR|le slyly above the i| +89064|720223|7766|6|41|50970.79|0.00|0.04|N|O|1997-12-15|1997-11-17|1997-12-31|COLLECT COD|SHIP|s. carefully regular reques| +89065|19560|44561|1|49|72498.44|0.02|0.00|N|O|1998-08-15|1998-08-04|1998-09-11|COLLECT COD|RAIL|nic deposits among the ironic, special ins| +89065|728977|41492|2|44|88261.36|0.07|0.02|N|O|1998-10-20|1998-09-08|1998-11-10|COLLECT COD|RAIL| according to the | +89065|910166|47721|3|24|28226.88|0.05|0.08|N|O|1998-07-31|1998-09-07|1998-08-21|NONE|REG AIR|posits boost carefully regular foxes. r| +89065|157591|45101|4|17|28026.03|0.05|0.07|N|O|1998-08-15|1998-08-06|1998-09-12|COLLECT COD|AIR|slyly above the a| +89065|618097|18098|5|2|2030.12|0.08|0.08|N|O|1998-07-21|1998-09-05|1998-08-14|COLLECT COD|REG AIR|asymptotes aff| +89065|351844|1845|6|43|81520.69|0.07|0.04|N|O|1998-09-15|1998-08-30|1998-09-30|COLLECT COD|RAIL|final, ironic requests caj| +89065|430828|30829|7|9|15829.20|0.02|0.03|N|O|1998-10-13|1998-09-17|1998-11-03|DELIVER IN PERSON|TRUCK|e. slyly regular requests af| +89066|924391|24392|1|4|5661.40|0.03|0.04|R|F|1993-09-03|1993-08-09|1993-09-27|DELIVER IN PERSON|SHIP|final ideas haggle blithely pinto beans| +89066|234388|34389|2|22|29092.14|0.08|0.06|R|F|1993-06-18|1993-08-21|1993-07-11|NONE|MAIL|ts sleep about the slyly ironic requests.| +89066|355179|30194|3|10|12341.60|0.08|0.01|A|F|1993-07-10|1993-08-13|1993-08-06|COLLECT COD|TRUCK|express pin| +89066|492129|42130|4|32|35875.20|0.08|0.04|R|F|1993-06-12|1993-08-10|1993-07-01|DELIVER IN PERSON|AIR|y among the unusual accounts. ironic the| +89066|200773|13278|5|18|30127.68|0.08|0.02|R|F|1993-07-12|1993-08-13|1993-07-20|TAKE BACK RETURN|AIR|nts. regular, ironic th| +89066|385963|23485|6|3|6146.85|0.02|0.08|A|F|1993-09-14|1993-07-14|1993-10-10|NONE|TRUCK|efully quickl| +89067|473453|35963|1|24|34234.32|0.00|0.01|N|O|1995-12-13|1995-12-24|1995-12-22|COLLECT COD|SHIP|lways even dolphin| +89067|317135|42148|2|17|19586.04|0.08|0.00|N|O|1995-11-24|1995-12-26|1995-12-10|COLLECT COD|AIR| haggle even deposits. even, final the| +89067|87708|37709|3|7|11869.90|0.01|0.00|N|O|1995-12-06|1996-01-24|1995-12-08|DELIVER IN PERSON|FOB|sleep blithel| +89067|94005|6507|4|42|41958.00|0.09|0.06|N|O|1995-11-19|1996-01-14|1995-12-04|DELIVER IN PERSON|TRUCK|ar requests cajole fu| +89068|91256|28760|1|21|26192.25|0.02|0.08|N|O|1997-03-05|1997-01-22|1997-03-10|NONE|RAIL|efully special accou| +89068|736691|24234|2|38|65651.08|0.08|0.08|N|O|1996-12-26|1997-02-11|1997-01-23|COLLECT COD|MAIL|t deposits wake quietly unus| +89068|562919|12920|3|8|15855.12|0.04|0.03|N|O|1997-02-05|1997-02-09|1997-03-06|DELIVER IN PERSON|MAIL| even requests. pending, express dep| +89068|965874|40913|4|1|1939.83|0.04|0.03|N|O|1997-01-04|1997-02-25|1997-01-25|TAKE BACK RETURN|SHIP|riously even, regular depo| +89068|437141|24666|5|23|24796.76|0.07|0.08|N|O|1997-02-07|1997-03-21|1997-02-14|TAKE BACK RETURN|SHIP|e furiously ironic platelets. f| +89068|24257|24258|6|10|11812.50|0.04|0.06|N|O|1997-02-01|1997-01-21|1997-02-27|NONE|SHIP|. blithely final depos| +89068|671513|46540|7|37|54925.76|0.02|0.08|N|O|1997-02-18|1997-03-20|1997-03-04|DELIVER IN PERSON|FOB|dolites wak| +89069|116266|41271|1|43|55137.18|0.07|0.08|N|O|1995-11-30|1995-10-21|1995-12-16|COLLECT COD|TRUCK|he furiously ironic ide| +89069|73978|23979|2|13|25375.61|0.08|0.00|N|O|1995-11-23|1995-11-27|1995-12-20|TAKE BACK RETURN|RAIL|grate quickly quickly pending | +89069|332475|19994|3|49|73865.54|0.05|0.02|N|O|1995-09-28|1995-11-08|1995-10-23|COLLECT COD|FOB|osits? blithely unusual ideas above th| +89069|890604|28156|4|24|38269.44|0.08|0.05|N|O|1995-10-14|1995-10-29|1995-10-30|TAKE BACK RETURN|RAIL|lites cajol| +89070|225195|12708|1|12|13442.16|0.09|0.00|N|O|1996-10-31|1996-11-26|1996-11-03|DELIVER IN PERSON|MAIL|efully bold accounts. busily even ideas eng| +89070|843945|31494|2|46|86889.40|0.06|0.02|N|O|1996-12-23|1996-11-28|1997-01-16|TAKE BACK RETURN|TRUCK|al pearls. furious| +89070|178869|16379|3|27|52592.22|0.09|0.03|N|O|1996-11-13|1996-11-14|1996-11-22|NONE|TRUCK|ross the bold, even platelets.| +89071|156429|6430|1|20|29708.40|0.00|0.07|R|F|1994-01-01|1994-02-18|1994-01-24|DELIVER IN PERSON|REG AIR| furiously ironic accounts. slyly unu| +89071|90054|15057|2|9|9396.45|0.01|0.01|A|F|1994-02-24|1994-03-06|1994-03-16|COLLECT COD|FOB|e furiously abov| +89071|524381|11912|3|3|4216.08|0.05|0.06|R|F|1994-01-12|1994-01-21|1994-01-30|COLLECT COD|AIR|oxes. even, bold requests ca| +89071|255100|30111|4|40|42203.60|0.07|0.02|R|F|1994-03-31|1994-02-17|1994-04-13|NONE|TRUCK|ndencies sl| +89071|461221|11222|5|34|40194.80|0.08|0.04|A|F|1994-01-26|1994-02-03|1994-01-31|COLLECT COD|RAIL|ages. ideas after the quic| +89071|734287|21830|6|26|34352.50|0.09|0.08|A|F|1994-03-25|1994-01-17|1994-04-07|TAKE BACK RETURN|SHIP|s. express| +89096|647535|22560|1|20|29650.00|0.03|0.00|A|F|1994-05-30|1994-04-20|1994-06-09|TAKE BACK RETURN|TRUCK|ronic pinto beans cajole carefully| +89097|146701|9204|1|27|47187.90|0.08|0.01|N|O|1996-07-12|1996-06-04|1996-07-31|DELIVER IN PERSON|RAIL|eposits. slyly regular asymptotes | +89097|603696|3697|2|41|65586.06|0.01|0.07|N|O|1996-05-04|1996-07-16|1996-05-07|COLLECT COD|AIR|s snooze blithel| +89098|661846|36873|1|20|36156.20|0.06|0.01|A|F|1995-01-29|1995-02-07|1995-02-23|DELIVER IN PERSON|FOB|ide of the final, r| +89098|636168|36169|2|26|28707.38|0.05|0.04|A|F|1995-04-05|1995-03-02|1995-04-07|COLLECT COD|SHIP|along the fl| +89098|64066|39069|3|43|44292.58|0.05|0.02|R|F|1995-04-15|1995-02-11|1995-04-28|DELIVER IN PERSON|AIR|ld asymptotes wake blithely un| +89098|747328|47329|4|10|13752.90|0.10|0.02|R|F|1995-04-16|1995-02-18|1995-04-22|NONE|AIR|y unusual excuses. theodoli| +89098|337745|25264|5|43|76657.39|0.05|0.05|R|F|1995-02-09|1995-03-14|1995-02-21|NONE|REG AIR|y slyly regular packages. quickly silen| +89099|452635|2636|1|49|77792.89|0.04|0.08|R|F|1992-04-18|1992-05-20|1992-04-29|TAKE BACK RETURN|AIR|ly furiously regular esca| +89099|420773|20774|2|45|76218.75|0.02|0.05|A|F|1992-07-30|1992-06-06|1992-08-20|COLLECT COD|FOB|ironic requests. fluffily clo| +89099|918823|6378|3|17|31310.26|0.05|0.08|R|F|1992-05-30|1992-06-28|1992-06-23|DELIVER IN PERSON|TRUCK|mong the regular sa| +89099|647479|9992|4|42|59910.48|0.07|0.06|R|F|1992-06-11|1992-06-26|1992-06-16|NONE|MAIL|c deposits. regular, final platelets| +89100|168781|43788|1|18|33296.04|0.02|0.07|N|O|1998-09-03|1998-09-11|1998-09-09|NONE|AIR|p blithely regular ideas. furiously regula| +89101|82950|32951|1|41|79250.95|0.02|0.02|N|O|1998-01-11|1997-11-19|1998-01-28|DELIVER IN PERSON|MAIL|requests. furiously final foxe| +89101|135622|48125|2|11|18233.82|0.07|0.02|N|O|1998-01-23|1997-12-22|1998-02-04|COLLECT COD|FOB|are quickly| +89101|389068|14083|3|22|25455.10|0.08|0.00|N|O|1997-12-14|1997-12-04|1998-01-04|DELIVER IN PERSON|AIR|gular deposits sleep against the | +89101|64839|27341|4|30|54114.90|0.06|0.00|N|O|1998-01-03|1998-01-04|1998-01-17|DELIVER IN PERSON|MAIL|otes are carefully regular deposits. sly| +89102|547757|47758|1|5|9023.65|0.08|0.08|A|F|1993-08-05|1993-08-27|1993-08-14|NONE|AIR|nts cajole among the furiously p| +89102|146859|9362|2|44|83857.40|0.07|0.01|A|F|1993-10-20|1993-10-04|1993-11-01|DELIVER IN PERSON|REG AIR|iously expres| +89102|252241|39757|3|18|21478.14|0.05|0.05|R|F|1993-07-25|1993-09-15|1993-08-15|NONE|FOB|dependencies. flu| +89103|120675|8182|1|21|35609.07|0.04|0.04|N|O|1997-09-20|1997-10-21|1997-09-27|NONE|REG AIR|platelets. eve| +89103|171553|46560|2|11|17870.05|0.06|0.03|N|O|1997-12-16|1997-10-14|1998-01-14|NONE|RAIL|y regular accou| +89103|281597|6608|3|6|9471.48|0.01|0.02|N|O|1997-09-13|1997-10-11|1997-09-27|COLLECT COD|SHIP|above the furiously special depo| +89103|798654|48655|4|19|33299.78|0.07|0.03|N|O|1997-12-31|1997-10-08|1998-01-25|COLLECT COD|SHIP|ts sleep according to the s| +89103|974322|11880|5|26|36303.28|0.09|0.04|N|O|1997-12-03|1997-10-30|1997-12-26|COLLECT COD|RAIL|ges? boldly unusual | +89103|426294|1311|6|29|35387.83|0.02|0.01|N|O|1997-10-27|1997-11-18|1997-11-18|COLLECT COD|SHIP|onic ideas. furiously bold acco| +89128|691326|28866|1|24|31614.96|0.06|0.00|N|O|1998-04-26|1998-03-27|1998-05-17|NONE|TRUCK|efully special pinto be| +89128|104274|41781|2|11|14060.97|0.05|0.02|N|O|1998-04-12|1998-04-16|1998-04-20|NONE|AIR|sleep carefully | +89128|533073|8094|3|19|21014.95|0.09|0.08|N|O|1998-02-23|1998-03-03|1998-03-23|TAKE BACK RETURN|TRUCK|eposits detect bravely silent depos| +89128|350350|12858|4|27|37809.18|0.05|0.05|N|O|1998-03-06|1998-02-26|1998-04-03|COLLECT COD|FOB|nst the quickly silent pinto beans. regu| +89129|904972|4973|1|6|11861.58|0.02|0.07|N|O|1997-08-05|1997-08-04|1997-08-07|TAKE BACK RETURN|TRUCK|accounts could have to use.| +89129|849855|24888|2|50|90240.50|0.07|0.08|N|O|1997-08-05|1997-07-21|1997-08-21|NONE|FOB|ges maintain quickly against t| +89129|510216|22727|3|27|33107.13|0.08|0.03|N|O|1997-08-25|1997-08-02|1997-09-08|NONE|RAIL|the quickly care| +89129|198039|10543|4|29|32973.87|0.08|0.08|N|O|1997-07-01|1997-08-10|1997-07-23|NONE|AIR|lar accounts. furio| +89130|93162|43163|1|7|8086.12|0.02|0.00|A|F|1994-10-08|1994-09-29|1994-11-06|NONE|RAIL|ding accounts a| +89130|760739|48285|2|50|89985.00|0.05|0.05|A|F|1994-09-22|1994-10-08|1994-10-01|TAKE BACK RETURN|SHIP|about the furiously bold requests. slyl| +89131|935517|10554|1|8|12419.76|0.10|0.08|R|F|1992-03-18|1992-02-19|1992-04-14|COLLECT COD|REG AIR| finally above| +89131|226565|39070|2|9|13423.95|0.04|0.06|R|F|1992-02-08|1992-03-07|1992-02-17|DELIVER IN PERSON|FOB|e final instructions. furi| +89131|876026|1061|3|9|9017.82|0.09|0.08|A|F|1992-04-02|1992-02-24|1992-04-24|NONE|SHIP|ding forges haggle final packages| +89131|367915|5437|4|38|75350.20|0.01|0.08|A|F|1992-03-09|1992-04-05|1992-04-03|TAKE BACK RETURN|FOB|requests. fluffily| +89131|545715|33246|5|46|80991.74|0.07|0.03|A|F|1992-01-18|1992-04-02|1992-02-02|NONE|REG AIR| requests nag. carefully final de| +89131|825514|13063|6|7|10076.29|0.03|0.07|R|F|1992-01-20|1992-03-19|1992-01-24|COLLECT COD|SHIP|the carefully expres| +89132|871061|21062|1|17|17544.34|0.06|0.01|N|O|1997-09-21|1997-11-19|1997-10-16|DELIVER IN PERSON|MAIL|y bold deposits haggle f| +89132|910683|10684|2|1|1693.64|0.10|0.03|N|O|1997-12-14|1997-11-03|1998-01-10|TAKE BACK RETURN|REG AIR|ar instructions sublate slyly across the | +89132|845761|20794|3|41|69975.52|0.08|0.02|N|O|1997-09-30|1997-11-22|1997-10-21|TAKE BACK RETURN|REG AIR|ly regular platelets wake bli| +89133|111519|24022|1|13|19896.63|0.10|0.06|R|F|1995-03-17|1995-04-15|1995-04-07|NONE|RAIL|y even ideas. carefully bold requests na| +89133|289308|1814|2|38|49297.02|0.01|0.07|A|F|1995-02-10|1995-03-24|1995-03-12|DELIVER IN PERSON|SHIP|y upon the special req| +89133|397295|47296|3|43|59868.04|0.06|0.01|N|F|1995-05-31|1995-04-05|1995-06-25|DELIVER IN PERSON|REG AIR|egular excuses hag| +89133|330338|42845|4|41|56101.12|0.10|0.07|A|F|1995-03-25|1995-03-24|1995-04-07|NONE|MAIL|rding to the regular tithes. quickly even | +89133|990141|15180|5|35|43088.50|0.04|0.06|A|F|1995-04-23|1995-04-02|1995-05-12|DELIVER IN PERSON|TRUCK|. blithely bold theodolites sleep | +89133|283417|20933|6|25|35010.00|0.01|0.06|A|F|1995-04-30|1995-04-29|1995-05-22|TAKE BACK RETURN|RAIL|wake carefully. carefully unusual r| +89133|379331|16853|7|4|5641.28|0.07|0.05|A|F|1995-02-12|1995-05-07|1995-03-01|DELIVER IN PERSON|TRUCK| bold, ironic instructions haggle quickly. | +89134|412335|49860|1|12|14967.72|0.03|0.01|N|O|1996-09-25|1996-10-10|1996-10-14|COLLECT COD|REG AIR|tes use even, | +89134|106186|18689|2|21|25035.78|0.08|0.04|N|O|1996-10-27|1996-09-14|1996-11-23|NONE|FOB|ully. express realm| +89134|656993|19507|3|22|42899.12|0.04|0.05|N|O|1996-08-05|1996-09-24|1996-09-02|DELIVER IN PERSON|MAIL|accounts might | +89134|67118|42121|4|16|17361.76|0.00|0.02|N|O|1996-10-16|1996-10-04|1996-11-06|NONE|AIR|ate slyly express| +89135|307194|44713|1|22|26425.96|0.04|0.08|N|O|1997-12-31|1998-01-11|1998-01-16|NONE|FOB|press depo| +89135|5454|17955|2|1|1359.45|0.03|0.00|N|O|1998-02-02|1998-02-25|1998-02-21|NONE|RAIL|uests haggle. bold gifts affix blith| +89135|655456|5457|3|27|38108.34|0.02|0.07|N|O|1998-02-01|1998-02-11|1998-02-27|NONE|FOB|ntain fluffily fu| +89160|678681|41195|1|25|41491.25|0.06|0.05|R|F|1995-03-22|1995-04-27|1995-04-09|TAKE BACK RETURN|REG AIR|g theodolites. slyly regular foxes haggl| +89160|581307|43819|2|13|18047.64|0.03|0.07|N|O|1995-06-19|1995-06-05|1995-06-25|COLLECT COD|FOB| silent packages along the slyl| +89160|16635|41636|3|18|27929.34|0.04|0.07|R|F|1995-03-23|1995-05-07|1995-04-19|TAKE BACK RETURN|SHIP|al accounts after t| +89160|572765|10299|4|17|31241.58|0.08|0.04|N|O|1995-07-08|1995-04-30|1995-07-15|DELIVER IN PERSON|MAIL|s. carefully enticing pinto beans c| +89161|912580|12581|1|22|35035.88|0.03|0.02|N|O|1996-07-21|1996-08-07|1996-08-08|TAKE BACK RETURN|RAIL|pecial pinto| +89161|720176|20177|2|11|13157.54|0.05|0.03|N|O|1996-06-26|1996-08-12|1996-06-29|TAKE BACK RETURN|REG AIR|e platelets. quickly fi| +89161|981864|44384|3|4|7783.28|0.01|0.01|N|O|1996-09-19|1996-08-11|1996-10-14|NONE|AIR|ing accounts boos| +89161|171769|9279|4|28|51541.28|0.09|0.03|N|O|1996-07-26|1996-07-26|1996-07-30|TAKE BACK RETURN|MAIL|gifts engage furiou| +89162|662542|82|1|23|34603.73|0.09|0.02|N|O|1997-04-14|1997-04-23|1997-05-07|TAKE BACK RETURN|MAIL|g the bold, careful pack| +89162|335361|22880|2|46|64232.10|0.07|0.00|N|O|1997-04-30|1997-05-04|1997-05-20|NONE|AIR|cuses do wake blithely acco| +89162|405907|30924|3|42|76140.96|0.09|0.02|N|O|1997-04-17|1997-04-22|1997-04-19|NONE|TRUCK|ounts haggle sl| +89163|767870|5416|1|7|13564.88|0.02|0.02|R|F|1994-07-29|1994-07-14|1994-08-01|NONE|AIR|y regular dolphins sleep among the| +89163|590730|28264|2|4|7282.84|0.04|0.00|R|F|1994-08-13|1994-06-21|1994-08-23|COLLECT COD|RAIL|. furiously ironic foxes against the blit| +89164|46198|8699|1|21|24027.99|0.05|0.01|R|F|1992-07-21|1992-06-23|1992-08-09|TAKE BACK RETURN|REG AIR|equests accord| +89164|447223|9732|2|13|15212.60|0.06|0.01|A|F|1992-06-02|1992-05-30|1992-06-07|TAKE BACK RETURN|AIR| engage daringly across the| +89164|471506|9034|3|7|10342.36|0.07|0.08|A|F|1992-07-01|1992-06-22|1992-07-24|NONE|MAIL|ts. blithely even ideas are furiously | +89164|593497|31031|4|1|1590.47|0.08|0.04|A|F|1992-07-25|1992-06-06|1992-08-13|NONE|RAIL| pending asymptotes boost slyly besides| +89164|893310|18345|5|8|10426.16|0.05|0.03|A|F|1992-05-05|1992-06-12|1992-05-21|NONE|MAIL|tes haggle| +89164|854027|29062|6|9|8828.82|0.02|0.06|A|F|1992-06-03|1992-06-08|1992-06-24|TAKE BACK RETURN|TRUCK|y silent depos| +89165|69467|44470|1|13|18673.98|0.05|0.03|N|O|1996-06-26|1996-08-10|1996-07-17|DELIVER IN PERSON|AIR|s about the c| +89165|517285|17286|2|3|3906.78|0.01|0.08|N|O|1996-09-29|1996-07-19|1996-10-28|NONE|AIR|. somas against the carefully c| +89166|731117|18660|1|36|41330.88|0.04|0.06|N|O|1998-07-17|1998-08-30|1998-08-12|NONE|RAIL|ent dependencies believe fluffily. idly ev| +89166|873452|35970|2|13|18530.33|0.03|0.07|N|O|1998-06-13|1998-08-02|1998-06-24|NONE|TRUCK|round the quickly silent excuses | +89166|104012|29017|3|10|10160.10|0.06|0.05|N|O|1998-09-20|1998-07-09|1998-10-10|TAKE BACK RETURN|MAIL| excuses. quickly eve| +89167|973274|35794|1|11|14819.53|0.07|0.03|R|F|1994-03-20|1994-04-18|1994-03-28|NONE|RAIL|al foxes. blithely ironic excuses wake quic| +89167|806844|19361|2|46|80536.80|0.01|0.06|R|F|1994-03-30|1994-04-08|1994-04-29|TAKE BACK RETURN|TRUCK|hely after the fur| +89167|616334|16335|3|8|10002.40|0.07|0.07|A|F|1994-04-18|1994-04-19|1994-05-12|NONE|REG AIR| alongside of the| +89167|718705|6248|4|20|34473.40|0.05|0.06|R|F|1994-04-05|1994-04-07|1994-04-24|TAKE BACK RETURN|RAIL|nic deposits. | +89192|108821|21324|1|17|31106.94|0.00|0.08|N|O|1997-11-17|1998-01-13|1997-12-12|TAKE BACK RETURN|REG AIR|stead of the even deposits int| +89192|945751|8270|2|41|73665.11|0.10|0.02|N|O|1998-01-06|1997-12-03|1998-01-27|COLLECT COD|TRUCK|s the furiously ironic foxes! even, unusu| +89192|229508|29509|3|37|53187.13|0.01|0.08|N|O|1997-12-14|1997-12-19|1998-01-12|TAKE BACK RETURN|AIR|e the furiously thi| +89192|331190|43697|4|20|24423.60|0.02|0.07|N|O|1997-11-01|1998-01-10|1997-12-01|COLLECT COD|SHIP| furiously bold accounts. quickly| +89192|307317|19824|5|13|17215.90|0.03|0.00|N|O|1998-01-07|1998-01-10|1998-01-11|NONE|REG AIR|s are slyly. carefully pe| +89192|67694|17695|6|9|14955.21|0.06|0.08|N|O|1997-11-23|1997-12-01|1997-12-09|NONE|AIR|usly even deposits wake. even ideas slee| +89193|489819|14838|1|31|56072.49|0.06|0.04|A|F|1995-03-31|1995-02-14|1995-04-27|TAKE BACK RETURN|MAIL|blithely final requests use. regular | +89194|216152|3665|1|44|46998.16|0.09|0.00|A|F|1993-10-21|1993-08-25|1993-11-18|TAKE BACK RETURN|AIR| bold packages. deposi| +89195|363324|25832|1|46|63816.26|0.09|0.07|N|O|1996-11-23|1996-10-12|1996-12-17|TAKE BACK RETURN|TRUCK|. furiously even requests alongside o| +89195|385431|22953|2|46|69755.32|0.09|0.01|N|O|1996-09-02|1996-10-06|1996-09-21|TAKE BACK RETURN|FOB|nding theo| +89195|930682|5719|3|27|46241.28|0.10|0.06|N|O|1996-08-25|1996-09-03|1996-09-18|NONE|MAIL|sits? quickly ironic packages lose qui| +89196|159899|9900|1|21|41136.69|0.03|0.05|N|O|1996-02-17|1996-03-25|1996-02-22|NONE|MAIL|tions. express, special asymptotes a| +89196|406382|6383|2|27|34785.72|0.07|0.06|N|O|1996-02-07|1996-02-28|1996-03-01|COLLECT COD|FOB|ar requests. ironic accou| +89196|46736|34237|3|3|5048.19|0.01|0.07|N|O|1996-04-03|1996-02-16|1996-04-26|NONE|FOB|ve the quickly regular packages. unu| +89196|479370|41880|4|42|56672.70|0.09|0.04|N|O|1996-04-11|1996-02-20|1996-04-24|COLLECT COD|FOB|e blithely. | +89196|760517|23033|5|7|11042.36|0.01|0.07|N|O|1996-04-03|1996-03-31|1996-04-25|TAKE BACK RETURN|FOB|ironic packages nag quickly| +89197|408639|46164|1|11|17023.71|0.08|0.02|R|F|1993-02-15|1992-11-30|1993-03-16|TAKE BACK RETURN|AIR|ily unusual deposits se| +89197|981774|44294|2|8|14845.84|0.01|0.08|A|F|1993-01-14|1992-11-27|1993-02-13|NONE|SHIP|uctions wake | +89198|135|37636|1|7|7245.91|0.09|0.08|A|F|1994-12-28|1994-11-25|1995-01-23|DELIVER IN PERSON|SHIP|xes. patterns about the blithely | +89199|38856|13857|1|40|71794.00|0.09|0.06|R|F|1993-10-25|1993-08-21|1993-10-29|NONE|FOB|s. carefully final foxes might lose. regula| +89199|50417|418|2|18|24613.38|0.10|0.05|R|F|1993-08-12|1993-08-29|1993-08-26|DELIVER IN PERSON|RAIL|nd the slyly express ins| +89199|341873|41874|3|43|82338.98|0.08|0.04|R|F|1993-07-16|1993-09-25|1993-08-05|TAKE BACK RETURN|FOB|ven packages-- even account| +89199|843907|18940|4|48|88841.28|0.08|0.08|R|F|1993-08-09|1993-09-01|1993-08-17|DELIVER IN PERSON|REG AIR|onic platelets. carefully ironic dino| +89199|534649|34650|5|48|80813.76|0.00|0.06|A|F|1993-10-23|1993-08-01|1993-11-09|TAKE BACK RETURN|RAIL|ly. accounts boost. unusual, bold dependenc| +89224|967491|30011|1|15|23376.75|0.10|0.06|N|O|1996-05-14|1996-04-15|1996-05-21|DELIVER IN PERSON|RAIL|onically regular accounts could ha| +89224|620501|20502|2|14|19900.58|0.06|0.08|N|O|1996-04-13|1996-04-18|1996-04-28|DELIVER IN PERSON|RAIL|ts. final, ironic pinto beans wake furi| +89225|144280|31787|1|38|50322.64|0.09|0.06|N|O|1996-04-18|1996-05-05|1996-05-12|NONE|AIR|uests. carefully ironic| +89226|693707|31247|1|3|5102.01|0.09|0.02|R|F|1994-04-11|1994-03-27|1994-04-20|COLLECT COD|SHIP| sleep even packa| +89226|118826|31329|2|48|88551.36|0.01|0.06|R|F|1994-03-15|1994-04-13|1994-03-30|NONE|TRUCK|old packages sh| +89226|94762|44763|3|37|65000.12|0.09|0.04|R|F|1994-02-19|1994-04-29|1994-02-24|COLLECT COD|SHIP|ording to | +89227|960128|35167|1|42|49899.36|0.03|0.02|N|O|1998-02-11|1997-12-02|1998-03-05|COLLECT COD|SHIP|s pinto bean| +89227|870154|45189|2|33|37095.63|0.06|0.06|N|O|1998-01-02|1998-01-04|1998-01-10|NONE|TRUCK|ecial, unusual ac| +89227|663828|38855|3|42|75255.18|0.00|0.02|N|O|1997-11-16|1997-12-08|1997-11-30|DELIVER IN PERSON|AIR| even asymptotes| +89227|950705|706|4|2|3511.32|0.10|0.00|N|O|1997-11-28|1998-01-28|1997-12-03|TAKE BACK RETURN|AIR|promise sil| +89227|493006|5516|5|20|19979.60|0.03|0.05|N|O|1998-02-23|1998-01-22|1998-03-05|COLLECT COD|FOB|lyly among the requests. packages haggle| +89227|944737|32292|6|24|42760.56|0.03|0.07|N|O|1998-01-29|1998-01-27|1998-02-11|DELIVER IN PERSON|FOB|accounts use s| +89227|188904|38905|7|28|55801.20|0.04|0.01|N|O|1997-11-05|1998-01-24|1997-11-11|NONE|RAIL|nal packages. regular, regular accounts| +89228|895857|20892|1|42|77818.02|0.05|0.06|A|F|1995-02-06|1995-01-31|1995-02-22|DELIVER IN PERSON|MAIL|regular packages are according to the a| +89228|659931|9932|2|37|69963.30|0.00|0.06|R|F|1995-01-03|1995-01-14|1995-01-31|DELIVER IN PERSON|SHIP| the express, final accou| +89228|458653|33672|3|48|77358.24|0.06|0.05|A|F|1995-02-16|1995-01-17|1995-03-18|TAKE BACK RETURN|REG AIR| quickly. package| +89229|380921|43429|1|9|18017.19|0.08|0.07|N|O|1998-08-10|1998-07-07|1998-09-04|COLLECT COD|FOB|orbits. special, regular cour| +89229|135504|23011|2|9|13855.50|0.02|0.06|N|O|1998-07-20|1998-06-25|1998-08-05|COLLECT COD|SHIP|eposits haggl| +89229|409952|22461|3|37|68891.41|0.05|0.04|N|O|1998-07-03|1998-08-17|1998-07-09|COLLECT COD|SHIP|sits. blithely pend| +89229|52049|39553|4|26|26027.04|0.06|0.05|N|O|1998-07-31|1998-07-07|1998-08-09|DELIVER IN PERSON|SHIP|after the idl| +89230|586637|11660|1|44|75838.84|0.07|0.01|N|O|1995-12-11|1995-12-19|1995-12-27|NONE|MAIL|cing ideas| +89230|598400|48401|2|43|64430.34|0.06|0.05|N|O|1995-12-16|1996-01-12|1996-01-11|COLLECT COD|AIR|y ironic accounts. furiously | +89230|300369|370|3|31|42449.85|0.10|0.04|N|O|1995-11-22|1996-01-10|1995-12-01|NONE|REG AIR|ly across the carefully ironic platelets| +89230|287418|12429|4|42|59026.80|0.03|0.08|N|O|1996-01-17|1996-01-03|1996-02-16|COLLECT COD|RAIL|ious foxes hang afte| +89230|620624|45649|5|22|33980.98|0.07|0.03|N|O|1996-03-02|1995-12-11|1996-03-16|COLLECT COD|SHIP|. quickly special packag| +89230|813693|13694|6|28|44986.20|0.06|0.02|N|O|1995-12-14|1995-12-25|1996-01-10|DELIVER IN PERSON|RAIL|ronic packages sleep. slyly iro| +89230|727332|27333|7|18|24467.40|0.00|0.02|N|O|1996-01-02|1996-01-04|1996-01-04|TAKE BACK RETURN|TRUCK|riously alongside of | +89231|265881|28387|1|29|53559.23|0.03|0.07|N|O|1997-05-20|1997-05-07|1997-06-02|NONE|REG AIR|warthogs believe account| +89231|645387|7900|2|3|3997.05|0.09|0.04|N|O|1997-07-07|1997-05-11|1997-07-15|NONE|MAIL|ar accounts might are furio| +89231|10251|47752|3|15|17418.75|0.09|0.08|N|O|1997-06-23|1997-05-20|1997-07-12|TAKE BACK RETURN|TRUCK|regular co| +89231|273164|35670|4|25|28428.75|0.00|0.02|N|O|1997-04-22|1997-05-06|1997-05-10|DELIVER IN PERSON|MAIL|to beans. furiously regular requests int| +89231|60376|22878|5|23|30736.51|0.00|0.05|N|O|1997-06-16|1997-04-19|1997-07-07|TAKE BACK RETURN|REG AIR|the furiously special attainments: express| +89231|724361|24362|6|3|4155.99|0.03|0.00|N|O|1997-04-06|1997-05-05|1997-04-25|TAKE BACK RETURN|MAIL| pending dolphins. ironic multi| +89231|335085|47592|7|31|34722.17|0.01|0.01|N|O|1997-05-17|1997-05-13|1997-06-02|NONE|RAIL| slyly along the express, spe| +89256|759987|22503|1|46|94159.70|0.01|0.03|A|F|1994-08-17|1994-06-30|1994-09-13|TAKE BACK RETURN|REG AIR| about the express reques| +89256|86026|36027|2|47|47564.94|0.06|0.04|R|F|1994-08-01|1994-08-19|1994-08-20|COLLECT COD|REG AIR|unts are unusual, special deposits. careful| +89257|7327|32328|1|20|24686.40|0.03|0.06|N|O|1998-03-20|1998-01-26|1998-04-03|NONE|RAIL|pending requests boost. final requests unw| +89257|130507|43010|2|29|44587.50|0.04|0.03|N|O|1998-03-16|1998-02-28|1998-03-31|COLLECT COD|MAIL|against the slyly ironic | +89257|424855|37364|3|46|81872.18|0.03|0.05|N|O|1997-12-30|1998-03-18|1998-01-16|NONE|TRUCK|usual foxes. si| +89257|522897|47918|4|6|11519.22|0.05|0.03|N|O|1998-02-06|1998-03-06|1998-02-22|DELIVER IN PERSON|REG AIR|cross the blithely bold acc| +89257|329272|16791|5|37|48146.62|0.05|0.06|N|O|1998-03-18|1998-03-18|1998-04-14|COLLECT COD|REG AIR|inst the deposits| +89257|73578|11082|6|18|27928.26|0.02|0.05|N|O|1998-03-26|1998-01-28|1998-04-16|NONE|SHIP|requests. slyly special f| +89257|612683|12684|7|22|35104.30|0.03|0.07|N|O|1998-02-17|1998-02-11|1998-03-19|NONE|MAIL|ar deposits. furiously even ideas ar| +89258|361864|36879|1|2|3851.70|0.09|0.04|N|O|1996-11-07|1996-10-10|1996-11-09|DELIVER IN PERSON|TRUCK|ts-- furiousl| +89258|845928|20961|2|16|29982.08|0.02|0.08|N|O|1996-10-17|1996-11-10|1996-11-06|DELIVER IN PERSON|TRUCK|slyly final accounts are | +89258|511337|11338|3|50|67415.50|0.01|0.06|N|O|1996-09-10|1996-09-23|1996-10-05|COLLECT COD|FOB|le pending foxes. furiously re| +89258|25936|38437|4|39|72615.27|0.00|0.06|N|O|1996-09-08|1996-11-02|1996-09-24|TAKE BACK RETURN|SHIP|dolites wake slyly busy theodolites. c| +89258|897181|22216|5|23|27097.22|0.10|0.02|N|O|1996-08-24|1996-09-20|1996-08-31|TAKE BACK RETURN|RAIL|ng theodolites affix b| +89258|913062|38099|6|31|33325.62|0.04|0.07|N|O|1996-10-05|1996-10-18|1996-10-08|NONE|AIR|ress packages sleep slyly after the| +89258|823183|23184|7|49|54200.86|0.00|0.03|N|O|1996-10-21|1996-11-02|1996-11-13|NONE|RAIL|etimes silent deposits serve sometime| +89259|236204|11213|1|2|2280.38|0.08|0.06|N|O|1997-01-21|1997-03-18|1997-02-14|NONE|FOB|ests integra| +89259|875288|37806|2|37|46739.88|0.06|0.02|N|O|1997-02-07|1997-02-07|1997-02-10|COLLECT COD|MAIL|press dependencies wake furiously blit| +89259|959199|46757|3|3|3774.45|0.06|0.03|N|O|1997-04-17|1997-03-21|1997-04-28|COLLECT COD|REG AIR|s haggle furiously r| +89259|251076|26087|4|41|42109.46|0.04|0.00|N|O|1997-02-24|1997-02-26|1997-03-17|DELIVER IN PERSON|AIR|lyly. blithely| +89259|831569|31570|5|26|39013.52|0.06|0.07|N|O|1997-01-21|1997-03-30|1997-02-16|COLLECT COD|RAIL|ress deposits are. ironic foxes na| +89260|901801|14320|1|40|72110.40|0.08|0.08|A|F|1993-04-23|1993-04-14|1993-05-10|NONE|RAIL|boost around the furiously special packa| +89260|559708|47242|2|39|68939.52|0.05|0.01|A|F|1993-06-23|1993-05-22|1993-07-06|COLLECT COD|SHIP| blithely idle accounts: regular epitaphs | +89260|2322|2323|3|38|46524.16|0.10|0.00|R|F|1993-05-29|1993-05-25|1993-06-19|TAKE BACK RETURN|RAIL|e, final foxes; carefully quic| +89261|902082|14601|1|5|5420.20|0.03|0.08|N|O|1996-11-11|1996-09-20|1996-11-30|NONE|REG AIR|osits. regular de| +89261|281482|43988|2|12|17561.64|0.06|0.08|N|O|1996-08-20|1996-10-07|1996-09-14|TAKE BACK RETURN|FOB|in blithely quickl| +89261|854514|4515|3|13|19090.11|0.09|0.04|N|O|1996-11-16|1996-09-05|1996-12-08|NONE|AIR|furiously across the slyly final reque| +89261|803907|16424|4|24|43460.64|0.06|0.00|N|O|1996-08-05|1996-09-17|1996-08-07|TAKE BACK RETURN|RAIL| slyly furiously silent asymptotes| +89261|263813|13814|5|18|31982.40|0.00|0.01|N|O|1996-11-01|1996-09-29|1996-11-19|COLLECT COD|FOB|ckly ironic a| +89262|671758|21759|1|40|69188.80|0.10|0.08|N|O|1996-07-30|1996-08-17|1996-08-19|TAKE BACK RETURN|TRUCK|ts. final ideas ac| +89262|227004|39509|2|28|26067.72|0.05|0.01|N|O|1996-07-10|1996-08-16|1996-07-23|TAKE BACK RETURN|REG AIR|osits haggle quickly?| +89262|244897|44898|3|44|81042.72|0.03|0.03|N|O|1996-07-15|1996-08-19|1996-08-04|NONE|SHIP|ld packages. carefully ironic ideas sleep a| +89262|983115|45635|4|14|16772.98|0.10|0.06|N|O|1996-07-08|1996-08-04|1996-07-29|DELIVER IN PERSON|FOB|. slyly ex| +89262|203196|15701|5|26|28578.68|0.03|0.06|N|O|1996-09-27|1996-08-08|1996-10-16|TAKE BACK RETURN|SHIP|ess requests. permanent acco| +89262|105326|5327|6|34|45264.88|0.04|0.02|N|O|1996-10-08|1996-08-17|1996-10-24|NONE|TRUCK|e. slyly regular excus| +89262|203403|3404|7|29|37885.31|0.08|0.04|N|O|1996-08-03|1996-08-02|1996-08-17|TAKE BACK RETURN|REG AIR|eposits are. c| +89263|579193|4216|1|22|27987.74|0.09|0.02|R|F|1993-11-03|1993-12-13|1993-11-08|TAKE BACK RETURN|RAIL|g packages. brave, ironic requests be| +89263|486812|11831|2|29|52164.91|0.03|0.07|A|F|1994-01-25|1993-12-30|1994-02-13|TAKE BACK RETURN|AIR| thinly final packages. quickl| +89263|846740|34289|3|35|59034.50|0.04|0.04|A|F|1993-12-01|1994-01-17|1993-12-02|TAKE BACK RETURN|FOB|g pinto beans impress carefully | +89263|144919|44920|4|46|90339.86|0.06|0.05|A|F|1993-11-14|1994-01-28|1993-12-12|COLLECT COD|AIR|blithely ironic package| +89263|642108|17133|5|11|11550.77|0.06|0.00|A|F|1994-01-04|1994-01-11|1994-01-06|DELIVER IN PERSON|TRUCK|ly excuses. never f| +89263|902077|39632|6|23|24817.69|0.00|0.06|R|F|1993-11-05|1994-01-17|1993-11-27|COLLECT COD|AIR|ove the furiously ironic gifts!| +89263|194773|19780|7|14|26148.78|0.07|0.04|A|F|1993-12-09|1993-12-26|1993-12-12|NONE|MAIL|ckly special asymptotes. final packag| +89288|547359|34890|1|29|40783.57|0.06|0.01|N|O|1997-12-23|1997-11-05|1998-01-22|TAKE BACK RETURN|SHIP|ounts. regular accounts | +89288|452543|2544|2|14|20937.28|0.09|0.02|N|O|1998-01-01|1997-12-22|1998-01-23|COLLECT COD|FOB|usly carefully regular e| +89288|879001|29002|3|47|46058.12|0.03|0.03|N|O|1997-12-05|1997-12-05|1997-12-25|DELIVER IN PERSON|FOB|alongside of the pending, pen| +89288|369172|6694|4|12|14893.92|0.00|0.01|N|O|1998-01-12|1997-11-29|1998-02-11|NONE|TRUCK|. regular accounts| +89288|665822|40849|5|10|17877.90|0.05|0.01|N|O|1997-10-26|1997-12-10|1997-11-15|COLLECT COD|TRUCK|e furiously special deposits| +89289|320017|45030|1|27|27999.00|0.01|0.06|R|F|1992-12-10|1993-02-10|1992-12-12|COLLECT COD|MAIL|carefully after th| +89289|520521|45542|2|20|30830.00|0.01|0.06|A|F|1993-01-30|1993-01-24|1993-02-10|DELIVER IN PERSON|REG AIR|t deposits wake furiously above the acc| +89289|383679|33680|3|30|52879.80|0.03|0.04|A|F|1993-01-15|1993-02-07|1993-02-07|NONE|REG AIR|ly after the slyly even instructions| +89290|298298|35814|1|10|12962.80|0.09|0.04|R|F|1992-06-13|1992-05-05|1992-06-23|DELIVER IN PERSON|MAIL|r the unusua| +89290|480893|5912|2|24|44972.88|0.07|0.06|R|F|1992-05-12|1992-06-09|1992-05-25|NONE|RAIL|ic dependencies wake| +89290|353903|28918|3|26|50879.14|0.06|0.06|A|F|1992-06-01|1992-04-29|1992-06-28|COLLECT COD|REG AIR|unts wake furio| +89290|40082|40083|4|10|10220.80|0.01|0.05|R|F|1992-04-02|1992-04-24|1992-04-23|DELIVER IN PERSON|REG AIR|eposits. sl| +89290|649624|24649|5|43|67664.37|0.07|0.07|R|F|1992-07-06|1992-05-19|1992-07-25|TAKE BACK RETURN|SHIP|ve slyly across the deposits. pinto b| +89290|220248|7761|6|7|8177.61|0.05|0.03|R|F|1992-05-19|1992-05-23|1992-05-27|TAKE BACK RETURN|RAIL|anently special reque| +89291|606775|19288|1|12|20180.88|0.07|0.00|N|O|1997-04-18|1997-05-31|1997-04-24|COLLECT COD|TRUCK|o beans use furiously. bl| +89291|63247|38250|2|7|8471.68|0.00|0.07|N|O|1997-06-07|1997-04-27|1997-06-30|COLLECT COD|AIR|xpress pinto beans boost | +89291|982842|20400|3|31|59668.80|0.08|0.07|N|O|1997-06-30|1997-05-16|1997-07-30|DELIVER IN PERSON|RAIL|sleep among the careful| +89292|893084|43085|1|21|22617.84|0.00|0.05|N|O|1997-10-11|1997-08-28|1997-11-07|COLLECT COD|REG AIR|sly requests. express warhorses are| +89292|46859|46860|2|6|10835.10|0.08|0.07|N|O|1997-08-29|1997-07-30|1997-09-07|DELIVER IN PERSON|AIR|believe sly| +89292|546251|21272|3|3|3891.69|0.08|0.03|N|O|1997-09-06|1997-07-25|1997-09-12|DELIVER IN PERSON|FOB|ies was furiously expres| +89292|838064|38065|4|50|50101.00|0.00|0.00|N|O|1997-08-21|1997-08-29|1997-09-04|TAKE BACK RETURN|MAIL| fluffily among the fluffily even | +89292|326010|38517|5|48|49728.00|0.03|0.00|N|O|1997-07-09|1997-07-26|1997-07-16|COLLECT COD|FOB|sly alongside | +89293|351209|26224|1|20|25203.80|0.02|0.00|N|O|1996-11-17|1997-01-18|1996-12-10|TAKE BACK RETURN|AIR|unusual packages: final packages ha| +89294|553546|3547|1|18|28791.36|0.08|0.04|A|F|1992-10-05|1992-11-18|1992-10-08|COLLECT COD|SHIP|re slyly silen| +89294|446238|21255|2|13|15394.73|0.01|0.03|A|F|1992-11-30|1992-11-14|1992-12-11|COLLECT COD|AIR| slyly final| +89294|918884|18885|3|33|62793.72|0.06|0.06|A|F|1992-10-03|1992-10-04|1992-10-22|NONE|TRUCK|ctions haggle qu| +89294|670792|20793|4|43|75798.68|0.00|0.08|R|F|1992-12-26|1992-11-15|1993-01-23|TAKE BACK RETURN|RAIL|s. quickly ironic instructions slee| +89294|993369|18408|5|22|32171.04|0.01|0.03|R|F|1992-10-15|1992-11-12|1992-11-11|NONE|AIR|deposits sleep across the slyly pendin| +89295|550607|13119|1|21|34809.18|0.04|0.03|N|O|1996-12-30|1996-11-15|1997-01-27|TAKE BACK RETURN|REG AIR|sly along the fluffily regular w| +89295|47839|35340|2|10|17868.30|0.02|0.04|N|O|1996-09-24|1996-11-10|1996-10-19|DELIVER IN PERSON|RAIL|he closely regular accounts thra| +89295|23060|35561|3|44|43254.64|0.09|0.03|N|O|1997-01-10|1996-12-05|1997-02-02|DELIVER IN PERSON|MAIL| the fluffily bra| +89295|554215|16727|4|16|20307.04|0.03|0.05|N|O|1996-12-30|1996-11-03|1997-01-12|COLLECT COD|MAIL|ges engage stealthily even, furious | +89295|677196|39710|5|40|46926.40|0.02|0.07|N|O|1996-11-10|1996-11-11|1996-11-14|NONE|MAIL|the even, enticing accounts. regular| +89320|812431|37464|1|46|61795.94|0.00|0.02|A|F|1992-05-25|1992-06-02|1992-06-06|TAKE BACK RETURN|MAIL|ly silent platelets. fu| +89320|516557|29068|2|32|50352.96|0.08|0.03|R|F|1992-05-28|1992-07-05|1992-06-20|DELIVER IN PERSON|FOB|requests. ironic pinto beans use. caref| +89320|761664|49210|3|17|29335.71|0.00|0.08|A|F|1992-06-24|1992-06-30|1992-06-25|COLLECT COD|SHIP| unusual de| +89320|280544|30545|4|10|15245.30|0.02|0.02|A|F|1992-05-10|1992-06-08|1992-06-08|COLLECT COD|RAIL|against the fluffily sp| +89321|910925|35962|1|3|5807.64|0.00|0.02|R|F|1992-05-22|1992-04-14|1992-05-30|COLLECT COD|AIR| the final, unusual requests| +89322|112202|37207|1|29|35211.80|0.06|0.03|N|O|1997-07-09|1997-07-27|1997-07-17|COLLECT COD|REG AIR|e even pinto beans. slowly even| +89322|764949|14950|2|15|30208.65|0.10|0.03|N|O|1997-05-23|1997-06-18|1997-06-13|COLLECT COD|AIR|ly regular packages. sly| +89322|493756|18775|3|3|5249.19|0.10|0.02|N|O|1997-07-19|1997-06-14|1997-07-27|COLLECT COD|TRUCK|ideas about the slyly regu| +89323|945153|45154|1|24|28754.64|0.01|0.07|A|F|1992-06-08|1992-07-30|1992-06-27|TAKE BACK RETURN|REG AIR|r accounts. ironic, re| +89324|666846|4386|1|3|5438.43|0.04|0.05|N|O|1996-03-15|1996-03-27|1996-04-10|DELIVER IN PERSON|TRUCK|erve slyly alongside| +89324|678225|28226|2|43|51737.17|0.02|0.04|N|O|1996-03-07|1996-03-26|1996-03-28|DELIVER IN PERSON|SHIP|nto beans ha| +89324|925239|276|3|18|22755.42|0.09|0.01|N|O|1996-03-01|1996-04-23|1996-03-31|NONE|AIR|y special foxes. blithely regular deposi| +89324|490762|3272|4|30|52582.20|0.10|0.00|N|O|1996-03-05|1996-04-22|1996-03-30|NONE|AIR|fully around the special request| +89324|222381|34886|5|4|5213.48|0.05|0.06|N|O|1996-03-26|1996-04-03|1996-03-31|NONE|REG AIR|equests could cajole carefully near| +89324|546143|33674|6|18|21404.16|0.03|0.06|N|O|1996-02-15|1996-03-20|1996-03-14|TAKE BACK RETURN|RAIL| theodolites nag slyly carefully | +89325|595823|20846|1|12|23025.60|0.07|0.07|N|O|1996-05-17|1996-06-23|1996-05-23|NONE|FOB|lar foxes use furiously ca| +89325|987214|24772|2|20|26023.40|0.00|0.06|N|O|1996-07-19|1996-06-02|1996-07-25|DELIVER IN PERSON|AIR|ld packages cajole. silently ironic the| +89325|99546|49547|3|27|41729.58|0.06|0.06|N|O|1996-05-14|1996-06-13|1996-05-26|TAKE BACK RETURN|AIR|dependencies wake busily. express foxes| +89325|65818|3322|4|49|87406.69|0.07|0.06|N|O|1996-05-12|1996-07-23|1996-06-09|NONE|REG AIR| use slyly after the slyly ironic f| +89325|193244|43245|5|9|12035.16|0.06|0.08|N|O|1996-05-30|1996-07-17|1996-06-25|TAKE BACK RETURN|TRUCK| the final requests. final| +89325|848779|23812|6|36|62198.28|0.05|0.08|N|O|1996-05-19|1996-07-26|1996-06-13|NONE|FOB|ess instructio| +89325|418312|43329|7|9|11072.61|0.07|0.03|N|O|1996-07-21|1996-06-06|1996-08-04|TAKE BACK RETURN|SHIP|phins. express, pending a| +89326|554700|42234|1|15|26320.20|0.04|0.03|A|F|1992-08-15|1992-06-23|1992-08-17|TAKE BACK RETURN|RAIL| according to the furiously expres| +89327|72190|47193|1|35|40676.65|0.07|0.06|R|F|1992-08-10|1992-07-20|1992-08-13|DELIVER IN PERSON|SHIP|ironic excuses cajole quickly b| +89327|288217|38218|2|34|40976.80|0.03|0.01|R|F|1992-09-01|1992-06-29|1992-09-23|NONE|FOB|kages are furiously across the ex| +89327|52591|2592|3|8|12348.72|0.05|0.05|R|F|1992-08-19|1992-08-10|1992-09-14|COLLECT COD|SHIP|st the carefully final| +89327|884905|22457|4|9|17008.74|0.08|0.04|A|F|1992-07-09|1992-08-06|1992-07-17|NONE|REG AIR| slyly carefully ironic ideas. c| +89327|583523|33524|5|2|3213.00|0.05|0.00|A|F|1992-07-08|1992-08-10|1992-07-17|NONE|REG AIR|asymptotes? carefully special accounts acr| +89327|261543|36554|6|6|9027.18|0.07|0.06|R|F|1992-09-07|1992-08-11|1992-09-12|TAKE BACK RETURN|REG AIR|e alongside of the slyly regular de| +89352|618990|6527|1|31|59177.76|0.02|0.01|N|O|1998-07-13|1998-08-20|1998-08-05|TAKE BACK RETURN|RAIL|nod slyly furiously unusual foxe| +89352|360519|23027|2|14|22113.00|0.05|0.08|N|O|1998-09-11|1998-08-19|1998-10-01|COLLECT COD|FOB|y even theodolites. even, ev| +89352|236377|11386|3|44|57787.84|0.03|0.03|N|O|1998-10-14|1998-08-24|1998-10-22|COLLECT COD|TRUCK|ts! ideas cajole of the ideas. final theod| +89352|784397|46913|4|4|5925.44|0.03|0.05|N|O|1998-07-13|1998-08-10|1998-08-05|NONE|TRUCK|ests across | +89352|344279|6786|5|44|58223.44|0.09|0.06|N|O|1998-08-22|1998-09-01|1998-09-15|TAKE BACK RETURN|AIR|ies. furiously| +89353|943555|31110|1|15|23977.65|0.07|0.04|N|O|1997-07-05|1997-07-10|1997-07-31|NONE|AIR| express, unusual co| +89353|326690|1703|2|41|70383.88|0.03|0.04|N|O|1997-05-16|1997-06-09|1997-05-24|TAKE BACK RETURN|AIR|ngside of the slyly | +89353|667916|5456|3|35|65935.80|0.05|0.01|N|O|1997-07-10|1997-06-15|1997-08-06|TAKE BACK RETURN|MAIL|ts. theodolites cajole even dep| +89353|648156|10669|4|41|45268.92|0.00|0.02|N|O|1997-05-09|1997-07-17|1997-05-26|TAKE BACK RETURN|TRUCK|accounts. | +89353|552150|14662|5|16|19234.08|0.08|0.05|N|O|1997-08-03|1997-07-21|1997-08-20|DELIVER IN PERSON|REG AIR|egular theodolites| +89354|80785|43287|1|18|31784.04|0.01|0.03|R|F|1994-12-30|1995-03-10|1995-01-11|COLLECT COD|MAIL|quests. regularly even dependen| +89354|739131|39132|2|40|46804.00|0.04|0.02|A|F|1995-01-20|1995-02-25|1995-02-03|DELIVER IN PERSON|FOB|kly regular instructions around the| +89354|562998|12999|3|45|92743.65|0.06|0.04|R|F|1995-03-18|1995-02-17|1995-04-01|NONE|FOB|riously express, regul| +89354|291998|29514|4|17|33829.66|0.02|0.02|A|F|1995-02-08|1995-02-21|1995-02-12|NONE|RAIL| pinto beans after the boldly enti| +89355|795275|7791|1|9|12332.16|0.05|0.05|N|O|1995-07-23|1995-06-12|1995-08-11|DELIVER IN PERSON|TRUCK|iously unusu| +89355|175387|12897|2|29|42409.02|0.10|0.01|R|F|1995-05-14|1995-06-30|1995-06-06|DELIVER IN PERSON|RAIL|tes thrash fluffily furio| +89355|713380|13381|3|43|59914.05|0.03|0.03|A|F|1995-05-21|1995-06-15|1995-06-13|NONE|MAIL|ideas haggle regular ideas. regular, bol| +89355|764824|27340|4|18|33998.22|0.00|0.07|N|F|1995-06-13|1995-06-05|1995-07-07|TAKE BACK RETURN|SHIP|es against the fluffily bol| +89356|693527|6041|1|12|18245.88|0.06|0.02|R|F|1994-03-19|1994-05-06|1994-03-20|TAKE BACK RETURN|REG AIR|the ruthlessly unusual forges. ironically| +89356|105087|5088|2|5|5460.40|0.05|0.04|R|F|1994-04-12|1994-04-28|1994-04-23|TAKE BACK RETURN|MAIL|counts should na| +89357|254540|4541|1|17|25407.01|0.05|0.08|N|O|1996-04-24|1996-06-15|1996-05-19|DELIVER IN PERSON|RAIL|detect silent frays.| +89357|39306|39307|2|43|53547.90|0.07|0.06|N|O|1996-06-10|1996-06-18|1996-06-14|DELIVER IN PERSON|REG AIR| blithely unusua| +89357|600351|12864|3|42|52555.44|0.02|0.07|N|O|1996-07-24|1996-06-07|1996-07-26|COLLECT COD|AIR| final packages nod quickly. slyly reg| +89357|83801|21305|4|2|3569.60|0.04|0.00|N|O|1996-08-13|1996-07-06|1996-08-27|TAKE BACK RETURN|MAIL|the ironic deposits| +89357|430517|5534|5|30|43424.70|0.10|0.07|N|O|1996-07-09|1996-06-15|1996-07-26|COLLECT COD|TRUCK|es boost. pending ideas across the fur| +89357|685263|10290|6|24|29957.52|0.07|0.06|N|O|1996-07-07|1996-06-26|1996-07-10|NONE|MAIL|ironic request| +89358|40396|27897|1|9|12027.51|0.01|0.08|R|F|1992-08-29|1992-08-20|1992-08-30|DELIVER IN PERSON|SHIP|thlessly re| +89358|920817|33336|2|37|67997.49|0.00|0.02|R|F|1992-09-13|1992-07-18|1992-09-18|TAKE BACK RETURN|AIR|uickly quickly slow accoun| +89358|156705|6706|3|5|8808.50|0.03|0.07|R|F|1992-07-16|1992-08-22|1992-08-12|NONE|SHIP|ithely special deposits use regular| +89358|727451|27452|4|14|20697.88|0.05|0.04|A|F|1992-09-26|1992-07-09|1992-10-22|TAKE BACK RETURN|AIR|al theodolites affi| +89359|969307|31827|1|21|28901.46|0.06|0.03|N|O|1997-02-04|1997-03-06|1997-02-18|NONE|MAIL|ts. blithely ironic instruct| +89359|133292|20799|2|34|45059.86|0.06|0.06|N|O|1997-02-04|1997-04-21|1997-02-09|TAKE BACK RETURN|RAIL|l accounts. furiously regular | +89359|229204|16717|3|1|1133.19|0.03|0.01|N|O|1997-04-24|1997-03-22|1997-05-10|DELIVER IN PERSON|FOB|. instructions cajole according| +89384|742230|4745|1|20|25444.00|0.02|0.05|A|F|1995-03-24|1995-04-14|1995-03-26|NONE|AIR| cajole fluffily above the slyly sly pa| +89384|646061|46062|2|37|37260.11|0.08|0.03|A|F|1995-02-27|1995-04-14|1995-03-15|NONE|REG AIR|. slyly even foxes sleep. fluffily | +89384|332213|19732|3|20|24904.00|0.05|0.04|A|F|1995-02-28|1995-03-27|1995-03-27|COLLECT COD|MAIL|slyly ironic depths haggle| +89384|493617|43618|4|44|70865.96|0.02|0.05|R|F|1995-02-15|1995-04-18|1995-03-07|COLLECT COD|AIR|nts. bold pa| +89384|210492|48005|5|28|39269.44|0.09|0.00|N|F|1995-05-29|1995-04-15|1995-06-21|NONE|TRUCK|sits sleep blithely| +89385|534174|21705|1|3|3624.45|0.08|0.00|N|O|1996-04-17|1996-03-30|1996-04-25|TAKE BACK RETURN|FOB| theodolites wake | +89385|850760|761|2|34|58164.48|0.04|0.03|N|O|1996-03-20|1996-05-27|1996-03-30|DELIVER IN PERSON|TRUCK|heaves use slyly above| +89385|713721|38750|3|23|39897.87|0.07|0.03|N|O|1996-06-18|1996-05-19|1996-06-30|TAKE BACK RETURN|FOB|packages. even ide| +89385|505286|42817|4|26|33572.76|0.06|0.04|N|O|1996-06-21|1996-05-26|1996-07-07|COLLECT COD|TRUCK|s instructions. special pint| +89386|208523|33532|1|7|10020.57|0.00|0.03|N|O|1995-07-09|1995-07-24|1995-07-20|DELIVER IN PERSON|MAIL|old theodolites use. regular pint| +89386|632197|7222|2|26|29358.16|0.00|0.07|N|O|1995-07-14|1995-06-07|1995-07-21|DELIVER IN PERSON|SHIP|usual packages wake quickly. | +89386|324960|12479|3|45|89322.75|0.00|0.06|N|O|1995-08-02|1995-06-16|1995-08-04|TAKE BACK RETURN|REG AIR|etect carefully along the p| +89387|216875|41884|1|42|75258.12|0.08|0.00|N|F|1995-06-07|1995-04-16|1995-06-22|TAKE BACK RETURN|REG AIR| blithely ironic requests. pending, bo| +89387|8476|33477|2|23|31842.81|0.04|0.03|R|F|1995-04-08|1995-03-20|1995-04-25|COLLECT COD|AIR| slyly brave foxes boost. unus| +89387|448264|35789|3|17|20608.08|0.02|0.07|R|F|1995-05-20|1995-04-29|1995-05-24|TAKE BACK RETURN|MAIL|e after the carefully| +89387|963488|13489|4|26|40337.44|0.02|0.05|A|F|1995-05-15|1995-04-20|1995-06-11|NONE|SHIP|sual ideas poach slyly. furi| +89387|339224|26743|5|34|42949.14|0.07|0.00|A|F|1995-04-03|1995-03-31|1995-05-03|DELIVER IN PERSON|TRUCK|ly unusual dependencies are quickly. sly| +89388|601664|14177|1|49|76715.87|0.07|0.04|R|F|1995-03-06|1995-01-31|1995-03-29|TAKE BACK RETURN|FOB| instructions. ironic deposits are blithel| +89388|164665|2175|2|3|5188.98|0.03|0.01|A|F|1995-04-15|1995-02-19|1995-04-29|TAKE BACK RETURN|REG AIR| for the ruthless pinto beans. fluffily sp| +89388|516792|29303|3|29|52454.33|0.00|0.03|A|F|1995-02-01|1995-03-23|1995-02-08|DELIVER IN PERSON|FOB|ronic, regular| +89388|716195|28710|4|32|38757.12|0.03|0.01|A|F|1995-01-05|1995-03-25|1995-01-27|COLLECT COD|AIR|s-- final accounts | +89388|88751|38752|5|48|83508.00|0.03|0.00|R|F|1995-02-23|1995-03-17|1995-03-08|TAKE BACK RETURN|TRUCK|boost stealthily regular pinto be| +89388|623531|36044|6|32|46544.00|0.07|0.08|A|F|1995-01-22|1995-03-23|1995-02-05|DELIVER IN PERSON|SHIP|refully aft| +89388|669490|44517|7|19|27729.74|0.03|0.08|A|F|1995-03-03|1995-02-21|1995-03-06|TAKE BACK RETURN|RAIL| furiously final reques| +89389|108305|8306|1|17|22326.10|0.03|0.00|N|O|1996-02-11|1996-03-10|1996-02-16|NONE|MAIL|sly regular escapades wake instructions. | +89389|265470|15471|2|41|58853.86|0.03|0.00|N|O|1996-04-29|1996-04-20|1996-05-22|NONE|SHIP|g closely final packages. | +89389|747914|22943|3|26|51008.88|0.08|0.06|N|O|1996-03-20|1996-04-16|1996-03-23|NONE|SHIP|deposits against | +89389|179107|16617|4|49|58118.90|0.07|0.02|N|O|1996-03-15|1996-04-01|1996-03-27|COLLECT COD|SHIP|its need to sleep | +89390|976664|26665|1|43|74846.66|0.04|0.06|R|F|1994-01-15|1994-02-13|1994-01-29|DELIVER IN PERSON|TRUCK|slyly across th| +89391|46362|46363|1|40|52334.40|0.04|0.07|N|O|1996-06-19|1996-06-12|1996-07-17|TAKE BACK RETURN|MAIL|s. special, regular ac| +89391|191453|16460|2|13|20077.85|0.05|0.07|N|O|1996-07-22|1996-06-18|1996-08-14|TAKE BACK RETURN|SHIP|ze slyly deposits| +89391|750003|25034|3|36|37906.92|0.04|0.01|N|O|1996-05-31|1996-06-29|1996-06-15|NONE|TRUCK|as unwind final, | +89416|746651|9166|1|45|76392.90|0.05|0.07|N|O|1997-08-17|1997-07-03|1997-09-06|TAKE BACK RETURN|MAIL|uriously fluffy request| +89416|962743|25263|2|43|77645.10|0.04|0.08|N|O|1997-06-24|1997-06-12|1997-07-20|NONE|RAIL|ress ideas cajole blith| +89416|813253|13254|3|20|23324.20|0.05|0.05|N|O|1997-08-05|1997-06-28|1997-08-22|NONE|MAIL|eas. even accounts above t| +89416|328267|28268|4|45|58286.25|0.07|0.00|N|O|1997-05-06|1997-07-13|1997-05-30|DELIVER IN PERSON|FOB|jole at the| +89417|61380|48884|1|16|21462.08|0.02|0.07|R|F|1995-05-21|1995-08-16|1995-06-04|DELIVER IN PERSON|AIR|slyly. fluffily unusual accounts cajole. c| +89418|837872|37873|1|4|7239.32|0.09|0.06|A|F|1995-05-17|1995-07-17|1995-06-01|TAKE BACK RETURN|AIR|arefully furious foxes thrash f| +89418|103933|41440|2|11|21306.23|0.06|0.04|N|O|1995-08-01|1995-06-14|1995-08-11|NONE|TRUCK|rve slyly reques| +89419|599842|12354|1|35|67963.70|0.06|0.00|N|O|1995-09-03|1995-09-03|1995-09-21|COLLECT COD|SHIP|ages could nag arou| +89419|544238|6749|2|17|21797.57|0.00|0.05|N|O|1995-08-26|1995-08-13|1995-08-27|COLLECT COD|MAIL| dogged epitaphs. ironic reques| +89419|998353|23392|3|12|17415.72|0.05|0.01|N|O|1995-09-05|1995-08-24|1995-09-28|TAKE BACK RETURN|SHIP|lithely quickly regular instructions. | +89419|316872|16873|4|27|50999.22|0.04|0.02|N|O|1995-10-04|1995-10-10|1995-10-26|NONE|MAIL|ns. carefully bold | +89419|665754|3294|5|47|80826.84|0.09|0.05|N|O|1995-10-13|1995-08-19|1995-10-28|COLLECT COD|TRUCK| furiously ironic deposits. silently | +89419|322940|22941|6|43|84405.99|0.06|0.07|N|O|1995-07-19|1995-09-24|1995-08-12|DELIVER IN PERSON|AIR|according to the carefully un| +89419|640716|40717|7|27|44730.36|0.07|0.02|N|O|1995-09-01|1995-09-14|1995-09-11|DELIVER IN PERSON|MAIL|hely final package| +89420|505748|18259|1|8|14029.76|0.08|0.01|N|O|1998-10-18|1998-09-23|1998-11-04|NONE|RAIL|s along the quickly regular tithes haggle| +89420|105529|30534|2|24|36828.48|0.09|0.06|N|O|1998-09-05|1998-09-30|1998-10-02|TAKE BACK RETURN|REG AIR|cording to the regul| +89420|618267|18268|3|4|4740.92|0.02|0.04|N|O|1998-09-11|1998-09-18|1998-09-28|DELIVER IN PERSON|MAIL|bold instructions maintain care| +89421|665960|3500|1|14|26963.02|0.06|0.01|A|F|1994-12-16|1995-02-02|1995-01-04|DELIVER IN PERSON|AIR|ironic pint| +89421|785380|47896|2|43|63010.05|0.09|0.05|A|F|1994-12-18|1995-01-12|1995-01-06|TAKE BACK RETURN|RAIL|unts haggle| +89421|878955|3990|3|33|63819.03|0.03|0.05|R|F|1995-02-15|1995-01-28|1995-02-16|TAKE BACK RETURN|REG AIR|n, pending | +89421|589525|2037|4|26|41977.00|0.02|0.05|R|F|1994-12-20|1994-12-12|1994-12-27|DELIVER IN PERSON|TRUCK|sly regular attainments wake q| +89421|134443|46946|5|31|45800.64|0.08|0.07|R|F|1994-12-19|1995-01-26|1995-01-15|TAKE BACK RETURN|RAIL|n theodolites haggle quietly carefully| +89421|573468|11002|6|8|12331.52|0.04|0.00|A|F|1995-02-03|1995-01-17|1995-02-23|TAKE BACK RETURN|REG AIR|s. final packages| +89422|113361|38366|1|33|45353.88|0.04|0.06|R|F|1992-08-20|1992-10-04|1992-08-27|NONE|RAIL|p furiously pe| +89422|244297|44298|2|5|6206.40|0.01|0.06|A|F|1992-10-05|1992-09-08|1992-10-27|NONE|FOB|ss pinto beans. quickly unusual | +89422|893101|18136|3|16|17504.96|0.05|0.00|A|F|1992-11-11|1992-10-11|1992-12-01|TAKE BACK RETURN|FOB|ing, even sheaves| +89422|345975|20988|4|33|66691.68|0.09|0.07|R|F|1992-11-10|1992-09-16|1992-11-22|COLLECT COD|MAIL| ironic pinto beans. express, fina| +89422|788976|14007|5|9|18584.46|0.01|0.02|A|F|1992-10-03|1992-10-16|1992-10-13|NONE|REG AIR|s. slyly expres| +89422|317873|17874|6|42|79416.12|0.05|0.00|R|F|1992-09-03|1992-09-21|1992-09-05|DELIVER IN PERSON|FOB|ding deposits sleep after th| +89423|78145|3148|1|42|47171.88|0.06|0.08|R|F|1994-03-09|1994-02-16|1994-03-15|TAKE BACK RETURN|MAIL| foxes doze | +89423|375044|59|2|49|54832.47|0.08|0.04|R|F|1994-01-14|1994-02-22|1994-01-26|DELIVER IN PERSON|REG AIR|wly. quickly pen| +89423|349397|24410|3|31|44837.78|0.02|0.05|R|F|1994-03-12|1994-02-07|1994-04-02|NONE|FOB|l, final requests wake quiet| +89423|298922|48923|4|28|53785.48|0.07|0.02|A|F|1994-03-04|1994-02-10|1994-04-02|DELIVER IN PERSON|REG AIR|sts. furiously| +89423|975764|25765|5|35|64390.20|0.09|0.04|A|F|1994-01-16|1994-02-28|1994-02-05|NONE|FOB|egrate. ca| +89423|660905|10906|6|14|26122.18|0.06|0.00|A|F|1993-12-07|1994-01-12|1994-01-01|TAKE BACK RETURN|TRUCK|latelets along the asymptotes will have| +89423|819749|44782|7|49|81766.30|0.06|0.07|R|F|1994-02-24|1994-02-12|1994-03-09|DELIVER IN PERSON|FOB| doubt according to the express, bold| +89448|506478|31499|1|14|20782.30|0.00|0.04|R|F|1994-02-26|1994-02-11|1994-03-03|COLLECT COD|FOB| unusual packages above the careful| +89448|373230|10752|2|34|44309.48|0.04|0.08|A|F|1994-02-12|1993-12-26|1994-02-16|TAKE BACK RETURN|REG AIR|quests wake carefully. b| +89448|865039|40074|3|36|36143.64|0.07|0.04|A|F|1994-02-04|1994-01-01|1994-02-09|NONE|FOB|ously express sheaves. carefully unu| +89448|696468|8982|4|38|55648.34|0.02|0.00|A|F|1994-02-01|1994-02-16|1994-02-27|NONE|SHIP|dly express dependencies. f| +89448|530573|18104|5|13|20846.15|0.05|0.00|R|F|1993-12-17|1994-02-20|1993-12-30|NONE|FOB|ve the special| +89448|329102|4115|6|20|22621.80|0.08|0.04|A|F|1993-11-26|1994-01-11|1993-12-16|DELIVER IN PERSON|AIR| carefully ironic accounts. quickly | +89449|302118|2119|1|25|28002.50|0.01|0.08|N|O|1998-04-28|1998-03-18|1998-05-04|COLLECT COD|MAIL|counts are quickly fluffily busy de| +89449|688371|25911|2|20|27186.80|0.04|0.04|N|O|1998-05-26|1998-04-21|1998-06-18|NONE|MAIL|old, ironic accounts. | +89450|308887|21394|1|11|20854.57|0.02|0.05|A|F|1994-05-19|1994-04-28|1994-05-24|NONE|SHIP|have to haggle blithely iro| +89450|448382|35907|2|26|34589.36|0.07|0.07|A|F|1994-05-17|1994-03-24|1994-05-28|TAKE BACK RETURN|REG AIR|detect silent| +89450|941251|41252|3|23|29720.83|0.01|0.07|A|F|1994-06-05|1994-04-09|1994-06-08|DELIVER IN PERSON|MAIL| requests haggle blithely about th| +89450|595976|20999|4|2|4143.90|0.01|0.01|A|F|1994-03-17|1994-03-25|1994-03-25|COLLECT COD|MAIL|fully carefully | +89450|564993|27505|5|41|84376.77|0.01|0.01|R|F|1994-03-31|1994-04-28|1994-04-02|COLLECT COD|MAIL|instructions. slyly final packages ha| +89450|832365|32366|6|35|45406.20|0.00|0.06|R|F|1994-04-03|1994-04-02|1994-04-20|TAKE BACK RETURN|SHIP|lways regular accoun| +89451|245846|20855|1|8|14334.64|0.07|0.08|A|F|1993-01-20|1992-11-20|1993-02-15|NONE|RAIL|ly above the quickly b| +89451|926533|39052|2|32|49903.68|0.01|0.05|R|F|1992-11-14|1992-11-07|1992-11-19|NONE|MAIL|tegrate furiously around t| +89451|224472|24473|3|23|32118.58|0.08|0.01|R|F|1993-01-12|1992-12-06|1993-02-10|DELIVER IN PERSON|RAIL|ackages. slyly express warthogs integra| +89452|363259|781|1|20|26444.80|0.04|0.03|R|F|1992-04-03|1992-04-16|1992-04-08|TAKE BACK RETURN|MAIL|requests haggle fluffily up| +89452|293105|5611|2|33|36236.97|0.08|0.04|R|F|1992-04-06|1992-04-23|1992-04-26|DELIVER IN PERSON|RAIL|its sleep furiously fluffily | +89452|201590|14095|3|33|49222.14|0.03|0.03|A|F|1992-05-16|1992-04-17|1992-05-21|DELIVER IN PERSON|SHIP|aggle about th| +89452|122806|10313|4|48|87782.40|0.04|0.05|R|F|1992-03-16|1992-04-11|1992-04-05|COLLECT COD|SHIP|uctions wake blithely beneath the fluff| +89453|142813|42814|1|12|22269.72|0.05|0.04|A|F|1993-01-23|1992-11-01|1993-02-16|NONE|FOB|lly. accounts about the special| +89453|257848|32859|2|27|48757.41|0.04|0.03|R|F|1993-01-24|1992-12-13|1993-01-30|DELIVER IN PERSON|SHIP|usly-- blithely ev| +89453|647373|47374|3|18|23766.12|0.03|0.06|R|F|1992-12-15|1992-12-09|1993-01-05|COLLECT COD|REG AIR|ackages. brave req| +89453|391883|41884|4|16|31597.92|0.08|0.01|A|F|1992-11-18|1992-11-07|1992-11-20|NONE|FOB|ly regular instructions. | +89453|375562|38070|5|21|34388.55|0.04|0.00|A|F|1992-11-15|1992-11-19|1992-12-02|TAKE BACK RETURN|REG AIR|the furiously bold accounts nod b| +89453|62212|24714|6|17|19961.57|0.09|0.00|R|F|1992-11-10|1992-10-30|1992-11-18|COLLECT COD|MAIL|ely. packages are against the fur| +89453|583102|45614|7|47|55698.76|0.09|0.06|R|F|1993-01-10|1992-12-23|1993-02-01|TAKE BACK RETURN|TRUCK|nal deposits haggle quickly pe| +89454|179172|41676|1|15|18767.55|0.04|0.05|N|O|1998-06-20|1998-07-10|1998-07-07|COLLECT COD|RAIL|riously slow deposit| +89454|341370|41371|2|28|39518.08|0.00|0.05|N|O|1998-07-29|1998-07-09|1998-08-06|NONE|FOB|al asymptotes | +89455|482679|32680|1|12|19939.80|0.00|0.03|R|F|1993-09-28|1993-09-14|1993-10-06|COLLECT COD|SHIP|ial ideas cajole th| +89455|385897|48405|2|50|99144.00|0.07|0.07|A|F|1993-08-20|1993-08-26|1993-08-23|TAKE BACK RETURN|TRUCK|y blithely ironic deposits. pending, r| +89455|758381|33412|3|48|69088.80|0.00|0.08|A|F|1993-08-31|1993-09-27|1993-09-01|DELIVER IN PERSON|RAIL|lyly silent deposits across | +89455|107192|32197|4|31|37174.89|0.01|0.02|A|F|1993-10-01|1993-09-26|1993-10-19|NONE|FOB| furiously even theodolites wake| +89480|569288|31800|1|35|47504.10|0.05|0.00|A|F|1994-01-12|1994-01-30|1994-01-30|NONE|RAIL| blithely. slyly pending ideas cajol| +89480|20181|32682|2|33|36338.94|0.02|0.01|R|F|1994-02-26|1994-03-08|1994-03-12|NONE|FOB|uick ideas | +89480|170606|45613|3|23|38561.80|0.04|0.04|A|F|1994-01-16|1994-03-08|1994-02-06|DELIVER IN PERSON|MAIL|e carefully final theodolites| +89481|18860|43861|1|16|28461.76|0.05|0.08|A|F|1994-12-14|1994-12-23|1995-01-04|DELIVER IN PERSON|RAIL|blithely silent ideas sleep according to t| +89482|600834|38371|1|15|26022.00|0.07|0.00|R|F|1995-03-27|1995-02-22|1995-04-10|COLLECT COD|RAIL|foxes are furiously e| +89482|200434|37947|2|39|52042.38|0.03|0.06|A|F|1995-03-24|1995-01-14|1995-03-26|TAKE BACK RETURN|AIR|ove the silent, | +89482|692146|42147|3|43|48938.73|0.09|0.03|R|F|1994-12-26|1995-01-22|1995-01-25|COLLECT COD|SHIP| the accounts. regular deposits slee| +89482|897648|10166|4|3|4936.80|0.06|0.02|R|F|1995-03-15|1995-01-14|1995-04-11|COLLECT COD|AIR|regular th| +89482|756266|6267|5|44|58178.12|0.06|0.08|R|F|1995-04-01|1995-02-17|1995-04-16|COLLECT COD|MAIL|ng to the carefully regular accounts.| +89483|563645|1179|1|33|56384.46|0.09|0.05|R|F|1994-06-19|1994-05-31|1994-06-24|TAKE BACK RETURN|RAIL| instructions nag slyly expre| +89483|178939|16449|2|45|90806.85|0.07|0.02|R|F|1994-04-10|1994-05-15|1994-05-03|NONE|FOB|press depths are carefully. fi| +89484|550166|167|1|23|27971.22|0.01|0.05|R|F|1993-11-20|1993-12-19|1993-12-12|NONE|AIR|quests mol| +89484|639007|39008|2|19|17973.43|0.06|0.00|R|F|1994-02-05|1994-01-19|1994-02-21|COLLECT COD|REG AIR|ng the even,| +89484|775914|38430|3|16|31838.08|0.02|0.01|A|F|1994-01-25|1994-01-20|1994-02-10|NONE|RAIL|ages promise furiously f| +89484|775959|13505|4|45|91571.40|0.06|0.04|R|F|1994-02-22|1993-12-18|1994-03-06|DELIVER IN PERSON|RAIL|ole furiously. regular, special ex| +89484|529810|4831|5|16|29436.64|0.07|0.01|A|F|1993-11-13|1993-12-02|1993-11-15|NONE|RAIL|ts! requests according to th| +89485|26491|26492|1|14|19844.86|0.05|0.06|N|O|1998-08-20|1998-09-20|1998-09-15|COLLECT COD|MAIL|y final ideas. foxes nag packages. caref| +89485|232333|44838|2|35|44286.20|0.09|0.03|N|O|1998-11-07|1998-10-10|1998-11-20|DELIVER IN PERSON|AIR|s haggle. | +89485|819079|6628|3|25|24950.75|0.04|0.05|N|O|1998-10-16|1998-09-04|1998-10-23|DELIVER IN PERSON|REG AIR| carefully regular deposits| +89485|250602|13108|4|19|29499.21|0.05|0.05|N|O|1998-08-03|1998-10-06|1998-08-04|COLLECT COD|RAIL|ges. furiously regular packages| +89485|857860|7861|5|33|59988.06|0.10|0.06|N|O|1998-08-28|1998-10-18|1998-09-16|COLLECT COD|REG AIR|theodolites wake blithely.| +89485|46263|21264|6|18|21766.68|0.02|0.06|N|O|1998-08-30|1998-09-29|1998-09-29|COLLECT COD|FOB|al, express | +89485|535386|47897|7|14|19899.04|0.00|0.06|N|O|1998-11-08|1998-09-02|1998-11-30|TAKE BACK RETURN|FOB|s deposits alongside of | +89486|222494|22495|1|35|49576.80|0.07|0.03|N|O|1997-12-06|1998-01-05|1998-01-01|TAKE BACK RETURN|AIR|. furiously daring foxes wake fluf| +89486|446284|46285|2|6|7381.56|0.05|0.04|N|O|1997-12-27|1998-02-07|1998-01-24|COLLECT COD|SHIP|ecial ideas breach. unusual excus| +89487|14481|1982|1|50|69774.00|0.06|0.01|N|O|1998-05-19|1998-04-08|1998-06-16|DELIVER IN PERSON|REG AIR|y unusual, final| +89487|376793|26794|2|34|63572.52|0.00|0.06|N|O|1998-02-19|1998-03-24|1998-03-14|TAKE BACK RETURN|REG AIR|ent deposit| +89512|559493|9494|1|30|46574.10|0.10|0.07|N|O|1998-01-09|1997-11-04|1998-01-17|TAKE BACK RETURN|MAIL|iously bold dependencies. furious| +89512|393208|30730|2|24|31228.56|0.09|0.05|N|O|1997-11-07|1997-11-28|1997-12-01|NONE|REG AIR|r theodolites cajole slyly along th| +89512|635415|10440|3|49|66168.62|0.02|0.06|N|O|1997-12-26|1997-11-06|1998-01-20|TAKE BACK RETURN|RAIL|indle according to the bold dependencies. f| +89512|417702|17703|4|42|68026.56|0.01|0.03|N|O|1997-10-14|1997-11-10|1997-10-23|TAKE BACK RETURN|SHIP| carefully unusual depend| +89513|750804|805|1|13|24112.01|0.09|0.08|N|O|1997-08-31|1997-09-30|1997-09-18|DELIVER IN PERSON|RAIL|quests haggl| +89513|748059|35602|2|23|25461.46|0.03|0.03|N|O|1997-10-26|1997-10-12|1997-10-30|NONE|REG AIR|ackages according to the quick| +89513|624949|37462|3|13|24360.83|0.00|0.01|N|O|1997-10-08|1997-08-22|1997-11-02|TAKE BACK RETURN|RAIL|ly about the furiously pending fo| +89513|504236|29257|4|37|45887.77|0.05|0.04|N|O|1997-07-30|1997-09-08|1997-08-22|DELIVER IN PERSON|AIR|tes are fluffily accordin| +89513|681365|6392|5|14|18848.62|0.01|0.00|N|O|1997-08-02|1997-10-11|1997-08-31|TAKE BACK RETURN|SHIP| blithely ironic packages above the slyl| +89513|693501|43502|6|30|44834.10|0.03|0.03|N|O|1997-09-01|1997-09-11|1997-09-04|DELIVER IN PERSON|RAIL|furiously bold ide| +89513|664329|14330|7|3|3879.87|0.06|0.02|N|O|1997-08-10|1997-10-09|1997-08-29|NONE|SHIP| mold. slyly unusual accoun| +89514|367378|17379|1|27|39024.72|0.04|0.01|N|O|1996-01-21|1995-11-06|1996-01-22|DELIVER IN PERSON|FOB|ly special accounts wake slyly after | +89514|518820|31331|2|31|57002.80|0.01|0.05|N|O|1995-12-20|1995-11-08|1995-12-21|TAKE BACK RETURN|SHIP|al excuses around the re| +89514|798359|48360|3|34|49548.88|0.10|0.02|N|O|1995-10-15|1995-12-08|1995-10-24|COLLECT COD|FOB|nts. blithe depende| +89514|7027|32028|4|50|46701.00|0.01|0.07|N|O|1995-10-26|1995-12-12|1995-11-06|DELIVER IN PERSON|MAIL|y special ideas wake according to the unusu| +89515|664663|39690|1|9|14648.67|0.06|0.00|A|F|1993-01-08|1993-03-26|1993-02-04|DELIVER IN PERSON|TRUCK|ular theodolites. even, regula| +89515|983980|46500|2|2|4127.88|0.01|0.01|A|F|1993-02-14|1993-02-04|1993-03-06|COLLECT COD|REG AIR|kages. blithely ironic requests hag| +89515|744019|6534|3|21|22322.58|0.03|0.00|A|F|1993-03-01|1993-02-04|1993-03-24|NONE|AIR|y regular account| +89516|30917|43418|1|4|7391.64|0.06|0.01|R|F|1994-09-05|1994-08-21|1994-09-13|DELIVER IN PERSON|AIR|l foxes. carefully spec| +89516|607588|7589|2|25|37388.75|0.07|0.01|A|F|1994-09-27|1994-07-28|1994-10-01|COLLECT COD|MAIL|ependencies among the c| +89516|728925|28926|3|41|80109.49|0.09|0.05|R|F|1994-10-18|1994-08-05|1994-11-06|COLLECT COD|FOB|hs. express, bold packages are blithely| +89516|35484|35485|4|18|25550.64|0.06|0.05|R|F|1994-10-05|1994-08-05|1994-10-20|NONE|TRUCK|doze. slyly ruthless reques| +89516|362850|12851|5|19|36343.96|0.01|0.04|R|F|1994-07-24|1994-08-01|1994-08-06|DELIVER IN PERSON|TRUCK| hinder carefully ironic| +89516|411683|24192|6|9|14351.94|0.08|0.03|A|F|1994-10-07|1994-09-10|1994-10-29|TAKE BACK RETURN|AIR|yly ironic packages. iron| +89516|154450|29457|7|24|36106.80|0.05|0.04|R|F|1994-07-28|1994-08-26|1994-08-13|TAKE BACK RETURN|FOB|iously regu| +89517|831608|6641|1|31|47726.36|0.08|0.05|A|F|1994-08-24|1994-06-10|1994-09-09|DELIVER IN PERSON|SHIP|s believe at the furiously i| +89517|826768|1801|2|44|74567.68|0.07|0.05|R|F|1994-06-11|1994-07-02|1994-07-06|DELIVER IN PERSON|REG AIR|efully unusual ideas affix| +89517|481036|18564|3|16|16272.16|0.10|0.06|A|F|1994-06-06|1994-06-23|1994-06-19|DELIVER IN PERSON|FOB|dle. permanently express deposits s| +89517|755558|18074|4|22|35497.44|0.01|0.06|A|F|1994-08-02|1994-06-29|1994-08-23|COLLECT COD|REG AIR|y at the slyly express r| +89518|381506|19028|1|49|77787.01|0.01|0.03|R|F|1994-01-27|1993-12-07|1994-02-16|COLLECT COD|AIR|ptotes haggle carefu| +89518|955406|5407|2|23|33611.28|0.08|0.06|A|F|1993-12-12|1993-12-28|1994-01-07|TAKE BACK RETURN|MAIL|s. blithely special deposits slee| +89519|407494|32511|1|37|51854.39|0.00|0.08|N|O|1996-11-23|1996-10-07|1996-11-24|DELIVER IN PERSON|RAIL|detect final foxes. slyly| +89519|735949|10978|2|17|33743.47|0.07|0.03|N|O|1996-08-29|1996-09-03|1996-09-24|COLLECT COD|TRUCK|nic gifts. | +89519|86700|11703|3|25|42167.50|0.03|0.02|N|O|1996-08-01|1996-08-31|1996-08-07|TAKE BACK RETURN|SHIP|ross the furious| +89519|157813|7814|4|35|65478.35|0.01|0.07|N|O|1996-10-31|1996-09-17|1996-11-23|DELIVER IN PERSON|REG AIR|ect bold, silent packages. slyl| +89519|347292|22305|5|4|5357.12|0.05|0.06|N|O|1996-10-27|1996-09-25|1996-11-01|COLLECT COD|MAIL|y pending foxes wake unusual theodo| +89519|924054|49091|6|14|15092.14|0.03|0.02|N|O|1996-08-09|1996-09-02|1996-08-12|DELIVER IN PERSON|MAIL|regularly final packages. ironic packages| +89519|566406|16407|7|21|30919.98|0.05|0.06|N|O|1996-08-27|1996-09-12|1996-09-15|DELIVER IN PERSON|MAIL|nic requests sl| +89544|584402|34403|1|24|35673.12|0.02|0.01|N|O|1998-10-21|1998-09-16|1998-11-06|NONE|RAIL|s. regular accounts grow finally. bl| +89544|28110|15611|2|38|39448.18|0.03|0.02|N|O|1998-07-31|1998-08-22|1998-08-18|NONE|REG AIR|r pinto beans boost. regular requ| +89544|436832|24357|3|1|1768.81|0.00|0.06|N|O|1998-08-31|1998-08-22|1998-09-14|TAKE BACK RETURN|MAIL|yly unusual instructions s| +89544|828353|40870|4|45|57658.95|0.06|0.05|N|O|1998-08-23|1998-09-30|1998-09-21|TAKE BACK RETURN|REG AIR|ar requests dete| +89544|128578|41081|5|29|46590.53|0.02|0.06|N|O|1998-09-24|1998-10-05|1998-10-03|DELIVER IN PERSON|SHIP|s haggle c| +89544|9677|22178|6|14|22213.38|0.07|0.06|N|O|1998-08-15|1998-08-17|1998-08-27|NONE|SHIP|r packages haggle blithely. regul| +89544|627344|14881|7|48|61022.88|0.07|0.07|N|O|1998-08-16|1998-10-05|1998-09-10|COLLECT COD|FOB|hely ironic packages. deposit| +89545|761858|24374|1|16|30717.12|0.02|0.08|N|O|1996-07-12|1996-06-13|1996-07-27|COLLECT COD|SHIP|o sleep carefull| +89546|207702|20207|1|29|46681.01|0.06|0.05|N|O|1996-12-04|1996-12-21|1996-12-06|TAKE BACK RETURN|RAIL|e of the final, regular tit| +89546|843535|6052|2|7|10349.43|0.07|0.06|N|O|1997-01-06|1997-01-01|1997-01-08|DELIVER IN PERSON|RAIL|sits about the even, special accounts u| +89547|24091|24092|1|9|9135.81|0.04|0.04|A|F|1993-03-24|1993-05-19|1993-04-11|TAKE BACK RETURN|SHIP|deposits use never carefully even packa| +89547|894138|6656|2|39|44151.51|0.01|0.07|A|F|1993-06-23|1993-05-16|1993-07-01|TAKE BACK RETURN|RAIL|kly along the fluffy pinto beans. bold pin| +89547|775236|267|3|45|59004.00|0.04|0.06|R|F|1993-05-18|1993-04-30|1993-05-26|DELIVER IN PERSON|AIR|luffily pending dependencies sleep | +89547|390869|3377|4|10|19598.50|0.10|0.02|R|F|1993-06-01|1993-05-26|1993-06-27|NONE|MAIL|x-ray. pending foxes | +89547|325558|38065|5|25|39588.50|0.10|0.03|R|F|1993-04-14|1993-05-06|1993-04-17|TAKE BACK RETURN|REG AIR|wake! blithely ironic dinos| +89548|731323|6352|1|16|21668.64|0.10|0.05|R|F|1994-08-18|1994-09-02|1994-09-14|DELIVER IN PERSON|REG AIR|s. carefully p| +89548|333349|8362|2|28|38705.24|0.05|0.07|A|F|1994-08-21|1994-10-28|1994-09-18|TAKE BACK RETURN|TRUCK|he slyly regular packages nod alongside| +89548|592470|17493|3|11|17186.95|0.01|0.01|R|F|1994-09-25|1994-09-11|1994-10-25|NONE|RAIL|de of the regular deposits. silent| +89549|551299|38833|1|30|40508.10|0.00|0.02|N|O|1995-10-11|1995-09-24|1995-10-25|NONE|REG AIR|uctions are slyly. eve| +89549|678606|3633|2|23|36445.11|0.02|0.00|N|O|1995-10-04|1995-10-07|1995-11-02|TAKE BACK RETURN|AIR| regular deposits haggle idly final| +89550|816587|29104|1|32|48113.28|0.02|0.07|A|F|1992-08-10|1992-06-23|1992-08-14|NONE|AIR|leep furiously express ideas. slyly bold| +89550|372295|9817|2|43|58793.04|0.09|0.06|A|F|1992-06-12|1992-06-03|1992-07-01|DELIVER IN PERSON|RAIL|ideas cajole across the furi| +89550|150378|379|3|14|19997.18|0.03|0.02|R|F|1992-08-11|1992-06-16|1992-08-12|COLLECT COD|REG AIR|s haggle carefully.| +89550|393202|5710|4|50|64759.50|0.01|0.06|R|F|1992-08-13|1992-07-17|1992-08-31|TAKE BACK RETURN|REG AIR|hes. blithely ironic d| +89550|536874|11895|5|40|76434.00|0.10|0.01|A|F|1992-06-29|1992-06-02|1992-07-09|NONE|SHIP|ely even pinto beans| +89550|225411|420|6|23|30737.20|0.04|0.01|R|F|1992-06-01|1992-07-15|1992-07-01|TAKE BACK RETURN|FOB|l theodolites use-- even, even asymptote| +89550|481141|6160|7|43|48251.16|0.02|0.05|R|F|1992-05-03|1992-06-22|1992-05-31|DELIVER IN PERSON|AIR|. furiously f| +89551|524380|11911|1|34|47748.24|0.07|0.05|N|O|1996-12-24|1997-01-25|1997-01-21|DELIVER IN PERSON|REG AIR|carefully pending dependencies whi| +89551|238939|1444|2|24|45070.08|0.02|0.00|N|O|1996-11-29|1997-01-03|1996-12-29|COLLECT COD|REG AIR| sleep slyly.| +89551|835689|10722|3|16|25994.24|0.08|0.07|N|O|1996-11-20|1997-01-22|1996-12-08|DELIVER IN PERSON|FOB|ckly furio| +89551|409297|9298|4|34|41013.18|0.02|0.08|N|O|1996-12-01|1996-12-30|1996-12-25|NONE|SHIP|t. furiously regular asymptotes| +89551|39299|14300|5|3|3714.87|0.05|0.08|N|O|1997-02-24|1996-12-14|1997-03-21|DELIVER IN PERSON|AIR|quickly regular dolphins. final| +89551|483190|20718|6|38|44580.46|0.02|0.07|N|O|1997-01-26|1997-01-06|1997-02-21|DELIVER IN PERSON|FOB|press foxes haggle c| +89551|963112|670|7|18|21151.26|0.08|0.03|N|O|1996-12-10|1997-01-31|1996-12-27|NONE|AIR|ctions use fluffily ironic excuses. r| +89576|18843|31344|1|37|65188.08|0.03|0.01|A|F|1993-09-08|1993-08-14|1993-09-16|COLLECT COD|FOB|sleep furiously e| +89577|915026|27545|1|29|30188.42|0.01|0.02|R|F|1992-11-15|1992-10-07|1992-11-22|NONE|RAIL|boost fluffily accounts. i| +89578|955529|5530|1|16|25351.68|0.09|0.02|A|F|1994-11-10|1994-10-25|1994-12-08|DELIVER IN PERSON|SHIP|osits cajole carefully express accou| +89578|561677|11678|2|36|62591.40|0.10|0.07|A|F|1994-12-28|1994-11-12|1995-01-19|NONE|AIR|ts snooze. slyly silent depende| +89578|100977|38484|3|20|39559.40|0.07|0.04|R|F|1994-09-09|1994-10-03|1994-09-18|COLLECT COD|TRUCK|unusual deposits haggle slyly. fu| +89579|576166|26167|1|28|34779.92|0.01|0.06|R|F|1994-12-13|1994-11-19|1995-01-03|NONE|MAIL|ar packages. regular foxes a| +89579|608807|46344|2|6|10294.62|0.05|0.03|R|F|1994-11-01|1994-11-09|1994-11-17|NONE|REG AIR| carefully. furiously exp| +89579|205916|43429|3|16|29150.40|0.09|0.04|A|F|1994-12-06|1994-11-05|1995-01-05|NONE|FOB|ing to the ironic, bold in| +89579|819759|7308|4|43|72184.53|0.04|0.04|R|F|1994-11-17|1994-11-28|1994-11-28|TAKE BACK RETURN|MAIL|unusual, regular requests. platelets haggle| +89579|683894|21434|5|28|52580.08|0.08|0.06|A|F|1994-10-09|1994-11-30|1994-10-29|DELIVER IN PERSON|RAIL|ress requests are above the foxe| +89579|203349|15854|6|2|2504.66|0.08|0.05|R|F|1994-11-16|1994-10-12|1994-12-05|COLLECT COD|REG AIR|nic instructions cajole | +89580|836309|48826|1|36|44829.36|0.10|0.00|R|F|1993-03-17|1993-03-08|1993-04-12|TAKE BACK RETURN|MAIL|express accounts. blithely reg| +89580|831078|31079|2|28|28252.84|0.09|0.05|A|F|1993-04-30|1993-02-26|1993-05-16|NONE|TRUCK|quickly brave accounts affix furiously fin| +89580|914897|2452|3|21|40148.85|0.01|0.07|R|F|1993-03-28|1993-03-23|1993-04-05|COLLECT COD|AIR|y carefully even pinto beans. fluf| +89580|664752|2292|4|12|20600.64|0.07|0.07|A|F|1993-05-21|1993-04-05|1993-05-29|NONE|TRUCK|ular instructions. furio| +89581|422727|22728|1|36|59389.20|0.07|0.01|N|O|1998-05-21|1998-06-29|1998-06-18|NONE|REG AIR|re. furiously pending accounts| +89581|771111|33627|2|25|29552.00|0.10|0.03|N|O|1998-04-27|1998-07-19|1998-05-14|COLLECT COD|FOB| ironic requests. quickly ironic in| +89581|60038|22540|3|25|24950.75|0.08|0.00|N|O|1998-07-04|1998-06-17|1998-07-28|DELIVER IN PERSON|TRUCK|ainst the furiously regular pa| +89581|44757|19758|4|47|79982.25|0.08|0.06|N|O|1998-05-04|1998-06-24|1998-05-17|DELIVER IN PERSON|MAIL|ironic depo| +89581|230691|18204|5|32|51893.76|0.09|0.01|N|O|1998-08-12|1998-06-06|1998-08-22|COLLECT COD|MAIL|heodolites poach carefully-- acco| +89581|222064|9577|6|26|25637.30|0.04|0.05|N|O|1998-05-06|1998-07-19|1998-05-13|COLLECT COD|TRUCK|s? slyly fin| +89582|106160|43667|1|21|24489.36|0.04|0.03|N|O|1997-05-02|1997-03-29|1997-05-21|COLLECT COD|REG AIR|ake carefully final instructions. slow, iro| +89583|444229|6738|1|4|4692.80|0.03|0.07|N|O|1996-09-23|1996-08-14|1996-10-15|DELIVER IN PERSON|RAIL|side of the carefully ironic ideas cajole | +89583|140258|27765|2|39|50631.75|0.08|0.04|N|O|1996-08-25|1996-08-09|1996-09-13|NONE|REG AIR|, express packages sleep | +89608|390168|27690|1|39|49067.85|0.01|0.08|R|F|1994-06-29|1994-06-09|1994-07-02|COLLECT COD|AIR|nag among the carefully | +89608|547326|22347|2|7|9613.10|0.06|0.03|R|F|1994-04-18|1994-04-18|1994-04-23|NONE|TRUCK|lyly final,| +89608|908031|20550|3|34|35325.66|0.04|0.05|A|F|1994-06-16|1994-05-11|1994-06-24|COLLECT COD|RAIL| use carefully | +89609|218376|5889|1|18|23298.48|0.06|0.01|A|F|1992-08-18|1992-08-17|1992-09-13|NONE|SHIP| excuses are? carefully even deposit| +89609|237889|12898|2|45|82209.15|0.09|0.06|R|F|1992-08-13|1992-09-06|1992-08-15|TAKE BACK RETURN|SHIP|he quiet, pending de| +89609|186709|49213|3|36|64645.20|0.01|0.02|R|F|1992-09-12|1992-10-07|1992-09-28|COLLECT COD|MAIL|imes regular request| +89609|15540|28041|4|29|42210.66|0.02|0.01|R|F|1992-10-16|1992-08-23|1992-11-03|TAKE BACK RETURN|TRUCK|g requests are excuses: furiously| +89609|167798|30302|5|5|9328.95|0.00|0.04|A|F|1992-09-28|1992-09-13|1992-10-05|NONE|AIR|re the furiously special pinto be| +89609|164794|2304|6|23|42752.17|0.04|0.05|A|F|1992-09-24|1992-09-27|1992-09-26|DELIVER IN PERSON|AIR|ly silent requests cajole | +89610|602367|2368|1|34|43157.22|0.01|0.06|N|O|1997-01-24|1997-03-01|1997-02-05|TAKE BACK RETURN|FOB|e slyly against the slyly final acc| +89610|978280|40800|2|23|31239.52|0.03|0.07|N|O|1997-02-13|1997-01-23|1997-03-07|COLLECT COD|AIR|ave sheaves sleep about the caref| +89610|941096|41097|3|36|40933.80|0.02|0.03|N|O|1997-03-18|1997-01-24|1997-03-21|DELIVER IN PERSON|MAIL|erns. excuses haggle against the slyly spe| +89610|992652|17691|4|16|27913.76|0.07|0.01|N|O|1997-04-01|1997-01-26|1997-04-21|COLLECT COD|SHIP|ess blithely above the final accou| +89610|492834|42835|5|23|42016.63|0.07|0.02|N|O|1997-01-15|1997-03-01|1997-01-30|NONE|RAIL|ose asymptotes. a| +89610|56016|43520|6|33|32076.33|0.09|0.04|N|O|1997-02-04|1997-02-26|1997-02-17|TAKE BACK RETURN|MAIL|equests. quickly | +89610|459762|47290|7|29|49930.46|0.06|0.03|N|O|1997-04-19|1997-03-19|1997-05-06|COLLECT COD|TRUCK|, even deposits are furious| +89611|215829|40838|1|45|78516.45|0.10|0.00|A|F|1994-06-04|1994-05-06|1994-06-17|COLLECT COD|SHIP|ly bold requests haggle carefully pend| +89611|437588|37589|2|25|38139.00|0.07|0.07|R|F|1994-05-13|1994-05-19|1994-05-29|DELIVER IN PERSON|TRUCK|eans thrash along the regular accounts. fl| +89611|538557|38558|3|31|49461.43|0.08|0.07|A|F|1994-05-23|1994-04-24|1994-06-14|NONE|AIR|otes after the final| +89611|521892|9423|4|27|51674.49|0.06|0.07|A|F|1994-05-22|1994-06-01|1994-06-16|TAKE BACK RETURN|REG AIR| quickly. busily special foxes haggle | +89612|298337|35853|1|13|17359.16|0.10|0.06|R|F|1993-11-06|1993-11-05|1993-11-24|DELIVER IN PERSON|MAIL|ts sleep caref| +89612|135201|47704|2|39|48211.80|0.00|0.01|A|F|1993-11-07|1993-09-14|1993-11-11|TAKE BACK RETURN|MAIL|osits sleep furio| +89612|307605|7606|3|3|4837.77|0.03|0.06|R|F|1993-08-12|1993-09-18|1993-09-06|DELIVER IN PERSON|REG AIR|n attainments grow among| +89612|911833|24352|4|37|68257.23|0.02|0.01|R|F|1993-10-05|1993-10-17|1993-10-22|NONE|MAIL|egular foxes. ironic grouches aff| +89612|176603|26604|5|35|58786.00|0.07|0.08|A|F|1993-08-19|1993-10-21|1993-09-14|COLLECT COD|TRUCK|ular requests haggle carefully. f| +89613|677825|40339|1|19|34253.01|0.06|0.05|A|F|1992-04-26|1992-04-06|1992-04-29|NONE|SHIP|unts wake after | +89613|190171|15178|2|40|50446.80|0.04|0.03|A|F|1992-03-07|1992-05-26|1992-03-12|COLLECT COD|REG AIR|riously special deposits.| +89613|200259|37772|3|28|32458.72|0.03|0.06|A|F|1992-05-25|1992-04-24|1992-06-21|TAKE BACK RETURN|FOB|ages. quickly regu| +89613|750707|13223|4|25|43941.75|0.02|0.02|A|F|1992-03-18|1992-05-30|1992-04-07|NONE|RAIL|ual, even Tiresias detect daring| +89613|129965|17472|5|24|47879.04|0.09|0.05|A|F|1992-03-22|1992-04-22|1992-03-25|TAKE BACK RETURN|REG AIR|ess instructions should have to dete| +89614|225240|37745|1|23|26800.29|0.07|0.04|N|O|1998-07-20|1998-05-13|1998-08-03|COLLECT COD|SHIP| within the even requests. express deposit| +89615|431132|31133|1|11|11694.21|0.08|0.04|N|O|1998-05-03|1998-06-29|1998-05-29|COLLECT COD|TRUCK| sleep blithely-- carefully unusual packa| +89615|27380|27381|2|23|30069.74|0.02|0.08|N|O|1998-07-14|1998-07-13|1998-07-16|TAKE BACK RETURN|TRUCK|nusual requests nag carefully slyly close | +89615|160702|10703|3|25|44067.50|0.08|0.06|N|O|1998-07-01|1998-06-22|1998-07-31|NONE|RAIL|en dependencies! slyly pendi| +89615|915384|2939|4|18|25188.12|0.08|0.08|N|O|1998-08-03|1998-06-06|1998-08-21|TAKE BACK RETURN|MAIL|s hinder quickly alongside| +89615|844396|19429|5|50|67017.50|0.03|0.03|N|O|1998-06-25|1998-07-30|1998-06-30|COLLECT COD|SHIP| to the ironic | +89640|140551|28058|1|28|44563.40|0.04|0.08|A|F|1994-09-02|1994-07-23|1994-09-24|TAKE BACK RETURN|MAIL|t. fluffily ironic accounts across the inst| +89641|204404|41917|1|10|13083.90|0.00|0.00|A|F|1993-05-26|1993-05-02|1993-06-06|COLLECT COD|FOB|es are carefully.| +89641|413846|1371|2|48|84471.36|0.09|0.08|A|F|1993-02-26|1993-04-08|1993-03-22|NONE|FOB|requests after | +89641|505251|30272|3|32|40199.36|0.07|0.01|R|F|1993-04-19|1993-05-02|1993-05-10|DELIVER IN PERSON|MAIL|ly after the | +89641|740072|2587|4|32|35585.28|0.02|0.06|R|F|1993-04-01|1993-04-09|1993-04-07|TAKE BACK RETURN|REG AIR|e blithely | +89641|375738|25739|5|22|39901.84|0.09|0.01|R|F|1993-05-22|1993-04-02|1993-05-23|NONE|MAIL|nstructions. special, final d| +89642|964009|1567|1|37|39699.52|0.10|0.06|A|F|1993-03-25|1993-03-25|1993-04-11|NONE|REG AIR|latelets. ironic, unusual accounts| +89642|94043|31547|2|14|14518.56|0.09|0.05|A|F|1993-04-03|1993-04-10|1993-04-18|COLLECT COD|AIR|d the stealthily express platelets: s| +89642|569536|44559|3|19|30504.69|0.03|0.06|R|F|1993-03-02|1993-04-24|1993-03-28|TAKE BACK RETURN|RAIL|uests. regular ide| +89642|187949|37950|4|13|26480.22|0.06|0.03|A|F|1993-04-05|1993-04-04|1993-05-02|TAKE BACK RETURN|TRUCK|ly special dependencie| +89642|857388|19906|5|16|21525.44|0.04|0.03|R|F|1993-06-03|1993-05-07|1993-06-08|NONE|RAIL|ts print blithely about the careful| +89643|282276|32277|1|35|44039.10|0.08|0.01|N|O|1998-03-28|1998-06-12|1998-04-15|COLLECT COD|REG AIR|egular accoun| +89643|205846|5847|2|32|56058.56|0.06|0.07|N|O|1998-07-09|1998-05-07|1998-08-04|COLLECT COD|TRUCK|e after the slyly express instructions.| +89643|641288|41289|3|31|38106.75|0.02|0.07|N|O|1998-04-10|1998-04-22|1998-04-17|TAKE BACK RETURN|AIR|kages haggle quickly. final, ir| +89643|118369|18370|4|6|8324.16|0.08|0.07|N|O|1998-03-29|1998-05-24|1998-04-18|DELIVER IN PERSON|REG AIR|nag even instructions. slyly bold ac| +89643|420749|20750|5|7|11688.04|0.09|0.04|N|O|1998-05-23|1998-05-21|1998-05-24|NONE|AIR|y fluffily even ideas. platele| +89644|613678|1215|1|8|12733.12|0.04|0.00|A|F|1993-03-01|1993-03-31|1993-03-24|NONE|FOB|lly ironic pinto beans. carefully i| +89644|77721|40223|2|10|16987.20|0.05|0.00|R|F|1993-04-11|1993-04-09|1993-05-09|NONE|SHIP|y express accounts are slyly against the c| +89644|252281|2282|3|21|25898.67|0.05|0.03|R|F|1993-03-03|1993-04-10|1993-03-11|DELIVER IN PERSON|REG AIR|onic instructions | +89644|71483|46486|4|2|2908.96|0.04|0.00|R|F|1993-03-24|1993-04-15|1993-04-21|NONE|FOB|hins. foxes e| +89644|406403|43928|5|49|64159.62|0.09|0.07|R|F|1993-06-08|1993-04-08|1993-06-13|NONE|MAIL| blithely. slyly regu| +89645|502190|2191|1|7|8345.19|0.08|0.00|A|F|1992-04-08|1992-05-06|1992-04-13|COLLECT COD|MAIL|p the carefull| +89645|295351|32867|2|7|9424.38|0.01|0.00|A|F|1992-07-26|1992-06-24|1992-08-14|NONE|AIR|s against the slyly regular requests affi| +89645|952137|14657|3|48|57076.32|0.01|0.00|A|F|1992-05-26|1992-05-15|1992-06-23|DELIVER IN PERSON|SHIP|ily final pinto bean| +89646|310781|48300|1|19|34043.63|0.08|0.05|N|O|1998-10-20|1998-09-04|1998-10-28|NONE|REG AIR|the slyly i| +89646|293471|18482|2|36|52720.56|0.10|0.01|N|O|1998-07-29|1998-09-02|1998-08-11|NONE|MAIL|s cajole according to the final, ironic f| +89647|342903|5410|1|26|50593.14|0.08|0.01|R|F|1992-06-16|1992-08-06|1992-06-17|DELIVER IN PERSON|AIR|deas. carefull| +89647|158504|46014|2|29|45312.50|0.00|0.06|A|F|1992-08-14|1992-07-07|1992-09-07|TAKE BACK RETURN|REG AIR|layers. regular, ironic asymptotes promise| +89647|976408|26409|3|16|23749.76|0.05|0.06|R|F|1992-07-02|1992-09-02|1992-07-10|DELIVER IN PERSON|MAIL|nt, silent pinto beans. blithely ent| +89647|476540|26541|4|44|66726.88|0.07|0.02|A|F|1992-09-01|1992-08-18|1992-09-13|DELIVER IN PERSON|FOB|lyly regular | +89672|483246|8265|1|40|49168.80|0.00|0.00|R|F|1995-02-04|1995-02-20|1995-03-04|COLLECT COD|TRUCK|ag. slyly ironic| +89672|906096|18615|2|32|35265.60|0.07|0.04|A|F|1995-03-10|1995-01-28|1995-03-26|COLLECT COD|TRUCK|ag regular, final req| +89672|743861|31404|3|24|45715.92|0.08|0.03|R|F|1995-03-07|1995-01-27|1995-03-28|COLLECT COD|TRUCK|hely quickly e| +89673|863612|13613|1|18|28360.26|0.10|0.05|R|F|1993-03-16|1993-03-21|1993-03-21|NONE|SHIP| final ideas sleep| +89673|712262|24777|2|40|50969.20|0.06|0.00|A|F|1993-02-06|1993-03-04|1993-02-14|DELIVER IN PERSON|REG AIR|nal excuses poach blithely| +89673|980372|17930|3|48|69711.84|0.04|0.00|A|F|1993-05-02|1993-04-22|1993-05-10|NONE|RAIL|eaves use fluffily from the carefully regul| +89673|106233|31238|4|25|30980.75|0.07|0.01|R|F|1993-03-17|1993-03-26|1993-03-25|COLLECT COD|SHIP|coys wake blithely across the furiously| +89673|452363|2364|5|26|34198.84|0.01|0.01|A|F|1993-02-21|1993-04-02|1993-03-01|DELIVER IN PERSON|REG AIR|e excuses. thin deposits detect slyly reg| +89673|857913|20431|6|21|39288.27|0.04|0.04|A|F|1993-04-05|1993-04-13|1993-04-08|COLLECT COD|TRUCK|iously quiet packages| +89673|941420|3939|7|7|10229.66|0.00|0.05|A|F|1993-05-17|1993-03-03|1993-06-13|TAKE BACK RETURN|TRUCK|quests. furiously even | +89674|432980|32981|1|12|22955.52|0.00|0.04|N|O|1996-12-24|1997-01-07|1997-01-04|COLLECT COD|MAIL|carefully. fluffily express asym| +89674|92431|4933|2|10|14234.30|0.03|0.05|N|O|1997-01-22|1997-01-11|1997-02-18|NONE|REG AIR| slyly pending ac| +89674|472423|34933|3|21|29303.40|0.00|0.08|N|O|1997-01-29|1997-01-07|1997-02-05|TAKE BACK RETURN|FOB|ggle blithely accordi| +89674|8666|8667|4|48|75583.68|0.05|0.01|N|O|1996-11-24|1996-12-19|1996-12-12|DELIVER IN PERSON|SHIP|s. tithes haggle among the c| +89674|640037|15062|5|2|1954.00|0.06|0.07|N|O|1997-01-27|1996-12-10|1997-02-09|NONE|TRUCK|ronic theodolites nag quickly even | +89675|394799|19814|1|32|60600.96|0.04|0.08|R|F|1993-09-08|1993-10-20|1993-09-23|COLLECT COD|AIR|ding to the silen| +89676|591279|3791|1|31|42477.75|0.04|0.04|R|F|1993-09-05|1993-07-13|1993-09-16|COLLECT COD|AIR|he careful| +89676|612596|12597|2|5|7542.80|0.07|0.02|R|F|1993-06-25|1993-08-26|1993-07-09|TAKE BACK RETURN|SHIP| for the a| +89676|888652|1170|3|29|47577.69|0.02|0.06|R|F|1993-09-12|1993-08-22|1993-10-09|COLLECT COD|FOB|unts. slyly final pa| +89677|692705|17732|1|41|69604.47|0.10|0.02|R|F|1995-03-22|1995-05-07|1995-03-28|COLLECT COD|TRUCK|l foxes. regular deposits under the| +89677|285761|35762|2|23|40175.25|0.00|0.01|N|O|1995-06-30|1995-05-25|1995-07-01|DELIVER IN PERSON|AIR|e ironic, bold excuses. regular, | +89677|778495|28496|3|43|67658.78|0.01|0.04|N|F|1995-06-14|1995-04-23|1995-06-26|NONE|RAIL|side of the blithely silent packages: fin| +89677|157743|32750|4|1|1800.74|0.08|0.07|A|F|1995-03-27|1995-05-16|1995-04-24|DELIVER IN PERSON|AIR|jole slyly across the slyly even packages. | +89678|740950|15979|1|18|35836.56|0.10|0.05|N|O|1996-03-01|1996-03-31|1996-03-28|DELIVER IN PERSON|FOB| accounts. fluffily ironic warthogs hagg| +89678|133007|33008|2|9|9360.00|0.03|0.00|N|O|1996-06-16|1996-05-19|1996-06-22|DELIVER IN PERSON|AIR|hely according to the slyly unusual dep| +89678|444005|44006|3|36|34163.28|0.04|0.04|N|O|1996-04-05|1996-04-05|1996-04-10|COLLECT COD|REG AIR|ions use slyly? furiously regu| +89679|716525|4068|1|46|70908.54|0.10|0.02|N|O|1995-08-17|1995-08-24|1995-09-12|NONE|MAIL|nusual asymptotes sleep sometimes above | +89679|626815|14352|2|24|41802.72|0.05|0.03|N|O|1995-07-20|1995-09-07|1995-08-03|NONE|REG AIR|. special, even packages are. excuse| +89704|702254|39797|1|7|8793.54|0.05|0.08|A|F|1992-08-09|1992-06-23|1992-09-03|DELIVER IN PERSON|FOB|s lose carefully.| +89704|770941|33457|2|50|100595.50|0.01|0.07|A|F|1992-06-15|1992-07-05|1992-06-19|DELIVER IN PERSON|MAIL|t deposits| +89704|200822|823|3|26|44793.06|0.01|0.08|A|F|1992-06-02|1992-06-30|1992-06-30|TAKE BACK RETURN|SHIP|ts cajole blithely | +89704|213077|13078|4|3|2970.18|0.03|0.06|R|F|1992-05-20|1992-07-04|1992-05-23|NONE|RAIL|press pinto bean| +89705|527659|15190|1|27|45539.01|0.08|0.03|N|O|1997-10-10|1997-11-28|1997-10-17|COLLECT COD|REG AIR|old requests. sp| +89705|357694|20202|2|32|56053.76|0.05|0.02|N|O|1998-01-14|1997-11-03|1998-02-08|DELIVER IN PERSON|FOB|e carefully pendi| +89705|753169|15685|3|36|43996.68|0.02|0.01|N|O|1998-01-07|1997-11-15|1998-01-24|DELIVER IN PERSON|FOB|he carefully special foxes. quickly fi| +89705|500709|25730|4|17|29064.56|0.10|0.05|N|O|1997-11-18|1997-10-15|1997-12-01|COLLECT COD|MAIL| according to the f| +89705|406096|6097|5|3|3006.21|0.02|0.06|N|O|1997-11-20|1997-11-05|1997-12-02|NONE|SHIP|courts over the bli| +89706|43368|18369|1|11|14424.96|0.00|0.03|N|O|1997-10-15|1997-10-31|1997-11-14|TAKE BACK RETURN|AIR| Tiresias. furiously regular| +89706|876547|14099|2|41|62463.50|0.05|0.00|N|O|1997-12-17|1997-12-17|1998-01-13|COLLECT COD|SHIP|r, ironic dependencies serve fluffily acc| +89706|121498|46503|3|10|15194.90|0.02|0.00|N|O|1998-01-10|1997-11-18|1998-02-09|DELIVER IN PERSON|FOB| beans according to the asymptotes cajo| +89707|848693|11210|1|12|19699.80|0.10|0.04|N|O|1997-05-14|1997-04-20|1997-06-13|TAKE BACK RETURN|RAIL| shall have to sleep | +89707|978792|28793|2|45|84183.75|0.02|0.00|N|O|1997-06-23|1997-05-01|1997-07-22|TAKE BACK RETURN|SHIP|bout the slyly ironic ideas. bli| +89707|546252|21273|3|50|64911.50|0.10|0.08|N|O|1997-04-25|1997-05-15|1997-05-16|DELIVER IN PERSON|SHIP|rays haggle fluffily| +89707|843018|18051|4|3|2882.91|0.01|0.00|N|O|1997-04-30|1997-05-19|1997-05-17|COLLECT COD|SHIP|se carefully quickly final foxes. never | +89707|589430|39431|5|44|66854.04|0.06|0.04|N|O|1997-05-21|1997-04-05|1997-05-29|DELIVER IN PERSON|FOB|onic pinto beans. furiously | +89707|545267|32798|6|19|24932.56|0.07|0.08|N|O|1997-04-08|1997-04-01|1997-04-15|COLLECT COD|SHIP|uffy foxes. blithely thin accounts | +89707|299435|49436|7|5|7172.10|0.09|0.07|N|O|1997-05-29|1997-05-03|1997-06-15|COLLECT COD|TRUCK|counts try to a| +89708|592871|30405|1|41|80517.85|0.01|0.02|A|F|1995-03-25|1995-02-05|1995-04-24|NONE|AIR|bold deposits affix ironic, unusual | +89708|369473|6995|2|48|74038.08|0.06|0.07|A|F|1994-12-10|1995-01-27|1994-12-26|DELIVER IN PERSON|TRUCK|s boost carefully bold packages| +89709|344110|31629|1|40|46164.00|0.03|0.02|N|O|1997-11-29|1998-02-10|1997-12-27|DELIVER IN PERSON|AIR|sual requests. deposits nod fluf| +89709|447302|22319|2|8|9994.24|0.07|0.01|N|O|1998-01-20|1998-02-12|1998-02-03|NONE|TRUCK|etect furiously. blithely bold accounts| +89709|803030|15547|3|44|41051.56|0.01|0.03|N|O|1998-03-27|1998-01-26|1998-04-23|DELIVER IN PERSON|MAIL|boost furi| +89709|512007|37028|4|50|50949.00|0.03|0.04|N|O|1998-03-17|1998-02-26|1998-04-15|DELIVER IN PERSON|AIR|le quickly ironic deposits. furio| +89709|293591|6097|5|14|22184.12|0.06|0.04|N|O|1997-12-05|1998-02-21|1997-12-14|NONE|RAIL|onic requests integrate blithely bold | +89710|252714|2715|1|38|63334.60|0.02|0.01|N|O|1996-12-07|1996-12-21|1996-12-14|NONE|MAIL|s after the final deposits haggle slyly s| +89710|358975|8976|2|41|83392.36|0.06|0.06|N|O|1997-03-06|1996-12-23|1997-03-13|COLLECT COD|SHIP|eas haggle. slyl| +89710|291681|29197|3|25|41816.75|0.02|0.04|N|O|1996-11-12|1996-12-14|1996-11-30|TAKE BACK RETURN|AIR|t carefully. unusual, final requests b| +89710|281342|31343|4|1|1323.33|0.08|0.04|N|O|1996-11-22|1996-12-09|1996-11-28|COLLECT COD|MAIL|l, special orbits. e| +89711|358347|33362|1|18|25295.94|0.07|0.06|R|F|1993-10-13|1993-08-31|1993-10-30|TAKE BACK RETURN|RAIL|ake regula| +89711|730333|5362|2|19|25902.70|0.06|0.07|A|F|1993-09-25|1993-09-09|1993-10-16|NONE|RAIL|onic forges sleep blithely. blithely ir| +89711|692367|42368|3|5|6796.65|0.04|0.04|R|F|1993-10-21|1993-08-26|1993-10-22|TAKE BACK RETURN|MAIL|s against the final multipliers w| +89711|608137|45674|4|4|4180.40|0.08|0.01|A|F|1993-08-29|1993-08-29|1993-09-14|DELIVER IN PERSON|RAIL| furiously special theodolites.| +89711|953162|3163|5|42|51035.04|0.00|0.03|A|F|1993-08-08|1993-08-28|1993-08-13|NONE|FOB|slyly ironi| +89736|43670|6171|1|19|30659.73|0.07|0.06|N|O|1996-10-22|1996-09-25|1996-11-15|DELIVER IN PERSON|FOB| fluffily final instructions| +89736|948136|48137|2|37|43811.33|0.00|0.04|N|O|1996-10-26|1996-10-02|1996-11-06|DELIVER IN PERSON|AIR|urious pinto beans. bold pack| +89736|318206|30713|3|19|23259.61|0.10|0.02|N|O|1996-08-21|1996-10-09|1996-08-29|DELIVER IN PERSON|FOB|s. ironic, special| +89736|81885|31886|4|14|26136.32|0.02|0.02|N|O|1996-08-15|1996-09-06|1996-08-30|NONE|TRUCK| even packages. slyly even theodolites in| +89736|224984|12497|5|18|34361.46|0.05|0.05|N|O|1996-07-24|1996-09-11|1996-07-26|DELIVER IN PERSON|MAIL|o the slyly unusual dependenc| +89737|371580|34088|1|50|82578.50|0.07|0.04|R|F|1994-10-16|1994-10-24|1994-11-10|COLLECT COD|REG AIR| deposits. quickly iron| +89737|140564|3067|2|42|67391.52|0.00|0.00|R|F|1994-08-11|1994-10-23|1994-08-19|TAKE BACK RETURN|AIR| regular pac| +89737|448087|48088|3|44|45542.64|0.08|0.07|A|F|1994-08-05|1994-10-22|1994-08-11|NONE|REG AIR|posits should wake furiously bold pinto bea| +89738|769930|44961|1|20|39998.00|0.04|0.00|A|F|1993-08-16|1993-06-14|1993-09-04|TAKE BACK RETURN|AIR|s. pending, unusual ideas da| +89739|682876|20416|1|44|81788.96|0.10|0.01|A|F|1992-05-13|1992-04-20|1992-05-15|NONE|AIR|nt ideas. daringly ironic reque| +89739|92957|17960|2|28|54598.60|0.05|0.02|A|F|1992-06-21|1992-05-11|1992-07-03|TAKE BACK RETURN|SHIP|ng dolphins cajole blithely after th| +89740|241230|28743|1|7|8198.54|0.04|0.04|N|O|1997-03-25|1997-02-24|1997-04-21|NONE|RAIL|above the blithely unusu| +89740|350207|25222|2|12|15086.28|0.09|0.00|N|O|1997-01-09|1997-02-02|1997-02-05|COLLECT COD|SHIP|furiously bold| +89741|988623|13662|1|11|18827.38|0.06|0.00|A|F|1993-01-13|1992-11-25|1993-02-01|COLLECT COD|TRUCK|ng to the fluffily unusual deposits c| +89742|402290|27307|1|16|19076.32|0.07|0.05|A|F|1992-10-11|1992-09-23|1992-10-31|COLLECT COD|SHIP|fully slyly regular packages. furio| +89743|975273|12831|1|37|49884.51|0.08|0.00|A|F|1993-11-25|1993-12-14|1993-12-23|DELIVER IN PERSON|FOB|uctions. c| +89743|404774|29791|2|32|53720.00|0.08|0.02|A|F|1993-12-27|1993-12-20|1994-01-14|DELIVER IN PERSON|REG AIR|are blithely bold id| +89743|28583|41084|3|16|24185.28|0.02|0.01|A|F|1993-12-29|1994-01-15|1994-01-04|DELIVER IN PERSON|SHIP|ely final instructions sol| +89743|384831|9846|4|34|65137.88|0.07|0.04|R|F|1994-02-07|1993-12-04|1994-02-26|NONE|AIR| slyly silent deposits. daringly unusual | +89743|845262|7779|5|19|22937.18|0.09|0.00|R|F|1994-01-03|1993-12-05|1994-01-12|NONE|RAIL|r accounts. slyly| +89768|600393|394|1|43|55614.48|0.09|0.05|N|O|1996-04-02|1996-04-16|1996-04-17|TAKE BACK RETURN|AIR|y even accounts against | +89768|792901|30447|2|6|11963.22|0.09|0.03|N|O|1996-03-04|1996-03-04|1996-04-01|DELIVER IN PERSON|REG AIR|le across the carefully final accounts. c| +89768|280274|5285|3|45|56441.70|0.04|0.04|N|O|1996-04-03|1996-04-17|1996-04-08|DELIVER IN PERSON|FOB|ructions. regula| +89768|549875|24896|4|36|69294.60|0.01|0.01|N|O|1996-02-02|1996-04-16|1996-02-18|DELIVER IN PERSON|MAIL|. carefully ironic deposits against the f| +89768|744802|44803|5|10|18467.70|0.04|0.03|N|O|1996-04-10|1996-03-31|1996-04-29|DELIVER IN PERSON|AIR|leep furiously among the | +89768|883174|45692|6|22|25456.86|0.00|0.04|N|O|1996-04-19|1996-03-28|1996-05-16|TAKE BACK RETURN|SHIP|inal requests-- express wartho| +89768|498935|36463|7|20|38678.20|0.02|0.08|N|O|1996-03-17|1996-03-23|1996-04-03|COLLECT COD|RAIL| furiously across the blithely expr| +89769|587112|37113|1|50|59954.50|0.05|0.02|N|O|1996-05-25|1996-07-08|1996-06-18|TAKE BACK RETURN|AIR|ngside of the regular inst| +89770|600706|25731|1|4|6426.68|0.02|0.04|A|F|1993-02-28|1993-02-21|1993-03-02|TAKE BACK RETURN|MAIL| even accounts against the carefully bold p| +89770|56823|31826|2|5|8899.10|0.07|0.03|A|F|1993-01-14|1993-02-23|1993-01-23|NONE|TRUCK|s are blithely. care| +89770|18125|5626|3|15|15646.80|0.05|0.06|A|F|1993-04-20|1993-02-16|1993-05-07|TAKE BACK RETURN|FOB|beans after the carefu| +89770|622320|9857|4|35|43480.15|0.09|0.01|R|F|1993-04-01|1993-01-26|1993-04-14|DELIVER IN PERSON|RAIL| final excuses serve r| +89771|231443|6452|1|19|26114.17|0.01|0.01|N|O|1997-06-16|1997-07-07|1997-07-02|TAKE BACK RETURN|FOB|counts boost fluffily iron| +89771|848448|10965|2|24|33513.60|0.07|0.04|N|O|1997-08-02|1997-05-22|1997-08-21|DELIVER IN PERSON|AIR|ove the final, dogged foxes. | +89771|850241|37793|3|43|51221.60|0.09|0.00|N|O|1997-07-03|1997-05-29|1997-07-20|DELIVER IN PERSON|AIR|ously express deposits. final accounts wak| +89771|995326|7846|4|35|49744.80|0.00|0.07|N|O|1997-07-07|1997-05-31|1997-07-18|NONE|REG AIR|regular instru| +89772|387381|49889|1|16|23493.92|0.06|0.00|N|O|1998-04-29|1998-05-30|1998-05-19|COLLECT COD|TRUCK| foxes. silent instr| +89772|711014|36043|2|32|32799.36|0.03|0.02|N|O|1998-05-21|1998-06-04|1998-06-16|TAKE BACK RETURN|REG AIR|thely. blithely quie| +89772|11760|49261|3|32|53496.32|0.05|0.03|N|O|1998-05-26|1998-05-21|1998-06-20|DELIVER IN PERSON|TRUCK| x-ray slyly final dolphin| +89772|644258|19283|4|15|18033.30|0.08|0.05|N|O|1998-06-18|1998-05-08|1998-06-30|NONE|FOB|ing requests nag carefully always i| +89772|27400|39901|5|32|42476.80|0.09|0.01|N|O|1998-04-13|1998-06-29|1998-04-26|NONE|RAIL|slyly unusu| +89772|499561|37089|6|35|54618.90|0.02|0.06|N|O|1998-04-29|1998-06-06|1998-05-01|TAKE BACK RETURN|MAIL|equests. special escapad| +89772|106997|19500|7|4|8015.96|0.08|0.03|N|O|1998-07-18|1998-06-18|1998-07-22|DELIVER IN PERSON|REG AIR|ts integrate c| +89773|288031|25547|1|33|33627.66|0.08|0.06|A|F|1995-02-05|1994-11-26|1995-02-28|DELIVER IN PERSON|SHIP|thely furiously pending accounts. fluffil| +89773|933509|21064|2|34|52443.64|0.04|0.08|R|F|1994-11-20|1994-12-20|1994-12-16|DELIVER IN PERSON|REG AIR|unts. furiously special| +89773|472507|10035|3|40|59179.20|0.00|0.03|A|F|1994-10-24|1994-12-28|1994-11-16|COLLECT COD|MAIL|es. furiously regular instructi| +89774|434396|9413|1|8|10642.96|0.04|0.08|A|F|1992-05-23|1992-05-02|1992-05-26|TAKE BACK RETURN|FOB|es play. ironically unusual accounts| +89775|130621|43124|1|48|79277.76|0.10|0.03|N|O|1995-06-26|1995-05-12|1995-07-18|COLLECT COD|RAIL|carefully busy packages nag boldly. fu| +89775|335193|35194|2|32|39301.76|0.05|0.04|R|F|1995-05-11|1995-06-12|1995-06-03|DELIVER IN PERSON|SHIP|ular accounts detect| +89800|966300|41339|1|45|61481.70|0.09|0.01|N|O|1997-10-17|1997-10-08|1997-10-23|TAKE BACK RETURN|TRUCK| special, even packages haggle slyly.| +89800|600077|25102|2|13|12701.52|0.00|0.08|N|O|1997-11-04|1997-10-26|1997-11-19|TAKE BACK RETURN|FOB|ide the ir| +89801|581747|6770|1|35|64005.20|0.10|0.06|N|O|1997-04-04|1997-03-30|1997-04-24|TAKE BACK RETURN|FOB|ously. blithely ironic accounts s| +89802|711213|36242|1|11|13465.98|0.00|0.01|A|F|1992-10-23|1992-10-24|1992-11-02|COLLECT COD|RAIL|gular ideas among the d| +89802|353682|28697|2|45|78105.15|0.03|0.04|R|F|1992-09-26|1992-11-13|1992-10-04|TAKE BACK RETURN|AIR| sleep slyl| +89802|332097|7110|3|1|1129.08|0.06|0.08|A|F|1992-09-03|1992-10-14|1992-09-23|COLLECT COD|SHIP|nal excuses nag carefully | +89802|544820|19841|4|47|87645.60|0.10|0.00|A|F|1992-09-04|1992-11-12|1992-09-11|DELIVER IN PERSON|AIR|ke furiously. pe| +89802|775093|37609|5|11|12848.66|0.03|0.08|R|F|1992-10-11|1992-11-21|1992-10-14|DELIVER IN PERSON|RAIL| across the d| +89802|979510|42030|6|45|71526.15|0.02|0.05|A|F|1992-12-06|1992-11-07|1993-01-01|COLLECT COD|RAIL|ingly bold notornis. even, ironic i| +89803|360989|36004|1|37|75848.89|0.00|0.00|R|F|1994-04-15|1994-03-02|1994-04-16|TAKE BACK RETURN|TRUCK|slyly ironic requests are| +89803|137527|25034|2|44|68838.88|0.07|0.05|R|F|1994-03-20|1994-03-25|1994-04-08|TAKE BACK RETURN|MAIL|en accounts. daringly expres| +89803|416105|16106|3|37|37779.96|0.00|0.01|A|F|1994-02-11|1994-04-11|1994-03-12|COLLECT COD|FOB|egular foxes after the| +89803|475327|346|4|16|20836.80|0.03|0.05|R|F|1994-04-29|1994-03-14|1994-05-04|DELIVER IN PERSON|SHIP|uriously unusual depths cajo| +89803|816902|41935|5|1|1818.86|0.04|0.05|R|F|1994-02-16|1994-03-20|1994-03-04|COLLECT COD|RAIL| regular, express pinto beans mo| +89803|665871|3411|6|38|69799.92|0.05|0.02|R|F|1994-02-23|1994-03-21|1994-03-25|NONE|RAIL|es. slyly | +89804|454212|16722|1|14|16326.66|0.02|0.05|N|O|1997-04-17|1997-04-04|1997-04-19|TAKE BACK RETURN|REG AIR|ecial, final accounts| +89804|937154|49673|2|6|7146.66|0.06|0.02|N|O|1997-05-14|1997-05-04|1997-05-26|TAKE BACK RETURN|TRUCK| special r| +89804|731151|18694|3|23|27188.76|0.05|0.03|N|O|1997-02-26|1997-05-03|1997-03-26|DELIVER IN PERSON|TRUCK|uld have to affix among the| +89804|438712|38713|4|32|52822.08|0.08|0.03|N|O|1997-05-01|1997-04-28|1997-05-02|DELIVER IN PERSON|REG AIR| never bold | +89804|420761|8286|5|19|31953.06|0.01|0.03|N|O|1997-02-27|1997-03-21|1997-03-01|COLLECT COD|FOB|sleep special deposits. unusual r| +89804|719540|7083|6|38|59261.38|0.00|0.02|N|O|1997-03-26|1997-04-18|1997-04-15|NONE|FOB| beans mold final, | +89805|186174|23684|1|41|51666.97|0.09|0.00|R|F|1992-12-07|1993-02-01|1993-01-03|NONE|AIR| integrate. bold, bold asymptotes integr| +89805|23965|36466|2|17|32112.32|0.02|0.03|A|F|1993-03-09|1993-02-16|1993-03-29|TAKE BACK RETURN|TRUCK|leep slyly blithely even plat| +89805|770680|33196|3|19|33262.35|0.01|0.06|R|F|1993-02-04|1993-01-16|1993-02-12|TAKE BACK RETURN|TRUCK| regular p| +89806|228330|40835|1|3|3774.96|0.01|0.06|R|F|1993-04-23|1993-04-26|1993-05-01|TAKE BACK RETURN|REG AIR|ounts. special | +89807|263070|38081|1|49|50619.94|0.09|0.05|R|F|1994-02-24|1994-02-18|1994-03-02|COLLECT COD|SHIP|ep blithely p| +89807|411699|36716|2|16|25770.72|0.03|0.04|R|F|1994-04-17|1994-03-17|1994-05-06|NONE|AIR|et deposits. regular, pending excuse| +89807|414325|1850|3|17|21068.10|0.09|0.03|R|F|1994-01-23|1994-03-20|1994-02-04|COLLECT COD|REG AIR| along the carefully regular dolphins h| +89832|186298|48802|1|12|16611.48|0.08|0.04|N|O|1997-04-06|1997-05-20|1997-05-06|NONE|REG AIR|ickly bold gift| +89832|104511|17014|2|20|30310.20|0.08|0.05|N|O|1997-05-28|1997-05-01|1997-05-30|NONE|SHIP|t. dependencies across the regularly | +89832|513204|735|3|31|37732.58|0.07|0.07|N|O|1997-06-04|1997-05-18|1997-06-19|COLLECT COD|MAIL|ages affix dependencies. careful| +89833|475016|35|1|39|38648.61|0.05|0.04|R|F|1994-04-30|1994-04-08|1994-05-27|DELIVER IN PERSON|AIR|l dependencies. ironic, express asymptot| +89833|577610|27611|2|28|47252.52|0.01|0.08|R|F|1994-03-23|1994-04-25|1994-04-07|DELIVER IN PERSON|SHIP|ep carefully express instructions. | +89834|843789|31338|1|35|60645.90|0.03|0.06|N|O|1995-06-25|1995-07-02|1995-07-13|COLLECT COD|REG AIR|ts. blithely final de| +89834|545836|33367|2|12|22581.72|0.05|0.07|N|O|1995-08-24|1995-07-24|1995-09-11|TAKE BACK RETURN|MAIL|the final requests| +89834|854320|4321|3|24|30582.72|0.07|0.01|A|F|1995-05-26|1995-06-15|1995-06-08|DELIVER IN PERSON|REG AIR|e the regular requests. deposits across th| +89834|553828|41362|4|42|79035.60|0.02|0.07|N|O|1995-07-25|1995-06-20|1995-08-01|COLLECT COD|RAIL|s. packages| +89834|171917|46924|5|29|57678.39|0.06|0.04|R|F|1995-05-04|1995-07-06|1995-06-03|NONE|SHIP|ly regular requests. slyly ironic | +89834|408431|33448|6|49|65631.09|0.07|0.01|R|F|1995-05-18|1995-06-09|1995-05-22|NONE|SHIP|lyly silent| +89835|822776|22777|1|50|84936.50|0.04|0.08|A|F|1992-10-27|1992-11-25|1992-11-14|DELIVER IN PERSON|TRUCK|the quickly u| +89835|388820|13835|2|11|20996.91|0.10|0.03|A|F|1992-11-30|1992-12-08|1992-12-20|NONE|FOB|lets affix. q| +89835|885988|11023|3|37|73035.78|0.00|0.07|A|F|1992-12-23|1993-01-01|1993-01-02|TAKE BACK RETURN|SHIP|lyly quickly spe| +89835|795547|8063|4|1|1642.51|0.08|0.00|R|F|1992-11-14|1992-12-29|1992-11-28|DELIVER IN PERSON|REG AIR|odolites eat a| +89836|984115|46635|1|2|2398.14|0.09|0.02|R|F|1993-03-15|1993-05-22|1993-04-03|TAKE BACK RETURN|REG AIR|its cajole qui| +89836|14636|2137|2|15|23259.45|0.01|0.08|A|F|1993-03-30|1993-05-26|1993-04-01|DELIVER IN PERSON|FOB|kly pending pearls wake fluffily. care| +89836|982685|32686|3|12|21211.68|0.02|0.04|A|F|1993-03-31|1993-05-19|1993-04-24|TAKE BACK RETURN|AIR|s, special fox| +89836|971349|33869|4|17|24145.10|0.08|0.04|A|F|1993-06-10|1993-04-27|1993-06-30|COLLECT COD|REG AIR|e final, ironic a| +89836|453721|16231|5|30|50241.00|0.02|0.07|R|F|1993-06-27|1993-04-09|1993-06-28|NONE|SHIP|furiously special deposits. permanently| +89837|379823|29824|1|45|85626.45|0.00|0.08|A|F|1992-10-07|1992-10-30|1992-10-15|DELIVER IN PERSON|FOB| bravely quickly unusual asymptot| +89837|676042|1069|2|19|19342.19|0.02|0.00|R|F|1992-09-27|1992-11-02|1992-10-12|TAKE BACK RETURN|TRUCK|re. blithel| +89837|225930|25931|3|13|24126.96|0.03|0.02|R|F|1992-12-11|1992-11-05|1992-12-30|COLLECT COD|AIR|pecial, final deposits nag carefully again| +89837|204592|42105|4|26|38911.08|0.05|0.04|R|F|1992-12-29|1992-12-03|1993-01-15|COLLECT COD|REG AIR|nstructions use against the quickly even pa| +89837|568413|30925|5|18|26665.02|0.01|0.05|A|F|1992-12-18|1992-12-02|1993-01-06|COLLECT COD|REG AIR|tegrate slyly accounts. packages affix bli| +89838|25763|25764|1|18|30397.68|0.00|0.03|N|O|1996-11-15|1996-10-26|1996-12-11|NONE|TRUCK|er the ironic theo| +89838|984441|9480|2|17|25931.80|0.09|0.08|N|O|1996-11-22|1996-11-27|1996-12-17|NONE|MAIL|slyly up the regular notorni| +89839|656260|18774|1|50|60811.50|0.03|0.08|N|O|1996-01-22|1996-01-20|1996-01-29|NONE|RAIL|odolites serve. furiously final accoun| +89864|320967|33474|1|22|43734.90|0.04|0.08|N|O|1997-11-20|1997-10-16|1997-12-03|DELIVER IN PERSON|FOB|nic, special pinto beans about th| +89864|484107|34108|2|41|44734.28|0.08|0.03|N|O|1997-08-29|1997-10-01|1997-08-30|TAKE BACK RETURN|FOB|regular account| +89864|377835|40343|3|48|91815.36|0.00|0.04|N|O|1997-11-21|1997-10-18|1997-12-19|NONE|MAIL|ructions sleep. furiously special accounts | +89864|267917|17918|4|37|69741.30|0.07|0.08|N|O|1997-10-24|1997-09-27|1997-11-23|DELIVER IN PERSON|REG AIR|special in| +89864|868120|5672|5|14|15233.12|0.00|0.01|N|O|1997-10-10|1997-10-16|1997-10-24|NONE|FOB|arefully ironic instruction| +89864|478740|41250|6|46|79061.12|0.07|0.02|N|O|1997-09-14|1997-11-22|1997-10-02|NONE|FOB| eat. slyly final gifts ar| +89865|48793|11294|1|22|38319.38|0.02|0.07|N|O|1996-10-04|1996-09-26|1996-10-19|DELIVER IN PERSON|RAIL|ions. fluffily final packa| +89865|63454|13455|2|26|36853.70|0.00|0.06|N|O|1996-08-08|1996-09-09|1996-08-30|NONE|FOB|ironic foxes. bl| +89865|460223|47751|3|26|30763.20|0.02|0.00|N|O|1996-07-14|1996-08-15|1996-07-27|NONE|AIR| haggle carefully fina| +89865|964405|1963|4|12|17632.32|0.00|0.02|N|O|1996-10-16|1996-09-03|1996-10-26|COLLECT COD|FOB|ic requests. ironic| +89865|740117|15146|5|27|31241.16|0.06|0.08|N|O|1996-07-19|1996-08-20|1996-08-01|COLLECT COD|REG AIR|ual accounts haggle pen| +89865|143850|43851|6|8|15150.80|0.00|0.08|N|O|1996-07-09|1996-08-12|1996-08-01|TAKE BACK RETURN|RAIL|fluffily special dependenc| +89866|962916|474|1|7|13852.09|0.07|0.06|N|O|1997-02-10|1997-02-13|1997-03-06|NONE|MAIL|to the unusual, ironic theodol| +89866|722557|22558|2|5|7897.60|0.03|0.00|N|O|1997-03-30|1997-02-24|1997-04-13|TAKE BACK RETURN|FOB| to the deposits x-ray fluffil| +89866|1791|26792|3|5|8463.95|0.08|0.02|N|O|1997-03-09|1997-02-09|1997-03-26|TAKE BACK RETURN|SHIP|theodolites. silently pen| +89866|99919|49920|4|34|65242.94|0.05|0.02|N|O|1997-02-27|1997-01-24|1997-03-27|COLLECT COD|RAIL|ckly idle theodolites. even, ironic req| +89866|334763|22282|5|40|71910.00|0.03|0.03|N|O|1997-03-25|1997-02-18|1997-03-26|NONE|TRUCK|ly express| +89866|356160|18668|6|30|36484.50|0.02|0.02|N|O|1997-02-17|1997-01-13|1997-03-17|DELIVER IN PERSON|SHIP|inst the regul| +89866|978673|41193|7|16|28026.08|0.06|0.03|N|O|1997-03-02|1997-02-20|1997-03-12|COLLECT COD|MAIL|es use quickly along t| +89867|549933|24954|1|9|17846.19|0.02|0.08|N|O|1997-08-11|1997-07-21|1997-08-30|TAKE BACK RETURN|FOB|s boost slyly instea| +89867|710169|47712|2|26|30657.38|0.05|0.04|N|O|1997-10-03|1997-08-06|1997-10-16|DELIVER IN PERSON|REG AIR|carefully ag| +89868|629152|29153|1|28|30271.36|0.04|0.05|N|O|1997-07-12|1997-05-06|1997-08-10|DELIVER IN PERSON|TRUCK|uffily bold foxes. slyly regular | +89869|23009|48010|1|23|21436.00|0.01|0.05|N|O|1998-09-17|1998-09-06|1998-10-05|TAKE BACK RETURN|AIR|ly dolphins. even sheaves un| +89869|705492|30521|2|18|26954.28|0.07|0.00|N|O|1998-10-01|1998-09-11|1998-10-20|COLLECT COD|RAIL|e slyly stealthy theodol| +89869|193298|18305|3|43|59825.47|0.08|0.00|N|O|1998-09-22|1998-10-11|1998-10-02|TAKE BACK RETURN|MAIL|its sleep about the | +89869|754376|41922|4|3|4291.02|0.09|0.00|N|O|1998-10-13|1998-08-23|1998-10-30|TAKE BACK RETURN|REG AIR|slyly about the stealthi| +89869|787315|37316|5|3|4206.84|0.03|0.08|N|O|1998-09-25|1998-09-20|1998-10-16|NONE|RAIL|usly about the deposits| +89870|55303|30306|1|32|40265.60|0.05|0.08|R|F|1993-07-10|1993-07-25|1993-07-22|COLLECT COD|MAIL|y regular accounts. carefully regular id| +89870|475188|25189|2|43|50015.88|0.00|0.00|A|F|1993-10-03|1993-08-12|1993-10-04|DELIVER IN PERSON|FOB|use blithely. carefully regular foxes| +89870|480081|42591|3|17|18038.02|0.01|0.01|R|F|1993-07-23|1993-09-04|1993-07-26|COLLECT COD|RAIL|dinos integrat| +89870|718474|30989|4|11|16416.84|0.09|0.00|R|F|1993-07-21|1993-07-27|1993-08-06|NONE|TRUCK|ans along the special theo| +89870|380992|30993|5|3|6218.94|0.04|0.01|R|F|1993-09-09|1993-07-11|1993-10-04|NONE|SHIP|symptotes use furiously| +89871|240419|40420|1|45|61173.00|0.05|0.01|N|O|1996-02-04|1996-03-03|1996-02-19|COLLECT COD|SHIP|ctions. furiously express deposits cajole| +89871|716069|28584|2|37|40146.11|0.04|0.00|N|O|1996-04-05|1996-03-31|1996-05-05|DELIVER IN PERSON|MAIL|accounts wake| +89871|957004|19524|3|49|51987.04|0.06|0.01|N|O|1996-03-28|1996-03-09|1996-04-08|NONE|TRUCK|gular requests above| +89871|360796|35811|4|42|77984.76|0.07|0.01|N|O|1996-01-30|1996-02-29|1996-02-14|DELIVER IN PERSON|SHIP|ely even dependencies will ha| +89871|891830|16865|5|47|85624.13|0.07|0.05|N|O|1996-04-02|1996-03-22|1996-04-20|DELIVER IN PERSON|SHIP| above the regular, sile| +89871|985371|35372|6|37|53884.21|0.05|0.01|N|O|1996-03-16|1996-02-15|1996-04-11|TAKE BACK RETURN|RAIL|ic pearls around the blithely unusual foxe| +89896|644742|32279|1|2|3373.42|0.00|0.07|N|O|1996-07-06|1996-08-26|1996-07-14|NONE|SHIP|e slyly pending foxes. furiously pending pa| +89896|166542|16543|2|21|33779.34|0.01|0.00|N|O|1996-07-16|1996-09-14|1996-08-02|COLLECT COD|MAIL| bold requests. carefully special | +89896|63869|1373|3|2|3665.72|0.02|0.06|N|O|1996-10-17|1996-09-05|1996-10-20|COLLECT COD|FOB|refully fin| +89896|440288|15305|4|2|2456.52|0.10|0.08|N|O|1996-08-14|1996-09-03|1996-08-25|COLLECT COD|TRUCK|taphs inte| +89896|913827|38864|5|50|92039.00|0.07|0.03|N|O|1996-08-26|1996-09-16|1996-08-28|TAKE BACK RETURN|SHIP|onic accounts. care| +89896|680797|18337|6|9|15999.84|0.03|0.06|N|O|1996-10-22|1996-08-09|1996-10-28|TAKE BACK RETURN|FOB|ly regular packages! bravely regular acco| +89896|143757|6260|7|14|25210.50|0.10|0.07|N|O|1996-08-23|1996-08-13|1996-09-18|COLLECT COD|RAIL|lly unusual packages. regular, r| +89897|123699|11206|1|18|31008.42|0.01|0.00|R|F|1994-04-20|1994-04-09|1994-05-07|COLLECT COD|SHIP| the slyly express deposits. final depo| +89897|997631|35189|2|48|82972.32|0.09|0.01|R|F|1994-06-08|1994-05-14|1994-06-23|DELIVER IN PERSON|MAIL|equests alon| +89897|169197|19198|3|24|30388.56|0.04|0.01|R|F|1994-04-18|1994-04-20|1994-05-14|NONE|TRUCK|ar packages hin| +89897|682501|20041|4|34|50437.98|0.06|0.06|R|F|1994-05-21|1994-03-23|1994-06-17|COLLECT COD|MAIL|ress tithes wake furiously about the fur| +89898|261347|48863|1|26|34016.58|0.03|0.04|N|O|1996-04-08|1996-05-17|1996-04-19|COLLECT COD|SHIP|ss deposits detect. e| +89898|458343|20853|2|6|7807.92|0.10|0.06|N|O|1996-05-29|1996-04-18|1996-06-16|COLLECT COD|TRUCK|ress pinto beans | +89898|365525|40540|3|3|4771.53|0.05|0.03|N|O|1996-04-18|1996-05-19|1996-05-04|COLLECT COD|SHIP|gular deposits nag quickly alongside o| +89898|367405|29913|4|20|29447.80|0.01|0.07|N|O|1996-03-16|1996-05-25|1996-04-04|NONE|FOB|ajole ideas. final, even instruction| +89898|967146|17147|5|39|47310.90|0.02|0.05|N|O|1996-03-22|1996-05-12|1996-04-12|NONE|MAIL|en, pending deposits nag slyly| +89899|416308|41325|1|8|9794.24|0.09|0.01|N|O|1995-09-28|1995-12-05|1995-10-01|NONE|REG AIR|ly even pinto beans impress slyly fi| +89899|881316|43834|2|7|9080.89|0.06|0.03|N|O|1995-09-21|1995-10-21|1995-10-05|TAKE BACK RETURN|REG AIR| furiously regular pi| +89900|265859|15860|1|4|7299.36|0.07|0.01|N|O|1996-01-23|1996-01-31|1996-02-13|NONE|REG AIR|tions haggle across the furiousl| +89901|345749|20762|1|49|87941.77|0.00|0.06|R|F|1994-07-31|1994-05-26|1994-08-27|DELIVER IN PERSON|MAIL|pecial theodolites. fluffily| +89901|993821|31379|2|47|89994.66|0.03|0.00|R|F|1994-06-24|1994-06-06|1994-07-08|COLLECT COD|MAIL|ely regular instructions affix fur| +89901|145184|20189|3|16|19666.88|0.07|0.02|R|F|1994-07-17|1994-06-22|1994-07-27|TAKE BACK RETURN|REG AIR| special requests. even depos| +89901|98169|10671|4|22|25677.52|0.10|0.01|A|F|1994-06-30|1994-06-21|1994-07-30|TAKE BACK RETURN|RAIL|foxes. slyly final ex| +89901|914823|2378|5|38|69835.64|0.08|0.01|R|F|1994-06-07|1994-05-15|1994-06-14|NONE|MAIL|al pearls are ev| +89901|419045|31554|6|39|37596.78|0.00|0.06|R|F|1994-05-17|1994-06-03|1994-06-05|DELIVER IN PERSON|REG AIR|sely bold theodolites! blithely ex| +89902|470672|33182|1|40|65706.00|0.00|0.07|A|F|1993-08-17|1993-10-07|1993-09-10|NONE|REG AIR|dolites affix across the express theodo| +89902|576125|1148|2|49|58853.90|0.08|0.07|R|F|1993-10-26|1993-10-08|1993-11-10|TAKE BACK RETURN|REG AIR|platelets? carefully special| +89902|927083|39602|3|49|54391.96|0.09|0.06|A|F|1993-09-11|1993-09-17|1993-09-30|TAKE BACK RETURN|REG AIR|ly outside the unusual, special theodol| +89902|475342|25343|4|43|56644.76|0.06|0.06|R|F|1993-09-20|1993-09-09|1993-10-12|TAKE BACK RETURN|TRUCK|ogged, fina| +89903|23203|35704|1|28|31533.60|0.04|0.06|A|F|1993-01-15|1992-12-24|1993-02-02|NONE|REG AIR|regular excuses a| +89903|967969|17970|2|11|22406.12|0.03|0.08|R|F|1993-02-14|1993-02-07|1993-03-10|TAKE BACK RETURN|SHIP|ly final dolphins are. carefully ex| +89903|641050|41051|3|22|21802.44|0.06|0.02|A|F|1993-01-18|1993-01-27|1993-02-12|DELIVER IN PERSON|SHIP|uests sleep do| +89903|122170|9677|4|3|3576.51|0.00|0.05|A|F|1993-01-25|1993-01-09|1993-02-07|NONE|RAIL|nically above the fu| +89903|305359|17866|5|46|62759.64|0.02|0.02|A|F|1992-12-22|1993-01-09|1993-01-12|COLLECT COD|TRUCK|en deposits. blithely br| +89903|154423|16927|6|1|1477.42|0.10|0.00|R|F|1992-11-27|1993-01-05|1992-12-14|TAKE BACK RETURN|MAIL|al deposits. blithely bol| +89928|932885|7922|1|25|47946.00|0.01|0.02|N|O|1997-07-26|1997-05-25|1997-07-28|DELIVER IN PERSON|RAIL|en excuses wake. carefully pend| +89928|984468|46988|2|26|40362.92|0.08|0.07|N|O|1997-04-25|1997-06-07|1997-05-20|NONE|REG AIR|y after the slyly regular id| +89928|941929|29484|3|12|23650.56|0.10|0.02|N|O|1997-06-22|1997-05-14|1997-07-07|TAKE BACK RETURN|REG AIR|unts. fluffily even deposits wake. fur| +89928|994997|20036|4|17|35563.15|0.07|0.07|N|O|1997-04-13|1997-05-23|1997-04-19|COLLECT COD|SHIP|e stealthily bold| +89928|906508|19027|5|27|40890.42|0.06|0.06|N|O|1997-07-04|1997-06-02|1997-07-27|COLLECT COD|FOB|even ideas. ca| +89929|866697|41732|1|34|56564.10|0.01|0.06|A|F|1992-04-24|1992-05-16|1992-05-19|DELIVER IN PERSON|SHIP|gainst the unusual, furious id| +89929|572868|35380|2|11|21349.24|0.06|0.03|R|F|1992-03-16|1992-05-18|1992-04-04|DELIVER IN PERSON|AIR|s impress deposits. silent| +89929|190497|15504|3|22|34924.78|0.06|0.07|A|F|1992-04-06|1992-04-06|1992-04-27|TAKE BACK RETURN|FOB|endencies. carefully even pinto beans h| +89929|679594|42108|4|46|72383.76|0.07|0.03|A|F|1992-06-05|1992-05-10|1992-07-04|NONE|REG AIR|y unusual requests. blithely regular theo| +89929|934640|47159|5|18|30142.80|0.03|0.04|A|F|1992-03-13|1992-05-02|1992-03-24|COLLECT COD|FOB|ages sleep car| +89929|483298|45808|6|20|25625.40|0.07|0.02|R|F|1992-05-16|1992-04-27|1992-05-19|TAKE BACK RETURN|REG AIR| grouches. even, sly deposits cajole sly| +89930|595596|20619|1|39|65971.23|0.02|0.01|A|F|1995-04-05|1995-05-09|1995-04-23|NONE|FOB|ole furiously--| +89930|179099|41603|2|1|1178.09|0.03|0.02|R|F|1995-05-12|1995-05-09|1995-05-26|DELIVER IN PERSON|AIR|arefully ironic requests cajole blithely| +89930|100281|37788|3|2|2562.56|0.05|0.04|N|F|1995-06-10|1995-04-14|1995-06-21|TAKE BACK RETURN|RAIL|gside of the fluffily express| +89930|406171|6172|4|27|29083.05|0.01|0.07|R|F|1995-05-03|1995-05-30|1995-05-27|TAKE BACK RETURN|FOB| ideas are about the enticingly | +89931|820566|45599|1|42|62433.84|0.02|0.00|A|F|1992-07-29|1992-06-17|1992-08-20|TAKE BACK RETURN|RAIL|g the ideas cajole| +89931|241529|41530|2|22|32351.22|0.02|0.06|R|F|1992-09-04|1992-07-23|1992-09-27|DELIVER IN PERSON|TRUCK| accounts | +89931|376825|1840|3|18|34232.58|0.09|0.00|R|F|1992-07-04|1992-08-09|1992-07-27|NONE|AIR|nding pinto beans. slyly reg| +89932|147510|10013|1|8|12460.08|0.01|0.02|A|F|1994-01-08|1994-01-18|1994-01-18|COLLECT COD|MAIL|s cajole. slyly regular excuses affix fu| +89932|193145|43146|2|50|61907.00|0.10|0.00|A|F|1994-02-11|1993-11-22|1994-03-04|DELIVER IN PERSON|TRUCK|ully even realm| +89932|181019|31020|3|12|13200.12|0.06|0.04|R|F|1993-11-01|1993-12-10|1993-11-06|NONE|AIR|es. even instructio| +89932|373347|23348|4|37|52552.21|0.00|0.05|A|F|1994-01-14|1994-01-12|1994-01-16|NONE|RAIL|osits ough| +89933|380968|5983|1|30|61468.50|0.04|0.07|N|O|1996-01-05|1995-12-26|1996-01-30|NONE|RAIL|y even asymptotes.| +89933|928002|3039|2|41|42228.36|0.06|0.06|N|O|1996-02-10|1995-12-07|1996-03-10|COLLECT COD|FOB|structions. ironic excu| +89934|324475|36982|1|44|65976.24|0.02|0.01|N|O|1996-04-19|1996-02-10|1996-05-14|TAKE BACK RETURN|TRUCK|sits across the final foxes could have | +89934|439630|39631|2|17|26683.37|0.10|0.06|N|O|1996-01-28|1996-03-19|1996-02-03|DELIVER IN PERSON|AIR|bold ideas-- fluffily spe| +89934|854424|4425|3|12|16540.56|0.06|0.02|N|O|1996-01-23|1996-01-24|1996-01-24|TAKE BACK RETURN|AIR|e silent, ironic idea| +89934|290061|2567|4|35|36786.75|0.06|0.02|N|O|1996-03-01|1996-03-22|1996-03-22|DELIVER IN PERSON|MAIL|gular, even packages doubt. bli| +89934|40990|15991|5|9|17378.91|0.08|0.00|N|O|1996-01-09|1996-03-14|1996-02-08|TAKE BACK RETURN|RAIL|regular requests boost quickly| +89934|915528|3083|6|28|43217.44|0.02|0.01|N|O|1996-04-15|1996-02-19|1996-05-12|TAKE BACK RETURN|SHIP|d the carefully even packages a| +89934|278280|40786|7|4|5033.08|0.02|0.07|N|O|1996-01-12|1996-03-06|1996-01-15|COLLECT COD|SHIP| dependencies. slyl| +89935|37793|12794|1|38|65770.02|0.10|0.02|R|F|1993-06-27|1993-06-30|1993-07-08|DELIVER IN PERSON|SHIP| bold cour| +89935|170552|45559|2|50|81127.50|0.03|0.08|R|F|1993-07-28|1993-07-17|1993-08-12|COLLECT COD|FOB|press dependencies. carefully eve| +89935|451828|14338|3|14|24917.20|0.02|0.06|A|F|1993-09-07|1993-08-08|1993-09-18|TAKE BACK RETURN|AIR| wake bold pearls. fi| +89935|859796|47348|4|5|8778.75|0.03|0.05|A|F|1993-08-27|1993-07-29|1993-09-22|DELIVER IN PERSON|FOB|beans. ironic, regular pac| +89935|578711|28712|5|15|26845.35|0.02|0.01|A|F|1993-08-12|1993-06-20|1993-08-29|TAKE BACK RETURN|MAIL|y pending theodolites. u| +89935|393157|5665|6|16|20002.24|0.00|0.07|A|F|1993-08-09|1993-08-10|1993-08-18|TAKE BACK RETURN|MAIL| foxes detect carefully after the quickly| +89935|780056|30057|7|23|26128.46|0.10|0.01|A|F|1993-09-06|1993-08-08|1993-10-06|COLLECT COD|FOB|inal foxes are fluffily s| +89960|389760|27282|1|30|55492.50|0.00|0.00|R|F|1994-03-25|1994-05-03|1994-04-11|COLLECT COD|MAIL|unusual deposits. carefully pending in| +89960|690879|28419|2|33|61704.72|0.02|0.00|A|F|1994-03-06|1994-05-12|1994-03-27|NONE|FOB|haggle stealthily bl| +89960|597972|22995|3|26|53818.70|0.01|0.07|R|F|1994-06-08|1994-05-16|1994-06-22|TAKE BACK RETURN|SHIP|ronic instruct| +89960|114314|1821|4|29|38520.99|0.00|0.08|R|F|1994-02-23|1994-03-27|1994-03-13|DELIVER IN PERSON|REG AIR| final deposits ca| +89961|841449|28998|1|8|11123.20|0.10|0.05|N|O|1997-03-20|1997-02-25|1997-04-15|NONE|AIR|xpress pearls. slyly special deposits| +89961|225382|391|2|35|45757.95|0.10|0.05|N|O|1997-03-20|1997-03-20|1997-04-02|NONE|FOB|old pinto beans. blithely final dolphins ac| +89961|984448|34449|3|18|27583.20|0.09|0.08|N|O|1997-01-15|1997-04-03|1997-02-08|COLLECT COD|AIR|y regular requests wake quickly perm| +89961|610193|22706|4|41|45229.56|0.02|0.04|N|O|1997-01-14|1997-03-29|1997-02-04|DELIVER IN PERSON|FOB|posits boo| +89961|502771|40302|5|44|78045.00|0.04|0.06|N|O|1997-01-25|1997-02-22|1997-02-18|COLLECT COD|TRUCK|g excuses wake daringly final f| +89961|63716|1220|6|21|35273.91|0.04|0.05|N|O|1997-02-26|1997-04-01|1997-03-24|TAKE BACK RETURN|FOB|ing, ironic somas| +89962|13497|13498|1|26|36672.74|0.06|0.07|N|O|1995-08-20|1995-10-07|1995-08-25|COLLECT COD|AIR| foxes cajole after the unusua| +89962|843666|43667|2|2|3219.24|0.01|0.02|N|O|1995-11-07|1995-09-25|1995-11-09|COLLECT COD|AIR|y busy requests. ironic request| +89962|492721|30249|3|38|65120.60|0.09|0.03|N|O|1995-09-28|1995-09-04|1995-10-25|NONE|REG AIR|r, bold packages w| +89962|151743|39253|4|9|16152.66|0.06|0.07|N|O|1995-07-31|1995-08-14|1995-08-30|TAKE BACK RETURN|TRUCK|carefully ironic accounts. final, b| +89962|342840|30359|5|21|39539.43|0.06|0.03|N|O|1995-11-05|1995-08-16|1995-11-25|TAKE BACK RETURN|SHIP|s alongside of the blithely final account| +89963|278186|3197|1|14|16298.38|0.06|0.05|N|O|1995-07-06|1995-07-07|1995-07-18|COLLECT COD|SHIP|s print quickly bold foxes. furiously si| +89963|467471|42490|2|33|47468.85|0.03|0.04|N|F|1995-06-11|1995-07-18|1995-06-19|COLLECT COD|REG AIR| haggle unusual acco| +89963|771050|8596|3|36|40356.72|0.09|0.08|A|F|1995-05-21|1995-07-08|1995-06-01|DELIVER IN PERSON|REG AIR| to cajole quickly within the expr| +89963|21956|46957|4|41|76995.95|0.07|0.05|N|O|1995-09-09|1995-07-27|1995-09-25|COLLECT COD|RAIL|es. final | +89963|4076|41577|5|35|34302.45|0.09|0.04|N|O|1995-07-24|1995-07-13|1995-08-10|TAKE BACK RETURN|FOB|ts. careful| +89963|496361|21380|6|35|47506.90|0.08|0.03|N|O|1995-08-29|1995-06-23|1995-09-17|DELIVER IN PERSON|MAIL|nal excuses nag silently.| +89964|513035|25546|1|8|8384.08|0.05|0.04|R|F|1994-10-31|1994-09-26|1994-11-07|TAKE BACK RETURN|REG AIR| the slyly pending Tiresias| +89964|578644|3667|2|10|17226.20|0.06|0.04|R|F|1994-12-05|1994-10-18|1994-12-07|DELIVER IN PERSON|RAIL| quickly. quickly pending dolphins integra| +89964|263530|13531|3|13|19415.76|0.02|0.06|R|F|1994-10-30|1994-11-03|1994-11-03|COLLECT COD|SHIP|tructions promise quickly al| +89964|141866|29373|4|44|83945.84|0.06|0.00|A|F|1994-09-28|1994-11-04|1994-10-14|TAKE BACK RETURN|FOB|es. ironic theodo| +89964|339976|27495|5|26|52414.96|0.05|0.00|A|F|1994-10-14|1994-10-04|1994-10-28|DELIVER IN PERSON|TRUCK|into beans. frets are ideas. slyly| +89964|965438|2996|6|29|43598.31|0.09|0.01|A|F|1994-10-16|1994-10-12|1994-11-07|TAKE BACK RETURN|AIR|ingly special dependencies sl| +89964|105993|43500|7|40|79959.60|0.09|0.05|R|F|1994-09-12|1994-10-27|1994-10-11|COLLECT COD|AIR|he blithely final i| +89965|421196|8721|1|12|13406.04|0.08|0.04|R|F|1992-08-12|1992-07-16|1992-08-23|NONE|MAIL|ve to are blithely| +89965|31686|31687|2|8|12941.44|0.05|0.02|A|F|1992-08-20|1992-07-21|1992-09-04|NONE|SHIP|s sleep slyly. even, final requests nag alo| +89965|530090|17621|3|29|32482.03|0.05|0.02|A|F|1992-09-01|1992-07-13|1992-09-02|DELIVER IN PERSON|TRUCK|ng, regular ideas above| +89965|216280|3793|4|1|1196.27|0.06|0.02|A|F|1992-07-16|1992-07-24|1992-08-02|TAKE BACK RETURN|SHIP| final accounts sleep. caref| +89966|395996|21011|1|16|33471.68|0.01|0.06|A|F|1993-09-25|1993-09-13|1993-10-24|TAKE BACK RETURN|FOB| even foxes sleep sly| +89966|502626|2627|2|48|78172.80|0.00|0.08|A|F|1993-07-11|1993-08-20|1993-07-17|COLLECT COD|RAIL|boost quic| +89967|410549|48074|1|23|33568.96|0.03|0.07|N|O|1997-10-27|1997-11-08|1997-11-04|DELIVER IN PERSON|FOB|oxes. furiously| +89967|87231|49733|2|41|49947.43|0.06|0.06|N|O|1997-12-10|1997-12-01|1998-01-06|DELIVER IN PERSON|RAIL|dencies. slyly pending sentiments believe| +89967|80648|43150|3|41|66774.24|0.05|0.04|N|O|1997-11-29|1998-01-04|1997-12-01|TAKE BACK RETURN|RAIL|old requests!| +89967|448016|48017|4|6|5783.94|0.10|0.08|N|O|1997-12-19|1997-11-25|1997-12-27|NONE|SHIP|es haggle silently along the furiously| +89967|796283|8799|5|45|62066.25|0.07|0.07|N|O|1997-11-25|1997-12-30|1997-12-25|COLLECT COD|RAIL|quests. fluffily| +89967|123162|10669|6|48|56887.68|0.06|0.08|N|O|1997-11-29|1997-12-31|1997-12-26|COLLECT COD|TRUCK|urious, unusual | +89992|177483|39987|1|30|46814.40|0.00|0.02|N|O|1995-10-10|1995-12-06|1995-10-27|TAKE BACK RETURN|REG AIR|oldly regul| +89992|956734|31773|2|13|23278.97|0.10|0.03|N|O|1995-10-12|1995-12-09|1995-10-31|NONE|AIR|ounts. final, si| +89992|813190|38223|3|12|13237.80|0.05|0.04|N|O|1995-12-05|1995-12-20|1995-12-25|COLLECT COD|TRUCK|quickly final | +89992|281576|19092|4|14|21805.84|0.05|0.04|N|O|1995-10-18|1995-11-20|1995-11-02|DELIVER IN PERSON|AIR|jole along the carefully pending requ| +89992|445646|8155|5|6|9549.72|0.06|0.07|N|O|1996-01-02|1995-12-15|1996-01-29|NONE|MAIL| blithely around the | +89992|962388|12389|6|23|33357.82|0.10|0.02|N|O|1995-10-09|1995-12-07|1995-10-24|DELIVER IN PERSON|FOB|lithely regular theodolites: regu| +89992|848237|23270|7|22|26074.18|0.00|0.02|N|O|1995-10-02|1995-11-11|1995-10-17|TAKE BACK RETURN|SHIP|. blithely pending requests across the care| +89993|303816|41335|1|12|21837.60|0.02|0.00|A|F|1993-02-27|1993-04-01|1993-02-28|TAKE BACK RETURN|TRUCK|ously silent packag| +89993|225082|12595|2|19|19134.33|0.00|0.08|A|F|1993-04-28|1993-03-12|1993-05-03|NONE|SHIP|eep after the slyly regular asymptotes. ca| +89993|950175|12695|3|49|60031.37|0.10|0.04|A|F|1993-04-30|1993-03-01|1993-05-30|DELIVER IN PERSON|RAIL|ake stealthily. slyly ironic instruc| +89993|585659|48171|4|20|34892.60|0.02|0.00|A|F|1993-05-15|1993-03-31|1993-06-06|COLLECT COD|AIR|ly regular pinto bea| +89993|157296|19800|5|23|31125.67|0.04|0.05|A|F|1993-03-04|1993-04-14|1993-03-21|TAKE BACK RETURN|AIR|ong the final accounts. carefully ev| +89993|659607|22121|6|41|64229.37|0.02|0.04|A|F|1993-03-13|1993-03-03|1993-04-02|COLLECT COD|AIR|the fluffily p| +89994|611688|24201|1|38|60786.70|0.07|0.04|A|F|1992-10-14|1992-11-13|1992-11-11|DELIVER IN PERSON|RAIL|st around the furiou| +89994|629510|42023|2|22|31668.56|0.06|0.05|A|F|1992-12-28|1992-12-02|1993-01-07|TAKE BACK RETURN|AIR|blithely even packages. s| +89995|974126|49165|1|10|12000.80|0.05|0.05|A|F|1994-09-26|1994-07-28|1994-10-21|COLLECT COD|RAIL|s nag carefully. fluffily exp| +89995|130234|42737|2|41|51833.43|0.10|0.04|A|F|1994-08-24|1994-07-06|1994-08-27|TAKE BACK RETURN|TRUCK|quickly regular depo| +89995|841615|29164|3|14|21791.98|0.01|0.07|A|F|1994-06-18|1994-08-06|1994-07-18|DELIVER IN PERSON|MAIL|ffix blithely? fluffily| +89995|21094|46095|4|4|4060.36|0.00|0.04|A|F|1994-09-30|1994-07-10|1994-10-01|NONE|SHIP|ts. deposits wake alongside of the ironi| +89996|577963|40475|1|43|87760.42|0.03|0.08|R|F|1994-01-29|1994-01-01|1994-02-23|TAKE BACK RETURN|TRUCK|ackages. re| diff --git a/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u1 b/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u1 new file mode 100644 index 0000000..a2dfe93 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u1 @@ -0,0 +1,7500 @@ +9|738527|F|99589.91|1992-11-03|1-URGENT|Clerk#000000544|0|ly. slyly ironic deposits cajole quietly regular, even pinto beans. flu| +10|672634|O|120255.98|1997-08-16|1-URGENT|Clerk#000001708|0|f the accounts. slyly unusual depths boost blithely. gif| +11|186416|F|99755.95|1992-10-09|5-LOW|Clerk#000001318|0| try to wake. quickly regular epitaphs| +12|341389|F|196160.89|1994-05-24|2-HIGH|Clerk#000000839|0|e the even deposits. unusual, silent deposits ca| +13|195712|O|43870.35|1997-07-04|5-LOW|Clerk#000003104|0|riously. blithely bold accounts affix furiously slyly bold instructi| +14|564004|F|90512.75|1993-02-16|2-HIGH|Clerk#000001524|0|ajole blithely slowly pending tithes. furiously pending | +15|712682|O|59949.61|1995-05-21|2-HIGH|Clerk#000003380|0|hely. carefully silent ideas believe unus| +40|542152|F|313023.50|1992-11-20|1-URGENT|Clerk#000000399|0|nusual, ironic frays. furiously bold | +41|191701|F|7667.05|1994-04-13|1-URGENT|Clerk#000002478|0|nic, regular pinto beans. bl| +42|668212|O|162158.48|1997-02-04|1-URGENT|Clerk#000000845|0|sly. permanent, specia| +43|123850|O|35390.49|1996-08-19|1-URGENT|Clerk#000004991|0|re. final braids cajole. even, unusual packag| +44|266341|F|125393.91|1992-01-25|3-MEDIUM|Clerk#000000299|0| accounts. requests haggle along| +45|370559|O|131224.99|1996-04-20|5-LOW|Clerk#000002265|0|kages. furiously final orbits affix furiously. foxes engage furiously | +46|731909|F|97074.30|1994-11-25|2-HIGH|Clerk#000001502|0|ecial accounts. quickly pend| +47|429643|F|78137.35|1993-11-11|2-HIGH|Clerk#000003784|0|inder furiously sometimes special requests. pac| +72|731431|O|108781.82|1997-07-24|1-URGENT|Clerk#000001159|0| careful foxes after the slyly express ideas detect idly into the pending| +73|648202|F|119517.08|1992-06-15|2-HIGH|Clerk#000003210|0|usual pinto beans. slyly regular platelets nag slyly. quic| +74|574394|P|174384.74|1995-03-12|2-HIGH|Clerk#000000067|0|tructions. pinto beans about the ironic courts haggle| +75|577552|O|12240.18|1996-12-31|4-NOT SPECIFIED|Clerk#000001956|0|its sleep blithely f| +76|412390|F|223472.54|1994-04-21|1-URGENT|Clerk#000003907|0|even ideas use furiously| +77|256603|O|221018.65|1998-05-11|3-MEDIUM|Clerk#000003322|0|ns: blithely unusual| +78|197981|O|100828.81|1995-08-23|5-LOW|Clerk#000004825|0| notornis haggle slyly ironic ideas. regular pinto beans run. pinto beans b| +79|453832|F|132141.99|1994-04-05|3-MEDIUM|Clerk#000003175|0|sits sleep blithely. furiously ruthless foxes near the furi| +104|28369|O|24993.83|1996-03-17|2-HIGH|Clerk#000000532|0|nusual packages according | +105|533920|O|165176.48|1995-11-16|4-NOT SPECIFIED|Clerk#000004846|0|ular accounts. fluffily special asymptotes wake furiously. ironic dol| +106|591823|F|251348.81|1994-09-04|2-HIGH|Clerk#000002038|0|the special, idle reque| +107|243245|F|55471.88|1994-02-20|2-HIGH|Clerk#000001377|0|ts. furiously express accounts sleep| +108|712265|F|51984.94|1993-10-16|5-LOW|Clerk#000003316|0|xpress packages are packages. ironic ho| +109|277651|O|230661.70|1998-05-13|1-URGENT|Clerk#000002571|0|ckly special excuses cajole blithely ironic dolphins| +110|726011|O|74141.12|1997-11-01|5-LOW|Clerk#000003193|0|pending foxes. blithe| +111|314114|O|143618.18|1997-12-13|4-NOT SPECIFIED|Clerk#000002218|0|ding, special Tiresias nag furiously furiously regular theodol| +136|63361|O|50541.23|1995-10-04|3-MEDIUM|Clerk#000001689|0|kages along the packages detect beneath the furiously even accounts. even pack| +137|638302|F|61963.52|1992-11-11|3-MEDIUM|Clerk#000002298|0|y bold packages. even, final dolphins integrate. pendi| +138|665425|P|188105.03|1995-03-22|4-NOT SPECIFIED|Clerk#000003953|0|s are furiously sly packages. bold foxes run blithely ironic, enticing | +139|538957|F|289509.68|1992-05-04|4-NOT SPECIFIED|Clerk#000003158|0|eep furiously across t| +140|494179|O|198894.52|1997-11-02|3-MEDIUM|Clerk#000001773|0|dazzle after the express asymptotes. slyly bold court| +141|138254|O|235075.57|1998-03-20|4-NOT SPECIFIED|Clerk#000003010|0|requests. blithely regular packages cajole quickly pendin| +142|119822|F|37303.03|1992-06-23|4-NOT SPECIFIED|Clerk#000001273|0|snooze beyond the pending packages. slyly even theodolites sl| +143|84913|F|75170.32|1994-04-04|2-HIGH|Clerk#000001205|0|sleep above the fluffily even packages; slyly special account| +168|612841|O|253651.03|1996-02-21|4-NOT SPECIFIED|Clerk#000002153|0|uriously final deposits. expres| +169|256456|O|9734.74|1995-03-31|4-NOT SPECIFIED|Clerk#000003925|0|ly ironic courts. fluffily s| +170|733960|F|224858.46|1994-11-07|5-LOW|Clerk#000002653|0|egular requests. even, regular excuses boost carefully according | +171|405649|F|23317.25|1995-01-05|4-NOT SPECIFIED|Clerk#000000497|0|fily regular pinto beans wake fluffi| +172|210052|F|73636.18|1992-04-06|5-LOW|Clerk#000000909|0|y silent accounts: s| +173|75649|O|182210.40|1996-02-28|2-HIGH|Clerk#000000096|0|mong the fluffily pending accounts. quickly final dugouts sleep| +174|169057|F|266988.41|1993-10-26|3-MEDIUM|Clerk#000004656|0|blithely final excuses cajole even packages. multi| +175|313598|O|126770.64|1998-04-07|2-HIGH|Clerk#000000652|0|c deposits. even, pending platelets poach furiou| +200|385237|F|79437.50|1993-07-22|3-MEDIUM|Clerk#000003526|0|fluffily even dolphins. p| +201|645367|F|111525.85|1992-03-01|5-LOW|Clerk#000001104|0| until the slyly sl| +202|182608|F|156936.70|1992-03-28|1-URGENT|Clerk#000000953|0| packages print carefully slyly pending foxes. unusual, | +203|75202|P|113713.51|1995-05-14|3-MEDIUM|Clerk#000004711|0|outs breach furiously carefully final accounts. pinto beans haggle | +204|149167|O|24608.21|1997-03-10|5-LOW|Clerk#000001342|0|s detect quickly around the requests. r| +205|545239|O|41589.46|1996-05-26|3-MEDIUM|Clerk#000002560|0|ts. pinto beans doze? pinto bea| +206|317458|F|175730.43|1992-05-30|2-HIGH|Clerk#000002563|0|tructions haggle. fluffily silent deposits | +207|2611|O|209587.18|1996-11-14|4-NOT SPECIFIED|Clerk#000001351|0| final requests affix carefully above the quickly thin dependencies? bl| +232|360212|F|156913.91|1993-12-28|3-MEDIUM|Clerk#000003850|0|gular requests are slyly along the bl| +233|80611|O|132485.34|1997-07-24|3-MEDIUM|Clerk#000002865|0|instructions nag. pending, pending accounts slee| +234|300124|F|71672.86|1994-01-24|2-HIGH|Clerk#000001284|0|l foxes. even excuses sleep slyly final, even requests. bold packa| +235|420683|O|333626.42|1996-09-22|5-LOW|Clerk#000004990|0|lly asymptotes. furiously regular dolphins poach fluffily fin| +236|158875|O|105963.41|1997-12-22|5-LOW|Clerk#000004809|0|ly special deposits. deposits nag slyly s| +237|180475|O|226401.36|1996-08-21|4-NOT SPECIFIED|Clerk#000004125|0| sleep blithely across the blithely express deposits. furious| +238|224077|O|197888.99|1997-05-15|3-MEDIUM|Clerk#000003334|0|requests. busy deposits use against the somas. deposits sleep enticingly abo| +239|303673|O|187452.14|1998-03-16|4-NOT SPECIFIED|Clerk#000003630|0|ly ironic accounts. blithely express asymptotes detect furi| +264|56965|O|108516.35|1995-10-20|3-MEDIUM|Clerk#000003613|0|fully final requests across the regular, r| +265|404005|O|179388.65|1997-02-17|3-MEDIUM|Clerk#000004957|0| ironic accounts. carefully express deposits x-ray qu| +266|331457|O|202415.57|1997-11-21|4-NOT SPECIFIED|Clerk#000001305|0| quickly dogged requests detect| +267|546710|O|237336.78|1996-08-20|4-NOT SPECIFIED|Clerk#000003782|0|gular, express packages print about the | +268|299881|F|217102.83|1994-11-24|4-NOT SPECIFIED|Clerk#000001306|0|nto beans cajole fluffily finally bold asymp| +269|78433|O|259108.23|1997-12-24|5-LOW|Clerk#000003387|0|about the carefully | +270|463094|O|149205.24|1997-04-22|1-URGENT|Clerk#000002586|0|ously final requests. daringly final platelets alon| +271|458506|O|189122.47|1997-10-12|2-HIGH|Clerk#000000530|0| special requests. reg| +296|607759|O|74996.80|1996-09-04|5-LOW|Clerk#000004906|0| along the special, unusual theodolites. fluf| +297|353767|F|95278.40|1994-08-23|2-HIGH|Clerk#000002478|0|ic waters. blithely bold asymptote| +298|482359|O|219216.13|1998-02-11|3-MEDIUM|Clerk#000002294|0|ly platelets. packages wake express accounts. express, regular accou| +299|226840|O|106926.75|1996-06-18|4-NOT SPECIFIED|Clerk#000004324|0|en accounts above the slyly ironic inst| +300|218018|O|37302.76|1995-08-24|5-LOW|Clerk#000000831|0|y. fluffily even ideas x-ray carefully fina| +301|461851|F|113607.28|1993-07-23|3-MEDIUM|Clerk#000000821|0| regular braids do haggle? carefully quiet pinto beans was slyly across th| +302|562124|O|74984.96|1998-07-21|1-URGENT|Clerk#000002015|0|lets. blithely special dugouts between the idle theodolites cajole amo| +303|608032|F|226292.21|1994-03-24|1-URGENT|Clerk#000003717|0|ons according to the pending, | +328|410321|O|205575.08|1996-03-10|5-LOW|Clerk#000001311|0|long the final accounts-- unusual tithes haggle against the slyly silent | +329|6073|O|312583.83|1996-08-02|5-LOW|Clerk#000002105|0|ly pending deposits| +330|51250|F|62349.87|1994-09-19|5-LOW|Clerk#000003098|0|ites cajole furiously stealthy req| +331|347399|O|240134.16|1998-02-18|4-NOT SPECIFIED|Clerk#000002769|0|ch slyly around the quickly ironic asymp| +332|727693|F|294273.58|1994-12-06|2-HIGH|Clerk#000003262|0|out the blithely even accounts. flu| +333|54680|O|150958.21|1997-09-04|5-LOW|Clerk#000001323|0|le furiously. fluffily final ideas use. pending accounts according | +334|242336|F|44506.66|1992-12-31|4-NOT SPECIFIED|Clerk#000003383|0|y ironic deposits nag regularly slyly ironic foxes. final, special excuses h| +335|432238|F|135660.64|1994-09-11|4-NOT SPECIFIED|Clerk#000002290|0|ly. regular deposits sleep ruthlessly among t| +360|109681|F|91257.64|1993-08-11|3-MEDIUM|Clerk#000004186|0|th the carefully special foxes. slyly pending accounts| +361|646078|O|139642.40|1995-08-04|3-MEDIUM|Clerk#000001923|0|s should wake final ideas. fluffily regular deposits print slyly. b| +362|116176|F|314104.85|1992-12-12|3-MEDIUM|Clerk#000001495|0|uests nag slyly unusual foxes. ironic, express acco| +363|296300|F|77537.18|1992-07-14|2-HIGH|Clerk#000003594|0| furiously unusual asymptotes cajole? pending, pending pinto bea| +364|649496|F|243724.51|1992-04-03|5-LOW|Clerk#000001884|0|s pinto beans. furiously enticing packages are bl| +365|565232|F|116928.32|1993-09-07|5-LOW|Clerk#000000245|0|courts affix. carefully even deposits after the furiou| +366|340201|O|48642.96|1998-06-17|1-URGENT|Clerk#000003544|0|sly enticingly special de| +367|475592|O|145047.88|1995-12-16|4-NOT SPECIFIED|Clerk#000003137|0|gage blithely bold courts. furiously regular waters against the fluffily re| +392|508810|F|79310.81|1993-03-07|5-LOW|Clerk#000004151|0| of the blithely even platelets. even | +393|42527|O|228061.26|1996-10-07|3-MEDIUM|Clerk#000004304|0|rding to the unusual, final foxes? packages nag| +394|746956|O|257242.72|1995-09-18|5-LOW|Clerk#000000342|0| furiously ironic dependencies affix. furiously regular pinto beans| +395|567811|O|70600.60|1995-06-26|4-NOT SPECIFIED|Clerk#000002667|0|old ideas cajole against the blithe packages. express requests nag quickl| +396|195734|O|200469.03|1997-09-30|3-MEDIUM|Clerk#000000922|0|ely regular instructions above the| +397|190586|O|291608.50|1996-04-03|5-LOW|Clerk#000000168|0| special dolphins cajole quickly ironic, special depos| +398|666434|O|220104.67|1998-05-14|2-HIGH|Clerk#000001125|0|ess packages. carefully even th| +399|253441|F|81292.59|1994-05-01|2-HIGH|Clerk#000000515|0|ly ironic requests integrate caref| +424|310099|F|224165.75|1994-11-05|3-MEDIUM|Clerk#000000938|0|s. carefully silent platelets cajole-| +425|79375|F|130122.72|1994-07-08|4-NOT SPECIFIED|Clerk#000003241|0|ironic accounts affix busily carefully even idea| +426|533017|F|192397.11|1992-10-05|4-NOT SPECIFIED|Clerk#000003793|0| quickly across the | +427|412139|O|124155.24|1996-08-26|2-HIGH|Clerk#000000136|0|s wake furiously about the q| +428|554141|F|22492.88|1993-04-12|2-HIGH|Clerk#000004516|0|pending requests-- slyly even depende| +429|687068|O|285103.05|1995-05-27|3-MEDIUM|Clerk#000000304|0|the blithely special deposits. car| +430|547717|O|223070.02|1997-02-04|1-URGENT|Clerk#000002048|0| slyly fluffily regular pinto b| +431|700894|F|79700.10|1994-04-28|1-URGENT|Clerk#000000869|0|sts among the regular, special packages haggle carefully re| +456|405778|O|1177.19|1996-09-11|5-LOW|Clerk#000004999|0| unusual ideas hagg| +457|133954|O|216510.18|1997-05-12|1-URGENT|Clerk#000001469|0|re evenly slyly regular pinto beans. slyly slow dependencies| +458|583795|O|157296.52|1996-11-18|3-MEDIUM|Clerk#000000705|0|ss the final sentiments cajole carefully regular ideas. even accounts cajo| +459|325882|F|105831.63|1992-05-14|4-NOT SPECIFIED|Clerk#000001908|0|ely sly grouches haggle around the regular, bold | +460|590806|O|74784.91|1995-10-07|5-LOW|Clerk#000004478|0|tly express accounts. accounts | +461|392894|F|229795.10|1992-11-01|2-HIGH|Clerk#000003717|0|usual instructions nag among t| +462|367457|O|344659.16|1997-10-25|5-LOW|Clerk#000003813|0|hins among the pending theodolites haggle quickly | +463|339236|F|188281.00|1994-12-09|2-HIGH|Clerk#000002676|0|quests detect along the regular, unusual| +488|31864|O|246117.16|1997-06-02|5-LOW|Clerk#000001704|0|. instructions detect s| +489|14455|F|282371.14|1992-07-13|2-HIGH|Clerk#000002971|0|tealthy, final ideas cajole carefully to the carefully regular theodo| +490|685846|F|185736.88|1992-05-19|3-MEDIUM|Clerk#000003681|0|sits around the bold pains are fluffily s| +491|251389|O|280780.33|1995-06-20|1-URGENT|Clerk#000003589|0|lar sauternes. final foxes play furiously. carefully unusu| +492|340468|O|85020.92|1998-07-14|4-NOT SPECIFIED|Clerk#000004631|0| blithely special packages. quickly even deposits| +493|488282|O|248864.09|1997-03-07|5-LOW|Clerk#000000057|0|usly beside the regular, daring excuses. carefully final dependencies| +494|46106|F|169134.38|1992-06-21|3-MEDIUM|Clerk#000001507|0|yly final theodolites. packages affix? ruthlessly regular package| +495|138010|F|116426.89|1993-04-30|3-MEDIUM|Clerk#000004273|0|the even deposits. carefully idle accoun| +520|507010|O|126234.06|1997-04-03|5-LOW|Clerk#000004703|0|nto beans. express, speci| +521|556480|O|41231.21|1997-02-26|1-URGENT|Clerk#000003142|0|ests are. final accounts cajo| +522|226790|F|151959.45|1993-06-08|3-MEDIUM|Clerk#000001070|0|atelets. foxes integrate slyly. waters haggle slyly bli| +523|151579|F|87838.00|1992-08-24|2-HIGH|Clerk#000003660|0|lar requests are quickly above the slyly regular| +524|571330|F|17798.90|1994-02-19|3-MEDIUM|Clerk#000004953|0|cross the final dolphin| +525|70519|F|190800.15|1994-03-24|2-HIGH|Clerk#000004443|0|quests could have to sleep fluffily. thin pinto beans cajol| +526|184918|F|113048.56|1993-10-31|3-MEDIUM|Clerk#000002908|0|al realms. blithely even deposits haggle slyly. | +527|664882|F|141231.88|1994-11-29|4-NOT SPECIFIED|Clerk#000000925|0|thely express packages detect carefully slyly ironic| +552|402715|F|99200.23|1993-11-30|1-URGENT|Clerk#000000498|0|deas toward the excuses cajole fluffily furiously final i| +553|403931|P|177443.01|1995-05-28|5-LOW|Clerk#000002447|0|ts across the furiously pending packages s| +554|609001|O|200749.06|1996-09-14|2-HIGH|Clerk#000002969|0|es wake slyly about the ca| +555|205931|F|132806.28|1994-05-03|3-MEDIUM|Clerk#000004692|0|. quickly bold asymptotes poach slyly slyly final accounts. instructions wake| +556|576469|F|269421.65|1993-03-12|4-NOT SPECIFIED|Clerk#000002075|0|y furiously final packages. bold requests about the idea| +557|189115|O|244616.57|1996-09-04|1-URGENT|Clerk#000003945|0| beans doze quickly express dugouts. slyly ironic courts above the quickly f| +558|685720|O|147898.10|1996-05-04|1-URGENT|Clerk#000002159|0|ges. deposits around the slyly| +559|385741|O|291906.74|1995-09-19|1-URGENT|Clerk#000002655|0|alongside of the permanent pint| +584|118079|O|301211.79|1997-11-07|3-MEDIUM|Clerk#000002992|0|tructions. even foxes try to wake evenly slyly express a| +585|51869|F|166229.82|1994-05-28|3-MEDIUM|Clerk#000001051|0|deposits are after the regular deposits. slyly| +586|251831|O|233430.06|1998-07-03|2-HIGH|Clerk#000001929|0|lar, express dependencies ar| +587|266899|O|126268.38|1998-02-10|5-LOW|Clerk#000000088|0|ng the blithely stealthy excuses snooze slyly above the unus| +588|748144|O|130418.03|1997-06-20|5-LOW|Clerk#000003923|0|nstructions above the ideas snooze regular ideas. special, re| +589|302929|O|108856.17|1998-01-20|4-NOT SPECIFIED|Clerk#000000285|0| are quickly. slyly ironic pinto beans sleep sl| +590|310216|O|224488.52|1997-10-23|2-HIGH|Clerk#000001664|0|ilent foxes. platelets | +591|539440|F|297193.76|1993-12-14|3-MEDIUM|Clerk#000003436|0|. finally pending dolphins haggle across the final, express pinto beans| +616|349948|F|34084.26|1993-12-24|1-URGENT|Clerk#000003743|0|e furiously even dolphins. accounts | +617|42550|F|202108.87|1993-05-08|1-URGENT|Clerk#000003567|0|the enticingly ironic packag| +618|363118|F|67881.81|1994-02-28|3-MEDIUM|Clerk#000003368|0|lar pains. bold pinto beans are. pending, r| +619|161884|F|312040.79|1992-10-24|2-HIGH|Clerk#000003443|0|eposits cajole above the reque| +620|507437|F|185140.40|1994-10-10|4-NOT SPECIFIED|Clerk#000002470|0|le silent requests. even, ruthless e| +621|230995|O|146684.66|1996-11-24|2-HIGH|Clerk#000002748|0|re quickly regular platelets. slo| +622|331213|F|297870.71|1994-02-16|2-HIGH|Clerk#000001797|0|ayers. quietly express platelets are blithely around the unusual accounts. car| +623|173192|F|52636.35|1995-01-27|5-LOW|Clerk#000004845|0|beans haggle furiously. even,| +648|77752|O|188340.69|1996-07-18|2-HIGH|Clerk#000003046|0|special packages unwind carefully bold, ironic requests| +649|274301|F|153146.17|1994-10-12|3-MEDIUM|Clerk#000003999|0|he furiously final requests. blithely regular foxes nag c| +650|674837|O|17112.11|1995-07-18|1-URGENT|Clerk#000001311|0|s. quickly express asymptotes | +651|470296|O|89474.96|1997-10-19|4-NOT SPECIFIED|Clerk#000004125|0|ly. blithely express packages believe careful| +652|736463|O|328519.33|1996-07-14|1-URGENT|Clerk#000001908|0|h the slyly even excuses wake according to the slyly pending requests; blith| +653|471598|O|72275.19|1995-10-08|4-NOT SPECIFIED|Clerk#000002358|0|low courts sleep quickly carefully pending ideas| +654|134659|F|240439.79|1993-05-07|3-MEDIUM|Clerk#000000242|0|lly regular requests haggle carefully against the fluf| +655|433013|F|90663.22|1992-01-06|5-LOW|Clerk#000000537|0|instructions. bold, regular requests sleep slyly. sp| +680|398470|F|218514.98|1994-09-09|3-MEDIUM|Clerk#000003839|0|cording to the ideas. regular foxes across| +681|304774|F|275334.42|1993-11-04|4-NOT SPECIFIED|Clerk#000003718|0| carefully. silent accounts haggle fluffily regular, ruthl| +682|561091|O|289522.53|1997-09-03|5-LOW|Clerk#000001566|0|tes sleep slowly along the blithely bold decoys. foxes cajole carefully. fluf| +683|491299|F|31564.21|1994-03-06|3-MEDIUM|Clerk#000004136|0|ost. accounts cajole unusual dependencies. pending, bold deposits haggle fur| +684|479587|O|269858.04|1996-04-23|3-MEDIUM|Clerk#000001230|0|ly slow instructions. carefully regular theo| +685|157108|F|160372.42|1992-05-02|2-HIGH|Clerk#000004536|0|ts integrate carefully unusual pains. blithely unusual dependencies cajol| +686|511886|F|141925.28|1993-08-15|5-LOW|Clerk#000004175|0|ccounts among the fluffy dependencies cajole carefully along the slyly bol| +687|15664|F|97202.19|1992-11-21|1-URGENT|Clerk#000004740|0|about the quickly bold pinto beans. ironic accounts| +712|745832|O|95007.65|1998-07-10|5-LOW|Clerk#000002438|0|f the ironic platelets sleep regula| +713|433688|O|286965.22|1996-02-24|1-URGENT|Clerk#000001515|0| according to the special, unusua| +714|488443|F|248079.30|1992-09-22|3-MEDIUM|Clerk#000000646|0| the theodolites. final requests according to the fluffy theodolites sleep fur| +715|509446|O|86056.05|1996-12-05|4-NOT SPECIFIED|Clerk#000003546|0|ng packages. slyly regular pla| +716|236857|P|305646.69|1995-04-23|4-NOT SPECIFIED|Clerk#000000964|0|nts integrate quickly even platelets. special | +717|577372|F|241971.94|1994-08-25|2-HIGH|Clerk#000001733|0|g ideas are bold, final accounts. final deposits boost ruthlessly sl| +718|388015|O|37883.77|1998-06-20|2-HIGH|Clerk#000000903|0|uriously regular theodolites. even hockey players do sleep quickly. c| +719|115864|F|122848.80|1993-03-25|3-MEDIUM|Clerk#000004769|0|posits cajole slyly ironic multipliers. furiously final e| +744|299806|F|82165.92|1992-06-16|5-LOW|Clerk#000000196|0| requests breach quickly express t| +745|313414|O|302936.34|1995-07-13|2-HIGH|Clerk#000001371|0|ole around the furiously unusual pinto beans. fur| +746|286939|O|72975.88|1997-10-18|5-LOW|Clerk#000000670|0|ly ironic packages are about the always express deposits. blithely unusual a| +747|64451|F|128632.79|1994-10-16|4-NOT SPECIFIED|Clerk#000002633|0|e ironic requests affix fluffily regular depo| +748|214361|P|168300.31|1995-04-29|5-LOW|Clerk#000001134|0|platelets about the instructions haggle above the special | +749|504964|O|166353.37|1998-03-07|3-MEDIUM|Clerk#000004054|0|furiously ironic instructions against the ironic accou| +750|654796|O|76654.28|1996-05-08|2-HIGH|Clerk#000002586|0|ke blithely. carefully pendi| +751|396775|F|198574.11|1994-07-21|2-HIGH|Clerk#000000720|0|ions haggle quickly according| +776|330074|O|360095.66|1996-04-29|3-MEDIUM|Clerk#000000070|0|d carefully furiousl| +777|547645|F|244572.13|1992-07-09|2-HIGH|Clerk#000001337|0|ul foxes. fluffily special| +778|258542|F|221615.32|1993-12-11|2-HIGH|Clerk#000002390|0| the unusual, express platelets. pinto beans sleep acc| +779|557984|O|85760.58|1996-01-07|5-LOW|Clerk#000003899|0|ses eat blithely regular foxes. ironic | +780|35314|O|47396.78|1998-03-19|5-LOW|Clerk#000003989|0|fully bold instructions ag| +781|256871|O|70961.08|1998-05-05|1-URGENT|Clerk#000003376|0|thely final asymptotes use among the fluffily regular ideas. final instruction| +782|220879|F|216012.53|1992-10-18|2-HIGH|Clerk#000003732|0|ly among the pending foxes. carefully even platelets hinder agains| +783|549289|O|108062.37|1996-12-03|4-NOT SPECIFIED|Clerk#000000128|0|l courts haggle blithely according to the regular pinto beans. quickl| +808|122092|F|139608.93|1992-08-31|1-URGENT|Clerk#000002425|0|r platelets. regular, express accounts run blithely ev| +809|738410|F|57590.25|1993-06-14|4-NOT SPECIFIED|Clerk#000001316|0|ven platelets. asymptotes affix carefully. stealthily final pinto beans poac| +810|192160|F|78338.41|1994-02-15|1-URGENT|Clerk#000002781|0| final packages according| +811|101821|F|21192.30|1994-12-08|2-HIGH|Clerk#000002241|0|ven, unusual asymptotes according to the blithely | +812|531199|O|80162.87|1996-09-29|3-MEDIUM|Clerk#000001107|0|lar, regular excuses according to the carefully| +813|591853|F|142983.37|1992-01-14|2-HIGH|Clerk#000000138|0| foxes against the blithely unusual requests haggle pending, spe| +814|15427|F|263562.57|1992-08-03|5-LOW|Clerk#000002887|0| the carefully final deposi| +815|512143|O|339406.34|1995-08-21|1-URGENT|Clerk#000000658|0|sts. ironic requests use across the regul| +840|581452|F|167876.73|1995-01-07|5-LOW|Clerk#000003074|0| even requests are slyly quickly final theodolites. quickly blithe depo| +841|706801|F|1569.42|1994-01-22|1-URGENT|Clerk#000004249|0|ending foxes affix furiously. fluffily bold deposits cajole slyly bold | +842|693770|O|210447.59|1997-04-22|2-HIGH|Clerk#000001927|0| sleep carefully above the req| +843|684493|O|42990.42|1995-06-17|2-HIGH|Clerk#000002152|0|nts. quickly silent deposits are. blithely regular foxes ac| +844|740378|F|8015.05|1993-01-18|2-HIGH|Clerk#000003545|0|nst the carefully regular | +845|278483|O|43496.00|1997-02-02|1-URGENT|Clerk#000004925|0|fluffily. carefully regular requests cajole quietly alon| +846|454627|O|52239.51|1996-11-14|1-URGENT|Clerk#000000536|0|after the blithely bold packages. carefully final courts affix sl| +847|655216|O|231925.48|1998-01-08|1-URGENT|Clerk#000000120|0|gular ideas. final instructions wake blithely. careful| +872|684490|O|140268.98|1998-01-23|2-HIGH|Clerk#000001898|0|tions sleep quickly| +873|719728|F|64222.15|1995-02-14|5-LOW|Clerk#000004981|0|unusual packages alongside of the theo| +874|466030|F|140462.88|1993-09-02|3-MEDIUM|Clerk#000003096|0|the fluffily final packa| +875|289984|O|73408.19|1997-03-08|4-NOT SPECIFIED|Clerk#000004863|0|ets haggle carefully according to the furious| +876|256843|F|330955.87|1992-11-07|1-URGENT|Clerk#000001713|0|. quickly unusual asymp| +877|478135|O|128958.34|1995-12-30|5-LOW|Clerk#000004743|0|refully about the fur| +878|495916|F|56666.18|1994-12-22|4-NOT SPECIFIED|Clerk#000003265|0|y regular asymptotes cajole blithely after the | +879|88810|O|105847.48|1998-07-15|1-URGENT|Clerk#000003466|0|theodolites sleep. | +904|105430|O|130423.28|1997-07-29|2-HIGH|Clerk#000000434|0|sual instructions poach regul| +905|433276|O|178507.45|1997-01-11|3-MEDIUM|Clerk#000000717|0| final ideas. furiously regular deposits pro| +906|290929|O|76750.89|1998-07-01|1-URGENT|Clerk#000004244|0|le slyly across the slyly slow pac| +907|375685|O|290720.35|1998-01-26|2-HIGH|Clerk#000001288|0|-- deposits sleep furiously. quickly final requests at| +908|608711|O|79489.40|1998-08-02|4-NOT SPECIFIED|Clerk#000003542|0|structions haggle amo| +909|603364|F|163677.40|1993-02-27|1-URGENT|Clerk#000003503|0|quickly special requests; even packages abo| +910|714761|F|235836.52|1992-09-03|2-HIGH|Clerk#000004034|0|nag. blithely ironic platelets across the regular packages detec| +911|232405|F|243352.43|1993-09-04|3-MEDIUM|Clerk#000001945|0| escapades sleep bl| +936|11725|O|6870.93|1997-07-02|3-MEDIUM|Clerk#000004157|0| pending packages after the blithely ironic accounts cajole carefully b| +937|531061|O|172201.50|1998-07-29|4-NOT SPECIFIED|Clerk#000002453|0|deas wake blithely. furiously even instructions h| +938|541699|O|129742.50|1997-01-26|1-URGENT|Clerk#000002043|0| sleep carefully final instructions. instructions nag. carefully ironic| +939|72568|F|241910.45|1994-06-15|4-NOT SPECIFIED|Clerk#000004880|0|es nag at the carefully ironic ideas. even, final pack| +940|119161|F|329095.85|1994-07-27|3-MEDIUM|Clerk#000003552|0|o beans detect furiously acros| +941|224980|F|9455.93|1992-12-15|1-URGENT|Clerk#000001810|0|t ironic, final deposits. bold, express accounts maintain carefully. furi| +942|481261|O|120064.08|1997-04-18|5-LOW|Clerk#000004929|0|gular dependencies maintain evenly around the fluffily unusual platele| +943|526828|O|282313.34|1997-09-02|2-HIGH|Clerk#000001948|0|nag among the slyly p| +968|615875|F|244814.97|1992-12-30|5-LOW|Clerk#000004164|0|as? final deposits | +969|257821|P|284438.80|1995-03-24|4-NOT SPECIFIED|Clerk#000004442|0|ncies boost among the quickly even escapades. regular deposits ca| +970|423400|O|8950.69|1997-11-05|1-URGENT|Clerk#000001682|0|y ironic asymptotes boost carefully around t| +971|81896|F|38519.34|1992-08-20|3-MEDIUM|Clerk#000003367|0|furiously. carefully unu| +972|161645|F|232174.03|1994-05-24|5-LOW|Clerk#000003759|0|lithely regular requests cajole furiously.| +973|251572|O|305181.98|1997-05-18|5-LOW|Clerk#000004782|0|tect blithely blithely ironic accounts. final dep| +974|416437|F|212029.88|1994-03-12|5-LOW|Clerk#000000345|0| deposits. regular pack| +975|41890|F|178391.83|1993-02-27|5-LOW|Clerk#000002853|0|en instructions. bold, even sauternes use; deposits according to the| +1000|522368|O|210605.35|1997-05-12|5-LOW|Clerk#000002591|0|y even foxes engage special, special packages. carefully ironic packages a| +1001|679421|F|220023.95|1995-02-10|2-HIGH|Clerk#000001573|0|tes about the furiously ironic accounts are along the slyly regu| +1002|266453|O|107653.81|1995-11-25|3-MEDIUM|Clerk#000004749|0| blithely silent, regular pinto bea| +1003|14384|F|258392.70|1994-02-07|2-HIGH|Clerk#000001486|0| blithely at the unusual, busy instructions. carefully even deposits sn| +1004|245884|F|79315.05|1993-07-28|2-HIGH|Clerk#000002795|0|above the pending dependencies cajole blithely slyly final ac| +1005|55507|F|7100.52|1992-11-30|2-HIGH|Clerk#000004310|0|es. quickly ironic | +1006|640354|O|275847.40|1996-11-02|4-NOT SPECIFIED|Clerk#000003238|0|lly slyly even depende| +1007|664312|O|36370.91|1995-11-22|5-LOW|Clerk#000000349|0|le carefully final platelets. unusual ac| +1032|568301|O|228605.29|1998-05-29|1-URGENT|Clerk#000004777|0|leep final dependencies. bold, express pinto beans detect carefully i| +1033|183784|O|51558.93|1996-12-10|3-MEDIUM|Clerk#000001686|0|run. fluffily express deposits run carefully along the furiously express r| +1034|346576|F|201343.82|1994-09-12|5-LOW|Clerk#000000800|0|ies haggle blithely express warhorses. furiously final packages wake sly| +1035|400886|F|178081.29|1995-02-08|1-URGENT|Clerk#000002478|0|es. slyly unusual packages are! fluffily unusu| +1036|434941|F|180727.85|1993-07-10|2-HIGH|Clerk#000002738|0|ayers among the slyly fin| +1037|536542|O|85622.50|1995-04-30|5-LOW|Clerk#000001882|0|lessly requests. furiously careful epitaphs must | +1038|402082|O|199887.03|1997-12-11|1-URGENT|Clerk#000002998|0|gle carefully above| +1039|278374|O|38884.30|1997-02-12|2-HIGH|Clerk#000000108|0|ix fluffily along the carefully| +1064|101128|O|30488.05|1997-10-05|4-NOT SPECIFIED|Clerk#000003637|0|ss the close asymptotes. bli| +1065|139693|O|122021.65|1998-04-01|2-HIGH|Clerk#000001546|0| silent ideas. ironic foxes sleep aga| +1066|315049|F|59283.12|1992-07-24|3-MEDIUM|Clerk#000000136|0|he express braids. even, even ideas across the ironic packages are a| +1067|5611|O|139593.96|1995-12-17|4-NOT SPECIFIED|Clerk#000002333|0|he unusual deposits. even accounts wake fluffily. packages sl| +1068|533111|F|104523.81|1994-01-04|1-URGENT|Clerk#000003559|0|ions. carefully even deposits los| +1069|483284|F|69263.78|1992-03-29|5-LOW|Clerk#000002658|0|cajole slyly above the packages. regula| +1070|47995|F|92634.88|1994-04-07|1-URGENT|Clerk#000003204|0|es: regular, final excuses cajole at the furiously final requests. slyly unu| +1071|394400|P|194509.98|1995-03-04|5-LOW|Clerk#000002618|0| slyly fluffily ironic dolphins| +1096|176362|F|51106.52|1993-07-03|5-LOW|Clerk#000002317|0| beans sleep blithely around the quickly bold accounts! even, ironic | +1097|106996|F|120491.15|1993-08-01|2-HIGH|Clerk#000001675|0|ts. packages according to the theodolites use carefully throughou| +1098|517172|F|50194.30|1993-06-10|2-HIGH|Clerk#000000952|0|lithely furiously regular accounts. carefully ironic pinto beans aga| +1099|352420|O|55597.42|1998-05-26|2-HIGH|Clerk#000000462|0|sly pending packages. b| +1100|345422|F|141212.91|1992-09-27|1-URGENT|Clerk#000000824|0|kages. silent deposit| +1101|499178|O|151748.74|1996-08-02|4-NOT SPECIFIED|Clerk#000002567|0|mong the slyly final packages are furiously c| +1102|173338|O|216610.61|1998-05-01|5-LOW|Clerk#000001718|0|ously regular requests aff| +1103|280826|O|168349.36|1997-02-17|5-LOW|Clerk#000003019|0|efully pending accounts u| +1128|84004|F|52800.16|1992-07-24|4-NOT SPECIFIED|Clerk#000003777|0|heodolites detect. slyly ironic platelets haggle carefull| +1129|340210|F|280809.66|1993-08-31|4-NOT SPECIFIED|Clerk#000003256|0|as cajole carefully. furiously ironic pinto beans against the quickly regular| +1130|641695|O|223230.90|1997-10-07|5-LOW|Clerk#000003572|0|ly blithely ironic instructions. pinto beans sle| +1131|701056|F|160090.40|1992-08-08|4-NOT SPECIFIED|Clerk#000003929|0|er the regular accounts. carefully ironic foxes hang slyly r| +1132|132083|F|187205.30|1994-03-16|3-MEDIUM|Clerk#000001722|0|quickly. furiously bold theodolites bo| +1133|658030|F|99668.03|1993-04-19|1-URGENT|Clerk#000003728|0|eep carefully fluffily regul| +1134|3274|O|157590.89|1997-11-18|4-NOT SPECIFIED|Clerk#000001124|0| packages play boldly fluffily final dependencies. even foxe| +1135|276025|O|177854.07|1995-05-30|4-NOT SPECIFIED|Clerk#000000997|0|ide of the carefully pending ideas. ironic dependenci| +1160|391999|O|92884.67|1995-10-06|1-URGENT|Clerk#000002437|0|tructions! unusual ideas sleep instructions. f| +1161|301753|F|112572.17|1993-01-29|4-NOT SPECIFIED|Clerk#000003055|0|ound the blithe ideas. fluffily fluffy theodolites haggle blithely durin| +1162|50710|F|284564.44|1993-08-28|5-LOW|Clerk#000000421|0|beans are fluffily blithely pending deposits. slyly dogged excuses sleep acco| +1163|264776|F|227194.92|1993-05-08|2-HIGH|Clerk#000000545|0|lithely pending ideas dazzle slowly unusual pack| +1164|335716|F|77225.70|1992-07-22|1-URGENT|Clerk#000000914|0|ual foxes use carefully bo| +1165|116390|F|194654.82|1994-07-01|5-LOW|Clerk#000000993|0|ilent requests. silent deposits use b| +1166|155162|F|72744.22|1993-12-18|5-LOW|Clerk#000003426|0|ly ironic deposits along the carefully | +1167|45329|F|18928.77|1994-11-14|4-NOT SPECIFIED|Clerk#000002285|0|fily ironic accounts. ideas haggle accordin| +1192|580081|F|52236.41|1994-07-28|2-HIGH|Clerk#000002682|0|rding to the idly even a| +1193|139769|O|277189.02|1996-04-15|3-MEDIUM|Clerk#000003015|0|heodolites sleep carefully alongside of the final, special requests. | +1194|89846|F|162464.56|1992-03-26|2-HIGH|Clerk#000001635|0|ect slyly against the deposits. carefull| +1195|288232|O|21339.68|1997-05-02|4-NOT SPECIFIED|Clerk#000004035|0|s excuses. carefully even requests about the quickly reg| +1196|56017|O|23018.54|1995-08-10|2-HIGH|Clerk#000002545|0|promise blithely-- blithely even epitaphs detect. slyly regular accounts grow| +1197|210022|F|212125.31|1994-05-20|1-URGENT|Clerk#000000894|0|ly express pinto beans along the quickly even | +1198|339461|F|294628.54|1994-11-24|2-HIGH|Clerk#000003947|0| carefully ironic p| +1199|61465|F|55194.94|1993-07-29|5-LOW|Clerk#000001400|0|d accounts use quickly furiously special p| +1224|288674|O|137965.92|1998-01-31|3-MEDIUM|Clerk#000000209|0|ts are slyly carefully unusual packages? blithely b| +1225|736403|F|293840.49|1993-07-30|5-LOW|Clerk#000004617|0|gle across the final accounts| +1226|212237|O|186341.51|1995-12-21|3-MEDIUM|Clerk#000004175|0| haggle blithely about the blithely regular ideas. slyly unus| +1227|54775|F|278986.78|1992-06-16|1-URGENT|Clerk#000003508|0| requests wake after the carefu| +1228|331315|F|99369.03|1992-10-27|1-URGENT|Clerk#000004372|0|s wake among the furiously ironic ideas. unusual requests| +1229|384943|F|253225.02|1992-11-17|1-URGENT|Clerk#000001176|0|ilent theodolites among the furiously unusual requests aff| +1230|213739|F|234437.41|1994-04-28|5-LOW|Clerk#000000251|0| fluffily. slyly expre| +1231|559049|O|207542.46|1998-01-30|1-URGENT|Clerk#000000334|0| packages doubt express, express deposits. idly | +1256|682429|P|155966.19|1995-02-28|1-URGENT|Clerk#000000059|0|blithely ironic ideas. regular accounts mold furiously. ironic, regular acc| +1257|556201|O|48928.80|1998-04-06|3-MEDIUM|Clerk#000002857|0|lly-- blithely unusual asymptotes believe carefully. slyly iro| +1258|59120|F|296196.60|1993-07-05|1-URGENT|Clerk#000003107|0| slyly along the enticing foxes. blithely even packages ha| +1259|620117|O|142585.31|1996-03-14|1-URGENT|Clerk#000001402|0|ructions. deposits integrate slyly above the | +1260|290356|O|172135.63|1997-08-26|4-NOT SPECIFIED|Clerk#000001612|0|y ruthless requests | +1261|505888|F|118361.17|1994-10-16|3-MEDIUM|Clerk#000000143|0|ly special deposits. car| +1262|456224|O|65391.85|1997-10-14|5-LOW|Clerk#000000549|0|gle blithely among the slyly bold deposits. slyly regular deposits alongsi| +1263|499279|F|108857.37|1993-02-02|2-HIGH|Clerk#000001025|0|ickly express deposits engage slyly. slyl| +1288|352471|F|215023.67|1993-01-17|3-MEDIUM|Clerk#000000564|0|uriously besides the slyly unusual packages. furiously pendi| +1289|450197|F|338485.23|1993-04-14|4-NOT SPECIFIED|Clerk#000004030|0|sts serve. ironic theodolites could have to wake against the car| +1290|444670|F|165133.11|1993-10-07|4-NOT SPECIFIED|Clerk#000003814|0|ndencies about the carefully ruthless the| +1291|558713|F|198799.74|1992-08-25|1-URGENT|Clerk#000000072|0|ic accounts according| +1292|286948|F|102569.98|1992-05-10|5-LOW|Clerk#000002758|0|hely express accounts a| +1293|206564|O|258656.22|1997-04-03|3-MEDIUM|Clerk#000003067|0|ual packages cajole blithely| +1294|710402|F|207932.52|1992-10-29|5-LOW|Clerk#000001588|0|e quickly. unusual deposits snooze. blithely express instructions eat fluff| +1295|475306|F|108035.01|1994-08-13|4-NOT SPECIFIED|Clerk#000002313|0|arefully regular accounts boost carefull| +1320|188554|O|356934.29|1997-02-04|1-URGENT|Clerk#000002978|0|en platelets use bli| +1321|267463|O|85132.25|1998-03-31|5-LOW|Clerk#000004031|0|arefully ironic accounts wake express deposits. furiou| +1322|495719|O|216588.92|1995-08-08|2-HIGH|Clerk#000002266|0|riously after the fur| +1323|545548|O|204583.73|1996-01-22|4-NOT SPECIFIED|Clerk#000001153|0|es are furiously after the carefully final requests: si| +1324|253787|F|294079.48|1992-01-31|5-LOW|Clerk#000003165|0|lar, regular theodolites play slyly carefully sp| +1325|141946|F|42837.64|1992-04-28|4-NOT SPECIFIED|Clerk#000001412|0|r the ironic, express platelets. f| +1326|672592|P|332737.42|1995-04-16|4-NOT SPECIFIED|Clerk#000000289|0|y. even platelets are according to the regular deposits. furio| +1327|233470|F|78089.87|1994-05-13|4-NOT SPECIFIED|Clerk#000000390|0|st stealthily carefully final requests. sly| +1352|663217|O|247522.59|1997-03-01|3-MEDIUM|Clerk#000004107|0| are slyly according to the express| +1353|175784|O|57275.83|1997-10-06|1-URGENT|Clerk#000001095|0|lyly stealthy dependencies. blithely special depths haggle quickly besides th| +1354|141118|F|159199.09|1992-03-16|1-URGENT|Clerk#000000490|0|s are. carefully ruthle| +1355|258145|O|127646.99|1996-04-07|3-MEDIUM|Clerk#000004276|0|. deposits can are carefully furiously even pinto beans. c| +1356|620695|F|283130.76|1992-03-31|4-NOT SPECIFIED|Clerk#000002883|0|ffily. carefully bold accounts unwind. deposits sleep alongside of the express| +1357|250123|O|70074.25|1998-07-16|5-LOW|Clerk#000003181|0| platelets haggle stealthily. enticing | +1358|66788|O|216145.21|1995-10-21|1-URGENT|Clerk#000003218|0|s cajole slyly unusual deposits; ideas| +1359|499093|F|92702.81|1994-08-22|3-MEDIUM|Clerk#000003083|0|y asymptotes was. carefully pending foxes sleep quickly. fluffily bold| +1384|253486|P|214187.97|1995-03-15|2-HIGH|Clerk#000004653|0|ave excuses cajole slyly carefully ruthless deposits. quickly pendin| +1385|326839|O|67974.84|1996-09-28|1-URGENT|Clerk#000002849|0|quickly express ideas. quiet excuses use about the blithely p| +1386|172057|F|140881.12|1993-09-13|1-URGENT|Clerk#000001152|0|riously according to the slyly even ac| +1387|491926|O|112358.07|1997-08-30|4-NOT SPECIFIED|Clerk#000002163|0|nto beans outside the s| +1388|542251|P|143390.65|1995-05-11|2-HIGH|Clerk#000004274|0|ar foxes use carefully | +1389|344431|O|317933.33|1997-05-10|2-HIGH|Clerk#000002771|0|efully regular ideas sublate. instructions serve furiou| +1390|344854|F|64942.78|1992-03-20|3-MEDIUM|Clerk#000000448|0|ial depths. silent dependencies cajole fluffily. blithely ironi| +1391|699961|O|295989.17|1997-06-03|5-LOW|Clerk#000004597|0|encies are slyly. q| +1416|478624|F|3423.01|1994-05-01|2-HIGH|Clerk#000001081|0|refully even dolphins of the carefully final asymptotes believe slyl| +1417|475537|O|193860.89|1997-03-23|2-HIGH|Clerk#000004698|0|ts use blithely around the slyly regular Tiresias. bold, expre| +1418|328603|F|156265.95|1992-06-20|2-HIGH|Clerk#000004469|0|tions. furiously ironic accounts unwind accor| +1419|552949|F|130333.06|1993-06-16|5-LOW|Clerk#000001203|0|kages. furiously final | +1420|148583|F|272497.12|1994-12-31|3-MEDIUM|Clerk#000002561|0|osits sleep careful| +1421|477056|O|215440.05|1997-09-05|3-MEDIUM|Clerk#000002163|0| blithely bold frays are furiously ironic dep| +1422|379348|F|34968.54|1994-09-22|2-HIGH|Clerk#000002353|0|efully regular deposits. sometimes regular accounts around | +1423|687016|O|238888.47|1997-04-15|2-HIGH|Clerk#000000260|0|ons boost slyly among the slyly fluffy requests. | +1448|405052|F|247601.64|1994-01-21|5-LOW|Clerk#000001030|0|endencies mold careful somas; specia| +1449|698084|O|275574.78|1998-05-05|1-URGENT|Clerk#000004251|0|ecial requests. sometimes express deposits solve blithely special ideas. spec| +1450|446135|O|99439.47|1997-01-12|1-URGENT|Clerk#000004334|0|odolites. blithely even packages along the boldly regular platelets cajole| +1451|437881|O|195775.76|1997-12-09|4-NOT SPECIFIED|Clerk#000000758|0|ns boost. carefully daring foxes use.| +1452|451846|F|165402.79|1992-08-01|1-URGENT|Clerk#000000584|0|across the slyly ironic packages| +1453|419528|O|1181.12|1996-09-10|1-URGENT|Clerk#000000892|0|ts haggle carefully regular packages. fur| +1454|252446|F|114572.45|1992-11-21|3-MEDIUM|Clerk#000002111|0|ously bold pinto beans after the doggedly pendin| +1455|101585|F|224458.51|1994-06-25|3-MEDIUM|Clerk#000000124|0|en asymptotes nag quickly pending accounts. fluf| +1480|338353|F|44814.06|1992-09-17|4-NOT SPECIFIED|Clerk#000002751|0|doubt bold ideas. stealthy accounts nag against the special| +1481|169564|O|99185.39|1998-04-21|1-URGENT|Clerk#000000214|0|requests solve blithely: s| +1482|610159|O|259993.56|1997-10-14|5-LOW|Clerk#000004274|0|lar packages. carefully express| +1483|162181|F|249274.72|1994-08-24|2-HIGH|Clerk#000002685|0|l, special excuses. quickly regular p| +1484|274916|O|20913.77|1997-06-19|5-LOW|Clerk#000000418|0| deposits according to the even | +1485|508321|O|87119.73|1996-04-02|3-MEDIUM|Clerk#000002190|0|even deposits. fluffily regular instructions use slyly. slyly final deposit| +1486|86567|O|100830.03|1998-07-21|1-URGENT|Clerk#000004444|0|ons could are carefully pending courts. quickly eve| +1487|678781|O|330157.75|1996-06-30|5-LOW|Clerk#000004974|0|ts. carefully special theodolites| +1512|4082|F|301767.34|1992-11-02|4-NOT SPECIFIED|Clerk#000003501|0|e bold, final packages. daring, express theod| +1513|344437|F|220309.68|1992-10-09|1-URGENT|Clerk#000001207|0|ing attainments haggle carefully unusual, | +1514|443008|O|259979.82|1998-07-09|5-LOW|Clerk#000000132|0|eans wake. regular, unusual accounts affix fluffily. fluffily | +1515|381131|O|118722.96|1998-05-22|1-URGENT|Clerk#000001541|0|uriously unusual foxes. quickly express platelets cajole against t| +1516|652772|F|22058.20|1994-05-21|5-LOW|Clerk#000004804|0|e fluffily against the ironic dolphins. carefully regular accounts promis| +1517|136166|F|157120.25|1993-02-06|1-URGENT|Clerk#000000837|0|eposits. unusual ideas use. fluffily final packages boost slyly at the| +1518|278911|F|20789.58|1992-07-16|5-LOW|Clerk#000000166|0|escapades along the requests| +1519|129584|O|231932.57|1997-04-11|2-HIGH|Clerk#000003126|0|riously above the fluffily ex| +1544|658637|F|138982.69|1994-02-16|5-LOW|Clerk#000000789|0|thely always ironic deposits. final frays are. unusu| +1545|458903|F|116156.59|1992-11-16|5-LOW|Clerk#000004008|0|lly pending pinto beans. blithely ironic dependencies hagg| +1546|525221|F|236038.03|1994-02-04|2-HIGH|Clerk#000000928|0|l accounts. ironic requests integrate slyly alongside of th| +1547|637970|F|15287.96|1992-06-09|4-NOT SPECIFIED|Clerk#000000682|0|ly special pinto beans according to the furiously silent theodolites| +1548|346357|O|117726.53|1997-04-22|5-LOW|Clerk#000003172|0| blithely alongside of the in| +1549|458515|O|251302.33|1995-10-10|3-MEDIUM|Clerk#000001226|0|counts. ironic accounts wake blithely. even account| +1550|748024|F|109440.10|1995-01-17|1-URGENT|Clerk#000004808|0|equests sleep blithely blithely even requests. quickly regular grou| +1551|524005|O|262375.80|1996-11-30|3-MEDIUM|Clerk#000002174|0|nts might haggle about the blithely final ideas. final, express requests | +1576|440942|O|36461.16|1996-03-13|5-LOW|Clerk#000003666|0|s affix ironic instructions. even, express requests nag| +1577|154504|F|42978.73|1994-07-07|5-LOW|Clerk#000001729|0|ly-- final dependencies haggle | +1578|222446|F|136630.13|1994-12-24|1-URGENT|Clerk#000001413|0| quickly special accounts might caj| +1579|648388|O|229864.23|1995-07-18|2-HIGH|Clerk#000001406|0|ncies. final excuses integrate slyly blithely regular excus| +1580|695737|O|153283.22|1998-01-05|2-HIGH|Clerk#000004319|0|ts serve furiously even, unusual ideas. gifts haggle blithely| +1581|721486|F|182161.81|1992-11-15|4-NOT SPECIFIED|Clerk#000004142|0|fully even dependencies. furiously ironic foxes use quickly above the slyl| +1582|10507|F|178012.80|1993-10-16|5-LOW|Clerk#000003033|0|ithely pending excuses grow carefully express packages.| +1583|322154|F|27615.72|1992-01-12|4-NOT SPECIFIED|Clerk#000000112|0|cording to the requests? furiously regular| +1608|175483|O|341151.92|1996-06-22|1-URGENT|Clerk#000002222|0|o beans. final accounts haggle| +1609|327619|F|271922.24|1993-09-07|4-NOT SPECIFIED|Clerk#000002628|0|. furiously regular requests across the ironic, unusual reque| +1610|538625|O|76054.45|1996-04-12|3-MEDIUM|Clerk#000003195|0|the requests. accou| +1611|156046|P|47392.86|1995-02-27|1-URGENT|Clerk#000002170|0|as. final deposits are. unusual ideas are permanently across the b| +1612|631759|F|265580.56|1992-04-03|2-HIGH|Clerk#000002042|0|its sleep slyly silent dependencies. pending pinto beans boost about the flu| +1613|219103|F|189684.53|1994-03-25|5-LOW|Clerk#000000966|0|ly final pinto beans. furiously final requests cajole furiously pendin| +1614|698942|F|272464.32|1993-11-11|5-LOW|Clerk#000000236|0|ily express dolphins doze slyly ironic depths. i| +1615|612971|F|140213.65|1994-01-02|4-NOT SPECIFIED|Clerk#000003302|0|refully pending foxes. blithely ironic theodolites nag furiously ir| +1640|191468|F|178650.50|1994-11-29|5-LOW|Clerk#000003398|0| after the carefully regular p| +1641|492880|O|310855.00|1997-05-06|5-LOW|Clerk#000003007|0|s about the special accounts engage quickly alongside of | +1642|83131|F|86197.84|1993-05-21|1-URGENT|Clerk#000001707|0| the quickly regular requests. quickly enticing requests solve slyly caref| +1643|655783|F|79503.35|1994-09-23|5-LOW|Clerk#000002971|0| even, ironic foxes. ironic, ruthless requests cajole about the bold, ir| +1644|479593|F|75917.42|1992-04-10|5-LOW|Clerk#000001779|0|ending deposits detec| +1645|258451|F|21377.64|1994-06-21|5-LOW|Clerk#000004423|0|ecial excuses cajole thinly after the furiously final accoun| +1646|511822|F|63301.63|1993-04-09|1-URGENT|Clerk#000001902|0|inal patterns. final, unusual pinto beans cajole furiously. special, spe| +1647|410080|O|224180.79|1997-12-12|5-LOW|Clerk#000000762|0|haggle stealthily a| +1672|441727|P|171295.03|1995-05-06|2-HIGH|Clerk#000000440|0|ding to the deposits. ironic | +1673|603454|F|124494.91|1992-04-01|3-MEDIUM|Clerk#000004154|0| nag accounts. slyly regular dependencies promise above t| +1674|736207|F|54244.94|1993-10-02|5-LOW|Clerk#000001297|0|slyly pending foxes. slowly regular packages cajole. express, expr| +1675|678419|F|50759.53|1994-06-04|5-LOW|Clerk#000002676|0|ake fluffily against the special asymptotes. ironi| +1676|686359|O|132736.73|1997-11-06|2-HIGH|Clerk#000002268|0| the furiously silent accounts sleep quickly package| +1677|616708|F|263705.76|1993-04-17|1-URGENT|Clerk#000001053|0|ackages nag regular, final pinto beans; furiously ironic packa| +1678|742652|F|24794.04|1992-07-16|1-URGENT|Clerk#000000717|0|y pending instructions dazzle slyl| +1679|238390|O|51281.40|1998-07-07|3-MEDIUM|Clerk#000004369|0|y carefully regular dependencies. slyly final instructions | +1704|92554|O|144345.14|1996-08-12|3-MEDIUM|Clerk#000004442|0|ickly ironic pinto beans. bold, regular packages above the| +1705|25939|F|66981.10|1993-12-24|2-HIGH|Clerk#000002342|0|he carefully daring platelets. bold courts hagg| +1706|202555|F|122145.07|1994-11-11|4-NOT SPECIFIED|Clerk#000001717|0|foxes. fluffily regular instructions mold daringly against the slyly unus| +1707|75797|O|131362.93|1997-06-13|2-HIGH|Clerk#000002940|0|he special requests boost furiously along the furiously final deposits. furio| +1708|419740|O|210352.90|1997-07-18|3-MEDIUM|Clerk#000004525|0|s. furiously final requests nag blithely among the carefull| +1709|50551|F|59286.16|1994-04-02|4-NOT SPECIFIED|Clerk#000004928|0|ainst the blithely final instructions. pending, even asymptotes | +1710|586685|F|104821.25|1994-01-03|4-NOT SPECIFIED|Clerk#000003415|0| cajole quickly according to the blithely even in| +1711|150182|O|216010.34|1997-02-17|2-HIGH|Clerk#000004940|0|s. unusual, ruthless pinto beans sleep quickly along t| +1736|353497|O|37745.80|1995-05-23|4-NOT SPECIFIED|Clerk#000000722|0|d, final epitaphs. car| +1737|469157|O|308923.04|1997-09-14|3-MEDIUM|Clerk#000004513|0|refully unusual packages sleep above the special deposi| +1738|356701|F|121987.25|1992-03-20|2-HIGH|Clerk#000001234|0|s wake furiously express accounts. finall| +1739|319289|F|133712.65|1994-03-17|5-LOW|Clerk#000004388|0|ackages. furiously pending platelets affix b| +1740|24875|F|321513.51|1994-02-27|2-HIGH|Clerk#000002349|0|ainst the ironic theodolites s| +1741|310394|O|97511.61|1997-05-14|3-MEDIUM|Clerk#000003025|0|slyly. bold deposits above the accounts are carefully slyly regula| +1742|539887|F|106550.91|1994-08-01|4-NOT SPECIFIED|Clerk#000004076|0|haggle furiously. blithe, enticing dolphins cajole. ironic theodoli| +1743|379667|O|145405.72|1996-08-08|2-HIGH|Clerk#000003696|0|, bold ideas. asymptotes nod along the furiously express foxes. blithe| +1768|55255|O|94116.76|1996-01-02|3-MEDIUM|Clerk#000002038|0|uickly even accounts w| +1769|160082|O|113269.32|1996-09-07|4-NOT SPECIFIED|Clerk#000003332|0|es. ironic pearls wake fluffily unusual, unus| +1770|233869|F|104984.63|1994-10-21|2-HIGH|Clerk#000003603|0| nag furiously regular requests. regular, regula| +1771|618674|F|197329.56|1994-11-13|4-NOT SPECIFIED|Clerk#000002257|0|he carefully silent requests nag against the final, ironic accounts. asympto| +1772|43066|F|74625.70|1992-03-16|2-HIGH|Clerk#000000856|0|hang against the instructions. busy, ironic foxe| +1773|30055|O|93771.91|1995-09-16|5-LOW|Clerk#000004501|0|e slyly instead of the quickly regular requests. sometimes pending accounts ar| +1774|371548|O|267735.32|1998-06-02|5-LOW|Clerk#000004035|0| will cajole fluffily ironic accounts.| +1775|102446|F|95542.10|1993-03-11|5-LOW|Clerk#000003420|0|ounts at the ironic forges| +1800|554389|F|100858.47|1993-07-19|3-MEDIUM|Clerk#000001597|0|counts breach slyly regular pinto beans. blithely eve| +1801|335458|O|238775.43|1997-08-21|5-LOW|Clerk#000000211|0|lar Tiresias. blithely unusual accounts above | +1802|264050|F|140035.63|1994-10-13|1-URGENT|Clerk#000004518|0|es boost blithely even, pending packages. ironic, regular pla| +1803|129838|O|103661.89|1996-06-25|3-MEDIUM|Clerk#000001268|0|as. quickly final instructions detect quickly about the quickly daring pinto b| +1804|419491|F|15975.90|1995-01-06|4-NOT SPECIFIED|Clerk#000004975|0|hely slyly final asymptotes.| +1805|373253|F|279467.46|1992-06-23|1-URGENT|Clerk#000004081|0|al, pending packages play about the careful, | +1806|252646|F|41306.83|1992-03-28|4-NOT SPECIFIED|Clerk#000001398|0|he pains. pending theodolites sleep quickly along| +1807|454079|F|65100.27|1993-11-09|5-LOW|Clerk#000002107|0|pending deposits haggle blithely. quickly per| +1832|450859|O|100465.37|1996-07-20|1-URGENT|Clerk#000004996|0|quickly unusual foxes. fluffily ironic accounts integrate carefully against th| +1833|320873|O|49839.97|1996-11-11|4-NOT SPECIFIED|Clerk#000002893|0|ironic pinto beans cajole stealthily: furiou| +1834|407356|O|202078.10|1995-08-24|3-MEDIUM|Clerk#000004965|0|eans. furiously pending dependencies sleep blithely. regu| +1835|420040|P|155734.99|1995-03-12|4-NOT SPECIFIED|Clerk#000001337|0|y regular packages; carefully | +1836|608273|F|75416.57|1995-02-27|1-URGENT|Clerk#000001842|0|al packages. unusual pinto beans dazzle blithely. express deposits nag caref| +1837|731317|P|278563.11|1995-05-25|4-NOT SPECIFIED|Clerk#000004653|0|leep quickly. unusual, e| +1838|228104|O|44440.00|1998-02-10|5-LOW|Clerk#000000712|0|otes. regular dinos sleep fluffily. packages along the regu| +1839|488065|F|62892.59|1994-04-28|1-URGENT|Clerk#000003816|0|ructions thrash furiously regular accounts. slyly express| +1864|134621|O|144320.99|1998-06-18|5-LOW|Clerk#000002003|0|osits after the express| +1865|564973|F|136479.20|1992-12-29|4-NOT SPECIFIED|Clerk#000003098|0|l dependencies. carefully bold ideas wake carefully qu| +1866|490877|F|227986.95|1992-08-25|1-URGENT|Clerk#000000319|0| furiously express courts. sly| +1867|158086|F|218235.47|1993-04-24|1-URGENT|Clerk#000004850|0|counts. quickly even ideas across the ironic packages cajo| +1868|418823|F|280161.19|1992-04-23|2-HIGH|Clerk#000000317|0| final, bold requests. blithely regular req| +1869|395326|O|334589.72|1996-05-01|4-NOT SPECIFIED|Clerk#000004529|0|eep carefully! attainments could have to wake among the blithe,| +1870|741602|O|209564.83|1996-08-22|1-URGENT|Clerk#000004495|0|eodolites wake furio| +1871|590812|F|7626.26|1995-03-11|3-MEDIUM|Clerk#000002037|0|requests haggle blithely ironic asy| +1896|494060|F|277739.79|1992-01-27|2-HIGH|Clerk#000001411|0|o the requests. unusual dependencie| +1897|407791|O|43108.27|1996-08-30|4-NOT SPECIFIED|Clerk#000004563|0|taphs nag furiously ironi| +1898|232532|F|25027.86|1995-02-18|1-URGENT|Clerk#000002328|0|oxes boost carefully even platelets: furiously special accounts c| +1899|658132|F|100443.38|1994-04-19|1-URGENT|Clerk#000001564|0|oxes detect quickly alongside of the carefully unusual ideas. blithely pending| +1900|196958|O|71561.91|1998-07-28|5-LOW|Clerk#000004397|0|ic ideas. slyly bold ideas detect. furiously even foxes| +1901|507028|F|105984.02|1992-09-21|3-MEDIUM|Clerk#000000369|0|tions. fluffily final foxes nag. careful, final ideas boost slyly pend| +1902|111860|O|263758.33|1998-03-22|1-URGENT|Clerk#000003195|0|lthily. furiously bold dependencies caj| +1903|515515|F|285781.25|1993-04-12|1-URGENT|Clerk#000004473|0|kly regular instructions. pending patterns along the blithely s| +1928|243448|O|54965.33|1997-10-30|2-HIGH|Clerk#000004778|0|ly regular accounts are furiously fluffily regular accounts. accoun| +1929|370153|O|53972.35|1997-12-30|3-MEDIUM|Clerk#000003150|0|he fluffily final attainments cajole special, regular| +1930|631738|O|59471.67|1997-08-03|4-NOT SPECIFIED|Clerk#000001694|0|ns against the quickl| +1931|612889|F|69341.57|1994-12-05|1-URGENT|Clerk#000004376|0|ackages. even accounts along the decoys u| +1932|322285|O|36791.83|1995-08-28|3-MEDIUM|Clerk#000001158|0| accounts. blithely even deposits are slyly slyly ironic packages. furiousl| +1933|114535|F|113327.65|1995-01-04|3-MEDIUM|Clerk#000001668|0|ong the regular, ironic packages. even courts af| +1934|460039|F|31094.89|1994-05-04|1-URGENT|Clerk#000003319|0| excuses cajole furiously pendi| +1935|108454|O|62421.85|1996-10-21|1-URGENT|Clerk#000000826|0| the ironic dependencies | +1960|265244|F|233400.91|1994-12-30|5-LOW|Clerk#000001280|0|inst the furiously regular theodolites integra| +1961|693598|F|249746.41|1992-05-14|1-URGENT|Clerk#000001525|0| tithes. carefully special ac| +1962|41437|F|9550.65|1994-04-16|2-HIGH|Clerk#000003617|0|ickly. carefully unusual requests ought to nag by | +1963|422188|O|90636.69|1996-12-13|5-LOW|Clerk#000004259|0|tructions sleep blithely. final requests affix doggedly| +1964|682009|F|84964.77|1994-01-01|2-HIGH|Clerk#000002064|0|egular requests integrate. | +1965|254773|O|197902.04|1996-06-15|1-URGENT|Clerk#000001542|0|he final, special foxes. regular foxes thrash boldly. regular foxes cajole a| +1966|215261|F|109317.83|1992-07-15|4-NOT SPECIFIED|Clerk#000004259|0|ly final requests. regular, special deposits are. quickly express acco| +1967|631208|F|243140.61|1993-04-05|5-LOW|Clerk#000002954|0|realms along the unu| +1992|703883|F|154835.80|1994-11-26|2-HIGH|Clerk#000004512|0|ly carefully express accounts. fluffily final dependencies cajole | +1993|398831|O|269687.89|1998-04-26|3-MEDIUM|Clerk#000002937|0|ven pinto beans. slyly | +1994|396910|F|146301.50|1992-07-04|3-MEDIUM|Clerk#000002216|0|ts. silent notornis boost| +1995|338066|O|111760.97|1997-01-15|2-HIGH|Clerk#000000790|0|kages: carefully even courts sublate according to the fluf| +1996|613555|O|93036.97|1997-01-07|4-NOT SPECIFIED|Clerk#000000999|0|ng ideas. pending courts about the dependencies use b| +1997|266753|F|218026.97|1994-03-17|3-MEDIUM|Clerk#000003935|0| furiously ironic deposits run unusual, pending accounts.| +1998|551533|O|70120.18|1996-08-01|4-NOT SPECIFIED|Clerk#000002953|0|t haggle carefully toward the| +1999|360556|O|290018.93|1998-01-14|4-NOT SPECIFIED|Clerk#000003060|0|quests. blithely express req| +2024|585938|F|283681.33|1992-05-12|2-HIGH|Clerk#000002503|0|egular pinto beans serve slowly furious| +2025|348386|F|130473.05|1992-07-20|1-URGENT|Clerk#000004287|0|wake fluffily. special packages shall have to wake around the slyly bold inst| +2026|67900|F|322457.95|1994-11-21|1-URGENT|Clerk#000001210|0| are around the even deposits. regul| +2027|437612|F|166867.47|1992-12-19|1-URGENT|Clerk#000003641|0|fully blithe theodolites a| +2028|436837|F|137005.35|1994-11-25|5-LOW|Clerk#000003949|0|onic requests. fluffily silent accounts are quietly. quickly idle | +2029|164162|O|107805.21|1995-08-24|2-HIGH|Clerk#000002506|0| the platelets. enticing, express packages use slyly among the regul| +2030|558889|O|189105.06|1998-03-09|3-MEDIUM|Clerk#000001601|0|final theodolites cajole flu| +2031|216430|O|35876.54|1996-12-25|3-MEDIUM|Clerk#000004398|0| packages. blithely final ideas among the quickly ironi| +2056|17390|F|63376.10|1993-06-01|2-HIGH|Clerk#000001315|0|ts. slyly final excuses | +2057|521849|F|233372.75|1992-07-11|5-LOW|Clerk#000002888|0|t the express deposits. carefully bold decoys run quickly final request| +2058|212197|F|301808.20|1993-10-10|2-HIGH|Clerk#000001203|0|arefully. carefully regular dep| +2059|143614|O|39089.81|1998-05-13|3-MEDIUM|Clerk#000004609|0|ssly unusual pinto beans. blithely even foxes wake carefully. fin| +2060|216278|F|190408.87|1993-03-26|1-URGENT|Clerk#000001767|0|l theodolites. carefully ironic deposits boost betw| +2061|480731|O|3642.22|1995-06-05|5-LOW|Clerk#000001804|0|y. regular theodoli| +2062|638570|F|233645.98|1992-05-21|1-URGENT|Clerk#000004724|0| alongside of the blit| +2063|681985|F|78241.05|1993-05-21|4-NOT SPECIFIED|Clerk#000003892|0|pinto beans shall sublate slyly. furiously express instructions use | +2088|588806|F|116325.34|1992-07-13|3-MEDIUM|Clerk#000003940|0|ress accounts. express packages among the special dolphins are| +2089|547591|O|126222.82|1997-02-13|2-HIGH|Clerk#000004340|0|ct furiously about the even requests. unusual theodolites| +2090|86137|O|45324.40|1997-11-05|5-LOW|Clerk#000001381|0|ly regular packages. bold, regular escapa| +2091|178696|F|273453.90|1993-12-02|3-MEDIUM|Clerk#000003376|0| the slyly regular ac| +2092|336547|O|162183.74|1996-10-27|3-MEDIUM|Clerk#000004405|0|riously even foxes do wake fu| +2093|575635|O|50733.00|1997-05-09|4-NOT SPECIFIED|Clerk#000002045|0|lyly even packages. carefully enticing tithes wake f| +2094|440236|O|18520.04|1998-03-10|1-URGENT|Clerk#000003865|0|en theodolites cajole blithely furiously exp| +2095|293287|O|201532.10|1995-12-05|2-HIGH|Clerk#000001777|0| slyly blithely pending accounts. carefully final deposits affix after | +2120|252431|O|267421.42|1996-07-07|3-MEDIUM|Clerk#000004787|0|he carefully silent instructions. carefully re| +2121|591460|F|157534.43|1994-04-01|2-HIGH|Clerk#000003813|0|uriously silent instructions. regular, even deposits along the sl| +2122|166888|F|148703.18|1994-06-04|3-MEDIUM|Clerk#000002420|0|s haggle bravely express theodolit| +2123|615472|O|64138.67|1997-08-26|2-HIGH|Clerk#000001226|0|lly final accounts. ironic packages above the final, final ideas detect un| +2124|205723|F|216722.51|1992-06-11|4-NOT SPECIFIED|Clerk#000003473|0|ly silent instructions. deposits cajole quickly blithely express co| +2125|77512|F|241903.80|1993-07-05|2-HIGH|Clerk#000001977|0|ully blithely regular ideas. quickl| +2126|728440|F|237876.87|1994-01-02|5-LOW|Clerk#000002416|0|al deposits wake thinl| +2127|636412|F|148809.75|1994-07-22|2-HIGH|Clerk#000004879|0|s hinder fluffily. special, silen| +2152|409973|O|162840.73|1997-11-11|1-URGENT|Clerk#000003974|0|ounts haggle blithely| +2153|154141|O|97478.75|1995-12-20|2-HIGH|Clerk#000001087|0| the busily final packages| +2154|116299|F|37594.20|1994-05-28|5-LOW|Clerk#000000548|0|ackages. slyly final dependencies promise fluffily regular ideas. | +2155|135887|O|265836.25|1997-11-27|5-LOW|Clerk#000004884|0|special accounts cajole. even, un| +2156|101050|F|69146.68|1993-01-07|3-MEDIUM|Clerk#000000937|0|gular, regular theodolites nag permanently special attainments. blithely f| +2157|335923|F|322993.41|1994-11-26|4-NOT SPECIFIED|Clerk#000001469|0|cording to the final packages | +2158|579535|F|108727.09|1994-04-13|3-MEDIUM|Clerk#000003163|0|y regular theodolites according to the regul| +2159|731803|F|190870.31|1992-10-15|5-LOW|Clerk#000002912|0|of the even platelets play furiously after the carefully express e| +2184|133585|O|71224.41|1997-04-21|4-NOT SPECIFIED|Clerk#000003421|0|se slyly quickly even foxes. blithely quiet accounts use stealthi| +2185|387505|O|185637.25|1996-10-11|1-URGENT|Clerk#000002462|0|usily final ideas breach blithely silent in| +2186|544022|O|249078.71|1997-04-03|2-HIGH|Clerk#000003393|0|ckly special pinto beans. tithes haggle furiously about the| +2187|122920|F|78191.51|1994-07-22|2-HIGH|Clerk#000002216|0|slyly special excuses serve furiously among the blithely ironic foxes. eve| +2188|389773|F|147256.18|1993-02-05|3-MEDIUM|Clerk#000002849|0|ng the carefully ironic requests nag furio| +2189|406637|O|101111.56|1997-05-11|3-MEDIUM|Clerk#000003401|0|its haggle slyly express, | +2190|331717|F|38113.18|1993-04-20|1-URGENT|Clerk#000003865|0|arefully even dependen| +2191|391837|O|160284.51|1997-01-06|4-NOT SPECIFIED|Clerk#000000561|0|olites promise carefully after the carefully fi| +2216|580249|O|80345.09|1996-01-10|5-LOW|Clerk#000002476|0|ly regular accounts sleep slyly carefully special request| +2217|725065|F|113314.36|1994-12-16|4-NOT SPECIFIED|Clerk#000002066|0|thely special packages solve| +2218|159161|O|115068.46|1995-10-22|4-NOT SPECIFIED|Clerk#000002486|0|ly special pinto beans. blithel| +2219|517429|F|61025.58|1993-03-25|3-MEDIUM|Clerk#000002486|0|s are across the blithely pending ideas. enticing, regular request| +2220|167896|F|102244.54|1994-12-19|2-HIGH|Clerk#000001087|0|tect slyly among the slyly regular instructions. | +2221|327764|O|191203.32|1998-04-14|1-URGENT|Clerk#000004143|0|ecial deposits. carefully unusu| +2222|723949|F|56146.46|1993-02-09|2-HIGH|Clerk#000003058|0|lyly enticing dugouts. carefully unusual accounts are! blithely ironic p| +2223|138043|F|181512.10|1992-08-07|4-NOT SPECIFIED|Clerk#000002674|0|according to the bold excuses. slyly express request| +2248|334261|F|65500.07|1993-01-08|4-NOT SPECIFIED|Clerk#000000876|0| the carefully bold deposits. b| +2249|422003|O|86450.42|1997-04-23|2-HIGH|Clerk#000003737|0|gular excuses. slyly special foxes above the carefully regular reque| +2250|597440|F|242118.12|1992-11-18|2-HIGH|Clerk#000000065|0| pending ideas. blithely bold platelets will have to hag| +2251|174022|F|50122.84|1992-02-13|5-LOW|Clerk#000002206|0|onic instructions. slyly pending requests are | +2252|517651|F|219960.25|1993-12-13|5-LOW|Clerk#000003766|0|ck ideas cajole sly, thin instruction| +2253|147964|O|153593.58|1997-07-23|4-NOT SPECIFIED|Clerk#000002239|0|l ideas sublate. carefully even courts wa| +2254|566438|O|119465.79|1997-04-26|5-LOW|Clerk#000000269|0|aggle carefully slyly regular platelets. deposits about the quickl| +2255|359521|O|230170.56|1995-06-22|2-HIGH|Clerk#000001071|0| asymptotes poach furiously against the pending ideas. blithely | +2280|437543|O|156869.32|1996-08-18|2-HIGH|Clerk#000004522|0|unts about the pains det| +2281|31531|F|117041.67|1994-12-16|3-MEDIUM|Clerk#000003753|0|arefully special packages wake carefu| +2282|417605|O|147231.89|1997-10-30|1-URGENT|Clerk#000002288|0|regular deposits sleep. requests sleep above the carefully special deposits. f| +2283|179140|F|210188.98|1992-11-25|3-MEDIUM|Clerk#000004855|0|sts. blithely ironic packages haggle. quickly silent pinto bea| +2284|295243|F|112016.69|1993-09-11|4-NOT SPECIFIED|Clerk#000002960|0|r requests use even packages. packages are slyl| +2285|132914|O|241763.41|1997-09-01|1-URGENT|Clerk#000003152|0|! quickly silent pinto beans poach blithely special, regular ins| +2286|368902|O|155427.43|1996-02-21|3-MEDIUM|Clerk#000001201|0| silent multipliers nag carefully against the carefully regular theodolite| +2287|615325|F|209009.28|1994-07-27|5-LOW|Clerk#000004817|0|onic dependencies. furiously ironic dolphins use. silent, | +2312|988|F|283037.00|1992-08-11|1-URGENT|Clerk#000000641|0|ctions. pending courts among the slyly ir| +2313|98914|F|200413.88|1995-03-16|4-NOT SPECIFIED|Clerk#000003550|0|courts. quickly even platelets against the slyly bold accounts promise ac| +2314|435838|F|44175.65|1993-06-29|3-MEDIUM|Clerk#000000046|0|st instead of the idle multipliers. express, unusual| +2315|616522|F|153696.31|1993-02-24|5-LOW|Clerk#000000797|0|ts. blithely express acco| +2316|615535|F|230155.19|1992-02-09|1-URGENT|Clerk#000000517|0|s haggle quickly of the carefully brave d| +2317|519568|O|78160.22|1997-06-17|2-HIGH|Clerk#000002340|0|sly after the blithely express hockey | +2318|107707|F|193782.89|1994-06-07|4-NOT SPECIFIED|Clerk#000000375|0|usly even theodolites was carefully ca| +2319|476590|F|4066.48|1992-12-15|4-NOT SPECIFIED|Clerk#000002506|0|uctions. regular requests are fur| +2344|42832|F|114095.75|1993-03-18|4-NOT SPECIFIED|Clerk#000004559|0|usual, ironic packages sleep packages. somas detect b| +2345|610130|O|182175.59|1998-01-09|1-URGENT|Clerk#000002505|0|ress accounts. furiously regular requests nag according to| +2346|440557|F|217105.34|1994-09-20|5-LOW|Clerk#000001442|0|tegrate slyly blithely express requests. f| +2347|426265|F|8835.93|1992-04-16|4-NOT SPECIFIED|Clerk#000000655|0| enticingly ironic foxes. slyly s| +2348|226000|F|69866.00|1995-01-06|2-HIGH|Clerk#000002558|0|ages affix furiously among the slyly special id| +2349|370967|F|73079.47|1994-07-08|2-HIGH|Clerk#000000347|0|ounts are daringly against the slyly express reque| +2350|92287|F|401335.58|1994-09-24|2-HIGH|Clerk#000003297|0|furiously final warthogs boost quickly fluffily unusual requests. ironic ac| +2351|54554|O|219263.42|1996-03-04|2-HIGH|Clerk#000002788|0|ending escapades cajole fluffily. furiously pending dolphins sl| +2376|388819|F|104595.39|1992-10-11|2-HIGH|Clerk#000003084|0|ts cajole blithely | +2377|126305|F|60194.84|1992-07-10|1-URGENT|Clerk#000001862|0|ckages. blithely special platelets d| +2378|300418|F|213554.08|1993-10-28|4-NOT SPECIFIED|Clerk#000002083|0|are slyly. even asymptotes sleep acc| +2379|124171|O|55767.78|1995-09-19|1-URGENT|Clerk#000003803|0|the ironic, even waters. furiously final excuses boost furi| +2380|417475|F|148710.42|1993-08-02|4-NOT SPECIFIED|Clerk#000000832|0|ys. slyly unusual escapades are car| +2381|228913|O|44724.18|1995-08-30|4-NOT SPECIFIED|Clerk#000003859|0| orbits for the fluffily even requests are furiously along the slyly even requ| +2382|576862|O|12038.88|1998-06-09|3-MEDIUM|Clerk#000001799|0|among the blithely final depths. quickly special foxes acr| +2383|58685|O|239606.16|1996-11-07|4-NOT SPECIFIED|Clerk#000003561|0|ual deposits. pinto beans past the| +2408|57314|O|58551.65|1997-04-15|4-NOT SPECIFIED|Clerk#000002702|0|regular tithes against the ironic, regular p| +2409|261871|P|160450.43|1995-05-05|3-MEDIUM|Clerk#000003397|0|egular requests thrash carefully| +2410|254936|F|132990.32|1993-07-26|5-LOW|Clerk#000000478|0|integrate slyly around the | +2411|695957|F|135253.92|1994-09-17|2-HIGH|Clerk#000000342|0|inal pinto beans after the quic| +2412|697985|O|72001.47|1995-07-19|2-HIGH|Clerk#000004505|0|nding dependencies integrate slyl| +2413|267949|F|77108.50|1994-08-09|3-MEDIUM|Clerk#000004093|0|ress slyly. ironic, spec| +2414|401698|F|293778.42|1992-01-12|5-LOW|Clerk#000000357|0|es wake blithely special foxes. regular accounts use| +2415|580522|O|319814.26|1996-05-22|3-MEDIUM|Clerk#000000400|0|e over the bold, ironic asymptotes| +2440|83029|O|43382.76|1998-01-23|4-NOT SPECIFIED|Clerk#000000936|0| ironic packages believe carefully. carefull| +2441|438838|O|81479.00|1997-01-06|3-MEDIUM|Clerk#000004430|0|refully regular asymptotes | +2442|35399|O|36545.99|1997-03-23|1-URGENT|Clerk#000001254|0|y furiously bold theodolites. final depos| +2443|190670|F|193899.27|1992-08-29|2-HIGH|Clerk#000000169|0|osits. carefully regular dependencies above th| +2444|575204|F|191951.96|1992-01-16|2-HIGH|Clerk#000000475|0|quests. ironic accounts cajole blithely. qu| +2445|699919|O|162239.27|1997-06-21|4-NOT SPECIFIED|Clerk#000001269|0|r packages sleep slyly. carefully regular accounts lose boldly slow| +2446|534910|F|33153.28|1994-09-10|5-LOW|Clerk#000002335|0|ach daringly furiously final instructions. ironic requests detect blithely | +2447|729071|O|359684.59|1995-06-05|5-LOW|Clerk#000001623|0|s. quickly regular foxes are carefully about t| +2472|734053|F|49854.11|1993-05-22|5-LOW|Clerk#000001801|0| asymptotes thrash. final deposits sleep slyly. requests | +2473|472555|O|165518.58|1998-02-10|1-URGENT|Clerk#000004895|0|ate carefully bold accounts: busily silent deposits| +2474|476194|F|197158.59|1993-04-21|3-MEDIUM|Clerk#000002018|0|its. even instructions might affix carefully above the bo| +2475|122699|F|300030.84|1993-07-15|5-LOW|Clerk#000004435|0|l deposits boost carefully furiously bold courts. furiously fina| +2476|438656|O|174177.69|1996-11-13|4-NOT SPECIFIED|Clerk#000004317|0| blithely about the quietly unusual theod| +2477|726241|F|247819.17|1994-04-01|1-URGENT|Clerk#000002284|0|ecial, even platelets haggle d| +2478|430231|O|52134.41|1997-02-20|1-URGENT|Clerk#000001105|0|o beans poach fluffily ironic foxes. furiously final accounts among the | +2479|139174|O|151288.76|1998-02-07|4-NOT SPECIFIED|Clerk#000000196|0|le above the furiously even theodolites. slyly pending packages detect unus| +2504|588991|F|95280.31|1992-11-18|2-HIGH|Clerk#000003890|0| special theodolites sleep qui| +2505|659494|F|204111.31|1993-05-24|3-MEDIUM|Clerk#000003017|0|ular realms cajole along the even theodolites. carefull| +2506|595498|F|105529.85|1992-12-17|4-NOT SPECIFIED|Clerk#000002604|0|ounts nag carefully during the carefully final deposits. car| +2507|516796|F|61361.18|1993-08-30|3-MEDIUM|Clerk#000004062|0| instructions shall have to boost along the forges! slyly even | +2508|20039|F|272000.71|1994-11-14|3-MEDIUM|Clerk#000002805|0|xcuses. final, regular dependencies haggle furiously carefully ironic courts| +2509|35849|O|9316.50|1995-11-21|4-NOT SPECIFIED|Clerk#000004466|0|ndencies nag express ideas. sl| +2510|249247|F|21154.58|1992-08-19|2-HIGH|Clerk#000003906|0|final requests. slyly express packages are final packages. realms | +2511|317735|F|51096.55|1993-04-06|1-URGENT|Clerk#000002901|0|atelets. furiously | +2536|163706|O|274447.48|1998-05-02|4-NOT SPECIFIED|Clerk#000000755|0|he carefully express theodolites. blithely pending packages affix b| +2537|399932|O|105738.16|1997-11-16|5-LOW|Clerk#000002302|0|ong the deposits. slyl| +2538|153112|O|302347.09|1996-12-22|4-NOT SPECIFIED|Clerk#000000053|0|quests integrate. eve| +2539|98642|O|47390.78|1995-08-19|2-HIGH|Clerk#000003297|0|cuses nag slyly special instructions. daringly even gifts against th| +2540|374899|F|296492.96|1994-11-04|1-URGENT|Clerk#000002093|0|at the ironic, silent accounts. requests sleep blithel| +2541|148762|O|147221.27|1998-06-15|3-MEDIUM|Clerk#000001760|0|h furiously. blithely silent deposits haggle around th| +2542|463241|F|119416.05|1993-12-30|5-LOW|Clerk#000000126|0|g accounts. furiously ironic instruction| +2543|681449|O|207483.43|1998-05-15|2-HIGH|Clerk#000002175|0|unts. stealthy asymptotes shall lose carefully ironic packages. | +2568|609022|F|87770.92|1994-10-08|1-URGENT|Clerk#000002749|0|he excuses wake furiously final requ| +2569|562150|F|289171.26|1994-08-13|3-MEDIUM|Clerk#000001522|0|ructions haggle furiously bold, pending packages. fluffy asymptotes nag blit| +2570|301780|F|134049.84|1994-12-09|1-URGENT|Clerk#000001220|0|uriously unusual accounts use careful| +2571|504256|F|191924.29|1994-07-07|2-HIGH|Clerk#000003125|0|counts play along the quickly special accounts. even packages wo| +2572|11137|O|192772.23|1997-07-27|4-NOT SPECIFIED|Clerk#000002342|0|iously final instruc| +2573|419743|P|409633.76|1995-04-07|1-URGENT|Clerk#000004877|0|after the furiously ironic requests nag quickly regular pi| +2574|100186|O|149667.60|1997-10-19|2-HIGH|Clerk#000002550|0|lyly pending, final foxes. special, silent pinto beans cajole pending accou| +2575|49337|F|80983.86|1994-10-30|2-HIGH|Clerk#000000648|0|ng to the regular, even packages. furiously final braids s| +2600|449137|O|176072.70|1996-02-02|1-URGENT|Clerk#000001140|0|ccounts are blithely. ironic, even courts haggle s| +2601|612634|O|95946.71|1996-06-10|5-LOW|Clerk#000001240|0|ross the furiously bold packages are slyly slyly unus| +2602|528976|F|383837.07|1992-08-16|4-NOT SPECIFIED|Clerk#000001200|0|ges use slyly. ironic depo| +2603|745861|F|311017.84|1994-02-03|3-MEDIUM|Clerk#000002245|0|ong the dogged, unusual packages. carefully express| +2604|176245|F|138772.08|1994-09-08|5-LOW|Clerk#000002831|0|nto beans against the re| +2605|384910|F|402121.54|1993-05-19|1-URGENT|Clerk#000000401|0|osits haggle? fluffily bold deposits wake. carefully regular packa| +2606|408200|F|123997.24|1995-02-04|4-NOT SPECIFIED|Clerk#000001043|0|s sleep slyly along the carefully express platel| +2607|362233|O|288800.53|1996-07-08|5-LOW|Clerk#000003495|0|ully final instructions. slyly regular deposits are quickly| +2632|299842|O|127097.36|1997-01-26|5-LOW|Clerk#000002504|0|y express packages caj| +2633|193888|O|34872.99|1997-09-09|4-NOT SPECIFIED|Clerk#000001674|0|luffily across the ironic asymptotes. idly final acco| +2634|642307|F|26630.55|1994-06-10|1-URGENT|Clerk#000003762|0|ons wake fluffily i| +2635|490193|F|103408.23|1992-02-02|4-NOT SPECIFIED|Clerk#000003233|0|quests sleep. ironic, regular courts maintain blithely idle pack| +2636|672364|P|373456.15|1995-05-06|4-NOT SPECIFIED|Clerk#000004182|0|gular packages haggle slyly around the carefully| +2637|151691|F|48296.28|1994-02-02|1-URGENT|Clerk#000004245|0|e carefully regular foxes. ironic, special patter| +2638|209449|F|47080.08|1992-11-05|3-MEDIUM|Clerk#000001103|0| fluffily ironic platelets nag since the slyly ironi| +2639|443446|O|144139.32|1997-04-06|1-URGENT|Clerk#000001683|0| somas boost against the fl| +2664|224503|O|56289.62|1996-02-02|3-MEDIUM|Clerk#000004041|0|the slyly ironic packag| +2665|717859|F|122738.75|1994-09-19|3-MEDIUM|Clerk#000001215|0|ate quickly regular packages. carefully regular foxes are fluff| +2666|531508|O|34767.81|1997-10-29|5-LOW|Clerk#000003360|0| the furiously regular accounts. quickly express requests acros| +2667|526592|O|109522.61|1997-07-28|4-NOT SPECIFIED|Clerk#000000759|0|odolites sleep fluffily across the blithely pending reques| +2668|419707|O|317054.52|1997-01-21|3-MEDIUM|Clerk#000000089|0|ructions after the pinto beans cajole furiously carefully d| +2669|247741|F|162000.29|1993-11-08|4-NOT SPECIFIED|Clerk#000002220|0|nto beans. slyly silent accounts wake. carefully pending pinto bean| +2670|513673|O|178397.36|1998-04-07|2-HIGH|Clerk#000002219|0| accounts print blithely fu| +2671|34954|P|184709.34|1995-05-10|1-URGENT|Clerk#000001122|0|ily against the blithely bold requests; blithely final courts use quick| +2696|195416|O|103329.35|1997-03-24|1-URGENT|Clerk#000003233|0|nic, ironic accounts boost according to the qui| +2697|104917|F|242904.10|1992-11-01|5-LOW|Clerk#000003957|0| nod quickly unusual pinto beans. even accounts cajole blithely fur| +2698|88795|O|197020.18|1995-05-24|4-NOT SPECIFIED|Clerk#000004490|0|osits. deposits breach furiously above the bli| +2699|608107|O|98914.42|1996-01-12|5-LOW|Clerk#000002095|0|olites sleep. carefully express packages| +2700|174748|F|243924.80|1992-05-23|1-URGENT|Clerk#000004110|0| even accounts are furiously. blithely regular requests wake furiou| +2701|718240|F|179436.79|1994-04-13|1-URGENT|Clerk#000002366|0| packages-- final packages cajole quickly around the furio| +2702|208202|O|172663.18|1995-10-30|3-MEDIUM|Clerk#000003882|0|quickly blithely final request| +2703|498050|F|81562.47|1992-06-06|2-HIGH|Clerk#000000964|0| slyly carefully even requests. final accounts nag furiously regular acco| +2728|719377|F|67192.77|1992-07-27|3-MEDIUM|Clerk#000002604|0|ccounts wake against the fluffily express instructions. bold, final | +2729|546083|F|267559.73|1993-05-29|4-NOT SPECIFIED|Clerk#000003690|0|ges. carefully even packages use | +2730|258770|F|79604.09|1992-05-31|1-URGENT|Clerk#000003753|0|hely ironic frets. slyly bold dependen| +2731|646180|F|74391.34|1994-10-13|4-NOT SPECIFIED|Clerk#000002129|0|e carefully. final, final grouches sleep blithely. regular| +2732|317185|O|164227.97|1998-04-29|2-HIGH|Clerk#000004019|0|ickly furiously ironic accounts. instructions haggle furiously. silent th| +2733|646672|F|111279.45|1994-03-05|5-LOW|Clerk#000000207|0|s sleep slyly unusual accounts. pending, ironi| +2734|365939|P|165457.18|1995-05-28|1-URGENT|Clerk#000004640|0| furiously along the enticingly unusual deposits. deposit| +2735|325517|O|190034.85|1996-10-12|4-NOT SPECIFIED|Clerk#000002355|0|packages about the requests in| +2760|453073|F|133785.88|1992-06-03|1-URGENT|Clerk#000003330|0|g according to the slyly special foxes. furiously final accounts integrate | +2761|26765|O|99734.69|1997-05-23|5-LOW|Clerk#000002599|0|uriously even excuses. care| +2762|588592|O|60987.41|1998-03-04|3-MEDIUM|Clerk#000002171|0|arefully final, regular accounts. quickly even requests cajole slyly aga| +2763|706402|F|174313.25|1993-05-12|5-LOW|Clerk#000001501|0|pending dependencies.| +2764|735514|O|64871.58|1995-08-30|3-MEDIUM|Clerk#000004399|0|sts. unusual, final packages around the carefully express pinto beans in| +2765|259567|F|17648.72|1992-03-28|3-MEDIUM|Clerk#000000957|0|bold accounts. silent requests sleep carefully s| +2766|533638|F|297969.13|1993-12-04|3-MEDIUM|Clerk#000000248|0|t the carefully silent ideas. carefully even ideas are along t| +2767|332995|O|133450.61|1997-10-27|1-URGENT|Clerk#000000214|0|cial packages. furiously brave dependencies cajole quickly| +2792|125396|F|76157.56|1993-11-04|2-HIGH|Clerk#000000725|0|egular deposits cajole. pending packages abou| +2793|18302|O|165913.32|1996-10-07|4-NOT SPECIFIED|Clerk#000000694|0|final instructions. quickl| +2794|85610|O|250612.08|1995-07-07|2-HIGH|Clerk#000001958|0|tructions wake quickly-- b| +2795|340919|F|125373.84|1994-04-01|5-LOW|Clerk#000003303|0|eposits along the unusual accounts integrate quickly a| +2796|571388|F|151733.57|1993-12-21|2-HIGH|Clerk#000000855|0|regular dependencies among the bold dolphins wake among the final, reg| +2797|310949|O|146725.82|1998-07-05|1-URGENT|Clerk#000004320|0|es. blithely final requests t| +2798|107777|F|274136.65|1994-04-17|3-MEDIUM|Clerk#000002121|0|und the furiously final platelets cajole boldly above the unusual foxes: sp| +2799|146209|O|133990.03|1998-06-04|2-HIGH|Clerk#000002298|0| unusual ideas among the regular, idle instructions wake quickly ironic gifts.| +2824|306235|O|135206.92|1998-07-24|5-LOW|Clerk#000000437|0|, final pinto beans are. blithely unus| +2825|364210|F|5965.40|1992-08-24|4-NOT SPECIFIED|Clerk#000000599|0| quickly ironic accounts. express courts sleep furiously accor| +2826|503509|F|111590.32|1992-01-22|5-LOW|Clerk#000003189|0| accounts. bold packages haggle along the unusual requests. furiously| +2827|225635|F|203643.54|1992-02-06|3-MEDIUM|Clerk#000002332|0| the slyly regular requests. slyly pending deposits | +2828|245821|F|216209.79|1993-04-24|2-HIGH|Clerk#000003298|0|posits boost quickly a| +2829|488921|F|104780.10|1993-09-15|3-MEDIUM|Clerk#000003464|0|ironically about the notornis| +2830|289048|O|15488.91|1996-03-10|2-HIGH|Clerk#000004066|0|iously regular packages. ironic, unusual requests haggle blithely quickly unus| +2831|265397|O|141374.55|1996-05-07|3-MEDIUM|Clerk#000001430|0|oss the bold deposits wake packages. express packa| +2856|269674|O|239377.54|1996-01-11|4-NOT SPECIFIED|Clerk#000001192|0|ing theodolites are fluffily. final ideas sleep among the quickly regul| +2857|131902|O|144316.44|1997-12-22|5-LOW|Clerk#000004285|0|lly final pinto beans. quickly| +2858|619705|F|271822.85|1992-02-15|3-MEDIUM|Clerk#000000755|0|e evenly silent asymptotes. regular | +2859|113545|O|236861.94|1996-12-13|3-MEDIUM|Clerk#000000932|0|eep blithely. regular deposits dazzle unusual, special theodolites. | +2860|322462|O|129081.37|1998-04-12|2-HIGH|Clerk#000000306|0|cajole against the final accoun| +2861|93058|O|88517.64|1996-12-09|1-URGENT|Clerk#000001712|0|e the bold platelets sleep according to the blithely silent theodolites| +2862|269530|O|36970.65|1996-02-04|4-NOT SPECIFIED|Clerk#000002144|0|re furiously unusual deposits! blithely pending ideas e| +2863|731750|F|136637.75|1993-08-01|5-LOW|Clerk#000001213|0|telets hang. deposits around the furiously ironic wate| +2888|18526|F|129802.24|1994-09-28|2-HIGH|Clerk#000000112|0|s, special accounts.| +2889|101360|O|211351.58|1996-04-26|2-HIGH|Clerk#000000762|0|blithely regular instructions are blithely express, express accounts. even | +2890|293254|O|91889.29|1998-04-19|2-HIGH|Clerk#000000022|0| detect carefully final requests. blithely sly pearls cajole thinly ab| +2891|450526|F|187827.64|1994-10-03|5-LOW|Clerk#000004006|0|lly ironic packages maintain. ironically unusual platelets use | +2892|711064|O|1871.61|1996-11-28|1-URGENT|Clerk#000002765|0|s haggle across the blithely regular asymptotes. special, ironic deposits| +2893|324073|F|126410.68|1992-07-29|4-NOT SPECIFIED|Clerk#000000636|0|ilent foxes. blithely final requests sleep. even exc| +2894|181480|P|177291.33|1995-03-30|2-HIGH|Clerk#000004864|0|. pinto beans are slyly bold packages. quickly express req| +2895|626101|F|29017.11|1993-03-21|3-MEDIUM|Clerk#000004140|0|e regular deposits. ironic pinto beans wake | +2920|349391|F|121284.07|1993-03-02|1-URGENT|Clerk#000001576|0|wake slyly. slyly final accounts are quickly. slyly f| +2921|450911|F|244856.55|1994-09-30|1-URGENT|Clerk#000000352|0|e regular, regular deposit| +2922|445159|O|336875.90|1997-03-23|1-URGENT|Clerk#000003144|0| frays haggle slyly. express pinto beans boost slyly blithel| +2923|526555|F|131478.21|1994-08-01|3-MEDIUM|Clerk#000000257|0|tes. deposits haggle furiously pendi| +2924|529484|O|111481.32|1995-12-19|1-URGENT|Clerk#000001503|0|furiously against the pending foxes-- | +2925|279172|F|228842.12|1993-04-14|5-LOW|Clerk#000004673|0|ic accounts. silently final instructions cajole furiously. silen| +2926|42601|O|125607.25|1996-08-02|4-NOT SPECIFIED|Clerk#000003258|0| are fluffily after the regula| +2927|463549|O|192651.60|1997-11-01|4-NOT SPECIFIED|Clerk#000004133|0|ilent packages engage. deposits sleep. pending courts nag blithely acc| +2952|603904|F|73926.77|1992-03-14|4-NOT SPECIFIED|Clerk#000000926|0|ily ironic dugouts alongside of the idle deposits integrate about the| +2953|31858|F|174595.67|1994-04-28|4-NOT SPECIFIED|Clerk#000002027|0|st the ironic theodolites. unusual,| +2954|686293|F|45238.62|1993-07-13|2-HIGH|Clerk#000004994|0|ully regular accounts detect furiously ir| +2955|267956|F|25188.64|1993-08-08|1-URGENT|Clerk#000001185|0|egular deposits across the slyly special dependen| +2956|521036|F|157178.46|1992-10-04|4-NOT SPECIFIED|Clerk#000000425|0|ctions. blithely darin| +2957|51601|F|174021.48|1993-07-19|2-HIGH|Clerk#000000170|0|t the regularly special d| +2958|241882|O|339106.00|1998-01-24|1-URGENT|Clerk#000001988|0|ideas sleep slyly pending ideas. fluffily bold packages are. ironic dep| +2959|300712|O|327435.55|1998-07-20|2-HIGH|Clerk#000003506|0|riously. slyly pending pinto beans impress carefu| +2984|553427|F|279388.53|1994-11-29|4-NOT SPECIFIED|Clerk#000002782|0|he final, ironic requests. slyly even requests nag blithely | +2985|685084|F|298072.75|1993-08-25|4-NOT SPECIFIED|Clerk#000004829|0|ironic ideas haggle blithely about the blithely unu| +2986|173273|F|273579.13|1994-12-12|3-MEDIUM|Clerk#000000059|0|ideas against the ironic requests breach bl| +2987|698839|O|234339.67|1995-07-01|3-MEDIUM|Clerk#000002977|0|s the carefully fluffy platelets wake ab| +2988|366331|O|185150.90|1997-11-09|3-MEDIUM|Clerk#000001689|0|ly against the carefully special ideas. furiously unusual| +2989|160021|O|101559.58|1995-09-20|3-MEDIUM|Clerk#000004496|0| ideas. carefully pending acco| +2990|719606|O|28812.18|1997-09-27|3-MEDIUM|Clerk#000000200|0|nusual deposits along the carefully re| +2991|663251|O|158579.23|1995-11-06|1-URGENT|Clerk#000000498|0|ptotes integrate up the regular, even instruct| +3016|743533|O|80287.98|1996-01-09|3-MEDIUM|Clerk#000004056|0|le furiously across the furiou| +3017|36883|F|293327.93|1992-03-10|1-URGENT|Clerk#000004396|0|ely about the slyly final in| +3018|385033|O|75422.13|1995-07-02|2-HIGH|Clerk#000001828|0|he stealthily final pinto beans. furiously| +3019|227215|O|110742.23|1995-06-15|4-NOT SPECIFIED|Clerk#000001886|0|lly ironic requests haggle quickly after the quickly regular foxes. e| +3020|533827|F|109871.39|1993-10-07|5-LOW|Clerk#000001575|0|ilent ideas! even, regular platelets according to the c| +3021|523042|O|61892.98|1996-10-03|1-URGENT|Clerk#000001149|0|asymptotes wake blithely? ironic requests snooze carefully careful packa| +3022|6688|O|51935.23|1996-11-18|2-HIGH|Clerk#000004246|0|accounts. fluffily even package| +3023|636643|O|296282.96|1996-02-06|1-URGENT|Clerk#000001908|0| requests. carefully ironic pinto beans will are acro| +3048|526007|O|55387.97|1996-07-30|5-LOW|Clerk#000004504|0|ckages wake. evenly special | +3049|348808|F|138067.59|1994-11-13|3-MEDIUM|Clerk#000003672|0|jole blithely quickly regular requests. furiously express excu| +3050|383134|O|254356.78|1997-06-04|5-LOW|Clerk#000001500|0|int slyly. quickly final deposits nag slyly. furiousl| +3051|564130|F|84502.27|1993-06-21|3-MEDIUM|Clerk#000002482|0|foxes. even, final accoun| +3052|563534|F|296307.45|1994-04-29|1-URGENT|Clerk#000004817|0| silent deposits. carefull| +3053|309469|P|156767.33|1995-03-29|4-NOT SPECIFIED|Clerk#000000910|0|ns wake blithely even excuses. unusual foxes about the ironic, special | +3054|717352|O|239615.22|1998-03-22|1-URGENT|Clerk#000003846|0|nts sleep; fluffily regular excuses wake quickly: express, quick platelets wak| +3055|269749|P|225446.00|1995-03-13|4-NOT SPECIFIED|Clerk#000001423|0|s. bold pinto beans along the carefully express package| +3080|665305|O|53186.32|1997-06-30|3-MEDIUM|Clerk#000002309|0|de of the quiet packages. blith| +3081|28124|F|220131.88|1992-03-21|4-NOT SPECIFIED|Clerk#000004063|0|carefully sly dolphins wake quickly. even pinto beans wake carefully pend| +3082|174502|O|114573.55|1997-09-02|1-URGENT|Clerk#000001872|0|ages use after the even foxe| +3083|335020|F|113596.79|1994-12-29|5-LOW|Clerk#000002063|0|dencies. fluffily regular requests wake. blithely final theodolites ar| +3084|412102|O|170927.24|1995-07-10|1-URGENT|Clerk#000001692|0|. instructions about the even foxes affix fluffily acc| +3085|682220|P|155960.82|1995-05-15|2-HIGH|Clerk#000003580|0|posits cajole furiously about the quickly final dolphi| +3086|69619|O|247236.85|1998-07-23|4-NOT SPECIFIED|Clerk#000003226|0|y regular foxes haggle: pa| +3087|59689|O|212878.28|1996-02-25|5-LOW|Clerk#000000491|0|arefully unusual accounts. furiously ironic accounts dazzle careful| +3112|432823|O|252719.81|1996-02-23|2-HIGH|Clerk#000000399|0|yly about the slowly even excuses; even, even notornis impres| +3113|190448|F|204276.91|1994-06-22|2-HIGH|Clerk#000003683|0|ly ironic foxes would sleep. quickly even deposits after the | +3114|596951|F|80306.37|1994-04-14|1-URGENT|Clerk#000003418|0| furiously ironic foxes. regular hockey players sleep slyly; slyly regular pac| +3115|195128|F|33401.49|1992-03-11|2-HIGH|Clerk#000000506|0|lar, regular packages-- express deposits x-ray carefully above the asympto| +3116|510872|O|291449.65|1997-08-13|3-MEDIUM|Clerk#000000935|0|carefully express instructions. regular dependencies bo| +3117|221740|O|85325.39|1996-09-26|2-HIGH|Clerk#000002133|0|sly regular accounts. quickly regular deposi| +3118|5593|F|243198.66|1995-02-28|1-URGENT|Clerk#000001411|0|e final ideas. furiously | +3119|220745|F|114700.54|1992-02-09|4-NOT SPECIFIED|Clerk#000003162|0|ular asymptotes. deposits according to the special, bol| +3144|547084|O|119894.66|1995-10-10|1-URGENT|Clerk#000000836|0| even accounts nag bold packages. pending courts use slyly pending foxes. | +3145|578377|F|146597.47|1993-11-04|4-NOT SPECIFIED|Clerk#000002738|0|ss grouches sleep furiously| +3146|335|F|52387.39|1993-07-28|2-HIGH|Clerk#000004803|0| above the even, regular ac| +3147|370382|O|49759.95|1995-08-21|2-HIGH|Clerk#000001981|0|blithely regular pinto beans| +3148|7951|F|249432.65|1993-12-13|2-HIGH|Clerk#000003012|0|ke furiously even foxes. idly regular instructions haggle blithely.| +3149|122450|F|202232.30|1992-09-02|3-MEDIUM|Clerk#000001227|0| requests are regular pearls. carefully regular excuses after the fur| +3150|3839|O|209726.63|1997-10-05|3-MEDIUM|Clerk#000001305|0|ously at the enticingly final ideas. regular de| +3151|17272|O|122452.75|1996-07-02|4-NOT SPECIFIED|Clerk#000000851|0|ly special deposits | +3176|36316|O|100083.59|1998-05-16|4-NOT SPECIFIED|Clerk#000002267|0|owly even requests. carefully final requests cajole furiously. final, even id| +3177|588421|F|120207.69|1994-06-15|2-HIGH|Clerk#000000322|0|k multipliers haggle. slyly silent ideas use fluffily ironic asymptot| +3178|84584|O|257830.07|1995-05-25|1-URGENT|Clerk#000000508|0|ing dependencies-- blithely final deposits are. regular requests nag fluffi| +3179|345110|F|79433.26|1994-09-03|3-MEDIUM|Clerk#000003532|0|y above the carefully fi| +3180|498134|O|189605.49|1998-06-16|1-URGENT|Clerk#000003336|0|n deposits? excuses about the idly regular asymptotes eat fluffily dogg| +3181|630917|O|199605.89|1998-06-28|5-LOW|Clerk#000000134|0|kages according to th| +3182|306940|F|213094.74|1994-03-19|3-MEDIUM|Clerk#000000548|0|ly ironic asymptotes according to the final pearls are furiously final reques| +3183|217867|F|1697.05|1993-08-29|2-HIGH|Clerk#000001708|0| pinto beans boost carefully. bold, special courts wake blithely. ironic depos| +3208|158023|O|135787.29|1996-02-10|3-MEDIUM|Clerk#000004938|0|kindle blithely slyly bold accounts.| +3209|117823|F|130862.94|1992-10-23|4-NOT SPECIFIED|Clerk#000001100|0|egular pinto beans haggle quickly a| +3210|218641|F|158867.66|1994-01-29|4-NOT SPECIFIED|Clerk#000000316|0|y even deposits haggle about the unusual ins| +3211|441785|F|203878.26|1992-08-16|4-NOT SPECIFIED|Clerk#000004335|0|s. unusual dependencies affix quickly. deposits above the even ide| +3212|79258|O|252259.53|1997-08-23|1-URGENT|Clerk#000001486|0|rns sleep furiously. furiously pending theodolites are fluffily qu| +3213|64940|F|147629.08|1993-02-20|3-MEDIUM|Clerk#000001293|0|y regular deposits. pending ideas sleep quickly. furiou| +3214|183400|O|94401.63|1998-07-12|4-NOT SPECIFIED|Clerk#000000235|0|usual instructions. blithely final r| +3215|622783|F|201783.02|1992-09-27|5-LOW|Clerk#000001243|0|g carefully up the regular, express theodolites. accounts maintain. pint| +3240|85019|F|269136.67|1993-10-28|2-HIGH|Clerk#000003508|0|riously silent ideas. furiously ironic platelets print ca| +3241|152443|F|51695.57|1993-12-21|5-LOW|Clerk#000003753|0|ly special deposits! bold, regular courts ma| +3242|81706|P|180887.52|1995-03-21|3-MEDIUM|Clerk#000000134|0|lithely among the flu| +3243|713749|O|221252.37|1996-03-22|2-HIGH|Clerk#000002232|0|nts. ironic foxes are a| +3244|470764|O|189715.69|1997-09-29|1-URGENT|Clerk#000003156|0|thely bold ideas believe busily. furiously even de| +3245|364861|O|240123.63|1998-03-13|2-HIGH|Clerk#000000568|0|ld deposits. slyly special packages wake blithely regular theodoli| +3246|190072|O|402465.82|1996-08-12|5-LOW|Clerk#000000295|0|y bold theodolites. permanent requests nag furiously s| +3247|282133|O|34213.89|1996-04-01|3-MEDIUM|Clerk#000003197|0|ideas. blithely quick platelets are | +3272|306352|F|59033.22|1994-05-20|5-LOW|Clerk#000001314|0|sly blithely even accounts. blithely pending platel| +3273|89284|F|272886.56|1995-01-21|2-HIGH|Clerk#000003923|0|ncies. slyly even deposits sleep blith| +3274|577033|F|70117.17|1993-11-20|4-NOT SPECIFIED|Clerk#000001640|0|idly bold instructions grow after the bold platelets. slyly| +3275|668153|F|326289.59|1992-02-26|5-LOW|Clerk#000000047|0| above the accounts. fluffily regular deposits sleep slyly ac| +3276|631087|F|49611.27|1993-12-11|1-URGENT|Clerk#000004920|0|ggle blithely along the fluffily final instructions-- furiously fin| +3277|178105|O|222289.07|1995-12-11|1-URGENT|Clerk#000004925|0|ously ironic foxes. special, regular foxes boost furiousl| +3278|157748|O|220163.22|1996-12-15|3-MEDIUM|Clerk#000000260|0|e requests. blithely bold packages kindle am| +3279|15313|F|34379.17|1992-12-25|3-MEDIUM|Clerk#000004990|0|osits sublate blithely. deposits about the expres| +3304|87919|F|91203.78|1994-05-22|3-MEDIUM|Clerk#000004590|0|lar theodolites sleep furiously furiously even frays. even, regu| +3305|141824|O|98065.60|1995-08-02|1-URGENT|Clerk#000000496|0|ully across the furiously pending foxes. quickly special courts across the| +3306|120964|O|204394.46|1997-07-11|2-HIGH|Clerk#000004689|0|r theodolites. quickly special packages against the regular dependencies| +3307|523072|O|54144.64|1995-05-12|1-URGENT|Clerk#000002499|0|ly final requests. blithely br| +3308|517241|F|21524.39|1994-01-05|2-HIGH|Clerk#000000742|0|lar requests. slyly even requests sleep slyly. regular, regular instr| +3309|4252|F|311366.81|1994-04-05|3-MEDIUM|Clerk#000003705|0|ructions wake blithely. deposits around the| +3310|189202|O|258233.47|1996-04-10|2-HIGH|Clerk#000002031|0|ithe deposits sleep fluffily furiously specia| +3311|640163|F|167583.73|1994-03-14|5-LOW|Clerk#000002276|0|tly along the warhorses. regular, regular packages sleep furiously among the| +3336|453866|F|19173.62|1994-11-04|4-NOT SPECIFIED|Clerk#000001161|0|yly special foxes. furiously ironic deposits nag furiously pe| +3337|616649|F|244594.70|1992-08-27|1-URGENT|Clerk#000002261|0| among the regular, bold asymptotes. regular requests above the ideas haggle| +3338|519073|F|189632.09|1994-05-10|3-MEDIUM|Clerk#000004264|0|al accounts cajole about the blithely ironic de| +3339|49273|O|238502.82|1996-12-11|4-NOT SPECIFIED|Clerk#000004349|0|refully. regular foxes haggle blithely quickly spec| +3340|118387|O|172320.12|1995-12-19|2-HIGH|Clerk#000001693|0|es mold packages. furiously pending requests cajole quickly regular accoun| +3341|710816|O|66302.35|1997-09-16|3-MEDIUM|Clerk#000003056|0|s. furiously final warhorses wake slyly; packag| +3342|673330|F|242994.79|1994-08-14|5-LOW|Clerk#000004576|0|ffily special deposits serve around the slyly pending accounts. regular, | +3343|655156|F|68547.31|1994-04-28|3-MEDIUM|Clerk#000000969|0|ely: ironic pearls af| +3368|448855|F|54278.64|1993-04-05|5-LOW|Clerk#000002926|0| quickly. quickly regular ideas above the special, final packages s| +3369|396650|F|117709.53|1994-12-13|3-MEDIUM|Clerk#000004607|0|e furiously. carefully fina| +3370|481864|F|83285.55|1994-10-09|4-NOT SPECIFIED|Clerk#000001537|0|tes around the slyly even platelets boost furiously| +3371|174334|O|47392.10|1995-08-05|2-HIGH|Clerk#000000481|0|cajole carefully against the bold, even requests. final, final no| +3372|499688|O|195531.46|1997-01-23|3-MEDIUM|Clerk#000001574|0|ing deposits impress aga| +3373|500866|O|52516.38|1997-01-22|2-HIGH|Clerk#000000446|0|ut the regular theodolites thrash abou| +3374|52801|F|279242.12|1993-03-24|3-MEDIUM|Clerk#000004855|0|bout the quickly ironic excuses. slyly bold accounts ca| +3375|143812|P|127429.94|1995-04-04|5-LOW|Clerk#000004055|0|sits according to the blit| +3400|544495|O|77559.87|1998-03-11|2-HIGH|Clerk#000002000|0|furiously even theodolites. fluffily regular accounts are blithely| +3401|563020|F|84741.85|1995-02-28|5-LOW|Clerk#000001495|0|ress theodolites. express frets use slyly. s| +3402|652169|F|200959.06|1993-11-11|1-URGENT|Clerk#000003504|0| final accounts. bold dolphins wake. carefully bold epitaphs boost qui| +3403|496472|F|108560.75|1995-02-26|3-MEDIUM|Clerk#000001458|0|ross the slyly pendin| +3404|452695|O|217556.89|1996-10-07|4-NOT SPECIFIED|Clerk#000000466|0|ely regular dependencies cajole. furiously unusual deposits cajole q| +3405|419551|F|152732.69|1992-06-15|4-NOT SPECIFIED|Clerk#000000411|0|ecial accounts haggle furiously above the furiously ironic theodolites. boldly| +3406|626732|O|230981.50|1996-11-15|2-HIGH|Clerk#000001999|0| regular accounts. furiously final theo| +3407|481882|O|182137.77|1996-09-09|4-NOT SPECIFIED|Clerk#000002102|0| blithely quickly special platelets. blithely final packages mold. s| +3432|468379|O|294764.75|1997-12-23|2-HIGH|Clerk#000002509|0|dolites are carefully pending foxes. blithely pending foxes around t| +3433|38812|F|101365.47|1992-05-12|2-HIGH|Clerk#000002728|0|oxes sleep furiously around the final, regular deposits. pending excuses a| +3434|537328|F|40022.15|1993-08-16|1-URGENT|Clerk#000000871|0|gainst the fluffily even ideas boost carefully final frets. account| +3435|111569|F|232842.99|1993-07-06|5-LOW|Clerk#000000837|0|instructions. pending, expres| +3436|124882|F|56460.08|1993-04-17|2-HIGH|Clerk#000003279|0|fluffily final theodolites ca| +3437|364825|O|177930.19|1997-09-16|2-HIGH|Clerk#000004389|0|he thinly even accounts; slyly bold requests | +3438|338056|O|258825.01|1997-12-19|2-HIGH|Clerk#000002470|0|s, special packages hag| +3439|448163|F|178709.17|1994-08-10|2-HIGH|Clerk#000004578|0|al packages. unusual, bold reque| +3464|11560|F|190565.11|1994-12-10|2-HIGH|Clerk#000002131|0|nts detect about the packag| +3465|33161|O|79335.38|1997-09-05|3-MEDIUM|Clerk#000003561|0|s print fluffily above the slyly express requests. | +3466|71980|F|39203.56|1994-04-17|4-NOT SPECIFIED|Clerk#000002346|0|eas among the final ideas believe dep| +3467|749101|P|129939.97|1995-05-04|3-MEDIUM|Clerk#000003935|0|ans use alongside of the slyly ironic accounts. blithely regular package| +3468|638641|F|37721.76|1992-08-05|2-HIGH|Clerk#000004195|0|riously final accounts. slyly regul| +3469|385787|F|127274.20|1992-03-07|4-NOT SPECIFIED|Clerk#000000191|0|its use slyly ironic reques| +3470|159268|O|85438.87|1996-02-04|5-LOW|Clerk#000003607|0|s. blithely dogged packages wake furiously. blithely unusual foxes sleep| +3471|35717|F|65749.59|1994-12-14|4-NOT SPECIFIED|Clerk#000003426|0|rding to the even pinto beans. even foxes wake ironic, spec| +3496|282865|F|293947.85|1993-05-02|3-MEDIUM|Clerk#000003021|0|deposits. blithely special requests about the furiously special account| +3497|605360|F|227950.83|1992-03-11|5-LOW|Clerk#000000388|0| after the accounts haggle carefull| +3498|520093|O|194493.83|1995-07-01|5-LOW|Clerk#000000476|0|the fluffily unusual requests. slyly regular accounts engage. blithely regula| +3499|684472|O|209405.65|1996-05-07|3-MEDIUM|Clerk#000000612|0|ording to the blithely expre| +3500|418081|F|89490.33|1994-12-04|3-MEDIUM|Clerk#000002432|0|al packages nag furiously fluffily regular theod| +3501|670829|F|114641.00|1992-05-10|2-HIGH|Clerk#000001604|0|s use blithely requests;| +3502|621854|F|156169.88|1994-12-12|2-HIGH|Clerk#000002792|0|nic decoys. carefully ironic deposits affix even sentiments| +3503|234133|O|181853.52|1998-04-29|4-NOT SPECIFIED|Clerk#000000117|0|c requests. carefully spe| +3528|546886|O|187899.51|1995-05-31|4-NOT SPECIFIED|Clerk#000003192|0|fully above the blithely unusual foxes. regular deposit| +3529|261476|O|192128.91|1997-10-26|1-URGENT|Clerk#000004810|0|lithely regular packages sleep evenly fluffily bold packages. iron| +3530|371689|F|108202.78|1994-05-08|1-URGENT|Clerk#000002163|0|ly final dolphins nag slyly courts. sl| +3531|212080|F|32945.97|1993-01-24|2-HIGH|Clerk#000001256|0| deposits cajole furiously final accounts. requests | +3532|401554|F|121654.29|1993-10-14|1-URGENT|Clerk#000002347|0| pending, silent requests integrate slyly| +3533|389987|O|397935.25|1996-09-24|5-LOW|Clerk#000002608|0|osits. blithely ironic ideas above the blithely final realms use blithely r| +3534|246862|F|88550.19|1992-09-24|4-NOT SPECIFIED|Clerk#000001916|0|al deposits alongside of the slyly express requ| +3535|3191|F|253209.47|1994-08-15|3-MEDIUM|Clerk#000000040|0| to the furiously ironic foxes. final, idle packages| +3560|371512|O|83042.09|1997-02-24|1-URGENT|Clerk#000000491|0|egular accounts. blithely unusual packages are alo| +3561|219191|O|345704.33|1996-08-06|1-URGENT|Clerk#000004459|0|lly regular packages haggle-- platelets sleep carefully iro| +3562|687337|F|39430.15|1992-02-28|5-LOW|Clerk#000002270|0|ges are carefully furiously regular pearls: quickly bol| +3563|542023|F|175114.57|1994-08-31|2-HIGH|Clerk#000002962|0|s. silent, unusual excuses run furiously. quickly | +3564|255926|F|241538.27|1993-01-11|4-NOT SPECIFIED|Clerk#000001833|0|ctions. even, special accounts are carefully accounts. even forges al| +3565|84358|O|104804.70|1995-07-10|5-LOW|Clerk#000001925|0|ctions. blithely unusual depths solve carefully | +3566|274847|O|159375.38|1996-12-14|3-MEDIUM|Clerk#000002845|0| among the blithely final packages solve blithely about the | +3567|102221|O|81213.22|1996-06-08|3-MEDIUM|Clerk#000004623|0|among the bold instructions. blithely regular ideas wake slyl| +3592|521810|O|52343.73|1997-02-18|2-HIGH|Clerk#000000329|0|s boost ideas. fluffily regular packages haggle quickly final accounts-- | +3593|293995|O|205613.95|1995-09-06|4-NOT SPECIFIED|Clerk#000004562|0| the furiously unusual instructions. carefully bold accounts s| +3594|144569|F|131329.39|1993-02-05|3-MEDIUM|Clerk#000002926|0| final frays. regular deposits sleep s| +3595|517277|F|124971.91|1992-05-02|1-URGENT|Clerk#000002589|0|ely silent packages? blithely bold deposits a| +3596|620443|O|309130.54|1995-10-09|1-URGENT|Clerk#000000612|0|yly even pinto beans. fluffily final grouches caj| +3597|520990|O|88066.01|1996-06-29|4-NOT SPECIFIED|Clerk#000004793|0|ar instructions poach across the final ideas. regular acc| +3598|25094|O|122548.30|1996-05-18|4-NOT SPECIFIED|Clerk#000004257|0|refully carefully ex| +3599|240040|O|9386.20|1997-07-05|1-URGENT|Clerk#000004424|0| integrate carefully about the fluffily final r| +3624|96361|F|153936.43|1992-09-23|3-MEDIUM|Clerk#000004139|0|ncies according to | +3625|277951|O|142276.79|1996-09-25|2-HIGH|Clerk#000004389|0|eans wake quickly slyly unusual requests. bold asympto| +3626|501280|O|257812.85|1996-08-07|2-HIGH|Clerk#000004336|0| enticing instructions. | +3627|254423|O|269930.16|1998-01-09|5-LOW|Clerk#000004106|0|ag carefully according to the furiously bold excuses. carefully specia| +3628|334912|P|332941.93|1995-03-25|5-LOW|Clerk#000002442|0|ording to the ironic sauternes. quickly final foxes wake. qui| +3629|115433|O|271497.62|1996-05-17|4-NOT SPECIFIED|Clerk#000001392|0|arefully ironic deposits.| +3630|578348|P|76214.66|1995-04-27|1-URGENT|Clerk#000003030|0|onic deposits according to the even theodolite| +3631|278224|O|119674.57|1998-05-12|2-HIGH|Clerk#000003658|0| regularly final packages. quickly regular requests sleep quickly alongsi| +3656|583504|F|71348.57|1993-01-28|3-MEDIUM|Clerk#000001749|0|posits wake before the bold, ruthless reque| +3657|689200|O|156220.60|1996-05-21|2-HIGH|Clerk#000002089|0| deposits. furiously regular| +3658|355879|F|288443.38|1993-05-28|2-HIGH|Clerk#000003439|0|pendencies haggle fluffily silent war| +3659|2585|F|325930.12|1992-07-11|5-LOW|Clerk#000001274|0| requests. regular accounts must have to nag. fluffily bold| +3660|687536|O|161790.04|1995-07-14|1-URGENT|Clerk#000002174|0|uests. regular, pending excuse| +3661|152170|F|209746.17|1994-01-15|3-MEDIUM|Clerk#000002625|0|tructions use fluffily. quickly fluffy asymptotes along the ev| +3662|12389|P|100325.50|1995-03-21|2-HIGH|Clerk#000000008|0|eep carefully. even Tire| +3663|467671|O|48027.08|1995-12-10|5-LOW|Clerk#000004159|0|deas sleep quickly against the furiously regular accounts. slyly| +3688|131875|F|174680.17|1994-12-20|2-HIGH|Clerk#000000091|0|ges haggle after the slyly even requests; regu| +3689|156439|O|148386.62|1997-03-17|4-NOT SPECIFIED|Clerk#000000967|0|fter the foxes hinder sl| +3690|497251|F|25897.99|1993-04-30|1-URGENT|Clerk#000000007|0|deposits along the slyly | +3691|26624|O|209678.53|1998-08-01|2-HIGH|Clerk#000000711|0|are blithely along the ironic pinto| +3692|465799|F|163741.31|1992-10-31|1-URGENT|Clerk#000001737|0|regular accounts wake blithely against the furiously unusual accounts. unusu| +3693|178447|F|153729.44|1994-05-02|4-NOT SPECIFIED|Clerk#000003008|0|y regular requests nag furiously express packages. blithel| +3694|630634|O|51424.90|1998-02-24|4-NOT SPECIFIED|Clerk#000004606|0|rnis. furiously final platelets x-ray daring, bold pac| +3695|56558|O|170886.36|1997-03-26|4-NOT SPECIFIED|Clerk#000003775|0|aringly. furiously unusual p| +3720|312175|P|224295.28|1995-04-27|2-HIGH|Clerk#000000883|0|e special, regular requests. regular Tiresias boost carefully| +3721|451103|O|18122.13|1996-06-22|1-URGENT|Clerk#000000538|0|l deposits at the instructions haggle final pinto bean| +3722|673936|F|5050.97|1993-02-25|4-NOT SPECIFIED|Clerk#000001180|0|tructions nag regularly carefully ironic requests. carefully ir| +3723|322591|P|126778.18|1995-05-30|1-URGENT|Clerk#000003572|0|tect quickly carefully special pains. quickly quiet requests sleep | +3724|10762|F|240335.13|1993-07-06|2-HIGH|Clerk#000004059|0|eposits wake carefully silent platelets: bold foxes a| +3725|99748|F|115261.15|1993-08-31|1-URGENT|Clerk#000003166|0|furiously carefully regular pinto beans. slyly pending foxes gr| +3726|199162|F|28231.60|1993-07-31|1-URGENT|Clerk#000000237|0|y ideas. fluffily even theodolites nag| +3727|44827|O|124146.95|1996-11-18|4-NOT SPECIFIED|Clerk#000003353|0|near the fluffily ironic accounts. quickly bold deposits against the even, reg| +3752|407366|F|66769.24|1993-08-06|4-NOT SPECIFIED|Clerk#000003283|0|t accounts! blithely u| +3753|599668|O|243364.25|1997-01-15|3-MEDIUM|Clerk#000004236|0|oost ideas. ironic, fi| +3754|97817|O|133741.49|1995-06-19|2-HIGH|Clerk#000003449|0|e stealthily regular requests. carefully final accounts| +3755|6869|F|174363.38|1992-01-28|3-MEDIUM|Clerk#000002299|0|s use blithely-- deposits sleep blithely across the ironic, unusu| +3756|686608|F|285265.88|1993-12-14|4-NOT SPECIFIED|Clerk#000000374|0| requests. slyly silent pinto beans a| +3757|295315|F|276729.49|1995-02-06|1-URGENT|Clerk#000000372|0|ly bold somas. realms haggle fluffily about the slyly silent excuses. regular | +3758|576386|F|98431.72|1993-03-25|4-NOT SPECIFIED|Clerk#000002430|0| ironic theodolites. quickly ironic warhorses haggle. blithely final warho| +3759|309482|F|326033.19|1994-06-14|3-MEDIUM|Clerk#000004887|0|c accounts. final depths are furiously blithely | +3784|204427|O|79885.55|1997-01-02|4-NOT SPECIFIED|Clerk#000003521|0|ts are quickly furiously regular foxes: quickly ironic deposits acro| +3785|29543|O|289100.54|1998-01-12|5-LOW|Clerk#000002972|0|ar excuses use. carefully even platelets snooze courts. r| +3786|22825|O|137682.65|1996-09-22|5-LOW|Clerk#000004444|0|y unusual accounts haggle slyly f| +3787|343258|F|37530.88|1993-10-29|3-MEDIUM|Clerk#000003627|0|usly final instructions. carefully pending theodolites cajole. | +3788|126466|F|108486.26|1993-03-20|3-MEDIUM|Clerk#000003898|0|ut the regular packages. final, final packages need to sle| +3789|741952|F|321247.24|1992-09-24|3-MEDIUM|Clerk#000003321|0|s are requests. carefully even excuses s| +3790|475855|F|106582.97|1995-03-02|1-URGENT|Clerk#000000682|0|ests mold warhorses. final packages wake carefully. carefu| +3791|432508|F|107213.90|1994-12-07|1-URGENT|Clerk#000000692|0|s. slyly unusual Tiresias| +3816|146519|F|130128.68|1994-02-25|3-MEDIUM|Clerk#000002582|0|e furiously. carefully special theodolites against the furiously daring pack| +3817|293221|F|293129.30|1993-07-27|4-NOT SPECIFIED|Clerk#000000383|0|ions. fluffily bold requests thrash. furiou| +3818|631879|F|103084.39|1992-04-01|5-LOW|Clerk#000004358|0|es. silent, silent packages a| +3819|721336|O|114676.51|1995-06-24|1-URGENT|Clerk#000003776|0| blithely regular deposits boost furiously express deposits. unusual req| +3820|491474|F|25829.32|1992-04-04|2-HIGH|Clerk#000003596|0|ites. blithely bold i| +3821|444857|O|260498.41|1996-12-09|5-LOW|Clerk#000004840|0| are blithely unusual, final accounts. quietly final accounts | +3822|707356|O|117064.92|1997-12-11|5-LOW|Clerk#000004564|0|gular deposits; slyly unusual deposits along the gifts boost | +3823|267571|O|118311.22|1997-04-18|2-HIGH|Clerk#000001435|0| ironic accounts sleep: regular foxes wake quickly around the express, | +3848|44947|O|144172.39|1998-03-30|1-URGENT|Clerk#000002112|0|ully. blithely final dolphins use. f| +3849|162277|O|317693.78|1998-01-29|2-HIGH|Clerk#000000434|0|out the final packages. furiously regular packages serve flu| +3850|378124|O|139886.32|1995-10-01|5-LOW|Clerk#000002646|0|ironic theodolites cajole ruthl| +3851|346724|O|24323.39|1998-07-11|4-NOT SPECIFIED|Clerk#000000812|0|ccounts haggle blithely regul| +3852|631102|O|17442.42|1998-03-12|2-HIGH|Clerk#000001217|0|usual accounts haggle carefully along the carefully regular foxes.| +3853|417692|O|188960.61|1997-01-05|4-NOT SPECIFIED|Clerk#000002228|0|ent packages nag sometimes between the ironic, e| +3854|141172|F|119033.34|1993-03-17|4-NOT SPECIFIED|Clerk#000000014|0|are above the slyly specia| +3855|422140|O|64480.43|1998-05-05|4-NOT SPECIFIED|Clerk#000001673|0|uriously ironic instructions haggle| +3880|629746|F|241086.08|1993-11-12|3-MEDIUM|Clerk#000003974|0| furiously. carefully even requests sleep slyly accordi| +3881|112072|O|57220.66|1995-08-11|3-MEDIUM|Clerk#000004817|0|he pending ideas. carefully bold theodolites unwind about the slyly final plat| +3882|313795|O|25119.55|1997-07-16|1-URGENT|Clerk#000004484|0|ounts detect carefully. blithely regular excuses sleep slyly among the sly| +3883|688147|O|226221.76|1998-02-26|5-LOW|Clerk#000000046|0|ffix. quickly silent dep| +3884|683102|F|218434.99|1994-02-07|3-MEDIUM|Clerk#000001710|0|s use carefully ironic, bold foxes. ironic,| +3885|635299|F|116220.09|1994-08-14|5-LOW|Clerk#000000343|0|grate carefully. blithely| +3886|459151|O|199195.00|1998-01-31|3-MEDIUM|Clerk#000000827|0|e silently ironic deposits. unusual accounts sleep around| +3887|193385|F|201406.40|1993-11-28|5-LOW|Clerk#000003670|0|s are furiously among the unusual accounts: carefully expre| +3912|467410|F|94561.40|1993-01-30|4-NOT SPECIFIED|Clerk#000000162|0| furiously special instructions. requests wake fu| +3913|251050|F|297078.09|1993-06-14|2-HIGH|Clerk#000004940|0|ose requests. excuses boost carefully about the quickly regular epitaphs. p| +3914|616450|F|199572.46|1993-08-13|5-LOW|Clerk#000004006|0|ost carefully regular packages. blithely regular theodolites above th| +3915|156941|F|126782.23|1994-10-22|3-MEDIUM|Clerk#000003553|0|dencies. bold, pending deposits cajole about the slyly express req| +3916|697981|O|44531.73|1997-02-25|2-HIGH|Clerk#000003900|0|s use; regular instructio| +3917|189124|O|87072.78|1997-06-02|2-HIGH|Clerk#000004021|0|rs. quickly pending ideas try to hinder fluffily. pinto beans after the quickl| +3918|85981|F|161997.66|1995-01-25|3-MEDIUM|Clerk#000000414|0|ffily fluffily thin instructions. furiously busy accounts sleep carefully| +3919|562619|F|215610.42|1992-06-29|2-HIGH|Clerk#000004575|0|daring requests haggle blithely alongside of the final, quiet packages. i| +3944|673562|O|9253.47|1997-11-25|3-MEDIUM|Clerk#000004642|0|ilent deposits nag carefully daring pint| +3945|40414|O|169278.32|1997-10-12|1-URGENT|Clerk#000001795|0|posits. blithely even accounts use blithely abo| +3946|483214|O|10543.78|1998-04-25|2-HIGH|Clerk#000001326|0|haggle. final sheaves sleep regular, final platelets. furiously fina| +3947|369056|P|196112.86|1995-03-02|5-LOW|Clerk#000002634|0|excuses breach blithely | +3948|219493|F|303703.80|1993-12-28|5-LOW|Clerk#000002095|0|pinto beans haggle blithe| +3949|496345|O|267081.45|1995-10-16|3-MEDIUM|Clerk#000001696|0|. blithely even asy| +3950|541736|F|192155.75|1993-12-29|4-NOT SPECIFIED|Clerk#000003631|0|ag around the slyly final requests. slyly ironic packages| +3951|692023|O|247655.52|1997-11-18|2-HIGH|Clerk#000000107|0|totes across the slyly | +3976|552208|F|246829.85|1993-05-18|5-LOW|Clerk#000002953|0|affix regularly idly unusual pinto beans. slyly final pinto bean| +3977|447331|O|15681.24|1998-04-17|2-HIGH|Clerk#000004185|0|he regular dependencies. accounts are. furiously quiet requests against | +3978|274540|O|143366.07|1996-04-09|1-URGENT|Clerk#000001416|0|y near the slyly bold waters. carefully ironic packa| +3979|170476|F|76120.37|1994-01-30|4-NOT SPECIFIED|Clerk#000001293|0|equests haggle slyly slyly final instructions. furiously| +3980|180733|F|29552.30|1993-02-06|1-URGENT|Clerk#000001735|0|ar excuses around the slyly | +3981|77432|F|132209.30|1994-06-26|5-LOW|Clerk#000001292|0| carefully unusual platelets integrate against the furiously regu| +3982|146024|O|32693.11|1995-06-21|4-NOT SPECIFIED|Clerk#000002189|0|gainst the blithely unusual ideas. fluffily unusual dep| +3983|222595|F|87822.28|1993-05-23|5-LOW|Clerk#000001324|0|ithely regular requests. furiously ironic pinto be| +4008|120685|F|27046.99|1994-04-14|1-URGENT|Clerk#000001674|0|ding dependencies. requests wake. final dolphins h| +4009|345130|P|144861.75|1995-05-13|4-NOT SPECIFIED|Clerk#000004913|0|ainst the furiously express packages sleep carefully alo| +4010|92432|F|67117.56|1994-10-12|3-MEDIUM|Clerk#000003163|0|kly regular deposits after the requests | +4011|241294|O|329111.21|1997-05-31|3-MEDIUM|Clerk#000000440|0|rious, even instructions. quickly| +4012|146273|F|266910.89|1993-07-30|1-URGENT|Clerk#000004469|0|. regular requests detect blithely after the eve| +4013|654469|O|63798.18|1998-02-03|1-URGENT|Clerk#000004204|0|ar deposits cajole furiously above the final ideas. special, reg| +4014|154330|O|194435.56|1997-02-08|5-LOW|Clerk#000000092|0|egular accounts within the carefully express foxes wake carefull| +4015|320347|F|180272.11|1993-04-21|1-URGENT|Clerk#000003369|0|lar accounts in place of the final | +4040|555398|F|136839.04|1992-02-19|4-NOT SPECIFIED|Clerk#000000571|0|s nag blithely after the excuses? final,| +4041|58411|O|272338.29|1996-10-24|1-URGENT|Clerk#000003577|0|ithely slyly express pinto beans. quickly ev| +4042|686743|F|243653.26|1994-09-23|3-MEDIUM|Clerk#000003774|0|ly express accounts wake blithely; regul| +4043|324818|F|10176.15|1992-02-21|4-NOT SPECIFIED|Clerk#000004904|0|y above the express foxes. slyly bold asymptotes nag | +4044|706792|F|117242.57|1994-07-14|3-MEDIUM|Clerk#000003608|0|slyly special deposits. carefully ironic theodolites affi| +4045|537823|O|282739.02|1995-10-31|4-NOT SPECIFIED|Clerk#000001320|0|r packages. slyly iro| +4046|162526|F|26677.40|1993-11-24|3-MEDIUM|Clerk#000001377|0|es across the special asymptotes detect above the furiously ironic foxes| +4047|48728|F|316988.70|1992-09-25|4-NOT SPECIFIED|Clerk#000000138|0|he ironic, regular requests. quickly eve| +4072|715954|O|103335.99|1996-03-20|3-MEDIUM|Clerk#000002706|0|ounts. furiously bold deposits nag regula| +4073|34654|F|164612.07|1994-07-27|3-MEDIUM|Clerk#000001984|0|foxes. permanently pending deposits are across the unusual de| +4074|424468|O|275680.07|1998-01-07|5-LOW|Clerk#000003572|0|olites. regular, special d| +4075|23468|O|170666.73|1996-02-26|5-LOW|Clerk#000000569|0| carefully ironic accounts. blithely express instructions haggle furiou| +4076|661381|O|119229.45|1995-04-25|1-URGENT|Clerk#000002352|0|ans about the pending, unusual courts k| +4077|55846|F|10920.17|1995-01-27|5-LOW|Clerk#000000075|0|ill cajole furiously doggedly pending| +4078|349340|F|314156.13|1994-11-19|2-HIGH|Clerk#000004773|0|e even, ironic accounts. c| +4079|344446|O|116622.28|1996-09-01|3-MEDIUM|Clerk#000003088|0|fully ironic waters use slyly. silent requests are. instructions | +4104|587506|F|133915.01|1994-12-29|2-HIGH|Clerk#000002919|0|ackages wake furiously after the blith| +4105|430429|O|304568.35|1997-01-24|2-HIGH|Clerk#000003749|0|ajole ironic, ironic theodolites. carefully regular accounts ca| +4106|454936|O|318638.58|1996-01-07|2-HIGH|Clerk#000001605|0|ash. ironic requests around the furiously reg| +4107|578890|O|175426.61|1997-01-10|2-HIGH|Clerk#000003746|0| sleep atop the caref| +4108|377222|O|61955.98|1996-02-21|3-MEDIUM|Clerk#000004882|0| the express packages hinder blithely final requests. slyly | +4109|218302|O|107225.65|1997-06-13|4-NOT SPECIFIED|Clerk#000002953|0| the carefully special dependencies. fur| +4110|731626|O|49893.30|1997-03-16|5-LOW|Clerk#000004843|0|osits sleep fluffily package| +4111|168454|F|149366.18|1993-09-22|4-NOT SPECIFIED|Clerk#000000567|0|express accounts are carefully besid| +4136|704938|O|68148.63|1997-01-28|2-HIGH|Clerk#000004017|0|special pinto beans cajole furiously furiously special requests.| +4137|139234|F|259543.24|1992-03-14|5-LOW|Clerk#000002228|0| express packages. care| +4138|99338|O|48108.08|1998-05-18|5-LOW|Clerk#000002356|0|even accounts. dependencies integrate quickly | +4139|63139|O|157471.76|1996-02-18|1-URGENT|Clerk#000000822|0| accounts maintain according to the furiously ironic dependencies. fu| +4140|653468|O|185456.17|1995-09-02|4-NOT SPECIFIED|Clerk#000001441|0|ic pinto beans about the slyly special requests affix| +4141|570238|F|156350.45|1993-11-02|3-MEDIUM|Clerk#000004318|0| the platelets. blithely special ideas are. pending requests haggle slyly. reg| +4142|489745|F|151836.88|1992-10-05|5-LOW|Clerk#000003060|0|al accounts. furiously pending platelets about the blithel| +4143|626747|F|377471.96|1994-01-13|1-URGENT|Clerk#000004891|0|gged requests. asymptotes haggle slyly. silent,| +4168|735737|O|60340.75|1996-06-16|1-URGENT|Clerk#000002322|0|express accounts. regular, ironic deposits lose slyly al| +4169|278075|O|45960.56|1996-09-30|4-NOT SPECIFIED|Clerk#000002460|0|old dolphins haggle unusua| +4170|353042|F|71081.19|1995-02-24|1-URGENT|Clerk#000002939|0|gular requests alongside of the ac| +4171|313007|O|21617.32|1995-09-23|4-NOT SPECIFIED|Clerk#000004831|0|sual requests. accounts| +4172|199681|O|187277.50|1997-12-09|1-URGENT|Clerk#000003389|0|kages. pending, bold packages use fluffily care| +4173|535049|O|211973.45|1997-06-23|3-MEDIUM|Clerk#000003201|0|posits are bravely against the carefully final dolphins. slyly unus| +4174|53996|F|186116.65|1994-04-01|5-LOW|Clerk#000001610|0| even theodolites. slyly ironic notornis above the careful| +4175|744013|O|24311.75|1996-07-21|2-HIGH|Clerk#000002897|0|ietly carefully even theodolites. deposits hang: silently regular p| +4200|606382|O|14910.46|1998-01-07|3-MEDIUM|Clerk#000004735|0|e carefully final requests use quickly along t| +4201|460333|F|53119.63|1993-12-06|2-HIGH|Clerk#000000203|0| quickly ironic theodolites use? | +4202|556546|O|96802.88|1995-09-06|5-LOW|Clerk#000004276|0|s. foxes use slyly special, special| +4203|611425|O|160719.59|1998-02-20|1-URGENT|Clerk#000001744|0| furiously special, pending accounts. carefully i| +4204|441068|F|230435.50|1992-08-23|3-MEDIUM|Clerk#000001786|0|unusual deposits sleep against the blithely| +4205|19618|O|228092.48|1997-10-07|4-NOT SPECIFIED|Clerk#000000843|0| instructions. slyly fluffy packages about the packages haggle along | +4206|467381|O|87213.47|1996-04-22|1-URGENT|Clerk#000002055|0|c, express packages. fluffily even deposits cajole. sheaves about the | +4207|514738|O|61464.72|1998-01-24|1-URGENT|Clerk#000003756|0|use slyly regular packages. final packages breach furiously. quickl| +4232|687139|O|230409.16|1998-01-30|3-MEDIUM|Clerk#000004367|0|ts. special dependencies use according to the slyly silent escapa| +4233|231233|F|100869.77|1992-07-16|5-LOW|Clerk#000004651|0|s. dinos cajole furiously against the express asymptotes. busy| +4234|575407|O|241971.65|1996-07-22|5-LOW|Clerk#000002792|0|requests; fluffily special accounts wake.| +4235|364909|O|143454.67|1995-08-31|5-LOW|Clerk#000001244|0|und the ironic sauternes. fluffily regular packages hang. special s| +4236|259540|O|122573.10|1995-06-20|2-HIGH|Clerk#000001195|0| bold accounts sleep regular, bold ideas| +4237|77779|O|187492.16|1997-08-02|2-HIGH|Clerk#000003068|0|ages across the blithely even packages are thinl| +4238|717217|P|197779.43|1995-05-20|3-MEDIUM|Clerk#000002453|0|eas. fluffily special requests after| +4239|259997|O|245821.32|1998-06-04|1-URGENT|Clerk#000003767|0|tect carefully-- ironi| +4264|253393|O|148595.89|1998-03-02|2-HIGH|Clerk#000002877|0|y special, special packages! silent| +4265|258716|O|165548.84|1996-01-13|1-URGENT|Clerk#000003816|0|nic packages wake fluffily. quickly express requ| +4266|484673|O|212788.10|1997-09-04|1-URGENT|Clerk#000001401|0|ites among the carefully dogged packages sleep sly| +4267|137150|O|201277.07|1995-09-22|1-URGENT|Clerk#000000869|0|al platelets detect furiously according to the regular requests. care| +4268|317218|F|220278.11|1994-09-04|5-LOW|Clerk#000002936|0|the theodolites are furiously foxes-- foxes haggle enticingly amo| +4269|469675|O|16519.21|1995-07-01|2-HIGH|Clerk#000002775|0|bold requests. closely stealthy packages affix furiously acros| +4270|56444|F|90320.97|1995-02-13|5-LOW|Clerk#000002525|0|y quickly final foxes. sheav| +4271|652477|O|36402.14|1996-02-22|5-LOW|Clerk#000003283|0|ic excuses haggle carefully across the final pinto bean| +4296|428494|O|1347.23|1997-03-21|1-URGENT|Clerk#000001058|0|ously unusual packages. even deposits cajole | +4297|180478|O|20933.13|1995-11-27|4-NOT SPECIFIED|Clerk#000002158|0|eodolites sleep even packages. reg| +4298|271201|F|130796.17|1992-01-19|5-LOW|Clerk#000003328|0|, regular packages cajole blithely according | +4299|292694|F|259396.90|1992-06-08|2-HIGH|Clerk#000002659|0|ithely pending theodolites x-ra| +4300|56611|P|84437.30|1995-03-21|2-HIGH|Clerk#000000266|0|after the special foxes doze above the furiously final r| +4301|436448|F|55801.85|1993-09-23|3-MEDIUM|Clerk#000000654|0|. express asymptotes hag| +4302|372994|F|210705.04|1994-12-02|1-URGENT|Clerk#000000698|0|e. slyly regular asymptotes nag slyly. slyly bold epitap| +4303|399971|O|6815.32|1996-03-27|4-NOT SPECIFIED|Clerk#000001255|0|pths are furiously aga| +4328|55514|F|163190.45|1992-03-22|5-LOW|Clerk#000001193|0|ickly regular ideas| +4329|22894|O|54226.66|1996-09-06|2-HIGH|Clerk#000002583|0|out the quickly regular instructions. | +4330|6754|O|151416.27|1996-11-08|5-LOW|Clerk#000003323|0|accounts. express dugouts nag furiously carefull| +4331|244433|P|115472.90|1995-04-29|2-HIGH|Clerk#000001044|0|lyly busy accounts are according to the enticingly| +4332|423769|F|151916.64|1993-07-17|1-URGENT|Clerk#000001279|0|he slyly regular deposits sleep | +4333|259742|F|13772.08|1992-07-05|2-HIGH|Clerk#000003205|0|leep. slyly special requests haggle. busy sentiments boost carefully above | +4334|474707|F|102153.21|1993-01-17|3-MEDIUM|Clerk#000000224|0|ely final theodolites are slyly. final, regular theodolites above the reque| +4335|635516|F|248261.49|1992-08-24|2-HIGH|Clerk#000003545|0|its across the slyly pending warthogs cajole acco| +4360|360523|F|132975.88|1992-01-01|4-NOT SPECIFIED|Clerk#000002181|0|ffily among the furiously regular packages. blithely bold deposits | +4361|36715|F|218393.97|1994-10-23|2-HIGH|Clerk#000001303|0|ounts. furiously ironic instructions boost slyly. unusual t| +4362|552565|F|328044.02|1992-06-23|1-URGENT|Clerk#000003354|0|. slyly unusual theodolites are. car| +4363|458810|F|341593.80|1992-01-04|3-MEDIUM|Clerk#000002798|0|ronic deposits sleep blith| +4364|455954|F|143183.16|1994-04-20|3-MEDIUM|Clerk#000000137|0|o beans. slyly ironic dependencies about the| +4365|463186|O|95768.80|1997-10-18|2-HIGH|Clerk#000003082|0| requests are carefully above| +4366|484303|O|197767.75|1996-09-12|2-HIGH|Clerk#000000473|0|lyly final ideas; slyly expre| +4367|655900|F|229372.48|1992-03-02|5-LOW|Clerk#000004467|0|riously along the slyly regular packages. final, final asymptotes haggle| +4392|206059|F|118277.32|1995-03-12|5-LOW|Clerk#000001932|0|etect according to the blithely ironic platelets. silently ironic foxe| +4393|462814|F|268264.40|1992-01-31|4-NOT SPECIFIED|Clerk#000003492|0|dolites are foxes-- ironic, ironic accounts cajole| +4394|263185|O|47889.92|1996-03-01|4-NOT SPECIFIED|Clerk#000002940|0|lar deposits sleep slyly after the carefully regular packages.| +4395|570407|O|18801.14|1996-02-25|4-NOT SPECIFIED|Clerk#000002204|0|eposits breach across the regular, i| +4396|330289|F|192457.96|1993-07-10|1-URGENT|Clerk#000001478|0|sly final platelets haggle slyly across the silently regular deposits. foxes w| +4397|392150|F|261991.90|1993-10-19|2-HIGH|Clerk#000004655|0|sly across the regular instructions. bold deposits haggle-- unusu| +4398|598303|F|111713.28|1993-08-22|2-HIGH|Clerk#000001604|0|deas. regular requests use carefully| +4399|414869|O|287440.03|1997-01-17|1-URGENT|Clerk#000004623|0| bold, final sauternes. blithely final braids against the care| +4424|691216|O|130312.91|1996-09-28|3-MEDIUM|Clerk#000002313|0|dencies. instructions promi| +4425|509629|O|152471.78|1998-06-24|2-HIGH|Clerk#000003037|0|ong the always final ideas. foxes use quickly: slyly even ideas sleep-- furio| +4426|319675|O|222618.26|1995-09-25|5-LOW|Clerk#000001507|0| unusual packages use| +4427|509429|O|68484.32|1998-01-22|4-NOT SPECIFIED|Clerk#000001432|0|uickly final package| +4428|707836|F|249166.18|1992-03-26|4-NOT SPECIFIED|Clerk#000002786|0|lyly along the regular depos| +4429|90803|O|231139.62|1997-05-28|2-HIGH|Clerk#000004277|0|c asymptotes wake furiously. final requests haggle furiously | +4430|613772|P|159931.70|1995-03-16|3-MEDIUM|Clerk#000002398|0|e against the fluffily special requests. quickly regular pinto bean| +4431|165347|F|204547.74|1994-09-01|3-MEDIUM|Clerk#000001871|0|al deposits above the quickly even excuses boost regular accounts. expres| +4456|231832|O|54516.88|1996-04-12|3-MEDIUM|Clerk#000004417|0| fluffily-- accounts are sl| +4457|144722|O|148458.24|1997-03-10|3-MEDIUM|Clerk#000002149|0|ithes maintain fluffily. ironic, final theodolites desp| +4458|87565|O|184129.53|1996-06-05|4-NOT SPECIFIED|Clerk#000000828|0|nal packages. slyly regular packages sleep slyly. blithely final de| +4459|188713|F|132708.04|1993-10-12|3-MEDIUM|Clerk#000001305|0|regular foxes alongside of| +4460|698372|O|68693.20|1997-11-14|3-MEDIUM|Clerk#000001257|0| silent ideas. final ideas under the regular packages use| +4461|34858|O|29344.68|1997-04-01|5-LOW|Clerk#000004870|0|uests. final asymptotes nag slyly final pint| +4462|76357|F|102732.06|1993-11-28|2-HIGH|Clerk#000003346|0|ut the furiously final de| +4463|53840|F|181194.10|1994-01-06|4-NOT SPECIFIED|Clerk#000002344|0|nusual excuses. ironi| +4488|376780|F|3732.61|1994-02-03|5-LOW|Clerk#000001858|0|jole slyly. even, express requests cajole above the regular accounts. d| +4489|258689|F|226786.82|1993-05-27|4-NOT SPECIFIED|Clerk#000001991|0|iously carefully pending packages. | +4490|34426|O|1217.95|1997-12-31|1-URGENT|Clerk#000003456|0|tions according to the grouches boost slyly across the blithe| +4491|333967|O|323251.99|1998-02-27|2-HIGH|Clerk#000001107|0|unts. fluffily regular packages wake stealthily. slyly| +4492|720835|F|166874.23|1994-10-11|2-HIGH|Clerk#000004640|0|nts use from the carefully regular dolphins? furiously ironic foxes | +4493|306910|F|31116.23|1992-06-10|4-NOT SPECIFIED|Clerk#000000071|0|ly. deposits doubt alongside of the regular, regular packages. special ideas| +4494|473660|O|124476.61|1997-10-28|5-LOW|Clerk#000003012|0|old dependencies are slyly express instructions. furiously unusual acco| +4495|289967|O|70837.36|1995-06-04|4-NOT SPECIFIED|Clerk#000001666|0|inal, special packages | +4520|725245|O|41194.80|1996-07-13|3-MEDIUM|Clerk#000003269|0|o the ironic platelets boost fluffily above t| +4521|182749|F|230254.27|1992-09-29|1-URGENT|Clerk#000003358|0|uests lose slyly beneath| +4522|188620|O|52065.47|1998-04-18|5-LOW|Clerk#000002209|0|, pending depths boost. deposits det| +4523|627737|F|74339.39|1994-11-17|4-NOT SPECIFIED|Clerk#000004596|0|eposits sleep blithely after the carefully ironic Tiresias. quickly regu| +4524|123844|F|11239.92|1994-08-19|5-LOW|Clerk#000001916|0|indle furiously according to the slyly ironic foxes.| +4525|172271|F|88638.69|1992-06-06|1-URGENT|Clerk#000002505|0|ully pending requests; even accounts x-ray| +4526|352115|O|35785.50|1995-06-19|5-LOW|Clerk#000001186|0|he blithely final asymptotes. furiously final deposits wake s| +4527|483739|F|104088.58|1994-05-05|1-URGENT|Clerk#000004567|0|fluffily ironic pain| +4552|184381|F|94625.54|1994-01-10|4-NOT SPECIFIED|Clerk#000000530|0|y final foxes. furiously close accounts| +4553|635621|F|131112.17|1993-07-28|2-HIGH|Clerk#000003586|0|en packages sleep above the blithely daring foxes. final pinto| +4554|618262|F|256941.81|1993-12-09|4-NOT SPECIFIED|Clerk#000002227|0|ependencies are across the unusual ideas. finally even deposits use c| +4555|621629|P|34657.51|1995-04-14|2-HIGH|Clerk#000004819|0|sts. blithely ironic deposits| +4556|213088|F|222434.31|1994-03-20|2-HIGH|Clerk#000000027|0| blithely regular accounts poach. carefully pending war| +4557|109240|F|30612.03|1993-03-14|1-URGENT|Clerk#000002033|0|p furiously. even packa| +4558|715339|O|263765.64|1998-05-29|2-HIGH|Clerk#000000463|0|alongside of the bold foxes. fin| +4559|194761|O|118136.43|1996-05-06|2-HIGH|Clerk#000004260|0|ackages. regular foxes are fluffily blithely ironic pinto| +4584|328747|O|96952.96|1998-06-04|5-LOW|Clerk#000001293|0|egular ideas among the ironic s| +4585|740392|F|129810.33|1993-02-14|5-LOW|Clerk#000002629|0| against the carefully even foxes. pending packages wake final | +4586|494438|F|124276.97|1992-05-31|4-NOT SPECIFIED|Clerk#000001854|0|against the blithely regular asymptotes haggle carefully above the furiously | +4587|9700|O|108461.88|1996-05-06|2-HIGH|Clerk#000004985|0|. slyly regular packages use quic| +4588|261772|O|68367.05|1997-10-11|4-NOT SPECIFIED|Clerk#000002928|0| are blithely final pinto beans. quickly ironic deposits should ca| +4589|82243|F|252766.21|1994-08-27|3-MEDIUM|Clerk#000004676|0|ake after the express requests. slyly even dependencies haggle| +4590|749302|F|39034.49|1995-05-04|3-MEDIUM|Clerk#000001620|0|s. platelets affix slyly around the even, regular orbits. furiously| +4591|261598|O|66835.24|1998-03-22|2-HIGH|Clerk#000002069|0|busily about the regular, special| +4616|153841|O|228999.84|1998-02-23|1-URGENT|Clerk#000002156|0|ly special dolphins. slyly bold packages against the| +4617|340690|O|9522.77|1998-05-18|1-URGENT|Clerk#000000498|0|ackages are quickly quickly ironic dependencies: careful| +4618|473686|O|352306.50|1996-09-21|1-URGENT|Clerk#000004173|0|uickly express braids alongside of the sly packages sleep | +4619|710666|F|129576.03|1994-09-08|2-HIGH|Clerk#000002534|0|ter the furiously even deposits use slyl| +4620|407509|F|127594.01|1992-10-25|4-NOT SPECIFIED|Clerk#000001302|0|ously pending platelets. quickly slow excuses detect regular, regular escap| +4621|741238|F|195242.92|1992-04-23|4-NOT SPECIFIED|Clerk#000001742|0|ily: asymptotes use slyly among the sly| +4622|467812|F|263411.56|1995-02-09|4-NOT SPECIFIED|Clerk#000002749|0|furiously ironic foxes sleep furiously ironic, spec| +4623|247817|O|191613.91|1995-07-18|4-NOT SPECIFIED|Clerk#000000696|0|oost regular accounts. slyly even dependencies will | +4648|305945|P|301867.02|1995-05-24|2-HIGH|Clerk#000002557|0|tegrate furiously final asymptotes. deposits hinder busily. furiousl| +4649|8572|F|32973.15|1995-05-17|5-LOW|Clerk#000004002|0|furiously final theodolites. carefully ironi| +4650|46105|O|122051.12|1997-10-14|5-LOW|Clerk#000000683|0|its print quickly sly requests. quickly regular platelets sleep. furiously | +4651|132739|F|33094.48|1993-12-04|2-HIGH|Clerk#000003947|0|boost carefully after the pending, final request| +4652|416311|F|233985.95|1993-06-28|4-NOT SPECIFIED|Clerk#000000527|0|yly special foxes. carefully final dependenci| +4653|156295|F|257684.11|1993-11-27|2-HIGH|Clerk#000002129|0| dependencies cajole carefully. unusual dolphins cajole after th| +4654|325927|O|298559.21|1996-06-17|3-MEDIUM|Clerk#000002031|0|tions. ironic, ironic notornis play blith| +4655|582844|F|313170.00|1992-05-01|3-MEDIUM|Clerk#000002374|0|y pending foxes are against the final| +4680|102317|O|250244.88|1996-07-13|3-MEDIUM|Clerk#000004330|0|? carefully special packages before the fluffily pe| +4681|635969|O|158651.61|1996-08-07|3-MEDIUM|Clerk#000004996|0|against the foxes. packages serve against the foxes. furiously express a| +4682|469532|O|31871.15|1996-05-15|4-NOT SPECIFIED|Clerk#000001150|0|g the quickly regular asymptotes. blithely ironic escapades are sl| +4683|658753|O|28393.96|1997-05-30|2-HIGH|Clerk#000004923|0|s accounts are never across the even ideas. care| +4684|137048|F|367027.54|1993-04-04|5-LOW|Clerk#000000251|0|en platelets. regular, eve| +4685|115282|F|162867.11|1993-05-08|1-URGENT|Clerk#000002525|0|furiously express accounts. | +4686|282073|F|329564.61|1994-06-22|1-URGENT|Clerk#000000751|0|yly foxes. even deposits wake above the quickly regular instruction| +4687|50771|O|124388.85|1996-08-31|5-LOW|Clerk#000002553|0|ipliers along the boldly| +4712|542152|F|322329.00|1994-08-31|5-LOW|Clerk#000004628|0|c theodolites. warthogs according to the carefully regular dependencies | +4713|182704|F|122904.45|1994-12-26|3-MEDIUM|Clerk#000004888|0|are. final asymptotes haggle carefully. express p| +4714|182641|O|50848.91|1998-05-05|4-NOT SPECIFIED|Clerk#000004824|0|nusual packages. slyly ironic pinto beans sleep ste| +4715|616630|O|155025.16|1995-11-13|2-HIGH|Clerk#000002477|0|ely even platelets wake. quickly final deposits wake blithely regular dolphin| +4716|183352|F|93462.38|1993-01-01|5-LOW|Clerk#000004763|0|packages. regular, quiet a| +4717|571429|F|148913.88|1992-03-20|5-LOW|Clerk#000000320|0|hely furiously ironic pinto bean| +4718|233584|F|268815.97|1994-12-02|5-LOW|Clerk#000001998|0|the slyly ironic hockey p| +4719|340094|O|293461.87|1997-09-30|3-MEDIUM|Clerk#000003557|0|deposits. dolphins cajole fluffily across the fluffily | +4744|206723|O|89811.80|1996-07-10|5-LOW|Clerk#000003458|0| final dugouts are. carefully pending packages are about the carefully | +4745|377159|F|298583.26|1993-06-28|4-NOT SPECIFIED|Clerk#000000693|0|, enticing requests| +4746|661237|F|233440.19|1992-01-31|3-MEDIUM|Clerk#000001037|0|xpress dependencies. unusual packages nag furious| +4747|646039|F|387171.46|1994-03-04|5-LOW|Clerk#000002557|0|g theodolites. furiously ironic packages wake quickly d| +4748|213415|O|300849.12|1997-07-07|5-LOW|Clerk#000000728|0|le along the even pinto beans. furiously special deposi| +4749|354196|F|146188.51|1992-12-05|3-MEDIUM|Clerk#000000289|0| regular ideas wake careful| +4750|198697|F|58669.92|1994-11-06|4-NOT SPECIFIED|Clerk#000000368|0|ickly even theodolites. blithely unusual packages cajole. furiousl| +4751|486316|O|100700.37|1996-04-09|3-MEDIUM|Clerk#000004573|0|regular pinto beans; regular deposits| +4776|5572|F|120657.11|1993-06-04|2-HIGH|Clerk#000004926|0|eve fluffily about the carefully regular e| +4777|629917|F|13405.64|1992-04-21|2-HIGH|Clerk#000000048|0|ounts use blithely blithely bold dependencies. carefull| +4778|740833|F|169384.28|1994-03-06|2-HIGH|Clerk#000004476|0|. final, even packages solve. foxes hinder furi| +4779|411101|O|227729.01|1996-09-20|5-LOW|Clerk#000003309|0|l ideas alongside of the ca| +4780|360403|P|214325.87|1995-04-07|4-NOT SPECIFIED|Clerk#000004197|0|xcuses. carefully express gifts boost quickly across | +4781|273152|O|101596.57|1995-11-09|1-URGENT|Clerk#000000709|0|grate carefully. slyly regular war| +4782|109085|F|21858.92|1993-01-28|5-LOW|Clerk#000002811|0|uriously regular accounts se| +4783|388219|F|95650.92|1992-06-22|5-LOW|Clerk#000003114|0|gle dolphins. furiously iro| +4808|544000|F|77091.79|1994-12-09|4-NOT SPECIFIED|Clerk#000001861|0|tes: carefully silent instructions sleep blithely along th| +4809|507919|O|235557.08|1998-02-12|4-NOT SPECIFIED|Clerk#000001667|0|ut the slyly regular instructions nag furiously reg| +4810|79063|O|216331.11|1998-06-01|4-NOT SPECIFIED|Clerk#000000121|0|silent, regular realms. fluffily regular requests nag carefully along| +4811|552325|O|174542.11|1995-07-13|4-NOT SPECIFIED|Clerk#000000896|0| final pains detect. blit| +4812|150851|O|45865.05|1997-07-21|4-NOT SPECIFIED|Clerk#000002019|0|le evenly doggedly bold packages. blithely special asymptotes hang. multiplier| +4813|342994|O|121173.20|1996-04-11|2-HIGH|Clerk#000002890|0|nusual deposits sleep fluffily slyly final accounts. furiously regu| +4814|175936|F|265700.12|1994-07-10|1-URGENT|Clerk#000001301|0| ironic requests haggle along the furio| +4815|443537|F|29347.78|1992-10-22|3-MEDIUM|Clerk#000003823|0|ounts will use; theodolites alongside of the furio| +4840|275645|O|146001.68|1995-08-08|4-NOT SPECIFIED|Clerk#000004376|0|o beans. thinly express packa| +4841|1126|F|82241.16|1993-01-08|3-MEDIUM|Clerk#000000323|0|ly ironic theodolites hang slyly | +4842|161635|O|123303.89|1995-12-22|3-MEDIUM|Clerk#000000025|0|ending, ironic pinto beans wake-- silent, careful dependencies s| +4843|95501|F|31189.47|1995-03-11|2-HIGH|Clerk#000004140|0|ole. quickly ironic ideas use fluffily regular ideas. pe| +4844|72751|O|143142.48|1997-05-06|3-MEDIUM|Clerk#000003186|0|ites. regular foxes sleep furiously after the quickly silent pinto bea| +4845|199456|O|127900.37|1997-05-06|4-NOT SPECIFIED|Clerk#000000987|0| carefully final dolphins among the quickly re| +4846|486100|O|171137.84|1995-11-14|3-MEDIUM|Clerk#000003173|0|nts at the pending dependencies wake carefully final dependencies. blithely ev| +4847|118364|F|259106.66|1993-11-01|4-NOT SPECIFIED|Clerk#000002173|0|te even deposits. furiously final accounts at the ironic, regular id| +4872|337099|O|251504.36|1996-01-28|1-URGENT|Clerk#000001427|0|cial, bold deposits are furiously among the furiously regular deposits. | +4873|112409|F|195390.45|1993-03-30|2-HIGH|Clerk#000003990|0|le deposits integrate c| +4874|745417|O|268722.63|1995-07-22|2-HIGH|Clerk#000003142|0| integrate quickly blithely even requests? care| +4875|196405|O|252564.91|1997-01-14|2-HIGH|Clerk#000000570|0|packages engage blithely pinto beans. special instructions affix fu| +4876|228296|O|29054.90|1995-04-24|3-MEDIUM|Clerk#000001930|0|es use blithely. furiously final ideas according to the slyly special pack| +4877|711757|O|72599.24|1995-09-12|2-HIGH|Clerk#000004198|0|ic requests haggle unusual instruc| +4878|746864|O|173745.65|1996-10-25|4-NOT SPECIFIED|Clerk#000003251|0|gifts above the slyly regu| +4879|530593|O|174986.97|1996-06-07|1-URGENT|Clerk#000001102|0|slyly special foxes use according to the blithely special packag| +4904|168191|O|280089.49|1997-04-24|3-MEDIUM|Clerk#000003124|0|gular accounts can wake carefully at the e| +4905|32326|O|31052.94|1997-11-01|3-MEDIUM|Clerk#000001836|0| ironic depths integrate slyly of the pending packages. silent,| +4906|286111|O|167210.99|1997-07-23|4-NOT SPECIFIED|Clerk#000001141|0|ing deposits wake against the furiously express deposi| +4907|393313|O|215034.23|1997-07-26|4-NOT SPECIFIED|Clerk#000003265|0|final somas are slyly. slyly silent instructions sleep. boldly pend| +4908|636778|O|100902.60|1995-09-20|4-NOT SPECIFIED|Clerk#000003504|0|usual pinto beans nag quickly regular pinto beans. bold| +4909|549319|F|18387.18|1992-08-27|3-MEDIUM|Clerk#000001063|0|lly along the blithely regular theodolite| +4910|649937|O|352796.69|1996-07-22|4-NOT SPECIFIED|Clerk#000000328|0|blithely unusual deposits. blithely final pinto beans haggle across the blithe| +4911|488762|F|68232.30|1992-07-03|2-HIGH|Clerk#000002249|0| slyly across the idly pending courts. attainments unwind. fur| +4936|615311|O|284942.80|1995-08-31|1-URGENT|Clerk#000004857|0| packages wake slyly-- quickly | +4937|530644|F|87733.37|1992-08-15|4-NOT SPECIFIED|Clerk#000004353|0|y pending theodolites abov| +4938|251143|O|246100.94|1995-12-20|2-HIGH|Clerk#000004809|0|yly quiet packages. ideas | +4939|684695|F|24765.32|1995-01-14|1-URGENT|Clerk#000003075|0|the slyly final accounts. i| +4940|416045|F|130019.76|1992-09-16|2-HIGH|Clerk#000004687|0|ons nag slyly slyly pending deposits. deposits haggle furiously about the | +4941|203540|F|119277.70|1994-08-04|3-MEDIUM|Clerk#000003653|0|quests affix according to the carefu| +4942|137896|F|160822.77|1992-02-18|3-MEDIUM|Clerk#000002558|0|sly unusual excuses. qui| +4943|101821|O|106820.42|1995-11-25|3-MEDIUM|Clerk#000001259|0| regular courts. furio| +4968|549635|O|216205.07|1996-01-01|1-URGENT|Clerk#000004272|0|r decoys wake slyly above the quickly regular requests. depos| +4969|711997|O|83434.82|1998-02-17|1-URGENT|Clerk#000002124|0|ully regular instructions. quickly pending foxes wake. furiously | +4970|282664|F|223101.89|1993-02-05|3-MEDIUM|Clerk#000003842|0|ly slyly regular requests. idly regular requests boost evenly care| +4971|227191|O|146775.59|1996-11-29|2-HIGH|Clerk#000004585|0|es. bold, regular req| +4972|147872|F|59099.61|1994-10-25|1-URGENT|Clerk#000004994|0|lithely. pending instructions use across the ironically even d| +4973|519904|F|155434.54|1992-06-07|3-MEDIUM|Clerk#000003165|0|ly regular requests haggle furiously express req| +4974|519125|O|92442.56|1996-02-28|3-MEDIUM|Clerk#000003693|0|odolites haggle slyly bold instructions. platelets c| +4975|170048|F|150733.92|1993-12-17|4-NOT SPECIFIED|Clerk#000001209|0| blithely about the daring packages. pending reque| +5000|492886|F|114238.74|1992-07-22|2-HIGH|Clerk#000002577|0|uffily blithely bold requests. blithely expres| +5001|181273|O|201739.81|1997-09-27|2-HIGH|Clerk#000000911|0|after the unusual, regular foxes. carefully unusual requests haggle sly| +5002|139646|P|334704.26|1995-03-15|5-LOW|Clerk#000004784|0|ests play between the enticing attainments; blithely unusual accounts af| +5003|270334|F|218275.88|1994-08-22|4-NOT SPECIFIED|Clerk#000000410|0|horses. bold requests use furiously. furiously regular asym| +5004|731104|O|3149.46|1995-08-15|5-LOW|Clerk#000000353|0|encies. final, ironic fo| +5005|412978|O|57117.02|1995-04-27|3-MEDIUM|Clerk#000002518|0|s are after the special, ironic deposits. carefully furious pinto beans are | +5006|408277|F|124736.86|1992-01-22|2-HIGH|Clerk#000004421|0|foxes wake furiously after the unusual dolphins. express platelets cajol| +5007|131215|O|110894.58|1998-05-03|2-HIGH|Clerk#000002366|0|e. furiously ironic platelets cajole slowly silent theod| +5032|317003|F|323320.98|1994-11-01|3-MEDIUM|Clerk#000003901|0|ests detect doggedly u| +5033|613138|O|220517.89|1998-02-02|4-NOT SPECIFIED|Clerk#000002899|0|ickly ironic platelets detect furiously final packages? furiously final| +5034|727334|O|116843.95|1997-10-20|3-MEDIUM|Clerk#000003220|0|inst the regular, ironic packages. depen| +5035|52411|F|104939.64|1992-03-30|3-MEDIUM|Clerk#000003932|0|sual deposits. carefully express accounts cajole behind the accounts. carefu| +5036|348013|O|229741.30|1996-01-01|4-NOT SPECIFIED|Clerk#000003056|0| final attainments. carefully silent deposits detect slyly fluffily re| +5037|548092|O|226383.87|1996-04-06|5-LOW|Clerk#000004661|0|haggle blithely across the unusual deposits. furious| +5038|272656|F|47117.07|1992-12-16|5-LOW|Clerk#000004755|0|lithely special theodolites s| +5039|1456|F|240976.17|1992-09-13|5-LOW|Clerk#000002148|0|s instructions snooze slyly. fluffily special accounts | +5064|466364|O|19200.91|1996-08-29|5-LOW|Clerk#000000011|0|nto beans! theodolites detect. bold, special ideas by the fluffily ex| +5065|665831|F|92124.68|1992-11-14|5-LOW|Clerk#000000083|0| packages maintain furiously across the furiously regular ideas; blithely ex| +5066|611053|O|265166.78|1996-10-24|1-URGENT|Clerk#000001075|0| silent packages. busily regular ideas cajole blithely across the sl| +5067|202000|F|159526.77|1994-09-23|5-LOW|Clerk#000000991|0|. carefully final courts about th| +5068|502210|F|316035.68|1993-01-14|2-HIGH|Clerk#000002064|0|es cajole for the bold deposits. slyly silent pa| +5069|110804|O|159809.03|1997-01-14|4-NOT SPECIFIED|Clerk#000001937|0|gainst the daringly regular ideas. furiously final foxes detect quic| +5070|29995|F|127754.42|1993-09-26|1-URGENT|Clerk#000004683|0|s. daring accounts x-ray quickly. fluf| +5071|120599|F|109696.17|1992-08-23|5-LOW|Clerk#000004464|0|osits boost furiously bold, regular pinto beans-- unusual plat| +5096|392800|F|88195.08|1992-10-11|1-URGENT|Clerk#000001118|0|ong the packages. frets integrate blithely alongside of the | +5097|289508|F|98460.69|1992-02-01|3-MEDIUM|Clerk#000003380|0|odolites haggle furiously according to the b| +5098|506161|F|263952.89|1995-01-29|4-NOT SPECIFIED|Clerk#000002612|0|s along the slyly regular asymptotes snooze | +5099|514606|F|70992.11|1992-12-10|1-URGENT|Clerk#000003956|0|e warhorses mold furiously carefully special deposits. furiously bold e| +5100|704182|F|93395.93|1992-05-25|1-URGENT|Clerk#000001330|0|. pending, regular foxes w| +5101|171823|F|110450.78|1994-04-10|2-HIGH|Clerk#000001043|0|onic excuses serve slyly carefully pendin| +5102|309721|O|79307.72|1995-11-03|1-URGENT|Clerk#000003536|0|platelets. blithely pending accounts was quickly a| +5103|478469|O|110794.46|1996-11-14|3-MEDIUM|Clerk#000003823|0|ironic deposits haggle special requests. reg| +5128|123499|O|59576.04|1995-12-31|3-MEDIUM|Clerk#000004462|0| deposits sleep blithely unusual f| +5129|394409|O|335549.60|1996-05-05|4-NOT SPECIFIED|Clerk#000002334|0|ress instructions wake. quickly sp| +5130|323677|O|228778.17|1996-11-05|1-URGENT|Clerk#000000200|0|packages wake carefully ironic pinto | +5131|259897|O|74328.88|1998-06-25|3-MEDIUM|Clerk#000000514|0|nstructions. bold foxes after the quickly bl| +5132|87250|F|285920.85|1993-10-25|2-HIGH|Clerk#000004675|0|he quietly even account| +5133|159190|F|158619.19|1994-10-28|4-NOT SPECIFIED|Clerk#000003637|0|es. fluffily enticing deposits are| +5134|239941|O|195244.91|1995-06-16|2-HIGH|Clerk#000004936|0| foxes kindle carefully regular, unusual d| +5135|663202|F|18900.79|1994-07-05|3-MEDIUM|Clerk#000000801|0| along the carefully regular requests sleep above the carefu| +5160|682388|O|278637.08|1996-04-29|2-HIGH|Clerk#000003172|0|ily pending instructions. | +5161|631675|O|102607.97|1997-07-08|4-NOT SPECIFIED|Clerk#000002968|0|, express foxes haggle. final foxes haggle blithely regular deposits. | +5162|310427|O|273199.06|1996-05-23|4-NOT SPECIFIED|Clerk#000000452|0|gular deposits nag slyly. car| +5163|330917|F|125379.69|1994-08-30|4-NOT SPECIFIED|Clerk#000000536|0|sts. ideas wake blithely blithely unusual pinto beans. special, unusual | +5164|455425|P|253154.26|1995-06-07|5-LOW|Clerk#000002636|0|pinto beans. slyly unusual ide| +5165|545573|O|117372.63|1997-12-04|4-NOT SPECIFIED|Clerk#000001693|0|fully regular courts. p| +5166|685051|F|300266.16|1994-01-19|1-URGENT|Clerk#000000646|0|bold packages grow sly| +5167|400225|O|48371.36|1997-02-14|3-MEDIUM|Clerk#000003061|0|lites haggle furiously slyly even exc| +5192|548266|O|116008.82|1996-09-23|3-MEDIUM|Clerk#000000883|0|ide of the blithely final accounts. pending, special pack| +5193|190339|F|158669.75|1994-05-06|2-HIGH|Clerk#000004427|0|nd busily even, final pa| +5194|269068|F|26583.42|1994-07-04|4-NOT SPECIFIED|Clerk#000002941|0|n platelets wake fluffily. blithely| +5195|452788|F|202598.98|1993-05-20|1-URGENT|Clerk#000004511|0|ously after the quickly special dolphins. fl| +5196|487651|O|98954.19|1995-11-08|3-MEDIUM|Clerk#000003485|0|eep blithely according to the| +5197|669502|O|189790.78|1998-07-02|1-URGENT|Clerk#000001486|0|iously ironic instructions haggle above the quickl| +5198|69841|O|238467.81|1996-08-30|5-LOW|Clerk#000003212|0|s snooze slyly. blithely bold deposits cajole b| +5199|67462|O|277825.51|1996-01-13|5-LOW|Clerk#000003428|0|lites haggle after the blithely bold accounts. permanently pend| +5224|565267|O|32130.93|1998-03-08|5-LOW|Clerk#000002563|0|ending dependencies. blithel| +5225|168860|O|221355.99|1997-08-29|2-HIGH|Clerk#000002266|0| accounts unwind carefully. car| +5226|17918|O|253290.77|1995-12-05|5-LOW|Clerk#000004547|0|arefully. furiously bold platelets after the even courts sleep about the a| +5227|388417|O|258469.65|1998-08-02|3-MEDIUM|Clerk#000004107|0|al warhorses wake furiously. final, re| +5228|121994|O|229725.75|1995-10-13|5-LOW|Clerk#000002982|0|ending ideas wake slyly. furiousl| +5229|591380|F|188769.17|1995-01-30|4-NOT SPECIFIED|Clerk#000003854|0|e after the ironic, final excuses. unusual ideas cajole fluffily against | +5230|307912|O|115727.64|1997-09-08|3-MEDIUM|Clerk#000002166|0|. quickly ironic theodolites nag among the asy| +5231|45284|F|75135.77|1992-02-07|4-NOT SPECIFIED|Clerk#000004483|0| the blithely even pinto beans boost carefully against the slyly p| +5256|580873|F|119197.24|1993-04-17|4-NOT SPECIFIED|Clerk#000002009|0|uriously pending excuses accordi| +5257|724618|O|96287.39|1998-03-19|4-NOT SPECIFIED|Clerk#000001942|0|press pinto beans: dolph| +5258|125761|F|141066.24|1994-07-03|2-HIGH|Clerk#000002187|0|usly even platelets. final, busy instructions use blit| +5259|149078|O|64398.39|1997-07-24|2-HIGH|Clerk#000002697|0|y final instructions wake blithely express pinto beans. furiousl| +5260|547531|F|214853.00|1992-04-08|5-LOW|Clerk#000004988|0|refully special dolphins breach | +5261|575554|F|159583.06|1992-11-15|1-URGENT|Clerk#000003323|0|ously pending requests. final requests use c| +5262|578918|F|229109.12|1994-07-04|4-NOT SPECIFIED|Clerk#000002936|0|egular deposits haggle carefully blithely pending deposits. even requ| +5263|110417|F|218223.30|1994-03-22|5-LOW|Clerk#000003741|0|y special ideas. blithely | +5288|262688|O|107997.00|1997-04-04|5-LOW|Clerk#000002600|0|re furiously quickly final deposits. fluffily pending packages run regul| +5289|487514|F|49746.93|1993-10-13|5-LOW|Clerk#000001994|0|t quickly slyly regular foxes. quickly ironic excuse| +5290|633613|F|47964.17|1994-09-03|4-NOT SPECIFIED|Clerk#000001068|0|eodolites cajole bl| +5291|604601|O|320194.62|1997-07-04|1-URGENT|Clerk#000000337|0|ng to the pending requests might sleep ironic foxes. fluffily unusual pac| +5292|515179|F|101950.54|1993-07-19|1-URGENT|Clerk#000002304|0|foxes are. furiously ironic pinto beans solve careful| +5293|598660|O|252234.03|1998-02-01|4-NOT SPECIFIED|Clerk#000000771|0|e closely ruthless packages. express accounts sl| +5294|411610|F|210646.86|1993-02-10|5-LOW|Clerk#000001136|0|egular accounts; regular, fina| +5295|654092|F|216244.31|1992-04-25|5-LOW|Clerk#000000564|0|blithely bold accounts. silent, special requests | +5320|558614|O|50801.29|1998-05-22|1-URGENT|Clerk#000002643|0|eposits doze bravely requests. slyly silent id| +5321|120382|O|203321.09|1996-11-09|5-LOW|Clerk#000002291|0|thely notornis. furiously regular ideas are. bl| +5322|503998|O|167104.83|1998-01-28|2-HIGH|Clerk#000003143|0|ctions sleep carefully throughout the quick| +5323|162982|F|91814.07|1994-09-30|4-NOT SPECIFIED|Clerk#000001834|0|, express requests should have to engage slyly express accounts. furiously fin| +5324|234250|F|230873.20|1992-03-22|1-URGENT|Clerk#000004704|0|nic hockey players use regularly above the carefully | +5325|284293|O|122022.11|1997-07-25|5-LOW|Clerk#000000305|0|ly blithe deposits are. quickly ironic excuses sleep | +5326|605668|F|14652.32|1993-05-11|3-MEDIUM|Clerk#000001712|0| requests detect quickly furi| +5327|459292|O|262348.88|1997-08-21|4-NOT SPECIFIED|Clerk#000003333|0|etect carefully near the furiously regular requests. furiously s| +5352|315292|O|240677.63|1996-12-12|1-URGENT|Clerk#000002897|0|refully unusual accounts. ironic depo| +5353|348712|O|99072.97|1997-09-28|4-NOT SPECIFIED|Clerk#000003705|0|ickly even requests. furiously| +5354|283625|F|98246.40|1994-02-27|2-HIGH|Clerk#000000337|0|mong the furiously regular deposits. even pinto beans wake blithely| +5355|627331|F|282987.21|1994-11-02|1-URGENT|Clerk#000000375|0|e slowly. requests use about the even, express accounts. quickly | +5356|42514|O|76535.11|1997-12-22|4-NOT SPECIFIED|Clerk#000001817|0|arefully regular pinto| +5357|532744|F|185453.79|1993-07-11|5-LOW|Clerk#000004630|0|xes. bravely blithe escapades among the | +5358|312781|F|81967.03|1993-05-24|1-URGENT|Clerk#000002790|0|ccounts grow. fluffily regula| +5359|150263|O|133864.74|1997-05-19|4-NOT SPECIFIED|Clerk#000004178|0|nstructions. carefully final packages wake caref| +5384|207151|O|257270.37|1997-02-14|1-URGENT|Clerk#000003491|0|eodolites. pinto beans integrate slyly pending foxes. quickl| +5385|60763|F|7170.61|1993-12-24|2-HIGH|Clerk#000001486|0|osits sublate furiously unusual deposits. ironic instructions wake| +5386|481031|O|216562.02|1998-07-08|4-NOT SPECIFIED|Clerk#000003774|0|dolites sleep stealthily expres| +5387|425431|F|246976.92|1993-03-16|5-LOW|Clerk#000004442|0|oss the slyly final theodolites sleep quickly furiously final acc| +5388|462641|O|153574.94|1995-08-31|2-HIGH|Clerk#000000929|0| integrate slowly requests. pending, silent foxes must have t| +5389|350741|O|217380.49|1995-11-23|1-URGENT|Clerk#000002395|0|eodolites hinder despite the blith| +5390|650230|F|274664.54|1993-08-02|3-MEDIUM|Clerk#000000257|0| foxes are unusual accounts. pending waters could have to boo| +5391|160529|F|286851.32|1992-08-25|3-MEDIUM|Clerk#000000263|0|lets unwind slyly. fluffily bold requests are. special excuses sublate quic| +5416|251257|O|310440.75|1997-09-07|1-URGENT|Clerk#000004768|0|lms cajole above the sl| +5417|360710|O|35917.30|1997-03-21|4-NOT SPECIFIED|Clerk#000002276|0|r deposits boost carefully about the always final packages.| +5418|194942|O|266326.94|1998-02-01|2-HIGH|Clerk#000002363|0| among the quickly express requests boost specia| +5419|384095|F|40708.34|1994-06-12|4-NOT SPECIFIED|Clerk#000004643|0|blithely final packages solve. ironic, special accounts sleep quickly. f| +5420|224812|O|188053.17|1996-10-16|4-NOT SPECIFIED|Clerk#000003925|0|tegrate blithely against the ideas. quickly final asymptotes sleep quickly! e| +5421|639578|O|266127.71|1998-06-05|5-LOW|Clerk#000004992|0| impress furiously blithely bold accounts. furiously regular requests arou| +5422|372676|O|70287.97|1996-03-29|5-LOW|Clerk#000004401|0|e fluffily even asymptotes sleep furiously near the enticing foxes. pl| +5423|312736|O|175312.07|1995-12-29|3-MEDIUM|Clerk#000001022|0|unts haggle slyly according to the furiously even pinto b| +5448|137432|F|186915.42|1992-08-30|2-HIGH|Clerk#000001964|0|slow instructions. carefully regular accounts must hav| +5449|567593|O|113904.47|1997-04-09|3-MEDIUM|Clerk#000004469|0|ts are blithely. never silent reques| +5450|276712|O|101568.63|1996-11-19|2-HIGH|Clerk#000003534|0|eas are furiously ruthlessly speci| +5451|696661|O|17456.80|1995-11-29|4-NOT SPECIFIED|Clerk#000004380|0|ole. unusual, unusual instructions wa| +5452|502376|F|136687.58|1995-02-23|1-URGENT|Clerk#000003098|0|sits. regular requests sleep regular de| +5453|674969|O|205214.08|1996-11-17|4-NOT SPECIFIED|Clerk#000002761|0| the carefully regular packages. blithely fin| +5454|447283|F|146321.13|1993-06-16|2-HIGH|Clerk#000003301|0|s the special foxes. blithely furious instructions according to| +5455|215426|O|103124.83|1997-12-17|2-HIGH|Clerk#000003498|0|nding instructions are blithely slyly pending| +5480|399325|F|26924.61|1992-05-24|4-NOT SPECIFIED|Clerk#000002666|0|nag slyly after the bold ideas. evenly ironic dep| +5481|435709|O|227977.36|1996-01-20|3-MEDIUM|Clerk#000001161|0|y even requests lose blithely| +5482|700844|O|46971.38|1996-12-26|5-LOW|Clerk#000001175|0|sly express deposits according to the slyly regular accounts s| +5483|320719|O|30057.10|1997-02-26|5-LOW|Clerk#000002231|0|riously express theodo| +5484|65033|F|115669.57|1994-02-02|1-URGENT|Clerk#000001573|0|ests. unusual deposits integrat| +5485|257128|F|223368.98|1994-12-05|1-URGENT|Clerk#000003263|0|s-- slyly pending foxes above the furiously even warthogs affix furiousl| +5486|24106|O|230524.56|1996-09-07|4-NOT SPECIFIED|Clerk#000003926|0| thin pinto beans. fluffily even deposits wake quickly | +5487|142108|F|232492.42|1992-06-10|4-NOT SPECIFIED|Clerk#000000918|0|iously after the ideas. quickly careful accounts sleep carefully express c| +5512|385633|O|301132.39|1996-02-18|1-URGENT|Clerk#000000099|0|d accounts hinder carefully along the blithely pending deposits. a| +5513|550996|F|76018.09|1993-08-31|4-NOT SPECIFIED|Clerk#000003720|0|lyly even platelets. slyly ironic foxes are against the always final packa| +5514|331676|F|144068.78|1994-03-14|1-URGENT|Clerk#000001308|0|ts. fluffily ironic pinto beans across the special, silent accounts integrate | +5515|463954|O|387202.04|1998-07-07|1-URGENT|Clerk#000003515|0|ng to the pending theodolites. | +5516|651844|O|274080.10|1996-05-18|1-URGENT|Clerk#000002127|0|ckly regular deposits cajo| +5517|281182|O|79377.35|1995-07-29|3-MEDIUM|Clerk#000000075|0|fully according to | +5518|63322|F|44311.90|1993-05-10|4-NOT SPECIFIED|Clerk#000003609|0|to beans are. blithely regular theod| +5519|749969|O|198157.81|1996-02-08|1-URGENT|Clerk#000000923|0|ously final ideas. blithely final f| +5544|213233|F|24987.30|1994-11-25|3-MEDIUM|Clerk#000002625|0|e slyly accounts. slyly ironic theodolites wake| +5545|296570|F|149969.80|1994-02-06|5-LOW|Clerk#000003903|0|sleep quickly foxes. sauternes would wake quickly above the brave, ironic theo| +5546|686780|F|155318.03|1994-06-08|1-URGENT|Clerk#000003504|0|uctions! carefully pending accounts was | +5547|210028|O|41590.87|1997-03-16|2-HIGH|Clerk#000003714|0|y pending decoys. fluffily even dependencies slee| +5548|425407|O|4802.33|1995-08-02|3-MEDIUM|Clerk#000004879|0|blithely regular packages wake after the caref| +5549|43687|O|255368.01|1996-02-14|2-HIGH|Clerk#000001277|0|eep alongside of the slyly regul| +5550|718520|O|138769.59|1996-12-29|3-MEDIUM|Clerk#000003934|0|nag slyly around the blithely even accounts. foxes cajol| +5551|402826|F|125491.43|1993-05-29|3-MEDIUM|Clerk#000002937|0|ecial packages wake among the fluffily re| +5576|45655|F|41691.75|1993-04-18|1-URGENT|Clerk#000000825|0|ic dinos above the slyly final ideas wake| +5577|55079|F|208881.02|1992-11-06|4-NOT SPECIFIED|Clerk#000000669|0|inal requests detect alongside | +5578|201767|F|210779.26|1992-01-08|4-NOT SPECIFIED|Clerk#000003868|0| deposits. pending, regular platelets are according to the quick| +5579|337831|F|49415.02|1994-06-20|2-HIGH|Clerk#000001664|0|tegrate slowly. slyly regular packages x-ray furiously ironic theodolites. b| +5580|407221|F|106939.17|1992-03-18|3-MEDIUM|Clerk#000001617|0|yly; slyly enticing accounts ca| +5581|389086|F|210634.30|1994-06-25|2-HIGH|Clerk#000002578|0|slyly. furiously regular ideas wake. carefully unusual dependencies hagg| +5582|110492|O|100438.21|1995-08-11|5-LOW|Clerk#000004387|0|al accounts. carefully silent packages wake | +5583|27091|O|228522.84|1996-02-23|4-NOT SPECIFIED|Clerk#000004440|0| wake. pending asymptotes wake blithely blithely regular| +5608|55069|O|53288.68|1997-01-28|5-LOW|Clerk#000001990|0| after the furiously special | +5609|23749|F|89161.32|1993-10-26|1-URGENT|Clerk#000001669|0|. carefully pending pinto beans along the fluffily regular foxes sleep qu| +5610|129301|O|127972.02|1995-10-07|5-LOW|Clerk#000003114|0|refully final accounts. car| +5611|408562|P|258888.92|1995-02-22|5-LOW|Clerk#000001485|0|d foxes eat carefully. dolp| +5612|433186|F|234822.45|1994-03-02|1-URGENT|Clerk#000001609|0|about the slyly even theodolites. even instru| +5613|286910|F|164379.39|1993-08-31|3-MEDIUM|Clerk#000003903|0|ding instructions det| +5614|331438|F|86125.99|1993-12-31|5-LOW|Clerk#000001208|0|furiously among the deposits. furiously flu| +5615|228229|F|49293.91|1993-04-08|5-LOW|Clerk#000003530|0|ween the even accounts. unusual, unusual foxes wake carefully acc| +5640|316898|F|173306.07|1992-02-20|3-MEDIUM|Clerk#000000819|0| requests cajole quickly slyly unusual pinto beans. slyly idle | +5641|353254|O|234932.76|1996-01-02|3-MEDIUM|Clerk#000000331|0|ng to the slyly bold accounts nod quickly along the furiously fi| +5642|133951|O|223678.33|1996-05-16|3-MEDIUM|Clerk#000000652|0|sleep furiously. final pains print furiously up the| +5643|544931|O|109137.98|1997-03-23|3-MEDIUM|Clerk#000003089|0|usly bold requests haggle carefully ironic, final pains. rut| +5644|392111|F|145421.37|1992-03-17|2-HIGH|Clerk#000000598|0| carefully regular theodolites boost quickly according to the s| +5645|693676|O|216434.18|1997-10-09|5-LOW|Clerk#000004586|0|blithely regular ideas into the regular pinto beans kindle ca| +5646|601003|O|30272.92|1998-03-06|1-URGENT|Clerk#000000362|0|frets sleep. blithely pending| +5647|28549|O|184966.86|1997-11-10|1-URGENT|Clerk#000001273|0| packages-- furiously quick dependencies according| +5672|542657|O|202564.26|1996-05-27|4-NOT SPECIFIED|Clerk#000004063|0|affix carefully across the ironic asymptotes. regular, express gifts afte| +5673|420061|O|160407.24|1995-11-24|2-HIGH|Clerk#000000039|0|the carefully even requests. carefully silent packag| +5674|191987|F|244607.74|1992-06-08|4-NOT SPECIFIED|Clerk#000004337|0|y? blithely even requests wake idly permanent platelets. pack| +5675|219718|F|100610.58|1994-12-13|3-MEDIUM|Clerk#000001145|0|s; furiously final theodolites haggle| +5676|550141|F|270994.54|1992-06-23|4-NOT SPECIFIED|Clerk#000004787|0|ggle above the final, special escapades. | +5677|215027|F|99679.45|1993-08-13|1-URGENT|Clerk#000002501|0|ckages wake above the accounts. furio| +5678|446432|F|255991.49|1992-07-29|5-LOW|Clerk#000004302|0|ounts. blithely regular packages nag within the | +5679|179938|F|111432.48|1993-12-13|5-LOW|Clerk#000000197|0|ctions: carefully even courts sleep alongside of the blithely regular pa| +5704|211552|O|32287.53|1995-10-20|2-HIGH|Clerk#000004623|0|y ironic pinto beans integ| +5705|529897|F|2299.70|1992-03-12|1-URGENT|Clerk#000003234|0|ole furiously. final pinto beans nag after the b| +5706|447745|P|100875.22|1995-04-21|4-NOT SPECIFIED|Clerk#000003695|0| pending packages are quickl| +5707|466736|O|10772.47|1996-06-21|5-LOW|Clerk#000000573|0|e permanently unusual dolphins. regular, r| +5708|174310|F|141759.52|1993-10-16|2-HIGH|Clerk#000003848|0|l ideas thrash fluffily slyly ironic deposits. q| +5709|125062|O|206677.36|1995-10-27|3-MEDIUM|Clerk#000002778|0|lyly quick requests sleep slyly | +5710|398677|F|233052.15|1993-09-28|3-MEDIUM|Clerk#000004645|0|yly special requests across the express accounts cajole carefully blit| +5711|53941|O|53760.24|1995-09-09|1-URGENT|Clerk#000002448|0| wake quickly! instructions are.| +5736|573286|O|17818.50|1996-01-14|5-LOW|Clerk#000000467|0|ously even requests poach enticingly express, final pinto beans. unusua| +5737|691951|F|126231.60|1993-11-23|4-NOT SPECIFIED|Clerk#000003060|0|packages sleep furiously. ironic theodol| +5738|88907|O|89501.64|1998-01-18|3-MEDIUM|Clerk#000003681|0|slyly close accounts. idly express pinto b| +5739|255764|O|195851.74|1998-02-06|4-NOT SPECIFIED|Clerk#000002895|0|eas. regular theodolites are furiously carefully unusual account| +5740|359354|O|27660.98|1997-01-27|3-MEDIUM|Clerk#000003433|0|ronic dependencies detec| +5741|651812|O|251218.40|1996-05-26|5-LOW|Clerk#000000215|0|cial platelets-- dogged accounts sleep furiously.| +5742|491027|O|233878.04|1995-11-04|4-NOT SPECIFIED|Clerk#000004344|0|. even requests sleep car| +5743|436915|F|64931.41|1994-12-28|5-LOW|Clerk#000004488|0|final requests wake ironic requests. bl| +5768|698545|F|85039.05|1993-04-19|2-HIGH|Clerk#000000574|0|inal, bold ideas haggle quickly after the ruthlessly even gifts. fi| +5769|692416|O|108350.44|1996-08-03|5-LOW|Clerk#000000914|0|e, ironic hockey players sleep sl| +5770|416953|O|221283.56|1995-10-15|3-MEDIUM|Clerk#000000466|0| deposits. ironic, regular theodolites mold above the ideas. bold depths are | +5771|475879|F|188807.65|1994-06-05|4-NOT SPECIFIED|Clerk#000000560|0|arefully ironic gifts integrate blithely blithely slow accounts. foxes prom| +5772|69989|O|80317.64|1997-01-21|3-MEDIUM|Clerk#000004617|0|st wake after the even deposits. requests across the pending orbits sle| +5773|299527|O|342948.25|1996-08-18|4-NOT SPECIFIED|Clerk#000002699|0|lites-- requests cajole sl| +5774|123820|O|409054.54|1996-11-26|1-URGENT|Clerk#000002811|0|ress platelets; fluffily even ideas are ironic deposits. final, pending deposi| +5775|535247|F|139093.33|1993-11-23|5-LOW|Clerk#000002284|0|quests nag. carefully special platelets wake slyly. furi| +5800|394069|F|263823.34|1992-06-07|5-LOW|Clerk#000001209|0|iously furiously regular de| +5801|606049|F|144899.68|1993-02-08|2-HIGH|Clerk#000000702|0|lent deposits hinder furiously regular, express packages. slyl| +5802|112045|O|67328.02|1997-07-04|2-HIGH|Clerk#000000772|0|iously ironic packages alongside of the blithely stealthy courts eat | +5803|629773|O|11703.24|1998-06-13|4-NOT SPECIFIED|Clerk#000004305|0|ing to the ironic foxes. fi| +5804|562799|O|202472.04|1996-03-08|5-LOW|Clerk#000002425|0|theodolites: brave, ironic asymptotes haggle according to| +5805|706552|O|120302.38|1995-07-16|3-MEDIUM|Clerk#000004651|0| even packages nag quickly bold deposits? quickly final instruc| +5806|254258|O|197777.05|1995-07-14|2-HIGH|Clerk#000002087|0|ickly unusual ideas. even, special instru| +5807|552850|O|50308.43|1998-04-26|3-MEDIUM|Clerk#000003001|0|quests. packages along the brave deposits are ir| +5832|733270|O|119409.19|1996-05-16|3-MEDIUM|Clerk#000003169|0|al theodolites boost under the pending accounts. accounts d| +5833|37651|F|225968.35|1994-12-18|2-HIGH|Clerk#000001275|0| the ironic, bold packages. stealthily| +5834|539878|F|5589.14|1994-04-11|2-HIGH|Clerk#000004828|0| special deposits; furiously regular account| +5835|215320|O|169570.72|1996-06-18|5-LOW|Clerk#000004957|0|ronic packages after the bold accounts cajole boldly blithely even requests. | +5836|110357|F|136703.76|1994-06-17|3-MEDIUM|Clerk#000001963|0| regular instructions use s| +5837|15020|O|295492.61|1996-04-29|1-URGENT|Clerk#000002069|0|ar theodolites. slowly special foxes sleep carefully. carefull| +5838|425086|O|230904.90|1995-12-28|2-HIGH|Clerk#000001529|0|ly bold requests. special accounts haggle furiously regular,| +5839|656264|F|188670.71|1992-11-25|3-MEDIUM|Clerk#000000882|0|equests hinder. ironic requests am| +5864|314371|F|232093.35|1993-03-24|4-NOT SPECIFIED|Clerk#000001278|0|lyly bold packages. blithely speci| +5865|628399|O|85200.59|1998-04-02|1-URGENT|Clerk#000004330|0|ounts are. special pinto beans about the express pin| +5866|721643|O|260751.55|1996-05-28|4-NOT SPECIFIED|Clerk#000000675|0|ular patterns according to the | +5867|387397|F|187418.44|1992-10-05|1-URGENT|Clerk#000003519|0|tions about the furio| +5868|204593|O|170190.74|1996-08-19|4-NOT SPECIFIED|Clerk#000001259|0|ng the theodolites. fluffil| +5869|579457|O|186434.01|1995-07-07|1-URGENT|Clerk#000001599|0|ecial excuses nod according to the special deposits. bold, even instructions| +5870|159799|O|37771.81|1997-12-17|5-LOW|Clerk#000003062|0|lithely express deposits. slyly special requests sleep | +5871|730793|O|23276.37|1998-04-02|4-NOT SPECIFIED|Clerk#000001769|0|dolites around the fluffily bold dependencies cajole slyly slyly regular pinto| +5896|431099|F|110261.41|1992-03-06|2-HIGH|Clerk#000001185|0|ndle slyly fluffily pending packages. slyly pending deposits are carefully a| +5897|469013|O|59907.06|1995-11-30|5-LOW|Clerk#000002992|0|ounts. special, pending deposits boost| +5898|195862|O|51651.11|1997-07-31|3-MEDIUM|Clerk#000001514|0|c foxes. asymptotes hang furiously wi| +5899|70376|F|212358.05|1993-01-08|3-MEDIUM|Clerk#000003744|0|f the quickly final courts. | +5900|44722|O|17803.80|1996-02-24|2-HIGH|Clerk#000001512|0|haggle carefully carefully pending dependencies--| +5901|129769|F|104272.76|1993-08-09|4-NOT SPECIFIED|Clerk#000002044|0| carefully ironic re| +5902|20500|O|69767.16|1996-09-30|3-MEDIUM|Clerk#000002788|0|, final packages. requests cajole fluffily among the slyly regul| +5903|277691|O|58754.16|1996-02-25|2-HIGH|Clerk#000004769|0|ter the final, express acc| +5928|646393|P|39290.57|1995-05-04|2-HIGH|Clerk#000003794|0|refully. furious, pending accounts haggle slyly against the regul| +5929|163549|F|250857.87|1992-06-22|1-URGENT|Clerk#000003349|0|symptotes. fluffily regular requests haggle quickly-- deposits are. pending| +5930|9542|O|97887.75|1996-03-07|1-URGENT|Clerk#000000311|0|l requests. even decoys integrate against | +5931|617989|F|46719.29|1992-06-22|4-NOT SPECIFIED|Clerk#000002342|0| solve furiously pending accounts. quickly even theodolites wake fur| +5932|525488|F|154094.27|1992-09-24|4-NOT SPECIFIED|Clerk#000003875|0|ounts haggle according to the even packages. unusual deposits cajole | +5933|621241|F|92021.94|1994-12-08|5-LOW|Clerk#000000800|0|s haggle against the closely silent epitaphs. pea| +5934|433108|F|221283.22|1994-02-23|3-MEDIUM|Clerk#000000248|0| blithely enticing accounts detect blithely express requests. qu| +5935|483590|F|92699.45|1992-12-06|1-URGENT|Clerk#000002289|0|ual requests. pinto beans are blithely. final accounts na| +5960|692233|O|80647.79|1998-03-18|1-URGENT|Clerk#000004309|0|uickly even deposits integrate | +5961|340627|F|92505.42|1993-05-09|1-URGENT|Clerk#000000125|0|the carefully bold packages; busy, | +5962|154417|F|216887.78|1993-04-22|5-LOW|Clerk#000003745|0|nal, careful ideas. ironic ideas against the | +5963|274783|O|177767.87|1996-10-09|5-LOW|Clerk#000003247|0|fluffily regular warhorses sleep| +5964|524872|F|95867.22|1994-04-22|2-HIGH|Clerk#000004011|0|theodolites nag carefully. blithe| +5965|740276|F|174067.89|1992-10-09|4-NOT SPECIFIED|Clerk#000000300|0|ajole blithely pending packages. ca| +5966|59959|F|168537.42|1994-01-08|3-MEDIUM|Clerk#000001882|0|express requests will have to use. quickly final pains use blithely fluff| +5967|472684|O|124539.74|1998-02-27|1-URGENT|Clerk#000002284|0|w packages. slyly regula| +5992|394060|O|277667.76|1997-05-31|2-HIGH|Clerk#000001080|0|st the ironic theodo| +5993|465211|O|359012.30|1998-01-01|3-MEDIUM|Clerk#000002302|0|ress deposits. carefully pending instructions are slyly above the deposits. | +5994|23779|O|273711.00|1997-06-13|3-MEDIUM|Clerk#000004619|0|quests. express deposits cajole furiously quickly expres| +5995|634196|F|70310.90|1995-01-08|5-LOW|Clerk#000003457|0|thely bold ideas. carefully fina| +5996|674350|F|284265.24|1993-01-18|1-URGENT|Clerk#000004757|0|al packages. final, regular deposits nag quickly bold, unusual packages. slyl| +5997|543731|F|78105.23|1994-05-29|1-URGENT|Clerk#000000109|0|s nag furiously idly| +5998|474220|F|90371.66|1992-03-12|3-MEDIUM|Clerk#000001556|0|xpress pinto beans. quickly final accounts lose along the| +5999|711458|O|115148.26|1997-02-24|4-NOT SPECIFIED|Clerk#000001916|0|s cajole blithely: packages| +6024|223256|O|80141.59|1997-04-19|1-URGENT|Clerk#000004968|0|odolites cajole along the regular pinto beans-- furiously bold packages ab| +6025|9181|O|223563.31|1996-11-19|1-URGENT|Clerk#000002863|0|besides the final packages are blithely express instructions.| +6026|523870|F|183816.38|1993-08-22|5-LOW|Clerk#000002796|0|y according to the slyly regular deposits. pending instructions ar| +6027|403684|O|60401.04|1995-10-05|3-MEDIUM|Clerk#000002378|0|al ideas. slyly pending requests are alongside of the furiously bold dep| +6028|203035|F|16108.56|1993-12-20|4-NOT SPECIFIED|Clerk#000003500|0|e regular, bold ideas. blithely pending requests sleep carefully blithely| +6029|628135|O|153115.61|1998-03-17|2-HIGH|Clerk#000002148|0|ts nag regular foxes. furiously e| +6030|32671|F|108554.06|1993-11-30|1-URGENT|Clerk#000000214|0|nic asymptotes. pearls nag | +6031|87410|F|91733.72|1993-07-25|1-URGENT|Clerk#000003774|0|luffily bold platelets x-ray carefully bold requests. blithely final pinto be| +6056|594542|F|64873.49|1994-09-19|4-NOT SPECIFIED|Clerk#000002381|0|heodolites haggle furiously according to the iron| +6057|209657|O|57977.52|1995-10-15|5-LOW|Clerk#000002425|0|ly about the pinto beans.| +6058|188933|F|41978.48|1993-11-02|3-MEDIUM|Clerk#000000068|0|nic platelets. blithely final decoys lose blithely? c| +6059|631054|F|150468.77|1994-11-05|5-LOW|Clerk#000001624|0|the fluffily pending requests. decoys| +6060|345107|F|259242.66|1994-04-06|3-MEDIUM|Clerk#000004003|0|-ray. silent deposits use carefully. furiously even requests hagg| +6061|460603|O|145473.54|1996-02-23|5-LOW|Clerk#000000151|0|posits boost. packages detect requests. slyly f| +6062|591454|O|198602.81|1998-03-29|4-NOT SPECIFIED|Clerk#000003782|0|es kindle blithely around the quickly ironic pac| +6063|51617|O|116144.51|1997-06-09|2-HIGH|Clerk#000003523|0|ing requests cajole carefully. furious requests wake| +6088|511159|O|1148.52|1996-08-04|2-HIGH|Clerk#000002124|0|e special requests. thinly unusual packages wake enticingly un| +6089|522736|P|173368.24|1995-05-29|5-LOW|Clerk#000001572|0|eans. express requests are. furiously special instructions will h| +6090|99044|F|377518.33|1992-08-20|5-LOW|Clerk#000000473|0|sy asymptotes sleep. stealthily final requests nag furiously accor| +6091|366184|O|166681.89|1995-05-15|2-HIGH|Clerk#000003890|0|d the slyly regular pinto beans. pending deposits sleep | +6092|696037|F|162292.07|1994-03-10|5-LOW|Clerk#000003762|0|ding ideas cajole carefully slyly ironic asymptotes. qu| +6093|513343|F|129361.70|1993-05-20|1-URGENT|Clerk#000002917|0| quickly ironic platelets run | +6094|495157|O|163334.66|1998-02-21|5-LOW|Clerk#000001149|0|lly ironic accounts haggle at the finally even accounts; frays use ruthl| +6095|99187|F|161552.47|1993-08-29|5-LOW|Clerk#000004934|0|ously ironic, regular frays. silent foxes haggle among t| +6120|511570|O|135538.90|1998-07-27|5-LOW|Clerk#000002257|0|e slyly furiously r| +6121|690703|O|91344.84|1995-10-24|5-LOW|Clerk#000000896|0|riously ironic instructions about the furiously regular t| +6122|111886|O|151750.79|1996-10-18|4-NOT SPECIFIED|Clerk#000001001|0|foxes sleep. carefully ironic deposits alongside of the final c| +6123|206435|O|288608.89|1998-05-07|2-HIGH|Clerk#000001401|0|ar asymptotes. regular accounts hang pending hockey players. bold, pending exc| +6124|36472|O|222197.06|1996-01-11|2-HIGH|Clerk#000004829|0|s engage quick packages. fluffily bold ideas| +6125|223892|O|146086.19|1995-12-16|2-HIGH|Clerk#000001374|0|sleep fluffily above the quickly final p| +6126|198208|O|51305.61|1997-09-25|5-LOW|Clerk#000002997|0|s. blithely regular tithes breach even packages. slyly speci| +6127|520319|O|95574.41|1997-06-18|4-NOT SPECIFIED|Clerk#000004681|0| requests haggle platelets. final instructions a| +6152|740183|F|92964.99|1994-09-07|5-LOW|Clerk#000001873|0|ites. carefully pending ideas| +6153|2362|O|185417.56|1995-10-13|4-NOT SPECIFIED|Clerk#000002784|0|y even excuses. blithely express deposits about the sheaves use carefull| +6154|670741|F|148695.40|1992-06-15|5-LOW|Clerk#000000688|0|nal, final deposits haggle ironic ideas. ca| +6155|639541|F|295118.93|1992-04-06|1-URGENT|Clerk#000004176|0|al deposits after the slyly express accounts wake accordin| +6156|509942|O|80836.08|1995-11-21|2-HIGH|Clerk#000003728|0| dependencies. quickly special deposits about the b| +6157|337765|F|173526.34|1992-08-10|4-NOT SPECIFIED|Clerk#000002074|0|haggle carefully. bravely special asymptotes maintain. blithel| +6158|41152|F|56009.29|1995-01-14|3-MEDIUM|Clerk#000004384|0|uffily bold packages. slyly ironic instructions boost accoun| +6159|140116|F|132943.88|1992-10-28|3-MEDIUM|Clerk#000002887|0| haggle blithely. unusual requests wake blithely. asymptotes abou| +6184|646928|F|259518.96|1993-06-02|5-LOW|Clerk#000000456|0|efully special deposits. blithely bold deposits cajole fluffil| +6185|163003|O|269799.40|1996-08-13|4-NOT SPECIFIED|Clerk#000003060|0| requests sleep slyly pending,| +6186|582328|O|53424.58|1997-03-19|3-MEDIUM|Clerk#000003952|0|final instructions. quickly silent gifts are even deposits. ironic req| +6187|427421|O|311902.45|1996-12-26|2-HIGH|Clerk#000003049|0|ing theodolites could have to detect | +6188|152374|F|307268.78|1993-01-05|3-MEDIUM|Clerk#000000046|0|kages. blithely ironic requests hinder | +6189|423910|O|242210.98|1996-11-21|3-MEDIUM|Clerk#000003269|0| ironic accounts. bold n| +6190|388177|F|266801.65|1992-10-19|3-MEDIUM|Clerk#000004073|0|s. ruthlessly unusual grouches breach a| +6191|558523|F|159979.63|1994-11-20|4-NOT SPECIFIED|Clerk#000002045|0|ld waters run slyly furiously even pearl| +6216|92932|F|61602.03|1993-01-28|1-URGENT|Clerk#000004729|0| patterns. regular, regular deposits solve quietly un| +6217|385615|F|98014.42|1992-06-04|5-LOW|Clerk#000004999|0|y regular theodolites. sometimes even ideas| +6218|250165|O|62746.66|1997-03-29|1-URGENT|Clerk#000004500|0|ress requests cajole slyly above the furiously pending accoun| +6219|749291|O|93047.98|1997-06-21|4-NOT SPECIFIED|Clerk#000003975|0|uests. quickly pending foxes are fluf| +6220|67678|F|190187.62|1993-10-09|3-MEDIUM|Clerk#000000294|0|p carefully across the ideas: slowly even r| +6221|443410|F|157239.21|1994-05-04|1-URGENT|Clerk#000000088|0|ounts. final, final requests | +6222|390919|O|156213.42|1995-09-20|2-HIGH|Clerk#000004141|0|ites: packages use above the regular foxes. enticingly expre| +6223|155378|O|90416.56|1995-08-19|5-LOW|Clerk#000004516|0|y express requests sleep ironically pending deposits: regular, dog| +6248|687250|F|139634.64|1993-06-19|1-URGENT|Clerk#000002585|0|even foxes: furiously bold | +6249|591530|F|97974.31|1994-03-23|1-URGENT|Clerk#000004220|0|yly quickly even deposits. furiously regular packages along the blithely un| +6250|581498|O|306545.32|1998-04-02|3-MEDIUM|Clerk#000002676|0|pending gifts sleep along the slyly careful packages. carefully ironic asymp| +6251|727573|F|120701.38|1993-11-07|1-URGENT|Clerk#000000893|0|s thrash across the quickly pending th| +6252|311299|O|66759.19|1997-09-12|1-URGENT|Clerk#000000109|0| furiously according to the ideas. slyly pending accounts cajole amon| +6253|719044|O|273979.27|1997-01-30|5-LOW|Clerk#000004397|0|regular packages wake slyly slyly special pac| +6254|189971|F|122708.89|1995-01-22|2-HIGH|Clerk#000004626|0|regular, regular excuses | +6255|77092|F|101665.74|1992-12-24|2-HIGH|Clerk#000000940|0|refully slow instructions w| +6280|431134|O|230978.53|1998-02-15|5-LOW|Clerk#000004430|0|ithely special, ironic instructions. pint| +6281|297199|P|180107.97|1995-03-10|3-MEDIUM|Clerk#000002291|0|fily. special, pending dinos bo| +6282|747266|F|154136.74|1994-01-27|2-HIGH|Clerk#000002587|0|e special, special requests detect quickly regular theodolites. fluffily sl| +6283|546961|F|176989.13|1993-03-15|5-LOW|Clerk#000002501|0|ironic pinto beans hinder after the | +6284|11194|F|136924.45|1994-08-29|1-URGENT|Clerk#000001708|0|beyond the fluffily bold requests. slyly final asymptotes sleep furiou| +6285|608584|F|318595.32|1994-02-10|5-LOW|Clerk#000002283|0| packages. blithely ironic packages promise| +6286|708829|O|185435.14|1997-10-08|2-HIGH|Clerk#000002587|0| place of the slyly final frays. reques| +6287|269281|O|15563.41|1995-06-26|2-HIGH|Clerk#000003112|0|aggle alongside of the| +6312|295648|O|244222.61|1998-05-05|2-HIGH|Clerk#000000689|0| carefully final pinto beans. furiously dogged| +6313|204475|F|69118.38|1992-06-19|3-MEDIUM|Clerk#000004248|0| packages. express instructions after the bold, fin| +6314|99269|F|121204.76|1993-09-03|5-LOW|Clerk#000004422|0|s. fluffily final packages haggle fluffily. deposits around the| +6315|409216|O|85900.02|1995-09-22|1-URGENT|Clerk#000002215|0|uffily even asymptote| +6316|189100|O|223007.95|1996-09-07|1-URGENT|Clerk#000001775|0| the bold, pending deposits. | +6317|432634|F|127478.58|1992-07-18|1-URGENT|Clerk#000003350|0| even packages use around the furiously ironic requests.| +6318|749632|F|303451.17|1992-12-22|1-URGENT|Clerk#000001336|0|s wake carefully around the unusual foxes. r| +6319|542072|O|34576.28|1995-03-20|5-LOW|Clerk#000001264|0|ans. accounts boost about the express packages. | +6344|338566|F|285745.45|1992-09-16|3-MEDIUM|Clerk#000000809|0| ideas. quickly ironic requests nag alongside of the furi| +6345|8099|O|28926.00|1996-02-22|1-URGENT|Clerk#000004671|0|sits cajole slyly carefully special theodolites. furiously | +6346|369470|F|176953.92|1994-01-20|3-MEDIUM|Clerk#000001471|0|l platelets. silently unusual i| +6347|431107|O|95004.57|1998-03-03|3-MEDIUM|Clerk#000004461|0| sleep across the quickly p| +6348|595432|F|69924.72|1993-04-25|1-URGENT|Clerk#000002241|0|along the furiously silent requests.| +6349|142868|P|123551.73|1995-04-21|5-LOW|Clerk#000000757|0|y busy deposits kindle according to the even packages. car| +6350|424244|O|316060.72|1996-02-15|4-NOT SPECIFIED|Clerk#000004876|0|bold ideas. foxes sh| +6351|5641|F|91739.33|1992-10-03|1-URGENT|Clerk#000001881|0|iously slyly thin packages. slyly regular accounts detect along| +6376|285763|O|277500.84|1996-04-22|4-NOT SPECIFIED|Clerk#000002305|0|tructions. furiously silent requests haggle enticingly express instru| +6377|563497|F|101657.25|1994-11-20|4-NOT SPECIFIED|Clerk#000000757|0|e slyly. quickly final theodolites sleep slyly. fluffily pending pac| +6378|427616|F|71999.14|1994-07-09|1-URGENT|Clerk#000004257|0|fluffily regular ideas among the caref| +6379|428449|F|262251.38|1993-02-09|2-HIGH|Clerk#000000269|0|packages about the deposits doubt carefully regular d| +6380|168568|F|227856.81|1992-10-01|1-URGENT|Clerk#000002590|0|furiously even foxes doubt carefully even pearls. even accounts according| +6381|370217|F|81588.45|1994-08-18|4-NOT SPECIFIED|Clerk#000004652|0|ending accounts. depths wake finally bold accounts. blit| +6382|231172|O|247768.98|1998-05-23|2-HIGH|Clerk#000004377|0|ng accounts are carefully. ironic requests wake furiou| +6383|278293|O|156648.40|1996-12-03|3-MEDIUM|Clerk#000002313|0|daringly regular packages about the blithely special packages affix| +6408|246736|O|223109.53|1998-05-05|2-HIGH|Clerk#000000655|0| blithely regular foxes. ironic ideas sleep-- requests affix slyly after the| +6409|117766|O|270432.94|1997-04-17|3-MEDIUM|Clerk#000001269|0|xcuses sleep carefully within the special deposits. carefully regular account| +6410|36016|F|168424.86|1993-07-05|1-URGENT|Clerk#000001842|0|lly brave requests wake alongside of the fluffily even requests. fl| +6411|57031|F|152478.73|1993-04-01|3-MEDIUM|Clerk#000004084|0| carefully pending instr| +6412|748840|F|137955.52|1992-01-30|2-HIGH|Clerk#000004888|0| blithe deposits. slyly i| +6413|1294|F|223521.90|1994-10-20|2-HIGH|Clerk#000002643|0|lar requests sleep always ironic packages. regular requests after the qui| +6414|741937|F|6874.45|1994-12-13|1-URGENT|Clerk#000000019|0|s detect according to the foxes. unusual dependencies cajole| +6415|210823|O|158825.76|1996-09-09|2-HIGH|Clerk#000003912|0|lly regular deposits according to the furiously stealthy dolphins thrash furio| +6440|286850|F|93647.94|1994-12-22|4-NOT SPECIFIED|Clerk#000000271|0|arefully regular dependencies. furiously unusual foxes a| +6441|77890|O|134420.33|1997-08-31|1-URGENT|Clerk#000000412|0|final foxes cajole alongside of the quickly regu| +6442|315152|F|200291.43|1992-06-13|1-URGENT|Clerk#000002035|0|nts. final, even deposits grow along the fluffily pending | +6443|252151|P|216577.76|1995-04-18|5-LOW|Clerk#000004870|0|ckly even ideas. special, un| +6444|387451|F|93972.01|1992-04-23|5-LOW|Clerk#000001341|0|s wake along the blithely even packages-- blithel| +6445|372590|O|74971.78|1998-04-26|1-URGENT|Clerk#000002189|0|arefully slyly express accounts! regular escapades was-| +6446|370085|F|6595.73|1993-10-25|1-URGENT|Clerk#000002632|0|xpress courts. carefully slow excuses x-ray against the quickly | +6447|263869|O|60794.07|1997-07-13|4-NOT SPECIFIED|Clerk#000000847|0|ccounts eat furiously express instructions. carefully final dol| +6472|77342|F|212619.20|1993-06-03|5-LOW|Clerk#000004454|0|deas are furiously within the ideas. furiously regular | +6473|130595|F|210798.84|1992-06-16|3-MEDIUM|Clerk#000000705|0|uickly; regular, final instructions believe.| +6474|396253|O|244394.23|1998-01-15|3-MEDIUM|Clerk#000003139|0|ges. requests should have to sleep blithely across the | +6475|567643|P|230853.72|1995-05-16|1-URGENT|Clerk#000002876|0|jole fluffily ironic deposits. furiously final theodolites cajo| +6476|346774|O|182868.60|1995-05-28|2-HIGH|Clerk#000003652|0|refully above the foxes. even deposits sleep carefully. blithely ironic deposi| +6477|706294|F|84934.92|1992-06-23|2-HIGH|Clerk#000000907|0|es nag slyly busy packages. slyly ironic instructions above the final, regula| +6478|400345|O|54739.22|1998-01-07|3-MEDIUM|Clerk#000001350|0|requests affix about| +6479|338431|F|212515.52|1994-02-15|5-LOW|Clerk#000003182|0|omise carefully final, regular pint| +6504|730762|O|36890.66|1996-07-24|2-HIGH|Clerk#000003620|0|ely silent ideas boost. slyly| +6505|642148|F|174920.34|1994-09-12|1-URGENT|Clerk#000004609|0|ounts grow furiously after the ironic, ironic accounts. quickly regular | +6506|66539|F|43951.52|1992-01-15|2-HIGH|Clerk#000002381|0|d theodolites along the furiously fi| +6507|68756|F|161237.44|1995-01-23|5-LOW|Clerk#000003027|0|ounts impress slyly. ironic asymptotes nag after | +6508|567016|O|170168.36|1997-08-13|2-HIGH|Clerk#000003501|0|lyly about the furiously final dependencies. express, unu| +6509|328069|F|92785.98|1992-07-08|1-URGENT|Clerk#000001358|0|refully even deposits | +6510|583841|O|44160.43|1997-03-01|2-HIGH|Clerk#000001181|0|arefully. pinto beans are special| +6511|363571|O|235678.48|1995-10-21|4-NOT SPECIFIED|Clerk#000004612|0|ss deposits. carefully unu| +6536|277261|F|44569.60|1994-06-18|5-LOW|Clerk#000002578|0|yly even deposits. packages sleep across the silent packages. packag| +6537|168349|O|238024.70|1997-10-15|4-NOT SPECIFIED|Clerk#000002589|0|boost slyly across the ironi| +6538|439309|O|29707.44|1995-08-31|2-HIGH|Clerk#000001699|0|s are slyly carefully | +6539|464230|O|175869.91|1996-09-13|3-MEDIUM|Clerk#000000146|0|. furiously pending requests boost slyly express requests. i| +6540|38651|F|199389.30|1994-11-19|5-LOW|Clerk#000004301|0|the furiously final packages. fluffily| +6541|93376|F|233295.24|1994-11-10|2-HIGH|Clerk#000000842|0|lites alongside of the quickly ironic requests ar| +6542|364708|O|198946.31|1997-12-31|2-HIGH|Clerk#000001807|0|ages! carefully express escapades a| +6543|627803|F|162726.12|1993-09-05|4-NOT SPECIFIED|Clerk#000004602|0| accounts are pending deposits. carefully regular deposits above the car| +6568|474326|F|286260.80|1992-02-05|2-HIGH|Clerk#000002520|0|ic requests solve after the final courts. idly final ideas haggle thro| +6569|246622|O|310295.52|1995-09-10|4-NOT SPECIFIED|Clerk#000002238|0|ial accounts nag slyly special, special packages; accounts use | +6570|466582|O|287798.38|1995-07-17|1-URGENT|Clerk#000001358|0|ggle carefully express platelets. furiously bold sentiments integrate furio| +6571|560752|O|157622.71|1995-08-16|5-LOW|Clerk#000002914|0|past the slyly final cou| +6572|34360|F|124695.34|1993-11-08|2-HIGH|Clerk#000001286|0|aggle carefully according to the bold, special requests. slyly re| +6573|729469|F|335115.39|1992-07-20|3-MEDIUM|Clerk#000001489|0|ely. quiet hockey players sleep after the final warthogs. final e| +6574|667598|F|252601.75|1994-05-05|3-MEDIUM|Clerk#000004834|0|ons haggle blithely slyly ironic epitaphs. | +6575|316915|F|115773.13|1992-03-06|4-NOT SPECIFIED|Clerk#000003659|0|uctions haggle blithely expre| +6600|609130|P|20881.04|1995-03-17|1-URGENT|Clerk#000003037|0|equests integrate busily bold, pending instru| +6601|130396|F|86389.99|1994-03-23|2-HIGH|Clerk#000003272|0|ic foxes use. ironic notornis haggle platelets. | +6602|55336|O|120743.14|1997-10-17|3-MEDIUM|Clerk#000004011|0|r multipliers. slyly final platelets wake f| +6603|749524|O|88831.88|1996-04-17|5-LOW|Clerk#000000582|0|iously pending packages cajole furiously. fluffily pending d| +6604|235736|O|265642.36|1997-08-11|2-HIGH|Clerk#000001038|0|. evenly silent asy| +6605|502640|F|219088.29|1992-03-08|5-LOW|Clerk#000001725|0|t quickly thinly regular p| +6606|605230|P|116439.88|1995-02-23|2-HIGH|Clerk#000002382|0| carefully even asymptotes. fluffily pending grouches affix slyly| +6607|595711|O|162836.82|1996-02-01|5-LOW|Clerk#000000253|0|s. carefully bold platelets thrash c| +6632|336754|F|27369.02|1995-03-13|5-LOW|Clerk#000004599|0|ckages. blithely unusual deposits around the frets poach furiously| +6633|291527|F|195906.13|1992-04-22|3-MEDIUM|Clerk#000001434|0|ts believe carefully final platelets. even packages could have to are furi| +6634|686641|F|220557.94|1993-09-11|2-HIGH|Clerk#000004191|0|se according to the carefully ironic foxes! furiously final pack| +6635|99010|O|212442.51|1997-10-17|4-NOT SPECIFIED|Clerk#000004288|0| slowly pending ideas detect above the blithely unusual ideas. slyly final ac| +6636|546053|O|308896.97|1996-07-07|1-URGENT|Clerk#000003577|0|usual courts cajole f| +6637|497014|F|184933.22|1993-01-12|4-NOT SPECIFIED|Clerk#000003101|0|dolites. carefully ironic accounts across| +6638|554635|O|176650.04|1995-07-17|5-LOW|Clerk#000001822|0| quickly silent instructi| +6639|729673|O|111944.85|1998-05-05|3-MEDIUM|Clerk#000004630|0|l packages cajole carefully special pack| +6664|337859|O|268648.26|1998-07-11|5-LOW|Clerk#000000135|0|tions. pending packages integrate furiously around the pending requests. s| +6665|132244|O|96072.50|1996-09-19|1-URGENT|Clerk#000001695|0|xes against the furiously ironic ideas sleep | +6666|358022|F|118742.62|1994-01-11|2-HIGH|Clerk#000000496|0|usly even theodolite| +6667|14425|F|141184.66|1993-03-11|5-LOW|Clerk#000002963|0|heodolites against the deposits wake quickly above the slowly express ex| +6668|161510|O|300147.46|1998-06-03|2-HIGH|Clerk#000004170|0|even requests. regular notornis boost. slyly regul| +6669|245735|F|116691.90|1992-03-04|4-NOT SPECIFIED|Clerk#000002064|0| slyly. ironically ironic theodolites sleep carefully about the slyly even | +6670|556303|O|134183.78|1997-09-25|3-MEDIUM|Clerk#000004867|0|into beans integrate slyly ironic deposits. carefully| +6671|264044|O|43007.71|1997-01-15|1-URGENT|Clerk#000000569|0|inal courts. carefully even packages nag furiously alongside of the | +6696|22268|F|189069.42|1994-02-14|3-MEDIUM|Clerk#000001969|0|. slyly express foxes are slyly carefully even packages. express, unusual co| +6697|748363|F|85572.94|1994-04-12|4-NOT SPECIFIED|Clerk#000002331|0| quietly. carefully even ideas haggle furiously according to t| +6698|205903|F|226845.13|1994-08-23|2-HIGH|Clerk#000002101|0| ironic, special dolphins unwind after the qui| +6699|85907|O|170410.11|1996-10-10|1-URGENT|Clerk#000002287|0|aggle quickly according to the bol| +6700|84785|F|91611.59|1994-02-12|3-MEDIUM|Clerk#000001596|0|boldly silent courts wake. careful| +6701|716323|F|15328.22|1993-12-28|5-LOW|Clerk#000000190|0|lar accounts nod fluffily accordin| +6702|216146|F|168589.51|1993-11-11|1-URGENT|Clerk#000000729|0|arefully even instructions? blithely ironic sentiments un| +6703|501256|F|33371.52|1994-10-19|4-NOT SPECIFIED|Clerk#000000959|0|s integrate about the regular accounts. packages haggle| +6728|580591|O|92779.69|1998-07-12|2-HIGH|Clerk#000000193|0|s wake furiously. quickly even asy| +6729|471764|F|10656.59|1992-08-06|2-HIGH|Clerk#000004219|0|uickly final theodoli| +6730|687013|F|116137.21|1994-08-02|1-URGENT|Clerk#000003619|0|fully bold deposits. blithely regular instructions across the furiousl| +6731|359779|O|243557.45|1996-11-19|5-LOW|Clerk#000001569|0|ily regular ideas. furiously even | +6732|284864|F|176078.06|1992-10-02|2-HIGH|Clerk#000000980|0|ly silent packages until the quickly specia| +6733|458248|O|40192.62|1995-12-20|1-URGENT|Clerk#000004568|0|en, regular packages are | +6734|11530|O|249582.94|1997-06-14|1-URGENT|Clerk#000003048|0|ckages cajole according to the carefully even cou| +6735|276571|F|38378.62|1993-04-29|2-HIGH|Clerk#000003920|0|odolites use blithely across the blithely special pac| +6760|545375|F|119637.08|1994-05-20|5-LOW|Clerk#000000029|0|n pinto beans. packages cajole fluffily about the | +6761|361102|F|144250.87|1993-01-19|3-MEDIUM|Clerk#000004737|0|s wake blithely carefully pending requests. bold, fi| +6762|38915|P|316665.33|1995-04-10|2-HIGH|Clerk#000001278|0|es are slyly asymptotes. stealthy deposits across| +6763|28468|O|30341.20|1998-06-16|5-LOW|Clerk#000002805|0| the pinto beans. blithely final deposits haggle sly| +6764|704836|O|122602.41|1995-10-21|1-URGENT|Clerk#000002993|0|egular asymptotes serve quickly expr| +6765|646516|F|210324.49|1995-03-09|1-URGENT|Clerk#000000792|0|pinto beans alongside of the blithely ironic ideas wak| +6766|718324|F|20241.58|1992-06-02|3-MEDIUM|Clerk#000002473|0|re slyly alongside of the furiously express de| +6767|98131|P|161328.17|1995-06-09|2-HIGH|Clerk#000003523|0|packages? special, ironic pac| +6792|17305|O|89101.39|1995-07-17|3-MEDIUM|Clerk#000000187|0|quests are fluffily slyly silent ideas. slyly final | +6793|574375|F|153423.64|1992-07-31|3-MEDIUM|Clerk#000002395|0|al pinto beans. regular theodolites cajole regularly among the ironic foxes| +6794|245587|F|256240.80|1993-10-31|4-NOT SPECIFIED|Clerk#000000918|0| excuses affix carefully furiously s| +6795|322682|O|110009.75|1995-09-05|5-LOW|Clerk#000002052|0|above the regular instructions. even platelets against the furiously e| +6796|62354|O|315553.07|1995-08-21|5-LOW|Clerk#000002857|0|requests. slyly express packages cajole quickly regular, even requests. qu| +6797|229324|F|30307.70|1994-06-19|2-HIGH|Clerk#000002348|0| slyly regular theodolites sleep. silent re| +6798|715498|F|53852.35|1994-12-25|2-HIGH|Clerk#000002918|0|fully express foxes haggle slyly. final, pending attainments are regular pack| +6799|600782|F|48257.94|1992-05-18|5-LOW|Clerk#000004798|0| unusual platelets against the slyly regular dolphins integrate permanent| +6824|77719|O|27251.67|1996-09-14|5-LOW|Clerk#000004491|0|ly across the furiously ironic deposits. deposits detect never final | +6825|446275|O|149654.15|1995-06-24|2-HIGH|Clerk#000001175|0|ts along the even excuses impress ab| +6826|537071|O|295544.32|1995-10-27|3-MEDIUM|Clerk#000002017|0|dolites nag quickly furiously final req| +6827|294718|F|199534.82|1992-10-09|5-LOW|Clerk#000004102|0| cajole. theodolites breach fluffily. carefully silent instr| +6828|307657|O|122148.09|1995-12-31|4-NOT SPECIFIED|Clerk#000004539|0| bold packages after the furiously fur| +6829|281320|F|167441.80|1994-11-18|1-URGENT|Clerk#000003211|0| evenly furiously even asymptotes. slyly express dependencies cajole blithely.| +6830|130252|F|89609.25|1994-12-02|3-MEDIUM|Clerk#000002010|0|gle furiously above the bold instructions. accounts sleep furious| +6831|644077|F|271780.64|1993-03-22|4-NOT SPECIFIED|Clerk#000002266|0|ven requests are carefully. accounts cajole furiously against the theodo| +6856|246223|F|247219.49|1994-02-02|5-LOW|Clerk#000000260|0|haggle blithely unusual ideas. carefully express theodolite| +6857|519599|O|154409.19|1996-01-01|4-NOT SPECIFIED|Clerk#000004458|0| wake slyly. foxes wak| +6858|648895|F|80614.25|1994-06-27|1-URGENT|Clerk#000003309|0|ses haggle between the ca| +6859|215987|F|167153.32|1995-02-21|3-MEDIUM|Clerk#000003225|0|l, silent instructions above the carefully regular theodolites boost bl| +6860|84157|O|171766.01|1996-11-15|3-MEDIUM|Clerk#000002947|0|the blithely unusual hockey players believe furiously above the regular| +6861|672766|F|163128.09|1993-05-13|1-URGENT|Clerk#000002646|0|instructions poach sly| +6862|145448|O|64328.39|1996-08-29|4-NOT SPECIFIED|Clerk#000001991|0|lithely final packages aff| +6863|289780|O|76700.35|1996-09-29|2-HIGH|Clerk#000000848|0|e even deposits. blithely even deposits are slyly | +6888|575929|O|220037.73|1997-09-09|2-HIGH|Clerk#000001202|0|dependencies are slyly regular requests. ironic a| +6889|106990|O|152786.33|1995-09-20|4-NOT SPECIFIED|Clerk#000002103|0|o beans use along t| +6890|429278|O|223825.43|1998-06-07|4-NOT SPECIFIED|Clerk#000000412|0|lly express sheaves use blithely pending | +6891|617290|F|85299.72|1993-02-20|4-NOT SPECIFIED|Clerk#000003707|0|e slyly regular packages. | +6892|19852|P|192640.10|1995-05-11|1-URGENT|Clerk#000001936|0|e special, even packages.| +6893|628871|O|56478.94|1996-01-26|3-MEDIUM|Clerk#000004480|0|ly ironic accounts cajole fluffily across the slyly re| +6894|430879|F|260200.36|1993-09-18|3-MEDIUM|Clerk#000001653|0| brave pinto beans; pending acco| +6895|509684|F|116333.42|1992-09-11|4-NOT SPECIFIED|Clerk#000004001|0|s. furiously regular a| +6920|499441|O|120892.07|1995-10-13|2-HIGH|Clerk#000003205|0|er the quickly final instructions h| +6921|100007|F|205508.71|1992-10-11|2-HIGH|Clerk#000004590|0| express gifts boost across the blithely special depths. furiou| +6922|53410|F|169166.64|1993-12-19|1-URGENT|Clerk#000004642|0|uriously final accoun| +6923|632488|F|116325.17|1992-01-21|4-NOT SPECIFIED|Clerk#000001928|0|blithely regular deposits. epitaphs nag fl| +6924|462002|F|310740.46|1993-06-04|4-NOT SPECIFIED|Clerk#000002936|0|ng to the slyly regular pinto beans-- blithely pending foxe| +6925|102464|P|298143.53|1995-03-23|3-MEDIUM|Clerk#000001872|0|lyly express instructions are. d| +6926|96955|F|187218.16|1993-12-21|3-MEDIUM|Clerk#000003199|0|c frets around the blithely pending instructio| +6927|513938|O|122761.63|1996-10-01|4-NOT SPECIFIED|Clerk#000004759|0|ully special pinto beans are c| +6952|741106|F|234743.43|1992-08-31|1-URGENT|Clerk#000003434|0|es cajole outside the | +6953|503732|O|83368.70|1995-12-06|1-URGENT|Clerk#000000861|0|kly final requests wake furiously about the ac| +6954|207553|F|35058.33|1992-03-14|3-MEDIUM|Clerk#000004016|0|nts along the slyly pending packages wake ideas?| +6955|60296|F|39111.11|1994-03-02|1-URGENT|Clerk#000000182|0|es about the evenly regular deposits eat blithely packages. daring| +6956|136250|F|32916.44|1994-06-02|3-MEDIUM|Clerk#000003363|0|l pinto beans. slyly close dolphins sleep blithely among the pinto | +6957|194641|O|45700.46|1996-04-29|2-HIGH|Clerk#000003902|0| sleep against the slyly regular requests| +6958|578926|O|140151.11|1996-01-22|4-NOT SPECIFIED|Clerk#000002035|0|lyly. pending, regular r| +6959|244382|F|375514.93|1993-11-02|1-URGENT|Clerk#000001353|0|thes are. ruthless, regular dugouts sleep blithely after the furiousl| +6984|327892|O|115633.58|1995-06-26|1-URGENT|Clerk#000001587|0|according to the instructions. foxes cajole slyly acr| +6985|622715|F|209057.46|1993-03-11|2-HIGH|Clerk#000001860|0|es. dependencies integrate boldly. asy| +6986|462583|F|197991.05|1992-10-14|4-NOT SPECIFIED|Clerk#000001108|0|ully regular theodolites haggle furiously special deposits. bol| +6987|114595|O|82360.76|1998-06-29|1-URGENT|Clerk#000002562|0|. gifts wake furiously requests. silent accounts nag fluffily according to t| +6988|744311|F|71542.33|1995-01-16|2-HIGH|Clerk#000004149|0|gular accounts cajole furiou| +6989|373117|O|89950.36|1995-06-18|3-MEDIUM|Clerk#000002230|0|egular deposits. bold acco| +6990|208684|O|176678.63|1998-03-28|3-MEDIUM|Clerk#000001276|0|ave asymptotes affix-- slyly express packages sleep according| +6991|340495|P|193210.86|1995-05-02|1-URGENT|Clerk#000003622|0| the regular, final pa| +7016|180587|P|175062.99|1995-03-12|2-HIGH|Clerk#000003574|0|n. slyly ironic accounts sleep furiously ex| +7017|621319|O|27472.73|1996-02-02|2-HIGH|Clerk#000002110|0|carefully against the final, ironic deposits. furiously special platelets | +7018|233891|F|41564.99|1995-04-14|4-NOT SPECIFIED|Clerk#000003275|0|sts integrate furiously according to the regular, even platel| +7019|254554|F|135162.36|1994-04-26|5-LOW|Clerk#000000720|0|ckages are. quickly final requests sleep after the final, thi| +7020|263710|O|109247.30|1996-08-14|4-NOT SPECIFIED|Clerk#000002983|0|ffily regular accounts. | +7021|400466|O|87648.11|1998-04-11|4-NOT SPECIFIED|Clerk#000001960|0|ilent accounts cajole slyly u| +7022|116303|F|21088.20|1992-01-07|1-URGENT|Clerk#000003373|0|furious deposits. furiously unusual packages ar| +7023|191087|O|245935.63|1996-11-28|3-MEDIUM|Clerk#000004821|0|ckly express requests. blithely ironic packages wake blithely a| +7048|87070|O|214419.88|1996-09-29|1-URGENT|Clerk#000000640|0|o beans. even, special asymptotes are quickly. slyly regular | +7049|120259|F|54136.12|1992-01-14|2-HIGH|Clerk#000000966|0|fully even accounts detect furiously theodolites? fluffily pendin| +7050|688915|F|100955.01|1992-03-18|5-LOW|Clerk#000002956|0| furiously idle packages. carefully bold ideas sleep slyly even pinto bea| +7051|89128|O|167713.31|1997-10-24|4-NOT SPECIFIED|Clerk#000002906|0|kages; quietly ironic pinto beans sleep blithely r| +7052|202726|O|26467.50|1995-09-22|1-URGENT|Clerk#000001660|0|r the special excuses use furiously fu| +7053|693184|O|40074.59|1997-02-05|5-LOW|Clerk#000002895|0|wake around the silent, bold theodolites. slyly ir| +7054|576871|F|319440.36|1993-10-03|4-NOT SPECIFIED|Clerk#000000639|0|heodolites. carefully final accounts nag along the blithely ironic ideas. fl| +7055|200470|O|54464.89|1997-06-02|2-HIGH|Clerk#000000567|0|blithely unusual dolphins alongside of the slyly spec| +7080|278768|F|61568.55|1994-03-04|2-HIGH|Clerk#000004466|0| final instructions sleep blithely furiously ironic ideas. bold, unusual id| +7081|746789|O|60392.41|1997-03-11|4-NOT SPECIFIED|Clerk#000004098|0|ke about the even packages. depths haggle flu| +7082|25388|O|75166.17|1997-01-19|4-NOT SPECIFIED|Clerk#000000006|0|o the fluffily regul| +7083|690422|F|164770.04|1994-07-22|4-NOT SPECIFIED|Clerk#000001390|0|iously ironic theodolites unwind idly. slyl| +7084|667345|F|316404.23|1993-02-08|3-MEDIUM|Clerk#000000303|0|ul dependencies are fluffily carefully| +7085|539977|F|221592.00|1994-05-05|3-MEDIUM|Clerk#000002462|0|ly pending requests. blithely daring| +7086|384625|F|8692.06|1992-09-29|5-LOW|Clerk#000002403|0|cies. furiously ironic requests about the ironic warthogs boost carefu| +7087|134035|F|23712.86|1993-05-14|3-MEDIUM|Clerk#000002662|0|final foxes. carefully express depths h| +7112|463204|F|110888.87|1994-12-30|5-LOW|Clerk#000000652|0|oxes. final requests are furiously along the s| +7113|58349|O|57499.76|1995-07-10|5-LOW|Clerk#000003042|0|egular foxes. special requests integra| +7114|412249|O|125786.16|1997-10-30|2-HIGH|Clerk#000002426|0|structions are among the instructions-- busily final accounts haggle f| +7115|166621|P|98847.06|1995-05-08|1-URGENT|Clerk#000003286|0|tions integrate quietly fluffily unusual theodol| +7116|642202|O|94188.49|1996-06-26|3-MEDIUM|Clerk#000004701|0|rom the forges. blithely express deposits haggle above| +7117|224266|F|167470.83|1993-08-26|5-LOW|Clerk#000003687|0|e blithely final asymptotes. fluffily silent | +7118|466039|O|69761.48|1997-03-01|1-URGENT|Clerk#000003739|0|press theodolites sleep-- fur| +7119|439100|O|151308.61|1996-10-27|1-URGENT|Clerk#000001360|0|ly regular courts wake across the careful| +7144|696319|O|274269.06|1997-08-08|4-NOT SPECIFIED|Clerk#000000782|0|he carefully regular foxes are carefully sl| +7145|26338|O|23801.47|1997-05-19|5-LOW|Clerk#000004988|0| the blithely ironic exc| +7146|156880|O|100999.03|1995-06-06|5-LOW|Clerk#000003589|0|he slyly special ide| +7147|402983|F|56840.94|1993-10-07|1-URGENT|Clerk#000004983|0|ts; ideas impress furiousl| +7148|434806|F|66997.57|1993-06-25|1-URGENT|Clerk#000002221|0|. regular packages ea| +7149|524348|F|126164.52|1994-10-17|1-URGENT|Clerk#000004476|0|usly final pinto beans wake fluffily regular, ruthless| +7150|200380|F|167689.99|1994-12-24|5-LOW|Clerk#000001153|0|ly regular requests cajole dugouts. blithely ironi| +7151|260104|F|189072.99|1994-02-11|1-URGENT|Clerk#000000861|0|lar requests sleep carefully slyly regular pinto beans. regul| +7176|562459|F|51575.74|1994-08-09|4-NOT SPECIFIED|Clerk#000004603|0|ngly unusual theodolites. accounts along the| +7177|218446|O|276971.83|1995-10-17|3-MEDIUM|Clerk#000003543|0|the carefully regular packages| +7178|154898|F|281518.32|1994-12-25|5-LOW|Clerk#000002428|0|rate furiously carefully final theodolites. quickl| +7179|115144|O|143777.10|1996-02-07|5-LOW|Clerk#000000782|0|ly special excuses. slyly special deposits haggle furiously. idly regular | +7180|214147|O|246465.95|1998-06-09|4-NOT SPECIFIED|Clerk#000001587|0|ully even requests? regular, final foxes use fluffily above| +7181|635594|O|185275.53|1997-03-17|5-LOW|Clerk#000000008|0| quickly final foxes sleep quickly quickl| +7182|169483|F|294506.48|1994-04-10|4-NOT SPECIFIED|Clerk#000004228|0|refully bold instructions affix along the ideas. regular, even dependenci| +7183|731782|F|12017.80|1993-05-29|1-URGENT|Clerk#000001530|0| detect slyly. fluffily final fox| +7208|542704|P|127955.79|1995-04-25|5-LOW|Clerk#000003149|0|xpress ideas. slyly bold deposits across the bold ideas haggle brave| +7209|443374|O|209945.37|1996-04-04|3-MEDIUM|Clerk#000000509|0|lly express accounts thrash fluffily. slyly ironic asymptotes are. carefull| +7210|526411|O|101198.01|1997-05-10|5-LOW|Clerk#000001053|0|even somas. unusual accounts | +7211|387098|O|154783.60|1996-12-03|1-URGENT|Clerk#000000667|0|the even accounts. final, regular dolphins cajole around the ca| +7212|446365|O|375041.71|1995-08-22|3-MEDIUM|Clerk#000001212|0|lly final warhorses nag carefully alongside of th| +7213|529796|O|164032.82|1995-08-16|4-NOT SPECIFIED|Clerk#000001012|0|oxes. regular asymptotes behind| +7214|279934|O|234245.63|1997-04-26|5-LOW|Clerk#000002394|0| cajole quickly. fluffily regular foxes affix fluf| +7215|99661|O|54427.94|1997-10-13|5-LOW|Clerk#000001679|0|es. regular, final acc| +7240|235645|O|147933.81|1996-12-04|5-LOW|Clerk#000004412|0| sleep blithely. furiously ironic instructions kindle quickly alongside of th| +7241|458636|F|222264.26|1992-07-05|4-NOT SPECIFIED|Clerk#000002969|0|g. slyly regular pinto beans boost. silent foxes b| +7242|534425|F|110588.96|1993-04-14|3-MEDIUM|Clerk#000003406|0|requests are across the slyly final accounts. express foxes nag en| +7243|77635|O|88173.69|1996-01-29|4-NOT SPECIFIED|Clerk#000004125|0|ependencies. dolphins haggle bl| +7244|556765|F|128426.00|1992-08-19|3-MEDIUM|Clerk#000003558|0|ess packages sleep | +7245|522205|F|201528.94|1993-09-23|5-LOW|Clerk#000002473|0| dinos. regular, final requests eat furiously carefully f| +7246|175703|O|46857.79|1996-05-12|4-NOT SPECIFIED|Clerk#000000054|0|lithely regular foxes. even foxes use. ironic pac| +7247|281272|O|90037.40|1996-02-05|4-NOT SPECIFIED|Clerk#000004747|0|p with the ironic pint| +7272|87263|F|208616.35|1993-10-16|5-LOW|Clerk#000002780|0|y ironic dependencies wake fluffily until the silently | +7273|373654|F|73042.28|1992-10-28|2-HIGH|Clerk#000004660|0|t among the furiously regular pinto beans? quickly pending packa| +7274|237064|O|208206.10|1998-04-03|3-MEDIUM|Clerk#000002647|0|endencies. even packages cajole. dependen| +7275|326945|O|107430.53|1997-11-22|4-NOT SPECIFIED|Clerk#000002009|0|re slyly according to the d| +7276|457291|O|110164.03|1997-05-09|4-NOT SPECIFIED|Clerk#000004351|0|n grouches wake furiously instructions; express accounts lose. | +7277|419090|F|33446.35|1992-04-10|3-MEDIUM|Clerk#000004344|0|gle carefully against the carefully regular | +7278|394270|F|136331.24|1993-05-28|1-URGENT|Clerk#000004873|0| instructions. blithely regular asymptotes | +7279|232774|F|152239.20|1992-04-11|1-URGENT|Clerk#000002518|0|deas sleep carefully regular requests. blithely fin| +7304|215545|O|270674.78|1996-11-21|4-NOT SPECIFIED|Clerk#000000044|0|oost furiously. ironic account| +7305|135158|O|175647.02|1996-09-30|4-NOT SPECIFIED|Clerk#000000516|0|foxes wake carefully above| +7306|590806|O|143722.43|1998-01-20|3-MEDIUM|Clerk#000000403|0| do sleep blithely across the quickly even packages. ironic asy| +7307|411778|F|178052.29|1993-09-23|1-URGENT|Clerk#000000106|0| about the pending pearls. furiously special theodolites abo| +7308|485255|O|118299.45|1996-04-11|4-NOT SPECIFIED|Clerk#000000806|0|blithely final deposits. permanently final requests haggle quic| +7309|175978|F|2137.59|1993-04-10|4-NOT SPECIFIED|Clerk#000002102|0|its-- packages across the slyly fina| +7310|389969|O|61237.30|1995-12-01|4-NOT SPECIFIED|Clerk#000003590|0|s; fluffily express packages wake furiously! re| +7311|698608|O|41829.32|1996-02-21|4-NOT SPECIFIED|Clerk#000002962|0|s the thinly ironic ideas caj| +7336|229624|O|272301.55|1997-04-25|1-URGENT|Clerk#000001636|0|quickly final platelets wake sl| +7337|508288|F|247799.88|1992-06-01|3-MEDIUM|Clerk#000004819|0|d, regular pinto beans. quickly regular foxes are instruc| +7338|271315|F|161053.94|1993-01-24|3-MEDIUM|Clerk#000003392|0|ly regular deposits. pending, bold instructions are | +7339|710686|F|169438.50|1992-06-26|4-NOT SPECIFIED|Clerk#000004074|0|ial instructions. carefully express theodol| +7340|726391|O|112576.18|1996-08-11|2-HIGH|Clerk#000002860|0|cial, final packages. furiously regular instructions use; id| +7341|682646|F|69879.71|1992-01-20|3-MEDIUM|Clerk#000001711|0|sual pinto beans wake? slyly regular requests are. fluffily special accounts t| +7342|478862|O|68651.72|1997-07-26|2-HIGH|Clerk#000003912|0| quickly final foxes. quickly close ideas a| +7343|718117|F|206137.75|1995-01-12|3-MEDIUM|Clerk#000004752|0| ironic theodolites hang. quickly ironic pint| +7368|390650|F|63326.58|1994-07-04|3-MEDIUM|Clerk#000002745|0|lyly final theodolites. fin| +7369|141139|F|30984.02|1993-12-03|5-LOW|Clerk#000004292|0|rts are. quickly pending a| +7370|605471|F|162423.37|1995-01-13|3-MEDIUM|Clerk#000002832|0|le blithely express dependencies. fluffily sl| +7371|136195|F|121632.92|1993-01-31|1-URGENT|Clerk#000002193|0|final pinto beans a| +7372|8717|F|50869.35|1994-07-30|2-HIGH|Clerk#000000669|0|ccounts-- carefully unusual theodolites integrate furiously! pending, iron| +7373|250993|O|104843.18|1996-08-13|1-URGENT|Clerk#000004750|0|requests boost slyly special accounts. carefully bold dependencies| +7374|426322|F|259225.31|1992-01-18|5-LOW|Clerk#000004087|0|lithely regular instructions. carefully reg| +7375|443216|O|39409.60|1996-11-24|1-URGENT|Clerk#000004085|0|furiously bold instructions da| +7400|119863|F|245373.35|1992-08-16|1-URGENT|Clerk#000003934|0|packages cajole furiously across the silent theodolit| +7401|9326|O|130234.85|1996-03-29|1-URGENT|Clerk#000001538|0|hely. slyly regular dependencies wake fluffily after th| +7402|737122|O|292941.58|1998-06-17|3-MEDIUM|Clerk#000003556|0|ng the carefully special deposits nag fluffily final pinto beans: blith| +7403|278279|F|117870.28|1992-05-21|1-URGENT|Clerk#000001424|0|inal pinto beans! fluffily re| +7404|33128|O|163374.79|1997-10-07|5-LOW|Clerk#000004640|0|quests boost at the bold, special instructions. | +7405|274030|O|313477.00|1997-07-07|5-LOW|Clerk#000003180|0|l requests haggle slyly. special packages sleep quickly unusual deposits. | +7406|611056|F|297755.75|1992-09-16|4-NOT SPECIFIED|Clerk#000002302|0|express realms sleep closely. furiously re| +7407|254317|O|182995.30|1995-11-24|5-LOW|Clerk#000003194|0| ironic platelets. special, bold theodoli| +7432|49438|O|215345.28|1997-09-17|5-LOW|Clerk#000004412|0|ending sauternes. unusual epitaphs across the blithely even pinto | +7433|643483|F|272022.46|1994-12-18|3-MEDIUM|Clerk#000001509|0|iously furious asymptotes wake alongside of the permanently special pinto b| +7434|741466|O|90230.52|1998-07-13|4-NOT SPECIFIED|Clerk#000003058|0| regular deposits. blithely regular platelets| +7435|536389|O|47569.68|1996-04-09|4-NOT SPECIFIED|Clerk#000004618|0|al asymptotes sleep. final, unusual| +7436|80221|O|75233.65|1996-01-20|3-MEDIUM|Clerk#000000497|0|tly regular theodolites poach. ironic accounts from the slyly| +7437|521006|F|55159.29|1992-05-23|4-NOT SPECIFIED|Clerk#000001754|0|nd the blithely bold accounts. furiou| +7438|297076|O|208900.81|1996-06-05|4-NOT SPECIFIED|Clerk#000004933|0|ggle quickly quickly special accounts. silent accounts wake furiou| +7439|191254|F|188590.37|1992-08-13|1-URGENT|Clerk#000002868|0|er the furiously permanent pinto beans. furiously pending| +7464|642518|O|180620.63|1997-12-23|1-URGENT|Clerk#000000384|0|ounts. regular theodolites integrate carefully unusual accou| +7465|287335|O|218473.18|1998-03-28|5-LOW|Clerk#000001726|0|ickly. sometimes quick requests are ab| +7466|728315|F|205853.54|1994-01-02|5-LOW|Clerk#000001667|0|uffily regular packages sleep fl| +7467|24067|O|236600.38|1996-12-16|5-LOW|Clerk#000003943|0| instructions are even hockey players. slyly expre| +7468|229415|F|184933.53|1994-03-14|3-MEDIUM|Clerk#000004436|0|yly regular asymptotes. car| +7469|22075|F|29486.43|1994-11-06|2-HIGH|Clerk#000000294|0|sly even requests sleep. carefully bol| +7470|487043|F|103091.76|1994-10-03|2-HIGH|Clerk#000004927|0|al requests boost. regular depths accord| +7471|225743|F|207161.02|1992-02-06|5-LOW|Clerk#000003448|0|y ironic requests cajole about the even ideas. blithely regular th| +7496|547702|P|241873.88|1995-04-16|2-HIGH|Clerk#000001527|0|bold dolphins wake furiously d| +7497|446962|F|13363.71|1995-01-20|1-URGENT|Clerk#000002531|0|y final deposits. thi| +7498|63587|O|168137.58|1998-01-07|2-HIGH|Clerk#000004191|0|dly across the quickly silent f| +7499|702571|O|139592.33|1996-06-02|3-MEDIUM|Clerk#000003165|0|hely ironic requests. unusual foxes mold permanen| +7500|86278|F|64146.75|1992-10-29|3-MEDIUM|Clerk#000000384|0|packages whithout the special instructions are carefully express c| +7501|293290|F|191572.71|1994-03-23|1-URGENT|Clerk#000003831|0|odolites are furiously slyly ironic requests. unusual, ironic | +7502|295786|O|134739.72|1997-08-26|1-URGENT|Clerk#000000839|0|foxes! quickly regular acc| +7503|245038|F|226114.41|1995-01-23|2-HIGH|Clerk#000000535|0|ording to the sometimes enticing theodolites. even deposi| +7528|92570|O|198543.99|1997-10-29|4-NOT SPECIFIED|Clerk#000004752|0|to are alongside of the ideas. ironic requests wake fluffily. iron| +7529|307876|F|301942.89|1994-02-24|1-URGENT|Clerk#000004693|0|e carefully brave ideas| +7530|219835|F|82432.09|1992-08-19|1-URGENT|Clerk#000001924|0|tes. even dolphins against the enticingly ironic packages| +7531|251924|F|70836.97|1992-12-27|4-NOT SPECIFIED|Clerk#000001644|0|ths might maintain carefully. bold d| +7532|332092|F|92805.45|1993-03-10|5-LOW|Clerk#000004468|0|thely. ironic platelets cajole carefully over the ideas. blithely regula| +7533|707512|F|66458.39|1992-06-22|3-MEDIUM|Clerk#000000791|0|nusual accounts print about the ac| +7534|622414|O|265502.53|1996-11-07|4-NOT SPECIFIED|Clerk#000001288|0|e regular, even requests doubt bra| +7535|635437|F|157784.20|1993-07-06|3-MEDIUM|Clerk#000000746|0|e above the bold pa| +7560|526058|O|39754.20|1995-09-30|5-LOW|Clerk#000003268|0|kages sleep furiously. caref| +7561|442880|O|263933.27|1996-08-17|1-URGENT|Clerk#000004750|0|c, special pinto beans among the unusual dolphins integrate quickly afte| +7562|483586|O|174082.47|1996-11-22|3-MEDIUM|Clerk#000002615|0|nto beans shall cajole along the platele| +7563|598129|F|199305.01|1992-09-21|2-HIGH|Clerk#000000076|0|s are accounts. fluffily slow ideas are carefully according to the specia| +7564|480262|O|115363.40|1997-08-17|3-MEDIUM|Clerk#000003650|0|ly about the final packages. furi| +7565|256024|F|82705.51|1993-02-03|2-HIGH|Clerk#000001536|0|t above the slyly ironic requests. thinly bol| +7566|215597|F|9859.25|1992-12-29|3-MEDIUM|Clerk#000004365|0| dependencies haggle along the bli| +7567|281608|O|63046.29|1996-04-03|1-URGENT|Clerk#000001195|0|courts are unusual, ironic packages. furiously final ins| +7592|475021|O|87037.32|1998-01-27|4-NOT SPECIFIED|Clerk#000004525|0|ironic foxes. furiously eve| +7593|645494|F|13119.02|1992-07-11|1-URGENT|Clerk#000002729|0| final deposits. unusual, final accounts cajole upon the expre| +7594|53329|O|58979.64|1997-10-07|2-HIGH|Clerk#000004062|0|dolites. dolphins are furiously. fu| +7595|34078|O|97473.39|1998-01-10|2-HIGH|Clerk#000003286|0|e packages-- closely ironic accounts are quickly. furiously| +7596|467830|O|7594.81|1996-05-22|3-MEDIUM|Clerk#000004809|0|to the slyly brave deposits | +7597|544799|O|113346.92|1997-12-13|4-NOT SPECIFIED|Clerk#000002617|0|uriously along the carefully idle requests. regular theodolites us| +7598|421738|P|90928.24|1995-04-03|4-NOT SPECIFIED|Clerk#000001660|0|lithely bold dependencies wake ironic excuses. special package| +7599|647029|F|395948.13|1993-12-04|5-LOW|Clerk#000002263|0|; final patterns cajole quickly bold, special requests. quic| +7624|348674|O|162344.66|1997-02-12|3-MEDIUM|Clerk#000004026|0|xes cajole. final notorn| +7625|401521|O|79477.91|1997-08-16|2-HIGH|Clerk#000003374|0|ake alongside of the furiously even ideas. pending instructions wake | +7626|596335|O|102464.63|1995-08-10|5-LOW|Clerk#000003964|0|e. carefully regular deposits alongside of the special, even dependencies| +7627|323062|F|277572.18|1992-07-06|5-LOW|Clerk#000003520|0|jole carefully. patterns wake slyly. furi| +7628|446189|P|116386.10|1995-05-09|3-MEDIUM|Clerk#000002470|0|ing packages are. even requests after the fluffily ironic reques| +7629|584084|O|174030.94|1996-01-09|4-NOT SPECIFIED|Clerk#000001366|0|across the quickly ironic reque| +7630|692620|O|109351.07|1995-06-08|5-LOW|Clerk#000001938|0|final accounts wake blithely according to the carefully unusual| +7631|101677|O|162972.45|1997-11-28|4-NOT SPECIFIED|Clerk#000001597|0|blithely. ruthlessly ironic deposits sle| +7656|373040|F|54349.95|1993-02-21|2-HIGH|Clerk#000000969|0| ironic packages. carefully ironic theodolites cajole even dependenc| +7657|427517|F|59353.97|1994-09-14|1-URGENT|Clerk#000004611|0|excuses use slyly bold instructions. accounts sleep quick| +7658|268999|F|140564.21|1993-07-19|1-URGENT|Clerk#000000422|0|arefully even requests. even accounts are | +7659|33851|O|50661.19|1995-08-13|5-LOW|Clerk#000002534|0|gular requests detect carefully across the re| +7660|418036|F|256945.67|1992-09-20|3-MEDIUM|Clerk#000000252|0|y stealthy foxes. slyly final packages use furiousl| +7661|653086|F|92120.52|1995-01-04|1-URGENT|Clerk#000003690|0| unusual deposits across the regular theodolites wake according to the pinto b| +7662|159451|O|277001.46|1996-06-20|2-HIGH|Clerk#000003613|0|wake quickly at the regular, silent accounts. unusual, b| +7663|118841|F|83084.31|1993-05-17|5-LOW|Clerk#000001438|0| the regular, unusual accounts. quickly | +7688|94895|O|208639.92|1996-05-17|1-URGENT|Clerk#000001146|0| along the furiously express depos| +7689|393788|O|105099.43|1998-05-05|1-URGENT|Clerk#000004646|0|o beans. carefully express braids w| +7690|382387|F|51661.98|1994-04-21|4-NOT SPECIFIED|Clerk#000000430|0|ideas should boost. ironic deposits sleep final ideas. closel| +7691|26362|F|154302.30|1993-09-23|5-LOW|Clerk#000004915|0|sits. slyly regular accounts boost fur| +7692|559423|O|26014.33|1996-02-15|4-NOT SPECIFIED|Clerk#000002802|0|ajole quickly express | +7693|200464|O|161967.51|1995-10-11|3-MEDIUM|Clerk#000004194|0|l accounts. even, final deposits cajole| +7694|177850|O|251438.59|1996-05-12|4-NOT SPECIFIED|Clerk#000001843|0|cross the carefully regular accounts. quickly final escapad| +7695|349895|O|5740.72|1995-07-07|2-HIGH|Clerk#000001116|0|y fluffily slow ideas. requests wake ac| +7720|683660|F|101277.50|1994-06-10|2-HIGH|Clerk#000002272|0|le quickly carefully unusua| +7721|261634|F|147776.35|1992-04-29|1-URGENT|Clerk#000000927|0| the unusual, special pinto beans. bold, pending realms slee| +7722|17009|O|238026.76|1998-03-10|5-LOW|Clerk#000000573|0| express ideas wake blithely above the daring accounts. thinly regular foxes | +7723|116009|F|154575.34|1993-08-21|5-LOW|Clerk#000004322|0| in place of the escapades. express, unu| +7724|506060|F|126103.90|1994-06-27|5-LOW|Clerk#000000133|0|nts use. quickly regular packages sleep slyly acc| +7725|343228|F|226477.31|1995-01-15|2-HIGH|Clerk#000001866|0| after the even packages are at the quickly final re| +7726|355876|O|117116.33|1995-06-28|1-URGENT|Clerk#000002370|0|old deposits cajole furiously unusual deposits. unusual, even ideas wake fu| +7727|677129|F|217047.31|1995-01-17|4-NOT SPECIFIED|Clerk#000003838|0|ly express deposits. doggedly bold requests sleep car| +7752|748837|F|154021.43|1995-01-01|1-URGENT|Clerk#000000057|0|totes detect thinly bold asymptotes. carefully final pinto beans boost after| +7753|672358|F|53057.72|1992-04-07|5-LOW|Clerk#000003015|0|usual theodolites. regular requests was slyly alongside | +7754|51805|O|104687.26|1996-08-07|1-URGENT|Clerk#000003824|0|uriously slyly regular deposits. accounts haggle carefully. slyly regular| +7755|675544|F|221054.06|1994-12-26|1-URGENT|Clerk#000004718|0|mptotes haggle slyly about the flu| +7756|341620|O|67709.07|1995-07-05|4-NOT SPECIFIED|Clerk#000001987|0|lithely bold Tiresias. express, final id| +7757|337532|O|328709.23|1997-06-23|1-URGENT|Clerk#000002010|0|. blithely even req| +7758|642799|O|254529.45|1996-11-02|2-HIGH|Clerk#000003597|0|o the requests. furiously pending ac| +7759|510152|F|28508.83|1994-12-24|2-HIGH|Clerk#000002469|0|rnes promise across the ideas. silent, regular| +7784|107917|P|166079.06|1995-04-03|1-URGENT|Clerk#000003035|0|ar instructions. furiously regular requests cajol| +7785|239041|F|108040.71|1994-05-23|4-NOT SPECIFIED|Clerk#000003870|0|ag. pending theodolites are up the flu| +7786|557537|F|39308.91|1992-03-30|5-LOW|Clerk#000002587|0|ccounts cajole slyly slyly even requests. slyly final deposits | +7787|11915|O|149031.51|1998-03-30|4-NOT SPECIFIED|Clerk#000002284|0| packages. carefully unusual accounts boost ca| +7788|743813|F|14381.09|1994-02-18|5-LOW|Clerk#000000876|0|ly final deposits sleep slyly. accounts among the blithely dogged dep| +7789|264115|O|283484.76|1997-07-02|3-MEDIUM|Clerk#000000457|0|furiously along the ironic instructions. iron| +7790|451946|O|55876.50|1997-06-30|5-LOW|Clerk#000002752|0|ts. bold requests enga| +7791|603592|F|172241.49|1993-07-20|4-NOT SPECIFIED|Clerk#000001157|0|ructions. slyly even dugouts nag. carefully regula| +7816|40624|O|168711.46|1998-04-15|3-MEDIUM|Clerk#000003476|0|to beans. slyly express requests sleep slyly. car| +7817|243605|F|268985.71|1993-06-28|4-NOT SPECIFIED|Clerk#000003525|0|as cajole slyly. close packages afte| +7818|6439|O|1467.43|1996-09-08|2-HIGH|Clerk#000002532|0| carefully. excuses wake furiously about the | +7819|208177|O|117501.19|1997-12-05|3-MEDIUM|Clerk#000003343|0|tes could have to poach against the ironic foxes-- express pinto beans| +7820|59953|P|160977.68|1995-03-18|1-URGENT|Clerk#000004373|0| the express dependencies: carefully| +7821|378610|O|97743.54|1997-07-19|4-NOT SPECIFIED|Clerk#000004250|0| beans are packages. unusual dolphins wake blithely pinto| +7822|276964|F|194364.83|1993-01-13|2-HIGH|Clerk#000004935|0|totes. daringly ironic| +7823|400336|F|158534.27|1992-01-05|2-HIGH|Clerk#000002821|0|c requests affix. fluffily regular instructions sleep| +7848|184531|O|133428.36|1996-12-15|5-LOW|Clerk#000001260|0|ests nag ironic requests. regular deposi| +7849|138811|F|197951.11|1992-01-08|1-URGENT|Clerk#000000843|0|. theodolites detect. even, regular packages nag blith| +7850|480191|F|287102.16|1992-12-22|5-LOW|Clerk#000004642|0|lphins boost carefully along the fluffy, final pinto beans. ironic theodol| +7851|555683|O|293653.71|1996-06-05|2-HIGH|Clerk#000001710|0|usly. unusual foxes are furiously among the quickly regular deposits. sly| +7852|350608|O|115583.40|1996-05-25|5-LOW|Clerk#000003578|0|symptotes haggle furiously fluffily final deposits. i| +7853|648836|P|150490.40|1995-03-27|3-MEDIUM|Clerk#000004055|0|ial platelets cajole carefully according to th| +7854|730975|F|111429.16|1994-11-16|1-URGENT|Clerk#000004670|0|y special requests. furiou| +7855|468334|O|58136.04|1996-06-16|4-NOT SPECIFIED|Clerk#000004558|0|ven deposits. pending ideas sublate slyly blithely perma| +7880|9223|O|260853.48|1997-02-24|2-HIGH|Clerk#000000928|0|pecial ideas will cajole. | +7881|492482|F|75610.14|1992-03-26|2-HIGH|Clerk#000003710|0|. quickly unusual platelets boost quickly. blithely specia| +7882|137623|F|78567.47|1994-10-31|4-NOT SPECIFIED|Clerk#000004992|0|s play slyly ironic deposits. blithely ironic theodolites according | +7883|5915|F|13998.32|1992-10-27|1-URGENT|Clerk#000004907|0|nic ideas sleep slyly bli| +7884|403922|F|89487.01|1993-05-25|5-LOW|Clerk#000002681|0|olites sleep. accounts sleep carefully carefully| +7885|454027|F|394804.73|1992-05-21|1-URGENT|Clerk#000002166|0|carefully ironic excuses wake quic| +7886|310420|F|258753.44|1994-02-18|5-LOW|Clerk#000004856|0| instructions integrate. enticing accounts run| +7887|207682|F|84290.60|1992-02-11|4-NOT SPECIFIED|Clerk#000001251|0|accounts. blithely express courts wake blithely final pains. | +7912|728527|F|183845.84|1992-11-07|2-HIGH|Clerk#000004110|0|refully blithely ironic excuses; carefully sly requests above the bold packag| +7913|595268|F|133004.15|1994-05-23|1-URGENT|Clerk#000000315|0|e furiously regular warthogs. furiously bold accounts use special realms| +7914|415412|O|79610.57|1997-09-25|2-HIGH|Clerk#000002035|0|. closely final accounts cajole. quickly silent theodolites sle| +7915|64111|O|146745.27|1998-01-11|1-URGENT|Clerk#000004701|0|ress requests cajole. regular accounts alongside of the carefully final reque| +7916|512179|F|123886.49|1994-03-30|5-LOW|Clerk#000002510|0|ngside of the careful grouches. final deposits m| +7917|414052|O|124304.39|1996-04-10|4-NOT SPECIFIED|Clerk#000002690|0|print furiously carefully brave frets. | +7918|445519|O|114948.90|1997-11-20|3-MEDIUM|Clerk#000004878|0|ect blithely ironic, exp| +7919|581758|O|47374.68|1998-02-27|5-LOW|Clerk#000000028|0| final asymptotes cajole carefully. ca| +7944|579637|F|63578.93|1993-11-08|2-HIGH|Clerk#000001098|0|foxes. quickly regular packages wake. warthogs against the caref| +7945|199915|F|117652.88|1993-06-26|4-NOT SPECIFIED|Clerk#000004170|0|along the instructions cajole thinly above the slyly| +7946|709793|O|218834.33|1998-07-17|1-URGENT|Clerk#000002060|0|en dependencies sleep carefully. furious| +7947|729380|F|181417.04|1992-08-18|5-LOW|Clerk#000003305|0|ic theodolites. slyly idle de| +7948|684172|O|85326.24|1997-06-12|4-NOT SPECIFIED|Clerk#000000658|0|the final pearls. slyly bold dolphins sleep furiously c| +7949|598589|O|109676.99|1995-08-26|1-URGENT|Clerk#000004749|0|sly regular asymptotes. slyly unu| +7950|726250|F|180750.09|1994-07-19|3-MEDIUM|Clerk#000003241|0|yly pending instructions. quick| +7951|552428|O|76789.45|1998-05-23|2-HIGH|Clerk#000002949|0|nal requests. ideas haggle furiously about the regular, even requests.| +7976|404429|F|204542.92|1993-04-28|1-URGENT|Clerk#000002058|0|e across the silent requests. final | +7977|732689|O|56369.81|1996-09-17|2-HIGH|Clerk#000004684|0|efully express packages are af| +7978|43328|F|102802.49|1992-01-10|2-HIGH|Clerk#000003092|0|ar excuses dazzle fluffy frets. blithely even deposits after the | +7979|706759|O|47072.63|1996-01-03|3-MEDIUM|Clerk#000003811|0|re furiously pending theodolites. even th| +7980|736051|O|371978.88|1996-09-24|3-MEDIUM|Clerk#000001053|0|fluffily carefully express dependencie| +7981|301154|F|205622.32|1992-05-05|1-URGENT|Clerk#000001844|0| pending theodolites cajole across | +7982|490105|O|52000.56|1997-03-31|2-HIGH|Clerk#000001904|0|s the furiously regular theodolites sleep about | +7983|693679|O|190934.95|1995-09-28|1-URGENT|Clerk#000003753|0|ions are along the fluf| +8008|645266|F|248682.44|1992-05-03|3-MEDIUM|Clerk#000003580|0|even asymptotes. furiously final deposits are carefully| +8009|723394|F|298879.46|1994-01-10|1-URGENT|Clerk#000003209|0|requests. fluffily even theodolites maintain blithely! e| +8010|557458|O|169845.08|1998-07-29|1-URGENT|Clerk#000000974|0|arefully permanent din| +8011|180544|P|193306.48|1995-05-25|3-MEDIUM|Clerk#000004737|0|s the regular, ironi| +8012|640291|O|118455.18|1997-04-12|3-MEDIUM|Clerk#000004051|0|ely after the idle, express accounts. blithely regular deposits wake excu| +8013|348137|F|178877.25|1992-06-20|5-LOW|Clerk#000001287|0|s ideas according to the carefully bold pinto beans| +8014|372730|P|320287.39|1995-03-27|2-HIGH|Clerk#000000218|0|he furiously unusual accounts. special instructions detect | +8015|454150|O|241838.34|1995-07-28|5-LOW|Clerk#000000965|0|y bold packages sleep | +8040|127081|F|207673.96|1992-03-08|3-MEDIUM|Clerk#000004546|0|the regular dolphins cajole silent asymptotes. slyly exp| +8041|569284|F|161807.82|1992-09-17|1-URGENT|Clerk#000002906|0|counts. excuses sleep carefully. quickly fina| +8042|203426|F|197878.84|1994-09-26|3-MEDIUM|Clerk#000001940|0|the accounts. even, express instructions use carefully. b| +8043|469042|F|206283.71|1993-09-07|1-URGENT|Clerk#000000894|0| sauternes are blithely re| +8044|680000|F|166195.31|1994-07-15|5-LOW|Clerk#000003978|0|pecial theodolites. slyly final dolphins about the express packages | +8045|247951|O|974.99|1996-03-31|3-MEDIUM|Clerk#000004001|0|y silent asymptotes integrate. platele| +8046|289954|O|89705.30|1997-09-27|5-LOW|Clerk#000003516|0|. quickly final theodol| +8047|476930|F|49699.92|1994-11-27|5-LOW|Clerk#000004406|0|e furiously unusual instructions. f| +8072|501806|O|62105.62|1995-11-23|2-HIGH|Clerk#000000615|0|arefully among the ironic packages. slyly final ac| +8073|92957|O|241670.00|1998-04-23|4-NOT SPECIFIED|Clerk#000000112|0|sleep carefully. regular war| +8074|76352|F|41222.38|1993-08-13|2-HIGH|Clerk#000004493|0|equests. busily even deposits serve blithely ironic deposits. ironi| +8075|734935|O|134333.59|1997-09-07|4-NOT SPECIFIED|Clerk#000002509|0|unts sleep blithely after the| +8076|285208|O|168487.76|1998-04-25|3-MEDIUM|Clerk#000003283|0|y above the pending platelets. furious| +8077|220531|F|99002.40|1993-04-27|2-HIGH|Clerk#000003350|0|ut the final accounts sleep blithely again| +8078|714002|F|199005.40|1994-08-17|5-LOW|Clerk#000004140|0|lyly ironic requests. blithely final accounts run f| +8079|218017|F|142776.79|1992-07-03|4-NOT SPECIFIED|Clerk#000001761|0|l accounts are enticingly. carefully careful requests use. daringly regular | +8104|449419|O|15134.62|1997-01-02|1-URGENT|Clerk#000002956|0|o the furiously regular pinto beans sleep slyly about the quickly | +8105|114347|O|69997.36|1997-05-12|2-HIGH|Clerk#000002444|0|ng the silent deposits eat blithely beyond the blithely| +8106|328976|O|73005.06|1997-06-18|4-NOT SPECIFIED|Clerk#000001984|0|le blithely furiously special packages. even | +8107|94586|F|118572.28|1994-12-12|5-LOW|Clerk#000004513|0|oss the quickly bold excuses. carefully even somas among the blithely fin| +8108|455317|O|174158.74|1998-07-11|1-URGENT|Clerk#000001522|0|final deposits. unusual accounts cajole blithely | +8109|234583|O|29985.42|1997-11-21|5-LOW|Clerk#000001317|0|nts alongside of the pending courts use blith| +8110|617026|F|153030.23|1992-07-25|4-NOT SPECIFIED|Clerk#000004305|0|courts wake carefully. accounts breach fluffily. platelets mold furi| +8111|101089|O|30355.35|1996-09-20|5-LOW|Clerk#000002054|0|ly ironic deposits nag regular, ironic platelets. quietly special court| +8136|242339|O|233375.95|1998-04-17|1-URGENT|Clerk#000001622|0|endencies. unusual forges hang. fluffily bold dependencies | +8137|482671|F|192070.85|1992-07-04|4-NOT SPECIFIED|Clerk#000002523|0|ince the final theodolites. | +8138|239188|F|309152.96|1994-12-28|5-LOW|Clerk#000000381|0|ing platelets above the quickly even excuses sleep enticingly after the final| +8139|16774|O|244928.36|1995-07-05|2-HIGH|Clerk#000004334|0|eep carefully quickly final accounts. even| +8140|657625|O|26996.74|1997-09-11|1-URGENT|Clerk#000001255|0|r the express sentiments. even platelets c| +8141|698378|O|165951.09|1997-09-28|1-URGENT|Clerk#000000777|0| packages eat furiously accordi| +8142|122492|O|214781.88|1995-06-21|1-URGENT|Clerk#000004860|0|e evenly special accounts. platelets will sleep furiously pendin| +8143|720739|F|44961.37|1994-12-02|3-MEDIUM|Clerk#000002202|0|maintain across the ironic reques| +8168|194435|O|240970.53|1996-02-15|4-NOT SPECIFIED|Clerk#000004223|0|riously express theodo| +8169|111631|F|224560.70|1992-01-22|3-MEDIUM|Clerk#000000338|0| ideas before the fluffily special deposits a| +8170|419830|O|35793.53|1995-06-20|1-URGENT|Clerk#000000278|0|hes. daring grouches wake permanently| +8171|79915|F|71830.38|1993-02-01|4-NOT SPECIFIED|Clerk#000000661|0|after the blithely regular packages. ironic asymptotes haggle fluffily. qui| +8172|616057|F|160175.84|1994-04-22|5-LOW|Clerk#000003042|0|ges. slyly regular instructions nag | +8173|308503|F|253193.63|1993-06-15|1-URGENT|Clerk#000002163|0|ts cajole slowly. furiously regul| +8174|228415|F|188889.39|1993-06-22|5-LOW|Clerk#000000589|0|e regular deposits. bold packages boost. quickly final dependencies a| +8175|447362|F|131166.34|1994-12-18|2-HIGH|Clerk#000002697|0|st the blithely ironic deposits integrate about the | +8200|54481|F|74294.10|1992-07-04|4-NOT SPECIFIED|Clerk#000004922|0|phins-- special pinto | +8201|640072|F|323244.60|1992-02-15|3-MEDIUM|Clerk#000000752|0|earls could have to nag furi| +8202|417211|O|119627.71|1997-03-02|2-HIGH|Clerk#000002616|0|ously express orbits cajole. express,| +8203|309829|O|286609.30|1996-02-06|3-MEDIUM|Clerk#000000789|0|s are slyly. forges nag blithely? unusual, iro| +8204|14396|O|229881.31|1996-12-30|4-NOT SPECIFIED|Clerk#000000316|0|packages above the bold accounts cajole furiously about the | +8205|441758|F|81227.56|1993-04-26|4-NOT SPECIFIED|Clerk#000004419|0|pinto beans. carefully bold requests are. quietly even sheaves sublat| +8206|367499|O|64595.79|1996-05-22|4-NOT SPECIFIED|Clerk#000003322|0|slow requests. deposits | +8207|302555|O|26083.83|1996-10-24|3-MEDIUM|Clerk#000002304|0|ly final excuses. furiously silent accounts alongside of | +8232|30488|O|128489.24|1998-04-30|4-NOT SPECIFIED|Clerk#000004878|0|carefully final requests. final| +8233|150337|F|88702.17|1992-10-03|3-MEDIUM|Clerk#000003182|0|he even pinto beans. furiously silent accounts a| +8234|684820|F|129491.39|1994-07-21|2-HIGH|Clerk#000004757|0|unts hinder along the ironic package| +8235|255709|O|320333.52|1997-07-31|4-NOT SPECIFIED|Clerk#000004094|0|ithely ironic asymptotes must have to haggle. blithely dogged foxes according | +8236|187588|O|26727.67|1995-04-06|2-HIGH|Clerk#000003562|0|cording to the finally fin| +8237|525739|O|90450.50|1998-02-02|2-HIGH|Clerk#000001876|0| haggle across the furiously pending pinto beans. silent platelet| +8238|312995|F|320735.71|1993-09-02|1-URGENT|Clerk#000002238|0|uests. furiously regular warhorses wake. | +8239|326|F|100424.82|1993-02-19|3-MEDIUM|Clerk#000004572|0| pending platelets beyond the furiously even foxes would kindle blithely furio| +8264|221626|O|12769.10|1996-03-08|2-HIGH|Clerk#000000111|0|bold, final accounts sleep carefully. slyly even requests nag. final platelet| +8265|336328|F|154985.72|1994-05-05|4-NOT SPECIFIED|Clerk#000002962|0| theodolites. slyly bold requests doze. s| +8266|643189|F|114611.41|1993-04-08|4-NOT SPECIFIED|Clerk#000001269|0|ct slyly against the enticingly final accounts. even | +8267|326119|O|265609.02|1997-11-07|4-NOT SPECIFIED|Clerk#000002369|0|nts. slyly idle accounts after the carefully express pe| +8268|77200|F|115065.92|1993-08-01|2-HIGH|Clerk#000001799|0| multipliers integrate carefully ironic warthogs. furiously pending acc| +8269|724321|F|23863.14|1992-03-19|1-URGENT|Clerk#000002538|0|ly ironic dependencies. quietly bold instructi| +8270|399640|O|14363.56|1997-06-01|4-NOT SPECIFIED|Clerk#000003764|0|e always. fluffily f| +8271|483194|F|94439.47|1994-05-04|1-URGENT|Clerk#000002571|0|ly express packages. pending requests sleep slyly. bold braids cajole| +8296|38500|O|92813.32|1995-06-07|2-HIGH|Clerk#000004144|0|gular ideas cajole dar| +8297|556588|P|129305.26|1995-03-08|4-NOT SPECIFIED|Clerk#000001056|0|ironic accounts; bold packages detect. | +8298|561055|F|205062.23|1992-06-10|5-LOW|Clerk#000002193|0|y ironic deposits haggle blithely after | +8299|630101|F|49294.23|1992-05-11|4-NOT SPECIFIED|Clerk#000001287|0|heodolites wake along the regularly even accounts.| +8300|101791|O|57234.77|1998-03-01|3-MEDIUM|Clerk#000004548|0|ounts. carefully ironic accounts cajole special dependencies. final dependen| +8301|37274|F|256243.56|1995-01-04|5-LOW|Clerk#000003922|0|unts cajole above the slyly | +8302|209159|O|57517.71|1996-07-31|2-HIGH|Clerk#000000029|0|hily ironic excuses nag blithely-- ironic, slow dolphins above the| +8303|74641|F|59361.51|1993-07-20|1-URGENT|Clerk#000002248|0|ly enticing requests. fluffily unusual requests| +8328|487655|F|138501.60|1992-11-22|5-LOW|Clerk#000003727|0|leep regular pinto beans. f| +8329|7907|F|65994.70|1992-09-11|3-MEDIUM|Clerk#000002887|0|heodolites impress s| +8330|137812|F|247726.75|1993-09-15|3-MEDIUM|Clerk#000000700|0|packages. closely pending account| +8331|196280|O|83668.59|1998-04-17|1-URGENT|Clerk#000003790|0|iously final dependencies haggle courts: furiously ironic theodolites are| +8332|362494|O|201512.22|1996-07-23|1-URGENT|Clerk#000004761|0|ic pinto beans. idle, even packages detect carefully. iro| +8333|174382|P|141114.81|1995-03-14|1-URGENT|Clerk#000000846|0| pinto beans sleep. accounts affix furiously. c| +8334|576148|O|327182.49|1997-09-24|3-MEDIUM|Clerk#000003057|0|slyly alongside of the dependencies. accounts wake sp| +8335|42641|O|189490.52|1998-07-24|2-HIGH|Clerk#000003801|0| are furiously bold, regular as| +8360|408119|F|65768.75|1994-11-24|2-HIGH|Clerk#000002888|0|l foxes. carefully regular ac| +8361|503756|O|133412.91|1997-01-06|3-MEDIUM|Clerk#000003622|0|. fluffily even dependencies sleep furio| +8362|615190|O|57737.72|1995-12-27|5-LOW|Clerk#000001363|0| blithely. quietly final foxes kindle. stealthy requests | +8363|738877|F|210058.89|1992-07-21|1-URGENT|Clerk#000001592|0|l instructions after the fluffily final depths wake fluffily bold, ironic a| +8364|528358|O|241962.29|1995-09-08|4-NOT SPECIFIED|Clerk#000002627|0|egular packages haggle permanent, express| +8365|101425|F|200499.93|1994-01-29|1-URGENT|Clerk#000001438|0|eodolites. ironic foxes boost bold dependencies. express deposits af| +8366|643678|F|84649.09|1992-08-07|1-URGENT|Clerk#000003229|0|c requests poach furiously after the slyly express| +8367|288343|O|205104.06|1995-07-22|4-NOT SPECIFIED|Clerk#000003079|0|iously final requests. dolphins across th| +8392|408490|P|200353.87|1995-05-14|5-LOW|Clerk#000002481|0|s. fluffily unusual accounts haggle furiously| +8393|711209|F|81873.88|1993-11-16|1-URGENT|Clerk#000002936|0|ular instructions are blithely after the even accounts. slyly regular reques| +8394|535705|O|166699.57|1998-05-20|5-LOW|Clerk#000000216|0|old packages. slyly regular accounts alongside | +8395|577754|O|12913.96|1996-05-12|5-LOW|Clerk#000000722|0|yly ironic asymptotes haggle quietly among the fluffily i| +8396|45892|F|112151.33|1993-02-15|4-NOT SPECIFIED|Clerk#000002675|0| requests wake; depths wake. carefully express pinto beans thrash sheave| +8397|304711|O|315709.61|1995-08-19|1-URGENT|Clerk#000003705|0|tect carefully of the unusual requests. account| +8398|246478|O|221908.64|1996-09-07|5-LOW|Clerk#000001288|0| the fluffily final theodolites. carefully | +8399|287515|O|275735.65|1997-03-24|5-LOW|Clerk#000002105|0|iously even pinto beans. quickly express ideas boost furiously bold platelets| +8424|743215|O|173514.97|1997-03-17|4-NOT SPECIFIED|Clerk#000002658|0|e requests! furiously pending packa| +8425|688313|F|143760.67|1993-04-07|1-URGENT|Clerk#000001138|0|ng the instructions nag against the ironic deposits. ide| +8426|467348|O|337047.46|1997-12-26|4-NOT SPECIFIED|Clerk#000000351|0|kages: foxes after the carefully specia| +8427|716506|F|117305.24|1994-01-04|3-MEDIUM|Clerk#000003080|0|y even deposits sublate among the blithe| +8428|313733|O|152544.65|1996-10-22|5-LOW|Clerk#000004571|0|. slyly sly packages along the furiously ironic ideas wake aft| +8429|395117|F|80809.61|1992-01-07|2-HIGH|Clerk#000001457|0|furiously ironic requests. fu| +8430|227654|O|356720.60|1996-11-28|5-LOW|Clerk#000001986|0|, final packages. regular, permanent dep| +8431|419503|O|323337.93|1995-12-10|1-URGENT|Clerk#000002205|0|usly carefully final theodolites. quickly final deposits affix| +8456|582757|O|152894.97|1996-08-20|3-MEDIUM|Clerk#000002486|0|he fluffily ironic pac| +8457|137696|F|123598.89|1994-06-11|5-LOW|Clerk#000003425|0|e blithely carefully regular deposits. ironic deposits a| +8458|502949|F|332189.34|1992-01-16|3-MEDIUM|Clerk#000002222|0|s nag carefully? carefully even requests| +8459|556240|O|126296.62|1995-11-22|3-MEDIUM|Clerk#000002686|0| carefully even foxes eat. fluffily regular pinto beans ha| +8460|717052|O|203472.91|1998-02-14|5-LOW|Clerk#000000124|0|as wake quickly ironic foxes. packages promise a| +8461|475816|F|283554.34|1992-02-03|3-MEDIUM|Clerk#000002764|0|to the slyly ironic br| +8462|507373|O|164669.74|1998-03-10|3-MEDIUM|Clerk#000000865|0|ly even theodolites. furiously ironic deposits use blithely accor| +8463|637879|O|252094.78|1997-10-09|5-LOW|Clerk#000003074|0|he carefully even notornis. fluffily final instructions | +8488|316804|F|135300.92|1993-08-13|1-URGENT|Clerk#000004767|0| wake carefully bold accounts. fluffily ironic notornis at the regular, ir| +8489|272236|F|49957.71|1994-03-07|5-LOW|Clerk#000004490|0|hins: quickly ironic theodolites poach blithely furiously regular dolphins.| +8490|455176|O|74325.20|1996-03-03|3-MEDIUM|Clerk#000001123|0|ep carefully after the ironic accounts. fluffi| +8491|141485|O|1802.86|1997-07-29|1-URGENT|Clerk#000003955|0|en, even dolphins. regular senti| +8492|426323|O|223982.29|1997-09-06|1-URGENT|Clerk#000004189|0|equests. carefully unusual packages above the furiously pend| +8493|451705|O|5449.32|1997-01-03|5-LOW|Clerk#000000814|0|e even sheaves? carefully express accounts are accounts. pending| +8494|272593|F|78412.31|1993-01-04|4-NOT SPECIFIED|Clerk#000004222|0|jole carefully pending dependencies. regular waters are. slyly regular deposi| +8495|463298|F|7957.04|1992-02-16|4-NOT SPECIFIED|Clerk#000002580|0|ounts. ironic, special deposits use about the carefully unus| +8520|143189|F|171592.92|1993-01-27|5-LOW|Clerk#000004982|0|al deposits among the furiously even grouches affix sl| +8521|564349|O|105996.73|1996-12-17|5-LOW|Clerk#000004853|0|es detect furiously bold requests. even, thin | +8522|494366|F|115115.34|1993-10-15|5-LOW|Clerk#000004652|0|dencies would dazzle across the slyly fi| +8523|293917|O|35349.55|1997-01-08|2-HIGH|Clerk#000004284|0|pecial requests. fluff| +8524|339841|O|145920.13|1995-07-09|4-NOT SPECIFIED|Clerk#000003764|0|he requests. quickly final accounts poa| +8525|451270|O|8043.94|1996-09-22|2-HIGH|Clerk#000004874|0|efully. requests need to nag except th| +8526|473884|O|259364.60|1996-06-25|3-MEDIUM|Clerk#000001246|0|enticing deposits. fluffily ex| +8527|301486|O|86673.57|1998-02-13|3-MEDIUM|Clerk#000002586|0|he furiously regular instructions-- furio| +8552|48520|O|68025.68|1997-08-04|4-NOT SPECIFIED|Clerk#000002475|0|ests across the quickly even de| +8553|218308|O|174250.41|1996-07-27|3-MEDIUM|Clerk#000001080|0|ages. bold, final excuses sleep carefully acro| +8554|73675|O|158199.56|1997-05-29|1-URGENT|Clerk#000000151|0|ptotes cajole. deposits boost. car| +8555|151|O|179383.40|1995-06-26|3-MEDIUM|Clerk#000003977|0|y alongside of the quickly regular instructio| +8556|256936|F|284889.91|1993-04-07|3-MEDIUM|Clerk#000000241|0|cajole furiously after the unusual instructions. pen| +8557|552761|O|343814.89|1996-08-23|4-NOT SPECIFIED|Clerk#000004458|0|lar packages maintain carefully regular deposits. silent foxes c| +8558|741202|F|218118.57|1993-10-12|3-MEDIUM|Clerk#000001030|0|against the express, permanent p| +8559|601609|O|206096.17|1998-03-28|1-URGENT|Clerk#000000364|0|he carefully regular instructions. ruthlessly regular pa| +8584|468721|F|92963.69|1994-10-31|1-URGENT|Clerk#000002803|0|to are around the slyly ironic dependencies. grouches serve. carefully reg| +8585|537607|O|326729.88|1995-07-11|5-LOW|Clerk#000000485|0|he ironic ideas cajole slyly pending, regular fo| +8586|284422|O|97205.75|1997-12-24|4-NOT SPECIFIED|Clerk#000000530|0|ual dolphins. regular packages wake final requests. sly| +8587|517243|F|63896.96|1993-02-07|3-MEDIUM|Clerk#000003724|0| across the express, regular excuses detect furiously quickly pending deposi| +8588|45422|F|130528.97|1995-01-05|3-MEDIUM|Clerk#000000557|0|posits. unusual foxes are above the| +8589|643735|O|79432.80|1997-09-13|4-NOT SPECIFIED|Clerk#000004239|0| dependencies must cajole slyly e| +8590|501961|F|130389.59|1992-08-24|2-HIGH|Clerk#000002618|0|sly quickly regular platelets! slyly even ideas solve sl| +8591|432886|O|137789.87|1997-04-26|1-URGENT|Clerk#000000672|0|ever regular instructions affix.| +8616|488702|F|97095.24|1992-03-19|4-NOT SPECIFIED|Clerk#000000680|0|pecial instructions detect quickly about| +8617|353873|F|49640.69|1993-04-09|2-HIGH|Clerk#000001790|0|s. carefully special deposits use along the furiously special theodolites| +8618|27476|O|218896.24|1996-10-10|2-HIGH|Clerk#000004291|0|uffily among the unusual, regular pinto beans. bol| +8619|536230|O|47906.92|1997-05-15|5-LOW|Clerk#000002477|0|quickly ironic packages cajole. regu| +8620|399559|O|54845.01|1997-11-07|3-MEDIUM|Clerk#000003341|0|ss accounts after the carefully final packages| +8621|625309|F|101090.62|1994-07-02|3-MEDIUM|Clerk#000001917|0|osits. slyly ironic ideas haggle blithely furiousl| +8622|567835|O|17461.91|1996-02-29|2-HIGH|Clerk#000004658|0|the slyly pending accounts. slyly final excuses among the slyly u| +8623|588680|O|9150.78|1998-07-05|1-URGENT|Clerk#000003087|0|ironic packages by the unusual pinto beans boos| +8648|689854|F|194590.61|1994-02-26|5-LOW|Clerk#000001635|0| about the carefully express ideas cajole blithely a| +8649|98452|F|35138.83|1993-03-04|2-HIGH|Clerk#000003573|0|ost furiously. dependencies affix fluffily slyly| +8650|159265|F|128589.25|1994-11-12|3-MEDIUM|Clerk#000000936|0|ously carefully regular requests. daringly final dependencies | +8651|737555|F|84518.65|1992-05-21|2-HIGH|Clerk#000000990|0| even requests. permanently blithe foxes are: express| +8652|82201|O|44216.98|1998-05-01|5-LOW|Clerk#000002329|0|ourts cajole furiously alongside of the finally flu| +8653|49108|F|235219.41|1993-01-27|2-HIGH|Clerk#000003152|0|ing packages across the slyly unusual packages haggle alongside of the pen| +8654|351844|F|134615.40|1994-08-17|4-NOT SPECIFIED|Clerk#000001243|0|ve to are. final instructions breach about the | +8655|418085|O|154176.88|1996-09-07|4-NOT SPECIFIED|Clerk#000004067|0|packages nag slyly.| +8680|747988|O|343820.37|1995-11-28|4-NOT SPECIFIED|Clerk#000003578|0| beans. carefully regular asymptotes haggle furiously bold foxes| +8681|670022|F|51630.07|1994-06-07|1-URGENT|Clerk#000004020|0|ctions cajole ideas. slyly e| +8682|558103|F|77011.70|1994-05-26|1-URGENT|Clerk#000002972|0|y ironic accounts. blithely ironic deposits above th| +8683|513875|F|159967.52|1993-06-24|4-NOT SPECIFIED|Clerk#000004745|0|yly regular dependencies. carefully express sautern| +8684|430478|F|37812.81|1994-12-11|5-LOW|Clerk#000000969|0|pending deposits sleep. slyly| +8685|535567|O|64890.23|1998-03-20|1-URGENT|Clerk#000003575|0|sly final multipliers. slyly special ideas dazzle furiously | +8686|513190|F|193163.10|1992-06-21|3-MEDIUM|Clerk#000003955|0|ckages. pending dolphins use fluffily. furiously| +8687|159080|F|156603.89|1993-02-24|1-URGENT|Clerk#000002888|0|l accounts. ideas use against the fluffily bold| +8712|653428|O|260894.73|1998-07-08|3-MEDIUM|Clerk#000001975|0|uests. final theodolites sleep: blithely regula| +8713|650450|O|94296.35|1995-12-30|4-NOT SPECIFIED|Clerk#000002936|0|doze carefully ironic, even pack| +8714|104297|F|19780.24|1993-06-20|3-MEDIUM|Clerk#000003584|0|ke carefully bold, ironic requests. express theodolites haggl| +8715|167669|O|181079.61|1995-06-28|2-HIGH|Clerk#000003382|0|hely ironic courts use? slyly final theodolites after the even realms solve | +8716|248797|O|252097.50|1997-04-25|2-HIGH|Clerk#000002855|0|final excuses wake carefully. i| +8717|275131|O|6920.60|1998-01-23|1-URGENT|Clerk#000001619|0|cial deposits are furiously. furiously bold accounts haggle at the furio| +8718|356917|O|205987.86|1998-08-02|2-HIGH|Clerk#000002638|0|counts haggle bold, quiet packages. dolphins | +8719|187708|P|101472.35|1995-05-01|3-MEDIUM|Clerk#000004589|0|requests are slyly furiously ironic realms. blith| +8744|278347|O|231564.22|1995-11-12|1-URGENT|Clerk#000000031|0|ts wake according to the sometimes even accounts. sly| +8745|419341|F|276655.81|1994-08-27|3-MEDIUM|Clerk#000004816|0|le ironic, express requests. unusual, final instruct| +8746|101269|F|232904.46|1994-08-03|3-MEDIUM|Clerk#000004032|0|ests integrate after | +8747|252719|F|182434.95|1995-02-21|5-LOW|Clerk#000002978|0|uts cajole regular, bold accounts. blithely ironic requests across the| +8748|183844|O|166148.32|1996-10-22|5-LOW|Clerk#000003975|0|uffy pinto beans haggle blithely bol| +8749|615047|F|130088.53|1992-07-21|4-NOT SPECIFIED|Clerk#000001129|0| pending instructions haggle. slyly final | +8750|590755|O|142408.96|1996-02-18|3-MEDIUM|Clerk#000001485|0|ckages maintain thinly against the furiously regular platelets. slyly expr| +8751|311236|O|154536.64|1997-11-16|5-LOW|Clerk#000004785|0|ic accounts. pending, bold foxes across the permanent, final ideas sleep ca| +8776|418822|O|200713.62|1995-07-04|4-NOT SPECIFIED|Clerk#000002072|0|s sublate slyly ironic sentiments. regular deposits haggle carefully regu| +8777|384181|O|139523.73|1995-12-01|4-NOT SPECIFIED|Clerk#000004177|0| ironic excuses: slyly regular theodolites was furiously according to the iro| +8778|148907|F|221200.75|1993-05-23|4-NOT SPECIFIED|Clerk#000004355|0|haggle blithely unusual ideas. express, even packages| +8779|669931|O|28545.56|1995-09-18|1-URGENT|Clerk#000002807|0|ag slyly pending depo| +8780|511610|O|20562.54|1996-05-04|1-URGENT|Clerk#000002547|0|the quickly idle requests. quietly ironic dugouts wake express a| +8781|614053|F|188403.64|1992-08-06|3-MEDIUM|Clerk#000002829|0|y furiously silent packages; deposits haggle quickly unusual packages. bli| +8782|379912|O|222335.49|1997-05-12|2-HIGH|Clerk#000000476|0|y regular packages. furiously quic| +8783|404836|F|96875.61|1993-10-27|2-HIGH|Clerk#000003133|0|thely even foxes. instructions | +8808|73885|F|372578.79|1992-01-15|3-MEDIUM|Clerk#000002861|0|. theodolites hinder carefully unusual deposits; ironic packages us| +8809|519122|F|24400.68|1993-03-12|3-MEDIUM|Clerk#000001742|0|cajole blithely fluffily unusual accounts. carefully pending foxes affix abo| +8810|125503|F|110032.06|1992-07-11|4-NOT SPECIFIED|Clerk#000001481|0|ts. fluffily ironic dependencies run quickly silent, fina| +8811|312682|O|163698.86|1997-09-28|2-HIGH|Clerk#000002478|0|ely according to the final requests. carefully even accounts mo| +8812|714680|O|108315.13|1998-04-30|3-MEDIUM|Clerk#000001808|0| use blithely slyly regular packages. carefully final pinto beans was car| +8813|367759|O|35417.00|1997-02-10|3-MEDIUM|Clerk#000000058|0|ymptotes. ironic deposits sleep in place of the ironic platelets. furiously| +8814|142411|O|263251.92|1997-10-16|2-HIGH|Clerk#000003756|0| sleep. special, even foxes haggle after the speci| +8815|220156|O|67277.22|1995-09-11|4-NOT SPECIFIED|Clerk#000001871|0|r ideas against the| +8840|396784|F|102347.09|1993-01-26|2-HIGH|Clerk#000000847|0| across the slyly even asymptotes are against the thinly special deposits. | +8841|480023|O|214165.66|1996-01-29|5-LOW|Clerk#000000617|0|rding to the quickly ironic deposits. regularly even accounts wake against the| +8842|745897|F|235320.09|1992-09-18|1-URGENT|Clerk#000004764|0|efully. slyly regular packages wake furiously slow, ironic foxes. deposits caj| +8843|28714|O|48714.40|1995-12-12|4-NOT SPECIFIED|Clerk#000004120|0|ggle quickly express packages. quickly bold frets| +8844|315187|O|94406.18|1997-07-08|2-HIGH|Clerk#000004093|0|lent dolphins above the regular, ironic packages haggl| +8845|89200|O|210625.25|1997-10-16|1-URGENT|Clerk#000001244|0|d dolphins. quickly final deposits wake quickly after the blithe| +8846|655402|O|33697.16|1998-05-12|2-HIGH|Clerk#000001920|0|he ironic excuses. unusual, ironic instructions sleep | +8847|72203|F|131774.87|1992-11-25|1-URGENT|Clerk#000004910|0|sits according to t| +8872|7831|O|140862.05|1996-01-16|4-NOT SPECIFIED|Clerk#000000956|0|fily around the ironically reg| +8873|351580|O|248724.58|1998-07-17|5-LOW|Clerk#000002101|0|efully according to the ironic platelets. careful| +8874|486949|O|255319.68|1998-01-26|4-NOT SPECIFIED|Clerk#000003719|0| furiously at the special ideas. special, regu| +8875|150212|F|143333.36|1992-10-25|3-MEDIUM|Clerk#000001807|0|ut the pending, bold deposits integrate final, express accounts. s| +8876|109801|O|151404.45|1998-01-30|2-HIGH|Clerk#000003613|0|beans sleep against the ideas. deposits poach carefully.| +8877|411748|O|164974.69|1995-06-06|3-MEDIUM|Clerk#000003600|0|e the slyly special deposits. ideas cajole requests. fluff| +8878|726205|O|38866.10|1998-06-02|1-URGENT|Clerk#000000695|0|osits use along the even platelets. fluffil| +8879|563623|F|199674.05|1992-04-13|4-NOT SPECIFIED|Clerk#000002174|0|alongside of the ruthlessly| +8904|302998|O|276753.78|1996-11-12|3-MEDIUM|Clerk#000002755|0| furiously among the re| +8905|718076|F|100074.04|1993-09-08|5-LOW|Clerk#000001166|0|ly express deposits after the blithely final accounts use carefully furiously | +8906|450200|O|243660.91|1996-10-15|1-URGENT|Clerk#000002320|0|dolites cajole blithely after the finally unusual foxes. pinto | +8907|495931|O|165971.60|1997-04-20|4-NOT SPECIFIED|Clerk#000002856|0|c ideas cajole furiously a| +8908|348341|F|219435.61|1992-07-09|4-NOT SPECIFIED|Clerk#000000558|0|mong the even requests. blithely bold packages| +8909|62906|F|235597.67|1994-01-17|2-HIGH|Clerk#000004109|0|s cajole blithely. requests cajole. q| +8910|500266|O|139492.69|1995-10-21|1-URGENT|Clerk#000002593|0|ual platelets run. unusual, unusual accounts integr| +8911|452617|O|28749.96|1996-10-14|1-URGENT|Clerk#000004468|0| packages. furiously regular accounts nag pendi| +8936|603235|F|449837.69|1993-10-17|4-NOT SPECIFIED|Clerk#000002914|0| sleep carefully carefully ironic requests. p| +8937|69029|O|232333.63|1996-01-06|1-URGENT|Clerk#000004202|0| across the blithely special packages. iro| +8938|661643|F|158220.34|1992-05-10|3-MEDIUM|Clerk#000002580|0|aintain furiously slyly silent packages. requests| +8939|717353|F|231556.06|1994-02-18|5-LOW|Clerk#000003583|0|usly ironic courts. carefully even packages a| +8940|300343|O|190590.95|1997-11-18|5-LOW|Clerk#000001182|0|hely bold ideas sleep regularly according to the| +8941|346519|O|153834.33|1996-07-01|1-URGENT|Clerk#000000768|0|structions. blithely even deposits bo| +8942|189329|O|267670.40|1997-09-07|1-URGENT|Clerk#000002104|0|equests sleep slyly around the quickly express courts. fluffily even i| +8943|537868|O|49879.04|1995-09-02|5-LOW|Clerk#000002676|0|riously regular packages. instructions sleep furiously | +8968|172150|F|261258.29|1993-04-09|3-MEDIUM|Clerk#000002668|0|s are furiously furious dependencies. ironic theodolites eat accordin| +8969|573562|O|96170.24|1996-06-17|1-URGENT|Clerk#000003180|0|. slyly express accounts from the theodolites ha| +8970|79625|O|117427.58|1998-05-12|4-NOT SPECIFIED|Clerk#000000721|0|ons run slyly. even theodolites haggle according to the dolphins.| +8971|251797|F|132379.09|1994-04-05|1-URGENT|Clerk#000004201|0|rding to the regular, final theodolites. fu| +8972|429340|O|85350.84|1996-06-05|5-LOW|Clerk#000002853|0|e even, regular deposits. carefully final pinto beans nag. carefully iro| +8973|147353|F|230268.01|1993-01-18|4-NOT SPECIFIED|Clerk#000002611|0|riously ironic pinto beans after | +8974|50069|F|57288.42|1992-01-02|4-NOT SPECIFIED|Clerk#000001091|0| wake after the blithely bold packages. ironic decoys do cajole. | +8975|745549|O|115110.77|1997-09-23|2-HIGH|Clerk#000004229|0|lites. stealthily unusual deposits across the ideas cajole blithely b| +9000|188666|F|80025.19|1993-06-07|3-MEDIUM|Clerk#000003666|0|al, even instructions. instructions | +9001|653252|O|148100.28|1998-07-19|4-NOT SPECIFIED|Clerk#000004986|0|ual deposits. idly unusual ideas sleep caref| +9002|703270|O|44640.81|1996-05-21|4-NOT SPECIFIED|Clerk#000003344|0|bove the blithely stealthy requests. slyly even requests use quickly. re| +9003|603647|O|224256.51|1995-11-22|5-LOW|Clerk#000001654|0|jole alongside of the regular, final forges? carefully u| +9004|243688|F|104701.42|1994-08-15|4-NOT SPECIFIED|Clerk#000001881|0|thely bold asymptotes haggle slyly above the blithely bold ideas| +9005|639295|F|262414.68|1994-01-03|4-NOT SPECIFIED|Clerk#000003232|0|ecial foxes. furiously regular instructions cajole alongsid| +9006|100154|O|195380.70|1997-06-04|2-HIGH|Clerk#000003159|0|ns among the furiously bo| +9007|286642|O|218081.58|1997-07-20|5-LOW|Clerk#000001630|0|ng the final deposit| +9032|323057|O|122220.37|1996-12-19|4-NOT SPECIFIED|Clerk#000000290|0|ely even ideas. blithely regular excuses| +9033|352484|O|37387.00|1996-11-16|3-MEDIUM|Clerk#000004543|0|cross the busy grouches. carefully ironic deposits about t| +9034|682147|O|76729.70|1997-04-12|3-MEDIUM|Clerk#000004373|0|lithely at the fluffily regular requests. quickly even foxes slee| +9035|330097|O|80302.69|1995-09-14|4-NOT SPECIFIED|Clerk#000002835|0|ites sleep after the ironic, final theodolites. fluffily unusual instructi| +9036|183647|F|276599.91|1992-09-07|3-MEDIUM|Clerk#000004836|0|eodolites. ironic, final theodolites haggle final pin| +9037|300907|F|185182.88|1993-08-25|3-MEDIUM|Clerk#000000900|0| silent, regular theodolites about the u| +9038|79180|F|37553.42|1994-01-31|3-MEDIUM|Clerk#000004817|0|dle ideas kindle stealthily. furiously ev| +9039|253808|F|11548.47|1992-06-06|5-LOW|Clerk#000000525|0|deposits kindle blithely. deposits wake quickly according to t| +9064|486596|F|144466.02|1994-06-12|3-MEDIUM|Clerk#000000626|0|ns wake after the blithely final packages. furio| +9065|202168|O|302227.29|1995-10-25|1-URGENT|Clerk#000004549|0| the carefully brave accounts. even, regular pinto beans | +9066|325043|O|103129.63|1996-11-12|4-NOT SPECIFIED|Clerk#000002051|0|he special asymptotes boost quickly furiously final requests. slyly ir| +9067|739076|F|77377.33|1994-11-23|5-LOW|Clerk#000002886|0| carefully ironic instructions nag. iron| +9068|146618|F|126470.33|1992-01-23|1-URGENT|Clerk#000003673|0| sometimes bold foxes boost fluffily along the ironic packages. enticingl| +9069|446806|F|126358.39|1994-01-24|1-URGENT|Clerk#000000685|0|after the carefully final instructions. blithely close depos| +9070|461908|O|175531.92|1996-12-23|5-LOW|Clerk#000003581|0|equests. furiously even| +9071|36232|F|11213.65|1992-04-05|3-MEDIUM|Clerk#000000050|0|equests along the slyly slow packages sleep slyly| +9096|675947|O|283968.37|1998-03-13|5-LOW|Clerk#000004667|0|detect alongside of the bold packages. even | +9097|387847|O|48126.13|1998-04-02|4-NOT SPECIFIED|Clerk#000003172|0|eposits wake quickly ironic sheaves. waters sleep fluffily alo| +9098|280081|F|237898.93|1992-09-08|4-NOT SPECIFIED|Clerk#000000816|0|gular platelets use quickly. | +9099|292264|O|254612.52|1998-02-01|1-URGENT|Clerk#000003876|0|e slyly above the quickly regular dugouts. regular pac| +9100|297787|O|87497.49|1996-09-20|4-NOT SPECIFIED|Clerk#000001628|0|ic ideas. slyly thin pinto beans are. fluffily unusual requests han| +9101|124088|O|297644.79|1996-08-13|3-MEDIUM|Clerk#000003436|0|nic accounts. even pearls nag slyly final ideas| +9102|531949|F|307242.87|1994-01-03|5-LOW|Clerk#000001030|0|ke brave requests. blithely special pearls use slyly aga| +9103|449665|F|43886.25|1992-10-21|4-NOT SPECIFIED|Clerk#000004059|0|. instructions are according to the ironic requests. foxes haggle c| +9128|499858|F|154978.66|1994-10-26|2-HIGH|Clerk#000001262|0|beans. forges nag blithely carefully dogged | +9129|349880|F|172953.50|1995-01-02|5-LOW|Clerk#000004874|0|ses after the express p| +9130|424973|O|127769.80|1995-12-06|5-LOW|Clerk#000004709|0|usly even forges alongside | +9131|260239|O|116316.53|1998-05-19|2-HIGH|Clerk#000001741|0|eans are. furiously express accounts haggle. ironic pinto beans across| +9132|555394|O|68263.15|1997-09-20|1-URGENT|Clerk#000000274|0|ly. ruthlessly ironic instruct| +9133|738536|O|61769.23|1997-09-16|5-LOW|Clerk#000004177|0| final deposits. regular pinto beans use | +9134|67370|F|240926.25|1994-07-19|5-LOW|Clerk#000004326|0|y regular hockey players | +9135|530501|O|44806.22|1998-04-02|3-MEDIUM|Clerk#000001228|0|l warhorses. slyly bold packages wake carefully across the carefully | +9160|128414|F|99913.42|1994-10-07|2-HIGH|Clerk#000002013|0|owly final requests. even instructions dou| +9161|491926|O|3781.51|1995-06-04|4-NOT SPECIFIED|Clerk#000000306|0|venly pending pinto beans. blithely final accounts cajole. blithe| +9162|544909|O|33444.30|1995-08-31|4-NOT SPECIFIED|Clerk#000002896|0|p across the idly ironic asymptotes. b| +9163|34396|F|106082.48|1993-08-20|2-HIGH|Clerk#000002623|0|blithely regular packages. bold dolphins wake furiously abou| +9164|561763|O|148690.97|1995-10-23|2-HIGH|Clerk#000003637|0|k instructions. carefully even instruct| +9165|526343|O|220983.51|1998-07-15|4-NOT SPECIFIED|Clerk#000002035|0| ironic packages dazzle. furiously final ideas cajole slyly | +9166|736294|F|78725.80|1993-10-27|3-MEDIUM|Clerk#000004386|0|regular accounts detect | +9167|616921|F|105272.50|1992-05-20|1-URGENT|Clerk#000001537|0|mong the thin deposits. pending, special packages cajole requests. re| +9192|562010|F|14845.96|1993-06-08|4-NOT SPECIFIED|Clerk#000001796|0|oldly regular accounts. bl| +9193|197236|O|262301.49|1997-03-07|2-HIGH|Clerk#000001277|0|e. quickly ironic dependencies hang slyly above the carefully expr| +9194|689537|F|3151.39|1993-09-13|2-HIGH|Clerk#000004509|0|e the furiously ironic ideas. express, final theodolites are carefu| +9195|38968|O|231440.53|1998-01-07|3-MEDIUM|Clerk#000002042|0|en orbits boost alongside of the furiously final ideas. slyly pending accounts| +9196|174178|F|43785.84|1993-09-09|1-URGENT|Clerk#000003272|0|boost quickly carefully final packages. even, ironic deposits a| +9197|158728|O|125576.67|1997-09-24|2-HIGH|Clerk#000003812|0|sly against the carefully final courts. care| +9198|725528|F|128215.58|1994-08-23|1-URGENT|Clerk#000002660|0|t the bold instructions. asymptotes nag fluffil| +9199|443959|O|127155.82|1996-10-13|1-URGENT|Clerk#000002535|0|ingly ironic deposits boost slyly.| +9224|609727|F|335716.95|1993-03-06|5-LOW|Clerk#000004616|0|ounts. express foxes are. carefully final deposits was. sly| +9225|403522|O|334532.18|1997-02-05|2-HIGH|Clerk#000000761|0|n requests haggle blithely after the blithely special reque| +9226|474850|F|242654.58|1994-01-28|1-URGENT|Clerk#000000045|0|xcuses are against the | +9227|34987|O|71514.35|1995-12-05|5-LOW|Clerk#000003802|0|ronic accounts believe carefully about the | +9228|17914|F|102057.02|1993-10-02|4-NOT SPECIFIED|Clerk#000000180|0| even pinto beans haggle carefully regu| +9229|311236|O|242309.12|1997-09-20|5-LOW|Clerk#000001175|0|ructions. furiously final dependencies u| +9230|429212|P|218220.25|1995-04-24|4-NOT SPECIFIED|Clerk#000001491|0|y after the sometimes ironic instructions. final, special | +9231|250594|O|87961.35|1997-01-15|5-LOW|Clerk#000000817|0|cial dependencies use thinly about the sl| +9256|464972|O|114669.52|1996-12-29|4-NOT SPECIFIED|Clerk#000000193|0|ously final accounts. furiously regular deposits use blithely even accounts. i| +9257|527981|F|131529.97|1992-05-07|3-MEDIUM|Clerk#000003162|0|uests affix blithely furiously express pinto beans. foxes are si| +9258|510118|O|101096.73|1996-05-13|2-HIGH|Clerk#000004068|0|nal packages nag blithely blithely thin sheaves. packages affix| +9259|282373|F|13490.28|1993-05-12|3-MEDIUM|Clerk#000001640|0|cuses. blithely pending pinto bea| +9260|581639|O|105894.57|1996-09-25|3-MEDIUM|Clerk#000002451|0|ously unusual excuses cajole above the regular packages. furiously pending acc| +9261|97748|F|117811.15|1992-07-13|4-NOT SPECIFIED|Clerk#000004383|0|lithely special accounts. furiously regular requests wake | +9262|339863|F|92377.48|1992-04-16|5-LOW|Clerk#000004212|0|ccounts sleep across the blithely bold account| +9263|73942|O|59806.36|1996-02-02|4-NOT SPECIFIED|Clerk#000003821|0|hely even accounts wake slyly dep| +9288|724510|F|171454.56|1993-07-19|4-NOT SPECIFIED|Clerk#000000102|0|ly across the blithely unusual accounts: | +9289|587915|O|208169.88|1998-05-05|5-LOW|Clerk#000002284|0|quests. final accounts according to | +9290|571177|O|34622.53|1995-06-20|1-URGENT|Clerk#000001191|0| asymptotes are. blithely ironic packages are carefully slyl| +9291|512234|F|242167.99|1994-07-25|5-LOW|Clerk#000001565|0|structions against the blithely ironic theodolites x-ray blit| +9292|612730|O|188783.18|1995-07-04|1-URGENT|Clerk#000001976|0| blithely express pac| +9293|647162|O|241346.97|1995-08-06|1-URGENT|Clerk#000000359|0|its. pending ideas are furiously regular request| +9294|347591|F|162547.44|1992-06-13|5-LOW|Clerk#000004038|0|ully within the fluffily regular deposits. furiously pending depe| +9295|199366|O|109492.18|1996-11-15|2-HIGH|Clerk#000001158|0|haggle. final accounts nag. slyly ir| +9320|480173|O|115095.21|1996-12-13|3-MEDIUM|Clerk#000004901|0|fily express excuses use quietly. pending excuses again| +9321|261784|F|97436.52|1992-01-25|4-NOT SPECIFIED|Clerk#000000676|0|s are busily. ironic, special accounts sleep about the slyly| +9322|277819|O|178510.76|1997-05-16|1-URGENT|Clerk#000004071|0|ans. unusual, final pinto beans cajole fur| +9323|529975|O|7480.53|1996-02-18|5-LOW|Clerk#000002272|0|posits cajole. carefully bold theodolites ac| +9324|271895|O|121503.09|1997-11-02|2-HIGH|Clerk#000001306|0|final forges doubt furiously before the slyly express requests. furious| +9325|726650|F|328416.02|1993-06-08|4-NOT SPECIFIED|Clerk#000001344|0|are slyly ironic deposits. slyly pending ideas | +9326|544378|O|93268.70|1997-02-06|4-NOT SPECIFIED|Clerk#000001841|0| evenly above the slyly silent | +9327|99532|F|13537.50|1993-10-31|3-MEDIUM|Clerk#000001506|0|rding to the pending deposits haggle beside the dependencies? carefully pend| +9352|320342|O|216325.35|1997-04-15|3-MEDIUM|Clerk#000000136|0|ccounts are fluffily fluffily regular dependen| +9353|477635|F|277475.87|1993-07-23|3-MEDIUM|Clerk#000003900|0|ly regular deposits cajole carefully pear| +9354|348947|F|82868.04|1995-01-07|1-URGENT|Clerk#000000562|0|al pinto beans. accounts nag quickly slyly regular foxes. depths boost caref| +9355|492262|F|150033.67|1992-07-01|3-MEDIUM|Clerk#000003715|0|ly ironic accounts snooze. | +9356|177107|F|134450.34|1992-04-17|2-HIGH|Clerk#000002565|0| platelets solve blithel| +9357|631522|F|68210.03|1993-12-22|5-LOW|Clerk#000003287|0|mptotes are blithely: carefully regular pinto beans use blithely a| +9358|709346|O|284178.05|1995-12-28|1-URGENT|Clerk#000004301|0|xpress dolphins. ironic gifts against the regular pin| +9359|727219|O|152832.97|1995-11-10|1-URGENT|Clerk#000004142|0|l deposits print to the blithely bold theodolites. fluffily | +9384|348901|F|245309.73|1994-12-08|1-URGENT|Clerk#000001578|0| against the blithe theodolites unwind above the carefully ironic orbits. blit| +9385|476866|O|60255.14|1996-06-27|4-NOT SPECIFIED|Clerk#000001715|0|eans boost. furiously regu| +9386|176041|F|109643.89|1993-07-06|1-URGENT|Clerk#000004745|0|lites are against the slyly sly theodolites. iron| +9387|697826|F|113769.43|1994-07-26|3-MEDIUM|Clerk#000002876|0|carefully unusual, special theodolites. blithel| +9388|602395|O|138244.37|1996-03-10|2-HIGH|Clerk#000004144|0|ully final pinto beans believe carefully; even theodoli| +9389|189701|O|113142.82|1995-08-23|2-HIGH|Clerk#000000141|0|ss deposits. special theodolites am| +9390|47356|F|205043.91|1993-01-05|5-LOW|Clerk#000002684|0|quickly. theodolites wake carefully. pinto beans caj| +9391|154534|F|131572.43|1995-02-10|2-HIGH|Clerk#000000706|0|y dependencies. eve| +9416|743326|F|236404.29|1994-05-15|2-HIGH|Clerk#000004691|0|; foxes wake regular requests. ironic dependencies may cajole doggedly ins| +9417|297224|O|98037.51|1995-06-02|1-URGENT|Clerk#000004118|0|slyly regular deposits. bold platelets wake| +9418|441250|F|176620.43|1994-04-05|3-MEDIUM|Clerk#000004682|0|eodolites. furiously even requests boos| +9419|87029|F|195004.40|1994-10-16|2-HIGH|Clerk#000001951|0|yly even packages engage carefully even theodolites. furi| +9420|184417|O|176695.05|1995-07-15|4-NOT SPECIFIED|Clerk#000003771|0|ges breach against the unusual, regular sheaves. quick reque| +9421|486580|F|60257.54|1994-08-01|5-LOW|Clerk#000003250|0|ccounts. bold, dari| +9422|694631|O|15128.60|1997-05-13|4-NOT SPECIFIED|Clerk#000003984|0|ithely regular requests cajole about the slyly exp| +9423|159703|O|93795.67|1998-06-27|3-MEDIUM|Clerk#000000782|0|refully unusual sentiments. caref| +9448|601444|O|145738.61|1998-07-11|1-URGENT|Clerk#000001539|0|kages. furiously even re| +9449|690715|F|67566.85|1993-02-15|2-HIGH|Clerk#000004053|0|ly blithely pending Tiresias. q| +9450|324901|O|299298.49|1997-09-18|2-HIGH|Clerk#000002797|0|ct blithely across the carefully s| +9451|586183|O|12023.51|1996-04-22|5-LOW|Clerk#000002835|0|et instructions wake. boldly s| +9452|724330|F|177417.14|1994-12-13|5-LOW|Clerk#000002256|0|uffily ironic asymptotes. slyly bold deposits acros| +9453|533858|F|25500.18|1992-11-04|3-MEDIUM|Clerk#000001687|0|deas. slyly regular accounts wake slyly special packages. careful| +9454|290492|F|11163.23|1993-04-11|4-NOT SPECIFIED|Clerk#000004392|0|ckly instructions. pinto beans solve after the special requests. | +9455|541973|O|87096.26|1997-11-09|4-NOT SPECIFIED|Clerk#000003473|0|s promise ironic, speci| +9480|177025|P|189656.95|1995-03-11|3-MEDIUM|Clerk#000000599|0| dolphins ought to wake slyly. quickly ironic accounts us| +9481|2792|O|131256.18|1996-12-21|5-LOW|Clerk#000001155|0|ndencies above the quickly express theodolites detect slyly carefully spec| +9482|420667|F|202061.52|1995-01-20|5-LOW|Clerk#000000812|0|uriously special deposits wake carefully across the slyly final dependencie| +9483|643436|O|26233.61|1998-02-06|1-URGENT|Clerk#000001493|0|ully bold ideas are. special accounts haggle blithely expr| +9484|727736|O|123715.45|1996-02-26|5-LOW|Clerk#000004157|0|ncies cajole blithely r| +9485|52871|F|434234.42|1994-12-20|5-LOW|Clerk#000000513|0| quickly regular accounts. slyly ironic foxes sleep blithely.| +9486|590461|O|77861.43|1997-11-16|5-LOW|Clerk#000003057|0|le quickly. quickly pending dependencies are carefully. packages are slyly the| +9487|606533|F|399377.26|1994-09-09|1-URGENT|Clerk#000001337|0| accounts among the carefull| +9512|738980|O|83632.88|1998-04-28|3-MEDIUM|Clerk#000002407|0|. final foxes affix blithely bold asymptotes. special packages after| +9513|28015|F|133777.99|1992-04-30|4-NOT SPECIFIED|Clerk#000002490|0|he slyly unusual packages wake slyly about the instruction| +9514|590689|F|294651.18|1994-09-10|1-URGENT|Clerk#000004213|0|he regular, final pa| +9515|702805|O|103827.97|1997-10-11|4-NOT SPECIFIED|Clerk#000004511|0|. slyly regular pearls a| +9516|267847|F|183458.28|1994-10-02|5-LOW|Clerk#000003114|0|uickly. bold requests unwind carefu| +9517|202510|F|149941.29|1992-06-18|2-HIGH|Clerk#000002165|0| carefully bold theodolites haggle. final pinto beans | +9518|62686|F|46782.98|1992-01-18|2-HIGH|Clerk#000004216|0|final, regular dependencies wake careful| +9519|544822|F|153930.51|1992-06-16|1-URGENT|Clerk#000002339|0|silent deposits. slyly special packages affix sometimes. fluffil| +9544|64708|F|206738.63|1993-04-30|2-HIGH|Clerk#000004784|0|ly silent dependencies about the quickly final foxes sleep furiously| +9545|40909|F|207034.57|1992-10-22|1-URGENT|Clerk#000003994|0|. furiously special platelets boost blithely. furiously ironi| +9546|547507|F|176300.29|1993-11-22|5-LOW|Clerk#000001657|0|cuses sleep. blithely even theodolites detect blithely across the express pin| +9547|183295|F|245128.49|1994-03-13|2-HIGH|Clerk#000004214|0|gular sentiments boost fluffily. packages| +9548|372091|O|24331.66|1995-10-11|1-URGENT|Clerk#000004178|0|nag final, ironic instructions. blithely ironic packages nod slyly sheaves| +9549|232768|O|177395.91|1995-12-24|2-HIGH|Clerk#000004136|0|olphins. regular pinto beans snooze. blithely iron| +9550|103414|F|24457.02|1994-07-11|2-HIGH|Clerk#000004431|0|packages. special accounts cajole fluffily furiously ironic packages. fu| +9551|310384|F|42228.54|1992-05-26|1-URGENT|Clerk#000001669|0|instructions. accounts ar| +9576|344453|O|22480.80|1995-07-02|3-MEDIUM|Clerk#000000436|0| pending asymptotes. final theodoli| +9577|716675|F|265155.74|1995-02-17|5-LOW|Clerk#000004626|0|y: instructions are of the unusual dolphins. even accounts na| +9578|145853|F|278768.72|1995-01-03|5-LOW|Clerk#000003898|0| the fluffily pending deposits. requests use busily requests. car| +9579|342976|O|280750.05|1997-05-26|5-LOW|Clerk#000001657|0|structions engage according to the blithely unusual excuses. quickly even | +9580|619991|F|72089.43|1992-01-31|5-LOW|Clerk#000003229|0|ckly final deposits according to the instructions are according to th| +9581|434092|O|386251.32|1995-09-03|2-HIGH|Clerk#000004094|0|usly even packages. even requests impress| +9582|530192|O|200340.01|1995-12-09|5-LOW|Clerk#000003875|0|iously even sauternes boost. unusual, silent packages haggle again| +9583|179494|O|23201.62|1998-07-26|5-LOW|Clerk#000002072|0|deposits. deposits promise. special, final foxes cajole f| +9608|241174|O|39100.60|1995-06-04|5-LOW|Clerk#000003895|0|xes would use blithely. doggedly regular dolphins wake. regular, regular asym| +9609|402469|O|250566.34|1995-11-12|1-URGENT|Clerk#000000991|0|ic, regular accounts sleep quickly-- ironic a| +9610|28135|O|136631.53|1997-08-13|3-MEDIUM|Clerk#000000473|0| packages integrate r| +9611|359377|F|53604.49|1995-01-09|5-LOW|Clerk#000004139|0|al dependencies-- furiously regular packages wake bravely blithely| +9612|270652|O|73420.22|1998-01-29|5-LOW|Clerk#000002583|0| fluffily dogged ideas use along the blithely even excuses. quickly special | +9613|71023|F|195907.47|1993-06-26|3-MEDIUM|Clerk#000000169|0|osits haggle slyly ironic gifts. slyly regular frets integrate silent i| +9614|415637|F|233704.53|1992-02-22|2-HIGH|Clerk#000001863|0| blithely. ironic, b| +9615|97300|O|211584.76|1997-01-10|1-URGENT|Clerk#000000907|0|cuses sublate blithely furiously ironic deposits. quickly regular deposi| +9640|313588|O|157435.47|1995-06-18|2-HIGH|Clerk#000000012|0|ns! special requests wake fluffily along the final pinto beans. furiously sp| +9641|220747|O|188429.37|1996-05-14|4-NOT SPECIFIED|Clerk#000004032|0|slyly special deposits nod quickly. even dep| +9642|582790|O|39705.09|1997-11-20|5-LOW|Clerk#000004448|0|ut the furiously pending platelets. furiously bold deposits sleep quic| +9643|686650|F|115428.63|1993-04-04|2-HIGH|Clerk#000003595|0|counts are carefully about the qu| +9644|260716|F|325114.05|1993-12-17|1-URGENT|Clerk#000000124|0|ar requests wake slyly across the carefully even requ| +9645|346948|F|25640.78|1992-08-20|3-MEDIUM|Clerk#000003997|0| carefully. furiously bold accounts are: brave pa| +9646|625280|F|140943.15|1992-12-03|1-URGENT|Clerk#000003812|0|e final theodolites. special dolphin| +9647|68998|P|197098.59|1995-03-18|5-LOW|Clerk#000001772|0|arefully. blithely ironic depend| +9672|133141|O|51926.11|1997-11-04|4-NOT SPECIFIED|Clerk#000002821|0| furiously final theodolites! unusual, iro| +9673|417827|F|155717.80|1993-11-06|2-HIGH|Clerk#000000269|0| blithely final theodolites thrash bol| +9674|156343|F|129153.83|1993-12-31|4-NOT SPECIFIED|Clerk#000003991|0|furiously unusual ideas over the brave deposits shall| +9675|391087|O|100037.37|1997-09-17|1-URGENT|Clerk#000001928|0|y final deposits. bold deposits about the final packages ha| +9676|716938|O|42762.42|1997-05-09|5-LOW|Clerk#000003876|0|uches-- slyly ironic accounts detect sl| +9677|52453|O|141819.99|1995-10-30|1-URGENT|Clerk#000001945|0|gle thinly express, regular accounts. quickly ironic pinto beans believe s| +9678|319784|F|148531.27|1992-02-21|1-URGENT|Clerk#000002975|0| bold deposits. fluffily regular dep| +9679|107528|O|72232.30|1996-01-29|4-NOT SPECIFIED|Clerk#000002728|0|r the slyly regular dep| +9704|462284|O|159195.59|1996-01-01|4-NOT SPECIFIED|Clerk#000000733|0|riously ironic requests haggle furiously even pint| +9705|342574|F|215577.39|1992-02-19|3-MEDIUM|Clerk#000004021|0| are. ironic asymptotes detect carefully. blithely fina| +9706|609301|O|19257.01|1996-02-12|5-LOW|Clerk#000003702|0|. slyly final deposits use ironically across the fluffily ev| +9707|738872|O|87116.19|1996-01-10|1-URGENT|Clerk#000004234|0|are regular deposits. ruthlessly | +9708|456694|O|141115.45|1995-08-26|3-MEDIUM|Clerk#000000093|0|nic accounts affix according to the slyly unusual ideas: silently ironi| +9709|142784|F|279960.47|1994-07-17|2-HIGH|Clerk#000001891|0|along the furiously silent deposits. carefully unusual foxes grow furi| +9710|504644|P|338647.94|1995-05-24|3-MEDIUM|Clerk#000003122|0|lithely about the never ironic packages. asym| +9711|543748|F|169694.37|1993-01-27|3-MEDIUM|Clerk#000004544|0|nto beans detect ca| +9736|742088|F|305579.37|1993-11-16|3-MEDIUM|Clerk#000004143|0|-- furiously unusual excuses | +9737|506680|F|88173.97|1994-03-11|2-HIGH|Clerk#000004166|0|. even, regular ideas wake. dugouts beneath the b| +9738|259915|O|54303.05|1995-08-27|3-MEDIUM|Clerk#000001697|0|ing to the carefully special dependencies! slyly special theodolites use entic| +9739|383257|F|297411.65|1992-06-22|5-LOW|Clerk#000001791|0|iously among the slyly final packages. carefully bold depend| +9740|398528|F|114093.45|1993-04-30|5-LOW|Clerk#000001801|0|c asymptotes are against the deposits. blithely pending pi| +9741|555535|F|10318.58|1994-10-08|5-LOW|Clerk#000000616|0|cajole furiously regular warthogs. boldly final accounts haggle final pac| +9742|113830|O|11384.51|1996-10-17|2-HIGH|Clerk#000001760|0|g carefully across | +9743|621649|F|48363.66|1993-02-01|4-NOT SPECIFIED|Clerk#000000891|0|ole bravely along the quickly careful accounts. quickly re| +9768|551281|O|159532.08|1997-08-12|3-MEDIUM|Clerk#000000477|0| courts use furiously besides the furiously final packages. | +9769|620140|F|181930.67|1992-11-30|2-HIGH|Clerk#000003805|0| beans use quickly after the ironic i| +9770|682522|F|192050.73|1993-11-26|4-NOT SPECIFIED|Clerk#000001886|0|kages detect furiously according to the carefully pending ideas. bold, ironic| +9771|634261|O|96357.11|1996-03-02|5-LOW|Clerk#000002846|0|ests. carefully pending requests boost quickly. deposits sleep quickly| +9772|266611|F|196840.33|1994-10-02|2-HIGH|Clerk#000004423|0| above the ironic, pending hockey players. pending, even requests wake f| +9773|404752|O|99306.88|1998-06-27|5-LOW|Clerk#000002518|0|olites wake slyly unusual br| +9774|136394|O|7199.57|1997-02-02|5-LOW|Clerk#000000243|0|e slyly express deposits. furiously pending f| +9775|361846|F|17537.29|1993-11-07|4-NOT SPECIFIED|Clerk#000003549|0|eodolites. pending | +9800|518060|F|177066.33|1994-02-12|5-LOW|Clerk#000004112|0|kages mold fluffily. express, idle accounts nag furiously across the car| +9801|281662|O|160936.33|1997-07-28|3-MEDIUM|Clerk#000001699|0|ets according to the fluffily even accounts use blithely after t| +9802|641075|F|239961.96|1993-03-27|3-MEDIUM|Clerk#000001086|0|ng the accounts. bold packages cajole slyly slyly ironic multipliers: quickl| +9803|31867|O|135155.85|1998-03-30|4-NOT SPECIFIED|Clerk#000001950|0|y ironic packages according to the bold packages boost| +9804|78377|O|97694.12|1997-09-16|5-LOW|Clerk#000004229|0|ites affix above the fur| +9805|270730|F|266744.12|1993-03-02|4-NOT SPECIFIED|Clerk#000001309|0|icing dependencies affix quickly busy, even instructions| +9806|657859|F|92026.00|1994-12-21|4-NOT SPECIFIED|Clerk#000000955|0| deposits. furiously even courts use according to the slyly bold deposit| +9807|115421|O|38628.21|1997-08-05|2-HIGH|Clerk#000000039|0|r pinto beans wake according to the quickly bol| +9832|364694|F|24934.88|1993-07-13|2-HIGH|Clerk#000000097|0|ress instructions. blithely special accounts doze. blithely idle | +9833|395260|O|138366.93|1996-08-11|1-URGENT|Clerk#000000041|0|und the ironic requests.| +9834|374912|F|5799.93|1994-12-06|2-HIGH|Clerk#000001844|0|al theodolites. fluffily even de| +9835|384586|F|164696.96|1993-10-12|2-HIGH|Clerk#000000361|0|p quickly unusual package| +9836|209873|F|192401.28|1993-10-13|1-URGENT|Clerk#000002639|0|ructions haggle blithely carefully final decoys. foxes wake. ironic i| +9837|81019|F|269651.73|1993-05-20|3-MEDIUM|Clerk#000002082|0| foxes wake furiousl| +9838|404797|F|175147.83|1994-10-22|5-LOW|Clerk#000000007|0| after the ironic requests. fluffily regular pearl| +9839|154549|O|216739.16|1996-10-23|1-URGENT|Clerk#000004942|0|hely ironic frays dazzle across the requests. silent pinto beans are| +9864|229982|O|222002.01|1996-05-23|1-URGENT|Clerk#000002341|0|slyly special pinto beans cajole blithely quickly final foxes. unusua| +9865|552631|O|272987.10|1997-03-27|3-MEDIUM|Clerk#000000988|0|usly fluffy asymptotes. blithely unusual deposits wake carefu| +9866|62786|O|232289.52|1996-06-23|1-URGENT|Clerk#000001075|0|express deposits try to are fluffily ironic requests. bold, final i| +9867|729043|O|194914.10|1995-11-17|1-URGENT|Clerk#000004079|0|p furiously pending, final ideas. quickly pending tithes | +9868|266525|O|85303.04|1995-06-30|3-MEDIUM|Clerk#000002929|0|al theodolites: final warthogs eat ideas. furiously iro| +9869|483937|F|60809.85|1993-07-23|1-URGENT|Clerk#000001129|0|y regular, bold realms. furiously furious deposits wake fluffily. ev| +9870|503260|O|33044.63|1995-11-02|1-URGENT|Clerk#000004265|0| about the fluffily bold theodol| +9871|510443|F|109051.26|1993-06-11|2-HIGH|Clerk#000003433|0|gular instructions use ca| +9896|505811|O|140504.30|1995-10-16|5-LOW|Clerk#000000844|0|. furious accounts wake carefully alongside of the packages. regula| +9897|651848|F|296076.27|1992-10-30|4-NOT SPECIFIED|Clerk#000000774|0| express asymptotes should nag after the fluffy orbits. carefully pe| +9898|352471|F|137940.77|1992-07-01|1-URGENT|Clerk#000002264|0|osits into the silent, express ideas are idly| +9899|458150|O|49783.46|1996-11-23|2-HIGH|Clerk#000003939|0|accounts haggle blithely | +9900|619948|F|112512.19|1994-10-18|5-LOW|Clerk#000003106|0|ithely blithe asymptotes boost slyly ca| +9901|442622|F|167111.56|1994-11-13|2-HIGH|Clerk#000004457|0| regular requests sublate caref| +9902|640144|F|255491.53|1993-01-27|3-MEDIUM|Clerk#000004654|0|ar, regular packages. slyly final foxes boost| +9903|131269|F|150864.94|1993-02-08|5-LOW|Clerk#000002819|0|s are. unusual foxes su| +9928|477676|O|215124.16|1998-06-01|1-URGENT|Clerk#000000579|0|of the even requests. ironic, express pinto beans sleep slyly quickly f| +9929|284396|F|119833.35|1992-01-26|5-LOW|Clerk#000001691|0| courts integrate furiously excuses| +9930|84823|O|49599.36|1996-09-07|2-HIGH|Clerk#000004006|0|s. slyly special deposits ha| +9931|602437|O|69514.41|1997-09-10|1-URGENT|Clerk#000000926|0|lar requests. silent | +9932|127375|F|144473.16|1993-04-25|2-HIGH|Clerk#000002148|0|uffily regular instructions. carefully pending acco| +9933|279533|F|287539.48|1995-01-06|4-NOT SPECIFIED|Clerk#000002950|0|en foxes among the iro| +9934|110675|O|253241.66|1997-05-18|4-NOT SPECIFIED|Clerk#000003878|0|ular, unusual deposits. regular theodolites integrate. | +9935|110479|F|317495.30|1992-04-30|3-MEDIUM|Clerk#000003242|0|requests haggle furious| +9960|556499|F|241658.07|1994-09-24|5-LOW|Clerk#000003081|0|eposits haggle slyly unusual notornis. final | +9961|563857|F|297306.74|1994-01-31|1-URGENT|Clerk#000000482|0|s. theodolites sleep quickly after the platelets. qu| +9962|471038|O|172954.43|1997-10-11|2-HIGH|Clerk#000002780|0|lar accounts haggle blithely spe| +9963|481345|F|102566.79|1994-02-02|3-MEDIUM|Clerk#000002606|0|er blithely unusual requests. ideas sleep en| +9964|464401|F|191741.65|1993-02-04|3-MEDIUM|Clerk#000002924|0|y. blithely blithe deposits wake according to the carefully ir| +9965|654299|O|146130.26|1995-10-15|5-LOW|Clerk#000003280|0| regular dependenci| +9966|299119|O|150254.12|1997-03-22|1-URGENT|Clerk#000002451|0|ke carefully. carefully silent packages nag blithely according to the| +9967|20245|F|196189.55|1994-01-14|1-URGENT|Clerk#000003927|0|arefully. carefully express accounts haggle slyly fox| +9992|499558|O|218071.59|1997-01-16|4-NOT SPECIFIED|Clerk#000004655|0|slyly ironic dependencies cajole fur| +9993|546607|O|59402.90|1995-05-04|5-LOW|Clerk#000004717|0| according to the final, ironic theodo| +9994|59575|O|66936.92|1996-10-06|5-LOW|Clerk#000003421|0|ers among the blithely regular packages sleep slyly blithely regul| +9995|743941|O|232510.79|1997-09-21|1-URGENT|Clerk#000000588|0|have to boost blithely furiously f| +9996|163427|O|232951.48|1996-01-12|4-NOT SPECIFIED|Clerk#000001558|0|final Tiresias. express theodolites along the furiou| +9997|201247|O|171613.26|1997-07-12|2-HIGH|Clerk#000002315|0|arefully; slyly regular asymptotes use fluffily doggedly reg| +9998|587396|O|145107.16|1996-12-19|1-URGENT|Clerk#000004591|0|s. furiously bold pinto beans wake carefully among th| +9999|103777|O|168882.79|1997-10-27|3-MEDIUM|Clerk#000003628|0|c theodolites detect carefully express deposits. blithely special | +10024|429796|O|71998.05|1996-03-24|4-NOT SPECIFIED|Clerk#000004448|0| have to wake slyly. deposits wake blithely | +10025|313505|O|78974.55|1996-05-11|4-NOT SPECIFIED|Clerk#000000887|0| carefully ironic theodolites are slyly pending p| +10026|312382|O|21108.38|1997-07-03|3-MEDIUM|Clerk#000001227|0|final, quick theodolites. blithely thin requests sleep fluffily. | +10027|193391|P|129808.44|1995-04-09|1-URGENT|Clerk#000003240|0|xpress courts dazzle about the blithely even foxes. f| +10028|564415|F|68920.41|1992-09-26|5-LOW|Clerk#000002849|0|es. quickly special i| +10029|96164|F|127909.24|1992-04-06|5-LOW|Clerk#000003968|0|pending theodolites. blithely ironic packages integrate quickly| +10030|716615|O|172290.94|1996-02-29|4-NOT SPECIFIED|Clerk#000003777|0|s accounts dazzle blithely. slyly final a| +10031|646001|F|229971.33|1993-09-10|2-HIGH|Clerk#000004167|0|requests are slyly about the | +10056|331504|F|35013.96|1993-08-19|4-NOT SPECIFIED|Clerk#000001678|0|ily ironic accounts cajole quickly final accounts. carefully i| +10057|578758|O|41367.52|1998-07-14|5-LOW|Clerk#000001053|0|y even dolphins sleep quickly outside the express, expre| +10058|430477|O|250677.97|1997-05-15|4-NOT SPECIFIED|Clerk#000001079|0|refully according to the fu| +10059|501352|F|104389.90|1993-06-04|2-HIGH|Clerk#000000869|0|are quickly above the blithely regular foxes-- slyly bold ideas haggle fu| +10060|712864|O|117556.28|1996-04-28|5-LOW|Clerk#000004836|0| across the furiously ironic| +10061|591514|O|188366.50|1995-09-20|5-LOW|Clerk#000004168|0|regular excuses boost: furiously| +10062|299713|O|150859.09|1997-01-30|1-URGENT|Clerk#000001559|0|he accounts. deposits are slyly across the ironic, even accounts. regular do| +10063|275281|O|297394.74|1995-11-23|4-NOT SPECIFIED|Clerk#000002399|0|yly even requests. pending deposits cajole fl| +10088|619475|O|384195.50|1998-06-20|2-HIGH|Clerk#000002592|0|gular platelets. slyly even deposits nag quickly among the depos| +10089|368|F|77799.75|1992-03-01|1-URGENT|Clerk#000002177|0|c ideas above the furiously unusual ideas boost r| +10090|171971|O|295504.92|1997-06-12|5-LOW|Clerk#000004814|0|eans are ironically after the blithely unusual accounts. furi| +10091|561068|O|65705.58|1997-10-02|2-HIGH|Clerk#000000501|0|y after the blithely ironic requests. ex| +10092|113249|O|114491.75|1997-08-17|5-LOW|Clerk#000000545|0|rious instructions haggle after the quickly express deposits. ironic, r| +10093|612499|O|231383.55|1997-08-20|4-NOT SPECIFIED|Clerk#000002011|0|ly final packages across the unus| +10094|519823|O|136824.64|1996-06-26|5-LOW|Clerk#000003003|0|e quickly bold tithes. requests sleep silently. carefu| +10095|646589|F|51171.51|1993-07-14|2-HIGH|Clerk#000004535|0| integrate quickly. express ide| +10120|460645|F|132867.27|1992-08-20|1-URGENT|Clerk#000002242|0|xes are closely ironic packages. exp| +10121|531817|F|231903.98|1994-07-05|2-HIGH|Clerk#000000611|0|out the even, ironic ideas. packages wake quickly. packages sleep | +10122|467024|F|260067.52|1993-08-29|2-HIGH|Clerk#000003971|0|regular platelets. ironic requests boost blithely final, regular instruct| +10123|517727|O|52549.85|1996-09-03|4-NOT SPECIFIED|Clerk#000001212|0|totes. unusual depths are slyly bold reques| +10124|686209|O|121764.99|1997-10-07|3-MEDIUM|Clerk#000003085|0|the blithely ironic ideas. express frets affix. ironic theodolites wake furiou| +10125|363865|F|218987.04|1993-01-30|3-MEDIUM|Clerk#000002943|0|ounts sleep. blithely fin| +10126|701270|O|93708.27|1998-02-25|3-MEDIUM|Clerk#000002191|0|arefully regular excuses haggle blithely across the quickly final accou| +10127|739871|F|50929.23|1995-01-27|5-LOW|Clerk#000002673|0|rding to the silent, silent requests-- final theodolites int| +10152|302|F|209909.00|1993-08-30|3-MEDIUM|Clerk#000002069|0|lithely. slyly express hockey players above the furiously bold foxes haggle | +10153|561292|F|188825.62|1992-10-28|2-HIGH|Clerk#000002703|0|sts are slyly slyly pending dinos. fluffily special deposits ov| +10154|125864|O|180621.64|1998-03-14|1-URGENT|Clerk#000001304|0|ggle. carefully special ideas cajole ironically. fu| +10155|383950|P|259568.25|1995-05-05|3-MEDIUM|Clerk#000003541|0|ly pending requests unwind slyly around the ironic, pending accounts. speci| +10156|29029|F|68216.35|1995-01-16|3-MEDIUM|Clerk#000001765|0|deas. even, ironic ideas poach blithely in place of the | +10157|357325|O|176639.66|1996-11-25|1-URGENT|Clerk#000002059|0| deposits. final, ironic excuses nag against the regular, bold orbits. | +10158|303661|F|118387.03|1992-07-25|2-HIGH|Clerk#000004179|0|are above the furiously ironic foxes. bl| +10159|623935|F|143379.88|1994-12-25|2-HIGH|Clerk#000001639|0| evenly regular asymptotes are after the carefully expr| +10184|695521|F|119248.74|1992-04-28|3-MEDIUM|Clerk#000000129|0|nstructions. pinto beans haggle quickly eve| +10185|117590|F|212061.00|1992-11-06|2-HIGH|Clerk#000002169|0|ial pinto beans. final, ironic cou| +10186|75400|P|247218.50|1995-04-24|1-URGENT|Clerk#000003382|0|ts mold. furiously bold deposits | +10187|488882|F|109205.80|1995-03-10|4-NOT SPECIFIED|Clerk#000001314|0|ns. closely ironic foxes u| +10188|389422|F|193470.91|1994-05-27|3-MEDIUM|Clerk#000001345|0|ns: blithely regular dependencies are. sl| +10189|504178|O|10482.30|1996-07-03|1-URGENT|Clerk#000003314|0|s. foxes cajole carefully unusual pinto b| +10190|188806|F|126959.26|1994-04-04|3-MEDIUM|Clerk#000004065|0|ccording to the slyly| +10191|742364|O|21903.53|1995-08-06|4-NOT SPECIFIED|Clerk#000004534|0|express theodolites cajole. furiously regular foxes are against the idea| +10216|658355|F|253080.39|1992-01-13|3-MEDIUM|Clerk#000003715|0|foxes wake evenly about the regular instructions. slyly fur| +10217|211022|O|106578.42|1996-03-24|5-LOW|Clerk#000004383|0|lose blithely alongside of the courts. blithel| +10218|645853|P|183470.34|1995-04-07|1-URGENT|Clerk#000003176|0|ions sleep between the final, ironic accounts. regular pa| +10219|96952|F|122295.52|1994-08-26|2-HIGH|Clerk#000000738|0|kages cajole slyly fluffily regular instructions. bold accounts are aroun| +10220|441188|F|90711.87|1994-03-15|1-URGENT|Clerk#000002864|0|ending, bold accounts. carefully blithe deposits about the regular, even pa| +10221|531596|O|85077.01|1996-12-21|4-NOT SPECIFIED|Clerk#000001696|0| even theodolites are against the deposits. ironic ideas are ca| +10222|524459|F|174019.69|1995-02-03|5-LOW|Clerk#000004805|0|sts: silent packages are furiously across the final, u| +10223|575251|F|32711.39|1993-05-13|4-NOT SPECIFIED|Clerk#000001108|0|yly-- pending, ironi| +10248|722441|O|130607.01|1997-12-16|2-HIGH|Clerk#000004369|0|ainst the slyly ironic a| +10249|301133|O|168524.83|1996-01-04|2-HIGH|Clerk#000000155|0|old fluffily express pack| +10250|141412|P|56436.68|1995-04-13|1-URGENT|Clerk#000002479|0|ts. slyly even gifts affix quickly deposits. slyly final ideas are s| +10251|691951|F|10022.62|1993-07-07|2-HIGH|Clerk#000004089|0|nst the express, final asymptotes. blith| +10252|94642|P|136029.37|1995-06-05|1-URGENT|Clerk#000002951|0| the final deposits wake carefully unusual accounts| +10253|640078|O|327833.81|1998-04-07|1-URGENT|Clerk#000002278|0|. carefully express deposits after the bold, ironic dolp| +10254|529154|F|211350.93|1994-09-07|5-LOW|Clerk#000000555|0|osits kindle across the blithely silent| +10255|727696|F|140333.42|1992-07-26|3-MEDIUM|Clerk#000002527|0|usly unusual foxes. requests alongside of the | +10280|126220|O|235420.39|1996-12-31|5-LOW|Clerk#000003822|0|ar excuses. furiously final foxes use slyly against the quickly even pac| +10281|379258|O|194270.62|1997-03-31|4-NOT SPECIFIED|Clerk#000001547|0|unts. final, silent packages sleep again| +10282|670489|O|236211.45|1996-05-26|3-MEDIUM|Clerk#000003937|0|frays wake alongside of the | +10283|130537|O|106932.10|1995-06-22|4-NOT SPECIFIED|Clerk#000000522|0| unusual accounts. fluffil| +10284|171395|O|70430.50|1998-02-08|5-LOW|Clerk#000004412|0|g the fluffily even packages. e| +10285|622097|F|205939.84|1992-10-25|2-HIGH|Clerk#000003490|0|uriously express excuses wo| +10286|581137|O|231634.90|1996-04-23|1-URGENT|Clerk#000000946|0|rding to the furiously even packages. carefully regular p| +10287|651874|O|44101.09|1997-12-08|4-NOT SPECIFIED|Clerk#000003792|0| regular notornis. blithely regular packag| +10312|13678|O|154286.88|1996-03-15|2-HIGH|Clerk#000000399|0| even packages nag quickly quickly unusual dinos| +10313|367961|F|219270.19|1993-07-02|3-MEDIUM|Clerk#000000415|0|ggle slyly even accounts. c| +10314|568082|O|89843.60|1998-06-05|2-HIGH|Clerk#000000139|0|tes. fluffily ironic foxes play quietly bold requests| +10315|243866|O|285434.19|1996-09-24|1-URGENT|Clerk#000000664|0|ithely ironic instructions are fl| +10316|646756|F|39155.06|1993-10-05|4-NOT SPECIFIED|Clerk#000000415|0|hely regular dolphins. furiously final accounts are | +10317|270619|F|98534.43|1994-08-11|1-URGENT|Clerk#000001860|0|ccounts. regularly pending packages wake. carefully even requests alongs| +10318|260617|O|166028.08|1996-04-02|5-LOW|Clerk#000002179|0|ic braids. blithely unusual ideas a| +10319|185201|F|149850.54|1993-12-05|3-MEDIUM|Clerk#000000394|0|haggle slyly even ideas. blithely specia| +10344|167107|F|150167.66|1995-01-06|1-URGENT|Clerk#000002990|0|etect above the silent, unusual accounts! furio| +10345|535555|O|81026.45|1997-02-14|5-LOW|Clerk#000002015|0|ound the even accounts. final, even | +10346|305905|F|96858.20|1994-07-19|2-HIGH|Clerk#000001188|0|ckly silent requests. final br| +10347|64993|O|82652.74|1998-05-26|4-NOT SPECIFIED|Clerk#000000771|0|es haggle carefully ironic waters. blithely expres| +10348|318667|O|181942.13|1998-05-10|3-MEDIUM|Clerk#000004124|0| packages are quickly. fluffily even deposits ar| +10349|72382|F|76878.74|1994-08-15|2-HIGH|Clerk#000004830|0|s. final, even platelets inte| +10350|747631|F|21211.53|1993-06-27|4-NOT SPECIFIED|Clerk#000001627|0|es. slyly regular as| +10351|674140|O|290461.58|1995-10-16|3-MEDIUM|Clerk#000002515|0|tect fluffily. special deposits are blithely express frets: pending packag| +10376|748615|P|113358.48|1995-04-04|2-HIGH|Clerk#000004342|0|ously along the carefully special ideas. carefully ironic deposits sleep fur| +10377|703672|O|219386.52|1996-02-26|4-NOT SPECIFIED|Clerk#000001807|0|slyly unusual theodolites. slyly unusual acc| +10378|601960|O|136322.48|1997-06-29|5-LOW|Clerk#000000474|0|thely pending deposits wake according to th| +10379|379012|O|356228.09|1998-08-02|5-LOW|Clerk#000002763|0|posits cajole. packages cajole along the blithely ironic courts. quiet| +10380|284074|F|114611.13|1993-09-20|1-URGENT|Clerk#000003192|0|foxes: quick foxes use blithely. special packages cajole. regular| +10381|667018|F|116607.45|1992-12-11|2-HIGH|Clerk#000002484|0|ites. accounts boost fluffily across the blithely bold requests. accounts| +10382|318595|O|92357.62|1997-03-13|3-MEDIUM|Clerk#000002183|0| final instructions sleep quickly final deposits? blithely ironic packa| +10383|343085|O|157288.86|1997-03-16|4-NOT SPECIFIED|Clerk#000002144|0|deposits cajole regular instructions. requests integrate slyly against | +10408|225709|O|240576.21|1997-06-04|2-HIGH|Clerk#000000766|0|heodolites sleep furiously until the ironic pack| +10409|740578|O|134176.17|1996-04-24|1-URGENT|Clerk#000002577|0|gside of the fluffily stealthy accounts. bold, bold foxes nag furiously. fin| +10410|613744|F|247463.35|1992-11-15|2-HIGH|Clerk#000002900|0|counts cajole against the ironic, ironic platelets. slyly bold packages are | +10411|420925|O|240810.31|1995-09-11|1-URGENT|Clerk#000004304|0| platelets detect quickly. slyly even court| +10412|463604|O|80149.93|1996-05-11|4-NOT SPECIFIED|Clerk#000003706|0|l theodolites. furiously ironic dolphins boost. quickly even deposits i| +10413|34099|O|146211.51|1997-07-20|2-HIGH|Clerk#000000128|0| unusual dependencies wake furiously| +10414|74131|O|235269.93|1997-02-20|1-URGENT|Clerk#000004996|0| are blithely according to the furiously regul| +10415|151258|O|32691.30|1996-07-22|1-URGENT|Clerk#000002684|0|olites believe carefully ironic ins| +10440|420736|O|74104.06|1996-09-04|3-MEDIUM|Clerk#000001480|0|ts. slyly bold requests h| +10441|288272|O|208639.25|1997-10-05|5-LOW|Clerk#000003913|0|r asymptotes. express| +10442|726733|O|230614.53|1995-12-25|4-NOT SPECIFIED|Clerk#000001813|0|ly slow requests. instructions wake according to the furiously special | +10443|432697|F|191841.90|1993-01-23|1-URGENT|Clerk#000000781|0| deposits wake slyly even| +10444|337771|P|170137.45|1995-05-03|5-LOW|Clerk#000002673|0| packages. blithely final accounts boost carefully final dependencies! furious| +10445|148447|O|105175.61|1997-09-08|5-LOW|Clerk#000002413|0| furiously above the express | +10446|424537|O|169746.40|1998-06-15|5-LOW|Clerk#000002434|0|ag carefully after the sl| +10447|429191|F|259196.60|1992-11-10|2-HIGH|Clerk#000002790|0|ing to the blithely even foxes. slyly unusual foxes solve regular de| +10472|662324|F|281051.68|1994-02-22|5-LOW|Clerk#000002249|0|tions against the furiously ironic pa| +10473|171577|O|235789.56|1997-05-16|3-MEDIUM|Clerk#000002565|0|ggle blithely fluffily even pinto beans. carefully regu| +10474|693646|F|67386.26|1992-02-10|2-HIGH|Clerk#000003646|0| packages about the special pinto beans use| +10475|98779|F|80731.01|1994-08-04|3-MEDIUM|Clerk#000004120|0|hely even courts detect blithely. carefully final pinto beans| +10476|400030|O|176101.13|1996-09-22|5-LOW|Clerk#000002985|0|lly final dependencies. slyly regular foxes inte| +10477|282427|O|168136.75|1997-06-10|1-URGENT|Clerk#000003844|0|nal theodolites. packages hang quickly even accounts. furiou| +10478|747107|F|29035.42|1993-03-17|5-LOW|Clerk#000000033|0|ns wake slyly. braids sublate. iron| +10479|118787|F|189935.74|1993-05-21|3-MEDIUM|Clerk#000002014|0| slyly slyly careful platelets. even ideas accord| +10504|694513|O|258091.11|1995-10-15|3-MEDIUM|Clerk#000004811|0|ter the final instructions. blithely silent instructions against the| +10505|411835|O|250389.17|1998-01-02|5-LOW|Clerk#000001372|0|pinto beans: carefully final ideas thrash slyly alongside of the final, s| +10506|706997|F|42102.98|1992-04-25|4-NOT SPECIFIED|Clerk#000002207|0|use. slow, ironic packages cajole across the express, ironic de| +10507|236599|F|124136.97|1993-07-07|4-NOT SPECIFIED|Clerk#000001496|0|. slyly ironic dolphins nag. pending packages use blit| +10508|735787|O|264017.94|1995-11-26|4-NOT SPECIFIED|Clerk#000004544|0|requests nag carefully final| +10509|345613|O|166050.91|1997-08-14|5-LOW|Clerk#000004470|0|ep above the even foxes.| +10510|691738|O|126721.30|1997-10-21|4-NOT SPECIFIED|Clerk#000001130|0|ages. final accounts along the slyly ironic wa| +10511|278260|F|180149.61|1994-10-15|5-LOW|Clerk#000003443|0|s poach carefully. ironic| +10536|448474|O|24785.97|1996-01-01|2-HIGH|Clerk#000003780|0|ar platelets boost b| +10537|1093|O|96151.90|1998-01-30|2-HIGH|Clerk#000001144|0|s wake carefully pending packages. idly unusual packages from the slyly bold d| +10538|366380|F|317520.75|1992-03-05|1-URGENT|Clerk#000000920|0|ts sleep against the slyly| +10539|239339|O|64316.20|1996-11-27|4-NOT SPECIFIED|Clerk#000002754|0|otes haggle above the furiously regular asymptotes. fluffily final packages| +10540|305558|O|138501.16|1997-04-22|1-URGENT|Clerk#000000648|0|the fluffily final deposits. final depos| +10541|253414|F|225399.19|1994-10-05|3-MEDIUM|Clerk#000003274|0| affix around the final accounts. slyly final requests sleep slyly alongside o| +10542|625436|F|201235.24|1994-11-18|5-LOW|Clerk#000004621|0|theodolites integrate fluffily. furiously regular packages w| +10543|450812|P|214750.46|1995-05-07|1-URGENT|Clerk#000003437|0|ly ironic packages wake fluffily according to the requests. furiously regu| +10568|285733|F|232073.64|1994-12-22|1-URGENT|Clerk#000004256|0|to beans was ironic ideas. car| +10569|36449|O|274326.65|1998-06-07|4-NOT SPECIFIED|Clerk#000000465|0|ts was fluffily. unusual, even packages are fluffily furiously bold courts. f| +10570|594118|O|209183.48|1996-01-09|1-URGENT|Clerk#000002286|0| affix furiously according t| +10571|577039|F|113586.81|1992-07-13|4-NOT SPECIFIED|Clerk#000004404|0|he even accounts are foxes: fluffily regular ideas wake fluffi| +10572|22060|F|282306.28|1992-03-04|1-URGENT|Clerk#000004720|0|ajole carefully slyly unusual foxes. carefully express cour| +10573|242533|F|140001.97|1992-07-09|4-NOT SPECIFIED|Clerk#000001445|0| ironic theodolites. blithely| +10574|722165|O|202768.88|1996-09-23|2-HIGH|Clerk#000003406|0|g theodolites are furiously. slyly | +10575|176225|O|247050.71|1997-07-23|5-LOW|Clerk#000004026|0| deposits use. furiously express asymptotes slee| +10600|49540|O|178519.51|1997-10-30|4-NOT SPECIFIED|Clerk#000000287|0|slyly. regular deposits are. ironic accounts boost: excuses haggle. furiously| +10601|99556|O|243993.71|1998-07-22|3-MEDIUM|Clerk#000000968|0| excuses wake against the | +10602|729671|F|115053.45|1992-01-09|5-LOW|Clerk#000001541|0|icingly bold pinto beans. ironic, regula| +10603|318377|O|935.74|1996-12-29|3-MEDIUM|Clerk#000004288|0|ages print. slyly regular accounts cajole| +10604|451804|F|250311.87|1992-11-24|2-HIGH|Clerk#000002980|0|al, even ideas are carefully along the even| +10605|467474|F|197782.69|1994-12-21|2-HIGH|Clerk#000001411|0|the fluffily silent accoun| +10606|569584|F|157200.08|1993-07-28|4-NOT SPECIFIED|Clerk#000000395|0|nal asymptotes are silently blithely even ideas. final deposits are r| +10607|720665|O|122170.98|1996-12-23|3-MEDIUM|Clerk#000000057|0|y ironic asymptotes kindle fluffily. carefully final ideas nag | +10632|451580|F|14893.17|1992-10-27|5-LOW|Clerk#000002634|0|nic instructions cajole. dependencies wake carefully pending accounts. daring| +10633|450491|F|88019.54|1993-08-19|2-HIGH|Clerk#000002252|0|en the permanently sl| +10634|150047|O|295820.19|1997-02-02|5-LOW|Clerk#000004837|0|ly special sheaves among the blithely express platele| +10635|333691|F|72757.80|1995-02-05|3-MEDIUM|Clerk#000002315|0|ut the slyly even deposits are never above the fur| +10636|564070|F|302774.86|1994-10-27|4-NOT SPECIFIED|Clerk#000002198|0|nts wake carefully. blithely idle pinto beans sleep. pinto beans ha| +10637|323356|F|7352.21|1992-06-11|4-NOT SPECIFIED|Clerk#000000252|0|ounts wake blithely blithely final packages.| +10638|128704|O|79456.77|1995-06-29|1-URGENT|Clerk#000004530|0|efully regular, ironic ideas. slyly unusual platelets according to the deposi| +10639|104297|O|80967.42|1997-09-21|3-MEDIUM|Clerk#000001937|0| special deposits. regular, e| +10664|157696|F|14610.88|1992-06-11|2-HIGH|Clerk#000000987|0|theodolites wake fluffily along the blithely ironic d| +10665|636772|O|258044.90|1997-03-16|4-NOT SPECIFIED|Clerk#000000895|0|ss, unusual packages! furiously pending patterns of the busily | +10666|445049|O|177040.90|1998-01-23|5-LOW|Clerk#000001523|0|gainst the bold instructions. ironic patterns lose furiousl| +10667|171986|O|104524.28|1995-11-20|5-LOW|Clerk#000004718|0| regular, unusual requests.| +10668|59054|O|209476.14|1997-06-25|5-LOW|Clerk#000000936|0|furiously. requests boost thinly across the final deposits. quickly regula| +10669|269605|F|60812.61|1993-11-11|2-HIGH|Clerk#000004599|0|inal pains against the even, express | +10670|472739|O|306373.61|1996-06-14|4-NOT SPECIFIED|Clerk#000001551|0| pinto beans. furiously regular d| +10671|557903|F|199196.14|1993-11-26|2-HIGH|Clerk#000002242|0|ep. slyly bold gifts doubt. furiously ir| +10696|159274|F|204770.81|1993-03-21|2-HIGH|Clerk#000001679|0|s boost. carefully unusual instructions integrate caref| +10697|151423|O|143496.04|1998-03-19|1-URGENT|Clerk#000000067|0|oost blithely special packages! slyly even ideas | +10698|187525|F|134908.90|1992-11-08|3-MEDIUM|Clerk#000002000|0|g accounts integrate carefully regular ideas. warthogs wake around t| +10699|224443|O|177504.38|1995-12-15|1-URGENT|Clerk#000000669|0|s requests nag fluffily fluffily final platelet| +10700|453643|F|47269.19|1992-04-11|1-URGENT|Clerk#000004730|0|leep fluffily against the fur| +10701|615310|F|116614.18|1994-03-11|1-URGENT|Clerk#000002129|0|e furiously blithely exp| +10702|510691|F|250060.80|1992-02-22|4-NOT SPECIFIED|Clerk#000004324|0|l pinto beans above the slyly p| +10703|178436|F|271694.73|1992-03-17|1-URGENT|Clerk#000000822|0| ideas. final, final dinos haggle bl| +10728|457828|O|136262.94|1996-03-10|4-NOT SPECIFIED|Clerk#000000337|0|yly silent ideas wake. carefully u| +10729|452197|F|186261.85|1993-03-30|3-MEDIUM|Clerk#000003742|0|g the carefully ironic requests. blithely| +10730|296660|F|222748.19|1993-04-18|2-HIGH|Clerk#000001307|0| pinto beans. bold deposits am| +10731|706190|F|67965.68|1993-02-25|2-HIGH|Clerk#000002561|0|ironic dependencies shall have to affix quickly around the furiously bold p| +10732|173333|F|165657.75|1994-11-03|1-URGENT|Clerk#000001578|0|theodolites boost furiously among the quickly regul| +10733|203756|F|16803.22|1995-01-11|2-HIGH|Clerk#000004642|0| the fluffily silent dugouts. ironic as| +10734|15635|F|189870.00|1993-06-23|5-LOW|Clerk#000003538|0|ic, ironic requests. unus| +10735|266800|F|81683.07|1993-06-08|5-LOW|Clerk#000003587|0|fter the quickly sly | +10760|584521|O|206143.88|1996-05-18|5-LOW|Clerk#000003589|0| excuses. deposits boost. ironic excuses sleep quickly after the | +10761|525685|F|20333.49|1993-10-20|2-HIGH|Clerk#000003376|0|long the slyly dogged theodolites wake| +10762|181495|F|246142.32|1993-12-22|1-URGENT|Clerk#000002291|0|pendencies wake fluffily. slyly| +10763|136172|O|381746.13|1997-11-07|1-URGENT|Clerk#000003292|0|timents sleep evenly. quickly reg| +10764|382975|F|169898.76|1992-07-13|3-MEDIUM|Clerk#000001314|0|quests among the bold packages cajole slyly slyly special fra| +10765|154669|F|81858.60|1992-08-15|2-HIGH|Clerk#000001429|0| furiously express pinto beans. regular packages above the ca| +10766|3706|O|102706.84|1996-08-27|5-LOW|Clerk#000003003|0|ons detect carefully whithout the th| +10767|15046|O|150003.69|1998-01-15|4-NOT SPECIFIED|Clerk#000000600|0|es nod slyly about the furiously regular notornis. quickly ironic req| +10792|97985|O|8229.38|1998-07-25|5-LOW|Clerk#000002316|0|lyly! express orbits nag qui| +10793|583531|F|334089.69|1992-08-10|3-MEDIUM|Clerk#000003626|0|ly along the boldly bold excuses. slyly pending foxes are caref| +10794|386857|F|141066.59|1994-04-12|4-NOT SPECIFIED|Clerk#000004289|0| slyly bold ideas haggle carefully after th| +10795|152939|O|81166.81|1997-08-24|2-HIGH|Clerk#000004141|0|yly theodolites. furiously pending pinto beans sleep. slyly fina| +10796|182509|F|71199.25|1994-09-24|4-NOT SPECIFIED|Clerk#000001928|0|. theodolites cajole slyly along the regular, pending realms. blithely | +10797|651769|F|148928.82|1992-03-06|1-URGENT|Clerk#000003697|0|he slyly pending foxes. carefully even pinto beans haggle fluffily am| +10798|522191|F|60014.69|1993-02-19|2-HIGH|Clerk#000004318|0|are blithely blithely final dependencies. furiously special theodolites are| +10799|704149|F|258002.29|1993-02-24|4-NOT SPECIFIED|Clerk#000004370|0|s. blithely bold requests wake quickly carefully | +10824|360913|F|244520.31|1992-03-29|5-LOW|Clerk#000002431|0| deposits. slyly express courts cajole furiously. even de| +10825|595099|O|213252.31|1996-03-16|2-HIGH|Clerk#000001401|0|even foxes was quickly carefully dari| +10826|561731|P|223453.45|1995-05-31|1-URGENT|Clerk#000001978|0|totes boost carefully regular requests. ideas along the express instructi| +10827|12532|F|26064.58|1993-11-14|4-NOT SPECIFIED|Clerk#000002458|0|he packages. ideas boost above the carefully silent p| +10828|616079|F|25007.48|1994-01-09|2-HIGH|Clerk#000001015|0|s. slyly express requests| +10829|683011|F|104270.01|1994-12-18|1-URGENT|Clerk#000001163|0|al asymptotes; never regular| +10830|607537|O|248995.55|1998-06-14|1-URGENT|Clerk#000000072|0|ing to the carefully bold fo| +10831|362141|O|188435.78|1995-11-06|4-NOT SPECIFIED|Clerk#000004190|0|e. express deposits after the slyly ironi| +10856|245257|O|243806.14|1998-05-09|4-NOT SPECIFIED|Clerk#000001416|0|quests detect slyly above | +10857|1108|O|13539.33|1996-06-15|2-HIGH|Clerk#000003884|0|t carefully daringly unusual epitaphs. slyly regular theodolite| +10858|606935|O|237513.67|1996-01-07|1-URGENT|Clerk#000002787|0|ly. slyly final packages boost quickly above the bold, even | +10859|565|O|295712.91|1997-07-25|5-LOW|Clerk#000003381|0|olites. carefully daring pinto beans wa| +10860|468544|O|111455.08|1996-06-20|5-LOW|Clerk#000002366|0| slyly alongside of the slyly pending deposits. bold packages dazzle| +10861|553195|O|58965.79|1997-03-20|2-HIGH|Clerk#000004937|0|ly after the special, unusual asymptotes. unus| +10862|525629|O|6110.90|1996-03-31|4-NOT SPECIFIED|Clerk#000000609|0|ly after the slyly regu| +10863|739843|O|188400.26|1995-10-27|4-NOT SPECIFIED|Clerk#000000028|0|lent, final platelets wak| +10888|272578|F|92996.27|1995-03-14|1-URGENT|Clerk#000001691|0| ironic forges wake atop the| +10889|211819|O|150804.92|1998-07-26|5-LOW|Clerk#000004473|0|l instructions. ironic, final instructions are fluffily.| +10890|538096|O|82790.98|1998-07-11|3-MEDIUM|Clerk#000001719|0|egular ideas affix. silent dependencies hinder. quickl| +10891|265234|F|93069.40|1993-12-09|4-NOT SPECIFIED|Clerk#000000639|0|ses integrate furiously about t| +10892|533665|F|173684.62|1994-03-18|4-NOT SPECIFIED|Clerk#000003104|0|he final, bold theodolites.| +10893|33853|F|266284.10|1993-06-30|5-LOW|Clerk#000003097|0|icingly even requests will have to sleep. carefully exp| +10894|438526|O|269085.02|1997-04-04|3-MEDIUM|Clerk#000002341|0|efully special asymptotes alongside of the carefully regular excus| +10895|51901|F|170956.44|1995-01-28|3-MEDIUM|Clerk#000003739|0| silent accounts. slyly ironi| +10920|23086|F|194689.85|1994-06-02|1-URGENT|Clerk#000000553|0|ggle among the never unusual theodolites. furiously dogged requests| +10921|229549|F|149159.72|1993-12-25|3-MEDIUM|Clerk#000002018|0|endencies. bold, silent accounts sleep carefully unusual| +10922|12715|F|228335.27|1992-03-25|5-LOW|Clerk#000002210|0|fily packages. daringly ironic platelets x| +10923|683677|O|58164.19|1995-11-24|4-NOT SPECIFIED|Clerk#000004796|0|ual ideas use furiously slowly even fox| +10924|556954|O|122614.55|1995-06-27|1-URGENT|Clerk#000004988|0|eep slyly above the furiously final ideas. quickly pending instructions promis| +10925|713908|O|323263.41|1997-07-10|4-NOT SPECIFIED|Clerk#000001027|0|oss the even pinto beans. ironic, final pinto beans detect. deposits after | +10926|127237|O|70479.53|1996-05-21|1-URGENT|Clerk#000002158|0| packages. furiously ironic deposits impress slyly accord| +10927|210139|F|149846.56|1992-05-20|2-HIGH|Clerk#000003840|0|ld wake blithely. ironic packages are along the fluffily un| +10952|32164|O|197775.78|1995-08-22|5-LOW|Clerk#000004857|0|. fluffily even fox| +10953|561812|O|48452.68|1997-07-14|1-URGENT|Clerk#000001424|0|nts. regular, regular| +10954|608677|F|180448.38|1993-08-18|4-NOT SPECIFIED|Clerk#000003543|0|warhorses sleep blithel| +10955|30062|F|40440.94|1994-10-23|5-LOW|Clerk#000003705|0|special deposits are above the quickly f| +10956|492935|O|19077.23|1996-11-13|3-MEDIUM|Clerk#000002788|0|al waters cajole even packages. carefully| +10957|253540|F|145670.39|1993-12-14|3-MEDIUM|Clerk#000001188|0|fully final deposits. quickly ironic requests haggl| +10958|492935|F|169960.04|1992-02-21|2-HIGH|Clerk#000001088|0|osits sleep carefully instructions; carefully final packages wake bli| +10959|249004|O|225428.48|1997-11-06|2-HIGH|Clerk#000000834|0|e pinto beans. quickly silen| +10984|733903|O|72801.18|1996-02-08|1-URGENT|Clerk#000000149|0|ular, final requests. fluffily even deposits| +10985|186817|F|198964.58|1995-02-04|3-MEDIUM|Clerk#000003030|0|jole up the idly final ideas. carefully ironic theodolite| +10986|331489|O|15491.57|1995-08-06|2-HIGH|Clerk#000004200|0| regular notornis are ironic, spe| +10987|315013|O|86802.18|1996-03-11|2-HIGH|Clerk#000001795|0|iously even courts. blithely express theodolites cajole acc| +10988|139900|P|124143.25|1995-05-08|4-NOT SPECIFIED|Clerk#000000089|0|deas. carefully regular| +10989|40895|F|126279.95|1994-03-23|1-URGENT|Clerk#000001201|0|its. quickly final decoys among the ironic r| +10990|318080|F|134956.53|1994-02-17|1-URGENT|Clerk#000004422|0|bove the quickly spe| +10991|718804|F|236292.03|1992-10-04|2-HIGH|Clerk#000003529|0|ct carefully slyly bold accounts. carefully regular ideas nag slyly. regula| +11016|679874|F|250615.07|1992-12-20|1-URGENT|Clerk#000004053|0|ts doze above the quickly special theodolites. unusual foxe| +11017|383476|F|103931.00|1993-11-13|5-LOW|Clerk#000001024|0| the even pinto beans boost slyly silent in| +11018|298232|F|18247.56|1993-08-11|2-HIGH|Clerk#000000056|0|quests cajole closely above the fl| +11019|131315|O|207849.82|1998-03-11|4-NOT SPECIFIED|Clerk#000004534|0|ajole fluffily. blithely even excuses cajole slyly. bold fra| +11020|505051|F|221598.33|1994-12-16|5-LOW|Clerk#000001981|0|c, silent accounts. bold, final packages haggle at the carefull| +11021|636932|O|118755.34|1996-02-19|4-NOT SPECIFIED|Clerk#000004009|0| theodolites lose. furiously ironic dependencies are carefully.| +11022|161365|O|181664.96|1996-03-09|3-MEDIUM|Clerk#000000132|0| sleep enticingly. carefully final attainmen| +11023|38077|F|195511.59|1994-04-09|2-HIGH|Clerk#000004818|0|y ironic patterns cajole carefully among the | +11048|198341|O|51219.71|1995-05-12|3-MEDIUM|Clerk#000003622|0|otes wake final, special dependencies. slyly| +11049|502853|F|42595.57|1992-03-26|1-URGENT|Clerk#000000453|0|across the slyly ironic instruction| +11050|446554|F|158860.92|1994-12-25|5-LOW|Clerk#000000736|0|leep alongside of the slyly special hockey players. packages cajole even | +11051|715360|F|356343.55|1994-01-20|1-URGENT|Clerk#000003751|0|es. thinly bold accou| +11052|540073|O|25298.18|1996-08-27|2-HIGH|Clerk#000000569|0|express instructions wake carefully before the packages. quickly ir| +11053|506152|O|133394.72|1997-02-19|2-HIGH|Clerk#000003000|0|efully slyly ironic asym| +11054|369517|O|95638.54|1996-10-22|1-URGENT|Clerk#000001951|0|luffily final deposits mold furiously alo| +11055|440896|O|226221.65|1998-06-29|5-LOW|Clerk#000002466|0|ully foxes. slyly regul| +11080|132557|O|250115.24|1997-05-08|5-LOW|Clerk#000002129|0|usly special foxes cajole carefully. slyly even | +11081|374251|O|218522.78|1998-01-13|3-MEDIUM|Clerk#000000051|0|sleep along the slyly special deposits. carefully| +11082|523039|F|14292.60|1994-06-11|4-NOT SPECIFIED|Clerk#000000025|0| blithely ironic theodolites use blithely final waters; car| +11083|698624|O|141194.42|1996-05-20|4-NOT SPECIFIED|Clerk#000002293|0| according to the regular, bold courts. slyly expre| +11084|507791|O|34009.94|1997-05-09|5-LOW|Clerk#000000046|0|slyly final pinto b| +11085|190123|O|135267.26|1996-10-08|1-URGENT|Clerk#000002719|0| the blithely ironic deposits. furiously b| +11086|373478|F|36794.83|1992-08-04|2-HIGH|Clerk#000002775|0|tructions haggle fluffily among the asymptotes. ironic packages x| +11087|283000|F|219103.92|1994-08-14|4-NOT SPECIFIED|Clerk#000001787|0|y after the even excuses. instructions until the furiously pending accounts | +11112|605926|O|281086.73|1997-12-30|1-URGENT|Clerk#000002780|0|ithely ironic deposits-- clo| +11113|289526|F|156543.63|1994-10-12|1-URGENT|Clerk#000001778|0|efully furious requests. final orbits cajole above the fluffily| +11114|62134|O|47744.74|1995-10-22|2-HIGH|Clerk#000001883|0|y ironic requests. furiously pending packages about the quickly reg| +11115|267317|F|214839.88|1994-08-09|4-NOT SPECIFIED|Clerk#000004015|0|s: ruthlessly ironic| +11116|283154|F|70871.61|1992-11-13|1-URGENT|Clerk#000004560|0|nst the quickly express theodolites. quickly unusual instructi| +11117|213392|F|75486.19|1992-01-05|3-MEDIUM|Clerk#000004817|0| pinto beans integrate. requests after the slyly final instr| +11118|728060|O|286560.36|1998-01-09|1-URGENT|Clerk#000004868|0|se blithely along the pending foxes. c| +11119|242599|O|61391.63|1997-05-29|4-NOT SPECIFIED|Clerk#000002632|0|lly even instruction| +11144|344531|F|16940.10|1992-08-27|1-URGENT|Clerk#000002929|0| regular platelets | +11145|530231|O|12376.00|1996-09-02|4-NOT SPECIFIED|Clerk#000004425|0|nts cajole. carefully iro| +11146|86486|F|49977.58|1992-02-09|4-NOT SPECIFIED|Clerk#000000723|0|theodolites grow carefully slyly express ideas. carefully silent ins| +11147|62338|O|234960.83|1998-01-08|5-LOW|Clerk#000004713|0|sits. silent foxes are. furiously bold requests across the regular ideas cajol| +11148|696845|O|318115.56|1996-10-26|2-HIGH|Clerk#000002936|0| orbits. ironic Tiresias cajole quickly| +11149|622111|F|310008.15|1994-04-26|4-NOT SPECIFIED|Clerk#000001649|0|ic requests. pending deposits sleep against the theodolites. carefully ironic | +11150|37888|O|44037.66|1997-09-26|1-URGENT|Clerk#000001892|0|he blithely ironic deposits. quickly | +11151|18506|F|49138.84|1993-05-01|4-NOT SPECIFIED|Clerk#000004913|0|heodolites cajole even packages. furiously final excuses hang slyl| +11176|528376|O|209490.36|1996-02-09|5-LOW|Clerk#000001595|0|ts. quickly regular accounts sublate slowly special deposits| +11177|393160|F|193215.22|1994-05-24|1-URGENT|Clerk#000003991|0|otes are after the deposit| +11178|313384|O|164955.91|1996-04-07|4-NOT SPECIFIED|Clerk#000003419|0|lites. finally bold packages affix idly along the regular instructions. s| +11179|543431|F|190238.35|1992-10-27|2-HIGH|Clerk#000000510|0|pades. even, unusual accounts do detect. slyly even ins| +11180|686144|F|125446.44|1993-10-07|2-HIGH|Clerk#000002203|0|out the regular ideas; | +11181|9559|F|166980.09|1993-04-19|4-NOT SPECIFIED|Clerk#000001238|0|less packages cajole fluffily packages. ex| +11182|153595|O|54264.46|1995-12-18|2-HIGH|Clerk#000004559|0| dolphins. packages sleep fluffily even, even accounts. regular, b| +11183|701107|O|14286.76|1996-03-15|3-MEDIUM|Clerk#000000269|0|lites according to the regular, unusual requests haggle caref| +11208|237362|F|127804.61|1992-12-16|5-LOW|Clerk#000000550|0|e. fluffily enticing accounts are furiously about the excuses? carefully u| +11209|87710|O|61299.22|1998-06-25|5-LOW|Clerk#000000642|0|of the furiously sly accounts boost carefully ca| +11210|375193|O|47058.41|1998-03-27|2-HIGH|Clerk#000003406|0|dencies. carefully sly foxes cajole instead of the fluffily express deposit| +11211|615079|F|80169.52|1994-06-03|4-NOT SPECIFIED|Clerk#000004742|0|lites nag blithely unusual accounts.| +11212|378046|F|289656.63|1994-05-15|5-LOW|Clerk#000000202|0| wake over the instructions; unusual pinto beans according to the fluf| +11213|544813|F|220087.03|1994-08-21|5-LOW|Clerk#000001747|0|endencies. carefully ironic dependencie| +11214|668698|O|68844.03|1995-08-20|3-MEDIUM|Clerk#000000133|0|ss the accounts. slyly even pinto beans was blithely a| +11215|39049|O|313288.90|1996-06-20|3-MEDIUM|Clerk#000004784|0| furiously careful ideas hag| +11240|35714|F|94631.04|1993-12-03|4-NOT SPECIFIED|Clerk#000003073|0|furiously pending acco| +11241|241771|F|237046.95|1992-01-30|3-MEDIUM|Clerk#000004287|0|ckages cajole among the bold ideas. final accounts after the| +11242|683318|O|155127.74|1997-04-06|3-MEDIUM|Clerk#000004037|0| accounts are closely pending ideas. close pinto beans use accordi| +11243|525448|F|19621.63|1995-03-16|2-HIGH|Clerk#000003228|0|fily special accounts sleep furiously ironic f| +11244|677293|O|142030.39|1995-10-29|2-HIGH|Clerk#000002463|0|promise quickly special platelets. regular packages| +11245|490510|O|179923.56|1995-09-03|1-URGENT|Clerk#000004537|0|ounts sleep about the packages. | +11246|720883|F|220615.93|1993-12-15|1-URGENT|Clerk#000002795|0|hely among the blithely regular accounts. grouches nag alon| +11247|352336|O|211116.88|1996-05-08|2-HIGH|Clerk#000003811|0|gly after the slyly unusual deposits; slyly special requests are after the pac| +11272|435220|O|136028.20|1998-04-27|2-HIGH|Clerk#000002966|0|eas nag fluffily eve| +11273|731284|F|144114.43|1992-08-23|5-LOW|Clerk#000000733|0|s. furiously careful| +11274|422753|O|56314.56|1997-02-22|3-MEDIUM|Clerk#000004177|0|accounts cajole furiously. requests cajole frets; slyly ironic pa| +11275|448156|F|197103.53|1994-01-19|2-HIGH|Clerk#000004086|0|kages. deposits sleep. blit| +11276|636563|O|190202.64|1996-05-02|3-MEDIUM|Clerk#000000910|0|ar excuses. special foxes nag. ironic instructions snooze. quickly bold p| +11277|710263|F|98000.92|1993-09-05|2-HIGH|Clerk#000000266|0|lar instructions wake alongside of the regular excus| +11278|360478|F|116376.68|1994-11-03|5-LOW|Clerk#000002266|0|odolites. quickly express ideas across the e| +11279|33182|F|237447.13|1993-01-01|2-HIGH|Clerk#000003908|0|its. slyly special asymptotes boost across the blithely| +11304|429901|F|20781.87|1994-01-20|5-LOW|Clerk#000003714|0|ording to the ideas! express, even | +11305|583882|O|179210.53|1996-01-15|5-LOW|Clerk#000002190|0|lyly regular accounts. special, express accounts need to wake sil| +11306|297940|O|279105.55|1997-11-27|1-URGENT|Clerk#000001620|0|packages. fluffy, final depths sleep carefully. quickly regular deposits det| +11307|467608|F|344491.17|1992-11-09|1-URGENT|Clerk#000000744|0|t theodolites wake ironic ideas. closely sly packages us| +11308|570143|O|296560.15|1998-05-26|4-NOT SPECIFIED|Clerk#000002547|0|lets integrate fluffily| +11309|391445|F|19493.49|1992-09-20|4-NOT SPECIFIED|Clerk#000001292|0|usly even, even asymptotes. carefull| +11310|12538|F|61924.47|1993-06-07|5-LOW|Clerk#000001360|0|uriously final asymptotes haggle about the daringly silent | +11311|705740|F|120233.65|1992-08-27|4-NOT SPECIFIED|Clerk#000003730|0|counts. blithely fluffy excuses after the quickly even deposits sleep among th| +11336|112796|F|137503.01|1992-01-03|3-MEDIUM|Clerk#000002753|0|accounts. ironic dependencies nag st| +11337|511009|O|238153.45|1997-03-10|1-URGENT|Clerk#000000207|0|ronic, regular theodolites cajol| +11338|272716|O|73314.85|1996-06-14|1-URGENT|Clerk#000003798|0|ilent pinto beans wake carefully final theodolites. regular, ir| +11339|259919|F|30453.29|1994-11-02|2-HIGH|Clerk#000003643|0|sual asymptotes was carefully. carefully special accounts alongside of the| +11340|452287|O|137053.90|1996-02-07|1-URGENT|Clerk#000001662|0|onic foxes play furiously. carefully pending packages are-- final the| +11341|311821|O|38471.16|1997-07-27|1-URGENT|Clerk#000001760|0|slyly stealthy foxes | +11342|494476|O|146253.72|1996-12-09|5-LOW|Clerk#000002715|0|telets. slyly ironic requests dou| +11343|657994|F|210622.93|1994-03-15|3-MEDIUM|Clerk#000003275|0|ular instructions. slyly final packa| +11368|128683|O|167506.77|1997-09-17|2-HIGH|Clerk#000001086|0|at the unusual foxes. requests across the pe| +11369|521305|F|51084.90|1995-03-16|5-LOW|Clerk#000003936|0|otes. final pinto beans ca| +11370|53656|F|115335.10|1993-07-15|2-HIGH|Clerk#000002600|0|nic excuses sleep. ironic multipliers are according to the bli| +11371|269326|F|252708.14|1992-06-22|1-URGENT|Clerk#000004937|0|. ideas are carefully deposits! pending, ironic instruct| +11372|278561|F|206300.15|1993-12-03|5-LOW|Clerk#000000719|0|terns. fluffily special packages wake after the deposits. | +11373|257953|O|105300.01|1998-07-31|3-MEDIUM|Clerk#000002389|0|ckages thrash carefully.| +11374|393074|O|160708.02|1997-05-08|1-URGENT|Clerk#000002085|0|ng the quickly idle dependencies. final deposits along th| +11375|388795|O|185015.82|1996-10-27|5-LOW|Clerk#000002848|0|thely bold packages should integrate. slyly| +11400|476198|F|190912.82|1994-08-11|3-MEDIUM|Clerk#000002160|0|ckages was after the blithely express fo| +11401|194075|O|132492.16|1998-07-01|2-HIGH|Clerk#000000220|0|ronic accounts dazzle carefully abov| +11402|63283|F|265727.91|1994-03-22|3-MEDIUM|Clerk#000000635|0|en requests. ironic deposits nag. regular, pending asymptote| +11403|96781|P|264211.35|1995-05-16|3-MEDIUM|Clerk#000002652|0|luffily ironic platelets. slyly regular dependencies across the requests w| +11404|569434|F|255971.69|1993-10-14|5-LOW|Clerk#000004509|0|detect blithely. slyly ironic ideas wake blithely. special| +11405|476380|P|265658.95|1995-05-27|3-MEDIUM|Clerk#000001553|0| regular packages. furiously bold i| +11406|246770|P|147734.18|1995-03-10|5-LOW|Clerk#000000187|0|ng to the final, even accounts dazzle fluffily alongside of the forges| +11407|706393|O|167593.44|1998-07-25|3-MEDIUM|Clerk#000002145|0|ges alongside of the carefully final dependencies are i| +11432|591715|O|151627.15|1996-08-21|4-NOT SPECIFIED|Clerk#000000147|0|s-- blithely special accounts| +11433|700018|F|158520.62|1993-03-23|3-MEDIUM|Clerk#000001591|0| regular instructions. unusual pinto beans play final package| +11434|669250|F|109534.14|1993-02-18|1-URGENT|Clerk#000001382|0| final pinto beans after the accounts nag final, ironi| +11435|324796|F|239993.04|1993-01-04|2-HIGH|Clerk#000004767|0|press braids according to the furiously unusual gifts nag qu| +11436|326560|O|58497.51|1997-08-06|5-LOW|Clerk#000000817|0| cajole carefully blithely unusual packages. even deposit| +11437|721693|O|180027.77|1997-10-07|3-MEDIUM|Clerk#000002587|0|en instructions. blithely regular instr| +11438|461354|F|55832.58|1993-02-04|2-HIGH|Clerk#000002854|0| regular dinos sleep furiously. ideas above the pendin| +11439|470044|F|34118.82|1992-01-14|5-LOW|Clerk#000001542|0|ve the carefully regular accounts. even, ironic accounts hang a| +11464|268876|P|240764.43|1995-05-02|5-LOW|Clerk#000000176|0|uriously final frets nag among the fluffily ironic | +11465|231025|O|35417.02|1996-07-30|1-URGENT|Clerk#000003018|0|onic, ironic theodolites cajole slyly about the quickly regular pinto beans. f| +11466|82357|O|163163.81|1996-03-05|4-NOT SPECIFIED|Clerk#000003918|0|ng the slyly even braids. slyly special platelets around the f| +11467|399496|O|43993.71|1997-01-01|3-MEDIUM|Clerk#000001008|0|unts! carefully idle asymptotes sleep. f| +11468|314447|O|87743.40|1997-04-22|1-URGENT|Clerk#000004861|0|pecial packages nag against the care| +11469|403537|F|264821.47|1995-03-09|2-HIGH|Clerk#000004736|0|ckages sleep after the bold d| +11470|726158|F|55583.06|1992-04-19|2-HIGH|Clerk#000001199|0| permanent, silent accounts nag. pending, silent ideas ru| +11471|529133|F|119930.76|1993-03-20|1-URGENT|Clerk#000000153|0|usly final deposits are fur| +11496|382612|O|54911.15|1997-05-06|4-NOT SPECIFIED|Clerk#000000569|0|uctions. carefully bold pinto| +11497|46297|O|56822.73|1998-01-05|4-NOT SPECIFIED|Clerk#000004686|0|nst the carefully bold orbits. fluffil| +11498|351589|F|164377.75|1994-08-11|3-MEDIUM|Clerk#000001506|0|around the carefully regular deposits. quickly ironic asymptotes nag carefully| +11499|639547|O|19056.68|1996-03-06|2-HIGH|Clerk#000002409|0|ongside of the slyly even asymptotes; asymptotes sleep blithely a| +11500|591121|O|81929.38|1995-05-21|5-LOW|Clerk#000004954|0|ic foxes are after the blithely slow packages. ironic, b| +11501|463472|F|155527.24|1992-10-22|5-LOW|Clerk#000003441|0|he bold theodolites. furiously special deposits wake furiou| +11502|57358|O|48528.82|1996-09-23|5-LOW|Clerk#000001024|0|inal platelets cajole furiously blithely silent ideas. c| +11503|238609|F|110987.13|1992-11-18|2-HIGH|Clerk#000001174|0| excuses. furiously special instructions are packages. inst| +11528|25099|O|230832.29|1997-07-07|3-MEDIUM|Clerk#000004295|0|ndle carefully slyly even pinto beans. regular, final foxes | +11529|317164|P|257438.39|1995-03-19|1-URGENT|Clerk#000004958|0|onic asymptotes wake express excuses. carefully special ideas haggle blithel| +11530|302611|O|51533.67|1997-04-29|5-LOW|Clerk#000004971|0|he blithely unusual theodolites are furiously furiously ironic asympt| +11531|201697|F|228921.59|1993-02-25|4-NOT SPECIFIED|Clerk#000001970|0|final packages cajole. ironic accounts p| +11532|654343|O|38798.81|1997-04-24|4-NOT SPECIFIED|Clerk#000000261|0|ze always! special, bold asymptotes cajole carefull| +11533|275974|F|234772.36|1994-07-02|1-URGENT|Clerk#000000023|0|ial pinto beans. deposits w| +11534|263474|O|171817.37|1996-04-28|2-HIGH|Clerk#000004062|0|ithely final ideas. flu| +11535|204844|F|324161.78|1994-03-14|3-MEDIUM|Clerk#000000185|0| the even requests. blithely even deposits use fluffily regular requests. s| +11560|280984|O|102729.25|1997-01-29|3-MEDIUM|Clerk#000002279|0|pending requests. reg| +11561|484831|P|140340.34|1995-04-11|4-NOT SPECIFIED|Clerk#000002106|0|. slyly even packages boost according to the furio| +11562|530974|F|21891.68|1994-09-04|3-MEDIUM|Clerk#000003135|0|pecial deposits cajole. express, regular pinto beans after the regul| +11563|564547|F|256581.18|1995-01-11|1-URGENT|Clerk#000004198|0|blithely. carefully ironic packag| +11564|64664|F|28031.07|1994-05-25|4-NOT SPECIFIED|Clerk#000001415|0|frets haggle ironic| +11565|42847|O|50450.73|1997-03-16|2-HIGH|Clerk#000000079|0|slyly along the pending, regular dolphins. | +11566|119756|F|71566.97|1994-06-07|3-MEDIUM|Clerk#000003433|0|r accounts mold caref| +11567|476488|F|44584.92|1995-02-18|2-HIGH|Clerk#000001172|0|asymptotes. packages | +11592|560519|F|268401.01|1992-05-04|5-LOW|Clerk#000003261|0|es. quickly special attainment| +11593|641489|O|145460.61|1997-03-23|1-URGENT|Clerk#000004459|0|sits use blithely among the slyly regular theodolites! f| +11594|241726|F|211329.49|1994-03-01|3-MEDIUM|Clerk#000002620|0|ake carefully up the accounts. final, sile| +11595|680116|O|205914.83|1997-05-10|5-LOW|Clerk#000000070|0|structions. slyly brave account| +11596|677369|O|45800.07|1997-05-26|3-MEDIUM|Clerk#000002278|0|refully express requests. blithely regular t| +11597|287788|F|162843.13|1994-06-10|5-LOW|Clerk#000004412|0| the carefully ironic theodolites. | +11598|95800|O|184928.59|1996-07-14|3-MEDIUM|Clerk#000001885|0|ges maintain carefully final account| +11599|601529|F|65398.87|1992-11-12|2-HIGH|Clerk#000002720|0|e slyly bold, pending deposits? quickly final theodolites detect careful| +11624|634462|F|51736.77|1993-03-06|2-HIGH|Clerk#000002283|0|ites. ironic, bold excuses haggle among the blithely special pains? si| +11625|646639|O|370580.55|1996-01-31|4-NOT SPECIFIED|Clerk#000001238|0| dogged accounts use slyly| +11626|550081|F|214187.81|1994-11-22|4-NOT SPECIFIED|Clerk#000003890|0|y alongside of the slyly e| +11627|696127|O|175522.62|1997-01-17|2-HIGH|Clerk#000004667|0| regular accounts nag slyly blithely regular tithes. | +11628|554870|O|112287.81|1996-08-16|5-LOW|Clerk#000000484|0|fluffily ironic requests haggle. carefully final | +11629|184252|F|194852.18|1994-11-21|1-URGENT|Clerk#000002316|0| furiously ironic deposits boost furiously; slyly special ideas| +11630|718177|F|81495.35|1993-10-14|3-MEDIUM|Clerk#000001789|0|pinto beans against the quickly regular accounts ar| +11631|628792|F|53076.60|1994-01-11|4-NOT SPECIFIED|Clerk#000004106|0|ts sleep carefully regular hockey| +11656|589195|O|237117.59|1997-02-23|5-LOW|Clerk#000002805|0|ously even patterns sleep furiously. slyly fi| +11657|322240|F|192723.43|1994-08-17|2-HIGH|Clerk#000001393|0|nd closely bold ideas. final, ironic packages above the unusual requ| +11658|134551|O|31967.83|1998-06-22|5-LOW|Clerk#000001290|0|ackages against the silent depos| +11659|134578|O|130650.88|1995-11-01|4-NOT SPECIFIED|Clerk#000003061|0|ins haggle blithely: carefully express accounts about the pinto beans h| +11660|599941|O|149726.52|1996-04-09|3-MEDIUM|Clerk#000003453|0|f the instructions. slyly ironic deposits| +11661|185476|F|187115.73|1992-04-17|1-URGENT|Clerk#000002903|0|unts. carefully final asymptotes nag carefully ideas. ironic pinto beans are | +11662|294638|F|78229.48|1994-07-06|2-HIGH|Clerk#000001303|0|quickly even request| +11663|475471|O|69193.83|1995-12-19|3-MEDIUM|Clerk#000003663|0|. silent foxes cajole blithely. blithely regula| +11688|714982|F|45186.45|1993-06-10|5-LOW|Clerk#000002225|0|ar, even instructions haggle. blithely special deposits hag| +11689|192421|F|85620.47|1992-05-22|1-URGENT|Clerk#000003991|0|ns boost slyly among the furiously unusual req| +11690|584|O|62056.10|1998-06-21|5-LOW|Clerk#000000175|0|usly pending accounts. even| +11691|55798|F|34699.31|1995-05-19|1-URGENT|Clerk#000004451|0|ounts. regular, regular deposits use blithely about th| +11692|279562|O|127444.34|1997-01-20|5-LOW|Clerk#000001165|0|. slyly express pinto beans snooze furiously along| +11693|570173|F|117539.56|1992-02-29|4-NOT SPECIFIED|Clerk#000004724|0|ove the quietly regular ideas. orbits across the pinto beans are bli| +11694|141328|O|108254.51|1995-12-12|1-URGENT|Clerk#000001859|0|e pending accounts. fluffily final a| +11695|28373|O|238083.30|1998-05-30|2-HIGH|Clerk#000003355|0|ithely final, bold i| +11720|601078|O|142992.59|1998-02-04|5-LOW|Clerk#000003226|0|accounts about the carefully silent foxes are| +11721|534698|O|143914.72|1996-02-11|2-HIGH|Clerk#000000975|0|asymptotes nag carefully across the ironic platelets. slyly final | +11722|153614|O|215818.21|1995-12-28|2-HIGH|Clerk#000001407|0|quickly special platelets wake. quick packages wake slyly among the | +11723|274384|F|251467.96|1992-06-18|4-NOT SPECIFIED|Clerk#000001425|0|each around the quickly stealthy gifts. furiously even| +11724|570124|O|32424.84|1996-01-02|5-LOW|Clerk#000004875|0|ly regular requests integrate after th| +11725|60049|O|50173.59|1998-06-27|2-HIGH|Clerk#000003513|0|ly furiously final fox| +11726|492205|O|172619.11|1995-08-22|2-HIGH|Clerk#000000897|0|ully special instructi| +11727|731780|O|67649.06|1996-06-07|5-LOW|Clerk#000000196|0|al platelets. excuses sleep slyly express accounts. furiou| +11752|510935|P|266986.80|1995-04-04|3-MEDIUM|Clerk#000000433|0|e carefully regular accounts nag carefully above the ideas. packages use flu| +11753|531493|F|160606.78|1994-02-09|1-URGENT|Clerk#000003870|0|cross the blithely even ideas. even asym| +11754|274409|F|91386.68|1992-05-31|1-URGENT|Clerk#000003877|0|ts across the express, pending packages| +11755|226213|F|141032.24|1992-09-19|3-MEDIUM|Clerk#000003919|0|beans wake doggedly deposits: finally unusual packages ar| +11756|194147|O|126726.88|1997-09-24|3-MEDIUM|Clerk#000002526|0|le slyly. slyly ironic reques| +11757|524459|F|203235.99|1992-04-29|4-NOT SPECIFIED|Clerk#000003104|0|bold, express escapades nag even, ironic deposits. express, | +11758|575837|F|201376.92|1992-01-19|2-HIGH|Clerk#000000087|0|ly even pains; carefully regular deposits ha| +11759|87775|O|96607.72|1996-03-27|2-HIGH|Clerk#000000958|0|ding packages breach ac| +11784|721534|F|148614.53|1992-06-15|2-HIGH|Clerk#000004722|0|ding to the fluffily final ide| +11785|40171|F|275619.60|1995-02-03|3-MEDIUM|Clerk#000002951|0|y express accounts. special i| +11786|149494|F|291098.22|1993-04-30|3-MEDIUM|Clerk#000003130|0| finally pending acc| +11787|16582|F|241473.61|1993-04-24|1-URGENT|Clerk#000001161|0|. ironic, special requests sleep furiously furiously ironic deposits. final, | +11788|418424|O|125534.22|1996-02-09|1-URGENT|Clerk#000002361|0|ven ideas after the requests doze blithely above the accounts. caref| +11789|444007|F|57834.84|1994-04-24|1-URGENT|Clerk#000000427|0|uctions. carefully unusual depo| +11790|674926|F|51348.53|1994-08-31|5-LOW|Clerk#000001191|0|st the requests-- instructions breach pains. ironic ide| +11791|478189|F|25426.06|1993-12-18|2-HIGH|Clerk#000002725|0| to the blithely final accounts.| +11816|641914|O|223883.76|1998-06-17|4-NOT SPECIFIED|Clerk#000000480|0|ites after the final deposits cajo| +11817|626716|O|77595.18|1996-01-24|2-HIGH|Clerk#000002514|0| express asymptotes are furiously ruthless d| +11818|202939|F|72049.13|1993-02-11|2-HIGH|Clerk#000002041|0|. carefully express theodolites wake blithely expr| +11819|514303|F|16566.87|1994-01-20|2-HIGH|Clerk#000000909|0|sly slyly close platelets-- ideas boost blithely| +11820|131720|F|106131.60|1993-11-03|3-MEDIUM|Clerk#000002316|0|riously bold accounts. packages sleep blithely careful pinto beans. furio| +11821|558652|O|176363.52|1997-01-05|2-HIGH|Clerk#000004335|0|ly even deposits. even, even accounts are blithely around the ideas. iron| +11822|738076|O|173091.67|1997-08-22|4-NOT SPECIFIED|Clerk#000000583|0|equests. slyly ironic packages haggle carefully ex| +11823|591041|O|218137.26|1995-06-20|1-URGENT|Clerk#000002775|0|dly express frays haggle slyly dogged, regular deposits! slyly ironic depos| +11848|624136|O|57312.98|1997-07-29|4-NOT SPECIFIED|Clerk#000000507|0|ithely. ironically silent deposits af| +11849|331250|O|170757.90|1998-05-10|1-URGENT|Clerk#000004775|0|g against the grouches? quickly regular deposits use alongsid| +11850|55315|F|187217.08|1994-07-12|1-URGENT|Clerk#000002527|0|uriously express deposits haggle q| +11851|404710|F|76173.74|1993-03-22|4-NOT SPECIFIED|Clerk#000004654|0|ajole even foxes. furiously bold requests are furiously above th| +11852|193867|O|245171.56|1996-10-10|5-LOW|Clerk#000004933|0|ntil the furiously regular accounts; always even packages solve. care| +11853|293354|O|72880.46|1995-09-08|2-HIGH|Clerk#000003785|0|s! quickly regular theodolites wake slyly regular foxes. carefully| +11854|647719|F|240826.22|1992-03-14|3-MEDIUM|Clerk#000000670|0|kages boost carefully pending acco| +11855|686764|O|284501.65|1996-07-27|2-HIGH|Clerk#000001544|0|ts around the carefully bold accounts affix slyly instead of the fluf| +11880|682921|O|178887.17|1995-10-11|3-MEDIUM|Clerk#000003705|0|ular theodolites lose after the slo| +11881|599827|F|126500.87|1992-12-27|2-HIGH|Clerk#000003906|0| special requests are thinly carefully bold ideas. theo| +11882|514945|O|165966.56|1998-04-06|4-NOT SPECIFIED|Clerk#000002660|0|ld, regular platelets integrate fluff| +11883|407962|F|263823.44|1995-03-06|2-HIGH|Clerk#000000176|0|ss the regular excuses. regul| +11884|96443|O|72415.15|1997-04-15|3-MEDIUM|Clerk#000000331|0|. slyly ironic packages sleep caref| +11885|162484|O|16625.14|1996-03-23|3-MEDIUM|Clerk#000003667|0| cajole. pending, final deposits play carefully deposits. furiously bold pack| +11886|108115|F|203789.96|1994-01-24|5-LOW|Clerk#000002998|0|ill have to wake within the instructions. slyly regular accounts haggl| +11887|558454|F|165904.31|1992-09-12|1-URGENT|Clerk#000004425|0|counts. carefully ironic platelets about the furiously| +11912|409813|O|274568.68|1998-01-22|1-URGENT|Clerk#000003431|0|t dugouts among the pending dino| +11913|469528|F|129287.27|1993-10-06|4-NOT SPECIFIED|Clerk#000002556|0|aids use slyly special | +11914|576904|F|245122.35|1992-03-01|1-URGENT|Clerk#000001361|0| ironic deposits betwee| +11915|14860|O|203132.07|1997-12-02|5-LOW|Clerk#000001371|0|ffily about the express deposits: decoys sublate accounts. qui| +11916|744823|O|56611.54|1998-03-19|5-LOW|Clerk#000000679|0|refully final instructions. carefully even dependencies haggle slyl| +11917|718994|O|126480.06|1998-08-01|3-MEDIUM|Clerk#000000526|0|ts. orbits run blithely. | +11918|121003|F|176427.96|1993-06-10|3-MEDIUM|Clerk#000004108|0| blithely regular platelets. quickly ironic requests are; | +11919|416981|O|234597.12|1996-02-10|2-HIGH|Clerk#000001670|0|furiously regular pinto beans at the ironic accoun| +11944|190108|O|205284.82|1997-09-23|4-NOT SPECIFIED|Clerk#000004674|0|into beans after the always regular accounts dete| +11945|115432|F|133692.75|1994-12-15|5-LOW|Clerk#000001348|0| alongside of the pinto beans are blithely acros| +11946|534817|O|297165.97|1997-11-14|4-NOT SPECIFIED|Clerk#000004785|0|requests! quickly express accounts| +11947|665045|O|59760.51|1996-09-30|1-URGENT|Clerk#000004960|0| excuses. slyly expre| +11948|156703|O|168716.23|1997-12-26|1-URGENT|Clerk#000003047|0|he carefully bold instructio| +11949|427165|F|237682.93|1993-05-11|2-HIGH|Clerk#000000480|0|ges sublate furiously close pinto beans. ironic ideas boost. b| +11950|354505|O|219643.78|1996-07-25|1-URGENT|Clerk#000003775|0|sual requests. regular, ironic instructions outs| +11951|151591|F|235631.29|1992-05-13|5-LOW|Clerk#000002644|0|rate. ironically close accounts nag slyly slyly unusual platelets| +11976|25381|F|105833.06|1995-01-07|5-LOW|Clerk#000000597|0| excuses among the ideas boost across the even theodolites. furiously even | +11977|556615|F|19706.14|1994-11-30|5-LOW|Clerk#000000251|0|ndencies. quickly bold accounts believe furiously. bli| +11978|265780|O|222814.80|1998-03-27|2-HIGH|Clerk#000003095|0|egular excuses. special packages detect slyly. regular pinto beans | +11979|705784|O|286269.75|1996-09-03|5-LOW|Clerk#000001329|0|ickly silent packages.| +11980|93320|F|251854.20|1992-08-09|2-HIGH|Clerk#000000191|0|e always about the carefully ironic requests. slyly express deposits above t| +11981|162577|F|131645.79|1992-01-01|5-LOW|Clerk#000001528|0|y unusual pains are carefully ironic | +11982|167995|O|66389.84|1996-02-02|2-HIGH|Clerk#000000373|0| deposits. platelets haggle furiously | +11983|486547|F|15670.13|1992-02-05|1-URGENT|Clerk#000001655|0|nic instructions haggl| +12008|112186|F|213240.41|1995-02-09|2-HIGH|Clerk#000000602|0| foxes wake fluffily packages. final, idle accounts | +12009|735970|F|42751.89|1994-06-24|2-HIGH|Clerk#000001867|0|r, bold platelets believe fluffi| +12010|447760|F|270399.70|1993-12-25|1-URGENT|Clerk#000004625|0|ironic packages! bold, ironic dep| +12011|739246|F|124107.86|1992-01-17|5-LOW|Clerk#000002830|0|. pending excuses detect s| +12012|4325|O|130534.36|1997-11-21|3-MEDIUM|Clerk#000003223|0|g pinto beans. slyly ironic warhorses are quickly ironic packages. dogg| +12013|674578|O|54214.45|1995-11-22|5-LOW|Clerk#000003134|0|sly. carefully even foxes detect | +12014|616945|F|86376.20|1995-01-27|2-HIGH|Clerk#000001408|0|ests are furiously u| +12015|242764|O|189956.40|1996-03-21|1-URGENT|Clerk#000003416|0|quests detect. bold, special sauternes integrate| +12040|122674|O|186346.18|1997-01-08|2-HIGH|Clerk#000002193|0|uickly silent theodolites are furiously final deposits. iron| +12041|11965|O|159824.30|1996-11-07|5-LOW|Clerk#000003628|0|ts sleep: regular deposits haggle ironic gifts| +12042|68917|F|94335.03|1993-07-21|5-LOW|Clerk#000001969|0|ld ideas among the carefully final accounts detect furiously carefully unusual| +12043|266968|O|79264.88|1998-02-08|1-URGENT|Clerk#000003590|0| even accounts haggle furiously regular | +12044|398644|O|42360.88|1995-12-25|3-MEDIUM|Clerk#000002735|0|its. final theodolites haggle amo| +12045|252400|F|127930.45|1995-02-03|1-URGENT|Clerk#000001533|0|ly special packages use slyly. quickly regular requests | +12046|59395|F|161410.20|1994-03-16|4-NOT SPECIFIED|Clerk#000003505|0| regular requests are final, ir| +12047|734783|F|223477.36|1992-11-14|5-LOW|Clerk#000004107|0|es haggle along the regular, regular attainments. slowly regular reque| +12072|732148|O|128931.53|1996-11-03|5-LOW|Clerk#000003812|0|times pending packages cajol| +12073|699817|O|182053.04|1996-10-13|2-HIGH|Clerk#000001067|0|ss dolphins impress carefully stealthily final depths. final | +12074|312835|F|84210.91|1994-08-18|3-MEDIUM|Clerk#000004222|0|s accounts cajole among the final instructions. exc| +12075|311857|O|84132.72|1995-12-09|1-URGENT|Clerk#000003502|0|gainst the bold, regular req| +12076|366985|F|290287.18|1993-07-15|4-NOT SPECIFIED|Clerk#000002630|0|y ironic requests sleep. asymptotes haggle. alwa| +12077|640777|O|205465.45|1995-11-28|1-URGENT|Clerk#000001943|0|sly until the blithely even packages. b| +12078|287110|F|15411.78|1995-02-06|4-NOT SPECIFIED|Clerk#000002209|0|ckages are carefully | +12079|688135|F|133033.01|1993-03-11|2-HIGH|Clerk#000004878|0|lly above the ironic accounts. ironic ideas thrash sl| +12104|476527|O|97299.64|1995-07-30|1-URGENT|Clerk#000002957|0|ts. slyly even instructions cajole slyly. blithe packages haggle. fluffi| +12105|478265|F|201450.52|1993-06-08|1-URGENT|Clerk#000001199|0|blithely according to the final, silent ideas! bold, special package| +12106|445573|O|187560.09|1996-06-15|1-URGENT|Clerk#000001001|0|y fluffily pending dugouts. quickly ironic accounts are alongsid| +12107|737816|F|175587.99|1992-12-17|4-NOT SPECIFIED|Clerk#000003235|0|he pending, final asymptotes cajole about the slyly regular requ| +12108|709370|O|140077.64|1998-06-24|1-URGENT|Clerk#000003094|0|nst the regular requests. pinto beans affix; final, unusual pains are p| +12109|378065|O|253586.45|1998-01-17|4-NOT SPECIFIED|Clerk#000004058|0|ronic requests. regular accounts are slyly according t| +12110|135566|F|151112.02|1994-12-10|3-MEDIUM|Clerk#000001744|0|he blithely ironic asymptotes. carefully f| +12111|692455|O|219272.78|1997-04-28|2-HIGH|Clerk#000000637|0|blithely quickly express ideas. sl| +12136|339172|P|55002.08|1995-06-09|2-HIGH|Clerk#000001120|0|he blithely regular excuses. final depo| +12137|453808|O|69833.03|1996-11-12|5-LOW|Clerk#000002317|0| ironic packages use. instructions boost. pinto beans poach slyl| +12138|394520|O|173257.07|1998-02-22|2-HIGH|Clerk#000000034|0|fy packages. dependencies sleep bold, eve| +12139|697333|O|131591.30|1997-08-15|3-MEDIUM|Clerk#000000520|0|lithely among the carefully silent deposits| +12140|550993|F|294221.76|1994-03-02|2-HIGH|Clerk#000000381|0|l deposits hang fluffily| +12141|268201|O|126324.21|1997-03-31|4-NOT SPECIFIED|Clerk#000003273|0| snooze ruthlessly unusual packages? furiously regular gift| +12142|126722|O|61797.86|1996-09-05|4-NOT SPECIFIED|Clerk#000000896|0|sits. furiously final requests above the enticing asym| +12143|564878|F|50512.76|1994-09-12|2-HIGH|Clerk#000003233|0|ily final ideas sleep furiously-- quickl| +12168|399287|F|310651.69|1993-09-25|4-NOT SPECIFIED|Clerk#000002626|0|al, unusual requests. even instr| +12169|554644|F|183913.09|1994-03-25|2-HIGH|Clerk#000001640|0|bold deposits integrat| +12170|131488|O|132782.96|1998-07-11|4-NOT SPECIFIED|Clerk#000001428|0|e dolphins. regular pinto beans above the | +12171|407873|O|148243.79|1997-12-25|5-LOW|Clerk#000004518|0|c foxes sleep furiously about the ironic requests. regular deposits| +12172|114283|F|78090.15|1993-08-09|5-LOW|Clerk#000002949|0|ironic deposits poach doggedly alongside of the quickly final pinto be| +12173|3281|F|85781.03|1993-08-10|1-URGENT|Clerk#000003991|0|packages are blithely | +12174|383296|F|125431.40|1994-02-27|4-NOT SPECIFIED|Clerk#000003067|0|ly ironic requests sleep furiously above the regular reques| +12175|281807|F|272721.42|1993-10-27|1-URGENT|Clerk#000001721|0|y slyly silent deposits. sl| +12200|67201|O|139369.44|1997-02-21|5-LOW|Clerk#000000206|0|ts cajole. unusual accounts solve after the regular| +12201|674080|F|223467.59|1995-02-23|2-HIGH|Clerk#000004191|0|e close grouches. slyly even platelets solv| +12202|505724|O|243529.64|1997-06-20|5-LOW|Clerk#000003996|0|re slyly regular requests-- unusual, ironic| +12203|695063|F|25077.98|1994-08-13|3-MEDIUM|Clerk#000004982|0|s cajole blithely against the car| +12204|671662|O|45891.06|1997-03-20|5-LOW|Clerk#000002464|0|mptotes against the final pinto beans sleep f| +12205|344687|F|52589.44|1995-05-24|2-HIGH|Clerk#000003947|0|es. blithely unusual instructions de| +12206|151691|O|54003.07|1996-04-06|2-HIGH|Clerk#000003110|0|y regular deposits after the regular, unusual deposit| +12207|214585|O|181990.82|1996-03-05|3-MEDIUM|Clerk#000000914|0|to the final pinto bean| +12232|515119|F|126609.14|1992-01-26|2-HIGH|Clerk#000004343|0|fully ironic accounts wake carefully requests: sh| +12233|340496|F|66911.25|1992-12-22|1-URGENT|Clerk#000001504|0| use carefully among the ironic deposits. excuses wake slyly. blithely furious| +12234|207007|O|218303.83|1996-05-07|4-NOT SPECIFIED|Clerk#000002846|0|nusual deposits. fluffily regul| +12235|660007|F|268204.91|1994-07-25|4-NOT SPECIFIED|Clerk#000003717|0|telets. regular, silent requests boost furiously about the ironic packages| +12236|218558|F|63685.79|1992-03-27|3-MEDIUM|Clerk#000001344|0|equests cajole about the finally unusual hockey players. fina| +12237|542737|F|28547.20|1993-01-03|1-URGENT|Clerk#000002068|0|iously ironic ideas cajole carefully. even accounts nag. slyly i| +12238|252712|F|67826.26|1993-11-26|5-LOW|Clerk#000004858|0|. slyly bold foxes detect slyly slyly regular asymptotes. carefully pending| +12239|51940|O|89566.54|1996-11-11|2-HIGH|Clerk#000000528|0|sts. slyly bold dinos s| +12264|677167|O|136006.19|1998-06-04|2-HIGH|Clerk#000000272|0|latelets nag about the even, pend| +12265|618655|F|219774.19|1993-01-02|1-URGENT|Clerk#000000150|0|usual deposits: slyly ironic pinto beans between the ironic depende| +12266|471913|F|221130.60|1993-03-02|2-HIGH|Clerk#000001502|0|packages across the ideas wake fluffily against the final| +12267|159803|O|119559.98|1996-03-05|3-MEDIUM|Clerk#000004030|0|arefully ironic theodolites use according to the quickly final accounts. eve| +12268|46054|P|116191.89|1995-03-01|5-LOW|Clerk#000002698|0|y after the asymptotes. instructions cajole after the | +12269|8945|O|160058.84|1996-06-01|4-NOT SPECIFIED|Clerk#000003837|0| detect furiously alongside of the carefully even instructions. furiously| +12270|333992|O|161876.55|1995-06-24|2-HIGH|Clerk#000000771|0|ven ideas cajole furiously.| +12271|399986|F|198018.98|1994-11-21|2-HIGH|Clerk#000000799|0|nic, pending packages along the requests nag carefully furious| +12296|299986|F|263664.51|1994-03-22|1-URGENT|Clerk#000002997|0|yly. final, regular ideas kindle quickly carefully bold do| +12297|335897|F|215920.04|1993-08-15|2-HIGH|Clerk#000002164|0|ular deposits are. carefully special frays sleep | +12298|161302|O|132497.91|1996-02-01|3-MEDIUM|Clerk#000003004|0|ully regular dinos boost. doggedly even ideas boost sl| +12299|483941|F|163143.87|1994-07-16|5-LOW|Clerk#000002556|0|ely regular ideas breach carefully above the packages. bold depo| +12300|590771|F|266794.71|1993-05-07|1-URGENT|Clerk#000004219|0|al ideas along the even theodolites boost b| +12301|583105|F|162459.00|1992-07-29|4-NOT SPECIFIED|Clerk#000000905|0|lly special dependencies unwind among the quickly close dependencie| +12302|745622|O|22709.01|1995-10-25|2-HIGH|Clerk#000004264|0|kly regular requests above the regular requests are carefull| +12303|662962|O|128805.34|1996-10-06|3-MEDIUM|Clerk#000002055|0| regular platelets wake at the blithely dogged notornis. f| +12328|372527|O|225643.48|1995-08-03|3-MEDIUM|Clerk#000004702|0|s detect slyly unusual excuses. ironic deposits nag. carefully e| +12329|55033|F|301880.73|1992-03-01|4-NOT SPECIFIED|Clerk#000004370|0|use after the unusual pinto beans. quickly f| +12330|161084|O|18489.28|1998-07-30|1-URGENT|Clerk#000003874|0|yly ironic pinto beans haggle permanently pendi| +12331|588170|P|119257.31|1995-05-03|5-LOW|Clerk#000004956|0|into beans. blithely r| +12332|362729|O|280086.20|1996-10-29|2-HIGH|Clerk#000004453|0|x furiously slyly bold requests. quiet, regular deposits boost | +12333|383558|O|129650.44|1997-08-08|2-HIGH|Clerk#000001284|0|sits haggle slyly-- slyly even requests above t| +12334|202031|O|185234.51|1998-01-29|1-URGENT|Clerk#000001309|0|theodolites across the ev| +12335|268414|F|7500.77|1993-08-29|5-LOW|Clerk#000004473|0|inal platelets boost about the ironic, pending package| +12360|731581|O|209171.01|1998-07-03|2-HIGH|Clerk#000002194|0|al excuses. blithely even i| +12361|179134|F|64186.31|1994-01-16|1-URGENT|Clerk#000003691|0| regular asymptotes. fluffily final deposits haggle slyly. quic| +12362|172012|F|90212.57|1992-02-14|4-NOT SPECIFIED|Clerk#000003915|0| pending packages. regular instructions integrate quickly| +12363|504670|F|240492.47|1992-01-15|4-NOT SPECIFIED|Clerk#000004692|0|thin pearls wake among the blithely bold accounts. iro| +12364|235301|O|64061.12|1998-01-15|4-NOT SPECIFIED|Clerk#000002368|0| final, express accounts wake carefully according to the pac| +12365|689672|F|107870.50|1992-04-27|1-URGENT|Clerk#000001311|0|es haggle blithely fluffily even dugouts. blithely| +12366|64451|F|102956.17|1992-07-12|4-NOT SPECIFIED|Clerk#000002322|0|y against the even deposits. blithely | +12367|227045|F|172385.54|1994-04-11|4-NOT SPECIFIED|Clerk#000004310|0|ress foxes. final deposits cajole carefully about the requests. quickly| +12392|694834|F|16652.70|1993-06-29|4-NOT SPECIFIED|Clerk#000001460|0|y. quickly pending foxes| +12393|552122|O|259295.28|1996-02-18|5-LOW|Clerk#000003782|0|nal foxes. unusual, idle requests whi| +12394|503977|O|125279.55|1997-09-09|1-URGENT|Clerk#000002021|0|egular deposits. slyly even accounts haggle stealthily perm| +12395|562574|O|202179.66|1997-12-07|2-HIGH|Clerk#000002391|0|fully ironic packages across the furiously quick dependencies print | +12396|675746|O|93515.73|1997-02-18|1-URGENT|Clerk#000000798|0|instructions detect slyly after the deposi| +12397|6104|O|152382.50|1995-06-28|1-URGENT|Clerk#000001340|0|detect. express accounts| +12398|577975|O|18259.21|1996-10-31|4-NOT SPECIFIED|Clerk#000000202|0|oss the quickly daring deposits sleep regular requests: express, final re| +12399|4963|F|139789.16|1992-12-19|2-HIGH|Clerk#000001115|0|ng the regular warthogs.| +12424|160382|F|125212.02|1993-03-08|4-NOT SPECIFIED|Clerk#000004114|0|dolites haggle slyly according to the carefully special requests. slyly| +12425|31871|F|295400.99|1995-01-24|1-URGENT|Clerk#000003433|0|manent packages. ironic instructions haggle furiously. carefully slow asy| +12426|143374|O|222790.52|1996-11-09|3-MEDIUM|Clerk#000004368|0|its integrate carefully according t| +12427|659177|O|324709.03|1996-03-14|3-MEDIUM|Clerk#000000996|0|c deposits haggle furiously special platelets. deposits about the furiously| +12428|521158|F|72157.76|1993-10-31|2-HIGH|Clerk#000004178|0|special ideas wake furiously carefully unusual accoun| +12429|590104|O|93960.58|1998-04-13|4-NOT SPECIFIED|Clerk#000004611|0|ets. fluffily ironic packages wake quickly ideas. fluffily ironic package| +12430|613408|F|237741.50|1993-03-02|4-NOT SPECIFIED|Clerk#000002531|0|e carefully until the blithely even foxes. slyly | +12431|46564|O|140784.39|1996-05-08|5-LOW|Clerk#000004749|0|heodolites shall boost furiously.| +12456|318688|F|260085.58|1992-02-16|4-NOT SPECIFIED|Clerk#000001017|0|, sly requests sleep furiously about t| +12457|436342|O|80215.62|1996-05-06|5-LOW|Clerk#000002936|0| furiously express theodolites cajole sometimes ironically even ideas.| +12458|96700|F|112698.63|1993-12-26|3-MEDIUM|Clerk#000002691|0|egrate. special pinto beans after the s| +12459|721846|O|246290.68|1997-12-01|2-HIGH|Clerk#000004437|0|ously even, even accounts. quick| +12460|43675|F|98519.97|1993-04-26|3-MEDIUM|Clerk#000002652|0|silent accounts afte| +12461|527665|F|29614.48|1994-04-03|4-NOT SPECIFIED|Clerk#000002326|0|integrate special packages. fluffily special foxes above the unu| +12462|439441|F|183257.79|1992-12-28|5-LOW|Clerk#000000268|0|notornis. slyly ironic foxes among the regular ideas caj| +12463|415366|F|96136.66|1993-07-21|1-URGENT|Clerk#000003309|0| furiously final deposits ar| +12488|48299|F|133532.62|1992-01-30|2-HIGH|Clerk#000000676|0|lly regular asymptotes. pinto beans wake q| +12489|256724|F|302689.21|1994-06-12|1-URGENT|Clerk#000000012|0|ep idly. carefully bold dolphins play final| +12490|744373|F|86177.27|1993-04-07|3-MEDIUM|Clerk#000001537|0|osits. regularly regular packages nag furiously ironic asymptotes. hockey | +12491|665449|O|166950.25|1997-07-25|3-MEDIUM|Clerk#000002285|0|slyly except the express accounts. slyly final | +12492|174385|O|308591.53|1995-10-08|3-MEDIUM|Clerk#000003158|0|ep furiously above the blithely regular deposits. pending, express| +12493|618515|F|159212.14|1993-03-03|5-LOW|Clerk#000003825|0| packages sleep. si| +12494|372457|O|98590.31|1997-07-11|4-NOT SPECIFIED|Clerk#000004452|0|packages against the sly, special dolphins are slowly blithely final acc| +12495|377531|F|110915.51|1994-10-14|1-URGENT|Clerk#000002547|0|lithely even pinto beans. even,| +12520|156245|F|181409.84|1995-02-25|3-MEDIUM|Clerk#000004496|0|latelets haggle slyly. special, final requests sleep furiously | +12521|250630|O|62048.24|1997-10-21|3-MEDIUM|Clerk#000003025|0|oxes. quickly regular platelets ab| +12522|324431|F|110062.16|1993-06-24|1-URGENT|Clerk#000002066|0|edly furiously regular requests. slyly even accounts about the | +12523|204388|O|86319.46|1996-08-25|1-URGENT|Clerk#000000339|0|ns cajole about the fluffily enticin| +12524|135571|F|247230.56|1993-02-22|5-LOW|Clerk#000001164|0|counts according to the furiously express platelets wa| +12525|14771|F|99485.65|1993-08-06|3-MEDIUM|Clerk#000004788|0|tes impress quickly quickly regular packages. pe| +12526|748334|F|56944.22|1992-09-01|5-LOW|Clerk#000002981|0|ily special pinto beans-- bold packages hinder slyly furiously ironi| +12527|496985|O|83811.16|1997-07-27|5-LOW|Clerk#000004993|0|ackages. furiously silent | +12552|71740|F|297991.25|1994-06-26|2-HIGH|Clerk#000000193|0|al requests sleep quickly: slyly even courts boost quickly carefully final pa| +12553|466606|F|27861.19|1994-08-16|2-HIGH|Clerk#000003343|0| according to the furiously final deposits. furious| +12554|233875|O|250104.04|1995-09-21|4-NOT SPECIFIED|Clerk#000002813|0|bove the silent, even inst| +12555|710455|O|77003.20|1996-05-01|2-HIGH|Clerk#000001534|0|arefully about the boldly expre| +12556|586706|O|185563.87|1995-10-24|2-HIGH|Clerk#000001236|0|ccording to the final, regular ideas? blithely express requests cajole sly| +12557|513668|F|229934.64|1992-05-06|3-MEDIUM|Clerk#000003624|0|the regular, special attainments. final pla| +12558|711646|F|166310.35|1992-05-29|2-HIGH|Clerk#000001448|0|ts are blithely. enticing pinto beans are along th| +12559|363839|F|171717.56|1994-08-11|2-HIGH|Clerk#000000234|0|etect. final packages about the final ideas cajole sl| +12584|288766|O|209076.41|1996-05-12|5-LOW|Clerk#000001062|0|e blithely bold instructions sleep furiously ironic depths. f| +12585|27671|F|111063.00|1993-06-12|2-HIGH|Clerk#000001634|0| beans. pending accounts unwind| +12586|60586|F|60638.78|1995-01-22|3-MEDIUM|Clerk#000002443|0|regular realms are fur| +12587|488789|O|56761.09|1997-04-23|4-NOT SPECIFIED|Clerk#000003353|0|ent asymptotes cajole slyly unusual requests. bold packa| +12588|313081|F|212424.91|1992-04-26|2-HIGH|Clerk#000001613|0|ing deposits detect alongside of| +12589|702116|O|393198.24|1998-04-01|1-URGENT|Clerk#000001307|0|le slyly. ideas cajole furiously. ruthl| +12590|698441|O|21754.50|1995-12-25|1-URGENT|Clerk#000003831|0|iously. quickly regular pinto beans nag. express, silent asymptotes boos| +12591|434693|O|140459.73|1997-07-29|1-URGENT|Clerk#000001587|0| after the express packages. carefully even packages sleep sly| +12616|127999|F|82535.95|1992-10-04|4-NOT SPECIFIED|Clerk#000002148|0|. fluffily ruthless requests cajole bl| +12617|265468|O|18791.95|1995-10-23|1-URGENT|Clerk#000001525|0| the slyly even accounts are regular, unusual theodolites. carefully bold ac| +12618|701524|O|248780.94|1997-11-01|4-NOT SPECIFIED|Clerk#000000696|0|ideas. final, special accounts nag about the busily | +12619|488867|O|179419.09|1996-02-22|1-URGENT|Clerk#000002494|0|quick deposits alongside of the reg| +12620|134902|O|170209.02|1996-06-12|4-NOT SPECIFIED|Clerk#000004029|0|ely express accounts. r| +12621|46654|F|217121.88|1992-12-17|3-MEDIUM|Clerk#000000916|0|s. ironic epitaphs against the slyly even requests detect| +12622|337024|O|150981.16|1996-11-14|4-NOT SPECIFIED|Clerk#000001193|0|eep blithely. slyly | +12623|346087|O|181950.70|1998-04-27|2-HIGH|Clerk#000003741|0|ously unusual theodolites detect quickly. finally expres| +12648|418219|F|149226.89|1994-01-27|3-MEDIUM|Clerk#000001597|0|posits. special, ironic depths cajole carefully pending dolphins. furious| +12649|744064|F|175426.62|1993-08-23|1-URGENT|Clerk#000002534|0|around the ironic packages. regular excu| +12650|719650|F|196391.97|1993-01-22|5-LOW|Clerk#000004910|0| boost across the bold ideas. fluffily unusual accounts according| +12651|657211|F|264563.20|1995-01-13|5-LOW|Clerk#000001804|0|ourts haggle. final packages a| +12652|462598|O|136675.35|1997-11-27|4-NOT SPECIFIED|Clerk#000001217|0|de of the furiously daring deposits. quickly ironic| +12653|367600|F|9358.09|1995-03-24|3-MEDIUM|Clerk#000003014|0|st the fluffily bold deposits. slyly unusual deposits along the | +12654|499273|F|116024.91|1994-05-03|3-MEDIUM|Clerk#000004546|0|sts. unusual, ironic deposits cajole about the carefu| +12655|265268|F|80473.99|1994-07-06|3-MEDIUM|Clerk#000003319|0|ctions ought to nag above the furiously silent deposits. sometimes expr| +12680|356161|O|267858.23|1997-04-28|2-HIGH|Clerk#000000051|0|ckages sleep slyly after the furiously dogged courts. furiously regul| +12681|240170|O|176449.02|1998-05-19|5-LOW|Clerk#000000315|0|r courts are carefully| +12682|28943|O|194090.99|1997-03-05|2-HIGH|Clerk#000004342|0|ckly blithely final deposits. platelets nag alwa| +12683|444388|O|121184.31|1996-02-01|3-MEDIUM|Clerk#000002461|0|ithely from the special, even deposits. foxe| +12684|313310|F|128232.20|1992-06-07|4-NOT SPECIFIED|Clerk#000001637|0|packages are. blithely express instruction| +12685|39289|F|89900.69|1992-01-20|1-URGENT|Clerk#000002814|0|d deposits. accounts | +12686|314629|F|250580.70|1992-10-06|4-NOT SPECIFIED|Clerk#000002396|0|. express courts wa| +12687|468001|O|42876.35|1996-10-29|4-NOT SPECIFIED|Clerk#000000471|0|fily busy foxes serve quickly across the theodolites. slyly ev| +12712|419218|F|90984.15|1993-01-23|1-URGENT|Clerk#000004834|0|he carefully pending instructions. slyly unusual request| +12713|265573|O|161026.07|1996-08-24|4-NOT SPECIFIED|Clerk#000001720|0|ructions? special, pending foxes nag carefully | +12714|208330|O|161128.60|1996-04-06|4-NOT SPECIFIED|Clerk#000002616|0|s sublate blithely | +12715|387901|F|48911.94|1993-09-09|3-MEDIUM|Clerk#000000532|0|otes. always bold warthogs cajole carefully. pinto beans sleep idly about th| +12716|439490|O|52793.56|1997-06-13|2-HIGH|Clerk#000000940|0| until the silent the| +12717|503054|F|220310.69|1995-02-11|1-URGENT|Clerk#000003501|0|ly pinto beans should have to integrat| +12718|63916|F|43611.17|1993-09-11|4-NOT SPECIFIED|Clerk#000000095|0|y regular braids. ca| +12719|216779|F|18269.51|1992-08-04|1-URGENT|Clerk#000002915|0| accounts about the unusual packages wake along the| +12744|652594|F|154450.24|1993-05-13|3-MEDIUM|Clerk#000001434|0|above the theodolites; final ideas cajole special in| +12745|123937|F|265800.88|1992-02-27|4-NOT SPECIFIED|Clerk#000003948|0|pinto beans about the fluffily final theodolites boost atop the blit| +12746|251935|F|176531.82|1993-01-02|5-LOW|Clerk#000002956|0| nag by the special orbits. carefully furious deposits acco| +12747|491968|F|354157.61|1994-10-09|4-NOT SPECIFIED|Clerk#000000491|0|s. fluffily ironic sentiments sleep| +12748|478562|O|229951.84|1997-05-24|2-HIGH|Clerk#000000651|0|refully carefully pending deposits! fu| +12749|189034|F|260391.22|1994-12-04|4-NOT SPECIFIED|Clerk#000002749|0| carefully even theodolites. carefu| +12750|75670|F|173760.84|1992-06-16|5-LOW|Clerk#000003023|0|deposits. unusual requests are above the pl| +12751|511993|F|69481.23|1994-07-04|5-LOW|Clerk#000003853|0|tect daringly. packages was furiously above | +12776|286399|F|110405.36|1992-10-03|4-NOT SPECIFIED|Clerk#000000670|0|usly final foxes kindle carefully around the slyly final cour| +12777|749243|O|96482.40|1997-06-24|1-URGENT|Clerk#000001851|0| to the fluffily special hockey players maintain idly evenly regular requ| +12778|26848|O|103070.65|1995-09-20|3-MEDIUM|Clerk#000004305|0|ly express deposits are carefully. caref| +12779|477416|F|200717.87|1992-05-05|4-NOT SPECIFIED|Clerk#000001732|0|jole bravely. quickly special packages haggle slyly sl| +12780|428828|O|73742.39|1996-04-14|2-HIGH|Clerk#000003335|0|, even asymptotes are ideas. blithely iron| +12781|550162|O|4692.90|1995-07-04|2-HIGH|Clerk#000000604|0|s haggle carefully against the bo| +12782|539402|F|130752.75|1994-05-03|5-LOW|Clerk#000003497|0|ove the regular theodolites. busily final theodolites slee| +12783|477370|F|59886.45|1992-04-07|4-NOT SPECIFIED|Clerk#000000951|0|riously final platelet| +12808|375925|P|237529.14|1995-04-11|3-MEDIUM|Clerk#000004108|0| ironic theodolites. bold instruc| +12809|154244|O|188349.87|1997-06-18|1-URGENT|Clerk#000001697|0|yly regular escapades. blithely final instructions promise slyly after the bl| +12810|367201|F|224515.68|1993-07-13|4-NOT SPECIFIED|Clerk#000001244|0|ies wake ironically about the slyly pendi| +12811|539660|O|25308.08|1998-01-11|4-NOT SPECIFIED|Clerk#000001628|0|ial, express theodolites. fluffily regular platelets boos| +12812|301423|O|100303.97|1996-12-25|2-HIGH|Clerk#000001902|0|phins believe slowly along t| +12813|490798|F|26715.42|1995-01-06|2-HIGH|Clerk#000003704|0|ounts. quickly regular packages x-ray blithely pending accounts. fluf| +12814|333547|F|123423.55|1992-04-20|4-NOT SPECIFIED|Clerk#000001414|0|fully regular sentiments-- slyly final requests use fu| +12815|397789|F|218168.39|1992-04-08|1-URGENT|Clerk#000000197|0| pending packages haggle carefully slyly bold requests. sl| +12840|122795|O|204240.75|1996-10-26|5-LOW|Clerk#000003521|0| unusual packages integrate after the courts. carefully pendi| +12841|563950|F|300822.42|1994-10-20|4-NOT SPECIFIED|Clerk#000003855|0|onic theodolites nag slyly until the pinto beans| +12842|547168|O|40062.84|1997-09-12|3-MEDIUM|Clerk#000003880|0|c packages are against the final escapades. blithely regular instructions ag| +12843|481886|O|95387.17|1996-08-26|4-NOT SPECIFIED|Clerk#000002241|0|carefully orbits. furiously final accounts wake t| +12844|553420|F|6787.82|1993-06-11|4-NOT SPECIFIED|Clerk#000001513|0|es. final requests haggle special,| +12845|578417|O|246084.76|1996-07-05|3-MEDIUM|Clerk#000002457|0|ieve carefully unusual accounts. caref| +12846|694759|F|118011.58|1992-08-10|3-MEDIUM|Clerk#000002563|0|s. regular, express platelets poach blithely. even asymptotes accor| +12847|53902|O|52138.32|1997-08-03|1-URGENT|Clerk#000003030|0|quests cajole fluffily| +12872|673684|O|154591.64|1998-02-23|3-MEDIUM|Clerk#000003705|0|ess, final dependencies. slyly unusual packages a| +12873|575344|F|228614.31|1995-01-13|3-MEDIUM|Clerk#000000207|0|. special dependencies wake furiously. un| +12874|24856|O|271027.67|1998-03-31|4-NOT SPECIFIED|Clerk#000001737|0|ress accounts wake slyly even deposits. pending| +12875|742177|O|260527.20|1998-05-08|3-MEDIUM|Clerk#000003563|0|ole ideas. enticing dependenci| +12876|496306|F|156317.96|1993-01-08|5-LOW|Clerk#000001554|0|regular requests. even, fin| +12877|656168|O|92846.85|1995-05-01|4-NOT SPECIFIED|Clerk#000000195|0|leep evenly gifts. close excuses are furiously specia| +12878|205553|O|206216.34|1998-04-11|3-MEDIUM|Clerk#000004816|0|inally slyly special instructions. carefully ironic deposits among| +12879|227401|O|125925.77|1997-09-10|1-URGENT|Clerk#000002710|0|pecial pinto beans engage quickly along the furiously bol| +12904|658093|F|86453.58|1994-08-27|4-NOT SPECIFIED|Clerk#000000239|0|ounts engage bravely. foxes | +12905|296341|O|199779.88|1996-09-11|4-NOT SPECIFIED|Clerk#000001152|0|should wake quickly. regular foxes eat slyly beside the quickly final| +12906|573394|F|27939.33|1994-01-29|4-NOT SPECIFIED|Clerk#000001116|0|g the furiously final foxes. iro| +12907|258019|F|157158.77|1994-02-04|5-LOW|Clerk#000000849|0|uctions sleep slyly platelets. accounts affix carefully ca| +12908|742072|O|67831.62|1998-06-20|3-MEDIUM|Clerk#000002024|0|s cajole quickly carefully ironic foxe| +12909|253852|F|245264.07|1993-10-08|3-MEDIUM|Clerk#000000908|0|p furiously unusual requests. slyly express pinto beans haggle blithely| +12910|464554|O|158399.32|1997-02-28|5-LOW|Clerk#000003278|0|cies according to the carefully regular theodolites| +12911|242225|O|74709.63|1998-04-15|2-HIGH|Clerk#000002073|0|ly regular foxes above the ironic, ironic pinto beans ca| +12936|70679|F|84319.38|1994-03-09|3-MEDIUM|Clerk#000001167|0| sleep slyly against the iron| +12937|643123|F|56138.41|1994-12-17|5-LOW|Clerk#000000135|0|utside the ironic, unusua| +12938|692056|O|215596.77|1995-06-30|3-MEDIUM|Clerk#000004954|0| ironic accounts sleep blithely slyly regular waters. accounts | +12939|357085|F|178625.14|1994-06-03|4-NOT SPECIFIED|Clerk#000000065|0| ironic platelets cajole. carefully close pinto beans are furiousl| +12940|746320|F|149154.01|1995-01-31|3-MEDIUM|Clerk#000003577|0|usual epitaphs integrate blith| +12941|369574|F|140306.49|1993-03-05|3-MEDIUM|Clerk#000001310|0|ar theodolites haggle bold ideas. quickly ironic instructions use| +12942|662192|F|99045.52|1992-11-22|3-MEDIUM|Clerk#000000643|0|counts kindle slyly unusual requests. pending requests wake stealthily. idle t| +12943|195523|F|73559.96|1992-01-19|4-NOT SPECIFIED|Clerk#000001515|0|. pending accounts are quickly against the final, | +12968|400564|F|38923.04|1993-08-10|3-MEDIUM|Clerk#000002534|0|gular, bold requests s| +12969|276986|F|78567.82|1992-02-12|1-URGENT|Clerk#000003575|0|s. fluffily regular accounts sleep carefull| +12970|43006|F|191625.75|1993-01-23|1-URGENT|Clerk#000003716|0|ironic deposits cajole slyly regul| +12971|547090|F|304401.38|1993-03-01|1-URGENT|Clerk#000004631|0|side of the quickly ironic exc| +12972|685741|F|205482.82|1995-01-07|4-NOT SPECIFIED|Clerk#000003645|0|aggle carefully around the theodolites. bo| +12973|718597|O|206045.09|1995-07-29|4-NOT SPECIFIED|Clerk#000000141|0|al requests boost ironic deposits. s| +12974|203095|F|263260.26|1994-05-21|4-NOT SPECIFIED|Clerk#000004863|0| run furiously slyly regular packages! excu| +12975|135124|F|69843.84|1992-10-09|5-LOW|Clerk#000003457|0| ironic accounts sleep toward the slyly ironic instructions. slyl| +13000|6604|F|125277.01|1994-02-15|3-MEDIUM|Clerk#000000325|0|special asymptotes may cajole around the even accounts. fluffily unusual | +13001|740698|O|142401.89|1998-06-05|2-HIGH|Clerk#000001487|0|pending packages. bold requests use| +13002|387079|F|221747.70|1994-08-29|3-MEDIUM|Clerk#000002736|0|xpress ideas. furious requests are among the pending, special | +13003|122218|F|65235.34|1993-06-02|5-LOW|Clerk#000004567|0|oze! carefully even asympto| +13004|596341|O|42567.81|1995-08-28|1-URGENT|Clerk#000001933|0| requests against the requests detect according to the furiously bold dep| +13005|435404|O|153975.02|1997-01-15|1-URGENT|Clerk#000002764|0|regular instructions detect furiously | +13006|72484|P|387409.96|1995-05-23|1-URGENT|Clerk#000003689|0|onic packages should wake furiously slyly even instructions. quickly ironic| +13007|231781|O|39207.50|1996-07-04|5-LOW|Clerk#000002978|0|thely even deposits. pending requests boost abou| +13032|21277|O|63298.82|1997-12-01|2-HIGH|Clerk#000001188|0|g requests along the quickly regular instructions are close p| +13033|575794|O|69315.63|1996-06-23|5-LOW|Clerk#000004960|0|. pending, even requests haggle. final accounts dazzl| +13034|117941|F|201630.28|1992-06-20|1-URGENT|Clerk#000000169|0|arefully ironic accounts wake. fluffily careful de| +13035|717700|F|188260.50|1994-11-10|4-NOT SPECIFIED|Clerk#000003402|0|ke blithely slyly final requests. fluffily even pinto beans wake care| +13036|112861|F|240579.46|1992-10-30|1-URGENT|Clerk#000002044|0|ess accounts. blithely bold pinto beans x-ray| +13037|74284|F|290315.83|1993-04-08|3-MEDIUM|Clerk#000000815|0|accounts haggle slyl| +13038|483536|O|250600.31|1996-07-17|5-LOW|Clerk#000000804|0|se carefully blithely ironic ideas? carefully| +13039|537782|F|48380.71|1993-11-17|3-MEDIUM|Clerk#000001802|0|t, final courts acro| +13064|241909|O|213809.70|1996-12-02|5-LOW|Clerk#000001184|0|es boost. furiously regular asymptotes are against the | +13065|3160|F|12558.11|1994-12-12|1-URGENT|Clerk#000001371|0|osits. fluffily final pinto beans alongside of the bl| +13066|601613|O|194448.60|1995-11-24|1-URGENT|Clerk#000002257|0| beans. deposits breach. regular, quiet packages alongside of the slyly | +13067|545464|F|278294.31|1995-01-13|3-MEDIUM|Clerk#000002752|0|ke carefully above the furiously ironic dependencies. theodolites haggle f| +13068|331388|F|203305.59|1993-12-29|1-URGENT|Clerk#000002034|0|uickly regular packages sleep blithely. accounts boost| +13069|122408|O|220647.51|1997-01-15|3-MEDIUM|Clerk#000002642|0|multipliers are along| +13070|61112|O|110444.64|1997-03-26|2-HIGH|Clerk#000002842|0|ly. furiously unusual foxes detect quickly r| +13071|344569|O|41269.95|1996-07-20|4-NOT SPECIFIED|Clerk#000003847|0|pinto beans; ironic packages cajole slyly. blithely i| +13096|398038|O|174021.74|1996-03-20|3-MEDIUM|Clerk#000002272|0| carefully blithely even dependencies. | +13097|547945|O|164127.27|1997-06-20|1-URGENT|Clerk#000001607|0|nts. theodolites about the accounts| +13098|40867|F|159984.73|1992-01-27|5-LOW|Clerk#000001754|0| carefully idle theodolites use slyly. slyly ironic dinos | +13099|579610|O|13867.65|1995-09-03|2-HIGH|Clerk#000004997|0|dependencies. carefully unusual instructions int| +13100|485065|F|199970.64|1992-03-26|4-NOT SPECIFIED|Clerk#000004639|0|s sleep furiously above the slyly final asymptotes. regular p| +13101|707098|F|74626.13|1994-04-20|2-HIGH|Clerk#000003344|0| express escapades. b| +13102|423466|P|206710.76|1995-04-16|5-LOW|Clerk#000001379|0|ld asymptotes nag ab| +13103|430261|F|194226.53|1993-11-07|4-NOT SPECIFIED|Clerk#000002409|0|usly above the carefully pending waters. re| +13128|622139|O|102552.09|1997-09-06|5-LOW|Clerk#000004702|0|xpress dolphins. regular, even a| +13129|535897|F|84448.94|1992-12-19|4-NOT SPECIFIED|Clerk#000000967|0| requests detect doggedly. silent foxes are quickly. furiou| +13130|63926|O|176210.44|1995-07-04|5-LOW|Clerk#000000887|0|among the never regular deposits. regular | +13131|395138|F|96866.29|1994-08-23|5-LOW|Clerk#000004021|0|final packages cajole slyly. forges across the carefully | +13132|583016|F|375167.69|1993-03-05|3-MEDIUM|Clerk#000003807|0|regular deposits snooze blithely slyly bold| +13133|741427|F|86299.78|1994-09-02|5-LOW|Clerk#000001729|0| ideas are bravely regular, blithe excuses. sl| +13134|659116|O|51445.04|1998-06-24|4-NOT SPECIFIED|Clerk#000004998|0|olphins after the deposits are blithely furiously final ide| +13135|240925|O|135815.10|1998-08-02|4-NOT SPECIFIED|Clerk#000003320|0|deposits. carefully final instructi| +13160|698939|O|249794.75|1997-10-15|5-LOW|Clerk#000003544|0|uctions detect carefully caref| +13161|562315|F|277469.05|1992-01-30|3-MEDIUM|Clerk#000003958|0|ending deposits. final, ironic | +13162|63134|O|244033.28|1997-05-07|3-MEDIUM|Clerk#000004700|0|egular, regular dinos. blithely regular deposits according to the pending | +13163|587434|P|204926.35|1995-03-22|1-URGENT|Clerk#000003860|0|unts haggle quickly special packages.| +13164|720151|O|242237.32|1996-08-13|4-NOT SPECIFIED|Clerk#000002967|0|sly final packages after the regular, ironic | +13165|69838|F|84096.68|1994-03-14|3-MEDIUM|Clerk#000004253|0|believe furiously slyly ironic a| +13166|16259|O|78282.25|1995-08-29|3-MEDIUM|Clerk#000001784|0| pending deposits against the ironic din| +13167|262172|F|147357.64|1994-03-09|1-URGENT|Clerk#000002735|0|onic, final requests. even accounts wake pending, regular packages. slyly e| +13192|59941|O|48083.62|1997-08-04|2-HIGH|Clerk#000001371|0|y silent accounts! furiously regu| +13193|164092|O|130885.66|1997-05-11|4-NOT SPECIFIED|Clerk#000001069|0|ide of the unusual, unusual packages? carefully unusual accounts haggle quic| +13194|141958|O|317287.66|1997-11-25|3-MEDIUM|Clerk#000001631|0|t the fluffily express accounts. regular o| +13195|136258|F|114965.43|1992-06-09|4-NOT SPECIFIED|Clerk#000003702|0|ackages sleep quickly furiously ironic theodolite| +13196|313739|O|114220.20|1996-08-09|5-LOW|Clerk#000004139|0|uickly pending frets sleep alongside of the blithely pend| +13197|505217|F|69430.42|1992-12-31|2-HIGH|Clerk#000004103|0| the blithely final packages. carefully express dolphins sleep after the car| +13198|418373|F|352280.11|1995-02-05|1-URGENT|Clerk#000003032|0| silent decoys cajole about the fluffily ironic packages. quickly reg| +13199|336275|O|101076.66|1996-06-08|2-HIGH|Clerk#000001370|0|ns. furiously express pint| +13224|508150|O|97827.56|1998-07-12|5-LOW|Clerk#000001732|0|he never special dependencies. sly| +13225|224000|O|209123.09|1995-09-11|3-MEDIUM|Clerk#000001352|0|e the quickly even dinos. carefully iro| +13226|516043|F|37710.87|1994-12-20|4-NOT SPECIFIED|Clerk#000002962|0|posits sleep quickly ev| +13227|118141|O|236980.28|1996-04-02|2-HIGH|Clerk#000002859|0|. thinly unusual requests hag| +13228|316172|O|273004.26|1998-04-17|4-NOT SPECIFIED|Clerk#000001132|0|regular frays along the final, ironic deposits wake abov| +13229|147829|O|133215.15|1995-12-15|2-HIGH|Clerk#000004149|0|, even ideas. final courts across the regular, f| +13230|533359|F|80870.02|1992-10-18|3-MEDIUM|Clerk#000004708|0|efully silent asymptotes wake carefully carefu| +13231|149230|F|98384.61|1992-05-29|3-MEDIUM|Clerk#000004761|0|deas should wake after the bold deposits; blithely express id| +13256|86473|F|246733.63|1994-01-16|1-URGENT|Clerk#000002775|0|uctions according to the even dugouts kindle caref| +13257|584983|F|329986.96|1993-04-18|4-NOT SPECIFIED|Clerk#000002122|0|ross the pending packages; slyly express foxes are qu| +13258|56984|F|159929.21|1993-05-21|2-HIGH|Clerk#000000513|0|uickly ironic accounts. carefully unusual packages boost e| +13259|726401|F|219801.07|1992-01-26|3-MEDIUM|Clerk#000000146|0|iously special ideas | +13260|116218|O|240092.55|1996-12-06|5-LOW|Clerk#000000746|0|de of the unusual packages. blithely ironic instruc| +13261|263452|F|167299.63|1992-02-04|4-NOT SPECIFIED|Clerk#000004802|0| pending pinto beans. slyly final instru| +13262|568753|F|109620.48|1992-08-02|2-HIGH|Clerk#000003090|0|ickly slow foxes are slyl| +13263|258820|O|123518.09|1996-12-22|1-URGENT|Clerk#000002780|0|ly bold theodolites cajole. dolphins are carefully against the even, express t| +13288|713077|F|149566.83|1994-10-12|4-NOT SPECIFIED|Clerk#000003003|0|e the blithely final ideas. even requests wak| +13289|402667|O|245994.48|1997-03-12|2-HIGH|Clerk#000000027|0|, unusual instructions. blithely special patterns boost blith| +13290|341191|F|12138.96|1994-01-04|2-HIGH|Clerk#000001341|0|lar packages alongsid| +13291|620084|F|212930.57|1994-05-02|2-HIGH|Clerk#000003616|0| among the furiously pending packages. special, special asymptotes use furiou| +13292|487840|F|72718.74|1993-04-21|2-HIGH|Clerk#000000893|0|ven requests. even theodolites wake furiously. carefully ironic pinto beans wa| +13293|115543|O|179986.20|1998-03-10|1-URGENT|Clerk#000002241|0|de of the unusual ideas. furiously bold accounts nag blithely furiously ironi| +13294|176194|O|90996.71|1997-07-11|4-NOT SPECIFIED|Clerk#000004015|0|inal packages sleep. regular asympt| +13295|290578|F|161633.14|1994-10-31|5-LOW|Clerk#000003772|0|luffily express courts| +13320|467002|O|88715.03|1997-12-18|3-MEDIUM|Clerk#000002028|0| blithely blithely even instructions. furiously re| +13321|143260|P|71110.86|1995-05-28|1-URGENT|Clerk#000003891|0|egular dependencies are sl| +13322|247660|O|130553.00|1997-10-21|5-LOW|Clerk#000004063|0| furiously regular theodolites cajole across the furiously bold | +13323|666013|O|160550.32|1997-04-14|5-LOW|Clerk#000004269|0|ly sly requests. furiously final req| +13324|668408|O|59992.86|1996-11-26|1-URGENT|Clerk#000001430|0| foxes. carefully enticing | +13325|425863|O|399299.77|1996-12-25|5-LOW|Clerk#000004824|0| pinto beans wake fluffily at the special, even requests. f| +13326|210113|F|305125.45|1992-07-22|5-LOW|Clerk#000000822|0|. furiously express requests wake carefully slyly final| +13327|367540|O|177225.98|1997-08-08|1-URGENT|Clerk#000002167|0|mong the final accounts integrate after the packages. carefully r| +13352|235756|O|74113.60|1995-12-07|4-NOT SPECIFIED|Clerk#000001595|0|r asymptotes about the even accounts| +13353|88819|O|191135.91|1997-02-14|1-URGENT|Clerk#000004929|0| instructions use quickly. stealthily ironic | +13354|278035|F|147561.62|1992-09-25|2-HIGH|Clerk#000001551|0|pendencies haggle slyly pending instructions. regular pinto beans accord| +13355|433423|F|87939.02|1992-08-24|5-LOW|Clerk#000003510|0| are fluffily along the carefully thin requests. eve| +13356|538507|F|28552.84|1993-09-10|3-MEDIUM|Clerk#000002267|0|ts integrate regular forges. carefully regular instructions haggl| +13357|425018|F|264698.39|1992-03-26|4-NOT SPECIFIED|Clerk#000000704|0| fluffily fluffily ironic accounts. platelets play fur| +13358|273749|O|273358.38|1997-08-15|1-URGENT|Clerk#000001771|0|boost carefully bold instructions? fu| +13359|388738|F|343416.29|1993-03-15|1-URGENT|Clerk#000001941|0|packages must haggle? slyly silent deposits cajole quickly. slyly spec| +13384|260249|F|63212.75|1992-07-10|3-MEDIUM|Clerk#000002427|0|ic instructions. carefully ironic foxes after the blithely ir| +13385|4303|F|165520.59|1994-04-19|3-MEDIUM|Clerk#000000868|0|ts. carefully special platelets use about | +13386|304306|F|115393.50|1993-06-18|2-HIGH|Clerk#000002258|0|ar foxes along the slyly even deposits nag fluffily regular,| +13387|215536|O|155751.92|1996-08-17|2-HIGH|Clerk#000004503|0|ly bold deposits. instructions sleep id| +13388|738268|O|165595.88|1997-09-24|3-MEDIUM|Clerk#000004897|0|y blithely even depe| +13389|40945|O|117495.89|1997-09-16|5-LOW|Clerk#000001308|0|ending deposits nag furiously f| +13390|394387|O|260075.86|1995-10-19|4-NOT SPECIFIED|Clerk#000004671|0|ly fluffily even ins| +13391|695593|F|65577.25|1994-06-12|2-HIGH|Clerk#000000171|0|r theodolites above the blithely unusual theodolites haggle aga| +13416|550891|O|117439.87|1998-05-01|1-URGENT|Clerk#000000899|0|otes affix furiously-- slyly ironic packages sleep caref| +13417|49741|O|28656.41|1998-04-25|5-LOW|Clerk#000002868|0|ly special asymptotes alongside of| +13418|479966|O|91566.37|1997-05-20|3-MEDIUM|Clerk#000003369|0|atelets cajole fluffily! ironic, even deposits sleep. fluffily fi| +13419|537469|F|203297.80|1994-07-21|4-NOT SPECIFIED|Clerk#000002196|0|ully ironic packages are slyly. final packages doubt against the carefully ex| +13420|213871|F|175114.41|1994-04-24|3-MEDIUM|Clerk#000004182|0|refully special frets haggle slyly after t| +13421|504023|F|104125.62|1992-04-03|1-URGENT|Clerk#000001722|0| deposits. slyly regular theodolites are slyly carefully even deposits. quickl| +13422|606068|O|84466.49|1997-04-10|3-MEDIUM|Clerk#000002242|0| pinto beans according| +13423|430357|F|224161.79|1992-05-12|2-HIGH|Clerk#000004071|0|e requests. blithely unusual packages use furiously regu| +13448|1807|O|136413.79|1997-05-11|4-NOT SPECIFIED|Clerk#000002881|0|ithely pending theodolites run along the quickly even ideas. quickly dar| +13449|353563|F|97329.67|1992-02-22|5-LOW|Clerk#000001657|0|unwind according to the close| +13450|60055|O|90604.34|1997-03-09|4-NOT SPECIFIED|Clerk#000003548|0|s after the slyly ironic accounts sleep slyly regular requests. slyly iro| +13451|580147|O|144676.36|1998-06-13|3-MEDIUM|Clerk#000003355|0|press asymptotes sleep! carefully silent dependencies haggle furio| +13452|506137|O|101790.79|1997-01-27|1-URGENT|Clerk#000002478|0|er the slyly idle account| +13453|120139|O|143429.29|1996-07-27|1-URGENT|Clerk#000004687|0|ing packages cajole furiously| +13454|153700|F|213523.43|1993-04-18|4-NOT SPECIFIED|Clerk#000002795|0| nag against the closely ironic foxes. ironic theodolites would doze re| +13455|213472|O|245840.44|1995-09-12|3-MEDIUM|Clerk#000004265|0|er slyly final foxes. carefully unusual packages wake carefully about the s| +13480|561110|O|171864.99|1996-06-16|2-HIGH|Clerk#000000993|0| special excuses. quickly express deposits sleep| +13481|60977|F|99094.42|1992-03-25|3-MEDIUM|Clerk#000003304|0|unts was blithely against the special,| +13482|337850|O|154021.20|1996-08-11|1-URGENT|Clerk#000000161|0|ent packages wake furiously instructions. fluffily unusual packages wake sl| +13483|739901|O|13491.57|1995-10-03|2-HIGH|Clerk#000001910|0|gle furiously pending excuses! requests integrate carefully. accou| +13484|514501|O|121957.58|1996-10-20|1-URGENT|Clerk#000002472|0|s cajole busily among the furiously idle excuses. slow, | +13485|442627|O|161888.24|1995-09-14|5-LOW|Clerk#000000424|0|oxes wake. carefully | +13486|712237|O|113783.98|1998-05-30|4-NOT SPECIFIED|Clerk#000004693|0|blithe pinto beans. express deposits alongside of t| +13487|541604|F|257537.42|1994-02-25|3-MEDIUM|Clerk#000002177|0|y even foxes; regular, regular deposits above| +13512|736102|O|342595.21|1996-11-30|1-URGENT|Clerk#000001519|0|nts. blithely special dolphins above the regular theodolites maintain quickly | +13513|390086|O|104194.95|1996-05-22|5-LOW|Clerk#000002870|0|gside of the blithe, regular requests. pinto beans are blithely acr| +13514|420230|O|149653.86|1998-05-15|3-MEDIUM|Clerk#000000293|0| ironic theodolites sleep. carefully even platelets| +13515|44980|F|128220.12|1992-09-03|2-HIGH|Clerk#000001339|0|hely close pearls are furiously pending, ironic asymptotes. ironic | +13516|728857|F|127095.61|1993-05-08|4-NOT SPECIFIED|Clerk#000000678|0|gular pinto beans use quickly fluffy| +13517|141874|O|336721.01|1996-02-18|1-URGENT|Clerk#000003438|0|boost furiously of the packages. bold packages sha| +13518|199519|O|266080.24|1997-02-15|2-HIGH|Clerk#000001776|0|es along the thinly express deposits haggle furiously bravely express account| +13519|34090|O|186012.06|1995-11-07|2-HIGH|Clerk#000004380|0|nt asymptotes boost attainments. carefully| +13544|685885|O|137997.36|1998-03-17|2-HIGH|Clerk#000002580|0|ly until the blithely sp| +13545|167767|F|309697.86|1993-05-13|2-HIGH|Clerk#000000657|0|sly regular accounts. carefully| +13546|408325|O|131325.82|1996-05-17|2-HIGH|Clerk#000000819|0|ymptotes. unusual deposits ha| +13547|192343|F|176159.25|1995-02-08|2-HIGH|Clerk#000002531|0|counts impress carefully across | +13548|176251|F|207640.01|1992-01-23|4-NOT SPECIFIED|Clerk#000000131|0|ounts can kindle slyly. express deposits run. pendi| +13549|487630|F|38710.80|1994-01-28|5-LOW|Clerk#000001638|0| final ideas would boo| +13550|341671|O|119069.28|1996-08-16|3-MEDIUM|Clerk#000004256|0|s. final theodolites haggle quickly. furiously final deposits boost caref| +13551|432088|F|22807.93|1993-07-20|2-HIGH|Clerk#000002750|0|olites according to the sly| +13576|582824|O|157992.79|1996-09-27|2-HIGH|Clerk#000000116|0| slyly sly pinto beans. carefully ironic dolphins wake furiously. sly| +13577|513878|O|168653.01|1998-04-20|5-LOW|Clerk#000003808|0|ly final ideas. regular foxes about the carefully final inst| +13578|481627|F|156727.12|1993-02-16|5-LOW|Clerk#000000456|0|eodolites against the blithely regular asymptotes wake e| +13579|700781|O|274405.17|1996-09-13|1-URGENT|Clerk#000002809|0|fully regular, express platelets. accounts wake furiously by the fluffil| +13580|21772|O|72543.94|1996-05-08|1-URGENT|Clerk#000001938|0|dependencies after the slyly bold dependencies shall have to cajole slyly car| +13581|667018|F|57917.15|1992-05-24|4-NOT SPECIFIED|Clerk#000000424|0|sly against the deposits. blithely iro| +13582|303709|F|76839.60|1994-12-08|5-LOW|Clerk#000004088|0|ies lose fluffily among the blithel| +13583|658213|O|240456.09|1998-06-22|5-LOW|Clerk#000000027|0|ajole furiously final pinto beans. blithely regular pinto beans boost a| +13608|64387|O|12053.45|1996-02-27|3-MEDIUM|Clerk#000004942|0|even packages sleep: furiously even instructions nag above the final foxes. | +13609|638026|O|219455.25|1997-03-07|2-HIGH|Clerk#000002005|0|inst the express Tiresias. caref| +13610|540457|F|34581.36|1993-08-09|4-NOT SPECIFIED|Clerk#000000426|0| instructions. final deposits wake carefully across the carefully | +13611|210553|F|154877.38|1992-06-05|3-MEDIUM|Clerk#000000307|0|. fluffily final pl| +13612|234745|F|249569.99|1994-09-02|2-HIGH|Clerk#000003194|0|ove the ironic, final asymptotes use blithel| +13613|333406|F|257647.08|1994-10-30|5-LOW|Clerk#000000552|0|y ironic accounts. dolphins impress blithely express pi| +13614|302368|F|188844.18|1994-07-09|1-URGENT|Clerk#000002880|0| detect furiously blithely silent ideas. ideas use according to the evenly pen| +13615|615370|O|281109.51|1996-08-20|5-LOW|Clerk#000002310|0|ly pending theodolites use slyly against the | +13640|749785|O|91567.53|1998-02-06|5-LOW|Clerk#000004529|0|ickly ironic courts about the | +13641|108332|O|285956.55|1995-10-21|1-URGENT|Clerk#000000011|0| according to the express deposits. furiously spec| +13642|480644|F|129094.97|1993-01-20|4-NOT SPECIFIED|Clerk#000001297|0|y pending courts use furiously. carefully | +13643|676543|F|214839.90|1993-01-20|1-URGENT|Clerk#000004804|0|egrate carefully about the special accounts. blithely regular platel| +13644|653741|F|263837.77|1992-04-11|5-LOW|Clerk#000000246|0|s. requests sleep quickly ironic foxes. special ac| +13645|658678|F|129712.87|1995-03-06|4-NOT SPECIFIED|Clerk#000000664|0|before the pending ac| +13646|398408|O|346033.26|1998-04-23|2-HIGH|Clerk#000000828|0|ccounts. even depths nag. express ideas cajole furiously regul| +13647|37241|F|286855.76|1993-11-20|4-NOT SPECIFIED|Clerk#000001754|0|osits. theodolites cajole carefully even | +13672|405757|O|176077.95|1996-07-10|2-HIGH|Clerk#000003103|0| cajole carefully: furiously special ideas nag slyly. carefully bold d| +13673|537643|O|172652.82|1995-12-29|4-NOT SPECIFIED|Clerk#000004396|0|l pinto beans wake slyly pending accounts. plate| +13674|135323|O|282253.69|1995-10-30|4-NOT SPECIFIED|Clerk#000002796|0|the closely final p| +13675|357079|F|36880.28|1994-01-25|4-NOT SPECIFIED|Clerk#000004822|0|oss the requests sleep carefully according t| +13676|666454|O|159112.03|1996-08-06|2-HIGH|Clerk#000001063|0|yly. slyly ironic pinto beans among the furiously even requests boost above t| +13677|592214|O|104658.81|1995-06-10|1-URGENT|Clerk#000004704|0|ic requests. furiously unus| +13678|87682|O|55406.11|1995-11-19|3-MEDIUM|Clerk#000004234|0|y. pinto beans according to the pending escapades should hav| +13679|650252|F|97142.67|1994-03-15|2-HIGH|Clerk#000001685|0|e regular packages. neve| +13704|527290|O|279567.36|1998-04-28|4-NOT SPECIFIED|Clerk#000002747|0|packages wake carefully. requests haggle blithely bold, ironi| +13705|157969|F|116433.99|1993-10-14|4-NOT SPECIFIED|Clerk#000002266|0|equests. furiously ironic platelets are-- bold,| +13706|726220|F|99629.65|1994-12-20|4-NOT SPECIFIED|Clerk#000003483|0| quickly ironic accounts boost slyly after | +13707|72088|F|369785.23|1993-04-08|5-LOW|Clerk#000000626|0|ully express deposits cajole c| +13708|305566|F|99962.50|1994-08-18|2-HIGH|Clerk#000004436|0|, silent packages among the carefully regular ideas nag slyly| +13709|394940|O|12195.33|1998-07-15|4-NOT SPECIFIED|Clerk#000004729|0|inal instructions sleep slyly furiously final packages. foxes integr| +13710|256144|F|62298.79|1994-02-08|1-URGENT|Clerk#000003485|0|ts are carefully busy ideas. fluffily final packages cajole about the| +13711|754|O|61929.08|1995-05-04|1-URGENT|Clerk#000002128|0| of the furiously regular asym| +13736|670730|O|278404.11|1995-11-29|3-MEDIUM|Clerk#000004176|0|thely: fluffily quick warthogs are beyond the blithely f| +13737|449596|O|199685.89|1995-09-21|1-URGENT|Clerk#000004735|0|al requests above the f| +13738|87824|O|118975.47|1997-05-30|5-LOW|Clerk#000001272|0|kly regular deposits. f| +13739|46594|O|20171.78|1998-03-23|1-URGENT|Clerk#000004137|0|gular requests haggle carefully silent instructions. slyly fi| +13740|102451|O|18789.56|1997-04-08|3-MEDIUM|Clerk#000000623|0|gle carefully carefully even deposits. carefully i| +13741|629263|F|306789.34|1993-04-25|2-HIGH|Clerk#000000294|0|ow pinto beans boost after th| +13742|257476|O|300455.49|1996-11-03|5-LOW|Clerk#000000804|0|nt platelets. fluffily regular pinto| +13743|640168|F|401534.37|1992-05-14|3-MEDIUM|Clerk#000002107|0| blithely even theodolites. accounts are blithely alongside of the caref| +13768|535651|O|171214.37|1995-12-13|2-HIGH|Clerk#000002085|0|ironic accounts sublate furiously about the blithely| +13769|403651|F|20182.83|1995-03-02|2-HIGH|Clerk#000000416|0|s sleep fluffily. blithely even pinto beans sleep sl| +13770|405788|O|38965.22|1995-08-13|3-MEDIUM|Clerk#000003108|0|blithely furiously express pinto beans. slyly regular attainments a| +13771|328489|F|66725.42|1992-03-12|5-LOW|Clerk#000003423|0|he requests. carefully regula| +13772|152825|O|209380.15|1996-11-26|4-NOT SPECIFIED|Clerk#000004693|0|the unusual, final requests. qui| +13773|529573|F|105664.55|1992-04-13|4-NOT SPECIFIED|Clerk#000000561|0|phins. deposits haggle thinly against the quickly pen| +13774|277810|F|214585.88|1993-05-13|3-MEDIUM|Clerk#000000131|0|ag fluffily according | +13775|371731|O|22411.40|1995-07-06|3-MEDIUM|Clerk#000002909|0|ges. slyly ironic platelets haggle acro| +13800|176473|O|177955.70|1995-07-04|3-MEDIUM|Clerk#000004765|0|tes along the boldly regular packages haggle quickly pending sauternes. sile| +13801|453739|O|176923.65|1996-12-10|3-MEDIUM|Clerk#000002580|0|kly final requests. fluffily close deposits among the furiously pendin| +13802|732698|O|131667.63|1996-04-24|5-LOW|Clerk#000003677|0|ic instructions sleep blithel| +13803|195568|O|48592.62|1996-07-13|3-MEDIUM|Clerk#000002155|0|across the close deposits. fluffily pending dep| +13804|379814|F|67465.16|1993-06-07|2-HIGH|Clerk#000002939|0| requests despite the foxes haggle furiously according to | +13805|270778|O|174509.97|1996-01-25|4-NOT SPECIFIED|Clerk#000000595|0| according to the blithely regular | +13806|713521|F|261511.40|1993-02-06|5-LOW|Clerk#000002880|0|ckly bold packages sublate furiously after the fluf| +13807|378409|F|271350.67|1992-10-23|5-LOW|Clerk#000004918|0|es. slyly regular requests wake along the ironic dependencies. fluffily ev| +13832|637771|O|79572.58|1998-01-18|4-NOT SPECIFIED|Clerk#000003815|0|ggle furiously above the fluffily regular platelets.| +13833|7141|O|229366.84|1996-07-17|5-LOW|Clerk#000003583|0|y express packages integrate blithely among the blit| +13834|749866|O|228927.64|1995-08-26|2-HIGH|Clerk#000003042|0|ounts cajole blithely bo| +13835|731144|O|232272.90|1998-02-21|4-NOT SPECIFIED|Clerk#000000439|0|e the furiously final accounts. pending packages wake after the regula| +13836|326756|O|186816.83|1996-01-27|5-LOW|Clerk#000003361|0|y regular excuses through the requests cajole among the slyly expr| +13837|272701|O|297503.02|1996-02-01|4-NOT SPECIFIED|Clerk#000001416|0|ns integrate even pac| +13838|35407|F|10450.56|1994-04-17|2-HIGH|Clerk#000002108|0|ely special accounts. slyly unusual deposits haggle packages: furi| +13839|310642|F|289094.84|1993-04-15|2-HIGH|Clerk#000001134|0|al accounts haggle furiously | +13864|200843|O|163901.89|1996-01-12|4-NOT SPECIFIED|Clerk#000002362|0|refully slyly ironic platelets. fluffily regul| +13865|562805|O|39975.12|1997-11-06|5-LOW|Clerk#000002254|0|eas. special, even depen| +13866|47446|F|140256.55|1994-09-14|4-NOT SPECIFIED|Clerk#000002721|0| furiously regular p| +13867|151246|O|141609.81|1998-03-07|3-MEDIUM|Clerk#000002515|0|y according to the furiously | +13868|214160|O|134960.29|1998-02-25|1-URGENT|Clerk#000002728|0|ts; carefully bold dependencies wake caref| +13869|131239|O|196204.60|1996-07-30|1-URGENT|Clerk#000004769|0| express instructions. slyly regular ideas affi| +13870|713155|F|163275.52|1994-05-09|3-MEDIUM|Clerk#000001988|0|he furiously ironic dolphins. quickly final ideas sleep quickly| +13871|227128|F|340146.53|1992-02-12|5-LOW|Clerk#000000347|0|l foxes. deposits cajole slyl| +13896|579731|F|71410.47|1994-02-22|3-MEDIUM|Clerk#000000605|0|ites must have to hagg| +13897|275464|O|212365.69|1995-09-10|2-HIGH|Clerk#000001531|0|ully alongside of the slyly even accounts. express pinto beans across the c| +13898|693653|F|136232.23|1993-03-11|3-MEDIUM|Clerk#000000172|0|pendencies sleep quic| +13899|214706|P|237143.95|1995-05-18|5-LOW|Clerk#000004873|0|ly express accounts haggle above t| +13900|303517|F|36486.34|1992-06-06|5-LOW|Clerk#000004468|0|ages believe after the quick| +13901|436262|O|48989.96|1996-10-26|1-URGENT|Clerk#000000861|0|ly among the frets. slyly special acco| +13902|252187|P|157177.23|1995-03-10|1-URGENT|Clerk#000003266|0|ly express frets are against the final theodolites. slyly regu| +13903|233491|F|9988.28|1993-02-17|4-NOT SPECIFIED|Clerk#000000066|0|symptotes nag carefully. quick instructions cajol| +13928|277460|F|101321.53|1992-12-28|4-NOT SPECIFIED|Clerk#000003723|0| furiously carefully ironic platelets. blithely | +13929|510214|O|20560.63|1996-11-27|5-LOW|Clerk#000000322|0|xes. fluffily final accounts integrate special, bold sheaves| +13930|390616|O|42167.44|1998-02-28|2-HIGH|Clerk#000004603|0|cajole ironically above the slyly ironic | +13931|314609|F|235699.85|1992-12-01|5-LOW|Clerk#000002613|0|. fluffily silent dependencies nag ruthlessly. regular packages sleep c| +13932|124307|O|21551.96|1995-07-12|1-URGENT|Clerk#000000342|0|c requests was quickly pending, ironic accounts. s| +13933|470135|O|198004.48|1996-06-12|4-NOT SPECIFIED|Clerk#000001316|0|ow theodolites. slyly regular packages impress-- furiously ironic | +13934|296749|O|305958.24|1996-11-06|4-NOT SPECIFIED|Clerk#000000004|0|instructions haggle. even packages| +13935|702449|F|171803.36|1993-08-12|2-HIGH|Clerk#000000907|0|ets. slyly regular instructions sleep slyly. foxes wake. blithely ironic the| +13960|297862|O|100354.65|1996-02-17|5-LOW|Clerk#000004540|0| slyly bold instructions. quickly | +13961|651562|F|168555.54|1992-12-07|4-NOT SPECIFIED|Clerk#000004277|0|yly express platelets. regular foxes alo| +13962|50494|O|9897.17|1995-09-11|1-URGENT|Clerk#000002781|0|ooze carefully above the asymptotes. carefully ev| +13963|389590|F|194341.35|1994-07-11|2-HIGH|Clerk#000003871|0|s wake along the accounts. quickly special| +13964|334942|F|126845.70|1993-06-15|1-URGENT|Clerk#000002251|0|ess packages at the bold ideas nag quickly bli| +13965|597742|F|190018.79|1992-02-28|4-NOT SPECIFIED|Clerk#000004043|0| regular pinto beans serve slyly alongside | +13966|726080|F|177403.78|1994-03-04|3-MEDIUM|Clerk#000002727|0|usly bold dugouts. regular pinto beans cajole beneath the regular a| +13967|711808|O|175645.92|1998-02-17|3-MEDIUM|Clerk#000001413|0|g platelets about the blithely qui| +13992|106534|F|139422.68|1993-08-26|5-LOW|Clerk#000001438|0| use against the eve| +13993|252973|F|211195.53|1994-10-16|1-URGENT|Clerk#000002308|0|nt packages was furi| +13994|684697|O|212464.44|1996-05-13|4-NOT SPECIFIED|Clerk#000004568|0|ronic deposits haggle carefully idle packag| +13995|424105|F|190903.89|1994-02-09|5-LOW|Clerk#000003912|0|e furiously after the even, even packag| +13996|654577|F|174927.34|1993-06-19|2-HIGH|Clerk#000004130|0|press deposits. blithely enticing instructi| +13997|472477|F|313992.39|1993-04-25|4-NOT SPECIFIED|Clerk#000002765|0|y regular excuses cajole carefully final asym| +13998|646795|P|302773.35|1995-04-07|5-LOW|Clerk#000000040|0|y special pinto beans. even attainments are. blithely final accou| +13999|166699|F|79380.12|1993-10-17|1-URGENT|Clerk#000004752|0|regular requests according t| +14024|435220|F|112383.19|1992-04-10|4-NOT SPECIFIED|Clerk#000000493|0|eodolites are. quickly final deposits against the excus| +14025|726859|P|250405.96|1995-04-21|5-LOW|Clerk#000004936|0|hely final packages. blithely final deposits are quickly. bold| +14026|288134|O|236900.25|1995-11-28|4-NOT SPECIFIED|Clerk#000004490|0|lar excuses detect a| +14027|653347|O|173718.04|1995-09-11|3-MEDIUM|Clerk#000004649|0|lyly final packages. furiously regular | +14028|19915|F|102203.57|1995-02-19|3-MEDIUM|Clerk#000001951|0|r instructions. carefully even deposits would cajole about the som| +14029|180389|O|116608.48|1995-09-24|5-LOW|Clerk#000004798|0|arefully express theodolites are after the packages. | +14030|289057|O|322267.94|1997-11-17|3-MEDIUM|Clerk#000001665|0|thely against the unusual, even courts. carefully sp| +14031|429451|F|191851.56|1993-11-06|1-URGENT|Clerk#000003180|0|s. furiously thin accounts against the close packages haggle slyly along t| +14056|531904|O|78004.19|1998-06-06|4-NOT SPECIFIED|Clerk#000002972|0|wly even sheaves. unusual, ironic tithes above the carefully unusual theo| +14057|441766|O|192885.44|1996-10-26|2-HIGH|Clerk#000003264|0|eposits haggle. unusual ideas above the grouches use across th| +14058|479107|O|1101.30|1997-08-14|1-URGENT|Clerk#000002593|0|ously ironic dependencies. silent pint| +14059|347183|O|167256.49|1995-09-18|1-URGENT|Clerk#000000286|0|ly express dependencies against the ent| +14060|90185|O|112118.75|1998-04-25|5-LOW|Clerk#000003280|0|into beans are carefully special accounts. slyly expr| +14061|730543|F|141010.51|1992-03-07|4-NOT SPECIFIED|Clerk#000004341|0|ss the carefully quick warthogs: enticing foxes sleep permanently flu| +14062|712009|O|115440.83|1998-04-17|5-LOW|Clerk#000003068|0|ing dolphins above the silently unusu| +14063|473185|F|143764.39|1992-12-18|5-LOW|Clerk#000001782|0|posits are furiously across th| +14088|567337|F|213529.83|1993-03-04|2-HIGH|Clerk#000003499|0|ar foxes nod carefully. ironic, final pinto beans nag c| +14089|476032|F|20113.26|1994-07-18|1-URGENT|Clerk#000002407|0|s excuses affix carefully ironic foxes. r| +14090|419392|P|218046.84|1995-04-15|1-URGENT|Clerk#000002189|0|r requests. carefully expre| +14091|188369|O|21322.53|1997-06-18|5-LOW|Clerk#000000246|0|ts. blithely final instructions detect among the quickly special request| +14092|153001|O|116097.73|1998-06-24|3-MEDIUM|Clerk#000000807|0|thely express accounts. blithely ironic | +14093|473501|O|100372.80|1998-07-05|5-LOW|Clerk#000002312|0|g about the carefully ironic dependencies. slyly | +14094|624508|F|348858.84|1992-11-04|2-HIGH|Clerk#000000554|0|ly regular deposits cajole fluffily ironic excuses. regular t| +14095|591701|O|349797.61|1997-07-01|2-HIGH|Clerk#000004107|0| slyly final foxes. furiously unusual foxes wake slyly carefully final| +14120|466846|O|17217.24|1997-03-25|1-URGENT|Clerk#000001373|0|refully pending asymptotes. furiously | +14121|513928|F|102011.39|1992-09-04|4-NOT SPECIFIED|Clerk#000003655|0|l requests sleep according to the regular deposits? slyly ironic ideas wa| +14122|575431|O|107351.91|1996-02-26|1-URGENT|Clerk#000000503|0| furiously besides the ideas. deposits wake furiously-- furiously regul| +14123|13180|O|106540.86|1998-01-07|1-URGENT|Clerk#000000893|0|al platelets. slyly pending deposits impress blithely regular | +14124|237388|O|225680.62|1996-01-21|1-URGENT|Clerk#000002432|0|rs according to the final theo| +14125|510316|O|119318.55|1998-06-02|4-NOT SPECIFIED|Clerk#000004440|0| accounts. blithely final instructions print| +14126|619793|F|274333.99|1992-03-19|2-HIGH|Clerk#000002856|0| beans nag blithely blithely final r| +14127|102367|F|101350.94|1993-12-16|4-NOT SPECIFIED|Clerk#000000470|0|ar instructions; furiously even sentiments are across the| +14152|703207|F|134635.36|1993-11-10|4-NOT SPECIFIED|Clerk#000004777|0|into beans about the express asymptotes cajole quic| +14153|276907|O|159530.07|1996-05-07|2-HIGH|Clerk#000000980|0|ng the carefully silent packages| +14154|222101|O|42990.37|1996-02-09|3-MEDIUM|Clerk#000003706|0|s. packages may are among the blithely special pinto beans. furiou| +14155|92474|O|123826.79|1997-05-06|5-LOW|Clerk#000000301|0|kages detect blithely thinly unusual packages. furiou| +14156|202981|O|113797.17|1998-05-01|1-URGENT|Clerk#000003407|0| kindle after the accounts. ironic | +14157|469270|O|227423.07|1998-06-26|5-LOW|Clerk#000004324|0|egular, pending deposits. blithely bold theodolites | +14158|746641|O|154614.74|1996-09-26|3-MEDIUM|Clerk#000001718|0| platelets boost quickly final sheaves: regular courts boos| +14159|524752|F|122815.64|1994-07-15|2-HIGH|Clerk#000002055|0| the fluffily regular dependencies. blithely silent courts sl| +14184|242698|F|102647.70|1993-12-14|5-LOW|Clerk#000002641|0|s sleep fluffily. even, final acco| +14185|499528|O|139118.57|1996-08-02|1-URGENT|Clerk#000000779|0| slyly. unusual foxes x-ray slyly. furiousl| +14186|37063|F|142333.13|1994-08-18|4-NOT SPECIFIED|Clerk#000004464|0|courts above the unusual theod| +14187|410339|F|137412.51|1994-11-06|1-URGENT|Clerk#000002958|0|hely final theodolites haggle alongside of the quickly regular | +14188|303835|O|184479.44|1996-12-01|2-HIGH|Clerk#000000917|0| platelets. ironic, regular| +14189|537938|O|117173.01|1997-09-08|4-NOT SPECIFIED|Clerk#000000966|0|e unusual deposits. final frets are fluffily slyly express pinto b| +14190|607487|F|223259.97|1994-07-11|3-MEDIUM|Clerk#000004604|0|s: furiously bold excuses cajole fluffily the| +14191|280612|O|269454.11|1995-12-28|3-MEDIUM|Clerk#000000532|0|posits wake. carefully ironic packa| +14216|216994|F|21819.95|1994-11-15|2-HIGH|Clerk#000001124|0|ackages. carefully u| +14217|513539|O|285683.18|1998-05-13|1-URGENT|Clerk#000001390|0|s wake never pending, e| +14218|41707|F|264015.98|1993-04-07|4-NOT SPECIFIED|Clerk#000002742|0|foxes haggle about the quickly silent excuses. pending ideas about the | +14219|446699|F|138400.88|1992-02-21|4-NOT SPECIFIED|Clerk#000004106|0| furiously special packages: quickl| +14220|157135|P|163898.92|1995-03-22|2-HIGH|Clerk#000002138|0|ccounts. carefully even depe| +14221|192094|O|249509.17|1997-12-15|1-URGENT|Clerk#000003494|0|refully pending theodolites-- ironic, sly excuses upon t| +14222|516340|F|127968.99|1992-11-19|3-MEDIUM|Clerk#000004527|0|cajole idly alongside of the express acco| +14223|614788|O|64755.49|1997-02-20|2-HIGH|Clerk#000004810|0|osits eat carefully. quickly fluffy a| +14248|722791|O|221272.07|1996-06-20|5-LOW|Clerk#000001703|0|ackages sleep carefully throughout the quickly final theo| +14249|170717|O|43476.51|1996-12-26|4-NOT SPECIFIED|Clerk#000002207|0| impress carefully acros| +14250|476959|F|197540.65|1995-01-15|1-URGENT|Clerk#000003184|0|d foxes. furiously final multipliers are slyly final cour| +14251|232366|O|196224.00|1997-07-26|4-NOT SPECIFIED|Clerk#000001810|0|haggle slyly quickly special theodolites. bold accounts are carefully| +14252|91994|O|140773.30|1996-03-26|3-MEDIUM|Clerk#000000172|0| print slyly carefully unusu| +14253|382148|P|125360.40|1995-02-26|1-URGENT|Clerk#000003637|0|unusual, special requests cajole. care| +14254|499660|F|106907.99|1993-07-22|4-NOT SPECIFIED|Clerk#000000990|0|mptotes cajole carefully around | +14255|25502|P|106796.03|1995-04-17|2-HIGH|Clerk#000001460|0|ic, express requests. quickly stealthy deposits wake furious| +14280|361970|F|147608.16|1992-07-27|4-NOT SPECIFIED|Clerk#000003115|0|ses haggle carefully furiously final deposits.| +14281|371050|F|338942.73|1992-03-24|2-HIGH|Clerk#000002830|0|fully bold excuses cajole quickly r| +14282|708794|O|166158.90|1997-05-05|5-LOW|Clerk#000001196|0|ies. ironic requests x-ray after t| +14283|446978|O|14014.36|1998-03-13|4-NOT SPECIFIED|Clerk#000004078|0|lly regular deposits. fluffily pending Tiresias serve carefully carefully| +14284|344890|O|329536.92|1998-04-15|5-LOW|Clerk#000000645|0| wake slyly furiously final requests. carefully s| +14285|565289|F|139302.72|1993-12-11|2-HIGH|Clerk#000001255|0|wake carefully accounts. fluffily unusual deposits are furiously car| +14286|558373|F|121892.73|1994-07-31|1-URGENT|Clerk#000004156|0|aids are above the quick, pending packages. careful,| +14287|554980|O|64645.75|1997-12-23|3-MEDIUM|Clerk#000002465|0|ly; final deposits along the | +14312|548599|O|123685.74|1997-05-24|5-LOW|Clerk#000002337|0|slyly ironic excuses haggle furi| +14313|545072|F|300108.81|1994-02-18|4-NOT SPECIFIED|Clerk#000002142|0|ending foxes affix. slyly ironic packages hang about the fluffily bold as| +14314|517210|F|168882.64|1992-01-22|5-LOW|Clerk#000000268|0| regular accounts wake carefully | +14315|242395|O|347429.07|1998-01-25|2-HIGH|Clerk#000003977|0| express, even instructions. slyly even realms wake carefully; silent in| +14316|670550|O|160666.68|1996-02-21|2-HIGH|Clerk#000000604|0|ounts use slyly silent | +14317|418684|F|147034.52|1994-02-04|5-LOW|Clerk#000004610|0|uests. special deposits are carefully above the pending accounts. furio| +14318|297263|F|105141.63|1994-08-12|4-NOT SPECIFIED|Clerk#000004309|0|after the furiously regular platelets! furiously regular gifts are ironic dino| +14319|340172|O|178725.50|1997-08-16|3-MEDIUM|Clerk#000003629|0| ironic platelets serve among| +14344|9848|O|172953.36|1998-01-08|2-HIGH|Clerk#000002159|0|pending instruction| +14345|510805|O|158548.91|1997-08-14|1-URGENT|Clerk#000000418|0|across the slyly final theodolites cajole carefully express c| +14346|597607|O|129928.79|1997-03-11|4-NOT SPECIFIED|Clerk#000000435|0|ts detect after the accounts. sl| +14347|706930|O|232357.28|1997-09-04|3-MEDIUM|Clerk#000001176|0|ronic accounts. furiously regular ideas wake furiously. qui| +14348|605896|O|114987.04|1996-06-23|3-MEDIUM|Clerk#000001478|0|furiously ironic realms-- accounts about the carefully even theodoli| +14349|544036|O|266775.63|1996-03-21|3-MEDIUM|Clerk#000000570|0|arefully carefully regular excuses. quickly silent deposits around| +14350|338998|O|183383.95|1997-03-06|1-URGENT|Clerk#000004180|0| the furiously ironic deposits. even foxes after the slyly special | +14351|516566|F|92284.31|1994-06-14|2-HIGH|Clerk#000003681|0|permanently. deposits sleep fluffily bold deposits. express, unusual requests | +14376|663977|F|112205.20|1992-08-11|4-NOT SPECIFIED|Clerk#000004669|0|r instructions haggle regular deposits. final packages integra| +14377|203209|O|60707.40|1997-02-05|2-HIGH|Clerk#000003842|0|rding to the final instructions. ironic dugouts boost according to the| +14378|562495|O|187845.67|1996-03-15|3-MEDIUM|Clerk#000003049|0|al packages. requests haggle? even, regular accounts are | +14379|74425|F|247439.24|1993-10-23|5-LOW|Clerk#000003223|0|ess requests cajole slyly special requ| +14380|579874|F|115139.37|1994-11-17|3-MEDIUM|Clerk#000000527|0| ideas. fluffily regular theodolites wake enticin| +14381|435130|F|168498.70|1992-12-14|5-LOW|Clerk#000003294|0|ructions hang permane| +14382|711898|O|162949.49|1997-10-28|5-LOW|Clerk#000002635|0| x-ray carefully: express, final ac| +14383|104062|F|196298.24|1993-11-28|5-LOW|Clerk#000001577|0| accounts serve slyly blithe deposits: express requests above the reg| +14408|686623|O|89805.65|1996-07-28|4-NOT SPECIFIED|Clerk#000004505|0|regular instructions. sly,| +14409|540565|F|85244.15|1995-01-08|4-NOT SPECIFIED|Clerk#000004068|0|. blithely ironic packages use according to the foxes. carefully ir| +14410|510284|F|122443.70|1993-04-12|1-URGENT|Clerk#000000775|0| express requests. slyly ironic pearls | +14411|85661|O|61530.13|1998-02-09|5-LOW|Clerk#000003143|0|ously bold requests. quickly even accounts haggle furiously according to t| +14412|444286|O|31500.53|1997-12-10|1-URGENT|Clerk#000003960|0|osits alongside of the pending, spe| +14413|90079|O|90838.40|1997-12-02|2-HIGH|Clerk#000001286|0|gged instructions affix bl| +14414|437366|F|150095.41|1993-06-15|3-MEDIUM|Clerk#000001712|0|ecial theodolites cajole blithe| +14415|56875|O|197749.56|1996-07-23|5-LOW|Clerk#000001727|0|. foxes about the regular accounts sleep regu| +14440|370666|O|240475.24|1996-12-22|4-NOT SPECIFIED|Clerk#000001889|0|ideas doubt furiously. d| +14441|263773|F|401990.35|1992-04-05|5-LOW|Clerk#000002065|0| the ironic foxes. final, regular requests cajole furiously. regular gifts us| +14442|729788|F|180357.72|1992-01-15|5-LOW|Clerk#000003140|0| accounts wake blithely final packages| +14443|45359|F|57754.35|1993-06-28|2-HIGH|Clerk#000000543|0|uickly silent accounts cajole| +14444|337663|F|92002.10|1992-06-03|5-LOW|Clerk#000002847|0| the unusual, pending packages. slyly iron| +14445|588788|F|25182.89|1995-01-01|5-LOW|Clerk#000001469|0| regular, even requests. blithely ironic ideas against the foxes wake bli| +14446|250820|O|162486.16|1996-11-16|3-MEDIUM|Clerk#000001052|0| accounts sleep fluffily ruthless, special platelets. ev| +14447|521863|F|175404.24|1993-09-04|3-MEDIUM|Clerk#000004650|0|s. blithely express foxes cajole blithely. re| +14472|441583|F|383427.22|1993-04-19|4-NOT SPECIFIED|Clerk#000001760|0|permanently regular platelets. pending, special attainment| +14473|417532|F|253405.30|1994-10-14|1-URGENT|Clerk#000004832|0|ounts cajole blithely bold ideas.| +14474|441568|O|123786.70|1997-07-17|1-URGENT|Clerk#000004072|0|c requests: carefully regular packages w| +14475|172111|F|144471.96|1992-12-09|5-LOW|Clerk#000004183|0|ely about the ironic pains; unusual packages haggle blithely about the furio| +14476|646723|F|249271.30|1993-08-23|2-HIGH|Clerk#000003816|0|ndencies. slyly express foxes boost furiously across th| +14477|461515|O|133843.27|1996-06-09|1-URGENT|Clerk#000002103|0|eep unusual, regular accounts. carefully unusual accou| +14478|181223|F|17067.57|1993-06-03|4-NOT SPECIFIED|Clerk#000000340|0|ajole carefully across the blithely express instructions. e| +14479|63293|F|121614.54|1992-04-27|5-LOW|Clerk#000002617|0| pending packages doze blithely at the furiously special requests. carefully | +14504|254320|O|168448.76|1997-07-28|1-URGENT|Clerk#000003241|0|nic theodolites against the carefully | +14505|76456|F|19941.26|1992-11-30|1-URGENT|Clerk#000003142|0| ideas nag above the pending deposits. daring deposits among the furiously p| +14506|244811|F|88334.14|1992-03-17|5-LOW|Clerk#000004837|0|s use carefully about the pinto beans. slow frets nag fluffily. qu| +14507|29938|O|204526.74|1996-03-16|2-HIGH|Clerk#000000785|0|lyly bold ideas wake blithely slyly unusual packages. theodolite| +14508|661307|O|11324.58|1996-01-31|3-MEDIUM|Clerk#000001648|0|above the busily ironic foxes. accounts i| +14509|325918|O|42445.68|1997-10-05|1-URGENT|Clerk#000001493|0| regular packages wake. even, ironic pinto beans across the carefully reg| +14510|422857|O|208207.37|1998-07-28|3-MEDIUM|Clerk#000001795|0|ackages snooze slyly alo| +14511|706852|O|107814.95|1996-10-24|2-HIGH|Clerk#000003217|0|ost special packages. accounts use furiously regular, ironic ac| +14536|51973|F|149343.41|1994-02-18|3-MEDIUM|Clerk#000000167|0|ajole carefully. ironic dinos around the slyly even theodolites integrate a| +14537|493535|O|205724.46|1998-02-14|3-MEDIUM|Clerk#000001883|0| ideas? slyly pending instructions kindle. bold deposits are iron| +14538|580885|O|209538.40|1997-09-11|3-MEDIUM|Clerk#000003571|0|ake about the carefully unusual foxes; unusual requests alon| +14539|173362|F|176876.51|1993-11-03|3-MEDIUM|Clerk#000000821|0| accounts use according to the slyly final pinto | +14540|679237|O|151547.90|1996-07-14|3-MEDIUM|Clerk#000003423|0|pinto beans wake before the carefully iron| +14541|179531|F|64531.16|1992-06-21|2-HIGH|Clerk#000001596|0|the carefully ironic theodolites. fluffily final | +14542|123643|F|177866.29|1993-02-12|3-MEDIUM|Clerk#000000725|0|pending requests nag among the quickly regular requests. pa| +14543|549973|O|312774.68|1997-03-10|1-URGENT|Clerk#000001487|0|about the slyly fluffy ideas cajole fluffily around the ironic, pending| +14568|383236|O|76652.41|1997-04-26|3-MEDIUM|Clerk#000001601|0|s are slyly about the frays. silent instructions above the f| +14569|23162|F|227829.22|1994-05-25|5-LOW|Clerk#000002792|0|deposits kindle blithely regular| +14570|23024|F|156545.30|1993-05-12|1-URGENT|Clerk#000001512|0|ronic platelets. slyly final accounts are blit| +14571|710269|F|29859.11|1993-04-30|1-URGENT|Clerk#000003598|0|ly ironic grouches. carefully final instructions sl| +14572|458686|O|230123.02|1996-09-28|5-LOW|Clerk#000004109|0|ag furiously. ironic, final ideas about the furiously unus| +14573|602233|F|25281.22|1992-11-22|1-URGENT|Clerk#000001446|0|y final ideas are carefully special deposits. furiously final the| +14574|454385|O|251949.79|1996-11-20|5-LOW|Clerk#000000347|0|efully quickly bold attainments. carefully s| +14575|340400|O|153564.69|1997-10-30|2-HIGH|Clerk#000004272|0|ickly ironic excuses print busi| +14600|94427|O|55791.74|1995-08-28|3-MEDIUM|Clerk#000002682|0|ular packages sleep blithely fluffily final packages. attainments sleep | +14601|22217|O|354224.44|1997-07-16|4-NOT SPECIFIED|Clerk#000004856|0|riously final instructions. pending, pending packages unwind. theodolites a| +14602|647749|F|204925.43|1993-04-25|4-NOT SPECIFIED|Clerk#000004133|0| final deposits. blithely special foxes affix. bold deposits along | +14603|455629|O|38591.44|1997-07-02|3-MEDIUM|Clerk#000002576|0|ts between the ironic dependencies cajole slyly above t| +14604|243662|F|329966.69|1993-07-09|5-LOW|Clerk#000003814|0|packages alongside of the ruthless Tiresias are slyly expre| +14605|215872|O|242125.52|1996-11-19|1-URGENT|Clerk#000001104|0|ely ironic accounts. unusual accounts after the slyly pending packages wake | +14606|392740|F|128777.24|1992-04-08|2-HIGH|Clerk#000004549|0|c accounts after the slyly stealthy sauternes cajole slyly fluff| +14607|27500|F|29900.97|1993-12-06|1-URGENT|Clerk#000002054|0|luffily against the c| +14632|183619|O|251681.05|1998-05-27|4-NOT SPECIFIED|Clerk#000001159|0| cajole after the special epitaphs. car| +14633|579406|F|89942.45|1994-06-08|2-HIGH|Clerk#000004693|0|unusual packages. carefully unusual accounts could have to sleep slyly expre| +14634|52249|O|124721.00|1997-05-16|5-LOW|Clerk#000001438|0|ong the regular pin| +14635|622271|F|80840.09|1993-04-12|2-HIGH|Clerk#000004352|0|ideas detect furiously furiously ironic packages. carefully even d| +14636|494735|O|148434.87|1997-08-13|3-MEDIUM|Clerk#000003728|0|ong the quickly final theodolites.| +14637|506758|F|39321.89|1993-01-08|2-HIGH|Clerk#000003721|0|iously special depe| +14638|74123|F|187846.48|1993-06-06|3-MEDIUM|Clerk#000003112|0|regular dependencies. blithely careful depend| +14639|24412|F|113525.76|1993-11-08|4-NOT SPECIFIED|Clerk#000000931|0|efully final packages. slyly even theodolites| +14664|22034|O|124137.17|1997-06-12|2-HIGH|Clerk#000002427|0|ress pinto beans. slyly spec| +14665|565012|F|96550.39|1993-05-14|2-HIGH|Clerk#000001947|0|ding foxes use blithely according to the blithely express | +14666|404719|O|222447.88|1997-07-16|1-URGENT|Clerk#000003800|0|lithely regular packages. fluffily final packages boost idly silent id| +14667|357697|O|94414.65|1996-10-02|2-HIGH|Clerk#000002571|0|press ideas eat carefully. ironic theodolites among the fl| +14668|556759|P|237132.36|1995-04-27|3-MEDIUM|Clerk#000003061|0|ns are quickly slyly final packages. slyly special theodolite| +14669|422830|O|422266.02|1995-06-05|1-URGENT|Clerk#000002914|0|refully slowly regular accounts. carefully silent deposits detect carefully | +14670|224638|O|183564.76|1996-11-13|1-URGENT|Clerk#000004403|0|efully regular requests. carefully final requests at the final| +14671|732694|F|47560.23|1992-08-19|2-HIGH|Clerk#000001524|0|usy ideas against the express, | +14696|127213|F|128515.15|1993-01-15|4-NOT SPECIFIED|Clerk#000004859|0|thely fluffy asymptotes are blithely. final instructions haggle permanent| +14697|561658|F|261742.54|1994-06-16|2-HIGH|Clerk#000000558|0|s along the furiously | +14698|252796|F|233531.63|1992-10-09|2-HIGH|Clerk#000001248|0|ess packages cajole slyly. slyly special | +14699|727931|F|187547.98|1992-03-08|2-HIGH|Clerk#000003407|0|y haggle about the quickly ironic pin| +14700|322549|F|160909.74|1992-11-30|5-LOW|Clerk#000004371|0|lar theodolites should | +14701|52978|O|231555.43|1995-05-22|1-URGENT|Clerk#000000548|0|ven packages. special platelets sleep. accounts sleep pinto beans. car| +14702|131224|O|47542.64|1997-09-21|1-URGENT|Clerk#000002133|0|ges. even theodolite| +14703|465145|O|224509.24|1997-04-24|4-NOT SPECIFIED|Clerk#000000594|0|usly bold instructions wake. carefully special pinto beans across t| +14728|426160|F|134585.16|1994-11-23|2-HIGH|Clerk#000001029|0|counts. furiously pending requests cajole at the furiously| +14729|702676|F|134745.13|1993-05-13|5-LOW|Clerk#000000883|0|yly ironic tithes integrate. final excuses was | +14730|361432|O|86696.03|1995-08-25|1-URGENT|Clerk#000001873|0|ar accounts about the ironic requests wake foxes? carefully bo| +14731|332666|O|247850.48|1997-06-19|1-URGENT|Clerk#000002866|0|s nag carefully gifts. furiously ironic asymptotes cajole s| +14732|617050|O|140518.05|1996-09-25|3-MEDIUM|Clerk#000000520|0|ggle carefully slyly bo| +14733|506674|F|174979.97|1995-03-23|4-NOT SPECIFIED|Clerk#000000476|0|riously accounts. slyly pending foxes haggle slyly above the fur| +14734|142249|O|89509.56|1996-02-14|3-MEDIUM|Clerk#000004968|0|kages. ironic, ironic foxes | +14735|528382|O|175481.24|1996-05-03|4-NOT SPECIFIED|Clerk#000000802|0|into beans above the| +14760|500312|F|196551.67|1993-05-28|1-URGENT|Clerk#000001266|0|tions wake slyly except the slowly blithe ideas. even platelets wake c| +14761|480127|O|75673.00|1995-12-28|1-URGENT|Clerk#000001385|0| carefully even deposits use pains: carefully pending accounts| +14762|224798|F|75010.41|1993-08-23|3-MEDIUM|Clerk#000001747|0|l instructions. bold ideas cajole blithely. ironic, ironic tithes are | +14763|429763|P|217529.31|1995-04-17|4-NOT SPECIFIED|Clerk#000003879|0|ve the regular deposits. final deposits engage express pla| +14764|508999|O|71886.85|1997-06-15|2-HIGH|Clerk#000003881|0|ts. silent requests cajole slyly alo| +14765|228554|F|5291.49|1993-03-04|2-HIGH|Clerk#000000986|0| the blithely bold as| +14766|550708|O|71002.69|1998-01-14|4-NOT SPECIFIED|Clerk#000003723|0|special decoys grow slyly across| +14767|743917|O|111472.76|1995-10-13|3-MEDIUM|Clerk#000000096|0|the blithely ironic instructions. silent instruct| +14792|504626|O|132782.73|1996-10-26|2-HIGH|Clerk#000001734|0|t along the blithely| +14793|239305|O|245423.17|1996-06-29|3-MEDIUM|Clerk#000002857|0|ular asymptotes ought to cajole evenly. furio| +14794|487898|F|253888.93|1993-11-29|3-MEDIUM|Clerk#000001284|0|st the blithely even ideas. furiously final foxes cajole carefully| +14795|337450|F|152856.74|1995-03-06|4-NOT SPECIFIED|Clerk#000000356|0|lar accounts engage doggedly. regular, silent deposits use. fluf| +14796|749108|O|230760.12|1998-01-28|4-NOT SPECIFIED|Clerk#000000254|0|es use slyly. blithel| +14797|4106|O|185211.25|1995-05-28|2-HIGH|Clerk#000001006|0|carefully even excuses. regular excuses are. | +14798|745660|O|77082.96|1998-01-27|2-HIGH|Clerk#000001469|0|sts solve furiously silent requests. even, regular dependencies integrate a| +14799|543487|F|50521.76|1994-07-11|2-HIGH|Clerk#000004516|0| accounts. slyly unusual requests against the exp| +14824|115777|O|201765.42|1997-09-27|2-HIGH|Clerk#000003386|0|sts haggle slyly express requests. | +14825|331111|F|185824.71|1992-03-28|3-MEDIUM|Clerk#000002881|0|instructions play above the slyly s| +14826|714976|O|192577.65|1997-12-02|3-MEDIUM|Clerk#000002864|0|usual packages play| +14827|81077|O|226890.35|1995-07-06|2-HIGH|Clerk#000000510|0|tect bravely along the furiously regular gifts: final deposits| +14828|645356|F|64398.18|1994-03-10|5-LOW|Clerk#000000159|0| braids across the slyly express dolphins int| +14829|747781|O|1034.09|1996-02-06|4-NOT SPECIFIED|Clerk#000000604|0|ular requests lose silently around the | +14830|178796|F|59098.49|1994-04-01|2-HIGH|Clerk#000004719|0|ges are blithely above the regular gifts. furiously regular deposits across| +14831|523879|O|289877.13|1996-07-28|2-HIGH|Clerk#000003231|0|lar deposits cajole. slyly fina| +14856|563723|O|267287.31|1998-04-17|5-LOW|Clerk#000000115|0|deposits across the ca| +14857|486379|F|214010.38|1992-08-11|4-NOT SPECIFIED|Clerk#000000205|0|es: requests need to use. ironically | +14858|312466|O|106645.09|1996-11-12|5-LOW|Clerk#000004887|0|encies promise fluffil| +14859|104557|O|412649.57|1998-01-28|5-LOW|Clerk#000000423|0|al deposits. carefully ruthless | +14860|11456|O|121799.55|1997-07-18|4-NOT SPECIFIED|Clerk#000000490|0|nal foxes use blithely about the regular accounts! dogged, regular plat| +14861|536203|F|13187.31|1994-12-30|2-HIGH|Clerk#000004000|0|e. furiously ironic requests sleep. regular, idle pinto beans| +14862|713252|F|87431.95|1994-12-23|2-HIGH|Clerk#000004885|0|ly final accounts. requests nod whithout the blithely bold deposits. carefully| +14863|373813|F|201846.45|1992-04-01|4-NOT SPECIFIED|Clerk#000003661|0|y final requests are slyly | +14888|643432|F|48870.73|1992-07-09|2-HIGH|Clerk#000002333|0|ts-- always even theodolites sleep. carefully final| +14889|646463|F|246325.16|1994-03-27|2-HIGH|Clerk#000004094|0|s integrate. express pinto beans maintain carefully special instruct| +14890|598711|O|234289.19|1997-06-01|4-NOT SPECIFIED|Clerk#000003091|0|ly even foxes cajole slyly around the instr| +14891|506992|F|106646.55|1994-11-28|1-URGENT|Clerk#000000686|0|kages? regular asymptotes wake blithely according to| +14892|254239|O|211952.42|1997-04-18|1-URGENT|Clerk#000001375|0|eodolites use carefully. blithely even requests wake carefully afte| +14893|217603|O|7619.98|1996-11-21|2-HIGH|Clerk#000002922|0|ep against the regular foxes: ironic requests should kindle carefully ac| +14894|246346|F|149310.81|1995-02-15|5-LOW|Clerk#000004477|0|integrate according to the furiously regula| +14895|305872|F|262443.96|1992-07-21|5-LOW|Clerk#000002780|0|are. deposits boost across the fluffily ironic packages| +14920|282152|F|122322.96|1994-10-26|4-NOT SPECIFIED|Clerk#000003811|0|ly careful deposits. pinto beans nag furiously bold| +14921|614321|O|194517.26|1997-03-26|3-MEDIUM|Clerk#000002112|0|ages nod. slyly even pinto beans detect above the flu| +14922|384131|F|172274.69|1994-10-24|5-LOW|Clerk#000001387|0|ajole by the silent theodolites. sl| +14923|85363|O|220439.25|1996-10-05|4-NOT SPECIFIED|Clerk#000000398|0|w. ironic, express accounts sleep deposits. furi| +14924|665506|O|251393.47|1995-11-01|2-HIGH|Clerk#000004426|0|es. slyly final requests sleep fluffily around the pending instruction| +14925|405071|O|69292.96|1995-07-03|4-NOT SPECIFIED|Clerk#000004991|0|ngside of the blithely even packages. theodolites boost slyly furiously ironic| +14926|276827|F|46096.80|1993-03-29|2-HIGH|Clerk#000003647|0|packages are silently ironic instructions. furiously| +14927|375157|O|231435.77|1995-07-03|5-LOW|Clerk#000000011|0|jole carefully. carefully special packages serve slyly pending platelets. slyl| +14952|11638|O|292883.15|1996-01-01|3-MEDIUM|Clerk#000003649|0|. regular dependencies detect! even dependencies sleep around the close pack| +14953|571313|O|199701.54|1995-06-19|3-MEDIUM|Clerk#000000570|0|refully regular requests. ironic deposits according to the slyly even theodo| +14954|540952|F|166043.24|1992-09-14|1-URGENT|Clerk#000003965|0|arefully above the unusual dependencies. furiously final requests among the | +14955|273589|O|192521.80|1996-09-28|2-HIGH|Clerk#000004324|0|lar pinto beans. blithely ironic attainments sleep among the regular, ev| +14956|687167|F|230565.32|1993-09-13|5-LOW|Clerk#000000672|0|instructions. blithel| +14957|711352|F|248157.27|1993-07-20|1-URGENT|Clerk#000002862|0|ons are furiously across the carefully final ideas. deposits wake blithe| +14958|675443|F|129454.98|1992-06-24|4-NOT SPECIFIED|Clerk#000002909|0|regular deposits doubt slyly. slyly| +14959|167905|O|258653.44|1998-03-22|3-MEDIUM|Clerk#000004462|0|ly fluffy asymptotes haggle carefully af| +14984|475195|F|88621.04|1994-10-11|3-MEDIUM|Clerk#000001822|0|ending accounts are slyly. quickly regular deposit| +14985|599917|O|246218.88|1996-05-07|1-URGENT|Clerk#000003215|0|ily unusual courts haggle silently furiously bold packag| +14986|542201|O|124346.86|1996-03-20|3-MEDIUM|Clerk#000002310|0|s dazzle after the carefu| +14987|270784|O|112755.65|1995-12-30|1-URGENT|Clerk#000001145|0|ely ironic warthogs. final accounts after the slyly iro| +14988|58030|F|100833.71|1993-05-26|3-MEDIUM|Clerk#000003657|0|y unusual pinto beans. carefully r| +14989|295853|O|227258.68|1995-08-26|4-NOT SPECIFIED|Clerk#000000940|0|mise fluffily final packages| +14990|638740|O|54514.20|1997-08-02|1-URGENT|Clerk#000001676|0|nts. ideas thrash against the | +14991|551471|F|259147.40|1992-12-10|2-HIGH|Clerk#000004690|0|etect fluffily along the theodolites. furiously final instructions ag| +15016|63833|O|310653.54|1997-11-08|1-URGENT|Clerk#000003646|0|beans. requests kindle quickly against the idea| +15017|327538|F|29959.41|1995-01-26|5-LOW|Clerk#000001329|0|l packages. ironic dolphins in| +15018|675781|O|220893.94|1996-01-06|3-MEDIUM|Clerk#000004922|0|s the slyly special accounts. carefully reg| +15019|573307|F|64768.28|1995-04-19|2-HIGH|Clerk#000002000|0| are above the quickly special accounts. blithely even packages slee| +15020|298979|O|279145.27|1996-12-20|2-HIGH|Clerk#000002980|0|less, ironic sheaves. blithely unusual foxes cajol| +15021|678380|F|115091.75|1994-04-04|5-LOW|Clerk#000001920|0|blithely regular somas wake carefully along the instructions. blithely bold | +15022|26056|F|242412.80|1994-08-04|5-LOW|Clerk#000003378|0|l dependencies about the quickly final pinto beans wake care| +15023|655060|O|204461.05|1996-09-21|3-MEDIUM|Clerk#000003068|0|kly sly accounts; furiously i| +15048|327223|O|149162.95|1997-09-02|4-NOT SPECIFIED|Clerk#000003013|0|gle. slowly regular warthogs sleep silent, pending excuses. furiousl| +15049|635410|F|8583.61|1993-08-30|4-NOT SPECIFIED|Clerk#000004131|0|odolites are slyly special, unus| +15050|53500|F|171518.93|1992-04-23|4-NOT SPECIFIED|Clerk#000003900|0|jole slyly alongside of the even de| +15051|658348|F|223471.00|1995-02-11|2-HIGH|Clerk#000004509|0|y ironic accounts are carefully somet| +15052|95329|F|204274.67|1994-12-02|4-NOT SPECIFIED|Clerk#000003221|0| express requests. blithel| +15053|188500|O|151278.42|1996-03-27|2-HIGH|Clerk#000004328|0|s sleep fluffily even platelets. s| +15054|111275|P|96788.35|1995-03-02|5-LOW|Clerk#000000548|0|ptotes. special theodolites affix. final foxes accordi| +15055|445612|F|193713.85|1992-02-24|4-NOT SPECIFIED|Clerk#000003819|0| even platelets. carefully final packages a| +15080|649909|O|67630.19|1997-02-25|1-URGENT|Clerk#000000260|0|riously even asymptotes. regular, unus| +15081|10288|F|47446.43|1994-05-28|4-NOT SPECIFIED|Clerk#000001178|0|jole. final, unusual deposits haggle carefully. furiously permanen| +15082|388211|O|155059.41|1996-03-26|3-MEDIUM|Clerk#000003191|0|he regular theodolites. bravely | +15083|404764|O|396799.57|1995-12-02|2-HIGH|Clerk#000003922|0|s the blithely fina| +15084|352015|O|204846.95|1996-02-16|3-MEDIUM|Clerk#000003503|0|ide of the bravely final deposits detect deposits. even ideas sleep furi| +15085|293677|O|195630.11|1995-10-04|2-HIGH|Clerk#000004242|0| even requests. blithely bold platelets sublate against the carefully ir| +15086|72490|F|127734.95|1993-11-08|4-NOT SPECIFIED|Clerk#000001817|0|nal foxes haggle thinly flu| +15087|322123|O|89709.71|1996-04-01|5-LOW|Clerk#000003508|0|eans are. slyly ironic asymptotes | +15112|394849|O|113828.88|1997-03-06|5-LOW|Clerk#000000422|0|intain above the blithely regular a| +15113|216931|F|114663.12|1992-12-07|3-MEDIUM|Clerk#000000393|0|nding packages detect blithely. carefully express excuses sleep abov| +15114|181076|O|53902.81|1996-10-21|1-URGENT|Clerk#000001925|0|hang carefully among the slyly expr| +15115|583114|F|195794.66|1995-01-31|1-URGENT|Clerk#000000316|0|s. furiously even dependencies are furiously| +15116|113488|O|192642.30|1995-07-23|2-HIGH|Clerk#000004146|0|egular theodolites mold blithely across th| +15117|122050|F|95564.05|1994-09-09|3-MEDIUM|Clerk#000000284|0|tions. final, regular pinto beans snooze slyly according to the regular requ| +15118|38680|O|234533.24|1995-10-02|5-LOW|Clerk#000001790|0|mong the daringly special sheaves. quickly | +15119|576019|F|236356.59|1993-07-08|4-NOT SPECIFIED|Clerk#000002161|0|to beans haggle. quickly final theodolites haggle carefull| +15144|135680|F|151625.02|1994-06-03|1-URGENT|Clerk#000000260|0|ggle slyly. instructions haggle furiously agai| +15145|363517|F|366714.35|1993-06-19|4-NOT SPECIFIED|Clerk#000002460|0|the slyly final deposit| +15146|104650|O|134962.53|1997-03-05|4-NOT SPECIFIED|Clerk#000003178|0|ironic dependencies| +15147|86194|O|140842.06|1996-12-14|3-MEDIUM|Clerk#000004760|0|ess pinto beans. blithely final requests | +15148|405902|P|214117.62|1995-03-10|3-MEDIUM|Clerk#000003017|0|y along the blithely special ideas. slyly special accounts | +15149|743428|F|148424.97|1992-06-26|1-URGENT|Clerk#000000150|0|pecial instructions wake blithely. slyly eve| +15150|522868|O|60770.80|1995-05-26|2-HIGH|Clerk#000003020|0|refully ironic deposits across the carefully ruthless accounts haggle furious| +15151|89696|O|94090.28|1998-07-22|3-MEDIUM|Clerk#000002868|0|ions snooze. carefully bold ideas haggle carefully bold asymptotes. f| +15176|10126|O|74218.02|1997-01-01|4-NOT SPECIFIED|Clerk#000003890|0|thely quick, fluffy deposits. bold, final instructions use. blith| +15177|660655|P|328199.41|1995-04-07|5-LOW|Clerk#000000394|0|yly. slyly bold asymptotes sleep furiously acc| +15178|617524|O|197669.74|1996-12-06|3-MEDIUM|Clerk#000002627|0|ccounts haggle above the carefully final| +15179|224584|O|385498.29|1997-06-29|1-URGENT|Clerk#000000857|0|lets. blithely regular accounts sleep slyly above the final foxes. bli| +15180|574177|O|181096.13|1997-09-25|1-URGENT|Clerk#000002847|0|ial multipliers are sl| +15181|661730|F|201529.23|1993-12-03|4-NOT SPECIFIED|Clerk#000000251|0|o beans. foxes around the slyly express accounts cajole slyly s| +15182|684535|F|90905.93|1993-02-17|5-LOW|Clerk#000004034|0|r warthogs integrate quickly after the regular packages. sl| +15183|696220|O|95136.22|1997-10-29|2-HIGH|Clerk#000002687|0|ironic accounts. quickly special accoun| +15208|592751|F|108737.59|1993-11-11|5-LOW|Clerk#000004145|0|rate accounts! blithely regular requests detect c| +15209|109622|F|83090.28|1993-07-06|2-HIGH|Clerk#000002561|0|equests integrate carefully evenl| +15210|413989|F|266330.40|1993-05-24|5-LOW|Clerk#000002781|0|e. carefully regular o| +15211|129715|O|251369.40|1996-08-07|1-URGENT|Clerk#000000923|0|cial deposits. furiously ironic accounts along the regular, blithe instruction| +15212|601345|F|250339.16|1994-01-12|1-URGENT|Clerk#000004621|0|carefully special packages wake furiously around the s| +15213|552355|F|230887.97|1992-02-26|4-NOT SPECIFIED|Clerk#000000754|0| foxes. special, regular instructions use among the blithely ironic dep| +15214|651637|F|202883.94|1992-10-29|4-NOT SPECIFIED|Clerk#000004513|0|ly final frays. unusual instructions wake. b| +15215|551443|F|214309.70|1993-01-25|5-LOW|Clerk#000000033|0|ions cajole quickly. furiously unusual attainme| +15240|343687|F|98254.14|1993-04-21|4-NOT SPECIFIED|Clerk#000002830|0|ns use even, express excuses. regular, idle tithes sleep sl| +15241|589529|F|185537.55|1992-09-01|4-NOT SPECIFIED|Clerk#000003172|0|ully even packages cajole along the quic| +15242|702865|F|139521.47|1993-06-16|1-URGENT|Clerk#000001799|0|eas wake blithely regular requests. | +15243|542581|F|175929.07|1992-02-06|2-HIGH|Clerk#000004293|0|fily among the slyly final requests. final, unusual requests at the carefull| +15244|655493|O|30708.27|1996-01-22|1-URGENT|Clerk#000001485|0| hang bold requests. pending, reg| +15245|112139|O|122841.43|1995-06-03|4-NOT SPECIFIED|Clerk#000002495|0|ns sleep quiet braids. carefully regular foxes wake silently car| +15246|711871|F|118703.86|1995-03-21|4-NOT SPECIFIED|Clerk#000004265|0| haggle carefully against the multipliers. sile| +15247|393788|O|73525.54|1995-08-03|3-MEDIUM|Clerk#000004078|0| among the quickly bold theodolites. unusual platelets| +15272|383533|F|269159.02|1993-05-22|4-NOT SPECIFIED|Clerk#000002188|0|ions. final, express requests boost blithely. carefully final pinto beans | +15273|513764|F|6201.15|1992-05-06|2-HIGH|Clerk#000002765|0|structions among the furiously| +15274|66701|F|206734.00|1994-10-16|4-NOT SPECIFIED|Clerk#000004208|0|into beans. carefully regular pinto beans boost after the blithely unusua| +15275|528046|F|107201.38|1992-02-11|3-MEDIUM|Clerk#000004614|0| accounts. quickly final requests are furiously alongside of the final packa| +15276|95057|F|212172.77|1994-05-10|5-LOW|Clerk#000004722|0|old forges. regular accounts sleep carefully. slyly regular epitaphs haggle | +15277|122677|O|58201.28|1996-08-28|2-HIGH|Clerk#000001875|0|uests dazzle unusual deposits. unusual pinto beans mold blithely acro| +15278|63935|F|169668.12|1993-03-14|4-NOT SPECIFIED|Clerk#000001684|0| even deposits sleep enticingly about | +15279|545599|F|126581.53|1993-07-31|1-URGENT|Clerk#000000429|0|ackages. carefully quick | +15304|364109|O|187355.99|1998-04-30|2-HIGH|Clerk#000002968|0|doubt carefully according to the slyly regular | +15305|314845|F|193619.85|1994-12-17|3-MEDIUM|Clerk#000004932|0|t the slow, express dolphins hinder furiously after the car| +15306|343240|O|35162.89|1997-11-02|2-HIGH|Clerk#000004303|0|instructions-- special accounts wake. ironic packages use. | +15307|557872|O|43369.15|1997-09-03|5-LOW|Clerk#000004090|0|the special platelets kindle fi| +15308|384557|F|17675.46|1995-03-05|3-MEDIUM|Clerk#000001582|0| courts. quickly unusual escapades wake carefully against the express req| +15309|483301|P|149682.89|1995-05-19|4-NOT SPECIFIED|Clerk#000004258|0|wake carefully final foxes. pending deposit| +15310|317600|F|251541.14|1994-09-11|3-MEDIUM|Clerk#000001768|0|althy patterns poach carefully theodolites. carefully blithe grou| +15311|141011|F|144553.68|1992-08-23|5-LOW|Clerk#000004374|0|hely. carefully quiet packages according to the furiously express acco| +15336|707402|F|247932.25|1992-05-26|1-URGENT|Clerk#000002565|0| theodolites use thinly. slyly enticing requests should h| +15337|301403|F|22757.28|1992-07-24|3-MEDIUM|Clerk#000001600|0|uses nag slyly along the final, special instructions. regular foxes cajo| +15338|166159|O|335621.33|1996-07-13|5-LOW|Clerk#000001917|0|ly according to the regular excuses. blithely even theodo| +15339|363209|O|252582.79|1997-12-30|2-HIGH|Clerk#000001800|0|al accounts wake carefully according to the furiously final accounts. fluffily| +15340|200123|O|124119.09|1996-10-28|4-NOT SPECIFIED|Clerk#000001731|0|ctions. slyly quiet asympto| +15341|450661|O|104106.56|1998-07-15|4-NOT SPECIFIED|Clerk#000001735|0|sly idle packages. unusual foxes according to the ironic, reg| +15342|745750|O|150774.60|1998-06-28|1-URGENT|Clerk#000004027|0|efully slow platelets along the slyly ironic requests nag along the | +15343|565379|O|122061.35|1997-03-29|2-HIGH|Clerk#000000002|0|lithely above the quickly ironic deposits. warthogs haggle blithely. | +15368|559444|O|228044.92|1997-06-10|5-LOW|Clerk#000004125|0| ironic, bold packages. carefully regular packages nag blithely: q| +15369|575249|O|256366.27|1996-12-30|5-LOW|Clerk#000004464|0|ag about the quickly even accounts. iron| +15370|693679|O|91048.68|1996-06-12|3-MEDIUM|Clerk#000004422|0|arefully even ideas. final accounts wake about the furiously do| +15371|649762|F|118972.26|1994-10-16|2-HIGH|Clerk#000002255|0| boost quickly ironic deposits. busily pending deposits wake acro| +15372|541852|O|64734.34|1998-03-22|4-NOT SPECIFIED|Clerk#000003687|0|yly regular accounts boost final packages. quickly ironic| +15373|402715|O|185819.47|1996-03-29|1-URGENT|Clerk#000000958|0|fully final instructions wake fluffily around| +15374|425045|O|35586.35|1997-11-21|5-LOW|Clerk#000004953|0|e fluffily pending accounts wake afte| +15375|715069|O|21621.76|1996-07-10|1-URGENT|Clerk#000000003|0|lar pinto beans hang after the carefully express sent| +15400|140189|F|50885.27|1994-12-21|3-MEDIUM|Clerk#000001473|0|sleep. fluffily regular excuses hagg| +15401|399862|O|56634.03|1997-07-21|3-MEDIUM|Clerk#000003756|0|reach slyly blithely regular war| +15402|461929|F|136133.31|1992-12-30|5-LOW|Clerk#000004292|0|. accounts boost blithely furiously final d| +15403|382865|F|117421.79|1994-07-22|1-URGENT|Clerk#000000311|0|egular deposits sleep furiously unusual theodolites. quic| +15404|550354|O|334618.46|1996-04-29|1-URGENT|Clerk#000001201|0|the furiously ironic packages boost according to the unusual packages. re| +15405|25369|F|31436.55|1992-04-16|1-URGENT|Clerk#000000270|0|he regular pinto beans. blithely express instructio| +15406|373748|F|1095.63|1995-01-17|1-URGENT|Clerk#000004991|0|sely final accounts wake; iron| +15407|319591|F|52636.16|1993-09-26|3-MEDIUM|Clerk#000000112|0|regular pinto beans unwind carefully blithely ironic excuses. bold, regular e| +15432|609628|F|239592.95|1992-03-20|1-URGENT|Clerk#000003472|0|xpress requests are blithely near the accounts. fluffily pending packages hagg| +15433|253663|O|276732.04|1996-06-30|2-HIGH|Clerk#000002723|0|latelets across the evenly bold requests detect about the| +15434|289691|O|283384.12|1997-07-06|3-MEDIUM|Clerk#000002667|0|packages play furiously blithely| +15435|577127|O|217001.19|1996-08-29|1-URGENT|Clerk#000004030|0|inal asymptotes are furiously sp| +15436|15565|O|262643.67|1996-06-26|4-NOT SPECIFIED|Clerk#000000606|0|ar sheaves wake even pinto beans. blithely final i| +15437|598643|F|252055.80|1993-08-03|2-HIGH|Clerk#000003501|0|nto beans sleep sometimes after the deposits. furiously regular requests| +15438|135800|O|9001.97|1996-05-10|3-MEDIUM|Clerk#000004120|0|al deposits among the blithely | +15439|130900|F|225695.15|1994-09-27|1-URGENT|Clerk#000004155|0|apades cajole furiously regular foxes. regular,| +15464|271456|O|128744.90|1995-07-04|2-HIGH|Clerk#000001620|0|posits cajole quickly among the | +15465|81083|P|161556.33|1995-04-12|3-MEDIUM|Clerk#000001676|0|e alongside of the special courts. fluffily even accounts| +15466|3784|F|271303.40|1993-12-21|1-URGENT|Clerk#000004466|0|ldly final requests along the special deposits cajole quickly acro| +15467|572297|F|24447.36|1993-04-07|3-MEDIUM|Clerk#000002870|0|fily slyly final theodolites. flu| +15468|584930|F|117241.84|1994-09-01|5-LOW|Clerk#000003367|0|ng accounts boost fluffily. iron| +15469|662806|O|56318.94|1995-09-17|4-NOT SPECIFIED|Clerk#000002631|0|nding asymptotes sleep against the even the| +15470|21031|O|220264.90|1998-06-04|5-LOW|Clerk#000001526|0|tructions haggle against the | +15471|196946|F|101277.67|1992-05-06|3-MEDIUM|Clerk#000003297|0|lly quickly daring requests. quickly pending requests sleep fluffily final, re| +15496|318580|F|367995.37|1994-06-24|4-NOT SPECIFIED|Clerk#000002073|0|g quickly about the fluffily ironic ideas. packages play. requests| +15497|96343|F|137391.98|1993-05-17|5-LOW|Clerk#000002543|0|. express, final instructions cajole after the carefully fluffy foxes. | +15498|733864|F|288996.78|1994-02-10|4-NOT SPECIFIED|Clerk#000000683|0| above the special, regular | +15499|271585|O|96647.23|1996-04-13|1-URGENT|Clerk#000002720|0|nal accounts. unusual, final dependencies cajole. blithely even deposits in| +15500|1034|O|57895.79|1996-05-15|1-URGENT|Clerk#000000861|0|. blithely final accounts boost carefully. unusual courts | +15501|118231|O|108603.68|1996-12-07|5-LOW|Clerk#000000727|0|yly. ironic deposits unwind slyly ac| +15502|337337|F|88179.71|1992-02-05|4-NOT SPECIFIED|Clerk#000001886|0|. ironic, regular asymptotes sleep quickly about the furiously regula| +15503|358483|O|150012.16|1998-01-21|5-LOW|Clerk#000001716|0|ng notornis nag thinly along the ironic platelets. ironic, ir| +15528|256202|O|154589.75|1995-11-27|4-NOT SPECIFIED|Clerk#000000628|0|old, special packages wake e| +15529|223471|F|222622.48|1995-02-15|3-MEDIUM|Clerk#000003334|0|ges lose slyly. quickly regular exc| +15530|607805|O|188432.42|1997-07-04|3-MEDIUM|Clerk#000004510|0|ests solve carefully furiously even accounts. platelets above the b| +15531|368275|F|284351.50|1994-12-11|3-MEDIUM|Clerk#000003271|0| even foxes. blithely blithe excuses s| +15532|586771|O|14105.35|1995-12-10|5-LOW|Clerk#000000164|0|refully. blithely ironic deposits sleep carefully. expre| +15533|88231|F|106022.60|1992-06-24|1-URGENT|Clerk#000000338|0|y ironic accounts. fluffily ironic packag| +15534|132842|F|14196.87|1995-01-27|1-URGENT|Clerk#000000175|0|y blithely. quickly | +15535|663478|O|115636.47|1998-05-03|1-URGENT|Clerk#000003720|0|y ironic accounts. quickly even pac| +15560|66541|O|299318.64|1995-07-02|4-NOT SPECIFIED|Clerk#000001962|0|requests cajole slyly express instructions. regular sheaves are | +15561|102560|O|95479.84|1997-06-24|4-NOT SPECIFIED|Clerk#000003949|0|the carefully regular instructions: furiously ironi| +15562|211607|O|99036.25|1996-04-15|2-HIGH|Clerk#000003007|0|ts boost blithely. furiously idle asymp| +15563|726356|O|280665.13|1998-05-14|2-HIGH|Clerk#000001882|0|gle blithely final dependencies. ca| +15564|108424|F|199221.62|1992-02-23|3-MEDIUM|Clerk#000004267|0|s. slyly express instructions sleep quickly pinto beans. bold dolphin| +15565|518461|F|6918.62|1992-09-27|1-URGENT|Clerk#000002320|0|ites. final pinto beans thrash| +15566|266728|F|239651.35|1992-04-05|3-MEDIUM|Clerk#000004324|0|lphins boost blithely ac| +15567|115808|O|305912.20|1998-01-03|1-URGENT|Clerk#000003236|0|ticing patterns haggle fluffily blithely regular instructi| +15592|125738|O|345022.94|1997-02-09|4-NOT SPECIFIED|Clerk#000001329|0|l asymptotes. ironically express dependencie| +15593|515230|F|207946.69|1992-11-27|3-MEDIUM|Clerk#000002199|0|ously daring deposits cajole. doggedly i| +15594|710941|F|179706.66|1994-01-06|4-NOT SPECIFIED|Clerk#000000662|0|y final foxes. blithely | +15595|534724|F|79216.24|1992-05-13|1-URGENT|Clerk#000001666|0|al dolphins cajole fluffily. closely express pinto beans maintain slyly fina| +15596|603872|O|30427.54|1997-08-12|2-HIGH|Clerk#000004832|0|refully fluffily silent patterns. blithe| +15597|274874|O|79330.61|1997-02-09|5-LOW|Clerk#000001320|0|quests poach. quickly regular theodolites haggle furiously blithe, reg| +15598|549916|F|223242.59|1993-08-04|1-URGENT|Clerk#000003262|0|g the final foxes. blithely even dependencies kindle blithely. blithely| +15599|160789|O|178071.40|1996-04-07|4-NOT SPECIFIED|Clerk#000001426|0|oldly final warhorses are carefully quickly final foxes. sil| +15624|124141|O|174080.49|1997-07-16|3-MEDIUM|Clerk#000000490|0|osits after the slyly even foxes sleep ruthlessly around the quick| +15625|672728|F|49021.90|1993-09-08|2-HIGH|Clerk#000000077|0|deposits? furiously regular packages use carefully about the theodolites| +15626|284752|F|78806.67|1992-01-29|3-MEDIUM|Clerk#000004524|0|ly final deposits. grouches integrate fluffily. bold asymp| +15627|47518|O|102478.21|1996-06-21|5-LOW|Clerk#000004766|0|ular asymptotes. ironic ideas cajole. carefully fina| +15628|625933|F|33183.94|1994-05-18|2-HIGH|Clerk#000001970|0|ounts. deposits across | +15629|543209|P|196074.46|1995-03-23|1-URGENT|Clerk#000001859|0|quickly idle waters wake | +15630|702167|F|31636.64|1993-12-29|3-MEDIUM|Clerk#000001355|0|sly bold, close deposits. slyly silent ac| +15631|67762|F|310764.12|1994-12-08|1-URGENT|Clerk#000001224|0|ctions eat. unusual packages was | +15656|343165|F|131360.70|1992-05-18|2-HIGH|Clerk#000001129|0|dazzle along the furiously bold packages. blithely regular| +15657|55865|O|39385.28|1996-01-28|1-URGENT|Clerk#000003676|0|y after the carefully final foxes. furiously special requests poac| +15658|672859|O|19540.19|1998-03-07|5-LOW|Clerk#000000761|0|ajole after the regular, ir| +15659|221995|F|69391.29|1993-05-05|5-LOW|Clerk#000000116|0|arefully. silent accounts sleep slyly even deposits. slowly | +15660|544708|F|233749.40|1993-09-26|1-URGENT|Clerk#000000161|0| even packages are. quickly even forges sleep slyly| +15661|400933|F|22118.58|1995-01-19|1-URGENT|Clerk#000000534|0| requests. fluffily unusual | +15662|454228|O|124043.58|1996-12-18|2-HIGH|Clerk#000003715|0| quickly according to| +15663|694774|O|63375.35|1995-12-29|3-MEDIUM|Clerk#000003393|0| requests cajole slyly even, final foxes. blit| +15688|310523|O|88184.55|1995-06-15|5-LOW|Clerk#000001189|0| are gifts. express, even packages sublate blithely among th| +15689|449102|O|24021.70|1997-08-19|2-HIGH|Clerk#000004695|0|ctions run against the excuses: slyly even requests haggl| +15690|57154|F|120404.08|1993-10-15|2-HIGH|Clerk#000004429|0| solve. express packages wake never furiously ironic pinto | +15691|568694|F|163617.28|1993-07-10|2-HIGH|Clerk#000000020|0|kly special deposits. fluffily bold depen| +15692|30316|O|114079.85|1997-08-16|4-NOT SPECIFIED|Clerk#000000147|0|the furiously final packages. thinly dogged packages | +15693|253807|F|36946.37|1994-02-04|3-MEDIUM|Clerk#000002694|0|egular courts. furiously regular pinto beans affix. unusual| +15694|463850|O|273528.08|1997-08-02|5-LOW|Clerk#000001459|0|accounts. packages slee| +15695|420472|F|175286.11|1993-05-28|2-HIGH|Clerk#000004195|0|ly final accounts p| +15720|347075|F|220529.81|1994-08-26|1-URGENT|Clerk#000002573|0| furiously. fluffily express| +15721|537130|F|71460.24|1992-05-19|4-NOT SPECIFIED|Clerk#000002094|0|thely ironic requests. express accounts are pending deposits| +15722|541834|F|68710.07|1994-04-12|3-MEDIUM|Clerk#000002093|0|special theodolites lose blithely carefully regular braids| +15723|96671|O|299625.32|1996-12-27|5-LOW|Clerk#000003810|0|es affix furiously ironic instructions. fluffily ironic deposits wake| +15724|238493|F|165545.91|1993-04-10|2-HIGH|Clerk#000004104|0|ly even theodolites cajole bl| +15725|335648|O|80352.09|1996-09-28|5-LOW|Clerk#000001225|0|r, quick ideas accor| +15726|470768|O|297590.06|1995-12-09|5-LOW|Clerk#000001442|0| express packages. requests are furiously. never reg| +15727|436618|F|113241.67|1994-01-26|2-HIGH|Clerk#000001939|0|ly regular requests| +15752|227167|F|218463.44|1993-07-03|5-LOW|Clerk#000000897|0|nstructions. slyly final foxes aroun| +15753|488431|F|58064.04|1994-09-24|4-NOT SPECIFIED|Clerk#000004034|0|pending packages. blithely ironi| +15754|304748|F|182548.44|1994-03-14|1-URGENT|Clerk#000001525|0|ions haggle slyly bold dinos. quickly final fo| +15755|148891|F|49281.11|1993-11-18|2-HIGH|Clerk#000002907|0|cuses. orbits cajole c| +15756|409072|F|65318.99|1992-03-07|5-LOW|Clerk#000001523|0|eans. furiously even pinto beans sleep dependencies. bold excuses det| +15757|8477|O|285777.35|1996-11-29|1-URGENT|Clerk#000003979|0|s are along the fluffily final pinto bea| +15758|721960|O|71189.83|1998-01-14|4-NOT SPECIFIED|Clerk#000000631|0|are furiously about the fur| +15759|477026|O|133712.46|1995-07-21|5-LOW|Clerk#000001585|0|y regular theodolites. even ideas use furiously about the re| +15784|623239|O|82745.94|1997-11-10|4-NOT SPECIFIED|Clerk#000002374|0|nic theodolites above the furiously silent accounts sl| +15785|249985|O|323699.30|1997-10-23|5-LOW|Clerk#000003347|0|ccounts after the carefully s| +15786|736780|O|335333.15|1995-11-03|4-NOT SPECIFIED|Clerk#000000577|0|zzle fluffily. blithely pending accounts sleep slyly after the deposits. spec| +15787|555341|O|200281.85|1995-08-05|3-MEDIUM|Clerk#000004920|0|ies against the ironic theodolites haggle slyly alongside of the bold, pendin| +15788|604003|F|225563.72|1994-08-05|1-URGENT|Clerk#000000261|0|ly even requests. pending requests boost among the packages. quickly | +15789|199439|F|166702.71|1993-10-22|3-MEDIUM|Clerk#000003976|0|s. pending accounts serve slyly quickly special foxes. instructions cajole | +15790|205888|F|235025.53|1992-06-30|1-URGENT|Clerk#000001318|0|to beans haggle furiously unusu| +15791|605167|O|33468.59|1996-01-02|4-NOT SPECIFIED|Clerk#000001340|0|xcuses solve along the ironic theodolites. p| +15816|271946|O|83167.49|1996-10-19|4-NOT SPECIFIED|Clerk#000001150|0|always furiously ironic accounts. accounts according to the furio| +15817|82411|F|249524.51|1993-02-01|4-NOT SPECIFIED|Clerk#000004834|0|otes hinder busily. eve| +15818|563632|O|53699.16|1996-02-17|1-URGENT|Clerk#000004159|0|es. final, regular pinto beans wake q| +15819|441178|O|187372.00|1998-04-01|5-LOW|Clerk#000002533|0|, quiet accounts. dinos haggle slyly along the blithely final theodolites.| +15820|366379|O|171807.40|1997-06-18|5-LOW|Clerk#000002468|0| foxes. slyly final foxes ar| +15821|228868|O|39559.36|1996-08-16|1-URGENT|Clerk#000004978|0|sly slyly thin foxes. packages affix carefully according to | +15822|557998|F|167035.87|1992-09-24|4-NOT SPECIFIED|Clerk#000003086|0|al deposits cajole after t| +15823|253493|F|94228.46|1994-02-27|4-NOT SPECIFIED|Clerk#000001796|0|ly. quickly final frays are about the slowly pend| +15848|451561|O|195799.65|1995-08-21|2-HIGH|Clerk#000002800|0|- slyly special pinto beans are. regular patterns wake about | +15849|108248|O|177761.70|1996-01-03|3-MEDIUM|Clerk#000001350|0|ording to the regular foxes; unusual dependencies affix across the slyly| +15850|568342|F|238155.10|1992-02-19|5-LOW|Clerk#000002596|0| are slyly regular asymptotes. furiously pending de| +15851|90754|F|222069.92|1993-03-03|1-URGENT|Clerk#000004379|0|o the express accounts. even instructions sleep blithely. blithely final acco| +15852|523126|O|59565.79|1996-04-23|3-MEDIUM|Clerk#000001354|0|across the excuses haggle slyly quickly express accounts. slyly| +15853|678448|F|117054.73|1994-02-04|1-URGENT|Clerk#000004241|0|-- unusual pinto beans cajole furiously close reque| +15854|402965|F|46549.16|1994-03-08|5-LOW|Clerk#000003495|0| instructions. blithely silent foxes detect. furiously ironic foxes cajole ca| +15855|116752|O|242191.26|1995-05-31|3-MEDIUM|Clerk#000004473|0|lyly ironic excuses haggle; pinto beans affix against the even,| +15880|243061|F|40363.54|1993-07-18|3-MEDIUM|Clerk#000003800|0|eep furiously even dolphins. slyly pending courts haggle slyly| +15881|594592|F|140405.81|1994-04-17|5-LOW|Clerk#000003930|0|nts are. bold courts alongside of the carefully pendi| +15882|292055|F|247837.42|1995-01-07|3-MEDIUM|Clerk#000001571|0|uests wake. sentiments use. accounts wake in place of the carefully unusua| +15883|567889|F|62583.40|1994-03-30|4-NOT SPECIFIED|Clerk#000000112|0| even packages. quickly unusual pains wake along| +15884|740812|F|217993.71|1993-03-17|3-MEDIUM|Clerk#000000878|0|ly silently special Tiresias. slyly express pinto beans across| +15885|70501|P|171671.83|1995-06-02|4-NOT SPECIFIED|Clerk#000004547|0|fully ironic requests. slyly pending instructions according to the pending | +15886|651631|F|211931.49|1993-05-23|5-LOW|Clerk#000000406|0|ar requests nag slyly according to the fluffily ironic ideas. blithely bold| +15887|457333|F|5259.22|1993-03-12|1-URGENT|Clerk#000000561|0|accounts boost fluffily of the careful, even| +15912|384670|F|50713.49|1994-01-13|1-URGENT|Clerk#000001289|0|eas. slyly regular packages sleep before the pearls. quickly final| +15913|124432|F|259358.00|1993-08-11|2-HIGH|Clerk#000003418|0|the fluffily pending ideas. packages boost pending, bold Tiresias. express| +15914|299692|O|185895.88|1995-08-12|5-LOW|Clerk#000002813|0|ly regular ideas. ironic accounts h| +15915|649744|F|46540.09|1995-01-15|1-URGENT|Clerk#000001437|0|unts among the carefully ironic deposits na| +15916|226018|F|31737.82|1993-03-18|2-HIGH|Clerk#000001578|0|ets nag carefully even acco| +15917|662390|O|114484.29|1995-11-10|3-MEDIUM|Clerk#000000191|0|ld sheaves may cajole quickly carefully pending d| +15918|533366|P|135010.03|1995-03-25|3-MEDIUM|Clerk#000004995|0|aringly bold pinto beans. furi| +15919|274333|P|137082.20|1995-05-23|2-HIGH|Clerk#000000298|0|gular pinto beans. slyly regular courts boost blithely. | +15944|435133|O|215564.85|1995-11-21|4-NOT SPECIFIED|Clerk#000002257|0|t slyly according to the q| +15945|747157|O|47317.76|1998-04-20|4-NOT SPECIFIED|Clerk#000003023|0|e carefully after the carefully ironic ideas. blith| +15946|214681|F|271319.02|1994-05-15|3-MEDIUM|Clerk#000002425|0|ts. packages cajole furiously a| +15947|627499|F|192819.48|1992-07-20|4-NOT SPECIFIED|Clerk#000001355|0|he fluffily even instructions. slyly express orbit| +15948|624071|F|165773.85|1994-10-20|1-URGENT|Clerk#000003125|0|usly express ideas. fluffily ironic packages sleep fur| +15949|9880|F|83956.99|1995-01-11|5-LOW|Clerk#000003504|0|accounts: carefully brave theo| +15950|301535|F|145302.31|1994-02-01|2-HIGH|Clerk#000004649|0| regular asymptotes doze c| +15951|142042|F|226395.03|1993-05-05|1-URGENT|Clerk#000001014|0|gular instructions haggle. evenly special accounts after the | +15976|45344|F|114341.85|1992-08-26|4-NOT SPECIFIED|Clerk#000001001|0| even, final ideas. furiously ironic instruct| +15977|87499|F|141873.06|1993-04-14|4-NOT SPECIFIED|Clerk#000003452|0|round the blithely brave foxes.| +15978|582043|O|358214.45|1996-04-30|1-URGENT|Clerk#000002967|0|fully special, ironic Tiresias. quickly furious foxes use quickly e| +15979|143401|O|267773.78|1998-07-16|2-HIGH|Clerk#000002068|0|? fluffily pending warthogs according to the blithe| +15980|364384|O|125821.81|1996-04-21|4-NOT SPECIFIED|Clerk#000001560|0| of the slyly bold foxes are blithely| +15981|436414|O|188706.24|1998-07-31|1-URGENT|Clerk#000004624|0|l ideas after the blithely dogged requests sleep c| +15982|551360|O|45685.78|1996-10-16|4-NOT SPECIFIED|Clerk#000003999|0|t. unusual, pending dependencies wake carefully foxes. even, | +15983|445694|O|124227.33|1997-11-28|2-HIGH|Clerk#000003724|0|boost slyly carefully final | +16008|520585|F|233288.45|1993-09-24|3-MEDIUM|Clerk#000003406|0|equests among the blithely ironic instructions wake furiously across t| +16009|696583|F|235446.12|1993-06-01|2-HIGH|Clerk#000004255|0|ackages wake blithely according to the enticingly ironic instructions. excu| +16010|704116|O|255660.42|1998-03-29|5-LOW|Clerk#000003179|0|ular, silent pinto beans are quickly after the carefully | +16011|574943|O|26915.37|1995-12-28|1-URGENT|Clerk#000002666|0|old theodolites. bold re| +16012|58522|F|143140.97|1992-04-10|1-URGENT|Clerk#000004265|0|ep furiously accounts. ironic in| +16013|320254|F|2560.39|1992-03-22|4-NOT SPECIFIED|Clerk#000001693|0|endencies sleep fluffily| +16014|504874|O|242227.72|1996-03-07|2-HIGH|Clerk#000000414|0|the bold, bold foxes. packages us| +16015|633743|F|32962.67|1994-09-21|2-HIGH|Clerk#000001389|0|the blithely regular theodolites sleep fluffily sly| +16040|560533|F|364360.18|1993-11-02|2-HIGH|Clerk#000004404|0| regular theodolites haggle above the slyly ironic deposits. blithe| +16041|124607|O|8703.42|1997-08-13|2-HIGH|Clerk#000002518|0|fluffily even dependencies. carefully regular excuses haggle slyly carefully f| +16042|259168|O|52401.77|1995-09-13|1-URGENT|Clerk#000004754|0|oggedly silent dependencies haggle carefully. unusual somas boost exp| +16043|579143|O|107135.17|1998-01-08|4-NOT SPECIFIED|Clerk#000001423|0|s. special packages would nag quic| +16044|144862|O|100670.66|1997-08-27|1-URGENT|Clerk#000001260|0|nal foxes use carefully. slyl| +16045|175913|O|154130.73|1998-06-23|2-HIGH|Clerk#000004204|0|. pending asymptotes sleep furiously above the requests. blithely bold dep| +16046|68864|O|128546.70|1996-12-08|5-LOW|Clerk#000003109|0|ironic asymptotes boost blithely. final, sp| +16047|134228|O|119881.39|1996-11-25|2-HIGH|Clerk#000003049|0|lites. furiously bold de| +16072|718636|O|271174.95|1998-02-21|2-HIGH|Clerk#000002551|0|nto beans. final package| +16073|89207|O|240294.06|1998-02-01|5-LOW|Clerk#000000599|0|ic requests. even pac| +16074|46352|F|29515.93|1992-03-23|1-URGENT|Clerk#000004877|0|ress deposits. bold, even mult| +16075|534883|F|79345.08|1994-05-05|3-MEDIUM|Clerk#000002315|0|lent foxes cajole. fluffily express platelets maintain blithely ironic pinto | +16076|270782|O|26649.57|1997-04-11|3-MEDIUM|Clerk#000000172|0|sits wake dependencies. slyly even pinto beans | +16077|25793|F|222319.66|1994-05-24|4-NOT SPECIFIED|Clerk#000001758|0|ar, even excuses. slyly ironic deposits at the furiously bold accounts cajo| +16078|741703|F|96093.06|1993-07-25|5-LOW|Clerk#000004029|0|carefully special deposits. pending Tiresias | +16079|50419|F|51484.76|1992-11-07|2-HIGH|Clerk#000000847|0|al platelets sleep slyly al| +16104|621578|O|117295.90|1995-06-24|1-URGENT|Clerk#000004564|0|g ideas sleep ironically. requests above the bold a| +16105|95582|F|95773.93|1993-07-05|3-MEDIUM|Clerk#000001727|0|thely. ideas according to the slyly final packages wa| +16106|684650|F|100582.80|1992-02-25|2-HIGH|Clerk#000002854|0|ly pending asymptotes wake? finally | +16107|399007|F|27080.73|1993-10-15|5-LOW|Clerk#000000547|0|ironic ideas mold blithely blithely bold ideas. blithely ironic requests| +16108|329537|F|24510.65|1992-09-23|1-URGENT|Clerk#000002381|0|eposits nag. regular braids according to the dependencies sleep about the ca| +16109|527083|F|57247.53|1993-06-15|4-NOT SPECIFIED|Clerk#000004360|0|ts haggle furiously-- permanent, final pinto beans was p| +16110|428342|O|71143.93|1996-08-19|2-HIGH|Clerk#000001779|0|olites haggle blithely quickly regular package| +16111|630998|O|145070.55|1996-04-20|1-URGENT|Clerk#000003956|0|ions are quickly ironic req| +16136|179023|F|138458.78|1994-03-24|2-HIGH|Clerk#000001243|0|osits. furiously special requests use throughout the fur| +16137|580963|F|92462.19|1992-06-28|5-LOW|Clerk#000000601|0|xpress accounts boost braids. blithely final requests need to ar| +16138|732886|O|223668.88|1997-06-28|5-LOW|Clerk#000000887|0|kages wake carefully special requests. quickly regular reque| +16139|345025|F|130952.08|1992-06-05|1-URGENT|Clerk#000004977|0|ost even accounts. slyly pending packages affix across the pending multi| +16140|573253|O|150116.42|1996-05-16|4-NOT SPECIFIED|Clerk#000000776|0|slyly blithely ironic packages. careful| +16141|131017|F|252843.40|1994-07-20|2-HIGH|Clerk#000003489|0|eodolites alongside o| +16142|729671|O|8617.96|1997-06-06|3-MEDIUM|Clerk#000001282|0|posits wake blithely carefully even accounts. furiously unusu| +16143|322210|F|278073.92|1994-09-04|5-LOW|Clerk#000000868|0| even foxes across the quick deposits caj| +16168|372436|F|7877.20|1992-04-26|1-URGENT|Clerk#000001011|0|y pending deposits? unusual, regular asymptotes ar| +16169|25180|O|266042.04|1998-01-15|1-URGENT|Clerk#000003735|0|after the blithely | +16170|193486|F|39565.15|1994-04-22|2-HIGH|Clerk#000003778|0|nusual deposits. deposits poach along the care| +16171|643420|O|72386.43|1996-02-07|3-MEDIUM|Clerk#000001443|0|eas nag slyly decoys. ideas| +16172|436843|O|121195.65|1996-12-04|5-LOW|Clerk#000000894|0|riously blithely final requests. blithely special requests around the f| +16173|240592|O|200741.44|1996-11-15|5-LOW|Clerk#000004746|0| around the unusual packages| +16174|374042|F|128067.70|1993-06-26|3-MEDIUM|Clerk#000004657|0|. special, regular accounts around the| +16175|19105|O|102947.97|1997-12-29|4-NOT SPECIFIED|Clerk#000001590|0|ironic, silent foxes-- foxes s| +16200|79916|O|179518.23|1995-09-03|2-HIGH|Clerk#000004883|0|uriously pending deposits| +16201|643498|F|355125.90|1993-10-31|1-URGENT|Clerk#000004037|0|blithely across the regular packages. unusual, regular pack| +16202|262871|P|361849.63|1995-04-04|2-HIGH|Clerk#000000235|0|reful deposits against the ironic instructions integra| +16203|569575|F|298617.02|1993-08-05|1-URGENT|Clerk#000001604|0|s foxes. furiously idle packages cajole. ideas play slyly sil| +16204|589387|O|185758.37|1995-12-16|5-LOW|Clerk#000002266|0|dle carefully furiously pending requests! bold dependen| +16205|569606|O|25989.76|1995-05-26|5-LOW|Clerk#000003828|0|nto beans kindle furiously around the regular pa| +16206|365719|F|198564.12|1992-01-14|1-URGENT|Clerk#000003304|0|nding requests are quickly. pending packa| +16207|367397|O|141883.09|1996-10-15|2-HIGH|Clerk#000002759|0|ys. regular asymptotes use quickly according to the furiousl| +16232|79241|P|159821.52|1995-03-29|2-HIGH|Clerk#000003596|0|permanently. ironic hockey players x-ray | +16233|547420|O|267948.40|1996-04-13|1-URGENT|Clerk#000002853|0|ons boost fluffily. sly| +16234|208724|F|297972.06|1992-12-18|5-LOW|Clerk#000001874|0|ickly along the blithely ruthless requests. sheaves use thinly| +16235|271660|F|65901.64|1992-02-04|1-URGENT|Clerk#000004708|0|ickly unusual ideas cajole sl| +16236|506209|O|202720.69|1997-06-18|1-URGENT|Clerk#000000759|0|kly unusual Tiresias about the silent ex| +16237|602734|F|127648.31|1995-03-02|2-HIGH|Clerk#000002131|0|nding courts. ironic, ironic ideas play | +16238|618799|O|132599.96|1996-01-06|3-MEDIUM|Clerk#000000691|0|riously blithely regu| +16239|634678|O|108562.39|1997-12-26|2-HIGH|Clerk#000004871|0|lphins kindle. dependencies| +16264|517012|F|36687.36|1992-07-02|5-LOW|Clerk#000001288|0| use busily above the quickly silent courts.| +16265|655115|O|111878.54|1996-04-06|4-NOT SPECIFIED|Clerk#000003516|0|r packages. blithely quick accoun| +16266|517504|O|245950.56|1998-03-28|2-HIGH|Clerk#000004167|0|heodolites. quickly regular gifts | +16267|664121|O|173825.20|1997-12-22|1-URGENT|Clerk#000000313|0|s. blithely bold deposits boost close accounts. quickly final depen| +16268|365921|F|248861.89|1993-02-22|4-NOT SPECIFIED|Clerk#000000054|0|kly over the furiously | +16269|31823|F|128352.16|1993-08-10|1-URGENT|Clerk#000004714|0|furiously fluffily express packages. pending deposits alongside of the | +16270|83150|F|270878.05|1992-02-19|1-URGENT|Clerk#000001130|0|s. quickly ironic foxes about the final accounts sho| +16271|242543|O|204071.80|1997-05-17|4-NOT SPECIFIED|Clerk#000004914|0|ter the even foxes wake furiously regular instructions. quickly even d| +16296|169079|O|189421.74|1997-10-09|4-NOT SPECIFIED|Clerk#000002472|0|lithely across the carefully special depths. requests | +16297|699859|P|172819.56|1995-03-20|1-URGENT|Clerk#000004702|0|ly final notornis. packages affix fluffily | +16298|268348|O|187419.29|1997-07-04|2-HIGH|Clerk#000004936|0|fully regular sauternes. blithely even dolphins around | +16299|351538|F|141047.46|1992-02-03|3-MEDIUM|Clerk#000004032|0|ounts are furiously alongside of the platelets. regular pinto| +16300|536557|O|15853.56|1995-08-06|4-NOT SPECIFIED|Clerk#000002097|0|the quickly bold dependencies. quietly bold warthog| +16301|636245|F|313027.79|1994-01-08|1-URGENT|Clerk#000003740|0|furiously pending theodolites are carefully ironic, regular theodolites.| +16302|606109|O|226487.21|1996-05-18|2-HIGH|Clerk#000003972|0|the quickly ironic accounts. fu| +16303|373466|O|139638.12|1996-12-22|1-URGENT|Clerk#000003120|0|across the fluffily final excuses. blithely ironic the| +16328|86978|O|113353.97|1996-11-05|5-LOW|Clerk#000004168|0|iously express accounts boost among the ironic, ironic warthogs.| +16329|77600|O|68723.34|1998-03-31|4-NOT SPECIFIED|Clerk#000002120|0|he always final packages. carefully express ideas detec| +16330|709726|O|127168.73|1997-05-04|2-HIGH|Clerk#000004071|0|sly regular asymptotes sleep furiously specia| +16331|346267|O|232443.68|1996-09-16|5-LOW|Clerk#000004736|0| ironic ideas. slyly pending excuses wake. bold, special foxes haggle acros| +16332|445897|F|135427.14|1992-01-25|1-URGENT|Clerk#000004600|0|y pending packages. ruthle| +16333|176635|O|56249.66|1995-10-16|4-NOT SPECIFIED|Clerk#000003188|0|accounts detect across the packages? quickly re| +16334|172174|O|258157.58|1997-11-25|1-URGENT|Clerk#000002752|0|ackages are carefully. courts doze aro| +16335|212645|F|39689.87|1994-09-01|5-LOW|Clerk#000002567|0|deposits nag. regular deposits accord| +16360|164995|F|19808.83|1992-04-25|3-MEDIUM|Clerk#000003828|0|ges. theodolites among the ironic, regula| +16361|292586|O|180824.65|1998-05-13|5-LOW|Clerk#000001597|0|tions. quickly slow courts cajole slyly carefully bold requests. ironic d| +16362|491323|F|130331.56|1992-12-09|4-NOT SPECIFIED|Clerk#000004368|0|y regular foxes use thinly above the furiously silent deposits.| +16363|154177|O|24158.69|1996-06-02|1-URGENT|Clerk#000001076|0|ctions boost excuses. special deposits cajole blithely sheaves. q| +16364|746537|O|209650.31|1997-02-02|1-URGENT|Clerk#000001259|0| around the carefully silent theodolites. fluffily furious deposits breach.| +16365|295123|O|75150.04|1997-11-15|5-LOW|Clerk#000000339|0|arefully unusual packages sleep against| +16366|358633|O|208899.98|1997-01-03|1-URGENT|Clerk#000004710|0|ress somas. ironic deposits wake quic| +16367|534421|F|129012.85|1994-12-31|4-NOT SPECIFIED|Clerk#000000328|0|pecial accounts about the | +16392|743245|O|166013.23|1996-11-06|2-HIGH|Clerk#000001737|0|ular instructions are slyly; blithely special requests amo| +16393|467680|F|144681.58|1992-10-07|1-URGENT|Clerk#000001145|0|ructions use finally. blithely bold r| +16394|268916|O|5734.79|1998-03-29|5-LOW|Clerk#000003351|0|fily ruthless requests are slyly accounts. slyly express ac| +16395|165994|F|42335.42|1992-09-24|2-HIGH|Clerk#000004485|0|tes are accounts. slyly express frays| +16396|585343|F|135662.14|1993-05-05|5-LOW|Clerk#000003805|0|ully bravely unusual somas. ironic, bold somas nag since the bold, bold p| +16397|105097|O|168778.91|1998-05-03|1-URGENT|Clerk#000000625|0|ckages detect. furiously even platelets according to the | +16398|103318|O|143076.64|1995-06-27|5-LOW|Clerk#000000135|0|pecial ideas. carefully final d| +16399|208538|O|134936.84|1996-05-04|1-URGENT|Clerk#000000071|0|cajole quickly at the enticingly special accounts. ironic gift| +16424|143626|O|134424.92|1997-08-29|3-MEDIUM|Clerk#000002102|0|al excuses. slyly express tithes nag express requests. blithely final accounts| +16425|397468|O|44957.00|1997-07-08|4-NOT SPECIFIED|Clerk#000003449|0|ep slyly ironic accounts. unusual foxes boost. fluffily final dinos near t| +16426|712064|P|285742.02|1995-05-14|2-HIGH|Clerk#000000940|0|encies sleep blithely. f| +16427|657385|O|309765.27|1997-12-02|4-NOT SPECIFIED|Clerk#000004519|0|ng the final, ironic accounts boost fluffily final | +16428|391189|F|49479.05|1992-09-03|4-NOT SPECIFIED|Clerk#000001410|0|ironic platelets are fluffily. blithely reg| +16429|183119|F|163449.52|1993-06-23|2-HIGH|Clerk#000001245|0| pinto beans. regular, daring requests integrate blithely unusu| +16430|421714|O|172942.50|1998-05-21|3-MEDIUM|Clerk#000003904|0| quickly. blithely final deposits integrate slow requests. silently| +16431|216046|F|94284.45|1992-08-22|3-MEDIUM|Clerk#000001292|0|sly ironic courts print quickly acr| +16456|325756|O|59364.65|1997-07-21|4-NOT SPECIFIED|Clerk#000000540|0|nic, regular ideas maintain bold excuses. requests | +16457|727639|F|192809.97|1993-06-03|4-NOT SPECIFIED|Clerk#000004973|0| blithely regular ideas. blithely unusual accounts haggle bravely about the | +16458|650869|F|269569.95|1994-03-21|4-NOT SPECIFIED|Clerk#000004953|0|telets. furiously express dolph| +16459|396832|F|180411.88|1993-10-07|2-HIGH|Clerk#000001626|0|final sauternes despite the carefully busy packages wa| +16460|551716|O|123447.99|1995-07-22|3-MEDIUM|Clerk#000002395|0|rom the furiously unusual packages. blithely unusual frays nag. regular asym| +16461|431158|O|318357.04|1998-06-16|4-NOT SPECIFIED|Clerk#000004611|0|es. boldly regular attainments snooze furiously. | +16462|720391|F|60491.70|1993-10-23|5-LOW|Clerk#000000068|0|thely. final ideas serve daringly. requests about the cl| +16463|357200|F|87285.27|1992-12-01|1-URGENT|Clerk#000003627|0|kages play carefully quickly regular multipliers. excuses boost slyly after| +16488|454646|O|63189.97|1995-10-09|5-LOW|Clerk#000002795|0|le furiously even packages. slyly special ideas nag. express, spe| +16489|235114|F|146071.12|1993-12-16|3-MEDIUM|Clerk#000001754|0|of the doggedly final foxes. furious| +16490|548221|O|120036.14|1995-08-21|3-MEDIUM|Clerk#000000556|0|le above the ideas. carefully express requests cajole qui| +16491|184171|O|6326.38|1996-02-17|2-HIGH|Clerk#000004369|0|quickly special ideas x-ray| +16492|101053|F|87717.89|1994-03-15|5-LOW|Clerk#000003712|0|nce the pending, express foxes. final, even req| +16493|377767|O|75270.52|1995-10-17|1-URGENT|Clerk#000000896|0|deposits use slyly blithely bold deposits. furious| +16494|379204|F|194874.16|1994-05-20|1-URGENT|Clerk#000002949|0|riously? quickly ironic foxes| +16495|514558|O|40089.40|1996-09-12|1-URGENT|Clerk#000001005|0|ipliers. ironically special requests haggle. blithely iron| +16520|671177|O|205940.37|1996-04-07|4-NOT SPECIFIED|Clerk#000004975|0|ainst the ironic instructions. regular packages sleep regular re| +16521|460732|F|22502.47|1994-06-23|3-MEDIUM|Clerk#000000529|0|ding to the quickly unusual attainments.| +16522|514052|O|189805.50|1997-09-09|4-NOT SPECIFIED|Clerk#000001111|0|alongside of the slyly regular depo| +16523|408721|O|190814.24|1996-03-09|5-LOW|Clerk#000004503|0|iously ironic deposits. carefu| +16524|109699|F|137431.71|1994-09-26|4-NOT SPECIFIED|Clerk#000004237|0|g to the furiously regular foxes. slyly bold instructions haggle| +16525|184694|F|155523.91|1992-01-05|4-NOT SPECIFIED|Clerk#000002150|0|ccounts. bold packages are furiously slyly quiet dolphi| +16526|650957|F|75405.49|1994-04-21|5-LOW|Clerk#000001694|0|nusual dependencies wake closely special packages. carefully regular h| +16527|381569|O|77201.63|1997-04-14|2-HIGH|Clerk#000004273|0|y special deposits. platel| +16552|519736|O|162105.23|1997-08-05|4-NOT SPECIFIED|Clerk#000001000|0|he regular, ironic foxes.| +16553|689029|O|223686.22|1998-05-15|5-LOW|Clerk#000002092|0| express excuses. regular deposits detect carefully express deposits! dep| +16554|507593|O|117702.49|1997-10-13|3-MEDIUM|Clerk#000003744|0|haggle carefully. blithely ex| +16555|613426|F|55014.47|1994-01-04|2-HIGH|Clerk#000004591|0|ackages are slyly at the blithely | +16556|342406|F|183292.91|1994-01-22|5-LOW|Clerk#000000151|0|tes wake blithely. blithely bold ideas nag quickly against the furiously fina| +16557|45733|O|194944.36|1996-11-28|4-NOT SPECIFIED|Clerk#000002336|0|ross the furiously final accounts. | +16558|634225|F|309801.28|1995-01-28|5-LOW|Clerk#000002337|0| haggle slyly according to the slyly ironic theodolites. slyl| +16559|415675|O|150329.80|1997-08-22|5-LOW|Clerk#000000718|0|. unusual, final instructions can are slyly. final asymptotes across the | +16584|722995|O|50221.03|1996-01-18|1-URGENT|Clerk#000001025|0|special instructions. quickly ironic requests are e| +16585|615137|O|69827.55|1995-11-07|1-URGENT|Clerk#000004462|0| haggle carefully furiously pending ideas. pending packages mold. slyly expres| +16586|599440|F|159144.31|1992-03-03|3-MEDIUM|Clerk#000002456|0|riously final instruct| +16587|34886|O|103407.68|1996-10-25|1-URGENT|Clerk#000002253|0|lyly silent packages along t| +16588|578980|O|111608.47|1997-12-01|5-LOW|Clerk#000000893|0|mong the fluffily regular packages. furiously regular req| +16589|390785|F|216257.87|1992-02-18|1-URGENT|Clerk#000000114|0|blithely at the evenly unusual ideas. fluffily regular instructions are| +16590|172879|F|118850.88|1993-07-14|4-NOT SPECIFIED|Clerk#000000182|0|ets wake with the furiously ironic frets? c| +16591|72799|F|251216.90|1994-08-24|3-MEDIUM|Clerk#000004117|0|ctions eat regular, regular requests. hockey players are| +16616|278755|O|227731.15|1995-08-11|4-NOT SPECIFIED|Clerk#000003526|0|gainst the quickly pending reque| +16617|526091|O|250241.90|1997-12-28|4-NOT SPECIFIED|Clerk#000003423|0|gainst the bold asymptotes wake quic| +16618|258416|O|163149.43|1996-03-19|3-MEDIUM|Clerk#000002312|0|leep until the furiously regular packages. special deposits thrash af| +16619|687040|F|239952.44|1992-12-17|4-NOT SPECIFIED|Clerk#000001678|0|s. carefully special asymptotes nag. sly| +16620|77611|F|25229.14|1992-10-12|1-URGENT|Clerk#000002910|0|e, ruthless packages are across the even, unus| +16621|153457|O|222567.53|1996-12-08|3-MEDIUM|Clerk#000003173|0|nding packages cajole carefully along the busy asymptotes-- carefully r| +16622|649790|F|330261.46|1992-08-21|2-HIGH|Clerk#000004696|0|cial accounts are. ironic packages a| +16623|261142|F|64330.80|1992-03-05|5-LOW|Clerk#000004495|0|affix. furiously express theodolites haggle slyly pe| +16648|737338|O|81524.33|1995-08-17|4-NOT SPECIFIED|Clerk#000004494|0| carefully bold pearls cajole slyly| +16649|159178|O|158083.05|1997-11-12|3-MEDIUM|Clerk#000001408|0|the pending ideas nod quietly into the silent, unusual deposit| +16650|23605|O|142355.35|1996-01-18|5-LOW|Clerk#000002421|0|ily under the regular, regular dependencies. fu| +16651|695662|O|141000.20|1995-06-30|1-URGENT|Clerk#000002068|0|wly. special, even deposits wake after the thin| +16652|240073|F|62443.77|1992-08-17|5-LOW|Clerk#000004894|0| regularly silent foxes affix. account| +16653|624730|O|194297.60|1997-10-03|5-LOW|Clerk#000003383|0|theodolites unwind fluffily along the regular accounts. carefu| +16654|558451|F|123792.74|1994-08-26|5-LOW|Clerk#000001186|0| brave, regular accounts; final pinto beans use. u| +16655|361088|F|274768.91|1994-02-13|2-HIGH|Clerk#000002976|0|ding pinto beans use slyly blithely regular instructions. d| +16680|548143|F|142475.45|1994-11-18|2-HIGH|Clerk#000000538|0|equests engage furiously slyly fi| +16681|367069|O|52501.50|1998-07-27|5-LOW|Clerk#000004740|0|slyly even deposits affix carefully fluffily| +16682|573802|F|294871.20|1993-04-12|1-URGENT|Clerk#000002085|0|s. special foxes integrate unusual, ironic decoys? furiously ir| +16683|369194|F|136397.60|1994-10-10|2-HIGH|Clerk#000000254|0|sleep. slyly ironic packages det| +16684|283840|F|15277.70|1994-09-30|1-URGENT|Clerk#000004990|0|counts after the pearls haggle after the pending theodolites. silent, silent | +16685|482983|O|90558.08|1996-07-14|2-HIGH|Clerk#000004044|0|press dependencies use carefully along the ironic, unusual packages; carefull| +16686|224971|F|132052.67|1994-05-03|1-URGENT|Clerk#000001171|0|s boost blithely unusual tithes. blithely regular sentiments after the sometim| +16687|310508|F|81204.35|1994-01-12|3-MEDIUM|Clerk#000004585|0|ic requests affix carefully at the furiously bold packages.| +16712|201134|F|44638.90|1994-03-29|5-LOW|Clerk#000004979|0|ng, bold deposits haggle furiously after the careful, special requests. care| +16713|196759|F|313751.79|1994-12-31|1-URGENT|Clerk#000000573|0|ly slyly express pinto beans. bold accounts use quickly unusual| +16714|158567|O|63245.38|1997-10-30|3-MEDIUM|Clerk#000003118|0|nstructions. furiously bold deposits hang fluffily acc| +16715|274198|O|54935.73|1995-08-04|1-URGENT|Clerk#000001222|0|ke fluffily furiously furious idea| +16716|439849|O|150679.40|1998-01-10|5-LOW|Clerk#000000671|0|ily ironic sauternes. permanently final dependencies haggle slyly; thinly even| +16717|515731|O|231154.00|1996-09-08|3-MEDIUM|Clerk#000001030|0|ding packages. quickly bold dependen| +16718|120613|O|146083.69|1995-11-07|2-HIGH|Clerk#000002259|0|bove the accounts. daringly| +16719|617102|O|83342.86|1997-09-30|2-HIGH|Clerk#000004021|0|instructions haggle. slyly bold requests mo| +16744|629632|F|178076.43|1992-08-15|2-HIGH|Clerk#000001536|0|nic instructions. furiously bold ideas wake carefully after the carefully even| +16745|465793|F|255433.45|1992-02-06|4-NOT SPECIFIED|Clerk#000000366|0|ts. slyly special pinto beans nag carefully. | +16746|62723|F|295742.85|1994-09-26|2-HIGH|Clerk#000000647|0|into beans. requests haggle sometimes blithely bold deposits. slyly specia| +16747|430015|F|49268.81|1994-08-07|3-MEDIUM|Clerk#000000429|0|nto beans. express warthogs print about the quickly ironic packages. i| +16748|237364|O|15823.99|1996-12-08|1-URGENT|Clerk#000000857|0|ithely express packages. slyly final instruction| +16749|96661|O|208969.85|1996-07-26|1-URGENT|Clerk#000001314|0|s nag quickly regular, bold pack| +16750|71539|F|206983.18|1995-01-07|1-URGENT|Clerk#000003900|0|inal accounts. carefully i| +16751|88666|O|179327.72|1997-11-04|4-NOT SPECIFIED|Clerk#000001892|0|y across the furiously final requests. furiously pending depos| +16776|709133|F|75281.27|1994-10-06|5-LOW|Clerk#000004901|0|arefully regular pa| +16777|147341|F|176139.88|1993-06-20|2-HIGH|Clerk#000003369|0| requests haggle final, special theodolites. carefully | +16778|603268|O|86482.01|1996-04-23|2-HIGH|Clerk#000001581|0|omise blithely. dependencies cajole carefully above the carefully bo| +16779|596329|F|70854.08|1994-11-13|3-MEDIUM|Clerk#000004805|0|special foxes along the blithely| +16780|237235|O|73037.94|1998-02-24|5-LOW|Clerk#000002384|0| slyly even packages cajole quickly packages. quick accounts | +16781|187036|O|194194.50|1997-09-23|4-NOT SPECIFIED|Clerk#000003911|0|he furiously unusual braids. blithely fluffy packages a| +16782|238318|F|216539.23|1993-10-07|3-MEDIUM|Clerk#000003554|0|es. furiously special pains nag carefully along th| +16783|405949|O|25883.65|1995-07-26|2-HIGH|Clerk#000000713|0|g carefully blithely regular pinto beans. slyly | +16808|9769|F|180345.22|1993-12-16|5-LOW|Clerk#000000756|0| accounts sleep ironic, regular re| +16809|657124|O|148474.52|1997-08-07|2-HIGH|Clerk#000001449|0|tithes serve furiou| +16810|512734|O|140459.84|1996-05-22|2-HIGH|Clerk#000003132|0|uriously final pains. express, special requests t| +16811|749080|O|46709.46|1997-02-25|4-NOT SPECIFIED|Clerk#000000908|0|r ideas sleep except the regular requests. bold accounts haggle furiously| +16812|279817|F|58041.75|1994-03-13|4-NOT SPECIFIED|Clerk#000000901|0|eep furiously among the fluffily ironic asymp| +16813|358393|F|185272.05|1993-01-28|1-URGENT|Clerk#000001788|0|s. ironic pinto beans sleep fluffily after the furiously unusual dugouts. blit| +16814|227554|O|167809.58|1997-06-10|3-MEDIUM|Clerk#000004149|0|ronic foxes. slyly express excuses above the sometimes ironic instructi| +16815|229807|O|281012.29|1998-07-09|5-LOW|Clerk#000001746|0|kages are. blithely final packages use caref| +16840|587372|O|126419.19|1998-07-23|2-HIGH|Clerk#000002859|0|uffily enticingly regular exc| +16841|459845|O|108334.95|1997-12-12|3-MEDIUM|Clerk#000001179|0|t according to the foxes. request| +16842|606767|O|167324.40|1996-06-24|3-MEDIUM|Clerk#000001910|0| furiously unusual packages cajole blithely whithout the fluff| +16843|175217|O|78333.00|1998-01-15|3-MEDIUM|Clerk#000000766|0|ges-- quickly final ideas about the slyly| +16844|366643|F|226181.66|1992-01-09|4-NOT SPECIFIED|Clerk#000003213|0|requests. fluffily final pinto beans atop the bold ideas cajo| +16845|137263|F|282415.46|1992-10-07|3-MEDIUM|Clerk#000001399|0| ironic pinto beans except the slyly final requests h| +16846|722729|O|366269.40|1996-12-15|2-HIGH|Clerk#000004569|0|efully bold ideas use. furiously ironic packages about th| +16847|652451|F|79582.53|1993-09-23|5-LOW|Clerk#000000270|0|ly regular theodolites. regular accounts cajo| +16872|739957|F|178083.35|1992-09-30|4-NOT SPECIFIED|Clerk#000001483|0|ly silent asymptotes cajole regular platelets. slyly| +16873|690710|F|233562.55|1992-04-18|4-NOT SPECIFIED|Clerk#000003861|0|ans unwind furiously slyly bold requ| +16874|249280|F|2850.38|1992-09-11|3-MEDIUM|Clerk#000003648|0|ilently above the slyly even deposits. slyly final ideas af| +16875|135190|O|226109.63|1995-06-22|4-NOT SPECIFIED|Clerk#000003872|0| foxes. regular, pending warhorses wake carefully. final, silent | +16876|376804|F|203648.56|1992-08-04|4-NOT SPECIFIED|Clerk#000001367|0|lessly carefully special packages. quickly | +16877|691621|O|247213.84|1995-08-06|5-LOW|Clerk#000002570|0|ar, final instructio| +16878|560252|F|273779.48|1993-09-09|2-HIGH|Clerk#000003820|0|pths; packages snooze carefully according to the furiously speci| +16879|653575|F|255898.59|1994-03-31|5-LOW|Clerk#000004670|0|ven packages boost furiously. pinto beans boost furiously after th| +16904|120182|O|142047.06|1996-11-07|1-URGENT|Clerk#000003418|0|ns. special, pending courts use fluffily. sometimes silent theodo| +16905|142183|O|429991.20|1998-06-24|2-HIGH|Clerk#000000381|0|luffily special deposits. furiously regular theodolites about the final| +16906|138970|F|309260.41|1995-01-29|4-NOT SPECIFIED|Clerk#000004944|0|le furiously. carefully bold p| +16907|157003|O|228129.87|1997-02-26|2-HIGH|Clerk#000004499|0| cajole blithely. ironic | +16908|234788|O|79341.74|1997-06-14|4-NOT SPECIFIED|Clerk#000003318|0|y furiously unusual excuse| +16909|322030|O|92717.33|1997-01-23|5-LOW|Clerk#000003893|0|lly ironic accounts haggle slyly. regular packages wake furiously| +16910|345545|F|11807.03|1993-03-23|1-URGENT|Clerk#000000140|0|s. unusual foxes according to the furiously final pinto be| +16911|312158|O|242561.15|1995-12-16|1-URGENT|Clerk#000001911|0|uests. fluffily bold theodolites use slowly according to the | +16936|179297|F|48333.13|1992-09-26|4-NOT SPECIFIED|Clerk#000002055|0|ns. blithely regular accounts affix; speci| +16937|682322|F|332999.42|1992-04-04|1-URGENT|Clerk#000004713|0|endencies above the pending packages nag carefully special requ| +16938|277553|F|236133.19|1995-01-09|3-MEDIUM|Clerk#000003697|0|thy, silent packages. silent theodolites after t| +16939|571004|O|229683.80|1998-07-17|5-LOW|Clerk#000004863|0|onic, sly pinto beans. quickly special sauternes poach slyly aro| +16940|609976|F|68963.40|1992-11-29|3-MEDIUM|Clerk#000002047|0| instructions sleep fluffily final theodolites. carefully | +16941|106100|O|298193.14|1995-04-30|3-MEDIUM|Clerk#000004362|0| ideas over the fluffily final packages affix ironic requests. quickl| +16942|458830|F|208776.07|1992-08-27|2-HIGH|Clerk#000000884|0|ously along the special instruction| +16943|25183|O|119249.98|1996-05-01|1-URGENT|Clerk#000000843|0| bold requests. unusual foxes haggle slyly. requests aff| +16968|225142|O|142955.05|1995-08-08|4-NOT SPECIFIED|Clerk#000001938|0|ross the furiously ironic frays. blithely express de| +16969|180889|O|136994.76|1996-11-11|3-MEDIUM|Clerk#000001830|0|ts are slyly hockey players. special, p| +16970|421469|O|100238.34|1997-06-22|3-MEDIUM|Clerk#000004701|0|y express platelets. furiously regular dolphins after the pinto beans wake| +16971|615713|P|218675.07|1995-03-09|3-MEDIUM|Clerk#000004505|0|ns. carefully unusual accounts about the ironic dolphins| +16972|534326|O|196398.13|1997-01-09|5-LOW|Clerk#000002576|0|ly regular dolphins nod even grouches. quickly ironic instructions haggle fu| +16973|654274|O|38666.23|1998-01-01|5-LOW|Clerk#000000988|0|onic packages. packages may haggle fluffily | +16974|613628|O|106975.24|1998-02-14|4-NOT SPECIFIED|Clerk#000002325|0| around the bold, regular i| +16975|731563|O|49010.74|1996-05-16|2-HIGH|Clerk#000004832|0|earls. unusual, even foxes are blithely special requests. quie| +17000|597010|O|110010.62|1997-06-26|4-NOT SPECIFIED|Clerk#000001179|0|ress bold accounts. express, regular foxes nag blithely. | +17001|418666|O|191571.68|1996-09-22|2-HIGH|Clerk#000000281|0|olites are even, ironic deposits; ideas promise. quickly| +17002|9415|F|193505.34|1994-03-02|3-MEDIUM|Clerk#000000494|0|ithely about the regular, silent courts-- special, final dep| +17003|728977|F|211612.41|1992-04-20|3-MEDIUM|Clerk#000002063|0|ounts. carefully silent warhorses integ| +17004|662803|F|46146.82|1993-06-04|2-HIGH|Clerk#000004963|0|lly ironic instructions engage across the quickly regular instructions. i| +17005|702941|F|130766.47|1992-09-10|5-LOW|Clerk#000000021|0|ts-- final deposits| +17006|318190|F|86934.43|1994-07-27|5-LOW|Clerk#000003882|0|bold, even ideas are fu| +17007|302276|O|209711.44|1998-06-24|1-URGENT|Clerk#000002281|0|oys. closely unusual foxes after the blithely ironic packages sleep blithe| +17032|590197|O|136537.14|1995-09-01|5-LOW|Clerk#000002783|0|bold requests wake quickly above the furiously pending tith| +17033|658897|O|110811.17|1995-10-12|1-URGENT|Clerk#000001953|0|blithely even ideas cajole slyly among the blithely bold| +17034|326663|O|206320.76|1997-12-10|3-MEDIUM|Clerk#000000397|0|tes integrate slyly alongside of t| +17035|212873|O|105334.53|1996-04-01|4-NOT SPECIFIED|Clerk#000001200|0| about the pinto beans sl| +17036|245194|F|142091.77|1993-10-26|1-URGENT|Clerk#000000471|0|ole slyly along the final deposit| +17037|458606|F|286376.71|1992-06-05|4-NOT SPECIFIED|Clerk#000001875|0|gle. ironic requests boost. quickly regular dinos nag f| +17038|30289|F|29379.71|1994-08-22|4-NOT SPECIFIED|Clerk#000003994|0|ickly along the packages? carefully ironic deposits haggle blithely. fluffily| +17039|538129|F|186605.98|1993-09-16|4-NOT SPECIFIED|Clerk#000004354|0|posits sleep after the| +17064|51034|F|125447.72|1994-11-08|5-LOW|Clerk#000003451|0|ajole carefully slyly regular asymptotes. unusual requests wake blithely ca| +17065|459295|F|12048.35|1994-04-17|4-NOT SPECIFIED|Clerk#000003329|0| against the ironic foxes! regular requests | +17066|340913|O|28485.96|1997-04-03|5-LOW|Clerk#000004558|0|ronic foxes sleep furiously after the final ac| +17067|470545|O|190862.42|1995-08-30|3-MEDIUM|Clerk#000001349|0| deposits are along the furiously ironic warhorses. ironically| +17068|446549|O|287683.82|1996-09-25|4-NOT SPECIFIED|Clerk#000002194|0|eodolites haggle slyly quickly regular packages. special | +17069|633200|O|133647.04|1996-06-03|1-URGENT|Clerk#000002481|0|ts. carefully regular instructions cajole slyly fluffily even| +17070|439258|O|141983.11|1998-02-23|5-LOW|Clerk#000003197|0|special dependencies. bold instructions nag blithely. fluffily final | +17071|350380|O|254702.90|1997-05-12|3-MEDIUM|Clerk#000001232|0|foxes with the fluffily regular dolphins maint| +17096|575093|F|237426.34|1992-06-16|3-MEDIUM|Clerk#000001176|0| asymptotes. carefully ironic theodolites boo| +17097|333631|F|287346.39|1995-01-13|3-MEDIUM|Clerk#000001880|0|s haggle carefully bold escapades. packages sleep fluffil| +17098|303760|F|125646.10|1995-03-05|3-MEDIUM|Clerk#000000170|0|lar asymptotes. slyly special platelets accordi| +17099|11632|O|113449.44|1997-10-08|3-MEDIUM|Clerk#000002843|0|lly pending theodolites along | +17100|470957|F|42182.38|1992-06-09|1-URGENT|Clerk#000000967|0| theodolites. furiously bold requests haggle furiously against the | +17101|614779|F|151107.74|1994-11-26|2-HIGH|Clerk#000002309|0|oxes according to the blithely silent dolphins are fluffil| +17102|585443|P|102737.35|1995-03-14|3-MEDIUM|Clerk#000000975|0|s about the slyly unusual deposits h| +17103|281188|P|159053.43|1995-03-30|5-LOW|Clerk#000000262|0|according to the bli| +17128|170258|O|46573.04|1995-10-27|3-MEDIUM|Clerk#000002011|0|uses above the slyly pending ideas hinder upon the slyly unusual d| +17129|266537|O|115748.39|1996-08-05|4-NOT SPECIFIED|Clerk#000001450|0|xcuses are after the | +17130|676553|F|177315.28|1992-05-11|4-NOT SPECIFIED|Clerk#000004672|0|ong the furiously regular pinto beans detect slyly according to the bold| +17131|62647|O|160330.39|1997-09-03|3-MEDIUM|Clerk#000001704|0| silently final theodolites above the packages ca| +17132|651929|O|50091.10|1995-09-11|3-MEDIUM|Clerk#000004651|0| regular accounts. regular | +17133|208870|O|295581.80|1995-12-28|4-NOT SPECIFIED|Clerk#000002253|0|r deposits among the even instructions sleep | +17134|469520|O|54822.64|1996-06-09|2-HIGH|Clerk#000001753|0|riously final accounts haggle? furiously bold pinto beans against t| +17135|461746|F|75315.51|1993-12-10|5-LOW|Clerk#000002020|0|lithely regular deposits nag doggedly final reques| +17160|284962|O|74731.54|1998-03-31|2-HIGH|Clerk#000003521|0| carefully blithe requests among th| +17161|579211|F|16942.39|1992-05-25|1-URGENT|Clerk#000002145|0|nal packages: blithely special theodolites wake even ideas-- furiously final p| +17162|526291|O|169181.96|1997-01-05|1-URGENT|Clerk#000001011|0|xpress accounts cajole furiousl| +17163|600679|O|182372.59|1995-10-04|3-MEDIUM|Clerk#000001350|0|lithely. deposits nag quickly blithely regular pinto beans. quickly special | +17164|596774|F|130203.45|1992-06-11|1-URGENT|Clerk#000004063|0|ged packages affix furiously even packages. quickly special pinto beans | +17165|213863|O|137574.03|1996-01-25|4-NOT SPECIFIED|Clerk#000003483|0|bout the requests sleep furiously s| +17166|380270|O|37297.24|1996-02-19|1-URGENT|Clerk#000001336|0|wake fluffily blithely pendi| +17167|447679|F|164544.27|1992-10-13|1-URGENT|Clerk#000002917|0|grate furiously against the courts. ironic instructions wake blithely sly| +17192|110101|O|147300.14|1998-04-13|4-NOT SPECIFIED|Clerk#000003674|0|osits nag. even realms haggle furiously. carefully silent requests hag| +17193|211258|O|75583.48|1995-12-09|4-NOT SPECIFIED|Clerk#000000055|0|efully bold packages wake slyly according to the sl| +17194|104812|F|121058.80|1994-07-13|2-HIGH|Clerk#000004742|0|y according to the furiously ironic din| +17195|572662|O|315759.58|1995-10-08|5-LOW|Clerk#000001552|0|ily slyly ironic pint| +17196|698914|F|170775.60|1992-07-11|4-NOT SPECIFIED|Clerk#000004345|0|y even deposits use fluffily pending decoys. carefully daring theodolites w| +17197|127517|O|229891.55|1996-01-15|4-NOT SPECIFIED|Clerk#000002127|0|olites. slyly pending theodolites bo| +17198|415546|O|92340.57|1995-10-22|1-URGENT|Clerk#000003380|0|encies haggle blithely to the carefully express requests. deposits impress f| +17199|55955|O|90254.37|1997-08-29|1-URGENT|Clerk#000000773|0|of the regular packages. ironic, unusual th| +17224|682747|O|284332.31|1996-06-19|3-MEDIUM|Clerk#000000888|0|structions about the care| +17225|669580|F|285419.19|1993-05-12|2-HIGH|Clerk#000001093|0|instructions are carefully across the regular dependencies. unusual, spe| +17226|629183|O|147624.97|1996-06-08|3-MEDIUM|Clerk#000000846|0|es. regular theodolites hang blithely regular, final| +17227|424996|F|157895.71|1994-03-04|1-URGENT|Clerk#000002938|0|equests boost slowly even instructions. furiously special asymptotes| +17228|641164|O|190676.66|1998-05-18|2-HIGH|Clerk#000002827|0|n packages. ironic instructions promise slyly | +17229|12619|O|196876.07|1998-06-29|5-LOW|Clerk#000001783|0|g requests. blithely special depos| +17230|560779|F|25328.84|1993-12-03|2-HIGH|Clerk#000003089|0|sly regular packages can use. fluffily final instructi| +17231|486592|F|274141.70|1993-09-14|1-URGENT|Clerk#000000279|0|l packages. furiously reg| +17256|127481|F|201480.87|1994-04-23|1-URGENT|Clerk#000003525|0|packages; even accounts nod according| +17257|559931|F|177039.41|1992-05-14|1-URGENT|Clerk#000003566|0|fluffy accounts are against the care| +17258|497488|F|161675.40|1993-04-09|2-HIGH|Clerk#000001759|0|e fluffily. blithely bold deposits cajole quickly foxes. even depths are | +17259|248410|F|126650.79|1993-11-07|4-NOT SPECIFIED|Clerk#000001207|0|ins. slyly regular accounts sleep across the blithely pending req| +17260|499060|F|200077.39|1995-03-05|4-NOT SPECIFIED|Clerk#000001537|0|ggle alongside of the carefully final pinto beans. blithely ir| +17261|434393|O|81419.29|1997-08-24|2-HIGH|Clerk#000001782|0| even, regular instructions. regular foxes are a| +17262|339458|O|209136.32|1996-05-10|5-LOW|Clerk#000003852|0|y along the furiously ironic pinto | +17263|19954|O|175170.56|1995-07-24|4-NOT SPECIFIED|Clerk#000000641|0|sentiments along the even i| +17288|112246|O|31362.99|1995-07-21|3-MEDIUM|Clerk#000004179|0|ans are furiously alongside of the caref| +17289|255775|O|168075.13|1996-04-08|4-NOT SPECIFIED|Clerk#000001627|0|ending requests along t| +17290|531937|F|298748.18|1994-12-03|2-HIGH|Clerk#000003591|0|s deposits doze slyly. quick| +17291|257347|O|257811.87|1997-08-14|1-URGENT|Clerk#000002745|0|pecial deposits. even t| +17292|721790|O|196902.05|1995-08-29|5-LOW|Clerk#000002184|0|t the unusual ideas. fluffily pending instructions snooze slyly. furious| +17293|610298|F|90125.08|1993-02-10|4-NOT SPECIFIED|Clerk#000003486|0|r notornis breach. final instructions against the quic| +17294|265282|O|265438.84|1996-04-17|2-HIGH|Clerk#000003641|0| cajole slyly even deposits; express instructions wake about t| +17295|570913|O|241378.20|1996-12-25|3-MEDIUM|Clerk#000002824|0|ully express dependencies are among the furiously ironic | +17320|571309|O|245181.92|1996-10-10|5-LOW|Clerk#000001255|0|r deposits against the always special request| +17321|461182|O|208010.40|1996-08-23|4-NOT SPECIFIED|Clerk#000000288|0|lar deposits haggle fur| +17322|574682|O|317629.99|1996-05-11|1-URGENT|Clerk#000003772|0| above the furiously special platelet| +17323|179921|O|41237.98|1997-12-19|2-HIGH|Clerk#000004993|0| slyly. instructions are carefully pending foxes. i| +17324|669883|F|157995.18|1993-01-13|5-LOW|Clerk#000004708|0|requests haggle fluffily. furiously enticing packages detect fluffily; fina| +17325|445376|F|132334.13|1994-07-13|3-MEDIUM|Clerk#000003769|0|er the pending, ironic asymptotes. quickly final| +17326|426400|O|289781.34|1998-07-02|2-HIGH|Clerk#000004267|0|ng to the slyly silent accounts | +17327|222946|F|8790.30|1992-02-15|5-LOW|Clerk#000002003|0|lyly special requests. carefully b| +17352|21290|O|113999.45|1996-08-27|5-LOW|Clerk#000000990|0|cial notornis along the instructions cajole furiously quickly | +17353|63586|O|77959.65|1995-08-21|2-HIGH|Clerk#000003888|0|ess packages sleep around the bold dinos. s| +17354|663442|F|209250.95|1992-05-31|5-LOW|Clerk#000004758|0|y pending deposits lose except the ironic| +17355|213106|O|211820.55|1998-01-20|3-MEDIUM|Clerk#000001109|0|counts. silently fin| +17356|394480|O|112702.80|1995-07-11|2-HIGH|Clerk#000004383|0|kages dazzle always never special dep| +17357|24451|F|274312.20|1993-03-13|2-HIGH|Clerk#000002771|0|telets boost carefully blithe foxes. bravely final deposit| +17358|675235|F|196602.01|1993-07-17|1-URGENT|Clerk#000001177|0|fully ironic asymptotes. | +17359|406117|F|271370.37|1994-12-22|5-LOW|Clerk#000000195|0|e ironic theodolites. foxes are| +17384|608318|F|69319.78|1993-12-05|2-HIGH|Clerk#000001241|0|ccording to the frets. carefully regular deposits sleep blith| +17385|735683|O|210387.01|1997-04-25|3-MEDIUM|Clerk#000001097|0|nst the packages are furiously regular requests. b| +17386|109543|O|8427.84|1998-07-26|2-HIGH|Clerk#000004710|0|are blithely across the carefully pendi| +17387|584959|O|74980.96|1997-06-29|5-LOW|Clerk#000000909|0|ndencies hinder against the requests. regular, special requests about | +17388|388874|O|49823.35|1995-11-26|2-HIGH|Clerk#000000391|0|ully quickly ironic requests. furiously ironic accounts haggle slyly| +17389|300262|O|45368.58|1995-09-11|1-URGENT|Clerk#000001174|0| finally regular pl| +17390|474190|F|315183.54|1995-01-23|1-URGENT|Clerk#000000003|0|ly above the quiet, bold accounts; carefully even i| +17391|182791|F|231271.54|1995-02-06|2-HIGH|Clerk#000000443|0|even platelets along the slyly even accounts boost slyly even requests. i| +17416|161437|O|295143.82|1996-09-15|2-HIGH|Clerk#000004809|0|fully special deposits | +17417|497468|F|143071.35|1992-06-01|3-MEDIUM|Clerk#000004393|0|ng accounts above the quickly special packages haggle furio| +17418|686782|O|120278.65|1996-03-22|2-HIGH|Clerk#000001023|0|ial theodolites are re| +17419|243181|O|22526.77|1996-10-18|4-NOT SPECIFIED|Clerk#000003019|0|ng the slyly unusual platelets lose qui| +17420|369478|O|144443.08|1996-07-25|4-NOT SPECIFIED|Clerk#000002070|0|s are carefully among the slyly express| +17421|537832|O|156920.43|1998-06-21|2-HIGH|Clerk#000004231|0|posits sublate carefully regula| +17422|310480|O|103992.73|1998-02-11|5-LOW|Clerk#000000397|0| slyly. final accounts boost furiously theodolites. instructions| +17423|454844|F|203111.48|1994-10-31|4-NOT SPECIFIED|Clerk#000001160|0|nto beans. regular, regular notornis wak| +17448|556768|O|240712.86|1995-10-25|1-URGENT|Clerk#000003908|0|he slyly regular requests are permanent, pending | +17449|586073|O|299094.46|1996-09-18|5-LOW|Clerk#000001573|0|eans wake after the slyly regular | +17450|372709|O|94267.75|1998-03-24|2-HIGH|Clerk#000002089|0|ar requests haggle accounts. foxes wake in place of the carefully ex| +17451|87406|F|62969.03|1992-10-28|5-LOW|Clerk#000004201|0|carefully pending asymp| +17452|516328|F|88206.07|1993-07-12|1-URGENT|Clerk#000002246|0|otornis haggle. carefully silent f| +17453|403886|O|242633.94|1998-01-31|4-NOT SPECIFIED|Clerk#000004336|0|es alongside of the final, p| +17454|608245|F|27969.07|1994-12-10|4-NOT SPECIFIED|Clerk#000003992|0|lly unusual ideas detect across | +17455|246298|O|59555.30|1997-02-13|5-LOW|Clerk#000001221|0|ts thrash quickly unus| +17480|252529|O|89370.03|1997-06-21|5-LOW|Clerk#000000570|0|uickly final accounts hag| +17481|737234|F|194518.86|1994-10-09|3-MEDIUM|Clerk#000004961|0|ly ironic theodolites use somas. pending requests wake always after | +17482|689320|O|45644.17|1997-06-12|1-URGENT|Clerk#000003934|0|dolites use permanently around the slyly even pinto| +17483|147352|O|176455.25|1997-06-03|1-URGENT|Clerk#000004211|0|arefully: pending deposits sleep stealthily furiously regular de| +17484|42703|F|133387.17|1993-09-01|3-MEDIUM|Clerk#000000161|0|olve blithely against the slyly final ideas. even, final courts | +17485|685606|F|79457.11|1994-12-22|5-LOW|Clerk#000001527|0|e carefully carefully permanent depos| +17486|725158|F|239430.99|1994-03-31|2-HIGH|Clerk#000003848|0|oss the unusual accounts. asymptotes haggle slyly. unusual, regular pinto | +17487|198817|O|177284.92|1997-08-22|4-NOT SPECIFIED|Clerk#000003561|0|y against the regular courts. regu| +17512|236108|F|103678.79|1993-10-06|3-MEDIUM|Clerk#000002632|0|silent requests nag bli| +17513|8314|F|199871.77|1994-10-10|4-NOT SPECIFIED|Clerk#000000873|0|t furiously silent requ| +17514|212942|F|210818.01|1995-01-04|4-NOT SPECIFIED|Clerk#000002586|0|rts according to the theodolites haggle blithely ent| +17515|657880|F|34143.38|1994-01-18|4-NOT SPECIFIED|Clerk#000002077|0|ns among the slyly regular multipliers detect quic| +17516|462412|F|181976.27|1993-06-27|2-HIGH|Clerk#000004927|0|ong the slyly regular dugouts. requests according to the final asymptotes| +17517|256954|O|140975.66|1996-10-19|2-HIGH|Clerk#000000650|0| blithely to the regular, bold accounts. furious| +17518|101726|F|186083.88|1992-08-19|3-MEDIUM|Clerk#000002426|0|ggle slyly. bold instructions wi| +17519|451823|O|152826.15|1997-10-31|3-MEDIUM|Clerk#000002407|0|lyly regular pinto beans. quickly special packages haggle s| +17544|36016|F|185860.03|1994-11-30|3-MEDIUM|Clerk#000004062|0|en requests about the ironic orbits snooze furiously above the slyl| +17545|39098|F|130380.05|1992-03-16|5-LOW|Clerk#000001541|0|osits was about the pending deposits. accounts boost carefully. final | +17546|112883|F|182610.97|1993-12-27|3-MEDIUM|Clerk#000003570|0|the fluffily final asymptotes sleep arou| +17547|470600|F|23024.40|1993-09-26|5-LOW|Clerk#000000616|0|arefully regular accounts brea| +17548|609821|O|367659.54|1997-06-18|1-URGENT|Clerk#000000097|0|he regular, express requests sleep blithely carefully even pin| +17549|507890|O|4561.06|1997-05-24|1-URGENT|Clerk#000000466|0|. furiously silent excuses nag slyly slyly express requests. foxe| +17550|346615|F|41099.56|1992-05-30|1-URGENT|Clerk#000001715|0|. slyly ironic ideas across the regularly pe| +17551|286912|O|191943.93|1997-05-10|3-MEDIUM|Clerk#000004618|0| cajole slyly across the unusual theodolites. final requests ar| +17576|366370|F|176570.48|1992-07-29|3-MEDIUM|Clerk#000003168|0|regular theodolites sleep carefully alongside of the| +17577|64261|F|146205.90|1993-02-10|2-HIGH|Clerk#000000688|0|lar pinto beans han| +17578|22354|F|60781.70|1993-07-12|2-HIGH|Clerk#000000112|0|ges wake quickly? blithely bold theodolites detect furious| +17579|673456|O|198766.22|1998-07-11|1-URGENT|Clerk#000003524|0| ironic accounts; blithely unusual dependencies besides the final packag| +17580|507323|F|282135.36|1994-04-09|5-LOW|Clerk#000001118|0|ously bold, final theodolites. ironic escapades grow quickly ex| +17581|564520|O|23424.49|1998-01-28|2-HIGH|Clerk#000003197|0|s. carefully regular pi| +17582|363994|O|177684.22|1996-12-25|5-LOW|Clerk#000001205|0|ly slyly regular deposits. slyly regular packages since the slyly p| +17583|636623|F|118268.97|1995-01-30|5-LOW|Clerk#000000572|0| dependencies sleep furiously furiously bold packages.| +17608|220685|F|136788.26|1992-02-02|3-MEDIUM|Clerk#000001849|0|al ideas sleep above the slyly | +17609|296615|O|7098.01|1997-06-26|4-NOT SPECIFIED|Clerk#000000928|0|above the blithely regular theodolites! carefully express deposits| +17610|708304|F|197344.88|1993-11-11|2-HIGH|Clerk#000000839|0|es: final instructions detec| +17611|455183|O|182754.48|1996-03-07|1-URGENT|Clerk#000000331|0|he furiously regular foxes-- bravely regular platelets haggle carefully along| +17612|248068|F|200122.33|1994-03-28|3-MEDIUM|Clerk#000002970|0|ggle slyly. pending, bold asymptotes against the ideas boost daringly fluffily| +17613|23692|O|88919.45|1996-07-27|5-LOW|Clerk#000000763|0| theodolites: quickly regular | +17614|662785|O|104075.03|1997-12-01|3-MEDIUM|Clerk#000000121|0|even theodolites integrate carefully regular requests; fluffily | +17615|399415|O|17818.27|1996-09-12|3-MEDIUM|Clerk#000000740|0| above the carefully ironic ideas. regular packages integrate a| +17640|453922|F|189165.14|1993-07-01|2-HIGH|Clerk#000001303|0|g, express pinto beans wake across th| +17641|38869|O|43851.38|1997-01-30|4-NOT SPECIFIED|Clerk#000000596|0|arefully pending dolphins. furiously regular packages cajole. dogged, iro| +17642|741454|P|210518.34|1995-02-27|2-HIGH|Clerk#000002677|0|ages. slyly regular accounts according to the requests cajole blithely| +17643|363512|O|146619.05|1995-10-14|1-URGENT|Clerk#000002471|0| ironic platelets are quickly about the furiously bo| +17644|42019|O|277109.97|1995-09-12|3-MEDIUM|Clerk#000004672|0|lar packages. carefully bold waters are. slyly brave pinto beans i| +17645|455044|O|119468.76|1997-08-24|4-NOT SPECIFIED|Clerk#000001630|0|dle ruthlessly about the final, regular forges. bold p| +17646|174313|O|103398.26|1998-05-27|4-NOT SPECIFIED|Clerk#000000700|0|g slyly among the carefully unusual dolphins. caref| +17647|145747|F|130697.65|1993-01-03|2-HIGH|Clerk#000002780|0|lithely special instructions integr| +17672|53051|F|93188.93|1992-01-21|3-MEDIUM|Clerk#000001870|0|ickly regular instructions; co| +17673|618808|F|169245.64|1995-01-13|4-NOT SPECIFIED|Clerk#000003395|0|across the slyly final foxes. quickly ruthless pinto beans sh| +17674|35584|O|122087.15|1998-07-24|4-NOT SPECIFIED|Clerk#000004503|0|ar pinto beans cajole blithely about the carefully regular requests| +17675|295759|O|316596.16|1996-08-09|4-NOT SPECIFIED|Clerk#000000456|0|ily about the final accounts-- bold packag| +17676|548038|F|349584.42|1994-05-19|2-HIGH|Clerk#000000190|0|efully ironic accounts about the s| +17677|94684|F|121228.71|1994-10-26|3-MEDIUM|Clerk#000001431|0|packages sleep slyly against| +17678|598801|F|227802.14|1994-04-16|3-MEDIUM|Clerk#000004154|0|lithely regular accounts boost slyly over the blithely speci| +17679|532213|O|227014.19|1997-02-02|4-NOT SPECIFIED|Clerk#000002131|0| even deposits x-ray. final, even requests are. | +17704|384352|F|72668.45|1995-01-02|3-MEDIUM|Clerk#000004477|0|ly regular packages. blithely unusual excuses nag blithely s| +17705|32905|F|209028.58|1992-02-06|3-MEDIUM|Clerk#000002901|0|eas are fluffily after the even, even foxes. slyly silent theodolites detect| +17706|266017|O|67713.31|1997-03-08|3-MEDIUM|Clerk#000000412|0|ronic packages. carefully even accounts against the quick, fina| +17707|183826|O|133488.53|1997-01-16|4-NOT SPECIFIED|Clerk#000002436|0|n ideas wake blithely always special requests. slyly| +17708|291041|F|14182.09|1993-12-21|3-MEDIUM|Clerk#000000238|0|ven theodolites haggle furiously final foxes. regula| +17709|24979|O|46816.99|1995-06-28|3-MEDIUM|Clerk#000003988|0|after the fluffily ironic package| +17710|567601|O|49542.87|1996-03-21|2-HIGH|Clerk#000001251|0|aggle furiously final packages. furiously even instructions use fluffily even | +17711|397348|O|35920.88|1995-09-13|3-MEDIUM|Clerk#000001595|0|play carefully after the carefully even ideas. silent, ex| +17736|220126|O|67512.83|1998-02-01|1-URGENT|Clerk#000003713|0|ly fluffily unusual foxes! slyly unusual platelets wake furiously am| +17737|652813|O|18075.88|1996-09-16|2-HIGH|Clerk#000001744|0|the furiously silent requests are blithely pending theodo| +17738|58103|F|76987.39|1992-01-25|1-URGENT|Clerk#000004981|0|tructions. quickly regular packag| +17739|21481|O|318314.34|1996-05-01|3-MEDIUM|Clerk#000003760|0|uriously bold accounts sleep. excuses wake| +17740|252325|F|247593.96|1994-07-15|5-LOW|Clerk#000001351|0|refully regular accounts doubt. ideas sleep slyly. e| +17741|295039|O|172387.94|1996-07-11|2-HIGH|Clerk#000003584|0|. blithely unusual deposits was fluffily. even deposits at th| +17742|456455|O|255695.27|1998-02-18|4-NOT SPECIFIED|Clerk#000004638|0|ests integrate slyly furiously regular pearls. carefully final requests dete| +17743|625643|F|267034.04|1995-01-14|2-HIGH|Clerk#000003577|0|ts. slyly express sheaves cajole alongside of the blithely even accoun| +17768|177017|O|139013.52|1997-03-11|1-URGENT|Clerk#000004129|0|long the slyly ironic pearls. slyly regular accounts use furiously| +17769|616057|O|258518.97|1998-04-15|2-HIGH|Clerk#000000365|0|. slyly unusual foxes hang| +17770|291086|F|279494.39|1992-07-28|2-HIGH|Clerk#000000721|0|wake. regular, regular deposits | +17771|23951|O|106763.40|1997-04-16|1-URGENT|Clerk#000000070|0|ding, pending pinto beans among the expr| +17772|536620|O|112003.09|1997-08-15|1-URGENT|Clerk#000004689|0|packages thrash. instructions for the blithely bold deposits sleep| +17773|193274|F|251012.56|1993-07-15|5-LOW|Clerk#000004216|0|ongside of the regular packages. slyly unusual ideas abou| +17774|99776|O|89396.10|1997-12-07|4-NOT SPECIFIED|Clerk#000000862|0|ng the carefully regular dugout| +17775|678283|F|340739.31|1993-07-13|5-LOW|Clerk#000002684|0| around the express, ironic courts boost fluffily furiously regular p| +17800|623795|O|153956.02|1997-01-20|5-LOW|Clerk#000002268|0|leep blithely furiously iro| +17801|620686|F|30244.06|1994-12-14|3-MEDIUM|Clerk#000003738|0|arefully carefully ironic| +17802|87431|O|18515.39|1996-09-02|1-URGENT|Clerk#000002061|0|aters sublate evenly furiously i| +17803|192133|O|223267.32|1997-10-31|2-HIGH|Clerk#000001727|0|ounts are about the ac| +17804|414557|O|267374.54|1997-10-29|5-LOW|Clerk#000004700|0|fluffily. carefully express asymptotes poach quickly above the furiously reg| +17805|699206|O|107972.25|1997-03-03|5-LOW|Clerk#000002111|0|the carefully final| +17806|544699|F|43127.83|1992-04-12|2-HIGH|Clerk#000002869|0|thely regular requests are! bravely spe| +17807|253231|F|307699.12|1993-03-26|1-URGENT|Clerk#000001825|0|arls promise furiously. blithely ironic pinto beans boost | +17832|540205|O|233471.84|1995-07-29|4-NOT SPECIFIED|Clerk#000000527|0|ymptotes are fluffily a| +17833|472232|F|157997.31|1992-10-28|1-URGENT|Clerk#000001655|0|ake boldly careful platelets| +17834|300571|F|81427.94|1995-03-15|1-URGENT|Clerk#000001103|0|g furiously bold requests. express, final foxes haggle aga| +17835|432607|F|138607.04|1994-05-19|5-LOW|Clerk#000002916|0|ly even warhorses. furiously regular packages against the slyly regular requ| +17836|304649|O|102409.91|1998-04-26|2-HIGH|Clerk#000003478|0|r accounts: carefully express pinto beans cajole| +17837|730936|O|35097.62|1997-11-15|1-URGENT|Clerk#000000612|0|. unusual dolphins detect beneath the instruc| +17838|575663|O|227303.58|1997-03-21|1-URGENT|Clerk#000000981|0|ess pinto beans. instructions are against| +17839|152212|O|147823.07|1995-12-29|4-NOT SPECIFIED|Clerk#000000901|0|ending requests haggl| +17864|705845|O|45568.26|1998-01-25|2-HIGH|Clerk#000003204|0|s haggle. unusual, ironic| +17865|373390|F|208768.34|1993-06-29|4-NOT SPECIFIED|Clerk#000004335|0| slyly pending ideas. court| +17866|291448|F|199028.43|1992-03-09|4-NOT SPECIFIED|Clerk#000000749|0|ly even packages. blithely regular accounts promise carefully at the | +17867|101377|O|132141.22|1996-08-04|5-LOW|Clerk#000002667|0|e regular, brave dinos. bold request| +17868|588322|F|158244.10|1992-06-20|5-LOW|Clerk#000003772|0|lar packages. slyly bold dugouts boost among the ironic packag| +17869|655330|F|279073.38|1993-05-19|2-HIGH|Clerk#000001626|0|iously ironic sheaves after the ironic requests wa| +17870|354019|O|200803.80|1996-08-23|1-URGENT|Clerk#000001137|0|ove the fluffily ironic braids are accordi| +17871|236684|F|302982.29|1995-03-01|3-MEDIUM|Clerk#000004840|0|ons use carefully; slyly ironic requests haggle slyly. regular asymptotes arou| +17896|688673|F|289661.13|1992-04-19|4-NOT SPECIFIED|Clerk#000001119|0|elets haggle busily| +17897|520603|F|91759.05|1994-01-24|3-MEDIUM|Clerk#000000513|0|al requests sleep carefully. slyly silent requests could | +17898|263750|O|267442.04|1995-10-11|2-HIGH|Clerk#000000796|0|y pending packages engage blithely above the furious| +17899|338750|O|212231.10|1998-07-14|3-MEDIUM|Clerk#000003905|0| final deposits mold carefully. final, pending fo| +17900|108428|F|103241.09|1993-04-14|1-URGENT|Clerk#000000492|0| blithely regular foxe| +17901|584443|O|50505.85|1997-08-03|1-URGENT|Clerk#000002743|0| the packages. blithely even depos| +17902|728935|O|205857.85|1997-02-21|3-MEDIUM|Clerk#000000082|0| asymptotes believe blithely furi| +17903|685378|F|84827.56|1993-10-17|5-LOW|Clerk#000004132|0|nding, even packages along the slyly final requests are fina| +17928|640337|O|28134.75|1996-02-29|5-LOW|Clerk#000003494|0|ades. even foxes cajole carefully. unusual asymptotes haggl| +17929|392617|O|226179.27|1997-07-03|4-NOT SPECIFIED|Clerk#000001422|0|nic ideas grow blithely inside the carefully regular requests| +17930|201103|F|226814.36|1992-04-24|5-LOW|Clerk#000004562|0|lithely unusual instructi| +17931|406123|F|82879.06|1994-05-15|5-LOW|Clerk#000000179|0|ses cajole blithely quickly ironic pa| +17932|692584|F|207695.09|1992-06-11|2-HIGH|Clerk#000003594|0|mise furiously; enticingly | +17933|253048|P|129116.88|1995-04-22|2-HIGH|Clerk#000002127|0|ent, final accounts nag quickly bold requests. pinto beans cajole carefully. | +17934|462047|O|207151.11|1998-07-22|4-NOT SPECIFIED|Clerk#000000373|0|gular pinto beans cajole alongside of | +17935|120929|F|116582.71|1993-12-01|3-MEDIUM|Clerk#000004279|0|s sleep unusual accounts. silently even dolphins are carefully furiously iro| +17960|693719|F|127874.62|1993-02-05|1-URGENT|Clerk#000000483|0| the blithely special pack| +17961|583820|O|251280.34|1997-12-02|4-NOT SPECIFIED|Clerk#000001555|0|old forges. ironic, enticing foxes use carefull| +17962|3572|F|97878.40|1993-06-12|4-NOT SPECIFIED|Clerk#000003360|0|fluffily carefully regular deposits. slyly ironic ideas haggle s| +17963|19198|F|57304.10|1992-03-20|3-MEDIUM|Clerk#000000996|0|quests. blithely pending requests detect slyly carefully special pinto| +17964|145838|F|315752.47|1993-01-26|2-HIGH|Clerk#000003996|0|l accounts nag in place of the foxes? regular pa| +17965|85879|F|38862.85|1993-01-09|3-MEDIUM|Clerk#000004075|0|foxes. requests wake slyly above the r| +17966|353651|O|116808.66|1995-09-16|3-MEDIUM|Clerk#000001902|0|iously-- fluffily even accounts boost slyly o| +17967|49258|O|159549.64|1998-04-13|3-MEDIUM|Clerk#000003672|0|ic platelets are among th| +17992|623359|F|232488.03|1993-07-27|5-LOW|Clerk#000002109|0|ses nag among the slyly special foxes. thinly regular excuses sleep | +17993|25745|F|130149.71|1993-11-04|1-URGENT|Clerk#000002215|0|ic pinto beans. instructions haggle quickly regular, even noto| +17994|681904|F|135343.09|1993-03-02|2-HIGH|Clerk#000003055|0|e quickly furiously enticing| +17995|736826|O|95688.31|1998-08-01|5-LOW|Clerk#000004509|0|thely final foxes sleep always quickly bold| +17996|572186|P|172435.01|1995-04-12|1-URGENT|Clerk#000001147|0| deposits eat quickly across the slyly final foxes. platelets haggle fluff| +17997|222445|O|243326.21|1998-03-18|5-LOW|Clerk#000004358|0|y alongside of the blithely ironic asymptotes! somet| +17998|609019|O|165709.67|1997-09-04|3-MEDIUM|Clerk#000003168|0|ly unusual packages. express deposits wake fur| +17999|527777|O|245162.32|1996-06-08|2-HIGH|Clerk#000002342|0|l, special requests impress furiously slyly even instructions. blithely ironi| +18024|87814|P|220590.15|1995-06-08|3-MEDIUM|Clerk#000000322|0|slyly even accounts. pending, ironic theodolites use furiously sp| +18025|635680|F|75549.50|1995-05-06|2-HIGH|Clerk#000000672|0|sh furiously past the requests. slyly regular dependenci| +18026|119758|O|27152.33|1998-03-01|5-LOW|Clerk#000004098|0| furiously final requests. | +18027|506036|O|113386.40|1995-07-18|3-MEDIUM|Clerk#000003249|0|luffily; slyly regular platelets are quickly. ex| +18028|681439|F|171946.57|1993-08-15|3-MEDIUM|Clerk#000004991|0|ously about the ideas. daring deposits haggle fluffil| +18029|429383|O|25383.03|1997-07-23|1-URGENT|Clerk#000004370|0|into beans print fluffil| +18030|125299|F|198654.24|1993-10-25|1-URGENT|Clerk#000004784|0| after the quickly regular frays. regularly even acco| +18031|642820|F|184246.64|1993-12-26|4-NOT SPECIFIED|Clerk#000003483|0|fully permanently ironic requests. bold instructions | +18056|107777|O|86990.21|1997-05-11|3-MEDIUM|Clerk#000003254|0|inal instructions acc| +18057|154738|F|15927.12|1992-03-08|3-MEDIUM|Clerk#000000705|0|odolites. fluffily regular requests so| +18058|399538|O|2716.54|1997-05-17|1-URGENT|Clerk#000001186|0|e finally against the slyl| +18059|285109|F|124811.93|1993-08-15|1-URGENT|Clerk#000004460|0|ly. furiously final packages against the sauternes haggle atop the p| +18060|67492|O|80949.07|1997-11-10|5-LOW|Clerk#000000348|0|lly regular accounts wake furiously about the slowly even accounts. furi| +18061|308732|O|256700.85|1996-05-01|1-URGENT|Clerk#000001045|0|its are along the final, iron| +18062|356593|F|174683.83|1993-09-01|2-HIGH|Clerk#000002234|0|ress deposits cajole slowly slyly quick foxes. silent deposits boos| +18063|5792|F|48368.29|1992-11-12|1-URGENT|Clerk#000001624|0|e furiously bold packages cajole fluffily above the express pinto beans| +18088|581873|O|141888.83|1996-03-16|1-URGENT|Clerk#000002870|0|across the ironic theodolites. ironic, bold requests boost pend| +18089|278656|O|132167.32|1996-04-09|5-LOW|Clerk#000000017|0|ies. slyly express ideas haggle blithely even foxes| +18090|351256|F|24980.60|1992-05-06|1-URGENT|Clerk#000000100|0|ven deposits use furiously unus| +18091|303292|O|21459.00|1995-11-19|5-LOW|Clerk#000004538|0|always ironic packages acro| +18092|403696|O|120661.32|1995-10-09|5-LOW|Clerk#000000073|0| ironic accounts. regular accounts unwind. pending | +18093|408031|F|123015.48|1993-09-21|1-URGENT|Clerk#000002750|0|nic asymptotes-- slyly pending accounts unwind c| +18094|497419|O|252068.11|1995-09-23|4-NOT SPECIFIED|Clerk#000003565|0|furiously express, special epitaphs. quickly special asymptotes| +18095|602875|O|3332.70|1996-09-28|2-HIGH|Clerk#000000253|0|se furiously special instructions. carefully final instructions ag| +18120|10316|O|200839.39|1995-09-07|2-HIGH|Clerk#000001039|0|inal theodolites alo| +18121|116792|F|62720.70|1992-02-14|1-URGENT|Clerk#000003579|0|lyly even somas cajole carefully about the slyl| +18122|157624|F|79972.26|1993-03-12|3-MEDIUM|Clerk#000001774|0| wake blithely furiously special excuses. packages poach according to the qui| +18123|178565|O|81308.51|1998-05-19|5-LOW|Clerk#000004756|0|lithely regular asymptotes cajole | +18124|384583|F|168286.33|1994-03-31|1-URGENT|Clerk#000002433|0|, ironic foxes wake quickly. fluffy pinto b| +18125|155866|F|26823.34|1995-01-29|1-URGENT|Clerk#000001378|0|olphins. blithely regular platelets are c| +18126|621626|O|177043.64|1996-10-30|5-LOW|Clerk#000000756|0|iresias. slyly bold dinos sleep furiously special, even | +18127|161369|F|149914.84|1993-09-06|5-LOW|Clerk#000002281|0|ial, regular hockey players alongside of the carefully ironic deposits thra| +18152|124651|F|220496.40|1993-11-18|2-HIGH|Clerk#000001407|0|accounts. unusual, regular pinto beans boost furiously after the bli| +18153|236470|F|14137.86|1994-08-13|2-HIGH|Clerk#000000550|0|sleep. carefully pending| +18154|70027|F|229113.34|1992-09-03|5-LOW|Clerk#000001566|0|ar accounts wake furiously pendi| +18155|169651|F|17896.79|1992-08-19|4-NOT SPECIFIED|Clerk#000000261|0|ut the ironic accounts. slyly express asymptotes sleep carefully. furious| +18156|553348|O|254977.94|1997-06-09|4-NOT SPECIFIED|Clerk#000004724|0| slyly around the quickly pending accounts. deposits slee| +18157|111853|F|266392.31|1992-09-03|5-LOW|Clerk#000004865|0|ly pending pinto beans. carefu| +18158|401935|F|253520.73|1993-10-30|5-LOW|Clerk#000004634|0|eposits affix. accounts are. blithely final excuses| +18159|51298|P|241766.93|1995-03-28|1-URGENT|Clerk#000004654|0|iously bold instructions| +18184|397913|O|119360.18|1997-07-27|4-NOT SPECIFIED|Clerk#000004403|0|ng the fluffily ironic req| +18185|721699|F|61975.66|1994-11-06|2-HIGH|Clerk#000000349|0|le furiously alongside of the furiously regular dependencies. | +18186|578356|F|274031.12|1994-06-10|1-URGENT|Clerk#000002487|0| accounts haggle. slyly regular deposits are s| +18187|427093|O|47845.28|1996-07-29|2-HIGH|Clerk#000000085|0|against the furiously ironic deposits: furiously regul| +18188|629542|F|217416.85|1994-01-25|4-NOT SPECIFIED|Clerk#000003051|0|s. carefully express pinto beans cajole quickly furiously regu| +18189|435835|F|128558.36|1993-08-07|1-URGENT|Clerk#000000415|0|lly above the blithely even pinto beans. carefully final| +18190|569365|F|127547.83|1992-08-14|5-LOW|Clerk#000004365|0|s the fluffily regular packages. final id| +18191|34591|O|80082.98|1996-05-25|5-LOW|Clerk#000001094|0|theodolites wake furiously agains| +18216|119698|O|214204.56|1998-05-22|3-MEDIUM|Clerk#000000413|0|detect. furiously ironic pinto beans are against the furious| +18217|261337|F|10916.56|1993-11-23|5-LOW|Clerk#000004049|0|s among the final, pending packages us| +18218|287602|F|58125.14|1995-04-13|5-LOW|Clerk#000002871|0| slyly fluffily regular deposits: blith| +18219|704254|O|168583.45|1997-06-05|2-HIGH|Clerk#000002294|0|osits haggle furiously furiously final ideas. quickly unusual package| +18220|642796|F|99874.55|1992-07-11|4-NOT SPECIFIED|Clerk#000003713|0|sits was across the fluffily regular epitaphs. pending, regular p| +18221|441205|O|207463.86|1998-05-31|1-URGENT|Clerk#000000955|0|ully fluffily silent platelets. furiously ev| +18222|75772|F|386797.38|1994-06-17|5-LOW|Clerk#000003999|0|quickly special dolp| +18223|733955|O|120304.66|1995-10-23|2-HIGH|Clerk#000002409|0|e even platelets are f| +18248|329200|O|80523.70|1997-06-12|1-URGENT|Clerk#000002538|0| dazzle carefully accounts.| +18249|98938|F|15818.45|1992-12-06|3-MEDIUM|Clerk#000002655|0|ns. even, stealthy dinos sleep quickly carefully pending | +18250|72862|F|42773.73|1992-01-11|4-NOT SPECIFIED|Clerk#000000267|0|detect quickly above the slyly ironic theod| +18251|574567|O|202950.34|1996-03-06|5-LOW|Clerk#000000774|0|structions. carefully final pac| +18252|493223|F|157901.05|1993-05-05|5-LOW|Clerk#000004382|0|into beans are bold, regular warthogs. slyly| +18253|591904|F|126663.44|1993-12-24|4-NOT SPECIFIED|Clerk#000002098|0|. slyly final ideas cajole quickly: foxes haggle according to the instructions| +18254|113557|O|187123.14|1996-02-22|2-HIGH|Clerk#000004656|0| serve furiously across the carefully pending asymptotes. fur| +18255|532054|O|56618.83|1997-04-19|3-MEDIUM|Clerk#000002308|0|refully regular ideas. carefully express Tire| +18280|707909|F|24131.66|1992-12-15|3-MEDIUM|Clerk#000004727|0|s serve furiously acro| +18281|568960|O|277236.90|1996-09-15|1-URGENT|Clerk#000000445|0|cial, regular deposits. blithely bold reque| +18282|746947|O|202751.63|1996-03-10|3-MEDIUM|Clerk#000000475|0| silent requests sleep around the regular grouches. furiously ir| +18283|408335|F|175937.68|1994-04-29|4-NOT SPECIFIED|Clerk#000002950|0|ar packages. ironic dolphins use expr| +18284|383110|O|38634.11|1996-05-25|2-HIGH|Clerk#000000543|0|y even accounts? slyly special acc| +18285|159838|F|279244.43|1992-01-30|1-URGENT|Clerk#000001813|0| regular asymptotes. even requests wake blithely. regularly even depo| +18286|617359|O|203752.72|1997-12-22|2-HIGH|Clerk#000000969|0|into beans alongside of the blithely un| +18287|438635|F|293129.16|1994-02-16|4-NOT SPECIFIED|Clerk#000002678|0|cross the blithely pending pinto beans. slyly final exc| +18312|383500|F|178772.36|1992-10-18|3-MEDIUM|Clerk#000001000|0| slyly silent instructions. final theodolites boost bl| +18313|712991|F|116274.91|1994-04-23|3-MEDIUM|Clerk#000003262|0|ges. blithely ironic instructions affix i| +18314|476398|O|223502.06|1995-07-29|4-NOT SPECIFIED|Clerk#000000878|0|ainst the slyly even packages mo| +18315|559102|O|188095.06|1997-10-29|5-LOW|Clerk#000004145|0| theodolites wake after the carefully regular accounts. silent, pen| +18316|50674|F|122403.00|1993-07-22|5-LOW|Clerk#000003572|0|t the unusual, pendi| +18317|411112|O|16896.47|1997-05-28|1-URGENT|Clerk#000000340|0|ithely regular instructions are silen| +18318|530156|O|310558.44|1997-06-20|3-MEDIUM|Clerk#000003778|0| the carefully pending dept| +18319|327778|O|220776.40|1996-12-11|1-URGENT|Clerk#000001475|0|rs. blithely silent requests haggle carefully pinto beans. furiou| +18344|188524|O|309234.53|1996-06-17|4-NOT SPECIFIED|Clerk#000003637|0|ide of the blithely pending pinto beans.| +18345|509581|O|151480.56|1996-10-13|3-MEDIUM|Clerk#000001636|0| furiously ironic deposits boost furiously regular ideas. final platelets hagg| +18346|265381|F|49916.16|1994-03-19|5-LOW|Clerk#000000452|0|e fluffily after the carefully ironic packages! furiously final theo| +18347|732670|O|256813.11|1997-08-22|4-NOT SPECIFIED|Clerk#000001906|0|ide of the carefully permanent ideas. fluffily | +18348|476789|F|65972.25|1995-03-06|1-URGENT|Clerk#000002209|0|furiously even platelets after the silently ironic dependencie| +18349|378034|F|169965.13|1992-06-02|3-MEDIUM|Clerk#000000136|0|pliers nag quickly a| +18350|339895|F|38902.64|1994-05-20|2-HIGH|Clerk#000000614|0|ly along the deposits. | +18351|581906|O|100411.41|1998-01-09|1-URGENT|Clerk#000004572|0|atelets use fluffily carefully special requests. carefully | +18376|85996|O|220629.40|1998-05-21|2-HIGH|Clerk#000002839|0|even orbits past the blithely dogged | +18377|84649|F|166177.83|1993-10-03|4-NOT SPECIFIED|Clerk#000002169|0|slyly unusual accounts sleep quickly regular packages. express, expre| +18378|664003|F|292643.54|1994-12-24|2-HIGH|Clerk#000003614|0|press asymptotes wake slyly after the quie| +18379|620203|F|58119.91|1993-10-13|3-MEDIUM|Clerk#000003406|0|e carefully ironic requests. carefully regular requests are| +18380|244499|O|34625.15|1998-06-26|4-NOT SPECIFIED|Clerk#000004501|0| boost furiously across the fluffily ironic | +18381|42694|O|32213.40|1997-10-28|1-URGENT|Clerk#000000288|0|. dependencies haggle against the unusual pinto beans. slyly p| +18382|552892|F|88732.95|1992-03-26|4-NOT SPECIFIED|Clerk#000004989|0|. blithely final excuses shall have | +18383|673114|F|116836.94|1992-06-24|1-URGENT|Clerk#000003897|0|s believe blithely. slyly ironic requests unwind carefully. flu| +18408|21565|O|221733.57|1995-11-11|2-HIGH|Clerk#000000924|0| boost quickly regular packages. quickly final foxes sleep| +18409|176497|O|248783.18|1997-03-22|3-MEDIUM|Clerk#000004897|0|ntegrate slyly. carefully ironic asymptotes use. | +18410|107885|F|257531.33|1993-09-21|3-MEDIUM|Clerk#000002255|0|int on the express theodo| +18411|462541|O|78394.75|1996-05-21|5-LOW|Clerk#000000878|0| blithely bold theodolites sleep carefully agai| +18412|148799|F|82085.22|1993-08-05|3-MEDIUM|Clerk#000001745|0|eodolites wake carefully even deposits. fluffily bold packages abou| +18413|363976|O|152901.50|1995-08-11|2-HIGH|Clerk#000003167|0|ng accounts wake blithely. slyly final p| +18414|338152|F|46905.21|1995-05-10|4-NOT SPECIFIED|Clerk#000002746|0|en, final deposits above the ideas wake blithely final deposi| +18415|546943|O|52018.27|1995-07-20|1-URGENT|Clerk#000001008|0|cross the carefully express packages. regular, close requests integrate quick| +18440|465344|O|72438.15|1995-12-23|1-URGENT|Clerk#000001066|0|lly enticing packages a| +18441|32885|F|163110.83|1992-05-17|5-LOW|Clerk#000000898|0|ic deposits. slyly express packages| +18442|694241|F|173541.34|1993-08-10|3-MEDIUM|Clerk#000000640|0|quests. furiously even dependencies sleep slyly courts. special, ev| +18443|356320|O|28012.43|1997-10-04|1-URGENT|Clerk#000004981|0|s alongside of the furiously even a| +18444|644923|F|261892.35|1994-08-13|3-MEDIUM|Clerk#000004060|0|ly special packages against the regular foxes r| +18445|218794|F|296785.00|1994-12-18|2-HIGH|Clerk#000003305|0|requests. quickly ironic ideas nag around the unusual foxes. carefully even a| +18446|742210|O|214693.75|1997-09-09|1-URGENT|Clerk#000001142|0|ickly special accounts cajole even platelets. final account| +18447|304622|F|61985.04|1992-04-18|3-MEDIUM|Clerk#000004181|0| requests are blithely among the requests. caref| +18472|266014|O|95532.52|1998-02-05|3-MEDIUM|Clerk#000003204|0|press deposits integrate| +18473|139127|O|249026.59|1996-08-11|2-HIGH|Clerk#000001474|0|platelets affix fluffily about the slyly qui| +18474|545849|F|253160.83|1992-10-03|3-MEDIUM|Clerk#000003426|0|ctions detect blithely along the car| +18475|74083|F|47658.46|1993-03-07|5-LOW|Clerk#000003698|0|above the bold, ironic packages-- blithely even r| +18476|102034|F|205313.51|1994-03-25|2-HIGH|Clerk#000003803|0|al requests sleep furiously after the | +18477|380464|O|103484.14|1998-03-29|5-LOW|Clerk#000003890|0|ic, unusual dependencies are quickl| +18478|689473|O|356668.82|1997-02-16|4-NOT SPECIFIED|Clerk#000002796|0|ly around the ironic accounts. quickly regular accounts use| +18479|469249|O|178168.71|1998-07-30|5-LOW|Clerk#000003151|0|fts according to the ironic accounts are of the carefully ironic packages. th| +18504|391988|F|168943.52|1993-04-13|3-MEDIUM|Clerk#000003910|0|ar requests are carefully ironic pinto beans. ironic instructions cajole after| +18505|139882|O|142477.83|1995-12-18|5-LOW|Clerk#000000505|0|ickly final theodolites. always final acco| +18506|487522|O|36929.03|1997-03-25|2-HIGH|Clerk#000003155|0|yly final requests. ironical| +18507|18799|F|262909.11|1992-11-15|3-MEDIUM|Clerk#000003556|0|lent courts wake bl| +18508|189700|F|196793.03|1994-04-05|4-NOT SPECIFIED|Clerk#000003031|0|fully unusual requests. carefully unusual packages affix furiously fluffily fi| +18509|24811|O|195510.87|1996-05-13|2-HIGH|Clerk#000001670|0|al ideas. regular deposits try to sleep. fluffy, stealthy req| +18510|727051|F|271041.86|1994-06-27|2-HIGH|Clerk#000002593|0|nts nag. even, pending theodolites wake blithely theod| +18511|533293|F|62151.17|1992-05-24|2-HIGH|Clerk#000001766|0|ic ideas boost fluffily after the slyly regular r| +18536|540857|O|155995.94|1995-06-22|5-LOW|Clerk#000001885|0|old deposits. final deposits nag b| +18537|172031|O|177496.50|1995-10-03|1-URGENT|Clerk#000004476|0|. carefully final instructions are| +18538|70354|O|55543.43|1998-01-19|4-NOT SPECIFIED|Clerk#000000567|0|the carefully ironic | +18539|410639|F|102026.44|1992-01-09|2-HIGH|Clerk#000001422|0|ependencies doubt carefully. fluffily p| +18540|97048|F|189484.82|1992-02-02|3-MEDIUM|Clerk#000000082|0|as. furiously ironic packages are slyly express deposits. furiously reg| +18541|561511|O|234923.91|1996-05-06|5-LOW|Clerk#000004304|0|re fluffily above the ironic deposits: regular instructio| +18542|43142|F|210568.56|1992-09-30|5-LOW|Clerk#000002476|0|n, final instructions? excuses against the fur| +18543|577834|O|238637.18|1998-04-20|3-MEDIUM|Clerk#000004757|0| grow accounts. slyly express ideas wake according to the furiously| +18568|632000|F|245442.32|1992-04-16|1-URGENT|Clerk#000003727|0|. carefully express requests against the blithely even theod| +18569|521479|O|164423.12|1996-11-22|2-HIGH|Clerk#000003710|0|lly even deposits are f| +18570|742576|O|196398.32|1998-02-15|4-NOT SPECIFIED|Clerk#000004815|0| sleep deposits. regular accounts wake | +18571|464725|O|291256.13|1995-12-23|3-MEDIUM|Clerk#000004149|0| regular escapades integrate. foxes believe across the slyly final ide| +18572|100027|F|144187.16|1993-05-14|4-NOT SPECIFIED|Clerk#000000459|0|even requests are furiously blithely ev| +18573|376904|F|95611.78|1993-05-13|3-MEDIUM|Clerk#000004671|0|xpress, fluffy instructions. final, pending requests al| +18574|115423|F|87797.87|1994-05-02|4-NOT SPECIFIED|Clerk#000003692|0|e quick ideas. quickly regular platelets use quickly boldly special pinto be| +18575|402389|O|164519.98|1996-10-15|1-URGENT|Clerk#000004996|0|cajole blithely. quickly pending multiplie| +18600|197017|O|104214.29|1997-03-02|3-MEDIUM|Clerk#000003238|0|t the slyly regular asymptotes nag furiously s| +18601|747946|F|118235.44|1992-04-17|1-URGENT|Clerk#000000148|0|integrate quickly. excus| +18602|722945|O|48825.48|1996-01-24|4-NOT SPECIFIED|Clerk#000002877|0|ly even ideas nag blithely fu| +18603|533272|F|108623.06|1993-02-12|3-MEDIUM|Clerk#000002137|0|ular, special deposits haggle idly| +18604|197939|O|133449.97|1997-09-16|4-NOT SPECIFIED|Clerk#000003408|0|arefully ironic packages. accounts are| +18605|495190|F|204470.66|1992-02-15|1-URGENT|Clerk#000004656|0|ymptotes. blithely even packages are. sentiments are fluffily. blith| +18606|656458|O|64555.21|1997-04-01|3-MEDIUM|Clerk#000004879|0|lar instructions are slyly carefully regular deposits.| +18607|561121|O|330887.68|1997-01-09|3-MEDIUM|Clerk#000003536|0|blithely quiet orbits h| +18632|250964|O|102133.87|1995-08-07|1-URGENT|Clerk#000004424|0|eodolites print quickly above the | +18633|700543|F|78915.41|1993-07-08|5-LOW|Clerk#000003077|0|unwind slyly. furiously silent packages cajole carefully blithely special depe| +18634|497999|P|184392.21|1995-03-24|4-NOT SPECIFIED|Clerk#000002666|0|ideas cajole slyly slyly even deposi| +18635|611116|F|98724.84|1992-07-31|4-NOT SPECIFIED|Clerk#000001966|0|detect quickly after the slyly unusual accounts. silent, | +18636|500506|F|259449.80|1994-11-13|4-NOT SPECIFIED|Clerk#000003299|0|nding requests engage s| +18637|1225|F|120551.06|1992-09-24|4-NOT SPECIFIED|Clerk#000003270|0|s dazzle fluffily among the slyly express platelets| +18638|311425|O|77095.26|1998-01-19|4-NOT SPECIFIED|Clerk#000000186|0|kages sleep fluffily. pinto beans cajole blith| +18639|596819|P|62590.42|1995-05-21|1-URGENT|Clerk#000000728|0|xes are slyly ironic, bold deposits. quickly exp| +18664|230162|O|227024.03|1997-04-20|1-URGENT|Clerk#000002410|0|fully regular excuses use slyly above the slyly regular pinto beans. b| +18665|573952|F|196626.41|1993-04-26|3-MEDIUM|Clerk#000004304|0|inst the furiously bold platelets. final ideas maintain.| +18666|653788|F|456980.41|1992-02-13|5-LOW|Clerk#000000361|0|es are quickly alongside of the requests. car| +18667|691144|F|205791.07|1993-11-01|1-URGENT|Clerk#000004959|0|regular, pending depend| +18668|33391|P|97423.58|1995-03-19|5-LOW|Clerk#000000279|0|ermanent dinos haggle slyly across the ideas. bli| +18669|196144|F|108662.76|1992-12-06|5-LOW|Clerk#000004978|0|ole blithely. furiously ironic dependen| +18670|328646|O|298940.23|1996-01-24|2-HIGH|Clerk#000002788|0|its-- blithely fina| +18671|540505|O|54246.32|1996-02-09|4-NOT SPECIFIED|Clerk#000000903|0| regular deposits. blithely ironic depen| +18696|236854|F|210284.16|1994-12-29|1-URGENT|Clerk#000002828|0|r the furiously express deposits. requests th| +18697|533719|O|140868.38|1996-06-27|4-NOT SPECIFIED|Clerk#000003452|0|he quickly regular requests run| +18698|203119|F|193813.34|1994-12-22|2-HIGH|Clerk#000000821|0|ests. final deposits wake slyly. quickly bold acc| +18699|538277|O|147941.03|1996-01-21|3-MEDIUM|Clerk#000002608|0|doubt final requests. slyly pendi| +18700|314032|P|273175.25|1995-05-25|1-URGENT|Clerk#000001389|0|ending waters according to the slyly special excuses are furiousl| +18701|170956|F|317914.14|1993-02-16|1-URGENT|Clerk#000000858|0|uctions toward the carefully even asymptotes use qui| +18702|737338|O|98687.65|1997-10-25|5-LOW|Clerk#000000266|0|. carefully ironic theodolites haggle slyly. special pinto beans about | +18703|161344|P|300000.15|1995-04-29|1-URGENT|Clerk#000004889|0|s the furiously express theodolites detect slyly with | +18728|426686|O|14671.09|1997-12-27|2-HIGH|Clerk#000001738|0|ould wake carefully above the busy pearls. slyly special reques| +18729|559435|O|33089.58|1997-04-30|2-HIGH|Clerk#000001421|0|ges above the express deposits c| +18730|421496|O|123927.07|1997-11-08|3-MEDIUM|Clerk#000003536|0|ages. unusual theodolites haggle. unu| +18731|318062|F|327491.13|1994-10-08|2-HIGH|Clerk#000003293|0|ts nag at the boldly bold courts. blithely ironic dependencies | +18732|405406|O|132532.38|1997-02-13|1-URGENT|Clerk#000000930|0|ole bravely. quickly ironic asymptotes cajole quickly after the enticingly| +18733|630686|F|45586.37|1992-09-06|3-MEDIUM|Clerk#000000634|0|s wake carefully across the slyly final accounts. quickly final re| +18734|173953|F|179340.63|1992-08-03|2-HIGH|Clerk#000002519|0|unts are! even, regular packages cajole. furiou| +18735|112351|F|66317.87|1994-12-25|3-MEDIUM|Clerk#000003810|0|riously silent ideas mold fluffily furiously ironic deposits. carefully| +18760|500060|O|204387.76|1996-09-11|4-NOT SPECIFIED|Clerk#000002086|0|the carefully special requests. blithely regular re| +18761|3394|O|135370.36|1997-06-19|5-LOW|Clerk#000001068|0|ests. fluffily regular asymptotes are carefully deposits! foxes thra| +18762|32321|F|77222.52|1992-11-02|3-MEDIUM|Clerk#000004738|0|ffily bold packages wake qui| +18763|202642|F|129840.03|1993-04-21|1-URGENT|Clerk#000001399|0|press, final ideas cajole carefully about the fluffily even packages. caref| +18764|42802|F|208707.23|1993-07-19|4-NOT SPECIFIED|Clerk#000001197|0|ironic packages according | +18765|106016|O|9155.65|1996-09-10|3-MEDIUM|Clerk#000004052|0|ve the blithely express instructions haggle qui| +18766|545662|F|55682.92|1993-05-03|2-HIGH|Clerk#000001935|0|iet packages wake-- blithely regular accounts use along the express excu| +18767|687350|O|227403.49|1996-06-23|3-MEDIUM|Clerk#000000730|0|es? slyly silent asymptotes cajole blithely final dolphins. f| +18792|39040|O|229775.00|1998-03-17|4-NOT SPECIFIED|Clerk#000003833|0|cajole blithely. quick| +18793|634480|O|235931.17|1998-01-14|1-URGENT|Clerk#000000013|0| packages. blithely special foxes are acc| +18794|188437|F|160172.93|1993-12-12|2-HIGH|Clerk#000001428|0|in pinto beans. foxes cajole blithely. carefully sl| +18795|554974|O|207648.11|1997-12-23|1-URGENT|Clerk#000004805|0|inst the deposits are alongside of the final, bo| +18796|434960|F|162961.77|1994-10-12|1-URGENT|Clerk#000000100|0| ironic foxes detect. pending ideas haggle s| +18797|116389|O|76754.74|1995-08-31|4-NOT SPECIFIED|Clerk#000001359|0|ual deposits haggle foxes. blithely unusual deposits against the ideas | +18798|127933|O|202895.75|1996-08-06|4-NOT SPECIFIED|Clerk#000001064|0|w alongside of the special platelets. slyly unusual | +18799|642479|O|31705.25|1995-05-07|2-HIGH|Clerk#000001585|0|l warthogs. ironic, unusual asymptotes hang| +18824|390262|F|78735.04|1992-05-19|3-MEDIUM|Clerk#000003311|0|of the instructions | +18825|381298|F|78715.32|1992-08-04|5-LOW|Clerk#000002216|0|al instructions are blithely fluffily bold accounts. furiously even excuses| +18826|459436|F|89948.82|1993-03-24|2-HIGH|Clerk#000004184|0|refully. platelets kindle fluffily across the unusual ideas. express, e| +18827|474484|F|166873.67|1994-04-15|1-URGENT|Clerk#000000238|0|uctions sleep slyly. express accounts nag. regular, pending accou| +18828|626035|F|34177.85|1992-04-22|5-LOW|Clerk#000000831|0|ncies. regular, bold packages wake furiously. slyly ironic instruct| +18829|19957|F|223990.24|1994-01-20|1-URGENT|Clerk#000000841|0|ully regular instructions wake quickly slyly even deposits. quickly ironic e| +18830|147442|O|133859.70|1998-06-24|3-MEDIUM|Clerk#000001930|0|asymptotes. foxes wake ins| +18831|31207|O|227461.14|1997-04-25|3-MEDIUM|Clerk#000001751|0|old deposits wake after the carefully r| +18856|239071|O|214046.32|1997-01-08|5-LOW|Clerk#000002439|0|equests cajole. ironic pains a| +18857|306991|O|216023.34|1996-10-04|2-HIGH|Clerk#000000650|0|ul hockey players haggle about the | +18858|326056|F|130648.08|1995-02-14|3-MEDIUM|Clerk#000004468|0|xpress packages integrate. even, regular ideas haggle. | +18859|519760|O|214109.13|1998-04-13|4-NOT SPECIFIED|Clerk#000004538|0|ggle fluffily ironic deposits. pinto beans cajole slyl| +18860|324920|F|157331.78|1993-03-07|1-URGENT|Clerk#000001035|0|ed instructions snooze blithely: regular foxes according to the blithel| +18861|175544|O|200427.87|1996-02-07|1-URGENT|Clerk#000001002|0|along the ironic frets. acco| +18862|617245|F|105343.64|1994-04-08|5-LOW|Clerk#000002142|0| slyly regular accounts. slyly even asym| +18863|25135|O|63905.82|1995-07-24|1-URGENT|Clerk#000004698|0|blithely ironic foxes. furiously regular packages s| +18888|183526|F|150576.32|1992-01-23|2-HIGH|Clerk#000003818|0|es sleep quickly theodolites-- asympt| +18889|495346|F|92387.32|1994-10-21|3-MEDIUM|Clerk#000004644|0| ironic ideas nag fluffily. furiously regula| +18890|271043|F|149626.73|1994-10-07|4-NOT SPECIFIED|Clerk#000002775|0|nts. final deposits cajole furiously silent accounts. carefully ir| +18891|666157|F|279323.84|1992-09-05|3-MEDIUM|Clerk#000001560|0| dependencies. bold packages are furiously. carefully| +18892|93371|F|326584.00|1992-03-20|1-URGENT|Clerk#000003073|0|dolites cajole across the bold requests. caref| +18893|284714|O|108928.99|1997-10-29|5-LOW|Clerk#000004018|0| special foxes are slyly blithely pending platelets.| +18894|180070|O|213619.93|1997-02-11|3-MEDIUM|Clerk#000001546|0|special excuses boost into the bold, final frets. quickly regular packages| +18895|182329|F|129354.92|1994-02-26|5-LOW|Clerk#000000106|0|counts boost carefully regular ideas. quickly pending pack| +18920|633625|O|174679.09|1996-07-26|3-MEDIUM|Clerk#000000104|0|ate carefully final| +18921|52648|O|42041.81|1995-09-08|2-HIGH|Clerk#000000682|0|deposits use slyly express packages. pending foxes sleep quickly fluf| +18922|578908|O|139367.25|1995-12-01|4-NOT SPECIFIED|Clerk#000000699|0|arly regular requests. care| +18923|691339|F|168335.33|1992-02-26|3-MEDIUM|Clerk#000001735|0|yly special dependencies. accounts use carefully | +18924|303197|F|23116.67|1994-11-05|1-URGENT|Clerk#000004412|0| maintain blithely | +18925|329035|O|420990.37|1995-11-11|4-NOT SPECIFIED|Clerk#000003920|0|s. ideas cajole furiously regu| +18926|320824|F|207766.48|1993-06-09|4-NOT SPECIFIED|Clerk#000004589|0|n dependencies wake around the slyly ironic theodolites? final, ironic pe| +18927|334396|O|6876.26|1996-05-16|4-NOT SPECIFIED|Clerk#000001394|0|he regular, ironic accounts. fluff| +18952|425657|O|256154.41|1995-07-18|5-LOW|Clerk#000002256|0|ironic pinto beans print furiously according | +18953|508532|O|128545.31|1996-07-16|2-HIGH|Clerk#000001029|0|riously through the slyly unusual p| +18954|637982|O|61777.46|1996-06-15|5-LOW|Clerk#000002500|0|uffily ironic accounts. blithely regular platelets throughout the sly| +18955|554365|O|258388.05|1996-07-30|5-LOW|Clerk#000000432|0| packages may boost n| +18956|686965|O|288793.43|1997-10-04|4-NOT SPECIFIED|Clerk#000001449|0| carefully around the unusual instructions. furiously pending theodolites de| +18957|287377|O|75827.10|1998-01-04|3-MEDIUM|Clerk#000000777|0|ructions use. quickly regular braids boost carefully | +18958|662549|F|179300.72|1993-06-11|1-URGENT|Clerk#000003160|0|ose slyly quickly regular deposit| +18959|195386|F|185361.85|1992-12-26|2-HIGH|Clerk#000000593|0| according to the slyly regular packages. furiously f| +18984|347017|F|147944.31|1995-01-13|1-URGENT|Clerk#000000843|0|pecial accounts haggle sl| +18985|312496|O|200393.91|1996-07-23|1-URGENT|Clerk#000002479|0|ly blithely regular requests. blithely ironic deposits about the regular| +18986|595117|F|28692.58|1994-06-30|3-MEDIUM|Clerk#000000212|0|uffily special accounts haggle slyly according to the bravely daring pl| +18987|115786|F|28069.92|1993-07-08|3-MEDIUM|Clerk#000002839|0|final requests boost blithely. packages doubt finally sl| +18988|505601|O|124531.36|1997-05-06|3-MEDIUM|Clerk#000000969|0|ve the furiously express requests. regular dependencies| +18989|132847|O|120232.45|1996-10-31|2-HIGH|Clerk#000001811|0| slyly final requests. unusual pinto beans above| +18990|740636|P|87932.09|1995-04-20|3-MEDIUM|Clerk#000000694|0|he furiously final platelets play blithely brave packag| +18991|114710|F|268908.78|1994-12-26|3-MEDIUM|Clerk#000003190|0|to beans across the quickly unusual depos| +19016|426530|F|102093.08|1993-07-21|1-URGENT|Clerk#000001804|0|ffily final ideas. regular deposits cajole careful| +19017|178595|F|184640.80|1994-05-10|2-HIGH|Clerk#000004560|0|the carefully unusual packages. fluffily even requests | +19018|145358|O|156140.82|1995-06-29|2-HIGH|Clerk#000003041|0|tes. final packages according to th| +19019|272302|O|97460.71|1996-01-04|3-MEDIUM|Clerk#000000679|0|en, brave accounts are above the carefully regular accou| +19020|69571|F|229074.25|1992-02-23|2-HIGH|Clerk#000000018|0|ffily unusual accounts haggle furiously among the si| +19021|24254|O|283484.05|1998-03-19|2-HIGH|Clerk#000004865|0| quickly bold deposits alongside of the ironic instructions doze furiously fin| +19022|379249|F|131819.65|1993-03-16|4-NOT SPECIFIED|Clerk#000002603|0|silently final packages after the furiously express packages| +19023|529327|F|248247.75|1993-10-14|5-LOW|Clerk#000002349|0|efully. slyly permanent dependenc| +19048|616336|O|65151.34|1998-05-05|3-MEDIUM|Clerk#000000744|0|riously ironic asymptotes haggle blithely? accounts dete| +19049|507100|F|162144.27|1992-05-09|5-LOW|Clerk#000003553|0|boldly regular deposits. regular, unusual instructions detect.| +19050|564331|F|86259.83|1993-01-30|2-HIGH|Clerk#000000063|0|es about the even asymptotes cajo| +19051|191668|O|176216.13|1996-12-06|3-MEDIUM|Clerk#000004181|0|ng instructions wake blithely slyly unu| +19052|89770|F|105612.90|1994-06-11|5-LOW|Clerk#000000996|0|nusual pinto beans use! caref| +19053|481696|O|169291.71|1995-11-23|5-LOW|Clerk#000001019|0|ld accounts. slyly regular instructions haggle af| +19054|354779|O|275935.25|1996-08-10|5-LOW|Clerk#000004533|0|y ironic instructions above the fluffily express pi| +19055|268634|O|107614.32|1995-03-30|3-MEDIUM|Clerk#000002461|0|es throughout the special accounts haggle boldly about the slowly enticing | +19080|671776|O|64031.33|1998-06-05|2-HIGH|Clerk#000004486|0|nal frets: thin orbits cajole al| +19081|15661|O|24562.67|1996-09-02|1-URGENT|Clerk#000002173|0|s packages. carefully silent reque| +19082|687370|O|81914.92|1997-08-07|2-HIGH|Clerk#000004179|0|ess requests cajole slyly. carefully ironic foxes sleep requests. final | +19083|346411|F|66334.58|1993-10-31|3-MEDIUM|Clerk#000000172|0| the ironic, even requests. carefully bol| +19084|616687|F|241334.63|1992-06-08|3-MEDIUM|Clerk#000000756|0|counts sleep slyly blithe| +19085|392960|O|191732.98|1996-02-07|2-HIGH|Clerk#000000528|0|s across the slyly ironic theodolites are fluffily blithely ironic excuses.| +19086|715592|F|24545.13|1993-12-11|1-URGENT|Clerk#000003503|0|the quick, unusual packages wake carefully bold deposits. b| +19087|702250|O|61125.21|1998-07-03|2-HIGH|Clerk#000001049|0| final accounts nag quickly. carefully regular courts boost above the silent p| +19112|714733|O|208759.67|1998-07-18|5-LOW|Clerk#000003607|0|ve the blithely unusual requests. silent| +19113|496429|F|149942.34|1994-07-30|3-MEDIUM|Clerk#000004429|0|egular accounts across the even, ironic foxes run quickly slyly b| +19114|455653|F|194991.63|1992-12-12|4-NOT SPECIFIED|Clerk#000003273|0|nt braids. blithely special pinto beans since the blithely reg| +19115|657481|O|119514.90|1996-04-28|1-URGENT|Clerk#000003654|0| the slyly bold theodolites. ironic, final deposits affix. fu| +19116|526420|F|135382.29|1994-05-22|3-MEDIUM|Clerk#000001904|0|kly ironic deposits boost after the care| +19117|524152|O|333161.02|1995-07-23|4-NOT SPECIFIED|Clerk#000004406|0|ording to the even requests. fluffily bold accounts| +19118|653225|O|106825.64|1998-03-30|2-HIGH|Clerk#000004862|0|, special theodolites. regular instructions breach bravely. carefully expre| +19119|251297|F|111480.74|1993-04-29|2-HIGH|Clerk#000004901|0|inst the slyly special ideas. blithely regular instructions| +19144|296383|O|218135.91|1998-05-20|4-NOT SPECIFIED|Clerk#000002517|0|ckly dogged instructions cajole slyly. foxes x-ray always. special, pending| +19145|536330|O|354705.35|1998-06-16|1-URGENT|Clerk#000000158|0|wake above the fluffily regular packag| +19146|594175|O|123726.64|1995-06-19|3-MEDIUM|Clerk#000004740|0|express deposits. pinto beans would haggle. even requests integrate quickly f| +19147|42194|F|326510.57|1994-09-29|5-LOW|Clerk#000001766|0|the daring, pending requests promise furiously above the| +19148|393631|F|75556.36|1992-10-09|1-URGENT|Clerk#000000177|0|ccounts. bold requests cajole | +19149|746470|O|318982.06|1997-09-30|3-MEDIUM|Clerk#000001156|0|requests wake blithely across the| +19150|665084|F|205550.71|1992-06-08|1-URGENT|Clerk#000002417|0|sly ironic deposits. furiously bold platelets wake slyly quickly regular| +19151|64711|O|175459.83|1995-07-06|4-NOT SPECIFIED|Clerk#000003182|0|he special requests. blithely bold accounts wake carefully quickly special | +19176|65357|O|165266.89|1995-09-28|5-LOW|Clerk#000002699|0|egular decoys. unusual accounts cajole| +19177|438673|P|115379.73|1995-04-04|4-NOT SPECIFIED|Clerk#000001122|0|packages wake furiously accounts. fluffily special foxes wake ironic accounts| +19178|255421|O|169784.28|1997-04-19|3-MEDIUM|Clerk#000001936|0|ndencies promise after the quickly ev| +19179|580441|O|20482.31|1997-09-27|2-HIGH|Clerk#000000340|0|luffily regular dugouts are furiou| +19180|214426|O|133495.25|1996-07-08|1-URGENT|Clerk#000002434|0|ironic, pending warhorses wake slyly ironic,| +19181|77173|O|316555.28|1996-01-03|5-LOW|Clerk#000004615|0|lly across the slyly bold pinto beans. pending courts are blithely car| +19182|266003|O|298430.60|1995-10-12|3-MEDIUM|Clerk#000004888|0|tions sleep sometimes above the fl| +19183|698113|F|199848.90|1993-11-23|1-URGENT|Clerk#000003392|0|er the regular, pending dolphins. packages haggle slyly. furious, express| +19208|168823|O|50215.37|1995-07-28|4-NOT SPECIFIED|Clerk#000003977|0|cies haggle final, special excuses. accounts sleep carefully fr| +19209|142787|O|98010.51|1998-04-14|2-HIGH|Clerk#000002449|0|fully ironic braids. quickly special requests u| +19210|557590|O|155380.74|1995-06-28|3-MEDIUM|Clerk#000000983|0|lar instructions use blithely pending instructions. blithely ironic packa| +19211|146884|F|18314.79|1994-06-16|4-NOT SPECIFIED|Clerk#000003943|0|onic accounts nag into the carefully eve| +19212|412093|F|81444.66|1993-05-02|1-URGENT|Clerk#000001102|0|nal packages boost past the blithely even pinto beans. blithely even excu| +19213|524822|O|33651.36|1996-10-21|5-LOW|Clerk#000003746|0|nusual, bold accounts. regular dependencies | +19214|680276|F|254482.49|1992-03-01|2-HIGH|Clerk#000001174|0|nts nag blithely! furi| +19215|392153|O|80178.85|1997-12-18|3-MEDIUM|Clerk#000003304|0|the pinto beans. ironic requests integrate accounts. pinto beans| +19240|655357|O|144475.38|1997-09-18|3-MEDIUM|Clerk#000002314|0|ly regular packages. furiously even packages wake carefully. s| +19241|75344|F|41775.59|1992-12-15|4-NOT SPECIFIED|Clerk#000000150|0|y final ideas. carefully unusual instructions are ironic forges. finally r| +19242|304015|O|88013.55|1997-08-29|4-NOT SPECIFIED|Clerk#000001242|0|ncies. ironic foxes| +19243|569090|F|44833.62|1993-03-05|1-URGENT|Clerk#000000922|0|sual instructions wake. regular, special requests haggle b| +19244|692836|O|225334.04|1997-07-15|1-URGENT|Clerk#000004270|0|kly. even, special packages| +19245|721897|O|287438.12|1995-05-01|3-MEDIUM|Clerk#000000412|0| the fluffily quick | +19246|163088|F|19714.33|1994-09-12|2-HIGH|Clerk#000003881|0|mise despite the platelets. even, bold foxes boost fluffily regular inst| +19247|514589|F|351819.72|1992-12-30|1-URGENT|Clerk#000002922|0| blithely regular p| +19272|434572|O|119241.38|1997-08-01|4-NOT SPECIFIED|Clerk#000002527|0| requests; ironic accounts cajole fu| +19273|326560|F|247401.77|1993-04-05|1-URGENT|Clerk#000004221|0|ing theodolites cajole furiously. carefully regular pla| +19274|711977|O|69041.89|1998-02-05|5-LOW|Clerk#000000743|0|arthogs. fluffily regular platelets do are inside the furiously ironic p| +19275|690076|O|160780.19|1997-03-27|2-HIGH|Clerk#000003793|0|tructions sleep furiously regular theodolites. final,| +19276|74938|F|130913.89|1993-11-23|4-NOT SPECIFIED|Clerk#000003455|0|sly special instructions shall h| +19277|219400|F|112322.92|1995-03-09|1-URGENT|Clerk#000001864|0| nag atop the pending accounts. packages cajole special de| +19278|433693|F|73496.57|1994-09-12|4-NOT SPECIFIED|Clerk#000001143|0|al, final foxes cajole blithely among the slyly regular pin| +19279|549266|O|174247.29|1996-12-06|2-HIGH|Clerk#000000298|0|ns. regular pinto beans according to th| +19304|505366|F|121473.73|1992-11-05|2-HIGH|Clerk#000001380|0|gular, quiet asymptotes. slyly regular requests ag| +19305|673618|F|145208.36|1992-03-29|3-MEDIUM|Clerk#000004214|0|ronic packages. regular, final foxes boost. ex| +19306|226873|O|126031.34|1996-01-12|2-HIGH|Clerk#000001849|0| above the final, pending accounts. bl| +19307|38602|O|39326.18|1997-02-09|2-HIGH|Clerk#000004608|0|ccounts integrate furiously blithely regular reques| +19308|7180|O|159096.76|1997-03-17|4-NOT SPECIFIED|Clerk#000001556|0|carefully unusual pinto beans shall integrate| +19309|657040|F|96930.33|1993-01-23|5-LOW|Clerk#000004127|0|blithely furiously busy packages. instructions sleep. careful| +19310|610561|O|119015.16|1998-06-29|1-URGENT|Clerk#000003299|0|theodolites. slyly sly foxes sleep | +19311|188956|F|346351.42|1994-02-23|2-HIGH|Clerk#000004222|0|n the foxes cajole slyly quickly special deposits. slyly bold requests p| +19336|280291|F|208475.51|1993-05-20|1-URGENT|Clerk#000000839|0| final platelets according to the blithely express requests cajole silent, p| +19337|100756|F|206428.90|1992-08-31|2-HIGH|Clerk#000001113|0|refully regular requests detect after the furiousl| +19338|649300|O|213252.38|1997-05-15|1-URGENT|Clerk#000001559|0|furiously ironic deposits. daring| +19339|251983|O|116689.10|1998-01-19|1-URGENT|Clerk#000001464|0|es. pinto beans wake furiously. regular, special| +19340|573931|F|136751.04|1994-04-26|1-URGENT|Clerk#000001893|0| unusual requests solve carefully busy instructions. ca| +19341|307171|F|24457.99|1992-09-30|3-MEDIUM|Clerk#000000819|0|slyly express packages boost slyly according t| +19342|362698|F|235531.94|1993-02-24|1-URGENT|Clerk#000003623|0|ully pending packages. slyly special requests haggle | +19343|595981|O|109454.92|1997-09-14|1-URGENT|Clerk#000000818|0|tions detect furiously thinly express f| +19368|384439|F|260382.47|1992-07-18|1-URGENT|Clerk#000001118|0|zzle. carefully silent excuses since the fur| +19369|43|O|51304.89|1997-06-12|1-URGENT|Clerk#000001673|0|osits breach blithely around th| +19370|721321|F|34512.44|1992-02-11|2-HIGH|Clerk#000001455|0|ly final asymptotes after the ironic theodolite| +19371|213130|O|208288.38|1995-11-28|4-NOT SPECIFIED|Clerk#000002993|0|kages cajole daringly above the blithely regular p| +19372|53422|O|165023.32|1998-05-17|5-LOW|Clerk#000004962|0|nusual, pending accounts will unwind about the pending, silen| +19373|104072|F|160639.52|1993-07-22|5-LOW|Clerk#000003810|0|e the fluffily pending deposits| +19374|125629|F|46562.08|1995-03-21|5-LOW|Clerk#000000581|0|lar deposits hinder furiously unusual instructions. slyly final packages n| +19375|178148|F|132547.92|1993-08-14|2-HIGH|Clerk#000000979|0|. final requests lose fluffily aga| +19400|128815|F|146630.50|1994-09-02|2-HIGH|Clerk#000001404|0|ests nag permanently accounts. quickly special asymptotes lose fluffil| +19401|486347|O|148997.64|1996-03-07|4-NOT SPECIFIED|Clerk#000000149|0|breach blithely. slyly unusual pinto beans about the | +19402|523069|O|159753.62|1997-09-29|2-HIGH|Clerk#000000088|0|dencies haggle silently bold grouches. final requests nag furiously above| +19403|454429|P|178546.12|1995-04-01|2-HIGH|Clerk#000004803|0|ully furiously special foxes. slow packages are. blithely regular platelets | +19404|314848|O|91533.51|1997-03-14|2-HIGH|Clerk#000003532|0|rash furiously. car| +19405|389786|O|215230.19|1995-10-13|3-MEDIUM|Clerk#000000798|0|gular, final asymptotes detect. slyly regular accounts boost among the | +19406|628867|F|183496.08|1994-02-13|5-LOW|Clerk#000001660|0| pinto beans haggle furiously carefully unusual instructions. f| +19407|347210|O|79265.90|1995-11-02|1-URGENT|Clerk#000003758|0|ake blithely. carefully regular pinto beans nag against the frays| +19432|554960|F|166329.47|1993-06-24|1-URGENT|Clerk#000004693|0|e furiously blithely bold warhorses. ironic, ironic platelets| +19433|200744|O|207311.65|1996-07-06|3-MEDIUM|Clerk#000002201|0|ealthy deposits. carefully bold deposits print blithely regular accounts. | +19434|400771|O|147229.65|1997-06-24|1-URGENT|Clerk#000001901|0|reful platelets against t| +19435|5257|F|256260.38|1994-08-10|4-NOT SPECIFIED|Clerk#000003670|0|efully regular instructions? express foxes wake closely above| +19436|599306|O|287086.75|1997-06-04|2-HIGH|Clerk#000003020|0|into beans haggle blit| +19437|31532|O|153496.97|1995-08-10|3-MEDIUM|Clerk#000000963|0|mong the regular deposits. accounts sleep above th| +19438|449209|O|77732.47|1996-12-08|5-LOW|Clerk#000003290|0| instructions. special dependencies sleep furiously blithely regular acc| +19439|328729|F|88747.43|1994-09-28|5-LOW|Clerk#000004649|0|egular ideas along the special req| +19464|429535|O|345764.00|1998-01-19|5-LOW|Clerk#000003857|0|lithely ironic packages are furiously special excuses. requests use. carefu| +19465|412147|O|40038.75|1996-08-27|2-HIGH|Clerk#000001968|0|ording to the caref| +19466|683006|O|264035.02|1995-06-02|5-LOW|Clerk#000003756|0|l warthogs haggle fluffily slyly regular theodolites| +19467|522520|F|65672.58|1993-09-18|5-LOW|Clerk#000002026|0|lyly ironic foxes haggle carefully blit| +19468|217148|F|141786.15|1992-09-07|5-LOW|Clerk#000004725|0|ar platelets. carefully ironic accou| +19469|104641|F|160309.72|1994-09-30|4-NOT SPECIFIED|Clerk#000004906|0|efully special pains. slyly even dolphins eat even pinto b| +19470|684725|F|130484.87|1995-01-03|4-NOT SPECIFIED|Clerk#000002109|0|ic ideas. slyly even ideas against the quickly final | +19471|156436|F|291069.73|1993-10-16|2-HIGH|Clerk#000002522|0|ual accounts affix against the bl| +19496|446923|F|391278.56|1993-04-21|5-LOW|Clerk#000004091|0|lyly carefully even pac| +19497|172879|F|25826.14|1995-01-19|2-HIGH|Clerk#000000703|0|d the slyly unusual foxes. pending asymptotes mold. carefu| +19498|45775|O|261669.70|1998-06-20|1-URGENT|Clerk#000000147|0| furiously after the special deposits.| +19499|578773|F|88217.70|1994-10-28|2-HIGH|Clerk#000000132|0|sias cajole furiously after the ideas? carefully even instruc| +19500|670915|F|48406.40|1994-11-20|2-HIGH|Clerk#000003150|0|nstructions against the regular accounts are| +19501|539510|O|137339.78|1995-09-29|5-LOW|Clerk#000000178|0|st the regular, eve| +19502|41770|F|114185.19|1992-03-30|1-URGENT|Clerk#000000641|0| carefully ironic deposits solve. care| +19503|11542|O|190459.01|1998-03-20|5-LOW|Clerk#000003736|0|pecial instructions cajole carefully at| +19528|458398|O|88122.63|1998-06-26|1-URGENT|Clerk#000001739|0|oxes. pending ideas are of the deposits. furiously spe| +19529|279923|O|138046.73|1998-02-10|4-NOT SPECIFIED|Clerk#000001348|0|atelets eat. furiously ironic theodolites above the blithely express reque| +19530|650653|O|152364.75|1997-10-21|3-MEDIUM|Clerk#000002010|0|ts are among the furiously express acc| +19531|492767|F|316950.03|1993-09-10|2-HIGH|Clerk#000000210|0|s sleep slyly past th| +19532|426503|O|6425.51|1996-11-23|5-LOW|Clerk#000004515|0|ily regular excuses. final requests are fur| +19533|478871|O|202178.15|1995-10-25|3-MEDIUM|Clerk#000002956|0|g theodolites. blithely even theodolites are fluffily iron| +19534|122323|O|329734.43|1996-10-14|2-HIGH|Clerk#000004143|0|iously. quickly final packages sle| +19535|112574|F|149994.70|1992-02-03|4-NOT SPECIFIED|Clerk#000003949|0|ions haggle after the carefully ironic requests. carefully ironic foxes | +19560|521704|F|118609.70|1994-11-07|4-NOT SPECIFIED|Clerk#000001634|0|ly unusual foxes sleep carefully pending dep| +19561|3682|O|88333.72|1998-06-13|4-NOT SPECIFIED|Clerk#000003949|0|ntegrate stealthily among the regular requests. carefully regular i| +19562|382265|F|182510.52|1992-12-21|1-URGENT|Clerk#000003743|0| along the unusual, final deposits. unusual instru| +19563|216305|F|209071.31|1992-06-06|1-URGENT|Clerk#000004984|0|structions sleep ideas. regular d| +19564|182827|F|172374.63|1992-08-11|3-MEDIUM|Clerk#000000282|0|e blithely across the carefully pending packages. final, even | +19565|17555|O|134236.57|1998-05-11|5-LOW|Clerk#000000244|0|nding pinto beans use slyly carefully even accounts. ste| +19566|290125|O|214443.32|1998-03-23|1-URGENT|Clerk#000004074|0|cording to the furiously e| +19567|357664|O|63408.71|1998-04-13|3-MEDIUM|Clerk#000004632|0| haggle blithely. fluffily | +19592|746635|F|50960.70|1992-03-09|4-NOT SPECIFIED|Clerk#000001581|0|egular sauternes. ironic instructions cajole s| +19593|427754|O|156284.30|1995-11-09|5-LOW|Clerk#000004609|0|ial, express requests wake fluffily. quickly ironic pi| +19594|496235|F|234692.57|1992-02-05|2-HIGH|Clerk#000003678|0|en, express dugouts doubt carefully across the blithely regu| +19595|216065|F|255033.59|1992-11-19|1-URGENT|Clerk#000003554|0|lly unusual, unusual foxes. slyly pending ideas| +19596|641992|O|206848.21|1996-05-26|5-LOW|Clerk#000003955|0|ntain fluffily after the express dependencies. boldly | +19597|426391|O|322985.22|1997-05-18|5-LOW|Clerk#000000221|0|counts; doggedly special accounts lose carefully. blith| +19598|78419|O|87521.14|1997-05-13|1-URGENT|Clerk#000003018|0|ial ideas nag quickly? instructions sleep carefully after the unusual, bold p| +19599|228725|F|313403.17|1993-06-15|1-URGENT|Clerk#000003452|0|ual excuses haggle. quickly quick accounts are. slyly even foxes caj| +19624|427903|F|86590.34|1993-03-12|4-NOT SPECIFIED|Clerk#000004359|0| slyly ironic pinto beans sleep furiously final de| +19625|781|O|114742.54|1998-05-19|1-URGENT|Clerk#000001326|0|the furious dolphins. carefully regu| +19626|366916|F|259048.81|1992-10-25|4-NOT SPECIFIED|Clerk#000001191|0|y. pending excuses after the slyly regular ideas x-ray furiously carefully ev| +19627|234667|F|206993.09|1994-02-21|1-URGENT|Clerk#000003896|0|een the special dependencies. sile| +19628|525046|F|260679.81|1993-03-11|4-NOT SPECIFIED|Clerk#000002963|0|sly requests? blithely regular excuses nod car| +19629|669940|F|72983.66|1994-09-09|1-URGENT|Clerk#000004374|0|ual deposits. furiously pending theodolites sleep. f| +19630|679039|F|97343.80|1994-07-10|5-LOW|Clerk#000002173|0|ounts. regular packages cajole blithely. final deposits according| +19631|601955|F|140467.90|1994-12-23|1-URGENT|Clerk#000002500|0|ely special excuses use| +19656|294569|O|186732.19|1997-03-03|1-URGENT|Clerk#000003217|0|the carefully final forges| +19657|57109|F|210393.33|1994-12-06|5-LOW|Clerk#000000185|0|telets among the carefully final packages wake through| +19658|563395|F|61864.84|1994-09-06|3-MEDIUM|Clerk#000000450|0|y unusual foxes. regular dependencies wake b| +19659|212995|F|36380.82|1994-03-30|4-NOT SPECIFIED|Clerk#000000671|0|kly; express forges lose bravely even hockey players. depths x-ray| +19660|50977|O|132847.95|1996-10-09|1-URGENT|Clerk#000000839|0| regular packages nag above the slyly special fre| +19661|265570|F|163592.59|1994-07-08|2-HIGH|Clerk#000001421|0|y bold packages sleep about the blithely ironic instructions. | +19662|152690|O|48150.31|1996-08-06|1-URGENT|Clerk#000004695|0|nusual requests integrate fluffily according t| +19663|502880|F|196537.25|1994-07-20|5-LOW|Clerk#000000886|0|ounts are even accounts; furiously even dependencies wake| +19688|152353|F|291598.75|1994-09-30|4-NOT SPECIFIED|Clerk#000000518|0|inst the furiously express deposits. care| +19689|94603|F|28234.71|1994-01-11|5-LOW|Clerk#000000853|0|e final asymptotes grow enticing dep| +19690|738433|O|174617.83|1997-01-15|1-URGENT|Clerk#000002070|0|he slyly bold foxes shall wake carefully according | +19691|581185|O|177865.43|1995-10-04|1-URGENT|Clerk#000004770|0|ole blithely blithely daring requests. carefully final pinto beans x-ray| +19692|700655|F|211548.31|1993-01-05|1-URGENT|Clerk#000004689|0|the fluffily express platelets wake furiously about the furiously unusual | +19693|154949|F|173000.69|1992-08-22|1-URGENT|Clerk#000003047|0|accounts affix carefully slyly unusual requests. orbits acr| +19694|213961|F|103889.59|1995-02-27|4-NOT SPECIFIED|Clerk#000000606|0|uriously final deposits haggle carefully. carefully regular excuses | +19695|526496|F|61395.14|1992-09-06|2-HIGH|Clerk#000000947|0|lar deposits. even, ironic accounts wake unusual accounts. furiously un| +19720|316418|O|92488.78|1998-04-19|4-NOT SPECIFIED|Clerk#000004505|0|e carefully silent deposits. pending, reg| +19721|528190|F|128418.67|1994-09-21|1-URGENT|Clerk#000002676|0|ts: blithely express requests sleep slyly about the ironic, f| +19722|285283|F|135538.13|1995-01-15|2-HIGH|Clerk#000004806|0|en platelets use bli| +19723|730216|F|137699.29|1992-03-25|1-URGENT|Clerk#000002403|0| carefully about the blithely special sauternes. furiously final pac| +19724|464270|O|94347.24|1997-07-17|1-URGENT|Clerk#000001155|0|s the furious dinos: slyly even foxes use. slyly | +19725|728144|O|253906.18|1998-05-14|1-URGENT|Clerk#000000642|0|ironic deposits was blithely carefully bold requests| +19726|158089|F|294317.03|1994-02-27|4-NOT SPECIFIED|Clerk#000001537|0|lithely after the slyly special accounts. slyly final deposits lose| +19727|499087|O|76786.49|1997-10-22|2-HIGH|Clerk#000004137|0|elets. carefully express theodolites sleep furiously daringly fluffy re| +19752|131113|O|158487.50|1997-08-22|3-MEDIUM|Clerk#000000617|0| ironic ideas are slyly even, pending pinto beans! fluffily furious requ| +19753|101983|F|70845.36|1994-02-18|2-HIGH|Clerk#000004010|0|slyly special grouches. excuses among th| +19754|277238|O|79352.24|1998-03-07|1-URGENT|Clerk#000003988|0|regular accounts. fluffily express requests haggle care| +19755|538463|F|321767.91|1992-07-02|3-MEDIUM|Clerk#000003946|0|le fluffily final foxes. unusual foxes haggle blithely| +19756|443726|O|101743.17|1995-08-30|3-MEDIUM|Clerk#000001854|0|ts. foxes after the foxes are carefully against the ideas.| +19757|448594|F|39241.97|1993-08-08|5-LOW|Clerk#000001817|0|even asymptotes. slyly| +19758|505235|F|221583.61|1993-06-01|4-NOT SPECIFIED|Clerk#000001883|0| cajole fluffily across the| +19759|721249|F|115769.20|1994-11-09|2-HIGH|Clerk#000000697|0|ly regular deposits cajole blithe| +19784|500023|F|152807.96|1993-03-24|1-URGENT|Clerk#000001635|0|wake blithely under the accounts. carefully even foxes sleep unusual, reg| +19785|117415|O|83324.80|1996-06-05|1-URGENT|Clerk#000000847|0|y about the pending platelets. daring, pending deposits across the furiousl| +19786|140119|O|185252.20|1995-10-03|1-URGENT|Clerk#000004834|0|leep-- slyly sly foxes use furiously. quickly unusua| +19787|708556|F|54773.67|1992-11-10|3-MEDIUM|Clerk#000002958|0|equests wake furiously. requests across the slyly special requests haggle car| +19788|174431|O|98989.24|1996-08-17|1-URGENT|Clerk#000004921|0|pendencies. accounts wake carefully alongside of the slyly e| +19789|657536|F|261660.42|1993-12-14|3-MEDIUM|Clerk#000000960|0|deposits doze quickly re| +19790|703222|O|54893.04|1996-02-18|4-NOT SPECIFIED|Clerk#000002511|0|ajole fluffily patterns. ironic packages sleep furiously-- carefully| +19791|544792|F|170925.00|1994-05-15|2-HIGH|Clerk#000004286|0|ng dolphins? carefully ironic warhorses boost furiously along the slyly| +19816|313282|O|135026.87|1997-03-07|2-HIGH|Clerk#000001154|0|to beans cajole carefull| +19817|329245|F|106679.36|1992-03-25|5-LOW|Clerk#000004668|0|al accounts. forges are along the ironic g| +19818|109021|O|101088.94|1995-11-22|4-NOT SPECIFIED|Clerk#000002650|0|ent requests along the ideas haggle slyly against th| +19819|42655|F|151215.10|1995-03-15|1-URGENT|Clerk#000003450|0|s across the regular pinto beans cajole above the ironic, bold gifts. fluffi| +19820|641150|F|318536.01|1993-11-02|3-MEDIUM|Clerk#000002351|0|s impress slyly across the pend| +19821|541399|O|31973.82|1998-02-25|1-URGENT|Clerk#000004768|0|e carefully furiously bold excuses. deposits haggle. furiousl| +19822|263659|F|148584.44|1994-03-23|1-URGENT|Clerk#000004530|0|. carefully express packages breach furiously abo| +19823|296554|O|39970.68|1996-02-18|2-HIGH|Clerk#000004003|0|ts. furiously final requests x-ray according to the| +19848|422852|F|63029.81|1994-10-23|5-LOW|Clerk#000001813|0|ke at the blithely ironic packages. quickly regular platelets ca| +19849|611198|O|170171.32|1997-06-06|5-LOW|Clerk#000000681|0| even packages after the carefully final packages use furiously even ideas. ex| +19850|397126|F|329662.21|1992-09-04|1-URGENT|Clerk#000001295|0|le pinto beans. slyly final requests| +19851|235288|F|37631.65|1993-04-30|1-URGENT|Clerk#000002616|0|side of the carefully regular dolphins. final instructions at| +19852|458972|O|208751.06|1998-05-17|5-LOW|Clerk#000002043|0|s. slyly regular packages integrate blithely blithely silent frays. slyly sil| +19853|192187|F|255824.25|1993-08-23|4-NOT SPECIFIED|Clerk#000002337|0|, regular ideas. slyly special realms sleep. unusual packages boost| +19854|560062|O|198288.58|1998-06-17|2-HIGH|Clerk#000001774|0|l, special foxes around the carefully ironic requests sleep carefully ironi| +19855|450232|F|139100.00|1993-10-09|2-HIGH|Clerk#000000623|0|y regular deposits are ruthlessly. fluffily ironic requests sleep. car| +19880|289073|F|72026.72|1992-08-26|5-LOW|Clerk#000000639|0|the regular, express packages. regular instructions | +19881|689302|F|77595.79|1994-05-16|4-NOT SPECIFIED|Clerk#000003221|0|egular foxes across the fluffily bold pinto beans poach fluffi| +19882|566662|F|253846.79|1995-01-10|1-URGENT|Clerk#000000205|0|y about the slyly bold requests. carefully express platelets do wake | +19883|360772|F|101274.55|1992-06-27|3-MEDIUM|Clerk#000002606|0|carefully even packages. | +19884|466126|O|141608.81|1998-06-10|5-LOW|Clerk#000003473|0|kages poach furiously blithely regular | +19885|401807|O|82461.51|1997-04-07|3-MEDIUM|Clerk#000004094|0|the packages haggle according to the even accounts: f| +19886|168350|F|170927.51|1994-05-04|4-NOT SPECIFIED|Clerk#000002073|0|ully. even ideas cajole packages| +19887|444128|F|388993.53|1992-06-15|1-URGENT|Clerk#000003563|0|ifts. even, regular excuses across the furiously silent packa| +19912|458623|O|221116.72|1997-12-21|3-MEDIUM|Clerk#000004248|0|fluffily even instructions! fi| +19913|302629|F|155046.68|1994-11-17|1-URGENT|Clerk#000004297|0|ackages after the silent Tiresias haggle slyly at the fin| +19914|507196|F|306970.27|1993-12-16|4-NOT SPECIFIED|Clerk#000001818|0|n requests haggle ca| +19915|666134|O|225858.27|1995-06-30|5-LOW|Clerk#000004982|0|ely ironic packages. ideas| +19916|451922|O|116778.55|1996-05-03|5-LOW|Clerk#000002054|0|brave platelets cajole fluffil| +19917|192049|F|207021.41|1993-07-23|1-URGENT|Clerk#000004354|0|counts. foxes after the quickly final accounts b| +19918|507571|O|214785.10|1997-07-10|5-LOW|Clerk#000003244|0|ng to the regular, express dependencies cajole blithely unusual | +19919|243343|O|8544.79|1996-06-07|3-MEDIUM|Clerk#000001389|0| cajole across the fin| +19944|97903|O|222149.03|1996-11-27|3-MEDIUM|Clerk#000000356|0|es. slyly express theodolites about the furiously ironic| +19945|675764|F|210491.07|1994-05-20|5-LOW|Clerk#000000279|0| slyly even foxes. slyly ironic| +19946|310100|O|290423.36|1997-01-07|4-NOT SPECIFIED|Clerk#000004803|0|ironic packages. slyly final dependencies haggle blithely even instructions. i| +19947|84511|O|57309.30|1997-11-05|4-NOT SPECIFIED|Clerk#000003053|0|lent ideas detect. u| +19948|604691|F|13019.07|1994-02-26|5-LOW|Clerk#000001454|0|y. thin, unusual asymptotes cajole carefully abov| +19949|528131|F|258965.25|1993-07-16|5-LOW|Clerk#000002598|0|g platelets. carefully bo| +19950|43291|F|211279.07|1994-11-29|3-MEDIUM|Clerk#000001147|0|es dazzle carefully blit| +19951|65569|F|151962.82|1992-02-21|1-URGENT|Clerk#000000661|0|s packages sleep. slyly final pinto beans sleep qu| +19976|239683|O|373464.32|1998-05-07|4-NOT SPECIFIED|Clerk#000002633|0|ructions cajole about the fluffily silent multipliers. even accoun| +19977|73924|O|191922.05|1996-11-09|5-LOW|Clerk#000002847|0|equests x-ray against the even, even dolphins. carefully unusual pinto beans | +19978|410747|O|291359.65|1996-09-29|1-URGENT|Clerk#000002637|0|l dolphins haggle after the fluffily ironic | +19979|422219|O|244707.41|1995-12-17|2-HIGH|Clerk#000004778|0|fully regular theodolites. ironically | +19980|476008|F|264673.24|1993-05-12|4-NOT SPECIFIED|Clerk#000004855|0|ully unusual requests cajo| +19981|749120|F|196869.79|1994-09-26|3-MEDIUM|Clerk#000003826|0|nic foxes cajole fluffily furiously | +19982|207799|O|38182.13|1996-02-06|2-HIGH|Clerk#000002023|0| until the unusual requests caj| +19983|463903|F|91008.13|1993-08-14|1-URGENT|Clerk#000003257|0|thely regular requests haggle at the ca| +20008|555404|O|276567.43|1996-12-11|5-LOW|Clerk#000004416|0|lithely according to| +20009|173434|F|150332.89|1992-05-16|5-LOW|Clerk#000002403|0| packages mold. asymptotes are among the foxes. packages nag dolphin| +20010|397615|F|301339.77|1992-01-12|1-URGENT|Clerk#000000109|0|its haggle quickly above the ca| +20011|206239|O|304320.50|1998-03-07|2-HIGH|Clerk#000004887|0|he fluffily special accounts wake along the final, r| +20012|487780|F|9770.71|1994-03-03|2-HIGH|Clerk#000000714|0|y express pinto beans. even packages against the quickly final p| +20013|617911|O|16375.81|1996-07-09|4-NOT SPECIFIED|Clerk#000003149|0|ly. furiously special packages believe| +20014|705686|F|43815.92|1994-08-17|3-MEDIUM|Clerk#000003946|0|gular foxes impress carefully. carefully final requests wake regularl| +20015|713453|F|145474.43|1992-09-19|4-NOT SPECIFIED|Clerk#000003860|0|oxes wake boldly furiously bold packages. permanen| +20040|740698|O|280970.52|1997-08-16|5-LOW|Clerk#000003598|0|ily. quickly regular accounts across the | +20041|403931|F|213099.98|1994-03-03|5-LOW|Clerk#000001159|0|lyly about the furiously ironi| +20042|605960|F|214769.33|1992-04-22|2-HIGH|Clerk#000003760|0|excuses grow against the accounts. regular deposits boost above the careful| +20043|103501|O|93166.02|1998-07-08|3-MEDIUM|Clerk#000000557|0|tes cajole even, pending theodolit| +20044|273800|F|125138.08|1992-03-29|2-HIGH|Clerk#000003418|0|pecial deposits. foxes against the regular theodolites wake about the car| +20045|503539|F|173261.59|1992-05-23|1-URGENT|Clerk#000004700|0|ions. quickly final packages among the blithel| +20046|705649|P|156742.97|1995-04-28|4-NOT SPECIFIED|Clerk#000001228|0| hockey players nag acro| +20047|70096|O|72271.93|1997-12-24|4-NOT SPECIFIED|Clerk#000002229|0|ld, express asymptotes. pending pinto beans alongsid| +20072|591247|O|24011.68|1997-04-19|1-URGENT|Clerk#000000860|0| the pinto beans cajole against the furiously regular packages. pe| +20073|312926|O|64882.65|1996-11-06|3-MEDIUM|Clerk#000002809|0|the regular instructions. slyly final deposits according to the ironic foxe| +20074|345178|F|192428.76|1993-03-03|4-NOT SPECIFIED|Clerk#000000850|0|lar accounts. instructions sleep slyly even requests. blithely special dep| +20075|138709|F|129982.87|1995-02-19|2-HIGH|Clerk#000001672|0|sits may cajole; idly special platelets cajole slyly. fluffily silent | +20076|257587|O|122045.76|1997-05-21|3-MEDIUM|Clerk#000004948|0| against the sometimes even requests. slyly b| +20077|259669|F|92037.97|1994-07-15|2-HIGH|Clerk#000002659|0| decoys mold blithely silent excuses. slyly even foxes wake e| +20078|730180|F|138434.61|1995-02-19|5-LOW|Clerk#000000296|0|ultipliers sleep blithely after the quickly pending theodolites. regularl| +20079|608174|F|192519.63|1993-03-15|4-NOT SPECIFIED|Clerk#000001678|0|regular ideas sleep ab| +20104|580102|F|86341.98|1993-07-19|5-LOW|Clerk#000001224|0|dolites serve blith| +20105|504025|F|207241.81|1994-01-24|5-LOW|Clerk#000003111|0|bold hockey players. blithely i| +20106|621583|O|93577.37|1998-06-16|1-URGENT|Clerk#000000994|0|ely special asymptotes| +20107|171139|F|282026.59|1994-05-22|4-NOT SPECIFIED|Clerk#000003239|0|counts instead of the blithely regular accounts cajole slyly | +20108|50456|F|131928.60|1993-07-28|3-MEDIUM|Clerk#000001091|0|. slyly final deposits sleep bravely pending pinto beans. slyly pending inst| +20109|512786|O|149627.15|1995-09-07|4-NOT SPECIFIED|Clerk#000003434|0|e quickly final platelets. blithely ironic deposits| +20110|137911|O|180449.14|1995-12-05|2-HIGH|Clerk#000000346|0|g furiously about the requests. unusual, regular requests use blithely bold, | +20111|361993|O|121727.31|1997-05-05|1-URGENT|Clerk#000004487|0|avely even instructions. final ideas cajole. quickly unusual pac| +20136|10327|O|67589.46|1996-04-04|4-NOT SPECIFIED|Clerk#000000129|0|e slyly final accounts. pending packages integrate. reques| +20137|299723|O|155578.94|1996-02-16|2-HIGH|Clerk#000001477|0|deposits are furiously| +20138|439000|O|249598.31|1997-02-08|2-HIGH|Clerk#000000481|0|as. furiously express instructions thrash blithely even, final ideas. final| +20139|508465|O|202839.45|1996-09-18|5-LOW|Clerk#000000616|0|hely ironic theodoli| +20140|258103|O|289999.22|1997-07-31|4-NOT SPECIFIED|Clerk#000001052|0|ly special sheaves. slyly final pains are slyly after the furiously ironic | +20141|674081|O|292452.11|1998-06-10|4-NOT SPECIFIED|Clerk#000000683|0|icingly regular accounts. pending accounts haggle fl| +20142|518908|F|228788.73|1993-08-28|3-MEDIUM|Clerk#000002553|0|cording to the blithely blithe decoys wake| +20143|270467|F|166343.72|1994-05-23|2-HIGH|Clerk#000002989|0|blithely. slyly ironi| +20168|738826|O|124770.91|1997-08-07|1-URGENT|Clerk#000000043|0|e theodolites. blithely even accounts hang. final, special ideas detect fu| +20169|440836|F|60851.32|1995-01-28|2-HIGH|Clerk#000004149|0| pending, even excuses wake furiously acro| +20170|598103|F|125759.50|1992-10-09|5-LOW|Clerk#000003865|0|ess, bold requests along the carefully | +20171|51334|F|108134.60|1995-01-15|4-NOT SPECIFIED|Clerk#000001604|0|ily final accounts sleep furiously final accounts. excuses boost | +20172|261775|F|205162.43|1994-01-31|1-URGENT|Clerk#000001114|0|inal foxes. foxes boost carefully ab| +20173|138112|F|177047.44|1992-10-25|2-HIGH|Clerk#000001949|0|g to the carefully expre| +20174|731803|F|167960.17|1994-03-15|1-URGENT|Clerk#000003837|0|ng, ironic dependencies boost slyly. daringly regular requests haggle quick| +20175|150190|O|210935.94|1995-05-22|4-NOT SPECIFIED|Clerk#000001773|0|would haggle slyly across the furious, even instruc| +20200|477808|O|192008.41|1998-07-01|1-URGENT|Clerk#000003888|0|. express, even packages | +20201|249616|O|213790.02|1995-12-12|3-MEDIUM|Clerk#000000098|0|ole blithely slyly express packages. carefully final packages use s| +20202|513836|F|221352.77|1995-02-08|4-NOT SPECIFIED|Clerk#000003470|0|usly ironic packages cajole furiously. busy accounts alongsi| +20203|538660|F|20750.37|1992-02-26|3-MEDIUM|Clerk#000002162|0|after the furiously bold ideas. slyly even accounts thrash. final pearls among| +20204|733291|O|39835.80|1996-07-15|5-LOW|Clerk#000003103|0|y unusual accounts. express, ironic bra| +20205|398630|O|186750.43|1995-06-16|3-MEDIUM|Clerk#000002571|0|sits nag carefully about the carefully final packages! ironic excuses along th| +20206|23050|F|61772.51|1994-10-30|5-LOW|Clerk#000002415|0|pecial requests. quickly bold accounts cajole furi| +20207|377398|F|143786.13|1992-09-03|4-NOT SPECIFIED|Clerk#000003677|0|ly express deposits use above the special ins| +20232|159718|F|141457.29|1994-10-22|5-LOW|Clerk#000002076|0|lly regular instructions nag fluffily final accounts. blithely| +20233|104695|O|43271.24|1996-09-06|4-NOT SPECIFIED|Clerk#000002061|0|nic deposits cajole slyly | +20234|89116|O|198416.21|1996-03-04|4-NOT SPECIFIED|Clerk#000002217|0|lly sometimes final requests. blithel| +20235|18620|F|17604.90|1994-05-07|3-MEDIUM|Clerk#000000804|0| foxes; slyly regular deposits | +20236|181141|O|159549.22|1996-08-18|2-HIGH|Clerk#000001008|0|nto beans detect quickly regular foxes. bold accounts alongside of the qui| +20237|156172|O|161980.10|1995-12-11|3-MEDIUM|Clerk#000000646|0|l requests. unusual cour| +20238|529429|F|78475.64|1994-06-19|5-LOW|Clerk#000001003|0|p carefully ironic pinto beans| +20239|95467|O|159343.92|1997-10-07|1-URGENT|Clerk#000002078|0|cross the slyly final theodolites. enticingly ironic pinto beans are. b| +20264|255631|O|207451.10|1998-01-04|1-URGENT|Clerk#000000882|0|y ironic courts. blithely regular grouches haggle clos| +20265|359597|F|272752.90|1994-01-26|1-URGENT|Clerk#000004132|0| ironic packages according to the furiously regular package| +20266|246539|O|125226.62|1998-03-02|3-MEDIUM|Clerk#000003008|0|aggle slyly according to the enticingly regular requests. f| +20267|568517|F|139092.62|1995-01-14|5-LOW|Clerk#000004375|0| special grouches haggle slyly. slyly pending packages nod quickly expre| +20268|57967|F|154168.79|1993-09-25|5-LOW|Clerk#000002357|0|ions are blithely doggedly final ideas. clo| +20269|727630|F|86849.50|1994-07-04|2-HIGH|Clerk#000003194|0|, pending dependencies. carefully| +20270|513152|O|47137.32|1997-05-25|4-NOT SPECIFIED|Clerk#000004118|0|elets. furiously ironic instruct| +20271|292144|F|26116.91|1992-12-23|3-MEDIUM|Clerk#000000529|0|ccounts wake never against the carefully slow foxes| +20296|542665|O|311177.13|1996-08-30|1-URGENT|Clerk#000000845|0|urts cajole bravely. carefully express dependencies grow slyly. ir| +20297|544112|O|318738.80|1995-08-19|2-HIGH|Clerk#000002654|0|aringly ironic instructions| +20298|131698|F|64650.75|1993-01-06|2-HIGH|Clerk#000002022|0|es. fluffily special theodolites wake carefully. furiously | +20299|191878|O|114937.56|1995-12-24|1-URGENT|Clerk#000001372|0|inal instructions among the unusual| +20300|634057|F|261374.82|1994-06-17|5-LOW|Clerk#000002954|0|ven theodolites sleep ironic, regular frets. ironic foxes boost sl| +20301|592123|F|234420.93|1993-06-10|3-MEDIUM|Clerk#000001477|0|mong the express packages. furiously regular ideas serve careful| +20302|59015|F|258435.28|1994-06-30|2-HIGH|Clerk#000002036|0|s. unusual instructions wake busily fluff| +20303|360628|F|218903.61|1993-07-25|3-MEDIUM|Clerk#000004900|0|e regular, special requests.| +20328|306746|O|89242.32|1996-04-02|1-URGENT|Clerk#000003459|0|ringly regular excuses. fluffily regular requests across | +20329|717577|F|240641.77|1994-10-26|5-LOW|Clerk#000004860|0|osits. careful, ironic | +20330|297491|O|155739.59|1998-06-24|5-LOW|Clerk#000000108|0|carefully ironic accounts are busily stealthy ideas. carefully u| +20331|416416|F|172705.91|1994-02-23|3-MEDIUM|Clerk#000003657|0|requests. ironic pinto beans against the| +20332|433516|O|267898.04|1997-05-16|4-NOT SPECIFIED|Clerk#000003022|0|arefully. carefully special accounts sl| +20333|591280|F|142158.23|1994-03-02|2-HIGH|Clerk#000004262|0|eep blithely bold, ruthless packages. quickly express p| +20334|133915|F|253510.78|1993-02-15|4-NOT SPECIFIED|Clerk#000003131|0|pending deposits. quickly ironic packages | +20335|697588|O|64391.09|1997-05-05|2-HIGH|Clerk#000001132|0|. quickly silent packages af| +20360|336199|O|91352.64|1995-07-25|1-URGENT|Clerk#000004435|0|gular accounts boost q| +20361|745262|F|167200.02|1994-04-10|3-MEDIUM|Clerk#000001757|0|y fluffily ironic foxes. thin accounts integrate slyly f| +20362|609008|O|274554.07|1996-08-25|5-LOW|Clerk#000003357|0| pinto beans wake after the realms. furiously unusual pin| +20363|335536|F|91615.53|1994-02-28|2-HIGH|Clerk#000004144|0|c, pending theodolites cajole slyly around th| +20364|92240|O|49645.60|1996-03-08|1-URGENT|Clerk#000002101|0|heaves along the furiously regular theodol| +20365|13250|O|168362.97|1998-03-12|5-LOW|Clerk#000002377|0|ackages boost slyly. fluffily busy r| +20366|681905|F|104784.29|1993-11-21|3-MEDIUM|Clerk#000004391|0|inal packages wake furiously. carefully unusual courts b| +20367|11191|F|192098.24|1994-06-15|5-LOW|Clerk#000004857|0|y regular platelets integrate regularly fluffily final dolphi| +20392|582205|F|70186.74|1993-03-12|4-NOT SPECIFIED|Clerk#000004689|0| sleep blithely silently unusual theodolites. q| +20393|610714|O|244338.79|1997-09-22|3-MEDIUM|Clerk#000001441|0| furiously! carefully final accounts cajole against | +20394|501542|O|41085.53|1997-01-11|3-MEDIUM|Clerk#000002863|0|e blithely. carefully regular ideas haggle about t| +20395|165379|O|110304.65|1997-08-30|4-NOT SPECIFIED|Clerk#000000074|0| dependencies sleep blithely even pinto beans. fluffily unus| +20396|12502|F|229842.53|1994-11-03|5-LOW|Clerk#000002656|0|fully accounts. carefully even packages hagg| +20397|97333|F|30881.97|1992-10-30|2-HIGH|Clerk#000004779|0|eposits use blithely regula| +20398|95338|O|83769.10|1995-07-23|1-URGENT|Clerk#000002372|0|usual packages. ironic accounts use carefully. blithely sly accounts u| +20399|325571|O|186440.46|1997-10-18|1-URGENT|Clerk#000003787|0|ing requests. silent accounts| +20424|614098|F|105329.07|1995-03-20|1-URGENT|Clerk#000004395|0| integrate fluffily. ironic requests use blithely ironic, regular pack| +20425|367225|F|172458.33|1992-12-21|4-NOT SPECIFIED|Clerk#000000345|0|ic sentiments nag upon the furiously regular packages. i| +20426|198319|F|305803.65|1993-08-08|4-NOT SPECIFIED|Clerk#000000697|0|blithely even packages affix blithely even, even accounts. ironic, regular | +20427|145684|F|180355.39|1992-02-09|1-URGENT|Clerk#000004778|0|iously final accounts integrate alongside of the quickly regular theodolites. | +20428|489400|F|50693.56|1992-11-11|4-NOT SPECIFIED|Clerk#000000916|0|uctions cajole carefully. ironic, express dependencies d| +20429|94172|F|180122.16|1992-05-10|5-LOW|Clerk#000002172|0|usual packages believe. furiously silent packages slee| +20430|238666|F|51959.67|1994-06-02|4-NOT SPECIFIED|Clerk#000003421|0|ronic, regular packages. ironic ideas along the even, even dolphins boost bl| +20431|240929|F|351714.19|1993-04-11|2-HIGH|Clerk#000004232|0|yly across the ironic, pending requests. carefully | +20456|33869|F|86335.56|1994-06-28|2-HIGH|Clerk#000002993|0|gage fluffily. special, bold instructions along the pen| +20457|727507|F|17000.76|1994-11-03|2-HIGH|Clerk#000002434|0|its sleep. theodolites sublate blithely| +20458|703189|O|112101.34|1998-07-10|5-LOW|Clerk#000003024|0|ickly unusual packages toward the furiously silent accounts affix bold| +20459|744002|F|89111.01|1993-05-28|2-HIGH|Clerk#000004064|0| the slyly ironic deposits us| +20460|427021|F|100994.55|1993-12-07|1-URGENT|Clerk#000002626|0|ely regular instructions. furiously pendin| +20461|160189|F|129598.08|1994-10-29|4-NOT SPECIFIED|Clerk#000001561|0|the pending requests boost carefully furiously express | +20462|532673|F|11184.70|1993-02-13|5-LOW|Clerk#000001185|0|ly doggedly permanent courts. slyly regular requests affix furiously| +20463|632363|F|142151.18|1992-05-01|4-NOT SPECIFIED|Clerk#000001794|0|lets sleep furiously even theodolites. caref| +20488|614713|F|290915.65|1993-06-05|4-NOT SPECIFIED|Clerk#000002049|0|mong the regular braids| +20489|217726|F|342035.39|1994-02-20|5-LOW|Clerk#000001361|0|ckly pending excuses nag. slyly final accounts cajo| +20490|60628|F|50266.07|1993-07-21|4-NOT SPECIFIED|Clerk#000002054|0|around the furiously even theodolites wake carefully| +20491|462874|O|175350.41|1995-07-09|2-HIGH|Clerk#000002747|0|ar packages. quickly final | +20492|491935|O|290175.43|1996-12-09|2-HIGH|Clerk#000000644|0|ajole blithely ruthless ideas. c| +20493|673117|F|193855.43|1994-01-01|1-URGENT|Clerk#000000280|0|. quickly ironic instructions abov| +20494|70672|O|62206.75|1997-04-20|4-NOT SPECIFIED|Clerk#000001965|0|, even accounts should have to promise. fluffily regular packag| +20495|510349|O|179297.91|1995-08-23|1-URGENT|Clerk#000001199|0|ages. slyly ironic pinto beans cajole slyly against the slow dugouts. ironic,| +20520|403480|O|203793.75|1997-11-08|3-MEDIUM|Clerk#000004344|0|luffily special requests above the caref| +20521|512794|O|194219.12|1997-08-10|1-URGENT|Clerk#000001971|0|cajole carefully slyly pending foxes. slyly slow| +20522|246832|O|146979.95|1998-07-24|1-URGENT|Clerk#000004796|0|ilent asymptotes. furio| +20523|223391|O|73409.82|1995-06-09|2-HIGH|Clerk#000002288|0|ays cajole; blithely expr| +20524|19597|O|153844.82|1998-06-08|1-URGENT|Clerk#000002614|0|he asymptotes are carefully according to the pinto beans. even| +20525|83609|O|200478.87|1997-09-28|1-URGENT|Clerk#000004674|0|y special requests. unusu| +20526|460643|F|15764.36|1993-02-17|1-URGENT|Clerk#000000286|0|slyly bold accounts. slyly| +20527|513461|O|126061.73|1995-09-23|3-MEDIUM|Clerk#000000804|0| regular instructions. packages caj| +20552|228028|O|129792.53|1997-08-07|4-NOT SPECIFIED|Clerk#000002908|0|after the blithely express foxes. slyly bold accoun| +20553|684346|F|198720.26|1993-03-01|5-LOW|Clerk#000000897|0|st above the quickl| +20554|536989|F|262444.08|1992-07-06|4-NOT SPECIFIED|Clerk#000000623|0|the regular deposits affix regular frays. regularly pending foxes detect blit| +20555|391501|F|302601.93|1992-08-07|4-NOT SPECIFIED|Clerk#000001588|0|e slyly final ideas. quickly bold deposits | +20556|187238|F|56538.23|1995-04-08|1-URGENT|Clerk#000001124|0|yly ironic attainments cajole outside the ironic, silent packag| +20557|658486|O|338535.11|1995-07-11|1-URGENT|Clerk#000000019|0|l platelets. express packages sleep fluffily across the packages. | +20558|142825|O|23366.77|1996-03-01|3-MEDIUM|Clerk#000002694|0|s packages. blithely regular accounts are dogge| +20559|441397|O|95649.14|1998-02-03|4-NOT SPECIFIED|Clerk#000002484|0|ely ironic accounts sleep against the unusual accounts. quickly regular d| +20584|287350|F|96544.24|1992-08-23|5-LOW|Clerk#000004465|0|uickly. carefully unusual deposits wake slyly blithely ironic | +20585|225703|F|45970.57|1993-02-04|4-NOT SPECIFIED|Clerk#000002644|0|furiously even deposits c| +20586|617782|F|201596.07|1994-06-05|1-URGENT|Clerk#000001276|0|carefully against the furiously ironic ideas. carefully regula| +20587|35848|F|146779.10|1992-04-17|5-LOW|Clerk#000004316|0|s sleep permanently across the final requests-- ironic packages wake r| +20588|223420|O|28307.25|1997-09-23|3-MEDIUM|Clerk#000003852|0|cuses within the even packages dazzle carefully express packages. r| +20589|493034|O|137976.10|1996-08-09|4-NOT SPECIFIED|Clerk#000002950|0|ously regular instructions. quickly express package| +20590|416143|O|153363.35|1996-09-02|4-NOT SPECIFIED|Clerk#000004799|0|fully regular accounts are fluffily final theodolites. final instruc| +20591|354497|F|51859.92|1993-01-24|1-URGENT|Clerk#000001531|0|s integrate. blithely regular instructions ha| +20616|21229|O|104919.92|1998-07-08|1-URGENT|Clerk#000002260|0| packages use furiou| +20617|533329|O|341142.53|1996-06-27|2-HIGH|Clerk#000002071|0|the requests sleep slyly carefully thin foxes. pe| +20618|377665|O|46046.89|1997-07-09|4-NOT SPECIFIED|Clerk#000003428|0|ts are furiously-- special, unusual | +20619|145195|F|62202.76|1995-01-01|1-URGENT|Clerk#000002353|0|egular ideas! carefully ironic deposits integrate al| +20620|535102|F|23572.52|1993-11-23|1-URGENT|Clerk#000003915|0|d instructions. quickly even pinto beans according to the | +20621|194893|F|253092.31|1993-08-31|2-HIGH|Clerk#000000453|0|ickly final deposits use blithely under the | +20622|302167|F|265748.52|1994-03-01|4-NOT SPECIFIED|Clerk#000004680|0|usly thin instructions boost carefully about the qu| +20623|238123|O|149830.98|1996-04-30|1-URGENT|Clerk#000004153|0| above the quickly bold foxes. dogged, regular packages sleep slyly along th| +20648|116138|F|210146.25|1993-04-07|3-MEDIUM|Clerk#000004393|0|. slyly regular accounts| +20649|416291|F|177929.58|1994-12-08|1-URGENT|Clerk#000002234|0|ehind the fluffily unusual accounts. | +20650|587741|F|220202.31|1992-01-05|5-LOW|Clerk#000003999|0|tructions. blithely pending deposits was blithely | +20651|659104|O|43647.85|1997-05-02|2-HIGH|Clerk#000000753|0| pinto beans sleep ruthlessly according to the furio| +20652|57217|O|56932.04|1997-08-18|5-LOW|Clerk#000003770|0| haggle furiously. slyly enticing accounts along | +20653|145324|F|259304.64|1994-04-21|4-NOT SPECIFIED|Clerk#000001139|0|structions. slyly express deposits beli| +20654|427489|F|124287.60|1994-10-01|3-MEDIUM|Clerk#000002070|0|lay. idle ideas across the regular, i| +20655|533251|F|156770.16|1992-12-12|2-HIGH|Clerk#000002257|0|foxes sleep finally. carefully even packages use. even deposits a| +20680|575261|O|1467.66|1997-05-16|1-URGENT|Clerk#000004221|0|eas sleep unusual foxes. daringly unusual requests sleep regu| +20681|145910|O|92114.77|1998-02-08|3-MEDIUM|Clerk#000000734|0|tes. carefully even courts haggle slyly a| +20682|553324|O|239910.73|1998-03-08|2-HIGH|Clerk#000002635|0|slyly. foxes nag furiously even deposits. blithely ironic packages after the| +20683|444476|O|238497.01|1998-06-29|5-LOW|Clerk#000004715|0|al theodolites boost. carefully eve| +20684|307462|F|96927.54|1992-01-04|3-MEDIUM|Clerk#000003900|0|lyly regular ideas haggle carefully. ironic inst| +20685|747268|F|173325.61|1993-11-11|2-HIGH|Clerk#000002120|0|ar requests. carefully ironic accounts cajole carefully carefully | +20686|565703|O|147592.32|1997-01-16|2-HIGH|Clerk#000003134|0|olphins haggle slyly unusu| +20687|11311|F|98812.94|1993-10-18|1-URGENT|Clerk#000002120|0|ng the blithely special orbits. re| +20712|344429|F|99783.71|1993-10-29|1-URGENT|Clerk#000000613|0|g quickly deposits. quickly unusua| +20713|311233|F|135426.92|1993-09-04|3-MEDIUM|Clerk#000001960|0|ely final requests kindle blithely express foxes. quickly express theodo| +20714|363623|O|243888.18|1996-07-02|2-HIGH|Clerk#000002134|0|tes boost. carefully final i| +20715|398161|F|105938.80|1992-03-10|1-URGENT|Clerk#000004474|0|egrate slyly carefully final packages. | +20716|364570|O|125316.48|1996-04-03|1-URGENT|Clerk#000004858|0|ies nag slyly express deposits. even pinto beans sleep quickly against the | +20717|560551|O|11211.64|1997-10-12|4-NOT SPECIFIED|Clerk#000003013|0|cial accounts. asymptotes believe slyly silent ideas. ironic, even depo| +20718|404284|O|98665.66|1997-11-26|3-MEDIUM|Clerk#000002553|0| requests wake carefully atop the requests. fluffily bold brai| +20719|544912|F|35770.57|1994-03-05|1-URGENT|Clerk#000004590|0|counts. carefully pending courts use. bold somas wake| +20744|74233|O|36905.96|1997-01-15|3-MEDIUM|Clerk#000000044|0|gle. final, special accounts among | +20745|371989|O|39509.50|1997-04-28|4-NOT SPECIFIED|Clerk#000000886|0| special dolphins use iro| +20746|746335|O|259464.53|1995-10-07|2-HIGH|Clerk#000004509|0|hely about the express, | +20747|630127|F|86882.92|1992-02-13|4-NOT SPECIFIED|Clerk#000000125|0|ince the furiously unusual foxes cajole slyly above the bold de| +20748|535351|F|128135.82|1992-09-09|3-MEDIUM|Clerk#000000784|0|ironic accounts promise quickly across the express requests. depth| +20749|619009|F|157456.13|1993-12-29|4-NOT SPECIFIED|Clerk#000001337|0|eans. carefully regular platelets haggle carefully; carefully r| +20750|416095|F|181968.39|1994-03-14|4-NOT SPECIFIED|Clerk#000000980|0| against the slyly e| +20751|280663|F|73487.02|1993-06-11|5-LOW|Clerk#000002232|0| nag instead of the deposits. accounts are. bravely ironic excus| +20776|327499|O|58820.43|1998-05-28|3-MEDIUM|Clerk#000003360|0|y alongside of the furiously final asymptotes. ev| +20777|744692|F|159316.50|1992-03-02|2-HIGH|Clerk#000001953|0|arefully ironic excuses. even reque| +20778|30178|F|194540.00|1992-12-07|2-HIGH|Clerk#000000672|0|ts. slyly special packages dazzle carefully around t| +20779|184717|O|199793.68|1996-01-19|1-URGENT|Clerk#000001052|0|counts around the carefu| +20780|265312|O|131110.12|1995-06-24|2-HIGH|Clerk#000000866|0|lly thin dependencies cajole slyly furiously express deposits. slowly even| +20781|340411|O|238209.13|1997-10-24|3-MEDIUM|Clerk#000004752|0|ng, regular notornis doubt furiously furiously regular deposi| +20782|286609|F|56960.14|1994-10-08|5-LOW|Clerk#000003481|0|nod furiously blithely regular | +20783|531259|F|61823.99|1994-04-30|2-HIGH|Clerk#000002418|0|etect packages. slyly final deposits along the | +20808|103139|P|276616.82|1995-06-07|4-NOT SPECIFIED|Clerk#000001971|0|iously ruthless deposits lo| +20809|203606|P|230651.25|1995-03-16|2-HIGH|Clerk#000001235|0|s. pending hockey players above the carefull| +20810|492752|O|267572.25|1997-12-03|4-NOT SPECIFIED|Clerk#000001802|0|s platelets haggle according to the slyly unusual pains. pending, pending foxe| +20811|172912|F|200037.92|1994-11-21|1-URGENT|Clerk#000000085|0|ajole carefully above the blithely careful foxes.| +20812|608575|O|217806.72|1998-03-31|3-MEDIUM|Clerk#000000970|0|onic theodolites sleep carefully. c| +20813|559771|F|279948.24|1994-09-15|3-MEDIUM|Clerk#000003487|0|odolites. regular pinto beans doze. quic| +20814|66337|F|62332.08|1993-03-13|3-MEDIUM|Clerk#000004701|0|d excuses. carefully even theodolites sleep blithely final requests. s| +20815|414485|O|73342.03|1998-07-30|4-NOT SPECIFIED|Clerk#000000901|0| regular theodolites. ironic, regular realms no| +20840|233387|O|200771.16|1998-08-01|3-MEDIUM|Clerk#000004971|0| nag above the quick| +20841|30850|F|108221.99|1995-02-18|5-LOW|Clerk#000003309|0|egular requests use slyly among the carefully special requests? blithe| +20842|222034|O|337129.14|1995-08-27|5-LOW|Clerk#000001749|0|gular asymptotes are alongside of the q| +20843|450862|F|201809.35|1992-10-11|5-LOW|Clerk#000004524|0|efully busily ironic dugouts. dogged courts detect besides | +20844|364669|F|301797.22|1992-01-28|4-NOT SPECIFIED|Clerk#000001929|0|y; deposits haggle fluffily theodol| +20845|709934|O|37512.81|1998-06-17|1-URGENT|Clerk#000001629|0|ial dolphins boost furiously. quickly ironic forges are. r| +20846|98522|O|118052.34|1997-07-29|4-NOT SPECIFIED|Clerk#000004593|0|nts cajole quickly. express accounts cajole furiously. final re| +20847|599749|F|174614.06|1994-10-22|4-NOT SPECIFIED|Clerk#000003163|0|uffily even ideas. unusual deposits are carefully ac| +20872|713585|F|257408.08|1993-10-20|1-URGENT|Clerk#000001135|0|y silent foxes haggle along the slyly regular asymptotes. p| +20873|718972|O|287192.52|1996-01-02|5-LOW|Clerk#000000286|0|eep permanently. blithely idle dolphins t| +20874|487975|F|87548.56|1993-07-15|3-MEDIUM|Clerk#000002180|0| packages sleep slyly slyly unusual request| +20875|141860|F|325845.97|1992-10-22|2-HIGH|Clerk#000001570|0| wake furiously even | +20876|737836|F|146925.28|1993-07-23|2-HIGH|Clerk#000004411|0|r the ironic ideas nag idly above the iro| +20877|298649|O|265541.63|1997-10-18|4-NOT SPECIFIED|Clerk#000002905|0|es wake fluffily against the final, re| +20878|389836|F|70080.44|1993-11-30|3-MEDIUM|Clerk#000003021|0|nag fluffily. pinto beans haggle quickly ab| +20879|692987|F|178704.20|1994-01-27|3-MEDIUM|Clerk#000004115|0|ally ironic accounts after the regular exc| +20904|269662|F|202140.03|1993-07-01|3-MEDIUM|Clerk#000003597|0|s integrate quickly against the slyly unusual accounts; ironic| +20905|698489|F|10108.95|1993-01-26|5-LOW|Clerk#000001725|0|leep along the even foxes. silently regular accounts wake. furiously bol| +20906|498755|F|174592.30|1994-05-14|1-URGENT|Clerk#000001644|0| blithely special foxes are slyly brave requests. regular theodolites sl| +20907|563917|F|313791.77|1994-07-19|3-MEDIUM|Clerk#000001327|0|. furiously ironic pinto beans are blithely. final, bold foxes so| +20908|741958|F|40490.42|1993-10-12|2-HIGH|Clerk#000003099|0| furiously even deposits are. bold deposits need to sleep slyly furiously re| +20909|559658|O|39226.07|1995-09-15|5-LOW|Clerk#000004092|0|regular, express dependencies. pending accounts cajole furiously. express a| +20910|406259|O|228562.56|1996-07-10|3-MEDIUM|Clerk#000001516|0|ajole. carefully regular packages wake boldly. slyly special dependencies| +20911|729409|F|171996.35|1993-03-12|4-NOT SPECIFIED|Clerk#000002137|0|osits. regular hocke| +20936|404170|O|312800.36|1997-05-22|4-NOT SPECIFIED|Clerk#000000480|0|refully final asymptotes unwind quickly according to the entici| +20937|120265|F|208354.83|1995-03-11|2-HIGH|Clerk#000001258|0|ending accounts sleep a| +20938|31564|F|30766.88|1993-01-18|5-LOW|Clerk#000002722|0|ly among the furiously final braids. slowly regular pi| +20939|233464|O|66023.87|1998-05-05|3-MEDIUM|Clerk#000003038|0|he slyly unusual foxes; blithely permane| +20940|558529|F|241045.74|1992-08-20|1-URGENT|Clerk#000002542|0|wake carefully alongside of the regularly careful or| +20941|193445|O|174418.22|1996-01-29|5-LOW|Clerk#000000806|0|silent instructions serve | +20942|725428|F|150697.99|1993-07-31|5-LOW|Clerk#000003434|0| fluffily regular theodolites wake across | +20943|239317|F|200829.99|1993-12-09|3-MEDIUM|Clerk#000001583|0|al deposits integrate blithe| +20968|692935|F|61996.50|1993-11-26|2-HIGH|Clerk#000002212|0| pending, final requests are blithely. slyly ent| +20969|147307|O|315735.32|1997-09-17|4-NOT SPECIFIED|Clerk#000002235|0| theodolites sleep slyly-- quickly fi| +20970|36241|F|120434.39|1992-10-24|4-NOT SPECIFIED|Clerk#000003113|0|ake quickly carefully regular accounts. quickly regular theodoli| +20971|84925|O|272900.55|1995-07-14|2-HIGH|Clerk#000004003|0|. special, idle packages about | +20972|64937|F|16871.29|1995-02-19|2-HIGH|Clerk#000002950|0|al ideas are carefully regular, final deposits. | +20973|140990|O|128635.75|1996-04-07|1-URGENT|Clerk#000002789|0|unts detect carefully. ironic deposits wake across| +20974|352393|F|28526.37|1995-05-07|5-LOW|Clerk#000000131|0| packages mold carefully sometimes unusual accounts. f| +20975|648679|P|135904.42|1995-06-08|3-MEDIUM|Clerk#000001030|0|ts nag carefully about the furiously bold instructions. fl| +21000|342040|O|149747.15|1997-10-29|1-URGENT|Clerk#000002146|0|ve the fluffily regular | +21001|649238|F|259227.81|1993-09-28|2-HIGH|Clerk#000003189|0|into beans. slyly special pinto beans b| +21002|728659|O|235559.11|1997-07-21|1-URGENT|Clerk#000002833|0|n requests. blithely even depths are blithely alway| +21003|547750|O|234357.00|1997-02-16|3-MEDIUM|Clerk#000003388|0|he fluffily pending packa| +21004|516676|O|109578.30|1995-05-02|5-LOW|Clerk#000003502|0|riously pending excuses across the blithely | +21005|252673|O|133350.06|1996-07-09|2-HIGH|Clerk#000001830|0| ironic excuses caj| +21006|165004|F|74199.90|1995-01-01|2-HIGH|Clerk#000001221|0|ons cajole furiously thin, ironic ideas. even packages wake carefully. blit| +21007|454469|O|43149.50|1997-06-06|5-LOW|Clerk#000004627|0|requests nag according to the furiously bold packages. quickly bold instructi| +21032|251818|O|213331.07|1996-06-13|3-MEDIUM|Clerk#000001765|0|e final, even accounts. regular, regular reque| +21033|33563|F|177921.40|1994-08-01|4-NOT SPECIFIED|Clerk#000003156|0|al pinto beans are fluffily final, final accounts. ca| +21034|80530|O|68918.76|1996-09-13|2-HIGH|Clerk#000004351|0|nstructions. stealthily ironic epitaphs across the | +21035|435853|F|101842.97|1994-01-10|5-LOW|Clerk#000004743|0| the deposits. fina| +21036|115183|F|170880.49|1993-01-05|5-LOW|Clerk#000003807|0|r deposits could have to sublate blithely packag| +21037|117023|F|129342.32|1993-08-10|3-MEDIUM|Clerk#000002149|0|final, ironic multip| +21038|300766|F|91154.11|1995-02-25|1-URGENT|Clerk#000004631|0|xes are slyly ironic, final dugouts. furiously | +21039|704362|F|111385.89|1994-12-03|4-NOT SPECIFIED|Clerk#000001657|0| mold slyly blithely bold instructions. ironic accounts along the re| +21064|190450|O|202837.83|1997-05-15|3-MEDIUM|Clerk#000004297|0|counts. carefully regular instructions sleep. fo| +21065|618839|F|158752.41|1993-09-20|3-MEDIUM|Clerk#000002576|0|e near the blithely silent packa| +21066|573437|O|186517.94|1998-03-03|3-MEDIUM|Clerk#000001239|0|s after the silent, express accounts wake final sentiments. | +21067|250057|O|5199.25|1997-03-31|2-HIGH|Clerk#000003745|0|y. quickly final foxes are slyly ironic excuses. iron| +21068|451495|O|70241.32|1995-07-30|3-MEDIUM|Clerk#000002636|0|hinly regular instruc| +21069|522364|F|161174.58|1992-07-21|1-URGENT|Clerk#000002091|0|eas after the ironic, special courts wake fluffily according to the package| +21070|594850|F|6511.78|1992-01-04|2-HIGH|Clerk#000001751|0|ckly bold pinto beans ea| +21071|119114|O|121933.63|1998-04-12|4-NOT SPECIFIED|Clerk#000000292|0| blithely ironic packages affix blithely. ironic, silent pinto beans ca| +21096|193273|F|191201.53|1994-11-29|1-URGENT|Clerk#000003448|0|r deposits wake furiously ironic pinto beans. silent, sp| +21097|72559|O|103520.38|1995-12-07|3-MEDIUM|Clerk#000003979|0|y. furiously unusual foxes thrash. slyly ironic packages sublate quickly ac| +21098|722740|F|23539.53|1994-07-02|4-NOT SPECIFIED|Clerk#000002116|0| beans according to the quickly silent requests use slyly blithe| +21099|67387|F|73324.52|1992-07-21|5-LOW|Clerk#000002988|0|detect. silent instructions wake after| +21100|50188|F|282535.47|1992-07-26|4-NOT SPECIFIED|Clerk#000003148|0|l ideas cajole carefully according to the quick | +21101|506171|O|79910.85|1995-09-08|2-HIGH|Clerk#000004691|0|s use across the quickl| +21102|706822|O|66050.22|1997-11-27|5-LOW|Clerk#000001194|0|fily bold requests wake bl| +21103|305143|O|267255.17|1997-04-02|1-URGENT|Clerk#000004288|0|ly bold foxes nag furiously carefully regular accoun| +21128|27437|O|248204.97|1996-01-17|2-HIGH|Clerk#000004155|0|eep furiously. ironic deposits are blithely after the| +21129|621625|O|78755.63|1997-06-25|3-MEDIUM|Clerk#000002824|0|f the final, silent foxes engage blithely a| +21130|125012|P|57976.43|1995-05-02|5-LOW|Clerk#000002053|0|deas. special pinto beans haggle | +21131|315856|O|155026.66|1996-10-09|5-LOW|Clerk#000003235|0|nag. carefully ironic de| +21132|71944|O|97234.22|1997-04-26|2-HIGH|Clerk#000002659|0|kages about the ironic excuses wake blithely pending t| +21133|160838|F|75118.86|1995-03-25|5-LOW|Clerk#000002926|0|es alongside of the slyly final instructions sleep car| +21134|199450|O|189868.67|1998-02-23|3-MEDIUM|Clerk#000004976|0|quiet packages. pending, bold packages thrash blithely| +21135|378448|F|250099.31|1993-01-12|4-NOT SPECIFIED|Clerk#000000517|0|e quickly ironic packages mainta| +21160|566089|O|306577.48|1996-03-27|3-MEDIUM|Clerk#000003606|0|ers. carefully ironic deposits caj| +21161|485893|F|293499.11|1994-08-27|3-MEDIUM|Clerk#000003807|0| blithely regular asymptotes haggle alongside of the s| +21162|379844|F|165838.80|1995-03-04|4-NOT SPECIFIED|Clerk#000003413|0|ng slyly furiously | +21163|32065|O|244354.91|1996-07-01|4-NOT SPECIFIED|Clerk#000002065|0|lyly slyly regular packages. bold packages affix quickly| +21164|412798|F|155891.62|1992-05-27|1-URGENT|Clerk#000002915|0| ironic packages cajole furiously| +21165|379600|F|375719.04|1993-01-01|2-HIGH|Clerk#000000654|0|es boost slyly; blithely ironic deposits wake slyly final| +21166|427577|F|210292.42|1993-11-06|1-URGENT|Clerk#000000510|0|ironic platelets-- final courts wake. plate| +21167|524801|O|27108.23|1995-05-18|2-HIGH|Clerk#000003295|0|grate furiously according to the quickly ironic dinos: ironic, final pinto b| +21192|329809|F|72125.85|1992-03-10|2-HIGH|Clerk#000004333|0|ependencies. busily final | +21193|597115|F|3214.91|1993-10-29|4-NOT SPECIFIED|Clerk#000003739|0|. packages about the slyly ironic courts wake fluffily among the slyly ironi| +21194|710128|F|52767.38|1994-01-08|2-HIGH|Clerk#000002892|0|e above the regular requests. ironic requests caj| +21195|357775|O|149908.68|1996-06-14|3-MEDIUM|Clerk#000002593|0|tealthily even requests may are. unusual theodolites are. fur| +21196|353932|O|160525.55|1996-04-20|2-HIGH|Clerk#000003620|0|uests-- furiously pending deposits amon| +21197|271987|F|31973.22|1993-07-29|5-LOW|Clerk#000000818|0|dolites. regular requests along the blithely even requests wake along the| +21198|23161|F|74574.72|1994-06-02|5-LOW|Clerk#000002489|0|affix slyly about the carefully pendin| +21199|740159|O|139902.33|1995-06-07|2-HIGH|Clerk#000003956|0|ly regular requests a| +21224|350212|F|17648.46|1994-07-15|4-NOT SPECIFIED|Clerk#000004636|0|e fluffily. final, special frays sleep blithely. blithely un| +21225|733036|O|229215.03|1997-01-23|5-LOW|Clerk#000000893|0|ng somas wake above the express frets. regular pinto beans cajole blithely acc| +21226|615665|O|181378.54|1997-08-10|5-LOW|Clerk#000000115|0|le carefully furiously| +21227|481564|F|194764.19|1993-01-24|2-HIGH|Clerk#000004105|0|ideas along the furiously ironic deposits doub| +21228|376037|F|322780.31|1992-09-10|3-MEDIUM|Clerk#000003662|0|ss packages. furiously fluffy courts ar| +21229|542323|O|165543.61|1995-12-08|4-NOT SPECIFIED|Clerk#000001168|0| pending packages. furiousl| +21230|49555|O|134565.22|1998-02-19|5-LOW|Clerk#000003022|0|t theodolites. carefully bold deposits haggle around the| +21231|362317|P|183900.11|1995-03-13|4-NOT SPECIFIED|Clerk#000004942|0|s. carefully even theodolites integrate fur| +21256|196486|F|293539.37|1992-03-11|3-MEDIUM|Clerk#000001459|0|lithely. furiously pending accounts sleep blithely.| +21257|72563|F|236063.89|1992-09-07|3-MEDIUM|Clerk#000001283|0| platelets haggle carefully fina| +21258|56671|O|209572.97|1996-09-23|3-MEDIUM|Clerk#000000801|0|ly final theodolites integrate carefully under the | +21259|711511|F|66094.98|1992-12-21|1-URGENT|Clerk#000000262|0|ests-- furiously ironic fr| +21260|350566|F|10743.15|1992-07-16|1-URGENT|Clerk#000003708|0| haggle slowly about the unusual, stealthy ideas. finally unusual a| +21261|684848|F|133638.77|1994-03-12|1-URGENT|Clerk#000002092|0|pendencies. quietly express packages wake furiously express, i| +21262|735868|F|328900.34|1992-03-29|2-HIGH|Clerk#000003984|0|quickly ironic deposits. doggedly unusu| +21263|228197|O|19234.56|1996-03-15|4-NOT SPECIFIED|Clerk#000004140|0|l forges. deposits nag slyly slyly even pinto bea| +21288|545662|F|177981.79|1992-07-23|5-LOW|Clerk#000002914|0|ithely regular deposits! express frays sleep c| +21289|686564|O|153975.18|1997-07-30|5-LOW|Clerk#000003599|0|al instructions play regular ideas. ironic, specia| +21290|319492|O|71176.46|1998-02-22|1-URGENT|Clerk#000000002|0|carefully ironic instructions affix over the reques| +21291|446146|F|120013.63|1994-10-06|2-HIGH|Clerk#000003893|0|arefully even requests| +21292|594100|O|176129.94|1998-02-25|4-NOT SPECIFIED|Clerk#000002395|0|uests are blithely after the accounts? silent,| +21293|261866|F|215487.42|1992-04-18|3-MEDIUM|Clerk#000004390|0|ironic requests. slyly even accounts sleep p| +21294|179563|O|83681.55|1996-07-23|2-HIGH|Clerk#000001399|0|final dependencies: some| +21295|638404|O|41045.61|1997-08-18|3-MEDIUM|Clerk#000004147|0|ins sleep fluffily even dolphins. ironic requests sleep f| +21320|152029|O|173417.25|1997-05-11|2-HIGH|Clerk#000000534|0| furiously express requests boost slyly final deposits. express, ironic | +21321|623191|F|48913.23|1992-01-04|4-NOT SPECIFIED|Clerk#000004375|0| platelets. carefully regular theodolites about the blithely regular r| +21322|203626|O|159133.55|1996-12-23|2-HIGH|Clerk#000001481|0| foxes. ironic instructions play furiously fluffily unusual reque| +21323|89339|F|15582.08|1992-06-02|5-LOW|Clerk#000000145|0|es wake carefully unusual excuses.| +21324|8090|O|156300.86|1997-08-20|3-MEDIUM|Clerk#000001091|0|y according to the packages. blithely regular pinto beans haggle car| +21325|212467|F|84259.23|1994-12-10|5-LOW|Clerk#000002702|0|lly even deposits haggle slyly around the even theodolites! furiously unu| +21326|151538|O|190851.01|1998-05-25|3-MEDIUM|Clerk#000001824|0|gside of the carefully fluffy pinto beans. carefully even platelets| +21327|647062|O|57788.92|1996-10-06|2-HIGH|Clerk#000000614|0|sits. carefully ironic packages around | +21352|162571|F|245949.87|1994-10-09|2-HIGH|Clerk#000004688|0|g the slyly ironic theodolites haggle final d| +21353|80695|F|134955.17|1994-02-25|2-HIGH|Clerk#000004051|0|e furiously quickly final foxes. final accounts na| +21354|215404|P|299539.60|1995-03-30|2-HIGH|Clerk#000001556|0|ly unusual asymptotes-- | +21355|23717|F|256363.68|1993-01-05|2-HIGH|Clerk#000003826|0|ncies. furiously pending packages cajole s| +21356|358411|F|258499.36|1994-06-05|3-MEDIUM|Clerk#000004356|0|uternes use furiously final foxes. blithely even accounts s| +21357|562418|F|103181.33|1994-10-12|1-URGENT|Clerk#000003641|0|s affix alongside of the br| +21358|304264|F|167160.42|1993-08-23|2-HIGH|Clerk#000001155|0|quickly express theodolites sleep blithely along the quickly ironic idea| +21359|233392|O|61470.07|1997-01-08|1-URGENT|Clerk#000000885|0|ans. carefully regu| +21384|108377|F|165921.18|1994-03-27|4-NOT SPECIFIED|Clerk#000000389|0|ending dependencies are ironically al| +21385|485362|F|112986.91|1994-03-09|4-NOT SPECIFIED|Clerk#000002128|0|ironic pinto beans. furiously ironic notornis solve care| +21386|477184|F|122151.27|1995-02-10|2-HIGH|Clerk#000002756|0|ackages wake carefully| +21387|252874|O|318446.65|1998-08-02|1-URGENT|Clerk#000000079|0|y unusual theodolites sleep stealthily above the bold idea| +21388|552188|F|115868.84|1992-07-03|5-LOW|Clerk#000000334|0|e alongside of the final instruction| +21389|108223|F|216730.08|1994-04-24|2-HIGH|Clerk#000001328|0|e of the bold excuses. silent, final deposits wake blithely about the bold, f| +21390|123718|O|239165.28|1997-08-30|3-MEDIUM|Clerk#000004364|0|ns across the carefully final depths sleep furious| +21391|297472|F|78042.83|1994-05-20|1-URGENT|Clerk#000002746|0| final instructions: p| +21416|79168|O|252207.18|1996-03-18|2-HIGH|Clerk#000001812|0|final packages haggle. special instructions shall have t| +21417|55802|F|243166.26|1994-06-28|1-URGENT|Clerk#000001859|0|tes nag slyly furiously| +21418|363440|O|161345.83|1997-02-04|2-HIGH|Clerk#000002693|0|cuses? always final deposits nod carefully according| +21419|326419|F|31322.01|1993-08-29|1-URGENT|Clerk#000001405|0|al dolphins cajole furiously. fur| +21420|591368|F|25911.14|1993-02-21|1-URGENT|Clerk#000004508|0|osits integrate thinly carefully special accounts.| +21421|111163|O|259711.26|1997-08-05|4-NOT SPECIFIED|Clerk#000004813|0|requests boost slyly slyly stealthy pinto b| +21422|33943|F|89129.32|1994-10-02|3-MEDIUM|Clerk#000000652|0|ts. furiously regular fox| +21423|479777|F|55688.18|1994-03-15|3-MEDIUM|Clerk#000003638|0|inal deposits wake blithely quickly final exc| +21448|354289|O|21512.07|1996-09-19|1-URGENT|Clerk#000001809|0| bold accounts haggle blithely express package| +21449|256987|O|204035.31|1996-02-24|1-URGENT|Clerk#000002761|0|aringly regular instructions play a| +21450|679354|O|61657.65|1998-02-05|5-LOW|Clerk#000003945|0|y special foxes boost| +21451|631162|F|27550.87|1993-12-25|4-NOT SPECIFIED|Clerk#000002219|0|ilent instructions. ironic, final courts are. bold dependencies | +21452|675721|F|38056.40|1992-11-15|1-URGENT|Clerk#000000979|0|ounts. slyly express platelets integrat| +21453|326747|F|234701.95|1994-03-10|5-LOW|Clerk#000001789|0|ly fluffily pending theodolites. un| +21454|132032|O|152389.87|1996-04-26|4-NOT SPECIFIED|Clerk#000004970|0|ironic dependencies affix carefully according to the accounts. carefully bold | +21455|558086|O|218181.72|1998-01-31|4-NOT SPECIFIED|Clerk#000002865|0|he packages. quickly regular pinto beans according | +21480|249482|O|231960.21|1995-11-18|5-LOW|Clerk#000004111|0|er the ironic accounts. slyly final foxes print. sly| +21481|538036|F|34918.24|1992-03-08|2-HIGH|Clerk#000002731|0|jole slyly fluffily bold theo| +21482|737671|F|86266.24|1994-05-12|2-HIGH|Clerk#000003884|0|sts. carefully unusual excuses boost fluffily ruthless instructions.| +21483|529771|O|284725.68|1997-01-28|4-NOT SPECIFIED|Clerk#000002021|0|ounts. pending platelets along the quickly spec| +21484|583075|F|259258.74|1993-09-08|2-HIGH|Clerk#000002805|0|ounts cajole carefully carefully regular depende| +21485|219455|F|247901.73|1994-02-05|4-NOT SPECIFIED|Clerk#000004940|0|the regular, even ideas. theo| +21486|627464|O|79140.67|1995-09-07|3-MEDIUM|Clerk#000004969|0|y across the ironic ideas. packages unwind furiously around the| +21487|26716|F|130932.20|1992-12-20|5-LOW|Clerk#000000688|0|s grow blithely alongside of the carefully express asymptotes. eve| +21512|506663|O|88974.93|1997-11-21|3-MEDIUM|Clerk#000002208|0| furiously express packag| +21513|719713|F|232011.70|1992-11-24|1-URGENT|Clerk#000001728|0|ironic packages. slyly regula| +21514|212074|O|295521.87|1997-02-01|1-URGENT|Clerk#000003800|0|uickly regular deposits| +21515|303181|O|180475.61|1997-07-09|4-NOT SPECIFIED|Clerk#000003791|0|heodolites across the fluffily express | +21516|58643|O|250678.68|1996-07-14|5-LOW|Clerk#000003225|0|oost across the pending deposits. furiously regular id| +21517|104666|O|316458.91|1995-11-26|1-URGENT|Clerk#000004003|0|y. enticing, regular deposits aga| +21518|365020|F|82915.78|1994-03-16|4-NOT SPECIFIED|Clerk#000000026|0| instructions according to the ironic | +21519|636913|F|85120.93|1994-03-09|5-LOW|Clerk#000003298|0|ts hang quickly-- regularly final packages haggle. qu| +21544|566438|F|50248.63|1994-05-09|1-URGENT|Clerk#000004648|0|al theodolites haggle furiously. slyly even pinto beans cajole after the ide| +21545|371794|F|56727.22|1992-01-19|2-HIGH|Clerk#000002461|0|tions about the blithely ironic packages sleep furiousl| +21546|471680|F|192107.02|1994-06-19|5-LOW|Clerk#000002314|0|ole thinly final, even accounts. furiously even dep| +21547|9577|O|154110.86|1996-07-27|2-HIGH|Clerk#000001752|0| cajole fluffily final, ironic ideas. slyly final pains affix busil| +21548|445675|F|125706.17|1994-07-07|4-NOT SPECIFIED|Clerk#000001259|0|y regular theodolites haggle furiously regular pinto beans. blithely | +21549|191360|O|58782.23|1997-12-07|4-NOT SPECIFIED|Clerk#000004347|0|foxes. fluffily expre| +21550|177986|F|345770.26|1994-07-09|1-URGENT|Clerk#000003175|0|ndencies boost. ironic, regular pinto beans against the final, u| +21551|410633|O|285688.59|1996-02-10|1-URGENT|Clerk#000001543|0|ously according to the furiously silent excuse| +21576|748495|O|38670.23|1998-07-15|2-HIGH|Clerk#000004093|0|ar requests cajole. blithely even instructions haggle quickly | +21577|171913|O|33998.18|1998-05-24|3-MEDIUM|Clerk#000002879|0|osits are alongside| +21578|333122|F|68092.95|1992-03-18|2-HIGH|Clerk#000000648|0|-- packages haggle alongside of the carefull| +21579|26047|O|50454.03|1997-04-13|2-HIGH|Clerk#000001497|0|p never bold instructions. slyly ironic pack| +21580|510563|F|210027.58|1993-08-30|1-URGENT|Clerk#000000282|0|eans. blithely bold dolphins nag blithely. p| +21581|277925|F|76922.27|1992-05-28|3-MEDIUM|Clerk#000000805|0| the quickly ironic warhorses sle| +21582|83246|F|167335.76|1992-01-12|1-URGENT|Clerk#000002330|0|, express accounts integrate. stealthy acco| +21583|360776|F|105777.48|1994-12-21|3-MEDIUM|Clerk#000000991|0| permanently. regular requests nag ironic, quick requests. silent, regular req| +21608|560035|O|169752.76|1998-02-06|5-LOW|Clerk#000004793|0|ress deposits believe after the thin dolphins. furiously careful| +21609|6613|F|76963.52|1994-09-30|3-MEDIUM|Clerk#000003395|0|nt pinto beans. quickly regul| +21610|115513|F|124980.75|1993-02-27|2-HIGH|Clerk#000000275|0|nic multipliers cajole carefully. carefully e| +21611|401725|F|187808.74|1994-04-27|2-HIGH|Clerk#000003989|0|slyly ironic pinto beans| +21612|265897|O|9998.72|1995-10-03|4-NOT SPECIFIED|Clerk#000000731|0|beneath the even packages. furiously special asy| +21613|398644|O|246116.69|1997-05-22|5-LOW|Clerk#000003714|0|ounts-- slyly fluffy deposits hinder furious| +21614|257306|F|213875.71|1993-05-01|4-NOT SPECIFIED|Clerk#000001994|0|ts. theodolites haggle slyly | +21615|33589|O|166141.56|1995-11-16|5-LOW|Clerk#000003596|0| use about the quickly blithe c| +21640|499321|P|333134.90|1995-04-18|4-NOT SPECIFIED|Clerk#000002289|0|xpress packages sleep quickly carefully final dependencies! regular d| +21641|305782|F|54123.16|1992-08-13|2-HIGH|Clerk#000001359|0|c, ironic theodolites. blit| +21642|244876|F|116232.21|1992-08-09|2-HIGH|Clerk#000004848|0|n dolphins boost furiously against the slyly quie| +21643|350245|F|123622.93|1994-05-02|3-MEDIUM|Clerk#000003655|0|osits use furiously. blithely silent dependencies play furiously| +21644|558832|F|176167.72|1994-10-08|5-LOW|Clerk#000002599|0|ove the carefully regular theodolites wake flu| +21645|15161|O|197632.52|1995-12-22|3-MEDIUM|Clerk#000004367|0|to use blithely. slyly f| +21646|559624|O|44503.72|1995-10-18|4-NOT SPECIFIED|Clerk#000001773|0| slyly regular, special theodolites. regular, slow pack| +21647|589555|F|210241.74|1993-12-14|1-URGENT|Clerk#000001237|0|ngside of the pending, even packages. fluffily bold packages across | +21672|393938|O|18856.20|1997-07-10|4-NOT SPECIFIED|Clerk#000004961|0|into beans haggle quickly. slow packa| +21673|650593|O|126811.89|1996-09-12|3-MEDIUM|Clerk#000001058|0|ing theodolites. special pinto beans thrash blithely furiousl| +21674|243538|O|184931.39|1996-11-30|3-MEDIUM|Clerk#000000896|0|ts nag blithely. deposits x-ray furiously even, even platelet| +21675|372286|F|69426.83|1992-11-18|2-HIGH|Clerk#000001521|0|s are alongside of the regular instructions. carefully| +21676|508261|O|157293.92|1998-05-13|4-NOT SPECIFIED|Clerk#000000621|0|t quickly final, bold asymptotes. furi| +21677|581392|O|224769.25|1995-08-25|5-LOW|Clerk#000002228|0| express accounts caj| +21678|438730|O|123783.75|1996-08-17|1-URGENT|Clerk#000000226|0|ily ironic Tiresias wake closely with the quietly final requests. carefully| +21679|462328|F|184499.60|1993-04-06|2-HIGH|Clerk#000002401|0|ly final instructions. regular requests sleep according to the| +21704|344068|O|35340.20|1998-03-04|5-LOW|Clerk#000003210|0|uickly special foxes about the accounts sleep c| +21705|249256|O|198478.14|1998-01-05|4-NOT SPECIFIED|Clerk#000000476|0|s the quickly final theo| +21706|467515|O|64205.25|1997-09-04|5-LOW|Clerk#000001493|0| deposits cajole blithely above the furious instructions. ironic pi| +21707|501011|F|267366.50|1994-09-06|1-URGENT|Clerk#000002271|0|dolites wake carefully along the silent re| +21708|235687|F|90184.90|1993-11-10|1-URGENT|Clerk#000000207|0|nal foxes. platelets wa| +21709|434674|F|56063.58|1992-08-08|4-NOT SPECIFIED|Clerk#000002211|0| silent platelets are furiously about the regular | +21710|564841|O|166823.96|1997-07-27|5-LOW|Clerk#000004380|0|gainst the slyly bold accounts. furiously bold foxes boost regular, even| +21711|511066|O|57245.16|1995-09-26|3-MEDIUM|Clerk#000000807|0|ests nag busily around the carefull| +21736|476866|P|207367.56|1995-04-19|4-NOT SPECIFIED|Clerk#000001564|0|imes along the ironic asymptotes. pinto beans after | +21737|156476|O|432991.78|1998-02-04|5-LOW|Clerk#000000541|0|ic theodolites boost fluffily along the final theodolites-- furiou| +21738|386240|F|169343.43|1993-11-19|3-MEDIUM|Clerk#000003238|0|iously final pinto beans | +21739|277991|F|9089.47|1993-07-19|2-HIGH|Clerk#000004420|0|. foxes wake furiously alo| +21740|429034|F|34599.63|1993-05-31|5-LOW|Clerk#000001107|0|furiously even theodolit| +21741|262454|F|12693.93|1992-04-02|4-NOT SPECIFIED|Clerk#000003005|0|ly pending packages. slyly express theodolites detect. fluffily even id| +21742|311308|F|241845.14|1993-09-07|3-MEDIUM|Clerk#000003428|0|gular packages. blithely ironic theodolites cajole slyly-- ironic instruct| +21743|143545|O|75569.24|1997-07-20|5-LOW|Clerk#000002965|0|. unusual ideas sleep slyly carefully ironic pinto beans. quickly eve| +21768|555148|F|150132.37|1994-06-19|2-HIGH|Clerk#000003704|0|ously special tithes. final, final pack| +21769|370060|O|140988.33|1997-01-18|2-HIGH|Clerk#000001215|0|silent dependencies. requests use blithely blithely ironic a| +21770|588463|F|284127.67|1993-08-25|2-HIGH|Clerk#000002671|0|g the furiously bold packages. carefully spec| +21771|25099|O|96877.46|1997-04-02|1-URGENT|Clerk#000003571|0|pinto beans use slyly carefully even accounts. regula| +21772|325504|O|107378.28|1997-04-19|3-MEDIUM|Clerk#000000693|0|lar requests wake fluffily slyly even packages. pending instructio| +21773|239008|F|153737.02|1994-11-05|2-HIGH|Clerk#000003612|0|fully bold accounts haggle furiously a| +21774|738070|O|285071.31|1998-03-02|1-URGENT|Clerk#000004369|0|ng the carefully bold deposits cajole alongside of the blithely pending ideas.| +21775|460721|O|55282.87|1995-04-09|3-MEDIUM|Clerk#000004069|0|ly bold depths use blithely. pending i| +21800|322657|O|167567.79|1997-06-23|4-NOT SPECIFIED|Clerk#000002442|0|sts detect. furiously regular requests haggle bravely| +21801|369227|F|178147.70|1992-11-15|5-LOW|Clerk#000000771|0| furiously brave foxes alongside of the ironic dependenci| +21802|92642|O|3252.84|1995-11-23|3-MEDIUM|Clerk#000002519|0| final ideas boost fluffily even accounts. enticing ideas after the pack| +21803|31057|O|90050.10|1996-09-08|3-MEDIUM|Clerk#000002523|0|uickly bold requests. special theodolites above the special, re| +21804|694975|O|257091.34|1995-08-01|4-NOT SPECIFIED|Clerk#000004120|0| requests must have to run against the bl| +21805|679927|O|299955.45|1997-07-01|1-URGENT|Clerk#000003993|0|ependencies are slyly. i| +21806|531886|O|175006.29|1996-03-27|4-NOT SPECIFIED|Clerk#000001791|0|ss the bold instructions. furiously unusual deposits are slyly about th| +21807|132662|O|155748.25|1996-10-31|1-URGENT|Clerk#000001188|0|regular deposits integrate slyly according to the ironic accounts. fur| +21832|644165|F|165392.56|1993-02-25|2-HIGH|Clerk#000002411|0|ke furiously slyly even deposits. slyly ironic p| +21833|214984|O|38356.59|1998-06-13|5-LOW|Clerk#000000213|0|ss foxes engage. blithely pending deposits haggle blithely furiously| +21834|453226|F|24441.65|1993-01-09|2-HIGH|Clerk#000003689|0|ross the requests breach blithely special pinto beans. ironic acc| +21835|338500|O|93248.95|1997-03-28|1-URGENT|Clerk#000001471|0|ic, idle foxes? furiously pending d| +21836|418945|O|394526.49|1996-05-20|3-MEDIUM|Clerk#000001851|0|arefully special packages. slyly pending theodolites along | +21837|196069|O|93334.45|1998-05-21|4-NOT SPECIFIED|Clerk#000003921|0|owly. ironic requests use fluffily? sly| +21838|555344|F|145189.97|1994-09-09|4-NOT SPECIFIED|Clerk#000002435|0|ely ironic instructions haggle quickly across the| +21839|664484|F|133225.34|1994-12-14|5-LOW|Clerk#000001006|0|boost quickly. blithely special packages cajole slyly blithely pending req| +21864|473465|P|47364.69|1995-03-16|2-HIGH|Clerk#000002988|0|quests. fluffily even foxes | +21865|23818|O|124477.62|1997-02-26|2-HIGH|Clerk#000001920|0|efully about the final, pending deposits. even requests hinder quickly furi| +21866|553387|F|92271.80|1992-03-23|5-LOW|Clerk#000000382|0|e thinly special packages. accounts cajole slyly about the furio| +21867|747157|F|24345.38|1993-07-29|3-MEDIUM|Clerk#000002511|0|s. bravely special packages haggle ab| +21868|199003|F|157218.18|1992-03-26|2-HIGH|Clerk#000001960|0|efully above the express foxes. express platelets are| +21869|374425|O|121539.99|1996-10-20|1-URGENT|Clerk#000000342|0|y final theodolites wake requests. never bold dolphins sleep| +21870|457711|O|47818.09|1998-01-01|4-NOT SPECIFIED|Clerk#000003636|0| regular requests affix. ironic as| +21871|719005|F|215119.22|1992-11-10|3-MEDIUM|Clerk#000003795|0|wake. bold packages sleep fluffily against the deposits. final, regular pac| +21896|285568|O|111546.17|1996-09-18|5-LOW|Clerk#000001720|0|ages; carefully special r| +21897|262052|O|238586.07|1996-11-18|2-HIGH|Clerk#000004183|0|nts. ironic, regula| +21898|303217|F|103643.85|1994-11-11|2-HIGH|Clerk#000000126|0|lar waters. regular deposits nag boldly. furiously| +21899|651755|O|212487.08|1998-04-23|4-NOT SPECIFIED|Clerk#000002297|0|ccounts integrate never. carefully bold theodolites doubt pending, bold gifts.| +21900|281518|O|96601.59|1996-02-22|2-HIGH|Clerk#000002655|0|latelets. quickly unusual requests nag. final, ironic requests h| +21901|469856|F|226298.95|1994-02-26|1-URGENT|Clerk#000002425|0|y ironic foxes. silent deposits are blithely unusual ideas; depo| +21902|113848|O|24637.53|1996-06-03|2-HIGH|Clerk#000004799|0|lly ironic dependencies. furiously ironic accounts breach slyly. fluffily| +21903|165568|F|168776.37|1993-10-14|3-MEDIUM|Clerk#000002644|0|unusual pinto beans need to breach fluffily never ironic p| +21928|170030|F|113530.08|1994-01-30|3-MEDIUM|Clerk#000000182|0|ironic warthogs sleep slyly unusual deposits. fluffily final theodoli| +21929|189115|F|47448.22|1995-02-19|3-MEDIUM|Clerk#000003226|0|r theodolites are fluffily quickly| +21930|673564|F|149382.94|1992-11-29|3-MEDIUM|Clerk#000000564|0| furiously regular ideas. express accou| +21931|74671|O|101016.92|1996-03-21|1-URGENT|Clerk#000001180|0|s sleep final foxes. instructions | +21932|224113|F|185589.80|1992-11-22|3-MEDIUM|Clerk#000000906|0|l theodolites. fluffily final requests| +21933|153551|O|42504.93|1997-09-06|5-LOW|Clerk#000004174|0|ckly. unusual packages integrate blithely id| +21934|731120|F|282396.88|1993-06-09|5-LOW|Clerk#000003245|0|yly final requests are slyly across the carefully even instructions. furiou| +21935|668542|O|109704.62|1995-07-20|1-URGENT|Clerk#000002516|0|ial foxes use. slyly even instructions wake furiously above th| +21960|426094|F|81499.11|1993-04-29|5-LOW|Clerk#000003548|0|d, pending accounts. blithely regular pinto b| +21961|356308|F|24135.55|1994-04-08|4-NOT SPECIFIED|Clerk#000003368|0|ackages cajole blithely slyly regular foxes. | +21962|443074|O|110753.70|1997-01-15|1-URGENT|Clerk#000003335|0|e furiously. escapade| +21963|727699|O|137908.83|1997-09-11|2-HIGH|Clerk#000002209|0|final deposits-- quickly regular braids amo| +21964|175345|F|35680.91|1994-10-11|3-MEDIUM|Clerk#000000582|0|eep; special tithes are quickly silent| +21965|259069|F|12659.69|1993-02-10|3-MEDIUM|Clerk#000003046|0|sly slyly regular foxes. quickly ironi| +21966|416194|O|157649.25|1997-01-25|1-URGENT|Clerk#000003664|0| slyly even packages ha| +21967|462752|F|94269.66|1992-01-30|4-NOT SPECIFIED|Clerk#000001929|0|he special excuses. bravely even instructions nag blithely according to t| +21992|718153|F|124411.13|1993-07-07|1-URGENT|Clerk#000002584|0|to the carefully unusual packages. ironic, final foxes try to inte| +21993|224170|O|97569.14|1997-04-28|1-URGENT|Clerk#000000009|0|s haggle slyly after the slyly even accounts. furiousl| +21994|368431|F|64621.14|1993-08-05|3-MEDIUM|Clerk#000000266|0| even foxes detect furiously. f| +21995|215984|F|296923.43|1992-05-05|2-HIGH|Clerk#000000604|0|ly express instructions. regular packages haggle furiously carefully pending | +21996|37393|O|52190.70|1995-10-18|3-MEDIUM|Clerk#000002580|0|p. slyly unusual pearls wake. bold pinto bea| +21997|701596|O|193651.09|1997-09-07|1-URGENT|Clerk#000002638|0|s. regular deposits inte| +21998|214747|F|120082.59|1992-08-21|1-URGENT|Clerk#000000625|0|nstructions haggle fluffily carefull| +21999|240580|F|251339.83|1994-02-07|5-LOW|Clerk#000001538|0|le quietly furiously express decoys. furiously ironic th| +22024|158492|F|102470.49|1992-12-21|4-NOT SPECIFIED|Clerk#000004274|0|l requests nag furiously quickly | +22025|521113|F|52595.77|1992-06-15|1-URGENT|Clerk#000001688|0|sly waters haggle slyly against the quickly ironic requests. ir| +22026|575935|P|221148.25|1995-03-30|4-NOT SPECIFIED|Clerk#000002726|0|g the furiously express pl| +22027|230890|O|67246.30|1996-06-13|1-URGENT|Clerk#000003484|0|nic requests. furiously pending i| +22028|54002|F|241845.70|1992-08-10|1-URGENT|Clerk#000001384|0|lent attainments. slyly busy accounts sublate slyly. quickly f| +22029|105145|O|217128.15|1997-11-10|2-HIGH|Clerk#000002746|0|ding to the fluffily ironic deposits haggle furiously instructions| +22030|160090|F|198126.28|1993-06-09|3-MEDIUM|Clerk#000002380|0|ly regular requests around the dependencies use final, pending pinto beans.| +22031|367007|P|65053.88|1995-04-14|3-MEDIUM|Clerk#000002406|0|carefully regular theodolites. blithely regular account| +22056|273757|F|228010.25|1994-08-08|4-NOT SPECIFIED|Clerk#000001952|0|layers according to the always final packages sleep against the flu| +22057|523003|O|148307.50|1996-06-06|1-URGENT|Clerk#000001782|0|pecial requests sleep furiously against the ironic p| +22058|106774|F|71912.63|1993-06-06|5-LOW|Clerk#000004775|0|equests cajole fluffily re| +22059|541408|F|251182.74|1994-01-25|5-LOW|Clerk#000000563|0| the blithely ironic instructions. ironic, daring | +22060|426644|F|201291.45|1992-02-20|3-MEDIUM|Clerk#000002639|0|as. pearls play furiously f| +22061|603877|F|145030.51|1993-03-28|1-URGENT|Clerk#000003789|0|inal requests. quickly ironic warthogs accor| +22062|342589|F|229398.24|1993-02-21|2-HIGH|Clerk#000002479|0|ess requests are quickly among the unus| +22063|114859|O|93161.98|1995-05-15|3-MEDIUM|Clerk#000003460|0|hin packages among the ide| +22088|658037|F|147359.07|1993-10-02|3-MEDIUM|Clerk#000003295|0|ly ironic multipliers haggle blithely after the doggedly unus| +22089|115082|F|196094.93|1992-09-26|1-URGENT|Clerk#000003548|0|ular theodolites. carefully pending tithes cajole| +22090|674866|O|29572.58|1996-02-03|5-LOW|Clerk#000001220|0|ng packages. final, even packages | +22091|219631|O|89924.70|1995-12-28|5-LOW|Clerk#000002393|0|lithely. furiously u| +22092|577537|F|287611.65|1995-01-28|1-URGENT|Clerk#000002775|0|affix carefully. slyly fina| +22093|163463|O|191279.40|1996-09-04|4-NOT SPECIFIED|Clerk#000000106|0|ccounts! ideas against t| +22094|65713|O|111850.37|1995-08-28|2-HIGH|Clerk#000003725|0|fully bold, ironic epitaphs. furiously even packages at the slyly regul| +22095|415103|O|94389.96|1997-03-31|2-HIGH|Clerk#000002979|0|counts at the final deposits mold furiously caref| +22120|127735|O|251097.32|1997-02-23|1-URGENT|Clerk#000002181|0|dolites across the dependencies are against the ironic platelets.| +22121|333616|O|247336.62|1996-10-26|2-HIGH|Clerk#000001923|0| the unusual packages. fu| +22122|68041|O|137927.85|1997-08-20|4-NOT SPECIFIED|Clerk#000000885|0|ironic, silent accounts are among the ironic requests. ironic deposits | +22123|540760|O|246869.78|1995-10-30|4-NOT SPECIFIED|Clerk#000001515|0|ites boost. furiously unusual accounts across the slowly bold requ| +22124|22060|O|38852.52|1996-05-22|5-LOW|Clerk#000001882|0|special theodolites according to the sl| +22125|260782|F|276816.59|1993-07-06|3-MEDIUM|Clerk#000001936|0| the quickly regular foxes | +22126|685403|F|19442.49|1994-12-11|3-MEDIUM|Clerk#000003282|0|sual, ironic deposits. regular, regular packages haggl| +22127|308935|O|106936.07|1995-07-08|3-MEDIUM|Clerk#000003519|0| furiously pending accounts wake. fina| +22152|6985|O|73070.38|1997-11-06|3-MEDIUM|Clerk#000000863|0|lar accounts wake across the bol| +22153|379562|O|317614.34|1997-02-03|4-NOT SPECIFIED|Clerk#000001595|0|unts. special, even deposi| +22154|537754|F|217755.39|1993-03-07|4-NOT SPECIFIED|Clerk#000003230|0|e express theodolites. furiously| +22155|514661|O|124016.53|1998-05-19|1-URGENT|Clerk#000000228|0|accounts. slyly regular platelets boost| +22156|144608|O|340119.89|1997-07-31|1-URGENT|Clerk#000003478|0|ly express dependencies sleep carefully re| +22157|416869|F|213340.21|1994-11-11|4-NOT SPECIFIED|Clerk#000003871|0|efully express requests. slyly ironic packages sleep carefully ex| +22158|539743|F|201077.21|1994-02-20|1-URGENT|Clerk#000003332|0|he ironic accounts. furiously pending instructions affix final, regular f| +22159|201634|F|169776.82|1992-01-09|5-LOW|Clerk#000001646|0| patterns nag carefully slyly ironic dependencies. carefully special accounts| +22184|350707|F|288233.83|1994-10-26|1-URGENT|Clerk#000003380|0|ular packages cajole about the fluffily regular dep| +22185|53938|O|144130.80|1996-12-14|3-MEDIUM|Clerk#000001222|0|e furiously. even dinos nag carefully about the slyly regula| +22186|513566|O|47492.99|1997-04-07|3-MEDIUM|Clerk#000000895|0|blithely furiously final asymptotes. even, final| +22187|492857|O|323557.55|1998-03-01|1-URGENT|Clerk#000002615|0|ites. pending packages will have to haggle. asymptotes cajole never around the| +22188|442496|F|140894.12|1994-09-11|4-NOT SPECIFIED|Clerk#000004017|0|s. final instructions eat sometimes along the slyly special packages. blithely| +22189|25933|F|1681.10|1995-01-17|2-HIGH|Clerk#000002467|0|ns. slyly final requests are! careful requests use about the sly| +22190|78949|O|250840.38|1996-10-06|1-URGENT|Clerk#000002325|0| even theodolites w| +22191|133741|O|267524.92|1995-10-28|5-LOW|Clerk#000000262|0| courts. carefully unusual packages solve slyly across the carefully unusual | +22216|17083|F|305245.40|1994-05-05|5-LOW|Clerk#000002770|0|lar patterns wake furiously abo| +22217|609692|O|315647.43|1996-01-28|3-MEDIUM|Clerk#000004720|0|refully regular deposits need to are. furiously ev| +22218|577321|O|156753.50|1997-12-29|2-HIGH|Clerk#000002510|0|ar, even pinto beans. carefully ironic deposits| +22219|268273|F|234747.39|1995-03-10|1-URGENT|Clerk#000001246|0|fully ironic instructions; quickly regu| +22220|604351|F|30238.71|1993-11-15|3-MEDIUM|Clerk#000000482|0|y according to the care| +22221|69251|F|212556.86|1993-04-13|1-URGENT|Clerk#000000379|0|fully regular accounts| +22222|638917|O|200342.35|1998-07-26|2-HIGH|Clerk#000004594|0|impress blithely foxes. doggedl| +22223|497038|F|189681.81|1994-07-09|1-URGENT|Clerk#000003341|0| blithely ironic instructions; blithely silent excuses kindle blithely. f| +22248|184814|O|254227.96|1996-11-16|5-LOW|Clerk#000002455|0|nal pinto beans. ironic instructions lose carefully blithely enticing | +22249|407923|O|122635.19|1997-06-25|2-HIGH|Clerk#000002770|0|ly at the packages. special, bli| +22250|188695|O|137524.06|1996-07-20|3-MEDIUM|Clerk#000000747|0|even accounts according to the blithely final i| +22251|365039|O|120792.80|1998-02-02|3-MEDIUM|Clerk#000004349|0| packages wake fluffily. bold, regular sentiment| +22252|208922|O|58961.98|1997-03-27|1-URGENT|Clerk#000002662|0|sts haggle blithely final foxes. flu| +22253|590078|O|116856.86|1996-11-26|1-URGENT|Clerk#000004740|0|ress excuses about the packages boost furiously even, final request| +22254|186071|O|329526.73|1997-11-21|5-LOW|Clerk#000000467|0|ash according to the packages. slyly furious foxes c| +22255|537370|F|159576.09|1994-12-01|1-URGENT|Clerk#000002186|0|onic packages. slyly ironic instructions across t| +22280|67985|F|131982.30|1995-01-10|2-HIGH|Clerk#000003478|0|ngside of the quickly bold packages. regular accounts of t| +22281|357176|F|193580.65|1994-06-08|5-LOW|Clerk#000003957|0|express deposits. ironic sheaves nag blithely always pending pinto beans. foxe| +22282|56812|F|203391.97|1993-02-07|5-LOW|Clerk#000000890|0|unusual requests thrash slyly among the quickly regular instructions. f| +22283|57614|O|299357.92|1998-06-03|3-MEDIUM|Clerk#000000394|0|cajole thinly. slyly express requests haggle along the quick| +22284|51779|F|67112.01|1994-12-10|2-HIGH|Clerk#000002564|0|uthlessly even deposits a| +22285|236677|P|52187.51|1995-03-16|3-MEDIUM|Clerk#000001716|0|carefully final theodolites. carefully fi| +22286|577265|O|25317.72|1997-11-13|2-HIGH|Clerk#000005000|0|final packages are. quickly ironic instructions haggle f| +22287|80189|O|71334.24|1996-12-13|3-MEDIUM|Clerk#000004772|0|yly. unusual pinto beans hinder carefully multiplie| +22312|721990|O|99499.23|1996-01-11|4-NOT SPECIFIED|Clerk#000003947|0| ironic excuses cajole furiously carefully express packages. final or| +22313|204122|F|110364.49|1995-02-03|3-MEDIUM|Clerk#000001307|0|old requests. bold fo| +22314|166804|O|43453.38|1995-05-30|4-NOT SPECIFIED|Clerk#000003554|0| pinto beans boost am| +22315|700426|O|305938.68|1995-12-14|4-NOT SPECIFIED|Clerk#000000545|0|lithely final accounts are quickly outside t| +22316|48823|F|152949.89|1992-10-31|4-NOT SPECIFIED|Clerk#000002273|0|e furiously about the idly ironic theodolites. quickly final deposits x-ray ex| +22317|46133|O|168123.51|1996-12-14|2-HIGH|Clerk#000004257|0|ts can use blithely sly, ironic theodolite| +22318|606001|O|59287.00|1995-10-15|2-HIGH|Clerk#000002089|0| the blithely pending ideas. bold i| +22319|39244|O|110348.46|1998-03-17|1-URGENT|Clerk#000003675|0|ic, even accounts wake furiously furiously pending | +22344|299029|O|157794.86|1995-07-27|1-URGENT|Clerk#000002003|0|n deposits are after the carefully thin excuses. blithe| +22345|14066|F|284186.66|1992-09-20|4-NOT SPECIFIED|Clerk#000000345|0|deposits. ironic, fluffy sentiments sleep. blithely pending requests afte| +22346|150883|F|267048.93|1994-07-27|2-HIGH|Clerk#000000325|0|riously after the quickly express packages. blithely iro| +22347|119054|F|65341.10|1993-08-15|5-LOW|Clerk#000002898|0|he ironic accounts. furiously regular theodolites are caref| +22348|685672|O|199517.07|1997-10-04|4-NOT SPECIFIED|Clerk#000002201|0|structions. regular excuses amon| +22349|338677|O|27404.49|1996-06-17|5-LOW|Clerk#000002015|0|s, ironic deposits wake around the carefully unusual excuses. slyly f| +22350|382237|O|256809.92|1997-10-25|1-URGENT|Clerk#000004653|0|e furiously even Tiresias haggle slyly ironic, eve| +22351|500140|O|27396.40|1996-10-04|4-NOT SPECIFIED|Clerk#000001741|0| blithely silent packages. package| +22376|581783|F|36324.34|1992-06-29|5-LOW|Clerk#000001804|0|even dolphins affix. slow foxes are. furiously thin accou| +22377|269947|O|266905.57|1996-05-02|3-MEDIUM|Clerk#000003087|0|ar instructions haggle slyly according to the fox| +22378|232991|F|88690.44|1992-06-02|3-MEDIUM|Clerk#000002367|0|are quickly after the carefully ironic dependencies. caref| +22379|126319|O|310920.25|1998-02-03|3-MEDIUM|Clerk#000000534|0| even pinto beans are. slyly bold packages sleep carefully| +22380|521140|O|281265.93|1996-12-04|5-LOW|Clerk#000003718|0|es across the regular, regular c| +22381|285757|O|297595.03|1997-07-16|4-NOT SPECIFIED|Clerk#000001761|0|ar requests wake! ironic instructions sleep quickly.| +22382|437672|O|49249.29|1997-02-21|1-URGENT|Clerk#000000726|0|counts wake slyly special decoys. p| +22383|694597|F|303909.06|1992-01-11|4-NOT SPECIFIED|Clerk#000001670|0|ously final asymptotes nag. furiously regular instruction| +22408|311683|O|126382.66|1998-06-21|1-URGENT|Clerk#000001250|0|ng the platelets. bold deposits cajole. final courts are fluffily special, r| +22409|450397|O|61682.95|1996-08-11|4-NOT SPECIFIED|Clerk#000002797|0|slyly ironic deposits should have to wake carefully special accounts. fluff| +22410|71341|O|223627.56|1997-05-03|1-URGENT|Clerk#000003472|0|le dependencies. acco| +22411|524332|F|45139.73|1993-02-10|4-NOT SPECIFIED|Clerk#000003750|0| quickly tithes. instructions cajole blithely alongside of t| +22412|691997|F|271317.08|1994-06-20|2-HIGH|Clerk#000001058|0|d courts. special packag| +22413|138682|F|54860.71|1993-03-19|3-MEDIUM|Clerk#000000102|0|ar orbits grow blithely despite the slyly enticing reque| +22414|569449|F|10347.51|1993-05-04|4-NOT SPECIFIED|Clerk#000001679|0|usly final theodolites. instructions wake. qui| +22415|728329|F|1261.94|1994-07-01|5-LOW|Clerk#000003843|0| the ironic requests cajole| +22440|244130|O|148039.16|1996-04-06|4-NOT SPECIFIED|Clerk#000003722|0|ideas. bold excuses wake. slyl| +22441|591827|F|26564.03|1994-10-16|1-URGENT|Clerk#000000013|0|er even requests haggle blithely. regular platelets use. ironic foxes na| +22442|321425|O|65493.93|1996-01-24|3-MEDIUM|Clerk#000000073|0|ct against the blithely ironic theodolites. slyly special requests x-ray blit| +22443|676115|O|130573.67|1996-08-08|3-MEDIUM|Clerk#000001010|0| blithely across the deposits? carefully regular deposits grow carefu| +22444|208117|O|12808.83|1997-08-10|5-LOW|Clerk#000003373|0|cross the quickly express package| +22445|546842|O|2925.15|1998-03-17|2-HIGH|Clerk#000002968|0|gular ideas. quickly regular accounts along the blithely final braids ar| +22446|259241|F|103528.36|1994-02-04|4-NOT SPECIFIED|Clerk#000000408|0|e the carefully final frays. carefully daring ideas use blithely | +22447|301412|F|313767.27|1994-05-12|2-HIGH|Clerk#000002086|0|wake furiously. special| +22472|328733|F|80078.35|1992-01-28|3-MEDIUM|Clerk#000003242|0| the regular packages. furiously unusual id| +22473|514798|O|136552.61|1997-08-18|3-MEDIUM|Clerk#000001973|0|ar packages boost silently above the fur| +22474|200579|O|48763.64|1996-12-26|3-MEDIUM|Clerk#000004200|0|e blithely. fluffily regular theodolites cajole blithely ac| +22475|625189|O|66846.04|1996-08-10|2-HIGH|Clerk#000002183|0|inal theodolites. pinto beans sl| +22476|36382|O|244767.23|1996-05-26|5-LOW|Clerk#000003199|0|r platelets wake. furiously express foxes sleep carefully. | +22477|199816|F|188283.03|1992-11-10|3-MEDIUM|Clerk#000001687|0|s wake. ironic, even accounts sleep above the| +22478|555496|F|106158.37|1992-01-22|5-LOW|Clerk#000002744|0| against the blithely express dependenc| +22479|212296|F|104911.89|1994-05-02|2-HIGH|Clerk#000001108|0|eans nag blithely. ruthless, | +22504|298093|O|48073.13|1995-07-19|3-MEDIUM|Clerk#000001358|0|ts wake furiously final pinto beans. quickly regular instructions after the| +22505|41617|O|51018.02|1995-11-14|1-URGENT|Clerk#000001007|0|ffily final theodolites s| +22506|434632|F|46361.54|1994-06-12|2-HIGH|Clerk#000000020|0|thin foxes. final, pending asymptotes sleep fluffily above the bold id| +22507|609158|F|14630.50|1992-10-07|3-MEDIUM|Clerk#000001712|0|usly. quickly pending theodolites mold furiously final | +22508|610438|O|222706.90|1995-09-25|4-NOT SPECIFIED|Clerk#000003366|0|ages are carefully express, special packages. | +22509|372877|F|50640.32|1993-10-23|2-HIGH|Clerk#000003272|0| instructions. carefully final| +22510|685369|F|57888.08|1994-02-09|4-NOT SPECIFIED|Clerk#000000707|0|ccounts are permanently according to the even pinto beans. silent| +22511|479552|F|21224.77|1994-12-20|2-HIGH|Clerk#000000304|0|al courts against the ironic dinos sleep furiously after the even, ironi| +22536|330298|O|38697.03|1997-03-25|4-NOT SPECIFIED|Clerk#000001347|0|counts cajole deposits. blithely pending accounts use slyly s| +22537|545362|O|59949.52|1995-06-21|4-NOT SPECIFIED|Clerk#000003522|0|nusual platelets use carefully about the pen| +22538|147812|F|235318.50|1992-06-04|2-HIGH|Clerk#000001670|0| carefully regular instructions. careful| +22539|272459|O|85773.45|1995-08-13|5-LOW|Clerk#000001746|0|pending platelets. quickly final r| +22540|455524|F|213960.02|1994-07-20|5-LOW|Clerk#000000732|0|e blithely according to the regular ideas. furiously pending id| +22541|727453|F|56569.00|1994-05-25|3-MEDIUM|Clerk#000002758|0|es. ironic packages run slyly slyly regular asympt| +22542|524186|F|146745.77|1993-06-22|4-NOT SPECIFIED|Clerk#000002497|0|e silently. quickly ironic courts sublate. slyly special deposits above | +22543|478358|O|17323.90|1997-10-06|1-URGENT|Clerk#000004472|0|l have to believe slyly special platelets. boldly bold theodolites b| +22568|502966|F|82605.47|1993-07-04|5-LOW|Clerk#000001707|0|mptotes. furiously final asymptotes boost furio| +22569|86893|F|101662.39|1993-05-04|1-URGENT|Clerk#000002525|0|use around the fluffily unusual dec| +22570|129250|O|58308.10|1997-12-14|5-LOW|Clerk#000000900|0|es. even packages haggle carefully. carefully regular accounts haggle quiet| +22571|293767|O|111326.16|1996-12-06|5-LOW|Clerk#000003966|0|xpress requests cajole furiously along the furiously final package| +22572|86440|F|151252.91|1994-11-28|5-LOW|Clerk#000002875|0|s. sometimes pending foxes are carefully among the fluffily ironic dolphins| +22573|37820|P|311083.17|1995-05-31|2-HIGH|Clerk#000000087|0|gle. silent deposits are accord| +22574|388486|O|67755.77|1997-05-29|1-URGENT|Clerk#000002711|0|s poach blithely fluffily silent reque| +22575|530413|F|200087.99|1992-01-21|5-LOW|Clerk#000000264|0|phs sleep carefully final deposits. blithely special requests eat care| +22600|124207|O|121319.24|1998-04-04|4-NOT SPECIFIED|Clerk#000003998|0|y even dependencies| +22601|290774|O|181471.52|1996-08-23|5-LOW|Clerk#000003118|0|ost after the pinto beans. carefully regular pinto beans | +22602|29899|F|131650.33|1994-05-21|5-LOW|Clerk#000001423|0|y packages. carefully express foxes | +22603|740327|O|152618.09|1997-12-11|2-HIGH|Clerk#000001588|0|fter the quickly brave theodolites haggle fluffily slyly regular account| +22604|163841|O|190766.50|1997-11-17|3-MEDIUM|Clerk#000003641|0|rding to the unusual, ironic instruct| +22605|422869|O|10394.35|1997-06-05|1-URGENT|Clerk#000003514|0| packages against the regular packages poach sl| +22606|140429|O|216296.59|1996-01-30|4-NOT SPECIFIED|Clerk#000002492|0|y theodolites. blithely quick accounts haggle furi| +22607|685216|F|55470.25|1992-03-13|5-LOW|Clerk#000001123|0|ly express excuses. final dependencies along the slyly ironic ideas cajole| +22632|160874|F|35482.32|1994-07-10|1-URGENT|Clerk#000002766|0|l ideas after the furiously regular asymptotes nag at the bl| +22633|43042|F|153045.26|1994-03-27|5-LOW|Clerk#000003710|0|to the blithely express foxes: furiously ironic foxes haggle blithely before t| +22634|394874|F|61106.11|1993-09-15|2-HIGH|Clerk#000004571|0|riously against the blithely f| +22635|640651|F|113955.16|1993-09-01|5-LOW|Clerk#000004751|0|osits. quickly unusual packages in| +22636|419810|O|282512.41|1998-01-19|1-URGENT|Clerk#000003895|0| unusual requests nag| +22637|494158|F|330073.65|1992-06-22|4-NOT SPECIFIED|Clerk#000004721|0| packages cajole. ideas boost fluffi| +22638|546292|F|327403.15|1994-09-08|3-MEDIUM|Clerk#000003617|0|y ironic packages wake carefully slyly final depos| +22639|23476|F|196984.87|1992-10-03|3-MEDIUM|Clerk#000002194|0| deposits wake carefully about the boldly specia| +22664|43768|O|325275.63|1996-02-27|2-HIGH|Clerk#000000462|0|ully. blithely regular sauternes wake after the final, express deposi| +22665|583303|O|74441.32|1996-03-22|4-NOT SPECIFIED|Clerk#000001336|0|he regular dolphins. slyly fina| +22666|291167|O|208834.02|1995-06-29|3-MEDIUM|Clerk#000004854|0| platelets use. final packages integrate fluffily a| +22667|640753|O|314002.45|1995-12-14|3-MEDIUM|Clerk#000004958|0|uickly final deposits | +22668|611710|F|293260.45|1992-03-12|2-HIGH|Clerk#000004274|0|l pinto beans wake fluffil| +22669|734545|F|300726.47|1993-12-22|3-MEDIUM|Clerk#000004060|0|g to the slyly express dependencies na| +22670|488140|F|103066.96|1992-09-03|1-URGENT|Clerk#000000490|0|inst the furiously regular ideas cajole s| +22671|665008|O|241518.77|1997-06-26|5-LOW|Clerk#000001777|0|e. quickly bold pinto beans dazzle. final pack| +22696|265576|O|227007.93|1998-04-04|2-HIGH|Clerk#000002535|0|regular packages wake furiously according to the evenly pending accounts. the| +22697|265984|F|229392.12|1994-05-22|3-MEDIUM|Clerk#000002784|0|ully silent deposits try to poach platelets. blithely ironic accounts print af| +22698|361018|F|168836.83|1994-12-16|2-HIGH|Clerk#000002781|0| pinto beans across the sl| +22699|106096|F|62613.19|1992-07-02|2-HIGH|Clerk#000004528|0|dolphins. express reque| +22700|399250|O|59375.58|1997-07-09|1-URGENT|Clerk#000002067|0|efully ironic instructions use thinly bold requests. unusual packages sle| +22701|693770|F|5646.50|1993-05-03|3-MEDIUM|Clerk#000001979|0| beans wake furiously fluffily regul| +22702|679625|O|60766.80|1997-06-15|5-LOW|Clerk#000003370|0|ickly across the slyly final excuses. furiously regula| +22703|706759|O|69390.67|1996-05-24|4-NOT SPECIFIED|Clerk#000003915|0|lithely ironic accounts haggle bravely after the si| +22728|730874|F|252424.83|1993-03-02|1-URGENT|Clerk#000004563|0| to the furiously ironic pinto beans unwind blit| +22729|288907|F|19830.48|1992-07-08|2-HIGH|Clerk#000003722|0|ss, silent theodolites breach furiously fluffily ironic waters! | +22730|157186|F|27211.96|1995-04-10|4-NOT SPECIFIED|Clerk#000001622|0|e carefully. excuses boost slyly carefully final deposits. express de| +22731|296617|O|105080.61|1996-02-06|2-HIGH|Clerk#000001389|0|ual asymptotes dazzle blithely final foxes! theodolites are. deposits inside| +22732|719738|O|22417.08|1995-12-11|1-URGENT|Clerk#000002941|0|inst the even foxes. furiously unusual accounts wake slyly above the bli| +22733|631891|F|14669.03|1995-01-11|2-HIGH|Clerk#000003700|0|packages sleep. blithely bold | +22734|187444|O|101658.52|1996-05-21|1-URGENT|Clerk#000001939|0|uriously after the even, unusual dependencies. theodolites | +22735|361534|O|82707.60|1998-02-19|3-MEDIUM|Clerk#000004759|0|p above the slyly unusual dolphins. excuses wake sometime| +22760|535718|F|227441.59|1993-01-01|2-HIGH|Clerk#000003836|0|ith the ironic, ironic deposits. slyly ironic dep| +22761|48787|O|165423.63|1998-06-10|5-LOW|Clerk#000000065|0|old requests! ironic, final i| +22762|186106|O|133642.99|1998-02-13|3-MEDIUM|Clerk#000004125|0|s! furiously bold deposits against the requests thrash around the qui| +22763|360220|O|124220.26|1997-03-28|5-LOW|Clerk#000003520|0|regular requests. silent theodolites wak| +22764|193504|F|284526.70|1994-12-05|1-URGENT|Clerk#000004650|0| regular requests. pinto beans wake. slyly even pinto beans across the slyl| +22765|199834|O|207477.66|1997-06-28|2-HIGH|Clerk#000003698|0|heodolites wake quickly! ir| +22766|88555|F|136299.08|1993-12-31|2-HIGH|Clerk#000000895|0|ully bold pinto beans are ironic dependenc| +22767|322364|O|239765.77|1996-04-28|5-LOW|Clerk#000003902|0|ptotes boost carefully according to the ev| +22792|714682|F|162879.14|1994-05-17|3-MEDIUM|Clerk#000001286|0|mong the furiously unus| +22793|405601|O|264671.86|1998-05-25|4-NOT SPECIFIED|Clerk#000000952|0|ep slyly. packages are slyly pending, final fo| +22794|160501|F|30976.79|1994-08-16|5-LOW|Clerk#000003600|0|osits. fluffily bold deposits cajole quickly blithely| +22795|510790|O|256372.36|1997-02-08|2-HIGH|Clerk#000003816|0|rate fluffily. quickly regular packages cajole blithely a| +22796|334834|F|93283.26|1992-01-05|2-HIGH|Clerk#000000981|0|lithely ironic deposit| +22797|292808|O|219075.86|1997-01-05|3-MEDIUM|Clerk#000001125|0|counts. slyly silent excuses nag boldly. fluffily | +22798|468302|O|189527.38|1996-07-06|4-NOT SPECIFIED|Clerk#000004392|0|quick deposits are fluffily| +22799|251194|O|164174.14|1997-08-31|3-MEDIUM|Clerk#000002539|0|ns along the blithely bold platelets wake across th| +22824|45809|F|176530.56|1994-07-27|5-LOW|Clerk#000000248|0|ng pinto beans. quic| +22825|407146|F|40602.25|1992-05-12|4-NOT SPECIFIED|Clerk#000002104|0|ts cajole blithely. pending deposits nag flu| +22826|629227|F|243047.37|1992-09-02|4-NOT SPECIFIED|Clerk#000001332|0|y final instructions. ironic| +22827|400624|O|204099.27|1998-06-24|2-HIGH|Clerk#000000396|0|ts. furiously regular instructions boost carefully | +22828|515845|F|88444.61|1992-01-05|1-URGENT|Clerk#000004188|0|ly slyly final pinto beans. ironic, unusual pinto bea| +22829|526769|F|145725.68|1993-05-24|5-LOW|Clerk#000000268|0|usual platelets. pending, regular requests x-ray quickly furiously ex| +22830|401747|O|222895.10|1996-09-20|3-MEDIUM|Clerk#000003764|0|ously along the carefully quick theodolites. blithely unus| +22831|650584|F|35250.30|1994-11-27|3-MEDIUM|Clerk#000000518|0|, even requests alongside of the ideas use against the slyly even e| +22856|92662|F|117512.96|1994-08-18|3-MEDIUM|Clerk#000002463|0|le. blithely unusual pinto bea| +22857|336808|F|164065.39|1993-04-21|5-LOW|Clerk#000002682|0|the asymptotes. even, regular deposits a| +22858|448861|F|303115.68|1994-06-21|2-HIGH|Clerk#000001675|0|yly? pending packages s| +22859|474148|O|371707.91|1995-10-07|2-HIGH|Clerk#000000488|0| along the express foxes. bold dolphins sleep always abou| +22860|251926|O|129165.05|1995-05-14|1-URGENT|Clerk#000001587|0|ptotes according to the slyly regular accounts are about the forges. unusua| +22861|367135|O|221816.13|1997-02-11|3-MEDIUM|Clerk#000000985|0|refully pending theodolites wake. fluffily bold package| +22862|167957|F|1360.84|1993-09-14|2-HIGH|Clerk#000004201|0|lithely unusual accounts. slyly unusual ideas must have to | +22863|595243|O|162827.56|1996-01-21|3-MEDIUM|Clerk#000003949|0| somas nag slyly among the bli| +22888|741403|P|164303.22|1995-05-04|1-URGENT|Clerk#000000929|0|etect carefully whithout the qu| +22889|241363|F|151822.27|1994-08-07|1-URGENT|Clerk#000004502|0|quickly bold deposits. slyly special accounts cajole slyly about the dogged | +22890|582637|F|146017.62|1994-03-06|1-URGENT|Clerk#000003367|0| regular deposits cajole | +22891|375854|O|68050.87|1997-11-24|1-URGENT|Clerk#000003088|0|structions. carefully silent req| +22892|464899|O|230374.81|1995-08-18|4-NOT SPECIFIED|Clerk#000000988|0|lar instructions wake along the special, unusual packages| +22893|29920|F|338409.24|1993-10-12|2-HIGH|Clerk#000003884|0|e pending, even accounts. carefully re| +22894|343465|F|137614.92|1993-08-03|5-LOW|Clerk#000002531|0|tructions are slyly through| +22895|596149|F|150346.70|1992-03-14|3-MEDIUM|Clerk#000003189|0|itaphs x-ray. fluff| +22920|218414|O|132664.65|1995-10-26|4-NOT SPECIFIED|Clerk#000001217|0|mptotes. quickly regular pinto beans boost. pending orbits affix carefully f| +22921|372358|F|159555.51|1995-01-05|4-NOT SPECIFIED|Clerk#000002697|0|ly pending packages. final, even r| +22922|192119|O|11822.57|1997-08-28|4-NOT SPECIFIED|Clerk#000002131|0|ar pinto beans cajole slyly unusual dependencies. thinly regular requests un| +22923|177799|F|223042.14|1992-05-27|2-HIGH|Clerk#000002974|0|y ironic foxes. pending asymptotes boost q| +22924|266692|F|57459.92|1994-06-16|5-LOW|Clerk#000004120|0|rious, express requests ha| +22925|289196|O|233834.25|1996-07-12|2-HIGH|Clerk#000003200|0|lithely silent foxes. stealthy packages alongside of the fl| +22926|513427|F|80134.79|1994-02-27|2-HIGH|Clerk#000002917|0| quickly ideas! carefully pen| +22927|415315|F|175681.05|1992-09-06|2-HIGH|Clerk#000000683|0|y final instructions print. never even platelets haggl| +22952|683147|F|202380.50|1993-09-06|5-LOW|Clerk#000003531|0| final excuses will h| +22953|642124|O|257743.91|1996-08-19|1-URGENT|Clerk#000002257|0|ily regular accounts along the carefully pending | +22954|426340|F|148740.22|1993-01-12|1-URGENT|Clerk#000002436|0|frays affix carefully. furiously final requests cajole furiousl| +22955|739252|F|6141.15|1993-11-04|1-URGENT|Clerk#000002400|0| of the deposits eat quickly furiously bold requests. blithe| +22956|102467|O|110631.83|1995-08-28|4-NOT SPECIFIED|Clerk#000002427|0|ructions are fluffily special dependencies. bli| +22957|158441|O|281141.06|1996-05-13|4-NOT SPECIFIED|Clerk#000004946|0|among the final, special Tiresi| +22958|407686|O|51884.93|1997-06-10|1-URGENT|Clerk#000000039|0|nts. slyly dogged instructions wake quickly. ironic, express platel| +22959|715418|O|90125.05|1997-05-16|5-LOW|Clerk#000004345|0|. requests are quickly furiously ironic deposits-- reque| +22984|23830|F|371048.15|1992-06-26|4-NOT SPECIFIED|Clerk#000002810|0|y silent, regular requests. blithely regular dependencies boost blithely abov| +22985|10160|O|286532.32|1997-07-20|2-HIGH|Clerk#000002287|0|e furiously bold deposits are carefully slyl| +22986|508405|O|95442.14|1996-07-18|5-LOW|Clerk#000003896|0|nding accounts. furiously ironic foxes sleep. carefully ironic acc| +22987|730516|F|154089.91|1994-02-07|1-URGENT|Clerk#000003337|0| ironic courts. pending accounts are slyly| +22988|275573|F|117273.30|1993-09-24|3-MEDIUM|Clerk#000004337|0|ges along the furiously regular idea| +22989|301315|O|74576.14|1998-06-21|3-MEDIUM|Clerk#000002077|0|s. quickly ironic accounts along the ironic ac| +22990|175447|P|174647.94|1995-03-11|5-LOW|Clerk#000000169|0|tions haggle against the carefully even accounts. carefully ironi| +22991|466088|O|316673.32|1995-07-31|3-MEDIUM|Clerk#000001111|0|symptotes. even platelets wake quickly according to the exp| +23016|537589|F|26000.48|1993-12-22|5-LOW|Clerk#000002756|0|lyly regular accounts detect furiously across the fluffil| +23017|734083|O|336703.08|1997-10-25|4-NOT SPECIFIED|Clerk#000001453|0|ully unusual requests. quickly bo| +23018|221740|O|144328.99|1997-04-20|5-LOW|Clerk#000001927|0| slyly brave accounts sleep. carefully ironic deposits af| +23019|2281|F|81584.07|1992-01-12|3-MEDIUM|Clerk#000001172|0| even, ironic asymptote| +23020|80260|O|85991.33|1998-02-19|5-LOW|Clerk#000000996|0|sleep along the carefull| +23021|426032|P|270026.09|1995-04-10|5-LOW|Clerk#000000077|0|heodolites. carefully regular requests along the ironic theodolites caj| +23022|69370|F|244721.65|1992-04-13|1-URGENT|Clerk#000003675|0|nt theodolites impress instructions; furiously sil| +23023|389794|O|307309.37|1998-07-26|4-NOT SPECIFIED|Clerk#000002013|0|pecial platelets. blithely regular accounts| +23048|647|F|256864.47|1992-01-08|1-URGENT|Clerk#000001479|0|e carefully bold theodolites haggle blithely at the theodolites. silent cou| +23049|358078|O|28470.44|1996-08-17|5-LOW|Clerk#000000942|0| nag carefully silent deposits. car| +23050|212674|F|149809.53|1993-09-15|2-HIGH|Clerk#000004744|0|ructions cajole ironic | +23051|661460|F|106155.93|1994-08-15|2-HIGH|Clerk#000004840|0|are. even deposits sleep. unusual, express platelets boost slyly above| +23052|642178|O|222346.94|1998-05-07|2-HIGH|Clerk#000000240|0|quests haggle quickly blithely ironic asymptotes. even platelets wa| +23053|564937|F|25664.28|1992-04-30|3-MEDIUM|Clerk#000002282|0|osits. bravely permanent a| +23054|625297|F|188050.93|1993-09-22|2-HIGH|Clerk#000003351|0|ickly pending deposits haggle| +23055|336244|F|285098.90|1992-05-09|4-NOT SPECIFIED|Clerk#000003942|0|ual accounts about the blithely bold re| +23080|721108|F|360713.28|1995-02-17|5-LOW|Clerk#000003086|0|en courts are carefully-- accounts cajole regular, silent theodolites| +23081|383863|O|231016.75|1996-02-07|4-NOT SPECIFIED|Clerk#000002157|0|ake at the pending accounts. furiously ironic theodolites are quickly| +23082|67735|F|38829.95|1992-06-04|3-MEDIUM|Clerk#000001819|0| theodolites integrate ruthlessly. silent ide| +23083|660751|O|98202.27|1996-12-07|1-URGENT|Clerk#000001650|0|out the carefully special theodolites wake of the furiously final| +23084|711533|O|157924.72|1995-09-16|4-NOT SPECIFIED|Clerk#000004111|0|nal foxes. furiously final pinto beans c| +23085|723202|F|63727.45|1992-08-21|2-HIGH|Clerk#000001217|0|furiously final depths sleep across the blithe i| +23086|343555|O|190062.04|1996-05-15|1-URGENT|Clerk#000000553|0|inal requests are. fluffily even foxes wake quietly ironic accoun| +23087|622075|F|84918.31|1992-10-22|4-NOT SPECIFIED|Clerk#000003408|0|ing escapades. boldly even deposits are | +23112|186928|O|141374.35|1996-09-22|3-MEDIUM|Clerk#000002227|0|fluffily final packages. furiously regular instru| +23113|692137|O|26510.31|1996-06-29|4-NOT SPECIFIED|Clerk#000003156|0|ial dugouts. regular, silent theodolites against t| +23114|240302|F|373195.13|1992-11-25|4-NOT SPECIFIED|Clerk#000000632|0|ly quickly ironic accounts. idle accounts | +23115|4804|O|34168.35|1996-09-02|2-HIGH|Clerk#000002479|0|al requests. slyly unusual instructions according to the carefull| +23116|481909|O|25007.32|1996-05-04|3-MEDIUM|Clerk#000001399|0|. ideas wake furiously. carefully iron| +23117|183871|F|252406.93|1993-07-07|2-HIGH|Clerk#000003176|0| the warhorses integrate carefully among the stealthy | +23118|294721|F|207474.88|1993-10-20|4-NOT SPECIFIED|Clerk#000003628|0|e of the furiously express accounts! furiously bold braids cajole blith| +23119|363977|O|264441.55|1996-10-09|4-NOT SPECIFIED|Clerk#000000276|0|. furiously ironic theodolites boost car| +23144|360128|O|264022.53|1996-03-29|5-LOW|Clerk#000000501|0|osits kindle after the carefull| +23145|155053|O|200487.90|1995-05-05|3-MEDIUM|Clerk#000002730|0|coys haggle quickly. blithely busy packages are carefully| +23146|455089|O|124947.85|1998-01-14|3-MEDIUM|Clerk#000002061|0|ly final pinto beans sleep from the final, ironic depo| +23147|172456|F|188623.77|1994-06-25|2-HIGH|Clerk#000002972|0|until the carefully even requests de| +23148|454645|O|119959.97|1995-12-01|5-LOW|Clerk#000001927|0| print carefully eve| +23149|193714|F|210392.27|1994-09-15|2-HIGH|Clerk#000000551|0|ns along the carefully ironic requests sleep quickly unusual pi| +23150|746206|F|139806.36|1994-06-28|1-URGENT|Clerk#000000778|0|al platelets haggle attainments. blithely regular depo| +23151|720919|O|171424.61|1996-08-18|1-URGENT|Clerk#000004746|0|odolites breach slyly furiousl| +23176|206518|F|206129.51|1992-06-16|3-MEDIUM|Clerk#000000117|0|n instructions poach carefully blithely regular requests. blithely| +23177|672274|P|367129.46|1995-04-26|4-NOT SPECIFIED|Clerk#000000901|0|equests cajole fluffily even pinto beans. carefully express a| +23178|139849|F|304360.54|1993-12-02|4-NOT SPECIFIED|Clerk#000004270|0|g blithely express dependencies. dinos wake. furiously regular dependencies sl| +23179|660301|F|92942.20|1993-03-01|4-NOT SPECIFIED|Clerk#000003181|0|s accounts mold carefu| +23180|646541|O|243729.53|1997-03-31|4-NOT SPECIFIED|Clerk#000003290|0|mong the carefully pending requests. slyly unusual packages above the ca| +23181|402569|O|89536.96|1995-08-16|1-URGENT|Clerk#000001765|0|ccounts promise ruthlessly blithely even accou| +23182|222305|F|54582.20|1993-08-04|2-HIGH|Clerk#000003648|0|slyly final platelet| +23183|528607|O|253804.63|1996-04-24|3-MEDIUM|Clerk#000003981|0|ording to the bold, even packages. slyly even requests promise quickly ruthle| +23208|526945|O|265898.59|1996-11-12|4-NOT SPECIFIED|Clerk#000004631|0|deas cajole quickly carefully| +23209|335755|O|68810.24|1995-07-03|1-URGENT|Clerk#000000279|0|requests. ironic deposits ought to kindle across the| +23210|23137|F|57967.31|1993-03-14|3-MEDIUM|Clerk#000004573|0|lyly according to the final| +23211|332885|F|110076.20|1992-10-21|3-MEDIUM|Clerk#000001476|0|ilent, even attainments use according to the blithely special | +23212|538138|O|182313.88|1998-03-30|3-MEDIUM|Clerk#000002312|0|he permanent attainments. careful| +23213|226576|O|265502.87|1996-08-14|5-LOW|Clerk#000004460|0|y ironic sauternes haggle quickly against the quickly special platelets. | +23214|286114|F|177779.66|1994-06-21|4-NOT SPECIFIED|Clerk#000004071|0|grate fluffily final requests? blithely regular deposits dazz| +23215|440488|F|321860.71|1994-06-08|4-NOT SPECIFIED|Clerk#000000417|0|ly enticing account| +23240|13679|O|377976.61|1995-06-18|1-URGENT|Clerk#000003126|0|ronic foxes. furiously ironic forges at the package| +23241|399301|F|84284.69|1994-11-06|5-LOW|Clerk#000000627|0|idly. pearls print blithely. fluffily fi| +23242|28270|F|62787.41|1992-06-23|1-URGENT|Clerk#000001968|0|nic packages cajole quickly furiously regul| +23243|376477|F|225771.14|1993-10-18|3-MEDIUM|Clerk#000002006|0|hely among the carefully silent requests? slyly ironic foxes cajole sl| +23244|446548|O|299286.37|1996-02-16|2-HIGH|Clerk#000004519|0|ndencies. bold accounts promise furiously acr| +23245|603829|F|15965.13|1992-04-28|3-MEDIUM|Clerk#000002597|0|carefully daring instructions. quickly special deposits according to t| +23246|277939|O|3328.35|1997-08-31|4-NOT SPECIFIED|Clerk#000003444|0|st the express, final instructions affix above the slyly even deposits. c| +23247|313606|P|162406.12|1995-04-21|5-LOW|Clerk#000002691|0|ly bold requests. slyly regular foxes according to the furi| +23272|511148|F|81641.76|1992-09-30|1-URGENT|Clerk#000002153|0| regular pinto beans. fluff| +23273|358189|F|197215.46|1995-01-21|3-MEDIUM|Clerk#000004680|0|use blithely for the d| +23274|549932|O|41009.17|1995-11-24|1-URGENT|Clerk#000003158|0| detect across the quickly express pa| +23275|453187|F|41951.93|1994-10-08|1-URGENT|Clerk#000001075|0| final requests cajole quickly alon| +23276|441676|F|27013.57|1992-10-21|5-LOW|Clerk#000003127|0|t instructions sleep slyly about the carefully regular courts. fur| +23277|465368|F|243552.13|1992-02-21|5-LOW|Clerk#000000168|0| regular theodolites sleep fluffil| +23278|433004|F|148528.26|1992-03-28|3-MEDIUM|Clerk#000001080|0|ngside of the regular platelets. slyly| +23279|247891|O|119812.48|1996-01-06|1-URGENT|Clerk#000002635|0| regular theodolites boost special accou| +23304|50614|O|143193.70|1996-12-10|2-HIGH|Clerk#000003239|0|ic requests. ironic ideas across the regular deposits wake carefully e| +23305|153593|F|23949.03|1994-02-21|3-MEDIUM|Clerk#000002450|0|final foxes wake slyly even, regular ideas. furiously unusual in| +23306|677422|F|223682.38|1994-11-09|1-URGENT|Clerk#000002736|0|ts cajole quickly about the blithely | +23307|421132|O|204834.44|1997-04-05|2-HIGH|Clerk#000004652|0|yly ironic deposits. sl| +23308|187103|O|13757.85|1996-09-08|5-LOW|Clerk#000003857|0|theodolites. regular, regular pinto beans cajole furiously slyly speci| +23309|635233|O|107613.29|1996-01-09|5-LOW|Clerk#000000858|0|gular accounts across the slyly regular deposits affix slyly final a| +23310|78227|O|224666.00|1996-12-07|1-URGENT|Clerk#000001697|0|eas cajole after the fluffily special foxes. slyly final ideas haggl| +23311|2807|O|136024.31|1998-01-16|4-NOT SPECIFIED|Clerk#000002191|0|ng pinto beans haggle slyly after th| +23336|676043|O|164601.09|1997-01-07|5-LOW|Clerk#000003136|0|the instructions. sile| +23337|504349|O|209717.82|1998-01-27|2-HIGH|Clerk#000003512|0| cajole furiously. fluffily silent packages haggle bold, unusual foxes. quic| +23338|68302|O|289783.33|1996-02-15|2-HIGH|Clerk#000003697|0|e even deposits. final foxes after the ironic pinto beans haggle blithely| +23339|421339|O|12610.85|1995-12-02|2-HIGH|Clerk#000001596|0| across the express asymptotes. final, even pinto beans sleep carefu| +23340|668609|O|181433.70|1996-03-23|2-HIGH|Clerk#000001074|0| notornis haggle regular excuse| +23341|49523|F|82957.54|1994-06-13|4-NOT SPECIFIED|Clerk#000001472|0|ven packages sleep blithely final | +23342|566569|F|134448.87|1995-02-20|4-NOT SPECIFIED|Clerk#000000695|0|press, enticing accounts. car| +23343|303443|F|143680.88|1992-12-26|2-HIGH|Clerk#000004538|0|ideas about the blithely express deposits sleep slyly quickly quiet | +23368|702236|O|266601.23|1997-06-23|3-MEDIUM|Clerk#000004909|0|s sleep: special packages wake requests. slyly unusual ideas haggle unti| +23369|465673|O|246616.05|1998-04-03|1-URGENT|Clerk#000004291|0|y regular pinto beans cajole| +23370|286511|O|60556.47|1996-02-03|4-NOT SPECIFIED|Clerk#000003316|0|he quickly bold instructions unwind across the accounts. blithel| +23371|388585|F|226077.82|1994-10-10|4-NOT SPECIFIED|Clerk#000002876|0|ng to the fluffily express accounts-- idly final courts thrash furious| +23372|669670|O|155846.58|1997-04-11|5-LOW|Clerk#000000251|0|gside of the final deposits. ironic, even dolphins| +23373|641432|O|50349.51|1998-01-02|3-MEDIUM|Clerk#000002365|0| carefully dogged requests. furious| +23374|31225|F|32524.49|1994-05-19|3-MEDIUM|Clerk#000000407|0|according to the blithely final accounts cajole special packages. theodolit| +23375|540643|O|210032.92|1997-09-19|4-NOT SPECIFIED|Clerk#000001871|0|ss frays integrate. qui| +23400|319696|O|402031.84|1998-03-02|3-MEDIUM|Clerk#000001285|0|owly. furiously regular instructions haggle. packages boost slyly regular| +23401|127036|F|14561.46|1992-08-13|5-LOW|Clerk#000003445|0|sits can detect carefully ironic deposits. evenly special sh| +23402|570631|O|267334.09|1997-06-12|4-NOT SPECIFIED|Clerk#000004772|0| about the packages wake among the dogged dinos. regular, bo| +23403|311689|F|239184.72|1993-06-17|1-URGENT|Clerk#000002061|0|refully furious packages. furiously sly instructions cajole blit| +23404|525131|F|184595.63|1992-09-28|1-URGENT|Clerk#000000739|0|e of the furiously ironic multipliers. carefully ironic packages are fin| +23405|625681|O|225898.69|1997-03-21|2-HIGH|Clerk#000002484|0|kly final packages along the expr| +23406|49555|F|154887.91|1992-01-30|5-LOW|Clerk#000000243|0|rate furiously according to the regular foxes.| +23407|342107|O|285311.36|1997-12-06|2-HIGH|Clerk#000004362|0|gular dolphins. quickly ironic foxes use slyly. fi| +23432|283033|O|131178.79|1997-05-12|5-LOW|Clerk#000004573|0|ges? depths hinder blith| +23433|410720|O|304963.16|1998-07-25|1-URGENT|Clerk#000001536|0|gular requests. blithely furious theodoli| +23434|707368|F|225453.06|1994-09-16|2-HIGH|Clerk#000000248|0|regular multipliers.| +23435|473312|O|185699.75|1995-09-17|4-NOT SPECIFIED|Clerk#000001138|0|cajole blithely for the furiously pending accounts. furiously fin| +23436|443206|O|143026.32|1997-05-24|3-MEDIUM|Clerk#000001899|0|gle carefully around the pending depos| +23437|703888|F|76600.20|1992-07-03|2-HIGH|Clerk#000003774|0| fluffily furiously unusua| +23438|487453|O|158738.74|1995-08-26|1-URGENT|Clerk#000003210|0|across the slyly final dependencies. qui| +23439|365053|O|158800.79|1995-05-14|1-URGENT|Clerk#000002142|0|fully. foxes about the furiously bold accounts are s| +23464|434932|O|46972.94|1996-01-29|3-MEDIUM|Clerk#000000342|0|deas sublate. furiously ironic packages haggle. deposits boost slyly. expres| +23465|388324|F|271944.24|1993-05-07|5-LOW|Clerk#000002072|0|ructions affix. slyly ironic packages sleep care| +23466|56566|F|139686.98|1994-08-23|3-MEDIUM|Clerk#000004011|0|ts. silently pending platelets from the blithely pending dolphi| +23467|435880|O|335286.13|1996-10-24|5-LOW|Clerk#000004351|0|ackages. carefully regular asymptotes are ironically | +23468|570266|F|255257.75|1992-05-28|5-LOW|Clerk#000004336|0|nding, ironic theodolites. carefully ironic ideas wake quickly. quickly ir| +23469|210559|O|251384.72|1996-06-23|4-NOT SPECIFIED|Clerk#000001212|0|y across the slow requests. regularly final | +23470|361238|O|189097.18|1998-02-28|3-MEDIUM|Clerk#000000560|0|beans wake slyly. blithely ironic foxes across the bold, bo| +23471|62908|F|144683.84|1992-06-16|2-HIGH|Clerk#000000651|0|lly even theodolites sleep carefully. re| +23496|523387|O|266695.70|1995-10-11|2-HIGH|Clerk#000002106|0|ounts across the blithely quick deposits integrate carefully ca| +23497|548126|F|185381.66|1995-03-12|5-LOW|Clerk#000004040|0|ly special excuses wak| +23498|100258|F|134307.60|1994-07-10|1-URGENT|Clerk#000000315|0|iously ironic packages use. blithely final pinto beans haggle fluffily ironi| +23499|536182|F|197115.47|1994-06-15|4-NOT SPECIFIED|Clerk#000001697|0|r deposits kindle carefully blithe gifts. quickly final packages ar| +23500|339254|F|85386.88|1992-08-27|1-URGENT|Clerk#000001746|0|ymptotes. slyly final deposits along the regular i| +23501|327530|F|28680.67|1992-03-24|2-HIGH|Clerk#000004912|0| deposits. final gifts boost blithely after the regu| +23502|531901|O|114757.92|1996-07-07|5-LOW|Clerk#000002313|0|ously silent deposits against the fluffily bold deposits ha| +23503|382609|F|197730.63|1992-11-01|2-HIGH|Clerk#000001712|0|uests haggle about the sly| +23528|736|F|131894.31|1992-08-04|1-URGENT|Clerk#000003475|0|zle furiously even accounts. final packages nag. regular dolphins ar| +23529|354355|F|80355.69|1993-06-04|5-LOW|Clerk#000000007|0|leep carefully unusual requests. instructions are carefully car| +23530|633163|F|143573.78|1992-06-10|1-URGENT|Clerk#000002905|0| ideas sleep-- unusual, express packages | +23531|559378|O|33391.96|1995-08-25|1-URGENT|Clerk#000002112|0|ng to the regular req| +23532|208999|O|79651.41|1995-12-13|3-MEDIUM|Clerk#000004797|0| quickly bold theodolites are alongside of the iro| +23533|386455|O|150082.54|1997-01-13|2-HIGH|Clerk#000002688|0|ses; furiously stealthy requests thrash furiously across the | +23534|118375|O|240593.80|1995-06-26|1-URGENT|Clerk#000004409|0|carefully. unusual, bold accounts cajole ironic requests. carefully eve| +23535|514150|O|141252.71|1998-02-02|3-MEDIUM|Clerk#000004061|0|olites. furiously regular courts| +23560|543137|F|83901.54|1994-02-17|4-NOT SPECIFIED|Clerk#000001668|0| are fluffily among the unusual, ironic deposits. silent| +23561|237916|F|321089.23|1992-03-24|1-URGENT|Clerk#000003238|0|press ideas wake quickly alongside | +23562|394352|F|69754.82|1994-05-17|4-NOT SPECIFIED|Clerk#000004259|0|lyly ironic courts. regular pinto beans doubt| +23563|121933|O|177723.92|1995-11-29|3-MEDIUM|Clerk#000000747|0|n deposits. carefully ironic dependencies above the bold pinto bean| +23564|311210|O|148676.17|1997-05-20|3-MEDIUM|Clerk#000000634|0|ithely around the blithely special foxes. platelets| +23565|1933|O|11585.07|1996-08-10|3-MEDIUM|Clerk#000001824|0|nstructions. even requests cajole along the blithely bold foxes. | +23566|227935|O|248791.79|1998-01-25|5-LOW|Clerk#000003912|0|s cajole slyly along the unus| +23567|631309|F|51482.81|1994-12-05|4-NOT SPECIFIED|Clerk#000003111|0|counts. carefully regular tithes are. furiously eve| +23592|138691|O|77308.23|1997-01-02|1-URGENT|Clerk#000000230|0|along the regular waters wake carefully abov| +23593|715984|F|156815.53|1992-03-03|4-NOT SPECIFIED|Clerk#000002671|0|ly even foxes are slyly about the e| +23594|510335|O|265450.99|1996-04-15|3-MEDIUM|Clerk#000003918|0|. blithely even instructions sleep. r| +23595|192578|F|9448.27|1992-03-18|5-LOW|Clerk#000003871|0|g the blithely ironic requests engage about the carefully regu| +23596|398248|O|207338.24|1996-01-30|1-URGENT|Clerk#000004260|0|sits sublate furiously about the carefully unusua| +23597|322411|F|112066.74|1992-02-09|2-HIGH|Clerk#000003811|0|slyly final pinto beans. quickly ironic courts cajole blit| +23598|748961|O|180502.94|1997-11-12|1-URGENT|Clerk#000004674|0|ending theodolites might nag bold, bold braids. carefully ironic realms haggle| +23599|524465|O|52897.32|1995-08-22|4-NOT SPECIFIED|Clerk#000000766|0|ithely final ideas cajole slyly after the unusual Tiresias. | +23624|680936|F|90659.91|1992-05-14|4-NOT SPECIFIED|Clerk#000003436|0|ly pending foxes. even, e| +23625|225847|O|58484.01|1995-05-26|1-URGENT|Clerk#000000860|0|o beans. regular sauternes about the packages haggle above the fluffily bold| +23626|56503|O|162920.05|1995-11-03|2-HIGH|Clerk#000004974|0|ng packages. quickly unusual sentiments| +23627|138130|O|69218.83|1997-04-14|2-HIGH|Clerk#000002974|0|onic decoys was blithely by the slyly| +23628|297532|F|208216.85|1994-11-02|3-MEDIUM|Clerk#000001630|0|regular requests along the slow pinto beans use b| +23629|364754|O|152247.91|1997-12-04|5-LOW|Clerk#000001354|0|furiously. permanently ruthless packages wake quickly after the r| +23630|668815|O|118249.71|1995-08-11|2-HIGH|Clerk#000003024|0|y unusual requests across the deposits haggle blithely above the blithel| +23631|498574|O|24361.50|1998-06-07|1-URGENT|Clerk#000002918|0|special requests. regular foxes haggle ruthlessly express deposits. request| +23656|526537|F|273855.72|1992-03-31|4-NOT SPECIFIED|Clerk#000001960|0|ly final deposits. blithely ruthless d| +23657|235414|O|48068.29|1996-04-07|5-LOW|Clerk#000003516|0|fully regular requests wake slyly ironic foxes. unusual deposits eat. slyly re| +23658|345436|O|217527.83|1996-12-31|5-LOW|Clerk#000003255|0|lithely. furiously silent accounts solve carefully against the quick| +23659|739322|O|218392.55|1998-01-20|4-NOT SPECIFIED|Clerk#000002650|0|slyly quickly express deposits. bold foxes haggl| +23660|528829|F|121757.30|1994-12-04|3-MEDIUM|Clerk#000002732|0|ts should boost about the fluffily enticing accounts. ideas sleep bli| +23661|524533|O|242288.81|1998-02-15|1-URGENT|Clerk#000001541|0|pending instructions after the blithely final requests wake furiou| +23662|304652|F|284121.92|1995-02-25|3-MEDIUM|Clerk#000003110|0|olites sleep blithely fluffily regular packages.| +23663|20122|O|261645.08|1998-06-15|1-URGENT|Clerk#000001416|0|ly ironic warhorses should cajole quickly requests.| +23688|685369|F|98904.79|1994-06-15|4-NOT SPECIFIED|Clerk#000000916|0|iously. final pinto beans alo| +23689|468059|O|131392.60|1996-04-24|5-LOW|Clerk#000000805|0|ts after the final, regular requests sleep blithely never even dolphi| +23690|667055|O|174429.31|1995-12-01|3-MEDIUM|Clerk#000002319|0|e quickly. bold ideas boost according to the ironic accounts: express | +23691|188947|O|388974.70|1998-04-15|4-NOT SPECIFIED|Clerk#000004097|0|uthlessly ironic deposits play dolphins; pending, even | +23692|120094|O|72379.44|1997-06-18|2-HIGH|Clerk#000001627|0|carefully final requests above the ironic dep| +23693|153772|O|18110.13|1997-04-04|1-URGENT|Clerk#000002628|0| ideas. quickly pending theodolites poach blithely even deposits. bold | +23694|663959|O|150396.25|1996-12-21|5-LOW|Clerk#000000086|0| blithely final accounts haggle about the accounts. blithely ruthless noto| +23695|642433|O|95307.33|1995-12-02|5-LOW|Clerk#000003427|0|riously unusual ideas near the express depen| +23720|361349|O|148304.83|1997-04-21|1-URGENT|Clerk#000004086|0| ironic packages unwind quickly unusual accounts. slyly | +23721|431587|O|86004.12|1996-06-19|2-HIGH|Clerk#000002633|0|ickly regular packages solve express| +23722|406448|F|122370.80|1993-06-03|5-LOW|Clerk#000001091|0|final deposits. even instructions dazzle blithely. ironic pac| +23723|164092|O|62836.18|1996-11-21|3-MEDIUM|Clerk#000003909|0|lyly ironic braids nag. quickl| +23724|116308|F|29703.02|1992-09-20|2-HIGH|Clerk#000003770|0|ly. furiously final | +23725|271156|O|247165.25|1996-07-31|3-MEDIUM|Clerk#000000728|0|ts may dazzle quickly even theodolites. even, even theodo| +23726|317296|F|372545.19|1993-03-21|2-HIGH|Clerk#000004553|0|lithely regular accounts? thin, even instructions beside the sometimes regul| +23727|279409|F|42142.64|1994-09-20|4-NOT SPECIFIED|Clerk#000001474|0| slowly express ideas integrate | +23752|273752|F|267255.19|1993-04-15|2-HIGH|Clerk#000001451|0|t the sometimes bold accounts. express dugouts according t| +23753|447541|O|171697.36|1997-12-22|4-NOT SPECIFIED|Clerk#000004107|0|ffy accounts wake. sly| +23754|69421|O|25125.41|1995-12-13|5-LOW|Clerk#000002592|0|sts boost furiously. slyly final theodolites wak| +23755|494891|F|230954.59|1993-06-12|2-HIGH|Clerk#000003407|0|deposits nod blithely about the even notornis.| +23756|122072|F|135315.15|1992-11-11|2-HIGH|Clerk#000001350|0|egular deposits are. slyly dogged dolphins haggl| +23757|412174|F|362400.10|1993-04-10|2-HIGH|Clerk#000004308|0|le against the daring requests. carefu| +23758|388114|F|74252.66|1992-02-14|1-URGENT|Clerk#000000243|0|le furiously pending pinto| +23759|260668|O|83791.56|1997-07-26|2-HIGH|Clerk#000001352|0|ding requests. slyly even theodolites sleep unusual warhorses. dog| +23784|294437|O|8416.00|1997-08-30|3-MEDIUM|Clerk#000000837|0|ully final packages haggle sl| +23785|89137|F|167210.34|1994-11-28|1-URGENT|Clerk#000004319|0| beans. dependencies eat fluffily requests| +23786|365965|O|73728.44|1996-01-15|5-LOW|Clerk#000000079|0|fily ironic dependencies cajole ac| +23787|742600|F|311547.56|1994-11-30|5-LOW|Clerk#000000515|0|es alongside of the slyly express| +23788|114878|F|117780.93|1995-02-07|3-MEDIUM|Clerk#000000770|0|boost. carefully final| +23789|245596|O|73963.51|1997-04-01|4-NOT SPECIFIED|Clerk#000002849|0|, silent foxes-- furiously pending| +23790|471422|F|264873.33|1992-03-15|4-NOT SPECIFIED|Clerk#000003203|0|bove the carefully specia| +23791|188018|O|39616.68|1997-10-19|3-MEDIUM|Clerk#000002710|0|fully final hockey players. regular, re| +23816|258472|O|31801.61|1997-05-02|3-MEDIUM|Clerk#000004669|0| unusual, ironic accounts. acc| +23817|111254|F|203333.24|1992-12-02|2-HIGH|Clerk#000001540|0|es sleep furiously. bold deposits haggle outsid| +23818|92129|O|109481.56|1998-04-07|5-LOW|Clerk#000003729|0|ate against the slyly pending packages. c| +23819|397054|O|53704.22|1998-03-08|4-NOT SPECIFIED|Clerk#000001824|0|counts maintain-- furiously special packages run carefully. blithely regular | +23820|529207|O|61351.90|1998-04-24|3-MEDIUM|Clerk#000003280|0|es. carefully regular instruction| +23821|111016|O|219460.27|1998-01-26|5-LOW|Clerk#000001808|0|y special pinto beans boost| +23822|572911|O|33906.89|1996-03-02|1-URGENT|Clerk#000000530|0| instructions sleep across the silent dolphins. slyly final | +23823|396145|O|142691.12|1998-06-10|1-URGENT|Clerk#000004502|0| deposits impress carefully package| +23848|238303|O|2154.15|1997-07-14|4-NOT SPECIFIED|Clerk#000002933|0|f the slyly special packages. bravely unusua| +23849|138404|F|70086.60|1994-10-22|3-MEDIUM|Clerk#000001314|0|ructions. fluffily unusual depos| +23850|390481|F|127805.51|1993-12-29|4-NOT SPECIFIED|Clerk#000002130|0| fluffily regular theodolites. | +23851|289184|F|79254.06|1994-12-26|1-URGENT|Clerk#000004732|0|ending, regular ideas affix carefully across the final foxes. iro| +23852|307973|O|65646.20|1997-05-27|3-MEDIUM|Clerk#000004963|0|eans eat blithely along the ironic, permanent pint| +23853|351070|O|119969.72|1995-09-20|4-NOT SPECIFIED|Clerk#000004125|0|ending theodolites. pending, even deposits behind the blithely iro| +23854|160031|P|102490.30|1995-05-05|2-HIGH|Clerk#000004929|0|ully ironic deposits. regular, regular accounts boost carefully along| +23855|138187|O|7623.20|1995-12-25|1-URGENT|Clerk#000001824|0|oxes run slyly pendi| +23880|487207|F|72235.55|1993-10-17|2-HIGH|Clerk#000003086|0| warthogs. instructions sleep dependencies. regular accounts | +23881|732172|F|18515.74|1993-05-05|2-HIGH|Clerk#000000748|0|yly pending ideas cajole alongside of | +23882|360725|O|124035.56|1996-11-17|4-NOT SPECIFIED|Clerk#000001974|0|about the slyly final requests boost among the final accounts. theodoli| +23883|441326|F|26686.61|1995-02-22|4-NOT SPECIFIED|Clerk#000002337|0|usual dependencies impress among the silent pinto beans. p| +23884|608089|F|35000.73|1992-08-14|3-MEDIUM|Clerk#000000706|0|s haggle quickly. carefully pend| +23885|624860|F|116022.11|1994-11-03|3-MEDIUM|Clerk#000003496|0|sts. fluffily slow idea| +23886|519043|F|145498.04|1994-05-21|3-MEDIUM|Clerk#000000643|0| the furiously unusual packages caj| +23887|301270|O|66408.57|1996-02-07|2-HIGH|Clerk#000000513|0|gle. blithely regular requests acco| +23912|171620|O|133678.61|1997-05-01|2-HIGH|Clerk#000000785|0|ole furiously around the f| +23913|660757|O|223614.48|1998-01-07|2-HIGH|Clerk#000003175|0|tructions? thin deposits haggle | +23914|77461|O|57916.14|1996-06-28|2-HIGH|Clerk#000004864|0|yly even instructions haggle carefully slyly even deposits. even instructio| +23915|626689|F|164878.13|1994-12-06|1-URGENT|Clerk#000002700|0| requests sleep furiously | +23916|497390|O|324203.85|1995-10-01|1-URGENT|Clerk#000002569|0|ing, express deposits nag quickly packages. blithel| +23917|127153|F|292009.48|1994-10-15|5-LOW|Clerk#000001641|0|along the quickly blithe depe| +23918|301633|O|188926.92|1996-06-21|5-LOW|Clerk#000000279|0|blithely final deposits. ironic, u| +23919|275086|F|367628.04|1993-09-12|1-URGENT|Clerk#000002068|0| sauternes haggle fluffily slowly ironic accounts. | +23944|338680|O|66729.17|1998-05-23|3-MEDIUM|Clerk#000004582|0|around the special theodo| +23945|438424|O|230873.96|1995-12-06|5-LOW|Clerk#000004875|0|o beans nag fluffily about the express accounts. slyly ironic requests af| +23946|559921|O|183192.27|1995-09-30|4-NOT SPECIFIED|Clerk#000002516|0|onic packages. stealt| +23947|322391|F|295565.01|1993-02-20|4-NOT SPECIFIED|Clerk#000003974|0|brave pinto beans nag about| +23948|419245|F|166278.73|1992-08-18|3-MEDIUM|Clerk#000000473|0| blithely regularly regular theodolites. blit| +23949|718990|O|106660.82|1995-10-26|5-LOW|Clerk#000004150|0|g accounts among the stealthily unusual deposits nag furiou| +23950|34318|F|89070.94|1995-01-25|2-HIGH|Clerk#000002964|0|even foxes. unusual packages use furiously. spe| +23951|4439|O|343489.49|1995-06-21|5-LOW|Clerk#000003490|0|fily even deposits cajole express packages. iron| +23976|355558|F|55267.44|1992-11-21|5-LOW|Clerk#000000194|0|dugouts along the ironic ideas are slyly according to the blithely | +23977|606569|O|44597.16|1997-12-30|2-HIGH|Clerk#000004833|0|its along the ironic platelets impress sl| +23978|604897|F|17527.44|1993-07-14|2-HIGH|Clerk#000003044|0|ts; blithely regular packages alongside of the ironic instruction| +23979|223097|O|144417.48|1997-06-10|2-HIGH|Clerk#000002154|0|bold foxes according to the silent ideas wake carefully fur| +23980|340534|O|191942.96|1998-06-23|2-HIGH|Clerk#000001547|0|ructions with the slyly ironic tithes doze after the slowly eve| +23981|71561|O|241581.41|1995-12-04|4-NOT SPECIFIED|Clerk#000002852|0|egular deposits cajole bold instructions.| +23982|467515|P|303711.11|1995-03-30|5-LOW|Clerk#000003093|0|e furiously unusual excuses. never even requests hag| +23983|493075|F|93392.11|1993-12-29|4-NOT SPECIFIED|Clerk#000003082|0|the blithely even packages. | +24008|356371|O|220945.94|1996-11-11|1-URGENT|Clerk#000001113|0|s sublate. regular pinto beans detect: slyly regular ideas are | +24009|878|F|257025.09|1993-07-04|2-HIGH|Clerk#000000463|0|odolites? pending foxes wake about the carefully unusual packages. sly| +24010|493606|F|242135.47|1992-03-27|1-URGENT|Clerk#000002798|0|ites cajole quickly quickly | +24011|285088|O|77448.58|1996-11-30|2-HIGH|Clerk#000001176|0|pecial packages nag quickly. carefully | +24012|452251|F|149611.67|1994-05-21|2-HIGH|Clerk#000004969|0|ns. packages wake carefully silent requests-- final foxes cajole requests.| +24013|453235|F|130803.39|1994-11-06|1-URGENT|Clerk#000000615|0|g sometimes express pinto beans! special, unusual deposits wake blithely | +24014|517417|F|89729.15|1993-02-05|1-URGENT|Clerk#000000357|0|s use except the slyly silent dependenci| +24015|721435|O|79316.93|1996-07-14|1-URGENT|Clerk#000000484|0| deposits cajole slyly even packages. quickly| +24040|650437|O|143907.33|1996-07-13|5-LOW|Clerk#000003541|0|ggle. always regula| +24041|641348|O|69911.93|1996-09-09|3-MEDIUM|Clerk#000004426|0|ic deposits cajole. unusual depths across the blithely express accounts cajol| +24042|123107|O|233516.99|1996-12-10|3-MEDIUM|Clerk#000002673|0|ending foxes: final pinto beans alongside of the blithely final | +24043|544684|F|103142.01|1992-04-08|1-URGENT|Clerk#000003430|0|l platelets wake slyly furiously ironic dependencies. regular plat| +24044|749029|P|144201.69|1995-03-25|3-MEDIUM|Clerk#000002458|0|mong the express requests. carefully bold courts use blithe| +24045|159962|F|90890.41|1992-02-26|3-MEDIUM|Clerk#000001687|0|. quickly final accounts through| +24046|472466|F|13558.66|1992-05-01|4-NOT SPECIFIED|Clerk#000001249|0|ly final gifts are across the carefully pending deposits. foxes use abo| +24047|479623|F|138781.01|1993-11-13|4-NOT SPECIFIED|Clerk#000000964|0|y furiously ironic theodolites. requests are among the bold| +24072|19543|O|174755.18|1995-08-31|1-URGENT|Clerk#000002980|0|uriously slyly final ideas. quickly ironi| +24073|705538|F|311423.63|1994-04-30|4-NOT SPECIFIED|Clerk#000004762|0|stealthy ideas. regular instructions use across| +24074|460040|O|92358.54|1996-09-28|4-NOT SPECIFIED|Clerk#000002491|0|t, regular pinto beans. slyly fi| +24075|129943|O|168675.48|1995-10-27|4-NOT SPECIFIED|Clerk#000003679|0|oost pending requests: slyly final excuses against the ironic packages no| +24076|685126|O|167490.07|1997-05-27|5-LOW|Clerk#000002533|0|en, regular instructions are accounts. slyly | +24077|146911|O|221267.74|1998-02-08|4-NOT SPECIFIED|Clerk#000001229|0| theodolites. furiously regular pack| +24078|130037|F|283702.39|1994-07-30|3-MEDIUM|Clerk#000001999|0|sly among the ironic, regul| +24079|17830|O|114810.29|1995-10-15|3-MEDIUM|Clerk#000002191|0|to beans. orbits boost. | +24104|389194|F|46821.20|1993-03-26|3-MEDIUM|Clerk#000004670|0| deposits haggle fluffily after the fluffily | +24105|427528|O|317895.66|1998-08-01|2-HIGH|Clerk#000001741|0| around the fluffily even packages? furiously silent f| +24106|458057|F|298549.65|1994-05-19|4-NOT SPECIFIED|Clerk#000003656|0|furiously fluffily ironic ideas. furiously bold deposits wake c| +24107|559315|F|175733.31|1993-02-19|2-HIGH|Clerk#000000039|0|g requests nod furiously slyly final deposits. express instruct| +24108|636902|O|198081.53|1996-11-19|1-URGENT|Clerk#000003792|0|egular packages are near the slyly bold pinto beans. pen| +24109|399661|F|56047.36|1992-05-29|3-MEDIUM|Clerk#000001638|0|cross the blithely final | +24110|84412|F|215830.74|1993-12-13|2-HIGH|Clerk#000000105|0|ideas haggle blithely thin accounts. furiously even | +24111|461165|O|230244.85|1998-02-25|2-HIGH|Clerk#000002143|0|lithely regular packages detect fluffily bravely express | +24136|289928|O|253074.27|1995-11-28|3-MEDIUM|Clerk#000001324|0|posits boost alongside of the regular, final requ| +24137|59038|F|34198.93|1993-12-21|5-LOW|Clerk#000003155|0|posits. pending pinto beans affi| +24138|725839|F|25999.59|1992-03-01|5-LOW|Clerk#000004081|0|ly across the even ideas. carefully even platelets h| +24139|418976|F|87388.40|1993-03-18|5-LOW|Clerk#000003559|0|atelets are. foxes about the blithely regular dolphins boost blithely | +24140|723233|F|289852.93|1994-07-30|5-LOW|Clerk#000004009|0|egular pinto beans cajole bli| +24141|111910|O|110285.83|1998-02-11|2-HIGH|Clerk#000000723|0|y carefully even depths. slyly even instructions boos| +24142|599974|F|41769.56|1992-03-08|2-HIGH|Clerk#000002783|0|s across the regular packages haggle furiousl| +24143|749726|O|243429.23|1995-09-29|2-HIGH|Clerk#000002952|0|yly final instructi| +24168|643012|F|161835.33|1992-08-22|1-URGENT|Clerk#000000935|0|regular packages sleep carefully regular dependencies. regular, bold pinto b| +24169|346780|F|134358.51|1992-02-23|2-HIGH|Clerk#000003995|0|r deposits. furiously ironi| +24170|54893|F|115196.23|1993-10-30|5-LOW|Clerk#000003815|0|eodolites. packages sleep among the blithely regular accounts.| +24171|79169|O|100390.48|1997-12-10|4-NOT SPECIFIED|Clerk#000003302|0|ove the pending deposits-- even, express somas affix carefully. regular | +24172|82081|F|145917.54|1992-01-03|2-HIGH|Clerk#000000376|0|s. final, ironic requests above the ironic deposits detect s| +24173|284449|O|1732.06|1996-03-31|5-LOW|Clerk#000002717|0|ost slyly. blithely regular requests wake carefully | +24174|210188|O|41178.21|1998-07-31|4-NOT SPECIFIED|Clerk#000003377|0|ly ironic ideas acr| +24175|123848|O|118092.19|1995-10-31|5-LOW|Clerk#000003343|0|. fluffily regular instruction| +24200|260353|F|179054.04|1992-04-15|3-MEDIUM|Clerk#000000719|0| the blithely bold requests. care| +24201|244151|O|157022.89|1995-06-06|1-URGENT|Clerk#000000049|0|s boost finally blithely ironic deposits. carefully ironic dependenc| +24202|193837|F|39278.98|1994-04-11|5-LOW|Clerk#000004917|0| cajole busily regular, final requests. furiously regula| +24203|562291|O|24600.64|1995-10-21|1-URGENT|Clerk#000001969|0|carefully even theodolites solve slyly pending requests. carefully specia| +24204|414494|F|119949.47|1992-11-09|5-LOW|Clerk#000004944|0|y! slyly pending ideas sleep furio| +24205|394426|O|224309.56|1995-08-03|2-HIGH|Clerk#000003472|0|final accounts wake. | +24206|585262|O|185737.22|1996-02-12|2-HIGH|Clerk#000001217|0|are carefully according to the ironic deposits. quickly dogged deposits afte| +24207|246044|O|219374.93|1995-07-06|2-HIGH|Clerk#000002253|0|y unusual requests above the final ac| +24232|500638|O|170458.15|1996-08-13|2-HIGH|Clerk#000002535|0| sleep idly ironic de| +24233|716536|F|160588.68|1992-06-12|1-URGENT|Clerk#000000514|0| wake slyly. slyly silent theodolites cajole. sil| +24234|68891|F|221727.19|1993-10-28|3-MEDIUM|Clerk#000000705|0|y; bold, regular requests sleep among the slyly regular dep| +24235|600307|O|251185.00|1997-09-17|5-LOW|Clerk#000002694|0|nstructions. blithely unusual instructions x-ray slyly. furiously | +24236|339880|O|256377.96|1997-11-09|4-NOT SPECIFIED|Clerk#000000040|0|latelets are blithely pinto beans. furiously ironic dependencies wa| +24237|336256|O|185660.14|1997-09-05|4-NOT SPECIFIED|Clerk#000004572|0|y pending requests doubt quickly alongside of the deposits.| +24238|193672|F|171006.73|1994-10-07|3-MEDIUM|Clerk#000000012|0|its haggle after the sauternes. carefully regular packages h| +24239|22597|O|155886.66|1996-03-16|1-URGENT|Clerk#000000807|0|blithely even platelets-- slyly quick accounts cajole| +24264|282986|O|144532.10|1995-06-28|4-NOT SPECIFIED|Clerk#000001053|0| slyly. express, final deposits promise above the carefully ironic p| +24265|388540|O|68800.44|1995-05-04|4-NOT SPECIFIED|Clerk#000002344|0| deposits. blithely regular dolphins are. slyly s| +24266|663040|F|125604.67|1994-07-02|3-MEDIUM|Clerk#000001250|0|ickly ironic foxes sleep about the busily| +24267|179803|F|95438.45|1994-09-18|3-MEDIUM|Clerk#000002931|0|accounts doubt blithely carefull| +24268|186590|O|88995.87|1995-11-04|1-URGENT|Clerk#000000684|0|rding to the regular, final deposits. unusual requests | +24269|257176|O|34879.88|1997-01-21|4-NOT SPECIFIED|Clerk#000003061|0|counts cajole quickly alongside o| +24270|98293|O|137968.92|1995-07-10|1-URGENT|Clerk#000002612|0|ly close instructions. never special theodolites boost; courts| +24271|505039|F|136128.15|1994-02-26|5-LOW|Clerk#000003771|0|l foxes. furiously express foxes ought to detect after t| +24296|426508|O|97502.33|1997-01-01|4-NOT SPECIFIED|Clerk#000002957|0|eans wake above the slyl| +24297|537739|O|225181.35|1998-02-19|5-LOW|Clerk#000002759|0|to beans at the slyly re| +24298|266680|F|25358.68|1993-01-14|3-MEDIUM|Clerk#000000033|0| integrate slyly across the accounts. bold, regul| +24299|86906|O|37964.74|1998-04-18|4-NOT SPECIFIED|Clerk#000004490|0|heodolites wake among the blithely ironic deposits. furiously express plat| +24300|373333|F|86495.38|1994-11-21|2-HIGH|Clerk#000001878|0|d, bold pinto beans engage. regular foxe| +24301|95650|O|216135.20|1997-05-18|4-NOT SPECIFIED|Clerk#000004198|0|eposits. quickly express accounts integrate furiously bold | +24302|338525|O|129937.51|1997-12-07|1-URGENT|Clerk#000004542|0|en packages cajole slyly. express deposits detect blithely. blithely| +24303|74147|O|248975.80|1997-05-22|4-NOT SPECIFIED|Clerk#000004687|0|telets among the final, si| +24328|433511|O|96658.64|1996-09-03|5-LOW|Clerk#000002984|0|eans! slyly regular pinto beans wake fur| +24329|515296|F|141452.98|1994-07-29|1-URGENT|Clerk#000000245|0|ess ideas. furiously bold r| +24330|316414|O|292934.14|1996-10-13|4-NOT SPECIFIED|Clerk#000000083|0|cial deposits haggle quickly. accounts sle| +24331|464416|F|177714.19|1994-02-27|1-URGENT|Clerk#000002412|0|carefully ironic theodoli| +24332|166732|O|81111.41|1997-02-11|5-LOW|Clerk#000003826|0| packages haggle quickly regular a| +24333|241346|O|138389.91|1996-10-11|2-HIGH|Clerk#000003679|0|fix across the carefu| +24334|289009|F|158877.01|1995-02-21|1-URGENT|Clerk#000003364|0|rint carefully. package| +24335|341119|O|336486.04|1997-01-10|1-URGENT|Clerk#000001612|0|ely final requests alongside| +24360|164420|O|189874.20|1996-01-29|4-NOT SPECIFIED|Clerk#000001305|0|fully regular pinto beans. special accounts lose | +24361|394270|F|187835.40|1994-01-07|5-LOW|Clerk#000000337|0|deposits. silently regular deposits are stealthily amon| +24362|232252|O|230914.06|1997-09-23|2-HIGH|Clerk#000001177|0|fully. express deposits sleep evenly furiously s| +24363|435397|O|143548.39|1998-01-11|3-MEDIUM|Clerk#000004179|0| express, special accounts aga| +24364|698503|F|82805.61|1994-03-07|5-LOW|Clerk#000003951|0|kages. accounts wake. blithely pending deposits n| +24365|725909|F|265776.38|1992-04-17|3-MEDIUM|Clerk#000001083|0| accounts print-- pending, even accounts integrate carefu| +24366|99565|O|350404.78|1996-03-13|5-LOW|Clerk#000001509|0| slyly final accounts doubt-- quickly final theodolites hi| +24367|119731|O|158585.24|1995-10-16|1-URGENT|Clerk#000003050|0|es. slyly regular t| +24392|35749|F|140759.60|1993-12-10|5-LOW|Clerk#000001678|0| silent requests against the even, bold foxes are slyly b| +24393|75749|O|120423.24|1998-06-26|2-HIGH|Clerk#000000253|0|ts maintain. idle packages haggle f| +24394|355573|O|54040.39|1996-05-19|3-MEDIUM|Clerk#000000151|0|ickly regular instructions doubt slyly. ironic pinto beans doze| +24395|88873|F|256819.30|1994-08-13|4-NOT SPECIFIED|Clerk#000004563|0|furiously silent deposits haggle quickly. blithely even pinto beans nag c| +24396|409523|O|94412.88|1997-01-25|1-URGENT|Clerk#000001018|0|ong the carefully spe| +24397|100271|F|319138.76|1994-01-10|2-HIGH|Clerk#000004658|0|e slowly silent braids. quickly final packages haggle perman| +24398|743749|F|137546.91|1993-01-24|3-MEDIUM|Clerk#000000973|0|eep at the silent, fin| +24399|668702|F|201043.08|1992-08-22|2-HIGH|Clerk#000002027|0|regular platelets sleep blithely across the blithely ironic ideas. express r| +24424|114082|O|71665.36|1996-03-19|4-NOT SPECIFIED|Clerk#000004956|0|gle slyly after the quickly ironic pinto beans. even packages run | +24425|371374|O|279369.05|1996-06-25|5-LOW|Clerk#000000445|0|eans haggle fluffily. fluffily| +24426|168896|O|138145.23|1997-12-30|3-MEDIUM|Clerk#000000608|0|packages-- fluffily unusual theodolite| +24427|626797|F|7802.07|1994-09-13|4-NOT SPECIFIED|Clerk#000002682|0|permanent dependencies. slyly ironi| +24428|48145|F|201060.20|1994-12-23|2-HIGH|Clerk#000004760|0| ironic requests around the carefully bold | +24429|643751|F|218988.33|1994-12-18|2-HIGH|Clerk#000003056|0|among the instructions. unusual d| +24430|19006|O|10611.80|1996-03-01|2-HIGH|Clerk#000001635|0|the furiously ironic requests. fl| +24431|666640|F|6966.22|1992-10-25|3-MEDIUM|Clerk#000003696|0|c accounts. furiously even theodolites are slyly-- carefully unus| +24456|686803|F|83615.32|1994-03-25|2-HIGH|Clerk#000001016|0|dolites: carefully bold foxes sublate bl| +24457|569686|O|150429.45|1995-09-18|5-LOW|Clerk#000001058|0|althy, pending orbits. slyly regular Tiresias sleep blithely qu| +24458|211576|O|155825.52|1996-09-20|2-HIGH|Clerk#000002639|0|ns. slyly regular asymptotes nag. regular theodolites are quickly caref| +24459|197366|P|112048.84|1995-05-23|5-LOW|Clerk#000002221|0|ld tithes. bold pinto beans are slyly quickly ironic req| +24460|620671|F|296944.91|1994-06-23|3-MEDIUM|Clerk#000000484|0|nic decoys wake carefully packages. quickly ironic | +24461|588031|F|306020.62|1992-07-14|1-URGENT|Clerk#000003838|0|nts. ironic accounts nag blithely around the caref| +24462|260323|O|131608.35|1998-03-29|5-LOW|Clerk#000001792|0|ep quickly about the even, ironic reques| +24463|478657|F|71758.87|1994-03-16|1-URGENT|Clerk#000001654|0| furiously final depths cajole | +24488|260114|F|23072.68|1992-12-18|5-LOW|Clerk#000002634|0|gular, silent foxes sle| +24489|734338|F|151755.88|1994-01-10|5-LOW|Clerk#000000986|0|resias haggle: slyly regular accounts after| +24490|735580|F|157451.73|1993-10-23|2-HIGH|Clerk#000003164|0|rave deposits. slyly regul| +24491|631183|F|30864.69|1995-02-11|1-URGENT|Clerk#000004787|0|sly. furiously pending r| +24492|260017|F|138798.07|1994-06-15|2-HIGH|Clerk#000002213|0| furiously slyly regular pinto beans. carefully even packages wake blithely.| +24493|581830|F|153671.54|1995-01-25|4-NOT SPECIFIED|Clerk#000004805|0|rs cajole quickly accor| +24494|307765|F|139370.64|1994-11-14|5-LOW|Clerk#000001066|0|sly special ideas engage carefully. carefully ironic theodolites haggl| +24495|589822|O|101047.38|1996-07-13|1-URGENT|Clerk#000001917|0|instructions according | +24520|369262|O|189226.03|1997-05-21|2-HIGH|Clerk#000000410|0|lly. final, regular packages are slyly| +24521|660719|O|26043.12|1996-01-19|5-LOW|Clerk#000003908|0|y regular theodolite| +24522|201409|O|108317.78|1997-04-15|5-LOW|Clerk#000000119|0|t the requests boost slyly final| +24523|307286|O|20279.74|1995-12-27|4-NOT SPECIFIED|Clerk#000004230|0|along the bold excuses. bold pinto| +24524|49753|O|182041.49|1997-12-18|5-LOW|Clerk#000003860|0|. ironic asymptotes wake furiously according to the pack| +24525|691813|P|190031.10|1995-04-25|1-URGENT|Clerk#000002448|0| are. furiously final requests breach slyly silent foxes. packages c| +24526|35203|F|288688.12|1992-11-30|4-NOT SPECIFIED|Clerk#000000516|0|le. ironic pinto beans | +24527|627632|F|36068.30|1992-08-08|4-NOT SPECIFIED|Clerk#000000020|0|s between the pending, unusual ideas maintain fur| +24552|610456|O|228472.47|1996-10-06|2-HIGH|Clerk#000001196|0|avely final ideas nag blithely above the unusual the| +24553|682843|F|38517.26|1992-03-11|5-LOW|Clerk#000000596|0| pinto beans detect quickly ironi| +24554|22352|O|23811.84|1998-07-19|1-URGENT|Clerk#000000577|0|ideas nag closely above the carefully final dinos. slyly express deposit| +24555|667240|F|227994.62|1993-08-29|5-LOW|Clerk#000004591|0|y regular deposits use pending requests-- | +24556|283435|F|159466.58|1993-09-04|1-URGENT|Clerk#000001332|0|ross the blithely special warhorses. blithel| +24557|424993|O|161373.50|1996-05-26|1-URGENT|Clerk#000002331|0|al requests. slyly silent accounts according to the quickly pen| +24558|581128|F|148844.00|1993-01-25|5-LOW|Clerk#000000306|0|arefully final foxes; furiously | +24559|486245|O|192861.96|1996-01-19|5-LOW|Clerk#000002780|0| final deposits nag bl| +24584|312352|F|285034.64|1993-09-03|1-URGENT|Clerk#000000959|0|l deposits cajole furiously ideas. slyly enticin| +24585|431429|F|341465.57|1994-09-13|4-NOT SPECIFIED|Clerk#000004195|0|ions are. final theodolites use fluffily. final pinto bean| +24586|20003|F|244540.14|1994-10-04|3-MEDIUM|Clerk#000000236|0|ave requests. express, final accounts use. fluffily special| +24587|174013|F|32306.31|1993-03-12|4-NOT SPECIFIED|Clerk#000000480|0|ifts. carefully iro| +24588|368236|O|48504.14|1997-04-14|3-MEDIUM|Clerk#000000040|0|the regular account| +24589|677167|O|119187.04|1996-09-19|1-URGENT|Clerk#000004808|0| the finally stealt| +24590|616330|O|165873.58|1995-07-29|1-URGENT|Clerk#000000195|0|etect fluffily even requests. silent packages eat quickly across the f| +24591|405190|F|384918.32|1994-06-16|5-LOW|Clerk#000000406|0|er the pinto beans. slyly even requests boos| +24616|745022|F|123334.56|1992-08-07|4-NOT SPECIFIED|Clerk#000000944|0|nently boldly ironic excuses. regula| +24617|326965|O|348127.13|1998-07-20|1-URGENT|Clerk#000001229|0|de of the ironic, final th| +24618|27076|F|242663.94|1993-03-12|4-NOT SPECIFIED|Clerk#000002836|0|ithely regular requests. slyly unusual dolphins boost after | +24619|553114|O|235559.68|1997-01-02|3-MEDIUM|Clerk#000004460|0|packages sleep furiously express packages! fluffily even acco| +24620|677735|O|34173.25|1995-10-16|1-URGENT|Clerk#000003069|0|ly? packages are furiously special foxes. depths after th| +24621|427165|F|254235.68|1994-02-08|3-MEDIUM|Clerk#000002700|0| ideas along the final foxes wake along the furiously ironi| +24622|334864|F|84783.80|1995-01-23|1-URGENT|Clerk#000001455|0|fter the final, even deposits. slyly final instructions nag slyly alo| +24623|57511|O|33942.76|1998-05-13|1-URGENT|Clerk#000002149|0|lar dependencies are slyly about | +24648|583825|F|254570.66|1994-03-21|1-URGENT|Clerk#000002780|0| fluffily express courts! ironic reques| +24649|74110|O|96814.93|1997-04-28|2-HIGH|Clerk#000004856|0|o beans sleep quickly even deposi| +24650|536398|O|58118.99|1997-03-03|1-URGENT|Clerk#000002890|0|ts according to the carefully | +24651|227705|F|162824.57|1994-09-25|3-MEDIUM|Clerk#000000334|0|uickly ironic ideas sleep furio| +24652|534856|F|162140.48|1994-07-21|2-HIGH|Clerk#000002504|0| idle packages. blithely silent pinto beans wake. special instructi| +24653|551570|O|261636.37|1996-03-26|1-URGENT|Clerk#000002481|0|ackages hang even, regular dugouts. deposits haggle even d| +24654|223666|F|190955.25|1994-12-01|5-LOW|Clerk#000004079|0|y final requests wake. even asymptotes integrate in place of the| +24655|124723|O|55246.41|1998-05-02|1-URGENT|Clerk#000000668|0|usual packages. slyly unusual ide| +24680|713722|F|77820.75|1995-04-13|3-MEDIUM|Clerk#000004790|0|regular accounts believe. furiously even packages dazzle| +24681|10585|P|222378.59|1995-04-06|4-NOT SPECIFIED|Clerk#000004494|0|ith the carefully even excuses. slyly ironic packages kin| +24682|140224|F|85618.39|1992-05-13|3-MEDIUM|Clerk#000004306|0|se ironically pending packages. blithely bold accounts are theodolites! regula| +24683|230536|P|170855.80|1995-03-19|5-LOW|Clerk#000004723|0|ts haggle according to the quickly ironic deposits. p| +24684|92351|F|221551.66|1995-02-04|2-HIGH|Clerk#000003305|0|instructions. unusu| +24685|391942|F|24423.04|1992-04-23|1-URGENT|Clerk#000003432|0|al accounts at the furiously quick p| +24686|117566|O|116819.69|1996-08-30|2-HIGH|Clerk#000000799|0|unts around the unusual ideas believe de| +24687|424165|F|141312.18|1994-08-26|4-NOT SPECIFIED|Clerk#000002641|0|eposits cajole ruthl| +24712|191098|F|250362.13|1992-02-08|5-LOW|Clerk#000001798|0|fully. furiously unusual deposits above the carefully unusual foxes| +24713|271369|O|235407.99|1997-05-11|3-MEDIUM|Clerk#000004408|0|ronic ideas haggle against the slyly thin requests. slyly e| +24714|137863|O|353328.22|1997-05-03|3-MEDIUM|Clerk#000000028|0|regular requests haggle quietly special packages;| +24715|310846|O|164256.71|1998-01-03|5-LOW|Clerk#000001957|0|ongside of the carefully final deposits? final deposits wake agai| +24716|611759|O|210348.59|1996-02-04|2-HIGH|Clerk#000000925|0|de of the carefully pending packages. fluffily final deposits use against th| +24717|72016|F|229077.72|1992-05-25|3-MEDIUM|Clerk#000000380|0|press ideas are blithely furiously unusual| +24718|603583|F|254337.54|1995-01-21|3-MEDIUM|Clerk#000002470|0|es wake about the ironic deposits.| +24719|657016|F|264356.93|1992-04-08|4-NOT SPECIFIED|Clerk#000000491|0|s haggle even asymptotes. furiously express pains int| +24744|196255|F|184482.94|1993-10-25|2-HIGH|Clerk#000003557|0|packages engage around the special asymptotes. even, ironic requests are fu| +24745|690181|F|37067.83|1992-09-02|2-HIGH|Clerk#000002952|0| ironic instructions nag. pending, final excuses| +24746|362449|F|42635.02|1993-10-08|5-LOW|Clerk#000004691|0|ow across the slyly| +24747|174061|F|53262.96|1993-02-14|4-NOT SPECIFIED|Clerk#000004613|0| use blithely. even, re| +24748|416860|F|53839.14|1992-05-22|4-NOT SPECIFIED|Clerk#000004463|0|lar dolphins wake slyly. asymptotes haggle slyly about the qu| +24749|404797|O|249088.46|1996-05-21|3-MEDIUM|Clerk#000000676|0|y pending sauternes. platelets cajole fur| +24750|161323|O|143997.24|1995-06-27|3-MEDIUM|Clerk#000001654|0|ronic excuses wake carefully after the blithely un| +24751|75938|O|139214.88|1997-04-29|3-MEDIUM|Clerk#000003387|0|final courts sleep furiously according t| +24776|529037|F|162198.09|1994-07-19|4-NOT SPECIFIED|Clerk#000003693|0|, regular accounts; ex| +24777|274475|O|243374.85|1996-12-01|5-LOW|Clerk#000001922|0|ts; idle asymptotes sleep carefully. regular requests| +24778|589087|F|122177.51|1993-01-31|5-LOW|Clerk#000000709|0|nusual pinto beans. quickly ironic packages sle| +24779|25702|O|195400.56|1997-03-02|1-URGENT|Clerk#000001369|0|ns cajole quickly. silent package| +24780|701051|O|89767.78|1997-04-04|3-MEDIUM|Clerk#000002190|0| platelets integrate. fluffily ironic foxes across the slyly iro| +24781|60671|O|170649.12|1996-07-26|4-NOT SPECIFIED|Clerk#000004498|0|efully special packages nag. unusual courts are al| +24782|441482|F|195714.85|1994-06-21|5-LOW|Clerk#000002015|0| furiously silent dependenc| +24783|232513|O|57230.66|1997-02-07|2-HIGH|Clerk#000000482|0|beans; quickly regular ideas a| +24808|322897|F|103524.94|1994-10-27|1-URGENT|Clerk#000001966|0|ep slyly furiously final theodolites| +24809|657340|O|76098.05|1997-10-25|3-MEDIUM|Clerk#000000837|0| are carefully furiously slow courts. deposits ab| +24810|408658|F|78128.08|1994-08-04|5-LOW|Clerk#000001966|0|. carefully even asymptotes haggle furi| +24811|542110|F|132664.56|1993-06-28|3-MEDIUM|Clerk#000002387|0|requests affix furiously furious dugouts; furiously silent fox| +24812|213667|F|90966.48|1992-01-25|5-LOW|Clerk#000001709|0|use quickly along the even pinto beans. quickly regular dolphins aga| +24813|95662|F|88903.11|1994-09-18|5-LOW|Clerk#000002465|0|uffily sly dugouts. unusual, e| +24814|511061|F|368484.66|1994-07-27|3-MEDIUM|Clerk#000002781|0|al, blithe accounts nag | +24815|390457|O|89768.22|1996-08-20|1-URGENT|Clerk#000001689|0|e ironic packages. furiously sly instructions sleep blithely ironic accou| +24840|630643|F|69708.69|1992-07-24|2-HIGH|Clerk#000000459|0|ng requests nag carefully after the slyly regular requests.| +24841|186779|F|42738.97|1994-01-11|2-HIGH|Clerk#000003405|0|fully ironic platelets nag among the furiously regular packages. express de| +24842|436547|F|30053.97|1994-07-11|1-URGENT|Clerk#000002827|0|cording to the quickly unusual requests cajole | +24843|529157|F|64017.24|1995-04-01|1-URGENT|Clerk#000001265|0|unts haggle blithely about the slyly pending instruc| +24844|38818|F|49411.21|1993-10-18|2-HIGH|Clerk#000004408|0|ions sleep blithely atop the furiously p| +24845|653461|O|177289.81|1995-08-07|3-MEDIUM|Clerk#000000017|0|sly silent ideas detec| +24846|467923|F|207760.16|1994-07-17|3-MEDIUM|Clerk#000004627|0|iously final forges wa| +24847|613357|O|36032.55|1998-05-06|4-NOT SPECIFIED|Clerk#000004394|0|lly ironic requests after th| +24872|659470|O|184889.45|1996-04-30|3-MEDIUM|Clerk#000001287|0|s wake blithely above the bravely silent pinto beans. slyly permane| +24873|187900|O|29990.60|1996-01-01|4-NOT SPECIFIED|Clerk#000001936|0|deposits are. carefully regular i| +24874|528790|F|261452.19|1993-09-15|5-LOW|Clerk#000003114|0| across the fluffily silent accounts. unusual asymptotes about the quickly| +24875|594859|F|114340.88|1992-02-07|2-HIGH|Clerk#000001360|0|c, bold packages. s| +24876|286978|O|172224.79|1996-02-24|3-MEDIUM|Clerk#000002662|0|thely express depths wake slyly even accounts. quickly regular foxe| +24877|731521|O|222811.70|1995-10-02|3-MEDIUM|Clerk#000002995|0|deposits wake ironically. fluffily ironic packages nag. ideas use| +24878|673312|O|274464.19|1995-11-17|4-NOT SPECIFIED|Clerk#000000099|0|y ironic accounts. regular deposits s| +24879|330094|O|52125.25|1998-02-07|1-URGENT|Clerk#000001918|0|ronic foxes doze furiously stealthy requests. slyly ironic foxes detec| +24904|125479|F|215149.16|1994-05-26|5-LOW|Clerk#000003567|0|kages sleep slyly. idle ideas according to the blithely ironic deposits inte| +24905|646297|O|169591.79|1997-01-21|4-NOT SPECIFIED|Clerk#000002852|0|ward the slyly ironic packages. quickly even requests maintain s| +24906|42622|P|200230.74|1995-04-23|3-MEDIUM|Clerk#000002210|0|c pinto beans haggle. blithely silent requests across the furiousl| +24907|86702|O|257779.49|1998-02-04|4-NOT SPECIFIED|Clerk#000002743|0|s nag about the ironic requests! | +24908|694103|O|58029.68|1996-04-14|3-MEDIUM|Clerk#000000186|0|ngside of the quickly ironic | +24909|288016|F|180237.19|1992-01-09|1-URGENT|Clerk#000000470|0|fluffily unusual asymptotes shall have to sleep pending requests. special| +24910|165934|F|285839.09|1992-07-27|2-HIGH|Clerk#000002297|0|es. blithely enticing accounts detect careful| +24911|327068|O|249702.59|1996-01-21|1-URGENT|Clerk#000004983|0|iously ironic ideas. carefully express sauternes| +24936|276082|F|165930.73|1993-08-07|3-MEDIUM|Clerk#000001082|0|lithely. furiously silent ideas alo| +24937|591857|F|24209.44|1993-05-04|4-NOT SPECIFIED|Clerk#000004920|0|ic requests against the thinly pendin| +24938|82717|O|91006.09|1997-06-21|3-MEDIUM|Clerk#000001782|0| after the special multipliers. furiously final theodolites use against th| +24939|474046|F|238195.42|1992-11-09|5-LOW|Clerk#000001111|0|. carefully bold accounts| +24940|26012|O|120692.04|1996-08-23|2-HIGH|Clerk#000001654|0|l forges sleep across | +24941|680635|F|133239.94|1994-08-31|4-NOT SPECIFIED|Clerk#000004767|0|haggle blithely ironic, pending requests. regularly f| +24942|426478|O|257929.94|1998-07-12|1-URGENT|Clerk#000000160|0|patterns boost quickly. unusual dependencies are during the regular t| +24943|45577|F|129703.12|1992-06-17|5-LOW|Clerk#000002509|0| furiously beneath the doggedly regul| +24968|229988|F|248118.44|1992-06-01|2-HIGH|Clerk#000004693|0|refully across the regular accounts. even, ironic asymptotes nag aroun| +24969|657319|P|135352.22|1995-03-06|1-URGENT|Clerk#000002553|0|equests. blithely final requests affix against the special package| +24970|45124|O|88964.60|1998-03-01|2-HIGH|Clerk#000001363|0| carefully regular requests use beneath the i| +24971|144734|F|90580.81|1994-07-03|2-HIGH|Clerk#000001134|0|phins. regular deposits above the carefully ironic ideas cajole blit| +24972|285353|O|198273.46|1997-10-26|3-MEDIUM|Clerk#000000622|0|bold foxes haggle blithely carefully final deposits. carefully special as| +24973|411695|O|231410.40|1998-06-28|4-NOT SPECIFIED|Clerk#000001800|0|ly across the slyly special attainments. blithe| +24974|606076|O|197626.29|1996-08-30|2-HIGH|Clerk#000000212|0|st the furiously regular ideas. furiousl| +24975|540991|O|177950.45|1996-06-06|3-MEDIUM|Clerk#000003538|0|ave to are slyly above the final acco| +25000|169981|F|21400.83|1994-11-25|1-URGENT|Clerk#000004924|0| use at the even pac| +25001|90397|F|184387.36|1992-11-23|4-NOT SPECIFIED|Clerk#000002478|0|terns haggle stealthily expres| +25002|538321|F|85261.64|1992-12-21|1-URGENT|Clerk#000002324|0|thely express platelets after t| +25003|277814|O|79218.20|1995-04-01|3-MEDIUM|Clerk#000004960|0|ve quickly across the blithely regular deposits. final platelets ar| +25004|463195|O|26033.31|1997-01-09|1-URGENT|Clerk#000004238|0|inst the accounts use aroun| +25005|642833|F|166217.84|1992-05-25|2-HIGH|Clerk#000001586|0|ual accounts nag carefully enticingly pending deposits. iro| +25006|335338|O|320871.55|1996-09-08|3-MEDIUM|Clerk#000004237|0|s pinto beans affix slyly? carefully silent accoun| +25007|497465|F|254942.21|1994-05-11|2-HIGH|Clerk#000000434|0|to beans snooze quickly dogged requests. iron| +25032|629887|F|207195.24|1992-02-14|4-NOT SPECIFIED|Clerk#000001788|0| silent requests haggle quickly. carefully ironi| +25033|246346|O|61328.55|1997-08-27|2-HIGH|Clerk#000004271|0|nal packages boost slyly after the blithely regular asymptotes| +25034|307687|O|272936.96|1997-05-21|1-URGENT|Clerk#000001874|0|fully ironic theodolite| +25035|16034|P|72988.01|1995-02-28|1-URGENT|Clerk#000004173|0|olites. blithely special fo| +25036|225854|O|224329.25|1995-12-06|2-HIGH|Clerk#000003725|0|ar accounts. blithely bold foxes nag fur| +25037|176299|F|258962.17|1993-07-26|4-NOT SPECIFIED|Clerk#000003746|0|packages must have to boost blithely. slyly express excuses accordin| +25038|554170|F|182009.24|1993-11-20|3-MEDIUM|Clerk#000002884|0|tructions. quickly ironic requests cajole slyly above the pinto beans. fin| +25039|409298|O|268331.19|1996-12-09|3-MEDIUM|Clerk#000001244|0|ccounts. regular foxes wake blithely above the fluf| +25064|57661|O|268659.93|1997-12-29|3-MEDIUM|Clerk#000003598|0|y quickly silent requests. pending realms are beneath the silent depo| +25065|103726|F|72732.14|1995-02-16|1-URGENT|Clerk#000002705|0|uriously unusual instructions haggle quickly blithely final packa| +25066|302099|O|19484.60|1995-12-04|5-LOW|Clerk#000004882|0|e final, regular ideas use against the furiously furious accounts. carefully | +25067|626716|O|65220.10|1995-12-21|3-MEDIUM|Clerk#000002309|0|ress deposits. slyly regular theodolites wake. furiously permanent requests | +25068|197920|O|221375.06|1996-02-10|4-NOT SPECIFIED|Clerk#000002025|0|counts. quiet packages are deposits. packages among the final ac| +25069|165697|O|200919.46|1997-08-02|3-MEDIUM|Clerk#000004567|0|excuses. even accounts haggle slyly a| +25070|99808|F|222408.73|1993-08-10|4-NOT SPECIFIED|Clerk#000000767|0|requests. carefully final deposi| +25071|449254|O|286196.37|1995-05-06|5-LOW|Clerk#000004799|0|ons haggle slyly. finally even packages x-ray quickly blithely even ideas. | +25096|351085|F|129544.35|1994-04-12|5-LOW|Clerk#000001034|0|ending accounts haggle carefully pattern| +25097|433463|F|23240.82|1992-06-22|1-URGENT|Clerk#000004832|0|fts doze furiously. carefully regular packages cajole| +25098|456775|O|216421.77|1995-12-04|4-NOT SPECIFIED|Clerk#000001545|0|ual ideas wake slyly around the depths. furiously final epitap| +25099|9250|O|161449.20|1996-11-29|4-NOT SPECIFIED|Clerk#000003112|0|furiously express requests was after the regular reques| +25100|206494|F|164860.46|1992-05-25|2-HIGH|Clerk#000003951|0|y pending ideas after the packages wake around the express, express account| +25101|282890|F|68735.81|1993-07-01|2-HIGH|Clerk#000004285|0|e closely express theodolites snooze according to the requests. packa| +25102|273160|O|199010.53|1997-04-15|5-LOW|Clerk#000002802|0|efully final deposits along the carefully permanent instructions cajole fluff| +25103|217606|P|137797.63|1995-04-15|5-LOW|Clerk#000000956|0|ccounts wake. unusual asymptotes around the | +25128|291190|F|140921.18|1993-08-01|4-NOT SPECIFIED|Clerk#000001435|0|inst the dependencies. packages around the furiously even dep| +25129|267398|O|80495.43|1996-08-18|5-LOW|Clerk#000001240|0|ly express accounts cajole fluffily after the sl| +25130|150649|F|212283.67|1994-08-04|2-HIGH|Clerk#000002743|0|lar platelets wake carefully final accounts. evenly ironic inst| +25131|679577|O|21962.38|1995-11-19|1-URGENT|Clerk#000002178|0|he furiously final braids-- carefully ironic pinto beans wake slyly. expr| +25132|640402|F|219816.71|1993-11-15|5-LOW|Clerk#000000102|0|al dependencies. carefully iron| +25133|721499|O|376939.06|1997-03-11|3-MEDIUM|Clerk#000004618|0|ous requests haggle along the slyly unusual theodoli| +25134|231157|O|274362.32|1998-05-15|1-URGENT|Clerk#000001790|0|lar deposits cajole furiously special theodolites. | +25135|49900|O|189742.77|1997-06-27|2-HIGH|Clerk#000002280|0|s wake furiously regular platelets. ironic theodolites kindle quickly| +25160|145234|F|236523.76|1994-02-19|2-HIGH|Clerk#000001568|0|gular requests use furiously carefully bold ide| +25161|415451|P|202465.80|1995-05-06|3-MEDIUM|Clerk#000004183|0|ronic platelets sleep carefully among the dogged, bold d| +25162|728542|F|104961.01|1995-01-07|4-NOT SPECIFIED|Clerk#000002160|0|iously along the blithely regular deposits. platelets | +25163|77125|O|63716.86|1995-12-17|1-URGENT|Clerk#000001821|0|ts grow quickly furiously final packages-- carefully br| +25164|222385|O|217569.45|1995-09-24|5-LOW|Clerk#000000002|0|s. furiously ironic waters integrate. fluffily pending ideas slee| +25165|371782|O|61125.74|1996-10-15|1-URGENT|Clerk#000003735|0|beans must have to serve | +25166|272336|O|48111.81|1998-03-15|2-HIGH|Clerk#000003977|0|mptotes. closely brave de| +25167|643459|O|66364.52|1995-10-08|1-URGENT|Clerk#000003794|0|gside of the unusual,| +25192|361414|F|68185.06|1992-04-18|1-URGENT|Clerk#000002701|0|r patterns. bold requests | +25193|28513|O|190273.07|1995-12-18|5-LOW|Clerk#000002928|0| furiously express pinto beans above the quickly special dol| +25194|696874|F|7007.51|1992-05-15|3-MEDIUM|Clerk#000000889|0|counts. bold foxes sleep slyly along the special, fina| +25195|355939|F|85121.00|1992-04-18|2-HIGH|Clerk#000001404|0|nis cajole carefully. sly| +25196|236836|O|233890.48|1997-10-16|5-LOW|Clerk#000003656|0|attainments affix slyly inst| +25197|228427|O|245074.18|1996-11-14|4-NOT SPECIFIED|Clerk#000001997|0|old platelets. even, regular braids cajole caref| +25198|644194|O|105107.25|1995-07-14|5-LOW|Clerk#000003406|0| realms cajole slyly express packages: fluffily sile| +25199|696968|F|74499.25|1993-04-21|5-LOW|Clerk#000004676|0|t blithely against the even foxes: deposits haggle ironically ar| +25224|425023|F|268633.87|1994-10-20|2-HIGH|Clerk#000004762|0|gular foxes wake carefully quickly careful courts. fluff| +25225|353368|F|187197.63|1994-09-06|1-URGENT|Clerk#000004214|0|carefully unusual foxes boost carefully pending accounts. regular| +25226|522658|F|155746.81|1993-10-08|1-URGENT|Clerk#000000780|0|ages. unusual ideas across the furiously even ac| +25227|283192|O|26084.17|1998-07-15|2-HIGH|Clerk#000001918|0|ncies. accounts wake. furiously even idea| +25228|102095|O|97786.77|1997-06-30|2-HIGH|Clerk#000001299|0|d carefully according to the fluffily even courts; furiously ironic| +25229|645412|O|249836.44|1997-05-23|1-URGENT|Clerk#000000348|0| slyly. quickly ironic accoun| +25230|187339|P|243175.54|1995-04-27|2-HIGH|Clerk#000002264|0|regular accounts. slyly pen| +25231|73148|O|141212.37|1997-11-30|5-LOW|Clerk#000002795|0|riously special requests. final theodolites hag| +25256|131710|F|246551.01|1994-08-08|5-LOW|Clerk#000001267|0|sual requests. furiously even asymp| +25257|376723|F|126323.03|1995-01-16|3-MEDIUM|Clerk#000002440|0|tithes wake carefully. final accounts wake. blithel| +25258|76423|F|146008.20|1993-01-07|3-MEDIUM|Clerk#000003144|0|arefully regular accounts. requests are| +25259|417524|O|143779.05|1997-03-07|4-NOT SPECIFIED|Clerk#000002225|0|osely unusual dependencies will boost careful| +25260|322495|F|215202.45|1994-07-29|4-NOT SPECIFIED|Clerk#000004794|0|nstructions wake carefully| +25261|640432|O|44394.98|1996-12-25|3-MEDIUM|Clerk#000002379|0|gle blithely about | +25262|489548|F|176065.10|1994-05-08|4-NOT SPECIFIED|Clerk#000002319|0|requests. quickly even| +25263|329083|O|23820.75|1998-02-10|4-NOT SPECIFIED|Clerk#000002739|0|sts according to th| +25288|394090|O|96974.35|1997-04-19|2-HIGH|Clerk#000000629|0|quests haggle quickly against the pending, | +25289|208753|O|69351.47|1995-08-27|3-MEDIUM|Clerk#000003901|0|uests wake quickly regular requests. furiously unusua| +25290|744005|F|55470.02|1993-05-14|2-HIGH|Clerk#000000444|0|ts. furiously final accounts nag at the ideas. furiously special accounts| +25291|489223|O|300086.33|1996-09-12|1-URGENT|Clerk#000003627|0|st closely carefully unusual a| +25292|89644|F|221210.22|1992-08-15|5-LOW|Clerk#000004881|0|unts integrate around the express theodolites| +25293|644873|O|13893.26|1995-03-16|3-MEDIUM|Clerk#000002668|0|ffily special requests mold about the carefully bold packages; | +25294|118949|O|232953.82|1996-07-23|3-MEDIUM|Clerk#000001519|0|sual dependencies about the carefully even ideas sleep quickly at th| +25295|415525|O|122136.11|1996-07-30|4-NOT SPECIFIED|Clerk#000000249|0|tly even, unusual instructions. slyl| +25320|450599|O|134588.70|1995-10-13|3-MEDIUM|Clerk#000004191|0|s affix carefully furiously ruthless ideas. furiously regular instructions ser| +25321|459476|F|79592.74|1994-09-09|4-NOT SPECIFIED|Clerk#000001430|0|olphins wake slyly according to the quickly regular courts. slyly regular | +25322|409927|O|190106.33|1996-12-13|5-LOW|Clerk#000001127|0|ckages according to the slyl| +25323|119944|F|236496.88|1992-12-14|4-NOT SPECIFIED|Clerk#000001056|0|fully fluffy requests could have to wake slyly expr| +25324|628582|F|297630.07|1994-01-08|5-LOW|Clerk#000001657|0|special theodolites. special, pending braids sleep. even foxes sleep bli| +25325|49307|O|157854.09|1997-02-28|5-LOW|Clerk#000000687|0| ironic deposits. special deposits against the pending, bold packages| +25326|701819|O|181096.34|1997-05-01|1-URGENT|Clerk#000000359|0|orges cajole according | +25327|208309|O|287389.12|1996-12-24|1-URGENT|Clerk#000003042|0|lyly regular requests sleep slyly quickly even acco| +25352|33284|O|230091.59|1996-02-01|5-LOW|Clerk#000004163|0| accounts. blithely ironic | +25353|646541|F|56484.13|1993-10-07|3-MEDIUM|Clerk#000004786|0|above the quickly pending excuses. f| +25354|398102|O|183965.96|1998-01-16|3-MEDIUM|Clerk#000004289|0|uests cajole? slyly regular packages haggle | +25355|147113|F|223529.32|1993-12-03|5-LOW|Clerk#000003500|0|silent, even packages sleep. doggedly regular instructions grow. expre| +25356|516869|F|288411.70|1992-11-13|4-NOT SPECIFIED|Clerk#000001725|0|nt, enticing asymptotes affix ironic waters. even, final requests prin| +25357|502381|O|295260.99|1997-08-26|1-URGENT|Clerk#000004939|0|. quickly slow pinto beans wake fluffily about the carefully pending d| +25358|8854|O|195537.63|1997-11-23|1-URGENT|Clerk#000004528|0|lar packages. slyly pending deposits are blithely. slow theodolit| +25359|302180|O|130393.90|1998-06-30|5-LOW|Clerk#000000048|0|en packages. enticing, special packages integrate blithely. | +25384|482170|F|111030.71|1994-01-01|1-URGENT|Clerk#000003692|0|regular dolphins are quickly carefully silent pa| +25385|76102|F|51078.20|1992-03-27|5-LOW|Clerk#000004229|0|es are across the en| +25386|268151|O|54660.79|1998-04-22|2-HIGH|Clerk#000003628|0|dencies wake. slyly even pinto bean| +25387|60143|O|275872.74|1996-08-19|4-NOT SPECIFIED|Clerk#000002970|0|osits nag quickly until the | +25388|556678|O|165323.67|1995-12-15|3-MEDIUM|Clerk#000000784|0| requests. carefully final theodolites nag carefully across the foxes. per| +25389|556786|O|8669.56|1997-05-18|4-NOT SPECIFIED|Clerk#000003958|0|ic accounts. slyly even packages wake carefully| +25390|125830|O|58450.41|1997-11-01|1-URGENT|Clerk#000003318|0| quickly regular excuses nag slyly to the slyly ironic p| +25391|546238|F|97070.11|1994-08-28|1-URGENT|Clerk#000000072|0|ffily final requests. permanent accounts impress blithely e| +25416|613249|O|135372.70|1997-05-25|1-URGENT|Clerk#000003740|0|even requests; silent, idle packa| +25417|370162|F|275086.94|1994-07-18|2-HIGH|Clerk#000001677|0|as are always at the bravely regu| +25418|45317|F|34318.98|1995-03-02|5-LOW|Clerk#000004021|0|excuses. finally even the| +25419|384199|F|105537.96|1993-11-07|4-NOT SPECIFIED|Clerk#000000818|0|ronic accounts about the furiously unusual instructions sleep | +25420|479123|O|96539.79|1995-11-12|1-URGENT|Clerk#000003937|0|al requests wake slyly ironic requests-- q| +25421|610942|F|282140.21|1993-05-31|4-NOT SPECIFIED|Clerk#000000024|0|scapades. slyly bold grouches across th| +25422|578068|F|103335.84|1994-03-29|1-URGENT|Clerk#000004401|0|c deposits. ironic deposits wake| +25423|74407|O|331210.04|1995-08-29|4-NOT SPECIFIED|Clerk#000004100|0|to beans. bold, regular theodolites sleep. carefully regular deposits sleep b| +25448|294767|F|181938.73|1995-03-19|4-NOT SPECIFIED|Clerk#000003692|0| across the express accounts. slyly ironic deposits affix blithely. regular, e| +25449|395045|F|261187.99|1993-12-11|4-NOT SPECIFIED|Clerk#000002502|0|s. special deposits are carefull| +25450|515615|F|185657.09|1993-10-25|3-MEDIUM|Clerk#000004268|0|silent instructions. slyly ironic dolphins about the qu| +25451|438406|F|62783.21|1992-09-14|3-MEDIUM|Clerk#000000084|0|foxes. even ideas haggle blithe| +25452|258931|F|24421.25|1992-10-04|3-MEDIUM|Clerk#000001822|0|egular dolphins cajole blithely. even, pending packages are carefu| +25453|326366|F|143354.06|1993-01-21|2-HIGH|Clerk#000004862|0| bold platelets use slyly blithely pending excuses. even, f| +25454|471961|F|92421.63|1992-09-26|2-HIGH|Clerk#000003519|0|ng the special platelets wake busily s| +25455|222890|O|238427.82|1995-10-21|2-HIGH|Clerk#000004283|0|thely. special, regular foxes could | +25480|605518|O|126138.34|1995-08-05|3-MEDIUM|Clerk#000000938|0|the carefully special fox| +25481|162572|F|106520.39|1995-02-25|3-MEDIUM|Clerk#000002831|0|ges nag ironic, ironic pinto beans. even dependencies eat furiously after | +25482|90185|O|218678.73|1996-04-19|4-NOT SPECIFIED|Clerk#000001784|0|jole quickly above the slyly ironic ideas. carefully even accounts cajole u| +25483|737857|F|162509.73|1994-12-02|2-HIGH|Clerk#000003113|0|ly. slyly express dependencies| +25484|634072|O|48502.19|1995-07-15|3-MEDIUM|Clerk#000000177|0|es among the ironic, regular pinto beans use above the pending re| +25485|86359|O|88967.09|1995-12-18|3-MEDIUM|Clerk#000003689|0|e slyly unusual packages. fluffily even packages cajole quickly carefully fi| +25486|175885|F|124886.00|1994-10-04|1-URGENT|Clerk#000003981|0| integrate furiously furiously final dependencies. foxes sleep | +25487|347017|F|166238.73|1992-11-24|3-MEDIUM|Clerk#000002755|0|al requests. regular, busy foxes among the quickly | +25512|286750|O|320390.61|1995-07-17|1-URGENT|Clerk#000000782|0|inder furiously even epitaphs. silent, final requests | +25513|651562|F|213602.49|1994-09-12|2-HIGH|Clerk#000001183|0|ong the slyly pending platelets. foxes cajole | +25514|52079|P|262286.00|1995-06-10|2-HIGH|Clerk#000002523|0|l sauternes about the furiously unusual pinto beans hagg| +25515|25993|F|107928.13|1995-02-22|4-NOT SPECIFIED|Clerk#000001664|0| dependencies wake. furiously express accounts cajole carefully. fu| +25516|345019|O|9910.60|1997-09-09|1-URGENT|Clerk#000004582|0|uses doubt furiously above the ev| +25517|474394|O|94485.58|1998-03-26|4-NOT SPECIFIED|Clerk#000002317|0|eep furiously packages. furiously unusual depos| +25518|611446|O|28558.15|1996-12-19|4-NOT SPECIFIED|Clerk#000003637|0|ar foxes sleep. silent, final accounts wake| +25519|51044|O|122551.61|1997-09-09|1-URGENT|Clerk#000002079|0| regular instructions use carefully bold depo| +25544|633068|F|235772.15|1992-06-09|4-NOT SPECIFIED|Clerk#000002162|0|long the furiously e| +25545|473077|F|203168.80|1992-06-21|2-HIGH|Clerk#000000465|0|ding accounts. platelets cajo| +25546|242218|O|235792.73|1998-01-28|1-URGENT|Clerk#000000961|0| foxes cajole quickly f| +25547|699415|O|398979.13|1996-06-12|1-URGENT|Clerk#000002450|0|ckages. furiously even patterns are slyly b| +25548|313748|O|136103.73|1996-01-29|1-URGENT|Clerk#000003751|0|nts. ironic, even courts nod. slyly final packages boost. spec| +25549|654292|F|122459.63|1992-05-26|2-HIGH|Clerk#000003922|0|. final multipliers use: ironic, ironic packages wake furiousl| +25550|167278|F|206324.70|1994-10-30|1-URGENT|Clerk#000001641|0|requests haggle slyly ironic attainments: carefully i| +25551|417550|F|203698.44|1992-09-25|3-MEDIUM|Clerk#000003795|0|mptotes. furiously ironic waters haggle fluffily pending accounts. carefully| +25576|11201|F|80637.77|1994-05-20|4-NOT SPECIFIED|Clerk#000001323|0|lyly pending requests sleep carefully regular | +25577|741148|O|64874.93|1997-11-08|4-NOT SPECIFIED|Clerk#000002586|0|ily regular asymptotes play furio| +25578|445885|F|202686.67|1993-02-17|3-MEDIUM|Clerk#000000824|0|se slyly foxes. special instructions wake blithely after the blithe| +25579|712228|F|90940.06|1994-05-13|4-NOT SPECIFIED|Clerk#000004562|0|ges. regularly regular accounts | +25580|411583|O|165081.02|1997-07-26|4-NOT SPECIFIED|Clerk#000000700|0| regular packages boost blithely slyly fi| +25581|215942|F|215484.48|1992-11-27|1-URGENT|Clerk#000001815|0|r deposits use furiously daring packages. carefu| +25582|79967|O|113265.64|1997-11-09|3-MEDIUM|Clerk#000003696|0| accounts. quickly unusual pinto beans cajole slyly along th| +25583|926|F|187232.25|1993-09-16|5-LOW|Clerk#000000625|0|le carefully. slow requests cajole quickly. blithely| +25608|549674|O|136088.60|1998-05-08|1-URGENT|Clerk#000001268|0|ly regular deposits sleep slyly. blithely| +25609|605155|F|192703.54|1992-08-28|2-HIGH|Clerk#000000602|0|, ironic depths cajole about the final deposits! quickly final foxes except| +25610|77903|O|26629.98|1998-03-24|4-NOT SPECIFIED|Clerk#000004339|0|sits. furiously even requests among the furiously regular deposits haggl| +25611|550261|F|192457.49|1993-12-27|1-URGENT|Clerk#000001382|0|cajole. regular accounts sleep blithely pending ideas. even, unusual excu| +25612|713075|O|238256.76|1997-12-21|3-MEDIUM|Clerk#000004343|0|unusual requests. furiously regular requests according to the blithely | +25613|399133|O|130808.34|1996-07-15|4-NOT SPECIFIED|Clerk#000000677|0|ainst the pending excuses affix according t| +25614|201880|O|86806.44|1997-04-08|4-NOT SPECIFIED|Clerk#000001671|0|sual accounts. fluffily express deposits sleep sly| +25615|714281|O|158178.16|1998-03-19|2-HIGH|Clerk#000001122|0|e blithely regular packages sleep quickly around the special, sl| +25640|407305|F|143727.52|1993-02-17|5-LOW|Clerk#000002852|0|accounts! slyly quiet instructions wake final, final ideas! careful dep| +25641|321136|F|151042.26|1994-09-09|5-LOW|Clerk#000002916|0|fily ironic sauternes x-ray blithely. ironic, quick theodolites unwind s| +25642|316123|F|100419.72|1993-12-04|2-HIGH|Clerk#000001493|0|lar, unusual packages wake finally. requests among the idly bo| +25643|49933|O|113889.66|1998-06-18|1-URGENT|Clerk#000001971|0|und the careful asymptotes sleep slyly furiously unusual platelets. furiously | +25644|709582|F|48211.65|1994-05-26|2-HIGH|Clerk#000000694|0|xes. sometimes even packages cajol| +25645|190933|F|102823.04|1994-05-14|3-MEDIUM|Clerk#000004934|0| the blithely bold accounts. regular, regular instru| +25646|483818|O|253980.39|1997-11-28|5-LOW|Clerk#000000769|0|refully regular instructions haggle furiously against the pending depo| +25647|14825|F|114749.94|1994-05-04|2-HIGH|Clerk#000000190|0|ts nag quickly alongside of the pending, even packages. furiou| +25672|151916|O|154645.45|1997-08-16|1-URGENT|Clerk#000004999|0|ts affix express, ironic deposits. dolphins after the packages dete| +25673|245009|O|210983.02|1997-01-29|2-HIGH|Clerk#000004181|0|hins cajole furiously carefully express requests. blithely final pinto beans w| +25674|350806|F|186300.19|1992-07-28|3-MEDIUM|Clerk#000000807|0|ial deposits detect along the fi| +25675|229612|O|90748.91|1997-02-05|1-URGENT|Clerk#000003835|0|e blithely blithely ironic platelets. platelets are quickly about the quic| +25676|326119|O|290077.62|1996-08-01|3-MEDIUM|Clerk#000003093|0|pecial instructions wake f| +25677|64873|F|110452.88|1994-10-26|1-URGENT|Clerk#000003251|0|ual, even pinto beans along the carefully ironic theodolites are fluffil| +25678|552304|O|116740.62|1995-06-16|5-LOW|Clerk#000004152|0|nal, even asymptotes sleep furiously. careful instructions would are around t| +25679|571258|F|26081.15|1993-01-10|3-MEDIUM|Clerk#000002853|0|egular pinto beans detect alongside of the regular asym| +25704|359237|O|300960.86|1998-05-02|1-URGENT|Clerk#000002658|0|y slyly pending foxes. carefully pending theodolites wake furiously th| +25705|180101|F|73103.24|1992-09-21|2-HIGH|Clerk#000004288|0|ronic pinto beans haggle quickly furiously final | +25706|695869|F|220343.98|1993-06-30|2-HIGH|Clerk#000003653|0|en instructions cajole blithely accounts. c| +25707|715784|O|109537.63|1998-03-19|2-HIGH|Clerk#000000444|0|ly regular pinto beans nag caref| +25708|168172|F|73326.84|1993-07-22|3-MEDIUM|Clerk#000003956|0|ic deposits wake. quickly ironic pinto beans sleep. carefully| +25709|459952|F|140634.43|1993-08-15|5-LOW|Clerk#000002606|0| are quickly around the furiou| +25710|145963|F|84265.76|1992-11-29|4-NOT SPECIFIED|Clerk#000001964|0|refully slyly final asymptotes. carefully special requests | +25711|693388|O|138041.70|1997-06-28|5-LOW|Clerk#000002428|0| across the even pinto beans. ca| +25736|243856|F|52864.96|1994-01-25|1-URGENT|Clerk#000002140|0|accounts use quickly above the ironic pl| +25737|467236|O|293298.66|1996-04-15|4-NOT SPECIFIED|Clerk#000001832|0|the quickly unusual requests. fluffily special foxes integrate fur| +25738|306833|F|93216.49|1992-02-24|3-MEDIUM|Clerk#000001440|0|. evenly ironic excuses are al| +25739|685738|O|56658.73|1998-07-16|2-HIGH|Clerk#000000355|0|kages. furiously pending depend| +25740|668476|O|66709.19|1996-09-25|3-MEDIUM|Clerk#000002617|0| furiously even deposits haggle fluffily. blithely even | +25741|52214|O|262489.26|1996-03-06|4-NOT SPECIFIED|Clerk#000002161|0|lessly regular pinto beans cajole about the carefully ironic notornis.| +25742|49738|O|274345.22|1997-06-29|3-MEDIUM|Clerk#000000967|0|tions around the carefully bold excuses cajole alongside of the fu| +25743|446497|O|76572.63|1997-11-03|1-URGENT|Clerk#000001115|0|es kindle busily final, express packages. caref| +25768|516118|F|145074.46|1993-06-13|2-HIGH|Clerk#000001446|0|ke blithely carefully special| +25769|617710|F|146691.76|1995-01-25|5-LOW|Clerk#000003762|0|uctions. carefully regular accounts about the fluf| +25770|336734|F|41801.64|1995-03-11|3-MEDIUM|Clerk#000004605|0|xcuses haggle furiously across the quickly ironic accounts. even ideas bre| +25771|726977|O|186071.08|1996-08-10|2-HIGH|Clerk#000001837|0|t requests. furiously final accounts sleep slyly. fluffy pearls wake quic| +25772|51397|O|94853.88|1997-11-02|5-LOW|Clerk#000002855|0|ly special instructions. furiously| +25773|565505|F|201617.87|1992-06-01|3-MEDIUM|Clerk#000001831|0|ly final accounts across the regular, even ideas wake according to t| +25774|438601|F|30231.58|1994-04-22|2-HIGH|Clerk#000001805|0|he slyly bold foxes. always| +25775|548975|F|52540.70|1994-07-14|3-MEDIUM|Clerk#000002734|0|t, bold accounts haggle after the requests. regular, even pinto | +25800|115978|P|277877.14|1995-05-06|2-HIGH|Clerk#000001019|0|to beans engage. slyly final accounts cajole after the ironic, regular | +25801|709502|O|244627.37|1998-03-21|2-HIGH|Clerk#000002796|0|regular, even forges. foxes kindle carefully carefully ironic a| +25802|336023|F|305217.26|1994-10-14|1-URGENT|Clerk#000000850|0|thely ironic packages alongside of the deposits impress| +25803|30397|F|134491.83|1995-01-17|1-URGENT|Clerk#000004693|0|y special ideas sleep idly quickly final pinto beans. even r| +25804|115841|O|178615.63|1998-02-24|4-NOT SPECIFIED|Clerk#000002877|0|gage furiously. carefully pending dep| +25805|682427|O|264027.54|1996-05-26|5-LOW|Clerk#000002535|0|atop the carefully even realms | +25806|548101|O|69405.67|1996-08-17|2-HIGH|Clerk#000001954|0|ve to haggle blithely at the furiously final sauternes. blithely expr| +25807|417509|O|154401.05|1996-03-15|4-NOT SPECIFIED|Clerk#000002168|0| final, regular asymptotes sleep carefully a| +25832|68608|O|187517.94|1996-07-08|5-LOW|Clerk#000003375|0|efully special platelets affix quickly express foxes. sly| +25833|337471|F|39188.87|1993-09-08|3-MEDIUM|Clerk#000002098|0|xes? quickly final deposits cajole ruthlessly bold accounts. final requests sl| +25834|341798|O|118533.25|1997-05-04|4-NOT SPECIFIED|Clerk#000004380|0|s cajole furiously. slyly bold deposits| +25835|333466|F|143536.03|1992-09-22|2-HIGH|Clerk#000003256|0|lar, regular packag| +25836|558100|O|247591.30|1997-10-28|4-NOT SPECIFIED|Clerk#000002875|0|s cajole. furiously even p| +25837|477488|O|275145.08|1996-11-04|2-HIGH|Clerk#000003318|0|pinto beans-- express foxes wake sly| +25838|128416|F|128062.16|1993-04-24|1-URGENT|Clerk#000002468|0|onic packages. instructions play quickly. regular reques| +25839|537523|F|158529.00|1993-07-09|5-LOW|Clerk#000002956|0|unusual deposits use. furiously special depos| +25864|384064|O|201887.94|1998-04-30|4-NOT SPECIFIED|Clerk#000004791|0|egular, regular dolphins. slyly ironic| +25865|441002|O|159720.49|1997-01-09|3-MEDIUM|Clerk#000002401|0| even pinto beans run furiously. sile| +25866|407431|F|166868.44|1992-11-24|4-NOT SPECIFIED|Clerk#000002107|0|he fluffily pending instructions-- pending, silent pearls t| +25867|178268|O|305220.61|1996-01-16|4-NOT SPECIFIED|Clerk#000000922|0|xpress, special pac| +25868|642512|O|107099.18|1996-04-15|4-NOT SPECIFIED|Clerk#000002514|0|e carefully regular packages integrate fluffi| +25869|198854|O|65500.39|1997-12-14|4-NOT SPECIFIED|Clerk#000002208|0|inal accounts. carefully express deposits use among the foxes. furiously unusu| +25870|127852|O|267790.24|1997-01-20|2-HIGH|Clerk#000003322|0|ng, express decoys sleep blithely across the foxes? b| +25871|28097|O|309386.00|1996-07-18|4-NOT SPECIFIED|Clerk#000000488|0|ar deposits. final packages sleep quickly. dependencies among the bold ideas| +25896|460349|F|201255.03|1993-11-14|5-LOW|Clerk#000000876|0|quests sleep against the carefu| +25897|72071|O|148712.47|1997-01-01|3-MEDIUM|Clerk#000001189|0|he blithely bold pinto beans! ironic pinto beans haggle carefully a| +25898|43963|F|96040.53|1992-06-08|1-URGENT|Clerk#000002700|0|ly even theodolites. slyly final requests boost carefully. ironic foxes fo| +25899|112834|O|192439.23|1997-06-23|3-MEDIUM|Clerk#000002793|0|osits about the blithely final courts sleep ac| +25900|392644|F|48439.08|1994-10-09|4-NOT SPECIFIED|Clerk#000002988|0|telets. deposits at the slyly regular theodolites boos| +25901|661445|O|41415.05|1995-09-29|5-LOW|Clerk#000004937|0|furiously express accounts integrate carefully grouches. cou| +25902|393052|F|63963.14|1993-12-03|5-LOW|Clerk#000003286|0|ess ideas nag at the slyly pending requests: quickly even packages a| +25903|19834|F|151814.52|1994-06-06|5-LOW|Clerk#000000445|0|ests promise carefully bold ideas. busily express | +25928|324482|F|274263.58|1995-02-02|1-URGENT|Clerk#000004951|0| packages across the special requests haggle slyly according to the unusual | +25929|314569|F|332605.52|1992-09-02|2-HIGH|Clerk#000004387|0|eodolites alongside of the regularly regular deposits poach carefully express| +25930|190789|O|126161.74|1996-06-17|4-NOT SPECIFIED|Clerk#000003103|0| platelets haggle sl| +25931|334523|O|133115.09|1997-07-12|1-URGENT|Clerk#000002705|0|are furiously ironic, final pinto beans. quickly s| +25932|317035|F|189901.66|1993-05-22|3-MEDIUM|Clerk#000004168|0|uickly. quickly pending requests haggl| +25933|378515|F|195575.48|1992-12-27|4-NOT SPECIFIED|Clerk#000001498|0|gle quickly. carefully ironic deposits wake blithely bold accou| +25934|187990|F|97641.32|1994-03-10|5-LOW|Clerk#000004186|0|ress requests? furiously special requests use fu| +25935|546286|O|345064.38|1997-05-14|5-LOW|Clerk#000004001|0|ular packages. slyly silen| +25960|647176|F|160893.53|1995-02-02|2-HIGH|Clerk#000002741|0|ironic requests. slyly bold | +25961|569827|O|161655.59|1996-10-09|3-MEDIUM|Clerk#000002537|0|unusual platelets. furiously bold requests us| +25962|313513|O|72016.08|1996-05-11|2-HIGH|Clerk#000001118|0| accounts. slyly final foxes sleep packages. even asymptotes haggl| +25963|460001|F|196535.83|1992-04-04|4-NOT SPECIFIED|Clerk#000001579|0|carefully even deposits about the courts cajole fluffily blithely | +25964|226267|F|71744.88|1993-03-18|3-MEDIUM|Clerk#000000506|0|the blithely daring grouches. express packag| +25965|353101|F|59170.56|1992-04-26|4-NOT SPECIFIED|Clerk#000003947|0|eposits sleep quickly express requests. regular, regular platelets haggle unus| +25966|540290|O|123709.11|1996-06-29|3-MEDIUM|Clerk#000002589|0|ess deposits haggle furiously special pinto beans-- f| +25967|389056|F|16084.30|1993-07-05|5-LOW|Clerk#000004991|0|courts. carefully bold foxes along the blit| +25992|349435|F|147978.38|1993-09-04|1-URGENT|Clerk#000002269|0|ts wake furiously a| +25993|425294|O|228126.26|1996-07-26|3-MEDIUM|Clerk#000001975|0|s cajole final theodolites. requests sleep furio| +25994|405332|O|155101.43|1997-12-08|1-URGENT|Clerk#000000536|0|dugouts integrate ag| +25995|149459|O|43988.40|1997-04-14|2-HIGH|Clerk#000004059|0|pending foxes. finally pending dependencies dazzle slyly through the carefull| +25996|195082|O|185221.44|1997-11-06|1-URGENT|Clerk#000004977|0|eep furiously. blithely final packa| +25997|483175|F|274594.93|1993-07-25|3-MEDIUM|Clerk#000001346|0|tly ironic deposits. c| +25998|443269|O|137573.79|1995-08-06|1-URGENT|Clerk#000001191|0| ironic packages grow daringly quickly ironic packages. quickly express| +25999|260330|F|297407.92|1993-05-01|3-MEDIUM|Clerk#000000272|0|ic accounts across the final, regular somas are slyly i| +26024|615787|F|147789.85|1992-05-04|3-MEDIUM|Clerk#000003510|0| hinder carefully pending foxes. unusual deposits are carefully. s| +26025|249469|O|165351.18|1995-06-24|4-NOT SPECIFIED|Clerk#000002140|0|gainst the regular packages. fluff| +26026|322990|O|155456.47|1996-06-22|2-HIGH|Clerk#000002969|0|y final theodolites | +26027|723866|O|338859.63|1996-10-29|2-HIGH|Clerk#000004649|0|ages boost unusual, bold courts.| +26028|262333|O|128074.79|1996-02-04|3-MEDIUM|Clerk#000003792|0| after the carefully express deposits. express, ironic accounts use car| +26029|503399|F|9434.83|1993-07-04|2-HIGH|Clerk#000001258|0|e dependencies integrate carefully blithely silent requests. ironic requests| +26030|624073|O|163358.68|1998-07-15|3-MEDIUM|Clerk#000004563|0|solve quickly regular accounts. final, i| +26031|35902|O|239398.24|1995-10-04|3-MEDIUM|Clerk#000001471|0|r requests. final courts haggle regularly up the furiously pending notorni| +26056|381796|O|166477.89|1995-07-31|2-HIGH|Clerk#000001774|0|y bold theodolites cajole furiously across the f| +26057|590837|O|146812.99|1996-05-26|4-NOT SPECIFIED|Clerk#000000976|0|tions wake fluffily about the slyly final accoun| +26058|192370|F|41860.71|1992-10-14|5-LOW|Clerk#000000228|0|ly final ideas across the regular, sile| +26059|655372|F|145915.96|1992-01-05|3-MEDIUM|Clerk#000002579|0|te slyly. furiously regular pinto beans about the sl| +26060|316598|F|117689.03|1994-03-31|2-HIGH|Clerk#000000552|0|ously furiously silent requ| +26061|554989|O|60606.57|1997-12-24|1-URGENT|Clerk#000004711|0|beans according to the blithely s| +26062|669851|F|133264.94|1993-03-07|1-URGENT|Clerk#000000575|0|arefully thin requests cajole pinto beans. carefully| +26063|677140|F|165832.28|1992-07-10|2-HIGH|Clerk#000003394|0|ts. carefully even dolphins are blithely aft| +26088|171566|O|242389.09|1997-06-18|2-HIGH|Clerk#000001209|0|around the furiously ironic packages wake amon| +26089|494227|O|44765.50|1996-05-06|5-LOW|Clerk#000002192|0| slyly regular instructions boost carefu| +26090|200167|F|44775.69|1993-11-18|2-HIGH|Clerk#000000306|0|ss platelets cajole slyly against the ironic dependencies. furiously iron| +26091|448618|O|92947.50|1996-05-09|3-MEDIUM|Clerk#000001334|0|efully final foxes cajole furiously among the quickly even asymptot| +26092|147742|F|70548.35|1993-07-08|1-URGENT|Clerk#000001064|0| after the slyly regular ideas. carefully even dolphins against| +26093|571514|O|212044.40|1997-05-04|1-URGENT|Clerk#000002222|0|sleep furiously stealthy pinto beans. silent ideas haggle ca| +26094|179240|O|86005.45|1995-08-23|1-URGENT|Clerk#000003157|0|y even courts. even requests| +26095|474169|F|417007.70|1993-10-23|3-MEDIUM|Clerk#000003414|0|ronic, daring instructions cajole slyly slyly ex| +26120|599417|F|244594.77|1995-01-31|5-LOW|Clerk#000001856|0|ter the quickly ironic foxes-- quickly silent ideas wake c| +26121|394928|O|66666.66|1998-04-06|1-URGENT|Clerk#000002139|0|eas. silently silent deposits eat around the final deposits. slyly ironi| +26122|44263|O|140370.04|1996-11-29|2-HIGH|Clerk#000002967|0|counts. bold, silent accounts cajole foxes. carefully ir| +26123|661100|O|203441.03|1995-07-02|5-LOW|Clerk#000003413|0| the ironic packages integrate quickly after the boldly final foxe| +26124|606743|O|156897.78|1997-12-18|1-URGENT|Clerk#000003064|0|. blithely ironic deposits cajole carefully. slyly regu| +26125|529237|F|154351.58|1993-11-09|1-URGENT|Clerk#000004632|0|mong the quickly bold foxes. pending, final deposits nag. final, fina| +26126|613597|O|88492.42|1995-04-04|5-LOW|Clerk#000002676|0|xcuses. furiously regular requests use evenly? | +26127|219283|O|125657.40|1995-11-09|5-LOW|Clerk#000002839|0|eans. carefully special requests affix above the | +26152|725317|F|181027.86|1992-10-17|5-LOW|Clerk#000000007|0|round the carefully final pinto beans. iron| +26153|644500|F|272831.16|1994-03-06|4-NOT SPECIFIED|Clerk#000004327|0|the ironic accounts. quick| +26154|585706|F|51434.16|1992-10-04|3-MEDIUM|Clerk#000001102|0|telets. blithely even excuses cajole slyly pendin| +26155|183070|O|192354.69|1996-02-01|2-HIGH|Clerk#000000522|0|al packages run quickly-- carefully even ideas snooze c| +26156|329782|O|61832.53|1996-10-08|2-HIGH|Clerk#000000347|0|ng the pending depende| +26157|124064|F|301164.61|1994-02-17|4-NOT SPECIFIED|Clerk#000004229|0|express packages. slyly spe| +26158|138715|O|204225.59|1998-03-03|4-NOT SPECIFIED|Clerk#000002116|0|ully alongside of the blithely regular i| +26159|366385|F|253860.16|1992-09-20|1-URGENT|Clerk#000004363|0|ests. enticing ideas behind the thinly r| +26184|299345|O|231316.85|1997-05-04|5-LOW|Clerk#000004076|0|ounts are blithely regular requests. blithely special the| +26185|88664|P|93851.58|1995-03-23|3-MEDIUM|Clerk#000004322|0|even packages-- quickly even deposits on the bold, regular platelets c| +26186|668321|F|317316.32|1994-03-13|3-MEDIUM|Clerk#000002676|0|y ironic foxes. regular, regular requests after| +26187|460660|O|116599.03|1997-03-08|4-NOT SPECIFIED|Clerk#000000181|0|es use quickly after the requests: slyly silent pack| +26188|60413|F|111034.00|1993-04-04|1-URGENT|Clerk#000001525|0|ng theodolites wake slyly even packages. slyly regular dependencies w| +26189|600553|F|76125.98|1992-12-07|4-NOT SPECIFIED|Clerk#000001682|0|nal epitaphs integrate against the regular, final depo| +26190|739283|O|129543.13|1997-06-28|5-LOW|Clerk#000001430|0|boldly brave pinto beans-- slyly pending courts according to th| +26191|619618|F|290396.96|1995-02-25|3-MEDIUM|Clerk#000003442|0|special hockey players along the bold| +26216|162406|F|183189.34|1994-08-30|2-HIGH|Clerk#000000813|0|y ideas on the blithely unusual sentiments nag ironic, | +26217|296167|O|242946.95|1996-03-04|3-MEDIUM|Clerk#000003901|0|ly across the slyly special ideas. silent asymptotes again| +26218|648835|O|140655.25|1997-03-15|5-LOW|Clerk#000000656|0|lly even requests wake carefully. instructions according to the re| +26219|717344|O|174531.24|1997-01-18|2-HIGH|Clerk#000002889|0|to beans. escapades among the silently bold req| +26220|145276|O|163834.86|1997-09-22|5-LOW|Clerk#000001543|0|y unusual ideas sleep among the quickly ironic package| +26221|372554|F|142208.23|1992-05-10|2-HIGH|Clerk#000004878|0|mptotes. fluffily bold warthogs are daringly a| +26222|503278|P|150240.36|1995-05-01|4-NOT SPECIFIED|Clerk#000000549|0|ffix. asymptotes haggle quickly against the ironic pinto beans. depos| +26223|73478|F|157912.52|1994-07-05|1-URGENT|Clerk#000001166|0| furiously blithely pending deposits. carefully regular instructions slee| +26248|438493|F|69285.59|1993-12-26|5-LOW|Clerk#000000178|0|ess, silent deposits. fur| +26249|225724|F|186385.33|1993-04-13|5-LOW|Clerk#000001447|0|s promise alongside of the ironic platelets. final, ironic deposits boos| +26250|211123|O|175129.82|1996-07-06|2-HIGH|Clerk#000002017|0|its. bold excuses boost according to the blithely special courts. express i| +26251|65728|F|83866.54|1993-11-23|3-MEDIUM|Clerk#000003881|0| theodolites. furiously ironic accounts dazzle care| +26252|690002|F|193613.67|1994-05-23|1-URGENT|Clerk#000002828|0|s cajole. furiously r| +26253|359659|F|43259.11|1992-10-13|3-MEDIUM|Clerk#000003376|0|usual packages haggle furiously about the deposi| +26254|531656|F|220119.42|1994-05-06|5-LOW|Clerk#000003367|0|al accounts affix according to the carefully regular packages| +26255|39262|O|62098.44|1996-03-20|4-NOT SPECIFIED|Clerk#000000269|0|e permanent requests. carefully ironic decoys dazzle carefully a| +26280|606781|F|37932.78|1995-04-12|3-MEDIUM|Clerk#000003929|0|jole according to the blithely unusual ideas. quickly unusual| +26281|408740|F|89860.07|1993-03-30|2-HIGH|Clerk#000000371|0|to beans after the p| +26282|441164|F|64615.04|1994-01-30|5-LOW|Clerk#000004894|0|kages. furiously blithe tithes are. even instructions need to hang | +26283|138868|F|201940.25|1992-10-04|2-HIGH|Clerk#000003403|0|cial pinto beans solve acros| +26284|675367|O|171776.65|1996-06-03|5-LOW|Clerk#000000776|0|he asymptotes nag carefully bold instructio| +26285|361282|P|245229.38|1995-05-01|5-LOW|Clerk#000002850|0|special packages above the packages pr| +26286|44158|P|163496.28|1995-05-19|1-URGENT|Clerk#000002822|0|ccounts. furiously regular requests affix ironically abov| +26287|407968|F|134333.88|1994-10-11|5-LOW|Clerk#000001598|0|instructions wake around the final| +26312|214702|O|257958.43|1996-06-25|2-HIGH|Clerk#000001278|0|ep among the special, even excuses: unusual attainments cajole slyly iron| +26313|231347|F|180399.33|1994-03-07|5-LOW|Clerk#000001312|0| above the instructions. unusual deposits sleep carefully quickly unusua| +26314|243433|O|155924.77|1995-11-13|3-MEDIUM|Clerk#000000647|0|haggle along the quietly regular pinto beans. courts wak| +26315|126610|O|247220.97|1998-07-14|2-HIGH|Clerk#000004233|0|furiously ironic deposit| +26316|155962|F|142203.85|1993-06-13|2-HIGH|Clerk#000002525|0|tions. slyly regular accounts cajo| +26317|747572|O|109092.76|1997-08-03|2-HIGH|Clerk#000001910|0|regular foxes. silent deposits haggle slyly. fur| +26318|432817|F|281966.27|1994-10-28|1-URGENT|Clerk#000001192|0|instructions. silent accounts cajole quickly ac| +26319|80449|O|190226.94|1996-11-21|2-HIGH|Clerk#000000112|0|ar warhorses poach | +26344|583339|O|105686.22|1996-12-27|2-HIGH|Clerk#000003491|0|ly regular asymptotes maintain across the pinto beans. even, express p| +26345|162325|O|212025.85|1998-05-28|2-HIGH|Clerk#000004618|0|ns haggle according to the furiously iron| +26346|433268|F|127984.09|1993-09-19|1-URGENT|Clerk#000003470|0|inal decoys are slyly. bold requests c| +26347|178217|O|112941.32|1998-06-02|2-HIGH|Clerk#000004893|0| are carefully even ideas. furiously regular excuses along the slyly even d| +26348|534229|F|210224.29|1992-05-26|4-NOT SPECIFIED|Clerk#000000917|0|ross the furiously final pinto beans. quickly ir| +26349|508664|O|89459.55|1998-06-06|2-HIGH|Clerk#000001554|0|y slyly slow accounts. permanent foxes na| +26350|603488|O|17166.89|1995-05-29|2-HIGH|Clerk#000002656|0|above the carefully regular requests. blithely final| +26351|567392|O|290811.03|1997-03-09|1-URGENT|Clerk#000003126|0|o beans. slyly ironic reques| +26376|641683|F|41696.54|1994-11-22|2-HIGH|Clerk#000002423|0|luffily special ideas wake carefully after the regular instructions| +26377|498683|F|78259.54|1993-11-22|2-HIGH|Clerk#000001863|0|ar ideas cajole quickly near the furiously regular packages. caref| +26378|110842|O|188904.81|1998-01-28|3-MEDIUM|Clerk#000004761|0|usy grouches. furiously special instructions about| +26379|654511|F|114574.06|1994-05-29|5-LOW|Clerk#000001604|0|he final, regular packages sleep idly ironic, regular notornis. express, exp| +26380|92827|F|126941.64|1992-12-09|4-NOT SPECIFIED|Clerk#000000669|0|ic theodolites use slyly accord| +26381|113992|O|26766.36|1996-11-05|5-LOW|Clerk#000002861|0| sleep. final courts integrate carefully. carefully regular depende| +26382|350098|O|108038.23|1997-04-30|5-LOW|Clerk#000000136|0|iments. quickly special requests before the pending packages| +26383|333829|F|86113.33|1994-07-05|3-MEDIUM|Clerk#000001789|0|ets. slyly ironic acco| +26408|636577|F|168843.04|1993-10-13|3-MEDIUM|Clerk#000003394|0|nic instructions. ironic instructions haggle after the silent requests. specia| +26409|188138|F|98300.58|1992-12-15|3-MEDIUM|Clerk#000004198|0|l instructions are regular deposits. f| +26410|30487|O|84018.95|1997-02-19|1-URGENT|Clerk#000000554|0|enticingly special requests. carefully ironic deposits nag p| +26411|115546|O|168287.81|1997-10-25|2-HIGH|Clerk#000001976|0|ts in place of the ironic packages hang furiously| +26412|216467|F|76930.41|1994-01-12|1-URGENT|Clerk#000004180|0|nusual sauternes are carefully s| +26413|651151|F|219152.54|1994-10-23|1-URGENT|Clerk#000000898|0|ages sleep atop the qu| +26414|623089|P|287469.51|1995-05-01|2-HIGH|Clerk#000002882|0|bold asymptotes! quickly ironic deposits are slyly across the | +26415|742175|O|235498.48|1996-03-12|1-URGENT|Clerk#000002379|0|accounts according to the quickly ironic pa| +26440|484672|O|146704.00|1997-04-26|2-HIGH|Clerk#000001301|0|final packages cajole acro| +26441|125246|F|141450.97|1994-09-11|4-NOT SPECIFIED|Clerk#000004585|0| asymptotes. ironic deposits engage blithely quiet, express packages. car| +26442|498242|O|26587.76|1995-11-20|2-HIGH|Clerk#000004295|0|inst the pinto beans. furiously ironic accounts are blith| +26443|193979|F|318469.11|1993-07-22|3-MEDIUM|Clerk#000000153|0|ets haggle carefully according to the sl| +26444|699595|F|158085.03|1993-09-14|5-LOW|Clerk#000000151|0|y against the slyly quick excuses. carefully exp| +26445|313510|F|56915.49|1994-08-15|4-NOT SPECIFIED|Clerk#000001336|0|ronic foxes wake. quickly unusual | +26446|391571|O|218924.56|1995-11-08|2-HIGH|Clerk#000001166|0|re against the even packages. blithely bold| +26447|625616|F|113350.57|1994-04-30|2-HIGH|Clerk#000002268|0|ests wake slyly. packages cajo| +26472|467965|O|63099.77|1997-06-16|2-HIGH|Clerk#000001506|0|ffily ironic accounts sleep slyly. | +26473|582862|F|23554.16|1993-08-16|4-NOT SPECIFIED|Clerk#000001755|0|yly against the idly iron| +26474|388715|F|346420.41|1993-04-22|4-NOT SPECIFIED|Clerk#000003918|0|usual theodolites. fluffily specia| +26475|629788|O|123737.33|1997-02-01|5-LOW|Clerk#000000285|0|lly ironic packages. slyly final courts wa| +26476|90692|O|249085.83|1996-07-05|1-URGENT|Clerk#000004565|0|slyly ironic deposits haggle. blithely ironic deposits use reg| +26477|251680|O|79354.54|1998-03-13|2-HIGH|Clerk#000004454|0|lly! fluffily sly asymptotes wake quickly special ideas. idly r| +26478|721334|O|174148.19|1996-08-30|4-NOT SPECIFIED|Clerk#000001823|0| alongside of the fluffily pending excuses-- pending theodo| +26479|457747|O|273615.91|1995-12-06|1-URGENT|Clerk#000000792|0|l accounts impress. even, even requests use final somas. evenl| +26504|582760|O|31808.55|1998-03-05|5-LOW|Clerk#000001190|0|beans wake final foxes. furiously| +26505|176221|O|30481.09|1996-11-02|3-MEDIUM|Clerk#000002134|0|c deposits. carefully special courts integrate carefully blithe, express dolp| +26506|714827|O|34121.72|1997-09-05|2-HIGH|Clerk#000004710|0|uffily. carefully ironic asymptotes according to the| +26507|584537|F|248047.22|1995-01-10|4-NOT SPECIFIED|Clerk#000004930|0|ironic platelets use quickly carefully special package| +26508|57664|F|216207.32|1994-03-17|3-MEDIUM|Clerk#000002406|0|osits are carefully fur| +26509|139349|O|153743.73|1996-10-06|1-URGENT|Clerk#000002960|0| blithely ironic theodolites are carefully. regular deposits | +26510|529228|O|235621.86|1998-06-24|3-MEDIUM|Clerk#000004816|0| ironic, special packages will have to nod according to the express i| +26511|453241|F|3455.11|1992-10-09|3-MEDIUM|Clerk#000001990|0|hin packages doubt. fluffily unusual grouches cajole stealthily abou| +26536|608657|O|31030.18|1997-02-02|4-NOT SPECIFIED|Clerk#000002574|0|sly dependencies! bold ex| +26537|438970|O|149253.34|1997-03-30|5-LOW|Clerk#000004801|0|ages. carefully express d| +26538|747283|F|246843.92|1994-01-26|1-URGENT|Clerk#000003463|0|y special packages. slyly final ideas integrate bey| +26539|84586|O|309255.62|1996-02-15|5-LOW|Clerk#000002204|0| regular sentiments integrate above the accounts. carefully final requests n| +26540|373561|O|74409.45|1997-03-18|2-HIGH|Clerk#000000770|0| beans. quickly slow packa| +26541|170878|O|204960.58|1996-07-03|5-LOW|Clerk#000002743|0| bravely express theodolites. final deposits until the | +26542|195164|O|198877.34|1997-07-01|4-NOT SPECIFIED|Clerk#000004004|0|ironic requests along the furiously express deposits lose qui| +26543|364831|O|234789.62|1996-03-13|3-MEDIUM|Clerk#000003129|0|ackages. slowly express deposits can are slyly | +26568|459965|O|57569.17|1997-07-21|4-NOT SPECIFIED|Clerk#000002564|0|lphins. quickly regular excuses use slyly. unusual, even waters haggle agains| +26569|379405|F|160593.81|1994-03-25|5-LOW|Clerk#000003212|0|y slyly pending requests. carefully even depos| +26570|136763|O|200685.41|1996-02-07|5-LOW|Clerk#000003187|0| regular asymptotes. ca| +26571|561604|O|124370.89|1997-01-23|5-LOW|Clerk#000003505|0|bout the special, regular instructions. pending re| +26572|104045|F|190261.08|1993-02-22|1-URGENT|Clerk#000001573|0|cording to the ironic packages. requests cajole furious| +26573|421607|F|119444.43|1994-06-09|1-URGENT|Clerk#000003453|0|s. furiously even deposits according to the ideas | +26574|690868|F|212007.51|1992-07-04|3-MEDIUM|Clerk#000003844|0|ly among the final packages. ideas| +26575|641765|F|307527.12|1993-04-29|2-HIGH|Clerk#000001242|0|tions sleep from the furiously unusual packages. carefully expr| +26600|389557|F|315294.72|1992-05-16|1-URGENT|Clerk#000000109|0|the ironic dolphins. slyly quiet deposits haggle dar| +26601|513284|O|23695.84|1998-01-06|3-MEDIUM|Clerk#000004593|0|ss packages. final pac| +26602|248851|F|293959.91|1992-11-05|1-URGENT|Clerk#000001248|0|iously final foxes. ex| +26603|424333|F|233195.95|1993-09-19|4-NOT SPECIFIED|Clerk#000004757|0|as. brave, bold accounts cajole carefully fluffily thin requests. care| +26604|9547|F|275832.21|1992-03-28|4-NOT SPECIFIED|Clerk#000002666|0|arefully stealthy dependencies haggle carefully-| +26605|705595|F|48468.44|1992-05-29|3-MEDIUM|Clerk#000001132|0|ainst the sentiments cajole along the carefully regular do| +26606|676604|O|30251.34|1995-10-21|3-MEDIUM|Clerk#000002401|0|ound the blithely final theo| +26607|178316|O|95536.58|1996-03-27|4-NOT SPECIFIED|Clerk#000004951|0|ss accounts. blithely regular ideas los| +26632|698023|O|36950.56|1995-06-02|2-HIGH|Clerk#000003205|0|arefully final accounts are| +26633|146854|F|50845.98|1993-05-10|1-URGENT|Clerk#000000374|0|lithely special deposits are furiousl| +26634|666625|F|45571.70|1992-02-01|4-NOT SPECIFIED|Clerk#000000853|0|d pinto beans. closely silent excuse| +26635|446299|F|101142.52|1992-07-28|1-URGENT|Clerk#000001306|0|the furiously regul| +26636|196342|F|259540.88|1993-12-24|3-MEDIUM|Clerk#000001024|0|posits sleep furiously. carefully express requests alongside of t| +26637|648926|F|225955.84|1993-09-30|5-LOW|Clerk#000003832|0|cies. fluffily ironic foxes are blithely according to the bold package| +26638|743474|F|30060.68|1992-04-03|3-MEDIUM|Clerk#000001500|0|ithely bold courts wake carefully carefully even instructions? blithe| +26639|566656|O|16359.62|1997-05-17|3-MEDIUM|Clerk#000004860|0|grate around the iro| +26664|276974|F|154956.89|1992-12-03|5-LOW|Clerk#000004436|0| the quickly regular instructions could have to bo| +26665|591028|F|89044.58|1993-10-20|3-MEDIUM|Clerk#000002715|0|the furiously unusual deposits. blith| +26666|385624|O|67065.51|1997-01-24|2-HIGH|Clerk#000002085|0|deposits poach after the fluffily express deposits. pint| +26667|401387|O|116963.26|1997-10-06|4-NOT SPECIFIED|Clerk#000002080|0|es unwind slyly. furiously regular sauternes wake slyly quickly re| +26668|605317|F|198019.33|1995-02-11|4-NOT SPECIFIED|Clerk#000001702|0|packages sleep carefully carefully ironic accounts. final,| +26669|562615|O|272203.78|1995-05-16|2-HIGH|Clerk#000004434|0|hins sleep furiously| +26670|595922|F|102295.66|1993-06-13|3-MEDIUM|Clerk#000003007|0|dolites haggle fluffily regular accounts. foxes haggle fluffily fu| +26671|152671|O|55572.37|1997-11-11|4-NOT SPECIFIED|Clerk#000000164|0|ing packages are across the fluffily ironic ideas. slyly regular se| +26696|189517|O|183646.90|1998-03-04|1-URGENT|Clerk#000004726|0|ess deposits. unusual sauternes impress slyly among th| +26697|695086|O|222574.81|1995-12-08|2-HIGH|Clerk#000002494|0|s against the requests sleep across the ruth| +26698|285305|F|112323.92|1992-05-28|3-MEDIUM|Clerk#000002622|0|es. carefully ironic packages among the pac| +26699|366476|O|246862.89|1995-10-08|5-LOW|Clerk#000001452|0|the fluffily express ideas. carefull| +26700|347383|F|239349.77|1994-11-28|4-NOT SPECIFIED|Clerk#000002565|0|sts are according to the f| +26701|434314|O|193823.17|1998-04-18|4-NOT SPECIFIED|Clerk#000003570|0|lar theodolites sleep fluffily s| +26702|512038|O|163500.14|1997-07-07|2-HIGH|Clerk#000002681|0|fter the blithely stealthy asymptotes. bold, bold instructions ca| +26703|310129|O|64807.57|1996-06-19|4-NOT SPECIFIED|Clerk#000003165|0| blithely ironic requests boost furiously against the blithely final pint| +26728|588055|O|367535.41|1996-10-29|5-LOW|Clerk#000003246|0|ar dependencies. quickly regular instructions mold slyly fluffily regular requ| +26729|680212|F|226578.71|1994-09-15|4-NOT SPECIFIED|Clerk#000004569|0|deposits cajole fluf| +26730|46759|O|181680.01|1996-01-12|3-MEDIUM|Clerk#000000593|0|the quickly stealthy foxes w| +26731|613453|F|92793.97|1993-11-17|3-MEDIUM|Clerk#000004715|0| the finally regular dolphins mold furiously against the instructions.| +26732|43240|F|106860.47|1992-06-03|3-MEDIUM|Clerk#000002075|0|ts are carefully along| +26733|714251|F|152316.18|1992-10-02|3-MEDIUM|Clerk#000003688|0|onic accounts nag a| +26734|651008|O|83454.58|1998-01-02|3-MEDIUM|Clerk#000000199|0|posits-- carefully final deposits play quickly pending packages-- furiou| +26735|477199|F|122903.22|1993-12-01|5-LOW|Clerk#000003894|0| wake quickly according to the| +26760|513322|F|75713.92|1993-02-26|2-HIGH|Clerk#000004578|0|lar pinto beans. quickly special requests n| +26761|149587|F|25328.80|1994-06-16|2-HIGH|Clerk#000004289|0|uffily with the carefully even packages. quick| +26762|81035|O|116560.10|1997-04-15|1-URGENT|Clerk#000000328|0|ind slyly after the carefully express de| +26763|697469|F|176000.48|1993-01-07|4-NOT SPECIFIED|Clerk#000000925|0|fluffily even theodolites. carefu| +26764|608789|F|90857.30|1993-10-08|1-URGENT|Clerk#000000676|0|riously close packages integrate carefully silent warthogs! e| +26765|407710|F|116515.57|1993-03-29|1-URGENT|Clerk#000002079|0|pinto beans are furiously spe| +26766|368302|O|99849.94|1995-05-01|1-URGENT|Clerk#000002466|0|refully regular reque| +26767|293204|O|296248.22|1995-08-09|4-NOT SPECIFIED|Clerk#000000843|0|excuses. regular ideas boost blit| +26792|372035|F|29798.02|1992-09-14|3-MEDIUM|Clerk#000004557|0|silent instructions. final, special pl| +26793|35233|O|41717.07|1995-11-02|4-NOT SPECIFIED|Clerk#000001609|0|riously about the express deposits. blithely unusual accounts abov| +26794|389173|P|319583.46|1995-06-08|5-LOW|Clerk#000001800|0|wake. regular platelets use carefully about th| +26795|51827|O|168954.82|1996-10-10|5-LOW|Clerk#000004065|0|ely silent instructions; final idea| +26796|302306|P|147856.76|1995-05-27|3-MEDIUM|Clerk#000000796|0|refully alongside of the carefully special deposits! expre| +26797|353626|O|18912.20|1996-03-29|1-URGENT|Clerk#000001774|0|ts. furiously even instructions about th| +26798|366644|O|115917.59|1996-01-15|2-HIGH|Clerk#000001041|0|efully bold requests. slyly even excuses cajo| +26799|174812|O|207957.37|1998-01-01|5-LOW|Clerk#000000303|0|the final requests haggle furiously even accounts; carefull| +26824|308152|F|208781.92|1994-08-26|5-LOW|Clerk#000001117|0|quickly ironic deposits. final pa| +26825|357886|F|197547.42|1993-08-16|3-MEDIUM|Clerk#000004932|0|ronic dependencies around the careful| +26826|728627|O|67126.37|1998-05-17|3-MEDIUM|Clerk#000001382|0|carefully after the quickly final theodolites. p| +26827|24724|O|77098.60|1996-08-13|4-NOT SPECIFIED|Clerk#000002349|0|he blithely final deposits nag throug| +26828|10717|O|2239.47|1997-07-20|2-HIGH|Clerk#000001671|0|lar dolphins according to the carefully silent requests sleep blith| +26829|93497|F|216113.71|1994-12-22|2-HIGH|Clerk#000004750|0|carefully bold deposits. deposi| +26830|150001|O|30085.12|1996-06-01|2-HIGH|Clerk#000000086|0|al, bold deposits cajole slyly. even in| +26831|285952|O|157053.50|1995-09-15|5-LOW|Clerk#000004099|0|sly regular package| +26856|733094|O|264646.16|1996-02-09|1-URGENT|Clerk#000001281|0|. ironic instructions cajole slyly near t| +26857|100667|O|299770.31|1995-12-03|1-URGENT|Clerk#000003190|0|realms. carefully pending packages sleep packages. carefully bus| +26858|650081|F|32309.59|1992-12-28|1-URGENT|Clerk#000002362|0|lar ideas. requests wake. regular sentiments about the enticing packages| +26859|656171|O|166735.23|1997-10-21|4-NOT SPECIFIED|Clerk#000000289|0| about the final ideas. furiously| +26860|257314|F|46473.66|1992-06-17|1-URGENT|Clerk#000004240|0|yly even deposits wake furiously ironic ideas! even| +26861|152563|P|128204.36|1995-06-11|2-HIGH|Clerk#000003797|0|uctions wake blithely. furiously unusual ideas wake t| +26862|603890|O|27686.90|1996-12-11|4-NOT SPECIFIED|Clerk#000002973|0|uffily express instructions. bli| +26863|578987|O|127657.50|1998-05-18|4-NOT SPECIFIED|Clerk#000004579|0|as affix never slyly even no| +26888|529519|F|40490.10|1992-12-09|4-NOT SPECIFIED|Clerk#000002431|0|thely regular requests detect slyly bold excuses.| +26889|94597|F|173150.19|1994-02-09|2-HIGH|Clerk#000002679|0|express requests doze carefully slyly ironic braids! | +26890|621643|O|40474.38|1997-11-10|3-MEDIUM|Clerk#000001069|0|gular requests snooze across the slyly final depos| +26891|425656|F|156576.00|1993-06-30|4-NOT SPECIFIED|Clerk#000003600|0|tructions along the carefully| +26892|491333|F|167279.27|1992-03-17|4-NOT SPECIFIED|Clerk#000003459|0|slyly. brave deposits wake caref| +26893|333694|F|151717.40|1992-12-01|5-LOW|Clerk#000004419|0|le blithely. accounts cajole quickly. furiously ironic decoys wake blith| +26894|611668|O|294827.77|1996-01-05|4-NOT SPECIFIED|Clerk#000001614|0|ncies. even warhors| +26895|53299|O|72658.16|1996-09-28|4-NOT SPECIFIED|Clerk#000004617|0|p fluffily bold accounts. quickly re| +26920|281371|F|169909.38|1993-07-17|5-LOW|Clerk#000002382|0|efully ironic accounts across the special asymptotes sleep slyly| +26921|249737|F|218132.72|1994-10-28|1-URGENT|Clerk#000001117|0|eposits eat pending, pe| +26922|314842|F|156462.52|1994-12-02|1-URGENT|Clerk#000003653|0|s. quickly pending deposits use blithely special frets. bli| +26923|291802|O|118650.27|1997-12-28|4-NOT SPECIFIED|Clerk#000003067|0|olites nag around the blithely| +26924|58643|O|59523.53|1996-12-31|1-URGENT|Clerk#000001627|0|y above the carefully ironic deposits. slyly even requ| +26925|107479|O|66750.80|1995-03-18|5-LOW|Clerk#000003860|0| pending theodolites. furiously sp| +26926|369971|O|162005.86|1996-11-19|4-NOT SPECIFIED|Clerk#000001591|0|ully regular ideas nag furiou| +26927|588124|F|189183.64|1994-01-31|4-NOT SPECIFIED|Clerk#000002675|0|es sleep ironic, even waters. even dolphins impress| +26952|336499|F|295576.62|1992-10-13|3-MEDIUM|Clerk#000004810|0|ve the slyly silent deposits are stealthil| +26953|518423|F|1368.81|1992-02-26|5-LOW|Clerk#000001817|0|nwind furiously along the regular pinto beans. q| +26954|382768|O|192851.45|1997-03-30|4-NOT SPECIFIED|Clerk#000001589|0|carefully ironic instructions. furiously ironic foxes sleep quickly foxe| +26955|410356|F|189803.25|1993-06-02|5-LOW|Clerk#000001001|0| quickly silent fox| +26956|577825|F|37238.74|1994-06-14|2-HIGH|Clerk#000003600|0|e even, final excuses nag carefully furio| +26957|478594|O|6364.05|1997-12-20|4-NOT SPECIFIED|Clerk#000001947|0|e bold theodolites doubt quickly bold foxes: quickly | +26958|716410|F|41226.76|1993-04-11|5-LOW|Clerk#000001469|0|old deposits about the regular deposits cajole slyly blith| +26959|183754|O|205689.46|1998-02-27|1-URGENT|Clerk#000003684|0|ong the even accounts. slyly express pinto beans cajole slyly furiously regul| +26984|598825|O|267884.99|1996-04-03|4-NOT SPECIFIED|Clerk#000002275|0|deposits after the regular deposits wake furio| +26985|196214|O|142564.93|1997-03-07|3-MEDIUM|Clerk#000004404|0|hes-- slyly even foxes print furiously. accounts are blith| +26986|3154|O|31465.14|1996-11-05|2-HIGH|Clerk#000002321|0|ths affix quickly instructions. slyly bold requests could | +26987|482140|F|240471.39|1992-07-04|5-LOW|Clerk#000001674|0|osits solve among the blithely even deposits. carefully regula| +26988|305359|O|231109.37|1995-07-05|5-LOW|Clerk#000001466|0|the evenly ironic ideas haggle carefully according to the blithel| +26989|638342|F|103893.08|1994-03-21|2-HIGH|Clerk#000002431|0|ccording to the accounts cajole even pinto | +26990|598820|F|10662.54|1993-07-29|5-LOW|Clerk#000001157|0|y. furiously bold accounts cajole carefully. furiously pending ac| +26991|102850|O|39534.85|1995-12-20|4-NOT SPECIFIED|Clerk#000000384|0|ly. ironic packages breach quickly regular accounts! carefully unusua| +27016|573109|F|43770.68|1992-08-16|5-LOW|Clerk#000004149|0|asymptotes mold above the furiously| +27017|738448|O|187317.05|1998-03-22|3-MEDIUM|Clerk#000000219|0|ding deposits affix carefully. s| +27018|88609|P|188882.40|1995-06-12|3-MEDIUM|Clerk#000000779|0|ously bold excuses print furiously accounts? even packages sublate. depos| +27019|491584|O|152242.71|1996-08-04|5-LOW|Clerk#000004707|0|hins. final, special courts alongside o| +27020|25207|O|290956.74|1997-10-15|5-LOW|Clerk#000001026|0| quickly express requests nag blithely about the slyl| +27021|634100|F|224233.53|1994-10-14|3-MEDIUM|Clerk#000003236|0|efully final theodo| +27022|556469|F|130206.51|1994-09-01|3-MEDIUM|Clerk#000003067|0|ons cajole express, even instructions. quickly| +27023|71975|O|324793.96|1995-09-07|5-LOW|Clerk#000001742|0|slyly regular warthogs sleep slyly special pi| +27048|669707|O|238314.85|1995-10-20|4-NOT SPECIFIED|Clerk#000000604|0|yers cajole quickly quickly bold packages. blithely special requests u| +27049|503549|F|188129.91|1994-10-19|2-HIGH|Clerk#000002861|0|y even packages thrash slyly against the quickly regula| +27050|147596|F|142748.96|1994-12-17|5-LOW|Clerk#000002436|0| carefully blithely final platelets. ironic excuses affix instructio| +27051|383003|O|134161.89|1998-02-03|1-URGENT|Clerk#000002155|0|y final deposits wake unusual, final instructi| +27052|628477|F|252553.41|1992-12-06|3-MEDIUM|Clerk#000001872|0|sual theodolites. slyly silent instr| +27053|551399|F|57422.64|1994-08-18|3-MEDIUM|Clerk#000002280|0|y regular theodolites. even theodolites boost. | +27054|361250|O|54398.74|1997-08-24|4-NOT SPECIFIED|Clerk#000002222|0|its. ironic, even requests among the carefully| +27055|276973|O|42302.17|1996-08-15|5-LOW|Clerk#000000369|0| foxes alongside of | +27080|562084|F|253720.69|1995-01-02|5-LOW|Clerk#000000335|0| pending packages. slyly care| +27081|675998|O|192009.14|1998-02-04|5-LOW|Clerk#000002142|0|r accounts sleep. quietly ironic instructions use about the final deposits| +27082|484004|O|152376.42|1996-12-30|2-HIGH|Clerk#000004373|0|s nag around the regular requests. furiously| +27083|152467|O|32450.19|1997-03-29|2-HIGH|Clerk#000000325|0|above the blithely final requests cajole bus| +27084|506179|O|127136.65|1995-08-03|1-URGENT|Clerk#000000184|0|uses wake furiously. slyly pending packag| +27085|80111|O|300554.60|1996-01-20|3-MEDIUM|Clerk#000002637|0|ly final instructions cajole blithely special packages. deposits wake? fi| +27086|169919|F|9887.21|1992-03-02|2-HIGH|Clerk#000003407|0|nic deposits. quickly final the| +27087|578077|O|54040.23|1995-10-07|3-MEDIUM|Clerk#000003444|0|Tiresias. blithely ironic pla| +27112|237152|F|119893.72|1993-02-15|5-LOW|Clerk#000002378|0| packages sleep carefully. express, r| +27113|307303|F|123212.39|1992-02-08|1-URGENT|Clerk#000000777|0|ideas. blithely ironic accounts after the accounts| +27114|329918|F|123473.20|1993-07-15|5-LOW|Clerk#000003796|0|ular packages cajole stealthily after the express, ironic| +27115|165784|O|36822.10|1997-10-05|3-MEDIUM|Clerk#000002754|0|hins. quickly ironic depos| +27116|66724|F|22908.45|1994-11-04|2-HIGH|Clerk#000000428|0|regular instructions. theod| +27117|155731|F|310832.69|1994-02-02|4-NOT SPECIFIED|Clerk#000003338|0|ly. slyly silent packages nag above the regul| +27118|595639|O|24040.69|1997-07-10|5-LOW|Clerk#000004855|0|ns. unusual foxes boost finally against the thin, final accounts| +27119|624316|O|262117.02|1998-04-08|4-NOT SPECIFIED|Clerk#000000576|0|s wake regular, pending packages. dependencies haggle blithely spec| +27144|352001|F|249297.28|1992-02-02|4-NOT SPECIFIED|Clerk#000004832|0|ously at the blithely ironic deposits. furiously ironic packages abov| +27145|76942|O|386084.91|1995-12-04|2-HIGH|Clerk#000000422|0|thely enticing accounts caj| +27146|146522|O|50932.67|1997-11-09|5-LOW|Clerk#000003604|0|ess asymptotes wake around the | +27147|343934|F|247827.08|1992-01-25|3-MEDIUM|Clerk#000002125|0|s are fluffily bold, silent pinto beans. pinto b| +27148|246746|F|181114.76|1992-04-10|1-URGENT|Clerk#000003716|0|r dinos. evenly final courts use furiously after t| +27149|293824|F|119652.51|1992-08-20|2-HIGH|Clerk#000003380|0|as solve final requests. blithely even asymptotes hang slyly. slyly even theo| +27150|294329|O|110493.87|1995-08-06|1-URGENT|Clerk#000003383|0| furiously pending ideas. express deposits wake around the fluffil| +27151|526556|F|287345.90|1994-02-25|2-HIGH|Clerk#000003962|0|e slyly even warthogs sleep about t| +27176|562883|O|43531.08|1996-12-24|1-URGENT|Clerk#000000880|0|uickly. accounts wake blithely final accounts. quickly ironic deposits| +27177|616684|O|297372.22|1998-01-08|3-MEDIUM|Clerk#000004631|0|uriously against the blithely regular theodolites. package| +27178|338312|O|73341.51|1996-07-09|1-URGENT|Clerk#000003130|0| slyly final pinto beans are slyly according to the fluffily | +27179|252988|F|324013.51|1993-08-09|5-LOW|Clerk#000004994|0|jole slyly. special ideas sleep carefully regular excuses. fluffily even accou| +27180|188089|O|172747.75|1998-02-27|4-NOT SPECIFIED|Clerk#000000845|0|fully-- special accounts detect ironic, bold deposits. final deposits boost a| +27181|690187|O|309244.76|1996-06-24|2-HIGH|Clerk#000003658|0|ccounts. carefully regular requests use. carefully even instructio| +27182|449194|P|380624.34|1995-04-22|4-NOT SPECIFIED|Clerk#000003233|0|e the slyly regular pinto beans. carefully pending foxes use across the furiou| +27183|73135|O|225215.18|1996-03-23|5-LOW|Clerk#000003452|0|regular, close deposits play blithely after the theodolites. requests| +27208|668449|F|270057.50|1992-04-05|5-LOW|Clerk#000004400|0|theodolites. express deposits wake iron| +27209|353534|F|255390.96|1993-04-29|4-NOT SPECIFIED|Clerk#000003238|0|ys detect around the quickly silent excuses. quickly even deposi| +27210|336998|O|262548.68|1996-07-06|4-NOT SPECIFIED|Clerk#000003798|0|efully regular instructions haggle quickly against t| +27211|660080|F|237403.68|1992-06-20|5-LOW|Clerk#000002514|0| according to the carefull| +27212|698041|F|268853.77|1994-07-02|5-LOW|Clerk#000001702|0|ely. carefully regular acco| +27213|471565|O|176849.98|1996-12-13|1-URGENT|Clerk#000000038|0|y final courts are blithely. deposits affix dogg| +27214|320801|O|334431.86|1995-12-08|1-URGENT|Clerk#000001258|0|final excuses can boost within th| +27215|694414|F|84820.54|1993-12-01|3-MEDIUM|Clerk#000000321|0|old theodolites use blithely. instructions across the regular theodolites h| +27240|246328|F|188940.58|1993-07-22|5-LOW|Clerk#000004067|0| final packages. blithel| +27241|12031|O|377109.40|1997-12-10|5-LOW|Clerk#000004145|0| dependencies haggle. regular instructions haggle | +27242|445897|O|173894.87|1998-04-04|4-NOT SPECIFIED|Clerk#000004963|0|t the packages cajole slyly fluffi| +27243|162499|F|65255.13|1993-03-01|1-URGENT|Clerk#000000786|0|accounts affix blithely bold pinto beans| +27244|364928|O|313486.28|1997-10-03|3-MEDIUM|Clerk#000004070|0|y regular deposits x-ray slyly bold dependencies. sometimes| +27245|589433|O|66817.56|1997-01-06|3-MEDIUM|Clerk#000002589|0|old after the slyly final packages. blithely even packages are. car| +27246|592856|O|163604.48|1998-03-18|3-MEDIUM|Clerk#000001661|0|encies. ironic instructions haggle | +27247|364957|O|3935.52|1997-07-17|2-HIGH|Clerk#000004295|0|ole fluffily outside the instructions. slyly re| +27272|301033|O|38099.52|1998-04-18|3-MEDIUM|Clerk#000004279|0|ironic deposits wake carefully fluffily even deposits. regular dugouts det| +27273|691600|O|83670.76|1997-10-07|3-MEDIUM|Clerk#000003870|0|g instructions boost fluffily ironic depo| +27274|216859|O|141736.56|1996-01-02|4-NOT SPECIFIED|Clerk#000000920|0|y pending theodolites | +27275|485813|F|61570.07|1993-09-20|3-MEDIUM|Clerk#000004513|0| about the furiously special requests. furiously ironic excuses promis| +27276|553264|O|7599.64|1997-06-01|5-LOW|Clerk#000001531|0|uctions. blithely bold theod| +27277|179668|O|37379.96|1996-05-22|1-URGENT|Clerk#000004012|0|y. ironic warthogs unwind carefully furiously unusual ins| +27278|177277|F|167546.81|1993-02-20|4-NOT SPECIFIED|Clerk#000001013|0|ven forges are furiously. express, even ideas hinder. carefully blith| +27279|494264|F|101668.63|1993-02-22|2-HIGH|Clerk#000003572|0|riously special inst| +27304|81685|O|190037.40|1998-04-26|4-NOT SPECIFIED|Clerk#000003291|0|dolites are carefully carefully final requests. quickly sp| +27305|364280|O|218141.06|1997-04-23|4-NOT SPECIFIED|Clerk#000001155|0|uctions detect slyly against the final, regular packages. ir| +27306|196795|O|192667.15|1995-12-12|4-NOT SPECIFIED|Clerk#000004794|0| packages play quickly according to the carefully sp| +27307|9310|O|78624.34|1995-09-14|1-URGENT|Clerk#000003910|0|ial foxes are fluffily abov| +27308|450394|F|264657.53|1993-03-13|1-URGENT|Clerk#000000540|0|ross the slyly ironic instructions wake care| +27309|9874|O|6842.30|1997-11-14|1-URGENT|Clerk#000002444|0|nic packages integrate furiously even, regular asympt| +27310|176545|O|168398.13|1996-06-15|3-MEDIUM|Clerk#000003668|0|out the unusual instructions. fi| +27311|167797|F|104791.32|1992-11-18|5-LOW|Clerk#000002784|0| special, regular ideas around the ir| +27336|150547|F|96287.55|1992-01-16|4-NOT SPECIFIED|Clerk#000003467|0| tithes integrate regularly. final, special packages breach blithely fluf| +27337|465568|O|57060.22|1998-03-11|3-MEDIUM|Clerk#000003530|0|ding foxes above the carefully regular pa| +27338|22879|O|114585.93|1996-10-19|4-NOT SPECIFIED|Clerk#000002526|0|carefully silent platelets. bold instructions are quickly after| +27339|505715|O|64759.85|1997-05-15|2-HIGH|Clerk#000003199|0|ly blithe accounts sleep slyly final requests. regular theodolites about the r| +27340|538340|O|170648.77|1996-03-10|4-NOT SPECIFIED|Clerk#000002724|0|al requests along the slyly special accounts kindle alongside| +27341|627454|O|86172.70|1996-02-02|4-NOT SPECIFIED|Clerk#000002991|0|iously against the pendin| +27342|598111|O|109559.64|1996-01-31|4-NOT SPECIFIED|Clerk#000004512|0|nstructions kindle about the permanently regular deposi| +27343|182800|F|47661.06|1994-04-28|1-URGENT|Clerk#000002068|0|al requests are among the deposits. deposits sleep carefully fi| +27368|300655|F|232192.17|1992-10-19|3-MEDIUM|Clerk#000002029|0| furiously according to the blithely pe| +27369|357412|O|32375.56|1996-12-18|3-MEDIUM|Clerk#000002359|0|packages about the special, bold ideas use final deposits! fluffy, exp| +27370|272056|O|42800.75|1995-10-05|5-LOW|Clerk#000004265|0| pinto beans. ironic packages alongsid| +27371|441052|O|46785.25|1996-07-02|1-URGENT|Clerk#000001784|0| blithely regular packages haggle after the carefully sile| +27372|499480|F|125306.69|1994-04-02|2-HIGH|Clerk#000000459|0|into beans wake dependencies. carefull| +27373|743317|F|103667.96|1992-11-22|5-LOW|Clerk#000004303|0| final deposits. even dinos sleep furiously. asymptotes across the final | +27374|163634|F|30342.36|1992-04-28|2-HIGH|Clerk#000001852|0|ke blithely regular requests. final platelets along the bold, fin| +27375|689860|F|181609.64|1992-01-12|2-HIGH|Clerk#000004912|0|, regular deposits. furious dolphins a| +27400|220883|F|164461.84|1993-11-24|4-NOT SPECIFIED|Clerk#000000008|0| even requests haggle slyly final tithes. slyly bold forges nag alon| +27401|620653|F|239491.94|1993-05-07|1-URGENT|Clerk#000000434|0|ts. quickly express accounts across the regular, spec| +27402|299413|O|62804.71|1996-02-11|4-NOT SPECIFIED|Clerk#000003611|0|ide of the slyly ironic acco| +27403|475540|O|47488.84|1996-11-19|3-MEDIUM|Clerk#000001593|0|aggle furiously against the final, pending instructions. slyly regular req| +27404|393388|O|9972.18|1996-01-17|1-URGENT|Clerk#000000975|0|. regular, pending packages boost. ironic deposits nag quickly| +27405|389875|F|83725.23|1994-03-20|5-LOW|Clerk#000003518|0|sly regular pinto beans cajole slyly stealthy, regular accounts. fu| +27406|610540|O|58074.14|1995-12-06|5-LOW|Clerk#000004140|0|silently bold requests detect. slyly regular acco| +27407|568186|F|92450.29|1994-06-26|5-LOW|Clerk#000002965|0|iously thin somas. fluffily regular asymptotes | +27432|493348|O|231307.45|1997-01-22|3-MEDIUM|Clerk#000003333|0|ly express requests. pending, final instructions eat fluffily ac| +27433|426421|F|33692.96|1993-07-29|2-HIGH|Clerk#000001213|0|slyly bold requests dazzle fluffily| +27434|578624|F|113619.60|1994-12-05|3-MEDIUM|Clerk#000001773|0|ndle furiously-- bold, pending instructions boost among the carefully| +27435|420494|O|74584.90|1995-07-05|5-LOW|Clerk#000004072|0|y regular deposits. fluffily final deposits along the ruthlessly regular re| +27436|741959|F|108709.47|1994-05-17|1-URGENT|Clerk#000003867|0|ly even waters. packages us| +27437|592000|F|143352.39|1992-07-01|4-NOT SPECIFIED|Clerk#000000307|0|ach final requests. pinto beans haggle above the slyly pending dolp| +27438|236168|O|51970.04|1996-06-15|5-LOW|Clerk#000004613|0|ounts are ruthless ideas. regular, even packages are| +27439|268402|O|120062.18|1996-11-23|4-NOT SPECIFIED|Clerk#000003789|0|efully express packages use f| +27464|525841|F|46196.25|1993-07-02|5-LOW|Clerk#000002491|0|press accounts nag above the quickly silent theodolites. quickly expr| +27465|530873|F|156987.98|1994-11-22|4-NOT SPECIFIED|Clerk#000003905|0|ts. furiously final ideas wake. even, iro| +27466|380401|O|46648.42|1997-09-12|5-LOW|Clerk#000000575|0|n packages hang about the slyly even deposits. caref| +27467|395341|F|154482.80|1992-02-21|3-MEDIUM|Clerk#000004127|0|ainst the regular ideas. car| +27468|216973|F|263489.49|1994-08-11|2-HIGH|Clerk#000001038|0|s pinto beans haggle final foxes. blithel| +27469|135842|F|80226.14|1994-06-09|4-NOT SPECIFIED|Clerk#000002186|0| the carefully silent instructions. bold pains nag. regular reque| +27470|93820|O|55581.04|1996-03-11|3-MEDIUM|Clerk#000002477|0|bout the even, regular excuses haggle quick| +27471|311653|F|40487.28|1992-11-03|4-NOT SPECIFIED|Clerk#000000313|0| instructions. excuses cajole. fluffily pen| +27496|681092|F|74494.10|1995-01-08|3-MEDIUM|Clerk#000003782|0|. requests detect. fl| +27497|611600|O|262718.45|1997-08-04|4-NOT SPECIFIED|Clerk#000003421|0|ronic deposits cajole. carefully ironic accounts boost car| +27498|405487|O|172955.60|1996-10-27|4-NOT SPECIFIED|Clerk#000000627|0|. quickly pending dolphins among the fluffily permanent packages cajole | +27499|515131|O|291344.99|1997-04-24|5-LOW|Clerk#000001315|0|even ideas above the bold gifts engage regularly furiously special theo| +27500|550987|O|289201.71|1996-03-30|4-NOT SPECIFIED|Clerk#000000193|0|l foxes. regular requests play slyly. accounts sleep furiously expre| +27501|165820|F|205572.29|1993-10-24|2-HIGH|Clerk#000000944|0|al platelets cajole. carefully regular requests are ruthlessly according | +27502|665147|O|332031.44|1996-04-05|4-NOT SPECIFIED|Clerk#000001505|0|y regular foxes wake. ideas are s| +27503|363856|O|289257.49|1996-07-11|3-MEDIUM|Clerk#000001627|0|into beans haggle furiously | +27528|567586|F|90633.70|1992-08-20|5-LOW|Clerk#000001088|0|he even requests. brave account| +27529|160027|O|41475.51|1995-06-29|3-MEDIUM|Clerk#000001849|0|s above the slyly ironic sauternes d| +27530|66892|O|147363.13|1998-01-30|3-MEDIUM|Clerk#000004396|0| at the asymptotes. bold, regular deposits nag around the fur| +27531|743726|F|199087.72|1993-04-21|3-MEDIUM|Clerk#000002690|0| final pinto beans nag furiously carefully final foxes. even, regu| +27532|295490|O|265366.28|1995-10-22|4-NOT SPECIFIED|Clerk#000001019|0|ffily. blithely final instructions sleep furiously bold accounts. furiously| +27533|537349|O|25234.88|1996-04-03|1-URGENT|Clerk#000000037|0|ckly blithe ideas. blithely ironic deposits cajole. furiously even frays a| +27534|448177|O|108906.06|1997-02-28|1-URGENT|Clerk#000001546|0|tions wake among the slyly final pa| +27535|249380|F|132498.35|1992-05-22|1-URGENT|Clerk#000002258|0|l requests are blithe requests. quickly final f| +27560|321929|O|171049.09|1995-07-24|4-NOT SPECIFIED|Clerk#000003480|0|he slyly final ideas! fluffy, unusual foxes affix| +27561|150905|O|81642.80|1998-04-19|5-LOW|Clerk#000002782|0|y even theodolites. blithely bold packages detect a| +27562|500660|F|146948.09|1994-09-23|2-HIGH|Clerk#000001798|0|ly blithely express foxes. unusual packages cajole. slyly express pin| +27563|336685|F|79712.41|1994-02-28|3-MEDIUM|Clerk#000001354|0|ng the hockey players. ironically bold dolphins wak| +27564|648583|O|310215.30|1996-12-24|5-LOW|Clerk#000001225|0|rnis sleep across the regular, bold accounts. | +27565|204020|F|347288.02|1994-02-11|5-LOW|Clerk#000002753|0| packages haggle. iro| +27566|697868|O|335259.43|1996-07-20|2-HIGH|Clerk#000003726|0|he permanently final ideas. quickly final ideas doubt| +27567|562750|F|81441.95|1993-03-04|1-URGENT|Clerk#000002681|0|fter the even deposits; silent, unusual foxes according to the slyly re| +27592|618389|F|112159.22|1994-01-19|1-URGENT|Clerk#000000036|0|lithely special requests| +27593|497722|O|88027.69|1997-01-10|3-MEDIUM|Clerk#000002331|0|tions cajole carefully. slyly final requests around the fu| +27594|439771|F|169841.57|1994-12-13|2-HIGH|Clerk#000003898|0|ly final deposits haggle after the | +27595|712054|O|159213.20|1995-10-08|5-LOW|Clerk#000004789|0|y. quickly ironic theodolites boost f| +27596|463552|F|80454.78|1994-12-03|3-MEDIUM|Clerk#000001340|0|are quickly slyly eve| +27597|660559|O|18948.02|1995-11-08|5-LOW|Clerk#000000330|0|ons lose carefully. instructions against t| +27598|483907|F|158755.87|1993-04-01|1-URGENT|Clerk#000003073|0|y even requests use carefully after the furiously ironic fox| +27599|13220|F|306471.47|1993-12-20|3-MEDIUM|Clerk#000000818|0|regular depths are slyly carefully even deposits. ironic platelets breac| +27624|186262|O|169243.48|1996-05-01|3-MEDIUM|Clerk#000001949|0| carefully ironic pinto beans. fluffily fi| +27625|723068|O|123460.42|1996-01-04|4-NOT SPECIFIED|Clerk#000000440|0|lar pearls. furiously slow asymptotes | +27626|347150|O|35209.88|1996-09-25|3-MEDIUM|Clerk#000003168|0|as wake blithely. slyly ironic platelets sleep| +27627|297859|F|222047.70|1993-07-25|3-MEDIUM|Clerk#000003828|0|ect carefully unusual pinto beans. unusual pac| +27628|602398|F|106319.76|1994-12-02|4-NOT SPECIFIED|Clerk#000000838|0|onic pinto beans sleep fluffily unusual instructions. silen| +27629|230110|F|180857.19|1994-10-23|5-LOW|Clerk#000000820|0|metimes sly foxes above the slyly unusual id| +27630|426956|O|36237.85|1995-05-12|5-LOW|Clerk#000001325|0|iously regular accounts haggle after the ironic deposits. enticingly| +27631|594812|F|115484.86|1992-04-01|3-MEDIUM|Clerk#000000111|0|press deposits nag. regularly ruthless accounts across the slowly regular e| +27656|253957|O|201244.46|1997-02-02|5-LOW|Clerk#000000588|0|ounts haggle above the furiously final foxes. furio| +27657|724471|O|118573.05|1998-07-05|3-MEDIUM|Clerk#000002284|0|y even requests. furiously ironic ideas poach slyly.| +27658|677530|F|13776.94|1994-08-10|4-NOT SPECIFIED|Clerk#000000036|0| to the blithely slow deposits. express packages| +27659|728383|P|288985.23|1995-06-14|3-MEDIUM|Clerk#000002284|0|y regular deposits cajole express ideas. blithely regular deposits hag| +27660|412951|O|90652.60|1996-02-09|5-LOW|Clerk#000003221|0|nt foxes are furiously along the blithely i| +27661|693925|F|160512.49|1994-08-19|1-URGENT|Clerk#000000272|0|x slyly. fluffily pend| +27662|264053|O|103332.49|1998-07-24|1-URGENT|Clerk#000004251|0|g to the carefully specia| +27663|180928|O|70407.34|1998-02-04|5-LOW|Clerk#000003356|0|ck ideas haggle fluffily final, ironic packages. blithely carefu| +27688|348172|O|208323.00|1997-08-17|1-URGENT|Clerk#000003551|0|al pinto beans. deposits nag furiou| +27689|214796|F|110140.72|1994-09-27|2-HIGH|Clerk#000001608|0| the regular platelets| +27690|320707|O|170239.16|1998-02-02|5-LOW|Clerk#000002887|0|sits sleep furiously carefully ironic foxes. special instructions wake perman| +27691|608605|F|173555.62|1993-08-03|1-URGENT|Clerk#000003816|0|furiously bold requests are express| +27692|316427|O|37083.27|1996-08-10|2-HIGH|Clerk#000000766|0|nic warhorses could have | +27693|678128|F|3220.91|1992-07-09|2-HIGH|Clerk#000002743|0|or the slyly silent packages. carefully regular deposits impress ca| +27694|286228|F|269166.35|1994-09-28|5-LOW|Clerk#000003102|0|symptotes along the pinto beans was above the furiously re| +27695|116978|O|301036.13|1996-07-17|5-LOW|Clerk#000004041|0|the quickly ironic pinto beans. bl| +27720|283498|O|324555.78|1997-09-23|3-MEDIUM|Clerk#000001139|0|y along the asymptot| +27721|732878|F|172174.78|1993-05-03|1-URGENT|Clerk#000002816|0|usly packages. carefully ironic foxes unwind above| +27722|228181|O|296103.61|1997-08-23|4-NOT SPECIFIED|Clerk#000001817|0|ges haggle carefully even accoun| +27723|279844|F|275578.99|1995-03-10|3-MEDIUM|Clerk#000004012|0|nding accounts at the ironic excuses h| +27724|71359|O|28207.47|1997-07-22|1-URGENT|Clerk#000004348|0|sits kindle slyly pending dolphins. ir| +27725|62527|O|318533.61|1998-05-20|5-LOW|Clerk#000001712|0|nts. blithely special dependencies in place | +27726|123739|O|153194.34|1997-11-08|1-URGENT|Clerk#000001513|0|beans around the slyly regular pinto beans must | +27727|671264|O|150586.84|1995-07-08|2-HIGH|Clerk#000002493|0|y ironic excuses. carefully regular idea| +27752|422582|O|316769.57|1997-06-30|4-NOT SPECIFIED|Clerk#000003255|0|ges haggle. fluffily bold platelets above t| +27753|582694|O|217097.56|1997-12-31|1-URGENT|Clerk#000002780|0|es. furiously regular accounts hagg| +27754|587728|P|105310.95|1995-04-08|2-HIGH|Clerk#000001410|0|cajole furiously. slyly final packages cajole blithel| +27755|439252|F|15111.52|1993-08-09|3-MEDIUM|Clerk#000004607|0| requests cajole quickly pend| +27756|246326|F|259329.08|1992-09-24|1-URGENT|Clerk#000000564|0|elets about the fluffily even packages are furiously pend| +27757|747316|O|129601.86|1997-08-09|4-NOT SPECIFIED|Clerk#000003004|0|tions are furiously regular ideas. carefully regular foxes among the even de| +27758|621970|O|335129.66|1996-10-14|1-URGENT|Clerk#000004757|0|ously final deposits. carefully ironic packages cajole | +27759|685592|O|157896.17|1997-11-29|4-NOT SPECIFIED|Clerk#000003787|0|kly alongside of the carefully regular platelets. furiousl| +27784|488018|O|20189.25|1997-11-28|1-URGENT|Clerk#000001535|0|special theodolites are fluffily ironic theodolites. furiously iron| +27785|103835|O|161864.92|1995-05-23|3-MEDIUM|Clerk#000001287|0| the bold requests integrate daring| +27786|644845|F|7193.37|1994-01-24|5-LOW|Clerk#000002494|0| the carefully final deposits-- special sauternes impress accordin| +27787|409316|F|228016.85|1992-07-11|2-HIGH|Clerk#000000157|0|ar foxes wake final deposits. special, final pl| +27788|365648|O|334716.67|1997-03-07|2-HIGH|Clerk#000000115|0|are carefully among the ironic excuses. slyly unu| +27789|694534|F|244511.29|1992-04-29|4-NOT SPECIFIED|Clerk#000000366|0|uests are. permanently even i| +27790|10541|P|62728.47|1995-05-02|2-HIGH|Clerk#000001277|0| instructions cajole cl| +27791|156032|F|205679.63|1995-01-13|4-NOT SPECIFIED|Clerk#000002002|0|ly ironic pinto beans. blithely unusual foxes haggle carefully final, ir| +27816|420629|F|130012.09|1994-09-13|3-MEDIUM|Clerk#000002216|0|ests serve carefully instructions. ironic, even pint| +27817|7076|F|153962.10|1992-12-22|4-NOT SPECIFIED|Clerk#000000686|0|ess foxes. carefully ironic theodolites cajole. asympt| +27818|423067|F|95373.68|1992-12-11|2-HIGH|Clerk#000004970|0|iresias haggle furiously. care| +27819|473024|O|117626.77|1997-03-02|4-NOT SPECIFIED|Clerk#000001604|0|ly ironic escapades wake slyly after the th| +27820|112897|O|63274.29|1997-10-15|5-LOW|Clerk#000004974|0|ickly even accounts. regular accounts among the regular package| +27821|685651|O|168176.85|1997-01-04|1-URGENT|Clerk#000000618|0|fully even theodolites. regula| +27822|722279|O|224525.41|1998-07-16|2-HIGH|Clerk#000004398|0|ts nod furiously after the enticingly pend| +27823|592033|O|228387.10|1997-03-22|2-HIGH|Clerk#000001241|0|ongside of the blithely ironic ideas haggle blithely| +27848|20278|F|151393.70|1993-03-31|1-URGENT|Clerk#000003366|0|gular, unusual packages boost slyly at | +27849|281869|O|88288.27|1998-07-07|5-LOW|Clerk#000000034|0|ake fluffily even sheaves. carefully ironic d| +27850|372152|F|55226.13|1994-01-22|5-LOW|Clerk#000000799|0|blithely unusual decoys. deposits wake slyly special packages. bravely e| +27851|494464|F|117278.14|1995-02-28|4-NOT SPECIFIED|Clerk#000002753|0|ular theodolites. regular, special packages are blithely. carefull| +27852|447328|F|327430.92|1994-08-14|1-URGENT|Clerk#000002392|0|uickly regular requests-- requ| +27853|210271|F|152408.67|1992-11-09|3-MEDIUM|Clerk#000001011|0|counts. blithely ironic foxes wake carefully quickly final accounts. bo| +27854|15044|P|212068.87|1995-03-27|4-NOT SPECIFIED|Clerk#000004777|0|cial foxes. special asymptotes | +27855|88729|O|61732.25|1995-11-22|5-LOW|Clerk#000004175|0| pending requests wake slyly quiet foxes. regular, reg| +27880|257212|O|174989.52|1996-03-12|4-NOT SPECIFIED|Clerk#000004705|0|bold packages. ideas sleep carefully through the carefully ironic packages. | +27881|694663|O|229987.52|1998-03-29|5-LOW|Clerk#000004765|0|e alongside of the ironic asymptotes: qui| +27882|684496|O|79783.09|1996-01-13|1-URGENT|Clerk#000003996|0|nal requests. furiously final asymptotes use furiously after t| +27883|52058|F|230424.40|1994-09-05|3-MEDIUM|Clerk#000003205|0|the regular foxes use quickly daringly| +27884|427792|O|186808.73|1996-01-11|1-URGENT|Clerk#000002380|0|tions. quickly unusual deposits nag. furiously s| +27885|380171|O|189927.80|1996-05-21|4-NOT SPECIFIED|Clerk#000000454|0|. blithely even packages hinder. permanently even packages cajole. furi| +27886|276904|O|73848.85|1996-06-28|5-LOW|Clerk#000000525|0|iously even accounts cajole carefully across the carefully final c| +27887|173089|O|293123.29|1997-02-03|5-LOW|Clerk#000001502|0|around the even instruc| +27912|587077|O|76389.28|1996-04-11|4-NOT SPECIFIED|Clerk#000000054|0|he carefully even theodolites. ironic packag| +27913|724649|O|94094.54|1995-06-23|4-NOT SPECIFIED|Clerk#000002048|0|ithely unusual deposits detect carefully along the specia| +27914|672818|F|81320.89|1994-08-06|5-LOW|Clerk#000004906|0| furiously ironic courts are near the bravely | +27915|291817|O|8297.53|1995-09-11|1-URGENT|Clerk#000004314|0|ular accounts haggle after the | +27916|292847|F|176733.66|1993-04-26|3-MEDIUM|Clerk#000004047|0|s wake doggedly. carefu| +27917|375788|F|229968.42|1992-11-25|2-HIGH|Clerk#000003186|0|its above the ironic p| +27918|109237|F|295696.98|1994-08-07|5-LOW|Clerk#000003893|0|ests. blithely bold pinto beans ser| +27919|693322|O|54681.67|1997-04-13|5-LOW|Clerk#000001030|0|es. even, final excuses among the blithely final theodolite| +27944|646078|O|25890.88|1998-02-15|2-HIGH|Clerk#000002077|0|uests. unusual pinto beans boost slyly final theodolit| +27945|122074|O|211264.59|1997-11-11|4-NOT SPECIFIED|Clerk#000002479|0|r the accounts. fluffily ironic deposits sle| +27946|442907|F|252816.89|1993-01-02|5-LOW|Clerk#000004822|0|lyly ironic packages. expre| +27947|187007|O|252653.33|1997-01-14|4-NOT SPECIFIED|Clerk#000000284|0|packages hang fluffily packages.| +27948|522769|F|263416.74|1995-01-25|5-LOW|Clerk#000000490|0|hall have to wake against the slyly bold accounts-- quickly unusual | +27949|663505|O|29156.78|1998-04-01|5-LOW|Clerk#000004154|0|unusual packages haggle blithely brave instructions! ironic ac| +27950|516079|O|235438.07|1995-10-11|5-LOW|Clerk#000000894|0|olites. quickly special foxes about the bold, e| +27951|718688|F|345435.33|1994-11-21|5-LOW|Clerk#000000738|0|lithely slyly final pinto bean| +27976|236809|O|69081.39|1997-08-27|1-URGENT|Clerk#000003276|0|rding to the blithely ironic instructions;| +27977|516622|F|213325.35|1994-05-28|4-NOT SPECIFIED|Clerk#000001915|0|sual theodolites promise blithely blithely unusual | +27978|92582|O|4978.13|1997-03-28|1-URGENT|Clerk#000003890|0|ic asymptotes. never unusual frays grow. asymptotes are| +27979|510425|O|256195.40|1995-10-05|1-URGENT|Clerk#000003953|0|ven packages. slyly| +27980|200677|O|215010.24|1996-02-24|2-HIGH|Clerk#000000862|0|arthogs. express pinto beans wake slyly. accounts do hag| +27981|6565|O|138125.16|1996-09-28|2-HIGH|Clerk#000000139|0|he deposits nag slyly quickly final packages. c| +27982|62168|O|244544.64|1998-01-28|2-HIGH|Clerk#000003065|0|ng requests. blithely express pin| +27983|106807|F|186851.52|1994-04-10|1-URGENT|Clerk#000000139|0|y bold requests boost blithely pending waters. blithely bold packages ar| +28008|340895|O|167323.97|1995-12-20|2-HIGH|Clerk#000002553|0|hely ironic theodolites. deposits integrate evenly. carefully even | +28009|161866|F|190710.64|1993-05-31|1-URGENT|Clerk#000001537|0|le blithely above the| +28010|214646|O|36525.96|1996-10-28|4-NOT SPECIFIED|Clerk#000001756|0|ts wake about the close theodolites-- furiously unusual deposits eat furi| +28011|53689|F|317553.90|1995-01-06|3-MEDIUM|Clerk#000000696|0|e enticingly unusual deposits. furiously pending foxes cajo| +28012|69406|F|117693.12|1994-01-14|2-HIGH|Clerk#000001146|0| furiously slyly express instructions| +28013|227770|O|171357.33|1997-01-05|3-MEDIUM|Clerk#000001273|0|eful theodolites promise along| +28014|105826|O|314104.17|1997-06-15|5-LOW|Clerk#000002469|0|. slyly even accounts wake furi| +28015|346921|F|155664.56|1993-02-07|3-MEDIUM|Clerk#000000879|0|yly even accounts use dependencies. slyly final account| +28040|200461|F|182915.79|1994-04-25|2-HIGH|Clerk#000004614|0|es across the theodolites wake enticingly across the furiously even cou| +28041|132088|O|91087.15|1997-04-26|1-URGENT|Clerk#000002479|0| across the furiously bold accounts c| +28042|748448|F|7475.46|1992-07-16|5-LOW|Clerk#000002376|0|jole quickly about the furiously ironic foxes. quickly regula| +28043|159341|O|129019.29|1997-01-19|3-MEDIUM|Clerk#000001215|0|ully regular requests cajole quickly regular dependenc| +28044|534313|O|39793.87|1996-08-09|1-URGENT|Clerk#000004525|0| beans. furiously pending pinto beans eat. car| +28045|426973|O|142162.34|1995-06-18|2-HIGH|Clerk#000000555|0|ven accounts beyond the slyl| +28046|111647|F|75063.18|1993-08-10|3-MEDIUM|Clerk#000000495|0|ular requests. foxes after the ironic, even request| +28047|686189|O|142928.08|1996-11-24|4-NOT SPECIFIED|Clerk#000001240|0|carefully slyly even deposits. regular, ruthless packages ar| +28072|21227|O|52742.52|1996-01-03|5-LOW|Clerk#000000975|0|hrash carefully about the iron| +28073|509791|F|78726.40|1993-03-02|2-HIGH|Clerk#000000534|0|ns: regular, ironic hock| +28074|27766|O|111040.13|1998-02-05|1-URGENT|Clerk#000004178|0|its sublate carefull| +28075|162190|O|134317.35|1997-04-04|1-URGENT|Clerk#000004209|0| slyly regular Tiresias after the carefully| +28076|394831|F|121567.18|1994-12-06|3-MEDIUM|Clerk#000003985|0|counts. regularly bold instruc| +28077|647426|O|77135.85|1997-10-12|1-URGENT|Clerk#000003418|0| special accounts boost sentiments. dolphins aga| +28078|282413|O|266694.21|1997-04-23|5-LOW|Clerk#000004972|0| unusual foxes. asymptotes use carefully | +28079|501439|O|197518.09|1996-07-10|2-HIGH|Clerk#000004313|0|al pinto beans after the unusu| +28104|680503|F|128790.53|1992-04-27|2-HIGH|Clerk#000003990|0|press deposits. express packages haggle blithely. ent| +28105|432350|F|122275.26|1995-02-11|2-HIGH|Clerk#000000813|0|ven deposits haggle thinly. unusual packages haggle| +28106|498857|O|265098.50|1996-07-18|3-MEDIUM|Clerk#000003498|0|s. packages nag across the quickly bold gifts. final packages boost express,| +28107|26606|O|68572.33|1996-11-03|3-MEDIUM|Clerk#000001024|0|ages. carefully bold pinto beans poach quickly aft| +28108|162478|O|249830.44|1998-01-10|4-NOT SPECIFIED|Clerk#000000849|0|mise above the furiously regular deposits. final reque| +28109|17044|F|214089.04|1992-01-01|5-LOW|Clerk#000002735|0|integrate. slyly final theodolites haggle f| +28110|701866|O|44684.14|1995-11-02|3-MEDIUM|Clerk#000002019|0|e carefully bold excuses. platel| +28111|247384|F|195323.48|1993-05-13|2-HIGH|Clerk#000002335|0| the closely slow accounts. slyly bold requests | +28136|501929|F|19788.13|1993-08-12|3-MEDIUM|Clerk#000002815|0|posits use slyly. slyly special instructions according to the f| +28137|664138|O|237070.93|1996-02-15|1-URGENT|Clerk#000004436|0|sits. carefully final packages w| +28138|651028|F|198580.93|1992-10-22|4-NOT SPECIFIED|Clerk#000001889|0|riously whithout the carefully bold re| +28139|71908|F|247348.85|1992-08-13|1-URGENT|Clerk#000000506|0|ke. fluffily unusual foxes sleep furiously express pa| +28140|279433|O|13737.52|1996-02-23|3-MEDIUM|Clerk#000004497|0| blithely along the ideas. carefully special excuses cajole. final pinto bean| +28141|658199|O|30963.11|1998-07-31|5-LOW|Clerk#000001407|0|press, ironic instructions.| +28142|596771|F|268062.11|1994-12-31|5-LOW|Clerk#000000155|0| regular requests along the unusual packages ca| +28143|164059|O|65633.14|1997-03-06|3-MEDIUM|Clerk#000003907|0|deas cajole blithely abo| +28168|306671|O|277769.81|1998-01-19|1-URGENT|Clerk#000002192|0|ully regular courts integrate at the slyly special deposits. carefully re| +28169|214309|F|147361.29|1994-05-25|1-URGENT|Clerk#000002892|0|accounts serve about the pinto beans. furiously r| +28170|375325|O|63925.26|1997-12-10|2-HIGH|Clerk#000000119|0|gular frays. carefully unusual packages wake furiously exp| +28171|563752|O|231855.97|1996-10-15|5-LOW|Clerk#000002195|0|ely final requests haggle slyly. quietly bold deposits print along t| +28172|203290|F|117102.12|1993-07-13|1-URGENT|Clerk#000003900|0|ously final foxes maintain furiously exc| +28173|442484|F|282578.42|1992-01-11|3-MEDIUM|Clerk#000001734|0|ely along the furiously thin pinto beans. furiously ironic reques| +28174|573571|O|310536.21|1998-04-15|1-URGENT|Clerk#000000881|0|cajole furiously blithely enticing deposits. slyly pending accounts use. | +28175|255014|F|350090.95|1994-07-17|1-URGENT|Clerk#000000496|0|efully against the carefully silent instructions. special, final dol| +28200|513628|F|224745.39|1994-08-15|1-URGENT|Clerk#000003230|0|s cajole fluffily. slyly ironic platelets about the slyly| +28201|44611|O|58083.47|1997-04-20|4-NOT SPECIFIED|Clerk#000002524|0|lites across the even, careful deposits sleep fluffily unusual requests. sly| +28202|496810|O|45778.50|1995-07-15|5-LOW|Clerk#000001665|0|quickly final multi| +28203|113860|O|135391.98|1996-02-04|2-HIGH|Clerk#000003473|0|uriously pending packages are carefully bold, bold dep| +28204|370915|F|83210.65|1992-10-01|2-HIGH|Clerk#000001281|0|ets cajole packages. furiously final accounts lose. final, | +28205|708515|F|82684.40|1993-03-14|4-NOT SPECIFIED|Clerk#000000553|0|uriously even courts sleep| +28206|261557|F|224542.46|1994-07-06|1-URGENT|Clerk#000001005|0|usly. carefully regular accounts are slyly amo| +28207|235726|F|160336.50|1994-12-01|2-HIGH|Clerk#000004112|0|eans detect quickly. quickly final dep| +28232|321445|F|137532.66|1993-07-07|2-HIGH|Clerk#000004803|0|riously unusual packages cajole slyly slyly unusual deposits; p| +28233|275245|O|134974.15|1998-04-04|5-LOW|Clerk#000003180|0|final excuses are fluffily acros| +28234|10192|O|49431.70|1998-04-18|4-NOT SPECIFIED|Clerk#000002913|0|posits use around the quickly regular re| +28235|283561|P|210342.87|1995-04-03|4-NOT SPECIFIED|Clerk#000001977|0|y. carefully pending requests are slyly. bold requests above the slyly idle p| +28236|297638|F|35778.15|1992-05-08|3-MEDIUM|Clerk#000004089|0|s. final platelets a| +28237|648298|O|75732.94|1997-06-16|3-MEDIUM|Clerk#000000495|0|e ruthless asymptotes. final, even ideas behind the evenly re| +28238|683816|O|37657.69|1998-05-05|2-HIGH|Clerk#000001227|0|he bold, even requests! fluffily even accounts affi| +28239|639844|F|238132.89|1993-04-13|5-LOW|Clerk#000000364|0|althily bold deposits. thinly unusua| +28264|346450|O|249919.21|1995-08-15|3-MEDIUM|Clerk#000001547|0|ironic accounts along the final, express ideas are quickly car| +28265|528382|O|167932.68|1996-03-15|1-URGENT|Clerk#000001475|0|rmanent ideas are quickly ideas. unusual packages wa| +28266|485449|F|23868.10|1995-01-16|4-NOT SPECIFIED|Clerk#000004130|0|beans. slyly quick gifts b| +28267|439867|O|152493.38|1998-03-29|4-NOT SPECIFIED|Clerk#000004531|0|ions are express pinto beans. fu| +28268|80293|F|85000.30|1994-05-04|5-LOW|Clerk#000001106|0|osely after the special, silent accounts. daringly ironic th| +28269|203162|F|94124.68|1992-03-14|4-NOT SPECIFIED|Clerk#000003726|0|furiously final pinto beans believe. unusual accoun| +28270|534016|F|265493.82|1994-03-24|1-URGENT|Clerk#000001569|0|e. carefully close accounts sleep carefully acr| +28271|675059|O|33888.52|1996-02-23|1-URGENT|Clerk#000003517|0|ides the furiously final warhorses. furiously express packa| +28296|462982|P|148420.64|1995-03-17|2-HIGH|Clerk#000000814|0|deposits are. even accounts are across th| +28297|79820|O|198653.82|1998-01-19|1-URGENT|Clerk#000004714|0|lyly ironic packages cajole quickly. blithely final deposits| +28298|520751|O|206445.23|1997-06-11|2-HIGH|Clerk#000003565|0|ckly regular instruc| +28299|507496|F|318753.46|1993-04-16|2-HIGH|Clerk#000002239|0|mong the ironic theodolites boost i| +28300|467452|F|76183.09|1993-04-11|2-HIGH|Clerk#000000290|0|s among the final requests promise carefully alongside of the furiously i| +28301|215759|O|237553.84|1995-11-03|4-NOT SPECIFIED|Clerk#000001397|0|xes. warthogs cajole. carefully final pint| +28302|745916|O|166861.98|1996-11-24|3-MEDIUM|Clerk#000002798|0|ccounts haggle. furiously permanent accounts abov| +28303|351668|O|18579.55|1997-11-13|5-LOW|Clerk#000002088|0|n packages. blithely | +28328|472015|O|51201.92|1996-11-24|1-URGENT|Clerk#000004795|0|ironic packages haggle pinto beans. furiously even requests are. fluff| +28329|392819|O|109552.24|1995-06-21|1-URGENT|Clerk#000004102|0|onic requests whithout the blithely bold dependencies hang slyly along| +28330|603095|F|17605.23|1992-07-29|3-MEDIUM|Clerk#000003652|0|ole fluffily furiously final accounts. final accounts wake reg| +28331|712255|O|95417.53|1996-08-29|1-URGENT|Clerk#000003141|0|e slyly bold asymptotes. carefully pending sentiments ab| +28332|108655|O|390114.92|1996-10-09|3-MEDIUM|Clerk#000003922|0| special pinto beans at the furiously regular ins| +28333|647668|F|147641.34|1992-04-13|1-URGENT|Clerk#000000927|0| evenly regular asymptotes cajole | +28334|589492|O|99584.10|1997-01-10|2-HIGH|Clerk#000004783|0|ly final ideas. even, stealthy theodolites engage. even packages ha| +28335|66400|O|83877.10|1997-02-17|4-NOT SPECIFIED|Clerk#000001676|0|from the regular theodolites. slyly unusual platelets are along the fu| +28360|712153|O|59651.90|1997-08-19|3-MEDIUM|Clerk#000003920|0| about the unusual courts. final dependencies haggle carefully according to | +28361|624976|F|179054.70|1992-09-14|3-MEDIUM|Clerk#000001754|0|y ironic packages. | +28362|192799|O|187588.61|1996-09-07|4-NOT SPECIFIED|Clerk#000002527|0|elets: patterns wake. express pinto beans| +28363|348631|O|254135.66|1995-08-07|5-LOW|Clerk#000002819|0| deposits around the even accounts nag carefully regular deposit| +28364|421138|F|244331.28|1994-01-28|4-NOT SPECIFIED|Clerk#000001691|0|s sleep blithely along the accounts. slyly final Tiresias play| +28365|312446|F|70461.49|1993-07-13|1-URGENT|Clerk#000004225|0|sly pending Tiresias nod fu| +28366|528679|O|13621.83|1998-01-31|5-LOW|Clerk#000003041|0| thin excuses sleep carefully deposits. courts haggle bl| +28367|225265|F|242265.09|1994-02-04|3-MEDIUM|Clerk#000001971|0|egrate furiously unusual platelets. fluffily ironic dependencies breach | +28392|13996|F|219875.44|1993-01-08|4-NOT SPECIFIED|Clerk#000003397|0|ng pinto beans boost blithely against the silent pearls.| +28393|459734|O|139480.67|1996-06-09|4-NOT SPECIFIED|Clerk#000001002|0|es according to the quietly special packages wake enticingly ironic packages. | +28394|245197|F|84688.35|1994-01-08|2-HIGH|Clerk#000000307|0|ly under the silent, final requests. ideas wake furiously after th| +28395|511352|F|144341.29|1992-04-23|4-NOT SPECIFIED|Clerk#000001583|0|into beans. carefully express| +28396|29212|F|145638.84|1994-03-28|1-URGENT|Clerk#000001153|0|ully ironic deposits after | +28397|440197|F|32772.08|1992-12-04|5-LOW|Clerk#000004760|0| quickly pending requests detect carefully about the final id| +28398|373597|F|91410.86|1994-11-24|3-MEDIUM|Clerk#000004471|0|counts wake. furiously quick platelets| +28399|44090|O|202477.63|1998-02-11|2-HIGH|Clerk#000001432|0|Tiresias. furiously final idea| +28424|16351|O|176685.02|1995-10-28|5-LOW|Clerk#000000580|0|s are. requests afte| +28425|277736|F|293511.17|1993-04-10|4-NOT SPECIFIED|Clerk#000004734|0|s sleep above the slyly ironic deposits. furiously final plat| +28426|655309|O|114886.21|1995-04-24|2-HIGH|Clerk#000001072|0|he carefully unusual f| +28427|1327|O|68788.86|1996-01-18|5-LOW|Clerk#000003418|0|y express instructions wake from the car| +28428|552031|F|123264.33|1993-03-17|3-MEDIUM|Clerk#000000300|0|te. quickly ironic deposits haggle carefully after the slyly r| +28429|462631|O|198749.48|1998-04-28|5-LOW|Clerk#000001887|0|c courts are against the ironic pa| +28430|181733|F|221611.64|1992-05-08|2-HIGH|Clerk#000003267|0| accounts x-ray. pinto bean| +28431|374581|F|248307.32|1994-02-16|4-NOT SPECIFIED|Clerk#000002859|0|ing to the quickly unusual asymptotes. slyly ironic packages boost furiously a| +28456|52498|F|108252.53|1994-01-15|3-MEDIUM|Clerk#000002737|0|des in place of the f| +28457|316321|O|159085.64|1997-09-30|3-MEDIUM|Clerk#000004546|0|ccording to the final deposits are carefully across the furiously bold d| +28458|385411|O|158687.86|1997-05-19|3-MEDIUM|Clerk#000003818|0|gular theodolites. quickly express deposits are slyly quickly expr| +28459|576053|F|293101.04|1992-06-14|1-URGENT|Clerk#000001900|0|above the final, pending accounts. regular excu| +28460|717370|O|58838.33|1996-01-25|2-HIGH|Clerk#000002711|0| hang furiously; slyly bold accounts cajole furious| +28461|560966|P|339635.72|1995-05-08|4-NOT SPECIFIED|Clerk#000002874|0| final requests sleep. pinto beans boost blithely after t| +28462|653518|F|182673.02|1992-08-31|1-URGENT|Clerk#000001700|0|ular accounts. slyly regular foxes above the furiously even packages| +28463|663262|F|88775.93|1992-05-08|2-HIGH|Clerk#000002475|0|nooze slyly slyly even accounts. blithely special packages inte| +28488|181249|O|245124.70|1997-07-22|3-MEDIUM|Clerk#000002379|0|ake quickly above the carefully unusual excuses. final packages poach. f| +28489|470732|O|82880.14|1995-11-24|2-HIGH|Clerk#000001810|0|iously regular foxes. bold requests haggle blithe| +28490|578686|F|227890.09|1994-03-04|3-MEDIUM|Clerk#000002410|0|ly final waters. never regular theodolites at the pending sheaves | +28491|700630|F|115038.32|1993-12-11|4-NOT SPECIFIED|Clerk#000000853|0|efully slyly daring packages. blithely bold ideas cajole fluffily| +28492|456016|F|200657.94|1993-12-22|4-NOT SPECIFIED|Clerk#000003813|0|uctions sleep. blithely bold i| +28493|9127|F|43512.52|1993-06-20|3-MEDIUM|Clerk#000000604|0|equests. somas alongside of the furiously permanent a| +28494|371807|O|186402.82|1997-06-20|1-URGENT|Clerk#000002882|0| blithely even depend| +28495|706876|O|169179.80|1997-06-15|4-NOT SPECIFIED|Clerk#000000258|0| furiously ironic requests sleep blithely after the enticingly special foxes. | +28520|450301|F|243014.54|1993-01-22|1-URGENT|Clerk#000002214|0|oxes alongside of the s| +28521|707917|F|128769.26|1994-08-01|5-LOW|Clerk#000003779|0| blithely final asymptotes. carefully even dolphins use fluffily. blithely pen| +28522|680462|F|237309.13|1993-07-25|3-MEDIUM|Clerk#000000400|0|kly despite the fluffily special packages. final forges cajole slyly special| +28523|515813|O|197136.19|1997-03-29|4-NOT SPECIFIED|Clerk#000002271|0|o beans haggle slyly across the bold packages. carefully final a| +28524|17362|P|213403.48|1995-05-07|5-LOW|Clerk#000000530|0|affix slyly never express pinto beans. furiously even foxes wak| +28525|21539|O|105322.83|1997-03-05|3-MEDIUM|Clerk#000004817|0|ironic instructions about the hockey players are furiously regular, pendin| +28526|494668|F|135564.54|1993-11-16|1-URGENT|Clerk#000004397|0|ar packages. finally silent pinto beans integrate quickly. boldly bold re| +28527|128887|O|34168.10|1998-03-21|1-URGENT|Clerk#000004279|0|ight are blithely final foxes. quickly bold requests int| +28552|183283|F|60886.06|1993-11-16|2-HIGH|Clerk#000000900|0|g the carefully regular deposits. caref| +28553|169120|O|243395.38|1996-06-06|1-URGENT|Clerk#000002654|0|final deposits. carefully special deposits haggle final packages! ironi| +28554|648886|F|206693.97|1994-06-30|2-HIGH|Clerk#000000453|0|ng the unusual theodolites. slyly regular accounts detect carefu| +28555|46087|F|40306.08|1994-11-30|1-URGENT|Clerk#000002649|0|y. even packages serve quickly furiously silen| +28556|563200|F|138420.96|1992-12-02|4-NOT SPECIFIED|Clerk#000000533|0|pending requests against the final theodolites should have to poach slyly| +28557|675727|F|58677.81|1992-07-07|1-URGENT|Clerk#000003178|0|snooze regularly quickly regular deposits: fluffily even epitaphs boost carefu| +28558|424397|O|59332.79|1995-09-11|3-MEDIUM|Clerk#000000851|0|lar theodolites. quickly slow depths are even, | +28559|329015|O|29194.71|1995-11-14|5-LOW|Clerk#000001247|0|o beans. final, regular accounts us| +28584|745691|F|84323.73|1992-02-09|4-NOT SPECIFIED|Clerk#000002660|0|l tithes. regular requests haggle of the care| +28585|327178|F|292017.92|1994-07-22|4-NOT SPECIFIED|Clerk#000001244|0| furiously. carefully unusual the| +28586|624856|O|247887.22|1998-05-05|5-LOW|Clerk#000004954|0|sts? even, ironic asymptotes after the | +28587|441439|O|99418.98|1995-10-13|5-LOW|Clerk#000000446|0|nal, express packages. sly, regular deposits sleep fluffil| +28588|255446|O|171968.72|1997-08-30|3-MEDIUM|Clerk#000004278|0|ounts nag carefully alongside of the unus| +28589|278147|O|150071.92|1996-11-04|5-LOW|Clerk#000004459|0|nal, even theodolites. blithely ironic instructions are among th| +28590|50711|O|147878.31|1996-02-22|3-MEDIUM|Clerk#000003663|0|packages promise. careful deposits believe blithel| +28591|290728|O|142786.42|1995-07-22|2-HIGH|Clerk#000000634|0|ckly pending accounts. even deposits sleep | +28616|732137|O|8039.13|1997-09-05|1-URGENT|Clerk#000002248|0| cajole slyly. slyly final warthogs nag finally daringly | +28617|514738|O|104826.36|1998-03-31|3-MEDIUM|Clerk#000000408|0|posits sleep. fluffily final requests maintain alon| +28618|674338|F|310194.53|1992-10-21|4-NOT SPECIFIED|Clerk#000001396|0| packages use toward the closel| +28619|318296|F|198574.40|1992-04-20|2-HIGH|Clerk#000000927|0|inal accounts. slyl| +28620|594002|F|52054.86|1993-07-14|3-MEDIUM|Clerk#000000682|0|carefully final theodolites. bold Tiresias use slyly according to the furiousl| +28621|127955|F|160931.74|1992-07-25|2-HIGH|Clerk#000002848|0|y dogged courts cajole furiously slyly even ideas. carefully regular ins| +28622|285532|F|61673.03|1993-11-24|4-NOT SPECIFIED|Clerk#000003065|0|ly. unusual, final requests was. qu| +28623|415291|F|246650.81|1994-09-18|4-NOT SPECIFIED|Clerk#000000965|0| could affix carefully blithely even instru| +28648|263986|F|52750.65|1992-12-13|5-LOW|Clerk#000000486|0|counts are accounts. blithely ironic pinto beans use carefully across the q| +28649|557036|F|214047.44|1992-05-29|3-MEDIUM|Clerk#000001490|0|. furiously ironic pinto beans grow slyly| +28650|594298|F|193486.66|1993-10-09|4-NOT SPECIFIED|Clerk#000001018|0|onic theodolites. regular accounts detect f| +28651|584812|O|77077.81|1997-11-06|3-MEDIUM|Clerk#000004296|0|al braids against the ironic, express pinto beans boost quickl| +28652|171151|F|268547.32|1992-07-12|1-URGENT|Clerk#000001914|0|ccounts haggle furiously. quick requests boost carefully above the regular,| +28653|251819|O|117874.40|1995-11-10|2-HIGH|Clerk#000001914|0|leep blithely bold requests. quiet deposits| +28654|65653|O|21312.09|1995-07-26|1-URGENT|Clerk#000004061|0|he sheaves. fluffily express accounts after the carefully eve| +28655|168344|O|62331.94|1995-12-05|1-URGENT|Clerk#000004614|0|ions sleep carefully about the s| +28680|356575|F|21876.14|1994-09-16|4-NOT SPECIFIED|Clerk#000001930|0|round the regular foxes. furiously pending packag| +28681|445387|F|19622.76|1993-10-27|3-MEDIUM|Clerk#000001315|0|s. carefully regular theodolites use furiously carefully r| +28682|595888|O|198783.68|1996-05-09|4-NOT SPECIFIED|Clerk#000003058|0| special deposits: c| +28683|338170|F|100991.45|1992-01-05|2-HIGH|Clerk#000004804|0|the carefully regular accou| +28684|99049|F|217861.44|1992-09-29|5-LOW|Clerk#000002261|0|tect slyly about the furiously final| +28685|455504|O|87909.74|1996-09-26|3-MEDIUM|Clerk#000002698|0|s deposits sleep. s| +28686|403927|O|213697.04|1996-09-17|5-LOW|Clerk#000001530|0| after the quickly ironi| +28687|547984|F|234535.49|1993-04-05|3-MEDIUM|Clerk#000000404|0|arhorses haggle furiously carefully regular accounts. finally final | +28712|704450|F|212365.32|1993-08-02|3-MEDIUM|Clerk#000004684|0|bold packages. carefully special| +28713|188476|F|75271.44|1994-11-12|1-URGENT|Clerk#000004818|0|slyly final, bold foxes. unusual, furious accounts engage across the| +28714|438023|F|207179.09|1993-05-20|1-URGENT|Clerk#000000374|0|ake unusual asymptotes. platelets doubt slyly past the slyly ironic| +28715|599146|O|127467.14|1997-06-06|5-LOW|Clerk#000002121|0|tes around the deposits haggle slyly even, | +28716|325183|F|179775.16|1992-12-18|5-LOW|Clerk#000004509|0| instructions. silent pinto| +28717|96490|F|32940.93|1995-02-15|1-URGENT|Clerk#000000084|0|busy accounts. express theodolites detect regularly against the | +28718|202820|O|2265.80|1998-01-07|4-NOT SPECIFIED|Clerk#000004514|0|cross the blithely ironic packages detect never asymptotes| +28719|37228|F|146445.54|1995-02-19|3-MEDIUM|Clerk#000000818|0|ns wake carefully slyly bold pinto beans. bli| +28744|167408|O|216946.02|1996-12-18|3-MEDIUM|Clerk#000001395|0|lithely. furiously ironic d| +28745|370073|O|152898.08|1995-09-16|2-HIGH|Clerk#000003547|0|fully blithe excuses ma| +28746|53038|O|80847.06|1996-12-31|5-LOW|Clerk#000003250|0|iously pending requests across the| +28747|396637|F|26404.00|1994-11-05|4-NOT SPECIFIED|Clerk#000002534|0|ely. furiously quiet requests against the re| +28748|256624|O|269162.05|1998-06-28|4-NOT SPECIFIED|Clerk#000000268|0|en courts. express pinto beans| +28749|549674|F|145597.58|1995-03-06|4-NOT SPECIFIED|Clerk#000001781|0|nts wake slyly ironic dependencies. furiously final deposits| +28750|617417|F|30655.70|1993-11-15|5-LOW|Clerk#000001513|0|special notornis would haggle carefully furiously even idea| +28751|664732|O|353462.38|1995-07-28|1-URGENT|Clerk#000001999|0| to the pending, regular pint| +28776|144899|O|3265.47|1997-11-29|1-URGENT|Clerk#000004290|0|of the carefully final accounts detect ag| +28777|53170|F|31149.60|1993-05-05|2-HIGH|Clerk#000003105|0| orbits. slyly unusual foxes wake carefully| +28778|362201|O|129304.91|1996-12-16|4-NOT SPECIFIED|Clerk#000000088|0|fully special requests. quickly bold foxes wake. c| +28779|506185|F|120894.97|1994-12-21|4-NOT SPECIFIED|Clerk#000003621|0|es. bold, regular reques| +28780|171433|F|188460.16|1993-12-06|4-NOT SPECIFIED|Clerk#000003212|0| ironic deposits boost furiou| +28781|518600|O|104341.49|1996-04-28|2-HIGH|Clerk#000003646|0|e blithely busy deposits. quickly even ideas wake slyly slyly regular | +28782|358780|O|119343.42|1996-11-21|2-HIGH|Clerk#000004004|0|gular depths wake fluffily. sometimes regular de| +28783|746216|F|103665.53|1995-03-03|3-MEDIUM|Clerk#000001622|0|regular deposits. regular platel| +28808|151813|O|115937.96|1998-04-11|1-URGENT|Clerk#000004439|0|final, bold sheaves dazzle furiously above the packages. iro| +28809|5183|F|174222.25|1993-04-04|5-LOW|Clerk#000000958|0|ms instead of the blithely i| +28810|105889|F|77714.36|1992-09-30|2-HIGH|Clerk#000003412|0| blithely regular pinto| +28811|649672|F|147916.04|1993-04-20|4-NOT SPECIFIED|Clerk#000001552|0|slyly furious pinto beans. blithely final pinto beans are carefully among the | +28812|525842|O|8399.87|1997-06-30|5-LOW|Clerk#000003465|0|lithely ironic ideas sleep. quic| +28813|559694|F|5948.61|1992-12-24|5-LOW|Clerk#000001249|0|le. carefully even pinto beans detect blithely blithely bold| +28814|268306|F|234838.89|1994-10-16|4-NOT SPECIFIED|Clerk#000004134|0|its cajole blithely alongside | +28815|411940|O|177321.14|1997-05-30|1-URGENT|Clerk#000003375|0|ades? deposits boost carefully after the slyly pending reque| +28840|196084|O|223834.27|1998-06-14|5-LOW|Clerk#000000217|0|blithely. carefully ironic deposits wake | +28841|51194|P|185535.21|1995-04-01|5-LOW|Clerk#000000588|0|lithely ironic requests los| +28842|161023|F|198375.29|1993-10-08|2-HIGH|Clerk#000001072|0| wake furiously alongside of the express, final requests. even, u| +28843|303451|F|206829.29|1992-12-29|3-MEDIUM|Clerk#000000903|0|, final asymptotes wake furiously ironic i| +28844|100412|F|146693.81|1992-08-18|5-LOW|Clerk#000003040|0| accounts. carefully ironic pinto beans grow furiously final | +28845|120616|O|10852.24|1996-07-15|5-LOW|Clerk#000002818|0|fter the silently regular reque| +28846|662077|O|180198.65|1997-11-23|2-HIGH|Clerk#000001253|0|ests; fluffily ironic excuses after the car| +28847|511532|O|77812.60|1995-07-14|1-URGENT|Clerk#000001445|0| slyly ironic epitaphs. final foxes will wake carefully fi| +28872|51776|F|35671.24|1992-10-20|5-LOW|Clerk#000000303|0| even deposits boost care| +28873|195706|F|111068.21|1994-08-30|3-MEDIUM|Clerk#000003017|0|sts integrate. carefully unus| +28874|476944|O|346028.69|1998-03-25|3-MEDIUM|Clerk#000000033|0|blithely even foxes boost accounts.| +28875|736327|F|60122.23|1992-02-28|4-NOT SPECIFIED|Clerk#000000983|0|ons. quickly express foxes about the blithely express asymptotes | +28876|438548|O|171296.27|1996-02-14|2-HIGH|Clerk#000002996|0|ut the quickly idle pains! express requests nag special excuses. fu| +28877|417634|F|315455.62|1994-10-24|5-LOW|Clerk#000004261|0|lites around the final a| +28878|665464|O|124215.29|1996-10-29|5-LOW|Clerk#000001518|0| are. slyly unusual accounts cajole furiou| +28879|421861|O|125882.34|1996-04-23|2-HIGH|Clerk#000002732|0|furiously final platelets nag quickly. furiou| +28904|442030|O|83627.24|1997-08-16|2-HIGH|Clerk#000002146|0|slyly across the furiously unusual requests. bli| +28905|429449|O|108218.13|1998-01-19|4-NOT SPECIFIED|Clerk#000002518|0|furiously accounts. blithely special realms u| +28906|488690|F|247525.47|1994-05-06|3-MEDIUM|Clerk#000002675|0|t the packages! slyly final requests na| +28907|155867|P|221521.18|1995-05-01|3-MEDIUM|Clerk#000003124|0|ing to the blithely even packages nag furiously about the regular patt| +28908|654322|F|155956.09|1992-11-01|1-URGENT|Clerk#000001358|0|o beans haggle slyly. furiously even ideas after the deposi| +28909|660479|P|51097.19|1995-03-20|5-LOW|Clerk#000004333|0|packages according to the fluffily | +28910|665884|F|144794.05|1994-02-17|5-LOW|Clerk#000000798|0|posits. unusual, special instructions sleep according to the carefully pendin| +28911|747395|O|71505.21|1997-03-14|1-URGENT|Clerk#000003844|0|lithely pending ideas. pending requests integrate | +28936|455161|F|268704.61|1992-04-07|4-NOT SPECIFIED|Clerk#000001636|0|forges cajole according to | +28937|621652|F|298693.85|1992-01-22|3-MEDIUM|Clerk#000001040|0|dolites nag quickly blithely even orbits. doggedly even requests ca| +28938|582232|F|30688.53|1993-11-23|1-URGENT|Clerk#000004863|0|sual accounts cajole quickly above the regular, pen| +28939|319208|O|99622.57|1997-01-22|5-LOW|Clerk#000001285|0|d foxes. slyly ironic platelets haggle blithely si| +28940|162670|F|16827.86|1994-10-07|3-MEDIUM|Clerk#000000213|0|even ideas use. blithely final deposits| +28941|230870|F|27307.82|1994-09-15|2-HIGH|Clerk#000000038|0|luffily ironic pinto beans instead of the even, final requests nag furiously| +28942|477842|O|205832.57|1998-07-08|2-HIGH|Clerk#000002493|0|l pinto beans. daring asymptotes would affix blithely. pending dolp| +28943|83593|O|155464.24|1995-10-06|2-HIGH|Clerk#000001064|0| after the special, regula| +28968|186091|F|155042.98|1994-03-23|3-MEDIUM|Clerk#000004585|0|hely bold packages. slyly express packages cajol| +28969|102085|O|201453.19|1998-02-25|4-NOT SPECIFIED|Clerk#000003496|0|lly final asymptotes against the unusual, r| +28970|465521|O|183533.84|1997-10-12|4-NOT SPECIFIED|Clerk#000001659|0|ar requests haggle carefu| +28971|8393|F|142318.78|1993-10-23|4-NOT SPECIFIED|Clerk#000002692|0|ic requests believe? slyly pending packages are across th| +28972|45916|F|250423.66|1993-12-10|2-HIGH|Clerk#000000594|0|nto beans nag regular accounts. blithely ironic foxes under the fluffily | +28973|693764|O|17282.85|1995-07-21|3-MEDIUM|Clerk#000001893|0| asymptotes. thin asymptotes cajole | +28974|588580|F|176688.72|1992-09-13|2-HIGH|Clerk#000004065|0| final pinto beans. grouches haggle quickly about the ideas? fluffily ironi| +28975|494785|F|44729.26|1993-12-07|3-MEDIUM|Clerk#000001773|0|al requests are! careful requests use about the slyly ironic pac| +29000|585259|O|45554.77|1997-01-09|4-NOT SPECIFIED|Clerk#000003649|0|s sleep furiously fluffily regular a| +29001|197260|F|153671.91|1994-12-30|1-URGENT|Clerk#000004400|0|efully pending sauternes. regular packages sublate| +29002|342721|P|229669.37|1995-04-09|1-URGENT|Clerk#000004858|0|ular platelets serve. final asymptotes integrate accor| +29003|89662|O|156777.80|1997-03-24|3-MEDIUM|Clerk#000003436|0|nal accounts mold carefully regular sentiments. slyly final a| +29004|187957|O|82942.17|1995-10-16|2-HIGH|Clerk#000000371|0|sly about the slyly even pi| +29005|728924|O|119464.70|1997-08-01|2-HIGH|Clerk#000001866|0|st the unusual, slow dependencies are slyly according t| +29006|512531|O|183711.77|1998-03-09|3-MEDIUM|Clerk#000003184|0|uriously bravely bold| +29007|345403|F|196844.80|1993-09-28|1-URGENT|Clerk#000002999|0|r accounts use fluffily slowly regular requests| +29032|160175|O|1608.65|1996-12-24|4-NOT SPECIFIED|Clerk#000004027|0|cuses. quickly fluffy packages haggle furiously about the instructions.| +29033|298276|O|154976.62|1997-07-27|4-NOT SPECIFIED|Clerk#000000852|0| slyly even deposits. even, pending packages cajole slyly. iro| +29034|108493|O|157333.25|1996-05-24|4-NOT SPECIFIED|Clerk#000000294|0|thely even deposits. furiously regular platelets wake. bo| +29035|174214|F|199876.89|1994-04-27|4-NOT SPECIFIED|Clerk#000000739|0|ickly ironic packages are instructions. carefully ironic accounts among th| +29036|10937|O|161666.53|1995-08-13|4-NOT SPECIFIED|Clerk#000004551|0|. quickly bold foxes| +29037|65059|F|169687.27|1994-07-13|5-LOW|Clerk#000003453|0|ts. carefully unusual account| +29038|689983|O|301535.05|1997-08-15|2-HIGH|Clerk#000000725|0|en requests snooze unusual, express pinto beans. slyly bold deposits among | +29039|17440|F|85907.67|1992-06-20|5-LOW|Clerk#000003433|0|use packages. bold forges wake | +29064|594563|O|169094.36|1996-12-17|2-HIGH|Clerk#000001388|0|n instructions haggl| +29065|563140|O|164356.52|1996-04-03|4-NOT SPECIFIED|Clerk#000002516|0|detect slyly. regular deposits should s| +29066|441787|F|179751.68|1992-10-23|1-URGENT|Clerk#000003504|0|ggle slyly about the requests. carefully bold requests wake. special| +29067|112135|O|113281.90|1997-07-11|1-URGENT|Clerk#000004522|0|ackages sleep blithely pinto beans. quickly unusual deposits after the furiou| +29068|622303|F|144126.93|1992-06-04|1-URGENT|Clerk#000000387|0|ssly even somas affix f| +29069|292456|O|79620.66|1995-11-24|2-HIGH|Clerk#000003543|0|l tithes nag after the carefully pe| +29070|547324|O|82367.02|1995-12-05|1-URGENT|Clerk#000002784|0|he fluffily silent requests. deposits cajole after the furiously fina| +29071|106991|O|223799.29|1995-08-31|5-LOW|Clerk#000004832|0|. regular deposits sleep. furiously ironic requests at the slyl| +29096|445244|O|18021.79|1995-08-23|4-NOT SPECIFIED|Clerk#000002627|0|le. quickly pending tithes wake foxes. quickly express Tiresias are. slyl| +29097|454378|O|340360.20|1997-08-29|1-URGENT|Clerk#000002949|0|coys nag according to the special instructions. packages h| +29098|204709|F|102848.71|1994-10-30|3-MEDIUM|Clerk#000001163|0|nts. slyly final excuses accordin| +29099|275140|O|194194.78|1997-06-26|1-URGENT|Clerk#000004320|0| bold packages. quickly pending dino| +29100|526042|F|34555.20|1995-04-12|2-HIGH|Clerk#000001562|0|y even instructions wake carefully ironic packages; bl| +29101|186424|F|179254.15|1993-02-15|5-LOW|Clerk#000003305|0| beans. blithely special pinto beans boost quickly f| +29102|470458|O|135217.72|1997-09-19|5-LOW|Clerk#000003471|0|ests boost along th| +29103|484030|F|152597.21|1994-07-22|1-URGENT|Clerk#000002133|0|. requests are carefully. f| +29128|568078|F|36620.89|1994-05-22|3-MEDIUM|Clerk#000003299|0|bout the blithely fi| +29129|155995|F|111998.01|1992-06-13|4-NOT SPECIFIED|Clerk#000001083|0|gular waters. carefully ironic requests wake instead of the| +29130|556240|O|34283.73|1996-01-28|2-HIGH|Clerk#000003924|0|ss the carefully daring pinto| +29131|711863|F|220808.96|1992-08-09|3-MEDIUM|Clerk#000003155|0|ecial deposits? slyly regular foxes cajole against the blit| +29132|266261|O|223227.02|1998-05-12|3-MEDIUM|Clerk#000004510|0|inal accounts impress permanently according to the blithely regular pint| +29133|541043|O|165631.99|1998-07-11|2-HIGH|Clerk#000000491|0|ge furiously after the quickly| +29134|302842|O|306131.57|1996-10-26|1-URGENT|Clerk#000000501|0|l packages above the | +29135|342127|F|24611.65|1992-08-13|3-MEDIUM|Clerk#000004046|0|affix furiously quickly special excuses. final, unusual ideas boost | +29160|602296|F|231998.03|1992-01-24|5-LOW|Clerk#000001717|0|after the pending c| +29161|14596|O|283887.79|1997-11-05|1-URGENT|Clerk#000000787|0|s. slyly pending fo| +29162|54178|F|217049.19|1994-07-12|3-MEDIUM|Clerk#000001879|0|y thin warhorses use blit| +29163|52807|O|262249.81|1998-05-14|5-LOW|Clerk#000002000|0|ains. blithely bold accounts wake ruthlessly f| +29164|250315|O|267986.88|1998-01-12|4-NOT SPECIFIED|Clerk#000004714|0|yly silent patterns grow carefully blit| +29165|260716|F|70754.65|1993-08-18|5-LOW|Clerk#000002651|0|aggle about the even, regular deposi| +29166|340243|F|205735.65|1992-06-26|4-NOT SPECIFIED|Clerk#000000163|0|ial requests sleep. slyly bold | +29167|463165|F|209380.45|1994-12-11|4-NOT SPECIFIED|Clerk#000003556|0|hely final accounts. slyly final ideas print slyly ironic accounts. slo| +29192|143039|O|11868.49|1997-03-17|5-LOW|Clerk#000004615|0|sits after the ironic foxes wake quick| +29193|299302|F|121894.36|1992-02-10|2-HIGH|Clerk#000003230|0|ckly special packages haggle quickly ironic theodolites| +29194|102688|O|126591.78|1997-12-07|4-NOT SPECIFIED|Clerk#000004124|0|express foxes cajole furiously. enticing foxes above the s| +29195|117799|O|295643.04|1997-11-13|1-URGENT|Clerk#000000136|0|dolites under the blithely expres| +29196|597373|O|41340.03|1997-03-06|3-MEDIUM|Clerk#000003677|0| the special packages: deposits according to the express t| +29197|519307|O|171654.13|1998-06-04|2-HIGH|Clerk#000001228|0| ironic packages. carefully unusual reques| +29198|235081|O|234410.74|1997-12-13|4-NOT SPECIFIED|Clerk#000000204|0|e the slyly bold ideas. thin ideas across the slyly pending foxes nod quick| +29199|5320|F|112830.40|1994-02-24|4-NOT SPECIFIED|Clerk#000002605|0|among the final instructions. | +29224|137998|F|120556.44|1994-06-30|3-MEDIUM|Clerk#000004408|0|ringly even, express requests. fluffily unusual depos| +29225|332161|O|59246.10|1998-07-19|3-MEDIUM|Clerk#000001989|0|yly. slyly special deposits haggle across the quickly ironic packages. slyly i| +29226|370754|F|299503.05|1993-02-06|3-MEDIUM|Clerk#000000176|0|e furiously even instructions. unusual requests haggle exp| +29227|248287|O|220896.01|1998-04-02|5-LOW|Clerk#000000601|0|tithes. unusual excuses cajole carefully| +29228|698981|O|83452.45|1997-11-23|1-URGENT|Clerk#000004241|0|ct carefully ideas. furiously bold| +29229|518479|O|193854.37|1997-10-13|3-MEDIUM|Clerk#000001288|0|ndencies haggle among the furiously qui| +29230|553336|O|132819.36|1997-10-13|4-NOT SPECIFIED|Clerk#000002544|0|ys promise blithely alongside of the final acc| +29231|661148|F|16753.15|1994-03-10|3-MEDIUM|Clerk#000000898|0|y against the express, quick theodolites. regular hockey play| +29256|648242|P|92593.05|1995-03-07|3-MEDIUM|Clerk#000001388|0|aringly past the carefully express| +29257|491711|O|165559.63|1997-07-30|3-MEDIUM|Clerk#000000500|0|hin the carefully even| +29258|679943|F|182918.08|1994-09-21|5-LOW|Clerk#000003688|0|kages lose quickly regular braids. s| +29259|39088|O|177953.22|1998-05-26|1-URGENT|Clerk#000003689|0|sual frays. slyly regular theodolites use furiously silent packages. | +29260|674764|O|103657.81|1997-08-23|4-NOT SPECIFIED|Clerk#000003702|0|ctions about the blithely express ac| +29261|729670|O|234552.68|1996-02-04|2-HIGH|Clerk#000003655|0|ing instructions boost al| +29262|313594|F|77004.64|1992-11-17|5-LOW|Clerk#000003864|0|old deposits? unusual packages among the bl| +29263|299332|F|40292.69|1993-02-07|5-LOW|Clerk#000004273|0|kly final foxes are blithely express deposits. special, ironic packages | +29288|603721|F|141458.87|1994-08-20|1-URGENT|Clerk#000001689|0|pitaphs sleep above the fluffily even waters. blith| +29289|719690|O|140548.07|1998-06-01|1-URGENT|Clerk#000000048|0|ly. pending ideas according to the slyly final requests | +29290|566692|F|235434.44|1993-07-17|3-MEDIUM|Clerk#000002124|0|even ideas about the clo| +29291|112778|F|168974.21|1992-12-07|1-URGENT|Clerk#000004975|0| regular, regular foxes. even, express theodolites cajole quickly of | +29292|194470|F|112180.82|1993-10-03|1-URGENT|Clerk#000004323|0|ter the slow, ironic ideas boost after the carefully| +29293|693989|F|156512.25|1992-11-12|1-URGENT|Clerk#000000123|0|lithely across the accounts. fluffily regu| +29294|613762|F|107258.53|1992-06-27|1-URGENT|Clerk#000003204|0| are quickly theodolites. pains det| +29295|733039|P|197791.12|1995-03-14|1-URGENT|Clerk#000004390|0|along the sometimes regular depos| +29320|657712|F|81638.74|1992-02-14|1-URGENT|Clerk#000002694|0|ithely regular pinto beans. express platelets nag carefully. furiously pendin| +29321|635446|F|127542.81|1994-12-15|3-MEDIUM|Clerk#000001131|0|sual dolphins. carefully ironic requests haggle ab| +29322|676729|O|187311.03|1996-11-04|2-HIGH|Clerk#000003308|0|wake furiously blithely ironic courts. f| +29323|25493|O|286105.52|1997-06-20|4-NOT SPECIFIED|Clerk#000001282|0|g instructions. fluffily final dolphins affix above| +29324|208346|F|275412.57|1995-02-11|3-MEDIUM|Clerk#000002463|0|the regular orbits. slyly regular theodolites run sly| +29325|665806|O|162692.24|1995-12-20|5-LOW|Clerk#000003151|0|ts sleep carefully regular pinto beans. accounts nag carefully accord| +29326|181925|F|47354.66|1994-01-05|2-HIGH|Clerk#000000875|0|unts. carefully regular deposits against| +29327|603538|F|69779.31|1993-12-07|1-URGENT|Clerk#000003328|0|y above the bold accou| +29352|656788|F|58061.12|1992-08-14|2-HIGH|Clerk#000003095|0|uests. fluffily final deposits alongside of the furiously fina| +29353|115421|F|227831.45|1992-05-31|4-NOT SPECIFIED|Clerk#000001017|0| the final accounts cajole regular pack| +29354|369601|O|310835.79|1998-05-12|5-LOW|Clerk#000000557|0|le slyly daring theodolites. slyly regular requests alongside| +29355|369454|O|137598.55|1998-04-13|2-HIGH|Clerk#000000132|0|ld dolphins according to the final packages cajole blithely ruthlessly | +29356|139450|O|25246.94|1997-05-10|1-URGENT|Clerk#000000025|0|nding theodolites. blithely| +29357|708218|O|192948.71|1996-02-22|4-NOT SPECIFIED|Clerk#000002907|0|iously final requests.| +29358|504931|O|49316.90|1996-03-10|2-HIGH|Clerk#000001420|0|kindle quickly. furiously silent theodolites integrate above the| +29359|118427|F|157455.65|1993-02-02|3-MEDIUM|Clerk#000001515|0|ut the furiously spec| +29384|651772|F|64888.50|1993-08-21|4-NOT SPECIFIED|Clerk#000004103|0|kages haggle blithely up the carefully regular packages.| +29385|552725|F|108794.27|1992-08-28|5-LOW|Clerk#000001679|0|ies. instructions detect blithely about| +29386|148829|O|15182.33|1996-04-12|4-NOT SPECIFIED|Clerk#000002171|0|s wake across the express packages. bold deposits use blithely ironic | +29387|105077|O|171036.21|1996-02-02|1-URGENT|Clerk#000000015|0| special requests. blithely bold ideas are. bold foxes after t| +29388|518588|F|153314.86|1994-03-22|4-NOT SPECIFIED|Clerk#000001158|0|arefully bold foxes enga| +29389|153109|O|208937.29|1996-12-31|4-NOT SPECIFIED|Clerk#000002179|0|packages above the sil| +29390|31798|F|12699.85|1992-05-21|1-URGENT|Clerk#000002626|0|cuses could have to sleep. fluffily | +29391|410650|O|323144.84|1996-07-29|2-HIGH|Clerk#000001648|0|sly blithe packages inte| +29416|273704|F|248743.31|1994-08-27|1-URGENT|Clerk#000001651|0|ing asymptotes are quickly s| +29417|382465|O|54615.29|1997-03-14|1-URGENT|Clerk#000002567|0|ld accounts according to the bold courts are quickly furiously bold pi| +29418|566476|F|53224.32|1994-05-17|2-HIGH|Clerk#000002012|0|ld packages nag regularly. blithely regular depende| +29419|228611|O|171740.48|1997-09-27|3-MEDIUM|Clerk#000001431|0|es are permanently against the slyly ironic th| +29420|4084|F|168105.86|1993-05-06|5-LOW|Clerk#000004837|0|iously ironic deposits boost | +29421|368233|F|189599.86|1992-11-18|3-MEDIUM|Clerk#000003295|0|en ideas sleep carefully carefully unusual deposits. silen| +29422|633653|O|87717.36|1995-08-10|5-LOW|Clerk#000002282|0|s beyond the final, final | +29423|549113|O|133954.66|1997-12-28|1-URGENT|Clerk#000001694|0|lly blithely regular accounts. even ideas affix quickly a| +29448|178498|O|357476.58|1995-11-26|1-URGENT|Clerk#000004342|0|ly silent accounts. thinly even frays sleep fluffily pen| +29449|14951|O|62051.46|1998-02-16|2-HIGH|Clerk#000004650|0|ly ironic theodolites| +29450|24316|F|295115.44|1992-02-25|1-URGENT|Clerk#000001686|0|ilent, ironic dolphins haggle across the | +29451|668740|O|31001.74|1997-09-17|3-MEDIUM|Clerk#000001602|0|x after the carefully silent requests. packages are slyly above the| +29452|746809|O|153957.65|1997-04-13|4-NOT SPECIFIED|Clerk#000002336|0|tly. special theodolites wake. slyly bold id| +29453|359626|O|72058.57|1995-06-20|2-HIGH|Clerk#000003841|0|ular packages haggle quic| +29454|708973|F|141880.30|1992-12-20|3-MEDIUM|Clerk#000003747|0|al requests sleep quickly. regular deposits boos| +29455|426037|O|201521.19|1996-08-16|2-HIGH|Clerk#000000942|0| waters across the slyly regular dep| +29480|131836|F|207235.37|1992-10-23|4-NOT SPECIFIED|Clerk#000000467|0|usly bold gifts use above the furiously regular packages. deposits caj| +29481|258650|O|379625.30|1997-07-26|2-HIGH|Clerk#000003298|0|sual pinto beans. slyly final requests are q| +29482|114526|F|139734.63|1994-10-23|2-HIGH|Clerk#000002517|0|oxes about the fluffily special deposits doze slyly dependencies. blithe| +29483|324106|O|141939.78|1997-06-23|2-HIGH|Clerk#000000379|0|accounts according to the furiously final requests are f| +29484|744380|O|111845.83|1998-06-03|3-MEDIUM|Clerk#000004763|0|ourts maintain pending reques| +29485|34205|F|205847.24|1993-12-29|5-LOW|Clerk#000003615|0|ts across the blithely bold deposits haggle among the carefully special packag| +29486|378782|O|317090.93|1998-03-09|4-NOT SPECIFIED|Clerk#000001404|0|unts against the courts sublate up the carefully regul| +29487|173674|O|90080.17|1995-07-28|1-URGENT|Clerk#000002855|0| requests wake about the carefully bold foxes. ironic requests c| +29512|679559|F|78066.14|1993-04-26|1-URGENT|Clerk#000003161|0|ges. regular packages wake quickly. furiously regular foxes| +29513|337592|O|36855.95|1998-04-03|3-MEDIUM|Clerk#000000075|0| promise carefully unusual, regular platelets.| +29514|142939|F|141461.38|1993-03-24|3-MEDIUM|Clerk#000000078|0|nly slow pains boost blithely ideas| +29515|105637|F|12299.00|1994-05-07|2-HIGH|Clerk#000000677|0|dependencies maintain slyly quickly bold accounts. furiously furiou| +29516|167645|O|61309.89|1998-01-23|1-URGENT|Clerk#000004949|0|ideas. fluffily unusual deposits doze carefully daringly final | +29517|598051|O|192321.76|1998-07-12|3-MEDIUM|Clerk#000002016|0|r requests. special, pending grouches haggle alo| +29518|665573|F|193272.49|1992-05-12|1-URGENT|Clerk#000002573|0|ke furiously slyly ironic pinto beans. instru| +29519|25295|O|43860.81|1997-11-13|1-URGENT|Clerk#000001992|0|ldly above the carefully even packages. accou| +29544|622364|O|100019.81|1997-12-25|2-HIGH|Clerk#000004994|0|leep furiously accord| +29545|565147|O|25773.66|1996-06-30|2-HIGH|Clerk#000001277|0|sts haggle furiously thin theodolites. carefully furious accounts along | +29546|418945|F|206175.80|1992-11-13|2-HIGH|Clerk#000004171|0|sts haggle furiously bold accounts. ironic, regular accounts haggl| +29547|193456|F|11987.84|1992-09-13|5-LOW|Clerk#000002217|0|its. carefully unusual deposits | +29548|154609|F|39051.13|1993-10-17|3-MEDIUM|Clerk#000003110|0|c foxes haggle furiously bravely special deposits. furiousl| +29549|481208|P|182774.40|1995-04-17|4-NOT SPECIFIED|Clerk#000003182|0|sly express packages | +29550|398984|F|202704.13|1992-10-03|1-URGENT|Clerk#000001387|0|t the slyly regular accounts sleep blithely regular asym| +29551|712753|O|135562.43|1996-05-01|4-NOT SPECIFIED|Clerk#000003938|0|theodolites sleep fu| +29576|225757|O|124925.52|1996-05-15|4-NOT SPECIFIED|Clerk#000001599|0|lly bold deposits. slyly even packages nag c| +29577|46016|O|270528.55|1996-11-30|5-LOW|Clerk#000000390|0| instructions boost slyly final req| +29578|127903|O|103182.53|1998-06-30|5-LOW|Clerk#000000275|0|ns. slyly ironic accounts detect furiously across the fluffily pen| +29579|159250|O|52359.76|1998-01-02|3-MEDIUM|Clerk#000001287|0|quests haggle since the regular, special packages. finally ironic requ| +29580|503956|O|83385.13|1997-09-06|4-NOT SPECIFIED|Clerk#000003268|0|riously ironic attainments. regular,| +29581|225185|O|232666.18|1996-05-12|4-NOT SPECIFIED|Clerk#000004791|0|arefully enticing sauternes wake blithely | +29582|180353|F|101257.53|1994-12-05|4-NOT SPECIFIED|Clerk#000003054|0|ctions sleep at the carefully ironic a| +29583|427369|F|132603.59|1993-03-18|5-LOW|Clerk#000003674|0|telets integrate blithely slow dependencies. slyly careful instru| +29608|14776|F|43973.93|1994-10-11|3-MEDIUM|Clerk#000000962|0| slyly about the forges. slyly qu| +29609|58934|F|196330.23|1992-10-05|4-NOT SPECIFIED|Clerk#000003521|0|ise slyly. slyly regular forges lose slyly. regular, fur| +29610|494080|O|111277.06|1997-04-21|2-HIGH|Clerk#000000323|0| are. finally pending epitaphs use carefully sly platelets. fluffily final | +29611|723749|O|225229.14|1995-10-20|2-HIGH|Clerk#000001708|0|press dependencies around the daringly express platelets are carefully thi| +29612|544577|O|152726.24|1997-05-24|2-HIGH|Clerk#000004479|0|t the special, express deposits integrate blithely ironic requests.| +29613|450593|F|113193.10|1992-06-17|1-URGENT|Clerk#000004982|0|jole fluffily. blithely special instructions haggle about the furious| +29614|361433|F|270002.98|1993-09-26|3-MEDIUM|Clerk#000001302|0|nic packages boost fluffily furiously quiet dependencies. fin| +29615|353170|O|148968.39|1997-05-15|2-HIGH|Clerk#000000435|0|hes are furiously ironic foxes. carefully regul| +29640|213172|O|141361.01|1997-04-17|1-URGENT|Clerk#000000701|0|y idle requests sleep. furiously regular | +29641|3716|O|133740.08|1997-06-13|1-URGENT|Clerk#000002507|0| beans. pending, unusual courts cajole alw| +29642|190933|O|59210.36|1998-01-16|5-LOW|Clerk#000000757|0|theodolites wake blithe| +29643|495352|O|72103.31|1996-10-19|4-NOT SPECIFIED|Clerk#000001946|0|carefully alongside of the quickly pending courts. | +29644|368641|F|148169.11|1994-01-30|5-LOW|Clerk#000004680|0|ven forges poach blithely ca| +29645|725260|F|191592.81|1993-04-22|1-URGENT|Clerk#000002244|0|special platelets detect. blit| +29646|430642|O|210280.52|1996-08-21|5-LOW|Clerk#000004957|0|usual packages. unusual, even | +29647|266522|O|163593.39|1997-03-06|5-LOW|Clerk#000000208|0|lyly final packages affix fluffily against the blithel| +29672|420713|F|244394.18|1992-06-02|2-HIGH|Clerk#000003405|0|ngly across the final | +29673|658123|F|255320.24|1994-09-18|1-URGENT|Clerk#000004479|0|refully regular, ironic packages. final packages above the | +29674|41749|F|155081.78|1994-10-12|3-MEDIUM|Clerk#000004003|0|beans nag. blithely| +29675|415382|O|151492.72|1995-11-06|4-NOT SPECIFIED|Clerk#000002898|0| evenly ironic gifts. permanent requests wake blithely around the carefully ex| +29676|324913|O|229133.68|1997-03-31|3-MEDIUM|Clerk#000000543|0|ep against the furiously special requests. fluffily regular packages nag car| +29677|45424|O|205167.18|1996-02-13|3-MEDIUM|Clerk#000000449|0|e pending requests are sly| +29678|669979|O|297266.93|1995-12-15|3-MEDIUM|Clerk#000001317|0|ly ironic tithes are across the requests. carefully final theod| +29679|581048|O|66501.67|1996-11-27|2-HIGH|Clerk#000002247|0|ake furiously slyly ironic pinto beans. blithely ironic dolp| +29704|666433|O|46157.47|1995-12-30|4-NOT SPECIFIED|Clerk#000002370|0|ost. slyly quiet ideas cajole according to the ironic, fluffy packages. | +29705|207257|O|81673.25|1997-07-20|4-NOT SPECIFIED|Clerk#000003887|0|ilent foxes hinder-- blithely special | +29706|355612|F|227814.32|1993-11-26|3-MEDIUM|Clerk#000002453|0|e quickly along the slyly ironic theodo| +29707|2368|F|242449.12|1994-09-06|3-MEDIUM|Clerk#000003896|0|bold theodolites: slyly regular foxes hag| +29708|38590|O|191734.19|1995-11-11|4-NOT SPECIFIED|Clerk#000004851|0|le slyly around the blithely pending packages.| +29709|552671|F|80642.01|1992-09-28|5-LOW|Clerk#000002208|0|ckages detect quickly against| +29710|725983|F|248918.28|1992-12-06|1-URGENT|Clerk#000003179|0| blithely unusual pinto beans sleep warhorses. slyly express excuses cajo| +29711|576788|O|62272.15|1998-07-30|4-NOT SPECIFIED|Clerk#000004551|0|. furiously final ideas boost furiously. carefully ironi| +29736|317023|F|192230.53|1993-11-06|2-HIGH|Clerk#000000649|0|s according to the fluffily final epitaphs must detect slyly e| +29737|172802|F|127463.41|1992-11-10|3-MEDIUM|Clerk#000002994|0|uick, regular deposits above the carefully final pint| +29738|282998|F|15463.60|1992-12-22|5-LOW|Clerk#000004728|0|jole ironically ironic courts. final dependencies wake furiously furiously unu| +29739|588193|O|244552.19|1997-03-01|2-HIGH|Clerk#000003390|0|ng, silent theodolites wake quickly sly| +29740|7783|O|133900.12|1998-06-22|5-LOW|Clerk#000002700|0|ts cajole furiously quickly ironic courts. slyly final accounts sleep sly| +29741|299375|F|215000.46|1994-12-25|4-NOT SPECIFIED|Clerk#000001409|0|ndencies detect furiously slyly even multipliers. slyly unusual requests | +29742|580780|F|175743.92|1993-02-06|5-LOW|Clerk#000002653|0| around the excuses. ironic, express escapades| +29743|665786|F|107932.31|1992-11-07|1-URGENT|Clerk#000002489|0|en pinto beans cajole furi| +29768|606616|O|80746.60|1996-05-15|4-NOT SPECIFIED|Clerk#000001753|0|ar pinto beans. carefully regular requests from the fluffily even theodol| +29769|636721|O|85326.96|1997-11-26|3-MEDIUM|Clerk#000001202|0|ideas. ironic, final theodolites wake near the carefully special a| +29770|354866|O|272389.00|1997-02-21|2-HIGH|Clerk#000004422|0| furiously ironic patterns haggle blithely even, silent packages. | +29771|228700|O|215069.26|1998-04-20|5-LOW|Clerk#000002293|0|usly around the fin| +29772|749803|O|185872.36|1996-04-30|3-MEDIUM|Clerk#000001122|0|final theodolites. final, exp| +29773|416654|O|282757.93|1997-11-12|5-LOW|Clerk#000000196|0| must hinder furiously according to the furiously idle | +29774|694693|F|178306.51|1994-05-30|5-LOW|Clerk#000002715|0|ly. excuses among the silent attainments wake furi| +29775|437113|F|71803.32|1992-06-24|3-MEDIUM|Clerk#000001303|0|ternes; even ideas haggle. slow instruc| +29800|290350|O|174708.12|1995-11-05|5-LOW|Clerk#000000909|0| above the bold frays | +29801|407188|O|121181.15|1996-08-16|1-URGENT|Clerk#000003159|0|leep. unusual, even requests during the regular deposits are fur| +29802|600293|O|235203.56|1996-12-21|3-MEDIUM|Clerk#000002476|0|ost carefully after the furiously special asymptot| +29803|121658|F|219243.22|1995-02-02|3-MEDIUM|Clerk#000000555|0|against the packages.| +29804|200995|P|154653.53|1995-05-15|5-LOW|Clerk#000004686|0|inst the regular, pending excuses? final platelet| +29805|89374|F|216512.71|1993-01-21|2-HIGH|Clerk#000004575|0|across the daring asymptotes. foxes cajole slyly. | +29806|595631|O|85248.76|1996-05-24|2-HIGH|Clerk#000002607|0|ross the blithely final accounts. accounts boost after t| +29807|517297|P|118977.79|1995-05-01|5-LOW|Clerk#000003817|0|en accounts above the blithely ironic forges | +29832|204286|F|195388.30|1994-09-26|5-LOW|Clerk#000003381|0|quests-- regular requests believe quickly. regular courts boost busil| +29833|679766|F|263241.68|1994-11-17|2-HIGH|Clerk#000002735|0|about the quickly even do| +29834|64619|O|262321.79|1998-04-06|1-URGENT|Clerk#000004337|0|endencies. carefully regular asymptotes sleep | +29835|34730|O|213020.96|1998-01-30|5-LOW|Clerk#000000412|0|kages sleep carefully final accounts. even accounts nag against the| +29836|198832|O|40775.09|1998-01-01|3-MEDIUM|Clerk#000002327|0|even asymptotes. carefully special warhorses dazzle furious| +29837|505742|F|236942.06|1992-06-24|1-URGENT|Clerk#000002394|0|ts are furiously about the slyly final ideas. packag| +29838|248191|O|166706.43|1996-10-09|1-URGENT|Clerk#000002958|0|usual dependencies; requests| +29839|577502|F|93662.37|1994-09-19|1-URGENT|Clerk#000000563|0|ly across the carefully pending deposits? blith| +29864|322225|O|89212.91|1996-04-23|4-NOT SPECIFIED|Clerk#000002526|0| carefully express requests. ideas haggle. ironic accoun| +29865|609277|O|334377.30|1998-03-21|3-MEDIUM|Clerk#000001095|0|gular asymptotes. bold accounts will boost blithely except the requests: requ| +29866|338840|O|195269.84|1997-08-12|1-URGENT|Clerk#000002648|0|s use according to the carefully regular instructions. express requests slee| +29867|132844|F|60092.02|1993-08-23|1-URGENT|Clerk#000004086|0|e slyly sometimes regular instructions. spec| +29868|699049|O|328790.52|1997-10-14|4-NOT SPECIFIED|Clerk#000001817|0|rding to the special accounts. theodolites nag quietly f| +29869|155788|F|150415.57|1992-07-17|3-MEDIUM|Clerk#000001304|0|r dependencies use idly| +29870|78749|O|225680.73|1998-02-03|1-URGENT|Clerk#000000720|0|. even platelets sleep furiously. furiously regular platelets along the| +29871|526457|O|116352.67|1997-12-10|5-LOW|Clerk#000002614|0|yly against the unusual depos| +29896|403450|F|190769.97|1993-10-04|5-LOW|Clerk#000001752|0|eep even, ironic requests. permanent| +29897|27926|O|156976.00|1998-05-01|4-NOT SPECIFIED|Clerk#000004774|0|. carefully regular deposits above the furiously unusual theodoli| +29898|586243|O|26821.14|1997-09-25|2-HIGH|Clerk#000001367|0| foxes. carefully regular accounts serve blithely. finally f| +29899|206866|F|43250.55|1992-03-12|4-NOT SPECIFIED|Clerk#000004621|0| serve fluffily above the f| +29900|517972|F|219792.22|1994-09-25|5-LOW|Clerk#000002267|0|dependencies wake blithely after the furiously special instructio| +29901|304951|O|249923.18|1996-03-11|4-NOT SPECIFIED|Clerk#000001837|0|nts doze carefully close warhorses. furiou| +29902|532172|F|126385.98|1995-03-07|4-NOT SPECIFIED|Clerk#000002563|0|uriously. slyly ironic | +29903|458353|F|84764.44|1993-04-10|4-NOT SPECIFIED|Clerk#000004402|0| final theodolites. furiously t| +29928|272222|O|113968.76|1995-10-01|1-URGENT|Clerk#000003706|0|bout the busy packages. carefully unusual | +29929|234115|O|89854.65|1995-10-22|1-URGENT|Clerk#000000582|0|hins along the ironic accounts | +29930|258005|F|187071.30|1994-08-23|5-LOW|Clerk#000002175|0|ruthlessly after the carefully ironic notornis. regular, regular | +29931|537295|P|216788.32|1995-04-07|1-URGENT|Clerk#000001646|0|y even courts. slyly even depos| +29932|284740|O|126935.72|1995-06-26|1-URGENT|Clerk#000001929|0|riously. finally regular theodolites a| +29933|612397|O|77846.13|1997-09-11|5-LOW|Clerk#000002428|0|ses. carefully unusual gifts sleep furiously blithely even deposits. never fi| +29934|296861|F|236719.20|1994-02-14|1-URGENT|Clerk#000003682|0| around the special instructions. blithely even instructions x-ray blithel| +29935|332720|F|23396.84|1993-02-01|3-MEDIUM|Clerk#000001464|0|l packages above the permanent, r| +29960|21272|O|235892.50|1995-12-24|4-NOT SPECIFIED|Clerk#000003674|0|rding to the furiously final epitaphs. | +29961|507910|O|216947.66|1998-07-09|4-NOT SPECIFIED|Clerk#000001847|0|y regular Tiresias. ruthless| +29962|692051|F|248422.45|1993-06-07|2-HIGH|Clerk#000003060|0|ep carefully pending instructions. ironic, careful package| +29963|286036|O|51165.80|1997-12-11|3-MEDIUM|Clerk#000002708|0|le furiously. even, final de| +29964|646279|O|15722.60|1998-05-07|1-URGENT|Clerk#000000949|0|ounts thrash blithely express accounts. excuses| +29965|484459|F|217714.55|1993-03-22|1-URGENT|Clerk#000003500|0| platelets. fluffily regular deposits use quickly. | +29966|286294|F|121004.82|1993-07-04|4-NOT SPECIFIED|Clerk#000003104|0| instructions sleep furiously along| +29967|484543|F|233905.95|1992-01-06|1-URGENT|Clerk#000002420|0|pending deposits are furiously alongside of the stealthily bold ideas. e| +29992|189071|F|101086.67|1993-01-06|4-NOT SPECIFIED|Clerk#000002635|0|regular ideas are fluffily. pending, re| +29993|705961|O|197728.04|1997-04-30|3-MEDIUM|Clerk#000000893|0|f the quickly express pinto beans. re| +29994|59107|F|242610.93|1993-05-24|4-NOT SPECIFIED|Clerk#000004901|0|quests grow about the a| +29995|394318|F|128078.81|1992-12-07|4-NOT SPECIFIED|Clerk#000002354|0|epths haggle across the accounts. bl| +29996|293630|O|175797.88|1996-11-23|4-NOT SPECIFIED|Clerk#000001653|0|press theodolites are quickly even asym| diff --git a/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u2 b/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u2 new file mode 100644 index 0000000..41dfa57 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u2 @@ -0,0 +1,7500 @@ +29997|36739|O|219230.51|1995-12-19|1-URGENT|Clerk#000003243|0|olites! quickly regular pack| +29998|191269|F|187804.63|1993-03-09|1-URGENT|Clerk#000002154|0|ounts use furiously. carefully unusual platelets along the regular, un| +29999|131711|F|19584.03|1993-01-03|1-URGENT|Clerk#000001622|0|olites. regular, final packages about the fluffily final pinto beans cajole| +30024|410986|F|323032.32|1994-06-17|4-NOT SPECIFIED|Clerk#000002065|0|ters. final, pending excuses hinder carefully pending account| +30025|665974|O|242602.85|1997-09-22|4-NOT SPECIFIED|Clerk#000002790|0|sleep slyly across the blithely| +30026|18724|O|147042.43|1998-07-17|4-NOT SPECIFIED|Clerk#000001311|0|ost carefully bold sauternes. final, ironic accounts boost bli| +30027|428110|F|11781.61|1994-09-04|4-NOT SPECIFIED|Clerk#000001049|0|o beans sleep carefully. furiously ironic fox| +30028|462206|O|46276.73|1995-10-02|2-HIGH|Clerk#000003239|0|ep silent requests. brave pearl| +30029|538126|F|104065.11|1995-03-29|3-MEDIUM|Clerk#000001368|0|the furiously unusual| +30030|28652|F|110878.30|1992-07-26|5-LOW|Clerk#000004151|0|gular packages use blithely ironic packages. furiously regular requests caj| +30031|44104|F|277596.53|1993-12-23|4-NOT SPECIFIED|Clerk#000002060|0|unts use blithely. regular accounts in| +30056|248593|O|295191.18|1995-11-13|3-MEDIUM|Clerk#000002912|0| requests wake furi| +30057|595831|F|96770.11|1994-05-07|4-NOT SPECIFIED|Clerk#000002049|0|xpress accounts nag fluffily according| +30058|115441|O|64685.24|1996-11-11|5-LOW|Clerk#000003120|0|ss carefully. fluffily quiet asymptotes haggle blithely. blithely speci| +30059|714667|O|198619.83|1997-03-30|4-NOT SPECIFIED|Clerk#000001796|0|are unusual ideas. slyly special accounts wake fluffil| +30060|153418|F|71489.99|1993-03-28|2-HIGH|Clerk#000004071|0|ts according to the deposits snooz| +30061|717007|O|162648.14|1996-11-14|5-LOW|Clerk#000002429|0|kly fluffily special deposits. asymptotes ac| +30062|457198|F|188028.17|1994-05-25|1-URGENT|Clerk#000004122|0|deposits above the fur| +30063|345620|F|106343.53|1992-08-29|4-NOT SPECIFIED|Clerk#000001867|0|ly blithely fluffy accounts. carefully even theodolites are| +30088|83692|F|257030.40|1993-09-16|5-LOW|Clerk#000000090|0|st the fluffily final pinto beans haggle blithely furiously | +30089|360661|O|211182.61|1995-07-10|4-NOT SPECIFIED|Clerk#000002118|0|express deposits use. theodolites haggle sile| +30090|117808|O|90408.53|1997-04-14|5-LOW|Clerk#000003305|0|s about the blithely express dependencies could have to se| +30091|747187|F|184016.37|1994-04-08|4-NOT SPECIFIED|Clerk#000003709|0|lar deposits-- ironic deposits use slyly dependencies. quickly special excu| +30092|698533|O|170884.17|1996-03-31|2-HIGH|Clerk#000003140|0|integrate blithely among the busily bold epitaphs: unusu| +30093|471061|F|254845.12|1993-08-04|4-NOT SPECIFIED|Clerk#000003383|0|t the furiously ironic ideas are | +30094|100807|F|19639.97|1993-09-19|3-MEDIUM|Clerk#000000391|0|the carefully special excuses w| +30095|1649|O|252134.50|1997-01-29|4-NOT SPECIFIED|Clerk#000000734|0|es nag carefully. quickly silent realms about the ev| +30120|703645|O|167415.26|1995-08-17|3-MEDIUM|Clerk#000000495|0|ly about the carefully final dependencies. slyly regular reques| +30121|160558|O|86611.89|1998-02-11|1-URGENT|Clerk#000003884|0|s. frays after the qu| +30122|746413|F|121664.83|1993-05-15|3-MEDIUM|Clerk#000002309|0|kages cajole blithely ironic, final hockey players. regul| +30123|460606|O|134828.74|1998-04-12|3-MEDIUM|Clerk#000001224|0|r deposits. slyly final acco| +30124|643565|O|132300.85|1998-03-23|4-NOT SPECIFIED|Clerk#000002593|0|he excuses snooze quickly regular, ironic pearls: fina| +30125|645979|O|123908.52|1996-10-15|2-HIGH|Clerk#000003565|0| slyly unusual accounts. carefully regul| +30126|709196|O|218559.62|1995-06-08|4-NOT SPECIFIED|Clerk#000002597|0|ourts. slyly express packages above the gifts haggle according | +30127|444638|O|316564.26|1996-12-21|3-MEDIUM|Clerk#000001282|0|s are carefully alongside of the express dolphins. furiously regular pint| +30152|29695|O|189656.99|1997-12-22|3-MEDIUM|Clerk#000004212|0|kly bold warthogs: blithely special instructions around the stealthily | +30153|305926|O|105057.39|1996-09-30|2-HIGH|Clerk#000003646|0|ideas cajole slyly around the thin accounts. carefull| +30154|442613|O|35746.17|1996-03-28|2-HIGH|Clerk#000001857|0|tes grow quickly. furiously regular theodoli| +30155|484060|O|291573.98|1995-07-10|4-NOT SPECIFIED|Clerk#000003532|0|s nag; quiet, final sentiments sleep. carefully even requests se| +30156|340276|O|51773.27|1995-10-06|2-HIGH|Clerk#000000529|0|ly blithely pending deposits. quickly ruthless pinto beans integr| +30157|251834|O|327713.15|1998-04-29|2-HIGH|Clerk#000003622|0| unusual, even requests. slyly bold excuses haggle furiously even| +30158|310153|O|289684.47|1995-11-07|3-MEDIUM|Clerk#000002064|0|ole carefully even accounts. final theodolites| +30159|224615|O|28219.39|1997-05-22|3-MEDIUM|Clerk#000004525|0|ajole regular packages. carefully ironic deposi| +30184|344644|F|108110.59|1994-10-01|3-MEDIUM|Clerk#000004340|0|y special ideas cajole blithely against the deposits. slyly unus| +30185|154832|O|125918.17|1996-04-26|5-LOW|Clerk#000003350|0|the ironic requests. ideas use blithely. slyly ironic as| +30186|510769|O|211565.78|1997-10-18|2-HIGH|Clerk#000001200|0|excuses detect slyly. regular accounts haggle sly| +30187|732631|F|23757.13|1993-04-16|4-NOT SPECIFIED|Clerk#000003164|0| quick foxes sleep blithely. silent requests nag furiously. carefully iro| +30188|546382|F|262393.05|1992-06-10|2-HIGH|Clerk#000002055|0|ts nag alongside of the ironic packages. unusual, final asymptotes cajole i| +30189|28693|F|86194.79|1992-04-10|4-NOT SPECIFIED|Clerk#000001452|0|e regular theodolites. ironic accounts boost; fo| +30190|713294|O|17150.36|1997-10-08|4-NOT SPECIFIED|Clerk#000003985|0|e carefully according to the ironic, | +30191|321400|O|99306.37|1996-05-23|5-LOW|Clerk#000000666|0| even instructions. silent, final d| +30216|251102|F|62369.89|1992-03-03|5-LOW|Clerk#000003900|0|al, ironic requests. bold requests above the foxes| +30217|15646|F|87456.76|1994-11-18|2-HIGH|Clerk#000001905|0|fily above the furiously regular packages. regular| +30218|460919|O|102877.55|1998-02-04|4-NOT SPECIFIED|Clerk#000003515|0|y bold courts integrate. pending de| +30219|649165|F|134419.40|1995-05-21|4-NOT SPECIFIED|Clerk#000002898|0| unusual dolphins wak| +30220|243394|O|56322.29|1996-09-13|4-NOT SPECIFIED|Clerk#000001286|0|refully even accounts. fluffily express pinto beans s| +30221|195380|O|189784.02|1997-08-21|4-NOT SPECIFIED|Clerk#000000509|0|lar packages engage fluffily blithely ironic dolphins. furiously ironic| +30222|245153|O|210000.25|1998-05-08|3-MEDIUM|Clerk#000004615|0|ickly careful accounts are according to the pending deposi| +30223|532414|O|79778.30|1998-01-18|5-LOW|Clerk#000003887|0|foxes. furiously sly sheaves sleep quickly furiously pending instruct| +30248|14047|F|91611.62|1993-06-16|4-NOT SPECIFIED|Clerk#000002624|0|latelets detect after the quickly careful | +30249|554995|O|186433.23|1997-07-10|4-NOT SPECIFIED|Clerk#000000517|0|regular requests use car| +30250|23623|O|46583.04|1997-02-15|5-LOW|Clerk#000004734|0|ular, unusual foxes. carefully regular foxes beyond| +30251|269557|O|130103.93|1995-04-26|2-HIGH|Clerk#000003403|0|s detect. carefully ironic deposits wake blithely a| +30252|431434|O|148380.55|1998-06-22|2-HIGH|Clerk#000001140|0| haggle furiously furiously ironic foxes. quickly re| +30253|100988|F|57391.39|1995-01-06|3-MEDIUM|Clerk#000003549|0|y regular Tiresias. slyly even accounts about the furiously| +30254|44161|F|362171.24|1995-02-24|2-HIGH|Clerk#000004673|0|furiously bold deposits are even, regular deposits. express accounts wake| +30255|433208|O|238551.14|1997-08-01|1-URGENT|Clerk#000002673|0|fily final deposits. fluffily r| +30280|674068|F|155012.42|1994-11-11|4-NOT SPECIFIED|Clerk#000004639|0|r pinto beans cajole regular in| +30281|308512|F|29664.28|1992-10-23|4-NOT SPECIFIED|Clerk#000002700|0|sleep quickly. slyly final instructions poach after the| +30282|390109|F|231872.60|1994-04-12|1-URGENT|Clerk#000000946|0| to the slyly special re| +30283|50950|O|142039.13|1997-03-06|3-MEDIUM|Clerk#000002986|0|blithely even tithes. carefully permanent theodolites above the boldly| +30284|549338|F|78890.28|1994-09-16|2-HIGH|Clerk#000000541|0|ing deposits. carefully final pinto bea| +30285|216460|O|213624.07|1997-01-24|3-MEDIUM|Clerk#000000492|0|y ironic requests. furiously express requests alongside | +30286|521528|F|174728.08|1992-01-23|2-HIGH|Clerk#000000726|0|ct blithely permanently express deposits. quietly regular wartho| +30287|61357|F|196575.15|1994-11-22|4-NOT SPECIFIED|Clerk#000002659|0|carefully even packages integrate somas. requests nag slyly. fluff| +30312|717928|O|264603.90|1998-02-21|5-LOW|Clerk#000001311|0|y across the final packages. final deposits use fluffily from the blithe| +30313|206525|O|200253.90|1997-10-19|5-LOW|Clerk#000003754|0|xes sleep slyly; express, stea| +30314|51068|F|281030.99|1992-05-05|4-NOT SPECIFIED|Clerk#000002262|0|totes. always final packages solve accordi| +30315|291458|O|232127.37|1995-11-12|2-HIGH|Clerk#000000201|0|riously even packages. pinto beans above the carefully regular account| +30316|279284|O|303652.88|1996-01-12|3-MEDIUM|Clerk#000000310|0|egular requests shall have to are quickly against the slyly final| +30317|422437|O|127215.58|1996-05-17|5-LOW|Clerk#000001071|0|fily bold, enticing requests. | +30318|386612|F|80232.00|1992-08-21|5-LOW|Clerk#000003391|0|es. final, regular instruction| +30319|524155|O|137175.74|1997-08-26|3-MEDIUM|Clerk#000000116|0|sts sleep according to| +30344|718333|O|154154.72|1996-02-26|1-URGENT|Clerk#000004557|0|ffy accounts wake fluffily. pending, bold pi| +30345|264157|O|69697.53|1997-09-30|4-NOT SPECIFIED|Clerk#000000841|0|ackages sleep slyly final excuses. dogged package| +30346|427057|F|44010.21|1995-01-20|2-HIGH|Clerk#000004108|0|nstructions; regula| +30347|46778|O|47881.89|1998-06-13|3-MEDIUM|Clerk#000001720|0|final excuses wake package| +30348|184823|O|203063.14|1996-01-20|4-NOT SPECIFIED|Clerk#000002942|0|bold accounts haggle quickly special accounts. blithely regular decoys ha| +30349|563665|O|243069.25|1997-10-09|4-NOT SPECIFIED|Clerk#000004984|0|r deposits. bold packages wake quickly even asymptotes. carefully spec| +30350|257794|F|369363.49|1992-10-13|3-MEDIUM|Clerk#000004215|0|ly final asymptotes.| +30351|722050|F|81559.38|1992-09-25|4-NOT SPECIFIED|Clerk#000003656|0|resias sleep. bold accou| +30376|481885|F|140464.01|1994-11-19|4-NOT SPECIFIED|Clerk#000001215|0|uickly ironic warhorses. final foxes sleep bravely regular pinto bea| +30377|524911|F|167142.30|1994-05-01|2-HIGH|Clerk#000001878|0| requests are regular instructions. qu| +30378|669139|O|204778.97|1996-01-01|5-LOW|Clerk#000002391|0|ely packages. carefully final packages wake furiously. ironic account| +30379|713471|O|81040.62|1998-07-25|3-MEDIUM|Clerk#000003235|0|inal, regular theodolites sleep f| +30380|306134|O|173387.31|1995-08-16|3-MEDIUM|Clerk#000004402|0| excuses thrash. quickly silent deposits | +30381|185830|O|130683.61|1997-07-27|1-URGENT|Clerk#000002445|0|hely about the furiously busy packages-- theodoli| +30382|211768|F|201692.45|1994-06-29|3-MEDIUM|Clerk#000000613|0|eve slyly even dependencies? ironic packages doze at| +30383|403081|F|197737.96|1994-07-06|1-URGENT|Clerk#000003141|0| ideas cajole carefully about the carefully | +30408|557729|F|202562.03|1992-10-08|4-NOT SPECIFIED|Clerk#000004887|0|n among the ironic pac| +30409|239324|O|291965.32|1997-07-24|3-MEDIUM|Clerk#000004449|0|ly. carefully silent foxes wake after the carefully pending a| +30410|53621|F|162133.31|1993-07-28|5-LOW|Clerk#000003837|0| ideas detect deposits; carefully final foxes about the quickly close dep| +30411|453361|F|154796.40|1994-03-06|4-NOT SPECIFIED|Clerk#000004871|0|r packages haggle above the dependencies? final dependencies are | +30412|373411|O|6685.83|1996-05-05|1-URGENT|Clerk#000001845|0|slyly ironic instructions. | +30413|659078|O|70008.00|1997-03-26|1-URGENT|Clerk#000003721|0|riously bold requests. blithely special deposits detect. final dolphins sl| +30414|358784|O|92684.24|1996-03-15|2-HIGH|Clerk#000004918|0|uests cajole blithely| +30415|76022|O|75820.83|1997-01-29|2-HIGH|Clerk#000001738|0|carefully even accounts detect quickly fluffily pending theodol| +30440|442639|F|49541.81|1993-07-20|4-NOT SPECIFIED|Clerk#000000387|0|d have to unwind express accounts. carefully final dolp| +30441|162655|P|252871.47|1995-03-27|3-MEDIUM|Clerk#000001911|0|; instructions about the final requests use| +30442|711283|O|146116.78|1997-03-15|1-URGENT|Clerk#000002194|0|ts wake furiously ironic gifts. | +30443|277192|O|242014.93|1998-06-27|3-MEDIUM|Clerk#000000935|0| express accounts. even ideas are. slyly final accounts| +30444|502664|F|96452.63|1993-05-26|3-MEDIUM|Clerk#000003453|0|quests around the bold packages wake according to| +30445|273646|O|120645.07|1997-03-20|1-URGENT|Clerk#000004973|0|al foxes. fluffily regular accounts boost slyly ironic deposits. ev| +30446|151825|F|120144.83|1992-02-03|2-HIGH|Clerk#000002652|0|e quickly regular foxes. frets do| +30447|197389|O|215510.04|1996-04-09|3-MEDIUM|Clerk#000002717|0|sual deposits. specia| +30472|259543|O|182362.72|1997-02-08|1-URGENT|Clerk#000001238|0|iously ironic requests sleep. excuses was quickly regular, final theodolites| +30473|121879|O|83119.68|1997-05-20|1-URGENT|Clerk#000004573|0|accounts sleep alongside of the deposits.| +30474|149770|O|137352.37|1997-10-29|3-MEDIUM|Clerk#000002544|0|c accounts? slyly final deposits above the blithely| +30475|157087|F|179255.91|1993-06-03|1-URGENT|Clerk#000004399|0|ronic deposits; blithely unusual instructions detect accounts. slyly bli| +30476|132223|F|33651.48|1992-06-12|5-LOW|Clerk#000004643|0|gouts. sometimes regular foxes n| +30477|18907|O|120690.26|1995-08-29|2-HIGH|Clerk#000002399|0|sometimes alongside of the final depths. carefully ironic deposits boost silen| +30478|514948|O|111527.24|1997-08-18|1-URGENT|Clerk#000000845|0|nto beans dazzle furiously. regular pinto beans detect slyly along the t| +30479|471802|F|129802.88|1993-04-16|5-LOW|Clerk#000003077|0| hockey players wake furiously across the unusua| +30504|550181|F|99613.61|1994-08-17|5-LOW|Clerk#000002036|0| ideas. bold asymptotes maintain. fluffily bold deposits eat against th| +30505|135097|F|157891.20|1992-02-23|3-MEDIUM|Clerk#000000393|0|e furiously about the even requests. carefully even | +30506|317240|O|274610.62|1997-02-07|2-HIGH|Clerk#000001940|0|age quickly slyly fluffy asymptotes. sly| +30507|90808|O|85530.73|1996-04-28|1-URGENT|Clerk#000003899|0|beans affix slyly. ironic packages breach carefully regular ideas! final| +30508|709897|F|26448.01|1993-07-14|3-MEDIUM|Clerk#000004116|0|thely bold ideas sleep slyly about the blithely unusual ideas. foxes breach | +30509|212461|O|239207.97|1996-01-23|1-URGENT|Clerk#000001015|0|olites against the ideas affix q| +30510|76399|F|31047.33|1994-04-11|1-URGENT|Clerk#000002337|0|ilently ironic deposits doze slyly ironic excuses. furious| +30511|35642|O|151851.70|1996-05-11|4-NOT SPECIFIED|Clerk#000002055|0|pinto beans use blithely s| +30536|534775|O|229176.77|1996-06-23|1-URGENT|Clerk#000002544|0|are after the regular, spe| +30537|695440|O|57179.64|1998-01-25|1-URGENT|Clerk#000003522|0|ts cajole. final, unusual instructions w| +30538|250349|F|17533.77|1993-07-12|4-NOT SPECIFIED|Clerk#000004297|0|ages haggle carefully after the furio| +30539|101309|F|164448.89|1992-02-24|5-LOW|Clerk#000003855|0|into beans are carefully furiously ironic requ| +30540|194812|O|31419.73|1995-10-08|5-LOW|Clerk#000000544|0|y ironic packages. special theodolites along the carefully| +30541|451988|O|281996.09|1996-07-05|2-HIGH|Clerk#000003863|0|y final platelets cajole slyly requests. furiously | +30542|549295|F|39229.84|1994-05-02|1-URGENT|Clerk#000001191|0|ackages play blithely by the pending, final ideas. even accounts are b| +30543|230572|F|145708.32|1994-08-22|4-NOT SPECIFIED|Clerk#000003891|0|ounts wake. ironic notornis haggle instructions. finally final package| +30568|700807|O|151209.97|1996-02-17|1-URGENT|Clerk#000004175|0| blithely ironic pinto beans. ironic,| +30569|448628|O|123422.30|1997-04-26|2-HIGH|Clerk#000004341|0|lar warthogs. ironic ideas | +30570|336637|F|7284.53|1993-05-26|1-URGENT|Clerk#000002584|0|forges above the blithely express sentiments wake slyly even realms. f| +30571|584684|F|288558.59|1994-07-21|2-HIGH|Clerk#000002882|0|at the blithely even theod| +30572|280396|F|207751.87|1992-08-20|2-HIGH|Clerk#000000419|0|lets. special packages wake? special, express theodolites haggle | +30573|339091|F|100812.63|1992-07-30|3-MEDIUM|Clerk#000003430|0| final, pending foxes. daringly unusual requests nod-- packages affix | +30574|586267|F|176839.12|1993-12-07|2-HIGH|Clerk#000002216|0|s the fluffily even accounts. quickly| +30575|639109|F|50419.08|1992-04-20|1-URGENT|Clerk#000002146|0|odolites thrash slyly unusual requests. carefully unusual deposits x-ray thi| +30600|1358|O|30020.30|1997-11-03|5-LOW|Clerk#000004921|0|ole asymptotes! quickly regular r| +30601|320191|O|65949.07|1995-09-18|5-LOW|Clerk#000002557|0|ironic accounts. carefully even| +30602|184972|F|18543.20|1992-11-12|1-URGENT|Clerk#000004089|0|foxes grow carefully ironic instructions. | +30603|43300|O|136738.64|1996-07-24|2-HIGH|Clerk#000004984|0|excuses. pains up the furiously ironic d| +30604|223864|F|265402.83|1994-12-13|5-LOW|Clerk#000002182|0|ove the quickly final requests. carefully exp| +30605|472985|F|245639.38|1993-01-06|1-URGENT|Clerk#000004767|0|es are fluffily. ironic, even instructions doze pending, r| +30606|197170|O|168392.55|1996-02-16|5-LOW|Clerk#000004523|0|s use furiously carefully daring warhorses. final deposits c| +30607|318316|O|58396.46|1996-11-10|2-HIGH|Clerk#000001744|0|cross the carefully even deposits.| +30632|172363|O|231009.56|1997-07-10|1-URGENT|Clerk#000004493|0|. quickly ironic requests wake ruthlessly abov| +30633|394510|O|104803.58|1998-01-29|5-LOW|Clerk#000004241|0|al ideas. slyly express attainments s| +30634|523528|F|298743.68|1994-08-08|1-URGENT|Clerk#000000487|0|r the furiously regular ideas. blithely unusual packages against the | +30635|675562|F|17410.05|1994-06-04|4-NOT SPECIFIED|Clerk#000004144|0|ag blithely furiously express | +30636|663007|F|235397.48|1994-01-08|5-LOW|Clerk#000000933|0|ronic requests-- unusual idea| +30637|403918|F|28046.64|1993-09-07|3-MEDIUM|Clerk#000000116|0|ess, final packages hagg| +30638|386453|F|310719.82|1993-05-28|5-LOW|Clerk#000001761|0|s haggle blithely pending pint| +30639|113156|O|193449.57|1998-04-08|3-MEDIUM|Clerk#000001240|0|pecial requests. quickly express requests cajole furiously quickly iro| +30664|561329|F|122093.90|1993-04-01|1-URGENT|Clerk#000000478|0|e slyly regular orbits. slyly express deposits use| +30665|743288|F|37232.57|1993-08-28|3-MEDIUM|Clerk#000003565|0| express, idle requests! regularly ironic courts ha| +30666|432940|F|172565.14|1994-07-30|4-NOT SPECIFIED|Clerk#000000141|0|g pinto beans are slyly. ideas use q| +30667|671797|O|293809.74|1998-04-28|4-NOT SPECIFIED|Clerk#000003337|0| packages; bold, pending packages haggle. fluffily ironic| +30668|380896|F|184785.55|1992-08-01|4-NOT SPECIFIED|Clerk#000002313|0| across the fluffily final cour| +30669|444212|O|148298.53|1995-07-18|2-HIGH|Clerk#000004543|0|nal theodolites! slyly final multipliers above the r| +30670|368884|O|247409.55|1995-07-23|4-NOT SPECIFIED|Clerk#000004504|0|sly across the unusual packages. evenly ironic excuse| +30671|307057|F|44455.75|1994-09-12|3-MEDIUM|Clerk#000001790|0|ing to the furiously final requests boost furiously | +30696|674821|O|101452.87|1996-10-06|3-MEDIUM|Clerk#000004816|0|rding to the quickly even decoys. regular dependencies sleep unus| +30697|188681|O|64811.26|1998-07-22|1-URGENT|Clerk#000004962|0| wake carefully quickly even | +30698|145117|O|68054.70|1995-11-02|1-URGENT|Clerk#000000325|0|cross the regular p| +30699|714191|O|35226.44|1995-12-20|3-MEDIUM|Clerk#000003666|0| final requests integrate doggedly express dependencies| +30700|391624|F|99975.35|1994-04-22|1-URGENT|Clerk#000001058|0|. bold warthogs after the blithely busy theodolites nag fluffily speci| +30701|2701|F|120715.53|1992-01-17|2-HIGH|Clerk#000001897|0| blithe, quiet dolph| +30702|394807|O|142202.20|1998-08-02|2-HIGH|Clerk#000003231|0|s, silent requests. fluffily bold accounts bo| +30703|260110|O|208568.72|1996-08-09|1-URGENT|Clerk#000001207|0|ly ironic ideas. quickly special dependenci| +30728|641701|P|324772.90|1995-02-20|1-URGENT|Clerk#000001700|0|carefully even foxes. even instructions use furiously after | +30729|38551|F|227484.20|1993-10-10|3-MEDIUM|Clerk#000003164|0|ording to the final packages sleep regular requests. carefully| +30730|658786|O|82335.65|1995-11-23|4-NOT SPECIFIED|Clerk#000003996|0| excuses. carefully final sauternes boost blithely regul| +30731|697730|O|146214.91|1996-10-15|1-URGENT|Clerk#000004511|0|carefully unusual accounts. special accounts haggle quickly silent hockey pl| +30732|482425|F|109280.80|1993-04-05|4-NOT SPECIFIED|Clerk#000002091|0| dolphins. pending, regular requests ought to sleep fu| +30733|597356|F|303914.42|1994-11-18|4-NOT SPECIFIED|Clerk#000003314|0|e pending requests sleep| +30734|246223|F|284385.51|1992-12-09|4-NOT SPECIFIED|Clerk#000000472|0|solve slyly slyly special foxes. quickly even platelets use | +30735|487040|O|140786.51|1996-01-26|4-NOT SPECIFIED|Clerk#000004371|0|ously carefully special foxes. re| +30760|168812|P|88516.50|1995-04-28|5-LOW|Clerk#000002774|0|quests haggle fluffily quiet packages. excus| +30761|708946|F|197873.14|1994-09-01|2-HIGH|Clerk#000002384|0|carefully special instructions. furiously bold packages are furiousl| +30762|734947|O|215540.13|1996-03-22|3-MEDIUM|Clerk#000002061|0| furiously silent accounts: closely daring instructions cajole| +30763|477865|O|247144.47|1997-05-09|2-HIGH|Clerk#000003505|0|ously regular notornis sleep after the b| +30764|470494|F|198662.79|1993-08-02|2-HIGH|Clerk#000001250|0|ally among the quickly express deposits. special req| +30765|322417|P|214445.22|1995-05-18|5-LOW|Clerk#000003177|0|inal accounts believe quickly before the pending, ir| +30766|78989|O|291513.29|1997-04-20|5-LOW|Clerk#000003903|0|ffily final packages impress | +30767|64118|F|84880.01|1993-09-06|2-HIGH|Clerk#000004217|0|gle after the pending instructions. care| +30792|623158|O|34122.54|1996-07-19|2-HIGH|Clerk#000001125|0|ickly even accounts. blithely bold deposits after the sile| +30793|402772|O|244783.45|1998-06-19|5-LOW|Clerk#000003622|0|. carefully bold foxes among the fluffily| +30794|617890|O|210499.00|1996-05-05|4-NOT SPECIFIED|Clerk#000000893|0|tes according to the blithely iro| +30795|355291|F|187827.88|1993-03-05|1-URGENT|Clerk#000004982|0|eas x-ray blithely. regular requests sleep blithely. regular, ironic deposits| +30796|602255|O|134842.73|1998-02-14|5-LOW|Clerk#000000086|0|e hockey players nag furiously deposits. carefully final| +30797|95917|F|190556.48|1993-03-29|5-LOW|Clerk#000004724|0|. slyly ironic pinto beans use carefully along the final, unusu| +30798|314212|F|87554.44|1992-05-15|1-URGENT|Clerk#000004858|0|fully final pinto beans haggle slyly above th| +30799|200782|F|306884.01|1992-03-30|1-URGENT|Clerk#000001623|0|fully even, ironic asymptotes. blithely enti| +30824|277030|O|65231.06|1997-11-15|2-HIGH|Clerk#000000039|0|dly pending dolphins use carefully. slyly | +30825|27527|F|154722.56|1992-04-16|1-URGENT|Clerk#000004447|0|sleep slyly pending accounts. pending requests ca| +30826|631583|F|192173.03|1994-04-17|4-NOT SPECIFIED|Clerk#000000828|0|es. furiously special accounts sleep furiously agains| +30827|256438|O|88599.74|1998-04-23|2-HIGH|Clerk#000003822|0|e blithely pending deposits. furiously special ex| +30828|450778|F|170688.79|1992-03-12|2-HIGH|Clerk#000004467|0|ges. fluffily unusual packages haggle quickly furiously regular pac| +30829|473860|O|169878.94|1997-09-24|3-MEDIUM|Clerk#000001320|0|ely final packages are f| +30830|642679|O|200297.13|1997-12-08|1-URGENT|Clerk#000002522|0|n theodolites. furiously final dolphins are. special deposits a| +30831|737926|F|204320.30|1993-01-06|5-LOW|Clerk#000002952|0|cajole. furiously bold epitaphs about the | +30856|302105|F|143903.05|1994-09-01|1-URGENT|Clerk#000000227|0|ly final asymptotes cajole slyly fluffy courts. fu| +30857|713359|F|250790.33|1994-02-09|2-HIGH|Clerk#000001774|0|es. regular, final accounts print furiously about | +30858|669887|O|198920.36|1998-04-28|3-MEDIUM|Clerk#000004743|0| quickly ironic ideas. slyly regular dependencies haggle fur| +30859|533317|O|66825.23|1997-05-04|3-MEDIUM|Clerk#000001227|0|ly even instructions. slyly final accounts are about the caref| +30860|200755|F|20624.94|1992-07-22|4-NOT SPECIFIED|Clerk#000001549|0|e slyly final platelets. pending, even accounts sleep slyly. foxes beli| +30861|582148|F|119945.55|1993-06-09|3-MEDIUM|Clerk#000001257|0|eodolites affix furiously. fluffily pending packages haggle. sa| +30862|393497|O|227586.06|1995-11-04|3-MEDIUM|Clerk#000004915|0|heodolites doze slyly through the pending, regular ideas. permane| +30863|2648|F|11339.24|1992-05-02|4-NOT SPECIFIED|Clerk#000004277|0|lithely express requests. furiously ironi| +30888|248339|O|102122.07|1996-02-25|4-NOT SPECIFIED|Clerk#000001832|0|after the slyly ironic deposits. carefully regular packages are carefully. fin| +30889|79936|F|226225.01|1992-07-21|4-NOT SPECIFIED|Clerk#000001888|0|ccording to the quickly regular requests. always regular platelets across th| +30890|207872|F|299956.65|1993-03-22|4-NOT SPECIFIED|Clerk#000001440|0|of the blithely unusual grouches use carefully against the quick| +30891|188515|O|271623.31|1996-11-25|1-URGENT|Clerk#000004594|0|cajole furiously furiously even requests. ironic packages integrate according | +30892|351961|F|224276.98|1994-02-09|1-URGENT|Clerk#000002691|0|ular deposits. closely regular theodolites hagg| +30893|127211|O|86203.72|1998-03-22|3-MEDIUM|Clerk#000000896|0|. even theodolites hinder | +30894|530383|O|204418.40|1997-03-31|3-MEDIUM|Clerk#000002983|0|bout the accounts boost furious| +30895|377794|O|129561.38|1998-02-20|3-MEDIUM|Clerk#000000144|0|le blithely slyly express pinto bean| +30920|79063|O|40813.82|1995-08-01|2-HIGH|Clerk#000000068|0|ter the accounts. slyly ironic Tiresias along| +30921|556621|O|30542.44|1997-10-09|4-NOT SPECIFIED|Clerk#000001419|0|ronic dependencies. accounts play ideas. permanent, special c| +30922|365098|F|66815.91|1993-05-16|4-NOT SPECIFIED|Clerk#000000256|0|r foxes are above the unusual deposits. fluffily express waters cajol| +30923|420316|F|128557.83|1993-09-14|4-NOT SPECIFIED|Clerk#000001322|0|final excuses about the furiously regular accounts detect stealthily furi| +30924|724858|F|214451.18|1994-06-13|2-HIGH|Clerk#000002956|0|al accounts cajole blithely behind the blithely spec| +30925|432751|F|170802.07|1992-10-09|4-NOT SPECIFIED|Clerk#000003402|0|s cajole quickly among the slyly special dolphins. special asympt| +30926|484238|O|179904.51|1997-10-08|3-MEDIUM|Clerk#000004071|0|packages! packages cajo| +30927|328621|O|69154.70|1995-02-25|2-HIGH|Clerk#000001733|0|e blithely against the careful| +30952|108365|F|117291.46|1993-10-14|2-HIGH|Clerk#000002694|0|y even packages haggle ironic attainments| +30953|279229|O|144358.80|1996-04-27|3-MEDIUM|Clerk#000001360|0|dolphins sleep even, unusual epitaphs. furiously | +30954|219151|O|84188.91|1995-12-06|4-NOT SPECIFIED|Clerk#000003554|0|uickly furiously unusual platelets. slyly unusual platelets de| +30955|742096|O|146347.50|1995-12-09|5-LOW|Clerk#000001180|0| ironic, final deposits after the fluffily ironic packages sleep blithely afte| +30956|645688|F|108466.49|1994-09-16|3-MEDIUM|Clerk#000002753|0|y ironic braids wake. bl| +30957|318340|O|282314.60|1997-12-03|4-NOT SPECIFIED|Clerk#000002291|0|cajole furiously across the quickly silent| +30958|567188|F|146595.74|1994-01-30|3-MEDIUM|Clerk#000003389|0|ithely final ideas haggle quickly above t| +30959|212846|O|50521.02|1995-09-27|1-URGENT|Clerk#000001796|0|jole blithely among the| +30984|550822|F|121174.74|1995-02-27|1-URGENT|Clerk#000002551|0|ole carefully even packages! even requests according to the blithely unusual| +30985|407417|F|176713.20|1994-05-08|1-URGENT|Clerk#000003076|0|ar accounts detect carefully. regul| +30986|704600|O|267033.38|1997-07-23|3-MEDIUM|Clerk#000003916|0|ly slyly even pinto beans. furiously final pinto beans wake theodolites.| +30987|456950|O|275883.59|1995-12-31|3-MEDIUM|Clerk#000001475|0|express packages. accounts along the furi| +30988|693253|F|38444.70|1994-09-21|3-MEDIUM|Clerk#000004386|0|the even instructions. carefully bold r| +30989|230393|F|303687.09|1993-09-27|1-URGENT|Clerk#000002941|0| the Tiresias. furiously unusual deposits| +30990|706411|F|4939.59|1992-10-29|3-MEDIUM|Clerk#000000753|0|ole carefully unusual, silent sentiments. r| +30991|130502|F|236049.04|1994-12-25|4-NOT SPECIFIED|Clerk#000002328|0|cies use quickly accord| +31016|345746|O|234078.44|1998-06-05|2-HIGH|Clerk#000003700|0|. express packages are regular requests. carefully pending theodolites cajo| +31017|688936|O|203433.47|1997-04-25|4-NOT SPECIFIED|Clerk#000000885|0| beans nag furiously regular deposits. platelets cajole around| +31018|420676|O|96543.50|1997-08-19|4-NOT SPECIFIED|Clerk#000001920|0|dolites detect slyly! fur| +31019|38044|F|176075.75|1993-05-03|4-NOT SPECIFIED|Clerk#000003835|0|r packages cajole carefully. theodolites sleep ca| +31020|401449|O|134766.99|1996-03-20|4-NOT SPECIFIED|Clerk#000002617|0|usly special hockey players | +31021|122410|F|109217.24|1994-05-30|3-MEDIUM|Clerk#000000682|0| the ironic, unusual accounts. | +31022|68948|F|52932.25|1994-07-09|5-LOW|Clerk#000002955|0|ual gifts mold busily. blithely even ideas main| +31023|46780|F|252770.50|1992-08-27|2-HIGH|Clerk#000001821|0| packages wake blithely under| +31048|197866|P|107913.05|1995-03-12|4-NOT SPECIFIED|Clerk#000000744|0| packages. slyly express packages eng| +31049|21389|O|281552.12|1998-03-23|4-NOT SPECIFIED|Clerk#000001409|0|totes since the pinto beans use carefully against the blithely expr| +31050|224063|F|162677.16|1994-07-19|3-MEDIUM|Clerk#000000698|0|regular instructions atop the carefully even excuses wake slyly unusual realms| +31051|62495|O|209391.73|1996-05-31|5-LOW|Clerk#000001346|0|ts use furiously. iro| +31052|338486|P|299840.60|1995-05-23|1-URGENT|Clerk#000001001|0|lent theodolites. closely regular dugouts haggle slyly iron| +31053|170395|P|137397.44|1995-04-13|4-NOT SPECIFIED|Clerk#000003397|0|beans sleep special ideas. enticing,| +31054|318992|O|225336.58|1998-04-09|4-NOT SPECIFIED|Clerk#000003541|0|tes detect even deposits. pending, bold requests sleep blithely along the | +31055|291523|F|250210.36|1994-10-22|5-LOW|Clerk#000003511|0|ts grow blithely furiously final accounts. bold, fi| +31080|603595|F|194191.64|1993-10-06|4-NOT SPECIFIED|Clerk#000001713|0|hely furiously bold deposits. express accounts around the depend| +31081|101540|O|164970.46|1998-05-01|3-MEDIUM|Clerk#000001965|0|ar pinto beans haggle bold pinto beans. iron| +31082|317980|F|12277.77|1993-05-07|3-MEDIUM|Clerk#000002413|0|ain furiously among the caref| +31083|510464|F|113592.29|1994-11-24|4-NOT SPECIFIED|Clerk#000001513|0|instructions. evenly quiet instructions believe blithely unusua| +31084|111478|O|76959.17|1996-08-23|3-MEDIUM|Clerk#000000134|0| pinto beans. quickly blithe packages | +31085|103747|O|229342.92|1997-10-11|4-NOT SPECIFIED|Clerk#000003724|0|s cajole carefully slyly final requests. deposits are ent| +31086|647437|F|117074.89|1993-07-18|1-URGENT|Clerk#000002151|0|ainst the slyly reg| +31087|448733|O|38980.21|1995-09-01|1-URGENT|Clerk#000004279|0|lithely express foxes x-ray. quickly reg| +31112|593860|P|114910.01|1995-03-06|1-URGENT|Clerk#000001529|0|eans wake according to the regular accounts; si| +31113|738106|F|71786.28|1993-02-12|3-MEDIUM|Clerk#000000598|0|he carefully regular waters detect ironic packages. furiously regular p| +31114|320966|O|173887.07|1997-03-29|3-MEDIUM|Clerk#000003073|0|pendencies detect abo| +31115|468611|F|187966.35|1995-04-03|5-LOW|Clerk#000003450|0|f the regular accounts use | +31116|183016|F|112037.34|1992-12-05|1-URGENT|Clerk#000003987|0|t quickly alongside of the quickly speci| +31117|169379|O|225353.71|1998-07-06|1-URGENT|Clerk#000004699|0|ctions cajole slyly. asy| +31118|490858|O|248860.69|1998-04-21|2-HIGH|Clerk#000003468|0|ld deposits cajole regu| +31119|599611|F|139292.33|1992-04-02|4-NOT SPECIFIED|Clerk#000003431|0|ial platelets can nag. slyly enticing request| +31144|639788|O|103916.39|1997-09-22|5-LOW|Clerk#000002186|0|arefully final requests. slyly regular theodolites across t| +31145|150454|F|233031.10|1994-01-05|4-NOT SPECIFIED|Clerk#000001843|0|cuses boost slyly about the slyly ironic requests. furiously even depen| +31146|411314|O|71253.20|1995-10-05|3-MEDIUM|Clerk#000001109|0|ial requests. regular, special r| +31147|203341|F|165460.53|1993-02-18|4-NOT SPECIFIED|Clerk#000003492|0|r foxes sleep before the furiously regular deposits. special | +31148|522472|F|136203.19|1992-05-18|1-URGENT|Clerk#000002328|0|ular packages are idly among the slyly ironic deposits. requests sleep above | +31149|156004|F|66357.99|1992-12-28|4-NOT SPECIFIED|Clerk#000003841|0|nic deposits. final requests haggle unusual accounts: carefu| +31150|699433|F|4825.98|1993-06-27|2-HIGH|Clerk#000003478|0|uietly special, regular forges. regular foxes a| +31151|610120|O|293275.84|1995-11-24|1-URGENT|Clerk#000000733|0|al dependencies can cajole slyly exp| +31176|260137|F|102569.13|1992-12-30|3-MEDIUM|Clerk#000001172|0|the ironic requests poach against the carefully pending accounts. pa| +31177|368519|F|118437.02|1994-12-20|5-LOW|Clerk#000000152|0| boost furiously. furiously ironic deposits wake final, regular ins| +31178|195409|O|140471.11|1996-03-21|5-LOW|Clerk#000001247|0|. furiously ironic accounts during t| +31179|724139|O|183465.35|1995-08-22|5-LOW|Clerk#000001548|0|ess foxes. final requests da| +31180|342355|O|178056.33|1995-11-06|3-MEDIUM|Clerk#000001286|0|ornis nod quickly above the even requests: | +31181|693172|F|224380.42|1995-01-14|1-URGENT|Clerk#000004529|0|tes integrate alongside of the platelets: slyly i| +31182|381043|F|138010.69|1995-03-23|4-NOT SPECIFIED|Clerk#000000933|0|into beans. quickly| +31183|677704|O|235514.92|1995-11-30|4-NOT SPECIFIED|Clerk#000002082|0|ular dependencies are according to th| +31208|650200|O|357056.95|1998-02-16|2-HIGH|Clerk#000000765|0|posits are carefully alongside of the regular, regular pack| +31209|382513|F|376813.40|1993-06-04|2-HIGH|Clerk#000000407|0|ainst the regular requests. quickly regular deposits solve quickly ab| +31210|639958|F|181060.32|1994-10-14|1-URGENT|Clerk#000001924|0|ans are furiously even pinto| +31211|3142|O|94809.37|1996-04-01|2-HIGH|Clerk#000001376|0|gle closely bold platelets. express, regular deposits affix fu| +31212|290479|F|271829.50|1994-07-13|3-MEDIUM|Clerk#000002215|0|bold, bold packages sleep. exp| +31213|326464|O|43202.98|1997-08-01|2-HIGH|Clerk#000004769|0|ound the packages are against the packag| +31214|619606|F|49085.20|1994-09-02|1-URGENT|Clerk#000001158|0|ns. regular requests kindle. blith| +31215|715739|F|81876.53|1995-01-16|1-URGENT|Clerk#000001818|0|ickly pending packages| +31240|165973|O|328303.29|1995-09-07|2-HIGH|Clerk#000000992|0|ch. fluffily quick accounts im| +31241|231595|F|57094.38|1995-02-10|3-MEDIUM|Clerk#000002925|0|posits. blithely regu| +31242|662842|O|18279.55|1998-03-01|1-URGENT|Clerk#000004223|0|kages sleep slyly. slyly final ideas according to the pending| +31243|620558|F|93078.39|1992-02-06|5-LOW|Clerk#000002683|0|totes sublate blithely. quickly unusual asymptotes along the carefu| +31244|201901|F|317069.97|1994-12-20|1-URGENT|Clerk#000003975|0|y to sleep blithely according to the slyly r| +31245|330878|O|199375.78|1996-05-06|5-LOW|Clerk#000001892|0| bold attainments nag| +31246|551725|O|324430.37|1995-07-06|2-HIGH|Clerk#000003504|0|posits. theodolites are afte| +31247|568934|O|59304.66|1998-06-10|2-HIGH|Clerk#000002843|0|ackages affix. slyly final sheaves after the q| +31272|311614|O|35336.73|1997-01-23|3-MEDIUM|Clerk#000001823|0| regular packages. idle, special packages against the carefully bold foxes| +31273|33292|F|65315.87|1993-06-05|1-URGENT|Clerk#000000633|0|ggle fluffily quickly regular packages. slyly| +31274|31570|O|184803.36|1998-07-31|5-LOW|Clerk#000000799|0|latelets. blithely even foxes abo| +31275|319561|O|212606.65|1998-01-10|1-URGENT|Clerk#000000204|0|, regular ideas cajole furiously. slyly eve| +31276|105737|F|15139.24|1994-12-31|3-MEDIUM|Clerk#000004132|0| quiet accounts. even packages wake express instructions. notornis| +31277|357595|O|215386.63|1997-11-19|4-NOT SPECIFIED|Clerk#000000719|0|he even, final excuses. flu| +31278|335528|O|86930.73|1997-04-26|1-URGENT|Clerk#000004477|0|kages. carefully ironic warhorses wake ironic packages-- regular instr| +31279|711697|O|208545.44|1998-06-18|3-MEDIUM|Clerk#000004283|0|lthy, final requests according to the quickly bold asymptotes| +31304|462944|P|212703.88|1995-04-29|5-LOW|Clerk#000001808|0|regular deposits haggle about the blithely final requests. final i| +31305|185131|F|186579.00|1992-10-16|2-HIGH|Clerk#000003652|0|the blithely ironic packages. regular, regular accounts play sly| +31306|476992|O|233807.65|1997-03-17|2-HIGH|Clerk#000000869|0|sits. regular requests about the carefully regular requests are regu| +31307|24685|F|111710.07|1994-10-03|1-URGENT|Clerk#000001022|0|ide of the fluffily regular pack| +31308|121486|O|230001.58|1996-07-17|2-HIGH|Clerk#000003609|0|. furiously silent deposi| +31309|297344|F|114044.72|1993-03-17|1-URGENT|Clerk#000003339|0|nic requests. blithe| +31310|201901|O|168724.96|1997-02-03|5-LOW|Clerk#000001343|0|nag. blithely even pinto beans wake furiou| +31311|348452|O|170868.40|1997-03-15|1-URGENT|Clerk#000004808|0|use! regular ideas | +31336|419827|F|140115.70|1995-01-19|2-HIGH|Clerk#000000802|0|ve the carefully regular packages. wa| +31337|30685|O|88993.49|1997-07-11|1-URGENT|Clerk#000004585|0| ironic packages believe car| +31338|460486|F|250026.19|1994-01-02|5-LOW|Clerk#000000356|0|ntly bold, ironic frets! requests unwind along the carefully silent packages. | +31339|112124|F|82318.10|1993-10-28|3-MEDIUM|Clerk#000001614|0| slyly pending theodolites engage carefully along the slyly e| +31340|454423|O|318833.30|1998-03-21|1-URGENT|Clerk#000002297|0|usly careful platelets beneath the ideas haggle| +31341|208247|O|44553.46|1997-08-11|3-MEDIUM|Clerk#000003797|0|ermanently regular dolphins| +31342|496459|F|148991.60|1992-11-10|2-HIGH|Clerk#000004026|0|ckly express asymptotes cajole enticingly alongside of the blithe| +31343|217675|O|220942.88|1996-09-04|4-NOT SPECIFIED|Clerk#000004716|0|ve slyly among the quickly regular instructions? ironic| +31368|688426|O|188882.01|1996-10-06|2-HIGH|Clerk#000001926|0|e of the special platelets. pending, daring grouches according to th| +31369|115612|F|36246.13|1995-01-29|1-URGENT|Clerk#000000849|0|against the special, sly sentiments serve carefully accor| +31370|562408|F|170729.40|1994-06-01|2-HIGH|Clerk#000004191|0|ructions are blithely about the blithely express deposits. even, pendi| +31371|117815|O|192808.03|1998-06-29|3-MEDIUM|Clerk#000004625|0|ructions sleep fluffily quickly | +31372|108665|F|28060.68|1993-10-23|5-LOW|Clerk#000002705|0|cies. slyly regular theodolites integrate carefully according to the un| +31373|72787|O|207656.63|1996-04-25|1-URGENT|Clerk#000004672|0|ironic, express accounts hinder. d| +31374|63271|F|99749.30|1992-08-24|3-MEDIUM|Clerk#000000780|0|al asymptotes. special pinto bean| +31375|613286|O|131018.49|1998-06-15|5-LOW|Clerk#000004246|0|, pending pains detect on the| +31400|238180|O|49080.95|1996-04-01|1-URGENT|Clerk#000003157|0| pending requests. slyly even deposits c| +31401|308296|O|181863.44|1996-03-21|5-LOW|Clerk#000002277|0|gular requests cajole. furiously bold foxes about t| +31402|514072|F|99197.64|1992-06-01|5-LOW|Clerk#000004503|0|grouches sleep blithely final re| +31403|745441|F|101085.19|1992-01-05|1-URGENT|Clerk#000004768|0|furious packages nag according to the carefully regular packages. bold| +31404|608611|P|160776.26|1995-03-21|1-URGENT|Clerk#000004469|0|lar theodolites. fluffily fi| +31405|409175|F|46977.71|1994-04-04|1-URGENT|Clerk#000004608|0|l deposits. furiously ironic pinto beans are carefully after th| +31406|249571|F|204262.72|1993-12-10|3-MEDIUM|Clerk#000003995|0|y furiously bold requests. regular | +31407|526000|O|164482.74|1998-05-11|2-HIGH|Clerk#000002260|0| about the special, final courts. e| +31432|215029|F|310807.12|1993-07-06|1-URGENT|Clerk#000003733|0|sly regular ideas sleep furiously fluffily unusual| +31433|474836|F|186261.12|1993-11-25|2-HIGH|Clerk#000004621|0|kages. instructions may cajole. carefully regular accounts unwind carefully| +31434|563456|O|104853.50|1996-08-12|1-URGENT|Clerk#000004077|0|ly pending dinos haggle. ironic, permanent accou| +31435|492167|O|30528.53|1997-06-20|2-HIGH|Clerk#000003128|0|e slyly regular packages. carefully expr| +31436|85888|O|48820.80|1995-07-06|3-MEDIUM|Clerk#000004978|0|even deposits. furiously special as| +31437|493240|F|3750.39|1993-12-09|2-HIGH|Clerk#000004228|0|heodolites wake. blithely final | +31438|124363|O|38621.60|1995-04-15|3-MEDIUM|Clerk#000000790|0|ts. blithely bold packages along the carefully ironic ide| +31439|660985|F|127815.70|1992-10-10|4-NOT SPECIFIED|Clerk#000000728|0|onic requests was quickly over the carefully silen| +31464|144835|O|48496.35|1995-05-29|5-LOW|Clerk#000002577|0|ts boost. furiously special accounts mold slyly bold | +31465|485158|F|146308.92|1994-05-12|5-LOW|Clerk#000003991|0| blithely deposits. furiously ironic pa| +31466|38134|F|135396.56|1992-06-17|1-URGENT|Clerk#000004903|0|r packages. realms engage. blithely even in| +31467|398200|F|189528.99|1992-12-08|1-URGENT|Clerk#000001104|0| final requests. carefully special package| +31468|283819|O|48534.67|1996-08-15|4-NOT SPECIFIED|Clerk#000004180|0|symptotes integrate f| +31469|119890|F|132206.50|1994-03-08|5-LOW|Clerk#000001426|0| carefully pending packages along the q| +31470|476596|O|58155.29|1997-05-07|5-LOW|Clerk#000004860|0|ests nag blithely slyly bold ideas. carefully r| +31471|134993|F|152639.94|1992-03-05|1-URGENT|Clerk#000004423|0| have to are carefully. ironic, pe| +31496|66238|F|125253.36|1994-07-31|3-MEDIUM|Clerk#000002167|0|about the quick dependencies. accounts about the fluffily regular sauternes| +31497|259930|P|90040.63|1995-04-23|1-URGENT|Clerk#000001034|0|fully ironic accounts boost carefully regu| +31498|625556|O|67213.84|1996-01-15|3-MEDIUM|Clerk#000004874|0|y regular ideas. regula| +31499|209797|O|85109.79|1997-12-16|3-MEDIUM|Clerk#000002000|0|ly above the fluffily regular packages. furiously regular f| +31500|279607|F|1196.75|1993-04-27|2-HIGH|Clerk#000003399|0|ake slyly ironic pinto bean| +31501|577927|O|229367.25|1996-09-17|4-NOT SPECIFIED|Clerk#000004524|0|carefully alongside of the pinto beans. carefully regular dinos hang sly| +31502|695744|O|257562.05|1996-11-13|2-HIGH|Clerk#000003880|0|alongside of the blithely special accounts. quickly even du| +31503|113470|F|185261.24|1993-08-25|2-HIGH|Clerk#000004301|0|quickly brave sentiments. carefull| +31528|586174|F|266845.63|1992-06-18|2-HIGH|Clerk#000002037|0|ely regular deposits sleep fluffily| +31529|575008|F|183967.03|1994-02-15|3-MEDIUM|Clerk#000002366|0| could have to cajole quic| +31530|391513|O|331790.59|1995-12-11|1-URGENT|Clerk#000000311|0|beans into the ruthlessly b| +31531|407650|F|73693.05|1992-10-21|2-HIGH|Clerk#000000049|0|al packages use sometimes. furiously ironic instructions un| +31532|91444|F|157174.81|1994-03-06|2-HIGH|Clerk#000004484|0|sits haggle carefully against the pending packages; furiousl| +31533|127711|F|173223.88|1995-01-31|2-HIGH|Clerk#000002668|0|he furiously bold waters. blithely pending accounts haggle. s| +31534|675736|F|27589.11|1992-08-01|4-NOT SPECIFIED|Clerk#000004745|0|deposits. furiously regular accounts wake carefully. blith| +31535|594673|F|103359.91|1992-06-11|2-HIGH|Clerk#000001773|0|rate. unusual accounts at the| +31560|163787|O|69172.82|1995-10-27|5-LOW|Clerk#000002878|0| across the special, ironic gifts detect slyly above the carefully| +31561|261785|O|320409.17|1998-01-22|3-MEDIUM|Clerk#000000051|0|y cajole about the blithely regular asymptotes. carefully pending deposits sle| +31562|313436|O|171534.10|1998-01-13|2-HIGH|Clerk#000004086|0|deas detect furiously. packages haggle fluffily alongside of the fl| +31563|658448|F|229032.49|1995-02-23|2-HIGH|Clerk#000002140|0|use fluffily along the blithely express deposits. theo| +31564|281716|O|248544.25|1995-10-18|2-HIGH|Clerk#000003442|0|the packages. special, iron| +31565|43400|F|270855.67|1993-10-03|5-LOW|Clerk#000001789|0|hins. blithely regular deposits nod blithely amon| +31566|418075|O|204278.12|1997-10-01|1-URGENT|Clerk#000002035|0|. blithely bold packages us| +31567|582790|F|113317.64|1992-09-25|2-HIGH|Clerk#000000069|0| deposits haggle. fluffily bold patterns ne| +31592|670390|F|99173.28|1993-05-31|3-MEDIUM|Clerk#000004390|0|es. furiously regular ideas x-ray. bold, r| +31593|740962|O|255747.76|1996-11-20|4-NOT SPECIFIED|Clerk#000002587|0| deposits serve blithely special hockey players; unusual sheaves nag against | +31594|326890|O|187960.32|1998-03-27|5-LOW|Clerk#000002487|0|ns cajole. slyly special accounts eat quick| +31595|279631|O|118636.00|1998-03-10|2-HIGH|Clerk#000003735|0|he pinto beans. slyly final dugo| +31596|245062|O|19426.71|1997-01-12|2-HIGH|Clerk#000004843|0|s deposits. regular instructions sleep fluffily ironic theodolites. b| +31597|495430|O|72921.89|1998-06-22|3-MEDIUM|Clerk#000001913|0|s cajole slyly. dinos sleep blithely express deposits. furiously unusual f| +31598|182638|O|274629.62|1996-04-14|4-NOT SPECIFIED|Clerk#000002462|0| slowly according to the regular accounts. blithely ironic packages | +31599|564893|F|120497.05|1992-05-29|5-LOW|Clerk#000004012|0|rts. carefully unusual packa| +31624|652802|O|75122.11|1996-03-28|5-LOW|Clerk#000003939|0|express patterns. slyly unusu| +31625|642446|O|12202.63|1998-06-24|2-HIGH|Clerk#000002770|0|ges. quickly final pinto beans according to the furiously final r| +31626|576887|O|113132.51|1995-11-13|4-NOT SPECIFIED|Clerk#000003990|0|lar foxes. ironic reque| +31627|482272|F|184948.47|1994-12-04|5-LOW|Clerk#000002404|0|ully regular theodolites. slyly even foxes are | +31628|277021|O|215611.26|1996-02-29|5-LOW|Clerk#000003157|0| theodolites. caref| +31629|638725|F|194875.69|1992-12-16|4-NOT SPECIFIED|Clerk#000004252|0|g thinly against the bold, final pinto beans. deposits| +31630|276026|O|185539.81|1997-05-08|2-HIGH|Clerk#000002541|0|egular, regular accounts wake furiously. busy, ironic ideas dazzle fluffily | +31631|407149|O|327372.26|1995-10-14|2-HIGH|Clerk#000001322|0|fully final excuses| +31656|676027|F|2412.63|1993-01-05|1-URGENT|Clerk#000003138|0|es. blithely final theodolites use after the quickly ironic courts. furiously| +31657|213712|O|127012.82|1995-08-20|4-NOT SPECIFIED|Clerk#000000799|0| quickly ironic instructions. quic| +31658|96769|O|67684.10|1995-09-09|4-NOT SPECIFIED|Clerk#000000829|0|rouches. carefully even sauternes | +31659|389896|F|270279.93|1993-05-22|5-LOW|Clerk#000000206|0|egular packages. decoys detect carefully. even, unusual reques| +31660|216635|O|243499.05|1995-06-30|3-MEDIUM|Clerk#000000935|0|ccounts sleep slyly regular accounts: unusual| +31661|471778|F|216002.79|1994-05-09|4-NOT SPECIFIED|Clerk#000000726|0| express, special instructions wake against the pend| +31662|157705|F|239604.53|1992-10-24|5-LOW|Clerk#000004054|0|ans. ironic dependencies sleep | +31663|28097|F|220598.71|1994-03-09|1-URGENT|Clerk#000004197|0|ly carefully final instructions. quickly regular dependencies | +31688|471542|O|5505.51|1995-07-03|3-MEDIUM|Clerk#000003146|0|lly final deposits against the silent | +31689|703993|O|216160.02|1995-08-21|3-MEDIUM|Clerk#000001856|0|ide of the slyly special asymptotes cajole regular packages. | +31690|748474|O|195833.14|1995-11-05|1-URGENT|Clerk#000002296|0|cording to the slyly bold instructions. blithely ironic acco| +31691|597185|O|79194.93|1998-06-18|2-HIGH|Clerk#000002495|0|posits wake careful| +31692|382985|O|119087.74|1997-07-04|4-NOT SPECIFIED|Clerk#000000045|0|deposits. blithely unusual braids wake pending package| +31693|327821|F|160935.48|1992-10-26|3-MEDIUM|Clerk#000004846|0|uests. fluffily unusual d| +31694|178615|F|63295.00|1992-02-12|4-NOT SPECIFIED|Clerk#000001925|0|around the unusual platelets. unusual accounts cajole since the carefully re| +31695|466094|O|44270.49|1997-10-08|2-HIGH|Clerk#000000371|0|ular dependencies. doggedly unusual sauternes sleep slyly. unusual courts| +31720|638167|F|210021.03|1994-07-11|2-HIGH|Clerk#000001471|0|s. regular deposits sleep among the blithely regular accou| +31721|659083|O|216086.46|1998-05-22|3-MEDIUM|Clerk#000000613|0|riously. blithely special foxes integrate finally according to the| +31722|444635|F|216936.01|1994-06-19|3-MEDIUM|Clerk#000002012|0|lites toward the slyly final packages haggle quickly furiously even instructio| +31723|729790|O|242663.89|1995-09-08|2-HIGH|Clerk#000000561|0|ers across the blithely regular accounts c| +31724|55220|O|229184.14|1997-10-09|1-URGENT|Clerk#000003382|0|ing packages. furiously ironic packages affix. slyl| +31725|325276|O|74222.39|1997-09-25|1-URGENT|Clerk#000003556|0|dependencies kindle quickly about the| +31726|151495|O|63230.75|1997-03-11|1-URGENT|Clerk#000003197|0| the bold foxes haggle carefully alongs| +31727|649987|F|289702.90|1993-09-07|5-LOW|Clerk#000001983|0|. blithely regular ideas cajole furiously blithely p| +31752|558583|O|234205.76|1997-02-27|2-HIGH|Clerk#000002535|0|lly unusual instruc| +31753|330157|F|159779.87|1992-01-06|3-MEDIUM|Clerk#000003682|0|sleep! special, even deposits according to the packages cajol| +31754|443749|O|114314.52|1996-10-03|4-NOT SPECIFIED|Clerk#000003232|0|kly final deposits. quickly ironic foxes use? carefully bold f| +31755|61111|F|205461.75|1992-08-18|4-NOT SPECIFIED|Clerk#000000937|0|ar ideas after the regular pinto beans nag accordi| +31756|335581|F|171050.04|1992-08-13|1-URGENT|Clerk#000001736|0| integrate blithely furiously even requests. carefully ironic warhorses wake a| +31757|109772|O|54340.79|1997-12-15|2-HIGH|Clerk#000001383|0| final sheaves integrate enticingly boldly regular| +31758|674134|F|229479.68|1994-05-24|5-LOW|Clerk#000004184|0|quickly ironic ideas among the ironic instructions sleep finally across the| +31759|645853|F|15024.15|1994-04-28|1-URGENT|Clerk#000001426|0|eposits among the sly| +31784|79630|O|244097.79|1996-03-12|3-MEDIUM|Clerk#000003132|0|ent theodolites boost furiously along| +31785|315178|P|131109.94|1995-05-17|3-MEDIUM|Clerk#000003399|0|. regular packages cajole furiously fluffily ironic pinto beans. s| +31786|688117|F|261528.51|1994-04-27|5-LOW|Clerk#000004418|0|he excuses. platelets sleep slyly. u| +31787|167056|F|244395.52|1993-06-15|2-HIGH|Clerk#000000775|0|s across the furiously dogged accou| +31788|428162|O|105071.29|1996-07-05|2-HIGH|Clerk#000001865|0|eposits cajole carefully quickly ironic courts. deposit| +31789|611021|F|311081.56|1992-12-06|1-URGENT|Clerk#000000551|0|ffily unusual requests: slyly regular theodolites integ| +31790|429637|F|204583.55|1992-05-27|4-NOT SPECIFIED|Clerk#000002047|0|e slyly final pains. ironically bold packages are quickly si| +31791|644077|F|234242.71|1993-06-10|3-MEDIUM|Clerk#000002680|0|lyly final pinto beans haggle furiously regula| +31816|239180|O|122275.91|1996-09-04|5-LOW|Clerk#000002518|0|s are blithely about the even, reg| +31817|635590|O|97353.66|1996-11-29|4-NOT SPECIFIED|Clerk#000000380|0| requests sleep. ironic dependencies within the qui| +31818|104105|O|74376.56|1997-08-16|2-HIGH|Clerk#000003503|0| are carefully. carefully final courts haggle even, even dep| +31819|680869|O|100690.70|1997-06-03|2-HIGH|Clerk#000002560|0| haggle ironic foxes. carefully even deposits lose carefully s| +31820|593644|F|189216.26|1992-07-03|3-MEDIUM|Clerk#000004458|0|fluffily. accounts poach. slyly regular foxes wa| +31821|109498|F|56352.25|1992-05-25|4-NOT SPECIFIED|Clerk#000004130|0|ounts thrash blithely furiously regular accounts. i| +31822|555295|O|261879.53|1996-03-11|2-HIGH|Clerk#000000992|0|old requests. express, unusual requests boost furiously. carefull| +31823|561535|F|155670.72|1994-08-09|4-NOT SPECIFIED|Clerk#000002373|0|ash furiously above the regular, even ideas. careful| +31848|459163|F|33674.30|1992-04-09|1-URGENT|Clerk#000002235|0|y among the blithel| +31849|383384|F|35906.75|1992-08-21|3-MEDIUM|Clerk#000000270|0|nly pending excuses sleep furiously after | +31850|277408|O|149316.91|1997-01-25|4-NOT SPECIFIED|Clerk#000003211|0|he final forges. blithely regular accounts use courts: blithely ev| +31851|392554|O|23852.56|1997-03-14|4-NOT SPECIFIED|Clerk#000000788|0|ithely final packages. fluffily regular accounts | +31852|651040|O|41737.79|1997-04-19|3-MEDIUM|Clerk#000003710|0|ent theodolites must have to sleep carefully against | +31853|263972|O|44185.73|1998-07-31|3-MEDIUM|Clerk#000001510|0| packages over the special deposits affix ab| +31854|315407|F|98762.50|1994-08-05|3-MEDIUM|Clerk#000000741|0|olphins use quickly around the carefully ironic packag| +31855|29510|O|71108.05|1997-06-15|1-URGENT|Clerk#000003331|0|ests. instructions sleep carefully ironic requests. unusual | +31880|214996|F|66328.50|1992-09-27|5-LOW|Clerk#000001720|0|ate. carefully even foxes at the regular, pending theodolites haggle| +31881|671639|F|198875.98|1995-01-12|3-MEDIUM|Clerk#000001087|0| accounts. furiously final ideas affix above the fluf| +31882|729323|O|244888.29|1997-10-17|3-MEDIUM|Clerk#000003532|0|egular accounts. furiously special requests sleep. ca| +31883|474475|F|327741.68|1992-11-25|3-MEDIUM|Clerk#000001296|0|sits. final warthogs haggle carefully final deposits? express deposits sleep | +31884|474625|F|148488.48|1993-07-10|4-NOT SPECIFIED|Clerk#000000578|0|l deposits cajole across the regular deposits. pinto bean| +31885|7022|F|34203.63|1995-02-13|3-MEDIUM|Clerk#000001005|0|unwind after the furiously pending requests. special depos| +31886|267976|F|87031.02|1994-04-30|4-NOT SPECIFIED|Clerk#000001327|0|s. carefully even foxes cajole always. express deposits abou| +31887|121093|O|104752.02|1996-12-12|5-LOW|Clerk#000000481|0|ar patterns across the | +31912|440905|F|114936.60|1993-08-14|3-MEDIUM|Clerk#000000122|0|s alongside of the slyly ironic pinto beans nag furiously around the s| +31913|267832|O|47016.69|1997-01-01|3-MEDIUM|Clerk#000003213|0|longside of the quickly bold ideas. reg| +31914|689150|P|123536.00|1995-03-10|2-HIGH|Clerk#000003733|0|sleep carefully even, regular foxes. carefu| +31915|283231|F|125040.36|1993-02-07|3-MEDIUM|Clerk#000002576|0|posits solve platelets. slyly regular platelets s| +31916|736829|O|106090.67|1996-01-18|2-HIGH|Clerk#000000686|0|nal foxes. ironic, regular cou| +31917|623107|F|243678.22|1994-12-18|4-NOT SPECIFIED|Clerk#000001282|0|y regular deposits. slyly bol| +31918|290179|O|104398.24|1996-12-21|4-NOT SPECIFIED|Clerk#000001022|0|eodolites integrate furiously regular accounts. regular in| +31919|516148|F|3374.01|1993-12-01|2-HIGH|Clerk#000001870|0|excuses detect. packages wake. quickly thin ideas play slyly. blith| +31944|370198|O|48942.89|1996-05-31|1-URGENT|Clerk#000000793|0|refully slyly bold packages. fluffily regular requests will are careful| +31945|654653|O|181548.81|1997-07-11|1-URGENT|Clerk#000000859|0|ts print slyly regular packages. regular, ironic dolph| +31946|238886|O|22481.88|1996-04-10|4-NOT SPECIFIED|Clerk#000001611|0| ideas boost blithely carefully express | +31947|203792|O|287555.36|1997-02-23|5-LOW|Clerk#000002574|0|efully express accounts-- th| +31948|619600|F|7734.26|1993-01-12|1-URGENT|Clerk#000000972|0|to boost furiously unusual acco| +31949|603679|O|45549.98|1997-10-15|3-MEDIUM|Clerk#000004083|0|eposits haggle blithely among the slyly unusual accounts. slyly clo| +31950|25037|F|231412.04|1994-04-17|4-NOT SPECIFIED|Clerk#000002936|0|old foxes. ironic, even theodolites sleep across | +31951|35692|O|131204.29|1998-06-15|3-MEDIUM|Clerk#000003506|0|lar theodolites was about the fluffily regular plat| +31976|595591|F|121198.76|1994-04-10|1-URGENT|Clerk#000000001|0|, pending deposits wake slyly amon| +31977|576061|F|38852.26|1992-02-15|1-URGENT|Clerk#000001260|0|nic theodolites. requests promise furiously about the ne| +31978|89531|O|165003.42|1998-01-19|1-URGENT|Clerk#000003115|0| slyly express dependencies. flu| +31979|234302|O|137518.91|1995-09-06|4-NOT SPECIFIED|Clerk#000004341|0|ular packages sleep unusual requests. regular packages| +31980|396992|O|186969.93|1996-11-03|5-LOW|Clerk#000002220|0| blithely. idle ideas haggl| +31981|233171|F|68494.36|1993-08-17|2-HIGH|Clerk#000001921|0|ously special theodolites ar| +31982|145057|F|245306.43|1993-05-13|4-NOT SPECIFIED|Clerk#000003344|0|s courts. carefully bold accounts maintain unusual requests? slyly even r| +31983|454672|O|231063.78|1996-03-12|5-LOW|Clerk#000004009|0|ckly final packages wake quickly regular, regular instruc| +32008|648100|O|309265.34|1996-08-25|4-NOT SPECIFIED|Clerk#000002545|0|egular foxes nag about the doggedly ironic dependencies. accounts nod | +32009|349994|O|268702.17|1997-09-11|4-NOT SPECIFIED|Clerk#000001999|0|g to the regular dependencies; regular requests along the blithel| +32010|93616|F|179640.27|1992-03-19|2-HIGH|Clerk#000002741|0| blithely according to the pinto beans. carefully bold deposits af| +32011|630539|O|212939.79|1997-06-19|5-LOW|Clerk#000001650|0|le carefully. fluffily ironic accounts af| +32012|705736|F|222361.93|1992-12-15|3-MEDIUM|Clerk#000003901|0|ests sleep furiously. final depend| +32013|27028|F|63518.80|1994-03-22|1-URGENT|Clerk#000004015|0| theodolites boost about the care| +32014|488389|O|114939.36|1995-06-11|1-URGENT|Clerk#000002307|0| haggle carefully carefu| +32015|343990|O|215094.50|1995-10-26|3-MEDIUM|Clerk#000001443|0|ccounts among the slyly ironic accounts wake permanently | +32040|413123|F|159238.04|1994-12-13|1-URGENT|Clerk#000003465|0|er furiously unusual accounts. furiously dogged pinto beans hagg| +32041|606131|O|313977.54|1995-06-06|2-HIGH|Clerk#000001225|0|rmanent packages boost quickly express deposits. fluffily even packages doze| +32042|738097|O|109955.67|1997-11-11|5-LOW|Clerk#000003562|0|nic, regular packages cajole fluffily up the fluffily bold packages. caref| +32043|182527|F|220328.37|1992-06-25|4-NOT SPECIFIED|Clerk#000002745|0|gainst the fluffily unusual accounts? slyly f| +32044|229561|F|40322.48|1993-10-25|3-MEDIUM|Clerk#000004248|0|ronic escapades haggle. theodolites wake | +32045|219373|O|126513.49|1997-10-26|1-URGENT|Clerk#000004319|0|ackages are furiously idle pinto beans. special, regular foxes use-- ca| +32046|721858|F|48977.67|1993-12-10|3-MEDIUM|Clerk#000004862|0|the fluffily bold dolphins. special, express theodolites are carefu| +32047|254389|F|32230.44|1994-02-10|2-HIGH|Clerk#000000453|0|uickly bold deposits after the ironi| +32072|485303|F|179344.45|1994-06-28|2-HIGH|Clerk#000002928|0| furiously special deposi| +32073|229333|O|262318.02|1996-11-22|5-LOW|Clerk#000004792|0|ckages sleep. furiously express deposits | +32074|132193|O|81916.63|1996-06-14|1-URGENT|Clerk#000002572|0|es cajole. furiously special theodolites detect furiously even deposits.| +32075|257017|F|256607.43|1993-08-13|4-NOT SPECIFIED|Clerk#000001232|0|ely even instructions haggle fluffily. carefully final ideas mold ironic de| +32076|404377|O|59925.14|1996-01-07|4-NOT SPECIFIED|Clerk#000004022|0|nal deposits; carefully pending accounts boost fluffily ac| +32077|600097|F|127517.98|1993-07-13|5-LOW|Clerk#000000137|0|ly final sheaves cajole quickly carefully regula| +32078|579653|O|82494.29|1997-01-16|1-URGENT|Clerk#000004555|0|egular packages. sly, final attainme| +32079|461167|O|212364.83|1996-06-19|3-MEDIUM|Clerk#000001519|0|ges. slyly even theodolites haggle furiously regular gifts. quickly final atta| +32104|322699|O|201826.09|1998-01-01|3-MEDIUM|Clerk#000000043|0| slyly carefully final deposits. blithely final ideas are sl| +32105|340640|O|48583.74|1995-06-01|5-LOW|Clerk#000001063|0|unts are furiously dependencies. furiously i| +32106|384224|O|188720.70|1997-02-25|2-HIGH|Clerk#000001566|0|its nag carefully. slyly pending ideas about the bold, final deposits gro| +32107|151741|O|236222.50|1997-10-01|5-LOW|Clerk#000003215|0|lyly alongside of the slyly ironic packages. furiously pending | +32108|302848|F|252319.79|1994-06-22|5-LOW|Clerk#000004605|0|ts above the unusual pinto beans affix carefully bold, fina| +32109|448762|O|75876.35|1998-01-20|4-NOT SPECIFIED|Clerk#000000220|0|packages after the car| +32110|337543|O|242725.82|1996-06-18|3-MEDIUM|Clerk#000003884|0| slyly along the quickly regular theodolites. bl| +32111|76012|F|216415.99|1994-12-11|2-HIGH|Clerk#000003005|0|tructions thrash slyly across the even accounts. final asymptotes doubt car| +32136|276887|O|29559.95|1997-07-16|5-LOW|Clerk#000004339|0|ly regular requests lose furiously above the slyly final packages| +32137|639607|O|7494.06|1997-06-01|3-MEDIUM|Clerk#000001087|0|e final requests are quickly furiously expres| +32138|123967|O|98598.15|1996-04-25|3-MEDIUM|Clerk#000002516|0|ould boost furiously unusual somas. furi| +32139|5374|F|98436.37|1994-03-14|1-URGENT|Clerk#000003832|0|lyly regular accounts. blithely ironic requests| +32140|291727|O|165400.57|1997-06-23|1-URGENT|Clerk#000002421|0|s the furiously express accounts. quickly unusual sheaves a| +32141|296518|F|159877.99|1994-05-02|5-LOW|Clerk#000002824|0|oxes wake blithely slyly final id| +32142|567419|P|240563.59|1995-03-30|4-NOT SPECIFIED|Clerk#000004432|0|around the slyly unusual courts wake blithely even excuses. pac| +32143|360983|O|66176.15|1997-05-20|3-MEDIUM|Clerk#000003710|0|ions. blithely special pinto beans are slyly. furious| +32168|280612|F|188387.45|1993-10-08|2-HIGH|Clerk#000000530|0| regular, bold packages across the fluffily even asympt| +32169|228382|O|62712.53|1995-09-28|4-NOT SPECIFIED|Clerk#000001307|0|xpress pinto beans. bold theodolites caj| +32170|651022|P|153160.00|1995-03-31|4-NOT SPECIFIED|Clerk#000004232|0|fix carefully across the requests. fluffily even reque| +32171|697450|O|165355.81|1998-01-26|3-MEDIUM|Clerk#000001345|0|lyly ironic courts. dependencies nag blithely along the never unusual accoun| +32172|282641|F|110392.19|1995-01-15|3-MEDIUM|Clerk#000002264|0|gular deposits use to the | +32173|583465|O|180968.60|1998-03-23|2-HIGH|Clerk#000000529|0|ed to cajole slyly above the slyly ruthless requests. pinto beans haggle fur| +32174|27710|F|179525.46|1993-10-21|4-NOT SPECIFIED|Clerk#000004762|0|yly express attainments are finally. slyly unusual foxes wake bl| +32175|716257|F|285690.42|1993-03-14|4-NOT SPECIFIED|Clerk#000002143|0| the carefully careful dependencies| +32200|612950|F|158490.42|1993-11-26|4-NOT SPECIFIED|Clerk#000004344|0|jole alongside of th| +32201|599060|O|187165.36|1996-05-02|3-MEDIUM|Clerk#000000782|0|cies against the regular, bold depths s| +32202|398881|F|156579.44|1992-01-31|5-LOW|Clerk#000003920|0|g requests. fluffily regular deposits boost. ruthless, even packa| +32203|472481|O|115245.04|1997-06-18|1-URGENT|Clerk#000002492|0|r requests. bold accounts haggle furiously. final, ironic theodolites sle| +32204|733186|O|109656.65|1997-08-03|2-HIGH|Clerk#000004195|0| blithely regular ideas. re| +32205|146572|P|47599.26|1995-04-18|4-NOT SPECIFIED|Clerk#000004637|0| final packages nag carefully foxes. quickly express requests poach along the | +32206|434569|O|143393.52|1995-08-07|3-MEDIUM|Clerk#000002689|0|egular requests. deposits at the fluffily final deposits haggle quickly fur| +32207|286339|F|280044.74|1992-05-09|2-HIGH|Clerk#000001215|0| the regular, ironic deposits. regular, bold excuses integrate bli| +32232|489284|O|90916.27|1997-01-16|2-HIGH|Clerk#000004210|0|ly above the express ideas. speci| +32233|384325|O|154367.00|1996-01-22|1-URGENT|Clerk#000000850|0|riously silent requests| +32234|321910|F|84492.00|1992-06-06|2-HIGH|Clerk#000000909|0|arefully furiously ironic dol| +32235|578566|F|67402.40|1993-05-08|3-MEDIUM|Clerk#000004990|0|usly about the unus| +32236|202433|O|226541.85|1998-02-24|1-URGENT|Clerk#000003016|0|long the daringly ironic requests. carefully express pinto beans| +32237|286984|F|178076.24|1993-09-27|5-LOW|Clerk#000000791|0|lly according to the final courts. slyly regular pinto beans at the furiou| +32238|69586|F|30065.14|1992-09-07|5-LOW|Clerk#000000489|0|ic accounts. instructions sleep carefully above the careful| +32239|269389|O|75313.48|1998-05-25|4-NOT SPECIFIED|Clerk#000003765|0|ng requests about the quickly special deposits wak| +32264|590080|F|310509.84|1994-12-01|3-MEDIUM|Clerk#000004631|0|se carefully special packages. q| +32265|221425|F|261833.66|1994-03-15|3-MEDIUM|Clerk#000004691|0|ly express theodolites. regular reque| +32266|726443|F|240245.60|1992-09-23|5-LOW|Clerk#000004089|0|ven asymptotes integrate pending packages. regu| +32267|76126|F|27071.60|1992-04-12|3-MEDIUM|Clerk#000001059|0|ly fluffily final theodolites. quickly even requests x-ray furiously carefu| +32268|694486|O|220024.73|1998-02-19|3-MEDIUM|Clerk#000004689|0|iously bold packages sleep blithely. deposits affix always special warthog| +32269|699614|F|294165.02|1992-03-10|1-URGENT|Clerk#000004265|0|ar ideas are ironic instructions. quiet acc| +32270|650998|F|60015.60|1993-01-02|2-HIGH|Clerk#000003013|0| requests. carefully final theodolites nag furiously. ironic, ironic | +32271|314071|F|38748.94|1992-05-13|1-URGENT|Clerk#000000030|0|ccounts mold sometimes express grouches. ironic requests n| +32296|88321|O|178956.71|1996-09-22|4-NOT SPECIFIED|Clerk#000003210|0|tions sleep even requests. slyly final forge| +32297|128954|O|188958.23|1997-07-04|4-NOT SPECIFIED|Clerk#000002526|0|he furiously regular ideas. sauterne| +32298|571673|O|179736.44|1996-10-05|4-NOT SPECIFIED|Clerk#000000036|0|ly around the furiously regular theodolit| +32299|596749|O|112195.18|1995-12-10|1-URGENT|Clerk#000002955|0|wake alongside of the deposits. bold, ironic id| +32300|537730|O|165604.89|1996-06-13|2-HIGH|Clerk#000000574|0|requests detect carefully ag| +32301|95014|O|200053.37|1995-10-11|3-MEDIUM|Clerk#000002282|0|theodolites haggle slyly. blithely bold excuses haggle fur| +32302|121292|O|209154.15|1995-12-21|5-LOW|Clerk#000002241|0|y express packages nod quickly regular deposits. qu| +32303|48394|F|161805.95|1992-09-08|3-MEDIUM|Clerk#000001163|0|ts cajole according to the blithely even foxes. express dependencies| +32328|334333|O|179036.39|1996-04-28|2-HIGH|Clerk#000001537|0|p final packages. slyly bold accounts are slyly. bold packages are. dependen| +32329|105556|F|194219.44|1992-01-06|3-MEDIUM|Clerk#000002779|0|lly pending pinto beans. furiously expr| +32330|313876|O|23670.95|1996-08-04|3-MEDIUM|Clerk#000002384|0|ar deposits according to the quickly final accounts cajole fluffily according| +32331|533377|O|25493.05|1997-04-30|1-URGENT|Clerk#000003724|0|er the even accounts. express, ironic packages cajole. regular instructi| +32332|457165|O|23325.99|1995-12-30|4-NOT SPECIFIED|Clerk#000004120|0|le fluffily around the ironic deposits. carefully even r| +32333|539401|F|178100.76|1992-04-27|1-URGENT|Clerk#000004844|0|sleep slyly deposits. furiously pending packages x-ray care| +32334|443089|O|260069.96|1996-07-07|3-MEDIUM|Clerk#000000606|0|blithely express ideas cajole finally along | +32335|240412|F|121672.26|1993-02-14|1-URGENT|Clerk#000004265|0|efully even platelets. blithely express accounts wake furiously quickly ir| +32360|352933|F|270957.09|1992-12-23|4-NOT SPECIFIED|Clerk#000004974|0|otes. final requests sleep carefully. carefully ironic escapades are. slyl| +32361|729623|O|136531.54|1998-01-17|5-LOW|Clerk#000004676|0|l requests among the special excuses sleep according to the b| +32362|269161|O|164313.87|1995-08-23|4-NOT SPECIFIED|Clerk#000000647|0|press requests thrash quickly furiously special packages. silent, regula| +32363|510187|O|132262.13|1997-12-31|5-LOW|Clerk#000000456|0|y bold foxes. furiously ironic requests thrash silent requests. ev| +32364|685379|F|14081.08|1993-03-08|5-LOW|Clerk#000002840|0| alongside of the blithely final package| +32365|656086|O|154313.03|1996-10-27|4-NOT SPECIFIED|Clerk#000001837|0|solve silently. final, silent co| +32366|329531|O|125043.20|1996-03-16|1-URGENT|Clerk#000003226|0|, final packages nag against the pending, regular deposits. | +32367|417911|F|13519.09|1995-01-03|3-MEDIUM|Clerk#000004599|0|s the silent, silent platelets. slyly ironic ideas afte| +32392|74851|O|65130.92|1997-10-30|3-MEDIUM|Clerk#000001145|0|eyond the slyly close ideas-- furiously ironic depo| +32393|253459|O|81504.33|1997-09-12|4-NOT SPECIFIED|Clerk#000002008|0|efully. carefully even instructions wake carefully silent accou| +32394|603670|O|28982.82|1997-04-22|1-URGENT|Clerk#000003543|0|ular instructions along the si| +32395|627577|F|189855.78|1992-12-03|1-URGENT|Clerk#000004058|0|ly final packages. fluffily regular packages haggl| +32396|416455|O|45480.90|1997-04-12|2-HIGH|Clerk#000003019|0|es alongside of the carefully express accounts are | +32397|357913|O|198007.94|1996-06-07|1-URGENT|Clerk#000002635|0|ress accounts eat quickly around the ironically brave requests. unusual reques| +32398|419600|F|81625.65|1992-06-14|1-URGENT|Clerk#000000467|0|blithely along the blithely unusual asymptotes. ide| +32399|705628|F|258749.60|1993-09-26|3-MEDIUM|Clerk#000002993|0| packages cajole against the unusual deposits. ironic, final package| +32424|464792|O|75173.10|1998-04-15|3-MEDIUM|Clerk#000002805|0| deposits after the quickly idle deposits| +32425|505855|F|61896.68|1994-06-12|5-LOW|Clerk#000001996|0|le quickly. fluffil| +32426|653608|O|200799.17|1996-08-17|4-NOT SPECIFIED|Clerk#000000754|0|sts cajole carefully alongside of the furiously ruthless requ| +32427|681826|O|101391.50|1995-08-06|3-MEDIUM|Clerk#000002003|0|ound the silent, final foxes. ironic deposits are. regular attain| +32428|188473|F|126725.15|1992-08-31|5-LOW|Clerk#000000754|0| hockey players. packages run blithely according to the requests? slyly even| +32429|393706|O|152715.64|1997-01-13|1-URGENT|Clerk#000004997|0|al theodolites are fluffily special asymptotes. furiously ironic f| +32430|516421|O|49140.58|1995-10-02|1-URGENT|Clerk#000004592|0|blithely ironic instructions against the even dependencies haggle slyly d| +32431|460046|F|317292.17|1994-08-08|5-LOW|Clerk#000004687|0|ully express forges. fluffily unusual dependencies| +32456|240118|O|142476.26|1996-04-20|3-MEDIUM|Clerk#000004443|0|ermanent accounts are along the ironically bold foxes.| +32457|658339|O|197146.78|1995-07-02|1-URGENT|Clerk#000004436|0|y after the carefully bold de| +32458|680836|O|191839.76|1996-10-03|5-LOW|Clerk#000003488|0|the unusual accounts. blithel| +32459|27269|O|354214.38|1998-06-02|2-HIGH|Clerk#000002606|0| furiously regular packages are. slyly even | +32460|48613|O|317193.31|1997-05-05|2-HIGH|Clerk#000000644|0|olites. silent, final hockey players are caref| +32461|287140|O|152349.58|1996-09-04|2-HIGH|Clerk#000004127|0|rate carefully against the carefully ironic accounts. bold, unusual the| +32462|448114|F|291423.48|1993-08-03|4-NOT SPECIFIED|Clerk#000002875|0|to the even, bold platelets. deposits are p| +32463|676109|O|210868.12|1995-12-15|4-NOT SPECIFIED|Clerk#000003297|0|nusual requests: slyly stealthy packages al| +32488|104467|F|64230.31|1994-05-18|2-HIGH|Clerk#000004250|0|ickly special deposits n| +32489|26144|O|146862.34|1997-04-16|1-URGENT|Clerk#000004343|0| regular accounts. even accounts cajole along the furiously unusual accoun| +32490|650156|P|315250.79|1995-03-04|2-HIGH|Clerk#000003937|0|uests are slyly. unusual, even accounts haggle c| +32491|418390|O|200401.37|1996-04-23|4-NOT SPECIFIED|Clerk#000002928|0|ully unusual foxes boost slyly about the even, regular | +32492|625825|O|212064.27|1996-05-14|3-MEDIUM|Clerk#000004722|0|al deposits. blithely specia| +32493|228814|O|66863.09|1996-03-21|1-URGENT|Clerk#000002408|0|y even hockey players according to the carefully silent| +32494|415204|F|102476.31|1994-08-05|2-HIGH|Clerk#000001793|0|uriously across the blithely ironic instructions. care| +32495|330311|F|250506.41|1992-10-04|5-LOW|Clerk#000003728|0| packages. final, e| +32520|24430|F|162336.34|1995-01-16|1-URGENT|Clerk#000001130|0| blithely ironic pinto be| +32521|344449|P|253030.11|1995-04-23|2-HIGH|Clerk#000003335|0|s furiously? instructions us| +32522|645733|O|68257.61|1996-06-10|4-NOT SPECIFIED|Clerk#000001585|0|tealthy packages. blithely ironic pinto beans haggle about the furiously i| +32523|321572|O|52817.37|1996-02-13|4-NOT SPECIFIED|Clerk#000002456|0|ven deposits boost! fluffily final packages cajole | +32524|158533|O|78500.33|1996-05-31|4-NOT SPECIFIED|Clerk#000004668|0|he requests. furiously final deposits wake sly| +32525|435871|O|148694.18|1997-12-06|5-LOW|Clerk#000002575|0|ng the slyly careful accounts. blithely even inst| +32526|415469|O|258670.63|1997-07-30|2-HIGH|Clerk#000000727|0|xpress ideas should hagg| +32527|274648|O|121474.95|1997-01-27|3-MEDIUM|Clerk#000003353|0|c courts. special accounts against t| +32552|493570|P|121892.53|1995-05-11|3-MEDIUM|Clerk#000001105|0|fluffily among the pending accounts. ir| +32553|421948|F|63788.62|1995-03-01|5-LOW|Clerk#000003958|0|. slyly ironic instructions according to the quickly final ac| +32554|420199|O|130931.60|1997-01-24|5-LOW|Clerk#000001474|0|es. deposits dazzle. unusual platelets are q| +32555|254380|O|237922.29|1997-11-22|2-HIGH|Clerk#000002384|0|ions above the requests ha| +32556|354794|O|270460.66|1996-01-12|5-LOW|Clerk#000001549|0| the bold ideas. furiously even accounts wake sl| +32557|520946|O|160864.33|1995-07-02|2-HIGH|Clerk#000004618|0|ously bold pinto beans | +32558|35644|F|277461.44|1995-01-04|5-LOW|Clerk#000002106|0|fully stealthy requests. requests a| +32559|536741|F|12829.92|1993-09-22|4-NOT SPECIFIED|Clerk#000002872|0|ual requests according to the slyly regu| +32584|744310|O|91878.23|1998-03-24|4-NOT SPECIFIED|Clerk#000000598|0|blithely above the pending pinto bea| +32585|346186|F|217198.87|1995-02-14|2-HIGH|Clerk#000002097|0|g packages. regular req| +32586|587155|F|45068.20|1994-10-21|1-URGENT|Clerk#000003936|0|egular accounts. quickly pendi| +32587|552581|F|129702.99|1993-07-03|1-URGENT|Clerk#000004081|0|luffily final accounts are always carefully ironic| +32588|715483|F|304667.76|1992-01-22|4-NOT SPECIFIED|Clerk#000003115|0|, even packages dazzle slyly above the slyly final requests.| +32589|369254|F|163870.81|1992-09-15|1-URGENT|Clerk#000001720|0|ully express pinto beans. unusual requests use quickly carefully silent | +32590|545332|F|257022.82|1992-09-27|3-MEDIUM|Clerk#000000215|0|s above the busily ironic pinto beans nag according to the deposits. blithely| +32591|374029|O|365943.42|1997-11-21|2-HIGH|Clerk#000004699|0| against the fluffily regular dependencies haggle carefully alongside | +32616|540218|O|273048.66|1995-09-16|1-URGENT|Clerk#000001415|0|ake across the furiously regular depende| +32617|691534|O|250433.52|1997-02-16|4-NOT SPECIFIED|Clerk#000000261|0|deas boost quickly unu| +32618|588049|O|86006.49|1996-09-17|3-MEDIUM|Clerk#000003113|0| regular packages. slyly regular deposits after the b| +32619|560438|F|283724.79|1994-04-16|4-NOT SPECIFIED|Clerk#000001757|0|osits wake quickly furiously silent foxes. slyly even accounts sleep slyly. | +32620|25333|F|56812.42|1993-10-28|4-NOT SPECIFIED|Clerk#000000947|0|he requests. furiously unusual dependencies against the furiously ironi| +32621|518503|F|278506.42|1993-09-28|5-LOW|Clerk#000000283|0|ts. dogged accounts are slyly. packages slee| +32622|226283|F|15869.91|1994-12-25|4-NOT SPECIFIED|Clerk#000000250|0|nal foxes doubt slyly. carefully pending instructions ha| +32623|627641|O|153686.57|1995-11-12|1-URGENT|Clerk#000004169|0| requests serve. furiously unusual ideas haggl| +32648|4360|F|110939.65|1993-07-29|1-URGENT|Clerk#000004764|0|sits wake blithely a| +32649|518153|O|181575.73|1995-08-22|1-URGENT|Clerk#000001149|0|y permanent, ruthless dependencies. furiously express accounts cajole bl| +32650|337412|O|280486.53|1998-04-21|4-NOT SPECIFIED|Clerk#000000265|0|xes are blithely regul| +32651|117215|O|155710.37|1997-02-12|4-NOT SPECIFIED|Clerk#000001923|0|t the permanently express excuses. even braid| +32652|524629|O|274919.97|1998-06-14|1-URGENT|Clerk#000001967|0| blithely silent accounts cajole about the carefully re| +32653|427552|O|268467.54|1997-02-15|4-NOT SPECIFIED|Clerk#000004816|0| bold pinto beans after the fu| +32654|90485|F|73757.16|1993-08-25|1-URGENT|Clerk#000001126|0|ons haggle slow accounts. carefully express packages | +32655|521794|O|147612.35|1997-09-01|2-HIGH|Clerk#000003417|0| carefully. foxes sleep quickly express requests. s| +32680|35366|F|146557.02|1993-09-29|4-NOT SPECIFIED|Clerk#000004397|0|packages wake slyly. theodolites along the courts serve slyly a| +32681|379708|F|89951.16|1995-01-11|3-MEDIUM|Clerk#000004400|0|cuses wake blithely! carefully| +32682|722701|F|216175.99|1993-06-26|5-LOW|Clerk#000002747|0|deposits doubt fluffily blithely final accounts. ironic foxes | +32683|182846|F|322505.75|1993-03-27|4-NOT SPECIFIED|Clerk#000001514|0|ongside of the ironic, final excuses cajole furiously regular | +32684|328055|F|128047.65|1993-03-29|4-NOT SPECIFIED|Clerk#000004389|0|nal, bold asymptotes. fluffily unusual packages cajole furiously unusual, s| +32685|354562|O|190220.20|1995-06-06|4-NOT SPECIFIED|Clerk#000004940|0|even deposits. carefully regular asymptotes against the final | +32686|365414|O|86448.58|1997-03-25|4-NOT SPECIFIED|Clerk#000000575|0|pending platelets. carefully unusual instructions f| +32687|502643|O|47084.27|1995-09-15|1-URGENT|Clerk#000001095|0|counts. final pinto beans sleep blithely during the | +32712|668747|F|172780.95|1992-05-03|5-LOW|Clerk#000002095|0| fluffily. carefully final ideas above the deposits | +32713|123514|O|104601.84|1996-05-07|4-NOT SPECIFIED|Clerk#000003334|0|packages. platelets sleep carefully. pending deposits| +32714|640646|P|241463.89|1995-05-18|3-MEDIUM|Clerk#000001313|0|? express requests detect. express, furious theodolites| +32715|331336|F|391030.13|1992-02-27|5-LOW|Clerk#000004617|0|ely final tithes. accounts haggle. even excuses across| +32716|742348|F|40970.27|1992-06-24|1-URGENT|Clerk#000001443|0|quickly along the even, regular excuses. unusual, final accounts are c| +32717|367027|F|124722.18|1993-02-12|2-HIGH|Clerk#000002707|0|d dugouts x-ray quickly even d| +32718|598397|F|56742.31|1993-01-31|5-LOW|Clerk#000003740|0|ptotes. even foxes wake carefully. ironic, fin| +32719|493340|O|134433.58|1997-04-28|3-MEDIUM|Clerk#000001397|0|quests. regular notornis alongside of the even, unusual depths | +32744|304441|O|68559.14|1995-06-18|1-URGENT|Clerk#000003241|0|es against the fluffily bold tithes cajole above| +32745|213542|F|11740.53|1992-05-07|1-URGENT|Clerk#000002349|0|de of the slyly regular ideas are thinly across the final reques| +32746|244844|F|103020.60|1995-01-14|2-HIGH|Clerk#000002467|0|kly regular packages. quiet| +32747|585665|F|68456.21|1993-09-11|2-HIGH|Clerk#000002666|0|e of the unusual pinto beans. fluffily express| +32748|265030|F|34391.28|1992-05-08|2-HIGH|Clerk#000000595|0|sual pinto beans. final requests according to| +32749|93031|O|148876.64|1998-05-27|2-HIGH|Clerk#000000510|0| deposits? thinly silent pinto beans cajole furiously carefully quiet ins| +32750|542776|F|255788.84|1993-10-25|3-MEDIUM|Clerk#000001330|0|nstructions sleep. packages sleep quickly account| +32751|160079|O|81447.87|1997-02-21|2-HIGH|Clerk#000003856|0|nstructions cajole deposits. special, regular waters sleep. ev| +32776|186916|O|100137.92|1995-06-18|2-HIGH|Clerk#000000563|0|, express packages cajole against the even deposits. bold deposi| +32777|490598|O|245376.63|1997-11-23|2-HIGH|Clerk#000000140|0|cajole alongside of the fluffily bold accounts. accounts affix | +32778|727837|F|164183.16|1992-03-21|5-LOW|Clerk#000003028|0|ringly at the quickly even packages. pending accoun| +32779|223252|O|63362.16|1998-05-26|2-HIGH|Clerk#000001840|0|always even warthogs play furiously packages. b| +32780|667699|F|86248.25|1992-06-11|2-HIGH|Clerk#000000814|0| dependencies are fluffi| +32781|511549|F|86452.21|1992-09-18|4-NOT SPECIFIED|Clerk#000000777|0|symptotes nag along the daring instructions. | +32782|321974|F|224795.82|1992-11-22|5-LOW|Clerk#000003084|0|. accounts are furiously. blithely stealthy packag| +32783|156304|F|219331.63|1993-12-14|3-MEDIUM|Clerk#000001428|0|blithely unusual courts. furiously express deposits about the carefully| +32808|495088|F|63129.80|1992-05-31|4-NOT SPECIFIED|Clerk#000002394|0|the blithely express| +32809|423481|O|82899.11|1998-03-11|3-MEDIUM|Clerk#000001485|0|s haggle fluffily furiously final requests. slyly ironic ac| +32810|694652|O|207972.10|1998-01-15|3-MEDIUM|Clerk#000003043|0|accounts cajole. slyly special dolphins| +32811|514583|F|118026.65|1993-11-08|4-NOT SPECIFIED|Clerk#000002941|0|sly blithely ironic asymptotes. packages ca| +32812|333793|O|268768.96|1996-10-27|2-HIGH|Clerk#000000659|0| ironic instructions boost. foxes about the furiously express pinto beans | +32813|47345|O|256726.99|1997-06-28|4-NOT SPECIFIED|Clerk#000002820|0|ptotes haggle quickly along the final decoys. final, regular asymptotes wake | +32814|721144|F|46750.60|1994-02-08|4-NOT SPECIFIED|Clerk#000004105|0|tes are around the regular deposits. slyly fluffy instructions against the c| +32815|266989|O|112640.49|1997-08-06|2-HIGH|Clerk#000000843|0|requests. blithely pending dependencies doze carefully carefully regular| +32840|14413|F|157447.71|1994-12-24|2-HIGH|Clerk#000004696|0|ronic instructions pla| +32841|736697|F|87563.79|1992-05-22|2-HIGH|Clerk#000002894|0|e, bold ideas serve blithely after the unusual theodolites. fluffily f| +32842|651931|O|99638.58|1996-03-08|3-MEDIUM|Clerk#000004493|0|inal packages along the special courts need to run closely | +32843|228023|O|182013.11|1995-08-14|5-LOW|Clerk#000004671|0|endencies. carefully even| +32844|625372|F|32213.91|1993-01-20|4-NOT SPECIFIED|Clerk#000001777|0|ep. carefully daring deposits affix furiou| +32845|116869|O|109635.00|1998-06-01|1-URGENT|Clerk#000003547|0|g the carefully regular d| +32846|716497|F|73986.23|1994-01-07|3-MEDIUM|Clerk#000000224|0|o beans use special, ironic excuses. furiously unusual deposit| +32847|143833|O|146499.44|1996-07-31|4-NOT SPECIFIED|Clerk#000003995|0|s. bold accounts breach. thin deposits nag. carefully special warthogs mol| +32872|124159|F|232753.57|1994-08-26|2-HIGH|Clerk#000004043|0| affix carefully quickly silent requests? slyly e| +32873|230617|O|149814.63|1996-01-23|1-URGENT|Clerk#000002518|0|p carefully slyly pending requests. slyly final requests after the account| +32874|698452|F|4599.87|1994-12-22|5-LOW|Clerk#000001065|0|le quickly among the deposits. furiously e| +32875|621992|O|52527.98|1995-10-06|1-URGENT|Clerk#000002885|0|r packages haggle carefully along the foxes. slyly| +32876|307460|O|84666.57|1995-06-14|3-MEDIUM|Clerk#000004883|0|gside of the final instructions! accounts detect blithely. furiously unu| +32877|723137|O|292408.76|1997-06-19|3-MEDIUM|Clerk#000001364|0|ely special accounts. f| +32878|1819|O|178053.54|1995-10-21|5-LOW|Clerk#000002228|0|n packages haggle carefully blithely regular theodolites. slyly special p| +32879|541201|F|142285.59|1994-03-06|1-URGENT|Clerk#000001863|0|nstructions. ironic courts cajole carefully among| +32904|711410|F|100425.65|1994-05-25|5-LOW|Clerk#000000106|0|aggle fluffily after the packages. regular realms about th| +32905|156647|F|7247.80|1992-05-18|5-LOW|Clerk#000000844|0|sleep into the special instructions. sometimes ironic warthogs haggle sl| +32906|257711|F|86311.42|1993-08-13|1-URGENT|Clerk#000000084|0|regular pinto beans. slyly even | +32907|97847|O|80640.22|1996-06-22|4-NOT SPECIFIED|Clerk#000001400|0|. even platelets cajole slyly. blithely enticing p| +32908|504931|O|15126.91|1996-01-30|3-MEDIUM|Clerk#000003533|0|s warhorses after th| +32909|119908|F|269816.14|1995-01-18|4-NOT SPECIFIED|Clerk#000001941|0|ic theodolites. slyly even theodolites sleep furiously across the slyly | +32910|12413|O|39555.15|1996-05-30|4-NOT SPECIFIED|Clerk#000000710|0| quick deposits sublate sly| +32911|112132|O|273827.30|1997-12-05|4-NOT SPECIFIED|Clerk#000003188|0|ously regular ideas. quick| +32936|583705|O|85514.63|1997-02-12|4-NOT SPECIFIED|Clerk#000003561|0|above the regular packages doubt furiously blith| +32937|298085|O|272183.85|1996-12-09|3-MEDIUM|Clerk#000000198|0|sts. express, even pinto beans haggle blithely final requests.| +32938|651874|F|101694.71|1992-01-20|5-LOW|Clerk#000002446|0|g warthogs. furiously final pinto beans slee| +32939|44542|O|32720.16|1997-08-16|1-URGENT|Clerk#000001189|0|ts sleep fluffily s| +32940|87229|O|160322.21|1997-04-01|5-LOW|Clerk#000001906|0|oxes cajole above the fluffily fi| +32941|547670|O|238297.24|1996-11-08|3-MEDIUM|Clerk#000000281|0|silent requests integrate: even ideas use furiously idly| +32942|680662|F|215487.84|1992-01-03|2-HIGH|Clerk#000001286|0|the quickly final packages wake carefully special, ironic ideas: sly| +32943|114358|F|168723.35|1992-08-11|2-HIGH|Clerk#000002879|0|foxes. carefully bold instructi| +32968|486169|F|271416.03|1994-11-03|5-LOW|Clerk#000003425|0|ly. blithely regular theodolite| +32969|531061|O|158613.26|1996-01-06|3-MEDIUM|Clerk#000004258|0|lar foxes haggle carefully fur| +32970|538213|O|160408.51|1997-08-17|5-LOW|Clerk#000004611|0|ess deposits maintain carefully according to th| +32971|722482|F|186293.57|1993-02-03|4-NOT SPECIFIED|Clerk#000000737|0|deas cajole above the slyly regular excuses; silen| +32972|246991|O|57992.65|1995-10-17|1-URGENT|Clerk#000001423|0|lowly special theodolites across the final requests sleep carefully | +32973|646346|O|245548.35|1998-01-14|1-URGENT|Clerk#000004606|0|ress foxes. even, ironic packages use blithely among the slyly regular reques| +32974|133456|F|217794.16|1992-06-18|3-MEDIUM|Clerk#000000927|0|yly? blithely final requests are quickly.| +32975|480509|F|132065.61|1993-05-16|4-NOT SPECIFIED|Clerk#000002483|0|special somas cajole about the even, silent packages. slyly even accounts inte| +33000|657499|F|87937.59|1994-05-07|1-URGENT|Clerk#000002569|0| the ironic accounts. ironic sentiments| +33001|73589|F|86138.49|1995-01-21|2-HIGH|Clerk#000001498|0|y. excuses among the unus| +33002|46852|O|55798.12|1996-09-17|3-MEDIUM|Clerk#000000618|0|nusual, express accounts. slyly unusual packages boo| +33003|676210|F|143251.62|1992-10-04|2-HIGH|Clerk#000004584|0|carefully pending pinto beans. quickly pending dep| +33004|311470|F|258720.11|1993-12-01|1-URGENT|Clerk#000001595|0|theodolites nag. eve| +33005|601579|O|268410.83|1996-10-02|4-NOT SPECIFIED|Clerk#000003238|0|ke. blithely even instructions along the even | +33006|721375|O|174802.13|1997-10-15|5-LOW|Clerk#000000823|0|s cajole. final, final pinto beans in pl| +33007|390014|O|51461.79|1998-02-15|4-NOT SPECIFIED|Clerk#000001957|0|ecial deposits? slyly ironic deposits are slyly. fluf| +33032|705211|F|209831.40|1994-01-16|4-NOT SPECIFIED|Clerk#000000765|0|usly pending requests. slyly express | +33033|197986|O|28766.61|1996-01-30|4-NOT SPECIFIED|Clerk#000000741|0|es. express excuses haggle alongside of th| +33034|519403|O|191024.61|1996-09-24|4-NOT SPECIFIED|Clerk#000001813|0| pending pinto beans. f| +33035|334843|O|56643.50|1997-01-11|4-NOT SPECIFIED|Clerk#000001677|0| thrash slyly. express, careful packages snooze. quickly fi| +33036|434212|F|104347.25|1993-06-29|4-NOT SPECIFIED|Clerk#000002545|0|wake around the accounts. even theodolites along the quickl| +33037|277291|F|212731.05|1993-11-10|2-HIGH|Clerk#000001872|0|riously final requests wake after the fluff| +33038|650353|O|72046.79|1995-07-28|5-LOW|Clerk#000002771|0|ackages. unusual, even pinto beans above | +33039|707068|F|167458.09|1994-11-20|3-MEDIUM|Clerk#000002970|0|. bold excuses haggle quickly regular courts. even platelets above t| +33064|679207|O|249336.96|1997-04-07|1-URGENT|Clerk#000000525|0|y final accounts across the slyly silent p| +33065|424325|F|34455.10|1994-03-29|1-URGENT|Clerk#000003544|0|grate across the tithes. ironic accounts about the sl| +33066|629227|F|129171.92|1992-01-16|1-URGENT|Clerk#000003960|0|ng, even accounts. carefully regular accounts wake ac| +33067|404116|F|89691.19|1992-04-23|3-MEDIUM|Clerk#000003068|0|ix slyly sly foxes. unusual accounts sleep. ideas wake. slyl| +33068|714583|O|276307.64|1996-11-28|2-HIGH|Clerk#000003398|0|eposits boost slyly special somas. slyl| +33069|215644|O|202334.26|1997-08-07|1-URGENT|Clerk#000004943|0|ously regular packages haggle blithely at | +33070|324368|F|54420.13|1992-04-17|2-HIGH|Clerk#000001073|0| instructions mold quickly fluffily special acco| +33071|647963|F|32902.95|1992-02-28|1-URGENT|Clerk#000004561|0|blithely special foxes. blithely regular excuses boost along the s| +33096|303197|F|266423.59|1993-11-25|4-NOT SPECIFIED|Clerk#000001061|0|eposits. even pinto be| +33097|330467|O|93413.17|1996-08-10|3-MEDIUM|Clerk#000002427|0|ar deposits. theodolites sleep. pending, regular requ| +33098|392239|F|109756.32|1994-03-30|1-URGENT|Clerk#000000668|0|efully silent excuses| +33099|610169|O|72229.68|1997-09-16|4-NOT SPECIFIED|Clerk#000002538|0|ing, bold deposits sleep slyly across the blithely regular hock| +33100|358631|O|212973.04|1997-09-18|2-HIGH|Clerk#000002808|0| final deposits need to cajole carefully? final, final| +33101|504937|F|252506.57|1992-02-20|1-URGENT|Clerk#000000888|0|its sleep. furiously permanent requests wake slyly i| +33102|207514|F|271661.12|1994-12-25|3-MEDIUM|Clerk#000000732|0|fully unusual foxes affix carefully. care| +33103|163529|F|39239.19|1992-11-24|3-MEDIUM|Clerk#000004235|0| carefully even pinto bean| +33128|419207|F|252284.66|1992-08-21|3-MEDIUM|Clerk#000002339|0| final deposits. special asymptotes along the carefully f| +33129|98618|O|143430.24|1998-05-22|3-MEDIUM|Clerk#000001517|0|er the quickly bold braids. fluffily silent pinto beans | +33130|711349|O|210019.01|1997-05-13|3-MEDIUM|Clerk#000003283|0|lly bold asymptotes hang fluffily even foxes! final th| +33131|626266|F|86494.29|1992-07-07|4-NOT SPECIFIED|Clerk#000003991|0| bold, final accounts ca| +33132|150214|O|109387.21|1996-11-04|1-URGENT|Clerk#000002370|0|fully regular foxes-- fluffily ironic requests cajole. regular accounts haggl| +33133|129154|O|227203.22|1997-12-03|3-MEDIUM|Clerk#000004185|0|ly. fluffily final epitaphs sleep blithely quickly unusual| +33134|171814|F|86833.07|1993-10-30|4-NOT SPECIFIED|Clerk#000000866|0|l foxes doze requests. ideas across| +33135|149266|O|142547.04|1996-07-17|4-NOT SPECIFIED|Clerk#000003775|0|al pinto beans: even, regula| +33160|690737|O|62915.48|1997-03-18|1-URGENT|Clerk#000002438|0|slyly regular instruct| +33161|703184|F|51339.68|1993-09-27|2-HIGH|Clerk#000000979|0|lly quickly express foxes? carefully stealthy accounts boost furio| +33162|649405|O|121238.37|1998-03-31|5-LOW|Clerk#000004689|0|he final foxes sleep furiously even packages. caref| +33163|529774|O|153952.64|1997-04-13|5-LOW|Clerk#000000616|0|y at the enticingly ironic foxes. deposits sleep slyly bold instruc| +33164|658660|F|342495.25|1992-11-08|4-NOT SPECIFIED|Clerk#000000516|0|ully. carefully even reque| +33165|78529|F|48685.31|1993-06-16|3-MEDIUM|Clerk#000003507|0|nstructions along the furiously busy dolphi| +33166|574765|O|50864.73|1998-05-22|3-MEDIUM|Clerk#000000584|0|uffily regular ideas sle| +33167|55028|F|99647.46|1992-11-11|5-LOW|Clerk#000004177|0|ully unusual deposits cajole. express requests nag bravely pinto be| +33192|89450|O|189045.77|1996-10-29|2-HIGH|Clerk#000002538|0|dencies wake. slyly final d| +33193|372796|F|126619.74|1993-09-26|4-NOT SPECIFIED|Clerk#000000739|0|tegrate furiously after the blithely ironic deposits. regular, special r| +33194|57215|F|187444.79|1993-11-04|5-LOW|Clerk#000002075|0|in the furious, final deposit| +33195|108901|O|126466.58|1998-05-28|5-LOW|Clerk#000003273|0|fluffily even dolphins. quiet instructions | +33196|283507|O|117732.16|1998-03-24|1-URGENT|Clerk#000003174|0|hely bold accounts according to the sil| +33197|134983|F|93791.01|1995-03-09|5-LOW|Clerk#000001364|0|lly enticing theodolites. quickly careful accounts doubt carefully along the| +33198|632209|F|95115.83|1992-09-13|4-NOT SPECIFIED|Clerk#000004429|0|s. deposits haggle quickly. furiously even pa| +33199|280379|F|310682.11|1994-09-30|3-MEDIUM|Clerk#000000004|0|pending ideas. boldly ironic packages kindl| +33224|72010|O|244411.60|1996-05-19|1-URGENT|Clerk#000002974|0|lithely pending theodolites use blith| +33225|510595|O|23829.17|1996-12-15|3-MEDIUM|Clerk#000003797|0| beans among the carefully special depo| +33226|40786|O|85108.45|1997-03-22|2-HIGH|Clerk#000001537|0|es. slyly regular requests grow even reques| +33227|721619|O|29150.36|1998-01-17|4-NOT SPECIFIED|Clerk#000000026|0| the fluffily special accounts. pending requests slee| +33228|738638|F|108009.17|1995-02-14|2-HIGH|Clerk#000003967|0|e pending requests. acco| +33229|288518|F|84656.31|1992-01-28|3-MEDIUM|Clerk#000004552|0|ets. slyly ironic instructions run slyly. even,| +33230|360488|O|50736.69|1998-05-10|5-LOW|Clerk#000003936|0|tions are furiously fluffily final packages. requests use| +33231|206252|F|113874.20|1992-09-21|5-LOW|Clerk#000003968|0|he furiously regular deposits. fluffily bold deposit| +33256|723664|F|164795.15|1992-08-28|3-MEDIUM|Clerk#000001713|0|lly final pinto beans. pinto beans s| +33257|601076|F|153289.11|1992-03-07|4-NOT SPECIFIED|Clerk#000001321|0|ng, bold sheaves. fluffily pending packages grow bold packages. slyly ru| +33258|522295|O|168426.53|1997-11-06|2-HIGH|Clerk#000004310|0|fluffily ironic pinto beans are ironically against the carefully unusual in| +33259|199105|F|140628.39|1992-09-26|5-LOW|Clerk#000002165|0|ronic instructions. even accounts sleep. regular asymptotes bo| +33260|578851|O|3184.44|1996-07-05|3-MEDIUM|Clerk#000002421|0|ites sleep against the foxes. stealthily daring pinto beans| +33261|474328|O|118570.44|1998-01-16|3-MEDIUM|Clerk#000003601|0|final pinto beans impress furious| +33262|257170|O|139356.72|1995-06-22|1-URGENT|Clerk#000003131|0|busily final accounts haggle furiously about the ironic deposits. theo| +33263|746635|F|312444.76|1993-06-08|2-HIGH|Clerk#000004777|0|ously regular depende| +33288|427825|F|207947.19|1994-05-19|3-MEDIUM|Clerk#000002486|0| deposits are above the furiously ironic packages. quickl| +33289|180076|F|59814.92|1995-01-19|2-HIGH|Clerk#000004469|0|y special accounts affix ironic sheaves. sly| +33290|266513|F|295176.20|1992-03-12|2-HIGH|Clerk#000004102|0|ly final packages sleep carefully carefully bold pinto bea| +33291|269842|O|255856.31|1997-09-11|1-URGENT|Clerk#000000212|0|ual deposits cajole slyly among | +33292|721295|F|37410.00|1992-02-01|5-LOW|Clerk#000000706|0|. regular theodolites are. even accounts ought to affix doggedly| +33293|549052|O|52629.84|1996-04-26|1-URGENT|Clerk#000002603|0|ronic requests maintain among the gifts. quickly pending packages hag| +33294|652127|O|173549.32|1996-08-14|1-URGENT|Clerk#000001262|0|he slyly ironic foxes cajole furiou| +33295|537685|F|57044.07|1994-12-29|3-MEDIUM|Clerk#000001944|0|ar sentiments according to the slyly express courts nod furiously furiously| +33320|114449|F|19821.51|1994-12-10|1-URGENT|Clerk#000003165|0|out the slyly silent deposits breac| +33321|529151|O|70353.06|1996-02-21|3-MEDIUM|Clerk#000000459|0|lar requests. packages use f| +33322|686185|F|256602.70|1994-07-21|3-MEDIUM|Clerk#000001768|0|instructions. ironic, e| +33323|699793|F|176523.75|1994-06-20|5-LOW|Clerk#000002792|0|e quickly special packag| +33324|648628|F|152515.04|1993-05-09|4-NOT SPECIFIED|Clerk#000003556|0|fluffily final requests sleep sly| +33325|240188|P|245397.83|1995-05-10|2-HIGH|Clerk#000003353|0|iously above the never final accounts. instru| +33326|333109|F|131157.92|1994-01-17|4-NOT SPECIFIED|Clerk#000004759|0|g to the carefully regular foxes. blithely bold accounts boost slyly careful| +33327|561871|F|279961.05|1994-05-11|4-NOT SPECIFIED|Clerk#000002223|0|riously ironic packages.| +33352|97453|F|315246.25|1993-01-19|4-NOT SPECIFIED|Clerk#000000800|0|to beans along the ideas run blithel| +33353|632678|O|1567.44|1998-04-13|3-MEDIUM|Clerk#000004335|0|final deposits sleep quickly special pinto beans. blithely bold deposits| +33354|663736|O|325613.82|1996-11-02|5-LOW|Clerk#000001282|0| ideas integrate final r| +33355|652558|O|123504.76|1997-10-26|1-URGENT|Clerk#000001595|0|, bold requests around the special packages wake slyly along| +33356|272942|O|51318.98|1998-06-21|5-LOW|Clerk#000002845|0|ic accounts grow according to the fluffily ironic sentime| +33357|333644|F|118558.09|1994-09-09|2-HIGH|Clerk#000000803|0|ate quietly against the furiously b| +33358|553670|O|158976.10|1998-07-01|2-HIGH|Clerk#000004255|0|inal deposits. slyly ironic deposits about th| +33359|276283|O|154726.33|1995-09-25|5-LOW|Clerk#000003511|0|s haggle accounts. special, ironic a| +33384|210106|F|269403.12|1994-05-08|5-LOW|Clerk#000000486|0|s integrate whithout the fu| +33385|230792|O|22905.53|1996-12-18|2-HIGH|Clerk#000000897|0|ctions. furiously express platelets wake| +33386|658868|F|77629.01|1992-12-17|1-URGENT|Clerk#000001372|0|ts boost carefully silent, pending requests. platelets nag. bold, e| +33387|585926|F|50299.02|1992-01-14|2-HIGH|Clerk#000003415|0|r accounts. furiously regular frays cajole. quickly daring accounts cajole qui| +33388|148943|F|197524.84|1992-11-20|4-NOT SPECIFIED|Clerk#000001873|0|s across the slyly express dolphins lose blithely slyly bo| +33389|524677|F|122097.21|1993-03-12|4-NOT SPECIFIED|Clerk#000002132|0| asymptotes haggle | +33390|469384|O|144748.15|1997-03-20|1-URGENT|Clerk#000001808|0|tes haggle. quickly final| +33391|426200|F|359944.94|1994-12-09|5-LOW|Clerk#000000750|0|counts after the regular theodolites sleep furiously bold, | +33416|640267|O|100375.26|1997-02-24|1-URGENT|Clerk#000004534|0|d ideas. final deposits cajole slyly. furiously even a| +33417|712463|F|107810.70|1994-03-16|4-NOT SPECIFIED|Clerk#000001216|0|ronic packages wake furiously about the instructions. deposits poach| +33418|604952|O|99538.83|1996-02-24|4-NOT SPECIFIED|Clerk#000000398|0|ix blithely. special accounts haggle regular requests. furiously ironic accoun| +33419|418378|F|241911.12|1992-02-02|3-MEDIUM|Clerk#000002604|0|ual accounts wake packages. blithel| +33420|421891|P|329847.36|1995-03-23|2-HIGH|Clerk#000003873|0|s pinto beans across the requests use | +33421|215785|F|128735.89|1993-11-14|5-LOW|Clerk#000002918|0|ironic ideas wake carefully. carefully unusual dependencies sleep. boldly e| +33422|418423|F|102447.86|1993-06-08|2-HIGH|Clerk#000002520|0|nic deposits along the blithely regular platelets snooze blithely acro| +33423|419161|O|332746.34|1997-07-17|3-MEDIUM|Clerk#000000418|0|sits. furiously express requests among the quickl| +33448|75334|O|33001.45|1996-04-25|4-NOT SPECIFIED|Clerk#000002246|0|ously special accounts play carefully eve| +33449|120191|O|21335.56|1996-12-20|5-LOW|Clerk#000001896|0|ounts haggle carefully. furiously pending accounts haggl| +33450|292408|O|62496.53|1997-12-10|2-HIGH|Clerk#000002198|0|kly unusual accounts haggle pendin| +33451|473929|O|133847.47|1996-12-19|1-URGENT|Clerk#000001468|0|ously against the furiously silent requests. busily permanent packages sl| +33452|312262|O|78920.91|1997-07-21|2-HIGH|Clerk#000000875|0|nts. slow, express foxe| +33453|409408|O|178163.45|1996-11-20|3-MEDIUM|Clerk#000003434|0|riously express requests use furiou| +33454|405961|O|126176.13|1996-03-23|3-MEDIUM|Clerk#000003047|0|ar deposits wake furiously final deposits. quic| +33455|212387|F|150272.79|1994-02-03|4-NOT SPECIFIED|Clerk#000002893|0| express requests. e| +33480|321805|O|248190.64|1997-06-25|4-NOT SPECIFIED|Clerk#000001178|0|to beans wake blithe| +33481|317821|F|196837.03|1992-11-12|1-URGENT|Clerk#000002174|0|hely express accounts use blithely regular asymptote| +33482|107008|O|192137.81|1996-09-30|3-MEDIUM|Clerk#000000761|0|ourts use slyly furiously bold accounts. platelets are about the package| +33483|724018|O|161502.87|1997-04-16|2-HIGH|Clerk#000000734|0|ily besides the ironic foxes. express accounts wake blit| +33484|547507|O|60367.38|1997-09-26|4-NOT SPECIFIED|Clerk#000002637|0|en deposits. ruthlessly ironic instructions integrate furious| +33485|177385|F|194252.54|1993-12-02|5-LOW|Clerk#000002750|0|cajole blithely against the somas. da| +33486|28177|F|68649.67|1994-10-24|3-MEDIUM|Clerk#000002819|0|eas. bold, unusual deposits integrate slyly enticingly i| +33487|311848|F|41449.95|1993-07-05|4-NOT SPECIFIED|Clerk#000000645|0|deposits haggle carefully slyly special asymptotes. pending, even requ| +33512|207901|O|67187.10|1998-06-01|2-HIGH|Clerk#000003978|0|have to wake slyly final packages. regular platelets detect carefu| +33513|687928|F|176151.49|1994-08-04|1-URGENT|Clerk#000000978|0|furiously alongside of the even as| +33514|725528|F|110043.87|1992-07-23|1-URGENT|Clerk#000004414|0|al accounts. regular, final decoys maintain blithe| +33515|436228|O|83049.50|1997-04-14|3-MEDIUM|Clerk#000001738|0|n accounts wake furiously alongside| +33516|433276|F|103962.18|1994-12-02|4-NOT SPECIFIED|Clerk#000002828|0|uickly pending instructions wake behind the slyly ir| +33517|304364|O|229669.38|1997-02-01|1-URGENT|Clerk#000003112|0|equests. furiously express pinto beans sleep packages. regularly ironic packag| +33518|443182|O|143728.30|1998-07-22|3-MEDIUM|Clerk#000002128|0|blithely ironic requests sleep carefully | +33519|294148|O|99780.37|1995-05-25|5-LOW|Clerk#000000585|0|ly alongside of the fluffily bold dolphins. carefully regular packa| +33544|490978|F|102227.31|1994-09-26|4-NOT SPECIFIED|Clerk#000003208|0|lithely bold asymptotes maintain slyly. spe| +33545|342916|F|262255.59|1992-09-23|5-LOW|Clerk#000001528|0|ilent deposits. pending packages acc| +33546|380587|F|122484.26|1993-09-26|4-NOT SPECIFIED|Clerk#000000315|0|s sleep quickly. fluffily bold deposits| +33547|525569|O|33820.69|1995-06-29|1-URGENT|Clerk#000001413|0|ironic pinto beans wake carefully.| +33548|472064|F|212701.48|1994-06-09|3-MEDIUM|Clerk#000002994|0|fily silent pinto beans lose pending, bold acc| +33549|473803|O|228039.88|1996-11-17|1-URGENT|Clerk#000000459|0|es affix quickly bold pa| +33550|456596|O|269187.53|1996-03-17|3-MEDIUM|Clerk#000002815|0| detect quickly among the bold, fin| +33551|746353|O|26059.92|1996-10-21|1-URGENT|Clerk#000003887|0|unts. pinto beans sleep carefully acc| +33576|183037|O|144553.59|1997-09-22|1-URGENT|Clerk#000004228|0| excuses above the fluf| +33577|541018|O|335171.55|1997-07-19|4-NOT SPECIFIED|Clerk#000001445|0| the slyly silent packages nod across the quickly pending requests. slyly fina| +33578|628498|O|112919.53|1998-02-19|5-LOW|Clerk#000000726|0|bout the bold asymptotes. fur| +33579|146137|O|35638.65|1998-03-15|1-URGENT|Clerk#000000091|0|fily unusual dependencies. even, bold sheaves af| +33580|620627|O|78006.20|1998-07-28|1-URGENT|Clerk#000002471|0|s use. ironic instructions above the pending pinto beans cajole | +33581|619106|F|81918.40|1994-12-19|4-NOT SPECIFIED|Clerk#000000215|0|. furiously bold packages sleep blithely beyond t| +33582|547757|O|234627.27|1995-12-31|3-MEDIUM|Clerk#000000685|0|nto beans cajole into the blithely silent pinto beans. pinto beans ha| +33583|640463|O|17916.70|1997-04-21|1-URGENT|Clerk#000000327|0| regularly blithe instructions are quickly along the blithely r| +33608|252985|O|99620.96|1995-11-26|1-URGENT|Clerk#000001550|0|y carefully regular theodolites. furiously enticing| +33609|135484|P|232502.34|1995-04-29|5-LOW|Clerk#000001892|0|e requests are caref| +33610|58943|O|267757.65|1996-03-16|3-MEDIUM|Clerk#000003081|0|ironic dolphins integrate carefully b| +33611|648020|F|106225.31|1994-09-17|4-NOT SPECIFIED|Clerk#000003923|0|e fluffily stealthy theodolites boost since the slyly stealthy package| +33612|506273|F|216623.12|1992-03-08|5-LOW|Clerk#000004946|0|ong the special deposits. s| +33613|173462|O|72871.24|1997-08-14|3-MEDIUM|Clerk#000002266|0| quickly. pending accounts eat thinly according to the bold somas. carefull| +33614|119363|F|207549.95|1992-09-01|4-NOT SPECIFIED|Clerk#000001387|0| packages wake daringl| +33615|626611|F|73463.80|1992-01-22|1-URGENT|Clerk#000001034|0|iously slow deposits above the slyly final dependencies use| +33640|670885|O|23785.83|1997-06-29|1-URGENT|Clerk#000003805|0|larly regular foxes. regular, pending excuses mold alwa| +33641|57250|F|135352.16|1994-08-03|2-HIGH|Clerk#000004445|0|se along the bold, stealthy asymptotes. daringly ironi| +33642|683264|F|97844.54|1995-05-13|2-HIGH|Clerk#000001471|0|e furiously ironic asymptotes. | +33643|361588|O|206054.49|1995-10-16|2-HIGH|Clerk#000001347|0|about the unusual deposits. final instru| +33644|687268|O|305844.09|1996-07-29|2-HIGH|Clerk#000002888|0|reful packages boost bold platel| +33645|162754|O|132087.67|1998-05-17|5-LOW|Clerk#000001452|0|could have to haggle slyl| +33646|135590|F|266278.88|1994-02-24|4-NOT SPECIFIED|Clerk#000003937|0|usly pending attainments: fluffily even epitaphs detect slyly except the | +33647|353516|O|151908.91|1996-06-01|1-URGENT|Clerk#000002778|0| slyly about the even som| +33672|32650|O|131031.08|1995-10-08|4-NOT SPECIFIED|Clerk#000000948|0|ial accounts. ironic, regular requests wa| +33673|484343|O|35744.26|1996-06-11|2-HIGH|Clerk#000000708|0|iously about the slyly unusual sheaves. evenly final requests integrate furiou| +33674|596074|O|102057.65|1996-10-05|4-NOT SPECIFIED|Clerk#000003623|0|pains cajole carefully foxes. blithe| +33675|464560|O|244135.68|1996-09-15|2-HIGH|Clerk#000000271|0|he carefully unusual ide| +33676|334856|O|103165.05|1996-03-14|1-URGENT|Clerk#000001119|0|arefully even ideas haggle blithely quickly bold accounts-- fin| +33677|669055|O|350498.79|1997-04-08|1-URGENT|Clerk#000001102|0|ld requests above the theodolites affix som| +33678|48814|P|194802.11|1995-05-04|2-HIGH|Clerk#000003380|0|gular instructions. special, r| +33679|660355|F|132785.18|1992-07-03|4-NOT SPECIFIED|Clerk#000002551|0|kly unusual packages promise among the special | +33704|56914|O|224699.87|1997-03-20|3-MEDIUM|Clerk#000002739|0|quickly careful theodolites. unusual in| +33705|292508|F|56960.53|1993-07-06|1-URGENT|Clerk#000002197|0|uriously unusual, special pac| +33706|677890|F|143946.57|1992-02-11|1-URGENT|Clerk#000004605|0| the carefully ruthless packages. | +33707|35264|F|231876.58|1994-08-11|5-LOW|Clerk#000000634|0|thely across the quickly even accounts. carefully final accoun| +33708|177959|O|139549.26|1998-07-22|4-NOT SPECIFIED|Clerk#000001662|0|lithely past the deposits. regular, unusual deposits haggle a| +33709|692008|F|36661.57|1993-10-03|2-HIGH|Clerk#000002831|0|ully: pinto beans affix furiously above the quickly regular accou| +33710|311701|O|319318.19|1997-05-03|3-MEDIUM|Clerk#000003004|0|e blithely regular courts. quickly| +33711|725332|F|184907.23|1993-01-07|5-LOW|Clerk#000004085|0|er the slyly ironic foxes. car| +33736|145186|F|208121.59|1994-06-14|1-URGENT|Clerk#000000063|0|y across the furious excuses. quickly | +33737|372598|O|60665.06|1996-11-17|2-HIGH|Clerk#000000468|0| even platelets sleep carefully about the bl| +33738|477145|O|59435.81|1996-12-27|1-URGENT|Clerk#000001070|0| boost blithely among the packages. reques| +33739|352157|F|40803.04|1993-04-24|1-URGENT|Clerk#000002758|0| wake fluffily slyly final dependencies. final, final foxes mold carefully| +33740|441446|F|160423.43|1992-12-18|4-NOT SPECIFIED|Clerk#000004961|0|ar decoys among the accounts haggle evenly among the fox| +33741|370412|O|208297.60|1996-08-25|4-NOT SPECIFIED|Clerk#000000706|0|tions. slyly unusual ideas print furiously. dolphins above the carefull| +33742|502486|O|144897.31|1998-04-10|5-LOW|Clerk#000000135|0|l packages above the quickly ironic instructions slee| +33743|265091|F|124874.57|1993-12-22|4-NOT SPECIFIED|Clerk#000003190|0|. bold requests use furiously. quickly unusual packages again| +33768|381839|F|65741.10|1995-03-18|4-NOT SPECIFIED|Clerk#000001693|0|thely pending dependencies. fluffily bold dependencies cajole furiously alo| +33769|566471|F|217671.47|1995-02-04|1-URGENT|Clerk#000003673|0|ld deposits sleep quickly. pinto beans doubt. furio| +33770|165704|O|230839.87|1996-07-19|4-NOT SPECIFIED|Clerk#000001655|0|long the blithely regular instructions wake quickly inside the | +33771|236227|F|271978.41|1992-05-06|2-HIGH|Clerk#000003609|0|y express deposits use slyly according to the closely even grouches. s| +33772|501556|O|34114.41|1997-09-13|2-HIGH|Clerk#000001331|0|. bold, special deposits cajole slyly. packages hag| +33773|368555|O|374869.00|1998-03-12|4-NOT SPECIFIED|Clerk#000004991|0|regular foxes. carefully even instructions are carefully across the careful| +33774|49250|F|329960.86|1995-01-24|5-LOW|Clerk#000003645|0|ag blithely alongside of the expres| +33775|489299|O|126086.33|1998-02-11|5-LOW|Clerk#000000660|0|eas use about the fur| +33800|632087|O|157251.11|1998-04-06|3-MEDIUM|Clerk#000002173|0|r pains detect furiously. carefully ironic s| +33801|479438|F|136132.80|1992-06-25|3-MEDIUM|Clerk#000002459|0|taphs poach slyly? carefully even de| +33802|654055|O|247378.69|1996-07-19|4-NOT SPECIFIED|Clerk#000002794|0|accounts hinder ironic pearls. blithely final requests | +33803|668986|O|212328.44|1996-12-15|3-MEDIUM|Clerk#000003276|0|e. slyly even platelets nag across the id| +33804|365803|O|51742.60|1998-02-08|2-HIGH|Clerk#000001399|0|s cajole blithely regular accou| +33805|270028|O|296417.16|1998-04-10|5-LOW|Clerk#000001295|0|ly unusual packages wake special theodolites.| +33806|84325|O|299157.83|1997-09-10|5-LOW|Clerk#000000422|0|e quickly: enticingly unusual packages are across the regular sentiments; quic| +33807|499855|F|230878.04|1992-08-10|1-URGENT|Clerk#000001478|0|. pending theodolites kindle blithely carefully| +33832|297392|O|116081.47|1998-06-30|2-HIGH|Clerk#000000717|0|y ironic sheaves breach fluffily. ironic asymptotes affix slyly ironic court| +33833|266797|F|192718.67|1993-12-29|5-LOW|Clerk#000000450|0|s asymptotes. quickly special excuses haggle carefully| +33834|543145|F|85236.17|1994-06-09|1-URGENT|Clerk#000003345|0| across the silent, bold req| +33835|368284|F|117824.32|1993-08-21|1-URGENT|Clerk#000003862|0|ickly above the carefully bold reque| +33836|735058|O|78915.19|1996-06-10|2-HIGH|Clerk#000002851|0|te carefully express foxes. carefully final pinto beans| +33837|117587|F|118361.45|1992-02-24|3-MEDIUM|Clerk#000000116|0|ajole regular instructions. slyly ironic warthogs cajole fluffily: accounts| +33838|25783|F|113923.53|1994-09-08|4-NOT SPECIFIED|Clerk#000001480|0|sly even ideas wake accounts. even ideas above the car| +33839|572191|O|55163.02|1998-05-25|2-HIGH|Clerk#000004279|0|s after the express instructions maintain slyly furiously final platelets. b| +33864|290581|O|51462.30|1998-07-26|3-MEDIUM|Clerk#000002782|0|y express sentiments. blithely ironic warthogs above the slyly| +33865|527003|O|167610.35|1997-06-03|4-NOT SPECIFIED|Clerk#000003110|0|sleep blithely against the slyly unusual requests. even, final pinto| +33866|577712|O|53374.56|1996-05-14|3-MEDIUM|Clerk#000002499|0|theodolites doubt against the re| +33867|95863|O|15920.43|1998-05-26|1-URGENT|Clerk#000000920|0|bold deposits. furiously regular requests bel| +33868|157249|F|146249.23|1992-05-06|4-NOT SPECIFIED|Clerk#000004724|0|s courts x-ray furiously across the | +33869|628435|O|124027.80|1995-10-23|1-URGENT|Clerk#000004478|0| wake blithely quickly express deposits; thinly| +33870|576464|F|31328.67|1993-05-21|5-LOW|Clerk#000003118|0|ions. special requests cajole furiously about the st| +33871|127664|F|127943.19|1993-07-19|2-HIGH|Clerk#000003636|0|pecial excuses. furi| +33896|633892|O|49461.59|1997-02-16|1-URGENT|Clerk#000002274|0|s boost blithely ironic ideas. fluffily ironic pinto beans| +33897|61651|O|224981.34|1997-04-02|2-HIGH|Clerk#000002018|0|es. slyly special acc| +33898|411907|F|223865.27|1992-01-23|3-MEDIUM|Clerk#000001671|0|silent dinos sleep blithely special accounts. furiously ironic depen| +33899|396713|O|225323.41|1996-04-14|3-MEDIUM|Clerk#000003023|0|ts wake blithely. fluffily even theodolites print fl| +33900|39040|F|184126.96|1992-04-23|5-LOW|Clerk#000003008|0|ites sleep carefully at the slyly even instru| +33901|634333|F|108464.09|1993-06-04|4-NOT SPECIFIED|Clerk#000004018|0|deposits hinder about the furiously regular ideas-- s| +33902|722104|O|92418.89|1997-09-02|2-HIGH|Clerk#000004780|0|sly regular deposits. fluffily bold theod| +33903|637375|F|53355.83|1993-12-04|1-URGENT|Clerk#000001163|0| accounts use quickly about the| +33928|85270|O|53689.87|1998-02-13|3-MEDIUM|Clerk#000002482|0|fully ironic accounts across the dependencies integrate slyly| +33929|627002|F|327972.02|1994-01-23|2-HIGH|Clerk#000000348|0|ckly above the carefully special packages. furiously regular asym| +33930|522448|O|87111.38|1997-02-15|2-HIGH|Clerk#000002761|0|into beans wake carefully furiously| +33931|510394|O|313726.55|1997-07-14|5-LOW|Clerk#000002814|0|ans along the ideas use express theodolites: carefully regular foxes are| +33932|411550|O|294577.59|1995-10-08|3-MEDIUM|Clerk#000002093|0| theodolites doubt according to the carefully regular ideas. carefully special| +33933|394490|F|88222.75|1992-01-26|3-MEDIUM|Clerk#000002550|0|cial asymptotes. quickly ironic pinto beans boost furiousl| +33934|183944|O|278709.33|1997-04-13|3-MEDIUM|Clerk#000003208|0|slyly bold deposits. regular, regular waters sleep regular, bold ide| +33935|33820|F|115821.05|1992-05-03|4-NOT SPECIFIED|Clerk#000001754|0|ites according to the slyly regular deposits run | +33960|636979|O|51698.90|1995-09-08|2-HIGH|Clerk#000001187|0|ges. special packages boost slyly | +33961|189356|O|90421.58|1996-04-16|1-URGENT|Clerk#000001711|0| quickly up the final sheaves. speci| +33962|249214|F|193878.89|1994-07-20|3-MEDIUM|Clerk#000004055|0|ly. carefully regular accounts sleep slyly final warhorses. carefully pending| +33963|528802|F|1639.11|1992-02-13|1-URGENT|Clerk#000002044|0|. slyly even instructions sleep slyly. silent theodolites n| +33964|57193|O|281223.45|1998-06-29|3-MEDIUM|Clerk#000000341|0|ly furiously ironic packages. fluf| +33965|472939|O|185591.92|1998-06-24|5-LOW|Clerk#000001452|0|ss requests wake bol| +33966|181715|O|257659.94|1996-12-14|3-MEDIUM|Clerk#000000124|0|o beans boost slyly theodolites. furiou| +33967|80716|O|76361.93|1995-08-14|2-HIGH|Clerk#000003265|0|pecial theodolites; specia| +33992|571628|O|171341.41|1996-06-29|2-HIGH|Clerk#000003626|0|ically express deposits sleep fin| +33993|597682|O|153431.36|1998-04-20|4-NOT SPECIFIED|Clerk#000003037|0|fily even deposits. fluffily| +33994|490256|O|255432.67|1997-09-11|2-HIGH|Clerk#000001082|0|ackages sleep. regular pinto beans against the quickly final instructions | +33995|231823|O|194337.07|1996-08-31|4-NOT SPECIFIED|Clerk#000003930|0|yly across the ironically dogged a| +33996|737842|F|4259.52|1992-03-14|1-URGENT|Clerk#000003417|0|s the even packages are | +33997|379717|O|39735.24|1998-07-13|2-HIGH|Clerk#000004575|0|e. packages haggle. fluffily | +33998|141130|F|61044.50|1992-09-23|1-URGENT|Clerk#000003137|0| ironic packages. fi| +33999|441815|O|55964.72|1997-12-15|4-NOT SPECIFIED|Clerk#000002388|0|ng the unusual, regular pinto beans. pending d| +34024|582391|F|183113.04|1994-04-02|3-MEDIUM|Clerk#000004894|0| above the slyly sly pac| +34025|734726|O|182963.45|1996-03-19|5-LOW|Clerk#000004795|0|gular dolphins maintain. furiously express deposits grow fluffily al| +34026|532747|O|115452.61|1996-04-06|3-MEDIUM|Clerk#000000033|0|s boost fluffily special requests. dolphins are | +34027|363814|O|157852.76|1998-06-06|5-LOW|Clerk#000002481|0|ggle furiously above the fluffily final r| +34028|592411|O|185590.57|1997-07-12|1-URGENT|Clerk#000002094|0| bold asymptotes nag slyly. regular deposits according to the pend| +34029|381653|O|86291.30|1997-10-06|5-LOW|Clerk#000000561|0|lyly silent accounts. ironically final ideas sleep. slyly express i| +34030|438949|F|205514.78|1993-04-06|2-HIGH|Clerk#000001928|0|nstructions? regular pl| +34031|389803|F|10253.89|1994-12-21|1-URGENT|Clerk#000000079|0|integrate blithely against the dogged accounts. blithely special accounts | +34056|148807|O|298687.55|1997-06-04|2-HIGH|Clerk#000003891|0|ts nag across the fluffily regular dependencies. | +34057|467062|O|160996.00|1997-06-19|3-MEDIUM|Clerk#000004270|0|es. pinto beans affix furiously silent de| +34058|388129|F|236381.02|1992-05-22|2-HIGH|Clerk#000000044|0|ts use slyly ironic foxes. quickly special ideas haggle carefully blithel| +34059|502444|F|190609.71|1993-05-29|4-NOT SPECIFIED|Clerk#000003095|0|ckly pending accounts; id| +34060|325558|O|232922.82|1996-11-04|1-URGENT|Clerk#000000170|0|e epitaphs. bold, unusual theodolites wake. | +34061|376553|O|120522.74|1997-06-25|5-LOW|Clerk#000000538|0| evenly silent ideas breach carefully bold fox| +34062|215164|O|324354.75|1996-10-13|2-HIGH|Clerk#000003524|0|lessly along the quickly busy d| +34063|504481|F|59354.97|1994-07-31|1-URGENT|Clerk#000004908|0|l theodolites sleep special, regular deposits. carefully ironic dolphin| +34088|61543|O|37096.69|1997-03-28|4-NOT SPECIFIED|Clerk#000001837|0|ly pending courts lose after| +34089|71402|O|203956.13|1997-06-20|4-NOT SPECIFIED|Clerk#000000657|0|foxes. express accounts are against the packages; b| +34090|49688|F|112817.81|1994-12-30|1-URGENT|Clerk#000000347|0|lyly unusual ideas sleep slyly final accounts.| +34091|352235|O|164856.83|1997-10-26|3-MEDIUM|Clerk#000002364|0| requests. final, even packages haggle carefully epitaphs. packages aroun| +34092|258760|F|137420.17|1992-09-08|1-URGENT|Clerk#000003222|0|. furiously special ideas about the quickly even ac| +34093|449183|F|201007.90|1993-04-06|3-MEDIUM|Clerk#000004706|0|. slyly special grouches after the express, ir| +34094|662404|O|30788.67|1997-03-21|5-LOW|Clerk#000002421|0|its wake atop the deposits. blithely silent pinto beans impress slyly | +34095|744010|O|20922.28|1997-06-30|4-NOT SPECIFIED|Clerk#000004918|0|thely with the blithely daring accounts. furiously silent forges hinder bli| +34120|548131|F|112011.51|1992-09-02|5-LOW|Clerk#000000109|0| blithely. quickly final accounts according to the id| +34121|174577|F|251006.74|1993-11-22|3-MEDIUM|Clerk#000001232|0|ges use against the fluffily ironic pinto be| +34122|86134|F|344039.34|1993-04-27|2-HIGH|Clerk#000001030|0|platelets since the final ideas wake quickly | +34123|128492|F|153195.73|1994-08-11|4-NOT SPECIFIED|Clerk#000002496|0|efully blithely final requests. bold foxes print furiously above t| +34124|304520|F|33075.18|1995-03-02|2-HIGH|Clerk#000000780|0|sits. carefully special excuses cajo| +34125|56395|O|98624.20|1998-06-27|3-MEDIUM|Clerk#000003915|0|lyly final accounts-- slyly re| +34126|564304|F|19102.06|1992-09-16|3-MEDIUM|Clerk#000003189|0|o beans cajole carefully carefully sly theodolites. pend| +34127|474650|O|179303.84|1998-03-22|1-URGENT|Clerk#000001170|0|efully idle foxes along| +34152|433990|F|72645.38|1994-11-06|5-LOW|Clerk#000002963|0|print slyly according to the accounts. furiously bold req| +34153|312010|O|44330.35|1996-09-19|3-MEDIUM|Clerk#000004739|0|ep boldly. even deposits affix carefully. blithe| +34154|669445|F|121191.17|1994-05-17|3-MEDIUM|Clerk#000002642|0|p quickly carefully ironic packages. unusual depos| +34155|598852|F|42178.84|1993-09-03|1-URGENT|Clerk#000002504|0|n packages are carefully. bold, ironic instructions | +34156|634469|F|177640.62|1994-05-18|2-HIGH|Clerk#000002469|0|dolites wake blithely slyly regular notornis.| +34157|7561|P|84467.41|1995-03-24|3-MEDIUM|Clerk#000002454|0|gle carefully. regular, special req| +34158|302267|F|43577.96|1994-08-15|5-LOW|Clerk#000004162|0|uriously even deposi| +34159|451459|F|172181.54|1993-11-18|2-HIGH|Clerk#000000226|0|inal deposits. special packages nag slyly above the pending pi| +34184|638527|O|56188.32|1998-04-02|3-MEDIUM|Clerk#000004391|0|press gifts are about the final, close instructi| +34185|711116|O|311767.02|1995-11-19|4-NOT SPECIFIED|Clerk#000000900|0|ounts cajole among th| +34186|471985|O|108075.07|1997-09-14|5-LOW|Clerk#000001022|0| use blithely along the pinto beans? special account| +34187|630376|F|122511.59|1994-01-02|1-URGENT|Clerk#000000395|0|ven accounts boost alongside of the slyly even | +34188|219110|F|251494.57|1994-03-01|4-NOT SPECIFIED|Clerk#000000635|0|ideas across the qui| +34189|70376|F|61217.02|1993-07-10|5-LOW|Clerk#000000908|0|dolites. furiously even requests sleep slyly. slyly final asymptotes along t| +34190|53293|O|217020.83|1996-09-25|5-LOW|Clerk#000001598|0|sits. unusual packages cajole furiously. fur| +34191|163648|O|102665.32|1997-06-08|2-HIGH|Clerk#000003255|0| to the carefully special pinto beans sleep furiously after the quickly| +34216|158327|O|152420.84|1996-03-22|5-LOW|Clerk#000004469|0|hely. fluffily special asymptotes cajole blithely-- furiously express packages| +34217|749587|F|136480.38|1993-05-18|5-LOW|Clerk#000002661|0|ly fluffily regular accounts! furiously silent deposits at th| +34218|526519|F|9833.95|1992-08-22|3-MEDIUM|Clerk#000002790|0|he blithely regular deposits boost furiously at the carefully u| +34219|673858|O|202355.28|1997-02-28|2-HIGH|Clerk#000001210|0|kly silent deposits. silent, unusual packages solve quickly | +34220|523397|F|20713.90|1994-12-29|1-URGENT|Clerk#000000527|0| foxes detect quickly pending packag| +34221|724855|O|84336.74|1996-04-14|1-URGENT|Clerk#000003486|0|ependencies sleep blithely. quickly regular packages haggle bli| +34222|355054|O|265163.66|1998-05-02|1-URGENT|Clerk#000004368|0|riously regular warhorses. quickly final foxes cajole carefully furiously r| +34223|359962|P|86904.72|1995-05-23|2-HIGH|Clerk#000001781|0|nic ideas wake. ironic pinto beans slee| +34248|367883|F|118083.41|1993-05-22|3-MEDIUM|Clerk#000004676|0|ding excuses. ironic ideas need to play bravely regular pinto b| +34249|744518|F|257047.85|1994-07-30|2-HIGH|Clerk#000001507|0|nic pinto beans boost theodoli| +34250|99286|O|85420.01|1998-01-17|1-URGENT|Clerk#000001483|0| blithely furiously final pinto beans. quickly ironic theodolites t| +34251|697088|F|182593.47|1993-06-26|2-HIGH|Clerk#000001989|0|cording to the final dependencies haggle about the furiously ironic notorni| +34252|194908|O|384222.33|1996-05-29|3-MEDIUM|Clerk#000003604|0|gle alongside of the furiously r| +34253|546496|F|158007.51|1992-07-10|3-MEDIUM|Clerk#000000729|0|final packages: ironic, regular waters sleep ev| +34254|433447|F|32316.61|1993-12-11|1-URGENT|Clerk#000002152|0|lly unusual excuses. ex| +34255|169790|F|280213.29|1993-11-16|5-LOW|Clerk#000002978|0|ckly special deposits. specia| +34280|650098|O|348512.69|1998-02-23|2-HIGH|Clerk#000001232|0|s. stealthy platelets use at the blithely even instructions.| +34281|164935|O|262696.08|1995-10-25|4-NOT SPECIFIED|Clerk#000000969|0|inal deposits. dolphins use quickly final deposi| +34282|41203|F|69645.37|1992-11-25|5-LOW|Clerk#000004282|0|al accounts are slyly.| +34283|231331|F|48783.24|1994-01-24|5-LOW|Clerk#000002189|0|he slyly ironic accounts are caref| +34284|703202|F|87320.66|1994-10-28|5-LOW|Clerk#000004479|0|ncies. slyly ironic platelets sleep carefully according to the slyly| +34285|212158|F|262156.73|1992-01-14|5-LOW|Clerk#000000912|0|affix among the final dependencies. quiet, regular deposi| +34286|227095|O|253313.19|1996-10-30|1-URGENT|Clerk#000001787|0|c theodolites maintain slyly. unusual accounts haggle f| +34287|30742|O|224258.29|1996-01-26|4-NOT SPECIFIED|Clerk#000003997|0|quickly silent dolphins-- final theodolites wake blithely | +34312|675776|F|174359.04|1992-04-17|2-HIGH|Clerk#000003234|0|al pinto beans. carefully unusu| +34313|502723|O|109143.64|1996-10-17|2-HIGH|Clerk#000003586|0|y even foxes. pinto beans above the| +34314|492553|O|199445.47|1996-08-20|1-URGENT|Clerk#000000558|0|inst the even sauternes. fluffily final excuses haggle sl| +34315|562882|P|73502.22|1995-04-02|5-LOW|Clerk#000000217|0|the closely final warhorses cajole i| +34316|575179|F|61971.15|1994-05-24|3-MEDIUM|Clerk#000004112|0|onic foxes. blithely ironic pinto | +34317|260537|O|249590.84|1997-07-12|2-HIGH|Clerk#000002166|0|y special courts are carefully across the silent re| +34318|339062|F|47680.89|1995-02-22|3-MEDIUM|Clerk#000004549|0|ly special tithes. slyly regular dependen| +34319|101776|O|24104.49|1997-10-07|3-MEDIUM|Clerk#000000365|0|ckly blithely enticing deposits-- even ideas hang quickl| +34344|542335|F|50551.80|1994-01-23|2-HIGH|Clerk#000002935|0|rts. final platelets are.| +34345|253888|F|335395.45|1993-02-11|5-LOW|Clerk#000000177|0| x-ray carefully slyly ironic instructions. express| +34346|333775|F|149836.80|1994-07-12|2-HIGH|Clerk#000003913|0|efully. final, idle theodolites a| +34347|479140|F|272350.15|1993-10-31|4-NOT SPECIFIED|Clerk#000003838|0|cies cajole slyly. pinto beans sleep fluffily. carefully fluffy pint| +34348|124870|F|386083.11|1993-01-15|1-URGENT|Clerk#000001715|0|ong the blithely even requests. special, dogged foxes thrash quickly about t| +34349|176897|F|49765.76|1994-01-05|3-MEDIUM|Clerk#000002433|0|ding accounts. furiously regular ideas are. | +34350|102688|O|61718.61|1998-07-27|1-URGENT|Clerk#000002683|0|ld packages sleep blithely across th| +34351|103166|O|88207.93|1998-01-02|5-LOW|Clerk#000002352|0| the special dugouts. furiously bold deposi| +34376|654592|F|74797.08|1992-07-26|1-URGENT|Clerk#000004394|0|endencies. fluffily pending forges hagg| +34377|726256|F|99666.43|1993-08-01|3-MEDIUM|Clerk#000004868|0|eposits. unusual instructions cajole always furiously ironic pa| +34378|673997|F|174997.20|1994-02-16|3-MEDIUM|Clerk#000004135|0|as. foxes cajole regular, unusual packages. fin| +34379|613777|O|23298.53|1998-06-05|1-URGENT|Clerk#000001869|0|xpress requests wake fluffily with the furiously unusual foxes. qu| +34380|239060|F|71778.26|1992-06-04|1-URGENT|Clerk#000003091|0|eodolites. ironic, carefu| +34381|120490|F|76073.19|1992-11-01|5-LOW|Clerk#000001962|0|dolites. carefully final theodolites sle| +34382|63449|F|40439.96|1992-12-27|3-MEDIUM|Clerk#000000695|0|rate slyly unusual dugouts. iron| +34383|633832|O|40019.02|1997-08-02|2-HIGH|Clerk#000000910|0|sts. regular asymptotes sleep. pending r| +34408|556939|F|82682.42|1992-04-27|3-MEDIUM|Clerk#000003745|0|inal, special instructio| +34409|465469|F|2654.58|1995-03-08|5-LOW|Clerk#000002129|0|ly bold pinto beans sleep c| +34410|624574|O|67675.66|1997-08-28|3-MEDIUM|Clerk#000003030|0|he carefully final packages nag quickly ironic theodolites. furiously regular| +34411|213692|O|161433.87|1996-11-24|3-MEDIUM|Clerk#000003284|0|fter the fluffily special deposits| +34412|507038|F|36795.41|1993-10-04|4-NOT SPECIFIED|Clerk#000002555|0|p quickly. silent instructions above the regular theodolites sl| +34413|281819|F|221765.67|1995-01-10|5-LOW|Clerk#000001168|0| deposits nag about the pending dolphins. regular accounts alo| +34414|273007|F|96205.46|1993-02-08|5-LOW|Clerk#000002546|0| requests cajole blithely according to the regular foxes. accounts al| +34415|657526|F|181581.80|1993-09-17|3-MEDIUM|Clerk#000004702|0|nusual accounts maintain-- caref| +34440|531079|F|170375.60|1992-05-10|1-URGENT|Clerk#000000338|0|lyly regular accounts are blithely aft| +34441|88258|F|114464.51|1995-02-25|1-URGENT|Clerk#000001699|0|ays regular foxes. carefully regular escapades wake furiously final| +34442|585319|O|68808.96|1996-05-05|2-HIGH|Clerk#000004239|0|express pinto beans cajole. furiously bold frets haggle slyly of the ironic| +34443|454931|O|145975.97|1997-04-05|1-URGENT|Clerk#000003524|0|s print about the slyly even pinto beans. blithe| +34444|510442|O|22592.15|1997-09-12|4-NOT SPECIFIED|Clerk#000002613|0|y special instructions cajole blithe| +34445|480613|F|271888.59|1993-03-22|1-URGENT|Clerk#000001447|0|final deposits. ironically unusual excuses are special ideas. ironic, regula| +34446|133055|F|32445.98|1992-11-17|4-NOT SPECIFIED|Clerk#000002875|0|ernes. ironic packages | +34447|492235|F|215086.67|1992-05-14|1-URGENT|Clerk#000003695|0|usual requests detect furiously above the quic| +34472|469388|O|217768.86|1996-06-29|2-HIGH|Clerk#000004373|0|quests detect fluffily about the unusual, care| +34473|492634|O|164333.91|1995-10-23|2-HIGH|Clerk#000004636|0|counts. special, express packages are furiously. ev| +34474|448783|O|216807.31|1997-12-09|2-HIGH|Clerk#000000366|0|ly even dependencies. blithely unusua| +34475|668240|F|193080.61|1993-04-01|2-HIGH|Clerk#000003129|0|lets? blithely final instructions haggle slyly among the quickly b| +34476|606598|F|128804.36|1993-01-28|2-HIGH|Clerk#000000626|0|ts are busily. furiously spec| +34477|313073|F|88222.40|1992-12-02|4-NOT SPECIFIED|Clerk#000004939|0|ithely. deposits cajole. daringly even package| +34478|556945|F|252536.90|1995-01-20|2-HIGH|Clerk#000000945|0|x-ray about the furiously even excuses-- regular, express asy| +34479|554008|F|114223.94|1992-01-15|4-NOT SPECIFIED|Clerk#000004045|0| the bold requests. | +34504|711572|O|63021.55|1997-01-25|5-LOW|Clerk#000002034|0|lly even Tiresias haggle. qu| +34505|626702|F|253148.21|1992-05-07|5-LOW|Clerk#000002196|0|long the packages. thinly ironic excuses grow quickly bold requests. ac| +34506|715981|F|220233.24|1994-01-25|5-LOW|Clerk#000002162|0|he fluffily express deposits. special packages cajole furiously about the b| +34507|477577|O|125328.61|1996-02-22|4-NOT SPECIFIED|Clerk#000000678|0|requests. slyly ironic attainments nod alongside of | +34508|108281|O|39261.10|1997-11-06|5-LOW|Clerk#000001095|0|ounts. carefully special packages haggle furiously above the furiously| +34509|373270|O|151960.57|1995-05-14|2-HIGH|Clerk#000001866|0|e quickly above the sl| +34510|527621|O|108146.52|1995-06-22|1-URGENT|Clerk#000004364|0|counts. carefully unusual dugo| +34511|468497|O|155748.06|1995-12-28|2-HIGH|Clerk#000004159|0|y silent deposits use. final packages after the even, regular accoun| +34536|516052|F|131205.52|1992-03-25|3-MEDIUM|Clerk#000004533|0|ep furiously about the slyly final ideas. furious| +34537|263933|O|31516.60|1997-05-25|1-URGENT|Clerk#000003638|0|cross the unusual requests. slyly ironic foxes shall haggle. blithely r| +34538|417859|O|73255.77|1995-05-27|3-MEDIUM|Clerk#000002904|0|final requests are even packages. enticin| +34539|691573|F|187607.71|1992-07-24|3-MEDIUM|Clerk#000003543|0|the regular foxes haggle about the final pinto beans? quickly final acc| +34540|497341|O|96974.78|1996-12-17|2-HIGH|Clerk#000000761|0|gle at the evenly even ideas. | +34541|53711|F|50504.24|1994-08-12|3-MEDIUM|Clerk#000003407|0|nstructions affix blithely about the furiously pending instructions. special| +34542|467675|O|113327.90|1996-05-23|3-MEDIUM|Clerk#000000795|0|ix blithely above the furiously unusual deposits: carefully pending| +34543|205618|O|1403.19|1997-08-08|2-HIGH|Clerk#000002510|0|l foxes boost carefully carefully ironic ideas. special forges cajol| +34568|538363|O|195615.93|1998-04-16|2-HIGH|Clerk#000003842|0|blithely express attainments; regular excuses haggl| +34569|249497|O|189336.52|1996-07-10|2-HIGH|Clerk#000001281|0|y ironic pinto beans integrate carefully regular sauternes. furiously busy | +34570|42830|O|123588.81|1996-06-09|4-NOT SPECIFIED|Clerk#000001317|0|ans integrate across the carefully quic| +34571|581902|F|33280.28|1993-01-04|3-MEDIUM|Clerk#000004379|0|g to the carefully ironic theodolites? slyly even pinto be| +34572|16639|F|13464.56|1992-11-09|1-URGENT|Clerk#000004540|0| affix slyly across the evenly express asymptotes. blit| +34573|646769|O|211189.44|1995-06-27|1-URGENT|Clerk#000003520|0|the foxes. furiously express instructions above the slyly even waters sublate | +34574|489637|O|45534.60|1998-03-24|5-LOW|Clerk#000003957|0| final pinto beans. quickly express multipliers bo| +34575|312734|F|174597.11|1992-07-13|3-MEDIUM|Clerk#000001026|0| accounts are furiously. requests nag.| +34600|111241|O|155079.62|1996-08-06|5-LOW|Clerk#000002043|0|accounts. blithely ironic accounts across | +34601|626386|O|348796.42|1998-07-09|2-HIGH|Clerk#000000432|0|express orbits above the slyly even deposits integrate f| +34602|643502|F|167594.74|1994-05-25|2-HIGH|Clerk#000004747|0|e blithely quickly unusual ideas. express requests nag aga| +34603|323993|O|156587.84|1996-06-27|1-URGENT|Clerk#000002116|0| pinto beans. finally unusual accounts along the ideas boost quickly abou| +34604|346816|F|209872.63|1992-03-10|3-MEDIUM|Clerk#000002799|0|slyly above the final accounts. carefull| +34605|678052|F|110389.12|1993-04-02|4-NOT SPECIFIED|Clerk#000000346|0|y bold excuses lose always slyly bold dependencies. regular pinto bea| +34606|512474|O|194456.38|1997-05-05|1-URGENT|Clerk#000004285|0|arefully regular pinto beans. expr| +34607|144652|F|232345.50|1992-11-22|5-LOW|Clerk#000004069|0| regular packages use slyly. carefully ironic foxes integrate blithel| +34632|383902|F|233024.55|1994-09-06|1-URGENT|Clerk#000000283|0| stealthily around the furiously | +34633|735934|O|99209.64|1996-02-17|5-LOW|Clerk#000003220|0|e quickly pending exc| +34634|561142|F|99653.15|1992-01-27|2-HIGH|Clerk#000003267|0|s boost blithely about the furiously ironic requests| +34635|593830|O|199373.74|1997-10-05|5-LOW|Clerk#000000744|0|nts after the ideas sleep accor| +34636|239503|O|72983.82|1998-03-24|2-HIGH|Clerk#000002304|0|uriously according to the special courts. furiously | +34637|61559|F|239550.77|1993-04-02|2-HIGH|Clerk#000000443|0|ly bold pearls cajole carefully ironic ideas. finally unus| +34638|364744|F|153199.43|1994-11-04|1-URGENT|Clerk#000003910|0|e fluffily even requests boost c| +34639|500410|F|154372.51|1993-09-05|2-HIGH|Clerk#000003593|0| ironic platelets. even, brave requests cajole carefully bol| +34664|634219|F|340897.91|1994-09-12|2-HIGH|Clerk#000002308|0|print quietly after the e| +34665|289016|F|57258.70|1993-03-14|2-HIGH|Clerk#000001638|0|onic packages. regular reques| +34666|481201|O|122507.68|1998-02-09|3-MEDIUM|Clerk#000004080|0|e quickly fluffily even attainments. fluffily regular dolphins wa| +34667|276406|F|170620.61|1994-01-03|2-HIGH|Clerk#000003958|0|ng deposits. slyly regular theodolites integrate fluf| +34668|35030|F|83189.08|1994-12-26|1-URGENT|Clerk#000002793|0|ently. slyly pending excuses| +34669|746300|F|12081.71|1995-03-07|2-HIGH|Clerk#000000336|0|nt instructions! regularl| +34670|52987|F|276111.76|1995-02-11|5-LOW|Clerk#000003508|0|the final ideas solve quickly whithout the foxes! courts affix after the| +34671|294239|F|257785.20|1993-12-04|5-LOW|Clerk#000001441|0|ticingly regular deposits wake blithely against the carefully iron| +34696|515734|F|33368.26|1992-05-10|4-NOT SPECIFIED|Clerk#000000710|0|eodolites wake carefully quick| +34697|179416|F|307899.04|1994-01-13|5-LOW|Clerk#000004425|0|ly even accounts along the unusual pinto beans wake q| +34698|426274|F|138719.93|1994-08-02|3-MEDIUM|Clerk#000004186|0|ding deposits play. quickly ironic instructions nag ironic, | +34699|370220|O|43621.50|1998-05-12|1-URGENT|Clerk#000004075|0|ructions. slyly fina| +34700|283559|O|154072.02|1998-02-01|5-LOW|Clerk#000004458|0|uickly even requests cajole boldly above the even requests. platelets boo| +34701|259361|O|102536.39|1997-12-20|1-URGENT|Clerk#000000451|0|gle. evenly bold packages sleep alo| +34702|79861|O|122173.45|1995-07-30|1-URGENT|Clerk#000000775|0|eans integrate furiously blithely even orb| +34703|457087|O|53297.82|1996-10-17|3-MEDIUM|Clerk#000000901|0|gle carefully around th| +34728|746711|O|107567.20|1998-06-07|1-URGENT|Clerk#000002481|0|equests wake quickly above the blithely ironic packages. sometimes ironic depo| +34729|215084|O|53106.42|1995-06-25|5-LOW|Clerk#000003048|0| regular accounts. bold, even dep| +34730|653740|O|7180.83|1995-07-21|3-MEDIUM|Clerk#000001072|0|ideas. ironic deposits sleep slyly around the ironic theo| +34731|651994|O|171261.88|1997-12-14|1-URGENT|Clerk#000002549|0|ironic accounts. caref| +34732|532253|O|1382.33|1997-10-10|1-URGENT|Clerk#000000770|0|ithely final dolphins| +34733|311395|F|200810.71|1992-06-02|2-HIGH|Clerk#000002234|0| packages wake. depths nag fluffily slyly pending instru| +34734|103882|F|273955.80|1992-10-04|5-LOW|Clerk#000003826|0|blithely express requests are carefully regular reque| +34735|671230|O|48471.19|1997-02-08|2-HIGH|Clerk#000003372|0|ress packages sleep bli| +34760|589438|O|157453.08|1997-10-16|4-NOT SPECIFIED|Clerk#000001338|0|ully express, final foxes. ironic deposits| +34761|669215|F|170943.83|1994-04-29|3-MEDIUM|Clerk#000001023|0|pecial deposits. special, regular theo| +34762|496270|O|91093.40|1996-06-21|2-HIGH|Clerk#000001561|0|o beans. quickly regular packa| +34763|53260|F|105261.52|1993-05-30|4-NOT SPECIFIED|Clerk#000000922|0|olites haggle slyly unusual accounts: silent packages integrate furious| +34764|376276|F|89948.17|1992-02-20|1-URGENT|Clerk#000001181|0|es. blithely unusual foxes sleep slyly final packages. instruct| +34765|43603|O|39125.66|1996-01-06|4-NOT SPECIFIED|Clerk#000001584|0|ar, regular Tiresias use permanen| +34766|65854|O|159169.74|1996-03-31|3-MEDIUM|Clerk#000003960|0|es according to the slyly regular accounts are bli| +34767|555823|O|264533.17|1996-01-25|3-MEDIUM|Clerk#000000716|0|ously slyly regular packages. final| +34792|442996|O|79311.67|1997-04-25|1-URGENT|Clerk#000001926|0|cajole quickly: blithely express packag| +34793|152485|O|130561.97|1996-07-20|3-MEDIUM|Clerk#000001197|0|y unusual accounts. foxes wake slyly. special t| +34794|59176|O|201413.31|1996-01-22|2-HIGH|Clerk#000002884|0| packages. even ideas use. slyly b| +34795|65579|F|85258.83|1994-09-21|5-LOW|Clerk#000004286|0|ter the carefully furious frays. carefully special theodolites nag regular | +34796|429968|F|46318.05|1992-02-26|1-URGENT|Clerk#000000982|0|even, daring pinto beans! bold ideas wa| +34797|217936|O|25310.07|1996-06-11|5-LOW|Clerk#000004125|0|ithely. ironic, express packages thrash. slyly | +34798|570749|O|178579.93|1996-07-30|3-MEDIUM|Clerk#000003223|0|unusual platelets: always re| +34799|62203|F|206281.23|1992-04-20|1-URGENT|Clerk#000004613|0|ajole above the accounts; furiously regular requests wake slyly quickly f| +34824|662234|F|34565.65|1994-09-27|1-URGENT|Clerk#000004791|0|ctions. ironic excuses sleep fluffily around th| +34825|163297|O|138010.68|1996-02-23|1-URGENT|Clerk#000003139|0|ve the slyly bold platelets. blithely pending exc| +34826|277075|F|19052.61|1993-09-10|3-MEDIUM|Clerk#000000725|0|onic accounts. furiously | +34827|41197|O|72158.38|1998-02-03|2-HIGH|Clerk#000000950|0|ys special accounts are blithely. evenly iro| +34828|128569|F|293590.86|1993-02-17|4-NOT SPECIFIED|Clerk#000004274|0|thes sleep blithely. ideas after the quickly ironi| +34829|79160|F|15881.31|1994-11-11|4-NOT SPECIFIED|Clerk#000000805|0| furiously special pearl| +34830|675376|O|362969.08|1996-07-03|3-MEDIUM|Clerk#000003837|0|ual requests are blithely. slyly final packages are carefully. | +34831|536201|F|257575.25|1992-07-24|5-LOW|Clerk#000003442|0| somas. blithely regular deposits cajole fina| +34856|663724|O|181350.78|1995-10-20|4-NOT SPECIFIED|Clerk#000001579|0| across the packages are slyly regular instructions. blithely unusual instru| +34857|436919|O|150254.86|1995-11-10|3-MEDIUM|Clerk#000002615|0|ily pending dependencies. slyly regular tithes nag. fluffily expre| +34858|45151|F|221295.17|1992-07-12|5-LOW|Clerk#000001954|0|s the final asymptotes haggle slyly| +34859|579103|O|181037.62|1998-06-02|1-URGENT|Clerk#000000461|0|k deposits sleep fluffily thin, u| +34860|231248|O|228477.88|1997-11-07|1-URGENT|Clerk#000002131|0|ly above the bold f| +34861|73781|F|50760.98|1994-10-05|1-URGENT|Clerk#000004053|0|tes haggle unusual ideas. fluffi| +34862|282385|F|171805.37|1994-12-24|3-MEDIUM|Clerk#000004646|0|uffily express requests. carefully thin acc| +34863|22243|O|165323.75|1997-01-27|5-LOW|Clerk#000003748|0|unts are quickly alongside of the even instructions. final reque| +34888|319040|F|56227.63|1992-03-29|5-LOW|Clerk#000004219|0|lyly ironic packages. carefull| +34889|351880|O|12649.32|1995-08-09|4-NOT SPECIFIED|Clerk#000002264|0|ithely enticing, special sentiments.| +34890|289255|F|15003.07|1994-12-18|3-MEDIUM|Clerk#000004311|0|even, express packages after the even theodolites | +34891|737810|F|49107.18|1994-03-02|2-HIGH|Clerk#000002221|0|cial dugouts. regular, express foxes are acro| +34892|619939|O|29231.56|1998-05-07|4-NOT SPECIFIED|Clerk#000004731|0| ironic accounts use thinly final ideas| +34893|295760|F|153807.62|1994-02-19|2-HIGH|Clerk#000000037|0| blithely regular gifts alongside of the even deposits sleep slyly unus| +34894|583549|O|102117.48|1997-04-04|2-HIGH|Clerk#000000889|0|cross the furiously ironic f| +34895|697399|O|257493.30|1995-12-27|4-NOT SPECIFIED|Clerk#000000113|0|nts! unusual, bold packages use slyly dogged inst| +34920|157951|F|336825.79|1993-04-13|3-MEDIUM|Clerk#000000468|0|the regular requests cajole besides | +34921|407186|F|19520.04|1992-03-06|4-NOT SPECIFIED|Clerk#000000691|0|even instructions boost across the carefully unusual | +34922|565691|F|151561.35|1993-09-16|1-URGENT|Clerk#000003944|0| against the furiously even requests. fu| +34923|560212|O|209241.09|1995-11-11|4-NOT SPECIFIED|Clerk#000002087|0|x carefully. final gifts alongside of the final, fin| +34924|730963|F|144582.56|1995-02-23|2-HIGH|Clerk#000002951|0|cial pinto beans sleep about t| +34925|282478|F|218597.07|1994-05-20|3-MEDIUM|Clerk#000002246|0|press requests cajole quickly. ironicall| +34926|98483|O|237484.73|1995-10-04|1-URGENT|Clerk#000004403|0| special accounts. quickly even deposits cajole after the ironic deposit| +34927|693995|O|100101.66|1996-03-11|3-MEDIUM|Clerk#000000106|0|l instructions. even foxes cajole carefully bli| +34952|708277|F|74010.96|1993-10-05|5-LOW|Clerk#000004221|0|ithely. furiously unusual gifts wake carefully. platelets use slyly. furiousl| +34953|749137|F|3017.63|1994-12-28|1-URGENT|Clerk#000000478|0|ers wake carefully; boldly final packages among th| +34954|475384|O|10673.79|1997-02-03|3-MEDIUM|Clerk#000003101|0|its. regular asymptotes nag alongside of the quickly special accounts.| +34955|23764|F|116604.93|1992-01-05|5-LOW|Clerk#000002344|0|even packages. carefully silent theodolites haggle above the bli| +34956|390272|O|197823.55|1998-01-22|1-URGENT|Clerk#000003953|0|ly express realms grow blithely furiously| +34957|536107|O|149351.75|1995-12-17|3-MEDIUM|Clerk#000001305|0|its cajole regularly ironic frets. doggedly bold deposits haggle-- furi| +34958|592654|F|141684.03|1993-02-14|4-NOT SPECIFIED|Clerk#000002174|0|ly pending packages use carefu| +34959|725560|F|227248.16|1994-10-12|4-NOT SPECIFIED|Clerk#000004784|0| bold accounts-- quickly regular foxes cajole slyly| +34984|204970|O|14006.02|1997-07-03|2-HIGH|Clerk#000002734|0| regular asymptotes. e| +34985|172297|O|153753.58|1997-05-16|3-MEDIUM|Clerk#000001553|0|ular packages cajole. final ideas bel| +34986|19627|F|127683.42|1992-04-23|2-HIGH|Clerk#000001850|0|s. carefully final accounts| +34987|597238|O|221488.33|1998-07-13|2-HIGH|Clerk#000001818|0|nag quickly. blithely stealthy dependencies| +34988|522604|F|11753.85|1995-03-06|5-LOW|Clerk#000001615|0|es promise quickly furiously express theod| +34989|129547|O|61865.43|1996-01-11|3-MEDIUM|Clerk#000002263|0| quickly ironic requests sleep. blithely unusual packages run. caref| +34990|18884|O|71521.97|1998-07-28|1-URGENT|Clerk#000001386|0|s. fluffily final deposits except the fo| +34991|132602|F|291964.23|1992-03-31|4-NOT SPECIFIED|Clerk#000001732|0|at the quickly even foxes: fluffily even sentiments sleep quickly. accoun| +35016|390469|F|47729.00|1992-03-16|1-URGENT|Clerk#000000621|0|re above the bold, stealthy requests. regu| +35017|85573|F|52552.10|1994-10-07|5-LOW|Clerk#000002071|0|onic dolphins detect fluffily. blithely bold accounts detect slyly| +35018|470878|F|37185.08|1992-02-18|5-LOW|Clerk#000004098|0|g slyly. sentiments are slyly. blithel| +35019|23008|O|130160.40|1996-11-19|5-LOW|Clerk#000004864|0|ding deposits sleep furiously unusual requests. quickl| +35020|418199|O|86039.25|1996-09-22|5-LOW|Clerk#000002378|0|ies. sometimes unusual packages thrash fluffily about the ca| +35021|415738|O|297319.81|1995-07-04|4-NOT SPECIFIED|Clerk#000000162|0|inst the quickly bold deposits. special dependencies according to the ironic | +35022|295016|O|217339.24|1995-08-11|4-NOT SPECIFIED|Clerk#000003912|0|y above the slyly pending theodolites. quickly regular accounts might nag sly| +35023|69437|F|293173.49|1993-12-26|4-NOT SPECIFIED|Clerk#000004656|0| carefully regular instructions sleep | +35048|16252|O|122557.66|1995-07-20|2-HIGH|Clerk#000003666|0|rious, pending deposits sleep fluffily even, final ins| +35049|116032|F|50755.60|1994-10-21|1-URGENT|Clerk#000002809|0|coys. bold packages use at the regular| +35050|137707|O|65954.58|1995-11-01|5-LOW|Clerk#000000712|0|ffy dependencies are slyly bold dependencies. quick pinto beans abo| +35051|684812|O|259608.76|1996-06-17|4-NOT SPECIFIED|Clerk#000001480|0|ts wake furiously across t| +35052|132709|F|69059.09|1994-07-05|5-LOW|Clerk#000004400|0| carefully pending packages haggle fluffily across the deposit| +35053|656825|O|161243.19|1995-12-11|1-URGENT|Clerk#000002672|0|erns. carefully special deposits wake per| +35054|743593|F|132043.22|1994-06-15|2-HIGH|Clerk#000002325|0| haggle furiously. furiously express platelets nag sometimes i| +35055|302860|O|308370.87|1997-04-11|1-URGENT|Clerk#000002816|0|ly regular instructions sleep-- per| +35080|647231|F|69018.03|1993-12-20|5-LOW|Clerk#000002829|0|ys breach against the even, even excuses. carefully even deposits use furiou| +35081|4312|O|117637.78|1996-10-20|4-NOT SPECIFIED|Clerk#000002023|0|. slyly express requests sleep. final ideas haggle carefully. c| +35082|471379|O|199214.52|1998-01-17|3-MEDIUM|Clerk#000002258|0|. ironic deposits use furiously after the silent deposits. bold dinos haggle b| +35083|185584|F|166310.67|1993-11-12|1-URGENT|Clerk#000000155|0|serve furiously carefully express wa| +35084|583981|O|48804.20|1995-07-23|1-URGENT|Clerk#000002352|0|ts. furiously regular platelets | +35085|459973|O|131814.51|1998-04-11|5-LOW|Clerk#000001973|0|s. blithely pending theodolites mold slyly? regular deposits haggle furious| +35086|509795|F|188825.27|1992-12-14|1-URGENT|Clerk#000004795|0|refully. instructions across the silent accounts wake carefully about the | +35087|122083|F|94960.04|1992-07-27|5-LOW|Clerk#000002042|0|. regular ideas integrate. slyly final accounts c| +35112|574073|P|204718.77|1995-04-07|2-HIGH|Clerk#000003057|0|efully pending packages. furiously pending requests boost carefully| +35113|444568|F|154375.16|1993-01-27|1-URGENT|Clerk#000002838|0|y special ideas. pending, final instructions nag accordin| +35114|340166|F|43473.59|1992-04-07|2-HIGH|Clerk#000001070|0|riously silent ideas. final, ruthless| +35115|660391|F|95204.18|1992-08-28|3-MEDIUM|Clerk#000004242|0|y express asymptotes above the quickly unusual foxes ha| +35116|678595|F|166538.08|1994-09-05|2-HIGH|Clerk#000003844|0| after the quickly bold requests. ironic, unus| +35117|615172|O|254943.35|1996-09-22|3-MEDIUM|Clerk#000001573|0|blithely even packages haggle against the instructions. bli| +35118|431053|F|151218.65|1994-04-26|5-LOW|Clerk#000001789|0|ely alongside of the closely special packages. express| +35119|449843|F|47172.71|1992-03-16|1-URGENT|Clerk#000001811|0|ual packages dazzle blith| +35144|510695|P|80735.13|1995-04-03|2-HIGH|Clerk#000001322|0|he carefully ironic packages. regular foxes cajole blithely. ironic foxes | +35145|246014|F|228152.78|1992-03-01|2-HIGH|Clerk#000001467|0|y regular accounts. packages use alongside of the final a| +35146|3745|O|186676.76|1995-08-07|2-HIGH|Clerk#000004019|0|ackages. finally fluffy de| +35147|665252|O|191301.58|1997-07-16|1-URGENT|Clerk#000002060|0| theodolites. blithely regular warthogs around the careful| +35148|625888|F|229001.48|1993-02-22|2-HIGH|Clerk#000001956|0|tween the final theodolites. | +35149|518093|O|120058.21|1998-07-26|5-LOW|Clerk#000002775|0|s. unusual, final ideas was ruthlessly ironic packages! regular packages a| +35150|81167|O|275185.21|1995-10-24|2-HIGH|Clerk#000004408|0|lar requests detect quickly. ironic, regular foxes are | +35151|672256|O|141172.69|1998-07-17|3-MEDIUM|Clerk#000000182|0| requests. furiously even foxes about the evenly idle acc| +35176|592750|O|115918.05|1998-05-13|4-NOT SPECIFIED|Clerk#000002554|0|cross the slyly even gifts. quietly even dinos boost| +35177|71440|F|13529.37|1994-12-19|5-LOW|Clerk#000002760|0|yly regular dolphins haggle. even deposits haggle | +35178|674005|O|246266.54|1995-06-15|5-LOW|Clerk#000004116|0|deposits. stealthy requests detect slyly a| +35179|720250|O|271718.69|1996-04-29|3-MEDIUM|Clerk#000001328|0|odolites. furiously | +35180|212014|O|102843.28|1996-07-07|2-HIGH|Clerk#000003413|0|ts haggle according to the | +35181|64195|O|184336.82|1995-12-08|4-NOT SPECIFIED|Clerk#000002902|0| requests. even, unusual court| +35182|404507|O|279943.21|1997-05-16|3-MEDIUM|Clerk#000000223|0|e frays. pending requests cajole even accounts. furiously final instruction| +35183|532522|O|72458.44|1998-01-01|2-HIGH|Clerk#000003865|0|ent ideas. pinto beans above the never regular accou| +35208|332450|F|272474.13|1993-01-15|1-URGENT|Clerk#000000848|0|odolites boost slyl| +35209|722189|O|51655.11|1997-02-22|1-URGENT|Clerk#000000087|0| to the slyly regular courts haggle beyond| +35210|569899|F|176198.18|1994-01-21|1-URGENT|Clerk#000000924|0|refully. pending packages was blithely never special theodoli| +35211|31822|F|279576.05|1993-04-30|2-HIGH|Clerk#000004926|0|fily slyly ironic deposits. regular instructions sleep quickly amon| +35212|52868|F|83121.25|1995-01-06|5-LOW|Clerk#000004079|0|y regular instructions boost. slyly special r| +35213|539957|F|298607.12|1994-12-14|1-URGENT|Clerk#000004947|0|es across the slyly final dolphins are special asymptot| +35214|43186|O|47801.10|1996-12-10|5-LOW|Clerk#000004352|0| the daring accounts serve quick| +35215|567836|F|75176.94|1992-07-04|3-MEDIUM|Clerk#000004448|0|. theodolites wake at the slyly regular foxes. even packages among the quick| +35240|608714|F|106649.39|1992-11-15|4-NOT SPECIFIED|Clerk#000001473|0|e the slyly special theodolites. special,| +35241|643706|F|48897.09|1994-10-10|1-URGENT|Clerk#000001545|0|y after the ironic, even instructions. regular instructions use furiously fina| +35242|9175|O|176517.63|1995-08-10|3-MEDIUM|Clerk#000001950|0|s: ironic pearls engage slyly. unusual theodolites nag about the carefully ex| +35243|438940|O|69776.79|1996-12-09|3-MEDIUM|Clerk#000003347|0|nts. quickly express theodolites are. unusual pinto beans above the fur| +35244|238492|F|255278.03|1992-12-30|5-LOW|Clerk#000003902|0| packages cajole along th| +35245|312979|F|143692.08|1992-10-17|1-URGENT|Clerk#000000176|0|quests wake. fluffily even requests nag slyly; fluf| +35246|471565|F|84643.24|1993-06-08|1-URGENT|Clerk#000001944|0| carefully ironic deposits. final, ironic requests lose. blithely fin| +35247|325802|O|127491.81|1996-08-07|4-NOT SPECIFIED|Clerk#000000555|0| regular packages. blithely final packages across the final, bold d| +35272|747061|F|141194.60|1992-12-09|5-LOW|Clerk#000001466|0|ily. blithely final pinto beans use blithely ironic gro| +35273|78128|O|60105.27|1997-04-03|1-URGENT|Clerk#000002979|0|ing packages wake. slyly regular dependencies| +35274|589465|O|77457.84|1997-08-21|2-HIGH|Clerk#000003367|0|totes along the bold, ironic deposits use past | +35275|384161|O|240059.49|1997-12-31|2-HIGH|Clerk#000004390|0|ns above the slyly special deposits haggle slyly above| +35276|577420|O|290273.38|1998-01-24|3-MEDIUM|Clerk#000001332|0|ooze. excuses haggle at the | +35277|426439|F|197866.11|1992-01-10|1-URGENT|Clerk#000003580|0|iously unusual ideas | +35278|133987|F|162726.47|1993-01-25|2-HIGH|Clerk#000001106|0|ual pinto beans are furiously unusual foxes| +35279|413260|O|163779.86|1997-11-27|2-HIGH|Clerk#000002277|0|g blithely according to the regular acc| +35304|633716|O|160779.47|1996-06-07|4-NOT SPECIFIED|Clerk#000002347|0| boost furiously blithely ironic f| +35305|108860|F|86870.18|1994-05-22|4-NOT SPECIFIED|Clerk#000003191|0|ost furiously ironic courts. furiously final platele| +35306|348662|O|18517.36|1996-03-14|1-URGENT|Clerk#000001743|0|eodolites. even patterns c| +35307|203716|F|241516.43|1993-04-23|2-HIGH|Clerk#000002860|0| regular, ironic asymptotes wake furiousl| +35308|77392|F|71259.70|1993-06-15|3-MEDIUM|Clerk#000003272|0|arefully ironic instructions-- slyly final platelets haggle fluffily slyly| +35309|215248|O|38934.74|1997-03-09|3-MEDIUM|Clerk#000001928|0|nag alongside of the quickly final courts. foxes cajole quickly | +35310|408092|F|110245.70|1994-03-14|1-URGENT|Clerk#000003488|0|leep carefully. blithely ironic platelets wake slyly even d| +35311|41734|O|63163.54|1997-12-31|3-MEDIUM|Clerk#000004668|0|. even depths eat furiously slyly regular deposits. final account| +35336|163405|O|139053.48|1998-06-18|1-URGENT|Clerk#000004409|0|usly regular accounts. enticingly final pinto beans wake ironically| +35337|584285|O|105649.77|1998-03-27|2-HIGH|Clerk#000001679|0|jole slyly slyly unusual ideas. quickly dogged asymptotes cajole expr| +35338|326470|F|94951.87|1992-06-29|4-NOT SPECIFIED|Clerk#000004853|0|ic frays across the unusual deposits haggle | +35339|720332|F|185573.22|1993-03-30|5-LOW|Clerk#000000868|0|. furiously ironic requests cajole slyly evenly even foxes. blit| +35340|107072|O|266894.44|1998-06-24|5-LOW|Clerk#000002626|0|riously foxes. bold packages kin| +35341|306469|O|30952.50|1996-11-24|1-URGENT|Clerk#000004719|0|rts grow blithely furiously express| +35342|558793|O|157725.34|1995-06-05|1-URGENT|Clerk#000004931|0|nal foxes along the q| +35343|127187|F|239789.35|1992-10-24|4-NOT SPECIFIED|Clerk#000002619|0|nto beans wake blithe| +35368|125287|F|74874.34|1994-01-12|2-HIGH|Clerk#000004464|0|accounts. blithely ironic accounts integrate slyly. unusual p| +35369|416111|O|103784.01|1997-09-10|4-NOT SPECIFIED|Clerk#000002268|0|ites cajole carefully after the deposits. regular deposits maintain | +35370|569785|F|248594.87|1994-08-31|1-URGENT|Clerk#000003080|0|ermanent foxes before the regular dinos cajole fluffi| +35371|346468|F|14694.69|1994-08-03|4-NOT SPECIFIED|Clerk#000004226|0|gly across the slyly unusual deposits. | +35372|66505|O|33725.09|1996-05-12|4-NOT SPECIFIED|Clerk#000001560|0|courts haggle. carefully dogged p| +35373|233351|O|266362.69|1995-06-22|3-MEDIUM|Clerk#000003793|0|re. furiously special packages atop the slyly even inst| +35374|172001|F|241510.42|1994-08-24|1-URGENT|Clerk#000001374|0|he express dependencies. pending, regular requests across the unusual, expres| +35375|305573|O|34837.51|1997-03-14|3-MEDIUM|Clerk#000001425|0| sleep fluffily. careful packages cajole car| +35400|512624|F|96084.48|1994-05-29|5-LOW|Clerk#000002178|0|furiously final dependencies.| +35401|406981|F|246753.49|1994-04-11|4-NOT SPECIFIED|Clerk#000004672|0| pinto beans. fluffily silent realms above the silent dolphins haggle regula| +35402|99083|O|154046.72|1998-05-19|3-MEDIUM|Clerk#000000301|0|iously across the carefully special theodolites. blithely qu| +35403|278101|O|85592.00|1996-08-29|5-LOW|Clerk#000003721|0| engage quietly quickly special tithes. careful instruction| +35404|37352|O|65427.44|1995-11-26|2-HIGH|Clerk#000004868|0|s x-ray blithely even requests. q| +35405|22369|F|214150.18|1993-04-19|4-NOT SPECIFIED|Clerk#000000681|0|aggle after the special, bold deposits. | +35406|194728|F|9117.44|1992-08-02|2-HIGH|Clerk#000000186|0|ly final packages-- blithely pending requests wake furiously slyly| +35407|521482|O|270532.53|1995-10-24|2-HIGH|Clerk#000001588|0| regular packages. fluffily regular d| +35432|39493|O|17739.64|1998-03-16|2-HIGH|Clerk#000001416|0|y final platelets b| +35433|880|O|145640.17|1998-01-21|2-HIGH|Clerk#000000871|0|ternes cajole about the carefu| +35434|515032|F|284886.28|1993-09-12|1-URGENT|Clerk#000003013|0|ully unusual dolphins haggle alongside of the ironic depend| +35435|369782|F|222396.51|1993-04-27|2-HIGH|Clerk#000001703|0|hely busy deposits cajole | +35436|421819|F|66186.92|1993-01-26|4-NOT SPECIFIED|Clerk#000001671|0|heodolites are furiously against the packages; accou| +35437|507971|F|232142.58|1994-06-30|4-NOT SPECIFIED|Clerk#000002846|0|s will sleep carefully regular | +35438|217730|O|219185.90|1996-03-28|5-LOW|Clerk#000002845|0| haggle against the blithely final pinto beans. slyly r| +35439|122209|O|138879.80|1998-05-15|5-LOW|Clerk#000002638|0|ress packages about the final, final i| +35464|435074|F|293321.44|1993-07-24|5-LOW|Clerk#000004081|0|arefully express asymptotes sleep fluffily furiously busy requests| +35465|533510|O|197121.12|1996-05-02|4-NOT SPECIFIED|Clerk#000002286|0|s affix! furiously ironic accou| +35466|447019|F|266220.82|1994-06-25|5-LOW|Clerk#000003904|0|its haggle furiously regular, quick accounts. regular packag| +35467|266488|F|212162.68|1993-05-27|5-LOW|Clerk#000000882|0|s wake carefully final courts. bravely pending instructions boost blithely. f| +35468|585965|O|24101.93|1996-08-17|1-URGENT|Clerk#000001027|0|iously regular packages. carefully idle packages haggle carefully. pack| +35469|62281|F|36003.53|1992-12-23|5-LOW|Clerk#000004732|0|ual accounts. slyly | +35470|490102|P|154004.41|1995-03-21|1-URGENT|Clerk#000004186|0|r the ironic patterns-- ironic, unusual excus| +35471|620776|F|216759.32|1994-03-12|1-URGENT|Clerk#000000624|0|nusual, stealthy instructions around the carefully final gif| +35496|120769|O|324516.11|1996-10-30|5-LOW|Clerk#000000128|0|aggle slyly patterns: ironic theodolites are caref| +35497|259817|O|90339.28|1996-11-16|1-URGENT|Clerk#000000966|0|ound the ironic platelets kindl| +35498|231479|O|5282.53|1995-11-02|4-NOT SPECIFIED|Clerk#000000343|0|al accounts haggle carefully across the instruction| +35499|203728|O|184570.68|1998-07-30|2-HIGH|Clerk#000002874|0|resias are furiously around the busy deposits. regular deposits haggle ca| +35500|285470|O|151321.19|1997-11-03|2-HIGH|Clerk#000003409|0|er the blithely regular pinto beans. carefully final r| +35501|127537|O|110804.47|1995-07-17|3-MEDIUM|Clerk#000002942|0|ic sentiments wake daringly. furiously ironic instruction| +35502|747892|O|95032.32|1996-06-23|4-NOT SPECIFIED|Clerk#000000005|0|furiously permanent| +35503|558130|O|119834.39|1995-10-29|3-MEDIUM|Clerk#000001911|0| the ironic accounts. carefully | +35528|212755|O|119116.85|1996-07-18|4-NOT SPECIFIED|Clerk#000001821|0|fluffily even pinto b| +35529|497434|O|151196.05|1997-09-17|2-HIGH|Clerk#000000378|0|ironic deposits around the furiou| +35530|89920|O|153033.07|1997-03-29|4-NOT SPECIFIED|Clerk#000003729|0|ructions. deposits wake furiously after the re| +35531|26843|F|137725.53|1993-12-29|1-URGENT|Clerk#000002259|0|after the blithely silent dolphins x-ray carefully bold | +35532|390790|O|161162.32|1997-02-17|1-URGENT|Clerk#000002986|0| final packages print above the ironic requests. bol| +35533|252820|O|93275.80|1998-02-08|4-NOT SPECIFIED|Clerk#000000814|0|gular theodolites. silent courts sleep fluffily silent p| +35534|382652|F|315898.10|1992-04-15|5-LOW|Clerk#000001581|0|kages about the pending, expres| +35535|720418|O|207068.25|1997-05-11|4-NOT SPECIFIED|Clerk#000003030|0|iously ironic asymptotes boost. silent foxes according to the blithely ir| +35560|43201|O|35155.57|1997-10-16|3-MEDIUM|Clerk#000004614|0|lyly ruthless foxes. bravely even excuses hinder furious| +35561|76171|O|306266.46|1998-05-24|3-MEDIUM|Clerk#000002624|0|es except the blithely regular foxes cajole slyly across the fu| +35562|690910|O|86359.31|1998-05-24|4-NOT SPECIFIED|Clerk#000001704|0|ts. blithely final patterns boost furiously after the pending dependencie| +35563|603082|F|340087.71|1992-02-09|2-HIGH|Clerk#000004103|0|ainst the packages integrate about the carefully final requests. even idea| +35564|497392|O|124370.87|1998-03-27|4-NOT SPECIFIED|Clerk#000000812|0|c deposits. regular platelets are slyly above the carefully r| +35565|153103|O|292475.05|1996-12-28|5-LOW|Clerk#000001730|0|e quickly regular requests. quickly ironic pinto beans are silently abou| +35566|698053|F|186325.97|1995-01-03|5-LOW|Clerk#000001614|0| even asymptotes will wake furiously according to the fi| +35567|673432|O|194985.49|1997-06-12|3-MEDIUM|Clerk#000001483|0|s. carefully bold orbits engage. blithely eve| +35592|107855|O|240087.64|1997-03-26|2-HIGH|Clerk#000002552|0|cial accounts. carefully even orbits haggle fluffily among| +35593|711391|F|222372.83|1993-05-12|3-MEDIUM|Clerk#000003517|0| are alongside of the carefully un| +35594|573842|F|115802.31|1994-09-16|5-LOW|Clerk#000000516|0|ironic pains wake platelets. carefully thin instructions for the fl| +35595|310577|O|153734.35|1996-01-02|3-MEDIUM|Clerk#000003806|0|efully final requests. fluffily regular fo| +35596|614929|F|78638.33|1994-04-17|5-LOW|Clerk#000001904|0|slyly along the carefully regular requests. furi| +35597|96046|F|171430.26|1993-03-13|5-LOW|Clerk#000001080|0|nic, fluffy pinto beans boost blithely regula| +35598|242287|F|109062.69|1992-05-31|1-URGENT|Clerk#000000906|0|dependencies wake furiously special deposits. carefully unusual accounts wak| +35599|351454|F|58226.65|1993-06-30|2-HIGH|Clerk#000004086|0|y furiously ironic d| +35624|610394|O|307749.35|1998-05-08|1-URGENT|Clerk#000002264|0|osits. ironic foxes | +35625|379916|O|59622.53|1995-09-07|1-URGENT|Clerk#000002729|0|inst the slyly special foxes. final i| +35626|487372|F|204192.50|1994-07-26|1-URGENT|Clerk#000004749|0|te. carefully ironic accounts use fluffily. furiously pen| +35627|488515|F|121399.57|1993-02-18|5-LOW|Clerk#000004451|0|o beans are sometim| +35628|193949|O|220093.71|1998-01-26|5-LOW|Clerk#000001432|0|gular sheaves wake blithely. pending, unusual pinto beans could h| +35629|185131|F|277498.76|1992-10-20|4-NOT SPECIFIED|Clerk#000003958|0|ate foxes. quickly bold request| +35630|492775|O|260864.47|1997-02-16|3-MEDIUM|Clerk#000000651|0|cajole slyly despite the regular deposits? even, regular dolphins cajole | +35631|553519|F|234698.70|1994-12-08|1-URGENT|Clerk#000003221|0|uests sleep quickly after the sly| +35656|738520|F|176000.44|1992-04-22|5-LOW|Clerk#000003920|0|ways even accounts nag against the carefully special foxes. carefully even| +35657|529999|F|76794.41|1994-01-09|2-HIGH|Clerk#000004933|0| quickly pending accounts. ironi| +35658|660227|O|216781.98|1996-05-29|4-NOT SPECIFIED|Clerk#000004999|0|mong the blithely pending packages. fluffily | +35659|184391|F|133272.30|1995-05-23|2-HIGH|Clerk#000001016|0|ithely even deposits are across th| +35660|47057|O|195074.43|1997-08-03|1-URGENT|Clerk#000003392|0|st the furiously regular pa| +35661|381103|O|323070.38|1998-06-29|3-MEDIUM|Clerk#000004617|0|ond the slyly special instructio| +35662|181511|O|134520.85|1995-08-16|5-LOW|Clerk#000003428|0|tes haggle slyly. qu| +35663|404023|O|57042.41|1996-08-10|4-NOT SPECIFIED|Clerk#000000160|0|ven packages cajole blithely re| +35688|632237|F|58487.17|1992-02-16|5-LOW|Clerk#000003366|0|r packages cajole quickly above the blithely d| +35689|741215|F|190537.59|1994-06-10|1-URGENT|Clerk#000000522|0|ideas. blithely bold deposits cajole carefull| +35690|95821|O|104107.99|1996-11-10|5-LOW|Clerk#000001617|0|furiously pending pinto beans wake furiously among the| +35691|190978|F|164913.84|1994-02-09|3-MEDIUM|Clerk#000004484|0|ages. express orbits wake. fluffily bold platelets haggle fluffily. depo| +35692|507178|F|301476.70|1992-11-22|3-MEDIUM|Clerk#000003157|0|refully regular packages. slyly special ideas boost quick| +35693|388477|F|145446.40|1994-08-23|5-LOW|Clerk#000002434|0|ect fluffily special| +35694|352927|O|236606.78|1996-12-10|2-HIGH|Clerk#000004886|0|essly throughout the even, bold pac| +35695|643132|F|277395.05|1992-04-27|3-MEDIUM|Clerk#000001444|0|refully against the quickly even f| +35720|112180|F|131693.46|1993-04-01|5-LOW|Clerk#000004642|0| deposits x-ray carefully bold requests.| +35721|626869|F|255268.37|1994-07-22|4-NOT SPECIFIED|Clerk#000004984|0|efully regular instructions. slyly final courts affix carefully. blithely sp| +35722|528109|O|298945.78|1998-02-20|2-HIGH|Clerk#000004781|0| alongside of the special orbits. carefully even platelets cajole ironic depen| +35723|412154|F|44783.93|1992-10-01|3-MEDIUM|Clerk#000001430|0|s haggle fluffily. blithely special a| +35724|56824|O|256300.64|1995-09-04|3-MEDIUM|Clerk#000001780|0|beans. furiously final account| +35725|266096|O|11022.61|1997-08-14|1-URGENT|Clerk#000002076|0|leep blithely after the fluffily regular packages. furiously even p| +35726|21148|F|12674.87|1993-10-26|4-NOT SPECIFIED|Clerk#000003124|0| regular ideas. regular, pending deposit| +35727|679054|O|74057.22|1996-10-21|1-URGENT|Clerk#000003884|0|ts. carefully bold waters haggle slyly spe| +35752|78805|F|163036.95|1994-11-26|3-MEDIUM|Clerk#000004469|0|ly. carefully final dependencies engage | +35753|700243|F|48593.05|1992-08-08|3-MEDIUM|Clerk#000004972|0|usly ironic foxes. quickly regular platelets use bold accounts? car| +35754|716275|O|177409.95|1997-09-25|5-LOW|Clerk#000002761|0|ely ironic packages caj| +35755|152131|O|239246.18|1998-04-14|3-MEDIUM|Clerk#000002590|0|ly final deposits cajole slyly unusual tithes. fluffily eve| +35756|104563|F|229939.19|1994-12-25|3-MEDIUM|Clerk#000002307|0|inal requests wake blithely across the special asymptotes. quickly regular | +35757|137734|O|67418.34|1997-11-24|4-NOT SPECIFIED|Clerk#000003984|0|press packages about the f| +35758|365531|F|49017.71|1993-05-24|4-NOT SPECIFIED|Clerk#000001661|0|ng accounts? furiously final instructions use. bli| +35759|216226|F|45075.90|1992-11-15|2-HIGH|Clerk#000004921|0|nal theodolites. deposits wake furious| +35784|329029|F|247433.96|1992-11-07|4-NOT SPECIFIED|Clerk#000001517|0|y express requests cajole among the quickly final packages. even,| +35785|209615|F|198513.84|1992-08-19|1-URGENT|Clerk#000001623|0| pending, regular deposits ab| +35786|248195|F|111350.86|1994-06-17|3-MEDIUM|Clerk#000002893|0|ets alongside of the bold warthogs eat slyly pendi| +35787|651832|O|71124.88|1996-01-14|4-NOT SPECIFIED|Clerk#000001960|0|atelets. foxes cajole furiously. blithel| +35788|69482|O|134332.95|1995-09-01|2-HIGH|Clerk#000001991|0|n requests among the slyly regular deposits integrate quickly q| +35789|31922|O|141201.16|1997-11-10|4-NOT SPECIFIED|Clerk#000001936|0| ironic dolphins breach slyly. final requests are across | +35790|253807|O|135848.89|1995-04-12|1-URGENT|Clerk#000003726|0|e daring, unusual o| +35791|456490|F|71529.30|1993-08-21|5-LOW|Clerk#000000769|0|ithely ironic foxes sleep at the fluffily regular foxes. sly| +35816|459181|F|74986.48|1994-03-12|5-LOW|Clerk#000001559|0|ously even dolphins boost blithely alongside| +35817|700270|F|162033.33|1994-04-23|5-LOW|Clerk#000000301|0|y ironic theodolites alongside of the fluffily bold requests are according t| +35818|426682|F|219456.49|1992-02-17|3-MEDIUM|Clerk#000000774|0|about the regular platelets?| +35819|474247|O|116859.32|1997-04-03|2-HIGH|Clerk#000001422|0| beyond the ironic accounts. thinly i| +35820|415556|O|51986.42|1997-06-06|2-HIGH|Clerk#000002160|0|pinto beans cajole fluffily pending foxes-- slyly regular dinos haggle. qui| +35821|243031|O|46009.79|1998-04-27|5-LOW|Clerk#000002959|0|ent theodolites haggle slyly ironic de| +35822|113381|O|61018.18|1996-05-20|1-URGENT|Clerk#000001119|0|long the requests. finally regular requests boost quickly ironic d| +35823|592498|F|233374.58|1992-10-24|5-LOW|Clerk#000004197|0|ts use. idly regular deposits breach. blithely final| +35848|357949|O|43168.86|1995-10-18|4-NOT SPECIFIED|Clerk#000003398|0|r the quickly ironic accounts cajole about the slyly blithe warho| +35849|293464|O|94398.20|1996-11-20|3-MEDIUM|Clerk#000000772|0|uctions detect blith| +35850|227333|O|3413.88|1996-05-04|3-MEDIUM|Clerk#000001883|0| slyly unusual excuses. silent, unusual decoys sleep idly carefully dogged pi| +35851|281840|F|22631.54|1992-04-09|1-URGENT|Clerk#000001979|0|fluffily pending pinto beans solve care| +35852|633821|F|173915.30|1992-08-26|3-MEDIUM|Clerk#000002128|0|ng the regular, ironic instructions. deposits haggle quickly. regularly reg| +35853|378404|F|78093.96|1993-12-16|1-URGENT|Clerk#000000445|0|uiet packages shall have to sleep carefully. enticingly bold instructio| +35854|575446|F|113611.01|1994-07-27|2-HIGH|Clerk#000002779|0|counts. slyly bold platelets nag slyly slyly special platelets. requests c| +35855|255964|O|32834.83|1996-11-13|1-URGENT|Clerk#000003879|0|tes. requests along the blithely pending ide| +35880|736882|O|82110.56|1998-01-25|2-HIGH|Clerk#000003100|0|s nag ironic, final ideas. regular, busy deposits about the| +35881|20818|F|190216.54|1993-04-17|1-URGENT|Clerk#000003514|0|. carefully pending | +35882|384860|F|241451.08|1993-12-12|5-LOW|Clerk#000004312|0|ipliers. blithely regu| +35883|341221|F|176574.02|1994-08-16|5-LOW|Clerk#000001813|0|g deposits about the blit| +35884|395605|F|268515.43|1994-03-15|4-NOT SPECIFIED|Clerk#000001564|0| slyly final packages. slyly special grouches according to the quickly s| +35885|171469|F|133166.94|1993-08-24|4-NOT SPECIFIED|Clerk#000000731|0|osits will cajole furiously? foxes nag furiously | +35886|373915|O|147777.27|1996-02-26|2-HIGH|Clerk#000001231|0|iously special deposits. express accounts are slyly. even, | +35887|135928|F|216301.85|1992-01-05|1-URGENT|Clerk#000004657|0| quickly final pinto beans. furiously pending packa| +35912|28651|O|150895.99|1997-06-03|3-MEDIUM|Clerk#000001473|0|vely against the slyly regular depths. thin mu| +35913|28966|O|127624.07|1995-11-27|4-NOT SPECIFIED|Clerk#000003655|0|lar foxes. final requests use carefully a| +35914|71626|O|172078.93|1996-06-04|2-HIGH|Clerk#000002961|0|lphins above the express courts believe slyly final dolphins. slyly bol| +35915|66236|O|257553.04|1996-08-24|4-NOT SPECIFIED|Clerk#000001762|0|uriously pending war| +35916|221425|O|99248.25|1995-11-02|3-MEDIUM|Clerk#000003045|0| furiously regular packages wake furiously alongside of the blithely | +35917|709639|F|53909.61|1994-06-07|5-LOW|Clerk#000002584|0|y. grouches grow quickly quickly final dugou| +35918|381611|O|77663.92|1995-05-12|5-LOW|Clerk#000002393|0|bold foxes integrate quickly regular packages. fl| +35919|470957|F|258827.74|1992-08-13|4-NOT SPECIFIED|Clerk#000001431|0|al deposits. furiously silent packages haggle-- regular, bold account| +35944|613118|O|364034.26|1995-08-28|3-MEDIUM|Clerk#000004450|0|quests cajole quickly quickly| +35945|416548|F|235473.97|1994-09-03|1-URGENT|Clerk#000002325|0| fluffily final deposits? even, even| +35946|403958|F|96798.08|1992-11-08|5-LOW|Clerk#000004837|0|riously regular dinos use carefully | +35947|321767|F|219357.08|1994-05-20|2-HIGH|Clerk#000002375|0|long the blithely ironic ac| +35948|436691|F|28952.03|1993-06-30|2-HIGH|Clerk#000000015|0|refully among the carefully unusual requests. careful| +35949|702466|F|78661.41|1992-04-14|3-MEDIUM|Clerk#000000289|0|t theodolites. furiously even ac| +35950|577427|O|68312.90|1997-08-26|5-LOW|Clerk#000000019|0|y final requests print silent, even co| +35951|562894|O|168670.24|1996-08-11|1-URGENT|Clerk#000002861|0|re fluffily for the ironic ideas. carefully ironic packages wake abou| +35976|28208|O|279127.34|1996-11-25|1-URGENT|Clerk#000003034|0|quickly furiously regular foxes. slyly special ideas sleep blithely sl| +35977|80953|F|71459.95|1994-11-21|1-URGENT|Clerk#000001508|0|dolites haggle after the slyly even theodolites. blithely regular foxes aft| +35978|63430|O|50612.37|1996-05-17|1-URGENT|Clerk#000001789|0|beans cajole slyly. express instructions among the ca| +35979|288836|O|322942.00|1997-03-24|2-HIGH|Clerk#000002549|0|. blithely final acc| +35980|456815|F|205963.16|1993-09-25|3-MEDIUM|Clerk#000000597|0|ironic foxes cajole among the instructions; even requests | +35981|688360|F|212214.51|1994-12-23|1-URGENT|Clerk#000000273|0| deposits about the blithe, express a| +35982|503447|F|82274.94|1994-02-09|3-MEDIUM|Clerk#000003072|0| affix slyly. express de| +35983|667907|F|189268.29|1995-02-19|1-URGENT|Clerk#000003322|0|hely regular dependenc| +36008|262406|F|200745.81|1992-02-04|2-HIGH|Clerk#000003566|0|s nod dependencies. silent, express foxes wa| +36009|246331|O|181116.62|1996-04-22|4-NOT SPECIFIED|Clerk#000000964|0|ly in place of the account| +36010|67706|O|7088.87|1996-11-13|5-LOW|Clerk#000003505|0|ic, ironic packages. slyly r| +36011|172837|F|85047.53|1992-04-15|4-NOT SPECIFIED|Clerk#000000004|0|ts. packages use slyly unusual packages. carefully ironic requests | +36012|99860|O|67069.70|1995-07-10|4-NOT SPECIFIED|Clerk#000001482|0| packages after the p| +36013|587305|O|269288.23|1996-03-11|2-HIGH|Clerk#000002346|0|al accounts. ironic gifts print carefully regular pl| +36014|62368|F|113285.45|1994-04-26|4-NOT SPECIFIED|Clerk#000000856|0|asymptotes! slyly regular foxes sleep furiously above the | +36015|463768|O|174625.24|1997-10-25|5-LOW|Clerk#000004599|0|counts haggle daringly. idly pending pinto beans must sleep car| +36040|528595|F|97498.48|1992-11-20|1-URGENT|Clerk#000004946|0|y bold accounts. express dependencies use bold| +36041|324913|O|150254.80|1995-06-02|4-NOT SPECIFIED|Clerk#000001472|0|ar accounts eat furiously | +36042|36407|F|215331.52|1993-11-23|4-NOT SPECIFIED|Clerk#000002139|0| slyly above the furiously pending ideas. fin| +36043|638447|F|93587.65|1993-03-02|5-LOW|Clerk#000000098|0|phs. furiously silent asymptotes wake quick| +36044|123718|F|83599.20|1993-01-08|1-URGENT|Clerk#000002095|0|old deposits hinder fluffily across t| +36045|301480|F|70540.58|1994-12-18|2-HIGH|Clerk#000001519|0|ter the pending packages. express deposits among the fluffily express ideas | +36046|709399|O|82434.38|1996-06-07|2-HIGH|Clerk#000001820|0|g accounts. furiously even ideas impress slyly. pinto beans wak| +36047|114629|O|92352.09|1995-10-31|2-HIGH|Clerk#000000553|0|le fluffily after the closely silent deposits. bli| +36072|556970|O|248584.47|1997-10-09|2-HIGH|Clerk#000004217|0|press accounts are carefully carefully unusual courts. blithely even id| +36073|236435|O|95881.08|1996-01-08|5-LOW|Clerk#000004003|0| even pains haggle. quickly regular theodol| +36074|253211|O|279387.84|1997-12-05|3-MEDIUM|Clerk#000001731|0|y even instructions. slyly express ideas boost even, ironic packages. reg| +36075|209767|O|23819.04|1995-07-30|2-HIGH|Clerk#000001832|0|nding accounts alongside of the blithely regular packages nag slyly acr| +36076|532396|F|130496.32|1992-05-09|3-MEDIUM|Clerk#000001934|0|inal, bold dependencies. furiously special theodolites nag carefully slyl| +36077|449362|F|42596.66|1995-02-04|2-HIGH|Clerk#000002513|0|yly. carefully even depths cajole. bol| +36078|650725|F|77165.55|1992-09-15|4-NOT SPECIFIED|Clerk#000002665|0|ven dinos. blithely express foxes wake | +36079|205927|O|49054.80|1998-07-24|2-HIGH|Clerk#000003727|0| affix carefully according to the accounts. ironic requests use f| +36104|500390|O|154424.06|1997-10-06|3-MEDIUM|Clerk#000004223|0|cial requests. special, regular requests across the ironic d| +36105|293161|O|31047.33|1996-05-23|5-LOW|Clerk#000004843|0|ctions are ironically deposits. regular deposits haggle above | +36106|385285|O|61021.52|1998-06-20|2-HIGH|Clerk#000002707|0|ecial requests. attainments haggle slyly ideas. f| +36107|712471|F|204858.05|1993-05-07|5-LOW|Clerk#000000370|0|y blithely close patterns. packages haggle. regular theodolites wake| +36108|720956|O|262824.32|1996-06-07|5-LOW|Clerk#000004268|0|e blithely fluffily iron| +36109|104359|F|148161.76|1994-04-15|2-HIGH|Clerk#000004944|0|nding dolphins use furiously bli| +36110|442879|F|180112.27|1992-10-04|2-HIGH|Clerk#000003984|0|s boost carefully slyly ironic theodolite| +36111|442702|O|159445.06|1997-10-20|3-MEDIUM|Clerk#000002513|0|ickly unusual foxes-- deposits wake special, regular decoys.| +36136|477607|F|326242.53|1993-06-26|4-NOT SPECIFIED|Clerk#000001097|0|ts above the slyly unusual foxes af| +36137|636961|P|150269.80|1995-04-07|3-MEDIUM|Clerk#000003047|0|usly among the slyly pending court| +36138|632396|O|20556.27|1996-06-14|2-HIGH|Clerk#000002156|0|ns cajole blithely according to the slyly final packages| +36139|422741|O|316462.09|1997-08-17|3-MEDIUM|Clerk#000002926|0|ular theodolites detect furiously pending, bold inst| +36140|243559|F|175798.29|1994-09-21|4-NOT SPECIFIED|Clerk#000001141|0|y quickly pending packages. carefully ironic packages sleep. | +36141|725707|O|9215.90|1995-10-21|3-MEDIUM|Clerk#000003973|0|ckly bold foxes. unusual, ironic packag| +36142|425929|O|117025.69|1997-12-02|2-HIGH|Clerk#000003332|0|lyly even accounts. quickly permanent deposits| +36143|578729|O|112386.67|1997-11-11|5-LOW|Clerk#000002123|0|aids haggle blithely express deposits. regular theodolites use fluffily. pe| +36168|682061|F|104004.82|1994-02-25|2-HIGH|Clerk#000000458|0|y special packages are carefully quickly bold ideas. s| +36169|398852|O|132778.92|1997-04-25|4-NOT SPECIFIED|Clerk#000000348|0|fully final accounts. accounts wake| +36170|743525|O|77242.27|1998-06-18|5-LOW|Clerk#000001758|0|. packages are blithely pack| +36171|666512|O|62039.70|1997-09-22|1-URGENT|Clerk#000002126|0|ze across the blithely brave requests. even requests unwind above the| +36172|50966|F|61861.94|1994-07-11|3-MEDIUM|Clerk#000000461|0|. carefully regular de| +36173|78458|F|74335.45|1994-08-06|2-HIGH|Clerk#000002796|0|xes. unusual decoys are ironically b| +36174|130136|P|203645.25|1995-03-15|5-LOW|Clerk#000004068|0|uthlessly pending packages. blithely bold theodolites cajole | +36175|179740|O|197210.17|1995-06-12|2-HIGH|Clerk#000002508|0|ful foxes sleep blithely carefully bold deposits: final foxes x-ra| +36200|609662|O|184634.86|1998-01-13|4-NOT SPECIFIED|Clerk#000002337|0|g to the deposits. slyly special packages along the foxes detect| +36201|78683|O|230891.83|1997-04-02|5-LOW|Clerk#000002777|0|g requests run slyly bold accounts. ir| +36202|166946|O|54953.31|1996-04-22|3-MEDIUM|Clerk#000003221|0|e furiously to the quickly quick accounts. furiously ironic foxes boost sly| +36203|100261|F|286302.84|1993-10-21|3-MEDIUM|Clerk#000000669|0|final packages cajole blithely slyly ironic requ| +36204|572722|O|100152.53|1996-09-05|3-MEDIUM|Clerk#000004358|0|pinto beans. pending, special | +36205|206302|F|68467.89|1994-02-07|1-URGENT|Clerk#000001960|0|ccounts! even accounts among the carefully re| +36206|59878|F|163787.93|1993-03-26|3-MEDIUM|Clerk#000001718|0|nts after the ironic requests are fluffily against the blithe| +36207|604703|F|122908.32|1994-07-25|2-HIGH|Clerk#000004199|0|ts are express deposits. pending packages after the ironi| +36232|739649|O|62447.31|1996-02-27|2-HIGH|Clerk#000003249|0|op the slyly final instruction| +36233|16438|F|168969.06|1992-08-27|5-LOW|Clerk#000000777|0|iously even requests detect careful| +36234|243907|O|63866.50|1995-11-06|2-HIGH|Clerk#000003941|0| blithely ironic accounts after the slyly| +36235|582811|F|139171.84|1992-06-04|1-URGENT|Clerk#000001242|0|ress accounts could have to wake. furiously pendin| +36236|274474|F|10177.22|1994-07-08|1-URGENT|Clerk#000003939|0|ic, even depths nag. carefully regular packages sleep carefully car| +36237|556457|F|139113.93|1994-08-18|2-HIGH|Clerk#000002745|0|ts. pending sheaves are ironically. furiously furious requests alon| +36238|611779|F|183784.30|1995-01-19|5-LOW|Clerk#000000042|0|blithely ironic excus| +36239|393562|O|144046.89|1997-06-22|2-HIGH|Clerk#000000801|0|ily regular theodolites above the| +36264|333610|F|105997.06|1994-08-14|2-HIGH|Clerk#000002356|0|lly even accounts. s| +36265|701678|O|139216.70|1997-03-01|1-URGENT|Clerk#000002388|0|al platelets doze fluffily regular deposits. carefully pending s| +36266|86926|F|322958.29|1995-01-28|5-LOW|Clerk#000000156|0|ins wake blithely blithely iro| +36267|682130|O|28111.19|1996-11-15|4-NOT SPECIFIED|Clerk#000001485|0|about the slyly unusual plat| +36268|50620|O|221549.69|1995-08-18|2-HIGH|Clerk#000000954|0|ss foxes boost. blithely unusual requests alongside of the pending, regular re| +36269|252118|O|79026.68|1995-12-29|3-MEDIUM|Clerk#000002240|0|egular warthogs. quickly | +36270|573752|F|201905.67|1994-11-15|1-URGENT|Clerk#000003832|0|efully final requests. slyly express accounts will sleep blithely. exp| +36271|297631|O|152065.89|1996-12-26|5-LOW|Clerk#000003752|0|thely silent theodolites abov| +36296|518951|F|169945.80|1994-06-03|2-HIGH|Clerk#000001594|0|ckly final foxes haggle slyly sly| +36297|258793|F|63439.33|1993-01-05|3-MEDIUM|Clerk#000004101|0|regular instructions. bold ideas wake; quickly bold pl| +36298|250684|F|94810.58|1993-08-16|1-URGENT|Clerk#000003942|0|ests. carefully even| +36299|485720|F|65568.72|1994-01-13|4-NOT SPECIFIED|Clerk#000003922|0|e carefully silent hockey p| +36300|484249|F|231611.25|1993-06-07|3-MEDIUM|Clerk#000001051|0|he packages. regular dolphins s| +36301|496978|O|243557.07|1995-11-14|5-LOW|Clerk#000004245|0|l instructions across the sometimes permanent dependen| +36302|683494|O|178728.74|1995-07-21|2-HIGH|Clerk#000002777|0|l packages wake sly| +36303|483116|O|239984.03|1998-01-08|2-HIGH|Clerk#000001316|0|nts among the blithely ironic asymptotes affix slyly according to t| +36328|221464|P|324631.06|1995-06-03|3-MEDIUM|Clerk#000002153|0|egular requests-- ev| +36329|614524|F|143540.29|1993-09-04|5-LOW|Clerk#000000153|0|es. regular accounts play carefully according to the slyly special theo| +36330|36226|O|69165.77|1998-06-23|2-HIGH|Clerk#000004554|0|ent packages among the furiously bold accounts cajole slyly along the care| +36331|568601|F|87642.18|1993-05-12|1-URGENT|Clerk#000004480|0|s are fluffily unusual accounts. ironic| +36332|715544|F|286864.56|1993-09-11|4-NOT SPECIFIED|Clerk#000003031|0|arefully carefully even requests. boldly ir| +36333|647482|O|68751.12|1997-01-22|4-NOT SPECIFIED|Clerk#000000571|0|ic platelets are re| +36334|447053|F|229433.32|1994-08-25|3-MEDIUM|Clerk#000003744|0|l asymptotes. ironic, bold depend| +36335|112357|F|150945.29|1992-04-18|5-LOW|Clerk#000002652|0| doubt quickly express instructions; busy packages boost | +36360|629888|F|248272.48|1994-01-16|3-MEDIUM|Clerk#000000650|0|aggle carefully carefully bold accounts. fin| +36361|267992|O|129889.98|1996-08-22|2-HIGH|Clerk#000003598|0|. slyly final deposits affix furiously along the bl| +36362|391208|O|260478.36|1996-07-24|1-URGENT|Clerk#000004905|0|ully express dolphins sleep blithely against the spec| +36363|520355|O|292698.63|1996-01-19|3-MEDIUM|Clerk#000002611|0|uriously express foxes wake slyly slyly final | +36364|602119|F|105218.08|1994-03-10|5-LOW|Clerk#000004935|0|y regular deposits boost quickly about the pending foxes. blithely| +36365|60478|F|230514.10|1992-01-09|5-LOW|Clerk#000002769|0|s boost slyly among the f| +36366|195278|O|136879.73|1995-09-16|2-HIGH|Clerk#000002057|0|even realms wake slyly even packages. iron| +36367|34706|F|118540.38|1993-01-06|5-LOW|Clerk#000001516|0| to the furiously regular foxes| +36392|547468|O|204344.55|1995-08-28|5-LOW|Clerk#000001310|0|furiously regular requests are fluffily quietly final ideas. slyly pending p| +36393|287584|O|15351.40|1997-02-24|4-NOT SPECIFIED|Clerk#000001429|0|y furiously regular pinto beans. even deposits affix about the furiously fi| +36394|412651|F|202968.68|1992-03-19|3-MEDIUM|Clerk#000000016|0|ully final deposits. blithely bold theodolites acr| +36395|143462|F|125109.52|1994-04-11|5-LOW|Clerk#000004972|0| pinto beans. carefully special packages sleep blithely express asymptot| +36396|653605|O|14838.97|1995-06-28|5-LOW|Clerk#000004529|0|lly bold accounts boost above the depths. blithely ironic foxes| +36397|615844|O|54897.42|1997-05-03|2-HIGH|Clerk#000001580|0|g requests. quickly even deposits | +36398|476266|F|121415.19|1994-05-15|5-LOW|Clerk#000004996|0|uests. pending ideas above the regular theodolites use fluffily under the sl| +36399|574136|F|32887.71|1994-08-29|2-HIGH|Clerk#000004101|0|e sometimes quick courts. carefully pending somas i| +36424|1820|O|225159.22|1996-09-13|1-URGENT|Clerk#000002427|0|ts. slyly even deposits are furiously ironic, bold packa| +36425|582661|O|249987.92|1996-08-04|4-NOT SPECIFIED|Clerk#000000464|0|. fluffily pending pinto beans detect furiously regular asympt| +36426|749959|O|39752.49|1998-01-03|2-HIGH|Clerk#000000543|0|stealthily even requests. express packages boost. final, regular pinto beans | +36427|36940|F|99323.10|1993-06-30|2-HIGH|Clerk#000000923|0|al deposits according to the fluffily regular accoun| +36428|592123|P|153079.57|1995-05-04|4-NOT SPECIFIED|Clerk#000004726|0| pending requests engage fluffily agai| +36429|49096|F|196808.28|1993-08-21|5-LOW|Clerk#000001799|0|s wake carefully. unusual, regular foxes wake carefully accordin| +36430|136481|F|258552.85|1992-05-18|4-NOT SPECIFIED|Clerk#000003533|0|ven requests. platelets haggle enticingly. slyly regular accounts over the pe| +36431|327001|F|251555.36|1992-06-09|2-HIGH|Clerk#000001274|0| thin ideas are furiously furiously final excu| +36456|628534|O|24804.90|1998-01-12|5-LOW|Clerk#000002882|0|nooze furiously. blithely quiet pinto beans boost slyly stealthily ironic inst| +36457|15017|O|326178.61|1998-04-23|2-HIGH|Clerk#000001819|0|posits boost furiously above the furiously express frets.| +36458|385648|F|133765.56|1993-01-03|5-LOW|Clerk#000000414|0|gainst the silent, special excuses hagg| +36459|54466|F|202723.94|1994-12-17|3-MEDIUM|Clerk#000003114|0|ully. theodolites dazzle a| +36460|380251|O|44273.63|1996-06-23|2-HIGH|Clerk#000001910|0|h regularly carefully regul| +36461|125720|O|180174.13|1998-07-05|2-HIGH|Clerk#000000712|0|s. regular, regular foxes de| +36462|224341|F|85143.25|1994-08-27|3-MEDIUM|Clerk#000004176|0| are. fluffily special accounts cajole ironic asympto| +36463|247316|F|77612.58|1992-11-15|4-NOT SPECIFIED|Clerk#000004960|0|ing deposits affix carefully unusual d| +36488|135010|F|303513.06|1993-05-28|4-NOT SPECIFIED|Clerk#000000813|0|nag of the furiously i| +36489|360433|F|155177.22|1994-12-28|5-LOW|Clerk#000000190|0|s maintain carefully alongside of the blithely bold ideas. carefully ir| +36490|15386|F|154339.23|1993-06-20|4-NOT SPECIFIED|Clerk#000003836|0|slyly ironic packages cajole| +36491|579617|O|221156.03|1996-08-27|2-HIGH|Clerk#000003941|0|deas nag even, pend| +36492|618256|F|189624.03|1994-11-26|4-NOT SPECIFIED|Clerk#000000600|0| excuses boost slyly accounts. carefull| +36493|500060|F|248375.24|1992-12-15|1-URGENT|Clerk#000003632|0|n asymptotes according to the furiously bol| +36494|3740|O|189473.44|1995-09-14|2-HIGH|Clerk#000000216|0|its sleep slyly alongside of the quickly final requests. iro| +36495|602869|O|219396.24|1997-06-27|1-URGENT|Clerk#000003626|0|oost fluffily final deposits. furiously regular acc| +36520|638177|O|216235.03|1997-08-05|4-NOT SPECIFIED|Clerk#000001593|0|ckages: closely special ideas after the ironic deposits | +36521|88070|F|96425.35|1992-10-10|2-HIGH|Clerk#000002376|0|foxes. even requests serve blithely. quickly pending deposits are th| +36522|430966|O|29199.74|1997-07-28|1-URGENT|Clerk#000001437|0|ct quickly unusual hockey players. blithely ironic instructions cajole carefu| +36523|484606|F|176169.34|1993-02-21|3-MEDIUM|Clerk#000000729|0|onic pinto beans sl| +36524|519076|F|189700.37|1994-06-24|1-URGENT|Clerk#000001629|0|ss, even packages breach carefully above | +36525|78805|F|258749.21|1994-06-07|5-LOW|Clerk#000000708|0|ongside of the quickly ironic deposits. blith| +36526|693346|F|55761.53|1993-03-19|4-NOT SPECIFIED|Clerk#000003225|0|carefully ironic packages cajole blithely. carefully careful the| +36527|298598|F|98672.03|1994-12-03|5-LOW|Clerk#000000331|0|ar braids. carefully special dolphins along the pend| +36552|274942|F|77531.80|1992-04-20|4-NOT SPECIFIED|Clerk#000001426|0| requests. even packages haggle slyly around the unusual, unusual| +36553|169135|F|100639.91|1993-12-02|5-LOW|Clerk#000004260|0| accounts use blithely according to the carefully special th| +36554|136606|F|125711.38|1995-02-16|1-URGENT|Clerk#000001505|0|ironic, quick requests. blithely ironic packages boost furiously. idly| +36555|157748|O|39261.24|1998-06-28|5-LOW|Clerk#000001447|0|wake carefully regular theodolites. quiet, regular accounts s| +36556|8158|O|101278.65|1996-10-22|3-MEDIUM|Clerk#000002692|0| regular accounts. furiously regular requests affix ironi| +36557|579496|F|273073.09|1993-11-30|5-LOW|Clerk#000004261|0|ts. deposits poach blithely| +36558|79658|F|182032.90|1994-04-30|2-HIGH|Clerk#000002323|0|, ironic deposits above the careful| +36559|50080|F|121144.30|1993-11-30|2-HIGH|Clerk#000002035|0|hely ironic packages integrate carefully across the doggedly regular| +36584|190625|O|223452.76|1996-08-16|2-HIGH|Clerk#000003242|0|beans believe quickly. regular, busy instructio| +36585|583804|O|95357.77|1996-05-07|5-LOW|Clerk#000003716|0|re fluffily according to the | +36586|493711|O|298609.36|1997-07-24|1-URGENT|Clerk#000002840|0|ously furiously regular foxes. sl| +36587|537133|F|80369.99|1995-02-16|5-LOW|Clerk#000003631|0|er carefully ironic,| +36588|593425|F|239287.00|1993-02-15|3-MEDIUM|Clerk#000004563|0|lly ironic pinto beans. slyly express asymptotes nag blithely. unusual| +36589|160886|O|104702.78|1997-06-23|4-NOT SPECIFIED|Clerk#000002986|0| use permanently. asympt| +36590|249875|O|93488.02|1996-02-19|5-LOW|Clerk#000003013|0|sleep furiously along the special, pending courts. carefully | +36591|392656|F|61976.57|1992-07-20|3-MEDIUM|Clerk#000001615|0| accounts boost blithely| +36616|89206|O|265460.94|1997-02-27|1-URGENT|Clerk#000001585|0| around the fluffily final deposits. d| +36617|10834|F|97424.66|1994-12-18|5-LOW|Clerk#000003938|0|after the doggedly blithe packages nag quickly alongside of the pending requ| +36618|583516|O|205689.22|1996-03-21|2-HIGH|Clerk#000003567|0|y even requests. quickly pending ideas cajole.| +36619|144929|F|193472.18|1992-11-07|4-NOT SPECIFIED|Clerk#000001312|0|final ideas among the express a| +36620|556832|F|78799.83|1992-01-23|3-MEDIUM|Clerk#000003094|0|eas. carefully final deposits wake furiously car| +36621|160789|O|143200.87|1995-11-07|1-URGENT|Clerk#000004522|0|ly regular deposits-- ironic dependen| +36622|108892|F|280600.07|1994-02-12|2-HIGH|Clerk#000002529|0|ic theodolites. blithely even theodolites haggle. pending pl| +36623|121348|F|120923.03|1992-11-10|3-MEDIUM|Clerk#000003874|0| requests. furiously special packages aga| +36648|237781|O|72286.64|1996-07-27|3-MEDIUM|Clerk#000000869|0|ly silent deposits after the furiously even pa| +36649|367736|O|113296.49|1996-02-21|4-NOT SPECIFIED|Clerk#000002702|0|arefully bold instructions wake above the carefully ironic excuses. final requ| +36650|528971|O|231838.63|1997-03-14|5-LOW|Clerk#000001991|0|usual packages. sometimes special requests haggle furiously around the| +36651|651235|F|19006.88|1994-01-21|4-NOT SPECIFIED|Clerk#000001672|0|xes are fluffily requests; carefully bold deposits wake idle pac| +36652|535733|F|111122.86|1993-07-05|2-HIGH|Clerk#000000491|0|fully above the blithely final deposits. furiously final ideas across the fi| +36653|299860|O|171382.09|1997-03-09|4-NOT SPECIFIED|Clerk#000001627|0|ss, even theodolites cajole accor| +36654|484118|F|64955.18|1992-02-23|3-MEDIUM|Clerk#000002841|0|cial packages was furiously above the special packa| +36655|556759|F|68466.17|1994-05-08|2-HIGH|Clerk#000002082|0|telets about the furiously even packages cajole blithely according to the bli| +36680|419060|P|124486.58|1995-04-18|1-URGENT|Clerk#000003972|0|y unusual pains. even,| +36681|639193|O|35456.00|1996-11-11|2-HIGH|Clerk#000002096|0|the bold theodolites. final, unusual theodo| +36682|658732|O|157643.06|1996-08-14|4-NOT SPECIFIED|Clerk#000002203|0|ffily blithely regular deposits. slyly regul| +36683|537175|F|126169.23|1992-12-10|3-MEDIUM|Clerk#000002629|0|haggle about the pending deposits. fluffily speci| +36684|534232|O|17763.91|1997-08-14|2-HIGH|Clerk#000004616|0|ing foxes. carefully pending platelets above the pendi| +36685|573947|F|148439.29|1992-08-26|5-LOW|Clerk#000003442|0|ke to the express, unusua| +36686|575948|F|340720.08|1994-01-15|1-URGENT|Clerk#000000573|0|gular excuses cajole unusual instructions. final a| +36687|449188|F|180778.86|1992-02-18|5-LOW|Clerk#000001087|0|ual dependencies among the carefully reg| +36712|721759|F|157917.20|1994-10-30|5-LOW|Clerk#000002126|0|ideas integrate among the regular requests. requests wak| +36713|76594|O|53806.30|1997-09-20|2-HIGH|Clerk#000001277|0|ly silent theodolites after the express sheaves cajole blithely along the | +36714|308894|P|220449.85|1995-03-14|4-NOT SPECIFIED|Clerk#000001942|0|y even platelets wake carefully. regul| +36715|77176|O|284606.66|1995-10-01|3-MEDIUM|Clerk#000000168|0| carefully even platelets! slyly bold deposits affix slyly final| +36716|342862|O|192554.64|1995-09-20|1-URGENT|Clerk#000004632|0| blithely. ironic ideas are carefully final, bold excus| +36717|214961|O|348956.19|1997-04-15|5-LOW|Clerk#000001258|0|ecial packages. express requ| +36718|90889|O|151079.76|1997-11-14|2-HIGH|Clerk#000002003|0|the slyly stealthy requests. ironic dolphins are slyly. blithely regu| +36719|566407|O|92077.67|1995-10-15|1-URGENT|Clerk#000003661|0|furiously ironic foxes wake someti| +36744|598244|O|294333.54|1996-12-27|3-MEDIUM|Clerk#000000081|0|e carefully unusual deposits. gifts | +36745|185573|O|231101.14|1997-10-26|1-URGENT|Clerk#000004619|0|egular theodolites-- final, brav| +36746|413746|F|71133.37|1992-06-15|4-NOT SPECIFIED|Clerk#000003108|0|ages. stealthily regular accounts boost carefully against the unusual req| +36747|565774|O|48573.70|1996-10-02|3-MEDIUM|Clerk#000000803|0|es along the express, final requests c| +36748|460630|F|338462.57|1992-02-02|2-HIGH|Clerk#000000223|0| blithely unusual excuses kindle carefully according to the even account| +36749|293737|F|46710.61|1993-09-08|5-LOW|Clerk#000004933|0|ular realms. silent, silent pack| +36750|337510|O|53418.23|1998-02-12|4-NOT SPECIFIED|Clerk#000001153|0|ctions. express, final courts sleep ca| +36751|253826|O|231904.02|1997-05-24|4-NOT SPECIFIED|Clerk#000003767|0|l accounts. slyly unusual ideas haggl| +36776|49196|O|175685.89|1995-10-29|1-URGENT|Clerk#000000614|0|deposits are furiously special ideas. carefully expr| +36777|334502|O|49723.71|1995-07-19|1-URGENT|Clerk#000004007|0|fily. furiously even requests haggle slyly un| +36778|712822|O|200942.92|1997-03-07|5-LOW|Clerk#000004345|0|s boost carefully furiously pending re| +36779|642646|O|125617.25|1996-06-01|2-HIGH|Clerk#000004890|0|about the carefully ironic orbits integrate furiously ab| +36780|185615|O|42438.95|1996-06-11|2-HIGH|Clerk#000000625|0|ly silent courts above the quickly silent foxes haggle furiously f| +36781|364627|O|141873.64|1996-10-21|2-HIGH|Clerk#000004632|0|lar packages cajole furiously a| +36782|17969|F|262941.05|1992-12-06|3-MEDIUM|Clerk#000004339|0|iously express pinto beans wake quickly express, bold pinto be| +36783|500752|O|65161.08|1996-09-14|1-URGENT|Clerk#000001156|0|o beans are above the carefully quick deposits. slyly spec| +36808|382990|F|271854.31|1993-12-16|5-LOW|Clerk#000004106|0|c accounts haggle carefully of the regular, even platele| +36809|391496|O|208238.29|1996-07-27|3-MEDIUM|Clerk#000001033|0| ruthless pinto beans wake regularly regular pinto beans. final | +36810|120059|O|13379.22|1995-09-26|4-NOT SPECIFIED|Clerk#000001785|0|c theodolites breach carefully. special a| +36811|320996|F|65123.17|1993-02-06|4-NOT SPECIFIED|Clerk#000000818|0|lly regular depths use blithely blithely ironic foxes. cl| +36812|215641|F|14256.27|1992-05-07|1-URGENT|Clerk#000002481|0| around the fluffily special foxes. blithely ironic packages nag quickly. bl| +36813|253327|O|172815.26|1996-10-17|1-URGENT|Clerk#000003956|0|ets wake requests. blithely silent requests sleep blithely across t| +36814|646576|F|81428.43|1992-05-18|4-NOT SPECIFIED|Clerk#000001999|0|its. careful deposits against t| +36815|234787|F|88929.29|1992-10-16|1-URGENT|Clerk#000000796|0|ly final accounts sleep quickly above the | +36840|298558|O|316204.87|1997-11-17|2-HIGH|Clerk#000004993|0|beans haggle furiously after the blithely express acco| +36841|330835|F|32138.34|1993-03-19|3-MEDIUM|Clerk#000001614|0|special requests. furiously final reques| +36842|562895|F|115122.80|1992-02-03|2-HIGH|Clerk#000001770|0|theodolites. quickly ironic reques| +36843|72889|F|27161.90|1994-05-30|2-HIGH|Clerk#000003277|0|es believe fluffily. express deposits are| +36844|280186|F|97989.75|1992-01-27|5-LOW|Clerk#000003122|0|y regular accounts. blithely ironic acc| +36845|564214|O|146204.49|1995-07-26|1-URGENT|Clerk#000004442|0|uickly alongside of the carefully express platelet| +36846|472439|O|237973.55|1997-04-01|3-MEDIUM|Clerk#000004683|0|quests cajole. accounts whith| +36847|24974|F|63698.40|1994-03-01|5-LOW|Clerk#000003180|0|aggle quickly. slyly regular pinto beans detect fluffily alongside of th| +36872|476354|O|245268.62|1997-11-04|4-NOT SPECIFIED|Clerk#000003794|0|es print about the permanent, special instructions. carefully final dep| +36873|581161|O|275357.41|1998-01-14|4-NOT SPECIFIED|Clerk#000002212|0|y even requests are slyly| +36874|306577|F|24480.39|1995-02-12|5-LOW|Clerk#000001246|0|thes impress carefully above the f| +36875|115588|O|75412.54|1996-08-13|5-LOW|Clerk#000003861|0|fluffily ironic deposits wake agai| +36876|158074|F|52259.28|1992-10-13|2-HIGH|Clerk#000001843|0|ar packages grow slyl| +36877|231067|O|148339.10|1997-02-15|5-LOW|Clerk#000000315|0|e of the regular, re| +36878|20905|F|343930.01|1994-03-13|5-LOW|Clerk#000001653|0|press somas above the final accounts| +36879|331021|F|275007.24|1992-11-18|5-LOW|Clerk#000001093|0|s wake. busily silent ideas lose quickly final pinto b| +36904|709483|F|194214.11|1992-02-07|4-NOT SPECIFIED|Clerk#000002337|0| blithely even, regular accounts. even requests eat furiously| +36905|24844|F|134329.22|1992-03-15|1-URGENT|Clerk#000003890|0|furiously atop the carefully regular deposits. | +36906|522172|O|120178.08|1995-08-15|2-HIGH|Clerk#000001183|0|ly even pinto beans cajole furiously packages. express ideas acco| +36907|370429|F|300443.56|1994-11-23|1-URGENT|Clerk#000001636|0|es. accounts integrate slyly slyl| +36908|23857|O|126334.95|1995-09-26|5-LOW|Clerk#000000873|0|ag slyly carefully ironic deposits. carefu| +36909|456358|O|58182.54|1996-05-29|3-MEDIUM|Clerk#000004781|0|iously express dependenci| +36910|490781|O|59448.08|1995-06-17|1-URGENT|Clerk#000003189|0|e across the blithely ironic accounts. blithely ironic packages use| +36911|51145|F|211128.71|1994-02-27|4-NOT SPECIFIED|Clerk#000000119|0|quick requests after the fluffy gifts serve blithely carefully| +36936|86894|O|43573.61|1998-02-05|3-MEDIUM|Clerk#000004784|0|old accounts. unusual foxes use car| +36937|177053|F|58514.01|1993-09-29|5-LOW|Clerk#000003709|0|ross the blithely special requests. fluffily regular dep| +36938|476578|F|173370.84|1993-05-19|5-LOW|Clerk#000000639|0|ajole idly quickly unusual ideas. unusual,| +36939|573748|F|56084.68|1992-01-17|2-HIGH|Clerk#000004825|0|at the silent, ironic foxes. slyly express | +36940|222826|O|151435.83|1995-09-28|4-NOT SPECIFIED|Clerk#000002932|0|ts detect about the pending, regular deposits. pending ideas sle| +36941|280772|O|142833.61|1998-03-04|1-URGENT|Clerk#000001791|0|ing packages. slyly even ideas nag furiously. carefully unu| +36942|683122|F|193705.05|1994-09-26|1-URGENT|Clerk#000002061|0|eep carefully regular excuses. furiously ironic accounts haggle| +36943|222724|O|261276.86|1995-06-15|4-NOT SPECIFIED|Clerk#000004382|0|y even pinto beans. furiously regular accounts grow blithely! packages | +36968|46465|P|180947.53|1995-03-07|2-HIGH|Clerk#000003966|0|ously. furiously even foxes boost across the express, pe| +36969|172345|O|37673.02|1995-11-04|2-HIGH|Clerk#000001609|0|y. furiously even deposits| +36970|94535|F|25164.74|1992-06-28|3-MEDIUM|Clerk#000000030|0|g. furiously ironic packages are slyly of the carefully furious re| +36971|344531|F|214512.48|1994-04-21|2-HIGH|Clerk#000002776|0|usly quickly final requests. blithel| +36972|518069|F|43361.09|1992-04-07|5-LOW|Clerk#000002591|0|foxes cajole across t| +36973|426763|O|111116.28|1995-08-28|4-NOT SPECIFIED|Clerk#000004183|0|boost quietly quickly regular foxes. regular| +36974|351667|F|34656.73|1994-03-22|1-URGENT|Clerk#000000081|0|s boost above the carefully ironic package| +36975|454540|F|190738.37|1992-11-08|4-NOT SPECIFIED|Clerk#000000955|0|ironic instructions wake carefully ironic ideas. | +37000|701824|O|196106.50|1996-10-28|2-HIGH|Clerk#000002924|0|unts above the slyly even| +37001|275312|F|248711.56|1993-08-12|5-LOW|Clerk#000000187|0|layers are among the express accounts. slyly ironic accou| +37002|411173|O|53207.77|1997-09-16|4-NOT SPECIFIED|Clerk#000001387|0|s play quickly after the furiously regular fox| +37003|72605|F|131485.44|1992-09-20|4-NOT SPECIFIED|Clerk#000003628|0| the unusual theodolites. requests about the furiously final packages wa| +37004|16544|F|60074.89|1992-10-23|5-LOW|Clerk#000004675|0|theodolites. bold accounts boost fluffily blithely| +37005|550624|O|114511.68|1997-07-16|2-HIGH|Clerk#000004754|0|s haggle across the slyly ironic warthogs; carefully ironic reques| +37006|81203|F|184590.39|1992-06-27|5-LOW|Clerk#000004610|0|ress braids sleep quickly about the carefully| +37007|513103|F|217998.95|1992-11-14|4-NOT SPECIFIED|Clerk#000001696|0|riously final deposits. slyly| +37032|189412|O|44066.15|1995-10-09|2-HIGH|Clerk#000000769|0|n, regular frays. s| +37033|428536|F|251860.20|1992-12-17|4-NOT SPECIFIED|Clerk#000002530|0|ully final pinto beans haggle fluffily. unusual, even deposits grow quickly r| +37034|121726|F|214252.91|1994-06-22|4-NOT SPECIFIED|Clerk#000000194|0|p blithely. pearls are furiously about the carefully pending| +37035|583262|O|150529.49|1995-10-25|5-LOW|Clerk#000003726|0|ages are silently carefully even accounts. requests nag ca| +37036|371567|O|15319.65|1995-11-29|4-NOT SPECIFIED|Clerk#000001144|0|ged, regular foxes detect. final foxes sleep about the blithely| +37037|412213|O|258404.30|1997-12-13|4-NOT SPECIFIED|Clerk#000002592|0|o beans. furiously regular foxes doubt furiously slyly special request| +37038|287158|O|290132.57|1996-03-13|2-HIGH|Clerk#000004226|0|r the blithely final ideas. boldly regular accounts bo| +37039|5209|O|98098.60|1996-02-02|5-LOW|Clerk#000002945|0|s. ideas are fluffily final packages? carefully final dependencies us| +37064|521609|P|173398.34|1995-03-31|3-MEDIUM|Clerk#000000942|0|ccounts. quickly pending packages grow slyly sl| +37065|673903|O|9082.96|1998-02-19|4-NOT SPECIFIED|Clerk#000003703|0| deposits are. accounts sleep ca| +37066|519346|P|106054.92|1995-04-29|4-NOT SPECIFIED|Clerk#000003120|0| silent packages. slyly even platelets wak| +37067|137401|F|140498.55|1992-09-21|1-URGENT|Clerk#000002986|0|ly even pinto beans. regular instructions haggle blithel| +37068|48424|O|125813.36|1998-05-04|3-MEDIUM|Clerk#000000968|0|lithely express dolphin| +37069|85999|F|163115.25|1992-12-03|4-NOT SPECIFIED|Clerk#000004999|0|ent somas detect. platelets should wake| +37070|112007|F|65746.82|1992-10-22|1-URGENT|Clerk#000004807|0|. blithely final requests aga| +37071|737225|F|232000.17|1993-05-02|2-HIGH|Clerk#000000764|0| carefully ironic pinto bean| +37096|527509|O|106789.89|1996-11-26|5-LOW|Clerk#000003782|0|ckages. dolphins are. carefully ironic theodolites cajole inside the| +37097|70699|O|48351.00|1996-11-13|1-URGENT|Clerk#000002604|0|kages are slyly. regular pinto beans sleep | +37098|213764|F|269787.79|1994-10-24|1-URGENT|Clerk#000003628|0|es. bold, even instructions are above the special | +37099|229466|O|77397.49|1996-08-28|1-URGENT|Clerk#000004692|0|y regular theodolites. furiously regul| +37100|129331|F|306969.87|1992-10-19|3-MEDIUM|Clerk#000004929|0|arefully except the| +37101|162899|F|165146.08|1993-12-31|4-NOT SPECIFIED|Clerk#000004049|0|ckages? quickly regu| +37102|326908|O|301203.25|1998-04-27|4-NOT SPECIFIED|Clerk#000003621|0|eposits wake during the quickly regular accounts: slyly pending ideas s| +37103|560576|O|80887.90|1998-04-10|4-NOT SPECIFIED|Clerk#000000563|0|y express packages sleep slyly slyly| +37128|89927|O|4174.91|1996-01-02|2-HIGH|Clerk#000003913|0| carefully permanent packages cajol| +37129|148582|O|30584.25|1998-03-30|5-LOW|Clerk#000000399|0|nos cajole quickly silent dependencies. even requests are entici| +37130|461086|F|66708.40|1992-11-27|3-MEDIUM|Clerk#000004708|0|unusual, careful deposits sleep: quickly regular pinto bean| +37131|443606|F|67679.67|1993-04-01|5-LOW|Clerk#000003045|0|its. silent accounts among the quickly final foxes are across| +37132|685454|F|163875.85|1992-05-20|5-LOW|Clerk#000003488|0|lly ironic dependencies boos| +37133|414796|O|219126.49|1998-07-28|2-HIGH|Clerk#000001085|0|after the quickly unusual accounts. un| +37134|203345|O|60941.35|1997-10-08|1-URGENT|Clerk#000004301|0| nag. slyly bold accounts are after | +37135|605176|F|242470.24|1995-01-17|3-MEDIUM|Clerk#000000898|0|kages mold furiously regular dependencies.| +37160|431581|O|249164.65|1997-12-07|2-HIGH|Clerk#000002342|0|es cajole fluffily across the even | +37161|308675|O|318340.79|1997-10-17|1-URGENT|Clerk#000001993|0|ickly even requests cajole special, silent foxes. quick, regular asymptotes| +37162|145388|O|122866.72|1995-06-18|3-MEDIUM|Clerk#000001248|0|osits cajole according to the blithe pinto beans. ironic asymptotes wake quic| +37163|27919|O|351536.42|1996-08-12|3-MEDIUM|Clerk#000000516|0|o the Tiresias. carefully regular foxes i| +37164|469721|O|192177.66|1997-04-15|1-URGENT|Clerk#000001396|0|ronic somas. pinto beans haggle furious| +37165|89390|F|227784.66|1994-09-04|4-NOT SPECIFIED|Clerk#000001482|0| accounts detect furiously around the blithely regu| +37166|127034|F|144801.00|1993-06-24|5-LOW|Clerk#000003138|0|ironic foxes cajole furiously. acco| +37167|557123|F|90885.51|1993-09-29|1-URGENT|Clerk#000003027|0|cial, even instructions mold quickly above the sl| +37192|560350|O|209573.93|1996-08-10|5-LOW|Clerk#000000430|0|ial requests wake after the silent, final pinto beans. blit| +37193|39247|O|76288.96|1996-08-15|4-NOT SPECIFIED|Clerk#000003149|0|xes haggle blithely carefully regular excuses. blithely quick ac| +37194|360215|F|214926.95|1994-05-07|3-MEDIUM|Clerk#000001522|0|to beans integrate despite the quick| +37195|126494|O|232959.82|1997-04-26|1-URGENT|Clerk#000002265|0| the ruthlessly final foxes. blithely pending deposits haggle| +37196|473291|F|121830.79|1992-04-29|2-HIGH|Clerk#000001407|0|ltipliers wake slyly regular orbits. | +37197|95786|O|105736.84|1996-03-14|3-MEDIUM|Clerk#000004506|0|ake regularly according to the slyly special foxe| +37198|359935|F|322260.20|1994-04-24|3-MEDIUM|Clerk#000003410|0|nal pinto beans after the accounts nag final, ironic t| +37199|661595|O|318028.15|1998-05-03|1-URGENT|Clerk#000004992|0|ar foxes boost unusual packages. qui| +37224|677047|O|148447.86|1997-03-20|5-LOW|Clerk#000003935|0|notornis cajole regular dolphins| +37225|114496|F|46315.55|1994-09-30|4-NOT SPECIFIED|Clerk#000003691|0| deposits haggle final, bold s| +37226|571084|F|73279.23|1993-01-16|5-LOW|Clerk#000001527|0|ully! carefully regular instructions sleep slyly about the deposits.| +37227|449008|O|163361.98|1996-09-24|4-NOT SPECIFIED|Clerk#000002512|0|ronic tithes. slyly regular ideas above the fluffily spec| +37228|702233|F|108009.94|1994-01-26|1-URGENT|Clerk#000002185|0| ironic requests detect blithely according to th| +37229|423515|O|322099.46|1998-05-23|4-NOT SPECIFIED|Clerk#000002156|0|sleep blithely after the instructions. deposits unwind slyly across the ent| +37230|508216|F|23282.75|1992-10-25|1-URGENT|Clerk#000000037|0| furiously across the even deposits. blithely ironic deposits cajo| +37231|570517|F|49593.29|1992-10-25|1-URGENT|Clerk#000004862|0|ide of the slyly unusual deposits:| +37256|650735|O|49344.14|1996-06-09|5-LOW|Clerk#000003147|0| furiously regular courts. unusual, even accounts affix carefully. | +37257|390707|F|83866.69|1993-06-27|2-HIGH|Clerk#000002157|0|en accounts cajole slyly. blithely bold escapades haggle quickly | +37258|357568|O|305301.67|1996-11-28|2-HIGH|Clerk#000003688|0|ehind the ironic foxes. pending, bold asymptotes cajole. blithely final| +37259|634817|F|44092.19|1993-01-29|4-NOT SPECIFIED|Clerk#000002589|0|ke along the express, even pinto beans. carefully regular foxes ca| +37260|614899|O|85112.59|1997-11-28|2-HIGH|Clerk#000004314|0|uffily ironic instructions sleep slyly final packages. car| +37261|346945|F|9332.38|1994-06-25|5-LOW|Clerk#000002404|0|ts. final, unusual excuses about the fluffily bold packages b| +37262|597346|O|186782.47|1997-02-18|1-URGENT|Clerk#000002675|0| asymptotes haggle carefully blithely regular accounts. slyly | +37263|77747|F|129934.44|1992-06-25|1-URGENT|Clerk#000003164|0|d attainments boost | +37288|188843|O|152134.69|1995-12-20|5-LOW|Clerk#000002970|0|platelets cajole ab| +37289|630844|O|234275.20|1996-12-19|2-HIGH|Clerk#000001904|0| packages wake according to the always final theo| +37290|576880|F|170014.42|1995-03-20|3-MEDIUM|Clerk#000001691|0|ess foxes cajole slyly | +37291|371011|O|92581.10|1998-07-09|4-NOT SPECIFIED|Clerk#000002280|0|riously unusual requests haggle slyly furiously final theod| +37292|52942|P|245098.48|1995-04-29|5-LOW|Clerk#000004063|0|mpress final dependencies. quickly regular t| +37293|264562|O|132476.74|1997-04-06|1-URGENT|Clerk#000001044|0|tructions. fluffily regular accounts a| +37294|491089|O|90369.03|1997-02-25|5-LOW|Clerk#000002560|0|p furiously blithely ironic pinto beans. furiously final courts| +37295|704909|F|8093.78|1992-12-03|1-URGENT|Clerk#000000395|0|uests cajole regular depende| +37320|397495|O|111436.65|1997-06-08|1-URGENT|Clerk#000004243|0|nto beans. carefully final instructions haggle blithely. final reque| +37321|415687|O|134607.91|1995-09-22|2-HIGH|Clerk#000001762|0|ress excuses detect furiously. ironic requests haggle p| +37322|186238|O|220413.23|1995-06-18|1-URGENT|Clerk#000002173|0|blithely bold deposits nod finally regular frets. express, bold excus| +37323|342367|F|113130.42|1993-07-15|4-NOT SPECIFIED|Clerk#000003467|0| requests are blithely. slyly special| +37324|138754|F|313853.83|1992-02-23|5-LOW|Clerk#000004164|0|ts. bold dependencies poach furiously.| +37325|260368|F|82131.09|1992-12-20|1-URGENT|Clerk#000001651|0| cajole always. even excuses according to the bravely regular packa| +37326|504706|F|167057.60|1994-05-17|2-HIGH|Clerk#000003864|0|theodolites. bravely even packages sleep slyly along | +37327|66997|F|53148.34|1994-01-27|5-LOW|Clerk#000000058|0| haggle blithely aro| +37352|235777|O|46329.46|1997-09-29|1-URGENT|Clerk#000001791|0|sts. carefully final t| +37353|430024|F|189220.08|1993-06-14|5-LOW|Clerk#000003390|0|rnes are quickly. packages affix across the| +37354|398101|O|220774.30|1996-12-01|1-URGENT|Clerk#000002129|0| wake. fluffily iron| +37355|119755|F|158400.37|1994-11-14|3-MEDIUM|Clerk#000000862|0|al accounts shall have to are according to the blithe| +37356|443647|F|259578.87|1994-07-07|4-NOT SPECIFIED|Clerk#000004575|0|ecial theodolites cajole q| +37357|595076|F|212697.65|1994-07-13|5-LOW|Clerk#000004563|0|ideas. furiously regular requests hagg| +37358|182656|F|197462.94|1992-12-03|4-NOT SPECIFIED|Clerk#000001425|0|ts wake carefully carefully regular | +37359|131110|F|227181.50|1994-12-02|5-LOW|Clerk#000001707|0|ronic instructions haggle permanently above the | +37384|55595|O|123912.87|1996-02-29|4-NOT SPECIFIED|Clerk#000003989|0|nic, even escapades de| +37385|619885|O|112284.68|1998-07-03|2-HIGH|Clerk#000003197|0|ngside of the furiously final theodolites. regular| +37386|126817|F|242977.76|1993-07-31|5-LOW|Clerk#000000502|0|across the ironic deposits. unusual| +37387|659732|O|182141.30|1995-07-15|4-NOT SPECIFIED|Clerk#000004247|0|quests boost blithely. r| +37388|103987|O|5266.85|1997-12-28|2-HIGH|Clerk#000002475|0|hely. furiously ironic pinto | +37389|179398|O|128721.90|1997-10-04|2-HIGH|Clerk#000000922|0|ctions affix blithely carefully ironic requests. regular asympto| +37390|126046|F|77518.10|1993-03-09|4-NOT SPECIFIED|Clerk#000004664|0|uctions integrate pending, express pinto beans. flu| +37391|449129|O|302511.10|1997-05-10|5-LOW|Clerk#000003530|0|s wake. quickly even decoys boost blithely c| +37416|507794|F|17150.20|1992-11-29|5-LOW|Clerk#000003440|0|tain. carefully final pinto b| +37417|231652|O|48235.40|1997-09-16|2-HIGH|Clerk#000004198|0|s are furiously according to the regular, slow requests. requests use sly| +37418|95866|F|92063.39|1992-07-27|3-MEDIUM|Clerk#000004002|0|e furiously sly ideas use fluffily at| +37419|213740|F|252897.18|1995-01-17|3-MEDIUM|Clerk#000002415|0|e sentiments. quickly special requests before the pending pa| +37420|568189|F|176974.54|1994-06-05|1-URGENT|Clerk#000003679|0| even, thin requests. | +37421|535681|F|149595.11|1993-03-28|3-MEDIUM|Clerk#000002662|0|ts. express excuses | +37422|164317|O|177954.87|1997-08-25|2-HIGH|Clerk#000001468|0|try to run among the blithely f| +37423|147811|F|69287.26|1995-02-28|2-HIGH|Clerk#000001157|0|y careful packages might s| +37448|259058|O|192334.63|1996-04-15|2-HIGH|Clerk#000004317|0| about the regular, regular reques| +37449|229946|O|3399.98|1995-07-18|1-URGENT|Clerk#000000287|0|ely ironic accounts detect about the fluffily regular requests. blith| +37450|692239|O|112909.82|1997-03-29|2-HIGH|Clerk#000000990|0|ructions are. ideas wake blithely. quickly silent packages| +37451|450497|O|156704.19|1995-11-02|5-LOW|Clerk#000003420|0|haggle about the fluffily even accounts. regular, | +37452|247657|O|195414.78|1998-05-11|5-LOW|Clerk#000002221|0|nal pinto beans haggle slyly| +37453|590099|O|214368.61|1996-03-20|2-HIGH|Clerk#000003130|0|jole regular, final foxes. even, pendin| +37454|534748|O|138924.53|1996-12-05|5-LOW|Clerk#000004173|0|ular packages; carefully bold instructions | +37455|243139|F|84579.15|1993-02-09|4-NOT SPECIFIED|Clerk#000001652|0|ual excuses across the blithely final ideas sleep bu| +37480|418496|O|58920.09|1995-05-28|1-URGENT|Clerk#000001470|0|affix deposits. carefully expres| +37481|158530|F|316651.84|1994-10-24|1-URGENT|Clerk#000004574|0|counts. deposits sleep carefully. even theodolites are furiously.| +37482|386389|F|224687.77|1993-05-19|5-LOW|Clerk#000001188|0|unusual Tiresias cajole slyly specia| +37483|517804|O|187466.59|1996-07-27|4-NOT SPECIFIED|Clerk#000000207|0| carefully slyly even accounts. slyly pending requests| +37484|459998|F|199138.95|1994-06-06|4-NOT SPECIFIED|Clerk#000003340|0|ackages: slyly even pla| +37485|178111|O|117347.37|1998-03-17|1-URGENT|Clerk#000003310|0|e final packages haggle slyly instructions; furiously final courts | +37486|251089|F|98218.09|1994-04-08|1-URGENT|Clerk#000003321|0|inal requests: accounts haggle furiously against t| +37487|550742|O|37735.82|1996-03-21|4-NOT SPECIFIED|Clerk#000002898|0|anently according to the bl| +37512|564794|F|76251.09|1993-04-18|4-NOT SPECIFIED|Clerk#000000862|0| pending deposits affix fluffily according to the permanently final acc| +37513|482623|F|14225.05|1993-01-08|3-MEDIUM|Clerk#000000765|0|e slyly ironic deposits. final packages hag| +37514|169420|F|121626.70|1992-07-10|3-MEDIUM|Clerk#000002253|0|structions. blithely even requests amo| +37515|439808|O|51565.74|1998-01-30|4-NOT SPECIFIED|Clerk#000001102|0|. packages are quickly after the fluffily i| +37516|594856|O|331766.74|1996-05-03|3-MEDIUM|Clerk#000000287|0|ccording to the final, regular or| +37517|234298|F|257669.75|1993-10-25|1-URGENT|Clerk#000000592|0|quests. packages sleep carefully final requests. id| +37518|317785|O|146964.03|1995-07-27|5-LOW|Clerk#000001562|0|furiously enticing accounts from the blithely ironic packages cajol| +37519|254986|O|77864.64|1997-02-15|4-NOT SPECIFIED|Clerk#000002695|0| slyly ironic packages sleep carefully unusual theodolites| +37544|41393|F|140751.42|1992-02-09|5-LOW|Clerk#000002050|0|carefully bold requests nag furiously. even, bold theodolit| +37545|436012|F|180263.81|1992-11-11|2-HIGH|Clerk#000000908|0| theodolites wake carefully about the ca| +37546|527273|O|243901.90|1995-11-20|2-HIGH|Clerk#000002283|0| final accounts cajole blithely. theodolites in| +37547|623549|O|40430.21|1996-03-17|2-HIGH|Clerk#000003485|0|timents cajole blithely. carefully ironic acc| +37548|228577|F|162770.42|1995-02-17|4-NOT SPECIFIED|Clerk#000000401|0|g the ironic realms. unusual, unusual requests haggle after the furio| +37549|180172|F|166068.83|1992-05-30|5-LOW|Clerk#000000102|0|even instructions. foxes eat. slyly even excus| +37550|386461|O|145942.80|1997-10-24|3-MEDIUM|Clerk#000000196|0|s. packages affix about the quiet requests: even idea| +37551|217574|O|95988.73|1997-06-21|2-HIGH|Clerk#000001775|0|nd the slyly pending do| +37576|505615|O|77169.53|1996-10-12|4-NOT SPECIFIED|Clerk#000002735|0|eas can haggle carefully?| +37577|340595|F|110117.66|1992-09-24|5-LOW|Clerk#000003520|0|ke ironic packages. carefully even accounts against the blithely | +37578|378338|F|233448.02|1993-01-14|1-URGENT|Clerk#000003018|0|ly blithely ironic pinto beans. slyly | +37579|219088|O|188671.95|1996-02-03|5-LOW|Clerk#000002149|0|posits. unusual excuses detect slowly. gifts a| +37580|429619|F|163160.90|1994-02-13|2-HIGH|Clerk#000003183|0|slyly regular foxes wake carefully across the fluffily bold depo| +37581|351721|F|184269.27|1995-03-06|3-MEDIUM|Clerk#000004710|0|s? slyly sly asymptotes sleep blithely furiously final orbits. ruthless e| +37582|612220|F|42649.18|1993-04-03|5-LOW|Clerk#000000343|0|inal instructions cajole slyly about t| +37583|309878|O|274407.90|1996-12-16|5-LOW|Clerk#000003109|0|osits. carefully final r| +37608|113764|O|64845.53|1995-06-23|5-LOW|Clerk#000002680|0| regular requests. e| +37609|277523|O|136501.45|1997-07-15|4-NOT SPECIFIED|Clerk#000004974|0| ironic foxes try to sleep furiously. slyly express ideas are furio| +37610|68500|F|239926.29|1994-04-09|4-NOT SPECIFIED|Clerk#000002112|0|ackages. blithely ironic deposits boost furiously after the furiously regu| +37611|746098|F|82496.23|1993-02-17|4-NOT SPECIFIED|Clerk#000000595|0|dolites use carefully final, special foxes? slyly final accou| +37612|394079|F|5812.12|1992-07-15|3-MEDIUM|Clerk#000001952|0|gifts. slyly unusual excuses cajole fluffily final accou| +37613|24472|O|207669.76|1997-12-17|3-MEDIUM|Clerk#000000852|0| to are carefully. dependencies cajole bli| +37614|272362|F|70323.79|1992-02-06|2-HIGH|Clerk#000001580|0|. ironic ideas haggle slyl| +37615|317404|F|125972.15|1994-01-10|4-NOT SPECIFIED|Clerk#000002263|0|cajole even asymptotes. qui| +37640|598976|O|116270.55|1996-04-24|1-URGENT|Clerk#000002175|0|nusual packages eat against the even foxes. slyly unusual pinto | +37641|474310|O|43818.96|1995-07-24|2-HIGH|Clerk#000004069|0| theodolites haggle fluffily around the speci| +37642|701209|O|80282.83|1996-09-11|3-MEDIUM|Clerk#000004340|0|ms cajole: blithely final platelets wake slyly. instruction| +37643|441229|F|85528.69|1992-04-08|5-LOW|Clerk#000004850|0|ss accounts are unusual deposi| +37644|482260|O|95171.00|1998-03-09|2-HIGH|Clerk#000004347|0|ays among the slyly regular pac| +37645|76480|F|145802.07|1992-01-14|5-LOW|Clerk#000000904|0|old furiously alongside of the thinly pending accounts. regular excuses slee| +37646|647326|F|259520.72|1994-08-14|3-MEDIUM|Clerk#000002851|0|requests. regular pinto bean| +37647|84151|F|198886.64|1993-09-09|2-HIGH|Clerk#000004666|0| furiously regular instruction| +37672|570830|O|133700.76|1998-02-25|4-NOT SPECIFIED|Clerk#000003541|0|ily quick ideas. ruthless accounts haggle furiously after the deposits.| +37673|681527|P|157803.93|1995-03-12|3-MEDIUM|Clerk#000002609|0|ions. ironic theodolites boost slyly. carefully unus| +37674|408262|O|217008.21|1996-05-25|3-MEDIUM|Clerk#000002712|0|cial, even requests. slyly ironic accounts may boost slyly| +37675|637285|F|80014.04|1993-10-24|2-HIGH|Clerk#000002623|0|furious packages. special ideas are. fluffily regular deposit| +37676|80107|F|196227.81|1994-03-15|5-LOW|Clerk#000000383|0|, special courts. careful| +37677|95356|O|161651.92|1997-12-16|3-MEDIUM|Clerk#000002419|0|ss ideas are furiously asymptotes. bold pinto beans sleep carefu| +37678|634685|F|319493.16|1993-02-22|3-MEDIUM|Clerk#000001343|0|e unusual ideas hang carefully furiously idle pinto beans. ironic accounts | +37679|646346|F|171701.44|1993-08-03|1-URGENT|Clerk#000004710|0|r theodolites. slyly final | +37704|132833|F|95013.41|1994-07-07|3-MEDIUM|Clerk#000000510|0|usly final excuses would nag slyly. slyly| +37705|523255|F|182517.04|1993-08-14|2-HIGH|Clerk#000000497|0| carefully ironic reques| +37706|586876|O|103155.17|1998-03-31|1-URGENT|Clerk#000002728|0|oxes affix carefull| +37707|360904|O|56621.79|1997-11-22|1-URGENT|Clerk#000000397|0|y even foxes. quickly furious dependencies use fluf| +37708|441856|O|253169.89|1996-03-31|4-NOT SPECIFIED|Clerk#000001335|0|. blithely close deposits wake against the s| +37709|518956|F|287703.15|1992-02-07|5-LOW|Clerk#000001582|0|yly final multipliers believe car| +37710|321422|F|228640.82|1994-06-28|4-NOT SPECIFIED|Clerk#000002607|0|lithely even platelets. furiously final packages boo| +37711|631834|F|130784.35|1992-12-06|1-URGENT|Clerk#000002072|0|packages; platelets sleep furiously according to the fluffily e| +37736|717311|O|157160.22|1997-05-29|3-MEDIUM|Clerk#000001239|0| pending packages affix closely quickly bold ideas. accounts detect alongs| +37737|331930|F|149095.72|1992-11-29|2-HIGH|Clerk#000003421|0|the quickly final ideas affix quickly about | +37738|216794|F|138609.46|1992-08-17|4-NOT SPECIFIED|Clerk#000000395|0|ins nag furiously final pinto bea| +37739|154384|F|56171.61|1992-06-27|2-HIGH|Clerk#000002250|0|ies above the carefully special deposits eat above the s| +37740|457657|O|206069.04|1996-06-18|2-HIGH|Clerk#000000703|0| ironic accounts x-ray idly alongside of t| +37741|586360|F|155404.52|1994-01-29|4-NOT SPECIFIED|Clerk#000002090|0|ke slyly furiously regular deposits. requests are slyly. slyly| +37742|684011|O|84371.53|1996-03-23|1-URGENT|Clerk#000002590|0|s haggle slyly. foxes sleep about the slyly furious accounts. blithe| +37743|166124|F|279778.67|1994-07-26|4-NOT SPECIFIED|Clerk#000003980|0| packages. express deposits sleep slyly; regular, | +37768|543976|O|146706.32|1996-10-21|5-LOW|Clerk#000003173|0|dependencies. express, even instructions may unwind blithely final instruct| +37769|95062|O|243403.25|1997-02-11|4-NOT SPECIFIED|Clerk#000001152|0|y even packages. fluffily even requests breach sometimes. theodolites alo| +37770|197663|P|138360.02|1995-03-10|1-URGENT|Clerk#000000127|0|onic, even pinto beans sleep ruthlessly around the pending platelets| +37771|360368|F|252226.76|1993-10-15|2-HIGH|Clerk#000003530|0|ly unusual warthogs cajole against the furiously | +37772|439093|O|173429.34|1995-07-25|3-MEDIUM|Clerk#000001385|0|uickly special dependencies use slyly after the packages. bold packages bel| +37773|555685|O|50818.84|1997-02-05|5-LOW|Clerk#000000774|0|ously ironic requests. furiously pending deposits promise. | +37774|390940|O|177340.56|1996-01-24|5-LOW|Clerk#000001141|0| excuses haggle blithe| +37775|495943|O|284176.81|1997-09-03|4-NOT SPECIFIED|Clerk#000001840|0|ions breach carefull| +37800|554101|F|100208.09|1993-11-11|2-HIGH|Clerk#000000980|0|gular foxes cajole blithely furiously busy foxes. fluffily| +37801|7126|O|31249.12|1997-03-24|1-URGENT|Clerk#000004093|0|r requests alongside of the even, special depo| +37802|491989|F|89140.60|1993-05-08|3-MEDIUM|Clerk#000003569|0|ress packages above the regular, even accounts affix carefully careful ideas.| +37803|93910|F|49585.81|1992-01-26|1-URGENT|Clerk#000000347|0|ly even, even dinos.| +37804|320291|F|92531.75|1994-04-03|2-HIGH|Clerk#000004365|0| accounts among the final deposi| +37805|365518|O|13150.88|1998-07-30|1-URGENT|Clerk#000000723|0|kages. carefully ironic theodolites kindle fluffi| +37806|738125|O|56900.90|1996-01-27|1-URGENT|Clerk#000001877|0|ag quickly accordin| +37807|660193|F|246687.89|1994-05-16|4-NOT SPECIFIED|Clerk#000000726|0| at the fluffily final packages. unusual depe| +37832|342500|F|270589.69|1992-03-14|1-URGENT|Clerk#000001820|0| furiously careful instructions against the furiously regular pinto b| +37833|140101|O|32964.48|1995-11-15|2-HIGH|Clerk#000003447|0|busy foxes sleep fluffily blithely ironi| +37834|400697|O|82629.95|1995-05-13|5-LOW|Clerk#000001717|0| are. carefully regular accou| +37835|253997|O|28138.89|1998-04-05|1-URGENT|Clerk#000003709|0|eans. ironic pinto beans detect alongside of the final accounts. d| +37836|666583|O|54756.16|1995-06-23|4-NOT SPECIFIED|Clerk#000000569|0|ts boost slyly after the blithely regular theodolites. bold fo| +37837|491633|O|148144.95|1998-05-06|2-HIGH|Clerk#000000121|0| instructions use carefully enticing ideas. c| +37838|112741|F|99394.07|1993-10-06|3-MEDIUM|Clerk#000004983|0|eodolites according to the fur| +37839|334729|O|90746.43|1996-08-01|5-LOW|Clerk#000000941|0|ckey players. fluffily idle dependencies belie| +37864|32221|O|253315.90|1996-07-03|4-NOT SPECIFIED|Clerk#000004783|0|ts nag alongside of the dinos. quickly final requests haggle slyly alongsi| +37865|36517|O|35974.34|1998-06-20|2-HIGH|Clerk#000003916|0| the furiously final ideas; slyly bold courts x-ray silent foxes. regular | +37866|239236|O|205660.73|1996-05-15|3-MEDIUM|Clerk#000001216|0|theodolites wake fluffily carefully fina| +37867|61396|O|205809.07|1997-08-05|2-HIGH|Clerk#000000224|0|s the even foxes boost carefully | +37868|603679|F|116025.79|1994-02-04|3-MEDIUM|Clerk#000002180|0|ajole carefully according to the close accounts. regular ideas haggle reques| +37869|1247|P|142624.47|1995-02-27|2-HIGH|Clerk#000001087|0|alongside of the blithely special packages| +37870|693700|O|79279.13|1998-04-27|4-NOT SPECIFIED|Clerk#000001421|0| final, unusual requests. unusual pinto beans according to the unu| +37871|244312|F|342878.19|1993-07-07|1-URGENT|Clerk#000002393|0| the fluffily express requests nag slyly bl| +37896|644323|O|236599.67|1997-11-08|4-NOT SPECIFIED|Clerk#000001827|0|ly carefully even packages. carefully bold instructions use about the special| +37897|610321|F|179939.37|1992-01-14|5-LOW|Clerk#000004343|0|s about the unusual ideas wake slyly furiously regular excuses. depos| +37898|653116|O|99694.26|1997-08-18|1-URGENT|Clerk#000001952|0|detect. ironic requests use carefully-- | +37899|643120|F|103029.41|1994-06-23|2-HIGH|Clerk#000001894|0|along the blithely unusual forges. final accounts sl| +37900|654148|O|244048.05|1996-08-29|4-NOT SPECIFIED|Clerk#000001423|0|c, final requests: blithel| +37901|3808|O|157626.43|1998-03-04|3-MEDIUM|Clerk#000004497|0|y regular theodolites. | +37902|221941|F|186500.86|1993-03-16|4-NOT SPECIFIED|Clerk#000003629|0|uickly final accounts sleep furiously theodolites. slyl| +37903|397660|F|87482.53|1993-08-05|1-URGENT|Clerk#000000024|0|regularly regular decoys imp| +37928|204077|O|210847.43|1996-04-05|5-LOW|Clerk#000004691|0|ing instructions. slyly pen| +37929|166705|O|202872.54|1997-06-12|4-NOT SPECIFIED|Clerk#000001434|0|beans cajole slyly across the carefully bold| +37930|539966|F|311129.36|1993-05-18|4-NOT SPECIFIED|Clerk#000004455|0| the furiously bold pinto beans. requests nod care| +37931|195730|F|34764.62|1992-11-11|5-LOW|Clerk#000000883|0|st around the furiously regular reque| +37932|120865|O|220570.33|1996-02-26|2-HIGH|Clerk#000002002|0|refully final ideas. q| +37933|362050|O|178511.93|1998-01-01|4-NOT SPECIFIED|Clerk#000003390|0|nusual pinto beans. carefully brave multipliers wake carefully into th| +37934|193427|O|4134.63|1996-10-02|5-LOW|Clerk#000003026|0|s among the ironic, express accounts haggle blithely blithely unusua| +37935|425399|F|94043.50|1992-05-23|5-LOW|Clerk#000002066|0|along the regular, regular ideas? fin| +37960|672440|F|262652.70|1994-09-20|1-URGENT|Clerk#000003279|0|arefully special dependencies wake final courts. care| +37961|685106|O|265830.00|1995-07-23|5-LOW|Clerk#000002748|0|ideas affix carefully final foxes. slyly unusual theodolites integrate. bol| +37962|565175|F|26086.59|1993-06-08|5-LOW|Clerk#000004542|0|sual accounts. furiously final excuses boos| +37963|137812|O|103891.89|1995-09-04|2-HIGH|Clerk#000002715|0| ideas cajole among the furiously regular deposits. furi| +37964|175037|F|177519.02|1994-02-12|5-LOW|Clerk#000001008|0| ironic packages. regular deposits haggle | +37965|336052|O|15526.16|1997-11-27|4-NOT SPECIFIED|Clerk#000001276|0|pinto beans. slyly express packages haggle c| +37966|522637|F|199879.41|1993-08-19|4-NOT SPECIFIED|Clerk#000003060|0|ns boost carefully along the blithely bold grouc| +37967|685027|F|53411.97|1992-02-05|1-URGENT|Clerk#000004073|0|riously bold pinto beans cajo| +37992|729167|O|209373.72|1997-09-02|3-MEDIUM|Clerk#000002566|0|y deposits. attainments are. ironic pinto| +37993|98149|O|51877.98|1995-04-22|3-MEDIUM|Clerk#000003830|0|the furiously regular requests. regular ac| +37994|312907|F|196012.82|1992-10-19|2-HIGH|Clerk#000000757|0|fully final pinto beans sleep against the fin| +37995|6632|O|326628.18|1997-02-23|1-URGENT|Clerk#000001013|0|ajole blithely above the silent foxes. ideas cajole fur| +37996|458606|F|95728.61|1993-10-27|2-HIGH|Clerk#000000946|0|ular accounts. furiously regular decoys across the carefully | +37997|38165|F|188343.77|1992-03-01|3-MEDIUM|Clerk#000000786|0| along the never re| +37998|180911|F|123997.92|1994-10-31|1-URGENT|Clerk#000002789|0|iously close packages. fluff| +37999|67790|F|238571.68|1992-04-30|1-URGENT|Clerk#000004742|0| requests haggle furiously. asymptotes cajole. special packages ar| +38024|90652|F|94610.77|1993-01-22|5-LOW|Clerk#000003864|0|ajole regular pinto beans. final, unusual | +38025|321139|F|85283.13|1992-10-18|2-HIGH|Clerk#000003785|0|silent, special asymptotes. unusual requests | +38026|352966|F|173144.10|1994-02-23|1-URGENT|Clerk#000001623|0|onic accounts! pending deposits are | +38027|546955|F|135154.24|1992-12-14|2-HIGH|Clerk#000000612|0|grate quickly blithely silent dep| +38028|660538|F|48597.47|1994-08-11|1-URGENT|Clerk#000004875|0|counts. quickly ironic packages boost quickly. quickly e| +38029|151090|F|44367.95|1993-08-19|1-URGENT|Clerk#000002266|0|blithely idle excuses integrate carefully. blithely regular ideas | +38030|618781|O|69840.10|1995-11-12|4-NOT SPECIFIED|Clerk#000004408|0|ithes are slyly furiously regular theodolites. even, even instructions sle| +38031|319934|O|367954.42|1996-06-18|2-HIGH|Clerk#000002362|0| slyly carefully final packages. instructions mold furiously among the never | +38056|376208|O|189307.44|1998-05-26|5-LOW|Clerk#000002777|0|iously silent foxes are carefully. ironic request| +38057|420379|O|221455.07|1996-01-29|5-LOW|Clerk#000002052|0|y final hockey players. car| +38058|308461|F|94331.83|1994-02-12|1-URGENT|Clerk#000003939|0|jole furiously against the ca| +38059|280093|F|268527.30|1992-08-14|4-NOT SPECIFIED|Clerk#000003612|0|s are across the quickly ironic packages. blithely ironic asymptotes i| +38060|508024|F|204152.47|1994-03-04|5-LOW|Clerk#000002892|0|ns breach quickly foxes. iron| +38061|347299|O|41707.35|1997-12-13|2-HIGH|Clerk#000003903|0|uickly regular excuses. quickly silent excuses use along the iron| +38062|529414|F|168988.16|1994-12-22|2-HIGH|Clerk#000002237|0|c, silent foxes affix blithely alongside of the express | +38063|578110|P|96439.36|1995-04-10|1-URGENT|Clerk#000000353|0|gular theodolites. final, slow deposits unwind fl| +38088|43249|F|156269.57|1992-10-02|2-HIGH|Clerk#000004365|0|ly special deposits. carefully unusual warhorses cajole above the r| +38089|126187|F|43188.75|1994-01-03|5-LOW|Clerk#000003876|0|to beans are blithely after the special, unusual ideas.| +38090|549382|F|329538.40|1993-11-06|5-LOW|Clerk#000003190|0|he permanently express| +38091|206920|F|183410.16|1994-11-10|1-URGENT|Clerk#000003886|0|bold excuses sleep bold ideas. carefully final packages are carefully a| +38092|693202|F|89802.31|1992-02-03|1-URGENT|Clerk#000003612|0|ind carefully. carefully regular courts ea| +38093|136495|F|238796.14|1994-11-16|1-URGENT|Clerk#000004056|0|alongside of the quickly regular deposits. final packages print above the bl| +38094|565559|F|97464.40|1994-02-28|2-HIGH|Clerk#000001614|0|ronic notornis. bold dependencies affix slyly express accounts. re| +38095|597623|F|224658.04|1994-01-02|1-URGENT|Clerk#000001103|0|lly regular requests sleep above the packages; fluffily ironic dinos wake slyl| +38120|248647|F|83023.18|1995-01-25|2-HIGH|Clerk#000003009|0|eep slyly final ideas. platelets cajole blithely fluffy depo| +38121|729643|O|73236.80|1996-02-11|4-NOT SPECIFIED|Clerk#000001471|0|uickly! quietly final dolphins around the final, special requests integra| +38122|599012|O|114289.30|1996-12-14|3-MEDIUM|Clerk#000000363|0|. unusual theodolites are slyly bold packages: bold, even| +38123|334690|F|89709.75|1993-08-09|3-MEDIUM|Clerk#000003588|0| deposits maintain furious| +38124|116191|O|265892.59|1996-11-04|4-NOT SPECIFIED|Clerk#000001863|0|xpress accounts. carefully silent instructions above the blithely| +38125|539209|F|93183.33|1992-02-05|3-MEDIUM|Clerk#000001616|0|ully above the slyly ruthle| +38126|220711|O|69575.58|1996-02-24|4-NOT SPECIFIED|Clerk#000003936|0| among the carefully final d| +38127|726518|O|144782.96|1997-03-26|5-LOW|Clerk#000002778|0|riously even accounts despite the furi| +38152|579007|F|103628.30|1994-03-24|4-NOT SPECIFIED|Clerk#000002200|0|uests. regular, final instructions wake carefully. quickly express| +38153|105532|O|70386.92|1995-08-06|5-LOW|Clerk#000000328|0| unusual instructions against the furiously permanen| +38154|649816|F|122458.84|1993-05-05|1-URGENT|Clerk#000002713|0|ake. quickly special requests hang above the | +38155|678043|F|310501.81|1993-01-08|3-MEDIUM|Clerk#000000222|0|ly ironic packages about the express, even packages sleep | +38156|340889|F|204435.69|1993-12-19|5-LOW|Clerk#000004891|0|odolites. carefully daring hockey players cajole alon| +38157|60184|F|114855.01|1994-01-06|2-HIGH|Clerk#000002743|0|regular, pending accoun| +38158|492818|O|182196.17|1996-01-25|5-LOW|Clerk#000000207|0|hely regular accounts sleep after the final accounts; foxes eat blithely.| +38159|540440|O|130405.11|1997-09-07|4-NOT SPECIFIED|Clerk#000002025|0| are furiously above the regular asympto| +38184|672229|F|139650.23|1992-01-21|1-URGENT|Clerk#000002069|0|s. even deposits boost quickly expre| +38185|132629|F|32216.12|1992-06-15|5-LOW|Clerk#000001290|0| regular excuses haggle at the sly instructions. blithely silent requests| +38186|83338|O|198116.58|1998-03-08|4-NOT SPECIFIED|Clerk#000002157|0|poach above the dogged asymptotes. furious| +38187|381506|O|250200.92|1995-09-04|2-HIGH|Clerk#000004000|0|careful instructions use| +38188|220343|F|277233.96|1995-02-25|4-NOT SPECIFIED|Clerk#000002484|0|ts haggle ironically even requests. pending requests nag slyly slyly ironic f| +38189|543359|O|10510.88|1997-09-19|3-MEDIUM|Clerk#000000934|0|e express frets. regular accounts solve blithely a| +38190|234671|F|51978.44|1993-05-18|3-MEDIUM|Clerk#000001098|0|gly ironic requests sleep slyly carefully ir| +38191|604475|O|25794.86|1998-07-30|4-NOT SPECIFIED|Clerk#000002733|0|t, final foxes cajole | +38216|646952|F|276074.17|1993-12-18|4-NOT SPECIFIED|Clerk#000001104|0|gular, ironic foxes solve slyly pinto beans. quickly ironic| +38217|567454|O|21175.09|1997-12-25|4-NOT SPECIFIED|Clerk#000000203|0|ely; regular asymptotes sleep busily. furiously express frets sleep against | +38218|192145|O|258021.90|1996-12-01|3-MEDIUM|Clerk#000004580|0|ly regular accounts. blithely pend| +38219|599261|F|216534.74|1993-04-02|1-URGENT|Clerk#000000014|0|gular accounts are fluffily quietly silent requests. slyl| +38220|23890|O|24909.43|1996-05-28|3-MEDIUM|Clerk#000000719|0| use furiously according to t| +38221|269204|O|10450.64|1997-05-26|2-HIGH|Clerk#000002521|0|fter the silent theodolit| +38222|511007|O|189370.06|1997-04-24|5-LOW|Clerk#000002071|0|multipliers cajole ca| +38223|230200|O|129773.51|1996-05-26|3-MEDIUM|Clerk#000002036|0|ccounts. slyly ironic ideas lose carefully among the slyly | +38248|463769|F|178716.20|1993-01-04|5-LOW|Clerk#000001345|0|detect carefully? even foxes boost furiously-- slyly ironic i| +38249|565274|F|181876.54|1992-02-29|1-URGENT|Clerk#000003362|0|hely unusual deposits. carefully regular dependencies haggle| +38250|309641|O|182168.79|1996-03-10|3-MEDIUM|Clerk#000003268|0|y according to the requests. regular, special instru| +38251|619651|F|45542.75|1993-07-09|1-URGENT|Clerk#000000042|0|kly ironic packages. s| +38252|716953|F|148454.75|1993-10-21|5-LOW|Clerk#000004498|0|ix furiously bold, final requests. platel| +38253|320567|F|164177.13|1992-05-06|2-HIGH|Clerk#000004603|0|ickly at the quickly special frays. blithely final dolphins wake fur| +38254|508447|F|136201.82|1992-12-07|1-URGENT|Clerk#000002992|0|thinly regular deposits haggle furiously across the carefully regular asympt| +38255|695755|F|154400.41|1992-01-06|3-MEDIUM|Clerk#000001375|0|orbits cajole slyly slyly pen| +38280|283841|F|10590.70|1992-10-29|1-URGENT|Clerk#000004060|0|beans. unusual packages cajole carefully at the | +38281|499400|O|135150.09|1996-05-10|3-MEDIUM|Clerk#000004723|0|ccounts are furiously fluffily final foxe| +38282|158365|F|313245.95|1994-10-06|3-MEDIUM|Clerk#000000488|0|nal, unusual requests. slyly| +38283|631573|O|251470.73|1996-10-04|4-NOT SPECIFIED|Clerk#000004828|0|gular dependencies sleep. fluffily blithe excuses nag. ironi| +38284|84448|F|96270.00|1993-07-14|1-URGENT|Clerk#000002883|0|cial accounts detect s| +38285|309232|F|62861.35|1992-10-17|2-HIGH|Clerk#000003594|0|l dinos. even packages grow furiously final| +38286|480200|F|129585.84|1993-03-15|3-MEDIUM|Clerk#000000593|0|into beans sleep carefully ironic request| +38287|712042|F|21380.53|1993-09-10|4-NOT SPECIFIED|Clerk#000004101|0|al packages breach slyly. | +38312|278308|O|15596.51|1995-06-07|1-URGENT|Clerk#000003966|0|g to the slyly silent excuses cajole| +38313|509767|F|207459.71|1993-09-20|1-URGENT|Clerk#000000659|0|blithely even foxes. blithely pending deposits wake | +38314|372634|O|264166.84|1995-08-14|4-NOT SPECIFIED|Clerk#000004219|0|ourts wake after the silently regular excuses: fluffily quiet reques| +38315|358585|P|207943.86|1995-05-03|4-NOT SPECIFIED|Clerk#000000938|0|special ideas sleep | +38316|485326|F|122490.42|1994-05-11|2-HIGH|Clerk#000001722|0|ic packages alongside of the idly final frets haggle furious| +38317|623347|O|232598.57|1997-03-29|3-MEDIUM|Clerk#000000597|0|ges. ironic instructions affix blithely furiously even accounts. | +38318|586369|F|46876.58|1993-01-23|2-HIGH|Clerk#000001033|0|ainst the ironic, even accounts. carefully ironic platel| +38319|79159|O|135091.86|1995-07-10|4-NOT SPECIFIED|Clerk#000001992|0|. blithely regular requests haggle carefully excuses. sometime| +38344|665944|O|33064.16|1997-07-10|4-NOT SPECIFIED|Clerk#000003502|0|uests are. carefully special deposits haggle close, silent deposits.| +38345|250282|P|143052.44|1995-05-08|4-NOT SPECIFIED|Clerk#000002544|0|ts. carefully special accounts across the quickly express pinto beans| +38346|470410|F|122684.12|1994-11-25|5-LOW|Clerk#000000685|0|ey players haggle across the blithely careful package| +38347|398848|F|202437.98|1994-04-21|5-LOW|Clerk#000004329|0|e carefully after the quickly even dolphins. even, bold dependencies hinder | +38348|677437|O|149895.90|1995-10-30|5-LOW|Clerk#000002019|0|o the final theodolites. furiously final ideas| +38349|678544|F|94140.39|1994-12-30|4-NOT SPECIFIED|Clerk#000000182|0|nically even dolphins above the fluffily final deposits use| +38350|530725|F|13948.76|1993-03-09|3-MEDIUM|Clerk#000003743|0|le about the blithely final pains.| +38351|122081|O|20277.21|1996-11-23|1-URGENT|Clerk#000003746|0|l deposits wake against the blithely ironic de| +38376|560392|O|126885.19|1995-04-02|1-URGENT|Clerk#000004118|0|have to cajole steal| +38377|733630|O|125746.72|1995-06-04|3-MEDIUM|Clerk#000004230|0|ggle quickly about the express, unusual theodolites-- carefully special accoun| +38378|103162|O|230250.25|1997-11-14|4-NOT SPECIFIED|Clerk#000002109|0|ges are against the requests. de| +38379|575299|O|144299.15|1996-06-06|2-HIGH|Clerk#000000139|0|inal accounts haggle | +38380|18271|O|170391.44|1996-09-05|5-LOW|Clerk#000004654|0|ronic foxes? carefully even decoys sleep sl| +38381|319774|O|206881.02|1997-01-10|1-URGENT|Clerk#000004656|0|ounts above the express f| +38382|685303|O|172232.93|1998-06-01|2-HIGH|Clerk#000002197|0|ng the bravely ironic packages. carefully regular theodolites haggle| +38383|124603|F|216175.10|1993-05-03|2-HIGH|Clerk#000002223|0|l pains impress daringly at| +38408|180754|F|184183.74|1994-04-19|4-NOT SPECIFIED|Clerk#000001467|0|ts. even ideas haggle accord| +38409|419159|O|292765.95|1998-07-15|4-NOT SPECIFIED|Clerk#000001093|0|telets according to the| +38410|46237|O|25079.74|1998-07-08|4-NOT SPECIFIED|Clerk#000003631|0|s. blithely special platelets above the blithely even somas detect ca| +38411|95579|O|40603.40|1998-03-08|2-HIGH|Clerk#000000240|0|ideas integrate enticingly even packages. | +38412|640720|F|65720.83|1994-04-12|1-URGENT|Clerk#000003303|0|nag blithely-- slow| +38413|77401|O|18378.09|1995-03-11|2-HIGH|Clerk#000002368|0|sits wake quickly along| +38414|366865|O|114076.16|1997-02-27|4-NOT SPECIFIED|Clerk#000000574|0|ions boost besides the pending ideas. carefull| +38415|123893|O|100300.84|1998-06-17|3-MEDIUM|Clerk#000000630|0|. slyly final packages use furiously express, even platelets. car| +38440|255838|F|279204.34|1994-08-25|4-NOT SPECIFIED|Clerk#000004368|0|symptotes haggle blithely along the boldly qu| +38441|113086|O|122106.92|1995-06-21|5-LOW|Clerk#000004344|0| ironic accounts snooze blithely carefully special ac| +38442|117592|F|296795.96|1993-05-03|5-LOW|Clerk#000000409|0|d. furiously ironic packages u| +38443|113308|F|14941.05|1994-02-22|5-LOW|Clerk#000001914|0|s are. pinto beans use. fluffily regular deposits maintain flu| +38444|92159|O|150202.45|1998-01-09|5-LOW|Clerk#000001882|0|ackages wake furiously. slyly careful i| +38445|163801|O|235289.45|1996-04-12|3-MEDIUM|Clerk#000001293|0|ts up the quickly regu| +38446|476092|O|19065.39|1996-01-31|3-MEDIUM|Clerk#000004600|0|odolites cajole carefully special instructions. thinly regular requests ca| +38447|646921|O|221823.27|1997-06-24|2-HIGH|Clerk#000000018|0|ithely furiously ironic requests. carefully regular accounts thrash carefully| +38472|21184|O|201520.09|1996-10-15|4-NOT SPECIFIED|Clerk#000004615|0|ly pending platelets. slyly iro| +38473|518953|F|74556.39|1992-04-05|2-HIGH|Clerk#000001794|0|ily ironic accounts was above th| +38474|292279|O|297664.89|1995-06-24|2-HIGH|Clerk#000002074|0| engage furiously furiously express gifts. regular excuses affix| +38475|567995|F|189236.71|1992-03-04|5-LOW|Clerk#000004889|0|nal instructions. carefully special deposits are| +38476|281992|O|114856.91|1996-05-26|4-NOT SPECIFIED|Clerk#000001979|0|slyly regular foxes integrate fluffily across the furiously final dolphins:| +38477|183500|F|327534.77|1992-06-20|5-LOW|Clerk#000003482|0|uiet, special accounts u| +38478|74794|F|79974.05|1993-07-25|2-HIGH|Clerk#000004771|0| regular deposits. requests x-ray alongside of the ideas. carefully special | +38479|55114|F|14890.27|1994-10-03|3-MEDIUM|Clerk#000001390|0|eposits. bold theodolites cajole blithely | +38504|25268|O|180702.91|1997-03-02|4-NOT SPECIFIED|Clerk#000001818|0|. carefully regular foxes haggle. even, regular| +38505|163870|F|193429.09|1992-01-23|5-LOW|Clerk#000000151|0|ages. blithely final fo| +38506|154021|F|140839.70|1992-03-05|1-URGENT|Clerk#000003928|0|r deposits: carefully express requests cajole fluffily regular, ironic d| +38507|353453|O|112775.93|1995-10-28|3-MEDIUM|Clerk#000004207|0|eodolites. silent patterns boost quick| +38508|478115|O|83597.27|1995-08-12|3-MEDIUM|Clerk#000002380|0|r requests sleep slyly. express, exp| +38509|168346|O|78953.34|1997-06-12|3-MEDIUM|Clerk#000001825|0|gular deposits sleep final deposits. requests wake slyly. special, | +38510|390455|O|260939.17|1996-08-16|2-HIGH|Clerk#000000969|0| the unusual, pendi| +38511|622471|F|229416.26|1992-05-26|3-MEDIUM|Clerk#000001678|0|ole to the quickly special packages. regul| +38536|111328|F|206010.36|1993-10-08|1-URGENT|Clerk#000001675|0|are carefully fluffily unusual platelets. doggedly final| +38537|584590|O|45814.36|1995-07-14|5-LOW|Clerk#000004252|0|bold, final dependencies sleep pending, regular inst| +38538|198421|O|183370.71|1996-07-29|3-MEDIUM|Clerk#000000494|0|ages nag requests. express, even accounts about the quickly quiet pa| +38539|329822|F|322851.06|1995-01-19|3-MEDIUM|Clerk#000003161|0|ly about the furiously bold packages. slyly final| +38540|60071|O|5005.60|1998-03-02|5-LOW|Clerk#000003138|0|structions hang slyly unusual, regular instructions. blithely express the| +38541|103343|O|108112.75|1996-02-09|1-URGENT|Clerk#000003667|0|ven requests-- blithely silent pinto beans are | +38542|628591|F|232759.33|1993-10-03|4-NOT SPECIFIED|Clerk#000004563|0|l accounts. pending, special d| +38543|224021|F|90958.63|1993-03-16|5-LOW|Clerk#000002886|0|ular requests. ironic ideas nod. ironic theodolites aff| +38568|118517|F|243803.73|1992-06-05|5-LOW|Clerk#000001809|0|ly pending theodolites nag furiously above the carefully regular dep| +38569|652621|F|186333.95|1992-05-22|2-HIGH|Clerk#000004961|0|al depths. even, ironic| +38570|574168|O|220800.15|1995-06-30|3-MEDIUM|Clerk#000001174|0|beans! furiously regular pinto bean| +38571|509158|F|144656.66|1993-02-15|3-MEDIUM|Clerk#000002521|0|es. ironic, pending pinto beans haggle carefully pinto beans. furi| +38572|638239|O|271667.25|1998-02-19|4-NOT SPECIFIED|Clerk#000001150|0|y regular dolphins above the furiously u| +38573|359365|O|143807.93|1998-06-24|1-URGENT|Clerk#000003041|0|its? quickly regular packages wake beside the care| +38574|73093|P|129170.51|1995-03-10|2-HIGH|Clerk#000002141|0|s doubt after the silent packages-- even f| +38575|695521|F|153631.79|1995-02-01|2-HIGH|Clerk#000002244|0| ironic accounts: slyly quiet pinto beans sleep| +38600|109390|F|142229.71|1994-05-27|2-HIGH|Clerk#000002189|0|ithely carefully bold epitaphs. slyly unusual instructions boo| +38601|256682|O|375778.36|1997-02-10|2-HIGH|Clerk#000001323|0|hely final requests. even deposits wake. ironic accounts cajole | +38602|53407|O|32689.88|1995-05-21|2-HIGH|Clerk#000000010|0|as. slyly silent somas across| +38603|588746|F|5870.75|1992-06-11|2-HIGH|Clerk#000000050|0| foxes. final requests are furiously. fluff| +38604|297304|O|113706.93|1996-02-14|4-NOT SPECIFIED|Clerk#000001865|0|ly. quickly ironic platelets affix against the doggedly speci| +38605|274318|O|215050.39|1995-08-13|5-LOW|Clerk#000001526|0|inal requests thrash. blithely unusual pac| +38606|201368|F|95782.11|1993-08-24|3-MEDIUM|Clerk#000002820|0|ts haggle final asymptotes; slyly ironic pinto beans| +38607|377848|O|165432.05|1996-01-10|1-URGENT|Clerk#000003640|0|ess deposits. carefully furious t| +38632|228214|O|152630.08|1995-08-21|2-HIGH|Clerk#000001049|0|ily bold accounts use even foxes. furiously| +38633|71372|F|217942.52|1992-07-03|2-HIGH|Clerk#000000854|0|thrash slyly according to the quic| +38634|282649|F|60041.31|1994-04-06|2-HIGH|Clerk#000003888|0|nto beans sleep quickly? bold ideas are carefully. re| +38635|722684|F|88048.30|1994-04-27|3-MEDIUM|Clerk#000002749|0|fully theodolites. blithely unusual requests bo| +38636|637655|O|273757.69|1998-05-09|4-NOT SPECIFIED|Clerk#000002728|0|ealthy excuses. special ideas among the sly| +38637|301531|F|60344.37|1992-09-26|3-MEDIUM|Clerk#000000385|0|ic packages. never regular| +38638|60823|F|250725.96|1993-08-10|5-LOW|Clerk#000003109|0|egrate. slyly ironic instructions nag| +38639|729064|F|103002.56|1994-01-08|1-URGENT|Clerk#000004172|0|xcuses use carefully. regular packages are c| +38664|604366|F|80426.83|1993-02-02|3-MEDIUM|Clerk#000003992|0|ructions. slyly pending somas detect silently. even requests use. car| +38665|325637|O|312417.14|1998-04-05|4-NOT SPECIFIED|Clerk#000003947|0|notornis. even, final ideas alongside of the ruthlessly ironic accounts ca| +38666|218203|F|100964.60|1994-10-14|1-URGENT|Clerk#000002947|0|ckly even deposits. quickly bold platelets i| +38667|560689|F|284184.99|1993-05-18|1-URGENT|Clerk#000000737|0|tornis except the pending, final h| +38668|469148|F|297004.18|1992-03-25|4-NOT SPECIFIED|Clerk#000001549|0|he furiously even acco| +38669|213044|O|137070.26|1996-10-30|4-NOT SPECIFIED|Clerk#000002737|0| accounts along the dolphins cajole blithely care| +38670|127418|F|95221.17|1994-07-08|5-LOW|Clerk#000001603|0|ng packages. carefully id| +38671|261383|O|79966.50|1998-07-29|1-URGENT|Clerk#000004579|0| mold slyly slyly ironic | +38696|307898|F|27501.15|1995-02-23|2-HIGH|Clerk#000000091|0|ar packages alongside of the quickly regular| +38697|580861|F|50089.78|1994-05-04|4-NOT SPECIFIED|Clerk#000000138|0| deposits. regular, even pi| +38698|524323|O|302449.83|1995-07-07|1-URGENT|Clerk#000004759|0|refully ironic reque| +38699|527803|F|317630.46|1993-05-01|2-HIGH|Clerk#000003554|0| express instructions nag quick| +38700|508771|O|272060.80|1998-01-27|3-MEDIUM|Clerk#000001741|0|ic foxes haggle blithely alongside of the blithely ruthless r| +38701|158692|O|83642.39|1995-11-17|1-URGENT|Clerk#000001604|0|ole furiously furiously unusua| +38702|113222|F|205957.67|1992-12-31|3-MEDIUM|Clerk#000004492|0|arefully furiously careful deposits. ideas maintain carefull| +38703|170681|F|28454.62|1994-11-28|5-LOW|Clerk#000003397|0|bold foxes. carefully silent theodolites dazzle. blithely ironic re| +38728|632837|O|116650.14|1996-11-03|4-NOT SPECIFIED|Clerk#000002869|0|ly to the slyly ironic packages. furio| +38729|337138|F|234390.49|1994-06-28|1-URGENT|Clerk#000001824|0|ses! slowly bold theodolites integ| +38730|14071|O|255404.05|1997-05-23|3-MEDIUM|Clerk#000004917|0|s, special instructions. bold, unusual accounts wake. theodolites slee| +38731|239347|O|198221.43|1998-07-07|2-HIGH|Clerk#000004124|0|ccounts nag blithely. blithely special| +38732|423559|F|59979.05|1993-02-15|2-HIGH|Clerk#000001045|0|ests about the blithely even pinto beans maintain carefully even, express plat| +38733|481531|F|172675.24|1995-01-20|2-HIGH|Clerk#000003019|0|into beans. foxes haggle. quickly bold theodolites sleep. carefu| +38734|575780|F|41248.81|1994-10-26|4-NOT SPECIFIED|Clerk#000000260|0| to the blithely bold packages nag unusu| +38735|633514|F|127668.35|1992-01-16|4-NOT SPECIFIED|Clerk#000003637|0|ng instructions haggle even pl| +38760|450562|F|155137.70|1994-05-26|2-HIGH|Clerk#000001572|0|en courts haggle about the| +38761|588841|F|181034.83|1992-11-29|5-LOW|Clerk#000003007|0| blithely dependencies. blithely final | +38762|397558|O|23314.51|1998-01-17|3-MEDIUM|Clerk#000003480|0|lar platelets. pinto beans x-ray? furiously even grouches about the blithely | +38763|740092|O|170634.53|1995-11-19|3-MEDIUM|Clerk#000002001|0|ccounts. special platelets cajole after th| +38764|693794|F|294547.41|1994-10-08|4-NOT SPECIFIED|Clerk#000004121|0|he ironic foxes. final packages eat quickly. final, regular packages | +38765|340997|O|300534.71|1995-07-10|5-LOW|Clerk#000003220|0|ven theodolites after the regular pac| +38766|378863|F|356998.46|1993-04-24|1-URGENT|Clerk#000002236|0|structions should sleep: bli| +38767|46720|O|130506.69|1997-05-20|1-URGENT|Clerk#000002875|0|al escapades. quickly| +38792|721804|F|267853.91|1993-01-04|4-NOT SPECIFIED|Clerk#000002861|0|nst the ironic accounts wake daringly s| +38793|101909|F|159328.88|1994-08-04|3-MEDIUM|Clerk#000003514|0|al accounts along the furiously regular packages sleep blithely above t| +38794|534109|F|136084.43|1995-03-03|4-NOT SPECIFIED|Clerk#000001129|0|sual accounts. idle pinto beans are deposits. blithely| +38795|740617|F|48757.27|1992-05-20|4-NOT SPECIFIED|Clerk#000002763|0|lyly even accounts ag| +38796|538855|F|43050.49|1992-04-21|4-NOT SPECIFIED|Clerk#000001768|0|s since the fluffily even foxes engage slyly final, u| +38797|284953|O|113347.60|1997-09-04|2-HIGH|Clerk#000003549|0|tes. quickly silent accounts under the slyly express packages cajole sly| +38798|423203|F|312451.90|1994-05-06|1-URGENT|Clerk#000004140|0|ss requests. slyly final ideas dazzle blithely; express realms use never. furi| +38799|517790|F|212047.96|1992-12-28|3-MEDIUM|Clerk#000004577|0| excuses across the blithely regular fox| +38824|241990|F|139635.84|1993-10-27|3-MEDIUM|Clerk#000002487|0|uctions. slyly bold acco| +38825|594370|O|11879.25|1998-03-05|1-URGENT|Clerk#000000797|0|ly ironic decoys. fu| +38826|298136|O|50159.13|1997-01-28|1-URGENT|Clerk#000004527|0|express pinto beans. express ideas haggle furiously-- slyly regular requ| +38827|7330|F|206539.58|1993-09-15|5-LOW|Clerk#000003467|0|uffily final ideas. furiously ironic instructions aft| +38828|183820|O|249792.79|1997-01-08|2-HIGH|Clerk#000000080|0|ic ideas boost daringly | +38829|210268|O|196170.13|1995-11-16|3-MEDIUM|Clerk#000000558|0|iously ironic somas haggle blithely unusual sentiments. fu| +38830|706352|O|228397.06|1995-10-24|5-LOW|Clerk#000002167|0|ously ironic deposits across the i| +38831|653971|F|182873.44|1993-11-07|1-URGENT|Clerk#000000262|0|. regular packages boost. quickly regular packages grow furiousl| +38856|34000|F|155486.01|1994-11-08|5-LOW|Clerk#000000534|0|haggle furiously along the furiously fina| +38857|662662|O|26626.46|1998-02-22|4-NOT SPECIFIED|Clerk#000002663|0| patterns. furiously regular theodolites haggle q| +38858|579790|F|163421.65|1993-10-02|5-LOW|Clerk#000004960|0|final deposits. carefully unusual asym| +38859|522380|O|83411.24|1996-12-26|5-LOW|Clerk#000001369|0|pending packages wake along the depos| +38860|128453|F|136470.86|1992-05-26|5-LOW|Clerk#000002202|0|posits. always permanent platelets alongside of| +38861|403943|F|162721.53|1993-07-12|3-MEDIUM|Clerk#000004214|0|s. pinto beans run! blit| +38862|63334|O|264585.63|1998-04-09|2-HIGH|Clerk#000000123|0|lar packages. express pi| +38863|177388|F|167750.72|1993-09-02|1-URGENT|Clerk#000003663|0|haggle among the ironic packages. spe| +38888|109121|F|300861.70|1994-11-01|5-LOW|Clerk#000004454|0|r, regular packages. slyly enticing packages against the pendin| +38889|241421|O|284210.71|1997-01-12|4-NOT SPECIFIED|Clerk#000004377|0|s boost. blithely final requests boost. quickly even pearls are. blithely f| +38890|55946|F|266201.20|1993-08-17|1-URGENT|Clerk#000003791|0|uests are never; furiously expre| +38891|526916|F|237514.89|1994-09-22|1-URGENT|Clerk#000000076|0| above the furiously silent foxes cajole carefully carefully ironic deposits.| +38892|620681|O|68987.76|1996-09-23|1-URGENT|Clerk#000001636|0|en deposits cajole. pending accounts about the fluffily pending requests affi| +38893|21613|F|119665.96|1992-10-10|4-NOT SPECIFIED|Clerk#000003353|0| ironic foxes doubt furiously blithely regular packages. ironi| +38894|242219|F|48642.31|1993-04-04|3-MEDIUM|Clerk#000002814|0|dencies above the furiously final ideas are carefully slyly f| +38895|712699|O|282445.69|1996-01-14|4-NOT SPECIFIED|Clerk#000000083|0|ven ideas detect even deposits. slyly regular dependencies about the regular, | +38920|66259|O|186228.46|1996-09-30|2-HIGH|Clerk#000002878|0|. slyly regular theodolites use quickly regular requests. slyly regular| +38921|605425|F|9018.50|1992-11-25|4-NOT SPECIFIED|Clerk#000004777|0|requests across the bold, iro| +38922|111214|F|179405.11|1992-07-02|1-URGENT|Clerk#000003624|0|wake slyly quietly express accounts. unusual dinos are. fl| +38923|156745|F|228172.36|1992-03-05|4-NOT SPECIFIED|Clerk#000000237|0| platelets around the furiously blithe dep| +38924|389680|F|185476.36|1993-05-30|4-NOT SPECIFIED|Clerk#000002258|0|the fluffily regular dependencies. fluffily pendin| +38925|337622|F|26649.46|1993-05-18|1-URGENT|Clerk#000002921|0|cial pinto beans. thinly regular accounts boost careful| +38926|649025|F|259152.80|1992-10-12|5-LOW|Clerk#000004098|0|ilent, express excuses according to the regular, silent deposits are acco| +38927|148054|F|320417.60|1992-11-02|3-MEDIUM|Clerk#000002326|0|oost furiously above the furiously pending packages! carefully bold| +38952|569101|F|233023.94|1994-04-26|5-LOW|Clerk#000000220|0|kages. slyly ironic accounts sleep furiously carefully express | +38953|114844|F|193435.88|1992-01-23|3-MEDIUM|Clerk#000000928|0|ven, regular accounts boost requ| +38954|409405|F|274247.21|1992-03-04|5-LOW|Clerk#000001484|0|jole carefully about the packages; furiously regular theodol| +38955|356860|O|326720.66|1995-10-05|1-URGENT|Clerk#000002246|0|even theodolites prin| +38956|727189|F|174055.54|1992-08-15|2-HIGH|Clerk#000001657|0| across the special, ironic | +38957|592915|F|201697.82|1992-03-12|4-NOT SPECIFIED|Clerk#000001634|0|n theodolites nag. quickly regular accounts around the unusual,| +38958|611557|F|196885.81|1992-04-19|5-LOW|Clerk#000001186|0|ites. carefully ironic foxes alongs| +38959|408553|O|164417.02|1997-05-18|4-NOT SPECIFIED|Clerk#000002750|0|ajole blithely; regular deposits | +38984|278822|F|152977.30|1992-06-08|4-NOT SPECIFIED|Clerk#000000744|0| accounts? carefully bold accounts are besides the silent du| +38985|151345|F|344894.02|1992-09-21|1-URGENT|Clerk#000000920|0| furiously after the furiously special requests. a| +38986|399866|O|344014.15|1997-12-01|2-HIGH|Clerk#000000133|0|sts. bold instructions aft| +38987|542351|O|111159.70|1998-06-20|3-MEDIUM|Clerk#000004585|0|gle-- carefully final deposits sleep carefu| +38988|532291|F|177466.62|1992-08-18|1-URGENT|Clerk#000003178|0| pinto beans. furiously unusual theodolites | +38989|211744|O|203812.10|1995-07-23|5-LOW|Clerk#000004449|0|. regular requests wake. ironic foxes wake thinly final warthogs. car| +38990|749462|F|254347.00|1993-04-03|1-URGENT|Clerk#000000048|0|gside of the ironic asymptotes; regular accounts impress. f| +38991|706688|F|157673.25|1995-02-05|5-LOW|Clerk#000003616|0|efully ironic ideas integrate-- final, silent requests nag blithely. fluffil| +39016|289450|P|212658.02|1995-04-29|1-URGENT|Clerk#000003970|0|dolites detect carefully pending pinto beans. carefully | +39017|278344|O|292965.94|1997-10-24|5-LOW|Clerk#000003034|0|slyly deposits; carefully unusual packages cajole silent foxes. fluffily expr| +39018|347776|O|141075.52|1998-01-06|2-HIGH|Clerk#000001357|0|osits among the slyly final deposits shall have to detect bli| +39019|319733|O|15554.59|1995-12-11|1-URGENT|Clerk#000000605|0|pendencies. careful foxe| +39020|747652|O|152757.75|1998-01-21|3-MEDIUM|Clerk#000001149|0|yly against the quickly b| +39021|287038|F|256965.92|1992-04-26|5-LOW|Clerk#000002221|0|usly ruthless foxes detect alongside of the pending, final | +39022|241429|F|154058.83|1993-12-30|5-LOW|Clerk#000003478|0|es. regular, quick accounts unwind quickly. deposit| +39023|177955|O|108294.44|1996-08-12|3-MEDIUM|Clerk#000002961|0|refully slyly final dependencies.| +39048|635264|F|32845.95|1995-03-30|1-URGENT|Clerk#000004830|0|o the quickly unusual instructions. blithely regular ideas nag qu| +39049|629851|O|27777.08|1998-01-03|1-URGENT|Clerk#000000969|0|equests. requests use fluffily. slyly special requests| +39050|397846|O|93676.88|1996-09-26|1-URGENT|Clerk#000000077|0|ly silent packages wake slyly even, express accounts. platelets boost slyly u| +39051|317066|F|155218.91|1995-01-16|2-HIGH|Clerk#000002728|0|ronic, pending courts. carefully stealthy dependencies boost quic| +39052|176935|P|171326.97|1995-04-22|1-URGENT|Clerk#000004847|0|above the furiously fi| +39053|718303|O|266283.13|1996-10-02|1-URGENT|Clerk#000001090|0|ld accounts. carefully even sauternes detect blithely excuses. foxes haggl| +39054|516928|F|5214.59|1993-11-08|3-MEDIUM|Clerk#000003656|0|lites wake permanently regu| +39055|2533|O|270830.94|1995-12-29|3-MEDIUM|Clerk#000001899|0|nticingly idly ironic accounts: deposits accor| +39080|551645|O|175969.38|1997-10-03|2-HIGH|Clerk#000002868|0|uests boost slyly. even packages a| +39081|745318|F|100545.15|1992-05-28|4-NOT SPECIFIED|Clerk#000002053|0|around the even requests w| +39082|29155|F|83646.33|1992-11-12|5-LOW|Clerk#000002048|0| thin deposits wake blithely against the quickly final fo| +39083|233288|O|10334.24|1996-12-17|1-URGENT|Clerk#000004296|0|pendencies haggle bravely. even foxes after the even, express excuses cajole| +39084|609970|F|165133.61|1994-06-19|4-NOT SPECIFIED|Clerk#000001601|0|, regular courts. ironic pac| +39085|9260|O|220665.14|1996-08-14|4-NOT SPECIFIED|Clerk#000003390|0|y bold decoys. furiously| +39086|376007|F|86081.89|1994-02-25|5-LOW|Clerk#000003701|0|ely ironic platelets believe blithely thinly silent requests. blithely | +39087|42728|F|181004.28|1994-05-16|1-URGENT|Clerk#000002350|0|ly express accounts. blithely final packages boost | +39112|367733|P|171089.10|1995-05-06|2-HIGH|Clerk#000004256|0|eposits boost quickly even, even excuses. quickly regular platelets cajole a| +39113|485476|F|57549.64|1992-06-05|5-LOW|Clerk#000000184|0|e special sentiments. furiously speci| +39114|129977|F|285450.02|1993-12-03|1-URGENT|Clerk#000003368|0|its cajole carefully. carefully ironic gifts cajole busily. platelets wak| +39115|509155|O|206097.89|1998-01-28|1-URGENT|Clerk#000002063|0| are carefully. ideas w| +39116|601753|O|77899.45|1998-02-06|3-MEDIUM|Clerk#000000647|0|ns haggle special, regular foxes. car| +39117|630196|O|274738.80|1995-12-15|5-LOW|Clerk#000003420|0| quickly even deposits nag pending deposits. fluffily final courts use fu| +39118|191080|O|134621.42|1996-12-16|5-LOW|Clerk#000003245|0|t the accounts. even accounts are| +39119|718606|O|32999.83|1996-05-13|3-MEDIUM|Clerk#000001300|0|ily regular foxes after the fluffily regular accou| +39144|348529|P|405879.84|1995-05-06|1-URGENT|Clerk#000001015|0|e busily about the silently unusu| +39145|218956|O|106106.05|1997-11-30|4-NOT SPECIFIED|Clerk#000001209|0|sleep blithely after the slyly unu| +39146|481405|O|94725.43|1995-05-04|3-MEDIUM|Clerk#000004433|0|r instructions. packages cajole furiously unusual requests; regular, pend| +39147|721436|O|139288.72|1995-06-17|3-MEDIUM|Clerk#000001151|0|eas cajole pending requests. expres| +39148|667460|O|37176.48|1997-12-19|5-LOW|Clerk#000003918|0|counts. even epitaphs are fluffily alongside of the special as| +39149|236038|F|208745.37|1992-11-03|1-URGENT|Clerk#000000529|0|e? final theodolites| +39150|314683|F|249456.95|1992-08-24|3-MEDIUM|Clerk#000000121|0|efully pending grouches against the furiously regular theodoli| +39151|608722|F|70776.28|1993-05-06|3-MEDIUM|Clerk#000002120|0|oost fluffily across the slyly careful theodolit| +39176|17770|O|130530.31|1996-06-16|1-URGENT|Clerk#000004640|0|ave, regular deposits wake carefully | +39177|146192|O|71202.79|1996-09-05|1-URGENT|Clerk#000004768|0|ctions. pending dolphins acr| +39178|44506|O|44771.88|1995-08-28|3-MEDIUM|Clerk#000003665|0|arefully pending deposits. even instructions haggle fluffi| +39179|260383|O|100319.91|1996-04-17|5-LOW|Clerk#000002278|0|n, bold theodolites. deposits affix| +39180|739226|O|216081.43|1997-03-24|4-NOT SPECIFIED|Clerk#000004233|0| final, ironic instructions; pending deposits print slyly. furio| +39181|412586|O|18639.12|1998-06-22|3-MEDIUM|Clerk#000002942|0| believe blithely warhorses. packages about the regular request| +39182|577058|F|285477.33|1992-05-08|4-NOT SPECIFIED|Clerk#000001559|0|es use furiously quickly| +39183|360553|F|26561.33|1992-08-04|1-URGENT|Clerk#000002400|0|ter the carefully unusual asymptotes-- quickl| +39208|534754|F|189260.41|1994-11-30|1-URGENT|Clerk#000001578|0| instructions cajole until| +39209|341252|F|98612.65|1992-08-02|4-NOT SPECIFIED|Clerk#000004657|0|ts? regularly even escapades cajole fluffily final, silent accounts. furio| +39210|159094|O|302097.02|1997-12-10|4-NOT SPECIFIED|Clerk#000002953|0|r, regular accounts| +39211|115750|O|65907.18|1996-05-15|4-NOT SPECIFIED|Clerk#000000477|0|equests haggle quickly. quickly final deposits are never alongside of th| +39212|639106|O|179493.38|1997-11-01|1-URGENT|Clerk#000001594|0|rding to the blithely ironic requests was above the furiously unusual | +39213|671083|O|166686.89|1996-12-24|4-NOT SPECIFIED|Clerk#000000622|0|equests. regular excuses | +39214|387098|F|273646.79|1993-11-30|1-URGENT|Clerk#000001338|0|nticingly even accounts was furiously slyly pending foxes: unusu| +39215|441181|O|309618.56|1997-09-08|1-URGENT|Clerk#000004482|0| the furiously ironic deposits. slyly unusual requests nag quickly slyly| +39240|418897|F|140186.64|1992-04-04|5-LOW|Clerk#000002824|0|ss the regular asymptotes b| +39241|130310|O|74187.10|1996-07-01|3-MEDIUM|Clerk#000004566|0|counts. blithely express ideas| +39242|108611|O|105243.61|1997-06-26|1-URGENT|Clerk#000004211|0|cial, dogged foxes are. blithely final asymptotes shall have to haggle | +39243|660541|F|178452.10|1994-12-08|3-MEDIUM|Clerk#000003732|0|. carefully special accounts integ| +39244|202915|O|49031.71|1998-07-17|2-HIGH|Clerk#000004327|0|fily even requests! blithely idle accounts detect quickly furiously | +39245|129128|F|211171.36|1993-01-10|5-LOW|Clerk#000001220|0|s. final requests use furiously. sheaves wake furiously a| +39246|499477|F|66851.44|1992-08-18|3-MEDIUM|Clerk#000003098|0|o beans haggle stealthy instructions. regular requests a| +39247|692719|F|120105.54|1994-02-17|2-HIGH|Clerk#000002356|0|osits. carefully regular depo| +39272|271834|O|15914.69|1997-03-23|5-LOW|Clerk#000003812|0|ress accounts use ab| +39273|451453|O|256097.95|1998-02-11|5-LOW|Clerk#000001222|0|ong the even foxes | +39274|547780|O|197241.27|1997-02-09|4-NOT SPECIFIED|Clerk#000002315|0|fully across the closely pendi| +39275|280463|O|56298.38|1996-02-05|3-MEDIUM|Clerk#000002119|0|posits. even, ironic foxes along the | +39276|728273|O|305800.24|1995-05-03|2-HIGH|Clerk#000004937|0|olites integrate furiously. slyly regular ideas eat qu| +39277|82096|O|215379.87|1997-01-16|1-URGENT|Clerk#000001413|0|tions. furiously express sauternes sleep bold courts.| +39278|532993|O|59119.53|1996-05-17|4-NOT SPECIFIED|Clerk#000000932|0|egular theodolites affix. furiously regular packages along| +39279|738611|F|205070.64|1995-02-26|4-NOT SPECIFIED|Clerk#000003691|0|iously. quickly bold requests | +39304|570967|O|179861.17|1996-11-12|5-LOW|Clerk#000004721|0|heodolites above the fluffily even accounts nag against the even, regular bra| +39305|727255|F|267169.54|1992-10-25|3-MEDIUM|Clerk#000004906|0|ly regular accounts cajole carefully along the busily| +39306|216502|F|185594.37|1993-04-17|1-URGENT|Clerk#000001032|0|nts sleep against the requ| +39307|485458|O|70586.99|1996-07-10|1-URGENT|Clerk#000000292|0|onic courts engage fluffily carefully unusual theodolites; i| +39308|569929|F|38704.70|1995-01-24|4-NOT SPECIFIED|Clerk#000002687|0|l foxes. furiously regular accounts serve regularl| +39309|541024|O|164077.79|1996-10-10|3-MEDIUM|Clerk#000001271|0|ely requests. special accounts haggle a| +39310|730210|O|84476.84|1995-10-27|5-LOW|Clerk#000000720|0|carefully even foxes mai| +39311|361232|O|271126.04|1996-11-24|2-HIGH|Clerk#000001969|0| blithely even accounts. slyly express deposits wake quickly quic| +39336|717394|O|118604.52|1996-09-17|1-URGENT|Clerk#000003870|0|ole requests. fluff| +39337|236221|F|175231.14|1993-08-23|4-NOT SPECIFIED|Clerk#000004815|0|ters. furiously bold accounts sleep blithely. ironic ideas use blithely | +39338|390775|O|355326.37|1995-08-10|4-NOT SPECIFIED|Clerk#000000870|0|e carefully ironic instructions. bold multipliers are boldly | +39339|734050|O|204917.64|1997-10-15|2-HIGH|Clerk#000001300|0|sits. blithely final deposits use furiously. carefully s| +39340|394816|O|188166.71|1996-11-05|1-URGENT|Clerk#000004183|0|affix quickly along the q| +39341|411344|F|159796.97|1992-06-29|4-NOT SPECIFIED|Clerk#000004267|0|pinto beans nag slyly. even deposits cajole blithely among t| +39342|695033|F|80509.75|1993-04-10|1-URGENT|Clerk#000004559|0| foxes boost. furiously final courts integrate furiously q| +39343|166895|F|337072.13|1993-01-23|1-URGENT|Clerk#000002396|0|nic instructions. permanently iron| +39368|749272|O|194790.15|1996-04-26|1-URGENT|Clerk#000002124|0|ial excuses sleep furiou| +39369|508634|O|10039.17|1996-12-13|4-NOT SPECIFIED|Clerk#000000615|0| ironic foxes are carefully after the special, even deposits. slyly even dep| +39370|95002|F|113060.20|1992-05-02|1-URGENT|Clerk#000000565|0|gle busily carefully bold dependencies. final accounts cajo| +39371|675758|F|387520.82|1993-06-27|4-NOT SPECIFIED|Clerk#000004524|0|ermanently bold dependencies. blit| +39372|208294|O|133798.28|1996-11-28|4-NOT SPECIFIED|Clerk#000000972|0|n accounts. slyly unusual pinto beans against the regular, final requests grow| +39373|540962|F|228564.57|1995-03-18|2-HIGH|Clerk#000000120|0|ckages. regular, special request| +39374|440660|F|163763.78|1994-09-27|3-MEDIUM|Clerk#000004323|0| packages. quickly ironic | +39375|657215|O|203110.84|1997-07-11|4-NOT SPECIFIED|Clerk#000001323|0| even accounts sleep slyly? blithel| +39400|557066|O|75207.46|1997-12-19|5-LOW|Clerk#000000316|0|kages. carefully final theodolites use bold se| +39401|344473|F|225935.85|1993-01-17|4-NOT SPECIFIED|Clerk#000003574|0|es. regular requests wake furiously regular courts-- silent deposits are| +39402|283315|P|160825.05|1995-05-18|5-LOW|Clerk#000004587|0|es use. slyly final accounts sleep slyly exp| +39403|651686|F|117487.61|1992-11-24|2-HIGH|Clerk#000003693|0|nag. slyly regular accounts sleep sly| +39404|623101|F|355304.97|1993-04-13|2-HIGH|Clerk#000000373|0|equests integrate slyly accordi| +39405|187030|O|243368.85|1997-07-26|5-LOW|Clerk#000002281|0|l pinto beans. final, silent dependencies after the ideas affix qui| +39406|130984|O|97763.51|1997-06-19|4-NOT SPECIFIED|Clerk#000003847|0|the blithely regular deposit| +39407|180953|O|194594.77|1998-02-02|2-HIGH|Clerk#000000704|0| about the express, pending dependencies. unu| +39432|10576|O|142895.01|1996-01-07|4-NOT SPECIFIED|Clerk#000000602|0|s. blithely final accounts are along the regular,| +39433|749890|O|214054.37|1995-06-22|4-NOT SPECIFIED|Clerk#000001527|0|er the silent asymptotes. careful| +39434|376456|O|148422.64|1996-07-29|4-NOT SPECIFIED|Clerk#000004237|0|ithely unusual deposits haggle blithely; | +39435|83320|O|160177.34|1997-09-13|4-NOT SPECIFIED|Clerk#000001386|0|ly special theodolites. ironic f| +39436|86428|F|81907.19|1992-12-18|3-MEDIUM|Clerk#000004770|0|ully final platelets nag furiously ironic pack| +39437|568232|O|19199.58|1996-01-13|5-LOW|Clerk#000004731|0|odolites. unusual, regular foxes kindle sl| +39438|516995|F|85384.58|1993-09-16|4-NOT SPECIFIED|Clerk#000002471|0|s boost blithely foxes. blithely even excuses detect slyly | +39439|384085|O|68886.18|1996-01-24|5-LOW|Clerk#000001685|0|s haggle. final, bold | +39464|48131|O|216050.63|1996-11-30|5-LOW|Clerk#000001398|0| regular deposits abou| +39465|424010|O|152241.04|1996-08-02|3-MEDIUM|Clerk#000001466|0|foxes are slyly across the final accounts. carefully regular packages a| +39466|582529|F|186099.57|1992-08-26|1-URGENT|Clerk#000004682|0|e furiously since the unusual, unusual foxes.| +39467|36007|F|135745.69|1993-12-05|4-NOT SPECIFIED|Clerk#000003929|0|luffily regular packages hinder along the care| +39468|667048|O|293492.13|1995-07-27|1-URGENT|Clerk#000000692|0|ically bold theodolit| +39469|63962|F|60679.50|1995-01-16|5-LOW|Clerk#000003355|0|sly. courts haggle furiously after the deposits. fi| +39470|244501|F|92568.45|1993-12-16|1-URGENT|Clerk#000003464|0|t pearls wake furiously. furiously special packages cajole quickly furiously | +39471|75676|O|157111.10|1995-06-29|1-URGENT|Clerk#000002640|0|press pinto beans. bold excuses wake blithely blithely pen| +39496|636014|O|171852.63|1995-12-14|3-MEDIUM|Clerk#000000269|0|xes. quickly special accounts affix carefully. regular, bold asympto| +39497|482843|O|47557.73|1995-05-26|4-NOT SPECIFIED|Clerk#000003026|0|lly special dinos han| +39498|137884|O|205255.14|1997-09-11|3-MEDIUM|Clerk#000004349|0| slyly above the blithely express requests. carefully silent | +39499|640826|F|219945.61|1994-06-02|5-LOW|Clerk#000001948|0|l deposits integrate among the furiously regular | +39500|356636|O|288293.37|1997-02-12|4-NOT SPECIFIED|Clerk#000000507|0|y ironic packages detect slyly along the deposits. blithely regu| +39501|720314|O|219214.62|1996-12-28|4-NOT SPECIFIED|Clerk#000000408|0|will are. evenly unusual accoun| +39502|554434|O|17100.85|1998-03-12|1-URGENT|Clerk#000004553|0|counts sleep quickly across the carefully regular accounts: regular dep| +39503|338854|O|33012.25|1996-10-13|3-MEDIUM|Clerk#000002090|0|g to the express requests. silent, silent somas boost above the blithely| +39528|367688|O|156565.06|1997-06-03|3-MEDIUM|Clerk#000002643|0|unusual requests are | +39529|470573|F|22747.45|1992-09-04|4-NOT SPECIFIED|Clerk#000003326|0|nstructions use furiously above the carefully pending re| +39530|165790|O|294147.64|1996-01-24|3-MEDIUM|Clerk#000001084|0|n pinto beans sublate. furiously ir| +39531|178595|F|155899.62|1993-11-01|1-URGENT|Clerk#000000489|0|l pinto beans. pending, express courts cajole furious requests. q| +39532|139759|F|120753.24|1994-03-10|5-LOW|Clerk#000004286|0|e the final, express depos| +39533|657014|O|113157.59|1998-03-20|5-LOW|Clerk#000002813|0|y regular instructions after the fluffily unusual accounts nag blithely q| +39534|183964|F|117294.82|1994-04-25|2-HIGH|Clerk#000001448|0|ts haggle. quickly pending requests sleep about the regular, pending ac| +39535|360085|O|73672.03|1997-05-23|2-HIGH|Clerk#000004962|0|ular, regular deposits alongside of the quickl| +39560|184291|O|184159.15|1995-08-17|4-NOT SPECIFIED|Clerk#000004054|0|its. slyly final excuse| +39561|614029|F|270951.85|1994-06-20|2-HIGH|Clerk#000000328|0|es nag furiously above th| +39562|705913|O|109155.63|1996-11-30|2-HIGH|Clerk#000004849|0|ing packages boost according to the slyly unu| +39563|29395|O|22417.04|1997-06-21|4-NOT SPECIFIED|Clerk#000003065|0| are slyly above the excuses. ideas | +39564|527752|O|270440.02|1996-04-02|2-HIGH|Clerk#000003809|0|c packages. furiously ironic theodolites believe slyly. furi| +39565|418900|O|116802.69|1996-02-17|5-LOW|Clerk#000002349|0| even, final deposits haggle permanently pending theo| +39566|194032|F|35469.55|1994-11-16|1-URGENT|Clerk#000002672|0|thely even packages detect fluffily against the carefully unusual pl| +39567|89282|O|113709.31|1996-06-26|4-NOT SPECIFIED|Clerk#000004598|0|ent packages nag carefully final somas. regular deposits sleep | +39592|549074|F|223888.04|1994-03-14|4-NOT SPECIFIED|Clerk#000004544|0|boost on the furiou| +39593|282289|F|176066.99|1995-01-12|4-NOT SPECIFIED|Clerk#000001175|0|ole blithely against the bold deposits. fluffily ironic requests hag| +39594|669976|O|175976.97|1996-09-08|5-LOW|Clerk#000004886|0| requests cajole sl| +39595|515173|O|122604.85|1996-06-08|2-HIGH|Clerk#000001140|0|re fluffily quickly even requests. packages nag quickly thi| +39596|479984|O|286257.89|1995-07-18|1-URGENT|Clerk#000002798|0|s haggle blithely across t| +39597|88358|F|15400.72|1994-02-20|5-LOW|Clerk#000003813|0|quickly about the blithely bold packages.| +39598|32788|F|238583.55|1993-07-02|3-MEDIUM|Clerk#000002173|0|yly bold patterns us| +39599|567340|F|283680.06|1992-01-11|5-LOW|Clerk#000000401|0|nic foxes. quickly furious packages| +39624|504379|F|178251.84|1992-09-15|5-LOW|Clerk#000000329|0|lithely even packages. fluffily ironic instructions along the carefully regula| +39625|566375|O|130677.45|1995-06-28|3-MEDIUM|Clerk#000000410|0|old packages. blithely bold orbits haggle slyly above the final, eve| +39626|51944|O|288588.39|1997-07-04|2-HIGH|Clerk#000003294|0|ests wake quickly blithely even requests. furiously | +39627|19117|P|237363.58|1995-03-24|3-MEDIUM|Clerk#000001503|0|unusual requests. regular packages boost blithely. ideas| +39628|273244|F|115394.59|1993-11-14|3-MEDIUM|Clerk#000002441|0|e blithely except the excuses. carefully e| +39629|139942|O|136432.96|1995-10-29|1-URGENT|Clerk#000004449|0|ole above the unusual packages. accounts integrate blithely | +39630|725540|O|444100.01|1996-01-15|1-URGENT|Clerk#000004479|0|excuses haggle carefu| +39631|645134|F|63813.08|1994-03-22|5-LOW|Clerk#000000685|0|ing instructions haggle| +39656|5686|O|286371.11|1998-05-09|5-LOW|Clerk#000003134|0|ts cajole slyly express deposits; furiousl| +39657|299428|F|75940.39|1994-07-19|1-URGENT|Clerk#000003568|0|unts mold. slyly slow foxes use carefully regular| +39658|711829|O|36251.95|1996-10-09|4-NOT SPECIFIED|Clerk#000004137|0|nal requests. slyly bold | +39659|433633|F|221694.79|1992-03-25|3-MEDIUM|Clerk#000003694|0|requests. blithely ironic packages sleep blithely pend| +39660|309058|O|45855.82|1996-10-05|4-NOT SPECIFIED|Clerk#000004533|0|c packages cajole fluffily. bold multipliers are slyly according to | +39661|581335|F|132951.84|1995-02-28|2-HIGH|Clerk#000004671|0|. packages are blithely ironic pa| +39662|227042|O|246186.93|1997-07-10|5-LOW|Clerk#000004577|0|pinto beans along t| +39663|644881|O|240131.23|1996-07-30|1-URGENT|Clerk#000000890|0| after the final, bo| +39688|262189|F|278953.81|1995-03-09|1-URGENT|Clerk#000002991|0|at the quickly final pinto beans. furiously bold deposits wake quic| +39689|353008|O|53727.30|1995-04-03|1-URGENT|Clerk#000003355|0|requests. blithely regul| +39690|478108|F|243746.41|1994-05-08|1-URGENT|Clerk#000001218|0|after the quickly even deposits. fu| +39691|38854|O|208126.88|1996-05-21|5-LOW|Clerk#000001929|0|ickly bold pinto beans. deposits int| +39692|499097|F|169464.48|1995-01-07|2-HIGH|Clerk#000002196|0|e the blithely silent pinto beans. quickly even packa| +39693|315712|P|178192.12|1995-04-13|4-NOT SPECIFIED|Clerk#000001614|0|ly ironic asymptotes do nag! slyl| +39694|650908|O|151095.76|1995-07-11|3-MEDIUM|Clerk#000001432|0|ven instructions. unusua| +39695|301072|O|283946.71|1997-09-30|5-LOW|Clerk#000002818|0|ly even requests are stealthily blithel| +39720|604462|O|167896.67|1997-12-06|2-HIGH|Clerk#000002307|0|unts! final deposits nag fluffily. fluf| +39721|441364|F|318251.06|1994-07-19|4-NOT SPECIFIED|Clerk#000002636|0|olites must have to boost carefully slyly careful dinos. furiously unusual | +39722|484183|F|222844.42|1992-01-23|2-HIGH|Clerk#000002130|0|its-- furiously unusual pack| +39723|134836|F|145569.75|1992-03-19|3-MEDIUM|Clerk#000002428|0| ideas along the blithely regular packages use silentl| +39724|433609|O|249613.81|1997-04-04|3-MEDIUM|Clerk#000002172|0|ng, ironic deposits affix slyly regular t| +39725|644524|F|64529.25|1993-08-03|4-NOT SPECIFIED|Clerk#000000440|0|e the final, silent deposits are furiously ruthless accounts. furiously sp| +39726|235079|F|305691.52|1993-12-17|1-URGENT|Clerk#000000831|0|es. carefully unusual foxes en| +39727|707744|O|208184.18|1996-11-09|5-LOW|Clerk#000004148|0| requests across the enticing requests wake courts. furiously regular p| +39752|52669|O|301623.00|1997-10-08|4-NOT SPECIFIED|Clerk#000000306|0|slyly ironic requests boost bli| +39753|196309|O|234361.31|1995-11-16|5-LOW|Clerk#000004319|0|lar accounts are blithely accoun| +39754|101264|F|130199.94|1992-01-16|4-NOT SPECIFIED|Clerk#000001415|0|ng, regular depths use carefully; bold, regular deposits nag unusual depo| +39755|189442|O|108061.38|1998-05-27|3-MEDIUM|Clerk#000003096|0|aggle fluffily along the regular accounts. carefully special foxes cajole neve| +39756|200827|O|88466.67|1996-10-05|2-HIGH|Clerk#000003596|0|quickly carefully even theodolites.| +39757|296017|O|200887.97|1997-09-14|2-HIGH|Clerk#000003787|0| slyly special request| +39758|404438|O|84773.42|1996-11-11|4-NOT SPECIFIED|Clerk#000002596|0|eodolites. express platelets sleep furiously furiously even pi| +39759|138121|O|274093.74|1998-01-11|4-NOT SPECIFIED|Clerk#000004190|0|tes are furiously furiously regular packages. carefully careful sen| +39784|133801|O|130224.23|1998-04-06|1-URGENT|Clerk#000003068|0|press instructions wak| +39785|278458|F|10472.85|1992-08-07|2-HIGH|Clerk#000003199|0|- fluffily unusual packages around the fi| +39786|27671|F|25892.64|1992-07-03|5-LOW|Clerk#000004057|0|ironically special asymptotes are carefully express accounts. requests na| +39787|58489|O|156895.18|1996-02-15|3-MEDIUM|Clerk#000001840|0|gouts. regular braids sleep. slyly regular theodolit| +39788|519547|O|115773.06|1998-04-28|3-MEDIUM|Clerk#000004828|0|jole around the express accounts. ironic, unusual requests around the final, i| +39789|499756|O|233975.68|1996-05-19|2-HIGH|Clerk#000002808|0|uffily pending Tires| +39790|148543|F|139019.40|1994-04-26|5-LOW|Clerk#000003921|0| accounts wake blithely ironic requests. pending, | +39791|550013|F|105473.52|1993-09-04|4-NOT SPECIFIED|Clerk#000004406|0|uests. carefully regular pearls after the unusual, final tithes sleep s| +39816|308371|F|49134.09|1994-01-23|1-URGENT|Clerk#000001428|0|old instructions. slyly regular | +39817|281803|O|246958.18|1997-05-13|3-MEDIUM|Clerk#000002301|0|even platelets affix busily across the quickly even dinos. slyly| +39818|749440|F|332776.69|1993-04-24|5-LOW|Clerk#000002128|0|equests. even packages nag furiously. carefully final tithes use in| +39819|319910|O|34063.76|1997-12-26|1-URGENT|Clerk#000003466|0| ironic, special courts. sp| +39820|724844|O|253221.80|1996-01-19|3-MEDIUM|Clerk#000001761|0|sleep pending realms. bravely| +39821|202222|F|91787.83|1994-03-01|2-HIGH|Clerk#000001087|0|counts doze quickly carefully special requests. quickly regula| +39822|472919|O|38879.73|1996-02-23|3-MEDIUM|Clerk#000000998|0|gular deposits. accounts sleep slyly regular ideas. sautern| +39823|596053|F|209019.91|1992-03-06|2-HIGH|Clerk#000003021|0|er blithely quickly quiet deposits. slyly express requests s| +39848|89404|F|220431.37|1993-05-08|2-HIGH|Clerk#000004895|0|usly ironic requests. finally ironic depos| +39849|353866|O|119609.53|1997-01-25|1-URGENT|Clerk#000004388|0|old accounts. blithely even foxes use alo| +39850|666838|O|201576.46|1998-04-27|1-URGENT|Clerk#000004585|0|ers nag carefully blithely express deposits. slyly bold req| +39851|269404|O|100555.60|1996-04-15|2-HIGH|Clerk#000000368|0|ets haggle quickly even Tiresias. furiously final ideas u| +39852|96020|O|310718.31|1998-04-04|5-LOW|Clerk#000004975|0|. quickly express theodolites haggle quickly| +39853|553057|O|118258.42|1998-01-21|1-URGENT|Clerk#000003037|0|ronic accounts. accounts haggle permanen| +39854|470591|F|180797.45|1993-10-06|1-URGENT|Clerk#000003013|0|arefully. excuses about| +39855|467404|O|290621.92|1996-12-31|3-MEDIUM|Clerk#000002194|0|he carefully dogged deposits mold blit| +39880|131875|F|232608.15|1993-09-03|5-LOW|Clerk#000001586|0|unusual instructions. furiously final ide| +39881|157666|O|57899.39|1996-10-07|2-HIGH|Clerk#000001082|0| deposits. final, pending accounts sleep slyly. unusual sentimen| +39882|115799|O|98171.21|1995-05-24|4-NOT SPECIFIED|Clerk#000003780|0|ic pinto beans. packages eat packages. sentiment| +39883|717760|F|245457.68|1994-04-01|5-LOW|Clerk#000002756|0|ven, final accounts. blithely even instructions| +39884|359207|O|107606.88|1998-05-13|2-HIGH|Clerk#000003623|0|wake fluffily. ironic pinto beans| +39885|439711|O|296636.43|1998-03-25|2-HIGH|Clerk#000001453|0|uriously ironic deposits wake slyly quickly i| +39886|452486|F|60791.54|1994-10-13|5-LOW|Clerk#000003214|0|d ideas cajole slyly furiously ironic requests. slyly special th| +39887|680803|P|345107.49|1995-04-17|3-MEDIUM|Clerk#000002300|0|instructions haggle furiously regular pac| +39912|224218|O|90359.18|1997-07-29|5-LOW|Clerk#000000067|0|ctions: fluffily even requests cajole above the ironic, special req| +39913|430814|F|43064.44|1994-10-19|4-NOT SPECIFIED|Clerk#000001745|0| the blithely regular accounts cajole slyly closely pen| +39914|187048|O|257412.95|1996-02-28|2-HIGH|Clerk#000000937|0| nag carefully at the fluffily express theodolites. pinto bean| +39915|436541|F|20312.03|1994-11-05|2-HIGH|Clerk#000001093|0| slyly final pinto beans. furiously special deposits alon| +39916|429277|F|133520.52|1992-02-23|2-HIGH|Clerk#000001084|0|ly bold instructions. packages cajole carefully even dinos. fluff| +39917|603566|F|330093.62|1992-11-20|5-LOW|Clerk#000003090|0|ronic accounts. quickly unusual requests haggle blithely final accounts. exp| +39918|368341|F|166413.52|1992-09-08|5-LOW|Clerk#000002866|0|ilent requests. final escapades wake furiously expre| +39919|174940|O|182716.05|1996-08-02|1-URGENT|Clerk#000002699|0| final dependencies caj| +39944|187873|F|192342.78|1992-11-21|4-NOT SPECIFIED|Clerk#000001816|0|sly unusual pinto beans above the | +39945|52333|F|209815.66|1995-01-15|3-MEDIUM|Clerk#000004528|0|uriously final ideas cajole furiously slyly unusual packages! even theod| +39946|554509|O|148003.39|1998-05-04|4-NOT SPECIFIED|Clerk#000002363|0| are before the furiously ironic excuses:| +39947|107272|O|134874.52|1997-03-24|3-MEDIUM|Clerk#000002943|0|osits. asymptotes are furiously ag| +39948|664129|O|127435.77|1997-11-21|3-MEDIUM|Clerk#000002713|0|ily. fluffily regular deposits haggle-- packages in place of the bl| +39949|486241|F|142200.27|1992-01-04|1-URGENT|Clerk#000000166|0|ys. final requests wake along the f| +39950|228010|O|280857.06|1995-08-29|1-URGENT|Clerk#000000489|0|old courts use slyly deposits. ironic pinto beans eat above the p| +39951|381571|O|151231.29|1996-10-21|5-LOW|Clerk#000002309|0|arefully furiously special theodolit| +39976|550348|O|263097.64|1996-08-12|1-URGENT|Clerk#000001479|0| beans affix according to th| +39977|666203|F|92113.59|1994-10-27|5-LOW|Clerk#000000749|0|. ironic, bold ideas according to the slyly ironic deposits n| +39978|118910|F|89465.33|1993-03-13|3-MEDIUM|Clerk#000004422|0|s alongside of the blithely express reques| +39979|508754|F|241354.17|1993-12-23|5-LOW|Clerk#000000709|0|ecial accounts haggle blithely. carefully final a| +39980|628264|O|155487.33|1995-12-15|4-NOT SPECIFIED|Clerk#000000877|0|quickly bold pinto beans integrate slyly slyl| +39981|699851|O|149448.59|1995-12-09|3-MEDIUM|Clerk#000001220|0|ly even requests. blithely final requests detect carefully alongside of | +39982|137480|F|112046.54|1992-04-10|3-MEDIUM|Clerk#000003930|0|ve across the ironic acco| +39983|625298|F|246722.45|1992-02-23|1-URGENT|Clerk#000004839|0|nal, pending instructions haggle quickly furiously express packag| +40008|371062|F|83379.92|1992-03-02|2-HIGH|Clerk#000001346|0|. final instructions solve fluffily fluffily ironic ideas: | +40009|182726|F|8602.79|1993-08-03|3-MEDIUM|Clerk#000003992|0|n sheaves: express, bold requests cajole carefully. ideas cajole furiously sl| +40010|571942|F|359651.34|1993-02-05|3-MEDIUM|Clerk#000003082|0| final, silent foxes | +40011|602173|O|330521.15|1995-08-22|1-URGENT|Clerk#000003022|0|grate. requests wake fluffily according to the quickly specia| +40012|192190|F|209876.07|1993-11-18|5-LOW|Clerk#000001348|0|ess ideas are across the carefully ironic ideas. final instructions eat af| +40013|610954|F|57699.45|1993-04-09|4-NOT SPECIFIED|Clerk#000000710|0| ironic braids are furiously according to the blithely unus| +40014|24700|F|276374.59|1994-08-06|4-NOT SPECIFIED|Clerk#000001958|0|nal ideas beyond the ironic, final dependencies wake| +40015|362680|F|169422.28|1994-09-03|2-HIGH|Clerk#000001613|0|deposits. fluffily regular theodolites about the| +40040|311783|O|78029.59|1997-08-26|5-LOW|Clerk#000001149|0|. regular theodolites nag a| +40041|635623|O|225156.25|1995-06-24|2-HIGH|Clerk#000000540|0|s the express instructions. blithely special requests cajole carefully regula| +40042|642880|F|278840.69|1992-03-17|5-LOW|Clerk#000002885|0|. special foxes are furiously carefully ironic requests| +40043|373742|F|317750.61|1993-11-28|2-HIGH|Clerk#000001194|0|special decoys are alongside of the furiously final depende| +40044|219629|O|123856.90|1996-09-30|5-LOW|Clerk#000001574|0|ages are regular pinto beans. furiously brave accounts h| +40045|543229|F|28754.14|1994-06-13|3-MEDIUM|Clerk#000001232|0|heodolites haggle carefully quickly final requests. slyly final ideas| +40046|284684|O|44598.31|1996-08-02|5-LOW|Clerk#000004933|0|ar instructions nag slyly after the quickly| +40047|430882|O|61853.63|1996-12-13|4-NOT SPECIFIED|Clerk#000004273|0|its nag slyly special pinto beans. regular, ironic theodolites | +40072|557587|O|301905.68|1998-06-23|4-NOT SPECIFIED|Clerk#000000886|0|furiously silent instructions cajol| +40073|109358|F|232877.86|1993-02-14|3-MEDIUM|Clerk#000000998|0|ites should are alongside of the furiously ironi| +40074|471283|O|75502.00|1996-08-16|5-LOW|Clerk#000004817|0|ackages boost enticingly. blith| +40075|86204|F|309232.62|1992-04-15|4-NOT SPECIFIED|Clerk#000004267|0| dependencies sleep pendin| +40076|567556|O|256094.97|1995-10-03|2-HIGH|Clerk#000001695|0|permanent accounts shall u| +40077|406441|O|200926.82|1996-04-09|5-LOW|Clerk#000004978|0|y even platelets use quickly even requests. regular accounts wake packages. b| +40078|50798|F|315021.10|1992-07-06|1-URGENT|Clerk#000000819|0|hely special ideas doze slyly r| +40079|258172|F|46269.12|1992-04-24|5-LOW|Clerk#000001875|0|close accounts. accounts cajole furiously | +40104|317414|F|168852.66|1992-03-28|1-URGENT|Clerk#000001718|0|ts; asymptotes solve idly asymptotes? carefu| +40105|12649|O|102518.58|1996-04-24|1-URGENT|Clerk#000003339|0|efully ironic pinto beans eat blithe| +40106|324073|O|178656.92|1998-06-05|2-HIGH|Clerk#000001565|0| at the quickly ironic instructions-- pending foxes wake slyly alongside of| +40107|175312|O|181459.90|1998-03-07|3-MEDIUM|Clerk#000002850|0|ng, bold deposits. quickly even requests after the fluf| +40108|441439|F|88032.30|1994-08-05|1-URGENT|Clerk#000004881|0|egular requests sleep. car| +40109|243496|P|142660.97|1995-06-04|4-NOT SPECIFIED|Clerk#000001075|0|slyly pending packages sleep furiously sa| +40110|419944|O|122649.50|1996-02-01|4-NOT SPECIFIED|Clerk#000000291|0|ld detect slyly furiously close packages. carefully silent pac| +40111|491384|O|179857.99|1996-11-10|1-URGENT|Clerk#000000676|0|te fluffily. packages dazzle| +40136|431975|O|118600.96|1995-06-22|4-NOT SPECIFIED|Clerk#000002423|0|oxes nag slyly above the unusual, unusual requests. carefully regul| +40137|196565|O|149074.44|1997-06-27|1-URGENT|Clerk#000004978|0|s alongside of the s| +40138|664060|O|204843.02|1997-07-29|1-URGENT|Clerk#000002458|0|posits. quickly express deposits about the requests integrate | +40139|87208|F|116904.90|1993-07-04|3-MEDIUM|Clerk#000001300|0|the instructions detect| +40140|191873|F|233792.73|1994-04-25|4-NOT SPECIFIED|Clerk#000000715|0|. furiously express deposits sleep against the blithely regular asymptote| +40141|558391|F|279568.89|1994-10-26|4-NOT SPECIFIED|Clerk#000001886|0|quests against the re| +40142|101903|O|175329.51|1997-03-22|5-LOW|Clerk#000001987|0|lar asymptotes: regular excuses are bravely final courts. slyly ironi| +40143|427859|F|37739.68|1994-10-16|2-HIGH|Clerk#000000781|0|ing accounts nag blithely. bravely regular epitaphs sleep bravely final pin| +40168|16489|O|125525.51|1997-08-25|2-HIGH|Clerk#000004946|0|e quickly regular packages. pending ideas boost carefully. even foxe| +40169|379903|O|72303.18|1997-12-30|1-URGENT|Clerk#000002564|0|osits. express, special pinto beans sleep packag| +40170|265423|O|46051.88|1998-06-29|2-HIGH|Clerk#000003000|0|ts engage. regular ideas use fluffily about the car| +40171|708380|O|184387.73|1995-11-01|4-NOT SPECIFIED|Clerk#000002720|0|y courts. fluffily unusual instructions sublate blithel| +40172|232616|F|172886.19|1992-04-05|5-LOW|Clerk#000004493|0|es about the blithely silent instructions nag| +40173|576040|O|46253.31|1997-06-29|2-HIGH|Clerk#000004260|0|y silent theodolites boost. regular theodolites sleep. slyly even foxes haggl| +40174|496690|F|89340.32|1993-03-15|4-NOT SPECIFIED|Clerk#000002755|0|uriously pending requests-- furio| +40175|339955|O|77056.43|1998-07-18|4-NOT SPECIFIED|Clerk#000000377|0|nal theodolites. ironic accounts | +40200|100249|F|245190.06|1994-03-12|4-NOT SPECIFIED|Clerk#000004626|0|ter the enticingly brave sauternes wake fluffily slyly bold excuses. qu| +40201|355492|F|68215.62|1993-12-30|4-NOT SPECIFIED|Clerk#000000396|0| carefully bold accounts haggle quickly. carefully final deposits| +40202|243454|O|93493.63|1997-03-07|4-NOT SPECIFIED|Clerk#000003211|0| orbits cajole blithely pinto beans. blithely regular courts hag| +40203|478555|F|88177.47|1993-11-18|2-HIGH|Clerk#000001499|0|regular packages cajole blithely after the accounts. sp| +40204|61642|F|100679.21|1993-10-09|1-URGENT|Clerk#000003696|0|regular foxes among the slyly quick forges engage caref| +40205|252208|F|228792.01|1993-05-18|2-HIGH|Clerk#000002842|0|arefully even sauternes boost fluffily. ironic requ| +40206|585262|F|138000.40|1992-03-01|1-URGENT|Clerk#000000139|0|ut the carefully express accounts | +40207|223540|F|44482.81|1992-07-06|1-URGENT|Clerk#000002917|0|kages. silent, even| +40232|263728|F|111997.19|1994-06-04|4-NOT SPECIFIED|Clerk#000004883|0|hely regular epitaphs haggle furi| +40233|723433|O|233244.81|1995-07-24|1-URGENT|Clerk#000000408|0|ntain. slyly final requests about the slyly final foxes haggle deposits. sp| +40234|470437|O|290575.02|1998-06-24|1-URGENT|Clerk#000004206|0|o the blithely final foxes. carefully regula| +40235|128116|F|33702.48|1992-04-11|1-URGENT|Clerk#000002771|0|ic deposits sleep furiously even accounts-- carefully bo| +40236|722740|F|385656.89|1992-04-10|2-HIGH|Clerk#000002581|0|luffily final pinto beans. carefully unusual platele| +40237|59462|F|212021.57|1993-10-25|3-MEDIUM|Clerk#000004278|0|ages wake about the regu| +40238|368179|O|16516.49|1996-01-24|4-NOT SPECIFIED|Clerk#000004186|0|cial instructions breach about the final deposits. stealthily pending p| +40239|455782|F|174917.73|1994-04-12|3-MEDIUM|Clerk#000003034|0|s mold slyly carefully even accounts. express pinto beans in| +40264|573565|F|26710.69|1993-11-19|1-URGENT|Clerk#000004821|0| instructions. blithely final packages around the slyly special forges ha| +40265|128315|O|128422.10|1996-06-14|1-URGENT|Clerk#000004738|0|gular packages. regular pinto beans ha| +40266|331261|O|94498.52|1998-04-02|5-LOW|Clerk#000000824|0|cajole deposits. furiously regular pinto bea| +40267|238951|O|221200.42|1996-12-15|1-URGENT|Clerk#000004200|0|y special frets. furiousl| +40268|524486|F|279495.23|1993-10-01|5-LOW|Clerk#000001269|0|gular packages. furiously un| +40269|278245|F|115631.75|1994-10-18|5-LOW|Clerk#000001273|0|sleep carefully quickly silent deposits. final, regular foxes about | +40270|195388|F|101324.62|1992-03-16|2-HIGH|Clerk#000004972|0|ons. even ideas hang against the carefully ironic requests; express, sp| +40271|364985|O|76257.44|1995-05-05|2-HIGH|Clerk#000004825|0| nod quickly ideas. furiously special deposits above the | +40296|40372|O|63917.56|1996-02-17|3-MEDIUM|Clerk#000004192|0| was quickly about the regular instructions. | +40297|526036|P|59130.83|1995-03-20|4-NOT SPECIFIED|Clerk#000002513|0|luffily even multipliers haggle blithely above the | +40298|61826|F|207071.64|1994-12-11|5-LOW|Clerk#000003389|0|ng to the regular patterns. furiously final p| +40299|355987|O|219011.52|1997-04-16|1-URGENT|Clerk#000004657|0|. special, even packages maintain quickly bravely bold requests. carefully f| +40300|308398|O|223614.12|1995-08-01|2-HIGH|Clerk#000000159|0| ironic packages boost against the unusual accounts. quic| +40301|743314|O|156200.47|1997-03-12|3-MEDIUM|Clerk#000000393|0|egular instructions. ironic | +40302|118384|F|258049.02|1992-06-19|4-NOT SPECIFIED|Clerk#000003349|0| packages. ruthlessly slow ideas integrate slyly. fo| +40303|671254|F|276027.39|1994-01-06|5-LOW|Clerk#000001905|0|ckages haggle carefully above th| +40328|249811|F|201209.86|1994-10-19|1-URGENT|Clerk#000000424|0|press deposits across the unusual, idle courts boost quickly bl| +40329|70252|O|276130.86|1995-06-28|2-HIGH|Clerk#000003142|0|he pinto beans. pending excuses sleep blithely above the slyly fin| +40330|222439|F|241365.55|1992-11-24|2-HIGH|Clerk#000002108|0| special courts. carefully ironic dependencies wake blithely. c| +40331|508265|F|322503.73|1994-03-24|3-MEDIUM|Clerk#000002259|0|ong the pending accou| +40332|643177|F|141095.13|1995-01-24|1-URGENT|Clerk#000001204|0|tions impress slyly| +40333|113798|F|123897.31|1993-05-29|3-MEDIUM|Clerk#000003867|0|ding requests. depos| +40334|88544|O|13904.58|1998-05-01|1-URGENT|Clerk#000003141|0|uriously even requests x-ray across the blith| +40335|157535|P|323214.68|1995-04-16|5-LOW|Clerk#000000500|0|xpress foxes haggle care| +40360|180211|F|1751.62|1992-05-26|1-URGENT|Clerk#000000808|0|e slowly ironic braids wake according | +40361|290812|F|96881.38|1993-12-20|2-HIGH|Clerk#000000944|0|ic deposits sleep above t| +40362|644734|F|202701.21|1994-08-25|4-NOT SPECIFIED|Clerk#000002939|0|at the regular, final accounts use furiously along the blithely unusual| +40363|33194|O|46454.02|1997-04-08|3-MEDIUM|Clerk#000004128|0|inal warhorses. furiously express acco| +40364|640150|O|149561.07|1996-11-15|1-URGENT|Clerk#000002571|0|e. regular, unusual | +40365|247907|F|179635.73|1993-04-16|1-URGENT|Clerk#000002586|0|sly silent requests nag furiously along the ev| +40366|318217|F|2947.80|1994-04-11|4-NOT SPECIFIED|Clerk#000000036|0|lar requests. deposits cajole quickly instructions. final pa| +40367|9415|O|176334.87|1996-07-26|3-MEDIUM|Clerk#000001734|0|about the regular excuses. furiously final accounts| +40392|712402|F|62237.77|1992-07-03|4-NOT SPECIFIED|Clerk#000004910|0|reful packages after the express notornis boost furiously alongside of the e| +40393|315767|O|94719.25|1996-03-24|4-NOT SPECIFIED|Clerk#000003867|0|counts wake fluffily after the fluffily special pinto beans. account| +40394|80869|F|237478.57|1994-10-23|4-NOT SPECIFIED|Clerk#000001044|0|iously permanent theodolit| +40395|147211|O|243880.48|1997-04-21|1-URGENT|Clerk#000003151|0|ess pinto beans. mult| +40396|651268|F|151190.66|1994-06-22|3-MEDIUM|Clerk#000003170|0| accounts wake brave deposits. furiously careful accounts accord| +40397|334639|O|249754.84|1997-09-13|2-HIGH|Clerk#000003742|0|kages sleep furiously against the furiously express depo| +40398|18400|O|157197.80|1997-02-20|3-MEDIUM|Clerk#000004001|0|e. excuses up the silent pinto beans sleep carefully even p| +40399|241192|O|231322.43|1998-02-17|4-NOT SPECIFIED|Clerk#000003787|0|nal pinto beans sleep blithely regular notorni| +40424|713086|O|327962.03|1997-01-26|5-LOW|Clerk#000004932|0|e silent pinto beans unwind ruthless| +40425|565640|F|107391.92|1993-02-27|4-NOT SPECIFIED|Clerk#000002657|0|usly regular packages against the blithe foxes wake blithely at th| +40426|451207|O|111841.28|1997-03-19|5-LOW|Clerk#000000996|0|e blithely quickly slow fox| +40427|156412|F|133148.50|1994-12-22|1-URGENT|Clerk#000004192|0|ironic deposits. warhorses maintain after the quickly ironic accounts. unusua| +40428|53524|O|65406.48|1996-07-07|2-HIGH|Clerk#000003463|0| sleep carefully ca| +40429|327304|F|75569.66|1994-08-28|2-HIGH|Clerk#000004161|0|usly ironic accounts s| +40430|477551|F|98667.71|1993-10-25|3-MEDIUM|Clerk#000001683|0| final sentiments. special, regular Tiresias unwind. slyly final | +40431|435904|O|86169.12|1996-05-31|2-HIGH|Clerk#000001648|0|usual accounts. slyly | +40456|226150|F|107074.83|1994-07-10|2-HIGH|Clerk#000004986|0|ely special accounts. carefully silent accounts n| +40457|641791|O|248775.11|1996-12-25|1-URGENT|Clerk#000002918|0|ic deposits? express, regular platelets sle| +40458|58852|O|72897.58|1995-10-07|2-HIGH|Clerk#000003669|0|c requests. fluffil| +40459|617399|O|275314.78|1998-01-09|4-NOT SPECIFIED|Clerk#000001877|0|ular theodolites. final, slow warthogs a| +40460|365086|O|100986.00|1998-06-21|4-NOT SPECIFIED|Clerk#000001217|0|ual excuses integrate carefully blith| +40461|240488|O|206914.66|1998-03-26|5-LOW|Clerk#000000269|0|y even deposits. regular, permanent packages sleep special instructions. | +40462|131101|F|226122.13|1992-05-10|3-MEDIUM|Clerk#000004109|0|dolphins above the ironic accounts sleep furiously according| +40463|639263|O|209553.12|1995-11-08|2-HIGH|Clerk#000004203|0|inal packages boost blithely according to the bl| +40488|330157|F|264721.86|1992-10-08|3-MEDIUM|Clerk#000000849|0|es across the quickly ironic dependencies wake| +40489|435806|F|129302.65|1995-02-04|1-URGENT|Clerk#000003803|0|quickly special asymptotes sleep furiously after the final packages. i| +40490|83141|F|290350.59|1992-02-04|4-NOT SPECIFIED|Clerk#000001777|0|yly special packages x-ray among the careful| +40491|85081|F|285665.98|1994-09-04|4-NOT SPECIFIED|Clerk#000002443|0| sleep carefully. dogged multipliers haggle carefully. fluffily e| +40492|444550|O|73773.47|1998-07-20|4-NOT SPECIFIED|Clerk#000004696|0|ites use quickly slyly even platelets. furiously pendi| +40493|48580|O|278967.74|1996-07-25|4-NOT SPECIFIED|Clerk#000004512|0|furiously ironic accounts after the regular requests haggle | +40494|457018|O|25601.53|1998-06-10|1-URGENT|Clerk#000000699|0| accounts use furiously. regular cour| +40495|341105|F|124207.55|1994-11-17|5-LOW|Clerk#000000056|0|en accounts sleep blithely furiously final water| +40520|687208|F|261273.32|1994-12-27|4-NOT SPECIFIED|Clerk#000004469|0|press foxes. express fox| +40521|622090|O|265302.29|1996-06-30|4-NOT SPECIFIED|Clerk#000004496|0|onic asymptotes use furiously furiously bold| +40522|437438|F|137451.67|1994-02-06|1-URGENT|Clerk#000000770|0|s! fluffily even deposits wake bravely. even pack| +40523|519430|F|166251.01|1993-03-24|1-URGENT|Clerk#000000546|0| furiously final packages are slyly among the ironic foxes. fluffily even ac| +40524|33259|O|9929.70|1995-07-14|2-HIGH|Clerk#000004810|0|ckages sleep blithely slyly fluffy ideas. speci| +40525|207553|F|258111.41|1993-04-09|4-NOT SPECIFIED|Clerk#000001748|0|tly carefully final packages. slyly regular packages sleep slyly. b| +40526|62029|O|103184.88|1998-07-11|3-MEDIUM|Clerk#000000918|0|uctions boost carefully. regular, e| +40527|738986|O|307039.97|1997-11-25|5-LOW|Clerk#000002803|0| furiously regular asymptotes boost furiously fluffily u| +40552|122320|O|193264.39|1998-01-10|2-HIGH|Clerk#000004875|0| packages according to the regularly regul| +40553|55267|F|75801.65|1992-03-15|2-HIGH|Clerk#000002928|0|ly silent theodolites. ironic ideas sleep. b| +40554|369134|O|199053.62|1998-03-26|4-NOT SPECIFIED|Clerk#000003273|0| about the ironic a| +40555|22612|F|36577.72|1994-07-07|2-HIGH|Clerk#000000556|0|special accounts nag among the bold instructions. furiously final requests ar| +40556|531337|O|153402.54|1996-05-19|4-NOT SPECIFIED|Clerk#000001355|0|final, ironic requests haggle. even deposits cajole | +40557|661402|F|178933.53|1993-09-01|1-URGENT|Clerk#000000483|0|ic foxes grow blithely slyly final asymptotes. quickly silent deposits ca| +40558|408925|F|298999.23|1994-02-21|4-NOT SPECIFIED|Clerk#000003621|0| ideas detect. quickly special requests cajole furiou| +40559|545114|F|98484.30|1993-05-01|3-MEDIUM|Clerk#000003663|0|ly silent foxes thrash: slyl| +40584|472951|F|218347.18|1993-06-08|4-NOT SPECIFIED|Clerk#000000334|0|s. regular packages affix furiously along the slyly regular instructions; b| +40585|379556|F|40156.06|1993-12-11|4-NOT SPECIFIED|Clerk#000002077|0| furiously regular waters-- carefully e| +40586|441577|F|5264.34|1992-08-29|2-HIGH|Clerk#000004353|0|even packages cajole furiously a| +40587|329668|O|248206.36|1998-01-23|4-NOT SPECIFIED|Clerk#000000491|0|tainments. quickly regular dolphins wake slyly pending excuses. closely ex| +40588|449705|O|130165.62|1996-10-21|5-LOW|Clerk#000002647|0|l foxes. carefully regular accounts cajole final excuses. ir| +40589|430060|O|118509.19|1996-05-13|1-URGENT|Clerk#000003023|0|c orbits according to the furio| +40590|246355|O|340279.85|1996-05-29|5-LOW|Clerk#000001252|0|c ideas. bold platelets ac| +40591|466933|F|83702.60|1993-06-17|1-URGENT|Clerk#000002240|0| packages. ironic, even waters integrate slyly alongside of the carefu| +40616|481178|O|269976.20|1996-10-14|2-HIGH|Clerk#000001983|0|r ideas sleep above the even accounts. f| +40617|655148|F|75646.81|1992-06-20|2-HIGH|Clerk#000002799|0|lyly furiously unusual foxes. bold,| +40618|309859|F|190121.23|1994-09-09|5-LOW|Clerk#000004818|0|ffily quickly quick deposits! foxes against the fluffily iron| +40619|535532|F|260693.86|1993-03-05|3-MEDIUM|Clerk#000004145|0|pecial deposits affix quickly quietly special accounts. | +40620|681341|O|35701.85|1997-06-09|5-LOW|Clerk#000000030|0| dogged ideas wake slyly ab| +40621|297991|F|33233.73|1994-07-01|5-LOW|Clerk#000000695|0| to the carefully final theodolites use around the final re| +40622|553552|F|103254.40|1994-09-12|3-MEDIUM|Clerk#000004720|0| quickly regular deposits are| +40623|535717|O|150401.84|1996-01-15|4-NOT SPECIFIED|Clerk#000002394|0|ironic instructions. final re| +40648|40417|O|117333.20|1998-01-24|1-URGENT|Clerk#000003131|0| ironic foxes. express accounts cajole furiously final d| +40649|506441|O|11290.06|1996-01-28|3-MEDIUM|Clerk#000000155|0|y unusual packages according| +40650|740327|O|51626.39|1998-01-02|1-URGENT|Clerk#000003392|0|uests use furiously closely special dept| +40651|167188|F|92497.89|1993-09-07|3-MEDIUM|Clerk#000000318|0|r theodolites. furiously special grouches t| +40652|405274|F|122296.27|1992-11-17|1-URGENT|Clerk#000001076|0|pon the even, daring asymptotes-- unusual, even | +40653|661705|O|153521.57|1996-03-27|5-LOW|Clerk#000003525|0|r the furiously sly pinto beans. quickly re| +40654|258148|O|99672.63|1997-09-14|1-URGENT|Clerk#000000814|0|ffily special accounts. slyly final requests alongside of the ca| +40655|668869|O|61925.60|1996-10-05|2-HIGH|Clerk#000000799|0|ermanent packages cajole above the unusual| +40680|648094|F|10278.12|1994-01-13|4-NOT SPECIFIED|Clerk#000004005|0|ual instructions integrate | +40681|256448|F|89931.79|1992-08-11|2-HIGH|Clerk#000000546|0| final deposits; theodolites| +40682|605318|O|162992.21|1996-10-28|3-MEDIUM|Clerk#000002526|0|ong the slyly pending instructions. daringly special| +40683|569024|F|75667.59|1992-11-19|2-HIGH|Clerk#000001279|0|l courts. blithely final requests are alongside of the regular, even de| +40684|325370|F|250272.37|1992-04-16|5-LOW|Clerk#000004967|0|ly regular pinto beans slee| +40685|243430|F|156698.63|1994-05-07|4-NOT SPECIFIED|Clerk#000000038|0|ages promise slyly. pac| +40686|73975|O|23681.06|1997-05-31|1-URGENT|Clerk#000004081|0|tes along the final packages are carefully carefully regul| +40687|531452|P|115241.91|1995-03-28|2-HIGH|Clerk#000001619|0| across the blithely | +40712|362879|O|145942.49|1996-03-07|1-URGENT|Clerk#000004872|0|y final pinto beans will affix carefully. blithely ev| +40713|646016|F|23778.85|1994-01-31|2-HIGH|Clerk#000002162|0|aggle slyly. fluffily regular dolphins sleep furiously| +40714|587585|F|146663.88|1994-01-08|2-HIGH|Clerk#000002776|0| packages. furiously regular ideas haggle slyly stealth| +40715|278071|F|30604.83|1995-02-14|3-MEDIUM|Clerk#000000979|0| fluffily bold packages. even, fina| +40716|275521|O|124081.59|1997-01-08|1-URGENT|Clerk#000001099|0|cial requests haggle blithely| +40717|148331|F|234485.88|1994-02-24|5-LOW|Clerk#000004518|0| even, final dependencies are? carefully even requests are among the | +40718|740065|F|164299.64|1994-06-13|4-NOT SPECIFIED|Clerk#000002702|0|ccounts. ironic excuses are on the regular foxes; quickly s| +40719|240829|O|243745.66|1998-03-18|1-URGENT|Clerk#000000155|0|nts sleep quickly according to the slyly close deposits. dependencies sleep | +40744|611317|F|244175.53|1992-08-16|2-HIGH|Clerk#000002946|0|ackages. furiously i| +40745|148532|F|97582.71|1994-10-16|3-MEDIUM|Clerk#000000295|0|usly regular accounts. even, careful deposits sleep. requests nag carefull| +40746|367699|F|8640.15|1993-03-26|2-HIGH|Clerk#000001685|0|c requests. regular, regular packages are quic| +40747|635596|F|102605.21|1992-12-13|3-MEDIUM|Clerk#000004640|0|tructions use blithely after the bold, f| +40748|205822|O|228817.64|1996-04-14|4-NOT SPECIFIED|Clerk#000003737|0|cajole requests. dependencies are fluffily carefully final | +40749|244616|F|282109.51|1993-01-26|3-MEDIUM|Clerk#000004504|0|unusual theodolites. slyly ironic requests amo| +40750|507115|O|297314.48|1996-01-29|2-HIGH|Clerk#000003403|0|according to the ironic, even theodolites. fluffily ironi| +40751|70600|O|155803.95|1998-04-28|5-LOW|Clerk#000003835|0|arefully pending fray| +40776|47887|F|25204.02|1994-10-24|4-NOT SPECIFIED|Clerk#000001217|0|ar excuses haggle among the unusual, regular foxes. furiousl| +40777|69340|O|73193.75|1996-08-25|2-HIGH|Clerk#000002478|0|ickly express warthogs | +40778|636278|O|125536.80|1997-11-15|4-NOT SPECIFIED|Clerk#000003019|0| carefully. furiously regular deposits sleep furiously blithely | +40779|418393|O|151706.68|1995-12-30|4-NOT SPECIFIED|Clerk#000003693|0|ts breach furiously| +40780|672971|F|36542.61|1994-12-12|2-HIGH|Clerk#000000675|0|silent foxes boost fluffily | +40781|612451|O|83163.31|1998-01-09|1-URGENT|Clerk#000001700|0|ar somas. pending, regular ide| +40782|431665|O|207569.02|1995-12-23|3-MEDIUM|Clerk#000003628|0|equests cajole about t| +40783|238705|O|216354.88|1998-07-27|3-MEDIUM|Clerk#000004845|0|ges. slyly unusual se| +40808|164269|F|68666.92|1994-09-12|4-NOT SPECIFIED|Clerk#000000685|0|encies thrash express, stealthy accounts. regular deposits integrate carefu| +40809|104587|F|153546.22|1994-07-24|4-NOT SPECIFIED|Clerk#000002337|0|n sauternes wake fluffily according to the pending, iron| +40810|542501|F|120780.03|1992-08-17|4-NOT SPECIFIED|Clerk#000004075|0|fully regular asymptotes. blithely daring braids about the even f| +40811|52627|F|56188.45|1993-03-22|1-URGENT|Clerk#000000847|0|fily regular requests doze slyly even deposits. furiously pendi| +40812|240082|F|90420.86|1992-08-15|3-MEDIUM|Clerk#000004352|0|the fluffily ironic accounts believe blithely acr| +40813|25876|F|15714.86|1992-03-11|4-NOT SPECIFIED|Clerk#000002846|0|deas nag carefully through the boldl| +40814|631984|F|110224.33|1992-05-20|5-LOW|Clerk#000003057|0|d accounts detect quickly about the regular | +40815|238873|O|260930.28|1997-07-25|1-URGENT|Clerk#000004023|0|ly express packages would cajole among the carefully clo| +40840|728815|F|80188.18|1992-01-15|3-MEDIUM|Clerk#000002095|0|old excuses haggle furiously. blithely express t| +40841|184342|F|99200.72|1993-10-26|1-URGENT|Clerk#000000238|0|ingly even grouches. fluffily express| +40842|723088|P|90340.82|1995-04-22|4-NOT SPECIFIED|Clerk#000003577|0|x blithely final dependenci| +40843|668345|O|76520.29|1996-01-05|1-URGENT|Clerk#000004202|0|lithely. slyly ironic accounts are carefully-- regular instructions a| +40844|108685|O|192514.59|1998-02-11|3-MEDIUM|Clerk#000004760|0|al dependencies sleep fu| +40845|394820|O|98708.62|1996-09-04|3-MEDIUM|Clerk#000004995|0| unusual pinto beans are furiously after the furiously ironic packages. car| +40846|481523|O|221386.63|1996-03-07|5-LOW|Clerk#000001136|0|lar, regular requests wake carefully fluffily i| +40847|444380|F|177337.79|1993-01-31|5-LOW|Clerk#000002434|0| regular foxes are blithely according to the pendin| +40872|179819|F|128520.86|1992-09-28|1-URGENT|Clerk#000003447|0|ding to the carefully even notornis! ironic foxes haggle| +40873|465005|O|174856.66|1997-04-21|2-HIGH|Clerk#000004165|0|ronic, regular theodolites boost among the pending foxes. regular| +40874|332452|O|279366.42|1998-07-31|3-MEDIUM|Clerk#000003730|0|he pinto beans. pending, | +40875|2026|F|95099.15|1992-08-18|1-URGENT|Clerk#000003914|0|thin the slyly pending dolphins. excuses among the pending, ironic| +40876|274832|O|31663.88|1997-07-11|4-NOT SPECIFIED|Clerk#000000883|0|uick foxes among the always express asymptotes must run according to the s| +40877|588211|O|234916.89|1996-05-02|3-MEDIUM|Clerk#000004575|0| quickly pending, special theodolites. ironic warhorses wake. ca| +40878|291833|F|165594.80|1993-11-30|4-NOT SPECIFIED|Clerk#000001374|0|al instructions use quickly about the| +40879|581857|O|156186.53|1995-10-10|3-MEDIUM|Clerk#000000339|0|to beans. requests must have to wake alongside of the | +40904|20344|F|303177.51|1994-04-15|1-URGENT|Clerk#000002800|0|rs. carefully ironic theodolites c| +40905|663674|F|214959.70|1994-05-25|3-MEDIUM|Clerk#000000132|0|e carefully. regular, ironic platelets sleep after the | +40906|360731|F|129108.00|1993-12-05|1-URGENT|Clerk#000002162|0|elets sleep quickly alongside of the carefully regular pinto beans.| +40907|541429|O|127850.79|1995-10-08|3-MEDIUM|Clerk#000001630|0|s. unusual packages alongside of the specia| +40908|42167|O|43092.32|1996-04-19|5-LOW|Clerk#000004529|0|leep quickly. blithely ironic accounts affix regularly final account| +40909|694735|F|65474.03|1993-05-15|1-URGENT|Clerk#000002382|0|ole slyly carefully special packages. fluffily fin| +40910|383557|O|119597.76|1997-07-15|5-LOW|Clerk#000001549|0|to the unusual asymptotes. fluffily ironic requests are about th| +40911|160619|O|28086.57|1996-11-16|5-LOW|Clerk#000004626|0|ly pending ideas outsi| +40936|269093|F|43477.79|1992-01-08|2-HIGH|Clerk#000004563|0|ly blithely express deposits. silently ironic | +40937|134920|F|295607.27|1994-09-24|3-MEDIUM|Clerk#000002480|0|nticing, busy platelets are slyly | +40938|346622|O|225606.06|1997-07-28|5-LOW|Clerk#000004887|0|, express packages. final, sil| +40939|417367|F|60461.79|1993-08-17|2-HIGH|Clerk#000003839|0|inal requests use blithely after the even, regular packages. unusua| +40940|686876|F|142671.44|1995-01-17|2-HIGH|Clerk#000002749|0| carefully ironic pinto beans. courts cajole. package| +40941|310475|O|200467.92|1998-05-15|5-LOW|Clerk#000003242|0|s slyly. even, final excuses integrate slyl| +40942|396739|F|79966.92|1994-02-05|3-MEDIUM|Clerk#000002529|0|uffily even deposits. bl| +40943|487345|F|45814.77|1992-01-20|2-HIGH|Clerk#000001584|0|uses use furiously bravely special ideas. fluffily unusual asymptote| +40968|33260|O|112278.79|1998-05-28|2-HIGH|Clerk#000001969|0|elets haggle? slyly pending pinto| +40969|239467|O|14606.32|1997-12-09|3-MEDIUM|Clerk#000000459|0|ts! blithely special packages alongside of th| +40970|190243|O|309044.56|1996-12-12|1-URGENT|Clerk#000004205|0|slowly regular theodolites use. thin pinto| +40971|158588|F|40160.65|1993-09-20|3-MEDIUM|Clerk#000003620|0| Tiresias sleep always ironic, even asymptotes. ironic| +40972|632894|F|46740.64|1992-04-20|3-MEDIUM|Clerk#000004241|0|s are. bold pinto beans shall| +40973|546871|O|34569.21|1998-04-20|4-NOT SPECIFIED|Clerk#000002625|0|quickly final pinto beans. furious| +40974|729956|F|143689.66|1994-05-30|2-HIGH|Clerk#000004484|0|lyly among the final waters. excuses sle| +40975|608797|O|57845.80|1997-08-05|2-HIGH|Clerk#000001635|0|ts wake fluffily express ideas. e| +41000|521936|F|225735.65|1994-07-17|3-MEDIUM|Clerk#000003294|0|s nag carefully excuses. even, ironic waters cajole fluffily a| +41001|162320|F|186964.04|1992-01-29|5-LOW|Clerk#000004839|0|. slyly regular accounts wake special, even waters. furiously regu| +41002|352882|F|69799.00|1994-02-04|5-LOW|Clerk#000004614|0|ckly ironic deposits. slyly ironic packages cajole.| +41003|620711|F|99006.84|1995-03-27|5-LOW|Clerk#000002421|0|the carefully regular instr| +41004|523063|F|134708.63|1992-10-28|5-LOW|Clerk#000002942|0|equests poach according to the bold req| +41005|348496|F|143997.82|1994-10-27|1-URGENT|Clerk#000002404|0|pecial dependencies haggle after the furiously unusual requests. ev| +41006|418001|O|110848.93|1996-01-02|2-HIGH|Clerk#000004273|0|hely foxes. furiously brav| +41007|82849|O|54057.42|1998-05-15|1-URGENT|Clerk#000004060|0|c deposits; special platelets use. quickly final packages after the in| +41032|434668|O|96441.05|1997-06-20|4-NOT SPECIFIED|Clerk#000001766|0|ly enticing requests haggle furiously iron| +41033|459460|O|199203.52|1996-07-26|4-NOT SPECIFIED|Clerk#000004521|0|sleep blithely across the blithely special deposits. sil| +41034|137633|O|302544.88|1997-12-04|5-LOW|Clerk#000002742|0|inal multipliers. ruthless, permanent accounts detect slyly. fluffily express | +41035|190103|F|257915.53|1994-09-03|2-HIGH|Clerk#000004119|0|al platelets. carefully regular foxes nag finally final excuses. packages de| +41036|47113|O|277458.76|1997-04-24|4-NOT SPECIFIED|Clerk#000000491|0|ickly bold pinto beans nag slyly with the foxes. careful| +41037|558580|F|111557.41|1993-10-13|1-URGENT|Clerk#000002799|0|hout the slyly pending instructions are blithely according to th| +41038|297286|F|47789.96|1993-02-09|4-NOT SPECIFIED|Clerk#000000886|0|ly blithely ironic packa| +41039|735038|F|130862.82|1994-06-03|2-HIGH|Clerk#000004204|0| slyly final deposits boost fluffily slyly unusual asymptotes. regular,| +41064|518758|F|31597.51|1994-02-09|1-URGENT|Clerk#000000175|0|lyly even, unusual deposits. carefully pe| +41065|5027|O|99186.86|1996-09-04|5-LOW|Clerk#000000301|0|ronic ideas. bravely silent pinto beans lose blithely ironic deposi| +41066|487375|F|141875.76|1995-02-15|4-NOT SPECIFIED|Clerk#000000100|0|egular requests alongside of the final accounts detect af| +41067|545551|F|44729.32|1994-04-14|4-NOT SPECIFIED|Clerk#000004442|0|o beans are ironic asymptotes. stealthy dependencies affix slyly f| +41068|308464|O|147612.67|1996-07-14|2-HIGH|Clerk#000001762|0|deposits should believe. even dependencies sleep above the regular Tiresias: r| +41069|347818|O|230984.82|1997-03-10|2-HIGH|Clerk#000000251|0|beans mold furiously above th| +41070|270274|O|122938.92|1996-06-11|3-MEDIUM|Clerk#000003222|0|ress ideas boost after the furiously special deposits. | +41071|477955|F|146345.31|1993-02-14|5-LOW|Clerk#000000863|0|aggle. even, ironic pains above the slyly silent requests haggle across the c| +41096|458329|O|44814.15|1998-01-27|5-LOW|Clerk#000000505|0|carefully silent asymptotes. accounts wake carefully stealthily | +41097|629399|O|246750.21|1995-09-12|5-LOW|Clerk#000001577|0|requests haggle blithely sp| +41098|306568|F|113399.74|1993-03-13|5-LOW|Clerk#000000498|0|ackages are blithely fina| +41099|726772|P|258135.38|1995-05-03|3-MEDIUM|Clerk#000003186|0|es. final packages past the special, special packages boost slyly along the| +41100|355210|P|166913.71|1995-05-08|4-NOT SPECIFIED|Clerk#000003424|0|ages against the special, even gift| +41101|748369|O|77303.77|1996-11-30|2-HIGH|Clerk#000002725|0|s are carefully even a| +41102|308177|F|152535.67|1993-09-13|5-LOW|Clerk#000000114|0|nstructions. fluffily bold excuses nag| +41103|21724|F|174748.98|1992-10-06|5-LOW|Clerk#000000492|0|osely bold ideas alongside o| +41128|585136|F|208415.31|1993-04-28|1-URGENT|Clerk#000002380|0| the ideas. pending foxes against the silent dependen| +41129|356246|O|273288.72|1996-06-10|4-NOT SPECIFIED|Clerk#000004843|0|quick accounts cajole fluffily alongside of the carefully un| +41130|168404|O|256982.91|1997-03-31|2-HIGH|Clerk#000004793|0| deposits haggle carefully.| +41131|609902|F|272880.89|1993-07-08|2-HIGH|Clerk#000003614|0|lar pinto beans. dinos boost. silently | +41132|359635|O|168703.73|1998-06-16|2-HIGH|Clerk#000000306|0|, ironic requests. quickly regular pin| +41133|125885|O|226667.09|1997-07-30|2-HIGH|Clerk#000002272|0|cial packages along the special, special requests wake doggedly ag| +41134|732445|O|172511.70|1997-02-03|5-LOW|Clerk#000004814|0|osits. packages are carefully. deposits nag among the fluffily ironic accoun| +41135|426542|O|50382.94|1995-06-26|4-NOT SPECIFIED|Clerk#000004188|0|ously special deposits maintain slyly ironic, ironic co| +41160|390013|F|274283.14|1993-07-28|5-LOW|Clerk#000001135|0|boost after the furiously even r| +41161|691399|F|87911.73|1992-05-05|2-HIGH|Clerk#000001550|0|ly final accounts prom| +41162|566674|F|232071.23|1993-01-04|2-HIGH|Clerk#000000684|0|fully along the pending requests. furiously e| +41163|564910|F|214973.90|1994-10-26|4-NOT SPECIFIED|Clerk#000001848|0|osits cajole special, fluffy requests. car| +41164|182023|F|172774.39|1992-12-09|4-NOT SPECIFIED|Clerk#000000270|0|y about the quickly silent attainments; furiousl| +41165|733229|O|159738.60|1997-07-05|1-URGENT|Clerk#000002466|0|uriously special requests play. express, fi| +41166|119066|F|89643.47|1992-10-12|1-URGENT|Clerk#000004048|0|its-- furiously regular packages use blithely silent, regular packa| +41167|128366|O|325073.59|1996-01-23|5-LOW|Clerk#000003861|0| cajole around the accounts: platelets are quickly agains| +41192|430559|O|154473.17|1998-03-16|2-HIGH|Clerk#000000310|0|t the regular packages dou| +41193|390875|O|64102.25|1998-03-22|2-HIGH|Clerk#000003964|0|ly after the slyly expre| +41194|175037|F|151357.66|1992-04-27|4-NOT SPECIFIED|Clerk#000004512|0| regular, express theodolites sleep furiously according to the | +41195|343936|O|19167.13|1996-05-28|4-NOT SPECIFIED|Clerk#000003308|0|ic theodolites-- asymptotes us| +41196|264073|O|151568.45|1998-04-18|1-URGENT|Clerk#000001561|0|ackages after the packages poach quick| +41197|518488|F|36869.11|1995-01-02|1-URGENT|Clerk#000002910|0|ly regular dinos are carefully fluffily expr| +41198|704512|O|51007.67|1997-02-03|4-NOT SPECIFIED|Clerk#000003206|0|ns. pending packages affix. bold ideas except the fluffily even ideas | +41199|477949|O|97406.40|1996-06-12|5-LOW|Clerk#000003097|0|ter the carefully regular deco| +41224|359548|F|106697.61|1992-11-05|3-MEDIUM|Clerk#000000163|0|ly according to the regular reques| +41225|142322|O|126956.29|1998-01-08|2-HIGH|Clerk#000002581|0|final platelets around the carefull| +41226|245092|O|42937.16|1998-03-13|3-MEDIUM|Clerk#000004389|0| of the quickly silent deposits. ironic pac| +41227|259471|F|174238.54|1995-01-18|4-NOT SPECIFIED|Clerk#000000842|0|riously unusual gifts. even packages nag blithely pending depe| +41228|400331|O|61813.36|1995-10-22|1-URGENT|Clerk#000003403|0|le carefully fluffily ironic packages. ironic, reg| +41229|100258|O|302551.77|1997-06-20|4-NOT SPECIFIED|Clerk#000003668|0|ly special foxes boost among | +41230|522793|O|72283.62|1997-01-29|2-HIGH|Clerk#000004747|0|s boost slyly across the quickly speci| +41231|310984|F|287334.41|1994-02-21|3-MEDIUM|Clerk#000001433|0|ters cajole after the quickly bold theodolites. | +41256|675725|F|70548.03|1992-10-05|5-LOW|Clerk#000003235|0|eas about the pending idea| +41257|396187|F|62725.41|1993-08-09|5-LOW|Clerk#000003445|0|e the blithely even requests. final pac| +41258|201058|O|199866.16|1998-01-14|2-HIGH|Clerk#000004542|0|quests use quickly about the asymptotes. even pinto beans cajole. regular, r| +41259|416308|O|75336.83|1998-06-04|3-MEDIUM|Clerk#000003162|0| carefully express deposits hag| +41260|122779|F|153908.36|1993-02-25|2-HIGH|Clerk#000002957|0|e carefully regular requests. deposits are slyly acr| +41261|265348|F|213721.46|1993-05-21|2-HIGH|Clerk#000000754|0| accounts cajole blithely above the blithely special multipliers-- depo| +41262|203053|O|150088.04|1995-09-29|2-HIGH|Clerk#000001589|0|sly ironic foxes: blithely i| +41263|183127|F|72479.15|1994-03-19|3-MEDIUM|Clerk#000001375|0|lithely across the quietly pending platelets. carefully unusual | +41288|560275|O|74871.04|1997-04-08|3-MEDIUM|Clerk#000004268|0|ve the theodolites. quickly regular pa| +41289|276817|O|99883.86|1995-12-15|4-NOT SPECIFIED|Clerk#000001877|0|es wake slowly furiously ironic requests. blithely final deposi| +41290|190183|F|278119.14|1994-10-01|1-URGENT|Clerk#000003667|0|e according to the final, express accounts. | +41291|648898|F|67277.08|1992-01-09|2-HIGH|Clerk#000002009|0| express dugouts? fluf| +41292|278425|O|197071.20|1997-05-19|4-NOT SPECIFIED|Clerk#000003817|0|uctions-- blithe, ironic requests al| +41293|209747|O|153969.65|1997-12-08|5-LOW|Clerk#000003903|0|. quickly unusual foxes sleep quickly against the furio| +41294|203125|P|338500.02|1995-05-05|1-URGENT|Clerk#000000956|0|ely pending requests. pending accoun| +41295|641539|F|70083.41|1994-03-24|2-HIGH|Clerk#000000905|0|heodolites cajole quickly. even foxes along the slyly ironic reque| +41320|323608|F|210317.94|1993-03-26|1-URGENT|Clerk#000000664|0|about the special, busy do| +41321|627577|O|20507.89|1995-11-07|1-URGENT|Clerk#000004316|0|foxes. furiously enticing accounts boost furiously after the car| +41322|417178|F|367558.96|1992-01-15|2-HIGH|Clerk#000002513|0|le? carefully final packages aft| +41323|492274|O|262004.29|1997-01-29|5-LOW|Clerk#000000741|0| are according to the i| +41324|374191|P|64341.81|1995-04-06|3-MEDIUM|Clerk#000003584|0|ounts haggle fluffily instructions. furiou| +41325|266102|O|173113.07|1995-06-25|4-NOT SPECIFIED|Clerk#000000874|0|xpress packages are among the careful| +41326|112570|F|83181.00|1995-02-05|5-LOW|Clerk#000002775|0|use. carefully pending deposits h| +41327|454840|P|155411.09|1995-04-08|2-HIGH|Clerk#000000244|0|ess epitaphs. furiously final accounts haggle blithely| +41352|493474|O|68163.86|1996-02-24|4-NOT SPECIFIED|Clerk#000003306|0|ly silent dependencies. sl| +41353|307096|F|160025.24|1992-08-20|1-URGENT|Clerk#000000997|0|as sleep according to the unusual accounts. c| +41354|603566|F|58395.02|1993-08-31|3-MEDIUM|Clerk#000002110|0|sts. pending pinto beans u| +41355|369127|O|186580.89|1998-03-05|2-HIGH|Clerk#000004998|0|e the thin, bold requests s| +41356|644488|O|189961.67|1996-08-25|4-NOT SPECIFIED|Clerk#000001530|0|lly. blithely silent deposits nag carefully. blithely bold requests above t| +41357|376207|O|98862.10|1996-02-29|2-HIGH|Clerk#000002936|0|y about the blithely special deposits. quickly| +41358|396671|O|46363.74|1997-06-02|1-URGENT|Clerk#000003561|0| idly regular theodolites unwind fluffily caref| +41359|97615|O|241384.93|1997-06-07|2-HIGH|Clerk#000002778|0| regular, bold dependencies;| +41384|362671|O|64333.61|1995-06-13|2-HIGH|Clerk#000001644|0|slyly even foxes against the slyly regular asymptotes| +41385|142112|O|155445.65|1995-12-03|4-NOT SPECIFIED|Clerk#000004925|0|egrate silently regular multipliers: slyly s| +41386|462145|O|180470.56|1997-11-01|3-MEDIUM|Clerk#000000696|0|d theodolites. pending deposits use furiously. regular, ironic instructio| +41387|247297|F|322867.97|1992-05-30|5-LOW|Clerk#000002698|0|al excuses nag bold | +41388|568207|F|145123.75|1992-03-17|5-LOW|Clerk#000004139|0|packages haggle furiously. bold accounts haggle after | +41389|92305|O|261550.16|1996-10-15|1-URGENT|Clerk#000003549|0|ely express pinto beans detect fur| +41390|367549|O|10936.51|1996-12-31|4-NOT SPECIFIED|Clerk#000003842|0|express theodolites. slyly unusual asymptotes maintain carefully final reque| +41391|380927|F|74568.26|1992-07-17|4-NOT SPECIFIED|Clerk#000001957|0|fily silent instructions cajole slyly. final instructions cajole according t| +41416|233252|F|89259.35|1994-06-23|3-MEDIUM|Clerk#000004716|0| of the bold, silent instruct| +41417|1157|F|173922.31|1993-03-30|3-MEDIUM|Clerk#000001104|0|y final sentiments. blithely special deposits inte| +41418|684721|F|19798.48|1993-01-21|4-NOT SPECIFIED|Clerk#000003462|0|ironic, regular orbits| +41419|87994|O|146544.55|1995-06-08|4-NOT SPECIFIED|Clerk#000001630|0|nic excuses cajole among the blithely even accou| +41420|648965|F|25294.98|1993-12-04|4-NOT SPECIFIED|Clerk#000000722|0|es affix along the re| +41421|654335|O|77953.31|1995-11-30|2-HIGH|Clerk#000003170|0|final waters cajole blithely. pe| +41422|150371|F|215870.91|1994-04-14|3-MEDIUM|Clerk#000004104|0|counts affix quickly. bold dependencies wake after the express f| +41423|529282|O|171728.39|1996-08-07|5-LOW|Clerk#000003979|0| blithely. ironic requests haggle according to the accounts. furiously un| +41448|622829|F|201192.11|1995-03-07|1-URGENT|Clerk#000002902|0| boldly unusual requests. req| +41449|134342|F|23590.89|1992-12-18|5-LOW|Clerk#000001466|0|ents hang fluffily around the furiously express platelets. escapades could| +41450|369820|F|265387.73|1993-04-21|4-NOT SPECIFIED|Clerk#000002462|0|ully ironic pinto beans. quickly ironic requests are?| +41451|314473|O|249144.81|1995-12-22|1-URGENT|Clerk#000004527|0|s. slyly bold requests haggle blithely about the regular pint| +41452|69023|O|130433.93|1998-03-17|2-HIGH|Clerk#000002675|0|. accounts sleep. instructions wake against the final ac| +41453|554255|F|137102.62|1993-11-14|2-HIGH|Clerk#000000714|0| affix carefully special accounts. ideas cajole against the slyly unus| +41454|354478|O|130980.73|1997-09-26|2-HIGH|Clerk#000002981|0|ronic requests eat quickly. closely regular instructi| +41455|450815|O|129126.96|1997-03-01|1-URGENT|Clerk#000003118|0|usual theodolites wake blithely | +41480|343397|F|41002.27|1995-01-18|5-LOW|Clerk#000004904|0|ar deposits among the id| +41481|206872|F|227125.58|1993-08-09|4-NOT SPECIFIED|Clerk#000002846|0|ress dependencies-- sl| +41482|644132|O|202320.70|1995-05-09|4-NOT SPECIFIED|Clerk#000000965|0| doggedly. regular, silent instructions according to the furiously | +41483|411211|O|323384.83|1996-04-02|3-MEDIUM|Clerk#000003180|0|al requests sleep blithely alongs| +41484|701065|O|59938.90|1996-06-03|5-LOW|Clerk#000001685|0|pinto beans integrate quickly according to the qui| +41485|283817|F|187332.44|1993-11-30|5-LOW|Clerk#000000164|0|its. fluffily unusual accounts acco| +41486|96898|O|74622.99|1995-11-24|1-URGENT|Clerk#000002188|0|entiments integrate blithely about the stealthily ironic pinto| +41487|301459|O|179004.99|1997-10-09|5-LOW|Clerk#000001738|0|al packages. fluffily sl| +41512|355459|F|142961.11|1992-05-18|1-URGENT|Clerk#000003027|0|quickly carefully special theodolites. theodolites among the furiously regular| +41513|416813|O|210163.23|1997-05-31|3-MEDIUM|Clerk#000001976|0| foxes along the enticingly regular depos| +41514|372979|F|210586.96|1992-12-28|3-MEDIUM|Clerk#000002757|0|lar courts; regular, final p| +41515|128206|F|43212.88|1992-09-26|4-NOT SPECIFIED|Clerk#000004451|0|es are about the quickly even deposits. quickly even account| +41516|4475|O|183443.92|1996-05-06|5-LOW|Clerk#000000187|0|y ironic deposits wake furiously besi| +41517|194785|F|241438.98|1994-10-18|4-NOT SPECIFIED|Clerk#000000528|0|its sleep against the carefully final ideas. blithely | +41518|724910|F|104442.53|1993-04-22|1-URGENT|Clerk#000004860|0| packages. slyly even dep| +41519|551689|F|112215.03|1994-03-25|1-URGENT|Clerk#000000209|0| deposits. final instructions affix idea| +41544|730243|F|253676.79|1993-01-12|3-MEDIUM|Clerk#000004330|0|ic packages. requests alongside of the fur| +41545|170728|F|166394.17|1994-07-09|1-URGENT|Clerk#000002792|0|ely pending foxes. quickly regular dependencies detect. thinly ironic | +41546|656563|F|66052.15|1992-12-27|4-NOT SPECIFIED|Clerk#000000124|0|l packages across the ironic foxes haggle against the even packages-| +41547|77296|O|207143.06|1996-11-20|4-NOT SPECIFIED|Clerk#000003153|0|es. accounts cajole boldly even accounts. c| +41548|100730|O|241789.07|1997-07-14|5-LOW|Clerk#000002635|0|osits. carefully even foxes doubt slyly about the final, final acco| +41549|214700|F|118269.59|1994-12-15|1-URGENT|Clerk#000002880|0|ld accounts haggle blithely unusual deposits. bold packages along the bold| +41550|208609|O|242559.20|1998-04-18|3-MEDIUM|Clerk#000002385|0| ironic, even ideas. ironic excuse| +41551|560390|O|175516.00|1996-12-30|5-LOW|Clerk#000000358|0|ording to the carefully bold requests. slyly ironic sauternes| +41576|715345|F|119465.66|1995-03-02|3-MEDIUM|Clerk#000002300|0|atelets. blithely pending sentiments would are alongside of the | +41577|298004|O|41511.80|1998-03-06|1-URGENT|Clerk#000001837|0|s ideas boost blithely regular pinto bea| +41578|42364|F|48708.41|1992-03-24|4-NOT SPECIFIED|Clerk#000000371|0|y. carefully bold accounts use against| +41579|246901|F|111322.75|1992-09-20|2-HIGH|Clerk#000003449|0|ar requests. slyly regular notornis are bli| +41580|642316|O|175921.28|1997-11-04|2-HIGH|Clerk#000003786|0|daringly regular dependencies? dependencies nag along the special theod| +41581|641905|F|34075.87|1994-06-27|5-LOW|Clerk#000000716|0|ndencies cajole against the final p| +41582|466618|O|31697.48|1996-12-15|2-HIGH|Clerk#000002379|0| close, express theodolites boost| +41583|433060|F|222298.72|1992-01-05|4-NOT SPECIFIED|Clerk#000004676|0|x slyly regular requests. frets na| +41608|412931|F|88254.46|1993-10-11|2-HIGH|Clerk#000002713|0|carefully even packages among the theodolites detect slyly specia| +41609|369959|O|95129.24|1996-04-15|2-HIGH|Clerk#000001060|0|cajole. blithely special deposits haggle along the carefully iron| +41610|388852|O|263383.96|1996-05-06|4-NOT SPECIFIED|Clerk#000002215|0|t slyly across the slyly regular instructions. deposits breach against the c| +41611|654221|F|299862.03|1994-12-09|2-HIGH|Clerk#000002642|0|efully among the quickl| +41612|484612|O|218817.54|1995-11-01|3-MEDIUM|Clerk#000003807|0|eposits are even, unusual deposits! blithely even pinto beans will haggle q| +41613|597772|O|294249.19|1996-07-26|2-HIGH|Clerk#000001426|0|e fluffily even req| +41614|474148|F|215975.78|1992-07-25|3-MEDIUM|Clerk#000004200|0|ets after the theodolites bo| +41615|243761|O|74367.99|1996-03-06|3-MEDIUM|Clerk#000003046|0|ts; foxes wake carefully sly| +41640|390337|F|153994.38|1993-10-22|2-HIGH|Clerk#000004321|0|y furiously ironic deposits-- ironic grouches are. furiously r| +41641|132706|F|92062.20|1993-07-22|5-LOW|Clerk#000003172|0|lar platelets. regu| +41642|608494|O|141253.03|1998-01-15|5-LOW|Clerk#000003282|0|lly above the special ideas: final packages dazzle sl| +41643|681982|O|87936.27|1995-08-08|2-HIGH|Clerk#000004722|0|accounts promise pinto beans. permanent sheaves cajole abo| +41644|562192|F|220322.31|1992-02-21|1-URGENT|Clerk#000001755|0|y ironic accounts thrash furiousl| +41645|253342|F|138219.33|1993-10-24|2-HIGH|Clerk#000000559|0|ess accounts are blithely furious requests. accounts sleep. final, care| +41646|150238|F|112218.45|1992-11-28|2-HIGH|Clerk#000004306|0|ithely bold accounts haggle around the regu| +41647|538922|F|106903.83|1993-04-26|1-URGENT|Clerk#000003573|0| requests. furiously pending dolphins need to engage according to the blithel| +41672|661556|F|137705.59|1992-09-06|3-MEDIUM|Clerk#000001197|0|ts. ironic dolphins hin| +41673|4922|F|110010.78|1993-05-28|1-URGENT|Clerk#000002118|0|even, ironic ideas haggle fluffily after the furiously pending theodol| +41674|215020|O|109161.97|1996-04-01|4-NOT SPECIFIED|Clerk#000002989|0|symptotes nag. dependencies wake pending theodolite| +41675|313816|F|50674.31|1993-03-26|3-MEDIUM|Clerk#000001840|0|eep fluffily carefully even warthogs. ironic requests after the express inst| +41676|305002|F|91101.46|1993-01-28|5-LOW|Clerk#000001367|0|sits. regular deposits sleep quic| +41677|668269|F|128520.75|1994-02-21|2-HIGH|Clerk#000000261|0|usly bold deposits. blithely qui| +41678|318073|F|80833.07|1993-08-23|1-URGENT|Clerk#000002280|0|riously final platelets. dependencies boost blithely | +41679|590098|O|324950.48|1997-03-08|1-URGENT|Clerk#000000764|0|d around the blithely regular packages. furiously dogged deposits above the f| +41704|508064|O|190889.95|1998-01-05|5-LOW|Clerk#000004111|0|s deposits cajole carefully packages; requests are | +41705|265051|F|221369.49|1993-06-07|4-NOT SPECIFIED|Clerk#000002080|0|es: quickly even pinto beans against | +41706|432151|O|193053.01|1997-09-29|3-MEDIUM|Clerk#000003846|0|sly alongside of the slyly express forges. furiously sil| +41707|140905|F|241971.37|1992-11-30|2-HIGH|Clerk#000003514|0|efully silent pearls haggle blithely about th| +41708|416492|F|76225.69|1994-07-14|3-MEDIUM|Clerk#000002494|0| of the special requests are quickly among the carefully even foxes. furio| +41709|226457|F|119014.55|1993-08-30|1-URGENT|Clerk#000000695|0|inst the dinos. fluffily ironic p| +41710|561379|O|333082.06|1995-11-29|2-HIGH|Clerk#000004654|0|n the closely special accounts. packag| +41711|88859|F|291467.44|1993-09-18|3-MEDIUM|Clerk#000000788|0|g the careful, regu| +41736|189994|F|209451.47|1994-04-07|3-MEDIUM|Clerk#000003061|0|y special packages sleep fluffily according to the requests. blithely re| +41737|465313|F|9768.65|1992-10-15|4-NOT SPECIFIED|Clerk#000000078|0|usly bold instructions wake slyly slyl| +41738|264461|F|30580.18|1992-02-09|5-LOW|Clerk#000002850|0|g the carefully even depo| +41739|282502|O|267798.76|1997-11-12|5-LOW|Clerk#000000473|0|long the final packages. slyly ironic| +41740|493073|F|103316.72|1992-11-03|2-HIGH|Clerk#000003708|0|pending requests nag carefu| +41741|316198|O|263457.99|1997-03-04|4-NOT SPECIFIED|Clerk#000000025|0|accounts sleep. final, final excuses above the ironic packages haggl| +41742|567412|F|196510.30|1994-06-03|2-HIGH|Clerk#000004458|0| hang slyly. regular ideas affix after the si| +41743|221488|F|122383.74|1994-12-28|4-NOT SPECIFIED|Clerk#000000221|0|ress deposits along the fluffily unusual pack| +41768|283960|F|71498.29|1994-02-12|3-MEDIUM|Clerk#000004467|0|ely final packages sleep fluf| +41769|258020|O|28948.67|1997-10-22|3-MEDIUM|Clerk#000003418|0|t against the escapa| +41770|35732|O|250357.49|1997-08-09|1-URGENT|Clerk#000000545|0|nstructions haggle quickly speci| +41771|537403|F|130843.66|1994-03-19|3-MEDIUM|Clerk#000001056|0|kages. furiously regular packages use slyly regular theodolites-- furiously i| +41772|608843|F|21021.50|1993-03-07|4-NOT SPECIFIED|Clerk#000002984|0|ve the carefully silent accounts. slyly regular packages promise thinly ar| +41773|571987|O|295497.03|1996-01-02|1-URGENT|Clerk#000000985|0|rts. accounts haggle blit| +41774|612713|O|188643.35|1995-08-06|4-NOT SPECIFIED|Clerk#000001720|0|kages? unusual sheaves doze permanently among the quickly regular i| +41775|356944|O|150203.33|1996-07-02|3-MEDIUM|Clerk#000004671|0|ronic deposits are blithely final ideas-- qui| +41800|630446|F|162140.23|1993-01-12|5-LOW|Clerk#000000850|0|unts wake across the carefully regular req| +41801|653908|O|75507.66|1997-12-11|4-NOT SPECIFIED|Clerk#000000511|0|regular dependencies use closely silent pinto beans. special foxe| +41802|451319|O|144694.23|1996-09-29|5-LOW|Clerk#000002197|0|nstructions-- regular requests are carefully even pin| +41803|553894|F|49869.67|1994-02-22|2-HIGH|Clerk#000002799|0|dazzle carefully permanently ironic requests. furiously even excuses h| +41804|278531|F|83999.17|1993-10-23|3-MEDIUM|Clerk#000000809|0|jole. quickly bold r| +41805|509755|O|8539.95|1998-07-02|1-URGENT|Clerk#000000640|0|ctions. pending, regular accounts above the asymptotes ar| +41806|190748|F|262453.11|1993-11-19|2-HIGH|Clerk#000004003|0|efully quickly ironic platelets: sauternes until the expres| +41807|387505|O|272437.34|1995-09-26|1-URGENT|Clerk#000003960|0| platelets at the furiously i| +41832|528737|F|11107.57|1994-07-27|4-NOT SPECIFIED|Clerk#000003993|0|eans in place of the express, pending platelets dazz| +41833|479620|F|118977.66|1992-04-02|1-URGENT|Clerk#000000617|0| about the evenly regu| +41834|692579|O|162152.55|1997-12-07|3-MEDIUM|Clerk#000003919|0| cajole slyly bold, special requests. idly sil| +41835|162929|F|200274.61|1993-02-01|3-MEDIUM|Clerk#000000709|0|usly regular deposits. express, ironic asym| +41836|87301|O|99225.63|1995-06-24|1-URGENT|Clerk#000003643|0|ole carefully regular depths. fluffily regular | +41837|264545|F|33617.79|1993-01-29|5-LOW|Clerk#000000581|0|egular platelets. fluffily final accounts along| +41838|202114|F|45163.64|1993-12-16|1-URGENT|Clerk#000002707|0| silent asymptotes. slyly idle dolphins serve furiously furiously pendi| +41839|152273|F|40188.94|1993-01-06|5-LOW|Clerk#000001176|0|nic theodolites. always even pinto beans sleep carefu| +41864|243281|O|228391.43|1997-04-17|4-NOT SPECIFIED|Clerk#000003278|0|hely about the carefully ironic f| +41865|562204|O|8745.21|1996-06-06|4-NOT SPECIFIED|Clerk#000001258|0|usly regular deposits wake quickly special packages.| +41866|438340|O|309195.52|1998-06-19|2-HIGH|Clerk#000002862|0|ent, bold accounts. dependencies wake. express packages cajole furio| +41867|657590|O|78148.72|1997-11-15|5-LOW|Clerk#000001209|0|unusual asymptotes wa| +41868|98627|F|189650.18|1993-05-14|1-URGENT|Clerk#000000509|0|osits use blithely pending a| +41869|118711|O|168834.55|1996-08-30|3-MEDIUM|Clerk#000001678|0|egular requests poach carefu| +41870|173689|O|104866.83|1997-06-07|3-MEDIUM|Clerk#000000647|0|ccounts. slyly regular accounts a| +41871|167527|P|100840.18|1995-05-18|2-HIGH|Clerk#000004283|0|foxes? final foxes wake after the ideas. blithely final requ| +41896|92693|F|163484.53|1992-05-29|4-NOT SPECIFIED|Clerk#000001641|0|uests after the quickly ironic deposits b| +41897|139465|F|55767.97|1994-09-13|4-NOT SPECIFIED|Clerk#000004155|0|accounts haggle alongside of the c| +41898|206885|O|368040.44|1996-12-25|4-NOT SPECIFIED|Clerk#000001158|0|ar foxes use fluffi| +41899|105074|F|213483.75|1994-08-24|4-NOT SPECIFIED|Clerk#000003118|0|special excuses are along the fluffily final accoun| +41900|466330|O|246995.35|1996-03-18|2-HIGH|Clerk#000001352|0|le slyly. furiously ironic theodolites about the foxes integrate even, expre| +41901|92413|F|92974.55|1994-10-15|4-NOT SPECIFIED|Clerk#000000490|0|d packages. quickly regular packages grow across the deposits. even accounts | +41902|666160|O|70769.91|1996-01-31|4-NOT SPECIFIED|Clerk#000003511|0|ackages wake blithely carefully special reques| +41903|139057|O|172881.10|1998-05-08|1-URGENT|Clerk#000004320|0|furiously regular warthogs nag carefully across the even the| +41928|103669|F|65050.09|1994-04-21|1-URGENT|Clerk#000001901|0|ct carefully around the regular requests. carefu| +41929|87238|O|242730.16|1996-05-07|2-HIGH|Clerk#000004509|0|uests. unusual, blithe pinto beans according to the slyly pending accounts | +41930|687811|F|185387.50|1994-07-06|3-MEDIUM|Clerk#000000147|0|platelets nod blithely. fluffily special packages according to the un| +41931|279181|F|53899.79|1992-05-26|5-LOW|Clerk#000004597|0|dolites along the fluffily bold asymptotes sublate furiously according to| +41932|172157|F|50793.12|1995-03-14|1-URGENT|Clerk#000000791|0|y inside the carefully regular dependencies. quickly | +41933|690094|F|357212.97|1992-04-08|3-MEDIUM|Clerk#000003631|0|y bold deposits boost blithely | +41934|394406|O|170564.72|1996-05-17|4-NOT SPECIFIED|Clerk#000003992|0| the blithely even epitaphs. deposits wake around the sauternes. carefu| +41935|276142|F|92681.83|1993-03-16|4-NOT SPECIFIED|Clerk#000003422|0|ording to the blithely even deposits. carefully final requests use abou| +41960|115141|F|190007.24|1993-08-07|2-HIGH|Clerk#000001873|0|e furiously. furiously express instructions | +41961|168326|O|423772.98|1996-03-25|4-NOT SPECIFIED|Clerk#000004825|0|ide of the express instructions cajo| +41962|47614|O|173478.96|1998-05-12|4-NOT SPECIFIED|Clerk#000000609|0|y even ideas. special, final instructions haggle furiously acros| +41963|728125|P|290119.61|1995-04-07|3-MEDIUM|Clerk#000002714|0|ickly special packages: ironic, even accounts wake carefully ironic ideas; pac| +41964|564584|O|75843.90|1997-09-16|5-LOW|Clerk#000004081|0|ke blithely! regular excuses sleep furiously| +41965|706912|O|120728.24|1995-11-25|2-HIGH|Clerk#000002727|0|xpress instructions. fluffily fin| +41966|296818|F|73603.26|1993-10-21|2-HIGH|Clerk#000000361|0|ve the bold requests. furiously ir| +41967|353707|F|166811.52|1992-09-26|1-URGENT|Clerk#000000651|0|ithely close platelets wake carefully ironic packages. carefully pending ins| +41992|223613|P|206604.01|1995-04-17|2-HIGH|Clerk#000004289|0|cajole quickly carefully final accounts. bli| +41993|5557|O|135130.00|1998-05-18|3-MEDIUM|Clerk#000004509|0|efully ruthless pinto beans sublate carefull| +41994|370237|F|139303.12|1993-09-15|3-MEDIUM|Clerk#000001962|0|gainst the slyly silent ideas. blithely regular instructions sleep carefully| +41995|567022|F|221713.88|1994-11-04|1-URGENT|Clerk#000004153|0|carefully regular foxes about the quickly pending deposits nag slyly furiously| +41996|426511|F|121780.49|1993-11-23|1-URGENT|Clerk#000002792|0|cial, unusual deposits above the final, regular deposits wa| +41997|599026|F|33843.79|1993-09-24|1-URGENT|Clerk#000001354|0|e packages. request| +41998|556216|O|48353.97|1998-07-13|2-HIGH|Clerk#000003072|0| carefully. blithely express courts haggle furiously | +41999|293284|O|152960.99|1996-03-05|1-URGENT|Clerk#000003849|0|ccounts. furiously reg| +42024|197854|O|88157.74|1995-06-18|5-LOW|Clerk#000000267|0| foxes. carefully bold packages are. slyly express in| +42025|562696|O|201133.77|1996-11-12|1-URGENT|Clerk#000001095|0|regular requests wake quickly carefull| +42026|453173|F|69063.06|1993-05-22|1-URGENT|Clerk#000002765|0| fluffily even accounts nag instru| +42027|218776|O|182721.63|1996-11-18|1-URGENT|Clerk#000002533|0|equests haggle blithely. furiously sp| +42028|453394|F|192305.32|1994-06-21|5-LOW|Clerk#000002762|0|old furiously quickly regular foxes. carefully ironic foxes slee| +42029|165626|O|67068.59|1995-09-30|2-HIGH|Clerk#000001741|0|ajole final platelets-- blithely regular accounts cajole-- blithely even requ| +42030|412810|F|182084.37|1993-02-09|4-NOT SPECIFIED|Clerk#000000972|0|he quickly pending foxes. fluffily regula| +42031|573308|O|160936.09|1995-04-16|2-HIGH|Clerk#000003798|0|gular accounts hagg| +42056|336487|P|154850.75|1995-05-19|2-HIGH|Clerk#000000206|0|ounts are blithely furiously even requests. even requests wak| +42057|323230|F|10685.35|1993-07-09|5-LOW|Clerk#000003007|0| accounts. pending, regular id| +42058|264562|O|66317.15|1995-12-27|4-NOT SPECIFIED|Clerk#000000220|0| deposits after the even | +42059|485818|O|220883.38|1997-10-01|4-NOT SPECIFIED|Clerk#000002234|0|usly final instructions wake blithely special deposits. packages na| +42060|614209|O|109774.72|1995-09-30|1-URGENT|Clerk#000001218|0|blithely along the fluffy acc| +42061|747310|F|65251.30|1994-03-09|2-HIGH|Clerk#000003230|0|eep; deposits solve final orbits-- quietly | +42062|514823|F|341401.23|1992-02-28|2-HIGH|Clerk#000002722|0|carefully unusual decoys haggle bus| +42063|617504|F|131243.55|1995-02-22|2-HIGH|Clerk#000000887|0|e slyly express foxes| +42088|623354|O|195783.12|1995-12-07|4-NOT SPECIFIED|Clerk#000002844|0|ely ironic dependencies use bold accounts. furiously regular instr| +42089|704204|F|206444.64|1994-07-09|1-URGENT|Clerk#000004716|0|above the careful excuses.| +42090|544982|O|191974.60|1995-07-05|2-HIGH|Clerk#000004892|0|es sleep fluffily. slyly final packages are carefully. blithely regu| +42091|498577|O|294633.72|1996-11-15|1-URGENT|Clerk#000002862|0|ld packages integrate quickly. carefully ironic depo| +42092|551330|F|214984.52|1993-06-01|4-NOT SPECIFIED|Clerk#000004811|0|al dolphins detect bold excuses; express asymptotes| +42093|697127|O|69132.34|1995-09-11|2-HIGH|Clerk#000001869|0| carefully unusual instructions are after the closely special| +42094|103097|O|325764.51|1997-10-22|5-LOW|Clerk#000001172|0|onic requests against the regular reque| +42095|242941|F|267570.51|1992-08-29|3-MEDIUM|Clerk#000004990|0| requests sleep after the quickly ironic deposits; furiously final| +42120|85438|O|161378.46|1996-05-05|4-NOT SPECIFIED|Clerk#000003414|0|lithely quickly even deposits. dep| +42121|437236|F|276685.93|1992-10-28|5-LOW|Clerk#000000517|0|es believe. ironic accounts cajole fluffily boldly regular pinto beans. specia| +42122|91996|O|51406.27|1996-07-13|3-MEDIUM|Clerk#000002228|0|sts. furiously even deposits haggle sometimes special | +42123|413545|F|126287.82|1993-01-27|5-LOW|Clerk#000001247|0|c foxes cajole furiously | +42124|196381|O|9271.21|1996-08-28|2-HIGH|Clerk#000003478|0|sentiments boost quickly. slyly bold excuses about the fluffily unusua| +42125|575155|F|116698.00|1993-12-23|5-LOW|Clerk#000003259|0|gle carefully regular, even instructions. ideas integrat| +42126|601637|F|215699.24|1994-12-01|5-LOW|Clerk#000003266|0| regular, even deposits ca| +42127|200014|F|155091.90|1993-03-20|3-MEDIUM|Clerk#000003971|0|usual warthogs. bold theodolites cajole dependencies. quickly i| +42152|118310|F|170470.63|1994-08-04|3-MEDIUM|Clerk#000003782|0|uickly ironic requests sublate against the carefully regular foxes: d| +42153|178217|F|134536.20|1993-06-05|3-MEDIUM|Clerk#000002883|0|. slyly pending instructions slee| +42154|530419|F|112070.41|1992-01-12|3-MEDIUM|Clerk#000000296|0|thely final deposits. carefully regular accounts sleep | +42155|232645|F|177053.62|1993-05-28|1-URGENT|Clerk#000003786|0| dolphins mold above the quickly ironic deposits. ca| +42156|312598|F|228706.91|1994-04-22|4-NOT SPECIFIED|Clerk#000000515|0|riously unusual accounts. blithely special foxes poach| +42157|69440|F|175077.72|1992-06-28|2-HIGH|Clerk#000000162|0|ial, silent accounts thrash above t| +42158|67231|O|175098.67|1998-05-25|4-NOT SPECIFIED|Clerk#000001198|0|yly regular, special requests. blithely regular fret| +42159|420299|O|154167.42|1996-01-11|4-NOT SPECIFIED|Clerk#000000132|0|hely bold accounts nag carefully along the regular accou| +42184|461875|F|302628.26|1993-09-11|5-LOW|Clerk#000004871|0|uriously final foxes. sometimes special asymptotes detect quick| +42185|217109|O|236662.84|1996-06-01|1-URGENT|Clerk#000000979|0|efully ironic pinto beans. regular requests use fluffily a| +42186|195301|F|72374.84|1993-04-15|3-MEDIUM|Clerk#000000341|0|ate quickly deposits. furiously unusu| +42187|402226|F|22871.85|1992-09-17|2-HIGH|Clerk#000004932|0|according to the slyly final deposits detect blithely alongside of | +42188|430462|F|52956.66|1993-11-17|4-NOT SPECIFIED|Clerk#000002309|0|the furiously regular packages. final foxes across the slyl| +42189|257909|O|116440.09|1997-05-13|1-URGENT|Clerk#000001027|0| furiously unusual deposits haggle slyly after the regular, even | +42190|414196|F|59425.29|1993-01-28|5-LOW|Clerk#000001787|0|en instructions. carefully ironic courts nag quickly furiously silent accounts| +42191|610163|O|234367.15|1998-07-03|2-HIGH|Clerk#000004979|0|e notornis hinder fluffily against the| +42216|258035|F|297466.30|1994-03-29|4-NOT SPECIFIED|Clerk#000003373|0|ular, final dependencies. ironic, even requ| +42217|283976|F|57252.39|1994-02-13|1-URGENT|Clerk#000001530|0|ns haggle furiously. fluffily bold deposits use slyly slyl| +42218|534505|F|149892.41|1994-09-12|2-HIGH|Clerk#000003010|0|heodolites wake according to| +42219|654058|F|38867.30|1993-11-09|5-LOW|Clerk#000004533|0|fluffily among the blithely even excuses| +42220|745522|O|219229.67|1995-12-21|1-URGENT|Clerk#000004832|0|lar requests integrate| +42221|456716|O|185723.74|1997-11-01|4-NOT SPECIFIED|Clerk#000000642|0|ggedly unusual requests. s| +42222|523375|O|167817.05|1998-04-01|1-URGENT|Clerk#000004309|0|kly. furiously bold accounts cajole slyly af| +42223|338629|F|315418.34|1992-01-04|4-NOT SPECIFIED|Clerk#000000875|0| boost furiously. slyly ironic requests according to t| +42248|313861|O|236830.42|1995-11-10|5-LOW|Clerk#000003354|0|ithely along the blithely ironic deposits. carefully bold instruction| +42249|304015|F|102277.15|1995-02-12|5-LOW|Clerk#000004127|0|s wake furiously after the quickly fin| +42250|577861|F|173048.45|1993-12-22|3-MEDIUM|Clerk#000004160|0|, special theodolites use quickly against the regul| +42251|330928|O|192697.48|1996-07-26|2-HIGH|Clerk#000002721|0|lithely final requests. accounts boost against| +42252|627661|F|64251.45|1995-01-16|2-HIGH|Clerk#000003646|0|kages cajole carefully a| +42253|330562|F|149101.18|1994-06-29|1-URGENT|Clerk#000000334|0| haggle regularly. pack| +42254|480278|O|141461.83|1996-03-01|3-MEDIUM|Clerk#000003291|0|ter the final, special courts. br| +42255|528340|O|47309.45|1996-01-07|3-MEDIUM|Clerk#000000880|0|egular, unusual packages. quickly special foxes wake above the thin | +42280|540052|F|19315.68|1992-04-04|1-URGENT|Clerk#000001565|0|sly pinto beans. final foxes sleep carefully special packages. permanentl| +42281|129892|F|318496.72|1994-12-06|4-NOT SPECIFIED|Clerk#000002544|0|e courts. unusual requests are never. blithely | +42282|591697|O|114737.24|1997-06-28|2-HIGH|Clerk#000002831|0|gular packages was car| +42283|398329|F|300540.03|1992-10-15|5-LOW|Clerk#000002363|0|blithely final asymptotes engage quickly alongs| +42284|183478|F|336356.86|1993-05-23|2-HIGH|Clerk#000004429|0|eposits. furiously final| +42285|439738|F|50075.45|1992-04-11|1-URGENT|Clerk#000004877|0|deposits was. express, silent requests haggle furiously according | +42286|145936|O|257818.63|1998-06-21|1-URGENT|Clerk#000003489|0|phins are carefully about the blithely f| +42287|243416|O|131669.49|1997-07-11|3-MEDIUM|Clerk#000000753|0|nto beans. furiously final instructions use. instructions eat| +42312|577379|O|79594.45|1998-03-13|5-LOW|Clerk#000000475|0|ts. bold requests engage slyly slyly even plate| +42313|505939|F|74176.18|1994-10-14|4-NOT SPECIFIED|Clerk#000003183|0|ven excuses. regular somas maintain quickly around the slyly special| +42314|561487|F|266020.73|1993-08-13|2-HIGH|Clerk#000003657|0|leep furiously final accounts. special, express foxes against the unusua| +42315|382997|F|183121.18|1994-03-29|4-NOT SPECIFIED|Clerk#000002741|0|he ironic, regular account| +42316|524278|O|61245.29|1996-11-11|3-MEDIUM|Clerk#000000209|0|xes nag foxes. pending, express ideas nag fluffily. | +42317|507289|O|239383.78|1996-11-30|5-LOW|Clerk#000002461|0|y pending requests. bold, stealthy packages nag carefully around the careful| +42318|731992|P|248569.75|1995-05-06|2-HIGH|Clerk#000001458|0|sits affix fluffily pinto beans. unusual, unusual deposits boost blithely a| +42319|309116|O|180577.44|1996-02-12|3-MEDIUM|Clerk#000001368|0| regular, even packages cajo| +42344|49084|F|294297.88|1993-07-17|2-HIGH|Clerk#000003018|0|lites. bold accounts are careful| +42345|703391|F|135718.52|1994-12-26|5-LOW|Clerk#000004160|0|elets. carefully express packages cajole furiously against the blithely ir| +42346|381985|O|261757.07|1998-05-06|3-MEDIUM|Clerk#000000787|0|he carefully ironic braids. blithely regular excuses haggle be| +42347|747628|O|236507.27|1997-12-15|1-URGENT|Clerk#000003289|0|tes detect furiously. final, regular instructions integrate furiously. bold| +42348|603832|O|140251.09|1996-12-31|1-URGENT|Clerk#000000371|0|s. slyly pending packages nag. accounts among the speci| +42349|328895|O|160115.48|1996-08-12|5-LOW|Clerk#000000017|0|beans haggle fluffily b| +42350|223261|O|84404.81|1995-07-18|2-HIGH|Clerk#000004751|0|iously. ironic platelets haggle furiously acr| +42351|68500|P|224250.32|1995-03-26|5-LOW|Clerk#000001130|0|s integrate. even accounts above the express packages cajole p| +42376|14534|F|156383.37|1992-05-21|1-URGENT|Clerk#000003760|0|o beans sleep carefully i| +42377|514223|F|281299.18|1992-01-17|2-HIGH|Clerk#000003937|0|fully. ironic deposits caj| +42378|291709|O|196544.62|1998-06-22|5-LOW|Clerk#000001807|0|final pinto beans. unusual, regular pinto beans sleep quickly p| +42379|737410|F|105842.10|1993-05-16|3-MEDIUM|Clerk#000000508|0|l, regular ideas sleep slyly after the carefully iron| +42380|633823|F|30567.43|1993-10-28|5-LOW|Clerk#000004184|0|cross the final, ironic notornis; sly| +42381|412079|F|92581.05|1994-09-08|3-MEDIUM|Clerk#000001091|0| blithely ironic requests. quickly special deposits use blithe| +42382|299665|F|32442.86|1994-05-30|4-NOT SPECIFIED|Clerk#000000835|0|ggle quickly. carefully even requests boost carefully| +42383|186766|P|171712.23|1995-03-14|5-LOW|Clerk#000003398|0|es use slyly slyly final | +42408|193738|O|200744.33|1998-05-12|4-NOT SPECIFIED|Clerk#000003882|0|arefully final theodolites affix slyly fluffily iro| +42409|385049|F|179011.43|1992-03-31|3-MEDIUM|Clerk#000000333|0|the ironic, bold foxes cajole blithely final accounts. sly| +42410|511499|O|116071.14|1996-12-15|4-NOT SPECIFIED|Clerk#000000152|0| waters are according to th| +42411|262444|O|264321.12|1997-10-27|1-URGENT|Clerk#000003141|0|nal sheaves haggle slyly against the requests: carefully regular asymptotes x| +42412|130765|O|180626.52|1997-11-02|5-LOW|Clerk#000003122|0|tructions. express requests except the even theodolites detec| +42413|264079|O|177386.39|1998-05-08|2-HIGH|Clerk#000001078|0|ding to the blithely ironic packages: qui| +42414|623773|F|7110.06|1993-08-01|2-HIGH|Clerk#000003933|0|quickly carefully regular dinos. theodolites sleep foxes. even | +42415|249493|O|44218.38|1997-07-20|1-URGENT|Clerk#000000216|0|ajole carefully slyly unusual dependenc| +42440|697447|O|87695.96|1995-10-17|4-NOT SPECIFIED|Clerk#000004811|0|ing deposits. slyly regular r| +42441|215110|O|184920.14|1996-04-18|4-NOT SPECIFIED|Clerk#000003538|0| foxes. even asymptotes above the ironic accounts are even accounts. | +42442|326776|F|108787.58|1994-03-14|2-HIGH|Clerk#000002374|0| beans x-ray thinly unusual excuses. f| +42443|598286|F|228604.83|1993-06-10|5-LOW|Clerk#000001809|0| quick deposits integrate furious| +42444|138931|F|67508.40|1992-01-06|3-MEDIUM|Clerk#000002332|0|g requests use carefully among the regular requests. deposits ar| +42445|247651|F|245067.89|1993-09-30|5-LOW|Clerk#000004453|0|lly final foxes wake quickly along th| +42446|504982|F|176316.61|1994-09-01|1-URGENT|Clerk#000001009|0|to beans are carefully. furiously unusual | +42447|212648|F|58000.60|1992-11-16|4-NOT SPECIFIED|Clerk#000003588|0|ts engage slyly against the furiously bold requests. express e| +42472|218557|O|40411.51|1995-12-21|2-HIGH|Clerk#000001866|0|e carefully pending foxes are across the ironic acco| +42473|504325|O|71539.68|1995-12-18|3-MEDIUM|Clerk#000002915|0|ccording to the carefully ironic ideas. close, ironic pinto beans cajole furio| +42474|415247|O|11785.20|1996-03-28|4-NOT SPECIFIED|Clerk#000003622|0|al ideas. quickly bold pinto beans| +42475|291017|O|246581.87|1995-07-17|1-URGENT|Clerk#000001652|0|ounts cajole blithely outs| +42476|372319|F|92568.86|1995-01-21|4-NOT SPECIFIED|Clerk#000004979|0|lithely express accounts cajole furiously blithely even pinto bean| +42477|297055|O|190631.87|1995-11-15|3-MEDIUM|Clerk#000000722|0|nic foxes. accounts boost. furiously express dug| +42478|570226|O|169902.15|1996-03-01|2-HIGH|Clerk#000001060|0|wake blithely against the fluffily regular foxes. silently silent packages | +42479|264826|O|14005.79|1997-05-28|5-LOW|Clerk#000004979|0|heodolites integrate instructions. carefully unusual sentimen| +42504|428023|O|122283.94|1997-04-14|5-LOW|Clerk#000004816|0|. furiously pending platelets affix. blithely final dependencies wake| +42505|522185|O|157863.22|1995-08-06|4-NOT SPECIFIED|Clerk#000002273|0| special asymptotes maintain. unusual pinto beans nag ironic| +42506|611260|O|62612.51|1998-06-13|3-MEDIUM|Clerk#000004773|0|uests. bold ideas cajole furiously-- final, pending asymptotes br| +42507|671789|O|208480.39|1998-01-31|5-LOW|Clerk#000004597|0|. quickly pending foxes should affix quickly alongside of the care| +42508|254431|F|199890.77|1993-12-19|5-LOW|Clerk#000001146|0|cajole slyly according to the packages. slyly express accounts x-ray blithely| +42509|457978|O|39066.03|1995-11-07|2-HIGH|Clerk#000004773|0|xes. fluffily regular theodolites atop the regular package| +42510|731383|F|152287.11|1995-02-09|5-LOW|Clerk#000003007|0|ng to the epitaphs are multipliers; ideas haggle fluffily carefully f| +42511|594236|F|367519.31|1992-11-01|2-HIGH|Clerk#000000583|0| of the attainments. furiously even excuses haggle? enticingly pending accoun| +42536|322222|P|200220.91|1995-05-24|4-NOT SPECIFIED|Clerk#000004232|0|ges are final, regular foxes. furiously express gifts sleep| +42537|581929|F|208810.45|1994-07-12|2-HIGH|Clerk#000003937|0|sts after the ironic| +42538|462925|F|195636.06|1993-03-01|2-HIGH|Clerk#000000630|0| deposits. fluffily final dependen| +42539|608947|F|192549.30|1994-10-19|3-MEDIUM|Clerk#000003802|0|ter the final, final deposits. dogged accounts try to affix bl| +42540|60826|F|136035.44|1994-02-16|1-URGENT|Clerk#000003924|0|ual foxes use furiously about the regular accounts. permanently pending packag| +42541|33869|F|176617.20|1993-07-29|4-NOT SPECIFIED|Clerk#000003044|0|. special courts haggle fluf| +42542|730612|O|20892.03|1996-10-14|5-LOW|Clerk#000004281|0|carefully among the quickly even ideas. slyly ironic realms doze according to | +42543|390808|F|241130.68|1993-10-04|5-LOW|Clerk#000002884|0|. final accounts nag furi| +42568|530413|F|119560.01|1994-10-27|1-URGENT|Clerk#000000724|0|bold theodolites. slyly even dinos haggle carefully | +42569|146459|F|67017.53|1992-04-08|4-NOT SPECIFIED|Clerk#000003023|0|ithely silent packag| +42570|35590|O|225218.25|1998-02-17|1-URGENT|Clerk#000002937|0|counts cajole ironi| +42571|404731|F|106697.41|1994-11-04|5-LOW|Clerk#000002064|0|l excuses. permanently silent deposits along the slyly final | +42572|547315|O|340426.45|1997-12-25|2-HIGH|Clerk#000003585|0|ts are. special, even excuses at the| +42573|704290|F|109982.29|1993-03-07|3-MEDIUM|Clerk#000001826|0|he slyly pending foxes. quickly regular foxes cajole fu| +42574|478576|P|43814.09|1995-03-24|4-NOT SPECIFIED|Clerk#000003293|0|. fluffily unusual requests wake slyly blithely final pinto beans. c| +42575|400034|O|77882.46|1997-05-19|2-HIGH|Clerk#000002299|0|jole slyly. pinto beans across the quickly pending dependencies cajole careful| +42600|367322|F|132536.62|1994-11-17|2-HIGH|Clerk#000001854|0|se. slyly unusual deposits are quickly about the express pack| +42601|320380|F|83979.53|1994-06-29|1-URGENT|Clerk#000003114|0|p blithely ironic, final dolphins. somas af| +42602|358618|F|270610.04|1994-11-27|5-LOW|Clerk#000000064|0| even notornis sleep. ironic deposits boost blithely alongside of the speci| +42603|287156|O|202021.64|1996-08-13|1-URGENT|Clerk#000004387|0|r deposits. slyly bold accounts wake| +42604|721252|F|120407.53|1994-09-03|4-NOT SPECIFIED|Clerk#000000789|0|hins sleep slyly car| +42605|562031|O|167044.86|1996-10-03|2-HIGH|Clerk#000004723|0|heodolites are slyly thin packa| +42606|541312|O|256416.96|1995-12-24|3-MEDIUM|Clerk#000001992|0|uests nag. quickly | +42607|301087|O|69695.04|1996-06-10|5-LOW|Clerk#000002311|0|he furiously final packages wake beyond the furiously express pla| +42632|93550|P|275036.41|1995-03-06|1-URGENT|Clerk#000004228|0|otes. pending ideas wake furi| +42633|289253|F|129833.68|1992-12-03|5-LOW|Clerk#000001788|0|requests. asymptotes alongside of t| +42634|721171|O|145102.70|1996-10-26|5-LOW|Clerk#000002430|0|latelets. ruthless, permanent request| +42635|687716|F|106454.92|1995-02-23|2-HIGH|Clerk#000002910|0|ven, express courts wake fu| +42636|189944|O|43036.90|1995-10-16|5-LOW|Clerk#000003058|0|ding to the even, regular packages. quickly ironic packages against the silent| +42637|378706|F|25199.11|1992-10-06|1-URGENT|Clerk#000004006|0|its about the regular dependencies wake quickly abou| +42638|401059|O|28009.97|1996-04-13|1-URGENT|Clerk#000000557|0| theodolites affix quickly. fluffily unusual d| +42639|345980|O|229727.02|1997-12-02|3-MEDIUM|Clerk#000000973|0|ages according to the re| +42664|128572|F|28717.15|1995-01-10|5-LOW|Clerk#000003079|0|quests. enticingly even instructions cajole above t| +42665|129587|O|241021.73|1998-04-15|4-NOT SPECIFIED|Clerk#000000797|0|ptotes. requests across the theo| +42666|706229|F|96274.99|1994-05-06|5-LOW|Clerk#000004966|0|ers. fluffily final theodolites sleep slyly silent asymptotes. pending| +42667|90193|F|204578.69|1993-08-20|5-LOW|Clerk#000003308|0|nding deposits are blithely after the slyly pending theodolites. car| +42668|111187|F|188014.33|1993-04-21|2-HIGH|Clerk#000001234|0|blithely theodolites. quickly final packages about the regular dep| +42669|439423|O|147116.87|1995-06-21|2-HIGH|Clerk#000004757|0|equests. furiously stealthy deposits are fluffily| +42670|103927|F|33098.47|1994-03-09|3-MEDIUM|Clerk#000000798|0|t fluffily express ideas. carefully pending dependencies caj| +42671|699328|F|78862.05|1994-12-31|1-URGENT|Clerk#000004267|0|ounts. slyly regular th| +42696|326335|O|225751.53|1995-12-01|2-HIGH|Clerk#000001761|0|he unusual foxes. pending, careful requests are slyly.| +42697|700348|O|182397.24|1996-08-20|1-URGENT|Clerk#000000268|0|ix quickly. regular, ironic accounts hag| +42698|242386|F|181038.42|1994-10-16|4-NOT SPECIFIED|Clerk#000003334|0|nag quickly about the carefull| +42699|522004|F|89016.30|1992-04-06|2-HIGH|Clerk#000002366|0|ole among the blithely express dependenc| +42700|548581|O|106700.54|1996-10-07|5-LOW|Clerk#000001932|0|. slyly unusual instructions are. carefully regular requ| +42701|219346|F|75779.65|1993-02-20|1-URGENT|Clerk#000000994|0|lly regular dependencies. sile| +42702|296005|F|110001.35|1995-01-05|4-NOT SPECIFIED|Clerk#000003463|0|are blithely. pending, regular accounts integrate furiously be| +42703|204490|F|37951.81|1992-05-26|3-MEDIUM|Clerk#000004561|0|ing the carefully regular| +42728|360709|F|257987.37|1994-12-01|3-MEDIUM|Clerk#000004444|0|wake. regular requests | +42729|179029|O|243285.63|1996-06-23|5-LOW|Clerk#000002306|0|inal, final accounts among| +42730|684887|O|125456.39|1995-06-08|1-URGENT|Clerk#000000993|0|; slyly regular sauternes according to the requests h| +42731|640291|F|110482.83|1993-07-05|4-NOT SPECIFIED|Clerk#000002609|0|ven platelets haggle according to the carefully final foxe| +42732|339197|O|188587.01|1996-05-02|5-LOW|Clerk#000001095|0| detect fluffily bold instructions. furiously ironic p| +42733|123691|F|94905.01|1992-05-10|5-LOW|Clerk#000004855|0|uests. final packages should use. fluffily regular courts wak| +42734|613970|O|35058.07|1996-06-05|4-NOT SPECIFIED|Clerk#000003907|0|usual accounts across the blithely busy asymptotes cajole silently | +42735|483967|F|159006.46|1993-02-06|2-HIGH|Clerk#000000056|0|usly pending deposits cajole furiously packages. carefully| +42760|265907|O|206526.24|1998-06-29|5-LOW|Clerk#000001365|0|pending packages. slyly ironic escapades along the requests haggle care| +42761|597295|O|304498.98|1997-03-07|5-LOW|Clerk#000003757|0| have to use-- slyly qui| +42762|732329|O|98448.10|1998-01-04|3-MEDIUM|Clerk#000002176|0| regular requests around the furiously even deposits kindle ironically bold r| +42763|746777|O|52574.91|1996-02-05|2-HIGH|Clerk#000001764|0| quickly pending decoys nag carefully ironic| +42764|571631|F|138005.00|1992-03-21|1-URGENT|Clerk#000001350|0|lithely special asymptotes after the regu| +42765|636992|F|98851.08|1993-01-03|5-LOW|Clerk#000003876|0|l ideas. slyly express theodolites use among the accounts. regular depo| +42766|421682|O|103368.58|1996-10-22|4-NOT SPECIFIED|Clerk#000002400|0|nusual dolphins. accounts are slyly-- carefully regular foxes| +42767|448456|F|66166.25|1992-06-25|3-MEDIUM|Clerk#000002293|0|press, bold theodolit| +42792|422791|O|214792.99|1997-04-03|2-HIGH|Clerk#000004731|0|ckly silent multipliers doze slyly even packages. blithely regular requests ag| +42793|336358|O|39626.94|1995-09-17|2-HIGH|Clerk#000000186|0|n the blithely pending foxes wake quickly among the instructions. final,| +42794|418382|O|272029.57|1997-10-28|5-LOW|Clerk#000000789|0|aggle closely. packages cajole blithely blithely regular requests. carefully b| +42795|485161|O|129013.68|1997-07-29|3-MEDIUM|Clerk#000003516|0|ow blithely above the hock| +42796|100148|O|238513.97|1996-12-18|3-MEDIUM|Clerk#000003231|0|slyly express theodolites are carefully even ideas. carefully regula| +42797|170749|O|300955.56|1996-01-11|4-NOT SPECIFIED|Clerk#000002316|0|jole special, ironic reques| +42798|261490|O|149134.88|1996-02-26|2-HIGH|Clerk#000004202|0|nis haggle carefully pinto beans| +42799|598873|O|60122.51|1997-02-25|4-NOT SPECIFIED|Clerk#000002800|0|ix about the carefully regular requests. sometimes final | +42824|240994|F|136780.32|1992-08-26|5-LOW|Clerk#000001768|0|s. slyly unusual request| +42825|362846|O|233310.83|1996-08-08|1-URGENT|Clerk#000000026|0|re slyly around the furiously express ideas. ide| +42826|86017|O|133954.24|1998-04-02|4-NOT SPECIFIED|Clerk#000000717|0|lar, express requests. blithely even braids against the unu| +42827|414230|O|188036.05|1996-04-30|5-LOW|Clerk#000000855|0|uests sleep blithely about the final excuses. i| +42828|450452|F|46158.35|1992-06-07|2-HIGH|Clerk#000003714|0|ges are fluffily. slyly even packages believe | +42829|232630|O|82161.31|1997-11-23|4-NOT SPECIFIED|Clerk#000000328|0|encies. carefully even requests alongside of the slyly| +42830|54193|O|182515.51|1996-06-25|1-URGENT|Clerk#000004462|0|s are quickly. blithely unusual warhorses affix of the excuses. acc| +42831|303404|O|298813.23|1997-03-11|3-MEDIUM|Clerk#000004140|0|ular, pending theodolites kindle carefully blithel| +42856|57406|P|266364.29|1995-03-02|2-HIGH|Clerk#000003092|0| pinto beans haggle slyly across the regular packages. carefully express req| +42857|304231|F|168090.86|1992-02-08|2-HIGH|Clerk#000000014|0| asymptotes among the final deposits cajol| +42858|452806|F|218910.02|1992-05-07|2-HIGH|Clerk#000001003|0|ithely special dolphins sleep furiously ag| +42859|36914|O|111914.48|1995-06-15|1-URGENT|Clerk#000003682|0|ole fluffily express excuses. slyly ironic deposits wake carefully| +42860|161446|F|38832.08|1992-01-21|1-URGENT|Clerk#000001224|0|eep above the bravely ironic foxe| +42861|656152|F|140901.02|1993-09-14|5-LOW|Clerk#000001740|0|gainst the dolphins. carefull| +42862|681206|F|139951.80|1993-12-20|5-LOW|Clerk#000002507|0|ss excuses are carefully deposits. regular, regular foxes use. furious| +42863|268891|F|46765.86|1992-04-08|1-URGENT|Clerk#000002708|0|le sometimes ironic dep| +42888|480227|F|219680.73|1993-12-02|2-HIGH|Clerk#000003089|0|ickly pending asymptotes use. slyly even acco| +42889|409954|F|72394.49|1993-12-25|2-HIGH|Clerk#000001612|0|ve the deposits. slyly even foxes shall wake steal| +42890|567461|F|240350.77|1993-10-17|3-MEDIUM|Clerk#000002501|0|pinto beans. furiously final pinto beans about the bold, pending pa| +42891|307960|F|37090.04|1992-05-09|5-LOW|Clerk#000000777|0|final, unusual packages are never furiously pending requests. regular | +42892|128335|F|171186.15|1994-02-27|3-MEDIUM|Clerk#000000245|0|the ironic requests. brave accounts| +42893|660350|O|136595.27|1997-12-23|3-MEDIUM|Clerk#000004368|0|ic pinto beans. tithes detect carefully blithely silent a| +42894|738520|F|149846.25|1993-06-27|3-MEDIUM|Clerk#000003765|0|ctions nag. deposits cajo| +42895|533779|O|176647.93|1996-02-08|2-HIGH|Clerk#000004355|0|ess pinto beans haggle quickly pin| +42920|442979|O|215937.13|1996-11-27|4-NOT SPECIFIED|Clerk#000002438|0|lar, even foxes sleep along the unusual requests. furiously final pin| +42921|641761|O|210965.27|1995-09-06|4-NOT SPECIFIED|Clerk#000000429|0| final requests haggle | +42922|325072|F|137273.11|1992-05-30|1-URGENT|Clerk#000000832|0|ly bold accounts are slyly unusual theodolites. quick| +42923|457678|F|24233.48|1993-05-08|3-MEDIUM|Clerk#000000639|0|re blithely slyly even th| +42924|188798|F|309400.52|1992-04-10|3-MEDIUM|Clerk#000004499|0|onic instructions eat around t| +42925|626572|O|58211.38|1997-06-22|3-MEDIUM|Clerk#000004296|0|carefully pending accounts. quickly reg| +42926|23896|F|132239.11|1992-02-11|2-HIGH|Clerk#000003747|0|requests nag carefully? exp| +42927|341380|O|233499.08|1996-08-16|2-HIGH|Clerk#000000917|0|ully even pinto beans! pendi| +42952|52489|P|118606.56|1995-03-21|3-MEDIUM|Clerk#000002351|0| ironic tithes. carefully ironic packages integrate carefully regular accou| +42953|172481|O|264210.26|1998-06-27|2-HIGH|Clerk#000003615|0|ts serve along the furiously ironic foxes. slyly even| +42954|135286|F|71931.40|1993-05-08|1-URGENT|Clerk#000003990|0|g final, even asymptotes. instructi| +42955|494738|F|138047.97|1993-02-28|4-NOT SPECIFIED|Clerk#000000215|0|quests. silent pains nag slyly along the regular foxes. carefully special pa| +42956|551257|F|13852.78|1993-03-30|5-LOW|Clerk#000001530|0|quests. regular, bold instructio| +42957|215102|F|208153.70|1992-11-10|4-NOT SPECIFIED|Clerk#000002684|0|bold foxes. final package| +42958|207373|O|13698.96|1995-12-03|4-NOT SPECIFIED|Clerk#000004668|0|t theodolites hinder. fluffily regular orbit| +42959|42022|O|46556.30|1996-11-13|1-URGENT|Clerk#000001314|0| to the ironic, ironic accounts. fin| +42984|496333|O|301829.20|1998-02-19|4-NOT SPECIFIED|Clerk#000003277|0|eans haggle fluffily final instructions. fl| +42985|351913|O|50469.92|1998-03-01|4-NOT SPECIFIED|Clerk#000004225|0|eposits boost pending, regular pinto bean| +42986|91624|F|282594.66|1994-09-11|3-MEDIUM|Clerk#000004035|0|al accounts against the slyly final theodolites wake about| +42987|161822|F|4089.41|1994-06-29|5-LOW|Clerk#000003475|0|side of the furious, bold foxes. requests cajole carefully. furiously ironic t| +42988|232369|F|149332.76|1994-07-22|1-URGENT|Clerk#000002623|0|. carefully idle packages along the packages affix silent accounts.| +42989|154771|O|130089.15|1995-09-27|1-URGENT|Clerk#000004672|0|nic, unusual deposits sleep according to the carefu| +42990|229631|O|235719.40|1997-04-28|5-LOW|Clerk#000003415|0|ourts was quickly accounts. unusual excuses | +42991|648851|F|193260.86|1994-05-25|3-MEDIUM|Clerk#000001949|0|mong the blithely careful accounts dazzle blithely regular epitaphs. carefu| +43016|222874|O|295290.62|1998-01-06|4-NOT SPECIFIED|Clerk#000001448|0|thely against the ideas. final, regular foxes across th| +43017|321173|O|154532.63|1997-07-07|5-LOW|Clerk#000000275|0|yly regular accounts. notornis cajole carefully according to t| +43018|197422|P|276348.07|1995-03-22|4-NOT SPECIFIED|Clerk#000000606|0|y foxes. ideas sleep furiously across the furiously regular instructio| +43019|65422|F|331256.18|1993-08-06|3-MEDIUM|Clerk#000004354|0|capades. furiously regular requests across the final deposits sleep fluffily b| +43020|40588|F|139865.13|1993-06-20|5-LOW|Clerk#000000234|0|ges. blithely regular packages wake around the carefully bold the| +43021|401186|F|69634.37|1994-10-11|3-MEDIUM|Clerk#000002748|0|s sleep fluffily after the furiously pending orbits. slyly unus| +43022|220681|F|231090.83|1992-07-26|3-MEDIUM|Clerk#000001656|0|ly unusual requests wa| +43023|224411|F|131049.84|1993-05-21|2-HIGH|Clerk#000001333|0|round the packages b| +43048|673555|O|12895.57|1998-01-07|2-HIGH|Clerk#000000230|0|e blithely across the special requests| +43049|679382|F|170297.17|1993-04-14|1-URGENT|Clerk#000001023|0|ironic theodolites dazzle fluffily blithely pend| +43050|356614|O|305164.42|1997-03-15|3-MEDIUM|Clerk#000004801|0| foxes haggle furiously above the unusual pinto beans. carefully iro| +43051|346351|F|66745.53|1993-12-07|5-LOW|Clerk#000003708|0|even deposits. blithely bold foxes above the slyly regular ide| +43052|350071|F|231130.88|1993-01-23|2-HIGH|Clerk#000001199|0|ully above the carefully express instructions. pending, | +43053|627547|F|34205.92|1993-11-04|1-URGENT|Clerk#000002345|0|rets are furiously about the furiously unusual| +43054|667759|F|20628.63|1993-05-17|2-HIGH|Clerk#000000888|0| final requests. furiously ironic| +43055|20053|F|218176.97|1995-02-02|4-NOT SPECIFIED|Clerk#000003952|0|equests alongside of the ironic, ironic pains boost b| +43080|248470|O|41491.89|1997-05-09|4-NOT SPECIFIED|Clerk#000000197|0|the busy, final instructions. quickly ironic packages ha| +43081|19222|O|118591.48|1997-02-24|3-MEDIUM|Clerk#000000925|0|ily. blithely final theodolites sublate| +43082|536425|O|290181.53|1997-02-20|2-HIGH|Clerk#000004768|0|ng the furiously regular packages run blithely final| +43083|676504|O|164881.58|1997-04-28|3-MEDIUM|Clerk#000004052|0|the ironic packages. express, final dep| +43084|720664|F|297427.77|1993-11-14|4-NOT SPECIFIED|Clerk#000000990|0|nto beans alongside of | +43085|422068|O|175097.11|1998-04-05|5-LOW|Clerk#000001996|0|sleep. ironic deposits nag slyly bold instructions.| +43086|171493|F|185751.52|1993-10-30|2-HIGH|Clerk#000000918|0|es. quickly final courts use r| +43087|12377|O|167274.09|1996-05-30|5-LOW|Clerk#000000200|0|quickly pending theodol| +43112|264043|F|129124.23|1992-10-18|3-MEDIUM|Clerk#000000779|0|t the bold pinto beans. carefully regular| +43113|748819|F|211578.63|1992-04-01|2-HIGH|Clerk#000004028|0|arefully regular theodolites haggle carefully q| +43114|378265|P|153971.68|1995-04-03|2-HIGH|Clerk#000004069|0|press dugouts thras| +43115|473455|F|108128.45|1992-09-28|5-LOW|Clerk#000002142|0|te? furiously special requests use| +43116|605449|F|183406.23|1994-06-28|3-MEDIUM|Clerk#000003928|0|. slyly regular accounts affix against the slyly even | +43117|530950|O|21952.75|1996-07-22|4-NOT SPECIFIED|Clerk#000000167|0|ly express excuses haggle between the blith| +43118|159860|F|55984.65|1994-03-09|5-LOW|Clerk#000002463|0|beans. slyly express foxes haggle. unusual, ironic requests wake. bold| +43119|258715|O|31579.76|1998-01-06|3-MEDIUM|Clerk#000003152|0|counts boost furiously unusual foxes. ironic reque| +43144|452848|F|42225.42|1994-06-16|1-URGENT|Clerk#000001287|0|y regular instructions. quickly regular pinto beans hinder never wi| +43145|738734|O|18116.66|1997-09-13|4-NOT SPECIFIED|Clerk#000003571|0|tructions according to the final courts ar| +43146|398176|F|164147.54|1994-09-12|4-NOT SPECIFIED|Clerk#000000304|0|equests use fluffily. blithely unusual asymptotes use: even | +43147|618913|O|120356.07|1997-11-24|2-HIGH|Clerk#000004980|0| about the accounts nag carefully even packages. fluffily| +43148|308473|F|50342.52|1993-12-08|5-LOW|Clerk#000003434|0|y regular packages. accounts are quickly acco| +43149|504946|O|305822.37|1997-01-05|1-URGENT|Clerk#000004054|0|, final deposits! blithely regular packages about the regu| +43150|371563|O|72946.34|1998-02-04|1-URGENT|Clerk#000002242|0| pinto beans. carefully regul| +43151|327106|O|13976.27|1998-05-08|3-MEDIUM|Clerk#000000949|0|e furiously after the | +43176|162365|F|101551.84|1992-08-21|2-HIGH|Clerk#000003772|0|ously special dolphins. carefully specia| +43177|364033|O|117043.10|1996-08-21|2-HIGH|Clerk#000003250|0|al packages. bold, regular package| +43178|545413|O|49004.34|1997-02-12|5-LOW|Clerk#000002597|0|s lose carefully against the pending p| +43179|229771|O|242403.32|1997-08-01|4-NOT SPECIFIED|Clerk#000002832|0|es haggle. quickly ironic accounts sleep never asympt| +43180|2414|F|189885.16|1994-01-07|1-URGENT|Clerk#000001848|0|ar packages! courts integrate fluffily. blithely regular sentiments sleep ca| +43181|62485|F|22052.65|1993-12-07|3-MEDIUM|Clerk#000004060|0| pending deposits. express packages thrash | +43182|153776|F|328436.15|1992-05-26|5-LOW|Clerk#000000448|0|ckages haggle furiously reg| +43183|747058|F|50480.09|1992-07-03|5-LOW|Clerk#000004722|0|cross the final, special forges. deposits play carefully brave depo| +43208|27784|F|128378.06|1994-04-22|5-LOW|Clerk#000001344|0|l, bold instructions| +43209|439759|O|255755.69|1996-08-29|2-HIGH|Clerk#000003161|0|the furiously unusual accounts. slyly regul| +43210|514024|F|228567.47|1993-12-04|5-LOW|Clerk#000000164|0|pinto beans cajole. furiously unusual requests haggle at the quickly| +43211|695783|O|172966.14|1996-08-01|1-URGENT|Clerk#000003143|0|regular packages are furiously pending ideas. blithely| +43212|17992|O|242930.37|1998-04-26|4-NOT SPECIFIED|Clerk#000002003|0|s. blithely brave instructions nag blithely regu| +43213|124282|F|134001.72|1993-06-27|4-NOT SPECIFIED|Clerk#000000112|0|dencies. blithely regular de| +43214|37004|F|145188.17|1994-01-15|4-NOT SPECIFIED|Clerk#000002583|0| epitaphs integrate after th| +43215|166709|F|48570.97|1992-10-14|4-NOT SPECIFIED|Clerk#000002399|0|ages are above the furiously ironic pinto beans. furiou| +43240|614905|O|241393.20|1997-04-14|1-URGENT|Clerk#000000790|0|es cajole fluffily along the | +43241|452936|O|22943.22|1998-01-26|5-LOW|Clerk#000002202|0|e the blithely final deposits snooze quickly above the furiously unusual in| +43242|730726|F|173866.28|1994-03-16|5-LOW|Clerk#000002593|0|ul asymptotes. slyly unusual deposits ar| +43243|51724|O|94886.60|1998-02-07|5-LOW|Clerk#000000359|0|nic packages must have to haggle instructions. quickly| +43244|72917|F|33792.35|1992-08-07|3-MEDIUM|Clerk#000003911|0|ial, ironic pinto beans boost| +43245|14348|F|241954.04|1992-12-03|3-MEDIUM|Clerk#000001545|0|unusual packages. carefully even i| +43246|386401|F|65720.36|1993-03-10|3-MEDIUM|Clerk#000004963|0|ss, bold instructions. ironic deposits sleep blithe| +43247|734486|F|124725.80|1994-03-20|2-HIGH|Clerk#000001869|0|s the deposits. quickly express foxes run above the carefully ironic| +43272|248086|O|192759.52|1998-02-03|4-NOT SPECIFIED|Clerk#000000960|0|dly express packages w| +43273|305962|F|47251.94|1993-01-10|5-LOW|Clerk#000001782|0|y ironic instructions nag carefully about the slyly sly| +43274|303304|F|229841.29|1993-04-04|3-MEDIUM|Clerk#000004084|0|. unusual deposits are furiously around the furiously ironic deposits-- ruthl| +43275|627670|F|193172.15|1992-04-02|5-LOW|Clerk#000004548|0|packages. slyly bold theodolites are above the instructions. accounts cajole| +43276|473566|F|217108.98|1993-08-23|3-MEDIUM|Clerk#000002215|0|yly unusual requests cajole furiously carefully ironic theodolite| +43277|221629|O|138611.00|1998-03-01|4-NOT SPECIFIED|Clerk#000003761|0|gly final deposits sleep carefully ironic, | +43278|387688|F|166643.31|1994-09-09|3-MEDIUM|Clerk#000001080|0|lyly regular deposits cajole. permanently special deposits cajole furiousl| +43279|609925|F|93369.85|1994-01-12|3-MEDIUM|Clerk#000002875|0| dogged accounts after the blithely ironic accounts play slyly after the| +43304|736046|F|127690.77|1993-01-27|3-MEDIUM|Clerk#000001996|0|l theodolites sleep. unusual,| +43305|218690|O|274191.60|1996-09-17|1-URGENT|Clerk#000003105|0|furiously alongside of the silently ironic requests. requests about | +43306|509317|F|309262.98|1992-07-08|4-NOT SPECIFIED|Clerk#000001105|0|ts may haggle slyly furiously pending instructions. blithely bol| +43307|319300|O|315973.71|1996-10-05|4-NOT SPECIFIED|Clerk#000004611|0|ncies. evenly even instructions are. regular accounts ha| +43308|213488|F|51458.58|1993-05-09|4-NOT SPECIFIED|Clerk#000002359|0|y regular ideas are according to the| +43309|88204|O|45087.52|1995-12-08|5-LOW|Clerk#000000522|0|al asymptotes. ironic accounts sleep fluffily along the pending, fin| +43310|439252|F|15517.07|1994-05-03|4-NOT SPECIFIED|Clerk#000004146|0|lithely silent ideas. furiously specia| +43311|233185|O|321789.83|1996-10-11|5-LOW|Clerk#000003686|0| silent deposits. carefully regular theodolites after the furiously silen| +43336|362485|O|160268.30|1996-04-04|3-MEDIUM|Clerk#000000459|0|ges are fluffily special instructions. furious| +43337|21733|F|96022.47|1994-11-26|5-LOW|Clerk#000004998|0|ests affix carefully. quickly final theodolites| +43338|747358|O|45299.07|1996-03-28|2-HIGH|Clerk#000004317|0| deposits haggle. quickly | +43339|588634|F|33072.71|1994-06-21|1-URGENT|Clerk#000001063|0|s wake blithely blithely special tithes.| +43340|666622|F|95892.16|1994-04-09|3-MEDIUM|Clerk#000004522|0|egular excuses doze furi| +43341|395174|O|229083.55|1998-04-16|2-HIGH|Clerk#000002779|0|reful accounts: quickly regular| +43342|425740|O|106356.46|1996-06-23|4-NOT SPECIFIED|Clerk#000002053|0|ites sleep carefull| +43343|407159|O|297043.12|1998-06-02|5-LOW|Clerk#000001031|0|ar deposits cajole above the slyly regular account| +43368|111488|O|77018.53|1995-08-22|3-MEDIUM|Clerk#000004383|0|nal, regular foxes about the final, ironic packages detect quickly n| +43369|264677|O|279124.11|1996-12-29|3-MEDIUM|Clerk#000002909|0|unts wake carefully against the furiously special ideas. quickly i| +43370|176089|O|152768.78|1996-09-06|1-URGENT|Clerk#000003873|0|ts. ironic, express pinto beans dazzle fluffily under the daringly | +43371|22072|O|257301.38|1996-07-24|3-MEDIUM|Clerk#000003960|0|ously regular theodolites past the bli| +43372|451861|F|136726.66|1993-10-12|2-HIGH|Clerk#000002656|0| the thin instructions. accounts alongside of the ironic, final foxes boost| +43373|647617|O|267482.96|1998-02-18|2-HIGH|Clerk#000003456|0|fluffily bold deposits. slyly final pinto beans above| +43374|473975|O|182102.32|1997-06-19|2-HIGH|Clerk#000002771|0|ckages across the furiou| +43375|335293|O|297277.41|1997-03-24|5-LOW|Clerk#000004836|0|es. special deposits doubt. silent pinto be| +43400|508471|O|82110.85|1996-07-28|5-LOW|Clerk#000001987|0|he fluffily fluffy requests | +43401|371548|F|250645.47|1994-05-16|3-MEDIUM|Clerk#000000376|0| the ideas. special, ironic requests across the bold asymp| +43402|97204|F|17364.06|1992-01-28|1-URGENT|Clerk#000004292|0|e excuses haggle fluffily pending sentime| +43403|206954|F|270357.01|1994-04-23|5-LOW|Clerk#000002750|0|ully silent requests cajole furiously-- slyly pe| +43404|518792|F|94335.10|1995-03-14|1-URGENT|Clerk#000001926|0|unusual requests cajole at the quickly regu| +43405|583124|F|23310.93|1994-07-03|5-LOW|Clerk#000001002|0|hout the regular grouches. even theodolites haggle enticing, unusual ex| +43406|308980|O|157968.27|1997-10-21|1-URGENT|Clerk#000000184|0|nal instructions. carefully regular instructions haggle ruthless| +43407|21577|F|274869.62|1992-01-14|4-NOT SPECIFIED|Clerk#000000013|0|according to the slyly bold theodolites nag quickly | +43432|365122|O|52498.90|1998-05-14|1-URGENT|Clerk#000000387|0|uriously regular instructions may nag doggedl| +43433|83002|F|322420.84|1992-10-13|1-URGENT|Clerk#000004883|0|lyly pending excuses cajole ironic theodolites. theodo| +43434|745312|F|269792.89|1993-10-30|3-MEDIUM|Clerk#000001039|0|foxes are furiously express forges. blithely final dependencie| +43435|690292|F|78221.58|1995-01-31|5-LOW|Clerk#000001944|0| the blithely final asymptotes. quickly regular packages ha| +43436|720358|F|74958.26|1993-11-19|2-HIGH|Clerk#000001668|0|e asymptotes boost slyly carefully express deposits. quickly unusual instructi| +43437|528241|O|197931.82|1996-09-09|1-URGENT|Clerk#000002676|0|ecial excuses affix fu| +43438|381001|F|164542.89|1993-02-14|4-NOT SPECIFIED|Clerk#000003024|0|usly furiously pending requests! pearls haggle fur| +43439|703603|F|66836.10|1994-10-12|5-LOW|Clerk#000001969|0|beans sleep furiously. furiously special| +43464|175387|O|283794.20|1996-01-24|1-URGENT|Clerk#000001537|0|ding dolphins. ironic, bold deposits wake. special theodolites nag slyly | +43465|211400|F|307884.16|1994-07-19|5-LOW|Clerk#000003797|0|lyly after the carefully bold theodolites. bold, unusual packages | +43466|235765|O|127187.46|1998-01-30|3-MEDIUM|Clerk#000003477|0|nstructions along the special requests haggle furiously regu| +43467|228761|F|43617.08|1994-07-26|1-URGENT|Clerk#000001643|0|efully pending notornis. furiously express accounts wake fluffily about the| +43468|272341|O|108214.13|1997-12-05|1-URGENT|Clerk#000002622|0|ecial deposits use furiously. furiously| +43469|723289|F|235306.57|1994-12-28|1-URGENT|Clerk#000004870|0|ironic deposits sleep carefully even pa| +43470|296854|F|55929.72|1995-02-21|5-LOW|Clerk#000003912|0|inal, express packages. regular deposits against the pending instructions| +43471|202799|F|298371.57|1993-04-25|4-NOT SPECIFIED|Clerk#000004064|0|ackages sleep furiousl| +43496|428221|F|229714.38|1992-11-11|1-URGENT|Clerk#000000090|0|iously unusual pinto beans use furiously slow theodolites. p| +43497|81760|F|163780.08|1993-07-09|3-MEDIUM|Clerk#000000949|0|t above the finally enticing p| +43498|120536|F|86516.41|1993-05-08|5-LOW|Clerk#000000173|0|ly ironic instruction| +43499|83512|F|287077.83|1993-05-19|4-NOT SPECIFIED|Clerk#000003324|0|ake carefully regular deposits. packages boost according to the regular, regul| +43500|314305|O|103232.53|1997-10-27|3-MEDIUM|Clerk#000001119|0|foxes sleep furiously. furiously regular accounts | +43501|270307|P|343216.74|1995-05-31|2-HIGH|Clerk#000002964|0|oxes boost blithely brave deposits. pending | +43502|292562|O|58026.62|1996-10-05|3-MEDIUM|Clerk#000000539|0|ideas wake. special, ironic foxes boost under the bl| +43503|74557|F|204403.47|1994-10-04|3-MEDIUM|Clerk#000004156|0| regular accounts are furiously furiously unusual packages| +43528|569653|F|207684.80|1993-11-11|5-LOW|Clerk#000002194|0| accounts. carefully bold frays de| +43529|379723|F|209889.41|1994-02-15|4-NOT SPECIFIED|Clerk#000003475|0| around the silent dinos. even deposits after | +43530|237622|F|26825.55|1993-03-13|4-NOT SPECIFIED|Clerk#000004962|0|ic deposits are dolphins. quic| +43531|704090|O|17427.60|1998-05-26|3-MEDIUM|Clerk#000000683|0|ar, final ideas wake about the bravely final deposits. furio| +43532|129310|O|206626.49|1998-07-04|1-URGENT|Clerk#000003192|0|ckages are blithely. accounts eng| +43533|546865|O|199107.52|1997-03-29|3-MEDIUM|Clerk#000001298|0| excuses hinder blithely about the express ideas-- furiously speci| +43534|653209|F|179117.23|1993-03-26|5-LOW|Clerk#000004295|0|furiously? final excuses cajole carefully thinly even pinto beans. quickl| +43535|716362|O|167754.54|1995-08-03|1-URGENT|Clerk#000000020|0| furiously special accounts. bold, regular platelets are sly| +43560|117245|O|33988.25|1996-08-20|5-LOW|Clerk#000003637|0|eans wake carefully blithely unusual theodolite| +43561|274465|F|23999.88|1993-11-17|1-URGENT|Clerk#000000616|0|ully final platelets detect| +43562|404161|F|164542.11|1993-07-19|3-MEDIUM|Clerk#000001284|0|ronic theodolites wake furiously across the foxes. finally even requests nag f| +43563|702190|F|132987.97|1995-02-28|3-MEDIUM|Clerk#000000256|0|uests boost fluffily carefully| +43564|441794|O|152495.07|1996-07-08|3-MEDIUM|Clerk#000000802|0|y silent foxes. pinto beans acc| +43565|231367|F|278274.82|1993-11-17|1-URGENT|Clerk#000000274|0|ven sauternes are after th| +43566|567622|O|66046.21|1998-04-28|3-MEDIUM|Clerk#000003970|0|nusual theodolites. pending requests are. car| +43567|638|O|156388.07|1996-12-06|3-MEDIUM|Clerk#000003772|0| even asymptotes according to the blithely r| +43592|217421|F|201266.83|1992-03-23|5-LOW|Clerk#000004975|0|e furiously express dependencies aff| +43593|182662|O|99996.70|1997-12-29|4-NOT SPECIFIED|Clerk#000000633|0| ironic, regular platelets are blithely along the fluffil| +43594|233708|F|100211.69|1994-11-25|3-MEDIUM|Clerk#000002909|0|lly silent accounts nag about the carefully regular pack| +43595|167344|O|137615.01|1995-10-25|4-NOT SPECIFIED|Clerk#000000818|0| regular dolphins nag about the final pinto beans. requests are quickly; ru| +43596|38954|F|193223.19|1993-06-13|1-URGENT|Clerk#000003993|0| quickly ironic deposits maintain | +43597|686059|F|154568.14|1992-08-18|3-MEDIUM|Clerk#000000915|0|tructions sublate against the blithely bol| +43598|88639|O|263622.66|1997-03-04|5-LOW|Clerk#000000533|0| beans. thinly silent ideas doze. unusual, bold deposits haggle carefull| +43599|244699|O|86709.54|1996-11-11|1-URGENT|Clerk#000002395|0|round the even ideas promis| +43624|399034|O|201476.28|1996-10-30|5-LOW|Clerk#000004331|0|usual theodolites are. pendin| +43625|33337|O|241655.27|1995-12-26|5-LOW|Clerk#000000397|0|leep never. carefully final packages cajole carefully along the regular, fu| +43626|15538|O|93800.49|1998-05-21|3-MEDIUM|Clerk#000003991|0|ccounts wake according to the ironic, thin pinto beans; blithely final pinto | +43627|130640|O|203338.77|1995-10-09|2-HIGH|Clerk#000000206|0| slyly according to the quickly| +43628|406261|F|315373.58|1994-11-29|1-URGENT|Clerk#000000016|0|r requests wake boldly regular theodolites. slyly regular pinto beans | +43629|4942|F|293582.28|1992-01-19|4-NOT SPECIFIED|Clerk#000000202|0| foxes boost across the slyly ex| +43630|546203|F|72578.86|1994-11-28|1-URGENT|Clerk#000002136|0|e quickly. regular ex| +43631|32629|P|113714.31|1995-05-04|2-HIGH|Clerk#000004930|0|ly final foxes nag slyly. busy asymptotes unwind furious| +43656|127619|O|223171.63|1997-12-15|3-MEDIUM|Clerk#000003257|0|tegrate quick requests. quickly final ideas nag always against the blithely i| +43657|636575|F|37419.30|1993-08-07|3-MEDIUM|Clerk#000003811|0|sleep slyly fluffily silent deposits. never| +43658|162875|F|61707.19|1992-11-02|5-LOW|Clerk#000002163|0|ffily final foxes are slyly. even asymptotes use f| +43659|676507|O|137704.84|1997-10-08|2-HIGH|Clerk#000001929|0|quests. even theodolites haggle blithely according to the regular ac| +43660|21566|O|94370.59|1997-03-21|1-URGENT|Clerk#000000405|0|gular asymptotes across the quick accounts cajole| +43661|193841|F|281026.42|1992-12-28|4-NOT SPECIFIED|Clerk#000003462|0|s cajole-- carefully bold packages sleep ti| +43662|628508|F|225682.21|1993-07-15|3-MEDIUM|Clerk#000001983|0|, bold packages. carefully ironic exc| +43663|322835|F|164286.63|1994-06-02|1-URGENT|Clerk#000003338|0| ironic accounts cajole| +43688|382154|O|279936.53|1997-11-09|5-LOW|Clerk#000001195|0|tions. final, regular requests doze ab| +43689|609367|F|249017.10|1995-02-02|1-URGENT|Clerk#000002571|0| slyly even asymptotes. express, thin pains haggle slyly. instructions sleep | +43690|356449|F|125570.20|1993-06-12|2-HIGH|Clerk#000003092|0|sts could cajole. quickly final d| +43691|559574|O|96019.32|1998-01-06|4-NOT SPECIFIED|Clerk#000001719|0|uthless packages affix above | +43692|499273|O|229124.72|1996-03-22|3-MEDIUM|Clerk#000000060|0|s sleep along the furiously stealthy instructions. silent, bold d| +43693|273545|F|67765.61|1992-06-16|2-HIGH|Clerk#000001416|0|quickly express instructions are about the | +43694|707372|O|89969.77|1995-06-06|5-LOW|Clerk#000002967|0|n packages. packages above the furiously final requests haggle caref| +43695|542798|O|105032.17|1996-05-03|2-HIGH|Clerk#000004712|0| ideas. ironic ideas sub| +43720|551458|F|42764.67|1994-06-30|5-LOW|Clerk#000001998|0|ng packages. slyly express braids hagg| +43721|595741|O|239893.31|1996-10-10|5-LOW|Clerk#000004436|0| carefully ironic requests. bl| +43722|112649|O|212258.49|1998-03-06|5-LOW|Clerk#000002893|0|endencies are slyly. slyly bold pac| +43723|288970|P|196300.40|1995-03-28|5-LOW|Clerk#000000489|0|e packages boost carefully slyly ex| +43724|464068|O|276516.52|1996-10-05|2-HIGH|Clerk#000001104|0| even packages thrash blithely beside the | +43725|323950|F|39357.57|1994-10-17|4-NOT SPECIFIED|Clerk#000001632|0|foxes. fluffily daring pinto beans sleep. final packages boost caref| +43726|356954|F|62905.61|1995-01-13|5-LOW|Clerk#000003863|0|d furiously. ironic pinto bean| +43727|69019|O|37277.60|1998-07-30|5-LOW|Clerk#000004181|0|instructions sleep carefully along the slyly regul| +43752|491143|O|357133.26|1998-01-30|3-MEDIUM|Clerk#000002546|0|ng the carefully unusual foxes. ideas mold quickly| +43753|133754|O|132404.25|1997-12-31|5-LOW|Clerk#000004447|0|y express instructions cajole slyly after the slyly final reque| +43754|249497|O|64169.69|1996-04-23|2-HIGH|Clerk#000002055|0|carefully after the r| +43755|38734|F|51661.86|1994-05-30|4-NOT SPECIFIED|Clerk#000003947|0| above the blithe, special accounts. fluffily regular accounts | +43756|721870|F|174342.93|1992-05-21|2-HIGH|Clerk#000003382|0|ctions are carefully silent ideas. final ex| +43757|457253|O|47409.53|1995-09-02|2-HIGH|Clerk#000002661|0|ses according to the slyly regular patterns wake against the furi| +43758|543425|O|86262.07|1998-02-17|5-LOW|Clerk#000000425|0|Tiresias along the | +43759|585988|O|118591.65|1997-07-16|5-LOW|Clerk#000000752|0|p the silent deposits. silent, permanent packages above the | +43784|437600|O|113416.30|1997-04-14|3-MEDIUM|Clerk#000001823|0|ajole according to the carefully regular foxes. slyly | +43785|233386|F|17059.91|1994-08-28|1-URGENT|Clerk#000002762|0| somas haggle slyly. special, blithe warthogs x-ray blithely depen| +43786|740707|F|86172.40|1993-09-23|4-NOT SPECIFIED|Clerk#000003420|0|ests are across the even ideas. hockey players haggle upon the final | +43787|531833|F|89822.83|1994-07-04|2-HIGH|Clerk#000001073|0|hely silent account| +43788|12262|O|1206.59|1996-05-05|4-NOT SPECIFIED|Clerk#000004675|0| regular, regular dependencies across the deposits nag according to| +43789|583478|F|60672.91|1992-07-23|3-MEDIUM|Clerk#000000744|0| quickly pending theodolites sleep. blithely| +43790|263581|O|71428.28|1996-12-06|5-LOW|Clerk#000000281|0|quests. even packages wake. express packages haggle blith| +43791|502115|F|69652.80|1994-12-16|4-NOT SPECIFIED|Clerk#000000183|0|blithely even packages boost slyly. furiously regular packages snooze| +43816|46151|F|70685.26|1992-11-06|4-NOT SPECIFIED|Clerk#000004617|0|totes. foxes sleep quickly even packa| +43817|146737|F|1709.16|1995-01-15|4-NOT SPECIFIED|Clerk#000003878|0|nstructions. deposits wake furiously carefully unusual p| +43818|187882|F|133918.40|1992-12-11|1-URGENT|Clerk#000002663|0| boost blithely according to the accounts. blithely special orbits w| +43819|214439|O|300141.88|1998-03-21|4-NOT SPECIFIED|Clerk#000001670|0|deas. fluffily special packages haggle blithel| +43820|313829|O|121285.87|1998-01-11|4-NOT SPECIFIED|Clerk#000002265|0|xcuses kindle carefully: fluffily final pi| +43821|521410|O|40747.45|1997-08-06|5-LOW|Clerk#000001759|0|pinto beans across the requests cajol| +43822|319648|O|247416.14|1996-02-11|4-NOT SPECIFIED|Clerk#000004784|0|uriously daring theodolites against the blithely ironic deposits detect qui| +43823|60838|O|71236.25|1996-08-27|3-MEDIUM|Clerk#000001105|0|ns wake accounts. blithely unusual instructions unwind carefully sil| +43848|224896|O|241009.70|1998-03-29|1-URGENT|Clerk#000001606|0| quickly ironic sheaves wake blithely against th| +43849|554945|F|192082.17|1994-06-19|4-NOT SPECIFIED|Clerk#000003861|0|lar theodolites mold express, express dolphins. slyl| +43850|705511|F|97098.57|1992-12-06|2-HIGH|Clerk#000004225|0|y regular accounts. slyly regular accounts eat after the furious| +43851|12833|F|147607.48|1994-11-16|5-LOW|Clerk#000003754|0|affix furiously regular courts. packages wak| +43852|429190|F|279763.90|1994-01-26|5-LOW|Clerk#000003051|0|ress theodolites wake | +43853|641410|O|269857.06|1998-06-16|4-NOT SPECIFIED|Clerk#000002895|0|ously final packages! regular, ironic requests across the carefully fluffy | +43854|419723|F|35438.59|1992-09-30|2-HIGH|Clerk#000002770|0|ironic instructions. bold, f| +43855|527324|O|295642.36|1998-04-21|5-LOW|Clerk#000003418|0|ess, special pinto beans. carefully r| +43880|720964|F|115372.70|1992-10-20|5-LOW|Clerk#000001001|0|s solve. carefully ironic deposits sleep above the| +43881|212779|F|276795.01|1993-02-05|3-MEDIUM|Clerk#000004012|0|y regular attainments. pinto beans thrash carefully. fur| +43882|168742|F|203078.45|1992-12-22|5-LOW|Clerk#000001184|0|he carefully blithe requests | +43883|282131|F|113926.26|1992-10-14|2-HIGH|Clerk#000003615|0|wake furiously furiously final asymptotes. silently unusual deposits| +43884|272548|O|26546.50|1998-07-22|1-URGENT|Clerk#000000393|0|pinto beans against| +43885|444692|O|117760.09|1996-05-20|2-HIGH|Clerk#000004417|0|blithely even warhorses. slyly regular requests along the bold, silent| +43886|178744|F|223571.29|1994-08-17|3-MEDIUM|Clerk#000001116|0|ccording to the regular packages: slyly even packages sub| +43887|393571|O|43103.79|1997-03-04|4-NOT SPECIFIED|Clerk#000001960|0|y instructions. fluffily bold requests sle| +43912|476197|O|171562.00|1997-01-02|3-MEDIUM|Clerk#000002213|0| final asymptotes. carefully silent a| +43913|188641|O|64256.91|1998-02-22|3-MEDIUM|Clerk#000003180|0|un slyly-- instructions haggle around the unusual accoun| +43914|210290|O|6715.42|1996-09-25|1-URGENT|Clerk#000004613|0|rint stealthily courts. ironic excuses are. blithely ironic pinto b| +43915|328885|O|93968.67|1998-02-14|1-URGENT|Clerk#000000360|0|ckages run silently across| +43916|36919|O|173458.95|1998-03-08|3-MEDIUM|Clerk#000002537|0| the carefully special ideas. slyly express depend| +43917|219533|O|201664.42|1996-06-14|1-URGENT|Clerk#000004136|0|regular, unusual packages wake finally. requests among the idl| +43918|429616|F|105974.67|1993-06-07|3-MEDIUM|Clerk#000003865|0|ular accounts wake. stealthily pending theodolites use against the b| +43919|283907|O|296687.49|1995-09-29|1-URGENT|Clerk#000004474|0| affix carefully slyly bold foxes. even| +43944|120169|O|199584.54|1997-03-04|1-URGENT|Clerk#000004024|0|ter the silent theodolites sleep | +43945|678664|F|239185.50|1992-10-06|5-LOW|Clerk#000002963|0|. slyly express requests wake slyly slow, express foxes. quickly unus| +43946|275035|O|225231.77|1995-09-13|2-HIGH|Clerk#000002842|0|nstructions nag slyly. slyly ironic packages wake furiously above the furiousl| +43947|232603|F|288297.17|1992-03-14|3-MEDIUM|Clerk#000003144|0|eans; final, regular ideas boost furiously furiousl| +43948|341890|O|162780.46|1996-10-11|2-HIGH|Clerk#000003998|0|special, regular hockey players sleep deposits. | +43949|366259|F|323240.57|1994-06-08|5-LOW|Clerk#000004023|0|bold instructions haggle according to the fin| +43950|451024|O|236282.61|1997-01-07|1-URGENT|Clerk#000000987|0|tions run according to the fur| +43951|90938|O|175988.11|1996-11-28|5-LOW|Clerk#000002213|0|ages sleep alongside of the final packages. s| +43976|642091|F|232684.18|1992-12-02|4-NOT SPECIFIED|Clerk#000003493|0|gle. pending, special grouches sleep slyly | +43977|617779|F|66522.55|1992-05-02|1-URGENT|Clerk#000004738|0|ts wake slyly across the furiously | +43978|735967|F|144626.70|1993-11-27|1-URGENT|Clerk#000001624|0|egular foxes cajole f| +43979|367327|F|75629.78|1993-02-24|3-MEDIUM|Clerk#000003852|0|al courts cajole across the flu| +43980|392513|F|146195.75|1993-06-24|4-NOT SPECIFIED|Clerk#000004832|0|es affix blithely. | +43981|709528|F|44027.45|1994-05-19|5-LOW|Clerk#000004883|0|olphins. ironic, ironi| +43982|12509|F|90215.64|1993-08-12|5-LOW|Clerk#000003146|0|along the carefully regular deposits nag about the furi| +43983|234856|O|79443.89|1997-01-01|2-HIGH|Clerk#000002701|0|totes. packages integrate carefully unusual packages. final, final ideas cajol| +44008|694466|O|147389.25|1998-02-06|2-HIGH|Clerk#000001293|0| wake fluffily about the pending excuses? flu| +44009|383392|P|180302.96|1995-04-17|5-LOW|Clerk#000001330|0|eposits cajole blithely about the ironic requests. slyly ironic | +44010|399553|O|154684.52|1996-02-17|2-HIGH|Clerk#000002896|0|ar, ironic instructions maintain blithely silent sheaves. furiously brave pack| +44011|519929|F|131453.09|1993-07-01|2-HIGH|Clerk#000002057|0|s haggle furiously against| +44012|194402|O|188975.22|1998-05-09|4-NOT SPECIFIED|Clerk#000001593|0|egular accounts wake fur| +44013|301918|O|194402.03|1997-11-20|4-NOT SPECIFIED|Clerk#000000642|0|to the slyly even foxes are carefully furiously iron| +44014|580489|F|191415.08|1993-05-16|3-MEDIUM|Clerk#000001585|0|at along the regular asymptotes. carefully ironic platelets mold| +44015|270791|F|149338.00|1993-01-26|5-LOW|Clerk#000003134|0|kly ironic requests under the regular platelets use besides the regular, fina| +44040|178561|F|199767.87|1994-06-05|5-LOW|Clerk#000002402|0|gle furiously. ideas wake furiously except the slyly special theodo| +44041|293560|F|173791.89|1993-05-24|4-NOT SPECIFIED|Clerk#000004087|0|. final excuses nag. express | +44042|338506|F|337566.35|1993-08-07|1-URGENT|Clerk#000004499|0|le. fluffily unusua| +44043|492829|O|160465.34|1996-01-25|5-LOW|Clerk#000000025|0| furiously unusual pinto beans. special accounts cajole accounts. regu| +44044|695672|F|55341.47|1992-03-14|3-MEDIUM|Clerk#000003378|0|ts cajole carefully reg| +44045|408487|O|103797.29|1996-07-04|1-URGENT|Clerk#000004805|0|unts: even packages use closely. iro| +44046|686392|O|257941.25|1995-05-25|5-LOW|Clerk#000004125|0|e. blithely ironic courts affix accounts. quic| +44047|429379|O|247025.23|1997-12-21|1-URGENT|Clerk#000001600|0|ress never final packages. quickly regular requests print sile| +44072|53278|F|82988.11|1993-08-04|3-MEDIUM|Clerk#000002622|0|lar requests affix above the regular ideas. blithely ironic deposit| +44073|666325|O|123057.37|1995-11-23|1-URGENT|Clerk#000004916|0| packages sleep carefully carefully ironi| +44074|649801|O|270989.08|1998-03-04|3-MEDIUM|Clerk#000002862|0|ccounts wake ironically carefully dogged packages. furiously regular ideas| +44075|426898|O|64080.07|1995-09-30|4-NOT SPECIFIED|Clerk#000000783|0|ourts wake quickly carefully even packages. furiou| +44076|359036|O|7773.50|1996-12-26|5-LOW|Clerk#000000384|0|ithely even accounts. foxes nag except the | +44077|563197|O|231658.71|1997-08-06|4-NOT SPECIFIED|Clerk#000003632|0|y along the sometimes enticing instructions. | +44078|639410|F|34428.30|1994-05-27|3-MEDIUM|Clerk#000004629|0|lets integrate slyly slyly regula| +44079|556175|O|293887.50|1997-01-06|4-NOT SPECIFIED|Clerk#000003141|0|deas. close, ironic pinto beans cajole furiously. ironic, bold pinto beans dou| +44104|381419|O|105271.01|1997-01-25|4-NOT SPECIFIED|Clerk#000001176|0|uriously ironic ideas-- quickly careful requests haggl| +44105|244417|F|176072.11|1992-09-02|2-HIGH|Clerk#000004753|0|ep. accounts haggle. quickly ironic deposits engage. always even foxes| +44106|154006|F|58533.77|1993-02-20|1-URGENT|Clerk#000001242|0|lly along the requests. requests according to the packages nag slyly furi| +44107|99491|O|92743.86|1998-04-08|1-URGENT|Clerk#000004671|0|across the daringly final packages. permanent dependencies believe | +44108|392659|F|263387.39|1992-05-29|3-MEDIUM|Clerk#000001243|0|nag carefully furiously ruthless platelets. b| +44109|153445|O|187078.27|1995-09-12|3-MEDIUM|Clerk#000000792|0|r platelets nag above the permanent packages. slyly regular account| +44110|422999|O|90781.60|1995-11-15|3-MEDIUM|Clerk#000000124|0|xpress instructions: regular orbits nag final | +44111|92002|F|144592.92|1992-08-14|3-MEDIUM|Clerk#000003399|0|e slyly final asymptote| +44136|495211|F|183279.15|1994-06-12|2-HIGH|Clerk#000002375|0|ely regular deposits use silent, i| +44137|260317|F|363228.74|1994-03-30|5-LOW|Clerk#000000315|0|eve across the special, special depos| +44138|377791|O|178987.14|1998-08-01|1-URGENT|Clerk#000001189|0|ronic warthogs. carefully final pinto beans detect. deposits wake about the s| +44139|1102|O|41091.12|1996-10-17|1-URGENT|Clerk#000000245|0| the express, pending requests wake at t| +44140|492944|F|13587.86|1994-03-12|5-LOW|Clerk#000001163|0| the furiously unusual accounts. furiously express r| +44141|402680|O|296638.78|1997-06-29|1-URGENT|Clerk#000003644|0|nts. carefully silent accou| +44142|577027|O|158850.66|1997-11-15|2-HIGH|Clerk#000000422|0|ke furiously. blithely final pinto beans near the| +44143|564023|F|160650.74|1994-08-11|4-NOT SPECIFIED|Clerk#000001261|0| beans believe carefully among the doggedly regular theodolites. slyly silen| +44168|270817|F|152783.46|1992-08-06|2-HIGH|Clerk#000000892|0|uriously fluffily pending instructions. quietly pending packages affix; slyly| +44169|599294|F|257690.61|1992-12-14|4-NOT SPECIFIED|Clerk#000004709|0|inal, bold packages | +44170|567743|O|154500.66|1997-09-28|3-MEDIUM|Clerk#000002515|0| around the furiously unusual theodolites. blithely pending deposits sl| +44171|547219|F|263580.23|1992-10-25|5-LOW|Clerk#000003157|0|rmanent asymptotes. carefully regular packages| +44172|585946|O|293540.22|1996-10-27|3-MEDIUM|Clerk#000001193|0|ong the permanently regular asymptotes. ironic, iro| +44173|463205|F|90828.89|1993-07-07|1-URGENT|Clerk#000004721|0| regular, bold excuses. furiously unusual excuses boost ideas. furious| +44174|75905|F|191035.80|1993-06-14|1-URGENT|Clerk#000000239|0|eposits. quickly ironic foxes cajole furiously quickly b| +44175|734393|F|191365.73|1993-05-03|1-URGENT|Clerk#000004526|0|. regularly regular pinto beans boost fur| +44200|178261|O|160606.21|1997-11-24|3-MEDIUM|Clerk#000002390|0|closely ironic frays nag. carefully bold packages are. regular, blithe p| +44201|509110|O|155246.32|1998-01-17|5-LOW|Clerk#000002921|0|ill cajole fluffily. quickly regular theodolites wake fluffily. slyl| +44202|604370|O|261936.42|1997-01-07|1-URGENT|Clerk#000004546|0|inal foxes. even, ironic| +44203|396233|F|50772.10|1992-02-15|4-NOT SPECIFIED|Clerk#000002841|0|heaves across the blithely even accounts sle| +44204|221935|O|2553.94|1995-08-13|2-HIGH|Clerk#000000501|0| ironic accounts. furiously even Tiresias d| +44205|309595|O|218670.37|1996-08-29|4-NOT SPECIFIED|Clerk#000002530|0| ironic, special accounts are. ironic platelets | +44206|608002|F|187775.45|1993-09-27|5-LOW|Clerk#000001025|0|ggle. furiously pending pearls are slyly slyly even| +44207|656719|F|432876.63|1994-01-17|2-HIGH|Clerk#000003721|0|. regular, even sheaves cajole-- b| +44232|444019|F|266878.92|1993-07-29|1-URGENT|Clerk#000003331|0|le special deposits. special, bold deposits alongside of the fl| +44233|115583|O|322123.68|1997-03-12|4-NOT SPECIFIED|Clerk#000004647|0|y special instructions. bold, regular requests run against the notornis. bli| +44234|87361|F|31892.90|1992-08-06|2-HIGH|Clerk#000003154|0|mptotes. foxes believe slyly a| +44235|504266|O|68594.52|1997-12-17|1-URGENT|Clerk#000001444|0|heodolites among the even, ironic foxes integrate among| +44236|187918|F|98470.21|1994-04-06|3-MEDIUM|Clerk#000003946|0|ges sleep blithely p| +44237|62416|O|118388.36|1997-12-31|5-LOW|Clerk#000004523|0|y final requests. slyly final theodolites haggle fluffily alongside of| +44238|524302|F|108231.77|1994-12-04|2-HIGH|Clerk#000000545|0|iously ironic pinto beans. slyly pending packages x-ray according to the| +44239|173854|F|251025.88|1994-11-20|1-URGENT|Clerk#000004520|0|ts on the even accounts wake carefully pending accounts. | +44264|712303|O|323835.57|1996-02-12|4-NOT SPECIFIED|Clerk#000003098|0|ts haggle final, expr| +44265|157996|F|116455.08|1992-04-01|2-HIGH|Clerk#000002599|0|lets. carefully ironic| +44266|411007|O|290506.53|1995-08-25|2-HIGH|Clerk#000004835|0|ns detect. blithely regular sentiments haggle silently closely | +44267|272369|F|190926.90|1994-04-26|2-HIGH|Clerk#000001813|0|s cajole furiously furiously express deposit| +44268|453637|F|88146.06|1994-07-02|3-MEDIUM|Clerk#000002433|0|of the express patterns cajole to the carefully r| +44269|494369|O|73208.52|1997-05-17|5-LOW|Clerk#000001599|0|e the slyly even requests: quickly regular excuses nag quietly against the | +44270|357251|O|80114.80|1996-12-03|2-HIGH|Clerk#000001564|0|beans boost furiously| +44271|559393|O|109749.08|1998-01-10|1-URGENT|Clerk#000004802|0|he slyly regular deposits. silent ideas solve a| +44296|437339|F|202137.42|1993-03-14|1-URGENT|Clerk#000002672|0|ithely regular deposits. ironic foxes boost| +44297|350077|O|195647.83|1995-09-25|3-MEDIUM|Clerk#000001182|0|ccounts run blithely blithely quick accounts. fluffily s| +44298|720355|F|141252.76|1994-08-28|3-MEDIUM|Clerk#000003585|0|pendencies are. ideas cajole fluffily after the plate| +44299|475735|O|97967.72|1997-04-04|2-HIGH|Clerk#000002800|0|ake carefully alongside of the regular, special dependencies. unus| +44300|676864|F|233152.01|1993-09-28|2-HIGH|Clerk#000003567|0|osits engage. furiousl| +44301|36397|F|249667.10|1994-04-21|2-HIGH|Clerk#000000936|0|regular dolphins integrate slyl| +44302|456314|O|56562.92|1996-08-07|1-URGENT|Clerk#000004811|0|ncies alongside of the| +44303|509197|O|238619.25|1996-04-01|1-URGENT|Clerk#000002350|0|ole blithely beneath the furiousl| +44328|543323|O|91735.68|1997-08-04|3-MEDIUM|Clerk#000001871|0|ular packages; pinto beans wake slyly. busy instructions | +44329|368192|O|187430.42|1996-10-17|1-URGENT|Clerk#000002442|0| quickly ironic instruc| +44330|688672|O|202152.93|1996-03-03|2-HIGH|Clerk#000001742|0|ideas. regular deposits alongside of| +44331|493526|O|143892.92|1995-09-13|4-NOT SPECIFIED|Clerk#000004385|0|ests haggle above the final theodolites. blithely bold req| +44332|425888|O|52450.52|1996-01-25|1-URGENT|Clerk#000001809|0|deposits. furiously regular frets above the r| +44333|633236|F|26645.84|1992-08-26|3-MEDIUM|Clerk#000000721|0|st the quickly thin accounts. slyly ironic acc| +44334|293635|F|143011.02|1993-06-28|1-URGENT|Clerk#000002416|0| slyly final foxes. ironic packages are sly| +44335|92995|F|173176.87|1992-08-09|4-NOT SPECIFIED|Clerk#000001342|0|, ironic courts. special deposits according to the even instruction| +44360|684889|F|121658.12|1995-02-16|5-LOW|Clerk#000003719|0|ely pending accounts boost quickly ironic deposits. fluffily pending pack| +44361|672767|F|194268.56|1992-12-19|5-LOW|Clerk#000004340|0|ic sentiments wake alongsid| +44362|188134|F|54155.47|1992-01-18|1-URGENT|Clerk#000000708|0|ding deposits haggle slyly against the permanent asymptote| +44363|696877|O|59717.06|1995-10-31|1-URGENT|Clerk#000000057|0|oxes. blithely special accounts sleep alongside of the bl| +44364|397355|F|178800.16|1994-06-22|3-MEDIUM|Clerk#000003327|0|carefully at the foxes. furiously regular| +44365|334810|O|194400.46|1996-05-21|4-NOT SPECIFIED|Clerk#000003632|0|s above the silent requests boost slyly above the carefully express packag| +44366|641791|F|149848.40|1992-11-25|2-HIGH|Clerk#000004256|0|olites poach carefully pen| +44367|70691|F|299553.58|1992-08-28|5-LOW|Clerk#000002315|0|press pinto beans about the | +44392|101188|O|279624.54|1997-05-25|3-MEDIUM|Clerk#000004793|0|lar deposits are blithely ironic, even accoun| +44393|407038|F|42471.67|1993-05-10|2-HIGH|Clerk#000000837|0|uctions across the final excuses are blithely accounts. carefully final de| +44394|313477|F|177709.08|1992-06-02|3-MEDIUM|Clerk#000001491|0|y regular dependencies. express, even instructions nag furiously. regula| +44395|574738|O|149901.33|1998-03-08|4-NOT SPECIFIED|Clerk#000000611|0|lly special packages impress fluffily above the furiousl| +44396|369772|F|281249.23|1993-03-28|4-NOT SPECIFIED|Clerk#000003642|0| platelets are blithe| +44397|246901|O|93282.23|1995-11-03|4-NOT SPECIFIED|Clerk#000001079|0|e instructions sleep regular, special instructions? blithely ironic pinto b| +44398|638407|F|211379.37|1994-01-27|1-URGENT|Clerk#000004089|0| use above the accounts. foxes across the special accounts c| +44399|188779|P|245762.35|1995-02-27|1-URGENT|Clerk#000001828|0|ut the carefully even packages. quietly s| +44424|291760|O|192651.59|1995-09-26|2-HIGH|Clerk#000001962|0|y regular instructions wake blithely final foxes. requests nag slyly a| +44425|87319|O|357448.17|1995-11-30|4-NOT SPECIFIED|Clerk#000004932|0|y regular instructions. ironic, unusual requests among the quickly b| +44426|545696|F|146210.63|1994-05-08|1-URGENT|Clerk#000000802|0|usual packages. fluffily unusual foxes cajole bl| +44427|499846|O|101890.50|1998-04-03|5-LOW|Clerk#000004084|0|ithely regular accounts. quickly ironic asymptotes use carefully| +44428|140065|O|108518.72|1998-06-17|4-NOT SPECIFIED|Clerk#000003760|0|final, even dinos. busy depend| +44429|561295|O|257430.89|1997-02-21|3-MEDIUM|Clerk#000004189|0|es. even accounts could have to grow. slyl| +44430|176056|O|78300.46|1995-07-24|5-LOW|Clerk#000001706|0|bout the furiously regular deposits use along the slyly pending platele| +44431|218669|O|44774.74|1996-07-03|4-NOT SPECIFIED|Clerk#000002034|0|ular instructions impress slyly| +44456|164860|O|47095.05|1996-03-22|5-LOW|Clerk#000004804|0|efully silent attainments. express foxes detect | +44457|295285|F|84150.96|1994-06-25|5-LOW|Clerk#000002526|0|lose slyly even patterns. furiously bold dependencies are furiously. blithel| +44458|73147|F|224593.45|1992-04-01|3-MEDIUM|Clerk#000004705|0|fully unusual foxes boost fluffily. slyl| +44459|113935|F|184479.00|1993-07-13|4-NOT SPECIFIED|Clerk#000000198|0|dly. slyly bold dependencies wake careful| +44460|154406|F|163992.64|1993-09-20|4-NOT SPECIFIED|Clerk#000002901|0|gular, ironic hockey players c| +44461|96736|F|61040.69|1993-09-11|5-LOW|Clerk#000004850|0|above the furiously slow instructions. slyly final f| +44462|573076|O|192005.78|1997-08-31|2-HIGH|Clerk#000000131|0|ajole blithely carefully even | +44463|158098|F|103261.85|1994-11-24|1-URGENT|Clerk#000002440|0| to the blithely regular| +44488|634120|O|15077.22|1997-01-04|4-NOT SPECIFIED|Clerk#000000390|0|e even accounts. carefully pending patterns are. slyly final pac| +44489|151225|F|292378.41|1994-07-30|1-URGENT|Clerk#000001597|0|regular requests haggle slyly about t| +44490|627311|F|364357.96|1994-01-20|4-NOT SPECIFIED|Clerk#000002188|0|kages sleep slyly around the regular accounts. quickly unusual braids hagg| +44491|461953|O|123130.43|1997-04-07|1-URGENT|Clerk#000003087|0|ly final pains wake slyly according to the slyly ironic depths. r| +44492|21187|O|159335.31|1997-10-06|4-NOT SPECIFIED|Clerk#000003525|0|ickly final decoys detect quickly. unusual, even deposits poach care| +44493|560788|O|101787.48|1997-10-15|3-MEDIUM|Clerk#000000741|0|ructions are carefully thin, regular packages. theodolites after the blithely| +44494|644641|F|238336.29|1995-02-02|3-MEDIUM|Clerk#000001729|0|ual platelets cajole blithely darin| +44495|717343|O|91750.55|1998-05-24|2-HIGH|Clerk#000002892|0|s. silent, bold accounts cajole slyly ironic dependencies? slyly express ac| +44520|131611|F|30608.86|1994-01-19|4-NOT SPECIFIED|Clerk#000003323|0|ross the dependencies. regular foxes nag carefully bold ideas. multiplier| +44521|207577|F|249662.78|1992-02-24|5-LOW|Clerk#000001468|0|; final ideas sleep against the quickly special instructions.| +44522|466385|O|98560.68|1997-06-20|3-MEDIUM|Clerk#000004225|0|ts cajole regular, ironic ideas; fluffily i| +44523|270349|F|137493.82|1993-08-31|4-NOT SPECIFIED|Clerk#000002376|0|fluffily regular foxes eat requests; never express requ| +44524|226895|F|218214.01|1993-01-06|3-MEDIUM|Clerk#000001109|0|thrash blithely furiously r| +44525|422983|O|71263.46|1998-04-06|2-HIGH|Clerk#000001926|0| haggle furiously regular theodolites. p| +44526|571222|F|125342.91|1994-10-26|5-LOW|Clerk#000001878|0|accounts play blithely against| +44527|517933|F|3842.60|1993-10-30|3-MEDIUM|Clerk#000002440|0|fily express accounts. carefully ironic accou| +44552|388478|O|329266.52|1995-11-14|3-MEDIUM|Clerk#000000933|0|equests. requests sleep fur| +44553|385864|F|128332.19|1993-05-25|5-LOW|Clerk#000000320|0|uick ideas. quickly unusual re| +44554|687029|F|192134.13|1994-01-26|5-LOW|Clerk#000001197|0|ously after the slyly regular ideas. busily even t| +44555|638276|F|270772.52|1992-03-27|5-LOW|Clerk#000003406|0|quickly about the final ideas. carefully bold platelets detec| +44556|241288|O|190364.08|1997-09-21|2-HIGH|Clerk#000002571|0|rate alongside of the blithely special packa| +44557|45835|O|115759.70|1996-08-31|1-URGENT|Clerk#000001509|0|according to the eve| +44558|97150|O|346730.21|1996-11-04|1-URGENT|Clerk#000001625|0| unusual foxes haggle alongside of the package| +44559|32329|O|175972.91|1998-07-24|2-HIGH|Clerk#000001103|0|imes unusual accounts sleep. slyly even theodolites hag| +44584|348541|F|9520.04|1992-03-27|5-LOW|Clerk#000001494|0|t furiously. blithely regular dependencies haggle. caref| +44585|420248|F|294617.02|1995-02-02|5-LOW|Clerk#000004155|0|the doggedly final request| +44586|350432|F|180379.92|1992-04-06|5-LOW|Clerk#000004269|0|ss, pending deposit| +44587|701422|O|212202.76|1996-02-24|1-URGENT|Clerk#000004872|0|posits. ironic accounts sleep slyly. slyly ironic ideas wake furiously re| +44588|284191|F|201889.29|1994-01-13|2-HIGH|Clerk#000000104|0|the blithely special packages. final asymptotes hind| +44589|376192|O|73147.20|1995-09-11|3-MEDIUM|Clerk#000001230|0|l requests sleep busily slyly special deposits. sometimes brave ins| +44590|140215|F|92905.75|1993-12-02|5-LOW|Clerk#000002116|0| detect regular requests. furiously regular accounts around the| +44591|84490|O|173945.48|1998-04-04|4-NOT SPECIFIED|Clerk#000003633|0| blithely. regular, final packages affix insi| +44616|248572|O|207495.66|1997-04-11|1-URGENT|Clerk#000003700|0|olites boost carefully sl| +44617|229927|F|13558.42|1992-09-07|4-NOT SPECIFIED|Clerk#000004574|0|accounts detect blithely regular dep| +44618|362117|O|239181.64|1997-03-11|5-LOW|Clerk#000000243|0|fully furiously ironic in| +44619|587941|O|88122.25|1995-06-28|3-MEDIUM|Clerk#000002257|0|ons. unusual, pending instructions above the blithely special ideas s| +44620|248461|F|307778.21|1995-02-23|3-MEDIUM|Clerk#000001098|0|iously unusual asymptotes sublate. blithely unusual pearls haggle slyly.| +44621|633547|O|49853.10|1997-01-28|1-URGENT|Clerk#000003535|0|ld platelets sleep slyl| +44622|263098|O|123262.23|1996-05-31|1-URGENT|Clerk#000001604|0|fully quickly special platelets. darin| +44623|630440|O|286300.02|1998-03-07|3-MEDIUM|Clerk#000003396|0|e. enticingly special foxes about the final, even accounts sle| +44648|541301|O|326294.42|1995-08-27|4-NOT SPECIFIED|Clerk#000000476|0|r packages. requests about the | +44649|135623|O|150252.25|1995-07-04|4-NOT SPECIFIED|Clerk#000003012|0|ding dependencies. carefully even foxes| +44650|154519|F|143761.65|1992-12-14|1-URGENT|Clerk#000001632|0|re permanently furiously final instructions. re| +44651|470434|F|286333.22|1994-09-16|4-NOT SPECIFIED|Clerk#000001848|0|sily ironic requests sleep furiously. requests ar| +44652|54743|O|116259.04|1998-05-15|4-NOT SPECIFIED|Clerk#000000459|0|telets cajole quickly final Tiresias. | +44653|555976|O|123658.83|1996-10-29|3-MEDIUM|Clerk#000003858|0|y regular instructions. ironic, regular foxes wake. iro| +44654|9566|O|4808.09|1996-11-16|1-URGENT|Clerk#000003382|0|lyly even pinto beans boost doggedly ironic deposi| +44655|273191|F|308453.45|1993-06-23|4-NOT SPECIFIED|Clerk#000000177|0|l packages boost after the quickly even| +44680|12931|O|129071.22|1997-08-10|5-LOW|Clerk#000002938|0| asymptotes. final packages detect ca| +44681|581192|F|193288.77|1994-10-27|2-HIGH|Clerk#000003611|0|ajole carefully quickly regular ideas. idly regular dependencies sleep | +44682|85039|O|130202.56|1995-12-24|2-HIGH|Clerk#000004326|0|lar packages. quickly ironic requests cajole. blithely express p| +44683|474541|O|78070.76|1998-06-22|5-LOW|Clerk#000001713|0|ual courts. instructions boost ac| +44684|85145|O|87880.19|1998-03-02|4-NOT SPECIFIED|Clerk#000001214|0|e carefully about the ruthlessly express dolphin| +44685|28588|O|185048.34|1997-11-27|3-MEDIUM|Clerk#000003423|0|tructions play slyly at the blithely pending accounts. furiously final d| +44686|446269|F|105827.43|1994-11-15|3-MEDIUM|Clerk#000004598|0|eposits haggle furiously according to the unusual, regul| +44687|416899|F|203976.56|1994-12-24|4-NOT SPECIFIED|Clerk#000002900|0|he doggedly final foxes use across the bold orbits. carefu| +44712|314866|F|175887.78|1993-08-01|4-NOT SPECIFIED|Clerk#000004975|0|ely pending accounts. packa| +44713|676837|F|38374.89|1995-05-19|5-LOW|Clerk#000002002|0| try to serve carefully even accounts. blithely f| +44714|323206|F|51701.32|1992-04-20|1-URGENT|Clerk#000004264|0|s haggle slyly about | +44715|622514|F|255704.66|1992-11-19|4-NOT SPECIFIED|Clerk#000004743|0|ronic requests haggle carefully re| +44716|80512|F|64603.08|1994-09-17|5-LOW|Clerk#000000848|0| ideas. fluffily regular theodolites snooze carefully against the final sentim| +44717|137903|O|66195.30|1995-06-08|4-NOT SPECIFIED|Clerk#000003258|0|refully silent pinto beans sleep among the ideas. ironic ideas sleep | +44718|221588|P|336521.43|1995-05-04|3-MEDIUM|Clerk#000003831|0|leep fluffily! bold, bold platelets use furiously alongside of the quietl| +44719|472408|F|117786.46|1994-08-31|4-NOT SPECIFIED|Clerk#000003852|0|ns. ironic depths use carefully across the | +44744|240244|F|137563.88|1992-11-01|4-NOT SPECIFIED|Clerk#000004010|0|ual pinto beans x-ray. quietly regular depe| +44745|505633|O|271692.21|1996-06-20|2-HIGH|Clerk#000000563|0|pecial dolphins x-ray slyly un| +44746|664226|F|244772.56|1994-10-16|3-MEDIUM|Clerk#000004064|0| accounts. furiously even pinto beans serve furiously ironic pearls. slyly| +44747|630301|O|176944.55|1997-09-07|5-LOW|Clerk#000001297|0| use carefully. daring, ironic platelets boost fluffily. bol| +44748|443666|F|64125.86|1992-08-23|4-NOT SPECIFIED|Clerk#000002760|0|ffix fluffily even, final pains. requests print carefully slyly bold instru| +44749|185887|O|26622.87|1997-12-31|1-URGENT|Clerk#000001957|0|usly pending asymptotes integrate b| +44750|442948|O|178528.21|1997-01-28|2-HIGH|Clerk#000002588|0|uickly final requests wake| +44751|98273|O|50683.59|1995-07-04|2-HIGH|Clerk#000003499|0| unusual excuses. packages haggle acc| +44776|163564|F|15154.05|1992-07-02|3-MEDIUM|Clerk#000004281|0|e packages across the carefully express deposits haggle slyly after the sly| +44777|268388|F|88198.08|1994-08-31|1-URGENT|Clerk#000004348|0|ly along the slyly unusual pa| +44778|283025|O|144496.53|1996-05-12|3-MEDIUM|Clerk#000003306|0|s courts nag slyly. regular courts solve carefully about the f| +44779|288112|F|102851.59|1994-12-10|1-URGENT|Clerk#000002907|0|requests cajole slyly. requests use quickly. deposits sleep amon| +44780|286379|O|216472.70|1995-06-04|2-HIGH|Clerk#000003773|0|ly even theodolites. express accounts sublate carefully. furiously ironic| +44781|410335|F|112277.69|1993-09-16|1-URGENT|Clerk#000002147|0|y. slyly sly deposits sleep. even deposits alongside of the slyly daring pa| +44782|230239|F|181819.28|1992-04-22|4-NOT SPECIFIED|Clerk#000004493|0|players are foxes. carefully ruthless forge| +44783|372347|F|78728.73|1992-11-19|5-LOW|Clerk#000004738|0|al requests among the fu| +44808|22840|F|39119.78|1995-05-19|3-MEDIUM|Clerk#000001972|0|refully blithely even accou| +44809|614095|F|85431.42|1994-10-16|4-NOT SPECIFIED|Clerk#000002545|0|its thrash always even, regular theodolites. slyly bold instr| +44810|340277|O|223453.49|1996-04-17|2-HIGH|Clerk#000004493|0|platelets nag carefully furiously silent deposits. express packages| +44811|280831|F|126751.57|1992-09-22|2-HIGH|Clerk#000003160|0|l instructions haggle eve| +44812|157658|F|96788.83|1993-09-29|4-NOT SPECIFIED|Clerk#000002599|0|jole slyly. requests cajole blithely quickly final instructions. furio| +44813|742334|F|306978.02|1994-05-06|2-HIGH|Clerk#000000143|0| after the ironic instructions. theodolites haggle. bold pack| +44814|143383|O|90059.08|1998-07-14|3-MEDIUM|Clerk#000001660|0|ently final accounts cajole blithely pinto beans. dogged, ironic packages i| +44815|57448|F|116214.47|1993-10-12|5-LOW|Clerk#000002964|0|ly final deposits. blithely special theodolites cajole qu| +44840|254554|O|226502.22|1996-01-21|3-MEDIUM|Clerk#000003758|0|arefully express requests. fluffily unusual somas acros| +44841|282934|F|171134.67|1994-10-10|4-NOT SPECIFIED|Clerk#000003279|0|yly ironic requests haggle quickly regular a| +44842|240158|O|134596.78|1997-11-05|1-URGENT|Clerk#000002776|0|l escapades wake finally about the furiously| +44843|571876|O|202492.30|1995-10-20|2-HIGH|Clerk#000000448|0|fore the fluffily final account| +44844|250474|F|201810.18|1993-12-23|1-URGENT|Clerk#000002782|0|s nod. slyly dogged packages among the carefully final | +44845|696596|O|97308.34|1995-08-20|5-LOW|Clerk#000002975|0|es boost blithely even platelets. slyly ironic excuses | +44846|188761|P|212072.91|1995-03-21|3-MEDIUM|Clerk#000003583|0|kages. regular theodolites | +44847|742255|O|36535.46|1995-09-07|2-HIGH|Clerk#000001934|0|slyly pending theodolites. quickly fina| +44872|300589|O|201536.63|1995-07-22|2-HIGH|Clerk#000002493|0|riously regular theodolites cajole slyl| +44873|724522|O|129203.75|1998-07-28|3-MEDIUM|Clerk#000002902|0|packages haggle slyly pe| +44874|32609|F|166271.91|1993-02-24|2-HIGH|Clerk#000000711|0|nal theodolites; regular, final packages boost across the express deposits. | +44875|553849|F|212949.31|1992-04-05|4-NOT SPECIFIED|Clerk#000001958|0|lay. unusual deposits use carefull| +44876|266933|O|311790.99|1996-03-20|4-NOT SPECIFIED|Clerk#000003950|0|nag slyly between the blithely silent theodolites. | +44877|587399|O|188897.39|1997-08-30|1-URGENT|Clerk#000000456|0| pinto beans against the even packages haggle slyly car| +44878|164536|O|52726.44|1997-11-21|4-NOT SPECIFIED|Clerk#000000642|0|ully regular ideas al| +44879|90529|F|209784.30|1992-09-23|2-HIGH|Clerk#000001557|0|xes; quickly even packages sleep slyly. silently ironic pa| +44904|516523|F|156164.42|1992-10-29|2-HIGH|Clerk#000001135|0|e slyly silent packages. slyly final pinto beans | +44905|678019|O|314845.02|1998-04-01|1-URGENT|Clerk#000000190|0|nding accounts boost. re| +44906|698647|O|273734.67|1998-03-20|1-URGENT|Clerk#000001500|0|f the even requests. blithely regular r| +44907|149317|F|164961.00|1992-09-24|5-LOW|Clerk#000004183|0|nt foxes. regular, ironic deposits nag| +44908|65281|F|299510.17|1994-05-11|4-NOT SPECIFIED|Clerk#000003240|0|s-- carefully ironic pinto| +44909|663130|O|129300.76|1996-12-03|5-LOW|Clerk#000004170|0|ss platelets. pending accounts nag quickly. carefully special asympt| +44910|193825|F|117138.11|1994-04-17|3-MEDIUM|Clerk#000001866|0|et foxes wake about the fluffily e| +44911|336128|O|260083.32|1997-12-17|2-HIGH|Clerk#000003054|0|e silent deposits. furiously final notornis haggl| +44936|301261|O|52195.06|1996-08-06|5-LOW|Clerk#000000898|0|efully about the ironic deposits. furiously ironic a| +44937|39626|O|127297.70|1995-12-09|5-LOW|Clerk#000003740|0|g requests sleep pinto beans. blithely even packages| +44938|743075|O|206131.39|1996-11-25|4-NOT SPECIFIED|Clerk#000001330|0|to are ironically furiously bo| +44939|604801|O|204326.54|1997-07-09|3-MEDIUM|Clerk#000000344|0| pinto beans use furiously. ir| +44940|127552|F|53089.62|1993-07-18|2-HIGH|Clerk#000002846|0|ters. quickly special packages nag blithely carefully fluffy deposi| +44941|244739|O|81775.16|1998-02-04|2-HIGH|Clerk#000003922|0|y quiet theodolites han| +44942|325736|O|87405.37|1996-12-26|3-MEDIUM|Clerk#000003180|0|ully ironic instructions sleep | +44943|382420|O|117643.34|1995-07-16|4-NOT SPECIFIED|Clerk#000002500|0|ges are. final deposi| +44968|551918|F|89465.06|1992-11-10|3-MEDIUM|Clerk#000004301|0|ly. quickly bold excuses s| +44969|84973|O|96676.29|1997-12-11|3-MEDIUM|Clerk#000003034|0| quickly bold requests. warhorses over the f| +44970|109060|F|134913.40|1993-05-25|4-NOT SPECIFIED|Clerk#000003458|0|dependencies maintain quickly.| +44971|701509|F|253014.48|1994-10-15|4-NOT SPECIFIED|Clerk#000003113|0| nag alongside of the furiousl| +44972|235423|F|96355.66|1992-02-29|3-MEDIUM|Clerk#000004059|0|nt deposits sleep slyly regular package| +44973|480940|F|111308.51|1995-02-25|4-NOT SPECIFIED|Clerk#000003691|0|nts. final, even accounts nag. fluffily pending requests according to the | +44974|401702|F|146876.66|1994-12-06|4-NOT SPECIFIED|Clerk#000003902|0|der above the regular, regular requests! quickly sp| +44975|640477|F|150012.65|1994-08-20|1-URGENT|Clerk#000004564|0|o the express, ironic deposits. slyly ironic instructions ha| +45000|478255|O|158812.85|1997-01-21|3-MEDIUM|Clerk#000004017|0|y even deposits print quickly a| +45001|253408|F|155505.53|1993-09-05|5-LOW|Clerk#000000921|0|aggle furiously above the fluffily ironic foxes. furiously ironic r| +45002|524734|F|109914.20|1993-08-14|2-HIGH|Clerk#000000871|0|ove the blithely unusual depo| +45003|704092|F|85903.51|1992-11-23|4-NOT SPECIFIED|Clerk#000002893|0| dazzle idly about the unusual packages. even pac| +45004|162052|O|37159.57|1995-09-22|4-NOT SPECIFIED|Clerk#000000712|0|lites nag ironic packages. furiously even pack| +45005|335203|F|83328.35|1994-02-26|1-URGENT|Clerk#000003877|0|iously silent ideas haggle along the| +45006|478075|O|25733.34|1997-05-31|1-URGENT|Clerk#000004052|0|ithely regular sentiments. fluffily special ideas cajole furiously. spe| +45007|229189|O|180504.86|1996-11-03|3-MEDIUM|Clerk#000004152|0| ironic instructions after the quickly regular pinto bean| +45032|698983|F|165089.83|1994-11-23|3-MEDIUM|Clerk#000004031|0| instructions; final, ironic excuses above the pending| +45033|540220|F|238561.53|1992-08-09|3-MEDIUM|Clerk#000004452|0|final deposits. ironic, even asymptotes haggle furiously. quickly ironic warho| +45034|715312|F|66108.56|1994-04-24|5-LOW|Clerk#000001630|0|lly fluffily special instructions| +45035|482734|O|38828.84|1996-05-09|2-HIGH|Clerk#000000066|0|ending, express pinto beans. blithely| +45036|528308|O|132339.13|1997-05-11|1-URGENT|Clerk#000004273|0| the carefully regular pinto be| +45037|19097|F|230436.63|1993-05-15|1-URGENT|Clerk#000000170|0|nal packages wake ac| +45038|698563|F|40995.49|1995-02-25|5-LOW|Clerk#000003975|0|counts. regular inst| +45039|229031|O|147620.61|1996-07-02|1-URGENT|Clerk#000004374|0|ions promise requests. carefully silent accounts among the deposi| +45064|310946|O|293994.90|1995-07-05|1-URGENT|Clerk#000003193|0|sly about the carefully regular excuses. slyly final packages | +45065|65086|O|380939.36|1997-12-05|1-URGENT|Clerk#000003165|0|s. blithely even requests nag special,| +45066|390458|O|89812.26|1995-10-18|3-MEDIUM|Clerk#000003023|0| to the fluffily special multipliers. carefu| +45067|668104|O|34688.56|1996-05-06|5-LOW|Clerk#000000766|0| ironic, unusual accounts cajole fluffily alongside of the evenly ironic gr| +45068|542402|O|125271.28|1997-11-28|4-NOT SPECIFIED|Clerk#000003965|0|requests wake silently regular deposits; slyly ev| +45069|641422|O|247879.64|1998-07-30|1-URGENT|Clerk#000004304|0|y blithely regular packages. slyly special foxes affix slyly. furiously bl| +45070|608014|O|195045.39|1997-08-10|4-NOT SPECIFIED|Clerk#000004592|0|tside the quickly even instructions. carefully ir| +45071|129200|F|172193.01|1993-03-16|1-URGENT|Clerk#000002290|0|posits according to the silent,| +45096|201607|O|71432.79|1996-10-25|3-MEDIUM|Clerk#000001058|0|lly furiously pending dinos; blithely final de| +45097|646978|O|206747.24|1996-09-03|1-URGENT|Clerk#000003242|0|arefully final accounts are pending accounts. | +45098|249323|F|141156.82|1994-12-24|4-NOT SPECIFIED|Clerk#000002382|0|into beans. furiously final hockey players| +45099|111716|O|207733.20|1997-06-09|3-MEDIUM|Clerk#000003016|0|ons haggle above the deposits. furiously speci| +45100|345448|F|250260.66|1994-04-05|3-MEDIUM|Clerk#000002811|0|st the regular deposits. blithely silent braids af| +45101|161483|O|194219.53|1998-03-02|3-MEDIUM|Clerk#000000543|0|oxes are. quickly ironic deposits nag| +45102|531325|O|226785.29|1998-03-04|5-LOW|Clerk#000000517|0|oldly even asymptotes believe| +45103|452608|O|58325.47|1995-07-01|3-MEDIUM|Clerk#000001092|0|. carefully express asymptotes are furiously q| +45128|460930|F|162545.97|1992-02-04|1-URGENT|Clerk#000004567|0| final ideas. carefully silent theodolites cajole after the fluf| +45129|67427|F|219891.14|1993-09-05|2-HIGH|Clerk#000001574|0|packages. slow requests| +45130|740069|F|272457.02|1994-07-11|3-MEDIUM|Clerk#000000315|0|eas detect carefully after the ideas. quickly pending instruc| +45131|332005|O|41141.47|1998-01-24|5-LOW|Clerk#000004735|0|ke slyly final courts. ironic accounts against the furiou| +45132|743665|F|114733.76|1993-12-02|2-HIGH|Clerk#000001538|0|nt courts cajole furiously across the carefully pending pattern| +45133|11635|O|139592.86|1998-06-14|2-HIGH|Clerk#000002214|0|ckly against the final depos| +45134|527072|F|148500.05|1992-01-11|2-HIGH|Clerk#000003311|0|riously furiously even theodolites. pinto beans after the| +45135|240721|O|29669.34|1997-07-10|2-HIGH|Clerk#000002293|0|arls. fluffily even grouches boost furiously along the blith| +45160|275603|O|120768.62|1996-07-14|1-URGENT|Clerk#000002596|0|e carefully regular accounts. ideas breach against the re| +45161|52634|O|3937.38|1996-10-30|3-MEDIUM|Clerk#000001392|0|accounts cajole bold, idle excuses. furiously final acc| +45162|361351|O|272286.59|1997-12-03|4-NOT SPECIFIED|Clerk#000003309|0|fully pending theodolites. platelets alongside of the ideas are bold account| +45163|453904|F|53340.42|1994-08-13|4-NOT SPECIFIED|Clerk#000004296|0|hily about the ironic, final requests-- bl| +45164|486451|F|140128.84|1994-04-28|5-LOW|Clerk#000001635|0|blithely after the quickly| +45165|22667|O|232481.04|1997-10-24|4-NOT SPECIFIED|Clerk#000002553|0|he ironic theodolites-- carefully even pinto beans affix packages. unus| +45166|707159|F|100448.45|1993-05-26|3-MEDIUM|Clerk#000001918|0|ts are. carefully regula| +45167|706934|F|112672.40|1994-03-03|3-MEDIUM|Clerk#000004358|0|cajole about the blithely qui| +45192|679415|F|273990.40|1994-12-31|2-HIGH|Clerk#000004785|0|foxes cajole furiously unusual, even theod| +45193|177133|F|207563.73|1994-07-13|2-HIGH|Clerk#000000941|0|al realms. unusual packages snooze blithely above the final, ironic ideas. d| +45194|306493|O|112055.26|1998-03-03|2-HIGH|Clerk#000003718|0|he quickly ironic accounts! special deposits haggle blith| +45195|211243|F|162132.31|1993-09-12|5-LOW|Clerk#000000308|0| express deposits. fluffily regular pinto beans about the blithely bold dol| +45196|596213|O|57638.30|1997-06-21|4-NOT SPECIFIED|Clerk#000000775|0|ages detect slyly. ironic packages accor| +45197|551065|O|309902.59|1995-08-21|3-MEDIUM|Clerk#000003355|0|usly special ideas doze even packages. bold, ironic platelets in| +45198|737857|F|31531.08|1994-06-28|4-NOT SPECIFIED|Clerk#000002232|0|earls eat blithely. blit| +45199|659858|O|127163.67|1996-10-15|1-URGENT|Clerk#000003552|0| pending packages haggle slyly unu| +45224|720487|F|331795.28|1994-03-11|2-HIGH|Clerk#000003179|0|against the regular, exp| +45225|456521|O|222416.41|1997-12-02|1-URGENT|Clerk#000002116|0|s wake slyly fluffy accounts. slyly bold asymptotes boost fur| +45226|234538|F|177665.52|1993-02-10|5-LOW|Clerk#000002793|0|riously even requests haggle. packages wake slyly. | +45227|621607|F|85602.89|1994-05-06|1-URGENT|Clerk#000003293|0|e ironic foxes. final, even depen| +45228|567343|O|111227.01|1996-02-05|1-URGENT|Clerk#000003485|0|s haggle furiously quickly pending ideas. b| +45229|552328|F|173479.09|1993-02-09|3-MEDIUM|Clerk#000004132|0|kly: blithely silent accounts sleep. regu| +45230|215518|F|257009.49|1994-10-20|2-HIGH|Clerk#000003730|0| across the quickly unusual asymptot| +45231|456853|F|307880.98|1992-02-10|4-NOT SPECIFIED|Clerk#000003887|0|lar, slow pinto beans are quietly according to the blithely regular depo| +45256|553813|F|114882.65|1992-03-18|4-NOT SPECIFIED|Clerk#000001966|0|grate bravely regular theodolites. carefully even accounts are carefully up| +45257|404915|O|114939.91|1996-03-27|5-LOW|Clerk#000002531|0|ending accounts. ir| +45258|648136|O|81405.25|1997-12-22|5-LOW|Clerk#000004548|0|es. quickly express requests s| +45259|206143|O|225312.60|1997-08-21|4-NOT SPECIFIED|Clerk#000003633|0|eodolites. regular theodolites detect carefully. quiet | +45260|379538|O|20398.42|1995-12-16|2-HIGH|Clerk#000002751|0|x carefully carefully pending ideas. blithely regular accounts alongsid| +45261|134941|F|105270.37|1993-09-30|2-HIGH|Clerk#000002986|0|d courts. thin foxe| +45262|679127|O|111268.85|1998-03-21|1-URGENT|Clerk#000002986|0|inal requests. unusu| +45263|583181|F|274259.39|1995-02-24|5-LOW|Clerk#000001756|0|s poach fluffily. slyly final depths solve a| +45288|517891|O|11676.44|1996-11-12|1-URGENT|Clerk#000002415|0|slyly regular depths wake slyly. blithely ir| +45289|425992|F|91010.18|1994-02-07|3-MEDIUM|Clerk#000000354|0|ully pending platelets. regular fo| +45290|146012|F|47184.30|1994-07-10|2-HIGH|Clerk#000001503|0| among the slyly regular foxes. slyly brave asymptotes alongside of| +45291|23116|F|379980.65|1994-06-19|1-URGENT|Clerk#000002472|0|rding to the special, reg| +45292|735541|O|237157.41|1997-09-12|1-URGENT|Clerk#000002201|0|ts. bold, quiet theodolites sleep fluffily. even| +45293|726679|F|217781.92|1993-05-16|5-LOW|Clerk#000002805|0|rve quickly final requests. bold accounts haggle carefull| +45294|267869|O|270045.89|1997-06-18|5-LOW|Clerk#000004335|0| regular deposits sleep blithely among the quickly reg| +45295|569945|O|78809.51|1998-04-09|5-LOW|Clerk#000002225|0| use quickly according to the spe| +45320|64532|F|267476.04|1993-05-30|5-LOW|Clerk#000004292|0|ly regular accounts wake slyly blithely | +45321|81292|O|161753.69|1995-09-03|4-NOT SPECIFIED|Clerk#000001298|0|n deposits. regular dependencies after the slyly final packages are along| +45322|500428|O|117537.93|1998-03-04|3-MEDIUM|Clerk#000000089|0|kages. slyly final instructions sleep blithely. blithe instru| +45323|163555|O|125603.33|1997-09-20|2-HIGH|Clerk#000003435|0|t requests use furiously after the blithely enticing asymptotes.| +45324|102866|O|181749.35|1997-02-26|3-MEDIUM|Clerk#000002652|0|es affix carefully. ironic instructions after the carefully reg| +45325|107459|O|65532.41|1998-04-07|4-NOT SPECIFIED|Clerk#000000052|0| above the ruthless deposits. finally b| +45326|52252|F|87222.70|1995-02-08|2-HIGH|Clerk#000002510|0|equests nag carefully. slyly pen| +45327|680077|O|89808.87|1996-12-28|4-NOT SPECIFIED|Clerk#000000755|0|haggle fluffily according to the ironic pains. express theodolites | +45352|32839|F|220196.06|1992-02-11|2-HIGH|Clerk#000002690|0|r accounts. pending,| +45353|657668|O|46471.65|1997-07-23|1-URGENT|Clerk#000003496|0|en ideas. carefully silent asymptotes are furio| +45354|663997|F|91945.46|1993-02-25|1-URGENT|Clerk#000004401|0|ts. dinos cajole. even theodo| +45355|543227|F|163170.84|1994-02-08|5-LOW|Clerk#000003866|0|lites cajole within the regular grouches. care| +45356|254584|O|29742.08|1996-10-02|2-HIGH|Clerk#000000316|0|pinto beans run carefully. quic| +45357|36548|F|46942.69|1992-04-12|4-NOT SPECIFIED|Clerk#000001349|0|g the regular foxes. carefully fi| +45358|749518|F|119111.76|1994-10-07|5-LOW|Clerk#000001682|0|ly final instructions | +45359|140951|O|121055.20|1997-08-08|1-URGENT|Clerk#000003990|0|wly ironic accounts detect fu| +45384|448487|F|148160.68|1994-03-29|2-HIGH|Clerk#000002606|0|beans. deposits wake ironic pinto beans. unusual,| +45385|219173|O|154195.33|1997-03-19|2-HIGH|Clerk#000004875|0| regular excuses. carefully special packages cajole fluffily. exp| +45386|383962|F|18238.50|1995-03-02|1-URGENT|Clerk#000004224|0|ideas breach quickly unusual de| +45387|242740|F|110351.84|1993-05-29|4-NOT SPECIFIED|Clerk#000002096|0| courts. final, final foxes wake slyly.| +45388|476821|F|60608.68|1994-07-12|1-URGENT|Clerk#000001335|0|special deposits sleep slyly. furiously bold theodolites boost perman| +45389|179293|F|221414.85|1992-04-30|5-LOW|Clerk#000004541|0|leep blithely slyly ironic accounts. blit| +45390|618424|O|238258.78|1997-07-27|5-LOW|Clerk#000004414|0|ts. braids boost across the furiously final deposits| +45391|337282|P|203064.65|1995-03-23|3-MEDIUM|Clerk#000001333|0|nding theodolites. pinto beans a| +45416|181351|F|85883.74|1994-06-01|3-MEDIUM|Clerk#000002681|0|ial accounts! carefully careful requests| +45417|710974|O|185755.27|1996-06-24|4-NOT SPECIFIED|Clerk#000002058|0|y. carefully final packages wake among the even instructions. special pinto be| +45418|327991|F|126439.61|1995-01-06|3-MEDIUM|Clerk#000004484|0|uickly alongside of the blithely pending courts. furiously bold a| +45419|16552|F|312228.69|1994-10-03|5-LOW|Clerk#000003879|0|ts. furiously pending ideas across the stealthily final instructio| +45420|679414|F|30479.90|1993-08-03|2-HIGH|Clerk#000000875|0|ckages haggle blith| +45421|134161|O|257324.07|1997-06-24|2-HIGH|Clerk#000000475|0|arefully even, even instructions. blithely unusu| +45422|315382|O|261444.86|1996-11-22|3-MEDIUM|Clerk#000001280|0|es detect blithely. unusual accounts lose quickly. regular e| +45423|371320|F|76860.99|1994-03-30|3-MEDIUM|Clerk#000003445|0|. deposits wake. final excuses hang bli| +45448|13003|O|198295.36|1997-07-21|2-HIGH|Clerk#000004115|0|g the silent deposits. permanently re| +45449|259357|O|57821.84|1996-12-21|1-URGENT|Clerk#000002530|0|nt platelets. quietly pending requests detect careful| +45450|737705|O|49525.59|1997-08-03|5-LOW|Clerk#000001151|0|fully regular theodolites cajole even accounts. furiously final requ| +45451|349631|O|108498.20|1997-03-11|2-HIGH|Clerk#000001305|0|lyly even escapades. furiously busy pains sleep c| +45452|744043|O|213825.89|1996-09-09|4-NOT SPECIFIED|Clerk#000000434|0|ckly regular requests. regular, even br| +45453|359780|F|125839.56|1992-05-22|2-HIGH|Clerk#000003933|0|kly. furiously final packages bo| +45454|319520|O|135173.07|1998-03-16|2-HIGH|Clerk#000001671|0|equests cajole. express, unusual ideas wake o| +45455|157574|F|70660.99|1994-02-13|4-NOT SPECIFIED|Clerk#000003629|0|arefully ideas. quickly bold accounts caj| +45480|81898|F|122118.47|1993-11-11|3-MEDIUM|Clerk#000002694|0|gular, ironic requests. quickly regular frays haggle s| +45481|179354|O|90626.23|1997-11-29|3-MEDIUM|Clerk#000002191|0|riously pending requests haggle carefully. blithely ironic request| +45482|138703|F|159678.51|1992-09-12|5-LOW|Clerk#000003596|0|he furiously final warthogs integrate carefully sly| +45483|162379|F|124365.95|1993-01-19|1-URGENT|Clerk#000000636|0|e furiously. special deposits against the ironic pinto beans affix| +45484|602476|F|38759.70|1992-01-14|5-LOW|Clerk#000003795|0|kly unusual pinto beans. fu| +45485|41434|F|170663.31|1994-10-03|3-MEDIUM|Clerk#000004501|0|ar deposits. carefully pending dependencies s| +45486|379321|O|189213.62|1997-09-08|5-LOW|Clerk#000003109|0|olites cajole slyly alongside of the neve| +45487|216658|O|62848.31|1997-02-28|1-URGENT|Clerk#000000812|0|against the furiously ironic ideas integrate quickly b| +45512|115522|O|168376.10|1995-12-18|4-NOT SPECIFIED|Clerk#000000501|0|pecial deposits might nag slyly thin decoys. furiously final foxes are| +45513|573826|O|323616.90|1997-11-08|3-MEDIUM|Clerk#000004484|0|ove the deposits sleep carefully pending ide| +45514|31858|O|173834.59|1996-07-16|2-HIGH|Clerk#000002857|0|ely ironic packages. pending, | +45515|659680|F|278260.03|1993-02-20|1-URGENT|Clerk#000002809|0|osits boost silently carefully final theodolites. i| +45516|723707|O|29204.93|1996-11-17|1-URGENT|Clerk#000002404|0|ep carefully along the furiously bold deposits. b| +45517|585139|F|359806.34|1994-05-30|2-HIGH|Clerk#000003349|0|regular, unusual packages detect slyly accounts. final deposits c| +45518|411827|F|326274.18|1992-12-10|4-NOT SPECIFIED|Clerk#000000367|0|nic packages above the even court| +45519|566891|F|240428.83|1993-12-03|5-LOW|Clerk#000003780|0|eposits. even packages affix above the | +45544|479999|F|253147.16|1994-08-07|3-MEDIUM|Clerk#000003579|0| pending foxes boost carefully among the theodolites. requests sleep blit| +45545|328210|F|299376.59|1992-12-20|1-URGENT|Clerk#000001906|0| even packages. final packages sleep. bold instructi| +45546|705613|O|68733.57|1997-07-17|1-URGENT|Clerk#000004892|0| carefully across the courts. ironic deposits around the quic| +45547|225845|O|42209.51|1998-02-03|5-LOW|Clerk#000001639|0|ld ideas integrate carefully above the even, enticing pinto beans. ironic re| +45548|25646|O|332864.78|1995-05-24|3-MEDIUM|Clerk#000004425|0|to beans cajole carefully. slyly regular requests haggle slyly above the | +45549|517516|O|75228.87|1997-01-28|1-URGENT|Clerk#000001549|0|quickly. slyly express theodolites| +45550|134648|F|31449.16|1995-04-02|2-HIGH|Clerk#000004034|0|ackages. furiously unusual foxes | +45551|271948|O|36739.10|1996-09-20|4-NOT SPECIFIED|Clerk#000000837|0|accounts. bold deposits haggle sile| +45576|100789|O|12572.42|1995-10-08|4-NOT SPECIFIED|Clerk#000000601|0|l excuses. slyly even packages boost daringly unusual| +45577|447242|F|129632.23|1993-03-05|5-LOW|Clerk#000000486|0| bold theodolites among the slyly bold| +45578|291376|O|182088.44|1997-02-20|5-LOW|Clerk#000003031|0|press theodolites sleep among the fluf| +45579|391552|F|305418.28|1992-03-03|4-NOT SPECIFIED|Clerk#000000349|0|sits. instructions along the final requests use carefully bold dolphins. | +45580|299533|F|274562.74|1993-02-23|2-HIGH|Clerk#000001494|0|uests. pending deposits | +45581|228907|F|57620.79|1995-04-09|3-MEDIUM|Clerk#000000681|0| detect fluffily final requests. blithely special theodolites doz| +45582|476014|F|145559.29|1992-07-25|3-MEDIUM|Clerk#000002054|0|regular pinto beans. unusual deposits wake furiousl| +45583|95632|O|120547.61|1998-02-16|2-HIGH|Clerk#000001370|0| haggle slyly regular, unusual pac| +45608|16033|F|25566.35|1993-12-26|2-HIGH|Clerk#000000516|0|cial theodolites. packages detect. furiously express ideas nag evenly | +45609|210934|F|179445.57|1994-05-28|2-HIGH|Clerk#000004191|0|press deposits are sometimes after the platelets. silent, ironic req| +45610|649507|F|255049.55|1993-05-10|2-HIGH|Clerk#000001233|0| beans haggle according to the quickl| +45611|742622|F|195156.27|1992-12-17|3-MEDIUM|Clerk#000001787|0|haggle at the ruthless | +45612|492821|F|204737.56|1993-11-13|1-URGENT|Clerk#000000044|0|instructions sleep furiously above the furio| +45613|586924|O|256538.05|1998-01-29|2-HIGH|Clerk#000000882|0| doubt blithely. final depo| +45614|408037|O|243072.03|1995-09-04|1-URGENT|Clerk#000003915|0|permanent ideas hang quickly. evenly silent ideas m| +45615|611539|F|246535.38|1992-08-26|1-URGENT|Clerk#000000465|0|ts. furious foxes among the fluffily final requests haggl| +45640|121133|O|189928.40|1995-08-24|4-NOT SPECIFIED|Clerk#000001440|0|accounts boost along the | +45641|369322|F|149691.53|1995-03-18|3-MEDIUM|Clerk#000003989|0|rate after the even requests. bold frays haggle quickly a| +45642|173690|O|105940.15|1996-01-02|2-HIGH|Clerk#000004558|0|e ideas. furiously even a| +45643|203096|F|79735.48|1994-10-29|5-LOW|Clerk#000002380|0|iously pending instructions. excuses according to the s| +45644|181942|O|15253.98|1996-01-16|3-MEDIUM|Clerk#000000982|0|er the slyly regular pinto beans unwind fluffi| +45645|115654|F|22220.00|1995-04-25|1-URGENT|Clerk#000000926|0|ar foxes cajole evenly up the bli| +45646|521734|F|123222.86|1992-01-19|2-HIGH|Clerk#000000765|0|ons. quietly pending deposits along the slyl| +45647|532168|O|233930.55|1996-08-16|2-HIGH|Clerk#000002988|0|uickly express deposits among the slyly daring instructio| +45672|385831|O|162118.18|1995-10-24|2-HIGH|Clerk#000001859|0|nag furiously ironic, pending requests. fluffily bol| +45673|160193|F|11250.11|1993-03-11|5-LOW|Clerk#000004538|0| regular deposits use. bold| +45674|606298|O|199730.39|1996-01-07|5-LOW|Clerk#000003808|0|regular deposits against the ironic packages haggle carefully about t| +45675|541220|F|74510.54|1995-01-28|5-LOW|Clerk#000003351|0|y pending ideas haggle carefully carefully even | +45676|282880|F|80654.06|1993-05-20|1-URGENT|Clerk#000002409|0|the deposits cajole carefully along the specia| +45677|104179|F|136988.66|1992-01-13|3-MEDIUM|Clerk#000004873|0|he slyly special asymptotes. slyly bold accoun| +45678|435223|F|175878.11|1993-10-07|3-MEDIUM|Clerk#000003887|0|egular requests. daringly regular ideas could cajole finally around the | +45679|16678|O|180122.24|1995-10-13|5-LOW|Clerk#000001637|0| pinto beans. express packages haggle slyly even, regular instructions: requ| +45704|552400|F|91656.94|1993-05-22|5-LOW|Clerk#000001541|0| accounts mold carefully quickly un| +45705|673225|O|226251.99|1996-05-22|3-MEDIUM|Clerk#000004486|0|riously pending warthogs. slyly special ideas haggle carefully| +45706|381785|O|156568.78|1998-01-18|4-NOT SPECIFIED|Clerk#000002376|0|ly fluffily unusual packages. quic| +45707|400093|F|212750.21|1992-06-03|1-URGENT|Clerk#000003924|0|e furiously regular deposits. requests nag slyly| +45708|603397|F|59703.75|1993-10-03|4-NOT SPECIFIED|Clerk#000003810|0|press instructions across the furiously e| +45709|542459|O|287046.78|1996-08-31|2-HIGH|Clerk#000003431|0|o are slyly regular foxes. ironic deposits wake fluffily unusual a| +45710|95584|F|79567.08|1992-10-13|4-NOT SPECIFIED|Clerk#000002549|0|usual pinto beans are. carefully regular | +45711|701878|F|144870.77|1994-10-09|2-HIGH|Clerk#000001622|0|pending accounts print furiously | +45736|446563|P|153259.51|1995-04-07|2-HIGH|Clerk#000003958|0|le blithely. quickly bold foxes affix car| +45737|105754|F|262058.88|1994-02-09|3-MEDIUM|Clerk#000003928|0|ptotes against the carefully regular attai| +45738|630686|O|14526.35|1997-10-03|2-HIGH|Clerk#000001715|0|oss the slyly ironic requests. qui| +45739|182224|O|213352.58|1996-02-25|1-URGENT|Clerk#000000376|0|nic requests. regular, final accounts lose quickly. slyly regular a| +45740|364907|O|234812.68|1996-02-19|1-URGENT|Clerk#000001660|0|ly unusual ideas sleep carefully| +45741|235984|O|22747.42|1995-10-23|1-URGENT|Clerk#000003937|0|ly express requests wake quickly? special packages about the slow cour| +45742|181921|F|105790.02|1994-02-16|3-MEDIUM|Clerk#000003620|0| final, ironic instructions use carefully; blithe| +45743|534100|F|130692.00|1994-07-08|1-URGENT|Clerk#000001672|0|ans affix carefully final accoun| +45768|587762|O|50096.37|1997-06-27|4-NOT SPECIFIED|Clerk#000003523|0|ages. furiously ironic theodolites a| +45769|257200|F|60021.63|1992-01-28|4-NOT SPECIFIED|Clerk#000000721|0|he even, final warhor| +45770|496306|F|96999.68|1994-07-02|4-NOT SPECIFIED|Clerk#000001712|0|deas sleep. even instructions haggle beside the furiously special requ| +45771|642139|O|221819.69|1997-01-29|1-URGENT|Clerk#000002109|0|lly special instructions. unusual requests detect across the foxes. bol| +45772|674068|O|199700.97|1995-12-22|1-URGENT|Clerk#000002320|0|oggedly unusual ideas-- furiously iron| +45773|304861|F|67978.48|1992-06-02|5-LOW|Clerk#000003554|0|regular, permanent deposits al| +45774|527731|F|203401.92|1992-08-11|5-LOW|Clerk#000004957|0|dolites. slyly special requests a| +45775|61067|O|125871.78|1997-10-26|4-NOT SPECIFIED|Clerk#000004578|0| quickly even requests integrate bravely bol| +45800|339052|F|237988.89|1994-07-28|5-LOW|Clerk#000000405|0|ckages cajole furiously according to t| +45801|680543|F|354761.62|1993-08-09|3-MEDIUM|Clerk#000000358|0|into beans. special packages alo| +45802|377068|O|191950.23|1996-10-14|2-HIGH|Clerk#000000562|0|y blithely regular deposits. carefully regular sheaves wake slyl| +45803|615043|O|238020.59|1997-08-21|2-HIGH|Clerk#000002841|0|along the ironic accounts? furiously final theodoli| +45804|527539|O|129124.97|1995-12-20|4-NOT SPECIFIED|Clerk#000004001|0|fluffily regular fo| +45805|564751|F|154797.04|1993-09-15|1-URGENT|Clerk#000000064|0|thely regular foxes nag entici| +45806|516832|O|56346.42|1995-09-08|5-LOW|Clerk#000000187|0|he furiously even deposits wake about the regular dependencies| +45807|637739|O|139179.81|1996-08-17|2-HIGH|Clerk#000001336|0|ironic, even courts. furiously pending accounts haggle quickly. ir| +45832|221548|O|75234.65|1996-10-25|3-MEDIUM|Clerk#000004164|0| to the slyly final deposits. slyly final dependencies| +45833|527104|F|170988.86|1994-04-22|1-URGENT|Clerk#000000124|0|ly among the accounts: regular, ironic instructions sleep fl| +45834|8722|F|207917.12|1993-06-20|1-URGENT|Clerk#000003076|0|ording to the express, ev| +45835|334303|F|34745.59|1994-04-23|1-URGENT|Clerk#000003018|0| according to the clo| +45836|363193|F|158558.04|1992-09-17|4-NOT SPECIFIED|Clerk#000004376|0|n deposits. permanently ironic theodolites cajole qui| +45837|672970|F|229969.82|1994-03-08|3-MEDIUM|Clerk#000004804|0|pecial, regular requests. car| +45838|585854|F|248466.95|1993-12-21|5-LOW|Clerk#000000234|0|ular instructions. blithely regular accounts cajole. carefully stealthy d| +45839|433378|O|189621.89|1996-09-13|4-NOT SPECIFIED|Clerk#000000045|0|ly. slyly express escapades ar| +45864|502919|O|89190.23|1996-10-02|3-MEDIUM|Clerk#000000406|0|even deposits alongside of the furiously ironic dep| +45865|56458|O|135609.40|1996-01-25|1-URGENT|Clerk#000001195|0|ctions print carefully ruthlessly regular foxes; daring, even ins| +45866|128323|F|123097.99|1994-01-14|5-LOW|Clerk#000004249|0|ld deposits sleep about the fluffily final sentiments. dependenci| +45867|464446|F|14485.19|1993-05-10|4-NOT SPECIFIED|Clerk#000001545|0|riously even foxes detect fluffily | +45868|683260|F|205885.03|1992-01-28|4-NOT SPECIFIED|Clerk#000004423|0|deposits are slyly across | +45869|288056|O|95333.88|1995-04-27|3-MEDIUM|Clerk#000002561|0|p final deposits. even instructions will have to wake multipliers! pendin| +45870|106864|O|37960.44|1997-10-10|2-HIGH|Clerk#000002385|0|ll kindle. slyly regular theodolites alongside of the slyly special pa| +45871|561850|F|193692.13|1993-02-09|5-LOW|Clerk#000001822|0|ironic packages affix fluffily al| +45896|502939|F|88400.47|1993-08-04|2-HIGH|Clerk#000002101|0|ding to the fluffily even requests wake furiously final packages. | +45897|372130|F|172137.05|1993-07-16|5-LOW|Clerk#000001591|0|ly regular courts affix along the slyly| +45898|106354|F|162148.68|1994-02-11|2-HIGH|Clerk#000003172|0|e requests; even foxes are qui| +45899|238414|P|286074.51|1995-06-08|3-MEDIUM|Clerk#000000225|0|lar, fluffy packages against the ironic excuses boost fluffily | +45900|492343|F|199994.65|1994-07-31|1-URGENT|Clerk#000001196|0| carefully quickly bold requests. final, express hockey pla| +45901|55003|O|68309.24|1995-10-09|3-MEDIUM|Clerk#000000646|0|ely. pending platelets alongside of the quickly i| +45902|411427|F|180123.65|1992-11-16|5-LOW|Clerk#000002419|0|lithely ironic patterns use carefully. furious, final instruct| +45903|571162|F|57974.05|1993-02-17|3-MEDIUM|Clerk#000000465|0|uests nag slyly above the pending deposits. carefully even ideas| +45928|252145|F|194500.75|1993-08-04|1-URGENT|Clerk#000001693|0|eep furiously. blithely final requests nag quickly special, pending ins| +45929|283186|F|165711.45|1992-02-08|3-MEDIUM|Clerk#000002041|0|ven dependencies. furiously bold requests cajol| +45930|743293|F|7395.19|1994-08-07|3-MEDIUM|Clerk#000001645|0|ost furiously regular requests! slyly regula| +45931|507082|O|89681.50|1997-08-20|3-MEDIUM|Clerk#000003865|0|ual hockey players sleep quickly according to the regular acc| +45932|262148|O|184344.46|1996-05-20|5-LOW|Clerk#000000693|0|s boost blithely. fluffily silent foxes wake. final, regular accounts cajole a| +45933|419014|O|164856.87|1996-04-05|1-URGENT|Clerk#000001692|0|. bold, final packages will have to breach. carefully sp| +45934|601576|O|201597.93|1998-07-17|5-LOW|Clerk#000002270|0|c accounts. unusual instructions wake. fu| +45935|656116|F|254131.52|1994-04-16|4-NOT SPECIFIED|Clerk#000004894|0|ironic instructions. blithely final asymptote| +45960|62167|F|265412.54|1993-11-20|2-HIGH|Clerk#000004305|0|en, special pinto beans are slyly regula| +45961|90230|F|263119.85|1994-06-23|2-HIGH|Clerk#000002986|0|bout the enticingly final| +45962|743860|F|324993.45|1992-03-08|4-NOT SPECIFIED|Clerk#000001457|0|s are slyly ironic pinto bea| +45963|289793|O|224510.86|1995-07-14|1-URGENT|Clerk#000002561|0|. quickly even pinto beans int| +45964|43667|F|201764.76|1992-12-20|5-LOW|Clerk#000001025|0|lar dependencies; furiously expr| +45965|402679|O|139158.03|1997-08-06|5-LOW|Clerk#000001585|0|hrash fluffily about the quickly express platelets. re| +45966|563848|O|61682.59|1996-01-27|5-LOW|Clerk#000002104|0|ar foxes affix blithely reg| +45967|337273|O|166639.14|1998-05-17|5-LOW|Clerk#000003321|0|. ironically careful accounts x-ray| +45992|20356|O|54749.68|1997-08-24|1-URGENT|Clerk#000000859|0| even requests. silent packages are furious| +45993|97135|F|201363.92|1993-12-04|4-NOT SPECIFIED|Clerk#000004611|0|lar deposits could have | +45994|520907|F|216432.89|1993-08-28|5-LOW|Clerk#000001800|0|ong the carefully regular dolphins serve carefu| +45995|124688|O|205024.52|1995-07-07|2-HIGH|Clerk#000001600|0| use furiously according| +45996|124573|F|49370.91|1992-11-15|3-MEDIUM|Clerk#000002573|0|ar ideas use. regular, regular excuses among the slyly final packages ha| +45997|424738|F|283606.89|1993-04-09|1-URGENT|Clerk#000000324|0|ages play according to the | +45998|60583|O|30082.39|1996-05-30|4-NOT SPECIFIED|Clerk#000000235|0|ng the furiously regu| +45999|445229|F|303933.26|1994-12-26|1-URGENT|Clerk#000003909|0| carefully along the fluffily unusual notornis. regular foxes impress| +46024|206638|F|81382.77|1992-10-07|4-NOT SPECIFIED|Clerk#000002585|0|jole carefully special packages. silent courts boost furiously above the | +46025|441794|O|109938.80|1995-10-05|3-MEDIUM|Clerk#000004877|0|ously furiously final packages. epitaphs boost furiously against th| +46026|216469|O|11159.73|1996-04-03|2-HIGH|Clerk#000001699|0| beans. pending, pending theodolites nag slyly. blithely silent dep| +46027|685441|F|44390.03|1992-07-05|3-MEDIUM|Clerk#000001721|0|structions impress blithely carefully final| +46028|205907|O|47395.46|1997-12-22|5-LOW|Clerk#000002858|0|furiously. regular hock| +46029|176896|O|95998.90|1998-05-14|2-HIGH|Clerk#000004194|0|al asymptotes. quickly final | +46030|60226|F|110238.05|1994-02-12|5-LOW|Clerk#000003079|0|express requests. ideas boost. | +46031|444898|F|122485.94|1995-02-07|1-URGENT|Clerk#000000647|0|f the fluffily regular platelets cajole fluffily slyly regular depe| +46056|617917|O|99003.66|1997-12-27|5-LOW|Clerk#000004004|0|he slyly pending requests doze furiously express packages. daring packa| +46057|69965|O|136444.19|1998-02-10|2-HIGH|Clerk#000002319|0| bravely pending grouches. furiou| +46058|645352|F|51343.18|1994-12-22|2-HIGH|Clerk#000001826|0| furiously express asymptotes. pinto beans nag after the packages! account| +46059|650711|F|202069.35|1992-04-21|4-NOT SPECIFIED|Clerk#000000280|0|ndencies. blithely pending requests nag furiously | +46060|748495|O|66667.03|1996-01-09|4-NOT SPECIFIED|Clerk#000004966|0|lyly ironic pinto beans maintain after the asympt| +46061|189968|F|77626.04|1993-07-24|2-HIGH|Clerk#000000457|0|bove the blithely final requests. quickly bold warhorses affix acros| +46062|40799|F|90687.53|1992-03-07|5-LOW|Clerk#000003350|0|usual dependencies wake furiously dinos. carefully even dol| +46063|207526|F|13310.38|1993-11-05|2-HIGH|Clerk#000001983|0|ackages nag blithely perma| +46088|366418|O|149471.81|1998-05-10|4-NOT SPECIFIED|Clerk#000002403|0|sly. quickly unusual packages doubt blithely ironic| +46089|121942|O|174292.18|1997-04-06|3-MEDIUM|Clerk#000000099|0|nal packages cajole blithely unusual requests| +46090|472090|F|169234.68|1994-06-01|5-LOW|Clerk#000002660|0|es. final deposits detect slyly after the fluffily regula| +46091|142706|F|11225.75|1994-03-27|4-NOT SPECIFIED|Clerk#000002953|0|ptotes sleep quickly. fluffily ironic pinto beans sleep furious| +46092|700937|O|131698.80|1996-03-08|3-MEDIUM|Clerk#000000683|0| bold instructions are carefully busily even excuses. carefully even depos| +46093|393421|F|169143.30|1994-03-17|3-MEDIUM|Clerk#000003296|0|ely pending packages. fluffily regular r| +46094|202024|O|295676.49|1997-10-04|5-LOW|Clerk#000002724|0|ly even deposits sleep about the| +46095|141017|O|100135.66|1998-02-13|2-HIGH|Clerk#000000180|0| beans use carefully final pinto beans. ironic,| +46120|59467|O|237178.25|1995-11-20|4-NOT SPECIFIED|Clerk#000001946|0| was slyly after the slyly pending realms. blithely even requests hang| +46121|435698|F|16917.47|1992-11-09|3-MEDIUM|Clerk#000002432|0|counts. silent deposits cajol| +46122|515165|O|180958.37|1997-10-23|2-HIGH|Clerk#000001057|0|kages boost permanently alongside of t| +46123|369580|O|52187.94|1996-07-24|1-URGENT|Clerk#000002683|0|latelets wake furiously carefully even packages. slyly silent deposits are qu| +46124|17666|O|165303.84|1996-04-27|3-MEDIUM|Clerk#000004340|0| slyly regular platelets wake regular requests. slyly fina| +46125|647410|F|233279.97|1993-10-19|3-MEDIUM|Clerk#000000634|0|uses. unusual, ironic requests haggle furiously| +46126|4591|O|109178.49|1995-07-05|2-HIGH|Clerk#000000709|0|oss the furiously ironic ideas. even, express Tiresias against the qu| +46127|640151|O|146062.28|1996-10-26|3-MEDIUM|Clerk#000000300|0|s. closely even excuses wake alo| +46152|263873|O|215546.39|1997-02-01|1-URGENT|Clerk#000004801|0|ar requests along the even deposits use alongs| +46153|155305|F|207265.90|1992-03-17|1-URGENT|Clerk#000004278|0|ar warhorses. ironic platelets accord| +46154|194272|O|131396.97|1996-01-15|1-URGENT|Clerk#000000961|0| regular asymptotes. express multipliers cajole pending| +46155|358670|F|147098.60|1993-12-03|2-HIGH|Clerk#000004751|0|ts detect above the | +46156|410932|O|171867.27|1997-10-15|3-MEDIUM|Clerk#000003776|0| carefully ironic deposits among the deposi| +46157|507610|P|256844.21|1995-03-29|5-LOW|Clerk#000000347|0|ites haggle according to the bli| +46158|118228|F|192336.63|1992-08-26|4-NOT SPECIFIED|Clerk#000003416|0|y. slyly final packages do| +46159|285289|O|112730.48|1996-04-01|2-HIGH|Clerk#000000712|0|t the special, ironic deposits boost blithely ironic i| +46184|99307|O|111638.44|1998-02-14|4-NOT SPECIFIED|Clerk#000002400|0|hout the regular, fin| +46185|291908|O|254377.43|1997-07-13|3-MEDIUM|Clerk#000003157|0|furiously unusual theodolites. carefully i| +46186|335431|F|13445.95|1994-03-12|2-HIGH|Clerk#000004775|0|ding foxes cajole. furiously regular deposits boost blithely. quickly regula| +46187|572485|F|131370.05|1994-06-15|5-LOW|Clerk#000001215|0|rnes. ironic packag| +46188|734947|O|225463.10|1997-07-19|4-NOT SPECIFIED|Clerk#000003968|0|. bold platelets sleep. foxes boost. quickly e| +46189|478312|F|117455.44|1992-05-26|3-MEDIUM|Clerk#000001728|0|ctions doubt even, ironic excuses. accounts among the blithely express th| +46190|468148|F|130319.16|1992-07-16|2-HIGH|Clerk#000001259|0|ts breach furiously final notornis.| +46191|641920|F|29569.81|1993-03-14|4-NOT SPECIFIED|Clerk#000001648|0|ular accounts. speci| +46216|722047|F|24102.22|1994-07-10|4-NOT SPECIFIED|Clerk#000001861|0|along the ironic accounts. excuses are ac| +46217|431851|O|57597.63|1997-06-30|3-MEDIUM|Clerk#000002288|0|rave deposits. requests wake blith| +46218|353831|O|13095.52|1996-07-09|3-MEDIUM|Clerk#000000164|0|nal foxes use slyly. deposits| +46219|84314|O|214362.20|1996-07-24|1-URGENT|Clerk#000003085|0|ronic packages grow slyly carefully ruthless accounts.| +46220|313178|F|277355.94|1992-05-16|1-URGENT|Clerk#000000596|0| attainments wake quickly across the quickly even requests. furiously thin ins| +46221|75185|O|205476.90|1995-07-24|1-URGENT|Clerk#000004967|0|e furiously furious pinto beans; fluffily regular pac| +46222|629750|F|287549.37|1995-01-09|2-HIGH|Clerk#000000452|0| deposits haggle fluffily along the furiously special t| +46223|205535|F|351851.82|1993-08-19|1-URGENT|Clerk#000002913|0|s. furiously final ideas above the deposits are fluffily thi| +46248|670945|O|54301.65|1996-01-25|5-LOW|Clerk#000003776|0|equests at the regular deposits sleep blithely| +46249|315806|F|96455.63|1992-07-24|4-NOT SPECIFIED|Clerk#000004777|0|onic dolphins are quickly carefully ironic dolphins. requests | +46250|747640|F|148191.71|1992-02-27|4-NOT SPECIFIED|Clerk#000004177|0|e the ironic requests. ironic deposits use| +46251|74840|F|33506.41|1995-03-06|5-LOW|Clerk#000003755|0| excuses cajole according to the bold, regu| +46252|74494|F|292874.47|1994-01-13|2-HIGH|Clerk#000001204|0|ong the always final realms haggle against the quickly even | +46253|261953|F|42237.97|1995-03-09|4-NOT SPECIFIED|Clerk#000004383|0|ic packages haggle even deposits. quickly regular foxes dazzle| +46254|139576|O|233369.98|1997-06-07|1-URGENT|Clerk#000004073|0|es: regular theodolites haggle slyly furiously | +46255|578551|O|80690.56|1996-08-11|1-URGENT|Clerk#000000190|0| silent packages. furiously iro| +46280|702686|O|88959.00|1995-10-10|4-NOT SPECIFIED|Clerk#000000645|0|es snooze fluffily. bold instructions hang | +46281|534626|O|262721.45|1996-01-31|4-NOT SPECIFIED|Clerk#000001968|0|gle blithely blithely final excuses. | +46282|448150|O|203631.43|1997-12-12|3-MEDIUM|Clerk#000002249|0|ccounts nag furiously ironic, ironic instructions. bold, final theodo| +46283|535028|F|285865.94|1994-12-18|5-LOW|Clerk#000003110|0|ccounts dazzle slyly. slyly special pla| +46284|454768|O|52609.85|1995-10-14|3-MEDIUM|Clerk#000000364|0|iet packages wake carefully alongside of the slyly ironic req| +46285|14830|F|132307.63|1994-12-21|2-HIGH|Clerk#000002237|0|le furiously. quickly final idea| +46286|235696|F|159403.80|1994-04-07|4-NOT SPECIFIED|Clerk#000002450|0|efully regular deposits. excuses affix furiously carefully e| +46287|574147|O|207815.11|1997-09-07|3-MEDIUM|Clerk#000004741|0|ies use express requests. regular foxe| +46312|166879|O|199133.36|1996-03-28|2-HIGH|Clerk#000000180|0|yly around the even requests. slyly bold forges boost furi| +46313|464611|O|252650.81|1998-04-16|2-HIGH|Clerk#000003513|0|s wake slyly according to the blithely ironic deposits. furiously regular a| +46314|466204|O|48692.37|1996-11-23|3-MEDIUM|Clerk#000004832|0|y pending dolphins. regular deposits sl| +46315|218222|F|37024.35|1992-09-26|3-MEDIUM|Clerk#000000668|0|t packages upon the carefully ev| +46316|153160|O|176076.29|1996-02-03|1-URGENT|Clerk#000000990|0|arefully furiously b| +46317|148336|O|23935.79|1996-11-28|3-MEDIUM|Clerk#000001361|0|tions believe carefully with the regularly iron| +46318|57437|F|120115.97|1993-03-21|5-LOW|Clerk#000004954|0|uriously regular accounts. f| +46319|83879|F|169308.39|1992-04-17|5-LOW|Clerk#000001531|0|ideas! requests boost final, idle f| +46344|489733|O|172705.64|1997-11-02|2-HIGH|Clerk#000002166|0|ronic excuses. final, even deposits eat after the even packages. bli| +46345|438193|O|262121.66|1998-01-01|2-HIGH|Clerk#000002279|0|sual accounts boost furiously. regular foxes wake. carefully ironic Tiresi| +46346|444461|F|167813.17|1993-10-07|3-MEDIUM|Clerk#000000484|0|ar packages are blithely.| +46347|45752|F|292363.91|1992-01-11|2-HIGH|Clerk#000002847|0|ular packages. furiously bol| +46348|189401|F|160657.52|1994-12-15|4-NOT SPECIFIED|Clerk#000003997|0|ronic accounts affix quickly silent packages. quickly ironic deposi| +46349|251531|F|259825.04|1992-02-28|4-NOT SPECIFIED|Clerk#000001815|0|pendencies. fluffily ironic excuses wake furiously furious| +46350|480224|O|326352.15|1995-07-23|5-LOW|Clerk#000003044|0|: ironic requests use! regular foxes af| +46351|374395|O|124228.46|1996-06-25|5-LOW|Clerk#000003995|0|eas. foxes sleep slyly final requests. carefully final requests wake ironic | +46376|675521|O|65339.38|1997-03-30|5-LOW|Clerk#000003292|0|s cajole carefully blithely bold requests. sly| +46377|715180|O|252809.02|1996-01-07|2-HIGH|Clerk#000004098|0|al multipliers integrate ironic sauternes. fluffily slow theodolites aff| +46378|501460|F|151675.25|1993-10-26|5-LOW|Clerk#000000847|0|otes nag. furiously regular platelets cajole blithely| +46379|282406|F|26369.13|1994-01-06|1-URGENT|Clerk#000004578|0|totes eat furiously.| +46380|397456|O|413567.26|1997-01-02|3-MEDIUM|Clerk#000001522|0|ideas doze blithely. quickly regular d| +46381|536564|F|81671.00|1993-11-01|4-NOT SPECIFIED|Clerk#000001609|0|inal deposits boost alongside of the furiously final accoun| +46382|21139|O|80415.94|1996-03-04|1-URGENT|Clerk#000004238|0|le ironic dependencies. carefull| +46383|508541|F|116514.70|1993-12-28|5-LOW|Clerk#000003371|0|ts. ironic Tiresias are. silent, specia| +46408|47899|O|21054.67|1998-04-11|2-HIGH|Clerk#000000202|0|c instructions. ironic ideas use deposits. warthogs are furiously| +46409|265990|F|195084.54|1993-05-05|1-URGENT|Clerk#000000754|0|l excuses shall are even accounts| +46410|470512|F|297649.37|1994-05-01|3-MEDIUM|Clerk#000000730|0|tructions would wake blithely regular theodolites. carefully ironic deposit| +46411|635521|F|123424.31|1994-12-19|2-HIGH|Clerk#000003787|0|fily ironic frets. dependenci| +46412|445511|O|206880.13|1998-06-14|4-NOT SPECIFIED|Clerk#000004027|0|uickly final dolphins. pending asymptotes sleep. ironic, regular ins| +46413|438440|F|99773.68|1993-06-12|4-NOT SPECIFIED|Clerk#000000439|0|ide of the special instructions haggle special deposits. regular | +46414|109660|P|227289.89|1995-04-10|5-LOW|Clerk#000002135|0|ts nag. blithely final requests slee| +46415|305255|O|14141.99|1996-10-05|1-URGENT|Clerk#000004049|0|e instead of the carefully r| +46440|408577|F|71632.74|1994-11-22|4-NOT SPECIFIED|Clerk#000000200|0|e ironic accounts. bold instructions cajole. slyly re| +46441|695729|F|256724.04|1994-04-04|2-HIGH|Clerk#000001711|0|sits. ironic theodolites cajole care| +46442|603551|F|261368.66|1994-08-09|1-URGENT|Clerk#000001383|0|ideas haggle. daring, pending courts | +46443|117577|F|293629.23|1992-11-29|5-LOW|Clerk#000004013|0|s across the carefully regular deposits sl| +46444|605554|F|72478.33|1992-07-23|2-HIGH|Clerk#000002476|0|de of the blithely pending packages. furiously sil| +46445|26645|F|34736.42|1993-10-30|5-LOW|Clerk#000003175|0|e. bold instructions haggle furiously about the doggedly unusual req| +46446|58120|O|225919.27|1996-07-18|3-MEDIUM|Clerk#000000756|0|inal instructions. requests haggle fluffily| +46447|292646|F|239302.72|1992-08-10|4-NOT SPECIFIED|Clerk#000001106|0|posits wake. blithely bold accounts | +46472|740723|O|236538.32|1998-03-26|5-LOW|Clerk#000000635|0| sleep after the slyly ironic| +46473|69341|O|50266.93|1997-09-10|1-URGENT|Clerk#000000981|0|ges play quickly carefully final instructions. fur| +46474|651563|F|146040.65|1993-12-21|1-URGENT|Clerk#000002419|0|luffily. packages against the fu| +46475|61693|O|124810.16|1998-04-19|4-NOT SPECIFIED|Clerk#000000291|0|s haggle blithely final requests. special, pending warhorses haggle| +46476|370165|O|312650.22|1996-09-12|2-HIGH|Clerk#000004604|0|e the ironic requests. bold,| +46477|106157|O|70289.84|1995-09-16|1-URGENT|Clerk#000004393|0|ole across the furiously regular ins| +46478|676081|F|106905.90|1993-10-20|3-MEDIUM|Clerk#000003850|0|s among the quickly regu| +46479|365996|O|74265.27|1995-12-02|3-MEDIUM|Clerk#000004825|0| the regular requests sleep furiously among the asymptotes. packages wake| +46504|542404|O|35904.36|1996-10-06|3-MEDIUM|Clerk#000000453|0| fluffily final reque| +46505|677380|O|240501.55|1996-07-02|3-MEDIUM|Clerk#000003227|0|regular pinto beans kindle. ironic, final plate| +46506|458381|O|59520.49|1997-09-24|4-NOT SPECIFIED|Clerk#000003283|0| waters breach carefully. bli| +46507|7853|O|135895.33|1996-08-11|5-LOW|Clerk#000002075|0|s impress ironic epitaphs. permanently exp| +46508|719638|O|130426.96|1995-09-17|2-HIGH|Clerk#000002577|0| sleep fluffily slyly special dependencies. carefully reg| +46509|446050|F|193926.85|1992-08-08|5-LOW|Clerk#000000780|0| platelets would haggle. qui| +46510|507304|F|56775.91|1992-02-16|1-URGENT|Clerk#000000606|0|eep furiously. even request| +46511|258205|F|273144.23|1993-07-01|3-MEDIUM|Clerk#000000019|0| detect regularly above the fluffily final theodolites. fluffily special reque| +46536|139388|F|250173.45|1994-03-20|4-NOT SPECIFIED|Clerk#000002324|0|g quickly express pinto beans. slyly regular theod| +46537|438820|O|164860.02|1995-10-02|1-URGENT|Clerk#000004692|0|- final, unusual accounts boost over the express, unusual packages. q| +46538|477835|O|212500.95|1995-10-11|3-MEDIUM|Clerk#000002001|0|ic ideas are according to the silent theodolites| +46539|702902|F|162029.93|1993-06-06|2-HIGH|Clerk#000002252|0|uches engage. slyly final requests wake among the f| +46540|419450|F|43192.59|1995-01-29|3-MEDIUM|Clerk#000002368|0|are. final requests about the carefully pending dolp| +46541|437710|F|46600.53|1993-01-01|3-MEDIUM|Clerk#000004115|0|foxes cajole according to the furiously | +46542|581632|O|183832.62|1997-04-15|4-NOT SPECIFIED|Clerk#000000053|0| carefully express dependencies wake blithely. blithely regular theodolit| +46543|711487|F|37907.13|1993-10-08|4-NOT SPECIFIED|Clerk#000003015|0|y regular, ironic accounts. final asymptotes mold slyly blithely final | +46568|701203|F|388060.86|1993-04-16|4-NOT SPECIFIED|Clerk#000004458|0|e slyly. carefully unusual packages sleep blithe| +46569|357479|F|63300.27|1993-11-30|4-NOT SPECIFIED|Clerk#000003598|0|ic courts snooze furiously across the r| +46570|646390|O|6882.85|1995-07-09|3-MEDIUM|Clerk#000004116|0|telets alongside of the final foxes sleep blithely express depo| +46571|93928|O|32495.15|1995-10-09|2-HIGH|Clerk#000004259|0|packages. closely ironic Tiresias beyond the pending depos| +46572|632263|O|198822.41|1996-09-16|5-LOW|Clerk#000003696|0|luffily regular deposits are| +46573|441944|F|94037.71|1995-01-06|4-NOT SPECIFIED|Clerk#000003129|0|arefully regular acc| +46574|488578|F|257033.64|1994-11-10|1-URGENT|Clerk#000001783|0|fter the ideas cajole furiously carefully| +46575|507088|O|138296.34|1998-01-27|5-LOW|Clerk#000001525|0|ate regular, even ideas. pending, enticing theodolit| +46600|376927|O|104405.89|1997-02-09|3-MEDIUM|Clerk#000004448|0| quickly final courts. stealthy requests use | +46601|486446|O|33669.75|1996-05-24|3-MEDIUM|Clerk#000000260|0| realms. regular dependencies wake carefully express requests. slyly ironic r| +46602|681427|F|260113.44|1993-10-27|2-HIGH|Clerk#000000335|0| across the carefully silent patterns. blithely silent instructions ought to | +46603|239624|F|98669.86|1992-09-09|4-NOT SPECIFIED|Clerk#000002602|0|arefully slyly final dolphins. excuses| +46604|610088|O|366565.70|1996-08-18|2-HIGH|Clerk#000004437|0|y pending dugouts past the final, ironic forges| +46605|486178|O|157201.58|1995-07-26|5-LOW|Clerk#000002007|0|aphs sleep blithely bravely bold accounts. furiously even requests nag b| +46606|676679|F|275873.50|1994-04-05|4-NOT SPECIFIED|Clerk#000002844|0|ing theodolites haggle carefully. regular Tiresias sleep outsid| +46607|680299|F|204466.74|1993-12-07|2-HIGH|Clerk#000004405|0|r foxes. ironic, regular packages cajo| +46632|15107|O|12840.47|1998-01-05|4-NOT SPECIFIED|Clerk#000003761|0|l instructions. blithely enticing packages at the fluffily regular depe| +46633|391345|F|43681.93|1993-06-05|4-NOT SPECIFIED|Clerk#000004333|0|ayers. carefully special de| +46634|563566|O|256423.77|1997-01-01|3-MEDIUM|Clerk#000002040|0|fully ironic pinto beans. carefully even instructions are slyly.| +46635|88076|F|22473.57|1994-02-16|3-MEDIUM|Clerk#000004984|0|leep sometimes silent| +46636|542638|O|37575.43|1996-05-08|1-URGENT|Clerk#000003346|0|ould have to use slyly thinly final instructions. b| +46637|114421|O|149852.35|1998-01-16|1-URGENT|Clerk#000004436|0| excuses hinder furiously across the slyly ironic packages. furiously| +46638|62516|F|232307.32|1994-12-07|4-NOT SPECIFIED|Clerk#000003034|0|ully regular instructions. fluffily express i| +46639|692873|F|260933.48|1994-06-30|3-MEDIUM|Clerk#000003018|0|atelets wake quickly accounts. carefully bold deposits h| +46664|615865|F|110918.63|1992-08-26|2-HIGH|Clerk#000001981|0|rmanently unusual accounts. blithely regular gifts haggle carefully across t| +46665|72488|F|190698.81|1994-04-16|3-MEDIUM|Clerk#000003472|0|eep carefully. fluffily final i| +46666|292808|P|102390.61|1995-04-25|5-LOW|Clerk#000001022|0|ng the ideas wake excuses. carefully unusual dependenc| +46667|470063|F|293916.68|1992-07-28|3-MEDIUM|Clerk#000001328|0| among the slyly even dependencies. i| +46668|597196|F|142382.25|1992-06-30|1-URGENT|Clerk#000002309|0|l deposits across the furiously| +46669|557008|O|138895.03|1997-01-28|1-URGENT|Clerk#000003950|0|cajole furiously. regular deposit| +46670|103426|O|74617.58|1998-05-19|1-URGENT|Clerk#000003520|0|ns around the blithely quiet requests nag about the furiously silent th| +46671|501856|F|214903.17|1992-02-12|4-NOT SPECIFIED|Clerk#000003454|0|silent packages integrate blithely even theodolites. fluffi| +46696|166441|F|106558.80|1992-02-18|2-HIGH|Clerk#000000025|0|iously: slyly even dependencies against the| +46697|600883|F|274431.31|1992-02-16|1-URGENT|Clerk#000004438|0|t the deposits haggle slyly alongside of th| +46698|271331|F|63728.18|1992-04-13|2-HIGH|Clerk#000004887|0|quickly among the even accounts. slyly ironic instructions ea| +46699|243439|O|42054.33|1996-06-05|2-HIGH|Clerk#000004756|0|luffily express packages. regular asymptotes cajole against | +46700|206485|F|150808.80|1992-05-19|3-MEDIUM|Clerk#000002226|0|are. furiously express dolphins haggle| +46701|130628|O|136759.45|1998-04-07|5-LOW|Clerk#000004264|0|ng theodolites. furiously final i| +46702|205490|F|162902.79|1992-04-15|5-LOW|Clerk#000003411|0|stealthily express requests sleep. regular, ir| +46703|666062|F|263377.38|1993-12-26|2-HIGH|Clerk#000001231|0|lly final instructions across the regular, even | +46728|2873|O|75318.64|1996-10-13|2-HIGH|Clerk#000004980|0|scapades within the final grouches sleep f| +46729|280795|O|61804.23|1998-06-09|5-LOW|Clerk#000003064|0|ly against the bold theodolites.| +46730|299678|F|339784.37|1992-08-19|2-HIGH|Clerk#000001152|0|s. doggedly bold requests serve quickly. fluffily unusual instructions wak| +46731|426568|F|149223.51|1992-10-25|4-NOT SPECIFIED|Clerk#000004572|0|s sleep furiously above the| +46732|77335|F|170598.01|1993-11-05|4-NOT SPECIFIED|Clerk#000001074|0|inal ideas. bold instructions impress. regular, even acco| +46733|9925|F|282298.68|1994-05-20|4-NOT SPECIFIED|Clerk#000001206|0|y requests. careful| +46734|280867|F|113737.00|1994-05-22|4-NOT SPECIFIED|Clerk#000003410|0|nusual deposits. never express asymptotes cajole silent inst| +46735|16982|F|55016.56|1994-02-26|5-LOW|Clerk#000003957|0|thely bold requests-- excuses haggle s| +46760|399715|O|103752.85|1996-04-11|1-URGENT|Clerk#000000804|0|s haggle requests. fluffily unusual foxes integrate blithely even orb| +46761|234643|O|57249.08|1995-07-17|4-NOT SPECIFIED|Clerk#000000205|0|kly ironic pains wake. realms across the regular ide| +46762|128131|F|178189.39|1992-02-01|3-MEDIUM|Clerk#000003704|0|rding to the ironic foxes| +46763|231016|F|239979.28|1994-12-31|4-NOT SPECIFIED|Clerk#000003359|0|even theodolites wake furiously blithely pending instructions. quickly ironi| +46764|655124|O|57441.82|1996-11-15|3-MEDIUM|Clerk#000003851|0|ake after the blithely even accounts; excuses along the regular, regular gro| +46765|660514|O|312146.88|1998-05-13|3-MEDIUM|Clerk#000001288|0|blithely regular packages cajole slyly. quickly bold packages sleep furio| +46766|504124|O|54858.95|1996-12-04|2-HIGH|Clerk#000000849|0|latelets-- even requests haggle. furiously regular deposits w| +46767|41974|O|243609.58|1997-04-01|3-MEDIUM|Clerk#000002800|0|e furiously careful deposits. e| +46792|445684|O|275134.91|1996-01-14|2-HIGH|Clerk#000001129|0|ckly special ideas nag furiousl| +46793|338879|O|146285.59|1995-11-16|5-LOW|Clerk#000000623|0|e ironic accounts. sometimes bold accounts haggle across the busily regu| +46794|33755|O|151371.17|1998-02-26|1-URGENT|Clerk#000004320|0|y even accounts boost quickly according to the carefull| +46795|315352|O|140118.01|1995-07-28|3-MEDIUM|Clerk#000004365|0|ironic accounts. final, ironic ideas poach ironic acc| +46796|594830|O|133420.21|1998-03-10|5-LOW|Clerk#000000933|0|nstructions nag carefully. fluf| +46797|551572|F|288145.14|1992-10-22|5-LOW|Clerk#000003405|0| the carefully ironic requests. always | +46798|244825|F|106122.41|1992-01-11|2-HIGH|Clerk#000003504|0|ar packages; special, final deposits sleep carefully alon| +46799|270019|F|148517.63|1993-07-15|4-NOT SPECIFIED|Clerk#000003230|0| among the ideas. blithely bold accounts since the blithely spec| +46824|681611|F|34509.06|1993-04-05|1-URGENT|Clerk#000001937|0|s are fluffily unusual instruction| +46825|335879|O|201569.13|1998-04-16|5-LOW|Clerk#000002012|0|usly pending accounts ac| +46826|609643|F|95248.30|1993-12-09|5-LOW|Clerk#000004976|0|ggle carefully deposit| +46827|491435|F|68602.11|1992-09-24|3-MEDIUM|Clerk#000000932|0|nusual instructions above the carefully special e| +46828|539233|F|38062.96|1993-06-04|5-LOW|Clerk#000002058|0|r accounts are closely.| +46829|622421|O|251434.83|1996-09-25|3-MEDIUM|Clerk#000004100|0|s. special, express instructions cajole furio| +46830|15223|O|243843.82|1997-03-18|5-LOW|Clerk#000002632|0|s wake blithely requests. doggedly| +46831|100084|O|283981.25|1996-06-28|5-LOW|Clerk#000000336|0|refully unusual ideas x-ray quickly above the quickly r| +46856|584840|F|76163.12|1995-04-07|5-LOW|Clerk#000002097|0|gular, regular deposits nag among the blithely ironic pin| +46857|643385|F|86213.33|1995-01-16|2-HIGH|Clerk#000003094|0|frets are furiously about the fluffi| +46858|610418|F|108341.74|1993-09-16|5-LOW|Clerk#000003530|0|yly against the accounts: r| +46859|35189|P|118360.32|1995-03-19|5-LOW|Clerk#000003442|0| special accounts. finally pending deposits nag about the sly| +46860|408655|O|47954.37|1995-10-24|1-URGENT|Clerk#000004602|0|uriously express dolphins unwind carefully along the sly| +46861|498913|F|293604.19|1992-04-30|2-HIGH|Clerk#000002810|0|. unusual, ruthless requests haggle slyly. furiously regular reque| +46862|223730|F|113914.99|1994-08-11|2-HIGH|Clerk#000001767|0| the ideas-- ironic, silent instructions mold. slyly ironic accounts| +46863|470986|F|134892.47|1993-01-19|3-MEDIUM|Clerk#000003867|0|uriously bold depos| +46888|356320|O|159095.64|1996-01-17|2-HIGH|Clerk#000002142|0|into beans are slyly.| +46889|664882|O|235565.62|1996-01-25|2-HIGH|Clerk#000004329|0| express foxes cajole above the | +46890|390154|O|173212.81|1995-09-03|3-MEDIUM|Clerk#000002358|0|ctions cajole furiously regular accounts. express requests haggle furiously fu| +46891|35782|O|50618.04|1995-05-20|2-HIGH|Clerk#000001426|0|ts above the final, pending deposits detect da| +46892|612458|F|22096.14|1992-06-03|2-HIGH|Clerk#000000231|0|al excuses after the final r| +46893|572470|O|53383.20|1998-05-28|4-NOT SPECIFIED|Clerk#000000590|0|sias wake blithely ab| +46894|485053|O|87059.43|1997-02-22|1-URGENT|Clerk#000000603|0|ly. furiously regular orbits use quickly by the even, even dependenci| +46895|509620|O|171954.09|1998-06-21|3-MEDIUM|Clerk#000001258|0| foxes. regular deposit| +46920|179111|F|225746.79|1993-10-02|5-LOW|Clerk#000004376|0|ncies. regular requests sleep fluffily. blithely even deposits believe furio| +46921|557869|F|150755.19|1993-02-09|3-MEDIUM|Clerk#000003375|0|yly according to the carefully even package| +46922|347348|F|70131.73|1993-10-15|2-HIGH|Clerk#000001585|0| special theodolites. furiously special platelets abov| +46923|619771|F|157115.47|1992-03-16|4-NOT SPECIFIED|Clerk#000001531|0|le permanently among| +46924|480997|F|104563.41|1993-08-28|3-MEDIUM|Clerk#000004755|0|riously bold theodolites: furiously bold requests according to| +46925|603622|F|2955.12|1992-03-06|5-LOW|Clerk#000000549|0|sleep pending, silent packages. blithely ironic theodolites haggle flu| +46926|548764|O|122271.75|1996-07-14|3-MEDIUM|Clerk#000001421|0|ns. ironic excuses cajole| +46927|314692|F|231939.98|1992-07-16|3-MEDIUM|Clerk#000003238|0|sual courts cajole quic| +46952|4292|O|49947.52|1996-12-18|2-HIGH|Clerk#000003788|0|ound the furiously u| +46953|120629|O|195625.69|1997-05-20|5-LOW|Clerk#000003907|0|ges wake quickly unusual excuses. express, bold| +46954|155185|O|97352.80|1997-09-01|3-MEDIUM|Clerk#000002427|0| final requests. ironic, sil| +46955|436960|F|69197.01|1994-08-16|3-MEDIUM|Clerk#000000738|0| about the thin, bold foxes. ca| +46956|730999|O|53419.51|1996-08-04|3-MEDIUM|Clerk#000004389|0|refully above the quick tithes. ideas integrate sly| +46957|130093|F|196413.01|1992-12-31|2-HIGH|Clerk#000000233|0|pecial accounts. carefully bold accounts believe carefully. quickl| +46958|192448|O|57919.70|1997-02-22|5-LOW|Clerk#000003598|0|fully unusual requests. quickly | +46959|460792|F|156985.11|1992-08-27|4-NOT SPECIFIED|Clerk#000000036|0|ss packages. stealthy instructions cajole slyly e| +46984|23701|F|224112.13|1992-07-25|3-MEDIUM|Clerk#000001043|0|g foxes detect quickly across the platelets| +46985|72619|F|231505.96|1992-09-04|1-URGENT|Clerk#000004466|0|ending, express requests cajole furiously against the bravely even foxes. | +46986|229894|O|83417.51|1996-08-07|4-NOT SPECIFIED|Clerk#000000139|0|egular asymptotes cajole after the regular packages. fluffily silent | +46987|553613|F|265512.07|1993-01-25|3-MEDIUM|Clerk#000004944|0|. blithely final decoys sleep furiously a| +46988|71188|O|187531.52|1998-01-06|2-HIGH|Clerk#000002140|0|carefully special deposits. blithely regular requests| +46989|180361|F|143047.23|1994-04-05|4-NOT SPECIFIED|Clerk#000002979|0|ach pains. requests affix. furiously express sentiments about the slyly | +46990|557495|F|128461.13|1994-03-03|3-MEDIUM|Clerk#000004467|0|sts. pinto beans detect slyly carefully ironic pinto beans. s| +46991|60694|O|175543.82|1996-08-18|5-LOW|Clerk#000001852|0|the special, final ideas. bold requests l| +47016|69725|O|30620.84|1996-11-05|2-HIGH|Clerk#000003518|0|. slyly final requests cajole attainments. quickly | +47017|355160|F|78260.29|1994-01-10|5-LOW|Clerk#000001875|0|ackages boost slyly even, regular hockey players! final platelets| +47018|661414|F|137208.31|1992-01-25|2-HIGH|Clerk#000002506|0| requests. special, regular ideas use. furiously unusual theodolites abo| +47019|624229|F|131644.94|1993-03-25|2-HIGH|Clerk#000003933|0|. slyly bold instructions grow silently carefully unusual accounts. | +47020|399667|F|134719.55|1995-02-11|5-LOW|Clerk#000000797|0|arefully regular deposits. slyly regular packages sleep sly| +47021|175366|O|36766.89|1996-04-12|1-URGENT|Clerk#000000573|0|ithely above the carefully ironic accounts. slyl| +47022|594685|O|180804.07|1996-09-04|1-URGENT|Clerk#000003231|0|slyly regular requests sleep furiously accor| +47023|368278|O|384290.38|1997-05-12|3-MEDIUM|Clerk#000001507|0| enticingly regular pinto bean| +47048|646883|F|82700.41|1994-02-27|1-URGENT|Clerk#000000802|0|inments haggle carefully around the ideas. final ideas| +47049|147097|F|161958.59|1994-10-30|1-URGENT|Clerk#000000198|0|e furiously despite the even theodolites. carefully pe| +47050|248420|F|337335.07|1993-06-23|2-HIGH|Clerk#000000399|0|s. bold, pending depe| +47051|690479|F|112674.89|1992-09-13|4-NOT SPECIFIED|Clerk#000001165|0|the slyly unusual ideas: carefully quiet deposits kindle quickly| +47052|118501|P|158809.81|1995-05-10|3-MEDIUM|Clerk#000000778|0|across the special, final ins| +47053|373330|O|181828.51|1997-03-01|4-NOT SPECIFIED|Clerk#000000752|0|packages according to the furiously regular requests haggle along the final, s| +47054|49543|F|40258.91|1993-07-05|4-NOT SPECIFIED|Clerk#000000687|0| ruthless foxes. even packages boost bravely furiously express pla| +47055|166531|O|298518.42|1996-11-25|1-URGENT|Clerk#000001914|0|y quickly even instructions. blithely even packages sleep furiously| +47080|614293|O|78135.56|1995-09-16|2-HIGH|Clerk#000003435|0|foxes. carefully express theodolites gr| +47081|660922|P|154542.24|1995-02-20|2-HIGH|Clerk#000000403|0|ven platelets boost furiously ironic pl| +47082|600308|O|28351.60|1997-07-22|5-LOW|Clerk#000002843|0|ole doggedly. boldly pending multipliers affix carefully carefully r| +47083|373108|O|168731.65|1996-12-13|1-URGENT|Clerk#000002463|0|nal asymptotes boost fluffily carefully unusual foxes.| +47084|62821|O|290047.79|1998-07-26|5-LOW|Clerk#000002619|0|ve. never express instructions boost furiously. furiously express | +47085|554968|P|173928.95|1995-04-09|2-HIGH|Clerk#000001060|0|s. slyly regular accounts boost. pending packag| +47086|336395|F|251749.98|1992-09-09|5-LOW|Clerk#000003631|0|ously fluffily express accounts. blithely final asy| +47087|279484|O|218222.29|1997-03-21|5-LOW|Clerk#000004801|0|he sheaves. furiously unusual re| +47112|34504|O|256228.74|1998-05-16|2-HIGH|Clerk#000004144|0|eodolites cajole slyly flu| +47113|152719|F|181469.35|1993-01-05|2-HIGH|Clerk#000003115|0|fily requests. quickly special ideas impress furiously atop the regular, re| +47114|219674|O|104155.71|1995-09-25|2-HIGH|Clerk#000004785|0|ending platelets. quickly pending| +47115|559306|O|113083.09|1998-02-27|4-NOT SPECIFIED|Clerk#000001047|0|pending dolphins wake ironic foxes. quickly unusual forges cajole qui| +47116|479539|O|71792.57|1997-08-02|2-HIGH|Clerk#000000397|0|lar, regular pinto beans use slyly ca| +47117|102239|F|142950.17|1994-01-29|4-NOT SPECIFIED|Clerk#000004982|0|es. slyly dogged ideas are slyly fu| +47118|67100|P|184805.10|1995-06-02|1-URGENT|Clerk#000003191|0|atelets. furiously express dependencies detect ironically alo| +47119|497626|O|102774.76|1997-01-28|1-URGENT|Clerk#000004687|0|uests. ironic, express accounts are slyly along the regular deposits. express | +47144|322277|F|242042.83|1995-01-15|3-MEDIUM|Clerk#000003034|0|ts. express foxes use blithely about t| +47145|1417|F|221952.76|1993-07-14|5-LOW|Clerk#000000772|0|sits. busily unusual ideas nag before the blithely express packages. slyly s| +47146|561502|F|151255.30|1994-09-24|2-HIGH|Clerk#000003401|0|he blithely final theod| +47147|655831|O|266557.53|1997-04-29|5-LOW|Clerk#000003186|0|tes are bold asymptotes. even, final accounts cajole thinl| +47148|530225|O|42636.15|1998-01-13|1-URGENT|Clerk#000003208|0|l dugouts cajole furiously. blithely bold foxes cajo| +47149|725524|F|149538.22|1992-09-22|3-MEDIUM|Clerk#000002828|0|across the slyly final warthogs. fi| +47150|369577|F|34638.71|1993-04-11|5-LOW|Clerk#000003979|0|le blithely among the packag| +47151|724588|F|141496.53|1994-11-24|3-MEDIUM|Clerk#000004558|0|instructions. carefully regular t| +47176|380539|F|16831.31|1994-09-06|2-HIGH|Clerk#000002009|0| across the furiously regular accounts. furiously even instructions cajole| +47177|463996|O|212548.78|1997-02-01|4-NOT SPECIFIED|Clerk#000003025|0|ully even asymptotes throughou| +47178|615163|O|194761.17|1998-04-04|2-HIGH|Clerk#000001755|0|ymptotes boost according to the even, pending excuses. blithely | +47179|279806|O|317082.68|1996-06-24|2-HIGH|Clerk#000003249|0|uffily final requests. express instructions cajole blithe| +47180|199204|F|299238.89|1993-07-31|4-NOT SPECIFIED|Clerk#000003820|0|ar packages promise silently. furiously pendin| +47181|748942|O|99232.31|1998-04-11|1-URGENT|Clerk#000001998|0|odolites lose doggedly ironic packages. excuses among the bold, final reque| +47182|217552|O|86609.20|1997-01-05|2-HIGH|Clerk#000003129|0|jole according to the ironic packa| +47183|143689|O|125871.69|1997-05-31|3-MEDIUM|Clerk#000002834|0|al accounts wake. special, unusual theodol| +47208|724237|P|233583.27|1995-05-07|3-MEDIUM|Clerk#000000322|0|beans. blithe deposits sleep blithely pinto bea| +47209|476917|O|150670.79|1998-05-27|5-LOW|Clerk#000004444|0|posits are blithely after the furiously | +47210|287723|O|66590.99|1995-05-24|3-MEDIUM|Clerk#000000177|0|y ironic deposits na| +47211|508301|F|310652.23|1995-01-19|4-NOT SPECIFIED|Clerk#000001685|0|packages. idly unusual orbits sleep. blithely close d| +47212|498368|F|259675.25|1994-03-07|5-LOW|Clerk#000003754|0|gular platelets after the blithely even deposit| +47213|69226|F|154587.42|1993-03-29|4-NOT SPECIFIED|Clerk#000003136|0|ions haggle blithely furiously express deposits? finally expres| +47214|220195|O|243507.45|1998-07-01|3-MEDIUM|Clerk#000004533|0|longside of the furious, ruthless | +47215|310949|F|262937.35|1992-04-18|3-MEDIUM|Clerk#000002516|0|onic dependencies. even orbits affix carefully quickly final pin| +47240|105571|O|206857.85|1996-08-05|3-MEDIUM|Clerk#000001962|0|rash furiously. slyly bold accounts wake quietl| +47241|552553|O|150654.33|1998-01-19|3-MEDIUM|Clerk#000002520|0|l requests. deposits haggle blithely; bl| +47242|225533|O|166100.75|1998-03-24|5-LOW|Clerk#000003264|0|ts. regular requests wake. blithely regular theodolites mold: bli| +47243|24872|O|198866.85|1995-12-31|3-MEDIUM|Clerk#000001224|0|e slyly regular accounts. blithely final requests according to the furiously | +47244|263149|P|144065.39|1995-05-22|5-LOW|Clerk#000002996|0|s. quickly regular foxes haggle ironic instructi| +47245|729145|O|95714.68|1998-06-22|2-HIGH|Clerk#000003664|0| requests sleep after the decoys| +47246|479239|F|1795.06|1995-02-06|5-LOW|Clerk#000003585|0|latelets are about the ca| +47247|299071|F|97846.75|1992-03-14|4-NOT SPECIFIED|Clerk#000004142|0|lly regular ideas are blithely: unusual, express theodol| +47272|727462|F|160333.27|1994-02-05|3-MEDIUM|Clerk#000003090|0|regular pinto beans affix blithely final | +47273|682000|P|238322.35|1995-05-21|1-URGENT|Clerk#000004356|0|g the furiously ironic accounts. even foxes belie| +47274|122087|O|54608.33|1998-08-02|5-LOW|Clerk#000001203|0| express excuses dazzle quic| +47275|656485|O|45751.84|1995-04-18|5-LOW|Clerk#000004637|0|lar dolphins poach slowly slyly final accounts| +47276|287477|F|220993.37|1992-04-16|5-LOW|Clerk#000003045|0|tructions. courts sleep against the theo| +47277|114209|F|152052.43|1995-01-21|1-URGENT|Clerk#000002301|0|ully regular platelets. even, final requests according to the quickl| +47278|246280|F|142812.34|1992-04-26|4-NOT SPECIFIED|Clerk#000004521|0|tegrate carefully. regular accounts cajole above the furiously special waters| +47279|717604|F|126978.00|1995-02-03|4-NOT SPECIFIED|Clerk#000001168|0|ross the pending packages sleep above the slyly final instructions. ca| +47304|5404|F|308084.18|1993-07-08|5-LOW|Clerk#000001212|0|uests among the carefully even ideas are blithely even accounts. q| +47305|60862|O|123004.03|1997-02-22|4-NOT SPECIFIED|Clerk#000004483|0|yly even attainments are furiousl| +47306|645313|O|41131.12|1996-10-26|1-URGENT|Clerk#000000964|0|se final, pending in| +47307|1849|F|41646.34|1992-02-07|2-HIGH|Clerk#000003731|0|ross the blithely unusual requests. furiously| +47308|312209|P|182517.66|1995-04-04|3-MEDIUM|Clerk#000000416|0|ons are stealthily above the carefu| +47309|280621|F|98560.01|1993-02-05|3-MEDIUM|Clerk#000004268|0|mes regular packages. slyly ironic deposits af| +47310|369650|O|163421.60|1996-02-22|3-MEDIUM|Clerk#000002212|0|ironic forges dazzle blithely. ruthlessly fluffy| +47311|440981|O|165577.59|1996-10-22|2-HIGH|Clerk#000000196|0| even packages haggle. quickly silent ideas cajole carefully above the pint| +47336|62417|O|264200.64|1996-03-14|4-NOT SPECIFIED|Clerk#000003027|0|ockey players about the quickly special in| +47337|532184|F|174278.49|1993-06-03|3-MEDIUM|Clerk#000002577|0|nts haggle blithely pinto beans. ironic requests ne| +47338|665291|F|154730.78|1992-12-17|3-MEDIUM|Clerk#000003021|0|kly bold platelets above the iro| +47339|545764|F|326588.52|1992-06-09|4-NOT SPECIFIED|Clerk#000001936|0|requests across the| +47340|133340|O|158108.78|1998-04-05|3-MEDIUM|Clerk#000003239|0|rts haggle after the express, even requ| +47341|40807|O|117614.46|1996-10-15|4-NOT SPECIFIED|Clerk#000004102|0| blithely pending deposits. furiously even epitaphs are slyly final fox| +47342|319010|F|210176.61|1994-05-13|3-MEDIUM|Clerk#000001219|0|ach slyly theodolites. quickly regular packages affix carefully aroun| +47343|589325|P|173973.42|1995-05-17|4-NOT SPECIFIED|Clerk#000004001|0|ng excuses are silently alongside of the regul| +47368|280855|F|235036.60|1995-03-02|1-URGENT|Clerk#000000042|0|r requests boost above the daring| +47369|578557|F|21147.09|1993-03-22|2-HIGH|Clerk#000001620|0|es. slyly regular deposits sleep ca| +47370|28811|F|341585.22|1992-06-01|2-HIGH|Clerk#000000416|0|s sleep carefully blithely bold deposits. slyly ironic deposits nod sly| +47371|469807|O|208795.94|1998-05-03|4-NOT SPECIFIED|Clerk#000001597|0|y sleep around the blithely ironic accounts. regular platelets wake slyly dar| +47372|32218|F|155906.75|1993-03-01|5-LOW|Clerk#000002065|0|arefully regular accounts. eve| +47373|710200|O|51096.02|1996-01-01|5-LOW|Clerk#000001232|0|st the slyly special packages. bravely ruthless instructions wake ac| +47374|48494|O|79296.05|1995-11-14|5-LOW|Clerk#000004412|0| quickly furious fo| +47375|526096|F|108866.89|1994-05-23|1-URGENT|Clerk#000001400|0|deposits nag slyly according to the slyly unusual| +47400|326917|O|63898.13|1997-09-24|3-MEDIUM|Clerk#000000602|0|onic asymptotes use furiously final requests. f| +47401|721531|F|74937.77|1994-10-21|4-NOT SPECIFIED|Clerk#000000707|0|slyly alongside of the ironic id| +47402|13195|F|63093.65|1993-07-16|4-NOT SPECIFIED|Clerk#000000899|0|ions. fluffily pending requests above the slyly silent instructions haggle | +47403|488737|F|61857.63|1994-07-07|4-NOT SPECIFIED|Clerk#000000264|0|quickly ironic requests. bravely unusual dolphins cajole | +47404|195035|F|214671.80|1994-02-19|3-MEDIUM|Clerk#000001254|0|posits. pending packages after the acco| +47405|451420|F|59671.65|1994-04-22|1-URGENT|Clerk#000001065|0|h. blithely bold theodolites sleep slyly. quickly fin| +47406|745340|F|26431.44|1992-04-06|1-URGENT|Clerk#000004714|0| deposits. blithely pe| +47407|422611|F|229530.01|1992-10-25|1-URGENT|Clerk#000000074|0|ly. fluffily even accounts are. | +47432|315397|F|297770.33|1993-03-25|5-LOW|Clerk#000001497|0|st slyly across the slyly final deposits. bold reques| +47433|595234|F|101310.10|1994-02-24|5-LOW|Clerk#000000522|0| ironic theodolites wake caref| +47434|592006|F|150937.04|1995-01-05|5-LOW|Clerk#000002922|0|al deposits wake slyly. ironic accounts at the unusual i| +47435|316525|O|244991.37|1997-10-16|4-NOT SPECIFIED|Clerk#000002269|0| fluffily regular deposits sleep carefully after the blithely regular sen| +47436|82642|O|54318.37|1995-07-22|4-NOT SPECIFIED|Clerk#000000931|0|es. slyly regular excuses are carefully furiously | +47437|703486|F|54999.67|1992-04-07|3-MEDIUM|Clerk#000002737|0|ickly ironic dependencies. ironic courts unwind carefully ironic r| +47438|471103|P|143341.66|1995-03-21|2-HIGH|Clerk#000002531|0|sly pending deposits. furiously final ideas affi| +47439|68011|O|157847.76|1995-06-19|3-MEDIUM|Clerk#000003757|0|warhorses are pendin| +47464|58786|O|205163.46|1996-05-02|4-NOT SPECIFIED|Clerk#000002532|0|doze according to the furiously even foxes. i| +47465|247570|F|47381.68|1995-02-08|1-URGENT|Clerk#000000941|0|ic excuses cajole quickly final, final requests| +47466|629323|F|235712.74|1993-10-04|1-URGENT|Clerk#000004285|0|lar ideas integrate slyly | +47467|519667|F|14816.69|1992-04-14|5-LOW|Clerk#000004563|0|eposits. fluffily silent theodolites cajole. ironic requests aft| +47468|270961|F|207737.60|1993-05-21|1-URGENT|Clerk#000000603|0|d platelets. regular req| +47469|38674|O|167421.81|1998-03-01|1-URGENT|Clerk#000000263|0|ajole fluffily furiously regular th| +47470|469201|O|16723.48|1997-05-18|5-LOW|Clerk#000003554|0|onic accounts sleep carefully according to the blithely quick requ| +47471|342178|F|249332.95|1992-04-08|1-URGENT|Clerk#000001051|0| furiously even requests sleep blithe| +47496|734276|F|365889.32|1992-08-29|3-MEDIUM|Clerk#000001326|0| blithe pinto beans. slyly even dolphins haggle carefully express requests. s| +47497|468325|F|273090.48|1993-07-24|5-LOW|Clerk#000002471|0|e carefully. blithely regular requests after the | +47498|612554|O|146581.81|1995-08-29|1-URGENT|Clerk#000004421|0|t slyly. blithe, busy| +47499|691448|F|63394.64|1994-08-30|4-NOT SPECIFIED|Clerk#000002120|0|somas. ironic foxes sleep against th| +47500|654983|F|116025.22|1992-07-08|1-URGENT|Clerk#000001293|0|foxes inside the dogged deposits play about the slyly ironic packages. blithel| +47501|537781|O|78519.04|1996-03-09|3-MEDIUM|Clerk#000003251|0|slyly express foxes boo| +47502|212701|F|160091.45|1993-10-09|5-LOW|Clerk#000003014|0|lly blithely quiet accounts. fluffily b| +47503|354136|F|340104.16|1994-10-09|1-URGENT|Clerk#000003463|0|packages wake carefully. bold foxes cajole| +47528|682550|F|73024.35|1994-06-04|1-URGENT|Clerk#000004994|0|ronic pinto beans are along the fluffily even foxes. carefully specia| +47529|363170|F|32918.10|1993-12-15|4-NOT SPECIFIED|Clerk#000001661|0|ithely ironic packages wake. carefully unusual acco| +47530|294058|F|200409.11|1992-08-24|4-NOT SPECIFIED|Clerk#000000965|0|sits instead of the special deposit| +47531|466726|O|34333.41|1995-04-29|2-HIGH|Clerk#000001328|0|thely among the carefully pending ins| +47532|740605|F|239254.65|1992-11-02|4-NOT SPECIFIED|Clerk#000004298|0|fully pending deposits mainta| +47533|321445|F|214845.02|1992-05-02|2-HIGH|Clerk#000000372|0|refully bold packages. quickly bol| +47534|263851|O|61346.27|1996-05-31|3-MEDIUM|Clerk#000002757|0|ecial instructions grow slyly silent, ironic theodol| +47535|524057|O|257661.62|1997-11-16|5-LOW|Clerk#000000005|0|ily regular theodolites; furiously even theodolites sleep. quickly | +47560|561113|O|85671.72|1998-03-10|1-URGENT|Clerk#000000828|0|ns unwind unusual requests-| +47561|117709|O|51476.05|1995-05-20|4-NOT SPECIFIED|Clerk#000000826|0| special accounts detect requests: quic| +47562|572392|O|72123.29|1995-06-12|2-HIGH|Clerk#000002064|0|requests wake quickly ideas. blithely ironic requests above the c| +47563|683981|F|93943.81|1994-05-07|1-URGENT|Clerk#000000827|0|eas maintain furiously according to the quickly regular depe| +47564|404644|F|11310.27|1994-11-24|5-LOW|Clerk#000004597|0|es? furiously regular dolphins haggle along the | +47565|589139|F|96532.13|1992-09-02|5-LOW|Clerk#000000964|0|tect slyly. special theodolites ca| +47566|142639|O|60063.24|1995-07-12|3-MEDIUM|Clerk#000001409|0|raids. regular, regular th| +47567|306266|O|67781.17|1997-06-22|3-MEDIUM|Clerk#000004977|0| even requests. slyly final re| +47592|156718|F|50360.96|1994-09-08|4-NOT SPECIFIED|Clerk#000002484|0| regular packages. carefully regular packages haggle carefully fur| +47593|689908|F|79538.60|1993-08-29|2-HIGH|Clerk#000003735|0|s deposits integrate. regular theodolites poach slyl| +47594|275359|F|162323.22|1992-09-13|3-MEDIUM|Clerk#000003496|0|ns. blithely even dependencies around the final, e| +47595|455665|O|154508.23|1998-02-08|3-MEDIUM|Clerk#000002002|0|ideas use carefully regular pinto beans. slyly even deposits run. blit| +47596|98284|O|61415.26|1996-11-16|2-HIGH|Clerk#000003104|0|ke bold, bold multipliers; ironic pac| +47597|351926|O|257000.22|1995-11-19|3-MEDIUM|Clerk#000003981|0|ly silent pinto beans alongside of the final depos| +47598|304105|F|287510.93|1992-07-10|1-URGENT|Clerk#000004011|0|slyly express ideas haggle ca| +47599|564118|F|100976.25|1993-02-06|2-HIGH|Clerk#000003912|0|nto beans sleep furiously whithout the packages. slyly even packag| +47624|350162|F|38892.20|1993-03-22|1-URGENT|Clerk#000003394|0|y final accounts! fluffily unusual requests engage idly. slyly special requ| +47625|661865|F|237629.14|1992-02-20|2-HIGH|Clerk#000000456|0|ickly across the unusual theodolites. furiously bold in| +47626|710551|O|158107.61|1997-04-25|2-HIGH|Clerk#000001133|0|thely ironic frays.| +47627|726541|O|27534.92|1997-10-08|5-LOW|Clerk#000004721|0|ss excuses wake ironic theodolites. caref| +47628|198920|O|98103.45|1996-06-19|5-LOW|Clerk#000003449|0|s cajole. instructions haggle after the furi| +47629|489088|O|14993.85|1995-06-27|1-URGENT|Clerk#000003213|0|e furiously. quickly regular accounts dazzle quickl| +47630|85369|O|219036.83|1996-06-09|3-MEDIUM|Clerk#000000945|0| use furiously final hockey playe| +47631|26527|O|104213.26|1998-05-18|1-URGENT|Clerk#000004719|0|rate carefully carefully final accounts. ironic packages above the final, | +47656|334366|O|264568.53|1996-02-14|3-MEDIUM|Clerk#000001383|0|inal dolphins cajole furiously around the unusual dependencies. furiously bol| +47657|666125|O|105863.32|1996-10-13|4-NOT SPECIFIED|Clerk#000002483|0|ial deposits. platelets cajole against the s| +47658|306604|F|7830.48|1995-02-12|4-NOT SPECIFIED|Clerk#000000697|0|e unusual courts. foxes | +47659|581284|F|32545.15|1993-05-04|5-LOW|Clerk#000002920|0|s according to the furiously even requests detect stealthily | +47660|116851|F|262538.66|1992-12-18|4-NOT SPECIFIED|Clerk#000000049|0|es are. fluffily final instructions | +47661|392356|F|275179.79|1992-10-09|1-URGENT|Clerk#000003819|0| furiously final deposits d| +47662|309029|F|186340.60|1993-07-25|5-LOW|Clerk#000004982|0|c requests. platelets use fluffily slowly even pinto beans. fluffily sp| +47663|96332|F|7747.47|1993-03-21|3-MEDIUM|Clerk#000001959|0|y regular notornis atop the quickly express accounts integrate regular, un| +47688|547427|F|26305.21|1994-04-29|1-URGENT|Clerk#000004632|0|ns was about the carefully ir| +47689|344164|F|69428.41|1993-07-25|1-URGENT|Clerk#000004672|0|he instructions-- slyly final packages cajo| +47690|348851|O|11584.72|1996-02-21|1-URGENT|Clerk#000000236|0| above the blithely regular reques| +47691|384113|O|222731.46|1996-09-16|3-MEDIUM|Clerk#000004588|0|. bold packages was blithely along the accounts. ide| +47692|522592|F|330094.22|1993-06-17|2-HIGH|Clerk#000003456|0| quickly ironic requests nag| +47693|672226|F|19499.21|1992-04-02|5-LOW|Clerk#000003058|0| instructions. furiously permanent accounts wake slyly quickly ironic| +47694|82877|O|105096.34|1995-10-03|2-HIGH|Clerk#000003873|0|ld deposits cajole among the quickly even instructions. regular, even reque| +47695|147617|F|38264.02|1992-06-07|3-MEDIUM|Clerk#000003606|0|ly across the fluffily f| +47720|748474|F|91998.22|1993-06-23|5-LOW|Clerk#000001887|0|s engage after the slyly pending orbits. ironi| +47721|581455|F|144482.57|1994-02-20|4-NOT SPECIFIED|Clerk#000004871|0|egular packages about the deposits sleep fluffil| +47722|742031|O|166096.01|1996-04-01|3-MEDIUM|Clerk#000003439|0|ajole regular instructions. quietly expres| +47723|311123|F|211391.04|1993-03-30|3-MEDIUM|Clerk#000002446|0|lithely according to the furiously regular instructions. furiously ironic | +47724|41849|O|72695.27|1997-03-18|5-LOW|Clerk#000001273|0| nag carefully during the furiously even packages. blithely | +47725|603947|O|197597.93|1996-02-18|1-URGENT|Clerk#000002078|0|le with the quickly ironic deposits. final theodolites alongsid| +47726|30202|O|106203.18|1997-03-15|2-HIGH|Clerk#000002452|0| accounts haggle carefully. carefully ironic packages cajole c| +47727|599404|O|151594.34|1998-03-23|3-MEDIUM|Clerk#000001381|0|eposits lose fluffily about the furiously ir| +47752|176555|O|178349.20|1996-06-29|3-MEDIUM|Clerk#000001419|0|ly special patterns sle| +47753|344014|F|192721.03|1994-10-14|2-HIGH|Clerk#000001368|0|s cajole slyly acros| +47754|72499|O|140814.48|1997-06-25|5-LOW|Clerk#000001787|0|ically regular accounts. fluffily ironic courts detect fluffil| +47755|486100|F|97145.19|1994-04-01|5-LOW|Clerk#000002141|0|ic deposits cajole quietly above the ironic platelet| +47756|124586|F|82047.25|1993-02-01|1-URGENT|Clerk#000001345|0|bout the daring packages. slyly even pinto beans wake blit| +47757|659641|F|229743.33|1993-08-15|1-URGENT|Clerk#000001279|0| final requests haggle. express, pending escapades past the brave instructi| +47758|68641|F|201400.65|1993-10-06|3-MEDIUM|Clerk#000002402|0|nal pinto beans sleep after the| +47759|122272|F|132073.47|1993-07-16|2-HIGH|Clerk#000004146|0|s cajole pending accounts. slyly unusual fray| +47784|746359|F|254877.79|1995-01-30|2-HIGH|Clerk#000003402|0|ide of the quickly final platelets affix quickly above the slyly express f| +47785|300850|P|193203.77|1995-04-14|3-MEDIUM|Clerk#000001952|0| silent foxes past the ir| +47786|612227|O|134514.17|1996-07-19|1-URGENT|Clerk#000004081|0|express foxes. express instructions sleep carefully slyly re| +47787|444314|O|102308.32|1995-07-10|4-NOT SPECIFIED|Clerk#000004904|0|ding ideas. deposits wake ironically against the blithely pendi| +47788|571237|F|137920.07|1993-08-23|3-MEDIUM|Clerk#000001939|0|structions haggle quickly packages. special packages wake al| +47789|749044|O|55964.46|1996-09-26|2-HIGH|Clerk#000003493|0|totes kindle blithely| +47790|416477|F|133224.79|1992-03-25|2-HIGH|Clerk#000000530|0|y. blithely regular excuses might h| +47791|722126|F|105769.87|1993-12-20|1-URGENT|Clerk#000001053|0|nal requests use fluffily final| +47816|260762|F|146548.64|1993-08-29|2-HIGH|Clerk#000004364|0|ests are furiously above th| +47817|371605|F|156607.30|1992-04-17|3-MEDIUM|Clerk#000004378|0|ly carefully unusual dependencies.| +47818|301319|O|141249.75|1998-03-31|2-HIGH|Clerk#000000618|0|ic requests. blithely pending accounts poach about the slyly regular theodoli| +47819|261592|O|146678.32|1996-02-02|5-LOW|Clerk#000004253|0|. slyly even asymptotes about the special, bold pinto beans ca| +47820|52522|F|15647.26|1993-04-29|4-NOT SPECIFIED|Clerk#000003228|0|the pending courts! even theodolites use carefully furiously special de| +47821|735370|F|150522.47|1993-02-15|2-HIGH|Clerk#000003034|0|furiously unusual requests wake quickly final dugouts. always unusual pinto | +47822|96085|F|217112.74|1993-08-19|3-MEDIUM|Clerk#000003333|0|e slyly. instructions h| +47823|140722|F|153521.73|1993-11-26|3-MEDIUM|Clerk#000004951|0|hely pending excuses accor| +47848|336046|F|132032.73|1992-10-03|5-LOW|Clerk#000003824|0|g to the quickly express ideas are closely after t| +47849|400351|O|236332.76|1997-07-10|4-NOT SPECIFIED|Clerk#000002620|0|y regular foxes against the fluffily regular ideas haggle final, ev| +47850|439972|O|218574.85|1996-06-22|3-MEDIUM|Clerk#000001223|0|press foxes hinder carefully final, final accounts. regular, final | +47851|334909|O|143627.10|1997-12-30|1-URGENT|Clerk#000003587|0|even requests. quickly even foxes doze. pending,| +47852|54499|F|125707.48|1993-05-29|4-NOT SPECIFIED|Clerk#000002184|0|s are carefully up the pending instructions. theodolites are fluffil| +47853|208013|O|189977.51|1998-01-07|1-URGENT|Clerk#000003944|0|r instructions. carefully regular deposits about the| +47854|324086|O|95529.97|1997-01-11|2-HIGH|Clerk#000002040|0|s nag. final instructions nag furiously. blithely final foxes across the blith| +47855|398239|F|151544.21|1992-05-22|3-MEDIUM|Clerk#000004644|0|ans wake final, pending hock| +47880|196681|O|190947.68|1996-10-15|3-MEDIUM|Clerk#000002617|0|inal instructions are slyly ironic pinto beans. sometimes regular accounts use| +47881|344395|F|230012.35|1992-09-22|1-URGENT|Clerk#000003142|0|ments use above the regular accounts. carefully regular deposits cajole| +47882|474964|O|53421.23|1995-09-09|5-LOW|Clerk#000002477|0|luffily even accounts besides| +47883|466567|F|112795.71|1993-07-24|3-MEDIUM|Clerk#000000319|0| regular foxes. carefully final pac| +47884|320179|O|52541.19|1995-06-12|5-LOW|Clerk#000000327|0|ggle blithely against the furiously regular requests| +47885|727175|O|241921.52|1995-10-03|5-LOW|Clerk#000000461|0|counts haggle always final instruction| +47886|366371|O|273549.93|1996-11-08|1-URGENT|Clerk#000002133|0|y above the fluffily pending escapades. thinly b| +47887|85856|O|158274.22|1996-07-01|4-NOT SPECIFIED|Clerk#000002857|0|special ideas? packages detect furiously around the blithely ironic theod| +47912|717995|F|118614.17|1993-10-13|3-MEDIUM|Clerk#000002550|0| requests sleep? even deposits alongside of the requests cajole carefully quic| +47913|577441|O|139646.67|1996-08-21|5-LOW|Clerk#000004050|0|s. furiously ironic packages cajole furiously fluffily pending g| +47914|37699|F|33699.61|1993-03-16|1-URGENT|Clerk#000001385|0|uriously silent deposits affix slyly according to th| +47915|602519|F|113346.87|1992-04-07|4-NOT SPECIFIED|Clerk#000001857|0|ely. fluffily pending instructions sl| +47916|27130|O|8700.45|1997-12-10|3-MEDIUM|Clerk#000003189|0|he slyly bold requests nag along the stealthily pe| +47917|694481|P|222655.06|1995-05-16|3-MEDIUM|Clerk#000002486|0|inal dolphins cajole blithely across the ironic deposits. excuses are al| +47918|628156|F|206877.24|1993-05-04|4-NOT SPECIFIED|Clerk#000000123|0|ts according to the slyly special packages unwind slyly about the fl| +47919|395224|F|283370.88|1992-03-16|2-HIGH|Clerk#000000772|0|kly ironic deposits integrate quickly. furiously bold plate| +47944|509677|F|152769.84|1994-03-31|5-LOW|Clerk#000004023|0|y final deposits. express deposits| +47945|383290|O|137118.23|1997-06-21|4-NOT SPECIFIED|Clerk#000003341|0|sleep carefully after the slyly express dependencies. sometimes i| +47946|197693|F|54137.46|1994-04-22|3-MEDIUM|Clerk#000000603|0|coys poach carefully about the furiously regular dependencies. daringly| +47947|114823|F|206994.46|1992-05-19|1-URGENT|Clerk#000000889|0|fully bold accounts. express depths dazzle carefully. e| +47948|55880|O|227092.28|1998-01-20|4-NOT SPECIFIED|Clerk#000004715|0|onic dependencies haggle. bli| +47949|163432|O|152273.95|1998-05-11|5-LOW|Clerk#000003348|0|pinto beans? ironic multipliers wake furio| +47950|279179|O|252683.12|1998-01-11|1-URGENT|Clerk#000000940|0|nts nag carefully even deposits. quickly | +47951|157807|O|38607.27|1996-01-09|3-MEDIUM|Clerk#000004517|0| the packages are quickly above the ironic accounts-- final theod| +47976|232675|F|208248.98|1992-11-21|5-LOW|Clerk#000002511|0|n theodolites through the express ideas wake silent requests. slyl| +47977|53147|P|151070.56|1995-05-12|2-HIGH|Clerk#000004825|0|r deposits boost. even dugouts haggle. platelets are. f| +47978|726463|F|70895.94|1994-07-24|5-LOW|Clerk#000002380|0|ts haggle slyly. foxes according to the carefully bold deposits are| +47979|403220|O|71708.23|1996-06-20|1-URGENT|Clerk#000003076|0|ts detect blithely after the fur| +47980|651919|O|76643.52|1996-07-27|1-URGENT|Clerk#000001849|0|es impress slyly. ironic dolphin| +47981|29548|F|281219.09|1992-02-21|4-NOT SPECIFIED|Clerk#000001822|0|e carefully blithely ironic packages. express packages affix fluffily al| +47982|109949|O|162484.04|1995-10-06|1-URGENT|Clerk#000003572|0| realms sleep fluffily eve| +47983|654800|O|146171.02|1996-06-20|5-LOW|Clerk#000001749|0|furiously regular accounts nag furiou| +48008|463813|O|267809.83|1997-01-13|3-MEDIUM|Clerk#000004304|0|g fluffily regular, unusual deposits. final, re| +48009|549883|F|98512.73|1992-11-03|5-LOW|Clerk#000002690|0| deposits are quickly. carefully express foxes| +48010|373933|O|164949.97|1997-09-19|2-HIGH|Clerk#000000454|0|s sentiments doubt furiously | +48011|440911|F|18591.34|1992-08-27|2-HIGH|Clerk#000003404|0|ckly express requests will have to wake carefully| +48012|358948|F|160390.86|1993-09-10|5-LOW|Clerk#000000395|0| regular, regular instructions haggle slyly theodolites| +48013|584965|F|220954.35|1994-01-07|3-MEDIUM|Clerk#000001666|0|ly regular packages sleep blithely packages. furiousl| +48014|479293|F|94754.42|1995-02-23|1-URGENT|Clerk#000004038|0|ependencies boost. carefully even deposits are fluffily against the furious| +48015|456328|F|68098.24|1994-11-12|5-LOW|Clerk#000001265|0|es across the final requests haggle carefully regular ideas. pending id| +48040|732476|O|72370.49|1996-04-05|3-MEDIUM|Clerk#000003530|0|deposits. carefully iron| +48041|217765|F|104184.96|1994-10-20|3-MEDIUM|Clerk#000003561|0|ial, unusual dependencies. foxes sleep qu| +48042|721330|O|94705.61|1997-03-27|5-LOW|Clerk#000002249|0|ress deposits: dependencies hinder blithely after the carefully e| +48043|382948|O|12439.53|1995-08-30|1-URGENT|Clerk#000000212|0|e deposits haggle car| +48044|443234|F|55710.40|1992-04-16|5-LOW|Clerk#000001454|0|ackages. final foxes above the furiously ironic ideas are bli| +48045|417254|O|282986.50|1997-05-28|1-URGENT|Clerk#000002639|0|. deposits use blithel| +48046|280853|F|67399.72|1993-07-30|5-LOW|Clerk#000000255|0|ly even instructions. furiously thin deposits sle| +48047|544858|F|210433.49|1995-03-07|3-MEDIUM|Clerk#000000014|0|kages use alongside of the carefully regular plate| +48072|659980|O|181293.95|1998-03-06|4-NOT SPECIFIED|Clerk#000002097|0|eposits. fluffily express braids | +48073|522191|O|331998.53|1998-01-15|3-MEDIUM|Clerk#000001896|0|uctions. silent deposits nod. deposits haggle | +48074|699412|O|176160.05|1996-10-31|4-NOT SPECIFIED|Clerk#000000864|0| slyly slyly ironic pinto beans. requests sleep. express acco| +48075|247666|F|235277.76|1994-06-02|1-URGENT|Clerk#000004252|0|bold foxes. ironic, final deposit| +48076|14977|F|159015.79|1993-03-18|5-LOW|Clerk#000002044|0|ilent packages. slyly final excuses breach never | +48077|463739|F|92954.64|1992-05-02|1-URGENT|Clerk#000002469|0|s. ironic pinto beans wake carefully. regular sentiments run quickly| +48078|55162|O|88578.48|1995-09-10|3-MEDIUM|Clerk#000004849|0|carefully even packages. carefully regular hockey players boost| +48079|91033|F|107504.02|1993-06-10|1-URGENT|Clerk#000001413|0|e fluffily. packages integrat| +48104|709258|F|270596.13|1992-10-21|4-NOT SPECIFIED|Clerk#000003441|0|usly even deposits are furiousl| +48105|724667|O|203652.58|1997-08-16|2-HIGH|Clerk#000003747|0|totes. final, express foxe| +48106|217991|F|268276.56|1993-02-21|3-MEDIUM|Clerk#000002972|0|d deposits alongside of the furiously final instructions nag furio| +48107|22381|F|71118.41|1992-03-01|1-URGENT|Clerk#000003120|0|lyly final dependencies. car| +48108|386476|F|95815.41|1992-01-06|3-MEDIUM|Clerk#000003241|0|slyly furious deposits hang about the fluffily final warthogs. carefull| +48109|480176|F|203122.35|1994-02-20|1-URGENT|Clerk#000004274|0|excuses. slyly bold theodolites along the furiously final e| +48110|308788|F|125024.75|1993-08-06|1-URGENT|Clerk#000000874|0| according to the quickly silent pinto bea| +48111|543775|F|103897.18|1993-04-08|2-HIGH|Clerk#000001781|0|rnes x-ray carefully fi| +48136|445540|F|170655.40|1992-04-23|5-LOW|Clerk#000003011|0|r excuses boost? furiously bold requests cajole pending decoys: ironic, | +48137|174587|F|21309.46|1994-06-21|2-HIGH|Clerk#000004909|0|c accounts wake. deposits believe alongside of the furiously exp| +48138|276679|O|23626.30|1997-02-01|1-URGENT|Clerk#000004929|0| lose slyly special sauternes: special, even pinto beans| +48139|113251|O|99068.10|1998-06-11|1-URGENT|Clerk#000001673|0|- special, ironic pinto beans eat carefu| +48140|649498|O|213782.09|1996-11-10|4-NOT SPECIFIED|Clerk#000003376|0|he carefully express accounts mold ironically unusual asymptotes. slyly regul| +48141|581831|O|72385.89|1997-05-19|5-LOW|Clerk#000003357|0|carefully ironic excuses | +48142|331849|O|210497.91|1996-08-22|1-URGENT|Clerk#000004904|0|s sleep quickly regular pinto beans. furiously even accounts wake| +48143|364480|O|92130.83|1995-10-21|1-URGENT|Clerk#000002296|0|al platelets. blithely final platelets about the always pending| +48168|555739|F|143673.27|1993-01-27|3-MEDIUM|Clerk#000000301|0|ly across the furiously e| +48169|541838|O|177042.38|1996-10-24|3-MEDIUM|Clerk#000003577|0| are even escapades. fluffily ironic pinto beans slee| +48170|159389|F|103376.00|1993-05-01|5-LOW|Clerk#000000912|0|ages boost fluffily. special, even accounts haggle c| +48171|599443|F|280401.91|1992-12-24|2-HIGH|Clerk#000003223|0|egular requests. slyly | +48172|67798|O|245301.14|1995-12-17|3-MEDIUM|Clerk#000001727|0|bold Tiresias. doggedly regular dependencies| +48173|228263|F|177662.26|1992-02-04|5-LOW|Clerk#000000382|0|unts. quickly pending theodolites haggle. carefully ironic depo| +48174|150067|O|147926.58|1995-09-29|4-NOT SPECIFIED|Clerk#000003695|0|ously unusual deposits; fluffily blithe theodolites alongside of the| +48175|661348|F|71536.17|1994-01-27|3-MEDIUM|Clerk#000002351|0|ic deposits are carefully furiously unusual requests. blithely pending packa| +48200|242224|O|65555.42|1997-02-17|4-NOT SPECIFIED|Clerk#000000683|0| regular accounts haggle: careful| +48201|56873|F|27939.69|1993-06-17|1-URGENT|Clerk#000002193|0| foxes are ironic requests. furiously pending deposits breach blithe| +48202|360464|O|88131.30|1995-06-07|4-NOT SPECIFIED|Clerk#000000143|0|cies maintain slyly even, regular packages. blithely ir| +48203|554266|F|169871.92|1992-06-05|2-HIGH|Clerk#000002534|0|he slyly final foxes. carefu| +48204|548251|O|82123.24|1997-07-29|4-NOT SPECIFIED|Clerk#000003762|0|iers. furiously final de| +48205|694912|O|56375.82|1998-02-10|1-URGENT|Clerk#000003538|0|equests affix slyly unusual, furious deposits. ironic, final| +48206|375569|F|165597.66|1993-08-27|4-NOT SPECIFIED|Clerk#000002619|0|lithely fluffily ironic accounts? | +48207|175489|O|240562.88|1998-01-15|3-MEDIUM|Clerk#000004884|0| ideas. final, regular deposits sleep acros| +48232|428164|F|109028.57|1994-12-21|4-NOT SPECIFIED|Clerk#000004904|0| ironic, regular deposits; realm| +48233|621704|P|292483.98|1995-05-17|4-NOT SPECIFIED|Clerk#000001960|0|blithely thin requests across the quickly reg| +48234|728717|F|191930.34|1992-08-31|4-NOT SPECIFIED|Clerk#000001981|0|ng asymptotes thrash among the carefully even ideas. qui| +48235|45343|O|125094.88|1998-07-23|3-MEDIUM|Clerk#000000802|0|grate final deposits. slyly even packages pl| +48236|46610|F|131848.91|1993-03-20|3-MEDIUM|Clerk#000003110|0| foxes detect. final asymptotes above the quickly regular accounts | +48237|362869|F|212015.68|1993-07-20|3-MEDIUM|Clerk#000003922|0|r instructions cajole quickly | +48238|483394|O|184920.31|1997-05-01|2-HIGH|Clerk#000003919|0|ly unusual deposits. silent, bold| +48239|396769|F|186344.00|1992-06-03|3-MEDIUM|Clerk#000002076|0| blithely express excuses! even acco| +48264|243982|O|73887.90|1997-08-13|1-URGENT|Clerk#000003144|0|ts: boldly final accounts sleep above| +48265|349091|F|192221.83|1993-09-12|5-LOW|Clerk#000004813|0|lar instructions. furiously furious packages above the ironic, pending p| +48266|661097|O|109221.33|1997-07-27|2-HIGH|Clerk#000000022|0| quickly ironic theodolites wake carefully over the fluffily speci| +48267|541871|F|17958.55|1992-12-09|4-NOT SPECIFIED|Clerk#000002961|0|ess dependencies cajole careful| +48268|712510|F|187379.73|1992-09-13|5-LOW|Clerk#000001329|0| requests boost along the ca| +48269|651082|O|205057.44|1998-06-25|5-LOW|Clerk#000002912|0|, final warhorses! dependencies mold blithely above the final requests. slyl| +48270|218339|O|110729.68|1995-10-15|2-HIGH|Clerk#000000466|0|refully pending patter| +48271|617686|F|207940.37|1992-02-18|3-MEDIUM|Clerk#000003421|0|unusual dependencies haggle slyly among the carefully even | +48296|691804|F|143578.07|1994-04-04|1-URGENT|Clerk#000001393|0|ully. requests haggle furiously according to the q| +48297|632881|F|119198.54|1994-07-08|4-NOT SPECIFIED|Clerk#000003096|0|es. carefully slow accounts thrash carefully. | +48298|323431|O|224839.27|1998-04-25|4-NOT SPECIFIED|Clerk#000004970|0|al courts wake. even instructions against the ironic, express i| +48299|641873|F|102698.77|1993-11-05|1-URGENT|Clerk#000001015|0|realms. carefully final deposits are alongside of the carefully ironic foxes.| +48300|704650|O|166528.37|1995-05-31|5-LOW|Clerk#000003095|0| use carefully carefully ex| +48301|539995|O|29576.37|1997-01-29|1-URGENT|Clerk#000001997|0|ep blithely quick theodolites. blithely final theodolites cajole blithely. f| +48302|674075|O|129439.37|1995-11-12|2-HIGH|Clerk#000001679|0|ing foxes. furiously regular ideas breach fluffily? special | +48303|427591|O|221195.53|1996-10-02|2-HIGH|Clerk#000002218|0|ackages according to the instructi| +48328|20440|F|128135.04|1993-10-09|3-MEDIUM|Clerk#000002816|0|slyly. final packages cajol| +48329|24829|O|42704.00|1995-04-27|5-LOW|Clerk#000002028|0|s boost furiously after the carefully special packages. blithely| +48330|275758|F|230711.36|1993-09-09|4-NOT SPECIFIED|Clerk#000000010|0|latelets according to the furiously regular theodolites wake quickly sly| +48331|403168|F|237159.71|1992-03-13|5-LOW|Clerk#000000243|0|iously quick excuses are after the bus| +48332|540289|O|65363.38|1996-11-16|1-URGENT|Clerk#000003574|0|s; slyly final ideas along | +48333|356954|O|129172.19|1997-03-01|2-HIGH|Clerk#000003607|0|slyly fluffy ideas sleep so| +48334|64312|F|324241.90|1993-12-17|1-URGENT|Clerk#000001874|0|eposits. furiously pending excuses ar| +48335|121165|O|120274.04|1998-03-13|1-URGENT|Clerk#000004696|0|lyly furiously unusual f| +48360|137153|O|129469.97|1995-10-25|4-NOT SPECIFIED|Clerk#000002818|0|s wake above the fluff| +48361|371443|O|53269.96|1996-07-08|5-LOW|Clerk#000003069|0|hely above the quic| +48362|579239|O|327517.68|1997-11-13|5-LOW|Clerk#000001540|0|y accounts. quietly regular requests haggle quickly. ironic packages| +48363|267919|F|34743.90|1993-01-06|5-LOW|Clerk#000004440|0|nic requests wake quickly regular, pending foxes. accounts wake fu| +48364|659917|O|67042.60|1997-01-10|3-MEDIUM|Clerk#000000693|0|refully special theodolites breach a| +48365|206299|F|71375.56|1995-04-22|2-HIGH|Clerk#000004344|0|fts lose alongside of the regular, unusu| +48366|739201|F|235865.64|1992-04-22|4-NOT SPECIFIED|Clerk#000004468|0|endencies. ironic, special theodolites integrate blithely. furiously | +48367|719824|O|142110.02|1996-11-15|5-LOW|Clerk#000000723|0|n escapades haggle furiously slyly re| +48392|556885|O|130018.80|1995-11-17|5-LOW|Clerk#000000816|0|ackages are carefully pending grouches. carefull| +48393|311758|F|243158.28|1995-02-15|3-MEDIUM|Clerk#000004836|0|nst the fluffily express requests; slyly regular platelets cajole requests.| +48394|206179|F|171001.52|1992-09-23|3-MEDIUM|Clerk#000002392|0|y even ideas. furiously even platelets wake fluffily along the speci| +48395|217138|O|218330.60|1997-11-17|4-NOT SPECIFIED|Clerk#000001665|0|according to the furiously ironic excuses wake against the furiously| +48396|676306|O|317462.26|1996-08-05|1-URGENT|Clerk#000004760|0|usly above the slyly even asymptotes. ironic requests sleep slyly ev| +48397|398915|O|127514.13|1996-03-06|1-URGENT|Clerk#000005000|0|y. pending, bold requests cajo| +48398|305761|F|39592.75|1993-03-30|2-HIGH|Clerk#000004924|0|ong the furiously final deposits are carefully q| +48399|665692|O|226838.23|1997-01-16|5-LOW|Clerk#000002468|0|into beans. furiously express requests dou| +48424|522223|F|174917.77|1993-11-12|5-LOW|Clerk#000003036|0| the furiously regular accounts cajole slyly never | +48425|482276|O|24552.61|1997-09-22|5-LOW|Clerk#000003783|0|al instructions. furiously bold requests acc| +48426|346625|O|320440.00|1996-07-11|2-HIGH|Clerk#000001527|0|ic requests across the quickly unusual instructions lose carefull| +48427|470044|F|4542.95|1994-12-26|4-NOT SPECIFIED|Clerk#000000669|0|e waters nag carefully permanent excuses: furiously ironic accounts | +48428|251959|O|244098.25|1998-04-10|5-LOW|Clerk#000004116|0|ts. regular, bold de| +48429|162097|O|181480.43|1998-04-11|5-LOW|Clerk#000003100|0|he ironic, special instructions. | +48430|341452|F|143899.37|1992-11-05|5-LOW|Clerk#000002292|0|affix fluffily. bli| +48431|527236|F|131640.95|1994-07-30|5-LOW|Clerk#000004203|0|e blithely about the even asymp| +48456|738064|O|78838.75|1998-01-07|1-URGENT|Clerk#000003406|0|are quickly. blithely express accounts was carefully. requests boo| +48457|373255|F|234280.53|1992-05-21|1-URGENT|Clerk#000001033|0| slyly according to t| +48458|289220|F|107700.29|1993-09-22|4-NOT SPECIFIED|Clerk#000000498|0|y special deposits. furiously ironic theodoli| +48459|163048|O|90575.49|1996-10-13|2-HIGH|Clerk#000002717|0|integrate carefully. dogged ideas brea| +48460|583430|O|103826.48|1997-03-19|1-URGENT|Clerk#000002076|0|g carefully ironic, special ideas. ironic, reg| +48461|207602|F|191323.86|1992-04-07|5-LOW|Clerk#000000408|0|he permanently special dolphi| +48462|161848|F|169550.23|1993-01-10|5-LOW|Clerk#000001746|0|refully special theodolites integrate furiously. carefully eve| +48463|671059|O|19160.20|1998-01-10|5-LOW|Clerk#000003432|0| pearls boost blithely| +48488|709525|F|13553.08|1992-07-29|5-LOW|Clerk#000004682|0|ic foxes boost furiously. slyly unusual deposits haggle furiously unusual t| +48489|735856|F|179775.52|1992-12-26|1-URGENT|Clerk#000004283|0| theodolites. slyly unusual accounts are slyly along the| +48490|34|P|174139.93|1995-04-07|5-LOW|Clerk#000003459|0|ides the quickly final packages| +48491|541640|F|206207.08|1994-08-31|5-LOW|Clerk#000001398|0|fter the quickly special deposits unwind reg| +48492|585706|O|30805.38|1996-09-04|4-NOT SPECIFIED|Clerk#000000793|0|lly special deposits detect fluffily. ir| +48493|177535|F|93848.17|1992-05-01|3-MEDIUM|Clerk#000004405|0|. regularly ironic foxes print across the bold, even a| +48494|299681|O|14247.89|1998-05-23|3-MEDIUM|Clerk#000003206|0|latelets are carefully along the fluffily even package| +48495|472201|O|223850.73|1996-10-05|1-URGENT|Clerk#000003661|0|ages after the blithely regular requests affix quickly furiously even | +48520|508409|O|99068.52|1997-12-26|2-HIGH|Clerk#000003364|0|ses haggle carefully final theodolites. b| +48521|66755|O|69745.78|1997-06-05|1-URGENT|Clerk#000001258|0| are according to the regular deposits. enticin| +48522|690461|P|241065.98|1995-06-02|5-LOW|Clerk#000002509|0| notornis grow final pains. regular, ironic ex| +48523|566359|F|9511.57|1992-04-23|3-MEDIUM|Clerk#000003086|0|lets across the carefully even| +48524|541250|F|271876.51|1994-12-05|4-NOT SPECIFIED|Clerk#000003725|0|regular theodolites. packages nag. ironic deposits integr| +48525|28277|O|96679.95|1996-02-08|4-NOT SPECIFIED|Clerk#000004780|0|nly regular instructions. furiously final deposits doze slyly. blithely | +48526|498862|F|1551.86|1993-04-23|3-MEDIUM|Clerk#000001522|0|inst the furiously bold dependencies; | +48527|118709|F|168906.11|1992-08-23|2-HIGH|Clerk#000003490|0|xcuses up the blithely regular accounts use furiously final packages.| +48552|132055|F|161828.12|1992-02-13|1-URGENT|Clerk#000004852|0|eposits. slyly final platelets across the regular braids ar| +48553|169378|O|44490.62|1997-07-21|4-NOT SPECIFIED|Clerk#000001870|0|eodolites promise caref| +48554|461281|F|287563.75|1993-01-06|5-LOW|Clerk#000000192|0|pecial dolphins nag carefully final asymp| +48555|735424|F|178001.97|1993-01-12|4-NOT SPECIFIED|Clerk#000001372|0|egular instructions nag quickly-- slyly ir| +48556|268375|O|149934.11|1996-07-31|4-NOT SPECIFIED|Clerk#000004546|0|even, even dependencies boost carefully. silent accounts haggle blithely a| +48557|46942|O|110985.18|1997-08-30|2-HIGH|Clerk#000004155|0| wake excuses. quickly thin accounts are f| +48558|700732|O|291323.56|1997-06-29|2-HIGH|Clerk#000002495|0|ironic deposits. slyly express instructio| +48559|701836|O|77258.44|1998-07-19|1-URGENT|Clerk#000001856|0|; even requests wake among the care| +48584|479105|O|94787.62|1997-09-15|4-NOT SPECIFIED|Clerk#000000281|0|nic deposits are carefull| +48585|306523|F|173315.22|1994-02-23|5-LOW|Clerk#000004296|0|ccounts sleep across the pending ideas; furiously slow r| +48586|718492|P|179398.01|1995-04-06|3-MEDIUM|Clerk#000001805|0|ong the ironic foxes. ironic,| +48587|671992|F|199316.18|1992-01-10|3-MEDIUM|Clerk#000000472|0|theodolites use. slowly even deposits integrate furiously. re| +48588|659911|F|31302.40|1993-09-04|4-NOT SPECIFIED|Clerk#000002668|0|kages. regular instructions are. slyly special de| +48589|114196|F|81949.69|1992-11-30|3-MEDIUM|Clerk#000001878|0|es haggle carefully about the carefully regular asymptotes. | +48590|19624|O|249033.25|1998-03-19|2-HIGH|Clerk#000000464|0|are slyly alongside of the final instructions. requests| +48591|567490|O|218153.97|1997-11-28|1-URGENT|Clerk#000001587|0|endencies wake carefully carefully regular dependenci| +48616|47470|F|180772.32|1992-02-10|4-NOT SPECIFIED|Clerk#000002644|0|deposits wake final dependencie| +48617|573716|O|264402.66|1995-06-16|1-URGENT|Clerk#000000798|0|s haggle alongside of the carefully regular r| +48618|439733|O|318946.95|1996-05-07|2-HIGH|Clerk#000000662|0|closely pinto beans. deposits cajole quickly ironic packages. blithely | +48619|84334|O|42566.77|1996-05-04|4-NOT SPECIFIED|Clerk#000001945|0|. packages wake carefully regular asymptotes. final i| +48620|626602|O|24011.49|1998-07-01|3-MEDIUM|Clerk#000004154|0|odolites. slyly blithe pinto beans sleep fluffily. bold, expre| +48621|518987|O|53557.21|1996-10-31|1-URGENT|Clerk#000003650|0| pending, final deposits nag carefu| +48622|106088|O|333001.89|1998-04-08|1-URGENT|Clerk#000004140|0|e furiously regular theodolites. furiously ironic instructions cajole carefull| +48623|267368|F|72927.62|1994-11-21|4-NOT SPECIFIED|Clerk#000004578|0|into beans according to the ironic packages impress carefully unusu| +48648|400502|F|273086.68|1993-08-08|2-HIGH|Clerk#000001385|0|arefully final accounts wake against th| +48649|724342|O|217427.93|1996-04-17|1-URGENT|Clerk#000002217|0|uests affix furiously careful| +48650|743386|F|83846.77|1994-04-25|5-LOW|Clerk#000001051|0| players are according to the unusual packages. even, ironic deposits| +48651|570157|O|208994.39|1996-06-19|2-HIGH|Clerk#000001683|0|as are furiously according to the slyly regular excuses. furiously final the| +48652|607660|O|103753.63|1998-01-02|5-LOW|Clerk#000003771|0|cuses cajole ironically busy packages. slyly final somas wake abov| +48653|158357|O|112261.90|1997-02-26|4-NOT SPECIFIED|Clerk#000003708|0|ing to the even ideas sl| +48654|497272|F|69123.81|1994-04-08|2-HIGH|Clerk#000003548|0|uests boost furiously across the regular foxes. ruthless | +48655|396004|O|146900.61|1997-09-26|2-HIGH|Clerk#000000139|0|otes. deposits integrate slyly. blithely unusual | +48680|121903|F|152671.66|1993-05-15|5-LOW|Clerk#000003625|0|ts wake. quietly final patterns haggle quickly spec| +48681|543937|O|168469.83|1997-03-05|3-MEDIUM|Clerk#000004584|0|accounts. slyly bold accounts cajole slyly. busily silent deposits nag quickly| +48682|176248|O|97428.38|1996-06-07|2-HIGH|Clerk#000004573|0|oss the pending deposits. pending, regular theodolites along the bold foxes ca| +48683|438670|O|212127.91|1997-04-01|4-NOT SPECIFIED|Clerk#000001591|0|furiously carefully express pinto beans? silent, special d| +48684|224152|F|40504.61|1994-06-24|5-LOW|Clerk#000004602|0|ackages cajole pinto beans. furiously unusual packages wake bl| +48685|54094|F|318143.54|1993-06-20|3-MEDIUM|Clerk#000004302|0|yly pending foxes. deposits haggle ca| +48686|132262|F|66159.68|1992-03-05|5-LOW|Clerk#000001641|0| final deposits. fluffily regular platelets wake slyly. quickl| +48687|655232|F|121138.37|1994-12-07|3-MEDIUM|Clerk#000001768|0|. pending somas doze. id| +48712|227698|F|215607.56|1992-10-09|2-HIGH|Clerk#000004636|0|ic foxes. blithely dogged packages after the thi| +48713|401423|O|180739.01|1998-01-09|2-HIGH|Clerk#000001712|0|usual packages wake always bold packages. frays print slyly bold excuses.| +48714|463820|O|164520.77|1997-05-12|1-URGENT|Clerk#000004490|0|hely final asymptotes accordi| +48715|658528|O|330608.51|1995-10-06|1-URGENT|Clerk#000000870|0|g the pinto beans wake quickly carefully ironic excuse| +48716|98624|F|24801.20|1994-02-12|1-URGENT|Clerk#000000158|0|ly after the slyly regular packages. furio| +48717|65092|O|234274.43|1996-06-07|5-LOW|Clerk#000001242|0|cajole blithely after the pending dolphins. fluffily regul| +48718|475417|O|165987.09|1997-05-16|1-URGENT|Clerk#000003670|0|kly final packages. special, unusual packages boost slyly even dependen| +48719|576562|O|148792.02|1997-01-16|5-LOW|Clerk#000004572|0|ross the closely regul| +48744|265978|F|70573.18|1993-04-22|2-HIGH|Clerk#000000018|0|le blithely final instructions| +48745|267928|F|195951.12|1993-06-17|1-URGENT|Clerk#000000031|0|. carefully pending deposits after the blithely even | +48746|62761|O|48916.25|1996-07-23|3-MEDIUM|Clerk#000004453|0|ding, ironic packages outside the final, expres| +48747|290647|F|32263.88|1995-01-16|1-URGENT|Clerk#000000259|0|luffily bold packages. regularly pend| +48748|144439|O|164523.43|1997-10-17|3-MEDIUM|Clerk#000001214|0|ns cajole busily abo| +48749|562912|F|249821.23|1992-10-28|5-LOW|Clerk#000002544|0|press deposits are blithely carefully final packages.| +48750|351457|F|180993.42|1994-11-15|1-URGENT|Clerk#000002992|0|ages along the packages sleep furiously excuses. thinl| +48751|670447|F|244732.33|1993-05-29|4-NOT SPECIFIED|Clerk#000000504|0|foxes. carefully ironic pinto beans sleep silently special accoun| +48776|202249|O|56019.90|1995-07-28|1-URGENT|Clerk#000001931|0|gle slyly before the furiously even platelets. slyly eve| +48777|185911|O|9946.76|1997-12-08|4-NOT SPECIFIED|Clerk#000004517|0|ly even pinto beans. fluffily unus| +48778|75640|F|20020.39|1994-02-08|1-URGENT|Clerk#000000848|0|the fluffily even ideas. blithely final excuses wake alongside of the qu| +48779|154|F|180718.65|1994-08-26|5-LOW|Clerk#000004843|0| pending deposits across the blithely| +48780|313708|O|93508.22|1996-08-27|5-LOW|Clerk#000004441|0|gle blithely regular foxes. quickly even reque| +48781|727876|F|270452.60|1993-11-28|3-MEDIUM|Clerk#000001822|0|y special packages cajole bold reques| +48782|152209|O|203710.32|1997-06-17|2-HIGH|Clerk#000002767|0|ously final, close platelets. packages after the slyly final| +48783|649666|F|95624.40|1994-05-05|3-MEDIUM|Clerk#000003222|0|regular foxes. ironic accounts ha| +48808|412261|O|346874.20|1998-01-16|4-NOT SPECIFIED|Clerk#000003626|0| pending sauternes cajol| +48809|367544|O|171517.87|1996-12-21|4-NOT SPECIFIED|Clerk#000001125|0|efully according to the quickly si| +48810|296068|F|46159.09|1994-05-14|5-LOW|Clerk#000000386|0|dependencies. blithely ironic requests around th| +48811|501899|F|45524.30|1994-09-02|4-NOT SPECIFIED|Clerk#000002030|0| carefully final accounts. blithely ruthless dolphins against the regular| +48812|161551|O|144745.98|1997-12-19|1-URGENT|Clerk#000003328|0|uests boost. even, unusual requests are furiously. accounts affix quickly alo| +48813|156004|O|344471.43|1996-03-02|4-NOT SPECIFIED|Clerk#000004515|0|y regular packages poach carefully against the slyly i| +48814|676030|F|170476.42|1992-10-29|3-MEDIUM|Clerk#000002456|0|rts use blithely blithely pending pinto beans?| +48815|279248|F|14994.37|1992-04-03|3-MEDIUM|Clerk#000002998|0|s. instructions promise furiously. ideas cajole furiously regular foxes. | +48840|561323|F|68752.02|1995-01-12|4-NOT SPECIFIED|Clerk#000001579|0|ding to the always express pinto beans. regular, regula| +48841|639962|O|251795.80|1997-12-08|5-LOW|Clerk#000002631|0|along the somas sleep blithely about the silent deposits. ideas cajole f| +48842|88177|O|191279.04|1997-04-29|4-NOT SPECIFIED|Clerk#000000141|0|ously unusual ideas. furiously bold excuses wake quickly among| +48843|731432|F|53322.89|1995-02-19|4-NOT SPECIFIED|Clerk#000001878|0|s. even patterns haggle carefully| +48844|667192|O|74862.44|1997-09-21|5-LOW|Clerk#000003915|0|ily regular deposit| +48845|217952|O|77343.94|1998-02-02|3-MEDIUM|Clerk#000003247|0|ies. furiously permanent deposits sleep among the fluffily ironic ac| +48846|114965|F|266009.52|1994-04-20|1-URGENT|Clerk#000002204|0|es are slowly according to the fluffily bold requests. ironic packages are fu| +48847|212272|O|194595.66|1998-01-13|1-URGENT|Clerk#000002678|0|old foxes use among the carefully | +48872|633112|O|171047.04|1997-04-28|2-HIGH|Clerk#000004041|0|regular excuses nag fluffily. courts hag| +48873|447707|O|170247.01|1995-09-19|5-LOW|Clerk#000002159|0| fluffily above the ruthlessly fin| +48874|595831|O|234667.23|1995-12-16|3-MEDIUM|Clerk#000001120|0| accounts above the carefully ironic ideas wake slyly s| +48875|123889|O|38174.43|1996-09-25|2-HIGH|Clerk#000003170|0|ons. slyly ironic requests haggle blith| +48876|176825|F|172741.82|1992-08-11|4-NOT SPECIFIED|Clerk#000001623|0|e requests use pending, final patte| +48877|390461|O|168160.36|1997-03-19|5-LOW|Clerk#000002292|0|ounts. blithely ironic dolphins according to the dependencie| +48878|715162|F|208186.66|1993-06-23|4-NOT SPECIFIED|Clerk#000003122|0|eposits. furiously slow packages integrate slyly around the blit| +48879|196238|F|145573.64|1992-09-22|3-MEDIUM|Clerk#000002268|0| foxes above the pending somas caj| +48904|407323|O|254249.07|1997-07-12|4-NOT SPECIFIED|Clerk#000002954|0|nic asymptotes. fluffily pending deposits above the per| +48905|606595|F|201375.27|1993-07-25|1-URGENT|Clerk#000004138|0|excuses cajole fluffily regular accounts. dependenc| +48906|275407|F|162530.68|1994-07-15|2-HIGH|Clerk#000001239|0|uses sleep slyly. theodolites are | +48907|498454|F|60012.55|1992-06-07|1-URGENT|Clerk#000003078|0|thely final deposits are carefully even pa| +48908|14494|O|167327.98|1995-06-28|1-URGENT|Clerk#000003470|0| after the deposits. regular packages around the finally p| +48909|593149|O|11493.29|1998-01-25|2-HIGH|Clerk#000000041|0|ithely around the furiously express requests. quickl| +48910|51181|F|17756.47|1994-08-25|1-URGENT|Clerk#000002900|0|y regular deposits haggle about the regular requests. slyly iro| +48911|670157|O|167037.02|1997-07-16|3-MEDIUM|Clerk#000001496|0|es across the ironic, special packages sle| +48936|563599|O|210556.22|1995-10-03|1-URGENT|Clerk#000001783|0|od slyly above the furiously special requests. blit| +48937|652115|O|159065.29|1995-06-02|3-MEDIUM|Clerk#000001401|0|raids. ironic, regular accounts use blithely. blithely final ide| +48938|339493|F|130302.65|1992-03-15|5-LOW|Clerk#000000605|0|are blithely. deposits doze ab| +48939|584386|O|305329.58|1996-04-18|3-MEDIUM|Clerk#000003123|0|s. slyly bold requests cajole care| +48940|518873|O|186459.91|1998-01-08|4-NOT SPECIFIED|Clerk#000000853|0|instructions. blithely ironic accou| +48941|444907|O|1918.98|1996-02-28|4-NOT SPECIFIED|Clerk#000000874|0|ending ideas. regular courts about the instructions haggle carefully | +48942|35464|O|25331.33|1995-11-28|4-NOT SPECIFIED|Clerk#000003426|0|ronic packages boost furiously across the special | +48943|530935|F|152088.84|1992-03-29|3-MEDIUM|Clerk#000003308|0|nal deposits sleep quickly final, final re| +48968|644089|O|28459.38|1998-01-09|1-URGENT|Clerk#000000479|0|ans sleep carefully. ex| +48969|432736|F|164993.51|1993-05-18|2-HIGH|Clerk#000004427|0|uriously regular theodolites. silent packages against the final, final dolp| +48970|229513|F|56399.14|1992-01-15|4-NOT SPECIFIED|Clerk#000003363|0| the blithely final notornis wake carefully slyly ironic packages-- carefull| +48971|168229|F|231541.87|1992-11-14|1-URGENT|Clerk#000002028|0|al, pending requests wake furiously ruthless escapades; slyly unusual| +48972|671944|O|163335.79|1997-04-25|1-URGENT|Clerk#000000724|0|ideas poach regular pinto beans; quickly regular asymptotes after the| +48973|593384|O|265988.80|1995-10-26|1-URGENT|Clerk#000001901|0|ithely. permanent theodolites impress furiously blithely regula| +48974|243874|F|158617.71|1993-02-03|3-MEDIUM|Clerk#000000022|0| integrate slyly. ironic instructions haggle silently. packages integrate qui| +48975|27458|O|147473.57|1998-01-17|4-NOT SPECIFIED|Clerk#000004707|0|y. carefully express theodolites into the deposits haggl| +49000|234565|F|235855.63|1994-04-01|2-HIGH|Clerk#000004208|0| wake carefully about the final instructions. care| +49001|308399|F|193312.82|1992-07-03|5-LOW|Clerk#000001651|0|rly final accounts. regular pinto beans are furiously alongside of th| +49002|7067|O|147245.50|1995-09-25|3-MEDIUM|Clerk#000002210|0|ly. carefully ironic pinto beans s| +49003|263162|F|221760.69|1993-01-27|1-URGENT|Clerk#000002748|0| among the slyly ironic packages: furious| +49004|208706|F|73738.58|1994-04-23|3-MEDIUM|Clerk#000001414|0| wake furiously packages. ironic ac| +49005|712756|F|11441.71|1992-04-27|4-NOT SPECIFIED|Clerk#000000785|0|carefully final deposits are quickly bold | +49006|275480|F|218250.11|1994-10-13|1-URGENT|Clerk#000002817|0|packages: slyly unusual packages integrate blithely. slyly regular requests| +49007|238468|O|11092.48|1998-02-20|4-NOT SPECIFIED|Clerk#000003611|0|ress dependencies. fu| +49032|677416|F|63860.34|1993-04-17|1-URGENT|Clerk#000004660|0|lithely final instructions. bold packages haggle even, special deposit| +49033|328201|O|47119.08|1995-09-26|4-NOT SPECIFIED|Clerk#000003376|0|theodolites. final accounts haggle blithely regular inst| +49034|557407|O|268173.35|1997-07-07|2-HIGH|Clerk#000000562|0| furiously pending deposits sleep| +49035|77636|P|343216.04|1995-04-15|4-NOT SPECIFIED|Clerk#000002783|0|according to the slyly silent theodolites. blithely ironic exc| +49036|566561|F|124371.84|1992-10-11|4-NOT SPECIFIED|Clerk#000003759|0|le slyly above the regular, ev| +49037|174631|F|192991.92|1993-01-13|1-URGENT|Clerk#000002457|0|out the blithely final pinto beans; carefu| +49038|254665|O|187036.73|1998-02-02|4-NOT SPECIFIED|Clerk#000003780|0|fluffily. idly bold pa| +49039|646576|F|253867.58|1992-04-07|4-NOT SPECIFIED|Clerk#000004525|0|unusual, express accounts. even, bold pack| +49064|228653|F|293515.08|1994-12-28|4-NOT SPECIFIED|Clerk#000000221|0|unts. blithely pending ideas sleep blithely pending foxes; ironic packages caj| +49065|705815|F|51448.81|1994-02-21|4-NOT SPECIFIED|Clerk#000001130|0|yly regular dugouts. quickly ironic packages haggle alongside| +49066|625162|F|210643.59|1995-02-15|5-LOW|Clerk#000001387|0|osits. slyly unusual accounts haggle. even packages across the blithe| +49067|345854|O|353898.24|1997-05-16|3-MEDIUM|Clerk#000002337|0|es wake carefully specia| +49068|266566|F|178559.58|1994-09-11|5-LOW|Clerk#000001051|0|dly final frays affix carefully. i| +49069|420923|O|302272.87|1995-09-25|3-MEDIUM|Clerk#000000081|0| regular pinto beans-- furiously special accounts across the fluffily ironic d| +49070|442996|F|79575.65|1992-01-31|3-MEDIUM|Clerk#000001821|0|e of the carefully regular excus| +49071|162217|F|219737.24|1992-07-23|1-URGENT|Clerk#000003761|0|s. final packages haggle | +49096|126416|O|139382.56|1995-12-14|4-NOT SPECIFIED|Clerk#000002142|0|l theodolites. theodolites wake blithely about the quickly bold requests| +49097|660797|O|138297.63|1995-12-26|4-NOT SPECIFIED|Clerk#000000010|0| ironic Tiresias play slyly furiou| +49098|11407|F|211519.07|1994-04-09|4-NOT SPECIFIED|Clerk#000004608|0|g accounts nag. ironic accounts inside the| +49099|463994|O|9520.30|1995-05-11|4-NOT SPECIFIED|Clerk#000001121|0|telets across the regular, ironic deposits sleep fluffily ag| +49100|596497|F|152091.19|1993-11-30|3-MEDIUM|Clerk#000004239|0|requests play carefully carefully ironic accounts. blithely ironic pi| +49101|62182|O|179756.76|1997-04-01|3-MEDIUM|Clerk#000003694|0| carefully bold deposits| +49102|330511|F|254771.65|1992-01-08|3-MEDIUM|Clerk#000003584|0|dolphins among the carefully spe| +49103|368378|O|40523.60|1997-09-25|1-URGENT|Clerk#000003987|0|e alongside of the regular requests. blithely final re| +49128|67691|O|119380.23|1996-04-20|3-MEDIUM|Clerk#000004633|0|ckly final, unusual packages. account| +49129|676030|O|204813.54|1997-06-30|3-MEDIUM|Clerk#000002766|0|ng frays detect after the carefully ironic excuses. final epitap| +49130|272827|F|70270.11|1992-10-16|2-HIGH|Clerk#000000674|0|sits are blithely above the c| +49131|634567|O|242685.08|1995-09-12|1-URGENT|Clerk#000004487|0|ithely regular forges. slyly special deposi| +49132|165796|O|225037.82|1997-03-05|1-URGENT|Clerk#000002666|0|eans. slyly ironic deposits sleep slyly. final pinto beans wake| +49133|265744|O|224193.29|1996-10-08|4-NOT SPECIFIED|Clerk#000000577|0|ckages nag furiously ironic ideas. furiou| +49134|95914|O|242112.76|1997-10-25|3-MEDIUM|Clerk#000002672|0| requests are slyly: blithely regular fox| +49135|261178|O|158621.21|1997-05-31|2-HIGH|Clerk#000003401|0|es. carefully special req| +49160|617845|O|123515.35|1997-01-18|3-MEDIUM|Clerk#000001235|0|r the furiously even requests-- ironic, bold| +49161|356465|O|164576.91|1995-12-26|1-URGENT|Clerk#000004895|0|lithely regular ideas sl| +49162|99571|F|38572.34|1992-12-30|1-URGENT|Clerk#000003296|0|ts affix furiously bold sheaves. slyly special pinto beans haggle de| +49163|217591|F|96714.52|1992-11-13|3-MEDIUM|Clerk#000000745|0|uriously bold requests. slyly regular| +49164|34252|O|110770.17|1995-10-09|1-URGENT|Clerk#000000327|0|ites promise. slyly| +49165|414698|O|39151.43|1997-01-09|4-NOT SPECIFIED|Clerk#000001692|0|uickly according to the slyly silent excuses. furiously express reque| +49166|66821|F|151746.18|1992-05-09|1-URGENT|Clerk#000001054|0|s. furiously idle ideas past the furiou| +49167|310408|O|281920.24|1998-01-27|3-MEDIUM|Clerk#000003240|0| special dolphins might detect above the regular, reg| +49192|25189|P|194360.03|1995-05-11|3-MEDIUM|Clerk#000001336|0|old instructions. ironic courts integrate quickly quickly final deposits. req| +49193|346153|O|219734.91|1997-07-11|3-MEDIUM|Clerk#000000345|0|even accounts. express, ironic instructions cajole slowly. slyly unusual | +49194|18169|F|317172.07|1995-01-14|5-LOW|Clerk#000000381|0|ckages are slyly! pearls ar| +49195|90961|O|9339.89|1997-07-20|3-MEDIUM|Clerk#000001270|0| pinto beans? furiously even asymptotes cajole slyly regular deposi| +49196|264053|F|78918.45|1992-11-18|3-MEDIUM|Clerk#000003426|0|thely regular requests s| +49197|181351|O|45020.68|1995-10-31|5-LOW|Clerk#000000621|0|s mold slyly after the b| +49198|701212|O|122091.41|1995-08-06|4-NOT SPECIFIED|Clerk#000003295|0| along the slyly final requests. even depths haggle | +49199|517484|O|78623.17|1997-03-08|4-NOT SPECIFIED|Clerk#000004896|0|packages are blithe| +49224|337814|F|222194.26|1992-09-06|5-LOW|Clerk#000000427|0|nstructions. slyly ruthless f| +49225|128036|F|117972.22|1994-10-10|5-LOW|Clerk#000001725|0|. closely ironic ideas cajole! furiously regular asymptote| +49226|140224|O|162573.75|1996-12-05|1-URGENT|Clerk#000003277|0|arefully final grouches affix furiously. idle, express ideas cajole; careful| +49227|218537|O|100360.80|1998-05-07|4-NOT SPECIFIED|Clerk#000004603|0|he furiously final requests. slyly pending requests are | +49228|194923|F|160361.49|1992-05-13|2-HIGH|Clerk#000003610|0| requests. ironic, unusual packages sleep fluffily again| +49229|48983|O|27289.25|1995-09-06|5-LOW|Clerk#000000079|0|inal platelets wake according to the slyly ironic asympt| +49230|506914|O|898.65|1997-11-30|1-URGENT|Clerk#000001749|0|arefully. furiously| +49231|441991|O|84464.38|1995-10-16|5-LOW|Clerk#000000048|0|ily unusual pinto beans wake slyly final, ironic asymptotes. asymptotes bo| +49256|526666|F|191361.44|1992-02-17|5-LOW|Clerk#000000792|0| quickly alongside of | +49257|151972|F|30013.00|1993-10-02|2-HIGH|Clerk#000004106|0|lets. special foxes af| +49258|438253|O|214030.44|1995-12-15|5-LOW|Clerk#000001426|0| even requests cajole fluffily ironically ironic foxes. reques| +49259|699455|F|139622.34|1992-10-18|5-LOW|Clerk#000000267|0| quickly final foxes. even, thi| +49260|227549|F|143945.45|1994-02-21|4-NOT SPECIFIED|Clerk#000000553|0|quickly final packages haggle blithely blithely bold instructions. ironi| +49261|163331|O|77100.98|1997-05-30|1-URGENT|Clerk#000001182|0|dependencies. fluffily even de| +49262|88285|F|163339.33|1992-10-01|3-MEDIUM|Clerk#000001565|0| deposits. excuses believe ironic ideas. furiously ex| +49263|287140|F|249347.80|1993-10-25|1-URGENT|Clerk#000001447|0|. carefully silent deposits about the express requests integrate f| +49288|447209|F|185544.63|1994-12-14|1-URGENT|Clerk#000000948|0|e blithely regular frays. inst| +49289|483494|O|424910.72|1997-07-21|3-MEDIUM|Clerk#000003149|0|olites sleep busily. frets was furiously regular excuses? fluffily regul| +49290|582053|F|75095.02|1994-06-14|4-NOT SPECIFIED|Clerk#000002216|0|pending dolphins among the silent foxes haggle across the quic| +49291|302054|F|192147.64|1994-12-13|4-NOT SPECIFIED|Clerk#000003216|0| boost across the quickly permanent instructions. slyly re| +49292|615541|O|179746.95|1996-02-12|5-LOW|Clerk#000002714|0|against the blithely regular deposits. idly permanen| +49293|628604|F|133520.22|1993-03-30|2-HIGH|Clerk#000001585|0|ual packages according to the dependencie| +49294|442172|O|238954.54|1997-06-13|3-MEDIUM|Clerk#000004494|0|re blithely. fluffily pending depos| +49295|569939|O|221376.31|1998-05-16|5-LOW|Clerk#000000904|0|gle. busy, final packages wake according to the stealthy, pendi| +49320|706469|F|193593.14|1994-10-15|2-HIGH|Clerk#000004850|0| at the carefully express dependencies. excuses wake slyly| +49321|373282|F|118301.19|1994-01-04|5-LOW|Clerk#000003118|0|scapades hang slyly according to the silent requests. e| +49322|729941|O|293562.79|1998-07-31|1-URGENT|Clerk#000004273|0|ions affix about the | +49323|351859|F|112383.13|1993-03-12|3-MEDIUM|Clerk#000000527|0|slyly ironic deposits. s| +49324|669235|F|122734.28|1994-12-07|2-HIGH|Clerk#000003746|0|thogs! quickly final packages sleep daringly carefully ironic p| +49325|78494|O|76774.28|1996-06-05|4-NOT SPECIFIED|Clerk#000003150|0| frets. ironic, final pinto beans integrate careful| +49326|733714|O|61542.62|1996-04-14|2-HIGH|Clerk#000000676|0|nding dependencies nag during the car| +49327|5498|O|88648.23|1996-09-19|3-MEDIUM|Clerk#000003655|0|ons. ruthless deposits wake. blithely enticing platelets play along t| +49352|147715|F|118162.79|1993-02-27|5-LOW|Clerk#000003669|0|e slyly quietly regular deposits. express escapades | +49353|135508|O|161304.86|1998-01-29|5-LOW|Clerk#000000995|0|ic grouches. furiously final depths cajole quickly i| +49354|459062|O|161622.47|1996-01-26|2-HIGH|Clerk#000003263|0|erns. regular, regular packages | +49355|201670|O|27439.34|1997-02-11|2-HIGH|Clerk#000000918|0|ructions. quickly bold | +49356|200569|O|65575.38|1997-12-15|2-HIGH|Clerk#000003205|0|es. ironic deposits integrate. fluffily final request| +49357|432133|O|198203.10|1997-02-22|4-NOT SPECIFIED|Clerk#000000656|0|accounts. furiously re| +49358|577993|F|236235.33|1992-07-24|4-NOT SPECIFIED|Clerk#000000817|0| ideas cajole slyly. slyly express accounts boost carefully. slyly| +49359|305531|O|114260.04|1998-03-20|2-HIGH|Clerk#000004544|0|gle blithely. express, final instructions cajole. slyly even deposits al| +49384|553367|O|10573.57|1995-04-19|3-MEDIUM|Clerk#000003481|0|st across the furiously pending packages. furiously pending theodolites| +49385|426467|F|192116.27|1992-07-06|4-NOT SPECIFIED|Clerk#000002099|0|ymptotes wake furiously ironic | +49386|622364|O|48301.59|1995-09-09|1-URGENT|Clerk#000001695|0| deposits nag ironic, unusual deposits-- fluffily pending theodol| +49387|568546|F|266053.24|1994-06-28|3-MEDIUM|Clerk#000000112|0|out the even, even reques| +49388|539230|F|111032.16|1993-10-30|1-URGENT|Clerk#000002326|0|refully special foxes. quickly express reque| +49389|565067|O|194814.31|1995-08-20|4-NOT SPECIFIED|Clerk#000001161|0|kly even requests. blithely ironic requests according to the slyly d| +49390|573427|F|200678.79|1992-01-13|2-HIGH|Clerk#000003743|0|requests against the furiously pending platelets haggle carefully pend| +49391|85381|P|208469.12|1995-03-18|4-NOT SPECIFIED|Clerk#000001578|0|against the accounts nag slyly above the ironical| +49416|232010|F|76902.39|1993-06-02|1-URGENT|Clerk#000003871|0|ular, bold requests integrate slyly across the evenly ironic requests| +49417|141877|O|221765.42|1997-08-11|2-HIGH|Clerk#000003270|0|ly. pending ideas alongside of the quickly pending asymptotes haggle quick| +49418|272761|O|95622.30|1995-12-08|3-MEDIUM|Clerk#000003813|0|e the furiously pending deposits wake | +49419|280480|F|38107.37|1992-06-19|2-HIGH|Clerk#000001654|0|es against the ruthlessly regular accounts sleep closely against the regular | +49420|268294|F|263716.50|1994-03-20|5-LOW|Clerk#000002472|0|ss, even accounts cajole| +49421|195028|F|33200.65|1994-09-04|3-MEDIUM|Clerk#000002362|0| before the instructions. quickly pending pinto be| +49422|310516|F|154731.89|1995-01-24|5-LOW|Clerk#000000027|0|the unusual packages. quickly regul| +49423|321887|F|217010.62|1992-10-16|2-HIGH|Clerk#000002835|0| quickly final accounts. blithely ironi| +49448|193292|O|16028.37|1995-07-06|1-URGENT|Clerk#000001225|0| requests about the requests cajol| +49449|393083|O|1129.67|1996-01-18|4-NOT SPECIFIED|Clerk#000002677|0| beans against the special foxes engage| +49450|537085|O|278161.31|1997-04-28|3-MEDIUM|Clerk#000000536|0| along the carefully final theodol| +49451|505555|F|110017.49|1994-04-12|5-LOW|Clerk#000001938|0|s. ironic instructions boost bravely ironic platelets. carefully| +49452|87016|O|73458.76|1998-02-10|5-LOW|Clerk#000001525|0|s. carefully express dolphins about the ironic, bold packages sleep quick| +49453|721996|F|118178.09|1994-04-13|4-NOT SPECIFIED|Clerk#000001193|0|accounts hinder blithely al| +49454|320819|O|271047.67|1998-06-09|2-HIGH|Clerk#000003472|0|nal packages wake a| +49455|243878|F|286815.83|1993-09-24|1-URGENT|Clerk#000003670|0|ays boost alongside of the furiously even requests. | +49480|92485|O|103392.79|1995-06-25|4-NOT SPECIFIED|Clerk#000001045|0|quickly unusual ideas. bli| +49481|366277|F|169920.29|1995-03-22|3-MEDIUM|Clerk#000004225|0|xpress instructions wake blithely furiously silent deposits? furiously bold| +49482|5219|F|208304.23|1992-03-05|4-NOT SPECIFIED|Clerk#000002603|0|uickly regular pinto beans. even| +49483|701689|F|96974.33|1993-02-12|4-NOT SPECIFIED|Clerk#000002305|0|s dazzle carefully regular packages. blithely unusual foxes against th| +49484|259754|F|67039.06|1994-05-08|1-URGENT|Clerk#000000384|0|ts above the carefully bold deposits wake carefully after the carefully specia| +49485|681106|P|137431.65|1995-04-06|2-HIGH|Clerk#000001783|0|s solve carefully qu| +49486|82949|F|76171.84|1993-01-11|4-NOT SPECIFIED|Clerk#000000712|0|the slyly even deposits affix furiously regular ideas. blithely unusua| +49487|622981|O|172803.71|1995-05-10|5-LOW|Clerk#000000636|0|eans about the silent packages grow quickly thin frets.| +49512|422656|O|228055.73|1995-10-25|1-URGENT|Clerk#000003596|0|s. ironic packages detect furiously bold deposits. final a| +49513|323342|O|106630.67|1997-01-06|4-NOT SPECIFIED|Clerk#000004210|0| doze carefully among the permanently ironic instruction| +49514|655211|F|70189.28|1993-04-26|4-NOT SPECIFIED|Clerk#000004718|0|ublate furiously before the quick, regular packages: bold accounts are slyly. | +49515|628334|O|13229.71|1998-03-27|4-NOT SPECIFIED|Clerk#000002875|0| ideas. special, pending deposits wake fluffily sometimes flu| +49516|403214|F|114290.80|1994-01-27|2-HIGH|Clerk#000004536|0|ular courts sleep slyly pe| +49517|558941|F|406383.29|1993-10-31|5-LOW|Clerk#000003655|0|ular platelets. blithely special pinto beans affix furious| +49518|360625|O|140800.37|1997-08-01|3-MEDIUM|Clerk#000003000|0|ding deposits sleep against the furi| +49519|268721|O|102236.30|1997-09-06|1-URGENT|Clerk#000000132|0|he special packages. slyly quiet accounts wake furiously furiously regular dep| +49544|641233|F|101699.57|1993-08-24|5-LOW|Clerk#000002973|0|s cajole quickly bold accounts. fluffily idle deposits subl| +49545|439033|F|105317.77|1993-05-12|1-URGENT|Clerk#000004246|0| unusual escapades cajole furiously unusual reque| +49546|314749|F|67378.90|1994-08-09|2-HIGH|Clerk#000000277|0|ly final platelets against | +49547|233893|F|181424.89|1994-03-11|1-URGENT|Clerk#000001260|0|elets. furiously ironic foxes affix quic| +49548|278074|F|146335.60|1994-09-18|4-NOT SPECIFIED|Clerk#000001539|0|even pinto beans. pending tithes hag| +49549|317647|F|134643.81|1992-01-05|1-URGENT|Clerk#000002036|0|cuses. final instructions above the furiously bold ins| +49550|183361|F|222868.96|1992-11-23|2-HIGH|Clerk#000002467|0|structions according to the fluffily ironic requests us| +49551|724612|O|27983.00|1995-08-07|1-URGENT|Clerk#000002988|0|e quickly express ideas; brav| +49576|39827|O|111145.15|1995-10-07|2-HIGH|Clerk#000001735|0|the blithely final packages. | +49577|364165|O|57800.50|1995-07-05|1-URGENT|Clerk#000002952|0|the furiously ironi| +49578|501092|O|140453.98|1997-08-20|4-NOT SPECIFIED|Clerk#000001354|0|kly express asymptotes. ruthless foxes dazzle fluff| +49579|97106|F|3456.10|1994-05-10|2-HIGH|Clerk#000000213|0|furiously furiously ironic excuses? bravely unusual pinto beans boost slyly. | +49580|44651|F|20006.65|1995-03-15|3-MEDIUM|Clerk#000001367|0|ss ideas wake slyly blithely| +49581|438551|O|74610.25|1996-12-13|3-MEDIUM|Clerk#000004844|0|ckly blithe theodolites. furiously final acco| +49582|462802|F|108804.43|1994-03-12|5-LOW|Clerk#000004406|0|uiet accounts across the blithely ironic packages are furiously| +49583|52922|O|234959.62|1997-12-24|1-URGENT|Clerk#000003603|0|lyly final instructions. even asymptote| +49608|709076|O|62636.37|1998-05-30|1-URGENT|Clerk#000001676|0|c pinto beans wake across the iro| +49609|676603|F|92184.21|1992-11-16|5-LOW|Clerk#000002971|0|yly ironic accounts are about the carefully final exc| +49610|162368|O|242698.59|1995-05-13|5-LOW|Clerk#000003455|0| blithely unusual escapades. blithely unusual requests lose quickly a| +49611|406894|F|129942.18|1994-12-05|2-HIGH|Clerk#000004160|0|. enticingly bold deposits| +49612|162109|O|46368.11|1997-01-02|1-URGENT|Clerk#000003784|0|requests. quickly ironic deposits against the | +49613|552319|F|30061.23|1992-08-22|1-URGENT|Clerk#000001327|0|ly even requests. quickly express deposits serve among the slyly regula| +49614|49861|F|304061.13|1994-08-18|3-MEDIUM|Clerk#000001519|0|inst the furiously special instructions. slyly idle ideas affix thinly | +49615|262259|O|60476.34|1998-03-25|5-LOW|Clerk#000004117|0|s. slyly regular dolphins against the furiously ironic| +49640|33760|F|101846.30|1992-08-07|3-MEDIUM|Clerk#000003019|0|ths use deposits. carefully even packages alongside of the orbits ar| +49641|386899|O|311859.21|1995-11-15|3-MEDIUM|Clerk#000002104|0| dazzle permanently pending, expres| +49642|80405|F|124944.90|1992-10-19|1-URGENT|Clerk#000004162|0|ss, special foxes are | +49643|606526|F|168697.64|1993-05-12|4-NOT SPECIFIED|Clerk#000002598|0| are permanently. regular packages boost slyly above the requests. fluffily | +49644|609670|F|113235.04|1994-07-20|3-MEDIUM|Clerk#000004945|0|es. furiously express or| +49645|194911|F|156178.90|1995-01-23|2-HIGH|Clerk#000000759|0|are according to the carefully even patterns. slyly express accounts | +49646|601753|F|262134.51|1994-09-09|3-MEDIUM|Clerk#000003065|0|ys regular theodolites. frets wake asym| +49647|655999|F|78732.65|1993-07-18|3-MEDIUM|Clerk#000002515|0|the slyly bold pinto beans. unusual dolphins are closely amo| +49672|371167|F|69832.97|1992-08-18|5-LOW|Clerk#000002932|0| across the regular, bold sheaves. carefully e| +49673|449353|O|154272.91|1996-01-23|1-URGENT|Clerk#000002073|0|he final dolphins are| +49674|518014|O|177067.23|1997-07-11|2-HIGH|Clerk#000001367|0|refully around the ironic packages. fluffily special accounts nag quickl| +49675|252538|F|100394.48|1993-09-30|1-URGENT|Clerk#000003841|0|ng excuses. final theodolites above the carefu| +49676|139843|F|154691.88|1994-10-30|1-URGENT|Clerk#000004130|0|aggle final, permanent foxes. carefully special theo| +49677|577537|F|180535.59|1993-12-02|5-LOW|Clerk#000002213|0|ickly final pinto beans. r| +49678|134431|O|67182.69|1996-06-05|2-HIGH|Clerk#000004130|0| nag blithely slow packages. final| +49679|376288|O|58397.20|1996-04-13|4-NOT SPECIFIED|Clerk#000002794|0|quests; regular dependencies w| +49704|247160|F|59226.11|1994-01-17|3-MEDIUM|Clerk#000002086|0| regular, even instructions. | +49705|515071|O|80788.86|1996-01-04|3-MEDIUM|Clerk#000004232|0| slyly unusual dependencies. foxes above the blithely qu| +49706|283549|F|85652.74|1992-02-15|4-NOT SPECIFIED|Clerk#000002066|0|tructions. slyly blithe acco| +49707|88939|O|275606.28|1996-08-08|5-LOW|Clerk#000003535|0|es cajole along the carefully fi| +49708|28756|F|40076.47|1992-10-05|1-URGENT|Clerk#000002496|0|round the fluffily ironic deposits. blithely final ac| +49709|273394|F|108440.51|1993-05-19|4-NOT SPECIFIED|Clerk#000004869|0|y regular packages wake slyly slyly pend| +49710|410764|O|108140.92|1998-04-17|4-NOT SPECIFIED|Clerk#000002020|0|against the even accounts. st| +49711|692105|O|47783.32|1997-01-27|2-HIGH|Clerk#000004851|0|r deposits mold slyly instead of the even dependencies. fluffily regular p| +49736|457978|O|8360.05|1996-01-26|3-MEDIUM|Clerk#000004773|0|x. regular packages maintain across the pending | +49737|731953|O|189770.40|1997-06-16|2-HIGH|Clerk#000001266|0|yly bold accounts above the quickly final deposits h| +49738|413611|F|79218.21|1993-09-01|5-LOW|Clerk#000001975|0| are during the furiously bold deposits. asymptotes use blit| +49739|542509|P|222974.83|1995-04-22|2-HIGH|Clerk#000001162|0|dle carefully. express accounts sublate carefully after the qu| +49740|198727|F|143794.22|1992-05-14|5-LOW|Clerk#000004095|0|ly blithe deposits sleep according to the regular theodolites! carefully iron| +49741|221741|O|90736.08|1995-12-13|2-HIGH|Clerk#000004550|0|st ironically. frays sleep. ironic, unusual packages cajole blithely. | +49742|38228|F|308332.10|1994-08-04|4-NOT SPECIFIED|Clerk#000004615|0|r accounts are carefully regular reques| +49743|483322|O|110024.03|1997-10-07|5-LOW|Clerk#000004555|0|g tithes x-ray except the slyly bold de| +49768|671278|F|249167.21|1994-05-27|1-URGENT|Clerk#000004771|0|iously express dependencies nag furiously nea| +49769|649426|O|288976.51|1996-06-13|1-URGENT|Clerk#000004985|0|ests wake slyly fluffily regul| +49770|139715|O|180654.58|1996-06-23|2-HIGH|Clerk#000004470|0|st. requests after the quickly sil| +49771|680189|F|169297.74|1992-08-21|2-HIGH|Clerk#000001440|0|ss courts. regular excuses along the slyly even dependencies haggle furiously | +49772|434002|O|94511.63|1996-07-20|3-MEDIUM|Clerk#000001643|0|y special requests haggle blithely again| +49773|488320|F|61796.13|1994-06-17|5-LOW|Clerk#000002160|0|usly bold instructions wake blithely around the dependencies. quickly| +49774|669853|O|163345.80|1997-03-03|5-LOW|Clerk#000002017|0|oys. quickly permanent foxes alongside of the| +49775|686648|O|91772.76|1997-08-05|5-LOW|Clerk#000001846|0|careful deposits affix; furiously final packages among the even, even req| +49800|239978|F|291272.07|1994-08-02|4-NOT SPECIFIED|Clerk#000002964|0|s. furiously pending accounts haggle among the never unusual theodo| +49801|554693|O|219550.46|1995-05-27|5-LOW|Clerk#000001180|0|edly according to the furiously final theodolites. special instructions al| +49802|210077|O|125975.54|1997-05-22|1-URGENT|Clerk#000004953|0|uriously regular requests sleep furiously| +49803|510811|F|26715.18|1993-05-12|4-NOT SPECIFIED|Clerk#000001794|0|onic packages. blithely special req| +49804|683152|O|384620.28|1997-06-15|5-LOW|Clerk#000000061|0| cajole against the sometimes ironic asymptotes. quickly| +49805|730723|O|255815.63|1996-08-26|3-MEDIUM|Clerk#000001571|0|cajole furiously toward the deposits. brave accounts wake furiously af| +49806|749872|F|190683.00|1994-11-28|2-HIGH|Clerk#000002098|0|y even Tiresias shall have to believe furiously ironic deposits. bli| +49807|69302|O|96169.41|1997-07-01|5-LOW|Clerk#000001769|0|oost quickly! blithely ironic dep| +49832|1286|O|108181.59|1995-12-12|2-HIGH|Clerk#000003081|0|tes wake closely carefully express account| +49833|599953|F|26851.47|1994-03-04|3-MEDIUM|Clerk#000004860|0|ial requests haggle carefully. slyly unusual requests boost around the quickly| +49834|385156|O|130479.96|1998-01-07|5-LOW|Clerk#000004908|0|oxes wake against the blithely pending dependencies. blithely | +49835|33997|F|202078.13|1992-11-18|1-URGENT|Clerk#000003017|0|nstructions. carefully express deposi| +49836|611858|O|231856.90|1998-03-13|1-URGENT|Clerk#000002324|0|jole fluffily after the quickly final| +49837|235123|F|199083.86|1993-04-30|3-MEDIUM|Clerk#000004613|0|ly final accounts are along the carefully regular instructions. fluffi| +49838|699332|O|46198.14|1997-05-26|1-URGENT|Clerk#000003580|0|leep carefully. furiously special courts about the final accounts wa| +49839|415784|F|111084.71|1992-05-20|5-LOW|Clerk#000000844|0|ccounts cajole slyly unusual, bold ideas| +49864|328613|O|161837.48|1997-12-27|4-NOT SPECIFIED|Clerk#000004485|0|ainst the blithely special theodol| +49865|744515|O|110131.49|1995-08-07|3-MEDIUM|Clerk#000001825|0| wake across the silent pa| +49866|49024|O|141269.32|1995-07-28|4-NOT SPECIFIED|Clerk#000003204|0|ts haggle slyly. special instructions against the regular, regular req| +49867|428528|O|128973.01|1995-12-14|1-URGENT|Clerk#000002705|0|e slyly special asymptotes. doggedly regular deposits | +49868|8627|O|199298.46|1995-12-03|1-URGENT|Clerk#000000017|0|rs wake furiously. final dolphi| +49869|230686|F|233196.02|1993-08-26|2-HIGH|Clerk#000004006|0|ng deposits. ideas haggle. packages use-- quickly silent requests| +49870|369056|F|79697.14|1992-12-18|5-LOW|Clerk#000001141|0|e unusual packages. carefully even accounts mold furio| +49871|209155|O|379025.36|1996-05-16|3-MEDIUM|Clerk#000004834|0|ent, ironic pinto beans; unusual requests could have to are. care| +49896|17810|F|25496.28|1993-08-02|1-URGENT|Clerk#000000650|0|xes sleep quickly ironic theodolites. | +49897|76006|F|272634.77|1993-03-02|2-HIGH|Clerk#000000704|0|ress foxes thrash blithely requests. care| +49898|179860|F|228605.87|1993-12-25|2-HIGH|Clerk#000000694|0|ly carefully special packages. regular re| +49899|399880|O|94397.82|1997-08-14|3-MEDIUM|Clerk#000001795|0| accounts about the final pinto beans wake quickly above the regula| +49900|6985|O|224447.55|1998-05-24|3-MEDIUM|Clerk#000002562|0|lites. slyly regular instructions nag carefully accordin| +49901|390362|F|151501.28|1992-09-08|3-MEDIUM|Clerk#000002800|0|ages. blithely regular plate| +49902|559901|O|29671.20|1998-05-15|3-MEDIUM|Clerk#000004482|0|e never regular dependencies cajole quickly quickly silent packages. | +49903|5|F|194834.20|1993-07-26|5-LOW|Clerk#000004264|0| furiously pending requests. furiously regular dependencies cajole furiously| +49928|81790|F|234455.00|1994-01-30|3-MEDIUM|Clerk#000001164|0|furiously bold instructions. quickly| +49929|635656|O|84733.64|1998-01-18|2-HIGH|Clerk#000003222|0|s. bold depths boost about the final | +49930|453421|F|92399.39|1992-02-07|4-NOT SPECIFIED|Clerk#000001390|0|blithely slyly express d| +49931|623204|F|236621.21|1994-06-30|1-URGENT|Clerk#000004178|0|lly unusual packages haggle blithely across the regularly regular instru| +49932|434015|O|193399.64|1998-07-15|3-MEDIUM|Clerk#000003041|0|es haggle unusual deposits. warthogs use slyly; e| +49933|732977|F|83076.63|1994-09-20|4-NOT SPECIFIED|Clerk#000001637|0| foxes use: silent, pending theodolites doze slyly. slyly pend| +49934|389762|P|233596.60|1995-05-27|2-HIGH|Clerk#000003706|0|ideas: carefully pe| +49935|225724|F|197832.91|1992-10-15|2-HIGH|Clerk#000002989|0|odolites. pending foxes a| +49960|237091|F|198304.75|1995-01-21|3-MEDIUM|Clerk#000002826|0|nal pinto beans use among the even ide| +49961|8110|O|16980.64|1996-06-18|5-LOW|Clerk#000000413|0|ar accounts grow quickly | +49962|538462|F|262114.32|1994-09-03|1-URGENT|Clerk#000004880|0|. ironic, special platelets kindle quickly among the bold requests. iro| +49963|410797|F|109649.44|1993-08-05|1-URGENT|Clerk#000001661|0|tions among the theodolites was carefully ironic accounts; ironic, ironic requ| +49964|503350|P|262959.40|1995-05-24|4-NOT SPECIFIED|Clerk#000002130|0|onic instructions. escapad| +49965|545842|F|228988.03|1993-04-09|4-NOT SPECIFIED|Clerk#000000665|0|ial ideas sublate across the even ideas! unusual| +49966|700819|F|39661.78|1992-05-06|4-NOT SPECIFIED|Clerk#000003214|0|en, even packages against the ironic decoys detect about t| +49967|631871|F|44025.18|1993-09-17|3-MEDIUM|Clerk#000004948|0|slyly quickly final accounts: daringly regular| +49992|596639|F|44491.38|1993-11-23|1-URGENT|Clerk#000004784|0|lar packages. blithely express dependencies haggle carefully even packages. c| +49993|199895|O|98689.30|1997-07-11|1-URGENT|Clerk#000003662|0| affix furiously special,| +49994|385259|O|213524.60|1997-11-05|5-LOW|Clerk#000004589|0|ly ironic theodolites integrate slyly carefully final platelets. sly| +49995|284804|O|14748.77|1996-03-03|5-LOW|Clerk#000004878|0|sly pending theodolites. bold deposits was regular, | +49996|187177|F|337309.84|1994-05-19|4-NOT SPECIFIED|Clerk#000003014|0| haggle slyly for the furiously unusual requests. blithely regular p| +49997|368231|O|204029.98|1996-01-07|5-LOW|Clerk#000004848|0|ly ironic requests. decoys nag even deposits; fluffily silent deposits must h| +49998|600407|F|37910.41|1993-08-03|3-MEDIUM|Clerk#000004140|0|he regular requests. carefully bold deposits affix quickly about the instruc| +49999|526589|F|220692.31|1993-01-26|3-MEDIUM|Clerk#000003449|0|ess packages nag furiously unusual deposits. somas bo| +50024|367090|F|153883.64|1992-04-10|3-MEDIUM|Clerk#000000657|0|ccording to the requests. slyly regula| +50025|169192|F|66802.40|1993-02-01|5-LOW|Clerk#000001512|0|the slyly final deposits. accounts boost q| +50026|329092|F|232515.54|1993-05-24|3-MEDIUM|Clerk#000002817|0|es x-ray furiously slyly ironic packages. fluffily pendin| +50027|530116|O|98986.96|1996-08-02|2-HIGH|Clerk#000002406|0|ly ironic, final pack| +50028|401279|O|72016.76|1997-12-23|3-MEDIUM|Clerk#000001018|0|posits cajole blithely after the bold accounts. fluffily regular packa| +50029|292309|O|239481.11|1995-08-24|4-NOT SPECIFIED|Clerk#000003841|0|sly express tithes. carefully even pack| +50030|307840|F|28669.07|1994-10-21|4-NOT SPECIFIED|Clerk#000000424|0|nic requests nag carefully. final, even instruction| +50031|350614|O|38839.56|1995-04-08|4-NOT SPECIFIED|Clerk#000001289|0|accounts are across the | +50056|15011|O|366656.98|1997-06-11|3-MEDIUM|Clerk#000004879|0|efully special packages against the requests sleep slyly against the final as| +50057|277901|F|82605.43|1994-05-03|2-HIGH|Clerk#000003921|0| bold excuses use unusual, even packa| +50058|423736|F|189828.54|1993-06-03|1-URGENT|Clerk#000003492|0|usly final requests boost slyly through the quickly final idea| +50059|461782|F|145297.78|1993-10-12|2-HIGH|Clerk#000003560|0|ross the quickly spec| +50060|139354|O|242392.89|1996-07-06|3-MEDIUM|Clerk#000003459|0|le deposits. blithely fluff| +50061|617785|O|168391.30|1998-04-06|3-MEDIUM|Clerk#000002452|0| the fluffily regular packages impress blithely furiously regu| +50062|86198|O|79532.79|1996-03-20|1-URGENT|Clerk#000001192|0|ccording to the carefully unusual ideas. furiousl| +50063|471779|O|158581.28|1995-08-29|4-NOT SPECIFIED|Clerk#000004124|0|as boost. blithely bold courts use. blithely permanent packa| +50088|179875|F|284600.75|1992-12-08|5-LOW|Clerk#000004722|0|inos according to the ironic requests detect furi| +50089|641767|F|48492.24|1992-03-22|1-URGENT|Clerk#000003093|0|ts about the quickly expres| +50090|412519|F|154660.36|1992-05-16|3-MEDIUM|Clerk#000003148|0|s according to the ironic requests boost quickly special pearls. regular plate| +50091|195154|F|68054.98|1993-01-25|1-URGENT|Clerk#000002386|0|ully unusual accounts nag slyly furiously slow requests. blithely regular acco| +50092|194866|O|56885.58|1998-06-03|4-NOT SPECIFIED|Clerk#000004916|0| regular accounts. express accounts cajole fluffily. furiously bold dep| +50093|603820|F|94280.42|1994-03-08|5-LOW|Clerk#000004425|0|unts affix according| +50094|148622|F|145243.46|1992-12-01|4-NOT SPECIFIED|Clerk#000000741|0|boost boldly. blithely even pinto beans after t| +50095|381848|F|185981.69|1994-07-01|3-MEDIUM|Clerk#000000895|0|lites unwind special, expre| +50120|705508|F|76077.92|1993-11-25|3-MEDIUM|Clerk#000003460|0| quickly. carefully | +50121|717395|O|223537.56|1996-10-03|2-HIGH|Clerk#000002578|0|egular foxes. carefully even requests wak| +50122|253678|F|105056.93|1994-10-06|5-LOW|Clerk#000002936|0|the express dependencies cajole slyly quiet requests. blithely| +50123|535811|O|155561.78|1996-10-21|2-HIGH|Clerk#000001850|0|ect blithely across the slyly| +50124|111721|F|135633.53|1993-08-19|2-HIGH|Clerk#000002128|0| even instructions. slyly ironic requests unwind furiously ironic| +50125|413935|F|7618.24|1993-10-30|3-MEDIUM|Clerk#000000622|0|osits are about the ideas-- | +50126|748667|F|135558.28|1992-12-05|2-HIGH|Clerk#000004439|0|s boost slyly. carefully special requests across the furiously final deposit| +50127|83498|F|25584.36|1994-08-27|4-NOT SPECIFIED|Clerk#000003415|0|instructions sleep about the express theodolites. regular, final | +50152|99913|O|66998.55|1998-05-07|4-NOT SPECIFIED|Clerk#000002973|0|y. platelets use thinly blithely regular epitaphs. final requests slee| +50153|707023|O|83292.05|1995-07-28|1-URGENT|Clerk#000001044|0|es boost blithely ironic dolphins. pending d| +50154|679267|F|260971.12|1992-09-09|2-HIGH|Clerk#000004879|0|blithely. final deposits nod special pinto beans. furiously bold requests sle| +50155|677506|F|63968.49|1995-01-10|3-MEDIUM|Clerk#000004233|0|ix fluffily. even in| +50156|327142|F|100529.35|1993-10-24|1-URGENT|Clerk#000001303|0|ve packages. furiously sly asymptotes was slyl| +50157|16513|O|3694.85|1996-01-26|1-URGENT|Clerk#000003640|0|fily regular theodolites b| +50158|9167|F|183126.88|1992-02-28|2-HIGH|Clerk#000000790|0|lar dependencies. carefully unusual packages detect quickly ironic waters| +50159|303752|F|236298.54|1992-02-25|3-MEDIUM|Clerk#000000860|0|ages are blithely alongside of the fluffily regular packages. id| +50184|653392|O|103620.58|1996-03-31|1-URGENT|Clerk#000001208|0|atelets boost quickly alongside of the slyly final courts. regular| +50185|53347|O|94879.89|1996-07-25|5-LOW|Clerk#000000810|0|ld packages. furious| +50186|343174|O|69062.92|1997-01-13|3-MEDIUM|Clerk#000000122|0| carefully final asymptotes are furiously| +50187|204118|O|126318.82|1997-04-25|2-HIGH|Clerk#000004925|0| regular requests are blithely deposits. furiously iron| +50188|110296|O|220082.56|1996-05-15|5-LOW|Clerk#000000144|0|ions poach packages. carefully regular sentiments mold fu| +50189|464711|F|143586.08|1993-04-19|2-HIGH|Clerk#000001146|0|to the carefully sly | +50190|639496|O|213066.02|1996-06-12|4-NOT SPECIFIED|Clerk#000000092|0|special theodolites about the silent dolphins sle| +50191|477518|O|229056.61|1997-06-20|2-HIGH|Clerk#000001111|0|iments. quickly even foxes haggle furiously regular deposits. fluffily bold pa| +50216|643354|F|120041.92|1994-02-19|4-NOT SPECIFIED|Clerk#000003084|0|. regular, regular foxes ca| +50217|99178|F|307856.95|1994-06-28|2-HIGH|Clerk#000003979|0|theodolites wake fluffily regular packages: carefully even packages| +50218|375139|O|113909.07|1997-11-18|1-URGENT|Clerk#000003935|0|e fluffily ironic packages. furiously regular foxes a| +50219|441094|F|230723.09|1992-12-17|2-HIGH|Clerk#000004232|0|n blithely. even packages wake final accounts. regular pinto beans cajol| +50220|461008|P|174221.80|1995-03-13|2-HIGH|Clerk#000001953|0|y express pinto beans. carefully regular pattern| +50221|652672|F|102584.46|1994-06-11|3-MEDIUM|Clerk#000002378|0|mas nag after the packages. slyly expr| +50222|704797|O|127110.42|1995-10-26|1-URGENT|Clerk#000000633|0|posits boost furiously. carefully bold packages sleep. sp| +50223|22616|O|99067.07|1998-01-28|2-HIGH|Clerk#000004048|0|ns. final, final deposits s| +50248|604697|F|173156.46|1994-12-05|1-URGENT|Clerk#000003188|0|y. carefully bold packages haggle express Tiresias. slyly expre| +50249|630859|O|66761.15|1995-03-18|4-NOT SPECIFIED|Clerk#000004075|0|s use; packages boost blithely; s| +50250|75413|F|190905.69|1993-05-23|2-HIGH|Clerk#000004426|0|ending packages inte| +50251|702127|F|262930.27|1994-08-09|3-MEDIUM|Clerk#000002462|0|lly unusual requests. furiously unusual| +50252|116651|F|76614.07|1992-02-01|2-HIGH|Clerk#000000349|0|sly special accounts. furiously ir| +50253|43489|O|30991.86|1996-06-23|2-HIGH|Clerk#000000022|0|lly express requests? carefully unusual instructions cajole sl| +50254|414287|O|73570.23|1996-12-30|3-MEDIUM|Clerk#000003463|0|s attainments thrash. slyly pending packages hagg| +50255|668090|F|74610.37|1992-01-20|2-HIGH|Clerk#000002505|0|st the requests. special, express ideas boost. unusual, silent theodo| +50280|334565|F|153862.73|1993-12-21|2-HIGH|Clerk#000003659|0|ffily quiet platelets. pending theodolites are furiously abou| +50281|273919|F|239182.46|1993-11-07|2-HIGH|Clerk#000000992|0|e requests sleep. carefully pendi| +50282|253078|F|167687.62|1994-01-26|3-MEDIUM|Clerk#000002448|0|nal accounts? express instructions cajole slyly abo| +50283|216296|O|183546.90|1995-12-18|4-NOT SPECIFIED|Clerk#000004340|0| special requests cajole | +50284|34850|O|87889.67|1997-09-02|5-LOW|Clerk#000000303|0|ckly pending accounts sleep blithely carefully bold theodolites| +50285|716827|F|52721.41|1995-04-11|4-NOT SPECIFIED|Clerk#000003959|0|yly regular requests wake c| +50286|432496|O|198364.98|1996-08-29|1-URGENT|Clerk#000002690|0|ly according to the blithely bold platel| +50287|680294|F|210584.51|1993-07-04|2-HIGH|Clerk#000004623|0|uests. instructions use regularly-- | +50312|700093|O|125717.66|1995-12-10|5-LOW|Clerk#000002903|0|tes haggle ruthlessly quic| +50313|456938|F|45420.88|1992-12-11|3-MEDIUM|Clerk#000004448|0|en, regular asymptotes. slyly special instructions boost carefull| +50314|500155|F|203181.81|1995-01-08|2-HIGH|Clerk#000001180|0|uriously behind the even deposits. carefully ironic dolphins sleep accou| +50315|81431|O|199455.13|1998-01-21|2-HIGH|Clerk#000000098|0|lly among the blithely regular instructions. f| +50316|595198|F|103895.92|1993-02-05|2-HIGH|Clerk#000000790|0| slyly according to the sly| +50317|720460|F|158524.36|1993-08-16|3-MEDIUM|Clerk#000002332|0|efully regular dolphins haggle slyly fluffily pending| +50318|12889|O|213717.69|1996-12-11|1-URGENT|Clerk#000004409|0|nal instructions. express courts g| +50319|613670|F|152572.50|1993-02-15|1-URGENT|Clerk#000002297|0|d packages cajole. regular, silent packages sleep slyly packages. carefully i| +50344|700621|O|284929.43|1996-08-08|5-LOW|Clerk#000003969|0|e even requests integrate| +50345|328601|O|13844.22|1995-07-06|4-NOT SPECIFIED|Clerk#000003801|0|rly bold foxes. slowly pending excuses unwind slyly blithely bold acco| +50346|541051|F|75451.67|1993-05-28|4-NOT SPECIFIED|Clerk#000000159|0|endencies above the furiously silent dependenci| +50347|428261|F|235465.47|1993-02-28|5-LOW|Clerk#000003986|0|ter the quickly special pinto beans. ironic, special excuses affix doggedly| +50348|18065|F|235860.80|1994-08-02|3-MEDIUM|Clerk#000002086|0|mptotes. furiously bold requests poach. slyly ironic instructions | +50349|616486|F|111748.82|1993-12-19|2-HIGH|Clerk#000000085|0|uriously unusual platelets| +50350|747622|F|142466.29|1994-10-10|1-URGENT|Clerk#000003354|0|theodolites after the quickly final foxes na| +50351|532349|F|105248.94|1994-04-02|4-NOT SPECIFIED|Clerk#000000270|0|old ideas-- slyly pending theodolites since the special instructions are am| +50376|428507|F|154941.25|1994-10-30|3-MEDIUM|Clerk#000002512|0|ts nag carefully fluffily busy packages. blithely fi| +50377|402049|O|238845.38|1995-06-16|4-NOT SPECIFIED|Clerk#000003560|0|uriously according to | +50378|487520|F|127456.67|1993-05-08|5-LOW|Clerk#000000841|0|r deposits. regular, bold dolphins nag furiously sile| +50379|734971|F|117533.36|1993-02-22|3-MEDIUM|Clerk#000001675|0|hlessly pending deposits affix. ironic packages wake bravely afte| +50380|150496|F|215295.80|1994-08-08|2-HIGH|Clerk#000003262|0| regular sentiments cajole along the ironic, ruthless reque| +50381|359707|F|209297.10|1995-02-20|3-MEDIUM|Clerk#000000964|0|ct slyly final requests. blithely bold ideas sleep carefully. | +50382|576518|O|114251.34|1996-11-17|1-URGENT|Clerk#000004087|0|slyly. quickly regular ideas are quickly. fluffily unusua| +50383|280102|F|133056.74|1992-10-30|3-MEDIUM|Clerk#000003896|0| regular accounts. even, even courts cajol| +50408|644515|O|67969.78|1998-01-08|1-URGENT|Clerk#000003612|0|s. regular platelets run always. busily pending requests| +50409|83440|O|263241.93|1996-09-03|4-NOT SPECIFIED|Clerk#000001226|0|unusual, ironic excuses across the instru| +50410|597331|O|341340.12|1998-03-14|2-HIGH|Clerk#000001742|0|o beans engage slyly al| +50411|571750|F|216501.82|1992-07-26|2-HIGH|Clerk#000000423|0|ts nag according to the caref| +50412|370678|O|296007.88|1996-03-28|3-MEDIUM|Clerk#000003965|0| bold dependencies.| +50413|469657|F|240688.18|1994-04-24|4-NOT SPECIFIED|Clerk#000002523|0|against the pending, bold theodolites wake above the b| +50414|495728|O|103616.88|1997-02-05|1-URGENT|Clerk#000004508|0|nal accounts. furiously pending dugouts use car| +50415|687866|F|102826.13|1993-02-13|2-HIGH|Clerk#000004979|0|after the requests. sly| +50440|452696|F|158784.49|1994-11-29|5-LOW|Clerk#000000925|0|ven deposits cajole| +50441|446927|F|161677.54|1994-06-07|2-HIGH|Clerk#000003769|0|tructions wake furiously final asymptotes| +50442|245915|F|35697.82|1992-09-02|3-MEDIUM|Clerk#000004347|0|y even instructions alongside of the slyly final packages wake until t| +50443|589298|O|320117.73|1996-05-06|3-MEDIUM|Clerk#000000115|0|lly sly ideas. express deposits cajole sometimes quickly expres| +50444|576541|O|82253.37|1998-05-02|3-MEDIUM|Clerk#000000926|0| theodolites according to t| +50445|658607|F|336028.46|1992-12-20|3-MEDIUM|Clerk#000001190|0|uriously ironic pac| +50446|706562|O|63785.97|1996-02-22|1-URGENT|Clerk#000002970|0|lites kindle slyly about the blithely quiet ideas. ironic, regular accounts| +50447|423637|F|13209.47|1994-08-16|4-NOT SPECIFIED|Clerk#000001322|0|nic requests. final deposits po| +50472|293662|O|271784.33|1996-10-27|2-HIGH|Clerk#000004550|0|ents are. carefully regular packages cajole.| +50473|543652|F|152459.58|1994-08-27|3-MEDIUM|Clerk#000001072|0|gainst the slyly sly tithes. furiously regular de| +50474|643807|O|188091.91|1996-10-04|2-HIGH|Clerk#000003095|0|g to the carefully regular deposits cajole furiously aft| +50475|188431|O|257214.24|1997-08-15|2-HIGH|Clerk#000000832|0|blithely busy requests are blith| +50476|430030|F|274222.32|1994-12-20|4-NOT SPECIFIED|Clerk#000000742|0|s? furiously ironic accounts | +50477|499942|O|321258.81|1996-04-16|3-MEDIUM|Clerk#000002398|0|aggle slyly. final deposits promise slyly above the fluffil| +50478|255223|F|13223.01|1992-05-25|2-HIGH|Clerk#000004190|0|ckly quickly ironic accounts. express, regular | +50479|257902|F|193788.61|1993-08-02|1-URGENT|Clerk#000001979|0|olites. brave excuses nag quickl| +50504|279919|F|289605.40|1994-06-27|4-NOT SPECIFIED|Clerk#000001466|0|s along the final packages boost final, silent instructions. blithely | +50505|566332|O|15314.93|1997-02-07|5-LOW|Clerk#000002499|0|blithely bold asymp| +50506|87523|O|201691.58|1996-10-12|4-NOT SPECIFIED|Clerk#000003587|0|lithely final packages haggle furiously across the silent acco| +50507|223663|F|44503.25|1994-02-17|5-LOW|Clerk#000000940|0|osits. ideas according to the blithely even accounts hagg| +50508|97012|F|249517.32|1993-06-25|2-HIGH|Clerk#000003643|0|ke carefully along the| +50509|721298|P|24888.24|1995-04-30|4-NOT SPECIFIED|Clerk#000003686|0|nal packages integrate| +50510|601040|O|226031.60|1995-08-04|5-LOW|Clerk#000001378|0|ial ideas sleep quickly regular, bold theodolites. carefull| +50511|674770|F|211925.49|1994-02-03|2-HIGH|Clerk#000004920|0|unts. bravely unusual pinto be| +50536|84940|O|276709.47|1998-05-03|2-HIGH|Clerk#000003958|0|le quickly regular, special packages. ironic platelets ha| +50537|312613|O|84341.73|1995-11-22|5-LOW|Clerk#000000676|0|s are along the even attainments. reg| +50538|318718|O|124762.76|1995-12-02|1-URGENT|Clerk#000003350|0|ests are. even, pending ideas cajole. fur| +50539|177320|O|97152.81|1996-02-11|3-MEDIUM|Clerk#000004749|0|ar accounts wake slyly bold requests. enticingl| +50540|455417|O|195070.39|1997-07-25|5-LOW|Clerk#000004719|0|oost fluffily special patterns. carefully even packages haggle slyly. sly| +50541|427226|O|230211.93|1997-04-13|1-URGENT|Clerk#000002148|0|ide of the quickly final deposits wake | +50542|636388|O|228045.06|1995-09-12|4-NOT SPECIFIED|Clerk#000002013|0|s haggle. carefully pending tithes haggle slyly beneath the pinto be| +50543|14344|F|65209.22|1992-11-22|1-URGENT|Clerk#000002228|0|uffily unusual requests are carefully above the unusual as| +50568|320296|F|255061.50|1994-03-21|2-HIGH|Clerk#000004504|0|slyly fluffily expres| +50569|450559|F|155241.50|1994-01-15|3-MEDIUM|Clerk#000004727|0|y even accounts haggle busily. ironic, qu| +50570|527731|F|97478.84|1993-08-19|2-HIGH|Clerk#000001605|0|ntiments. ironic requests cajole | +50571|67624|F|48926.08|1993-05-10|1-URGENT|Clerk#000002418|0|lyly ironic platelets| +50572|284834|O|72530.54|1996-04-11|2-HIGH|Clerk#000004013|0|ronic packages kindle alon| +50573|688903|F|83961.50|1994-02-20|3-MEDIUM|Clerk#000003874|0|fily. furiously express tithes play. asymptotes nag? unusua| +50574|611216|F|203362.33|1992-09-08|1-URGENT|Clerk#000002535|0|n pinto beans. stealthily ironic decoys breach. pending, ironic packages wake | +50575|690797|O|367382.59|1998-07-16|3-MEDIUM|Clerk#000002977|0|ngly fluffily sly deposits. regular theodolites engage c| +50600|210596|F|153716.02|1992-08-17|4-NOT SPECIFIED|Clerk#000004553|0|equests engage slyly-- daringly even foxes integrate across the blithely| +50601|226379|O|136499.96|1996-06-04|5-LOW|Clerk#000004545|0|hins hang alongside of the slyly bold decoys. final dependencies| +50602|735749|O|62264.49|1998-01-01|3-MEDIUM|Clerk#000001617|0|ecial instructions wake blithely against the stealt| +50603|468304|F|198107.70|1993-12-24|3-MEDIUM|Clerk#000003411|0|s foxes. slyly close ideas cajole against the furiously final requests. forge| +50604|260521|F|280226.93|1992-04-09|1-URGENT|Clerk#000003558|0|ss requests along the silently final excuses wake| +50605|55969|F|152877.64|1993-12-09|5-LOW|Clerk#000004960|0|riously regular reques| +50606|149788|F|183994.83|1994-04-19|3-MEDIUM|Clerk#000002177|0| wake carefully blithely regular deposits. carefully| +50607|475522|O|267393.42|1995-07-31|2-HIGH|Clerk#000002733|0|ss theodolites are-- quickly regular ideas ca| +50632|75979|F|183212.99|1993-03-27|4-NOT SPECIFIED|Clerk#000004603|0|ounts are among the foxes. furiously ironic deposits sleep carefully | +50633|460454|F|29951.03|1993-09-14|1-URGENT|Clerk#000000090|0|s the even deposits wake along the blithely reg| +50634|342191|F|184262.09|1993-04-23|2-HIGH|Clerk#000001941|0|ithely. daringly sly accounts nag carefully blithe| +50635|188773|P|215467.52|1995-03-06|1-URGENT|Clerk#000000194|0|ss theodolites among the unusual, ironic accounts run slyly special | +50636|202075|F|160091.60|1993-03-15|4-NOT SPECIFIED|Clerk#000003287|0| thin foxes. ironic courts haggle carefully. blithely ir| +50637|262919|O|279519.59|1997-11-19|5-LOW|Clerk#000003078|0|leep blithely across the quickly ironic pinto be| +50638|625408|F|260536.20|1993-08-24|4-NOT SPECIFIED|Clerk#000000483|0|yly final asymptotes wake carefully furiously pendin| +50639|713321|F|329374.24|1995-01-09|4-NOT SPECIFIED|Clerk#000004056|0|ular instructions. final packages use| +50664|27100|F|16525.26|1992-10-04|4-NOT SPECIFIED|Clerk#000001371|0|jole fluffily besides the slyly final decoys. furiously dogged requests | +50665|203239|O|220119.06|1997-11-04|2-HIGH|Clerk#000004882|0| bravely theodolites. fur| +50666|330038|P|226229.47|1995-02-24|5-LOW|Clerk#000000130|0|ly regular packages. carefully express accounts haggle. ironically| +50667|688162|F|138768.92|1992-02-20|3-MEDIUM|Clerk#000003505|0| instructions are fluffily ab| +50668|187522|P|301185.34|1995-03-31|2-HIGH|Clerk#000004949|0|y accounts. careful accounts alongside of the quic| +50669|165716|O|39738.30|1997-04-08|5-LOW|Clerk#000001621|0| requests are carefully among the regular deposits. final, pending re| +50670|426965|P|6776.39|1995-05-08|5-LOW|Clerk#000000422|0|ly final deposits wake carefully ironic dependencies. furiously express pinto | +50671|741874|F|88761.32|1993-03-12|2-HIGH|Clerk#000002683|0|ar ideas. final theodolites at the requests nag furiously unusual, pending| +50696|664765|F|50519.68|1994-09-11|5-LOW|Clerk#000001593|0| furiously. slyly regul| +50697|676279|O|312092.48|1995-11-14|2-HIGH|Clerk#000001544|0|al accounts wake quickly. final accounts w| +50698|692833|O|180521.12|1995-09-23|3-MEDIUM|Clerk#000003708|0|oxes sleep furiously. slyly bus| +50699|691157|F|62170.21|1994-08-15|5-LOW|Clerk#000004659|0| above the special reques| +50700|265541|F|154168.51|1992-10-30|4-NOT SPECIFIED|Clerk#000003774|0|into beans. even packages haggle furiously e| +50701|435784|O|164958.89|1996-08-26|3-MEDIUM|Clerk#000001240|0|h the blithely regular | +50702|471515|O|184423.81|1996-05-04|2-HIGH|Clerk#000004105|0|posits. quickly regular ideas wake blithely final | +50703|250042|F|140837.01|1993-05-19|2-HIGH|Clerk#000002606|0|haggle furiously. platelets are according to the quickl| +50728|195034|O|65933.16|1997-09-08|2-HIGH|Clerk#000000952|0|the doggedly regular accounts. evenly ironic braids aff| +50729|410584|O|17533.08|1996-06-05|2-HIGH|Clerk#000002881|0|uests are. slyly bold instructions w| +50730|664046|F|113994.68|1994-12-29|2-HIGH|Clerk#000001262|0| furiously ironic packages are blithel| +50731|612941|F|50767.17|1994-05-21|4-NOT SPECIFIED|Clerk#000004836|0|y regular packages integrate sometimes among | +50732|443671|P|230940.35|1995-04-04|2-HIGH|Clerk#000002955|0|lyly against the regular, close dolphins. slyly spe| +50733|248981|O|83391.83|1997-06-14|4-NOT SPECIFIED|Clerk#000004406|0|he carefully special asymptotes. fluffily regular i| +50734|367711|F|98199.74|1992-10-12|3-MEDIUM|Clerk#000000924|0|t theodolites. fluffily bold excuses use carefully aft| +50735|99479|F|320516.69|1993-03-28|3-MEDIUM|Clerk#000001925|0|ly pending dependencies boost ruthlessly about the| +50760|186265|O|48360.16|1997-10-04|5-LOW|Clerk#000004924|0|press instructions boost fluffily regular accounts. slyly express a| +50761|54664|F|15901.35|1992-04-07|2-HIGH|Clerk#000003691|0|jole. furiously even theodolites wa| +50762|727246|O|238821.09|1997-12-13|2-HIGH|Clerk#000004215|0|quests. slow accounts above the unusual pinto beans| +50763|50047|F|347941.75|1992-04-09|3-MEDIUM|Clerk#000001210|0|ons are. quickly final pinto beans c| +50764|374011|O|77489.68|1995-07-03|4-NOT SPECIFIED|Clerk#000001560|0|enticingly bold dinos. dolphins sleep| +50765|228134|F|273641.75|1994-06-29|2-HIGH|Clerk#000002528|0|beans among the blithely regular multipliers use across the finally busy pint| +50766|240694|F|198707.38|1992-09-19|3-MEDIUM|Clerk#000001603|0|s nag along the furious| +50767|570220|F|229907.24|1993-07-13|2-HIGH|Clerk#000004839|0|counts haggle furiously even, regular instructions-- regul| +50792|177778|O|72018.20|1997-11-14|2-HIGH|Clerk#000003968|0|ully ironic tithes among the furiously pending theodolites cajole final,| +50793|648974|F|247658.28|1994-07-20|4-NOT SPECIFIED|Clerk#000002551|0|ep fluffily. slyly pending requests play furiously carefully| +50794|51989|O|238501.80|1996-07-08|4-NOT SPECIFIED|Clerk#000004961|0|lithely regular accounts. | +50795|25168|F|135556.50|1993-09-14|2-HIGH|Clerk#000001766|0| haggle thin, pending packages. bold packages wake furio| +50796|718192|O|193578.53|1995-11-02|4-NOT SPECIFIED|Clerk#000000351|0|gular accounts against| +50797|130882|O|30788.04|1996-10-06|2-HIGH|Clerk#000002150|0| regular accounts. slyly final dependencies across the slyly regular pa| +50798|704234|O|161113.48|1997-07-19|4-NOT SPECIFIED|Clerk#000002921|0|s wake along the furiously pending platelets. | +50799|308570|O|64255.45|1996-01-23|1-URGENT|Clerk#000000357|0|e of the fluffily bold instructions. slyly pending requests nag. s| +50824|619963|F|368151.87|1993-11-26|2-HIGH|Clerk#000003729|0|refully special deposits. carefully pending accounts are after the slowl| +50825|700487|P|273261.17|1995-03-21|5-LOW|Clerk#000003451|0| final requests wake quickly ironic theodolites. blithely special pinto | +50826|330073|F|69170.90|1992-01-25|1-URGENT|Clerk#000004614|0|oxes wake fluffily. ironic accoun| +50827|504326|O|250542.95|1997-03-27|5-LOW|Clerk#000001724|0|l deposits haggle quickly furiously bold requests. carefully unus| +50828|446885|F|270531.09|1994-08-11|5-LOW|Clerk#000001063|0|ctions? stealthily bold grouches cajole. regular, even the| +50829|282526|F|150114.32|1992-04-08|5-LOW|Clerk#000001841|0|y ironic excuses. final deposits haggle. carefully| +50830|156833|F|99254.11|1992-06-24|5-LOW|Clerk#000001150|0|y regular packages. careful, even accounts are along the ironic| +50831|390212|F|173695.18|1992-03-19|2-HIGH|Clerk#000000167|0|kages cajole quickly slyly final packages. slyly final theo| +50856|281782|O|146069.55|1996-02-03|2-HIGH|Clerk#000003858|0|uickly final dugouts sleep furiously. regularly i| +50857|407338|F|213937.53|1992-09-25|2-HIGH|Clerk#000001981|0|equests. final instructions wake blithely. quickly regula| +50858|105884|F|201947.30|1992-05-09|1-URGENT|Clerk#000002806|0|ously final deposits. de| +50859|582803|F|165367.59|1992-09-28|1-URGENT|Clerk#000004922|0|ts sublate blithely along the slyly regular deposits.| +50860|166981|O|12702.86|1998-03-30|5-LOW|Clerk#000002757|0|slyly across the furiously unusual theodolites. blithely unusual deposits| +50861|667822|F|35735.19|1993-10-19|1-URGENT|Clerk#000000957|0|dolites cajole of the express foxes. slyly express theodoli| +50862|311579|P|86503.04|1995-05-15|5-LOW|Clerk#000001156|0|side of the even requests. furiously even pinto bea| +50863|198662|O|102838.14|1997-05-17|5-LOW|Clerk#000003051|0|ular requests are slyly regular accounts. quickly even pinto beans wake care| +50888|658795|O|62574.64|1995-03-08|1-URGENT|Clerk#000002370|0|express foxes. regular pinto beans use fluffily over the packages. ca| +50889|101993|F|162647.46|1995-02-13|3-MEDIUM|Clerk#000001300|0|gular accounts: bold, regular dependencies sleep a| +50890|440882|F|241854.13|1993-04-22|4-NOT SPECIFIED|Clerk#000003953|0|gular, even instructions wake slyly. carefully ironic requ| +50891|644960|O|93491.48|1997-06-06|1-URGENT|Clerk#000001113|0|deas kindle above the in| +50892|84310|O|7929.66|1996-05-02|2-HIGH|Clerk#000002636|0|ully. pending accounts among the deposits cajole furious| +50893|228865|F|124651.01|1992-08-23|3-MEDIUM|Clerk#000001325|0|uthlessly regular dolphins. quickly final requests cajole| +50894|518594|O|175320.84|1995-08-08|4-NOT SPECIFIED|Clerk#000003409|0|ubt furiously according to the furiously ironic acco| +50895|243614|O|179640.14|1997-09-10|1-URGENT|Clerk#000004423|0|s snooze blithely about the furiously regular packa| +50920|167665|O|85960.20|1998-07-18|5-LOW|Clerk#000003705|0|fily brave asymptotes boost furiously silent platelets. express, silent co| +50921|169496|F|306269.11|1993-08-13|3-MEDIUM|Clerk#000003360|0|express, bold asymptotes x-ray slyly slow| +50922|218492|O|278977.08|1997-08-14|3-MEDIUM|Clerk#000001339|0|tes. bold packages cajole fluffily slyly ironic the| +50923|185989|O|202706.53|1996-01-21|1-URGENT|Clerk#000000613|0|. carefully even pinto beans alongside of the carefully final | +50924|665245|F|165826.45|1994-08-31|4-NOT SPECIFIED|Clerk#000004813|0|tions nag carefully final | +50925|514315|O|36835.73|1997-10-07|1-URGENT|Clerk#000004123|0|s alongside of the blithely regular packages wa| +50926|315385|F|90104.16|1994-07-23|4-NOT SPECIFIED|Clerk#000000188|0|efully regular, unusual excuses. quickly silent forges wake quickl| +50927|421694|O|167908.54|1995-06-24|5-LOW|Clerk#000001280|0|es. furiously regular packages boost furiously ab| +50952|655975|O|22907.21|1996-06-21|5-LOW|Clerk#000004651|0|old pinto beans solve slyly. even asym| +50953|713012|O|113056.95|1995-04-09|4-NOT SPECIFIED|Clerk#000004485|0|s alongside of the slyly regular accounts haggle fur| +50954|89279|O|305796.29|1995-10-07|1-URGENT|Clerk#000004864|0|lly bold foxes. slyly regular pinto beans integrate. bl| +50955|505955|F|122735.53|1992-07-15|2-HIGH|Clerk#000003084|0|ly bold excuses around the d| +50956|74845|O|220264.89|1997-06-25|1-URGENT|Clerk#000002089|0|lithely fluffy accounts boost blithel| +50957|162454|F|247497.14|1993-03-07|3-MEDIUM|Clerk#000004382|0|usly ironic deposits| +50958|332270|F|81410.51|1993-04-10|2-HIGH|Clerk#000001862|0|e carefully above the express, unusual depo| +50959|698890|P|287632.78|1995-04-13|3-MEDIUM|Clerk#000000963|0|usual requests use furiously across the slyly unusual deposits. carefully | +50984|482722|O|137413.60|1997-10-07|4-NOT SPECIFIED|Clerk#000004430|0|g theodolites wake blithely among the| +50985|340475|O|179337.53|1996-02-02|1-URGENT|Clerk#000001155|0|l requests use about the| +50986|612181|O|155915.04|1997-11-30|2-HIGH|Clerk#000001438|0|ly. ironic, final requests may are al| +50987|420830|F|124422.98|1993-03-28|5-LOW|Clerk#000002480|0|iously pending pinto bean| +50988|375865|O|90405.13|1998-01-18|1-URGENT|Clerk#000003312|0|cies sleep express notornis. | +50989|647248|O|74807.95|1995-05-03|3-MEDIUM|Clerk#000000147|0|e furiously pending foxes. requests cajole from the ironic, expres| +50990|294614|O|142513.31|1996-05-15|1-URGENT|Clerk#000001068|0|ect quickly ironic deposits. | +50991|69670|F|159623.61|1994-04-28|4-NOT SPECIFIED|Clerk#000001369|0|uctions cajole alongside of the furiously ev| +51016|164899|O|108521.79|1996-05-19|3-MEDIUM|Clerk#000001441|0|sly regular sentiments. packages are quickly quickly| +51017|178663|O|358072.19|1998-05-16|1-URGENT|Clerk#000001522|0|elets. blithely fina| +51018|511919|O|99048.31|1995-07-07|4-NOT SPECIFIED|Clerk#000000416|0| ideas cajole slyly. carefully express packages wa| +51019|558154|F|187215.24|1992-01-02|5-LOW|Clerk#000000906|0|pending pinto beans. furio| +51020|636271|O|267177.73|1996-02-03|1-URGENT|Clerk#000002786|0|g to the fluffily unusual p| +51021|283300|F|24268.30|1993-08-18|4-NOT SPECIFIED|Clerk#000000042|0|s dazzle against the quickly even reque| +51022|416326|O|282637.77|1995-07-20|5-LOW|Clerk#000004036|0| boost quickly slyly final multiplier| +51023|420082|O|64004.89|1996-06-25|2-HIGH|Clerk#000003065|0|sits according to the furiously d| +51048|557077|O|3018.13|1996-11-28|1-URGENT|Clerk#000003482|0|y regular excuses. ironic, | +51049|510229|O|4950.16|1996-08-14|4-NOT SPECIFIED|Clerk#000004862|0|ans. requests haggle against the carefully ironic instructions. blithel| +51050|655015|O|90984.35|1996-09-26|1-URGENT|Clerk#000000477|0|carefully silent requests. carefully| +51051|305707|F|122891.44|1992-08-18|4-NOT SPECIFIED|Clerk#000000917|0|furiously. carefully ironic| +51052|488908|O|180868.71|1998-03-24|4-NOT SPECIFIED|Clerk#000002580|0|le blithely. carefully final accounts sleep blithely accounts| +51053|47542|F|26738.94|1992-07-01|3-MEDIUM|Clerk#000003354|0|ely. never enticing pinto beans wake fluffily silent platelets. b| +51054|272332|P|96503.12|1995-04-28|4-NOT SPECIFIED|Clerk#000000128|0|xes; even, final deposits according to the carefully final| +51055|550640|F|298098.82|1993-01-02|4-NOT SPECIFIED|Clerk#000002075|0|theodolites cajole quickly about the slyly pen| +51080|356131|F|59567.35|1994-07-05|5-LOW|Clerk#000000658|0|ly final foxes wake fl| +51081|488293|F|28563.26|1993-01-12|3-MEDIUM|Clerk#000003221|0|efully enticing accounts wake bus| +51082|220972|F|209807.47|1994-02-07|1-URGENT|Clerk#000004941|0| the furiously unusual instructions wake quickly pend| +51083|619694|F|188594.17|1994-10-30|3-MEDIUM|Clerk#000002437|0|lyly carefully final packages. carefully| +51084|685625|O|67807.83|1995-07-24|5-LOW|Clerk#000002810|0|nag furiously blithely unusual accounts. | +51085|291040|F|303757.40|1993-11-17|2-HIGH|Clerk#000002876|0|riously after the ideas: even accounts above the f| +51086|728368|F|173087.29|1993-05-29|5-LOW|Clerk#000004856|0|l deposits. quickly silent packages use slyly. even courts use bli| +51087|161419|F|241032.17|1993-10-09|3-MEDIUM|Clerk#000002956|0|slyly carefully bold courts. furiously special acco| +51112|200950|F|118905.34|1994-07-29|5-LOW|Clerk#000001416|0|uests along the final instructions haggle carefu| +51113|114604|F|61677.66|1992-10-05|1-URGENT|Clerk#000002126|0|ending ideas must have to sublate enticingly. slyly brave asymptotes | +51114|124339|F|291721.77|1992-08-08|1-URGENT|Clerk#000000866|0|ly ironic theodolites above the fluffily special reque| +51115|241930|O|170867.46|1996-06-03|4-NOT SPECIFIED|Clerk#000002000|0|into beans. quickly unusual | +51116|335507|O|16321.15|1995-08-13|4-NOT SPECIFIED|Clerk#000002996|0|ounts cajole. ironic foxes haggle fluffily. carefully pending tithes| +51117|353786|F|267556.03|1994-01-23|3-MEDIUM|Clerk#000003395|0|its. platelets run quickly. b| +51118|75470|F|115887.61|1995-02-11|4-NOT SPECIFIED|Clerk#000003685|0|escapades about the furiously pending deposits engage quickly s| +51119|159241|O|329472.82|1998-05-05|2-HIGH|Clerk#000001318|0|yly regular requests along the special, ironic dependencies boost slyly regu| +51144|333145|O|302524.43|1997-11-04|4-NOT SPECIFIED|Clerk#000000526|0|requests wake among the quickly stealthy foxes. bold foxes sleep doggedl| +51145|412960|O|166891.06|1997-01-20|2-HIGH|Clerk#000002163|0|sits boost against | +51146|94196|P|389930.92|1995-04-23|3-MEDIUM|Clerk#000004007|0|slyly blithely special platelets. carefully ruthless pinto bean| +51147|638239|O|46885.00|1995-10-31|2-HIGH|Clerk#000001303|0|ronic accounts haggle blithely b| +51148|369818|O|132546.20|1995-11-01|3-MEDIUM|Clerk#000000098|0| according to the fluffily regular theodo| +51149|274693|O|88431.12|1995-09-24|3-MEDIUM|Clerk#000004505|0|ests use furiously around the enticing accounts: pending instructions about | +51150|495331|F|103936.23|1992-07-26|3-MEDIUM|Clerk#000001085|0|ke furiously along the furiously ironic theodolites. stealthily silent| +51151|1304|O|258095.76|1998-04-06|1-URGENT|Clerk#000003697|0|iously pending dolp| +51176|150520|F|258210.31|1992-11-01|4-NOT SPECIFIED|Clerk#000003289|0|ang carefully furiously ironic frays. slyly bold deposits are ev| +51177|28139|F|48091.77|1993-07-18|3-MEDIUM|Clerk#000004275|0|ely: pending deposits are furiously slyly bold | +51178|428593|O|66744.36|1996-11-30|5-LOW|Clerk#000001684|0|ickly regular ideas haggle. quickly ironic deposits cajole f| +51179|340849|O|13969.78|1997-01-10|4-NOT SPECIFIED|Clerk#000004651|0|ly permanent pinto beans cajole sly| +51180|144493|O|122371.88|1998-03-16|3-MEDIUM|Clerk#000003730|0|lyly ironic packages integrate toward the final packages: pinto beans aga| +51181|717403|O|90787.54|1997-05-24|4-NOT SPECIFIED|Clerk#000001729|0|ld packages against the furiously even accounts cajole about the ironic, sly| +51182|390748|O|163252.85|1996-04-28|4-NOT SPECIFIED|Clerk#000002394|0|. special ideas boost. theodolites after the fluffily special theodolites boos| +51183|288632|O|202047.42|1996-11-08|2-HIGH|Clerk#000000697|0|tes wake. ironic accounts sleep. unusual, regular grouches a| +51208|33334|F|174176.84|1994-06-16|3-MEDIUM|Clerk#000003654|0|, ironic dolphins haggle carefully at the express notornis. de| +51209|712346|O|184961.55|1996-11-12|1-URGENT|Clerk#000001059|0|iously enticing instruc| +51210|134063|O|194834.40|1997-03-21|4-NOT SPECIFIED|Clerk#000003040|0| slyly regular deposits. furiously bold requests around the carefully unusua| +51211|184688|O|36311.75|1997-11-14|1-URGENT|Clerk#000001139|0| permanent deposits| +51212|539320|F|126120.31|1994-10-14|2-HIGH|Clerk#000001223|0| express, regular ideas ca| +51213|593674|F|179889.12|1993-11-11|2-HIGH|Clerk#000000961|0|ainst the bravely sp| +51214|626519|O|57169.56|1996-10-17|2-HIGH|Clerk#000004869|0|inst the ironic orbits. depo| +51215|638885|O|93824.91|1995-08-29|5-LOW|Clerk#000000409|0|sly. carefully final theodolites wake fluffily quickly unusual pac| +51240|732527|F|224209.90|1992-05-28|3-MEDIUM|Clerk#000000230|0|sts detect across the furiously pending instructions. blithely blithe accounts| +51241|324853|O|100546.53|1997-05-31|1-URGENT|Clerk#000001242|0|furiously regular courts print carefully along the requests. foxes about t| +51242|536239|F|165302.60|1992-08-19|1-URGENT|Clerk#000004460|0| after the ironic, regular ideas haggle blithely f| +51243|549697|O|58476.90|1995-11-12|3-MEDIUM|Clerk#000001561|0|unwind carefully fluffily blithe theodoli| +51244|230468|O|20469.82|1995-12-28|5-LOW|Clerk#000002453|0|ly alongside of the | +51245|472534|F|104216.27|1994-02-16|4-NOT SPECIFIED|Clerk#000002849|0|riously ironic foxes integrate | +51246|103486|F|117463.99|1994-09-05|4-NOT SPECIFIED|Clerk#000001632|0|as above the blithely pending foxes. regular deposits haggle fu| +51247|30152|F|176906.15|1994-12-29|1-URGENT|Clerk#000000183|0| above the carefully special sauternes.| +51272|502003|O|18071.37|1996-12-29|1-URGENT|Clerk#000004345|0|ending pinto beans. ironic accounts h| +51273|389659|F|151740.67|1992-06-07|5-LOW|Clerk#000002940|0|sts thrash slyly along the blithely pending courts! express Tiresias| +51274|738851|O|105402.89|1998-07-02|1-URGENT|Clerk#000000378|0|n requests wake quickly. | +51275|114803|O|77367.46|1997-03-27|1-URGENT|Clerk#000003577|0| ironic instructions. silent ideas according to the special asymptotes print | +51276|480277|O|170214.58|1997-10-10|2-HIGH|Clerk#000003603|0|sual deposits are fluffily within the ironic, iron| +51277|513947|O|170685.69|1996-08-08|3-MEDIUM|Clerk#000002927|0|l dugouts. furiously ironic requests hag| +51278|142060|F|310896.57|1994-06-14|5-LOW|Clerk#000004984|0| even packages haggle fin| +51279|321706|O|72085.64|1995-06-02|2-HIGH|Clerk#000000557|0|carefully final theodo| +51304|134105|F|10776.79|1994-04-01|5-LOW|Clerk#000001056|0|the regular accounts are above the slyly bold deposits. even packages integr| +51305|139378|O|117469.79|1996-01-01|5-LOW|Clerk#000003283|0|lar packages. regular deposits | +51306|267533|O|188184.69|1995-12-27|4-NOT SPECIFIED|Clerk#000002527|0|y. even, bold excuses against the furiously regular ideas cajole car| +51307|174688|F|44486.43|1992-12-28|4-NOT SPECIFIED|Clerk#000004035|0|ly final accounts. ideas sleep about the unusual, ironic accounts. | +51308|463723|F|274645.20|1995-03-05|1-URGENT|Clerk#000002005|0|efully enticing foxes alongsi| +51309|517325|O|132920.14|1997-03-12|3-MEDIUM|Clerk#000001514|0| to the regular, final packages. furiously furious deposits haggle slyly abo| +51310|677144|F|76311.83|1995-03-14|1-URGENT|Clerk#000004979|0|tions use carefully reg| +51311|245620|F|19240.96|1992-06-25|2-HIGH|Clerk#000001336|0|s along the requests haggle blithely ironic accounts. slyly| +51336|104779|F|209517.04|1994-01-04|5-LOW|Clerk#000003560|0|ular accounts wake blithely against the blithely final deposits. slyly | +51337|737726|F|300072.46|1995-02-17|5-LOW|Clerk#000001500|0|lites cajole slyly under the blithely special accounts. carefully express de| +51338|696166|O|56921.93|1996-02-01|5-LOW|Clerk#000002490|0|deas. final requests shall have to detect ideas| +51339|441341|F|277951.32|1993-12-04|3-MEDIUM|Clerk#000000848|0|g the furiously even deposits. pending, final foxes sleep. fur| +51340|113335|F|32748.90|1992-11-24|1-URGENT|Clerk#000002755|0|final frays believe. carefully ironic foxes wake. ideas wake slyly fluffily ev| +51341|565399|O|38156.83|1995-12-26|4-NOT SPECIFIED|Clerk#000004065|0|counts. even, ironic ideas | +51342|142120|F|162955.93|1993-06-03|3-MEDIUM|Clerk#000004178|0|ally ironic accounts wake carefully against the blithely regular deposits| +51343|602009|O|15475.42|1995-10-12|5-LOW|Clerk#000004292|0|even deposits are furiously even foxes. furiously regular theodolit| +51368|459109|O|373858.08|1997-09-12|4-NOT SPECIFIED|Clerk#000002913|0| fluffily blithely sly gifts! qu| +51369|240920|O|278377.48|1996-05-25|2-HIGH|Clerk#000002404|0|ajole blithely. carefully regular ac| +51370|628813|O|115874.30|1996-04-14|2-HIGH|Clerk#000003834|0| instructions boost furiously? foxes at the furiously ironic | +51371|200848|O|81906.74|1997-10-11|3-MEDIUM|Clerk#000001676|0| beans nag across the even packages. blithely bo| +51372|650546|F|42185.01|1993-11-09|1-URGENT|Clerk#000001560|0|ar deposits need to haggle slyly unusual orbits. | +51373|217588|F|83139.00|1993-07-23|2-HIGH|Clerk#000002762|0|luffily closely final pinto beans| +51374|742513|F|138767.48|1992-09-01|4-NOT SPECIFIED|Clerk#000000216|0|ven foxes. special notor| +51375|140789|F|185662.08|1994-10-08|4-NOT SPECIFIED|Clerk#000003092|0|ld epitaphs are quickly blithely pending accounts. blithely i| +51400|734737|F|48186.16|1993-12-30|1-URGENT|Clerk#000003783|0|l accounts affix. express deposits solve. fluffily final pinto beans | +51401|714592|O|198275.54|1997-10-03|3-MEDIUM|Clerk#000003571|0|esias according to the silent foxes wake carefully fluffily final reque| +51402|394321|F|175143.40|1993-01-05|5-LOW|Clerk#000003997|0|ts. blithely final deposits serve ironically. ironic reques| +51403|332072|F|185622.71|1992-03-25|4-NOT SPECIFIED|Clerk#000002004|0|lar foxes haggle fl| +51404|367469|O|15025.89|1998-02-26|4-NOT SPECIFIED|Clerk#000004808|0|onic deposits. ruthless r| +51405|535709|P|143979.77|1995-04-27|3-MEDIUM|Clerk#000003758|0|e across the dependencies. fluffily final accounts slee| +51406|656497|F|121261.79|1993-01-27|2-HIGH|Clerk#000002437|0|ic deposits. even dolphins cajole against the iro| +51407|480463|F|71345.99|1993-03-25|5-LOW|Clerk#000001695|0| final instructions wake around the fluffily ironic packages. car| +51432|638758|O|65628.65|1995-12-10|3-MEDIUM|Clerk#000003892|0|kages dazzle furiously against the regular, final pinto beans. final accoun| +51433|90118|F|12365.18|1994-03-28|5-LOW|Clerk#000001116|0|ole idly about the boldly even gifts. quick| +51434|341882|O|130499.44|1997-02-23|5-LOW|Clerk#000004175|0|ze. quickly ironic ideas aff| +51435|246328|F|122846.39|1994-01-16|2-HIGH|Clerk#000004736|0|nticing hockey players. regular depos| +51436|15958|O|216244.38|1998-01-17|2-HIGH|Clerk#000004561|0|uriously according to the special theodolites--| +51437|444982|F|332053.84|1995-01-12|4-NOT SPECIFIED|Clerk#000004049|0|ites around the unusual pinto beans sleep furiously carefully unu| +51438|537470|O|78129.65|1997-07-04|3-MEDIUM|Clerk#000003840|0| requests impress about the| +51439|242632|O|44201.34|1995-10-28|1-URGENT|Clerk#000004128|0|es haggle quickly ironic foxes. bold, even foxes sleep sl| +51464|155395|F|272671.40|1993-06-22|1-URGENT|Clerk#000004622|0|platelets. fluffily even pinto beans after the slyly ironic foxes| +51465|205627|F|90968.51|1994-05-02|4-NOT SPECIFIED|Clerk#000001034|0| asymptotes dazzle at the accoun| +51466|719593|O|286837.53|1996-03-22|3-MEDIUM|Clerk#000002203|0|xpress, pending theodolites haggle platelets. furiously special package| +51467|421405|F|238951.16|1994-11-23|1-URGENT|Clerk#000000878|0|ic requests. final pains after the slyly unusual packages snooz| +51468|278572|F|212524.98|1993-11-19|1-URGENT|Clerk#000003931|0|. packages promise furiously.| +51469|449020|O|307095.24|1996-11-23|2-HIGH|Clerk#000002630|0|ronic requests. slyly ironic ideas nag blithely. doggedly f| +51470|157981|F|60641.90|1993-06-17|3-MEDIUM|Clerk#000002127|0|lar, bold excuses cajole carefull| +51471|170428|F|65664.24|1994-06-29|2-HIGH|Clerk#000002008|0|fluffily carefully dog| +51496|116531|F|285102.16|1992-09-03|4-NOT SPECIFIED|Clerk#000000923|0|ckages wake. slyly unusual pinto beans about the furiously ironi| +51497|273835|F|160729.11|1993-05-16|2-HIGH|Clerk#000000531|0|uriously. furiously final pinto beans use past t| +51498|318640|F|299750.13|1992-04-16|2-HIGH|Clerk#000004518|0|kages engage quickly across the blithely enticing waters. ir| +51499|358757|F|126798.36|1992-12-06|1-URGENT|Clerk#000000414|0|s haggle furiously blithely special theodolites. | +51500|363484|O|306402.90|1997-11-25|2-HIGH|Clerk#000001683|0|osits sleep blithely ironic requests. flu| +51501|309359|F|202468.36|1994-02-11|1-URGENT|Clerk#000002634|0|os over the blithely express w| +51502|388112|O|160096.42|1997-03-12|3-MEDIUM|Clerk#000002979|0|cial pinto beans haggle. fluffily regular account| +51503|238486|O|206050.60|1995-06-30|1-URGENT|Clerk#000000205|0|o beans boost furiously carefully regular r| +51528|233461|F|68918.32|1992-07-18|2-HIGH|Clerk#000001809|0|deposits haggle according to the daringl| +51529|514753|F|286306.27|1993-10-06|2-HIGH|Clerk#000004226|0|wake. carefully final accounts ha| +51530|186827|O|265588.01|1997-04-18|2-HIGH|Clerk#000004340|0|uriously. even platelets against the even accounts are slyly acr| +51531|497057|F|34623.23|1994-04-27|2-HIGH|Clerk#000002815|0|boost ironic requests-- blithely unusual deposits nag carefully. spe| +51532|529804|O|332538.52|1996-04-05|5-LOW|Clerk#000000576|0|lms: blithely special foxes wake slyly. quickly sly requests above t| +51533|409393|F|65370.47|1992-07-12|1-URGENT|Clerk#000000852|0|y ironic dinos sleep quickly a| +51534|149099|O|102905.19|1997-11-29|2-HIGH|Clerk#000000057|0|aggle slyly. regular, unusual pinto bean| +51535|142180|F|329098.43|1994-05-24|4-NOT SPECIFIED|Clerk#000004202|0| grow. quickly regular packages | +51560|105131|F|59075.33|1993-05-26|3-MEDIUM|Clerk#000002583|0| final instructions!| +51561|670492|O|227808.93|1997-01-02|5-LOW|Clerk#000004597|0|l deposits sleep quickly. f| +51562|186277|O|12730.73|1998-07-16|2-HIGH|Clerk#000002520|0|ests alongside of the p| +51563|233522|O|56931.23|1998-02-21|5-LOW|Clerk#000000178|0|eposits. furiously r| +51564|43202|O|440226.39|1995-08-22|1-URGENT|Clerk#000002189|0|ily regular accounts are furiously against the theodolite| +51565|87376|O|163648.95|1995-05-21|2-HIGH|Clerk#000000373|0| the final accounts. bold requests| +51566|20137|O|12760.03|1997-07-09|5-LOW|Clerk#000002504|0|pinto beans. deposits use according to the regular deposits. packages unwin| +51567|191002|F|63835.59|1993-03-16|1-URGENT|Clerk#000003791|0|ven frays use slyly. quickly even excuses haggle quickly ironic ideas. quick| +51592|169718|F|155036.99|1993-12-12|3-MEDIUM|Clerk#000000724|0|metimes bold requests. fluffily ironic excuses haggle sl| +51593|192595|O|244920.82|1997-09-30|1-URGENT|Clerk#000003869|0|y pending requests detect above the slyly ironic theodolites? | +51594|692869|P|192940.29|1995-03-15|3-MEDIUM|Clerk#000004787|0|nic, final platelets wake quickly quickly express theodoli| +51595|529561|O|164108.37|1998-05-14|5-LOW|Clerk#000001423|0|usly ironic depths. sauternes are slyly about the | +51596|72413|F|71719.98|1993-03-09|2-HIGH|Clerk#000004575|0|integrate carefully across the regular instructions. even | +51597|544019|F|46639.19|1994-06-03|4-NOT SPECIFIED|Clerk#000002010|0|y regular deposits. theodolites haggle furiously| +51598|70396|F|249670.06|1992-03-13|2-HIGH|Clerk#000001620|0|al pinto beans affix doggedly | +51599|389677|O|235939.98|1996-04-09|5-LOW|Clerk#000003194|0|he special ideas. even, regular pattern| +51624|289319|F|272760.59|1993-10-05|2-HIGH|Clerk#000004731|0|e regular accounts. furiously bold braids mold. special, bold theod| +51625|330682|O|185189.84|1998-06-15|2-HIGH|Clerk#000001824|0|t final packages. fluffil| +51626|240907|F|55986.22|1995-02-06|4-NOT SPECIFIED|Clerk#000003993|0|ts nag slyly final packages. bold foxes ha| +51627|395149|O|20547.12|1997-06-11|1-URGENT|Clerk#000003474|0|fully pending deposits. busy accounts affix carefully quic| +51628|8647|O|311449.43|1996-05-24|3-MEDIUM|Clerk#000003413|0|dly along the deposits. final, ironic accounts according to the requests| +51629|548047|P|147626.86|1995-03-31|1-URGENT|Clerk#000003459|0|sits detect quickly after the express ideas. furiously ex| +51630|259249|O|48843.09|1998-02-03|1-URGENT|Clerk#000004042|0|after the furiously final asymptotes. bold requests sleep.| +51631|443872|F|281274.52|1995-01-23|3-MEDIUM|Clerk#000001667|0|. slyly ironic dependencies according to the quickly ironic dependencies are| +51656|645322|F|124990.75|1994-03-23|2-HIGH|Clerk#000002583|0|ly even pains. enticingly regular asymptotes along the regu| +51657|170675|O|122193.21|1998-05-11|2-HIGH|Clerk#000000426|0|ngly express braids: quickly pending accounts could wake blithely idly regula| +51658|529606|O|106678.64|1996-12-16|1-URGENT|Clerk#000000771|0|nusual foxes wake slyly requests| +51659|70828|F|248869.69|1994-08-04|3-MEDIUM|Clerk#000002878|0|f the carefully final foxes. blithely bold| +51660|140971|O|140451.06|1995-06-25|5-LOW|Clerk#000004188|0|rbits. permanently even deposits serve carefully carefully even ideas. | +51661|29443|F|91006.01|1994-05-26|4-NOT SPECIFIED|Clerk#000002402|0|ymptotes cajole fluffily. pending, even requests w| +51662|590506|F|273093.68|1993-01-02|5-LOW|Clerk#000000395|0|arefully bold requests. final requests | +51663|605123|F|198331.83|1992-05-28|5-LOW|Clerk#000001833|0| sleep furiously ideas. c| +51688|295531|F|27074.02|1993-08-06|1-URGENT|Clerk#000001562|0|lithely regular theodolites. slyly pending requests in| +51689|488182|F|1105.03|1992-10-21|2-HIGH|Clerk#000004642|0|ithely final grouches sleep sly| +51690|611146|O|3775.63|1997-12-15|2-HIGH|Clerk#000004555|0|ns nag. final, special pinto beans wake. quickl| +51691|255871|F|106476.40|1993-01-26|2-HIGH|Clerk#000002826|0|ackages. blithely regular requests snooze furiously ironic | +51692|659281|O|278769.66|1997-03-01|1-URGENT|Clerk#000001814|0|rding to the blithe dependencies. pending courts around the quickl| +51693|8290|O|115170.12|1998-01-31|1-URGENT|Clerk#000002339|0|deas. slyly even re| +51694|553138|F|36028.69|1993-10-06|4-NOT SPECIFIED|Clerk#000001759|0|kly regular asymptotes nag slyly according| +51695|326216|F|272204.31|1993-09-19|2-HIGH|Clerk#000001351|0|ost quickly pending deposits. special accounts sle| +51720|206533|O|195646.41|1996-12-21|5-LOW|Clerk#000001310|0|the regular pinto beans. quickly even decoys thrash after t| +51721|168745|F|40835.07|1993-10-28|5-LOW|Clerk#000004471|0|he deposits. express, qui| +51722|343642|F|1784.03|1992-06-29|4-NOT SPECIFIED|Clerk#000001322|0|along the blithely express requests. even, regular pa| +51723|560909|F|144624.71|1993-08-23|5-LOW|Clerk#000000937|0|lly about the regular packages. packages| +51724|435820|O|177269.62|1996-06-20|3-MEDIUM|Clerk#000000511|0| the express ideas-- u| +51725|324793|F|168909.51|1993-10-23|5-LOW|Clerk#000003484|0|ual packages affix against the fu| +51726|294481|O|110301.64|1998-07-26|4-NOT SPECIFIED|Clerk#000000392|0|e ironic packages. slyly re| +51727|81182|F|263370.84|1992-06-13|4-NOT SPECIFIED|Clerk#000002455|0|lithely-- slyly express requests wake around the carefully ir| +51752|174040|O|12157.60|1996-09-09|1-URGENT|Clerk#000000758|0|ly. carefully even requests are. pending dinos above the special package| +51753|77816|F|18860.95|1992-07-17|2-HIGH|Clerk#000004244|0|ronic theodolites inte| +51754|589162|O|204084.29|1997-03-12|5-LOW|Clerk#000004348|0|uriously. blithely bold deposits thrash slyly regular, iron| +51755|522061|O|239242.45|1996-04-01|2-HIGH|Clerk#000001109|0|ccounts nag furiously | +51756|8236|F|57870.14|1994-06-28|5-LOW|Clerk#000004616|0|uests sublate after the si| +51757|402737|O|14806.94|1996-11-02|5-LOW|Clerk#000004705|0|en pearls nag slyly regular| +51758|48304|O|247423.95|1995-12-09|5-LOW|Clerk#000002879|0|y even packages. carefull| +51759|331030|O|76614.29|1998-06-15|2-HIGH|Clerk#000000449|0|s requests lose! fluffily regular foxes integrate ruthle| +51784|97018|O|94964.93|1998-03-23|5-LOW|Clerk#000000738|0|es haggle furiously unusual d| +51785|71278|F|44697.70|1995-03-29|3-MEDIUM|Clerk#000002944|0|, bold packages are fluffily amon| +51786|213400|O|150101.91|1997-05-23|4-NOT SPECIFIED|Clerk#000003817|0|equests are carefully fluff| +51787|93859|O|61229.23|1997-02-14|2-HIGH|Clerk#000000346|0|ckly even accounts sleep special waters. blithely bold hockey playe| +51788|225712|F|180279.32|1994-04-13|4-NOT SPECIFIED|Clerk#000002666|0|s nag under the carefully final accounts. final, ironic accounts again| +51789|30880|O|18833.25|1997-09-10|4-NOT SPECIFIED|Clerk#000003941|0|the carefully silent packages. ideas sleep slyly! regular frays integrat| +51790|717583|O|218255.21|1997-05-17|1-URGENT|Clerk#000000355|0|about the instructions. express dugouts mold furiously unusual fr| +51791|410531|F|140128.64|1993-11-14|5-LOW|Clerk#000002886|0|es boost about the slyly final pinto beans. slyly bold theodolit| +51816|532459|F|4028.43|1993-11-06|3-MEDIUM|Clerk#000002719|0| deposits. pinto beans nod furious| +51817|18988|F|145785.25|1992-02-11|1-URGENT|Clerk#000002568|0|eep carefully regular, pending theodolites. final reques| +51818|354460|O|226452.75|1995-10-06|5-LOW|Clerk#000000972|0|y express instructions. blithely pending pinto beans sleep carefully after | +51819|157508|F|171326.36|1992-06-19|1-URGENT|Clerk#000001303|0|requests. slyly final instructions cajole slyly. slyly bold warthogs affix bl| +51820|484595|O|118043.94|1997-11-04|2-HIGH|Clerk#000002053|0|riously final pinto beans. wat| +51821|325114|O|127025.53|1996-05-19|5-LOW|Clerk#000003175|0|c instructions use. special, sp| +51822|427801|F|30777.97|1992-03-11|2-HIGH|Clerk#000003178|0|he blithely final accoun| +51823|526645|F|245410.19|1992-01-21|1-URGENT|Clerk#000004048|0|e blithely even, special accounts. reg| +51848|572378|O|272249.25|1995-10-26|5-LOW|Clerk#000004940|0|ng requests nag fluffily even platelets. busy theodolites mu| +51849|454496|O|319094.01|1998-01-04|4-NOT SPECIFIED|Clerk#000001194|0|ending excuses accordi| +51850|703621|O|90075.35|1997-08-01|1-URGENT|Clerk#000003254|0|fily enticing foxes detect among the even, regular requests. furiously even| +51851|479881|F|234993.63|1994-10-31|3-MEDIUM|Clerk#000000382|0| the slyly regular accounts haggle carefully to| +51852|603470|F|234515.42|1993-06-08|3-MEDIUM|Clerk#000002249|0|xes. requests integrate carefully special requests. ironic, reg| +51853|255331|F|35605.07|1993-04-13|4-NOT SPECIFIED|Clerk#000000198|0|ously ironic ideas. even requests wake slyly about the blithely final pac| +51854|585457|O|353310.23|1998-01-20|3-MEDIUM|Clerk#000004028|0|y special waters nag furiously alongsid| +51855|497671|F|25971.29|1992-09-04|3-MEDIUM|Clerk#000003771|0|ronic, ironic dinos wake quickly at the carefully | +51880|354131|O|401026.70|1997-09-12|5-LOW|Clerk#000002391|0|ecial accounts. deposits wake bl| +51881|626453|O|96992.55|1997-10-05|1-URGENT|Clerk#000003369|0|eas haggle quickly after the blithely unusual courts. slyly even ideas ar| +51882|283189|P|233143.86|1995-05-15|5-LOW|Clerk#000001875|0|ealms. carefully pending pinto beans wake blithely expres| +51883|54010|F|115200.70|1994-06-06|3-MEDIUM|Clerk#000001980|0|ironic, pending requests after the packages na| +51884|227242|O|58567.98|1995-09-16|3-MEDIUM|Clerk#000000513|0|sits are furiously ironic ideas. busily furious accounts sleep above the | +51885|248239|F|58076.96|1994-05-10|4-NOT SPECIFIED|Clerk#000003122|0|r the special dependencies| +51886|626737|F|135548.89|1992-05-28|1-URGENT|Clerk#000004923|0|pinto beans. quickly unusual foxes among the deco| +51887|559802|P|252643.28|1995-03-30|2-HIGH|Clerk#000000247|0|ording to the blithely unusual ideas. requests wake quickly against the fluffi| +51912|591482|O|100021.26|1996-07-16|3-MEDIUM|Clerk#000002303|0|ronic, pending packages cajole blithely. carefully regular braids sleep. p| +51913|534301|O|264047.52|1996-05-01|5-LOW|Clerk#000001520|0|sauternes. ironic instructions cajole | +51914|222704|O|17968.82|1998-01-12|5-LOW|Clerk#000001038|0|al packages haggle around the | +51915|475376|F|183360.01|1993-09-10|5-LOW|Clerk#000002249|0|s was. final accounts haggle blithely car| +51916|637280|O|50504.23|1995-09-22|4-NOT SPECIFIED|Clerk#000001864|0|mpress. regular accounts| +51917|2785|O|105493.30|1996-04-15|5-LOW|Clerk#000001696|0|lly final foxes sleep slyly carefully ev| +51918|284893|O|338080.10|1998-03-02|3-MEDIUM|Clerk#000004346|0| sleep furiously carefully pe| +51919|193003|O|89190.82|1996-06-26|3-MEDIUM|Clerk#000002209|0| theodolites are after the pending instructions. ironic| +51944|47705|O|248983.34|1996-11-22|3-MEDIUM|Clerk#000000224|0|around the furiously ironic deposits lose never permanently ironic d| +51945|25720|F|84221.83|1992-03-03|1-URGENT|Clerk#000003219|0|leep slyly bold deposits. final, thin dependencies de| +51946|261235|F|18453.17|1992-03-10|1-URGENT|Clerk#000003386|0|e bravely deposits. | +51947|47830|F|203628.34|1993-08-25|1-URGENT|Clerk#000001806|0|efully regular deposits integrate carefully sly accounts. slyly quiet r| +51948|597217|O|180041.09|1996-07-10|3-MEDIUM|Clerk#000000491|0|counts sleep slyly furiously unusual deposits. even packages are| +51949|163192|O|140654.43|1998-02-03|4-NOT SPECIFIED|Clerk#000004341|0|y express foxes sleep furiously about the furiously final deposits.| +51950|736817|F|167476.11|1992-01-23|5-LOW|Clerk#000002270|0| deposits. slyly special pinto beans according to the| +51951|416773|O|42381.94|1996-11-20|4-NOT SPECIFIED|Clerk#000002361|0|ar deposits sleep slyly above the slowly regular deposits. final asymptotes n| +51976|427933|O|295858.30|1996-01-03|2-HIGH|Clerk#000004580|0|ffy pinto beans cajole quickly| +51977|487432|O|37540.57|1997-08-13|3-MEDIUM|Clerk#000001417|0|carefully express instructions sleep furiously across the special| +51978|18121|O|139740.51|1996-01-18|4-NOT SPECIFIED|Clerk#000004652|0|ounts. final ideas sleep blithely blithely special packages. furio| +51979|29206|P|87038.86|1995-04-09|3-MEDIUM|Clerk#000000448|0|l instructions boost. furiously pending packages sleep blithely silent | +51980|348898|F|181433.73|1992-05-11|5-LOW|Clerk#000000145|0|ts. blithely express pinto beans haggle. carefully regular fox| +51981|419530|O|198582.51|1998-04-24|5-LOW|Clerk#000004495|0|ickly slyly express requests. boldly final noto| +51982|280204|F|80598.80|1992-05-14|4-NOT SPECIFIED|Clerk#000001054|0|lar deposits promise carefully around the carefu| +51983|133237|O|237256.53|1996-05-28|5-LOW|Clerk#000001755|0|egular packages. quick instructions detect carefully-- carefu| +52008|531529|O|104920.02|1996-04-25|1-URGENT|Clerk#000001232|0| pinto beans poach quietly. slyly regular instructions| +52009|136921|O|69670.75|1995-03-30|4-NOT SPECIFIED|Clerk#000000438|0|press packages. ironic, express accounts dazzle s| +52010|202357|F|67333.63|1993-05-01|2-HIGH|Clerk#000000362|0|ests. thinly ironic ideas integrate. requests use furiousl| +52011|505676|F|254181.90|1993-02-25|1-URGENT|Clerk#000003371|0|de the blithely dogged deposits boost carefully | +52012|630409|O|80009.37|1998-03-01|5-LOW|Clerk#000000707|0|ding to the furiously bold accounts are care| +52013|21755|F|81410.71|1993-08-11|2-HIGH|Clerk#000001629|0| daringly pending accounts. pending packages sleep slyly slyly r| +52014|381095|O|40429.92|1995-07-18|1-URGENT|Clerk#000000259|0|y special dependencies cajole after the ironic account| +52015|50809|O|22824.07|1997-12-04|4-NOT SPECIFIED|Clerk#000004136|0| packages. carefully express instructions detect slyly| +52040|440075|O|237739.56|1996-12-20|3-MEDIUM|Clerk#000002811|0|s the even theodolit| +52041|584455|O|72363.13|1995-11-16|5-LOW|Clerk#000003893|0| to the final requests bo| +52042|169351|F|246848.73|1992-08-20|1-URGENT|Clerk#000003706|0|y pending dinos sleep blithely across the quick| +52043|749764|F|31512.71|1992-03-18|4-NOT SPECIFIED|Clerk#000001859|0|e furiously unusual excuses. ironic pinto beans are above the pac| +52044|517826|O|146587.27|1996-12-03|4-NOT SPECIFIED|Clerk#000000085|0|s. blithely ironic requests sleep. carefully pending deposits haggle slyly.| +52045|100327|F|30872.57|1995-02-14|1-URGENT|Clerk#000003561|0|. ironic deposits haggle. accounts cajole slyly. packages sleep blithely. fina| +52046|177988|O|28110.44|1998-04-05|3-MEDIUM|Clerk#000000387|0|he pending foxes. regula| +52047|433126|O|114856.52|1997-02-27|1-URGENT|Clerk#000000399|0|nts. slyly express packages wake carefully among t| +52072|38098|F|135643.91|1993-08-25|4-NOT SPECIFIED|Clerk#000001613|0|. regular, regular foxes cajole slyly final deposits. furiously entic| +52073|531610|O|105986.07|1997-08-03|5-LOW|Clerk#000002893|0|may sleep about the fluffily regular foxes. fluffily ironic instructions| +52074|743602|F|336825.07|1992-10-31|5-LOW|Clerk#000001937|0|tructions! close, silent accounts haggle fluffily quickly pending depos| +52075|449087|O|73760.44|1998-02-09|1-URGENT|Clerk#000001339|0|uickly unusual foxes nag furiously instructions.| +52076|549265|O|231897.88|1996-02-16|3-MEDIUM|Clerk#000004477|0|ainst the furiously even sentiments. fluffily even inst| +52077|484153|F|224848.58|1993-07-18|2-HIGH|Clerk#000004797|0| packages boost ruthlessly. | +52078|390442|O|50189.87|1998-02-12|2-HIGH|Clerk#000001059|0|s. carefully silent accounts wake. even requests are atop the r| +52079|408647|P|105312.83|1995-04-11|1-URGENT|Clerk#000001791|0| furiously final, even dolphins. carefully express accounts according to | +52104|367418|F|177439.96|1994-10-04|3-MEDIUM|Clerk#000001147|0| after the final accounts detect furiously | +52105|441583|O|263676.70|1997-12-16|2-HIGH|Clerk#000000522|0|c ideas according to the slowly special Tiresias integrate for the bli| +52106|418165|F|190480.29|1994-09-07|1-URGENT|Clerk#000000729|0|fully blithely regular requests. carefully final dep| +52107|596129|O|70228.36|1997-10-15|4-NOT SPECIFIED|Clerk#000001189|0|pecial accounts among the blithely express platelets are furiously alongs| +52108|626141|F|150636.12|1993-04-25|4-NOT SPECIFIED|Clerk#000004116|0|egular requests wake. even, unusual dolphins ar| +52109|297383|F|226150.13|1992-02-14|2-HIGH|Clerk#000000126|0|ess deposits doubt slyly carefully regular accounts? carefully final instr| +52110|115663|F|215658.90|1994-12-03|1-URGENT|Clerk#000001467|0|quickly final foxes lose among the regular accounts. pending excuses sleep| +52111|666917|O|157475.46|1997-03-13|2-HIGH|Clerk#000001606|0|er slyly alongside of the quickly iron| +52136|123907|F|95814.57|1994-06-21|5-LOW|Clerk#000002907|0|xes among the slyly pending deposit| +52137|492361|F|121724.94|1994-01-04|1-URGENT|Clerk#000001503|0|e of the pending theodolites. quickly bold foxes abou| +52138|349465|F|182781.57|1994-12-02|3-MEDIUM|Clerk#000004699|0| instructions cajole slyly pending packages. special foxes detect carefully| +52139|204937|O|183482.44|1995-10-12|2-HIGH|Clerk#000003252|0|nding deposits maintain sl| +52140|343606|F|44478.74|1993-04-19|5-LOW|Clerk#000001633|0|ily regular courts. fluffily unusual packages maintain car| +52141|734033|F|96575.64|1994-05-27|4-NOT SPECIFIED|Clerk#000000110|0|lly carefully unusual forge| +52142|134110|F|79000.36|1992-04-25|3-MEDIUM|Clerk#000004133|0| fluffily quiet pinto beans| +52143|223198|F|182974.15|1992-11-17|5-LOW|Clerk#000002413|0|eposits haggle enticingly ironic theodolites. blithely ironic deposits wake | +52168|537244|F|102973.64|1995-01-09|2-HIGH|Clerk#000003549|0|slyly across the blit| +52169|207688|F|145696.44|1995-02-26|2-HIGH|Clerk#000001227|0|. furiously silent requests doze blithely among th| +52170|106636|F|302952.83|1994-05-18|5-LOW|Clerk#000002417|0|ular, express accounts. quickly final accounts are carefully blithely fin| +52171|454438|O|220659.54|1997-03-01|2-HIGH|Clerk#000003536|0|slyly after the regular, express pinto beans. furiously pendi| +52172|480029|O|121927.91|1997-06-13|4-NOT SPECIFIED|Clerk#000001321|0|ilent, ironic excuses thrash. blithely express theodol| +52173|93458|F|208062.60|1992-10-08|4-NOT SPECIFIED|Clerk#000000230|0| final requests maintain bravely. care| +52174|245896|F|250344.02|1995-02-05|5-LOW|Clerk#000004408|0| ironic deposits. furiousl| +52175|252232|O|245585.71|1995-09-12|5-LOW|Clerk#000000703|0|ix quickly about the sly foxes. caref| +52200|257081|F|155627.80|1993-03-15|3-MEDIUM|Clerk#000001806|0|g packages haggle furiously ironic accounts. slyly bold requests solve above| +52201|748591|F|214686.05|1993-01-06|3-MEDIUM|Clerk#000003536|0|c foxes sleep daring deposits? regular, regular deposits ab| +52202|312680|O|230258.51|1997-04-10|5-LOW|Clerk#000004490|0|ending foxes boost unusual, slow accou| +52203|704255|F|213260.47|1992-09-02|2-HIGH|Clerk#000000950|0|fully. doggedly even se| +52204|659425|F|102125.13|1994-07-05|5-LOW|Clerk#000003024|0|ly about the quickly bo| +52205|176120|F|256225.60|1994-07-13|2-HIGH|Clerk#000002643|0|y pending dependencies boost| +52206|548180|F|96182.19|1995-02-12|3-MEDIUM|Clerk#000000887|0|s. bold, final instructions haggle deposits-- b| +52207|250823|F|154104.01|1992-05-25|3-MEDIUM|Clerk#000004083|0|sits about the evenly bold inst| +52232|576388|F|53189.17|1992-07-17|3-MEDIUM|Clerk#000002013|0|uriously silent accounts. furiously even requests sleep quickly| +52233|332468|O|4621.03|1998-05-07|2-HIGH|Clerk#000003885|0|ccounts integrate s| +52234|280910|F|80015.82|1993-01-16|5-LOW|Clerk#000001577|0|l deposits nod quickly. regular exc| +52235|742375|F|197926.65|1992-05-25|5-LOW|Clerk#000001823|0|ct carefully pending accounts. | +52236|78262|F|255421.85|1993-03-27|4-NOT SPECIFIED|Clerk#000004530|0|carefully; furiously bol| +52237|580634|O|130916.58|1997-02-18|1-URGENT|Clerk#000001863|0|pendencies. idle ideas along the slyly unusual platelets boost br| +52238|459595|F|79685.24|1994-12-16|4-NOT SPECIFIED|Clerk#000000190|0|, bold dolphins are blithely fluffily ironic deposits. blithely| +52239|161990|O|290769.89|1996-04-10|3-MEDIUM|Clerk#000001983|0|hang permanently slyly brave deposits. slyly regular foxes sleep slyly agains| +52264|51529|F|347332.51|1994-02-02|4-NOT SPECIFIED|Clerk#000002505|0|es wake carefully. requests haggle blithely bold, ironic cour| +52265|526052|O|262682.99|1997-07-12|4-NOT SPECIFIED|Clerk#000004369|0| cajole about the regular foxes. careful reque| +52266|339556|F|66558.37|1994-04-27|4-NOT SPECIFIED|Clerk#000003815|0|hely express excuses. careful, fi| +52267|138821|F|168905.30|1993-01-20|4-NOT SPECIFIED|Clerk#000002615|0|ly special accounts serve | +52268|657763|O|133351.53|1996-02-16|1-URGENT|Clerk#000003617|0|refully regular asymptotes. slyly pending foxes abou| +52269|16558|O|173014.68|1996-03-05|5-LOW|Clerk#000000252|0|es. ironic foxes sleep slyly; slyly final deposits | +52270|29764|O|90478.58|1995-08-21|3-MEDIUM|Clerk#000000239|0|express pinto beans! carefully regular instructions are furiously accordi| +52271|711679|O|59412.98|1998-04-30|5-LOW|Clerk#000002065|0|s sleep carefully against the blithely flu| +52296|186823|F|251022.30|1993-01-03|3-MEDIUM|Clerk#000002083|0|p carefully along the blith| +52297|433312|F|118349.43|1992-01-17|3-MEDIUM|Clerk#000003750|0|ly according to the quietly ironic packages. carefully final senti| +52298|154520|O|332063.13|1996-04-10|5-LOW|Clerk#000004925|0|ackages through the slyly fina| +52299|504043|O|86339.19|1997-11-20|4-NOT SPECIFIED|Clerk#000004857|0|se quickly according to the final packages. blithely pending packages | +52300|193774|F|236127.55|1992-03-16|1-URGENT|Clerk#000002790|0|ions snooze. furious accounts us| +52301|253031|F|90061.49|1994-09-10|1-URGENT|Clerk#000000374|0|oxes boost ironic, even courts. carefully even accounts x-ray always around| +52302|182558|O|143975.00|1996-07-13|2-HIGH|Clerk#000003012|0|gainst the even dolphins. regular frays| +52303|742093|O|345741.75|1996-09-25|1-URGENT|Clerk#000001552|0|ent packages. blithely even ide| +52328|583157|O|3620.52|1996-08-18|2-HIGH|Clerk#000003324|0|arefully silent pinto beans about the | +52329|114296|F|216189.64|1992-12-02|2-HIGH|Clerk#000000280|0|nusual forges nag carefully about the blithely final deposits. | +52330|219565|O|137214.75|1997-06-01|5-LOW|Clerk#000004348|0|et theodolites use beyond the regular, silent instructions. iro| +52331|212956|F|250063.44|1994-04-02|3-MEDIUM|Clerk#000001207|0|ts unwind furiously blithely even ideas. slyly special deposits det| +52332|123787|F|243867.29|1994-09-29|5-LOW|Clerk#000002087|0|. bold dependencies play blithely pendin| +52333|728258|O|157504.07|1997-07-31|5-LOW|Clerk#000003849|0|e fluffily thinly unusual depos| +52334|579878|F|205220.08|1992-08-15|1-URGENT|Clerk#000003093|0|e carefully. dependencies across the careful platelets eat quick| +52335|497578|O|212661.85|1997-02-22|2-HIGH|Clerk#000004366|0|le against the carefully ironic a| +52360|284794|F|66056.65|1992-10-16|3-MEDIUM|Clerk#000003723|0|above the foxes integrate c| +52361|17828|F|39331.56|1993-07-29|4-NOT SPECIFIED|Clerk#000004978|0|the slyly ironic instructions haggl| +52362|370687|O|72507.97|1995-06-14|2-HIGH|Clerk#000003628|0| theodolites. final frays use slyly after the unusual accounts. fluffily e| +52363|623545|O|268098.08|1996-02-13|3-MEDIUM|Clerk#000003965|0|urts are. carefully even theod| +52364|140372|F|143356.77|1994-07-24|1-URGENT|Clerk#000002153|0|final excuses. accounts haggle. pending instructions sl| +52365|466415|O|130515.88|1997-02-25|5-LOW|Clerk#000004855|0|er the slyly pending deposits haggle slyly slyly bo| +52366|25577|O|122499.64|1995-10-17|5-LOW|Clerk#000001387|0|osits under the quickly ironic asymptotes are carefully a| +52367|115925|F|17128.80|1995-01-29|1-URGENT|Clerk#000003137|0| regular instructions po| +52392|585656|O|71996.27|1998-07-10|1-URGENT|Clerk#000000529|0|fily express account| +52393|115826|O|148779.28|1997-11-07|5-LOW|Clerk#000000501|0| quickly regular accounts. finally even patter| +52394|423752|F|195376.45|1993-04-02|3-MEDIUM|Clerk#000000451|0|pending pinto beans wake slyly furiously regular theodolites. blithely fina| +52395|744011|O|80685.83|1996-08-02|4-NOT SPECIFIED|Clerk#000002900|0|ses. pinto beans before the slyly ironic f| +52396|589301|F|76255.95|1993-06-04|5-LOW|Clerk#000001961|0|d the quickly ironic somas. | +52397|629110|O|105871.63|1995-04-26|5-LOW|Clerk#000003440|0|al deposits. regular, even packages against the final theodolite| +52398|697930|O|263100.43|1998-05-09|4-NOT SPECIFIED|Clerk#000001371|0|, ironic packages are unusual packages. s| +52399|107512|O|233043.48|1997-01-31|1-URGENT|Clerk#000002006|0|furiously regular accounts above the blith| +52424|176572|F|225933.81|1994-09-22|5-LOW|Clerk#000004200|0|ake across the final asymptotes-- final pa| +52425|641194|O|259114.27|1997-05-28|2-HIGH|Clerk#000001441|0| slyly even ideas across the sly asymptotes cajole across the b| +52426|542506|F|29452.89|1992-07-16|5-LOW|Clerk#000003131|0|o beans sleep fluffily blithely pending foxes. blithely | +52427|142493|F|147299.01|1993-01-15|3-MEDIUM|Clerk#000001955|0|ts across the requests are even pinto be| +52428|122734|F|188243.89|1994-12-28|4-NOT SPECIFIED|Clerk#000003248|0|es. furiously special instructions haggl| +52429|263989|O|234455.64|1996-08-07|1-URGENT|Clerk#000002080|0|posits. furiously reg| +52430|582124|O|106906.41|1996-03-19|2-HIGH|Clerk#000001330|0|auternes are about the bli| +52431|738677|F|11143.97|1992-05-03|1-URGENT|Clerk#000002665|0| final pinto beans lose about the final, reg| +52456|177673|F|1940.35|1993-08-01|3-MEDIUM|Clerk#000004497|0|its-- final, regular ideas wake furiously. courts after the even requests b| +52457|374147|F|33478.07|1993-08-17|1-URGENT|Clerk#000004490|0| finally regular packages wake slyly according to the carefully pending accoun| +52458|287200|F|140430.44|1993-11-22|2-HIGH|Clerk#000004617|0|latelets wake regular,| +52459|689326|O|134916.84|1995-10-17|1-URGENT|Clerk#000004642|0|osits. blithely ironi| +52460|219862|F|17611.34|1992-12-07|2-HIGH|Clerk#000001274|0|en packages kindle. fluffily even requests dou| +52461|707425|O|214380.07|1995-09-24|4-NOT SPECIFIED|Clerk#000004197|0|riously close theodolites. expre| +52462|680015|O|40063.46|1997-01-27|3-MEDIUM|Clerk#000003210|0|ic, even requests boost instead of the slyly ironic idea| +52463|503966|F|186810.63|1992-07-01|3-MEDIUM|Clerk#000002462|0|ests. pending, regular asymptotes lose. stealthily ruthless| +52488|404078|F|181582.64|1994-11-29|3-MEDIUM|Clerk#000002718|0|ial, bold ideas except the speci| +52489|88231|F|173061.45|1994-02-03|5-LOW|Clerk#000001424|0|pinto beans. bold, ironic instructions| +52490|114922|O|138077.47|1995-12-24|3-MEDIUM|Clerk#000003112|0|furiously ironic packages. carefully regular requests alongside of the sly| +52491|224828|F|121257.39|1994-02-24|2-HIGH|Clerk#000002534|0|deposits. fluffily regular pi| +52492|169255|F|60873.86|1992-02-15|1-URGENT|Clerk#000000027|0|patterns cajole carefully evenly f| +52493|658420|F|22704.46|1994-09-20|4-NOT SPECIFIED|Clerk#000004237|0|pending dependencies sleep slyly. pending, special packages cajole. caref| +52494|557825|F|99031.79|1995-01-04|3-MEDIUM|Clerk#000004642|0|thely express packages detect after the | +52495|364559|F|46934.83|1992-05-01|5-LOW|Clerk#000001590|0|fully special instructions. regular, even p| +52520|388015|F|146242.67|1994-07-23|2-HIGH|Clerk#000004774|0|p furiously blithely unusual theodolites. regular, ironic d| +52521|87976|F|132295.94|1992-01-25|5-LOW|Clerk#000000550|0|into beans sleep. dolphins sleep about the carefully regular p| +52522|347782|O|64726.81|1998-04-16|4-NOT SPECIFIED|Clerk#000002116|0|ckly regular pinto beans sleep fluffily about the daringly | +52523|402749|O|191823.68|1997-08-02|2-HIGH|Clerk#000001884|0|ly final deposits. fluffily fin| +52524|251857|F|260635.99|1992-12-29|3-MEDIUM|Clerk#000003142|0|ounts wake according to the blithely regular asymptotes. ideas boost among | +52525|681592|F|121315.85|1994-09-04|2-HIGH|Clerk#000000656|0|es! furiously express excuses nag carefully brav| +52526|8041|O|105707.58|1995-06-09|2-HIGH|Clerk#000004543|0|oost. carefully spe| +52527|123235|F|181692.12|1993-11-15|2-HIGH|Clerk#000004447|0|osits. carefully regul| +52552|440095|F|212178.70|1994-08-05|1-URGENT|Clerk#000000075|0|sits. ironic, final requests poach fina| +52553|143857|F|84920.95|1992-11-19|1-URGENT|Clerk#000003199|0|nto beans boost. ironic packages nag carefully. carefully brave reque| +52554|535613|F|212441.12|1993-03-12|5-LOW|Clerk#000002249|0| furiously across the blithely even realms. quickly regular acc| +52555|533867|O|232535.09|1996-06-04|3-MEDIUM|Clerk#000001761|0|ously above the bold theodolites. furiou| +52556|448154|O|141945.47|1996-03-09|3-MEDIUM|Clerk#000000016|0|ly express courts. special platelets poach fluffily c| +52557|620716|F|37035.89|1992-04-11|4-NOT SPECIFIED|Clerk#000003491|0|orges thrash blithely after the carefully regular t| +52558|596242|F|99681.00|1994-01-31|3-MEDIUM|Clerk#000002341|0| final deposits are quickly blithely express asymptotes. foxes wake blithely | +52559|259700|F|246392.04|1992-01-09|1-URGENT|Clerk#000003953|0|ously regular accounts against the blithely regular asympt| +52584|516665|O|67236.18|1998-02-18|4-NOT SPECIFIED|Clerk#000001162|0|he carefully express requests. furiously special requests sleep a| +52585|76246|F|109427.50|1992-06-15|5-LOW|Clerk#000004613|0|arefully special platelets. fluffily fluffy pinto beans abov| +52586|441530|F|88235.33|1993-11-14|2-HIGH|Clerk#000000529|0|nst the furiously ironic ideas| +52587|282592|O|218347.16|1996-11-09|2-HIGH|Clerk#000004372|0|un after the express, final packages. furiously regular platelets sl| +52588|516556|O|181207.04|1996-04-11|2-HIGH|Clerk#000004176|0|excuses cajole. blithely final realms haggle special, re| +52589|494923|F|184510.14|1994-06-12|3-MEDIUM|Clerk#000003622|0|he pending courts. regular, even deposits sleep fluffily about the even, reg| +52590|638332|O|260140.77|1995-09-03|4-NOT SPECIFIED|Clerk#000000917|0|e express, final deposits print slyly o| +52591|420830|F|42692.92|1993-08-29|4-NOT SPECIFIED|Clerk#000000158|0|blithely final requests. carefully unusual escapades above the furiou| +52616|387587|F|187032.42|1995-03-16|4-NOT SPECIFIED|Clerk#000002163|0|s: furiously pending forges nag bli| +52617|407971|O|302625.79|1996-05-15|4-NOT SPECIFIED|Clerk#000001745|0|ronic pinto beans. regular, special deposits sleep carefully alongsi| +52618|252485|F|63016.05|1994-08-09|5-LOW|Clerk#000004774|0|he express requests. furiously unusual ideas against the i| +52619|12904|F|189414.34|1995-02-20|3-MEDIUM|Clerk#000000497|0|accounts. bold, pending ideas are. furiously fina| +52620|117028|O|122888.30|1995-08-29|5-LOW|Clerk#000002136|0|unts wake along the fluffily even pl| +52621|374783|O|83246.50|1997-06-30|4-NOT SPECIFIED|Clerk#000003320|0|es nag slyly. furiously even ideas solve carefully requests. | +52622|472993|O|10325.05|1997-09-11|1-URGENT|Clerk#000002629|0|ymptotes boost blithely final deposits. quickly regu| +52623|327784|F|215106.30|1992-05-17|1-URGENT|Clerk#000000218|0|nts was furiously. carefully special requests wak| +52648|302462|O|116460.14|1996-02-06|2-HIGH|Clerk#000003103|0|ts. ironic packages nod. deposit| +52649|719585|O|130384.79|1997-12-06|3-MEDIUM|Clerk#000000780|0|s-- carefully bold pinto beans cajole ag| +52650|306562|O|178461.71|1996-08-14|5-LOW|Clerk#000004486|0|posits. fluffily special cou| +52651|625954|F|205235.16|1994-05-03|4-NOT SPECIFIED|Clerk#000004639|0|deposits. regular braids about the sly platelets haggle furiously theodol| +52652|135424|F|46288.90|1994-07-24|4-NOT SPECIFIED|Clerk#000001562|0|according to the furiously bold requests. carefully reg| +52653|540607|F|108676.38|1994-06-04|1-URGENT|Clerk#000003267|0|ests. carefully unusual deposits are stealthily alongside of the excuses. blit| +52654|477178|O|41076.51|1996-01-20|2-HIGH|Clerk#000001432|0|xcuses haggle furiously final excuses. furiously even r| +52655|164170|F|242235.99|1994-03-11|5-LOW|Clerk#000001449|0| nag furiously enticingly final sentiments. slyly ironic theodolites aff| +52680|702898|F|197473.62|1992-10-14|2-HIGH|Clerk#000004485|0|ecial pinto beans cajole slyly. express instructions| +52681|327500|O|159668.74|1998-04-11|2-HIGH|Clerk#000001137|0|ost carefully alongside of the requests! fluffily re| +52682|33121|F|241562.07|1992-02-20|1-URGENT|Clerk#000001825|0|heaves. blithely ironic accounts hang according to the quickly express in| +52683|163603|F|207749.31|1994-08-19|4-NOT SPECIFIED|Clerk#000002105|0|to beans wake carefully along the silent| +52684|145750|F|142957.47|1993-11-27|5-LOW|Clerk#000002565|0| even requests above| +52685|102122|F|130960.52|1994-03-26|4-NOT SPECIFIED|Clerk#000001472|0|y regular gifts integrate regular, special requests: final requests w| +52686|360739|O|30767.14|1998-07-25|3-MEDIUM|Clerk#000004301|0|dle accounts. unusual, regular deposits nag carefully. | +52687|680954|O|197047.82|1996-06-13|4-NOT SPECIFIED|Clerk#000001319|0|luffily slyly bold foxes-- slyly special accounts cajole | +52712|532085|F|158176.97|1993-11-21|1-URGENT|Clerk#000000921|0|are quickly slyly ironic requests. requests integrate furiously am| +52713|498616|F|99161.03|1992-02-11|3-MEDIUM|Clerk#000002999|0|nts. blithely pending deposits sleep along the unusual| +52714|468782|O|179233.81|1998-06-17|2-HIGH|Clerk#000000760|0|ithely. unusual, express deposits about the carefully even foxes detect fluff| +52715|68545|O|258432.42|1995-10-14|2-HIGH|Clerk#000000117|0|s requests wake slyly a| +52716|13987|F|214001.34|1995-02-02|1-URGENT|Clerk#000004504|0|are after the slyly regular theodolites. unusual wart| +52717|322816|F|196420.15|1993-11-17|3-MEDIUM|Clerk#000002778|0|the slyly final the| +52718|57362|F|43382.75|1993-10-15|1-URGENT|Clerk#000003173|0|stealthily pending requests. furiously unusual pac| +52719|324043|F|224875.09|1994-05-20|3-MEDIUM|Clerk#000001244|0|thely final foxes wake slyly across the furiously express | +52744|424478|F|225419.77|1995-02-08|1-URGENT|Clerk#000003438|0|iously regular instructions sleep accounts| +52745|193762|O|182908.93|1995-11-01|5-LOW|Clerk#000002210|0|nag carefully pending requests. quickly bold pinto be| +52746|42112|F|233597.58|1992-09-16|2-HIGH|Clerk#000004181|0|quests. carefully final depos| +52747|522052|O|350823.25|1997-07-22|1-URGENT|Clerk#000000104|0|refully final packages cajole idly bold asymptotes. furiously| +52748|617560|F|156276.20|1993-09-30|5-LOW|Clerk#000002930|0|kages. slyly regular pinto beans hang carefully. blithely pending theodolites | +52749|76765|O|244341.81|1997-02-02|1-URGENT|Clerk#000000396|0|use slyly unusual instructions. ironic requests sleep special reques| +52750|170440|F|192107.33|1993-02-04|4-NOT SPECIFIED|Clerk#000003311|0|lyly final sauternes will ha| +52751|324233|F|202932.78|1993-12-13|5-LOW|Clerk#000000714|0|ts snooze fluffily quickly special plate| +52776|622309|O|23096.23|1995-09-23|1-URGENT|Clerk#000002328|0|xes above the fluff| +52777|389383|O|54901.58|1996-01-20|5-LOW|Clerk#000003112|0|usly final packages after the enticing deposits | +52778|609946|F|172551.57|1994-10-30|4-NOT SPECIFIED|Clerk#000000955|0|d theodolites nag across the blithely unusual accounts. furiously final pac| +52779|340006|F|99480.69|1993-06-19|4-NOT SPECIFIED|Clerk#000001509|0|ts affix above the even att| +52780|212465|F|265848.77|1992-07-29|1-URGENT|Clerk#000001879|0|wake boldly along the furiously silent attainme| +52781|143420|F|156228.91|1993-11-01|1-URGENT|Clerk#000000202|0|eans haggle blithely express requests. flu| +52782|709492|F|9691.29|1995-06-06|4-NOT SPECIFIED|Clerk#000004477|0|egular requests use along the slyly regular ideas. packages l| +52783|160951|O|130069.33|1998-07-21|4-NOT SPECIFIED|Clerk#000004024|0|al requests nag against the regular depo| +52808|595846|F|68482.44|1994-10-22|2-HIGH|Clerk#000004223|0|odolites cajole evenly accounts. regular pinto beans oug| +52809|352586|F|46546.15|1994-03-04|2-HIGH|Clerk#000000672|0|y deposits. pending deposits haggle furiously b| +52810|158302|O|329635.77|1996-06-12|4-NOT SPECIFIED|Clerk#000004136|0|efully bold theodolites sleep furiously special | +52811|311383|O|118483.84|1998-05-15|4-NOT SPECIFIED|Clerk#000001754|0|ly final accounts among the | +52812|659992|F|292763.32|1993-03-09|1-URGENT|Clerk#000003249|0|ng the quickly unusual pi| +52813|704066|O|240349.45|1997-10-28|4-NOT SPECIFIED|Clerk#000001633|0| unusual deposits. regular asy| +52814|473186|O|221295.09|1995-12-11|1-URGENT|Clerk#000002710|0|ught to sleep beyond the furiousl| +52815|570847|O|27025.23|1996-07-08|5-LOW|Clerk#000001890|0|o beans about the bold instructions | +52840|220730|O|176290.06|1996-11-20|3-MEDIUM|Clerk#000001814|0|nst the slyly ironic ide| +52841|308378|O|17617.41|1996-01-11|5-LOW|Clerk#000004501|0|the dogged accounts are furiousl| +52842|392953|F|221684.32|1995-01-03|3-MEDIUM|Clerk#000002869|0|efully silent excuses boost permanently above the enticingly regu| +52843|599107|F|277206.95|1992-10-05|2-HIGH|Clerk#000004971|0|sts. regular, pending accounts are slyly. specia| +52844|426697|O|220060.49|1995-11-15|5-LOW|Clerk#000003306|0|posits nag furiously. quickly unusual instructio| +52845|724018|O|93861.60|1996-12-10|5-LOW|Clerk#000004752|0| idle excuses about the slyly regular id| +52846|562528|O|242367.00|1996-01-27|4-NOT SPECIFIED|Clerk#000001247|0|ending packages haggle; | +52847|631285|F|192885.05|1995-01-09|4-NOT SPECIFIED|Clerk#000001383|0|nts against the courts nag slyly slyly ironic braids. re| +52872|473692|O|259453.63|1995-11-10|4-NOT SPECIFIED|Clerk#000002193|0|g quickly furiously ironic requests. carefully expr| +52873|76114|F|352624.01|1994-07-28|2-HIGH|Clerk#000003625|0|counts sleep carefully even dep| +52874|471422|F|76750.55|1994-09-04|1-URGENT|Clerk#000002381|0|ily even ideas are about the quickly ironic deposits. blithely ironic depo| +52875|175345|F|63923.46|1994-03-18|5-LOW|Clerk#000000014|0|usual instructions about the| +52876|265907|O|222423.88|1995-12-05|3-MEDIUM|Clerk#000002396|0|ic deposits. bold, silent foxes sleep. blithely bold packages use | +52877|597337|O|207198.28|1997-06-02|2-HIGH|Clerk#000000435|0|uriously special accounts maintain furious| +52878|672902|O|71842.00|1996-06-10|1-URGENT|Clerk#000002637|0|ironic dependencies. regular pinto beans affix even accounts. carefull| +52879|213706|F|54470.52|1994-08-06|1-URGENT|Clerk#000004584|0|ly. silent, special the| +52904|729544|O|164501.04|1996-10-26|4-NOT SPECIFIED|Clerk#000002084|0| dependencies haggle. even, regular depo| +52905|434020|F|57182.67|1992-08-30|3-MEDIUM|Clerk#000004159|0|blithely bold reque| +52906|71218|F|213653.41|1994-07-21|4-NOT SPECIFIED|Clerk#000001325|0|blithely regular dependencies nag blithely. stealthily unusual de| +52907|695440|F|164033.19|1992-02-19|4-NOT SPECIFIED|Clerk#000004349|0|structions. even instructions haggle slyly | +52908|236831|F|186857.50|1994-06-18|5-LOW|Clerk#000002072|0| deposits thrash close| +52909|152665|F|184647.26|1994-10-21|3-MEDIUM|Clerk#000002092|0|ggle permanently accounts. final requests | +52910|75520|P|227066.02|1995-05-16|5-LOW|Clerk#000002862|0| final requests against the regular excuses nag along the slyly regular de| +52911|248548|F|54914.93|1992-04-29|3-MEDIUM|Clerk#000002691|0|ly silent frays haggle. idly final ideas above t| +52936|577084|F|31969.19|1994-12-19|1-URGENT|Clerk#000003132|0|etly unusual packages haggle | +52937|33317|F|14767.97|1992-07-03|3-MEDIUM|Clerk#000002672|0|the carefully even | +52938|442993|F|169863.62|1992-03-31|1-URGENT|Clerk#000002807|0|os nag always carefully ironi| +52939|129547|F|105686.33|1993-11-12|1-URGENT|Clerk#000004118|0| carefully final pinto beans. furiously bli| +52940|21919|P|206090.75|1995-05-28|5-LOW|Clerk#000000355|0|e quickly express depo| +52941|136381|O|161390.64|1997-09-13|3-MEDIUM|Clerk#000000801|0|ts. ironic requests cajole. carefully unusual dolphins cajole near the bli| +52942|126433|F|73823.87|1994-04-24|4-NOT SPECIFIED|Clerk#000001733|0|xes. quickly unusual accounts affix furiously | +52943|177163|O|50707.58|1998-05-24|2-HIGH|Clerk#000001212|0|as are furiously slyl| +52968|51373|F|239269.58|1994-02-21|1-URGENT|Clerk#000004988|0|ns. even requests sleep according to the ironic packag| +52969|174431|F|356901.14|1993-01-23|5-LOW|Clerk#000001158|0|ly pending packages cajole alongsi| +52970|659749|F|25252.76|1992-08-16|3-MEDIUM|Clerk#000001359|0|furiously permanent pinto beans boost slyly accounts. quickly expres| +52971|395533|F|270602.30|1993-06-16|4-NOT SPECIFIED|Clerk#000002355|0| silent sheaves above the | +52972|442198|F|110914.67|1993-07-19|2-HIGH|Clerk#000004004|0|ts: dependencies about the quickly | +52973|246607|F|341932.29|1994-06-28|2-HIGH|Clerk#000000633|0|inal deposits are blithely. blithely spe| +52974|219181|F|27979.39|1994-07-02|1-URGENT|Clerk#000004901|0|s cajole slyly. theodolites are. slyly ironic requests| +52975|519730|O|325275.30|1997-08-31|3-MEDIUM|Clerk#000000450|0|thely after the slyly final theodolites. | +53000|594520|O|320029.22|1998-01-26|2-HIGH|Clerk#000001314|0|y final deposits nag fluffily r| +53001|590149|F|155360.59|1994-12-11|3-MEDIUM|Clerk#000002722|0|refully special sheaves. regular, final excus| +53002|612457|F|35524.53|1994-06-21|5-LOW|Clerk#000001730|0|slyly regular requests. furiously special braids impress furiously. | +53003|548075|O|129469.82|1997-08-29|3-MEDIUM|Clerk#000004044|0|hes use always final packages. pending asymptotes thrash furiousl| +53004|731767|F|277399.43|1994-09-14|5-LOW|Clerk#000001731|0|h across the quickly bold courts. slyly pend| +53005|287831|O|144330.92|1998-02-22|4-NOT SPECIFIED|Clerk#000001446|0|ress packages cajole. furiously sly dependencies according to the | +53006|66650|O|269728.53|1997-09-13|2-HIGH|Clerk#000004157|0|ate blithely. final packages use. q| +53007|422390|O|205019.21|1996-10-31|4-NOT SPECIFIED|Clerk#000000441|0|requests. final, furious instructions wake along the quickly regular acco| +53032|351565|F|20111.30|1993-03-04|1-URGENT|Clerk#000003590|0|ial accounts should sleep ironic deposits. slyly even asymp| +53033|231703|O|41710.38|1997-10-16|1-URGENT|Clerk#000001670|0|tions. furiously regular accounts kindle final, iron| +53034|209674|O|318469.07|1998-04-05|1-URGENT|Clerk#000001237|0|s. ironic accounts un| +53035|486724|F|386086.22|1992-06-15|2-HIGH|Clerk#000000078|0|arefully final account| +53036|111007|O|187127.35|1995-10-02|1-URGENT|Clerk#000004822|0|le slyly according to the special asymptotes; req| +53037|438716|O|164551.57|1998-01-19|4-NOT SPECIFIED|Clerk#000003566|0|ges detect blithely. slyly slow deposits integrate. | +53038|233461|F|140916.74|1993-11-25|4-NOT SPECIFIED|Clerk#000002945|0|kly regular warthogs cajole fluffily accordi| +53039|501646|O|252939.50|1997-01-27|3-MEDIUM|Clerk#000003786|0|fter the even forges. furiously even excuses affix slyly around the Tiresias| +53064|393917|O|286212.70|1997-06-05|3-MEDIUM|Clerk#000002190|0|asymptotes. excuses wake. e| +53065|297044|F|150726.64|1992-02-04|1-URGENT|Clerk#000003330|0|? blithely special ideas alongside of the slyly ironic asymptotes are careful| +53066|405496|O|68958.33|1998-07-12|2-HIGH|Clerk#000001735|0|ly regular pinto beans nag furiously packages. quickly express foxes in| +53067|657463|O|112029.45|1996-04-28|4-NOT SPECIFIED|Clerk#000000621|0|ully furiously regular accounts| +53068|197201|F|250044.99|1992-12-23|4-NOT SPECIFIED|Clerk#000003085|0|eep fluffily after the ironic, ironic accounts. f| +53069|104209|F|275813.16|1993-08-11|3-MEDIUM|Clerk#000003392|0|kly ironic requests alongside of the| +53070|176446|F|241305.32|1994-12-16|2-HIGH|Clerk#000000772|0|s among the silent deposits haggle carefully | +53071|18835|O|60717.23|1996-07-11|3-MEDIUM|Clerk#000001433|0|yly carefully even deposits. unusual accounts about the ironic acc| +53096|59350|O|161234.63|1996-12-04|1-URGENT|Clerk#000001171|0|telets use regular, regular deposits. express, bold deposits snooze | +53097|713419|F|10728.64|1993-06-02|2-HIGH|Clerk#000003246|0|quickly express deposits. unusual packages ar| +53098|150634|F|233411.32|1994-08-19|1-URGENT|Clerk#000003974|0|uriously unusual instructions. express requests are slyly across | +53099|428164|F|83078.85|1993-04-14|5-LOW|Clerk#000001709|0|haggle above the blithely unusual| +53100|620495|F|308175.37|1992-02-25|2-HIGH|Clerk#000002564|0| haggle. furiously regular accounts nag furiously carefully | +53101|656129|F|210062.81|1994-08-20|3-MEDIUM|Clerk#000003406|0|l packages haggle blithely about | +53102|304319|F|265533.48|1992-11-03|2-HIGH|Clerk#000001394|0|ously ironic, pending dependen| +53103|435164|O|70993.18|1996-03-30|5-LOW|Clerk#000001537|0|ites. furiously ironic requests cajole fluffily fluffily unusual de| +53128|550331|F|123415.68|1993-04-09|2-HIGH|Clerk#000000598|0|r deposits. slyly pen| +53129|404200|F|272480.74|1992-03-15|5-LOW|Clerk#000002707|0|tions use even platelets. even accounts cajole| +53130|628376|F|76536.44|1995-02-25|1-URGENT|Clerk#000003004|0|ss instructions. packages use carefully around the e| +53131|359383|F|56548.95|1994-03-01|2-HIGH|Clerk#000002106|0|affix fluffily final| +53132|397796|O|21456.20|1997-10-22|2-HIGH|Clerk#000001565|0|gular deposits snooze carefully. reg| +53133|251044|O|42265.05|1995-05-25|4-NOT SPECIFIED|Clerk#000002583|0|efully carefully even requests. accounts nag carefully f| +53134|540800|O|76353.20|1996-11-24|5-LOW|Clerk#000003658|0|ully bold accounts haggle quickly. furiously regular asymptotes nag. bl| +53135|712681|O|38942.42|1996-01-13|5-LOW|Clerk#000004261|0|posits. platelets mold sly| +53160|516937|F|200343.90|1993-12-25|5-LOW|Clerk#000000283|0|quickly final deposits. ironically p| +53161|126949|O|83614.43|1996-11-20|5-LOW|Clerk#000004381|0|sits thrash stealthily slyly pending accounts. pinto beans are furiou| +53162|607864|F|168685.52|1993-11-04|4-NOT SPECIFIED|Clerk#000004640|0|ckly. requests cajole slyly regular foxes. regu| +53163|603124|F|24041.71|1994-04-05|2-HIGH|Clerk#000000111|0|s are alongside of the foxes. sly| +53164|440302|O|248917.56|1996-01-19|3-MEDIUM|Clerk#000001708|0|warhorses at the slyly unusual deposits use quickly pen| +53165|634061|F|174134.31|1994-09-11|2-HIGH|Clerk#000000777|0|ross the carefully express requests| +53166|654155|F|93742.30|1994-04-13|1-URGENT|Clerk#000000524|0|lly quickly express wate| +53167|127525|F|244568.85|1995-01-12|1-URGENT|Clerk#000003444|0|press requests against| +53192|538411|O|272509.79|1996-03-20|3-MEDIUM|Clerk#000002559|0|xes. quickly even pinto beans wake blithely. packages detect blithel| +53193|317692|F|303420.60|1994-08-10|4-NOT SPECIFIED|Clerk#000000147|0| bold ideas. fluffily fluffy realms snooze final accounts. regul| +53194|180700|F|67131.43|1993-09-27|1-URGENT|Clerk#000001888|0|ackages snooze slyly beneath the furiously final packages. request| +53195|268001|F|192597.36|1994-05-30|4-NOT SPECIFIED|Clerk#000003106|0|ely bold pinto beans wake along the furiously | +53196|542044|F|19414.10|1992-01-09|5-LOW|Clerk#000001659|0|ages affix fluffily. slyly even packages boost fu| +53197|615262|O|89462.99|1997-03-14|2-HIGH|Clerk#000000989|0|s. bold packages alongside of the slyly final theodol| +53198|444593|F|109895.66|1992-12-29|2-HIGH|Clerk#000001061|0|o beans. furiously final foxes sleep across the fluffily regular pin| +53199|9808|F|373735.66|1993-11-23|5-LOW|Clerk#000003777|0|ages against the slyly express epitaphs poach furiously about the unu| +53224|585053|O|82069.96|1997-04-25|3-MEDIUM|Clerk#000000414|0|odolites nag blithely-- special | +53225|480364|O|121389.67|1998-01-03|4-NOT SPECIFIED|Clerk#000004007|0|ly silent ideas detect. fluffily final pinto beans wake furiously. furi| +53226|476596|F|86429.18|1993-11-19|3-MEDIUM|Clerk#000003264|0|ests mold slyly among the| +53227|127556|O|73376.81|1995-04-25|2-HIGH|Clerk#000000615|0|elets use carefully express pinto beans. permanent accounts boost carefully!| +53228|322456|O|235957.25|1995-06-17|1-URGENT|Clerk#000003675|0|nal platelets haggle slyly ironic packages. fu| +53229|745972|O|301951.80|1996-10-23|5-LOW|Clerk#000000668|0|ously between the special courts. regular, ev| +53230|543268|F|22466.75|1993-11-01|5-LOW|Clerk#000002193|0| carefully according to the quickly| +53231|197728|F|240424.30|1994-01-15|2-HIGH|Clerk#000000803|0|ven requests haggle furiously ca| +53256|713639|F|130086.35|1993-03-31|2-HIGH|Clerk#000003032|0|ly bold dependencies nag final, even acco| +53257|123781|F|63049.97|1993-12-08|4-NOT SPECIFIED|Clerk#000002419|0|atelets wake quickly above| +53258|604547|F|113466.17|1995-02-09|2-HIGH|Clerk#000000141|0|into beans haggle blithely pending platelets. quickly regu| +53259|362062|F|18970.38|1993-02-24|2-HIGH|Clerk#000004229|0|uickly bold courts. even, express packages beyond | +53260|394250|F|68401.56|1994-12-23|3-MEDIUM|Clerk#000001789|0|xpress packages eat. fluffily special foxes cajole slyly among the ex| +53261|652159|O|185874.19|1995-12-20|1-URGENT|Clerk#000001630|0|n ideas along the final, slow pinto bean| +53262|316106|O|158212.54|1995-08-15|3-MEDIUM|Clerk#000003346|0|sits against the special packages use carefully along the furiously ironic fo| +53263|532828|O|279308.90|1998-05-14|4-NOT SPECIFIED|Clerk#000000556|0|out the pending instructions. blithely regular requests haggle blithely to| +53288|239296|O|212531.48|1996-06-08|5-LOW|Clerk#000002011|0|st closely blithely unusual instructions. regular| +53289|325792|O|121370.53|1997-04-27|2-HIGH|Clerk#000004142|0|tain carefully across the regular deposits-- packages may detect furiously a| +53290|578128|O|102430.70|1995-06-27|5-LOW|Clerk#000000454|0|. special requests hag| +53291|334972|O|125327.97|1997-09-15|2-HIGH|Clerk#000001438|0|ackages are final, ev| +53292|348586|O|83288.53|1997-03-08|2-HIGH|Clerk#000003935|0|slyly silent packages are bold| +53293|421063|F|255489.19|1993-06-05|5-LOW|Clerk#000000529|0| to the even accounts. dolphins detect blit| +53294|546601|O|66057.51|1998-07-13|3-MEDIUM|Clerk#000003399|0|y. platelets breach fluffily? quickly| +53295|692401|F|200940.78|1993-06-29|3-MEDIUM|Clerk#000001834|0|ar asymptotes. special deposit| +53320|175946|O|106037.47|1995-12-03|3-MEDIUM|Clerk#000000135|0|ts. deposits use furiously.| +53321|618346|O|152104.46|1997-11-12|3-MEDIUM|Clerk#000004859|0| carefully dogged pinto bea| +53322|520796|F|116141.84|1994-08-21|5-LOW|Clerk#000001881|0|es. carefully final depend| +53323|512701|O|200505.44|1996-04-17|1-URGENT|Clerk#000002973|0|e fluffily regular ideas thrash| +53324|206320|F|133246.75|1992-09-18|1-URGENT|Clerk#000003711|0|ress excuses. quickly ironic | +53325|351325|O|165314.94|1998-06-22|4-NOT SPECIFIED|Clerk#000002522|0|iously ironic requests eat furiously enticing asymptotes| +53326|690397|O|194249.85|1996-01-17|5-LOW|Clerk#000001160|0|y courts. slyly regular packages haggle. final| +53327|226243|O|100922.89|1997-05-04|3-MEDIUM|Clerk#000000942|0|wake across the dep| +53352|688699|O|22593.40|1998-05-24|1-URGENT|Clerk#000000368|0|fully regular excuses. ironic, even pinto b| +53353|213061|O|32025.57|1997-08-31|1-URGENT|Clerk#000000264|0|nic accounts wake fluffily across the carefully regular pack| +53354|403949|F|224602.95|1992-08-14|1-URGENT|Clerk#000003112|0|counts sleep among the enticingly express accounts.| +53355|168937|O|64233.79|1996-10-18|3-MEDIUM|Clerk#000004094|0|of the carefully speci| +53356|549649|F|49712.71|1994-04-01|4-NOT SPECIFIED|Clerk#000004232|0| the carefully even deposits boost slyly final instructions. packages haggle f| +53357|180635|O|15161.20|1997-08-30|2-HIGH|Clerk#000003634|0|leep furiously. sauternes are quick| +53358|672314|O|8005.50|1996-06-05|5-LOW|Clerk#000003406|0| even requests wake fu| +53359|67472|O|162598.89|1995-08-20|1-URGENT|Clerk#000000766|0|endencies. packages use slyly daring accounts. blithely silent packages accor| +53384|747958|F|69347.49|1995-02-24|5-LOW|Clerk#000000630|0|ly regular deposits mold. ironic requests are according to | +53385|155449|F|214068.06|1994-10-08|5-LOW|Clerk#000003271|0|. quickly special excuses haggle carefully platelets. fur| +53386|362954|O|143186.08|1995-07-10|3-MEDIUM|Clerk#000001034|0|deas. slyly regular packages sleep. b| +53387|408448|F|50572.52|1994-10-02|3-MEDIUM|Clerk#000003433|0|nal foxes integrate furiously according to the regular | +53388|7618|F|104576.16|1993-08-14|4-NOT SPECIFIED|Clerk#000000631|0| quickly daring foxes about the blithely final accounts are carefully e| +53389|505666|F|159823.64|1993-10-30|2-HIGH|Clerk#000001235|0|lthily regular instructions cajole. fo| +53390|470387|O|126885.06|1998-07-22|4-NOT SPECIFIED|Clerk#000003689|0| unusual packages. slyly ironic packages impress. express, silen| +53391|34370|F|229398.10|1992-05-31|3-MEDIUM|Clerk#000000121|0|uses dazzle against the bold, special instructions.| +53416|146875|F|145888.32|1993-06-03|1-URGENT|Clerk#000000156|0|ly regular pinto beans. regular excuses around the quic| +53417|260887|O|183266.19|1995-09-26|5-LOW|Clerk#000004241|0|ts wake permanently final ideas. busy, silent | +53418|214756|O|135871.52|1996-08-10|1-URGENT|Clerk#000001217|0|le among the special deposits! quickly unusual ideas nag fluffily. even inst| +53419|385451|F|167164.57|1993-09-08|1-URGENT|Clerk#000004671|0| bold accounts are quickly along the multipliers. quickly | +53420|521605|F|83370.17|1994-03-28|1-URGENT|Clerk#000000699|0|. furiously final accounts cajole furious| +53421|592330|F|81762.85|1992-08-08|2-HIGH|Clerk#000001412|0|accounts sleep carefully around the fur| +53422|533864|F|175841.71|1995-02-04|2-HIGH|Clerk#000002337|0|ronic ideas are bli| +53423|402031|O|256342.80|1995-12-25|3-MEDIUM|Clerk#000000786|0|by the quick, final courts sleep slyly across the slowly final i| +53448|152761|F|165318.66|1993-10-19|3-MEDIUM|Clerk#000000665|0|uests integrate furiously special, close theodolit| +53449|186274|O|120372.19|1995-11-14|4-NOT SPECIFIED|Clerk#000003453|0|ending requests nag according to the blithely even ideas. e| +53450|205147|F|112866.43|1995-02-07|4-NOT SPECIFIED|Clerk#000001058|0|nic accounts. quickly fluffy t| +53451|152951|O|42876.85|1997-07-01|2-HIGH|Clerk#000003639|0|e quickly silent epitaphs. quickly even packag| +53452|390280|F|241153.98|1994-07-13|3-MEDIUM|Clerk#000004596|0| accounts boost blithely final packages. special, express | +53453|684085|O|105084.09|1997-06-27|1-URGENT|Clerk#000001284|0|rays haggle. fluffily brave re| +53454|643384|O|155220.62|1996-03-17|5-LOW|Clerk#000003460|0|haggle-- fluffy dolphins detect regularly. packages sleep. packages sleep q| +53455|583189|O|333089.68|1996-05-05|4-NOT SPECIFIED|Clerk#000001168|0|etect against the regular dolphins. carefully bold asymptotes| +53480|632339|O|119333.91|1995-09-09|3-MEDIUM|Clerk#000002742|0|ests nag blithely slyly quick ideas. ironic attainments nag blithely silen| +53481|218837|F|173999.95|1993-08-15|2-HIGH|Clerk#000000231|0|ly regular theodolites. blithely r| +53482|740443|O|78991.80|1995-03-21|3-MEDIUM|Clerk#000002011|0|ts. slyly even excuses on the blithely regular theo| +53483|593320|O|31558.55|1995-08-09|2-HIGH|Clerk#000004315|0|permanently slyly special requests. silent, express depende| +53484|657238|O|189449.18|1996-08-05|5-LOW|Clerk#000000070|0| print. express theodoli| +53485|176339|F|112917.94|1992-09-29|5-LOW|Clerk#000000428|0|r requests. packages cajole carefully express deposits. boldly silent i| +53486|474814|O|148852.18|1995-09-27|2-HIGH|Clerk#000004276|0| platelets hinder blithely. pending requests haggle slyly ironic foxes| +53487|198133|F|156033.95|1992-08-31|4-NOT SPECIFIED|Clerk#000000341|0|lly regular asymptotes. fluffy i| +53512|5524|F|250432.61|1992-07-14|1-URGENT|Clerk#000001776|0|lyly across the bold, special theodolites. ex| +53513|562855|O|115080.72|1997-12-11|4-NOT SPECIFIED|Clerk#000002461|0|aggle from the furiously ironic theodolites. pending instructions are| +53514|143057|F|95889.72|1994-12-31|1-URGENT|Clerk#000001622|0|o beans use. even instructions boost. foxes believe on the f| +53515|598871|O|10814.55|1996-04-19|5-LOW|Clerk#000000896|0|d, regular accounts are quickly. ideas solv| +53516|224605|O|91561.03|1997-09-15|5-LOW|Clerk#000002288|0|nod final pinto beans. even packages nag boldly according to| +53517|172717|F|6153.59|1994-02-10|5-LOW|Clerk#000001039|0|lites serve. slyly final pinto beans hag| +53518|348472|O|239224.50|1996-05-01|4-NOT SPECIFIED|Clerk#000003201|0|requests cajole slyly along | +53519|853|F|171192.42|1993-09-25|2-HIGH|Clerk#000003475|0|against the express foxes. | +53544|85858|O|30014.80|1996-04-09|4-NOT SPECIFIED|Clerk#000000896|0|hrough the carefully ironic foxes boost furi| +53545|732094|O|120139.55|1997-02-22|4-NOT SPECIFIED|Clerk#000003513|0|riously above the express excuses. regularly unusual ideas haggle. | +53546|542767|O|29920.31|1995-04-23|1-URGENT|Clerk#000002336|0| haggle slyly against the platelets! blithel| +53547|10687|O|86734.00|1997-10-16|2-HIGH|Clerk#000001089|0|s, regular theodolites are evenly. slyly regular platelets cajole. | +53548|360733|O|19519.37|1995-08-10|5-LOW|Clerk#000003396|0|r the carefully bold accounts-- fluffily final packages are slyly| +53549|557308|O|258117.97|1998-02-12|4-NOT SPECIFIED|Clerk#000000248|0|ely final pinto beans. regular, ironic deposits wake courts. final, | +53550|649456|F|141316.80|1993-10-31|1-URGENT|Clerk#000002782|0|s along the carefully ironic requests wake across the fluffily ironic p| +53551|629032|O|149739.73|1996-12-30|5-LOW|Clerk#000003424|0|eep after the special packages. even pin| +53576|120011|O|76874.94|1995-09-09|2-HIGH|Clerk#000004819|0|ole carefully among the carefully regular dolphins. silent requ| +53577|262153|F|12724.15|1993-07-12|2-HIGH|Clerk#000003929|0|ithely. furiously unusual asymp| +53578|482542|F|8361.99|1995-05-27|5-LOW|Clerk#000001885|0|uffily quickly bold accounts; quickly blithe accounts n| +53579|326686|F|86770.25|1992-09-15|5-LOW|Clerk#000000483|0|thely. orbits across | +53580|593416|F|128697.90|1992-02-28|1-URGENT|Clerk#000001699|0|ar instructions wake of the pinto beans. regul| +53581|39952|F|172219.55|1995-01-19|3-MEDIUM|Clerk#000002697|0|pinto beans sleep. blithely even requests hind| +53582|195088|O|296489.55|1997-11-13|2-HIGH|Clerk#000000319|0|final accounts nag carefully even requests.| +53583|590315|O|285036.68|1997-03-19|3-MEDIUM|Clerk#000003141|0|ach furiously-- fluffily ironic deposits nag fluffily about the slyly final| +53608|412705|F|187105.78|1994-10-28|2-HIGH|Clerk#000004025|0|the accounts. idly even hockey players hagg| +53609|308290|O|105427.08|1996-06-18|1-URGENT|Clerk#000001418|0|riously regular packages| +53610|421429|F|162124.24|1992-07-21|1-URGENT|Clerk#000004977|0|e furiously unusual deposits. express deposits use. bol| +53611|699758|F|177934.87|1995-01-09|2-HIGH|Clerk#000004702|0|nts. bold dependencies against the blithely busy asym| +53612|69511|O|200266.02|1997-02-25|1-URGENT|Clerk#000001132|0| haggle carefully bold requests. care| +53613|502901|O|47471.48|1995-12-08|1-URGENT|Clerk#000001802|0| slyly. slyly unusual theodolites cajole | +53614|500590|F|88864.86|1993-02-15|3-MEDIUM|Clerk#000001240|0|ses. carefully special requests cajole | +53615|651371|O|55058.04|1996-10-22|4-NOT SPECIFIED|Clerk#000000377|0|hely enticing dependenci| +53640|586145|O|267895.61|1998-06-09|5-LOW|Clerk#000004137|0| slyly ironic depos| +53641|83467|F|165600.06|1992-12-25|3-MEDIUM|Clerk#000002533|0|ual requests nag blithely carefully even requests. accounts sleep slyly a| +53642|312076|F|179181.60|1995-01-28|1-URGENT|Clerk#000001956|0|ss the slyly final requests wake | +53643|298684|F|65092.04|1992-05-17|4-NOT SPECIFIED|Clerk#000002953|0|ndencies? slyly ironic platelets| +53644|225920|F|237186.91|1994-08-13|3-MEDIUM|Clerk#000000070|0|rmanent instructions beside the furiously final req| +53645|531790|F|330840.81|1992-09-02|4-NOT SPECIFIED|Clerk#000003887|0|s hinder along the final requests. regular, regular sauternes nag caref| +53646|29821|F|60178.02|1993-02-14|3-MEDIUM|Clerk#000003827|0|lar courts are. carefully pend| +53647|172268|F|116758.80|1992-12-21|5-LOW|Clerk#000002875|0|oost carefully after the carefully express packages;| +53672|306097|F|53542.38|1993-01-16|5-LOW|Clerk#000001272|0|es haggle blithely furiously ironic accounts| +53673|291544|F|190738.66|1993-09-16|2-HIGH|Clerk#000002928|0|ets. dogged accounts| +53674|225088|F|77756.61|1994-10-11|5-LOW|Clerk#000002464|0|theodolites against the pending, i| +53675|22846|P|238691.82|1995-04-20|5-LOW|Clerk#000002576|0|deas wake slyly. slyly express ideas nag slyly acco| +53676|696907|P|411104.69|1995-04-01|5-LOW|Clerk#000000431|0|nstructions. blithely pending deposits detect along| +53677|141614|F|218286.02|1992-06-30|2-HIGH|Clerk#000004180|0|yly among the slyly| +53678|340745|O|201460.56|1995-12-31|2-HIGH|Clerk#000002497|0|to haggle blithely blithe| +53679|634703|O|156999.76|1998-07-18|1-URGENT|Clerk#000004998|0|ly express, ironic packages| +53704|202474|F|191407.71|1993-04-25|1-URGENT|Clerk#000000215|0|e of the bold, even asymptotes. carefully pending warthogs are eve| +53705|200533|O|281541.96|1995-12-28|1-URGENT|Clerk#000002282|0|accounts maintain slyly ca| +53706|586531|O|161169.81|1996-12-26|1-URGENT|Clerk#000004915|0| furiously according to the final theodolites. slyly ironi| +53707|572123|F|121317.01|1993-04-20|5-LOW|Clerk#000004225|0|jole quickly slyly spec| +53708|668203|F|222077.95|1994-02-07|3-MEDIUM|Clerk#000002780|0|r foxes. deposits affix blithely about | +53709|725690|O|31038.60|1997-10-25|4-NOT SPECIFIED|Clerk#000002579|0|w carefully along the quickly ironic e| +53710|157357|O|180202.16|1997-10-25|4-NOT SPECIFIED|Clerk#000001971|0| accounts. fluffily even theodolites cajole quickly ironic theodoli| +53711|195106|O|115850.15|1997-08-14|5-LOW|Clerk#000001965|0|nst the quickly final accounts use carefully fluffily regul| +53736|140924|O|158713.02|1996-02-11|5-LOW|Clerk#000003248|0|quickly express requests. stealth| +53737|746263|P|75386.63|1995-05-15|4-NOT SPECIFIED|Clerk#000003853|0|structions sleep carefully. furiously bold | +53738|169814|F|33839.78|1992-05-29|4-NOT SPECIFIED|Clerk#000002904|0|inal, express packages. blithely unusual accou| +53739|308335|O|160746.43|1995-12-26|2-HIGH|Clerk#000003037|0| final, even dolphins. ironic, unusual foxes nag fluffily final pin| +53740|406156|F|163822.67|1992-12-20|5-LOW|Clerk#000004101|0|fily ironic requests. blithely ironic ideas use furiously. | +53741|487117|F|266237.71|1994-11-22|4-NOT SPECIFIED|Clerk#000003205|0|usly. final instructions according to the special, expre| +53742|724849|F|122647.51|1992-12-09|1-URGENT|Clerk#000000408|0|e to wake against the silent packages. ironic instructions boost carefully fin| +53743|274648|O|7636.30|1995-10-15|5-LOW|Clerk#000004794|0|y even foxes. blithely final frets nag blithely aro| +53768|506495|F|149405.35|1994-10-05|4-NOT SPECIFIED|Clerk#000004112|0|? quickly ironic pinto beans haggle quickly quickly regular deposi| +53769|156605|O|306339.96|1997-04-12|2-HIGH|Clerk#000004065|0|y express foxes cajole. escapades wake. final, pending cour| +53770|302387|O|47877.75|1995-08-02|1-URGENT|Clerk#000002043|0|s. carefully final packages use above the furiously ironic platelets.| +53771|215074|F|98744.60|1995-01-10|4-NOT SPECIFIED|Clerk#000002978|0|y brave accounts use i| +53772|469888|O|67624.31|1996-07-28|3-MEDIUM|Clerk#000000527|0|equests nag pending, even instructions. blithely| +53773|632042|O|111681.95|1998-03-11|5-LOW|Clerk#000003495|0|eas cajole ironic instructions. quic| +53774|479827|O|66251.65|1996-05-23|1-URGENT|Clerk#000000240|0|reach slyly according to the excuses. furiously i| +53775|431821|O|137576.50|1997-12-12|3-MEDIUM|Clerk#000002173|0|ronic packages sleep. fluffy foxes cajole furiously final | +53800|602323|F|333955.97|1993-04-24|3-MEDIUM|Clerk#000003176|0|according to the carefully thin foxes. slyly unusual| +53801|491503|F|255953.53|1992-07-15|4-NOT SPECIFIED|Clerk#000002836|0|ng the packages affix after the regular instructions. flu| +53802|190837|O|98793.34|1997-05-16|1-URGENT|Clerk#000000950|0|ng theodolites haggle carefull| +53803|368719|F|128424.28|1993-12-16|4-NOT SPECIFIED|Clerk#000002737|0|arefully. ironic, ironic asymptotes cajole slyly. regular| +53804|554752|F|287910.65|1993-10-08|3-MEDIUM|Clerk#000003059|0|g among the foxes-- regular foxes sleep. express patterns sl| +53805|465095|F|58483.79|1993-09-25|4-NOT SPECIFIED|Clerk#000000695|0|slyly final packages. furiously final Tiresias breach furiously abou| +53806|337222|O|103149.60|1996-06-17|2-HIGH|Clerk#000004763|0|g the blithely regular pac| +53807|673898|P|209596.33|1995-04-16|4-NOT SPECIFIED|Clerk#000002428|0|nding accounts boost blithely slyly regular deposits. carefully final instru| +53832|443426|F|274426.71|1993-04-14|1-URGENT|Clerk#000001741|0|ounts. carefully regular p| +53833|655088|O|54546.96|1995-10-18|5-LOW|Clerk#000000663|0|thely. ironic ideas wake carefully ironic pa| +53834|48995|O|18904.15|1995-08-15|3-MEDIUM|Clerk#000000250|0|. quickly regular packages use furiously furiously special accounts| +53835|700393|F|68969.77|1995-02-11|5-LOW|Clerk#000000541|0|cajole. accounts wake fluffily. ideas boost final ideas| +53836|253420|O|45862.09|1997-08-07|5-LOW|Clerk#000002174|0|affix among the final deposits. even req| +53837|723638|O|100746.31|1995-10-23|4-NOT SPECIFIED|Clerk#000001224|0|ns are express foxes. furiously special accounts af| +53838|171209|O|185992.73|1998-04-14|5-LOW|Clerk#000000909|0|ly ironic pains-- blithely bold platelets wake furiously around the requ| +53839|493513|F|51288.23|1992-05-17|2-HIGH|Clerk#000003344|0| quickly ironic requests wake fluffily furiously even| +53864|198980|F|174264.87|1992-12-23|1-URGENT|Clerk#000002442|0| pinto beans mold slyly along the slyly pen| +53865|741029|F|145910.75|1994-10-05|3-MEDIUM|Clerk#000003307|0|bove the deposits. blithely even accounts nag instead of the blithely ironic i| +53866|717430|O|166528.23|1995-08-27|4-NOT SPECIFIED|Clerk#000004384|0|bold packages. even, final courts are | +53867|64381|O|176705.28|1995-08-11|2-HIGH|Clerk#000003155|0|y final deposits haggle alon| +53868|547567|O|36323.15|1997-09-13|1-URGENT|Clerk#000001679|0| accounts. silent packages boost furiously. st| +53869|443818|O|101379.32|1996-01-03|2-HIGH|Clerk#000004874|0|p alongside of the express packages. asymptotes are furio| +53870|485336|F|264295.09|1992-09-23|1-URGENT|Clerk#000003960|0|gainst the final packages. regular platelets was| +53871|41857|O|28204.82|1996-12-16|3-MEDIUM|Clerk#000004344|0|c requests boost furiously across the regular dependencies. f| +53896|726485|F|92706.74|1994-08-23|4-NOT SPECIFIED|Clerk#000002829|0|fluffily quickly final du| +53897|17351|F|54391.52|1993-07-14|2-HIGH|Clerk#000003136|0|inal depths cajole through the furiously express deposits. regular, unusual| +53898|611935|F|162573.61|1994-04-30|1-URGENT|Clerk#000004824|0|es detect. quickly regular theodolites wake always blithely even| +53899|11671|F|195141.02|1993-09-12|5-LOW|Clerk#000002568|0|regular foxes nag carefully among the carefully special deposi| +53900|380650|F|246365.72|1993-02-10|4-NOT SPECIFIED|Clerk#000004919|0|luffily across the quickly even requests. ironic, unusual reque| +53901|66481|F|178639.97|1992-03-18|3-MEDIUM|Clerk#000003440|0|en deposits nod toward the pending requests. pending depos| +53902|563656|O|309816.69|1998-03-31|2-HIGH|Clerk#000003929|0|ress courts around the ideas sleep furiously along the quickly ironic as| +53903|109459|O|222968.32|1997-08-27|3-MEDIUM|Clerk#000004609|0|detect carefully. even pinto beans wake. slyly final attainments thra| +53928|653467|O|150018.00|1997-09-07|4-NOT SPECIFIED|Clerk#000003351|0|l excuses use about the carefully pending dependencies. furiously ir| +53929|555313|O|68788.63|1997-12-04|3-MEDIUM|Clerk#000004545|0|usly ideas. furiously regular deposits ar| +53930|114298|O|178734.83|1995-08-08|3-MEDIUM|Clerk#000000481|0|ay above the carefully ironic warhorses. | +53931|248497|F|112893.39|1994-04-07|2-HIGH|Clerk#000001248|0|er the ironic accounts kindle against the furi| +53932|475273|F|203928.45|1992-09-23|4-NOT SPECIFIED|Clerk#000001017|0|al excuses wake quickly fluffily slow pinto beans. blith| +53933|407762|O|195370.50|1997-10-28|3-MEDIUM|Clerk#000004703|0|ly special accounts boost furiously fi| +53934|493135|F|200991.51|1994-02-20|3-MEDIUM|Clerk#000000017|0|eposits. regular packages wake furiously| +53935|587164|F|199354.65|1994-05-22|1-URGENT|Clerk#000002263|0|ickly ironic asymptotes. blithely silent pinto beans p| +53960|684950|O|196017.21|1998-01-04|1-URGENT|Clerk#000001471|0|lar pearls. blithely re| +53961|196979|O|130267.55|1995-10-06|2-HIGH|Clerk#000004178|0|ans are carefully final, ruthless tithes. final| +53962|110971|O|44820.82|1996-10-12|4-NOT SPECIFIED|Clerk#000004163|0|s cajole. deposits cajole. busy multipliers according to | +53963|559675|O|256874.93|1996-08-21|4-NOT SPECIFIED|Clerk#000001771|0|r requests cajole. furiously spe| +53964|699508|O|21865.96|1998-01-23|5-LOW|Clerk#000000933|0| along the blithely regular excuses are| +53965|351677|F|188286.91|1994-07-12|3-MEDIUM|Clerk#000004330|0|regular requests aga| +53966|618889|F|162376.37|1992-12-28|1-URGENT|Clerk#000004694|0|e quickly accounts. accounts sleep. furiously expres| +53967|646720|O|150784.03|1998-05-15|2-HIGH|Clerk#000002999|0|xes. slyly ironic excuses haggle th| +53992|420374|F|117260.39|1993-12-21|3-MEDIUM|Clerk#000001450|0|hely special requests. carefully regular dolphins| +53993|219956|O|193518.01|1996-07-09|4-NOT SPECIFIED|Clerk#000003462|0|ly after the blithely unusual courts. carefully un| +53994|35015|F|211928.29|1994-09-07|4-NOT SPECIFIED|Clerk#000000003|0|final accounts. sly| +53995|495238|O|96779.15|1998-05-19|3-MEDIUM|Clerk#000004253|0|ites. quickly final deposits are slyly abou| +53996|702281|F|100517.04|1994-12-30|1-URGENT|Clerk#000004924|0|ptotes. ironic theodolites poach slyly even packages. furiously iron| +53997|481108|F|256230.48|1994-07-03|1-URGENT|Clerk#000002970|0|he silent sentiments. carefully ironic deposits above the pending | +53998|228152|F|27997.11|1993-04-20|3-MEDIUM|Clerk#000001597|0|ts haggle slyly atop the final req| +53999|539206|F|137666.21|1992-09-06|1-URGENT|Clerk#000001107|0| ironic packages impress slyly e| +54024|184535|F|126015.08|1995-02-01|2-HIGH|Clerk#000001141|0|usly. ironic pinto beans cajole slyly. carefully final deposits boost abo| +54025|225977|O|10035.74|1997-11-17|5-LOW|Clerk#000001650|0| regular accounts about the quick| +54026|732307|F|254023.89|1994-01-17|4-NOT SPECIFIED|Clerk#000003225|0|beans mold slyly. slyly final orbit| +54027|359959|F|249581.23|1992-02-28|1-URGENT|Clerk#000004935|0|equests according to the slyly express excuses impress slyly fluffily | +54028|316453|F|159038.25|1994-07-08|5-LOW|Clerk#000003680|0|heodolites use blithe| +54029|343943|O|226426.77|1997-06-11|3-MEDIUM|Clerk#000004110|0|ructions. carefully regular packages sleep furiously slyly final packages. | +54030|388912|O|298974.18|1996-12-04|2-HIGH|Clerk#000001307|0|s. express, bold packages nag after the express, exp| +54031|177746|O|242332.82|1995-08-25|1-URGENT|Clerk#000004426|0| final deposits. carefully unu| +54056|115007|F|230783.46|1994-10-22|5-LOW|Clerk#000004552|0|ckly ironic pinto beans. regular| +54057|156202|F|337545.94|1994-03-22|3-MEDIUM|Clerk#000000297|0|e blithely. furiously regular deposits w| +54058|279751|O|93668.06|1998-05-09|3-MEDIUM|Clerk#000004554|0| slyly among the regular pa| +54059|10303|O|87610.17|1998-02-27|3-MEDIUM|Clerk#000004016|0|fix furiously final accounts. furiously f| +54060|653767|O|191529.52|1995-11-05|2-HIGH|Clerk#000001303|0|ic requests. fluffily silent excuses boost furiously ab| +54061|330569|F|7815.76|1994-09-28|4-NOT SPECIFIED|Clerk#000000208|0|oxes wake across the slyly regular ac| +54062|607300|F|223270.79|1995-03-08|4-NOT SPECIFIED|Clerk#000002238|0|ly-- fluffy requests along the special, pending asymptotes cajo| +54063|136642|O|129606.25|1996-01-18|1-URGENT|Clerk#000001910|0|use furiously. final, regular ideas use blithely requests. fluffily bold th| +54088|14431|F|235867.94|1994-12-05|5-LOW|Clerk#000004902|0| integrate furiously blithely express requests! fluffily idle foxes| +54089|271534|F|237151.57|1993-04-26|4-NOT SPECIFIED|Clerk#000003699|0|ar excuses. fluffily even ideas x-ray quic| +54090|653962|O|115055.36|1997-01-14|5-LOW|Clerk#000002253|0|ash furiously. furiously ironic excuses poach fluffily carefull| +54091|605923|F|68513.20|1993-06-27|4-NOT SPECIFIED|Clerk#000000938|0| regular, furious deposits. regular, final a| +54092|217598|O|90789.87|1996-12-24|3-MEDIUM|Clerk#000003453|0|, ruthless requests. furiously bold asymptotes for the | +54093|164092|F|274244.84|1995-01-25|5-LOW|Clerk#000004371|0|. furiously unusual foxes are around the even instructions. furiousl| +54094|126604|O|261246.75|1996-09-09|2-HIGH|Clerk#000004353|0|nts. blithely ironi| +54095|59117|F|187305.57|1993-10-07|3-MEDIUM|Clerk#000001313|0|accounts boost furiously atop the ideas. slyly final deposits a| +54120|566098|O|251892.37|1995-07-19|5-LOW|Clerk#000004661|0|ts nag fluffily. pending deposits according to the accounts shal| +54121|633658|F|32149.82|1994-01-07|1-URGENT|Clerk#000000154|0|quests boost furiously according to the slyly final th| +54122|629053|O|96555.39|1995-12-23|1-URGENT|Clerk#000002326|0| ironic instructions are quickly against the | +54123|488351|F|299744.80|1993-07-18|3-MEDIUM|Clerk#000001805|0| ironic deposits maintain blithely along the express, ironic reque| +54124|456613|F|187817.96|1993-04-17|2-HIGH|Clerk#000004153|0|carefully express requests alongside of the silent, pending theodolites a| +54125|291427|O|222435.39|1998-07-16|5-LOW|Clerk#000002877|0|requests wake quickly. ironic the| +54126|486494|F|37450.25|1993-04-21|4-NOT SPECIFIED|Clerk#000001915|0|telets are furiously even foxes. fluffy de| +54127|679|O|34630.25|1996-02-16|4-NOT SPECIFIED|Clerk#000002362|0|ggle slyly ironic, regular deposits. instructions are about the | +54152|135097|F|216975.22|1994-10-17|3-MEDIUM|Clerk#000000035|0|y ironic dependencies about the notornis boost fluffily regular depos| +54153|302906|F|100669.64|1994-04-08|4-NOT SPECIFIED|Clerk#000001386|0| pinto beans. special, final requests about the blithely permanent| +54154|679351|F|171595.98|1994-05-23|4-NOT SPECIFIED|Clerk#000002976|0| ideas nag after the brave, ironic ideas. | +54155|568748|O|214867.33|1995-08-23|4-NOT SPECIFIED|Clerk#000002586|0|accounts are carefully b| +54156|194746|F|106592.30|1992-10-19|1-URGENT|Clerk#000000287|0|inal requests are careful| +54157|63205|F|200493.95|1994-03-06|2-HIGH|Clerk#000003661|0|ach carefully slyly silent excuses. even, final | +54158|261893|F|188776.44|1994-10-17|4-NOT SPECIFIED|Clerk#000001475|0|lly ironic deposits. blit| +54159|622561|O|168747.54|1997-08-20|2-HIGH|Clerk#000003210|0|en theodolites. unusual, regular dependen| +54184|104711|O|267936.90|1997-05-15|3-MEDIUM|Clerk#000002526|0|ing foxes print furiously ac| +54185|368981|F|92742.23|1994-09-21|4-NOT SPECIFIED|Clerk#000004925|0|ar dependencies boost furious| +54186|461270|F|168630.76|1994-02-12|5-LOW|Clerk#000002749|0|e finally final packages wake dugouts. requests | +54187|560758|O|294993.14|1998-03-14|1-URGENT|Clerk#000001090|0|atelets hang carefully among the requests. bold instructions haggle | +54188|140902|O|160208.07|1996-11-13|3-MEDIUM|Clerk#000003623|0|s haggle. blithely ironic deposits boost across the accounts. slyly bu| +54189|386263|F|29647.17|1993-01-04|4-NOT SPECIFIED|Clerk#000002602|0|even instructions print. ironic, regular patterns cajole. account| +54190|661751|O|129613.40|1996-10-01|2-HIGH|Clerk#000001321|0|after the furiously ironic requests: ironic requests nag blithely. | +54191|285823|O|85275.63|1997-11-08|5-LOW|Clerk#000004444|0| nag. slyly bold deposits x-ray carefully pen| +54216|52724|O|214387.60|1996-12-01|1-URGENT|Clerk#000001477|0| the ironic packages. furiously express theodolites against the regular,| +54217|376540|F|195704.00|1993-11-24|5-LOW|Clerk#000004961|0|ress accounts are furiously regular, close escapades. express t| +54218|735457|O|135696.37|1996-05-03|4-NOT SPECIFIED|Clerk#000004779|0|ronic deposits cajole slyly. carefully final pi| +54219|54631|F|199002.85|1994-06-30|3-MEDIUM|Clerk#000001060|0|usly regular accounts. furiously ironic attainments at the deposits sleep | +54220|167533|O|228185.72|1997-03-11|2-HIGH|Clerk#000004520|0|frets. furiously final pinto | +54221|210706|O|132074.29|1996-10-06|5-LOW|Clerk#000002518|0|ites serve carefully slyly regular platelets. pinto beans sleep ca| +54222|564887|O|180952.20|1995-06-27|4-NOT SPECIFIED|Clerk#000004032|0| express ideas haggle | +54223|540637|F|104325.49|1994-08-11|2-HIGH|Clerk#000001888|0|usly express pearls. slyly ironic deposits nag sl| +54248|225751|F|73294.58|1992-08-27|1-URGENT|Clerk#000003527|0|ending realms integrate furi| +54249|680311|F|103813.63|1993-08-28|3-MEDIUM|Clerk#000003749|0|l decoys. enticing theodolites | +54250|223243|F|183144.70|1992-05-21|5-LOW|Clerk#000001296|0| platelets across the furiously | +54251|540167|F|89499.04|1994-03-30|3-MEDIUM|Clerk#000001006|0|althily regular Tiresias. ironic deposits above the | +54252|570406|F|47860.16|1994-04-25|2-HIGH|Clerk#000004014|0|se blithely across the blith| +54253|294347|O|261134.63|1998-07-10|5-LOW|Clerk#000003275|0|g instructions. slyly unusual foxes boost quickly quickly final depen| +54254|87742|O|162558.17|1997-09-16|3-MEDIUM|Clerk#000001162|0|special dependencies. even, regular deposits| +54255|169762|F|195482.15|1993-05-10|1-URGENT|Clerk#000004456|0|eans sleep across the foxes. unusual instructions cajole fur| +54280|178801|F|36463.60|1993-07-14|1-URGENT|Clerk#000003418|0| deposits. accounts use furiously-- carefully express pinto beans wake| +54281|590870|O|148530.57|1997-11-04|5-LOW|Clerk#000004897|0|thin requests. furiousl| +54282|744305|F|39954.22|1992-11-01|4-NOT SPECIFIED|Clerk#000002208|0|s. even deposits about the requests x-ray blithely blithely re| +54283|279037|F|136372.01|1993-11-16|1-URGENT|Clerk#000003957|0|y express instructions wake eve| +54284|742933|O|92432.34|1996-11-27|2-HIGH|Clerk#000000065|0|eans are slyly along the regu| +54285|458917|O|185129.41|1997-01-31|1-URGENT|Clerk#000001596|0|onic pinto beans are carefully requests; asymptotes thrash. furious| +54286|747352|F|143257.13|1994-01-17|4-NOT SPECIFIED|Clerk#000000111|0|r requests might are slyl| +54287|476357|F|28643.63|1994-01-29|2-HIGH|Clerk#000004456|0|ldly daring accounts wake blithely-- slyly | +54312|625513|F|53482.30|1993-08-25|5-LOW|Clerk#000004028|0|s cajole carefully quickly even ideas? pending th| +54313|231221|O|254434.61|1998-04-09|2-HIGH|Clerk#000004170|0|requests haggle carefully carefully even foxes. fluffily regular packa| +54314|380948|F|208137.61|1994-08-20|5-LOW|Clerk#000003956|0|pecial accounts. furiously even foxes x-ray carefully above the theodolites. | +54315|578371|O|90418.19|1995-07-20|4-NOT SPECIFIED|Clerk#000003113|0|realms affix among the express | +54316|673001|F|190976.78|1993-09-16|1-URGENT|Clerk#000000636|0| cajole alongside of the express foxes. slyly bold depo| +54317|362614|O|130359.19|1995-05-08|1-URGENT|Clerk#000003777|0|he express, ironic re| +54318|682861|F|239288.48|1993-01-04|4-NOT SPECIFIED|Clerk#000003787|0|sly. blithely final ideas integrate carefully re| +54319|335834|F|113598.03|1994-08-30|1-URGENT|Clerk#000001533|0|e finally furiously even packages. fluffily bold accounts n| +54344|597575|O|80149.56|1997-05-25|5-LOW|Clerk#000003933|0|ts. blithely bold deposits haggle bli| +54345|176812|O|255036.45|1998-07-17|2-HIGH|Clerk#000000476|0|ver regular instructions are above the blit| +54346|176701|O|36049.24|1997-08-20|1-URGENT|Clerk#000000043|0|blithely even foxes. special requests wake packages. carefully| +54347|556438|F|34961.37|1993-11-18|1-URGENT|Clerk#000003319|0|nic depths-- carefully ironic instructions are. quickly pending acc| +54348|286975|O|396223.91|1995-08-14|1-URGENT|Clerk#000001541|0|cajole packages. permanently furious requests are blithely. carefully even| +54349|660932|O|110248.02|1996-04-10|3-MEDIUM|Clerk#000004341|0|thely ironic pinto beans exc| +54350|18232|F|151393.77|1992-01-01|3-MEDIUM|Clerk#000002611|0|y pending epitaphs. blithely bold depend| +54351|397891|F|290405.28|1993-08-31|2-HIGH|Clerk#000002670|0|nto beans. regular pinto beans use quickly. carefully even ac| +54376|330613|F|24386.08|1993-07-18|3-MEDIUM|Clerk#000004196|0|fully fluffy ideas wake carefully even, special deposits. final theod| +54377|602198|F|166008.84|1992-04-07|2-HIGH|Clerk#000001909|0|even requests are blithely. pinto beans a| +54378|640241|O|24304.85|1997-10-23|5-LOW|Clerk#000004614|0|sts are slyly quickly regular ideas. furiously special ideas boost blithel| +54379|267787|O|71109.87|1997-07-18|5-LOW|Clerk#000000827|0| according to the regular foxes cajole furiously above the blit| +54380|673790|O|44671.49|1998-06-09|5-LOW|Clerk#000003172|0|endencies. express pac| +54381|124084|O|269661.32|1995-10-20|4-NOT SPECIFIED|Clerk#000000151|0|nstructions nag carefully. furiousl| +54382|453358|O|73790.50|1996-04-17|5-LOW|Clerk#000000549|0|special instructions grow ac| +54383|330080|F|97109.59|1992-07-08|4-NOT SPECIFIED|Clerk#000001753|0|ironic packages according to the quickly regular accounts cajole deposit| +54408|650114|O|11223.47|1997-05-28|4-NOT SPECIFIED|Clerk#000002263|0|ffily bold deposits? furiously bold accounts along the blithely | +54409|449918|F|161062.47|1994-10-07|3-MEDIUM|Clerk#000002769|0|ggle regular packages. regular accounts use according to the dependenc| +54410|259567|O|223382.23|1996-08-14|2-HIGH|Clerk#000003690|0|ent asymptotes. slyly express foxes accord| +54411|526828|O|280794.69|1995-12-27|4-NOT SPECIFIED|Clerk#000002097|0|earls breach according to the bo| +54412|645119|O|86357.61|1995-05-29|2-HIGH|Clerk#000003773|0|hs cajole furiously. close instructions alongside of the st| +54413|498766|O|73972.53|1996-11-16|1-URGENT|Clerk#000002746|0|boldly. furiously express theodoli| +54414|742687|F|63229.00|1992-05-21|2-HIGH|Clerk#000004218|0|jole above the furiously ironic attainments? quickly regular requests affix| +54415|78115|O|74445.38|1997-08-28|1-URGENT|Clerk#000000085|0|accounts. pending, spe| +54440|346427|O|177684.39|1996-05-22|5-LOW|Clerk#000000070|0| even, ironic theodolites | +54441|142573|P|301217.04|1995-04-12|4-NOT SPECIFIED|Clerk#000000889|0|silent requests. blithely regular accounts thrash f| +54442|698645|F|139426.16|1993-08-02|1-URGENT|Clerk#000002794|0|unusual, daring dependen| +54443|119905|F|93436.38|1994-12-25|5-LOW|Clerk#000002620|0|lowly regular packages. | +54444|713389|O|201539.99|1995-06-13|5-LOW|Clerk#000003026|0|cajole about the unusual deposits. ironic ideas | +54445|409426|O|143187.62|1996-05-13|2-HIGH|Clerk#000002809|0|sits. slyly regular instructions snooze. carefully express accounts hag| +54446|721966|O|165533.80|1996-07-28|3-MEDIUM|Clerk#000002110|0|lly slyly regular deposits.| +54447|563659|O|100157.06|1998-04-29|4-NOT SPECIFIED|Clerk#000000571|0|y inside the carefully ironic th| +54472|147899|F|75287.59|1992-12-27|2-HIGH|Clerk#000004961|0|jole slyly furiously regular pinto beans. regular, final | +54473|234199|F|186550.45|1993-04-14|1-URGENT|Clerk#000004916|0|ages. furiously ironic instructions serve slyly according to the bl| +54474|149753|F|182310.35|1993-06-21|5-LOW|Clerk#000001149|0|hlessly special packages cajole | +54475|639083|O|72191.52|1995-09-01|5-LOW|Clerk#000001297|0|final requests haggle slyly unusual accounts| +54476|317975|F|283827.79|1993-01-13|3-MEDIUM|Clerk#000000878|0| foxes use carefully special asymptotes. blithely ir| +54477|448057|O|3341.82|1997-07-13|3-MEDIUM|Clerk#000002119|0|y ironic accounts nag slyly. depos| +54478|479155|F|112385.93|1993-07-09|4-NOT SPECIFIED|Clerk#000004508|0|ffily even theodolites boost quickly special ideas. | +54479|406907|O|202878.25|1996-08-10|4-NOT SPECIFIED|Clerk#000003143|0|requests wake furiously. quickly regular deposits sleep furiously blithely fi| +54504|371284|F|234346.50|1992-09-04|1-URGENT|Clerk#000003761|0|riously final requests. bold accounts about the unusual, regular platele| +54505|162782|F|31261.31|1994-03-25|5-LOW|Clerk#000004664|0| nag. slyly silent foxes| +54506|613309|O|104541.82|1998-03-24|1-URGENT|Clerk#000004076|0|r decoys with the bold theodolites haggle fluffily pending package| +54507|604336|F|187039.86|1993-09-21|3-MEDIUM|Clerk#000000943|0|after the frays. silen| +54508|553714|O|113548.87|1996-08-06|3-MEDIUM|Clerk#000002987|0|lyly pending epitaphs along the quietly careful dolphins are about the qui| +54509|259072|O|188184.59|1997-03-10|2-HIGH|Clerk#000003505|0|ions integrate furiously. express, even foxes nag carefully even t| +54510|441862|O|292976.98|1998-08-02|2-HIGH|Clerk#000002244|0|y express pinto beans sleep furiously ca| +54511|623813|O|205092.51|1998-07-22|1-URGENT|Clerk#000000101|0|eat slyly. slyly final packages promise fu| +54536|164708|F|95559.29|1993-06-09|2-HIGH|Clerk#000004806|0|ons. requests about th| +54537|731941|O|103655.46|1997-07-29|3-MEDIUM|Clerk#000002952|0|fully special foxes sleep carefully fluffily even foxes. carefully even| +54538|211778|F|192930.99|1992-06-07|4-NOT SPECIFIED|Clerk#000001969|0| bold requests sleep. carefully even instructions| +54539|597376|O|210871.46|1995-06-26|3-MEDIUM|Clerk#000000264|0|ely final instructions are bravely alongside of the dogged pa| +54540|581974|F|232685.45|1992-07-30|4-NOT SPECIFIED|Clerk#000001172|0|s. carefully special packa| +54541|458152|F|29920.79|1992-02-24|1-URGENT|Clerk#000003729|0|s sleep blithely. ironic, regular | +54542|637135|O|27931.25|1997-03-06|3-MEDIUM|Clerk#000000196|0| furiously unusual courts. final packages according to the carefully final| +54543|549605|O|68452.07|1997-11-30|1-URGENT|Clerk#000002406|0|usual deposits nag slyl| +54568|199432|O|161853.67|1995-12-15|5-LOW|Clerk#000003381|0|. regular accounts play carefully along the furiously final accounts.| +54569|76960|F|218077.13|1992-10-22|5-LOW|Clerk#000004441|0|ermanently. quickly | +54570|434530|O|209436.85|1998-04-12|3-MEDIUM|Clerk#000003893|0|ites against the carefully final foxes wake fluf| +54571|368770|F|74533.20|1994-02-27|4-NOT SPECIFIED|Clerk#000000471|0|ounts wake quickly. accounts along the qui| +54572|644800|F|239826.16|1992-01-11|5-LOW|Clerk#000004644|0|gular, regular reques| +54573|389354|O|199600.21|1995-07-15|1-URGENT|Clerk#000001604|0|even pains use furiously final ideas. | +54574|112282|O|190333.35|1997-11-02|2-HIGH|Clerk#000001027|0|ring instructions. requests wake blithely about the bli| +54575|115133|O|101207.61|1995-12-11|2-HIGH|Clerk#000004423|0| pinto beans cajole carefully. carefully unusual packages impress doggedly. qu| +54600|31237|O|119592.54|1998-05-01|4-NOT SPECIFIED|Clerk#000004647|0|ely blithely daring packages. blithely s| +54601|748832|F|39436.13|1994-04-12|2-HIGH|Clerk#000001564|0|ideas alongside of the regular, pending accounts cajole alw| +54602|606400|O|125272.85|1997-11-27|5-LOW|Clerk#000003551|0|e quickly unusual deposits are evenl| +54603|734212|F|256401.56|1992-09-13|3-MEDIUM|Clerk#000003329|0|he final instructions. unusual excuses haggle blithel| +54604|122789|F|260981.92|1994-07-30|4-NOT SPECIFIED|Clerk#000004005|0| poach carefully carefully regu| +54605|452971|F|34099.97|1992-06-30|2-HIGH|Clerk#000000241|0|ans. even, even theodolites wake furiously slyly pending deposits. bold| +54606|558448|O|189102.27|1995-07-05|2-HIGH|Clerk#000002948|0|egrate blithely inside the packages. special, daring packages | +54607|309517|O|193321.63|1998-03-13|2-HIGH|Clerk#000001226|0|eep. instructions haggle blithely bold packages. express packages ca| +54632|29887|O|159652.27|1998-06-04|3-MEDIUM|Clerk#000001559|0|olphins. quickly silent deposits are? slow | +54633|555799|F|253089.03|1992-03-29|5-LOW|Clerk#000003469|0|y ironic sheaves. blithely bold accounts will are pending, regular instruct| +54634|48757|F|301939.73|1992-11-08|2-HIGH|Clerk#000002009|0|ely pending packages haggle quietly slyly regular braids. ca| +54635|449483|O|141744.40|1997-03-03|2-HIGH|Clerk#000000232|0|against the special, pe| +54636|452281|O|23048.13|1998-07-14|2-HIGH|Clerk#000000388|0| furiously according to the quickly special requests. final foxes a| +54637|232484|F|78786.98|1994-08-11|5-LOW|Clerk#000000826|0|eodolites cajole slyly evenly | +54638|595918|F|65789.71|1995-01-07|4-NOT SPECIFIED|Clerk#000002039|0|p after the fluffily bold ideas! boldly regular instruct| +54639|86842|F|176169.96|1992-01-06|1-URGENT|Clerk#000000976|0|aggle slyly. furiou| +54664|42296|F|245838.23|1993-02-07|5-LOW|Clerk#000000681|0|ly along the idly final instructions. pending, silen| +54665|609820|O|294303.94|1996-06-16|3-MEDIUM|Clerk#000002785|0|s wake regular courts. blithely express idea| +54666|464383|O|39971.61|1997-04-04|1-URGENT|Clerk#000003180|0| blithely even deposits along the express, ironic foxes det| +54667|378050|O|46827.88|1998-05-15|2-HIGH|Clerk#000003280|0|e above the fluffily bold escapades. fluffily regular requests | +54668|626926|O|20817.42|1997-08-23|3-MEDIUM|Clerk#000001099|0|s use slyly according to the regular theodo| +54669|730286|F|288387.00|1992-03-04|1-URGENT|Clerk#000001979|0|d the stealthily even requests. final deposits cajole | +54670|161188|F|225316.83|1992-04-24|3-MEDIUM|Clerk#000001186|0|final deposits doze slyly. blithely pending deposits integrate final the| +54671|78236|F|199260.97|1993-01-07|4-NOT SPECIFIED|Clerk#000003010|0|n attainments. boldly unusual requests nag above the quickly | +54696|152434|O|174809.85|1996-11-13|1-URGENT|Clerk#000004550|0| blithely final instructions was furiously according to the theodolit| +54697|698362|F|32240.10|1993-07-20|2-HIGH|Clerk#000002939|0|c grouches cajole bold packa| +54698|605800|O|64105.28|1997-10-01|3-MEDIUM|Clerk#000000230|0| regular deposits use after the deposits. express, final packages m| +54699|406186|F|6080.83|1994-06-08|5-LOW|Clerk#000003131|0|uriously regular accounts should have to use slyly. fluffily final foxes boo| +54700|248575|O|197958.39|1997-03-31|2-HIGH|Clerk#000001628|0|. express theodolites wake.| +54701|285073|O|34969.88|1996-02-02|4-NOT SPECIFIED|Clerk#000002354|0|n asymptotes cajole special requests. quick, pending ideas are furiously busy| +54702|210256|O|41906.90|1995-05-30|4-NOT SPECIFIED|Clerk#000004354|0|egular requests dazzle quick| +54703|521941|O|198888.88|1996-06-08|3-MEDIUM|Clerk#000003843|0|. special packages cajole. furiously regular requests wake above the ironi| +54728|261955|F|221419.18|1993-10-02|2-HIGH|Clerk#000004949|0|pitaphs are among the asymp| +54729|144694|O|67009.62|1997-11-01|5-LOW|Clerk#000003165|0|e slyly requests! furiously express pinto beans nag slyly carefully | +54730|354265|F|153023.68|1993-12-21|1-URGENT|Clerk#000002653|0|gular orbits along the c| +54731|618568|O|58898.07|1996-02-16|4-NOT SPECIFIED|Clerk#000000471|0|the final accounts wake about the even, ironic instruct| +54732|491812|O|280422.21|1995-09-29|1-URGENT|Clerk#000003284|0|. furiously even accounts wake | +54733|127922|O|238520.75|1997-08-27|5-LOW|Clerk#000002484|0|old asymptotes. carefully special accounts nag quickly c| +54734|484336|O|129391.09|1998-02-14|5-LOW|Clerk#000001298|0|lly unusual instructions wake furiously after the carefully fi| +54735|471946|O|147329.69|1997-07-12|1-URGENT|Clerk#000002890|0|thely unusual packages are furi| +54760|742355|O|58779.25|1996-03-21|5-LOW|Clerk#000001729|0|mptotes sublate carefully. furiously dogged packages after the carefully e| +54761|495545|O|299192.34|1997-01-06|4-NOT SPECIFIED|Clerk#000002799|0|sits. blithely ironi| +54762|613300|F|254060.60|1993-05-02|4-NOT SPECIFIED|Clerk#000001574|0| theodolites wake. quickly pending ideas wake along the ironic| +54763|477238|P|225584.88|1995-03-17|4-NOT SPECIFIED|Clerk#000003879|0| slyly final deposits across th| +54764|412919|O|190924.29|1996-08-28|5-LOW|Clerk#000001100|0|e regular requests. carefully busy accounts wake ab| +54765|167540|O|247560.39|1996-05-13|3-MEDIUM|Clerk#000002076|0| slyly. blithely regular requests wake carefully according to the iro| +54766|328384|O|153745.98|1998-04-01|1-URGENT|Clerk#000004727|0|usly above the final requests. fluffily even packages alongside of | +54767|617069|F|244543.99|1992-02-12|1-URGENT|Clerk#000000153|0|wake slyly after th| +54792|72262|F|297012.50|1992-03-22|4-NOT SPECIFIED|Clerk#000002515|0|ccounts cajole blithely. regular asymptotes are slyly according to t| +54793|239134|F|54200.59|1992-10-01|5-LOW|Clerk#000002967|0|y final deposits bo| +54794|618493|F|193467.87|1994-10-30|4-NOT SPECIFIED|Clerk#000003842|0|equests about the carefully regular packages believe slyly final accoun| +54795|743569|F|222431.96|1993-04-20|1-URGENT|Clerk#000001573|0|g courts wake carefully above the furiously regular sauterne| +54796|653017|O|186749.00|1997-02-15|5-LOW|Clerk#000003904|0|accounts nag. blithely ironic packages cajole fluffily platel| +54797|480289|F|41838.04|1993-04-04|5-LOW|Clerk#000003931|0|nic, ironic excuses are against the fluffily regular pinto beans.| +54798|695107|O|311612.21|1996-01-05|5-LOW|Clerk#000003410|0|ar ideas detect quickly along the carefully even requests. slyly iron| +54799|630125|O|167015.27|1996-06-14|5-LOW|Clerk#000003790|0|carefully unusual pinto beans wake. daringly even requ| +54824|506999|F|189282.24|1993-07-21|4-NOT SPECIFIED|Clerk#000002623|0|g platelets. idle accounts use across the even asymptotes. regul| +54825|373372|O|157888.78|1996-11-02|1-URGENT|Clerk#000003050|0|ual pinto beans sleep slyly final deposits: regular pinto bea| +54826|735814|O|106449.44|1995-04-24|2-HIGH|Clerk#000000386|0|nding deposits cajole. permanent accounts integrate fur| +54827|70559|O|185841.89|1996-01-15|5-LOW|Clerk#000001431|0|y special courts sleep. blithely | +54828|128180|O|272495.00|1997-06-12|4-NOT SPECIFIED|Clerk#000003191|0|requests. slyly pending packages t| +54829|315040|F|15876.73|1994-03-20|5-LOW|Clerk#000003925|0|ly! regular, furious theodolites alongside of the b| +54830|611056|O|215188.01|1996-04-29|4-NOT SPECIFIED|Clerk#000002149|0|al instructions play stealthy package| +54831|247279|F|182345.92|1992-11-14|5-LOW|Clerk#000000692|0|ts. carefully special foxes use quickly sometimes fina| +54856|264082|O|43845.69|1995-07-30|1-URGENT|Clerk#000000400|0|ly bold dolphins wake carefully. bold requests cajole slyly according to th| +54857|665396|O|132947.80|1996-12-12|3-MEDIUM|Clerk#000004248|0| quickly silent accounts a| +54858|50333|F|156907.26|1994-11-19|3-MEDIUM|Clerk#000002498|0|requests. slyly even packages according to the ironic, bold packa| +54859|695452|O|113651.18|1997-07-01|5-LOW|Clerk#000001169|0|ar accounts grow carefu| +54860|431173|O|191772.89|1996-08-25|5-LOW|Clerk#000001112|0|ross the special platelets. blith| +54861|216136|O|310532.96|1996-07-31|1-URGENT|Clerk#000003905|0|he quickly regular deposits. fluffily special dependenci| +54862|327979|F|121192.99|1993-11-21|2-HIGH|Clerk#000002507|0|y special requests. unusual acc| +54863|583961|F|31466.13|1994-08-07|5-LOW|Clerk#000004888|0|yly. regular, ironic theodolites cajole quickly. regul| +54888|119932|O|33295.47|1997-05-15|1-URGENT|Clerk#000000990|0|refully special escapades sn| +54889|423092|O|2093.41|1998-01-02|5-LOW|Clerk#000002265|0|the unusual theodolites sleep blith| +54890|143143|F|113541.44|1992-02-18|4-NOT SPECIFIED|Clerk#000003734|0|ely final deposits hind| +54891|528479|F|77019.71|1992-09-30|2-HIGH|Clerk#000001483|0|ges sleep according to the silent | +54892|640445|F|145071.62|1992-05-21|3-MEDIUM|Clerk#000001980|0|ing to the special excuses. furiously even packages breach fur| +54893|696700|O|305508.80|1996-03-14|4-NOT SPECIFIED|Clerk#000004571|0|maintain carefully. even r| +54894|404144|O|310334.45|1997-01-29|1-URGENT|Clerk#000003341|0|accounts haggle furiously across the slyly busy accounts! final, even ins| +54895|444659|O|46203.90|1997-09-07|1-URGENT|Clerk#000004930|0|requests mold quickly.| +54920|375107|F|80162.00|1995-02-04|2-HIGH|Clerk#000004598|0|yly after the regular dependencies. slyly regular requests cajol| +54921|660437|O|204081.56|1996-05-09|1-URGENT|Clerk#000001472|0| carefully. quickly| +54922|705706|F|31354.64|1993-06-16|4-NOT SPECIFIED|Clerk#000004455|0|cuses before the unusual dependencies haggle e| +54923|278308|F|102186.28|1993-01-02|5-LOW|Clerk#000000925|0|fully bold ideas. even, regular asymptotes sleep ironic | +54924|505915|F|123804.07|1993-02-11|2-HIGH|Clerk#000003360|0|s. furiously special accounts boost. requests might integrate carefully| +54925|156043|F|247457.54|1992-02-29|4-NOT SPECIFIED|Clerk#000000990|0|y regular grouches cajole bold accoun| +54926|600767|O|51821.16|1995-09-26|2-HIGH|Clerk#000000977|0|ideas wake above the slyly pending packages? | +54927|579463|O|252775.90|1998-03-29|4-NOT SPECIFIED|Clerk#000003026|0|ar deposits integrate sil| +54952|251866|F|131251.95|1994-07-02|2-HIGH|Clerk#000004090|0|oss the furiously unusual packages. regular accounts haggle according to t| +54953|108448|O|293568.67|1997-06-15|4-NOT SPECIFIED|Clerk#000000377|0|iously regular dolphins. fluffil| +54954|183208|O|3265.92|1998-01-29|1-URGENT|Clerk#000000046|0| to the final, regular deposit| +54955|414503|O|19902.96|1995-09-27|2-HIGH|Clerk#000000536|0|. carefully pending packages wake blithely final excuses. fluffi| +54956|536450|O|196095.84|1996-08-08|2-HIGH|Clerk#000000309|0|fully even deposits. slyly ironic instructions affix across the carefull| +54957|351505|F|79162.54|1993-03-20|1-URGENT|Clerk#000000682|0| cajole blithely ironic packages. idle, regular instruction| +54958|715826|O|176045.34|1996-02-08|5-LOW|Clerk#000002326|0|ironic dependencies promise regular packages. iro| +54959|124582|F|134332.15|1994-02-04|5-LOW|Clerk#000001357|0|oxes after the careful| +54984|593594|O|31052.73|1997-10-24|2-HIGH|Clerk#000003218|0|. blithely special dinos promise quickly abo| +54985|21247|O|248469.10|1996-01-20|3-MEDIUM|Clerk#000000919|0|uctions. fluffily bold accounts are blithely about the regular deposi| +54986|68957|O|69481.55|1997-04-15|2-HIGH|Clerk#000000247|0|uctions sleep fluffily slyly regular accounts. fluffily r| +54987|197896|P|225478.97|1995-05-24|5-LOW|Clerk#000000085|0|jole carefully. regular requests doze furiously final pa| +54988|528133|F|159379.80|1994-12-28|2-HIGH|Clerk#000002285|0|bold courts nod carefully un| +54989|65654|F|113848.81|1994-04-09|3-MEDIUM|Clerk#000004728|0|ly final ideas sleep. blithely silent packages are special r| +54990|184798|F|181647.84|1995-01-04|4-NOT SPECIFIED|Clerk#000001732|0|ages. dolphins about the blithely re| +54991|131890|O|257564.20|1996-08-12|4-NOT SPECIFIED|Clerk#000001642|0|ests. furiously regular warthogs wake blithely accounts. furiously regular r| +55016|416675|O|85922.33|1996-03-15|5-LOW|Clerk#000001833|0|eans. blithely even epitaphs | +55017|293128|F|266232.96|1993-01-01|4-NOT SPECIFIED|Clerk#000001590|0|ests. packages would sleep. slyly ironic pac| +55018|598094|O|71777.16|1997-01-16|5-LOW|Clerk#000003067|0|arefully bold foxes nag carefully against the | +55019|655999|O|186826.32|1997-06-24|1-URGENT|Clerk#000004528|0|ly slyly final accounts. quickly regular theodolites ca| +55020|355049|O|153308.41|1996-06-03|3-MEDIUM|Clerk#000004483|0|fix furiously bold platelets. furiously even patterns cajole carefull| +55021|297278|O|201625.76|1998-04-24|4-NOT SPECIFIED|Clerk#000001117|0| fluffily regular foxes. ironic accounts boost quickly.| +55022|598853|F|38905.16|1995-02-28|5-LOW|Clerk#000000953|0|arefully alongside of the blithely ironic the| +55023|662591|F|161459.34|1995-01-06|5-LOW|Clerk#000001278|0|osits sleep above the furiously silent theodolites. final ideas integ| +55048|155717|F|252427.67|1992-08-28|5-LOW|Clerk#000003171|0|ely pending pinto beans. furiously special pearls a| +55049|381091|F|32296.33|1992-06-17|3-MEDIUM|Clerk#000000475|0|pending requests. ironic accounts try to cajole blithely express excuses. quic| +55050|746044|F|300343.05|1992-01-09|3-MEDIUM|Clerk#000001943|0|al ideas boost carefully according to the carefully| +55051|254404|O|92887.94|1998-04-17|4-NOT SPECIFIED|Clerk#000002984|0|ites wake against the s| +55052|736213|F|206497.23|1992-04-15|4-NOT SPECIFIED|Clerk#000002776|0|he regular, final pinto beans. always regula| +55053|15052|O|129664.05|1997-03-13|4-NOT SPECIFIED|Clerk#000001662|0|theodolites about the slyly even deposits breach blithely | +55054|211021|F|217632.75|1992-12-23|5-LOW|Clerk#000004855|0|d deposits wake furiou| +55055|600920|P|296214.61|1995-05-10|2-HIGH|Clerk#000002622|0|ual pinto beans. even deposit| +55080|155624|O|271902.49|1996-10-04|1-URGENT|Clerk#000001290|0|y pending foxes. special packages use after the ca| +55081|322132|O|37229.41|1998-08-02|5-LOW|Clerk#000000747|0|ly. furiously ironic accounts within the pending, even instruct| +55082|556526|F|285262.78|1995-01-22|5-LOW|Clerk#000000059|0|eposits among the furiously silent accounts sleep carefully furiously f| +55083|274558|O|189185.74|1997-09-14|3-MEDIUM|Clerk#000000485|0| pending, pending pack| +55084|475822|O|70977.74|1995-11-20|1-URGENT|Clerk#000004907|0|ets sleep carefully accounts. blithely special multipliers integrate. special| +55085|627538|O|140952.04|1998-01-20|2-HIGH|Clerk#000004743|0|ole alongside of the slyly regular attainme| +55086|519079|F|211887.20|1993-06-03|5-LOW|Clerk#000002135|0|equests. thinly regular| +55087|130921|P|84415.71|1995-05-23|5-LOW|Clerk#000004758|0|fully slyly regular packages. fur| +55112|636361|O|67591.94|1996-02-08|5-LOW|Clerk#000003332|0| requests after the slyly even instructions sleep across the flu| +55113|313340|F|56686.25|1992-08-09|1-URGENT|Clerk#000003350|0|sheaves nag slyly along the r| +55114|540832|F|136824.59|1994-07-11|2-HIGH|Clerk#000001241|0|ep blithely even accounts. blithely re| +55115|499360|O|28992.08|1998-04-09|4-NOT SPECIFIED|Clerk#000003040|0|ves maintain escapades! carefully pending requests boost furiously. deposit| +55116|240566|O|40182.67|1998-01-25|5-LOW|Clerk#000000392|0|al requests haggle. e| +55117|689608|F|240843.83|1992-01-08|1-URGENT|Clerk#000002692|0|final deposits. slyly stealthy instructions detect about the fluffily re| +55118|488023|O|116994.83|1998-07-19|2-HIGH|Clerk#000004356|0|ular instructions wake carefully among the pending deposits. furiou| +55119|184087|F|123492.74|1992-05-07|3-MEDIUM|Clerk#000004627|0|ly special packages use slyly. quickly regular accounts across the speci| +55144|183325|F|147179.88|1994-11-17|3-MEDIUM|Clerk#000003450|0|y final deposits. regular, regular the| +55145|136291|F|129313.19|1992-04-29|5-LOW|Clerk#000004581|0|ular deposits wake after the carefully express pinto beans. expres| +55146|114101|F|235062.73|1992-04-08|5-LOW|Clerk#000001856|0| excuses against the furiously ironic ideas boost fur| +55147|689786|F|86776.65|1994-09-27|4-NOT SPECIFIED|Clerk#000002820|0|ep quickly platelets. regul| +55148|468038|O|28744.20|1997-10-19|5-LOW|Clerk#000000305|0|re slyly around the special, regular ideas! furiously ruthless foxes wake alo| +55149|301528|O|152508.40|1997-05-15|1-URGENT|Clerk#000000190|0|carefully regular accounts. carefully| +55150|749437|F|137290.69|1994-08-13|4-NOT SPECIFIED|Clerk#000000438|0| courts haggle blithely against the pending fra| +55151|262423|F|64755.84|1994-03-23|5-LOW|Clerk#000000012|0|ckly even dependenc| +55176|514022|F|70457.35|1995-02-03|5-LOW|Clerk#000001357|0| bold, regular pinto beans| +55177|653327|F|124376.73|1993-02-09|5-LOW|Clerk#000003778|0|nstead of the slyly even packages. ironic deposits use fu| +55178|458375|F|59754.20|1992-05-14|5-LOW|Clerk#000000364|0|ests are furiously above the ironic, ironic cou| +55179|654310|O|308740.97|1997-10-03|2-HIGH|Clerk#000002268|0|le dolphins. blithely special deposits eng| +55180|474701|F|260961.61|1992-08-22|3-MEDIUM|Clerk#000000139|0|s the final ideas. carefully ironic depende| +55181|537638|F|244313.93|1992-08-23|4-NOT SPECIFIED|Clerk#000000130|0| slyly carefully final | +55182|66059|F|175522.17|1992-09-22|2-HIGH|Clerk#000003334|0|ar deposits engage deposits. blithely special theodolites kindle furiously| +55183|247654|F|91399.70|1993-02-23|2-HIGH|Clerk#000002227|0|deas across the sometimes i| +55208|559354|F|168215.98|1994-07-14|3-MEDIUM|Clerk#000002137|0|ironic, even deposits. furiously regular | +55209|538547|O|282529.71|1998-02-09|1-URGENT|Clerk#000004000|0|st fluffily furiously | +55210|347630|O|14321.29|1997-12-02|2-HIGH|Clerk#000002423|0|ing ideas haggle. blithely| +55211|111454|F|272895.84|1993-07-03|4-NOT SPECIFIED|Clerk#000002943|0|ghout the platelets.| +55212|432437|O|81923.18|1995-12-05|1-URGENT|Clerk#000002919|0|. furiously ironic packages wake slyly according to the fluffily stealt| +55213|455225|O|188358.82|1997-12-31|4-NOT SPECIFIED|Clerk#000002265|0| final requests according to the quickly regular dept| +55214|203029|O|210032.94|1997-09-10|1-URGENT|Clerk#000001145|0|as would wake quickly. fu| +55215|539959|O|119842.12|1995-12-04|5-LOW|Clerk#000000098|0|arefully ironic pinto bea| +55240|62182|O|246045.45|1996-08-06|4-NOT SPECIFIED|Clerk#000000296|0|x-ray blithely above the carefully special accounts. blithe| +55241|310048|F|59342.14|1992-05-09|4-NOT SPECIFIED|Clerk#000002693|0|nal instructions eat blithely. carefully bold deposits detect slyly blithely | +55242|712831|O|12632.58|1995-08-10|1-URGENT|Clerk#000004267|0|ructions. unusual excuses sleep furiously blithely eve| +55243|37576|F|226215.70|1992-07-29|5-LOW|Clerk#000000421|0|gular ideas are after the care| +55244|35260|F|130522.53|1993-07-31|3-MEDIUM|Clerk#000002710|0|ptotes boost furiously theodolite| +55245|102884|O|204086.00|1998-07-29|1-URGENT|Clerk#000004812|0|old notornis use fluffily a| +55246|415775|F|196993.95|1992-10-06|3-MEDIUM|Clerk#000004997|0|arefully. furiously pending theodolites cajole fluffily fluffil| +55247|167647|F|60907.10|1992-12-02|3-MEDIUM|Clerk#000003862|0| the regular, special packages wake qui| +55272|623941|O|29609.87|1997-07-28|1-URGENT|Clerk#000004708|0| accounts use furiously. furiously express packages are r| +55273|75461|F|80213.57|1995-01-09|2-HIGH|Clerk#000003249|0|ests believe blithely. ironic forges | +55274|6602|F|218083.27|1993-05-30|2-HIGH|Clerk#000000950|0|ly final hockey players around the s| +55275|701663|O|108225.15|1996-11-04|4-NOT SPECIFIED|Clerk#000001917|0| furiously regular requests are alongside of the slyly final packages. careful| +55276|592360|O|189582.60|1997-03-29|5-LOW|Clerk#000004515|0|furiously around the requests. furio| +55277|290674|O|180227.06|1995-12-30|3-MEDIUM|Clerk#000000850|0|efully regular asymptotes| +55278|578807|F|212624.69|1995-02-14|2-HIGH|Clerk#000000541|0| regular dependencies. ironi| +55279|508807|F|247372.03|1992-11-09|3-MEDIUM|Clerk#000004053|0| carefully. regular pearls cajole. foxes nag quickly about the r| +55304|13543|O|129617.12|1997-09-24|4-NOT SPECIFIED|Clerk#000000246|0|e. furiously ironic foxes about the evenly express packages are furious| +55305|346757|O|52659.71|1998-04-24|5-LOW|Clerk#000004939|0|dolites breach according to the furiously final | +55306|433501|O|123488.45|1996-03-19|3-MEDIUM|Clerk#000002140|0|tructions sleep quickly until the| +55307|334970|P|81878.09|1995-04-12|3-MEDIUM|Clerk#000003811|0|s. furiously special requests wake| +55308|337123|O|59900.28|1996-10-24|1-URGENT|Clerk#000000635|0|onic accounts sleep quickly. sl| +55309|501088|O|166131.12|1996-08-21|1-URGENT|Clerk#000001831|0| to are fluffily: quickly pending accounts h| +55310|23704|O|265728.44|1995-07-28|4-NOT SPECIFIED|Clerk#000001702|0|ow slyly carefully even dependencies| +55311|134620|P|175246.71|1995-03-26|2-HIGH|Clerk#000002314|0|slyly express packages. carefully unusual foxes wake slyly| +55336|555136|F|212022.79|1992-08-12|1-URGENT|Clerk#000001219|0|he regular, ironic platelets. special, even ideas hagg| +55337|147877|F|328405.58|1994-11-29|2-HIGH|Clerk#000004874|0|ve to use packages. quickly bold dolphins grow. furiously ironic p| +55338|612196|F|373184.72|1993-01-31|1-URGENT|Clerk#000003304|0|ly according to the blithely final the| +55339|645607|O|187934.12|1998-02-18|3-MEDIUM|Clerk#000004805|0|s packages sleep slyly regular accoun| +55340|456910|O|309182.61|1995-06-24|2-HIGH|Clerk#000001806|0|ncies about the carefully express deposits wake after the re| +55341|9904|O|227836.37|1997-07-30|4-NOT SPECIFIED|Clerk#000004100|0|heodolites. carefully even plat| +55342|705728|F|291301.80|1992-01-30|4-NOT SPECIFIED|Clerk#000001241|0|lithely furiously bold requests! | +55343|661111|O|210035.45|1995-05-21|4-NOT SPECIFIED|Clerk#000003742|0|side of the doggedly ironic requests. blithely final excuses hagg| +55368|32209|F|44886.91|1993-08-23|3-MEDIUM|Clerk#000000956|0|c requests wake. slyly express realms haggle blithely. slyly regular instr| +55369|573562|F|56180.85|1994-02-15|1-URGENT|Clerk#000004518|0|ptotes. final, final ideas after the final pinto bean| +55370|96019|F|135633.18|1994-04-14|4-NOT SPECIFIED|Clerk#000000441|0|ly alongside of the foxes. furiously pending depos| +55371|540578|F|229940.18|1993-09-14|2-HIGH|Clerk#000003254|0|ong the regular theodolites nag furiousl| +55372|733588|O|103206.76|1997-03-10|5-LOW|Clerk#000002914|0|slyly furiously ironic | +55373|154717|O|163242.80|1996-04-21|2-HIGH|Clerk#000000096|0| special asymptotes. quickly ironic accounts sleep quickly after th| +55374|64240|F|182926.95|1993-10-05|2-HIGH|Clerk#000003950|0|ependencies. furiously final requests wake evenly ironicall| +55375|410305|F|172380.46|1993-06-13|5-LOW|Clerk#000000175|0|refully regular foxes. quickly unusual foxes lose along the fi| +55400|485377|F|224618.60|1992-09-03|1-URGENT|Clerk#000003942|0|c foxes haggle along the quietly even packag| +55401|705118|O|176953.03|1997-07-20|1-URGENT|Clerk#000004086|0|foxes cajole across the even acc| +55402|159416|O|50636.72|1996-10-04|1-URGENT|Clerk#000004026|0|ully. pending instructions cajole fluffily| +55403|301591|F|72916.66|1992-05-09|2-HIGH|Clerk#000003859|0|xes haggle up the final theodolites. carefully ironic acc| +55404|334664|F|100646.21|1994-04-08|5-LOW|Clerk#000002841|0|re fluffily fluffily regular dependencies. unu| +55405|436739|F|258095.35|1993-02-13|4-NOT SPECIFIED|Clerk#000003476|0|osits. bold excuses integrate slyly above the ironic gifts. furiously bold | +55406|14813|F|286302.27|1994-03-25|1-URGENT|Clerk#000000329|0|to the carefully bold packages. final excu| +55407|706570|F|204009.61|1993-05-28|4-NOT SPECIFIED|Clerk#000004956|0|usy requests wake furiously carefully pending ideas. even, final accounts | +55432|561817|O|167896.38|1996-01-03|1-URGENT|Clerk#000001099|0| enticingly. blithely pendin| +55433|691964|F|123950.10|1994-01-04|3-MEDIUM|Clerk#000000852|0|ckly ironic requests. slyly final instructio| +55434|322319|F|193705.46|1994-06-29|2-HIGH|Clerk#000003730|0|yly final accounts. blithely even platelets play. quick| +55435|705874|F|246207.71|1992-03-10|3-MEDIUM|Clerk#000003325|0|l cajole furiously daring ideas. quickly regular accounts detect. iro| +55436|93583|F|165346.65|1992-09-01|2-HIGH|Clerk#000002070|0|sits. fluffily bold ideas wake blithely. carefully spe| +55437|68684|O|199074.93|1996-07-23|4-NOT SPECIFIED|Clerk#000004433|0|ly final ideas. bold requests cajole according to the finally re| +55438|107924|O|49144.91|1996-06-28|1-URGENT|Clerk#000001156|0|ial instructions. ironic, e| +55439|370948|F|86869.27|1994-05-02|2-HIGH|Clerk#000002317|0|packages haggle quickly against | +55464|495418|F|120332.83|1992-12-17|2-HIGH|Clerk#000003444|0|e carefully slyly ironic accounts. silent foxes ha| +55465|734015|F|176766.83|1994-10-13|1-URGENT|Clerk#000003619|0|ounts: blithely final instructions haggle. blithely ironic ac| +55466|583138|F|332296.32|1992-04-03|3-MEDIUM|Clerk#000004159|0|xpress instructions. fluf| +55467|523133|O|41225.75|1996-10-30|4-NOT SPECIFIED|Clerk#000003499|0|ts are; express gifts mold slyly about the carefully regular i| +55468|40073|O|34900.12|1998-04-02|3-MEDIUM|Clerk#000004231|0|lets use blithely alongside of the fluffily| +55469|743552|O|191643.26|1997-02-10|4-NOT SPECIFIED|Clerk#000001675|0|y regular foxes wake quickly among the idle, regular packages. ironic| +55470|376561|O|289496.61|1998-07-10|2-HIGH|Clerk#000000512|0|al deposits. even, regular warhorses are furiously special | +55471|355229|F|124799.23|1994-12-10|3-MEDIUM|Clerk#000000273|0|hlessly even accounts are | +55496|320507|F|73151.14|1995-01-24|4-NOT SPECIFIED|Clerk#000002363|0| ideas. slyly ironic packages boost| +55497|252190|F|197213.08|1995-01-30|3-MEDIUM|Clerk#000001656|0|y. quickly final requests alongside of the carefully regu| +55498|303488|F|96023.05|1992-12-11|5-LOW|Clerk#000004502|0|jole. furiously ironic accounts mold slyly furiously ruthless excuses. bold,| +55499|718553|F|233014.82|1995-01-19|1-URGENT|Clerk#000004555|0| bold requests. theodolites haggle slyly. furious| +55500|205313|F|330123.21|1992-11-17|4-NOT SPECIFIED|Clerk#000002457|0|ffily bold foxes. blithely fin| +55501|692734|O|330847.41|1998-07-19|2-HIGH|Clerk#000003397|0|regular, unusual accounts. express deposits | +55502|501589|F|266717.84|1992-04-19|5-LOW|Clerk#000004475|0|ounts haggle slyly express instructi| +55503|190531|F|68140.81|1993-07-31|2-HIGH|Clerk#000000597|0|ggle blithely. silent, final instructions | +55528|475421|F|50352.99|1994-07-02|5-LOW|Clerk#000004998|0|phins serve after the even reques| +55529|643061|O|197888.76|1995-06-20|5-LOW|Clerk#000001096|0|rate fluffily blithely final deposits. care| +55530|409678|F|143993.74|1993-07-06|2-HIGH|Clerk#000001575|0| quick packages! ruthless a| +55531|457450|F|186203.42|1992-12-19|5-LOW|Clerk#000004946|0|riously special pinto beans. ironically fluffy pint| +55532|98269|F|110383.38|1994-02-16|4-NOT SPECIFIED|Clerk#000000834|0|jole quickly to the closely regular accounts. slyly silent instruction| +55533|80671|O|143420.31|1998-02-27|3-MEDIUM|Clerk#000003038|0|lly even ideas cajole. even tithes use quickly ironicall| +55534|585905|F|84710.22|1995-01-07|5-LOW|Clerk#000003738|0|l requests haggle slyly into the slyly ironic pinto beans. furiously e| +55535|539255|O|141333.52|1996-02-03|4-NOT SPECIFIED|Clerk#000003330|0|ts affix slyly slyly regular p| +55560|245240|F|210584.83|1994-02-13|3-MEDIUM|Clerk#000004042|0| final foxes cajole closely. quick, pending | +55561|482185|O|24476.78|1997-02-19|2-HIGH|Clerk#000003135|0|ideas detect carefully along the even, even packages. even foxes wake around | +55562|304112|F|9935.67|1994-03-05|2-HIGH|Clerk#000003676|0|ake blithely carefully final packages. blithely r| +55563|707188|O|69141.25|1996-05-21|1-URGENT|Clerk#000003431|0|lithely regular dolphin| +55564|426698|F|207426.52|1994-08-21|1-URGENT|Clerk#000004589|0| accounts detect against the requests: even accounts along| +55565|4958|O|200895.58|1997-11-11|3-MEDIUM|Clerk#000003658|0|o beans cajole packages. ironic, special instructions | +55566|64288|F|234319.02|1993-02-20|1-URGENT|Clerk#000003595|0| unwind. bold deposits boost slyl| +55567|478024|O|129924.50|1998-03-13|4-NOT SPECIFIED|Clerk#000004618|0|s along the blithely special theodolites nag fluff| +55592|132326|F|353037.00|1993-01-30|1-URGENT|Clerk#000004176|0|osits are sometimes about the fur| +55593|238195|F|249044.00|1993-09-23|1-URGENT|Clerk#000001614|0| deposits along the carefully ironic req| +55594|571825|P|145085.48|1995-06-03|3-MEDIUM|Clerk#000002663|0| quickly unusual plate| +55595|154474|P|267847.06|1995-03-17|5-LOW|Clerk#000003054|0|pinto beans. blithely ironic instructions are blithely f| +55596|487849|F|113169.46|1994-06-10|2-HIGH|Clerk#000000246|0|es are slyly. foxes within | +55597|275854|F|138208.21|1992-11-14|1-URGENT|Clerk#000001008|0|use. blithely regular accounts boost express requests.| +55598|497593|F|110007.98|1994-04-28|2-HIGH|Clerk#000003752|0|ts thrash past the furiously final pinto beans. regular, bo| +55599|543293|F|137080.35|1993-01-14|1-URGENT|Clerk#000003613|0|efully after the blithely regular warh| +55624|612317|F|40837.56|1992-10-25|4-NOT SPECIFIED|Clerk#000002055|0| detect regular, si| +55625|447775|F|116247.93|1993-05-15|1-URGENT|Clerk#000002465|0| fluffily ruthless accounts nod fluffily silent foxes. unusual package| +55626|243415|O|31938.60|1997-05-17|2-HIGH|Clerk#000000759|0|xcuses. blithely regular foxes cajole quickl| +55627|542648|F|185606.47|1993-03-30|2-HIGH|Clerk#000001667|0| final platelets sleep furiously final, bold ac| +55628|274120|O|51818.65|1996-09-22|1-URGENT|Clerk#000003265|0|uests sleep slyly. furiously special pinto beans about the carefully ironic pa| +55629|623968|F|230134.24|1992-06-18|1-URGENT|Clerk#000000918|0|ges are pending packages. enticingly ironic tithes af| +55630|508375|F|269315.17|1994-04-17|2-HIGH|Clerk#000003109|0|ly according to the slyly bold| +55631|236470|O|69282.46|1998-03-29|2-HIGH|Clerk#000001117|0|e carefully express acco| +55656|71159|O|263305.18|1996-05-25|4-NOT SPECIFIED|Clerk#000002844|0|le carefully regular, pending d| +55657|459745|O|275068.05|1997-05-06|5-LOW|Clerk#000002979|0|ve the fluffily final ideas. furiously special reque| +55658|427219|O|199610.89|1998-06-01|5-LOW|Clerk#000001039|0|the pending, pending instructions. ironic| +55659|501460|F|81304.94|1994-04-14|2-HIGH|Clerk#000000076|0|s cajole carefully. quickly even ideas boost furiously carefully even account| +55660|269992|F|69872.50|1993-10-20|5-LOW|Clerk#000002433|0|e quickly final requests sleep quickly even requests. care| +55661|245641|F|170623.04|1993-04-05|1-URGENT|Clerk#000002148|0|gle blithely ironic platelets; carefully regular requests haggle | +55662|457622|F|61815.99|1993-08-09|4-NOT SPECIFIED|Clerk#000002513|0|nts haggle. quickly ironic packages sleep furiously against the slyly idl| +55663|737366|O|231732.54|1996-11-25|5-LOW|Clerk#000002754|0| excuses are. foxes sleep. furiously ironic packages| +55688|656512|F|13102.28|1992-12-16|3-MEDIUM|Clerk#000002909|0|l accounts haggle furiously. slyly ruthless i| +55689|723889|F|54506.39|1992-12-14|1-URGENT|Clerk#000000817|0| daring accounts nag slyly even deposits. ironic r| +55690|641467|F|137283.35|1995-02-26|2-HIGH|Clerk#000001742|0|about the blithely even dependencies affix quickly carefully regular | +55691|621355|F|239764.69|1994-12-03|5-LOW|Clerk#000002668|0|s: regular platelets use about the instructions. carefully p| +55692|101597|O|27489.06|1998-01-06|3-MEDIUM|Clerk#000002046|0|e against the deposits. furiously silent foxes boost slyly along the express,| +55693|538904|F|32324.55|1992-03-14|4-NOT SPECIFIED|Clerk#000000484|0|uses around the quickly pending instructions cajole sometimes afte| +55694|358270|O|139692.12|1997-02-19|3-MEDIUM|Clerk#000001747|0|usly. blithely even accounts promise slyly ironic, final accou| +55695|435440|F|57093.05|1992-07-19|4-NOT SPECIFIED|Clerk#000002240|0|ckly fluffy accounts. carefully permanent theodolites mo| +55720|686476|F|248357.96|1993-08-04|4-NOT SPECIFIED|Clerk#000000676|0|ular pinto beans pr| +55721|318568|F|79819.93|1993-04-22|4-NOT SPECIFIED|Clerk#000001028|0|ven deposits was blithely. slyly final | +55722|642211|F|59724.99|1992-01-08|4-NOT SPECIFIED|Clerk#000003542|0|s around the carefully regular waters nod blithely pending reques| +55723|366619|O|3504.56|1996-07-25|1-URGENT|Clerk#000003952|0|tes. furiously even accounts use. fluffily regular platelets wake blithe| +55724|506866|F|141001.01|1994-11-19|3-MEDIUM|Clerk#000001895|0|. pending dependenci| +55725|394306|O|70774.14|1998-08-02|4-NOT SPECIFIED|Clerk#000003991|0|oost slyly. furiously even accounts | +55726|83569|F|206146.83|1992-05-04|1-URGENT|Clerk#000000468|0| bold excuses. slyly special instr| +55727|529619|F|73498.97|1993-06-03|2-HIGH|Clerk#000004955|0|uriously according to the slyly regular packages. regular forges hagg| +55752|305519|F|198165.77|1992-10-12|3-MEDIUM|Clerk#000000200|0|l pinto beans sleep blithely. flu| +55753|347509|O|267826.48|1997-02-21|5-LOW|Clerk#000003983|0|oxes. carefully regular Tiresias nag furiously. furiously | +55754|305141|F|244272.45|1995-01-09|4-NOT SPECIFIED|Clerk#000000995|0|ross the slyly unusual escapades. furiously ironic dependencies| +55755|746674|O|137948.43|1998-01-08|3-MEDIUM|Clerk#000002442|0|e regular asymptotes. deposits caj| +55756|329464|F|130547.01|1994-08-18|3-MEDIUM|Clerk#000002454|0|ecial ideas. slyly pending foxes are even requ| +55757|29392|O|14153.72|1997-01-09|5-LOW|Clerk#000000188|0| carefully ironic, bold packages. quickly final packages across the| +55758|476849|F|95021.69|1992-11-26|4-NOT SPECIFIED|Clerk#000004394|0|al courts about the slyly special req| +55759|647126|F|214488.54|1994-10-24|1-URGENT|Clerk#000000882|0|sits. quiet, ironic accounts among the enticing dependencies use idly alongsi| +55784|487018|F|297217.11|1995-03-02|5-LOW|Clerk#000001606|0|ly special packages are atop the final| +55785|528824|O|171910.05|1998-06-24|4-NOT SPECIFIED|Clerk#000001461|0|osits wake furiously according to the quickly ironic packages. special requ| +55786|430963|O|165660.36|1995-09-23|2-HIGH|Clerk#000004128|0|ajole carefully. accounts are q| +55787|421741|F|250053.01|1992-03-11|1-URGENT|Clerk#000002632|0|the slyly regular excuses cajole among the quickly even requests. pi| +55788|691792|O|8251.31|1998-07-01|1-URGENT|Clerk#000000863|0|ously regular packages. final ideas affix. ironically | +55789|429053|O|7946.32|1997-10-01|3-MEDIUM|Clerk#000001563|0|rts sleep furiously. plat| +55790|586162|F|223352.71|1993-10-24|1-URGENT|Clerk#000001666|0|es wake after the blithel| +55791|345763|O|361566.27|1998-03-28|2-HIGH|Clerk#000002564|0|edly ironic ideas. quickly express pinto beans alongsid| +55816|235276|F|113468.82|1992-04-04|3-MEDIUM|Clerk#000001669|0|endencies nag furiously against the f| +55817|283255|F|189125.32|1993-09-15|2-HIGH|Clerk#000003840|0|t the pearls; carefully iro| +55818|405767|F|272196.89|1992-08-31|1-URGENT|Clerk#000004618|0| sleep carefully special packages| +55819|709369|O|92681.28|1996-06-01|2-HIGH|Clerk#000004545|0|onic packages according to the carefully| +55820|337471|F|90029.35|1994-01-11|2-HIGH|Clerk#000000705|0|y regular foxes detect carefully about the unusual accounts. furio| +55821|349058|O|293235.54|1997-11-21|5-LOW|Clerk#000000994|0|iously silently ironic accounts. instr| +55822|117649|O|59039.42|1997-08-19|2-HIGH|Clerk#000004771|0|ests sleep ruthlessly express packages. unusual packages x-ray furiously al| +55823|320938|O|345894.41|1998-01-17|3-MEDIUM|Clerk#000001871|0|fluffily pending dependenci| +55848|740149|F|17365.10|1992-07-07|3-MEDIUM|Clerk#000002858|0| attainments. sometimes re| +55849|153221|F|114055.66|1993-12-28|3-MEDIUM|Clerk#000002453|0|requests cajole slyly even accounts. slyly regular asymptotes grow slyly | +55850|426908|F|65870.59|1992-11-28|3-MEDIUM|Clerk#000004360|0|ly thin requests around the regular, special deposits detect | +55851|529706|F|70472.43|1993-03-10|3-MEDIUM|Clerk#000002372|0| use. fluffily sly requests about the b| +55852|257743|O|66537.08|1997-07-31|1-URGENT|Clerk#000004679|0|ts integrate carefully against the carefully express accounts. even courts aft| +55853|624671|O|120195.63|1995-05-28|3-MEDIUM|Clerk#000002580|0| ironic ideas cajole across| +55854|339602|O|102589.05|1998-05-24|3-MEDIUM|Clerk#000003000|0|o the blithely ironic packages use fluffily regular ideas. qui| +55855|186565|F|91457.30|1993-06-03|3-MEDIUM|Clerk#000001070|0|s are slyly among the blithely regular requests. furiously | +55880|587393|O|73632.87|1998-05-19|4-NOT SPECIFIED|Clerk#000004600|0|le. furiously final packages s| +55881|55951|O|90796.20|1998-02-16|1-URGENT|Clerk#000004860|0|ithely even accounts wake furio| +55882|602372|F|215485.59|1992-03-16|3-MEDIUM|Clerk#000002512|0|uriously pending theodolites. bravely final foxes was f| +55883|559381|O|226524.73|1997-04-04|1-URGENT|Clerk#000003754|0|oost around the fluffily | +55884|251426|F|18985.31|1994-07-20|2-HIGH|Clerk#000002963|0| boost furiously fluffily special instructions; excuses boost pack| +55885|202804|O|35146.95|1998-06-19|3-MEDIUM|Clerk#000003998|0|ing, blithe ideas. ironic, ironic excuses doze quickly regu| +55886|504826|O|86402.73|1996-12-28|2-HIGH|Clerk#000004524|0|ave to are slyly ironic instructions. carefully ironic packages c| +55887|606514|O|162371.18|1996-03-16|5-LOW|Clerk#000000982|0| ruthless pinto beans | +55912|424331|F|241900.95|1992-08-20|2-HIGH|Clerk#000003734|0|at after the silent | +55913|715666|O|226311.77|1995-07-30|5-LOW|Clerk#000000034|0|sly even deposits nag.| +55914|423217|O|79533.01|1995-10-13|4-NOT SPECIFIED|Clerk#000003480|0|osits. special, quick accoun| +55915|747563|O|358782.73|1997-07-30|4-NOT SPECIFIED|Clerk#000000959|0|sits. slyly ironic theodolites nag requests. slyly ironic | +55916|277027|F|218964.65|1993-04-27|1-URGENT|Clerk#000002059|0| platelets haggle. blithe| +55917|722122|F|180534.77|1992-02-06|4-NOT SPECIFIED|Clerk#000001117|0|cuses haggle. carefully ironic deposits at the courts detect above t| +55918|192697|O|104596.09|1998-06-01|2-HIGH|Clerk#000003818|0|packages are furiously pains. blithely express accounts c| +55919|137461|O|207556.71|1995-07-03|2-HIGH|Clerk#000000226|0|al excuses are always silent fox| +55944|301832|O|289359.15|1997-08-16|5-LOW|Clerk#000001009|0|fully regular instructions wake special deposits. slyly regu| +55945|631394|F|220983.58|1994-06-02|4-NOT SPECIFIED|Clerk#000004912|0|ng ideas. blithely even pinto beans against t| +55946|75859|O|229159.61|1997-08-14|3-MEDIUM|Clerk#000004660|0|deposits about the | +55947|697327|F|224983.69|1994-06-09|1-URGENT|Clerk#000002240|0|gular sauternes along the furiously| +55948|449059|F|165366.98|1992-05-15|1-URGENT|Clerk#000001275|0|ully bold deposits. carefully special accounts integrate carefully | +55949|54278|O|151467.18|1995-10-12|4-NOT SPECIFIED|Clerk#000003890|0|ake slyly. carefully regular foxes doze unusual orbits. ev| +55950|245203|O|217171.19|1996-05-02|5-LOW|Clerk#000002760|0|sly along the carefully pending acc| +55951|626236|O|139896.45|1997-05-30|2-HIGH|Clerk#000004654|0|es are quickly. care| +55976|372403|F|31922.80|1992-03-20|5-LOW|Clerk#000000906|0|mong the blithely unusual instructions. requests sleep boldly alon| +55977|220721|F|244246.04|1993-10-04|2-HIGH|Clerk#000003647|0|he slyly special platelets. furiously express acco| +55978|148885|O|48036.28|1998-07-14|4-NOT SPECIFIED|Clerk#000004064|0|. instructions cajole against the blithely ironic deposits. fluffily | +55979|284368|O|8679.86|1996-03-18|5-LOW|Clerk#000002291|0|the even, bold excuses. ex| +55980|368246|F|50277.82|1992-01-19|5-LOW|Clerk#000003978|0|s boost above the regular forges. caref| +55981|95659|F|5572.59|1993-07-06|5-LOW|Clerk#000002835|0|. furiously bold requests a| +55982|460487|F|342378.40|1993-02-13|1-URGENT|Clerk#000001794|0|ts cajole. quickly even theodolites are quick| +55983|143269|O|235865.99|1995-12-07|5-LOW|Clerk#000003913|0| carefully express foxes. accounts across the express dependencies b| +56008|409051|F|45403.48|1994-01-09|1-URGENT|Clerk#000001951|0|ggle carefully blithely brave excuses. foxes ab| +56009|389627|F|24156.87|1993-04-13|1-URGENT|Clerk#000001132|0|encies cajole. ironic pack| +56010|194659|F|25042.62|1993-04-25|5-LOW|Clerk#000004674|0|uickly pending forges against the slyly final instructions c| +56011|114895|F|214731.85|1994-02-14|5-LOW|Clerk#000004119|0|ously even foxes are furiously carefully ironic theod| +56012|536509|F|49793.60|1992-10-25|5-LOW|Clerk#000001832|0|cajole slyly along the regular, even ideas. carefully special pac| +56013|579661|F|71030.90|1994-05-02|2-HIGH|Clerk#000004168|0|ely unusual theodolites sleep furiously. packages sleep among the regular ac| +56014|604549|F|57184.71|1992-02-21|2-HIGH|Clerk#000003746|0|e asymptotes cajole blithely after the pinto beans| +56015|377863|O|208353.14|1995-12-31|4-NOT SPECIFIED|Clerk#000004731|0|silent packages. bravely ironic deposits nag| +56040|469045|F|108738.29|1992-08-08|4-NOT SPECIFIED|Clerk#000004186|0|gular requests wake blithely instructions. | +56041|719305|F|33787.13|1994-11-08|1-URGENT|Clerk#000004578|0| platelets are blithely special, express depos| +56042|80722|O|325911.17|1998-05-29|4-NOT SPECIFIED|Clerk#000000254|0|packages. furiously unusual instruct| +56043|689881|F|83850.41|1994-09-17|5-LOW|Clerk#000004334|0|accounts. slyly sly requests in| +56044|567892|F|136246.05|1992-09-18|5-LOW|Clerk#000000615|0|ously. dogged packages haggle blith| +56045|58873|F|26901.67|1994-01-23|2-HIGH|Clerk#000001184|0|uctions. regular theodolites at the furiously ironic foxes thrash carefull| +56046|205991|P|144340.57|1995-04-04|5-LOW|Clerk#000003632|0|r instructions dazzle slyly. even, pending foxes cajole boldly un| +56047|84415|P|227934.62|1995-03-03|2-HIGH|Clerk#000002470|0| express foxes detect furiously blithely final instruc| +56072|493543|F|181381.56|1994-03-18|3-MEDIUM|Clerk#000004797|0|silent accounts wake furio| +56073|711757|O|18076.14|1997-04-26|2-HIGH|Clerk#000004816|0|s integrate furiously about the express, even Tiresias. final accounts wake | +56074|748255|O|50739.69|1997-04-29|5-LOW|Clerk#000000080|0|und the final packages! slyly pending theodolites wake furiously| +56075|661435|F|231427.42|1992-03-20|4-NOT SPECIFIED|Clerk#000001720|0|egular multipliers. slyly final requests wake after the final pinto be| +56076|227038|F|231814.61|1993-07-24|4-NOT SPECIFIED|Clerk#000001448|0| accounts. fluffily even requests across the carefully pending packages i| +56077|557386|O|189119.99|1995-05-29|2-HIGH|Clerk#000001655|0|ording to the final requests. carefull| +56078|485488|F|167582.07|1993-06-30|4-NOT SPECIFIED|Clerk#000000718|0|s are furiously about the slyly final ideas| +56079|313307|O|175191.06|1998-05-08|1-URGENT|Clerk#000002572|0|sly express ideas after the furiously final platelets sleep blithely blit| +56104|748957|F|275872.68|1992-05-20|1-URGENT|Clerk#000000252|0|structions. even instructions haggle slyly. blithely| +56105|467524|O|129430.10|1996-11-30|4-NOT SPECIFIED|Clerk#000004612|0|structions cajole slyly along the fluffily regular requests. furiously iro| +56106|644873|O|16400.76|1997-11-03|4-NOT SPECIFIED|Clerk#000004161|0|arefully final packages. bold platelets| +56107|130424|F|284027.83|1992-04-16|4-NOT SPECIFIED|Clerk#000000299|0|riously regular instructions about the accounts cajole furio| +56108|532807|F|29065.46|1993-11-10|3-MEDIUM|Clerk#000004079|0|osits solve quickly blithely express packages| +56109|606904|O|238238.73|1996-06-06|1-URGENT|Clerk#000000979|0|ns are quickly: blithely regular packages are blithely pending theodo| +56110|205232|F|138080.85|1994-04-08|5-LOW|Clerk#000001159|0|y slyly express theodolites. carefully special instructions | +56111|79888|O|85656.37|1998-04-12|2-HIGH|Clerk#000000124|0|he quickly express pinto beans. idly permanent packages cajole furiousl| +56136|168850|F|243056.08|1992-06-09|5-LOW|Clerk#000004305|0|arefully bold pinto bean| +56137|607750|O|85434.96|1998-04-18|2-HIGH|Clerk#000001535|0|s boost carefully slyly permanent ideas. ir| +56138|184699|F|10399.60|1994-07-12|5-LOW|Clerk#000000952|0|slyly blithely regular depend| +56139|720175|O|128942.74|1996-03-12|5-LOW|Clerk#000004238|0|express, express foxes nag f| +56140|451768|O|34261.00|1996-03-26|1-URGENT|Clerk#000001341|0|e slyly unusual pinto beans. regular,| +56141|593206|O|78874.39|1995-09-23|5-LOW|Clerk#000004561|0|ironic dependencies solve furiously. carefully| +56142|240796|O|31864.22|1997-01-12|2-HIGH|Clerk#000001958|0|dencies. slyly express theodolites integrate fluffily about the regular r| +56143|51041|O|268392.38|1997-01-29|1-URGENT|Clerk#000000231|0|endencies sleep furiously? bold, special ideas above the deposits boos| +56168|588470|O|10743.35|1995-05-28|2-HIGH|Clerk#000000276|0|te according to the fluffily careful dinos. excuses boos| +56169|154991|F|186589.63|1992-02-24|3-MEDIUM|Clerk#000004773|0|ost across the ideas. quickly even accounts use blithel| +56170|175289|O|1497.74|1995-11-21|5-LOW|Clerk#000003947|0|ross the carefully pendi| +56171|81638|F|143204.51|1992-06-12|2-HIGH|Clerk#000001782|0|olphins. carefully bold foxes cajole blithely regular theodol| +56172|339646|F|26480.05|1994-12-18|5-LOW|Clerk#000001733|0|ong the silently final excuses. furiously | +56173|165368|O|21721.19|1998-03-13|5-LOW|Clerk#000003251|0|uests eat fluffily. i| +56174|583532|O|301265.54|1996-10-15|2-HIGH|Clerk#000001612|0|ally ironic instructions. fluffily pending request| +56175|406961|F|194362.96|1993-10-03|5-LOW|Clerk#000000553|0|sts-- blithely pending deposits across the never final | +56200|540632|F|111898.43|1994-08-19|3-MEDIUM|Clerk#000004841|0|ward the deposits haggle blithely according to the requests. ir| +56201|143680|O|198829.69|1996-06-22|5-LOW|Clerk#000000854|0| requests. carefully silent foxes affix slyly. fluffily| +56202|559295|O|162336.72|1995-07-20|3-MEDIUM|Clerk#000002365|0|ong the quickly even theodolites. pending theodolites are along the| +56203|318032|F|37320.36|1995-01-16|5-LOW|Clerk#000002714|0|ecial requests lose alongside of the ironic platelets. expr| +56204|655558|F|229127.26|1993-02-26|1-URGENT|Clerk#000001802|0|inal somas along the excuses haggle carefully regular ideas. b| +56205|456770|O|143913.83|1995-10-09|3-MEDIUM|Clerk#000004034|0|gular accounts. idly special requests haggle slyly quick| +56206|678841|F|129929.47|1993-05-23|2-HIGH|Clerk#000003297|0|y express packages after the fluffily | +56207|254374|F|280095.88|1994-10-25|3-MEDIUM|Clerk#000001216|0|ect ruthlessly. silent | +56232|254908|O|56243.56|1998-07-17|1-URGENT|Clerk#000001128|0|into beans impress quickl| +56233|237041|O|110734.29|1997-08-21|5-LOW|Clerk#000003234|0|al requests impress carefully. regular theodo| +56234|683818|F|359927.34|1993-04-03|3-MEDIUM|Clerk#000002411|0|furiously regular theodol| +56235|649771|F|268438.20|1995-02-11|2-HIGH|Clerk#000000841|0|unusual requests. regular excuses use fluffily among the| +56236|669250|F|172934.30|1993-10-05|3-MEDIUM|Clerk#000002980|0|l packages. blithely pending theodolites after the fi| +56237|324832|F|235683.59|1992-04-09|4-NOT SPECIFIED|Clerk#000001206|0|pinto beans. furiously special foxes across the fluffily unusual accounts wa| +56238|168479|F|106276.19|1992-06-27|3-MEDIUM|Clerk#000001213|0|y. fluffily sly packages sleep. s| +56239|371915|O|258467.35|1997-06-03|3-MEDIUM|Clerk#000002861|0|uriously express theodoli| +56264|275281|O|172069.17|1997-01-13|1-URGENT|Clerk#000003482|0| haggle slyly across the even dependencies. daring, express pa| +56265|617497|F|56122.58|1992-09-06|3-MEDIUM|Clerk#000001785|0|. final, enticing foxes breach. de| +56266|504193|O|25425.68|1998-02-07|2-HIGH|Clerk#000004969|0|cies. regular, even acco| +56267|442726|O|218757.00|1998-03-01|3-MEDIUM|Clerk#000001923|0|y regular, special asym| +56268|137248|F|41632.16|1993-10-13|1-URGENT|Clerk#000000210|0| pending deposits. furi| +56269|456329|P|117190.70|1995-04-14|3-MEDIUM|Clerk#000001928|0|e slyly furious deposits are carefully among t| +56270|20566|F|194566.55|1992-05-19|1-URGENT|Clerk#000004495|0| final packages boost above | +56271|629296|P|238593.32|1995-05-22|2-HIGH|Clerk#000001172|0|es wake according to the unusu| +56296|63532|O|50733.58|1996-03-25|1-URGENT|Clerk#000001113|0|usly above the deposits. pinto beans are. even deposits at the carefully bo| +56297|518477|O|97331.72|1995-11-04|5-LOW|Clerk#000004745|0|ross the furiously ironic epitaphs are furiously across the instruct| +56298|538186|O|184332.49|1997-10-05|3-MEDIUM|Clerk#000003659|0|ccounts wake fluffily; carefully regular requests along the | +56299|286874|F|250650.15|1994-04-03|1-URGENT|Clerk#000000815|0| platelets across the furiously ironic foxes h| +56300|485239|F|49881.24|1993-03-15|4-NOT SPECIFIED|Clerk#000001009|0|ickly ironic packages hang quickly. slyly even realms are furiously | +56301|659719|P|247025.46|1995-03-28|2-HIGH|Clerk#000000216|0|ve the excuses. slyly express excuses nag slyly pending platelets. carefully| +56302|625763|F|49150.77|1993-11-21|5-LOW|Clerk#000004396|0|s Tiresias. carefully even frets cajole furio| +56303|688843|O|148272.54|1997-05-26|3-MEDIUM|Clerk#000003747|0|oxes. packages are furiously theodolites. fl| +56328|358147|O|378011.94|1997-04-02|5-LOW|Clerk#000001402|0|its haggle blithely | +56329|617296|O|64582.96|1998-02-24|1-URGENT|Clerk#000001886|0| after the instructions. furiously regular idea| +56330|115576|F|192649.35|1993-04-07|2-HIGH|Clerk#000002349|0|ly ironic instructions cajole bravely| +56331|717559|F|304424.22|1993-11-22|5-LOW|Clerk#000004143|0|deposits. slyly bold foxes according to the closely even patterns are ca| +56332|739574|O|141217.08|1997-10-26|5-LOW|Clerk#000001468|0| the permanently even instructions will are fluffily accounts. blithely | +56333|259447|F|172217.69|1993-04-25|4-NOT SPECIFIED|Clerk#000001786|0|ss packages. slyly special instructions haggle slyly about the final hock| +56334|25522|O|347409.99|1997-04-10|2-HIGH|Clerk#000002174|0|fluffily unusual foxe| +56335|689815|O|55391.68|1996-05-25|3-MEDIUM|Clerk#000000824|0| express hockey players wake slyly. express grouches use quickly. car| +56360|206110|O|166896.02|1995-11-01|5-LOW|Clerk#000003425|0|cial deposits. furiously regular packages wake quickl| +56361|576841|F|103457.01|1994-04-28|2-HIGH|Clerk#000004599|0|es. furiously regular accounts are carefully. iro| +56362|436342|F|102113.20|1992-10-21|3-MEDIUM|Clerk#000003042|0|r theodolites integrate blithely slyly ironic req| +56363|81274|F|67859.00|1994-04-02|4-NOT SPECIFIED|Clerk#000002536|0|ally pending platelets are furiously bold deposits.| +56364|210865|O|297490.85|1996-04-16|1-URGENT|Clerk#000001257|0|regular foxes cajole fluffily carefully regular accounts. blithely| +56365|245584|F|258807.62|1992-12-12|1-URGENT|Clerk#000002627|0|y unusual theodolites. accounts about the doggedly even foxes are furiou| +56366|278254|F|212427.13|1993-12-24|1-URGENT|Clerk#000002120|0|lyly pending dolphins across the ironic requests integrate blit| +56367|355216|F|65731.92|1992-07-29|4-NOT SPECIFIED|Clerk#000004076|0|ng theodolites doze fluffily. even, unus| +56392|96811|O|186210.79|1998-04-17|2-HIGH|Clerk#000004158|0|ndencies sleep fluffily furiously regular platelets. slyly unusual| +56393|323362|O|120569.84|1996-11-08|5-LOW|Clerk#000000288|0|unts. express, regular dolphins boost furi| +56394|214367|O|62217.19|1995-06-29|3-MEDIUM|Clerk#000003952|0|ntain furiously instructions. fluffily unusual platelets haggle carefully| +56395|601157|F|216416.08|1995-01-14|2-HIGH|Clerk#000003650|0|dependencies cajole| +56396|385750|F|274091.18|1994-02-11|5-LOW|Clerk#000002520|0|y unusual foxes wake fu| +56397|291790|O|224794.76|1998-06-12|1-URGENT|Clerk#000004188|0| pending warhorses haggle alongside of the slyly| +56398|598846|O|108784.89|1996-10-16|5-LOW|Clerk#000001233|0|excuses boost furiously along the fluffily express or| +56399|539761|F|40131.52|1993-11-13|4-NOT SPECIFIED|Clerk#000003538|0|uests above the furiously final platelets are carefully carefully | +56424|485902|O|78172.42|1997-03-09|5-LOW|Clerk#000004192|0|packages use blithe| +56425|533362|F|40885.09|1994-11-03|5-LOW|Clerk#000004749|0|s could haggle blithely| +56426|211549|F|156650.50|1994-11-30|4-NOT SPECIFIED|Clerk#000000558|0|ven requests sleep carefully. slyly pending deposits sleep slyly fina| +56427|488995|O|178850.43|1996-10-07|4-NOT SPECIFIED|Clerk#000002413|0|packages. furiously silent Tiresias | +56428|31264|F|77188.25|1992-01-12|5-LOW|Clerk#000004519|0|p evenly slyly regular requests. foxes sleep blith| +56429|423322|O|58404.08|1997-07-29|1-URGENT|Clerk#000002333|0| requests use blithely-- even requests a| +56430|268721|F|122474.96|1995-03-08|2-HIGH|Clerk#000004154|0|uffily regular ideas are furiously bold acco| +56431|633479|O|247450.31|1996-10-31|1-URGENT|Clerk#000001217|0|tithes. special, even packag| +56456|617969|F|8134.93|1994-02-12|3-MEDIUM|Clerk#000002195|0|its hinder above the quickly even accounts. regular pinto beans use | +56457|198776|F|111143.94|1992-08-17|4-NOT SPECIFIED|Clerk#000002444|0|pinto beans. requests wake regularly. carefull| +56458|326275|O|64162.61|1996-01-16|3-MEDIUM|Clerk#000002924|0|ng the blithely ironic accounts nag furiously ironic, daring deposits. bold pl| +56459|438934|O|197750.99|1998-02-21|3-MEDIUM|Clerk#000003160|0|c accounts about the sometimes unusual accounts| +56460|133834|F|194406.63|1993-05-06|4-NOT SPECIFIED|Clerk#000003536|0|he furiously express excuses unwind slyly after the instructions. r| +56461|73907|O|95232.53|1995-08-20|2-HIGH|Clerk#000000216|0|ely ruthless courts. ir| +56462|139393|O|130164.61|1995-08-15|1-URGENT|Clerk#000002617|0|uffy, regular foxes after the slyly bold ideas wake daringly alongside of | +56463|526913|O|195696.56|1997-07-23|4-NOT SPECIFIED|Clerk#000003385|0| carefully unusual foxes. blithely spe| +56488|567178|O|60849.41|1996-03-26|5-LOW|Clerk#000000996|0|usual requests nag b| +56489|46409|O|48182.06|1997-08-22|5-LOW|Clerk#000002693|0|ites are accounts. packages around the | +56490|735335|O|192720.77|1998-03-02|5-LOW|Clerk#000004016|0|ly ironic packages wake furiously. quickly ironic ideas unwind silently. ideas| +56491|265735|O|230225.18|1996-11-23|1-URGENT|Clerk#000000554|0|he unusual, ironic tithes. even requests haggle carefully blithely permanen| +56492|686233|O|86869.91|1995-06-21|3-MEDIUM|Clerk#000004561|0|foxes cajole carefully. pe| +56493|745687|O|160433.91|1997-04-29|1-URGENT|Clerk#000000715|0|sly pending platelets. pack| +56494|252457|F|245565.04|1993-10-14|2-HIGH|Clerk#000003782|0|nusual foxes about the carefully bold | +56495|267823|F|45952.53|1992-05-14|5-LOW|Clerk#000001074|0|es are enticingly express accounts. ironic, pe| +56520|549625|F|246507.33|1994-07-04|2-HIGH|Clerk#000004045|0|excuses. regular foxes boost slyly against the regularly even asymptotes. r| +56521|543313|O|46930.09|1995-07-07|2-HIGH|Clerk#000001183|0|structions. blithely silent pinto beans wake. blithely ironic requests in| +56522|182947|O|142532.99|1997-04-21|5-LOW|Clerk#000000069|0|ing the regular theodolites are permanently across the bold instructions. q| +56523|537880|F|109090.82|1994-01-15|3-MEDIUM|Clerk#000002071|0|equests. even, bold foxes nag slyly about the iron| +56524|382253|O|117975.00|1998-01-24|2-HIGH|Clerk#000000531|0|thely bold requests. ironic, ex| +56525|21253|O|288470.06|1997-06-08|3-MEDIUM|Clerk#000001929|0|inal dependencies eat slyly. blithely express d| +56526|182302|O|19679.16|1997-04-07|1-URGENT|Clerk#000000495|0|old deposits haggle along the regular braids. silent d| +56527|193913|F|171902.83|1994-09-21|5-LOW|Clerk#000002573|0|ions use carefully af| +56552|332212|O|178820.44|1995-07-09|3-MEDIUM|Clerk#000004206|0| the carefully even theodolites. unusual packages breach furiously. regular,| +56553|466189|O|210893.81|1997-02-01|1-URGENT|Clerk#000001884|0|posits. ideas nag furio| +56554|736313|O|228244.31|1995-07-27|5-LOW|Clerk#000002004|0|egular foxes integrate slyly across the thinly regular accounts. regu| +56555|208306|F|236844.00|1992-08-02|4-NOT SPECIFIED|Clerk#000002431|0| carefully bold pains. furious theod| +56556|740329|P|256665.66|1995-05-17|1-URGENT|Clerk#000004417|0|lar deposits affix regular requests. blithely ironic | +56557|201391|O|273203.14|1996-07-10|1-URGENT|Clerk#000002545|0| regular deposits. idle courts nag quietly slyly final ideas. closely sp| +56558|8291|F|301650.02|1995-02-14|3-MEDIUM|Clerk#000000063|0|e quickly final foxes. furiously express acco| +56559|595864|O|182190.10|1995-12-23|3-MEDIUM|Clerk#000002154|0|lly final pinto beans integrate carefully. slyly express pa| +56584|673886|O|301180.41|1997-10-28|4-NOT SPECIFIED|Clerk#000001021|0|ously furious asymp| +56585|244888|F|26338.51|1992-04-03|1-URGENT|Clerk#000001254|0|l packages. slyly reg| +56586|554479|F|76779.37|1992-07-02|4-NOT SPECIFIED|Clerk#000001733|0|refully bold pinto beans. furiously regular courts a| +56587|353182|F|274912.67|1993-03-17|1-URGENT|Clerk#000000450|0|nusual, special platelets. carefully ironic deposits sleep pending, spe| +56588|413848|O|175925.49|1997-06-29|2-HIGH|Clerk#000003469|0|ess packages. platelets use quickly.| +56589|14141|O|213331.44|1998-02-28|1-URGENT|Clerk#000000424|0|ingly pending packages wake! ironic foxes are blithely near th| +56590|667000|F|15730.03|1994-11-22|3-MEDIUM|Clerk#000002182|0|ke blithely ironic instructions? final, silent braids are furiously. furiousl| +56591|743384|O|390058.12|1996-05-13|5-LOW|Clerk#000002137|0|sts. blithely express pinto beans a| +56616|553375|O|64038.49|1995-06-26|3-MEDIUM|Clerk#000001138|0| affix slyly. dugouts| +56617|557756|O|25264.58|1995-06-26|3-MEDIUM|Clerk#000000369|0|tructions haggle abou| +56618|701645|F|122787.11|1993-08-08|2-HIGH|Clerk#000000633|0|. carefully final pinto beans wake quic| +56619|286727|F|104119.19|1993-10-10|3-MEDIUM|Clerk#000004152|0|iously pending warhorses. ironic, regular packages cajole caref| +56620|259855|O|371856.51|1995-06-12|3-MEDIUM|Clerk#000004613|0|. even, pending foxes maintain. ca| +56621|118666|F|260393.45|1993-07-05|1-URGENT|Clerk#000004960|0|kages around the furiously unusual| +56622|168518|F|8750.52|1993-09-09|1-URGENT|Clerk#000001352|0|l packages use ironically according to | +56623|270580|O|30188.90|1997-05-31|1-URGENT|Clerk#000001257|0|ic deposits cajole furiously. slyly busy excuses use slyly. b| +56648|357352|O|191202.65|1996-01-08|3-MEDIUM|Clerk#000000791|0|jole slyly. ironic theodolites are furiously regu| +56649|8909|F|145001.61|1992-11-27|5-LOW|Clerk#000001421|0|s sleep furiously about the special requests. slyly express theodolites a| +56650|479764|O|99295.52|1998-02-28|4-NOT SPECIFIED|Clerk#000002546|0|ptotes thrash even packa| +56651|123706|O|43217.72|1995-12-03|2-HIGH|Clerk#000002337|0|blithely ironic packages. blithely dogged accounts according | +56652|107789|O|30613.68|1995-08-08|3-MEDIUM|Clerk#000004095|0|ns across the slyly pending pinto beans doze alongside of the idly spec| +56653|346450|F|129205.92|1992-05-07|3-MEDIUM|Clerk#000002322|0|kages! fluffily regular courts are quickly unusual, | +56654|516313|F|331041.40|1994-03-23|2-HIGH|Clerk#000003477|0|ending pinto beans cajole about the blithely pending deposits. slyly pend| +56655|154180|O|92180.47|1995-12-12|5-LOW|Clerk#000003644|0|ully bold somas. unusu| +56680|46460|O|232697.41|1995-09-19|2-HIGH|Clerk#000000630|0|onic accounts are fluffily after the pinto beans? final instruction| +56681|91789|F|214449.06|1994-04-18|2-HIGH|Clerk#000000801|0|ccounts integrate slyly special deposits!| +56682|676082|F|168275.88|1992-01-18|5-LOW|Clerk#000000648|0|equests are about t| +56683|398950|P|166830.80|1995-04-19|1-URGENT|Clerk#000000977|0|nments among the regular, | +56684|132262|O|185320.24|1995-12-17|1-URGENT|Clerk#000000404|0|ong the furiously final foxes. blithely regular requests alongside of| +56685|653590|F|161590.19|1992-01-10|5-LOW|Clerk#000004628|0|es haggle fluffily. blithely even theodolites boost. blith| +56686|354763|O|328689.43|1996-04-12|1-URGENT|Clerk#000001185|0|s. final pearls dazzle slyly bold pack| +56687|724306|F|20860.89|1992-03-02|5-LOW|Clerk#000003924|0|ular deposits grow even, pending deposits. fina| +56712|147292|O|281272.93|1997-11-22|4-NOT SPECIFIED|Clerk#000000169|0| packages nag enticingly pendi| +56713|527407|O|117517.06|1996-04-12|5-LOW|Clerk#000004556|0|lar deposits. fluffily silent theodolites according to the special plat| +56714|617195|F|218090.66|1992-02-19|3-MEDIUM|Clerk#000003171|0| theodolites boost slyly. blithely regular| +56715|685723|O|68741.21|1997-03-15|4-NOT SPECIFIED|Clerk#000004009|0|ully. regular packages are around the bold sheaves! carefu| +56716|413827|O|75528.57|1997-02-03|3-MEDIUM|Clerk#000000026|0|xes. blithely even asymptotes| +56717|424318|F|62650.51|1993-10-21|3-MEDIUM|Clerk#000003313|0|riously. furiously even requests haggle carefully. regular theodolites| +56718|480469|F|122444.12|1992-08-03|1-URGENT|Clerk#000002090|0|its affix slyly at the unusua| +56719|732493|F|19980.82|1992-09-13|5-LOW|Clerk#000003018|0|ending requests across the never even orbits haggle about| +56744|485321|O|296061.27|1997-07-04|2-HIGH|Clerk#000003439|0|pecial asymptotes. furiously specia| +56745|537925|O|189569.06|1997-09-09|2-HIGH|Clerk#000001006|0| slyly quickly even ideas. fluffily ironic packages use after the platel| +56746|384295|O|47914.06|1995-12-19|1-URGENT|Clerk#000002021|0|ly above the pinto beans. re| +56747|585970|F|80946.96|1992-08-04|3-MEDIUM|Clerk#000004831|0|lites believe quickly. quickly express platelets believe iro| +56748|114416|O|43008.73|1996-11-11|1-URGENT|Clerk#000004502|0|y careful excuses ha| +56749|729077|O|190396.89|1995-07-21|3-MEDIUM|Clerk#000004491|0| special dependencies. evenly final packag| +56750|85630|F|81504.67|1994-12-31|5-LOW|Clerk#000001280|0|ly even packages. silently bold theodolites nag special| +56751|668623|F|183959.93|1994-06-09|2-HIGH|Clerk#000000258|0| beans wake regular, final instructions. bold package| +56776|288769|O|277325.25|1998-04-04|1-URGENT|Clerk#000004868|0|ove the fluffily brave forges are furiously slyly final packages. ironic dolp| +56777|78098|O|37607.69|1996-11-13|2-HIGH|Clerk#000001627|0|oxes above the blithely even packages are furiously among the blithely iron| +56778|91438|F|198079.88|1992-11-24|4-NOT SPECIFIED|Clerk#000003572|0|ans use closely. caref| +56779|42781|O|288885.84|1998-05-20|4-NOT SPECIFIED|Clerk#000003219|0|xpress packages. even platelets maintain about the| +56780|510544|O|281662.74|1996-05-29|1-URGENT|Clerk#000001269|0| dazzle quickly final requests. blithely special deposits boost slyly even f| +56781|704618|O|201088.06|1997-11-09|5-LOW|Clerk#000003449|0|accounts according to the furiously un| +56782|7219|O|435869.94|1997-08-20|4-NOT SPECIFIED|Clerk#000002675|0|ckages. special accounts nag slyly around the never unusual courts| +56783|554917|F|159812.26|1994-02-26|1-URGENT|Clerk#000000392|0|ar deposits sleep-- sp| +56808|223087|O|148683.42|1997-05-30|1-URGENT|Clerk#000001778|0|ts cajole fluffily. ironic pinto beans sleep carefully above the| +56809|142034|O|167920.15|1997-09-07|5-LOW|Clerk#000002739|0|efully regular pinto bea| +56810|661525|O|260358.94|1997-08-24|5-LOW|Clerk#000004383|0|eposits sleep. blithely spe| +56811|238628|O|46749.72|1997-12-02|3-MEDIUM|Clerk#000001112|0|fully against the regular foxes. s| +56812|364442|F|160807.53|1994-05-20|4-NOT SPECIFIED|Clerk#000001743|0|al accounts. boldly regular theodolites are. regul| +56813|664120|O|47372.35|1997-01-31|5-LOW|Clerk#000004647|0|egular packages. courts lose ironi| +56814|343775|O|45724.46|1996-12-02|5-LOW|Clerk#000000345|0|ly unusual packages. carefully regular i| +56815|562768|O|124118.99|1996-07-22|2-HIGH|Clerk#000001081|0|ackages haggle according to the bli| +56840|158989|O|29206.19|1997-03-26|2-HIGH|Clerk#000001310|0|eas boost carefully according to the quickly even pinto | +56841|627334|O|183121.46|1995-12-26|4-NOT SPECIFIED|Clerk#000004803|0|phins above the special excus| +56842|70990|O|87078.49|1997-10-29|4-NOT SPECIFIED|Clerk#000000014|0|usual accounts use. evenly special packages lose furiously silent pinto | +56843|600101|F|267767.82|1992-07-22|1-URGENT|Clerk#000004301|0|sits after the ironic i| +56844|643844|F|228850.47|1994-05-16|1-URGENT|Clerk#000001844|0| quietly permanent deposits? regular, r| +56845|84106|O|207146.37|1995-05-28|3-MEDIUM|Clerk#000002178|0|s. carefully bold d| +56846|547552|O|57704.73|1997-01-20|5-LOW|Clerk#000004509|0|ly ironic packages unwind along the carefully express theodolite| +56847|189022|O|359503.54|1998-05-04|1-URGENT|Clerk#000001288|0|lent accounts! quickly regular requests about the regular, final ex| +56872|641107|F|47642.91|1994-01-29|5-LOW|Clerk#000003465|0|onic packages wake slyly. fina| +56873|554987|F|190323.28|1994-08-04|2-HIGH|Clerk#000001825|0|ic, ironic foxes haggle carefully quickl| +56874|662791|F|128167.30|1992-11-04|4-NOT SPECIFIED|Clerk#000002114|0|ccounts. slyly regular accounts affix furiously above the | +56875|497170|O|9880.16|1995-12-28|1-URGENT|Clerk#000004119|0|carefully special p| +56876|176665|O|134360.50|1997-06-25|1-URGENT|Clerk#000003766|0| special foxes. asy| +56877|677146|O|85162.58|1996-08-27|5-LOW|Clerk#000001213|0|lithely bold requests. carefully even theodolites hang regula| +56878|260927|F|50764.62|1992-06-25|5-LOW|Clerk#000001695|0|y along the quietly regul| +56879|142691|O|259587.02|1997-04-19|3-MEDIUM|Clerk#000000421|0|requests. blithely bold warthogs boost fluffily. blithely ironic | +56904|451736|F|45229.16|1992-04-04|3-MEDIUM|Clerk#000000612|0|tegrate. even, special asymptote| +56905|65824|O|3324.78|1996-05-25|4-NOT SPECIFIED|Clerk#000000601|0|ests haggle quickly by the quickly silent courts. carefu| +56906|34058|F|230132.51|1994-05-18|5-LOW|Clerk#000001231|0| even instructions wake carefully. unusual foxes cajole blithely across the ca| +56907|147505|O|343294.98|1996-06-26|3-MEDIUM|Clerk#000004264|0|r packages sleep furiously regular deposits. blithely spec| +56908|334669|O|315983.70|1996-11-28|3-MEDIUM|Clerk#000001438|0|equests use slyly. carefully ironic pint| +56909|501506|F|105194.27|1993-10-08|2-HIGH|Clerk#000004263|0| furiously. furiously blithe a| +56910|305779|O|81742.01|1997-07-16|5-LOW|Clerk#000002446|0| blithely regular deposits. regular requests according | +56911|218414|O|83740.06|1997-10-20|3-MEDIUM|Clerk#000003897|0|lithely ironic instructions breach blithely even instructions. permanent | +56936|370984|O|224016.46|1997-06-05|3-MEDIUM|Clerk#000001587|0|s haggle even deposits. furiously ironic deposits caj| +56937|357238|F|206090.86|1992-09-23|2-HIGH|Clerk#000001711|0|blithely busy theodolites detect furiously around the pend| +56938|319066|F|48428.82|1992-09-07|3-MEDIUM|Clerk#000002286|0|fully express requests sle| +56939|23594|F|187902.99|1992-04-07|5-LOW|Clerk#000004615|0|hins cajole furiously after the furiously slow foxes. fi| +56940|538546|O|182232.91|1997-08-14|3-MEDIUM|Clerk#000003744|0|pending instructions. cour| +56941|336091|O|180769.04|1998-01-20|3-MEDIUM|Clerk#000001006|0|ry to doubt regular, even packages. blithely special theodolites about t| +56942|408985|O|28338.82|1996-10-22|1-URGENT|Clerk#000003388|0| haggle. slyly regular deposits | +56943|42389|F|244441.87|1994-10-24|3-MEDIUM|Clerk#000003128|0|ent, special instructions use. carefully even theodolites use furiously after| +56968|675605|O|27985.68|1997-10-13|1-URGENT|Clerk#000001384|0|ular excuses after the furio| +56969|637738|F|11487.39|1994-01-29|3-MEDIUM|Clerk#000001703|0|nding foxes haggle. bold packages al| +56970|184639|F|146733.45|1992-06-16|2-HIGH|Clerk#000001396|0|as. blithely final pinto beans haggle. s| +56971|444895|F|303743.51|1993-10-24|2-HIGH|Clerk#000000758|0| above the platelets use carefully alongside of the de| +56972|574024|F|58476.76|1992-10-16|1-URGENT|Clerk#000000892|0| packages cajole fluffily unusual, bold patt| +56973|340280|F|206254.24|1994-05-28|1-URGENT|Clerk#000004535|0| sauternes. carefully ironic packages sleep dogged, ironic patter| +56974|332902|F|270647.06|1992-06-21|5-LOW|Clerk#000000292|0|wake bravely silent instructions. slyly final deposits solve | +56975|61447|F|189413.84|1994-08-31|1-URGENT|Clerk#000002179|0|lly bold packages. furiously final pinto beans caj| +57000|723445|F|66524.42|1994-09-08|5-LOW|Clerk#000002797|0|ons x-ray final, spec| +57001|657373|O|58419.24|1995-07-03|3-MEDIUM|Clerk#000000638|0|rash fluffily. slyly final dep| +57002|191069|F|57907.17|1992-11-15|5-LOW|Clerk#000001421|0|ual packages. slyly iro| +57003|544762|F|11370.48|1993-02-08|4-NOT SPECIFIED|Clerk#000004589|0|ly express packages are blithely along the fur| +57004|532525|O|244622.69|1997-03-04|5-LOW|Clerk#000004318|0|xcuses. furiously special instructions slee| +57005|396835|O|38837.62|1996-03-10|5-LOW|Clerk#000001050|0|osits. final, ironic attainments detect carefully slyly even requests. | +57006|600688|F|61868.37|1994-05-01|4-NOT SPECIFIED|Clerk#000002921|0|lyly pending asymptotes affix furiously c| +57007|745984|F|353854.56|1994-07-05|2-HIGH|Clerk#000004397|0|s are. blithely special somas after th| +57032|731794|O|94713.43|1998-03-03|3-MEDIUM|Clerk#000003607|0|old waters. slyly final accounts are along| +57033|745738|F|98746.18|1992-03-16|3-MEDIUM|Clerk#000002311|0|ymptotes. carefully final foxes are. f| +57034|362443|O|220106.83|1997-02-27|3-MEDIUM|Clerk#000004917|0| carefully. blithely | +57035|67483|O|349557.51|1997-06-08|2-HIGH|Clerk#000000838|0|s. even, ironic multiplie| +57036|168145|O|73338.61|1997-01-15|5-LOW|Clerk#000002955|0|ains. slyly regular pinto beans na| +57037|10420|F|155629.49|1994-04-28|4-NOT SPECIFIED|Clerk#000003914|0| ruthless packages along the regularly ironic pac| +57038|378488|F|49697.72|1992-06-15|3-MEDIUM|Clerk#000000240|0|ong the blithely even foxes| +57039|484891|F|39482.33|1994-12-20|5-LOW|Clerk#000004705|0|st the furiously even theodolites haggle slyly after the quickly ironic| +57064|47578|F|214462.16|1992-02-06|4-NOT SPECIFIED|Clerk#000002212|0|p daring, bold accounts. unusual pinto beans solve fu| +57065|132652|O|141738.11|1996-10-16|2-HIGH|Clerk#000002249|0|ly regular packages. furi| +57066|479089|O|72485.01|1997-04-12|5-LOW|Clerk#000003939|0| unusual requests against the c| +57067|37072|F|194199.07|1992-09-19|1-URGENT|Clerk#000001967|0|le alongside of the carefully special instructions. carefully ev| +57068|536869|O|63959.35|1997-08-08|3-MEDIUM|Clerk#000001763|0|uriously quickly ironic pint| +57069|625255|O|15349.53|1996-01-10|1-URGENT|Clerk#000001412|0| wake above the carefully sly ex| +57070|409181|F|128880.62|1992-01-06|5-LOW|Clerk#000000466|0|y. even, silent pinto beans haggle against the quickly special deposits. c| +57071|354170|O|179610.94|1997-01-08|2-HIGH|Clerk#000001963|0|ts. even ideas boost busily across | +57096|528538|F|98767.39|1993-01-21|2-HIGH|Clerk#000001561|0|arefully bold sauternes: quickly special packages around the slyly pending| +57097|130160|O|91830.76|1996-04-17|3-MEDIUM|Clerk#000002603|0| the slyly bold pinto beans. r| +57098|583849|F|39237.34|1992-12-17|5-LOW|Clerk#000000744|0|ke quickly. theodolites grow care| +57099|497584|O|245155.66|1996-08-19|2-HIGH|Clerk#000004142|0|ts. requests use theodolites. slyly special reque| +57100|381692|F|73945.35|1994-08-29|4-NOT SPECIFIED|Clerk#000002093|0| escapades. carefully bold instructions haggle sly| +57101|337183|F|209035.19|1994-07-17|4-NOT SPECIFIED|Clerk#000002820|0|tterns whithout the thin, final requests haggle carefully alongside of | +57102|20182|F|156943.09|1992-06-11|5-LOW|Clerk#000002577|0|ggle. carefully bold deposits are busily across the fur| +57103|170827|O|132110.46|1996-05-09|2-HIGH|Clerk#000002694|0|sleep blithely. quickly ironic packages| +57128|81538|O|268576.58|1995-09-08|5-LOW|Clerk#000004203|0|urts. dolphins grow quickly quic| +57129|150101|O|137482.62|1996-07-17|1-URGENT|Clerk#000002508|0|eans boost. even theodolites across the quietly regular pack| +57130|484970|F|284944.95|1993-05-06|4-NOT SPECIFIED|Clerk#000000337|0| daring packages. furio| +57131|639985|O|110074.41|1996-08-08|5-LOW|Clerk#000000554|0|uctions will sleep furiously about the unusual accounts. even, re| +57132|454457|O|156253.71|1995-07-06|2-HIGH|Clerk#000002963|0|ular accounts haggle blithely about the slyly close foxes. blithely pending d| +57133|48571|O|16454.07|1997-05-23|4-NOT SPECIFIED|Clerk#000003971|0|quickly special requests wake bravely around the even instructions. bli| +57134|312974|O|121958.43|1997-12-28|5-LOW|Clerk#000001376|0|ffily pending requests. blithely special instructions haggle ca| +57135|388114|F|227658.79|1992-02-09|4-NOT SPECIFIED|Clerk#000002922|0|, bold deposits nod. closely unusual packages are quickly. bol| +57160|271252|O|267148.45|1996-08-11|1-URGENT|Clerk#000003685|0|kages haggle slyly against the requests. carefully ironic| +57161|416411|O|71214.12|1997-01-13|2-HIGH|Clerk#000004651|0|wly even accounts wake bravely. carefully | +57162|356434|F|24250.08|1993-04-27|5-LOW|Clerk#000004165|0|ts wake-- silent requests was carefully. furiously ironic ideas | +57163|325606|F|26417.87|1994-08-03|3-MEDIUM|Clerk#000003891|0|ans? furiously final packages are furiously agai| +57164|427096|P|99719.23|1995-03-17|2-HIGH|Clerk#000003370|0|en instructions. quietly ironic Tiresias haggle against the u| +57165|702439|F|229415.76|1994-08-22|4-NOT SPECIFIED|Clerk#000000941|0|stealthy theodolites. pl| +57166|111679|F|95009.31|1992-02-26|3-MEDIUM|Clerk#000003801|0|ld accounts use? fluffily regular depos| +57167|466237|O|185845.43|1997-07-06|1-URGENT|Clerk#000004062|0|orbits are. even, ironic accoun| +57192|16583|O|232616.62|1998-06-24|2-HIGH|Clerk#000001620|0|thely express packages among the pending requests sleep around the sp| +57193|446939|O|123161.16|1996-03-12|3-MEDIUM|Clerk#000002236|0|ound the slyly even theodolites. blithely ironic | +57194|451939|O|39429.55|1998-05-13|4-NOT SPECIFIED|Clerk#000000559|0|carefully beneath the regular accounts. sometimes pending dinos nag acro| +57195|472918|F|191407.59|1994-02-21|4-NOT SPECIFIED|Clerk#000003064|0|leep bravely around the blithely regular packages. ironic acco| +57196|569944|O|194295.39|1996-08-02|4-NOT SPECIFIED|Clerk#000001458|0|ng deposits. carefully| +57197|29344|O|229877.67|1998-01-18|5-LOW|Clerk#000001781|0|rts haggle. blithely unusual packages unw| +57198|404512|O|164332.73|1998-03-02|5-LOW|Clerk#000001240|0|heodolites cajole along the slyly unusual requests. express, specia| +57199|609997|F|88659.31|1994-12-01|4-NOT SPECIFIED|Clerk#000003787|0| daring platelets. fluffily special ideas integrate furiously. slyly even| +57224|457900|F|329785.31|1992-08-25|2-HIGH|Clerk#000000634|0|mise fluffily about the regular ideas. furiously fi| +57225|148175|O|77265.62|1996-09-13|1-URGENT|Clerk#000000408|0|ites after the ironic, regular accounts do| +57226|362218|F|156678.56|1994-08-28|2-HIGH|Clerk#000003132|0|g to the stealthy hockey players. fluffily final dolphins haggle sl| +57227|27896|O|21402.77|1996-04-14|2-HIGH|Clerk#000003267|0|ctions. quickly final theo| +57228|84593|O|230815.41|1997-06-22|1-URGENT|Clerk#000003625|0| deposits nod carefully. furious| +57229|496375|O|199291.50|1995-06-08|2-HIGH|Clerk#000002790|0| nag blithely about the final, special depend| +57230|294734|F|50562.43|1994-07-12|4-NOT SPECIFIED|Clerk#000001524|0|thely above the careful| +57231|592781|O|175979.55|1998-08-02|4-NOT SPECIFIED|Clerk#000002094|0|y pending foxes above the slyly even packages are carefully slyly regular id| +57256|617365|O|106940.97|1997-12-03|3-MEDIUM|Clerk#000004200|0|accounts boost carefully about the even, even ideas. even pinto beans above | +57257|526648|O|23417.43|1995-06-18|3-MEDIUM|Clerk#000003014|0|rate even somas. excuses cajole blithely regular theodol| +57258|591697|O|267756.37|1996-05-24|5-LOW|Clerk#000004073|0|the finally express packages; requests sle| +57259|372641|F|69309.42|1994-12-07|2-HIGH|Clerk#000003064|0| quickly among the pending excuses. regula| +57260|476456|O|167118.55|1996-01-21|4-NOT SPECIFIED|Clerk#000001060|0| packages sleep furi| +57261|43069|O|282446.24|1995-10-27|2-HIGH|Clerk#000000018|0|ular, pending depos| +57262|106204|O|129658.77|1996-04-01|4-NOT SPECIFIED|Clerk#000000231|0|counts. carefully pending packages al| +57263|701342|F|346926.37|1995-01-26|1-URGENT|Clerk#000003929|0|osits affix above the blithely final deposits. final instructions across the | +57288|453331|O|15380.96|1996-12-17|5-LOW|Clerk#000003419|0|hely final theodolites cajole furiou| +57289|605509|O|129681.80|1997-03-18|1-URGENT|Clerk#000000138|0|bold requests haggle alongside of th| +57290|27485|F|45728.23|1993-10-06|4-NOT SPECIFIED|Clerk#000004420|0|usly pending deposits. slyly unusual instructions a| +57291|682193|F|187230.31|1993-11-08|2-HIGH|Clerk#000000210|0|efully: furiously pending deposi| +57292|362192|F|7892.10|1992-03-22|3-MEDIUM|Clerk#000002023|0|uffily special requests. furiously regular deposits sh| +57293|353470|O|186122.97|1997-02-15|1-URGENT|Clerk#000000135|0|o the slyly even pains cajole carefully a| +57294|7459|F|283611.30|1993-01-09|3-MEDIUM|Clerk#000003747|0|silent requests nag about the quickly regular ideas. pending, special pla| +57295|80851|O|100555.63|1998-05-10|5-LOW|Clerk#000002905|0|inal theodolites. slyly regular | +57320|583418|O|65217.73|1995-08-17|1-URGENT|Clerk#000004486|0|lyly even packages. ironic foxes cajole furiously. pe| +57321|742306|F|110381.94|1994-02-25|3-MEDIUM|Clerk#000000335|0|uses alongside of the pending| +57322|405950|F|216688.85|1994-10-14|3-MEDIUM|Clerk#000004677|0|oss the furiously bold packages. fluffily final foxes eat beside the slyly| +57323|35348|F|4008.09|1994-01-10|3-MEDIUM|Clerk#000000739|0| regular frets. special, sp| +57324|88384|O|336792.77|1997-02-01|3-MEDIUM|Clerk#000003632|0|ests. regular dependencies use among the blithely even requests| +57325|458729|F|16637.51|1993-11-18|5-LOW|Clerk#000002169|0|ong the instructions. furiously fin| +57326|597037|F|61648.48|1994-02-20|5-LOW|Clerk#000002280|0|y ironic realms. dogge| +57327|129532|F|214515.41|1994-09-16|2-HIGH|Clerk#000001998|0|accounts. carefully fina| +57352|526492|F|173251.79|1992-07-31|4-NOT SPECIFIED|Clerk#000004466|0|e daringly across the bold requests| +57353|242881|O|59261.43|1996-11-07|4-NOT SPECIFIED|Clerk#000000479|0|bold requests are sometimes final ideas. quickly special t| +57354|599134|F|217528.28|1992-05-18|1-URGENT|Clerk#000002107|0|old deposits cajole blithely blithely express theodolites. carefully un| +57355|117676|O|36167.82|1997-07-07|3-MEDIUM|Clerk#000002631|0|haggle furiously. express excuses use furious| +57356|3575|O|322158.51|1997-08-08|4-NOT SPECIFIED|Clerk#000000462|0|ld excuses sleep slyly above the warhorses. reque| +57357|83308|O|2069.75|1995-08-27|4-NOT SPECIFIED|Clerk#000004927|0|kly even notornis sleep carefully alongside of the fluffily regular asy| +57358|637630|F|150923.77|1995-02-25|1-URGENT|Clerk#000003733|0| pinto beans. even, careful pinto beans cajole. ironi| +57359|626875|F|138664.25|1995-01-30|1-URGENT|Clerk#000002902|0|ross the quickly regular attainments wake furiously quiet accounts.| +57384|636206|O|254998.16|1996-01-09|2-HIGH|Clerk#000000661|0|s ought to wake at the fluffily final pi| +57385|712084|O|234378.33|1995-11-22|4-NOT SPECIFIED|Clerk#000000005|0|nusual deposits above the blithely unusual dep| +57386|227533|F|202240.02|1994-12-03|1-URGENT|Clerk#000002870|0|ily final packages wake furiously final deposits. carefully bold fox| +57387|641719|F|270739.12|1992-11-29|4-NOT SPECIFIED|Clerk#000000612|0|e blithely across the careful, quick platelets. dep| +57388|352231|O|263774.88|1996-09-08|3-MEDIUM|Clerk#000002273|0|re about the unusual re| +57389|193334|F|365143.47|1994-10-29|2-HIGH|Clerk#000000579|0|the blithely special accounts mold | +57390|359044|P|207208.84|1995-04-23|5-LOW|Clerk#000000208|0| integrate fluffily| +57391|679712|O|245768.77|1997-01-25|5-LOW|Clerk#000003364|0|thely along the care| +57416|658231|F|64793.19|1994-12-21|2-HIGH|Clerk#000002701|0| express accounts alongside of the careful| +57417|380410|F|91569.48|1992-11-03|4-NOT SPECIFIED|Clerk#000004725|0|y idle dependencies doze fluffily instructions.| +57418|535258|F|163318.71|1992-04-09|3-MEDIUM|Clerk#000004881|0|inal requests breach instructions-- finally silent p| +57419|566665|F|178546.89|1992-03-26|5-LOW|Clerk#000001846|0|e carefully express accounts. stealthily regular asymptotes snooze quickl| +57420|408892|F|65920.06|1994-10-25|3-MEDIUM|Clerk#000003363|0|ar instructions cajole furiously. carefully unusual theodolites haggle. requ| +57421|726215|F|54696.09|1995-01-05|1-URGENT|Clerk#000003704|0| of the brave, special foxes detect blithely blithely q| +57422|741131|O|84669.65|1997-11-19|2-HIGH|Clerk#000003511|0|he sometimes ironic instructions. regular deposits sleep blithely bol| +57423|178687|O|185890.91|1997-03-14|1-URGENT|Clerk#000000573|0|eside the furiously| +57448|163489|F|161117.74|1992-06-18|2-HIGH|Clerk#000004825|0|furiously unusual foxes across the blithely regular depend| +57449|479179|F|241678.89|1992-08-28|1-URGENT|Clerk#000004178|0|y slyly bold foxes; quickly sp| +57450|56452|F|92383.11|1993-02-23|1-URGENT|Clerk#000004826|0|ding to the bold accounts haggle blithely against | +57451|6907|O|52159.84|1997-04-19|1-URGENT|Clerk#000004297|0|usly bold foxes along the c| +57452|570085|F|253983.95|1994-08-29|5-LOW|Clerk#000003447|0|s. finally ironic accounts cajole| +57453|161194|F|205600.03|1992-09-02|4-NOT SPECIFIED|Clerk#000002203|0|yly pending, regular foxes. carefully| +57454|154573|O|104251.22|1998-05-30|2-HIGH|Clerk#000001414|0| furiously among the special, ironic requests. furiousl| +57455|639136|F|151711.63|1994-10-25|4-NOT SPECIFIED|Clerk#000001552|0|sts wake across the i| +57480|433774|F|288295.20|1993-04-14|1-URGENT|Clerk#000004400|0|s use alongside of the | +57481|414523|O|7183.37|1996-01-31|2-HIGH|Clerk#000002122|0|y regular accounts sleep furiously slow dependencies. regular instru| +57482|134627|O|163533.80|1998-05-29|4-NOT SPECIFIED|Clerk#000003633|0|excuses use regular pearls. ruthlessly even foxes sleep quickly at | +57483|671738|F|126728.08|1993-07-14|1-URGENT|Clerk#000004547|0|ual, fluffy courts detect slyly. unusua| +57484|146498|O|60647.52|1995-11-18|2-HIGH|Clerk#000003936|0|ffily ironic pinto b| +57485|686989|O|187806.73|1997-12-05|4-NOT SPECIFIED|Clerk#000003073|0| the unusual ideas. slyly express fret| +57486|709261|O|68370.88|1996-08-06|2-HIGH|Clerk#000000081|0|ng ideas among the | +57487|22787|F|150691.39|1993-05-13|2-HIGH|Clerk#000004504|0|ests. blithely special requests promise quickly. iron| +57512|478082|O|321991.27|1996-04-20|4-NOT SPECIFIED|Clerk#000003203|0| carefully along the express decoys. bold accounts nag carefully carefu| +57513|361705|F|1035.13|1992-10-13|5-LOW|Clerk#000002537|0|sleep carefully busy requests. daring requests sleep carefully. blith| +57514|396811|F|222997.51|1994-11-16|1-URGENT|Clerk#000001741|0|gside of the furiously specia| +57515|199535|F|329589.78|1994-02-22|1-URGENT|Clerk#000000537|0|g pinto beans are carefully.| +57516|329345|F|131263.79|1994-11-14|5-LOW|Clerk#000000804|0|sual ideas: slyly special requests wake. furiousl| +57517|297596|O|171637.52|1998-02-15|2-HIGH|Clerk#000002310|0|ithely ironic requests lose blithely quickly busy packages. bold pac| +57518|695251|O|157848.53|1995-08-26|1-URGENT|Clerk#000000491|0|ag across the express, ironic frets. bold deposits cajole fluffily.| +57519|78538|F|48468.09|1993-08-20|2-HIGH|Clerk#000003374|0|among the quickly r| +57544|735949|F|177035.05|1993-06-02|5-LOW|Clerk#000000079|0|uests cajole fluffily against the pending accounts? slyly pending dependencies| +57545|75775|O|298454.65|1996-09-16|2-HIGH|Clerk#000003732|0|lites. express requests haggle a| +57546|31060|F|42689.97|1994-02-24|4-NOT SPECIFIED|Clerk#000001684|0|e slyly pending deposits? braids are furiously along the accounts. slyly u| +57547|22262|F|65906.00|1994-03-27|3-MEDIUM|Clerk#000001368|0|quests cajole carefully above the deposits. unusua| +57548|648470|O|105190.54|1995-10-25|5-LOW|Clerk#000001670|0|es kindle busily alongside of the p| +57549|573343|F|180175.15|1993-03-29|4-NOT SPECIFIED|Clerk#000000651|0|s? even excuses are furiously. final ideas detect about th| +57550|167377|O|213302.58|1996-03-05|5-LOW|Clerk#000000045|0|y ironic pinto beans cajole fluffily silent, express instructions. accounts w| +57551|603826|F|166417.91|1994-11-06|1-URGENT|Clerk#000004459|0|es detect quickly alongside of the furiously ironic foxes| +57576|241687|O|68134.99|1997-02-07|4-NOT SPECIFIED|Clerk#000002532|0|fluffily final deposits wake carefully furiously final requests. quickly fin| +57577|30571|O|111589.93|1996-01-16|5-LOW|Clerk#000000706|0|en accounts sleep bravely along the ironic instructions. special,| +57578|47296|F|165381.09|1994-05-31|1-URGENT|Clerk#000000085|0|iously final pinto beans cajole furiously ironic theodol| +57579|640777|O|192973.78|1996-04-04|3-MEDIUM|Clerk#000002925|0|its. carefully express accounts wake fluffily express pinto beans. blithely re| +57580|272089|O|213255.08|1996-10-06|4-NOT SPECIFIED|Clerk#000003600|0|s. bold, pending decoys about the quickly re| +57581|234235|F|84358.34|1992-02-02|3-MEDIUM|Clerk#000001245|0|t the express accounts. expres| +57582|31012|F|108830.63|1994-07-13|5-LOW|Clerk#000003583|0|special theodolites a| +57583|714001|F|227335.21|1992-05-16|4-NOT SPECIFIED|Clerk#000003219|0|ound the even deposits boost iron| +57608|182053|F|205371.49|1993-08-09|2-HIGH|Clerk#000002598|0|y silent courts above the furiously pending requests breach bl| +57609|500398|F|261267.83|1993-05-05|5-LOW|Clerk#000004200|0|ole carefully after the quickly ironic instructions. fluffily pending orbit| +57610|418991|F|76465.12|1995-02-10|4-NOT SPECIFIED|Clerk#000000113|0|ong the requests. silent asymptotes p| +57611|216958|O|161612.64|1997-11-29|5-LOW|Clerk#000000360|0|ven instructions aft| +57612|645940|F|161155.54|1993-06-02|1-URGENT|Clerk#000001935|0|lyly; blithely enticing accounts detect across the depende| +57613|33115|F|285660.32|1993-03-24|1-URGENT|Clerk#000004165|0|nal pinto beans are blithely packages. blithely special asymptotes boost caref| +57614|52810|O|65843.09|1997-03-05|1-URGENT|Clerk#000001164|0|ckages. ironic pinto beans sleep carefully even theodolites. ca| +57615|313936|F|125424.10|1993-01-04|2-HIGH|Clerk#000003743|0|ial excuses haggle carefully slyly even instr| +57640|64280|O|86835.42|1998-04-29|2-HIGH|Clerk#000001918|0|ans believe quickly regu| +57641|344809|O|249513.21|1998-03-20|4-NOT SPECIFIED|Clerk#000002699|0|carefully brave rea| +57642|694750|F|169764.31|1993-06-10|1-URGENT|Clerk#000003624|0|eposits before the carefully ironic theodolites sleep blithely across the sly | +57643|641104|O|229750.11|1997-12-08|3-MEDIUM|Clerk#000002594|0|lithely busy deposits lose slyly at t| +57644|523267|O|172373.39|1995-09-30|2-HIGH|Clerk#000001028|0|ic ideas sleep blithely furiously express accounts. slyl| +57645|40135|F|45428.08|1992-08-31|5-LOW|Clerk#000001002|0|olphins breach fluffily unusual theodolites. blithely even requests | +57646|278800|F|241923.75|1994-12-23|1-URGENT|Clerk#000002309|0|lly. quickly regular f| +57647|517679|O|202546.77|1998-07-14|5-LOW|Clerk#000002855|0|eep slyly after the carefully special requests. | +57672|621532|O|262915.73|1997-06-01|3-MEDIUM|Clerk#000002850|0|thely final ideas wake carefully ironic deposits.| +57673|69346|F|245270.48|1995-01-29|3-MEDIUM|Clerk#000001844|0| regular gifts. furiously bold co| +57674|720862|O|283846.28|1996-05-03|5-LOW|Clerk#000003320|0|he furiously express requests affix slyly even sheaves. carefully brav| +57675|13039|F|255837.70|1994-02-08|4-NOT SPECIFIED|Clerk#000003281|0|regular accounts? furiously ironic requests should haggl| +57676|127490|O|79097.43|1998-06-02|2-HIGH|Clerk#000003805|0|ording to the sly acc| +57677|723751|O|48908.44|1996-12-24|3-MEDIUM|Clerk#000000725|0|refully quickly regular deposits.| +57678|563584|F|77177.95|1992-05-30|2-HIGH|Clerk#000000903|0| dolphins dazzle according to the furiously fluffy platelets-- even package| +57679|390112|F|38269.58|1992-10-19|3-MEDIUM|Clerk#000003359|0|uriously across the theodolites. furiously express platelets about the final | +57704|98959|F|60718.13|1994-02-27|3-MEDIUM|Clerk#000004187|0|ress, pending packages? bold r| +57705|435016|O|76525.43|1996-06-25|5-LOW|Clerk#000004520|0|y. slyly stealthy dependencies cajole slyly across the fluffily si| +57706|288407|F|280191.11|1993-04-15|2-HIGH|Clerk#000001541|0| integrate bold theodolites. bold deposits are fluffily deposits. final | +57707|746101|O|246935.33|1995-08-13|5-LOW|Clerk#000002237|0|cording to the dependencies. furiously| +57708|438784|F|364552.47|1993-12-12|1-URGENT|Clerk#000003154|0|ccording to the unusual, special| +57709|618317|O|228733.47|1996-02-17|3-MEDIUM|Clerk#000002730|0|slyly! packages accordin| +57710|39962|F|169319.31|1993-04-02|5-LOW|Clerk#000004416|0| requests according to the furiously brave waters hagg| +57711|376957|O|265482.19|1996-09-03|3-MEDIUM|Clerk#000004816|0|ic packages. blithely ironic packages nag blithely blith| +57736|265436|F|237854.27|1992-10-13|5-LOW|Clerk#000004920|0|posits. blithely thin foxes pr| +57737|169181|O|355849.19|1998-01-29|2-HIGH|Clerk#000004118|0|es wake. special depend| +57738|170056|F|167888.22|1992-11-23|4-NOT SPECIFIED|Clerk#000001083|0|rses cajole unusual, pending requests. ironic asymptotes are after the slyl| +57739|616492|O|94962.05|1997-03-28|5-LOW|Clerk#000001969|0| to the express, regular accounts | +57740|123331|F|90098.81|1992-10-12|4-NOT SPECIFIED|Clerk#000003589|0|ial accounts sleep into the regular | +57741|542302|O|172231.81|1998-05-28|3-MEDIUM|Clerk#000001539|0|eodolites. even packages detect fluffily. b| +57742|461192|F|112663.24|1992-10-24|1-URGENT|Clerk#000000618|0|efully ironic pinto beans are blithely. blith| +57743|740468|O|314012.25|1998-03-22|2-HIGH|Clerk#000001258|0|courts haggle slyly bold sentiments; regular t| +57768|294887|O|34299.27|1997-04-07|4-NOT SPECIFIED|Clerk#000001212|0|totes. slyly regular foxes according to the regular orbits cajole furiously| +57769|157423|F|229082.66|1993-07-30|3-MEDIUM|Clerk#000004660|0|st carefully: instructions about the bold theodolites boost bl| +57770|531121|O|218118.90|1996-03-03|4-NOT SPECIFIED|Clerk#000001500|0| unusual accounts. final frays play car| +57771|34789|F|150958.64|1995-01-27|2-HIGH|Clerk#000000542|0|s are slyly. bold requests wake blithely slyly | +57772|435389|O|189183.91|1997-10-11|3-MEDIUM|Clerk#000003945|0|pendencies might nag. carefully regular asy| +57773|567395|F|314497.35|1995-02-01|5-LOW|Clerk#000003114|0|usly carefully even pinto beans. daringly express requests haggle. even, expr| +57774|704882|F|248937.85|1992-02-18|5-LOW|Clerk#000004188|0|mptotes. slyly regular ideas doubt furiously. express, fur| +57775|699208|F|117910.73|1994-01-12|5-LOW|Clerk#000001386|0|y enticing theodolites. silent ac| +57800|562720|F|37667.12|1994-10-10|5-LOW|Clerk#000004009|0|ven deposits sleep furious| +57801|118988|O|57062.61|1998-04-24|2-HIGH|Clerk#000004132|0| of the carefully bold| +57802|321460|F|135130.00|1992-06-25|3-MEDIUM|Clerk#000000739|0|the quickly express requests cajole according to the ironic deposi| +57803|514162|F|246620.19|1993-07-29|1-URGENT|Clerk#000003147|0| final requests. regular multipliers amo| +57804|747136|F|33837.76|1992-10-27|4-NOT SPECIFIED|Clerk#000000154|0|ns. furiously ironic deposits among the fluffily bold theodolites wake re| +57805|586133|F|226088.42|1993-12-29|1-URGENT|Clerk#000003453|0|f the regular requests wake according to the carefully e| +57806|624878|O|87574.88|1995-12-31|5-LOW|Clerk#000001535|0|ely final frets nag carefully slyly even deposits. blithely express inst| +57807|66946|O|119629.99|1998-05-09|2-HIGH|Clerk#000000209|0|lites haggle furiously unusual platel| +57832|155638|O|66236.74|1998-05-25|1-URGENT|Clerk#000004963|0|ously close pinto beans are. carefully u| +57833|532604|F|206916.63|1992-05-05|2-HIGH|Clerk#000003716|0|blithely ironic asymptot| +57834|219379|F|307914.06|1995-01-29|2-HIGH|Clerk#000002959|0|kages wake around the even decoys. slyly careful ideas after the sl| +57835|79586|O|162920.72|1996-04-11|5-LOW|Clerk#000000636|0| blithely even accounts integrate| +57836|339157|O|58483.04|1998-03-16|3-MEDIUM|Clerk#000004876|0| carefully quickly even platelets. furiously| +57837|203662|F|142988.01|1994-01-24|5-LOW|Clerk#000003641|0| sly deposits-- furiously bold requests across | +57838|683737|O|269150.06|1996-11-30|5-LOW|Clerk#000001730|0|ructions. stealthily regular| +57839|40024|O|47390.40|1995-10-26|5-LOW|Clerk#000004174|0|es nag furiously final | +57864|675476|F|178081.26|1992-03-07|3-MEDIUM|Clerk#000002604|0|kly. fluffily pending notornis haggle furiously carefully final pinto beans. f| +57865|711758|F|38013.59|1992-12-20|3-MEDIUM|Clerk#000001259|0|telets along the carefully unusual multipliers cajo| +57866|3209|O|230502.93|1996-10-12|1-URGENT|Clerk#000002459|0|eposits. bold, bold accounts integrate even packages. pinto beans i| +57867|674855|O|162491.98|1995-11-10|4-NOT SPECIFIED|Clerk#000002338|0|efully alongside of th| +57868|25207|F|50944.30|1993-04-30|1-URGENT|Clerk#000004995|0|ithely according to the evenly final deposits. blithely blithe senti| +57869|632920|O|188716.55|1996-06-09|2-HIGH|Clerk#000000039|0|ges cajole. pending packages hinder furiously regular excuses! fluffily bold c| +57870|227149|F|77838.57|1994-07-28|3-MEDIUM|Clerk#000004822|0| ideas sleep deposits. furiously final hockey players are furiously| +57871|164473|O|64715.96|1997-05-12|5-LOW|Clerk#000000062|0|re carefully. boldly bold requests breach above the slyly even| +57896|528199|O|104338.61|1995-07-11|5-LOW|Clerk#000004555|0|ng the carefully pending ideas. accounts print furiously final, eve| +57897|438889|O|278630.39|1996-02-27|3-MEDIUM|Clerk#000004739|0|al theodolites-- quickly ex| +57898|139498|O|141900.53|1997-08-19|2-HIGH|Clerk#000001884|0|nstructions. pending| +57899|41027|O|177667.29|1997-10-01|2-HIGH|Clerk#000003838|0|ily. furiously special theodolites cajole. unusua| +57900|289621|F|278633.51|1994-01-26|5-LOW|Clerk#000001077|0|ve the pinto beans. fluffily silent dependencies are carefully bold | +57901|147466|O|191165.66|1996-03-17|1-URGENT|Clerk#000003966|0|packages are between the busy dependencies. bold a| +57902|456296|F|167669.06|1994-08-29|5-LOW|Clerk#000001978|0|gular frays. special dugouts ha| +57903|214034|F|141598.90|1993-01-24|3-MEDIUM|Clerk#000004763|0| requests cajole fluffily against the quickl| +57928|260065|F|261809.48|1995-01-09|4-NOT SPECIFIED|Clerk#000003196|0|hely pending theodolites nag. quickly silent theodolites wak| +57929|657973|O|217830.09|1995-10-14|4-NOT SPECIFIED|Clerk#000003340|0|totes haggle quickly. platelets affix furiously. carefully pendin| +57930|522259|O|105665.77|1996-03-31|3-MEDIUM|Clerk#000000863|0|eas cajole above the stealthy deposits. even, final instructions ha| +57931|343126|F|161336.05|1994-09-20|4-NOT SPECIFIED|Clerk#000002485|0|ironic requests. carefully even pains according to the regular| +57932|153874|O|285640.87|1996-08-12|4-NOT SPECIFIED|Clerk#000004322|0| quickly even foxes integrate under the si| +57933|154342|F|163868.47|1994-08-09|3-MEDIUM|Clerk#000001089|0|gle around the blithe| +57934|509419|O|209237.34|1996-02-01|5-LOW|Clerk#000002083|0| permanent requests could have t| +57935|528169|O|126029.76|1996-09-25|2-HIGH|Clerk#000003208|0|s sleep! blithely busy theodolites haggle furious| +57960|660685|F|131185.51|1992-01-30|3-MEDIUM|Clerk#000002209|0|uests. quickly final accounts cajole slyly. furiously special | +57961|371293|F|7639.60|1993-06-09|5-LOW|Clerk#000001932|0|uctions. carefully brave pi| +57962|298931|F|234794.64|1994-03-25|5-LOW|Clerk#000001476|0|ove the blithely bold dinos haggle slyly ironic deposits. carefully final| +57963|627556|O|113589.65|1995-11-05|5-LOW|Clerk#000002578|0|luffily excuses. quick| +57964|53422|O|106616.62|1998-02-01|4-NOT SPECIFIED|Clerk#000002799|0|cajole slyly: express asymptotes cajole. slyly bold platelets nag fluff| +57965|96071|F|69066.60|1995-04-28|5-LOW|Clerk#000001983|0|theodolites. carefu| +57966|661124|F|5718.80|1992-03-21|5-LOW|Clerk#000000762|0|sy accounts detect aft| +57967|260608|F|93819.94|1994-01-21|3-MEDIUM|Clerk#000001229|0|nusual excuses. pinto b| +57992|23719|P|53476.72|1995-04-15|2-HIGH|Clerk#000003670|0|uffily final sauternes gro| +57993|365038|F|155319.12|1995-01-29|3-MEDIUM|Clerk#000000073|0|final notornis. final reques| +57994|192040|F|272220.41|1992-11-07|3-MEDIUM|Clerk#000003040|0|ut the carefully ironic accounts. even, regular packages nag alon| +57995|363070|F|123550.33|1993-06-27|2-HIGH|Clerk#000000218|0|ounts affix carefully. express accounts doubt blithel| +57996|95392|F|163039.18|1994-03-20|1-URGENT|Clerk#000004115|0|r dependencies after the fluffily even | +57997|479035|O|60426.38|1996-06-06|1-URGENT|Clerk#000001009|0|ly regular dugouts affix slyly bold asymptotes. furiously bold | +57998|639053|O|62146.12|1996-05-21|5-LOW|Clerk#000002265|0|ges are according to the carefully regular deposits! final packages hagg| +57999|562213|F|5853.58|1994-05-29|1-URGENT|Clerk#000000046|0|ns. deposits sleep blithely ironic packages. furiously| +58024|581573|O|239112.09|1996-02-11|4-NOT SPECIFIED|Clerk#000004094|0|ns nag quickly. silent de| +58025|496420|F|270971.84|1993-01-03|1-URGENT|Clerk#000004249|0|ogs might maintain carefully. pending asymptotes after the | +58026|309431|F|233378.21|1993-02-02|5-LOW|Clerk#000004990|0| the packages. quickly ironic dependencies around the blithely | +58027|104101|O|45153.61|1997-09-14|3-MEDIUM|Clerk#000002072|0|y final ideas poach fluffily blithely bold deposits. quickly spec| +58028|613285|O|156574.90|1996-06-28|5-LOW|Clerk#000001676|0|tions haggle slyly. carefully even ideas are fluffily evenly| +58029|199075|O|131801.52|1996-02-22|5-LOW|Clerk#000000709|0|ly ironic instructions cajole blithely. slowly final | +58030|79738|O|191724.04|1995-11-05|3-MEDIUM|Clerk#000003266|0|regular accounts are furiously abo| +58031|632080|O|124086.07|1995-09-08|3-MEDIUM|Clerk#000000238|0|om the blithely final accounts. regular, regular foxes breach slyly even | +58056|350056|O|212527.86|1996-10-08|1-URGENT|Clerk#000002119|0|ly express ideas integrate quickly along the slyly even foxes. final packa| +58057|387109|O|119229.98|1996-04-29|2-HIGH|Clerk#000000273|0|ke inside the furiously bold theodolites. re| +58058|629602|O|193450.25|1997-08-23|4-NOT SPECIFIED|Clerk#000001579|0|es. final, furious packages boost along the fluffily even pin| +58059|691147|F|227558.07|1992-07-30|4-NOT SPECIFIED|Clerk#000003146|0|e instructions wake carefully packages. even dependencies inside t| +58060|78442|F|35871.24|1994-11-09|4-NOT SPECIFIED|Clerk#000000629|0|ole fluffily after the quickly final platelets. slyly regular ideas boo| +58061|610537|O|10806.96|1995-10-01|4-NOT SPECIFIED|Clerk#000000745|0|l pinto beans cajole slyly around the bold accounts. sometimes s| +58062|531782|F|57813.97|1994-12-03|2-HIGH|Clerk#000000819|0|r, dogged deposits. even foxes sleep slyly special deposits. ironic accounts| +58063|645326|O|240318.27|1997-12-25|2-HIGH|Clerk#000004634|0|ar foxes sleep carefully regula| +58088|228265|F|21341.45|1992-05-05|3-MEDIUM|Clerk#000002957|0|xes. unusual dolphins across the regular ideas wake s| +58089|167536|F|85953.89|1992-03-23|5-LOW|Clerk#000002295|0|sual requests believe fluffily furiously even packages. furiously un| +58090|253690|O|106259.70|1995-10-07|1-URGENT|Clerk#000003463|0|ts are. realms haggle b| +58091|3304|O|94663.48|1997-04-02|3-MEDIUM|Clerk#000001602|0|the special ideas. | +58092|13969|O|45872.82|1998-05-05|2-HIGH|Clerk#000003842|0|l ideas are slyly across the carefully final requests. quickly special| +58093|746938|F|245602.00|1993-11-19|3-MEDIUM|Clerk#000000396|0| cajole slyly deposi| +58094|271171|O|155703.00|1996-12-04|1-URGENT|Clerk#000004655|0|jole blithely ironic asymp| +58095|551834|F|82349.67|1992-05-29|5-LOW|Clerk#000000641|0| deposits. ironic foxes after the regular, sly instructions poach slyly regula| +58120|170960|O|65372.07|1996-07-25|4-NOT SPECIFIED|Clerk#000004556|0|hins. quickly ironic instructions across the ideas detect a| +58121|65147|O|313457.48|1997-08-09|3-MEDIUM|Clerk#000003856|0|efully special deposits haggle packages-- furiously ironic| +58122|660032|F|29485.01|1992-07-02|4-NOT SPECIFIED|Clerk#000003431|0|l deposits. ironic ideas are at the carefully regular ideas. re| +58123|654800|O|266694.40|1997-07-24|5-LOW|Clerk#000002162|0|ar accounts use around the carefully ironic gifts; fluffily regular reque| +58124|459047|O|53698.05|1995-11-05|1-URGENT|Clerk#000004599|0| accounts affix slyly express deposits. | +58125|693370|O|207982.45|1997-01-29|3-MEDIUM|Clerk#000004181|0|unts. quickly ironic theo| +58126|710293|F|311291.81|1993-11-30|4-NOT SPECIFIED|Clerk#000003368|0|unts eat fluffily. caref| +58127|122980|F|31170.74|1992-11-17|3-MEDIUM|Clerk#000003371|0| final packages across the furiously pending deposits| +58152|653701|F|267023.21|1993-11-16|1-URGENT|Clerk#000002584|0|furiously express requests. quickly brave frets are alongside of the reque| +58153|738820|F|272922.50|1992-03-22|2-HIGH|Clerk#000001404|0|e the braids. furiously pending pinto beans boost blithely. carefull| +58154|329122|O|115514.57|1996-01-22|5-LOW|Clerk#000000562|0|even accounts. slyly rut| +58155|277715|O|281444.07|1996-01-12|5-LOW|Clerk#000004697|0|efully special packages. c| +58156|290965|O|47778.10|1996-02-01|2-HIGH|Clerk#000002379|0|xcuses detect. express fo| +58157|239792|O|90555.07|1996-01-05|5-LOW|Clerk#000003070|0|efully blithely final multipliers. blithely bold dependencies cajole. | +58158|418565|F|120945.33|1993-09-20|1-URGENT|Clerk#000002910|0|ecial, final package| +58159|558377|O|157492.19|1997-02-02|3-MEDIUM|Clerk#000001770|0|thely unusual packages. express foxes detect. ironic excuses| +58184|635338|F|200219.22|1992-09-21|2-HIGH|Clerk#000000121|0|al excuses. carefully final packages haggle. carefully even p| +58185|362839|O|67158.24|1996-01-20|5-LOW|Clerk#000004479|0|ording to the slyly even requests. bold, final asymptotes shall haggle som| +58186|722719|F|194875.94|1992-11-24|2-HIGH|Clerk#000002388|0|equests. final courts cajole slyly ironic Tiresias. slo| +58187|457441|F|191603.25|1992-05-19|3-MEDIUM|Clerk#000003894|0|eep carefully furiously regular dependencies. accounts along the bold deposit| +58188|680005|O|60088.76|1995-11-01|5-LOW|Clerk#000002158|0|eposits should sleep against the carefu| +58189|333995|F|288017.19|1993-09-30|3-MEDIUM|Clerk#000004009|0|ndencies against the carefully unusual ideas cajole carefully past the ironic| +58190|449281|F|252163.80|1994-08-04|3-MEDIUM|Clerk#000004513|0|eep. pending accounts nag carefully express deposits-- furiously | +58191|40744|F|45474.61|1993-12-08|1-URGENT|Clerk#000001407|0|inal requests boost slowly. regular, ironic requests haggle | +58216|16019|F|175461.33|1993-09-19|1-URGENT|Clerk#000000715|0|mptotes haggle quickly regular accounts. regular accounts al| +58217|719158|O|31274.69|1998-07-26|4-NOT SPECIFIED|Clerk#000002449|0|ly regular deposits solve again| +58218|618386|F|53132.23|1994-03-05|4-NOT SPECIFIED|Clerk#000001900|0|uickly final foxes according to the furiously regular ideas inte| +58219|455206|O|115933.47|1996-12-23|4-NOT SPECIFIED|Clerk#000000568|0|after the slyly regular deposits. fluffily regu| +58220|643621|F|208983.57|1993-02-13|5-LOW|Clerk#000001600|0| packages cajole carefully. slyly ironic requests after the excuses haggle| +58221|75041|O|171826.19|1998-06-01|1-URGENT|Clerk#000001489|0|ans nag carefully. regula| +58222|461374|F|232939.33|1993-07-16|5-LOW|Clerk#000002848|0|the theodolites. final requests play quickly? regular platelets wake furious| +58223|35732|F|328466.95|1992-06-07|1-URGENT|Clerk#000002657|0| regular depths. blithely permanent att| +58248|542867|F|265223.16|1992-11-08|3-MEDIUM|Clerk#000004296|0|ggle. deposits affix after the pinto beans. fi| +58249|205105|P|325439.76|1995-03-11|3-MEDIUM|Clerk#000004335|0|final requests. furiously express foxes lose slyly across the unusual| +58250|173402|F|6070.07|1994-01-23|4-NOT SPECIFIED|Clerk#000001005|0| instructions wake iron| +58251|615167|F|56114.51|1994-06-27|5-LOW|Clerk#000004215|0|ess requests sleep blithely at the deposits. special realms breach b| +58252|361666|O|118945.02|1997-02-01|3-MEDIUM|Clerk#000002290|0|ly final deposits. packages after the | +58253|518698|O|59446.54|1995-12-31|1-URGENT|Clerk#000002832|0|old, ironic platelets cajole carefully furiousl| +58254|502810|O|211412.41|1997-09-09|5-LOW|Clerk#000003936|0|the even, final packages haggle accord| +58255|468607|F|219183.82|1994-03-20|4-NOT SPECIFIED|Clerk#000003564|0|y along the carefully special theodolites-- express req| +58280|122609|F|131568.43|1992-01-27|1-URGENT|Clerk#000001360|0|p blithely across the pendin| +58281|427846|O|35692.40|1997-01-08|2-HIGH|Clerk#000001544|0|st the special requests. regular foxes use fluffily quickly pending acc| +58282|540080|O|193507.21|1998-05-20|1-URGENT|Clerk#000000960|0| across the sometimes final foxes are final platelets| +58283|623230|O|138510.26|1997-12-24|4-NOT SPECIFIED|Clerk#000000751|0|st after the carefully unu| +58284|109057|F|209929.66|1994-09-02|3-MEDIUM|Clerk#000001350|0|s along the blithely ironic packag| +58285|668713|P|98378.62|1995-05-20|4-NOT SPECIFIED|Clerk#000003435|0|kly ironic packages x-ray carefully s| +58286|309205|O|149721.19|1996-04-28|1-URGENT|Clerk#000000887|0|s boost fluffily fluffi| +58287|55739|F|247979.99|1994-10-13|1-URGENT|Clerk#000001023|0|otes. even dugouts cajole stealthily. | +58312|42986|F|47496.58|1994-05-09|4-NOT SPECIFIED|Clerk#000003828|0|cajole slyly ironic theodolites. carefully special pinto beans sleep blithely.| +58313|212560|F|100375.18|1992-02-10|4-NOT SPECIFIED|Clerk#000003806|0|pinto beans alongside of the even foxes affix blithely bl| +58314|234523|O|204792.34|1997-06-19|5-LOW|Clerk#000002993|0|o beans unwind fluffily ir| +58315|374705|O|105540.06|1997-02-15|5-LOW|Clerk#000002218|0|al requests eat alongside | +58316|661855|O|280586.77|1996-01-06|3-MEDIUM|Clerk#000001622|0|tions. platelets play slyly against the carefully even ac| +58317|532327|O|56728.92|1997-12-04|5-LOW|Clerk#000000542|0|inal deposits haggle carefully regular, final excuses. fu| +58318|65144|F|17222.32|1993-09-27|4-NOT SPECIFIED|Clerk#000003864|0|latelets. furiously pending accoun| +58319|615622|F|133461.92|1993-09-23|5-LOW|Clerk#000004218|0|l ideas. quickly bold accounts c| +58344|493621|O|342101.61|1998-07-14|5-LOW|Clerk#000003579|0| sentiments. regular instructions print quickl| +58345|526646|O|114348.39|1996-03-16|4-NOT SPECIFIED|Clerk#000004046|0|latelets. ironic deposits nag | +58346|583196|F|271611.85|1994-05-03|5-LOW|Clerk#000001864|0|packages affix blithely slyly express foxes. even instructions poach quickly| +58347|22604|F|92947.43|1994-01-21|4-NOT SPECIFIED|Clerk#000002644|0| above the fluffily unusual sheaves. regular, ev| +58348|389077|O|70777.07|1995-11-22|3-MEDIUM|Clerk#000004927|0|the furiously pending deposits hinder slyly around the blithely bold package| +58349|699026|F|174291.83|1993-04-21|5-LOW|Clerk#000003382|0|olites-- carefully regular ideas might detect | +58350|520984|F|355630.11|1993-08-27|3-MEDIUM|Clerk#000001721|0|sits was carefully furiously ironic packages. fluff| +58351|661666|O|327236.98|1995-12-05|1-URGENT|Clerk#000000652|0|uthless, express accounts against the requests sleep idly expres| +58376|362878|F|245711.03|1994-09-24|5-LOW|Clerk#000001013|0|above the fluffily regular realm| +58377|608426|P|104791.72|1995-03-14|3-MEDIUM|Clerk#000001579|0|lphins wake pinto beans. fluffily regular id| +58378|311588|O|211786.09|1997-11-24|2-HIGH|Clerk#000000766|0|even ideas. slyly silent Tiresias affix toward the bli| +58379|355708|O|243173.33|1996-09-22|5-LOW|Clerk#000003498|0|kages. final pinto beans boost care| +58380|128936|F|194760.75|1993-05-22|4-NOT SPECIFIED|Clerk#000000468|0|eep quickly quickly ir| +58381|267290|O|280359.81|1996-10-03|2-HIGH|Clerk#000000747|0|ronic theodolites breach against the | +58382|579092|O|143437.33|1998-06-09|5-LOW|Clerk#000000754|0|s. final attainments believe slyly. blithely express ideas are carefully p| +58383|35539|F|201660.18|1992-06-20|1-URGENT|Clerk#000002221|0|excuses haggle after the fluffily express dependencies. sly| +58408|274082|O|283723.67|1998-03-07|1-URGENT|Clerk#000001886|0|thrash blithely under the blithely regular courts. sp| +58409|737896|O|232226.49|1995-08-04|2-HIGH|Clerk#000001860|0|e furiously final forges. slyly final requests above the quickly bol| +58410|537718|F|215041.20|1993-04-08|4-NOT SPECIFIED|Clerk#000002151|0|le furiously. ironic, express packages ar| +58411|675118|O|150923.28|1996-07-10|1-URGENT|Clerk#000001946|0|efully about the finally regular theodolites. requests are blithely.| +58412|698987|O|88550.32|1995-07-23|1-URGENT|Clerk#000004893|0|the sly, final requests. furiously unusual ideas wake after the | +58413|618059|O|223546.92|1997-04-09|3-MEDIUM|Clerk#000004240|0|ar ideas. theodolites aroun| +58414|207268|O|238245.37|1996-01-06|1-URGENT|Clerk#000000502|0|fully unusual requests haggle | +58415|544366|O|238003.49|1996-09-26|2-HIGH|Clerk#000003218|0| slyly blithely even excuses. fluffily e| +58440|647858|F|218122.04|1992-07-27|4-NOT SPECIFIED|Clerk#000002974|0|as are furiously quickly regular packages. furiously regular depos| +58441|38848|F|37889.80|1994-03-27|5-LOW|Clerk#000001017|0|dolites nag. carefully pending excuses cajole. ne| +58442|411890|O|101976.78|1995-07-05|2-HIGH|Clerk#000004711|0|y enticing foxes sleep around the | +58443|123022|O|16837.80|1995-10-11|2-HIGH|Clerk#000002569|0|ang regular, ironic pac| +58444|629704|F|115241.17|1994-09-15|5-LOW|Clerk#000000387|0|to beans solve carefully final packages. furiou| +58445|177314|F|223600.51|1995-01-12|2-HIGH|Clerk#000001983|0|lets across the furiousl| +58446|362329|O|208590.49|1996-01-24|4-NOT SPECIFIED|Clerk#000001969|0|c ideas? ideas among the quickly bus| +58447|383890|F|53245.32|1994-10-02|2-HIGH|Clerk#000002074|0|ly across the pinto beans. quickly special foxes boost stealthily. ironic de| +58472|527785|F|186243.30|1993-03-21|4-NOT SPECIFIED|Clerk#000000205|0|packages. special, unusual deposits sleep slyly above the slyly final | +58473|215012|O|267967.14|1997-05-08|2-HIGH|Clerk#000001462|0|ackages nag across the blithely regular requ| +58474|203582|O|128509.13|1996-03-05|2-HIGH|Clerk#000003679|0| accounts wake slyly alongside of the instructions. final, express accoun| +58475|95257|F|11207.54|1992-07-08|5-LOW|Clerk#000003804|0|egrate carefully platelets. furiously final escapades wake carefully. clo| +58476|467305|F|117520.20|1993-11-15|4-NOT SPECIFIED|Clerk#000002546|0|ag blithely according to the even frays. stealthily | +58477|730966|O|64908.71|1996-05-29|5-LOW|Clerk#000000626|0| quickly regular requests. slyly special accounts lose enticingly. unusual d| +58478|313558|F|133784.25|1992-05-09|2-HIGH|Clerk#000001908|0|ng foxes? regular theodolites print furiously. packages sublate above| +58479|467924|F|250375.43|1992-02-23|3-MEDIUM|Clerk#000003333|0| requests sleep slyly special pinto beans. express theodol| +58504|641630|O|310878.88|1997-12-25|5-LOW|Clerk#000004438|0|lithely blithely final accounts. unusual requests nod slyly according to t| +58505|372613|F|8966.12|1993-07-29|1-URGENT|Clerk#000003717|0|lar dolphins. slyly even asymptotes use; blithely unusual depo| +58506|1028|O|57501.87|1996-09-26|2-HIGH|Clerk#000004437|0|sts. furiously bold requests promise furiously carefully regular packages.| +58507|17053|O|188566.09|1995-10-01|4-NOT SPECIFIED|Clerk#000002553|0|ounts. furiously pending requests breach; carefully final instructions su| +58508|99697|F|294987.41|1992-10-02|4-NOT SPECIFIED|Clerk#000001004|0|. slyly regular accounts sleep quickly. quickly pending deposits agai| +58509|81778|F|99025.04|1993-08-01|3-MEDIUM|Clerk#000001973|0| furiously regular accounts| +58510|441959|O|198399.35|1997-09-17|3-MEDIUM|Clerk#000000558|0|ackages-- fluffily final instructions boost quickly furiousl| +58511|741817|O|176443.35|1997-08-26|4-NOT SPECIFIED|Clerk#000001826|0|ding to the ironic, even foxes. special deposits sleep carefully blithely fi| +58536|458185|F|220231.64|1994-01-16|1-URGENT|Clerk#000004557|0|equests. express pinto beans cajole slyly beside the ironic, | +58537|437239|O|62536.72|1996-01-21|1-URGENT|Clerk#000002364|0|d foxes cajole around the slyly even packages. even excuses are| +58538|143428|O|108761.70|1995-05-28|1-URGENT|Clerk#000003224|0|s. express deposits kindle slyly. ideas integrate carefully fin| +58539|64120|O|274734.59|1996-10-17|4-NOT SPECIFIED|Clerk#000003644|0|e carefully. carefully regular dep| +58540|656756|O|184904.28|1997-10-11|1-URGENT|Clerk#000003654|0|ccording to the blithely bold foxes unwind along the car| +58541|344497|O|9329.46|1998-05-26|1-URGENT|Clerk#000000821|0|l instructions boost fluffily. carefully quiet requests x-ray furiously car| +58542|681538|O|36460.15|1996-07-08|4-NOT SPECIFIED|Clerk#000002318|0|hely. carefully regular instructio| +58543|590306|O|181652.71|1998-02-07|2-HIGH|Clerk#000004403|0|ily quickly unusual ac| +58568|272005|O|143347.11|1996-10-08|1-URGENT|Clerk#000001379|0|he final accounts haggle slyly regular pinto beans. packages breach blithely s| +58569|337705|O|25524.37|1995-09-25|1-URGENT|Clerk#000001846|0|packages haggle after the slyly dogged courts. b| +58570|526750|F|195828.13|1994-05-03|3-MEDIUM|Clerk#000000226|0|ages wake after the slyly even requests. final, ironic asymptotes| +58571|67012|F|78371.58|1994-06-25|1-URGENT|Clerk#000004547|0|ing to the busily pending saute| +58572|496501|F|9851.29|1992-01-11|5-LOW|Clerk#000002560|0| packages. carefully express requ| +58573|164129|O|90303.79|1997-02-04|1-URGENT|Clerk#000000442|0|ly special requests wake about the nev| +58574|6002|O|44718.52|1998-04-16|3-MEDIUM|Clerk#000000776|0|gainst the pinto beans. express somas along the furiously final packages slee| +58575|360925|F|122149.05|1994-10-01|1-URGENT|Clerk#000002345|0|ckages. pending, final deposits| +58600|35009|F|6659.76|1993-06-26|1-URGENT|Clerk#000004404|0|frays. asymptotes along the| +58601|391930|F|144055.23|1992-05-30|1-URGENT|Clerk#000004038|0|fluffily final deposits. dogged | +58602|653479|P|66157.36|1995-03-10|2-HIGH|Clerk#000000122|0|ic, regular notornis against the slyly bold deposits caj| +58603|740855|F|88135.57|1994-06-10|3-MEDIUM|Clerk#000004148|0|ly regular decoys cajole quickly| +58604|46411|F|81602.78|1993-10-28|3-MEDIUM|Clerk#000003513|0|s x-ray carefully after the accounts. caref| +58605|11674|F|169356.29|1992-04-04|3-MEDIUM|Clerk#000004931|0|the furiously bold pa| +58606|423277|O|106581.32|1998-07-06|3-MEDIUM|Clerk#000001238|0|even, bold requests be| +58607|237043|P|67162.94|1995-06-04|3-MEDIUM|Clerk#000001990|0|ickly unusual deposits sleep furiously against the acco| +58632|718043|F|220340.59|1993-05-29|2-HIGH|Clerk#000000597|0|ctions around the finally bold multipliers cajole carefully even pinto bea| +58633|647402|O|34120.04|1998-05-05|1-URGENT|Clerk#000000091|0|use carefully accor| +58634|620225|O|42486.06|1995-06-20|2-HIGH|Clerk#000001792|0|ly bold platelets nag quickly around the ir| +58635|616520|F|165715.54|1995-01-08|5-LOW|Clerk#000001832|0|es. even requests integrate carefully spe| +58636|592801|O|50952.83|1997-03-13|4-NOT SPECIFIED|Clerk#000001830|0|dinos. deposits cajole permanently bold dolphins.| +58637|185177|O|116670.30|1995-07-18|4-NOT SPECIFIED|Clerk#000002117|0|al excuses. slyly bold requests poach quickly bl| +58638|513148|O|169812.76|1996-06-30|4-NOT SPECIFIED|Clerk#000000989|0|ges. slyly even accounts promise above| +58639|212620|O|203548.90|1998-05-05|3-MEDIUM|Clerk#000001923|0|y idle deposits use slyly ironic, silent deposits-- slyly even reques| +58664|487199|F|143760.89|1993-06-13|2-HIGH|Clerk#000003060|0|r the unusual, regul| +58665|588433|O|155179.78|1997-06-24|1-URGENT|Clerk#000003894|0|y. even requests cajole| +58666|287708|F|138945.49|1993-09-27|4-NOT SPECIFIED|Clerk#000003267|0|ronic deposits sleep quickly final a| +58667|243979|O|262793.92|1995-12-22|4-NOT SPECIFIED|Clerk#000003928|0|even accounts wake furiously above the | +58668|289765|F|185785.24|1994-05-18|1-URGENT|Clerk#000001306|0|ly special deposits. furiously final pa| +58669|321778|P|127043.65|1995-04-14|5-LOW|Clerk#000003993|0|lly even packages print furiou| +58670|614627|O|309286.42|1997-10-22|1-URGENT|Clerk#000003857|0| even ideas. never bold instr| +58671|279848|F|6428.15|1994-02-16|5-LOW|Clerk#000002917|0|al, final ideas. furiously reg| +58696|142231|O|244911.47|1997-09-19|4-NOT SPECIFIED|Clerk#000004511|0|e carefully even packages. quickly final| +58697|202967|F|122591.02|1994-04-26|1-URGENT|Clerk#000002363|0|silent packages sleep. fluffily regular deposits haggle. pending, b| +58698|257734|F|275151.38|1992-12-10|2-HIGH|Clerk#000002953|0| carefully. quickly silent foxes according to the accounts | +58699|477533|F|200625.16|1994-12-17|5-LOW|Clerk#000001890|0|foxes. blithely ironic excuses integr| +58700|146302|F|238264.97|1994-04-18|3-MEDIUM|Clerk#000001137|0|deas alongside of the pending depos| +58701|367606|O|76079.39|1997-11-27|4-NOT SPECIFIED|Clerk#000003717|0|longside of the deposits. finally regular request| +58702|600250|O|1325.37|1995-04-24|4-NOT SPECIFIED|Clerk#000004567|0|ial theodolites. slyly ironic warthogs haggle. regular | +58703|148696|F|104326.50|1992-01-25|4-NOT SPECIFIED|Clerk#000001960|0| requests engage carefully. furiously ironic gifts are| +58728|114929|F|41108.98|1994-12-19|1-URGENT|Clerk#000003242|0|final theodolites. pinto beans cajole blithely ironic fra| +58729|358835|F|192811.82|1994-01-01|5-LOW|Clerk#000001825|0|elets along the slyly final dolphins| +58730|175033|P|305222.11|1995-05-16|5-LOW|Clerk#000004475|0| nag furiously ironic excuses. dolphins a| +58731|260549|F|73577.34|1992-08-17|5-LOW|Clerk#000001922|0| detect. furiously regular accounts along the fluffi| +58732|544709|O|231539.91|1997-09-21|1-URGENT|Clerk#000000415|0|eans thrash about the blithely ironic accounts. slyly ironic packages| +58733|421582|F|118613.82|1992-12-23|4-NOT SPECIFIED|Clerk#000004098|0|. final foxes against the blithely regular ideas sleep above the| +58734|266683|F|262226.02|1993-10-19|4-NOT SPECIFIED|Clerk#000000544|0|carefully. carefully regular theodolites ar| +58735|109417|O|199176.99|1995-09-06|1-URGENT|Clerk#000004066|0|es about the carefully final asymptote| +58760|708896|F|183669.92|1994-01-13|5-LOW|Clerk#000004596|0|l, regular pinto beans.| +58761|655459|F|238429.09|1993-02-09|4-NOT SPECIFIED|Clerk#000001849|0| fluffily pending requests use carefully bold ac| +58762|280967|F|91054.40|1993-12-08|3-MEDIUM|Clerk#000001146|0|he fluffily even deposits. express| +58763|195914|F|167068.96|1995-03-31|3-MEDIUM|Clerk#000004650|0|instructions alongside of the furiously regul| +58764|214871|O|74819.57|1997-03-26|1-URGENT|Clerk#000004575|0|ptotes along the final foxes are slyly bravely| +58765|77374|O|127048.42|1996-07-03|1-URGENT|Clerk#000003690|0|aggle furiously along the unusual, pe| +58766|651056|F|89620.49|1995-02-01|4-NOT SPECIFIED|Clerk#000001959|0|. quickly final waters detect. furiously ironic instructions despite t| +58767|540703|O|188093.01|1996-11-23|4-NOT SPECIFIED|Clerk#000001172|0|l accounts. carefully final instructions affix never. | +58792|577174|F|199055.02|1994-08-09|4-NOT SPECIFIED|Clerk#000002497|0|eposits cajole furiously accounts. furiously bold accounts | +58793|39196|O|30706.00|1996-10-18|5-LOW|Clerk#000004025|0|cajole furiously against the slyly even dependencies. sp| +58794|260348|F|54341.61|1992-01-17|3-MEDIUM|Clerk#000003776|0| the blithely regular requests. slyly final asymptotes kindle slyly| +58795|155195|P|105495.99|1995-03-23|3-MEDIUM|Clerk#000001108|0|ts. bold packages through| +58796|602453|F|114651.73|1993-11-05|5-LOW|Clerk#000001235|0|tes cajole slyly among the pending, ironic pa| +58797|413297|O|159350.72|1996-10-02|5-LOW|Clerk#000002314|0|onic accounts. unusual deposits around the silent deposits are along th| +58798|532432|F|245963.02|1992-01-10|4-NOT SPECIFIED|Clerk#000002902|0| sauternes are quickly. slow requests wake slyl| +58799|328813|F|171665.41|1992-04-17|5-LOW|Clerk#000001093|0|gular excuses. regu| +58824|340411|F|171677.63|1992-08-11|5-LOW|Clerk#000004290|0|al pinto beans. regular, unusual packages are. ironic accounts cajole quic| +58825|275176|F|4773.80|1992-09-08|1-URGENT|Clerk#000001380|0| the final instructions. carefully express packages grow bold accou| +58826|354550|O|63933.46|1995-06-24|1-URGENT|Clerk#000004049|0|refully unusual theodolite| +58827|163765|F|76347.16|1993-04-13|1-URGENT|Clerk#000003002|0|must wake dolphins. slyly unusual pai| +58828|615763|F|7011.45|1993-08-21|4-NOT SPECIFIED|Clerk#000002239|0|le carefully slyly even requests. pinto beans b| +58829|619819|O|187186.29|1996-04-02|5-LOW|Clerk#000003088|0|ans. slyly bold packages are quickly.| +58830|523540|F|120153.77|1993-02-23|4-NOT SPECIFIED|Clerk#000000760|0|refully special packag| +58831|126391|F|175777.58|1993-08-16|2-HIGH|Clerk#000003147|0|nst the unusual deposits. blithel| +58856|238420|F|144822.89|1994-07-19|1-URGENT|Clerk#000000563|0|ironic pinto beans along the slyly final courts wake c| +58857|614288|F|231360.62|1993-06-05|5-LOW|Clerk#000002729|0|y final asymptotes maintain quickly. express, express requests haggle| +58858|578164|O|105030.64|1996-11-14|3-MEDIUM|Clerk#000004675|0| blithely about the ironic, regular packages; regul| +58859|186853|F|72125.28|1993-09-09|3-MEDIUM|Clerk#000003749|0|nag carefully. slyly regular theodolites above the slyly bold p| +58860|163529|O|22125.64|1996-06-15|4-NOT SPECIFIED|Clerk#000001037|0|y bold accounts wake blithely dependenc| +58861|431662|F|230070.83|1993-02-03|1-URGENT|Clerk#000001163|0|elets cajole slyly pending a| +58862|191008|F|181372.18|1993-12-23|3-MEDIUM|Clerk#000001352|0|ons. requests wake silently quickly| +58863|257219|O|10652.64|1996-02-04|2-HIGH|Clerk#000000198|0|onic packages detect fluffily final instructions; furiously regular p| +58888|67951|O|48331.62|1996-05-21|3-MEDIUM|Clerk#000001208|0|ronic foxes. even deposits sublate blithely.| +58889|549272|O|260866.07|1997-07-15|2-HIGH|Clerk#000003115|0|. blithely special foxes a| +58890|602698|F|218887.42|1994-05-27|4-NOT SPECIFIED|Clerk#000002494|0|l instructions. final, unusual foxes| +58891|43321|O|123663.26|1998-04-04|3-MEDIUM|Clerk#000001933|0|breach carefully around | +58892|562462|F|90152.76|1993-02-27|1-URGENT|Clerk#000004177|0|nal pinto beans. blithely final dependencies nag| +58893|290968|F|336997.16|1993-04-03|5-LOW|Clerk#000001086|0|! blithely special requests| +58894|266929|O|229326.77|1997-07-16|2-HIGH|Clerk#000001596|0|egular, special deposi| +58895|492961|O|60080.71|1995-11-22|1-URGENT|Clerk#000002556|0|ajole carefully. fluffily bold forges m| +58920|680930|O|59135.66|1998-01-02|5-LOW|Clerk#000000411|0|lets haggle around the special theodolites. slyly even pinto beans u| +58921|140008|F|53942.30|1992-07-01|5-LOW|Clerk#000004245|0|blithely bold deposits hag| +58922|350044|O|326128.99|1997-09-21|2-HIGH|Clerk#000001284|0|y final deposits. slyly final frets haggl| +58923|158956|O|156517.80|1997-05-03|4-NOT SPECIFIED|Clerk#000000071|0|y regular dependencies haggle slyly about the per| +58924|72886|F|47569.31|1993-08-27|5-LOW|Clerk#000000195|0|ecial platelets cajole furiously at the quick| +58925|223694|O|208505.78|1995-12-16|1-URGENT|Clerk#000000432|0|ctions haggle quickly special requests. regular | +58926|624458|O|158743.80|1996-12-11|1-URGENT|Clerk#000000241|0|ffily final packages. re| +58927|513223|O|118055.77|1997-05-25|1-URGENT|Clerk#000000138|0|. slyly unusual sentiments haggl| +58952|738322|O|71369.17|1996-08-25|5-LOW|Clerk#000000348|0|fluffily boldly express requests. quietly iro| +58953|212435|F|256935.67|1993-03-23|3-MEDIUM|Clerk#000004910|0|rding to the special orbits. never special t| +58954|383755|F|65450.58|1992-05-31|4-NOT SPECIFIED|Clerk#000004913|0|ructions are. even accounts are slyly before t| +58955|488536|O|141587.13|1998-03-22|2-HIGH|Clerk#000002630|0|s mold at the furiously unusual instructions. carefully regular foxes run qui| +58956|570061|O|152005.56|1995-08-31|1-URGENT|Clerk#000000894|0| blithely alongside of the slyly pending accounts. bold idea| +58957|496616|O|168454.99|1995-11-05|3-MEDIUM|Clerk#000001431|0|the carefully even pinto be| +58958|617743|F|35013.75|1992-03-12|3-MEDIUM|Clerk#000002112|0|regular requests haggle regularly after the furiously final pinto beans. care| +58959|152909|O|330568.35|1995-08-26|5-LOW|Clerk#000003303|0|xcuses are fluffily above the| +58984|433648|O|150744.85|1996-06-18|1-URGENT|Clerk#000003083|0| theodolites. regular, even asymptotes affix boldly about the slyly ironic a| +58985|551615|O|312162.74|1997-02-11|3-MEDIUM|Clerk#000003167|0|ly. carefully enticing dependencies according to the furiously regular d| +58986|233350|O|128549.25|1997-06-13|2-HIGH|Clerk#000002769|0| quickly according to the special, ironic ideas. fluffily even ideas ca| +58987|136090|O|241924.36|1997-12-07|2-HIGH|Clerk#000004369|0|ss ideas. slyly unusual ideas play slyly. slyly special | +58988|494432|F|5281.43|1992-06-17|1-URGENT|Clerk#000003262|0|lar multipliers haggle blithely fluffy requests? speci| +58989|667603|F|25700.81|1994-12-07|4-NOT SPECIFIED|Clerk#000002759|0|ly; final, special deposits a| +58990|390850|F|55782.63|1994-01-18|2-HIGH|Clerk#000003991|0|ages. quickly express deposits nag. carefully close accounts | +58991|496615|F|255178.65|1994-07-14|3-MEDIUM|Clerk#000003087|0|s nag furiously express accounts. regular, final deposits acro| +59016|583876|F|263390.73|1992-03-24|2-HIGH|Clerk#000003553|0|ckly silent requests around the blithely | +59017|173131|O|97782.71|1997-07-25|1-URGENT|Clerk#000003073|0|eep ironic asymptotes. slyly final orbits wake furiously final instructi| +59018|551615|O|60729.65|1996-09-27|3-MEDIUM|Clerk#000004557|0|uffy accounts boost blithely. foxes boost regularly across | +59019|243169|F|20063.89|1994-11-28|5-LOW|Clerk#000003929|0| to the even, ironic packages wake slyly pending deposit| +59020|183130|O|242646.06|1998-03-25|5-LOW|Clerk#000004617|0|s boost. furiously ironic deposits cajole thinly along the furiously ironic | +59021|590210|O|121471.64|1996-02-26|3-MEDIUM|Clerk#000002171|0|icing asymptotes cajole fluffily unusual theodolites. even requests abo| +59022|158857|F|141113.87|1993-09-23|3-MEDIUM|Clerk#000002956|0|y final deposits haggle slyly blithely regular accounts. carefully final th| +59023|630541|O|100346.46|1997-11-15|3-MEDIUM|Clerk#000001593|0|nd the slyly even packages. blithely special foxes across the pinto| +59048|735653|O|212907.32|1995-07-03|2-HIGH|Clerk#000001085|0|fy dependencies dazzle packages. slyly ironic requests haggle furi| +59049|363107|F|191264.71|1994-07-19|4-NOT SPECIFIED|Clerk#000004897|0|al accounts. pending requests according to the blithely silent platelets | +59050|728635|O|210207.54|1995-06-12|5-LOW|Clerk#000002596|0|inal accounts nag pending requests. carefully express instruct| +59051|148781|O|131139.48|1997-04-29|4-NOT SPECIFIED|Clerk#000000204|0|sly after the blithely special theodolites. silent accounts alo| +59052|49081|F|183828.53|1995-01-31|4-NOT SPECIFIED|Clerk#000004423|0|s sleep fluffily. furiously final deposits poac| +59053|632362|F|151681.32|1994-11-06|4-NOT SPECIFIED|Clerk#000002522|0|carefully bold packages sleep slyly alongside | +59054|577903|F|61576.46|1992-06-20|2-HIGH|Clerk#000003357|0|. even hockey players are alongsi| +59055|312625|F|124097.25|1994-07-16|2-HIGH|Clerk#000003116|0|efully blithely regular pinto beans. blithely even ideas d| +59080|509896|F|190198.75|1992-12-30|1-URGENT|Clerk#000003146|0| platelets. fluffily even requests poach quickly even accou| +59081|316640|F|69013.23|1993-08-10|3-MEDIUM|Clerk#000001043|0|g according to the d| +59082|504424|F|198097.68|1993-01-16|1-URGENT|Clerk#000002247|0|, final packages above th| +59083|603325|F|174764.23|1994-08-26|3-MEDIUM|Clerk#000002901|0|ncies. even deposits haggle. pending asympto| +59084|58081|O|136790.75|1998-02-10|2-HIGH|Clerk#000003091|0|ideas above the fluffily ironic instructions cajole furiously a| +59085|389869|F|187157.78|1994-04-02|5-LOW|Clerk#000004620|0|ts wake among the carefully bold requests: regular account| +59086|502658|F|254658.21|1994-08-05|5-LOW|Clerk#000002132|0|usly carefully ironic| +59087|168430|O|63130.02|1997-02-28|3-MEDIUM|Clerk#000001828|0|en requests cajole among the carefully regular asymptotes. slyly pending | +59112|290686|F|218413.70|1994-08-03|5-LOW|Clerk#000001432|0|slyly slyly regular deposits; express, regular orbits among the furi| +59113|28339|O|148339.07|1996-03-27|4-NOT SPECIFIED|Clerk#000001551|0|es sleep. carefully ironic packages across t| +59114|31831|F|41724.66|1994-12-14|2-HIGH|Clerk#000004120|0|n requests! carefully regular theodolites wake never| +59115|232330|O|194188.36|1995-11-30|1-URGENT|Clerk#000000265|0| slowly final instructions above the quickly final de| +59116|267208|F|253041.95|1994-12-14|1-URGENT|Clerk#000004709|0| ideas between the fur| +59117|701027|F|189784.55|1993-01-13|1-URGENT|Clerk#000000719|0|final theodolites-- furio| +59118|394687|O|173712.86|1996-04-22|5-LOW|Clerk#000001178|0|es wake slyly. platelets boost blithely across| +59119|477851|F|81732.07|1995-01-09|1-URGENT|Clerk#000001898|0|quickly even accounts cajole along the bold instruct| +59144|237328|O|287755.73|1998-07-27|4-NOT SPECIFIED|Clerk#000001272|0|packages. ironic packages according to the fluffily even requests | +59145|265747|O|304714.24|1998-06-16|3-MEDIUM|Clerk#000000516|0| pending pinto beans haggle carefully. quickly even theodolites was slyly a| +59146|146329|F|266781.39|1992-09-13|3-MEDIUM|Clerk#000002185|0|ide of the ironic requests. requests haggle carefully according to the bl| +59147|94726|F|266128.33|1994-10-05|2-HIGH|Clerk#000004398|0|cajole carefully. carefully regular foxes nag carefully against the blithely f| +59148|538429|F|34328.78|1993-11-05|1-URGENT|Clerk#000001010|0|y daring sheaves haggl| +59149|615952|F|108099.69|1992-03-04|4-NOT SPECIFIED|Clerk#000004341|0|ding dependencies hang qu| +59150|52922|F|177433.42|1994-08-03|4-NOT SPECIFIED|Clerk#000000357|0|c ideas sleep about the slyly even courts: quickly unusual pac| +59151|697930|O|349846.18|1997-12-28|1-URGENT|Clerk#000001324|0|lyly ironic packages. quickly special pinto beans according | +59176|83908|O|112572.96|1996-03-19|3-MEDIUM|Clerk#000002831|0|ong the furiously pending theodolites play blithely furiously special pinto| +59177|241489|O|110748.44|1995-11-20|3-MEDIUM|Clerk#000004225|0|ts play along the slyly e| +59178|424444|F|232992.13|1992-08-10|5-LOW|Clerk#000000295|0| theodolites are fu| +59179|368371|F|37753.77|1992-12-09|4-NOT SPECIFIED|Clerk#000002049|0|ular pearls use. furiously special pinto beans boost carefully acc| +59180|699697|F|169061.97|1994-11-14|2-HIGH|Clerk#000004475|0| packages. fluffily pending requests sleep quickly bold, regular pin| +59181|546568|F|224719.13|1994-02-25|4-NOT SPECIFIED|Clerk#000003087|0|final packages haggle quickly ironic accounts. slyly | +59182|139186|O|88450.50|1998-04-15|3-MEDIUM|Clerk#000002581|0|e theodolites. fluffily unusual du| +59183|45853|F|84440.73|1993-01-26|3-MEDIUM|Clerk#000004392|0|, silent dependenci| +59208|400541|O|98516.82|1996-10-05|1-URGENT|Clerk#000000390|0|ly; dependencies hagg| +59209|627571|O|144985.73|1997-04-06|1-URGENT|Clerk#000002167|0|tructions. regular instructions use fluffily blithely final ac| +59210|327757|F|76902.51|1993-11-10|1-URGENT|Clerk#000004628|0|express theodolites. fluffily p| +59211|607276|F|78065.22|1993-08-31|4-NOT SPECIFIED|Clerk#000001853|0|et requests print fur| +59212|455582|O|3227.20|1995-04-07|5-LOW|Clerk#000002821|0|s requests. blithely iro| +59213|209020|O|14436.49|1995-06-16|5-LOW|Clerk#000000559|0|? closely ironic excuses according to the asymptotes are according to the fluf| +59214|730499|O|291845.90|1997-07-19|2-HIGH|Clerk#000002204|0|nt deposits are fluffily. carefully| +59215|736657|F|248663.25|1993-09-12|2-HIGH|Clerk#000001881|0|eposits. slyly final instructions engage against t| +59240|735211|F|139288.75|1994-06-09|5-LOW|Clerk#000003518|0|ests do detect carefully? slyly even theodolites print according to the furi| +59241|438274|O|250036.15|1996-08-31|5-LOW|Clerk#000004661|0|ously express tithes use quickly slyly ironi| +59242|302482|O|101252.28|1996-04-07|3-MEDIUM|Clerk#000001654|0|osits. carefully regular tithes us| +59243|285445|F|71433.18|1993-09-01|1-URGENT|Clerk#000003849|0|counts cajole furiously after the blithely unusual instruction| +59244|441500|O|104597.32|1997-12-27|5-LOW|Clerk#000000516|0| regular foxes wake slyly car| +59245|534448|F|133787.82|1992-05-18|3-MEDIUM|Clerk#000004781|0|the carefully even theodolites. slyly ironic courts wake blithely! blithely| +59246|452110|O|138743.97|1998-04-28|2-HIGH|Clerk#000001687|0|r pinto beans against the bold deposits cajole carefully final ac| +59247|343967|O|111038.69|1996-02-19|2-HIGH|Clerk#000002645|0|gular, ironic foxes cajole after the carefully ironic accounts. unusual reque| +59272|36760|F|214276.13|1994-12-15|3-MEDIUM|Clerk#000003692|0|d packages. regular deposits sleep slyly. accounts use care| +59273|552553|O|256031.36|1998-04-07|1-URGENT|Clerk#000000919|0|ccounts wake quickly requests. even, brave packages use about| +59274|244856|F|253553.60|1993-03-12|5-LOW|Clerk#000002636|0|lphins. even, express deposits above the quickly regular| +59275|41671|O|281699.95|1996-06-17|2-HIGH|Clerk#000003160|0|ckages. pending packages are carefully around the carefully bold| +59276|602689|F|19691.65|1992-09-14|2-HIGH|Clerk#000003347|0|. carefully final requests against the unusual, regular reques| +59277|636322|F|91163.96|1993-07-13|1-URGENT|Clerk#000003405|0|he close packages integrate according to the furi| +59278|381547|O|278204.30|1996-12-03|1-URGENT|Clerk#000001607|0|tes detect about the furiously unusual depen| +59279|159302|O|97177.71|1995-07-20|5-LOW|Clerk#000002004|0|nding packages until the even| +59304|630619|O|101275.20|1997-08-30|4-NOT SPECIFIED|Clerk#000000632|0|ng the carefully even escapades sleep carefully s| +59305|548986|F|25160.42|1992-12-06|5-LOW|Clerk#000001771|0| slyly express dependencies against the ironic instructions use slyly expres| +59306|304913|O|220705.95|1995-06-19|4-NOT SPECIFIED|Clerk#000004218|0|cross the blithely final braid| +59307|663245|F|10715.96|1993-11-11|1-URGENT|Clerk#000003917|0|efully final accounts; car| +59308|654106|O|65022.24|1996-11-12|2-HIGH|Clerk#000000932|0|fully regular frays. excuses past the regular requests w| +59309|53231|O|102750.21|1998-05-30|4-NOT SPECIFIED|Clerk#000000442|0|he slyly pending deposits. slyly special asymptotes | +59310|649720|O|260971.35|1996-08-28|5-LOW|Clerk#000003520|0|furiously unusual fr| +59311|576145|F|33904.33|1994-10-09|5-LOW|Clerk#000001467|0|regular ideas haggle furiously quickly final requests; even depe| +59336|2182|O|149773.04|1997-03-17|1-URGENT|Clerk#000000964|0|ously regular theodolites. brave | +59337|640639|F|194545.75|1993-08-17|3-MEDIUM|Clerk#000003654|0|usly regular foxes mold regular accounts. carefully regular a| +59338|213142|O|265218.67|1997-02-06|5-LOW|Clerk#000001306|0| asymptotes dazzle ruthlessly. ideas above | +59339|258670|F|15106.48|1993-12-09|4-NOT SPECIFIED|Clerk#000004523|0| requests. furiously express accoun| +59340|465451|O|98085.13|1998-05-15|4-NOT SPECIFIED|Clerk#000003061|0|e carefully ironic instru| +59341|314104|F|115741.55|1994-06-22|2-HIGH|Clerk#000000084|0|fully after the fluffily silent ac| +59342|642520|O|312540.17|1997-08-19|2-HIGH|Clerk#000002747|0|sual deposits boost slyly about the furiously pending | +59343|332809|O|13775.29|1995-08-15|5-LOW|Clerk#000004340|0|ts cajole quickly furiously regular requests. furiously speci| +59368|745748|F|80915.34|1994-10-15|2-HIGH|Clerk#000002178|0|cies. blithely even de| +59369|529891|O|161256.88|1998-04-07|3-MEDIUM|Clerk#000000262|0| are carefully. quickly final foxes use carefully about the furiousl| +59370|351344|O|204905.92|1997-04-04|1-URGENT|Clerk#000000707|0|deposits. quickly express requests| +59371|282916|F|156501.74|1993-05-20|2-HIGH|Clerk#000003333|0|unts? quickly express| +59372|694657|O|45969.73|1997-05-26|2-HIGH|Clerk#000001281|0|ter the quickly express deposits. regular theodolites sleep furiousl| +59373|566725|F|66112.81|1992-02-16|5-LOW|Clerk#000002951|0| wake quickly according to the instructions; blithely pending deposits| +59374|671422|F|103051.49|1994-02-09|4-NOT SPECIFIED|Clerk#000001030|0|efully special deposits cajole furi| +59375|78904|O|68286.21|1997-02-20|1-URGENT|Clerk#000001022|0| carefully across the c| +59400|112987|F|66160.96|1992-05-15|1-URGENT|Clerk#000004339|0|ajole. slyly ironic| +59401|695516|O|109062.15|1997-12-25|3-MEDIUM|Clerk#000004785|0|al, unusual packages according to the carefully ironic packa| +59402|25252|O|48512.94|1997-07-28|3-MEDIUM|Clerk#000000112|0|ress packages after the final requests cajole fu| +59403|659692|O|244561.47|1997-12-15|2-HIGH|Clerk#000001743|0|efully carefully special pac| +59404|168391|O|188861.80|1996-04-29|2-HIGH|Clerk#000000352|0|gular pinto beans. slyly regular requests nag fluffily bold packages. blithe| +59405|370504|O|76576.88|1997-04-19|3-MEDIUM|Clerk#000003984|0|hes. idle theodolites sleep at the ironic platelets. blithel| +59406|533119|O|124907.25|1996-11-28|5-LOW|Clerk#000002661|0|posits against the blithely final packages sleep daring, brave pinto beans. f| +59407|603586|F|39677.51|1994-10-08|1-URGENT|Clerk#000002050|0|excuses. slyly express theodolites cajole care| +59432|698221|F|213605.41|1992-04-14|1-URGENT|Clerk#000003781|0| are blithely. furiously pending pinto beans hag| +59433|492709|O|143097.63|1996-09-19|2-HIGH|Clerk#000001160|0|slyly against the qui| +59434|202202|O|231880.26|1997-05-12|4-NOT SPECIFIED|Clerk#000003567|0| ironically special packages would are silently after the quickl| +59435|155395|F|2947.38|1993-08-07|1-URGENT|Clerk#000004830|0|tly special theodolites. furiously silent platelets haggle bravely blithely| +59436|193565|F|302874.78|1993-04-30|5-LOW|Clerk#000003275|0|ths cajole bold asymptotes. carefully pe| +59437|486976|F|174474.13|1994-01-28|4-NOT SPECIFIED|Clerk#000001782|0|unts cajole after the furiously final asymptotes. pending, slow idea| +59438|594701|O|75132.83|1997-10-19|3-MEDIUM|Clerk#000004523|0| excuses haggle slyly| +59439|634057|F|48466.49|1994-07-01|3-MEDIUM|Clerk#000003730|0|blithely? quickly even accounts sleep s| +59464|571516|O|162481.25|1995-10-02|3-MEDIUM|Clerk#000004592|0|al pinto beans. blithel| +59465|187135|O|54374.26|1996-02-03|2-HIGH|Clerk#000000668|0|ts around the blithely ironic courts haggle furiously about| +59466|412913|F|64091.12|1992-05-17|5-LOW|Clerk#000002047|0|inst the carefully ironic dolphins b| +59467|66286|O|63283.26|1995-09-06|4-NOT SPECIFIED|Clerk#000000785|0|nusual theodolites. slyly regular asy| +59468|308248|F|66260.54|1992-05-30|2-HIGH|Clerk#000002988|0|special deposits. furiously final packages boost about the packages. e| +59469|473213|O|85030.36|1996-01-28|4-NOT SPECIFIED|Clerk#000002316|0|ithely across the dependencies. carefully f| +59470|286180|F|150573.77|1992-01-29|2-HIGH|Clerk#000001083|0|ithely special waters. final instructions cajole ac| +59471|63001|F|198810.21|1994-12-22|5-LOW|Clerk#000000934|0|regular asymptotes. special requests according to the blithely regular ideas | +59496|584020|O|131778.73|1997-06-08|5-LOW|Clerk#000000173|0|ully. unusual, final de| +59497|353848|F|113912.72|1993-03-05|5-LOW|Clerk#000004705|0|ts. ironic, even deposits cajole boldly. dependencies e| +59498|340741|P|191238.49|1995-03-11|5-LOW|Clerk#000003331|0| theodolites. fluffil| +59499|583039|F|32857.24|1993-08-11|2-HIGH|Clerk#000004411|0|press deposits according to the furiously unusual deposits sleep fluffily un| +59500|355765|F|85383.72|1992-12-02|1-URGENT|Clerk#000000182|0|uffily even requests wake alongside of the ironic deposits. perman| +59501|321998|F|224899.09|1994-12-23|4-NOT SPECIFIED|Clerk#000000279|0|sts. blithely unusual | +59502|557686|F|193279.50|1992-08-21|2-HIGH|Clerk#000003164|0| according to the dolphins wake blithely regular requests. bl| +59503|259207|O|235457.65|1998-05-13|3-MEDIUM|Clerk#000003557|0| furiously final requests. final packages across the bold | +59528|459134|F|103649.21|1992-09-11|3-MEDIUM|Clerk#000002064|0| the slyly express dolphins| +59529|660656|F|148932.86|1993-11-12|4-NOT SPECIFIED|Clerk#000003948|0|y regular theodolites in place of the slyly regular packages wake dog| +59530|631930|O|132697.95|1998-04-18|3-MEDIUM|Clerk#000001059|0|r packages. slyly final requests above the even foxes affix furiously eve| +59531|69883|O|36310.02|1995-10-18|2-HIGH|Clerk#000002570|0|uffily. ironic, ironic packages wake blithe| +59532|15772|F|120165.06|1994-12-08|1-URGENT|Clerk#000004926|0|mong the bold, idle pack| +59533|307298|O|278384.72|1998-06-24|1-URGENT|Clerk#000002236|0|accounts for the blithely regular accounts believe furiously blithely ex| +59534|242635|F|303306.68|1994-07-12|5-LOW|Clerk#000003194|0| even, express gifts across the quickly ironic | +59535|190601|O|70667.96|1998-05-08|1-URGENT|Clerk#000002852|0|final, unusual ideas sol| +59560|178367|O|178276.52|1995-11-15|4-NOT SPECIFIED|Clerk#000001289|0|fully regular accounts believe sly| +59561|60134|O|192240.28|1996-01-04|4-NOT SPECIFIED|Clerk#000001142|0| patterns boost blithely against the fluffily unusua| +59562|409022|O|44072.09|1995-05-08|1-URGENT|Clerk#000003993|0|nal requests are slyly final plate| +59563|681989|O|195461.80|1997-12-15|5-LOW|Clerk#000001297|0|ual, regular accounts. regular reque| +59564|686920|F|133437.71|1992-01-04|2-HIGH|Clerk#000001946|0|thely ironic pains are blithely. iro| +59565|288187|F|327643.74|1993-01-26|5-LOW|Clerk#000000823|0|inos. final accounts affix carefully. even deposits integrate across the ev| +59566|43357|F|33380.39|1992-10-24|3-MEDIUM|Clerk#000002284|0|eans are against the fluffily thin asymptotes. furiously regular| +59567|431413|O|179006.91|1998-05-17|5-LOW|Clerk#000003783|0|ess packages. accounts wake quickly furi| +59592|489826|O|299840.00|1997-03-27|3-MEDIUM|Clerk#000004820|0| packages. ironic packages | +59593|502735|O|155389.98|1996-11-03|1-URGENT|Clerk#000000043|0|old asymptotes among the ideas integrate carefully furiously | +59594|703306|O|169046.02|1997-08-31|2-HIGH|Clerk#000000037|0|ges. fluffily final packages according to the slyly final ideas thr| +59595|461093|F|232358.22|1993-12-01|1-URGENT|Clerk#000001281|0|furiously even warhorses. quickly special orbits integrate slyly express a| +59596|581998|O|284451.11|1996-10-17|2-HIGH|Clerk#000001455|0|lly. even dependencies against | +59597|135277|O|63560.07|1998-06-09|5-LOW|Clerk#000002162|0|carefully blithely special sentiments; ironic| +59598|344806|O|173670.89|1996-05-03|3-MEDIUM|Clerk#000000387|0|, regular requests affix slyly past the fluffily regular theod| +59599|648965|O|247265.97|1997-01-30|2-HIGH|Clerk#000003301|0|inst the packages. blithely unusual packages across the| +59624|645043|F|204244.97|1993-12-24|5-LOW|Clerk#000003591|0|. final deposits boost blithely deposits. regular theodolites are quickly pac| +59625|732133|O|314196.23|1996-05-23|1-URGENT|Clerk#000004788|0|ng dependencies sleep amo| +59626|436864|F|63518.17|1994-04-27|2-HIGH|Clerk#000004180|0|he furiously bold deposits. blithely pending ideas cajole blithely. accounts | +59627|590461|O|59979.96|1996-03-18|1-URGENT|Clerk#000002129|0|al instructions will have to ca| +59628|606439|F|83831.78|1992-04-06|2-HIGH|Clerk#000002500|0|ans. ideas nag about the carefully express deposits. bold, bold dug| +59629|660527|F|142080.21|1994-05-20|2-HIGH|Clerk#000001353|0|ely even accounts detect permanently above the reque| +59630|710752|O|275987.75|1997-08-22|1-URGENT|Clerk#000001759|0|use carefully final account| +59631|336887|O|142802.69|1997-05-10|1-URGENT|Clerk#000002537|0|olphins sleep carefully. accounts a| +59656|309598|F|257447.57|1993-11-08|2-HIGH|Clerk#000003865|0|r deposits haggle furiously. blithely pending de| +59657|640337|O|244190.74|1996-02-23|4-NOT SPECIFIED|Clerk#000002000|0|gular deposits. ideas haggle carefully carefully idle requests. | +59658|387974|O|21507.42|1997-01-09|3-MEDIUM|Clerk#000001752|0|dencies affix according to the| +59659|166309|O|26493.76|1998-06-06|2-HIGH|Clerk#000002436|0| carefully regular ideas. carefully pending accounts a| +59660|643265|F|257626.08|1992-08-25|5-LOW|Clerk#000001553|0| regular asymptotes above the ironic instructions haggle ca| +59661|98393|F|290343.30|1993-04-15|3-MEDIUM|Clerk#000000760|0| slyly even accounts. carefully unusual theodolit| +59662|688885|F|55593.71|1994-06-17|3-MEDIUM|Clerk#000000165|0|ructions haggle according to the asymptotes. furi| +59663|314510|O|80281.19|1996-07-31|5-LOW|Clerk#000001885|0|ccounts sublate. quick| +59688|711710|F|182730.24|1993-10-13|5-LOW|Clerk#000001971|0|ly carefully bold requests. special, regular packages against the furio| +59689|707227|F|77584.71|1992-06-21|1-URGENT|Clerk#000000939|0|totes serve ironic,| +59690|341227|F|164717.59|1995-01-09|4-NOT SPECIFIED|Clerk#000001124|0|ironic, unusual orbits use unusual warthogs. furi| +59691|497011|F|235951.67|1993-11-20|1-URGENT|Clerk#000004089|0|ggle deposits. furiously ironic instructions sleep fluffily even forges. bl| +59692|506590|F|81659.18|1992-09-17|4-NOT SPECIFIED|Clerk#000004182|0|ularly special instructions. even foxes c| +59693|252076|F|170302.68|1995-02-02|3-MEDIUM|Clerk#000000256|0|y express notornis. quick| +59694|615688|O|144981.91|1996-01-22|1-URGENT|Clerk#000003812|0|tes sleep fluffily silent deposits. fluffily regular deposits sleep slyl| +59695|93746|O|60959.04|1995-10-23|5-LOW|Clerk#000004556|0|nts. slyly ironic the| +59720|583144|F|57993.50|1994-04-30|3-MEDIUM|Clerk#000004759|0| regular excuses are furiously furiously express requests. final| +59721|628720|F|37380.27|1992-06-07|4-NOT SPECIFIED|Clerk#000001751|0|e against the bold, pe| +59722|116374|F|197757.54|1994-10-19|5-LOW|Clerk#000004602|0|d pinto beans. furiously bold pinto beans wake accounts. slyly| +59723|614954|O|228791.28|1996-10-26|3-MEDIUM|Clerk#000003218|0|nal, final instructions. quickly regular ideas| +59724|525491|O|137778.49|1995-12-12|4-NOT SPECIFIED|Clerk#000004228|0|xpress courts wake after the furiously ruthless packages. spec| +59725|668029|F|30307.71|1993-05-01|2-HIGH|Clerk#000002126|0|ernes against the even deposits | +59726|48890|O|167769.84|1997-05-25|4-NOT SPECIFIED|Clerk#000000520|0|. final requests haggle among the blithely unusual packages. carefully speci| +59727|431108|F|183756.49|1992-05-01|1-URGENT|Clerk#000003838|0|ly ironic dependencies along the slyl| +59752|617384|O|11423.64|1996-11-21|1-URGENT|Clerk#000004037|0|y regular deposits are quickly alongside| +59753|106364|F|259502.84|1994-02-09|5-LOW|Clerk#000002215|0|s are across the furiously final accounts. pack| +59754|397172|O|159475.73|1996-03-21|4-NOT SPECIFIED|Clerk#000000689|0|ymptotes haggle alongside of the blit| +59755|269260|F|157320.69|1992-03-26|4-NOT SPECIFIED|Clerk#000003536|0|y express deposits. ironic packages haggle. slyly | +59756|697864|O|264720.28|1995-12-27|5-LOW|Clerk#000003429|0|regular foxes about the even, pending ideas sleep quickly regular platelets. | +59757|494014|F|73288.36|1992-03-07|4-NOT SPECIFIED|Clerk#000004799|0|ily pending accounts cajole furiously carefully express foxes. blithely i| +59758|387764|O|127591.15|1995-07-15|4-NOT SPECIFIED|Clerk#000003372|0|side of the final packages. quickly final sheaves a| +59759|393979|O|147794.99|1996-05-17|2-HIGH|Clerk#000002515|0|ounts after the even multipliers should sleep above| +59784|594988|O|61478.63|1997-06-13|3-MEDIUM|Clerk#000002619|0|es wake quickly bold deposits.| +59785|183790|F|91285.07|1994-05-06|1-URGENT|Clerk#000001615|0|arefully even accounts among the even deposits integrate quickly blithe| +59786|454498|O|261856.61|1996-04-09|1-URGENT|Clerk#000004486|0|thely even accounts are blithely. ironic reques| +59787|741217|O|71423.63|1997-06-11|1-URGENT|Clerk#000004077|0|l packages nag carefully along | +59788|104531|F|120829.58|1994-06-30|4-NOT SPECIFIED|Clerk#000002458|0|ed packages sleep finally pending, ir| +59789|342536|O|184709.33|1997-04-06|1-URGENT|Clerk#000002277|0|arefully. carefully pending packages along the blithely final pac| +59790|745903|O|37584.31|1997-07-29|1-URGENT|Clerk#000000934|0|pinto beans. regular requests cajole furiously. fluf| +59791|116074|F|58194.15|1994-06-16|2-HIGH|Clerk#000002839|0|s wake at the ironic foxes. idle, final | +59816|72863|O|184457.96|1996-11-01|5-LOW|Clerk#000004851|0|press asymptotes-- ironic instructions doubt carefully-- fur| +59817|594706|F|292587.18|1994-12-02|3-MEDIUM|Clerk#000003476|0|eans use carefully above the quickly ironic accounts. slyly unusual| +59818|722836|O|9651.56|1998-05-24|3-MEDIUM|Clerk#000000478|0|fluffily according to the carefully special pinto beans. spe| +59819|203299|O|63325.17|1995-05-19|1-URGENT|Clerk#000001297|0| special requests doze. quickly iro| +59820|585008|O|77851.13|1996-11-12|1-URGENT|Clerk#000003953|0| dolphins are fluffily after the blithely ironic instructions. quickly unusu| +59821|475348|F|105906.87|1993-04-07|4-NOT SPECIFIED|Clerk#000000947|0|ideas dazzle furiously at the ironic, even requests. unusu| +59822|144635|O|252010.46|1995-09-26|2-HIGH|Clerk#000001951|0|d instructions breach along the blithely even packages. unusual ide| +59823|126518|F|83631.62|1995-03-26|1-URGENT|Clerk#000000952|0|ncies. regular pinto beans doze even, express the| +59848|135578|O|78304.44|1997-07-27|5-LOW|Clerk#000003663|0|xpress deposits detect furiously. s| +59849|157813|F|142960.23|1992-01-04|1-URGENT|Clerk#000003107|0|into beans are final pinto beans. regular courts at the blithely | +59850|331604|O|41964.43|1996-02-22|3-MEDIUM|Clerk#000003847|0|tes? ideas use quickly. furiously | +59851|6559|O|114272.38|1995-11-25|5-LOW|Clerk#000000467|0|aids are blithely carefully re| +59852|705538|F|312281.01|1993-08-11|2-HIGH|Clerk#000002131|0|theodolites. special deposits lose blithely furiously regular asympt| +59853|470212|F|13541.89|1993-05-31|4-NOT SPECIFIED|Clerk#000003038|0|foxes poach across the unu| +59854|96184|O|256303.76|1997-09-18|5-LOW|Clerk#000002880|0|ent packages. even foxes alongside of the slyly express acco| +59855|283144|O|153935.59|1997-08-24|4-NOT SPECIFIED|Clerk#000004182|0|bove the furiously ironic | +59880|27421|O|124577.85|1996-10-14|2-HIGH|Clerk#000002710|0|ns use according to the quickly stealthy courts. blithely regular | +59881|344254|O|215262.63|1998-04-17|2-HIGH|Clerk#000002026|0| cajole? quickly final requests sleep according| +59882|360031|O|1570.44|1998-02-14|1-URGENT|Clerk#000003115|0|ies sleep fluffily. daringly ironic packages are special| +59883|35434|O|218417.49|1998-03-18|3-MEDIUM|Clerk#000000064|0|kages boost slyly. regular deposits around the final, regular ex| +59884|31945|F|59506.41|1992-04-16|4-NOT SPECIFIED|Clerk#000004188|0|y regular theodolit| +59885|623561|O|281082.39|1997-07-18|4-NOT SPECIFIED|Clerk#000003501|0| slyly final requests nag atop the i| +59886|426406|O|289570.82|1996-10-04|5-LOW|Clerk#000001874|0|onic, permanent deposits sleep| +59887|343727|O|194553.63|1995-07-20|3-MEDIUM|Clerk#000001058|0|y unusual foxes cajole blithely along the carefully final warhor| +59912|511090|F|142998.39|1995-02-08|1-URGENT|Clerk#000001970|0|ily pending theodolites boost furiously slyly spec| +59913|131621|F|109911.08|1994-08-31|3-MEDIUM|Clerk#000001176|0|ites haggle blithely. furiously pending requests integr| +59914|396266|O|286690.25|1997-06-07|1-URGENT|Clerk#000004595|0|und the pending ideas. deposits use slyly slyly express courts. pendi| +59915|26689|O|72755.34|1995-12-11|1-URGENT|Clerk#000002578|0|across the special, silent accou| +59916|36863|O|77109.58|1998-02-28|3-MEDIUM|Clerk#000000539|0| the fluffily special foxes wake silent, regular packages. even packag| +59917|52252|F|156251.55|1995-02-22|3-MEDIUM|Clerk#000002460|0|n accounts cajole furiously. e| +59918|674695|F|92018.95|1992-03-28|2-HIGH|Clerk#000000872|0|ly even requests use | +59919|317725|F|29099.08|1993-07-20|4-NOT SPECIFIED|Clerk#000002262|0| accounts engage re| +59944|740107|O|178439.26|1996-07-01|1-URGENT|Clerk#000004115|0|ts. ideas thrash carefully regular, ironic pinto bea| +59945|227369|O|164606.49|1996-11-15|1-URGENT|Clerk#000003372|0|es before the forges haggle along the special packages! furiously regular depo| +59946|132559|F|48157.62|1992-11-01|2-HIGH|Clerk#000001812|0| unwind. slyly bold accounts af| +59947|415405|O|203877.56|1995-11-11|2-HIGH|Clerk#000001183|0|ding ideas use fluffily regular, even platelets. ideas cajole blit| +59948|681613|O|73307.94|1998-06-04|5-LOW|Clerk#000002035|0|refully silent patterns. pinto beans | +59949|360310|O|43266.86|1998-04-18|3-MEDIUM|Clerk#000004997|0|s. special, regular ideas cajole slyl| +59950|204847|O|304135.73|1997-11-10|3-MEDIUM|Clerk#000004243|0|ests affix. permanent dolphins use slyly ironic waters. | +59951|363448|F|411152.78|1992-09-16|2-HIGH|Clerk#000001018|0|refully unusual packages cajole evenly. regular, ironic theodolites| +59976|465619|F|115644.76|1993-06-01|2-HIGH|Clerk#000002905|0|cies. slyly special platelets detect slyly. regular deposits arou| +59977|155353|F|389214.33|1993-08-28|1-URGENT|Clerk#000002277|0|unusual theodolites. furiously regular pear| +59978|246323|F|72628.06|1994-01-04|5-LOW|Clerk#000000418|0|nt grouches haggle blithely slyly final reque| +59979|699853|F|81050.86|1992-06-27|5-LOW|Clerk#000004103|0|gle ruthlessly. carefully silent deposits thrash | +59980|161053|F|100784.09|1994-11-09|5-LOW|Clerk#000001907|0|ular deposits are carefully alo| +59981|67117|F|268764.05|1993-01-17|1-URGENT|Clerk#000004485|0|ters. unusual deposits are fluffily ironic attainments! even, ironic| +59982|4294|O|177526.08|1996-02-26|2-HIGH|Clerk#000004764|0|f the blithely bold excuses: even dependencies sleep. bold a| +59983|136924|O|202686.99|1996-06-29|5-LOW|Clerk#000004550|0|efully express accounts sleep around t| +60008|266860|O|31763.62|1996-03-21|2-HIGH|Clerk#000000359|0|lessly according to the slyly final ideas. carefully final instructions wak| diff --git a/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u3 b/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u3 new file mode 100644 index 0000000..9db4225 --- /dev/null +++ b/batch-tool/src/test/resources/tpch/insert-5g-3/orders.tbl.u3 @@ -0,0 +1,7500 @@ +60009|107242|F|47059.29|1995-04-07|2-HIGH|Clerk#000002522|0|eposits. slyly unusual deposits caj| +60010|140573|P|288534.14|1995-04-09|5-LOW|Clerk#000000093|0|cross the carefully final foxes. blithely silent packages haggle blithe| +60011|101480|O|69744.84|1998-05-31|2-HIGH|Clerk#000002405|0|ly. blithely bold requests detect. blithely pending dependencies po| +60012|65474|F|136898.29|1992-09-13|4-NOT SPECIFIED|Clerk#000004299|0|even courts boost carefully among the blithely even accounts| +60013|157684|O|113684.41|1998-05-22|4-NOT SPECIFIED|Clerk#000001748|0|ep furiously at the carefully even | +60014|420041|O|79989.90|1998-05-07|4-NOT SPECIFIED|Clerk#000002314|0|ments sleep quickly platelets. fluffily| +60015|617735|F|204264.26|1992-06-05|2-HIGH|Clerk#000003375|0|y alongside of the carefully regular requests. furiously pendi| +60040|10502|O|61604.14|1997-02-19|2-HIGH|Clerk#000000880|0|le blithely unusual pinto beans. carefully final| +60041|254939|F|79414.97|1993-03-27|5-LOW|Clerk#000004335|0| slyly even foxes. blithel| +60042|746074|F|107958.21|1992-07-28|2-HIGH|Clerk#000002626|0|slyly unusual decoys nag furi| +60043|211|O|65966.48|1996-10-19|2-HIGH|Clerk#000002141|0|st carefully. asymptotes sleep carefully after the final esc| +60044|536629|O|216233.85|1997-08-18|1-URGENT|Clerk#000004038|0| quickly. carefully bold pinto beans above the furi| +60045|367819|F|203543.31|1994-03-30|2-HIGH|Clerk#000004462|0|ven pinto beans. express theodolite| +60046|405527|O|44010.82|1995-10-08|2-HIGH|Clerk#000000401|0|endencies affix furiously along the sly| +60047|438178|O|144192.29|1996-02-05|4-NOT SPECIFIED|Clerk#000000779|0|s use blithely. final cour| +60072|189038|O|96315.38|1997-03-05|1-URGENT|Clerk#000001242|0|ously special packages are. carefully busy p| +60073|145613|O|198966.56|1996-09-02|4-NOT SPECIFIED|Clerk#000000301|0|eposits. even platelets boost regular deposits. fu| +60074|65204|O|118172.97|1997-08-22|3-MEDIUM|Clerk#000004092|0|st the unusual deposits wake furiously even packages. carefully special pa| +60075|131164|F|161427.18|1992-07-16|5-LOW|Clerk#000004894|0|even deposits along the carefully express forges cajole enticingly against th| +60076|205472|O|151273.96|1998-07-16|4-NOT SPECIFIED|Clerk#000004703|0|s are fluffily alongside of the pending, even packages. fluffily bol| +60077|367649|O|233606.16|1997-06-03|4-NOT SPECIFIED|Clerk#000000803|0|totes nag. regular, regular requests hind| +60078|565666|O|53476.93|1996-02-14|4-NOT SPECIFIED|Clerk#000004798|0| final orbits cajole slyly ev| +60079|116563|O|169570.55|1998-07-20|4-NOT SPECIFIED|Clerk#000003660|0|onic theodolites use carefully along the quickly ironic dependencies. flu| +60104|64135|O|75271.10|1997-09-18|2-HIGH|Clerk#000002258|0|theodolites around th| +60105|161381|F|328880.03|1993-07-09|5-LOW|Clerk#000000286|0|haggle carefully. ironic asy| +60106|327781|F|164637.99|1993-03-14|5-LOW|Clerk#000004405|0|ly even patterns are fluffily along the accounts. unusual dependenci| +60107|233992|F|78377.85|1992-11-13|3-MEDIUM|Clerk#000001012|0|the even pinto beans. careful, final for| +60108|428362|F|296428.38|1994-01-11|4-NOT SPECIFIED|Clerk#000002081|0|eep. pending pinto beans cajo| +60109|204499|O|90904.00|1996-09-03|3-MEDIUM|Clerk#000004225|0|ages according to the packages nag ab| +60110|510611|F|88247.50|1993-06-15|2-HIGH|Clerk#000003073|0|y regular forges. pinto beans sleep. ruthless, careful deposits| +60111|338054|F|174114.09|1994-09-14|1-URGENT|Clerk#000000207|0|lyly doggedly express instructions. foxe| +60136|421426|F|129369.22|1993-07-03|5-LOW|Clerk#000002358|0| packages according to the furiously | +60137|645592|O|112439.29|1996-05-05|4-NOT SPECIFIED|Clerk#000001966|0| platelets wake furiously along the slyly express deposits. slyly| +60138|196480|O|254329.28|1997-03-30|2-HIGH|Clerk#000003026|0|pending foxes wake. slyly ironic instruc| +60139|708466|F|115057.89|1993-01-26|3-MEDIUM|Clerk#000000343|0|ogs above the furiously final accounts are furiously special, final theodo| +60140|183028|F|30429.88|1992-03-22|3-MEDIUM|Clerk#000004878|0|al packages are according to the final, unusual courts. express, even deposits| +60141|369322|P|266985.72|1995-05-31|2-HIGH|Clerk#000002495|0|y blithely express | +60142|169618|O|236579.44|1997-11-15|4-NOT SPECIFIED|Clerk#000003148|0| beans. accounts alongside of the regular, bold multipliers promise blithely | +60143|737678|F|113273.31|1995-03-11|1-URGENT|Clerk#000001647|0|odolites wake at the carefully | +60168|639370|F|212075.39|1994-03-27|1-URGENT|Clerk#000004286|0|ep. regular deposits wake slyly above the final foxes. slyly bo| +60169|638260|F|68860.50|1993-12-30|4-NOT SPECIFIED|Clerk#000003250|0|n foxes after the special reque| +60170|716387|F|20147.21|1993-12-28|3-MEDIUM|Clerk#000002722|0|oost. blithely pending deposits are blithely bold pinto beans.| +60171|563911|F|117866.14|1994-06-11|4-NOT SPECIFIED|Clerk#000000313|0|l requests after the blithely re| +60172|649109|F|43417.21|1992-09-24|3-MEDIUM|Clerk#000000181|0|telets thrash carefully. pending dep| +60173|61108|F|1846.89|1993-05-24|2-HIGH|Clerk#000001720|0|posits use slyly quick| +60174|282520|F|35298.99|1992-10-14|1-URGENT|Clerk#000004080|0|ously bold asymptotes. packages are furiously| +60175|33568|O|107361.63|1998-03-27|3-MEDIUM|Clerk#000000666|0| among the slyly final instruction| +60200|170050|O|61151.23|1998-04-14|3-MEDIUM|Clerk#000001311|0|press excuses according to the unusual requests wake carefully| +60201|497959|O|28020.16|1998-05-02|3-MEDIUM|Clerk#000004751|0| blithely unusual deposits use blithely above the quickly even deposits. care| +60202|667759|F|172152.68|1993-02-17|4-NOT SPECIFIED|Clerk#000002847|0|ckly. furiously bold d| +60203|21895|O|141770.13|1998-03-18|2-HIGH|Clerk#000004244|0|nal excuses cajole carefully bold instructions. | +60204|475619|O|65412.25|1995-08-20|3-MEDIUM|Clerk#000000889|0|uffily final pinto beans. slyly final braids grow beneath the express theodol| +60205|214274|O|205270.14|1996-08-29|3-MEDIUM|Clerk#000000265|0|fluffily quiet platelets. slyly express deposits thrash blithely acco| +60206|548530|F|156233.84|1992-08-03|4-NOT SPECIFIED|Clerk#000002650|0|slyly pending instruct| +60207|143188|O|261213.22|1996-01-31|5-LOW|Clerk#000001740|0|g deposits. furiously regular request| +60232|535552|O|94712.21|1996-03-09|5-LOW|Clerk#000003468|0| regular platelets promise. carefully express instructions| +60233|251074|O|231771.69|1997-09-05|3-MEDIUM|Clerk#000001357|0|osits cajole. foxes detect blith| +60234|294133|F|221562.91|1993-09-20|1-URGENT|Clerk#000000219|0|le regular platelets. express deposits w| +60235|236681|F|110469.88|1994-04-22|5-LOW|Clerk#000000004|0|ironic accounts; quickly regula| +60236|634219|O|199790.02|1998-07-18|3-MEDIUM|Clerk#000001634|0|eans cajole platelets| +60237|313558|O|133648.23|1998-07-23|5-LOW|Clerk#000004179|0| accounts. carefully ironic requests cajole furious| +60238|450820|O|56667.03|1996-10-29|3-MEDIUM|Clerk#000004599|0|r deposits. frets ab| +60239|415795|O|62364.62|1998-05-21|1-URGENT|Clerk#000002411|0|unts. fluffily special sauternes| +60264|497182|F|178170.32|1994-04-13|2-HIGH|Clerk#000000630|0|es about the even packages cajole acros| +60265|371165|F|159852.73|1993-01-20|3-MEDIUM|Clerk#000004281|0| instructions are carefully against the final deposits. blithely express packa| +60266|404257|P|143645.48|1995-03-16|4-NOT SPECIFIED|Clerk#000004805|0|ecial accounts. sly, final co| +60267|64394|F|225473.58|1992-09-27|1-URGENT|Clerk#000000074|0|the slyly final pinto beans. express theodolites cajole slyly acros| +60268|15770|O|288737.32|1997-07-18|2-HIGH|Clerk#000000446|0|l deposits. quickly regular orbit| +60269|283120|F|102965.23|1994-04-14|5-LOW|Clerk#000004562|0|out the furiously iro| +60270|389522|O|196609.58|1997-11-26|5-LOW|Clerk#000001761|0|among the furiously even accounts. bold, unusual instructions wake per| +60271|686860|F|170530.25|1994-10-19|3-MEDIUM|Clerk#000002230|0|owly bold foxes sleep quickly along the even| +60296|43447|O|133347.30|1997-10-09|1-URGENT|Clerk#000004945|0|blithely before the quickly even theodolit| +60297|458947|O|203979.96|1996-01-16|2-HIGH|Clerk#000004702|0|requests wake slyly according to the furiously ironic requests. bold pi| +60298|489356|F|157808.82|1993-02-27|1-URGENT|Clerk#000003886|0| dependencies cajole slyly. slyly ironic requests believe slyly at the slyl| +60299|99409|O|43939.57|1997-12-07|3-MEDIUM|Clerk#000003016|0|lly after the carefully final instructions. unusual, regular pa| +60300|504092|F|158117.59|1995-01-09|5-LOW|Clerk#000002232|0|slyly regular theodolites are slyly across the slyly final depo| +60301|271765|O|209362.06|1997-01-08|4-NOT SPECIFIED|Clerk#000001858|0|ts can hang along the dependencie| +60302|43328|O|30237.52|1997-11-21|4-NOT SPECIFIED|Clerk#000000929|0|e slyly regular pinto beans. platelets b| +60303|697621|F|38026.19|1993-01-26|3-MEDIUM|Clerk#000000466|0|iously. express theodolites according to the ironic fox| +60328|132799|F|46823.87|1992-01-26|1-URGENT|Clerk#000003450|0| special tithes. slyly ironic instructions are. pinto beans impres| +60329|693040|F|20305.48|1992-12-16|2-HIGH|Clerk#000003233|0|ccounts-- blithely express instructions ca| +60330|401414|O|330951.44|1995-08-06|5-LOW|Clerk#000003854|0|fily even deposits use carefully. furiously fi| +60331|304738|O|299724.74|1995-08-27|4-NOT SPECIFIED|Clerk#000000838|0|refully final packages detect blithely alongside of | +60332|705676|F|316479.35|1994-06-12|1-URGENT|Clerk#000004905|0|c warhorses. quickly regular theodolites us| +60333|537043|O|260461.24|1998-03-01|3-MEDIUM|Clerk#000002362|0|es. furiously even ideas sleep according to the furiously pendi| +60334|563185|F|299530.18|1993-12-09|1-URGENT|Clerk#000003103|0|ges nod quickly pending forges. even pinto beans haggle carefull| +60335|432166|O|164130.68|1996-09-18|4-NOT SPECIFIED|Clerk#000003541|0|lar instructions. fluffily express deposits grow fluffily. pending court| +60360|402661|F|314134.26|1994-02-09|5-LOW|Clerk#000001485|0|en sauternes. packages along the final courts hang furiously warth| +60361|263587|P|87043.59|1995-05-30|4-NOT SPECIFIED|Clerk#000001144|0|heodolites engage regular| +60362|574261|O|69355.77|1995-11-23|3-MEDIUM|Clerk#000002380|0| slyly blithely bold instructions. courts breach carefully against th| +60363|594367|F|55469.65|1992-10-26|1-URGENT|Clerk#000004568|0|nticingly regular ideas alongside of the asymptotes| +60364|255499|O|41659.27|1996-04-24|2-HIGH|Clerk#000002729|0|arefully special theodolites. slyly even accounts poach never ben| +60365|389461|O|183294.35|1996-08-03|4-NOT SPECIFIED|Clerk#000004785|0|rding to the quickl| +60366|396025|O|93583.32|1997-07-31|4-NOT SPECIFIED|Clerk#000003321|0|slyly regular dependencies nag carefully slyl| +60367|484349|F|166343.01|1993-11-15|1-URGENT|Clerk#000004867|0|ithely special ideas nag at the ironic, even packages. quickly silent ideas a| +60392|690443|F|72564.39|1993-06-03|5-LOW|Clerk#000003646|0|nd the blithely ironic courts sleep slyly final accounts. slyly unusual a| +60393|264325|F|38708.27|1993-08-21|2-HIGH|Clerk#000004711|0|cajole furiously along| +60394|234931|O|260538.51|1997-02-13|2-HIGH|Clerk#000002884|0|egular, final pearls cajole among the ironic realms. carefully | +60395|457684|O|166474.43|1997-08-31|5-LOW|Clerk#000004696|0|packages. slyly special accounts boost quickly furiously| +60396|272971|F|14513.26|1994-12-14|4-NOT SPECIFIED|Clerk#000003015|0|ainments use carefully quickly ironic accoun| +60397|65483|O|25557.48|1998-02-09|5-LOW|Clerk#000004272|0|carefully around the requests. carefully ironic excuses across the slyly | +60398|309136|O|39967.56|1997-05-30|3-MEDIUM|Clerk#000003680|0|cajole across the excuses| +60399|373549|O|38217.93|1995-09-18|4-NOT SPECIFIED|Clerk#000002611|0|lar, final requests. deposits above the unusual foxes integrate| +60424|714127|F|225977.33|1995-01-29|5-LOW|Clerk#000001797|0| quickly unusual excuses after the requests | +60425|78530|O|119628.66|1995-07-08|3-MEDIUM|Clerk#000002883|0|r requests. blithely even sauternes | +60426|600133|O|121465.79|1996-04-17|1-URGENT|Clerk#000001934|0|regular, bold accounts cajole carefully against the quickly expr| +60427|434768|O|101924.04|1996-08-30|1-URGENT|Clerk#000003987|0|lyly blithely quiet ideas. unusual, regular decoys m| +60428|634102|O|115192.47|1996-05-22|3-MEDIUM|Clerk#000004931|0|ong the carefully express instructions. quickly | +60429|587198|F|157505.40|1993-06-04|5-LOW|Clerk#000003341|0|the pending deposits. fluffily bold patterns sleep furiously against the p| +60430|522215|O|275679.18|1997-01-21|2-HIGH|Clerk#000001717|0|ully special deposits. furiously special packages boost carefull| +60431|365104|F|160563.08|1994-06-16|4-NOT SPECIFIED|Clerk#000002195|0| sleep fluffily unusual gifts. deposits according to the| +60456|528631|F|116204.50|1994-09-23|4-NOT SPECIFIED|Clerk#000001074|0|oost bravely special pin| +60457|174962|O|278449.59|1996-10-26|3-MEDIUM|Clerk#000003970|0|ubt. enticingly final foxes| +60458|571510|P|95967.32|1995-05-20|3-MEDIUM|Clerk#000003682|0|aggle furiously ruth| +60459|87401|O|74906.03|1997-08-08|5-LOW|Clerk#000001482|0|ave to x-ray slyly across the slyly ironic theodolites. furiously regular exc| +60460|443995|F|114277.44|1994-05-01|3-MEDIUM|Clerk#000002376|0|ing platelets integrate fluffily above the carefully even theodo| +60461|448765|O|294338.90|1996-10-27|5-LOW|Clerk#000002277|0|ses sleep slyly along the finally express theodolites. even accounts | +60462|364955|O|290045.89|1997-09-14|2-HIGH|Clerk#000003679|0|into beans unwind silent, even requests. carefully | +60463|287116|F|45825.45|1992-03-21|1-URGENT|Clerk#000000749|0|carefully bold theodoli| +60488|34528|O|275611.47|1996-11-06|4-NOT SPECIFIED|Clerk#000002626|0|bold requests. slyly final grouches wake blithely blithely bold id| +60489|561695|F|65037.49|1995-02-15|3-MEDIUM|Clerk#000000132|0|ackages. instructions cajole along the excuses. closely brave | +60490|141217|O|161465.29|1997-07-27|3-MEDIUM|Clerk#000001220|0|ress requests are requests! pending, regular sheaves boost bl| +60491|409924|F|61171.70|1992-11-25|4-NOT SPECIFIED|Clerk#000000724|0|ithely furiously bold theodolites| +60492|65495|F|48584.95|1993-08-02|2-HIGH|Clerk#000001810|0|pendencies sleep carefully bold, regular t| +60493|520189|O|312564.40|1995-06-20|3-MEDIUM|Clerk#000000388|0|ld deposits are slyly-- bold theodolites cajole blithely theodoli| +60494|53081|O|4043.28|1997-01-21|5-LOW|Clerk#000002036|0|ts. ironic, even pinto beans sleep quickl| +60495|372851|O|151810.62|1997-11-02|3-MEDIUM|Clerk#000003970|0|ymptotes nag blithely above the ironic | +60520|246638|O|293224.55|1996-12-27|2-HIGH|Clerk#000003220|0| always even packages alongside of the blithe reque| +60521|734225|F|169990.44|1993-02-10|4-NOT SPECIFIED|Clerk#000004833|0|structions. sometimes final deposits are. carefully ironic dolphins can h| +60522|357146|O|127122.12|1996-06-24|3-MEDIUM|Clerk#000002660|0|rding to the theodolites | +60523|286267|O|151912.80|1996-08-03|5-LOW|Clerk#000001280|0|r accounts. furiously ironic accounts sleep fluffily pending accounts. f| +60524|32017|O|261723.15|1996-02-12|3-MEDIUM|Clerk#000001438|0|ver silent warhorses. bold deposits wake fluffily enticing excus| +60525|358393|F|215806.40|1992-02-14|1-URGENT|Clerk#000002303|0|usly alongside of the final, final deposits. carefully iro| +60526|228428|O|70361.35|1997-10-15|5-LOW|Clerk#000004877|0| carefully regular theodolites wake finally quickly | +60527|679154|F|80862.01|1992-05-24|4-NOT SPECIFIED|Clerk#000001565|0|s sleep slyly carefully even instructions| +60552|276268|O|181762.87|1997-09-03|3-MEDIUM|Clerk#000002164|0|ts use. bold deposits detect carefully against the furiously even pinto | +60553|713998|O|18159.71|1997-01-02|2-HIGH|Clerk#000001782|0|ng the finally daring pinto beans haggle carefully ironic attainments. slyl| +60554|143506|F|134780.55|1993-11-24|2-HIGH|Clerk#000002930|0|sly pending deposits alongside of the fluffily unusual re| +60555|643906|F|109759.93|1993-04-22|5-LOW|Clerk#000001448|0|f the carefully ironic requests. slyly regular packages sleep s| +60556|373877|F|91124.05|1994-01-05|1-URGENT|Clerk#000002687|0|bove the fluffily final requests. express requests haggle blithely expres| +60557|250396|F|119764.97|1992-08-11|3-MEDIUM|Clerk#000002660|0|ding deposits. final accounts against the regular packages us| +60558|134104|F|149061.53|1992-09-14|2-HIGH|Clerk#000001578|0|y quickly alongside of the blith| +60559|104383|F|1601.09|1993-04-15|5-LOW|Clerk#000003685|0| requests cajole carefully. slyly ironi| +60584|96314|O|84790.85|1996-09-23|3-MEDIUM|Clerk#000004644|0|l dolphins wake against the carefully final asymptotes. slyly bold| +60585|235489|O|128593.68|1997-09-20|4-NOT SPECIFIED|Clerk#000001740|0|nal deposits. even packages are. furio| +60586|109657|F|217106.11|1992-01-07|1-URGENT|Clerk#000002661|0| fluffily express deposits. slyly even forges sleep furiou| +60587|248623|O|151558.99|1997-01-04|1-URGENT|Clerk#000000603|0| instructions haggle carefully blithely regular ideas. ex| +60588|351142|O|225029.05|1996-12-13|5-LOW|Clerk#000004417|0|ly regular theodolit| +60589|635617|O|147926.91|1995-10-14|3-MEDIUM|Clerk#000001070|0|al accounts above the furiously bold| +60590|561196|F|131187.96|1994-07-02|3-MEDIUM|Clerk#000001038|0|lyly special realms. unusual deposits use perman| +60591|13847|F|245559.21|1992-04-16|3-MEDIUM|Clerk#000004160|0|he unusual deposits. regular, regular deposits about the slyly even de| +60616|216881|O|55098.97|1995-08-11|2-HIGH|Clerk#000001006|0|ickly even instructi| +60617|111802|O|6076.85|1997-03-10|3-MEDIUM|Clerk#000003939|0|e fluffy accounts sleep quickly besides the carefully regul| +60618|293027|O|188354.58|1998-07-31|1-URGENT|Clerk#000002620|0|unts wake. furiously final foxes sublate furiously. deposits wake | +60619|403853|O|124251.89|1995-12-16|3-MEDIUM|Clerk#000002014|0|uffily regular frets haggle carefully pending packages. fluffily even ac| +60620|52928|F|308154.08|1993-03-27|4-NOT SPECIFIED|Clerk#000003896|0|kly ironic dolphins.| +60621|48308|O|193062.27|1998-04-30|3-MEDIUM|Clerk#000001887|0|n platelets are careful| +60622|404695|F|208656.65|1994-12-31|3-MEDIUM|Clerk#000004751|0|slyly according to the fluffily final theodolites. quickly final sheaves unti| +60623|696449|F|202064.72|1992-10-22|4-NOT SPECIFIED|Clerk#000002757|0|he accounts wake furiously furiously pending plat| +60648|706373|F|46691.42|1993-09-11|4-NOT SPECIFIED|Clerk#000001124|0|affix blithely. blithely bold packages wake eve| +60649|257767|F|232892.29|1993-04-18|5-LOW|Clerk#000003061|0| furiously express instructions. furiously even| +60650|265481|O|59109.68|1996-12-29|3-MEDIUM|Clerk#000002463|0|uriously stealthy req| +60651|179053|F|326347.00|1992-04-15|3-MEDIUM|Clerk#000000480|0|le blithely. slyly ironic deposits cajole. f| +60652|338329|F|128640.19|1993-10-16|3-MEDIUM|Clerk#000001894|0|es solve quickly. ironic theodolites print carefully ironic dependencies. sly| +60653|531731|O|163321.38|1996-12-20|2-HIGH|Clerk#000001902|0| packages. deposits haggle along the even, express patterns. accounts use. ca| +60654|537952|F|91994.56|1993-09-16|1-URGENT|Clerk#000000204|0| final theodolites use fluffily quickly regular deposits. fur| +60655|79342|F|138375.99|1994-10-05|3-MEDIUM|Clerk#000002517|0|key players wake blithely permanent asymptotes. final ideas hag| +60680|732292|O|111493.26|1995-12-08|2-HIGH|Clerk#000001209|0| final instructions wake above the bold requests.| +60681|111062|F|241567.89|1992-10-26|5-LOW|Clerk#000002333|0| express asymptotes above the slyly ironic requests boost s| +60682|618829|O|97587.90|1996-05-04|2-HIGH|Clerk#000004412|0| express ideas haggle final | +60683|394585|F|120019.53|1993-04-09|1-URGENT|Clerk#000004991|0|ccounts detect carefully finall| +60684|282754|O|27252.57|1996-07-05|3-MEDIUM|Clerk#000000837|0|ccounts are furiously against the blithely unusual p| +60685|230870|O|207964.74|1997-11-23|4-NOT SPECIFIED|Clerk#000001019|0|rding to the fluffily close theodolites. finally express accoun| +60686|470224|O|152849.08|1997-10-12|5-LOW|Clerk#000001252|0|aggle alongside of the final packages: quickly ironic ideas haggle. instru| +60687|281557|F|68632.36|1992-04-20|3-MEDIUM|Clerk#000000529|0|its cajole blithely dep| +60712|354310|F|33414.23|1992-01-08|2-HIGH|Clerk#000000303|0|ents. fluffily pending packages against the deposits| +60713|606181|P|102699.51|1995-05-08|1-URGENT|Clerk#000002569|0|beans. deposits affix quickly around the final, pend| +60714|66616|O|125013.35|1998-03-15|4-NOT SPECIFIED|Clerk#000004209|0|counts nag furiously pending deposits. furiously regular deposits | +60715|601625|O|107390.53|1998-01-30|3-MEDIUM|Clerk#000004230|0|even pains. final accounts detect blithely around the slyly regular accoun| +60716|747982|O|147829.53|1998-05-10|2-HIGH|Clerk#000000812|0|as sleep bravely against the busy, regular packag| +60717|568963|F|128255.76|1992-12-25|1-URGENT|Clerk#000000642|0|odolites between the ironic instructions cajole fluffily express packages! | +60718|43528|F|199909.28|1993-05-24|5-LOW|Clerk#000003408|0|after the regular, even dolphins nod accor| +60719|321250|F|281113.81|1992-04-01|1-URGENT|Clerk#000000915|0| even orbits cajole carefully-- slyly close dugouts integrate slyly | +60744|745987|O|147200.02|1996-09-17|4-NOT SPECIFIED|Clerk#000002993|0|yly express excuses promise boldly. requests nag furiously. | +60745|45422|F|92197.19|1994-02-13|2-HIGH|Clerk#000002876|0|gular foxes x-ray carefully | +60746|647956|F|32544.63|1993-11-08|5-LOW|Clerk#000001644|0|fully ironic pinto bea| +60747|183712|F|70129.38|1995-02-23|2-HIGH|Clerk#000004998|0|lyly ironic theodolites thrash among the instructions. quietly | +60748|643055|O|56006.47|1996-08-03|3-MEDIUM|Clerk#000001010|0|encies. accounts sleep fluffil| +60749|315787|O|28907.69|1996-10-11|4-NOT SPECIFIED|Clerk#000000975|0|ss the blithely bold foxes.| +60750|398605|F|245002.31|1992-12-06|2-HIGH|Clerk#000000844|0|courts. blithely silent foxes nag b| +60751|351218|O|37029.43|1998-06-06|3-MEDIUM|Clerk#000000269|0|ending packages nod furiously even ideas. i| +60776|405040|O|182283.27|1998-04-07|1-URGENT|Clerk#000002926|0|efully ironic theodo| +60777|477358|F|178328.05|1994-04-07|1-URGENT|Clerk#000002377|0|sentiments. accounts wake blithely. furiously even d| +60778|185896|O|165773.49|1998-04-04|3-MEDIUM|Clerk#000001310|0|ions up the carefully express depend| +60779|600979|O|127690.56|1995-07-16|3-MEDIUM|Clerk#000003319|0|es. unusual ideas wake blithely according to the pinto beans. idle, final | +60780|392176|O|113766.93|1995-07-24|1-URGENT|Clerk#000002668|0|sits under the blithely ironic deposits cajole furiously past the bol| +60781|285131|O|161012.99|1997-08-26|3-MEDIUM|Clerk#000001401|0|uriously final tithes. fluffily bold | +60782|446515|O|173105.33|1998-02-28|5-LOW|Clerk#000003743|0|ic foxes must haggle qui| +60783|52274|O|42261.04|1996-05-12|2-HIGH|Clerk#000001203|0|yly even courts try | +60808|316742|P|238030.29|1995-05-05|2-HIGH|Clerk#000001349|0| instructions wake furiously express attainments. slyly sp| +60809|723031|O|209703.16|1996-08-03|3-MEDIUM|Clerk#000003647|0|special instructions. blithely silent depths hagg| +60810|466414|O|306292.58|1996-10-23|3-MEDIUM|Clerk#000002075|0| express deposits sleep carefully; carefu| +60811|3091|O|109494.20|1995-09-21|5-LOW|Clerk#000002771|0|ronic, regular requests. fluffily special courts| +60812|174976|O|134173.34|1996-12-01|4-NOT SPECIFIED|Clerk#000000682|0|nts. fluffily special deposits detec| +60813|42664|O|49393.32|1998-03-03|4-NOT SPECIFIED|Clerk#000003060|0|nusual pinto beans use according to the special, speci| +60814|49334|O|135392.07|1997-11-20|2-HIGH|Clerk#000004316|0|e fluffily regular foxes. slyly unusual pinto| +60815|400288|O|242662.64|1998-01-09|1-URGENT|Clerk#000000650|0|g deposits. blithely even asymptot| +60840|119530|O|132183.83|1995-09-07|5-LOW|Clerk#000002837|0|ets cajole carefully. regular, final theodolites boost f| +60841|418358|O|145099.16|1996-12-09|4-NOT SPECIFIED|Clerk#000001120|0|nts above the blithely final pinto beans serve| +60842|81064|O|121818.74|1995-06-03|5-LOW|Clerk#000000760|0|ess requests are quickly. blithely even deposits along the| +60843|409532|F|365169.46|1992-04-10|1-URGENT|Clerk#000001558|0|onic dolphins sleep. ir| +60844|251149|O|241588.57|1996-04-24|3-MEDIUM|Clerk#000003091|0|o beans. slyly regular b| +60845|29228|F|185770.98|1992-08-24|5-LOW|Clerk#000004812|0|ts hang quickly carefully even d| +60846|728104|O|104454.31|1996-07-14|3-MEDIUM|Clerk#000000973|0|silent foxes haggle against the slyly ruthless pinto beans. blithely | +60847|221326|O|82759.02|1996-02-05|2-HIGH|Clerk#000001696|0|e blithely. even, ironic packages nag after the blithely fi| +60872|558178|O|235987.87|1997-09-29|4-NOT SPECIFIED|Clerk#000004085|0|deposits. slyly final ideas | +60873|264091|F|79944.37|1994-02-22|3-MEDIUM|Clerk#000002024|0| among the deposits. accounts are bli| +60874|52907|F|172303.80|1992-07-31|3-MEDIUM|Clerk#000001691|0|usly fluffily regular pinto beans-- blithely silent ideas | +60875|452156|O|224223.34|1996-12-07|3-MEDIUM|Clerk#000001288|0|ironic frets sleep even theodolites: ironic asymptotes sublate. blith| +60876|369863|O|94226.23|1997-04-20|5-LOW|Clerk#000003621|0| sleep fluffily. furiously daring asymptotes boost slyly| +60877|278653|O|270421.14|1996-03-31|2-HIGH|Clerk#000004404|0| ironic deposits sleep carefully final,| +60878|319688|F|256833.54|1992-07-01|3-MEDIUM|Clerk#000000536|0|blithe, express foxes hag| +60879|745624|O|52621.24|1995-07-10|1-URGENT|Clerk#000000139|0|ly pending deposits. furiously special| +60904|669629|O|167952.35|1997-08-27|5-LOW|Clerk#000004450|0|nto beans haggle slyly final deposits. regular dependencies affix acc| +60905|692723|F|170066.67|1992-02-03|3-MEDIUM|Clerk#000004562|0|foxes. theodolites detect bold, ironic packages. r| +60906|330766|O|52062.53|1997-02-05|4-NOT SPECIFIED|Clerk#000001253|0|theodolites affix carefully. blithely si| +60907|180997|F|36075.02|1993-10-13|5-LOW|Clerk#000002837|0|nal deposits x-ray furiously. e| +60908|5857|O|57216.96|1997-03-11|5-LOW|Clerk#000000860|0|s use-- always bold depths sleep quickly final p| +60909|165956|O|256934.84|1996-10-09|3-MEDIUM|Clerk#000003515|0|ays carefully final platelets. blithely regular accounts above the slyly e| +60910|715571|O|165488.68|1996-07-20|2-HIGH|Clerk#000000630|0|t the carefully ironic pinto beans are across the slyly final deposits. | +60911|344770|F|114693.23|1992-10-25|3-MEDIUM|Clerk#000002665|0|sits sleep bravely dependencies. slyly ironic ideas use | +60936|28952|F|79494.86|1993-04-03|2-HIGH|Clerk#000000295|0| slyly ironic theodolites according to the express deposits | +60937|589930|F|134034.97|1994-10-31|5-LOW|Clerk#000002929|0|olites doze about the fluffily silen| +60938|672904|O|161938.23|1995-06-03|1-URGENT|Clerk#000000575|0|ts. theodolites detect. final theodolites haggle furious| +60939|214762|F|238147.62|1992-03-25|1-URGENT|Clerk#000002745|0| beans unwind quickly. forges alongside of the furiously regular packages boos| +60940|487145|F|24809.49|1995-01-13|1-URGENT|Clerk#000003945|0|l theodolites. slyly ironic ideas wake blithely unusual requests. ac| +60941|440740|O|138188.76|1995-06-27|5-LOW|Clerk#000002380|0|s wake fluffily along the carefully regular packages. instructions across the | +60942|488986|F|215876.87|1994-03-18|4-NOT SPECIFIED|Clerk#000000174|0|slyly permanently even in| +60943|619016|O|42283.20|1998-05-22|3-MEDIUM|Clerk#000001622|0|eposits. fluffy theodolites haggle furiously permanently ruthless ideas. i| +60968|546322|O|306067.75|1998-07-24|2-HIGH|Clerk#000000850|0|furiously. carefully regular deposits eat | +60969|503689|O|218091.33|1996-03-10|4-NOT SPECIFIED|Clerk#000004242|0|efully ironic dolphins. furiou| +60970|222256|O|297434.25|1996-01-09|2-HIGH|Clerk#000001633|0|across the furious, express | +60971|453562|F|271264.98|1993-06-20|5-LOW|Clerk#000000286|0|r dolphins. blithely pending | +60972|10624|F|179268.73|1992-02-18|5-LOW|Clerk#000002157|0|ns. regular pains are. epitaphs above the quickly ironi| +60973|56098|F|116952.83|1992-01-19|5-LOW|Clerk#000000752|0|. carefully final instructions cajole furiously pending ideas. | +60974|64204|O|319364.11|1998-03-24|3-MEDIUM|Clerk#000000245|0|final, final pinto beans. quickly s| +60975|559868|F|46092.51|1993-07-29|2-HIGH|Clerk#000001852|0|ar ideas wake careful| +61000|189154|F|103766.68|1994-09-12|1-URGENT|Clerk#000003050|0|uickly bold instructions. express, ironic accounts might haggle according to| +61001|603701|O|189579.94|1996-11-29|4-NOT SPECIFIED|Clerk#000004688|0| across the doggedl| +61002|385958|O|94577.75|1998-03-18|2-HIGH|Clerk#000001834|0|ly regular excuses above the qu| +61003|32329|O|236211.97|1996-07-18|3-MEDIUM|Clerk#000000434|0|jole. furiously ironic packages w| +61004|340630|O|204824.28|1995-06-14|3-MEDIUM|Clerk#000003264|0|ily bold packages are never. regular accou| +61005|185545|F|223344.87|1992-06-28|1-URGENT|Clerk#000000325|0|ily furious pinto beans. bold packages boost blithely| +61006|683452|F|279260.91|1995-02-18|4-NOT SPECIFIED|Clerk#000002703|0|final pinto beans about the quickly p| +61007|506138|F|53701.17|1993-06-11|2-HIGH|Clerk#000003709|0| pending accounts. ironic, silent pac| +61032|156514|O|31918.48|1997-11-04|3-MEDIUM|Clerk#000000634|0|kly quietly final packages.| +61033|258454|F|182347.02|1994-06-08|3-MEDIUM|Clerk#000001164|0|en sauternes boost after the slyly ironic ideas. blith| +61034|578108|O|180331.31|1996-02-12|1-URGENT|Clerk#000004793|0|. slyly enticing courts haggle furious| +61035|2260|O|269022.96|1995-11-16|2-HIGH|Clerk#000004947|0|ly after the ironic accounts: daringly e| +61036|479905|O|292517.47|1996-12-03|5-LOW|Clerk#000003711|0| requests-- carefully final platelets across the quickly bold | +61037|255409|F|245364.05|1992-07-09|4-NOT SPECIFIED|Clerk#000001765|0|ages nag blithely. ex| +61038|391516|F|202019.82|1992-12-25|5-LOW|Clerk#000002621|0|, regular foxes haggle furious| +61039|457988|F|131622.57|1994-10-12|3-MEDIUM|Clerk#000001445|0|ckages. pending, regular deposits dou| +61064|142498|O|124155.90|1998-03-15|3-MEDIUM|Clerk#000004624|0| ironic depths. spe| +61065|181144|F|15802.31|1993-09-22|4-NOT SPECIFIED|Clerk#000004348|0|ests; silent, regular requests use accounts. carefu| +61066|213385|F|71112.98|1993-05-28|1-URGENT|Clerk#000002830|0|requests. blithely regular dolphins according to the depo| +61067|603544|F|33864.02|1993-09-24|4-NOT SPECIFIED|Clerk#000003310|0|fluffy ideas are slyly fluffily pending instru| +61068|9274|F|43292.78|1993-11-03|5-LOW|Clerk#000004741|0|rious deposits after the b| +61069|602758|O|82241.72|1997-04-08|2-HIGH|Clerk#000001594|0|usly regular deposits are fluffily! final packages doubt | +61070|271295|O|92602.22|1995-07-01|5-LOW|Clerk#000002985|0|slyly slyly regular accounts. bold courts| +61071|392932|O|273965.30|1998-01-10|5-LOW|Clerk#000003555|0|thely final deposits. regular packages integrate sometimes against the c| +61096|226423|O|1109.39|1998-01-14|4-NOT SPECIFIED|Clerk#000000544|0|counts was. packages use quickly carefully express deposits. re| +61097|728764|O|251738.69|1998-04-25|2-HIGH|Clerk#000004317|0|ilent accounts. regular, ruthless packages haggle blith| +61098|54181|F|247927.21|1992-06-11|5-LOW|Clerk#000004963|0|y above the ironic foxes. requests are fluffil| +61099|101896|O|106995.93|1996-11-18|2-HIGH|Clerk#000002322|0|lyly regular reques| +61100|288205|F|95001.04|1992-06-03|5-LOW|Clerk#000000818|0|ular deposits are sometimes furiously final gifts. bold deposits boost ca| +61101|356198|F|234697.43|1994-08-23|3-MEDIUM|Clerk#000002104|0|the carefully bold foxes wake slyly about the theod| +61102|108533|O|9313.62|1998-04-29|1-URGENT|Clerk#000000942|0|lar requests try to are permanently about the blithely regular warhorses. spec| +61103|112469|O|28671.36|1996-04-16|1-URGENT|Clerk#000001486|0|ake carefully fluffil| +61128|259796|F|166937.59|1992-05-10|2-HIGH|Clerk#000001341|0|y. carefully regular packages grow carefully carefully special r| +61129|624896|F|310127.68|1994-05-26|3-MEDIUM|Clerk#000003646|0|deposits around the quickly special packages use theodolites. furiously fina| +61130|361909|F|181299.21|1994-09-26|5-LOW|Clerk#000004644|0|uses are quickly according to the fluffily final deposits. quickly f| +61131|84682|F|19908.93|1992-08-03|1-URGENT|Clerk#000001397|0|quests could haggle ca| +61132|474889|F|263717.91|1993-02-10|2-HIGH|Clerk#000001266|0|the blithely ironic accounts: slyly pending instructions caj| +61133|690214|F|104573.88|1992-06-06|5-LOW|Clerk#000000278|0|ind silently. foxes among the ir| +61134|144421|O|142760.51|1997-12-23|5-LOW|Clerk#000001163|0|the accounts. regular, unusual tithes sleep. blithely regular packages use| +61135|277711|O|85054.90|1997-04-28|1-URGENT|Clerk#000001872|0|olphins toward the packages h| +61160|232919|O|293076.02|1998-07-06|4-NOT SPECIFIED|Clerk#000001146|0|iously around the pending instruction| +61161|406901|F|207279.77|1994-09-17|5-LOW|Clerk#000001406|0|, pending instructions alon| +61162|282791|O|66515.28|1997-01-12|5-LOW|Clerk#000003762|0|ect slyly. regular, enticing excuses x-ray specia| +61163|115012|O|84767.20|1996-10-14|1-URGENT|Clerk#000001188|0|t the special packages haggl| +61164|233930|F|195862.28|1993-07-15|3-MEDIUM|Clerk#000000529|0|ssly final ideas. stealthily silent dugouts sleep| +61165|147295|F|264724.49|1992-01-30|1-URGENT|Clerk#000002174|0|s; slyly pending accounts sleep ironic, express packages. blith| +61166|554560|F|81127.21|1994-02-22|3-MEDIUM|Clerk#000003801|0|s use unusual, regular theodolites. dogged accounts thrash blithely regular| +61167|237551|O|151936.59|1998-05-04|5-LOW|Clerk#000003014|0|t the quickly regular requests. pinto beans around the quickly pending excu| +61192|258388|F|311976.76|1994-08-26|3-MEDIUM|Clerk#000000287|0|ing, regular theodolites cajole furiously. quick| +61193|200459|F|98128.38|1992-04-01|5-LOW|Clerk#000004464|0|osits detect according to the blithely bold pe| +61194|110248|F|147091.18|1992-07-03|1-URGENT|Clerk#000000239|0|y regular waters eat quick ideas. requests doze carefully accordi| +61195|409366|F|242809.34|1995-02-13|2-HIGH|Clerk#000002170|0|y ironic excuses. slowly unusual packages wake quietly even, regular requests| +61196|453788|F|133342.10|1994-10-07|3-MEDIUM|Clerk#000003771|0|uick packages cajole quickly | +61197|56458|O|140607.56|1996-06-07|2-HIGH|Clerk#000004859|0|nding pinto beans against the furiously ironic pearls nag slyly final packag| +61198|106804|O|149128.96|1996-09-26|5-LOW|Clerk#000000198|0|e furiously final courts integrate slyly carefully | +61199|301297|F|97267.13|1993-01-05|3-MEDIUM|Clerk#000004963|0| wake carefully about the furiously regular escapades. requests engage. pe| +61224|646426|F|250676.83|1992-02-12|5-LOW|Clerk#000001990|0| requests sleep furiously alongside of th| +61225|729520|O|43322.40|1998-05-03|3-MEDIUM|Clerk#000003655|0| about the regularly sp| +61226|13345|O|296836.44|1997-04-20|1-URGENT|Clerk#000004250|0|lithely bold theodolites| +61227|33568|F|14953.68|1992-08-31|4-NOT SPECIFIED|Clerk#000003555|0| ironic somas across the regu| +61228|153766|F|239577.94|1994-07-15|3-MEDIUM|Clerk#000001148|0|ns. accounts are carefully quickly special packages. deposits boost blit| +61229|583591|F|145361.67|1993-09-09|5-LOW|Clerk#000001951|0|uests. enticingly even theodolites boost carefully acr| +61230|630886|O|205559.98|1996-10-07|4-NOT SPECIFIED|Clerk#000001154|0| theodolites-- regular, final accounts cajole carefully. sil| +61231|550295|F|82738.74|1994-04-06|4-NOT SPECIFIED|Clerk#000003749|0|hely close deposits. carefully ironic asymptotes serve. express deposi| +61256|553381|F|104455.63|1994-10-30|4-NOT SPECIFIED|Clerk#000003798|0|nic ideas affix furio| +61257|669688|O|81882.35|1997-08-20|5-LOW|Clerk#000002829|0|uffily ironic accounts. courts cajole slyly blithely express| +61258|172207|O|44403.88|1996-03-01|1-URGENT|Clerk#000002239|0|ges sleep blithely after the special, regular theodolites. unusual| +61259|15145|O|137710.32|1996-02-02|1-URGENT|Clerk#000002566|0|ial, final platelets. express, unusual packages use fluffily accord| +61260|259379|O|166044.87|1998-01-22|4-NOT SPECIFIED|Clerk#000001532|0|pinto beans cajole. blithely final instructions are blithely. express| +61261|372505|O|152428.10|1995-07-03|4-NOT SPECIFIED|Clerk#000000494|0|platelets. theodolites cajole ironic platelets; careful| +61262|418061|O|1883.92|1995-10-26|2-HIGH|Clerk#000001306|0|n, express dugouts | +61263|340919|F|335022.24|1994-06-21|5-LOW|Clerk#000004490|0|mong the packages. slyly express deposits ar| +61288|560818|O|44160.26|1996-11-17|4-NOT SPECIFIED|Clerk#000004002|0|ly special instruction| +61289|386281|F|249423.68|1993-01-15|3-MEDIUM|Clerk#000000638|0|ions unwind slyly. quic| +61290|223888|F|162702.99|1993-07-27|3-MEDIUM|Clerk#000002366|0|above the blithely i| +61291|124543|F|133711.28|1994-08-08|4-NOT SPECIFIED|Clerk#000003696|0|sleep carefully above the bold platelets.| +61292|670888|O|149880.65|1996-04-15|5-LOW|Clerk#000002662|0|ts promise furiously | +61293|105088|O|322884.98|1996-03-24|4-NOT SPECIFIED|Clerk#000003692|0|ding requests. blithely regu| +61294|707995|F|100038.40|1993-04-16|4-NOT SPECIFIED|Clerk#000003539|0|al accounts. bold, final d| +61295|499120|F|218477.13|1992-07-31|4-NOT SPECIFIED|Clerk#000003572|0| the carefully special requests haggle blithely after | +61320|686200|F|114850.45|1994-04-04|2-HIGH|Clerk#000001361|0|g the ironic pinto beans. express deposits use quic| +61321|202492|F|142822.02|1993-03-14|3-MEDIUM|Clerk#000000775|0|t the carefully bol| +61322|523616|F|345481.88|1993-01-05|3-MEDIUM|Clerk#000000526|0|es nag furiously forges. quickly express r| +61323|663733|F|99910.17|1995-03-14|3-MEDIUM|Clerk#000002066|0|even, final dinos. regular instructions sleep.| +61324|593233|O|325927.64|1998-07-01|3-MEDIUM|Clerk#000003089|0|sleep furiously. carefully express packages sleep care| +61325|683624|O|86451.40|1996-03-07|3-MEDIUM|Clerk#000001815|0|ss foxes use carefully. carefully care| +61326|406402|F|130731.78|1992-12-21|5-LOW|Clerk#000001699|0|even requests boost. | +61327|121009|F|221354.19|1993-05-04|2-HIGH|Clerk#000000843|0|lar packages. blithe requests engage. regul| +61352|517430|F|126416.37|1994-12-21|3-MEDIUM|Clerk#000000110|0| blithely special accounts doubt carefully. | +61353|194734|F|286586.38|1992-11-18|4-NOT SPECIFIED|Clerk#000002384|0|ltipliers-- slowly silent pinto beans cajole furiously. iro| +61354|620840|O|84460.69|1997-10-10|1-URGENT|Clerk#000000428|0|tions. furiously final| +61355|444598|F|147723.15|1993-08-31|4-NOT SPECIFIED|Clerk#000001869|0|ickly carefully even pinto beans. furiously ironic deposits use. furio| +61356|99346|O|180928.57|1998-05-27|1-URGENT|Clerk#000001456|0|ep above the final, unusual instructions. instructions alongside of the | +61357|193118|F|38193.11|1992-06-24|3-MEDIUM|Clerk#000000620|0|ide of the blithely ironic asymptotes. pending | +61358|483053|F|111946.21|1994-08-29|1-URGENT|Clerk#000000684|0|lites. fluffily bold instructions are blithely acro| +61359|663430|F|77279.59|1993-11-14|1-URGENT|Clerk#000000673|0| requests wake above the c| +61384|1135|F|167817.71|1992-10-28|5-LOW|Clerk#000001994|0|as above the packages: qu| +61385|325027|P|337466.51|1995-04-15|4-NOT SPECIFIED|Clerk#000004679|0|ealthily bold accounts? fluffily bold platele| +61386|459904|F|64616.77|1992-10-26|3-MEDIUM|Clerk#000003473|0|ongside of the slyly ironic | +61387|95062|F|45801.23|1995-01-01|1-URGENT|Clerk#000004504|0|rding to the packages haggle unusual| +61388|188260|F|177266.48|1994-06-29|4-NOT SPECIFIED|Clerk#000000992|0|riously pending dolphins sleep. slyly special ideas use blithely ac| +61389|567715|F|206119.76|1994-07-06|2-HIGH|Clerk#000002961|0|cajole carefully. regular requests cajole quickly blithely ironic account| +61390|79297|O|179222.56|1995-06-22|4-NOT SPECIFIED|Clerk#000003219|0|nic realms use fluffily dogged theodolites. final packages sleep care| +61391|737552|F|283107.51|1992-03-28|1-URGENT|Clerk#000003012|0|egular instructions. caref| +61416|21103|F|14274.29|1994-05-31|2-HIGH|Clerk#000001407|0|y special accounts: regular packages sleep. accounts a| +61417|666481|O|10985.46|1995-06-19|1-URGENT|Clerk#000002221|0|t nag pending requests. theodolites cajole furiously. express de| +61418|279994|F|72085.55|1992-09-16|2-HIGH|Clerk#000003346|0|ckages detect. finally pending packag| +61419|351169|O|220020.24|1997-05-15|2-HIGH|Clerk#000004030|0|ar, regular accounts. blithely unusual pinto be| +61420|317357|O|309287.39|1997-09-05|2-HIGH|Clerk#000002974|0|structions under the carefully ironic theodolites are silent excuses. sly| +61421|560395|O|40005.34|1996-03-11|4-NOT SPECIFIED|Clerk#000003025|0|lar warhorses. furious| +61422|42544|F|191821.97|1992-05-14|2-HIGH|Clerk#000000952|0|re requests! furiously special r| +61423|286747|O|135819.70|1996-02-04|3-MEDIUM|Clerk#000003526|0|s. final pinto beans are. carefully express dependencies are quickly p| +61448|583262|F|119535.24|1993-05-23|1-URGENT|Clerk#000001046|0|above the ironic, unusual accounts. quickly final p| +61449|371801|P|141879.15|1995-05-21|5-LOW|Clerk#000000735|0| asymptotes are about the even notornis. carefully unusual depo| +61450|608347|F|65002.94|1994-08-17|4-NOT SPECIFIED|Clerk#000000228|0|ring, final pinto beans. bold accounts use carefully. iro| +61451|455318|O|181834.18|1996-02-04|5-LOW|Clerk#000001053|0|s at the furiously regular foxes cajole someti| +61452|264712|O|345204.73|1996-01-05|4-NOT SPECIFIED|Clerk#000002133|0|ccording to the instructions. regular, re| +61453|4627|F|86731.78|1995-03-04|1-URGENT|Clerk#000002559|0|ly special accounts; final braids sleep slyly even, f| +61454|492679|F|205217.73|1994-08-27|5-LOW|Clerk#000003987|0|cajole slyly according to the br| +61455|430684|O|140588.28|1997-02-05|2-HIGH|Clerk#000004153|0|s boost furiously above the final requests. dug| +61480|253343|O|75605.68|1996-07-11|4-NOT SPECIFIED|Clerk#000004935|0|sits against the blithely special packages dazzle silently slyly pending do| +61481|177316|O|100256.18|1997-11-11|1-URGENT|Clerk#000000434|0| blithely final requests. special deposits sleep carefully stealthy | +61482|376786|F|270559.75|1993-01-09|2-HIGH|Clerk#000002560|0|quests. carefully f| +61483|367069|O|214246.47|1998-07-25|3-MEDIUM|Clerk#000004380|0|l theodolites haggle permanently. f| +61484|569716|F|52416.94|1993-03-13|1-URGENT|Clerk#000000194|0|to beans alongside of the pending deposits cajole carefully blithely pend| +61485|706469|F|42124.65|1994-08-23|1-URGENT|Clerk#000004389|0|lar instructions. slyly special i| +61486|357862|P|200924.81|1995-04-01|1-URGENT|Clerk#000003203|0|posits can are among the special, pending deposits. blithely final depos| +61487|317614|F|153799.66|1993-11-27|5-LOW|Clerk#000001159|0|gle carefully according | +61512|370472|O|117945.25|1998-04-04|1-URGENT|Clerk#000003048|0|lar instructions are furiously pinto b| +61513|13813|P|143811.96|1995-04-26|4-NOT SPECIFIED|Clerk#000003645|0|carefully quickly ironic depend| +61514|393844|F|324799.71|1995-01-09|4-NOT SPECIFIED|Clerk#000001999|0| the unusual requests. furiously pending r| +61515|579376|O|10846.46|1995-12-30|1-URGENT|Clerk#000000658|0|cial requests. furiously unusual reque| +61516|315844|F|127119.10|1992-12-22|4-NOT SPECIFIED|Clerk#000001417|0|ronic platelets cajole slyly slyly ste| +61517|614506|F|142732.84|1993-10-21|4-NOT SPECIFIED|Clerk#000003658|0|fluffy packages are-- furiously special id| +61518|501763|F|315966.20|1994-01-27|3-MEDIUM|Clerk#000004095|0|ironic patterns wake above the regular, silent platel| +61519|130384|F|134879.95|1995-02-03|4-NOT SPECIFIED|Clerk#000000937|0|ect according to the slyly bold in| +61544|606701|F|132925.88|1994-05-05|4-NOT SPECIFIED|Clerk#000004688|0|ts affix above the regular foxes. ruthless theodolites boost care| +61545|570461|O|96123.09|1995-08-25|2-HIGH|Clerk#000000598|0|uriously among the even ideas. final, silent packages ar| +61546|472658|F|195636.38|1993-12-04|3-MEDIUM|Clerk#000000507|0|ggle regularly. furiously| +61547|712291|O|264114.22|1997-03-25|2-HIGH|Clerk#000002978|0|ut the carefully special sheaves. furiou| +61548|722746|O|77960.20|1998-05-17|5-LOW|Clerk#000004985|0|ial dolphins. special, final accounts are furiously. special requests use bl| +61549|161561|O|186426.48|1996-07-24|2-HIGH|Clerk#000000098|0|ickly slyly even deposits. ironic, spec| +61550|344393|O|59833.71|1997-11-02|1-URGENT|Clerk#000000414|0|nstructions should have to serve furio| +61551|455014|F|213467.06|1995-03-19|5-LOW|Clerk#000002448|0|st the even, special platelets wake blithely on the final, final | +61576|393860|O|226542.16|1996-05-23|3-MEDIUM|Clerk#000001333|0|gle blithely among the fluffily express mult| +61577|93311|O|117118.58|1996-08-06|3-MEDIUM|Clerk#000002589|0|thely express ideas use express pinto be| +61578|13327|O|295452.22|1996-04-15|2-HIGH|Clerk#000004516|0|sly after the ironic packages. ironic dependencies until the slyly s| +61579|459491|O|65079.36|1995-07-23|5-LOW|Clerk#000004788|0|ounts haggle fluffily blithely thin deposits. carefully silent packages sleep | +61580|654151|O|19936.76|1997-07-10|4-NOT SPECIFIED|Clerk#000002860|0|lly from the special deposits. careful| +61581|39508|F|138996.23|1992-09-21|2-HIGH|Clerk#000002869|0|y furiously final instructions. quickly pending | +61582|231562|O|181716.79|1995-09-01|2-HIGH|Clerk#000004420|0| requests. quickly bold accounts across t| +61583|91337|F|188378.51|1995-02-20|5-LOW|Clerk#000002800|0|riously about the instructions. slyly regular accounts according| +61608|586654|F|314423.44|1992-08-08|1-URGENT|Clerk#000001602|0|thely regular accounts. blithely unusual | +61609|384458|O|304443.89|1997-05-29|2-HIGH|Clerk#000002193|0|regular, express courts. silent accounts wake furiously fi| +61610|322294|F|5576.60|1994-05-11|4-NOT SPECIFIED|Clerk#000000868|0|y final packages wake always | +61611|289747|F|209588.91|1994-11-17|3-MEDIUM|Clerk#000004249|0|en packages. carefully regular ideas about the | +61612|12271|F|77960.47|1993-11-25|4-NOT SPECIFIED|Clerk#000000371|0| even, bold requests. blithely unusual| +61613|722605|F|155623.86|1992-10-25|5-LOW|Clerk#000004127|0|ly slow theodolites. furiously enticing| +61614|45073|O|57274.26|1997-07-15|4-NOT SPECIFIED|Clerk#000002193|0| slyly theodolites. bold asymptotes sublate slyly slyly regular somas. | +61615|20125|F|76866.11|1993-03-21|5-LOW|Clerk#000002695|0|y regular pinto beans.| +61640|740221|P|139464.30|1995-03-22|5-LOW|Clerk#000001706|0|longside of the blithely final requests c| +61641|633532|O|66195.43|1995-05-23|5-LOW|Clerk#000001621|0|s cajole according to | +61642|15857|P|120183.35|1995-05-07|3-MEDIUM|Clerk#000001621|0|r, regular deposits eat carefully among the blithely final packages. final, | +61643|253060|O|60857.59|1996-12-27|2-HIGH|Clerk#000002711|0|ding deposits. accounts use; blithely regular instructi| +61644|652469|F|158203.97|1995-01-09|3-MEDIUM|Clerk#000004237|0|! blithely ironic pinto beans use blithely fu| +61645|283969|O|118126.49|1995-11-15|2-HIGH|Clerk#000002073|0|ding to the fluffily daring packages? furiously even pinto beans slee| +61646|387913|F|204683.46|1992-09-14|5-LOW|Clerk#000004620|0|. idle, regular instructions haggle furiously. slyly fluff| +61647|635518|O|212466.69|1996-03-12|2-HIGH|Clerk#000003799|0|ual excuses haggle along the slyly special accou| +61672|380033|O|77816.88|1998-05-27|3-MEDIUM|Clerk#000004226|0|al accounts. carefully pending deposits boost boldly. carefu| +61673|210421|O|108090.62|1996-07-26|3-MEDIUM|Clerk#000000348|0|fluffily final pinto beans sleep quickl| +61674|276634|F|175698.78|1992-05-05|2-HIGH|Clerk#000000167|0|lyly pending deposits. iron| +61675|123589|F|222102.04|1994-11-29|2-HIGH|Clerk#000000890|0|ealthily final accounts. regular, final excuses | +61676|394678|O|146134.32|1997-05-20|4-NOT SPECIFIED|Clerk#000004452|0| haggle by the ironic instructions. quickly pending theodolites detect | +61677|328436|O|83200.16|1998-05-11|5-LOW|Clerk#000003171|0|gle. always final requests s| +61678|16531|O|197762.55|1997-09-24|1-URGENT|Clerk#000003842|0|ns mold. final theodolite| +61679|315640|O|174449.97|1996-09-17|3-MEDIUM|Clerk#000000442|0|s! grouches along the carefully regular excus| +61704|191998|O|59082.25|1998-04-11|5-LOW|Clerk#000001520|0|otes. regular, pending accounts along the slyly even acc| +61705|402205|O|158865.12|1997-04-26|4-NOT SPECIFIED|Clerk#000000820|0|ths integrate idly furious| +61706|83863|O|277577.95|1997-06-08|3-MEDIUM|Clerk#000003486|0|wake. furiously special i| +61707|225424|F|218801.01|1994-02-15|2-HIGH|Clerk#000004889|0|ake around the regular theodolites. even deposits promise quick| +61708|426896|F|232900.08|1992-02-07|4-NOT SPECIFIED|Clerk#000004963|0|ual, bold warthogs sleep across the requests. blithely unusual ideas sleep | +61709|330421|F|60523.52|1993-07-01|3-MEDIUM|Clerk#000001432|0|riously. furiously regular foxes against the carefully final a| +61710|378160|F|60170.84|1992-08-26|4-NOT SPECIFIED|Clerk#000002380|0|l deposits sublate about the slyly ironic p| +61711|207451|F|85481.87|1994-10-22|2-HIGH|Clerk#000004479|0|l packages: carefully iro| +61736|616631|O|285033.03|1996-05-27|1-URGENT|Clerk#000002628|0|equests according to the regular, | +61737|201208|F|105593.88|1994-07-19|5-LOW|Clerk#000004188|0|nding deposits according to the blithely even accounts cajole according to the| +61738|674893|O|59149.57|1996-12-27|4-NOT SPECIFIED|Clerk#000000781|0|platelets affix furiously alongside of the instructions.| +61739|647128|O|286563.65|1997-10-30|2-HIGH|Clerk#000000931|0|refully. slyly special requests are blithely pending accounts. iron| +61740|500371|F|137671.18|1993-04-13|1-URGENT|Clerk#000002117|0| carefully even theodolites.| +61741|715175|O|81698.39|1995-07-08|4-NOT SPECIFIED|Clerk#000001378|0|ly special deposits | +61742|432544|O|56310.69|1995-07-16|5-LOW|Clerk#000000532|0| are. blithely regula| +61743|743530|O|277918.25|1997-09-30|3-MEDIUM|Clerk#000000871|0|ns are blithely unusual theodolites. unusual packages above the carefu| +61768|725890|F|41005.78|1992-08-24|3-MEDIUM|Clerk#000002791|0| of the bold sauternes: ideas sleep furiously. slyly unusual pinto bea| +61769|528166|O|316613.66|1995-09-26|3-MEDIUM|Clerk#000002084|0|ag around the carefully bold requests. slyly final som| +61770|606037|F|104258.95|1992-07-02|2-HIGH|Clerk#000004811|0| blithely express instruc| +61771|658687|F|262314.82|1993-02-05|4-NOT SPECIFIED|Clerk#000003422|0|al notornis? theodolites| +61772|534769|F|87348.07|1993-11-19|2-HIGH|Clerk#000001272|0|the regular asymptotes. regular accounts boost b| +61773|603010|F|83115.74|1993-10-12|2-HIGH|Clerk#000002628|0| asymptotes. bold instruct| +61774|6187|F|262784.79|1992-03-25|4-NOT SPECIFIED|Clerk#000001603|0| carefully. quickly bold packages serve furious| +61775|463553|F|56820.56|1992-01-05|5-LOW|Clerk#000002162|0|express theodolites| +61800|672092|F|203724.55|1994-09-29|4-NOT SPECIFIED|Clerk#000001507|0|nts are blithely regular pinto beans. ruthlessly f| +61801|87722|F|103208.37|1992-12-28|4-NOT SPECIFIED|Clerk#000002563|0| carefully pending notor| +61802|586564|O|64384.88|1996-03-28|2-HIGH|Clerk#000003062|0|uctions affix ironically abo| +61803|371893|O|235292.66|1995-11-22|1-URGENT|Clerk#000002725|0| final, final accoun| +61804|638785|F|385900.72|1994-01-09|1-URGENT|Clerk#000004841|0|gular requests detect above the ironic, pending pin| +61805|538252|F|190263.79|1992-01-21|4-NOT SPECIFIED|Clerk#000002739|0|e ironic requests cajole furiously f| +61806|629863|O|208943.39|1998-04-13|2-HIGH|Clerk#000000214|0|ven excuses use blithely fluffily ironic| +61807|579274|F|110065.79|1994-11-19|1-URGENT|Clerk#000001590|0|thely final foxes use furious| +61832|93187|P|253510.54|1995-03-14|5-LOW|Clerk#000004566|0|deposits sleep slyly about the accounts. regular, silent accounts ac| +61833|180613|F|215091.62|1992-12-28|5-LOW|Clerk#000004014|0|y final accounts detect after| +61834|280999|O|217986.47|1996-08-15|5-LOW|Clerk#000002902|0|refully ironic packages.| +61835|743834|F|68227.28|1993-09-26|2-HIGH|Clerk#000002618|0| pending courts cajole instruct| +61836|609650|P|162351.32|1995-05-02|3-MEDIUM|Clerk#000000879|0|ven excuses! slyly express requests cajole. bold| +61837|628177|F|146568.60|1992-05-23|2-HIGH|Clerk#000001963|0|ise quickly along the even requests| +61838|17467|F|60185.93|1992-11-08|4-NOT SPECIFIED|Clerk#000002215|0|s. slyly regular packages sleep carefully regular, ironic dependencies. the| +61839|308611|O|257549.94|1996-05-21|3-MEDIUM|Clerk#000003068|0|ons. express requests hinder| +61864|550328|O|116427.64|1996-05-26|4-NOT SPECIFIED|Clerk#000002204|0|st the slyly express deposits. unusual| +61865|359255|O|191040.51|1996-12-06|1-URGENT|Clerk#000001674|0|ngside of the fluffily pending accounts haggle fluffily final p| +61866|489743|O|223767.82|1996-10-07|4-NOT SPECIFIED|Clerk#000003424|0|e deposits cajole slyly across the quickly even requests. pending, even pac| +61867|606919|F|83417.44|1994-04-09|2-HIGH|Clerk#000004898|0|eep above the quickly final foxes. slyly regular packages use b| +61868|484751|F|57845.08|1994-07-30|4-NOT SPECIFIED|Clerk#000004719|0|fully pending ideas breach. quick| +61869|701992|F|294225.66|1993-05-26|1-URGENT|Clerk#000003181|0| accounts cajole accounts. slyly regular deposits s| +61870|112933|O|50637.42|1996-04-20|1-URGENT|Clerk#000004193|0|rding to the regularly express waters. regular, regula| +61871|547211|F|210370.87|1993-05-28|3-MEDIUM|Clerk#000003334|0| unusual deposits detect. regular, regular a| +61896|466583|F|181993.23|1992-03-11|2-HIGH|Clerk#000000166|0|ously ironic asymptotes. fluffily regular deposits are quickl| +61897|597514|O|215242.83|1995-05-16|5-LOW|Clerk#000004687|0|r the close instructions kindle slyly final accounts. carefully bold | +61898|650236|O|260166.87|1998-01-27|2-HIGH|Clerk#000004004|0|eep blithely unusual, regular packages? regular, ironic inst| +61899|246568|O|11809.17|1995-10-06|3-MEDIUM|Clerk#000000031|0|refully ironic requests along the furiously thin accounts boost quickly about | +61900|311932|O|300526.62|1997-08-02|4-NOT SPECIFIED|Clerk#000000699|0|sauternes x-ray furiously ironic deposits.| +61901|107821|O|234260.25|1997-05-28|1-URGENT|Clerk#000001733|0|ithely ruthless accounts. pending, thin p| +61902|115168|P|188473.33|1995-04-03|1-URGENT|Clerk#000002359|0|ely blithely bold requests. quickl| +61903|610720|O|85483.52|1995-09-11|4-NOT SPECIFIED|Clerk#000001939|0|he ironic, unusual platelets haggle according to the depos| +61928|602626|O|162880.41|1995-10-16|4-NOT SPECIFIED|Clerk#000002200|0|posits hang. quickly even pinto beans haggle slyly unusual, special| +61929|324566|F|278733.88|1993-01-23|2-HIGH|Clerk#000004901|0| packages. enticingly special| +61930|221941|O|144983.47|1998-01-14|5-LOW|Clerk#000001669|0| dependencies after the fluffily ironic instructions | +61931|407773|F|256104.93|1993-09-08|2-HIGH|Clerk#000003174|0|ng, unusual platelets nag stealthi| +61932|683785|O|158891.56|1995-09-11|2-HIGH|Clerk#000003233|0|r deposits. ironic account| +61933|97682|O|221027.18|1996-01-25|1-URGENT|Clerk#000002626|0|ending accounts. slyly final ideas cajole carefully quickly s| +61934|730600|F|288597.74|1992-01-30|4-NOT SPECIFIED|Clerk#000004889|0|ent, regular instructions. ironic, express sh| +61935|164192|F|275703.20|1993-04-21|4-NOT SPECIFIED|Clerk#000000506|0|gular deposits alongside of the furiously final deposits serve blit| +61960|320873|O|50590.00|1996-01-25|1-URGENT|Clerk#000001605|0|lithely unusual instructions. slyly special requests promise furiousl| +61961|405454|O|74516.03|1995-12-13|2-HIGH|Clerk#000002275|0|ly ironic ideas solve against the slyly e| +61962|706358|F|179400.40|1994-06-14|5-LOW|Clerk#000004986|0|fily regular ideas-- daringly express requests detect carefully car| +61963|746179|F|41067.85|1994-01-11|4-NOT SPECIFIED|Clerk#000002044|0|lets wake slow dolphins. quickly ironic accounts cajol| +61964|279334|F|213203.22|1993-05-18|4-NOT SPECIFIED|Clerk#000000724|0|nd the special deposits mold blithely quickly regular packages. blithely sil| +61965|515665|O|179884.81|1996-01-28|4-NOT SPECIFIED|Clerk#000002620|0|regular dependencies: pending platelets| +61966|530983|O|126539.28|1996-03-02|1-URGENT|Clerk#000000017|0|carefully unusual theodolites haggle fluf| +61967|702779|F|180967.24|1992-01-05|1-URGENT|Clerk#000001134|0|lithely pending excuse| +61992|600847|O|161138.50|1997-02-04|3-MEDIUM|Clerk#000003310|0|se slyly. blithely regular packages haggle furiously.| +61993|421850|F|142521.07|1993-03-25|5-LOW|Clerk#000000648|0|inal realms wake. pending accounts haggle blithely unusu| +61994|277711|O|186748.71|1995-10-10|1-URGENT|Clerk#000004605|0|nding realms. bold pac| +61995|227818|F|54636.97|1994-06-12|1-URGENT|Clerk#000002773|0|lyly final requests sleep | +61996|177148|F|103020.44|1994-10-18|1-URGENT|Clerk#000004141|0|eas sleep blithely even requests. ironic req| +61997|567023|F|230683.07|1993-03-19|2-HIGH|Clerk#000001574|0|shall sleep. blithely bold requests haggle furiously. | +61998|439789|F|133545.44|1992-07-05|3-MEDIUM|Clerk#000000185|0|platelets impress slyly with the always regular ideas. furiously | +61999|252883|O|114583.01|1997-06-12|2-HIGH|Clerk#000000415|0| express instructions serve. unusual courts haggle| +62024|690644|F|110624.91|1993-08-07|5-LOW|Clerk#000001382|0|ideas. ideas across the furiously even fr| +62025|643232|F|86428.46|1993-03-11|1-URGENT|Clerk#000000727|0|t quickly. pinto beans sleep. even platelets caj| +62026|287473|O|239654.23|1995-11-23|1-URGENT|Clerk#000001669|0|thely across the slyly even deposits. car| +62027|26954|F|189882.89|1994-05-03|3-MEDIUM|Clerk#000002898|0|ic theodolites. express, regular requests| +62028|14365|O|91515.39|1997-06-07|4-NOT SPECIFIED|Clerk#000004949|0|l deposits haggle sl| +62029|662768|O|250581.56|1996-12-06|2-HIGH|Clerk#000004758|0|ly express instructions above the | +62030|129745|F|256365.01|1992-02-18|3-MEDIUM|Clerk#000004539|0|posits sleep along the blithely final dependencies. even theodolites are fur| +62031|372124|O|217062.88|1996-08-10|3-MEDIUM|Clerk#000003822|0|r finally about the even requests. special foxes must have| +62056|24085|O|83904.61|1997-09-20|1-URGENT|Clerk#000002345|0|s according to the blithely even instructi| +62057|513184|O|219353.92|1995-07-17|4-NOT SPECIFIED|Clerk#000001600|0|ual requests above the fluffily final packages use slyl| +62058|69196|O|177268.19|1996-12-29|3-MEDIUM|Clerk#000001061|0|latelets cajole fluffily fluffily final courts. slyly daring | +62059|474815|F|137458.15|1992-02-11|1-URGENT|Clerk#000002881|0|ss deposits. slyly regular excuses wake quickly toward the asy| +62060|212227|F|161673.11|1995-01-20|4-NOT SPECIFIED|Clerk#000001064|0|kages. final, special instructions integrate carefu| +62061|622195|F|203349.44|1994-04-02|1-URGENT|Clerk#000004997|0|t the carefully final deposits boost permanently final| +62062|719140|O|27642.13|1997-02-04|1-URGENT|Clerk#000004619|0|ar deposits. final ideas sleep even, exp| +62063|307282|O|331648.40|1997-09-06|2-HIGH|Clerk#000003057|0| the quickly pending platelets. slyl| +62088|729475|O|125877.59|1997-06-18|5-LOW|Clerk#000002915|0|ly thin platelets: pending packages across the carefully pen| +62089|15359|F|73639.10|1994-08-10|1-URGENT|Clerk#000003452|0|nag across the final packages. requests| +62090|138310|F|128010.20|1993-02-11|3-MEDIUM|Clerk#000001188|0|ly at the ironic, pending packages. blithely regular notornis | +62091|314110|F|99893.66|1993-08-17|2-HIGH|Clerk#000001200|0|equests. slyly pending platelets after the fur| +62092|743857|F|3831.04|1992-03-15|5-LOW|Clerk#000002395|0|y unusual packages are quickly about the slyly| +62093|234089|O|142709.49|1998-04-26|5-LOW|Clerk#000002001|0|to beans along the | +62094|573460|F|222229.76|1994-06-01|3-MEDIUM|Clerk#000000654|0|. quickly final foxes sleep blithely fluffily pending ideas| +62095|631798|F|197131.71|1994-06-06|1-URGENT|Clerk#000003160|0|eep slyly quickly express accounts. ironic, unusual deposits x-ra| +62120|121534|F|144863.97|1994-05-08|2-HIGH|Clerk#000003305|0| solve blithely furiously regular platelets! platelets | +62121|366460|F|371519.13|1992-11-06|2-HIGH|Clerk#000004852|0|een the final instruction| +62122|78346|O|14926.74|1996-10-29|4-NOT SPECIFIED|Clerk#000002260|0| should have to wake above the fu| +62123|507079|F|6241.68|1995-01-24|2-HIGH|Clerk#000003206|0|ccounts sleep. blithely even requests integrate slyly. carefu| +62124|201286|O|83632.22|1998-07-13|3-MEDIUM|Clerk#000004363|0|regular pinto beans sleep according to the quickly silent requests.| +62125|482521|O|219453.29|1995-04-30|1-URGENT|Clerk#000003397|0|ely about the blithely regular deposits. bold pinto beans are | +62126|697885|O|209172.37|1996-07-09|1-URGENT|Clerk#000001200|0| quickly according to the blithely even dependencies. special | +62127|98701|F|193879.72|1994-11-24|1-URGENT|Clerk#000004045|0|ake blithely blithely special acco| +62152|614554|O|176902.34|1995-08-03|3-MEDIUM|Clerk#000000317|0|even, ironic accounts promise about the carefully ironic ideas. blithely | +62153|549379|F|159140.01|1992-10-02|5-LOW|Clerk#000002275|0|osits. carefully regular theodolites haggle carefully pinto beans. furiously| +62154|139640|O|110472.61|1998-07-07|3-MEDIUM|Clerk#000000470|0|s deposits. slyly regular packages alongside of the q| +62155|178606|O|221611.66|1995-05-13|3-MEDIUM|Clerk#000003291|0|lar pinto beans acro| +62156|325343|O|363594.78|1997-07-11|3-MEDIUM|Clerk#000000567|0| bold instructions. f| +62157|529700|F|80943.94|1994-11-14|3-MEDIUM|Clerk#000001306|0|e furiously regular foxes. foxes according to the furiously unusual packages| +62158|164068|O|203687.91|1997-05-24|3-MEDIUM|Clerk#000002951|0|ipliers; furiously ironic requests nag slyly against the unusual de| +62159|466000|F|285234.65|1994-08-06|4-NOT SPECIFIED|Clerk#000000915|0|fully even packages| +62184|560600|F|18643.48|1992-11-18|3-MEDIUM|Clerk#000001625|0|the furiously final courts. pen| +62185|488473|O|140840.87|1998-01-25|1-URGENT|Clerk#000004833|0|he regular accounts. final instructions hang blithely quickly bold req| +62186|263137|F|32652.96|1993-12-08|2-HIGH|Clerk#000004733|0| requests through the quickly pending packages boost furiously furiously | +62187|528710|F|153231.86|1992-02-19|3-MEDIUM|Clerk#000000727|0|ackages use furiously. slyly regula| +62188|13600|F|89931.74|1994-08-09|5-LOW|Clerk#000003370|0|ilent requests. slyly regular packages wake slyly regul| +62189|557869|F|146511.16|1994-02-03|4-NOT SPECIFIED|Clerk#000002089|0|p. blithely unusual foxes integrate | +62190|332920|F|126417.32|1995-02-11|1-URGENT|Clerk#000002193|0|ts integrate furiously along the slyly special pac| +62191|379858|F|191366.75|1992-12-02|1-URGENT|Clerk#000004554|0|hely express ideas wake. slyly express requests across the ironic, i| +62216|272585|F|209834.99|1994-06-28|2-HIGH|Clerk#000002493|0|use blithely final foxes. requests affix according to| +62217|332104|O|147282.61|1998-03-03|4-NOT SPECIFIED|Clerk#000003146|0|he blithely even packages. bold, even| +62218|142363|F|111261.70|1992-07-06|1-URGENT|Clerk#000002099|0|en deposits. ironic ideas are| +62219|163432|F|123389.14|1992-05-13|3-MEDIUM|Clerk#000001544|0| according to the blithely silent packages. blithely bold somas run carefully| +62220|277543|O|239589.48|1996-02-05|3-MEDIUM|Clerk#000004040|0|uests haggle carefully slyly i| +62221|383524|O|174163.84|1996-06-25|2-HIGH|Clerk#000001132|0|gle furiously according to the regula| +62222|372262|F|87129.90|1992-06-20|2-HIGH|Clerk#000002269|0|g quickly among the enticing requests. deposits haggle along the quickly| +62223|80606|O|87823.42|1996-07-20|5-LOW|Clerk#000000607|0|gle slyly regular deposits. slyly final somas use furiou| +62248|244918|F|139974.86|1994-02-01|5-LOW|Clerk#000001106|0|ns haggle according to the fluf| +62249|336010|O|221146.69|1996-01-18|2-HIGH|Clerk#000000221|0|efully special deposits. i| +62250|557833|P|226554.73|1995-05-30|3-MEDIUM|Clerk#000002766|0|tructions sleep blithely above the| +62251|477106|O|85311.34|1998-01-18|2-HIGH|Clerk#000004227|0|jole furiously after the furiously express foxes. ironic packa| +62252|467176|F|81690.73|1993-05-02|4-NOT SPECIFIED|Clerk#000003300|0|ickly unusual accounts.| +62253|70312|O|226897.53|1998-03-23|4-NOT SPECIFIED|Clerk#000001260|0|ag against the blithely final accounts. blithely | +62254|466003|O|44868.56|1997-05-30|1-URGENT|Clerk#000000030|0|express packages haggle above the accounts. blithely regular | +62255|612007|F|78685.03|1994-06-11|4-NOT SPECIFIED|Clerk#000001661|0|inst the fluffily express pinto beans. care| +62280|494435|F|50484.66|1994-03-20|3-MEDIUM|Clerk#000001966|0|even accounts. even sheaves haggle blithely accor| +62281|706696|F|313155.40|1993-02-02|5-LOW|Clerk#000004726|0|as. express requests across the quickly regular dolphins wake c| +62282|422101|F|116173.93|1993-12-06|4-NOT SPECIFIED|Clerk#000002871|0|ic dependencies. furiously ir| +62283|745198|F|74814.81|1993-07-29|2-HIGH|Clerk#000002260|0|sual, special deposits. blithely bold ideas| +62284|291284|F|241730.18|1992-09-28|2-HIGH|Clerk#000000993|0|s sleep blithely against the even, silent asymp| +62285|345482|O|155523.11|1998-06-08|4-NOT SPECIFIED|Clerk#000002188|0|ic excuses nag blithely | +62286|2752|O|197101.83|1996-10-26|4-NOT SPECIFIED|Clerk#000004322|0|l asymptotes. slyly regular requests are furiou| +62287|481027|F|87481.46|1993-07-19|2-HIGH|Clerk#000003476|0|s are fluffily carefully regular requests. quickly ironic theodolites| +62312|362390|O|223307.63|1995-12-10|5-LOW|Clerk#000004151|0|to the carefully brave asymptotes are car| +62313|675758|F|153806.23|1992-04-17|5-LOW|Clerk#000003186|0|deposits. quickly regular accounts nod fluffily ironic, even packages. care| +62314|199871|F|155157.92|1994-05-08|3-MEDIUM|Clerk#000001881|0|warthogs. silent, r| +62315|723418|F|142075.38|1994-03-29|4-NOT SPECIFIED|Clerk#000000557|0|y ironic accounts. fluffily expr| +62316|220432|F|177688.75|1992-09-23|2-HIGH|Clerk#000001285|0|tect blithely. blithely express requests along the regular accounts haggle fl| +62317|535012|O|55870.77|1996-12-17|3-MEDIUM|Clerk#000001049|0| special instructions detect slyly. requests | +62318|166327|O|120750.20|1995-09-04|5-LOW|Clerk#000002331|0|furiously ironic requests wake about the blithel| +62319|189649|F|280179.93|1994-06-02|1-URGENT|Clerk#000004015|0|st. theodolites haggle slyly among the | +62344|651547|F|77080.11|1994-05-19|4-NOT SPECIFIED|Clerk#000003141|0|o beans haggle furiously ir| +62345|523534|F|129932.70|1992-04-16|5-LOW|Clerk#000003767|0|. regular, final theodolites will have to nag. slyly unusual | +62346|30343|F|123518.38|1994-10-16|1-URGENT|Clerk#000004546|0|ckages use after the regular, even accounts. blith| +62347|723799|F|109077.69|1993-01-22|3-MEDIUM|Clerk#000002276|0|ly carefully unusual sheaves. f| +62348|636874|F|207333.91|1993-08-02|1-URGENT|Clerk#000002902|0|xes. slyly unusual asymptotes integrate carefully. final ac| +62349|659083|F|118702.53|1993-01-24|4-NOT SPECIFIED|Clerk#000001130|0|t furiously above the sly| +62350|434123|F|73652.02|1993-12-11|3-MEDIUM|Clerk#000002558|0|. ironic packages nag. final deposits against the silent foxes wake b| +62351|291655|F|95357.27|1992-09-06|3-MEDIUM|Clerk#000002537|0|osits across the slyly special requests cajole ca| +62376|588371|F|204011.90|1992-01-31|3-MEDIUM|Clerk#000004084|0|o beans. express deposits cajole. pinto beans cajole. blithe| +62377|743486|F|143277.38|1993-11-21|4-NOT SPECIFIED|Clerk#000001001|0|es. quickly busy accounts haggle | +62378|11902|O|180299.71|1998-03-13|5-LOW|Clerk#000000827|0|uriously regular theodo| +62379|533059|F|126346.31|1993-02-06|4-NOT SPECIFIED|Clerk#000001397|0|ly regular theodolites breach carefully above the unusual pa| +62380|365902|F|91369.76|1992-03-31|2-HIGH|Clerk#000004394|0|ckly express ideas are after the blithely dogged p| +62381|445126|F|209866.93|1995-02-04|1-URGENT|Clerk#000000409|0|lites affix furiously across the carefully unusual p| +62382|728851|F|171455.55|1992-08-21|1-URGENT|Clerk#000001161|0|nusual instructions cajole carefully after the blithely express pint| +62383|34879|O|135880.10|1997-02-03|4-NOT SPECIFIED|Clerk#000002638|0|x furiously blithely express requests. final, even deposits haggle bli| +62408|446416|F|13615.78|1994-03-05|5-LOW|Clerk#000000589|0|ar pinto beans wake carefully| +62409|653731|O|203040.33|1996-10-08|4-NOT SPECIFIED|Clerk#000001876|0| requests boost someti| +62410|479932|F|319806.57|1994-08-27|2-HIGH|Clerk#000003732|0|regular deposits. carefully even asymp| +62411|706865|F|39174.53|1995-06-02|1-URGENT|Clerk#000004106|0|es. final theodolites wake at th| +62412|267289|F|84106.26|1995-03-03|1-URGENT|Clerk#000000959|0|ing to the carefully regular requests sleep furiou| +62413|545393|F|252846.37|1993-10-23|1-URGENT|Clerk#000004149|0|atelets nag blithely even requests. final, regular platelets b| +62414|666706|O|80570.01|1998-03-25|3-MEDIUM|Clerk#000003901|0|l ideas cajole furiously along the slyly final i| +62415|326467|O|199637.42|1997-11-20|5-LOW|Clerk#000002185|0| nod fluffily bold deposits. | +62440|655090|F|112248.41|1992-09-01|5-LOW|Clerk#000000658|0|ole quickly ideas. carefully eve| +62441|75187|O|128574.69|1998-04-10|4-NOT SPECIFIED|Clerk#000000171|0|e. slyly enticing theodo| +62442|641602|F|124155.70|1993-11-12|1-URGENT|Clerk#000004578|0| cajole blithely among the final, silent ideas. final deposits around the i| +62443|636631|F|186936.81|1993-07-02|5-LOW|Clerk#000000961|0| beans affix carefully fina| +62444|346304|P|287581.34|1995-03-26|2-HIGH|Clerk#000003488|0|gular platelets. express packages against the qu| +62445|326770|F|153125.77|1994-08-26|2-HIGH|Clerk#000001208|0|structions. carefully even deposits | +62446|490429|O|124971.24|1996-01-02|2-HIGH|Clerk#000000760|0|he busily ironic asymptotes serve about the caref| +62447|133789|O|244168.36|1995-09-06|3-MEDIUM|Clerk#000001458|0|ounts run slyly. fluffily ironic packages are s| +62472|61804|F|91477.44|1993-03-29|5-LOW|Clerk#000002735|0|deposits are furiously special, final deposits. slyly unusual depo| +62473|732851|F|5675.48|1993-05-14|2-HIGH|Clerk#000001766|0|blithely. furiously final accounts are blithely according to the slyly ir| +62474|514159|O|199879.99|1995-07-13|4-NOT SPECIFIED|Clerk#000001096|0|carefully about the ideas. final instructions cajole. deposit| +62475|687269|O|275847.01|1996-01-11|4-NOT SPECIFIED|Clerk#000004587|0|s above the carefully pending asymp| +62476|170707|P|259351.81|1995-05-26|3-MEDIUM|Clerk#000001361|0|ven, regular pinto beans around the carefully special r| +62477|310867|P|358597.47|1995-03-07|1-URGENT|Clerk#000003229|0| along the slyly bold packages. blithely even deposits affix. always | +62478|237425|F|133766.55|1992-01-19|1-URGENT|Clerk#000002163|0|s boost requests. furiously final package| +62479|385846|O|344146.01|1996-06-27|1-URGENT|Clerk#000002845|0|xpress instructions use fluffily around the dogged packag| +62504|409048|F|202273.54|1992-04-17|4-NOT SPECIFIED|Clerk#000000461|0| the quickly regular deposits. ironic, bold theodolite| +62505|363349|O|210919.59|1995-10-07|5-LOW|Clerk#000002614|0|at the thinly express theodolites-- furiously regula| +62506|273650|F|136254.04|1994-02-28|3-MEDIUM|Clerk#000004650|0|ly. silent deposits| +62507|231125|O|212143.99|1995-10-16|2-HIGH|Clerk#000002147|0| detect. bold platelets nod according to the fu| +62508|254027|O|247464.12|1996-09-18|2-HIGH|Clerk#000002997|0|gle carefully against the furiously pending no| +62509|430471|F|182776.33|1993-01-19|2-HIGH|Clerk#000003263|0|ts. express decoys run regularly a| +62510|394340|O|234933.94|1998-01-18|4-NOT SPECIFIED|Clerk#000004349|0|ts. carefully special requests h| +62511|663802|O|258448.95|1995-12-04|2-HIGH|Clerk#000003452|0| blithely doggedly ironic theodolites. silent packa| +62536|261041|F|38237.35|1993-07-09|4-NOT SPECIFIED|Clerk#000004027|0|; theodolites use blithely bold notorni| +62537|561797|O|152800.66|1998-02-21|2-HIGH|Clerk#000002396|0|ndencies sleep ironic accounts. furiously fluffy requests haggle furio| +62538|365651|F|44737.00|1994-05-01|2-HIGH|Clerk#000000726|0|bold requests sleep courts. carefully regular packages haggle slyly| +62539|735781|F|167281.97|1992-07-31|2-HIGH|Clerk#000000335|0|. blithely special packages grow furiously furiously even instructions: f| +62540|247570|O|177972.87|1996-08-31|4-NOT SPECIFIED|Clerk#000004342|0|luffily pending dolphins nag slyly slyly busy accounts; special requ| +62541|634981|O|26993.75|1998-03-23|1-URGENT|Clerk#000000438|0| regular requests. depo| +62542|371488|F|53088.44|1992-07-16|2-HIGH|Clerk#000003088|0|warhorses. blithely special deposits wa| +62543|573610|F|100104.91|1992-11-03|3-MEDIUM|Clerk#000004630|0|s. furiously pending request| +62568|142718|F|205184.24|1992-05-18|3-MEDIUM|Clerk#000001214|0| along the slowly regular requests. special deposits cajole. furiousl| +62569|159913|O|166040.00|1998-03-26|5-LOW|Clerk#000002507|0|ic deposits thrash slyly even platelets. multipliers haggle blithel| +62570|399670|F|137357.43|1994-01-03|3-MEDIUM|Clerk#000004392|0|ns nag fluffily at the bold ideas. flu| +62571|247534|F|262884.47|1994-07-12|1-URGENT|Clerk#000003729|0|sly ironic requests boost across the final| +62572|37514|O|86790.50|1997-08-18|4-NOT SPECIFIED|Clerk#000003446|0|the quickly unusual accounts. furiously special th| +62573|493856|F|164242.76|1994-01-06|3-MEDIUM|Clerk#000000541|0|! slyly special packages affix blithely. finally regular braids about the | +62574|724412|F|195425.44|1993-11-04|2-HIGH|Clerk#000003342|0|ns. furiously ironic deposits engage slyly. silent pains sleep r| +62575|426985|O|21678.76|1996-10-26|3-MEDIUM|Clerk#000002011|0|ackages. silently regular plat| +62600|325817|O|3330.78|1995-07-24|1-URGENT|Clerk#000004529|0| packages after the ca| +62601|250646|F|261064.64|1993-12-21|4-NOT SPECIFIED|Clerk#000000656|0| packages cajole. deposits are. bold deposits sleep slyly.| +62602|599771|O|14182.68|1997-11-14|1-URGENT|Clerk#000004899|0|es; furiously ironic theodolites us| +62603|335312|F|15930.18|1994-04-16|3-MEDIUM|Clerk#000001477|0|elets. blithely unusu| +62604|86410|O|40375.92|1996-03-28|3-MEDIUM|Clerk#000003533|0|rs. quickly ironic platelets sleep enticingly even, special dugouts. p| +62605|285062|P|140347.28|1995-05-01|3-MEDIUM|Clerk#000002025|0|y. furiously special instructions are quickl| +62606|32515|O|183165.23|1996-12-02|5-LOW|Clerk#000003425|0|slyly. fluffily unusual deposits cajole | +62607|450119|F|96471.30|1992-11-02|4-NOT SPECIFIED|Clerk#000003390|0| excuses about the sile| +62632|648382|F|189308.44|1995-01-31|2-HIGH|Clerk#000004463|0|ly beneath the special dinos. special asymptotes about the furiously fina| +62633|606211|O|301661.13|1995-06-16|1-URGENT|Clerk#000002118|0|ular packages. carefully ironic packages along the bold, silent excuses wake s| +62634|560728|O|101923.68|1998-03-14|1-URGENT|Clerk#000004068|0|ts detect against the special pinto beans. finally ironic | +62635|391226|F|234992.75|1994-10-31|1-URGENT|Clerk#000001448|0|mptotes wake final accounts. regular deposits could nag.| +62636|73294|F|102950.57|1993-05-11|1-URGENT|Clerk#000002913|0|uriously ironic requests haggle. care| +62637|351055|O|11939.24|1996-12-25|3-MEDIUM|Clerk#000000924|0|le quickly after the final, final instructions. pinto bean| +62638|653488|O|192867.63|1996-12-22|1-URGENT|Clerk#000004887|0|lly express packages. furiously bold forges use | +62639|145261|O|173445.67|1996-05-28|2-HIGH|Clerk#000001691|0|refully. carefully express theodolites caj| +62664|122548|F|256219.91|1993-03-12|3-MEDIUM|Clerk#000001957|0| according to the slyly final pa| +62665|160174|F|185439.87|1993-06-05|1-URGENT|Clerk#000003826|0|kly unusual deposits use slyly blithely regular requests. bold theod| +62666|267067|O|296346.72|1997-11-28|4-NOT SPECIFIED|Clerk#000000915|0| nag carefully. carefully pending packages acc| +62667|568678|F|51262.57|1994-08-03|3-MEDIUM|Clerk#000004915|0|ngage carefully alongside of the unusual accoun| +62668|509092|O|88132.28|1998-03-09|5-LOW|Clerk#000000403|0|lyly even accounts wake against the accounts. ruthl| +62669|278875|F|395302.51|1994-07-11|4-NOT SPECIFIED|Clerk#000002751|0| ironic packages haggle above the blithely regular deposits| +62670|272509|F|130199.28|1994-10-20|4-NOT SPECIFIED|Clerk#000003606|0|d the carefully brave requests. special deposits mold under the blithely regul| +62671|535487|O|137345.98|1997-08-02|2-HIGH|Clerk#000000367|0|g the carefully bold accounts engage| +62696|665272|F|103251.34|1994-09-14|4-NOT SPECIFIED|Clerk#000000455|0|kly. packages haggle blith| +62697|201788|O|87679.67|1997-01-14|3-MEDIUM|Clerk#000000297|0| the carefully daring instructions. bold id| +62698|698899|O|68725.86|1996-05-30|2-HIGH|Clerk#000001557|0|e fluffily regular deposits-- sile| +62699|620192|F|277228.11|1993-03-01|2-HIGH|Clerk#000000194|0|riously daring dependencies. quickly special escapades around | +62700|51724|F|92669.15|1993-02-13|4-NOT SPECIFIED|Clerk#000004483|0|nto beans nag ironically beyond the furious| +62701|69667|F|184879.36|1992-08-18|3-MEDIUM|Clerk#000001070|0|e carefully alongside of t| +62702|110398|F|108786.92|1994-10-29|4-NOT SPECIFIED|Clerk#000000038|0|uests cajole ironic excuses. s| +62703|682390|F|201659.88|1994-04-23|5-LOW|Clerk#000004660|0|s use according to the carefully unusual theodolites| +62728|665356|F|137176.37|1992-08-19|2-HIGH|Clerk#000003854|0|ly even foxes solve pendin| +62729|133298|F|134067.10|1993-03-09|1-URGENT|Clerk#000003574|0|gular accounts sleep furiously regular acc| +62730|78421|O|117769.20|1998-06-03|3-MEDIUM|Clerk#000002600|0|special requests. blithely express packages wake carefully. express packages| +62731|256267|O|140365.38|1996-05-19|2-HIGH|Clerk#000003523|0|old deposits doze boldly across the slyly even instruc| +62732|559379|O|135112.93|1995-11-21|2-HIGH|Clerk#000003552|0|ns behind the regular deposits hang fluffily slyly express deposits. blithel| +62733|225910|F|148091.36|1992-01-12|3-MEDIUM|Clerk#000000617|0| cajole across the unu| +62734|356729|O|195418.47|1998-05-22|2-HIGH|Clerk#000002540|0|ld pinto beans. fluf| +62735|42575|F|4345.14|1993-05-19|1-URGENT|Clerk#000003489|0|arefully regular deposits cajole carefully furiously pending foxes. un| +62760|42422|F|120284.08|1993-04-09|1-URGENT|Clerk#000000761|0|reful accounts. carefully close packag| +62761|469945|F|227575.09|1994-05-29|4-NOT SPECIFIED|Clerk#000003082|0| platelets sleep quickly. furiously expre| +62762|103978|F|164759.30|1993-06-20|4-NOT SPECIFIED|Clerk#000002809|0|es haggle slyly. carefully regular packages snooze final| +62763|46007|F|246862.79|1994-11-18|3-MEDIUM|Clerk#000001809|0|tructions. carefully clos| +62764|728869|F|188617.74|1992-09-28|1-URGENT|Clerk#000002135|0|lthily across the slyly ironic accounts. | +62765|350920|O|105289.62|1996-09-14|5-LOW|Clerk#000003140|0|ly regular accounts. fluffily regular braids sleep enticingly af| +62766|639608|F|308735.90|1993-04-18|2-HIGH|Clerk#000003663|0|uests haggle fluffily; | +62767|130048|O|29003.80|1998-07-08|3-MEDIUM|Clerk#000000933|0|ions. carefully quiet reques| +62792|210235|F|164619.57|1992-06-04|1-URGENT|Clerk#000002103|0|ons above the stealthily final | +62793|147062|F|86268.21|1992-10-15|1-URGENT|Clerk#000004737|0|egular foxes. furiously even accounts hagg| +62794|417670|O|263424.47|1996-04-25|1-URGENT|Clerk#000001315|0|nusual requests. quickly final instructions are quickly regula| +62795|527563|O|143939.65|1997-04-13|3-MEDIUM|Clerk#000001295|0|gular dolphins sleep carefully along the slowly pending de| +62796|242272|F|183637.26|1992-11-09|3-MEDIUM|Clerk#000004563|0|ndencies. furiously ironic accounts integrate according to the| +62797|84278|F|330591.63|1994-11-16|1-URGENT|Clerk#000004793|0|. blithely express braids solve-- packages serve. dolphins use carefully a| +62798|456268|O|90506.70|1997-06-07|5-LOW|Clerk#000002790|0| furiously brave deposits; final, final theodolites sleep | +62799|464329|F|49703.83|1992-09-27|4-NOT SPECIFIED|Clerk#000001389|0| across the blithely special packages. furiousl| +62824|203830|O|19521.28|1997-06-08|4-NOT SPECIFIED|Clerk#000003178|0|blithely express packages haggle. bold, even foxes are alon| +62825|513755|F|298762.14|1995-03-17|4-NOT SPECIFIED|Clerk#000000214|0|nal, pending accounts-- caref| +62826|669985|F|29975.41|1992-02-01|1-URGENT|Clerk#000000782|0|alongside of the quickly final a| +62827|687784|F|134105.71|1992-07-27|2-HIGH|Clerk#000002497|0|as. even excuses ha| +62828|578786|F|75386.94|1994-09-13|3-MEDIUM|Clerk#000000657|0|ing to the blithely| +62829|152641|F|216988.93|1994-10-08|2-HIGH|Clerk#000004381|0|oxes. even accounts are. slyly regular d| +62830|426112|F|69786.27|1994-11-28|5-LOW|Clerk#000001694|0|ests. fluffily regular packages sleep. furiou| +62831|631952|O|224093.31|1996-08-29|3-MEDIUM|Clerk#000003670|0|lithely even ideas wake across the| +62856|453973|F|319299.59|1994-04-24|3-MEDIUM|Clerk#000002899|0|uses wake closely. slyly ironic courts along the final, | +62857|147148|F|264629.85|1993-05-28|3-MEDIUM|Clerk#000001953|0|counts. carefully regular| +62858|332992|O|153393.81|1997-09-23|3-MEDIUM|Clerk#000003265|0|p slyly regular requests. carefully final pearls use according to the| +62859|71171|F|284723.38|1992-01-01|1-URGENT|Clerk#000000591|0|realms sleep blithely pending ideas. carefully fi| +62860|658736|F|366052.44|1994-05-25|1-URGENT|Clerk#000001929|0|es sleep blithely above the bold requests. slyl| +62861|624136|O|92011.15|1997-08-13|2-HIGH|Clerk#000000043|0|sly pending accounts along the bl| +62862|333481|F|161491.84|1993-05-13|2-HIGH|Clerk#000000893|0|ggle carefully quickly | +62863|43585|O|82071.45|1995-11-20|1-URGENT|Clerk#000002569|0|carefully final theod| +62888|502226|O|181711.07|1995-07-10|1-URGENT|Clerk#000002009|0|finally express warhorses affix quickly about the final excuses.| +62889|409153|O|49892.20|1996-01-20|4-NOT SPECIFIED|Clerk#000004727|0|mong the carefully ironic p| +62890|632017|F|115765.36|1994-12-26|5-LOW|Clerk#000004140|0|special, special asymptotes wake according to the silent decoys. furiously| +62891|51086|F|146798.86|1992-01-25|5-LOW|Clerk#000000867|0|cross the pinto beans haggle quickly among the theodolites. packages| +62892|594481|F|237848.84|1993-08-24|4-NOT SPECIFIED|Clerk#000003860|0|! slyly express theodolites use! regularly final excuses solve blithely | +62893|659366|O|188271.24|1995-09-08|1-URGENT|Clerk#000002222|0|uickly against the fluffily final asymptotes. quickly pending pinto beans | +62894|699302|O|43525.38|1998-04-30|1-URGENT|Clerk#000003828|0|ix fluffily furiously unusual accounts. regular packages s| +62895|652420|O|54173.10|1995-12-11|1-URGENT|Clerk#000004491|0|riously. slyly regular ideas boost. accounts cajo| +62920|206053|O|303965.31|1997-02-22|3-MEDIUM|Clerk#000001123|0|s. blithely pending accounts haggle among the | +62921|380110|O|205776.61|1996-01-02|2-HIGH|Clerk#000004922|0|the slyly bold packages; theodolites wake blithely. b| +62922|737608|O|237144.46|1997-10-22|5-LOW|Clerk#000004439|0|efully regular theodolites wake. accounts | +62923|211165|O|130450.62|1998-06-07|4-NOT SPECIFIED|Clerk#000003689|0|sts. pending, unusual theodolites nod blithely f| +62924|45019|F|74340.64|1993-12-16|4-NOT SPECIFIED|Clerk#000000964|0|ely even accounts sleep f| +62925|624368|O|84399.24|1996-10-09|2-HIGH|Clerk#000000310|0|gular packages. carefully even deposits sleep furio| +62926|497101|O|304731.61|1997-11-28|1-URGENT|Clerk#000000360|0|eans sleep furiously final, ironic asymptotes. fluff| +62927|520888|F|100304.24|1992-01-02|2-HIGH|Clerk#000004387|0|ts. slyly special ideas eat q| +62952|538321|F|197548.06|1992-04-25|3-MEDIUM|Clerk#000000723|0| special, regular accou| +62953|294860|F|193877.01|1993-12-29|5-LOW|Clerk#000001295|0|s. blithely bold courts are carefully quickly final requests. re| +62954|452497|F|306871.28|1994-02-28|1-URGENT|Clerk#000000606|0|ly quick deposits haggle furiously pending account| +62955|101225|O|178234.29|1996-08-28|4-NOT SPECIFIED|Clerk#000004216|0| carefully furiously expre| +62956|275324|F|192377.39|1993-10-20|5-LOW|Clerk#000003346|0|ccounts boost. carefully bol| +62957|614509|O|5584.25|1998-03-20|2-HIGH|Clerk#000002778|0|as. furiously bold pinto b| +62958|522994|O|224046.59|1996-04-19|4-NOT SPECIFIED|Clerk#000001397|0|unusual dependencies. slyly unusual requests above the regu| +62959|709519|F|202831.15|1993-04-01|1-URGENT|Clerk#000004290|0|r packages haggle at the requests. quickly pending instructions solve blithe| +62984|625039|O|209881.87|1998-03-21|2-HIGH|Clerk#000002383|0|ly ironic ideas. instructions alongside of| +62985|523606|F|165551.22|1993-05-20|5-LOW|Clerk#000004373|0|unts-- unusual foxes caj| +62986|486982|O|18394.39|1996-10-17|1-URGENT|Clerk#000001661|0|symptotes. carefully regular frays cajole carefull| +62987|693824|F|61201.32|1993-09-14|1-URGENT|Clerk#000003772|0|ronic sauternes. speci| +62988|93028|F|118733.12|1993-04-13|4-NOT SPECIFIED|Clerk#000001548|0|. carefully regular theodolites integra| +62989|501823|O|27280.59|1996-03-13|4-NOT SPECIFIED|Clerk#000003350|0|. regularly regular excuses use furiously. sly| +62990|355718|F|170957.66|1994-12-13|5-LOW|Clerk#000004086|0|inst the special packages. express requests dazzle quickly. even,| +62991|293167|F|161639.65|1993-10-15|5-LOW|Clerk#000004411|0|inst the bold foxes use slyly carefully unusual asympt| +63016|489121|F|123030.00|1993-05-16|4-NOT SPECIFIED|Clerk#000004503|0|pinto beans use regularly a| +63017|640075|O|130011.14|1995-07-23|4-NOT SPECIFIED|Clerk#000001104|0|inal pinto beans after the carefully bold i| +63018|464569|O|351760.69|1997-11-28|1-URGENT|Clerk#000002201|0|ggle. carefully even idea| +63019|494984|F|111784.60|1993-08-05|2-HIGH|Clerk#000002453|0|its wake carefully. blith| +63020|182200|O|133982.65|1996-04-23|2-HIGH|Clerk#000003796|0|lly final accounts haggle ca| +63021|733706|O|200662.99|1996-06-04|3-MEDIUM|Clerk#000004305|0|y even packages alongside of the pi| +63022|642053|F|49092.91|1993-05-05|4-NOT SPECIFIED|Clerk#000004331|0|gular dolphins. furiously final| +63023|724591|F|64617.08|1992-12-07|4-NOT SPECIFIED|Clerk#000000061|0|uests. ironic, even as| +63048|447461|O|20786.86|1997-06-05|3-MEDIUM|Clerk#000000797|0|kly bold hockey playe| +63049|210739|P|285385.26|1995-04-06|3-MEDIUM|Clerk#000004326|0|y silent epitaphs. blit| +63050|357371|F|102671.30|1993-08-16|3-MEDIUM|Clerk#000004959|0|heodolites. carefully silent orbits boost regular, ironic accounts. fluffi| +63051|332422|P|333654.66|1995-03-25|2-HIGH|Clerk#000002170|0| slyly above the blithely express deposits. furio| +63052|258658|O|262090.65|1997-11-18|5-LOW|Clerk#000004508|0|ress theodolites impress after the enticingly careful excuses. frays are furi| +63053|264205|O|305051.38|1995-10-28|1-URGENT|Clerk#000002034|0|he slyly ironic escapades cajole slyly packages. sometimes| +63054|484304|F|137595.60|1992-12-06|3-MEDIUM|Clerk#000000775|0|roughout the final, pending accounts boost furiously entic| +63055|696167|F|238472.20|1994-04-15|2-HIGH|Clerk#000004392|0| across the blithely final requests u| +63080|467978|O|128337.21|1998-03-20|1-URGENT|Clerk#000003992|0|fix dependencies-- slyly special foxes ha| +63081|52198|O|28182.62|1997-03-11|3-MEDIUM|Clerk#000001800|0|are carefully. packages doze along th| +63082|518113|O|131474.02|1996-04-18|4-NOT SPECIFIED|Clerk#000001324|0|s wake slyly blithely regular packages. flu| +63083|407845|O|141305.30|1996-08-26|5-LOW|Clerk#000004400|0|leep quickly. blithely silent deposits wake fluffily. slyly unu| +63084|375302|O|143430.04|1995-12-17|2-HIGH|Clerk#000002662|0|ly bold dolphins. bold ideas de| +63085|186700|F|21538.80|1994-09-17|4-NOT SPECIFIED|Clerk#000004368|0|thrash slyly quiet pearls. stealthy accounts nag quickly regular theodolit| +63086|607271|O|67949.01|1997-03-13|4-NOT SPECIFIED|Clerk#000000884|0|arthogs about the ironic requests haggle even instru| +63087|394877|O|68377.26|1997-05-20|5-LOW|Clerk#000002965|0|ies sleep blithely. furiously even excuses wake carefully ideas. | +63112|686167|O|66585.18|1997-11-16|1-URGENT|Clerk#000004043|0|ss, final excuses after the slyly ironic pinto beans haggl| +63113|377818|O|227577.05|1997-04-08|1-URGENT|Clerk#000004867|0|c requests cajole blithely slyly unusual requests. dep| +63114|466909|F|78278.11|1992-04-12|1-URGENT|Clerk#000003860|0|as around the special, pending dol| +63115|76135|O|212441.63|1995-10-04|4-NOT SPECIFIED|Clerk#000000621|0|s. furiously express asymptotes acros| +63116|81346|O|276755.01|1997-07-14|2-HIGH|Clerk#000000516|0| hang fluffily alongside of the carefully| +63117|650915|O|286423.43|1996-07-19|2-HIGH|Clerk#000000740|0|n asymptotes print carefully after the frets. express the| +63118|421267|O|149213.27|1995-11-26|1-URGENT|Clerk#000002895|0|egular somas cajole: deposits boost quickly. pending instruct| +63119|228928|O|37333.63|1998-02-08|4-NOT SPECIFIED|Clerk#000001697|0|st the slyly ironic waters. carefull| +63144|89000|O|272363.96|1997-02-17|5-LOW|Clerk#000000356|0|s haggle quickly by the quickly silent courts. carefully| +63145|318245|O|149428.52|1997-04-08|5-LOW|Clerk#000001495|0|bold theodolites. slyly unusual deposits | +63146|490877|O|2632.39|1996-11-16|3-MEDIUM|Clerk#000004856|0|ously special foxes nod furiously carefully unusual deposits. regular dep| +63147|154052|O|17993.64|1995-06-03|4-NOT SPECIFIED|Clerk#000000118|0|terns boost slyly furiously bold waters. perm| +63148|143977|O|138702.12|1997-09-09|5-LOW|Clerk#000000045|0|nticing accounts doubt blithely. ironic requests cajole. blithely i| +63149|319684|F|123665.49|1993-01-09|2-HIGH|Clerk#000000652|0|slyly above the slyly silent dependencies. q| +63150|672121|F|196403.87|1993-05-03|2-HIGH|Clerk#000002551|0|egular accounts nag | +63151|582491|O|143341.12|1996-10-15|2-HIGH|Clerk#000004277|0|y bold requests. even packages nag furiously. carefully final tithe| +63176|175339|F|205808.87|1994-03-22|4-NOT SPECIFIED|Clerk#000002661|0|ages nag. fluffily ironic| +63177|168052|F|42205.30|1993-03-27|1-URGENT|Clerk#000004941|0|r packages. close dinos promise. regular packages cajole enticingly blithel| +63178|697487|F|213134.21|1992-07-16|2-HIGH|Clerk#000001851|0|y about the furiously regular pa| +63179|150658|O|116171.94|1996-09-29|3-MEDIUM|Clerk#000003744|0|dolites haggle fluffily final dependencies. slyly final the| +63180|96443|F|31576.58|1992-09-09|3-MEDIUM|Clerk#000003785|0|whithout the silent packages. furiously | +63181|157583|F|189621.74|1992-05-16|5-LOW|Clerk#000003447|0|eposits sleep bravely ideas. carefully | +63182|232574|O|233423.12|1995-12-08|4-NOT SPECIFIED|Clerk#000002974|0|ronically unusual accounts. finally ironic dolphins| +63183|610621|O|202140.07|1995-09-16|1-URGENT|Clerk#000003789|0|cajole carefully above t| +63208|430168|O|108667.10|1996-05-08|3-MEDIUM|Clerk#000000990|0|ckages affix stealthily after the quic| +63209|574045|O|121839.40|1996-12-13|4-NOT SPECIFIED|Clerk#000003816|0|fily even requests. quickly unusual | +63210|703714|F|65944.49|1994-01-08|4-NOT SPECIFIED|Clerk#000001061|0|y silent accounts. slyly re| +63211|553169|O|132846.21|1997-02-25|4-NOT SPECIFIED|Clerk#000000426|0| across the carefully quiet inst| +63212|105793|O|46127.33|1995-05-19|2-HIGH|Clerk#000004990|0|counts cajole furiously express foxes. quickly| +63213|559621|F|58752.35|1992-12-02|1-URGENT|Clerk#000001682|0|ests hinder furiously even packages. f| +63214|519577|O|145109.15|1997-01-23|5-LOW|Clerk#000002520|0|es poach around the blithely even deposits. even | +63215|248806|F|402717.98|1992-11-28|4-NOT SPECIFIED|Clerk#000004326|0|posits. slyly final theodolites sleep. quickly even d| +63240|405604|O|52593.45|1997-04-05|1-URGENT|Clerk#000001559|0|instructions. carefully special packages sleep| +63241|223384|O|110924.86|1998-07-02|3-MEDIUM|Clerk#000002416|0|ularly after the slyly silent foxes. express, ironic platelet| +63242|634033|O|155266.45|1997-02-13|4-NOT SPECIFIED|Clerk#000004780|0|nal pinto beans. quickly even packages thrash slyly unusual asymptotes. re| +63243|184696|O|190675.10|1998-05-27|2-HIGH|Clerk#000002763|0|round the blithely bold ideas cajole furiously quickly expr| +63244|681956|O|117480.02|1998-05-21|1-URGENT|Clerk#000002998|0|lites. furiously regula| +63245|119863|O|63221.74|1996-10-24|3-MEDIUM|Clerk#000002280|0|. regular, unusual instructions int| +63246|33517|O|172176.51|1995-10-19|2-HIGH|Clerk#000004692|0|counts. even, unusual requ| +63247|37540|O|187466.05|1995-07-30|5-LOW|Clerk#000000121|0| waters detect carefully blithely i| +63272|165430|F|54851.91|1993-08-17|2-HIGH|Clerk#000002137|0|es are fluffily car| +63273|106024|O|179933.91|1997-03-06|3-MEDIUM|Clerk#000001194|0|ggle slyly pending Tiresias. | +63274|674369|O|35713.37|1995-07-02|3-MEDIUM|Clerk#000004700|0| accounts haggle blithely according to the foxes. regular packages at the| +63275|109162|O|275485.88|1998-01-07|4-NOT SPECIFIED|Clerk#000000673|0| packages. carefully final instructions after the sometimes expre| +63276|157465|F|5418.56|1992-01-21|4-NOT SPECIFIED|Clerk#000002776|0|deposits cajole along the slyly dogged pinto beans. fluffily even pinto | +63277|500563|F|77432.20|1993-11-25|5-LOW|Clerk#000001223|0|deposits. unusual instructions wake ac| +63278|178849|F|47590.49|1992-08-20|4-NOT SPECIFIED|Clerk#000002447|0|nal accounts. even deposits haggle. carefully ruth| +63279|643534|O|66180.25|1998-05-27|3-MEDIUM|Clerk#000004291|0|e ironic asymptotes wake| +63304|95435|O|39908.11|1997-04-02|4-NOT SPECIFIED|Clerk#000003413|0|c deposits against the blith| +63305|466373|O|322799.03|1995-12-10|5-LOW|Clerk#000001837|0|ial excuses sleep finally quickly unusual requests. p| +63306|77150|O|95435.46|1997-02-25|3-MEDIUM|Clerk#000000093|0|heodolites wake instead of the final patterns. carefully even | +63307|650827|O|114660.14|1996-06-10|2-HIGH|Clerk#000002146|0|ainst the special excuse| +63308|427802|O|172871.76|1998-05-31|4-NOT SPECIFIED|Clerk#000003687|0|to beans. ironic requests integ| +63309|563390|O|230070.37|1995-06-20|5-LOW|Clerk#000000102|0| foxes. final asymptotes poach quick| +63310|142294|O|50844.81|1996-01-02|4-NOT SPECIFIED|Clerk#000002461|0|platelets after the slyly special depos| +63311|521485|O|258648.83|1998-02-06|2-HIGH|Clerk#000002099|0|nal dolphins use carefully over the carefully iron| +63336|65989|F|117441.30|1992-04-09|4-NOT SPECIFIED|Clerk#000003805|0| ironic requests. daring packages nag carefully doggedly ru| +63337|572062|O|164459.28|1996-06-10|4-NOT SPECIFIED|Clerk#000003334|0| ironic tithes. slyly special packages haggl| +63338|366850|O|8909.97|1995-05-24|4-NOT SPECIFIED|Clerk#000004175|0|s. furiously pending foxes sublate carefully according to the boldly un| +63339|629804|F|69373.55|1993-12-17|5-LOW|Clerk#000004412|0|ckly dolphins. blithely reg| +63340|355303|O|200813.51|1997-04-01|5-LOW|Clerk#000004071|0|uests after the carefully pending foxes boos| +63341|44297|F|25264.23|1993-08-07|5-LOW|Clerk#000000131|0|ts. even, bold ideas a| +63342|487279|O|195375.82|1997-04-17|3-MEDIUM|Clerk#000000705|0|ng excuses. ironic, blithe theodolites haggle. quickly pe| +63343|418708|O|145610.43|1995-11-13|5-LOW|Clerk#000001600|0| according to the furiously fin| +63368|693056|F|31813.39|1993-12-12|1-URGENT|Clerk#000002769|0|requests. express theodolites haggle slyly al| +63369|686309|F|121924.01|1993-02-04|5-LOW|Clerk#000002057|0|y blithely pending deposits. deposits wake qui| +63370|543301|F|55888.20|1992-05-20|1-URGENT|Clerk#000004258|0|the furiously final deposits hang fluffily reg| +63371|614|F|160981.41|1993-12-08|2-HIGH|Clerk#000001628|0| are furiously. final, pending accounts are| +63372|569146|O|170919.52|1995-06-26|4-NOT SPECIFIED|Clerk#000000085|0| carefully unusual deposits. fluffily final pinto beans alongside of the iron| +63373|106162|F|165915.72|1993-11-12|5-LOW|Clerk#000004330|0|inal multipliers boost blithely furiously regular instructions: exp| +63374|734467|P|228973.97|1995-03-23|2-HIGH|Clerk#000003991|0|ters haggle quickly after the brave, pe| +63375|670780|O|223370.15|1998-04-29|1-URGENT|Clerk#000000311|0|ymptotes haggle. blithely entici| +63400|547009|F|55488.85|1992-04-25|3-MEDIUM|Clerk#000002250|0|ages unwind blithely. ironic, even instructions cajo| +63401|72026|P|203678.78|1995-05-19|3-MEDIUM|Clerk#000004883|0|express excuses haggle caref| +63402|35164|F|88630.92|1992-03-14|1-URGENT|Clerk#000000218|0|ously bold requests nag slyly carefully regular pinto beans. pending account| +63403|748123|F|85961.25|1992-03-29|2-HIGH|Clerk#000004042|0|usly regular dependencies doubt slowly final accounts| +63404|684236|F|174106.20|1994-05-26|1-URGENT|Clerk#000003912|0|sts wake along the carefully final platelets. never r| +63405|196555|O|210081.39|1996-06-11|3-MEDIUM|Clerk#000002486|0|s are after the ironically even pinto beans. fluffily regular accounts| +63406|478316|F|194826.51|1994-04-07|1-URGENT|Clerk#000004703|0|s sleep carefully slyly final deposits. slyly bold excuses haggle | +63407|550882|F|115840.54|1993-06-30|4-NOT SPECIFIED|Clerk#000001028|0|eodolites. furiously final multipliers use fluffily abou| +63432|660763|O|331798.75|1996-01-31|5-LOW|Clerk#000000479|0|ely silent requests use fu| +63433|164809|F|277784.42|1993-01-19|4-NOT SPECIFIED|Clerk#000003104|0|s haggle around the unusual,| +63434|187058|F|199672.99|1993-10-03|3-MEDIUM|Clerk#000003326|0|tructions wake slyly according to the blithely fin| +63435|619490|O|23030.44|1995-03-10|5-LOW|Clerk#000004710|0|lithely silent requests. slyly final instructions do boost car| +63436|256613|F|32005.30|1993-07-04|2-HIGH|Clerk#000004989|0|inal, regular excuses wake blithely| +63437|383578|F|395711.71|1994-05-06|4-NOT SPECIFIED|Clerk#000001586|0|slyly forges-- slyly even ac| +63438|523823|O|133373.55|1997-12-28|2-HIGH|Clerk#000001800|0| final requests kindle slyly around the final, even dependencies. bo| +63439|391882|O|12579.51|1996-12-23|5-LOW|Clerk#000002126|0|ys regular packages wake blithely ironic packages. carefully ironic p| +63464|577811|F|17043.86|1994-05-24|5-LOW|Clerk#000001009|0|the fluffily regular req| +63465|267283|O|67635.42|1996-07-16|2-HIGH|Clerk#000004688|0|y special instructions! final waters after the slyly even ideas | +63466|446129|F|208557.28|1994-04-09|2-HIGH|Clerk#000004145|0|tions haggle among the blithely bold attainments. pending, final | +63467|340055|F|257620.33|1993-07-15|3-MEDIUM|Clerk#000004502|0| final pinto beans. f| +63468|295264|F|180796.29|1992-03-25|3-MEDIUM|Clerk#000002330|0|accounts use fluffily brave reque| +63469|480803|O|45291.97|1997-10-23|4-NOT SPECIFIED|Clerk#000004727|0|es. blithely regular pai| +63470|355123|F|91847.74|1994-04-09|3-MEDIUM|Clerk#000001836|0|t the slyly ruthless ac| +63471|27502|O|37646.94|1998-04-06|1-URGENT|Clerk#000001689|0|ncies after the even instructions integrate among the | +63496|208003|O|230909.32|1997-03-13|4-NOT SPECIFIED|Clerk#000002226|0|ess accounts affix furiously pending, pending| +63497|135385|O|215751.48|1996-05-21|1-URGENT|Clerk#000003433|0|ess, ironic requests wake slyly above the s| +63498|640630|F|230808.64|1993-06-03|5-LOW|Clerk#000001159|0|its. special theodolites haggle across the r| +63499|46757|F|190907.39|1994-08-09|1-URGENT|Clerk#000004362|0|efully final pinto beans. furiously express courts sleep| +63500|581063|O|33917.92|1995-11-15|1-URGENT|Clerk#000001582|0|kages haggle furiously deposits. blithely regular deposits kindle regularly fi| +63501|174103|O|31985.07|1997-02-08|3-MEDIUM|Clerk#000003451|0|s among the special, unusual foxes are across the theodolites. blithely re| +63502|391625|O|130892.66|1998-04-19|4-NOT SPECIFIED|Clerk#000001672|0|ending packages sleep slyly furiously even accounts. blithely | +63503|27437|O|265977.80|1996-08-21|4-NOT SPECIFIED|Clerk#000002351|0|cial ideas use fluffily af| +63528|619987|O|69772.70|1995-07-20|5-LOW|Clerk#000000924|0| warthogs. carefully pen| +63529|350731|O|269316.09|1995-10-17|4-NOT SPECIFIED|Clerk#000003668|0|lyly thin excuses. bold, pending requests affix regularly. slyly ironic pa| +63530|455443|O|105859.84|1996-05-08|2-HIGH|Clerk#000002993|0|he quickly pending instru| +63531|99404|O|258611.42|1998-07-04|5-LOW|Clerk#000003442|0| thrash. slyly bold requests haggle quickly. blithely regula| +63532|429295|F|279574.75|1994-10-03|5-LOW|Clerk#000001652|0| above the furiously bold accoun| +63533|132239|O|257875.23|1997-09-22|4-NOT SPECIFIED|Clerk#000002121|0|ironic, express requests unwind. fluffily unusual plate| +63534|284362|O|66851.75|1998-06-16|1-URGENT|Clerk#000001434|0|tegrate across the special pinto beans. furiously express pinto bea| +63535|263647|O|39246.00|1995-07-23|1-URGENT|Clerk#000001010|0|fluffily final ideas. slyly final packages wake outside the theodolites. fl| +63560|93119|F|72887.08|1992-03-23|5-LOW|Clerk#000003535|0|egular accounts doubt blithely quickly ironic reques| +63561|545356|O|235673.70|1996-12-04|3-MEDIUM|Clerk#000002924|0|sly regular accounts. final no| +63562|34256|O|30790.00|1996-11-15|2-HIGH|Clerk#000002791|0| blithe requests affix carefully a| +63563|474922|F|200925.66|1994-01-03|1-URGENT|Clerk#000001886|0| final pinto beans use furiously blithely pending braids. pendi| +63564|500101|O|242830.99|1996-02-03|3-MEDIUM|Clerk#000002167|0|luffily even deposits. carefully bold packages wake. final, | +63565|693364|F|208013.81|1994-04-14|4-NOT SPECIFIED|Clerk#000001832|0|are carefully busy deposit| +63566|587954|O|92622.26|1995-08-13|2-HIGH|Clerk#000000770|0|equests; quickly regular theodolites serve. fi| +63567|490045|O|195907.09|1998-05-03|1-URGENT|Clerk#000004928|0|he pinto beans. dolphins alongside of the carefully furious dinos sleep qui| +63592|409108|O|143365.76|1998-01-04|1-URGENT|Clerk#000000694|0|nts doze fluffily alon| +63593|599282|O|185890.29|1997-08-04|5-LOW|Clerk#000003815|0|ages. final, pending deposits use| +63594|378049|O|293091.75|1997-01-05|4-NOT SPECIFIED|Clerk#000003385|0| theodolites haggle.| +63595|617194|F|95224.87|1995-01-18|5-LOW|Clerk#000003535|0|eas! ironic accounts are slyly carefully eve| +63596|663047|F|97805.05|1992-04-12|5-LOW|Clerk#000002720|0|bold packages. slyly bold asymptotes afte| +63597|315970|O|75696.44|1997-08-21|4-NOT SPECIFIED|Clerk#000000462|0|pending warthogs. blithely ironic pinto beans sleep furiously. carefully re| +63598|496798|O|125428.31|1997-06-28|5-LOW|Clerk#000004383|0|mong the even requests. carefully regular deposits use. unusual p| +63599|656374|O|179460.58|1997-12-15|2-HIGH|Clerk#000002554|0|e blithely. daringly pending foxes haggle about the furi| +63624|672613|O|31504.80|1996-03-19|2-HIGH|Clerk#000001923|0|lithely regular foxes affix. final platelets across the ironic| +63625|605819|F|294039.61|1992-10-19|1-URGENT|Clerk#000001149|0|alongside of the bold, unusual packages nag blithe no| +63626|737911|O|164351.19|1997-02-25|3-MEDIUM|Clerk#000004339|0|e alongside of the permanently special pinto beans. furiously regular accou| +63627|43495|O|175741.91|1995-08-29|2-HIGH|Clerk#000000781|0|inal, regular accounts| +63628|494458|F|223768.51|1993-06-25|4-NOT SPECIFIED|Clerk#000003446|0|odolites against the carefully final asymptotes cajole furiously | +63629|325423|O|208900.42|1996-01-03|4-NOT SPECIFIED|Clerk#000002538|0| regular, special th| +63630|377683|O|25354.34|1996-10-10|5-LOW|Clerk#000002444|0|le above the slyly special pinto beans. furiously final instruction| +63631|456547|F|4718.70|1992-12-02|5-LOW|Clerk#000001267|0|s cajole slyly fluffily even pinto beans. final deposits must | +63656|654274|O|112524.52|1997-03-02|2-HIGH|Clerk#000004336|0|. furiously regular accounts | +63657|624722|O|140431.33|1996-05-08|2-HIGH|Clerk#000000518|0|xes are express, even excuses. spec| +63658|436376|F|2125.56|1994-02-11|5-LOW|Clerk#000004379|0| fluffily express accounts abov| +63659|667553|F|167214.00|1994-03-10|3-MEDIUM|Clerk#000002498|0|fter the express deposits. | +63660|305228|F|86735.82|1993-02-18|1-URGENT|Clerk#000003203|0|press excuses haggle fluffily | +63661|706975|F|155388.91|1993-12-20|5-LOW|Clerk#000001864|0| packages. requests cajole slyly. unusual accounts after the dep| +63662|603625|O|97077.85|1995-10-18|1-URGENT|Clerk#000001726|0|ickly final accounts. dependencies detect quickly. unusual platelets af| +63663|598546|O|82174.74|1998-02-10|3-MEDIUM|Clerk#000000037|0|the slyly regular accounts haggle furiously even pin| +63688|743677|O|77192.08|1996-03-24|1-URGENT|Clerk#000002118|0|the slyly even instructions | +63689|220846|F|218640.28|1993-05-21|5-LOW|Clerk#000003629|0|urts haggle. express requests cajole about th| +63690|729457|F|135161.70|1995-02-04|3-MEDIUM|Clerk#000002043|0|boost closely. regu| +63691|454390|F|23887.00|1994-03-10|5-LOW|Clerk#000000125|0| to the slyly unusual requests. waters mold quickly unusual accounts. furiou| +63692|431605|O|175248.07|1995-12-21|3-MEDIUM|Clerk#000000051|0|. slow pinto beans boost carefully deposits. slyly regular plate| +63693|720041|F|170694.53|1994-11-20|5-LOW|Clerk#000001603|0|efully according to | +63694|468839|O|3069.16|1995-06-04|5-LOW|Clerk#000004503|0| around the regular packages are furiously around the spe| +63695|277061|O|59986.99|1995-05-25|3-MEDIUM|Clerk#000001282|0|even accounts nag slyly. entici| +63720|558631|O|84291.65|1997-02-14|3-MEDIUM|Clerk#000000430|0|le fluffily special, bold deposits. slyly even requests a| +63721|384541|F|31361.79|1994-12-25|3-MEDIUM|Clerk#000003334|0|pths haggle. blithely even excuses use slowly quickly ironic courts? r| +63722|200306|O|151376.97|1997-07-28|5-LOW|Clerk#000003745|0|r requests hinder. care| +63723|542719|F|195816.71|1992-02-13|5-LOW|Clerk#000004699|0|blithely ironic platelets. carefully regula| +63724|708166|F|234264.18|1994-04-13|1-URGENT|Clerk#000002449|0|ts haggle. packages integrate blithely si| +63725|377282|O|43192.74|1997-02-06|5-LOW|Clerk#000003772|0|, daring ideas haggl| +63726|470866|F|39846.43|1994-09-02|1-URGENT|Clerk#000003464|0|. ideas around the boldly even realms haggle furiously| +63727|570940|O|26987.83|1996-03-05|3-MEDIUM|Clerk#000000267|0|e final platelets detect along the | +63752|276932|F|298278.28|1993-08-23|5-LOW|Clerk#000003844|0|ages wake carefully idly sp| +63753|630826|O|172844.32|1995-10-27|1-URGENT|Clerk#000000413|0|ly among the bold accounts. carefully iron| +63754|271922|O|333531.28|1998-06-22|4-NOT SPECIFIED|Clerk#000003903|0|the quickly ironic foxes wake expr| +63755|435326|O|203198.48|1996-08-23|5-LOW|Clerk#000003621|0|l instructions. carefu| +63756|263759|F|188757.91|1992-08-03|2-HIGH|Clerk#000001234|0|al instructions impress regular instructions. pinto b| +63757|482848|F|92575.69|1994-08-01|1-URGENT|Clerk#000000386|0|ntly regular accounts. furiously careful i| +63758|199298|F|10901.14|1994-12-23|1-URGENT|Clerk#000003219|0|o beans use idly bold accounts. furi| +63759|100735|F|36109.84|1992-02-25|3-MEDIUM|Clerk#000001438|0| theodolites alongside of th| +63784|280501|O|133341.52|1995-12-05|3-MEDIUM|Clerk#000000870|0|lar deposits. slyly even gifts across the carefully final packages nag furi| +63785|612562|F|14196.53|1992-04-02|1-URGENT|Clerk#000001100|0| pinto beans boost slyly final, final instructions. regular packages cajol| +63786|62137|O|122807.63|1995-08-31|4-NOT SPECIFIED|Clerk#000002338|0|nal ideas thrash carefully final deposits. slyly blithe d| +63787|316330|F|109625.94|1993-08-14|2-HIGH|Clerk#000001219|0| to the pending asymptotes nag special accou| +63788|538552|F|125101.72|1993-12-09|2-HIGH|Clerk#000004807|0|inal requests through the always regular patterns sle| +63789|441724|F|110682.48|1994-11-13|5-LOW|Clerk#000001176|0|uts. doggedly silent instructions sleep regularly. carefully dogged reques| +63790|524512|P|169345.61|1995-04-30|1-URGENT|Clerk#000004286|0|eep carefully slyly bold platelets. fluffily silent deposit| +63791|697423|O|215220.07|1998-06-14|5-LOW|Clerk#000000037|0|, regular dependencies haggle. requests sleep fluffily along the ironic | +63816|576436|F|166313.01|1993-11-15|5-LOW|Clerk#000000937|0|ets. slyly express ideas wake | +63817|397141|O|123077.56|1997-09-21|1-URGENT|Clerk#000003880|0|ess accounts should have to| +63818|476776|F|223389.03|1994-02-03|5-LOW|Clerk#000002610|0|e furiously above the blithely bold theodolit| +63819|156079|F|11061.34|1995-05-15|4-NOT SPECIFIED|Clerk#000003147|0| slyly. blithely ironic accounts | +63820|461107|F|75487.73|1993-07-17|1-URGENT|Clerk#000003818|0|slyly special pinto beans. carefully ironic accounts wake across | +63821|53870|F|96080.91|1993-05-15|2-HIGH|Clerk#000000087|0|, regular asymptotes affix slyly carefully regular depos| +63822|132919|O|176360.23|1995-10-31|5-LOW|Clerk#000003036|0| snooze furiously blithely final pinto beans. slyly ironi| +63823|438986|O|262479.72|1997-05-28|3-MEDIUM|Clerk#000004233|0|und the pending platelets wake carefully furiously unusu| +63848|286217|O|60075.96|1997-01-10|2-HIGH|Clerk#000001638|0|e accounts are after the even| +63849|696649|O|115641.02|1997-08-08|3-MEDIUM|Clerk#000000961|0|st the bold theodolites. ironic grouches haggle blithely carefully quick depen| +63850|310846|F|151703.13|1992-04-08|5-LOW|Clerk#000003915|0|es unwind. carefully unusual packages use sly| +63851|616450|O|115303.91|1997-10-14|5-LOW|Clerk#000002514|0|ly quick requests. slyly | +63852|146035|F|102190.99|1994-11-03|4-NOT SPECIFIED|Clerk#000003033|0|ges wake. quickly final| +63853|400072|F|115457.96|1994-02-12|2-HIGH|Clerk#000001462|0|ide of the permanent p| +63854|253108|O|40041.86|1996-09-05|2-HIGH|Clerk#000004163|0|. slyly regular req| +63855|707021|F|210134.99|1993-04-30|5-LOW|Clerk#000000843|0|quickly silent Tiresias beneath | +63880|651473|F|170512.73|1993-12-13|4-NOT SPECIFIED|Clerk#000004497|0|riously pending excuses sleep quickly regular asymptotes. c| +63881|53935|O|81836.75|1998-03-18|3-MEDIUM|Clerk#000002207|0|g the regular gifts sleep slyly ironic packages. furiously ironic dinos mold| +63882|483742|O|187350.20|1997-02-22|4-NOT SPECIFIED|Clerk#000002548|0|he slyly regular asympto| +63883|235231|P|190522.25|1995-03-10|4-NOT SPECIFIED|Clerk#000002787|0|instructions. quickly ironic asymptote| +63884|269515|O|172857.79|1995-12-19|2-HIGH|Clerk#000004459|0|sublate against the fluf| +63885|474943|O|180840.78|1997-06-16|2-HIGH|Clerk#000000381|0|are daringly along the final, regular deposit| +63886|86200|F|171969.57|1993-12-18|5-LOW|Clerk#000002014|0|fily pending dependencies. furiously| +63887|485021|F|181508.82|1995-01-05|4-NOT SPECIFIED|Clerk#000000079|0|ng, express platelets. deposits could wake. bold packages across the blith| +63912|741812|P|88134.01|1995-03-06|3-MEDIUM|Clerk#000003388|0|the slyly ironic accounts. car| +63913|375973|F|29204.79|1994-03-23|4-NOT SPECIFIED|Clerk#000001129|0|are among the furiously unusual ac| +63914|198542|F|126472.49|1992-01-14|5-LOW|Clerk#000004398|0|accounts against the blithely regular dep| +63915|137320|F|50862.92|1992-11-08|4-NOT SPECIFIED|Clerk#000003546|0|xpress pinto beans aft| +63916|173809|F|195841.52|1993-02-12|4-NOT SPECIFIED|Clerk#000001926|0|usly regular deposits sleep against | +63917|703312|O|43926.87|1996-08-23|5-LOW|Clerk#000002704|0|ven asymptotes. express excuses believe ab| +63918|537724|O|96908.80|1995-05-11|3-MEDIUM|Clerk#000001673|0| quickly even instructions. blithely bold packages| +63919|1366|F|289260.87|1993-11-17|1-URGENT|Clerk#000001752|0|eas. final excuses according| +63944|455888|F|79297.92|1993-02-06|4-NOT SPECIFIED|Clerk#000000906|0|l packages are fluffily fluffily ironic packages. quickly | +63945|102910|F|155021.47|1994-07-29|3-MEDIUM|Clerk#000002516|0| warthogs wake. quick| +63946|106178|O|211705.47|1997-09-01|4-NOT SPECIFIED|Clerk#000000823|0|pecial deposits are carefully unusual foxes. blithely special| +63947|279176|O|216235.83|1995-10-18|3-MEDIUM|Clerk#000003114|0|e. blithely bold packages kindle slyly final packages. furiously express theod| +63948|107731|O|241497.03|1998-05-25|4-NOT SPECIFIED|Clerk#000003912|0|fluffily. quickly even deposits nag behind the slyly ironic ideas. blit| +63949|121022|O|165303.31|1996-08-27|2-HIGH|Clerk#000000336|0|zzle carefully. carefully pending packages alongside of the careful| +63950|1394|O|236129.07|1997-06-04|4-NOT SPECIFIED|Clerk#000002699|0| the excuses. packages cajole blithely. final dependenc| +63951|168256|O|145589.12|1996-12-10|5-LOW|Clerk#000004008|0|ns alongside of the even excuses w| +63976|375244|O|199038.38|1996-09-30|5-LOW|Clerk#000003358|0|uffily alongside of the always express accounts. furiously pe| +63977|696304|O|113713.84|1996-04-12|1-URGENT|Clerk#000000931|0|beans haggle furiously. furiously regular ideas haggle| +63978|526333|O|154264.10|1998-03-21|1-URGENT|Clerk#000002067|0|totes behind the regular pinto beans cajole | +63979|563774|F|31054.22|1993-07-10|2-HIGH|Clerk#000001866|0|osits doubt. blithely regular deposits was behind the slowly silent| +63980|596572|O|173816.64|1997-03-03|4-NOT SPECIFIED|Clerk#000004733|0| grouches. courts sleep carefully unusual accounts. slyly r| +63981|564992|F|84113.56|1994-01-31|5-LOW|Clerk#000001958|0|across the permanent| +63982|57716|F|17567.63|1993-02-09|5-LOW|Clerk#000003432|0| furiously regular deposits impress blithely b| +63983|268132|F|217994.35|1992-12-27|2-HIGH|Clerk#000001886|0|ans wake slyly regular platelets. pending excuses engag| +64008|466885|F|207053.67|1995-01-08|2-HIGH|Clerk#000000586|0|regular dependencies!| +64009|407942|O|257930.86|1997-10-19|5-LOW|Clerk#000002142|0| blithely! final, thin dependencies sleep carefully. regular deposi| +64010|524057|O|43189.74|1997-09-18|5-LOW|Clerk#000000621|0|busy accounts. slyly special | +64011|575030|O|10526.86|1997-09-04|3-MEDIUM|Clerk#000004358|0|eans wake slyly. regular| +64012|24781|O|218079.91|1996-04-19|2-HIGH|Clerk#000002070|0|ful packages nag express deposit| +64013|227557|O|130208.79|1996-04-28|3-MEDIUM|Clerk#000002851|0|ely pending requests. blithely expr| +64014|278578|O|242242.09|1997-01-31|1-URGENT|Clerk#000004120|0| blithely pending, reg| +64015|547984|F|11345.35|1992-10-27|2-HIGH|Clerk#000000404|0|ly final requests haggle according to the final p| +64040|703312|O|139300.62|1995-06-23|4-NOT SPECIFIED|Clerk#000003165|0|posits. instructions boost| +64041|549727|F|126731.29|1993-03-14|4-NOT SPECIFIED|Clerk#000002034|0|iously furiously regular platelets. regular packages are. slyly | +64042|747449|F|59440.77|1993-07-24|5-LOW|Clerk#000001513|0|beans around the furio| +64043|615551|P|281561.76|1995-03-01|4-NOT SPECIFIED|Clerk#000001805|0|urts according to the dogg| +64044|57550|F|54896.82|1993-12-24|4-NOT SPECIFIED|Clerk#000001670|0|quests are fluffily | +64045|487930|O|184404.92|1995-07-16|3-MEDIUM|Clerk#000003457|0|olites. dinos boost unusual theodolites. furiously blithe re| +64046|107828|O|58726.79|1997-04-30|1-URGENT|Clerk#000003252|0|ix quickly about th| +64047|262411|F|241964.90|1993-06-26|4-NOT SPECIFIED|Clerk#000002365|0|along the furiously ironic asymptotes. blithely regular foxes among the evenly| +64072|329782|O|13382.68|1997-08-21|1-URGENT|Clerk#000004987|0|es cajole. slyly final | +64073|122257|O|259962.58|1996-11-09|3-MEDIUM|Clerk#000000375|0|y ironic dinos nag alongside of the express pinto beans. slyly pending| +64074|503485|F|213605.87|1994-10-12|2-HIGH|Clerk#000001819|0|express deposits cajole furiously above the furiously ironic ideas. furiou| +64075|571555|F|79857.66|1992-11-13|1-URGENT|Clerk#000000296|0|ly. carefully expres| +64076|101165|F|202283.85|1992-08-27|1-URGENT|Clerk#000001822|0|nic accounts haggle across the slyly final deposits! pin| +64077|19432|O|234185.22|1997-02-09|4-NOT SPECIFIED|Clerk#000001876|0|the pending, regular dependencies cajole slyly regular deposits! bold, unus| +64078|338749|F|282550.02|1994-08-27|4-NOT SPECIFIED|Clerk#000004990|0|t the furiously even deposits. final instructions against the slyly unusual | +64079|93355|F|90486.64|1992-10-04|4-NOT SPECIFIED|Clerk#000004724|0|ackages boost blithely final ideas. requests sleep fluff| +64104|742663|O|26120.17|1997-07-24|5-LOW|Clerk#000003517|0|. blithely bold ideas haggle. sentiments | +64105|433084|F|220172.79|1993-04-28|4-NOT SPECIFIED|Clerk#000002797|0|final packages. bold, bold instructions wake aga| +64106|75224|F|63257.92|1993-05-29|5-LOW|Clerk#000000209|0| accounts are blithely after the even sheave| +64107|530638|O|149463.64|1995-08-21|1-URGENT|Clerk#000004727|0|final packages. slyly regular request| +64108|177224|O|149086.65|1997-01-08|4-NOT SPECIFIED|Clerk#000000197|0|eposits haggle furiously slyly pend| +64109|343171|F|287252.60|1993-02-26|5-LOW|Clerk#000003223|0|fluffily express dependencies wake al| +64110|162679|O|149869.95|1997-10-29|5-LOW|Clerk#000002043|0|oxes use slyly even dolphins.| +64111|367706|O|265021.19|1996-10-16|5-LOW|Clerk#000004905|0|ts use! carefully regular reque| +64136|34531|O|226910.11|1995-04-21|2-HIGH|Clerk#000003704|0|: fluffily pending packages integrate fluffil| +64137|587047|O|55663.02|1996-09-10|4-NOT SPECIFIED|Clerk#000000764|0|packages. packages detect furiously. slyly regular theodolites engage furiou| +64138|224996|O|60941.22|1997-05-03|3-MEDIUM|Clerk#000000833|0| slow instructions are never silently unusual waters. specia| +64139|4463|O|215519.54|1995-12-06|3-MEDIUM|Clerk#000000481|0|xes. slyly regular | +64140|747935|O|80138.63|1997-11-21|5-LOW|Clerk#000004099|0|ake. stealthily ironic packages cajole furiously sl| +64141|536462|F|52630.82|1995-01-24|3-MEDIUM|Clerk#000004909|0|ccounts. regular instructions among th| +64142|566626|F|171959.73|1995-01-06|5-LOW|Clerk#000003562|0|ackages boost boldly regular ideas. furiously fina| +64143|512125|F|44056.49|1993-07-19|5-LOW|Clerk#000002417|0|aggle blithely special ideas. regular foxes cajole f| +64168|259172|F|45004.74|1993-03-26|1-URGENT|Clerk#000002680|0|odolites haggle thinly among the slyly final dependencies. furiously regu| +64169|645107|F|69158.91|1993-05-11|3-MEDIUM|Clerk#000001126|0| quickly final excuses. even foxes are furiously quickly even pinto | +64170|311110|O|40376.88|1998-07-04|5-LOW|Clerk#000001820|0| accounts engage special dependencies. ca| +64171|545372|O|146131.52|1997-09-23|4-NOT SPECIFIED|Clerk#000002463|0|counts use according to the bold dependencies. carefully silent pack| +64172|301501|F|123890.38|1994-01-07|1-URGENT|Clerk#000004960|0|e carefully ironic requests. a| +64173|312889|O|99075.04|1997-11-17|1-URGENT|Clerk#000002150|0|lithely regular instructions above the unusual, silent asymptotes nag around | +64174|466138|O|232906.41|1998-05-06|5-LOW|Clerk#000004055|0|, regular requests are special, final pinto beans. even depo| +64175|604756|F|44516.93|1992-09-16|3-MEDIUM|Clerk#000004660|0|carefully final accounts are blithely slyly sil| +64200|107618|F|229189.04|1994-11-03|3-MEDIUM|Clerk#000000492|0|he idly final instructions wake ruthlessly| +64201|484640|O|46315.09|1996-09-09|5-LOW|Clerk#000000163|0|ly ironic requests haggle regularly special pinto beans.| +64202|329857|F|31878.60|1994-10-28|2-HIGH|Clerk#000004965|0|g excuses. carefully ironic accounts wake carefully. fur| +64203|623053|P|339667.72|1995-03-27|5-LOW|Clerk#000001393|0|uses nag slyly silent a| +64204|142595|F|64836.15|1993-09-28|4-NOT SPECIFIED|Clerk#000004065|0|ietly special packages kindle above the regular, unusual| +64205|341839|O|311558.98|1995-10-10|5-LOW|Clerk#000000030|0|en theodolites doze among th| +64206|262612|O|230451.18|1996-08-21|1-URGENT|Clerk#000001856|0|as boost ironic requests. blithely regular realms use furiously special reque| +64207|696973|F|69379.89|1994-06-05|2-HIGH|Clerk#000002392|0| accounts wake fluffily regular hockey players.| +64232|512729|O|19494.30|1998-02-19|2-HIGH|Clerk#000002629|0|inally silent pinto beans integrate quickly. boldly bold requests haggle.| +64233|681589|F|25619.56|1992-01-23|1-URGENT|Clerk#000003860|0|ly regular packages dazzle fur| +64234|713701|F|269890.33|1995-03-11|1-URGENT|Clerk#000003207|0| impress fluffily. quickly final ideas need to nag fluff| +64235|395896|O|242624.23|1997-10-19|2-HIGH|Clerk#000001655|0|ar packages cajole quickly regular ideas. carefully ev| +64236|558142|F|30210.23|1994-04-07|4-NOT SPECIFIED|Clerk#000000071|0|ke furiously carefully silent deposits. even requests affix.| +64237|411535|O|132586.16|1998-01-08|4-NOT SPECIFIED|Clerk#000002139|0|cross the regular, bold sentiments. carefully pending deposits acco| +64238|142829|F|227350.48|1994-08-19|5-LOW|Clerk#000002010|0|oxes thrash careful| +64239|520597|O|37260.82|1998-05-23|4-NOT SPECIFIED|Clerk#000002902|0|s. sentiments are with the furiously si| +64264|166882|F|147901.70|1992-03-12|2-HIGH|Clerk#000003625|0|o beans cajole after the carefully ironic excuses. bol| +64265|512662|O|262359.74|1995-07-05|4-NOT SPECIFIED|Clerk#000001392|0|st. slyly even excuses integrate quickly. final deposit| +64266|292453|O|81462.21|1997-02-06|4-NOT SPECIFIED|Clerk#000004272|0|es use against the enticingly | +64267|507098|F|66736.98|1994-01-17|1-URGENT|Clerk#000004537|0|y quickly final deposits. q| +64268|535645|O|285690.55|1997-08-28|2-HIGH|Clerk#000003234|0|uests. ideas sleep against the fluffily pending somas. furiously final excus| +64269|322789|O|62744.21|1995-08-15|3-MEDIUM|Clerk#000002138|0|es. never regular platelets haggle carefully across the carefully expr| +64270|357361|O|109709.78|1995-07-16|4-NOT SPECIFIED|Clerk#000000299|0|e. quickly final orbits boost quickly across the final, bold packages. carefu| +64271|164300|F|276912.94|1993-12-26|1-URGENT|Clerk#000004249|0|unusual foxes alongside of the doggedly special platelets cajole a| +64296|629662|F|127800.71|1992-10-16|5-LOW|Clerk#000002061|0|sleep against the special, express packages. fluffily even reques| +64297|228476|F|20619.48|1994-01-06|1-URGENT|Clerk#000003904|0|slyly ruthless inst| +64298|741496|F|102265.15|1993-05-13|2-HIGH|Clerk#000001366|0| according to the special deposits boost furiously pending deposits. quic| +64299|306757|O|239824.78|1996-06-22|1-URGENT|Clerk#000002035|0|l packages haggle slyly. accounts cajole from the furious| +64300|146218|O|40370.26|1997-07-22|2-HIGH|Clerk#000002475|0|packages solve according to the blithely special packages. slyly final id| +64301|463274|O|209853.40|1996-12-08|5-LOW|Clerk#000000644|0|the carefully regular pinto beans c| +64302|485698|F|422500.68|1993-11-25|1-URGENT|Clerk#000003631|0|old packages cajole carefull| +64303|102103|F|218861.68|1994-11-07|5-LOW|Clerk#000000091|0| regular ideas cajole| +64328|19858|O|70295.44|1996-07-28|4-NOT SPECIFIED|Clerk#000004029|0|lets use carefully carefully unusual dolphins. caref| +64329|736822|O|121144.34|1995-12-06|1-URGENT|Clerk#000004365|0|furiously ruthless, st| +64330|514474|F|110701.56|1993-12-28|4-NOT SPECIFIED|Clerk#000003581|0|ffily. blithely special asymptotes cajole. unusual excuses use| +64331|12794|F|159409.80|1994-06-24|2-HIGH|Clerk#000001450|0|instructions. furiously thin asympto| +64332|525373|F|57533.31|1994-06-01|2-HIGH|Clerk#000004123|0|ial theodolites poach c| +64333|191704|F|133517.37|1994-01-18|4-NOT SPECIFIED|Clerk#000002728|0|ccounts affix about the slyly silent deposits. carefully u| +64334|712207|F|362888.10|1992-07-08|5-LOW|Clerk#000003034|0|s across the furiously ironic excuses are b| +64335|30640|F|88821.57|1994-08-24|3-MEDIUM|Clerk#000003896|0|ully around the blith| +64360|462758|F|104726.85|1994-09-09|1-URGENT|Clerk#000000109|0|ly special requests wake across the caref| +64361|57613|O|18382.22|1998-07-10|3-MEDIUM|Clerk#000002147|0|. carefully regular courts doubt furiously according to the dependenc| +64362|49742|F|243742.83|1992-07-31|5-LOW|Clerk#000004358|0|thely unusual pinto beans. fluffily | +64363|503968|F|58611.92|1992-02-03|1-URGENT|Clerk#000003849|0|ests. quickly regular packages wake; furiously special realms | +64364|430981|O|239757.39|1996-12-18|3-MEDIUM|Clerk#000001652|0| regular, final ideas boost quickly alongside of the slyly unu| +64365|716492|F|221398.52|1992-12-31|5-LOW|Clerk#000003434|0|ly express packages upon t| +64366|69316|O|137074.83|1996-12-30|2-HIGH|Clerk#000004925|0|grouches. blithely special asymptotes abou| +64367|219994|F|138532.10|1993-12-31|1-URGENT|Clerk#000002469|0|ke slyly along the slyly fin| +64392|673442|F|129406.93|1993-11-13|5-LOW|Clerk#000000215|0|sleep blithely. blithely unusual accounts are blithely after the fluffi| +64393|275884|O|192604.90|1996-01-19|5-LOW|Clerk#000001636|0|coys. regular packages wake alongside of th| +64394|261934|F|48593.81|1994-07-06|2-HIGH|Clerk#000004910|0|ajole quickly. slyly | +64395|542308|P|169308.23|1995-03-29|3-MEDIUM|Clerk#000002915|0|fully. carefully bold packages nag above the s| +64396|549586|O|132674.86|1998-03-27|3-MEDIUM|Clerk#000001540|0|luffily regular multipliers: slyly regular dependencies wake acc| +64397|611132|F|180773.20|1994-10-08|4-NOT SPECIFIED|Clerk#000003615|0|t ideas. silent, final asymptotes wake carefully pending instr| +64398|40297|P|268576.35|1995-04-02|1-URGENT|Clerk#000001483|0| pending grouches use across the | +64399|16675|O|200542.54|1997-03-24|5-LOW|Clerk#000001649|0|unusual platelets promise alongside of the silent requests. regular the| +64424|487492|O|396765.96|1995-09-09|1-URGENT|Clerk#000004999|0|usly final platelets boost fluffily. final accounts lose carefully ruth| +64425|264580|F|194277.58|1993-10-03|5-LOW|Clerk#000000788|0|nto beans. bold pinto beans wake blithely| +64426|19045|F|187274.20|1995-01-11|4-NOT SPECIFIED|Clerk#000002338|0|thely quickly special packages. carefully bold attainments grow about t| +64427|585224|F|75080.66|1994-12-31|5-LOW|Clerk#000000923|0|. pending, silent packages are quickly among the bold packages. re| +64428|348314|F|83425.79|1992-06-11|4-NOT SPECIFIED|Clerk#000001982|0|ffily silent pinto beans: regular, regular accounts unwin| +64429|354448|F|2856.38|1993-12-21|2-HIGH|Clerk#000000704|0| to haggle fluffily blithely slow requests. ironic platelet| +64430|681058|F|271648.05|1992-12-17|3-MEDIUM|Clerk#000000639|0|ole fluffily. slyly express requests are never. furiousl| +64431|37348|F|78571.22|1992-10-22|3-MEDIUM|Clerk#000004778|0|lyly carefully even accounts. sl| +64456|701821|F|187931.70|1994-01-22|1-URGENT|Clerk#000003705|0| around the furiously unusu| +64457|230221|F|31392.87|1993-09-23|4-NOT SPECIFIED|Clerk#000003159|0| idle requests. blithely bold packages are ironically amon| +64458|56206|O|139634.01|1996-06-17|3-MEDIUM|Clerk#000000160|0|sly. express, bold theodolites sleep sly| +64459|402541|O|86991.88|1995-05-13|4-NOT SPECIFIED|Clerk#000002778|0| regular pinto beans. ironic accounts wake slyly. furiously even frays | +64460|503809|F|198732.03|1992-12-03|4-NOT SPECIFIED|Clerk#000000211|0|y express packages sleep slyly. requests was fluffily ab| +64461|12187|F|184249.79|1993-12-11|2-HIGH|Clerk#000004342|0|ss the slyly regular deposits wake after t| +64462|47851|F|128197.92|1992-06-02|4-NOT SPECIFIED|Clerk#000001842|0|lithely final ideas. slyly unusual pinto beans against the slyly even | +64463|215545|F|125357.46|1992-06-06|4-NOT SPECIFIED|Clerk#000001998|0| final hockey players haggle finally bold dolphins. blith| +64488|160345|O|185357.37|1997-05-14|3-MEDIUM|Clerk#000004433|0|usual dependencies haggle carefully: carefully pendin| +64489|162292|O|62658.18|1997-07-06|2-HIGH|Clerk#000003171|0|o the final theodolites. silently ironic theodolites integrate requests. f| +64490|638606|O|112154.48|1996-03-03|3-MEDIUM|Clerk#000003583|0|r deposits use blithely ironic, regular accounts. furiously qu| +64491|536042|O|50525.18|1995-05-14|4-NOT SPECIFIED|Clerk#000000163|0|s lose slyly slyly express accounts. regular requests use fluff| +64492|254140|F|82509.81|1994-03-28|2-HIGH|Clerk#000000491|0|aring ideas. quickly | +64493|55370|O|229938.93|1996-04-23|3-MEDIUM|Clerk#000004417|0|ly final foxes serve furiously against the fluffily silent de| +64494|599944|F|238165.51|1993-03-30|2-HIGH|Clerk#000003186|0| beans haggle quickly about the e| +64495|235999|O|37118.72|1998-02-21|1-URGENT|Clerk#000001732|0|ructions. foxes are carefully accordi| +64520|403945|O|188515.69|1996-04-16|5-LOW|Clerk#000003486|0| packages alongside of the slyly final requests da| +64521|96727|O|73663.69|1998-04-24|1-URGENT|Clerk#000004260|0|s. slyly even deposits dazzle slyly across the ironic requests. regula| +64522|416246|F|184696.83|1994-11-12|3-MEDIUM|Clerk#000003556|0|integrate carefully. slyly special deposits detect. a| +64523|588130|O|91273.12|1995-12-04|3-MEDIUM|Clerk#000001780|0|cial deposits. slyly express deposits haggle furiou| +64524|436871|F|181202.44|1992-02-23|5-LOW|Clerk#000000133|0|ce of the regular deposits wake furiously| +64525|740557|F|152843.19|1993-12-26|5-LOW|Clerk#000003670|0|after the final, pending theodolites.| +64526|271024|P|76874.74|1995-04-28|1-URGENT|Clerk#000002575|0|symptotes around the blithely final accou| +64527|348298|F|246868.61|1993-11-06|4-NOT SPECIFIED|Clerk#000001725|0|ular, unusual dugouts sleep furiously reg| +64552|67645|O|89729.52|1995-10-19|2-HIGH|Clerk#000004571|0|y even accounts. pending instr| +64553|630158|O|30214.11|1998-07-15|3-MEDIUM|Clerk#000000802|0| nag blithely blithely special foxes. carefully final | +64554|313612|F|106987.62|1993-05-05|5-LOW|Clerk#000000712|0|lly bold, ironic packages. accounts boost about the packages? unusual, iron| +64555|623749|F|2238.60|1994-01-23|5-LOW|Clerk#000001948|0|, bold packages. furiously ironic deposits solve carefully. asymptot| +64556|575230|F|298355.01|1992-10-03|3-MEDIUM|Clerk#000003799|0| unusual, ironic dep| +64557|382604|O|116340.09|1998-03-29|3-MEDIUM|Clerk#000001778|0|hely unusual dependencies thrash carefully alongside of the permanently | +64558|667297|F|130864.15|1993-03-19|5-LOW|Clerk#000004931|0|uests wake always: f| +64559|497111|F|213636.41|1993-12-05|2-HIGH|Clerk#000003268|0|dolites. ideas wake quickly. e| +64584|685922|F|387234.46|1994-03-24|1-URGENT|Clerk#000001181|0|t excuses. final instructions are furiously ironic courts. sl| +64585|25660|F|59746.90|1993-01-10|4-NOT SPECIFIED|Clerk#000003507|0|ep carefully ironic, regular multipliers. ironic patterns use ca| +64586|744289|O|95015.05|1997-07-04|4-NOT SPECIFIED|Clerk#000000402|0|efully ironic pinto beans cajole according to| +64587|7828|O|146824.30|1997-05-12|3-MEDIUM|Clerk#000004932|0|deposits haggle blithely along the pint| +64588|313960|F|64363.86|1994-10-13|4-NOT SPECIFIED|Clerk#000000319|0|requests wake slyly escapades. carefully unusual| +64589|467686|O|49964.20|1997-06-03|2-HIGH|Clerk#000001379|0| the furiously special requests. furiously ironic accounts sleep eve| +64590|394330|F|173499.92|1993-08-10|4-NOT SPECIFIED|Clerk#000001596|0|onic epitaphs. ironic, bold deposits about the blithely iron| +64591|493279|O|238404.33|1997-09-30|1-URGENT|Clerk#000002459|0|ts about the even, final foxes cajole care| +64616|32830|O|141902.96|1996-05-25|3-MEDIUM|Clerk#000004627|0|ly. furiously regul| +64617|494137|F|73723.34|1994-08-10|3-MEDIUM|Clerk#000003087|0|ly unusual ideas. bold pa| +64618|181915|O|64687.02|1996-03-14|1-URGENT|Clerk#000003486|0| cajole slyly. regular instructions| +64619|420020|O|294074.33|1997-10-30|1-URGENT|Clerk#000001452|0|ully even requests wake furiously above the carefully bold pint| +64620|260078|O|131979.32|1997-01-06|4-NOT SPECIFIED|Clerk#000002798|0|eas. blithely regular requests breach careful| +64621|115123|O|208518.56|1997-08-20|3-MEDIUM|Clerk#000000591|0|ld slyly deposits-- fluffily regu| +64622|597320|F|18341.85|1995-03-20|5-LOW|Clerk#000001465|0|ly special sentiments. blithely furious deposi| +64623|393695|F|282032.79|1995-02-08|2-HIGH|Clerk#000001785|0|s haggle carefully packages. slyly final theodolites haggle | +64648|320228|O|280054.98|1996-01-22|3-MEDIUM|Clerk#000000019|0|t packages boost blithely. e| +64649|70774|O|283658.87|1997-08-04|1-URGENT|Clerk#000002116|0|r packages sleep carefully according to the regular requests. regu| +64650|725902|F|214210.69|1992-11-04|2-HIGH|Clerk#000002911|0|final pinto beans sleep furiously among the regu| +64651|716831|O|244244.49|1997-02-12|2-HIGH|Clerk#000004252|0|ess, even accounts serve. requests alo| +64652|521728|O|51803.79|1996-07-30|3-MEDIUM|Clerk#000002901|0|above the theodolites shall h| +64653|408386|O|10169.23|1995-08-18|1-URGENT|Clerk#000001403|0|y regular deposits are ironic pinto beans. fluffily ironic patterns| +64654|484174|F|38437.50|1993-05-20|3-MEDIUM|Clerk#000002204|0|ate gifts! slyly final requests integrate doggedl| +64655|6418|O|7314.86|1998-04-20|1-URGENT|Clerk#000001412|0| fluffily ironic, even accounts. final, unusual instruct| +64680|595811|O|12760.48|1997-11-24|1-URGENT|Clerk#000000458|0|y silent theodolites. regular pinto | +64681|544594|O|193938.87|1995-10-28|4-NOT SPECIFIED|Clerk#000001234|0|nag since the carefully regular deposits. regular | +64682|724390|O|119476.01|1997-05-05|3-MEDIUM|Clerk#000004752|0|riously regular platelets after t| +64683|46529|O|114739.63|1995-10-10|1-URGENT|Clerk#000000108|0|packages of the deposits | +64684|510860|F|160180.64|1994-09-22|4-NOT SPECIFIED|Clerk#000003292|0|ts according to the special attainments wake blithely about the regular packag| +64685|14725|O|48127.77|1997-07-20|4-NOT SPECIFIED|Clerk#000000397|0|blithely even platelets? carefully final excuses was after the | +64686|699557|O|165633.27|1998-07-25|2-HIGH|Clerk#000002324|0|y special dependencies cajole blithely above the carefully r| +64687|454367|O|229088.77|1998-02-01|2-HIGH|Clerk#000002412|0|deposits. ironic, express pint| +64712|42445|O|127745.46|1998-04-06|1-URGENT|Clerk#000002547|0|. slyly final foxes sleep agai| +64713|102179|F|232034.34|1994-06-10|1-URGENT|Clerk#000002639|0|odolites sleep blithely blithely| +64714|560897|F|112021.96|1993-03-01|1-URGENT|Clerk#000004013|0|e slyly blithely thin pinto beans. unusual| +64715|243239|O|411868.34|1996-12-06|2-HIGH|Clerk#000003406|0|mptotes. even packages use idly according to the slyly ev| +64716|607325|F|109435.69|1993-06-14|5-LOW|Clerk#000001441|0|ss deposits. silent waters nag furiously against the express| +64717|553219|O|262586.83|1995-12-21|3-MEDIUM|Clerk#000004449|0| bold requests. unusual, unusual ideas haggle never atop the final dependenci| +64718|192049|O|249079.68|1996-03-11|4-NOT SPECIFIED|Clerk#000001674|0|osits detect quickly. carefully special | +64719|503821|F|169651.68|1993-09-24|1-URGENT|Clerk#000000022|0|press pinto beans sleep | +64744|203857|F|214634.70|1993-11-14|5-LOW|Clerk#000004280|0|arefully unusual deposits. car| +64745|224051|O|183753.95|1997-06-05|2-HIGH|Clerk#000003671|0|ously even courts haggle fluffily against the carefully special| +64746|617689|O|268190.32|1996-04-03|3-MEDIUM|Clerk#000003362|0| regular excuses sleep quickly pearls. requests about the bold depths nag| +64747|731401|O|305256.06|1997-03-18|1-URGENT|Clerk#000003982|0|ular theodolites are furiously at the regularly ironic epitaphs. f| +64748|148321|O|159205.06|1995-10-26|5-LOW|Clerk#000002643|0|es. quickly final requests cajol| +64749|558559|O|38523.99|1996-10-21|5-LOW|Clerk#000003072|0|al packages. pending, final accounts det| +64750|682216|O|48300.83|1998-02-23|3-MEDIUM|Clerk#000002461|0|. requests are blithely. furio| +64751|740488|O|171227.93|1996-10-13|3-MEDIUM|Clerk#000000685|0|even accounts. slyly final accounts mold quickly| +64776|613997|F|5417.69|1992-12-20|2-HIGH|Clerk#000002122|0| furiously even pinto beans are slyly final foxes. furiously pending| +64777|196312|F|106877.38|1993-01-16|2-HIGH|Clerk#000002198|0|blithely. packages affix furiously. even deposits wake carefully even dolphi| +64778|143626|F|299949.09|1993-02-03|1-URGENT|Clerk#000001943|0| the regular, ironic accounts. ironic accounts sleep f| +64779|420605|F|214092.68|1993-10-29|1-URGENT|Clerk#000003681|0|thely. slyly quiet theodolites cajole slyly. ironic warhorses sleep slyl| +64780|353536|O|62662.48|1997-10-22|2-HIGH|Clerk#000000709|0| regular deposits will have to are. even packages against| +64781|354520|F|138960.68|1995-03-08|3-MEDIUM|Clerk#000004557|0|ns nod furiously blithely pending requests. car| +64782|390304|F|56649.81|1993-01-31|2-HIGH|Clerk#000004219|0|y about the final d| +64783|309457|O|57998.17|1997-05-24|1-URGENT|Clerk#000000532|0|y unusual escapades cajole. sl| +64808|524548|F|133328.70|1994-07-27|4-NOT SPECIFIED|Clerk#000002629|0|the carefully final packa| +64809|553454|F|70451.90|1992-01-25|4-NOT SPECIFIED|Clerk#000001875|0|nic requests. ironic ideas cajole carefully along the quickly final platelets.| +64810|389293|F|280927.88|1992-09-09|2-HIGH|Clerk#000004629|0|al accounts are above the quickly final deposits. express deposits | +64811|567463|O|319208.24|1997-05-08|4-NOT SPECIFIED|Clerk#000004303|0| slyly final notornis| +64812|320416|F|243123.37|1992-10-21|3-MEDIUM|Clerk#000004601|0|rnis. silent requests wake| +64813|220724|O|166296.84|1996-05-02|3-MEDIUM|Clerk#000000080|0|e slyly carefully bold theodolites.| +64814|206221|O|210263.74|1996-09-15|3-MEDIUM|Clerk#000001283|0|its are blithely. fluffily daring excuses use aft| +64815|180205|O|237798.04|1997-05-10|2-HIGH|Clerk#000000982|0|ar instructions after the e| +64840|182836|O|33479.11|1996-10-17|3-MEDIUM|Clerk#000000100|0|y blithely even foxes. fluffily silent accounts cajole. blit| +64841|166525|F|144785.74|1993-05-21|1-URGENT|Clerk#000000747|0|ly blithely express instructions. slyly final requ| +64842|513268|F|118693.47|1993-07-09|4-NOT SPECIFIED|Clerk#000001496|0|y sly foxes; quickly regular packages across the carefully regular packages pr| +64843|738268|O|78185.43|1995-08-13|3-MEDIUM|Clerk#000001234|0|y silent accounts. carefully expres| +64844|57908|O|165907.53|1995-12-25|3-MEDIUM|Clerk#000004287|0|quests engage blithely across the carefully pendi| +64845|502543|O|42801.55|1996-01-27|3-MEDIUM|Clerk#000000115|0|ic, ironic platelets. slyly final pinto bean| +64846|470128|F|130460.44|1995-02-13|4-NOT SPECIFIED|Clerk#000002163|0|ress deposits. packages are blithely after the furiously | +64847|175051|F|113620.42|1992-11-01|2-HIGH|Clerk#000003542|0|eodolites sleep? bravely silent accounts are carefully? slyly regula| +64872|572728|O|151694.18|1996-04-08|3-MEDIUM|Clerk#000004646|0|sleep fluffily about the sometimes even deposits. | +64873|324004|F|47837.30|1992-11-24|3-MEDIUM|Clerk#000000128|0|e carefully unusual requests. final packages alongside of the fin| +64874|506674|O|234290.26|1997-06-08|2-HIGH|Clerk#000003103|0| slyly special packages nag fluffily fluffily even requests. busily th| +64875|153145|F|302975.27|1994-02-20|1-URGENT|Clerk#000000008|0|the pinto beans. close theodolites haggle. ironic deposits | +64876|628984|F|33028.04|1992-04-16|4-NOT SPECIFIED|Clerk#000003108|0|mold furiously according to the excuses. furiou| +64877|52921|O|237499.96|1996-06-15|2-HIGH|Clerk#000001032|0|h furiously ironic, specia| +64878|671110|O|246949.67|1996-05-30|4-NOT SPECIFIED|Clerk#000000746|0|ess forges. furiously pending notornis sleep furiously carefully pending pac| +64879|86794|F|70030.58|1994-03-02|4-NOT SPECIFIED|Clerk#000001744|0|uriously regular deposits. braids hinder accounts. carefully bold foxes detect| +64904|720950|O|123325.93|1998-06-15|3-MEDIUM|Clerk#000003051|0|gainst the quickly final requests. quickly final theodolites detect reg| +64905|745105|P|184946.58|1995-05-14|2-HIGH|Clerk#000001827|0|lly special, final dependenci| +64906|208240|O|66166.92|1997-02-04|2-HIGH|Clerk#000002427|0|lets sleep according to the unusual requests. requests wake car| +64907|381305|O|208145.22|1995-08-12|2-HIGH|Clerk#000004925|0|arefully. slyly regular orbits integrate i| +64908|586429|F|215944.20|1993-12-15|2-HIGH|Clerk#000001931|0|ironic theodolites beyond the quickly final packages haggle sl| +64909|339518|O|10600.62|1996-05-19|2-HIGH|Clerk#000000938|0|edly regular instructions affix furiously. f| +64910|266896|F|279556.54|1994-03-02|4-NOT SPECIFIED|Clerk#000001439|0|y, ironic foxes boost. slyly unusual accoun| +64911|691660|O|51342.98|1995-09-29|2-HIGH|Clerk#000001473|0|quiet dolphins. expres| +64936|461827|O|17983.82|1996-05-22|4-NOT SPECIFIED|Clerk#000001150|0|ep carefully ironic excuses. ironic platelets outside the| +64937|167704|O|204214.57|1996-10-20|4-NOT SPECIFIED|Clerk#000004665|0|uctions wake. deposits unwind. slyly fin| +64938|96775|O|93880.61|1997-02-04|3-MEDIUM|Clerk#000000709|0|furiously bold excuses after the fl| +64939|485602|F|120813.72|1994-12-16|5-LOW|Clerk#000004900|0| packages wake blithely sentimen| +64940|9362|O|158796.97|1995-11-16|4-NOT SPECIFIED|Clerk#000000400|0|ts-- slyly bold foxes after the| +64941|580361|P|126641.47|1995-05-03|3-MEDIUM|Clerk#000002903|0|ly ironic packages against the sly| +64942|375505|O|52632.64|1998-01-18|5-LOW|Clerk#000001525|0|e furiously bold packages. stealthily ironic deposits according to the ev| +64943|605452|F|115204.34|1992-01-23|4-NOT SPECIFIED|Clerk#000003045|0| theodolites. quickly final ideas grow furiously. furiously unusu| +64968|568693|F|151311.47|1994-06-10|5-LOW|Clerk#000001984|0|odolites use slyly. fur| +64969|844|O|6021.21|1996-09-17|1-URGENT|Clerk#000001186|0|thely alongside of the closely speci| +64970|665381|F|102615.89|1992-09-20|5-LOW|Clerk#000001821|0|l instructions cajole furiously s| +64971|543109|O|331125.54|1995-05-29|5-LOW|Clerk#000004641|0| ideas. close packages boost closely bold packages. slyly bol| +64972|508738|O|128730.60|1995-09-15|5-LOW|Clerk#000003393|0|s haggle quickly about the regular, final instructions! fluffily expres| +64973|328852|O|105106.22|1998-04-30|3-MEDIUM|Clerk#000004686|0|nt packages. finally ir| +64974|241574|F|306945.98|1992-12-07|3-MEDIUM|Clerk#000004835|0|ickly fluffily even requests. evenly unusual requests alongsi| +64975|383572|O|62113.57|1997-10-08|2-HIGH|Clerk#000001761|0|fully express instructions nag fluffily| +65000|411863|O|33032.72|1997-07-20|3-MEDIUM|Clerk#000003142|0|ents around the carefully even requests ar| +65001|428053|O|3596.18|1996-06-24|4-NOT SPECIFIED|Clerk#000000190|0|ng to the furiously brave theodolites. furiously final packages hag| +65002|265876|O|107489.77|1997-11-09|1-URGENT|Clerk#000004867|0| against the express, brave pinto be| +65003|47821|O|73060.15|1997-03-24|3-MEDIUM|Clerk#000002246|0| nag along the final, unusual packages. slyly even packages are furi| +65004|444415|O|113182.77|1997-03-24|1-URGENT|Clerk#000003409|0|heodolites against | +65005|19415|O|276710.38|1996-10-14|2-HIGH|Clerk#000003888|0|he blithely regular| +65006|48506|O|36576.16|1998-04-01|5-LOW|Clerk#000003343|0|tions. regular accounts cajole car| +65007|731596|F|204605.95|1992-05-10|2-HIGH|Clerk#000001272|0|ounts haggle blithely whithout the furiously final accounts-- dolph| +65032|430388|O|94201.80|1996-08-31|4-NOT SPECIFIED|Clerk#000002687|0| final accounts! accounts haggle furiously slyly silent requests. silently| +65033|528280|O|196100.78|1997-01-28|2-HIGH|Clerk#000004674|0| the fluffily ironic deposits. blithely pending pinto beans according to the | +65034|269033|F|89490.05|1992-11-09|1-URGENT|Clerk#000002170|0|ress accounts. requests across the regular dugouts use| +65035|624473|F|16949.46|1992-06-02|1-URGENT|Clerk#000004937|0|ths above the quickly express pinto beans boost permanent excuses. quickly| +65036|15871|F|88908.07|1993-12-10|5-LOW|Clerk#000000962|0| final requests sleep quietly final re| +65037|475430|O|135787.41|1997-05-22|1-URGENT|Clerk#000001725|0|lithely express ideas sleep. blithely even deposits cajole slyly am| +65038|35644|O|278301.07|1996-11-17|1-URGENT|Clerk#000000713|0|yly unusual deposits across the d| +65039|547987|O|56778.87|1997-07-17|5-LOW|Clerk#000002300|0|ealms are final foxes. pen| +65064|14111|O|180565.62|1995-10-13|2-HIGH|Clerk#000001858|0|osits boost unusual ideas. ironic accounts sleep carefully across th| +65065|151034|F|379183.85|1994-09-20|5-LOW|Clerk#000004604|0| foxes. fluffily final deposits nag furiousl| +65066|417394|F|45731.70|1995-02-12|3-MEDIUM|Clerk#000004581|0|sual theodolites-- regular deposits cajole. furiously unusua| +65067|389101|F|157555.18|1993-12-01|5-LOW|Clerk#000001502|0|ndencies. carefully sl| +65068|359834|O|61967.35|1996-08-01|2-HIGH|Clerk#000000213|0|y silent, regular packages. brave, bold ideas caj| +65069|472369|F|213281.91|1993-04-11|3-MEDIUM|Clerk#000003716|0| ironic packages cajole across the re| +65070|323929|F|293634.43|1992-06-27|1-URGENT|Clerk#000004580|0|uests. slyly even foxes cajole above the slyly pending exc| +65071|22964|O|70323.00|1998-01-15|4-NOT SPECIFIED|Clerk#000000099|0|fully regular packages. final| +65096|443911|O|122362.73|1997-05-01|2-HIGH|Clerk#000004592|0|e slyly about the eve| +65097|534019|F|134344.41|1992-02-23|1-URGENT|Clerk#000003825|0|s haggle sometimes regular, ironic asym| +65098|739375|F|251107.81|1994-03-08|2-HIGH|Clerk#000000840|0| about the carefully ironic packages. blithely bold pinto beans s| +65099|657640|O|102029.12|1996-01-10|5-LOW|Clerk#000002858|0|y even theodolites: regular ideas affix. slyly bold acc| +65100|205456|F|220498.45|1992-08-09|2-HIGH|Clerk#000002639|0|. slyly regular requests abo| +65101|92873|F|307099.74|1994-05-27|1-URGENT|Clerk#000000989|0|slyly regular requests. special, regular e| +65102|155461|O|96119.18|1995-10-11|5-LOW|Clerk#000004986|0|pending requests. carefully even deposits cajole. blithely fina| +65103|569306|O|151092.81|1996-07-10|4-NOT SPECIFIED|Clerk#000000675|0|uriously alongside of the furious, bold foxes. requests cajole carefully. furi| +65128|566653|F|137954.98|1993-03-01|1-URGENT|Clerk#000000073|0|uick pinto beans. dependencies are| +65129|236443|F|147527.46|1993-01-16|5-LOW|Clerk#000003721|0|c asymptotes nag; carefully pending accoun| +65130|389707|O|206054.48|1996-03-01|4-NOT SPECIFIED|Clerk#000002690|0|yly ironic accounts affix blithely regular dependencies. furiously ruthle| +65131|44560|O|210806.15|1997-11-03|4-NOT SPECIFIED|Clerk#000004222|0|inal platelets are carefully regular ideas. furiously close rea| +65132|417016|F|124968.56|1994-06-04|1-URGENT|Clerk#000003984|0|equests. quick requests about the furiously ironic dependencies sl| +65133|36988|F|191788.16|1993-01-17|2-HIGH|Clerk#000002687|0| regular requests. blithely final platelets wake blithely regular deposits. | +65134|627728|P|274298.99|1995-03-16|5-LOW|Clerk#000002306|0|l platelets since the pending deposits use fluffily against th| +65135|713617|F|263719.53|1993-11-02|4-NOT SPECIFIED|Clerk#000001505|0|nd the carefully regular instructions wake blithely | +65160|482020|F|178463.67|1992-06-30|3-MEDIUM|Clerk#000003691|0| the requests. dependencies wake blithely; blithely even theodolites about th| +65161|533255|F|164614.76|1994-04-04|3-MEDIUM|Clerk#000001985|0|final instructions sleep furiously according to the bold a| +65162|654250|O|5511.68|1995-07-06|1-URGENT|Clerk#000001007|0|furiously according to the theodolites. fluffily | +65163|223921|O|73759.34|1995-05-18|1-URGENT|Clerk#000002521|0| regular, final excuses sleep quickly ironic requests. slyly even | +65164|688939|O|277280.68|1996-01-29|1-URGENT|Clerk#000004740|0|fluffily ironic deposits boost among the slyly r| +65165|485596|O|151802.97|1997-04-13|4-NOT SPECIFIED|Clerk#000003941|0|alongside of the bold frets impress slyly slyly fina| +65166|643997|O|313265.54|1996-06-18|3-MEDIUM|Clerk#000002666|0| the furiously unusual deposits boost slyly | +65167|397595|O|46158.30|1996-12-03|2-HIGH|Clerk#000002746|0|attainments cajole pending, blithe ideas. fluffily| +65192|625253|F|204603.60|1993-02-23|3-MEDIUM|Clerk#000003893|0|y sentiments. blithely special deposits alongside of the slowly ironic accou| +65193|373183|F|69216.29|1993-11-07|1-URGENT|Clerk#000004864|0|ven forges cajole quickly above the slyly pending asymptotes. | +65194|563230|O|184163.73|1998-06-20|4-NOT SPECIFIED|Clerk#000002811|0|gle daringly regular idea| +65195|432958|O|46874.41|1997-09-27|3-MEDIUM|Clerk#000003956|0|y regular, ironic deposits. slyly pending foxes wake against the boldly| +65196|204215|F|309120.29|1992-10-20|1-URGENT|Clerk#000000351|0|hely above the carefully final ac| +65197|237749|O|139761.70|1997-05-17|3-MEDIUM|Clerk#000002924|0|efully above the furiously bold packages. slyly unusual dependencie| +65198|590066|F|171371.87|1995-02-25|4-NOT SPECIFIED|Clerk#000001993|0|the dolphins. carefully even deposits detect about the furiously bold theo| +65199|738218|F|42501.04|1992-05-11|3-MEDIUM|Clerk#000003035|0|e carefully. slyly regular fo| +65224|729202|O|177905.33|1997-05-19|5-LOW|Clerk#000000966|0|ly pending ideas. express deposits detect carefu| +65225|676538|O|99879.92|1995-10-08|1-URGENT|Clerk#000001521|0|about the blithely pending packages. slowly final foxes dazzl| +65226|567179|F|98450.79|1994-08-13|5-LOW|Clerk#000004137|0|old deposits. fluffily pending theodolites cajole beside the | +65227|67858|O|160416.23|1996-05-31|1-URGENT|Clerk#000003868|0|even accounts. carefully final frets dete| +65228|464644|O|124098.08|1995-07-23|1-URGENT|Clerk#000004807|0|en accounts wake blithel| +65229|252121|O|112121.08|1997-07-19|5-LOW|Clerk#000002439|0|ages. quickly unusual dolphins are furiously quickly fin| +65230|616919|O|5706.91|1997-09-29|1-URGENT|Clerk#000002211|0|carefully against the even foxes. even ideas | +65231|544301|O|157030.90|1996-07-03|1-URGENT|Clerk#000003365|0|deas. express, regular instructions are slyly. fray| +65256|310106|F|122678.72|1995-04-10|3-MEDIUM|Clerk#000002463|0|gular dependencies sl| +65257|193594|F|93281.01|1994-11-04|5-LOW|Clerk#000004217|0| across the ironic accounts. fluffily regula| +65258|228382|F|99034.93|1992-07-22|3-MEDIUM|Clerk#000001100|0|cies engage quickly along the quickly regular accounts. slyly eve| +65259|655112|O|68331.66|1996-04-19|3-MEDIUM|Clerk#000001362|0|, regular excuses doze quickly. blithely special requests affix slyly. bli| +65260|458830|F|93911.66|1995-02-25|4-NOT SPECIFIED|Clerk#000002276|0|. final, pending pinto beans boost. closely ironic packages dazzle slyly acr| +65261|25324|F|145452.66|1993-05-19|3-MEDIUM|Clerk#000001597|0| accounts. quickly sly| +65262|342821|F|111049.52|1994-12-04|3-MEDIUM|Clerk#000003519|0| requests integrate carefully by the slyly ironic ide| +65263|281785|O|82023.51|1995-06-26|4-NOT SPECIFIED|Clerk#000002926|0|ideas among the carefully reg| +65288|427171|F|183949.69|1993-06-22|1-URGENT|Clerk#000002214|0|ns nag blithely according to the ironic requests. ruthlessly pending pint| +65289|455524|O|165505.91|1997-10-10|4-NOT SPECIFIED|Clerk#000000475|0| above the fluffily regular theodolit| +65290|725591|F|65285.10|1994-12-09|4-NOT SPECIFIED|Clerk#000001746|0|ly across the even platelets. slyly express acco| +65291|1076|O|223022.40|1997-09-30|4-NOT SPECIFIED|Clerk#000001608|0|dolites haggle slyly acco| +65292|83194|F|248024.10|1995-02-18|3-MEDIUM|Clerk#000002494|0|y blithe accounts. unusual requests cajole alongside of the ideas. final, fin| +65293|208897|O|159384.33|1996-02-01|3-MEDIUM|Clerk#000003511|0|ach furiously carefully special pinto beans. furiousl| +65294|171481|O|67616.28|1997-07-19|3-MEDIUM|Clerk#000004715|0|s cajole thinly against the blithely pending excuses.| +65295|571703|O|147545.24|1997-07-18|5-LOW|Clerk#000001025|0|x slyly according t| +65320|358910|O|103610.69|1996-09-20|2-HIGH|Clerk#000000152|0|ial pinto beans. special | +65321|686354|O|226038.45|1996-03-19|3-MEDIUM|Clerk#000000428|0|ly even theodolites boost slyly final accounts. carefully even orbit| +65322|535100|F|31767.48|1995-02-01|2-HIGH|Clerk#000002322|0|er the carefully express pinto beans. regular, regula| +65323|165250|O|39034.25|1997-06-02|1-URGENT|Clerk#000004539|0| bold requests. furiou| +65324|102793|O|183321.91|1995-07-12|4-NOT SPECIFIED|Clerk#000001895|0|uctions doze after the blithely bold theodolites. furiously final deposits hag| +65325|382966|F|20490.04|1994-09-20|4-NOT SPECIFIED|Clerk#000003511|0| dolphins around the care| +65326|728764|O|117743.93|1996-04-12|4-NOT SPECIFIED|Clerk#000000553|0|ag blithely carefully fin| +65327|60379|F|103583.31|1994-05-20|5-LOW|Clerk#000003175|0|eodolites wake slyly quickly special fox| +65352|29824|F|149021.73|1993-06-11|5-LOW|Clerk#000001910|0|into beans are slyly across the bold, final decoy| +65353|227620|O|99711.46|1997-07-25|4-NOT SPECIFIED|Clerk#000004047|0|uriously even instructions doubt furiously. ironic packages sleep fu| +65354|607102|O|161726.29|1996-08-02|3-MEDIUM|Clerk#000002689|0|ests use at the final, daring requests! requests alo| +65355|560185|F|231998.60|1993-09-27|4-NOT SPECIFIED|Clerk#000003612|0|thely regular theodolites wake blithely alongside of the quickly regula| +65356|278146|O|179284.54|1996-08-12|5-LOW|Clerk#000004980|0|ress quickly slyly even accounts. slyly regular accounts on the final ep| +65357|19132|F|262633.41|1994-05-08|5-LOW|Clerk#000003620|0|ins. slyly special dependencies inside t| +65358|535751|F|151920.62|1994-09-13|2-HIGH|Clerk#000001104|0|quests. express courts cajole blithely| +65359|614662|P|108038.87|1995-04-15|2-HIGH|Clerk#000001534|0| place of the blithely unusual wa| +65384|111455|P|306239.29|1995-04-20|1-URGENT|Clerk#000002010|0|refully special acco| +65385|458534|O|90660.53|1996-02-27|4-NOT SPECIFIED|Clerk#000004003|0|ronic ideas haggle slyly final packages. blithely bold sheaves hang | +65386|317980|F|226206.14|1992-10-23|4-NOT SPECIFIED|Clerk#000000246|0|ng to the furiously unusual packages. slyly clos| +65387|518975|F|138280.81|1992-04-26|4-NOT SPECIFIED|Clerk#000004201|0|s cajole slyly packages. final ideas use stealthily. quietly special c| +65388|658823|O|240571.91|1998-01-05|2-HIGH|Clerk#000000686|0|ven packages haggle furiously never regular requests. carefu| +65389|574534|O|227917.07|1995-08-19|3-MEDIUM|Clerk#000004948|0|e of the slyly even dependencies. slyly express deposits cajole always. sile| +65390|679454|O|132927.81|1997-05-18|2-HIGH|Clerk#000003996|0|ly. quick deposits around the slyly unusual requests | +65391|83104|O|109204.59|1996-04-13|3-MEDIUM|Clerk#000002870|0|ctions. even deposits sleep furiously above the regu| +65416|211975|O|110586.59|1997-06-10|2-HIGH|Clerk#000003070|0|olphins across the final req| +65417|149125|O|87354.32|1998-01-27|5-LOW|Clerk#000004306|0|dolites. courts thrash furiousl| +65418|586346|O|63985.90|1998-06-15|4-NOT SPECIFIED|Clerk#000003730|0| requests sleep carefully even patterns: | +65419|453452|F|273755.48|1992-09-28|2-HIGH|Clerk#000004076|0|es. special dependencies are carefully. blithely special Tiresias | +65420|411539|F|39991.40|1995-01-02|3-MEDIUM|Clerk#000000577|0|unts use quickly inside the pending forges. carefu| +65421|227888|F|212978.33|1993-01-08|4-NOT SPECIFIED|Clerk#000001734|0|jole furiously across the packages; requests after the spec| +65422|606163|F|234208.31|1993-05-25|1-URGENT|Clerk#000002828|0|e slyly. blithely final| +65423|524425|F|316652.58|1994-04-20|2-HIGH|Clerk#000002954|0|foxes. thinly regular excuses sleep fluffily. blithely express pinto| +65448|736958|F|73887.67|1994-12-19|5-LOW|Clerk#000003900|0|boost. ironic packages use about the fluffily bold theodolites. daringly p| +65449|539981|F|195030.40|1992-05-26|2-HIGH|Clerk#000004819|0| stealthily ironic sauter| +65450|460276|O|238056.74|1996-01-19|1-URGENT|Clerk#000002752|0|ial platelets. foxes haggle slyly. regula| +65451|328295|F|107067.71|1992-02-21|1-URGENT|Clerk#000001954|0|s above the permanently ironic somas haggle against the quickly regular acc| +65452|644248|O|256274.43|1998-03-01|2-HIGH|Clerk#000004269|0|n theodolites haggle. packages use blithely. furiously pending decoys | +65453|120524|O|194057.13|1996-01-20|2-HIGH|Clerk#000002682|0|nusual packages. slyly pending gifts mold. carefully exp| +65454|640366|F|132794.51|1992-06-19|1-URGENT|Clerk#000003200|0|after the slyly express packages boos| +65455|126116|F|125544.76|1993-08-01|1-URGENT|Clerk#000002749|0|tes try to nag after t| +65480|125462|O|349061.34|1998-05-04|3-MEDIUM|Clerk#000002636|0|luffily. blithely regular requests affix quietly bold deposits. dependenc| +65481|380618|O|391543.72|1996-09-25|4-NOT SPECIFIED|Clerk#000004705|0|counts sleep. ironic requests are according to the pending| +65482|295097|F|54037.76|1994-08-11|3-MEDIUM|Clerk#000004541|0|according to the careful instructions ha| +65483|680632|O|27607.79|1996-12-15|5-LOW|Clerk#000000549|0|ites haggle furiously after the even accounts. blithely final pinto beans int| +65484|377401|P|257351.59|1995-05-18|1-URGENT|Clerk#000000318|0|y. fluffily special realms affix slyly requests. even,| +65485|204991|O|210460.12|1998-07-25|5-LOW|Clerk#000001537|0|gle furiously fluffily pending packages. pending dependencies aga| +65486|517915|O|98839.30|1995-09-06|3-MEDIUM|Clerk#000000332|0|s. pending foxes sleep blithely regular, pending acc| +65487|77005|O|231087.68|1997-03-28|4-NOT SPECIFIED|Clerk#000001984|0| furiously express requests hinder-- quickly even accounts w| +65512|444970|F|134270.31|1994-11-01|1-URGENT|Clerk#000003515|0|ully ironic accounts wake ironic deposits| +65513|356416|O|75351.78|1995-11-20|1-URGENT|Clerk#000002673|0|es hinder quickly. quickly specia| +65514|30325|O|283872.72|1998-04-03|4-NOT SPECIFIED|Clerk#000001508|0|thely even requests wake according to the braids. fluffily ironic packages| +65515|420772|F|64471.79|1994-04-21|5-LOW|Clerk#000003377|0|nos cajole around the blithely reg| +65516|158138|O|271263.04|1996-12-23|2-HIGH|Clerk#000000924|0|unts use furiously regular dependencies. p| +65517|565513|F|201166.88|1992-04-08|4-NOT SPECIFIED|Clerk#000000827|0|luffily final sauternes. slyly express pinto beans cajole slyly ironic requ| +65518|574327|O|221588.29|1996-07-27|1-URGENT|Clerk#000001353|0|e above the final, ironic platelets. fluffily final courts sleep | +65519|210182|F|149130.72|1994-03-07|3-MEDIUM|Clerk#000001490|0|uses wake special, final requests. bold foxes are ca| +65544|12376|O|114899.89|1997-04-06|4-NOT SPECIFIED|Clerk#000004587|0|. silent, regular req| +65545|234752|O|80754.81|1995-10-06|4-NOT SPECIFIED|Clerk#000004252|0|inos integrate furiously along the final courts. ironic | +65546|468646|F|103670.94|1995-03-21|2-HIGH|Clerk#000000198|0|usly unusual accounts cajole furiousl| +65547|25346|O|42350.34|1996-10-12|3-MEDIUM|Clerk#000001167|0|slyly final platelets nag about the final requests. final, i| +65548|725338|O|251706.29|1995-08-23|4-NOT SPECIFIED|Clerk#000004586|0|uffily unusual instructions. blit| +65549|224063|F|67974.29|1993-10-29|5-LOW|Clerk#000002293|0|s detect special packages. silent, regular request| +65550|76195|F|192096.93|1992-10-06|2-HIGH|Clerk#000001004|0|osits sleep quickly unusual excus| +65551|345385|O|283285.40|1997-01-27|5-LOW|Clerk#000004807|0|inal requests cajole always re| +65576|607511|F|157077.98|1992-10-18|4-NOT SPECIFIED|Clerk#000004994|0|above the ironic instructions solve furiously above the pinto beans. flu| +65577|686048|O|181889.37|1996-06-19|5-LOW|Clerk#000002960|0|side of the carefully pending pinto beans. carefully regular deposits sle| +65578|650572|O|76791.71|1996-06-04|4-NOT SPECIFIED|Clerk#000002823|0|. slyly regular accounts should use careful| +65579|641650|O|66600.09|1998-02-22|5-LOW|Clerk#000001027|0|ss orbits use after the bli| +65580|703141|F|224980.16|1995-01-09|2-HIGH|Clerk#000001009|0| to the carefully ironic foxes use ironically according to | +65581|670666|O|73533.81|1997-08-10|1-URGENT|Clerk#000000146|0| ironic pinto beans cajol| +65582|118823|O|380784.41|1998-04-15|1-URGENT|Clerk#000004328|0| final theodolites. slyly even tithes aga| +65583|541393|O|206463.77|1997-09-10|1-URGENT|Clerk#000002825|0|ely even excuses. slyly slow requests | +65608|174133|O|85520.63|1998-04-03|5-LOW|Clerk#000002330|0| haggle. blithely regular dependencies nag. en| +65609|135796|F|154761.67|1994-11-14|4-NOT SPECIFIED|Clerk#000003928|0|osits play blithely. carefully bold | +65610|53572|O|156270.58|1995-11-06|1-URGENT|Clerk#000000227|0|ake blithely unusual accounts; regular, ironic deposits above the even, final | +65611|362339|F|116558.84|1992-03-03|1-URGENT|Clerk#000003481|0|thely regular accounts. slyly ironic platelets mol| +65612|572698|F|53287.90|1993-03-09|4-NOT SPECIFIED|Clerk#000004997|0|ctions? carefully even sauternes above the final, final p| +65613|561155|O|136816.43|1996-08-14|4-NOT SPECIFIED|Clerk#000004876|0|osits. blithely special ideas are furiously courts. regular depths cajole ir| +65614|65608|O|8105.41|1998-07-02|5-LOW|Clerk#000000539|0|ng courts sleep regular, regular Tiresias. | +65615|158690|O|226351.24|1998-04-07|1-URGENT|Clerk#000002124|0|sly special requests along the slyly pending ac| +65640|88475|F|137515.63|1993-01-16|5-LOW|Clerk#000003558|0|odolites across the express deposits snooze carefully according to t| +65641|498196|O|56212.67|1997-06-14|1-URGENT|Clerk#000000572|0|brave ideas kindle fluffily. quickly unu| +65642|158809|F|157506.60|1993-05-18|3-MEDIUM|Clerk#000000317|0|odolites unwind slyly even dependencies. specia| +65643|585421|O|175950.35|1998-07-21|5-LOW|Clerk#000000321|0|arefully after the daring, final cour| +65644|654067|F|267535.31|1994-08-22|1-URGENT|Clerk#000004558|0|lly furiously pending packages. carefully even instructions sl| +65645|140398|O|224799.69|1996-07-13|1-URGENT|Clerk#000003204|0|usual packages. quickly ironic requests are even requests: | +65646|168482|O|197153.61|1996-01-20|1-URGENT|Clerk#000002133|0|xpress sauternes boost carefully carefully regular packages. quic| +65647|411296|O|97737.64|1997-03-29|2-HIGH|Clerk#000001578|0|ts cajole carefully furiously regu| +65672|640546|F|183552.23|1992-07-08|2-HIGH|Clerk#000000591|0| according to the furiously silent instructions. furiously silent | +65673|134576|F|86503.50|1994-05-26|3-MEDIUM|Clerk#000000696|0|fully. furiously pending theodo| +65674|566993|O|76580.60|1997-11-12|4-NOT SPECIFIED|Clerk#000002540|0| the slyly special realms? carefully reg| +65675|694273|O|74195.66|1996-08-21|4-NOT SPECIFIED|Clerk#000003018|0| sleep fluffily package| +65676|135133|O|307274.37|1997-10-31|4-NOT SPECIFIED|Clerk#000002448|0| slyly brave accounts | +65677|173077|O|94643.41|1998-01-26|1-URGENT|Clerk#000000866|0|ing to the carefully even instructions. quickly bold epitaphs| +65678|398104|O|105836.49|1996-11-22|5-LOW|Clerk#000000417|0|tes cajole quickly across the quickly regular packages. blithely regular| +65679|178987|O|86069.20|1998-05-10|2-HIGH|Clerk#000000532|0|oss the slyly final deposits-- quickly regular i| +65704|704512|F|69112.94|1992-11-10|4-NOT SPECIFIED|Clerk#000004550|0|kages according to the accounts hinder fluffily after the un| +65705|455056|F|117257.36|1994-12-22|5-LOW|Clerk#000002936|0|usly slyly even requests: regular, b| +65706|361516|F|47475.63|1994-02-28|4-NOT SPECIFIED|Clerk#000003162|0|. fluffily unusual | +65707|246754|O|35798.91|1998-05-06|4-NOT SPECIFIED|Clerk#000004461|0|use furiously. slyly unusual packages in| +65708|443458|F|203183.80|1992-06-08|4-NOT SPECIFIED|Clerk#000000978|0|e furiously carefully special requests. pending| +65709|415300|O|58627.86|1995-09-01|4-NOT SPECIFIED|Clerk#000003252|0|in ironic, final foxes. unusual, enticing frets wake after the furi| +65710|444712|F|119821.95|1992-09-03|2-HIGH|Clerk#000003226|0|fily against the blithely unusual packa| +65711|494755|O|210866.86|1995-12-13|3-MEDIUM|Clerk#000000419|0| against the regular asymptotes wake instead of th| +65736|93496|O|193973.79|1998-05-11|4-NOT SPECIFIED|Clerk#000004704|0|gular deposits. silent, final theodolites above| +65737|118996|O|276270.27|1997-12-11|1-URGENT|Clerk#000003541|0|, regular ideas according to th| +65738|449005|F|118784.84|1992-08-19|4-NOT SPECIFIED|Clerk#000001027|0|uses hang according to the blithely ironic instructions. ca| +65739|652610|F|167818.22|1992-06-20|4-NOT SPECIFIED|Clerk#000000042|0| silent foxes. bold packages hinder carefully along the slyly pending request| +65740|408169|O|167352.99|1998-01-22|2-HIGH|Clerk#000000055|0|ial instructions detect slyly after the quickly re| +65741|592670|O|270813.59|1998-02-20|1-URGENT|Clerk#000003929|0|according to the quickly final | +65742|249355|F|162680.41|1993-01-28|5-LOW|Clerk#000004553|0| affix ironic deposits. slyly final instru| +65743|640066|F|144791.85|1992-12-14|5-LOW|Clerk#000001541|0|onic, regular platelets wak| +65768|329986|F|182458.83|1994-09-24|1-URGENT|Clerk#000004411|0|etect slyly across the blithely regular theodolites. final realms are som| +65769|571180|F|234125.69|1992-07-25|4-NOT SPECIFIED|Clerk#000001546|0|sits. even deposits haggle carefu| +65770|543080|F|50280.65|1993-01-21|3-MEDIUM|Clerk#000001635|0| fluffily special requests sleep| +65771|36038|P|215849.39|1995-03-21|2-HIGH|Clerk#000003270|0| the quickly bold platelets. express packages wake carefully. ironic, bl| +65772|426638|O|184299.36|1997-06-28|5-LOW|Clerk#000002864|0|ly after the quickly expre| +65773|502423|F|195250.81|1992-05-04|2-HIGH|Clerk#000004346|0|s boost carefully among the ideas. furiously bold platelets| +65774|718240|F|161543.04|1992-02-09|4-NOT SPECIFIED|Clerk#000003500|0|ending, special theodolites wake. furiously ironic deposits nag slyly| +65775|203066|F|144338.94|1992-07-02|4-NOT SPECIFIED|Clerk#000004070|0| quickly ironic asy| +65800|426377|O|220896.99|1997-08-16|1-URGENT|Clerk#000003303|0|s wake above the req| +65801|603383|O|62103.92|1995-09-06|5-LOW|Clerk#000000142|0|equests are carefully. ironic requests alongside of the pending requests s| +65802|306934|O|142915.65|1998-05-13|3-MEDIUM|Clerk#000002059|0|the fluffily ironic courts. ironic ideas cajole fluffily alongside of the exp| +65803|130271|O|156689.62|1995-09-04|3-MEDIUM|Clerk#000003396|0|he requests. unusual, regular accounts nag blithely across the quickly | +65804|204214|F|33586.44|1993-07-12|5-LOW|Clerk#000001544|0|ns boost slyly around th| +65805|194155|O|39318.82|1995-10-16|4-NOT SPECIFIED|Clerk#000002041|0|e fluffily even orbits. r| +65806|641702|F|14134.82|1994-02-14|4-NOT SPECIFIED|Clerk#000002569|0|e quiet instructions sleep quickly regular foxes. pack| +65807|77672|O|63029.71|1996-10-21|5-LOW|Clerk#000001331|0|onic, even foxes. quickly pending packages are blithel| +65832|433304|F|76320.70|1993-09-17|3-MEDIUM|Clerk#000003205|0| the carefully regular | +65833|29834|O|47233.38|1996-08-22|1-URGENT|Clerk#000001413|0|fully regular excuses. | +65834|409771|O|347973.36|1997-01-21|3-MEDIUM|Clerk#000000054|0|dencies. final escapades affix furiously about the quickly bold acco| +65835|517585|O|165872.71|1997-05-22|5-LOW|Clerk#000002632|0|s sleep. quickly special ideas run carefully reg| +65836|518455|F|324380.96|1994-03-26|5-LOW|Clerk#000000897|0|carefully special multipliers. blithely bold excuses solve. dolphins are caref| +65837|151315|O|25407.90|1998-03-23|5-LOW|Clerk#000004672|0|uternes. slyly unusual accounts are furiously dinos. regular inst| +65838|643816|O|113375.89|1997-08-17|1-URGENT|Clerk#000002552|0| pinto beans cajole blithely even platelets; final dependen| +65839|341854|F|214687.81|1994-11-12|4-NOT SPECIFIED|Clerk#000003331|0|s the slyly unusual theodolites. quickly regular accou| +65864|531061|O|122419.15|1996-01-12|3-MEDIUM|Clerk#000003181|0|frets wake above the requests. ironically express asymptotes at t| +65865|508876|F|40878.12|1992-10-15|4-NOT SPECIFIED|Clerk#000001166|0|ng to the carefully ironic accounts. fluff| +65866|403084|F|240473.30|1994-02-02|5-LOW|Clerk#000001379|0|ccounts. even, regular gifts use about the special, regular requ| +65867|610439|F|129587.00|1993-05-22|3-MEDIUM|Clerk#000003156|0|uickly ironic requests wake. unusual, bold instructio| +65868|396328|O|13767.15|1995-09-06|3-MEDIUM|Clerk#000001212|0|ly express accounts according to the accounts boost sly| +65869|305467|F|7410.72|1993-02-18|5-LOW|Clerk#000003969|0|sts. close orbits doze against the quick ideas. exp| +65870|211999|O|230891.09|1996-11-12|4-NOT SPECIFIED|Clerk#000000263|0|ic pinto beans wake blithely. r| +65871|560755|F|250588.02|1992-12-05|1-URGENT|Clerk#000004706|0|ly final accounts against the slow, b| +65896|99199|F|113958.77|1993-01-11|3-MEDIUM|Clerk#000004950|0|even accounts. special warhorses haggle atop the pending accounts. c| +65897|704275|F|320263.11|1992-03-25|1-URGENT|Clerk#000004397|0|inal accounts engage pint| +65898|229891|O|160762.00|1998-01-18|3-MEDIUM|Clerk#000004324|0|ular accounts. packages among the deposits boost slyly furiously fina| +65899|503932|F|183475.51|1994-11-23|3-MEDIUM|Clerk#000000404|0|uickly ironic attainments. slyly regular excuses boost slyly ironi| +65900|569308|F|109609.04|1995-03-23|1-URGENT|Clerk#000004380|0|ual packages wake. carefully special packages| +65901|597775|O|101027.36|1997-12-17|2-HIGH|Clerk#000001413|0|g to the even instructions. bold, ironic | +65902|546458|F|62304.21|1994-06-14|5-LOW|Clerk#000003111|0| blithely accounts. packages boost fluffily a| +65903|554272|O|17979.47|1996-06-15|5-LOW|Clerk#000004842|0|elets across the furiously ironic accounts grow regular platelets. daringly r| +65928|616810|O|47924.82|1995-09-01|2-HIGH|Clerk#000004451|0|carefully. even, special instructions detect slyly-| +65929|215936|O|126225.61|1995-10-29|5-LOW|Clerk#000003226|0|usly regular multipliers. unusual theodolites along the regul| +65930|728191|O|216720.37|1996-01-13|4-NOT SPECIFIED|Clerk#000001065|0|lithely: theodolites haggle slyly. fin| +65931|200644|O|103547.25|1995-08-07|5-LOW|Clerk#000003022|0|s according to the packages sleep slyly among the slyly even packages. unusua| +65932|219163|F|48949.22|1993-02-26|5-LOW|Clerk#000001866|0|efully. slyly final packages boost. pending| +65933|204178|F|247104.55|1993-05-05|4-NOT SPECIFIED|Clerk#000004850|0|. ironic asymptotes along the requests are furiously spe| +65934|339556|O|53606.23|1996-05-01|3-MEDIUM|Clerk#000003710|0| of the quickly pending ideas. carefully silent packages | +65935|150262|O|57162.83|1996-02-09|4-NOT SPECIFIED|Clerk#000004956|0|lyly regular ideas cajole furiously silent accounts. stealth| +65960|183125|O|191656.84|1998-07-08|3-MEDIUM|Clerk#000002052|0|equests about the blithely ironic requests wake thinly along the slyly re| +65961|522638|O|75311.59|1997-03-03|2-HIGH|Clerk#000001766|0|idle tithes. even, ironic deposits sleep again| +65962|711593|O|196929.86|1997-11-11|5-LOW|Clerk#000004340|0|tions. blithely even | +65963|234190|F|307957.90|1992-06-03|5-LOW|Clerk#000000820|0|pending platelets haggle through the special ideas. quickly special deposits| +65964|415|O|54340.73|1996-04-22|2-HIGH|Clerk#000000540|0| requests nag. dolphi| +65965|200779|F|139207.01|1994-09-26|2-HIGH|Clerk#000004723|0|s. slyly ironic foxes sleep blithely theodolites. requests may bo| +65966|235021|O|346433.17|1996-01-13|3-MEDIUM|Clerk#000003898|0|aters-- regularly special accounts wake | +65967|465565|O|330845.50|1998-06-20|2-HIGH|Clerk#000002816|0|ake carefully. unusual foxes boost slowly despite the slyly ironic packag| +65992|731116|O|158672.24|1996-05-20|2-HIGH|Clerk#000001456|0|requests haggle slyly. regular asymptotes around the ideas haggle quickly bold| +65993|587194|F|221839.06|1994-02-16|5-LOW|Clerk#000004336|0|along the final, express instructions. waters haggle quickly. b| +65994|439441|O|135509.19|1995-11-12|3-MEDIUM|Clerk#000000270|0| slyly special deposits. fluffily silent pinto beans along the carefully | +65995|405688|F|245936.43|1993-02-22|5-LOW|Clerk#000002903|0|y special foxes caj| +65996|118940|O|255179.85|1997-09-12|4-NOT SPECIFIED|Clerk#000002011|0|final packages. carefully express ins| +65997|261841|O|72138.77|1995-12-17|4-NOT SPECIFIED|Clerk#000002199|0|r foxes. ironic platelets behin| +65998|508822|O|152325.73|1997-01-21|2-HIGH|Clerk#000003853|0|s haggle. unusual, even accounts wake slyly along the slyly bol| +65999|265567|O|66708.38|1996-04-30|4-NOT SPECIFIED|Clerk#000000653|0|g instructions. never bol| +66024|126611|F|117062.50|1992-09-15|5-LOW|Clerk#000004330|0|across the carefully pending excuses: slyly bold deposits u| +66025|186086|O|46209.18|1997-03-08|1-URGENT|Clerk#000003102|0|usual accounts use carefully quick deposits. packages across the i| +66026|36518|O|230477.56|1996-08-27|4-NOT SPECIFIED|Clerk#000000098|0|refully regular requests sleep above the | +66027|257701|F|176136.31|1993-11-29|2-HIGH|Clerk#000000579|0|egular foxes sleep. even requests wake against the even, regular ideas| +66028|674806|F|182156.07|1995-01-15|3-MEDIUM|Clerk#000002539|0|r instructions. ironic reque| +66029|704435|O|116136.57|1995-06-01|2-HIGH|Clerk#000000864|0|ckages nag furiously even courts. unusual requests c| +66030|686233|F|187709.31|1993-02-16|1-URGENT|Clerk#000000539|0|the slyly regular deposits kindle acro| +66031|7996|F|232324.68|1993-03-02|2-HIGH|Clerk#000003544|0|ackages. carefully ironic requests cajole fu| +66056|128512|F|99327.98|1993-02-05|2-HIGH|Clerk#000001970|0|lyly unusual instructions wake. | +66057|646094|F|65549.42|1993-08-19|4-NOT SPECIFIED|Clerk#000004347|0|s sleep. regular, bold asymptotes boost furiously f| +66058|391621|F|51416.57|1995-02-17|3-MEDIUM|Clerk#000003644|0|ke. regular, regular deposits around the final ideas sleep idly ironic dep| +66059|702985|F|57236.90|1994-08-09|1-URGENT|Clerk#000000918|0|ages sleep according to the slyly ironic packages. bold, regular| +66060|301009|F|238586.59|1994-04-25|3-MEDIUM|Clerk#000000076|0|quickly bold ideas wake quickly around the carefully fluffy i| +66061|277300|F|260638.31|1994-01-24|5-LOW|Clerk#000004368|0|. slyly even deposits are furiously quickly final theodolites. unusual dep| +66062|66737|O|29379.50|1998-01-25|4-NOT SPECIFIED|Clerk#000004716|0|lar packages sublate furiously. quickly regular deposits wake carefully even| +66063|384676|F|189350.21|1992-12-14|1-URGENT|Clerk#000000911|0|ts wake quickly about the blithely bold deposits. final ins| +66088|220555|O|224593.25|1998-07-12|2-HIGH|Clerk#000000136|0|lithely special instructions. final, ironic theodolites ac| +66089|346805|O|15778.10|1997-01-02|4-NOT SPECIFIED|Clerk#000001956|0|ronic deposits sleep closely final platelets. slyly regular packages boost rut| +66090|494311|F|77604.81|1993-01-13|4-NOT SPECIFIED|Clerk#000004357|0|ole across the furiously regular deposits. furious| +66091|116938|F|76661.91|1992-05-19|3-MEDIUM|Clerk#000001483|0|luffily regular deposits are carefully. slyly final accounts cajole acros| +66092|359600|O|68082.34|1995-11-28|4-NOT SPECIFIED|Clerk#000001907|0|he express, final accounts? foxes cajole ac| +66093|290093|F|213748.49|1992-12-04|1-URGENT|Clerk#000002212|0|e final foxes cajole fluffily across the slyly blithe packages: c| +66094|576308|O|266710.66|1997-08-20|3-MEDIUM|Clerk#000003338|0| carefully ironic requests try to use slyl| +66095|501584|O|180544.58|1997-05-17|4-NOT SPECIFIED|Clerk#000001241|0|ill cajole among the sl| +66120|115615|F|333018.17|1993-07-29|1-URGENT|Clerk#000000221|0|. slyly final packa| +66121|612829|O|112895.65|1996-11-12|2-HIGH|Clerk#000003944|0|. unusual excuses boost furiously. furiously ironic instructions sleep| +66122|50015|F|102333.78|1992-10-16|4-NOT SPECIFIED|Clerk#000000688|0|arefully bold packag| +66123|595954|O|140787.44|1996-01-14|1-URGENT|Clerk#000000025|0|ial foxes. ironic, ironic theodolites| +66124|676261|F|195758.06|1993-02-27|4-NOT SPECIFIED|Clerk#000004223|0|egular requests aff| +66125|416197|F|132762.10|1993-03-31|2-HIGH|Clerk#000002883|0|ly ironic requests. ironic ins| +66126|507844|O|50613.15|1998-07-20|5-LOW|Clerk#000003957|0|hang carefully even instructions. blithely regular requests doubt slyly regula| +66127|323119|F|33939.82|1994-10-06|2-HIGH|Clerk#000003811|0|lyly atop the slyly ironic grouches. pending requests are| +66152|644234|F|315897.80|1994-09-06|5-LOW|Clerk#000000859|0| even warhorses. slyly regular instructi| +66153|631166|F|122842.40|1993-06-26|5-LOW|Clerk#000004731|0|s cajole blithely after the dependencies. regular, sp| +66154|4423|O|107397.04|1995-12-09|2-HIGH|Clerk#000001016|0|y inside the pending pa| +66155|70745|O|235062.65|1995-11-11|4-NOT SPECIFIED|Clerk#000000348|0|equests along the regular excuses are blithely slyly | +66156|249152|O|309503.81|1998-02-16|1-URGENT|Clerk#000002336|0| foxes use furiously. blithely bold accounts affix. slyly ev| +66157|243814|O|123761.22|1997-08-17|5-LOW|Clerk#000001960|0|ns sleep after the fluffily final deposits. slyly bold acc| +66158|506822|O|177976.51|1996-02-22|2-HIGH|Clerk#000000898|0|ly pending theodolites. b| +66159|391612|O|112146.20|1997-11-12|5-LOW|Clerk#000000885|0|unusual pinto beans b| +66184|568333|F|116550.14|1992-11-26|2-HIGH|Clerk#000000251|0|bold requests haggle furiously carefully| +66185|693364|O|101689.50|1996-11-30|1-URGENT|Clerk#000003378|0|g bravely blithely unusual foxes. slyly regular pi| +66186|587731|O|19886.72|1998-02-02|1-URGENT|Clerk#000001658|0|inal ideas are quickly according to the even, special packages. slyl| +66187|491218|O|113241.86|1995-07-26|1-URGENT|Clerk#000002424|0|ans. regular forges affix among the carefully ironic accounts. regular instru| +66188|624355|O|125044.45|1995-10-22|1-URGENT|Clerk#000003958|0| dependencies. ironic, regular requ| +66189|277753|F|185731.32|1992-05-23|1-URGENT|Clerk#000004836|0|riously furious deposits cajole furiously. slyly regular in| +66190|194183|F|277795.35|1995-02-08|1-URGENT|Clerk#000001849|0|g requests breach furiously| +66191|376858|F|319031.33|1995-01-23|5-LOW|Clerk#000001516|0|ickly brave theodolites. unusual dependencies cajole. final, regular| +66216|72275|F|101336.87|1993-03-25|4-NOT SPECIFIED|Clerk#000002988|0|olites affix against the furiously final frets. regular, even ideas past | +66217|468325|F|205288.08|1993-01-13|3-MEDIUM|Clerk#000000611|0| deposits above the carefully final packages boost quickly slyl| +66218|636850|F|262161.84|1993-01-01|3-MEDIUM|Clerk#000001891|0| are slyly around the carefully pending deposits. furiously slow foxes nag | +66219|267628|O|132931.30|1996-03-18|3-MEDIUM|Clerk#000004871|0|efully across the even, special pinto beans. regular depo| +66220|242804|F|142524.12|1992-09-21|4-NOT SPECIFIED|Clerk#000002828|0|xpress frets boost carefully after the furious| +66221|52453|F|101931.06|1994-03-31|1-URGENT|Clerk#000001690|0|ounts nag furiously qui| +66222|305398|F|337244.61|1993-09-13|2-HIGH|Clerk#000000262|0|deposits. slyly special theodolites sub| +66223|558190|P|233076.76|1995-03-22|4-NOT SPECIFIED|Clerk#000001212|0| theodolites wake blithely against the special foxes. carefully even | +66248|470800|P|112420.14|1995-05-02|1-URGENT|Clerk#000001292|0|ully carefully furious r| +66249|228968|O|246229.48|1996-02-19|1-URGENT|Clerk#000002350|0|wake fluffily. ruthless accounts sleep furiously above the bli| +66250|749926|O|108884.88|1998-05-03|1-URGENT|Clerk#000004663|0|hins. carefully final theodolites cajole along | +66251|237148|F|97973.67|1993-08-05|5-LOW|Clerk#000001464|0|c theodolites use blithely alongside of the ironic ideas. blithely regu| +66252|226928|F|75478.20|1994-06-07|1-URGENT|Clerk#000002401|0|fts along the slyly express foxes sleep carefully above the silent pla| +66253|219718|O|160456.75|1997-06-07|3-MEDIUM|Clerk#000001457|0|olites; slyly blith| +66254|538027|O|32688.36|1995-11-15|3-MEDIUM|Clerk#000004871|0|posits sleep. slyly unusual pac| +66255|594532|F|125914.34|1992-07-19|4-NOT SPECIFIED|Clerk#000001487|0|n furiously. regula| +66280|19394|F|163348.91|1992-09-15|4-NOT SPECIFIED|Clerk#000000036|0|al frays are fluffily around the unusual d| +66281|439534|P|116152.24|1995-03-28|5-LOW|Clerk#000004054|0|ructions after the regular packages nag around the sile| +66282|487868|O|148669.29|1996-12-23|4-NOT SPECIFIED|Clerk#000001221|0|regular platelets nag blithely after the express instruction| +66283|581075|F|164915.34|1993-12-17|3-MEDIUM|Clerk#000004587|0|t carefully platelets: quickly even foxes sleep| +66284|372679|O|177960.90|1997-05-25|4-NOT SPECIFIED|Clerk#000000376|0|lar instructions sleep dinos. blithely final foxes ar| +66285|334154|O|68208.44|1996-06-24|3-MEDIUM|Clerk#000000997|0|hely special deposits. foxes among the final, special i| +66286|123475|F|292062.82|1992-02-12|1-URGENT|Clerk#000002425|0| regular theodolites use fluffily. furiously bold packages slee| +66287|720458|O|108497.02|1997-02-09|1-URGENT|Clerk#000003625|0|ar excuses. carefully express packages bo| +66312|737461|O|256004.21|1995-11-17|1-URGENT|Clerk#000000660|0|sits. fluffily even deposits haggl| +66313|747397|F|225822.92|1993-06-14|1-URGENT|Clerk#000001827|0|l requests alongside of th| +66314|488929|P|294525.96|1995-06-03|2-HIGH|Clerk#000001119|0|thely silent requests sleep slyly unusual dependencies. | +66315|424324|O|179424.87|1995-11-04|1-URGENT|Clerk#000000151|0| waters. furiously p| +66316|580297|F|123099.51|1993-07-02|3-MEDIUM|Clerk#000000113|0|y ironic platelets are closel| +66317|29864|F|135633.30|1994-09-09|3-MEDIUM|Clerk#000003743|0|ickly special deposits. final, ironic platelets haggle quietly. quickly i| +66318|170107|O|178096.25|1997-08-22|3-MEDIUM|Clerk#000002678|0|s haggle among the slyly unusual ideas. unusual packages wake blithely. | +66319|735019|O|148945.56|1996-04-27|2-HIGH|Clerk#000001991|0|aggle. express, special requests about the accounts affix blithely| +66344|213601|O|246141.07|1997-02-25|2-HIGH|Clerk#000004234|0|nto beans nag carefully around th| +66345|465130|F|158011.78|1993-01-06|2-HIGH|Clerk#000004402|0|ular platelets boos| +66346|180257|F|9069.59|1992-02-24|3-MEDIUM|Clerk#000000718|0| sleep furiously about the theodo| +66347|318257|O|87940.25|1995-08-16|4-NOT SPECIFIED|Clerk#000000223|0|t quickly even asym| +66348|681110|F|36059.15|1995-01-30|3-MEDIUM|Clerk#000001047|0|e the theodolites; furiously even theodolites against the pending depen| +66349|160184|O|169425.03|1996-01-31|5-LOW|Clerk#000000802|0|fully final packages nag slyly quick| +66350|453643|F|38675.03|1994-09-30|4-NOT SPECIFIED|Clerk#000002720|0|essly unusual foxes wake fluffily even deposits; | +66351|613778|O|147050.20|1996-08-18|3-MEDIUM|Clerk#000004545|0|unusual accounts haggle along the blit| +66376|262169|O|4532.52|1997-01-13|1-URGENT|Clerk#000002124|0|ronic ideas wake furiously among the deposits. slyly regular p| +66377|18694|O|161435.06|1997-05-03|4-NOT SPECIFIED|Clerk#000001402|0|es. blithely pending theodolites sleep carefully furiously special dep| +66378|677065|O|219407.82|1996-01-11|1-URGENT|Clerk#000003004|0|ronic instructions. blithely final platelets haggle. sl| +66379|413009|F|112494.28|1994-09-18|1-URGENT|Clerk#000003195|0|aids wake quickly across the blithel| +66380|185399|F|201054.83|1994-08-07|5-LOW|Clerk#000002830|0|he carefully stealthy warthogs. de| +66381|497206|O|142374.38|1996-09-28|1-URGENT|Clerk#000000194|0|ding dependencies haggle alongside of the e| +66382|35566|F|148373.36|1993-07-26|1-URGENT|Clerk#000002859|0| furiously even packages sleep furiously across the deposits. slyly | +66383|731485|F|99586.71|1994-01-12|1-URGENT|Clerk#000002129|0|ts nag carefully in place of the pinto beans. bold instruc| +66408|49501|F|40746.35|1993-08-18|4-NOT SPECIFIED|Clerk#000001952|0|lyly bold requests. silent requests haggle blithely | +66409|196267|F|66328.26|1994-06-04|5-LOW|Clerk#000003621|0|furiously ironic theodolites. pinto beans use against th| +66410|158767|O|58349.58|1996-08-08|5-LOW|Clerk#000002304|0|e express pinto beans | +66411|614219|O|63374.26|1998-03-05|4-NOT SPECIFIED|Clerk#000003662|0| requests use. regular, expres| +66412|164005|O|86555.99|1995-08-28|5-LOW|Clerk#000002883|0|ickly. quickly sly excuses play among the blithe pin| +66413|171058|F|51980.46|1993-05-26|5-LOW|Clerk#000004156|0| theodolites. carefully express deposits are furiously expr| +66414|194162|F|201431.73|1994-06-16|1-URGENT|Clerk#000000418|0|refully inside the | +66415|27176|F|30822.01|1993-12-26|2-HIGH|Clerk#000001806|0|nding, regular asymptotes. patterns play along the close, special deposits! un| +66440|746785|O|95185.85|1995-09-29|3-MEDIUM|Clerk#000002254|0| orbits. furiously pending p| +66441|711431|F|378238.44|1992-08-12|5-LOW|Clerk#000002309|0|y sly excuses. carefully ironic accounts according to | +66442|513617|F|27154.30|1992-04-16|5-LOW|Clerk#000003366|0|eposits are above the pending, ironi| +66443|610651|F|96640.42|1993-12-12|4-NOT SPECIFIED|Clerk#000002663|0|ptotes haggle slyly. | +66444|201100|O|234268.27|1997-12-05|2-HIGH|Clerk#000001426|0|egular ideas. blithely pending th| +66445|360761|O|53264.05|1995-09-30|1-URGENT|Clerk#000002121|0|ely pending pinto beans. permanently even packages are slyly | +66446|299564|F|199987.39|1993-01-16|3-MEDIUM|Clerk#000004335|0| blithely unusual instructions. final, ironic excuses sleep fluffily e| +66447|14600|O|4228.37|1998-05-25|4-NOT SPECIFIED|Clerk#000004176|0|ording to the regular package| +66472|125884|F|208192.34|1994-10-20|1-URGENT|Clerk#000001092|0|s haggle blithely. blithely even dugouts | +66473|702022|O|219827.53|1996-05-02|2-HIGH|Clerk#000002009|0|hless, pending requests n| +66474|606275|F|390221.41|1993-09-27|2-HIGH|Clerk#000002639|0|ent platelets cajole carefully bold ideas-- carefully express accounts ab| +66475|163225|F|202338.11|1994-02-14|4-NOT SPECIFIED|Clerk#000001919|0|efully thin accounts sleep sly| +66476|553673|F|75933.78|1993-08-19|5-LOW|Clerk#000003783|0| fluffily blithely daring requests. pending accounts along| +66477|317230|F|36694.88|1992-05-16|4-NOT SPECIFIED|Clerk#000001251|0|pinto beans shall have to serve furiously platelets.| +66478|665813|F|82205.74|1993-01-01|2-HIGH|Clerk#000000190|0|s the slyly regular packages. carefully reg| +66479|307837|F|177933.70|1993-03-16|5-LOW|Clerk#000004503|0| haggle slyly across the flu| +66504|316358|O|215935.12|1996-10-28|3-MEDIUM|Clerk#000001904|0| accounts use across the special, | +66505|274112|O|108239.08|1996-04-11|2-HIGH|Clerk#000000299|0|osits haggle blithely above the | +66506|493406|O|236515.33|1998-05-28|2-HIGH|Clerk#000002381|0|luffily regular requests wake fluffily. deposits around the special idea| +66507|662108|F|164951.89|1993-12-22|5-LOW|Clerk#000002343|0| final deposits sleep. f| +66508|289583|F|36637.07|1994-01-08|3-MEDIUM|Clerk#000002740|0|sly ironic requests abov| +66509|254996|O|93376.65|1997-03-08|2-HIGH|Clerk#000003542|0|ns haggle quickly slyly regular sent| +66510|203500|F|57477.89|1995-04-16|1-URGENT|Clerk#000004191|0|l patterns sleep blithely slyly express | +66511|195332|F|190237.13|1992-07-21|1-URGENT|Clerk#000000810|0|etimes ironic accounts! | +66536|191411|O|112608.25|1996-04-03|4-NOT SPECIFIED|Clerk#000001099|0|depths. quickly final accounts wake fluffily accor| +66537|279070|F|171947.57|1994-06-06|3-MEDIUM|Clerk#000000556|0|ously final ideas sleep furiously after the ironic, ironic dep| +66538|553174|F|331008.49|1993-03-10|2-HIGH|Clerk#000001340|0|y silent instructions. idly ironic packages across the blithely| +66539|177058|F|250016.43|1994-12-29|4-NOT SPECIFIED|Clerk#000001219|0|ncies among the deposits are above the final, pending | +66540|559834|O|156491.41|1995-06-22|2-HIGH|Clerk#000001749|0|unts. quickly final accounts among the| +66541|372739|F|227625.50|1993-10-15|3-MEDIUM|Clerk#000004521|0|counts are slyly after| +66542|602245|O|120405.62|1996-11-02|4-NOT SPECIFIED|Clerk#000000740|0|ily against the regular, pen| +66543|650876|F|78461.58|1993-08-09|2-HIGH|Clerk#000002149|0|ve packages haggle across the regular foxes. even, pending requests are furio| +66568|510994|O|60217.12|1997-07-08|5-LOW|Clerk#000000203|0|ilent packages wake. unusual, quiet requests are slyly among the silent pa| +66569|10547|F|55379.48|1992-11-19|4-NOT SPECIFIED|Clerk#000004043|0|es-- furiously final excuses use carefully furiously even dependencies. blithe| +66570|257092|O|111744.45|1996-06-25|4-NOT SPECIFIED|Clerk#000000380|0|thely even tithes above the quickly final waters are after the | +66571|185203|O|233606.12|1995-09-15|5-LOW|Clerk#000001780|0|uffily regular theodolites. | +66572|199700|F|136489.62|1994-03-17|2-HIGH|Clerk#000004516|0|s impress quickly. even account| +66573|107558|O|83982.58|1997-10-06|3-MEDIUM|Clerk#000002946|0| instructions nag slyly carefully final pinto beans. slyly silent fo| +66574|213169|F|242038.93|1994-09-04|3-MEDIUM|Clerk#000002304|0|accounts? carefully final deposits boost thinly. carefully regular de| +66575|728129|O|228555.11|1996-05-28|3-MEDIUM|Clerk#000002285|0|o the pending theodolites nag fluffil| +66600|661019|F|269825.74|1995-01-06|5-LOW|Clerk#000003508|0|g the quickly final requests. slyly express acco| +66601|732652|F|6558.71|1993-11-17|2-HIGH|Clerk#000000363|0|arefully regular deposits. carefully bold | +66602|176696|O|41624.35|1996-06-09|3-MEDIUM|Clerk#000003202|0| accounts are. slyly final attainments cajole about the blithely| +66603|475969|F|279035.07|1993-10-14|1-URGENT|Clerk#000001107|0|slyly final theodolites sleep fluffily slyly e| +66604|98321|O|396023.65|1995-07-29|4-NOT SPECIFIED|Clerk#000003147|0|even excuses. slyly ironic asymptotes haggle fluffily against the slyly final| +66605|215911|F|128652.92|1993-02-09|5-LOW|Clerk#000000728|0|ons. fluffily bold asymptotes| +66606|292237|F|242441.34|1992-05-15|5-LOW|Clerk#000001995|0|nts. express, pending waters serve until the sl| +66607|618347|F|237934.16|1994-12-12|5-LOW|Clerk#000003721|0|t carefully idle ideas. slyly pending | +66632|547000|F|265743.62|1992-08-26|2-HIGH|Clerk#000002281|0| carefully special req| +66633|651217|O|101121.77|1995-07-16|3-MEDIUM|Clerk#000002141|0|side of the slyly pending accounts. s| +66634|222938|F|37998.56|1992-11-22|5-LOW|Clerk#000002590|0|g accounts. accounts around the care| +66635|661966|F|13290.97|1992-08-15|1-URGENT|Clerk#000004995|0|al foxes nag enticing| +66636|145108|O|126478.26|1997-01-07|3-MEDIUM|Clerk#000001540|0|he furiously final dependencies detect f| +66637|551599|O|8411.95|1997-07-02|4-NOT SPECIFIED|Clerk#000001622|0|l theodolites cajole carefully. even, s| +66638|694075|O|113598.76|1997-03-25|4-NOT SPECIFIED|Clerk#000000686|0|elets. fluffily final packages about the slyly bold somas haggle quickly| +66639|552133|P|86152.42|1995-05-08|1-URGENT|Clerk#000001790|0|ounts. blithely ironic ac| +66664|688316|O|158281.49|1998-07-18|4-NOT SPECIFIED|Clerk#000002468|0|al accounts. slyly special forges grow blithely. final, special pin| +66665|520753|F|54913.26|1995-01-29|5-LOW|Clerk#000001914|0|nently ironic escapades haggle thinly carefully even deposits. bl| +66666|514604|F|124912.99|1994-11-03|5-LOW|Clerk#000002619|0|nal escapades. blithely ironic | +66667|686650|O|253023.04|1998-05-14|2-HIGH|Clerk#000000092|0|hins. blithely even platelets nod quickly acc| +66668|244292|F|189613.79|1993-03-01|4-NOT SPECIFIED|Clerk#000004206|0|as. fluffily regular patterns dazzle furiously among the bravely slow r| +66669|314899|P|177157.28|1995-04-03|1-URGENT|Clerk#000004615|0|efully special somas detect after the blithely express i| +66670|487511|O|139849.71|1997-12-08|5-LOW|Clerk#000001022|0|ep slyly slyly ironic requests. foxes haggle slyly permanently special pinto b| +66671|591697|O|36506.71|1995-04-05|4-NOT SPECIFIED|Clerk#000003764|0|posits sleep. silent pains cajole furiously. furiously even ideas| +66696|371092|F|71830.13|1994-06-13|3-MEDIUM|Clerk#000004761|0|ounts are along the quickly bold instructions. foxes w| +66697|681974|O|352184.78|1996-11-30|5-LOW|Clerk#000003663|0| haggle furiously along the slyly final foxes.| +66698|433216|O|137237.90|1997-10-30|2-HIGH|Clerk#000002960|0|lites. furiously bold accounts use slyly according to the carefully qu| +66699|43477|F|320013.49|1994-02-12|3-MEDIUM|Clerk#000002585|0|structions use-- ironic ideas maintain blith| +66700|213430|F|240569.84|1992-12-03|3-MEDIUM|Clerk#000003261|0| alongside of the slyly express deposit| +66701|599411|F|112843.38|1993-08-03|4-NOT SPECIFIED|Clerk#000002545|0|quests do boost above the ironi| +66702|290675|F|105634.71|1993-06-02|4-NOT SPECIFIED|Clerk#000003318|0|y blithely regular pin| +66703|612271|F|286737.49|1993-09-08|5-LOW|Clerk#000002555|0| carefully sly instructions need to cajole quickly after the slyly| +66728|431506|O|160354.06|1997-01-03|5-LOW|Clerk#000004737|0|ely final pinto beans. furiously ironic theodolites wake. slyly regul| +66729|542999|O|184623.50|1998-02-17|2-HIGH|Clerk#000003120|0| packages wake slyly regular ideas. ev| +66730|170059|F|48369.46|1994-09-20|3-MEDIUM|Clerk#000001951|0|ss accounts across the unusual packages h| +66731|663016|O|49883.55|1997-11-14|4-NOT SPECIFIED|Clerk#000002505|0|s regular foxes wake blithely silent theodolites. deposits wake pending excus| +66732|549712|F|190924.50|1994-10-30|2-HIGH|Clerk#000000895|0|slyly ruthless instructions use carefully regular requests. pendi| +66733|488140|O|58229.14|1997-02-06|3-MEDIUM|Clerk#000003533|0|efully regular packages cajole slyly blit| +66734|656902|F|230145.45|1994-11-16|4-NOT SPECIFIED|Clerk#000000634|0|, silent requests boost slyly alongside of the packages. s| +66735|525311|O|113062.76|1997-05-31|5-LOW|Clerk#000001530|0|side of the deposits. finally regular requests sl| +66760|647770|O|28558.42|1995-11-11|3-MEDIUM|Clerk#000002212|0|lyly special packages are requests; quickly bold| +66761|64144|O|23110.27|1996-12-04|1-URGENT|Clerk#000003162|0|egular pinto beans according to the carefully ironic instructions haggle | +66762|292430|O|64258.64|1996-01-16|2-HIGH|Clerk#000003725|0|d, ironic theodolites use slyly special, unusual packages; slyly pen| +66763|112273|O|67257.80|1997-06-27|5-LOW|Clerk#000000641|0|sits. enticingly ironic courts dete| +66764|717308|F|216944.13|1993-05-31|1-URGENT|Clerk#000000679|0|ngside of the fluffily express instructions! ironically unusual accounts sle| +66765|295495|F|143674.70|1995-01-23|3-MEDIUM|Clerk#000000075|0|ar requests. brave instructions nag bl| +66766|625507|O|138889.07|1995-08-12|2-HIGH|Clerk#000001367|0|kages. carefully special depo| +66767|122707|O|38004.94|1997-01-12|2-HIGH|Clerk#000001266|0|nt, express foxes sleep. final, express packages ca| +66792|576631|O|197714.53|1997-01-24|1-URGENT|Clerk#000000702|0| carefully bold notornis. furiously thin foxes cajole against the unusual requ| +66793|671677|F|248589.83|1992-09-12|2-HIGH|Clerk#000001279|0|always ironic deposits cajole. carefully regular requests cajole| +66794|624259|O|6582.09|1997-11-22|4-NOT SPECIFIED|Clerk#000004665|0|lent deposits sublate since the slyly ironic accounts. deposits ar| +66795|161675|O|25940.35|1996-11-22|4-NOT SPECIFIED|Clerk#000001760|0|iously express waters. furiously final pinto beans sleep | +66796|9004|O|246058.85|1996-03-24|1-URGENT|Clerk#000003713|0|ctions cajole quickly above the accounts. evenly car| +66797|550469|F|230312.84|1993-02-02|1-URGENT|Clerk#000002085|0|bout the slyly quick courts boost alongside of the silent deposits. d| +66798|468559|F|134031.65|1994-11-27|1-URGENT|Clerk#000001082|0|le slyly. furiously final accoun| +66799|62321|O|3235.05|1996-05-22|5-LOW|Clerk#000000484|0|as. final deposits believe quickly according to the busy, regular packa| +66824|426026|F|205979.33|1992-03-11|3-MEDIUM|Clerk#000004737|0| pending packages. permanent, unus| +66825|704258|F|18155.97|1995-04-09|2-HIGH|Clerk#000001252|0|ests. pinto beans haggle furiously special | +66826|699121|F|200267.80|1994-04-11|4-NOT SPECIFIED|Clerk#000004690|0| foxes boost carefully slyly unusual deposits.| +66827|618667|O|213634.51|1996-09-21|5-LOW|Clerk#000003311|0|eans. slyly ironic instructions sleep across the even accounts. pe| +66828|667276|F|45428.33|1993-09-22|5-LOW|Clerk#000002265|0| packages sleep blithely. carefully unusual accounts cajole carefully. | +66829|138955|F|1515.56|1994-09-10|5-LOW|Clerk#000002309|0|t the furiously ironic accounts. regular d| +66830|655007|O|77261.19|1996-11-05|4-NOT SPECIFIED|Clerk#000000290|0|nto beans. furiously regular ide| +66831|198202|F|278072.20|1994-05-29|2-HIGH|Clerk#000004256|0|iously even courts boost alongside of the regular, ironic pi| +66856|402964|O|192964.57|1996-11-26|3-MEDIUM|Clerk#000000660|0|ully among the slyly regular foxes. furiously bold reques| +66857|113935|F|114855.37|1995-02-17|4-NOT SPECIFIED|Clerk#000004376|0|sly even pinto beans. regular pinto beans cajole after the daring asymptotes| +66858|139456|F|147248.85|1993-11-28|3-MEDIUM|Clerk#000002169|0| packages are slyly ironic deposits. fluffily final pains haggle furious| +66859|76676|O|31206.24|1995-07-20|2-HIGH|Clerk#000002008|0|kages. slyly pending requests detect along the carefully ironic packages; slo| +66860|178009|O|98012.20|1995-12-07|2-HIGH|Clerk#000001305|0| the carefully bold instructions. slyly ironic requests use around the| +66861|21683|F|5117.17|1995-02-17|5-LOW|Clerk#000000716|0|carefully even foxes are. blithely regular pinto beans are quickly careful| +66862|665506|O|158324.79|1995-06-16|5-LOW|Clerk#000002471|0|he even requests boost blithely after the| +66863|384439|F|180350.09|1993-11-30|2-HIGH|Clerk#000002147|0|d the furiously busy accounts. pending sauternes wake furiously slyly bold so| +66888|10333|F|242158.08|1993-11-07|1-URGENT|Clerk#000002016|0| eat. slyly express theodolites are furiously. furiously even| +66889|410627|F|323260.64|1992-05-06|1-URGENT|Clerk#000001974|0|bout the fluffily even accounts cajole quickly about the carefully pending | +66890|645227|F|86093.99|1992-10-20|2-HIGH|Clerk#000000556|0|ajole quickly ironic pint| +66891|63683|O|231859.98|1997-01-06|2-HIGH|Clerk#000003537|0|ronic, thin braids along the quickly bold requests cajole careful| +66892|59797|O|217435.62|1997-03-27|3-MEDIUM|Clerk#000004645|0| packages. slyly final sheaves sleep carefully ironic accounts. s| +66893|2219|O|12582.82|1995-10-25|1-URGENT|Clerk#000004146|0|theodolites. packages are fluffily| +66894|530057|F|125464.24|1992-11-23|1-URGENT|Clerk#000004389|0| unusual, even excuses affix never accord| +66895|166202|F|277068.35|1993-07-29|4-NOT SPECIFIED|Clerk#000004826|0|otes. unusual deposits serve above the quickly regular dolphins. slyly| +66920|341296|O|325903.46|1995-10-24|1-URGENT|Clerk#000004727|0|s. foxes cajole against the carefully express accounts. pin| +66921|160553|O|229369.60|1998-02-16|4-NOT SPECIFIED|Clerk#000000704|0|hs. carefully final pinto beans sleep blithely regu| +66922|663784|O|85413.71|1996-10-15|5-LOW|Clerk#000001856|0|aggle slyly. fluffily final foxes haggle slyly furiously even asympt| +66923|717523|F|185636.25|1993-03-30|4-NOT SPECIFIED|Clerk#000003579|0|ke slyly permanently care| +66924|151475|F|22712.92|1992-01-27|4-NOT SPECIFIED|Clerk#000002172|0|sometimes according to the| +66925|332549|F|163462.27|1992-08-03|1-URGENT|Clerk#000004412|0|dolites haggle against the express requests; fluffily final accounts ha| +66926|135895|F|156977.24|1992-02-15|5-LOW|Clerk#000003778|0|its across the furiously bold packa| +66927|228289|F|27263.23|1995-03-04|4-NOT SPECIFIED|Clerk#000003755|0| furiously express accounts. ironic courts ca| +66952|594397|F|210123.05|1994-03-02|1-URGENT|Clerk#000004937|0|ests across the silent deposits cajole fluffily final courts: even| +66953|21962|F|40365.19|1993-09-21|3-MEDIUM|Clerk#000000689|0| the even requests. blithe asymptotes solve quickly against the s| +66954|100984|O|126483.84|1995-09-19|5-LOW|Clerk#000002942|0|lites. carefully ironic foxes sleep quickly carefully regular accounts. slyly | +66955|730138|F|20060.51|1993-02-28|4-NOT SPECIFIED|Clerk#000004339|0| ironic foxes. furiously express dolphins engage quickly ironic pinto beans.| +66956|671218|O|185833.90|1995-11-27|3-MEDIUM|Clerk#000003925|0|requests haggle fluffily after the slyly fin| +66957|383632|P|100960.19|1995-03-28|4-NOT SPECIFIED|Clerk#000003998|0|lets. quickly final ideas thrash carefully thinly ironic theodolites. d| +66958|685771|O|301298.57|1995-10-05|1-URGENT|Clerk#000000512|0|ounts integrate furiously regular theo| +66959|470915|F|129809.51|1994-12-29|1-URGENT|Clerk#000000219|0|. final pinto beans are carefully. fluff| +66984|660067|F|102698.31|1992-11-14|1-URGENT|Clerk#000004206|0|nooze quickly according to the bold, unusual instructions! bol| +66985|462616|F|199517.53|1993-01-04|5-LOW|Clerk#000004407|0|. pending, bold deposits kindle| +66986|683359|F|122975.96|1994-02-23|1-URGENT|Clerk#000002006|0|ns wake about the carefully unusual i| +66987|457105|F|101997.17|1994-10-24|1-URGENT|Clerk#000004456|0|counts. final ideas wake furiously among the slyly final pear| +66988|289795|F|103718.93|1992-06-06|5-LOW|Clerk#000000184|0| theodolites are. quickly final requests along the | +66989|75059|O|270464.10|1996-07-03|4-NOT SPECIFIED|Clerk#000003395|0|regular packages sleep slyly pending requests. regular, ev| +66990|748|O|13241.88|1997-02-27|3-MEDIUM|Clerk#000004007|0|sly bold Tiresias-- bold, s| +66991|546796|O|58335.76|1995-11-30|4-NOT SPECIFIED|Clerk#000001357|0|. even, express instructions wake carefully. slyly regular| +67016|232951|F|134129.74|1993-06-24|1-URGENT|Clerk#000003367|0|ickly special pinto beans. | +67017|199744|F|93689.00|1993-01-14|1-URGENT|Clerk#000001959|0|kly express multipliers affix with the slyly express instructions. furious| +67018|92431|O|139332.24|1996-03-15|4-NOT SPECIFIED|Clerk#000003064|0| above the furiously ironic deposits. special deposits | +67019|216863|O|41093.19|1997-05-28|1-URGENT|Clerk#000002455|0|al requests cajole. final dependencies ca| +67020|551068|O|137272.78|1996-03-30|3-MEDIUM|Clerk#000000202|0|y special orbits are blithely. express asymptotes w| +67021|32456|O|153957.92|1998-02-10|2-HIGH|Clerk#000004118|0|eodolites. carefully final theodolites ca| +67022|227944|O|15602.56|1997-02-10|4-NOT SPECIFIED|Clerk#000004245|0|ow blithely bold accounts. idle warhorses nag. c| +67023|37415|O|173684.09|1996-05-19|4-NOT SPECIFIED|Clerk#000000193|0| breach furiously near the ironic, unusual instructions. slyly | +67048|324298|P|136647.78|1995-05-02|5-LOW|Clerk#000002784|0|uriously busy dependencies integra| +67049|208640|F|321594.87|1994-03-24|5-LOW|Clerk#000004811|0|s requests. slyly sp| +67050|360529|F|126880.86|1995-02-19|3-MEDIUM|Clerk#000003964|0|counts are fluffily dogged dependencies. quickly regular foxes haggle above t| +67051|151087|F|112985.96|1994-02-18|5-LOW|Clerk#000003513|0| about the requests. | +67052|562918|F|135746.09|1992-02-02|5-LOW|Clerk#000002374|0|express instructions. even accounts are quickly according | +67053|436087|F|294682.39|1994-07-20|4-NOT SPECIFIED|Clerk#000000212|0|lyly against the even pinto beans? regular dependencies sleep care| +67054|304321|F|138278.22|1993-06-28|3-MEDIUM|Clerk#000000620|0|usly bold deposits. slyly special accounts shall | +67055|440401|O|211422.70|1996-05-20|4-NOT SPECIFIED|Clerk#000000426|0|ges are furiously depo| +67080|49111|O|232361.62|1995-07-23|5-LOW|Clerk#000004379|0|ages haggle permanently. ironic accounts sleep furiously; s| +67081|404161|O|222667.50|1995-10-19|4-NOT SPECIFIED|Clerk#000003446|0|ons cajole always express, special deposits. blith| +67082|715315|F|51122.92|1994-10-10|3-MEDIUM|Clerk#000001415|0|cial packages wake after the carefully silent| +67083|530665|F|355526.62|1993-10-31|3-MEDIUM|Clerk#000003150|0|old carefully blithely even ideas. slyly pending asymp| +67084|631492|F|41936.31|1992-08-21|4-NOT SPECIFIED|Clerk#000002396|0|es affix slyly amon| +67085|223892|O|278335.51|1998-01-09|1-URGENT|Clerk#000003126|0|. quickly special acco| +67086|201295|O|282280.20|1996-10-02|2-HIGH|Clerk#000004124|0|egular deposits haggle carefully. | +67087|661976|P|66247.46|1995-04-02|2-HIGH|Clerk#000004343|0|lar, regular ideas alongside of the slyly bold instructions sleep | +67112|326483|F|198917.96|1992-12-23|1-URGENT|Clerk#000000896|0|s wake quickly about the even deposits. carefully even pinto beans a| +67113|189838|F|81253.31|1992-02-23|3-MEDIUM|Clerk#000002867|0|about the enticingly careful theodolites c| +67114|97417|F|121269.40|1992-02-21|1-URGENT|Clerk#000001943|0|ly blithely unusual ideas. pending, regular asymptotes affix slyly. packa| +67115|18940|O|304798.59|1995-11-23|2-HIGH|Clerk#000002659|0|dependencies are quickly ruthlessly fi| +67116|319043|F|50224.53|1994-02-28|4-NOT SPECIFIED|Clerk#000001066|0|ag quickly. furiously fin| +67117|399895|F|298821.96|1993-07-23|4-NOT SPECIFIED|Clerk#000003705|0|totes wake quickly. furiously final somas affix. furiously | +67118|273586|F|105614.81|1993-09-09|2-HIGH|Clerk#000003356|0|usly regular excuses detect fluffily. regular requ| +67119|626462|O|23275.58|1995-10-27|5-LOW|Clerk#000000815|0|onic packages sleep. carefully ironic packages wake. furiou| +67144|438499|O|152243.79|1995-12-21|2-HIGH|Clerk#000001346|0|s after the quickly special foxes nag about the quickly silent accounts. ca| +67145|322762|F|85241.91|1992-03-14|4-NOT SPECIFIED|Clerk#000000572|0|ach. theodolites sleep carefully special theodolites. blithe| +67146|648157|O|116505.61|1996-10-20|3-MEDIUM|Clerk#000001441|0| ironic excuses haggle blithely blithely brave packages. idly expre| +67147|566119|O|121433.31|1996-02-04|2-HIGH|Clerk#000003926|0|unusual foxes believe. blithely final requests are furiou| +67148|242989|O|193043.53|1997-03-20|3-MEDIUM|Clerk#000004070|0| express, stealthy instructions | +67149|140636|O|25196.57|1996-06-30|2-HIGH|Clerk#000001396|0|dly slyly final requests. furiously silent packages affix quickly iron| +67150|406609|O|67225.25|1998-03-25|1-URGENT|Clerk#000000191|0|endencies across the furiously even frays wake fu| +67151|595459|F|233748.20|1993-07-07|3-MEDIUM|Clerk#000004838|0| are fluffily after the ideas: special depths sleep until the| +67176|600406|F|326867.72|1993-10-25|1-URGENT|Clerk#000001515|0| furiously silent deposits. carefully unusual decoys from the carefully| +67177|504877|O|61659.38|1996-07-14|5-LOW|Clerk#000001484|0|es integrate carefully ironic instructions. carefull| +67178|698381|F|147669.04|1993-09-07|4-NOT SPECIFIED|Clerk#000001901|0|e across the furiously bold requests. regular dugo| +67179|181126|O|70962.49|1998-04-26|2-HIGH|Clerk#000000072|0|es should have to are after the ironic instructions. carefully final ideas m| +67180|668963|F|233543.51|1994-06-30|3-MEDIUM|Clerk#000000456|0|requests mold special dependencies. ironic re| +67181|608|O|154219.94|1995-11-05|5-LOW|Clerk#000002938|0|pending, ironic requests aro| +67182|453757|F|196468.33|1992-03-04|2-HIGH|Clerk#000001392|0|g to the carefully even packages. slyly busy packages boo| +67183|278782|F|38832.43|1994-06-21|3-MEDIUM|Clerk#000003910|0|accounts wake evenly evenly silent pinto beans. blithely regular packages na| +67208|217399|F|139110.35|1994-12-11|3-MEDIUM|Clerk#000001176|0| even ideas. theodolites haggle across the | +67209|562561|O|313480.13|1997-06-28|4-NOT SPECIFIED|Clerk#000001712|0|ar dependencies sublate quickly bold accounts. regular depen| +67210|443245|F|42512.48|1993-09-18|5-LOW|Clerk#000002916|0| regular requests hang. ironic deposits after the fina| +67211|597263|O|232824.18|1996-10-02|3-MEDIUM|Clerk#000001125|0|slyly around the deposits. bold, even platelets haggle quickl| +67212|182866|F|263320.57|1993-06-03|2-HIGH|Clerk#000001145|0|. slyly final patterns haggle care| +67213|656170|O|142220.11|1995-10-22|5-LOW|Clerk#000003129|0|. blithely even theodolites h| +67214|227677|O|274869.96|1997-03-09|5-LOW|Clerk#000003566|0|foxes sleep. carefully regular deposits use: busily regular re| +67215|51844|F|111251.67|1993-10-05|3-MEDIUM|Clerk#000001079|0|t. regular, regular requests cajole boldly. evenly even | +67240|565438|F|113163.32|1994-03-07|2-HIGH|Clerk#000004876|0|romise slyly. platelets do affix closely ironic, ironic dolphins. even plat| +67241|35600|O|57871.79|1995-06-18|5-LOW|Clerk#000000844|0|mes bold deposits sleep fur| +67242|573181|O|72145.41|1997-12-26|3-MEDIUM|Clerk#000003413|0|sometimes according| +67243|450898|O|67334.91|1997-02-06|4-NOT SPECIFIED|Clerk#000004722|0|ld, even packages boost enticingly across the ac| +67244|225442|O|61620.82|1996-02-27|4-NOT SPECIFIED|Clerk#000002513|0|ss requests about the fluffily u| +67245|734689|F|96851.28|1992-01-20|3-MEDIUM|Clerk#000003567|0|onic ideas. quickly regular excuses are. | +67246|665669|F|137765.30|1992-06-15|4-NOT SPECIFIED|Clerk#000001919|0|ng to the finally regul| +67247|135370|O|153078.79|1997-04-03|2-HIGH|Clerk#000004768|0|are even, even request| +67272|385177|O|11081.03|1998-07-18|2-HIGH|Clerk#000000717|0|slyly ironic patterns haggle slyly around t| +67273|403352|F|319767.86|1994-09-21|5-LOW|Clerk#000001486|0|refully regular pinto beans. expr| +67274|623347|O|183913.91|1997-10-01|4-NOT SPECIFIED|Clerk#000003948|0| regular packages doze blithely across| +67275|583798|F|129660.41|1994-03-16|5-LOW|Clerk#000001007|0|lly. doggedly ironic packages wake fluffily expres| +67276|368996|F|65592.29|1993-01-20|1-URGENT|Clerk#000003129|0|en deposits. final requests wake along the quickly fina| +67277|699595|O|217492.23|1996-05-12|3-MEDIUM|Clerk#000003498|0|ecial accounts use. even accounts nag busily; blithely regular a| +67278|333713|O|139274.25|1997-07-01|1-URGENT|Clerk#000001676|0| above the ruthlessly special theodolites wake slyly furiously busy dependenc| +67279|206371|F|37154.89|1993-09-25|5-LOW|Clerk#000002986|0|ic ideas haggle above the orbits. carefully bold accounts m| +67304|470755|O|65760.74|1996-03-10|5-LOW|Clerk#000004470|0|pinto beans thrash fluff| +67305|223282|F|47070.97|1992-03-26|4-NOT SPECIFIED|Clerk#000001954|0|odolites hinder quickly across the package| +67306|421486|O|69100.95|1998-06-19|5-LOW|Clerk#000000838|0| by the regular foxes? furiously| +67307|131855|F|46017.47|1993-06-25|5-LOW|Clerk#000001595|0|inst the theodolites boost along the unusual deposit| +67308|575465|F|309153.58|1994-02-15|1-URGENT|Clerk#000000452|0|cross the even instructions snooze permanen| +67309|579959|F|113095.27|1993-07-02|2-HIGH|Clerk#000004290|0|y regular deposits are. furiously bold ideas cajole according to the f| +67310|355351|O|234862.44|1998-03-22|5-LOW|Clerk#000000465|0|e fluffily about the quickl| +67311|131045|O|55285.60|1997-04-05|5-LOW|Clerk#000001957|0|ic packages impress carefully according to the regu| +67336|468359|F|332349.21|1992-06-09|2-HIGH|Clerk#000004579|0|st furiously ironic package| +67337|456124|F|171139.02|1994-06-07|2-HIGH|Clerk#000002196|0|ggle ruthlessly sheaves. carefully regular instructions sleep. deposits| +67338|313261|F|53159.97|1994-05-08|1-URGENT|Clerk#000000911|0|ely special foxes. regular packages unwi| +67339|712730|F|79335.15|1994-07-28|1-URGENT|Clerk#000002255|0|requests affix blithely along the foxes. pend| +67340|595748|O|341703.23|1996-12-16|3-MEDIUM|Clerk#000002920|0|unts boost carefully ironic waters. ironic ideas haggl| +67341|228712|F|147442.63|1995-01-14|4-NOT SPECIFIED|Clerk#000004161|0| even dolphins wake quickly slyly pending theodolit| +67342|211484|F|197581.78|1993-04-23|3-MEDIUM|Clerk#000003488|0|uests. final pinto beans integrate along| +67343|152095|O|154959.18|1995-12-01|3-MEDIUM|Clerk#000001671|0|bout the blithely ironic foxes. blithely regular instructions wake after the| +67368|240743|F|197502.85|1992-02-12|3-MEDIUM|Clerk#000002274|0|tes sleep. carefully final deposits around the quickly even | +67369|661894|O|68961.80|1998-05-12|2-HIGH|Clerk#000002845|0| ironic requests haggle quickly. c| +67370|429013|F|127284.63|1992-02-19|3-MEDIUM|Clerk#000003131|0|heodolites are quickly pending pinto | +67371|651040|F|26346.14|1992-01-27|3-MEDIUM|Clerk#000003965|0|ress foxes are blithely beyond the permanent, speci| +67372|277789|F|305474.92|1994-09-01|5-LOW|Clerk#000000964|0|dolites are. quick requests sublate fluffily. furiously pe| +67373|45373|F|277519.83|1994-08-14|5-LOW|Clerk#000000865|0|. carefully special deposits would wake furiously special, final theod| +67374|550706|O|101104.76|1998-03-18|5-LOW|Clerk#000000843|0|ial accounts. quickly bold reques| +67375|711803|O|136505.03|1997-06-27|4-NOT SPECIFIED|Clerk#000003232|0|its. slyly even sauternes mold. ideas can cajole along| +67400|22198|O|151618.34|1996-08-11|1-URGENT|Clerk#000001207|0|ticingly ironic package| +67401|301768|F|139697.51|1993-11-05|2-HIGH|Clerk#000000487|0| final platelets are fur| +67402|281744|O|73581.37|1997-01-24|1-URGENT|Clerk#000003357|0|n warhorses. blithely final theodolites detect carefully final foxes| +67403|510283|O|374188.41|1996-05-22|1-URGENT|Clerk#000004286|0|er furiously. ironic gifts affix: daring ideas sleep quickly. qui| +67404|54827|F|3861.08|1994-12-23|2-HIGH|Clerk#000003553|0| the regular, ironic deposits. fluffily final instructions sle| +67405|468284|F|34669.70|1992-02-19|1-URGENT|Clerk#000002799|0| bold foxes boost blithely. quickly special ideas haggle blithely alon| +67406|694010|F|86379.28|1993-09-18|2-HIGH|Clerk#000003873|0|ound the deposits are carefully alongside of the quickly close| +67407|220510|F|1752.50|1994-11-16|1-URGENT|Clerk#000001615|0|ently regular requests are slyly. quickly special requests across the| +67432|337150|F|120774.31|1992-10-04|3-MEDIUM|Clerk#000004466|0|riously against the fluffily special accounts. flu| +67433|226211|O|232544.00|1997-12-16|5-LOW|Clerk#000000985|0| nod against the regular ideas. ironic asymptotes about the unusual pin| +67434|169747|O|188565.34|1996-01-05|1-URGENT|Clerk#000000740|0|uickly silent accounts boost ironic, ironic deposits. slyly unusual pa| +67435|672520|F|149669.70|1992-12-06|3-MEDIUM|Clerk#000004167|0|uickly express requests! even theodolites cajole. furiously r| +67436|537344|F|69245.28|1992-11-17|4-NOT SPECIFIED|Clerk#000002729|0|nic courts! platele| +67437|381326|F|4896.15|1992-12-09|4-NOT SPECIFIED|Clerk#000000635|0|ly pending excuses doze blithel| +67438|186478|O|51380.85|1997-03-03|2-HIGH|Clerk#000001747|0|ld dependencies nag fluffily. unusual ideas are after the platelets. qui| +67439|630169|F|146006.89|1992-11-30|3-MEDIUM|Clerk#000000824|0|cally final deposits. furiously ironic ideas haggle permanentl| +67464|476141|F|212984.16|1994-04-05|1-URGENT|Clerk#000000118|0|hely ironic pinto beans nag. regular deposits around the| +67465|736111|O|172852.55|1998-04-24|3-MEDIUM|Clerk#000001595|0| regular packages. slyly bold d| +67466|542056|O|142055.01|1995-07-29|3-MEDIUM|Clerk#000000903|0|tes. packages alongsi| +67467|55231|O|176392.64|1997-08-23|3-MEDIUM|Clerk#000001389|0|uches. bold, ironic accounts haggle blithely above the blithely | +67468|511324|F|107953.30|1992-06-16|1-URGENT|Clerk#000003780|0|requests. quickly regular deposits haggle slyly final p| +67469|317794|O|41957.10|1996-10-31|5-LOW|Clerk#000001896|0| ironic, even deposits cajole doggedly above the final,| +67470|399706|O|139542.68|1997-09-16|2-HIGH|Clerk#000004594|0|inal instructions do| +67471|89518|F|120917.93|1993-07-22|2-HIGH|Clerk#000001762|0|luffily final accounts to the final pinto beans boost along the requests: blit| +67496|22925|O|287573.23|1996-09-13|4-NOT SPECIFIED|Clerk#000004444|0| furiously at the closely ironic requests.| +67497|541525|O|334261.91|1998-06-03|2-HIGH|Clerk#000004172|0|t slyly along the express, regular platelets. brave, pending mult| +67498|155728|F|175836.99|1995-02-16|2-HIGH|Clerk#000004737|0|ly. furiously even instr| +67499|557632|P|187158.92|1995-04-16|1-URGENT|Clerk#000002248|0|ecial pinto beans. carefully even platel| +67500|93931|F|65097.67|1994-07-16|5-LOW|Clerk#000003887|0|nag slyly. final, special dependencies use quickly among the requests.| +67501|693655|O|111959.02|1996-09-04|2-HIGH|Clerk#000001607|0|ackages promise above th| +67502|257239|O|151904.44|1998-05-09|5-LOW|Clerk#000002355|0|nusual theodolites! blithely express realms haggle blithely. bold pac| +67503|395626|O|272328.49|1998-04-16|4-NOT SPECIFIED|Clerk#000001964|0|metimes ironic asymptotes believe across the frays. requests| +67528|523387|O|28982.40|1997-04-18|3-MEDIUM|Clerk#000001798|0|arefully regular accounts about the blithely unusual frets are slyly even | +67529|536329|O|210788.91|1998-07-16|4-NOT SPECIFIED|Clerk#000002072|0|lar accounts sleep. si| +67530|557044|F|87936.09|1993-07-31|5-LOW|Clerk#000002860|0|en accounts haggle! carefully final packages from the care| +67531|711158|O|359667.44|1998-01-25|1-URGENT|Clerk#000004896|0|ently pending accounts above the quickly even excu| +67532|424180|O|270549.13|1996-06-23|1-URGENT|Clerk#000001257|0|pending packages. express deposits above the carefully iro| +67533|430919|F|14406.25|1992-08-24|4-NOT SPECIFIED|Clerk#000003693|0|efully against the fluffily ironic packages. blithely fi| +67534|450926|O|166536.56|1996-11-16|4-NOT SPECIFIED|Clerk#000001798|0|s. even deposits wake after the carefully regular p| +67535|712850|O|87207.05|1996-01-03|2-HIGH|Clerk#000003537|0| blithely ironic pinto beans sleep carefully among the quick| +67560|362176|O|262085.49|1997-05-29|4-NOT SPECIFIED|Clerk#000000530|0| even accounts. unusual packa| +67561|65023|O|184062.03|1996-01-17|2-HIGH|Clerk#000001863|0|ronic, bold platelets wake| +67562|83623|O|200632.88|1995-07-09|3-MEDIUM|Clerk#000000459|0| the slyly even depths. quickly even excuses cajol| +67563|679996|F|50700.38|1993-01-13|1-URGENT|Clerk#000001051|0|lites above the pac| +67564|188818|O|273702.12|1996-02-29|4-NOT SPECIFIED|Clerk#000003408|0|requests. furiously unusual| +67565|206194|F|98119.72|1993-09-12|1-URGENT|Clerk#000004660|0|riously special requests eat quickly. ironic| +67566|500918|F|135355.86|1994-08-01|1-URGENT|Clerk#000004309|0|egular deposits. fluffily regular foxes along the bold,| +67567|170734|F|213139.34|1992-08-24|2-HIGH|Clerk#000000658|0|de of the slyly silent dependencies boost fluffily after t| +67592|20095|O|75351.90|1997-10-24|3-MEDIUM|Clerk#000003045|0|refully for the bold accounts. quickly final asymptot| +67593|230219|O|32654.91|1997-07-06|2-HIGH|Clerk#000002750|0| ideas wake blithely. packages haggle fu| +67594|39337|F|4591.46|1994-01-11|5-LOW|Clerk#000001018|0|arefully even deposits shall have to wake: carefully thin d| +67595|372839|F|278008.25|1992-06-10|1-URGENT|Clerk#000003388|0|ts. slyly even packages haggle furiously deposits. ironic requ| +67596|46537|F|57000.20|1993-07-11|3-MEDIUM|Clerk#000003951|0|efully silent requests nod furiously; perma| +67597|641827|O|270875.82|1996-10-09|3-MEDIUM|Clerk#000003374|0|y unusual courts hang carefully carefully ironic deposits. | +67598|668071|O|114219.51|1998-05-22|3-MEDIUM|Clerk#000000710|0|iously bold deposits: slyly pending p| +67599|749020|O|48545.22|1995-07-10|1-URGENT|Clerk#000001352|0|to beans sleep carefully alongside of the| +67624|5675|O|236534.98|1996-07-06|5-LOW|Clerk#000003940|0|uctions after the quickly special pin| +67625|119395|O|181722.65|1997-11-20|2-HIGH|Clerk#000004124|0| accounts cajole fluffily above the regular, express packages. th| +67626|415204|O|111637.15|1995-12-11|5-LOW|Clerk#000002983|0|ronic pinto beans integrate furiously pending theodol| +67627|305506|O|177749.08|1996-03-23|4-NOT SPECIFIED|Clerk#000000397|0|th the ironic, express in| +67628|115411|F|212540.06|1995-02-15|3-MEDIUM|Clerk#000002646|0|to beans haggle. carefully ironic deposits are. carefully express | +67629|203380|O|176989.21|1996-10-24|4-NOT SPECIFIED|Clerk#000000326|0|ent packages against the packages affix furiously among the furious| +67630|454141|F|227924.69|1993-12-08|5-LOW|Clerk#000004036|0|e quickly about the pending requests. blithely final| +67631|715813|O|159991.59|1996-09-04|2-HIGH|Clerk#000001693|0|ial requests detect slyly. unusu| +67656|667391|F|101282.08|1992-01-04|4-NOT SPECIFIED|Clerk#000002427|0| foxes haggle fluffily final accounts! blithely fluffy instructions detec| +67657|577960|F|74998.02|1993-10-29|2-HIGH|Clerk#000002155|0|ts serve furiously besides the slyly express| +67658|503749|O|152157.75|1997-03-02|5-LOW|Clerk#000003798|0|totes engage slyly fluffily silent ideas. quickly silent requests among t| +67659|494689|F|127665.16|1993-03-31|5-LOW|Clerk#000003817|0|er the silent, silent requests would are quickl| +67660|484436|F|44242.74|1992-09-30|3-MEDIUM|Clerk#000003774|0| kindle after the deposits. final r| +67661|662113|F|202685.37|1993-11-24|4-NOT SPECIFIED|Clerk#000002532|0|to beans use slyly express requests. pending reques| +67662|380006|F|53075.29|1994-03-28|2-HIGH|Clerk#000001628|0|s eat even accounts. carefully final deposits engage: bold deposits sleep | +67663|509716|F|192229.69|1993-04-21|1-URGENT|Clerk#000003699|0|ajole according to the carefully express packages. fluffily silent asympto| +67688|278491|P|89620.12|1995-05-01|2-HIGH|Clerk#000000264|0|ckly regular requests haggle slyly within the final accounts. | +67689|574294|F|281352.39|1992-11-29|2-HIGH|Clerk#000004032|0|ole permanently bold ideas. un| +67690|400880|O|259663.63|1995-10-18|3-MEDIUM|Clerk#000003580|0|eposits. slyly final requests sleep bus| +67691|328768|F|95186.58|1992-08-23|4-NOT SPECIFIED|Clerk#000000507|0|pendencies are blithely. bold instructions cajole quickly according to th| +67692|344908|F|167572.73|1993-11-30|3-MEDIUM|Clerk#000004921|0|ptotes grow stealthily slyly | +67693|110281|F|88330.25|1995-03-16|2-HIGH|Clerk#000001888|0|never express deposits sleep slowly blithely sly platelets| +67694|230683|F|42543.73|1993-04-18|3-MEDIUM|Clerk#000000920|0|ly among the carefully| +67695|330785|F|180837.56|1992-12-20|3-MEDIUM|Clerk#000002743|0|s. slyly ironic accounts sleep even waters. even patter| +67720|489371|O|34521.15|1998-01-11|2-HIGH|Clerk#000000179|0|furiously brave, final decoys. fur| +67721|357785|O|105388.52|1997-06-21|5-LOW|Clerk#000002871|0|ges. express accounts haggle. express, bold| +67722|526861|F|19565.65|1992-05-21|2-HIGH|Clerk#000002925|0|uffily even accounts. quickly sp| +67723|448069|F|125478.64|1992-11-08|5-LOW|Clerk#000002236|0|o beans integrate b| +67724|689458|O|156180.58|1998-07-12|3-MEDIUM|Clerk#000000524|0|s. slow packages ki| +67725|208813|F|170137.21|1992-10-12|4-NOT SPECIFIED|Clerk#000004132|0|beans boost. permanent packages cajole. quickly final accounts | +67726|241897|O|284825.22|1998-05-30|2-HIGH|Clerk#000000087|0|ironic deposits. blithely even pinto | +67727|550477|O|225917.57|1997-04-06|4-NOT SPECIFIED|Clerk#000001596|0|pecial packages. furiously regular platelets are according to the dogge| +67752|601744|O|125016.11|1996-08-06|5-LOW|Clerk#000001803|0|nic ideas boost about the special accounts. blithely regular packages cajole| +67753|506632|O|36173.13|1998-02-04|4-NOT SPECIFIED|Clerk#000000707|0|tect furiously at the theodolites. furiously p| +67754|189596|F|273514.78|1993-10-05|5-LOW|Clerk#000001029|0| boost fluffily. fluffily final deposits | +67755|532879|O|114272.42|1998-04-01|5-LOW|Clerk#000002364|0|ests cajole. slyly express requests ought | +67756|315584|F|4027.91|1995-03-07|3-MEDIUM|Clerk#000001540|0|ffily regular courts about the ironic,| +67757|6620|F|117746.37|1994-12-22|1-URGENT|Clerk#000000587|0|xpress requests after the ironic, busy somas are blithely| +67758|249032|O|239345.03|1997-09-22|2-HIGH|Clerk#000004663|0|ideas. slyly final accounts across the even braids try to wake fluffil| +67759|469274|F|64502.26|1993-08-04|3-MEDIUM|Clerk#000002968|0| to the slyly bold notornis. pending a| +67784|81595|O|274701.01|1997-05-04|1-URGENT|Clerk#000002126|0|ven foxes can unwind by the slyly express accounts. slyly pending a| +67785|334558|O|229102.63|1998-04-14|2-HIGH|Clerk#000000795|0|ng deposits can are blithel| +67786|149569|O|296891.73|1997-02-03|4-NOT SPECIFIED|Clerk#000001147|0|fluffily regular attainments use blithely across the finally even| +67787|532046|O|384073.93|1997-05-26|1-URGENT|Clerk#000001401|0| requests sleep carefully even pinto beans. furiou| +67788|592234|F|44736.62|1994-07-28|2-HIGH|Clerk#000004285|0|nusual escapades. carefully regular instructions impres| +67789|407566|F|234631.43|1995-02-15|3-MEDIUM|Clerk#000001795|0|quiet, special asymptotes. always even notornis boost f| +67790|211382|F|285559.67|1993-03-28|3-MEDIUM|Clerk#000002922|0|fully. unusual, ironic orbits snooze furiously along the qu| +67791|694723|F|190822.23|1994-03-29|1-URGENT|Clerk#000004219|0|anently special accoun| +67816|200149|F|357011.43|1993-08-10|1-URGENT|Clerk#000004228|0|posits. regular foxes wake furiously. unusual deposits inte| +67817|138323|O|249935.81|1996-01-27|4-NOT SPECIFIED|Clerk#000000581|0| the carefully unusual platelets are carefully among the furiously sp| +67818|536170|F|157538.31|1995-01-19|1-URGENT|Clerk#000002505|0|onic instructions are fluffily slyly | +67819|148405|O|345689.97|1997-06-23|3-MEDIUM|Clerk#000000378|0|sits are. slyly special deposits lose busily. pending, r| +67820|462797|P|279862.90|1995-05-08|4-NOT SPECIFIED|Clerk#000002308|0|ously regular packages. silently ironic deposits wake car| +67821|718315|O|51699.69|1995-08-14|4-NOT SPECIFIED|Clerk#000002342|0|ular theodolites alongside o| +67822|719818|F|214952.84|1992-09-21|5-LOW|Clerk#000001824|0|r packages. theodolites according to the| +67823|455269|F|275153.34|1994-01-11|3-MEDIUM|Clerk#000004659|0|ns haggle; final, special asymptotes nag | +67848|175117|F|191218.49|1993-10-12|4-NOT SPECIFIED|Clerk#000004011|0|uriously ironic deposits doubt quickly pac| +67849|176674|O|170741.92|1995-11-12|5-LOW|Clerk#000001724|0|ges wake blithely against th| +67850|103825|O|316079.28|1996-07-14|4-NOT SPECIFIED|Clerk#000003740|0| special requests. carefully unusual dependencies must | +67851|476494|F|82491.37|1994-04-28|2-HIGH|Clerk#000000222|0|bold instructions; enticingly ironic deposits are s| +67852|682840|F|235838.48|1994-04-20|2-HIGH|Clerk#000000140|0|s. final platelets across the special, express accounts integrate fu| +67853|728464|F|68254.96|1994-04-28|2-HIGH|Clerk#000002705|0|sts detect. slyly regular requests wake. quickly final instructi| +67854|286208|F|160988.47|1993-06-29|5-LOW|Clerk#000001873|0|ar somas haggle fur| +67855|537689|O|345362.91|1996-08-09|3-MEDIUM|Clerk#000002344|0|above the blithely regular theodolites. ruthlessly ironic ideas| +67880|179716|F|227657.43|1992-10-29|3-MEDIUM|Clerk#000004334|0|ly silent packages. carefully regular accounts nag caref| +67881|205651|O|283411.65|1997-04-30|1-URGENT|Clerk#000003178|0|ests boost slyly quickly f| +67882|367868|F|131770.47|1992-12-17|4-NOT SPECIFIED|Clerk#000002092|0|s above the idle instructions nag regu| +67883|497905|F|173530.07|1992-06-07|5-LOW|Clerk#000002181|0|ts are always final instructions. blithely pendi| +67884|527813|F|134025.93|1993-07-24|2-HIGH|Clerk#000002849|0|nic warhorses. always regular deposits l| +67885|695584|F|108542.80|1994-05-21|5-LOW|Clerk#000003137|0|quests across the carefully even accounts haggle above the furiou| +67886|399925|F|2462.32|1994-08-05|1-URGENT|Clerk#000003870|0|. slowly regular packages snooze blithely carefully express packages.| +67887|34462|O|50399.63|1998-05-02|2-HIGH|Clerk#000003040|0|ld deposits are alongside of the idle frays. slowly final accounts are. reg| +67912|170005|O|163724.57|1997-08-24|4-NOT SPECIFIED|Clerk#000001237|0|l foxes affix slyly express packages. silent requests along the deposits wake| +67913|520411|O|51384.61|1997-12-29|5-LOW|Clerk#000003885|0|xpress ideas. blithely bold packages affix above the regular sheav| +67914|33436|F|1678.91|1994-09-21|1-URGENT|Clerk#000004936|0|l dolphins eat quickly. pending, ironic cour| +67915|195538|F|222779.26|1992-06-21|2-HIGH|Clerk#000003325|0|riously. ironic, regular gifts boost across the spec| +67916|650705|P|183877.16|1995-06-08|4-NOT SPECIFIED|Clerk#000000970|0|ructions nag blithely among the deposits. furiousl| +67917|639118|O|154679.72|1996-05-22|3-MEDIUM|Clerk#000001813|0|ndencies are blithely| +67918|133610|O|121402.17|1996-01-09|5-LOW|Clerk#000002516|0|arefully ironic requests wake slyly carefully regular p| +67919|78619|F|71579.41|1994-06-29|1-URGENT|Clerk#000002303|0|ymptotes sleep carefully after the furiously ironic id| +67944|592606|F|124692.50|1993-09-12|5-LOW|Clerk#000000618|0|ckly pending requests x-ray closely. regular, bold instructions up th| +67945|677891|F|316948.12|1993-11-29|4-NOT SPECIFIED|Clerk#000004446|0|ndencies wake carefully across the final instructions. requests haggle bli| +67946|57835|F|67228.01|1995-02-27|4-NOT SPECIFIED|Clerk#000002607|0|kly ironic excuses. blithely ironic deposits use slyl| +67947|55|F|116489.73|1993-07-29|1-URGENT|Clerk#000000040|0|ding ideas among the quickly pending requests are express frays| +67948|168856|O|63843.67|1997-09-10|3-MEDIUM|Clerk#000000939|0|ies-- slyly quick dinos print carefully beyond the daringly| +67949|694018|F|200497.21|1993-04-27|3-MEDIUM|Clerk#000000655|0|es kindle alongside of the quickly ironic accounts. quickly expre| +67950|342853|F|175533.20|1994-02-24|4-NOT SPECIFIED|Clerk#000004453|0|ide of the carefully iro| +67951|68740|O|193079.62|1997-06-06|5-LOW|Clerk#000002975|0|y about the furiously ironic platele| +67976|287509|F|108938.81|1992-08-31|4-NOT SPECIFIED|Clerk#000000421|0|quests. even deposits are. final deposits about the| +67977|653272|O|325858.64|1997-11-21|3-MEDIUM|Clerk#000003433|0|nts haggle. warhorses sleep quickly caref| +67978|273167|O|87463.44|1997-07-30|4-NOT SPECIFIED|Clerk#000001384|0|ely blithely regular excuses. blithely | +67979|362084|P|216485.81|1995-06-03|2-HIGH|Clerk#000003023|0|fully final depende| +67980|44528|F|33969.97|1994-10-25|5-LOW|Clerk#000003445|0|to the furiously close fo| +67981|619448|F|100233.57|1995-02-21|5-LOW|Clerk#000000404|0|efully unusual deposits. regular, unus| +67982|311408|O|349102.57|1996-07-18|4-NOT SPECIFIED|Clerk#000000338|0|thely blithe deposits. furiously final instr| +67983|329164|O|208265.75|1995-11-13|2-HIGH|Clerk#000001773|0|uickly silent deposits across the blithely | +68008|236461|O|78688.23|1995-12-15|2-HIGH|Clerk#000002532|0|s. carefully ironic deposits nag after the cl| +68009|688637|F|242058.79|1992-11-22|2-HIGH|Clerk#000004219|0|onically silent instructions according to| +68010|663263|F|247977.23|1993-10-29|1-URGENT|Clerk#000000203|0|lent theodolites use slyly. blithely pending frets ar| +68011|201199|O|125492.06|1998-01-12|2-HIGH|Clerk#000002408|0|carefully quickly special dep| +68012|543439|F|220351.12|1993-01-25|3-MEDIUM|Clerk#000000797|0|ackages. bold foxes thrash| +68013|55553|F|212464.37|1993-01-07|5-LOW|Clerk#000000148|0|ual packages sublate furiously across the furiously enticing depe| +68014|664477|F|128337.43|1993-05-30|3-MEDIUM|Clerk#000001799|0| regular accounts. | +68015|362896|O|20651.99|1995-04-10|5-LOW|Clerk#000001159|0|posits affix blithely bold accounts. asymptotes nag after the ir| +68040|190832|F|281109.48|1992-06-11|4-NOT SPECIFIED|Clerk#000000601|0| wake. unusual theodolites sleep furiously| +68041|300295|O|300525.53|1998-07-12|3-MEDIUM|Clerk#000002563|0|ravely bold platelets along the furiously final foxes | +68042|302755|O|93489.60|1998-06-05|2-HIGH|Clerk#000004887|0|ts. accounts alongside of the furiously ironic a| +68043|396664|O|11388.56|1997-09-19|2-HIGH|Clerk#000000800|0|ymptotes; platelets sleep pending | +68044|723781|F|230179.20|1994-04-01|3-MEDIUM|Clerk#000004034|0| even theodolites sleep quickly. furiously | +68045|323134|F|25861.71|1994-02-05|4-NOT SPECIFIED|Clerk#000001396|0|special frays snooze alongside of the fluffily ironic theodolites. s| +68046|138001|O|221552.61|1998-04-04|3-MEDIUM|Clerk#000003889|0|riously across the even requests. silently pe| +68047|355769|F|86318.71|1993-10-22|2-HIGH|Clerk#000001404|0|s sleep above the carefully final | +68072|404492|O|281896.48|1995-06-26|5-LOW|Clerk#000000217|0|es alongside of the regular packages are s| +68073|281741|O|59970.49|1995-04-22|1-URGENT|Clerk#000004292|0|posits boost carefully. asymptotes use carefully across th| +68074|467104|O|93189.82|1998-02-25|1-URGENT|Clerk#000000427|0|fully ironic ideas haggle carefully. closely careful deposits wake careful| +68075|360850|F|61049.55|1994-12-18|5-LOW|Clerk#000003808|0|xcuses haggle furiously carefully quick courts. accounts alo| +68076|293722|F|191816.66|1993-08-05|2-HIGH|Clerk#000001837|0| wake special courts. ironic ideas except the slyly special requests cajole| +68077|71233|O|185184.95|1997-02-27|5-LOW|Clerk#000003547|0|e quickly unusual pearls wake blithely | +68078|193660|O|65007.61|1997-12-04|3-MEDIUM|Clerk#000004376|0| pinto beans-- thinly regular requests use regular re| +68079|589319|F|222549.24|1993-12-18|3-MEDIUM|Clerk#000003762|0|lent ideas integrate furiously. furiously special ideas cajole qu| +68104|181063|F|199573.30|1993-07-07|2-HIGH|Clerk#000003458|0|al accounts wake carefully quickly ironic ideas. f| +68105|373105|F|101423.89|1992-09-17|1-URGENT|Clerk#000001290|0|s integrate fluffily quickly regular packag| +68106|744250|O|90485.38|1998-07-11|2-HIGH|Clerk#000001451|0|ss asymptotes nag. blithely final r| +68107|86638|O|289429.96|1997-01-22|2-HIGH|Clerk#000001241|0| the even foxes. blithely ironic in| +68108|350365|F|203346.44|1992-08-15|2-HIGH|Clerk#000000094|0|l theodolites cajole dogged m| +68109|316354|O|241567.16|1998-05-07|3-MEDIUM|Clerk#000001454|0|ual deposits. furiously final excuses are furiously afte| +68110|194354|O|172326.85|1995-07-31|1-URGENT|Clerk#000002101|0|quests poach accounts. slyly regular requests detect slyly among t| +68111|241807|O|49529.92|1998-07-08|2-HIGH|Clerk#000001960|0|sts affix slyly. quickly regular deposits dete| +68136|538270|O|244494.42|1995-12-07|1-URGENT|Clerk#000001755|0| carefully express foxes along the daringly r| +68137|186088|F|166631.42|1994-10-27|1-URGENT|Clerk#000004796|0|ly alongside of the fluffily ironic re| +68138|74080|O|20725.57|1997-04-02|1-URGENT|Clerk#000004482|0| ideas detect slyly theodolites. blithely final pearls cajole. braids a| +68139|40432|F|235072.37|1992-02-06|5-LOW|Clerk#000002260|0|g the blithely pending theodolites wake pending foxes. | +68140|13648|F|121003.79|1992-08-16|5-LOW|Clerk#000002292|0|ss deposits haggle. furiously iron| +68141|631081|O|266730.06|1995-10-07|5-LOW|Clerk#000000971|0|counts haggle against the final ideas. pinto beans solve| +68142|69397|O|233626.15|1995-06-22|2-HIGH|Clerk#000004107|0|ackages along the bold deposits wake stealthily fin| +68143|97871|F|159238.27|1994-07-22|1-URGENT|Clerk#000004831|0|blithely silent asym| +68168|157387|F|49145.29|1995-04-29|3-MEDIUM|Clerk#000004149|0|he dogged deposits. carefully special deposits ab| +68169|687586|O|11242.57|1996-08-28|5-LOW|Clerk#000000163|0| deposits. furiously even accounts haggle across the fina| +68170|254896|O|138785.12|1996-11-10|3-MEDIUM|Clerk#000002146|0|onic theodolites sleep furiously slow braids. furiously| +68171|27865|O|42656.63|1995-05-19|4-NOT SPECIFIED|Clerk#000003257|0|y ironic requests. carefully special patterns are carefully even a| +68172|323353|O|300410.41|1998-04-03|4-NOT SPECIFIED|Clerk#000004074|0|ress, ironic accounts are quickly after the fur| +68173|86323|O|220889.48|1998-02-07|4-NOT SPECIFIED|Clerk#000003283|0|ss theodolites affix blithely express, bold packa| +68174|327175|O|116797.22|1998-04-07|5-LOW|Clerk#000001154|0| special accounts; fluffily final dependencies integrate final sentiments.| +68175|554876|F|320465.93|1994-11-12|4-NOT SPECIFIED|Clerk#000001237|0|ng to the quickly ironic packages. special| +68200|296306|O|124447.04|1997-10-03|4-NOT SPECIFIED|Clerk#000004811|0| never even packages. blithely pending accounts across the quickly | +68201|10459|O|30233.36|1998-03-23|1-URGENT|Clerk#000004779|0|lyly furiously even requests. blithely special| +68202|257992|O|226138.67|1998-06-06|5-LOW|Clerk#000000979|0| boost blithely slyly regular requests. regular foxes maintain blithely fu| +68203|312458|F|71064.42|1993-10-17|5-LOW|Clerk#000001923|0|ronic deposits: fluffily pendi| +68204|717163|O|142164.01|1995-08-05|1-URGENT|Clerk#000002776|0| quickly doggedly silent| +68205|82702|F|188546.49|1993-10-31|2-HIGH|Clerk#000003018|0|jole. fluffily bold accounts nag furious| +68206|195871|O|10154.97|1998-06-07|5-LOW|Clerk#000002462|0|fily special, quiet dependencies. carefully express instructions after t| +68207|245524|P|288998.01|1995-05-04|4-NOT SPECIFIED|Clerk#000003688|0|symptotes. even deposits around the slyly regular | +68232|11767|O|25412.41|1996-04-17|1-URGENT|Clerk#000002838|0| packages. regular, regular accounts wake quickly regular request| +68233|510176|O|124759.94|1995-09-27|1-URGENT|Clerk#000002343|0|tealthy, bold deposits. regular, final requests cajole fluffily care| +68234|516464|F|234945.21|1992-01-24|5-LOW|Clerk#000002548|0|c theodolites unwind fluffily according to the fluffily pending | +68235|458890|F|148526.18|1994-09-19|1-URGENT|Clerk#000000494|0|uriously regular deposits bo| +68236|288763|F|251195.13|1992-04-13|3-MEDIUM|Clerk#000001431|0|cajole. unusual, special instructions play furiously abou| +68237|736777|F|48646.08|1992-05-27|5-LOW|Clerk#000001052|0| finally even deposits nag. special sauternes boost slyly busily | +68238|492757|O|65782.38|1995-04-30|4-NOT SPECIFIED|Clerk#000003333|0|le after the blithely fi| +68239|262079|O|243101.71|1997-04-04|5-LOW|Clerk#000002658|0|ress instructions. regular deposits maintain according to the | +68264|1480|F|247361.55|1994-05-14|2-HIGH|Clerk#000002024|0|. asymptotes poach fu| +68265|110108|O|45491.50|1998-04-10|5-LOW|Clerk#000004786|0|thely unusual requests nag carefully about the final requests. special accoun| +68266|331952|O|87191.52|1997-11-30|4-NOT SPECIFIED|Clerk#000000513|0|as. bold, special asymp| +68267|614812|F|150303.05|1992-07-31|3-MEDIUM|Clerk#000004734|0|ooze furiously. fluffily re| +68268|390137|F|42927.81|1992-05-13|3-MEDIUM|Clerk#000000654|0|ajole blithely against the final excuses. careful| +68269|521923|F|197750.99|1994-04-13|4-NOT SPECIFIED|Clerk#000002612|0|y brave ideas. slyly permanent ac| +68270|697468|O|221431.18|1995-08-09|4-NOT SPECIFIED|Clerk#000002990|0|accounts. furiously unusual deposits after the | +68271|594637|F|51504.49|1994-10-22|3-MEDIUM|Clerk#000002554|0|telets. slyly final| +68296|304504|O|191937.47|1995-08-25|2-HIGH|Clerk#000003199|0|wake carefully final accounts. quickly final| +68297|544978|F|86957.47|1994-07-23|1-URGENT|Clerk#000004851|0|e. fluffily pending theodolites cajole. | +68298|439103|F|114299.21|1992-12-10|5-LOW|Clerk#000003361|0|ke. unusual dolphins with the q| +68299|745678|F|144073.45|1994-11-08|3-MEDIUM|Clerk#000002134|0|. ironic, ironic foxes hinder slyly even hockey players| +68300|102284|O|326401.39|1996-07-05|5-LOW|Clerk#000004123|0|al packages haggle furiously blithely pe| +68301|70745|O|199451.33|1995-12-28|1-URGENT|Clerk#000000142|0|ccording to the express pinto beans. slyly special pinto beans nag fur| +68302|244703|O|136866.13|1996-11-19|5-LOW|Clerk#000000579|0| the sometimes ironic pinto beans. unusual pinto beans dete| +68303|464581|O|19977.96|1995-05-28|5-LOW|Clerk#000002010|0| express accounts poach regular ideas. blithely silent platelet| +68328|695197|O|216223.78|1995-10-27|1-URGENT|Clerk#000001278|0|blithely special packages along the requests boost furiously bold packages.| +68329|649012|F|120463.52|1994-01-13|1-URGENT|Clerk#000001507|0|ronic instructions boost. slyly unusual platelets are alongside| +68330|690157|F|25337.73|1992-04-29|3-MEDIUM|Clerk#000004622|0|dinos along the carefully| +68331|715066|F|223116.04|1993-09-18|2-HIGH|Clerk#000001249|0|evenly bold accounts. foxes sleep| +68332|92867|F|124947.78|1993-06-29|5-LOW|Clerk#000003327|0|haggle slyly. quickly unusual packages sleep furiously after the express br| +68333|56626|F|31270.37|1994-12-13|1-URGENT|Clerk#000002487|0|s. excuses boost along the quickly even deposits. carefully special platelets | +68334|694348|F|288306.28|1993-05-04|3-MEDIUM|Clerk#000001086|0|dencies. regular theo| +68335|654842|P|137972.95|1995-05-22|1-URGENT|Clerk#000001053|0|atelets sleep around the requests. iro| +68360|423253|F|118788.49|1993-06-07|4-NOT SPECIFIED|Clerk#000000434|0| are blithely ironic packages-- quickly regular deposits integrate quick| +68361|588649|F|188834.75|1992-05-10|2-HIGH|Clerk#000002305|0|olphins: fluffily express ideas may wak| +68362|168476|O|192038.21|1997-07-13|5-LOW|Clerk#000002976|0|instructions haggle against the carefully even acc| +68363|314081|O|236431.74|1995-06-04|5-LOW|Clerk#000000260|0|ow quickly special deposits. blithely pending acco| +68364|243910|O|73066.58|1998-01-06|5-LOW|Clerk#000004190|0|the blithely unusual ideas. final pinto beans except the blithely express pa| +68365|633067|F|165810.16|1993-12-04|3-MEDIUM|Clerk#000004281|0|lar accounts. quickly ironic pinto | +68366|444379|F|91244.16|1995-02-05|1-URGENT|Clerk#000003156|0|special foxes along the carefully pending requests haggle fluffily pac| +68367|176033|O|173399.93|1996-04-09|5-LOW|Clerk#000003786|0|uriously express platelets detect fluf| +68392|583600|F|106390.06|1993-04-07|1-URGENT|Clerk#000001661|0|otes haggle above the furiously ironic theodolites; quickly reg| +68393|58378|F|307681.87|1992-11-08|2-HIGH|Clerk#000001771|0|ns wake according to the furiously bold theodolites. care| +68394|130024|O|52235.87|1997-02-24|1-URGENT|Clerk#000001369|0|inal requests! excuses wake platelets. furiously regular platelet| +68395|548681|O|143397.65|1997-01-25|3-MEDIUM|Clerk#000004820|0|structions cajole above the| +68396|416704|O|63373.34|1998-02-14|1-URGENT|Clerk#000004373|0|ly blithe requests during the furi| +68397|34000|F|126994.14|1994-12-25|2-HIGH|Clerk#000004087|0|al asymptotes are fluffily even deposits. regular instr| +68398|681052|O|115068.38|1996-03-10|4-NOT SPECIFIED|Clerk#000003909|0|ly ironic sheaves sleep. slyly silent packages haggle alongside| +68399|660709|O|98581.44|1997-11-17|5-LOW|Clerk#000001418|0|s are carefully. slyly ironic deposits about the furiously bold depende| +68424|5986|F|85492.39|1993-07-26|4-NOT SPECIFIED|Clerk#000001959|0|e slyly final platelets. even platelets bo| +68425|91601|F|54938.21|1995-01-03|3-MEDIUM|Clerk#000000291|0|erns should have to are across the ironic deposits. blithely regula| +68426|523759|F|291049.50|1994-08-29|5-LOW|Clerk#000000811|0|ly. unusual accounts poach along the slyly expr| +68427|62681|O|249261.96|1997-05-04|1-URGENT|Clerk#000000982|0|ily bold requests about | +68428|470476|F|82603.81|1994-10-20|3-MEDIUM|Clerk#000000223|0| regular instructions. furiously even | +68429|21490|O|208679.91|1996-07-11|2-HIGH|Clerk#000000122|0|nding dolphins? even theodolites about| +68430|418151|O|157025.13|1996-08-19|3-MEDIUM|Clerk#000000516|0|ans. carefully final instructi| +68431|350578|F|100474.29|1994-04-03|2-HIGH|Clerk#000000265|0|pecial deposits poach furiously among the pending pinto | +68456|160924|O|198572.02|1997-03-05|1-URGENT|Clerk#000002410|0|rding to the blithely pending dependencies. ironic platelets affix f| +68457|119302|F|101382.18|1994-09-09|1-URGENT|Clerk#000002040|0|ly about the slyly final package| +68458|332435|F|92774.71|1993-06-03|4-NOT SPECIFIED|Clerk#000000687|0|eans detect blithely bold re| +68459|478036|F|230825.66|1995-02-05|1-URGENT|Clerk#000001231|0|requests along the quickly ironic ideas wake around the quickly | +68460|334177|O|115747.91|1997-03-30|3-MEDIUM|Clerk#000004901|0|ully even theodolite| +68461|479288|O|40327.55|1997-07-31|1-URGENT|Clerk#000002710|0|ly? ironic requests unw| +68462|388690|O|69510.64|1998-05-02|1-URGENT|Clerk#000003223|0|refully pending grouches print against the packages. furiously regular account| +68463|200027|F|84446.84|1994-05-23|1-URGENT|Clerk#000004189|0|slyly express requests haggle slyly close packages. furious| +68488|337669|O|53176.69|1995-06-21|4-NOT SPECIFIED|Clerk#000004785|0|ges. even deposits sle| +68489|702227|O|23174.84|1997-05-27|4-NOT SPECIFIED|Clerk#000000553|0|gular foxes after the pinto beans are blithely above t| +68490|325291|F|234304.43|1993-07-24|4-NOT SPECIFIED|Clerk#000004594|0|aggle blithely according to the furiously silent requests. ironic, ironic | +68491|393205|O|132205.99|1995-06-26|5-LOW|Clerk#000002302|0| evenly even platelets. regular warthogs | +68492|345920|F|72540.19|1993-06-13|3-MEDIUM|Clerk#000000591|0|ng foxes after the carefully bold requests nag s| +68493|612254|F|34579.84|1992-09-05|4-NOT SPECIFIED|Clerk#000000751|0|s according to the bold courts use furiously slyly regular accounts. pending | +68494|145495|F|148578.50|1992-02-14|3-MEDIUM|Clerk#000000975|0| final packages! bold, special instructions are caref| +68495|310300|F|183720.96|1994-02-18|5-LOW|Clerk#000002180|0|al pinto beans are slyly according to the r| +68520|451361|O|304203.81|1997-05-16|3-MEDIUM|Clerk#000001551|0|regular requests sleep. furiously r| +68521|523270|F|179385.64|1994-04-29|5-LOW|Clerk#000004885|0|ly special requests detect furiously theodolites. requests across the| +68522|87404|O|192208.61|1998-07-19|5-LOW|Clerk#000001990|0|uickly special ideas alongside of| +68523|484156|F|492081.95|1992-01-27|5-LOW|Clerk#000002985|0|ly express requests. ironic theodolites across the accounts affix fluffily i| +68524|434924|P|207160.14|1995-05-31|4-NOT SPECIFIED|Clerk#000003150|0|ly. express packages affix blithely against the fin| +68525|253666|O|184366.36|1997-04-05|1-URGENT|Clerk#000001165|0|tegrate pending, even packages-- bold requests | +68526|350267|F|213970.34|1993-09-15|1-URGENT|Clerk#000002247|0|re furiously. blithely ironic requests sl| +68527|179608|O|139101.52|1995-05-30|2-HIGH|Clerk#000004096|0|encies cajole furiously ironic packages. express accounts sublate across| +68552|650759|O|261482.55|1995-11-02|2-HIGH|Clerk#000001939|0|sts haggle furiously alongside of the furiously pending deposits. b| +68553|50665|F|175090.70|1993-09-25|3-MEDIUM|Clerk#000004219|0| deposits haggle. speci| +68554|254218|O|105830.23|1997-01-20|4-NOT SPECIFIED|Clerk#000001128|0|osits haggle carefully inside the ironic, pending accounts; slyly expre| +68555|625003|F|86850.34|1992-06-28|1-URGENT|Clerk#000002393|0|ithely silent foxes haggle fur| +68556|646784|O|221158.00|1998-03-15|1-URGENT|Clerk#000003216|0|ut the bold, final requests! slyly unusual pin| +68557|743992|P|69418.38|1995-03-26|1-URGENT|Clerk#000004559|0|key players cajole permanently regular requests.| +68558|257965|O|184711.48|1995-10-07|5-LOW|Clerk#000001579|0|wake slyly among the slyly even packages. even grouches should sleep care| +68559|595312|F|59934.70|1993-05-25|1-URGENT|Clerk#000003636|0|ses haggle. special accounts sl| +68584|391010|O|124686.20|1997-03-01|1-URGENT|Clerk#000003294|0|ter the final pinto beans. sl| +68585|195526|F|318565.54|1993-09-22|3-MEDIUM|Clerk#000000734|0|s according to the furiously final requests cajole pending| +68586|442810|F|348840.73|1994-12-03|4-NOT SPECIFIED|Clerk#000003267|0| beans cajole always regular pinto beans. slyly final theodolites haggle blith| +68587|35083|O|218606.24|1995-10-15|1-URGENT|Clerk#000002842|0|y quickly ironic foxes: furi| +68588|111634|O|88491.98|1997-06-14|2-HIGH|Clerk#000004915|0|ns. furiously thin fox| +68589|475840|O|91767.20|1997-04-08|2-HIGH|Clerk#000003306|0|ully ironic foxes. quickly enticing pains nag slyly. iron| +68590|180095|O|224584.18|1997-11-11|2-HIGH|Clerk#000004459|0|egular requests wake carefully| +68591|605545|O|313317.60|1996-09-04|3-MEDIUM|Clerk#000003842|0|accounts sleep. furiously regular excuses use furiously quickly| +68616|638171|O|149623.87|1996-05-24|4-NOT SPECIFIED|Clerk#000001407|0|iously pending waters. ironic asymptotes wake after the| +68617|727150|F|25660.11|1993-08-19|3-MEDIUM|Clerk#000001159|0| slyly ironic platelets. ironi| +68618|678779|O|260149.84|1997-11-04|4-NOT SPECIFIED|Clerk#000001164|0|dencies. ideas cajole closely carefully unusual depths. careful depos| +68619|729277|O|138051.06|1996-04-22|4-NOT SPECIFIED|Clerk#000000170|0|s? carefully express deposits serve across the furiously final dependencies| +68620|435418|F|288275.54|1992-11-08|3-MEDIUM|Clerk#000002723|0|ual, special packages. furious accounts are quickly above the carefully u| +68621|301940|F|101398.77|1993-06-09|2-HIGH|Clerk#000002123|0| the unusual dependencies. quickly pending theodolites across| +68622|189538|O|199642.00|1995-11-19|2-HIGH|Clerk#000003992|0|uffily unusual accounts. carefully bold excuses after the slyly iro| +68623|297013|F|137377.43|1994-12-12|2-HIGH|Clerk#000004041|0|c foxes nag blithely across the blit| +68648|645025|F|38369.26|1995-04-14|1-URGENT|Clerk#000003596|0|ight haggle. careful| +68649|421000|F|23175.17|1995-01-09|3-MEDIUM|Clerk#000004746|0|arefully special platelets hagg| +68650|217864|O|135872.84|1996-11-13|1-URGENT|Clerk#000001197|0|hely pending requests wake slyly | +68651|128680|O|160528.36|1996-11-20|2-HIGH|Clerk#000001253|0|ly ironic packages detect slyly ironic, e| +68652|449770|O|16029.64|1996-11-08|5-LOW|Clerk#000001676|0|d slyly. carefully express instructions sleep blithely against the slyly ex| +68653|15388|F|250944.86|1992-10-30|2-HIGH|Clerk#000004503|0|thely final pinto be| +68654|597778|O|142680.10|1996-03-13|1-URGENT|Clerk#000000836|0| boost quickly. ironic, special platelets play slyly final acc| +68655|601693|F|90157.50|1992-09-18|3-MEDIUM|Clerk#000004488|0|posits are quickly regular packages. fur| +68680|382210|F|75979.47|1995-01-27|1-URGENT|Clerk#000004941|0|al, express foxes? deposits unwind fluffily about the i| +68681|51371|F|197514.11|1992-06-15|5-LOW|Clerk#000004222|0|egular pinto beans ha| +68682|139243|O|251386.23|1997-09-13|5-LOW|Clerk#000003647|0|lyly. blithely ironi| +68683|232969|F|56147.43|1995-02-13|5-LOW|Clerk#000001301|0|ges cajole slyly around the carefully final deposi| +68684|505102|O|134696.30|1996-10-15|5-LOW|Clerk#000001053|0|ully ironic requests cajole blit| +68685|736541|F|332275.51|1995-01-23|1-URGENT|Clerk#000001204|0|ing, regular instructions haggle. furiousl| +68686|291916|F|150187.62|1994-01-13|4-NOT SPECIFIED|Clerk#000003389|0|ly. express deposits along the pending, even theodolites haggle| +68687|473941|O|227351.79|1997-06-23|4-NOT SPECIFIED|Clerk#000002981|0| beans. final, special deposits cajole boldly across the somas. furio| +68712|495374|F|3939.27|1992-04-04|2-HIGH|Clerk#000001207|0|c sauternes nag inside the carefully regular ideas. furiously pending foxes a| +68713|749038|O|94670.49|1998-07-22|4-NOT SPECIFIED|Clerk#000004184|0|sits. fluffily special accounts sleep express, | +68714|303683|O|78434.40|1998-04-07|3-MEDIUM|Clerk#000002822|0|to beans nag pinto beans.| +68715|249523|O|51910.68|1998-01-10|3-MEDIUM|Clerk#000004759|0|inal packages wake against the special requ| +68716|476860|O|202219.24|1996-07-03|2-HIGH|Clerk#000001737|0|ndencies cajole ironic in| +68717|55903|O|97400.72|1998-07-10|3-MEDIUM|Clerk#000002066|0|sual orbits solve t| +68718|559894|O|127700.62|1996-11-08|5-LOW|Clerk#000004144|0|fully among the fluffily silent platelets. blithely idle theodolites serve q| +68719|621799|P|116779.29|1995-03-25|3-MEDIUM|Clerk#000001881|0|to beans nag fluffily regular foxes. platelets haggle furiously bli| +68744|45514|O|147950.05|1997-01-01|1-URGENT|Clerk#000001823|0|ily regular deposits. q| +68745|687070|O|184664.84|1998-03-19|4-NOT SPECIFIED|Clerk#000000660|0|refully final packages. slyly unusual packages aft| +68746|576284|F|149119.79|1992-10-13|1-URGENT|Clerk#000004081|0|al requests alongside of t| +68747|96704|O|129824.41|1997-04-18|3-MEDIUM|Clerk#000001594|0|ronic, express asymptote| +68748|54104|F|145472.25|1992-05-12|2-HIGH|Clerk#000004783|0|ges integrate slyly. slyly regular asymptotes sleep above the express reque| +68749|321598|F|135530.36|1992-09-20|1-URGENT|Clerk#000001145|0|kages. unusual, regular | +68750|567403|F|140075.58|1994-02-23|4-NOT SPECIFIED|Clerk#000002370|0|aggle slyly regular deposits. unusual foxes was furio| +68751|81652|O|41588.83|1995-05-03|3-MEDIUM|Clerk#000002823|0|beans. never specia| +68776|565415|F|65391.30|1993-05-10|1-URGENT|Clerk#000004582|0|oss the bold theodolites grow about the | +68777|418828|F|239814.61|1994-06-05|3-MEDIUM|Clerk#000002881|0|en ideas mold final platelets. ironic ideas hinder. slo| +68778|469162|F|91863.40|1994-10-21|4-NOT SPECIFIED|Clerk#000000784|0|gular requests use fluffily ironic, final| +68779|451979|F|68447.61|1995-01-28|1-URGENT|Clerk#000003424|0|ully bold ideas wake furious| +68780|410321|F|56410.69|1993-01-28|1-URGENT|Clerk#000004042|0|bold orbits haggle slyly unusual asymptotes. pending, dogged pack| +68781|14068|F|3699.72|1993-11-06|5-LOW|Clerk#000003693|0|thogs. slyly final asymp| +68782|167101|F|34677.35|1994-03-06|4-NOT SPECIFIED|Clerk#000002851|0|ts alongside of the special, silent packages poach carefully among the unusua| +68783|448237|F|160050.25|1992-04-06|4-NOT SPECIFIED|Clerk#000004974|0|xes. blithely even deposits sleep carefully| +68808|488801|F|61575.82|1993-08-29|3-MEDIUM|Clerk#000000892|0| are enticingly blithely ironic dependencies. final, express| +68809|526414|F|48338.31|1993-03-08|1-URGENT|Clerk#000001358|0|lphins. final, ironi| +68810|409145|O|218818.94|1996-05-02|5-LOW|Clerk#000001299|0|ublate about the careful| +68811|488314|O|259534.56|1998-05-21|5-LOW|Clerk#000003725|0|ly unusual decoys. fluffily final asymptotes cajole fluffily after the| +68812|569989|O|270003.85|1996-12-29|2-HIGH|Clerk#000002555|0| theodolites sleep slowl| +68813|47356|F|193887.87|1994-02-17|4-NOT SPECIFIED|Clerk#000000725|0|egular packages cajole. slyly final platelets alongside of the | +68814|154969|F|96592.01|1994-10-18|3-MEDIUM|Clerk#000003451|0|round the blithely s| +68815|543673|F|110355.46|1992-10-30|1-URGENT|Clerk#000004567|0|he packages. carefully close instructions haggle furiously b| +68840|233320|O|308271.11|1995-07-21|2-HIGH|Clerk#000002497|0| regular patterns sleep blithely afte| +68841|396334|O|112433.92|1996-10-02|2-HIGH|Clerk#000002431|0|uickly special accounts| +68842|405610|F|159801.18|1993-12-30|2-HIGH|Clerk#000004941|0|ronic accounts haggle along the regula| +68843|336652|F|56375.47|1992-05-22|4-NOT SPECIFIED|Clerk#000004547|0|final deposits. fluffily ironic request| +68844|97556|O|130496.95|1996-07-17|4-NOT SPECIFIED|Clerk#000001412|0| fluffily. ironically regular Tiresias are. blithely| +68845|121624|F|119900.41|1994-03-11|3-MEDIUM|Clerk#000001590|0|ckages wake furiously ironic grouches. instructions sleep slyly unusual, | +68846|360652|F|329911.66|1992-08-30|3-MEDIUM|Clerk#000003793|0| pinto beans print carefully. final packages u| +68847|726899|O|184606.45|1997-01-25|3-MEDIUM|Clerk#000002027|0|ecoys alongside of the unusual accounts wake after the final dependen| +68872|225079|O|222736.84|1997-11-04|4-NOT SPECIFIED|Clerk#000001764|0|y regular foxes. slyly bold ideas boost across | +68873|652510|F|266856.29|1993-07-06|3-MEDIUM|Clerk#000001744|0|ic escapades haggle. slyly final theodolites integrate unusu| +68874|204760|O|100842.81|1995-10-01|3-MEDIUM|Clerk#000004458|0|ter the fluffily regular deposits| +68875|393082|O|175769.48|1997-11-18|1-URGENT|Clerk#000000364|0|uests about the carefully final patterns wake furiously ironic request| +68876|500980|F|217519.65|1994-10-15|5-LOW|Clerk#000000618|0|ts. special, dogged deposits sleep quickly regular requests. account| +68877|438853|O|59053.74|1997-11-17|4-NOT SPECIFIED|Clerk#000001600|0| theodolites. carefully final somas haggle furiously quick| +68878|290764|O|132744.89|1997-03-29|5-LOW|Clerk#000003098|0|ag carefully careful| +68879|604274|F|55737.82|1992-02-22|2-HIGH|Clerk#000002056|0|ies. blithely final| +68904|282361|F|211592.37|1994-04-27|2-HIGH|Clerk#000004924|0|furiously across the quick, final theodolites; regular requests poach bli| +68905|380411|O|11046.12|1997-02-09|1-URGENT|Clerk#000002142|0|s up the requests dazzle thinly alongside of the carefully ironic foxes| +68906|563908|F|34437.13|1995-01-08|1-URGENT|Clerk#000000272|0|p among the carefully regular | +68907|593623|F|13009.86|1992-01-25|2-HIGH|Clerk#000003494|0|wake bravely according to the always final packages. slyly even depende| +68908|491074|F|110013.90|1994-01-25|4-NOT SPECIFIED|Clerk#000003787|0|ves. carefully even requests sleep caref| +68909|479686|F|95856.22|1992-12-24|2-HIGH|Clerk#000004846|0|furiously final accounts wake quickly | +68910|318796|F|131198.04|1994-06-19|5-LOW|Clerk#000000741|0|c foxes. furiously regular accounts| +68911|733528|O|125218.92|1995-08-27|1-URGENT|Clerk#000004337|0|thely special deposits whi| +68936|632066|O|116546.42|1995-12-11|4-NOT SPECIFIED|Clerk#000004040|0|ructions wake blithely accounts. accounts a| +68937|133192|P|74779.69|1995-04-02|4-NOT SPECIFIED|Clerk#000003023|0|equests. quietly unusual dolphins lose blithely final, final requests. fu| +68938|540769|F|163596.62|1994-11-29|5-LOW|Clerk#000000610|0|d promise blithely. special, regular deposits are quickly among the furiousl| +68939|183925|F|60548.71|1992-07-13|4-NOT SPECIFIED|Clerk#000004192|0|t, even instruction| +68940|475315|F|91846.02|1992-12-27|1-URGENT|Clerk#000004136|0|packages. quickly final packages poa| +68941|364678|O|183192.03|1996-07-29|3-MEDIUM|Clerk#000002726|0|into beans upon the fu| +68942|110963|F|143895.88|1993-02-27|5-LOW|Clerk#000001296|0|according to the final, bold theodolites boost carefully acros| +68943|448990|O|221502.87|1996-12-20|1-URGENT|Clerk#000000146|0| even requests haggle fluffily ironic requests. sly| +68968|393454|F|104108.59|1995-01-04|5-LOW|Clerk#000003296|0|inal theodolites integrate ironi| +68969|14506|O|336215.16|1997-08-02|2-HIGH|Clerk#000000598|0|es boost. even frays wake carefully against the careful| +68970|44735|O|114341.99|1997-11-17|2-HIGH|Clerk#000004976|0| excuses haggle about the special realms. regular requests hagg| +68971|352873|O|212984.74|1997-04-20|3-MEDIUM|Clerk#000001031|0|serve. deposits could have to sleep about the blithely regular packages. i| +68972|485342|F|169332.68|1993-02-27|2-HIGH|Clerk#000002501|0|sual accounts eat slyly. express, final accounts against the blithely bold fr| +68973|129710|O|131762.25|1998-04-27|4-NOT SPECIFIED|Clerk#000003205|0|heodolites. never regular requests alongside of the quickly express| +68974|521041|F|107375.80|1994-11-19|4-NOT SPECIFIED|Clerk#000004123|0|d requests sleep carefully. furiously regular p| +68975|125995|F|46284.53|1992-06-01|3-MEDIUM|Clerk#000004205|0|refully about the iro| +69000|324328|O|55312.00|1996-11-01|4-NOT SPECIFIED|Clerk#000002178|0|ing accounts. thin accounts are carefully regular r| +69001|707102|F|159347.40|1992-01-26|4-NOT SPECIFIED|Clerk#000002350|0|ests cajole blithely alongside of the excuses. slyly ironic theodolites nag pe| +69002|502256|F|41089.65|1993-03-19|5-LOW|Clerk#000000012|0|ckages wake blithely according to the special, final p| +69003|154058|O|48816.30|1995-12-05|4-NOT SPECIFIED|Clerk#000001956|0|final somas detect slyly regular ide| +69004|239819|P|119359.40|1995-05-03|1-URGENT|Clerk#000000254|0|sly final dependencies. slyly unusual packages boos| +69005|131438|O|93574.01|1995-10-10|1-URGENT|Clerk#000001633|0|s are furiously across the blithely ironic accounts. sentiments nag fur| +69006|314897|F|191343.11|1994-02-03|4-NOT SPECIFIED|Clerk#000003279|0|pending requests. carefully final ideas wake af| +69007|462007|O|45840.14|1997-05-15|1-URGENT|Clerk#000004156|0|ly. even waters are. theodolit| +69032|192929|O|51506.17|1995-09-05|4-NOT SPECIFIED|Clerk#000002438|0|refully bold platelets. regular deposits detect carefully daring pinto beans:| +69033|292249|F|230534.69|1995-02-11|5-LOW|Clerk#000003817|0|ag carefully ironic accounts. slyly bold pi| +69034|55858|P|266762.43|1995-04-18|5-LOW|Clerk#000003651|0|ckages. blithely ironic packages eat. packages wake amo| +69035|527981|O|227220.62|1997-08-15|5-LOW|Clerk#000002389|0|ly above the blithely regular theodolites| +69036|510229|F|319790.87|1995-02-16|2-HIGH|Clerk#000003624|0|special packages boost furiously regular deposits. slyly f| +69037|656786|F|79772.92|1994-09-30|5-LOW|Clerk#000002892|0|p. evenly express foxes wake blithely. blithely pending Tiresias nag car| +69038|99016|F|20622.82|1994-07-17|3-MEDIUM|Clerk#000000818|0|ffily special platelets are furiously above the regular d| +69039|633512|O|87616.20|1998-06-04|4-NOT SPECIFIED|Clerk#000001373|0|to beans are closely about the accounts. ironic, r| +69064|431797|F|173451.02|1993-03-30|4-NOT SPECIFIED|Clerk#000004980|0| cajole above the fluffily special accounts! slyly regular accounts cajo| +69065|194110|F|60214.90|1992-10-14|4-NOT SPECIFIED|Clerk#000002331|0|ironic theodolites about the final ideas| +69066|644896|O|179125.32|1996-05-13|5-LOW|Clerk#000004968|0|ven asymptotes. furiously bo| +69067|511738|O|224294.96|1997-05-07|3-MEDIUM|Clerk#000002209|0|iously unusual requ| +69068|501151|O|78365.81|1997-09-16|3-MEDIUM|Clerk#000004937|0|blithely. furiously regular instructions haggle sometimes.| +69069|331609|O|18863.61|1995-06-08|5-LOW|Clerk#000002906|0|mptotes sleep. blithely even accounts grow f| +69070|77635|O|293591.10|1997-04-01|3-MEDIUM|Clerk#000004024|0| accounts cajole blithely packages. final dolphins| +69071|548846|F|325627.47|1994-11-15|1-URGENT|Clerk#000000088|0|es nag slyly according t| +69096|188848|F|235581.87|1994-03-05|1-URGENT|Clerk#000003577|0| the furiously even pearls cajole unusual accounts. carefully ironic i| +69097|692018|F|246710.81|1993-10-18|4-NOT SPECIFIED|Clerk#000000943|0|posits. quickly ironic pinto bean| +69098|492001|F|125901.84|1992-09-24|5-LOW|Clerk#000003478|0|le quickly-- blithely ironic accounts| +69099|310012|F|346749.49|1992-01-02|1-URGENT|Clerk#000003270|0|less theodolites cajole. furiously regular packages near the carefully bo| +69100|91697|O|203882.15|1996-08-04|3-MEDIUM|Clerk#000000461|0|posits are. regular requests cajole quickly along the blithely even as| +69101|639674|O|341063.61|1995-10-18|4-NOT SPECIFIED|Clerk#000002173|0|usual courts wake carefully above the carefully unusual pinto bean| +69102|485569|O|203771.65|1995-11-29|5-LOW|Clerk#000002273|0|tect at the slyly pending foxes. furiously express accounts| +69103|179152|O|192817.37|1996-03-09|4-NOT SPECIFIED|Clerk#000003375|0|daring packages. pending, special packages integrate slyly. s| +69128|493553|O|281727.65|1996-03-22|3-MEDIUM|Clerk#000004095|0|intain slyly carefully enti| +69129|136043|F|111472.89|1994-08-26|2-HIGH|Clerk#000004512|0| detect blithely above the bold, ruthless deposits. accounts sleep-- blithely| +69130|463259|O|292790.75|1997-07-02|1-URGENT|Clerk#000001720|0|nstructions haggle quickly slyly final courts. express acco| +69131|236356|F|277230.10|1992-12-03|4-NOT SPECIFIED|Clerk#000002805|0|counts according to the final deposits believe across the| +69132|406825|O|178198.33|1997-09-20|2-HIGH|Clerk#000000815|0|es. bold, pending instructions are.| +69133|500996|F|132869.77|1994-07-29|3-MEDIUM|Clerk#000001440|0|s against the quickly regular fox| +69134|737608|O|227401.43|1998-04-18|4-NOT SPECIFIED|Clerk#000000936|0|lithely after the qui| +69135|199867|F|60347.03|1992-06-04|1-URGENT|Clerk#000002103|0|sits sleep slyly throughout the busi| +69160|637337|O|243352.77|1997-06-24|2-HIGH|Clerk#000004110|0|thely regular pinto| +69161|219184|F|147314.80|1994-05-26|5-LOW|Clerk#000004892|0|s the slyly unusual | +69162|570973|O|66014.61|1998-04-11|2-HIGH|Clerk#000003773|0| furiously unusual theodol| +69163|88189|F|184891.42|1993-11-29|3-MEDIUM|Clerk#000001602|0|accounts. accounts according to the ideas nag blithely i| +69164|165995|F|205161.43|1993-07-06|3-MEDIUM|Clerk#000001436|0|onic ideas. furiously specia| +69165|624196|O|145780.58|1997-08-20|4-NOT SPECIFIED|Clerk#000000942|0|are blithely. blithely careful dolphins are slyly above the fina| +69166|591562|O|182522.63|1998-01-01|2-HIGH|Clerk#000001803|0|lly silent pinto beans. sauternes wake b| +69167|367039|O|158088.65|1995-10-16|2-HIGH|Clerk#000004936|0|ideas solve about the fu| +69192|62456|O|166578.39|1996-04-09|3-MEDIUM|Clerk#000003218|0|ously. ironic epitaphs wake carefully. slyly unusual packages hang car| +69193|433384|F|53156.19|1993-01-03|1-URGENT|Clerk#000004560|0|as carefully furiously ironic asymptotes. ironic platelets boos| +69194|615607|F|349482.33|1992-12-06|2-HIGH|Clerk#000003798|0|g asymptotes boost slyly even packages.| +69195|253300|F|53293.14|1994-03-01|2-HIGH|Clerk#000001303|0|c accounts across the special requests hag| +69196|211555|F|107252.88|1992-03-23|4-NOT SPECIFIED|Clerk#000001055|0|fter the bold, even pea| +69197|588370|F|133026.47|1995-01-25|4-NOT SPECIFIED|Clerk#000001972|0|ronic, ironic ideas above the regular, final packages| +69198|732328|O|300712.03|1998-02-10|3-MEDIUM|Clerk#000000170|0|r packages. quickly final excuses wake s| +69199|721901|F|98523.82|1994-06-14|3-MEDIUM|Clerk#000000555|0|. slyly regular foxe| +69224|228772|O|88541.83|1995-12-08|3-MEDIUM|Clerk#000002075|0|furiously special accounts was caref| +69225|445477|F|64113.85|1995-03-15|1-URGENT|Clerk#000000320|0|y final theodolites haggle forges. carefull| +69226|602239|F|160237.12|1993-01-03|4-NOT SPECIFIED|Clerk#000003594|0|ckages haggle furiously speci| +69227|547792|O|84023.55|1998-05-03|1-URGENT|Clerk#000001045|0|nic dependencies play quickly beyond the even pin| +69228|461017|F|100118.57|1993-11-23|2-HIGH|Clerk#000002905|0|eep fluffily slyly regular dep| +69229|55046|F|194939.03|1995-01-11|5-LOW|Clerk#000001956|0|olites are furiously across the| +69230|396880|O|227555.66|1995-08-13|4-NOT SPECIFIED|Clerk#000001276|0|pecial asymptotes. regular requests poach. unusual, regular deposit| +69231|591536|O|101645.26|1997-03-09|5-LOW|Clerk#000002140|0|ccounts haggle platele| +69256|678778|O|250831.96|1997-08-14|3-MEDIUM|Clerk#000001632|0| sleep furiously blithely regular packages. quickly fi| +69257|709396|F|107231.47|1994-05-10|2-HIGH|Clerk#000003018|0|ngage around the bold asymptotes. requests ca| +69258|46552|F|216203.92|1992-01-19|2-HIGH|Clerk#000004527|0|sauternes are blithely pending instructions.| +69259|125521|F|286310.90|1993-11-25|5-LOW|Clerk#000004933|0|ptotes. even, regular instructions sleep blithely across the sile| +69260|603541|O|66397.23|1997-09-16|5-LOW|Clerk#000004303|0|ts. packages use. pending pinto beans across| +69261|685039|F|116472.98|1994-12-11|2-HIGH|Clerk#000002180|0|efully final platelets. quick| +69262|183952|P|79347.98|1995-04-07|5-LOW|Clerk#000003184|0|ic theodolites haggle slowly according to the silent requests. blithely exp| +69263|165913|O|225852.58|1997-02-17|1-URGENT|Clerk#000002875|0|yly regular deposits above the furiously regular pinto beans nag quickly behi| +69288|731767|O|198838.00|1997-09-11|2-HIGH|Clerk#000004153|0|ccounts alongside of the special foxes wake about | +69289|295984|P|201890.43|1995-05-20|2-HIGH|Clerk#000004508|0|gularly ironic excuses abo| +69290|596140|F|32492.75|1993-12-05|2-HIGH|Clerk#000000689|0|affix furiously slyly special deposits. carefull| +69291|74234|F|283334.00|1992-09-15|2-HIGH|Clerk#000001379|0|into beans haggle. regular deposits haggle| +69292|400339|O|146325.09|1996-06-17|4-NOT SPECIFIED|Clerk#000004047|0|fter the instructions. blithely ironic reques| +69293|241972|F|205327.43|1992-12-02|4-NOT SPECIFIED|Clerk#000002796|0|ns are furiously final, even courts| +69294|310408|O|96417.77|1997-08-06|1-URGENT|Clerk#000000720|0| after the slyly ironic requests. final forges integrate fluffily s| +69295|745453|O|65925.98|1996-09-07|3-MEDIUM|Clerk#000001585|0|riously express excuses p| +69320|68326|F|188461.44|1994-12-14|3-MEDIUM|Clerk#000001506|0|the final deposits. ironic, unusual foxes sleep slyly g| +69321|95746|F|18445.83|1992-02-26|2-HIGH|Clerk#000004008|0|nt attainments sleep furiously ironic platelets. carefully ironi| +69322|449785|O|89793.84|1996-08-22|4-NOT SPECIFIED|Clerk#000000755|0|ve the quickly even| +69323|264935|F|114109.28|1994-12-29|4-NOT SPECIFIED|Clerk#000003721|0|counts. gifts are finally ironic ideas. carefully regular pla| +69324|745922|F|217777.31|1992-01-26|3-MEDIUM|Clerk#000002419|0|ackages. excuses sleep blithely fluffily unus| +69325|455194|F|60934.32|1993-10-19|2-HIGH|Clerk#000001176|0| regular deposits. express, silent wart| +69326|420992|O|195204.69|1995-12-08|4-NOT SPECIFIED|Clerk#000002035|0|l dependencies are slyly special pinto beans. regular requests| +69327|101120|F|249484.58|1992-04-23|4-NOT SPECIFIED|Clerk#000002114|0|gside of the ironic, special packages nag ruthlessly slyly bold accounts. i| +69352|12379|O|293306.43|1996-08-05|2-HIGH|Clerk#000000610|0|s. slyly final dolphins use slowly acros| +69353|274081|F|103954.45|1993-05-23|1-URGENT|Clerk#000000811|0|ctions do grow furiou| +69354|696031|O|56811.03|1998-05-13|4-NOT SPECIFIED|Clerk#000001713|0|rts alongside of the fluffily bold asymptotes use | +69355|442090|O|35795.24|1995-09-21|5-LOW|Clerk#000002168|0|l requests sleep carefully f| +69356|692251|O|171829.23|1996-01-30|4-NOT SPECIFIED|Clerk#000001215|0|ns. daringly final requests sleep furiously across the silent instru| +69357|629431|F|44250.80|1994-08-16|1-URGENT|Clerk#000003025|0|ntain slyly at the quickly regular deposits. pinto beans sleep-- | +69358|96106|O|309315.74|1995-12-15|4-NOT SPECIFIED|Clerk#000001052|0|? unusual, even accounts sleep slyly ironic braids. cl| +69359|494581|O|207075.95|1997-06-26|5-LOW|Clerk#000000387|0|foxes sleep slyly. furiously special platelets solve. furiously ironic| +69384|152714|F|58252.38|1994-04-25|3-MEDIUM|Clerk#000001478|0|thely even accounts against the accounts cajole slyly even ideas. final inst| +69385|150487|F|285831.96|1992-02-17|4-NOT SPECIFIED|Clerk#000003440|0|kly ironic requests around the pending, final| +69386|232373|O|32764.65|1997-02-23|3-MEDIUM|Clerk#000004309|0|ackages sleep accounts. express, special deposits cajole furio| +69387|239590|F|170737.92|1993-09-04|2-HIGH|Clerk#000004565|0|equests. slyly final mu| +69388|20410|F|217700.67|1992-02-11|1-URGENT|Clerk#000000639|0|nal excuses sleep carefully fluffily regular ideas. asymptotes s| +69389|271531|O|134249.36|1997-10-05|1-URGENT|Clerk#000001906|0|y pending requests around the carefully regular pinto | +69390|593678|O|138022.90|1996-11-23|1-URGENT|Clerk#000004662|0|iers detect blithely alongside of the fluffily ironic ideas. car| +69391|686110|F|30755.09|1993-11-17|3-MEDIUM|Clerk#000004166|0|telets. carefully even depo| +69416|167605|F|157620.04|1992-07-23|5-LOW|Clerk#000004404|0|mong the ironic, even accounts. ironic requests are carefully| +69417|661450|F|216448.35|1994-10-30|5-LOW|Clerk#000003889|0|ly pending deposits. carefully special pinto bea| +69418|486958|F|175560.61|1992-08-10|5-LOW|Clerk#000004366|0| ironic warhorses use furiously thinly even dinos. bold requests wake| +69419|275984|F|202158.12|1994-12-16|4-NOT SPECIFIED|Clerk#000004679|0| above the brave pinto beans. slyly regu| +69420|454942|F|72740.85|1995-01-23|5-LOW|Clerk#000000607|0|he Tiresias. carefully final packages into the express, ironic exc| +69421|678176|F|91129.54|1993-11-17|2-HIGH|Clerk#000004708|0| nod stealthily courts; final requests detect requests. furiously re| +69422|348487|P|284954.43|1995-03-26|5-LOW|Clerk#000004545|0|s? deposits cajole furiously. fluffily even f| +69423|266320|O|68107.99|1998-06-25|2-HIGH|Clerk#000002990|0|tructions. slyly even excuses slee| +69448|31861|F|23621.59|1994-09-11|5-LOW|Clerk#000001193|0|anent accounts. sauternes haggle since the quickly even deposits. blithely r| +69449|736820|F|323194.06|1993-10-08|2-HIGH|Clerk#000004063|0|t final, final deposits. bold, regular requests det| +69450|475916|F|233692.20|1992-05-02|4-NOT SPECIFIED|Clerk#000003434|0|r deposits cajole furious| +69451|708997|F|81796.24|1993-12-14|1-URGENT|Clerk#000003567|0|oost after the busily ironic accounts. r| +69452|96853|O|83036.66|1995-08-17|5-LOW|Clerk#000001606|0|nt packages alongside of the carefully final deposits| +69453|287167|F|342773.51|1994-01-08|3-MEDIUM|Clerk#000004818|0| regular gifts are blithely furiously unusual deposits. unus| +69454|151219|F|207461.29|1993-10-13|5-LOW|Clerk#000002596|0|s above the carefully dogged theod| +69455|523469|O|191219.09|1998-03-04|1-URGENT|Clerk#000000152|0|even foxes. foxes wake. ironic dolphins are flu| +69480|435695|O|203214.08|1998-02-08|1-URGENT|Clerk#000002288|0|old deposits about the requests x-ray pending, final instructions. | +69481|460870|O|160313.26|1997-06-11|3-MEDIUM|Clerk#000003046|0|ithely bold deposits are against the quickly silent requ| +69482|576175|O|52588.73|1997-10-28|4-NOT SPECIFIED|Clerk#000003128|0| the slyly pending dolphins. final instructions wake depos| +69483|505744|F|84966.89|1992-07-11|3-MEDIUM|Clerk#000001876|0|forges! carefully ruthless accounts above the speci| +69484|262120|O|105451.47|1998-03-18|3-MEDIUM|Clerk#000001967|0|refully regular acc| +69485|681881|O|146531.10|1996-02-16|1-URGENT|Clerk#000001938|0|xpress hockey players. accounts wake sl| +69486|360796|F|234906.51|1994-11-17|3-MEDIUM|Clerk#000003405|0|ely ironic gifts eat fluffily| +69487|141848|O|32822.23|1995-09-07|2-HIGH|Clerk#000004597|0|accounts! carefully c| +69512|531331|F|134300.23|1993-07-23|4-NOT SPECIFIED|Clerk#000003536|0|nis sleep. ironic, even | +69513|575456|F|126412.34|1992-12-24|5-LOW|Clerk#000004552|0|ic foxes after the carefully ironic ideas engage blithe| +69514|426706|O|37836.30|1998-03-08|2-HIGH|Clerk#000003744|0|slyly special pinto beans sublate among the quickly regular pinto beans. p| +69515|115268|F|87685.96|1994-06-03|3-MEDIUM|Clerk#000004937|0| bold accounts engage blithely ironic deposits. unusual escapade| +69516|56527|F|168372.95|1993-08-09|1-URGENT|Clerk#000002014|0|regular accounts. instruc| +69517|546139|O|182953.89|1996-08-14|2-HIGH|Clerk#000000427|0|lyly above the expre| +69518|441274|F|29342.52|1992-04-08|4-NOT SPECIFIED|Clerk#000002192|0|se carefully. brave deposits alongside| +69519|459214|F|58785.75|1992-04-11|1-URGENT|Clerk#000000996|0|carefully blithely regular platelets! carefully final dolphi| +69544|496817|F|31572.03|1995-03-21|3-MEDIUM|Clerk#000002158|0|silent packages. fluffily special ideas c| +69545|236578|O|315027.64|1998-06-24|3-MEDIUM|Clerk#000001657|0|ly final platelets sleep blithely along the| +69546|416317|F|285147.86|1993-06-03|4-NOT SPECIFIED|Clerk#000004008|0|ding foxes. quickly final dependencies cajole. ironic in| +69547|288869|F|109583.77|1993-01-04|2-HIGH|Clerk#000002912|0|t theodolites. regular, dogged accounts| +69548|260288|F|41666.17|1992-04-25|5-LOW|Clerk#000000401|0|ending pinto beans wak| +69549|659200|O|27127.18|1995-06-28|3-MEDIUM|Clerk#000003916|0| ironic, express Tiresias. slyly regular deposits boost near the regu| +69550|156227|O|243899.89|1997-01-27|5-LOW|Clerk#000004551|0|instructions may are. pinto beans cajole carefully among the final theodolite| +69551|696587|F|190940.23|1995-01-23|2-HIGH|Clerk#000002644|0|indle across the bl| +69576|28669|O|275549.21|1997-01-31|3-MEDIUM|Clerk#000003688|0|ual platelets across the slyly special packages mold slyly above the slyly| +69577|321028|O|139627.28|1998-02-12|4-NOT SPECIFIED|Clerk#000004635|0|olites sleep slyly among the bold, r| +69578|15920|F|78231.51|1994-02-14|2-HIGH|Clerk#000001842|0|ironic requests boost blithely ironic deposits. blithely| +69579|556748|F|193137.08|1995-02-01|2-HIGH|Clerk#000001750|0|into beans wake slyly special accounts. blithely final foxes after t| +69580|262384|O|188477.21|1998-01-30|4-NOT SPECIFIED|Clerk#000003632|0| requests; regular theodolites caj| +69581|634213|O|84858.51|1997-09-14|4-NOT SPECIFIED|Clerk#000003150|0|y special dependencies are carefully unusual requests. blithely | +69582|195787|F|298796.23|1994-08-26|5-LOW|Clerk#000003133|0|egular, ironic dependencies cajole furiously about the even, quiet pinto | +69583|320185|O|328510.38|1996-04-03|5-LOW|Clerk#000002424|0| about the bold requests wake b| +69608|66907|F|257596.58|1992-11-28|1-URGENT|Clerk#000001054|0|ic packages integrate. ironic deposits among| +69609|229996|O|93187.39|1996-11-07|4-NOT SPECIFIED|Clerk#000004514|0|posits. express, regular ideas detect daringly among the slyly unu| +69610|39776|F|146951.21|1994-07-19|5-LOW|Clerk#000003541|0| final deposits across the pe| +69611|256420|O|4570.84|1995-09-06|2-HIGH|Clerk#000003415|0|osely above the slyly| +69612|137009|F|13974.94|1994-06-02|4-NOT SPECIFIED|Clerk#000001762|0|s nag. slyly even asymptotes would promis| +69613|209510|O|145355.09|1998-05-25|5-LOW|Clerk#000003749|0|ss the slyly even ideas! fluffily ironic dolphins | +69614|730805|O|149857.73|1996-12-26|4-NOT SPECIFIED|Clerk#000003640|0|requests. ideas sleep blithely along the ironic accou| +69615|630824|F|118017.08|1992-07-13|3-MEDIUM|Clerk#000000108|0|gged, unusual foxes. slyly stealthy deposits cajole furi| +69640|247598|O|248851.99|1996-04-02|1-URGENT|Clerk#000000234|0|the furiously even instructions. furiously | +69641|365881|O|70996.34|1997-02-27|4-NOT SPECIFIED|Clerk#000000540|0|arefully final accounts. furiously ironic packages across the pending,| +69642|92417|O|179261.19|1998-02-28|4-NOT SPECIFIED|Clerk#000001970|0|eep slyly! regular accounts cajole carefully bold foxes. final accounts again| +69643|748237|F|206775.47|1993-03-28|5-LOW|Clerk#000001424|0|xes. packages are. final, regular requests haggle alongside of the | +69644|358726|F|52654.24|1993-05-30|2-HIGH|Clerk#000000770|0|al excuses use quic| +69645|575584|O|185720.61|1997-01-28|1-URGENT|Clerk#000003029|0|s. fluffily ironic deposits sleep. quickly even notornis after the| +69646|315833|O|160014.02|1998-02-03|4-NOT SPECIFIED|Clerk#000003818|0|atterns use carefully regular orbits. fluffily ironic foxes | +69647|451021|F|327794.39|1992-01-25|3-MEDIUM|Clerk#000000168|0|. courts between the carefully fluffy foxes haggle quietly pending reques| +69672|58907|F|353376.37|1992-07-02|1-URGENT|Clerk#000003707|0|e ironic ideas. regular instructions nag carefully above th| +69673|40810|O|318757.06|1996-02-28|4-NOT SPECIFIED|Clerk#000003888|0|even deposits boost furiously silent pac| +69674|364096|F|128915.28|1993-04-09|4-NOT SPECIFIED|Clerk#000003008|0|ecial foxes affix carefully fin| +69675|95638|F|187661.16|1993-01-30|5-LOW|Clerk#000000163|0|ove the blithely special packages. blithely bold foxes according| +69676|134215|F|273718.82|1993-09-05|2-HIGH|Clerk#000003347|0|uriously along the fluf| +69677|497303|F|272903.23|1992-06-14|3-MEDIUM|Clerk#000000979|0|ly above the ironic deposits. even accounts after the fluffily ironic account| +69678|167674|O|3831.66|1996-12-31|1-URGENT|Clerk#000000788|0|st. slyly bold accounts wake around the ideas. sly| +69679|338939|O|133974.19|1996-11-05|2-HIGH|Clerk#000000233|0|lyly ironic instructions. quic| +69704|294490|O|291390.57|1995-07-16|2-HIGH|Clerk#000003613|0|usly pending ideas sleep among th| +69705|230116|F|338146.66|1994-10-20|2-HIGH|Clerk#000001519|0|ly ironic instructions use after the unusual, bold theod| +69706|555265|O|212682.72|1997-02-05|2-HIGH|Clerk#000002784|0|its. unusual theodolites wake slyly. close instructions among the ev| +69707|58196|O|348397.98|1996-10-22|2-HIGH|Clerk#000000572|0|y final platelets after the deposits are som| +69708|86509|O|160809.19|1997-01-17|5-LOW|Clerk#000001426|0|ts haggle carefully final pains. furiously final deposits sleep | +69709|449396|O|205673.32|1995-10-27|2-HIGH|Clerk#000001373|0|al excuses. sentiments det| +69710|496811|F|59098.28|1994-09-28|4-NOT SPECIFIED|Clerk#000003308|0|e accounts unwind across the furiously reg| +69711|150023|F|39248.45|1995-03-16|3-MEDIUM|Clerk#000000788|0|iously according to the slyly regular d| +69736|674149|O|184884.78|1998-03-14|1-URGENT|Clerk#000002278|0|final, special excuses. furiously ironic deposits wake fluffi| +69737|171808|O|52118.22|1995-09-10|5-LOW|Clerk#000004437|0| deposits. slyly ironic dependencies solve. carefully final reque| +69738|69154|O|233587.86|1996-08-19|1-URGENT|Clerk#000001189|0|onic packages mold slyly ironic excuses. regular, final courts ca| +69739|519937|O|210811.88|1995-09-21|2-HIGH|Clerk#000003064|0|riously express requests cajole carefully. furiously even instructions ca| +69740|327106|F|215558.84|1992-07-23|5-LOW|Clerk#000002652|0|as detect. dependencies are quick| +69741|156655|F|219788.34|1992-07-28|5-LOW|Clerk#000000462|0|lly express accounts haggle quickl| +69742|374332|O|352483.81|1997-06-17|1-URGENT|Clerk#000004132|0|cept the furious packages haggle blithely after the final a| +69743|392428|F|180539.10|1994-11-20|5-LOW|Clerk#000000659|0|ld deposits. courts throughout the bold requests poach slyly after| +69768|29837|O|131651.73|1997-06-15|4-NOT SPECIFIED|Clerk#000000939|0|aggle fluffily quickly even accounts-- pending, bold pains sublate blith| +69769|465523|O|305768.55|1995-06-27|2-HIGH|Clerk#000002532|0|eas! furiously pending pinto| +69770|27017|O|256809.47|1997-11-30|5-LOW|Clerk#000003530|0|sts haggle quickly against the blithely unusual requests.| +69771|322967|F|217829.00|1994-09-29|3-MEDIUM|Clerk#000004687|0|heodolites. blithely regular multipliers according to | +69772|345530|F|87612.68|1992-01-10|5-LOW|Clerk#000004309|0|ecial theodolites. foxes grow slyly slyly regular ideas. pending the| +69773|61231|O|99354.44|1995-03-26|4-NOT SPECIFIED|Clerk#000001344|0| packages nag according to the slyly express requests. instructio| +69774|97618|F|107734.39|1994-12-27|4-NOT SPECIFIED|Clerk#000004987|0|ecial platelets! final, special pain| +69775|403384|F|66657.72|1992-08-12|4-NOT SPECIFIED|Clerk#000004792|0|ecial dependencies. quickly pending pin| +69800|401686|O|20538.30|1997-11-25|5-LOW|Clerk#000001993|0|ly above the blithe| +69801|371030|F|107309.71|1994-03-08|2-HIGH|Clerk#000002475|0|al requests. even deposits are theodolites. blithely i| +69802|395284|O|205329.39|1996-05-08|4-NOT SPECIFIED|Clerk#000004041|0|n deposits. carefully slow hockey players cajole| +69803|23377|O|71467.17|1996-07-10|2-HIGH|Clerk#000004406|0|jole carefully pending pearls. unusual pinto beans sleep | +69804|617993|F|143155.93|1992-08-11|3-MEDIUM|Clerk#000003773|0|d have to haggle furiously among the furiously bold packages. s| +69805|593642|O|77928.70|1996-01-05|3-MEDIUM|Clerk#000003019|0|s braids cajole fluffily furiously special pinto beans. | +69806|85184|F|103088.99|1992-02-17|2-HIGH|Clerk#000000941|0|c pinto beans are ruthlessly ironic packages| +69807|683155|O|209259.42|1997-03-14|2-HIGH|Clerk#000003043|0|ges. regularly final requests| +69832|23602|O|35785.64|1997-11-12|3-MEDIUM|Clerk#000003201|0|special requests. carefully special requests accord| +69833|662528|F|186383.27|1992-03-29|4-NOT SPECIFIED|Clerk#000003482|0|osits among the regular dugouts wake quickly slyly special packa| +69834|591961|O|131994.71|1995-09-05|5-LOW|Clerk#000002901|0|s nag slyly against the quickly even ideas. bli| +69835|330697|O|48462.23|1998-07-12|3-MEDIUM|Clerk#000003066|0|hes. slyly ironic escapades sleep furiously | +69836|498454|O|150902.49|1995-07-02|2-HIGH|Clerk#000000038|0|ithely unusual depe| +69837|7798|O|157624.13|1996-04-24|2-HIGH|Clerk#000004875|0|luffily furiously silent excuses. packages are blith| +69838|529687|O|32735.36|1997-01-15|5-LOW|Clerk#000004852|0|arefully final dolph| +69839|691925|O|304908.46|1995-06-30|5-LOW|Clerk#000003289|0|lites. furiously pending| +69864|430306|F|87946.32|1992-06-18|1-URGENT|Clerk#000002010|0|ckly. quickly enticing | +69865|648037|F|115014.87|1992-04-06|4-NOT SPECIFIED|Clerk#000000678|0|packages wake carefully across the quickly pending pinto beans. | +69866|27791|F|264654.31|1994-04-05|3-MEDIUM|Clerk#000001679|0|ake quickly. quickly ironic requests alon| +69867|581062|O|75994.44|1996-04-29|2-HIGH|Clerk#000000504|0|ts sublate blithely. slyly special accounts sleep fluffily darin| +69868|145906|O|42483.24|1996-12-20|1-URGENT|Clerk#000001524|0|unusual theodolites. slowly regular requests haggle| +69869|460975|F|233385.44|1994-05-15|2-HIGH|Clerk#000000098|0|ular asymptotes. slyly regular foxes according to the regular orbits cajole| +69870|81461|F|156992.86|1994-01-20|1-URGENT|Clerk#000002944|0|ctions use accounts. pend| +69871|353561|O|132552.54|1995-06-17|3-MEDIUM|Clerk#000002846|0|s haggle blithely stealthy requests. carefully idle depen| +69896|40373|O|250388.88|1995-06-12|2-HIGH|Clerk#000004549|0|l foxes; always final sauternes sleep | +69897|545494|F|195222.65|1992-11-03|5-LOW|Clerk#000002400|0|g deposits. furiously ironic dependencies cajole: carefully special foxes| +69898|97652|O|64513.31|1997-10-11|3-MEDIUM|Clerk#000001841|0|g requests against the fluffily spe| +69899|229720|F|8761.54|1994-05-19|5-LOW|Clerk#000003558|0|accounts use furiously about the blithely regular courts; unusual, bold depos| +69900|627289|F|223766.03|1992-07-28|4-NOT SPECIFIED|Clerk#000002308|0|ular accounts by the slyly final pearls cajole blithely ag| +69901|85858|O|215901.37|1996-01-05|5-LOW|Clerk#000004345|0|heodolites wake against the | +69902|5662|F|283590.21|1992-03-01|1-URGENT|Clerk#000001250|0|ests. ideas above the special, special d| +69903|635932|F|64098.48|1992-09-02|1-URGENT|Clerk#000001916|0|eas. fluffily regular pinto beans are. blithely bold multipliers sle| +69928|577214|O|45168.62|1996-05-05|3-MEDIUM|Clerk#000001961|0| pending requests. brave pinto beans kindle unusual, final pinto beans. | +69929|720941|O|131317.49|1997-11-08|2-HIGH|Clerk#000003850|0| bold deposits engage. blithely| +69930|602651|O|149197.26|1995-08-22|2-HIGH|Clerk#000002485|0|side of the thin, bold theodolites? slyly bold| +69931|740305|O|300761.99|1998-06-27|4-NOT SPECIFIED|Clerk#000003151|0|refully regular foxe| +69932|542132|F|66146.78|1993-09-23|2-HIGH|Clerk#000004018|0| requests are carefully blithely regu| +69933|601390|F|150038.78|1994-08-22|4-NOT SPECIFIED|Clerk#000000465|0|se about the regular requests. blithely special deposits are slow| +69934|543454|O|247626.17|1997-05-29|2-HIGH|Clerk#000000284|0|re furiously fluffily regular instructions. ironic requests sleep| +69935|326525|O|39124.27|1996-08-23|2-HIGH|Clerk#000004582|0|ke after the furious, fluffy orbits. asympt| +69960|147316|F|159880.73|1992-04-09|5-LOW|Clerk#000003909|0|unts. final theodolites wake slyly around the blithely express packag| +69961|185968|F|257569.25|1995-01-15|1-URGENT|Clerk#000004548|0|lyly ironic pinto beans. final accounts are quickly. carefully regular| +69962|284350|F|227758.95|1992-12-15|1-URGENT|Clerk#000004927|0|haggle. special theodo| +69963|50356|F|183507.40|1994-12-06|5-LOW|Clerk#000002944|0| along the furiously final instructions. carefull| +69964|326663|F|133691.08|1992-07-26|4-NOT SPECIFIED|Clerk#000004004|0|l platelets. final accounts after the blithely furious excuses | +69965|222412|F|275813.63|1993-01-07|3-MEDIUM|Clerk#000000850|0|ic, regular packages use carefully at the furiously regular re| +69966|56873|O|82227.47|1995-06-20|4-NOT SPECIFIED|Clerk#000002555|0|quests. pending, bold request| +69967|352592|F|107232.58|1992-04-17|4-NOT SPECIFIED|Clerk#000003592|0|y about the carefully final requests. platelets are quickly carefully pe| +69992|260137|F|167096.91|1994-11-05|1-URGENT|Clerk#000004165|0|efully regular accounts should have to use slyly after the accounts! furiously| +69993|348199|F|151777.56|1992-05-09|3-MEDIUM|Clerk#000000016|0|l deposits nag. carefully expres| +69994|657542|F|298435.68|1993-05-31|4-NOT SPECIFIED|Clerk#000003108|0|l hockey players. caref| +69995|44920|O|304660.54|1997-02-13|4-NOT SPECIFIED|Clerk#000003432|0|ter the stealthily even courts.| +69996|457288|F|104855.32|1994-07-11|2-HIGH|Clerk#000003743|0|uriously even ideas. bold | +69997|363040|O|63199.43|1996-10-27|1-URGENT|Clerk#000004637|0|atelets: blithely final excuses haggle blithely under the sly| +69998|353515|O|263845.35|1996-10-15|5-LOW|Clerk#000000614|0|quests grow carefully blithely bold p| +69999|26357|O|180355.88|1997-12-29|4-NOT SPECIFIED|Clerk#000003899|0|nic packages wake. blithely even requests across t| +70024|477961|O|227590.88|1995-12-10|2-HIGH|Clerk#000000066|0|lly regular ideas. carefully ruthless packages cajole daringly across the ca| +70025|589396|O|269021.81|1996-12-06|3-MEDIUM|Clerk#000004663|0|ingly unusual courts integrate furi| +70026|709853|O|88126.28|1997-06-06|5-LOW|Clerk#000003010|0| regular asymptotes d| +70027|239998|O|88022.26|1996-11-11|1-URGENT|Clerk#000002802|0| deposits above the even acco| +70028|125869|O|200897.47|1998-05-04|1-URGENT|Clerk#000001494|0|uriously ironic theodolites. slyly regular | +70029|474943|O|151480.79|1997-11-27|4-NOT SPECIFIED|Clerk#000000688|0|nts sleep fluffily instructions.| +70030|103121|O|11039.01|1998-08-02|5-LOW|Clerk#000003314|0|carefully regular gifts. closely pending deposits detect. slyl| +70031|652604|O|275145.82|1996-11-09|1-URGENT|Clerk#000000062|0|gular courts. requests about the regular foxes cajole bl| +70056|299420|O|110224.30|1997-05-08|1-URGENT|Clerk#000002559|0|efully express ideas cajole. carefully regu| +70057|592219|O|42097.76|1997-04-22|1-URGENT|Clerk#000003039|0|efully ironic excuses nag according to the s| +70058|174502|O|136373.02|1996-12-02|1-URGENT|Clerk#000000893|0| platelets. carefully express accounts wake| +70059|331820|O|160730.59|1997-03-19|3-MEDIUM|Clerk#000001381|0|ironic requests. carefully pending pinto beans nod slyly blit| +70060|646031|O|219792.90|1996-05-07|5-LOW|Clerk#000000778|0| even hockey players boost carefully closely bold foxes. slyly ironic wa| +70061|78545|F|334990.93|1992-09-04|1-URGENT|Clerk#000001189|0|otes solve according to t| +70062|96376|O|215680.73|1996-04-20|1-URGENT|Clerk#000001153|0|he daring, regular plate| +70063|541081|O|141651.84|1995-07-07|5-LOW|Clerk#000003469|0|lar, final requests affix accounts. slyly sly foxes snooze fluffily with | +70088|183256|O|260563.27|1995-10-26|1-URGENT|Clerk#000003406|0|sual deposits. furiously unusual requests cajole. blithely sly reque| +70089|460961|F|197604.69|1993-05-20|5-LOW|Clerk#000001479|0|refully regular deposits use. bold, special excuses ar| +70090|610999|F|145455.29|1994-04-30|4-NOT SPECIFIED|Clerk#000001860|0| according to the carefully ruthle| +70091|32722|O|24231.41|1997-11-19|2-HIGH|Clerk#000002788|0|sleep slyly across the slyly unus| +70092|205151|F|228580.31|1993-09-30|1-URGENT|Clerk#000001665|0|sts. regular, ironic p| +70093|215266|F|122864.62|1992-06-10|3-MEDIUM|Clerk#000004196|0|its. furiously ironic requests are slyly busy accounts. blithely furious acc| +70094|694150|F|145619.96|1993-09-17|1-URGENT|Clerk#000004168|0|r, regular accounts. blithely final | +70095|313660|O|109954.83|1997-05-19|3-MEDIUM|Clerk#000001135|0|ounts hang carefully ex| +70120|665734|F|55765.91|1993-02-25|5-LOW|Clerk#000000175|0|tes print carefully even packages. express, express multipl| +70121|475933|F|122734.79|1993-11-10|3-MEDIUM|Clerk#000000136|0|ld accounts haggle carefully care| +70122|235381|F|62170.44|1994-01-12|1-URGENT|Clerk#000004082|0|even pinto beans. thin asymptotes nag quickly expre| +70123|538072|O|35310.96|1997-07-29|2-HIGH|Clerk#000004473|0|re slyly after the quic| +70124|611317|O|17722.30|1995-08-29|4-NOT SPECIFIED|Clerk#000000317|0|ncies. slyly even theodolites wake quickly. final accounts wake | +70125|151303|F|229535.64|1993-11-10|4-NOT SPECIFIED|Clerk#000003473|0| finally. fluffily ironic platelets haggle slyly bold pearls. special, ironic | +70126|432076|O|313577.02|1997-06-26|4-NOT SPECIFIED|Clerk#000002789|0|ead of the final, regular theodoli| +70127|369880|F|250125.30|1994-05-08|2-HIGH|Clerk#000001197|0|fully about the fluffily even requests. pending accounts ca| +70152|567970|O|180459.74|1996-09-14|2-HIGH|Clerk#000003165|0|sly regular accounts nod among the express asymptotes! final theodolites i| +70153|594218|F|72823.79|1993-07-08|3-MEDIUM|Clerk#000003577|0|kages. pending, bold deposits c| +70154|18667|F|133405.90|1994-07-11|2-HIGH|Clerk#000003753|0|ests detect. carefully bold instr| +70155|224393|O|15641.52|1995-07-09|2-HIGH|Clerk#000001028|0|nts. slyly even requests nag slyly at the carefully regular i| +70156|365996|O|17582.64|1997-07-17|3-MEDIUM|Clerk#000001217|0|ress ideas doubt. carefully ironic pinto beans doze quick| +70157|540268|O|186165.17|1997-08-05|1-URGENT|Clerk#000003172|0|ide of the final, reg| +70158|17563|F|84071.84|1992-06-30|3-MEDIUM|Clerk#000004240|0|are slyly furiously final instructions. ironic, even deposits are quickly | +70159|428128|O|109782.52|1996-09-15|4-NOT SPECIFIED|Clerk#000001658|0|old foxes. final, silent theodolites wake regular, express requests.| +70184|46367|F|34423.54|1994-09-01|1-URGENT|Clerk#000003957|0|accounts. regular accounts according to the blithely even pa| +70185|24182|F|73989.15|1993-09-30|2-HIGH|Clerk#000002869|0|ld dependencies. carefully regular packages | +70186|670192|O|258143.65|1997-12-06|4-NOT SPECIFIED|Clerk#000001696|0|ar requests. ironic dependencies haggle | +70187|414124|O|46805.63|1997-01-29|3-MEDIUM|Clerk#000003703|0| platelets sleep fluffily even foxes. blithely | +70188|178138|F|293403.08|1993-10-17|4-NOT SPECIFIED|Clerk#000003281|0|arefully quickly final theodolites. blithely regular| +70189|691469|P|207858.96|1995-04-10|1-URGENT|Clerk#000003188|0| final pinto beans maintain carefully according to the even foxes; fluffily r| +70190|267659|O|227213.33|1998-02-09|3-MEDIUM|Clerk#000001886|0| final platelets cajole blithely. always quick accounts cajole | +70191|31768|F|153346.88|1992-02-27|1-URGENT|Clerk#000004883|0|ges cajole blithely theodolit| +70216|652234|F|157665.27|1992-01-10|4-NOT SPECIFIED|Clerk#000002433|0|counts sleep carefully ironic packages. furio| +70217|65911|F|83195.85|1993-11-28|3-MEDIUM|Clerk#000003840|0|unts wake blithely furiously special depo| +70218|749524|O|265631.64|1998-07-12|3-MEDIUM|Clerk#000001664|0|y enticingly regular theodolites?| +70219|236605|O|391497.83|1996-12-25|4-NOT SPECIFIED|Clerk#000001526|0|kly. packages use slyly theodolites. deposits are slyly across the thin dep| +70220|103334|O|82280.73|1995-09-12|4-NOT SPECIFIED|Clerk#000001478|0|ng instructions. slyly regular f| +70221|477421|P|199485.87|1995-06-03|4-NOT SPECIFIED|Clerk#000004141|0|. dinos at the blithely special packages integrate furiously u| +70222|505874|F|11118.92|1994-06-27|4-NOT SPECIFIED|Clerk#000000752|0|quickly regular braids after t| +70223|223916|F|121277.46|1993-08-09|4-NOT SPECIFIED|Clerk#000000580|0|eans across the slyly ironic platelets| +70248|595997|F|236424.94|1992-08-08|2-HIGH|Clerk#000002984|0|ously final instructions. ironic, regular deposits haggle abo| +70249|658592|O|70899.57|1997-08-13|5-LOW|Clerk#000000514|0|s boost about the carefully unusual pinto beans. ironic depo| +70250|452993|O|92676.34|1998-01-13|3-MEDIUM|Clerk#000004500|0|reach slyly carefully blithe foxes. unusual, unusual | +70251|197954|O|69619.93|1998-01-15|1-URGENT|Clerk#000004599|0|regular pinto beans are against the fu| +70252|747925|O|112209.64|1996-09-15|5-LOW|Clerk#000004077|0|ts are carefully fi| +70253|373366|O|169991.00|1998-05-22|1-URGENT|Clerk#000002244|0|ual dependencies are quickly above the foxes. quickly special| +70254|634889|O|248833.54|1996-07-10|4-NOT SPECIFIED|Clerk#000002523|0|uests after the ideas unwind q| +70255|325012|O|184811.01|1997-05-28|3-MEDIUM|Clerk#000003383|0|ven packages-- carefully ironic account| +70280|219748|O|199545.54|1995-12-28|3-MEDIUM|Clerk#000002911|0|bout the fluffily special deposits: regular, ironic deposits| +70281|292264|O|174776.21|1997-12-01|2-HIGH|Clerk#000003358|0| slyly regular packages wake slyly. furiously silent excuses cajole carefull| +70282|311146|O|101558.21|1995-10-23|5-LOW|Clerk#000002379|0|yly regular pinto beans wake slyly. slyly regular attainments| +70283|409093|O|122691.79|1997-03-12|4-NOT SPECIFIED|Clerk#000003420|0|ress packages integrate blithely regular accounts. special accounts are slyly | +70284|350233|F|276397.41|1992-08-30|2-HIGH|Clerk#000004979|0|are blithely. unusual requests haggle idly after the blithe| +70285|365440|F|154252.86|1992-06-07|1-URGENT|Clerk#000002404|0|heodolites can solve carefully regular packages. pending theodoli| +70286|183532|F|68701.32|1994-07-26|4-NOT SPECIFIED|Clerk#000003230|0|sly along the slyly final requests! | +70287|613211|F|316330.50|1994-07-20|3-MEDIUM|Clerk#000004526|0|eodolites. blithely final | +70312|480133|F|48443.43|1992-09-08|4-NOT SPECIFIED|Clerk#000001004|0|ss the furiously special foxes. furiously silent foxes haggle f| +70313|332309|F|152894.08|1992-11-03|5-LOW|Clerk#000003648|0| carefully regular excuses against the quickly regular ideas| +70314|614359|F|117105.23|1993-07-26|1-URGENT|Clerk#000000864|0|ts above the special platelets inte| +70315|259309|F|287189.45|1993-09-01|5-LOW|Clerk#000000404|0|s sleep slyly final, final foxes. pinto bean| +70316|705416|F|21310.44|1995-03-30|2-HIGH|Clerk#000004050|0|ular theodolites believe courts. platelets unwind quickly| +70317|674249|F|16974.03|1994-07-03|1-URGENT|Clerk#000003831|0| unusual pinto beans about the carefully final deposits wake quickly sly| +70318|336260|O|234893.34|1995-12-02|4-NOT SPECIFIED|Clerk#000003581|0|atelets integrate. slyly pending requests cajol| +70319|256519|F|20383.19|1992-10-16|4-NOT SPECIFIED|Clerk#000002390|0|en deposits. packages sleep regular depos| +70344|303920|F|249109.11|1994-09-28|5-LOW|Clerk#000001376|0| blithe theodolites. dugouts nag within the ev| +70345|482626|O|7048.84|1995-08-21|3-MEDIUM|Clerk#000002561|0| requests detect carefully final realms. blithe| +70346|213761|F|364957.90|1992-10-08|3-MEDIUM|Clerk#000003588|0|ironic courts. realms detect. pending theodolites wake blithely against th| +70347|167147|F|169371.01|1994-02-26|5-LOW|Clerk#000003895|0|egular foxes boost slyly. pending accounts cajole | +70348|476809|O|41731.22|1996-08-30|5-LOW|Clerk#000000291|0|grate above the slyly ironic | +70349|716620|P|85941.96|1995-04-07|3-MEDIUM|Clerk#000001652|0|as. carefully silent requests haggle fluff| +70350|710569|F|82574.17|1994-02-17|5-LOW|Clerk#000001802|0|s. final packages sleep slyly whithout the silent| +70351|268256|P|178882.96|1995-02-27|4-NOT SPECIFIED|Clerk#000001555|0|ke slyly blithely final warhorses. pending, close plate| +70376|322666|O|3578.50|1996-02-07|1-URGENT|Clerk#000003442|0|en theodolites? quickly ironic packages boost quickly furiously even ide| +70377|544064|O|90430.75|1996-03-21|1-URGENT|Clerk#000003006|0|s use. blithely final de| +70378|81061|F|155438.96|1992-11-12|5-LOW|Clerk#000000353|0|regular requests are carefully enticing theod| +70379|376151|F|148942.05|1994-03-08|2-HIGH|Clerk#000002901|0| accounts. blithely even packages boost furiously | +70380|209597|O|56726.39|1995-08-11|1-URGENT|Clerk#000003330|0|uriously pending requests poach | +70381|683629|O|241700.69|1995-11-01|1-URGENT|Clerk#000002577|0|fily above the regular excuses. slyly final r| +70382|470629|O|164449.29|1996-02-23|1-URGENT|Clerk#000000426|0|ly ironic, regular ideas. | +70383|335866|F|220100.30|1993-10-03|4-NOT SPECIFIED|Clerk#000001897|0|tes sleep blithely bold| +70408|392507|F|168750.02|1993-09-06|1-URGENT|Clerk#000004850|0|ey players. blithely special ideas eat carefully unusual deposits.| +70409|607042|F|117637.45|1993-02-28|3-MEDIUM|Clerk#000003238|0|r foxes. final packages| +70410|275174|P|140839.89|1995-05-08|2-HIGH|Clerk#000002569|0|nal, thin accounts. silent requests after the slyly careful accounts x-ray al| +70411|333161|F|260086.97|1993-04-12|3-MEDIUM|Clerk#000000273|0|y above the slyly enticing instructions. blithely ironic | +70412|670990|O|293204.94|1998-05-10|3-MEDIUM|Clerk#000002870|0|l ideas cajole carefully. even, even asymptotes are| +70413|296417|F|230146.63|1994-08-11|2-HIGH|Clerk#000000812|0|lar requests sleep closely. quickly close deposits breach carefully sl| +70414|379009|F|155130.30|1993-12-16|4-NOT SPECIFIED|Clerk#000001486|0|ng requests could have to boost fu| +70415|220681|O|51327.82|1997-03-30|4-NOT SPECIFIED|Clerk#000003515|0|final packages haggle--| +70440|210934|F|277023.03|1994-07-24|1-URGENT|Clerk#000000786|0| accounts. slyly ironic foxes beside the carefully silent foxes use | +70441|665485|F|89424.17|1992-07-07|3-MEDIUM|Clerk#000003928|0|blithely express dinos. quickly regular instructions main| +70442|27017|O|112249.30|1997-12-22|1-URGENT|Clerk#000001161|0|al frays. packages sleep quickly! slyly thin deposits among the sp| +70443|311086|O|99166.86|1997-08-12|3-MEDIUM|Clerk#000004363|0|te: regular instructions cajole carefully. bold sheaves cajole express, r| +70444|171167|F|85166.12|1994-03-22|4-NOT SPECIFIED|Clerk#000000932|0|ng excuses into the the| +70445|552352|O|107747.55|1995-04-05|1-URGENT|Clerk#000003904|0|pending, regular deposits. car| +70446|616718|O|112289.55|1996-03-14|2-HIGH|Clerk#000003032|0| even packages according to the blithe foxes are bold warhor| +70447|162718|F|68279.19|1993-09-19|5-LOW|Clerk#000003007|0|fluffily pending foxes are. fluffily final packages nag evenly a| +70472|271642|O|186922.81|1996-03-09|4-NOT SPECIFIED|Clerk#000003629|0| ironic platelets. final, bold requests haggle furiously fluffily reg| +70473|207304|O|154536.28|1998-01-18|5-LOW|Clerk#000000189|0|e of the slyly silent excuses. qui| +70474|378643|F|95920.81|1993-07-30|5-LOW|Clerk#000001414|0|ptotes must boost furiously even deposits. requests haggle alongside| +70475|101432|F|207661.12|1994-05-15|4-NOT SPECIFIED|Clerk#000002449|0|hely regular theodolites. furiously ironic theodolites alongside of the | +70476|4177|F|171188.04|1994-01-03|5-LOW|Clerk#000002180|0|aggle according to the furiously regular foxes. pending requests against | +70477|437489|O|220920.27|1997-04-24|2-HIGH|Clerk#000003607|0|ep furiously furiously express requests. slyl| +70478|611131|O|330688.79|1996-05-05|2-HIGH|Clerk#000004751|0|rding to the carefully pending r| +70479|27760|F|48359.43|1994-04-28|5-LOW|Clerk#000004302|0|are theodolites? slyly even accounts haggle enticingly carefu| +70504|43138|O|92093.51|1998-03-11|5-LOW|Clerk#000000891|0|counts. quickly regular packa| +70505|507766|F|213751.53|1993-05-16|3-MEDIUM|Clerk#000002444|0|warhorses. slyly unusual dependencies sleep quickly. quietly bold ideas nag | +70506|507068|F|206880.07|1993-11-11|5-LOW|Clerk#000002104|0|odolites: foxes breach quickly s| +70507|25931|F|64132.06|1995-01-09|2-HIGH|Clerk#000001027|0|ounts. carefully final packages play ru| +70508|62608|O|116016.27|1996-06-11|3-MEDIUM|Clerk#000004764|0|ave packages. doggedly speci| +70509|732839|P|57179.59|1995-04-21|2-HIGH|Clerk#000001803|0|gs sleep regular request| +70510|313171|O|169299.21|1996-05-10|3-MEDIUM|Clerk#000000619|0|ly ironic ideas. slyly pending platel| +70511|698216|F|51711.96|1992-02-23|3-MEDIUM|Clerk#000003178|0| the quickly ironic instructions. eve| +70536|409330|F|162606.22|1993-11-30|3-MEDIUM|Clerk#000000015|0| requests boost sly| +70537|581492|F|208693.31|1993-09-28|5-LOW|Clerk#000002488|0|pending packages agai| +70538|625192|O|196057.95|1997-01-02|3-MEDIUM|Clerk#000003563|0| accounts hang. furiously silent realms wake furiously ironic inst| +70539|99722|O|301192.28|1997-04-12|5-LOW|Clerk#000000718|0|regular asymptotes according to the blithely ironic accounts wake fluf| +70540|518020|F|239182.71|1992-04-27|1-URGENT|Clerk#000002791|0|ckages. furiously silent asymptotes use quickly| +70541|358270|F|241664.24|1993-12-17|3-MEDIUM|Clerk#000003088|0|s eat. slyly final pack| +70542|432476|F|160996.14|1994-03-29|3-MEDIUM|Clerk#000001149|0|lithely regular ideas. regular requests cajole blithely. slyly| +70543|366538|O|67241.10|1997-09-05|4-NOT SPECIFIED|Clerk#000002398|0|lyly final asymptotes. accounts s| +70568|633052|O|149275.44|1997-02-04|2-HIGH|Clerk#000000463|0|gs cajole slyly. ironic, bold foxes use furiously depende| +70569|178474|O|123919.46|1996-04-10|5-LOW|Clerk#000000658|0| among the slyly regular packa| +70570|331028|O|329378.86|1995-11-07|5-LOW|Clerk#000003546|0|the ironic foxes. carefully ruth| +70571|76075|O|159017.24|1997-08-29|3-MEDIUM|Clerk#000000186|0|gainst the regular excuses; furiously special waters by the bli| +70572|576157|F|88724.03|1992-09-05|5-LOW|Clerk#000002820|0|s the quickly special theodolites. th| +70573|213557|O|229575.23|1996-03-09|1-URGENT|Clerk#000000860|0|ake across the quickly pending requests. blithely unusual asymptotes haggle| +70574|496106|F|151358.83|1992-01-18|5-LOW|Clerk#000001703|0|y even courts use. blithely even foxes | +70575|290585|O|89731.16|1995-08-08|4-NOT SPECIFIED|Clerk#000003491|0|ests. unusual, expr| +70600|596096|F|54874.12|1992-01-06|3-MEDIUM|Clerk#000000619|0|uickly. special packages hinder blithely. regular, idle| +70601|76190|F|212855.85|1993-06-09|4-NOT SPECIFIED|Clerk#000003183|0|le enticingly final, regular foxes. pending packages haggle pending deposits. | +70602|268549|F|221226.41|1994-06-12|3-MEDIUM|Clerk#000001022|0|cing accounts are ironically express foxes. dependenci| +70603|735277|O|80605.89|1996-12-22|1-URGENT|Clerk#000002391|0| blithely after the regular packa| +70604|30797|O|192325.30|1996-02-18|3-MEDIUM|Clerk#000000117|0|ar instructions. furiously regular accounts are about the regular | +70605|102901|F|215559.58|1994-12-17|4-NOT SPECIFIED|Clerk#000002029|0|oss the even deposits. blithely even plate| +70606|699298|F|28869.19|1992-09-06|2-HIGH|Clerk#000002091|0|furiously ironic excuses. final | +70607|571330|O|112955.89|1997-11-24|2-HIGH|Clerk#000001862|0|oss the furiously unusual req| +70632|60146|O|164632.04|1997-05-06|3-MEDIUM|Clerk#000000743|0|pecial requests across the | +70633|614465|O|182132.35|1996-09-27|4-NOT SPECIFIED|Clerk#000001467|0|ronic deposits. slyly pending ideas unwind | +70634|548929|F|191615.08|1994-06-06|2-HIGH|Clerk#000002723|0|odolites haggle carefully.| +70635|76627|F|131339.52|1992-08-29|2-HIGH|Clerk#000000457|0|osits poach slyly blithely ironic | +70636|104150|F|48761.50|1992-05-29|5-LOW|Clerk#000001047|0| cajole according to the excuses| +70637|683338|F|266236.96|1994-01-12|5-LOW|Clerk#000001554|0|s sublate carefully excuses. furi| +70638|110054|O|113951.70|1995-10-04|3-MEDIUM|Clerk#000002170|0|eas nag special asymptotes. bold, special requests| +70639|161002|F|71627.88|1993-04-15|1-URGENT|Clerk#000003971|0| the slyly even accounts breach fluffily alongside of the requests.| +70664|701552|F|77529.34|1992-04-10|4-NOT SPECIFIED|Clerk#000000554|0|to the express, silent pinto beans. furiously thin ideas wake blith| +70665|233960|F|258160.81|1994-04-12|5-LOW|Clerk#000002397|0|ronic, final packages detect quickly caref| +70666|649612|O|266467.30|1998-02-02|4-NOT SPECIFIED|Clerk#000002252|0|y across the furiously final packages. requests wake carefully a| +70667|261532|F|255016.99|1992-08-18|4-NOT SPECIFIED|Clerk#000003144|0|ly ironic deposits cajole blithely furiously special accounts. pe| +70668|565045|O|38214.19|1998-07-30|5-LOW|Clerk#000003964|0|ages haggle furiously. fluffily ironic accounts wake above the carefully car| +70669|185143|F|233731.86|1994-09-04|1-URGENT|Clerk#000001968|0|ounts cajole fluffily slyly | +70670|666866|P|97927.91|1995-03-24|4-NOT SPECIFIED|Clerk#000002433|0|usly up the furiously even accounts: fl| +70671|12964|O|24869.59|1996-11-11|3-MEDIUM|Clerk#000002687|0|ly silent requests. express, express accounts after the iron| +70696|362207|O|64439.48|1998-03-16|5-LOW|Clerk#000000998|0|ccording to the slyly final theodolites. final, fin| +70697|608195|O|211314.23|1996-04-08|5-LOW|Clerk#000000844|0|deas breach above the quickly ironi| +70698|167848|O|163199.19|1995-04-22|5-LOW|Clerk#000003451|0| packages. ironic accounts cajole fluffily above the slyly r| +70699|267271|F|162403.75|1994-10-29|1-URGENT|Clerk#000004875|0|blithely even tithes. f| +70700|269261|O|228661.90|1996-02-17|4-NOT SPECIFIED|Clerk#000003945|0|the blithely regular accounts. packages slee| +70701|717581|O|354609.23|1996-12-27|3-MEDIUM|Clerk#000003867|0|uriously unusual ideas. quickly regular dep| +70702|370588|F|2121.44|1992-09-04|4-NOT SPECIFIED|Clerk#000001150|0|e blithely quickly ironic dependencies. fluffily unusual ideas | +70703|446473|F|154730.30|1994-06-27|3-MEDIUM|Clerk#000004283|0|uickly bold accounts haggle fluff| +70728|98324|O|234737.62|1995-12-02|2-HIGH|Clerk#000004272|0|uests wake slyly after the carefully even accounts. exp| +70729|268850|F|90492.81|1992-03-25|5-LOW|Clerk#000003348|0|ily. carefully ironic packages against the quick| +70730|546721|O|179433.61|1996-10-20|5-LOW|Clerk#000001328|0|gular dinos. fluffily express pinto beans above the furiously even acco| +70731|471649|O|234760.31|1995-07-23|5-LOW|Clerk#000003134|0| even, ironic theodolites. carefully special t| +70732|221155|F|87800.50|1994-08-11|1-URGENT|Clerk#000001757|0|lyly bold theodolites sleep. carefully ironic pinto beans until the carefully| +70733|672001|F|98519.95|1993-01-15|2-HIGH|Clerk#000001578|0|al platelets. unusual a| +70734|67615|O|206562.07|1996-10-28|4-NOT SPECIFIED|Clerk#000004971|0|inal deposits cajole. blithely final ideas print fluffily | +70735|133511|F|351215.13|1992-05-09|5-LOW|Clerk#000002357|0| silent accounts afte| +70760|655768|O|216147.43|1995-08-10|1-URGENT|Clerk#000000026|0|s cajole packages. blit| +70761|232312|O|82555.18|1997-07-22|5-LOW|Clerk#000000118|0|otes. blithely bold asymptotes haggle furiously ironic requests. blithely| +70762|690496|F|103146.29|1994-11-06|1-URGENT|Clerk#000003278|0|requests nag according to the ironic accounts. final requests cajole blithely| +70763|406061|F|236195.61|1994-02-21|4-NOT SPECIFIED|Clerk#000002843|0|bout the slyly regular packages sleep furiously carefully regular waters. i| +70764|400511|F|261535.04|1993-09-18|5-LOW|Clerk#000004089|0|ross the pending, regular dinos boost thinly across the | +70765|128095|O|211023.71|1995-06-09|4-NOT SPECIFIED|Clerk#000003145|0|yly pending requests. dependencies play carefull| +70766|369002|O|308076.17|1995-12-29|1-URGENT|Clerk#000002180|0|totes wake slyly ironic packages. careful| +70767|64513|F|73357.11|1994-02-19|3-MEDIUM|Clerk#000003008|0|he unusual foxes. quickly special | +70792|518825|O|205075.36|1996-12-15|2-HIGH|Clerk#000001825|0|tructions. ideas wake blithely above the fin| +70793|387121|F|79580.64|1994-03-22|2-HIGH|Clerk#000002147|0|inst the fluffily fina| +70794|59968|O|198969.68|1997-03-06|4-NOT SPECIFIED|Clerk#000004692|0|inal deposits wake quickly final asympt| +70795|611011|O|165784.84|1997-07-26|5-LOW|Clerk#000003056|0| regular deposits. quickly even theodolites nag furiously. ca| +70796|258697|O|86778.70|1997-06-18|3-MEDIUM|Clerk#000004029|0|ise silently always unusual requests. express excuses are against t| +70797|161477|P|238178.67|1995-04-21|3-MEDIUM|Clerk#000003602|0|as slyly alongside of the furiously regular foxes. special accounts| +70798|435535|O|103905.75|1996-02-16|1-URGENT|Clerk#000002466|0|lly regular pinto beans hagg| +70799|28735|O|36476.70|1998-04-04|2-HIGH|Clerk#000000705|0| pending pinto beans. evenly ironic theodolites integrate sometimes spe| +70824|668489|F|21126.31|1994-02-10|3-MEDIUM|Clerk#000001750|0|ate carefully fluffily pending packages. final packages inte| +70825|283801|F|165358.24|1992-06-03|1-URGENT|Clerk#000002637|0|r, final asymptotes cajole slyly. regular deposits serve against the u| +70826|568660|O|73102.91|1997-05-02|3-MEDIUM|Clerk#000000901|0|y sometimes silent excuses. even request| +70827|185783|O|273203.43|1997-01-18|2-HIGH|Clerk#000003047|0|al packages believe car| +70828|202846|F|156311.78|1993-07-17|2-HIGH|Clerk#000003096|0|ithely ironic foxes. carefully regular frets | +70829|466648|F|91469.53|1993-12-26|1-URGENT|Clerk#000003007|0|nto beans after the foxes wake fluffily | +70830|198538|O|158304.67|1996-11-23|3-MEDIUM|Clerk#000002352|0|are about the slyly bold tithes. care| +70831|50695|O|21429.87|1997-08-23|1-URGENT|Clerk#000004799|0|ounts use furiously. slyly quiet d| +70856|747802|F|154698.67|1994-12-10|1-URGENT|Clerk#000004405|0|gle furiously. requests above the quickly bold asymptotes are quickly quickly| +70857|535802|F|311913.09|1993-06-04|3-MEDIUM|Clerk#000003680|0|g asymptotes use carefully carefully ironic instructions. slyly| +70858|718738|O|171698.68|1998-05-20|2-HIGH|Clerk#000001206|0|requests. ironic accounts detect a| +70859|317200|F|36536.74|1992-10-24|4-NOT SPECIFIED|Clerk#000000415|0|ely. quickly unusual excuses are quickly a| +70860|156134|O|65124.22|1996-03-21|4-NOT SPECIFIED|Clerk#000004422|0|into beans across the quickly special requests are quick| +70861|639577|O|257496.34|1995-07-05|2-HIGH|Clerk#000002524|0|s affix furiously. even requests use furiously alongside| +70862|342061|O|184692.84|1996-03-31|2-HIGH|Clerk#000003682|0|silent decoys. busy requests nag carefully blithely ironic foxes. | +70863|236908|O|73747.15|1996-01-02|3-MEDIUM|Clerk#000002298|0|equests across the packages detect blithely quickly express accounts. caref| +70888|709412|O|115468.57|1998-05-29|2-HIGH|Clerk#000003740|0|long the carefully regular packages. slyly| +70889|328277|O|176463.64|1996-08-24|5-LOW|Clerk#000003246|0|le blithely. regular excuses above the ironic ideas wake fina| +70890|341281|O|47063.63|1995-12-25|3-MEDIUM|Clerk#000002768|0|al, regular requests. dinos haggle. regular, b| +70891|628324|P|121890.52|1995-04-27|1-URGENT|Clerk#000001363|0|uests sleep carefully. carefully special instructions use c| +70892|213838|F|73228.70|1993-04-16|4-NOT SPECIFIED|Clerk#000003354|0|uffily ironic deposits. final in| +70893|706198|O|223649.11|1996-03-09|2-HIGH|Clerk#000002592|0|te slyly between the pinto beans.| +70894|289744|O|28439.65|1996-07-10|2-HIGH|Clerk#000001993|0|ong the slyly regular theodolites. carefu| +70895|696817|O|87805.49|1997-10-01|4-NOT SPECIFIED|Clerk#000001529|0|posits across the fur| +70920|139198|O|353641.23|1996-12-03|5-LOW|Clerk#000004300|0|to the quiet courts. ironic, unusual ideas sleep carefully ironic exc| +70921|228862|O|273531.28|1996-07-29|3-MEDIUM|Clerk#000000407|0|ingly special requests. furiously regular deposits boost pending, iro| +70922|464410|F|391803.11|1993-12-30|5-LOW|Clerk#000004954|0|. slyly express deposits use| +70923|74623|F|16584.55|1993-10-01|1-URGENT|Clerk#000001120|0|mas. asymptotes sleep furiously unusual, special foxes. quickly iro| +70924|173117|F|312109.38|1992-07-22|5-LOW|Clerk#000004610|0|uests. silent ideas among the special accounts haggle fluff| +70925|319972|O|206911.79|1997-05-01|3-MEDIUM|Clerk#000001684|0|wake furiously specia| +70926|237716|F|173488.00|1992-08-09|5-LOW|Clerk#000003335|0|lar dependencies. sly,| +70927|26803|O|48315.26|1997-05-26|1-URGENT|Clerk#000002228|0|lithely ironic requests nag | +70952|463606|O|47845.62|1996-01-30|1-URGENT|Clerk#000004474|0|e. special ideas cajole slyly regular, ironic deposits. fur| +70953|64163|O|257573.16|1998-02-14|2-HIGH|Clerk#000003307|0|deposits. fluffily silent requests was across the carefully expr| +70954|626545|F|48701.78|1993-09-29|4-NOT SPECIFIED|Clerk#000002525|0|e regular, quiet packa| +70955|309103|F|66270.11|1994-01-09|1-URGENT|Clerk#000001615|0|ual gifts. special, even pinto beans insi| +70956|575218|F|293337.55|1994-11-05|2-HIGH|Clerk#000002859|0|sits cajole quickly. slyly special packages above the furiously regula| +70957|163615|F|181557.10|1992-11-29|5-LOW|Clerk#000000881|0|blithely even packages. sentim| +70958|358447|F|165372.85|1994-11-15|4-NOT SPECIFIED|Clerk#000001413|0|uickly pending instru| +70959|404591|F|9525.25|1992-01-26|5-LOW|Clerk#000004347|0|p even deposits. ironic, u| +70984|446581|F|218807.09|1994-01-02|4-NOT SPECIFIED|Clerk#000004262|0|sits hinder fluffily even, express deposits. blithely ironi| +70985|415589|O|214238.24|1997-05-23|5-LOW|Clerk#000000977|0|y unusual platelets sleep above the| +70986|47296|O|236051.43|1996-10-10|5-LOW|Clerk#000000134|0|nal courts can use along the regular attainments. blit| +70987|652423|F|188541.90|1993-11-29|2-HIGH|Clerk#000003658|0|es boost doggedly ironic r| +70988|250318|O|129415.19|1997-11-22|4-NOT SPECIFIED|Clerk#000004341|0|xcuses boost slyly blithely unusual pinto beans. thinly ruthless accounts | +70989|324955|F|97147.33|1992-03-02|3-MEDIUM|Clerk#000001858|0|sts hang fluffily. slyly quiet deposits wake according to the packages| +70990|2410|F|202119.55|1993-05-24|2-HIGH|Clerk#000001349|0|y final ideas cajole even accounts. busy, ironi| +70991|721649|O|169103.30|1997-12-05|5-LOW|Clerk#000003388|0|ily pending instructions across th| +71016|493322|F|65845.23|1992-03-19|3-MEDIUM|Clerk#000000678|0|ans around the furiously special account| +71017|2786|F|32886.81|1994-04-16|4-NOT SPECIFIED|Clerk#000000452|0|eas kindle blithely. carefully regular requests wake blithe| +71018|319690|F|224257.50|1994-01-30|4-NOT SPECIFIED|Clerk#000000791|0|l dolphins. furiously unusual dugouts cajole closely. regular, even| +71019|10009|F|284127.14|1993-12-16|5-LOW|Clerk#000002852|0|p fluffily slyly ironic deposits. ironic a| +71020|218968|O|129397.05|1998-07-05|5-LOW|Clerk#000000966|0|ronically express tithes are. slyly quick accounts according to the pendi| +71021|684206|F|290286.87|1992-10-04|5-LOW|Clerk#000004003|0|requests. carefully final packa| +71022|444371|F|41363.90|1993-02-04|2-HIGH|Clerk#000002923|0|y enticing asymptotes cajole a| +71023|40372|O|78960.22|1998-02-23|4-NOT SPECIFIED|Clerk#000001876|0|even packages wake above the blithely ironic reques| +71048|507580|F|93502.42|1993-01-12|1-URGENT|Clerk#000003629|0|e blithely pending p| +71049|395722|O|51814.10|1997-12-28|5-LOW|Clerk#000001206|0|nic foxes use fluffily. quickly blithe ideas sleep blithely around the | +71050|638638|F|201443.42|1993-08-28|1-URGENT|Clerk#000001065|0|es are blithely through the b| +71051|311387|F|27308.39|1992-05-02|3-MEDIUM|Clerk#000000917|0|ng dolphins use carefully. carefully final packages run.| +71052|728168|F|52358.61|1993-10-12|1-URGENT|Clerk#000003352|0|ions integrate. carefully regular packages wake slyly. pending theodolites | +71053|562624|O|21416.37|1996-01-01|3-MEDIUM|Clerk#000002037|0|ely quietly bold accounts. brave excuses sleep carefully according to| +71054|740050|F|13031.92|1994-05-17|3-MEDIUM|Clerk#000000687|0| final packages wake fur| +71055|736810|O|36979.18|1997-06-29|1-URGENT|Clerk#000003221|0|slyly bold requests about the slyly ironic packages should have to| +71080|289327|F|135552.60|1993-07-19|3-MEDIUM|Clerk#000001149|0|ckages; final, regular accounts h| +71081|466589|O|264303.53|1998-01-02|1-URGENT|Clerk#000003805|0| against the blithely unusual foxes. carefully ironic req| +71082|710366|F|130168.09|1992-07-01|1-URGENT|Clerk#000004793|0|ly final pinto beans. fluffily silent accounts boost evenly unusual re| +71083|609371|O|112234.10|1996-06-24|4-NOT SPECIFIED|Clerk#000000957|0|e final foxes; sometimes unusual theodolites snooze slyly ironic, reg| +71084|447512|F|118424.71|1994-07-15|1-URGENT|Clerk#000003116|0|ependencies wake quickly after the carefully pending requests. ideas acco| +71085|317509|O|176041.92|1997-12-04|1-URGENT|Clerk#000004059|0|ly ironic accounts detect quickly.| +71086|94999|O|199185.02|1995-06-27|3-MEDIUM|Clerk#000003611|0|ccounts? quickly re| +71087|647155|O|121108.19|1998-07-16|2-HIGH|Clerk#000001052|0|ges haggle blithely. ironic accounts about the requests wake c| +71112|220564|F|95904.44|1992-06-16|5-LOW|Clerk#000004852|0|ously final tithes about the carefully regular deposits wake quickly special| +71113|492412|F|28429.11|1993-04-20|4-NOT SPECIFIED|Clerk#000000062|0| the slyly ironic foxes affi| +71114|439090|O|123659.27|1995-06-10|5-LOW|Clerk#000004020|0|c dependencies breach furiously regular pinto beans. careful, final request| +71115|526154|F|98168.63|1993-01-09|5-LOW|Clerk#000004416|0|packages. carefully| +71116|565979|F|38090.69|1992-03-24|3-MEDIUM|Clerk#000004608|0|y. carefully final packages are blithely special accounts. regular, blithe | +71117|158161|F|142277.45|1993-11-15|2-HIGH|Clerk#000004565|0|ons. regular requests integrate care| +71118|202490|O|48439.52|1996-03-06|3-MEDIUM|Clerk#000004131|0|pinto beans haggle blithely regular deposits| +71119|493147|O|83485.76|1997-08-18|3-MEDIUM|Clerk#000000802|0| blithely regular platelets. quickly regular orbits| +71144|54239|O|13610.75|1998-01-26|3-MEDIUM|Clerk#000004990|0| carefully against the | +71145|332812|F|58852.76|1995-02-12|3-MEDIUM|Clerk#000003507|0|r the even, final deposit| +71146|43999|F|101234.78|1992-03-20|3-MEDIUM|Clerk#000003210|0|e asymptotes. carefully special packages wake fluffily. quickl| +71147|710354|F|130368.28|1993-09-01|2-HIGH|Clerk#000001943|0|s wake furiously. furiously ironic excuses boost fluffily requests. quickly | +71148|408155|F|163589.45|1992-03-21|2-HIGH|Clerk#000001128|0|ar foxes wake. blithely ironic packages are. ironic pinto beans after the | +71149|360979|O|226063.77|1997-07-08|4-NOT SPECIFIED|Clerk#000004136|0|ackages cajole slyly special accounts. ruthlessly even pinto beans haggle f| +71150|204674|O|138143.69|1995-05-23|2-HIGH|Clerk#000003432|0|pecial, ironic ideas-- quickly express foxes affix | +71151|450109|F|109198.05|1994-10-12|2-HIGH|Clerk#000003786|0|the bold, pending packages. furiously regular| +71176|451481|O|206030.14|1995-12-28|1-URGENT|Clerk#000000876|0|ven instructions! regular, pending attainments| +71177|279883|O|219301.12|1998-04-17|5-LOW|Clerk#000001574|0|e final hockey players: regular, final dependencies thrash fluffily| +71178|725329|O|49823.63|1996-03-18|1-URGENT|Clerk#000004510|0|eat bold, final platelets. final requests ar| +71179|77219|O|245752.46|1996-01-08|1-URGENT|Clerk#000003593|0|lay carefully permanently express Tiresias. regu| +71180|315560|F|198181.43|1994-05-24|2-HIGH|Clerk#000002437|0|lyly above the furiously special in| +71181|361625|O|228722.25|1996-06-27|1-URGENT|Clerk#000004737|0|express frays. carefully regular theodolites haggle furiously. multipliers| +71182|569749|O|319200.50|1996-03-21|4-NOT SPECIFIED|Clerk#000000197|0|ickly ironic packages. idly pending instruc| +71183|507565|F|112833.86|1993-08-09|1-URGENT|Clerk#000002080|0|al packages boost slyly among the ruthlessly re| +71208|124099|O|166261.47|1998-02-16|3-MEDIUM|Clerk#000000157|0|nwind! deposits cajol| +71209|705277|O|255599.05|1997-02-07|5-LOW|Clerk#000001640|0|sly final packages. idle deposit| +71210|584174|O|77786.22|1995-08-28|1-URGENT|Clerk#000004958|0| carefully express foxes. furiously silent foxes through the | +71211|702028|F|83735.22|1992-10-27|1-URGENT|Clerk#000002402|0|gle slyly. fluffily express ideas after the fluffily pe| +71212|709690|O|133642.62|1997-06-30|4-NOT SPECIFIED|Clerk#000002171|0|. ideas breach. boldly final p| +71213|487789|O|196799.80|1998-05-12|4-NOT SPECIFIED|Clerk#000002908|0|p furiously after the furiously regular | +71214|744598|F|85619.08|1992-08-29|3-MEDIUM|Clerk#000003428|0|the attainments. express reques| +71215|690748|O|339917.23|1997-02-01|3-MEDIUM|Clerk#000001219|0|after the fluffily special accoun| +71240|135704|O|27126.42|1995-05-16|4-NOT SPECIFIED|Clerk#000002093|0|its. quickly brave platelets poach fluffily. slyly slow tithes p| +71241|25046|O|45064.49|1998-02-04|1-URGENT|Clerk#000003784|0| sleep thinly according to the blithely final dugou| +71242|190396|O|99595.87|1997-06-12|2-HIGH|Clerk#000003278|0|haggle against the pending accounts; slyly ironic deposits are blith| +71243|453049|O|85093.73|1996-04-27|1-URGENT|Clerk#000001805|0|er the quickly express requests. express dependencie| +71244|376465|F|196889.82|1993-08-27|3-MEDIUM|Clerk#000004984|0|carefully regular packages. ironic deposits across the bold deposits haggle s| +71245|226688|O|140182.21|1998-01-05|3-MEDIUM|Clerk#000003133|0|nto beans need to integrate after th| +71246|694283|O|254059.60|1997-01-21|3-MEDIUM|Clerk#000004326|0|inments cajole blithel| +71247|313228|O|146746.61|1995-07-15|1-URGENT|Clerk#000002763|0|ding deposits. furiously silent packages accordin| +71272|164101|O|120652.79|1996-09-06|4-NOT SPECIFIED|Clerk#000000274|0|even packages nag above the even accounts. bold requests poa| +71273|263915|F|174467.99|1992-02-11|2-HIGH|Clerk#000003643|0|cross the quickly silent accounts.| +71274|106726|F|184285.74|1994-01-12|5-LOW|Clerk#000002862|0| furiously quickly special accounts. dependencies nag | +71275|472574|F|376012.09|1995-02-10|2-HIGH|Clerk#000000560|0|uses wake blithely special deposits. quickly ironic ideas haggle b| +71276|35560|O|146552.90|1997-08-21|2-HIGH|Clerk#000004885|0|o beans sleep furiously final deposits. even accou| +71277|647042|F|199212.85|1992-08-13|2-HIGH|Clerk#000002583|0|furiously ironic accounts use furiously against| +71278|572536|F|120050.19|1994-11-03|3-MEDIUM|Clerk#000003945|0|ccounts. quickly regular foxes among the blithely express excuses unwind blit| +71279|92644|O|28333.21|1996-02-28|1-URGENT|Clerk#000001587|0|t accounts sleep. requests cajole slyly even deposits-- carefully even package| +71304|53167|F|116351.85|1993-08-25|5-LOW|Clerk#000000793|0|oxes. regular, silent packages haggle.| +71305|322111|O|121456.88|1997-09-28|1-URGENT|Clerk#000002357|0|y special excuses affix. slyly final ho| +71306|203864|F|119355.49|1992-09-30|5-LOW|Clerk#000003538|0| platelets. bold accounts ar| +71307|333170|F|171971.81|1993-09-07|1-URGENT|Clerk#000001274|0|phins-- carefully bold accounts nag even dolphins. fur| +71308|83300|O|52299.59|1996-02-19|3-MEDIUM|Clerk#000003404|0|arefully express ex| +71309|508606|F|22297.22|1993-01-14|5-LOW|Clerk#000003020|0|aggle slyly close accounts. furiously bol| +71310|377785|F|101027.56|1993-05-31|4-NOT SPECIFIED|Clerk#000004401|0|press accounts. quickly special deposits| +71311|665767|F|192883.54|1992-02-09|5-LOW|Clerk#000004251|0|ependencies. regular, pending accounts are. furiously reg| +71336|270671|O|99084.49|1997-06-30|4-NOT SPECIFIED|Clerk#000003140|0|s. quickly regular instructions haggle! quickly express request| +71337|410050|O|122477.39|1996-12-28|4-NOT SPECIFIED|Clerk#000004669|0|ong the furiously unusual accounts sleep blithely along the slyly final req| +71338|685312|F|181689.88|1993-11-22|5-LOW|Clerk#000002992|0| busily regular deposits. bold | +71339|286450|F|85888.76|1993-02-21|5-LOW|Clerk#000003814|0|en, slow platelets wake carefully express accounts. ruthless | +71340|99328|O|47654.01|1996-04-30|1-URGENT|Clerk#000003469|0|c deposits wake quickly fluffily special p| +71341|648322|O|172466.20|1997-01-16|2-HIGH|Clerk#000002900|0|ost blithely theodolites| +71342|316303|F|57451.82|1994-03-09|2-HIGH|Clerk#000001095|0| sleep. fluffily regular deposits sleep fluffily. quickly iron| +71343|88858|F|217255.93|1993-09-08|4-NOT SPECIFIED|Clerk#000004402|0|eposits are furiously special ideas. quickly final accounts haggle| +71368|161954|F|186933.38|1994-02-06|3-MEDIUM|Clerk#000002608|0|lar requests are slyly | +71369|198304|F|253876.76|1992-03-21|3-MEDIUM|Clerk#000000284|0|layers mold asymptotes. even accounts haggle fluffily slyly unusual i| +71370|619493|O|66387.60|1997-11-08|1-URGENT|Clerk#000002176|0|requests. furiously silent gifts was | +71371|303742|O|129517.38|1995-10-01|5-LOW|Clerk#000000223|0|bout the unusual, ironic deposits! fluffily silent foxes wake slyly regular| +71372|471253|F|32145.82|1992-02-12|2-HIGH|Clerk#000000680|0|lly permanent foxes sleep. closely pending requests sleep| +71373|340172|O|115833.57|1996-04-02|5-LOW|Clerk#000000999|0|s. blithely enticing instruction| +71374|18313|F|49538.66|1994-03-26|5-LOW|Clerk#000002929|0| foxes about the pin| +71375|268924|O|33282.83|1997-01-07|2-HIGH|Clerk#000000443|0|pendencies. express instructions according to the slyly bo| +71400|284762|O|172080.32|1997-09-12|5-LOW|Clerk#000001294|0|ogged multipliers. ideas nag around the packages. express accounts dou| +71401|237047|O|49534.62|1996-04-02|1-URGENT|Clerk#000002183|0|. furiously even accounts affix furiously. foxe| +71402|43664|O|45733.96|1998-06-05|1-URGENT|Clerk#000004746|0|d the slyly unusual asymptote| +71403|348395|F|121830.15|1992-08-04|2-HIGH|Clerk#000004053|0| regular accounts alongside of the even packages engage blithely silen| +71404|217750|O|108732.84|1997-10-29|3-MEDIUM|Clerk#000002681|0|ar dolphins. slyly ironic asymptote| +71405|458758|F|340440.53|1992-04-08|3-MEDIUM|Clerk#000000948|0|y special pinto beans nag furiously after the foxes. pending deposit| +71406|323041|O|198307.25|1996-10-13|1-URGENT|Clerk#000002402|0| among the furiously regular gif| +71407|73576|F|244706.07|1992-07-25|4-NOT SPECIFIED|Clerk#000000920|0|cording to the enticingly regular requests. furiously ironi| +71432|569992|F|207276.67|1994-10-31|1-URGENT|Clerk#000003169|0|y sly packages boost slyly above the ironic ac| +71433|73231|O|183684.96|1996-11-01|5-LOW|Clerk#000002697|0|pinto beans engage quickly. slyly idle accounts wake furious| +71434|18896|F|47236.38|1993-06-04|3-MEDIUM|Clerk#000003928|0|usly unusual accounts. quiet, regular accounts cajole. quickly regular cour| +71435|324868|O|300241.69|1998-06-04|5-LOW|Clerk#000000888|0| quickly express accounts a| +71436|30656|F|15061.54|1992-06-10|4-NOT SPECIFIED|Clerk#000004106|0|s. furiously even requests print. carefully regular accounts against the| +71437|724820|F|24002.64|1993-11-18|4-NOT SPECIFIED|Clerk#000000548|0|y final requests nag slyly around the dependencies. slyly bold foxes ou| +71438|534680|F|172363.91|1992-06-11|5-LOW|Clerk#000004223|0|ons. carefully even ideas sleep deposits. platel| +71439|616153|F|92881.53|1994-01-06|5-LOW|Clerk#000003418|0|bold packages according to the regular deposits should are blithel| +71464|424310|O|81719.04|1996-10-21|5-LOW|Clerk#000004209|0|al warhorses! slyly special dependencies cajole doggedly| +71465|375541|F|250457.35|1994-03-13|2-HIGH|Clerk#000000694|0|foxes about the pending instructions snooze blithel| +71466|455366|O|164210.80|1997-05-21|2-HIGH|Clerk#000000027|0|hely ironic ideas cajole quickly from the final pinto bea| +71467|334768|F|387776.36|1993-07-21|4-NOT SPECIFIED|Clerk#000002011|0|t furiously slyly even requests. carefully final accounts haggle-- packages us| +71468|665606|F|116265.87|1994-10-14|4-NOT SPECIFIED|Clerk#000004020|0|ccounts haggle regular, final courts. ex| +71469|573943|F|222426.68|1992-02-05|4-NOT SPECIFIED|Clerk#000004693|0|ly special platelets haggle fluff| +71470|500158|F|214981.98|1993-09-08|3-MEDIUM|Clerk#000004469|0|eans alongside of the exp| +71471|137246|F|181847.37|1994-01-13|3-MEDIUM|Clerk#000000213|0|courts sleep carefully among the express foxes. blithely even requests above t| +71496|439819|F|182408.41|1993-01-14|2-HIGH|Clerk#000002413|0|l ideas could wake after the quickly ironic excuses. slyly unusual requests | +71497|8717|F|55909.39|1994-08-07|2-HIGH|Clerk#000004124|0|thy, ironic requests against the furiously final ideas | +71498|240967|O|160289.18|1997-12-21|3-MEDIUM|Clerk#000000198|0|fter the final, final accounts integrate blithely according to| +71499|676417|F|133114.07|1993-01-06|4-NOT SPECIFIED|Clerk#000001534|0|fter the slyly ironic ac| +71500|12799|F|111568.64|1994-02-13|2-HIGH|Clerk#000001078|0|platelets according to the even courts affix| +71501|589043|O|204856.99|1997-03-11|2-HIGH|Clerk#000000071|0|lithely. slyly express pinto be| +71502|34495|F|102391.45|1994-02-15|4-NOT SPECIFIED|Clerk#000002522|0|l requests. blithely ironic braids cajole furiously across the pen| +71503|403|O|129115.53|1995-08-05|3-MEDIUM|Clerk#000000935|0|sly after the blithely pending packages. furiously final packages maintai| +71528|14126|O|57613.23|1998-05-26|3-MEDIUM|Clerk#000004801|0|requests. furiously unus| +71529|407426|F|51673.44|1994-01-31|3-MEDIUM|Clerk#000003411|0|eposits across the blithely u| +71530|95335|F|168871.03|1994-11-16|2-HIGH|Clerk#000003001|0|totes across the blithely unusua| +71531|269456|O|83557.78|1998-03-17|5-LOW|Clerk#000001443|0|ully unusual pinto beans wake caref| +71532|238156|F|173837.21|1992-08-06|1-URGENT|Clerk#000004412|0|rns believe. slyly quick requests cajole carefully. even| +71533|677065|O|40781.16|1998-03-23|1-URGENT|Clerk#000003724|0| furiously even, regular accounts. fluffily regular grouches against the pi| +71534|426874|F|34973.29|1992-01-06|1-URGENT|Clerk#000004568|0|y regular patterns. carefully| +71535|704591|O|279274.89|1996-08-04|5-LOW|Clerk#000003480|0|old pinto beans. ironic packag| +71560|302035|F|22909.31|1994-11-04|5-LOW|Clerk#000003070|0|ggle. ideas promise carefully slyly s| +71561|284275|O|316116.46|1996-12-24|4-NOT SPECIFIED|Clerk#000000209|0|. fluffily regular packages int| +71562|278645|F|283688.63|1994-04-12|3-MEDIUM|Clerk#000002572|0|ual, final theodolites wake care| +71563|185699|O|152355.38|1995-07-28|1-URGENT|Clerk#000001965|0|l theodolites. slyly express accounts impress slyly | +71564|285805|O|299186.18|1996-04-22|3-MEDIUM|Clerk#000000888|0|s. regular requests haggle s| +71565|517612|O|115932.71|1996-04-12|2-HIGH|Clerk#000004402|0|usly. furiously unusual Tiresias boost. ironic, regular requests boost slyl| +71566|237802|O|1338.03|1997-12-08|4-NOT SPECIFIED|Clerk#000004103|0|riously unusual excuses. slyly regular courts are final packages. | +71567|722470|F|125388.17|1993-06-26|2-HIGH|Clerk#000003866|0| mold fluffily slyly special orbits. fluffily bold packages ag| +71592|44987|F|34981.12|1992-08-19|2-HIGH|Clerk#000004463|0|o beans haggle. carefully regular accounts integrate | +71593|90265|F|94171.04|1994-05-15|1-URGENT|Clerk#000001797|0|s, pending packages? close requests cajole sl| +71594|582287|F|252832.21|1993-03-30|5-LOW|Clerk#000004180|0|r foxes. bold realms cajole sly| +71595|491279|O|128077.51|1996-11-15|1-URGENT|Clerk#000003625|0|express requests. regular, final accounts hinder quickly according to the| +71596|168718|F|38659.91|1992-09-14|2-HIGH|Clerk#000001979|0|ven dependencies sleep quickly. carefully ironic accounts breach carefu| +71597|627511|O|202891.33|1996-01-31|4-NOT SPECIFIED|Clerk#000004518|0|le fluffily dependencies. pending, express requests promise c| +71598|51785|F|106867.75|1995-01-01|5-LOW|Clerk#000002854|0|regular deposits integrate slyly across the br| +71599|338437|F|177523.82|1994-02-06|1-URGENT|Clerk#000003628|0|counts unwind blithely| +71624|81586|O|172068.48|1998-07-14|1-URGENT|Clerk#000002406|0| around the special accou| +71625|210589|F|138496.11|1992-06-08|1-URGENT|Clerk#000001537|0|pecial accounts. dolphins | +71626|91004|F|177172.13|1993-05-16|2-HIGH|Clerk#000004384|0|ar packages after the regular accounts | +71627|243743|F|213265.77|1993-05-15|2-HIGH|Clerk#000001814|0|even realms! ironically pending| +71628|74144|F|115223.13|1995-03-14|3-MEDIUM|Clerk#000002584|0|deposits. multipliers maintain quickly about the fluffily | +71629|374527|F|65009.11|1994-08-13|3-MEDIUM|Clerk#000003385|0|efully. regular packages affix fluffily against th| +71630|647872|F|46167.00|1993-05-25|2-HIGH|Clerk#000003038|0|ual pinto beans wake fi| +71631|258002|F|226513.54|1993-12-04|5-LOW|Clerk#000003628|0|ily pending package| +71656|483034|F|91659.13|1994-02-27|4-NOT SPECIFIED|Clerk#000000074|0|must have to are fluffily silent theodolites. even packa| +71657|333256|O|1636.81|1998-03-22|1-URGENT|Clerk#000002769|0|onic packages above the furiou| +71658|698|F|18123.06|1993-07-22|4-NOT SPECIFIED|Clerk#000000239|0|ckly even accounts are carefully idly final pinto beans. furio| +71659|475496|O|290790.34|1995-11-20|4-NOT SPECIFIED|Clerk#000000644|0|nts: final requests breach fluffily brave requests. blithely ironic g| +71660|407464|F|24391.06|1994-05-10|4-NOT SPECIFIED|Clerk#000002935|0|s use carefully among the special p| +71661|727234|O|193944.01|1996-10-22|2-HIGH|Clerk#000001571|0|lar ideas detect blit| +71662|597586|F|76796.79|1992-02-11|2-HIGH|Clerk#000000547|0|ages. quickly even accounts among t| +71663|372970|F|84030.38|1992-05-21|3-MEDIUM|Clerk#000003610|0|ly special foxes wake slyly.| +71688|724054|F|236247.94|1993-03-03|2-HIGH|Clerk#000002219|0|e of the furiously ironic sentiments wake quickly about the furious| +71689|420430|O|147581.85|1997-09-07|2-HIGH|Clerk#000004577|0|osits. slyly regular packages according to the blithely silent d| +71690|414556|O|149452.82|1996-08-23|2-HIGH|Clerk#000001097|0|otes after the furiously even multipliers boost deposits. ev| +71691|672586|O|80483.33|1995-10-21|3-MEDIUM|Clerk#000004686|0|fully bold ideas. furiou| +71692|151798|F|56100.63|1992-01-08|1-URGENT|Clerk#000004022|0| among the express pinto beans. even packages sleep silently slyly ironic requ| +71693|500629|O|174765.76|1996-01-16|4-NOT SPECIFIED|Clerk#000002204|0|ounts cajole blithely. quickly brave deposits impre| +71694|556444|F|131906.42|1994-04-25|2-HIGH|Clerk#000000619|0|unusual ideas boost finally. even deposits cajole closel| +71695|397666|O|112630.86|1996-04-05|5-LOW|Clerk#000003406|0| regular deposits detect above the ir| +71720|315638|O|114876.16|1996-04-11|5-LOW|Clerk#000002044|0|y express platelets. furious, regular platelets use bl| +71721|172105|F|264397.97|1994-05-16|3-MEDIUM|Clerk#000003889|0|p fluffily unusual dependencies. carefully ironic packages of the blithely u| +71722|566032|O|46684.15|1996-01-09|2-HIGH|Clerk#000002492|0|regular ideas thrash against t| +71723|274036|F|69267.66|1993-08-15|3-MEDIUM|Clerk#000001204|0| to sleep. idly special| +71724|701450|F|130482.39|1994-08-22|1-URGENT|Clerk#000004991|0|theodolites are slyly quickly ironic instructions. fluffily ironic ac| +71725|15770|F|189778.95|1994-01-30|3-MEDIUM|Clerk#000003021|0|ely bold dependencies. quietly bold dinos a| +71726|290909|O|161678.09|1996-12-11|1-URGENT|Clerk#000002756|0|eposits. fluffy requests wake furio| +71727|52507|F|117927.44|1992-01-14|5-LOW|Clerk#000004207|0|yly against the carefully silent dependencies. ca| +71752|453058|O|236722.84|1996-06-07|1-URGENT|Clerk#000000337|0|tes. theodolites wake slyly quickly final accounts. quickly pendin| +71753|514991|F|130756.11|1993-04-10|1-URGENT|Clerk#000003909|0|foxes cajole carefully according to the quickly unusual id| +71754|445540|F|120912.09|1993-04-06|2-HIGH|Clerk#000003323|0|he daringly enticing courts sl| +71755|158486|F|240419.50|1994-08-07|1-URGENT|Clerk#000002179|0|ss pinto beans. carefully regular dependencies cajole| +71756|420563|O|58597.54|1996-10-12|5-LOW|Clerk#000004171|0| regular theodolites engage. slyly even requests daz| +71757|394202|F|77650.02|1992-08-10|2-HIGH|Clerk#000003895|0|ically along the sometimes bold d| +71758|591514|F|4389.44|1993-07-05|3-MEDIUM|Clerk#000001127|0| stealthily. fluffily idle theodolites are doggedly. ir| +71759|296432|F|61563.06|1992-03-27|5-LOW|Clerk#000002519|0|inal frets dazzle fluffily across the furiously ironic | +71784|628063|F|242598.94|1993-04-09|3-MEDIUM|Clerk#000000562|0|theodolites use carefully among the even attainments. finally express p| +71785|331943|F|142757.56|1992-03-10|3-MEDIUM|Clerk#000004562|0|side of the regular theodolites. slyly daring packages | +71786|461300|F|52964.74|1993-11-20|1-URGENT|Clerk#000003638|0|ording to the idle asymptotes. quickly| +71787|309307|O|50888.75|1997-06-28|4-NOT SPECIFIED|Clerk#000002226|0|ic pinto beans need to integrate quickly. carefully regular p| +71788|262429|O|90922.74|1995-05-08|5-LOW|Clerk#000000659|0|? slyly even theodolites nag after the pinto beans. blithely express packa| +71789|639793|O|263552.84|1997-03-26|1-URGENT|Clerk#000004230|0| carefully alongside of | +71790|248467|O|340016.00|1996-09-04|4-NOT SPECIFIED|Clerk#000000772|0| furiously regular deposits; unusual, silent | +71791|724804|O|118871.76|1997-05-28|4-NOT SPECIFIED|Clerk#000001472|0|. slyly even dolphins cajole furiously about the flu| +71816|276592|F|368076.80|1994-07-27|1-URGENT|Clerk#000001118|0|boost blithely across the f| +71817|177398|F|191612.78|1992-04-02|2-HIGH|Clerk#000000954|0|ng the slyly regular ideas unwind carefully after the iro| +71818|266503|O|266292.79|1997-01-21|1-URGENT|Clerk#000003568|0| final platelets haggle idly. slyly| +71819|84803|F|60952.09|1992-10-21|4-NOT SPECIFIED|Clerk#000001231|0|ions cajole slyly bold courts. | +71820|273370|O|69255.36|1995-04-13|4-NOT SPECIFIED|Clerk#000003341|0|lar packages dazzle slyly after the requests. fu| +71821|22420|O|148831.34|1997-10-09|1-URGENT|Clerk#000002847|0|as. carefully express pinto beans cajole bold, regular sentiments. bo| +71822|287059|F|144854.85|1994-08-17|3-MEDIUM|Clerk#000000047|0|g the even requests cajole| +71823|571891|O|30810.03|1997-11-23|3-MEDIUM|Clerk#000003132|0|s are furiously into the final asympt| +71848|512407|O|125581.09|1998-01-26|2-HIGH|Clerk#000002946|0|ording to the carefully regular packages wake furiously blithely bold accoun| +71849|503290|O|186705.86|1997-04-24|2-HIGH|Clerk#000003602|0|riously fluffily bold deposits. ironic packages | +71850|287684|O|128086.88|1995-09-21|1-URGENT|Clerk#000001638|0|ss quickly quickly furious packages. slyly special packages ac| +71851|594869|F|59277.26|1992-07-14|3-MEDIUM|Clerk#000004989|0|furiously silent platelets kin| +71852|454490|F|148155.12|1994-10-21|1-URGENT|Clerk#000000646|0|lly express, ironic foxes. pending packages l| +71853|600571|F|161660.06|1994-12-28|2-HIGH|Clerk#000003589|0|es. quickly final packages wake fluffily unusual deposits. slyly pendi| +71854|271825|F|97345.59|1992-09-07|3-MEDIUM|Clerk#000003479|0|ests are blithely around the eve| +71855|298192|P|159624.37|1995-03-26|5-LOW|Clerk#000000436|0|uffily about the ironic, regular packages. bold | +71880|209044|O|92258.65|1996-05-09|2-HIGH|Clerk#000001722|0|posits sleep carefully. pi| +71881|389242|F|100480.04|1993-08-06|1-URGENT|Clerk#000004630|0| furiously express asymptotes. carefully special deposits use along the f| +71882|462065|F|149622.50|1992-04-09|2-HIGH|Clerk#000000680|0|ress instructions sleep among the furiously iro| +71883|417670|O|301176.51|1995-11-15|1-URGENT|Clerk#000001368|0|carefully final requests. | +71884|514726|F|266976.08|1992-09-28|2-HIGH|Clerk#000001885|0|romise over the close ideas. even deposits mold careful| +71885|487414|O|348517.36|1997-09-24|3-MEDIUM|Clerk#000000444|0| regular instructions sleep furiously. slyly final platelets integra| +71886|452650|F|226118.65|1992-03-13|4-NOT SPECIFIED|Clerk#000002409|0|kly at the furious, pending platelets. special, thin ideas | +71887|405388|O|146805.69|1996-12-23|4-NOT SPECIFIED|Clerk#000003766|0|fully. always ironic ideas wake f| +71912|342868|O|30248.27|1997-02-09|4-NOT SPECIFIED|Clerk#000003018|0|arefully unusual deposits haggle furiously. caref| +71913|306025|O|221412.00|1998-05-19|4-NOT SPECIFIED|Clerk#000001282|0|ording to the fluffily even packages | +71914|598823|O|275305.77|1997-10-12|4-NOT SPECIFIED|Clerk#000004343|0| print special, ironic instructions. pearls haggle packag| +71915|162134|F|51339.14|1995-01-20|1-URGENT|Clerk#000002212|0|ecial, unusual foxes un| +71916|221854|O|154779.80|1996-06-25|4-NOT SPECIFIED|Clerk#000004718|0| play about the quickly unusual requests. carefully bold theodolite| +71917|448765|F|362959.33|1994-11-07|1-URGENT|Clerk#000001504|0|ecial, regular asymptotes. carefully express packages cajole? ironic,| +71918|363358|O|174628.16|1996-01-03|1-URGENT|Clerk#000003458|0|ructions. fluffily ironic inst| +71919|453406|O|321712.12|1997-09-12|3-MEDIUM|Clerk#000002824|0|carefully even ideas. asymptotes haggle blithely. special pinto bea| +71944|391043|F|202576.92|1994-12-04|1-URGENT|Clerk#000000203|0|furiously final instructions. quickly express instructio| +71945|747068|F|121533.44|1994-04-29|3-MEDIUM|Clerk#000001648|0|lithely regular deposits. furiously dogged foxes wake carefully reg| +71946|206701|O|83440.41|1996-10-02|1-URGENT|Clerk#000000229|0|ptotes are blithely about the| +71947|742249|O|178775.10|1996-10-23|5-LOW|Clerk#000001794|0|. theodolites against the deposits wake slyly around th| +71948|218395|F|160673.56|1992-01-28|5-LOW|Clerk#000004784|0|y express theodolites run against the ironic sauternes. furiously iron| +71949|31786|O|25667.50|1998-08-02|4-NOT SPECIFIED|Clerk#000000134|0|the blithely final instructions. a| +71950|226615|F|259178.09|1993-09-20|3-MEDIUM|Clerk#000003670|0|ounts maintain alongside of the fluffily ironic frays? qu| +71951|195500|O|208393.08|1997-02-21|2-HIGH|Clerk#000000554|0|ag express instructions. furiously regular foxes above the slyly final request| +71976|12214|F|65732.54|1992-02-11|5-LOW|Clerk#000003121|0|yly after the carefully even requests. fluffily regular packag| +71977|523285|F|250895.52|1992-09-18|2-HIGH|Clerk#000003705|0|nal platelets. carefully bold packages cajole slyly. special, ironic asympto| +71978|340216|O|28022.15|1996-01-16|2-HIGH|Clerk#000004528|0|lithely regular pinto beans wake slyly. regular package| +71979|733558|F|217378.05|1993-02-12|2-HIGH|Clerk#000001206|0|wake quickly along the instruction| +71980|375844|F|66015.83|1993-01-24|5-LOW|Clerk#000000231|0|st have to wake blithely above the slyly ironic dolphins. | +71981|299552|F|44378.71|1994-06-06|4-NOT SPECIFIED|Clerk#000001485|0|ously unusual pinto beans. platelets sleep s| +71982|563954|O|97081.09|1996-06-26|4-NOT SPECIFIED|Clerk#000002607|0|uests. blithely special dependencies integrate ac| +71983|608725|F|258724.75|1992-01-11|2-HIGH|Clerk#000003505|0|ses among the ironic ideas sleep ironic reque| +72008|59474|F|159494.80|1993-09-16|1-URGENT|Clerk#000003312|0|ly even asymptotes. final asymptotes wake furious| +72009|578182|O|110193.56|1997-06-17|4-NOT SPECIFIED|Clerk#000002973|0|lyly final packages aro| +72010|476368|F|200642.25|1994-05-12|3-MEDIUM|Clerk#000000663|0| requests x-ray sly| +72011|42274|F|188384.46|1992-09-01|2-HIGH|Clerk#000001318|0|ons are blithely furiously careful dinos. slyly regular excu| +72012|222643|F|74046.65|1992-05-02|5-LOW|Clerk#000001329|0|ithely silent packages. expr| +72013|191350|F|50537.48|1994-05-31|5-LOW|Clerk#000001490|0|olphins. carefully final packages im| +72014|16057|F|98645.67|1994-03-28|4-NOT SPECIFIED|Clerk#000003227|0|ggle blithely. even, regular deposits | +72015|610912|O|247436.06|1997-03-21|4-NOT SPECIFIED|Clerk#000003618|0|structions use furiou| +72040|85477|O|28225.02|1996-06-09|1-URGENT|Clerk#000001647|0|. platelets detect blithely! furiously bold dependencies are qu| +72041|336022|F|302606.93|1993-07-11|4-NOT SPECIFIED|Clerk#000003950|0|ly blithely unusual asymptotes. silent, | +72042|745789|O|231094.86|1997-05-23|4-NOT SPECIFIED|Clerk#000000921|0|ic instructions nag slyly. carefully even ideas above | +72043|455743|P|273456.41|1995-05-20|5-LOW|Clerk#000004343|0|to beans. blithely regular theodolites cajole. slyly even warhorses| +72044|645694|O|185462.43|1997-05-02|2-HIGH|Clerk#000003254|0| regular accounts? unusual, special depe| +72045|397217|O|65046.52|1997-04-18|4-NOT SPECIFIED|Clerk#000004521|0|lites. accounts abou| +72046|270785|O|359687.81|1996-07-22|3-MEDIUM|Clerk#000003924|0|boost carefully around the pending dependen| +72047|81086|O|14105.49|1995-10-27|5-LOW|Clerk#000000533|0|y unusual realms cajole bold, ex| +72072|56177|F|279705.47|1994-08-23|4-NOT SPECIFIED|Clerk#000004787|0|r the pinto beans. special, ironic packages are slyly slyly| +72073|652021|O|384868.15|1997-11-06|2-HIGH|Clerk#000001075|0|ndle blithely about the even requests. busy pack| +72074|234760|O|191199.83|1997-05-02|3-MEDIUM|Clerk#000001033|0|ly ironic requests | +72075|596114|O|274861.90|1995-11-14|4-NOT SPECIFIED|Clerk#000002368|0|ns wake ironic, final dependencies. final, ironic requests nag| +72076|381301|O|54184.85|1995-10-08|1-URGENT|Clerk#000002205|0|s use furiously quickly bold accounts. boldly ironic Tiresias use slyly a| +72077|519220|O|257831.04|1996-02-20|3-MEDIUM|Clerk#000001393|0|ing to the carefully | +72078|258763|O|65886.10|1996-01-08|4-NOT SPECIFIED|Clerk#000001408|0| depths according to the blithely regular deposits cajole | +72079|506191|O|216133.43|1996-02-16|1-URGENT|Clerk#000003497|0|slyly special packages sleep always. blithely iron| +72104|283652|O|92746.87|1997-09-30|5-LOW|Clerk#000002421|0|ely quiet deposits. furiously special | +72105|323176|F|260256.83|1994-06-26|1-URGENT|Clerk#000003482|0| quickly regular accounts wake carefully. silent, silent gifts| +72106|105692|P|179085.69|1995-04-16|1-URGENT|Clerk#000002156|0|uriously silent excuses sleep furiously slowly ev| +72107|351133|O|55033.27|1997-01-11|5-LOW|Clerk#000003672|0|ing packages. fluffily express packages haggle | +72108|484846|O|51115.19|1997-11-15|2-HIGH|Clerk#000001954|0|sits boost among the fluffily re| +72109|51476|F|368417.35|1992-10-07|3-MEDIUM|Clerk#000003385|0| the bold, even instructions! furiously regular theodolit| +72110|405118|F|203248.04|1993-12-13|2-HIGH|Clerk#000001036|0|accounts. slyly iron| +72111|301415|F|141603.79|1994-05-17|4-NOT SPECIFIED|Clerk#000001151|0|-- furiously ironic excuses wake furiously regular ideas. furiously regular| +72136|367357|O|56242.48|1997-11-13|1-URGENT|Clerk#000001027|0|l Tiresias. furiously ironic accounts cajole slyly against the theodol| +72137|153782|O|257103.06|1997-07-28|3-MEDIUM|Clerk#000000581|0|fily bold requests cajole carefully. ironic, exp| +72138|112844|O|96732.27|1996-03-28|1-URGENT|Clerk#000004720|0|eas-- express, bold excuses integrate carefully carefully ir| +72139|563590|O|176923.60|1997-04-10|5-LOW|Clerk#000001245|0|ites boost furiously final ideas. slyly ironic pac| +72140|492698|O|62935.49|1997-06-03|1-URGENT|Clerk#000004081|0| furiously unusual dinos| +72141|13402|F|207950.12|1993-04-26|3-MEDIUM|Clerk#000000884|0| are. final requests about the instructions use according to | +72142|220678|F|238127.25|1993-09-27|1-URGENT|Clerk#000000225|0|cial, bold instruct| +72143|159674|O|286447.64|1997-08-11|1-URGENT|Clerk#000001744|0|ainst the final attainments. sl| +72168|125857|F|111972.28|1992-08-23|5-LOW|Clerk#000003442|0|counts. permanent packages are slyly. regular dep| +72169|251059|O|262728.23|1996-04-14|3-MEDIUM|Clerk#000004809|0|le furiously packages. blit| +72170|17386|F|20980.20|1992-06-23|4-NOT SPECIFIED|Clerk#000004837|0|pending deposits are af| +72171|428954|O|45866.97|1996-11-06|4-NOT SPECIFIED|Clerk#000003051|0| dependencies haggle bold, dogged theodolites. ironic instruct| +72172|424421|O|300201.35|1996-01-30|1-URGENT|Clerk#000003303|0|e blithely among the regular req| +72173|736243|O|236484.69|1997-04-13|2-HIGH|Clerk#000001808|0|e according to the pending deposits. carefully regular | +72174|518537|F|140645.55|1993-01-06|2-HIGH|Clerk#000004457|0|iously slyly special packages. quickly special pin| +72175|50008|O|104267.91|1997-08-27|5-LOW|Clerk#000002312|0|gular pinto beans boost regular theodolites. blithely pend| +72200|452509|O|206365.58|1996-03-23|4-NOT SPECIFIED|Clerk#000000160|0|ng foxes poach permanently pending asymptotes. blithe| +72201|285911|O|249628.83|1995-09-30|4-NOT SPECIFIED|Clerk#000003810|0|phins sleep evenly slyly regular dolphins. slyly special instructi| +72202|54049|O|122904.47|1995-08-05|2-HIGH|Clerk#000001757|0| boost fluffily bold accounts. even pl| +72203|138901|F|260759.66|1993-08-17|5-LOW|Clerk#000004794|0|y special ideas use slyly| +72204|498808|O|141850.50|1998-05-29|3-MEDIUM|Clerk#000001328|0|ost quickly. carefully even platelets| +72205|700787|O|182365.54|1997-01-17|4-NOT SPECIFIED|Clerk#000000677|0|ole slyly. ironic theodolites| +72206|123919|F|161477.74|1993-09-21|2-HIGH|Clerk#000004676|0|ely special asymptotes at the e| +72207|682459|O|188361.35|1996-02-21|4-NOT SPECIFIED|Clerk#000002179|0|ies about the blithely silent accou| +72232|336571|F|251606.81|1993-03-18|5-LOW|Clerk#000003867|0| sleep slyly. regular packages haggle regular, | +72233|230410|F|283266.99|1993-01-22|4-NOT SPECIFIED|Clerk#000002376|0|re fluffily about the furiously silent deposits. special, regular deposit| +72234|225986|F|86085.32|1994-12-20|3-MEDIUM|Clerk#000003117|0| special theodolites. slyly final dugouts integrate| +72235|133846|F|87725.23|1994-07-09|2-HIGH|Clerk#000003754|0|ackages nag slyly pending dolphins. permanently final packag| +72236|293266|O|221638.31|1996-07-06|3-MEDIUM|Clerk#000001220|0|ously regular requests. even ideas wake slyly. carefully pending ac| +72237|663404|F|164065.39|1993-01-03|2-HIGH|Clerk#000000287|0|hely slyly even accounts. furiously even packages poach finall| +72238|321785|F|54759.35|1992-07-02|5-LOW|Clerk#000002683|0|dolites solve about| +72239|727738|O|94319.58|1998-04-24|5-LOW|Clerk#000004513|0|t the final, unusual theodolites. express ideas was. blithely pendin| +72264|79732|O|169180.01|1996-10-13|4-NOT SPECIFIED|Clerk#000002769|0| carefully ironic pearls detect carefully carefully ironic r| +72265|528149|O|50595.78|1998-05-10|1-URGENT|Clerk#000004605|0|ests sleep furiously? fluffily regular courts hinde| +72266|343999|O|277806.15|1997-03-17|5-LOW|Clerk#000000331|0|riously enticing foxes nod among the fluffily brave packages. blit| +72267|576233|F|95755.74|1993-07-29|4-NOT SPECIFIED|Clerk#000001609|0|regular ideas wake about the even pinto beans. final packages ca| +72268|735175|F|156200.69|1994-06-01|4-NOT SPECIFIED|Clerk#000002395|0|s wake furiously even ideas.| +72269|558617|O|142304.63|1998-04-12|1-URGENT|Clerk#000002688|0|lets. closely ironic deposi| +72270|159928|O|288377.52|1997-08-17|2-HIGH|Clerk#000002723|0| alongside of the furiously regular pains. furious| +72271|631556|F|96275.27|1993-11-12|5-LOW|Clerk#000002097|0|dencies boost. special theodolites sleep quickly. express, unusual theodolites| +72296|547774|O|263676.45|1997-01-17|2-HIGH|Clerk#000002025|0|ard the pending, even instructions caj| +72297|178705|O|53581.03|1997-03-14|5-LOW|Clerk#000000207|0|. final dolphins boost accordin| +72298|473953|F|53774.94|1994-09-02|3-MEDIUM|Clerk#000002531|0| evenly express pinto beans. final instr| +72299|701698|F|110228.53|1994-12-21|2-HIGH|Clerk#000004648|0|ly carefully regular dolphins. | +72300|413977|F|304665.68|1992-06-10|1-URGENT|Clerk#000000495|0|ckages. carefully even packa| +72301|698990|O|137426.59|1996-11-16|4-NOT SPECIFIED|Clerk#000003183|0|bold requests; slyly regular excuses cajole stealthily across the sl| +72302|663626|O|262456.61|1997-01-29|1-URGENT|Clerk#000000691|0| cajole quickly ironic, ironic deposits. regular, pending foxes cajole car| +72303|303155|F|230161.67|1994-02-25|4-NOT SPECIFIED|Clerk#000002067|0|iously carefully pending ac| +72328|367453|F|193150.21|1992-09-23|2-HIGH|Clerk#000000268|0|fully regular waters. blithely special ide| +72329|273589|F|79538.20|1992-12-18|3-MEDIUM|Clerk#000000921|0|ly regular excuses. careful, pending foxes wake. g| +72330|692896|O|192404.74|1996-09-09|2-HIGH|Clerk#000004702|0|ideas are blithely slyly bold packages| +72331|247012|O|334724.60|1996-10-05|3-MEDIUM|Clerk#000002178|0|dinos. dinos after the blithely ironic accounts detect about the fluf| +72332|278539|O|157648.37|1997-10-31|2-HIGH|Clerk#000002485|0|aggle carefully alongside| +72333|649802|F|30684.18|1993-09-24|2-HIGH|Clerk#000001670|0|e fluffily even platelets. regular, pending | +72334|460813|O|364036.34|1996-12-04|4-NOT SPECIFIED|Clerk#000001260|0|ctions: carefully pending pinto beans acros| +72335|378041|O|301530.75|1997-01-16|2-HIGH|Clerk#000001142|0| against the blithely regular packages wake slyly pending excuses. thin theodo| +72360|478861|F|50325.40|1994-08-31|1-URGENT|Clerk#000002523|0|arefully final excuses | +72361|699757|P|175624.73|1995-04-11|4-NOT SPECIFIED|Clerk#000004705|0|ven instructions wa| +72362|52999|F|112914.18|1994-11-27|5-LOW|Clerk#000001617|0|packages. fluffily ironic platelets | +72363|491053|O|114319.87|1998-02-26|2-HIGH|Clerk#000001431|0|quickly bold packages affix quickly express excuses. slyly special deposits| +72364|112261|O|58833.81|1995-09-17|4-NOT SPECIFIED|Clerk#000000266|0|c deposits. ironic packages sleep quickly. carefully bold requests are. quick| +72365|514255|F|98540.43|1993-08-05|2-HIGH|Clerk#000000798|0|ing pinto beans alongside of the packages nag slyly above the ironic foxes.| +72366|80467|O|116472.87|1996-09-19|2-HIGH|Clerk#000000470|0| theodolites against the unusual, even pinto beans| +72367|134323|F|347177.98|1992-05-31|2-HIGH|Clerk#000003945|0|ckages. carefully unusual packages about th| +72392|59698|F|93399.99|1994-12-12|4-NOT SPECIFIED|Clerk#000003663|0|regular requests above the slyly pending de| +72393|563848|F|261890.96|1994-10-07|3-MEDIUM|Clerk#000002879|0|regular instructions wake instructions. furiously unusual excuse| +72394|330328|O|60332.18|1997-10-10|5-LOW|Clerk#000004655|0|ly even instructions. bold accounts are slyly. depe| +72395|313453|F|76222.60|1992-11-11|2-HIGH|Clerk#000002902|0|ons around the packages cajole furiously against the c| +72396|186313|O|276358.10|1997-03-09|2-HIGH|Clerk#000003081|0|uests after the special, ironic platelets w| +72397|83578|F|317558.59|1993-12-05|4-NOT SPECIFIED|Clerk#000002916|0|ress, even accounts sleep furiously finally final accounts. qui| +72398|676957|F|131706.92|1994-01-28|5-LOW|Clerk#000003798|0|s wake slyly? ideas wake about the ironic foxes. slyly pending instructio| +72399|103034|F|231948.91|1992-01-29|1-URGENT|Clerk#000004303|0|s platelets wake carefully special foxes. carefully re| +72424|684403|F|117056.18|1992-11-24|2-HIGH|Clerk#000002889|0|latelets sleep furiously. slyly express de| +72425|737863|F|7367.75|1994-01-28|5-LOW|Clerk#000004588|0|eposits sleep platelets. carefully idle deposit| +72426|739493|O|4198.30|1996-10-10|1-URGENT|Clerk#000001715|0|carefully fluffy accounts lose| +72427|400366|F|138726.39|1992-03-15|3-MEDIUM|Clerk#000002215|0|t dependencies sleep quickly. carefully even deposits imp| +72428|679576|F|235407.89|1993-11-17|2-HIGH|Clerk#000004245|0|ly regular deposits wake slyly according to the asymptotes. slyly regular| +72429|614293|O|90278.05|1998-04-13|2-HIGH|Clerk#000003538|0|hely express requests. carefully| +72430|661438|P|192316.18|1995-04-20|2-HIGH|Clerk#000001504|0|usly even excuses ar| +72431|281803|F|241115.69|1992-11-17|5-LOW|Clerk#000003642|0|ss accounts. carefully regular asymptotes before the quickly ironic foxes are| +72456|743059|F|201384.45|1994-01-31|1-URGENT|Clerk#000001482|0|mong the carefully even requests. enticing, ex| +72457|333730|O|61307.20|1997-01-30|1-URGENT|Clerk#000001835|0|y slyly final instructions. closely regular theodolites are around | +72458|467606|F|19576.25|1993-10-15|4-NOT SPECIFIED|Clerk#000004616|0|he final requests. final| +72459|537701|O|204942.39|1998-03-16|5-LOW|Clerk#000002256|0|pecial braids alongside of the car| +72460|384430|O|262589.36|1998-06-25|1-URGENT|Clerk#000002075|0|ts. express ideas around the furiously pending requests haggle even,| +72461|589576|O|142731.12|1996-03-14|4-NOT SPECIFIED|Clerk#000001432|0|ajole alongside of the expres| +72462|736282|O|278631.64|1998-07-20|3-MEDIUM|Clerk#000004939|0|o beans. idly silent deposits haggle according to the sp| +72463|409406|O|145618.63|1995-12-17|4-NOT SPECIFIED|Clerk#000004420|0|ar accounts. furious, even ideas use bra| +72488|370442|F|183191.86|1992-05-17|2-HIGH|Clerk#000002108|0|ly special accounts. requests grow regularly fluffy, even pinto bea| +72489|261019|O|174498.95|1995-12-21|3-MEDIUM|Clerk#000004145|0|its. carefully final de| +72490|195952|F|215352.29|1993-01-21|5-LOW|Clerk#000002318|0|bold instructions haggle according to the | +72491|98860|O|1355.74|1997-02-14|1-URGENT|Clerk#000003509|0|o the requests breach ironically busy hockey players. packages nag fu| +72492|276094|F|341862.38|1992-06-12|4-NOT SPECIFIED|Clerk#000001254|0|nts snooze furiously regular accounts. furiously bold accounts wake. special | +72493|32491|O|135192.62|1998-07-22|2-HIGH|Clerk#000002416|0|s poach closely furiously expres| +72494|47278|F|82442.95|1995-02-12|1-URGENT|Clerk#000001947|0|y slyly unusual platelets. special, final ideas haggle. iron| +72495|319582|O|108768.57|1996-12-24|5-LOW|Clerk#000001892|0|r the blithe deposits sleep alongside of the exc| +72520|461263|F|191095.27|1992-03-19|4-NOT SPECIFIED|Clerk#000002668|0|g the carefully pending platelets. special theodolites wake. bli| +72521|441812|O|361191.20|1996-12-02|4-NOT SPECIFIED|Clerk#000002088|0|ites. even accounts wake fluffily above the instructions. furiously bo| +72522|529598|F|131535.10|1993-02-26|5-LOW|Clerk#000003268|0|lly regular asymptotes. even, pending pearls haggle quickly after t| +72523|696577|F|4913.70|1994-08-24|4-NOT SPECIFIED|Clerk#000002110|0|e quickly carefully even theodolites. quickly express deposits gro| +72524|597046|F|229196.02|1993-02-11|4-NOT SPECIFIED|Clerk#000004262|0| haggle carefully. fluffily regular theodolites integ| +72525|289348|F|77422.73|1993-02-16|4-NOT SPECIFIED|Clerk#000000623|0| boost pending asymptotes? fluffil| +72526|61010|F|334322.53|1995-01-15|4-NOT SPECIFIED|Clerk#000003668|0|ully furious forges. final foxes sleep quickly unusual ideas. dogg| +72527|142462|F|36242.26|1993-04-21|2-HIGH|Clerk#000001483|0|y ironic requests affix around the ironi| +72552|349489|O|92136.81|1997-12-06|5-LOW|Clerk#000003337|0| above the blithely ironic packages dazzle furiously deposits. regular co| +72553|607855|F|192974.48|1992-12-31|4-NOT SPECIFIED|Clerk#000002811|0| pending, final accounts with the quickly bold requests are furiou| +72554|454900|O|168570.84|1997-11-22|3-MEDIUM|Clerk#000000061|0| slyly furiously final asympt| +72555|746132|O|42052.84|1995-10-18|5-LOW|Clerk#000002655|0|y. furiously quick packages use quickly. pe| +72556|224864|O|269461.93|1995-07-19|1-URGENT|Clerk#000002475|0|ly regular ideas. ironic, even courts accord| +72557|29308|F|245141.26|1994-11-10|2-HIGH|Clerk#000001118|0|deposits against the express requests detect busily ironic platelets. furiousl| +72558|548815|F|235621.84|1994-04-02|2-HIGH|Clerk#000003069|0|odolites. packages sleep. pac| +72559|420382|F|60980.52|1993-09-02|5-LOW|Clerk#000003851|0|eposits. even deposits cajole express, silent packages. carefully fin| +72584|339706|F|250812.25|1993-01-14|3-MEDIUM|Clerk#000000315|0|ideas cajole against the deposits. careful| +72585|411827|O|160179.03|1995-11-27|1-URGENT|Clerk#000004386|0|nt deposits about the caref| +72586|573371|O|28568.81|1996-07-20|4-NOT SPECIFIED|Clerk#000003502|0|otes boost slyly after the ironic dependencies. blithely pending deposits | +72587|643288|O|154581.61|1996-05-24|5-LOW|Clerk#000001331|0|ly ironic requests haggle along the blithely p| +72588|469417|P|199033.08|1995-05-09|1-URGENT|Clerk#000002328|0|ave to wake carefull| +72589|217922|O|258105.92|1998-01-29|3-MEDIUM|Clerk#000000504|0|onic requests! fluffily stealthy accounts are careful| +72590|357118|F|242123.45|1992-02-07|1-URGENT|Clerk#000001249|0|ckages; slyly even tithes sleep quickly. slyly silent acco| +72591|573853|O|65823.40|1998-02-14|1-URGENT|Clerk#000001260|0|arefully bold requests. furiously sp| +72616|470458|O|154652.41|1998-07-24|3-MEDIUM|Clerk#000000069|0| wake carefully after the furiously bol| +72617|484634|O|201835.34|1996-03-01|5-LOW|Clerk#000001830|0|inal ideas. slyly final theodolites boost carefully since the furiously final| +72618|229372|O|42175.63|1996-09-12|4-NOT SPECIFIED|Clerk#000000087|0|pending requests. blithely even pinto beans abo| +72619|26507|F|113682.81|1992-01-06|2-HIGH|Clerk#000003288|0|yly regular instructions detect slyly atop the car| +72620|736963|O|107381.53|1997-11-08|3-MEDIUM|Clerk#000004710|0|kages cajole always blithely ironic packages. enticingly ironic reques| +72621|618133|O|63077.55|1996-01-15|1-URGENT|Clerk#000002317|0|according to the unusual packages. unusual, ironic excuses hag| +72622|680858|F|233748.72|1994-05-04|2-HIGH|Clerk#000000116|0|old platelets. ironicall| +72623|425240|O|242362.29|1997-02-28|3-MEDIUM|Clerk#000000027|0|fts about the blithely bold request| +72648|245140|P|229003.74|1995-04-02|5-LOW|Clerk#000003520|0| final packages. carefully regular packages i| +72649|317773|O|46746.40|1997-02-23|5-LOW|Clerk#000000670|0| unusual platelets: carefully pending instructions wake quickly after the bl| +72650|57322|O|366078.69|1996-06-12|2-HIGH|Clerk#000002937|0|phins. pending theodolites boost furio| +72651|390131|O|48636.22|1995-11-13|3-MEDIUM|Clerk#000002939|0|the slyly regular excuses. quietly express foxes use ironic sheaves| +72652|429092|O|154576.66|1996-02-26|1-URGENT|Clerk#000000413|0|l dolphins. carefully ironic asymptotes aft| +72653|494879|O|241945.20|1997-04-28|3-MEDIUM|Clerk#000000815|0|e always unusual requests. furio| +72654|671009|F|90769.09|1994-03-10|3-MEDIUM|Clerk#000002756|0|onic deposits-- final, unusual theodolites sleep blithel| +72655|640627|O|288873.40|1996-01-26|5-LOW|Clerk#000002042|0|hely. carefully ironic instructions are fluff| +72680|9583|F|179092.77|1992-06-25|1-URGENT|Clerk#000000804|0|equests are furiously. ironic, bold accounts grow furiousl| +72681|559454|F|82809.71|1994-03-06|4-NOT SPECIFIED|Clerk#000004250|0|packages sleep against the blithely even ideas. regular requests boost b| +72682|737725|O|294792.96|1995-09-23|3-MEDIUM|Clerk#000001712|0|ckages within the even depths cajole special | +72683|668161|P|285828.71|1995-03-09|2-HIGH|Clerk#000003476|0|y bold deposits haggle quickly slyly pend| +72684|16252|F|128406.04|1994-10-31|4-NOT SPECIFIED|Clerk#000001449|0|l foxes. closely bold excuses since t| +72685|118591|O|131227.55|1998-04-19|3-MEDIUM|Clerk#000002355|0|ully dependencies. | +72686|400564|O|140790.97|1997-10-22|3-MEDIUM|Clerk#000004443|0|ckly unusual theodolites. furiously even decoys around the pendin| +72687|267754|F|12343.98|1993-05-05|2-HIGH|Clerk#000001393|0|dolites sleep special accounts. depos| +72712|111301|O|194210.62|1997-08-19|3-MEDIUM|Clerk#000000058|0|und the packages boost fluffily carefully blithe packag| +72713|121711|F|272599.07|1992-07-03|4-NOT SPECIFIED|Clerk#000000289|0|r sheaves. express, special excuses wake furiously regular pains. slyly sp| +72714|343247|O|166270.08|1996-01-13|2-HIGH|Clerk#000003919|0|ourts affix after the carefull| +72715|686449|O|120665.88|1998-02-24|5-LOW|Clerk#000001580|0|ely idle dependencies cajole quickly furiously special reque| +72716|635993|O|276033.20|1997-11-20|1-URGENT|Clerk#000000075|0|permanently final excuses poach quickly according to t| +72717|134237|F|13029.03|1994-11-19|2-HIGH|Clerk#000002197|0|st the blithely special packages. unusual requests haggle-- furiousl| +72718|115955|O|110226.10|1995-11-14|4-NOT SPECIFIED|Clerk#000000674|0|after the slyly reg| +72719|340762|F|222295.65|1993-05-08|2-HIGH|Clerk#000004504|0|luffily ironic accounts! fluffily re| +72744|183136|O|219356.70|1998-01-13|5-LOW|Clerk#000001146|0|the packages. regular pinto beans hinder. busily regu| +72745|685642|O|292735.57|1998-01-04|5-LOW|Clerk#000000595|0|nag final dolphins! deposi| +72746|564875|F|153470.88|1992-05-31|5-LOW|Clerk#000004324|0| deposits sleep quickly at the final, unusual ideas. bravely bold requests u| +72747|354037|F|159057.50|1993-11-15|5-LOW|Clerk#000004124|0| express dependencies sleep blithely pending ideas. regular,| +72748|536038|O|292324.54|1996-03-19|5-LOW|Clerk#000003633|0| accounts integrate idly| +72749|160417|F|128817.62|1992-11-03|1-URGENT|Clerk#000001845|0|deposits wake quickly. evenly express pack| +72750|607474|F|138470.43|1993-07-14|1-URGENT|Clerk#000002226|0|unts? slyly dogged accounts haggle | +72751|37309|O|268967.49|1996-12-22|3-MEDIUM|Clerk#000001446|0|ironic theodolites. final realms haggle slyly | +72776|36005|O|246191.96|1997-07-14|2-HIGH|Clerk#000004657|0| accounts are fluffily. even, express dolphins haggle carefully fina| +72777|633085|F|72251.10|1993-03-06|4-NOT SPECIFIED|Clerk#000003297|0|onic foxes. carefully special escapades are carefully r| +72778|5731|F|133341.63|1993-01-05|4-NOT SPECIFIED|Clerk#000002070|0|ages. slyly final excuses cajole carefully about the carefully iro| +72779|295207|F|168467.43|1992-12-15|1-URGENT|Clerk#000004207|0|fully among the ironic, fina| +72780|263429|O|144819.21|1995-12-14|2-HIGH|Clerk#000001726|0| even packages after the care| +72781|192587|F|145464.99|1992-10-21|3-MEDIUM|Clerk#000001470|0|r theodolites affix carefully final pinto bea| +72782|559454|F|83441.43|1995-01-04|3-MEDIUM|Clerk#000004714|0|ngside of the boldly ev| +72783|737771|O|223316.60|1996-12-08|1-URGENT|Clerk#000003630|0|thely final foxes. furiously unusual ideas unwind daringly. ironic packa| +72808|707387|O|278521.52|1997-02-26|5-LOW|Clerk#000004003|0|ke slyly pending accounts. daring packages detect quickly. ironic the| +72809|49883|F|285106.05|1992-03-05|2-HIGH|Clerk#000001814|0|t the final, ironic pea| +72810|620492|O|181711.55|1996-12-19|5-LOW|Clerk#000003193|0|refully regular ideas integrate blithely? ca| +72811|597167|O|138384.07|1996-06-22|1-URGENT|Clerk#000004766|0|ve at the ideas. ironic pinto beans sleep slyl| +72812|81508|F|174555.54|1992-08-24|5-LOW|Clerk#000004450|0|luffily regular dolphins affix furiously above the s| +72813|393568|P|250867.51|1995-05-09|3-MEDIUM|Clerk#000000265|0|r excuses do sleep carefully across the f| +72814|444901|O|101946.00|1995-11-25|4-NOT SPECIFIED|Clerk#000003679|0| about the unusual, even instruc| +72815|669025|O|263219.85|1995-12-09|2-HIGH|Clerk#000001812|0|he carefully even packages. requests cajole. regular a| +72840|294607|O|62995.42|1998-03-03|4-NOT SPECIFIED|Clerk#000001092|0|nal packages could sleep blithely. slyly silent instructions | +72841|687007|F|243444.10|1993-10-07|5-LOW|Clerk#000001989|0|pecial deposits haggle carefully quickly silen| +72842|250735|F|335592.33|1993-07-16|5-LOW|Clerk#000002083|0|blithely blithely ironic reques| +72843|601747|F|205380.09|1992-10-13|2-HIGH|Clerk#000001796|0|y ironic deposits. | +72844|548195|O|81084.97|1998-04-18|2-HIGH|Clerk#000003624|0|nstructions about the slyly final| +72845|503905|F|23314.45|1995-03-21|4-NOT SPECIFIED|Clerk#000002652|0|express asymptotes. pending, ironic theodolites are slyly furiou| +72846|113842|O|365338.25|1998-05-01|3-MEDIUM|Clerk#000003266|0|ual accounts-- packages affix fluffily. quickly final requests abov| +72847|91772|O|165310.23|1995-07-21|1-URGENT|Clerk#000003067|0|longside of the pending dinos. pinto b| +72872|400226|F|48202.19|1994-01-29|5-LOW|Clerk#000001714|0|the furiously final accounts are alongside of the ironic foxe| +72873|586531|O|197899.39|1995-10-02|5-LOW|Clerk#000004041|0|eodolites must cajole fl| +72874|561470|O|57414.25|1995-09-25|3-MEDIUM|Clerk#000004016|0|thely careful theodolites detect qu| +72875|112390|O|52608.18|1998-05-13|5-LOW|Clerk#000003175|0|around the furiously ironic requests. blithely pending pinto beans hagg| +72876|407945|F|143424.87|1993-07-04|5-LOW|Clerk#000002185|0|ounts haggle above the furiously final ideas: bold instructi| +72877|569866|O|163968.25|1997-12-21|5-LOW|Clerk#000001903|0|riously ironic packages. | +72878|215704|O|85540.24|1996-01-12|3-MEDIUM|Clerk#000003625|0|asymptotes. idly final dep| +72879|582731|O|269144.18|1997-08-14|5-LOW|Clerk#000003492|0|d excuses. final deposits above the furiously even dolphins are fluffily e| +72904|456778|O|231159.08|1997-04-18|5-LOW|Clerk#000000092|0|are furiously about the ironic platelets. fluff| +72905|65218|O|91790.32|1998-06-24|3-MEDIUM|Clerk#000004461|0|uriously. instructions cajole regular, unu| +72906|366101|F|42291.17|1992-02-26|2-HIGH|Clerk#000002287|0|fore the special, sp| +72907|55450|O|219819.09|1997-05-15|5-LOW|Clerk#000002265|0|unts are alongside of the slyly express foxes-- silent, un| +72908|444914|O|208138.23|1995-08-18|1-URGENT|Clerk#000001314|0| are. furiously ironic ideas ha| +72909|169312|O|129926.97|1995-10-15|5-LOW|Clerk#000001243|0|final foxes are carefully alongside of the final| +72910|123071|F|121828.08|1992-02-18|1-URGENT|Clerk#000000977|0|e carefully. pending packages| +72911|695210|F|25353.55|1994-03-12|4-NOT SPECIFIED|Clerk#000004432|0|l requests haggle final instructions: slyly even packages nag slyly foxes-- f| +72936|131954|O|165914.12|1998-02-11|3-MEDIUM|Clerk#000002373|0|tegrate slyly requests. final deposits use reg| +72937|748000|F|240072.25|1993-01-23|5-LOW|Clerk#000004780|0|e carefully final pinto beans. hockey players a| +72938|112975|O|49146.61|1996-02-09|5-LOW|Clerk#000001231|0|y even requests! regular, ironic attainments wake. slyly final packages boost| +72939|490732|F|196302.08|1993-10-21|1-URGENT|Clerk#000004167|0| slyly regular ideas across the furiously special package| +72940|707488|O|93991.04|1995-09-30|5-LOW|Clerk#000001066|0|y pending dinos. closely special dependencies are requests. slyly unusual d| +72941|240830|F|207482.98|1993-01-21|3-MEDIUM|Clerk#000003347|0|ing packages breach quickly. stealthily even dependencies to| +72942|629038|O|284735.32|1998-02-04|5-LOW|Clerk#000001857|0|inal theodolites cajole slyly special r| +72943|232969|O|32376.26|1997-03-11|3-MEDIUM|Clerk#000004241|0|y final accounts are. express ideas are; carefully even package| +72968|497048|O|207956.19|1996-05-14|1-URGENT|Clerk#000002068|0|s eat blithely slow deposits. blithel| +72969|384157|F|287462.51|1993-02-20|3-MEDIUM|Clerk#000000792|0|ing theodolites. requests nag slyly regular accounts. regular accounts sl| +72970|524039|O|308681.08|1998-04-14|2-HIGH|Clerk#000000728|0|carefully unusual deposits according to the pinto b| +72971|272954|F|138763.04|1992-03-07|1-URGENT|Clerk#000004304|0|ideas detect blithely pending, even co| +72972|527887|F|206039.14|1993-06-22|2-HIGH|Clerk#000000767|0|s the bold ideas. blithely even somas wake quickly abou| +72973|440035|F|90620.55|1992-10-18|4-NOT SPECIFIED|Clerk#000004947|0|into beans grow above the regular pinto beans; fluffily speci| +72974|644773|F|16299.07|1994-02-17|5-LOW|Clerk#000004879|0| regular instructions. carefully even accounts about t| +72975|697729|F|5305.41|1992-01-17|2-HIGH|Clerk#000000903|0|ts are beside the even, ironic pinto beans. slyly regu| +73000|480857|O|88316.02|1996-06-09|5-LOW|Clerk#000003068|0|e pinto beans sleep furiously alongside of the slyly final| +73001|506914|O|119193.62|1998-04-18|4-NOT SPECIFIED|Clerk#000000720|0|ges nag blithely about the carefully even packages. accounts impress fur| +73002|436256|O|91160.72|1998-05-31|2-HIGH|Clerk#000000778|0|etect furiously among the sly| +73003|142351|O|89446.25|1998-07-21|3-MEDIUM|Clerk#000001410|0|thely bold dependencies are slyly against the ruthlessly unusual patterns. f| +73004|732172|O|184641.48|1996-02-23|1-URGENT|Clerk#000001985|0|deposits. silent theodolites are regular warhorses. unusual deposits ca| +73005|362368|F|135927.92|1993-03-15|2-HIGH|Clerk#000004114|0|ctions grow blithely against | +73006|314263|O|168434.21|1998-03-24|5-LOW|Clerk#000000789|0|olites are carefully about the| +73007|285206|O|123015.16|1998-06-22|5-LOW|Clerk#000003494|0|le around the blithely | +73032|191389|F|105227.95|1994-04-23|5-LOW|Clerk#000002818|0|earls. even accounts among the blithely regula| +73033|650164|F|189345.13|1993-11-13|4-NOT SPECIFIED|Clerk#000001957|0|ously final excuses impress blithely after the spe| +73034|532699|O|169338.37|1998-01-31|4-NOT SPECIFIED|Clerk#000002501|0| sleep carefully express warthogs. slyly final packages| +73035|300991|O|141686.31|1996-07-24|3-MEDIUM|Clerk#000003018|0|es wake quickly slyly final dinos. carefully special foxes wake abou| +73036|722347|O|61103.04|1998-04-19|5-LOW|Clerk#000001819|0| platelets at the slyly ironic theodolites sleep slyly bold instructions. fl| +73037|229706|F|78465.82|1993-02-22|5-LOW|Clerk#000001123|0|ly careful pinto bea| +73038|412198|O|276562.44|1995-08-26|2-HIGH|Clerk#000000628|0|s detect blithely against the special ideas. busily thin dolphins s| +73039|32827|O|144655.75|1996-07-04|2-HIGH|Clerk#000004583|0|press ideas boost slyly. unusual, close packages detect blithely abo| +73064|454591|F|48489.09|1993-11-03|5-LOW|Clerk#000002655|0|mptotes use slyly. slyly even pinto beans use. silent escapades use slyly| +73065|54355|F|92762.99|1993-10-28|3-MEDIUM|Clerk#000004532|0|ccording to the quickly regular packages integrate according to t| +73066|35228|O|113291.43|1995-07-12|3-MEDIUM|Clerk#000001261|0| carefully regular sauternes. doggedly final packages cajole| +73067|315623|F|125072.83|1992-01-14|5-LOW|Clerk#000002295|0|kages are. slyly eve| +73068|675463|F|231971.03|1993-12-10|4-NOT SPECIFIED|Clerk#000003364|0|r, ironic ideas. blithely express acc| +73069|501292|F|304010.79|1993-08-08|1-URGENT|Clerk#000003529|0|equests. final, final dep| +73070|439010|F|306563.48|1993-09-17|5-LOW|Clerk#000004624|0|n ideas. final instruct| +73071|686530|O|83795.19|1996-02-17|5-LOW|Clerk#000004732|0|eep above the furiously unusual deposits. slyly regular grouches thrash| +73096|505859|O|139491.03|1998-04-03|5-LOW|Clerk#000000131|0|l requests cajole carefu| +73097|706372|F|200714.60|1992-11-06|5-LOW|Clerk#000001181|0|ly. special foxes integrate furiously blithely regular ac| +73098|226709|F|320032.17|1992-08-21|1-URGENT|Clerk#000004359|0|across the express braids. carefully ironic ideas boost blit| +73099|290653|F|64687.70|1995-01-01|4-NOT SPECIFIED|Clerk#000003797|0|fully even platelets are i| +73100|248233|F|3567.42|1992-06-18|4-NOT SPECIFIED|Clerk#000001331|0|xpress requests. fluff| +73101|549943|O|181496.61|1996-08-08|1-URGENT|Clerk#000002816|0|ts. fluffily regular pinto beans hagg| +73102|628141|O|221642.89|1997-11-06|3-MEDIUM|Clerk#000003105|0|xcuses use blithely along the slyly ironic instruct| +73103|153160|F|142744.02|1994-09-15|1-URGENT|Clerk#000002280|0|st the fluffy packages affix about the slyly ironic foxes. blithely ironic| +73128|144544|F|67545.23|1992-11-16|3-MEDIUM|Clerk#000001460|0| are carefully quickly pending foxe| +73129|77380|F|17082.90|1992-03-24|4-NOT SPECIFIED|Clerk#000002384|0|ronic deposits haggle foxes: quic| +73130|743101|F|51587.70|1994-04-24|5-LOW|Clerk#000002027|0|ites! even deposits sleep. neve| +73131|273745|F|39457.26|1995-02-11|2-HIGH|Clerk#000004517|0|gular asymptotes. pending requests nod blithely. regular, express ideas abo| +73132|312466|O|20923.57|1998-07-15|5-LOW|Clerk#000001175|0|regular deposits impress among the final ideas. bravely regular requests main| +73133|108736|F|278171.85|1993-12-29|4-NOT SPECIFIED|Clerk#000001150|0|ructions boost carefully furious foxes. carefully slow instructions sle| +73134|502636|F|60927.12|1995-01-10|1-URGENT|Clerk#000002409|0|telets detect. ironic packages wake quickly about the c| +73135|529447|O|275062.86|1995-10-08|5-LOW|Clerk#000001518|0|he slyly ironic packages boost | +73160|382423|F|29687.30|1994-12-10|3-MEDIUM|Clerk#000004446|0| across the fluffily express fox| +73161|621517|F|62161.36|1992-04-02|1-URGENT|Clerk#000002432|0|es are final, even epitaphs. slyly | +73162|567637|O|377228.49|1996-06-06|3-MEDIUM|Clerk#000004385|0|ely special pinto beans sleep. blithely unusu| +73163|268288|O|83751.03|1995-06-24|2-HIGH|Clerk#000002487|0|equests: furiously regular depend| +73164|112469|O|123406.74|1996-08-14|3-MEDIUM|Clerk#000004786|0|accounts about the furiously ironic deposits wake b| +73165|251273|F|379246.22|1992-12-25|1-URGENT|Clerk#000003173|0|s among the blithely final packages| +73166|630244|F|74039.06|1992-07-15|3-MEDIUM|Clerk#000002962|0|ully alongside of th| +73167|257713|F|91827.14|1992-08-09|2-HIGH|Clerk#000003328|0|e. regular, unusual deposits boost fluff| +73192|114688|F|239887.87|1994-01-12|5-LOW|Clerk#000004343|0|he carefully quiet accounts sl| +73193|41368|F|81209.83|1994-06-23|4-NOT SPECIFIED|Clerk#000002594|0|: slyly regular packages are slyly ironic, regular theodolites.| +73194|743659|F|81496.41|1993-08-20|3-MEDIUM|Clerk#000000473|0|sits wake among the furiously unusual instructions-- q| +73195|662834|O|244541.76|1996-11-19|5-LOW|Clerk#000001153|0|ckages cajole blithely pinto beans! regular sheaves above the even, pe| +73196|494035|O|170658.22|1996-11-28|3-MEDIUM|Clerk#000004118|0|ironic ideas. slyly special instructions against the idly ironic accounts s| +73197|729133|F|88315.36|1992-10-24|2-HIGH|Clerk#000003546|0| regular warhorses cajole furiously against the deposits. foxes s| +73198|276338|F|87868.77|1994-04-12|3-MEDIUM|Clerk#000004938|0|gle. regular, unusual instructions after the f| +73199|399029|F|206657.56|1993-09-02|3-MEDIUM|Clerk#000001249|0|ackages about the carefully blithe instructions wake bl| +73224|720583|F|34082.14|1993-10-17|3-MEDIUM|Clerk#000001856|0|y. bravely final theodolites accord| +73225|562669|O|246916.07|1997-03-14|5-LOW|Clerk#000004476|0| theodolites use slyly e| +73226|748265|O|214135.26|1996-11-24|5-LOW|Clerk#000004430|0| deposits cajole furiously unusual, ironic instructions. carefull| +73227|84841|F|163409.81|1994-10-25|3-MEDIUM|Clerk#000000448|0|ut the asymptotes sleep blithely above the regul| +73228|144040|O|8521.42|1996-04-27|5-LOW|Clerk#000003203|0|slowly slyly final requests. final, regular accounts| +73229|626708|O|160029.20|1998-02-25|1-URGENT|Clerk#000000889|0|riously express accounts. | +73230|67135|O|159091.41|1997-12-09|4-NOT SPECIFIED|Clerk#000004376|0|telets. requests might| +73231|320603|F|178752.71|1994-07-02|2-HIGH|Clerk#000001296|0| are pearls. carefully ironic foxes are quickl| +73256|368170|F|170648.64|1993-10-08|5-LOW|Clerk#000000655|0|t carefully even frays. carefully ironic packag| +73257|311563|O|207317.07|1997-07-08|4-NOT SPECIFIED|Clerk#000001517|0| regular instructions grow among | +73258|660973|O|51540.57|1996-11-25|3-MEDIUM|Clerk#000000710|0| bold deposits. always special platelets boost fur| +73259|711241|F|95790.86|1993-03-19|1-URGENT|Clerk#000002583|0|ests. carefully blithe warhorses haggle carefully above the care| +73260|305956|F|281408.99|1992-04-05|1-URGENT|Clerk#000002837|0|he bold patterns. even pinto b| +73261|170683|F|302877.42|1992-12-09|1-URGENT|Clerk#000001383|0|al packages wake. regular, ironic courts| +73262|654080|F|96102.25|1994-06-06|5-LOW|Clerk#000000651|0|ent, ironic pinto beans. pending, | +73263|363580|F|201845.90|1993-02-21|4-NOT SPECIFIED|Clerk#000000308|0|riously ironic packages use furiously after the final ideas. never silent asy| +73288|415817|F|146314.68|1992-05-15|5-LOW|Clerk#000002703|0|reach. regular, regular packages boost | +73289|130466|O|117391.52|1997-07-24|5-LOW|Clerk#000003109|0|ents haggle blithely even deposits-- pending accounts haggle unusu| +73290|487033|F|190375.88|1994-01-06|1-URGENT|Clerk#000002280|0| the express, quiet theodolites. carefu| +73291|41503|F|295061.25|1994-08-24|1-URGENT|Clerk#000002077|0|eas sleep slyly about th| +73292|16630|F|385698.42|1992-06-13|5-LOW|Clerk#000003124|0|ily unusual dolphins nag furiously furi| +73293|492071|O|186059.49|1997-06-20|3-MEDIUM|Clerk#000003987|0|hes. quickly special requests cajole among the| +73294|730832|F|36994.77|1993-02-17|1-URGENT|Clerk#000002218|0| pending accounts use ironic frets. | +73295|329035|O|252897.99|1996-06-07|1-URGENT|Clerk#000004848|0|ess courts. regular accounts | +73320|318071|O|37993.82|1997-04-17|3-MEDIUM|Clerk#000002130|0|requests according to the ironic asymptotes ha| +73321|565978|O|112462.58|1996-02-25|3-MEDIUM|Clerk#000000488|0|onic epitaphs are slyly. carefully special pinto beans above the ex| +73322|141485|O|215839.49|1997-04-07|3-MEDIUM|Clerk#000003336|0|re? carefully pending asymptotes cajole blithely. dependenc| +73323|428348|O|71677.48|1998-02-02|3-MEDIUM|Clerk#000001915|0|blithely about the stealthily special grouches. pending inst| +73324|737107|F|116578.26|1993-01-15|2-HIGH|Clerk#000003549|0|uests sleep never. carefully final theodolites affi| +73325|35470|O|72431.40|1996-03-23|4-NOT SPECIFIED|Clerk#000002479|0|boldly enticing pack| +73326|639020|F|8553.68|1994-10-07|3-MEDIUM|Clerk#000003708|0|g, regular deposits. pending requests across the e| +73327|746711|F|264605.24|1994-01-31|1-URGENT|Clerk#000003923|0|onic accounts among the even foxes boost requests. fur| +73352|220039|F|10397.67|1994-12-07|1-URGENT|Clerk#000000427|0|rint slyly? pending platelets alongside of the car| +73353|667160|F|28192.66|1992-08-09|2-HIGH|Clerk#000001689|0| instructions across the | +73354|450163|O|155001.08|1997-09-20|4-NOT SPECIFIED|Clerk#000001096|0|carefully even deposits. carefully final forges haggle against the carefully| +73355|607786|F|137214.14|1992-03-20|1-URGENT|Clerk#000004155|0|und the dogged requests use | +73356|53056|F|57884.43|1993-06-30|1-URGENT|Clerk#000001338|0|r accounts haggle ironic, regular accounts? blithely ironic dep| +73357|705046|O|196124.18|1998-05-11|3-MEDIUM|Clerk#000001316|0|ven foxes. blithely fina| +73358|450472|F|217406.62|1993-08-29|1-URGENT|Clerk#000002675|0|ix quickly evenly even pinto beans. deposits boost fl| +73359|560803|O|198329.17|1997-01-12|3-MEDIUM|Clerk#000001465|0|lar, unusual pinto beans grow. evenly express pinto beans are carefully sly| +73384|163840|F|257361.02|1994-02-12|1-URGENT|Clerk#000003747|0|aring realms. foxes against the quickly b| +73385|406873|O|35281.40|1995-05-06|4-NOT SPECIFIED|Clerk#000000100|0| special requests ar| +73386|560075|F|225817.38|1993-08-15|1-URGENT|Clerk#000002920|0|r accounts are fluffily final, even dolphins! c| +73387|666838|O|103411.64|1998-07-04|1-URGENT|Clerk#000004168|0|requests haggle slyly amon| +73388|294667|O|95806.70|1996-05-29|5-LOW|Clerk#000002402|0|r ideas boost furiously slyly express Tiresias? blithely unus| +73389|200000|O|77147.49|1997-08-15|4-NOT SPECIFIED|Clerk#000003599|0|s haggle carefully pa| +73390|647038|F|221288.74|1992-01-25|2-HIGH|Clerk#000004608|0|o beans about the bold requests eat fluffily carefully even dolphins| +73391|493217|F|36040.55|1994-10-21|3-MEDIUM|Clerk#000003731|0|fully final deposits. ironic dependencies breach furiously iro| +73416|490045|O|309634.55|1998-04-09|1-URGENT|Clerk#000001109|0| the permanently ironic r| +73417|432128|F|76170.87|1994-08-02|1-URGENT|Clerk#000001131|0|ts wake alongside of the| +73418|517687|F|47952.38|1995-02-08|3-MEDIUM|Clerk#000002267|0|onic excuses with the fi| +73419|741106|O|101166.15|1997-08-15|5-LOW|Clerk#000002509|0|final accounts sleep slyly over the furiously even foxes. bli| +73420|486557|O|221802.77|1995-07-01|3-MEDIUM|Clerk#000004250|0| accounts. silent account| +73421|297875|O|136978.18|1996-03-26|5-LOW|Clerk#000001199|0|unts are slyly above the furiously pend| +73422|134416|O|54447.93|1995-07-26|2-HIGH|Clerk#000001546|0|al foxes nag. quickly ironic account| +73423|128536|O|45467.18|1996-01-11|3-MEDIUM|Clerk#000001950|0|y requests use blithely a| +73448|286939|F|271073.34|1994-06-27|2-HIGH|Clerk#000000669|0|ecial pinto beans cajole furiously. slyly final theo| +73449|72991|O|208369.92|1997-02-02|5-LOW|Clerk#000001520|0|even, dogged platelets cajole care| +73450|504973|F|268250.29|1994-08-18|1-URGENT|Clerk#000002016|0|le across the furiously e| +73451|59272|O|184538.25|1996-11-04|4-NOT SPECIFIED|Clerk#000003007|0| express foxes. unusual packages nag among the stealthil| +73452|156752|O|130186.07|1996-11-17|2-HIGH|Clerk#000004954|0|efully regular Tiresias wake blithely above| +73453|529022|O|22170.23|1996-10-21|1-URGENT|Clerk#000004513|0|ly pending instructions. furiously | +73454|19286|F|118522.25|1993-03-19|4-NOT SPECIFIED|Clerk#000002271|0| regular accounts. idle accou| +73455|135082|F|107467.34|1994-05-28|2-HIGH|Clerk#000000799|0|s haggle carefully among t| +73480|69664|F|147763.58|1993-03-01|3-MEDIUM|Clerk#000003290|0|y even instructions ab| +73481|90187|O|159529.97|1997-07-24|2-HIGH|Clerk#000004458|0|affix carefully! fluffily pending excuses sle| +73482|18937|F|21062.77|1992-11-21|2-HIGH|Clerk#000002774|0| pinto beans haggle furiously among the carefully ironic p| +73483|253513|O|65141.80|1998-07-07|5-LOW|Clerk#000004106|0|efully even requests. blithely regular foxes | +73484|33995|O|162519.09|1997-10-03|4-NOT SPECIFIED|Clerk#000003021|0|usual accounts. slyly pending foxes according to the quickly expr| +73485|590222|F|55967.24|1994-07-28|1-URGENT|Clerk#000003477|0|eas sleep carefully. express, special instructions detect furiously caref| +73486|348907|F|107551.46|1994-08-24|4-NOT SPECIFIED|Clerk#000001714|0|gular packages sleep blithely against the slyly blithe a| +73487|578419|F|162592.13|1994-03-13|2-HIGH|Clerk#000000234|0|ain furiously alongside of the| +73512|727495|O|243470.97|1995-06-10|1-URGENT|Clerk#000004844|0|y. carefully express frays across the furiously iro| +73513|493585|O|62891.30|1997-07-21|4-NOT SPECIFIED|Clerk#000000543|0|e express ideas. unusual decoys sleep slyl| +73514|681844|O|177110.99|1996-11-23|4-NOT SPECIFIED|Clerk#000000916|0| patterns above the ironic accounts wake blithely a| +73515|494182|O|236551.68|1995-08-19|5-LOW|Clerk#000004234|0|refully after the regular packages. quickly even theodolites sleep bol| +73516|207019|O|191299.57|1997-06-29|2-HIGH|Clerk#000002091|0| furiously special deposits wake blithely even packages. regular gifts sleep | +73517|93713|O|138743.93|1995-07-09|2-HIGH|Clerk#000003267|0|uickly around the regular, regular theod| +73518|22174|O|312987.73|1995-09-21|4-NOT SPECIFIED|Clerk#000003749|0|. blithely regular asymptotes ab| +73519|677563|O|188126.48|1996-12-03|2-HIGH|Clerk#000003956|0|egular deposits. slyly ironic excuses against the special th| +73544|532595|O|106195.76|1998-04-22|1-URGENT|Clerk#000002301|0|pecial platelets according to the furiously regular requests integ| +73545|64111|F|250132.77|1994-09-17|2-HIGH|Clerk#000000167|0|quickly idle deposits haggle special theodolites. carefully slow excuses bo| +73546|501407|O|163654.62|1996-12-08|2-HIGH|Clerk#000002505|0|he furiously regula| +73547|135170|O|46468.75|1995-08-11|2-HIGH|Clerk#000001768|0| the regular dependencies. ideas grow carefully alongside of the carefu| +73548|43694|O|42630.86|1996-12-03|5-LOW|Clerk#000003570|0|ideas are slyly. final, bold reques| +73549|114514|O|169432.96|1998-05-09|1-URGENT|Clerk#000002866|0| unusual deposits boost fluffily a| +73550|108727|F|96345.93|1992-04-21|1-URGENT|Clerk#000001949|0| carefully? fluffily ironic requests haggle slyly pending ins| +73551|357335|O|150424.97|1996-09-24|5-LOW|Clerk#000001772|0|s wake carefully blithely fina| +73576|464641|F|292691.06|1992-12-29|4-NOT SPECIFIED|Clerk#000000282|0|platelets cajole. carefully ironic theodolites nag quickly about the furiously| +73577|191815|F|208187.47|1993-07-03|5-LOW|Clerk#000003888|0|e. furiously regular requests nag blithely. final, ironic dependencies hag| +73578|302492|O|231163.68|1997-02-24|3-MEDIUM|Clerk#000000176|0|regular deposits detect furiously requests. bold deposits affix| +73579|477491|O|3891.76|1996-09-15|1-URGENT|Clerk#000004133|0| instructions along the final, even foxes use blithely regula| +73580|181514|F|59983.57|1992-05-28|3-MEDIUM|Clerk#000001563|0|g accounts. packages wake slyly. furiously final excuses nag slyly carefull| +73581|455647|F|184439.46|1994-09-19|1-URGENT|Clerk#000004068|0|d furiously according to the| +73582|538372|F|194580.72|1994-02-03|2-HIGH|Clerk#000002938|0|und the quickly final requests are furiously blithe| +73583|402823|O|269245.03|1996-12-15|4-NOT SPECIFIED|Clerk#000004704|0|al pinto beans. final fo| +73608|716753|O|113916.23|1996-08-10|1-URGENT|Clerk#000002635|0| ideas sleep carefully| +73609|706868|O|116506.07|1995-12-23|2-HIGH|Clerk#000004870|0|sly regular dependencies cajole furiously regular depos| +73610|316711|O|81316.68|1996-07-22|3-MEDIUM|Clerk#000004948|0|xcuses. quietly regular accounts use sly| +73611|206525|F|207590.96|1992-05-09|5-LOW|Clerk#000004009|0|refully across the final accounts. quickly ironic dependencie| +73612|64316|F|28965.12|1992-09-01|5-LOW|Clerk#000003457|0|final instructions sleep ironic deposits. blithely ironic epitaphs| +73613|202049|F|13625.13|1995-01-20|5-LOW|Clerk#000003933|0|refully final pinto beans detect. carefully regular instructions are | +73614|580193|O|329271.86|1996-11-16|4-NOT SPECIFIED|Clerk#000000891|0|uctions snooze. doggedly even accou| +73615|552448|O|148743.49|1996-09-11|2-HIGH|Clerk#000002426|0|al pinto beans. carefully u| +73640|728353|O|108942.13|1998-01-08|3-MEDIUM|Clerk#000004591|0|final deposits boost furiously even deposits. furiousl| +73641|667318|F|105351.84|1993-11-28|5-LOW|Clerk#000001258|0|ic frets. deposits according to the accounts wake fl| +73642|103108|O|280802.03|1996-09-06|5-LOW|Clerk#000000987|0|final foxes. even, bold dolphins according to the regular | +73643|412406|F|38626.67|1993-03-15|3-MEDIUM|Clerk#000002822|0|fy courts. carefully regular pinto beans was blithely regular accounts| +73644|556048|P|78706.90|1995-04-01|5-LOW|Clerk#000000952|0|ronic requests above the express, final foxes doubt| +73645|498178|F|201319.22|1993-07-15|3-MEDIUM|Clerk#000001606|0| above the unusual instructions. | +73646|607966|F|97114.82|1995-01-02|4-NOT SPECIFIED|Clerk#000000619|0|each fluffily express realms. quickly ironic requests cajole: | +73647|55729|F|157116.50|1994-09-30|3-MEDIUM|Clerk#000002857|0|into beans are blithely| +73672|624383|F|263584.68|1992-03-18|4-NOT SPECIFIED|Clerk#000001245|0|ly silent requests. deposits wake accord| +73673|743990|F|325849.64|1993-03-06|2-HIGH|Clerk#000000956|0|d courts use after the final, ironic excuses. regular, pendin| +73674|229067|O|151694.22|1998-03-07|4-NOT SPECIFIED|Clerk#000001118|0|ackages. even instr| +73675|174913|O|170543.66|1996-05-24|2-HIGH|Clerk#000004221|0|express deposits wake furious| +73676|507259|F|186385.98|1993-09-28|4-NOT SPECIFIED|Clerk#000000952|0|r gifts nag quickly slyly regular theodolites. | +73677|244576|F|72503.90|1994-07-10|3-MEDIUM|Clerk#000000194|0|l ideas boost carefully ironic ideas. slyly spec| +73678|582977|F|214216.24|1993-10-21|2-HIGH|Clerk#000004339|0|riously silent deposits. regular deposits cajole along the ruthlessl| +73679|83026|O|68120.05|1997-09-11|4-NOT SPECIFIED|Clerk#000000529|0|requests cajole quickly. regu| +73704|411151|O|35843.43|1996-01-24|5-LOW|Clerk#000003365|0|sleep carefully close | +73705|437590|O|55450.68|1998-04-04|4-NOT SPECIFIED|Clerk#000000413|0|eas cajole express, unusual foxes| +73706|47941|F|45005.94|1994-12-16|5-LOW|Clerk#000002236|0|ly quick theodolites. slyl| +73707|235700|O|315735.03|1996-05-25|1-URGENT|Clerk#000001508|0|ets among the carefully ironic requests na| +73708|652625|O|281210.23|1996-08-19|3-MEDIUM|Clerk#000000666|0|ep blithely express packages. quickly regular packages | +73709|662050|P|183615.25|1995-02-21|5-LOW|Clerk#000001234|0|inal deposits run qu| +73710|46981|O|76630.95|1997-11-23|5-LOW|Clerk#000004144|0|ing requests hang blithely across t| +73711|580402|O|166676.80|1997-10-30|1-URGENT|Clerk#000004947|0|requests. even pinto beans sleep about the carefully express r| +73736|291695|O|198389.62|1997-09-06|2-HIGH|Clerk#000000919|0|o beans cajole slyly agains| +73737|516401|P|142530.04|1995-03-13|4-NOT SPECIFIED|Clerk#000002124|0|haggle quickly among the spe| +73738|138224|O|30943.10|1996-05-26|3-MEDIUM|Clerk#000002997|0|s sleep furiously above the slyly b| +73739|373385|F|148399.35|1995-01-17|1-URGENT|Clerk#000001460|0| carefully final packages use carefully for the unusual packages. ideas detec| +73740|228589|F|54041.03|1992-03-17|2-HIGH|Clerk#000002892|0|nstructions. slyly bold deposi| +73741|372748|O|10214.44|1997-07-24|5-LOW|Clerk#000001967|0|ular ideas serve above the quickly | +73742|5275|F|99854.50|1994-08-19|2-HIGH|Clerk#000002174|0|lithely quickly bold excuses! carefully regular deposits nag enticingly| +73743|142132|F|200318.30|1994-08-21|4-NOT SPECIFIED|Clerk#000000173|0|ironic ideas. deposits across the even platel| +73768|50761|F|227989.44|1992-05-19|4-NOT SPECIFIED|Clerk#000003411|0|s affix carefully quickly final requests. quickly| +73769|361240|O|9920.63|1996-09-06|5-LOW|Clerk#000004215|0|integrate blithely afte| +73770|88078|O|3761.35|1996-09-27|5-LOW|Clerk#000003849|0| carefully ironic theodolites. slyly express foxes wake bli| +73771|548914|O|127358.87|1997-10-16|4-NOT SPECIFIED|Clerk#000004676|0|arefully. slyly ironic requests sleep furiously. carefully even pinto beans a| +73772|574843|F|58552.39|1994-07-07|4-NOT SPECIFIED|Clerk#000004881|0|odolites cajole busily busy foxes. express packages cajole blithe| +73773|619084|O|90976.48|1998-03-25|2-HIGH|Clerk#000004357|0|hely bold accounts-- s| +73774|165617|O|18007.27|1998-05-23|5-LOW|Clerk#000004965|0| slyly carefully regular depo| +73775|261997|F|118007.21|1994-12-17|1-URGENT|Clerk#000000177|0|posits among the dogged theodolites haggle agai| +73800|123016|F|120640.72|1995-02-15|4-NOT SPECIFIED|Clerk#000000684|0|y regular pinto beans integrate slyly b| +73801|510829|O|103247.58|1998-07-16|2-HIGH|Clerk#000004262|0|ns according to the special instructions| +73802|249850|F|278428.52|1994-04-11|4-NOT SPECIFIED|Clerk#000002419|0| nag slyly slyly regu| +73803|723089|O|186651.81|1997-01-03|4-NOT SPECIFIED|Clerk#000002026|0|slyly bold attainments detect. slyly regular deposits wake| +73804|697036|F|236383.06|1992-05-30|1-URGENT|Clerk#000001271|0| integrate furiously blithely final platelets. express pinto be| +73805|76216|O|252404.13|1996-05-17|3-MEDIUM|Clerk#000001868|0|lithely along the unusual platelets. carefully even braids poach| +73806|693931|F|159896.03|1994-06-05|4-NOT SPECIFIED|Clerk#000003238|0|he slyly final theodolites. slyly final asymptotes among the qui| +73807|392906|F|315745.62|1992-02-28|4-NOT SPECIFIED|Clerk#000003011|0|ts sleep carefully. foxes are blithely. requests | +73832|569072|O|171714.17|1995-11-30|1-URGENT|Clerk#000004947|0|inal accounts. bold, quiet de| +73833|384196|O|155217.52|1995-07-12|1-URGENT|Clerk#000001136|0|ly. even pinto beans | +73834|430568|F|58918.85|1993-11-06|5-LOW|Clerk#000000436|0|ously special accounts; furiously ironic dependencies are fluffily fu| +73835|550504|O|58372.15|1998-05-19|4-NOT SPECIFIED|Clerk#000004916|0|efully even account| +73836|302650|F|233156.13|1993-06-26|1-URGENT|Clerk#000001604|0|s? furiously bold packages cajole after the close excuses. carefull| +73837|108988|O|127564.03|1996-11-22|2-HIGH|Clerk#000002850|0|olites haggle blithely blithely ironic ideas. pending, regular ac| +73838|256826|O|97575.83|1996-01-01|4-NOT SPECIFIED|Clerk#000004440|0|es. instructions about the carefully quiet instructions are f| +73839|222253|O|80639.65|1995-10-27|1-URGENT|Clerk#000001797|0|efully even multipliers. carefully regular frets aft| +73864|400816|F|156854.76|1993-08-01|4-NOT SPECIFIED|Clerk#000000578|0|ully express platelets. slyly regular packages are above the bol| +73865|11701|F|245433.57|1992-07-14|2-HIGH|Clerk#000004998|0|ages sleep: slyly final theo| +73866|154028|F|80670.24|1992-10-31|4-NOT SPECIFIED|Clerk#000000346|0|lites. slyly special requests haggle furiousl| +73867|491639|O|45986.55|1998-03-08|5-LOW|Clerk#000004225|0|lly unusual packages sleep toward the furiously pend| +73868|225071|O|155238.94|1996-05-04|4-NOT SPECIFIED|Clerk#000003748|0|ven theodolites. furiously special foxes upon the carefully ironi| +73869|513718|O|274388.56|1996-02-17|2-HIGH|Clerk#000002029|0| platelets. ironic, pending| +73870|46510|F|49966.78|1992-09-17|2-HIGH|Clerk#000001303|0|ly final deposits wake fina| +73871|177199|F|6273.27|1993-01-17|4-NOT SPECIFIED|Clerk#000002956|0|quests. ironic, even| +73896|664202|O|242325.72|1996-12-01|3-MEDIUM|Clerk#000004498|0|e fluffily ironic sauternes; furiously | +73897|227857|F|124897.31|1993-10-19|1-URGENT|Clerk#000001160|0|nic theodolites sleep furiously stealthy, even deposits. pending, | +73898|73294|O|80712.91|1998-02-11|4-NOT SPECIFIED|Clerk#000004670|0| haggle quickly alongside of the ironic instructions. slyly ironic foxes| +73899|326812|F|269491.49|1995-03-28|5-LOW|Clerk#000000612|0|ep furiously. even, ironic accounts haggle blithely. unusual, idle deposi| +73900|465188|F|125169.53|1994-05-08|1-URGENT|Clerk#000002729|0|egular instructions after the quiet bra| +73901|407774|F|78514.64|1992-05-22|3-MEDIUM|Clerk#000003067|0|ses. blithely final packages use busily. re| +73902|703765|F|168745.65|1994-06-16|3-MEDIUM|Clerk#000004461|0|t the blithely regular accounts. express accounts around the car| +73903|663655|O|364606.08|1997-10-06|3-MEDIUM|Clerk#000001942|0|ngage final theodolites. blith| +73928|40987|O|204582.77|1998-04-29|2-HIGH|Clerk#000000356|0|carefully pending ideas. blithely pending request| +73929|347980|O|323933.75|1996-01-21|1-URGENT|Clerk#000001975|0|elets. quickly expre| +73930|725630|F|82415.86|1992-05-31|4-NOT SPECIFIED|Clerk#000004153|0|among the furiously bold instructions| +73931|658258|O|115052.58|1996-02-20|2-HIGH|Clerk#000002932|0|ag furiously regular braids. c| +73932|61264|F|167614.92|1992-06-09|5-LOW|Clerk#000000421|0|le furiously according to the furiously bold deposits. blithel| +73933|637802|F|258031.41|1993-01-02|4-NOT SPECIFIED|Clerk#000001918|0|nstructions. depths c| +73934|523060|O|90485.22|1995-07-04|5-LOW|Clerk#000004242|0| of the fluffily regular dependencies. regular accounts wak| +73935|286630|F|289908.83|1994-12-06|1-URGENT|Clerk#000000070|0|ven requests. platelets aft| +73960|111787|O|100124.68|1995-10-11|4-NOT SPECIFIED|Clerk#000004709|0|ag furiously. ironi| +73961|22777|O|146056.27|1996-04-20|3-MEDIUM|Clerk#000002680|0|ters. ironic, bold account| +73962|305375|O|31720.59|1997-09-28|4-NOT SPECIFIED|Clerk#000003010|0|ithely. blithely even requests cajole car| +73963|184448|O|13187.18|1996-04-10|1-URGENT|Clerk#000003624|0|elets are against the quickly even deposits. slyly ironic accounts are fu| +73964|265265|F|169172.68|1992-12-20|2-HIGH|Clerk#000000442|0|l wake slyly after the acc| +73965|302411|O|89159.63|1995-05-28|4-NOT SPECIFIED|Clerk#000004340|0|yly bold instructions are blithely special dependencies. final, pending| +73966|621526|F|213733.24|1992-11-25|4-NOT SPECIFIED|Clerk#000001888|0|refully regular deposits. carefully un| +73967|720493|O|212590.30|1997-11-30|3-MEDIUM|Clerk#000003626|0|s. theodolites was quickly | +73992|549944|O|90852.24|1995-09-16|2-HIGH|Clerk#000003534|0|kages. carefully even requests cajole furiously alongside of the carefully | +73993|651115|F|197860.67|1993-03-18|1-URGENT|Clerk#000001624|0|ges. quickly ironic accounts boost final, regular requests. quiet courts | +73994|32338|O|264453.98|1996-11-02|1-URGENT|Clerk#000000204|0|onic deposits. furiously final accounts against the iron| +73995|473966|O|66839.20|1996-02-21|5-LOW|Clerk#000000219|0| furiously pending packages.| +73996|194842|F|71713.94|1994-01-04|5-LOW|Clerk#000002261|0|among the carefully silent pinto beans. carefully | +73997|181325|F|241939.64|1993-01-04|1-URGENT|Clerk#000000182|0|ular hockey players c| +73998|278437|F|40053.13|1993-09-26|2-HIGH|Clerk#000002543|0|e quickly silent theodolite| +73999|411937|F|401338.96|1992-10-08|3-MEDIUM|Clerk#000003535|0|posits. fluffily regular platelets| +74024|166111|F|187410.65|1993-09-18|4-NOT SPECIFIED|Clerk#000000875|0|lites are doggedly bold requests. quickly unusual depo| +74025|327235|O|9093.78|1995-12-31|4-NOT SPECIFIED|Clerk#000004114|0|final excuses. carefully bold asymptotes nag. quickly even fox| +74026|70442|O|53751.59|1997-07-30|5-LOW|Clerk#000002873|0|iously special excuses wake after the carefully fi| +74027|402772|F|117201.87|1992-02-29|5-LOW|Clerk#000001199|0|ackages. regular, even instructions c| +74028|618277|F|298364.28|1994-10-26|3-MEDIUM|Clerk#000001719|0| fluffily unusual accounts integrate blithely unusual, unusual theodolit| +74029|116411|O|92680.02|1996-04-03|2-HIGH|Clerk#000004331|0|ecial ideas. requests wake quietly. silent pac| +74030|504719|F|135853.67|1994-04-30|2-HIGH|Clerk#000003100|0|efully platelets. packages sleep. ironic, special pinto beans dazzle careful| +74031|299098|O|9768.57|1997-01-24|1-URGENT|Clerk#000001635|0|requests sleep carefully. regular a| +74056|436190|F|162228.81|1992-11-27|1-URGENT|Clerk#000002525|0|e the blithely special accounts. furiously unusual foxes believe. blithe| +74057|539261|O|34592.60|1996-05-19|2-HIGH|Clerk#000004341|0|ang fluffily bold packages. furiously even theodolites sleep | +74058|355738|O|68255.34|1995-07-12|2-HIGH|Clerk#000002994|0|efully bold dependencies. carefully ironic packa| +74059|631330|F|169498.10|1992-04-23|5-LOW|Clerk#000003663|0|to beans. slyly final packages nag furiously. blithely regula| +74060|506755|P|277109.09|1995-02-25|4-NOT SPECIFIED|Clerk#000000946|0| pinto beans. carefully ironic instructions cajole furiously. iro| +74061|23737|O|122874.63|1996-10-30|5-LOW|Clerk#000004798|0|inal accounts use. ironic foxes are slyly according to the slyly regular p| +74062|684131|F|321169.85|1994-06-12|1-URGENT|Clerk#000000264|0|ess requests; silent requests serve quickly. ideas use boldly u| +74063|684970|F|96310.49|1994-11-15|1-URGENT|Clerk#000000381|0| bold, final deposits wake ruthlessly across the carefully| +74088|525463|F|24256.21|1993-11-16|2-HIGH|Clerk#000003024|0|l accounts cajole ca| +74089|199246|O|263026.38|1997-08-02|5-LOW|Clerk#000001940|0|ress dependencies after the furiously ironic theodol| +74090|698456|F|192568.69|1992-11-03|4-NOT SPECIFIED|Clerk#000002652|0| the final pinto beans cajole blithely against the furi| +74091|683519|O|129547.07|1998-05-23|4-NOT SPECIFIED|Clerk#000001311|0|s play across the accounts. final, permanent accounts nag slyly acc| +74092|141782|F|169900.90|1994-07-27|3-MEDIUM|Clerk#000000625|0|to beans are furiously aft| +74093|164377|F|94394.79|1994-01-31|2-HIGH|Clerk#000000095|0|ackages wake furiously blithely | +74094|429830|O|35605.70|1996-12-15|1-URGENT|Clerk#000004910|0|losely even package| +74095|140839|F|80437.06|1992-08-07|2-HIGH|Clerk#000000417|0| above the carefully regula| +74120|59053|F|49768.55|1994-07-09|5-LOW|Clerk#000002744|0|ully even, ironic deposits. r| +74121|247897|O|138861.98|1998-04-20|4-NOT SPECIFIED|Clerk#000002874|0| ironic packages across t| +74122|152683|F|381950.52|1994-10-25|5-LOW|Clerk#000002860|0|st blithely finally final deposits. | +74123|386542|O|108051.87|1997-12-23|3-MEDIUM|Clerk#000003348|0|ide of the regular deposits. qui| +74124|93133|F|288042.03|1994-12-24|2-HIGH|Clerk#000004422|0|lly final packages. theodolites sleep quickly. quickly final| +74125|21490|O|6934.46|1996-06-24|1-URGENT|Clerk#000000640|0|blithely final dugouts wake carefully ironic deposits. regular foxes| +74126|404222|P|189455.47|1995-03-13|5-LOW|Clerk#000001506|0|p bold packages. special, pending accounts wake carefully above the | +74127|246200|F|298574.93|1992-11-05|2-HIGH|Clerk#000003889|0|arefully regular deposits hinder carefully a| +74152|122351|F|144116.22|1992-01-08|2-HIGH|Clerk#000001531|0|carefully furiously final foxes. enticingly final requests wa| +74153|586729|O|55125.90|1997-03-23|2-HIGH|Clerk#000003538|0|regular foxes sleep furiously slyly unus| +74154|139945|O|270065.65|1997-06-23|1-URGENT|Clerk#000004799|0|gular instructions. dolphins around the carefully final theodolites are fluff| +74155|35425|O|274102.46|1995-10-05|2-HIGH|Clerk#000000766|0|ackages are furiously according to the slyly ironic foxes: furiously ironic | +74156|606520|O|37188.27|1996-11-05|5-LOW|Clerk#000002975|0|usly blithely ironic ideas| +74157|519808|O|92523.29|1995-09-15|2-HIGH|Clerk#000004077|0| are furiously bold dependenc| +74158|410911|O|84707.09|1996-03-26|5-LOW|Clerk#000001929|0|eposits could have to boost furiously packages| +74159|180346|O|165888.10|1995-09-18|4-NOT SPECIFIED|Clerk#000001376|0|ngside of the packages. pending deposits accordin| +74184|299848|O|159350.81|1996-12-16|5-LOW|Clerk#000004346|0|leep blithely furiously express packages. unusual exc| +74185|270940|O|39155.11|1996-11-13|1-URGENT|Clerk#000004331|0|nd the quickly regular foxes-- regular deposits boost s| +74186|414715|O|257988.49|1996-01-30|3-MEDIUM|Clerk#000003803|0|ld dependencies wake furiously furiously final requests. quickly reg| +74187|363493|O|255429.80|1995-10-15|1-URGENT|Clerk#000000266|0|ecial platelets. unusual, ironic | +74188|447575|F|95526.12|1994-10-05|4-NOT SPECIFIED|Clerk#000003851|0|equests haggle furiously. quickly special deposits integrate idly aga| +74189|628336|O|177485.67|1995-11-10|1-URGENT|Clerk#000004676|0|ts. packages use according to the final, unusual ideas. blithely even request| +74190|417379|F|321093.13|1994-12-26|1-URGENT|Clerk#000003137|0|ptotes haggle across the express theodolites. blithely even asymptotes ea| +74191|109453|O|248947.62|1998-07-04|1-URGENT|Clerk#000002666|0| across the final theodolites. slyly ironic asymptotes against the fi| +74216|567358|O|185828.57|1996-01-18|5-LOW|Clerk#000000706|0|ly final attainments. unusual, bold accounts sleep blithely above| +74217|60799|F|40365.05|1995-01-26|4-NOT SPECIFIED|Clerk#000002823|0|ld deposits above the fur| +74218|316741|O|172317.68|1996-02-08|1-URGENT|Clerk#000000477|0|ular packages sleep slyly around the idl| +74219|700420|O|86993.08|1995-10-21|2-HIGH|Clerk#000004996|0|thely final foxes haggle furiously final deposits. carefully ir| +74220|703744|O|124859.57|1996-10-09|3-MEDIUM|Clerk#000003236|0|lyly. quickly speci| +74221|309314|F|288003.19|1993-04-13|4-NOT SPECIFIED|Clerk#000001843|0| cajole final, unusual pinto beans. express accounts integrate after th| +74222|384745|O|250960.76|1996-05-02|2-HIGH|Clerk#000002298|0|regular, express asymptotes poach according to| +74223|628115|O|82280.41|1997-05-19|1-URGENT|Clerk#000002410|0|ach blithely ironic frays. final requests detect. furiously final accounts| +74248|476245|O|149898.40|1997-03-01|2-HIGH|Clerk#000002479|0|s? final ideas cajole carefull| +74249|238391|O|117445.78|1995-12-31|2-HIGH|Clerk#000003641|0|of the deposits. quickly careful frets nag. quick| +74250|129362|O|177109.99|1997-07-29|5-LOW|Clerk#000003134|0|ans detect silently even theodolites. idly special packages promise blit| +74251|681041|F|169903.51|1993-08-01|5-LOW|Clerk#000000587|0|ding dependencies. close warhorses haggle quickly. req| +74252|503287|O|19283.85|1995-06-02|3-MEDIUM|Clerk#000000625|0|n ideas promise bravely. quickly regular accounts use furiously ironic requ| +74253|222031|F|170522.10|1992-10-09|1-URGENT|Clerk#000004643|0|uthlessly ironic requests w| +74254|407249|F|102821.74|1994-11-08|5-LOW|Clerk#000002921|0|nal instructions sleep along the evenly| +74255|120343|F|93393.90|1993-08-08|2-HIGH|Clerk#000002307|0| cajole-- even, regular dependencies breach slyly carefully unusual | +74280|599276|F|52780.32|1993-03-13|1-URGENT|Clerk#000002288|0|s haggle quickly bold acco| +74281|270662|O|124629.20|1998-07-11|3-MEDIUM|Clerk#000001519|0|along the furiously ironic foxes. slyly fin| +74282|254318|F|138365.62|1992-01-24|2-HIGH|Clerk#000002934|0|ual packages detect carefully express asymptotes. ironic| +74283|63520|O|60160.07|1998-02-24|1-URGENT|Clerk#000004656|0|al, special packages about the furiously bold accounts us| +74284|312847|O|160607.86|1996-03-09|3-MEDIUM|Clerk#000004598|0| deposits boost carefully after the regular foxes; s| +74285|514342|F|119769.38|1993-05-29|3-MEDIUM|Clerk#000000125|0|g orbits could have to detect quickly| +74286|12640|O|76282.16|1997-08-21|1-URGENT|Clerk#000000843|0|even requests thrash. carefully regular excuses wake slyly.| +74287|161674|F|82766.17|1992-08-10|3-MEDIUM|Clerk#000002435|0|uests thrash. packages nag | +74312|733322|F|186183.87|1992-10-05|4-NOT SPECIFIED|Clerk#000004654|0|ckly slyly regular excuses. slyly ironic in| +74313|192101|F|69207.88|1992-09-15|4-NOT SPECIFIED|Clerk#000003781|0|odolites. blithely even packages sleep slyl| +74314|638596|O|148761.33|1997-04-18|2-HIGH|Clerk#000003768|0| haggle furiously after th| +74315|366577|F|181164.35|1994-10-29|3-MEDIUM|Clerk#000002331|0|fully express deposits detect a| +74316|533528|P|171918.69|1995-05-03|1-URGENT|Clerk#000002954|0|ke against the even, ironic tithes. carefully unu| +74317|744427|O|128015.02|1995-08-07|5-LOW|Clerk#000003329|0|er the pending, bold p| +74318|83974|F|107070.92|1994-10-09|5-LOW|Clerk#000004796|0|luffily unusual excuses. qui| +74319|593815|O|61742.89|1996-06-21|3-MEDIUM|Clerk#000000122|0|uriously regular instructions are bl| +74344|725944|F|234530.13|1994-02-24|3-MEDIUM|Clerk#000000720|0|ully regular, close ideas. ironic| +74345|677890|F|251862.58|1992-07-10|5-LOW|Clerk#000001563|0| accounts. special theodol| +74346|38815|O|27090.50|1998-03-11|4-NOT SPECIFIED|Clerk#000000704|0|y ironic requests affix slyly after the carefully final accounts| +74347|613231|F|156457.99|1992-09-28|3-MEDIUM|Clerk#000001530|0|courts. requests engage busily about the unusual packages. quickly ex| +74348|47923|F|229670.32|1992-12-29|5-LOW|Clerk#000002962|0|ic ideas wake furiously regular excuses-- iro| +74349|674197|F|98257.34|1992-11-21|5-LOW|Clerk#000001360|0|sly quickly final excuses. requests wake slyly? closely | +74350|218467|F|267632.22|1993-07-19|2-HIGH|Clerk#000003532|0|inly silent courts haggle blithely. instructions boost slyly. furiously ex| +74351|497917|O|158142.01|1996-02-23|1-URGENT|Clerk#000004982|0|ar foxes are. unusual requests detect blithely. ca| +74376|719092|F|254162.25|1994-01-15|1-URGENT|Clerk#000001722|0|ly even requests. fi| +74377|262009|F|187497.70|1992-10-09|1-URGENT|Clerk#000000551|0|nd the ironic instructions wake along the careful asymptotes. furiou| +74378|332902|O|271429.59|1996-10-13|4-NOT SPECIFIED|Clerk#000004674|0|ly at the even deposits. fluffily final accoun| +74379|58348|F|211474.49|1993-09-11|4-NOT SPECIFIED|Clerk#000000573|0|grate across the final | +74380|384479|O|87077.56|1996-05-27|1-URGENT|Clerk#000003003|0|the blithely ironic deposits believe blithely fu| +74381|687664|F|223706.79|1992-12-06|3-MEDIUM|Clerk#000001523|0|n pinto beans. daring| +74382|65617|P|111201.11|1995-03-12|2-HIGH|Clerk#000001128|0|t blithely according to the fluffy, regular | +74383|318935|P|101209.07|1995-05-26|3-MEDIUM|Clerk#000003253|0|e quick depths. unusual acc| +74408|74689|O|169084.89|1997-01-04|4-NOT SPECIFIED|Clerk#000002570|0|ep among the deposits. unusual, expr| +74409|517168|F|182723.80|1995-03-12|1-URGENT|Clerk#000002410|0|the ironic, ironic deposits. ironic accounts affix furiously iro| +74410|270260|F|168813.31|1994-03-07|2-HIGH|Clerk#000004192|0|uests. carefully ironic foxes wake quickly a| +74411|244607|F|243329.42|1994-03-26|4-NOT SPECIFIED|Clerk#000003451|0|. carefully bold dep| +74412|343408|O|49360.90|1996-10-24|1-URGENT|Clerk#000000800|0|ias. pending requests serve al| +74413|378916|F|17137.20|1993-12-24|2-HIGH|Clerk#000000943|0|lar accounts wake regularly b| +74414|173560|F|169596.26|1993-09-03|4-NOT SPECIFIED|Clerk#000002432|0|ly ironic excuses grow furiously across the bold platelets. slowly unusual p| +74415|255205|O|313791.08|1996-12-20|2-HIGH|Clerk#000001819|0|ly special accounts use along the quickly pending accou| +74440|727591|F|99732.85|1993-05-27|4-NOT SPECIFIED|Clerk#000001048|0|ickly according to the slyly iron| +74441|589613|O|296100.22|1995-10-06|2-HIGH|Clerk#000004513|0|yly. doggedly pendin| +74442|617212|O|213936.61|1997-09-16|2-HIGH|Clerk#000003945|0|. final, bold pinto beans must have to promise slyly express cou| +74443|209734|F|56776.34|1992-01-19|1-URGENT|Clerk#000002651|0|s. furiously final packages sleep across the blithely pending f| +74444|749096|O|60011.60|1998-05-12|5-LOW|Clerk#000001271|0|lar packages sleep blithely| +74445|550055|F|221466.77|1994-07-11|1-URGENT|Clerk#000000361|0|ic requests cajole slyly. even, stealthy deposits cajole slyly fin| +74446|259564|O|73334.04|1997-05-21|4-NOT SPECIFIED|Clerk#000000661|0|ckages above the special theodolites | +74447|462625|O|311008.64|1996-09-17|3-MEDIUM|Clerk#000004330|0| bold instructions boost blithely. special foxes can | +74472|74873|O|193275.01|1995-12-23|1-URGENT|Clerk#000002982|0|mptotes nag across the slyly regular requests. furiously regular packages| +74473|640505|F|8036.37|1993-07-18|1-URGENT|Clerk#000003188|0|ic dolphins. excuses are. slyly ironic packages use after the bli| +74474|206330|F|149439.02|1994-09-26|2-HIGH|Clerk#000003783|0|ests cajole slyly alongside of the regula| +74475|522082|O|47060.99|1996-02-15|1-URGENT|Clerk#000003106|0|he slyly regular in| +74476|364742|O|131094.29|1996-06-05|3-MEDIUM|Clerk#000003196|0|kages boost above the slyly final packages. packages sleep carefull| +74477|462064|F|88796.56|1994-03-08|1-URGENT|Clerk#000002078|0|ounts cajole along the blithely| +74478|381940|O|34872.28|1996-06-12|1-URGENT|Clerk#000001797|0|s sleep along the furiously ironic foxes. regular foxes integ| +74479|11839|F|41061.43|1992-05-05|2-HIGH|Clerk#000000764|0|yers. furiously even platelet| +74504|210217|P|66394.34|1995-05-18|2-HIGH|Clerk#000004940|0|ully even packages int| +74505|600134|F|342908.70|1992-07-28|4-NOT SPECIFIED|Clerk#000004974|0|express packages are blithely bene| +74506|439757|P|282795.62|1995-05-19|3-MEDIUM|Clerk#000002804|0|lar, regular packages| +74507|489442|F|208903.29|1994-12-02|5-LOW|Clerk#000000945|0|latelets. bold excuses against the packages poach| +74508|35591|F|225994.30|1992-11-06|3-MEDIUM|Clerk#000002162|0| quickly among the furiously bol| +74509|411674|O|103101.07|1995-06-11|1-URGENT|Clerk#000000730|0|le slyly accounts. | +74510|254218|O|105017.24|1996-03-06|5-LOW|Clerk#000001542|0|ts integrate pending, exp| +74511|615112|O|302892.18|1996-07-04|5-LOW|Clerk#000003356|0|ckages. carefully silent deposits breach slyly carefully pending deposits. | +74536|165904|F|320938.25|1994-12-15|4-NOT SPECIFIED|Clerk#000002178|0|ests wake fluffily along the ironic foxes. slyly even packages| +74537|597766|F|231462.65|1992-03-25|4-NOT SPECIFIED|Clerk#000000102|0|l accounts nag. accounts use thinly. bold deposits boost furiously. pendi| +74538|388861|O|224633.84|1995-09-04|4-NOT SPECIFIED|Clerk#000000125|0|ts. final, special hockey players try to cajol| +74539|60715|F|93024.40|1994-11-12|5-LOW|Clerk#000000549|0|ns. carefully bold theodolites sleep| +74540|431338|O|292538.84|1997-03-28|3-MEDIUM|Clerk#000000710|0|was furiously-- quickly bold theodolites boost alongside of the quickly| +74541|742892|F|98930.27|1994-10-29|1-URGENT|Clerk#000001580|0|blithely silent theodolites. carefully regular deposits are. even, p| +74542|527524|P|85329.83|1995-03-29|5-LOW|Clerk#000001158|0|ular accounts are. caref| +74543|324250|F|98232.90|1992-01-20|4-NOT SPECIFIED|Clerk#000000355|0|d requests. quickly final pl| +74568|143488|F|257915.95|1993-12-14|3-MEDIUM|Clerk#000000153|0|ctions are furiously according to th| +74569|325090|F|114961.87|1993-08-26|1-URGENT|Clerk#000002528|0|ctions. final deposits after the packages are carefully after the busil| +74570|17656|F|50513.49|1993-09-07|1-URGENT|Clerk#000003443|0|ke blithely unusual requ| +74571|473089|O|233366.38|1997-03-16|1-URGENT|Clerk#000004500|0|beans. slyly pending courts hang furiously b| +74572|447667|F|218931.55|1993-11-08|4-NOT SPECIFIED|Clerk#000003674|0|osits. regular, quick excuses detect furi| +74573|665008|O|235241.39|1996-06-17|4-NOT SPECIFIED|Clerk#000003941|0|odolites haggle fluffily quickly special accounts. foxes use bli| +74574|270160|O|247288.31|1995-07-29|5-LOW|Clerk#000004807|0|oxes are fluffily across the slyly unusual packages: blithely special | +74575|64243|F|53296.48|1992-05-24|2-HIGH|Clerk#000004251|0|tes cajole carefully. unus| +74600|456835|F|215392.11|1995-01-21|4-NOT SPECIFIED|Clerk#000000950|0| slyly regular theodolites around the slyly ironic deposits haggle fluffily a| +74601|260411|O|276100.51|1998-04-06|4-NOT SPECIFIED|Clerk#000001315|0|ess, regular pinto beans. unusual multipliers in| +74602|467660|F|215751.23|1995-02-02|5-LOW|Clerk#000003625|0|unts: quickly unusual pack| +74603|699113|F|98444.69|1992-11-20|4-NOT SPECIFIED|Clerk#000004147|0|sly ironic packages boos| +74604|486010|O|170814.44|1997-02-21|1-URGENT|Clerk#000004170|0|rate after the regul| +74605|101767|F|120087.73|1994-06-04|2-HIGH|Clerk#000002972|0|ckly even packages. special| +74606|378745|F|7112.24|1994-07-15|1-URGENT|Clerk#000000128|0|heodolites sleep flu| +74607|285271|F|88550.20|1993-09-12|1-URGENT|Clerk#000003603|0|al decoys. ironic, bold packages are blithely bold requests. slyly pending| +74632|543527|O|216325.10|1996-08-18|1-URGENT|Clerk#000001042|0| excuses. regular tithes use slyly. regular, thin orbits detect blithely| +74633|44756|F|226360.35|1994-02-11|3-MEDIUM|Clerk#000000272|0|oggedly regular theodolites are quickly furiously express request| +74634|707690|F|157160.07|1995-02-13|5-LOW|Clerk#000000552|0|nic instructions wake furiously. careful, spe| +74635|632506|F|20682.15|1992-01-15|4-NOT SPECIFIED|Clerk#000000896|0|believe alongside of the furiously ironic ideas. ironic, final accounts dazz| +74636|2597|O|91750.83|1995-08-18|5-LOW|Clerk#000003970|0|kages. slyly ironic a| +74637|133423|O|159919.99|1997-03-24|4-NOT SPECIFIED|Clerk#000004278|0|usual packages. express asymptotes was according to the | +74638|661469|O|79227.26|1998-01-02|5-LOW|Clerk#000001769|0|ructions. carefully ironic packages| +74639|57998|F|158954.03|1992-11-18|4-NOT SPECIFIED|Clerk#000004165|0|xcuses breach slyly against the silent pinto beans. caref| +74664|521824|F|55994.84|1993-02-07|3-MEDIUM|Clerk#000003898|0|foxes. pending, express theodolites among the ironically ironic excuses sleep| +74665|513061|F|193071.05|1993-12-03|5-LOW|Clerk#000003577|0|nto beans are instructions. blithe| +74666|235913|O|53951.71|1997-12-08|4-NOT SPECIFIED|Clerk#000002301|0|l deposits. platelets can sleep carefully alongsid| +74667|476950|F|99663.33|1992-05-07|2-HIGH|Clerk#000004603|0|nding pinto beans s| +74668|81623|O|169871.43|1997-12-10|5-LOW|Clerk#000003892|0|fully busy foxes. final instructions sleep sl| +74669|75541|F|199372.47|1992-06-08|5-LOW|Clerk#000002848|0|thely furiously regular theodolit| +74670|606938|O|67632.11|1997-08-16|1-URGENT|Clerk#000003242|0|nal packages. ideas wake. | +74671|54131|O|131386.04|1995-08-10|4-NOT SPECIFIED|Clerk#000001659|0|ly regular asymptotes. | +74696|28936|O|227267.57|1997-08-10|3-MEDIUM|Clerk#000003751|0|rs boost furiously according to the qui| +74697|293822|F|66628.71|1992-10-09|1-URGENT|Clerk#000001737|0|ly unusual deposits. fluffily special de| +74698|256457|O|255021.29|1996-01-10|3-MEDIUM|Clerk#000001290|0|s wake against the dependencies. fluffily thin dep| +74699|15199|F|156902.44|1992-10-17|2-HIGH|Clerk#000003789|0|ironic deposits detec| +74700|438730|F|145822.03|1994-10-04|1-URGENT|Clerk#000001206|0|ng the blithely special requests. slyly even requests a| +74701|458695|O|119950.10|1995-10-18|4-NOT SPECIFIED|Clerk#000003974|0|y. slyly blithe realms at the carefully final deposits cajole furiously expres| +74702|27650|F|163782.28|1993-12-12|5-LOW|Clerk#000002419|0|are carefully pending theodolites. special, f| +74703|459484|P|82655.45|1995-03-09|2-HIGH|Clerk#000004705|0|lithely regular theodolites. quickly even deposits use| +74728|539191|F|166647.07|1992-12-04|2-HIGH|Clerk#000001671|0|pinto beans. even accounts cajole at | +74729|663821|F|261998.20|1994-11-01|3-MEDIUM|Clerk#000002259|0|fily even deposits about the f| +74730|583885|O|211914.99|1996-09-05|5-LOW|Clerk#000002439|0| courts wake furiously against the unusual, final ideas. furiously regular| +74731|344212|O|45430.72|1996-02-20|3-MEDIUM|Clerk#000001845|0|y blithely regular th| +74732|401896|F|84219.26|1994-03-14|2-HIGH|Clerk#000000217|0|bove the carefully even requests. blithely ironic accounts| +74733|147710|F|193754.86|1994-01-29|4-NOT SPECIFIED|Clerk#000000077|0|ickly furiously final pinto beans. careful| +74734|45688|F|199485.08|1992-11-19|5-LOW|Clerk#000001805|0|lithely regular platelets. slyly regular packages wa| +74735|615637|O|144524.43|1995-09-02|4-NOT SPECIFIED|Clerk#000004894|0|arefully pending excuses. packages are furiously furiously regular dinos| +74760|747190|O|253077.83|1996-08-21|3-MEDIUM|Clerk#000002049|0|ag blithely blithely regula| +74761|2329|F|83476.78|1992-10-16|2-HIGH|Clerk#000000769|0|ructions. carefully special mult| +74762|128932|F|197141.33|1994-06-14|3-MEDIUM|Clerk#000002337|0|ily after the regular pa| +74763|192890|O|70753.83|1996-11-29|1-URGENT|Clerk#000001472|0|ending platelets cajole alongside of the closely iron| +74764|397993|O|33295.73|1996-02-16|2-HIGH|Clerk#000000499|0|ironic, ironic packages ser| +74765|562444|F|181299.17|1993-07-08|5-LOW|Clerk#000000832|0|carefully final excuses| +74766|731266|F|20237.95|1992-08-19|5-LOW|Clerk#000004552|0|ges are. special requests boost carefully slyly special ideas. silent court| +74767|119344|F|139676.82|1994-04-20|2-HIGH|Clerk#000004692|0|ckages cajole furiously accordin| +74792|306953|O|190100.94|1997-11-27|2-HIGH|Clerk#000002824|0|s. carefully express foxes haggle quickly! carefully b| +74793|457235|O|172926.09|1998-03-07|5-LOW|Clerk#000000138|0|ons are. quickly regular deposits integ| +74794|241273|F|187464.20|1993-02-18|4-NOT SPECIFIED|Clerk#000002254|0|p quietly. slyly unusual pa| +74795|556601|F|45746.13|1994-10-23|4-NOT SPECIFIED|Clerk#000003593|0|ily from the ironic asymptotes. carefully special requests haggle above | +74796|32926|O|83727.89|1995-08-09|5-LOW|Clerk#000000825|0|ntly. blithely regular pa| +74797|627742|O|147876.73|1996-05-04|4-NOT SPECIFIED|Clerk#000002161|0|usual deposits. regular pinto beans integrate| +74798|195971|F|318849.46|1992-08-23|3-MEDIUM|Clerk#000003393|0| after the silent accounts; f| +74799|424528|F|3024.73|1994-12-15|1-URGENT|Clerk#000002259|0| about the furiously even instructions. ironic | +74824|260764|F|81030.17|1993-08-13|5-LOW|Clerk#000002400|0|ithely pending packages. slyly regular package| +74825|403354|O|241570.47|1996-01-05|4-NOT SPECIFIED|Clerk#000001375|0|haggle ironic, regular dolphins. quickly regular pa| +74826|667241|O|129621.08|1996-05-11|3-MEDIUM|Clerk#000002060|0|eep against the final, even accounts.| +74827|313483|O|101484.89|1997-11-29|1-URGENT|Clerk#000003791|0|hely regular accounts. pinto beans sublate according to the ironic accounts| +74828|681445|O|22796.30|1995-07-23|3-MEDIUM|Clerk#000004662|0|cies. final accounts at the sl| +74829|538861|F|43130.31|1994-01-02|1-URGENT|Clerk#000001599|0|uffily final theodolites doze quickly along the f| +74830|358765|F|154230.57|1992-03-31|5-LOW|Clerk#000003845|0|fully silent requests engage furio| +74831|488968|O|73740.24|1998-05-19|5-LOW|Clerk#000002806|0|ts nag finally quickly express excu| +74856|320485|O|248938.40|1995-07-02|5-LOW|Clerk#000001399|0|tructions detect fluffily ironic accounts. blithe| +74857|636046|F|216962.11|1992-12-21|1-URGENT|Clerk#000004349|0|pinto beans use among th| +74858|255377|F|295776.68|1993-01-22|4-NOT SPECIFIED|Clerk#000003924|0| quickly. blithely regular multipliers according to the blithe| +74859|606962|F|13404.01|1994-07-22|3-MEDIUM|Clerk#000000644|0|ckly bold ideas; requests wake blithely deposits. final deposits nag furiousl| +74860|446866|F|337437.56|1994-03-17|2-HIGH|Clerk#000000191|0| furiously regular ideas sleep permanentl| +74861|726682|F|194363.15|1993-03-25|3-MEDIUM|Clerk#000002846|0|heodolites use against the carefully ironic| +74862|324496|O|54804.15|1996-03-28|5-LOW|Clerk#000002541|0|as use after the unusu| +74863|528727|F|232814.67|1992-09-02|4-NOT SPECIFIED|Clerk#000002941|0|fily express pinto beans wake according to the bol| +74888|307939|F|160915.91|1993-01-14|4-NOT SPECIFIED|Clerk#000002387|0|dolites are slyly. deposits against the furiously special depos| +74889|529658|F|9091.28|1995-02-13|3-MEDIUM|Clerk#000001538|0| pinto beans sleep carefully according to the fur| +74890|204581|F|47321.54|1993-03-13|5-LOW|Clerk#000004902|0|carefully regular orbits. silent packages haggle furiously under | +74891|388007|F|121286.79|1993-02-09|4-NOT SPECIFIED|Clerk#000000773|0| alongside of the blithely ironic packa| +74892|732425|O|138163.19|1995-09-23|2-HIGH|Clerk#000003737|0|ss blithely regular accounts. regular packages pr| +74893|113402|O|108139.53|1996-08-18|5-LOW|Clerk#000002140|0|equests. slyly special theodolites according t| +74894|181573|O|354047.07|1997-07-13|3-MEDIUM|Clerk#000000615|0| blithely. enticingly express theodolites ar| +74895|666853|F|226036.75|1992-12-04|5-LOW|Clerk#000000055|0|unts snooze carefully slyly express deposits. unusual, eve| +74920|516245|O|77332.99|1996-12-06|1-URGENT|Clerk#000004045|0|ts serve slyly slyly even sheave| +74921|514975|O|181578.59|1995-11-16|4-NOT SPECIFIED|Clerk#000001178|0| above the regular, even asymptotes. blithely final pinto beans across the f| +74922|156019|O|277511.73|1998-03-16|2-HIGH|Clerk#000001170|0|final instructions around the ironic acco| +74923|181090|F|207601.23|1994-11-05|3-MEDIUM|Clerk#000001832|0|nos nag ironic packages. reques| +74924|62879|F|72616.79|1992-02-08|2-HIGH|Clerk#000001459|0|ackages. enticing, regula| +74925|49873|O|291426.46|1998-02-08|5-LOW|Clerk#000003652|0|y stealthy pinto beans h| +74926|433099|O|166265.58|1996-05-10|1-URGENT|Clerk#000003058|0|leep fluffily. regular theodolites about t| +74927|339253|O|226865.16|1996-06-07|2-HIGH|Clerk#000000977|0|ole blithely final pinto beans. slyly iron| +74952|306575|O|54605.59|1996-04-20|5-LOW|Clerk#000003880|0|rly pending instructions must solve furiousl| +74953|89473|F|248454.20|1993-06-18|2-HIGH|Clerk#000002057|0|h carefully instead of the carefully r| +74954|749359|F|43196.11|1993-12-10|1-URGENT|Clerk#000003664|0|nic, unusual dolphins are quickly c| +74955|465007|F|232597.63|1992-10-16|5-LOW|Clerk#000004622|0|ithely bold pinto beans; bravely unusual ideas nag e| +74956|370078|O|111575.13|1996-09-22|4-NOT SPECIFIED|Clerk#000000751|0|blithely final attain| +74957|119941|O|13808.73|1996-10-26|4-NOT SPECIFIED|Clerk#000001319|0|ly regular excuses sleep furiously among t| +74958|597418|O|42794.26|1995-07-30|2-HIGH|Clerk#000003638|0|ual foxes. quickly ironic accounts ha| +74959|548720|O|240984.90|1997-04-28|3-MEDIUM|Clerk#000000835|0|uests. fluffily regular foxes detect according to the blithely even notor| +74984|320327|O|112767.91|1998-07-17|1-URGENT|Clerk#000000388|0| slyly across the carefully| +74985|228146|F|107464.66|1994-07-23|4-NOT SPECIFIED|Clerk#000002080|0|ht to sublate carefully against the fi| +74986|437336|F|286282.31|1995-01-09|3-MEDIUM|Clerk#000004639|0|de of the excuses. ironic package| +74987|305800|F|193816.55|1993-01-13|1-URGENT|Clerk#000002484|0|endencies. furiously regular requests wake| +74988|578203|O|201432.34|1997-12-30|2-HIGH|Clerk#000001517|0|s. express requests detect | +74989|77527|O|63636.92|1997-05-24|1-URGENT|Clerk#000000798|0|gular deposits run closely? quickly even acc| +74990|228406|F|81459.63|1992-12-05|3-MEDIUM|Clerk#000003659|0|furiously special packages. iron| +74991|288943|O|116837.39|1998-01-10|2-HIGH|Clerk#000001140|0|ackages wake final asymptotes. regular, bo| +75016|749458|O|113850.14|1995-12-18|3-MEDIUM|Clerk#000001404|0|t the furiously sly frets doze slyly furiously silent depos| +75017|616042|O|123297.43|1997-05-10|1-URGENT|Clerk#000000617|0|ickly pending requests| +75018|35903|O|252894.67|1996-06-07|2-HIGH|Clerk#000001309|0|ven dependencies eat. fluffily even theodolites use ironically after the slyly| +75019|418600|O|61852.49|1995-07-25|3-MEDIUM|Clerk#000000226|0|ly pending waters solve c| +75020|397286|F|267791.84|1992-06-17|2-HIGH|Clerk#000004156|0|! regular packages are blithely. slyly regular deposits sleep| +75021|676399|F|46478.30|1994-07-01|4-NOT SPECIFIED|Clerk#000001589|0|according to the carefully regular theodol| +75022|457618|F|243279.19|1993-04-07|2-HIGH|Clerk#000004178|0| regular dinos. fluffily daring requests along| +75023|654532|F|264866.99|1992-07-18|2-HIGH|Clerk#000003908|0| accounts was quickly ironic platelets. blithely ev| +75048|460561|O|100235.34|1995-10-09|1-URGENT|Clerk#000002958|0|egular pinto beans thrash about th| +75049|647159|F|105087.66|1994-04-21|4-NOT SPECIFIED|Clerk#000001298|0| deposits above the accounts na| +75050|288470|F|117753.72|1994-04-25|2-HIGH|Clerk#000003924|0|yly even foxes. unusual, regular p| +75051|312914|F|217034.27|1993-04-29|4-NOT SPECIFIED|Clerk#000002435|0| wake carefully among the never regular instructi| +75052|137569|F|141945.64|1994-04-27|3-MEDIUM|Clerk#000004896|0|eodolites breach carefu| +75053|618686|O|37964.58|1996-09-20|3-MEDIUM|Clerk#000000930|0|ithely unusual requests among the regular, bold ideas detect evenly alongside | +75054|254107|F|131972.31|1994-11-25|1-URGENT|Clerk#000002085|0|e furiously regular| +75055|262282|O|89470.84|1996-07-23|5-LOW|Clerk#000003793|0|oxes detect during the requests. slyly ruthless multipliers sleep e| +75080|396865|O|290068.91|1996-11-26|5-LOW|Clerk#000001117|0|ly even packages can nod along the enticing, ironic instructions. requests su| +75081|332579|F|136844.48|1993-05-08|5-LOW|Clerk#000003547|0|ously blithely regular instructions! quickly regular accounts near t| +75082|639328|F|91370.20|1992-05-05|1-URGENT|Clerk#000004415|0| fluffily silent ideas haggle quickly | +75083|679396|F|154405.36|1994-05-03|1-URGENT|Clerk#000000619|0|gular packages haggle about the deposits. slyly even excuses wake. b| +75084|595649|F|233446.23|1992-04-04|5-LOW|Clerk#000004565|0|es. accounts lose slyly final deposits. bol| +75085|56360|F|246248.58|1993-05-21|3-MEDIUM|Clerk#000002267|0|ke blithely. bold forges cajole carefully. fluffily regular packages| +75086|736723|F|260507.70|1995-01-17|3-MEDIUM|Clerk#000003588|0|packages was around the final, regular theodolites. final, even reques| +75087|334538|O|186375.07|1997-06-14|3-MEDIUM|Clerk#000001885|0|tain furiously against | +75112|577916|F|81046.79|1994-03-26|5-LOW|Clerk#000001411|0|its nod regular pains. quic| +75113|526261|F|99827.26|1993-05-27|5-LOW|Clerk#000000329|0|ets haggle fluffily after the slyly unusual excuses. qui| +75114|96899|O|191807.88|1997-04-20|5-LOW|Clerk#000001566|0|le. accounts wake bold, final| +75115|325120|F|41965.83|1995-03-21|1-URGENT|Clerk#000003312|0| carefully. furiously unusual accounts about the silent, even pains | +75116|527077|F|319895.38|1993-09-06|2-HIGH|Clerk#000003661|0|express requests are furiously ironic accounts. fl| +75117|300604|O|271055.56|1997-03-30|2-HIGH|Clerk#000003579|0|s. blithely even packages doubt. fluffily ironic dependenc| +75118|236989|F|58195.60|1992-07-28|5-LOW|Clerk#000004886|0|old accounts. account| +75119|566758|F|53613.15|1994-03-08|5-LOW|Clerk#000002335|0|e of the unusual, express deposits. pending, pending foxes ought to nag fur| +75144|472835|F|260346.03|1993-01-07|4-NOT SPECIFIED|Clerk#000001669|0|thes promise. ideas caj| +75145|672421|F|68446.51|1993-07-22|4-NOT SPECIFIED|Clerk#000001535|0|oze furiously. blithely | +75146|352666|F|108108.18|1992-06-18|2-HIGH|Clerk#000002286|0|efully alongside of the regular theodolites. silent packages are. | +75147|734548|O|260209.61|1997-12-01|2-HIGH|Clerk#000002350|0|regular pinto beans breach quickly. carefully final asymptotes b| +75148|540541|F|171662.88|1994-04-27|5-LOW|Clerk#000001051|0| the pinto beans. quickly final accounts boost. carefully special accounts sno| +75149|93383|F|183782.30|1992-06-07|4-NOT SPECIFIED|Clerk#000000048|0|ual asymptotes. fluffily express accounts kindle slyly. pinto beans use s| +75150|482110|F|148305.22|1993-03-07|5-LOW|Clerk#000002746|0|lets sublate fluffily slyly final pinto beans. final, silent req| +75151|543278|F|205238.59|1995-03-16|2-HIGH|Clerk#000002626|0| requests. bold requests cajole. special requests nag fluffily. carefu| +75176|370864|O|57609.54|1997-11-25|2-HIGH|Clerk#000003500|0| slyly across the dep| +75177|592588|O|71070.35|1997-11-07|5-LOW|Clerk#000001756|0|e evenly unusual pinto beans sleep carefully final foxes. slyly ironi| +75178|374717|O|280974.15|1997-02-16|4-NOT SPECIFIED|Clerk#000004552|0|nent requests. furiously ironic deposits nag after the | +75179|112765|O|83504.59|1995-09-09|5-LOW|Clerk#000003982|0|usly express requests caj| +75180|738887|P|220690.56|1995-04-25|1-URGENT|Clerk#000001095|0|e express ideas. express excuses caj| +75181|709370|O|226702.36|1997-01-26|4-NOT SPECIFIED|Clerk#000002116|0|yers. slyly stealthy packages haggle| +75182|373159|F|35411.28|1993-03-20|5-LOW|Clerk#000003597|0|packages cajole slyly quickly bold packages. bold packages afte| +75183|161372|F|236936.60|1993-04-09|2-HIGH|Clerk#000001653|0|ously. bold excuses haggle permanently ruthless requests-- | +75208|177919|F|170808.33|1994-11-25|3-MEDIUM|Clerk#000002455|0|ts need to cajole blithely according to| +75209|15539|F|56597.95|1993-01-27|5-LOW|Clerk#000003573|0|grow quickly upon the enticing, pend| +75210|158750|F|240061.02|1994-06-17|5-LOW|Clerk#000003537|0|ounts. furiously speci| +75211|357112|O|169563.65|1998-06-09|2-HIGH|Clerk#000000601|0|ep quickly along the| +75212|450358|F|29006.67|1992-03-15|3-MEDIUM|Clerk#000001424|0| accounts are. slyly express deposits around the dep| +75213|152815|O|208551.94|1998-04-27|3-MEDIUM|Clerk#000003643|0|he ironic, ironic deposits. furiously express requests nag blith| +75214|349354|O|248983.52|1997-05-11|1-URGENT|Clerk#000003443|0|c requests. asymptotes use slyly against the ironic, | +75215|574277|O|221050.49|1997-10-30|2-HIGH|Clerk#000001868|0|carefully silent dolphins. pen| +75240|109076|O|195592.54|1996-12-15|4-NOT SPECIFIED|Clerk#000003150|0|otes above the slyly final deposits nag sometimes abov| +75241|225223|F|292391.53|1992-08-10|2-HIGH|Clerk#000004526|0|silent packages are slyly final accounts. blithely even instructions cajole qu| +75242|39371|O|232826.84|1997-05-03|5-LOW|Clerk#000001943|0|y close frays. carefully regular dependencies boost blithely final pa| +75243|204775|O|155547.22|1995-07-06|3-MEDIUM|Clerk#000000909|0|thely even accounts. daringly regular deposits boost. fluf| +75244|637429|F|171574.12|1992-07-30|5-LOW|Clerk#000002132|0|carefully bold pinto beans| +75245|242263|O|139646.55|1996-06-08|1-URGENT|Clerk#000003815|0|mptotes. foxes engage blithely carefully final ide| +75246|692617|F|127531.04|1995-01-09|4-NOT SPECIFIED|Clerk#000002823|0|ans. carefully bold depths sleep slyly unusual epitaphs.| +75247|56533|O|106325.47|1995-11-02|5-LOW|Clerk#000002411|0|ymptotes sleep fluffily carefully unusual th| +75272|630194|F|115948.45|1992-12-21|2-HIGH|Clerk#000004148|0|o beans sleep slyly express sentiments. slyly pending dolphins aft| +75273|157117|F|304580.72|1994-07-27|3-MEDIUM|Clerk#000000849|0|nic packages sleep furiously. foxes haggle blithely about the carefully expres| +75274|660374|F|80886.88|1994-05-03|2-HIGH|Clerk#000000015|0|he packages. final pac| +75275|399233|F|194726.43|1994-05-06|1-URGENT|Clerk#000001758|0| furiously even requests according to| +75276|406708|O|184508.55|1998-05-17|5-LOW|Clerk#000000295|0|nusual theodolites are unusual, ironic escapad| +75277|37979|F|92622.28|1992-03-11|3-MEDIUM|Clerk#000000634|0|ts. ironic, regular dolphins sleep blithely. slyly | +75278|48047|F|228102.75|1995-01-26|2-HIGH|Clerk#000002839|0|onic hockey players sublate. blithely final deposits are quickly final package| +75279|517348|O|126521.60|1997-03-17|3-MEDIUM|Clerk#000003198|0|cuses are carefully regular asymptotes. special dep| +75304|302599|O|336030.43|1995-07-31|1-URGENT|Clerk#000002584|0|kages. carefully regular dependencies detect| +75305|7930|F|268393.45|1994-04-17|1-URGENT|Clerk#000001428|0|to beans dazzle. ironi| +75306|508900|F|28278.51|1993-04-27|4-NOT SPECIFIED|Clerk#000004906|0|y careful deposits wake blithely even deposits. blithely pending acco| +75307|60505|F|277170.54|1994-09-27|1-URGENT|Clerk#000004854|0|nts affix since the slyly slow frays; blithely regular accounts cajole al| +75308|638846|F|272271.38|1992-07-18|4-NOT SPECIFIED|Clerk#000002127|0|es. slyly final packages nag pinto beans. slyly even foxes detect furi| +75309|70387|F|51513.93|1993-08-03|3-MEDIUM|Clerk#000001287|0|s boost deposits. blithely unusual dependencies against the furiou| +75310|234709|F|112543.05|1992-12-05|5-LOW|Clerk#000002632|0|press requests across the regular, pending platelets affix quietly q| +75311|492461|O|170708.05|1997-02-05|4-NOT SPECIFIED|Clerk#000004961|0|he packages detect quickly furiou| +75336|528598|O|245562.60|1996-03-21|1-URGENT|Clerk#000003545|0|ly regular dugouts promise carefully pending deposits. slyl| +75337|374306|O|320692.75|1998-07-09|5-LOW|Clerk#000004263|0|-- furiously regular deposits wake furiously above the final orbits; quickly| +75338|704273|F|186671.76|1994-07-03|1-URGENT|Clerk#000001670|0|s cajole instructio| +75339|202537|F|58669.18|1993-05-20|1-URGENT|Clerk#000001926|0| bold, final asymptotes s| +75340|529363|F|149362.24|1993-06-29|3-MEDIUM|Clerk#000003320|0|unts detect slyly above the slyly even dep| +75341|478708|O|124595.82|1997-07-14|4-NOT SPECIFIED|Clerk#000001550|0|s. furiously ironic packages cajole ev| +75342|365564|F|20126.08|1993-08-23|5-LOW|Clerk#000003415|0| slyly blithely bold accounts. fluffily regular accounts against the accounts| +75343|24964|O|160869.53|1996-06-21|5-LOW|Clerk#000004812|0|gular, unusual realms? blithely express deposits use furiously| +75368|291914|F|32638.71|1993-08-04|1-URGENT|Clerk#000004271|0|ly final, unusual dependenci| +75369|445876|F|200572.32|1993-05-31|3-MEDIUM|Clerk#000001569|0|ily final foxes are boldly pending packages. final, even deposits| +75370|583751|O|162577.78|1997-04-16|5-LOW|Clerk#000001149|0|ages. special, final instructions haggle slyly furiously regular requests| +75371|337253|O|178439.56|1995-09-30|4-NOT SPECIFIED|Clerk#000003328|0|e deposits. special, regular dependencies sleep quickly unusual, unusual fo| +75372|448973|F|106126.35|1993-07-09|5-LOW|Clerk#000002153|0|deposits breach along the quick| +75373|129403|F|9269.60|1994-09-02|2-HIGH|Clerk#000001570|0|ggle. quickly regular requests impress fluffily furiously express p| +75374|593956|O|63686.63|1995-12-08|1-URGENT|Clerk#000001182|0|fully express accounts. fluffily reg| +75375|115672|F|130768.53|1992-11-19|1-URGENT|Clerk#000002934|0| wake blithely express instructions. asymptotes haggle fluffily. ironic | +75400|70735|F|111545.48|1993-11-21|3-MEDIUM|Clerk#000000171|0|g pinto beans haggle fluffily. reg| +75401|84710|O|37794.67|1995-07-26|5-LOW|Clerk#000004760|0|s after the express pinto beans play carefully idly spe| +75402|220462|F|118220.88|1992-02-23|4-NOT SPECIFIED|Clerk#000000831|0|bold requests. furiously express packages sleep blithely. regu| +75403|294496|F|75636.33|1994-07-05|2-HIGH|Clerk#000003904|0|usly ironic theodolites among the ironic theodolites sleep deposits. e| +75404|329029|F|278124.15|1995-02-16|5-LOW|Clerk#000002135|0|le slyly against the blithely unusual depos| +75405|212716|F|104492.73|1993-08-08|4-NOT SPECIFIED|Clerk#000003230|0|ecial instructions are. orbits hin| +75406|587159|F|83157.64|1992-09-27|2-HIGH|Clerk#000002687|0| on the furiously bold packages integrate furious| +75407|621539|F|192142.36|1992-01-08|3-MEDIUM|Clerk#000001074|0|y regular orbits cajole| +75432|194935|F|90512.17|1993-05-06|5-LOW|Clerk#000002283|0|ly even accounts. furiously ironic instructions are. theodolites| +75433|257749|O|173512.17|1995-07-26|1-URGENT|Clerk#000003271|0|c, regular instructio| +75434|711644|O|162683.42|1995-06-10|2-HIGH|Clerk#000000473|0|quests haggle along the regular, even excuses. furiously spe| +75435|336157|F|302639.57|1994-08-19|4-NOT SPECIFIED|Clerk#000004409|0| the furiously even foxes will have to unwind carefully slyly ironic foxes.| +75436|39610|F|350543.24|1994-05-06|3-MEDIUM|Clerk#000000288|0| silent foxes. deposits use furiousl| +75437|451648|F|222172.25|1994-08-02|4-NOT SPECIFIED|Clerk#000001246|0|y pending ideas kindle carefully. dependencies use carefully | +75438|65068|F|39914.05|1993-06-26|1-URGENT|Clerk#000003580|0|xpress theodolites cajole thinly according to the requests. sl| +75439|91070|O|283782.62|1995-06-25|3-MEDIUM|Clerk#000002790|0|e slyly express asymptotes. stealth| +75464|604439|F|151078.07|1994-04-30|1-URGENT|Clerk#000004645|0|ending deposits sleep blithely even accounts. pend| +75465|55309|F|90737.15|1992-03-13|5-LOW|Clerk#000001979|0|. unusual deposits promise | +75466|303937|F|64408.67|1993-06-08|2-HIGH|Clerk#000003026|0|iously fluffily ironic ideas. slyly bold instructions wake care| +75467|13306|O|224310.77|1997-12-16|2-HIGH|Clerk#000003598|0|se busily ironic dependenci| +75468|119227|O|130214.43|1997-02-15|5-LOW|Clerk#000004693|0| accounts. express, final deposits mold. slyly ironic pinto beans ar| +75469|568619|F|22555.69|1993-03-21|3-MEDIUM|Clerk#000002826|0|ideas. regular platelets na| +75470|275815|O|253058.54|1996-08-31|1-URGENT|Clerk#000002825|0|en pinto beans-- ironic, regular p| +75471|614438|F|364254.24|1994-07-17|2-HIGH|Clerk#000003867|0| behind the furiously pending ideas. slyly unusual requests boost dar| +75496|103348|F|178173.36|1992-07-18|4-NOT SPECIFIED|Clerk#000000406|0| instructions doze fluffily-- carefully furious pinto b| +75497|702850|O|332622.52|1996-07-20|3-MEDIUM|Clerk#000003083|0|ave asymptotes. blithely | +75498|287440|O|118012.27|1996-03-12|4-NOT SPECIFIED|Clerk#000001560|0|s. unusual packages across the blithely even orbits sl| +75499|240715|F|78729.13|1992-10-04|1-URGENT|Clerk#000002102|0| use fluffily. blithely express pinto beans alongside of the even the| +75500|189734|P|360299.17|1995-05-08|4-NOT SPECIFIED|Clerk#000004782|0|uickly bold epitaphs:| +75501|602908|F|110133.65|1994-03-11|1-URGENT|Clerk#000002372|0|carefully after the slowly express fo| +75502|548656|O|32809.58|1997-03-02|4-NOT SPECIFIED|Clerk#000002677|0|. even packages above the escapades cajole blithely regular excuses. unusu| +75503|9319|O|370113.40|1996-09-25|2-HIGH|Clerk#000002337|0| accounts. furiously idle deposits sublate blithely according to the| +75528|597514|O|311307.91|1997-04-21|4-NOT SPECIFIED|Clerk#000000511|0|hely carefully regular instructions. quickly u| +75529|657214|O|185274.50|1997-12-08|4-NOT SPECIFIED|Clerk#000004109|0|onic asymptotes cajole above the dugouts. quickly sil| +75530|545392|O|109094.91|1995-06-09|4-NOT SPECIFIED|Clerk#000003384|0|ccounts? carefully regular instructions are furiously silent pinto beans. fur| +75531|622978|F|263087.03|1993-12-24|2-HIGH|Clerk#000002503|0|ndencies haggle carefully along the fluffily ironi| +75532|359075|F|14902.53|1994-06-27|5-LOW|Clerk#000001246|0|an poach alongside of the pending packages. special,| +75533|460351|O|232712.23|1997-05-04|1-URGENT|Clerk#000000404|0|er the quickly regular | +75534|117574|F|139756.60|1992-09-03|4-NOT SPECIFIED|Clerk#000000002|0|ounts above the blithely daring theodolites | +75535|554662|O|200777.84|1997-09-30|5-LOW|Clerk#000003541|0|furiously across the b| +75560|452177|F|223282.15|1993-01-01|2-HIGH|Clerk#000001840|0|endencies x-ray about the furiously pending accounts. hockey | +75561|734512|F|106262.31|1994-07-12|1-URGENT|Clerk#000004782|0|lyly. carefully special packages are across the deposits. blithely p| +75562|670163|O|215717.28|1995-12-01|3-MEDIUM|Clerk#000003178|0|uctions. furiously e| +75563|671762|O|49327.33|1997-10-11|4-NOT SPECIFIED|Clerk#000000301|0| ironic ideas sleep carefully regula| +75564|537232|O|35817.53|1997-12-21|4-NOT SPECIFIED|Clerk#000000701|0|. special ideas snooze. slyly final accounts dete| +75565|743947|O|57622.15|1998-07-03|4-NOT SPECIFIED|Clerk#000004698|0|es nag above the regular theodolites. pending requests will | +75566|243872|F|129991.03|1992-03-24|3-MEDIUM|Clerk#000002811|0|the foxes wake quickly carefully regular asymptotes. even, final | +75567|745286|O|151192.07|1996-08-03|3-MEDIUM|Clerk#000000446|0|xes. deposits integrate instructions. furiously bo| +75592|265601|O|245263.11|1998-03-01|2-HIGH|Clerk#000003022|0|elets boost furiously: furiously bold pa| +75593|703822|F|46313.64|1994-10-28|2-HIGH|Clerk#000003824|0|e carefully special instructions cajole closely regular| +75594|111037|F|7975.91|1992-04-26|4-NOT SPECIFIED|Clerk#000003236|0|thely ironic requests sleep quickly. carefully pending ideas are re| +75595|190241|O|133061.14|1997-08-07|4-NOT SPECIFIED|Clerk#000001273|0|fluffily pending epitaphs sleep carefully bold, silent ideas. express pi| +75596|122231|P|282125.54|1995-05-16|3-MEDIUM|Clerk#000003392|0|rding to the carefully express pinto beans. special, regular depos| +75597|74101|F|139674.43|1995-03-12|1-URGENT|Clerk#000001070|0|haggle furiously. blithely expre| +75598|382345|F|99157.57|1994-05-31|4-NOT SPECIFIED|Clerk#000004734|0|xpress, final requests. pending deposits nag| +75599|70768|O|182434.18|1996-12-18|2-HIGH|Clerk#000000844|0|lar instructions wake furiously blithely express foxes. blithely si| +75624|638594|O|142721.14|1996-07-09|2-HIGH|Clerk#000001349|0| carefully ironic pearls breach bold platelets. blithely ev| +75625|347035|O|145292.06|1996-09-20|3-MEDIUM|Clerk#000004087|0|onic requests haggle fluffily against the ideas. u| +75626|616555|O|173438.59|1995-08-22|3-MEDIUM|Clerk#000003580|0|y unusual platelets. final, regular pinto beans sleep before the unusua| +75627|436840|F|133946.50|1994-12-02|2-HIGH|Clerk#000003788|0|fily after the carefully regular packages. quickly | +75628|199258|F|61155.53|1995-03-04|2-HIGH|Clerk#000001180|0|never. foxes along the f| +75629|157214|O|236217.94|1998-05-04|5-LOW|Clerk#000000604|0|lar theodolites. pinto beans are blithely. carefully even accounts sl| +75630|39595|F|152619.25|1992-05-17|5-LOW|Clerk#000004969|0|to beans use thinly agains| +75631|219244|F|171655.98|1994-07-26|3-MEDIUM|Clerk#000002440|0|ing packages. furiously final pinto beans was| +75656|83335|O|81928.67|1995-08-23|5-LOW|Clerk#000004486|0|rly. ironic, unusual requests sleep carefully against | +75657|329929|F|157952.63|1992-03-10|2-HIGH|Clerk#000002010|0|longside of the accounts. quickly regula| +75658|353435|F|120898.24|1995-02-27|5-LOW|Clerk#000003439|0|pecial foxes. express pa| +75659|165385|F|57390.66|1992-07-19|4-NOT SPECIFIED|Clerk#000002117|0| packages. regular excuses serve blithel| +75660|115639|F|137369.60|1992-04-18|4-NOT SPECIFIED|Clerk#000000918|0|unusual, regular foxes cajole always ironic requests. unus| +75661|285188|O|134174.28|1995-05-18|4-NOT SPECIFIED|Clerk#000002671|0|p fluffily carefully even deposi| +75662|651175|O|131603.86|1996-03-10|2-HIGH|Clerk#000002370|0|sleep blithely express asymptotes.| +75663|281672|O|163446.64|1997-12-28|4-NOT SPECIFIED|Clerk#000003834|0|c deposits. enticing asymptotes above the slyly express dependen| +75688|53944|O|422960.09|1997-12-31|5-LOW|Clerk#000004399|0|y pending deposits. furiously regular packages cajole slyly. blithely final p| +75689|616123|O|92504.10|1997-01-05|4-NOT SPECIFIED|Clerk#000000418|0|thely. carefully even packages affix. bold, unusua| +75690|664033|F|212784.77|1992-10-18|4-NOT SPECIFIED|Clerk#000003982|0| boost. ironic ideas sleep slyly among the even wa| +75691|394639|O|20939.06|1997-09-23|4-NOT SPECIFIED|Clerk#000001994|0|s thrash along the carefully regu| +75692|427261|O|234758.87|1996-02-01|2-HIGH|Clerk#000002147|0| packages hinder among | +75693|460828|F|53085.84|1992-02-27|4-NOT SPECIFIED|Clerk#000003329|0|ts serve regularly against the | +75694|624919|O|220840.34|1996-12-13|3-MEDIUM|Clerk#000001258|0| the dependencies. instructions boost carefully; slyly fin| +75695|739735|F|229594.10|1993-10-06|3-MEDIUM|Clerk#000004122|0|gular instructions cajole fluff| +75720|702941|F|170079.79|1995-01-30|5-LOW|Clerk#000003112|0|ly silent packages after the foxes aff| +75721|327424|F|75637.64|1993-05-04|4-NOT SPECIFIED|Clerk#000001064|0|lar dependencies. dogged sheaves use. ironic, express s| +75722|233981|F|191174.13|1993-11-28|4-NOT SPECIFIED|Clerk#000000938|0|gle. waters nag at the slyly bold packages. slyly even accounts are a| +75723|265574|O|121907.30|1996-04-29|2-HIGH|Clerk#000002125|0|unts try to haggle reque| +75724|251390|F|81542.46|1994-10-06|3-MEDIUM|Clerk#000001679|0|e across the slyly special theodolites. fina| +75725|358811|P|205655.63|1995-05-14|2-HIGH|Clerk#000003959|0|nusual instructions are? furiously bold reques| +75726|529973|F|145046.19|1992-09-30|2-HIGH|Clerk#000000988|0| requests detect fluffily-- quickly pending d| +75727|246079|O|210023.00|1998-04-18|3-MEDIUM|Clerk#000001731|0|doggedly among the fluffily even requests. fluffily final pinto b| +75752|349256|O|63160.36|1997-04-08|3-MEDIUM|Clerk#000001526|0|e ironic excuses integrate ag| +75753|430223|F|70955.70|1993-02-16|3-MEDIUM|Clerk#000000977|0|blithely regular requests nag carefully. | +75754|742072|O|113144.97|1996-12-02|2-HIGH|Clerk#000000945|0|use slyly ironic packages. blithely | +75755|237610|O|108107.86|1996-11-05|5-LOW|Clerk#000002423|0|luffily furiously final deposits. unusual foxes nag slyly. furiously silen| +75756|490759|O|56384.39|1997-07-14|4-NOT SPECIFIED|Clerk#000000938|0|grate along the furiously regular packages| +75757|422281|F|311926.56|1993-11-01|2-HIGH|Clerk#000003199|0|aggle. ironically express theodolites| +75758|6994|F|29534.15|1994-11-01|3-MEDIUM|Clerk#000001405|0|lar courts mold finally packages. | +75759|517913|F|201822.45|1993-10-24|4-NOT SPECIFIED|Clerk#000003327|0|posits. ironic, express hockey players cajole blithely furiously final depos| +75784|47003|F|24625.86|1994-03-20|1-URGENT|Clerk#000001443|0|cingly bold asymptotes integrate carefully-- express packages believe| +75785|227744|O|266806.12|1997-08-24|2-HIGH|Clerk#000001711|0|ncies are bravely express courts. quickly regular packages should haggle. reg| +75786|432316|F|106446.77|1992-04-18|3-MEDIUM|Clerk#000001744|0|ccounts according to the bold packages integrate bravely across the quickly| +75787|659707|F|81440.81|1994-02-19|2-HIGH|Clerk#000001281|0| grouches after the finally final packages eat across the s| +75788|440759|F|148654.80|1994-11-07|5-LOW|Clerk#000001854|0|efully against the furiously final ideas| +75789|82837|O|132388.48|1995-06-26|5-LOW|Clerk#000001778|0|gular theodolites promise carefully alongside of | +75790|231739|O|151748.54|1998-05-12|1-URGENT|Clerk#000001920|0|lly slyly even packages.| +75791|66151|F|229874.04|1993-07-06|1-URGENT|Clerk#000001299|0|yly pending platelets wake fluffily along the accounts. b| +75816|297235|O|248841.32|1996-10-24|4-NOT SPECIFIED|Clerk#000003779|0|. blithely even deposits wake. iron| +75817|600832|F|282883.94|1993-03-16|3-MEDIUM|Clerk#000003716|0|xpress foxes across the slyl| +75818|175414|F|111800.93|1993-12-26|1-URGENT|Clerk#000003516|0|heodolites after the blithely regular requests affix blithely about the| +75819|665839|F|70880.17|1992-02-03|4-NOT SPECIFIED|Clerk#000002949|0|ns sleep. unusual deposits accordi| +75820|727433|F|218936.54|1993-08-15|5-LOW|Clerk#000000291|0|instructions sleep furiously after the fluffily express accounts. ironic pac| +75821|201794|F|176578.67|1992-12-03|5-LOW|Clerk#000002548|0|to beans. permanent, ironic id| +75822|42251|O|148296.38|1995-09-04|5-LOW|Clerk#000000097|0|hely above the packages. furiously re| +75823|602929|O|311682.76|1996-11-22|3-MEDIUM|Clerk#000003233|0|he quickly ironic theodolites | +75848|162007|O|25130.14|1996-04-21|3-MEDIUM|Clerk#000000846|0|ely around the regular, silent ideas. slyly sly deposi| +75849|348439|O|31586.27|1997-12-20|5-LOW|Clerk#000001548|0|y express requests in| +75850|208006|F|176117.98|1994-06-07|1-URGENT|Clerk#000002682|0|efully final dolphins nag sometimes about the c| +75851|177565|F|210984.95|1993-07-24|4-NOT SPECIFIED|Clerk#000001528|0|y about the fluffy accounts. blithely express accounts use carefully| +75852|63538|O|240677.17|1997-09-06|5-LOW|Clerk#000004701|0| evenly regular theodolites snooze. pending theod| +75853|631642|O|231633.62|1998-07-13|1-URGENT|Clerk#000002559|0|slyly blithely ironic deposits. furiously regular accounts ca| +75854|475949|F|123943.47|1992-10-01|1-URGENT|Clerk#000004104|0|op the unusual package| +75855|523129|O|304226.76|1997-08-31|1-URGENT|Clerk#000003820|0|ld requests. fluffily bold requests nag carefully regular depen| +75880|722159|O|282303.18|1995-06-03|1-URGENT|Clerk#000004919|0|slowly final foxes use furiously carefully regular asymptotes? fluffi| +75881|74396|F|286935.41|1993-07-19|3-MEDIUM|Clerk#000004236|0|ctions sleep slyly ironic, pending ideas. blithely unusua| +75882|111379|F|116148.76|1994-03-17|5-LOW|Clerk#000002090|0|ross the blithely regular pinto beans. special patterns nag; final | +75883|668710|O|57514.39|1997-03-04|5-LOW|Clerk#000003655|0|ost according to the even packages. blithely special braids dazzle. ideas | +75884|232804|F|106976.37|1993-05-19|5-LOW|Clerk#000004846|0|final instructions are furiously along the ev| +75885|733852|O|130875.31|1997-06-04|2-HIGH|Clerk#000003296|0|ges-- thin accounts among the regular, final accounts lose| +75886|73831|F|301915.17|1994-02-25|4-NOT SPECIFIED|Clerk#000004365|0| carefully even ideas. slyly regular requests are against the blithely | +75887|369973|F|137370.95|1993-02-20|3-MEDIUM|Clerk#000000762|0|e even, even instructions. bold, regular deposits shall | +75912|610753|O|78477.39|1997-10-17|1-URGENT|Clerk#000002046|0|inal, regular instructions. packages haggle carefully. blithely idle accounts| +75913|395128|O|163623.06|1996-11-08|4-NOT SPECIFIED|Clerk#000003846|0|refully ironic deposits cajole carefully accordin| +75914|412312|O|145120.05|1997-09-17|4-NOT SPECIFIED|Clerk#000000381|0| final foxes integrate after the fluffily| +75915|454961|F|132686.81|1993-03-17|1-URGENT|Clerk#000000287|0|iously about the carefully brave asymptotes. pinto b| +75916|273631|O|86913.42|1997-10-28|4-NOT SPECIFIED|Clerk#000001773|0|egular, unusual pinto beans against the slyly special deposi| +75917|643571|F|77610.60|1993-04-07|1-URGENT|Clerk#000002833|0|ts promise evenly final deposits. pinto| +75918|746341|F|82567.29|1994-03-15|4-NOT SPECIFIED|Clerk#000003408|0| wake idly along the slyly final deposits. blithely special accounts accordin| +75919|734023|O|195544.32|1996-10-10|4-NOT SPECIFIED|Clerk#000004319|0|mpress carefully ironic depo| +75944|699488|O|127695.01|1997-05-13|1-URGENT|Clerk#000002177|0| against the pending, final deposits use slyly special accounts. slyly regu| +75945|29662|O|83047.52|1997-02-02|2-HIGH|Clerk#000004726|0|nly even pinto beans. furiously special deposits| +75946|496595|F|43931.59|1993-06-28|1-URGENT|Clerk#000004536|0|es. bold packages wou| +75947|265739|F|156897.65|1993-09-07|5-LOW|Clerk#000002448|0|into beans wake. quickly pending pinto beans agai| +75948|10696|F|33694.04|1992-11-12|2-HIGH|Clerk#000001473|0|ts. quickly unusual accounts grow blithely furiously ir| +75949|511972|F|223473.05|1992-06-19|4-NOT SPECIFIED|Clerk#000001696|0|y regular pinto beans. regular deposits use blithel| +75950|709294|F|111153.15|1993-03-15|5-LOW|Clerk#000003173|0|ironic accounts engage. re| +75951|594505|O|9196.01|1998-07-21|3-MEDIUM|Clerk#000004560|0|furiously special notornis are s| +75976|313507|O|215502.62|1998-01-29|2-HIGH|Clerk#000001657|0| slyly express packages about the furiously final f| +75977|330490|F|13804.13|1994-11-11|5-LOW|Clerk#000000963|0|sleep quickly final decoys.| +75978|38948|F|392809.10|1994-02-28|2-HIGH|Clerk#000001535|0|ructions about the carefully pending packages print carefully ex| +75979|596228|F|59066.33|1992-01-29|3-MEDIUM|Clerk#000001246|0| pains print about the dugouts. express, ironic platelets detect bli| +75980|47908|O|241746.74|1996-04-12|1-URGENT|Clerk#000002032|0|dly even platelets affix carefully.| +75981|406811|F|244139.16|1992-02-10|3-MEDIUM|Clerk#000003435|0|ar requests snooze id| +75982|262819|O|274127.23|1996-12-09|2-HIGH|Clerk#000001686|0|uffily special packages. quickly special excuses boost quickly. re| +75983|430985|F|60783.98|1995-04-10|3-MEDIUM|Clerk#000001997|0| ironic instructions. deposits will have to nag slyly pinto beans| +76008|51997|F|158971.19|1993-01-10|4-NOT SPECIFIED|Clerk#000001381|0|ndencies wake. regular, regular packages are.| +76009|152536|O|115979.41|1997-07-18|4-NOT SPECIFIED|Clerk#000004860|0|jole quickly above the carefully unusual packages. busy realms hag| +76010|147040|F|212617.14|1993-12-06|5-LOW|Clerk#000000269|0|r accounts snooze! blithely pending | +76011|40795|O|48033.61|1997-02-19|4-NOT SPECIFIED|Clerk#000000681|0|ses. slyly final instructions are slyly. special mult| +76012|141145|P|189735.55|1995-03-01|2-HIGH|Clerk#000000255|0|ts are slyly. final excuses affix blithely. quickly express request| +76013|695783|O|125134.30|1996-06-27|2-HIGH|Clerk#000002164|0|eodolites boost. furiously regular deposits are quickly. slyly regular| +76014|16501|F|20701.99|1994-05-29|3-MEDIUM|Clerk#000001098|0|ular ideas detect closely furiously| +76015|566333|O|57935.81|1996-10-22|4-NOT SPECIFIED|Clerk#000003374|0| regular accounts play slyly along the blithely special packages. accounts c| +76040|94190|O|148738.72|1997-09-02|2-HIGH|Clerk#000000983|0|ily. blithely final theodolites sleep doggedly blithely express requests.| +76041|543859|O|128022.39|1997-03-22|5-LOW|Clerk#000000800|0|ounts use. furiously re| +76042|372746|O|208901.12|1998-05-31|2-HIGH|Clerk#000000526|0|ecial packages above the final deposit| +76043|741211|O|104996.41|1997-02-13|3-MEDIUM|Clerk#000002649|0|ckages. blithe packages haggle ironic | +76044|18727|O|141603.69|1997-06-11|5-LOW|Clerk#000002281|0|ess courts sleep regular foxes. blithely regular hockey players nag regular | +76045|477997|F|44955.34|1994-01-15|3-MEDIUM|Clerk#000003981|0|inal accounts. ironic ideas wake fur| +76046|416953|O|237854.10|1997-04-14|2-HIGH|Clerk#000003305|0|ly pending pinto beans. carefu| +76047|455351|O|275257.92|1997-03-19|2-HIGH|Clerk#000002032|0|ross the busy packages. final| +76072|79255|O|47620.65|1995-07-07|3-MEDIUM|Clerk#000004172|0|s after the requests nag f| +76073|35668|F|133829.52|1992-06-10|5-LOW|Clerk#000000485|0|onic, ironic theodolites sleep blith| +76074|199187|F|233323.14|1992-05-09|5-LOW|Clerk#000001603|0|ions wake with the furiously even theodolites. furiously even packages | +76075|469975|O|172128.88|1997-05-22|3-MEDIUM|Clerk#000000978|0|he slyly final dependen| +76076|618863|F|81561.07|1992-02-08|5-LOW|Clerk#000001266|0|special foxes wake carefully carefully final deposits. regular | +76077|219782|O|245113.44|1996-12-04|2-HIGH|Clerk#000002239|0|ct after the final, silent pinto beans. final dolphins was furiously. close| +76078|119609|O|166713.13|1996-02-09|1-URGENT|Clerk#000003367|0|lites. quickly regular requests engage. | +76079|255124|F|34027.71|1993-04-25|2-HIGH|Clerk#000004028|0|le. permanent dugouts boost fluffily regu| +76104|97006|O|94788.82|1997-11-30|1-URGENT|Clerk#000003145|0|nag fluffily blithely regular accounts. slyly regular| +76105|626479|O|9604.96|1996-01-21|1-URGENT|Clerk#000000200|0| nag slyly after the slyly pending requests. blithely ironic instructions c| +76106|704968|O|216463.57|1996-03-02|4-NOT SPECIFIED|Clerk#000001864|0|ep carefully never bold i| +76107|638488|O|143534.57|1996-07-03|2-HIGH|Clerk#000002138|0| play blithely alongside of the blithely brave accounts. fluffily | +76108|59266|F|211113.43|1993-06-22|5-LOW|Clerk#000002301|0| slyly pending warhors| +76109|71149|F|8480.41|1993-06-15|2-HIGH|Clerk#000002930|0|eans will sleep slyly| +76110|268696|P|249899.24|1995-05-15|2-HIGH|Clerk#000003458|0|inal requests sleep never above the quickly re| +76111|208273|F|50941.28|1993-03-01|3-MEDIUM|Clerk#000001195|0|nal theodolites cajole accordin| +76136|169939|F|62039.42|1993-02-22|3-MEDIUM|Clerk#000003553|0|ccording to the slyly special | +76137|161623|O|29343.74|1997-09-15|3-MEDIUM|Clerk#000003984|0|ages wake around the carefully even theodolites. theo| +76138|614608|O|67697.23|1995-06-02|3-MEDIUM|Clerk#000001959|0|se furiously. even dependencies use quickly across the| +76139|694924|F|122173.11|1993-08-17|4-NOT SPECIFIED|Clerk#000001027|0|packages haggle among the slyly ironic deposits. pinto beans w| +76140|581240|F|202331.60|1993-07-18|3-MEDIUM|Clerk#000004444|0|ully even somas are carefully along the slyly pending pack| +76141|139909|F|48713.70|1994-03-27|5-LOW|Clerk#000003880|0|ly pending platelets. f| +76142|169327|O|326907.46|1996-09-03|3-MEDIUM|Clerk#000002696|0|luffily slyly pending deposits. slyly ironic cou| +76143|353185|F|138913.27|1993-12-24|4-NOT SPECIFIED|Clerk#000001267|0|lites. quickly ironic dependencies about the pending | +76168|452141|F|316065.82|1994-10-20|5-LOW|Clerk#000002826|0|onic, even foxes. ironic instructions pl| +76169|128539|O|144741.01|1997-06-27|4-NOT SPECIFIED|Clerk#000000342|0|e thinly bold braids. quietly iro| +76170|343840|F|138364.90|1992-12-22|5-LOW|Clerk#000000144|0|ents haggle carefully quickly| +76171|168481|F|130965.52|1993-03-08|3-MEDIUM|Clerk#000000334|0|ly alongside of the fluffily pending requests. quickly ironic deposit| +76172|383467|F|231528.33|1992-08-26|3-MEDIUM|Clerk#000004758|0| after the instructi| +76173|175055|F|86971.58|1994-03-23|5-LOW|Clerk#000003169|0|fluffy deposits sublate carefu| +76174|640952|O|126461.38|1998-01-27|5-LOW|Clerk#000001667|0|y special ideas haggle slyly. realms cajole blithely. ironic requests dete| +76175|221786|F|33352.84|1993-01-16|4-NOT SPECIFIED|Clerk#000001059|0|foxes. doggedly unusual packages about | +76200|57169|F|162036.03|1993-03-18|2-HIGH|Clerk#000001445|0|egular ideas boost carefully e| +76201|71006|F|11987.11|1993-10-13|5-LOW|Clerk#000002177|0|p fluffily about the blithely quick deposits. final, bold as| +76202|144184|F|116198.10|1994-03-16|2-HIGH|Clerk#000002767|0|fully final instructions run slyly furiously even dolphins. express, regular| +76203|24887|O|60679.97|1997-09-25|2-HIGH|Clerk#000003393|0|ckly special accounts. quickly regular depe| +76204|520792|O|227692.92|1998-03-19|2-HIGH|Clerk#000002877|0|hely; blithely express foxes play slyl| +76205|420247|F|156699.68|1994-09-11|1-URGENT|Clerk#000001120|0|ake furiously. furious| +76206|317545|O|9531.43|1997-01-08|5-LOW|Clerk#000000754|0|es. packages haggle. quickly regular requests alon| +76207|696751|O|248588.71|1996-05-15|3-MEDIUM|Clerk#000000646|0|bold foxes use carefully. slyly bold requests among the slyly pending deposit| +76232|541726|F|264070.78|1992-05-23|1-URGENT|Clerk#000001705|0|ggle. accounts cajole. final, specia| +76233|513676|O|130559.29|1997-10-13|3-MEDIUM|Clerk#000004481|0|s carefully? quickly pe| +76234|69092|F|222781.05|1994-01-22|1-URGENT|Clerk#000000712|0|s along the carefully final theodolites. silent deposits use quick| +76235|213248|F|139447.67|1993-06-20|4-NOT SPECIFIED|Clerk#000001495|0|ironic, ironic foxes integrate blithely against the quickly even t| +76236|555334|F|214149.80|1992-02-10|1-URGENT|Clerk#000004583|0|slyly even accounts affix | +76237|470671|F|213692.56|1994-11-17|5-LOW|Clerk#000003546|0|atelets. quickly ironic accounts sleep a| +76238|288796|O|46918.35|1995-10-30|4-NOT SPECIFIED|Clerk#000002106|0|ly quickly final foxes. ironic requests use slyly. carefully special| +76239|524719|F|52263.67|1993-06-18|3-MEDIUM|Clerk#000001385|0|final pinto beans. silent, un| +76264|426856|O|174371.88|1996-05-14|4-NOT SPECIFIED|Clerk#000002610|0|uffily pending accounts boost blithely express multipliers.| +76265|416098|F|15399.82|1994-04-19|4-NOT SPECIFIED|Clerk#000003289|0|nto beans are about the slyly regular ideas. enticing, regular ideas accordi| +76266|338972|P|216792.69|1995-05-15|1-URGENT|Clerk#000004255|0|sual requests. final dolphins affix. doggedly re| +76267|99788|F|96709.95|1994-04-26|1-URGENT|Clerk#000002990|0|sly silent accounts. ruthless ideas use furiously across the excuses| +76268|132145|O|44600.71|1996-02-24|2-HIGH|Clerk#000000656|0|mptotes. asymptotes cajole furiously. furiously ironic packages boost | +76269|202985|O|82314.68|1996-06-12|1-URGENT|Clerk#000000967|0|romise carefully furiously quick pains. requests hagg| +76270|567019|O|249904.43|1996-10-20|2-HIGH|Clerk#000002463|0| bold requests. slyly even requests after the pendin| +76271|370730|O|144856.59|1997-03-07|1-URGENT|Clerk#000004115|0|kages. furiously pending deposits are fluffily s| +76296|596326|P|205279.51|1995-04-08|4-NOT SPECIFIED|Clerk#000000126|0|usly carefully ironic theodolites. final, ironic| +76297|168182|O|252671.59|1997-03-17|3-MEDIUM|Clerk#000001554|0|ide of the quickly special requests. slyly unusual accounts atop the final| +76298|629131|F|19381.32|1992-07-02|2-HIGH|Clerk#000003688|0|pths kindle carefully after the slyly final instructions| +76299|282560|O|161763.78|1996-03-21|1-URGENT|Clerk#000001272|0|s haggle until the slyly special deposits. | +76300|735835|O|225177.03|1995-07-13|2-HIGH|Clerk#000003779|0| at the carefully ironic accounts. furiou| +76301|404432|F|41592.06|1993-04-17|1-URGENT|Clerk#000000400|0|lly asymptotes. regular ideas sleep after the pending packages. even| +76302|30223|F|109698.50|1993-10-07|4-NOT SPECIFIED|Clerk#000001462|0| instructions haggle slyly? carefully fina| +76303|188084|O|70597.72|1996-11-27|3-MEDIUM|Clerk#000001733|0|ackages wake carefully among the carefully ironic pinto beans. accounts| +76328|625684|F|263569.94|1993-08-04|2-HIGH|Clerk#000003661|0|ges. fluffily even req| +76329|97627|F|184696.14|1993-03-12|3-MEDIUM|Clerk#000004081|0|. blithe accounts about | +76330|562972|F|225124.73|1992-07-14|5-LOW|Clerk#000004066|0| foxes. fluffily bold wat| +76331|588724|F|217915.53|1994-01-18|5-LOW|Clerk#000003624|0|lites sleep slyly. careful| +76332|669155|O|68223.23|1996-03-02|1-URGENT|Clerk#000004198|0|ns above the furiously ironic excuses nag| +76333|230125|O|268727.95|1996-01-18|4-NOT SPECIFIED|Clerk#000001187|0| wake alongside of the bo| +76334|680114|O|63776.34|1997-09-05|4-NOT SPECIFIED|Clerk#000003011|0| platelets are. fluffily bold accounts might detect never ir| +76335|664762|O|170715.12|1997-12-11|3-MEDIUM|Clerk#000002220|0|gular ideas are furiously | +76360|630412|F|57466.88|1992-06-13|4-NOT SPECIFIED|Clerk#000002864|0|y sly excuses sleep slyly| +76361|65626|F|189066.54|1994-11-28|5-LOW|Clerk#000003782|0|y special foxes. final deposits af| +76362|466166|O|284138.29|1998-04-07|5-LOW|Clerk#000002780|0|ole carefully regular packages: regular, even depend| +76363|346444|O|119054.98|1998-06-18|5-LOW|Clerk#000000487|0|detect fluffily carefully special decoys. fluffily unusual pinto bea| +76364|403390|O|167689.92|1998-07-28|2-HIGH|Clerk#000000494|0| bold excuses above the furiously ironic accounts haggle quickly accordi| +76365|511204|F|63911.37|1994-08-02|3-MEDIUM|Clerk#000000901|0| pinto beans affix against the furi| +76366|545069|O|75031.04|1997-08-19|4-NOT SPECIFIED|Clerk#000001998|0|ackages cajole among the slyly unusual ideas. deposi| +76367|458360|F|348423.89|1992-08-29|4-NOT SPECIFIED|Clerk#000001184|0|endencies haggle. blithely final instructions sleep carefully| +76392|393997|F|323367.14|1992-09-02|2-HIGH|Clerk#000003285|0|the carefully final ideas. blithe| +76393|146329|F|302175.70|1993-01-21|5-LOW|Clerk#000002699|0|se quickly special theodolites. even acco| +76394|99016|O|137426.90|1996-01-11|1-URGENT|Clerk#000004681|0|ets use special pinto beans. pending,| +76395|654022|F|44532.27|1992-09-17|5-LOW|Clerk#000004181|0|rate furiously regular accounts. carefully bold deposits aff| +76396|126571|O|161492.98|1997-05-05|2-HIGH|Clerk#000000227|0|leep quickly? regular, unusual dinos integrate. furiously special | +76397|257857|F|49338.81|1993-11-09|1-URGENT|Clerk#000001908|0|es wake among the bold | +76398|287567|F|82348.09|1992-05-11|2-HIGH|Clerk#000000862|0|grate fluffily. slyly bold foxes wake furiously speci| +76399|128282|O|151909.55|1996-10-27|3-MEDIUM|Clerk#000003394|0| after the express instructions in| +76424|533698|F|302882.62|1993-05-11|4-NOT SPECIFIED|Clerk#000002484|0|gular, even pinto bea| +76425|612025|O|184148.13|1997-05-29|3-MEDIUM|Clerk#000001916|0|o beans. ironic, even accounts serve furiously fluffily ironic requests| +76426|42625|F|133128.86|1993-04-04|1-URGENT|Clerk#000003282|0|ly final requests about the blit| +76427|145078|O|177427.61|1997-07-27|3-MEDIUM|Clerk#000002405|0|ccounts. express somas nag furiously carefully special pinto beans. caref| +76428|51581|O|104797.86|1998-03-14|1-URGENT|Clerk#000000540|0|e carefully; carefully bold ideas wake carefully according to the fluffily p| +76429|659212|O|105886.44|1996-06-21|3-MEDIUM|Clerk#000002175|0|cording to the slyly bold packages. foxes are quickly above the a| +76430|372604|O|64516.95|1996-09-20|3-MEDIUM|Clerk#000003744|0|sual foxes. bold accounts sleep ironic instruction| +76431|604700|F|118139.23|1992-07-03|2-HIGH|Clerk#000001837|0|e according to the fluffily regu| +76456|687913|F|53862.64|1992-09-12|4-NOT SPECIFIED|Clerk#000004785|0|, express accounts. carefully ironic s| +76457|485888|O|253302.94|1995-11-22|1-URGENT|Clerk#000004953|0|ts. quickly express pearls do run blithely: furiously final packa| +76458|314924|O|231693.04|1995-07-10|4-NOT SPECIFIED|Clerk#000001391|0| the theodolites. idly express accounts wake caref| +76459|176113|F|171785.00|1993-05-15|5-LOW|Clerk#000003234|0|ng the express braids sl| +76460|416650|O|78361.66|1998-04-14|3-MEDIUM|Clerk#000002785|0|after the ironic deposits. silent, ironic accounts boost furiously across the| +76461|626756|F|34601.72|1994-04-08|2-HIGH|Clerk#000002443|0|ages nag across the carefully| +76462|123343|F|129119.02|1994-07-09|5-LOW|Clerk#000003601|0|usly according to the final asymptotes. ste| +76463|8351|O|65107.88|1996-02-25|1-URGENT|Clerk#000002304|0|es use furious theodolites. carefully regular forges integrate. slyly| +76488|94718|O|45566.28|1996-03-25|3-MEDIUM|Clerk#000001121|0|otes. even sheaves dazzle quickly. slyly bold packages along the idle pinto| +76489|414289|F|275699.62|1992-08-30|2-HIGH|Clerk#000004798|0|ckages. blithely final theodolites wake. slyly final instructions nod| +76490|696442|O|209184.11|1997-10-11|1-URGENT|Clerk#000000666|0|slyly bold foxes unwind ironic | +76491|580202|O|25455.88|1997-09-18|4-NOT SPECIFIED|Clerk#000001946|0| packages wake slyly along the | +76492|704200|F|61520.49|1992-09-28|4-NOT SPECIFIED|Clerk#000001586|0|y express accounts. closely unusual ideas across the final, special dugouts| +76493|463180|O|176067.74|1998-01-23|4-NOT SPECIFIED|Clerk#000003249|0|ts. ideas print across the quickly unusual packages. blithely final | +76494|415615|O|155942.68|1996-12-02|3-MEDIUM|Clerk#000004510|0|ously final requests. carefully bold instructi| +76495|464503|O|243466.47|1995-08-16|2-HIGH|Clerk#000003330|0|sly final instructions: quickly express accounts are furiously regular, even| +76520|135949|O|49526.26|1998-06-21|3-MEDIUM|Clerk#000002482|0|he furiously idle platelets. blithely bold requests cajole alongside of the| +76521|369932|F|278060.77|1993-04-01|2-HIGH|Clerk#000003050|0| tithes wake furiously. bold instr| +76522|681526|F|156489.34|1993-05-29|3-MEDIUM|Clerk#000000089|0|g, special accounts sleep against the unusual ideas. carefully unusual packa| +76523|375109|O|327928.46|1996-10-21|5-LOW|Clerk#000003407|0|encies haggle blith| +76524|693214|F|169923.59|1992-10-31|1-URGENT|Clerk#000000431|0|haggle doggedly daring excuses. furiously special accounts w| +76525|335962|O|3812.95|1998-06-10|5-LOW|Clerk#000002429|0|nding, quiet instructions. final, final dependencies nag furiously ironic foxe| +76526|503398|O|235423.38|1996-11-02|1-URGENT|Clerk#000000956|0|ven requests nag blithely at the even somas. final excuses wake along t| +76527|582668|O|144847.40|1998-04-23|3-MEDIUM|Clerk#000003120|0|ckages according to the carefully unusual excuses cajole ironi| +76552|135233|O|223189.16|1997-08-28|5-LOW|Clerk#000001627|0|e regular, even requests| +76553|351839|O|277915.26|1997-03-27|2-HIGH|Clerk#000004606|0|ly among the even, bold| +76554|352315|F|10947.69|1993-12-31|3-MEDIUM|Clerk#000002277|0|t the express, even dependencies detect furiously ironic | +76555|87301|F|173517.01|1993-04-20|3-MEDIUM|Clerk#000000192|0|l dinos above the quickly un| +76556|251797|O|119680.70|1996-07-29|3-MEDIUM|Clerk#000004768|0| regular excuses boost after the quickly| +76557|427057|F|163244.57|1992-08-23|1-URGENT|Clerk#000004577|0|ly express foxes. theodo| +76558|21203|F|91999.97|1992-10-08|5-LOW|Clerk#000001977|0|lar pinto beans wake carefully. ruthlessly final packages ne| +76559|102217|F|123691.04|1993-07-08|4-NOT SPECIFIED|Clerk#000000825|0|heodolites about the even orbits nag carefully requests: pending instruc| +76584|434374|F|139216.45|1992-07-15|5-LOW|Clerk#000003492|0|ly according to the unusual deposits. final, regular deposit| +76585|3826|O|91139.11|1996-06-15|1-URGENT|Clerk#000002947|0|s requests. express sauternes along the carefully unusual instruc| +76586|521911|O|236533.83|1997-10-26|1-URGENT|Clerk#000002600|0|posits haggle blithely special wa| +76587|478003|O|265081.66|1996-12-08|4-NOT SPECIFIED|Clerk#000002670|0|inly pending requests haggle fluffily along the carefully pend| +76588|544867|F|219114.23|1992-12-26|5-LOW|Clerk#000003699|0|ges are evenly blithely special packages. unusual, unusual braids was| +76589|58961|F|177504.63|1995-02-26|5-LOW|Clerk#000003079|0|ct slyly against the| +76590|192641|F|111392.47|1993-10-31|2-HIGH|Clerk#000004450|0|lar packages wake slyly slyly special theodolites. quic| +76591|713423|O|226609.47|1998-06-11|3-MEDIUM|Clerk#000002558|0|ar deposits sleep sly| +76616|246916|F|198880.75|1992-12-09|4-NOT SPECIFIED|Clerk#000002167|0|pending accounts cajole slyly final, silent plate| +76617|138917|O|160417.18|1998-01-13|4-NOT SPECIFIED|Clerk#000002631|0|es. express, close ideas haggle above| +76618|16070|O|155530.44|1998-06-23|3-MEDIUM|Clerk#000004217|0|tes. blithe, bold deposits believe furiously fluffily r| +76619|84715|O|186949.04|1998-05-14|5-LOW|Clerk#000001140|0|slyly pending dugouts. pending, unusual requests haggle fluffi| +76620|290066|F|263673.66|1992-07-05|1-URGENT|Clerk#000004201|0|sts. ironic deposits wake caref| +76621|125815|O|265214.82|1996-07-14|2-HIGH|Clerk#000000321|0|eposits from the furiously even theodolites cajole quickly regular theodo| +76622|304961|O|207860.01|1996-01-20|3-MEDIUM|Clerk#000003711|0|ckages haggle furiously across the iro| +76623|717664|O|129715.45|1996-02-04|2-HIGH|Clerk#000000007|0|ound the ironic asymptotes. bold patte| +76648|252586|F|238569.48|1992-07-28|5-LOW|Clerk#000001841|0|y final foxes. blith| +76649|185062|O|288282.52|1997-07-21|5-LOW|Clerk#000004478|0| fluffily unusual foxes haggle according to the ironic packages. theodolite| +76650|86230|O|176470.09|1995-09-05|3-MEDIUM|Clerk#000004860|0|silent, final dependencies use. furiously even deposits cajole pa| +76651|241108|F|325000.33|1994-07-25|1-URGENT|Clerk#000004098|0|bold deposits. fluffily regular theodolites kindle ca| +76652|34229|F|10789.39|1993-09-01|4-NOT SPECIFIED|Clerk#000000037|0|requests. ironic packages print. carefull| +76653|27427|O|170437.02|1997-01-23|2-HIGH|Clerk#000001400|0|ts haggle furiously. quickly bold ide| +76654|465335|F|74630.25|1992-02-27|5-LOW|Clerk#000003310|0| the furiously even accounts. quickly express requests haggle carefully! slyly| +76655|631153|F|228268.84|1992-08-31|3-MEDIUM|Clerk#000002456|0|es. carefully daring account| +76680|505375|O|108531.75|1997-08-06|3-MEDIUM|Clerk#000002180|0|ing instructions detect fluffily unusual gr| +76681|58135|O|96658.55|1997-11-14|5-LOW|Clerk#000004366|0|uriously even packages. carefully regular depos| +76682|565492|O|302596.60|1997-08-23|5-LOW|Clerk#000002031|0|haggle according to the carefully bold packages. fluffily unu| +76683|193978|F|228080.18|1993-04-23|4-NOT SPECIFIED|Clerk#000003767|0|final instructions nag carefully against the slyly regular requests| +76684|670984|O|273958.16|1997-10-11|3-MEDIUM|Clerk#000001439|0|nally excuses. carefully regular requests in| +76685|227125|F|249389.80|1993-03-20|4-NOT SPECIFIED|Clerk#000000150|0|packages. fluffily | +76686|526316|F|90968.90|1995-02-07|1-URGENT|Clerk#000003562|0|y regular, express realms. even excuses use accounts. bold warhors| +76687|280060|F|21089.58|1994-05-15|4-NOT SPECIFIED|Clerk#000001860|0|, silent deposits boost close| +76712|687329|F|89402.45|1993-12-11|3-MEDIUM|Clerk#000004559|0|he blithely even pinto beans. carefully unusual pac| +76713|427556|F|305785.08|1992-11-30|4-NOT SPECIFIED|Clerk#000001915|0|manently blithely unusual accounts. regular, blithe braids h| +76714|167122|O|107478.55|1996-01-25|3-MEDIUM|Clerk#000001758|0|ndle blithely among the packages. furiously express dependencies haggle | +76715|39817|O|126190.86|1998-04-16|1-URGENT|Clerk#000003780|0|tions. carefully unusual packages kindle. final pa| +76716|172681|F|44173.61|1993-11-03|2-HIGH|Clerk#000000687|0|special packages according to the carefully bold requests ar| +76717|481799|F|211181.85|1993-12-03|3-MEDIUM|Clerk#000001633|0|eposits dazzle. asymptotes ha| +76718|579490|F|31038.89|1993-01-30|3-MEDIUM|Clerk#000000310|0|thely final decoys cajole furiously above the even requests. slyly even ideas | +76719|731198|O|105846.93|1996-08-12|1-URGENT|Clerk#000000170|0|r accounts. regular accounts snooze. doggedly even rea| +76744|488938|F|79959.85|1993-04-25|5-LOW|Clerk#000001664|0|bout the packages. fluffily final requests according to the| +76745|547870|O|288105.40|1997-05-12|1-URGENT|Clerk#000002145|0|ress requests nod alongside of the | +76746|285820|F|18208.26|1992-08-31|1-URGENT|Clerk#000002131|0|accounts haggle slyl| +76747|15481|O|17469.38|1996-04-09|4-NOT SPECIFIED|Clerk#000000041|0|s use blithely above the requests. furiously ironi| +76748|671090|O|145529.39|1995-11-01|3-MEDIUM|Clerk#000001839|0|furiously final braids boost carefully against the final requests. carefull| +76749|498629|O|156093.77|1995-08-24|4-NOT SPECIFIED|Clerk#000002492|0|alms wake blithely de| +76750|703315|O|216965.28|1996-09-04|4-NOT SPECIFIED|Clerk#000001608|0|slyly pending requests boost accounts. final id| +76751|611441|F|238109.55|1994-02-03|2-HIGH|Clerk#000003133|0|refully bold excuses doze furious | +76776|738677|F|265930.48|1993-12-21|3-MEDIUM|Clerk#000004364|0|he slyly bold accounts are alo| +76777|191320|F|198131.57|1994-05-02|3-MEDIUM|Clerk#000001997|0|atelets cajole blithely. fluffily bold somas along the slyly regular| +76778|243166|O|49999.92|1996-05-22|2-HIGH|Clerk#000002703|0|ideas sleep carefully about th| +76779|123979|O|10053.25|1995-03-22|4-NOT SPECIFIED|Clerk#000003303|0|tructions sleep furiously final ideas. permanently silent requests poach fl| +76780|210493|F|231433.12|1994-09-01|3-MEDIUM|Clerk#000003118|0| pinto beans according to the carefully special packages haggle slyly quickl| +76781|732733|O|353028.66|1996-11-14|2-HIGH|Clerk#000000222|0|sts. slyly regular foxes cajole across | +76782|17506|F|211546.28|1992-08-28|4-NOT SPECIFIED|Clerk#000001323|0|even requests integrate furiously packages. quick| +76783|214066|O|197443.42|1997-12-24|4-NOT SPECIFIED|Clerk#000003896|0|ronic requests. quickly even frets maintain. blithely bold accoun| +76808|24316|F|127659.71|1993-10-06|5-LOW|Clerk#000000757|0|inal requests haggle fluffily blithely special pinto| +76809|677186|O|264351.82|1997-08-02|5-LOW|Clerk#000001653|0|kages haggle fluffily after the blithely special pinto beans. | +76810|208967|F|70481.65|1992-08-25|3-MEDIUM|Clerk#000002163|0|nic, regular dolphins against the slyly express requests nag furiousl| +76811|596669|F|263867.92|1992-11-08|1-URGENT|Clerk#000002063|0|beans. special deposits among the evenly brave accounts wake slyly after the| +76812|707126|O|108546.64|1996-02-29|2-HIGH|Clerk#000004440|0|uffily ironic accounts! final asymptotes| +76813|165077|F|136084.66|1994-12-15|3-MEDIUM|Clerk#000004089|0|across the ironic asymptotes. blithely unu| +76814|193538|O|12574.86|1997-09-04|4-NOT SPECIFIED|Clerk#000001554|0|regular, bold theodolites among the pinto beans sleep furiously even account| +76815|31552|O|16380.47|1997-06-04|4-NOT SPECIFIED|Clerk#000002347|0|s boost according to the slowly final theodolites. furiously unusua| +76840|29272|F|112926.51|1993-10-27|4-NOT SPECIFIED|Clerk#000001638|0|regular instructions across the ca| +76841|704752|F|63658.93|1992-08-17|3-MEDIUM|Clerk#000000152|0|lly regular ideas. bold, bold deposits cajole slyly bold asymptotes. | +76842|11689|F|154288.06|1993-01-21|5-LOW|Clerk#000004524|0|ggle. fluffily ironic accounts haggle along | +76843|678823|O|85849.09|1995-10-25|1-URGENT|Clerk#000000516|0|refully regular pac| +76844|708901|F|91870.66|1992-08-28|5-LOW|Clerk#000000921|0|cajole carefully against the fluffily regular packages? daring| +76845|743024|F|289314.39|1992-10-21|1-URGENT|Clerk#000003961|0|e final packages. blithely final pla| +76846|491509|O|40313.00|1998-07-31|4-NOT SPECIFIED|Clerk#000004210|0| pinto beans wake slyly across the unusual| +76847|286061|O|63000.20|1998-01-16|3-MEDIUM|Clerk#000000981|0|n deposits sleep furiously ironic ideas: quickly regular reque| +76872|321872|F|184930.59|1993-11-26|2-HIGH|Clerk#000001798|0| express packages across the furiously thin r| +76873|693610|O|142992.27|1997-04-10|3-MEDIUM|Clerk#000001492|0|ely above the regular, bold orbits. special, unusual deposi| +76874|225913|O|178230.87|1997-10-21|2-HIGH|Clerk#000004579|0| final requests cajole. special packages haggle. express, special | +76875|399391|O|70179.13|1996-06-18|3-MEDIUM|Clerk#000000297|0|ely regular foxes. quickly even ideas cajole slyly quickly special t| +76876|55058|O|43263.14|1998-01-26|3-MEDIUM|Clerk#000002435|0|ss asymptotes. fluffily silent requests could have to unwind furiously. sl| +76877|597034|F|152147.67|1994-09-05|5-LOW|Clerk#000002703|0|instructions maintain quickly; blithely pending dependencies wake f| +76878|71815|F|234682.82|1992-06-12|5-LOW|Clerk#000004192|0|ess accounts sleep against the furiously even accounts. pending, sp| +76879|218189|O|71560.88|1998-06-27|1-URGENT|Clerk#000001492|0|efully above the special accounts. asympto| +76904|342532|F|123474.56|1994-09-30|3-MEDIUM|Clerk#000003889|0|pending packages. fluffily express account| +76905|669073|O|72357.96|1995-12-03|4-NOT SPECIFIED|Clerk#000002389|0|ts: quickly express deposits nag. furiou| +76906|342491|O|49298.32|1995-08-03|5-LOW|Clerk#000000302|0|gside of the slyly even courts dazzle carefull| +76907|734317|O|78869.30|1995-05-06|3-MEDIUM|Clerk#000004554|0|egrate furiously. depo| +76908|391024|F|157465.87|1994-02-10|3-MEDIUM|Clerk#000002787|0|c asymptotes. regular, ironic a| +76909|430060|O|26431.49|1998-07-12|5-LOW|Clerk#000001582|0| regular requests about the theodolites sleep furiously about the | +76910|235706|F|305187.82|1993-03-24|3-MEDIUM|Clerk#000001282|0|ly final instructions.| +76911|9772|F|211544.98|1994-09-03|2-HIGH|Clerk#000002701|0|he final dependencies. slyly ironic foxes about the | +76936|730138|O|300862.75|1997-11-28|2-HIGH|Clerk#000004134|0| even instructions. furiously regular platelets boost carefully | +76937|661643|F|205217.49|1993-04-13|2-HIGH|Clerk#000002835|0|ely pending ideas serve. furiously quiet deposits | +76938|730033|F|192206.42|1992-02-11|3-MEDIUM|Clerk#000001518|0|e furiously ironic asymptotes nag quickl| +76939|391559|O|298177.52|1996-03-28|5-LOW|Clerk#000003521|0|osits. fluffily final requests sleep against t| +76940|427141|O|131240.02|1997-06-08|1-URGENT|Clerk#000004419|0|leep furiously. pending accounts nag against the evenly ironic deposits--| +76941|702542|F|108059.05|1993-07-31|5-LOW|Clerk#000003301|0|nal requests: carefully un| +76942|370792|O|110590.22|1998-04-07|3-MEDIUM|Clerk#000004957|0|ic requests. ironic pin| +76943|136033|O|96650.67|1996-04-28|4-NOT SPECIFIED|Clerk#000002997|0|regular realms. carefully final foxes| +76968|285839|F|169172.87|1993-05-07|2-HIGH|Clerk#000003980|0|nic deposits nag fluffily about the never special instructions? ironic account| +76969|340466|F|117914.54|1992-12-27|1-URGENT|Clerk#000000976|0|hely at the even requests. slyly final ideas use furiously. slyly | +76970|461974|F|134250.59|1994-10-15|3-MEDIUM|Clerk#000000341|0|lar accounts among the ironic, exp| +76971|381832|P|235917.51|1995-05-20|3-MEDIUM|Clerk#000001153|0|theodolites serve carefully. in| +76972|420718|F|120831.46|1994-03-09|4-NOT SPECIFIED|Clerk#000004573|0|quests! furiously regular deposits na| +76973|4591|O|80409.92|1997-11-14|3-MEDIUM|Clerk#000000345|0| on the even instructions. quickly special| +76974|659410|F|101326.26|1994-03-28|5-LOW|Clerk#000002035|0|l pinto beans. blithely pending theodolites sleep after the regular, e| +76975|695485|O|140865.71|1998-02-19|5-LOW|Clerk#000001012|0|uses wake. ironic requests across the careful pi| +77000|261101|O|207218.93|1995-08-25|2-HIGH|Clerk#000001627|0| detect blithely packages. packages sleep blithely after t| +77001|67583|O|220898.60|1997-01-17|3-MEDIUM|Clerk#000004550|0|ests. slowly regular | +77002|365650|F|174886.94|1993-06-17|3-MEDIUM|Clerk#000002328|0|ular foxes haggle carefully above the carefully u| +77003|714749|O|267814.50|1997-02-25|2-HIGH|Clerk#000001186|0|use regular, pending accounts. express pinto beans hinder slyly unusual, | +77004|22648|F|290676.08|1993-09-15|5-LOW|Clerk#000003230|0|final realms about the platelets do| +77005|384580|F|50992.86|1994-08-03|5-LOW|Clerk#000004296|0|special requests. theodolites haggle furiously| +77006|113920|O|45652.04|1997-05-17|5-LOW|Clerk#000002874|0|are quickly against the slyly specia| +77007|644851|O|268769.54|1995-11-02|1-URGENT|Clerk#000004850|0|express accounts sleep furiously across the final, ex| +77032|494645|O|261206.19|1996-03-28|3-MEDIUM|Clerk#000000911|0|. furiously final instructions boost slyly final dependencie| +77033|489268|O|285472.43|1996-12-04|2-HIGH|Clerk#000003073|0|g to the furiously silent packages.| +77034|120460|F|132654.89|1993-12-25|3-MEDIUM|Clerk#000001796|0|onic, busy deposits cajole along the slyly even instructions. thinly even| +77035|308267|F|303746.38|1992-01-27|4-NOT SPECIFIED|Clerk#000003602|0|l sentiments. pending p| +77036|34030|O|212135.08|1997-06-30|3-MEDIUM|Clerk#000004409|0|ording to the blithely final ideas. quickly special theodolites near the sly| +77037|427898|O|246883.04|1995-12-30|2-HIGH|Clerk#000000507|0|bold instructions. unusual accounts cajole furiously along the sly| +77038|672766|O|39461.66|1997-05-27|3-MEDIUM|Clerk#000004344|0|encies. final, even deposits cajole against the quick ac| +77039|165359|O|200968.26|1996-11-25|2-HIGH|Clerk#000000342|0|nding, final dolphins. final packages play around the even packages. furiousl| +77064|421913|O|142889.68|1995-06-27|5-LOW|Clerk#000004373|0|sits. fluffily express deposits against the caref| +77065|585868|O|183826.19|1998-01-14|4-NOT SPECIFIED|Clerk#000001120|0|lly special frets. unusual requests according t| +77066|662926|O|219110.93|1997-03-05|4-NOT SPECIFIED|Clerk#000002315|0| carefully bold asymptotes poach quickly fr| +77067|539131|F|177371.09|1993-06-25|2-HIGH|Clerk#000002474|0|s do boost furiously besides the furiously ironic deposits. account| +77068|399460|F|24008.18|1994-05-16|4-NOT SPECIFIED|Clerk#000004779|0|se slyly! special, pending pinto beans cajole after the ideas. carefully even | +77069|451355|O|120980.87|1996-10-06|1-URGENT|Clerk#000004561|0|arhorses impress fur| +77070|410711|F|56730.80|1993-03-31|3-MEDIUM|Clerk#000001768|0|e finally from the blithely pending accounts. express depen| +77071|560935|F|118857.64|1992-09-09|3-MEDIUM|Clerk#000003332|0|cial courts wake carefully. carefully pending pinto beans affix carefully | +77096|118411|F|73444.83|1994-10-24|2-HIGH|Clerk#000002184|0| accounts. asymptotes cajole around the asymptotes.| +77097|378727|F|40654.31|1994-12-24|3-MEDIUM|Clerk#000000026|0|t furiously after the furiously regular deposits. even | +77098|745258|O|88517.94|1995-10-17|3-MEDIUM|Clerk#000001307|0|ic instructions. qu| +77099|529249|O|38126.64|1995-12-14|4-NOT SPECIFIED|Clerk#000000159|0| accounts. blithely enticing theodolites at| +77100|83938|F|51904.33|1994-04-09|2-HIGH|Clerk#000003724|0|ng to the furiously final foxes. blithely final reques| +77101|718402|O|31395.22|1998-02-20|2-HIGH|Clerk#000001513|0|ggle carefully furiously regular| +77102|659755|F|68372.61|1992-05-28|3-MEDIUM|Clerk#000004432|0|y about the ironic foxes. regular dependencies ab| +77103|500989|F|160171.31|1993-12-17|3-MEDIUM|Clerk#000000331|0|ding packages about the quickly even instructions sleep finally| +77128|598123|O|237347.49|1997-11-07|5-LOW|Clerk#000002926|0|thely special foxes. bold accounts cajole doggedly around | +77129|400522|F|309391.57|1993-04-07|3-MEDIUM|Clerk#000001172|0|special accounts. slyly spe| +77130|300385|O|185134.12|1997-03-27|4-NOT SPECIFIED|Clerk#000001313|0|usly pending theodolites cajole quickly against the even instruction| +77131|291871|O|154367.58|1998-01-26|2-HIGH|Clerk#000001415|0|theodolites. pending, fi| +77132|460076|F|166789.03|1992-06-09|3-MEDIUM|Clerk#000003565|0|iously regular requests. blithely| +77133|742829|F|276902.47|1995-03-05|5-LOW|Clerk#000000586|0|lar theodolites. closely regular packages about the| +77134|225085|F|194228.09|1994-01-06|4-NOT SPECIFIED|Clerk#000003194|0| on the furiously regular packages. fluffily| +77135|727495|F|97117.09|1992-01-16|2-HIGH|Clerk#000004997|0|carefully even requests sleep furiously final pinto beans. blithel| +77160|501193|O|198637.50|1996-05-04|1-URGENT|Clerk#000001304|0|r the unusual, regular deposits. slyly final courts boost.| +77161|286574|F|228530.59|1993-04-11|3-MEDIUM|Clerk#000001320|0|ily special, ironic accounts. final, ironic deposits are | +77162|692555|F|3146.87|1993-07-23|3-MEDIUM|Clerk#000003425|0| the furiously stealthy| +77163|514946|F|149444.14|1992-05-24|1-URGENT|Clerk#000002809|0|c ideas after the carefully special escapades wake a| +77164|443468|O|26371.87|1997-01-28|2-HIGH|Clerk#000000635|0|w packages nag against | +77165|600505|F|59805.40|1994-12-01|3-MEDIUM|Clerk#000003947|0|sublate. ideas sleep careful| +77166|654929|O|313514.17|1996-05-17|4-NOT SPECIFIED|Clerk#000002436|0|dependencies! final theodolites alongside of the| +77167|389101|F|242701.60|1995-01-31|5-LOW|Clerk#000001454|0|ckages. quickly regular instructions wake c| +77192|340217|F|130953.48|1992-05-24|4-NOT SPECIFIED|Clerk#000003851|0|lly express packages. blithely final pinto beans alongside of the | +77193|22903|F|328249.90|1993-09-04|4-NOT SPECIFIED|Clerk#000003485|0|gainst the blithely express instructions. daringly thin account| +77194|149189|F|160767.89|1993-08-28|4-NOT SPECIFIED|Clerk#000001945|0|ages along the close, regular requests wake slyly final accounts. dogge| +77195|166408|O|156499.49|1996-06-28|4-NOT SPECIFIED|Clerk#000000122|0|ts. pending deposits cajole deposits; regular, regular deposits nag ac| +77196|62830|F|16403.38|1992-04-21|3-MEDIUM|Clerk#000004549|0|n, silent dinos. slyly pending foxes wa| +77197|712819|O|117356.96|1996-06-11|5-LOW|Clerk#000004357|0|nstructions hang closely about the special instruct| +77198|572044|F|329453.91|1994-12-28|2-HIGH|Clerk#000000757|0| blithely daring requests. slyly even accounts | +77199|83228|F|152653.34|1992-01-28|5-LOW|Clerk#000003006|0|blithely. quickly final foxes around the dolphins are carefully evenly unu| +77224|49015|F|381008.69|1994-09-05|5-LOW|Clerk#000000292|0|the silent deposits. ironic, fi| +77225|285130|O|247233.81|1997-05-09|1-URGENT|Clerk#000004759|0|ly final dependencies | +77226|407503|F|12639.79|1993-11-21|3-MEDIUM|Clerk#000000132|0|uriously pending packages haggle. quickly regular platelets about the u| +77227|652169|F|57926.69|1993-05-04|5-LOW|Clerk#000003245|0|le. quickly final pinto beans cajole slyly. quickly special p| +77228|502013|F|21667.57|1993-04-18|2-HIGH|Clerk#000002815|0|ar pinto beans. unusual pinto beans wake against the furiously unus| +77229|581449|F|143223.17|1992-02-05|3-MEDIUM|Clerk#000002674|0|l dependencies sleep quickly. qu| +77230|638119|P|52302.14|1995-04-04|2-HIGH|Clerk#000003526|0| even packages. blithely sly deposits wake furiously| +77231|601027|O|216895.07|1997-09-18|4-NOT SPECIFIED|Clerk#000000856|0|al deposits mold ca| +77256|431086|O|5549.07|1997-07-31|4-NOT SPECIFIED|Clerk#000000247|0|ccounts must wake blithely; slyly even deposits need to cajole blithe| +77257|241483|F|18467.73|1994-11-15|5-LOW|Clerk#000003208|0|y accounts wake blithely. slyly even accounts integrate slyly reque| +77258|346399|F|193243.25|1993-05-06|1-URGENT|Clerk#000002115|0|gular accounts after the quickly express dependencies cajo| +77259|423547|F|42248.45|1992-07-01|5-LOW|Clerk#000000871|0|courts detect quickly along the fluffily regular depe| +77260|303424|P|213234.52|1995-05-27|5-LOW|Clerk#000002224|0| carefully even packages? blithely final dolphins cajole after the c| +77261|387451|O|151618.26|1995-09-19|1-URGENT|Clerk#000000721|0|bold instructions. theodolites haggle blithely. regular, | +77262|384295|F|312163.93|1992-07-18|3-MEDIUM|Clerk#000000320|0|usly bold pinto beans are slyly even theodoli| +77263|584848|O|2536.41|1997-05-28|5-LOW|Clerk#000004033|0|nd about the furiously special | +77288|21628|F|154552.68|1992-08-23|1-URGENT|Clerk#000001916|0| maintain quickly. | +77289|488614|F|248028.06|1992-04-06|5-LOW|Clerk#000003267|0|usly blithe deposits. fluffily final accounts wake furiously ent| +77290|383998|F|53427.76|1994-09-14|3-MEDIUM|Clerk#000001278|0|ix slyly carefully final deposits! ironic dependencies wake above the blith| +77291|99716|F|344390.15|1992-06-26|3-MEDIUM|Clerk#000002540|0| special instructions. accounts maintain quickly car| +77292|422866|O|243543.44|1996-10-05|2-HIGH|Clerk#000000637|0|blithely ironic accounts. regul| +77293|88957|O|13857.10|1996-12-20|5-LOW|Clerk#000004817|0| bold instructions. fluffily final accounts are fluffily across the fluffily| +77294|344068|O|221904.18|1996-08-20|3-MEDIUM|Clerk#000003265|0|efully. fluffily unusual theodolites against t| +77295|233572|F|217233.78|1994-11-26|2-HIGH|Clerk#000004771|0|nstructions wake blithely against the b| +77320|115787|O|211217.46|1998-05-22|2-HIGH|Clerk#000000414|0|carefully silent instructions. blithely final theodolites| +77321|517945|F|57358.74|1992-06-13|5-LOW|Clerk#000000236|0|riously: quickly ironic courts are | +77322|600823|O|179401.45|1997-08-16|5-LOW|Clerk#000000394|0|ss excuses are carefully bold Tiresias. care| +77323|19132|O|325429.45|1996-03-22|3-MEDIUM|Clerk#000004241|0| quickly. blithely even orbit| +77324|520631|F|245797.59|1992-12-18|3-MEDIUM|Clerk#000003418|0|ecial requests. carefully regular ideas are carefully; carefully quie| +77325|733655|F|6857.14|1993-04-16|2-HIGH|Clerk#000001781|0| carefully special asymptotes. regular requests accordi| +77326|531973|F|257915.98|1994-02-18|3-MEDIUM|Clerk#000004360|0|unts poach fluffily ideas. frays are carefully. even | +77327|96479|O|106106.06|1997-02-06|1-URGENT|Clerk#000004242|0|sual deposits. blithely final requests| +77352|11677|F|292034.00|1993-08-13|2-HIGH|Clerk#000001156|0| the even excuses. final ideas are. ca| +77353|489827|F|42868.27|1992-07-13|5-LOW|Clerk#000004920|0| requests. ironic, bold ideas wake slyly. always regular| +77354|518624|F|249066.00|1994-07-21|2-HIGH|Clerk#000004141|0|ts. fluffily unusual instructions above the quickly silent instru| +77355|7901|O|106901.69|1995-09-10|4-NOT SPECIFIED|Clerk#000003423|0|bove the slyly ironic t| +77356|28798|F|143566.37|1995-03-27|4-NOT SPECIFIED|Clerk#000002414|0|dolites. fluffily bold excuses wake dolphins. specia| +77357|256429|O|76320.90|1996-04-05|3-MEDIUM|Clerk#000004934|0|ely ironic requests. fluffily regular a| +77358|285961|F|275289.72|1993-02-09|3-MEDIUM|Clerk#000001545|0|the accounts nag am| +77359|136694|O|104483.64|1996-04-01|2-HIGH|Clerk#000000973|0|ar, regular packages. instructions above the ironic requests wake | +77384|161297|O|85543.01|1997-10-14|2-HIGH|Clerk#000002606|0|sts haggle blithely after the blithely careful packages. slyly regular | +77385|410135|F|277164.17|1994-05-10|3-MEDIUM|Clerk#000002500|0|usly regular requests. fluffily regular packages are carefully furi| +77386|623660|F|229529.25|1992-11-07|3-MEDIUM|Clerk#000000619|0|even foxes sleep. blit| +77387|597115|O|159858.81|1995-07-03|2-HIGH|Clerk#000001629|0|ously silent excuses. instructions among the e| +77388|695554|O|56598.27|1997-04-27|3-MEDIUM|Clerk#000002506|0|egrate slyly regular accounts. blithe| +77389|651529|F|34611.87|1994-04-21|5-LOW|Clerk#000003968|0| blithely special deposits past the carefully blithe excuses dazzle dependenci| +77390|227920|F|204028.49|1993-01-30|5-LOW|Clerk#000002717|0|ages according to t| +77391|400780|O|47277.10|1996-04-26|2-HIGH|Clerk#000000797|0|ravely slyly regular requests.| +77416|127372|P|183465.54|1995-05-20|1-URGENT|Clerk#000002157|0| regular, ironic packages| +77417|233416|O|145043.36|1995-10-14|4-NOT SPECIFIED|Clerk#000003960|0|carefully. express ideas boost blithely carefully even pinto bean| +77418|491374|O|76449.72|1995-11-08|3-MEDIUM|Clerk#000001118|0|endencies. requests sleep. blithely even dependencie| +77419|267217|F|15748.09|1992-12-16|3-MEDIUM|Clerk#000001899|0|quickly. slyly final accounts integrate slyly pendin| +77420|95935|O|132124.32|1998-06-21|3-MEDIUM|Clerk#000000290|0| pending deposits could boost blithely. accounts nag fu| +77421|599719|F|315486.60|1992-06-17|4-NOT SPECIFIED|Clerk#000002999|0|refully pending deposits cajole. express theodolites haggle r| +77422|199294|F|116043.09|1994-10-29|3-MEDIUM|Clerk#000001896|0|ecial requests. furiously silent deposits | +77423|9184|O|267976.04|1995-10-10|1-URGENT|Clerk#000001512|0|onic accounts cajole about the even, final pinto beans. furio| +77448|584339|F|81383.00|1992-01-18|3-MEDIUM|Clerk#000003061|0|press accounts; regu| +77449|480404|O|295081.26|1996-08-30|2-HIGH|Clerk#000001258|0|. special ideas nag enticingly accounts. quick| +77450|387556|F|271410.77|1994-05-09|1-URGENT|Clerk#000004010|0|ly bold requests. slowly even accounts wake slyly during the | +77451|638378|F|54730.73|1993-02-12|4-NOT SPECIFIED|Clerk#000000980|0|its detect slyly along the ironic fo| +77452|458731|F|97004.41|1992-09-02|4-NOT SPECIFIED|Clerk#000001494|0|ounts; quickly pending packages accor| +77453|625564|O|149808.56|1996-03-06|3-MEDIUM|Clerk#000002635|0|le carefully along the carefully ironic deposits| +77454|334769|F|200396.33|1992-08-31|1-URGENT|Clerk#000002261|0|ions. regular deposits nag slyly| +77455|707891|O|3452.55|1996-05-02|2-HIGH|Clerk#000001431|0|uiet requests. boldly final sheaves boost slyly among the slowly | +77480|272612|F|220162.25|1994-03-15|1-URGENT|Clerk#000004421|0|inal courts cajole blithely accounts. even packages hinder abo| +77481|35713|O|179579.63|1996-07-29|4-NOT SPECIFIED|Clerk#000003488|0|cajole fluffily! carefully regular ideas alongside of| +77482|223909|O|192628.78|1996-02-24|2-HIGH|Clerk#000004621|0|ong the platelets cajole along the packages. fluffily unusual deposits| +77483|481201|O|142860.80|1995-07-17|4-NOT SPECIFIED|Clerk#000003510|0|nal requests. slyly ironic excuses alongside of | +77484|295201|F|220566.61|1993-06-13|2-HIGH|Clerk#000001749|0|slyly fluffily regular accounts. even theodolites wake. blithely unusua| +77485|173029|F|179371.27|1993-01-17|4-NOT SPECIFIED|Clerk#000003798|0|y. blithely ironic foxes along the blithely special foxes are blit| +77486|332482|O|204272.65|1997-09-02|1-URGENT|Clerk#000001577|0|ully ironic dependencies. ironic, final deposits sublate q| +77487|501280|O|122944.20|1996-12-06|3-MEDIUM|Clerk#000003824|0|ymptotes around the regular, regular packages haggle carefully abov| +77512|234760|F|160149.49|1992-08-14|4-NOT SPECIFIED|Clerk#000000827|0|s haggle slyly alongside of the carefully express platelets. slyly| +77513|596221|F|58691.51|1993-08-28|4-NOT SPECIFIED|Clerk#000001684|0|kages. carefully even deposits are blithely among t| +77514|657061|F|47102.54|1993-08-12|3-MEDIUM|Clerk#000003391|0|anent deposits should haggle according to the final packages. re| +77515|219892|F|111304.99|1995-02-06|3-MEDIUM|Clerk#000002216|0|ounts. furiously regular platelets wake alongside of the| +77516|450539|F|71779.76|1994-09-01|4-NOT SPECIFIED|Clerk#000003293|0|he regular, final accounts boost slyly bold requests. realms accordin| +77517|198548|O|174653.68|1998-01-26|4-NOT SPECIFIED|Clerk#000004225|0|e slow, ironic packages. carefully even excuses nag carefully| +77518|239602|F|132249.51|1992-11-20|2-HIGH|Clerk#000001799|0|kages poach slyly. blithely regular packages hagg| +77519|208279|F|66407.24|1992-08-24|3-MEDIUM|Clerk#000000197|0|across the carefully special deposits. even foxes lose quickly | +77544|270365|F|33889.62|1994-09-11|3-MEDIUM|Clerk#000001033|0|ermanent foxes boost against the blithely furious asymptotes. r| +77545|521635|O|43168.66|1998-06-18|1-URGENT|Clerk#000001431|0|fully ironic deposits| +77546|353200|O|228775.62|1996-04-09|2-HIGH|Clerk#000000856|0|ymptotes at the blithely sp| +77547|728755|F|92626.23|1993-05-19|5-LOW|Clerk#000002693|0|thes boost quickly about| +77548|667240|F|156804.00|1992-07-28|2-HIGH|Clerk#000000779|0|ully packages. quickly ironic deposits sleep carefully against the quic| +77549|269447|O|28502.28|1995-08-31|5-LOW|Clerk#000004924|0|x fluffily furiously special excuses. sl| +77550|84080|F|42536.28|1992-07-12|3-MEDIUM|Clerk#000000296|0|lly pending accounts x-ray carefully. close requests haggle carefull| +77551|125515|F|4189.90|1992-11-18|3-MEDIUM|Clerk#000003970|0| patterns hinder slyly blithely express theodolites. carefu| +77576|513797|F|189261.10|1992-01-07|4-NOT SPECIFIED|Clerk#000003230|0|hely final dependencies are across the furiously pending requests. | +77577|624106|F|112055.92|1994-06-15|4-NOT SPECIFIED|Clerk#000004667|0|ons about the blithely final excuses are around| +77578|596623|F|133077.01|1992-12-09|1-URGENT|Clerk#000002409|0|eodolites. express | +77579|689512|F|174073.84|1993-12-01|3-MEDIUM|Clerk#000001801|0|ch across the quickly silent foxes| +77580|373048|P|79170.36|1995-04-23|2-HIGH|Clerk#000001359|0|usly. fluffily ironic requests wake quickly. fluffily ironic depende| +77581|545734|F|255792.79|1993-08-28|2-HIGH|Clerk#000003880|0|odolites are quickly along the regular | +77582|397288|F|85357.23|1993-01-27|5-LOW|Clerk#000002605|0| final theodolites. furiously ironic packages sleep. regular | +77583|702242|F|287589.03|1992-04-30|4-NOT SPECIFIED|Clerk#000002363|0|usly final requests d| +77608|578278|F|83978.94|1993-12-16|5-LOW|Clerk#000004326|0|egular requests. pending pains nag blith| +77609|602207|O|57626.80|1997-04-30|4-NOT SPECIFIED|Clerk#000002501|0|ven packages try to play fluffily unusual accou| +77610|37960|O|7726.13|1995-12-19|5-LOW|Clerk#000004043|0|efully regular escapades cajole carefully; furiously pendi| +77611|477769|O|222281.72|1996-05-19|4-NOT SPECIFIED|Clerk#000004213|0|ole slyly instructions. blithely bli| +77612|346444|O|338549.59|1998-02-20|5-LOW|Clerk#000002546|0|lets; evenly silent frets print around the stealthily even foxes. blithely reg| +77613|415999|O|113131.55|1998-01-09|2-HIGH|Clerk#000000552|0|slyly deposits. special, final foxes boost blith| +77614|168581|O|191931.97|1996-07-29|3-MEDIUM|Clerk#000002449|0|lar accounts sleep carefully at the furiously busy as| +77615|575243|F|105674.94|1992-09-01|2-HIGH|Clerk#000000101|0|es. blithely special deposits along the packages | +77640|593722|F|45972.12|1993-11-05|1-URGENT|Clerk#000001124|0|g the carefully final deposits sleep furiously even ideas. special, express | +77641|682016|F|154107.29|1993-12-22|5-LOW|Clerk#000000080|0|uriously carefully regular| +77642|389579|O|211092.67|1997-02-26|2-HIGH|Clerk#000003443|0|e ironic requests integrate theodolite| +77643|137893|O|76291.28|1996-05-03|2-HIGH|Clerk#000002670|0|ash boldly requests. slyly even ideas haggle carefull| +77644|55081|F|68106.84|1992-02-17|3-MEDIUM|Clerk#000001851|0|deposits use blithely| +77645|223081|F|150630.96|1994-09-20|3-MEDIUM|Clerk#000004527|0|und the furiously regular pint| +77646|48112|O|197535.79|1996-01-28|5-LOW|Clerk#000000940|0|regular asymptotes above the carefully bold ideas| +77647|109414|F|60822.87|1993-01-31|5-LOW|Clerk#000004951|0|nts boost blithely bold tithes. regular pinto beans use quickly pending| +77672|658058|F|250100.22|1994-10-28|1-URGENT|Clerk#000002819|0|old theodolites haggle carefully across the quickly pe| +77673|468871|O|159426.15|1997-10-17|4-NOT SPECIFIED|Clerk#000001107|0| to the enticingly regular dependencies. unusual for| +77674|57695|F|383775.72|1994-09-11|3-MEDIUM|Clerk#000003083|0| pending accounts. regular| +77675|669319|O|199203.57|1997-11-16|5-LOW|Clerk#000002665|0|bold platelets. carefully bold ideas haggle slyl| +77676|742090|F|109218.54|1994-06-16|4-NOT SPECIFIED|Clerk#000004604|0|ly across the requests. boldly regular| +77677|523238|O|106381.80|1997-08-25|5-LOW|Clerk#000000599|0|ry to cajole theodolites. carefully regular accounts above the ironic, ironic | +77678|310990|P|232659.96|1995-05-28|5-LOW|Clerk#000002595|0|ic, even pinto beans wake furiously amo| +77679|55219|F|89248.56|1993-10-27|3-MEDIUM|Clerk#000003131|0|he idly slow accounts boost final instructions. clos| +77704|287545|P|34707.70|1995-03-19|5-LOW|Clerk#000002218|0|kages. blithe accounts affix above the pending ideas. accounts cajole. slyly e| +77705|507817|F|191576.08|1995-02-27|1-URGENT|Clerk#000004606|0|ess, final requests. carefully even accounts haggle carefully against | +77706|626728|O|50902.86|1996-09-01|1-URGENT|Clerk#000003405|0|cial deposits affix slyly: slyly final excus| +77707|406297|O|157703.47|1997-07-10|1-URGENT|Clerk#000004391|0|ully final foxes wake quickly about the regular foxes. blithely | +77708|609307|F|126001.35|1992-01-12|3-MEDIUM|Clerk#000003942|0| haggle blithely express fo| +77709|91511|O|215123.39|1996-03-30|1-URGENT|Clerk#000002113|0|ding accounts dazzle carefully. furiously ironic ideas poach ir| +77710|509017|F|116596.63|1993-09-24|1-URGENT|Clerk#000002383|0|xpress accounts. fluffily dogged excuses boost boldly accoun| +77711|528781|F|63027.38|1994-07-29|1-URGENT|Clerk#000000507|0| regular instructions boost furiously s| +77736|471799|F|102412.22|1992-06-14|5-LOW|Clerk#000004268|0|d waters do wake fluffily | +77737|519682|F|320952.88|1994-05-15|3-MEDIUM|Clerk#000001113|0|posits are across the slyly regular deposits.| +77738|532337|O|122529.42|1997-01-29|1-URGENT|Clerk#000002988|0|s maintain fluffily among the excuses. furiously fina| +77739|223300|F|10435.19|1992-11-29|1-URGENT|Clerk#000004630|0|. carefully regular excuses sleep silent, expr| +77740|731245|O|60483.18|1995-08-30|3-MEDIUM|Clerk#000004770|0|nally bold braids detect final, even theodolites. exp| +77741|515972|F|228207.32|1992-08-05|3-MEDIUM|Clerk#000004158|0|g pearls against the unusual instruc| +77742|428512|F|132171.72|1993-09-24|2-HIGH|Clerk#000000640|0|ckages nag against the | +77743|493531|F|109554.99|1993-04-23|3-MEDIUM|Clerk#000000609|0|structions after the blithely final | +77768|499841|F|94067.87|1994-04-11|1-URGENT|Clerk#000002860|0| according to the ironic excuses. ca| +77769|66682|O|155508.84|1996-01-05|2-HIGH|Clerk#000000969|0|uctions. braids wake blithely unusual deposits. rea| +77770|197224|F|17718.31|1994-08-13|3-MEDIUM|Clerk#000000334|0|y even packages. even, ir| +77771|492754|F|90082.96|1994-05-06|1-URGENT|Clerk#000000718|0|yly quickly pending theodolites. permanent courts haggle packages. ironic, | +77772|185707|F|141322.83|1992-08-08|5-LOW|Clerk#000002816|0| sometimes pending courts wake after the ironic, regular accounts. s| +77773|422860|F|163326.76|1994-12-11|1-URGENT|Clerk#000004627|0|requests alongside of the f| +77774|724474|F|227127.23|1992-04-18|1-URGENT|Clerk#000003051|0|le along the quickly even instructions. final| +77775|709303|O|223128.03|1995-08-22|1-URGENT|Clerk#000002992|0|ic deposits-- blithely even deposits wake furiously. quickly fi| +77800|738919|F|73960.92|1994-07-20|1-URGENT|Clerk#000003989|0|ons shall have to wake carefully alongside of th| +77801|481657|F|260152.33|1993-04-22|2-HIGH|Clerk#000002942|0| are furiously around | +77802|448798|F|52817.21|1992-11-27|4-NOT SPECIFIED|Clerk#000002125|0|round the carefully unusual dependencies. dolphins| +77803|165845|O|110847.89|1995-06-24|2-HIGH|Clerk#000002978|0|ic pinto beans nag closely. unusual| +77804|350485|O|238063.17|1996-05-12|3-MEDIUM|Clerk#000000396|0|s. regular pinto beans engage slyly unusual, regular accounts. even pa| +77805|87553|F|225949.72|1994-05-17|2-HIGH|Clerk#000004009|0|egular requests boost: ironic packages wake. package| +77806|735830|O|201654.64|1995-11-20|2-HIGH|Clerk#000003377|0|y ironic decoys. packages| +77807|344290|O|160685.04|1996-10-14|3-MEDIUM|Clerk#000003563|0|lar pinto beans according to the quickly final deposits cajole across th| +77832|228089|F|122829.47|1993-06-24|2-HIGH|Clerk#000001273|0| the instructions boost slyly ruthless realms. requests use sly| +77833|238987|O|107709.74|1997-09-10|1-URGENT|Clerk#000003781|0|detect. final ideas sleep blithely quickly regular platelets. slyl| +77834|378745|O|141839.92|1995-12-11|4-NOT SPECIFIED|Clerk#000000693|0|tect along the quickly regular accounts. blithely final foxes abo| +77835|297791|O|266274.34|1998-04-16|2-HIGH|Clerk#000000064|0|ly regular theodolites-- fur| +77836|221104|O|333320.09|1998-03-23|5-LOW|Clerk#000001602|0|e the ironic dolphins cajole slyly f| +77837|574370|F|192120.36|1993-04-24|4-NOT SPECIFIED|Clerk#000000190|0| patterns: blithely final epitaphs lose blithely according to t| +77838|183238|F|296963.45|1993-01-15|1-URGENT|Clerk#000003922|0|al pinto beans. furiously bold excuses al| +77839|176893|F|298828.03|1995-01-07|5-LOW|Clerk#000002085|0|integrate slyly quie| +77864|32555|O|90980.48|1996-02-03|3-MEDIUM|Clerk#000002732|0|cross the blithely regular | +77865|393047|F|26672.03|1993-07-30|4-NOT SPECIFIED|Clerk#000000005|0|ily silent requests. carefully final requests cajole furiously-- depo| +77866|675301|O|115927.61|1996-10-26|5-LOW|Clerk#000003708|0|equests. regular accounts sleep bold asymptotes! dependencie| +77867|12424|O|305903.81|1997-11-07|5-LOW|Clerk#000003666|0|ual packages sleep after the even accounts. boldly reg| +77868|296783|O|74902.69|1997-10-02|3-MEDIUM|Clerk#000001344|0|ounts. express, final deposits maintain. requests sleep ca| +77869|520508|O|104524.81|1997-06-07|3-MEDIUM|Clerk#000001576|0|carefully. furiously ironic accounts nag. blithely regular accounts nag care| +77870|172255|F|72854.42|1992-09-11|5-LOW|Clerk#000001939|0|ructions solve among the furiously ironic theodolites: even ideas affix| +77871|63763|O|181124.44|1996-10-21|1-URGENT|Clerk#000001749|0|are fluffily quickly pending accounts. q| +77896|638357|F|72610.06|1994-03-10|1-URGENT|Clerk#000002334|0| express warhorses sleep ruthle| +77897|100792|O|257764.49|1996-07-27|3-MEDIUM|Clerk#000004407|0|r asymptotes are slyly according to the | +77898|494824|O|152121.65|1998-01-11|5-LOW|Clerk#000004183|0|ments believe furiously. furiously b| +77899|475360|O|147127.31|1997-05-28|5-LOW|Clerk#000002199|0| final patterns cajole carefully regular instructions. blithely final packages| +77900|344108|F|325577.78|1993-09-08|5-LOW|Clerk#000000564|0|ng theodolites wake| +77901|163009|F|237953.26|1994-11-12|5-LOW|Clerk#000000360|0|. ironic, final deposits after the ironic acc| +77902|687328|F|163747.60|1994-02-17|5-LOW|Clerk#000003226|0|are quickly furiously pending asymptotes. quickly regular fox| +77903|388387|F|226424.50|1995-04-04|5-LOW|Clerk#000001830|0|ely even foxes. carefully bold foxes dazzle slowly along the blithely final th| +77928|353377|O|133360.27|1996-04-11|1-URGENT|Clerk#000002021|0|nic instructions. special foxes haggle. spec| +77929|674080|F|302518.02|1994-07-04|3-MEDIUM|Clerk#000001513|0|posits along the furiously ironic deposits wake alongside of the furiously reg| +77930|493433|O|190781.51|1997-12-18|5-LOW|Clerk#000001886|0|beans boost. unusual ideas wake ideas| +77931|364967|F|146702.43|1992-09-30|4-NOT SPECIFIED|Clerk#000001992|0|, express requests use among th| +77932|493502|F|298333.15|1992-06-26|4-NOT SPECIFIED|Clerk#000001828|0| requests of the instructions | +77933|34655|O|155158.75|1996-09-27|5-LOW|Clerk#000004662|0| packages cajole quickly after the| +77934|440746|F|327966.38|1994-03-15|5-LOW|Clerk#000003496|0|nticingly final packages haggle quickly even,| +77935|589183|O|232426.19|1997-04-05|3-MEDIUM|Clerk#000003304|0|ed foxes after the slyly even sentiments serve furiously according | +77960|131549|F|15750.50|1992-11-01|1-URGENT|Clerk#000001499|0|sts. slyly regular deposits wake carefully final excuses. carefully pendi| +77961|683458|O|22505.77|1998-05-13|3-MEDIUM|Clerk#000000466|0|symptotes are carefully. blithely express requests around th| +77962|622003|O|140868.69|1996-09-04|1-URGENT|Clerk#000001824|0|y according to the requests. quickly final packages a| +77963|474814|F|186597.58|1994-02-17|3-MEDIUM|Clerk#000001392|0|lar ideas. quickly reg| +77964|178546|F|204748.10|1993-05-08|1-URGENT|Clerk#000000178|0|metimes. deposits alongside of the even deposits haggle carefully agains| +77965|49324|O|8640.94|1997-06-16|5-LOW|Clerk#000001875|0|. regular pinto beans haggle. silent reque| +77966|221635|F|137105.39|1993-05-03|3-MEDIUM|Clerk#000002554|0|iously pending packages sleep slyly quickly final platel| +77967|506440|O|277856.06|1996-09-24|5-LOW|Clerk#000002170|0| cajole after the ironic, special foxes. quickly regular dependencies was fur| +77992|715669|F|109820.12|1992-11-29|3-MEDIUM|Clerk#000001055|0|sts. accounts about the furiously special deposits wake carefully amo| +77993|474502|O|216592.62|1996-08-17|4-NOT SPECIFIED|Clerk#000003481|0|cial requests use quickly pending pinto| +77994|181804|O|253687.98|1998-06-08|3-MEDIUM|Clerk#000001709|0|. regularly pending foxes cajole flu| +77995|69802|O|213207.94|1996-12-22|5-LOW|Clerk#000003593|0|posits unwind. carefully bold requests along the fluffily bold dolphi| +77996|141775|F|215369.56|1993-04-11|1-URGENT|Clerk#000001061|0|s frets are. packages haggle bl| +77997|33211|O|27072.25|1998-06-01|4-NOT SPECIFIED|Clerk#000001860|0|s. closely final theodo| +77998|172270|F|59547.85|1994-05-01|4-NOT SPECIFIED|Clerk#000002356|0|r packages. regular requests above the blithely ironic foxes sleep after the| +77999|323441|O|86469.53|1995-05-27|1-URGENT|Clerk#000004836|0|ests sleep slyly slyly pending accounts. ruthless instructions haggle carefull| +78024|62167|F|279618.32|1993-07-10|1-URGENT|Clerk#000002656|0| blithely regular ideas cajole about the furiously final accounts. slyly speci| +78025|85382|F|144634.49|1992-10-23|1-URGENT|Clerk#000004924|0|eans. carefully ironic somas nag carefully about the slyly special foxes. qui| +78026|256201|F|45829.40|1992-12-22|2-HIGH|Clerk#000002025|0|boost slyly. carefu| +78027|192296|F|248933.30|1994-09-23|4-NOT SPECIFIED|Clerk#000004836|0| theodolites sleep furiously. silently regular plat| +78028|159910|O|62911.86|1997-03-05|5-LOW|Clerk#000004526|0|ngside of the fluffily regular packages sleep furiously about the unusu| +78029|353375|O|212898.23|1998-06-19|5-LOW|Clerk#000003208|0|olites use quickly. fluffily regular asymptotes sleep bli| +78030|668632|F|3216.29|1992-03-15|3-MEDIUM|Clerk#000003992|0|uickly pending frays cajole furiously across the slyly stealthy packages.| +78031|443132|F|37911.52|1993-05-26|3-MEDIUM|Clerk#000000733|0|sual instructions. ruthlessly bold pinto beans haggle. slyly final reque| +78056|213664|O|233304.28|1997-10-23|4-NOT SPECIFIED|Clerk#000004609|0|uriously express requests wake accor| +78057|23011|O|61118.25|1995-07-26|2-HIGH|Clerk#000004647|0|quickly: furiously bold ideas doubt final, regular warthogs. deposits agai| +78058|478658|F|118154.99|1993-03-08|2-HIGH|Clerk#000002163|0|kages. blithely sly foxes haggle fluffily. special, bold deposit| +78059|295151|O|217620.62|1995-12-01|2-HIGH|Clerk#000003910|0|ges wake. carefully unusual reque| +78060|96130|O|262514.97|1998-04-21|3-MEDIUM|Clerk#000004331|0| the blithely regular requests wake carefully according to the carefully| +78061|141706|F|49628.20|1994-03-02|1-URGENT|Clerk#000003279|0| beans hinder special, final deposits. slyly| +78062|393160|O|361989.60|1996-04-13|4-NOT SPECIFIED|Clerk#000004865|0|ernes. ironic requests use furiously ironic deposits. express asympt| +78063|325747|F|54569.40|1994-04-18|2-HIGH|Clerk#000003406|0|l instructions. evenly reg| +78088|557368|O|205021.68|1997-08-24|5-LOW|Clerk#000004291|0|odolites sleep unusual deposits. quickl| +78089|164750|O|352270.05|1997-10-22|4-NOT SPECIFIED|Clerk#000003388|0|thely even pinto bean| +78090|697444|F|46073.69|1993-04-01|3-MEDIUM|Clerk#000001780|0|quickly ironic instructions cajole after the slyly | +78091|159446|F|260436.82|1992-09-23|5-LOW|Clerk#000004657|0|es use furiously along the regular, express accounts. regula| +78092|47141|F|132846.42|1994-01-28|3-MEDIUM|Clerk#000002464|0|rate quickly regular accounts-- furiously bold pinto beans sleep furiously sp| +78093|294334|O|45345.15|1995-05-12|5-LOW|Clerk#000001204|0|hely regular accounts detect furiously | +78094|604531|F|12259.86|1994-11-22|3-MEDIUM|Clerk#000004265|0|tes nag furiously express packages: blithely ironic requests integrate car| +78095|73867|F|67858.90|1994-06-20|5-LOW|Clerk#000001267|0|haggle according to the furiously even ideas. bol| +78120|212509|O|171005.24|1998-03-07|5-LOW|Clerk#000001335|0|ress accounts. blithely even platelets sublate fluffily. slyly ironic fox| +78121|119576|F|161711.22|1993-08-31|3-MEDIUM|Clerk#000004239|0|l packages are carefully fin| +78122|462973|O|75321.28|1998-01-19|4-NOT SPECIFIED|Clerk#000001770|0| slow instructions. pinto beans maintain f| +78123|678463|F|75914.44|1994-11-13|2-HIGH|Clerk#000001619|0|ronic dolphins? pending packages haggle| +78124|645697|O|302942.91|1997-06-07|3-MEDIUM|Clerk#000004322|0|quests. express instructions| +78125|478367|O|31491.03|1998-07-03|1-URGENT|Clerk#000004548|0|above the slyly even pinto beans. pending f| +78126|653227|F|29021.41|1992-03-25|2-HIGH|Clerk#000004963|0|y final packages doubt quickly alon| +78127|263771|O|36525.24|1996-09-14|1-URGENT|Clerk#000004444|0| ironic theodolites. furiously special tithes sl| +78152|684733|O|279126.35|1998-01-02|5-LOW|Clerk#000002550|0|r excuses. blithely regular packages are packages. silent | +78153|282313|F|15188.57|1993-09-20|3-MEDIUM|Clerk#000004711|0|ickly pending excuses sleep acro| +78154|317824|F|84362.30|1994-09-20|1-URGENT|Clerk#000002271|0|nal instructions wake quietly. slyly re| +78155|139978|F|68429.21|1992-06-19|2-HIGH|Clerk#000002633|0|counts cajole. instructions a| +78156|609835|F|163768.98|1993-12-06|1-URGENT|Clerk#000000882|0|r instructions are accounts. slyly express de| +78157|723827|O|86902.26|1996-05-18|4-NOT SPECIFIED|Clerk#000001675|0|e slyly along the bold, regu| +78158|355727|F|23812.54|1994-06-10|1-URGENT|Clerk#000000966|0|usly unusual accounts sleep. furiousl| +78159|443356|F|54256.88|1993-12-27|4-NOT SPECIFIED|Clerk#000004789|0|are slyly along the idly final| +78184|232159|F|221202.66|1993-10-13|5-LOW|Clerk#000000633|0|ss the quickly special foxes. blith| +78185|395108|O|194317.90|1996-04-19|4-NOT SPECIFIED|Clerk#000002206|0|ar requests use carefully. furiously final packages boost alongside of th| +78186|75263|F|203892.17|1993-05-27|2-HIGH|Clerk#000001689|0|ly after the carefully regular packages. regular requ| +78187|431461|F|209816.08|1992-02-10|2-HIGH|Clerk#000001365|0|endencies across the bold packages | +78188|563726|F|24247.84|1994-05-29|2-HIGH|Clerk#000001757|0|ely dogged packages unwind among the quickly pending requests. blithely bo| +78189|531653|O|106470.64|1996-05-14|3-MEDIUM|Clerk#000004667|0|ly special courts. blithely pending deposit| +78190|725686|O|194885.11|1995-11-12|3-MEDIUM|Clerk#000003158|0|sual excuses engage carefu| +78191|92443|F|113330.91|1992-07-21|5-LOW|Clerk#000000189|0|ickly final pinto beans nag blithely carefully fi| +78216|437807|O|217839.31|1998-01-12|1-URGENT|Clerk#000003200|0|r deposits; carefully express foxes amon| +78217|711481|F|197340.96|1994-04-02|1-URGENT|Clerk#000000664|0|instructions doubt. carefully bold f| +78218|587405|O|347137.57|1997-04-15|3-MEDIUM|Clerk#000000747|0|s are carefully aga| +78219|265156|F|86535.08|1992-02-02|3-MEDIUM|Clerk#000001036|0|lithely express accounts. quickly ironic sheaves according to the blithely | +78220|706103|O|206998.48|1998-04-27|4-NOT SPECIFIED|Clerk#000001179|0|sts cajole carefully above the pinto beans. care| +78221|206347|F|192975.42|1995-01-29|5-LOW|Clerk#000004040|0|ular, unusual accounts. stea| +78222|63440|F|61126.48|1993-04-30|4-NOT SPECIFIED|Clerk#000000312|0| even requests. express reques| +78223|470635|O|61165.99|1997-07-05|5-LOW|Clerk#000004169|0|yly bold courts. carefully idle foxes affix| +78248|448096|F|177710.72|1992-12-07|5-LOW|Clerk#000001586|0|ts. furiously unusual courts haggl| +78249|394390|F|91398.60|1992-05-01|1-URGENT|Clerk#000004818|0|ffily thin, special packages. silent pinto beans are carefully: quick| +78250|737362|O|176482.18|1995-11-02|5-LOW|Clerk#000001481|0|cording to the regular ideas sleep blithely against the fluffi| +78251|568066|O|121616.76|1998-07-11|4-NOT SPECIFIED|Clerk#000004829|0|ly final accounts wake slyly along the blithely ironi| +78252|715345|O|151952.80|1997-06-25|5-LOW|Clerk#000002868|0|inal theodolites. idle ideas shall sleep above the blithely| +78253|295721|F|17399.81|1994-05-24|2-HIGH|Clerk#000003561|0|ughout the blithely pending | +78254|666214|O|115930.54|1998-07-15|5-LOW|Clerk#000004737|0|nic accounts. fluffily regular packages wake furiously quickl| +78255|299047|F|172975.64|1994-03-26|2-HIGH|Clerk#000003183|0|along the pinto beans. slyly final requests should have to cajole careful| +78280|331141|F|211799.07|1992-08-26|5-LOW|Clerk#000003049|0|ng to the slyly unusual deposits. bold, | +78281|457063|O|77626.29|1997-07-05|4-NOT SPECIFIED|Clerk#000004997|0|tipliers haggle. sheaves lose slyly. ironic accounts along the evenl| +78282|335275|O|223377.64|1996-03-23|3-MEDIUM|Clerk#000004993|0|efully even requests-- pending, regula| +78283|207793|F|70335.28|1992-07-24|4-NOT SPECIFIED|Clerk#000004002|0|y brave packages. blithely ironic tithes after the carefully bold requests wak| +78284|354151|O|272027.80|1997-06-17|2-HIGH|Clerk#000004758|0|. blithely express packages after the req| +78285|185233|O|123098.67|1996-10-26|2-HIGH|Clerk#000002258|0|ely fluffily even packages. carefully even accounts aff| +78286|692198|O|275257.66|1996-03-03|2-HIGH|Clerk#000003433|0|pinto beans: quickly even pinto beans sleep. furi| +78287|517490|O|260600.67|1995-12-16|2-HIGH|Clerk#000002042|0|rnes. furiously final accounts doubt. pe| +78312|444884|O|225151.37|1997-10-22|1-URGENT|Clerk#000004344|0| grouches haggle idly special packages.| +78313|413632|O|81157.78|1997-08-20|2-HIGH|Clerk#000003768|0|ic warthogs. foxes cajole along the slyly pendi| +78314|137735|F|117305.55|1994-03-01|3-MEDIUM|Clerk#000003875|0|boost blithely. regular, final accounts alongside of the quickly | +78315|396329|O|118996.44|1997-04-07|5-LOW|Clerk#000004813|0|silent excuses haggle | +78316|350305|O|191193.86|1997-03-16|4-NOT SPECIFIED|Clerk#000000687|0|ests. final packages among the furiously expr| +78317|74872|O|47154.47|1997-05-28|4-NOT SPECIFIED|Clerk#000003657|0|nic theodolites nag slyly bold deposits. requests sleep ruthle| +78318|612547|F|329730.36|1993-11-09|5-LOW|Clerk#000001093|0|n warthogs according to the braids use carefully final accounts. requests affi| +78319|570466|O|141633.60|1997-08-11|1-URGENT|Clerk#000004912|0| deposits. enticing ideas use| +78344|560969|F|210924.48|1992-04-13|1-URGENT|Clerk#000003072|0|counts are ideas. blithely unusual sentiments integrate slyly. flu| +78345|701809|O|270814.02|1996-12-01|4-NOT SPECIFIED|Clerk#000004411|0|thely even pearls are slyly among the slyly final dolphins. bold ideas bo| +78346|34300|F|85658.60|1992-10-09|4-NOT SPECIFIED|Clerk#000004616|0| above the quickly regular deposits. ironic, permane| +78347|454987|O|167319.32|1997-08-09|3-MEDIUM|Clerk#000000620|0|y ruthless platelets unwind. iron| +78348|706708|O|105572.96|1998-01-16|1-URGENT|Clerk#000003347|0|s hinder closely ironic requests. sometimes bold instructions mold | +78349|635732|O|41979.77|1998-05-29|2-HIGH|Clerk#000004844|0| theodolites. furiou| +78350|233548|F|158325.56|1994-05-04|2-HIGH|Clerk#000000614|0|thily through the special pac| +78351|483061|O|139978.90|1995-07-05|1-URGENT|Clerk#000000715|0|ronic ideas nag blithely foxes! pending requests wake | +78376|24145|O|92433.05|1998-05-31|5-LOW|Clerk#000003497|0|eans sleep carefully across the s| +78377|50455|F|151962.59|1993-10-25|3-MEDIUM|Clerk#000004960|0|uffily even packages | +78378|495718|F|237429.99|1993-01-14|2-HIGH|Clerk#000001139|0|ular dependencies. bravely dogged instructions are bold foxes. de| +78379|503995|O|337427.49|1997-10-21|1-URGENT|Clerk#000003715|0|he accounts wake fluffily foxes. evenly express foxes are quickly fluffily sp| +78380|136786|O|192234.32|1997-09-15|2-HIGH|Clerk#000001674|0|haggle slyly regular, bold packages. carefully regular packages shall have t| +78381|194389|O|132196.78|1996-07-08|4-NOT SPECIFIED|Clerk#000000602|0|kly special deposits. regular dugouts sleep. quickly even packages wake bo| +78382|84379|O|84136.28|1996-03-25|5-LOW|Clerk#000003972|0|tes cajole carefully fluffily final pinto| +78383|639014|F|93389.08|1993-04-12|5-LOW|Clerk#000004344|0|o beans are carefully alongside of t| +78408|654157|O|65220.12|1995-09-03|1-URGENT|Clerk#000002994|0|nal packages detect quickly. slyly bold | +78409|154156|O|227769.96|1998-05-07|3-MEDIUM|Clerk#000001349|0| pinto beans. slyly pending accounts af| +78410|378620|O|302092.09|1996-12-20|5-LOW|Clerk#000001538|0| regular, special accounts us| +78411|453701|O|278739.90|1996-01-28|4-NOT SPECIFIED|Clerk#000004860|0|s instructions wake| +78412|102436|O|56130.75|1996-04-24|3-MEDIUM|Clerk#000002006|0| final accounts. carefully expr| +78413|391720|O|215898.75|1995-08-01|1-URGENT|Clerk#000001436|0|ep furiously unusual requests. fluffily even deposits| +78414|105415|F|21389.28|1994-01-24|3-MEDIUM|Clerk#000003983|0|after the express, bold ideas sleep about the ironic theodolites. quickly pend| +78415|196330|F|54249.54|1993-05-06|5-LOW|Clerk#000001317|0|its use blithely alongside of the silently stealthy dep| +78440|451508|F|74414.75|1994-06-29|4-NOT SPECIFIED|Clerk#000004144|0|ithely silent instructions. carefully express no| +78441|735653|F|76942.04|1993-03-07|2-HIGH|Clerk#000000157|0|furiously daring, regular instructions. | +78442|361306|O|259555.36|1998-04-02|3-MEDIUM|Clerk#000001283|0|uietly quickly unusual accounts. packages nag| +78443|442060|O|91512.75|1995-08-06|4-NOT SPECIFIED|Clerk#000002366|0|ests wake. quickly bold deposits haggle blithely along the regular ideas| +78444|170656|O|144621.41|1996-04-26|3-MEDIUM|Clerk#000003683|0|zle. regular, final requests boost quickly.| +78445|194887|O|250356.91|1997-08-23|5-LOW|Clerk#000002273|0|jole blithely. accounts along the carefully special requests cajole fluffily b| +78446|212704|O|190487.70|1995-09-29|1-URGENT|Clerk#000000117|0|es cajole blithely. carefully special| +78447|412552|F|212129.01|1994-06-26|1-URGENT|Clerk#000004803|0|iously boldly even pinto beans. fluffily regular pattern| +78472|730601|F|161567.57|1994-10-09|1-URGENT|Clerk#000000810|0|e carefully unusual packages haggle blithely across the carefully idle theod| +78473|201295|O|44084.69|1996-11-25|5-LOW|Clerk#000001187|0|since the furiously silent accounts? fin| +78474|658642|F|50201.11|1994-10-22|3-MEDIUM|Clerk#000003145|0|ccounts. furiously even t| +78475|541385|O|237403.88|1998-01-08|1-URGENT|Clerk#000003466|0|lar foxes about the fluffily pending dolphins use slyly carefully ironic sh| +78476|51971|O|30027.36|1996-04-08|5-LOW|Clerk#000001925|0|nticingly even packages. fluffily final wat| +78477|462460|F|44293.07|1994-07-16|4-NOT SPECIFIED|Clerk#000002461|0|packages cajole furiously. dependencies ab| +78478|310097|O|182631.34|1998-04-05|2-HIGH|Clerk#000004707|0|uriously about the unusual deposits. unusual ideas haggle above the expres| +78479|42430|O|212509.85|1997-06-25|1-URGENT|Clerk#000004035|0|ress requests sleep silen| +78504|608888|O|46948.74|1997-05-18|2-HIGH|Clerk#000004032|0|above the furiously final dinos are fu| +78505|577216|O|67637.09|1996-04-27|1-URGENT|Clerk#000002678|0|sts detect silently. ironic sheaves under the ironic epitaphs integra| +78506|746194|O|244272.55|1996-01-09|4-NOT SPECIFIED|Clerk#000000405|0|eans. final, pending excuses sleep against | +78507|509324|F|84970.81|1994-07-07|1-URGENT|Clerk#000000978|0|usly unusual instructions. blithely unusual accounts hinder about the furious| +78508|450877|F|169697.60|1994-10-22|1-URGENT|Clerk#000004631|0|efully unusual pinto bean| +78509|626782|F|326529.37|1993-06-15|4-NOT SPECIFIED|Clerk#000004526|0|kages. even, ironic accounts sleep. furiously final excuses above the slyl| +78510|574882|O|83232.74|1997-11-21|1-URGENT|Clerk#000004299|0|aggle according to the furiously bold| +78511|515269|P|181061.58|1995-03-14|2-HIGH|Clerk#000001564|0| accounts are quickly regula| +78536|615979|F|70590.01|1992-04-04|1-URGENT|Clerk#000004465|0|totes. fluffily special accounts haggle | +78537|504325|P|154275.39|1995-04-19|4-NOT SPECIFIED|Clerk#000000540|0| regular, unusual pinto beans. busily final accounts s| +78538|435820|F|78186.36|1994-09-01|3-MEDIUM|Clerk#000004069|0|riously ironic pinto beans. furiously fin| +78539|320978|F|251761.86|1992-06-19|3-MEDIUM|Clerk#000002624|0|y even accounts. pending, regular packages sleep. regular, unu| +78540|669809|O|60203.64|1996-08-03|1-URGENT|Clerk#000002559|0|uickly express requests among| +78541|723589|F|186772.08|1992-07-03|2-HIGH|Clerk#000002768|0|lly even accounts cajole after the carefull| +78542|82100|O|144869.50|1997-12-04|2-HIGH|Clerk#000002689|0|nding dolphins wake quickly| +78543|603787|O|107693.63|1997-01-14|4-NOT SPECIFIED|Clerk#000002979|0|. regular platelets sleep again| +78568|346558|O|66209.91|1997-10-08|4-NOT SPECIFIED|Clerk#000003486|0|ven packages thrash quickly furiously final package| +78569|87811|F|264500.24|1993-10-20|1-URGENT|Clerk#000003068|0|ggle against the final, express theodolites. slyly s| +78570|561686|O|166828.78|1996-11-24|5-LOW|Clerk#000002942|0|are. carefully express requests sleep| +78571|745741|O|196698.51|1996-05-16|4-NOT SPECIFIED|Clerk#000003389|0|ges. blithely bold theodolites are blithely regular | +78572|385517|O|264278.37|1995-12-02|1-URGENT|Clerk#000002511|0|e furiously bold instructions; carefully ironic accounts detect qu| +78573|123766|F|68458.57|1993-11-15|3-MEDIUM|Clerk#000004882|0|elets. slyly final theodoli| +78574|381538|F|95122.67|1993-11-02|3-MEDIUM|Clerk#000004991|0|y for the slyly final asymptotes. special pinto beans are after the fluff| +78575|725672|F|178594.80|1994-02-04|5-LOW|Clerk#000000571|0|lent multipliers haggle above the fluffily re| +78600|609496|F|256178.21|1994-02-01|3-MEDIUM|Clerk#000004083|0|blithely alongside of the car| +78601|281312|F|39645.48|1993-10-03|4-NOT SPECIFIED|Clerk#000002977|0|phins. bold, special foxes wake slyly blithely even deposits. daringly expres| +78602|746869|F|199146.93|1993-01-05|4-NOT SPECIFIED|Clerk#000003136|0|silent accounts sleep slyly against the even, stealthy instru| +78603|595555|O|5972.86|1996-04-26|2-HIGH|Clerk#000004803|0|ests wake. furiously silent requests use slyly against the idly even | +78604|714718|F|256772.89|1992-04-12|4-NOT SPECIFIED|Clerk#000002416|0|ntegrate quickly. slyly pending pinto beans wake even grouche| +78605|245401|O|264962.13|1997-01-15|1-URGENT|Clerk#000004785|0|iously ironic deposits. blithely special accounts are at the blithely pe| +78606|196868|F|48685.61|1994-04-21|2-HIGH|Clerk#000000085|0| accounts haggle carefully around| +78607|494575|O|382322.24|1996-07-22|3-MEDIUM|Clerk#000000457|0| accounts would sleep quickly even requests. dependencies | +78632|52763|F|244564.44|1992-09-08|5-LOW|Clerk#000003420|0|ly according to the bold tithes. accounts wake| +78633|281395|F|128092.78|1994-11-08|2-HIGH|Clerk#000001331|0|venly pending courts! final, pending accounts haggle slyly along the quickly| +78634|646804|F|242330.02|1994-12-06|4-NOT SPECIFIED|Clerk#000001610|0|packages poach fluffily a| +78635|318755|F|9007.20|1994-06-05|4-NOT SPECIFIED|Clerk#000001381|0| quickly slyly special accounts.| +78636|50021|O|78736.81|1998-07-15|5-LOW|Clerk#000002577|0|sly about the pending deposits. carefully special instr| +78637|693761|O|293260.62|1997-07-08|1-URGENT|Clerk#000000562|0|sleep fluffily! blithely pending theodolites are blithe| +78638|536884|O|203005.62|1996-01-25|2-HIGH|Clerk#000002279|0|across the quickly special asymptotes.| +78639|154810|O|223697.59|1995-08-07|1-URGENT|Clerk#000001411|0|ctions haggle caref| +78664|123205|P|258410.60|1995-03-14|1-URGENT|Clerk#000003918|0| carefully regular instr| +78665|698476|F|216035.38|1993-12-14|3-MEDIUM|Clerk#000002125|0|egular pinto beans sleep blithely. carefully final asymptote| +78666|281926|F|184339.72|1992-02-09|1-URGENT|Clerk#000003988|0| bold deposits haggle slowly among the slyly even foxes. caref| +78667|559496|F|162372.18|1994-08-11|3-MEDIUM|Clerk#000002060|0|gs wake. carefully regu| +78668|696505|F|96094.10|1994-11-29|3-MEDIUM|Clerk#000000986|0|aggle above the pains| +78669|157753|F|59747.62|1993-06-20|5-LOW|Clerk#000000711|0|luffily regular accounts. quickly pending packages w| +78670|89947|F|61653.31|1992-04-20|5-LOW|Clerk#000003856|0|n quickly quickly final accounts. regular requests sleep | +78671|465151|F|20804.09|1993-05-18|2-HIGH|Clerk#000002482|0|ular requests wake furiously above the express deposits. p| +78696|533077|F|280080.80|1994-06-07|5-LOW|Clerk#000003712|0|ckages. fluffily unusual foxes are in place of the final gifts| +78697|673285|O|24393.37|1996-05-29|2-HIGH|Clerk#000001213|0|e slyly ironic excuses. fluffily | +78698|624640|O|91658.43|1996-07-28|4-NOT SPECIFIED|Clerk#000001283|0|press foxes sleep alo| +78699|566782|F|356206.71|1992-06-25|4-NOT SPECIFIED|Clerk#000000353|0|furiously ironic platelets: blithely unusual packag| +78700|133472|F|162814.11|1994-05-18|3-MEDIUM|Clerk#000001546|0| platelets cajole carefully blithely even| +78701|12857|O|221885.84|1995-12-01|2-HIGH|Clerk#000001619|0|nusual courts cajole carefully slyly reg| +78702|80513|O|99600.39|1996-03-07|1-URGENT|Clerk#000002389|0|regular requests. slyly fi| +78703|168995|P|57142.94|1995-05-10|4-NOT SPECIFIED|Clerk#000003399|0| haggle. furious deposits | +78728|38336|F|74426.80|1992-03-22|5-LOW|Clerk#000002892|0|ar ideas. carefully final d| +78729|53452|F|219032.53|1994-02-23|4-NOT SPECIFIED|Clerk#000003275|0| busy packages are slyly about the final accounts. ironic, ironic foxes c| +78730|592555|F|253753.25|1993-12-19|5-LOW|Clerk#000003715|0|lyly express requests; even, even pa| +78731|556675|O|109802.70|1996-03-27|3-MEDIUM|Clerk#000004602|0|ly even dependencies whithout th| +78732|534334|O|77739.42|1996-07-25|5-LOW|Clerk#000001780|0|y across the quickly final requests. ironic, bo| +78733|26800|F|211503.37|1994-07-25|2-HIGH|Clerk#000001259|0|he bold deposits. slyly regular deposit| +78734|403471|F|135911.96|1993-12-16|4-NOT SPECIFIED|Clerk#000002877|0|le. ironic, ironic requests are above the carefully regular asymptotes. expre| +78735|360683|F|194398.70|1994-10-15|1-URGENT|Clerk#000003183|0|e final accounts. slyly silent foxes might are. slyly fina| +78760|494149|F|303063.15|1993-05-17|2-HIGH|Clerk#000002118|0|enticingly express reque| +78761|406151|O|188055.09|1997-01-12|3-MEDIUM|Clerk#000003751|0| wake furiously across the carefully final packages: s| +78762|424957|F|121863.45|1992-05-12|1-URGENT|Clerk#000003882|0|equests nag furiously quick ideas. final requests alongside of the unusual,| +78763|735967|F|16554.59|1993-07-28|3-MEDIUM|Clerk#000002549|0|e blithely even instructions. ironic, unusual pinto beans cajole | +78764|379378|F|229420.24|1992-03-15|2-HIGH|Clerk#000001130|0|nts wake quickly regular pinto beans. ironic requests wake sly| +78765|427822|F|224800.16|1995-02-17|2-HIGH|Clerk#000000120|0| pinto beans. furiously pending fox| +78766|152822|F|251643.83|1993-10-14|5-LOW|Clerk#000001147|0|ly between the excuses. carefully express theodolit| +78767|469051|O|290852.13|1998-04-11|3-MEDIUM|Clerk#000003138|0|nto beans around the accounts cajole acc| +78792|63209|F|40868.57|1993-07-16|5-LOW|Clerk#000000658|0|efully pending instructions. carefully b| +78793|336874|F|164408.46|1992-05-07|3-MEDIUM|Clerk#000004488|0| quickly express ideas doubt furiously excep| +78794|70339|F|81203.01|1994-09-08|4-NOT SPECIFIED|Clerk#000004990|0|es. even requests sublate carefully after the ironic, pending packages. busi| +78795|181501|F|7348.85|1993-12-03|1-URGENT|Clerk#000000937|0|ggle. regular, bold accounts affix blithely somas. slyly even ideas| +78796|216571|F|180004.65|1992-11-01|2-HIGH|Clerk#000002627|0|ly express ideas across the blithely express requests wak| +78797|137788|O|129313.19|1996-03-17|1-URGENT|Clerk#000003917|0| instructions about the pend| +78798|549242|O|59027.95|1996-06-22|4-NOT SPECIFIED|Clerk#000004495|0|structions. furiously even pac| +78799|101848|F|257007.54|1994-12-27|1-URGENT|Clerk#000002362|0|d ideas. regular reques| +78824|249683|O|260663.15|1995-06-19|1-URGENT|Clerk#000004065|0|sts. furiously regular depe| +78825|160967|F|219669.28|1993-11-29|1-URGENT|Clerk#000004646|0|nding foxes. ironic epitaphs alongside of the ironic | +78826|111112|F|238936.14|1992-10-03|2-HIGH|Clerk#000000585|0|mptotes sleep carefully quickly regular packages. regular requests according| +78827|694378|O|289881.71|1997-05-24|4-NOT SPECIFIED|Clerk#000003729|0|ies. pending theodolites wake; slyly express pe| +78828|395092|F|52839.47|1992-10-30|4-NOT SPECIFIED|Clerk#000003133|0|accounts wake slyly above t| +78829|548956|F|188885.47|1992-10-27|1-URGENT|Clerk#000004291|0|ans are slyly above the waters. quiet, special accounts grow furi| +78830|522736|O|128428.90|1996-08-28|5-LOW|Clerk#000004354|0|inst the unusual foxes sleep unusual packages. ironic accounts use car| +78831|106727|O|50306.30|1997-07-05|5-LOW|Clerk#000004351|0|ic instructions sleep fluffily abov| +78856|503408|O|58612.75|1998-03-30|5-LOW|Clerk#000000150|0|ay slyly. blithely ironic pinto beans boost about the iro| +78857|11561|O|121642.17|1996-11-09|2-HIGH|Clerk#000001046|0|the regularly unusual foxes are quickly quickly final excuses; furiously ironi| +78858|43111|O|371019.38|1996-10-28|2-HIGH|Clerk#000004997|0|across the accounts. furiously final accounts haggle before | +78859|39394|F|68019.32|1993-06-01|1-URGENT|Clerk#000004043|0|nooze slyly. ironically express requests| +78860|562367|F|209790.85|1993-05-16|3-MEDIUM|Clerk#000003849|0| furiously blithely unusual asympto| +78861|197621|F|111034.23|1992-08-31|5-LOW|Clerk#000001697|0| are carefully alongside of the requests. blithely speci| +78862|416137|F|15649.06|1993-12-28|5-LOW|Clerk#000003682|0|might affix. final deposits along the qui| +78863|261133|O|258175.40|1998-06-11|2-HIGH|Clerk#000002511|0|s packages wake slyly. ironic attainments nag slyly. bold deposits are care| +78888|591185|F|168540.83|1994-04-18|3-MEDIUM|Clerk#000004088|0|platelets are about | +78889|39637|O|139080.21|1995-08-13|5-LOW|Clerk#000000617|0|ular requests. blithely permanent packages boost. reque| +78890|160916|O|55727.59|1997-06-16|3-MEDIUM|Clerk#000002741|0|the carefully pending dolphins. fluffily e| +78891|748436|O|4629.92|1997-05-17|3-MEDIUM|Clerk#000004628|0|urts haggle furiously across the unusu| +78892|711488|O|164761.28|1998-02-09|1-URGENT|Clerk#000003783|0|hely. slyly ironic wartho| +78893|726145|F|76835.23|1992-06-25|1-URGENT|Clerk#000003305|0|accounts cajole carefully-- pending dependencies haggle. quick, pending ideas | +78894|285526|O|164120.08|1996-03-15|1-URGENT|Clerk#000003598|0|g requests according| +78895|321649|F|155584.54|1993-10-15|3-MEDIUM|Clerk#000000675|0| sleep slyly slyly pending patterns. regular accou| +78920|697235|F|196838.20|1993-08-15|4-NOT SPECIFIED|Clerk#000004218|0|e final platelets. daringly pending sentim| +78921|428257|F|280632.21|1993-02-21|3-MEDIUM|Clerk#000000388|0| sleep slyly. carefully express platelets| +78922|710131|O|39267.24|1995-10-10|5-LOW|Clerk#000000409|0|olphins. special deposits sleep across the carefully final requests. quic| +78923|408008|F|180379.05|1994-01-19|4-NOT SPECIFIED|Clerk#000004673|0|packages mold aroun| +78924|129226|O|211259.59|1995-11-23|5-LOW|Clerk#000002574|0| across the unusual, ironic deposits. furiously pending ex| +78925|624748|F|52995.74|1993-04-02|2-HIGH|Clerk#000001677|0|ing to the slyly express packages. regular asymptotes across the | +78926|119032|O|212840.74|1996-08-05|2-HIGH|Clerk#000003689|0|nts use evenly blithely express deposits. special, final accounts th| +78927|306673|F|203602.19|1994-10-09|1-URGENT|Clerk#000004765|0| furiously along the furiously final forges. furiously final requests| +78952|239749|O|127546.25|1997-05-31|2-HIGH|Clerk#000002120|0|ites haggle carefully even accounts: pending, pending a| +78953|438904|O|274748.60|1998-02-09|3-MEDIUM|Clerk#000000721|0|l deposits use alongside of the blithely ironic platelets. ironic, ir| +78954|408851|O|209744.69|1995-08-30|2-HIGH|Clerk#000000137|0|ys even orbits wake furiously. even req| +78955|45544|F|263962.21|1994-07-07|4-NOT SPECIFIED|Clerk#000002760|0|ove the furiously even instructions. carefully special package| +78956|452389|O|151266.53|1996-07-15|1-URGENT|Clerk#000001861|0|ly quiet packages after the quickl| +78957|550406|F|77237.58|1993-04-17|4-NOT SPECIFIED|Clerk#000004388|0|ke furiously. furiously even packag| +78958|173539|F|172045.03|1994-03-17|4-NOT SPECIFIED|Clerk#000001206|0|hely final Tiresias wake according to the furiously final dolphins. pa| +78959|663391|O|109668.81|1998-01-20|3-MEDIUM|Clerk#000003421|0|tions according to the slyly regular deposits nag quickly abo| +78984|97577|O|20885.34|1996-07-17|4-NOT SPECIFIED|Clerk#000003617|0| cajole about the furiously expre| +78985|466067|F|255082.13|1995-02-16|2-HIGH|Clerk#000002411|0|ly final packages according to the furiou| +78986|187363|F|77132.56|1994-06-14|1-URGENT|Clerk#000000746|0|ly regular requests. slyly ex| +78987|483832|F|34876.51|1993-11-23|2-HIGH|Clerk#000004590|0|uests sleep slyly blithely bold accounts: deposits according to the| +78988|261373|F|170414.86|1992-05-06|1-URGENT|Clerk#000001878|0|gular forges use. slyly regular accounts wake alongside of the pendin| +78989|138203|O|270709.95|1996-02-09|1-URGENT|Clerk#000002908|0|packages boost carefully even deposits. doggedly regular do| +78990|12770|O|15964.40|1995-09-18|3-MEDIUM|Clerk#000000031|0|accounts haggle blithely ironic deposits. final ideas wake slyly.| +78991|111925|F|145268.55|1993-10-01|4-NOT SPECIFIED|Clerk#000004390|0|ses boost carefully according to the furiously unusual fox| +79016|96317|O|92205.56|1995-08-04|2-HIGH|Clerk#000001079|0|fter the blithely sly dependencies. fluffily regular requests n| +79017|283147|O|300673.72|1995-06-27|3-MEDIUM|Clerk#000003554|0|ffily final requests along the| +79018|76135|F|113899.42|1992-03-10|5-LOW|Clerk#000002686|0|according to the theodolites. ironic excuses poach about the fluffil| +79019|68332|O|41389.51|1996-09-06|2-HIGH|Clerk#000003912|0|nstructions kindle bli| +79020|186458|F|322392.83|1994-01-12|4-NOT SPECIFIED|Clerk#000004645|0|y among the even, silent foxes. unusual, express foxes by the quickly | +79021|288518|F|281505.54|1994-12-13|2-HIGH|Clerk#000004140|0|y regular asymptotes affix above the pint| +79022|358421|O|193622.00|1997-09-16|2-HIGH|Clerk#000004532|0|rts. furiously express instructions hag| +79023|730276|O|31400.22|1998-04-06|5-LOW|Clerk#000000772|0| regular theodolites. sometimes | +79048|743858|O|26085.44|1997-07-13|4-NOT SPECIFIED|Clerk#000000636|0|egrate quickly bold packages. requests cajole. unusual, pending package| +79049|267442|O|37892.60|1998-02-13|2-HIGH|Clerk#000004459|0|oxes about the fluffily ironic frays snooze blithely flu| +79050|121744|O|125470.66|1997-03-07|2-HIGH|Clerk#000000086|0|re. carefully final deposits haggle slyly stealthily permanent dep| +79051|143879|O|110942.50|1997-01-07|4-NOT SPECIFIED|Clerk#000002667|0|bove the carefully spe| +79052|159071|O|72062.19|1998-01-15|5-LOW|Clerk#000003328|0|g carefully according to| +79053|504043|F|58353.68|1993-07-21|3-MEDIUM|Clerk#000004448|0|ly. warhorses will hinder furiously ironic, furious ac| +79054|172919|F|62923.90|1993-02-03|3-MEDIUM|Clerk#000000834|0|es. daring pinto beans up the silent accounts are blithely after the b| +79055|737710|F|214096.11|1992-07-13|4-NOT SPECIFIED|Clerk#000001239|0| deposits. fluffily unusual foxes sleep. special, bold deposits above t| +79080|433276|O|47164.25|1997-10-04|3-MEDIUM|Clerk#000003240|0| even foxes. ironic pinto beans integr| +79081|304153|F|165614.92|1994-12-04|1-URGENT|Clerk#000004479|0|ckages. deposits affix quickly ironic deposits. carefully ironic d| +79082|641662|O|37521.53|1996-04-11|4-NOT SPECIFIED|Clerk#000004756|0|ke dependencies. slyly final dolphins across the carefully final depend| +79083|142805|O|221118.26|1997-06-19|4-NOT SPECIFIED|Clerk#000003940|0|l pinto beans. bravely regular ideas cajole blithely regular dinos? deposit| +79084|107423|O|145512.01|1997-06-09|4-NOT SPECIFIED|Clerk#000004439|0|ges. furiously stealthy deposits nag after the blithely even deposits. pending| +79085|208201|P|101586.79|1995-06-07|3-MEDIUM|Clerk#000000073|0|lly furiously unusual d| +79086|468689|O|42824.53|1996-11-14|5-LOW|Clerk#000001560|0|e. blithely regular instructions| +79087|5365|F|211107.35|1992-07-31|3-MEDIUM|Clerk#000002983|0|hely brave theodolites. furiously regular theodolites are slyly. unusual pi| +79112|142717|O|171304.00|1995-08-17|4-NOT SPECIFIED|Clerk#000000240|0| packages mold. pending deposits cajole furiously furiously express epit| +79113|132802|F|118930.63|1994-01-06|4-NOT SPECIFIED|Clerk#000004940|0| silent sauternes against the daring| +79114|719888|F|266234.27|1992-10-27|4-NOT SPECIFIED|Clerk#000000010|0|, pending deposits. furiously final somas wake qui| +79115|141796|O|47679.69|1995-07-31|1-URGENT|Clerk#000000271|0|ickly silent deposits. pinto beans use carefully alongside of the express| +79116|408796|F|250314.57|1993-11-23|5-LOW|Clerk#000004741|0|ress pinto beans sleep silently furiously regular | +79117|604954|F|108640.68|1994-12-21|2-HIGH|Clerk#000003898|0| sleep around the permanently special packages. slyly pending pac| +79118|445051|O|173848.97|1995-08-23|2-HIGH|Clerk#000002187|0|ests integrate carefully. special, special packages| +79119|202673|F|43517.90|1994-05-29|1-URGENT|Clerk#000003313|0|s. carefully express requests | +79144|568723|F|21159.63|1993-11-03|5-LOW|Clerk#000000451|0| pending foxes sleep slyly according to the slyly fin| +79145|498073|F|350857.86|1994-01-07|2-HIGH|Clerk#000003371|0|ously. quickly regular pinto beans are against the furiously unus| +79146|339907|O|351766.78|1998-05-16|4-NOT SPECIFIED|Clerk#000004030|0|fully instructions. carefully ironic | +79147|38240|O|148323.98|1996-02-07|1-URGENT|Clerk#000003493|0|fix around the even packages. theodolites breach quickly above the slyly | +79148|698243|F|81258.63|1992-10-06|4-NOT SPECIFIED|Clerk#000004281|0|ar foxes. blithely even foxes sleep quickly ironic packages. even, regular pi| +79149|113362|O|322749.63|1996-08-24|3-MEDIUM|Clerk#000002622|0|eans among the special requests lose pending | +79150|266080|P|99114.20|1995-05-07|4-NOT SPECIFIED|Clerk#000004755|0|nently final packages. regular requests use. even somas across the furious| +79151|495650|O|144560.60|1996-01-15|2-HIGH|Clerk#000003817|0| deposits maintain furiously. furiously even frays across the car| +79176|134488|O|187504.02|1995-10-24|3-MEDIUM|Clerk#000000967|0|he slyly express platelets haggle fluffily rut| +79177|576956|O|125853.22|1996-08-28|1-URGENT|Clerk#000003367|0|fully final instructions. fluffily bold deposits wake caref| +79178|142286|F|167329.38|1992-11-24|1-URGENT|Clerk#000004907|0|nusual foxes. fluffily silent foxes sleep blithely carefully ironic de| +79179|393559|F|15020.92|1993-11-11|3-MEDIUM|Clerk#000001225|0|tructions cajole toward the thinly pending pinto beans. blithely unusu| +79180|265073|F|165059.43|1993-11-02|5-LOW|Clerk#000002627|0|y quick requests. furiously even platelets are quickly furiously regular | +79181|75268|F|28758.99|1993-11-05|3-MEDIUM|Clerk#000002965|0| theodolites. regular request| +79182|501118|F|94404.49|1994-08-31|2-HIGH|Clerk#000001893|0|blithely bold packages print| +79183|532925|P|243537.52|1995-05-11|5-LOW|Clerk#000003767|0|ously final courts. slyly final| +79208|357922|F|150255.07|1993-06-25|4-NOT SPECIFIED|Clerk#000004153|0|y. carefully even accounts are quickly according to the platelets. iro| +79209|576523|O|237235.75|1997-09-05|4-NOT SPECIFIED|Clerk#000000878|0|regular deposits sleep fluffily express instr| +79210|354049|O|180694.54|1996-08-26|3-MEDIUM|Clerk#000004707|0|t blithely against the final accounts: ironic dolphins nag. express, pending | +79211|729305|O|330346.59|1997-11-03|4-NOT SPECIFIED|Clerk#000003793|0|ccording to the pending dependencies. special requests mold idly.| +79212|170326|F|250545.87|1992-05-15|2-HIGH|Clerk#000001598|0|se furiously around the deposits. even accounts nag. expr| +79213|653102|F|102576.46|1992-09-11|4-NOT SPECIFIED|Clerk#000001013|0|uests. slyly ironic pinto| +79214|422992|O|153858.76|1997-08-15|5-LOW|Clerk#000004479|0|indle carefully blithely p| +79215|706550|O|69394.50|1996-08-27|1-URGENT|Clerk#000000121|0| ideas wake carefully slyly ironic foxes. silent p| +79240|220712|O|289130.96|1996-06-28|1-URGENT|Clerk#000001716|0|sts wake blithely final de| +79241|749005|O|28093.73|1997-04-22|5-LOW|Clerk#000001395|0|y regular instructions cajole. accounts | +79242|519956|F|222608.05|1992-05-21|1-URGENT|Clerk#000004655|0|jole slyly. even deposits are among the ideas. foxes wake furiou| +79243|648523|O|252069.02|1995-12-12|3-MEDIUM|Clerk#000002797|0|final theodolites thrash af| +79244|716306|F|153751.70|1993-04-21|5-LOW|Clerk#000003898|0|close dependencies sleep slyly ironic, silent pinto beans. furio| +79245|701507|F|167112.08|1994-11-02|5-LOW|Clerk#000000024|0|ly express packages. carefully| +79246|215371|F|107235.61|1994-11-15|4-NOT SPECIFIED|Clerk#000004953|0|cial requests use express accounts-- blithely final grouch| +79247|231127|O|246196.44|1997-02-01|2-HIGH|Clerk#000003583|0|breach carefully above the even, r| +79272|290866|O|168003.82|1995-12-18|5-LOW|Clerk#000002888|0|ing to the gifts: furiously silent pinto beans are carefully regula| +79273|78838|O|181007.80|1997-03-06|2-HIGH|Clerk#000001838|0|press accounts cajole blithely regular orbits. quickly fin| +79274|528592|F|53120.59|1992-10-29|4-NOT SPECIFIED|Clerk#000000985|0|ly unusual sentiments; furious| +79275|279973|F|53896.03|1994-07-14|5-LOW|Clerk#000000679|0|pinto beans solve fluffily after the boldly silent depos| +79276|746428|F|112815.57|1992-06-19|3-MEDIUM|Clerk#000002625|0| fluffily ironic waters across the fluffily regular accou| +79277|702688|F|251605.54|1992-02-13|5-LOW|Clerk#000000435|0|ously regularly special deposits. express platelets snooze | +79278|554659|O|119855.16|1997-01-13|3-MEDIUM|Clerk#000000354|0|. ironic realms sublate along the furiously even| +79279|402002|O|87144.55|1998-07-26|4-NOT SPECIFIED|Clerk#000002158|0|l decoys. furiously final deposits haggle. final requests ab| +79304|445751|O|83310.10|1997-05-25|1-URGENT|Clerk#000001487|0|cies according to the final accounts boost never furiously unusu| +79305|734443|O|352684.76|1997-11-10|3-MEDIUM|Clerk#000002776|0|. slyly final escapades affix fluffily across the special, ironic depos| +79306|265766|O|161326.69|1995-08-02|4-NOT SPECIFIED|Clerk#000000148|0|e about the special excuses. regular requests sleep. furiously ironic co| +79307|466474|P|233594.62|1995-04-27|5-LOW|Clerk#000000296|0|lets. fluffily bold packages boost slyly unusual platelets. ca| +79308|246604|O|64901.17|1998-01-17|1-URGENT|Clerk#000003534|0| carefully alongside of the ev| +79309|140837|O|59070.25|1998-03-18|2-HIGH|Clerk#000004492|0|ans cajole slyly ironic requests; slyly ironic instruct| +79310|43586|F|114709.27|1994-07-18|4-NOT SPECIFIED|Clerk#000000911|0|requests. quickly pending requests haggle carefully alongside| +79311|546344|O|162179.30|1998-03-30|1-URGENT|Clerk#000004233|0|ual accounts. quickly pending pinto beans affix. sp| +79336|137665|O|120570.59|1995-12-12|4-NOT SPECIFIED|Clerk#000000015|0|uickly unusual packages. fluffy excuses along the blithely final reque| +79337|729218|F|165745.15|1993-02-08|2-HIGH|Clerk#000002409|0|o sleep until the care| +79338|211880|F|1002.58|1994-11-27|2-HIGH|Clerk#000002948|0|ions cajole ironic accounts. blithely ironic sauternes sl| +79339|53398|O|70018.39|1996-11-20|1-URGENT|Clerk#000002565|0|slyly unusual packages wake fluffily express packages? reg| +79340|432299|F|244042.13|1993-09-24|1-URGENT|Clerk#000004062|0|into beans. final, daring instructions sleep| +79341|389803|O|143470.96|1996-09-07|1-URGENT|Clerk#000000488|0|luffy, brave deposits cajole furiously unusual re| +79342|162829|F|73438.29|1994-09-13|5-LOW|Clerk#000001737|0|, unusual packages:| +79343|649894|O|86357.16|1996-03-24|4-NOT SPECIFIED|Clerk#000001700|0|ithely along the even packages. blithely special accounts sleep quickly. iro| +79368|493964|F|98319.16|1992-03-26|4-NOT SPECIFIED|Clerk#000001654|0|owly bold accounts. even, final accounts sl| +79369|288818|F|87579.89|1994-10-18|4-NOT SPECIFIED|Clerk#000003273|0|posits. regular, special requests among the slyly ironic ins| +79370|161255|O|263667.08|1996-09-17|1-URGENT|Clerk#000001704|0|ly along the dependencies. special, regular deposits wake carefully against t| +79371|446675|O|17589.23|1995-06-05|1-URGENT|Clerk#000002117|0|ld accounts up the carefully regular requests det| +79372|507355|F|174500.15|1992-08-14|5-LOW|Clerk#000000864|0|asymptotes. blithely express orbits cajole along the furiously even ideas. | +79373|360338|O|229082.39|1996-08-28|5-LOW|Clerk#000000321|0|ackages. carefully express requests detect quickly alongside of the idly e| +79374|690877|F|373264.12|1992-07-23|5-LOW|Clerk#000003917|0|d frays haggle fluffily alongside of the carefu| +79375|57400|O|45007.16|1996-03-09|5-LOW|Clerk#000002494|0|detect blithely. slyly bold platel| +79400|189536|O|198337.66|1998-06-11|3-MEDIUM|Clerk#000004616|0|ously pending packages. furiously| +79401|266521|O|47747.98|1995-08-30|1-URGENT|Clerk#000003358|0|y. final, bold dugouts nag along the blithely express account| +79402|390919|O|248406.61|1997-03-04|4-NOT SPECIFIED|Clerk#000001256|0|. express requests | +79403|143762|O|250670.67|1996-04-06|2-HIGH|Clerk#000004982|0|gular foxes believe carefully express ideas. bold asymptotes use. slyly | +79404|452287|O|158912.17|1996-11-11|2-HIGH|Clerk#000002173|0|dependencies after the fluffily final pinto be| +79405|334330|F|59128.25|1994-12-15|3-MEDIUM|Clerk#000001335|0|nts maintain blithely among the slyly even accounts;| +79406|80041|O|228408.57|1996-02-01|4-NOT SPECIFIED|Clerk#000000433|0|al packages sleep slyly according to the c| +79407|467801|O|354644.44|1996-07-08|2-HIGH|Clerk#000000926|0|rts affix blithely requests. carefully final foxes sleep after the qui| +79432|71125|F|229029.78|1993-09-18|4-NOT SPECIFIED|Clerk#000002689|0|ggle furiously brave packages. carefully ironic court| +79433|643072|F|109809.17|1993-01-22|4-NOT SPECIFIED|Clerk#000003899|0|sly final deposits; final, special pains cajol| +79434|585016|F|87162.57|1994-02-04|2-HIGH|Clerk#000004192|0|ly along the ironic requests. ironic, silent request| +79435|581402|F|284200.04|1994-05-28|2-HIGH|Clerk#000003382|0| accounts. sheaves cajole express, ironic ac| +79436|613202|F|27993.05|1992-03-22|5-LOW|Clerk#000002594|0|carefully final deposits. fluffily ironic courts sleep along| +79437|334240|F|109243.39|1994-09-24|1-URGENT|Clerk#000001149|0|ly idle packages. quickly silent packages nag blithely after th| +79438|53516|F|11599.44|1994-11-03|4-NOT SPECIFIED|Clerk#000000757|0|phins. quickly final dependencies about | +79439|186646|O|104860.74|1996-11-02|3-MEDIUM|Clerk#000003194|0|nts. slyly silent deposits haggle carefully. | +79464|447538|O|138209.40|1998-02-06|5-LOW|Clerk#000002572|0|y daring pains against the brave requests haggle among the quickly bold platel| +79465|8152|O|112196.11|1996-09-10|4-NOT SPECIFIED|Clerk#000004716|0|carefully regular accounts after | +79466|501316|O|257473.74|1998-07-30|4-NOT SPECIFIED|Clerk#000000565|0|ously unusual asymptotes. slyly ironic asymptotes nag across the thinly pendin| +79467|115808|O|39160.41|1998-02-07|3-MEDIUM|Clerk#000004629|0|y even warthogs across the patterns nag blit| +79468|119617|F|189354.94|1994-09-02|3-MEDIUM|Clerk#000001233|0|ously alongside of the carefu| +79469|369796|O|256918.85|1996-04-02|5-LOW|Clerk#000003468|0| packages nag slyly around the special ideas. quic| +79470|638678|F|194354.19|1993-08-13|5-LOW|Clerk#000000526|0|ests thrash fluffily pending instructions. pending foxes for th| +79471|255659|F|308146.29|1992-05-16|2-HIGH|Clerk#000002443|0| slyly quickly pending packages. blithe| +79496|96701|O|11323.67|1995-12-02|5-LOW|Clerk#000002687|0|jole silent requests. blithely ironic accounts above the ironic| +79497|744052|O|258614.38|1997-04-21|4-NOT SPECIFIED|Clerk#000001543|0|yly pending courts maintain. slyly pending pinto b| +79498|499264|F|56209.09|1992-10-31|5-LOW|Clerk#000001944|0|ithely. fluffily ironic pinto beans according to| +79499|118864|O|248231.24|1997-05-14|5-LOW|Clerk#000002602|0|n deposits nag furiously. fluffily final asymptot| +79500|494527|F|152313.82|1994-05-13|2-HIGH|Clerk#000001426|0|unts are carefully to the slyly final packages!| +79501|9211|O|150745.18|1996-10-10|1-URGENT|Clerk#000001171|0|p carefully according to the slyly regular| +79502|290251|O|1382.91|1997-02-28|2-HIGH|Clerk#000002399|0|osits wake carefully after the silent, regular ideas. instructions ha| +79503|234061|O|168188.85|1998-01-10|3-MEDIUM|Clerk#000004612|0|y express theodolites i| +79528|103291|F|203828.39|1992-07-19|5-LOW|Clerk#000003879|0|to beans cajole carefully alongside of the doggedly ironic asymptotes. sp| +79529|499175|O|177580.11|1997-08-18|3-MEDIUM|Clerk#000004740|0|g the ironic requests. theodolites affix blithely. spe| +79530|131803|O|78943.09|1996-06-01|3-MEDIUM|Clerk#000005000|0|uests are blithely at the pending packages. slyly even deposits according to t| +79531|459784|F|148352.91|1993-08-12|4-NOT SPECIFIED|Clerk#000001725|0|ic instructions use carefully. quickly ironic deposits about the bold, | +79532|336559|F|150403.61|1993-04-15|1-URGENT|Clerk#000000604|0|riously special instructions integrate. final, regul| +79533|33959|O|301728.73|1996-07-30|4-NOT SPECIFIED|Clerk#000002253|0|ous pinto beans wake a| +79534|745966|F|216669.38|1993-09-17|3-MEDIUM|Clerk#000002647|0|e quickly ironic theodolites. fluffily unusual deposits boost e| +79535|434654|O|10437.14|1995-10-15|1-URGENT|Clerk#000000212|0|ccounts. carefully express accounts af| +79560|216305|O|44133.22|1995-07-31|1-URGENT|Clerk#000001429|0|permanent excuses. requests wak| +79561|172978|O|167814.10|1996-11-12|4-NOT SPECIFIED|Clerk#000002922|0|e blithely special packages. carefully i| +79562|227249|F|94257.99|1993-07-16|1-URGENT|Clerk#000004668|0|s. carefully ironic theodolites n| +79563|360826|F|119395.47|1993-09-20|3-MEDIUM|Clerk#000002437|0|ths. unusual, ironic packages nag. slyly regular deposits past the fluf| +79564|646474|O|137581.38|1996-03-14|5-LOW|Clerk#000003910|0|uriously regular accounts cajole. pending packages promis| +79565|9067|F|220525.05|1993-04-23|1-URGENT|Clerk#000003777|0|inder slyly final epitaphs. regular sentiments cajole. bold, bold packages | +79566|117619|F|120095.38|1993-09-03|2-HIGH|Clerk#000000950|0|y furiously final t| +79567|540586|F|213596.04|1992-11-05|1-URGENT|Clerk#000001580|0|e ideas. slyly regular excuses nag blithely. blithely blithe ideas boost sl| +79592|114820|O|80791.99|1996-12-30|5-LOW|Clerk#000003787|0|ke. final platelets poach blithely against the slyly regular acc| +79593|747464|O|6512.90|1998-05-06|3-MEDIUM|Clerk#000003375|0| unusual asymptotes boost fluffily slyly sly frets. silen| +79594|115381|O|52094.06|1998-01-05|5-LOW|Clerk#000002533|0|en accounts integrate! slyly regular instructions dazzle regularly pinto | +79595|441055|F|182914.20|1995-01-31|5-LOW|Clerk#000001415|0|ests kindle quickly furiously ev| +79596|543221|F|196385.68|1993-11-11|4-NOT SPECIFIED|Clerk#000002337|0| asymptotes haggle. regular excuses boost quickly. slyly even packages hinder| +79597|158015|O|77985.25|1996-10-13|1-URGENT|Clerk#000000374|0|, express accounts along the express in| +79598|741781|O|36827.10|1998-07-09|5-LOW|Clerk#000002197|0|ly express deposits wake furiously. re| +79599|585448|F|166214.51|1992-05-10|2-HIGH|Clerk#000000291|0| even instructions will cajole quickly.| +79624|356974|F|352532.45|1994-08-16|2-HIGH|Clerk#000001126|0|pending dugouts. ironic, ironic excuses detect slyly. pendin| +79625|383545|O|221950.82|1996-12-18|5-LOW|Clerk#000002819|0|heodolites. slyly special excuses x-ray quick| +79626|731773|F|72477.14|1992-12-14|3-MEDIUM|Clerk#000003618|0|es. slyly silent requ| +79627|400444|F|56508.66|1994-10-28|4-NOT SPECIFIED|Clerk#000001721|0|ly about the furiously special platelets. furiously pending pinto be| +79628|481000|O|304216.33|1995-11-22|3-MEDIUM|Clerk#000003408|0|nic pinto beans. ironically final asymptotes sleep quickl| +79629|638470|O|127709.34|1996-11-13|4-NOT SPECIFIED|Clerk#000004153|0|jole furiously pendi| +79630|503650|F|269800.48|1992-12-06|4-NOT SPECIFIED|Clerk#000002657|0|unusual packages shall haggle flu| +79631|336289|O|63420.87|1996-12-07|3-MEDIUM|Clerk#000001891|0|ilent foxes. furiously thin escapades promise. quickly final deposits acro| +79656|8668|O|103099.85|1996-11-16|4-NOT SPECIFIED|Clerk#000000514|0|s haggle furiously against the blit| +79657|149947|O|192331.82|1995-12-20|5-LOW|Clerk#000003808|0|yly regular packages sleep quickly? fluffily even ideas haggle| +79658|125702|O|219442.85|1996-06-11|2-HIGH|Clerk#000004686|0|promise final ideas. furiously even pinto b| +79659|664876|F|26060.14|1993-07-04|4-NOT SPECIFIED|Clerk#000002233|0|its above the furiously bold pinto beans affix furi| +79660|295867|F|78813.38|1992-11-25|5-LOW|Clerk#000000692|0|beside the furiously express instructions print sly| +79661|117163|P|190366.03|1995-04-25|3-MEDIUM|Clerk#000002908|0| carefully requests. dependencies cajole slyly. express requests across t| +79662|396241|F|298173.54|1995-02-01|4-NOT SPECIFIED|Clerk#000004106|0|le. slyly regular foxes alo| +79663|349669|F|162528.12|1994-01-11|2-HIGH|Clerk#000003462|0|requests! express acc| +79688|604951|O|104028.50|1996-11-05|5-LOW|Clerk#000001534|0|lithely dogged packages hang.| +79689|403564|F|154658.50|1994-12-09|3-MEDIUM|Clerk#000002387|0|ly carefully regular pinto beans. final escapades| +79690|420859|F|53215.43|1992-11-10|3-MEDIUM|Clerk#000002547|0|the regular depende| +79691|104909|O|310196.85|1998-07-01|1-URGENT|Clerk#000002643|0|nag special accounts; express theodolites along t| +79692|693724|O|51368.77|1995-08-07|5-LOW|Clerk#000003205|0|lyly express deposits was. blit| +79693|640780|F|411424.63|1992-12-25|5-LOW|Clerk#000003429|0| ideas could print afte| +79694|335594|F|213869.81|1992-01-02|1-URGENT|Clerk#000002833|0|according to the final deposits haggle around the cl| +79695|314734|O|126885.68|1998-06-12|2-HIGH|Clerk#000004194|0|arefully special theodolites. regular| +79720|701498|O|85453.28|1997-01-08|5-LOW|Clerk#000000206|0|ons sleep furiously furiously final excuses. fluffily express ideas wake ac| +79721|65833|O|75634.82|1997-06-30|1-URGENT|Clerk#000001192|0| about the bold, regular p| +79722|188609|F|43262.98|1994-05-15|1-URGENT|Clerk#000004769|0| carefully special deposits. slyly final requ| +79723|439975|F|138560.07|1992-02-18|2-HIGH|Clerk#000004355|0| furiously even deposits cajole-- regular excuses use carefully sl| +79724|400768|O|151863.89|1995-07-18|5-LOW|Clerk#000003974|0|o beans about the express, e| +79725|694987|O|409755.22|1996-05-31|1-URGENT|Clerk#000001558|0|es. furiously special ideas through the pinto beans cajole carefully aft| +79726|126800|O|175310.50|1998-04-22|2-HIGH|Clerk#000001381|0|ss the final excuses. a| +79727|364946|O|301182.30|1995-06-19|4-NOT SPECIFIED|Clerk#000002006|0| final deposits sleep b| +79752|134542|O|126909.23|1998-01-05|4-NOT SPECIFIED|Clerk#000003018|0|s cajole furiously. accounts boost. slyly special fo| +79753|738233|P|70015.45|1995-04-07|3-MEDIUM|Clerk#000004743|0|ithely pending packages nag slyly regular dependencies; dep| +79754|224840|O|193970.25|1995-10-11|1-URGENT|Clerk#000000487|0|usly alongside of the| +79755|371557|F|96018.02|1992-04-22|5-LOW|Clerk#000004215|0| at the furiously regular requests. express ideas haggle brav| +79756|245821|F|204358.88|1994-06-24|4-NOT SPECIFIED|Clerk#000000407|0|final accounts use fluffily| +79757|510898|F|45548.95|1994-08-04|4-NOT SPECIFIED|Clerk#000001218|0|oxes wake at the carefully bold foxes. quickly regular packages | +79758|647158|O|181896.48|1995-12-25|4-NOT SPECIFIED|Clerk#000000788|0|tructions cajole furiously fluffily unus| +79759|255142|O|170156.06|1998-05-30|5-LOW|Clerk#000002425|0|sits. quickly regular accounts dazzl| +79784|409243|O|274652.98|1998-02-17|1-URGENT|Clerk#000003266|0|e furiously quiet deposits! regular requests cajole | +79785|642305|F|252224.09|1993-09-11|2-HIGH|Clerk#000000572|0| final, final packages. final de| +79786|457100|O|75431.24|1995-08-29|4-NOT SPECIFIED|Clerk#000001326|0|heodolites cajole about the blithely blithe packages! furiously unusua| +79787|214826|O|156258.28|1996-10-28|2-HIGH|Clerk#000002650|0| regular waters integrate carefully bold accounts.| +79788|74587|F|212080.14|1993-05-11|2-HIGH|Clerk#000001747|0|slyly. regular, ironic depths wake above the furiously furious g| +79789|307366|O|229011.73|1998-04-18|3-MEDIUM|Clerk#000000687|0|s across the quiet deposits hag| +79790|637183|F|150965.95|1992-07-11|5-LOW|Clerk#000003864|0| above the always even packages. even ideas use sly| +79791|605584|O|225818.84|1995-12-29|1-URGENT|Clerk#000002280|0|l, even pearls sleep carefully around the requests. silent theodolites nag | +79816|539698|O|61217.87|1997-11-18|4-NOT SPECIFIED|Clerk#000001819|0|ing accounts. packages wake furiously among the furiously pending deposits. sl| +79817|202052|F|180841.13|1994-03-22|4-NOT SPECIFIED|Clerk#000000626|0|requests use carefully fluf| +79818|621740|F|105594.22|1994-02-26|2-HIGH|Clerk#000003089|0|ans haggle furiously across the carefu| +79819|570796|F|257400.17|1994-02-13|4-NOT SPECIFIED|Clerk#000003851|0|egular instructions wake care| +79820|109207|F|190907.37|1994-12-25|4-NOT SPECIFIED|Clerk#000002855|0|riously regular requests sleep slyly special accoun| +79821|161543|F|240743.70|1992-04-24|5-LOW|Clerk#000002471|0|dolites? requests along the fluffily even accounts haggle according t| +79822|47987|F|262249.75|1992-03-03|3-MEDIUM|Clerk#000001992|0|sentiments are blithely bold depos| +79823|257248|F|184800.19|1993-02-19|2-HIGH|Clerk#000004803|0|uriously after the final dependencies. blithely regular deposi| +79848|542395|O|164901.05|1996-08-05|4-NOT SPECIFIED|Clerk#000002547|0|sits. deposits around the silent| +79849|501527|O|11646.59|1995-10-05|3-MEDIUM|Clerk#000004509|0|eans haggle carefully. bold requests after the express, pending requests sleep| +79850|652936|F|208525.68|1994-05-20|3-MEDIUM|Clerk#000004048|0|ing requests. blithely bold asymptotes boost. carefully sile| +79851|622967|F|132042.98|1994-10-17|3-MEDIUM|Clerk#000001296|0|y even accounts; packages haggle slyly. final, express theodo| +79852|195161|F|100354.29|1994-01-13|4-NOT SPECIFIED|Clerk#000000250|0|ole carefully carefully ironic accounts. furiously even packages| +79853|315802|F|217348.47|1994-04-05|5-LOW|Clerk#000000206|0| final accounts haggle permanently fluffily regular theodolites. e| +79854|658607|F|244777.46|1992-06-13|2-HIGH|Clerk#000002119|0|s integrate blithely final dolphins. platelets are slyly final packag| +79855|700963|F|81554.99|1994-11-03|5-LOW|Clerk#000004216|0|ironic theodolites det| +79880|58349|O|14364.83|1996-10-30|1-URGENT|Clerk#000003455|0|nts sleep blithely along the furiously final dependencies. slyly i| +79881|408052|F|51702.80|1992-05-26|3-MEDIUM|Clerk#000000979|0|uick ideas. furiously even theodolites sleep. f| +79882|129482|F|282052.03|1993-10-31|3-MEDIUM|Clerk#000001169|0|ts are special instructions. quickly fluffy asymp| +79883|448849|F|150499.34|1992-08-04|2-HIGH|Clerk#000004546|0|uriously unusual deposits sleep slyly carefully s| +79884|273133|O|133099.42|1998-04-21|4-NOT SPECIFIED|Clerk#000003812|0|d ideas wake furiously blithely ironic deposits. fur| +79885|519607|F|232467.74|1993-07-18|3-MEDIUM|Clerk#000004848|0|counts haggle blithely. even accounts cajo| +79886|22237|F|161236.43|1994-10-27|2-HIGH|Clerk#000001911|0| unusual theodolites. bold pains are special dolphins| +79887|218644|O|204071.10|1995-07-27|2-HIGH|Clerk#000002937|0|luffily unusual foxes use furiously. special | +79912|485134|F|310560.24|1992-10-14|2-HIGH|Clerk#000000147|0|slyly quickly furious dependen| +79913|384181|F|302890.85|1994-12-01|5-LOW|Clerk#000003142|0| foxes wake furiously busy requests. pint| +79914|173918|O|175951.88|1997-09-11|5-LOW|Clerk#000001078|0|ic, bold foxes. special, express sheaves ar| +79915|281818|F|129955.12|1994-05-16|3-MEDIUM|Clerk#000003597|0|l theodolites. instructions are carefully regular the| +79916|237319|F|205434.24|1993-12-02|1-URGENT|Clerk#000004654|0| the fluffily special accounts. carefull| +79917|95212|O|237639.99|1998-05-01|1-URGENT|Clerk#000004043|0|lly bold foxes. regular, final packages are fluffily. reg| +79918|470810|F|109780.05|1995-02-02|5-LOW|Clerk#000002654|0|pendencies. idly pending pinto beans use instructions. carefully ironi| +79919|393656|F|70240.39|1993-07-15|4-NOT SPECIFIED|Clerk#000004997|0|usual packages. even accounts sleep furiously. pac| +79944|416717|F|110368.29|1994-05-27|5-LOW|Clerk#000003560|0|ke furiously. carefully regular accounts | +79945|251041|F|284246.01|1992-10-24|2-HIGH|Clerk#000000376|0| bold requests sublate quickly quickly even packages. care| +79946|486991|O|107705.87|1998-05-28|4-NOT SPECIFIED|Clerk#000000549|0|sts sleep slyly slyly even requests. | +79947|107503|F|27950.27|1994-09-05|1-URGENT|Clerk#000000175|0|gular asymptotes detect carefu| +79948|41444|F|168933.69|1993-02-05|4-NOT SPECIFIED|Clerk#000004110|0|c attainments wake | +79949|542629|O|96643.93|1996-07-11|2-HIGH|Clerk#000004406|0|accounts. furiously ironic theodolites cajole ironic, regular pinto bean| +79950|699914|O|258155.59|1997-12-06|1-URGENT|Clerk#000004222|0|y ruthless pinto beans sleep slyly e| +79951|453979|O|5813.87|1996-08-15|3-MEDIUM|Clerk#000001180|0| regular platelets. slyly ironic theodolites detect. pending d| +79976|246805|F|65056.36|1992-05-24|1-URGENT|Clerk#000003023|0|elets. regular packages are furiously against| +79977|519416|O|207784.08|1995-11-13|5-LOW|Clerk#000002079|0|s print slyly about the pinto | +79978|571541|F|178307.48|1992-09-14|5-LOW|Clerk#000001006|0|ual instructions alongside of the carefully b| +79979|630191|F|307729.80|1993-09-28|4-NOT SPECIFIED|Clerk#000004877|0| deposits hinder fluffily. evenly final accounts wake blithely after| +79980|115753|F|181315.72|1994-07-30|5-LOW|Clerk#000001085|0|equests. slyly ironic dugouts wake fluffily about the slyly ironic| +79981|700279|F|106283.03|1994-08-31|2-HIGH|Clerk#000000633|0|l instructions sleep evenly along the brave,| +79982|586204|F|45043.37|1994-07-02|1-URGENT|Clerk#000002410|0|excuses detect alway| +79983|326099|F|52499.91|1993-12-26|2-HIGH|Clerk#000002329|0|de of the carefully ironic accounts wake slyly after the furiou| +80008|479938|F|89199.47|1992-05-13|5-LOW|Clerk#000000881|0|ly after the ruthlessly even | +80009|44008|O|53546.32|1997-05-18|3-MEDIUM|Clerk#000003953|0|ole blithely across the dependencies; blithely regular accounts use c| +80010|124790|P|231003.67|1995-04-04|3-MEDIUM|Clerk#000004279|0| requests wake furiously across the express, regular platelets? brave, bo| +80011|332854|F|120188.80|1994-03-01|3-MEDIUM|Clerk#000002191|0|ross the ironic accounts. blithely | +80012|6601|F|100139.75|1993-09-20|5-LOW|Clerk#000003584|0|c theodolites wake quickly carefully ir| +80013|673271|O|325711.00|1997-06-20|2-HIGH|Clerk#000002077|0|hely carefully ironic package| +80014|406150|F|348346.48|1995-01-26|5-LOW|Clerk#000000767|0|old accounts. ironic, regular requests use. bl| +80015|393466|F|214074.66|1992-01-07|2-HIGH|Clerk#000002436|0|olites sleep blithely above the slyly brave requests. quickly| +80040|210791|F|120814.72|1993-02-12|4-NOT SPECIFIED|Clerk#000004007|0|outs sleep furiously regular pinto beans. regular theodolites instead| +80041|512462|F|138463.87|1992-03-29|1-URGENT|Clerk#000003601|0|iously bold, ironic accounts. blithely pending excuses cajole b| +80042|684355|O|139937.04|1995-06-13|1-URGENT|Clerk#000003293|0|er the quickly silent deposi| +80043|680650|O|186377.82|1995-06-18|1-URGENT|Clerk#000004360|0|usual accounts! furiously unusual instructions above the fu| +80044|682024|O|236625.69|1995-10-31|4-NOT SPECIFIED|Clerk#000004439|0|. blithely even foxes integrate above the courts. excuses boost caref| +80045|517435|O|86626.56|1996-04-13|2-HIGH|Clerk#000001439|0|n deposits. pending packages haggle blithely across the unusual, express as| +80046|254969|O|261914.21|1998-05-27|1-URGENT|Clerk#000003057|0|mong the even, thin theodolites. | +80047|501427|O|155117.35|1995-06-01|4-NOT SPECIFIED|Clerk#000001672|0|boost quickly. carefully final instructions doze blithely bravely| +80072|460960|F|254579.68|1994-02-25|3-MEDIUM|Clerk#000000553|0|to the regular platelets. closely regular dep| +80073|600086|F|105284.74|1993-05-21|4-NOT SPECIFIED|Clerk#000001100|0|heodolites. furiously ironic pinto | +80074|386161|O|246034.84|1997-11-23|1-URGENT|Clerk#000000284|0|nic, regular deposits. quickly regular fo| +80075|452431|F|3772.62|1994-03-02|2-HIGH|Clerk#000004261|0|s. carefully unusual theodolites breach.| +80076|492319|O|89679.21|1996-08-19|1-URGENT|Clerk#000004520|0|o the furiously daring courts hinder accounts. accounts nag across the iro| +80077|383429|O|313159.48|1996-02-27|3-MEDIUM|Clerk#000004050|0|al theodolites. special, even requests will eat alongside of the pinto beans.| +80078|279814|O|284777.93|1996-02-16|5-LOW|Clerk#000004567|0| somas sleep along the quickly fi| +80079|323777|F|412219.23|1994-06-14|4-NOT SPECIFIED|Clerk#000002776|0|nic, special excuses. slyly regular accounts| +80104|468802|O|280708.01|1997-09-20|3-MEDIUM|Clerk#000000549|0|ep at the deposits. unusual, unusual pinto beans wake i| +80105|376367|F|20813.65|1994-01-08|3-MEDIUM|Clerk#000004920|0|c requests. even ideas pro| +80106|92501|O|244272.14|1998-07-27|4-NOT SPECIFIED|Clerk#000000321|0|fully bold asymptotes are carefully among th| +80107|663547|F|91079.23|1992-09-13|2-HIGH|Clerk#000002895|0|. blithely regular instruction| +80108|455026|F|72587.20|1994-03-22|5-LOW|Clerk#000004935|0|nic accounts grow. unusual accounts boost across the regular accounts. blith| +80109|608641|F|113026.27|1994-05-05|5-LOW|Clerk#000000304|0|eodolites boost quickly amon| +80110|167716|F|255927.49|1992-12-06|5-LOW|Clerk#000003858|0|olites. carefully close dinos are. fluffily | +80111|279085|O|172427.17|1996-07-25|5-LOW|Clerk#000003190|0|ct notornis. quickly even accounts above the pinto beans wake fl| +80136|59725|F|310411.29|1992-07-12|2-HIGH|Clerk#000001622|0|ully bold foxes. dependencies haggle slyly. carefully unusual theodoli| +80137|268639|O|104842.59|1998-02-09|4-NOT SPECIFIED|Clerk#000001418|0|e above the final packa| +80138|741197|F|109336.88|1994-12-01|1-URGENT|Clerk#000000423|0|nal dependencies are. carefu| +80139|538726|F|137739.31|1994-05-11|3-MEDIUM|Clerk#000001547|0|ss the slyly silent | +80140|345478|F|122657.58|1994-10-26|4-NOT SPECIFIED|Clerk#000001839|0|use furiously carefully ironic requests. deposits alongsid| +80141|687743|O|216881.35|1995-09-21|5-LOW|Clerk#000003704|0|al instructions haggle quickly bold theodolites. pending grouches wake at the| +80142|645274|O|116211.60|1996-08-09|2-HIGH|Clerk#000003657|0|sts believe? busy deposits wake. unusual, final sau| +80143|115682|F|247379.21|1992-10-20|3-MEDIUM|Clerk#000000837|0|s integrate quickly above the| +80168|263099|O|254104.71|1996-11-17|4-NOT SPECIFIED|Clerk#000003404|0|fluffily express requests cajole carefully after the f| +80169|652006|O|289719.21|1996-09-10|5-LOW|Clerk#000004366|0|ly-- ironic pinto beans boost slyly. ironic excuses kindle | +80170|743677|O|124492.51|1997-12-19|4-NOT SPECIFIED|Clerk#000002585|0|efully even ideas detect fluffily. fluffily | +80171|206089|F|41152.82|1992-10-23|2-HIGH|Clerk#000000810|0|equests affix theodolites. furiously even forges slee| +80172|214957|F|254569.28|1995-03-12|3-MEDIUM|Clerk#000001376|0|ts print fluffily quickly ironic packages. blithe| +80173|10555|F|175351.19|1993-11-06|3-MEDIUM|Clerk#000000306|0|tegrate furiously eve| +80174|396781|O|160657.60|1998-02-11|3-MEDIUM|Clerk#000001783|0|lly final accounts. special, final deposits haggle quickly alongside of the bl| +80175|437416|F|59096.69|1993-08-08|2-HIGH|Clerk#000000018|0|uses according to the accounts thrash near the fluf| +80200|121294|F|32882.68|1993-07-15|2-HIGH|Clerk#000001412|0|ate furiously. theodolites sleep. dependencies poach slyly| +80201|74437|O|235168.99|1997-04-26|2-HIGH|Clerk#000000088|0|all engage deposits. fluffily regular pla| +80202|59206|F|175687.72|1992-03-19|3-MEDIUM|Clerk#000003926|0|lithe requests. requests sleep quickly furious dep| +80203|571166|O|12299.26|1997-01-14|3-MEDIUM|Clerk#000002924|0| requests. ironic requests wake furiously after the packages; furiously unusu| +80204|336851|F|19684.94|1992-10-08|3-MEDIUM|Clerk#000002030|0|ounts according to the | +80205|449551|F|92336.16|1992-02-05|2-HIGH|Clerk#000003013|0|ests. furiously bold ideas nag ironic, even packages! never ironic theo| +80206|98596|F|166421.43|1993-07-26|1-URGENT|Clerk#000003233|0|ously ironic multipliers. special foxes are furiously a| +80207|342122|O|135168.62|1997-03-18|5-LOW|Clerk#000000089|0|y ironic deposits haggle stealthily. final foxes cajole about| +80232|535151|O|234071.46|1998-05-20|4-NOT SPECIFIED|Clerk#000003817|0|cial asymptotes cajole slyly across the ironic,| +80233|269027|O|147542.49|1996-11-24|2-HIGH|Clerk#000001981|0|its sleep slyly quickly furious courts. final platelets | +80234|527218|O|207955.10|1996-12-14|2-HIGH|Clerk#000001940|0|ween the carefully final patterns. final braids boost quickl| +80235|428662|F|268302.10|1994-06-04|5-LOW|Clerk#000004100|0|le after the even, pending requests. instructions sleep. quickly | +80236|6992|O|170250.47|1998-06-01|1-URGENT|Clerk#000002490|0|gular pinto beans. unusual re| +80237|505117|O|257912.53|1996-02-06|5-LOW|Clerk#000000596|0|ly carefully ironic packages. packages wake about the | +80238|232720|O|149064.57|1997-07-09|3-MEDIUM|Clerk#000002785|0|gular requests after the bl| +80239|63043|F|164412.57|1993-06-21|4-NOT SPECIFIED|Clerk#000002146|0|sly even pearls kindle blithely final requests. carefully unusual depe| +80264|539350|O|73499.11|1996-06-10|5-LOW|Clerk#000003453|0|heodolites nag about the even theodolites. finally u| +80265|335275|O|105037.78|1998-03-01|5-LOW|Clerk#000003192|0|heodolites. blithely ironic reque| +80266|192490|F|39362.90|1993-07-16|1-URGENT|Clerk#000003883|0|furiously. packages b| +80267|414889|O|45970.17|1997-09-16|5-LOW|Clerk#000002962|0|es wake after the fu| +80268|287926|O|130787.44|1998-07-15|4-NOT SPECIFIED|Clerk#000000691|0|onic packages along the expr| +80269|166528|O|145552.84|1996-07-07|3-MEDIUM|Clerk#000000427|0|regular platelets nag theodolites. ironic requests across the express inst| +80270|574349|F|48682.34|1994-07-07|1-URGENT|Clerk#000001699|0|re furiously at the unusual accounts. carefully pending deposits h| +80271|574936|O|58696.16|1995-10-12|3-MEDIUM|Clerk#000001968|0| the furiously express packages are blithely sly instructions.| +80296|679645|F|186836.57|1994-10-10|2-HIGH|Clerk#000004547|0|t the regularly pending deposits; carefully even ideas wake in place of | +80297|287497|F|193235.42|1993-06-02|1-URGENT|Clerk#000004839|0|asymptotes. fluffily ironic ideas about th| +80298|452032|O|141246.39|1996-04-25|5-LOW|Clerk#000002645|0| regular accounts haggle. instructions wake| +80299|542021|F|60530.68|1992-12-26|1-URGENT|Clerk#000002141|0|al foxes among the slyly ironic packages haggle along the bold pac| +80300|232435|O|311276.08|1997-07-04|1-URGENT|Clerk#000002213|0|ly. blithely unusual accounts haggle carefull| +80301|523687|O|121258.43|1998-01-25|5-LOW|Clerk#000003201|0|ake slyly regular, careful pinto beans; courts s| +80302|325474|O|264291.70|1996-07-21|1-URGENT|Clerk#000000067|0|blithely final foxes boost after the platelets. final, special packages a| +80303|463850|O|295279.56|1996-02-20|2-HIGH|Clerk#000000531|0|thely furiously regular escap| +80328|420946|F|52235.46|1993-04-30|4-NOT SPECIFIED|Clerk#000003618|0|beans haggle carefully dependencies. regular packages | +80329|87997|O|13702.43|1998-02-17|3-MEDIUM|Clerk#000002911|0|ccording to the carefully unusual dug| +80330|690154|O|78713.90|1997-08-08|4-NOT SPECIFIED|Clerk#000003293|0|usly. express foxes wake furiously ironic | +80331|654830|F|203536.13|1994-10-13|5-LOW|Clerk#000000576|0|kly regular foxes are blithely. furiously express | +80332|212281|O|58921.27|1995-11-08|2-HIGH|Clerk#000002083|0| are fluffily around the furiou| +80333|40264|F|111974.15|1994-06-17|2-HIGH|Clerk#000003804|0| bold pinto beans wake furiously final dependencies. blithely exp| +80334|193609|O|279875.65|1998-05-10|5-LOW|Clerk#000001443|0|the theodolites boost evenly enticing requests:| +80335|461800|O|248286.30|1996-07-23|2-HIGH|Clerk#000001389|0|quests haggle blithely blithely regular account| +80360|453874|F|172511.43|1993-12-04|3-MEDIUM|Clerk#000001857|0| cajole slyly express, silent packages: fluffily even ideas poach furiously| +80361|9760|O|216118.18|1996-03-07|2-HIGH|Clerk#000003458|0|aves. quickly express dependencies wake quickly carefully final deposit| +80362|536182|F|204135.43|1994-03-14|1-URGENT|Clerk#000000920|0|. regular asymptotes are carefully final packages. warthogs haggle flu| +80363|359293|F|322798.82|1994-08-01|5-LOW|Clerk#000000372|0|ironic packages. fluffily iron| +80364|380036|O|127533.81|1996-05-21|4-NOT SPECIFIED|Clerk#000004887|0|ly even packages! bold, special hockey players above the carefully regu| +80365|259327|O|159362.27|1997-10-17|5-LOW|Clerk#000003236|0|efully unusual deposits haggle along the quickly i| +80366|256273|O|159418.46|1995-07-27|1-URGENT|Clerk#000004228|0|egular, unusual platelets x-ray slyly even foxes. sl| +80367|651247|F|128655.89|1992-03-19|4-NOT SPECIFIED|Clerk#000001427|0|ate regular, even requests. slyly fina| +80392|749351|O|251764.18|1996-01-14|4-NOT SPECIFIED|Clerk#000001985|0|ending accounts above the quiet packages haggle slyly bold packages. deposit| +80393|340903|O|156022.42|1997-06-17|3-MEDIUM|Clerk#000004848|0|long the carefully bold requests. asymptotes sleep blithely. bold foxes after| +80394|292486|O|369705.94|1997-03-22|3-MEDIUM|Clerk#000002472|0|ts engage quickly final dugouts. regular pinto beans sleep busy pac| +80395|297446|F|42972.99|1993-01-05|4-NOT SPECIFIED|Clerk#000003182|0|oxes according to the ev| +80396|417614|F|303367.59|1994-04-09|4-NOT SPECIFIED|Clerk#000004529|0|e blithely across the q| +80397|325444|F|152861.69|1993-03-27|2-HIGH|Clerk#000001495|0|inos. quickly final escapades impress furiously | +80398|729770|O|327023.23|1995-10-05|3-MEDIUM|Clerk#000000465|0|ctions. silent, ironic pac| +80399|479905|F|266384.05|1992-07-25|3-MEDIUM|Clerk#000004019|0|. slyly special theodolites after the pending, bold deposits wa| +80424|259805|O|206842.76|1998-03-01|3-MEDIUM|Clerk#000001363|0|rding to the even, even accounts ar| +80425|32869|O|265521.88|1996-04-13|1-URGENT|Clerk#000001979|0|ggle carefully furious asymptotes. blithel| +80426|419278|F|201257.26|1992-04-29|1-URGENT|Clerk#000003153|0| accounts wake. deposits sleep fu| +80427|539209|O|19007.44|1996-02-13|4-NOT SPECIFIED|Clerk#000003060|0|quiet requests cajole between the special depos| +80428|213139|O|54390.55|1996-08-16|4-NOT SPECIFIED|Clerk#000004614|0|dencies: never ironic foxes boost: slyly even package| +80429|213709|O|51416.44|1995-09-29|4-NOT SPECIFIED|Clerk#000002770|0|are furiously blithely regular pearls. packages solve slyly fin| +80430|30857|O|182238.05|1995-12-15|2-HIGH|Clerk#000003284|0|ns haggle slyly around the packages! carefully final the| +80431|361528|O|37102.44|1998-01-17|4-NOT SPECIFIED|Clerk#000000239|0|equests cajole quickly regular dependencies. carefully regular foxes around th| +80456|447514|F|41158.14|1992-06-06|4-NOT SPECIFIED|Clerk#000000587|0|s sleep quickly. si| +80457|335029|O|361468.86|1996-08-05|5-LOW|Clerk#000004817|0|are alongside of the blithely special accounts? blithely express deposits ca| +80458|575224|O|82805.50|1996-02-06|5-LOW|Clerk#000000316|0| are sometimes quickly final requests. i| +80459|258571|F|22227.89|1994-11-05|4-NOT SPECIFIED|Clerk#000004882|0|oss the final, regular requ| +80460|273547|O|194627.32|1996-08-31|3-MEDIUM|Clerk#000002443|0|fluffily unusual hockey pla| +80461|725065|O|137292.25|1996-01-09|2-HIGH|Clerk#000000679|0|eas may haggle about the carefully enticing ins| +80462|133969|F|245959.22|1994-03-19|5-LOW|Clerk#000003329|0|its are above the final, pending dependencies. slyly s| +80463|97289|O|210546.10|1996-10-26|4-NOT SPECIFIED|Clerk#000004652|0|furiously against the carefully stealthy | +80488|124364|F|33593.29|1993-09-05|1-URGENT|Clerk#000000064|0|the unusual, dogged excuses could| +80489|682990|O|235388.90|1998-07-16|1-URGENT|Clerk#000004682|0|kly final epitaphs sleep enticingly according to the carefully express p| +80490|246211|F|233652.74|1993-02-18|4-NOT SPECIFIED|Clerk#000004628|0|sits. special dolphins na| +80491|308422|O|234375.29|1997-03-26|3-MEDIUM|Clerk#000002714|0| boost frets. slyly final excuses try to sleep. carefully bold p| +80492|397642|O|316907.34|1997-11-06|2-HIGH|Clerk#000002501|0|s. blithely silent foxes along the ironic packages sleep slyly iron| +80493|656479|O|219876.85|1996-11-17|1-URGENT|Clerk#000002593|0|ss the final packages. even excuses wake q| +80494|192310|F|115885.08|1994-10-13|5-LOW|Clerk#000000411|0|usual packages. blithely s| +80495|397589|O|166430.67|1997-07-28|2-HIGH|Clerk#000003899|0|e express, final excu| +80520|524464|O|207303.20|1997-01-08|1-URGENT|Clerk#000001545|0|nts. carefully ruthless accounts cajole. slyly iro| +80521|646663|O|54828.39|1997-08-03|3-MEDIUM|Clerk#000003332|0|s. pending, express in| +80522|188989|O|261974.10|1996-10-15|4-NOT SPECIFIED|Clerk#000001082|0|hely carefully ironic accounts. fluff| +80523|71896|O|208012.48|1996-10-14|4-NOT SPECIFIED|Clerk#000000797|0|latelets wake furiously fluffily pending packages. furiou| +80524|94540|O|35884.76|1995-11-13|3-MEDIUM|Clerk#000001510|0|le foxes kindle slowly special dependencies. blithely regular requests | +80525|426608|O|109214.28|1998-01-18|4-NOT SPECIFIED|Clerk#000000689|0|ic accounts. ironic foxes use blithely carefully ironic accounts. asymptote| +80526|737738|F|297270.07|1993-11-30|1-URGENT|Clerk#000004041|0|ons. regular, ironic pinto beans use slyly furiously pending platelets. ironic| +80527|148678|O|6862.62|1998-06-07|4-NOT SPECIFIED|Clerk#000000311|0|dolites grow fluffily along the | +80552|580264|O|287643.09|1995-12-19|2-HIGH|Clerk#000004390|0|inal, regular ideas haggle regular requests? pending pack| +80553|217751|O|185316.14|1996-12-29|4-NOT SPECIFIED|Clerk#000000976|0|ronic platelets promise expres| +80554|481549|O|117773.88|1996-12-05|3-MEDIUM|Clerk#000002033|0|fluffily ironic warthogs breach quickly. quickly pending t| +80555|143963|F|241957.20|1994-07-29|3-MEDIUM|Clerk#000003284|0|usly doggedly express braids. pending acco| +80556|85175|F|178829.81|1992-02-15|5-LOW|Clerk#000000764|0|carefully special theodolites sleep carefully a| +80557|523837|O|207925.90|1996-01-06|5-LOW|Clerk#000004799|0|xcuses. final, unusual deposits nag blithely bold accoun| +80558|624617|F|281229.30|1993-04-14|2-HIGH|Clerk#000004600|0|ently regular foxes | +80559|182786|O|110446.31|1996-05-23|3-MEDIUM|Clerk#000003860|0|ggle quickly dolphins. fluffily unusual tithes around the special deposits bo| +80584|80551|F|13353.78|1993-04-05|3-MEDIUM|Clerk#000000572|0|quests haggle. furiously bold platelets| +80585|54428|O|198952.47|1997-12-11|2-HIGH|Clerk#000001320|0|s requests wake blithely after the | +80586|505778|O|237452.31|1996-01-17|5-LOW|Clerk#000001667|0|y even pinto beans. blithely unusual dependencies believe b| +80587|94067|O|133357.34|1996-08-23|1-URGENT|Clerk#000004968|0|ets affix blithely after the pending warhorses. even frets wake. exp| +80588|720079|O|41391.14|1995-09-03|3-MEDIUM|Clerk#000000252|0|ickly. regular, final accou| +80589|344641|F|341411.32|1992-03-25|5-LOW|Clerk#000003937|0|ic, final deposits us| +80590|104371|F|107673.54|1993-08-19|3-MEDIUM|Clerk#000001919|0|n requests: blithely ironic packages cajole quickl| +80591|637996|O|198722.72|1998-06-24|3-MEDIUM|Clerk#000004676|0| nag. slyly pending ideas among the ironic foxes haggle furiously regular | +80616|28414|F|285382.20|1992-07-24|3-MEDIUM|Clerk#000003024|0|beside the slyly final theod| +80617|534994|O|233364.25|1997-08-02|1-URGENT|Clerk#000001771|0|ously unusual packages. slyly pending packages haggle | +80618|628738|F|197675.67|1992-01-07|2-HIGH|Clerk#000004067|0|gular foxes. slyly even foxes boost fluffi| +80619|419200|F|205788.24|1993-05-06|3-MEDIUM|Clerk#000000348|0|e quickly fluffily even dependencies. f| +80620|739475|O|67246.62|1998-03-25|3-MEDIUM|Clerk#000002955|0|uriously. express, | +80621|101125|O|197596.24|1996-07-02|1-URGENT|Clerk#000002978|0|to beans about the regular, special requests run carefully expre| +80622|82246|F|51602.36|1994-09-22|3-MEDIUM|Clerk#000004771|0|ffily. special, regular foxes haggle ironic requests. regular, regu| +80623|44800|O|53501.98|1996-08-14|3-MEDIUM|Clerk#000000194|0|l requests. pinto beans against the platelets are slyly| +80648|673645|F|135592.90|1993-05-28|1-URGENT|Clerk#000002844|0|ss deposits. special packages believe sl| +80649|676480|F|269734.37|1994-10-31|1-URGENT|Clerk#000003658|0|. final, special packages according to | +80650|338570|O|65285.18|1997-06-23|3-MEDIUM|Clerk#000002188|0|blithely ironic somas. carefully express packages are careful| +80651|82828|O|37078.41|1997-11-20|3-MEDIUM|Clerk#000002373|0|e accounts. carefully regular | +80652|75157|O|184195.75|1996-12-25|4-NOT SPECIFIED|Clerk#000000417|0|dependencies! blithely unusual accounts wake even,| +80653|139624|O|139821.30|1998-04-17|5-LOW|Clerk#000003407|0| furiously bold accounts serve slyly regular pinto beans. even, final acc| +80654|651553|O|260484.27|1996-02-14|2-HIGH|Clerk#000000440|0|layers are daringly stealthy accounts. pearls haggle despite the blithely| +80655|637643|F|65016.78|1993-11-08|1-URGENT|Clerk#000000187|0|ajole fluffily even pinto beans. iro| +80680|101296|F|157242.40|1993-03-14|3-MEDIUM|Clerk#000000601|0|sits. deposits sleep. express i| +80681|699397|F|134560.01|1994-11-24|5-LOW|Clerk#000000135|0|inal dependencies serve quickly. carefully idle ideas cajole. | +80682|5797|O|58322.05|1996-02-26|4-NOT SPECIFIED|Clerk#000003672|0|lar deposits boost blithely. furiously even depo| +80683|655405|O|270871.51|1996-09-04|1-URGENT|Clerk#000001656|0| ideas was after the deposits; ev| +80684|109060|F|130706.96|1995-01-27|5-LOW|Clerk#000000519|0|requests haggle. slyly regular deposits| +80685|702160|O|233488.97|1997-08-11|5-LOW|Clerk#000004729|0|g pearls. furiously final pinto beans cajole | +80686|685943|O|210418.30|1996-06-10|2-HIGH|Clerk#000001374|0|ructions. fluffily ironic accounts integrate furiousl| +80687|385084|F|5125.82|1992-01-23|1-URGENT|Clerk#000001260|0|nic packages wake fluffily pinto bean| +80712|334325|P|152642.75|1995-05-19|3-MEDIUM|Clerk#000000526|0|ithely dogged packages are sl| +80713|743350|O|80046.83|1996-09-26|3-MEDIUM|Clerk#000004049|0|ress dolphins wake carefully. evenly unus| +80714|706606|F|312036.73|1992-05-03|5-LOW|Clerk#000002680|0|c accounts detect carefully according to the carefu| +80715|419873|O|7927.60|1996-08-14|1-URGENT|Clerk#000000664|0|ss attainments use quickly above the final f| +80716|40222|O|170296.28|1995-06-13|1-URGENT|Clerk#000002279|0|s print-- accounts cajole blithely. quickly ironic acco| +80717|255518|O|120665.55|1997-05-02|1-URGENT|Clerk#000002410|0|dolites. even pinto beans haggle furiously. express packages sleep idly i| +80718|725236|F|17248.49|1993-07-16|5-LOW|Clerk#000001444|0|unusual requests haggle final, bold attainments. | +80719|11750|F|65490.91|1994-08-24|3-MEDIUM|Clerk#000002943|0|he blithely final foxes sleep furiously du| +80744|219487|O|334726.74|1997-09-11|1-URGENT|Clerk#000002472|0|s. even platelets wake slyly. instructi| +80745|407053|F|228421.96|1992-09-15|3-MEDIUM|Clerk#000004088|0|e blithely alongside of the pinto beans. b| +80746|577111|O|115772.28|1995-12-31|1-URGENT|Clerk#000001193|0|unts. fluffily ironic platelets sleep f| +80747|490901|F|99765.44|1992-03-24|1-URGENT|Clerk#000000349|0|regular requests wake alongside | +80748|562853|F|14304.01|1994-08-18|1-URGENT|Clerk#000004942|0|usly even requests: slyly pending requests are doggedly accounts. | +80749|105919|F|312283.74|1992-02-21|3-MEDIUM|Clerk#000004503|0|oxes sleep thinly along the requests? final theodolites lose quickly final ins| +80750|419182|O|66875.42|1996-01-30|5-LOW|Clerk#000003960|0|nic requests wake furiously special deposit| +80751|438451|O|263390.77|1995-12-25|1-URGENT|Clerk#000000823|0|uests sleep furiously along| +80776|263179|F|195627.91|1994-12-10|2-HIGH|Clerk#000003471|0|d deposits wake among the pinto beans. unusual| +80777|484738|F|114087.29|1995-03-06|1-URGENT|Clerk#000002542|0|silent requests. quickly ironic requests above the iro| +80778|484775|F|49259.61|1992-09-01|2-HIGH|Clerk#000004699|0|ly according to the furiously ironic ideas. pinto beans are fu| +80779|347392|F|61365.27|1993-04-14|5-LOW|Clerk#000000576|0|y final grouches. regular ideas inte| +80780|599296|O|34979.88|1998-05-01|1-URGENT|Clerk#000003206|0|nently even excuses: sl| +80781|611497|F|22536.60|1992-09-19|5-LOW|Clerk#000004873|0|thely quickly unusual pinto beans. slyly pending foxes integrate a| +80782|159223|O|175410.34|1997-03-14|1-URGENT|Clerk#000004360|0|ular ideas are: regular packages maintain bl| +80783|47498|F|20708.29|1994-02-12|4-NOT SPECIFIED|Clerk#000001630|0|e fluffily unusual deposits. special platelets use| +80808|296767|F|154211.88|1995-02-25|5-LOW|Clerk#000000308|0|cies sleep fluffily after the foxes. regular accounts use slyly thin ideas: qu| +80809|261146|F|134939.80|1992-03-13|4-NOT SPECIFIED|Clerk#000001438|0|ic instructions. regular depths sublate | +80810|75724|F|53576.90|1993-06-26|1-URGENT|Clerk#000000176|0|nstructions. platelets sleep. accounts are care| +80811|681187|O|190151.89|1997-06-17|4-NOT SPECIFIED|Clerk#000003698|0| blithely slyly ironic packages. furiously regu| +80812|702310|P|296473.22|1995-03-09|4-NOT SPECIFIED|Clerk#000000146|0|into beans! final requests| +80813|210928|O|43992.28|1998-06-28|3-MEDIUM|Clerk#000003952|0|n the regular accounts. carefully t| +80814|546868|F|104791.58|1993-02-18|2-HIGH|Clerk#000003354|0|thely. daringly even pinto beans sleep: ironic dependencies haggle furiously| +80815|690301|F|96242.55|1994-11-18|5-LOW|Clerk#000004496|0|courts. slyly even theodolites cajole slyly furiously careful dol| +80840|106823|F|90710.08|1993-11-01|2-HIGH|Clerk#000001428|0|its haggle quickly among the fluf| +80841|619768|F|82498.21|1994-06-07|5-LOW|Clerk#000004736|0| packages. daringly re| +80842|432101|F|65840.81|1994-05-20|1-URGENT|Clerk#000002346|0|to beans cajole caref| +80843|71290|O|52490.17|1996-01-14|2-HIGH|Clerk#000001620|0|onic foxes engage thinly along the slyly regular excuses. blithely fur| +80844|404513|O|153694.55|1996-12-02|5-LOW|Clerk#000000975|0|slyly express deposits. furiously unus| +80845|647992|F|199981.47|1995-03-15|3-MEDIUM|Clerk#000000915|0|. carefully ironic pinto beans | +80846|40976|O|95506.55|1995-11-20|4-NOT SPECIFIED|Clerk#000002191|0|arefully carefully regular platelets. deposits could have to sleep blithely. | +80847|173113|F|115431.72|1994-06-04|3-MEDIUM|Clerk#000003541|0|final Tiresias are slyly along | +80872|243946|O|264394.10|1997-07-02|4-NOT SPECIFIED|Clerk#000000989|0| excuses. regular, regular dolphins cajole ironic deposits. permanently fi| +80873|479642|O|63308.62|1997-10-31|2-HIGH|Clerk#000004826|0|y across the slyly regul| +80874|326704|O|58614.50|1995-09-18|5-LOW|Clerk#000000687|0| packages. fluffily even sauternes grow furiously pending instructions. slyly| +80875|136225|F|153329.45|1993-01-12|2-HIGH|Clerk#000003132|0|ose excuses affix. carefully bold deposits sleep furiously. express, expres| +80876|513220|F|209675.54|1994-05-20|3-MEDIUM|Clerk#000004947|0|old theodolites detect slyly. thin deposits haggl| +80877|657008|F|174433.66|1994-06-29|4-NOT SPECIFIED|Clerk#000003607|0|deposits. fluffily ironic instructions poach at the ironic deposits. f| +80878|67700|O|113870.75|1997-03-29|4-NOT SPECIFIED|Clerk#000002027|0|ng to the carefully regular deposits wake furiously regular excu| +80879|83357|O|99066.42|1997-07-13|5-LOW|Clerk#000004722|0|lly blithe excuses snooze carefully final requests: carefully special cou| +80904|728329|O|77722.14|1996-03-25|4-NOT SPECIFIED|Clerk#000001935|0|arefully against the accounts-- fluffily express platelets are. sl| +80905|251656|F|98710.39|1994-07-29|2-HIGH|Clerk#000001126|0|s. ironic deposits affix about the bravely special packa| +80906|315410|F|94343.87|1994-04-24|4-NOT SPECIFIED|Clerk#000004494|0|n excuses besides the even requests wake blithely of the furiously fin| +80907|85942|O|402248.25|1996-12-28|2-HIGH|Clerk#000003624|0|as are regular requests. ironic Tiresias around the furiously iron| +80908|668218|O|150413.50|1995-06-26|1-URGENT|Clerk#000000262|0|s. express pains nag furiously even pinto beans: furiously express foxes | +80909|213815|F|271162.61|1993-04-06|3-MEDIUM|Clerk#000000175|0|sts haggle quietly bold, regular deposits. carefully| +80910|326099|P|209796.63|1995-04-30|1-URGENT|Clerk#000000316|0| bold requests. regular packages are fluffily even, express re| +80911|492640|F|53442.47|1994-03-30|4-NOT SPECIFIED|Clerk#000004776|0|olites wake careful| +80936|529838|O|135402.94|1996-09-21|5-LOW|Clerk#000001556|0|he carefully unusual packages-| +80937|222229|O|263522.37|1998-02-27|4-NOT SPECIFIED|Clerk#000003113|0|above the ironic, quick asymptotes. blithely regular instructions nag slyly | +80938|722017|F|237360.30|1992-09-07|1-URGENT|Clerk#000003807|0|kages wake furiously slyly ironic packages. r| +80939|687827|F|212864.89|1992-05-11|5-LOW|Clerk#000001026|0| regular packages. blithely regular deposits are al| +80940|544030|F|200091.57|1993-08-02|5-LOW|Clerk#000003935|0| furiously daring deposits-- ironic, regular accounts boost bli| +80941|259561|O|9821.55|1997-05-27|5-LOW|Clerk#000004170|0| carefully slow foxes. slyly ironic pinto beans after the specia| +80942|440902|O|26028.74|1998-03-24|5-LOW|Clerk#000001885|0|cial, even excuses are furiously requests. ex| +80943|208858|O|86153.92|1996-11-22|1-URGENT|Clerk#000004094|0|e blithely after the furiously ironic ideas| +80968|269032|F|64900.23|1994-07-02|5-LOW|Clerk#000001657|0|ges sleep. fluffily regular dependencies sleep quickly| +80969|608227|F|55879.06|1994-07-11|2-HIGH|Clerk#000001212|0|s dazzle carefully regular packages. fina| +80970|693422|O|306089.06|1997-05-12|4-NOT SPECIFIED|Clerk#000003557|0|ts. slyly even deposits wake furiously slyly regular deposits. pinto bean| +80971|88781|F|240405.84|1994-02-02|1-URGENT|Clerk#000000305|0|uffily silent deposits wake after the s| +80972|377969|O|265913.50|1996-11-14|2-HIGH|Clerk#000000846|0|al requests. fluffily regular theodolites wake above the| +80973|23203|O|241333.80|1997-05-21|3-MEDIUM|Clerk#000000452|0|uffily pending asymptotes wake quickly even accounts. sl| +80974|704840|F|202942.26|1992-12-10|2-HIGH|Clerk#000004214|0|e sauternes boost even accounts: quickly regular accounts| +80975|736411|F|269558.20|1993-04-16|4-NOT SPECIFIED|Clerk#000003098|0|s boost. blithely p| +81000|344242|F|63906.93|1992-09-22|1-URGENT|Clerk#000001700|0|oxes? blithely pending pinto | +81001|169762|F|118265.50|1994-01-25|5-LOW|Clerk#000000485|0|lly about the even p| +81002|187382|O|114099.34|1996-01-26|4-NOT SPECIFIED|Clerk#000003984|0| above the ironic deposits haggle slyl| +81003|72055|O|114494.59|1995-07-31|4-NOT SPECIFIED|Clerk#000001239|0|en accounts boost carefully furiou| +81004|515542|O|11525.98|1996-08-02|4-NOT SPECIFIED|Clerk#000003980|0|ly bold foxes haggle blit| +81005|688906|F|192934.20|1992-05-31|4-NOT SPECIFIED|Clerk#000002059|0|tructions wake quickly final foxes. carefully ironic th| +81006|672208|F|33265.65|1992-03-25|4-NOT SPECIFIED|Clerk#000004141|0|encies cajole blithely regular, silent | +81007|547664|O|112269.00|1998-04-21|2-HIGH|Clerk#000002721|0| fluffily regular instructions! quickly regular accounts nag above the package| +81032|581773|O|90021.15|1995-07-31|1-URGENT|Clerk#000001628|0|gular theodolites. regular,| +81033|101519|O|171358.99|1997-02-02|2-HIGH|Clerk#000002697|0|ress sheaves haggle according to the carefully regular pin| +81034|724022|F|39026.32|1994-04-15|2-HIGH|Clerk#000001494|0|ithely after the slyly idle deposits. quickly iron| +81035|621982|O|122371.96|1997-01-29|4-NOT SPECIFIED|Clerk#000000029|0|s alongside of the pending ideas h| +81036|140977|O|245879.25|1996-02-21|4-NOT SPECIFIED|Clerk#000003862|0|ges. quickly final packages snooze f| +81037|118423|O|268856.11|1998-07-04|4-NOT SPECIFIED|Clerk#000002302|0|osits cajole furiously. pending, unusual tit| +81038|576503|F|92254.19|1994-06-03|2-HIGH|Clerk#000004341|0|blithely; quickly regular orbits h| +81039|20932|F|202785.97|1993-06-03|3-MEDIUM|Clerk#000001671|0|are furiously alongside of the silent deposits. care| +81064|53545|O|166316.13|1997-01-21|5-LOW|Clerk#000004022|0|s haggle quickly special dinos: bold, special accounts use. final accounts a| +81065|652096|F|65378.71|1992-02-20|1-URGENT|Clerk#000002182|0| packages boost above the closely pending requests. blithely final packages| +81066|12874|F|87906.91|1994-07-11|5-LOW|Clerk#000003010|0|finally. silently reg| +81067|367874|F|18526.50|1994-10-03|3-MEDIUM|Clerk#000001302|0|s use slyly along the express, regular accounts| +81068|591962|O|178770.98|1996-09-15|1-URGENT|Clerk#000004496|0|ly across the blithely final plate| +81069|348952|F|140970.35|1993-11-27|2-HIGH|Clerk#000003797|0|onic packages are carefully. furiously ironic accou| +81070|560345|O|135257.93|1997-04-03|3-MEDIUM|Clerk#000004981|0|ake. slyly special instructions cajole slyly blithely unusual| +81071|707212|F|233343.52|1993-02-12|5-LOW|Clerk#000001914|0|hely furiously final packages. pending, ironic frets haggle | +81096|81121|O|189938.82|1997-09-19|4-NOT SPECIFIED|Clerk#000000533|0|fully ironic asymptotes eat furiously along the excuses. blithely ironic ac| +81097|621508|F|82786.36|1993-01-16|1-URGENT|Clerk#000003956|0|e carefully-- final accounts use furiously against | +81098|402608|F|137269.72|1995-03-08|3-MEDIUM|Clerk#000002831|0|yly? carefully final requests between the carefully ironic requests boost| +81099|129604|O|127923.75|1998-04-22|1-URGENT|Clerk#000004768|0|mptotes. fluffily f| +81100|229744|O|282683.24|1998-07-17|3-MEDIUM|Clerk#000003226|0|ar deposits sleep bl| +81101|289928|O|161504.23|1997-01-10|4-NOT SPECIFIED|Clerk#000003951|0|y special pinto beans dazzle slyly after the carefully final packages-- pe| +81102|67084|F|265742.69|1993-06-03|3-MEDIUM|Clerk#000001900|0|osits are. ideas sleep. carefully | +81103|229570|O|24011.26|1997-02-18|3-MEDIUM|Clerk#000004427|0|against the blithely final| +81128|370150|O|161254.85|1996-09-15|2-HIGH|Clerk#000003675|0|sts. silent dependencies wake blithely. requests | +81129|580231|F|157346.83|1992-08-17|3-MEDIUM|Clerk#000002581|0|y. sly multipliers afte| +81130|429821|O|177419.92|1997-11-20|1-URGENT|Clerk#000001122|0|ily express pinto bea| +81131|744757|O|150829.69|1996-05-19|5-LOW|Clerk#000002888|0|n carefully slyly final deposits. pending pl| +81132|373354|P|207529.95|1995-03-23|2-HIGH|Clerk#000002744|0| slyly special foxes use carefully against the furiously silent courts. | +81133|435658|F|74231.39|1992-06-07|1-URGENT|Clerk#000003742|0|ously regular deposits. blithely express excuses cajole f| +81134|583309|O|193933.79|1997-12-28|4-NOT SPECIFIED|Clerk#000001677|0|es cajole along the bold, ironic excuses. even accounts d| +81135|402863|O|12310.95|1998-03-03|5-LOW|Clerk#000002722|0|heodolites cajole slyly af| +81160|665180|P|37305.03|1995-04-02|2-HIGH|Clerk#000003929|0|waters. pending, final foxes use | +81161|171967|F|409168.05|1994-08-12|1-URGENT|Clerk#000000861|0|ar deposits. furiously regular p| +81162|474565|O|58499.99|1996-08-31|5-LOW|Clerk#000001790|0|nic deposits may hinder blithely above the slyly regular esc| +81163|508961|F|195809.10|1994-09-27|5-LOW|Clerk#000004408|0|sts sleep carefully. slyly brave excuses cajole slyly carefully ruth| +81164|345775|O|81916.69|1996-07-03|5-LOW|Clerk#000001447|0|bove the even decoys. pend| +81165|424577|F|144747.51|1993-07-17|3-MEDIUM|Clerk#000004734|0|packages. idle accounts wake slyly. carefully brave dolphins boost furiously | +81166|353506|O|124668.26|1998-01-11|5-LOW|Clerk#000004047|0|kages across the furiously ironic hockey players sleep fluffily even deposit| +81167|609497|O|220744.00|1995-07-28|2-HIGH|Clerk#000002531|0| pending requests. blithely brave pa| +81192|309434|F|22202.76|1994-05-24|3-MEDIUM|Clerk#000001787|0|fily final accounts wake quickl| +81193|145025|O|75096.18|1997-01-12|1-URGENT|Clerk#000003853|0|kly special accounts haggle. carefully special ins| +81194|674378|F|41398.01|1994-02-27|5-LOW|Clerk#000001116|0|ronic deposits poach blithely ironic accounts. furiously | +81195|259304|O|266403.82|1997-01-02|5-LOW|Clerk#000004133|0|eodolites after the busily ironic theodolites cajole acr| +81196|611278|O|160033.54|1997-01-30|2-HIGH|Clerk#000003378|0|al deposits. deposits haggle furiously.| +81197|221965|O|62518.17|1997-04-19|1-URGENT|Clerk#000001960|0|thely even packages boost against the accounts| +81198|37642|O|259047.69|1996-01-19|2-HIGH|Clerk#000001098|0|xes. blithely final instructions wake blithely packages. slyly unus| +81199|383407|O|57455.04|1998-04-01|4-NOT SPECIFIED|Clerk#000002880|0|rhorses are carefully slyly express accounts! regular, even deposits | +81224|663205|O|16035.16|1996-01-17|1-URGENT|Clerk#000003317|0| bravely unusual accounts thrash blithely. carefully ex| +81225|732052|O|162550.35|1998-03-02|1-URGENT|Clerk#000001992|0| alongside of the doggedly even instructions. carefully even deposits will h| +81226|587596|O|87308.31|1996-04-12|3-MEDIUM|Clerk#000000530|0|s. regular pinto beans affix alongside of the slyly unusual asymptotes. | +81227|442900|O|232164.55|1996-02-27|3-MEDIUM|Clerk#000004381|0|nal accounts sleep carefully slyly ironic| +81228|59992|F|204201.34|1992-05-29|4-NOT SPECIFIED|Clerk#000001577|0|quests boost across the depos| +81229|263120|O|72633.79|1998-07-29|3-MEDIUM|Clerk#000004525|0|nusual requests against the ca| +81230|255830|F|279819.34|1994-06-04|5-LOW|Clerk#000003364|0|posits. blithely even| +81231|718426|O|53408.30|1998-01-18|5-LOW|Clerk#000004843|0|ing deposits. requests serve quickly| +81256|306001|F|34493.11|1994-05-08|3-MEDIUM|Clerk#000001356|0|ages. silent pains alongside o| +81257|193433|O|141747.36|1998-07-07|5-LOW|Clerk#000003834|0| special theodolites hagg| +81258|517783|O|8615.04|1995-06-21|2-HIGH|Clerk#000001041|0|y final ideas are quickly fluffily special ideas. ruthlessly even requests | +81259|127375|F|116632.33|1994-01-17|3-MEDIUM|Clerk#000000445|0|structions. furiously silent packages solve about the quickly fi| +81260|289231|O|153165.58|1998-05-08|5-LOW|Clerk#000004075|0|o beans. instructions above the slyly specia| +81261|335995|O|121417.07|1995-10-17|3-MEDIUM|Clerk#000002741|0|ep against the bold pint| +81262|305473|F|225627.11|1993-12-08|2-HIGH|Clerk#000003691|0|ests sleep. decoys integrate unusual, special sauternes| +81263|324013|F|173269.13|1992-11-28|5-LOW|Clerk#000001079|0| blithely bold requests wake quickly theodolites. final, even foxes i| +81288|662464|F|298252.48|1992-05-08|2-HIGH|Clerk#000002236|0|e quickly permanent accounts. slyly final packages p| +81289|261470|F|200903.42|1992-05-05|5-LOW|Clerk#000004004|0|furiously. deposits c| +81290|269626|O|146690.11|1997-06-15|3-MEDIUM|Clerk#000002782|0|counts. evenly silent d| +81291|77785|F|99660.36|1992-10-08|3-MEDIUM|Clerk#000000424|0|silent foxes. furiou| +81292|52546|F|227098.06|1992-07-04|5-LOW|Clerk#000003207|0|ay. express accounts wake across the final ideas. regular packag| +81293|383617|O|135707.18|1998-03-02|2-HIGH|Clerk#000001725|0|quickly quiet dependencies above the enticingly final packages are req| +81294|429319|F|45003.10|1993-03-26|5-LOW|Clerk#000004307|0|tes. quick deposits hang fluffily furiously pending pinto| +81295|556442|F|76525.21|1992-10-09|4-NOT SPECIFIED|Clerk#000001140|0|final, even deposits? furiou| +81320|362671|F|200018.30|1993-07-19|4-NOT SPECIFIED|Clerk#000003808|0|slyly final packages det| +81321|144418|O|273993.75|1997-01-07|4-NOT SPECIFIED|Clerk#000004160|0|thin, even pinto beans. regular packages unwind careful| +81322|232907|F|62560.98|1992-07-07|3-MEDIUM|Clerk#000001594|0|, final foxes are carefully. blithely ironic| +81323|211966|F|183264.66|1992-11-11|2-HIGH|Clerk#000003147|0| doggedly even dependencies. stealthy theodolites boost across the express p| +81324|5333|F|56079.06|1993-06-09|1-URGENT|Clerk#000000294|0|ously bold deposits. regularly ironic accounts nag qu| +81325|375449|O|269503.52|1996-05-23|5-LOW|Clerk#000004429|0|t the slyly final requests. regul| +81326|405769|O|298557.06|1997-05-20|4-NOT SPECIFIED|Clerk#000002756|0|fily special tithes| +81327|747328|O|254202.68|1997-06-09|4-NOT SPECIFIED|Clerk#000000234|0|he pending, blithe pinto beans. regu| +81352|78628|O|293464.32|1995-10-15|2-HIGH|Clerk#000001866|0|xpress pinto beans use slyly past th| +81353|723772|O|147244.88|1995-12-16|3-MEDIUM|Clerk#000003853|0| regular accounts are fluffily across the slyly regular theod| +81354|185452|O|241037.66|1996-07-15|1-URGENT|Clerk#000002000|0|instructions wake idly. ironic ac| +81355|625231|F|221581.01|1992-05-10|1-URGENT|Clerk#000003188|0|unts. frays wake carefully against the regular, unusual wat| +81356|746941|F|100901.47|1994-07-28|4-NOT SPECIFIED|Clerk#000000128|0|hely against the carefully ironic deposits. never pending requests wake care| +81357|331372|O|99070.22|1996-08-05|1-URGENT|Clerk#000003889|0|equests. fluffily pen| +81358|590501|P|156662.13|1995-02-27|5-LOW|Clerk#000001490|0| across the final requests sleep blithely according to the carefully bold re| +81359|537098|O|221616.88|1997-05-26|3-MEDIUM|Clerk#000002965|0|quick, express ideas detect. fluffily silent pearls wake sometimes. fluf| +81384|1961|F|22501.64|1995-03-27|2-HIGH|Clerk#000002871|0|the requests serve quickly regular| +81385|705622|O|159693.49|1997-04-08|5-LOW|Clerk#000002852|0|nst the bold packages. regular accounts are blithely. regular pinto beans | +81386|388861|F|334197.76|1994-04-18|4-NOT SPECIFIED|Clerk#000000947|0|dolites. carefully re| +81387|76235|O|112824.90|1997-01-09|4-NOT SPECIFIED|Clerk#000004541|0|fily final deposits detect carefully above the blithely| +81388|270772|O|293315.04|1996-03-21|5-LOW|Clerk#000004944|0| deposits are slyly above the blithely express | +81389|608246|O|186702.76|1996-06-21|4-NOT SPECIFIED|Clerk#000002336|0|thrash around the b| +81390|280735|F|245700.68|1992-11-05|4-NOT SPECIFIED|Clerk#000003040|0|pinto beans are carefully | +81391|51682|O|332573.23|1996-05-22|3-MEDIUM|Clerk#000002193|0|ely thin excuses. ironic excuses hagg| +81416|89554|F|165459.00|1994-05-29|4-NOT SPECIFIED|Clerk#000000417|0|inal patterns. slyly regular ideas | +81417|614563|O|144657.84|1997-06-29|3-MEDIUM|Clerk#000003330|0| requests. warhorses wake. ironic ac| +81418|706390|F|301034.23|1992-11-03|3-MEDIUM|Clerk#000001283|0|y close requests. special accounts detect. ironic patterns boost fluff| +81419|517862|F|16081.67|1995-03-30|4-NOT SPECIFIED|Clerk#000003173|0|y pending deposits cajole| +81420|693679|O|136595.12|1997-05-06|2-HIGH|Clerk#000002464|0|ions haggle against the regular, bold pinto beans. sl| +81421|649627|F|307260.59|1992-02-17|5-LOW|Clerk#000001740|0| bold platelets sleep blithely across the quickly even deposits.| +81422|522826|O|252322.62|1995-11-07|5-LOW|Clerk#000002171|0| fluffily above the b| +81423|118523|O|84793.59|1996-06-19|4-NOT SPECIFIED|Clerk#000002408|0|lly bold foxes sleep car| +81448|13330|O|33822.16|1995-12-17|1-URGENT|Clerk#000002545|0|y silent notornis use. even foxes unwind idly packages. special, | +81449|524833|F|239373.60|1992-12-10|5-LOW|Clerk#000004074|0|ctions nag carefully. theodolites boost sly| +81450|113143|F|182264.07|1992-01-13|1-URGENT|Clerk#000001435|0|e special accounts. bold d| +81451|338342|O|349848.10|1995-11-16|3-MEDIUM|Clerk#000001287|0|. fluffily silent ideas sleep quickly ironic| +81452|1513|O|236680.02|1995-08-02|2-HIGH|Clerk#000000171|0|ct quietly slyly regular de| +81453|665002|O|90939.20|1995-08-27|5-LOW|Clerk#000002618|0|lphins integrate carefully even accounts. blithe, fluffy notornis must | +81454|176902|F|51338.93|1992-02-24|1-URGENT|Clerk#000000103|0|l requests. special, pending courts haggle slyly| +81455|159958|F|128168.43|1992-08-09|2-HIGH|Clerk#000002265|0|rmanent ideas. carefully | +81480|413815|F|236396.05|1993-02-23|3-MEDIUM|Clerk#000000318|0|le quickly even packages. express deposits according to the fluffi| +81481|235439|O|362843.20|1996-11-05|3-MEDIUM|Clerk#000002513|0|structions nag carefully alongside of the bold, ironic packa| +81482|13259|F|208723.61|1992-10-27|1-URGENT|Clerk#000001628|0|requests haggle furious| +81483|81449|F|50854.00|1992-03-29|1-URGENT|Clerk#000003393|0|onic packages. bravely regular requests across the eve| +81484|152363|F|83370.99|1994-02-14|2-HIGH|Clerk#000003737|0|eodolites sleep furiously. silent requests according to the carefully fluff| +81485|249800|O|167369.57|1995-11-15|2-HIGH|Clerk#000000768|0|inal ideas. packages nag carefully along th| +81486|632773|F|105144.69|1993-06-05|4-NOT SPECIFIED|Clerk#000004410|0|ly express excuses haggle quickly| +81487|734723|F|404545.21|1992-06-15|1-URGENT|Clerk#000002330|0|efully express deposits are blithely. quickly ironic dependencies wake| +81512|482771|O|46002.12|1995-06-14|5-LOW|Clerk#000003504|0|packages snooze about the quickly sil| +81513|429268|O|396397.71|1996-06-30|4-NOT SPECIFIED|Clerk#000001426|0|ular theodolites among the slyly ironic packages wake sl| +81514|424625|F|218022.83|1993-02-15|4-NOT SPECIFIED|Clerk#000003245|0| unusual platelets. ruthlessly regular instructions alongside of th| +81515|421237|O|134826.86|1998-02-20|5-LOW|Clerk#000003970|0|posits wake. ironic requests affix even requests. quickly special foxes nag | +81516|453754|O|390797.70|1996-06-22|4-NOT SPECIFIED|Clerk#000002897|0|lites are along the doggedly thin requests. carefully even | +81517|225919|F|102198.66|1994-11-06|1-URGENT|Clerk#000004407|0|ies. blithely final deposits wake blithely regular pi| +81518|495409|O|42782.84|1997-01-03|3-MEDIUM|Clerk#000002700|0| blithely regular ideas integrate among the bold| +81519|576412|F|97000.80|1995-01-12|5-LOW|Clerk#000000392|0|ments about the carefully ironic excuses cajole slyly according t| +81544|740929|F|84095.80|1993-09-16|3-MEDIUM|Clerk#000004801|0|ake quickly about the quickly even packages. dependencies unwind quickly qu| +81545|520957|F|109902.28|1992-12-20|1-URGENT|Clerk#000002213|0|e furiously regular deposits wake ac| +81546|223042|O|103968.93|1996-08-05|4-NOT SPECIFIED|Clerk#000002481|0|pearls boost carefully slyly pending account| +81547|143309|O|55609.33|1997-04-22|4-NOT SPECIFIED|Clerk#000001728|0|sleep alongside of the packages. express accounts aga| +81548|335947|F|19545.67|1993-06-01|3-MEDIUM|Clerk#000003713|0|jole carefully across the express, special foxes. pinto beans cajol| +81549|244270|O|249264.60|1997-09-01|3-MEDIUM|Clerk#000000409|0|accounts can boost against the unusual accounts. never ironic orbits cajol| +81550|682271|O|157447.26|1995-10-10|4-NOT SPECIFIED|Clerk#000003992|0|blithely ruthlessly ironic ideas. special asymptotes haggle. s| +81551|170818|O|109171.20|1998-03-17|2-HIGH|Clerk#000000403|0|he express accounts. slyly even packages cajole furiously. requests | +81576|675296|O|172614.39|1998-02-27|3-MEDIUM|Clerk#000001607|0|s despite the gifts wake slyly always final requ| +81577|695467|O|280280.84|1995-11-05|3-MEDIUM|Clerk#000003439|0| final accounts boost courts. | +81578|708121|O|314857.83|1998-02-06|1-URGENT|Clerk#000004647|0|es x-ray fluffily among the fluffily regular theodolites. deposits wak| +81579|378076|O|53175.64|1995-10-28|2-HIGH|Clerk#000003099|0| haggle slyly. requests haggle. quickly final dep| +81580|305713|O|222244.45|1996-08-05|1-URGENT|Clerk#000002391|0| sometimes unusual packages cajole alongside of the s| +81581|606854|O|234939.48|1998-06-12|3-MEDIUM|Clerk#000000819|0|ully express ideas. slyly express theod| +81582|137779|F|116378.62|1993-11-14|3-MEDIUM|Clerk#000002506|0|xcuses. furiously final requests against| +81583|372340|F|44869.66|1992-06-26|4-NOT SPECIFIED|Clerk#000002856|0|nding pinto beans. slyly unusual pinto beans cajole furiously specia| +81608|637454|O|44078.52|1996-12-18|4-NOT SPECIFIED|Clerk#000001332|0|lly permanent pinto beans boost above the furiously | +81609|674783|O|165544.59|1996-04-02|2-HIGH|Clerk#000002610|0|t the quietly special platelets. carefully ironic foxes| +81610|312710|F|76919.19|1993-03-28|3-MEDIUM|Clerk#000003574|0|ly ironic packages boost blithely. dogged, express p| +81611|456862|F|66156.33|1993-10-03|4-NOT SPECIFIED|Clerk#000002778|0|st the blithely final packages sleep alongside of the| +81612|700409|P|153468.06|1995-03-08|1-URGENT|Clerk#000000596|0|ding accounts are across the carefully regular deposits. final deposits | +81613|522109|O|229019.76|1997-06-10|3-MEDIUM|Clerk#000003331|0|e slyly according to the carefully unusual deposits. slyly pending instruc| +81614|80327|F|155472.85|1994-05-22|2-HIGH|Clerk#000002699|0|furiously above the unusual pac| +81615|46426|F|160546.82|1992-12-22|5-LOW|Clerk#000004032|0|y unusual accounts are ideas. furiously expre| +81640|275854|F|182161.61|1994-04-14|2-HIGH|Clerk#000001933|0|wly regular dolphins. quickly regular ideas boost. blithely f| +81641|514199|F|167114.92|1992-05-28|2-HIGH|Clerk#000002104|0|ly ironic multipliers above the quickly special foxes sleep carefully | +81642|633595|F|167316.23|1994-10-05|1-URGENT|Clerk#000000038|0| ironic accounts nag according to the nev| +81643|317909|O|264796.61|1998-02-04|5-LOW|Clerk#000003760|0| quick requests. ironi| +81644|88693|F|63933.35|1993-12-02|3-MEDIUM|Clerk#000003720|0|ounts. fluffily close foxes x-ray. blithely silent requests boost furiou| +81645|392300|O|162888.08|1996-06-06|2-HIGH|Clerk#000000072|0|pinto beans. quickly unusual pinto beans| +81646|119302|F|42382.02|1992-06-02|4-NOT SPECIFIED|Clerk#000001369|0|e quickly careful asymptotes cajole fluffily above the quickly final| +81647|341035|F|189303.94|1992-04-17|3-MEDIUM|Clerk#000001972|0|the carefully pending pa| +81672|255181|O|286952.01|1996-11-12|1-URGENT|Clerk#000002772|0|ans: bold dependencies wake. regular, bold asymptotes ca| +81673|305524|O|89320.90|1997-07-11|1-URGENT|Clerk#000004310|0| packages wake fluffily at the requests. permanently blithe deposits detect sl| +81674|421121|O|415646.51|1998-02-02|3-MEDIUM|Clerk#000001126|0|ously ironic accounts nod fluffily quiet| +81675|16693|O|307440.74|1997-04-10|4-NOT SPECIFIED|Clerk#000002420|0| quickly-- final accounts across the furiously express packages thrash | +81676|31433|F|46846.90|1993-09-13|1-URGENT|Clerk#000002711|0| regular requests hang. dogged, pend| +81677|277942|O|224389.96|1997-10-18|1-URGENT|Clerk#000000756|0|counts cajole furiously about the | +81678|354835|F|49432.45|1992-08-18|2-HIGH|Clerk#000001941|0|. blithely ironic pinto beans around the stealthy, regula| +81679|452216|O|81660.87|1996-08-20|2-HIGH|Clerk#000000020|0|ly slow packages. quickly final pinto bean| +81704|637025|F|274526.03|1995-02-15|2-HIGH|Clerk#000000478|0|onic grouches detect slyly special packag| +81705|218827|O|56911.56|1998-05-09|5-LOW|Clerk#000003716|0|eep slyly furiously busy accounts. evenly stealthy depe| +81706|570994|O|105106.16|1997-08-08|3-MEDIUM|Clerk#000004898|0| final asymptotes ar| +81707|418669|F|106906.40|1994-02-23|2-HIGH|Clerk#000001975|0|uriously. silent pinto beans | +81708|46406|F|268596.72|1992-05-31|4-NOT SPECIFIED|Clerk#000001619|0|es against the final deposits cajole| +81709|692333|O|93063.85|1996-03-29|3-MEDIUM|Clerk#000002351|0|wake. carefully pending ideas wake bli| +81710|531358|O|163591.94|1997-09-07|1-URGENT|Clerk#000002786|0|usly final pinto beans. final packages after| +81711|262789|F|37516.01|1995-03-16|5-LOW|Clerk#000004970|0|al accounts sleep. regular accounts c| +81736|692537|F|316587.87|1994-02-15|1-URGENT|Clerk#000003531|0|beans are slyly quickly regular dep| +81737|212870|F|108345.33|1993-06-27|3-MEDIUM|Clerk#000002755|0| regular instructions around the furiously ruthless accounts cajole fu| +81738|196574|F|290587.12|1994-04-03|2-HIGH|Clerk#000004332|0|ar packages against the slyly regular dependencies nod fu| +81739|62981|O|136891.43|1997-12-23|4-NOT SPECIFIED|Clerk#000001043|0|equests use above the pending, regular ideas. blithely regular depende| +81740|271126|F|170182.54|1993-06-03|3-MEDIUM|Clerk#000003195|0|e ironic, express packages. ironic excuses doub| +81741|538846|F|230001.72|1994-04-21|1-URGENT|Clerk#000001953|0|packages are carefully slyly final foxes. express deposits cajole furio| +81742|117763|F|21738.59|1993-05-10|5-LOW|Clerk#000003754|0|riously regular requests. slyly even| +81743|730088|F|202465.40|1992-03-07|4-NOT SPECIFIED|Clerk#000002171|0|ronic packages. slyly pending requests above the bold| +81768|587996|O|49035.33|1998-07-06|1-URGENT|Clerk#000001209|0|sts. slyly silent theodolites dazzle about the quickly final pinto beans. s| +81769|443209|F|361795.91|1993-04-17|3-MEDIUM|Clerk#000004728|0|t slyly along the furiously bold instructions. slyly special pinto| +81770|737452|F|251637.02|1994-06-21|4-NOT SPECIFIED|Clerk#000004865|0| pending packages wake slyl| +81771|587258|F|178936.87|1994-02-08|5-LOW|Clerk#000000014|0|asymptotes are blithely foxes. quickly express courts nag blithely reg| +81772|28477|O|112388.07|1995-11-20|5-LOW|Clerk#000003293|0|even notornis sleep | +81773|106022|O|266075.12|1997-01-23|1-URGENT|Clerk#000004135|0|ct carefully. silent packages use slyly| +81774|660622|O|66241.75|1997-12-08|4-NOT SPECIFIED|Clerk#000003123|0|ly even ideas snooze slyly along the regular accounts. doggedl| +81775|63037|F|177166.48|1994-05-13|2-HIGH|Clerk#000001340|0|yly unusual dependencies. | +81800|436717|O|195658.49|1997-03-12|5-LOW|Clerk#000000813|0|urts. carefully express foxes are evenly around the express| +81801|381605|O|162183.08|1997-01-13|3-MEDIUM|Clerk#000000968|0|olites about the special, ironic accounts ca| +81802|373196|F|175029.48|1992-05-08|1-URGENT|Clerk#000002813|0|osits. ironic instructions lose about the furiously unusual deposits. fluffily| +81803|41722|F|344885.23|1994-09-20|4-NOT SPECIFIED|Clerk#000001921|0| quickly ironic requests are carefully against the sl| +81804|711568|O|105675.55|1996-04-02|5-LOW|Clerk#000004163|0|ully silent dependencies. blithely regular pains boost | +81805|540499|F|155195.72|1994-11-15|2-HIGH|Clerk#000000714|0|requests cajole slyly| +81806|143014|F|84222.84|1993-11-10|5-LOW|Clerk#000004385|0|sleep carefully even pinto beans. ironic deposits across the blithely| +81807|612754|P|282031.50|1995-05-17|5-LOW|Clerk#000004943|0|ckages sleep evenly final pinto bea| +81832|306403|O|234234.22|1995-06-20|4-NOT SPECIFIED|Clerk#000003167|0|ress, slow ideas. furiously regular packages impress. b| +81833|208534|O|192473.84|1995-06-27|4-NOT SPECIFIED|Clerk#000003439|0|hely. regular deposits boost blithely quickly regular accounts. carefully| +81834|51664|F|164897.33|1992-04-27|1-URGENT|Clerk#000000391|0|nts thrash boldly fluffily even pint| +81835|545572|O|160256.11|1996-02-28|1-URGENT|Clerk#000001027|0| accounts. furiously special requests about the slyly bold packages wake f| +81836|660628|F|157370.50|1995-01-08|4-NOT SPECIFIED|Clerk#000002901|0|rs. furiously bold deposits| +81837|153671|O|135482.22|1996-09-28|1-URGENT|Clerk#000003860|0|the final pinto beans haggle furiously about the ideas. pending instruc| +81838|492956|O|87179.74|1995-08-06|4-NOT SPECIFIED|Clerk#000003342|0|the carefully unusual d| +81839|607940|F|104316.91|1995-01-03|1-URGENT|Clerk#000003685|0|nic, ironic deposits engage slyly besides the special, specia| +81864|385711|O|113817.61|1996-08-04|2-HIGH|Clerk#000004805|0| engage slyly across the ideas. pending, even ideas are.| +81865|385907|O|26987.11|1998-02-22|4-NOT SPECIFIED|Clerk#000000856|0|es. fluffily even deposits run furiously among the quickly f| +81866|673165|O|174992.36|1997-12-03|1-URGENT|Clerk#000002869|0|ic accounts. dugouts after the fluffily bold dep| +81867|102437|O|171681.55|1998-07-05|2-HIGH|Clerk#000002725|0|ronic theodolites. quickly regular pinto beans was fluffily regul| +81868|405583|F|54591.45|1992-11-18|1-URGENT|Clerk#000002808|0|al instructions. ironic packages u| +81869|624607|O|117287.31|1996-01-23|3-MEDIUM|Clerk#000004633|0|ly above the daringly regular theodolites| +81870|1159|O|231183.13|1998-01-13|4-NOT SPECIFIED|Clerk#000004194|0|o the final packages. bold epitaphs use slyly above the carefully final requ| +81871|700217|O|147632.66|1997-11-27|2-HIGH|Clerk#000001494|0|doggedly regular requests sleep furi| +81896|282814|F|191376.41|1993-06-06|5-LOW|Clerk#000000600|0|tructions-- carefully unusual excuses ca| +81897|497503|F|13629.40|1993-08-09|1-URGENT|Clerk#000001295|0|ven pearls cajole carefully. pending attainment| +81898|531596|O|224847.58|1997-06-25|2-HIGH|Clerk#000004633|0|bold packages dazzle slyly r| +81899|529501|O|66065.07|1995-12-30|5-LOW|Clerk#000000781|0|eep furiously express ideas. ironic warhorses are care| +81900|568471|O|63188.83|1997-05-28|4-NOT SPECIFIED|Clerk#000002714|0|ake furiously. slyly ironi| +81901|21169|F|343301.00|1993-07-27|3-MEDIUM|Clerk#000001101|0|the unusual, bold deposits. furiously regular courts eat after | +81902|286481|F|217579.49|1993-09-19|3-MEDIUM|Clerk#000000110|0|dly ironic tithes cajole fluffily carefully regular dependencie| +81903|626704|F|78859.43|1994-09-06|1-URGENT|Clerk#000002189|0|c accounts snooze instructions. blithely final d| +81928|6406|O|98442.30|1996-02-28|4-NOT SPECIFIED|Clerk#000003561|0|ironic accounts wake blithely accord| +81929|403136|O|91141.69|1995-12-08|1-URGENT|Clerk#000004517|0|. furiously careful packages among the foxes are carefully sl| +81930|748672|O|207467.43|1998-02-10|3-MEDIUM|Clerk#000003136|0|usly silent courts.| +81931|165863|F|170681.88|1993-06-21|4-NOT SPECIFIED|Clerk#000003077|0|ess deposits after the final accounts wake slyly along the furiously | +81932|653594|O|72477.43|1995-08-05|5-LOW|Clerk#000002652|0|ccounts cajole quickly alongside of the even asymptotes. slyly bold requests| +81933|447434|F|60355.23|1994-06-07|2-HIGH|Clerk#000001910|0| final foxes affix always re| +81934|513256|F|259910.38|1993-09-06|5-LOW|Clerk#000004320|0|wly pending packages wake quickly final| +81935|519913|O|65099.77|1996-10-08|1-URGENT|Clerk#000001234|0|out the regular, silent dependenci| +81960|653620|O|244627.04|1997-11-20|4-NOT SPECIFIED|Clerk#000002886|0|nal ideas haggle quickly excuses; carefully brave accounts cajo| +81961|114053|F|227078.95|1994-08-04|1-URGENT|Clerk#000001127|0|. bold, silent theodolites haggle furiously. i| +81962|631447|F|9864.46|1993-05-17|2-HIGH|Clerk#000001553|0|print above the never special | +81963|219127|O|228324.19|1995-09-07|3-MEDIUM|Clerk#000000376|0|furiously since the close requests. quickly bold accounts around the furiou| +81964|361429|F|149827.64|1992-09-23|2-HIGH|Clerk#000000645|0|l accounts cajole carefully ironic, regular accounts| +81965|279211|O|126946.87|1998-03-09|2-HIGH|Clerk#000004144|0|ly along the carefully specia| +81966|681073|O|16476.30|1996-12-25|3-MEDIUM|Clerk#000000388|0|s. quickly express packages haggle alongside of the ironi| +81967|283421|O|58505.81|1997-06-23|4-NOT SPECIFIED|Clerk#000002043|0|icingly regular instructions wake ca| +81992|197186|O|158028.02|1995-08-25|4-NOT SPECIFIED|Clerk#000001276|0|g, regular dolphins nod blithely expr| +81993|594958|F|150920.95|1993-09-23|4-NOT SPECIFIED|Clerk#000002809|0|xpress packages nod fluffily along the boldly even packages. pinto beans wake | +81994|454330|O|274847.65|1997-02-17|1-URGENT|Clerk#000000260|0|ly even deposits. furiously ironic requests according to th| +81995|153637|F|222240.48|1994-12-29|2-HIGH|Clerk#000001750|0|ong the quickly even accounts affix along the slyly even deposits. carefull| +81996|659066|O|133534.61|1997-03-24|3-MEDIUM|Clerk#000000973|0|se blithely silent ideas. thinly final deposits nag quickly iron| +81997|165487|O|176906.02|1996-04-16|2-HIGH|Clerk#000003559|0|ges sleep blithely. special, ironic deposi| +81998|322846|F|256118.34|1993-01-09|4-NOT SPECIFIED|Clerk#000001655|0|osits haggle slyly accord| +81999|563489|F|113754.98|1993-07-30|5-LOW|Clerk#000003871|0|ges. unusual foxes cajole regular packages. furiously even packages wake| +82024|307033|O|198495.70|1997-11-22|2-HIGH|Clerk#000003355|0|s. regular, bold excuses maintain. quickly even foxes haggle fu| +82025|292862|O|127495.39|1996-06-11|4-NOT SPECIFIED|Clerk#000001529|0|s haggle blithely. quietly ironic pinto beans along the carefully pending e| +82026|618469|F|186796.58|1993-12-18|2-HIGH|Clerk#000001855|0|furiously. slyly final accounts according t| +82027|332972|F|60400.10|1992-03-07|4-NOT SPECIFIED|Clerk#000003375|0|thely special packages| +82028|503152|F|2923.49|1993-03-12|5-LOW|Clerk#000004282|0|uts haggle above the regular, bold deposits. blithely e| +82029|219370|F|21154.70|1994-08-16|1-URGENT|Clerk#000001648|0|packages. brave, express deposits are along the re| +82030|668572|O|102503.03|1996-08-01|2-HIGH|Clerk#000003094|0|silent packages sleep slyly. ca| +82031|179357|O|78243.04|1998-03-17|2-HIGH|Clerk#000002232|0| according to the furiously pending theodolites. fu| +82056|196468|O|150009.99|1996-03-04|4-NOT SPECIFIED|Clerk#000003320|0|ular requests use furiously against the final account| +82057|509909|O|328913.50|1995-09-15|2-HIGH|Clerk#000004137|0| bold theodolites snooze blithely regular requests. bold ideas are slyly| +82058|536458|O|194369.13|1998-01-27|5-LOW|Clerk#000000750|0|cuses. blithely unusual accounts wake closely. quickly unusual theodolites| +82059|473396|O|81220.35|1996-06-19|3-MEDIUM|Clerk#000000057|0| x-ray slyly according to the slyly special deposits. even courts wake amo| +82060|351107|O|207120.96|1998-04-13|2-HIGH|Clerk#000000761|0| are slyly unusual requests! silently regular| +82061|49673|F|199410.76|1992-02-19|5-LOW|Clerk#000004776|0|ending frets. instructions about the blithely even ideas nag q| +82062|90073|P|138544.74|1995-03-24|5-LOW|Clerk#000002848|0|nts cajole bravely. blithely bold deposits x-ray| +82063|354586|O|177603.95|1997-11-15|3-MEDIUM|Clerk#000000025|0|thely blithely daring accounts. bold escapades | +82088|748804|O|247749.08|1998-04-18|1-URGENT|Clerk#000002369|0|-- slyly final deposits affix. fluffily unusual excuses along the carefully r| +82089|144271|F|137658.58|1994-07-07|5-LOW|Clerk#000000281|0| express excuses about the fina| +82090|6665|O|161545.03|1997-05-01|2-HIGH|Clerk#000000189|0|refully brave Tiresias haggle c| +82091|267526|F|108288.76|1994-09-15|3-MEDIUM|Clerk#000003270|0|ular deposits nag unusual, silent deposits. blithely | +82092|59305|O|10223.28|1997-03-29|3-MEDIUM|Clerk#000000582|0|nts wake slyly regular ideas. blithely bold dependencies are slyl| +82093|734996|F|152520.60|1992-09-24|3-MEDIUM|Clerk#000001651|0|after the silently even multipliers. deposits wake fluffily across the pinto| +82094|566962|O|188355.86|1995-10-05|4-NOT SPECIFIED|Clerk#000001245|0|ial realms. fluffily e| +82095|162911|F|198991.26|1995-01-07|4-NOT SPECIFIED|Clerk#000001484|0|quickly regular sauternes aroun| +82120|541429|F|85950.64|1992-11-23|4-NOT SPECIFIED|Clerk#000002042|0|ickly carefully unusu| +82121|44233|O|369480.23|1996-12-11|3-MEDIUM|Clerk#000003933|0| final ideas sleep furiously regular | +82122|170710|F|144147.90|1994-06-02|5-LOW|Clerk#000000578|0|oss the pending sentiments. packages haggle?| +82123|363361|F|59864.34|1992-08-30|4-NOT SPECIFIED|Clerk#000002626|0|ay according to the furiously ironic pinto beans. slyl| +82124|494254|O|3690.78|1997-07-11|2-HIGH|Clerk#000001488|0| ironic ideas along the bold requests are quickly along the special, regu| +82125|669644|F|168331.96|1992-09-08|1-URGENT|Clerk#000003787|0|s the special deposits boost alongside of the dep| +82126|190145|O|129186.32|1997-01-12|4-NOT SPECIFIED|Clerk#000001978|0|accounts. special, s| +82127|16402|O|181869.85|1996-01-16|3-MEDIUM|Clerk#000003980|0| unusual gifts. quickly ironic asymptotes try to haggle. bli| +82152|387653|O|128319.86|1998-02-13|2-HIGH|Clerk#000002991|0|y final dinos after the final, regular deposits hin| +82153|21127|O|159440.33|1997-06-04|4-NOT SPECIFIED|Clerk#000000046|0|accounts cajole quickly above the blithely final packa| +82154|319400|F|204165.48|1992-09-07|3-MEDIUM|Clerk#000001780|0|d ideas wake. final asymptotes boost. special pinto beans doze carefully b| +82155|391288|O|67086.92|1997-04-22|4-NOT SPECIFIED|Clerk#000001774|0| blithely even instructions. final | +82156|363266|F|47908.22|1992-03-06|3-MEDIUM|Clerk#000001574|0|t, silent packages believe r| +82157|408112|F|131959.19|1994-04-29|5-LOW|Clerk#000001315|0|xes. evenly special foxes nag carefully. furiously even ins| +82158|366503|O|145925.42|1998-03-03|5-LOW|Clerk#000001730|0|ing courts cajole. reg| +82159|54115|O|106529.31|1998-03-09|2-HIGH|Clerk#000000472|0|ole quickly furiously busy packages. slyly even multip| +82184|499439|F|200369.87|1994-08-11|5-LOW|Clerk#000001150|0|carefully past the slyly unusual courts. thinly final fox| +82185|66332|F|219725.52|1992-01-19|4-NOT SPECIFIED|Clerk#000003944|0|ly blithely bold dolphins. furiously final d| +82186|329191|F|45527.57|1994-02-15|4-NOT SPECIFIED|Clerk#000001585|0|nal packages. bold p| +82187|701689|F|30757.10|1993-09-23|5-LOW|Clerk#000002409|0|es. carefully ironic accounts haggle unusual acc| +82188|255146|F|111024.65|1993-02-17|2-HIGH|Clerk#000002153|0|busily even deposits. furiously even requests maintain blithely blithely | +82189|488233|O|112581.49|1996-04-08|1-URGENT|Clerk#000000053|0|beans sleep. final theodolites use quickly after the fluffily ironic pinto bea| +82190|720316|O|100251.45|1997-07-21|4-NOT SPECIFIED|Clerk#000002360|0|uriously final accounts wake slyly. final excuses are furiously fluffi| +82191|592715|F|216805.57|1993-07-21|3-MEDIUM|Clerk#000003430|0|ptotes into the blithely final requests are against t| +82216|255946|O|217160.78|1995-08-14|5-LOW|Clerk#000001876|0|gular asymptotes nag slyly. furiously | +82217|411121|O|24491.87|1997-10-24|2-HIGH|Clerk#000000514|0| express gifts. regular platelets are carefully along the | +82218|707695|F|114962.16|1994-10-09|3-MEDIUM|Clerk#000001314|0|final packages. instructions cajole carefully unti| +82219|696733|P|235916.95|1995-03-20|1-URGENT|Clerk#000004623|0|riously express, ironic pinto beans. close, express foxes are slyly aroun| +82220|217456|O|129737.37|1996-01-18|2-HIGH|Clerk#000000025|0| deposits wake furiously pending requ| +82221|8498|O|67214.22|1995-12-08|1-URGENT|Clerk#000004018|0|fily regular ideas. regul| +82222|323777|O|229453.61|1998-04-14|4-NOT SPECIFIED|Clerk#000002623|0|busy, ironic excuses. slyly pending| +82223|462332|O|299044.55|1997-01-16|1-URGENT|Clerk#000001306|0|uffily close ideas nag furiously. furiously regular accounts beli| +82248|410386|F|229233.10|1992-09-19|2-HIGH|Clerk#000002301|0| bold accounts wake across the quickly brave foxes. final, b| +82249|334703|F|219638.34|1993-11-16|2-HIGH|Clerk#000004991|0|blithely across the regular deposits. quickly iro| +82250|339212|F|17788.22|1993-06-24|4-NOT SPECIFIED|Clerk#000002493|0|bold requests use furiously pe| +82251|372904|O|70056.77|1998-03-27|1-URGENT|Clerk#000000405|0|lve carefully? foxes wake furiously fluffi| +82252|388873|F|19192.66|1994-09-23|3-MEDIUM|Clerk#000001734|0|y silent packages must ha| +82253|285340|F|247047.01|1994-03-04|1-URGENT|Clerk#000001640|0| quick deposits nag carefully. fluffily ironic r| +82254|197396|F|179666.25|1994-11-07|4-NOT SPECIFIED|Clerk#000002490|0|iously express deposits could have to cajole c| +82255|371245|F|51952.04|1994-03-05|2-HIGH|Clerk#000004346|0|. blithely ironic ideas sleep. pending, regular packages nod slyly acros| +82280|244960|F|211888.91|1993-08-19|5-LOW|Clerk#000003609|0|xes are quickly? requests along the instructions cajole abov| +82281|276730|F|63141.02|1992-07-02|2-HIGH|Clerk#000001677|0| packages. slyly special theodol| +82282|241094|O|134020.37|1996-10-08|2-HIGH|Clerk#000002233|0|ounts haggle; fluffi| +82283|552619|F|127878.83|1993-07-10|5-LOW|Clerk#000003602|0|. final foxes use! furi| +82284|613894|O|4845.61|1996-03-28|5-LOW|Clerk#000001201|0|arhorses against the carefully regular pinto beans cajole slyly dogged patte| +82285|709234|O|119531.11|1997-07-27|1-URGENT|Clerk#000001195|0|carefully. accounts according to the b| +82286|318472|O|269554.55|1996-07-13|4-NOT SPECIFIED|Clerk#000000388|0|inal deposits. theodolites | +82287|558133|O|248460.39|1996-01-20|5-LOW|Clerk#000002773|0|, final tithes promise carefull| +82312|289454|O|118283.00|1996-07-05|4-NOT SPECIFIED|Clerk#000000091|0|lar foxes. dolphins sleep stealthily across the deposits. furiously fina| +82313|350641|O|164569.24|1997-10-01|1-URGENT|Clerk#000001466|0|pending asymptotes are slyly carefully final ideas. expre| +82314|460979|O|5709.96|1997-10-20|4-NOT SPECIFIED|Clerk#000003022|0|fluffy, special deposits cajole alon| +82315|162799|F|19690.93|1993-07-11|3-MEDIUM|Clerk#000000644|0| pending platelets. slyly ironic requests wake blithely | +82316|142909|F|235234.78|1992-06-05|4-NOT SPECIFIED|Clerk#000000993|0|ual deposits sleep furiously. blithely even deposits nag acros| +82317|357586|F|30141.52|1992-04-16|2-HIGH|Clerk#000004922|0| the final deposits. fluffily regular pinto | +82318|181652|O|215479.05|1997-06-17|2-HIGH|Clerk#000003514|0|quickly carefully unusual deposits. flu| +82319|514360|F|395990.36|1994-11-27|4-NOT SPECIFIED|Clerk#000001770|0| platelets are bravely across the slyly express foxes. blit| +82344|317803|O|202806.61|1995-07-27|1-URGENT|Clerk#000002024|0| regular, pending dependencies| +82345|550225|F|139941.48|1993-03-22|1-URGENT|Clerk#000003399|0|lar requests. blithely fina| +82346|107144|F|168785.02|1994-08-01|4-NOT SPECIFIED|Clerk#000001581|0|lar instructions sleep carefully after th| +82347|13384|F|62343.48|1992-01-10|4-NOT SPECIFIED|Clerk#000003105|0|ptotes eat quickly above the bold requests: requests| +82348|665525|O|227755.02|1997-10-05|2-HIGH|Clerk#000004524|0|re furiously final packages. slyly unusual packages detect furio| +82349|718429|O|344462.62|1997-06-29|3-MEDIUM|Clerk#000000911|0| sometimes against the regular, pending f| +82350|385442|F|188057.19|1995-02-06|4-NOT SPECIFIED|Clerk#000001606|0|lites sleep slyly across the| +82351|367751|O|98186.16|1998-04-13|3-MEDIUM|Clerk#000000696|0|l foxes cajole regular packages.| +82376|39607|O|146073.47|1996-08-14|5-LOW|Clerk#000004162|0|ithely against the carefully final theodolites. blithely express instruct| +82377|405539|O|33143.54|1997-04-21|4-NOT SPECIFIED|Clerk#000002735|0|equests; carefully unusual requests are fluffily across the regular accounts.| +82378|643075|F|154539.20|1992-06-14|1-URGENT|Clerk#000000953|0| the bold pinto beans haggle closely across| +82379|631216|F|247831.99|1993-10-19|1-URGENT|Clerk#000001539|0|structions cajole slyly slyly pending sauternes. unusual, regular pac| +82380|81850|F|172984.73|1992-10-16|3-MEDIUM|Clerk#000002064|0|s cajole furiously. slyly regular accounts above the quickly final as| +82381|140321|P|206289.13|1995-03-07|4-NOT SPECIFIED|Clerk#000004576|0|es wake carefully express de| +82382|360631|F|174704.76|1993-08-08|4-NOT SPECIFIED|Clerk#000000406|0|cajole blithely final deposits. ironic, pending | +82383|361711|O|170084.63|1995-10-13|2-HIGH|Clerk#000003806|0|ccounts. deposits wake daring| +82408|507463|P|238446.62|1995-04-13|2-HIGH|Clerk#000001928|0|ross the furiously final accou| +82409|663668|O|145175.83|1995-09-20|5-LOW|Clerk#000002778|0| packages. furious, final deposits above the| +82410|266293|F|209605.88|1992-02-27|1-URGENT|Clerk#000004262|0|usly final platelets. even, express pinto bea| +82411|307825|O|10248.27|1995-11-20|3-MEDIUM|Clerk#000001399|0|en pinto beans. furiously pending theodolites| +82412|91646|O|252922.29|1996-01-26|3-MEDIUM|Clerk#000002216|0|instructions. ironic requests sleep fluffily e| +82413|528254|O|233964.72|1998-04-07|5-LOW|Clerk#000002531|0|equests unwind slyly carefully ironic ide| +82414|614494|O|306572.17|1996-08-17|2-HIGH|Clerk#000001430|0|ronic accounts. special ideas cajole fluffily. slyly bold requ| +82415|284858|F|133984.69|1992-04-25|4-NOT SPECIFIED|Clerk#000003321|0|use slowly. carefully pending patterns haggle fluffily blithely regular pint| +82440|343471|O|81061.70|1995-03-31|4-NOT SPECIFIED|Clerk#000000813|0|eans across the dependencies wake fluffily against the pending deposits. fur| +82441|694099|O|70250.15|1997-04-26|5-LOW|Clerk#000004481|0| bold packages are slyly according to the even instr| +82442|196717|O|204527.93|1998-01-17|1-URGENT|Clerk#000000855|0|e: furiously unusual accounts integrate fluffily after the e| +82443|211865|O|64159.61|1995-12-26|4-NOT SPECIFIED|Clerk#000002321|0|pecial deposits sleep carefully unusual excuses. fi| +82444|563182|O|113453.58|1996-11-23|3-MEDIUM|Clerk#000004605|0|riously pending deposits. furiously ironic dependencies after the regular p| +82445|392968|F|98007.47|1994-03-08|4-NOT SPECIFIED|Clerk#000002257|0|ts are blithely blithely ironic instructions. regular theodoli| +82446|95650|O|114297.97|1996-05-19|1-URGENT|Clerk#000001419|0|c theodolites mold carefully express instructions. quic| +82447|314329|O|35693.47|1997-05-26|4-NOT SPECIFIED|Clerk#000001148|0|accounts sleep furiously above the fluffily final theodolites. unu| +82472|675076|O|222857.13|1996-09-24|2-HIGH|Clerk#000003056|0| requests. quickly silent pinto beans sleep pen| +82473|729658|O|34937.01|1996-08-03|4-NOT SPECIFIED|Clerk#000004725|0|dugouts. silent foxes boost q| +82474|98413|F|142856.63|1994-07-04|4-NOT SPECIFIED|Clerk#000003587|0|ealthy grouches use closely ironic, special pinto | +82475|266500|F|133254.63|1993-03-14|1-URGENT|Clerk#000003523|0|ess instructions. blithely ironic accounts around the slyly express t| +82476|52091|F|127016.88|1993-11-16|2-HIGH|Clerk#000004909|0|nstructions nag slyly final deposits. quietly regular dolphins wake sly| +82477|228301|O|116615.49|1996-04-20|3-MEDIUM|Clerk#000001092|0|riously pending packages. fur| +82478|31075|F|33989.82|1994-05-27|1-URGENT|Clerk#000000819|0|furiously. brave requests haggle about | +82479|244169|O|183836.85|1996-08-28|5-LOW|Clerk#000001439|0|detect quickly ironic pinto beans. regular| +82504|488030|F|28315.98|1994-09-08|2-HIGH|Clerk#000002940|0|s affix boldly against the bold, final platelets| +82505|317747|F|141267.57|1993-12-18|5-LOW|Clerk#000004770|0|thely express pains wake furiously req| +82506|368555|F|115694.34|1993-06-23|4-NOT SPECIFIED|Clerk#000004011|0|posits. slyly enticing dugouts | +82507|52885|F|62623.96|1992-07-13|3-MEDIUM|Clerk#000002072|0|aggle slyly slyly speci| +82508|55717|O|106018.54|1995-10-02|5-LOW|Clerk#000001451|0|tes. pinto beans cajole fluffily. blithely pending instructions h| +82509|421858|F|216149.25|1994-07-03|5-LOW|Clerk#000002944|0|kages. dependencies wake furiousl| +82510|407762|O|213328.52|1997-03-27|1-URGENT|Clerk#000002281|0|ages haggle around the idle, e| +82511|491243|O|208704.20|1996-05-23|3-MEDIUM|Clerk#000002806|0| unusual deposits use carefully. express package| +82536|320788|F|175714.76|1994-02-19|4-NOT SPECIFIED|Clerk#000001044|0| ironic requests against | +82537|456265|F|13997.59|1994-07-28|3-MEDIUM|Clerk#000001765|0|ironic requests are ideas. ironic, unusual depos| +82538|432973|F|169358.13|1995-01-22|2-HIGH|Clerk#000000458|0| after the even, bold deposits. carefully even accounts among the furi| +82539|447682|F|135601.06|1992-10-06|4-NOT SPECIFIED|Clerk#000001152|0|ckly special requests alongside of the instruction| +82540|181033|F|253516.36|1995-01-08|5-LOW|Clerk#000001236|0|phins detect furiously alongside of the instructions. blithely regular asy| +82541|588232|F|279012.48|1994-05-03|4-NOT SPECIFIED|Clerk#000001365|0|s. brave theodolites sleep final, unusual foxes. c| +82542|655847|O|7854.80|1997-10-29|5-LOW|Clerk#000001639|0|inal accounts nag flu| +82543|68806|P|252296.19|1995-03-12|1-URGENT|Clerk#000001996|0|oxes cajole against the carefully furious| +82568|668386|F|16200.18|1992-08-08|3-MEDIUM|Clerk#000002632|0|lites. requests nag across the requests. fluffily regu| +82569|54622|O|338235.92|1998-05-16|1-URGENT|Clerk#000004384|0|ate quickly across the careful req| +82570|30902|O|4295.74|1996-04-17|5-LOW|Clerk#000003045|0|ly ironic excuses according to the unusual, regular dol| +82571|356884|F|190034.73|1992-02-18|5-LOW|Clerk#000003613|0|lly final foxes nag fluffily. u| +82572|396073|F|123119.12|1993-08-22|4-NOT SPECIFIED|Clerk#000003431|0|the blithely unusual requests. sometimes regular requests haggle b| +82573|541297|F|244215.80|1994-09-22|2-HIGH|Clerk#000004305|0|odolites. fluffily ironic deposit| +82574|58513|F|109934.49|1993-03-02|4-NOT SPECIFIED|Clerk#000002957|0|carefully. ironic packages above the slyly bold pinto | +82575|145576|O|249300.72|1995-06-10|5-LOW|Clerk#000000932|0|ly regular pains. ironic pearls wake slyly ironic deposits| +82600|180094|O|150598.36|1995-12-23|5-LOW|Clerk#000004358|0|pinto beans about the slyly regular packages doze expres| +82601|589657|F|170174.20|1992-05-19|2-HIGH|Clerk#000004744|0| slyly final accounts. unusual, silent packages sleep acco| +82602|583576|O|182666.98|1998-05-15|2-HIGH|Clerk#000003022|0|efully final requests haggl| +82603|409444|F|187219.08|1992-04-25|5-LOW|Clerk#000000026|0|aintain among the pains. regular excuses after the carefully regular mul| +82604|254350|O|203682.44|1998-05-19|3-MEDIUM|Clerk#000002685|0|equests. slyly final packages| +82605|578593|F|358883.03|1995-01-19|5-LOW|Clerk#000000786|0|thely unusual instructions? slyly regular deposits after the b| +82606|643529|F|170497.09|1992-12-10|4-NOT SPECIFIED|Clerk#000002137|0| the carefully bold requests. accounts cajole qui| +82607|39607|F|44125.39|1992-09-26|2-HIGH|Clerk#000002819|0|ic pinto beans unwind slyly regular packages. unusual, express requests cajol| +82632|424447|O|220415.30|1995-07-05|4-NOT SPECIFIED|Clerk#000000083|0|lithely furiously silent packages. carefully ironic| +82633|405485|O|3545.37|1998-06-27|1-URGENT|Clerk#000003210|0|s boost around the blithely special packages. quic| +82634|484774|F|300118.38|1994-02-06|5-LOW|Clerk#000001148|0| blithely fluffily regu| +82635|315907|F|229906.06|1993-11-30|1-URGENT|Clerk#000004369|0|ironic requests need to dazzle along the blithely even pinto beans. ca| +82636|172774|F|57480.90|1994-10-30|2-HIGH|Clerk#000004729|0|ut the requests are quickly across the blithely even deposits. carefully spec| +82637|561286|O|250928.56|1998-03-10|4-NOT SPECIFIED|Clerk#000004889|0|bold pinto beans against the requests are | +82638|9742|O|32037.11|1998-03-06|5-LOW|Clerk#000002638|0|lyly ironic packages are about the slyly regular ideas. | +82639|224902|F|184008.12|1994-10-21|1-URGENT|Clerk#000004883|0|ronic deposits. blithely pending requests after the slyly final account| +82664|673961|F|188265.81|1994-04-08|4-NOT SPECIFIED|Clerk#000000741|0|counts wake blithely bold deposits. carefully pending accounts cajole. even re| +82665|655|F|209878.41|1993-01-04|4-NOT SPECIFIED|Clerk#000000370|0|sly ironic accounts. carefully regular pinto beans sleep fluffily aft| +82666|502969|F|102014.21|1992-07-20|1-URGENT|Clerk#000004794|0| regular deposits sleep slyly special packages. platelets | +82667|121747|F|180130.23|1992-06-01|5-LOW|Clerk#000001368|0|ctions. final deposits haggle blithely. slyly express | +82668|182789|O|91164.07|1997-11-21|1-URGENT|Clerk#000002201|0|uests. fluffily special packages doze stealthily. carefully bold acco| +82669|132070|F|205201.72|1993-08-01|5-LOW|Clerk#000000165|0|tegrate quickly quickly ironic platelets! slyly reg| +82670|434803|O|334737.67|1995-06-24|2-HIGH|Clerk#000004706|0|express pinto beans. dependencies are slyly stealthily regular pinto beans.| +82671|466712|F|211571.08|1993-01-03|3-MEDIUM|Clerk#000000028|0|s. fluffily regular requests wak| +82696|523223|O|138845.42|1997-09-29|2-HIGH|Clerk#000004101|0|even foxes integrate against the slyly express deposits. unusual foxes ca| +82697|43610|O|143008.32|1995-08-06|4-NOT SPECIFIED|Clerk#000004910|0|y. requests integrate.| +82698|198224|F|37949.98|1994-03-02|3-MEDIUM|Clerk#000001351|0|l, pending packages sleep? special requests haggle blithely quickl| +82699|37318|F|188940.16|1993-03-08|1-URGENT|Clerk#000001779|0|g to the even accounts. ironic packages impress fluffily even instruction| +82700|184711|F|159683.67|1994-10-20|4-NOT SPECIFIED|Clerk#000004369|0| are. deposits boost quietly toward the| +82701|166829|F|223356.97|1993-11-11|4-NOT SPECIFIED|Clerk#000002753|0|nal foxes. final, final ideas about the slyly ironi| +82702|384655|O|221800.52|1996-03-24|1-URGENT|Clerk#000004118|0| furiously. slyly regula| +82703|627037|F|264708.38|1993-07-17|2-HIGH|Clerk#000002201|0|uests are carefully carefully regular platelets. expre| +82728|357323|F|250281.72|1994-08-09|4-NOT SPECIFIED|Clerk#000000415|0|- slyly even patterns use slyly. slyly bold requ| +82729|276607|O|233490.80|1998-02-06|5-LOW|Clerk#000004010|0| the express deposits. furiously special asymptotes nag along | +82730|430685|O|154712.49|1996-04-05|2-HIGH|Clerk#000002915|0|rding to the carefully even packages; blithely ironic depos| +82731|256825|F|4544.49|1994-12-30|5-LOW|Clerk#000002128|0|kly quickly bold the| +82732|178747|O|48662.82|1995-09-07|1-URGENT|Clerk#000004511|0|leep slyly express packages. slyly ironic deposits boost blithely. sl| +82733|432253|F|77531.06|1992-12-15|5-LOW|Clerk#000002143|0| fluffily unusual pinto beans sleep alongsi| +82734|351715|F|220549.83|1992-10-28|2-HIGH|Clerk#000001480|0|uctions wake against the furiously even requests. packages a| +82735|517945|F|287154.96|1992-06-07|3-MEDIUM|Clerk#000004156|0| sleep carefully. fina| +82760|588568|O|95487.04|1997-05-20|2-HIGH|Clerk#000004723|0| according to the unusual somas. ironic pinto beans boost alon| +82761|280954|O|97866.10|1995-10-31|1-URGENT|Clerk#000001647|0|ronic theodolites are. packages doubt against th| +82762|742696|F|268068.46|1994-06-22|1-URGENT|Clerk#000003055|0| above the pending accounts. carefully ironic| +82763|237548|O|294457.61|1998-07-30|4-NOT SPECIFIED|Clerk#000003124|0|ourts are furiously. special instructions nag furiously. fluffily even| +82764|218479|F|138896.83|1992-09-20|4-NOT SPECIFIED|Clerk#000004989|0|e quickly express pinto beans. unusual, cl| +82765|706393|F|39587.46|1994-05-15|3-MEDIUM|Clerk#000001424|0|s sleep slyly slyly express foxes. blithely pending Tiresias a| +82766|589808|O|149104.22|1995-12-19|3-MEDIUM|Clerk#000002217|0|rns. carefully ironic instructions sleep quickly final deposits. packa| +82767|137681|O|193833.17|1995-07-13|5-LOW|Clerk#000000174|0|quickly final accounts along the requests nag furiously re| +82792|240454|F|278546.79|1993-02-28|5-LOW|Clerk#000004039|0|yly across the foxes. pending, final requests across the fluf| +82793|278827|O|89447.75|1996-12-02|3-MEDIUM|Clerk#000000733|0|uests sleep against the furiously express deposits. regular requests nag blith| +82794|214546|O|149940.99|1996-07-20|4-NOT SPECIFIED|Clerk#000002685|0|ackages boost blithely above the even foxes. slyly regular deposits aff| +82795|600391|O|37728.13|1998-01-21|5-LOW|Clerk#000004655|0|y quiet deposits. fi| +82796|244229|F|66349.75|1995-03-02|4-NOT SPECIFIED|Clerk#000003833|0|ld requests. slyly quiet accounts use blithely foxes. b| +82797|746770|O|83933.59|1996-07-14|3-MEDIUM|Clerk#000000705|0|e carefully pending deposits. regular accounts according| +82798|440377|F|120362.29|1995-02-06|4-NOT SPECIFIED|Clerk#000004519|0| use slyly above the even| +82799|399632|O|45308.61|1996-07-27|2-HIGH|Clerk#000000334|0| integrate slyly. closely regular excuse| +82824|353725|O|77004.86|1997-03-06|4-NOT SPECIFIED|Clerk#000003634|0|uickly. boldly ironic theodoli| +82825|541756|F|60137.35|1994-10-23|4-NOT SPECIFIED|Clerk#000000634|0| haggle furiously. qui| +82826|266644|F|106587.21|1993-06-10|2-HIGH|Clerk#000001175|0|fully against the fluffily fina| +82827|226585|O|83006.81|1996-10-28|1-URGENT|Clerk#000002369|0|gular asymptotes are blithely fluffily regular accounts. requests above th| +82828|444884|O|9845.98|1997-03-15|1-URGENT|Clerk#000000014|0|tes play blithely dogged accounts! sl| +82829|414712|F|95254.04|1992-07-31|3-MEDIUM|Clerk#000002889|0|e unusual pinto beans; furiously even deposits cajole. pe| +82830|289949|F|117595.87|1993-05-13|1-URGENT|Clerk#000001000|0|ly ironic requests. blithely express requests cajole fluffily even depo| +82831|419864|O|161219.81|1995-06-20|4-NOT SPECIFIED|Clerk#000003216|0|rious instructions against the even dolphins hagg| +82856|644024|F|66384.50|1992-11-25|3-MEDIUM|Clerk#000004955|0| pending depths wake pe| +82857|96751|F|37790.63|1993-02-10|4-NOT SPECIFIED|Clerk#000001092|0|ly unusual theodolites kindle slowly slyly pending| +82858|78916|O|99382.68|1997-08-09|4-NOT SPECIFIED|Clerk#000001398|0|r excuses affix alongside of the special foxes. ironic accounts | +82859|312623|O|94424.85|1997-11-10|2-HIGH|Clerk#000004665|0|fully unusual packages use blith| +82860|494300|O|309784.93|1997-12-03|3-MEDIUM|Clerk#000001038|0|ons against the carefully ruthless foxes boost even depo| +82861|694712|F|55731.64|1994-09-20|1-URGENT|Clerk#000000953|0|posits cajole across the quiet, regular request| +82862|21919|F|122213.22|1993-03-30|3-MEDIUM|Clerk#000003398|0|sts sleep. slowly ironic deposits sublate against the furi| +82863|128275|F|300800.61|1995-02-03|3-MEDIUM|Clerk#000004658|0| haggle fluffily theodolites-- slyly special ideas wake blithely blith| +82888|386168|F|74608.03|1993-06-20|2-HIGH|Clerk#000000728|0|c, final deposits. quickly | +82889|558949|F|173285.65|1993-04-12|2-HIGH|Clerk#000000639|0| wake daringly across the ironic sentiments| +82890|504499|O|117895.24|1996-02-09|5-LOW|Clerk#000000369|0|cial, special excuses cajole furiously final platelets| +82891|360766|O|262414.04|1996-08-08|1-URGENT|Clerk#000000355|0| ironic theodolites. carefully unusual th| +82892|372772|F|140186.78|1992-08-03|2-HIGH|Clerk#000004933|0|ly final accounts. gif| +82893|419071|F|93247.07|1993-07-14|2-HIGH|Clerk#000001055|0|r pinto beans. fluffily silent foxes haggle furiously; carefull| +82894|58067|O|244935.00|1997-09-28|5-LOW|Clerk#000000710|0|mold around the regular, ironic i| +82895|165355|F|213684.12|1993-09-15|4-NOT SPECIFIED|Clerk#000003085|0|n requests. fluffily pending excuses are daringl| +82920|361015|O|50984.87|1998-05-14|2-HIGH|Clerk#000001604|0|e quickly bold requests; slyly final excuses across the r| +82921|57454|O|105775.83|1995-08-16|2-HIGH|Clerk#000002430|0|he deposits. fluffily ironic requests above the regular depo| +82922|359014|O|218478.31|1995-07-02|5-LOW|Clerk#000000971|0|final deposits. fluffily even pinto beans use furiously a| +82923|167791|O|86800.64|1996-09-26|5-LOW|Clerk#000000997|0|latelets unwind special instructions. express excuses along the | +82924|54394|O|40913.70|1995-06-04|3-MEDIUM|Clerk#000000550|0|ar foxes integrate furiously around the even, pending foxes. brave a| +82925|675187|F|224680.25|1992-04-09|2-HIGH|Clerk#000004057|0|oss the ironic, even excus| +82926|344791|O|40534.64|1997-12-28|5-LOW|Clerk#000001877|0| deposits. even ideas affix. ironic requests are quickly even p| +82927|394856|F|168817.73|1994-11-30|2-HIGH|Clerk#000002770|0|ial pinto beans above | +82952|343253|F|83038.12|1994-07-02|5-LOW|Clerk#000000806|0|refully special foxes. carefully final accounts against the slyly ironic e| +82953|49630|O|73886.05|1997-03-05|2-HIGH|Clerk#000000113|0|thely bold deposits. carefully ironic platelets cajole | +82954|119717|O|178680.21|1996-11-28|5-LOW|Clerk#000000718|0|re blithely; quickly | +82955|570604|F|157935.20|1994-10-30|5-LOW|Clerk#000002839|0|are furiously. fluffily special deposits sleep. unusual, final dependen| +82956|634837|F|37595.59|1993-06-20|5-LOW|Clerk#000004898|0|structions are furiously about the pinto beans-- special | +82957|204166|P|139595.80|1995-04-12|5-LOW|Clerk#000003645|0|ly furiously special asymptotes. sentimen| +82958|161408|O|74449.97|1996-06-11|4-NOT SPECIFIED|Clerk#000001236|0|e slyly unusual requests integrate slyly across th| +82959|21359|O|110928.98|1998-07-29|2-HIGH|Clerk#000004955|0|he accounts! bold packages sleep slyly| +82984|466978|F|33044.25|1993-12-07|3-MEDIUM|Clerk#000000915|0|ng the blithely special deposits are | +82985|499010|O|264837.10|1995-08-01|2-HIGH|Clerk#000003494|0|ges wake blithely. | +82986|347351|O|35457.67|1997-12-07|3-MEDIUM|Clerk#000002966|0| even packages along the furiously regular requests haggle after the pack| +82987|675710|O|325048.33|1995-06-26|2-HIGH|Clerk#000001682|0|furiously even requests wake f| +82988|147337|O|238266.31|1995-06-24|1-URGENT|Clerk#000002761|0|o the slyly sly theodolites. stealthily bold i| +82989|542662|P|132908.80|1995-03-30|2-HIGH|Clerk#000000801|0|romise across the carefully final instructions. carefully final pinto beans c| +82990|500582|O|56262.39|1998-03-07|5-LOW|Clerk#000004409|0|ckages above the slyly unusual asymptotes cajole carefully| +82991|518521|O|127690.27|1997-12-28|1-URGENT|Clerk#000003324|0|al ideas. unusual, bold courts cajole f| +83016|515077|F|251484.24|1994-04-21|4-NOT SPECIFIED|Clerk#000002670|0|egular packages. furiously unusual packages integ| +83017|372025|O|28582.78|1998-01-07|5-LOW|Clerk#000001345|0|asymptotes sleep. furiously close accounts haggle fluffil| +83018|590749|O|245513.33|1996-08-07|3-MEDIUM|Clerk#000001813|0|inder carefully after the furiously unusual requests. slyl| +83019|208021|F|248038.98|1994-05-02|2-HIGH|Clerk#000003406|0| special deposits snooze regular deposits. ironic requests across th| +83020|448472|F|314431.36|1993-01-19|3-MEDIUM|Clerk#000003323|0|d requests cajole. sometimes ironic foxes serve slyly carefully sil| +83021|711191|O|170154.44|1997-02-15|3-MEDIUM|Clerk#000001086|0|deas. furiously busy accounts a| +83022|220967|O|153320.19|1997-11-01|5-LOW|Clerk#000002946|0|ent excuses throughout the slyly pending accounts wake after t| +83023|535603|F|149986.68|1992-08-16|5-LOW|Clerk#000002278|0|r pinto beans are carefully silent fox| +83048|377860|O|159724.65|1998-05-16|3-MEDIUM|Clerk#000003757|0|en accounts. carefully | +83049|439654|F|135175.58|1992-03-02|5-LOW|Clerk#000003583|0|accounts. carefully ironic courts are| +83050|262025|O|205665.91|1996-12-04|4-NOT SPECIFIED|Clerk#000004627|0|es are carefully carefully express deposits! furiously even accounts boost fu| +83051|593836|F|99240.87|1993-03-24|3-MEDIUM|Clerk#000004075|0|ugouts serve fluffily across the slyly final accounts. reg| +83052|343973|F|209312.58|1993-01-12|4-NOT SPECIFIED|Clerk#000004997|0|nts eat. express, final accou| +83053|143725|O|212078.17|1995-09-16|4-NOT SPECIFIED|Clerk#000003294|0|ully regular requests sleep slyly slyly bold p| +83054|562388|O|98720.57|1996-09-10|1-URGENT|Clerk#000001776|0|oze furiously about the q| +83055|541696|O|91127.16|1998-01-19|1-URGENT|Clerk#000002412|0|egular accounts. qu| +83080|27686|O|42017.58|1996-09-24|3-MEDIUM|Clerk#000001484|0|lites. instructions need to nag. regular accounts boost carefully! blithel| +83081|315715|O|67493.24|1995-08-08|5-LOW|Clerk#000004697|0|es sleep. ironically pendi| +83082|706261|F|159642.39|1993-07-12|3-MEDIUM|Clerk#000002604|0|rve along the enticing, even accounts.| +83083|602078|F|111273.11|1994-09-14|4-NOT SPECIFIED|Clerk#000004235|0|uctions. carefully pending accounts use| +83084|123104|O|214856.30|1997-12-17|4-NOT SPECIFIED|Clerk#000002991|0|ound the furiously ironic packages. even dependencies detect. ironic | +83085|494422|O|124120.49|1996-05-20|3-MEDIUM|Clerk#000000152|0|the blithely even accounts| +83086|480469|O|30665.18|1997-09-12|2-HIGH|Clerk#000003174|0|ggle carefully after the quickly ironic packages. furiously| +83087|723682|O|331422.63|1998-04-03|5-LOW|Clerk#000003100|0|ly. final, regular requ| +83112|156656|F|174619.90|1993-06-17|3-MEDIUM|Clerk#000004526|0| impress quickly according to the furiously ironic foxes! | +83113|415234|F|106793.82|1992-11-21|3-MEDIUM|Clerk#000004953|0|osits are blithely. furiously ironic fox| +83114|58909|O|163671.08|1998-02-27|4-NOT SPECIFIED|Clerk#000004835|0|use blithely alongside of the fluffily bold| +83115|73252|O|69687.33|1996-05-08|3-MEDIUM|Clerk#000004180|0|arefully. carefully express accounts haggle furiously carefully s| +83116|371113|F|229326.09|1994-02-05|2-HIGH|Clerk#000002225|0| the even, final requests: blithel| +83117|268600|O|72895.06|1996-11-25|2-HIGH|Clerk#000000090|0|s. quickly regular packages after the slyly pending account| +83118|103675|F|201448.47|1994-05-15|3-MEDIUM|Clerk#000002138|0|requests. final, final theodolites against the fluffily iron| +83119|200695|F|42215.07|1995-02-02|2-HIGH|Clerk#000004313|0| deposits? slyly regular packages ac| +83144|308242|F|94559.28|1995-03-25|1-URGENT|Clerk#000003887|0|lites haggle carefully final foxes. reques| +83145|350635|O|44092.26|1997-04-30|5-LOW|Clerk#000004886|0|s: pending packages against the eve| +83146|358457|O|59269.09|1997-04-26|4-NOT SPECIFIED|Clerk#000004937|0|furiously after the carefully regular c| +83147|583543|F|72791.69|1993-10-13|3-MEDIUM|Clerk#000004672|0|ins boost blithely amon| +83148|590992|O|288264.86|1995-08-20|4-NOT SPECIFIED|Clerk#000003291|0|cross the slyly ironic| +83149|520183|F|49491.94|1995-03-12|5-LOW|Clerk#000000871|0|thely ironic deposits: fluffily express packages haggle even deposit| +83150|697225|O|52115.33|1996-02-17|2-HIGH|Clerk#000002754|0|lyly pending accounts haggle | +83151|258497|O|220610.27|1996-07-20|3-MEDIUM|Clerk#000000568|0|evenly final packages boost. slyly ironic fox| +83176|556853|O|234263.63|1997-09-24|5-LOW|Clerk#000004576|0|posits are carefully quickly pending accounts. blithely silent foxes sl| +83177|511865|O|39747.84|1998-05-30|1-URGENT|Clerk#000001300|0|y regular requests are fluffily about the daringly un| +83178|413876|O|52190.61|1997-07-08|2-HIGH|Clerk#000003947|0|uffily special packages kindle quickly. closely f| +83179|503792|F|261527.02|1994-12-19|1-URGENT|Clerk#000003046|0|riously furiously final forges. accounts cajole slyly special instructions| +83180|480061|O|168222.43|1995-07-06|5-LOW|Clerk#000004317|0|quests wake carefully ironic accounts; carefully pending ideas| +83181|623665|F|58762.58|1993-05-10|4-NOT SPECIFIED|Clerk#000004526|0|regular asymptotes. carefully regular packages above the quickly even acc| +83182|654892|F|175792.89|1994-05-04|2-HIGH|Clerk#000001832|0|fully ironic theodolites wake slyly. thinly regular d| +83183|490390|F|163612.89|1993-11-17|5-LOW|Clerk#000001139|0|e furiously express packages. slyly final requests cajole across the| +83208|218918|O|62294.23|1998-01-11|3-MEDIUM|Clerk#000001015|0|ly silently ironic | +83209|597857|O|323130.78|1996-02-09|4-NOT SPECIFIED|Clerk#000003483|0|ely final accounts cajole furiously quickly regular foxes! bold, final req| +83210|421717|F|139484.28|1994-12-07|5-LOW|Clerk#000003530|0|express depths are. final, final accounts sleep blithely: | +83211|288826|F|77274.79|1993-06-23|2-HIGH|Clerk#000004385|0|carefully special accounts against the special, ironic attainments will | +83212|278533|O|321750.82|1997-10-08|2-HIGH|Clerk#000002608|0|hely final excuses. blit| +83213|540430|F|102668.06|1995-01-27|1-URGENT|Clerk#000003757|0|elets engage fluffily according to the qu| +83214|503108|O|32148.34|1996-05-03|1-URGENT|Clerk#000003385|0| quickly even foxes integrate accord| +83215|232565|O|198347.13|1998-03-14|3-MEDIUM|Clerk#000002641|0|ld dolphins about the bold instructions | +83240|457930|P|177099.22|1995-03-05|4-NOT SPECIFIED|Clerk#000001263|0|e busily along the packages: special, special requests affix closely even,| +83241|660806|O|94415.30|1996-06-06|4-NOT SPECIFIED|Clerk#000001788|0|r regular accounts serve blithely even theodolites. someti| +83242|153110|F|309315.10|1994-05-12|4-NOT SPECIFIED|Clerk#000003257|0|xpress foxes cajole blithely along the silent packages. blith| +83243|54302|P|180703.65|1995-05-21|2-HIGH|Clerk#000001962|0|. carefully ironic theodolites sleep quic| +83244|647560|F|149878.75|1992-03-07|5-LOW|Clerk#000004300|0|above the pending, express packages. unusual accounts about the unusual, reg| +83245|266809|O|186813.29|1998-02-16|1-URGENT|Clerk#000001756|0|s. quickly regular theodolites grow slyly final pinto beans. special,| +83246|730918|F|56270.59|1992-07-19|3-MEDIUM|Clerk#000004066|0|ongside of the fluffily reg| +83247|288667|F|283422.24|1993-03-21|2-HIGH|Clerk#000001935|0|slyly bold requests sleep stealthily af| +83272|595751|O|259615.15|1996-09-25|1-URGENT|Clerk#000003890|0|counts cajole fluffily. blithely thin instructi| +83273|280877|O|137502.37|1997-03-17|1-URGENT|Clerk#000000130|0|ly express dinos. furiously express foxes wake permane| +83274|193726|O|95066.35|1998-03-03|2-HIGH|Clerk#000004122|0| theodolites. regular asymptotes inte| +83275|200468|O|308446.34|1997-07-14|3-MEDIUM|Clerk#000000055|0|special somas. final pla| +83276|258535|F|172834.89|1993-01-03|4-NOT SPECIFIED|Clerk#000002927|0|ironically even ideas wake blithely over the special, ironic packages!| +83277|438722|F|81901.10|1994-10-15|4-NOT SPECIFIED|Clerk#000001948|0|final requests above the carefully bold pi| +83278|346729|F|141594.03|1994-05-18|5-LOW|Clerk#000000075|0| accounts cajole quickly even | +83279|715169|O|243450.16|1996-06-30|3-MEDIUM|Clerk#000000417|0| regular requests. furiously regul| +83304|330844|F|81826.59|1993-03-20|4-NOT SPECIFIED|Clerk#000001017|0| believe blithely. fluffily regular theodolites eat carefully ruthlessly iro| +83305|725741|F|174791.00|1992-12-15|3-MEDIUM|Clerk#000004124|0|s. pinto beans cajole blithely. bold deposits ar| +83306|262531|F|53227.38|1992-03-12|1-URGENT|Clerk#000001482|0|ickly pending instructions ought t| +83307|99025|O|92571.13|1998-05-15|2-HIGH|Clerk#000002693|0|r, bold requests serve fluffily alongside of the special, | +83308|62171|O|164117.70|1997-07-01|2-HIGH|Clerk#000004708|0|ending asymptotes print quickly around the furiously furi| +83309|143540|O|132302.32|1995-09-25|4-NOT SPECIFIED|Clerk#000000713|0|ng to the doggedly ev| +83310|463504|O|63213.47|1995-08-30|5-LOW|Clerk#000004941|0|ously ironic decoys. packages kindle carefully. a| +83311|595445|O|208043.59|1995-10-25|5-LOW|Clerk#000002351|0|e along the daringly final requests. escapades against the sly packages nag am| +83336|389041|O|153494.68|1996-10-14|1-URGENT|Clerk#000002098|0| slyly pending packages. quickly final requests| +83337|96716|F|168556.76|1992-01-08|3-MEDIUM|Clerk#000003567|0| regular foxes. quickly ironic r| +83338|254347|F|208142.85|1992-11-15|2-HIGH|Clerk#000004807|0| furiously. slyly even packages hag| +83339|531676|F|241699.50|1994-12-21|2-HIGH|Clerk#000004185|0|ully carefully regular packages. slyly iron| +83340|357374|O|149362.53|1997-06-13|5-LOW|Clerk#000000415|0|ages. even requests| +83341|374602|F|36106.61|1992-05-27|5-LOW|Clerk#000000265|0|ng deposits doubt quickly. blit| +83342|431569|O|2061.73|1995-07-21|5-LOW|Clerk#000003050|0|gle furiously perma| +83343|99089|F|40983.36|1993-02-27|1-URGENT|Clerk#000000231|0|s: regular, ironic ideas sleep carefully blit| +83368|379190|O|220919.68|1996-05-25|2-HIGH|Clerk#000003298|0|refully ironic requests. blithely ironic dependencies subl| +83369|295193|F|187911.51|1994-11-05|5-LOW|Clerk#000004762|0|s haggle slyly. blithely ironic deposits haggle-- final deposits cajo| +83370|48514|P|281710.77|1995-05-04|3-MEDIUM|Clerk#000002239|0|y bold deposits nag. pending excuses wake blithely about the final dinos. iron| +83371|99157|F|20267.37|1994-02-07|2-HIGH|Clerk#000003685|0|ronic ideas cajole. slyly final braids sleep after t| +83372|9505|F|148126.15|1994-12-16|4-NOT SPECIFIED|Clerk#000002490|0|y unusual packages. furiously e| +83373|725824|O|386680.43|1998-01-13|5-LOW|Clerk#000004387|0|heodolites. ironic excuses according to the doggedly | +83374|152665|F|200773.69|1992-12-27|5-LOW|Clerk#000004516|0|ely regular deposits above the final requests are across the sl| +83375|71147|F|128572.01|1993-08-18|2-HIGH|Clerk#000004222|0|eposits. blithely fin| +83400|251809|O|88779.49|1996-08-06|3-MEDIUM|Clerk#000003597|0|r instructions use requests. ca| +83401|632611|F|139938.25|1992-10-18|4-NOT SPECIFIED|Clerk#000001606|0|totes run furiously about the carefully bold deposits. | +83402|262555|O|84863.55|1997-03-19|5-LOW|Clerk#000004655|0|sly quiet accounts. deposits wake. regular, bold pinto beans are never pe| +83403|509299|O|134903.64|1998-07-26|4-NOT SPECIFIED|Clerk#000002703|0|thely even foxes. even, regular requests wake fu| +83404|36101|O|271639.00|1997-10-08|5-LOW|Clerk#000000706|0|ular pinto beans. carefully unusual excuses dazzle furio| +83405|735740|F|175208.95|1992-01-15|2-HIGH|Clerk#000002984|0|ickly regular patterns maintain furi| +83406|320719|O|43306.28|1998-06-27|4-NOT SPECIFIED|Clerk#000004498|0|thely ironic accounts along the packages wake bl| +83407|69565|O|55861.22|1995-10-22|2-HIGH|Clerk#000001687|0|asymptotes sleep slyly along the even pinto bean| +83432|667507|F|45098.87|1994-01-05|1-URGENT|Clerk#000004136|0|xpress theodolites. unusual packages sleep| +83433|269588|F|76446.54|1994-01-03|4-NOT SPECIFIED|Clerk#000004185|0|its are ironic accounts! platelets eat | +83434|200533|F|177130.00|1992-04-16|4-NOT SPECIFIED|Clerk#000001763|0|slyly according to the unusual, ironic theodolites. blithely fina| +83435|607862|O|315115.11|1996-01-09|1-URGENT|Clerk#000001294|0|s are carefully after the carefully ironic instructions. blithely pending pa| +83436|578365|F|265477.42|1992-05-09|4-NOT SPECIFIED|Clerk#000003698|0|ly express deposits. f| +83437|570508|O|132353.91|1998-02-06|3-MEDIUM|Clerk#000003751|0|express deposits. ironic ideas wake after the pending packag| +83438|526624|F|247577.69|1993-07-17|3-MEDIUM|Clerk#000003134|0|iously final foxes integrate pending platelets. ironi| +83439|214463|O|44434.04|1997-01-11|5-LOW|Clerk#000003812|0|ons. express, special pinto beans sleep careful| +83464|718369|F|130378.61|1994-04-05|3-MEDIUM|Clerk#000003005|0| after the slyly permanent instruct| +83465|111025|O|311016.95|1997-09-14|2-HIGH|Clerk#000003375|0|uffily across the carefully regular accounts. final accounts | +83466|742048|F|237590.83|1994-10-23|1-URGENT|Clerk#000004934|0|ide the slyly regular accou| +83467|592168|O|188402.56|1996-09-22|4-NOT SPECIFIED|Clerk#000003350|0| accounts wake after the furi| +83468|63823|O|108672.97|1997-01-27|2-HIGH|Clerk#000001464|0|oxes. furiously unusual pinto beans sleep caref| +83469|141067|O|154388.83|1996-01-09|5-LOW|Clerk#000003840|0|oss the final accounts. carefully final packages haggle blithely abou| +83470|156440|O|143811.06|1998-05-28|1-URGENT|Clerk#000001478|0|ideas wake. regular packages sleep: quickly pending depos| +83471|520900|P|110932.71|1995-05-31|1-URGENT|Clerk#000001101|0|ts sleep blithely among the final instr| +83496|937|F|149684.33|1992-10-21|2-HIGH|Clerk#000001214|0| regular pinto beans hang slyly about the ideas. carefully even deposits acc| +83497|716182|F|74530.76|1994-12-21|1-URGENT|Clerk#000003248|0|ow slyly despite the furiously ironic accounts. unusual theodolites use.| +83498|104482|F|274285.84|1992-08-08|3-MEDIUM|Clerk#000004927|0|ccounts above the furiously regular ideas haggle slyly regular acco| +83499|270034|F|327501.74|1994-12-28|4-NOT SPECIFIED|Clerk#000002409|0|sh carefully even packag| +83500|196480|O|73774.15|1997-05-16|2-HIGH|Clerk#000001993|0|. regular, even asymptotes| +83501|719243|O|215036.95|1997-12-09|1-URGENT|Clerk#000000588|0|inst the express, express exc| +83502|560561|O|257728.15|1996-06-05|4-NOT SPECIFIED|Clerk#000000867|0| slyly pending pinto beans play carefully along the furiously express inst| +83503|587851|P|219746.73|1995-03-22|5-LOW|Clerk#000001348|0|se furiously above the carefully unusual deposits; deposits wake | +83528|230848|O|192258.16|1998-05-03|2-HIGH|Clerk#000000415|0|al pinto beans. unusual sauternes haggle quietly. fluffily fi| +83529|108164|O|176056.85|1995-10-02|2-HIGH|Clerk#000000836|0|ckages. fluffily ironic pinto beans lose according to the carefully e| +83530|646171|F|21499.48|1992-07-19|2-HIGH|Clerk#000000816|0|lyly ironic packages sublate. | +83531|168697|O|210886.41|1997-08-11|5-LOW|Clerk#000003179|0|ages sleep slyly special foxes. deposits breach slyly? closel| +83532|263102|F|285307.87|1992-09-20|5-LOW|Clerk#000003188|0|ses integrate dolphins. quickly bold| +83533|705062|O|101726.38|1995-07-21|5-LOW|Clerk#000001782|0|structions along the carefully final accounts haggle blithely a| +83534|721226|F|87098.24|1994-02-24|3-MEDIUM|Clerk#000003236|0|the slyly regular accounts. final foxes cajole| +83535|143470|O|116406.19|1996-08-30|1-URGENT|Clerk#000001137|0|ng packages according to the bold, unusual deposits| +83560|18863|O|168022.46|1997-02-10|1-URGENT|Clerk#000002946|0|ly regular foxes solve fluffily blithely s| +83561|522850|O|17868.55|1997-11-25|1-URGENT|Clerk#000000551|0|print slyly. instructions use furiously. pending asymptotes among the furiou| +83562|525845|F|12298.80|1993-09-19|1-URGENT|Clerk#000001806|0|ironic dependencies above the carefully unusual packages c| +83563|614629|F|67207.43|1994-03-22|5-LOW|Clerk#000000397|0|carefully. fluffily ironic courts atop the furiously regular deposits | +83564|314926|O|176294.50|1997-04-26|4-NOT SPECIFIED|Clerk#000000872|0|to the packages! ironic, ironic | +83565|194597|F|153951.94|1993-11-02|5-LOW|Clerk#000003317|0|ests sleep even, unusual accounts. quickly regular foxes according| +83566|576022|F|412557.56|1993-03-05|5-LOW|Clerk#000000298|0|ly final courts boost furiously. bold packages use around| +83567|177625|F|133943.79|1992-02-14|3-MEDIUM|Clerk#000003764|0| foxes wake slyly special deposits. r| +83592|340292|F|327895.08|1994-06-17|4-NOT SPECIFIED|Clerk#000003366|0|tly bold packages. asympto| +83593|521374|F|54754.72|1994-08-14|5-LOW|Clerk#000004548|0|tes snooze regular, careful foxes. blithely final ideas among| +83594|471577|F|22206.13|1993-11-28|4-NOT SPECIFIED|Clerk#000003094|0|oxes are after the enticing packages. bold requests are. requests above | +83595|521911|O|373854.83|1995-10-27|3-MEDIUM|Clerk#000001770|0|latelets. bravely ironic| +83596|505186|F|115999.37|1993-02-02|3-MEDIUM|Clerk#000003114|0|efully bold accounts haggle. platelets| +83597|658489|O|110889.24|1997-02-15|3-MEDIUM|Clerk#000003872|0|the unusual package| +83598|215146|F|202053.19|1993-05-31|5-LOW|Clerk#000002085|0| furiously ironic theodolites lose quickly slyly regul| +83599|199213|F|56598.24|1992-04-10|2-HIGH|Clerk#000004411|0|uses. blithely final accounts toward the pinto bean| +83624|147232|F|240139.63|1992-03-11|4-NOT SPECIFIED|Clerk#000004686|0|nally special depths boost under the eve| +83625|246910|O|123981.97|1996-09-06|4-NOT SPECIFIED|Clerk#000002907|0|deposits. even, final foxes promise slyly. even, regular t| +83626|36631|O|211096.44|1997-01-10|1-URGENT|Clerk#000004139|0| ironic, ironic attainments detect carefully. even requests are blithe| +83627|632948|P|117029.10|1995-05-30|4-NOT SPECIFIED|Clerk#000000881|0|usly ironic ideas hinder around the silent, bold ideas. carefully even ins| +83628|700957|F|61235.90|1994-11-18|4-NOT SPECIFIED|Clerk#000000264|0|theodolites. final foxes along the blithely enticing requests are ca| +83629|712168|P|147714.64|1995-05-03|3-MEDIUM|Clerk#000004339|0|. ironic asymptotes cajole blithely regular theodolites. carefully final pa| +83630|124405|F|138723.93|1995-02-17|5-LOW|Clerk#000001177|0|riously final foxes eat fluffily packages. slyly special fox| +83631|617875|F|288357.10|1994-03-20|3-MEDIUM|Clerk#000002792|0| furiously regular accounts h| +83656|118051|F|199346.29|1993-06-10|5-LOW|Clerk#000003593|0| ironic dinos. quickly ironic dolphins a| +83657|330169|F|281100.22|1994-12-24|3-MEDIUM|Clerk#000001691|0|eep fluffily final, pending deposits. requests cajole permanently final epitap| +83658|620686|F|69099.13|1993-06-03|5-LOW|Clerk#000001310|0|special requests could have to affix pinto beans. final,| +83659|117425|F|235450.89|1992-02-18|4-NOT SPECIFIED|Clerk#000002363|0|slyly foxes. unusual, pending ideas wake finally final accounts. r| +83660|310706|O|1157.35|1998-01-26|5-LOW|Clerk#000003465|0|ly special packages haggle s| +83661|521954|O|217260.33|1995-12-26|4-NOT SPECIFIED|Clerk#000003083|0|ilent requests haggle blithely slyly exp| +83662|475837|F|74670.29|1994-01-16|2-HIGH|Clerk#000002233|0|ly final, regular packages. accounts wake furiously unusual, pendin| +83663|125137|F|255630.47|1992-09-20|1-URGENT|Clerk#000004352|0| ironic asymptotes haggle. quickly even dependencies at the instru| +83688|164312|F|21529.64|1993-03-02|1-URGENT|Clerk#000001840|0|le quickly. quickly regular asymptotes | +83689|88697|O|193118.84|1998-01-01|4-NOT SPECIFIED|Clerk#000001283|0|long the furiously silent pinto beans. special accounts run c| +83690|471260|O|347059.78|1996-04-12|5-LOW|Clerk#000000660|0|ar deposits boost furious| +83691|454046|O|163707.10|1998-05-05|5-LOW|Clerk#000002827|0|n packages detect. furiously speci| +83692|643130|O|82644.28|1995-12-19|1-URGENT|Clerk#000001348|0|sly above the silent pinto beans. unusual | +83693|76361|F|215289.57|1992-05-16|1-URGENT|Clerk#000001474|0|the furiously ironic packages. excuse| +83694|144182|F|174008.76|1993-10-03|3-MEDIUM|Clerk#000002875|0|s cajole carefully. blithely even package| +83695|352|F|9792.39|1993-05-09|4-NOT SPECIFIED|Clerk#000001092|0|t slyly after the final requests. packages nod furiously express requests.| +83720|649825|O|9052.52|1996-06-12|2-HIGH|Clerk#000002424|0|gage slyly. silent dolphins cajole daringly unusual platelets. | +83721|97561|O|183694.41|1995-10-01|1-URGENT|Clerk#000000212|0|ly ironic foxes boost furiously carefully ironic requests. enticingly bold r| +83722|199381|O|264502.02|1998-05-19|4-NOT SPECIFIED|Clerk#000003021|0|he deposits cajole against the special accounts. quickly bold acc| +83723|721462|O|193399.49|1997-07-03|3-MEDIUM|Clerk#000001742|0|venly among the carefully even instructions. quickly final accounts| +83724|354676|F|82003.45|1993-11-11|4-NOT SPECIFIED|Clerk#000004541|0| accounts haggle. unusual platelets boost. regula| +83725|28804|O|120235.31|1997-01-12|1-URGENT|Clerk#000003999|0|deas use fluffily quick| +83726|328204|F|155333.29|1995-01-22|4-NOT SPECIFIED|Clerk#000002025|0|e instructions. carefully ironic packages affix blithely blithely sil| +83727|619016|F|181327.16|1994-01-12|4-NOT SPECIFIED|Clerk#000002345|0|ncies-- slyly unusual accounts nag fluffily. slyly ironic ideas hag| +83752|543104|O|150244.19|1997-11-08|4-NOT SPECIFIED|Clerk#000004447|0|ests. regular, express| +83753|441658|F|210127.81|1992-12-25|2-HIGH|Clerk#000003130|0| pending packages. bold theodolites are furiously. slyly bold| +83754|168469|O|190543.66|1996-10-18|4-NOT SPECIFIED|Clerk#000001605|0| nag blithely unusual packages. req| +83755|198358|O|203725.79|1995-10-29|2-HIGH|Clerk#000002899|0|y final asymptotes. carefully bo| +83756|43291|F|77380.50|1994-06-18|4-NOT SPECIFIED|Clerk#000000013|0|gular deposits poach deposit| +83757|63871|F|78599.24|1993-08-18|5-LOW|Clerk#000001363|0|hin accounts. furiously bo| +83758|228866|O|86370.53|1996-05-06|5-LOW|Clerk#000003588|0|equests sleep slyly ironic the| +83759|546469|F|28620.16|1994-10-25|1-URGENT|Clerk#000002148|0|ng to the furiously final instructions. sometimes special instructions in p| +83784|748331|O|175282.08|1997-12-15|1-URGENT|Clerk#000002372|0|ar packages detect furiousl| +83785|444920|F|305080.46|1992-03-18|2-HIGH|Clerk#000003100|0| the never special deposits. even, unusual packages are-- slyly ironic | +83786|266605|O|220571.65|1997-02-07|5-LOW|Clerk#000000679|0|gage regularly above the accounts. carefully ironi| +83787|302200|F|210883.05|1993-02-16|4-NOT SPECIFIED|Clerk#000003235|0|luffily final ideas. furiously express platelets hinder ag| +83788|63871|F|115030.65|1992-10-27|3-MEDIUM|Clerk#000003941|0|e the ironic ideas. qui| +83789|226408|O|20793.43|1996-04-01|3-MEDIUM|Clerk#000003118|0|fily. slyly regular asymptotes promise after the final theodolites.| +83790|460720|F|17053.21|1993-09-25|5-LOW|Clerk#000004537|0|nding, final asymptotes. regular dependenci| +83791|299359|F|81342.51|1994-08-09|5-LOW|Clerk#000000736|0|lyly unusual packages along the blithely special requests hang care| +83816|314116|F|42030.50|1993-08-31|3-MEDIUM|Clerk#000004222|0|ckly final dependencies nag quickly alongside of the instruc| +83817|94499|O|123098.76|1996-11-21|5-LOW|Clerk#000003748|0|at the pending packages cajole carefully ironic packages. asympt| +83818|494276|O|131780.32|1998-04-21|3-MEDIUM|Clerk#000001886|0|lyly bold dependencies? regular accounts unwind slyly fur| +83819|280102|F|58941.20|1992-01-17|2-HIGH|Clerk#000003742|0|ously about the pending dolphins. final, silent platel| +83820|643171|F|135307.79|1992-02-20|2-HIGH|Clerk#000003701|0| carefully unusual foxes nag quickly above the pending re| +83821|741824|O|133429.40|1996-04-09|3-MEDIUM|Clerk#000001135|0|ully ironic courts haggle carefully alongside of| +83822|572116|F|56923.81|1992-09-15|4-NOT SPECIFIED|Clerk#000003783|0|ts? carefully final depos| +83823|548588|F|129289.67|1993-08-30|5-LOW|Clerk#000001442|0| impress pending accounts. fluffily regular packages betwe| +83848|367906|F|211743.96|1992-05-19|1-URGENT|Clerk#000004712|0| ironic sentiments. furiously ironic instructions are. final pains sl| +83849|363415|F|186441.52|1992-10-31|5-LOW|Clerk#000001272|0|s. blithely even pinto beans alongside of the i| +83850|665815|O|81287.99|1998-02-25|4-NOT SPECIFIED|Clerk#000002967|0|even ideas. final instructions mold slyly even accounts. fluffily bold| +83851|342851|F|278451.28|1992-04-04|1-URGENT|Clerk#000004820|0| accounts. quickly final instructions haggle. iron| +83852|33538|F|36852.76|1993-07-13|5-LOW|Clerk#000004985|0|ly furious asymptotes. daring platel| +83853|413422|F|202758.36|1994-09-01|5-LOW|Clerk#000000231|0|es across the slyly bold theodolites unwin| +83854|379433|O|237636.02|1996-12-12|1-URGENT|Clerk#000002039|0|reach fluffily slyly regular theodolites. regu| +83855|629536|O|64686.92|1997-10-11|4-NOT SPECIFIED|Clerk#000003374|0|ular pinto beans haggle deposits. furiously bold foxes use| +83880|358243|O|358895.51|1996-12-12|3-MEDIUM|Clerk#000000698|0|he carefully regular accounts integrate carefully fluffily ironic pa| +83881|720847|F|98625.18|1994-09-03|2-HIGH|Clerk#000003260|0|uickly ironic packages. instructions cajole ironic requests. even theo| +83882|524527|F|110853.08|1993-08-07|2-HIGH|Clerk#000004859|0|etect fluffily among the even, i| +83883|197629|O|216907.45|1997-10-29|4-NOT SPECIFIED|Clerk#000001110|0| excuses boost furiously. quickly unus| +83884|523754|O|363335.28|1997-07-25|2-HIGH|Clerk#000004900|0|unts hinder carefully. regular excuses wake ideas. even| +83885|721489|F|233332.99|1994-07-25|1-URGENT|Clerk#000000683|0|sts haggle permanently. bold accounts cajole blithely after the quickly iro| +83886|42169|O|304813.41|1996-01-23|2-HIGH|Clerk#000001433|0|ecial ideas. quickly final| +83887|708275|O|100689.20|1996-05-01|5-LOW|Clerk#000000566|0|y ironic dugouts. regular braids sleep. slyly regula| +83912|726814|O|154527.51|1995-11-13|3-MEDIUM|Clerk#000003576|0|uickly bold ideas grow slyly regular| +83913|296728|F|259594.32|1992-08-26|2-HIGH|Clerk#000002491|0|. slyly ironic platelets haggle blithely. slyly even requests about the fur| +83914|348484|F|135019.19|1992-03-30|5-LOW|Clerk#000001154|0|mold. slyly ironic forges maintain. furiously regular braids integr| +83915|205433|O|47470.40|1996-09-22|4-NOT SPECIFIED|Clerk#000000700|0|oss the fluffily final requests| +83916|450754|F|126739.00|1992-10-09|3-MEDIUM|Clerk#000002634|0|counts haggle furiously slyly pending packages. furiously silent notornis | +83917|66316|O|137917.71|1996-05-15|1-URGENT|Clerk#000002810|0|ly across the even platel| +83918|42553|O|95986.12|1996-11-25|2-HIGH|Clerk#000002166|0|e bold, stealthy pinto beans. even foxes cajole fluff| +83919|413081|F|217286.07|1993-01-08|1-URGENT|Clerk#000004418|0|telets haggle after the ac| +83944|649123|F|153299.57|1994-04-03|2-HIGH|Clerk#000004366|0|lyly packages. unusual, even foxes haggle carefully according to the ex| +83945|291814|F|297435.45|1994-11-26|2-HIGH|Clerk#000001228|0| dolphins integrate furiously final pinto beans. even deposits | +83946|253438|F|315357.42|1995-03-18|2-HIGH|Clerk#000004131|0|nding packages against the s| +83947|267256|F|203953.06|1992-11-23|4-NOT SPECIFIED|Clerk#000000747|0|e along the regular warthogs. final dolphins boost never blithely reg| +83948|8638|F|24302.35|1992-01-28|4-NOT SPECIFIED|Clerk#000002253|0|y regular requests sleep c| +83949|410582|F|246464.87|1994-03-27|4-NOT SPECIFIED|Clerk#000002935|0| final packages are furiously across the deposits| +83950|646654|O|347205.29|1998-01-05|4-NOT SPECIFIED|Clerk#000000779|0|sleep slyly about the express, even packages-- special courts us| +83951|53092|F|321771.02|1992-08-07|1-URGENT|Clerk#000004581|0|riously final requests should wake furiously blithely bold deposits. pack| +83976|549742|F|67916.54|1993-04-17|3-MEDIUM|Clerk#000000130|0| the ideas. furiously express instr| +83977|263725|F|248310.80|1994-07-09|4-NOT SPECIFIED|Clerk#000004118|0|y alongside of the dependencies. carefull| +83978|675718|F|98349.03|1994-08-19|5-LOW|Clerk#000001196|0|y express accounts are against the ironic requests. carefully iro| +83979|267427|O|264104.10|1995-11-04|2-HIGH|Clerk#000003522|0|e ironic requests. furiously special foxes are furiously blithely b| +83980|641368|O|183912.83|1997-07-28|3-MEDIUM|Clerk#000004006|0| even instructions sleep blithely! b| +83981|447547|F|75770.66|1995-03-19|5-LOW|Clerk#000001307|0|ully pending requests are after the | +83982|160807|O|177521.70|1997-12-18|4-NOT SPECIFIED|Clerk#000000804|0|s along the special, bold deposits impress about the b| +83983|428759|O|37172.25|1997-01-07|1-URGENT|Clerk#000004371|0|ending deposits are furiously special pains; unusual dinos use above the b| +84008|136519|F|233883.33|1994-06-15|3-MEDIUM|Clerk#000004913|0|lly even foxes wake carefully carefully bold accounts. idly | +84009|205102|O|293799.41|1995-12-15|2-HIGH|Clerk#000004704|0|o beans. furiously silent requests use furiously instructi| +84010|127954|F|75644.15|1993-12-28|1-URGENT|Clerk#000004350|0|egular accounts affix carefully deposits.| +84011|242347|F|108345.53|1994-09-08|4-NOT SPECIFIED|Clerk#000003967|0|ns. quickly ironic packages boost carefully ironic ideas. requests nag fluf| +84012|622660|O|216480.45|1997-09-30|2-HIGH|Clerk#000001154|0|onic pinto beans. special sentiments are regular asymptotes. slyly silent fox| +84013|272720|O|78802.97|1995-07-26|2-HIGH|Clerk#000001980|0|efully regular accounts wak| +84014|340270|P|157968.41|1995-03-13|2-HIGH|Clerk#000001060|0|lent dependencies against the fluffily careful packages breach quickly quic| +84015|167872|O|203872.42|1997-10-23|1-URGENT|Clerk#000003738|0|kly ironic packages sleep above the carefully ironic deposit| +84040|672761|O|309522.36|1997-06-29|5-LOW|Clerk#000004460|0|yly final, pending deposits. doggedly ironic ideas play. busily| +84041|90718|O|204108.91|1996-08-09|4-NOT SPECIFIED|Clerk#000001236|0|eep fluffily ironic pac| +84042|696028|F|272334.06|1992-12-15|1-URGENT|Clerk#000001416|0|sly. furiously bold| +84043|377911|F|163424.47|1993-10-04|5-LOW|Clerk#000000359|0|n deposits. slyly unusual sent| +84044|516619|O|167767.11|1997-08-19|5-LOW|Clerk#000000687|0|. quickly regular instructions should are a| +84045|37987|F|273052.18|1993-04-04|3-MEDIUM|Clerk#000003650|0| special platelets. regular dependencies are carefu| +84046|185699|F|152866.64|1994-05-05|4-NOT SPECIFIED|Clerk#000001037|0|c deposits integrate. furiously| +84047|286850|O|297320.43|1998-07-31|3-MEDIUM|Clerk#000003570|0|ag bold packages. blithely furious dependencies cajole fluffily. blith| +84072|77906|F|86113.96|1994-01-01|2-HIGH|Clerk#000001132|0|. quickly sly foxes cajole furiously busy deposits. | +84073|611113|O|184392.68|1996-06-25|2-HIGH|Clerk#000002233|0|uests poach after the blithely special requests. ironic acc| +84074|452263|O|63054.36|1998-06-01|3-MEDIUM|Clerk#000002507|0|. carefully ironic deposits use slyly; escapades use sl| +84075|669413|F|107932.26|1994-04-13|5-LOW|Clerk#000001656|0|es. deposits sleep fluffily. ironic ide| +84076|71317|P|160308.30|1995-05-07|3-MEDIUM|Clerk#000002310|0|ts shall have to haggle. slyly furious deposits wake alongside | +84077|112744|O|74677.05|1998-06-30|4-NOT SPECIFIED|Clerk#000000028|0|ts sleep slyly regular deposits. fluffily bold accounts wake. pinto beans caj| +84078|369719|O|347068.90|1998-04-28|1-URGENT|Clerk#000000299|0|lyly along the theodolites. slyly regular deposits against t| +84079|104788|F|91911.69|1992-03-22|4-NOT SPECIFIED|Clerk#000002601|0|ng foxes. carefully bold hockey players boost slyly. regular deposits eat fu| +84104|159013|F|79218.63|1994-11-22|3-MEDIUM|Clerk#000003665|0|y even requests boost furious| +84105|249313|F|24935.51|1992-04-13|3-MEDIUM|Clerk#000000456|0|equests. quickly final packages are theodolit| +84106|680521|F|75022.05|1992-03-07|4-NOT SPECIFIED|Clerk#000001094|0| regular accounts integrate across the acco| +84107|15460|O|296664.40|1997-05-15|2-HIGH|Clerk#000003609|0| ironic excuses sleep quickly final pinto beans. regular | +84108|325966|F|67743.55|1993-10-15|1-URGENT|Clerk#000003202|0|ar, final packages integrate above | +84109|478132|O|103428.80|1998-03-24|5-LOW|Clerk#000002894|0|ids sleep ruthlessly. express courts haggle carefully. quickly | +84110|458719|O|122663.85|1995-07-17|3-MEDIUM|Clerk#000003747|0|es. furiously regular packages doze blithely at the a| +84111|422587|O|48325.65|1995-11-10|2-HIGH|Clerk#000000871|0| even platelets. furiously unusual foxes boost blithely about the special| +84136|652234|F|293440.90|1994-03-24|1-URGENT|Clerk#000003513|0|ag furiously alongside of the special dependencies. f| +84137|83860|O|97459.35|1997-11-17|2-HIGH|Clerk#000002102|0|y ironic ideas: ironic| +84138|181441|F|219963.69|1994-01-24|4-NOT SPECIFIED|Clerk#000003180|0|nic, bold dependencies n| +84139|717412|F|189013.21|1994-08-01|2-HIGH|Clerk#000001190|0|ecial requests boost furiously at the| +84140|517412|F|19094.03|1995-02-25|3-MEDIUM|Clerk#000001714|0|ly furiously final deposits. requests cajole furiously among the quickly | +84141|629080|O|49532.43|1998-05-02|1-URGENT|Clerk#000002708|0| slyly across the deposits. blithely regular accounts wake express acc| +84142|188768|F|84204.29|1995-02-22|5-LOW|Clerk#000001704|0|ages are carefully quickly special sentiments: iro| +84143|120743|F|21538.30|1994-09-16|3-MEDIUM|Clerk#000000827|0|express, even dolphins. final, bold court| +84168|572225|O|230630.17|1997-11-13|4-NOT SPECIFIED|Clerk#000004997|0|refully bold pinto beans sleep furiously among the c| +84169|124900|O|201875.64|1995-08-24|3-MEDIUM|Clerk#000002656|0| quickly above the quickly ironic packages. carefully even packages wake flu| +84170|671150|O|179428.96|1997-08-25|2-HIGH|Clerk#000003047|0|ges. regular, express ideas are about the blithely ironic accounts. final,| +84171|9968|F|296384.76|1994-08-22|4-NOT SPECIFIED|Clerk#000001482|0|c requests from the slyly regular | +84172|279376|O|80915.55|1998-03-20|4-NOT SPECIFIED|Clerk#000000549|0|carefully even accounts. accounts sleep along the blithely pending foxes| +84173|442387|F|209794.43|1992-07-26|2-HIGH|Clerk#000002189|0|furiously regular packages. bold packages eat furiously near the regula| +84174|426025|F|14688.30|1993-03-02|1-URGENT|Clerk#000002317|0|r the final, final requests. fluffy| +84175|689272|O|149984.44|1996-03-12|4-NOT SPECIFIED|Clerk#000004081|0|areful, ironic theodolites are blithely. fret| +84200|87142|F|202835.61|1994-08-26|4-NOT SPECIFIED|Clerk#000001452|0|lay according to the express orbits. final, final instructions are slyly. | +84201|573376|P|137361.38|1995-05-02|4-NOT SPECIFIED|Clerk#000004211|0|arefully regular foxes| +84202|716935|O|203334.79|1996-08-08|1-URGENT|Clerk#000004913|0|thely even deposits haggle after the slyly express d| +84203|22888|F|124969.52|1992-06-28|4-NOT SPECIFIED|Clerk#000004148|0|nal deposits wake quickly. unusual ideas cajo| +84204|652906|F|250002.87|1993-05-31|2-HIGH|Clerk#000001047|0|fluffily even ideas use careful| +84205|119522|F|148378.64|1992-08-15|2-HIGH|Clerk#000000179|0|slyly regular instructions haggle bl| +84206|296749|F|67173.99|1994-05-18|1-URGENT|Clerk#000003255|0|ly final packages haggle blithely unusual platelets. slyly ironic cou| +84207|681142|O|258502.69|1998-06-23|3-MEDIUM|Clerk#000000487|0|le thinly according | +84232|686233|O|275326.08|1998-01-23|2-HIGH|Clerk#000000331|0|as sublate alongside of the express theod| +84233|16073|O|101398.05|1997-06-28|1-URGENT|Clerk#000003488|0|. blithely bold requests a| +84234|125510|O|145706.47|1996-01-03|2-HIGH|Clerk#000002645|0|s use furiously iron| +84235|430786|O|66678.83|1997-12-08|3-MEDIUM|Clerk#000002191|0|hely fluffily express ideas. blithely| +84236|468556|O|130553.97|1996-06-19|5-LOW|Clerk#000002740|0|nes. quickly bold excuses across the carefull| +84237|18773|O|26316.59|1996-01-06|3-MEDIUM|Clerk#000001519|0|ake carefully special requests. blithely ironic Tiresias sleep.| +84238|516889|F|121066.64|1993-02-18|5-LOW|Clerk#000000841|0|s boost against the bold | +84239|77344|O|223758.15|1997-01-22|3-MEDIUM|Clerk#000004914|0|l dependencies haggle b| +84264|155125|O|209775.33|1995-11-12|5-LOW|Clerk#000002767|0|the quickly slow requ| +84265|168566|O|42687.60|1996-04-07|3-MEDIUM|Clerk#000003526|0|ep blithely ironic pinto beans. final dolphi| +84266|323623|O|115239.92|1995-06-22|2-HIGH|Clerk#000001238|0|unts. unusual excuses cajole carefully around the excuses; slyly final fret| +84267|120949|F|170064.58|1993-05-21|4-NOT SPECIFIED|Clerk#000001280|0|ng slyly careful requests. fluffily bold ideas| +84268|282007|F|67949.54|1992-05-01|2-HIGH|Clerk#000004770|0|sits haggle furiously alon| +84269|423175|F|221465.90|1994-12-27|2-HIGH|Clerk#000004382|0|l instructions. fluffily even packages are furiously. even, bol| +84270|38018|O|400138.84|1996-10-21|3-MEDIUM|Clerk#000000513|0|lly special notornis. blithely bold a| +84271|712501|O|62359.92|1995-12-17|2-HIGH|Clerk#000001258|0| quickly. carefully pending f| +84296|476908|F|77083.23|1993-04-28|1-URGENT|Clerk#000002773|0|egular requests. regular, ruthless requests wake quickly furiou| +84297|127748|O|279612.94|1996-12-30|4-NOT SPECIFIED|Clerk#000000078|0|ts affix blithely according to the quickly bold accounts. final, fin| +84298|560143|O|115319.65|1995-10-28|4-NOT SPECIFIED|Clerk#000000704|0|efully. fluffily final requests are furiously. car| +84299|297781|O|171846.24|1995-12-28|3-MEDIUM|Clerk#000004016|0|lithely. slyly final ideas nag furiously. instructions kindle furio| +84300|31204|O|146837.21|1996-04-21|2-HIGH|Clerk#000004079|0|ely even grouches nag fluffily along the pending requests. blithely even| +84301|191479|O|245873.12|1996-10-20|5-LOW|Clerk#000003262|0|lly even packages affix: furiously final requests | +84302|675701|O|310583.48|1996-01-01|2-HIGH|Clerk#000001350|0|sleep against the regular foxes. fluf| +84303|740092|O|188237.93|1995-12-01|2-HIGH|Clerk#000004162|0|he pinto beans-- even theodolites detect. reg| +84328|718306|P|182711.39|1995-04-02|1-URGENT|Clerk#000000463|0|packages haggle blithe| +84329|567350|O|251480.68|1996-04-20|3-MEDIUM|Clerk#000003409|0| requests about the furiously even requests haggle blithely regul| +84330|684733|O|87367.65|1996-11-16|4-NOT SPECIFIED|Clerk#000002961|0|cuses sleep along the final, ironic deposits. regular | +84331|288934|F|222112.99|1993-05-25|3-MEDIUM|Clerk#000000188|0|ckages nag carefully. quickly pending excuses boost quickly. car| +84332|598792|O|26159.53|1995-11-02|3-MEDIUM|Clerk#000001604|0|ul requests are carefully under the quickly special asymp| +84333|382081|F|425262.89|1993-06-19|3-MEDIUM|Clerk#000004150|0|o beans sublate. regular excuses according to the regular instructions cajol| +84334|127846|O|258418.83|1997-01-20|2-HIGH|Clerk#000004007|0|ackages use above the blithely brave accounts. final deposits across| +84335|694910|F|219529.31|1992-12-23|5-LOW|Clerk#000002255|0|yly ironic foxes nag behind the unu| +84360|345199|F|107177.56|1995-01-31|4-NOT SPECIFIED|Clerk#000001971|0| accounts. ironic instructions use slyly. blithely regular foxes ar| +84361|493102|P|293651.37|1995-03-21|4-NOT SPECIFIED|Clerk#000003929|0|riously final packages. doggedly specia| +84362|51710|O|59593.66|1998-04-19|2-HIGH|Clerk#000003599|0|s the furiously regular platelets. regular acc| +84363|579868|O|94252.84|1995-12-27|5-LOW|Clerk#000000135|0|l instructions. pending warthogs sleep furiously final courts.| +84364|325453|O|159604.51|1996-04-18|5-LOW|Clerk#000002912|0|efully pending theodolites. pending pl| +84365|124219|O|5511.23|1997-08-10|3-MEDIUM|Clerk#000001333|0|jole furiously alongside of the even| +84366|489977|O|162286.44|1995-11-10|1-URGENT|Clerk#000000700|0|gular accounts are fluffily alongside of the ins| +84367|28336|O|25691.44|1995-11-12|2-HIGH|Clerk#000002799|0|across the special requests cajole carefully fi| +84392|723691|F|200499.13|1994-12-15|5-LOW|Clerk#000004050|0| above the blithely special pack| +84393|320987|O|74527.25|1997-04-05|4-NOT SPECIFIED|Clerk#000002546|0|ing excuses. slyly special accounts among the quickly even platelets haggle a| +84394|64171|O|36130.05|1996-12-26|2-HIGH|Clerk#000004830|0|haggle final foxes. furiously special accounts wake. blithely final deposits| +84395|3859|P|226305.70|1995-05-25|4-NOT SPECIFIED|Clerk#000003461|0|usual, regular theodolites sleep carefully regular, special instruct| +84396|350071|F|322751.25|1993-03-12|3-MEDIUM|Clerk#000000940|0|ole at the special packages. slyly regular | +84397|634796|F|138138.91|1992-06-11|1-URGENT|Clerk#000003479|0|ter the blithely unusual escapades-- slyly exp| +84398|254635|O|234869.58|1997-10-15|1-URGENT|Clerk#000002272|0| regular hockey players. final a| +84399|149482|O|216049.17|1997-08-15|5-LOW|Clerk#000002856|0|fully silent accounts| +84424|573154|O|247517.61|1998-04-19|5-LOW|Clerk#000004527|0|ss the slyly express pinto beans. furiously | +84425|744875|F|258338.04|1993-03-23|5-LOW|Clerk#000000828|0|ven pinto beans. final, fina| +84426|97372|F|82873.62|1993-05-30|5-LOW|Clerk#000002907|0|foxes. furiously stealt| +84427|1579|O|32929.82|1996-01-18|5-LOW|Clerk#000000331|0|ickly ironic requests wake among the slyly regular foxes. requests was| +84428|269107|F|89846.32|1995-03-23|5-LOW|Clerk#000001170|0|foxes boost sauternes. unusual, bold requests snooze furiously furiou| +84429|370363|F|109427.92|1992-07-21|4-NOT SPECIFIED|Clerk#000000495|0|y even dolphins? carefully ironic instruct| +84430|430787|O|123449.23|1997-10-27|1-URGENT|Clerk#000003117|0|lites haggle according to the daringly final requ| +84431|481177|O|231084.10|1997-11-14|5-LOW|Clerk#000003277|0|refully after the carefully regul| +84456|623458|O|81660.01|1998-07-02|4-NOT SPECIFIED|Clerk#000003200|0|ully final deposits are above the even| +84457|180470|F|105983.95|1992-06-13|2-HIGH|Clerk#000004035|0|lly according to the carefully regular theodolites. even | +84458|150682|F|96806.32|1992-12-21|4-NOT SPECIFIED|Clerk#000000063|0|ly instructions. even, | +84459|492295|P|325483.33|1995-03-10|3-MEDIUM|Clerk#000004643|0|d the blithely ironic theodolites. fluffily pending sentiments ab| +84460|740254|O|84797.67|1996-11-23|5-LOW|Clerk#000002534|0|ind after the packages. plat| +84461|433067|O|61292.11|1998-07-04|5-LOW|Clerk#000000529|0|sual deposits wake silent requests. regular requests haggle blithely| +84462|540305|F|107719.45|1992-01-03|4-NOT SPECIFIED|Clerk#000001047|0|y special accounts subla| +84463|647461|O|47854.89|1997-12-02|3-MEDIUM|Clerk#000001044|0|atelets shall have to sleep slyly ironic accounts. furiously final wa| +84488|115469|O|87236.60|1995-07-26|1-URGENT|Clerk#000003292|0|es? regular theodolites boost blithely. pending theodo| +84489|435118|F|246548.74|1993-03-17|5-LOW|Clerk#000000081|0|ounts against the carefully ironic instruct| +84490|521401|O|128021.87|1995-04-09|4-NOT SPECIFIED|Clerk#000000654|0|ly silent requests sleep boldly.| +84491|158528|F|17592.04|1992-01-17|1-URGENT|Clerk#000002927|0|areful deposits. regular reques| +84492|375277|F|7185.49|1992-03-23|1-URGENT|Clerk#000002275|0|cuses sleep blithely special foxes. slyly regular accounts are alongside of t| +84493|517028|F|261241.67|1994-10-18|5-LOW|Clerk#000000463|0|ound the regular deposits; slyly final accounts hang blithely close | +84494|189343|F|36138.15|1994-08-09|2-HIGH|Clerk#000004383|0|nt deposits sleep blithely unusua| +84495|9586|F|64112.43|1993-03-30|3-MEDIUM|Clerk#000000074|0|s behind the ruthlessly pending packages boost about | +84520|604804|O|270229.53|1997-06-08|3-MEDIUM|Clerk#000001829|0|tes wake bold, even pinto beans. blithely special packages above the| +84521|183437|F|72713.46|1994-08-20|2-HIGH|Clerk#000000839|0|y carefully silent packages: even packa| +84522|523201|F|219766.90|1994-05-28|2-HIGH|Clerk#000001335|0|lar courts wake blithely final packages. quic| +84523|414440|O|290468.71|1997-04-09|3-MEDIUM|Clerk#000000521|0|furiously bold packages: fluffily regular requests are blith| +84524|238348|O|180147.00|1997-11-10|3-MEDIUM|Clerk#000004545|0|requests nag. blithely regular as| +84525|159569|F|250254.80|1994-01-17|1-URGENT|Clerk#000004023|0|ccounts. bold, express packages sleep bold pack| +84526|617782|F|62251.79|1994-06-02|5-LOW|Clerk#000004728|0|ending pearls alongside of the slyly ironic excuses haggle blithely| +84527|42904|O|330970.53|1998-03-30|1-URGENT|Clerk#000002538|0|ring accounts nag about the slyly final pinto beans. slyly unu| +84552|304735|O|134188.63|1997-04-23|4-NOT SPECIFIED|Clerk#000003061|0|mptotes are furiously pending requests. furiously final t| +84553|671233|O|70440.08|1997-09-28|1-URGENT|Clerk#000002847|0| accounts haggle carefully against the f| +84554|639238|O|85631.74|1995-09-14|5-LOW|Clerk#000000674|0|nto beans haggle blithely alongs| +84555|644161|O|236152.75|1995-06-17|1-URGENT|Clerk#000000101|0| regular dolphins. special| +84556|162935|O|285059.80|1996-01-06|3-MEDIUM|Clerk#000004040|0|ully unusual deposits | +84557|194050|F|321903.45|1993-02-02|2-HIGH|Clerk#000004372|0|vely regular pinto beans x-ray across th| +84558|374207|F|229770.66|1992-04-10|5-LOW|Clerk#000004000|0|quests nag fluffily. deposits haggle busy r| +84559|530905|O|120141.28|1995-06-15|2-HIGH|Clerk#000003293|0|s wake around the dogged, even depth| +84584|160747|F|65102.79|1995-05-02|1-URGENT|Clerk#000000626|0|g requests. slyly bold co| +84585|172015|O|192246.01|1997-04-17|5-LOW|Clerk#000003132|0|as cajole slyly along the quickly ironic decoys. accounts sleep caref| +84586|556025|O|295997.96|1997-12-31|3-MEDIUM|Clerk#000002570|0|ests after the fluffily | +84587|103382|P|111871.49|1995-04-07|3-MEDIUM|Clerk#000003909|0| to unwind blithely deposits. final dependencies de| +84588|532895|F|108805.68|1995-04-15|5-LOW|Clerk#000003393|0|he fluffily even theodo| +84589|611956|F|134015.03|1994-12-31|3-MEDIUM|Clerk#000003523|0|ions cajole according to the final, bold foxes| +84590|362467|O|69914.61|1995-07-28|1-URGENT|Clerk#000002837|0|e of the unusual foxes. furiously regular foxes wake| +84591|450274|O|240091.68|1997-11-12|5-LOW|Clerk#000003175|0|ts. blithely sly ins| +84616|247132|O|211029.39|1997-01-28|5-LOW|Clerk#000000420|0|s wake. requests detect around the pending requests. regul| +84617|44533|F|98352.91|1992-01-03|3-MEDIUM|Clerk#000002350|0| requests. silent accounts across the carefully unusual excuses| +84618|685765|O|293193.89|1996-04-11|1-URGENT|Clerk#000004494|0|detect busy, final frays. blithely special pinto b| +84619|396856|F|59620.66|1992-05-30|2-HIGH|Clerk#000004852|0|unusual theodolites along the final accounts are about the regular, permanent| +84620|200861|O|203657.20|1998-04-04|1-URGENT|Clerk#000002772|0|ns. ironic foxes boost blithely alongside of | +84621|108355|F|91355.73|1992-12-02|2-HIGH|Clerk#000000667|0|ep quickly silent excuses. accounts| +84622|91823|F|74144.48|1993-10-05|4-NOT SPECIFIED|Clerk#000000745|0|nic ideas haggle according to the carefully bo| +84623|513928|P|124406.81|1995-05-24|3-MEDIUM|Clerk#000004633|0|arefully among the unusual foxes. asymptotes so| +84648|583756|P|151743.43|1995-04-26|2-HIGH|Clerk#000000518|0|he regularly even instructions cajole quickly pending ins| +84649|403616|O|180663.48|1998-02-03|2-HIGH|Clerk#000004336|0|lar, final accounts wake carefully| +84650|573647|O|270152.04|1997-12-11|1-URGENT|Clerk#000002194|0|furiously even requests are fluffily bold packages. f| +84651|34732|F|236885.13|1994-05-28|4-NOT SPECIFIED|Clerk#000002934|0|fully furiously final deposits. slyly unusual deposits boost | +84652|217750|O|255580.22|1998-02-27|3-MEDIUM|Clerk#000000154|0|nts. blithely regular instructions wake q| +84653|465460|F|73934.07|1992-06-02|2-HIGH|Clerk#000004783|0|eodolites engage furious| +84654|485155|F|120940.28|1994-10-06|3-MEDIUM|Clerk#000002658|0|riously express ideas. packages haggle slyly. ironic pinto beans breach. b| +84655|749534|O|131474.87|1997-02-25|4-NOT SPECIFIED|Clerk#000003077|0|s integrate carefully! furiously even dolphin| +84680|403829|F|102767.60|1993-12-24|3-MEDIUM|Clerk#000002760|0|ously special theodolites-- furiously iron| +84681|388369|F|122218.14|1992-09-30|3-MEDIUM|Clerk#000003843|0|s promise slyly iron| +84682|57439|O|219636.37|1996-02-22|1-URGENT|Clerk#000002783|0|nt foxes detect express, special gifts. slyly even requests c| +84683|118582|F|98437.79|1992-05-15|2-HIGH|Clerk#000004139|0|inal requests haggle. carefully final dependencies cajole a| +84684|228286|O|275604.71|1997-12-16|3-MEDIUM|Clerk#000001754|0|onically final instructions haggle above the quickly regular id| +84685|542191|O|146437.99|1998-05-06|2-HIGH|Clerk#000002290|0|express instructions. | +84686|99146|O|200619.06|1997-01-07|2-HIGH|Clerk#000004593|0|unts. ironic, regular accounts nag about the | +84687|585682|O|3040.81|1995-08-07|1-URGENT|Clerk#000001737|0|ully after the blithely pending deposits. furi| +84712|554434|F|31544.08|1994-04-05|1-URGENT|Clerk#000002953|0|deposits after the quickly silent accounts boost fluffil| +84713|347360|F|150137.14|1993-03-25|3-MEDIUM|Clerk#000004539|0|r requests sleep furiously against the quickly regular req| +84714|66379|P|167340.39|1995-04-02|2-HIGH|Clerk#000003129|0| carefully even, bold requests-- bravely final requests al| +84715|374657|O|214930.02|1998-04-10|5-LOW|Clerk#000002004|0|l excuses. furiously regular courts are. fluffily bold ins| +84716|603821|F|97298.85|1992-08-26|4-NOT SPECIFIED|Clerk#000002824|0| the slyly even excuses doubt slyly among the furiously| +84717|163390|O|100179.39|1995-06-10|2-HIGH|Clerk#000004040|0|inal realms nag slyly pen| +84718|343654|F|232662.24|1994-11-22|4-NOT SPECIFIED|Clerk#000001694|0|en deposits haggle carefully pendin| +84719|32752|O|153184.17|1998-07-08|4-NOT SPECIFIED|Clerk#000003370|0|lieve fluffily among t| +84744|690194|O|229758.33|1995-12-04|2-HIGH|Clerk#000001056|0|ons about the slyly bold ideas affix special deposits. carefully regular dep| +84745|585454|F|28182.50|1994-01-25|4-NOT SPECIFIED|Clerk#000004601|0| packages alongside of the packages sleep carefully ironic | +84746|461795|O|30444.50|1995-03-24|1-URGENT|Clerk#000003206|0|ar, ironic deposits ea| +84747|384910|F|24419.76|1994-06-08|5-LOW|Clerk#000004623|0|ke boldly furiously regular ideas. express, silent pinto beans should ha| +84748|431656|O|136381.63|1997-12-10|5-LOW|Clerk#000004224|0|lyly fluffily slow fo| +84749|80986|F|257258.09|1992-06-29|2-HIGH|Clerk#000001823|0|he ideas. quickly special depos| +84750|598993|O|59044.56|1997-10-25|1-URGENT|Clerk#000000009|0|ly silent requests wake about the regular, special | +84751|18332|F|68380.46|1994-01-17|1-URGENT|Clerk#000000137|0|uietly unusual accounts haggle finally bold courts. ironic accounts caj| +84776|595717|O|225547.93|1997-08-06|5-LOW|Clerk#000000231|0|ly final theodolites. pending, express foxes boost: final| +84777|460876|F|201429.13|1993-06-15|2-HIGH|Clerk#000000092|0|fully ironic accounts use by the furiously final packages. blith| +84778|665078|O|60040.31|1995-11-05|5-LOW|Clerk#000004911|0|ckages. carefully special deposits doze furiously unusual dependencies. sly| +84779|709247|F|223473.03|1994-01-12|5-LOW|Clerk#000004965|0|inal instructions hinder slyly against the carefully sly requests. fur| +84780|560777|F|192228.05|1994-06-26|2-HIGH|Clerk#000003711|0| the quickly express requests. requests boost s| +84781|468055|O|46399.61|1997-08-20|4-NOT SPECIFIED|Clerk#000003038|0|ithes could have to use. blithely ironic| +84782|580229|F|156049.34|1993-11-27|1-URGENT|Clerk#000000420|0|gular accounts wake furiously at the carefully regular theo| +84783|408725|O|89777.29|1998-04-28|2-HIGH|Clerk#000004335|0|inal ideas sleep slyly sly| +84808|184649|F|75572.03|1994-01-02|2-HIGH|Clerk#000001051|0|ecial gifts hinder quickly.| +84809|639208|O|164596.83|1997-09-16|5-LOW|Clerk#000003600|0|the blithely final ideas. regular ideas sle| +84810|144227|O|25235.06|1996-08-18|2-HIGH|Clerk#000002376|0|pinto beans boost regularly regular ideas. exc| +84811|9220|F|51404.72|1992-02-11|2-HIGH|Clerk#000001452|0|odolites detect slyly a| +84812|448378|O|73753.23|1998-01-18|3-MEDIUM|Clerk#000001966|0|regular ideas. quickly even accounts boost slyly. ironic acco| +84813|606418|O|59559.72|1995-06-07|4-NOT SPECIFIED|Clerk#000004835|0| special deposits among the slyly final | +84814|292123|F|17490.03|1992-05-22|2-HIGH|Clerk#000001729|0|olites nag atop the special, ironic | +84815|181103|O|202486.72|1998-06-17|2-HIGH|Clerk#000000810|0|e carefully after the unusual requests. b| +84840|294260|F|169573.91|1993-10-01|4-NOT SPECIFIED|Clerk#000003543|0|e of the special packages. fluffily bol| +84841|115925|F|367325.56|1992-08-14|2-HIGH|Clerk#000001281|0|counts among the slyly pending pinto beans use past the | +84842|587746|O|99679.36|1996-06-24|1-URGENT|Clerk#000000892|0| the carefully even courts hinder blithely unusual accounts.| +84843|736415|F|64900.22|1993-04-19|1-URGENT|Clerk#000003961|0|es was blithely regular requests. slyly final p| +84844|420373|O|351196.61|1996-12-06|5-LOW|Clerk#000001711|0| pending accounts wake finally regular dependencies. ironic| +84845|203597|F|59956.62|1993-04-10|5-LOW|Clerk#000000181|0|s cajole furiously ironic packages. regular| +84846|338155|O|126076.74|1996-09-19|1-URGENT|Clerk#000001346|0|ackages wake blithely carefully even deposits. final foxes wake. bl| +84847|591214|O|233422.20|1997-04-09|3-MEDIUM|Clerk#000004466|0| use fluffily alongside of the quickly silent packages| +84872|508843|O|286708.29|1995-09-06|2-HIGH|Clerk#000003068|0|thely ironic packages wake blithely abo| +84873|614390|F|95525.00|1993-05-24|1-URGENT|Clerk#000000354|0|ly bold deposits. closely pending courts de| +84874|48713|F|305565.54|1993-10-06|3-MEDIUM|Clerk#000000443|0|le bold theodolites. carefully silent foxes snooze slyly. carefully e| +84875|454198|F|164970.07|1995-01-09|5-LOW|Clerk#000004735|0|across the blithely special grouches. daring instruction| +84876|187561|F|208689.12|1993-09-10|3-MEDIUM|Clerk#000003334|0|regular asymptotes? carefully | +84877|76664|O|126781.81|1995-10-16|3-MEDIUM|Clerk#000001887|0|yly regular accounts are carefully according to the furiously final dolphins. | +84878|740480|F|103636.26|1992-08-28|1-URGENT|Clerk#000000655|0| accounts wake furiously. express patterns are enticingly. furiously bold req| +84879|494741|F|108499.40|1992-09-18|1-URGENT|Clerk#000000411|0| haggle. quickly bold pinto beans integrate furiously about the car| +84904|606380|F|109910.01|1992-09-30|3-MEDIUM|Clerk#000003351|0|unusual requests. ironic accounts haggle fluffily regular pin| +84905|418628|O|252493.93|1996-09-05|2-HIGH|Clerk#000001531|0|riously regular deposits alongside of the quick| +84906|124558|F|351087.21|1994-11-26|2-HIGH|Clerk#000001071|0|. even, special patterns sleep accord| +84907|179563|F|211744.34|1992-11-06|1-URGENT|Clerk#000004746|0|furiously accounts? instructions integrate fur| +84908|659177|O|234505.15|1996-04-08|1-URGENT|Clerk#000002746|0|sly final courts. packages h| +84909|536203|O|31593.47|1996-01-26|3-MEDIUM|Clerk#000003746|0|al theodolites among the furiously even requests affix carefully even | +84910|688618|F|174499.21|1993-10-13|4-NOT SPECIFIED|Clerk#000003507|0|tructions are quickly. regular packages wake toward the furiously even re| +84911|325739|O|221946.11|1996-03-06|2-HIGH|Clerk#000002088|0|egularly. quickly pending accounts across the sl| +84936|436780|F|35494.68|1993-06-16|1-URGENT|Clerk#000003148|0|ts sleep furiously according to the | +84937|680510|O|224563.42|1997-08-08|5-LOW|Clerk#000004582|0| regular pinto beans. quickly regular foxes| +84938|580639|O|175412.64|1995-08-14|5-LOW|Clerk#000003500|0|the blithely final dolphins sn| +84939|528214|O|280073.18|1996-03-19|5-LOW|Clerk#000003276|0|ong the regular deposits doze blithely even instructions. ironi| +84940|669547|O|148283.86|1996-06-15|1-URGENT|Clerk#000002329|0|l foxes are blithely stealthily ironic accounts. | +84941|71191|O|80021.15|1998-02-01|5-LOW|Clerk#000001407|0| blithely ironic excuses across the bu| +84942|241084|F|284140.43|1995-01-25|4-NOT SPECIFIED|Clerk#000003554|0|en packages. doggedly regular | +84943|376309|O|162486.69|1995-10-13|4-NOT SPECIFIED|Clerk#000001181|0|al deposits. instructions are furiously. carefully fina| +84968|613487|F|50881.25|1993-06-11|3-MEDIUM|Clerk#000001826|0|furiously regular dolphins haggle quickly regular ideas. blithely ironi| +84969|621436|F|40702.87|1993-08-25|2-HIGH|Clerk#000001853|0|across the slyly silent accounts sleep blithely ab| +84970|712963|O|197008.59|1996-04-28|2-HIGH|Clerk#000004893|0|lly final accounts wake fluffily b| +84971|11002|O|56561.54|1995-11-16|4-NOT SPECIFIED|Clerk#000004047|0|ole? furiously final packages are above the carefully pending requests. quickl| +84972|381646|F|200214.81|1993-09-28|4-NOT SPECIFIED|Clerk#000004300|0|gularly. fluffily reg| +84973|291289|O|65375.71|1998-04-09|4-NOT SPECIFIED|Clerk#000004897|0|fully regular packages. fluffily ironic patterns along the express depo| +84974|416353|F|110190.69|1992-01-05|2-HIGH|Clerk#000002352|0|ys wake blithely. enticing requests shall cajole careful| +84975|143192|F|68935.15|1992-10-03|4-NOT SPECIFIED|Clerk#000004973|0| affix sometimes express foxes; final| +85000|615022|P|193397.97|1995-03-23|2-HIGH|Clerk#000004917|0| the slyly unusual requests. regular, silent package| +85001|168659|O|77233.40|1995-05-21|3-MEDIUM|Clerk#000003548|0|ss foxes doubt furiously near the blithely unusual ideas. carefully fin| +85002|399476|O|166344.40|1995-09-06|4-NOT SPECIFIED|Clerk#000001068|0|ckages boost furiously about the| +85003|734783|F|243955.46|1994-04-04|1-URGENT|Clerk#000002818|0|ag packages. never ironic packages print. furiously special ideas affi| +85004|735940|F|38934.89|1994-04-14|1-URGENT|Clerk#000003713|0|ts are silent, silent foxes. ironic, even g| +85005|679876|O|342884.46|1997-10-11|3-MEDIUM|Clerk#000003637|0|refully ironic requests cajole slyly across the furiously final pinto beans. r| +85006|403615|F|49577.24|1992-08-10|3-MEDIUM|Clerk#000003726|0|above the fluffily bold| +85007|527846|F|182606.80|1992-01-28|1-URGENT|Clerk#000001152|0|uriously across the furiously ironic ideas. even, express Tiresias ag| +85032|492710|F|169799.35|1993-01-01|5-LOW|Clerk#000003733|0|s detect quickly! fluffily express packages need | +85033|226504|O|41939.20|1995-09-06|5-LOW|Clerk#000001277|0|efully regular dugouts sleep acc| +85034|580226|F|176598.22|1992-02-07|5-LOW|Clerk#000002647|0|oss the ideas. bold packages are fluffily | +85035|348091|F|46386.09|1992-05-18|2-HIGH|Clerk#000002356|0|ges. ironic packages are. blithe| +85036|345635|F|18044.13|1992-10-17|2-HIGH|Clerk#000000326|0|nts haggle slyly. pending, eve| +85037|336973|O|195667.53|1996-09-27|5-LOW|Clerk#000001811|0|kly regular deposits. quickly regular package| +85038|252331|O|27476.54|1996-07-04|3-MEDIUM|Clerk#000000611|0|gular packages affix quickly around the blithely final requests. b| +85039|395048|F|308681.78|1994-09-23|2-HIGH|Clerk#000004040|0|s. final, even frets cajole across the slyl| +85064|562081|O|172285.13|1997-11-15|5-LOW|Clerk#000002406|0|ooze according to the final deposits-- furiously even ideas cajo| +85065|628253|F|142972.44|1992-04-16|3-MEDIUM|Clerk#000001732|0|slyly bold pinto beans sleep. quickly pend| +85066|537728|O|53513.34|1996-06-03|2-HIGH|Clerk#000003360|0|uses hinder blithely whithout the carefully even | +85067|82199|F|99842.77|1995-02-20|3-MEDIUM|Clerk#000003831|0|e along the bold deposits; express packages cajole. busy accou| +85068|11048|O|85109.58|1995-03-30|1-URGENT|Clerk#000003386|0|to beans cajole quickly above the careful| +85069|433579|O|3632.70|1998-07-25|2-HIGH|Clerk#000003961|0|quickly carefully regular sentiments. final, regular pinto beans above the| +85070|159403|O|4184.27|1998-07-01|5-LOW|Clerk#000002932|0|cally even packages doze furiously. fin| +85071|82396|F|203153.07|1992-06-04|5-LOW|Clerk#000004569|0|efully regular attainments. slyly regular reques| +85096|322948|O|14322.76|1997-03-10|5-LOW|Clerk#000002017|0|hely. always even excuses sleep carefully slyly regular deposits; blithely| +85097|9580|F|181323.71|1992-03-05|1-URGENT|Clerk#000000456|0| among the platelets. carefully pending ideas cajole carefully carefull| +85098|485906|O|156983.61|1997-05-14|4-NOT SPECIFIED|Clerk#000004745|0|ar packages. quickly unusual requests among the unusual packages detect regula| +85099|611360|F|12303.67|1992-11-21|3-MEDIUM|Clerk#000001011|0|fully silent sheaves against the blithely ironic deposits | +85100|117145|F|196618.27|1993-05-20|5-LOW|Clerk#000001209|0|. even foxes haggle blithely. fluffily ironic instructi| +85101|101636|F|44859.30|1992-04-20|2-HIGH|Clerk#000004299|0|e blithely regular ideas. bold packages alongside of the furiously final | +85102|438478|O|194159.71|1998-05-22|5-LOW|Clerk#000001047|0|ously stealthy theodolites.| +85103|731611|O|61807.55|1998-01-22|2-HIGH|Clerk#000004270|0|ntegrate dolphins. quickly special accounts wake slyly after the slyly ironic| +85128|665972|O|27612.89|1998-02-16|2-HIGH|Clerk#000001456|0|efully quick patterns. | +85129|730124|O|122789.79|1996-08-24|2-HIGH|Clerk#000004485|0|lent packages integrate slyly blithely bold forges. accounts a| +85130|433738|O|232568.07|1995-09-20|5-LOW|Clerk#000002705|0|he special, final packages. furiously even accounts wake ironic packages.| +85131|566758|O|174288.20|1998-06-19|1-URGENT|Clerk#000002901|0|ly furious accounts| +85132|475676|O|122545.79|1997-03-15|4-NOT SPECIFIED|Clerk#000002725|0|owly about the slyly pending somas. regular packages kindle slyly blithely | +85133|420637|F|51682.84|1994-03-05|1-URGENT|Clerk#000003430|0|the quickly special requests. furiously pending instru| +85134|137398|F|161300.57|1993-03-04|1-URGENT|Clerk#000004391|0|ake among the blithely unusual requests. quickly even instructions slee| +85135|724546|F|377743.14|1993-01-16|2-HIGH|Clerk#000003035|0|boost quickly final packages. fluffily ironic asymptot| +85160|435047|O|145241.84|1996-01-23|1-URGENT|Clerk#000000608|0| pearls. carefully pending| +85161|75568|O|15733.61|1996-06-04|3-MEDIUM|Clerk#000004983|0|ly against the carefully final dependencies? fluffily ironic the| +85162|309304|F|228735.32|1993-07-18|1-URGENT|Clerk#000002749|0|ven deposits along the slyly silent deposits haggle unusual, iro| +85163|221171|F|63151.67|1993-02-22|2-HIGH|Clerk#000000211|0|into beans integrate slyly permanent theodolites. furiously stealthy t| +85164|205459|P|178141.88|1995-05-30|3-MEDIUM|Clerk#000001034|0| nag furiously furiously blithe platelets| +85165|136111|O|207885.74|1995-10-20|4-NOT SPECIFIED|Clerk#000002245|0|eful packages. pending, pending ideas haggle. quickly r| +85166|85972|O|23531.43|1998-04-02|1-URGENT|Clerk#000000390|0|e quickly special de| +85167|410908|O|72091.27|1996-09-07|1-URGENT|Clerk#000002093|0|x fluffily. express ideas sleep even courts. furiously regular asymptotes gro| +85192|129307|O|306677.32|1996-04-15|5-LOW|Clerk#000001446|0|ounts sleep ironic | +85193|509047|F|149174.31|1993-04-08|3-MEDIUM|Clerk#000001364|0|ar accounts. slyly final theodolites are evenly above | +85194|279733|O|159791.10|1997-05-21|4-NOT SPECIFIED|Clerk#000004715|0|-- quickly final requests cajole blithely against the blithely pendi| +85195|442543|O|189892.17|1996-02-21|4-NOT SPECIFIED|Clerk#000003257|0|quickly unusual dependencies nag quickly f| +85196|55145|F|272932.85|1993-09-25|4-NOT SPECIFIED|Clerk#000003921|0|bout the slyly special deposits. ironic foxes wake slyly according to | +85197|559981|O|18539.33|1995-07-28|4-NOT SPECIFIED|Clerk#000000269|0|re quickly after the quickly ironic packages. unusual notornis detect ac| +85198|588631|O|270579.78|1995-12-28|2-HIGH|Clerk#000003184|0|y players haggle according to the bold requ| +85199|620843|F|119711.62|1992-04-20|4-NOT SPECIFIED|Clerk#000004439|0|ar epitaphs. carefully final ideas detect unusual, ironic accounts. carefull| +85224|497767|O|261737.51|1997-11-14|5-LOW|Clerk#000003842|0|carefully after the furiously unusual packages. fluffily regular ideas hag| +85225|451309|O|154182.30|1995-12-20|3-MEDIUM|Clerk#000003359|0|ymptotes. busily regular foxes c| +85226|397876|F|37647.22|1994-02-21|1-URGENT|Clerk#000004314|0| blithely unusual court| +85227|72724|O|56672.80|1995-11-19|4-NOT SPECIFIED|Clerk#000004244|0|rs haggle furiously around the blithely | +85228|517657|F|296151.90|1992-04-15|3-MEDIUM|Clerk#000001686|0|nticingly among the requests. accounts affix accordi| +85229|250369|O|198077.65|1998-04-21|3-MEDIUM|Clerk#000000527|0|nic, even accounts against the sometimes final| +85230|422627|F|294831.84|1992-02-20|3-MEDIUM|Clerk#000004924|0| platelets sleep quickly over the careful| +85231|577358|O|178357.06|1995-08-11|3-MEDIUM|Clerk#000002860|0|s haggle furiously among the slyly bo| +85256|145195|F|206606.27|1993-10-07|5-LOW|Clerk#000001479|0|ts are carefully. blithel| +85257|524449|O|59630.26|1996-04-29|4-NOT SPECIFIED|Clerk#000003705|0|ages use slyly blithely ironic| +85258|389080|O|92827.19|1997-12-04|3-MEDIUM|Clerk#000000848|0|efully regular deposits integrate above the carefully| +85259|734422|O|163158.37|1996-06-10|5-LOW|Clerk#000004286|0| beans promise furi| +85260|650630|O|37985.47|1996-06-26|1-URGENT|Clerk#000004085|0|xes sleep slowly. furiously final deposits wake special, ironic a| +85261|136736|O|178657.62|1998-04-07|1-URGENT|Clerk#000001053|0| the slyly special reque| +85262|108098|O|197404.53|1996-06-10|1-URGENT|Clerk#000002479|0|eodolites detect. final accounts are ruthlessly against the doggedly| +85263|298258|F|346899.54|1993-12-10|2-HIGH|Clerk#000000237|0|s. blithely special theodolites| +85288|554509|O|152588.94|1996-10-24|5-LOW|Clerk#000002310|0| fluffily according to the doggedly ironic requests. carefully| +85289|114985|F|210684.30|1993-10-20|5-LOW|Clerk#000003020|0| carefully unusual requests cajole f| +85290|544618|F|179725.98|1992-02-12|4-NOT SPECIFIED|Clerk#000004303|0|thely bold deposits was permanen| +85291|385285|O|33639.61|1995-06-28|4-NOT SPECIFIED|Clerk#000000179|0|believe quietly against the carefully express | +85292|727714|O|71120.07|1995-10-18|1-URGENT|Clerk#000003092|0|yly bold asymptotes haggle across the quickly| +85293|423683|F|311571.34|1993-09-19|3-MEDIUM|Clerk#000000405|0|ously regular packages haggle ironic courts. fluffily final requests | +85294|334625|O|74846.10|1997-07-16|3-MEDIUM|Clerk#000001054|0|yly. regular accounts sleep blithely. deposits across th| +85295|528673|F|220437.07|1992-06-07|4-NOT SPECIFIED|Clerk#000000943|0| instructions. foxes will cajole blithely regular excuses. | +85320|140089|O|139799.72|1995-12-20|4-NOT SPECIFIED|Clerk#000002452|0|attainments sleep quickly along the slyly | +85321|205363|F|251989.98|1993-02-02|3-MEDIUM|Clerk#000002153|0|ously regular dolphins are. ironic, special dolphins hagg| +85322|18112|O|104674.41|1997-09-05|5-LOW|Clerk#000000760|0| blithely unusual ideas according to the carefully regular excuse| +85323|641149|F|140596.58|1994-08-07|2-HIGH|Clerk#000000705|0|y pending dolphins. blithely regular deposits cajole slyly final accou| +85324|522316|O|107305.06|1997-01-18|3-MEDIUM|Clerk#000000227|0|ies. slyly even dolphins are furiously about the slyly express requests.| +85325|541646|F|248693.34|1993-12-22|4-NOT SPECIFIED|Clerk#000000296|0|r packages are afte| +85326|691877|O|283573.81|1997-07-22|3-MEDIUM|Clerk#000003024|0|pending accounts. carefully spec| +85327|369169|F|280098.39|1993-09-29|5-LOW|Clerk#000001366|0|wake slyly. express grouches use quickly. carefully busy ideas grow a| +85352|591481|F|231996.13|1994-07-18|2-HIGH|Clerk#000004316|0|ly brave instructions. blithely final ideas against the furiously final ideas| +85353|519890|F|135082.27|1993-12-29|4-NOT SPECIFIED|Clerk#000002848|0| furiously theodolites. slow accounts haggle slyly carefully regula| +85354|278752|O|171492.22|1996-03-11|3-MEDIUM|Clerk#000004259|0|s cajole permanently. furio| +85355|467077|O|305082.55|1997-08-23|1-URGENT|Clerk#000002625|0|nts. unusual, special excuses use. enticingly regular | +85356|647725|O|62229.41|1997-02-05|3-MEDIUM|Clerk#000004774|0|l asymptotes are quickly along the fluffily silent foxes. carefully bold a| +85357|45109|O|83177.19|1995-11-19|4-NOT SPECIFIED|Clerk#000002495|0|l platelets. busily ironic braids cajole alongsi| +85358|626291|O|161166.22|1996-01-31|1-URGENT|Clerk#000000048|0|ges snooze fluffily special packages. pend| +85359|572104|O|121026.74|1996-05-28|1-URGENT|Clerk#000001914|0|to beans are against th| +85384|338045|F|94938.43|1994-10-17|5-LOW|Clerk#000000595|0|quests are furiously regular packages. ironic deposits integrate furious| +85385|271213|O|140186.95|1995-12-29|5-LOW|Clerk#000001021|0|olve carefully reque| +85386|507940|F|168968.55|1994-12-13|2-HIGH|Clerk#000000573|0|e regular, ironic pinto beans. fluffil| +85387|424628|F|1099.85|1994-07-16|1-URGENT|Clerk#000001741|0|ithely furious theodolit| +85388|471823|F|237278.70|1994-12-13|3-MEDIUM|Clerk#000000436|0|silent deposits wake carefully blithely regular requests. regular foxes are. | +85389|148247|O|166647.42|1997-09-01|1-URGENT|Clerk#000000805|0| blithely bold requests above the quickly regular requests cajole acros| +85390|80918|O|52183.02|1997-08-30|5-LOW|Clerk#000003006|0|final deposits haggle| +85391|230536|F|105306.94|1992-06-25|3-MEDIUM|Clerk#000000182|0|slyly ironic pinto beans nag carefull| +85416|117451|F|294722.27|1994-04-06|1-URGENT|Clerk#000003626|0|en excuses wake. blithely pending | +85417|733630|O|217761.11|1997-12-15|4-NOT SPECIFIED|Clerk#000000211|0|. furiously even requests kindle carefully blithely s| +85418|93835|O|149910.97|1996-09-03|5-LOW|Clerk#000001091|0|t the final braids. furiously pending ide| +85419|565139|O|86620.40|1997-01-22|3-MEDIUM|Clerk#000000427|0|counts. slyly express instructions ab| +85420|275629|F|200209.92|1994-09-29|1-URGENT|Clerk#000004582|0|efully ironic accounts. carefully final deposits nag sl| +85421|473479|F|215005.88|1994-02-13|3-MEDIUM|Clerk#000003254|0|the furiously express accounts. bold deposits wake furiously. slyly expre| +85422|259948|O|310570.30|1997-01-25|1-URGENT|Clerk#000002989|0|ckly final requests. blithely regular requests run fluffily bli| +85423|179992|O|266484.45|1998-03-25|2-HIGH|Clerk#000001322|0|yly regular packages cajole closely ab| +85448|365332|F|24551.62|1994-05-20|3-MEDIUM|Clerk#000004793|0|y regular requests. pending, ironic platelets use. slow, even packages use alo| +85449|632134|F|245900.78|1993-06-28|1-URGENT|Clerk#000004663|0|quickly bold ideas. blithely final accounts at the always even packages sleep| +85450|494746|F|318059.30|1993-08-19|3-MEDIUM|Clerk#000000862|0|s. ironic, pending sauternes ar| +85451|675320|F|147081.45|1994-12-05|5-LOW|Clerk#000004625|0|he requests. silent accounts doze bl| +85452|352120|F|65277.20|1993-12-07|2-HIGH|Clerk#000000501|0|osely express braids mus| +85453|562939|F|47165.10|1994-08-22|5-LOW|Clerk#000004986|0|al courts haggle furiously express dependencies. regular| +85454|63913|F|118938.84|1993-07-30|1-URGENT|Clerk#000004690|0|r courts. accounts haggle carefully sly accounts. dog| +85455|172580|O|64722.71|1995-12-25|2-HIGH|Clerk#000002334|0| beans after the ironic theo| +85480|292936|O|4542.12|1996-08-12|2-HIGH|Clerk#000000223|0| are carefully-- furiously | +85481|342880|O|53809.62|1997-01-13|3-MEDIUM|Clerk#000000040|0|usly bold packages. pending, unusual requests are slyly quiet packages. | +85482|525314|F|265252.94|1994-02-22|1-URGENT|Clerk#000004409|0|. regular, silent package| +85483|688994|F|17615.83|1992-03-19|5-LOW|Clerk#000001221|0|s after the unusual asymptotes wake quickly after the furiously pend| +85484|656558|O|133946.49|1997-04-09|2-HIGH|Clerk#000000962|0|ages kindle fluffily furiously special packages. special deposits use blith| +85485|4564|O|262239.96|1997-04-06|2-HIGH|Clerk#000001977|0| foxes for the pending courts thrash slyly quickly iro| +85486|187181|F|15395.48|1992-09-12|4-NOT SPECIFIED|Clerk#000001095|0| quickly pending packages haggle fluffily deposits. even pa| +85487|435541|O|288279.17|1997-03-28|3-MEDIUM|Clerk#000004462|0| carefully dogged platelets alongside of the quietly | +85512|108269|F|345665.48|1994-11-04|3-MEDIUM|Clerk#000004791|0| against the slyly unusual requests. regular dolph| +85513|171262|O|233478.40|1997-10-26|2-HIGH|Clerk#000004667|0|usly final excuses: furiously special instructions a| +85514|622888|F|263342.99|1994-11-07|1-URGENT|Clerk#000001489|0|l epitaphs boost blithely among| +85515|350624|O|114429.51|1997-12-03|1-URGENT|Clerk#000004867|0|yly slyly express theodolites. furiously dari| +85516|182834|F|112114.74|1995-01-28|5-LOW|Clerk#000000571|0|r requests across the instructions cajole blithely express foxes. final, final| +85517|125578|O|150603.87|1996-09-29|2-HIGH|Clerk#000003007|0|he furiously final courts. furiously fi| +85518|57562|F|127786.41|1994-11-13|2-HIGH|Clerk#000001793|0|fluffily fluffily final packages. expres| +85519|661222|F|52717.00|1992-10-14|1-URGENT|Clerk#000002628|0|nusual, careful packages integrate blithely special theodolites. r| +85544|400418|F|66111.72|1992-02-12|5-LOW|Clerk#000003755|0|nag sometimes above the express, express theodolites. | +85545|64357|O|357693.00|1998-06-03|3-MEDIUM|Clerk#000003231|0|riously ironic courts. eve| +85546|125665|O|75288.10|1996-03-10|1-URGENT|Clerk#000001655|0|nal ideas boost about the furiously regul| +85547|37619|F|214061.41|1992-01-21|5-LOW|Clerk#000003332|0| pending frays haggle. even, p| +85548|2530|F|198227.66|1992-11-16|1-URGENT|Clerk#000003713|0|carefully ironic requests believe quickly final pack| +85549|495208|O|181581.47|1997-03-29|1-URGENT|Clerk#000002336|0|ideas at the slyly busy dependencies mold caref| +85550|193442|F|247513.79|1992-09-16|2-HIGH|Clerk#000003445|0|arefully final packages cajole | +85551|670274|O|110573.52|1995-10-16|5-LOW|Clerk#000000415|0| slyly ironic packages haggle slyly ironic, regula| +85576|292525|F|191994.95|1992-03-08|3-MEDIUM|Clerk#000002407|0|ns nag. quickly silent packages | +85577|192229|F|131486.42|1994-02-10|2-HIGH|Clerk#000003081|0|ross the accounts. requests sleep around the blithely ironic packages. ent| +85578|539828|O|408945.49|1998-06-12|5-LOW|Clerk#000003279|0|ackages alongside of the ironic, perman| +85579|125518|F|209980.60|1993-01-17|5-LOW|Clerk#000003443|0|n warthogs use blithely against the special theodolites| +85580|579538|O|235163.33|1996-05-31|3-MEDIUM|Clerk#000003822|0|are after the regular deposits? accounts against the blithely iro| +85581|41527|F|176030.06|1992-07-14|3-MEDIUM|Clerk#000002724|0|y. carefully pending th| +85582|431330|O|233565.67|1996-07-29|2-HIGH|Clerk#000003932|0|r dolphins serve furiously: blithely even foxes cajole slyly enticingly bo| +85583|600620|F|233690.00|1992-05-22|4-NOT SPECIFIED|Clerk#000004672|0| furious dependencies. furiously slow deposits integr| +85608|367841|F|192331.14|1994-05-19|4-NOT SPECIFIED|Clerk#000003926|0|riously ironic accounts haggle fluffily slyly ironic foxes. sl| +85609|52900|F|121882.77|1993-11-15|5-LOW|Clerk#000003364|0| slyly pending asymptotes sleep permanentl| +85610|322064|P|232149.80|1995-03-27|2-HIGH|Clerk#000001934|0|express accounts. unusual, final deposits near the unusual excuses da| +85611|165865|O|47079.49|1996-12-04|5-LOW|Clerk#000003126|0|sts against the pending requests wake among the ironic reques| +85612|668087|O|177908.40|1998-05-29|5-LOW|Clerk#000004681|0|ages cajole according to the even, ironic| +85613|272533|F|244007.36|1993-02-17|4-NOT SPECIFIED|Clerk#000004612|0|, even pinto beans; carefully pending requests detect. pending, unusu| +85614|205411|F|167583.19|1993-04-25|3-MEDIUM|Clerk#000004583|0|egular accounts according to the warhorses na| +85615|75295|O|275133.05|1998-01-02|3-MEDIUM|Clerk#000004789|0|usual, regular requ| +85640|205351|O|337348.42|1997-08-10|2-HIGH|Clerk#000002652|0|ide of the carefully final theodolites. regularl| +85641|571726|F|261631.31|1992-02-28|3-MEDIUM|Clerk#000003274|0|ronic ideas could lose. fluffily bold packages wake never accord| +85642|746315|F|69350.66|1992-10-03|1-URGENT|Clerk#000000960|0|posits. final, regular multipliers| +85643|306868|F|348843.17|1992-03-12|3-MEDIUM|Clerk#000004688|0| final pinto beans wake ar| +85644|498550|F|2428.73|1993-09-05|4-NOT SPECIFIED|Clerk#000001656|0|al dependencies serve express requests. quickly bold p| +85645|96781|O|172526.24|1997-02-09|5-LOW|Clerk#000001104|0|y final instructions sno| +85646|581045|F|197484.19|1992-03-06|3-MEDIUM|Clerk#000003803|0|gedly after the bold requests. furiously regular deposit| +85647|612688|F|93241.15|1995-01-19|1-URGENT|Clerk#000001899|0|y fluffily ironic requests. car| +85672|687266|O|130346.82|1995-08-12|4-NOT SPECIFIED|Clerk#000000526|0|te. idly even theodolites unwind carefully? final packages thrash furio| +85673|113864|F|108035.49|1993-06-27|3-MEDIUM|Clerk#000004283|0|efully final theodolites according to the carefully special packages cajole b| +85674|451912|F|355695.22|1994-12-17|2-HIGH|Clerk#000000074|0|ly ironic theodolites acr| +85675|25969|O|42980.63|1995-08-25|2-HIGH|Clerk#000004878|0|rate. furiously even instructions wake quickly regular | +85676|709939|F|19596.69|1992-07-01|3-MEDIUM|Clerk#000003730|0|. blithely pending instr| +85677|170603|F|54746.92|1994-05-17|5-LOW|Clerk#000004153|0| ironic orbits cajole furiously express instructions. | +85678|62777|O|78176.39|1995-05-12|1-URGENT|Clerk#000002389|0|ts need to affix furiously final platelets. deposits affix. carefully| +85679|588604|F|131133.59|1994-08-11|2-HIGH|Clerk#000001984|0|dolites. pending, regular deposits affix asymp| +85704|136687|F|66810.91|1992-06-03|1-URGENT|Clerk#000001256|0|ly final pinto beans ex| +85705|24232|O|25933.37|1997-03-14|3-MEDIUM|Clerk#000003387|0|final dependencies haggle doggedly furiously iron| +85706|5966|O|82922.26|1997-11-05|3-MEDIUM|Clerk#000003718|0| ironic ideas. regular requests wake quickly | +85707|518752|O|191901.24|1997-06-17|2-HIGH|Clerk#000001639|0|oost. slyly ironic packages hagg| +85708|642692|F|21044.77|1993-02-14|4-NOT SPECIFIED|Clerk#000001296|0|haggle quickly carefully final pain| +85709|209732|F|332197.49|1992-01-15|2-HIGH|Clerk#000003946|0|eodolites cajole permanently against the e| +85710|714559|F|30078.40|1992-08-24|2-HIGH|Clerk#000000376|0|ongside of the packages. bold, bold requests are | +85711|573796|F|137183.95|1994-09-17|1-URGENT|Clerk#000002618|0|al accounts play ironically. furiously even accounts maintain quickly pen| +85736|273277|O|52092.17|1997-08-18|2-HIGH|Clerk#000001928|0|sly regular requests according to the furiously regular theodo| +85737|689593|F|11429.56|1992-02-02|2-HIGH|Clerk#000003153|0|counts affix slyly.| +85738|223055|O|1641.57|1997-08-15|1-URGENT|Clerk#000000223|0|es. carefully regular deposits boost. | +85739|373616|O|118043.87|1998-05-23|1-URGENT|Clerk#000004931|0|aggle fluffily express requests. pend| +85740|348439|F|135175.56|1992-04-08|2-HIGH|Clerk#000004282|0|s special packages. slyly special requests are among the even, busy account| +85741|192086|O|97256.68|1998-06-08|3-MEDIUM|Clerk#000002385|0|ic ideas use. furiously silent packa| +85742|379703|O|76670.76|1997-08-06|5-LOW|Clerk#000002813|0|thinly regular excuses. blithely unusual dependencies are s| +85743|662314|O|126539.86|1995-07-22|1-URGENT|Clerk#000000839|0|uriously final excuses wake after the e| +85768|737272|O|135170.81|1995-10-13|1-URGENT|Clerk#000003556|0|iously even foxes. idly regular deposits bo| +85769|577390|O|77117.79|1996-06-11|5-LOW|Clerk#000004519|0|e silently instructions. fluffil| +85770|660145|O|125751.58|1996-07-16|3-MEDIUM|Clerk#000002574|0|lithely ruthless instructions. special accounts sleep; regular, ironic t| +85771|283411|O|51593.96|1997-10-15|3-MEDIUM|Clerk#000004860|0|utside the blithely unusual accou| +85772|13562|P|157247.34|1995-03-03|4-NOT SPECIFIED|Clerk#000000083|0| fluffily. unusual package| +85773|672488|F|64892.64|1993-09-09|4-NOT SPECIFIED|Clerk#000001326|0|across the regular courts cajole carefully permanently dogged instructi| +85774|3359|O|213483.20|1996-10-19|4-NOT SPECIFIED|Clerk#000004011|0| foxes doubt fluffily! carefully regular requests according to the qu| +85775|189580|F|73956.53|1993-03-14|2-HIGH|Clerk#000000773|0|ully express requests. fluffily ironic theodolites use q| +85800|240950|F|137602.64|1992-02-09|5-LOW|Clerk#000001899|0|o the even, ironic packages boost slyly silent requests. instructions slee| +85801|390317|F|65932.44|1993-04-07|2-HIGH|Clerk#000004175|0|lets. furiously final pinto beans about the | +85802|550300|O|34596.40|1996-04-23|4-NOT SPECIFIED|Clerk#000004149|0|uld haggle carefully carefully final deposit| +85803|619786|O|97569.40|1997-05-31|4-NOT SPECIFIED|Clerk#000001485|0|deas are quick, final requests-- fluffily| +85804|734935|F|179140.39|1993-11-25|5-LOW|Clerk#000003332|0|ges. accounts nag stealthily. accounts are alon| +85805|294464|F|114389.84|1994-05-26|3-MEDIUM|Clerk#000001424|0|dencies are slyly pending ide| +85806|546850|O|21781.10|1996-04-27|1-URGENT|Clerk#000002271|0|nly final deposits sleep quickly furious ideas. r| +85807|406198|O|187781.61|1997-04-02|3-MEDIUM|Clerk#000003664|0|ideas. foxes nag furiou| +85832|436460|F|60715.49|1994-02-13|5-LOW|Clerk#000001905|0|out the final instructions. even packages| +85833|579868|O|306364.20|1997-01-21|2-HIGH|Clerk#000001679|0|ins. blithely bold deposits wake furio| +85834|338326|F|94032.45|1993-07-06|2-HIGH|Clerk#000003760|0| quickly unusual dependencies. requests are blithely express dep| +85835|470996|F|284405.68|1994-03-19|1-URGENT|Clerk#000000847|0|e slyly. furiously regular senti| +85836|521830|O|18064.05|1998-03-11|4-NOT SPECIFIED|Clerk#000003358|0|al, ironic deposits kindle above the blithely| +85837|643141|F|125088.11|1993-09-02|1-URGENT|Clerk#000002451|0| slyly express accounts haggle above| +85838|242605|O|169387.15|1997-10-27|3-MEDIUM|Clerk#000002664|0|ular packages unwind quickly furiously even dep| +85839|454108|F|251230.00|1992-07-02|2-HIGH|Clerk#000004234|0| accounts boost furiously among the blit| +85864|190804|O|110336.54|1995-12-30|5-LOW|Clerk#000004607|0|carefully bold foxes doubt slyly slyly bold p| +85865|566602|O|310223.96|1996-08-15|1-URGENT|Clerk#000003323|0|iously ironic deposits boost qu| +85866|122834|F|209207.01|1994-02-25|2-HIGH|Clerk#000004639|0|into beans across the platelets impress blithely blithely thin decoys. blithe| +85867|470936|F|29111.71|1993-12-14|4-NOT SPECIFIED|Clerk#000002267|0|ously accounts. thin, final accounts detect carefully busy packag| +85868|269677|O|106331.36|1996-10-03|2-HIGH|Clerk#000004632|0|cross the special packages. bold foxes doubt; furiously p| +85869|209560|F|247373.72|1992-03-06|1-URGENT|Clerk#000001640|0|beneath the blithely special requests boost quickly express requests.| +85870|53407|O|180559.09|1996-01-27|1-URGENT|Clerk#000002584|0|ges. blithely ironic packages cajole flu| +85871|607354|F|144720.15|1993-08-16|3-MEDIUM|Clerk#000000169|0|ggle? slyly regular hockey players wake furiously ironic requests. blithely| +85896|278395|F|196884.13|1992-11-20|4-NOT SPECIFIED|Clerk#000000761|0|arefully above the unusual, pending inst| +85897|475972|O|185786.71|1995-07-23|5-LOW|Clerk#000001305|0|ccounts haggle regular packages: unusual packag| +85898|142057|F|141030.06|1994-03-17|5-LOW|Clerk#000004785|0|ackages. slyly express accounts nag furiously| +85899|281956|F|53695.16|1993-06-18|5-LOW|Clerk#000001733|0|usly regular, ironic de| +85900|303679|F|251409.13|1993-02-18|3-MEDIUM|Clerk#000004795|0|ses. carefully final foxes nag over the furio| +85901|169948|F|194311.32|1994-08-13|1-URGENT|Clerk#000003994|0|sly. blithely blithe accounts engage slyly against the escapad| +85902|283513|F|22838.30|1994-05-15|4-NOT SPECIFIED|Clerk#000003359|0| sometimes regular accounts thrash carefully special, ironic | +85903|249889|O|97314.88|1997-08-06|4-NOT SPECIFIED|Clerk#000000394|0|ke blithely about the carefully iro| +85928|620015|O|45630.47|1998-04-03|4-NOT SPECIFIED|Clerk#000004446|0|egular foxes boost according to the slyly even deposits. careful| +85929|77720|O|39578.07|1997-07-18|1-URGENT|Clerk#000004074|0|arefully regular dolphins lose slyly above the carefully pend| +85930|473248|O|20162.62|1996-01-21|5-LOW|Clerk#000002986|0|e blithely against the regular packages. furiously final requests wake again| +85931|99173|O|167335.35|1997-09-06|3-MEDIUM|Clerk#000004818|0|o the furiously even pinto be| +85932|299560|F|80173.01|1993-02-06|4-NOT SPECIFIED|Clerk#000001464|0|o beans wake along the furious instructions. fluffily special packages s| +85933|680674|O|240358.14|1997-02-21|4-NOT SPECIFIED|Clerk#000000731|0|ccounts. furiously silent deposits around the ironic package| +85934|330412|O|116256.62|1997-12-03|5-LOW|Clerk#000003884|0|ents. furiously ironic instructions are carefully. ironic, r| +85935|218348|P|195663.87|1995-03-17|3-MEDIUM|Clerk#000003994|0|al warthogs wake fluffily| +85960|21586|O|6959.72|1995-11-21|3-MEDIUM|Clerk#000000343|0|cial theodolites. furiously pending ideas according to the special platelet| +85961|533755|F|113423.31|1992-03-17|2-HIGH|Clerk#000004169|0|s use slyly enticing theodolites. accounts unwind quickly.| +85962|44839|O|19076.40|1996-03-29|5-LOW|Clerk#000003063|0|l dependencies could have to affix furiously across the asymptotes. blith| +85963|584287|F|116321.75|1993-12-04|4-NOT SPECIFIED|Clerk#000000642|0|pending hockey players. furiously spec| +85964|360022|F|161197.77|1992-07-05|1-URGENT|Clerk#000000464|0|the furiously even epitaphs. slyly regular dolphins alongside of the | +85965|622831|O|111705.07|1997-10-17|4-NOT SPECIFIED|Clerk#000002540|0|ily even grouches use carefully pending instructions. carefully final accou| +85966|137089|F|219465.14|1994-09-21|1-URGENT|Clerk#000003685|0|express excuses around the furiously p| +85967|39584|O|90737.22|1996-07-28|4-NOT SPECIFIED|Clerk#000003302|0|key players. regular pinto beans wa| +85992|31940|P|54518.54|1995-05-29|3-MEDIUM|Clerk#000000902|0|sits affix blithely. blithely ironic dolphins nag final accounts| +85993|555220|O|206979.35|1996-01-01|1-URGENT|Clerk#000001684|0|en instructions should ar| +85994|55555|O|108780.86|1998-04-11|5-LOW|Clerk#000004625|0|oldly after the regular, ironic accounts. ca| +85995|709153|O|182220.97|1996-07-13|4-NOT SPECIFIED|Clerk#000001802|0|fully ironic accounts against the fluffil| +85996|463477|O|136566.72|1995-07-03|3-MEDIUM|Clerk#000002707|0|s wake asymptotes. slyly even pinto bea| +85997|124912|F|148653.97|1992-10-14|5-LOW|Clerk#000000709|0|sly. slyly special deposits haggle. blithely regula| +85998|139912|O|154981.96|1997-11-22|4-NOT SPECIFIED|Clerk#000004592|0|ajole carefully final deposits. pending, unusu| +85999|221338|F|66019.43|1993-04-04|4-NOT SPECIFIED|Clerk#000002430|0|ly pending frets after the regular, pending accounts| +86024|20440|F|163755.46|1992-06-08|2-HIGH|Clerk#000000189|0| blithely even packages. furiously r| +86025|16211|F|85147.73|1993-07-09|5-LOW|Clerk#000000024|0|despite the slyly final bra| +86026|202654|F|230067.34|1994-06-23|2-HIGH|Clerk#000003272|0|lar foxes cajole. regular pearls doub| +86027|231709|O|90023.52|1995-05-19|5-LOW|Clerk#000003197|0|multipliers. ironic, express packages along the blithely unusual deposi| +86028|316492|F|111882.33|1994-05-26|5-LOW|Clerk#000004844|0| regular packages. dolphins detect. carefully final instructions x-ray p| +86029|280225|F|165011.98|1994-08-10|2-HIGH|Clerk#000004288|0|nts. slowly regular requests above the deposits haggle | +86030|490247|O|226178.96|1996-07-22|2-HIGH|Clerk#000000956|0|riously ironic dependencies are final, quick packages. ironically even ac| +86031|75041|F|24854.08|1995-01-29|2-HIGH|Clerk#000004273|0|lithely regular deposits detect above the carefully regular ideas. ironic att| +86056|457100|P|295122.47|1995-03-13|1-URGENT|Clerk#000003284|0|ges cajole ruthlessly after the final the| +86057|216100|O|46482.29|1997-08-06|2-HIGH|Clerk#000004683|0|s boost. furiously ironic instructions according to the unu| +86058|482362|O|217028.61|1997-05-24|3-MEDIUM|Clerk#000001047|0|o beans! furiously final pinto beans sleep quickly express excuses. blithely | +86059|282133|O|83386.76|1997-11-22|5-LOW|Clerk#000003098|0| quickly special, ironic| +86060|282491|O|211055.71|1996-09-22|5-LOW|Clerk#000001589|0|ly. even, close deposits haggle. packages nod furious| +86061|313453|O|76507.69|1998-07-22|3-MEDIUM|Clerk#000001048|0|realms. somas are unusual ideas. furiously ironic accounts af| +86062|175306|F|148492.97|1993-10-26|3-MEDIUM|Clerk#000003484|0|. slyly express theodolit| +86063|358564|O|58555.63|1996-08-03|2-HIGH|Clerk#000004357|0|express theodolites. even account| +86088|106972|F|47834.25|1993-03-21|4-NOT SPECIFIED|Clerk#000000663|0| express warhorses cajole blithely among| +86089|126286|F|138076.70|1992-05-07|3-MEDIUM|Clerk#000002951|0|ss ideas are furiously carefully special packages. f| +86090|730474|O|182327.53|1998-01-04|2-HIGH|Clerk#000002124|0|. even accounts sleep after the cou| +86091|326506|F|50367.73|1994-03-20|1-URGENT|Clerk#000001907|0|after the pinto beans sleep q| +86092|583001|O|242031.97|1996-01-18|5-LOW|Clerk#000003903|0|e regular, unusual accounts. regular foxes are slyly. slyly express ins| +86093|496858|O|200659.20|1995-11-10|5-LOW|Clerk#000000849|0| requests integrate. blithely regular packages ha| +86094|169006|F|232398.43|1994-01-23|3-MEDIUM|Clerk#000004297|0| tithes. slyly bold dependencies sleep carefully according to the slyly | +86095|202408|F|110447.97|1992-08-24|4-NOT SPECIFIED|Clerk#000000361|0|latelets are. ironic, e| +86120|611642|F|231609.74|1993-12-29|1-URGENT|Clerk#000000253|0| the bold pinto beans doze fluffily furiously spec| +86121|352529|O|185046.48|1995-12-06|5-LOW|Clerk#000000331|0|dencies print quickly aft| +86122|698041|O|81499.23|1997-02-11|1-URGENT|Clerk#000001755|0| quickly requests. slyly express packages above the final requests wake fi| +86123|466699|F|241774.90|1992-05-11|4-NOT SPECIFIED|Clerk#000001256|0|lent packages. blithely bold deposits are slyly| +86124|287182|F|217251.27|1992-09-10|3-MEDIUM|Clerk#000001629|0|ests. slyly silent instructions nag quickly across the fluffi| +86125|396805|O|57310.71|1996-07-30|3-MEDIUM|Clerk#000004959|0|nst the ironic theodolites. theodolites nag slyly silent pint| +86126|80608|O|80281.23|1995-10-16|1-URGENT|Clerk#000002253|0|y unusual packages haggle against the blithely special accounts. blithe| +86127|264001|F|190732.86|1995-03-11|3-MEDIUM|Clerk#000000647|0| accounts. unusual deposits acro| +86152|58022|O|98320.10|1996-04-18|4-NOT SPECIFIED|Clerk#000004455|0|osits haggle carefully; blithely final depo| +86153|162509|F|57098.19|1993-12-25|3-MEDIUM|Clerk#000003745|0|e blithely final hockey players can run furiously ironic d| +86154|530791|F|154352.01|1992-07-11|2-HIGH|Clerk#000004674|0|ar accounts. carefully even packages are furiously along the blithely unusu| +86155|486893|O|120561.73|1996-03-22|1-URGENT|Clerk#000004666|0|s sleep slyly special, ironic deposits. idle, bold sauter| +86156|697549|O|283079.68|1996-11-27|1-URGENT|Clerk#000004707|0|side of the deposits cajole abov| +86157|422539|F|143667.13|1994-07-19|4-NOT SPECIFIED|Clerk#000003388|0| bold asymptotes integrate across the instructi| +86158|603904|F|88187.09|1995-03-05|4-NOT SPECIFIED|Clerk#000001079|0|heodolites at the ironic| +86159|38896|O|124276.42|1997-05-07|4-NOT SPECIFIED|Clerk#000004529|0|y regular pinto beans boost. furiously final instructions | +86184|471649|O|220335.70|1995-09-01|2-HIGH|Clerk#000004006|0|aggle quickly express, f| +86185|246043|O|236695.64|1998-03-16|5-LOW|Clerk#000003445|0|ckly regular ideas. quickly final accounts against the caref| +86186|462169|O|181553.08|1996-05-29|1-URGENT|Clerk#000000985|0| regular accounts are? slyly bold courts sleep carefully regular ideas. furi| +86187|642539|F|140047.12|1992-04-26|1-URGENT|Clerk#000003619|0|efully about the quick| +86188|640930|O|80746.83|1997-06-20|5-LOW|Clerk#000001372|0|ronic instructions serve carefully fluffi| +86189|605584|F|73649.91|1994-05-12|5-LOW|Clerk#000001355|0|fully even requests use| +86190|522523|O|220222.27|1997-06-13|1-URGENT|Clerk#000000208|0|ickly unusual requests haggl| +86191|292375|O|62453.95|1998-04-03|5-LOW|Clerk#000002809|0|until the accounts wake carefull| +86216|695860|O|102014.17|1995-07-21|3-MEDIUM|Clerk#000004454|0|deposits. carefully bold courts across the | +86217|563081|O|303916.56|1995-09-24|4-NOT SPECIFIED|Clerk#000002438|0|ers! pinto beans wake. f| +86218|201503|F|122479.43|1993-02-21|3-MEDIUM|Clerk#000004623|0| deposits. dolphins thrash slyly ideas. blithely even multipliers alongside o| +86219|405610|F|105410.01|1993-05-05|1-URGENT|Clerk#000001956|0|xpress requests. foxes nag blithely blithely f| +86220|308578|F|113669.29|1992-12-18|3-MEDIUM|Clerk#000002655|0| the pains. blithely final platelet| +86221|738626|F|282407.02|1994-06-30|5-LOW|Clerk#000001222|0|al deposits cajole evenly along| +86222|76432|F|179956.31|1993-09-11|4-NOT SPECIFIED|Clerk#000000642|0|e. furiously regular packages haggle blithely instructions. pend| +86223|567967|F|126133.64|1993-03-11|5-LOW|Clerk#000002914|0|s sleep across the blithely regular ideas. enticingly even dependencie| +86248|557626|O|224623.10|1995-09-10|1-URGENT|Clerk#000003757|0|l theodolites haggle carefully alongside o| +86249|13738|F|22142.31|1994-02-25|3-MEDIUM|Clerk#000002945|0|pecial deposits. final, ironic| +86250|641710|O|282294.87|1998-04-29|3-MEDIUM|Clerk#000001310|0|yly along the carefully ironic | +86251|197305|F|248209.82|1993-08-01|4-NOT SPECIFIED|Clerk#000003388|0|sits. slyly final requests accor| +86252|337049|O|311319.00|1996-08-05|2-HIGH|Clerk#000001270|0| special ideas would affix carefully ironic grouches: express acc| +86253|23888|O|120195.81|1998-02-27|3-MEDIUM|Clerk#000004748|0|ss excuses wake across the carefully regular ideas. even, pend| +86254|221026|O|274165.92|1998-07-01|4-NOT SPECIFIED|Clerk#000004366|0|gular theodolites. blithely ironic ideas above the furiously final theodol| +86255|14383|O|205806.01|1998-04-11|5-LOW|Clerk#000001181|0|gular foxes integrate furiously fluffily final plat| +86280|223837|F|78499.54|1994-02-28|2-HIGH|Clerk#000002162|0|slyly packages. furiously ironic ideas at the accounts cajole slyly above the | +86281|13558|O|150268.14|1996-10-03|5-LOW|Clerk#000001797|0|ess about the fluffily even d| +86282|600161|O|5030.22|1995-06-20|1-URGENT|Clerk#000001695|0|haggle blithely quickly bold packages. furiously stealthy frets up the close| +86283|146890|F|233280.27|1992-06-28|1-URGENT|Clerk#000002018|0|ully final accounts print quick| +86284|512995|F|78137.44|1994-10-22|4-NOT SPECIFIED|Clerk#000003006|0|osits should have to are blithely unusual requests. regular | +86285|625756|F|5178.43|1994-06-15|1-URGENT|Clerk#000001531|0| slyly express dependencies nag carefully. slyly ironic ideas c| +86286|571894|O|74512.86|1998-03-30|2-HIGH|Clerk#000001271|0|ut the carefully regular packages try to cajole furiously iro| +86287|538979|O|259992.83|1998-03-23|2-HIGH|Clerk#000003452|0|he bold, regular requests. final, | +86312|106966|O|187346.25|1995-08-09|4-NOT SPECIFIED|Clerk#000001922|0|ss accounts sleep furiously pending pains| +86313|6655|O|36564.28|1995-07-28|4-NOT SPECIFIED|Clerk#000000894|0|. finally pending packages haggle| +86314|76729|F|104005.56|1995-02-16|2-HIGH|Clerk#000004060|0| slyly across the instructions. q| +86315|332453|F|228784.16|1992-09-12|4-NOT SPECIFIED|Clerk#000003571|0|ideas. instructions mold carefully boldly i| +86316|21748|F|222244.79|1994-08-11|5-LOW|Clerk#000004591|0|d requests sleep carefully ironic courts. pending dolphins dete| +86317|250058|F|225958.69|1994-12-22|4-NOT SPECIFIED|Clerk#000002299|0|ent pinto beans haggle fur| +86318|463622|F|159085.96|1994-02-17|1-URGENT|Clerk#000003032|0|! carefully pending packages wake carefully furiously regu| +86319|340166|F|36836.76|1994-02-11|4-NOT SPECIFIED|Clerk#000003236|0| quickly. slyly ironic dependencies around th| +86344|655297|O|20647.52|1996-02-26|1-URGENT|Clerk#000001109|0| dependencies print slyly along the carefull| +86345|547495|O|373820.74|1998-04-21|4-NOT SPECIFIED|Clerk#000001645|0| express asymptotes. quietly express deposits nod s| +86346|716107|O|235053.20|1998-05-04|5-LOW|Clerk#000001930|0| braids are fluffily furiously pendi| +86347|349817|O|12337.71|1997-04-14|2-HIGH|Clerk#000000891|0|symptotes haggle slyly against t| +86348|118372|F|167007.65|1995-02-16|1-URGENT|Clerk#000001737|0| carefully packages; i| +86349|468265|O|276203.29|1998-05-02|4-NOT SPECIFIED|Clerk#000004662|0|notornis sleep? closely final pinto beans wake quickly| +86350|369970|O|245859.03|1995-11-13|5-LOW|Clerk#000001544|0|ically blithely unusual theodolites. quickly even warhorses alongsid| +86351|562813|F|202652.87|1992-10-02|4-NOT SPECIFIED|Clerk#000003722|0|g the regular, final packages hag| +86376|193291|O|317894.69|1998-01-13|1-URGENT|Clerk#000000658|0|ual pinto beans mold. slyly final dolphins a| +86377|390811|F|144752.24|1994-03-19|5-LOW|Clerk#000004880|0| unusual packages according to the fluffily regular dep| +86378|608242|O|43497.22|1997-07-15|5-LOW|Clerk#000000033|0|ole. carefully bold accounts poach | +86379|191110|F|36134.21|1993-06-24|3-MEDIUM|Clerk#000001763|0|. deposits are slyly ab| +86380|463816|F|21256.67|1994-03-27|3-MEDIUM|Clerk#000000998|0|y. quickly regular depende| +86381|586306|P|379132.75|1995-04-30|3-MEDIUM|Clerk#000000556|0|ular packages wake | +86382|517915|F|136200.98|1994-03-29|4-NOT SPECIFIED|Clerk#000004350|0| fluffily carefully regular accounts. ironic, special theodolites | +86383|89179|O|109806.57|1997-01-02|3-MEDIUM|Clerk#000004298|0|ily. fluffily unusual foxes cajole | +86408|302000|O|189010.20|1998-05-14|2-HIGH|Clerk#000000187|0|press platelets. carefully sly requests detect furiously a| +86409|450496|O|186507.26|1997-05-18|4-NOT SPECIFIED|Clerk#000002396|0| express patterns. blithely regular packages sleep slyly regular acc| +86410|210607|O|122377.09|1996-12-12|2-HIGH|Clerk#000003699|0|ccounts alongside of the quickly express epitaphs cajole carefully regu| +86411|390211|O|329025.40|1996-05-26|3-MEDIUM|Clerk#000002183|0|se silent, pending accounts. daring | +86412|249152|O|5663.40|1997-08-20|4-NOT SPECIFIED|Clerk#000000893|0| ironic gifts. slyly regular dep| +86413|243415|O|325145.23|1997-03-15|1-URGENT|Clerk#000000655|0|y ironic deposits. furiously even instructions | +86414|548395|F|277476.93|1992-07-27|5-LOW|Clerk#000001416|0|arhorses hang carefully accor| +86415|105742|O|138533.73|1997-05-20|4-NOT SPECIFIED|Clerk#000002779|0|ove the carefully special deposits. final deposits after th| +86440|427175|F|88329.17|1994-05-08|1-URGENT|Clerk#000003130|0| the ironic deposits. bold, final | +86441|522235|O|99244.46|1998-05-11|4-NOT SPECIFIED|Clerk#000000631|0|y regular instructions haggle final courts. f| +86442|670813|O|229505.84|1997-06-03|4-NOT SPECIFIED|Clerk#000000676|0|yly special requests. | +86443|341941|F|97638.13|1995-03-10|4-NOT SPECIFIED|Clerk#000003167|0|onic requests cajole furiousl| +86444|502255|O|54984.62|1996-08-01|4-NOT SPECIFIED|Clerk#000002645|0|ular requests are. furiously silent dep| +86445|133637|O|128739.74|1996-07-01|2-HIGH|Clerk#000002744|0| wake furiously. sheaves after the final accounts affix insid| +86446|524845|O|38870.22|1998-03-24|4-NOT SPECIFIED|Clerk#000000995|0|ual requests. carefully regular requests boost furiously. bo| +86447|318251|O|179090.11|1997-02-19|3-MEDIUM|Clerk#000000241|0|furiously even deposits about the sly excuses bo| +86472|582040|F|165644.95|1994-10-12|2-HIGH|Clerk#000003956|0|fix furiously pending packages: final theodolites wake | +86473|89093|O|146443.73|1996-03-21|3-MEDIUM|Clerk#000003578|0|oost according to the slyly silent sheaves. foxes haggle carefully a| +86474|373672|O|174776.44|1997-01-27|1-URGENT|Clerk#000001873|0|tructions. fluffily regular pinto beans use blithely along the| +86475|541084|O|148455.02|1997-02-04|2-HIGH|Clerk#000002069|0|ke furiously idly even deposits. carefully express ideas caj| +86476|228094|F|165989.44|1993-04-20|5-LOW|Clerk#000000123|0|long the final, final foxes. slyly blithe epitaphs| +86477|323834|F|80854.00|1993-12-02|4-NOT SPECIFIED|Clerk#000004872|0|ter the quickly regul| +86478|662791|P|137165.58|1995-04-04|2-HIGH|Clerk#000003247|0|. ironic, final theodolites| +86479|503992|O|93231.04|1995-11-17|1-URGENT|Clerk#000002749|0| furiously even excuses affix alongsi| +86504|61846|F|258366.76|1993-10-19|1-URGENT|Clerk#000000339|0|l deposits sleep dependencies. furiously unusua| +86505|687184|O|27869.82|1997-11-24|4-NOT SPECIFIED|Clerk#000004283|0|. bold, regular dependencies wake carefully unusual accounts. carefully iro| +86506|224518|O|42698.48|1998-03-06|2-HIGH|Clerk#000003381|0|lites use. slowly fina| +86507|199339|F|210028.14|1993-03-05|5-LOW|Clerk#000002375|0|aggle carefully along the silent,| +86508|24667|F|20776.27|1993-03-27|4-NOT SPECIFIED|Clerk#000002109|0|hely regular requests. blithely final account| +86509|565207|O|84434.32|1997-10-25|5-LOW|Clerk#000001869|0|frays haggle. final deposits haggle. furiously ironi| +86510|664658|O|275486.39|1998-07-03|3-MEDIUM|Clerk#000004854|0|ng the carefully silent exc| +86511|404321|O|21865.31|1997-06-01|1-URGENT|Clerk#000000738|0|ages nag quickly; slyly final packages wak| +86536|419527|O|161402.08|1998-03-31|4-NOT SPECIFIED|Clerk#000000588|0|uctions. furiously even foxes among the carefully regular depende| +86537|223567|O|74807.85|1998-03-25|3-MEDIUM|Clerk#000002369|0|dolites about the quickly bold theodolites cajole blithely final, final a| +86538|727147|F|11115.37|1994-12-04|5-LOW|Clerk#000000906|0| to the blithely regular requests. regular packages about the express | +86539|654713|F|193338.99|1992-05-30|4-NOT SPECIFIED|Clerk#000003046|0| the ironic accounts engage about the deposits. ideas above the blithel| +86540|500578|F|176279.65|1994-06-25|5-LOW|Clerk#000004989|0| furiously busy theodolit| +86541|449053|F|150907.88|1993-09-13|4-NOT SPECIFIED|Clerk#000000469|0|uests would affix accounts. stealthy, even epitaphs sublat| +86542|702784|F|195597.13|1994-08-24|3-MEDIUM|Clerk#000002769|0|y unusual platelets boost around the special asy| +86543|680282|O|195069.61|1996-11-13|4-NOT SPECIFIED|Clerk#000003320|0|lar, regular instructions grow quickly ironic sheaves. furiously | +86568|497515|O|42046.71|1996-01-17|3-MEDIUM|Clerk#000002444|0|ites wake according to the fluffily e| +86569|732830|O|161439.52|1998-01-30|5-LOW|Clerk#000000181|0| ideas affix fluffily ironic, even accounts. furiously stealthy requests| +86570|161995|O|215549.93|1997-01-17|3-MEDIUM|Clerk#000004958|0|eas haggle furiously across the quickly express deposits. regular dinos d| +86571|131416|O|155522.42|1996-06-22|1-URGENT|Clerk#000000978|0|ously carefully express deposits. carefully iron| +86572|698024|O|287038.45|1996-03-31|2-HIGH|Clerk#000001240|0|s. furiously ironic pi| +86573|180881|F|121187.32|1993-04-18|5-LOW|Clerk#000000407|0|otes about the furiously regular requests poach carefully flu| +86574|310043|F|35649.60|1993-07-13|5-LOW|Clerk#000002863|0|ly. fluffily special | +86575|629339|F|326246.63|1994-01-15|2-HIGH|Clerk#000003565|0|usly fluffily unusual de| +86600|42452|F|97859.61|1994-02-27|4-NOT SPECIFIED|Clerk#000003090|0|. deposits are slyly. unusual gifts boost. pending, final plate| +86601|237683|F|58189.70|1992-08-03|5-LOW|Clerk#000003075|0|deposits. final foxes above the i| +86602|223277|O|180151.81|1996-08-17|1-URGENT|Clerk#000000266|0|l, express dependencies would cajole among the special deposits. express| +86603|354886|O|236226.72|1996-08-23|5-LOW|Clerk#000000238|0|s are. blithely close deposits hinder blithely above the quickly r| +86604|561047|F|209347.39|1992-05-20|3-MEDIUM|Clerk#000003917|0|mptotes affix slyly above the blithely express deposits| +86605|501976|F|225587.27|1994-06-30|5-LOW|Clerk#000002260|0| excuses wake fluffily. unusual accounts boost carefully blithely| +86606|696661|O|24449.42|1997-12-11|1-URGENT|Clerk#000001129|0|luffily special theodolites are | +86607|522545|F|115073.70|1992-03-04|1-URGENT|Clerk#000001999|0|ly pending dolphins. i| +86632|647849|F|128868.44|1993-04-13|4-NOT SPECIFIED|Clerk#000004187|0|accounts. fluffily pending foxes grow carefully against the special instr| +86633|642199|O|207692.38|1995-09-01|5-LOW|Clerk#000000229|0|r packages cajole carefully accounts. furiously regular packages haggle c| +86634|156817|F|96027.23|1995-05-20|5-LOW|Clerk#000003318|0|nstructions. even dependencies haggle about the furiously expr| +86635|90496|O|111904.70|1996-08-02|2-HIGH|Clerk#000001507|0|out the express deposits| +86636|693532|F|130315.32|1993-06-15|1-URGENT|Clerk#000004046|0|mong the doggedly unusual pinto beans cajole blithely accord| +86637|434821|F|278892.21|1992-06-09|3-MEDIUM|Clerk#000002437|0|nts haggle. final patterns cajole slow dependen| +86638|5095|O|268210.75|1996-07-16|3-MEDIUM|Clerk#000000663|0|deposits cajole furiously after the accounts. blithely unusual packages| +86639|111871|O|102172.25|1995-11-01|4-NOT SPECIFIED|Clerk#000001664|0|lar foxes cajole carefully quickly regular platele| +86664|710720|F|131939.97|1993-11-11|2-HIGH|Clerk#000003762|0|y ironic platelets affix blithely ironically p| +86665|558961|F|173452.19|1992-12-28|4-NOT SPECIFIED|Clerk#000001277|0|l pinto beans eat. quickly special pinto beans are furiously regular packages.| +86666|678098|O|284718.55|1997-12-10|3-MEDIUM|Clerk#000002009|0|ing platelets. ironic ideas use sly| +86667|533329|O|57088.49|1997-08-10|5-LOW|Clerk#000004285|0|rding to the theodolites. instructions| +86668|393325|O|34558.80|1996-09-24|4-NOT SPECIFIED|Clerk#000003174|0|sleep carefully across the regular, bold packages. ironic instr| +86669|102310|F|97939.07|1993-04-21|2-HIGH|Clerk#000003169|0|t packages. slyly silent deposits sleep slyly. regular, bold theodolites wake | +86670|501352|F|84128.01|1994-02-28|1-URGENT|Clerk#000000767|0| use blithely after the bold| +86671|703807|F|106263.80|1993-11-12|4-NOT SPECIFIED|Clerk#000004848|0| of the even deposits. blithely silent instructions | +86696|619408|F|106878.24|1994-07-03|4-NOT SPECIFIED|Clerk#000002487|0|nal packages haggle furiously ironica| +86697|375454|F|290448.10|1994-09-11|1-URGENT|Clerk#000003587|0|s theodolites wake about the accounts. blithely regular request| +86698|502415|O|66534.91|1996-11-07|4-NOT SPECIFIED|Clerk#000000815|0|ccounts wake permanently never even asymptotes. s| +86699|574589|O|33141.62|1997-09-11|2-HIGH|Clerk#000000243|0| alongside of the quickly ironic accounts cajole according to the furi| +86700|109849|O|167539.65|1996-05-08|4-NOT SPECIFIED|Clerk#000001351|0|regular, silent ideas against the final packages haggle carefully unu| +86701|479590|F|161853.06|1994-04-19|3-MEDIUM|Clerk#000003079|0| deposits sleep furiou| +86702|194875|F|216702.22|1994-02-12|4-NOT SPECIFIED|Clerk#000002313|0|cing deposits. epitaphs are slyly. platelets arou| +86703|747484|O|133599.24|1997-02-17|2-HIGH|Clerk#000003162|0|sly carefully even instructions. blithely even courts wake. packages poa| +86728|439147|O|297829.49|1996-02-24|5-LOW|Clerk#000003592|0|inal theodolites. carefully ironic instructions wake fluffil| +86729|712043|O|295649.88|1995-07-07|3-MEDIUM|Clerk#000001211|0|dolites boost silently alongsid| +86730|301993|O|44183.13|1996-10-11|4-NOT SPECIFIED|Clerk#000001498|0| carefully above the blithely f| +86731|325997|O|53604.34|1996-01-03|3-MEDIUM|Clerk#000001557|0|even packages. slyly regular packages wake f| +86732|273241|O|8225.43|1997-05-30|4-NOT SPECIFIED|Clerk#000001005|0|ses sleep carefully sly| +86733|98548|O|74943.28|1997-07-19|1-URGENT|Clerk#000003486|0|ular theodolites cajole carefully. quic| +86734|272179|O|3909.86|1998-06-07|4-NOT SPECIFIED|Clerk#000004767|0|fily pending tithes. unusual deposits was. furiously unusu| +86735|248585|F|135861.79|1993-07-26|4-NOT SPECIFIED|Clerk#000003608|0|s haggle slyly. slyly regular foxes doze. final pinto beans across the| +86760|455138|O|77777.23|1997-04-08|3-MEDIUM|Clerk#000004643|0|e blithely. furiously express pinto beans hag| +86761|243508|F|240831.05|1993-01-30|5-LOW|Clerk#000003613|0|lites; final packages nag slyly| +86762|636691|O|136404.37|1997-11-13|5-LOW|Clerk#000004590|0|ounts. slyly express accounts use. blithely ruthless excuses | +86763|614659|F|208669.35|1993-05-08|5-LOW|Clerk#000004021|0|lent foxes kindle after the blithely final g| +86764|43571|O|162619.59|1997-05-05|5-LOW|Clerk#000003897|0|regular pinto beans. ironi| +86765|282644|O|346527.54|1997-02-12|5-LOW|Clerk#000001894|0|Tiresias sleep evenl| +86766|636316|O|102893.68|1995-11-23|3-MEDIUM|Clerk#000004553|0|ses wake slyly across the quickly ironic f| +86767|302393|O|83816.20|1997-11-01|4-NOT SPECIFIED|Clerk#000003107|0|ly. blithe accounts use blithely slyly pending deposits. careful| +86792|318997|O|116255.61|1997-12-20|1-URGENT|Clerk#000003371|0|le carefully alongside of the care| +86793|377291|F|41561.06|1992-08-05|2-HIGH|Clerk#000002249|0|haggle slyly blithely final instructions.| +86794|626215|O|37482.36|1995-07-06|4-NOT SPECIFIED|Clerk#000004613|0|, regular accounts haggle fluffily accounts. blithely regular packa| +86795|30266|F|52283.64|1992-05-18|1-URGENT|Clerk#000004320|0| use furiously regular | +86796|164776|F|286540.44|1993-03-28|5-LOW|Clerk#000002592|0|heodolites. slyly special theodolites wake. r| +86797|356620|O|99748.77|1995-07-28|2-HIGH|Clerk#000001950|0|ons. carefully pending deposits about the slyly even instructi| +86798|435202|O|28612.21|1996-05-08|4-NOT SPECIFIED|Clerk#000003333|0|ickly after the regular dependencies. blithely ironic accounts after | +86799|415696|O|160029.21|1995-08-24|5-LOW|Clerk#000003695|0|s cajole blithely alongside of the qu| +86824|325868|F|87064.18|1993-12-05|1-URGENT|Clerk#000001177|0|e never carefully permanent accounts? ca| +86825|358045|O|339685.62|1995-07-24|2-HIGH|Clerk#000001045|0| wake at the regular, pending requests. express, ironic excuses unwind qui| +86826|393307|O|167527.64|1996-06-10|3-MEDIUM|Clerk#000000603|0|efully pending foxes. carefully| +86827|537373|F|128240.84|1992-07-17|3-MEDIUM|Clerk#000002746|0|l deposits. express theodolites about the special deposits a| +86828|104989|P|142412.23|1995-03-24|3-MEDIUM|Clerk#000000082|0|y bold pearls lose blithely instructions. slyly final pinto | +86829|517840|F|180294.11|1992-04-13|1-URGENT|Clerk#000004377|0|beans. accounts boost slyly aga| +86830|308774|F|170200.04|1995-01-21|2-HIGH|Clerk#000003804|0|sits cajole across the attainments. slyly pending accounts boost against t| +86831|305437|O|319434.17|1995-08-29|3-MEDIUM|Clerk#000000553|0|heodolites. blithely final ideas sleep ironic, final excuse| +86856|475277|F|64469.61|1992-07-08|4-NOT SPECIFIED|Clerk#000002294|0|yly final epitaphs. slyly regu| +86857|475711|F|167854.01|1993-05-01|2-HIGH|Clerk#000000454|0| the final, express asymptotes cajole quickly furiously t| +86858|254210|F|178710.88|1992-08-04|1-URGENT|Clerk#000002851|0|gainst the fluffily enticing package| +86859|502570|O|250638.95|1998-05-10|4-NOT SPECIFIED|Clerk#000000959|0|ording to the even orbits sleep blithely about the final, ironic | +86860|185395|F|18507.98|1993-02-17|3-MEDIUM|Clerk#000003718|0|egular theodolites. furiously regular pinto beans wake. blithely ironic pint| +86861|432134|O|136983.82|1998-02-03|4-NOT SPECIFIED|Clerk#000001938|0|us requests are stealthily. carefully final acc| +86862|614626|O|64486.33|1997-03-18|2-HIGH|Clerk#000002315|0|ironic foxes boost furiously above the final asymptotes. slyly express pack| +86863|251033|O|198565.34|1997-01-06|3-MEDIUM|Clerk#000000813|0|ironic foxes might engage carefully express requests| +86888|352979|O|132011.99|1997-07-30|5-LOW|Clerk#000001019|0|s sleep quickly about the carefully special requests. fluffily iron| +86889|3073|F|204956.10|1994-06-25|2-HIGH|Clerk#000000661|0| theodolites cajole slyly. furiously express pains x-ray furious| +86890|622612|O|48424.67|1996-05-06|3-MEDIUM|Clerk#000003879|0| regular deposits. pinto beans boost furiously caref| +86891|211757|F|174078.16|1993-02-27|4-NOT SPECIFIED|Clerk#000003529|0|ously final ideas. ironic, even requests use across t| +86892|243316|O|45060.66|1998-04-11|2-HIGH|Clerk#000001674|0|ers. blithely ironic ideas are fluffily | +86893|411091|O|343726.73|1995-10-27|3-MEDIUM|Clerk#000001278|0|ic theodolites cajole slyly slyly final platelets. special, final f| +86894|190079|O|193368.90|1997-04-20|2-HIGH|Clerk#000001356|0|xpress requests run slyly blithely pending accounts.| +86895|399154|F|99254.25|1993-12-07|3-MEDIUM|Clerk#000003550|0|egular deposits. pending theodolit| +86920|559360|O|85555.63|1996-05-14|3-MEDIUM|Clerk#000000055|0|ckages above the special requests haggle with the boldly final pinto | +86921|650062|O|52883.76|1996-11-30|4-NOT SPECIFIED|Clerk#000004435|0|arefully regular asymptotes. quickly final deposits | +86922|313805|F|128505.24|1992-11-16|4-NOT SPECIFIED|Clerk#000004351|0|unusual Tiresias cajole quickly around the furiously bold reques| +86923|103886|F|209186.25|1992-03-20|3-MEDIUM|Clerk#000000614|0|l ideas cajole. slyly regular Tiresias wake. final accounts| +86924|8842|O|94184.53|1998-01-06|2-HIGH|Clerk#000002402|0|l, regular deposits after the instructio| +86925|89207|O|258712.98|1997-10-25|4-NOT SPECIFIED|Clerk#000004930|0|ular ideas. foxes detect thinly. quickly ironic dependencies are q| +86926|42995|F|53857.03|1994-06-21|1-URGENT|Clerk#000002720|0|symptotes. even dependencies are at the evenly unusual Tiresias. slyly even | +86927|355172|O|432576.22|1998-05-26|1-URGENT|Clerk#000004622|0|. final, final courts sleep: furiously ironic warhorses s| +86952|116099|F|138313.03|1992-11-04|4-NOT SPECIFIED|Clerk#000004047|0|ely ironic requests among the careful| +86953|514886|F|3366.90|1994-03-01|3-MEDIUM|Clerk#000001858|0|. unusual accounts haggle fluffily. special, ruthless theodolites boost slyly | +86954|184559|F|51045.74|1993-04-21|3-MEDIUM|Clerk#000000916|0|blithely special requests. blithely regular requests are slyly according to | +86955|616927|O|32677.45|1996-07-09|2-HIGH|Clerk#000002287|0| furiously carefully thin ideas.| +86956|689437|F|88980.20|1993-11-07|4-NOT SPECIFIED|Clerk#000002288|0|ests use foxes? carefully final ideas cajole quickly about the unusual, si| +86957|612619|O|274418.88|1997-09-26|2-HIGH|Clerk#000001854|0|int blithely final, even accounts. quickl| +86958|266492|O|115023.10|1995-09-11|1-URGENT|Clerk#000003496|0|ers doze fluffily doggedly ironic packages. blithely final deposits | +86959|665753|O|93081.36|1995-08-13|3-MEDIUM|Clerk#000000424|0|olites integrate slyly carefully bold deposits| +86984|57146|O|33613.65|1997-05-23|2-HIGH|Clerk#000000482|0|ithely ironic accounts nag carefully. bold, final a| +86985|447460|F|126172.58|1994-01-27|1-URGENT|Clerk#000002501|0|quickly pending accounts wake. | +86986|194209|O|193913.88|1996-09-04|2-HIGH|Clerk#000004092|0|ly above the carefully ironic accounts. furiously special ideas across the eve| +86987|49564|O|171964.50|1998-05-26|3-MEDIUM|Clerk#000004390|0|nstructions above the regular, pending packages wake accor| +86988|493982|F|57348.69|1994-09-10|1-URGENT|Clerk#000003558|0|ges. furiously ironic deposits poach furiously. slyly final requests wake ru| +86989|589580|F|152582.43|1992-09-10|4-NOT SPECIFIED|Clerk#000004615|0|ding depths. blithely silent requests cajole among the final deposits. s| +86990|59800|O|190397.16|1997-01-26|2-HIGH|Clerk#000003246|0|r foxes; dolphins according | +86991|42503|F|86265.99|1994-04-08|3-MEDIUM|Clerk#000004791|0|s sleep fluffily at the ironic pearls. bold excu| +87016|337937|F|283405.32|1993-05-13|3-MEDIUM|Clerk#000001647|0|ular, regular ideas. furiously final pinto | +87017|705697|F|150407.68|1995-03-20|1-URGENT|Clerk#000000771|0| deposits. furiously final asymptotes nag blithely ironic foxes. deposits nag | +87018|128188|O|256056.68|1997-12-01|5-LOW|Clerk#000003425|0|dependencies haggle special, quiet accounts. slyly even account| +87019|446716|O|326573.68|1995-08-29|2-HIGH|Clerk#000003022|0|the accounts promise slyly. deposits cajole depo| +87020|451456|O|190238.23|1997-04-27|5-LOW|Clerk#000000436|0|ggle slyly according to the requests. final deposits are. permanently bol| +87021|617924|F|168993.97|1994-12-13|3-MEDIUM|Clerk#000002746|0|s besides the bold, unusual ideas cajole | +87022|187889|F|167081.37|1994-06-07|5-LOW|Clerk#000004599|0|ymptotes are doggedly fluffily even asymptotes. blithe| +87023|340975|O|185238.55|1995-05-12|1-URGENT|Clerk#000000714|0|n depths. pinto beans wake furiously final pinto beans. quickly r| +87048|733904|F|184252.31|1994-02-02|3-MEDIUM|Clerk#000002825|0|oost slyly on the regular r| +87049|209357|O|155073.85|1997-05-10|1-URGENT|Clerk#000003804|0| final sheaves do nag carefully ironically even deposit| +87050|410318|F|187602.74|1992-09-05|2-HIGH|Clerk#000002248|0|ely against the instructions; | +87051|708340|F|212532.59|1992-09-25|3-MEDIUM|Clerk#000002174|0|ffily ideas. slyly final requests might boost. speci| +87052|302281|F|55469.61|1994-08-21|5-LOW|Clerk#000002217|0|l packages. quickly final notornis wake slyly unusual requests. carefull| +87053|660539|F|284036.41|1993-09-19|3-MEDIUM|Clerk#000001366|0|en requests nag furiously. ironic packages along the requests de| +87054|170537|O|30405.88|1995-11-24|1-URGENT|Clerk#000001673|0|pending accounts are after the fluffily silent packag| +87055|457300|O|183747.62|1998-03-17|1-URGENT|Clerk#000002727|0|riously. slyly even t| +87080|560260|O|76726.66|1995-11-12|2-HIGH|Clerk#000001172|0|ts according to the final,| +87081|7123|F|139791.45|1994-01-28|3-MEDIUM|Clerk#000004717|0|have to wake slyly about the furiously regula| +87082|463774|O|252080.45|1996-11-15|1-URGENT|Clerk#000000923|0|furiously. fluffily unus| +87083|617299|O|212804.42|1997-04-14|2-HIGH|Clerk#000003576|0|dolites. carefully ironic accounts above the carefully regular deposits nag fu| +87084|174203|F|159372.62|1995-02-20|2-HIGH|Clerk#000002321|0|ly instead of the special, ironic ideas. slyly regular instruction| +87085|567130|O|154002.75|1996-07-08|4-NOT SPECIFIED|Clerk#000002331|0|gainst the evenly ironic excuses. regul| +87086|729043|F|120531.87|1992-02-09|2-HIGH|Clerk#000002637|0|xpress requests wake slyly regular| +87087|257587|F|267539.86|1992-10-09|3-MEDIUM|Clerk#000002736|0|. blithely even requests shall sleep carefully against the blithely unusua| +87112|234898|O|245150.96|1997-04-08|3-MEDIUM|Clerk#000000766|0|odolites along the slyly regular | +87113|663079|O|301985.38|1996-09-10|4-NOT SPECIFIED|Clerk#000002207|0|ect instructions. blithely fluffy| +87114|117331|F|19614.74|1994-05-13|1-URGENT|Clerk#000003944|0|according to the special instructions. carefully express asymptotes n| +87115|202435|F|146114.60|1994-12-25|5-LOW|Clerk#000004303|0|structions are slyly according to the slyly expr| +87116|295718|F|33921.18|1995-04-10|5-LOW|Clerk#000002591|0|jole quickly. slyly ironic deposits mold according to the slyly bold id| +87117|615757|O|107270.38|1996-10-28|4-NOT SPECIFIED|Clerk#000003545|0|eans haggle always along the packages. blithely express pin| +87118|524927|O|283199.62|1998-06-16|3-MEDIUM|Clerk#000001725|0|ounts nag slyly final deposits. stealthily final reques| +87119|193628|O|339407.00|1997-05-10|4-NOT SPECIFIED|Clerk#000000455|0|unts: slyly regular th| +87144|39662|O|293847.32|1996-09-21|2-HIGH|Clerk#000004818|0|o the final dugouts: q| +87145|584896|F|67763.28|1994-12-24|2-HIGH|Clerk#000002649|0|requests haggle across the silent courts. fluffily regular deposits sleep.| +87146|77918|O|89089.55|1996-04-13|1-URGENT|Clerk#000004498|0|inal theodolites. ironic, even courts wake ca| +87147|57509|O|153112.78|1997-05-13|4-NOT SPECIFIED|Clerk#000000198|0|ts. unusual, unusual ideas impress unus| +87148|544403|F|66950.80|1994-03-01|5-LOW|Clerk#000002384|0|requests wake. slyly pending accounts wake furious| +87149|518270|O|95844.30|1996-10-28|3-MEDIUM|Clerk#000002286|0|ss ideas up the even, idle depo| +87150|52390|O|252105.47|1996-12-14|2-HIGH|Clerk#000001159|0| use slyly: slyly ironic foxes after the even packages sleep about the bol| +87151|6991|O|358798.15|1996-12-16|3-MEDIUM|Clerk#000002029|0| ironic, express platelets according to the blithely| +87176|486280|O|262815.18|1996-06-02|3-MEDIUM|Clerk#000001126|0|s. carefully ironic requests nag fluffily final p| +87177|154148|F|34202.61|1994-06-10|2-HIGH|Clerk#000001319|0|ending deposits along t| +87178|259933|F|28859.84|1992-06-24|1-URGENT|Clerk#000003086|0|sts cajole slyly furiously quiet requests. furiously regular cou| +87179|683144|O|216708.34|1996-08-11|3-MEDIUM|Clerk#000002405|0|yly at the blithely ironic accounts. slyly ironic packages shall sleep | +87180|597725|F|59213.61|1993-03-23|3-MEDIUM|Clerk#000003524|0|are blithely. boldly even deposits boost.| +87181|462469|F|236814.02|1994-06-30|1-URGENT|Clerk#000003984|0|dependencies sleep carefully regular, blithe| +87182|440260|O|140525.28|1998-06-25|2-HIGH|Clerk#000001939|0|ending foxes. carefully ironic requests sleep carefully. f| +87183|680269|F|234011.51|1994-03-23|5-LOW|Clerk#000000320|0|lets above the slyly express dolphins sleep across t| +87208|269903|F|81114.01|1994-07-12|5-LOW|Clerk#000004303|0|ly bold deposits. ev| +87209|252223|O|205331.59|1996-12-25|2-HIGH|Clerk#000004859|0|e sometimes. platelets sleep quickly against the care| +87210|81310|F|226446.37|1992-12-08|2-HIGH|Clerk#000001445|0|encies affix above the ironi| +87211|74293|F|212851.13|1993-02-12|2-HIGH|Clerk#000000224|0|ly regular deposits boost. special instructions against the final,| +87212|611650|F|303847.36|1992-06-15|2-HIGH|Clerk#000004350|0|requests. express ac| +87213|495605|F|53579.79|1993-08-09|5-LOW|Clerk#000000090|0|kages sleep blithely ironic packages. daringly regular ideas use pending| +87214|123230|O|127018.17|1995-06-25|1-URGENT|Clerk#000003015|0| the regular deposits mold carefully except the unusual in| +87215|376495|O|139832.22|1996-12-05|4-NOT SPECIFIED|Clerk#000002005|0|ly unusual accounts are quickly pending| +87240|734905|O|144787.00|1995-10-06|1-URGENT|Clerk#000004195|0| quietly ironic asymptotes nag. silently silent packages are slyly | +87241|547864|O|29730.12|1996-01-07|3-MEDIUM|Clerk#000004896|0|, ironic dependencies. furio| +87242|178234|F|247314.77|1993-12-19|5-LOW|Clerk#000002113|0|ove the regular, special packages. ironically pending deposits detect | +87243|48391|O|88588.23|1998-02-01|2-HIGH|Clerk#000002199|0|l pinto beans sleep special instructions. quickly f| +87244|303628|F|122305.81|1994-11-17|5-LOW|Clerk#000002222|0|hely blithely express i| +87245|49928|O|244532.23|1998-03-18|2-HIGH|Clerk#000003067|0|ffily ironic accounts affix fluffily slyly ironic a| +87246|635294|F|68638.74|1993-04-26|1-URGENT|Clerk#000000975|0|brave asymptotes. slyly bold requests detect furious| +87247|384247|F|69914.31|1993-06-09|2-HIGH|Clerk#000000931|0| detect among the regular ideas. unusual accounts print. fluffily sp| +87272|528100|O|193982.11|1996-10-07|3-MEDIUM|Clerk#000002747|0|lent packages print carefully evenly final sheaves. quickly pending deposit| +87273|257773|F|292300.41|1994-09-07|5-LOW|Clerk#000004845|0| carefully ironic exc| +87274|375299|O|26725.82|1997-04-16|5-LOW|Clerk#000003599|0|ke fluffily even deposits-- furiously busy sentiments abov| +87275|134413|O|76034.49|1998-06-01|5-LOW|Clerk#000003364|0|ggle furiously express, final instructions.| +87276|53308|O|218401.08|1997-01-17|2-HIGH|Clerk#000003866|0|nst the foxes. final | +87277|445720|F|84481.80|1993-09-06|3-MEDIUM|Clerk#000001122|0|use blithely across the final, ironic packages.| +87278|194635|O|156086.88|1996-05-13|1-URGENT|Clerk#000001191|0|lessly regular requests. requests cajole slyly after the regul| +87279|459904|F|83768.83|1995-04-13|4-NOT SPECIFIED|Clerk#000004916|0|e of the closely silent theodolites. even ideas alo| +87304|100585|O|207424.17|1996-10-20|3-MEDIUM|Clerk#000000142|0|ously regular packages along the even,| +87305|21053|F|19282.35|1992-05-18|1-URGENT|Clerk#000003002|0|equests. quiet asymptotes sleep bl| +87306|586171|F|66572.06|1994-03-11|3-MEDIUM|Clerk#000003438|0|e the unusual pinto beans: slyly special instructions haggle | +87307|521629|F|182102.34|1994-05-05|2-HIGH|Clerk#000001761|0|the regular, pending accounts boost quickly silent asymptotes. regular ins| +87308|238030|O|203994.61|1996-02-06|5-LOW|Clerk#000001035|0|ons doubt blithely alongside of the idly| +87309|51550|F|85469.60|1993-03-19|2-HIGH|Clerk#000004711|0|slyly along the platelets. ironic pinto beans boost above the fluffi| +87310|118219|O|156528.83|1995-08-27|4-NOT SPECIFIED|Clerk#000002154|0|express ideas. ruthlessly ruthless packages wake quickly | +87311|138769|F|74130.74|1992-10-12|3-MEDIUM|Clerk#000000200|0|he express, regular asymptot| +87336|514606|O|200781.26|1996-10-28|2-HIGH|Clerk#000002457|0|r deposits cajole silent dolphins. furiously regular pinto b| +87337|726868|F|64810.30|1992-09-06|1-URGENT|Clerk#000003099|0|requests. regular accounts wake except the accounts. blithely | +87338|466987|F|267761.14|1994-03-21|2-HIGH|Clerk#000000738|0| up the sometimes bold instructions caj| +87339|620650|O|198630.72|1996-06-06|2-HIGH|Clerk#000002558|0|pinto beans cajole carefully. slyly regular packages are evenly requests? pint| +87340|240539|F|213173.56|1992-10-25|2-HIGH|Clerk#000003568|0|r the even warhorses. quickly regular acc| +87341|232529|O|44490.64|1997-02-03|1-URGENT|Clerk#000000637|0| instructions nag quickly| +87342|602350|O|185442.86|1997-08-01|2-HIGH|Clerk#000002888|0| sentiments affix blithely. carefully ironic packages wake. even instructio| +87343|194257|F|156328.35|1993-07-09|3-MEDIUM|Clerk#000003170|0| the blithely regular foxes. slyly iron| +87368|118996|O|70814.95|1997-12-28|4-NOT SPECIFIED|Clerk#000003851|0|sly regular ideas poach | +87369|447707|F|114807.20|1994-07-20|2-HIGH|Clerk#000003034|0|are across the quickly special requests. final accounts sleep after th| +87370|600223|F|124013.54|1994-01-14|2-HIGH|Clerk#000000479|0|arefully final deposits engage carefully carefully quiet requ| +87371|416587|O|57233.67|1996-06-30|3-MEDIUM|Clerk#000002462|0|l packages after the furiously fina| +87372|321412|O|6894.31|1997-11-25|3-MEDIUM|Clerk#000000785|0|osits are quickly. slyly unusual asymptotes thrash fluffily against the de| +87373|443185|F|83921.72|1994-06-22|2-HIGH|Clerk#000000623|0|unts. carefully unusual requests affix b| +87374|347581|O|153500.15|1997-05-13|4-NOT SPECIFIED|Clerk#000003347|0|ructions. regular, regular dependencies wake quickly. final, regular i| +87375|32341|F|184682.78|1993-07-03|3-MEDIUM|Clerk#000003077|0|uriously regular theodolites wake; instructions doze furiously. | +87400|549352|F|147590.96|1995-02-05|3-MEDIUM|Clerk#000004777|0|ns. theodolites detect furiously. regular requests are. ironic foxes around | +87401|449701|O|127956.80|1998-03-04|4-NOT SPECIFIED|Clerk#000003587|0|s-- ironic platelets use across the carefull| +87402|360691|O|89991.37|1995-06-23|4-NOT SPECIFIED|Clerk#000004244|0|he quiet requests. furio| +87403|611170|O|281444.68|1997-08-24|1-URGENT|Clerk#000002471|0|special packages. express, final theodolites haggle furiously| +87404|659161|F|193766.19|1992-06-06|1-URGENT|Clerk#000002491|0|r requests. furiously pending requests across the | +87405|235735|F|122235.29|1994-03-22|3-MEDIUM|Clerk#000004394|0|ial packages are above the slyly final accounts.| +87406|472739|F|34443.75|1992-07-24|2-HIGH|Clerk#000000261|0|ake quickly. furiously ev| +87407|565111|F|12373.30|1992-04-06|5-LOW|Clerk#000001698|0|ely silent frays boost fluffily regular accoun| +87432|555577|F|128609.90|1992-08-13|3-MEDIUM|Clerk#000002602|0| against the silent, special excuses ha| +87433|63925|O|204808.59|1995-08-29|3-MEDIUM|Clerk#000001152|0|hely ironic deposits detect furiously. fluffily exp| +87434|354298|O|215883.92|1995-10-16|1-URGENT|Clerk#000000597|0| cajole fluffily ironic accounts. slyly final excuses sleep | +87435|403069|F|191461.76|1992-05-14|4-NOT SPECIFIED|Clerk#000000290|0|encies was unusual packages. quickly ironic reque| +87436|365053|O|170026.07|1997-05-24|4-NOT SPECIFIED|Clerk#000003945|0| silent packages. furi| +87437|443402|F|169101.73|1993-04-06|2-HIGH|Clerk#000001352|0|f the furiously final theodolites cajole ironic accounts. regular, ironic gi| +87438|245095|O|103364.48|1996-04-15|2-HIGH|Clerk#000002163|0|ithe packages are quickly platelets. careful| +87439|310426|F|154017.58|1993-12-30|4-NOT SPECIFIED|Clerk#000002415|0|inal instructions. quickly| +87464|309985|O|250324.28|1996-01-18|3-MEDIUM|Clerk#000000463|0| busy deposits wake. thin pains along the slyly pending warhorse| +87465|407609|F|256019.92|1993-05-13|3-MEDIUM|Clerk#000002644|0|oss the packages cajole quickly slyly final requests. car| +87466|179140|F|165391.87|1994-05-30|5-LOW|Clerk#000003827|0|nstructions. furiously pending sentiments accord| +87467|275275|O|105264.11|1996-11-17|4-NOT SPECIFIED|Clerk#000002212|0|. ironic pinto beans wake si| +87468|514247|O|95348.55|1996-06-18|4-NOT SPECIFIED|Clerk#000003967|0| furiously busy dependencies boost quickly according to the boldly sp| +87469|691922|F|154923.45|1994-03-04|3-MEDIUM|Clerk#000000825|0|ests haggle never against the blit| +87470|369514|F|29292.26|1993-02-17|2-HIGH|Clerk#000003557|0|re quickly final, dogged packages. accounts cajole blithely ironic | +87471|395383|F|76265.97|1994-04-14|4-NOT SPECIFIED|Clerk#000003174|0| across the carefully i| +87496|174550|O|57473.61|1998-02-19|5-LOW|Clerk#000001157|0|s. unusual, final theodolites poach | +87497|401500|O|170305.38|1998-03-25|1-URGENT|Clerk#000000912|0|ide of the even asymptotes impress furiously regular, express| +87498|243196|F|50018.98|1993-05-17|3-MEDIUM|Clerk#000003021|0|sits. blithely even deposits are furiously across| +87499|640754|O|47225.42|1998-03-11|5-LOW|Clerk#000003972|0|uffily. packages along the furiously quick instructio| +87500|650644|O|304538.31|1996-12-18|5-LOW|Clerk#000004767|0|ly brave accounts. blithely pending | +87501|352156|O|230017.33|1997-02-02|4-NOT SPECIFIED|Clerk#000001161|0|quickly. regular ideas integrate furiously al| +87502|435718|O|295275.51|1996-07-24|1-URGENT|Clerk#000000931|0| pending deposits integrate carefully express deposits. d| +87503|84751|F|157508.49|1993-06-09|3-MEDIUM|Clerk#000001390|0| beans. furiously final platelets impress blithely fluffily unusual d| +87528|149390|F|123221.93|1992-12-02|2-HIGH|Clerk#000000559|0|gle slyly alongside o| +87529|533195|O|34219.08|1998-06-20|1-URGENT|Clerk#000000982|0|inal, regular ideas. furiously express foxes after the regular packages affix| +87530|396223|F|139625.69|1993-01-22|4-NOT SPECIFIED|Clerk#000002256|0|nal foxes nag fluffily by the furious| +87531|38347|F|22484.43|1994-05-25|4-NOT SPECIFIED|Clerk#000000747|0|ove the quickly ironic req| +87532|229045|O|28731.17|1998-02-06|1-URGENT|Clerk#000001442|0|the blithely final requests affix blithely aga| +87533|557254|F|115877.22|1993-01-23|4-NOT SPECIFIED|Clerk#000000050|0|ounts sleep blithely. sl| +87534|506585|O|261628.57|1996-03-11|5-LOW|Clerk#000003372|0|s will wake carefully blithely express depths. furiously even packa| +87535|173356|O|264797.15|1995-09-09|1-URGENT|Clerk#000004500|0|ironic ideas. fluffy requests across the blithely regular deposits wake iro| +87560|575729|O|41483.00|1996-12-09|1-URGENT|Clerk#000000055|0|unusual deposits? quickly even foxes hinder | +87561|526514|O|216892.42|1997-06-19|5-LOW|Clerk#000004553|0|, regular forges cajole slyly about | +87562|615454|F|1186.68|1992-10-24|2-HIGH|Clerk#000000350|0|en packages along the furiously bold requests detect | +87563|672653|F|196699.88|1995-02-20|1-URGENT|Clerk#000004843|0|ctions nag quickly blit| +87564|520138|O|65853.62|1997-08-12|4-NOT SPECIFIED|Clerk#000004052|0|ual accounts sleep furiously atop the final, regular dolphins. carefu| +87565|678443|O|3441.96|1997-06-27|2-HIGH|Clerk#000002397|0|deposits. express ideas integrate furiously. carefully regu| +87566|334453|O|131679.68|1997-04-20|4-NOT SPECIFIED|Clerk#000004724|0|mptotes. sometimes pending r| +87567|634955|F|99200.95|1993-01-29|2-HIGH|Clerk#000000313|0| packages. sometimes regular accounts| +87592|674069|F|185752.33|1995-02-05|2-HIGH|Clerk#000000719|0|furiously after the carefully sly theodolites. carefully final ideas s| +87593|321337|O|244464.44|1995-05-27|4-NOT SPECIFIED|Clerk#000001630|0|eposits haggle fluffily silent excuses. furiously ironic instructions wake alw| +87594|697660|O|134118.81|1995-07-02|1-URGENT|Clerk#000004932|0|uests use. regular packages are. furiou| +87595|49171|O|5150.86|1995-07-31|2-HIGH|Clerk#000000278|0| carefully regular | +87596|662242|F|173125.45|1993-11-06|4-NOT SPECIFIED|Clerk#000004356|0|alms integrate after the ironic deposits. regular deposits u| +87597|288770|F|92046.55|1994-09-04|3-MEDIUM|Clerk#000003783|0|ough the quickly final de| +87598|90895|F|199553.48|1994-08-02|1-URGENT|Clerk#000004358|0|requests sleep furiously slyly final deposits. ideas| +87599|655723|O|189025.06|1996-03-07|2-HIGH|Clerk#000002229|0|quickly even ideas integrate above the blithely express depos| +87624|207484|O|13244.96|1995-12-22|3-MEDIUM|Clerk#000002783|0|ts. even requests doubt | +87625|403510|F|205719.07|1992-04-06|4-NOT SPECIFIED|Clerk#000004560|0|etect bravely regular deposits. permanently silent tithes around the packages | +87626|279052|F|243900.76|1993-10-31|2-HIGH|Clerk#000001538|0|dependencies after the blithely unusual reque| +87627|255488|F|192794.66|1992-05-11|3-MEDIUM|Clerk#000000646|0|cial accounts affix blithely sp| +87628|222865|O|306488.98|1998-07-08|5-LOW|Clerk#000004208|0|pecial pinto beans haggle carefully among | +87629|166898|O|236396.67|1997-03-27|2-HIGH|Clerk#000003007|0| slyly alongside of the careful dependencies. final, regular ac| +87630|41659|F|205320.73|1994-09-06|3-MEDIUM|Clerk#000003612|0|tructions. carefully unusual excuses according to the| +87631|384410|F|257994.68|1993-05-12|3-MEDIUM|Clerk#000001464|0|s the slyly silent re| +87656|264526|P|277826.34|1995-05-06|3-MEDIUM|Clerk#000002860|0|ep slyly platelets. accounts affix carefully carefully fin| +87657|610210|F|143831.17|1993-08-05|3-MEDIUM|Clerk#000000712|0|bold theodolites. final, special excuses are furiously about the| +87658|292460|O|111336.72|1995-10-04|3-MEDIUM|Clerk#000002756|0|kly even accounts solve above the blithe| +87659|619175|F|206443.15|1994-03-24|1-URGENT|Clerk#000002991|0|nst the boldly pending th| +87660|222541|O|253515.28|1996-06-29|2-HIGH|Clerk#000001488|0|un quickly according to the ironic| +87661|718807|O|194624.89|1995-05-26|1-URGENT|Clerk#000004194|0|y silent deposits-- ironic requests us| +87662|706576|F|344886.32|1994-10-23|2-HIGH|Clerk#000004835|0|yly carefully final requests. quic| +87663|657523|O|168827.70|1997-07-30|1-URGENT|Clerk#000000793|0|ickly final pinto beans. final, silent dependencies after the ideas| +87688|484690|F|365405.03|1994-05-22|3-MEDIUM|Clerk#000000317|0|ys over the furiously pending pinto beans integrate furiously care| +87689|430903|O|113223.33|1995-06-22|2-HIGH|Clerk#000000908|0|blithe notornis. unusual, bold ideas na| +87690|173674|O|38189.29|1997-06-04|3-MEDIUM|Clerk#000000795|0|pinto beans along the regular, unusual packages | +87691|670936|O|142311.24|1997-02-18|1-URGENT|Clerk#000000917|0|slyly regular requests. quiet packages wake. requests above the | +87692|165833|O|12701.71|1995-07-02|1-URGENT|Clerk#000003271|0|sits between the quickly bold pinto beans nag quickly theodolites. bl| +87693|154775|O|99825.94|1997-07-26|4-NOT SPECIFIED|Clerk#000000486|0|. furiously ironic id| +87694|287854|O|160391.85|1997-10-18|1-URGENT|Clerk#000001842|0|, regular theodolite| +87695|441341|O|234748.47|1996-06-30|5-LOW|Clerk#000000591|0|s haggle. special deposits wake slyly final i| +87720|109766|F|91638.12|1992-12-23|2-HIGH|Clerk#000001966|0|. asymptotes are carefully.| +87721|584167|O|180841.64|1997-10-06|3-MEDIUM|Clerk#000004000|0|ole across the even requests. ironic, s| +87722|586093|O|246829.48|1997-08-25|3-MEDIUM|Clerk#000001409|0| accounts. ruthlessly ironic pinto beans | +87723|707549|O|94894.39|1998-04-02|4-NOT SPECIFIED|Clerk#000000622|0|final accounts sleep slyly. courts haggle bold, ironic ideas. | +87724|517249|F|71083.05|1993-07-20|5-LOW|Clerk#000003345|0|lar, special requests wake furiously through the qui| +87725|145531|O|257575.72|1996-08-12|3-MEDIUM|Clerk#000000090|0|nal ideas. even deposits eat quickly after the even, regular packages| +87726|176468|O|77702.74|1998-05-02|1-URGENT|Clerk#000003127|0|egrate slyly furiously final theodolites; fluffily bold asymptotes| +87727|388538|O|152370.54|1996-08-09|4-NOT SPECIFIED|Clerk#000004049|0|ng to the quickly even ideas wake fluffily ironic, regular depo| +87752|641386|F|240472.05|1994-07-16|3-MEDIUM|Clerk#000001683|0|nstructions. carefully silent packages print. furiously enticing foxes| +87753|747628|F|201160.89|1992-01-01|2-HIGH|Clerk#000004834|0|ress waters. ideas cajole. do| +87754|615565|O|150572.75|1996-02-08|5-LOW|Clerk#000004701|0|express theodolites. pending requests abov| +87755|286924|O|107068.96|1998-02-21|1-URGENT|Clerk#000001747|0|ts hinder furiously alongside of | +87756|564539|O|159232.45|1998-01-20|4-NOT SPECIFIED|Clerk#000003548|0|ideas haggle finally ironic accounts. quickly | +87757|699710|O|334167.47|1997-05-12|3-MEDIUM|Clerk#000000466|0|as poach. ideas cajole furiously. furiously express ideas will have| +87758|15815|O|160440.82|1996-04-08|4-NOT SPECIFIED|Clerk#000004535|0| deposits are furiously; quickly final | +87759|288784|F|145809.03|1994-04-16|1-URGENT|Clerk#000003998|0| pending deposits. dogged, unusual pinto beans integrate slyly u| +87784|323350|O|289214.33|1996-10-15|4-NOT SPECIFIED|Clerk#000000322|0|ly pending deposits. carefully bold sheaves are about the furiously | +87785|25336|F|39549.49|1992-12-11|1-URGENT|Clerk#000001917|0|er the slyly bold packages boost after the carefully even p| +87786|568960|O|31705.72|1995-06-15|1-URGENT|Clerk#000001475|0|lent foxes. furiously | +87787|403|O|111111.32|1997-05-06|2-HIGH|Clerk#000001708|0|ording to the fluffily final accounts cajole car| +87788|15154|O|37819.63|1997-09-30|2-HIGH|Clerk#000001763|0|ully furiously final pa| +87789|421760|F|276683.27|1994-05-13|2-HIGH|Clerk#000004943|0|eposits haggle slyly against the carefully pending ideas. carefully fin| +87790|268532|O|284651.82|1996-11-20|2-HIGH|Clerk#000003493|0|r foxes. blithely expres| +87791|467287|F|11412.98|1994-08-01|2-HIGH|Clerk#000004769|0|theodolites haggle carefully special sauternes. slyly pending re| +87816|413857|O|242814.36|1997-03-19|2-HIGH|Clerk#000001483|0|equests. regular, ironic platelets impress deposits: daringly even pa| +87817|165458|F|46478.79|1994-07-10|3-MEDIUM|Clerk#000001841|0|ts detect furiously ironic packages. final theodolites detect care| +87818|601480|O|318661.95|1996-06-22|4-NOT SPECIFIED|Clerk#000000963|0|ts. blithely ironic | +87819|555586|F|128495.69|1992-08-26|2-HIGH|Clerk#000002008|0| furiously. requests dazzle quickly speci| +87820|209689|O|76869.58|1998-07-08|1-URGENT|Clerk#000000732|0|es along the final platelets haggle careful depend| +87821|712717|F|25985.30|1994-12-17|3-MEDIUM|Clerk#000002039|0|ing to the carefully re| +87822|363293|F|298298.69|1994-10-02|4-NOT SPECIFIED|Clerk#000001956|0|y regular accounts mold. furiously regular deposits hinder after the fluffil| +87823|109099|O|45556.01|1998-04-10|5-LOW|Clerk#000004474|0|usly express accounts. slyly ironic foxes are carefull| +87848|600007|F|14057.20|1993-10-30|5-LOW|Clerk#000004796|0|instructions are furiously against the ironic deposits. bold instru| +87849|555202|O|205754.26|1997-06-03|5-LOW|Clerk#000004523|0|ular theodolites detect caref| +87850|504641|F|101836.88|1994-10-15|3-MEDIUM|Clerk#000002049|0|kages. slyly regular packages sleep furiously ideas: packages about the | +87851|495620|O|55335.92|1996-05-11|3-MEDIUM|Clerk#000003547|0| about the carefully express instructions. slyly silent pinto beans na| +87852|383344|F|53214.06|1993-10-06|1-URGENT|Clerk#000003846|0| carefully bold accounts| +87853|350653|F|138893.48|1994-09-23|4-NOT SPECIFIED|Clerk#000002203|0|ously enticing instructions. sl| +87854|655591|F|143891.26|1992-02-19|1-URGENT|Clerk#000003092|0|grate alongside of the close, silent| +87855|264323|F|141394.39|1993-06-16|4-NOT SPECIFIED|Clerk#000000488|0|onic packages. final packages haggle carefully slyly stealthy accounts. instru| +87880|213752|O|211819.77|1997-01-30|4-NOT SPECIFIED|Clerk#000002739|0|ly regular requests cajole between the ideas; special, regular pin| +87881|16429|O|36371.88|1998-06-06|1-URGENT|Clerk#000001936|0|tes wake carefully. slyly brave platelets cajole carefully quickly ironi| +87882|104969|F|205924.70|1993-11-07|4-NOT SPECIFIED|Clerk#000003231|0|accounts. blithely ironic deposits against the ironic d| +87883|208226|F|236344.24|1993-02-10|5-LOW|Clerk#000001439|0|y even requests wake. silent realms haggle finally furiously even dolphins. qu| +87884|140992|F|169464.25|1992-03-21|4-NOT SPECIFIED|Clerk#000002889|0|unusual pains would sleep care| +87885|369991|F|116332.98|1993-07-07|2-HIGH|Clerk#000004006|0|leep quickly regular excuses. ironic request| +87886|161396|O|213722.70|1995-12-16|5-LOW|Clerk#000003592|0|ic requests must wake slyly pendin| +87887|570607|F|130470.69|1992-04-15|3-MEDIUM|Clerk#000004069|0| unusual ideas. pending depende| +87912|674059|F|181887.91|1993-04-24|2-HIGH|Clerk#000002141|0|ole boldly. packages p| +87913|155791|F|82645.74|1993-12-28|5-LOW|Clerk#000003975|0|final, pending foxes. carefully unusual packages doze. carefully ironi| +87914|127480|O|242224.82|1996-06-02|5-LOW|Clerk#000001414|0| regular excuses wake slyly furiously special platelets. | +87915|546496|F|55983.23|1993-10-11|2-HIGH|Clerk#000004699|0| quickly. blithely unusual courts above the quickly even pin| +87916|429989|F|290272.68|1992-10-14|1-URGENT|Clerk#000000919|0|ackages use slyly deposits. express pinto beans print quickly against the | +87917|562972|O|91331.22|1997-01-15|2-HIGH|Clerk#000004165|0|silently busy accounts detect carefully above the quickly regular braid| +87918|611446|F|276574.36|1993-08-06|1-URGENT|Clerk#000001832|0|es are blithely. furiously quick accounts boost fluffily. blithely | +87919|56239|O|277482.66|1997-08-04|3-MEDIUM|Clerk#000004289|0|gle carefully. blithely unusual deposits nag slyly among t| +87944|191275|O|225869.07|1996-04-18|5-LOW|Clerk#000000482|0|thely furious accounts. quickly i| +87945|256109|O|78781.28|1997-07-26|1-URGENT|Clerk#000003384|0|ag fluffily. blithely ironic packages engag| +87946|171244|F|224334.44|1993-02-06|5-LOW|Clerk#000003638|0| the regular deposits. qui| +87947|323669|O|151698.37|1996-06-17|4-NOT SPECIFIED|Clerk#000003211|0|ly bold pinto beans doze | +87948|147908|F|348540.81|1993-03-02|3-MEDIUM|Clerk#000000656|0|behind the slyly ironic accounts. carefully regular deposits | +87949|380155|P|206624.35|1995-05-19|3-MEDIUM|Clerk#000002409|0|aphs. slyly pending foxes wake slyly. furiously re| +87950|13733|O|123106.34|1997-06-23|5-LOW|Clerk#000004766|0|aggle carefully according to the even, even deposits. blithely silent pinto b| +87951|550540|F|180885.18|1992-11-10|4-NOT SPECIFIED|Clerk#000001970|0|ar, regular instructions print slyly | +87976|163610|O|119757.31|1995-10-31|5-LOW|Clerk#000004862|0|ly slyly regular de| +87977|290651|O|47176.33|1998-05-14|2-HIGH|Clerk#000001897|0|ly stealthy pinto beans are car| +87978|208501|F|212030.49|1993-06-07|3-MEDIUM|Clerk#000003227|0|ests haggle slyly. platelets use furiously. blithely fina| +87979|265477|F|110389.06|1992-12-07|1-URGENT|Clerk#000001754|0|nstructions. unusual instructions poach quickly above the furiously exp| +87980|108821|F|22460.99|1992-12-30|1-URGENT|Clerk#000001453|0|fluffily carefully express requests. slyly fluffy accounts sle| +87981|451102|F|279608.95|1995-01-21|1-URGENT|Clerk#000003425|0|nts. furiously final packages cajole carefully u| +87982|668471|F|89045.87|1994-07-07|4-NOT SPECIFIED|Clerk#000002940|0|r requests serve against the blithely dogged forges. | +87983|726329|F|295903.84|1993-05-25|2-HIGH|Clerk#000002221|0|sual requests against | +88008|409345|O|104636.63|1995-06-16|4-NOT SPECIFIED|Clerk#000004039|0|ments sleep furiously instructions.| +88009|97294|F|197735.87|1994-10-11|5-LOW|Clerk#000000671|0|ctions integrate above| +88010|194438|F|83030.76|1992-12-29|1-URGENT|Clerk#000002617|0|uickly doggedly final dependencies. carefully ironic theodolites haggle u| +88011|156577|F|291919.69|1993-12-01|3-MEDIUM|Clerk#000001371|0|arefully unusual requests. carefully express pinto bea| +88012|558463|F|199109.43|1993-11-06|3-MEDIUM|Clerk#000004858|0|uctions boost quickly final platelets. ironic, un| +88013|582379|F|34495.06|1992-12-25|4-NOT SPECIFIED|Clerk#000002870|0|equests haggle carefully| +88014|529102|O|168824.21|1997-07-14|3-MEDIUM|Clerk#000004888|0|kages. blithely sly pinto beans cajole carefully daring frays.| +88015|607555|O|165261.24|1995-06-14|4-NOT SPECIFIED|Clerk#000001564|0|fily express packages. regular, final deposits affix regular packages.| +88040|656281|F|148924.95|1994-01-26|4-NOT SPECIFIED|Clerk#000000054|0|ccounts. fluffily silent asymptotes are express deposit| +88041|612832|O|342183.14|1997-08-04|4-NOT SPECIFIED|Clerk#000003624|0|zzle furiously blithely special asymptotes. f| +88042|104833|F|177171.94|1994-04-19|3-MEDIUM|Clerk#000000039|0|fluffily even ideas! blithely silen| +88043|169507|F|319910.76|1993-08-21|3-MEDIUM|Clerk#000000445|0|even instructions sublate slyly blithely even forges. regu| +88044|374839|F|239728.22|1992-12-07|4-NOT SPECIFIED|Clerk#000003251|0|l dependencies. carefully regular packages | +88045|666383|F|197842.49|1994-08-06|2-HIGH|Clerk#000000869|0|efully across the blithely special dolphins? regula| +88046|142766|O|148247.17|1995-06-18|3-MEDIUM|Clerk#000001325|0|sits. slyly even ideas alongside of the regular foxes detect after t| +88047|217999|O|257218.70|1997-03-12|5-LOW|Clerk#000003463|0|accounts. slyly even instructions integrate carefully. | +88072|156487|O|140564.27|1995-06-02|4-NOT SPECIFIED|Clerk#000001487|0|l pinto beans haggle furiou| +88073|569359|O|288100.03|1996-02-26|4-NOT SPECIFIED|Clerk#000003810|0| quickly bold requests! fluffy, ironic accounts haggle about the ironic ideas| +88074|716273|F|267792.38|1992-03-02|3-MEDIUM|Clerk#000000236|0|, pending foxes according| +88075|143461|F|84229.53|1994-04-20|5-LOW|Clerk#000003428|0|e furiously above the even, even instructions. regular depo| +88076|643579|O|203263.78|1996-11-04|3-MEDIUM|Clerk#000004976|0|p fluffily blithely regular multipliers. busily final ex| +88077|115937|O|252011.91|1998-04-21|1-URGENT|Clerk#000004027|0|according to the ideas. blithely ironic accounts against th| +88078|45847|O|256623.53|1998-03-06|5-LOW|Clerk#000001988|0|lyly at the quickly ironic deposits. blithely express deposits sl| +88079|293317|F|121169.56|1992-08-21|3-MEDIUM|Clerk#000000238|0|s haggle slyly. slyly reg| +88104|26989|F|209491.56|1994-08-03|4-NOT SPECIFIED|Clerk#000003410|0|hin dependencies. quickly regular deposits cajole furiously at th| +88105|595942|F|146297.15|1993-09-23|4-NOT SPECIFIED|Clerk#000002843|0|s are furiously carefully express instructions. fi| +88106|485806|O|144783.01|1997-06-06|5-LOW|Clerk#000003920|0| slyly. regular dolphins sleep fluffily alongside of the furious| +88107|411238|O|38320.31|1996-05-26|5-LOW|Clerk#000004694|0|s wake. furiously furious | +88108|413428|F|150978.53|1992-09-13|1-URGENT|Clerk#000004547|0| express deposits thrash acros| +88109|457496|F|302167.02|1992-07-19|1-URGENT|Clerk#000000940|0| alongside of the final instructions. pending, unusual foxes against the th| +88110|120320|O|59991.25|1995-08-31|4-NOT SPECIFIED|Clerk#000004750|0|ly bold ideas nag slowly final excuses. express ideas cajole slyl| +88111|204628|F|80089.93|1992-12-12|3-MEDIUM|Clerk#000000586|0| accounts use blithely! slyly express packages sleep blithel| +88136|411926|F|241230.45|1995-01-30|4-NOT SPECIFIED|Clerk#000000941|0| final theodolites according to the ins| +88137|728144|O|112415.58|1996-05-15|3-MEDIUM|Clerk#000002241|0|ending requests. closely quick requests cajole caref| +88138|151292|O|168239.79|1998-03-03|5-LOW|Clerk#000003866|0|ackages cajole quickly after the pinto beans. careful ideas boost slyly amon| +88139|258517|O|151039.51|1995-11-21|3-MEDIUM|Clerk#000002827|0|sits. carefully special packages sublate slyly slyly unusual theodolites. fi| +88140|137890|O|114656.56|1998-05-13|1-URGENT|Clerk#000002729|0|ideas. final, bold dependencies use furiously regular requ| +88141|14344|O|72612.43|1997-08-26|4-NOT SPECIFIED|Clerk#000002743|0|sits boost against the accounts. carefully final deposits n| +88142|318893|O|64881.40|1998-05-06|5-LOW|Clerk#000002196|0| quickly even theodo| +88143|122410|O|66822.02|1997-10-06|4-NOT SPECIFIED|Clerk#000003978|0|integrate against th| +88168|85477|F|191369.88|1993-02-07|2-HIGH|Clerk#000003190|0|s could sleep. blithely unusual accounts sublate slyly about the iron| +88169|354587|F|167526.72|1994-06-21|2-HIGH|Clerk#000002389|0|s wake furiously pending dependencies. asymptotes are fluffily-- packages slee| +88170|36307|O|200806.02|1995-09-24|1-URGENT|Clerk#000004356|0|onic accounts eat against the furiously unusual foxes? enticingly pend| +88171|440467|O|63124.83|1996-10-28|5-LOW|Clerk#000001303|0|symptotes hinder slowly. packages | +88172|428468|F|165046.01|1993-04-18|2-HIGH|Clerk#000004486|0|gle carefully. carefully express asymptotes haggle furiously| +88173|504296|F|290561.16|1995-01-28|5-LOW|Clerk#000002330|0|lar requests. quickly even | +88174|696715|O|140105.22|1996-04-23|4-NOT SPECIFIED|Clerk#000003747|0|xes cajole carefully after the pending | +88175|682678|O|173429.61|1998-04-13|3-MEDIUM|Clerk#000001617|0|fully quick pinto beans. quickly ir| +88200|243001|O|43617.99|1997-07-17|3-MEDIUM|Clerk#000001916|0|the slyly unusual accounts. carefully even p| +88201|362918|P|89460.43|1995-06-13|2-HIGH|Clerk#000001813|0|against the quickly regular ideas nag slyly fluffily ironic t| +88202|559982|F|78944.26|1993-02-05|4-NOT SPECIFIED|Clerk#000000678|0|ously pending deposits haggle i| +88203|608917|F|108336.09|1992-10-02|2-HIGH|Clerk#000001881|0|thely furious dependencies. regular, ironic excuses boost slyly ironic pinto b| +88204|316790|F|229230.22|1993-08-17|2-HIGH|Clerk#000002182|0|sly final foxes above the fluffily special asymptotes cajole| +88205|26762|O|37754.98|1996-09-25|1-URGENT|Clerk#000001683|0|ions serve. carefully e| +88206|522451|F|134359.33|1993-05-08|5-LOW|Clerk#000000274|0|. carefully regular platelets grow quickly carefully express epitaphs. | +88207|580555|O|8408.66|1998-04-19|4-NOT SPECIFIED|Clerk#000003963|0|eodolites hinder against the fluffily| +88232|614935|O|89661.52|1998-02-18|5-LOW|Clerk#000004770|0| platelets. bold, ironic instructions can wake | +88233|207302|P|262941.68|1995-03-20|5-LOW|Clerk#000000964|0|inst the final, express accounts integrate carefully | +88234|367714|O|227121.84|1996-04-18|5-LOW|Clerk#000004934|0|nal excuses integrate depo| +88235|158911|O|188945.92|1996-12-07|2-HIGH|Clerk#000004747|0| even attainments use along the care| +88236|51344|O|53211.83|1997-11-21|4-NOT SPECIFIED|Clerk#000002140|0|sual accounts sleep carefu| +88237|432580|F|199661.92|1992-12-12|5-LOW|Clerk#000003617|0|ng pinto beans lose furiously regular, express ideas. slyly even pinto b| +88238|601684|F|155465.43|1995-03-04|3-MEDIUM|Clerk#000004512|0|al accounts affix furiously. slyly dogged packages along the | +88239|251257|F|26061.03|1994-12-23|3-MEDIUM|Clerk#000000338|0|es. fluffily special attainments detect fina| +88264|345331|F|93447.61|1992-02-10|2-HIGH|Clerk#000004040|0|nal packages. careful br| +88265|473188|O|174686.59|1998-06-07|5-LOW|Clerk#000004711|0| carefully bold accounts are. even, special depende| +88266|619637|O|300139.69|1998-01-03|2-HIGH|Clerk#000004983|0| are slyly about the carefully final deposits. closely regular| +88267|477302|F|168322.74|1995-03-09|4-NOT SPECIFIED|Clerk#000004557|0|its affix slyly ironic escapades. special patterns along the never ironic | +88268|1957|O|107494.21|1996-09-05|3-MEDIUM|Clerk#000004124|0|sentiments cajole slyly. accounts are after the | +88269|617875|F|213857.10|1993-09-12|4-NOT SPECIFIED|Clerk#000003307|0|ress platelets nag blithely | +88270|120065|O|57902.73|1998-06-27|5-LOW|Clerk#000000839|0|special foxes. blithely| +88271|418264|O|52237.96|1997-02-08|4-NOT SPECIFIED|Clerk#000004294|0|tes use furiously acros| +88296|157|F|37929.04|1992-05-11|2-HIGH|Clerk#000004475|0|ully ironic dugouts | +88297|355172|F|113337.56|1993-06-16|3-MEDIUM|Clerk#000003282|0|ses. asymptotes around the regular, silent packages sleep sly| +88298|115078|F|156887.90|1994-06-21|5-LOW|Clerk#000002325|0|bout the deposits wake slyly besides th| +88299|599206|O|111301.97|1997-06-04|4-NOT SPECIFIED|Clerk#000000392|0| even, unusual dependencies doubt carefully carefu| +88300|578065|O|4351.48|1996-09-21|2-HIGH|Clerk#000002969|0|sly. carefully unusual dependencies wake final, p| +88301|13085|F|143651.76|1994-03-21|1-URGENT|Clerk#000004066|0|final packages nod quickly among the special depos| +88302|163313|F|95379.18|1994-10-31|3-MEDIUM|Clerk#000000257|0|ess accounts against the carefully pending theodolit| +88303|538444|O|193503.71|1996-05-30|2-HIGH|Clerk#000002870|0|gular pinto beans are blithely after the blithely regular excuses.| +88328|127169|O|152604.95|1995-11-22|2-HIGH|Clerk#000000251|0| cajole during the even a| +88329|573908|F|157886.93|1992-07-27|3-MEDIUM|Clerk#000002945|0| pinto beans are! furio| +88330|658966|F|184308.80|1994-07-14|1-URGENT|Clerk#000003807|0|ously final platelets above the quickly ev| +88331|720037|O|11529.67|1998-07-26|2-HIGH|Clerk#000003111|0|y regular pains. furiously special depe| +88332|397187|O|89899.14|1997-05-03|5-LOW|Clerk#000002448|0|cajole slyly blithely ironic theodolites. carefully bold | +88333|515726|O|205952.38|1996-05-08|5-LOW|Clerk#000001867|0|ly regular accounts haggle carefully about the carefully express requests. fi| +88334|53005|O|303943.25|1997-08-10|4-NOT SPECIFIED|Clerk#000000416|0|theodolites. dependencies use after the furiously express o| +88335|577919|F|20534.90|1993-10-25|1-URGENT|Clerk#000000009|0|fully ironic accounts ar| +88360|583057|F|107133.92|1994-02-07|4-NOT SPECIFIED|Clerk#000000489|0|en theodolites wake fluffily. deposits integrate amo| +88361|666628|O|218022.74|1995-07-21|1-URGENT|Clerk#000004193|0|to beans impress according to the quickly e| +88362|502943|F|3494.26|1994-04-11|2-HIGH|Clerk#000000231|0|gularly final pinto beans. ironic, bold instruction| +88363|451084|F|201846.01|1992-05-31|3-MEDIUM|Clerk#000001938|0| final theodolites. final Tir| +88364|342446|O|269431.34|1996-06-30|2-HIGH|Clerk#000004564|0| according to the ironic accounts. fluffily ev| +88365|723805|F|312512.39|1993-09-03|1-URGENT|Clerk#000002055|0|st the furiously exp| +88366|719537|O|180143.27|1996-01-07|1-URGENT|Clerk#000004794|0|he final, final pack| +88367|244085|F|207070.72|1992-12-28|5-LOW|Clerk#000004170|0|eans. final ideas after the even theodolites cajole someti| +88392|576437|F|273443.42|1993-03-02|3-MEDIUM|Clerk#000003253|0|ly final instructions poach alongside of the blithely| +88393|419011|F|232607.13|1994-03-27|2-HIGH|Clerk#000002319|0|gainst the express, even ideas. orb| +88394|559124|O|12314.52|1996-01-15|5-LOW|Clerk#000003145|0|out the ironic excuses: acc| +88395|445153|O|47695.99|1998-06-19|5-LOW|Clerk#000003320|0|kly. foxes among the furiously even dependencies are across the fluffily fi| +88396|408901|O|159902.76|1996-12-31|4-NOT SPECIFIED|Clerk#000004007|0|ages! enticingly even package| +88397|121915|F|137033.62|1993-09-25|5-LOW|Clerk#000000646|0|y with the slyly fluffy pa| +88398|14365|O|290890.53|1997-08-22|5-LOW|Clerk#000004228|0|mptotes haggle quickly along the deposits. furiously ironic theodolit| +88399|655166|F|135186.91|1992-07-13|5-LOW|Clerk#000004236|0| packages sleep slyly even asympt| +88424|623669|F|220379.18|1992-09-14|1-URGENT|Clerk#000004202|0|ing pinto beans sleep. carefully final pearl| +88425|740455|O|341306.48|1997-07-11|4-NOT SPECIFIED|Clerk#000002177|0|sly ironic courts shall wake quickly special, special acco| +88426|60143|O|277457.98|1996-11-20|1-URGENT|Clerk#000001732|0|pitaphs try to nag blithely bold deposits. fluffil| +88427|563005|F|82874.24|1992-12-28|4-NOT SPECIFIED|Clerk#000004272|0|he slyly final frays. carefull| +88428|405088|F|122561.82|1992-10-08|1-URGENT|Clerk#000004996|0|al theodolites sleep carefully eve| +88429|532732|O|97081.03|1997-04-27|2-HIGH|Clerk#000002553|0|ously busy foxes against th| +88430|114871|O|24481.39|1997-11-16|1-URGENT|Clerk#000002960|0|e fluffily! silent, unusual pinto beans detect busil| +88431|105562|O|111730.90|1997-05-19|4-NOT SPECIFIED|Clerk#000002299|0|ly silent, express p| +88456|398665|O|279407.31|1996-03-30|4-NOT SPECIFIED|Clerk#000001078|0| instructions believe furiously final instruction| +88457|580889|F|51660.87|1994-03-07|5-LOW|Clerk#000000619|0|s. blithely special requests haggle. blithely special accounts wake| +88458|246323|O|194902.79|1998-07-20|1-URGENT|Clerk#000001348|0|dencies. ironic attainments use along the brave foxes. carefully| +88459|690268|F|133279.11|1994-07-04|4-NOT SPECIFIED|Clerk#000002534|0| packages use fluffily across the furiously fluffy ideas. blithely re| +88460|310147|O|154887.78|1997-10-29|3-MEDIUM|Clerk#000004296|0|bold packages haggle quickly about the | +88461|139498|O|10849.36|1995-11-03|2-HIGH|Clerk#000002403|0|eas. regular requests cajole. boldly b| +88462|22544|O|259663.35|1997-04-13|2-HIGH|Clerk#000003755|0|es serve final pinto beans. ironic deposits boost stealthil| +88463|130250|F|213845.82|1992-08-04|3-MEDIUM|Clerk#000003565|0|eposits sleep about the final packages. furiously special requests are| +88488|596597|O|168782.22|1998-05-10|4-NOT SPECIFIED|Clerk#000002645|0|e slyly even requests! | +88489|239347|F|92141.79|1994-09-19|2-HIGH|Clerk#000002212|0|bold theodolites. slyly final platelets thrash blit| +88490|451012|F|154874.02|1994-08-08|3-MEDIUM|Clerk#000002519|0|ly after the careful| +88491|633208|O|229838.68|1997-05-07|4-NOT SPECIFIED|Clerk#000001224|0|quests. carefully fin| +88492|550349|F|246823.49|1992-08-17|3-MEDIUM|Clerk#000001367|0|c deposits cajole quickly special forges. slyly regular platelets af| +88493|713515|F|211998.55|1994-05-08|1-URGENT|Clerk#000003416|0| bold accounts sleep among the caref| +88494|264839|O|22186.31|1995-04-24|4-NOT SPECIFIED|Clerk#000000559|0|nts affix carefully pinto beans. ironic instr| +88495|642928|O|50966.21|1995-12-12|4-NOT SPECIFIED|Clerk#000003823|0|carefully slyly idle requests. blithely final request| +88520|418310|F|303715.07|1993-10-22|5-LOW|Clerk#000004926|0|s. ideas nag blithely. fluffily ironic dependencies| +88521|27802|F|252035.35|1994-03-23|4-NOT SPECIFIED|Clerk#000001906|0|y final deposits. requests use regular foxes. | +88522|745762|O|193356.74|1995-09-04|1-URGENT|Clerk#000003631|0|pecial requests. final pinto beans sleep slyly slyly fina| +88523|10003|F|64145.59|1993-07-11|5-LOW|Clerk#000000552|0| ironic dinos? slyly regular instructions cajole fluffily acros| +88524|108277|O|94503.64|1997-11-12|2-HIGH|Clerk#000004101|0|hins are carefully bold de| +88525|279500|F|41607.81|1992-10-02|4-NOT SPECIFIED|Clerk#000001301|0|ronic foxes. slyly express requests alongside of the b| +88526|290497|O|334778.49|1997-04-24|1-URGENT|Clerk#000001646|0|ar, even packages: bold, regular requests above the | +88527|622231|O|97352.77|1995-10-16|4-NOT SPECIFIED|Clerk#000002053|0|y furiously express deposit| +88552|564158|F|56863.02|1992-12-15|1-URGENT|Clerk#000001621|0|the blithely ironic accounts.| +88553|296470|O|72104.65|1995-08-14|2-HIGH|Clerk#000003125|0|ests are. regular packages for the accounts doubt fluffily among the | +88554|513107|O|343552.12|1997-05-21|3-MEDIUM|Clerk#000002658|0|fully final accounts. express deposi| +88555|288265|F|181516.86|1992-12-07|2-HIGH|Clerk#000003987|0|xpress patterns sleep carefully over the slyly silent depos| +88556|599452|F|194652.17|1993-08-04|1-URGENT|Clerk#000002316|0|boost quickly. ironic pinto beans instead of the slyly ironic accounts sleep | +88557|233650|O|38858.96|1995-05-16|1-URGENT|Clerk#000001852|0|. silent deposits nag furiously furiously unusual packages.| +88558|678416|O|232302.54|1997-05-24|1-URGENT|Clerk#000002327|0|ely after the pending pinto beans. slyl| +88559|621352|O|244363.29|1996-09-30|3-MEDIUM|Clerk#000001650|0| pending deposits. blithely special courts boost carefully | +88584|30955|O|271072.56|1996-05-09|1-URGENT|Clerk#000001234|0| final dependencies. furiously special pinto beans boost b| +88585|495944|O|117997.86|1995-12-28|4-NOT SPECIFIED|Clerk#000002403|0|sts. express accounts sleep slyly. carefully busy accounts sleep care| +88586|575731|O|28964.03|1996-07-05|1-URGENT|Clerk#000004588|0|ounts use carefully always special pinto beans. bold deposits along the | +88587|544687|F|73053.12|1992-05-15|5-LOW|Clerk#000001927|0|en accounts detect slyly carefully final acco| +88588|46198|O|191218.90|1997-09-16|3-MEDIUM|Clerk#000004370|0|oost slyly. quickly unusual accounts wake quickly regular| +88589|188212|F|85087.80|1994-12-11|5-LOW|Clerk#000001243|0|y express pinto bea| +88590|505744|O|91288.33|1995-09-06|2-HIGH|Clerk#000003267|0|ses: quickly special instructions sleep.| +88591|263968|O|184350.57|1995-09-20|1-URGENT|Clerk#000002500|0|unts cajole bravely. special accounts sleep blithely| +88616|257683|O|209348.13|1997-12-11|1-URGENT|Clerk#000002696|0|ole slyly alongside of the ironic asymptotes. idle ac| +88617|372553|F|197544.39|1993-03-25|2-HIGH|Clerk#000000292|0|lar, regular packages use quickly along the unusual reque| +88618|497942|O|34016.95|1998-05-18|5-LOW|Clerk#000002584|0|lites cajole blithely| +88619|397591|O|146949.93|1997-12-01|1-URGENT|Clerk#000001264|0|hely furiously furious pinto beans. fluffily silent accounts u| +88620|554564|O|288900.69|1996-11-09|4-NOT SPECIFIED|Clerk#000001162|0|g to the quickly express packages cajole boldly sl| +88621|290995|O|24995.47|1995-09-02|3-MEDIUM|Clerk#000001256|0|ly express deposits. | +88622|747058|F|46389.91|1993-11-29|3-MEDIUM|Clerk#000000287|0|blithely quickly ev| +88623|40303|F|13246.91|1992-04-22|1-URGENT|Clerk#000002805|0|osely special instructions. furiously ironic excuse| +88648|117335|O|70939.99|1998-04-02|1-URGENT|Clerk#000003721|0| regular dependencies nag blithely even packages. furiously even d| +88649|293638|F|184962.69|1993-02-14|1-URGENT|Clerk#000000082|0|r foxes eat slyly. accounts are about the furiously even packages. carefu| +88650|171332|F|144937.89|1994-07-04|2-HIGH|Clerk#000001512|0|ole silently. regular, ironic| +88651|312380|F|129517.85|1994-09-16|4-NOT SPECIFIED|Clerk#000003193|0|sly final ideas. even, regular pinto beans must sleep carefully alo| +88652|154240|F|236012.38|1993-12-13|2-HIGH|Clerk#000003874|0|ly final courts. furiously| +88653|296629|O|285177.59|1996-12-23|5-LOW|Clerk#000003310|0|d theodolites-- furio| +88654|180541|O|351573.78|1998-03-09|4-NOT SPECIFIED|Clerk#000004338|0|quickly unusual dinos against the pend| +88655|569330|O|82802.34|1995-09-01|1-URGENT|Clerk#000000291|0|ironic accounts haggle according to the quickly final ideas. dependenci| +88680|227896|O|43018.79|1996-02-18|4-NOT SPECIFIED|Clerk#000004648|0|gular excuses use blithely carefully even requests. even pa| +88681|738175|O|99790.80|1997-09-18|4-NOT SPECIFIED|Clerk#000000592|0|y about the furiously final foxes? regular deposits are. quickly ironic packag| +88682|738067|F|83171.85|1992-11-11|1-URGENT|Clerk#000004997|0|onic ideas haggle fluffily. orbits use quickly. blithely pending accounts| +88683|409730|O|135568.36|1997-01-22|2-HIGH|Clerk#000001057|0|uriously regular packages across the furiously unusual packages integrate blit| +88684|571082|O|39784.37|1995-10-04|5-LOW|Clerk#000004988|0|c packages haggle slyly ironic, regular accounts. | +88685|411652|O|37244.14|1997-04-28|1-URGENT|Clerk#000001521|0|ing to the carefully even deposits. doggedly ironic courts affix furiously| +88686|622370|F|50405.10|1994-08-15|1-URGENT|Clerk#000002810|0|ns sleep. ironically| +88687|669313|F|267887.45|1993-04-20|4-NOT SPECIFIED|Clerk#000001501|0|ts. ironic excuses imp| +88712|621136|O|9934.95|1995-09-11|3-MEDIUM|Clerk#000003595|0|e regular packages are slyly for th| +88713|172492|P|272880.36|1995-05-08|1-URGENT|Clerk#000002707|0| carefully express att| +88714|308539|O|81840.62|1996-12-11|2-HIGH|Clerk#000001483|0|instructions wake blithely requests. stealthy ideas haggle. ir| +88715|96754|O|101394.33|1996-02-08|5-LOW|Clerk#000000257|0|elets sleep. carefully expr| +88716|136274|F|164346.57|1993-02-03|4-NOT SPECIFIED|Clerk#000004577|0|xes are quiet packages. furiously unusual packages are| +88717|603073|F|181659.67|1993-05-26|1-URGENT|Clerk#000003619|0|deas. accounts breac| +88718|325708|O|146510.49|1998-01-18|3-MEDIUM|Clerk#000002342|0|e final, final packages wake fluffily sly| +88719|641530|O|140338.04|1997-03-22|5-LOW|Clerk#000004283|0|ongside of the blithely regular platelets| +88744|173002|O|324939.68|1996-04-09|3-MEDIUM|Clerk#000003262|0|er the slyly final notornis cajole blithely along th| +88745|630151|F|104936.27|1994-06-04|2-HIGH|Clerk#000003508|0|dolites wake slyly after the regular theodolites. pending| +88746|176161|F|109387.60|1994-04-14|3-MEDIUM|Clerk#000000667|0|ular pinto beans. fluffily silent excuses sleep slyly unusual| +88747|458459|F|276504.17|1994-06-23|4-NOT SPECIFIED|Clerk#000003818|0| above the daringly careful instructions| +88748|567859|F|168589.48|1994-07-28|4-NOT SPECIFIED|Clerk#000001804|0|ithely across the furiously permanent theodolites. final deposi| +88749|225001|F|140444.67|1992-01-13|3-MEDIUM|Clerk#000004534|0|ccounts above the slyly regular requests are carefully bo| +88750|59498|F|29736.16|1993-12-25|2-HIGH|Clerk#000003704|0|s. blithely final deposits sleep permanently even instructions!| +88751|221662|F|156656.86|1994-09-21|2-HIGH|Clerk#000001958|0|s. final, final accounts haggle carefully. regular i| +88776|203089|O|200856.81|1998-03-15|3-MEDIUM|Clerk#000003127|0|aintain after the quickly pending decoys. pending asympto| +88777|44353|F|3475.90|1994-04-27|4-NOT SPECIFIED|Clerk#000000423|0|special deposits. slyly quick pinto beans wake slyly tithes.| +88778|681337|F|361137.85|1993-05-09|1-URGENT|Clerk#000001280|0|egular warthogs haggle. foxes wake fluffily blithely| +88779|230170|F|72317.76|1994-02-02|2-HIGH|Clerk#000000220|0| ironic, regular deposits wake furiously around th| +88780|712849|F|258738.05|1995-01-27|3-MEDIUM|Clerk#000003336|0|ly pending pinto beans nag carefully. express, final platelets u| +88781|337798|F|55028.18|1992-12-31|4-NOT SPECIFIED|Clerk#000004703|0|jole carefully. slyly final accounts thrash | +88782|607697|O|246588.08|1997-08-19|3-MEDIUM|Clerk#000003189|0|ending packages engage. even, ironic excuses are quickly bold, u| +88783|61945|O|186747.52|1998-04-25|1-URGENT|Clerk#000003284|0|equests are even deposits. blithely bold ideas a| +88808|99499|F|81865.50|1992-05-14|2-HIGH|Clerk#000001146|0|ickly silent accounts| +88809|502066|O|85389.91|1996-12-01|1-URGENT|Clerk#000000595|0|ending theodolites! pinto beans haggle slyly according to the sometimes s| +88810|703069|O|55754.89|1997-10-05|3-MEDIUM|Clerk#000004062|0|nst the slyly unusual | +88811|218701|F|221590.18|1994-05-16|3-MEDIUM|Clerk#000003899|0|eep. ironic instructions use. even requests on the regul| +88812|676858|O|139838.89|1996-01-19|3-MEDIUM|Clerk#000000287|0|lly according to the blithely even packages| +88813|681616|F|183859.53|1993-12-08|5-LOW|Clerk#000000534|0|dly ironic foxes use clo| +88814|395522|O|287346.00|1997-07-23|4-NOT SPECIFIED|Clerk#000003467|0|eas. ironic foxes about the even, ironic | +88815|276241|O|204753.90|1996-05-07|3-MEDIUM|Clerk#000004564|0|s doze blithely about the fluffily regular packages. packages wake fluffily. b| +88840|270694|O|296695.74|1997-12-06|3-MEDIUM|Clerk#000002503|0| express requests wake qui| +88841|47225|F|25631.15|1994-07-12|1-URGENT|Clerk#000001125|0|iously regular instruction| +88842|208345|O|120581.94|1996-09-26|5-LOW|Clerk#000004682|0|ts sleep along the packages. ironically final deposits cajole.| +88843|648443|O|263632.57|1997-04-09|3-MEDIUM|Clerk#000003867|0|nic requests use furiously. blithely pending packages wake | +88844|115342|O|32580.02|1996-10-02|1-URGENT|Clerk#000000949|0|ily regular platelets. daringly regu| +88845|543131|F|99907.97|1992-10-11|2-HIGH|Clerk#000003231|0|oost deposits. slyly regular pinto beans promise across the ironic packages. | +88846|141470|F|14227.80|1992-12-21|1-URGENT|Clerk#000003331|0|y express deposits are furiously about the unusual pain| +88847|171305|O|174003.37|1995-11-26|4-NOT SPECIFIED|Clerk#000001491|0|t are carefully regular deposits. carefully bold| +88872|608647|O|5846.38|1995-08-03|4-NOT SPECIFIED|Clerk#000002815|0|uickly special deposits sleep fluff| +88873|250972|F|153737.53|1995-01-09|3-MEDIUM|Clerk#000004968|0|c requests haggle furiously across the bl| +88874|78074|O|50651.21|1998-04-22|5-LOW|Clerk#000002885|0|e pending packages a| +88875|439141|F|152746.38|1993-08-17|2-HIGH|Clerk#000004430|0|efully even accounts boost blithely blith| +88876|638741|F|211470.97|1993-07-17|4-NOT SPECIFIED|Clerk#000001776|0|into beans after the slyly thin theodolites cajole asymptotes. deposits | +88877|569069|O|255590.93|1997-09-13|5-LOW|Clerk#000003565|0|pending accounts haggle quickly against the carefully final| +88878|326549|O|116675.86|1998-05-18|3-MEDIUM|Clerk#000001208|0|efully. accounts alongside of the deposits are slyly about | +88879|556105|O|27871.19|1996-02-14|1-URGENT|Clerk#000003253|0|arefully after the express foxes! final foxes along t| +88904|700601|O|193608.42|1995-08-02|4-NOT SPECIFIED|Clerk#000003874|0|eas are furiously regular excuses. blithel| +88905|440|O|163727.92|1998-04-28|1-URGENT|Clerk#000003143|0| carefully ironic pinto beans. ironic, final depo| +88906|628709|O|45037.71|1996-04-05|4-NOT SPECIFIED|Clerk#000001006|0|riously final requests p| +88907|708200|F|52159.21|1992-09-12|2-HIGH|Clerk#000003117|0| final attainments detect furiously bl| +88908|203371|O|40590.27|1997-06-11|4-NOT SPECIFIED|Clerk#000002467|0| accounts are blithely across the blithely si| +88909|303028|F|98653.31|1992-03-05|3-MEDIUM|Clerk#000001012|0|s the regular ideas. even, ironic co| +88910|484201|F|108340.43|1993-11-01|5-LOW|Clerk#000000218|0|times silent deposits| +88911|439831|F|238256.09|1994-10-22|4-NOT SPECIFIED|Clerk#000001654|0|eas against the regular requests boost around the carefully close court| +88936|211213|F|79034.75|1994-01-08|5-LOW|Clerk#000001226|0| quickly regular ideas. unusual packages are careful| +88937|83929|O|198362.08|1995-12-24|2-HIGH|Clerk#000003543|0|ly bold accounts sleep along the carefully final tithes. quick| +88938|580720|F|55698.00|1993-12-29|4-NOT SPECIFIED|Clerk#000002117|0|carefully unusual theodolites. caref| +88939|396986|F|200197.26|1993-02-04|2-HIGH|Clerk#000003732|0|. furious requests are carefully above the carefully ev| +88940|142160|F|95306.22|1994-09-22|5-LOW|Clerk#000004055|0|en dependencies integrate blithely across| +88941|525004|F|184613.21|1992-05-18|1-URGENT|Clerk#000001597|0|ular platelets wake doggedly final excuses. b| +88942|709282|F|226486.25|1993-02-13|3-MEDIUM|Clerk#000003369|0|tructions boost fluffily ironic| +88943|370378|O|412607.59|1996-06-24|1-URGENT|Clerk#000003851|0|furiously even dependencies slee| +88968|682982|O|71413.49|1998-05-05|4-NOT SPECIFIED|Clerk#000000478|0|ward the regular, regular accounts. blithely ironic packages| +88969|121978|O|161196.96|1996-02-11|1-URGENT|Clerk#000004580|0|es use quickly at the even accounts-- express, final requests impres| +88970|310459|F|76065.10|1992-04-23|3-MEDIUM|Clerk#000002985|0|atelets. carefully special deposits use blithely. fluffily final requests| +88971|107659|F|284811.80|1993-02-11|5-LOW|Clerk#000003359|0|gular ideas after the furiously final packa| +88972|408949|F|335406.69|1994-04-19|4-NOT SPECIFIED|Clerk#000001180|0| the even asymptotes.| +88973|178375|F|42569.70|1992-09-16|4-NOT SPECIFIED|Clerk#000000182|0|t deposits. furiously slow pinto beans about the final ac| +88974|194206|F|226689.77|1993-05-31|1-URGENT|Clerk#000003070|0|ffy excuses; dolphins abou| +88975|749987|O|218626.25|1998-01-04|4-NOT SPECIFIED|Clerk#000004166|0|ic theodolites. carefully even deposits wake blithely unu| +89000|517864|O|79672.06|1996-04-30|2-HIGH|Clerk#000001985|0|counts eat furiously blithely even requests. accounts are slyl| +89001|707666|P|298713.54|1995-05-12|3-MEDIUM|Clerk#000003871|0| fluffily. carefully furious accounts by the blithely pending accounts | +89002|240539|O|124431.28|1996-01-01|4-NOT SPECIFIED|Clerk#000003775|0|quiet ideas ought to haggle carefully. regular, pending packages wake| +89003|228439|O|66535.73|1996-01-14|2-HIGH|Clerk#000003507|0|lyly. ironic, regular deposits haggle alongside| +89004|90973|F|69443.31|1993-11-29|1-URGENT|Clerk#000001957|0|ly regular instructions are slyly. carefully even| +89005|451576|P|115354.54|1995-03-07|3-MEDIUM|Clerk#000003836|0|y final theodolites sleep| +89006|359639|F|74135.96|1994-09-14|3-MEDIUM|Clerk#000000861|0|ides the furiously even theodolites. furiously regular pinto b| +89007|193633|F|233987.97|1992-11-14|2-HIGH|Clerk#000004870|0|ts detect blithely final, | +89032|139307|F|185289.69|1993-10-05|5-LOW|Clerk#000000408|0|totes poach. accounts wake against the requests. slyly ironic deposits caj| +89033|574015|F|15550.58|1992-08-16|3-MEDIUM|Clerk#000001331|0|ironic requests around the blithely regular foxes engage slyly slyl| +89034|194881|F|132950.73|1992-09-16|1-URGENT|Clerk#000004821|0|tions wake along th| +89035|90989|P|190216.92|1995-05-25|3-MEDIUM|Clerk#000002936|0|dependencies. carefully silent package| +89036|736870|F|31068.11|1993-02-08|2-HIGH|Clerk#000003345|0|its after the slyly bold packages | +89037|556630|F|55995.79|1995-01-03|2-HIGH|Clerk#000003761|0|requests wake. furiously ironic accounts detect. furiousl| +89038|524443|F|187196.96|1992-11-04|3-MEDIUM|Clerk#000004699|0|s. deposits boost carefully. platelets| +89039|312566|O|353034.77|1996-03-22|2-HIGH|Clerk#000000251|0| ideas haggle carefully slyly bold deposits. regular theodolites promis| +89064|288119|O|183904.78|1997-09-11|4-NOT SPECIFIED|Clerk#000000307|0|accounts doze carefully across the carefully express theod| +89065|414100|O|309064.31|1998-06-23|1-URGENT|Clerk#000001254|0|ickly ironic accounts. bold deposits according to the| +89066|508384|F|114652.66|1993-05-27|1-URGENT|Clerk#000001019|0|posits. blithely unusual pinto beans use above| +89067|392393|O|104819.69|1995-10-27|3-MEDIUM|Clerk#000000764|0|gular instructions. furiously silent pinto beans sublate at the unusual ac| +89068|198512|O|205608.05|1996-12-21|1-URGENT|Clerk#000003355|0|gular packages. fluffily final accounts sleep caref| +89069|384580|O|187269.30|1995-09-11|1-URGENT|Clerk#000001203|0|tructions. ironic pinto beans haggle slowly even pinto be| +89070|113797|O|144836.59|1996-08-30|4-NOT SPECIFIED|Clerk#000002839|0|efully regular deposits according to the carefully final ideas are a| +89071|73130|F|157683.38|1993-12-16|3-MEDIUM|Clerk#000003466|0|ending deposits. regular packages haggle about the foxe| +89096|593861|F|28760.50|1994-02-25|5-LOW|Clerk#000002452|0|ly about the ironic theodolites. carefully ironic requests use | +89097|15529|O|113322.28|1996-04-22|3-MEDIUM|Clerk#000000874|0| haggle. even, special requests wake quickly express deposits: caref| +89098|729376|F|194699.97|1995-01-04|3-MEDIUM|Clerk#000000948|0|nic ideas. special packages ag| +89099|609661|F|250268.79|1992-04-02|3-MEDIUM|Clerk#000001828|0|ajole quickly final requests. slyly bold deposits wake slyly. furi| +89100|43078|O|34914.21|1998-07-17|5-LOW|Clerk#000003242|0| integrate blithely after the blithely pending| +89101|235780|O|170802.52|1997-10-14|1-URGENT|Clerk#000003484|0|t final, even requests. final pinto be| +89102|473848|F|109157.58|1993-07-15|1-URGENT|Clerk#000003624|0|yly special dolphins sleep among the special, permanent requests. furio| +89103|443945|O|163700.27|1997-09-02|2-HIGH|Clerk#000004122|0|ts are above the ironic,| +89128|381755|O|101711.26|1998-01-23|5-LOW|Clerk#000001847|0|tions unwind slyly at the accounts. even, even dolphins s| +89129|655060|O|167210.72|1997-06-13|5-LOW|Clerk#000001419|0|sual theodolites nag slyly. slyly express frets are against the regular, ir| +89130|325222|F|97684.42|1994-07-29|4-NOT SPECIFIED|Clerk#000001247|0|refully bold requests. ideas wake regular requests.| +89131|744619|F|203199.47|1992-01-11|4-NOT SPECIFIED|Clerk#000001660|0|lly even pearls. slyly| +89132|307438|O|83891.58|1997-08-24|1-URGENT|Clerk#000000826|0| haggle fluffily ironic, unusual requests. fluffily silent ideas wake. fur| +89133|358577|F|268160.80|1995-02-07|2-HIGH|Clerk#000003799|0|print slyly ironic, f| +89134|340108|O|99569.37|1996-07-15|5-LOW|Clerk#000004442|0|nt deposits sleep blithely: bold theodolites above the slyly express idea| +89135|439688|O|68677.49|1997-12-01|3-MEDIUM|Clerk#000000283|0|ts. quickly even packages use furiously along the furiously r| +89160|79615|P|118264.44|1995-03-18|3-MEDIUM|Clerk#000001114|0|ular pinto beans. quickly ironic requests hang. finally bold requests| +89161|75961|O|103631.25|1996-06-10|2-HIGH|Clerk#000001203|0| regular deposits sleep. silent, regular packag| +89162|169853|O|162529.05|1997-02-10|5-LOW|Clerk#000003816|0|y ironic accounts cajole alongside of the fluffily furiou| +89163|212579|F|20550.97|1994-05-09|1-URGENT|Clerk#000004469|0|. slyly even ideas nag carefully deposits. unusual, brave accounts are| +89164|557555|F|68780.65|1992-04-20|4-NOT SPECIFIED|Clerk#000004078|0|ymptotes use quickly regular frets. pending, unusual id| +89165|314026|O|22449.60|1996-05-31|3-MEDIUM|Clerk#000003776|0|kly special deposits wake carefully bl| +89166|82627|O|71318.92|1998-06-08|2-HIGH|Clerk#000002574|0|eep slyly final foxes. ironic excuses are around | +89167|451861|F|143379.02|1994-02-04|2-HIGH|Clerk#000003635|0| the pending, ironic theodolites! slyly ironic requests engage furiously | +89192|649676|O|215580.23|1997-10-21|5-LOW|Clerk#000002621|0|egrate furiously always pending Tiresias. pending, express platelets wake| +89193|601297|F|54816.46|1994-12-23|1-URGENT|Clerk#000000901|0|ly carefully final deposits. slyly furious platelets amo| +89194|498394|F|42768.32|1993-07-05|5-LOW|Clerk#000003366|0|pendencies. regular, special accounts cajole asymptotes. theodolit| +89195|498119|O|170364.16|1996-07-25|2-HIGH|Clerk#000003744|0|egular instructions around the blithel| +89196|372523|O|146869.17|1996-01-11|2-HIGH|Clerk#000004560|0|regular dependencies cajole | +89197|738211|F|31848.21|1992-10-26|4-NOT SPECIFIED|Clerk#000004658|0|ly ideas. regular accounts alongside of the even forg| +89198|591449|F|7121.27|1994-09-16|4-NOT SPECIFIED|Clerk#000003692|0|nts. blithely express dolphins sleep against the flu| +89199|729929|F|345229.32|1993-07-02|5-LOW|Clerk#000000029|0| fluffily pending deposits wake among the ironic packages. regu| +89224|157903|O|42504.47|1996-01-27|2-HIGH|Clerk#000002313|0|al excuses snooze slyly bold, final packages? sly r| +89225|366886|O|48541.21|1996-03-26|5-LOW|Clerk#000001283|0|y even pinto beans haggle against the regular deposits. carefully| +89226|478498|F|159177.56|1994-02-11|5-LOW|Clerk#000001519|0|eposits-- carefully regular requests cajole ideas. furiously express pint| +89227|601481|O|285088.19|1997-11-02|2-HIGH|Clerk#000000391|0|. slyly pending pinto bea| +89228|584629|F|228876.39|1994-11-07|4-NOT SPECIFIED|Clerk#000003464|0|ses. blithely regular ideas cajole furiously quickly express requests. | +89229|96419|O|125882.58|1998-05-19|5-LOW|Clerk#000001795|0|ermanently blithely pending dep| +89230|514067|O|337037.53|1995-11-06|1-URGENT|Clerk#000003023|0| blithely silent accounts affix furiously. care| +89231|663934|O|176511.70|1997-03-15|1-URGENT|Clerk#000000114|0| ideas cajole quickly. final asymptot| +89256|208316|F|142514.12|1994-05-27|3-MEDIUM|Clerk#000004411|0|uctions. regular ideas haggle fluffily slyly regular accounts. pint| +89257|157547|O|277785.56|1997-12-24|4-NOT SPECIFIED|Clerk#000000411|0|c, express foxes are quickly packages. final, final sauternes nag acro| +89258|387772|O|298030.44|1996-08-16|5-LOW|Clerk#000004844|0|r, idle instructions impress furiously after the blithely ironic escapades. re| +89259|521605|O|130357.26|1997-01-01|2-HIGH|Clerk#000001159|0|uctions cajole slyly evenly unusual accounts. carefully fi| +89260|614582|F|179668.08|1993-03-15|1-URGENT|Clerk#000000436|0|ole carefully unusual instructions. ironic deposits cajole c| +89261|278681|O|114728.86|1996-07-30|3-MEDIUM|Clerk#000002156|0|s impress instructions. carefully pending theodolites use slyly. blith| +89262|26863|O|299191.26|1996-06-09|3-MEDIUM|Clerk#000001428|0|ar excuses. slyly even accounts about the regular dependencie| +89263|709748|F|290681.19|1993-11-02|2-HIGH|Clerk#000002661|0|ide of the final, regular instructions run| +89288|726722|O|136367.23|1997-10-04|3-MEDIUM|Clerk#000001639|0|the final requests. blithely bold deposits haggle carefully. deposits among t| +89289|260854|F|115080.28|1992-11-25|2-HIGH|Clerk#000000837|0|ic foxes are furiously. ironic,| +89290|412556|F|193257.30|1992-03-18|5-LOW|Clerk#000003446|0|ove the final asymptotes boost carefully quickl| +89291|72388|O|86570.86|1997-03-18|5-LOW|Clerk#000000328|0|ies. quickly unusual instructions haggle furiously. always permanent accounts | +89292|93590|O|136439.72|1997-06-16|1-URGENT|Clerk#000001632|0|luffily special accounts | +89293|208960|O|24699.72|1996-11-16|5-LOW|Clerk#000004814|0|ly alongside of the | +89294|475471|F|220480.58|1992-09-01|2-HIGH|Clerk#000000983|0| accounts. furiously regular ideas wake among the blithely final sentiments. s| +89295|712939|O|163062.97|1996-09-11|2-HIGH|Clerk#000003780|0|r foxes engage! even theodolite| +89320|361058|F|157668.06|1992-04-29|3-MEDIUM|Clerk#000001059|0|y bold deposits wake according to the furiously final forges. final | +89321|37595|F|5923.79|1992-02-19|3-MEDIUM|Clerk#000004282|0|counts. enticingly enticing instructions caj| +89322|348113|O|66914.22|1997-05-11|3-MEDIUM|Clerk#000003009|0|gainst the unusual accounts wake slyly qu| +89323|727312|F|30459.78|1992-06-05|3-MEDIUM|Clerk#000002104|0|the pending pinto beans. asymptotes are blithely.| +89324|421825|O|153708.63|1996-02-06|4-NOT SPECIFIED|Clerk#000001755|0| express packages nag furiously special instru| +89325|612682|O|264882.36|1996-05-03|3-MEDIUM|Clerk#000000370|0|ounts; carefully final foxes haggle quickly among the quickly regu| +89326|594682|F|26025.41|1992-04-28|2-HIGH|Clerk#000003397|0|packages should are slyly express courts. deposits nag fluffily ir| +89327|304715|F|120787.12|1992-05-16|3-MEDIUM|Clerk#000004876|0|. ideas wake furiously. fluffily even dolphins are| +89352|329852|O|201195.26|1998-07-07|3-MEDIUM|Clerk#000002194|0| impress busily according to the quickly e| +89353|559571|O|222214.22|1997-04-22|3-MEDIUM|Clerk#000003119|0|to beans affix furiously according to the even, final theodoli| +89354|456712|F|202722.95|1994-12-16|2-HIGH|Clerk#000001379|0|ly unusual platelets. silent theod| +89355|438169|P|147089.31|1995-04-01|1-URGENT|Clerk#000003590|0|carefully final patterns. even requests | +89356|36730|F|22889.01|1994-02-21|2-HIGH|Clerk#000004301|0|ter the ironic platelets. regular, final dolphins wake blithely slyly regu| +89357|38719|O|208741.62|1996-04-15|5-LOW|Clerk#000000383|0|carefully final requests haggle blithely final foxes: | +89358|480029|F|111809.05|1992-05-30|1-URGENT|Clerk#000004002|0|sauternes. carefully final orbits | +89359|90946|O|73990.20|1997-01-27|5-LOW|Clerk#000002602|0| wake across the furiously silent packages! regular, special packag| +89384|22265|F|194750.95|1995-02-03|5-LOW|Clerk#000001204|0|ckly bold deposits haggle ca| +89385|702925|O|131886.40|1996-02-27|1-URGENT|Clerk#000001155|0|ites. slyly special accounts| +89386|30388|O|136416.52|1995-05-03|2-HIGH|Clerk#000001985|0|fter the carefully silent | +89387|730309|F|203783.17|1995-02-15|3-MEDIUM|Clerk#000001242|0|nic pinto beans hang after the ironic ideas. furiously even packa| +89388|526781|F|328082.72|1994-12-31|3-MEDIUM|Clerk#000000953|0| the slowly regular packages. furiou| +89389|602933|O|183619.97|1996-02-08|3-MEDIUM|Clerk#000002394|0| among the final instructions. express patterns wake. carefully ironic acc| +89390|243850|F|76163.95|1993-12-27|3-MEDIUM|Clerk#000004168|0|final deposits. carefully| +89391|371974|O|110921.55|1996-05-09|5-LOW|Clerk#000000362|0|decoys. ideas use quickly blithely unusual packages. busy accoun| +89416|511760|O|235627.89|1997-04-24|2-HIGH|Clerk#000001983|0|after the regular accounts. slyly unusual requests cajole care| +89417|146656|F|22505.12|1995-05-20|2-HIGH|Clerk#000001648|0|he carefully regular excuses wake accord| +89418|343732|P|27812.00|1995-04-23|2-HIGH|Clerk#000003105|0|riously. blithely regular ideas sleep slyly pinto beans. quickly special| +89419|592592|O|357978.90|1995-07-12|5-LOW|Clerk#000001385|0|y according to the blithely regular pinto beans. carefully pendin| +89420|433262|O|53393.12|1998-07-12|1-URGENT|Clerk#000001168|0| multipliers haggle blithely along the furiously regular wartho| +89421|81190|F|250923.16|1994-11-12|4-NOT SPECIFIED|Clerk#000001247|0|unusual accounts; fluffily blit| +89422|294499|F|228444.35|1992-08-08|5-LOW|Clerk#000001625|0|y regular courts haggle carefully alongside of the instructions. b| +89423|391682|F|365245.80|1993-12-02|2-HIGH|Clerk#000001600|0| packages nag about the furiously special foxes. quickly express accounts w| +89448|238478|F|198495.51|1993-11-23|5-LOW|Clerk#000001624|0|g requests. furiously regular deposits| +89449|85567|O|57083.55|1998-01-29|3-MEDIUM|Clerk#000000187|0|ut the slyly regular deposits. fluffily even instructions are ca| +89450|345170|F|224004.85|1994-02-15|1-URGENT|Clerk#000003863|0| even deposits sleep furiously alongside of th| +89451|13054|F|96117.15|1992-09-24|1-URGENT|Clerk#000003595|0| dogged foxes are furiously blithely even frets. accounts unwin| +89452|385514|F|198482.62|1992-02-26|2-HIGH|Clerk#000004272|0|lyly alongside of the quickly special packages. carefully final packages sle| +89453|77320|F|228915.92|1992-09-27|2-HIGH|Clerk#000002464|0|kages might wake according to the carefully pending pi| +89454|487648|O|60411.66|1998-04-13|5-LOW|Clerk#000003541|0|n accounts among the fluffily regular packag| +89455|646987|F|231351.28|1993-07-21|4-NOT SPECIFIED|Clerk#000001671|0|arefully special platelets. | +89480|385625|F|119597.26|1993-12-23|1-URGENT|Clerk#000000428|0|efully slyly silent realms. foxes detect after the furiously | +89481|440950|F|29201.76|1994-11-14|2-HIGH|Clerk#000003231|0|posits. blithely ironic requests s| +89482|278837|F|187376.50|1994-12-07|3-MEDIUM|Clerk#000000854|0| even accounts wake furiously ironic courts-- ruthlessly final theodoli| +89483|397519|F|140014.71|1994-03-17|2-HIGH|Clerk#000002262|0|ages try to sleep carefully against the quickly final d| +89484|72340|F|194654.43|1993-10-24|1-URGENT|Clerk#000003824|0|kly bold theodolites haggle blithely about the furiously ironi| +89485|41057|O|217001.81|1998-08-02|4-NOT SPECIFIED|Clerk#000002512|0|le furiously? regular excuses cajole blithely ac| +89486|28204|O|54782.58|1997-11-17|4-NOT SPECIFIED|Clerk#000000058|0|t requests boost about the s| +89487|5620|O|133630.30|1998-02-13|1-URGENT|Clerk#000004107|0| integrate furiously according to the blithely ironic asymptot| +89512|696449|O|212792.34|1997-09-22|5-LOW|Clerk#000001055|0|counts. blithely daring accounts sle| +89513|709807|O|186251.22|1997-07-16|2-HIGH|Clerk#000001398|0|al requests after the regularly special deposits cajole ironic, regula| +89514|219971|O|192048.98|1995-09-26|1-URGENT|Clerk#000001612|0|grouches according to the ev| +89515|287317|F|39550.10|1992-12-29|2-HIGH|Clerk#000001681|0|ptotes affix blithely across the| +89516|411799|F|230593.09|1994-06-21|5-LOW|Clerk#000001742|0|st the blithely final deposits detect above the unusual, even realms.| +89517|89954|F|171693.62|1994-05-11|1-URGENT|Clerk#000000532|0|ly special requests affix furiously. carefully even foxes nag slowly| +89518|600074|F|112097.11|1993-10-25|4-NOT SPECIFIED|Clerk#000004179|0|furiously final deposits about the fluffily final packages cajole ca| +89519|178777|O|250870.48|1996-07-27|1-URGENT|Clerk#000003441|0|ely even requests would wake. special, regular accounts will affix furiously u| +89544|181237|O|264143.59|1998-07-10|4-NOT SPECIFIED|Clerk#000001023|0|egular packages? express accounts wake blithely throu| +89545|273589|O|32510.99|1996-05-09|4-NOT SPECIFIED|Clerk#000003392|0|even accounts. slyly even asymptotes wake: quietly ironic requests w| +89546|707572|O|56276.59|1996-10-16|1-URGENT|Clerk#000004164|0|fully special ideas nag carefully even deposi| +89547|130366|F|170623.28|1993-03-20|3-MEDIUM|Clerk#000001923|0|accounts-- furiously regular instructions nag slyly carefully bold dependenci| +89548|288518|F|77005.94|1994-08-02|5-LOW|Clerk#000001664|0| bold packages; carefully regula| +89549|368800|O|77034.46|1995-07-26|5-LOW|Clerk#000003472|0|e blithely regular deposi| +89550|399383|F|343838.85|1992-04-22|5-LOW|Clerk#000002279|0| quietly bold ideas caj| +89551|676516|O|230393.30|1996-11-09|5-LOW|Clerk#000001384|0|usly pending accounts according to the blithely unusual courts unwind a| +89576|187516|F|63864.75|1993-06-11|5-LOW|Clerk#000004606|0|jole alongside of the furiously regular platelets. accounts | +89577|71101|F|30484.26|1992-08-06|2-HIGH|Clerk#000001527|0|ackages boost along| +89578|233761|F|122068.77|1994-08-31|3-MEDIUM|Clerk#000003214|0|thely regular foxes. slyly unusual instructions a| +89579|290233|F|199923.84|1994-09-09|4-NOT SPECIFIED|Clerk#000004001|0|y regular ideas cajole according to the final, even d| +89580|678656|F|130371.36|1993-01-22|3-MEDIUM|Clerk#000003601|0|ions. carefully silent instructio| +89581|169954|O|257670.28|1998-04-23|5-LOW|Clerk#000000212|0|y. slyly even asymptotes nag furiously about the pendin| +89582|390490|O|24215.07|1997-01-25|1-URGENT|Clerk#000003440|0|nstructions. carefully ironic accounts according | +89583|457030|O|53315.10|1996-07-07|5-LOW|Clerk#000001383|0|. special, ironic deposits nag! carefully ironic theodolites wake fluffily| +89608|550262|F|97378.99|1994-03-18|4-NOT SPECIFIED|Clerk#000004313|0| fluffily special instructions along the slyly dogged asym| +89609|1711|F|261273.59|1992-07-17|2-HIGH|Clerk#000002608|0|ages against the slyly ironic requests sol| +89610|235423|O|263807.26|1996-12-21|5-LOW|Clerk#000004417|0|y pending dependencies haggle slyly| +89611|497552|F|209280.93|1994-03-18|5-LOW|Clerk#000002282|0|y furiously express packages. packages nag car| +89612|590657|F|196834.37|1993-08-09|4-NOT SPECIFIED|Clerk#000000393|0|e among the furiously special | +89613|162773|F|206736.10|1992-03-03|1-URGENT|Clerk#000003815|0|sts are quietly stealthily ironic dep| +89614|463159|O|25921.23|1998-04-07|5-LOW|Clerk#000000377|0|refully whithout the careful| +89615|51871|O|177973.51|1998-05-01|1-URGENT|Clerk#000000275|0|egular packages are | +89640|265607|F|46203.32|1994-05-10|3-MEDIUM|Clerk#000004704|0|nic accounts are fluffily slyly even platelets. ruthlessly pen| +89641|56290|F|207501.34|1993-02-12|4-NOT SPECIFIED|Clerk#000004751|0|eposits: slyly even theodolites mold furiously: pending pinto bean| +89642|302413|F|130033.20|1993-02-20|1-URGENT|Clerk#000003615|0|ly even theodolites pla| +89643|641824|O|156519.38|1998-03-16|1-URGENT|Clerk#000001065|0|y after the carefully even ideas. furiously ironic deposits nag ag| +89644|613747|F|118968.28|1993-02-22|2-HIGH|Clerk#000001501|0|pinto beans poach requests. | +89645|462347|F|73513.25|1992-04-04|2-HIGH|Clerk#000001467|0|ular instructions impress | +89646|660232|O|80809.11|1998-06-29|3-MEDIUM|Clerk#000003748|0|gside of the slyly even foxes cajole about the slyly ruthless accounts. regu| +89647|264167|F|182255.48|1992-06-04|4-NOT SPECIFIED|Clerk#000004934|0| wake quickly regular deposits? regular platelets breach f| +89672|594616|F|126598.07|1994-12-04|2-HIGH|Clerk#000004010|0|ts lose about the foxes. regular pa| +89673|705053|F|254896.99|1993-01-26|5-LOW|Clerk#000002841|0|osits according to the bold patterns integrate furiousl| +89674|566969|O|144506.90|1996-10-16|1-URGENT|Clerk#000001687|0|impress about the slyly pending platelets. regular, pending pac| +89675|283664|F|62831.07|1993-07-27|1-URGENT|Clerk#000004341|0|ironic theodolites breach enticingl| +89676|537964|F|98988.56|1993-05-29|4-NOT SPECIFIED|Clerk#000002693|0|taphs sleep after the fluffily final platelets. slyly express ideas above the | +89677|278749|P|175908.01|1995-03-01|3-MEDIUM|Clerk#000003492|0|jole furiously regular, furious packages. slyly unusual request| +89678|433595|O|77053.34|1996-02-26|2-HIGH|Clerk#000004892|0|. furiously pending deposits along the carefully ironic| +89679|429067|O|105997.98|1995-07-03|4-NOT SPECIFIED|Clerk#000003893|0| waters hinder above the pinto beans. carefully final hocke| +89704|65540|F|166529.61|1992-05-12|3-MEDIUM|Clerk#000001983|0|nusual packages. even d| +89705|521027|O|171605.58|1997-09-15|4-NOT SPECIFIED|Clerk#000002721|0|e furiously after the slowly regular packages-- final foxes according| +89706|643862|O|89089.02|1997-09-21|4-NOT SPECIFIED|Clerk#000001429|0|ites. special, ironic accounts boost slyly bli| +89707|380647|O|264269.36|1997-02-23|2-HIGH|Clerk#000001115|0|ide of the fluffily even accounts. furiously final deposits sleep slyly am| +89708|14344|F|155774.41|1994-11-30|2-HIGH|Clerk#000003670|0|cial packages use slyly. ironic request| +89709|324680|O|170007.05|1997-11-28|1-URGENT|Clerk#000003624|0|egular ideas was after the even requests. special, regular accounts solve r| +89710|644605|O|189666.47|1996-11-06|4-NOT SPECIFIED|Clerk#000003953|0|de of the slyly regular ac| +89711|105613|F|114225.92|1993-06-27|2-HIGH|Clerk#000003222|0| accounts: unusual grouche| +89736|526360|O|157541.84|1996-07-19|3-MEDIUM|Clerk#000000644|0|ld forges haggle quickly at the express, pending accounts! | +89737|267679|F|192093.60|1994-07-27|1-URGENT|Clerk#000004198|0|daringly. pending accounts above the carefully silent | +89738|360787|F|38398.08|1993-05-10|5-LOW|Clerk#000000550|0|ts. ironic instructions unwind carefully. accounts boost slyly b| +89739|717962|F|127252.20|1992-03-09|1-URGENT|Clerk#000001207|0|metimes bold accounts affix b| +89740|24754|O|21913.92|1996-12-15|5-LOW|Clerk#000001377|0|ages detect fluffily ironically fina| +89741|536407|F|17697.73|1992-10-03|2-HIGH|Clerk#000001573|0|e final instructions grow b| +89742|388073|F|18628.01|1992-07-30|1-URGENT|Clerk#000001499|0|r deposits affix slyly according to the| +89743|342788|F|204117.33|1993-10-23|4-NOT SPECIFIED|Clerk#000002900|0|r deposits nag blithely according to the unusual, final instructions. pendi| +89768|471325|O|275664.77|1996-01-24|4-NOT SPECIFIED|Clerk#000002778|0|refully final requests cajole quickly alongside of the thi| +89769|58855|O|58095.90|1996-05-02|3-MEDIUM|Clerk#000000153|0|lly. carefully final deposits among| +89770|674993|F|70793.41|1992-12-26|5-LOW|Clerk#000004647|0|lyly express packages. slyly regular pack| +89771|101669|O|158364.47|1997-04-10|4-NOT SPECIFIED|Clerk#000002807|0|ironic requests! bold tithes cajole blit| +89772|240055|O|227676.69|1998-04-02|3-MEDIUM|Clerk#000003400|0|pinto beans are fluf| +89773|337421|F|148121.81|1994-10-13|1-URGENT|Clerk#000001628|0| are fluffily after the furiously even ideas. carefully final request| +89774|273364|F|11034.61|1992-03-21|1-URGENT|Clerk#000000683|0| integrate fluffily along the furiously ironic platelets. bravely regu| +89775|650809|P|112320.60|1995-03-18|3-MEDIUM|Clerk#000004982|0|es must wake slyly. theodolites affix sl| +89800|137137|O|70225.46|1997-09-06|5-LOW|Clerk#000004775|0| foxes wake carefully | +89801|98593|O|61060.96|1997-02-04|4-NOT SPECIFIED|Clerk#000001905|0|ly blithe pinto beans. furiously daring deposits integ| +89802|277331|F|259481.01|1992-08-29|1-URGENT|Clerk#000003343|0|es are. blithely pending platelets sleep. even accounts| +89803|599572|F|271919.57|1994-01-31|4-NOT SPECIFIED|Clerk#000001436|0|e final accounts. carefully even ideas lose furiously. express pinto bea| +89804|740368|O|193339.83|1997-02-14|1-URGENT|Clerk#000002857|0|the quiet deposits? regula| +89805|92101|F|114336.61|1992-11-26|5-LOW|Clerk#000001033|0|y regular accounts according to the blithely final foxes| +89806|665087|F|3961.44|1993-01-27|4-NOT SPECIFIED|Clerk#000003080|0| fluffily regular, ev| +89807|103369|F|94111.95|1993-12-24|4-NOT SPECIFIED|Clerk#000002406|0| furiously quickly express theodolites. evenly unusual requests cajole | +89832|296261|O|82721.18|1997-02-28|3-MEDIUM|Clerk#000001702|0| wake blithely along the ruthlessly pending platelets. slyly | +89833|1162|F|88707.19|1994-03-01|2-HIGH|Clerk#000001916|0|ng to the blithely pendi| +89834|7747|P|314947.12|1995-04-27|5-LOW|Clerk#000001627|0|nal packages haggle above the pending, regular sentiments. instructions | +89835|434210|F|187185.66|1992-10-26|5-LOW|Clerk#000001465|0| accounts use silently carefully express accounts. foxes haggle furiously| +89836|263326|F|124498.59|1993-02-27|2-HIGH|Clerk#000001424|0|cial pinto beans. carefully final th| +89837|704053|F|201465.52|1992-09-06|3-MEDIUM|Clerk#000001000|0|lyly around the blithely ironic requests. tithes | +89838|268273|O|56795.37|1996-08-30|3-MEDIUM|Clerk#000001816|0|s. blithely regular accounts aft| +89839|582709|O|63706.12|1995-11-11|3-MEDIUM|Clerk#000001395|0| integrate. quickly even deposits along the blithely regular depos| +89864|84382|O|343653.47|1997-08-25|1-URGENT|Clerk#000002414|0|e about the ironic deposits. silently regular reque| +89865|701299|O|175458.38|1996-07-08|5-LOW|Clerk#000003702|0|posits are fluffily bold pinto beans. slyly silent requests detect! unusual| +89866|464759|O|227929.03|1996-11-30|2-HIGH|Clerk#000002236|0|deas are. slyly ironic foxes against the thinly express packages boost| +89867|700211|O|49177.89|1997-06-06|4-NOT SPECIFIED|Clerk#000003472|0|ages are blithely ironic theodolites. carefully bold excuses| +89868|181033|O|30513.52|1997-03-21|5-LOW|Clerk#000002729|0|osits cajole furiously express ideas. ironic accounts use furiously unusual, | +89869|598570|O|110701.53|1998-07-17|1-URGENT|Clerk#000003626|0|side of the blithely ironic packages integrate furiously fu| +89870|384382|F|130333.78|1993-06-11|2-HIGH|Clerk#000002685|0|ounts boost fluffily after the blithely ironic account| +89871|534536|O|355157.14|1996-01-09|3-MEDIUM|Clerk#000004924|0| carefully even asympto| +89896|430549|O|172139.64|1996-07-01|3-MEDIUM|Clerk#000002045|0|ly unusual epitaphs| +89897|206951|F|186679.32|1994-02-17|3-MEDIUM|Clerk#000000542|0|packages wake against the slowly | +89898|471247|O|126310.55|1996-03-11|3-MEDIUM|Clerk#000004667|0|press requests along the express theodolites affix above the carefully r| +89899|241061|O|17793.98|1995-09-19|3-MEDIUM|Clerk#000002230|0|ons. pending attainments across the slyly ironic ideas wake slyly | +89900|6649|O|6856.28|1995-12-10|5-LOW|Clerk#000000243|0|ose according to the blithely silent deposits. special accounts boost bli| +89901|722024|F|327253.77|1994-04-05|4-NOT SPECIFIED|Clerk#000001776|0|gular requests sleep daring accounts. regular pinto| +89902|54154|F|237148.50|1993-07-26|1-URGENT|Clerk#000003085|0|ounts. carefully regular foxes about the quic| +89903|405944|F|144284.91|1992-11-10|2-HIGH|Clerk#000004899|0|eposits. furiously f| +89928|699268|O|185992.41|1997-04-06|1-URGENT|Clerk#000004292|0|es. slyly final deposits wake even, regular pinto beans. ironic packages b| +89929|87136|F|239208.70|1992-03-03|2-HIGH|Clerk#000002240|0|arefully even pinto beans cajole quietly. furiously express accounts slee| +89930|494692|F|99803.36|1995-03-13|4-NOT SPECIFIED|Clerk#000004893|0|arhorses among the unusual, regular excuses eat slyly bold pinto| +89931|518899|F|125943.24|1992-05-17|3-MEDIUM|Clerk#000001552|0|arefully around the blithely final deposits! ironic instructions cajole alon| +89932|105880|F|136382.72|1993-10-21|4-NOT SPECIFIED|Clerk#000004419|0| regular excuses about the express instructions wake blithe| +89933|499141|O|105216.76|1995-11-03|4-NOT SPECIFIED|Clerk#000002266|0|ess deposits. fluffily final requests nag fluffily under the express r| +89934|310909|O|205932.29|1995-12-23|2-HIGH|Clerk#000003514|0|ss, regular deposits cajole across the quickly regular accounts. ironic the| +89935|185828|F|251915.82|1993-05-18|2-HIGH|Clerk#000002498|0| requests wake fluffily ironic, express warhorses. | +89960|206332|F|214575.92|1994-02-20|4-NOT SPECIFIED|Clerk#000003572|0|ong the furiously special sentiments. unusual asymptotes x-ra| +89961|550087|O|241934.06|1997-01-09|4-NOT SPECIFIED|Clerk#000002120|0|hely unusual pinto beans. slowly even dependencies about the| +89962|39833|O|155702.15|1995-07-10|2-HIGH|Clerk#000002595|0|ckages sleep quickly quickly regular accoun| +89963|456808|P|256303.52|1995-05-16|5-LOW|Clerk#000002478|0|es. carefully ironic requests wake. final deposits | +89964|546775|F|290468.74|1994-08-16|3-MEDIUM|Clerk#000001420|0|al decoys sleep carefully even foxes. pinto bean| +89965|636206|F|57989.17|1992-06-03|3-MEDIUM|Clerk#000003550|0| even theodolites. pending f| +89966|700925|F|119551.79|1993-07-10|3-MEDIUM|Clerk#000004174|0|nstead of the carefully special| +89967|187532|O|275718.23|1997-10-07|3-MEDIUM|Clerk#000002598|0| requests cajole blith| +89992|337430|O|170776.61|1995-09-29|3-MEDIUM|Clerk#000001290|0|ts about the evenly silent requests ough| +89993|431806|F|229287.24|1993-01-20|2-HIGH|Clerk#000003198|0| deposits. carefully regular foxes wake accounts; carefully silent ac| +89994|350446|F|90049.75|1992-09-27|5-LOW|Clerk#000003764|0| ironic instructions. final accounts haggle blithely. pending | +89995|177983|F|87793.88|1994-06-01|5-LOW|Clerk#000000092|0|ding ideas sleep blithely blithely silent hockey players| +89996|355850|F|91937.80|1993-11-13|3-MEDIUM|Clerk#000003630|0|lowly regular packages. ironic, ironic instructions|